gerbv-2.7.0/0000755000175000017500000000000013423533473012514 5ustar carstencarstengerbv-2.7.0/scheme/0000755000175000017500000000000013423533413013752 5ustar carstencarstengerbv-2.7.0/scheme/Makefile.am0000644000175000017500000000203713421555714016016 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA scmdatadir = $(pkgdatadir)/scheme/ dist_scmdata_DATA = gerb-ps.scm gerb-debug.scm EXTRA_DIST = gbx2ps.scm parse-gerber.scm pgt.scm MOSTLYCLEANFILES = core *~ gerbv-2.7.0/scheme/gerb-debug.scm0000644000175000017500000000324213421555714016470 0ustar carstencarsten; gEDA - GNU Electronic Design Automation ; gerb-ps.scm ; Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ; ; $Id$ ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA (define *last-aperture-type* '()) (define *last-x* '()) (define *last-y* '()) (define (net:get-start net) (list-ref net 0)) (define (net:get-stop net) (list-ref net 1)) (define (net:get-aperture net) (list-ref net 2)) (define (net:get-interpolation net) (list-ref net 3)) (define (net:get-cirseg net) (list-ref net 4)) (define (aperture:get-number aperture) (list-ref aperture 0)) (define (aperture:get-type aperture) (list-ref aperture 1)) (define (aperture:get-sizes aperture) (list-tail aperture 2)) (define (main netlist aperture info format filename) (display "APERTURE:\n") (display aperture) (newline) (display "INFO:\n") (display info) (newline) (display "FORMAT:\n") (display format) (newline) (display "NETLIST:\n") (for-each (lambda (element) (display element) (newline)) (reverse netlist))) gerbv-2.7.0/scheme/pgt.scm0000755000175000017500000000243313421555714015263 0ustar carstencarsten#!/bin/sh exec guile -l parse-gerber.scm -e main -s "$0" "$@" !# ; gEDA - GNU Electronic Design Automation ; parse-gerber.scm ; Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ; ; $Id$ ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA (define (main args) (let ((infile 'stdin) (outfile 'stdout)) (case (length args) ((2) (set! infile (cadr args))) ((3) (set! infile (cadr args)) (set! outfile (caddr args)))) (call-with-input-file infile parse-gerber) (display *aperture-description*) (newline) (display *netlist*) (newline))) (define (foo args) (display (length args)) (newline))gerbv-2.7.0/scheme/gbx2ps.scm0000755000175000017500000001575413421555714015710 0ustar carstencarsten#!/bin/sh exec guile -l parse-gerber.scm -e main -s "$0" "$@" !# ; gEDA - GNU Electronic Design Automation ; parse-gerber.scm ; Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ; ; $Id$ ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA (define *last-aperture-type* '()) (define *last-x* '()) (define *last-y* '()) (define (ps-preamble port) (display "%!\n" port) (display "%generated by gerbv\n\n" port) (display "/inch {72 mul} def\n" port) (display "/mm {2.54 div} def\n" port) (newline port) (display "1.5 inch 3 inch translate\n" port) (newline port) (if (equal? (assoc-ref *image* 'polarity) 'positive) (begin (display "/Black {0 setgray} def\n" port) (display "/White {1 setgray} def\n" port)) (begin (display "/Black {1 setgray} def % Polarity reversed\n" port) (display "/White {0 setgray} def\n" port))) (newline port) (display "/circle { % x y id od\n" port) (display " gsave\n" port) (display " 3 index 3 index moveto\n" port) (display " 3 index 3 index 3 2 roll % Fix arguments\n" port) (display " 2 div % d given, need r\n" port) (display " 0 360 arc Black fill % outer\n" port) (display " 2 div % d given, need r\n" port) (display " 0 360 arc White fill %inner\n" port) (display "grestore\n" port) (display "} def\n" port) (newline port) (display "/rectangle { % x y xl yl\n" port) (display " gsave\n" port) (display " newpath\n" port) (display " 1 setlinewidth\n" port) (display " 3 index 2 index 2 div sub\n" port) (display " 3 index 2 index 2 div add moveto\n" port) (display " 1 index 0 rlineto\n" port) ; -> (display " dup -1 mul 0 exch rlineto\n" port) ; \!/ (display " 1 index -1 mul 0 rlineto\n" port) ; <- (display " dup 0 exch rlineto\n" port) ; /!\ (display " pop pop pop pop closepath Black fill\n" port) (display " grestore\n" port) (display "} def\n" port) (newline port) (set! *max-x* (+ *max-x* 100)) (set! *max-y* (+ *max-y* 100)) (set! *min-x* (- *min-x* 100)) (set! *min-y* (- *min-y* 100)) (display "gsave 72 setlinewidth newpath\n" port) (display (string-append (number->string *max-x*) " 1000 div inch ") port) (display (string-append (number->string *max-y*) " 1000 div inch moveto\n") port) (display (string-append (number->string *max-x*) " 1000 div inch ") port) (display (string-append (number->string *min-y*) " 1000 div inch lineto\n") port) (display (string-append (number->string *min-x*) " 1000 div inch ") port) (display (string-append (number->string *min-y*) " 1000 div inch lineto\n") port) (display (string-append (number->string *min-x*) " 1000 div inch ") port) (display (string-append (number->string *max-y*) " 1000 div inch lineto\n") port) (display "closepath White fill grestore\n" port) (newline port)) (define (print-ps-element element port) (let ((x (car element)) (y (cadr element)) (aperture-type (car (caddr element))) (aperture-state (cdr (caddr element)))) (cond ((eq? aperture-state 'exposure-off) (handle-line-aperture aperture-type port) (print-position x y port) (display "moveto\n" port)) ((eq? aperture-state 'exposure-on) (handle-line-aperture aperture-type port) (print-position x y port) (display "lineto\n" port)) ((eq? aperture-state 'exposure-flash) (print-position x y port) (print-flash-aperture aperture-type port))) (set! *last-x* x) (set! *last-y* y))) (define (print-position x y port) (display x port) ; X axis (display " 1000 div " port) (display (assoc-ref *image* 'unit) port) (display " " port) (display y port) ; Y axis (display " 1000 div " port) (display (assoc-ref *image* 'unit) port) (display " " port)) (define (handle-line-aperture aperture-type port) (cond ((null? *last-aperture-type*) ; First time (set! *last-aperture-type* aperture-type) (display (get-aperture-size aperture-type) port) (display " inch setlinewidth\n" port)) ((not (eq? *last-aperture-type* aperture-type)) ; new aperture (display "stroke\n" port) (display *last-x* port) ; X Axis (display " 1000 div " port) (display (assoc-ref *image* 'unit) port) (display " " port) (display *last-y* port) (display " 1000 div " port) (display (assoc-ref *image* 'unit) port) (display " moveto\n" port) (display (get-aperture-size aperture-type) port) (display " inch setlinewidth\n" port) (set! *last-aperture-type* aperture-type)))) (define (print-flash-aperture aperture-type port) (let* ((aperture-description (assv aperture-type *aperture-description*)) (symbol (cadr aperture-description)) (sizes (cddr aperture-description))) (case (length sizes) ((1) (display " 0 " port) (display (car sizes) port) (display " inch " port)) ((2) (display (car sizes) port) (display " inch " port) (display (cadr sizes) port) (display " inch " port))) (case symbol ((circle) (display " circle" port)) ((rectangle) ; (display " pop pop moveto " port)) (display " rectangle " port)) (else (display " moveto %unknown" port)))) (newline port)) (define (get-aperture-size type) (let ((desc (assv type *aperture-description*))) (if desc (caddr desc)))) (define (generate-ps netlist port) (ps-preamble port) (for-each (lambda (element) (print-ps-element element port)) netlist) (display "stroke\nshowpage\n" port)) (define *max-x* 0) (define *max-y* 0) (define *min-x* 30000) (define *min-y* 30000) (define (find-boundaries netlist) (if (null? netlist) '() (let ((x (string->number (caar netlist))) (y (string->number (cadar netlist)))) (if (< x *min-x*) (set! *min-x* x)) (if (< y *min-y*) (set! *min-y* y)) (if (> x *max-x*) (set! *max-x* x)) (if (> y *max-y*) (set! *max-y* y)) (find-boundaries (cdr netlist))))) (define (main args) (let ((infile 'stdin) ; this doesn't work (outfile "foo.ps")) ; this doesn't work (case (length args) ((2) (set! infile (cadr args))) ((3) (set! infile (cadr args)) (set! outfile (caddr args))) (else (display "Wrong number of arguments.\n ") (display (car args)) (display " infile [outfile]") (newline) (exit))) (call-with-input-file infile parse-gerber) (find-boundaries (reverse *netlist*)) (call-with-output-file outfile (lambda (port) (generate-ps (reverse *netlist*) port))))) gerbv-2.7.0/scheme/Makefile.in0000644000175000017500000004261113423533413016023 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = scheme ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_scmdata_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(scmdatadir)" DATA = $(dist_scmdata_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ scmdatadir = $(pkgdatadir)/scheme/ dist_scmdata_DATA = gerb-ps.scm gerb-debug.scm EXTRA_DIST = gbx2ps.scm parse-gerber.scm pgt.scm MOSTLYCLEANFILES = core *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu scheme/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu scheme/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_scmdataDATA: $(dist_scmdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_scmdata_DATA)'; test -n "$(scmdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(scmdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(scmdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(scmdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(scmdatadir)" || exit $$?; \ done uninstall-dist_scmdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_scmdata_DATA)'; test -n "$(scmdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(scmdatadir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(scmdatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_scmdataDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_scmdataDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_scmdataDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_scmdataDATA .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/scheme/parse-gerber.scm0000644000175000017500000002344413421555714017051 0ustar carstencarsten ; gEDA - GNU Electronic Design Automation ; parse-gerber.scm ; Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ; ; $Id$ ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA ; These are data that is the result of the parsing ; *aperture-description* is a list with descriptions of all ; apertures used. Each element of the list is a list with: ; ( ) ; is one of circle, rectangle, oval or polygon. ; is one value if circle and two if rectangle. (define *aperture-description* '()) ; *netlist* is the actual netlist. Each element of the list consist of ; ( ( . )) ; The elements in the list is 'backwards', the first element in the ; list is the last in the file. This is simply fixed by a ; (reverse *netlist*) (define *netlist* '()) ; Image parameters (define *image* (list (cons 'unit 'inches) (cons 'polarity 'positive) (cons 'omit-leading-zeros #t) (cons 'coordinates 'absolute) (cons 'x-integer 2) (cons 'x-decimal 3) (cons 'y-integer 2) (cons 'y-decimal 3))) (define *current-x* #f) (define *current-y* #f) (define (set-aperture-size aperture size) (if (number? size) (cons size (cdr aperture)) (display "Wrong aperture number in set-aperture-size!\n"))) (define (set-aperture-state aperture state) (if (or (eq? state 'exposure-off) (eq? state 'exposure-on) (eq? state 'exposure-flash)) (cons (car aperture) state) (display "Wrong state in set-aperture-state!\n"))) (define *current-aperture* (cons #f #f)) ; Main function. Call this one. (define (parse-gerber port) (let ((latest (read-char port))) (if (not (eof-object? latest)) (case latest ((#\G) (parse-G-code port) (parse-gerber port)) ((#\D) (set! *current-aperture* (parse-D-code port *current-aperture*)) (parse-gerber port)) ((#\M) (parse-M-code port) (parse-gerber port)) ((#\X) (set! *current-x* (list->string (parse-pos-code port))) (parse-gerber port)) ((#\Y) (set! *current-y* (list->string (parse-pos-code port))) (parse-gerber port)) ((#\%) (parse-274X-code port) (parse-gerber port)) ((#\*) (if (and *current-x* ; If all these set *current-y* (car *current-aperture*) (cdr *current-aperture*)) (begin ; (display *current-x*) ; (display " : ") ; (display *current-y*) ; (display " A:") ; (display *current-aperture*) ; (newline) (set! *netlist* (cons (list *current-x* *current-y* *current-aperture*) *netlist*)) (parse-gerber port)))) (else ; Eat dead meat ;Whitespaces keeps us away from using this ; (display "Strange code : ") ; (display latest) ; (newline) (parse-gerber port)))))) (define (parse-G-code port) (let* ((first (read-char port)) (second (read-char port)) (code (string first second))) (cond ((string=? code "00") ; Move ); Not implemented ((string=? code "01") ; Linear Interpolation (1X scale) ); Not implemented ((string=? code "02") ; Clockwise Linear Interpolation ); Not implemented ((string=? code "03") ; Counter Clockwise Linear Interpolation ); Not implemented ((string=? code "04") ; Ignore Data Block (eat-til-eob port) (parse-gerber port)) ((string=? code "10") ; Linear Interpolation (10X scale) ); Not implemented ((string=? code "11") ; Linear Interpolation (0.1X scale) ); Not implemented ((string=? code "12") ; Linear Interpolation (0.01X scale) ); Not implemented ((string=? code "36") ; Turn on Polygon Area Fill ); Not implemented ((string=? code "37") ; Turn off Polygon Area Fill ); Not implemented ((string=? code "54") ; Tool prepare (if (char=? (read-char port) #\D) (set! *current-aperture* (parse-D-code port *current-aperture*))) (eat-til-eob port)) ((string=? code "70") ; Specify inches ); Not implemented ((string=? code "71") ; Specify millimeters ); Not implemented ((string=? code "74") ; Disable 360 circular interpolation ); Not implemented ((string=? code "75") ; Enable 360 circular interpolation ); Not implemented ((string=? code "90") ; Specify absolut format ); Not implemented ((string=? code "91") ; Specify incremental format ); Not implemented (else (display "Strange G-code : ") (display code) (newline))))) (define (parse-M-code port) (let* ((first (read-char port)) (second (read-char port)) (code (string first second))) (cond ((string=? code "00") ; Program Stop ); The file ends anyhow ((string=? code "01") ; Optional Stop ); The file ends anyhow ((string=? code "02") ; End Of Program ); The file ends anyhow (else (display "Strange M code") (newline))))) (define (parse-D-code port current-aperture) (let ((aperture (list->string (parse-pos-code port)))) (cond ((string=? aperture "1") ; Exposure on (set-aperture-state current-aperture 'exposure-on)) ((string=? aperture "2") ; Exposure off (set-aperture-state aperture 'exposure-off)) ((string=? aperture "3") ; Flash aperture (set-aperture-state current-aperture 'exposure-flash)) ((string=? aperture "01") ; Exposure on (set-aperture-state current-aperture 'exposure-on)) ((string=? aperture "02") ; Exposure off (set-aperture-state current-aperture 'exposure-off)) ((string=? aperture "03") ; Flash aperture (set-aperture-state current-aperture 'exposure-flash)) (else ; Select an aperture defined by an AD parameter (set-aperture-size current-aperture (string->number aperture)))))) (define (parse-274X-code port) (let* ((first (read-char port)) (second (read-char port)) (code (string first second))) ; Directive parameters (cond ((string=? code "AS") ; Axis Select (display "AS") (eat-til-eop port)) ((string=? code "FS") ; Format Statement (if (char=? (read-char port) #\L) ; or T (assoc-set! *image* 'omit-leading-zeros #t) (assoc-set! *image* 'omit-leading-zeros #f)) (if (char=? (read-char port) #\A) ; or I (assoc-set! *image* 'coordinates 'absolut) (assoc-set! *image* 'coordinates 'incremental)) (read-char port) ; eat X (assoc-set! *image* 'x-int (char->integer(read-char port))) (assoc-set! *image* 'x-dec (char->integer(read-char port))) (read-char port) ; eat Y (assoc-set! *image* 'y-int (char->integer(read-char port))) (assoc-set! *image* 'y-dec (char->integer(read-char port))) (eat-til-eop port)) ((string=? code "MI") ; Mirror Image (display "MI") (eat-til-eop port)) ((string=? code "MO") ; Mode of units (let ((unit (string (read-char port) (read-char port)))) (cond ((string=? unit "IN") (assoc-set! *image* 'unit 'inch)) ((string=? unit "MM") (assoc-set! *image* 'unit 'mm)))) (eat-til-eop port)) ((string=? code "OF") ; Offset (display "OF") (eat-til-eop port)) ((string=? code "SF") ; Scale Factor (display "SF") (eat-til-eop port)) ; Image parameters ((string=? code "IJ") ; Image Justify (eat-til-eop port)) ((string=? code "IN") ; Image Name (eat-til-eop port)) ((string=? code "IO") ; Image Offset (eat-til-eop port)) ((string=? code "IP") ; Image Polarity (let ((unit (string (read-char port) (read-char port) (read-char port)))) (cond ((string=? unit "POS") (assoc-set! *image* 'polarity 'positive)) ((string=? unit "NEG") (assoc-set! *image* 'polarity 'negative)))) (eat-til-eop port)) ((string=? code "IR") ; Image Rotation (eat-til-eop port)) ((string=? code "PF") ; Plotter Film (eat-til-eop port)) ; Aperture Parameters ((string=? code "AD") ; Aperture Description (read-char port) ; Read the D. Should check that it really is a D. (set! *aperture-description* (cons (cons (car (parse-D-code port '(#f .#f))) (parse-aperture-definition port)) *aperture-description*)) (eat-til-eop port)) ((string=? code "AM") ; Aperture Macro (eat-til-eop port)) (else (eat-til-eop port))))) (define (parse-aperture-definition port) (let ((aperture-type (read-char port)) (read-comma (read-char port))) (case aperture-type ((#\C) ; Circle (cons 'circle (parse-modifier port))) ((#\R) ; Rectangle or Square (cons 'rectangle (parse-modifier port))) ((#\O) ; Oval (cons 'oval (parse-modifier port))) ((#\P) ; Polygon (cons 'polygon (parse-modifier port))) (else #f)))) (define (parse-modifier port) (let ((dimension (list->string (parse-pos-code port))) (next (peek-char port))) (if (char=? next #\X) (begin (read-char port) (cons dimension (parse-modifier port))) (cons dimension '())))) (define (eat-til-eop port) (let ((latest (read-char port))) (if (not (char=? latest #\%)) (eat-til-eop port)))) (define (parse-pos-code port) ; Returns a list with all characters in position (let ((sneak (peek-char port))) (if (or (and (char>=? sneak #\0) (char<=? sneak #\9)) (char=? sneak #\.)) (cons (read-char port) (parse-pos-code port)) '()))) (define (eat-til-eob port) (if (not (char=? #\* (read-char port))) (eat-til-eob port))) gerbv-2.7.0/scheme/gerb-ps.scm0000644000175000017500000001640513421555714016031 0ustar carstencarsten; gEDA - GNU Electronic Design Automation ; gerb-ps.scm ; Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) ; ; $Id$ ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA (define *last-aperture-type* '()) (define *last-x* '()) (define *last-y* '()) (define (net:get-start net) (list-ref net 0)) (define (net:get-stop net) (list-ref net 1)) (define (net:get-aperture net) (list-ref net 2)) (define (net:get-interpolation net) (list-ref net 3)) (define (net:get-cirseg net) (list-ref net 4)) (define (aperture:get-number aperture) (list-ref aperture 0)) (define (aperture:get-type aperture) (list-ref aperture 1)) (define (aperture:get-sizes aperture) (list-tail aperture 2)) (define (ps-preamble info port) (display "%!\n" port) (display "%generated by gerbv\n\n" port) (display "/inch {72 mul} def\n" port) (display "/mm {25.4 div inch} def\n" port) (newline port) (display "1.5 inch 3 inch translate\n" port) (newline port) (if (equal? (assoc-ref info 'polarity) 'positive) (begin (display "/Black {0 setgray} def\n" port) (display "/White {1 setgray} def\n" port)) (begin (display "/Black {1 setgray} def % Polarity reversed\n" port) (display "/White {0 setgray} def\n" port))) (newline port) (display "/circle { % x y id od\n" port) (display " gsave\n" port) (display " 3 index 3 index moveto\n" port) (display " 3 index 3 index 3 2 roll % Fix arguments\n" port) (display " 2 div % d given, need r\n" port) (display " 0 360 arc Black fill % outer\n" port) (display " 2 div % d given, need r\n" port) (display " 0 360 arc White fill %inner\n" port) (display "grestore\n" port) (display "} def\n" port) (newline port) (display "/rectangle { % x y xl yl\n" port) (display " gsave\n" port) (display " newpath\n" port) (display " 1 setlinewidth\n" port) (display " 3 index 2 index 2 div sub\n" port) (display " 3 index 2 index 2 div add moveto\n" port) (display " 1 index 0 rlineto\n" port) ; -> (display " dup -1 mul 0 exch rlineto\n" port) ; \!/ (display " 1 index -1 mul 0 rlineto\n" port) ; <- (display " dup 0 exch rlineto\n" port) ; /!\ (display " pop pop pop pop closepath Black fill\n" port) (display " grestore\n" port) (display "} def\n" port) (newline port) ; Make box for inverted print outs. Make it little bigger than limits. (display "gsave 72 setlinewidth newpath\n" port) (let ((min-x (number->string (- (assoc-ref info 'min-x) 200))) (min-y (number->string (- (assoc-ref info 'min-y) 200))) (max-x (number->string (+ (assoc-ref info 'max-x) 200))) (max-y (number->string (+ (assoc-ref info 'max-y) 200))) (unit (assoc-ref info 'unit))) (display (string-append max-x " " unit " ") port) (display (string-append max-y " " unit " moveto\n") port) (display (string-append max-x " " unit " ") port) (display (string-append min-y " " unit " lineto\n") port) (display (string-append min-x " " unit " ") port) (display (string-append min-y " " unit " lineto\n") port) (display (string-append min-x " " unit " ") port) (display (string-append max-y " " unit " lineto\n") port)) (display "closepath White fill grestore\n" port) (newline port)) (define (print-ps-element element aperture format info port) (let* ((x (car (net:get-stop element))) (y (cdr (net:get-stop element))) (aperture-type (car (net:get-aperture element))) (aperture-state (cdr (net:get-aperture element))) (unit (assoc-ref info 'unit))) (cond ((eq? aperture-state 'exposure-off) (handle-line-aperture aperture-type aperture unit port) (print-position x y unit port) (display " moveto\n" port)) ((eq? aperture-state 'exposure-on) (handle-line-aperture aperture-type aperture unit port) (print-position x y unit port) (display " lineto\n" port)) ((eq? aperture-state 'exposure-flash) (print-position x y unit port) (display " " port) (print-flash-aperture aperture-type aperture unit port))) (set! *last-x* x) (set! *last-y* y))) (define (print-position x y unit port) (display x port) ; X axis (display " " port) (display unit port) (display " " port) (display y port) ; Y axis (display " " port) (display unit port)) (define (handle-line-aperture aperture-type aperture unit port) (cond ((null? *last-aperture-type*) ; First time (set! *last-aperture-type* aperture-type) (display "0 " port) (display unit port) (display " setlinewidth\n" port)) ((not (eq? *last-aperture-type* aperture-type)) ; new aperture (display "stroke\n" port) (display *last-x* port) ; X Axis (display " " port) (display unit port) (display " " port) (display *last-y* port) (display " " port) (display unit port) (display " moveto\n" port) (display (get-aperture-size aperture-type aperture) port) (display " " port) (display unit port) (display " setlinewidth\n" port) (set! *last-aperture-type* aperture-type)))) (define (print-flash-aperture aperture-type aperture unit port) (let* ((aperture-description (assv aperture-type aperture)) (type (aperture:get-type aperture-description)) (sizes (aperture:get-sizes aperture-description))) (case (length sizes) ((1) (display " 0 " port) (display (car sizes) port) (display " " port) (display unit port) (display " " port)) ((2) (display (car sizes) port) (display " " port) (display unit port) (display " " port) (display (cadr sizes) port) (display " " port) (display unit port) (display " " port))) (case type ((circle) (display " circle" port)) ((rectangle) (display " rectangle " port)) ((oval) (display " rectangle % oval" port)) ((polygon) (display " moveto % polygon" port)) ((macro) (display " moveto % macro" port)) (else (display " moveto %unknown" port)))) (newline port)) (define (get-aperture-size aperture-type aperture) (let ((aperture-desc (assv aperture-type aperture))) (if aperture-desc (car (aperture:get-sizes aperture-desc))))) (define (generate-ps netlist aperture info format port) (ps-preamble info port) (for-each (lambda (element) (print-ps-element element aperture format info port)) netlist) (display "stroke\nshowpage\n" port)) (define (main netlist aperture info format filename) (display "Warning! This backend is incomplete and known ") (display "to generate incorrect PostScript files\n") (let ((outfile (string-append filename ".ps"))) (display (string-append "Output file will be " outfile "\n")) (call-with-output-file outfile (lambda (port) (generate-ps (reverse netlist) aperture info format port))))) gerbv-2.7.0/src/0000755000175000017500000000000013423533534013301 5ustar carstencarstengerbv-2.7.0/src/main.h0000644000175000017500000001013213421555714014375 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file main.h \brief Header info for common structs and functions used for the GUI application \ingroup gerbv */ #ifndef MAIN_H #define MAIN_H #ifdef __cplusplus extern "C" { #endif typedef enum {GERBV_MILS, GERBV_MMS, GERBV_INS} gerbv_gui_unit_t; typedef enum {ZOOM_IN, ZOOM_OUT, ZOOM_FIT, ZOOM_IN_CMOUSE, ZOOM_OUT_CMOUSE, ZOOM_SET } gerbv_zoom_dir_t; typedef enum {NORMAL, IN_MOVE, IN_ZOOM_OUTLINE, IN_MEASURE, ALT_PRESSED, IN_SELECTION_DRAG, SCROLLBAR} gerbv_state_t; typedef enum {POINTER, PAN, ZOOM, MEASURE} gerbv_tool_t; typedef struct { GtkWidget *drawing_area; GdkPixmap *pixmap; GdkColor zoom_outline_color; GdkColor dist_measure_color; GdkColor selection_color; struct { GtkWidget *log; GtkWidget *topLevelWindow; GtkWidget *messageTextView; GtkWidget *statusMessageLeft; GtkWidget *statusMessageRight; GtkWidget *statusUnitComboBox; GtkCheckMenuItem **menu_view_unit_group; GtkWidget *layerTree; gboolean treeIsUpdating; GtkWidget *colorSelectionDialog; gint colorSelectionIndex; GtkWidget *hAdjustment; GtkWidget *vAdjustment; GtkWidget *hRuler; GtkWidget *vRuler; GtkWidget *sidepane_notebook; GtkComboBox *sidepaneRenderComboBox; GtkCheckMenuItem **menu_view_render_group; GtkWidget *project; GtkWidget *gerber; GtkWidget *about_dialog; GtkWidget *toolButtonPointer; GtkWidget *toolButtonPan; GtkWidget *toolButtonZoom; GtkWidget *toolButtonMeasure; gboolean updatingTools; GtkWidget *layerTreePopupMenu; GtkWidget *drawWindowPopupMenu; GtkWidget *curLayerMenuItem; GtkWidget *curAnalyzeMenuItem; GtkWidget *curEditMenuItem; GtkWidget *curEditAlingMenuItem, *curEditAlingItem[2]; GtkWidget *curFileMenuItem[7]; } win; gpointer windowSurface; gpointer bufferSurface; gpointer selectionRenderData; GtkTooltips *tooltips; GtkWidget *popup_menu; struct { GtkWidget *msg; char msgstr[MAX_STATUSMSGLEN]; char coordstr[MAX_COORDLEN]; char diststr[MAX_DISTLEN]; } statusbar; gboolean centered_outline_zoom; int selected_layer; /* Selected layer by Alt+keypad */ gerbv_selection_info_t selectionInfo; gerbv_state_t state; gerbv_tool_t tool; gerbv_gui_unit_t unit; gboolean unit_is_from_cmdline; gboolean background_is_from_cmdline; gboolean background_is_from_project; GSettings *settings; gint last_x; gint last_y; gint start_x; /* Zoom box start screen coordinates */ gint start_y; gint off_x; /* Offset current pixmap when panning */ gint off_y; gdouble measure_start_x; /* Measure start board coordinates */ gdouble measure_start_y; gdouble measure_stop_x; /* Measure end board coordinates */ gdouble measure_stop_y; gdouble measure_last_x; gdouble measure_last_y; gdouble length_sum; int dump_parsed_image; } gerbv_screen_t; struct log_struct { gchar *domain; GLogLevelFlags level; gchar *message; }; extern gerbv_screen_t screen; extern gerbv_project_t *mainProject; void main_save_as_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename); void main_save_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename); void main_open_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename); #endif /* GERBV_H */ gerbv-2.7.0/src/interface.c0000644000175000017500000032343313421555714015417 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it toowill be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file interface.c \brief GUI building functions for Gerbv \ingroup gerbv */ #include "gerbv.h" #include #include #include #include #include #include #include #include #include #include "common.h" #include "main.h" #include "callbacks.h" #include "interface.h" #include "render.h" #include "selection.h" #include "draw.h" #include "gerbv_icon.h" #include "icons.h" #define dprintf if(DEBUG) printf static const gchar *gerbv_win_title = N_("Gerbv — gEDA's Gerber Viewer"); /* Declared in callbacks.c */ extern const char *gerbv_coords_pattern_mils_str; /* ---------------------------------------------- */ void rename_main_window(char const* filename, GtkWidget *main_win) { GString *win_title = g_string_new(NULL); static GtkWidget *win = NULL; if (main_win != NULL) win = main_win; g_assert(win != NULL); if (filename && filename[0] != '\0') { gchar *basename = g_path_get_basename(filename); g_string_printf(win_title, "%s — Gerbv", basename); g_free(basename); } else { g_string_printf(win_title, _(gerbv_win_title)); } gtk_window_set_title(GTK_WINDOW(win), win_title->str); g_string_free(win_title, TRUE); } /* ---------------------------------------------- */ void set_window_icon (GtkWidget * this_window) { GdkPixmap *pixmap; GdkBitmap *mask; pixmap = gdk_pixmap_create_from_xpm_d (this_window->window, &mask, &this_window->style->bg[GTK_STATE_NORMAL], gerbv_icon_xpm); gdk_window_set_icon (this_window->window, NULL, pixmap, mask); return; } /* ---------------------------------------------- */ void interface_load_accels (void) { gchar *accel_map_filename = g_build_filename (g_get_home_dir(), GERBV_ACCELS_RELPATH, NULL); if (accel_map_filename) { gtk_accel_map_load (accel_map_filename); g_free (accel_map_filename); } } /* ---------------------------------------------- */ void interface_save_accels (void) { gchar *accel_map_dirname, *accel_map_filename; accel_map_filename = g_build_filename (g_get_home_dir(), GERBV_ACCELS_RELPATH, NULL); if (!accel_map_filename) return; /* Create directory if it is not present */ accel_map_dirname = g_path_get_dirname (accel_map_filename); g_mkdir_with_parents (accel_map_dirname, S_IRUSR | S_IXUSR | S_IWUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); gtk_accel_map_save (accel_map_filename); g_free (accel_map_dirname); g_free (accel_map_filename); } static void request_label_max_size_by_text (GtkWidget *label, const gchar *str) { GtkRequisition req; gtk_label_set_text (GTK_LABEL (label), str); /* Reset previous size request */ gtk_widget_set_size_request (label, -1, -1); gtk_widget_size_request (label, &req); gtk_widget_set_size_request (label, req.width, req.height); gtk_label_set_text (GTK_LABEL (label), ""); } /* ---------------------------------------------- */ void interface_create_gui (int req_width, int req_height) { GtkStockItem stock; GtkWidget *mainWindow; GtkWidget *vbox1; GtkWidget *menubar1; GtkWidget *menuitem_file; GtkWidget *menuitem_file_menu; GtkWidget *new_project; GtkWidget *open; GtkWidget *revert; GtkWidget *save; GtkWidget *save_as; GtkWidget *save_layer; GtkWidget *save_as_layer; GtkWidget *menuitem_file_export; GtkWidget *menuitem_file_export_menu; GtkWidget *png, *pdf, *svg, *postscript, *geda_pcb; GtkWidget *rs274x, *drill, *idrill, *rs274xm, *drillm; #if HAVE_LIBDXFLIB GtkWidget *dxf; #endif #if GTK_CHECK_VERSION(2,10,0) GtkWidget *print; #endif GtkWidget *quit; GtkWidget *menuitem_edit; GtkWidget *menuitem_edit_menu; GtkWidget *properties_selected; GtkWidget *delete_selected; GtkWidget *align, *align_layers; GtkWidget *menuitem_view; GtkWidget *menuitem_view_menu; GtkWidget *view_fullscreen; GtkWidget *show_selection_on_invisible; GtkWidget *show_cross_on_drill_holes; GtkWidget *show_toolbar; GtkWidget *show_sidepane; GtkWidget *toggle_layer_visibility_item1; GtkWidget *toggle_layer_visibility_item2; GtkWidget *toggle_layer_visibility_item3; GtkWidget *toggle_layer_visibility_item4; GtkWidget *toggle_layer_visibility_item5; GtkWidget *toggle_layer_visibility_item6; GtkWidget *toggle_layer_visibility_item7; GtkWidget *toggle_layer_visibility_item8; GtkWidget *toggle_layer_visibility_item9; GtkWidget *toggle_layer_visibility_item10; GtkWidget *zoom_in; GtkWidget *zoom_out; GtkWidget *fit_to_window; GtkWidget *backgroundColor; GtkWidget *menuitem_view_render, *menuitem_view_render_menu; GSList *menu_view_render_group; GtkWidget *render_fast, *render_fast_xor, *render_normal, *render_hq; GtkWidget *menuitem_view_unit, *menuitem_view_unit_menu; GSList *menu_view_unit_group; GtkWidget *unit_mil, *unit_mm, *unit_in; GtkWidget *menuitem_layer; GtkWidget *menuitem_layer_menu; GtkWidget *layer_visibility; GtkWidget *layer_visibility_all_on; GtkWidget *layer_visibility_all_off; GtkWidget *layer_invert; GtkWidget *layer_color; GtkWidget *layer_reload; GtkWidget *layer_edit; GtkWidget *layer_format; GtkWidget *layer_up; GtkWidget *layer_down; GtkWidget *layer_remove; GtkWidget *menuitem_analyze; GtkWidget *menuitem_analyze_menu; GtkWidget *analyze_active_gerbers; GtkWidget *analyze_active_drill; GtkWidget *analyze_benchmark; /*GtkWidget *control_gerber_options;*/ GtkWidget *menuitem_tools; GtkWidget *menuitem_tools_menu; GtkWidget *toggletoolbutton_pointer; GtkWidget *pointer_tool; GdkPixbuf *pointerpixbuf; GtkWidget *pointerimage; GtkWidget *pan_tool; GtkWidget *zoom_tool; GtkWidget *measure_tool; GtkWidget *menuitem_help; GtkWidget *layer_visibility_menu; GtkWidget *layer_visibility_main_menu; GtkWidget *menuitem_help_menu; /*GtkWidget *online_manual;*/ GtkWidget *about; GtkWidget *bugs_menuitem; GtkWidget *image34; GtkWidget *toolbar_hbox; GtkWidget *handlebox; GtkWidget *button_toolbar; /*GtkIconSize tmp_toolbar_icon_size;*/ GtkWidget *toolbutton_new; GtkWidget *toolbutton_open; GtkWidget *toolbutton_revert; GtkWidget *toolbutton_save; GtkWidget *separatortoolitem1; #if GTK_CHECK_VERSION(2,10,0) GtkWidget *toolbutton_print; GtkWidget *separatortoolitem2; #endif GtkWidget *toolbutton_zoom_in; GtkWidget *toolbutton_zoom_out; GtkWidget *toolbutton_zoom_fit; /* Implement these tool buttons later when we have icons */ /* GtkWidget *separatortoolitem3; */ /* GtkWidget *toolbutton_analyze; */ /* GtkWidget *toolbutton_validate;*/ /* GtkWidget *toolbutton_control; */ GtkWidget *separatortoolitem4; GtkWidget *toggletoolbutton_pan; GtkWidget *toggletoolbutton_zoom; GtkWidget *toggletoolbutton_measure; GtkWidget *hpaned1; GtkWidget *sidepane_vbox; GtkWidget *sidepane_notebook; GtkWidget *vbox10; GtkWidget *hbox4; GtkWidget *render_combobox; GtkWidget *scrolledwindow1; GtkWidget *hbox1; GtkWidget *button4; GtkWidget *image8; GtkWidget *button5; GtkWidget *image9; GtkWidget *button6; GtkWidget *image10; GtkWidget *button7; GtkWidget *image11; GtkWidget *Layer_label; GtkWidget *vbox11; GtkWidget *messages_scrolledwindow; GtkWidget *message_textview; GtkWidget *clear_messages_button; GtkWidget *Message_label; GtkWidget *vbox2; GtkWidget *main_view_table; GtkWidget *hRuler; GtkWidget *vRuler; GtkWidget *hbox5; GtkWidget *statusbar_label_left; GtkWidget *statusUnitComboBox; GtkWidget *statusbar_label_right; GtkWidget *drawingarea, *hAdjustment, *vAdjustment, *hScrollbar, *vScrollbar; GtkAccelGroup *accel_group; GtkTooltips *tooltips; /* Inline icons */ GdkPixbuf *zoompixbuf; GtkWidget *zoomimage; GdkPixbuf *measurepixbuf; GtkWidget *measureimage; GdkPixbuf *movepixbuf; GtkWidget *moveimage; GtkWidget *tempImage; gchar str_coord[MAX_COORDLEN]; const GtkTargetEntry dragTargetEntries[] = { { "text/uri-list", 0, 1 }, }; GSettingsSchema *settings_schema; const gchar *settings_id = "org.geda-user.gerbv"; screen.settings = NULL; /* Try to find settings schema, GSETTINGS_SCHEMA_DIR env. variable was * updated with fallback schema directory */ settings_schema = g_settings_schema_source_lookup( g_settings_schema_source_get_default(), settings_id, TRUE); if (NULL != settings_schema) { g_settings_schema_unref(settings_schema); screen.settings = g_settings_new(settings_id); } pointerpixbuf = gdk_pixbuf_new_from_inline(-1, pointer, FALSE, NULL); movepixbuf = gdk_pixbuf_new_from_inline(-1, move, FALSE, NULL); zoompixbuf = gdk_pixbuf_new_from_inline(-1, lzoom, FALSE, NULL); measurepixbuf = gdk_pixbuf_new_from_inline(-1, ruler, FALSE, NULL); tooltips = gtk_tooltips_new(); accel_group = gtk_accel_group_new (); mainWindow = gtk_window_new (GTK_WINDOW_TOPLEVEL); screen.win.topLevelWindow = mainWindow; vbox1 = gtk_vbox_new (FALSE, 0); gtk_container_add (GTK_CONTAINER (mainWindow), vbox1); menubar1 = gtk_menu_bar_new (); gtk_box_pack_start (GTK_BOX (vbox1), menubar1, FALSE, FALSE, 0); gtk_drag_dest_set (mainWindow, GTK_DEST_DEFAULT_ALL, dragTargetEntries, 1, GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); gtk_signal_connect (GTK_OBJECT(mainWindow), "drag-data-received", GTK_SIGNAL_FUNC(callbacks_file_drop_event), NULL); /* --- File menu --- */ menuitem_file = gtk_menu_item_new_with_mnemonic (_("_File")); gtk_container_add (GTK_CONTAINER (menubar1), menuitem_file); menuitem_file_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_file_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_file_menu), ACCEL_FILE); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_file), menuitem_file_menu); /* File menu items dealing individual layers. */ open = gtk_menu_item_new_with_mnemonic (_("_Open")); SET_ACCELS (open, ACCEL_FILE_OPEN_LAYER); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), open); gtk_tooltips_set_tip (tooltips, open, _("Open Gerbv project, Gerber, drill, " "or pick&place files"), NULL); save_layer = gtk_menu_item_new_with_mnemonic (_("_Save active layer")); screen.win.curFileMenuItem[0] = save_layer; gtk_tooltips_set_tip (tooltips, save_layer, _("Save the active layer"), NULL); SET_ACCELS (save_layer, ACCEL_FILE_SAVE_LAYER); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_layer); save_as_layer = gtk_menu_item_new_with_mnemonic (_("Save active layer _as...")); screen.win.curFileMenuItem[1] = save_as_layer; gtk_tooltips_set_tip (tooltips, save_as_layer, _("Save the active layer to a new file"), NULL); SET_ACCELS (save_as_layer, ACCEL_FILE_SAVE_LAYER_AS); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_as_layer); revert = gtk_image_menu_item_new_from_stock (GTK_STOCK_REVERT_TO_SAVED, NULL); /* Change stock label */ gtk_menu_item_set_label (GTK_MENU_ITEM (revert), _("_Revert all")); screen.win.curFileMenuItem[2] = revert; SET_ACCELS_FROM_STOCK (revert, GTK_STOCK_REVERT_TO_SAVED, ACCEL_FILE_REVERT); gtk_tooltips_set_tip (tooltips, revert, _("Reload all layers"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), revert); /* File menu items dealing with exporting different types of files. */ gtk_container_add (GTK_CONTAINER (menuitem_file_menu), gtk_separator_menu_item_new ()); menuitem_file_export = gtk_menu_item_new_with_mnemonic (_("_Export")); screen.win.curFileMenuItem[3] = menuitem_file_export; gtk_tooltips_set_tip (tooltips, menuitem_file_export, _("Export to a new format"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), menuitem_file_export); menuitem_file_export_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_file_export_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_file_export_menu), ACCEL_FILE_EXPORT); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_file_export), menuitem_file_export_menu); png = gtk_menu_item_new_with_mnemonic (_("P_NG...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), png); gtk_tooltips_set_tip (tooltips, png, _("Export visible layers to a PNG file"), NULL); pdf = gtk_menu_item_new_with_mnemonic (_("P_DF...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), pdf); gtk_tooltips_set_tip (tooltips, pdf, _("Export visible layers to a PDF file"), NULL); svg = gtk_menu_item_new_with_mnemonic (_("_SVG...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), svg); gtk_tooltips_set_tip (tooltips, svg, _("Export visible layers to a SVG file"), NULL); postscript = gtk_menu_item_new_with_mnemonic (_("_PostScript...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), postscript); gtk_tooltips_set_tip (tooltips, postscript, _("Export visible layers to a PostScript file"), NULL); #if HAVE_LIBDXFLIB dxf = gtk_menu_item_new_with_mnemonic (_("D_XF...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), dxf); gtk_tooltips_set_tip (tooltips, dxf, _("Export active layer to a DXF file"), NULL); #endif gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), gtk_separator_menu_item_new ()); rs274x = gtk_menu_item_new_with_mnemonic (_("RS-274X (_Gerber)...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), rs274x); gtk_tooltips_set_tip (tooltips, rs274x, _("Export active layer to a RS-274X (Gerber) file"), NULL); rs274xm = gtk_menu_item_new_with_mnemonic (_("RS-274X merge (Gerber)...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), rs274xm); gtk_tooltips_set_tip (tooltips, rs274xm, _("Export merged visible Gerber layers to " "a RS-274X (Gerber) file"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), gtk_separator_menu_item_new ()); drill = gtk_menu_item_new_with_mnemonic (_("_Excellon drill...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), drill); gtk_tooltips_set_tip (tooltips, drill, _("Export active layer to an Excellon drill file"), NULL); drillm = gtk_menu_item_new_with_mnemonic (_("Excellon drill merge...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), drillm); gtk_tooltips_set_tip (tooltips, drillm, _("Export merged visible drill layers to " "an Excellon drill file"), NULL); idrill = gtk_menu_item_new_with_mnemonic (_("_ISEL NCP drill...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), idrill); gtk_tooltips_set_tip (tooltips, idrill, _("Export active layer to an ISEL Automation NCP drill file"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), gtk_separator_menu_item_new ()); geda_pcb = gtk_menu_item_new_with_mnemonic (_("gEDA P_CB (beta)...")); gtk_container_add (GTK_CONTAINER (menuitem_file_export_menu), geda_pcb); gtk_tooltips_set_tip (tooltips, geda_pcb, _("Export active layer to a gEDA PCB file"), NULL); /* File menu items dealing with a gerbv project. */ gtk_container_add (GTK_CONTAINER (menuitem_file_menu), gtk_separator_menu_item_new ()); new_project = gtk_image_menu_item_new_with_mnemonic (_("_New project")); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), new_project); gtk_tooltips_set_tip (tooltips, new_project, _("Close all layers and start a new project"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_NEW, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (new_project), tempImage); save = gtk_image_menu_item_new_with_mnemonic (_("Save project")); screen.win.curFileMenuItem[4] = save; gtk_tooltips_set_tip (tooltips, save, _("Save the current project"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (save), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save); save_as = gtk_image_menu_item_new_with_mnemonic (_("Save project as...")); screen.win.curFileMenuItem[5] = save_as; gtk_tooltips_set_tip (tooltips, save_as, _("Save the current project to a new file"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (save_as), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_as); /* File menu items dealing with printing and quitting. */ gtk_container_add (GTK_CONTAINER (menuitem_file_menu), gtk_separator_menu_item_new ()); #if GTK_CHECK_VERSION(2,10,0) if (gtk_stock_lookup(GTK_STOCK_PRINT, &stock)) { gchar new[] = N_("_Print..."); stock.label = _(new); gtk_stock_add(&stock, 1); } print = gtk_image_menu_item_new_from_stock (GTK_STOCK_PRINT, NULL); screen.win.curFileMenuItem[6] = print; SET_ACCELS_FROM_STOCK (print, GTK_STOCK_PRINT, ACCEL_FILE_PRINT); gtk_tooltips_set_tip (tooltips, print, _("Print the visible layers"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), print); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), gtk_separator_menu_item_new ()); #endif quit = gtk_image_menu_item_new_from_stock (GTK_STOCK_QUIT, NULL); SET_ACCELS_FROM_STOCK (quit, GTK_STOCK_QUIT, ACCEL_FILE_QUIT); gtk_tooltips_set_tip (tooltips, quit, _("Quit Gerbv"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_file_menu), quit); /* --- Next menu item (Edit) --- */ menuitem_edit = gtk_menu_item_new_with_mnemonic (_("_Edit")); screen.win.curEditMenuItem = menuitem_edit; gtk_container_add (GTK_CONTAINER (menubar1), menuitem_edit); menuitem_edit_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_edit_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_edit_menu), ACCEL_EDIT); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_edit), menuitem_edit_menu); properties_selected = gtk_image_menu_item_new_with_mnemonic (_("Display _properties of selected object(s)")); SET_ACCELS_FROM_STOCK (properties_selected, GTK_STOCK_PROPERTIES, ACCEL_EDIT_PROPERTIES); gtk_tooltips_set_tip (tooltips, properties_selected, _("Examine the properties of the selected object"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_PROPERTIES, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (properties_selected), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_edit_menu), properties_selected); delete_selected = gtk_image_menu_item_new_with_mnemonic (_("_Delete selected object(s)")); SET_ACCELS_FROM_STOCK (delete_selected, GTK_STOCK_REMOVE, ACCEL_EDIT_DELETE); gtk_tooltips_set_tip (tooltips, delete_selected, _("Delete selected objects"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_DELETE, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (delete_selected), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_edit_menu), delete_selected); align = gtk_menu_item_new_with_mnemonic (_("_Align layers")); screen.win.curEditAlingMenuItem = align; gtk_tooltips_set_tip (tooltips, align, _("Align two layers by two selected objects"), NULL); gtk_widget_set_sensitive (align, FALSE); gtk_container_add (GTK_CONTAINER (menuitem_edit_menu), align); align_layers = gtk_menu_new (); screen.win.curEditAlingItem[0] = gtk_menu_item_new_with_mnemonic (""); screen.win.curEditAlingItem[1] = gtk_menu_item_new_with_mnemonic (""); gtk_menu_item_set_submenu (GTK_MENU_ITEM (align), align_layers); gtk_container_add (GTK_CONTAINER (align_layers), screen.win.curEditAlingItem[0]); gtk_container_add (GTK_CONTAINER (align_layers), screen.win.curEditAlingItem[1]); #if 0 /* Include these after they are coded. */ tempMenuItem = gtk_image_menu_item_new_with_label (_("Edit object properties")); gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem); gtk_tooltips_set_tip (tooltips, tempMenuItem, _("Edit the properties of the selected object"), NULL); g_signal_connect ((gpointer) tempMenuItem, "activate", G_CALLBACK (callbacks_edit_object_properties_clicked), NULL); tempMenuItem = gtk_image_menu_item_new_with_label (_("Move object(s)")); gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem); gtk_tooltips_set_tip (tooltips, tempMenuItem, _("Move the selected object(s)"),NULL); g_signal_connect ((gpointer) tempMenuItem, "activate", G_CALLBACK (callbacks_move_objects_clicked), NULL); tempMenuItem = gtk_image_menu_item_new_with_label (_("Reduce area")); gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem); gtk_tooltips_set_tip (tooltips, tempMenuItem, _("Reduce the area of the object (e.g. to prevent component floating)"),NULL); g_signal_connect ((gpointer) tempMenuItem, "activate", G_CALLBACK (callbacks_reduce_object_area_clicked), NULL); #endif /* Use the "Edit" menu as right click popup menu for the drawing area */ screen.win.drawWindowPopupMenu = menuitem_edit_menu; /* --- Next menu item (View) --- */ menuitem_view = gtk_menu_item_new_with_mnemonic (_("_View")); gtk_container_add (GTK_CONTAINER (menubar1), menuitem_view); menuitem_view_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_view_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_view_menu), ACCEL_VIEW); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_view), menuitem_view_menu); view_fullscreen = gtk_check_menu_item_new_with_mnemonic (_("Fullscr_een")); gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (view_fullscreen), FALSE); gtk_tooltips_set_tip (tooltips, view_fullscreen, _("Toggle between fullscreen and normal view"), NULL); SET_ACCELS (view_fullscreen, ACCEL_VIEW_FULLSCREEN); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), view_fullscreen); show_toolbar = gtk_check_menu_item_new_with_mnemonic (_("Show _Toolbar")); gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (show_toolbar), TRUE); gtk_tooltips_set_tip (tooltips, show_toolbar, _("Toggle visibility of the toolbar"), NULL); SET_ACCELS (show_toolbar, ACCEL_VIEW_TOOLBAR); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), show_toolbar); show_sidepane = gtk_check_menu_item_new_with_mnemonic (_("Show _Sidepane")); gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (show_sidepane), TRUE); gtk_tooltips_set_tip (tooltips, show_sidepane, _("Toggle visibility of the sidepane"), NULL); SET_ACCELS (show_sidepane, ACCEL_VIEW_SIDEPANE); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), show_sidepane); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), gtk_separator_menu_item_new ()); layer_visibility_main_menu = gtk_menu_item_new_with_mnemonic (_("Toggle layer _visibility")); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), layer_visibility_main_menu); show_selection_on_invisible = gtk_check_menu_item_new_with_mnemonic (_("Show all se_lection")); gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (show_selection_on_invisible), FALSE); gtk_tooltips_set_tip (tooltips, show_selection_on_invisible, _("Show selected objects on invisible layers"), NULL); SET_ACCELS (show_selection_on_invisible, ACCEL_VIEW_ALL_SELECTION); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), show_selection_on_invisible); show_cross_on_drill_holes = gtk_check_menu_item_new_with_mnemonic (_("Show _cross on drill holes")); gtk_tooltips_set_tip (tooltips, show_cross_on_drill_holes, _("Show cross on drill holes"), NULL); SET_ACCELS (show_cross_on_drill_holes, ACCEL_VIEW_CROSS_ON_DRILL_HOLES); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), show_cross_on_drill_holes); if (screen.settings) { g_settings_bind (screen.settings, "cross-on-drill-holes", show_cross_on_drill_holes, "active", G_SETTINGS_BIND_DEFAULT); screenRenderInfo.show_cross_on_drill_holes = gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM ( show_cross_on_drill_holes)); } layer_visibility_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(layer_visibility_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(layer_visibility_menu), ACCEL_VIEW_VIS); gtk_menu_item_set_submenu (GTK_MENU_ITEM (layer_visibility_main_menu), layer_visibility_menu); toggle_layer_visibility_item1 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 1")); SET_ACCELS (toggle_layer_visibility_item1, ACCEL_VIEW_VIS_LAYER1); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item1); toggle_layer_visibility_item2 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 2")); SET_ACCELS (toggle_layer_visibility_item2, ACCEL_VIEW_VIS_LAYER2); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item2); toggle_layer_visibility_item3 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 3")); SET_ACCELS (toggle_layer_visibility_item3, ACCEL_VIEW_VIS_LAYER3); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item3); toggle_layer_visibility_item4 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 4")); SET_ACCELS (toggle_layer_visibility_item4, ACCEL_VIEW_VIS_LAYER4); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item4); toggle_layer_visibility_item5 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 5")); SET_ACCELS (toggle_layer_visibility_item5, ACCEL_VIEW_VIS_LAYER5); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item5); toggle_layer_visibility_item6 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 6")); SET_ACCELS (toggle_layer_visibility_item6, ACCEL_VIEW_VIS_LAYER6); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item6); toggle_layer_visibility_item7 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 7")); SET_ACCELS (toggle_layer_visibility_item7, ACCEL_VIEW_VIS_LAYER7); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item7); toggle_layer_visibility_item8 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 8")); SET_ACCELS (toggle_layer_visibility_item8, ACCEL_VIEW_VIS_LAYER8); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item8); toggle_layer_visibility_item9 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 9")); SET_ACCELS (toggle_layer_visibility_item9, ACCEL_VIEW_VIS_LAYER9); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item9); toggle_layer_visibility_item10 = gtk_menu_item_new_with_label (_("Toggle visibility of layer 10")); SET_ACCELS (toggle_layer_visibility_item10, ACCEL_VIEW_VIS_LAYER10); gtk_container_add (GTK_CONTAINER (layer_visibility_menu), toggle_layer_visibility_item10); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), gtk_separator_menu_item_new ()); zoom_in = gtk_image_menu_item_new_from_stock (GTK_STOCK_ZOOM_IN, NULL); SET_ACCELS_FROM_STOCK (zoom_in, GTK_STOCK_ZOOM_IN, ACCEL_VIEW_ZOOM_IN); gtk_tooltips_set_tip (tooltips, zoom_in, _("Zoom in"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), zoom_in); zoom_out = gtk_image_menu_item_new_from_stock (GTK_STOCK_ZOOM_OUT, NULL); SET_ACCELS_FROM_STOCK (zoom_out, GTK_STOCK_ZOOM_OUT, ACCEL_VIEW_ZOOM_OUT); gtk_tooltips_set_tip (tooltips, zoom_out, _("Zoom out"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), zoom_out); fit_to_window = gtk_image_menu_item_new_from_stock (GTK_STOCK_ZOOM_FIT, NULL); gtk_tooltips_set_tip (tooltips, fit_to_window, _("Zoom to fit all visible layers in the window"), NULL); SET_ACCELS_FROM_STOCK (fit_to_window, GTK_STOCK_ZOOM_FIT, ACCEL_VIEW_ZOOM_FIT); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), fit_to_window); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), gtk_separator_menu_item_new ()); backgroundColor = gtk_image_menu_item_new_with_mnemonic (_("Background color")); gtk_tooltips_set_tip (tooltips, backgroundColor, _("Change the background color"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_SELECT_COLOR, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (backgroundColor), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), backgroundColor); /* Restore saved background color */ if (screen.settings && !screen.background_is_from_cmdline && !screen.background_is_from_project) { guint clr; clr = g_settings_get_uint (screen.settings, "background-color"); mainProject->background.blue = (clr & 0xff)*257; clr >>= 8; mainProject->background.green = (clr & 0xff)*257; clr >>= 8; mainProject->background.red = (clr & 0xff)*257; } { // rendering submenu menuitem_view_render = gtk_menu_item_new_with_mnemonic (_("_Rendering")); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), menuitem_view_render); menuitem_view_render_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_view_render_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_view_render_menu), ACCEL_VIEW_RENDER); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_view_render), menuitem_view_render_menu); menu_view_render_group = NULL; render_fast = gtk_radio_menu_item_new_with_mnemonic (menu_view_render_group, _("_Fast")); menu_view_render_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (render_fast)); gtk_container_add (GTK_CONTAINER (menuitem_view_render_menu), render_fast); render_fast_xor = gtk_radio_menu_item_new_with_mnemonic (menu_view_render_group, _("Fast (_XOR)")); menu_view_render_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (render_fast_xor)); gtk_container_add (GTK_CONTAINER (menuitem_view_render_menu), render_fast_xor); render_normal = gtk_radio_menu_item_new_with_mnemonic (menu_view_render_group, _("_Normal")); menu_view_render_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (render_normal)); gtk_container_add (GTK_CONTAINER (menuitem_view_render_menu), render_normal); render_hq = gtk_radio_menu_item_new_with_mnemonic (menu_view_render_group, _("High _Quality")); menu_view_render_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (render_hq)); gtk_container_add (GTK_CONTAINER (menuitem_view_render_menu), render_hq); screen.win.menu_view_render_group = malloc(4*sizeof(GtkWidget *)); if(screen.win.menu_view_render_group == NULL) GERB_FATAL_ERROR("malloc for rendering type synchronization failed in %s()", __FUNCTION__); screen.win.menu_view_render_group[GERBV_RENDER_TYPE_GDK] = GTK_CHECK_MENU_ITEM(render_fast); screen.win.menu_view_render_group[GERBV_RENDER_TYPE_GDK_XOR] = GTK_CHECK_MENU_ITEM(render_fast_xor); screen.win.menu_view_render_group[GERBV_RENDER_TYPE_CAIRO_NORMAL] = GTK_CHECK_MENU_ITEM(render_normal); screen.win.menu_view_render_group[GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY] = GTK_CHECK_MENU_ITEM(render_hq); } { // units submenu gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (render_fast), TRUE); menuitem_view_unit = gtk_menu_item_new_with_mnemonic (_("U_nits")); gtk_container_add (GTK_CONTAINER (menuitem_view_menu), menuitem_view_unit); menuitem_view_unit_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_view_unit_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_view_unit_menu), ACCEL_VIEW_UNITS); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_view_unit), menuitem_view_unit_menu); menu_view_unit_group = NULL; unit_mil = gtk_radio_menu_item_new_with_mnemonic (menu_view_unit_group, _("mi_l")); menu_view_unit_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (unit_mil)); gtk_container_add (GTK_CONTAINER (menuitem_view_unit_menu), unit_mil); unit_mm = gtk_radio_menu_item_new_with_mnemonic (menu_view_unit_group, _("_mm")); menu_view_unit_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (unit_mm)); gtk_container_add (GTK_CONTAINER (menuitem_view_unit_menu), unit_mm); unit_in = gtk_radio_menu_item_new_with_mnemonic (menu_view_unit_group, _("_in")); menu_view_unit_group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (unit_in)); gtk_container_add (GTK_CONTAINER (menuitem_view_unit_menu), unit_in); screen.win.menu_view_unit_group = malloc(3*sizeof(GtkWidget *)); if(screen.win.menu_view_unit_group == NULL) GERB_FATAL_ERROR("malloc for display unit synchronization failed in %s()", __FUNCTION__); screen.win.menu_view_unit_group[GERBV_MILS] = GTK_CHECK_MENU_ITEM(unit_mil); screen.win.menu_view_unit_group[GERBV_MMS] = GTK_CHECK_MENU_ITEM(unit_mm); screen.win.menu_view_unit_group[GERBV_INS] = GTK_CHECK_MENU_ITEM(unit_in); } /* --- Next menu item (Current Layer) --- */ menuitem_layer = gtk_menu_item_new_with_mnemonic (_("_Layer")); gtk_container_add (GTK_CONTAINER (menubar1), menuitem_layer); menuitem_layer_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU (menuitem_layer_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU (menuitem_layer_menu), ACCEL_LAYER); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_layer), menuitem_layer_menu); layer_visibility = gtk_menu_item_new_with_mnemonic (_("Toggle _visibility")); gtk_tooltips_set_tip (tooltips, layer_visibility, _("Toggles the visibility of the active layer"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_visibility); layer_visibility_all_on = gtk_image_menu_item_new_with_mnemonic (_("All o_n")); SET_ACCELS (layer_visibility_all_on, ACCEL_LAYER_ALL_ON); gtk_tooltips_set_tip (tooltips, layer_visibility_all_on, _("Turn on visibility of all layers"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_YES, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_visibility_all_on), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_visibility_all_on); layer_visibility_all_off = gtk_image_menu_item_new_with_mnemonic (_("All _off")); SET_ACCELS (layer_visibility_all_off, ACCEL_LAYER_ALL_OFF); gtk_tooltips_set_tip (tooltips, layer_visibility_all_off, _("Turn off visibility of all layers"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_NO, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_visibility_all_off), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_visibility_all_off); layer_invert = gtk_menu_item_new_with_mnemonic (_("_Invert color")); gtk_tooltips_set_tip (tooltips, layer_invert, _("Invert the display polarity of the active layer"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_invert); layer_color = gtk_image_menu_item_new_with_mnemonic (_("_Change color")); SET_ACCELS (layer_color, ACCEL_LAYER_COLOR); gtk_tooltips_set_tip (tooltips, layer_color, _("Change the display color of the active layer"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_SELECT_COLOR, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_color), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_color); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), gtk_separator_menu_item_new ()); layer_reload = gtk_image_menu_item_new_with_mnemonic (_("_Reload layer")); gtk_tooltips_set_tip (tooltips, layer_reload, _("Reload the active layer from disk"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_REVERT_TO_SAVED, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_reload), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_reload); layer_edit = gtk_image_menu_item_new_with_mnemonic (_("_Edit layer")); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_edit); gtk_tooltips_set_tip (tooltips, layer_edit, _("Translate, scale, rotate or mirror the active layer"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_edit), tempImage); layer_format = gtk_image_menu_item_new_with_mnemonic (_("Edit file _format")); gtk_tooltips_set_tip (tooltips, layer_format, _("View and edit the numerical format used to parse " "the active layer"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_PREFERENCES, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_format), tempImage); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_format); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), gtk_separator_menu_item_new ()); layer_up = gtk_image_menu_item_new_with_mnemonic (_("Move u_p")); gtk_tooltips_set_tip (tooltips, layer_up, _("Move the active layer one step up"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_GO_UP, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_up), tempImage); SET_ACCELS (layer_up, ACCEL_LAYER_UP); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_up); layer_down = gtk_image_menu_item_new_with_mnemonic (_("Move dow_n")); gtk_tooltips_set_tip (tooltips, layer_down, _("Move the active layer one step down"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_GO_DOWN, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_down), tempImage); SET_ACCELS (layer_down, ACCEL_LAYER_DOWN); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_down); layer_remove = gtk_image_menu_item_new_with_mnemonic (_("_Delete")); gtk_tooltips_set_tip (tooltips, layer_remove, _("Remove the active layer"), NULL); tempImage = gtk_image_new_from_stock (GTK_STOCK_REMOVE, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (layer_remove), tempImage); SET_ACCELS (layer_remove, ACCEL_LAYER_DELETE); gtk_container_add (GTK_CONTAINER (menuitem_layer_menu), layer_remove); /* The callbacks need this reference to grey the layer menu out, if there are none loaded. */ screen.win.curLayerMenuItem = menuitem_layer; /* Use the "Current Layer" menu as right click popup menu for layer tree */ screen.win.layerTreePopupMenu = menuitem_layer_menu; /* --- Next menu item (Analyze) --- */ menuitem_analyze = gtk_menu_item_new_with_mnemonic (_("_Analyze")); screen.win.curAnalyzeMenuItem = menuitem_analyze; gtk_container_add (GTK_CONTAINER (menubar1), menuitem_analyze); screen.selectionInfo.selectedNodeArray = selection_new_array (); menuitem_analyze_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_analyze_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_analyze_menu), ACCEL_ANAL); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_analyze), menuitem_analyze_menu); analyze_active_gerbers = gtk_menu_item_new_with_mnemonic ( _("Analyze visible _Gerber layers")); gtk_tooltips_set_tip (tooltips, analyze_active_gerbers, _("Examine a detailed analysis of the contents " "of all visible Gerber layers"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_active_gerbers); analyze_active_drill = gtk_menu_item_new_with_mnemonic ( _("Analyze visible _drill layers")); gtk_tooltips_set_tip (tooltips, analyze_active_drill, _("Examine a detailed analysis of the contents " "of all visible drill layers"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_active_drill); analyze_benchmark = gtk_menu_item_new_with_mnemonic (_("_Benchmark")); gtk_tooltips_set_tip (tooltips, analyze_benchmark, _("Benchmark different rendering methods. Will make " "the application unresponsive for 1 minute!"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), gtk_separator_menu_item_new ()); gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_benchmark); /* Wait and add in for 2.1?? control_gerber_options = gtk_menu_item_new_with_mnemonic (_("Control Gerber options...")); gtk_tooltips_set_tip (tooltips, control_gerber_options, _("Set which Gerber features should be displayed"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), control_gerber_options); */ menuitem_tools = gtk_menu_item_new_with_mnemonic (_("_Tools")); gtk_container_add (GTK_CONTAINER (menubar1), menuitem_tools); menuitem_tools_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_tools_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_tools_menu), ACCEL_TOOLS); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_tools), menuitem_tools_menu); pointer_tool = gtk_image_menu_item_new_with_mnemonic (_("_Pointer Tool")); tempImage = gtk_image_new_from_pixbuf (pointerpixbuf); gtk_image_menu_item_set_image ((GtkImageMenuItem *)pointer_tool, tempImage); SET_ACCELS (pointer_tool, ACCEL_TOOLS_POINTER); gtk_container_add (GTK_CONTAINER (menuitem_tools_menu), pointer_tool); gtk_tooltips_set_tip (tooltips, pointer_tool, _("Select objects on the screen"), NULL); pan_tool = gtk_image_menu_item_new_with_mnemonic (_("Pa_n Tool")); tempImage = gtk_image_new_from_pixbuf (movepixbuf); gtk_image_menu_item_set_image ((GtkImageMenuItem *)pan_tool, tempImage); SET_ACCELS (pan_tool, ACCEL_TOOLS_PAN); gtk_container_add (GTK_CONTAINER (menuitem_tools_menu), pan_tool); gtk_tooltips_set_tip (tooltips, pan_tool, _("Pan by left clicking and dragging"), NULL); zoom_tool = gtk_image_menu_item_new_with_mnemonic (_("_Zoom Tool")); tempImage = gtk_image_new_from_pixbuf (zoompixbuf); gtk_image_menu_item_set_image ((GtkImageMenuItem *)zoom_tool, tempImage); SET_ACCELS (zoom_tool, ACCEL_TOOLS_ZOOM); gtk_container_add (GTK_CONTAINER (menuitem_tools_menu), zoom_tool); gtk_tooltips_set_tip (tooltips, zoom_tool, _("Zoom by left clicking or dragging"), NULL); measure_tool = gtk_image_menu_item_new_with_mnemonic (_("_Measure Tool")); tempImage = gtk_image_new_from_pixbuf (measurepixbuf); gtk_image_menu_item_set_image ((GtkImageMenuItem *)measure_tool, tempImage); SET_ACCELS (measure_tool, ACCEL_TOOLS_MEASURE); gtk_container_add (GTK_CONTAINER (menuitem_tools_menu), measure_tool); gtk_tooltips_set_tip (tooltips, measure_tool, _("Measure distances on the screen"), NULL); menuitem_help = gtk_menu_item_new_with_mnemonic (_("_Help")); gtk_container_add (GTK_CONTAINER (menubar1), menuitem_help); menuitem_help_menu = gtk_menu_new (); gtk_menu_set_accel_group (GTK_MENU(menuitem_help_menu), accel_group); gtk_menu_set_accel_path (GTK_MENU(menuitem_help_menu), ACCEL_HELP); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_help), menuitem_help_menu); /* Not ready for 2.0 online_manual = gtk_menu_item_new_with_mnemonic (_("_Online Manual...")); gtk_container_add (GTK_CONTAINER (menuitem_help_menu), online_manual); gtk_tooltips_set_tip (tooltips, online_manual, _("View the online help documentation"), NULL); */ about = gtk_image_menu_item_new_with_mnemonic (_("_About Gerbv...")); gtk_container_add (GTK_CONTAINER (menuitem_help_menu), about); gtk_tooltips_set_tip (tooltips, about, _("View information about Gerbv"), NULL); image34 = gtk_image_new_from_stock (GTK_STOCK_DIALOG_INFO, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (about), image34); bugs_menuitem = gtk_image_menu_item_new_with_mnemonic (_("Known _bugs in this version...")); tempImage = gtk_image_new_from_stock (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (bugs_menuitem), tempImage); gtk_tooltips_set_tip (tooltips, bugs_menuitem, _("View list of known Gerbv bugs"), NULL); gtk_container_add (GTK_CONTAINER (menuitem_help_menu), bugs_menuitem); /* Create toolbar (button bar) beneath main menu */ toolbar_hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox1), toolbar_hbox, FALSE, FALSE, 0); handlebox = gtk_handle_box_new (); gtk_box_pack_start (GTK_BOX (toolbar_hbox), handlebox, TRUE, TRUE, 0); button_toolbar = gtk_toolbar_new (); gtk_widget_set_size_request (button_toolbar, 500, -1); gtk_container_add (GTK_CONTAINER (handlebox), button_toolbar); gtk_toolbar_set_style (GTK_TOOLBAR (button_toolbar), GTK_TOOLBAR_ICONS); /*tmp_toolbar_icon_size = gtk_toolbar_get_icon_size (GTK_TOOLBAR (button_toolbar));*/ toolbutton_new = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_NEW); gtk_tooltips_set_tip (tooltips, toolbutton_new, _("Close all layers and start a new project"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_new); toolbutton_open = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_OPEN); gtk_tooltips_set_tip (tooltips, toolbutton_open, _("Open Gerbv project, Gerber, drill, " "or pick&place files"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_open); toolbutton_revert = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_REVERT_TO_SAVED); gtk_tooltips_set_tip (tooltips, toolbutton_revert, _("Reload all layers in project"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_revert); toolbutton_save = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_SAVE); gtk_tooltips_set_tip (tooltips, toolbutton_save, _("Save the current project"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_save); separatortoolitem1 = (GtkWidget*) gtk_separator_tool_item_new (); gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem1); #if GTK_CHECK_VERSION(2,10,0) toolbutton_print = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_PRINT); gtk_tooltips_set_tip (tooltips, toolbutton_print, _("Print the visible layers"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_print); separatortoolitem2 = (GtkWidget*) gtk_separator_tool_item_new (); gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem2); #endif toolbutton_zoom_in = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_ZOOM_IN); gtk_tooltips_set_tip (tooltips, toolbutton_zoom_in, _("Zoom in"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_in); toolbutton_zoom_out = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_ZOOM_OUT); gtk_tooltips_set_tip (tooltips, toolbutton_zoom_out, _("Zoom out"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_out); toolbutton_zoom_fit = (GtkWidget*) gtk_tool_button_new_from_stock (GTK_STOCK_ZOOM_FIT); gtk_tooltips_set_tip (tooltips, toolbutton_zoom_fit, _("Zoom to fit all visible layers in the window"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_fit); /* Turn these on later when we have icons for these buttons */ /* separatortoolitem3 = (GtkWidget*) gtk_separator_tool_item_new (); gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem3); toolbutton_analyze = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply"); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_analyze); toolbutton_validate = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply"); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_validate); toolbutton_control = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply"); gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_control); */ separatortoolitem4 = (GtkWidget*) gtk_separator_tool_item_new (); gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem4); toggletoolbutton_pointer = (GtkWidget*) gtk_toggle_tool_button_new(); pointerimage = gtk_image_new_from_pixbuf(pointerpixbuf); gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_pointer), pointerimage); gtk_tooltips_set_tip (tooltips, toggletoolbutton_pointer, _("Select objects on the screen"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_pointer); toggletoolbutton_pan = (GtkWidget*) gtk_toggle_tool_button_new(); moveimage = gtk_image_new_from_pixbuf(movepixbuf); gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_pan), moveimage); gtk_tooltips_set_tip (tooltips, toggletoolbutton_pan, _("Pan by left clicking and dragging"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_pan); toggletoolbutton_zoom = (GtkWidget*) gtk_toggle_tool_button_new(); zoomimage = gtk_image_new_from_pixbuf(zoompixbuf); gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_zoom), zoomimage); gtk_tooltips_set_tip (tooltips, toggletoolbutton_zoom, _("Zoom by left clicking or dragging"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_zoom); toggletoolbutton_measure = (GtkWidget*) gtk_toggle_tool_button_new(); measureimage = gtk_image_new_from_pixbuf(measurepixbuf); gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_measure), measureimage); gtk_tooltips_set_tip (tooltips, toggletoolbutton_measure, _("Measure distances on the screen"), NULL); gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_measure); hpaned1 = gtk_hpaned_new (); gtk_box_pack_start (GTK_BOX (vbox1), hpaned1, TRUE, TRUE, 0); gtk_paned_set_position (GTK_PANED (hpaned1), 225); sidepane_vbox = gtk_vbox_new (FALSE, 0); gtk_widget_set_size_request (sidepane_vbox, 150, -1); gtk_paned_pack1 (GTK_PANED (hpaned1), sidepane_vbox, FALSE, FALSE); gtk_container_set_border_width (GTK_CONTAINER (sidepane_vbox), 5); sidepane_notebook = gtk_notebook_new (); gtk_widget_set_size_request (sidepane_notebook, 100, -1); gtk_box_pack_start (GTK_BOX (sidepane_vbox), sidepane_notebook, TRUE, TRUE, 0); vbox10 = gtk_vbox_new (FALSE, 3); gtk_container_add (GTK_CONTAINER (sidepane_notebook), vbox10); gtk_widget_set_size_request (vbox10, 82, -1); gtk_container_set_border_width (GTK_CONTAINER (vbox10), 4); hbox4 = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox10), hbox4, FALSE, FALSE, 0); render_combobox = gtk_combo_box_new_text (); gtk_box_pack_start (GTK_BOX (hbox4), render_combobox, TRUE, TRUE, 0); gtk_tooltips_set_tip (tooltips, render_combobox, _("Rendering type"), NULL); gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _("Fast")); gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _("Fast, with XOR")); gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _("Normal")); gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _("High quality")); if (screen.settings) { g_settings_bind (screen.settings, "visual-rendering-type", render_combobox, "active", G_SETTINGS_BIND_DEFAULT); /* Sync menu item render type */ screenRenderInfo.renderType = gtk_combo_box_get_active ( GTK_COMBO_BOX (render_combobox)); if ((unsigned int)screenRenderInfo.renderType < GERBV_RENDER_TYPE_MAX) { gtk_check_menu_item_set_active ( screen.win.menu_view_render_group[ screenRenderInfo.renderType], TRUE); } } else { gtk_combo_box_set_active (GTK_COMBO_BOX(render_combobox), screenRenderInfo.renderType); } scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start (GTK_BOX (vbox10), scrolledwindow1, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (scrolledwindow1), 2); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow1), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolledwindow1), GTK_SHADOW_IN); hbox1 = gtk_hbox_new (TRUE, 0); gtk_box_pack_start (GTK_BOX (vbox10), hbox1, FALSE, FALSE, 0); button4 = gtk_button_new (); gtk_box_pack_start (GTK_BOX (hbox1), button4, FALSE, TRUE, 0); image8 = gtk_image_new_from_stock (GTK_STOCK_ADD, GTK_ICON_SIZE_BUTTON); gtk_container_add (GTK_CONTAINER (button4), image8); gtk_tooltips_set_tip (tooltips, button4, _("Open Gerbv project, Gerber, drill, " "or pick&place files"), NULL); button5 = gtk_button_new (); gtk_box_pack_start (GTK_BOX (hbox1), button5, FALSE, TRUE, 0); image9 = gtk_image_new_from_stock (GTK_STOCK_GO_DOWN, GTK_ICON_SIZE_BUTTON); gtk_container_add (GTK_CONTAINER (button5), image9); gtk_tooltips_set_tip (tooltips, button5, _("Move the active layer one step down"), NULL); button6 = gtk_button_new (); gtk_box_pack_start (GTK_BOX (hbox1), button6, FALSE, TRUE, 0); image10 = gtk_image_new_from_stock (GTK_STOCK_GO_UP, GTK_ICON_SIZE_BUTTON); gtk_container_add (GTK_CONTAINER (button6), image10); gtk_tooltips_set_tip (tooltips, button6, _("Move the active layer one step up"), NULL); button7 = gtk_button_new (); gtk_box_pack_start (GTK_BOX (hbox1), button7, FALSE, TRUE, 0); image11 = gtk_image_new_from_stock (GTK_STOCK_REMOVE, GTK_ICON_SIZE_BUTTON); gtk_container_add (GTK_CONTAINER (button7), image11); gtk_tooltips_set_tip (tooltips, button7, _("Remove the active layer"), NULL); Layer_label = gtk_label_new (_("Layers")); gtk_notebook_set_tab_label (GTK_NOTEBOOK (sidepane_notebook), gtk_notebook_get_nth_page (GTK_NOTEBOOK (sidepane_notebook), 0), Layer_label); vbox11 = gtk_vbox_new (FALSE, 2); gtk_container_add (GTK_CONTAINER (sidepane_notebook), vbox11); gtk_container_set_border_width (GTK_CONTAINER (vbox11), 3); messages_scrolledwindow = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start (GTK_BOX (vbox11), messages_scrolledwindow, TRUE, TRUE, 0); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (messages_scrolledwindow), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); message_textview = gtk_text_view_new (); gtk_container_add (GTK_CONTAINER (messages_scrolledwindow), message_textview); gtk_text_view_set_editable (GTK_TEXT_VIEW (message_textview), FALSE); gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (message_textview), GTK_WRAP_WORD); gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (message_textview), FALSE); clear_messages_button = gtk_button_new_from_stock (GTK_STOCK_CLEAR); gtk_tooltips_set_tip (tooltips, clear_messages_button, _("Clear all messages and accumulated sum"), NULL); gtk_box_pack_start (GTK_BOX (vbox11), clear_messages_button, FALSE, FALSE, 0); Message_label = gtk_label_new (_("Messages")); gtk_notebook_set_tab_label (GTK_NOTEBOOK (sidepane_notebook), gtk_notebook_get_nth_page (GTK_NOTEBOOK (sidepane_notebook), 1), Message_label); vbox2 = gtk_vbox_new (FALSE, 4); gtk_paned_pack2 (GTK_PANED (hpaned1), vbox2, TRUE, FALSE); gtk_container_set_border_width (GTK_CONTAINER (vbox2), 4); main_view_table = gtk_table_new (3, 3, FALSE); gtk_box_pack_start (GTK_BOX (vbox2), main_view_table, TRUE, TRUE, 0); hRuler = gtk_hruler_new (); gtk_table_attach (GTK_TABLE (main_view_table), hRuler, 1, 2, 0, 1, (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), (GtkAttachOptions) (GTK_FILL), 0, 0); gtk_ruler_set_range (GTK_RULER (hRuler), 0, 100, 8.56051, 1000); vRuler = gtk_vruler_new (); gtk_table_attach (GTK_TABLE (main_view_table), vRuler, 0, 1, 1, 2, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0); gtk_ruler_set_range (GTK_RULER (vRuler), 0, 100, 8.37341, 1000); drawingarea = gtk_drawing_area_new(); gtk_table_attach (GTK_TABLE (main_view_table), drawingarea, 1, 2, 1, 2, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0); hAdjustment = (GtkWidget *) gtk_adjustment_new (0.0, -1000.0, 1000.0, 1000.0, 1000.0, 500.0); vAdjustment = (GtkWidget *) gtk_adjustment_new (0.0, -1000.0, 1000.0, 1000.0, 1000.0, 500.0); hScrollbar = gtk_hscrollbar_new (GTK_ADJUSTMENT (hAdjustment)); gtk_table_attach (GTK_TABLE (main_view_table), hScrollbar, 1, 2, 2, 3, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (GTK_FILL), 0, 0); vScrollbar = gtk_vscrollbar_new (GTK_ADJUSTMENT (vAdjustment)); gtk_table_attach (GTK_TABLE (main_view_table), vScrollbar, 2, 3, 1, 2, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (GTK_FILL), 0, 0); hbox5 = gtk_hbox_new (FALSE, 10); gtk_box_pack_start (GTK_BOX (vbox2), hbox5, FALSE, FALSE, 0); statusbar_label_left = gtk_label_new (""); gtk_box_pack_start (GTK_BOX (hbox5), statusbar_label_left, FALSE, FALSE, 0); gtk_label_set_justify (GTK_LABEL (statusbar_label_left), GTK_JUSTIFY_CENTER); statusUnitComboBox = gtk_combo_box_new_text (); gtk_box_pack_start (GTK_BOX (hbox5), statusUnitComboBox, FALSE, FALSE, 0); gtk_combo_box_append_text (GTK_COMBO_BOX (statusUnitComboBox), _("mil")); gtk_combo_box_append_text (GTK_COMBO_BOX (statusUnitComboBox), _("mm")); gtk_combo_box_append_text (GTK_COMBO_BOX (statusUnitComboBox), _("in")); screen.win.statusUnitComboBox = statusUnitComboBox; /* 1. Set default unit */ int screen_unit_orig = screen.unit; /* Trigger change */ gtk_combo_box_set_active (GTK_COMBO_BOX (statusUnitComboBox), screen_unit_orig); /* Update unit item in menu */ callbacks_statusbar_unit_combo_box_changed ( GTK_COMBO_BOX (statusUnitComboBox), GINT_TO_POINTER (TRUE)); /* 2. Try to set unit from stored settings */ if (screen.settings) { g_settings_bind (screen.settings, "visual-unit", statusUnitComboBox, "active", G_SETTINGS_BIND_DEFAULT); /* Update unit item in menu */ callbacks_statusbar_unit_combo_box_changed ( GTK_COMBO_BOX (statusUnitComboBox), GINT_TO_POINTER (TRUE)); } /* 3. Override unit from cmdline */ if (screen.unit_is_from_cmdline) { gtk_combo_box_set_active (GTK_COMBO_BOX (statusUnitComboBox), screen_unit_orig); /* Update unit item in menu */ callbacks_statusbar_unit_combo_box_changed ( GTK_COMBO_BOX (statusUnitComboBox), GINT_TO_POINTER (TRUE)); } statusbar_label_right = gtk_label_new (""); gtk_box_pack_start (GTK_BOX (hbox5), statusbar_label_right, TRUE, TRUE, 0); gtk_label_set_ellipsize (GTK_LABEL (statusbar_label_right), PANGO_ELLIPSIZE_END); gtk_misc_set_alignment (GTK_MISC (statusbar_label_right), 0, 0.5); /* * Connect signals to widgets */ /* --- File menu --- */ g_signal_connect ((gpointer) new_project, "activate", G_CALLBACK (callbacks_new_project_activate), NULL); g_signal_connect ((gpointer) open, "activate", G_CALLBACK (callbacks_open_activate), NULL); g_signal_connect ((gpointer) revert, "activate", G_CALLBACK (callbacks_revert_activate), NULL); g_signal_connect ((gpointer) save_layer, "activate", G_CALLBACK (callbacks_save_layer_activate), NULL); g_signal_connect ((gpointer) save_as_layer, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_LAYER_AS); g_signal_connect ((gpointer) save, "activate", G_CALLBACK (callbacks_save_project_activate), NULL); g_signal_connect ((gpointer) save_as, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_PROJECT_AS); g_signal_connect ((gpointer) png, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_PNG); g_signal_connect ((gpointer) pdf, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_PDF); g_signal_connect ((gpointer) svg, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_SVG); g_signal_connect ((gpointer) postscript, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_PS); g_signal_connect ((gpointer) geda_pcb, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_GEDA_PCB); #if HAVE_LIBDXFLIB g_signal_connect ((gpointer) dxf, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_DXF); #endif g_signal_connect ((gpointer) rs274x, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_RS274X); g_signal_connect ((gpointer) drill, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_DRILL); g_signal_connect ((gpointer) idrill, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_IDRILL); g_signal_connect ((gpointer) rs274xm, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_RS274XM); g_signal_connect ((gpointer) drillm, "activate", G_CALLBACK (callbacks_generic_save_activate), (gpointer) CALLBACKS_SAVE_FILE_DRILLM); #if GTK_CHECK_VERSION(2,10,0) g_signal_connect ((gpointer) print, "activate", G_CALLBACK (callbacks_print_activate), NULL); #endif g_signal_connect ((gpointer) quit, "activate", G_CALLBACK (callbacks_quit_activate), NULL); /* --- Edit menu --- */ g_signal_connect ((gpointer) delete_selected, "activate", G_CALLBACK (callbacks_delete_objects_clicked), NULL); g_signal_connect ((gpointer) properties_selected, "activate", G_CALLBACK (callbacks_display_object_properties_clicked), NULL); g_signal_connect ((gpointer) screen.win.curEditAlingItem[0], "activate", G_CALLBACK (callbacks_align_files_from_sel_clicked), GINT_TO_POINTER(0)); g_signal_connect ((gpointer) screen.win.curEditAlingItem[1], "activate", G_CALLBACK (callbacks_align_files_from_sel_clicked), GINT_TO_POINTER(1)); /* --- View menu --- */ g_signal_connect ((gpointer) view_fullscreen, "activate", G_CALLBACK (callbacks_fullscreen_toggled), GINT_TO_POINTER(0)); g_signal_connect ((gpointer) show_toolbar, "toggled", G_CALLBACK (callbacks_show_toolbar_toggled), toolbar_hbox); g_signal_connect ((gpointer) show_sidepane, "toggled", G_CALLBACK (callbacks_show_sidepane_toggled), sidepane_vbox); g_signal_connect ((gpointer) show_selection_on_invisible, "toggled", G_CALLBACK (callbacks_show_selection_on_invisible), NULL); g_signal_connect ((gpointer) show_cross_on_drill_holes, "toggled", G_CALLBACK (callbacks_show_cross_on_drill_holes), NULL); g_signal_connect ((gpointer) toggle_layer_visibility_item1, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(0)); g_signal_connect ((gpointer) toggle_layer_visibility_item2, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(1)); g_signal_connect ((gpointer) toggle_layer_visibility_item3, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(2)); g_signal_connect ((gpointer) toggle_layer_visibility_item4, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(3)); g_signal_connect ((gpointer) toggle_layer_visibility_item5, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(4)); g_signal_connect ((gpointer) toggle_layer_visibility_item6, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(5)); g_signal_connect ((gpointer) toggle_layer_visibility_item7, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(6)); g_signal_connect ((gpointer) toggle_layer_visibility_item8, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(7)); g_signal_connect ((gpointer) toggle_layer_visibility_item9, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(8)); g_signal_connect ((gpointer) toggle_layer_visibility_item10, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER(9)); g_signal_connect ((gpointer) zoom_in, "activate", G_CALLBACK (callbacks_zoom_in_activate), NULL); g_signal_connect ((gpointer) zoom_out, "activate", G_CALLBACK (callbacks_zoom_out_activate), NULL); g_signal_connect ((gpointer) fit_to_window, "activate", G_CALLBACK (callbacks_fit_to_window_activate), NULL); g_signal_connect ((gpointer) backgroundColor, "activate", G_CALLBACK (callbacks_change_background_color_clicked), NULL); g_signal_connect ((gpointer) unit_mil, "activate", G_CALLBACK (callbacks_viewmenu_units_changed), GINT_TO_POINTER(GERBV_MILS)); g_signal_connect ((gpointer) unit_mm, "activate", G_CALLBACK (callbacks_viewmenu_units_changed), GINT_TO_POINTER(GERBV_MMS)); g_signal_connect ((gpointer) unit_in, "activate", G_CALLBACK (callbacks_viewmenu_units_changed), GINT_TO_POINTER(GERBV_INS)); /* --- Current Layer menu --- */ g_signal_connect ((gpointer) layer_visibility, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER (LAYER_SELECTED)); g_signal_connect ((gpointer) layer_visibility_all_on, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER (LAYER_ALL_ON)); g_signal_connect ((gpointer) layer_visibility_all_off, "activate", G_CALLBACK (callbacks_toggle_layer_visibility_activate), GINT_TO_POINTER (LAYER_ALL_OFF)); g_signal_connect ((gpointer) layer_invert, "activate", G_CALLBACK (callbacks_invert_layer_clicked), NULL); g_signal_connect ((gpointer) layer_color, "activate", G_CALLBACK (callbacks_change_layer_color_clicked), NULL); g_signal_connect ((gpointer) layer_reload, "activate", G_CALLBACK (callbacks_reload_layer_clicked), NULL); g_signal_connect ((gpointer) layer_edit, "activate", G_CALLBACK (callbacks_change_layer_edit_clicked), NULL); g_signal_connect ((gpointer) layer_format, "activate", G_CALLBACK (callbacks_change_layer_format_clicked), NULL); g_signal_connect ((gpointer) layer_remove, "activate", G_CALLBACK (callbacks_remove_layer_button_clicked), NULL); g_signal_connect ((gpointer) layer_up, "activate", G_CALLBACK (callbacks_move_layer_up_menu_activate), NULL); g_signal_connect ((gpointer) layer_down, "activate", G_CALLBACK (callbacks_move_layer_down_menu_activate), NULL); /* --- Analyze menu --- */ g_signal_connect ((gpointer) analyze_active_gerbers, "activate", G_CALLBACK (callbacks_analyze_active_gerbers_activate), NULL); g_signal_connect ((gpointer) analyze_active_drill, "activate", G_CALLBACK (callbacks_analyze_active_drill_activate), NULL); g_signal_connect ((gpointer) analyze_benchmark, "activate", G_CALLBACK (callbacks_benchmark_clicked), NULL); /* Wait for 2.1 g_signal_connect ((gpointer) control_gerber_options, "activate", G_CALLBACK (callbacks_control_gerber_options_activate), NULL); */ /* --- Tools menu --- */ g_signal_connect ((gpointer) pointer_tool, "activate", G_CALLBACK (callbacks_change_tool), (gpointer) 0); g_signal_connect ((gpointer) pan_tool, "activate", G_CALLBACK (callbacks_change_tool), (gpointer) 1); g_signal_connect ((gpointer) zoom_tool, "activate", G_CALLBACK (callbacks_change_tool), (gpointer) 2); g_signal_connect ((gpointer) measure_tool, "activate", G_CALLBACK (callbacks_change_tool), (gpointer) 3); /* --- Help menu --- */ /* g_signal_connect ((gpointer) online_manual, "activate", G_CALLBACK (callbacks_online_manual_activate), NULL); */ g_signal_connect ((gpointer) about, "activate", G_CALLBACK (callbacks_about_activate), NULL); g_signal_connect ((gpointer) bugs_menuitem, "activate", G_CALLBACK (callbacks_bugs_activate), NULL); /* End of Glade generated code */ g_signal_connect ((gpointer) toolbutton_new, "clicked", G_CALLBACK (callbacks_new_project_activate), NULL); g_signal_connect ((gpointer) toolbutton_save, "clicked", G_CALLBACK (callbacks_save_project_activate), NULL); g_signal_connect ((gpointer) toolbutton_open, "clicked", G_CALLBACK (callbacks_open_activate), NULL); g_signal_connect ((gpointer) toolbutton_revert, "clicked", G_CALLBACK (callbacks_revert_activate), NULL); g_signal_connect ((gpointer) clear_messages_button, "clicked", G_CALLBACK (callbacks_clear_messages_button_clicked), NULL); #if GTK_CHECK_VERSION(2,10,0) g_signal_connect ((gpointer) toolbutton_print, "clicked", G_CALLBACK (callbacks_print_activate), NULL); #endif g_signal_connect ((gpointer) toolbutton_zoom_in, "clicked", G_CALLBACK (callbacks_zoom_in_activate), NULL); g_signal_connect ((gpointer) toolbutton_zoom_out, "clicked", G_CALLBACK (callbacks_zoom_out_activate), NULL); g_signal_connect ((gpointer) toolbutton_zoom_fit, "clicked", G_CALLBACK (callbacks_fit_to_window_activate), NULL); g_signal_connect ((gpointer) toggletoolbutton_pointer, "clicked", G_CALLBACK (callbacks_change_tool), (gpointer) 0); g_signal_connect ((gpointer) toggletoolbutton_pan, "clicked", G_CALLBACK (callbacks_change_tool), (gpointer) 1); g_signal_connect ((gpointer) toggletoolbutton_zoom, "clicked", G_CALLBACK (callbacks_change_tool), (gpointer) 2); g_signal_connect ((gpointer) toggletoolbutton_measure, "clicked", G_CALLBACK (callbacks_change_tool), (gpointer) 3); g_signal_connect ((gpointer) statusUnitComboBox, "changed", G_CALLBACK (callbacks_statusbar_unit_combo_box_changed), NULL); g_signal_connect ((gpointer) button4, "clicked", G_CALLBACK (callbacks_add_layer_button_clicked), NULL); g_signal_connect ((gpointer) button7, "clicked", G_CALLBACK (callbacks_remove_layer_button_clicked), NULL); g_signal_connect ((gpointer) button5, "clicked", G_CALLBACK (callbacks_move_layer_down_button_clicked), NULL); g_signal_connect ((gpointer) button6, "clicked", G_CALLBACK (callbacks_move_layer_up_button_clicked), NULL); g_signal_connect ((gpointer) hAdjustment, "value-changed", G_CALLBACK (callbacks_hadjustment_value_changed), NULL); g_signal_connect ((gpointer) vAdjustment, "value-changed", G_CALLBACK (callbacks_vadjustment_value_changed), NULL); g_signal_connect ((gpointer) hScrollbar, "button-press-event", G_CALLBACK (callbacks_scrollbar_button_pressed), NULL); g_signal_connect ((gpointer) hScrollbar, "button-release-event", G_CALLBACK (callbacks_scrollbar_button_released), NULL); g_signal_connect ((gpointer) vScrollbar, "button-press-event", G_CALLBACK (callbacks_scrollbar_button_pressed), NULL); g_signal_connect ((gpointer) vScrollbar, "button-release-event", G_CALLBACK (callbacks_scrollbar_button_released), NULL); gtk_window_add_accel_group (GTK_WINDOW (mainWindow), accel_group); GtkListStore *list_store; list_store = gtk_list_store_new (4, G_TYPE_BOOLEAN, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING); GtkWidget *tree; tree = gtk_tree_view_new_with_model (GTK_TREE_MODEL (list_store)); GtkCellRenderer *renderer; GtkTreeViewColumn *column; renderer = gtk_cell_renderer_toggle_new (); column = gtk_tree_view_column_new_with_attributes ("Visible", renderer, "active", 0, NULL); gtk_tree_view_column_set_min_width ((GtkTreeViewColumn *)column, 25); gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column); renderer = gtk_cell_renderer_pixbuf_new (); column = gtk_tree_view_column_new_with_attributes ("Color", renderer, "pixbuf", 1, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column); renderer = gtk_cell_renderer_text_new (); g_object_set (G_OBJECT (renderer), "foreground", "red", "xalign", 0.5, "family", "Times", "size-points", 12.0, NULL); column = gtk_tree_view_column_new_with_attributes ("Modified", renderer, "text", 3, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column); gtk_tree_view_column_set_min_width ((GtkTreeViewColumn *)column,20); renderer = gtk_cell_renderer_text_new (); column = gtk_tree_view_column_new_with_attributes ("Name", renderer, "markup", 2, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column); gtk_tree_view_set_headers_visible ((GtkTreeView *)tree, FALSE); gtk_signal_connect(GTK_OBJECT(tree), "key-press-event", GTK_SIGNAL_FUNC(callbacks_layer_tree_key_press), NULL); gtk_signal_connect(GTK_OBJECT(tree), "button-press-event", GTK_SIGNAL_FUNC(callbacks_layer_tree_button_press), NULL); gtk_container_add (GTK_CONTAINER (scrolledwindow1), tree); GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree)); gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE); gtk_tree_view_set_enable_search (GTK_TREE_VIEW (tree), FALSE); gtk_tree_view_set_reorderable (GTK_TREE_VIEW (tree), TRUE); g_signal_connect (G_OBJECT(list_store), "row-inserted", G_CALLBACK (callbacks_layer_tree_row_inserted), NULL); /* steal the focus to the tree to make sure none of the buttons are focused */ gtk_widget_grab_focus (tree); /* * Connect all events on drawing area */ gtk_signal_connect(GTK_OBJECT(drawingarea), "expose_event", GTK_SIGNAL_FUNC(callbacks_drawingarea_expose_event), NULL); gtk_signal_connect(GTK_OBJECT(drawingarea),"configure_event", GTK_SIGNAL_FUNC(callbacks_drawingarea_configure_event), NULL); gtk_signal_connect(GTK_OBJECT(drawingarea), "motion_notify_event", GTK_SIGNAL_FUNC(callbacks_drawingarea_motion_notify_event), NULL); gtk_signal_connect(GTK_OBJECT(drawingarea), "button_press_event", GTK_SIGNAL_FUNC(callbacks_drawingarea_button_press_event), NULL); gtk_signal_connect(GTK_OBJECT(drawingarea), "button_release_event", GTK_SIGNAL_FUNC(callbacks_drawingarea_button_release_event), NULL); gtk_signal_connect_after(GTK_OBJECT(mainWindow), "key_press_event", GTK_SIGNAL_FUNC(callbacks_window_key_press_event), NULL); gtk_signal_connect_after(GTK_OBJECT(mainWindow), "key_release_event", GTK_SIGNAL_FUNC(callbacks_window_key_release_event), NULL); gtk_signal_connect_after(GTK_OBJECT(mainWindow), "scroll_event", GTK_SIGNAL_FUNC(callbacks_window_scroll_event), NULL); gtk_signal_connect_after(GTK_OBJECT(mainWindow), "delete_event", GTK_SIGNAL_FUNC(callbacks_quit_activate), NULL); gtk_widget_set_events(drawingarea, GDK_EXPOSURE_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_ENTER_NOTIFY_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_SCROLL_MASK ); /* * Setup some GTK+ defaults. * These should really be somewhere else. */ GdkColor zoom_outline_color = {0, 50000, 50000, 50000}; GdkColor dist_measure_color = {0, 60000, 30000, 65000}; GdkColor selection_color = {0, 65000, 65000, 65000}; screen.zoom_outline_color = zoom_outline_color; screen.dist_measure_color = dist_measure_color; screen.selection_color = selection_color; screen.length_sum = 0; screen.drawing_area = drawingarea; screen.win.hAdjustment = hAdjustment; screen.win.vAdjustment = vAdjustment; screen.win.hRuler = hRuler; screen.win.vRuler = vRuler; screen.win.sidepane_notebook = sidepane_notebook; screen.win.sidepaneRenderComboBox = GTK_COMBO_BOX(render_combobox); screen.win.toolButtonPointer = toggletoolbutton_pointer; screen.win.toolButtonPan = toggletoolbutton_pan; screen.win.toolButtonZoom = toggletoolbutton_zoom; screen.win.toolButtonMeasure = toggletoolbutton_measure; /* make sure tooltips show on gtk <2.12 systems */ gtk_tooltips_enable (tooltips); gint width, height; /* Good defaults according to Ales. Gives aspect ratio * of 1.3333... */ if (req_width != -1 && req_height != -1) { width = req_width; height = req_height; } else { GdkScreen *screen; int nmonitors; screen = gdk_screen_get_default(); nmonitors = gdk_screen_get_n_monitors(screen); width = gdk_screen_get_width(screen) * 3/4 / nmonitors; height = gdk_screen_get_height(screen) * 3/4 / nmonitors; } gtk_window_set_default_size(GTK_WINDOW(mainWindow), width, height); /* Restore main window size */ if (screen.settings && req_width == -1 && req_height == -1) { GVariant *var; const gint32 *xy; gsize num; gboolean is_max; var = g_settings_get_value (screen.settings, "window-size"); xy = g_variant_get_fixed_array (var, &num, sizeof (*xy)); if (num == 2) gtk_window_set_default_size (GTK_WINDOW (mainWindow), xy[0], xy[1]); g_variant_unref (var); var = g_settings_get_value (screen.settings, "window-position"); xy = g_variant_get_fixed_array (var, &num, sizeof (*xy)); if (num == 2) gtk_window_move (GTK_WINDOW (mainWindow), xy[0], xy[1]); g_variant_unref (var); is_max = g_settings_get_boolean ( screen.settings, "window-maximized"); if (is_max) gtk_window_maximize (GTK_WINDOW (mainWindow)); } g_object_set (G_OBJECT(gtk_settings_get_default()), "gtk-can-change-accels", TRUE, NULL); interface_load_accels (); gtk_widget_show_all (mainWindow); screen.win.messageTextView = message_textview; screen.win.statusMessageLeft = statusbar_label_left; screen.win.statusMessageRight = statusbar_label_right; screen.win.layerTree = tree; screen.win.treeIsUpdating = FALSE; /* Request label largest width: negative mils coords require largest space */ utf8_snprintf (str_coord, MAX_COORDLEN, _(gerbv_coords_pattern_mils_str), COORD2MILS (-screenRenderInfo.displayWidth/2.0/GERBV_SCALE_MIN), COORD2MILS (-screenRenderInfo.displayHeight/2.0/GERBV_SCALE_MIN)); request_label_max_size_by_text (screen.win.statusMessageLeft, str_coord); callbacks_change_tool (NULL, (gpointer) 0); rename_main_window("",mainWindow); set_window_icon (mainWindow); callbacks_update_layer_tree (); /* Set GTK error log handler */ g_log_set_handler (NULL, G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION | G_LOG_LEVEL_MASK, callbacks_handle_log_messages, NULL); /* Output temporary stored log messages */ extern GArray *log_array_tmp; struct log_struct log_item; int i; for (i = 0; i < log_array_tmp->len; i++) { log_item = g_array_index (log_array_tmp, struct log_struct, i); callbacks_handle_log_messages (log_item.domain, log_item.level, log_item.message, NULL); g_free(log_item.domain); g_free(log_item.message); } g_array_free (log_array_tmp, TRUE); /* connect this signals as late as possible to avoid triggering them before the gui is drawn */ g_signal_connect ((gpointer) render_fast, "activate", G_CALLBACK (callbacks_viewmenu_rendertype_changed), GINT_TO_POINTER(GERBV_RENDER_TYPE_GDK)); g_signal_connect ((gpointer) render_fast_xor, "activate", G_CALLBACK (callbacks_viewmenu_rendertype_changed), GINT_TO_POINTER(GERBV_RENDER_TYPE_GDK_XOR)); g_signal_connect ((gpointer) render_normal, "activate", G_CALLBACK (callbacks_viewmenu_rendertype_changed), GINT_TO_POINTER(GERBV_RENDER_TYPE_CAIRO_NORMAL)); g_signal_connect ((gpointer) render_hq, "activate", G_CALLBACK (callbacks_viewmenu_rendertype_changed), GINT_TO_POINTER(GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY)); g_signal_connect ((gpointer) render_combobox, "changed", G_CALLBACK (callbacks_sidepane_render_type_combo_box_changed), NULL); gtk_main(); interface_save_accels (); } /* ---------------------------------------------------- */ void interface_set_render_type (int t) { if (t >= GERBV_RENDER_TYPE_MAX) return; screenRenderInfo.renderType = t; /* make sure the interface is already up before calling * gtk_combo_box_set_active() */ if (!screen.win.sidepaneRenderComboBox) return; gtk_combo_box_set_active (GTK_COMBO_BOX (screen.win.sidepaneRenderComboBox), t); gtk_check_menu_item_set_active (screen.win.menu_view_render_group[t], TRUE); } /* ---------------------------------------------------- */ /** * This dialog box shows a message and two buttons: * "True" and "False". It returns gboolean 1 if the * user clicked "True", and gboolean 0 if the user * clicked "False". * */ gboolean interface_get_alert_dialog_response (const gchar *primaryText, const gchar *secondaryText, gboolean show_checkbox, gboolean *ask_to_show_again, const gchar *true_button_label, const gchar *false_button_label) /* This fcn returns TRUE if the user presses the OK button, otherwise it returns FALSE. */ { /* Set show_checkbox = TRUE to show "do not show this again" checkbox. */ /* Point ask_to_show_again to the variable to set to not show the checkbox. */ GtkWidget *dialog1; GtkWidget *dialog_vbox1; GtkWidget *hbox1; GtkWidget *image1; GtkWidget *label1; GtkWidget *checkbox=NULL; GtkWidget *dialog_action_area1; GtkWidget *true_button, *false_button; gboolean returnVal = FALSE; dialog1 = gtk_dialog_new (); gtk_window_set_title (GTK_WINDOW (dialog1), _("Gerbv Alert")); gtk_container_set_border_width (GTK_CONTAINER (dialog1), 6); gtk_window_set_resizable (GTK_WINDOW (dialog1), FALSE); gtk_window_set_type_hint (GTK_WINDOW (dialog1), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_dialog_set_has_separator (GTK_DIALOG (dialog1), FALSE); dialog_vbox1 = GTK_DIALOG (dialog1)->vbox; hbox1 = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (hbox1), 6); image1 = gtk_image_new_from_icon_name (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG); gtk_box_pack_start (GTK_BOX (hbox1), image1, TRUE, TRUE, 0); gtk_misc_set_alignment (GTK_MISC (image1), 0.5, 0); gchar *labelMessage = g_strconcat ("", _(primaryText), "\n\n", _(secondaryText), NULL); label1 = gtk_label_new (labelMessage); g_free (labelMessage); GtkWidget *vbox9 = gtk_vbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox9), label1, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox1), vbox9, FALSE, FALSE, 0); gtk_label_set_use_markup (GTK_LABEL (label1), TRUE); gtk_label_set_line_wrap (GTK_LABEL (label1), TRUE); // even with no checkbox, this extra hbox gives the recommended 24 px space between the // label and the buttons GtkWidget *hbox2 = gtk_hbox_new (FALSE, 12); if (show_checkbox) { GtkWidget *label3 = gtk_label_new (" "); checkbox = gtk_check_button_new_with_label(_("Do not show this dialog again.")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(checkbox), FALSE); gtk_box_pack_start (GTK_BOX (hbox2), label3, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox2), checkbox, FALSE, FALSE, 0); } gtk_box_pack_start (GTK_BOX (vbox9), hbox2, FALSE, FALSE, 12); dialog_action_area1 = GTK_DIALOG (dialog1)->action_area; gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END); if (false_button_label) { false_button = gtk_button_new_from_stock (false_button_label); gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), false_button, GTK_RESPONSE_CANCEL); GTK_WIDGET_SET_FLAGS (false_button, GTK_CAN_DEFAULT); gtk_widget_grab_default (false_button); gtk_widget_grab_focus (false_button); } if (true_button_label) { true_button = gtk_button_new_from_stock (true_button_label); gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), true_button, GTK_RESPONSE_OK); GTK_WIDGET_SET_FLAGS (true_button, GTK_CAN_DEFAULT); } gtk_widget_show_all (dialog1); if (gtk_dialog_run ((GtkDialog*)dialog1) == GTK_RESPONSE_OK) { /* check to see if user clicked on "do not show again" box */ if ((show_checkbox == TRUE) && (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox)) == TRUE) && (ask_to_show_again != NULL) ) { /* The user clicked the "do not show again box". Set corresponding * flag to FALSE. */ *ask_to_show_again = FALSE; } returnVal = TRUE; } gtk_widget_destroy (dialog1); return returnVal; } static void interface_reopen_question_callback_select_all (GtkWidget *checkbox, gpointer user_data) { /* Set select all checkbox if it was inconsistent. */ if (gtk_toggle_button_get_inconsistent (GTK_TOGGLE_BUTTON (checkbox))) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox), TRUE); gtk_toggle_button_set_inconsistent (GTK_TOGGLE_BUTTON (checkbox), FALSE); for (GSList *cb = user_data; cb; cb = cb->next) { gtk_toggle_button_set_active (cb->data, gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox))); } } struct interface_reopen_question_struct { GtkWidget *set_all_checkbox; GSList *checkbox_list; }; static void interface_reopen_question_callback_checkbox(GtkWidget *checkbox, gpointer user_data) { struct interface_reopen_question_struct *st = user_data; gboolean all_set = TRUE, all_clear = TRUE; if (st->set_all_checkbox == NULL) return; for (GSList *cb = st->checkbox_list; cb; cb = cb->next) { if (gtk_toggle_button_get_active(cb->data)) all_clear = FALSE; else all_set = FALSE; } gtk_toggle_button_set_inconsistent ( GTK_TOGGLE_BUTTON (st->set_all_checkbox), FALSE); if (all_set) gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON (st->set_all_checkbox), TRUE); else if (all_clear) gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON (st->set_all_checkbox), FALSE); else gtk_toggle_button_set_inconsistent ( GTK_TOGGLE_BUTTON (st->set_all_checkbox), TRUE); } /* Add checkboxes for filenames and return list with checkbox widgets */ static GSList * interface_reopen_question_add_filename_checkboxes ( GSList *fns, GSList *fns_is_mod, GSList *fns_cnt, GSList *fns_lay_num, GtkWidget *box) { GtkWidget *scrl_win, *vbox; GSList *checkboxes = NULL; scrl_win = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start (GTK_BOX (box), scrl_win, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (scrl_win), 2); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrl_win), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); vbox = gtk_vbox_new (FALSE, 2); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrl_win), vbox); for (unsigned int i = 0; i < g_slist_length (fns); i++) { GtkWidget *cb; GString *g_str = g_string_new (NULL); gchar *bn = g_path_get_basename (g_slist_nth_data (fns, i)); int cnt = GPOINTER_TO_INT (g_slist_nth_data (fns_cnt, i)); int lay_num = 1 + GPOINTER_TO_INT (g_slist_nth_data (fns_lay_num, i)); if (GPOINTER_TO_INT (g_slist_nth_data (fns_is_mod, i))) { /* Layer is modified */ if (cnt > 1) g_string_printf (g_str, ngettext( "%d *%s (changed, %d layer)", "%d *%s (changed, %d layers)", cnt), lay_num, bn, cnt); else g_string_printf (g_str, _("%d *%s (changed)"), lay_num, bn); } else { /* Layer is not modified */ if (cnt > 1) g_string_printf (g_str, ngettext( "%d %s (%d layer)", "%d %s (%d layers)", cnt), lay_num, bn, cnt); else g_string_printf (g_str, _("%d %s"), lay_num, bn); } g_free (bn); cb = gtk_check_button_new_with_label (""); gtk_label_set_markup (GTK_LABEL (gtk_bin_get_child (GTK_BIN (cb))), g_str->str); g_string_free (g_str, TRUE); checkboxes = g_slist_append (checkboxes, cb); gtk_box_pack_start (GTK_BOX (vbox), cb, FALSE, FALSE, 0); } return checkboxes; } /* ---------------------------------------------------- */ /** * This dialog box shows a text message with three buttons in the case * if the file to be open was already loaded: * "Reload" (the already loaded file) * "Open as new layer" * "Skip loading" */ int interface_reopen_question (GSList *fns, GSList *fns_is_mod, GSList *fns_cnt, GSList *fns_lay_num) { GtkDialog *dialog; GtkWidget *hbox, *vbox_main, *image, *selectAllCheckBox = NULL; GSList *fnCheckButtons = NULL; GtkWidget *label, *reloadButton, *openAsNewButton; struct interface_reopen_question_struct checkboxes_struct; GString *g_str = g_string_new (NULL); guint fns_len; gint ret = 0; fns_len = g_slist_length (fns); if (0 == fns_len) return GTK_RESPONSE_NONE; dialog = GTK_DIALOG (gtk_dialog_new()); gtk_window_set_title (GTK_WINDOW (dialog), _("Gerbv — Reload Files")); gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); gtk_window_set_type_hint (GTK_WINDOW (dialog), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_dialog_set_has_separator (dialog, FALSE); hbox = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (dialog->vbox), hbox, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); image = gtk_image_new_from_icon_name (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG); gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0); gtk_misc_set_alignment (GTK_MISC (image), 0, 0); vbox_main = gtk_vbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), vbox_main, TRUE, TRUE, 0); g_string_printf (g_str, ""); g_string_append_printf (g_str, ngettext( "%u file is already loaded from directory", "%u files are already loaded from directory", fns_len), fns_len); g_string_append_printf (g_str, "\n\"%s\"", g_path_get_dirname (fns->data)); /* Add title */ label = gtk_label_new (g_str->str); gtk_box_pack_start (GTK_BOX (vbox_main), label, FALSE, FALSE, 0); gtk_label_set_use_markup (GTK_LABEL (label), TRUE); gtk_misc_set_alignment (GTK_MISC (label), 0, 0); gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); gtk_label_set_selectable (GTK_LABEL (label), TRUE); g_string_free (g_str, TRUE); fnCheckButtons = interface_reopen_question_add_filename_checkboxes ( fns, fns_is_mod, fns_cnt, fns_lay_num, vbox_main); /* Add "Select all" checkbox */ if (fns_len > 1) { selectAllCheckBox = gtk_check_button_new_with_mnemonic (_("Select _all")); g_signal_connect ((gpointer) selectAllCheckBox, "toggled", G_CALLBACK (interface_reopen_question_callback_select_all), fnCheckButtons); gtk_box_pack_start (GTK_BOX(vbox_main), selectAllCheckBox, FALSE, FALSE, 0); } /* Select all chekboxes by default */ if (fns_len > 1) { gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(selectAllCheckBox), TRUE); } else { /* Only one checkbox in list */ gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(fnCheckButtons->data), TRUE); } checkboxes_struct.checkbox_list = fnCheckButtons; checkboxes_struct.set_all_checkbox = selectAllCheckBox; /* Set callback for each file checkbox */ for (GSList *cb = checkboxes_struct.checkbox_list; cb; cb = cb->next) { g_signal_connect ((gpointer) cb->data, "toggled", G_CALLBACK (interface_reopen_question_callback_checkbox), &checkboxes_struct); } gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog->action_area), GTK_BUTTONBOX_END); reloadButton = gtk_button_new_with_mnemonic (_("_Reload")); gtk_widget_set_tooltip_text (reloadButton, _("Reload layers with selected files")); gtk_dialog_add_action_widget (dialog, reloadButton, GTK_RESPONSE_YES); GTK_WIDGET_SET_FLAGS (reloadButton, GTK_CAN_DEFAULT); openAsNewButton = gtk_button_new_with_mnemonic (_("Add as _new")); gtk_widget_set_tooltip_text (openAsNewButton, _("Add selected files as new layers")); gtk_dialog_add_action_widget (dialog, openAsNewButton, GTK_RESPONSE_OK); gtk_dialog_add_action_widget (dialog, gtk_button_new_from_stock (GTK_STOCK_CANCEL), GTK_RESPONSE_CANCEL); gtk_widget_show_all (GTK_WIDGET(dialog)); ret = gtk_dialog_run (dialog); /* Mark with NULL filenames list data with unchecked filenames */ for (GSList *cb = fnCheckButtons, *fn = fns; cb && fn; cb = cb->next, fn = fn->next) { if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (cb->data))) fn->data = NULL; } g_slist_free_full (fnCheckButtons, (GDestroyNotify)gtk_widget_destroy); gtk_widget_destroy (GTK_WIDGET(dialog)); return ret; } /* ---------------------------------------------------- */ /** * This dialog box shows a textmessage and one button: * "OK". It does not return anything. * */ void interface_show_alert_dialog (gchar *primaryText, gchar *secondaryText, gboolean show_checkbox, gboolean *ask_to_show_again ) /* This fcn tells the user something, and only displays "OK" */ { /* Set show_checkbox = TRUE to show "do not show this again" checkbox. */ /* Point ask_to_show_again to the variable to set to not show the checkbox. */ GtkWidget *dialog1; GtkWidget *dialog_vbox1; GtkWidget *hbox1; GtkWidget *image1; GtkWidget *label1; GtkWidget *checkbox=NULL; GtkWidget *dialog_action_area1; GtkWidget *okbutton1; dialog1 = gtk_dialog_new (); gtk_container_set_border_width (GTK_CONTAINER (dialog1), 6); gtk_window_set_resizable (GTK_WINDOW (dialog1), FALSE); gtk_window_set_type_hint (GTK_WINDOW (dialog1), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_dialog_set_has_separator (GTK_DIALOG (dialog1), FALSE); dialog_vbox1 = GTK_DIALOG (dialog1)->vbox; hbox1 = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (hbox1), 6); image1 = gtk_image_new_from_icon_name (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG); gtk_box_pack_start (GTK_BOX (hbox1), image1, TRUE, TRUE, 0); gtk_misc_set_alignment (GTK_MISC (image1), 0.5, 0); gchar *labelMessage = g_strconcat ("", _(primaryText), "\n\n", _(secondaryText), NULL); label1 = gtk_label_new (labelMessage); g_free (labelMessage); GtkWidget *vbox9 = gtk_vbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox9), label1, FALSE, FALSE, 0); gtk_label_set_use_markup (GTK_LABEL (label1), TRUE); gtk_label_set_line_wrap (GTK_LABEL (label1), TRUE); gtk_box_pack_start (GTK_BOX (hbox1), vbox9, FALSE, FALSE, 0); GtkWidget *hbox2 = gtk_hbox_new (FALSE, 12); if (show_checkbox) { GtkWidget *label3 = gtk_label_new (" "); checkbox = gtk_check_button_new_with_label(_("Do not show this dialog again.")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(checkbox), FALSE); gtk_box_pack_start (GTK_BOX (hbox2), label3, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox2), checkbox, FALSE, FALSE, 0); } gtk_box_pack_start (GTK_BOX (vbox9), hbox2, FALSE, FALSE, 12); dialog_action_area1 = GTK_DIALOG (dialog1)->action_area; gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END); okbutton1 = gtk_button_new_from_stock (GTK_STOCK_OK); gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), okbutton1, GTK_RESPONSE_OK); GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT); gtk_widget_show_all (dialog1); /* check to see if user clicked on "do not show again" box */ if ((show_checkbox == TRUE) && (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox)) == TRUE) && (ask_to_show_again != NULL) ) { /* The user clicked the "do not show again box". Set corresponding * flag to FALSE. */ *ask_to_show_again = FALSE; } gtk_dialog_run (GTK_DIALOG(dialog1)); gtk_widget_destroy (dialog1); return; } static int focused_widget_num = 0; void focus_in_event_callback (int *widget_num) { focused_widget_num = *widget_num; } void interface_show_layer_edit_dialog (gerbv_user_transformation_t *transforms[], gerbv_unit_t screenUnit) { GtkWidget *dialog; GtkWidget *check1,*check2,*tempWidget,*tempWidget2,*tableWidget; GtkWidget *spin1,*spin2,*spin3,*spin4,*spin5; GtkAdjustment *adj; /* NOTE: transforms[0] is selected layer, other in array is visible. */ /* Copy _selected_ layer transformation to use as initial. */ gerbv_user_transformation_t trans_init = *transforms[0], *trans = &trans_init; #if 0 /* TODO: cancel, backup array of initial transforms */ gerbv_user_transformation_t startTransform = trans; #endif GtkWidget **focus_widgets[] = {&spin1, &spin2, &spin3, &spin4, &spin5, &check1, &check2, NULL}; int focus_nums[G_N_ELEMENTS(focus_widgets)]; int i; dialog = gtk_dialog_new_with_buttons (_("Edit layer"), GTK_WINDOW (screen.win.topLevelWindow), GTK_DIALOG_DESTROY_WITH_PARENT, _("Apply to _active"), GTK_RESPONSE_APPLY, /* Yes -- apply to all visible */ _("Apply to _visible"), GTK_RESPONSE_YES, GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL); gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); gtk_window_set_type_hint (GTK_WINDOW (dialog), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); tableWidget = gtk_table_new (16,3,FALSE); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), tableWidget, FALSE, FALSE, 0); tempWidget = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (tempWidget), _("Translation")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,0,2,0,1,GTK_EXPAND|GTK_FILL,0,0,5); tempWidget = gtk_label_new (""); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,0,1,1,2,GTK_EXPAND|GTK_FILL,0,0,0); gdouble translateX, translateY; if (screenUnit == (gerbv_unit_t) GERBV_MILS) { tempWidget = gtk_label_new (_("X (mils):")); tempWidget2 = gtk_label_new (_("Y (mils):")); translateX = trans->translateX * 1000; translateY = trans->translateY * 1000; } else if (screen.unit == (gerbv_gui_unit_t) GERBV_MMS) { tempWidget = gtk_label_new (_("X (mm):")); tempWidget2 = gtk_label_new (_("Y (mm):")); translateX = trans->translateX * 25.4; translateY = trans->translateY * 25.4; } else { tempWidget = gtk_label_new (_("X (inches):")); tempWidget2 = gtk_label_new (_("Y (inches):")); translateX = trans->translateX; translateY = trans->translateY; } gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,1,2,GTK_FILL,0,5,0); gtk_misc_set_alignment (GTK_MISC (tempWidget2), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget2,1,2,2,3,GTK_FILL,0,5,0); adj = (GtkAdjustment *) gtk_adjustment_new (translateX, -1000000, 1000000, 1, 10, 0.0); spin1 = (GtkWidget *) gtk_spin_button_new (adj, 0.1, 4); gtk_table_attach ((GtkTable *) tableWidget, spin1,2,3,1,2,GTK_FILL,0,0,0); adj = (GtkAdjustment *) gtk_adjustment_new (translateY, -1000000, 1000000, 1, 10, 0.0); spin2 = (GtkWidget *) gtk_spin_button_new (adj, 0.1, 4); gtk_table_attach ((GtkTable *) tableWidget, spin2,2,3,2,3,GTK_FILL,0,0,0); gtk_table_set_row_spacing ((GtkTable *) tableWidget, 3, 8); tempWidget = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (tempWidget), _("Scale")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,0,2,4,5,GTK_EXPAND|GTK_FILL,0,0,5); tempWidget = gtk_label_new (_("X direction:")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,5,6,GTK_FILL,0,5,0); tempWidget = gtk_label_new (_("Y direction:")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,6,7,GTK_FILL,0,5,0); adj = (GtkAdjustment *) gtk_adjustment_new (trans->scaleX, -1000000, 1000000, 1, 10, 0.0); spin3 = (GtkWidget *) gtk_spin_button_new (adj, 1, 3); gtk_table_attach ((GtkTable *) tableWidget, spin3,2,3,5,6,GTK_FILL,0,0,0); adj = (GtkAdjustment *) gtk_adjustment_new (trans->scaleY, -1000000, 1000000, 1, 10, 0.0); spin4 = (GtkWidget *) gtk_spin_button_new (adj, 1, 3); gtk_table_attach ((GtkTable *) tableWidget, spin4,2,3,6,7,GTK_FILL,0,0,0); gtk_table_set_row_spacing ((GtkTable *) tableWidget, 7, 8); tempWidget = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (tempWidget), _("Rotation")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,0,2,8,9,GTK_EXPAND|GTK_FILL,0,0,5); tempWidget = gtk_label_new (_("Rotation (degrees):")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,9,10,GTK_FILL,0,5,0); spin5 = gtk_combo_box_new_text(); gtk_combo_box_append_text (GTK_COMBO_BOX(spin5), _("None")); gtk_combo_box_append_text (GTK_COMBO_BOX(spin5), _("90 deg CCW")); gtk_combo_box_append_text (GTK_COMBO_BOX(spin5), _("180 deg CCW")); gtk_combo_box_append_text (GTK_COMBO_BOX(spin5), _("270 deg CCW")); gdouble rot_deg = RAD2DEG(trans->rotation); if (rot_deg < 135 && rot_deg >= 45) gtk_combo_box_set_active (GTK_COMBO_BOX(spin5), 1); else if (rot_deg < 225 && rot_deg >= 135) gtk_combo_box_set_active (GTK_COMBO_BOX(spin5), 2); else if (rot_deg < 315 && rot_deg >= 225) gtk_combo_box_set_active (GTK_COMBO_BOX(spin5), 3); else gtk_combo_box_set_active (GTK_COMBO_BOX(spin5), 0); #if 0 adj = (GtkAdjustment *) gtk_adjustment_new (RAD2DEG(trans->rotation), -1000000, 1000000, 1, 10, 0.0); spin5 = (GtkWidget *) gtk_spin_button_new (adj, 0, 3); #endif gtk_table_attach ((GtkTable *) tableWidget, spin5,2,3,9,10,GTK_FILL,0,0,0); gtk_table_set_row_spacing ((GtkTable *) tableWidget, 10, 8); tempWidget = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (tempWidget), _("Mirroring")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 0.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,0,2,11,12,GTK_EXPAND|GTK_FILL,0,0,5); tempWidget = gtk_label_new (_("About X axis:")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 1.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,12,13,GTK_FILL,0,5,0); check1 = (GtkWidget *) gtk_check_button_new (); gtk_toggle_button_set_active ((GtkToggleButton *) check1, trans->mirrorAroundX); gtk_table_attach ((GtkTable *) tableWidget, check1,2,3,12,13,0,0,0,2); tempWidget = gtk_label_new (_("About Y axis:")); gtk_misc_set_alignment (GTK_MISC (tempWidget), 1.0, 0.5); gtk_table_attach ((GtkTable *) tableWidget, tempWidget,1,2,13,14,GTK_FILL,0,5,0); check2 = (GtkWidget *) gtk_check_button_new (); gtk_toggle_button_set_active ((GtkToggleButton *) check2, trans->mirrorAroundY); gtk_table_attach ((GtkTable *) tableWidget, check2,2,3,13,14,0,0,0,2); for (i = 0; focus_widgets[i] != NULL; i++) { /* Set stored focus */ if (i == focused_widget_num) { gtk_widget_grab_focus (*focus_widgets[i]); } /* Set focus-in-event callback */ focus_nums[i] = i; g_signal_connect_swapped ((gpointer)(*focus_widgets[i]), "focus-in-event", G_CALLBACK (focus_in_event_callback), (gpointer)(focus_nums + i)); } gtk_table_set_row_spacing ((GtkTable *) tableWidget, 14, 8); gtk_widget_show_all (dialog); gint result = GTK_RESPONSE_APPLY; /* Each time the user selects "apply" or "apply to all", update the * screen and re-enter the dialog loop */ while (result == GTK_RESPONSE_APPLY || result == GTK_RESPONSE_YES) { result = gtk_dialog_run (GTK_DIALOG(dialog)); if (result != GTK_RESPONSE_CLOSE) { /* Extract all the parameters */ if (screenUnit == (gerbv_unit_t) GERBV_MILS) { trans->translateX = gtk_spin_button_get_value ((GtkSpinButton *) spin1)/ 1000; trans->translateY = gtk_spin_button_get_value ((GtkSpinButton *) spin2)/ 1000; } else if (screen.unit == (gerbv_gui_unit_t) GERBV_MMS) { trans->translateX = gtk_spin_button_get_value ((GtkSpinButton *) spin1)/ 25.4; trans->translateY = gtk_spin_button_get_value ((GtkSpinButton *) spin2)/ 25.4; } else { trans->translateX = gtk_spin_button_get_value ((GtkSpinButton *) spin1); trans->translateY = gtk_spin_button_get_value ((GtkSpinButton *) spin2); } trans->scaleX = gtk_spin_button_get_value ((GtkSpinButton *)spin3); trans->scaleY = gtk_spin_button_get_value ((GtkSpinButton *)spin4); gint rotationIndex = gtk_combo_box_get_active ((GtkComboBox *)spin5); if (rotationIndex == 0) trans->rotation = 0; else if (rotationIndex == 1) trans->rotation = M_PI_2; else if (rotationIndex == 2) trans->rotation = M_PI; else if (rotationIndex == 3) trans->rotation = M_PI + M_PI_2; trans->mirrorAroundX = gtk_toggle_button_get_active ((GtkToggleButton *) check1); trans->mirrorAroundY = gtk_toggle_button_get_active ((GtkToggleButton *) check2); if (result == GTK_RESPONSE_APPLY) { /* Apply to selected layer */ *transforms[0] = *trans; } else if (result == GTK_RESPONSE_YES) { /* Apply to all visible layers (but not selected one) */ i = 1; while (transforms[i] != NULL) { *transforms[i++] = *trans; } } render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree (); } } #if 0 /* TODO: restore from backup array */ if (result == GTK_RESPONSE_CANCEL) { // revert back to the start values if the user cancelled *transform = startTransform; } #endif gtk_widget_destroy (dialog); return; } gerbv-2.7.0/src/project.c0000644000175000017500000007625213421555714015131 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * Copyright (c) 2008 Dan McMahill * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /*! \file project.c \brief Routines for loading and saving project files. \ingroup gerbv */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_STDLIB_H #include #endif #include #include #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #include #include #include "common.h" #include "gerbv.h" #include "gerb_file.h" #include "lrealpath.h" #include "project.h" #include "scheme-private.h" #include "main.h" #include "interface.h" #include "render.h" /* * update this if the project file format changes. * * The format *must* be major.minor[A-Z] * * Do *not* update this simply because we have a new gerbv * version. * * If you bump this version, then you must also bump the * version of gerbv. For example, supplse the file version * is 2.0A and gerbv has 2.4B in configure.ac. If you change * the file format version, you should change both the version * here *and* configure.ac to 2.4C. */ #define GERBV_PROJECT_FILE_VERSION "2.0A" /* default version for project files that do not specify a version. * This is assumed for all older project files. */ #define GERBV_DEFAULT_PROJECT_FILE_VERSION "1.9A" /* * List of versions that we can load with this version of * gerbv */ static const char * known_versions[] = { "1.9A", "2.0A", NULL }; /* DEBUG printing. #define DEBUG 1 in config.h to use this fcn. */ #define dprintf if(DEBUG) printf static project_list_t *project_list_top = NULL; static const int alpha_def_value = 177*257; /* When a project file is loaded, this variable is set to the * version of the project file. That can be used by various * functions which may need to do something different. */ static int current_file_version = 0; /* * Converts a string like "2.1A" "2.12C" or "3.2ZA" to the int * we use internally */ static int version_str_to_int( const char * str) { int r = 0; gchar *dup, *tmps, *ptr; if(str == NULL) { return -1; } else { dprintf("%s(\"%s\")\n", __FUNCTION__, str); /* * Extract out the major number (versions are strings like 2.1A) * and we want the "2" here. */ tmps = g_strdup(str); ptr = tmps; while(*ptr != '\0' && *ptr != '.') { ptr++; } if( *ptr == '\0' ) { /* this should not have happened */ return -1; } *ptr = '\0'; r = 10000 * atoi(tmps); dprintf("%s(): Converted \"%s\" to r = %d\n", __FUNCTION__, tmps, r); g_free(tmps); /* * Extract out the minor number (versions are strings like 2.1A) * and we want the "1" here. */ dup = g_strdup(str); tmps = dup; ptr = tmps; while(*ptr != '\0' && *ptr != '.') { ptr++; } if( *ptr == '\0' ) { /* this should not have happened */ return -1; } ptr++; tmps = ptr; while(*ptr != '\0' && isdigit( (int) *ptr)) { ptr++; } if( *ptr == '\0' ) { /* this should not have happened */ return -1; } *ptr = '\0'; r += 100 * atoi(tmps); dprintf("%s(): Converted \"%s\" to r = %d\n", __FUNCTION__, tmps, r); g_free(dup); /* * Extract out the revision letter(s) (versions are strings like 2.1A) * and we want the "A" here. */ dup = g_strdup(str); tmps = dup; ptr = tmps; while(*ptr != '\0' && (isdigit( (int) *ptr) || *ptr == '.') ) { ptr++; } if( *ptr == '\0' ) { /* this should not have happened */ return -1; } tmps = ptr; dprintf("%s(): Processing \"%s\"\n", __FUNCTION__, tmps); if( strlen(tmps) == 1) { r += *tmps - 'A' + 1; dprintf( "%s(): Converted \"%s\" to r = %d\n", __FUNCTION__, tmps, r); } else if( strlen(tmps) == 2 ) { if( *tmps == 'Z' ) { r += 26; tmps++; r += *tmps - 'A' + 1; } else { /* this should not have happened */ return -1; } } else { /* this should not have happened */ return -1; } g_free(dup); } return r; } /* * convert the internal int we use for version numbers * to the string that users can deal with */ static char * version_int_to_str( int ver ) { int major, minor, teeny; char l[3]; char *str; l[0] = '\0'; l[1] = '\0'; l[2] = '\0'; major = ver / 10000; minor = (ver - 10000*major) / 100; teeny = (ver - 10000*major - 100*minor); if(teeny >= 1 && teeny <= 26) { l[0] = 'A' + teeny - 1; } else if(teeny > 26 && teeny <= 52) { l[0] = 'Z'; l[1] = 'A' + teeny - 26 - 1; } str = g_strdup_printf("%d.%d%s", major, minor, l); return str; } static int check_vector_and_length(scheme *sc, pointer value, unsigned int length, const char *item) { if (!sc->vptr->is_vector(value)) { GERB_MESSAGE(_("'%s' parameter not a vector"), item); return 1; } if (sc->vptr->vector_length(value) != length) { GERB_MESSAGE(_("'%s' vector of incorrect length"), item); return 2; } return 0; } static void get_color(scheme *sc, pointer value, int *color) { int i; pointer elem; if (check_vector_and_length(sc, value, 3, "color")) return; for (i = 0; i < 3; i++) { elem = sc->vptr->vector_elem(value, i); if (sc->vptr->is_integer(elem) && sc->vptr->is_number(elem)) color[i] = sc->vptr->ivalue(elem); else { color[i] = -1; GERB_MESSAGE(_("Illegal color in projectfile")); } } return; } /* get_color */ static void get_alpha(scheme *sc, pointer value, int *alpha) { pointer elem; if (check_vector_and_length(sc, value, 1, "alpha")) return; elem = sc->vptr->vector_elem(value, 0); if (sc->vptr->is_integer(elem) && sc->vptr->is_number(elem)) { *alpha = sc->vptr->ivalue(elem); return; } GERB_MESSAGE(_("Illegal alpha value in projectfile")); } /* get_alpha */ static void get_double(scheme *sc, pointer value, char *item, double *x, double def) { pointer elem; if (check_vector_and_length(sc, value, 1, item)) return; elem = sc->vptr->vector_elem(value, 0); if (sc->vptr->is_real(elem) && sc->vptr->is_number(elem)) { *x = sc->vptr->rvalue(elem); } else { *x = def; GERB_MESSAGE(_("Illegal %s in projectfile"), item); } } /* get_double */ static void get_double_pair(scheme *sc, pointer value, char *item, double *x, double *y, double def) { pointer elem; if (check_vector_and_length(sc, value, 2, item)) return; elem = sc->vptr->vector_elem(value, 0); if (sc->vptr->is_real(elem) && sc->vptr->is_number(elem)) { *x = sc->vptr->rvalue(elem); } else { *x = def; GERB_MESSAGE(_("Illegal %s in projectfile"), item); } elem = sc->vptr->vector_elem(value, 1); if (sc->vptr->is_real(elem) && sc->vptr->is_number(elem)) { *y = sc->vptr->rvalue(elem); } else { *y = def; GERB_MESSAGE(_("Illegal %s in projectfile"), item); } } /* get_double_pair */ static void get_bool_pair(scheme *sc, pointer value, char *item, char *x, char *y, char def) { pointer elem; if (check_vector_and_length(sc, value, 2, item)) return; elem = sc->vptr->vector_elem(value, 0); if (elem == sc->F) { *x = 0; } else if (elem == sc->T) { *x = 1; } else { *x = def; GERB_MESSAGE(_("Illegal %s in projectfile"), item); } elem = sc->vptr->vector_elem(value, 1); if (elem == sc->F) { *y = 0; } else if (elem == sc->T) { *y = 1; } else { *y = def; GERB_MESSAGE(_("Illegal %s in projectfile"), item); } } /* get_bool_pair */ /* ---------------------------------------------------------------------- * Figure out the canonical name of the executed program * and fix up the defaults for various paths. This is largely * taken from InitPaths() in main.c from pcb. */ static char *bindir = NULL; static char *exec_prefix = NULL; static char *pkgdatadir = NULL; static gchar *scmdatadir = NULL; /* this really should not be needed but it could * be hooked in to appease malloc debuggers as * we don't otherwise free these variables. However, * they only get malloc-ed once ever so this * is a fixed leak of a small size. */ #if 0 void destroy_paths () { if (bindir != NULL) { free (bindir); bindir = NULL; } if (exec_prefix != NULL) { free (exec_prefix); exec_prefix = NULL; } if (pkgdatadir != NULL) { free (pkgdatadir); pkgdatadir = NULL; } if (scmdatadir != NULL) { g_free (scmdatadir); scmdatadir = NULL; } } #endif static void init_paths (char *argv0) { size_t l; int i; int haspath; char *t1, *t2; int found_bindir = 0; /* Only do this stuff once */ if (bindir != NULL ) return; /* see if argv0 has enough of a path to let lrealpath give the * real path. This should be the case if you invoke gerbv with * something like /usr/local/bin/gerbv or ./gerbv or ./foo/gerbv * but if you just use gerbv and it exists in your path, you'll * just get back gerbv again. */ haspath = 0; for (i = 0; i < strlen (argv0) ; i++) { if (argv0[i] == GERBV_DIR_SEPARATOR_C) haspath = 1; } dprintf("%s (%s): haspath = %d\n", __FUNCTION__, argv0, haspath); if (haspath) { bindir = strdup (lrealpath (argv0)); found_bindir = 1; } else { char *path, *p, *tmps; struct stat sb; int r; tmps = getenv ("PATH"); if (tmps != NULL) { path = strdup (tmps); /* search through the font path for a font file */ for (p = strtok (path, GERBV_PATH_DELIMETER); p && *p; p = strtok (NULL, GERBV_PATH_DELIMETER)) { dprintf ("Looking for %s in %s\n", argv0, p); if ( (tmps = malloc ( (strlen (argv0) + strlen (p) + 2) * sizeof (char))) == NULL ) { fprintf (stderr, "malloc failed in %s()\n", __FUNCTION__); exit (1); } sprintf (tmps, "%s%s%s", p, GERBV_DIR_SEPARATOR_S, argv0); r = stat (tmps, &sb); if (r == 0) { dprintf ("Found it: \"%s\"\n", tmps); bindir = lrealpath (tmps); found_bindir = 1; free (tmps); break; } free (tmps); } free (path); } } dprintf ("%s(): bindir = \"%s\"\n", __FUNCTION__, bindir); if (found_bindir) { /* strip off the executible name leaving only the path */ t2 = NULL; t1 = strchr (bindir, GERBV_DIR_SEPARATOR_C); while (t1 != NULL && *t1 != '\0') { t2 = t1; t1 = strchr (t2 + 1, GERBV_DIR_SEPARATOR_C); } if (t2 != NULL) *t2 = '\0'; dprintf ("After stripping off the executible name, we found\n"); dprintf ("bindir = \"%s\"\n", bindir); } else { /* we have failed to find out anything from argv[0] so fall back to the original * install prefix */ bindir = strdup (BINDIR); } /* now find the path to exec_prefix */ l = strlen (bindir) + 1 + strlen (BINDIR_TO_EXECPREFIX) + 1; if ( (exec_prefix = (char *) malloc (l * sizeof (char) )) == NULL ) { fprintf (stderr, "malloc failed in %s()\n", __FUNCTION__); exit (1); } sprintf (exec_prefix, "%s%s%s", bindir, GERBV_DIR_SEPARATOR_S, BINDIR_TO_EXECPREFIX); /* now find the path to PKGDATADIR */ l = strlen (bindir) + 1 + strlen (BINDIR_TO_PKGDATADIR) + 1; if ( (pkgdatadir = (char *) malloc (l * sizeof (char) )) == NULL ) { fprintf (stderr, "malloc failed in %s()\n", __FUNCTION__); exit (1); } sprintf (pkgdatadir, "%s%s%s", bindir, GERBV_DIR_SEPARATOR_S, BINDIR_TO_PKGDATADIR); scmdatadir = g_strdup_printf ("%s%s%s", pkgdatadir, GERBV_DIR_SEPARATOR_S, SCMSUBDIR); dprintf ("%s(): bindir = %s\n", __FUNCTION__, bindir); dprintf ("%s(): exec_prefix = %s\n", __FUNCTION__, exec_prefix); dprintf ("%s(): pkgdatadir = %s\n", __FUNCTION__, pkgdatadir); dprintf ("%s(): scmdatadir = %s\n", __FUNCTION__, scmdatadir); } static char * get_value_string(scheme *sc, pointer value) { if (!sc->vptr->is_string(value)) return NULL; return sc->vptr->string_value(value); } /* get_value_string */ /** Conversion of '\' into '/' and vice versa for compatibility under WIN32 platforms. */ static char * convert_path_separators(char* path, int conv_flag) { #if defined (__MINGW32__) char *hit_in_path; switch (conv_flag) { case MINGW_UNIX: while ((hit_in_path = strchr(path, '\\'))) { *hit_in_path = '/'; } break; case UNIX_MINGW: while ((hit_in_path = strchr(path, '/'))) { *hit_in_path = '\\'; } break; } #endif return path; }/* convert_path_separators */ static pointer define_layer(scheme *sc, pointer args) { pointer car_el, cdr_el, name, value; project_list_t *plist; const char *str; int layerno; dprintf("--> entering %s: %s\n", __FILE__, __func__); if (!sc->vptr->is_pair(args)) { GERB_MESSAGE(_("%s(): too few arguments"), __func__); return sc->F; } car_el = sc->vptr->pair_car(args); cdr_el = sc->vptr->pair_cdr(args); if (!sc->vptr->is_integer(car_el) || !sc->vptr->is_number(car_el)) { GERB_MESSAGE(_("%s(): layer number missing/incorrect"), __func__); return sc->F; } layerno = sc->vptr->ivalue(car_el); dprintf(" layerno = %d\n", layerno); car_el = sc->vptr->pair_car(cdr_el); cdr_el = sc->vptr->pair_cdr(cdr_el); plist = g_new0(project_list_t, 1); plist->next = project_list_top; project_list_top = plist; plist->layerno = layerno; plist->visible = 1; plist->n_attr = 0; plist->attr_list = NULL; plist->translate_x = plist->translate_y = 0.0; plist->scale_x = plist->scale_y = 1.0; plist->mirror_x = plist->mirror_y = 0; /* Set default alpha value, if alpha value is not in project file */ plist->alpha = alpha_def_value; while (sc->vptr->is_pair(car_el)) { name = sc->vptr->pair_car(car_el); value = sc->vptr->pair_cdr(car_el); if (!sc->vptr->is_symbol(name)) { GERB_MESSAGE(_("%s(): non-symbol found, ignoring"), __func__); goto end_name_value_parse; } str = sc->vptr->symname(name); if (strcmp(str, "color") == 0) { get_color(sc, value, plist->rgb); } else if (strcmp(str, "alpha") == 0) { get_alpha(sc, value, &plist->alpha); } else if (strcmp(str, "translate") == 0) { get_double_pair(sc, value, "translate", &plist->translate_x, &plist->translate_y, 0.0); } else if (strcmp(str, "rotation") == 0) { get_double(sc, value, "rotation", &plist->rotation, 0.0); } else if (strcmp(str, "scale") == 0) { get_double_pair(sc, value, "scale", &plist->scale_x, &plist->scale_y, 1.0); } else if (strcmp(str, "mirror") == 0) { get_bool_pair(sc, value, "mirror", &plist->mirror_x, &plist->mirror_y, 0); } else if (strcmp(str, "filename") == 0) { plist->filename = g_strdup(get_value_string(sc, value)); plist->filename = convert_path_separators(plist->filename, UNIX_MINGW); plist->is_pnp = 0; } else if (strcmp(str, "pick_and_place") == 0) { plist->filename = g_strdup(get_value_string(sc, value)); plist->filename = convert_path_separators(plist->filename, UNIX_MINGW); plist->is_pnp = 1; } else if (strcmp(str, "inverted") == 0) { if (value == sc->F) { plist->inverted = 0; } else if (value == sc->T) { plist->inverted = 1; } else { GERB_MESSAGE(_("Argument to inverted must be #t or #f")); } } else if (strcmp(str, "visible") == 0) { if (value == sc->F) { plist->visible = 0; } else if (value == sc->T) { plist->visible = 1; } else { GERB_MESSAGE(_("Argument to visible must be #t or #f")); } } else if (strcmp(str, "attribs") == 0) { pointer attr_car_el, attr_cdr_el; pointer attr_name, attr_type, attr_value; char *type; dprintf ("Parsing file attributes\n"); attr_car_el = sc->vptr->pair_car (value); attr_cdr_el = sc->vptr->pair_cdr (value); while (sc->vptr->is_pair(attr_car_el)) { int p = plist->n_attr; plist->n_attr++; plist->attr_list = (gerbv_HID_Attribute *) realloc (plist->attr_list, plist->n_attr * sizeof (gerbv_HID_Attribute)); if (plist->attr_list == NULL ) { fprintf (stderr, _("%s(): realloc failed\n"), __FUNCTION__); exit (1); } /* car */ attr_name = sc->vptr->pair_car(attr_car_el); /* cadr */ attr_type = sc->vptr->pair_cdr (attr_car_el); attr_type = sc->vptr->pair_car (attr_type); /* caddr */ attr_value = sc->vptr->pair_cdr (attr_car_el); attr_value = sc->vptr->pair_cdr (attr_value); attr_value = sc->vptr->pair_car (attr_value); dprintf (" attribute %s, type is %s, value is ", sc->vptr->symname(attr_name), sc->vptr->symname(attr_type)); plist->attr_list[p].name = strdup (sc->vptr->symname (attr_name)); type = sc->vptr->symname (attr_type); if (strcmp (type, "label") == 0) { dprintf ("%s", sc->vptr->string_value (attr_value)); plist->attr_list[p].type = HID_Label; plist->attr_list[p].default_val.str_value = strdup (sc->vptr->string_value (attr_value)); } else if (strcmp (type, "integer") == 0) { dprintf ("%ld", sc->vptr->ivalue (attr_value)); plist->attr_list[p].type = HID_Integer; plist->attr_list[p].default_val.int_value = sc->vptr->ivalue (attr_value); } else if (strcmp (type, "real") == 0) { dprintf ("%g", sc->vptr->rvalue (attr_value)); plist->attr_list[p].type = HID_Real; plist->attr_list[p].default_val.real_value = sc->vptr->rvalue (attr_value); } else if (strcmp (type, "string") == 0) { dprintf ("%s", sc->vptr->string_value (attr_value)); plist->attr_list[p].type = HID_String; plist->attr_list[p].default_val.str_value = strdup (sc->vptr->string_value (attr_value)); } else if (strcmp (type, "boolean") == 0) { dprintf ("%ld", sc->vptr->ivalue (attr_value)); plist->attr_list[p].type = HID_Boolean; plist->attr_list[p].default_val.int_value = sc->vptr->ivalue (attr_value); } else if (strcmp (type, "enum") == 0) { dprintf ("%ld", sc->vptr->ivalue (attr_value)); plist->attr_list[p].type = HID_Enum; plist->attr_list[p].default_val.int_value = sc->vptr->ivalue (attr_value); } else if (strcmp (type, "mixed") == 0) { plist->attr_list[p].type = HID_Mixed; plist->attr_list[p].default_val.str_value = NULL; fprintf (stderr, _("%s(): WARNING: HID_Mixed is not yet supported\n"), __FUNCTION__); } else if (strcmp (type, "path") == 0) { dprintf ("%s", sc->vptr->string_value (attr_value)); plist->attr_list[p].type = HID_Path; plist->attr_list[p].default_val.str_value = strdup (sc->vptr->string_value (attr_value)); } else { fprintf (stderr, _("%s(): Unknown attribute type: \"%s\"\n"), __FUNCTION__, type); } dprintf ("\n"); attr_car_el = sc->vptr->pair_car(attr_cdr_el); attr_cdr_el = sc->vptr->pair_cdr(attr_cdr_el); } } else { GERB_MESSAGE(_("Ignoring \"%s\" in project file"), str); } end_name_value_parse: car_el = sc->vptr->pair_car(cdr_el); cdr_el = sc->vptr->pair_cdr(cdr_el); } return sc->NIL; } /* define_layer */ static pointer set_render_type(scheme *sc, pointer args) { pointer car_el; int r; dprintf("--> entering project.c:%s()\n", __FUNCTION__); if (!sc->vptr->is_pair(args)){ GERB_MESSAGE(_("set-render-type!: Too few arguments")); return sc->F; } car_el = sc->vptr->pair_car(args); r = sc->vptr->ivalue (car_el); dprintf ("%s(): Setting render type to %d\n", __FUNCTION__, r); interface_set_render_type (r); return sc->NIL; } /* set_render_type */ static pointer gerbv_file_version(scheme *sc, pointer args) { pointer car_el; int r; char *vstr; char *tmps; dprintf("--> entering project.c:%s()\n", __FUNCTION__); if (!sc->vptr->is_pair(args)){ GERB_MESSAGE(_("gerbv-file-version!: Too few arguments")); return sc->F; } car_el = sc->vptr->pair_car(args); vstr = get_value_string(sc, car_el); /* find our internal integer code */ r = version_str_to_int( vstr ); if( r == -1) { r = version_str_to_int( GERBV_DEFAULT_PROJECT_FILE_VERSION ); GERB_MESSAGE(_("The project file you are attempting to load has specified that it\n" "uses project file version \"%s\" but this string is not\n" "a valid version. Gerbv will attempt to load the file using\n" "version \"%s\". You may experience unexpected results."), vstr, version_int_to_str( r )); vstr = GERBV_DEFAULT_PROJECT_FILE_VERSION; } if( DEBUG ) { tmps = version_int_to_str( r ); printf (_("%s(): Read a project file version of %s (%d)\n"), __FUNCTION__, vstr, r); printf (_(" Translated back to \"%s\"\n"), tmps); g_free (tmps); } dprintf ("%s(): Read a project file version of %s (%d)\n", __FUNCTION__, vstr, r); if ( r > version_str_to_int( GERBV_PROJECT_FILE_VERSION )) { /* The project file we're trying to load is too new for this version of gerbv */ GERB_MESSAGE(_("The project file you are attempting to load is version \"%s\"\n" "but this copy of gerbv is only capable of loading project files\n" "using version \"%s\" or older. You may experience unexpected results."), vstr, GERBV_PROJECT_FILE_VERSION); } else { int i = 0; int vok = 0; while( known_versions[i] != NULL ) { if( strcmp( known_versions[i], vstr) == 0 ) { vok = 1; } i++; } if( ! vok ) { /* The project file we're trying to load is not too new * but it is unknown to us */ GERB_MESSAGE(_("The project file you are attempting to load is version \"%s\"\n" "which is an unknown version.\n" "You may experience unexpected results."), vstr); } } /* * store the version of the file we're currently loading. This variable is used * by the different functions called by the project file to do anything which is * version specific. */ current_file_version = r; return sc->NIL; } /* gerbv_file_version */ /** Checks whether the supplied file look like a gerbv project by * reading the first line and checking if it contains gerbv-file-version * * Returns 0 on success -1 on open error */ int project_is_gerbv_project(const char *filename, gboolean *ret) { FILE *fd; *ret = FALSE; char *buf; const gsize buf_size = 200; fd = fopen(filename, "rb"); if (fd == NULL) { GERB_MESSAGE(_("Failed to open \"%s\" for reading: %s"), filename, strerror(errno)); return -1; } buf = (char *) g_malloc(buf_size); if (buf == NULL) GERB_FATAL_ERROR("malloc buf failed while checking for " "Gerbv project in %s()", __FUNCTION__); if (fgets(buf, buf_size, fd) != NULL) *ret = (g_strrstr(buf, "gerbv-file-version") != NULL); fclose(fd); g_free(buf); return 0; } /** Reads the content of a project file. * Global:\n * Background color,\n * global path,\n * corresponding pick and place file: labelled 'picknplace'\n * Per layer:\n * layer color,\n * layer filename */ project_list_t * read_project_file(char const* filename) { struct stat stat_info; scheme *sc; FILE *fd; /* always let the environment variable win so one can force * a particular init.scm. Then we use the default installed * directory based on where the binary has been installed to * (including the possibility of relocation). Then use the * default compiled in directory. After that try the directory * where the binary lives and finally the current directory. */ char *initdirs[] = {"$GERBV_SCHEMEINIT","", BACKEND_DIR, mainProject->execpath, ".", NULL}; char *initfile; /* * Figure out some directories so we can find init.scm */ init_paths(mainProject->execname); initdirs[1] = scmdatadir; #if defined(DEBUG) if (DEBUG > 0) { int i=0; while(initdirs[i] != NULL) { printf("%s(): initdirs[%d] = \"%s\"\n", __FUNCTION__, i, initdirs[i]); i++; } } #endif /* * set the current version of the project file to 1 day before we started adding * versioning to the files. While the file is being loaded, this will * be set to the correct version on newer files and ignored on older files */ current_file_version = version_str_to_int(GERBV_DEFAULT_PROJECT_FILE_VERSION); if (stat(filename, &stat_info) || !S_ISREG(stat_info.st_mode)) { GERB_MESSAGE(_("Failed to read %s"), filename); return NULL; } sc = scheme_init_new(); scheme_set_output_port_file(sc, stdout); if(!sc){ GERB_FATAL_ERROR(_("Couldn't init scheme")); exit(1); } errno = 0; initfile = gerb_find_file("init.scm", initdirs); if (initfile == NULL) { scheme_deinit(sc); GERB_MESSAGE(_("Problem loading init.scm (%s)"), strerror(errno)); return NULL; } dprintf("%s(): initfile = \"%s\"\n", __FUNCTION__, initfile); if ((fd = fopen(initfile, "r")) == NULL) { scheme_deinit(sc); GERB_MESSAGE(_("Couldn't open %s (%s)"), initfile, strerror(errno)); return NULL; } /* Force gerbv to input decimals as dots */ setlocale(LC_NUMERIC, "C"); sc->vptr->load_file(sc, fd); fclose(fd); sc->vptr->scheme_define(sc, sc->global_env, sc->vptr->mk_symbol(sc, "define-layer!"), sc->vptr->mk_foreign_func(sc, define_layer)); sc->vptr->scheme_define(sc, sc->global_env, sc->vptr->mk_symbol(sc, "set-render-type!"), sc->vptr->mk_foreign_func(sc, set_render_type)); sc->vptr->scheme_define(sc, sc->global_env, sc->vptr->mk_symbol(sc, "gerbv-file-version!"), sc->vptr->mk_foreign_func(sc, gerbv_file_version)); if ((fd = fopen(filename, "r")) == NULL) { setlocale(LC_NUMERIC, ""); /* Default locale */ scheme_deinit(sc); GERB_MESSAGE(_("Couldn't open project file %s (%s)"), filename, strerror(errno)); return NULL; } project_list_top = NULL; scheme_load_file(sc, fd); fclose(fd); setlocale(LC_NUMERIC, ""); /* Default locale */ scheme_deinit(sc); return project_list_top; } /* read_project */ void project_destroy_project_list (project_list_t *projectList){ project_list_t *tempP,*tempP2; for (tempP = projectList; tempP != NULL; ){ tempP2 = tempP->next; g_free (tempP->filename); gerbv_attribute_destroy_HID_attribute (tempP->attr_list, tempP->n_attr); tempP->attr_list = NULL; tempP = tempP2; } } /* * Writes a description of a project to a file * that can be parsed by read_project above */ int write_project_file(gerbv_project_t *gerbvProject, char const* filename, project_list_t *project) { FILE *fd; project_list_t *p = project; int n_attr = 0; gerbv_HID_Attribute *attr_list = NULL; const float min_val = GERBV_PRECISION_LINEAR_INCH; int i; if ((fd = fopen(filename, "w")) == NULL) { GERB_MESSAGE(_("Couldn't save project %s"), filename); return -1; } /* Force gerbv to input decimals as dots */ setlocale(LC_NUMERIC, "C"); fprintf(fd, "(gerbv-file-version! \"%s\")\n", GERBV_PROJECT_FILE_VERSION); while (p) { fprintf(fd, "(define-layer! %d ", p->layerno); fprintf(fd, "(cons 'filename \"%s\")\n", convert_path_separators(p->filename, MINGW_UNIX)); if (p->inverted) fprintf(fd, "\t(cons 'inverted #t)\n"); if (p->layerno >= 0) { fprintf(fd, "\t(cons 'visible #%c)\n", p->visible? 't': 'f'); } fprintf(fd, "\t(cons 'color #(%d %d %d))\n", p->rgb[0], p->rgb[1], p->rgb[2]); if (p->layerno >= 0) { if (p->alpha != alpha_def_value) fprintf(fd, "\t(cons 'alpha #(%d))\n", p->alpha); /* Check if there is transformation. Write if so. */ if ((fabs(p->translate_x) > min_val) || (fabs(p->translate_y) > min_val)) { fprintf(fd, "\t(cons 'translate #(%f %f))\n", p->translate_x, p->translate_y); } if (fabs(p->rotation) > GERBV_PRECISION_ANGLE_RAD) { fprintf(fd, "\t(cons 'rotation #(%f))\n", p->rotation); } if ((fabs(p->scale_x - 1.0) > min_val) || (fabs(p->scale_y - 1.0) > min_val)) { fprintf(fd, "\t(cons 'scale #(%f %f))\n", p->scale_x, p->scale_y); } if (p->mirror_x || p->mirror_y) { fprintf(fd, "\t(cons 'mirror #(#%c #%c))\n", p->mirror_x? 't': 'f', p->mirror_y? 't': 'f'); } } /* now write out the attribute list which specifies the * file format */ if (p->layerno < 0) { attr_list = NULL; n_attr = 0; } else { attr_list = gerbvProject->file[p->layerno]->image->info->attr_list; n_attr = gerbvProject->file[p->layerno]->image->info->n_attr; } if (n_attr > 0) { fprintf(fd, "\t(cons 'attribs (list\n"); } for (i = 0; i < n_attr ; i++) { switch (attr_list[i].type) { case HID_Label: fprintf(fd, "\t\t(list '%s 'Label \"%s\")\n", attr_list[i].name, attr_list[i].default_val.str_value); break; case HID_Integer: fprintf(fd, "\t\t(list '%s 'Integer %d)\n", attr_list[i].name, attr_list[i].default_val.int_value); break; case HID_Real: fprintf(fd, "\t\t(list '%s 'Real %g)\n", attr_list[i].name, attr_list[i].default_val.real_value); break; case HID_String: fprintf(fd, "\t\t(list '%s 'String \"%s\")\n", attr_list[i].name, attr_list[i].default_val.str_value); break; case HID_Boolean: fprintf(fd, "\t\t(list '%s 'Boolean %d)\n", attr_list[i].name, attr_list[i].default_val.int_value); break; case HID_Enum: fprintf(fd, "\t\t(list '%s 'Enum %d)\n", attr_list[i].name, attr_list[i].default_val.int_value); break; case HID_Mixed: dprintf ("HID_Mixed\n"); fprintf (stderr, _("%s(): WARNING: HID_Mixed is not yet supported.\n"), __FUNCTION__); break; case HID_Path: fprintf(fd, "\t\t(list '%s 'Path \"%s\")\n", attr_list[i].name, attr_list[i].default_val.str_value); break; default: fprintf (stderr, _("%s: unknown type of HID attribute (%d)\n"), __FUNCTION__, attr_list[i].type); break; } } if (n_attr > 0) { fprintf (fd, "\t))\n"); } fprintf(fd, ")\n"); p = p->next; } fprintf (fd, "(set-render-type! %d)\n", screenRenderInfo.renderType); setlocale(LC_NUMERIC, ""); /* Default locale */ fclose(fd); return 0; } /* write_project */ gerbv-2.7.0/src/gerber.c0000644000175000017500000024161313421555714014724 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This is a part of gerbv * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerber.c \brief RS274X parsing functions \ingroup libgerbv */ #include "gerbv.h" #include #include #include /* pow() */ #include #include #include "common.h" #include "gerb_image.h" #include "gerber.h" #include "gerb_stats.h" #include "amacro.h" #undef AMACRO_DEBUG #define dprintf if(DEBUG) printf #define A2I(a,b) (((a & 0xff) << 8) + (b & 0xff)) #define MAXL 200 /* Local function prototypes */ static void parse_G_code(gerb_file_t *fd, gerb_state_t *state, gerbv_image_t *image, long int *line_num_p); static void parse_D_code(gerb_file_t *fd, gerb_state_t *state, gerbv_image_t *image, long int *line_num_p); static int parse_M_code(gerb_file_t *fd, gerbv_image_t *image, long int *line_num_p); static void parse_rs274x(gint levelOfRecursion, gerb_file_t *fd, gerbv_image_t *image, gerb_state_t *state, gerbv_net_t *curr_net, gerbv_stats_t *stats, gchar *directoryPath, long int *line_num_p); static int parse_aperture_definition(gerb_file_t *fd, gerbv_aperture_t *aperture, gerbv_image_t *image, gdouble scale, long int *line_num_p); static void calc_cirseg_sq(struct gerbv_net *net, int cw, double delta_cp_x, double delta_cp_y); static void calc_cirseg_mq(struct gerbv_net *net, int cw, double delta_cp_x, double delta_cp_y); static void calc_cirseg_bbox(const gerbv_cirseg_t *cirseg, double apert_size_x, double apert_size_y, gerbv_render_size_t *bbox); static void gerber_update_any_running_knockout_measurements( gerbv_image_t *image); static void gerber_calculate_final_justify_effects (gerbv_image_t *image); static gboolean add_trailing_zeros_if_omitted(int *coord, int omitted_num, gerbv_format_t *format); gboolean knockoutMeasure = FALSE; gdouble knockoutLimitXmin, knockoutLimitYmin, knockoutLimitXmax, knockoutLimitYmax; gerbv_layer_t *knockoutLayer = NULL; cairo_matrix_t currentMatrix; /* --------------------------------------------------------- */ gerbv_net_t * gerber_create_new_net (gerbv_net_t *currentNet, gerbv_layer_t *layer, gerbv_netstate_t *state){ gerbv_net_t *newNet = g_new0 (gerbv_net_t, 1); currentNet->next = newNet; if (layer) newNet->layer = layer; else newNet->layer = currentNet->layer; if (state) newNet->state = state; else newNet->state = currentNet->state; return newNet; } /* --------------------------------------------------------- */ gboolean gerber_create_new_aperture (gerbv_image_t *image, int *indexNumber, gerbv_aperture_type_t apertureType, gdouble parameter1, gdouble parameter2){ int i; /* search for an available aperture spot */ for (i = 0; i <= APERTURE_MAX; i++) { if (image->aperture[i] == NULL) { image->aperture[i] = g_new0 (gerbv_aperture_t, 1); image->aperture[i]->type = apertureType; image->aperture[i]->parameter[0] = parameter1; image->aperture[i]->parameter[1] = parameter2; *indexNumber = i; return TRUE; } } return FALSE; } /* --------------------------------------------------------- */ /*! This function reads the Gerber file char by char, looking * for various Gerber codes (e.g. G, D, etc). Once it reads * a code, it then dispatches control to one or another * bits of code which parse the individual code. * It also updates the state struct, which holds info about * the current state of the hypothetical photoplotter * (i.e. updates whether the aperture is on or off, updates * any other parameters, like units, offsets, apertures, etc.) */ gboolean gerber_parse_file_segment (gint levelOfRecursion, gerbv_image_t *image, gerb_state_t *state, gerbv_net_t *curr_net, gerbv_stats_t *stats, gerb_file_t *fd, gchar *directoryPath) { int read, coord, len, polygonPoints=0; double x_scale = 0.0, y_scale = 0.0; double delta_cp_x = 0.0, delta_cp_y = 0.0; double aperture_sizeX, aperture_sizeY; double scale; gboolean foundEOF = FALSE; gerbv_render_size_t boundingBoxNew = {HUGE_VAL,-HUGE_VAL,HUGE_VAL,-HUGE_VAL}, boundingBox = boundingBoxNew; gerbv_error_list_t *error_list = stats->error_list; long int line_num = 1; while ((read = gerb_fgetc(fd)) != EOF) { /* figure out the scale, since we need to normalize all dimensions to inches */ if (state->state->unit == GERBV_UNIT_MM) scale = 25.4; else scale = 1.0; switch ((char)(read & 0xff)) { case 'G': dprintf("... Found G code at line %ld\n", line_num); parse_G_code(fd, state, image, &line_num); break; case 'D': dprintf("... Found D code at line %ld\n", line_num); parse_D_code(fd, state, image, &line_num); break; case 'M': dprintf("... Found M code at line %ld\n", line_num); switch(parse_M_code(fd, image, &line_num)) { case 1 : case 2 : case 3 : foundEOF = TRUE; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown M code found at line %ld in file \"%s\""), line_num, fd->filename); } /* switch(parse_M_code) */ break; case 'X': stats->X++; coord = gerb_fgetint(fd, &len); if (image->format) add_trailing_zeros_if_omitted(&coord, image->format->x_int + image->format->x_dec - len, image->format); dprintf("... Found X code %d at line %ld\n", coord, line_num); if (image->format && image->format->coordinate==GERBV_COORDINATE_INCREMENTAL) state->curr_x += coord; else state->curr_x = coord; state->changed = 1; break; case 'Y': stats->Y++; coord = gerb_fgetint(fd, &len); if (image->format) add_trailing_zeros_if_omitted(&coord, image->format->y_int + image->format->y_dec - len, image->format); dprintf("... Found Y code %d at line %ld\n", coord, line_num); if (image->format && image->format->coordinate==GERBV_COORDINATE_INCREMENTAL) state->curr_y += coord; else state->curr_y = coord; state->changed = 1; break; case 'I': stats->I++; coord = gerb_fgetint(fd, &len); if (image->format) add_trailing_zeros_if_omitted(&coord, image->format->x_int + image->format->x_dec - len, image->format); dprintf("... Found I code %d at line %ld\n", coord, line_num); state->delta_cp_x = coord; state->changed = 1; break; case 'J': stats->J++; coord = gerb_fgetint(fd, &len); if (image->format) add_trailing_zeros_if_omitted(&coord, image->format->y_int + image->format->y_dec - len, image->format); dprintf("... Found J code %d at line %ld\n", coord, line_num); state->delta_cp_y = coord; state->changed = 1; break; case '%': dprintf("... Found %% code at line %ld\n", line_num); while (1) { parse_rs274x(levelOfRecursion, fd, image, state, curr_net, stats, directoryPath, &line_num); /* advance past any whitespace here */ int c; while (1) { c = gerb_fgetc(fd); switch (c) { case '\0': case '\t': case ' ': continue; case '\n': line_num++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\r' && read != EOF) gerb_ungetc(fd); continue; case '\r': line_num++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\n' && read != EOF) gerb_ungetc(fd); continue; } break; /* break while(1) */ }; if(c == EOF || c == '%') break; /* Loop again to catch multiple blocks on the same line * (separated by * char) */ gerb_ungetc(fd); } break; case '*': dprintf("... Found * code at line %ld\n", line_num); stats->star++; if (state->changed == 0) break; state->changed = 0; /* don't even bother saving the net if the aperture state is GERBV_APERTURE_STATE_OFF and we aren't starting a polygon fill (where we need it to get to the start point) */ if ((state->aperture_state == GERBV_APERTURE_STATE_OFF)&&(!state->in_parea_fill)&& (state->interpolation != GERBV_INTERPOLATION_PAREA_START)) { /* save the coordinate so the next net can use it for a start point */ state->prev_x = state->curr_x; state->prev_y = state->curr_y; break; } curr_net = gerber_create_new_net (curr_net, state->layer, state->state); /* * Scale to given coordinate format * XXX only "omit leading zeros". */ if (image && image->format ){ x_scale = pow(10.0, (double)image->format->x_dec); y_scale = pow(10.0, (double)image->format->y_dec); } x_scale *= scale; y_scale *= scale; curr_net->start_x = (double)state->prev_x / x_scale; curr_net->start_y = (double)state->prev_y / y_scale; curr_net->stop_x = (double)state->curr_x / x_scale; curr_net->stop_y = (double)state->curr_y / y_scale; delta_cp_x = (double)state->delta_cp_x / x_scale; delta_cp_y = (double)state->delta_cp_y / y_scale; switch (state->interpolation) { case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : { int cw = (state->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR); curr_net->cirseg = g_new0 (gerbv_cirseg_t, 1); if (state->mq_on) { calc_cirseg_mq(curr_net, cw, delta_cp_x, delta_cp_y); } else { calc_cirseg_sq(curr_net, cw, delta_cp_x, delta_cp_y); /* * In single quadrant circular interpolation Ix and Jy * incremental distance must be unsigned. */ if (delta_cp_x < 0 || delta_cp_y < 0) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Signed incremental distance IxJy " "in single quadrant %s circular " "interpolation %s at line %ld " "in file \"%s\""), cw? _("CW"): _("CCW"), cw? "G02": "G03", line_num, fd->filename); } } break; } case GERBV_INTERPOLATION_PAREA_START : /* * To be able to get back and fill in number of polygon corners */ state->parea_start_node = curr_net; state->in_parea_fill = 1; polygonPoints = 0; boundingBox = boundingBoxNew; break; case GERBV_INTERPOLATION_PAREA_END : /* save the calculated bounding box to the master node */ if (state->parea_start_node != NULL) { state->parea_start_node->boundingBox = boundingBox; } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("End of polygon without start " "at line %ld in file \"%s\""), line_num, fd->filename); } /* close out the polygon */ state->parea_start_node = NULL; state->in_parea_fill = 0; polygonPoints = 0; break; default : break; } /* switch(state->interpolation) */ /* * Count number of points in Polygon Area */ if (state->in_parea_fill && state->parea_start_node) { /* * "...all lines drawn with D01 are considered edges of the * polygon. D02 closes and fills the polygon." * p.49 rs274xrevd_e.pdf * D02 -> state->aperture_state == GERBV_APERTURE_STATE_OFF */ /* UPDATE: only end the polygon during a D02 call if we've already drawn a polygon edge (with D01) */ if (state->aperture_state == GERBV_APERTURE_STATE_OFF && state->interpolation != GERBV_INTERPOLATION_PAREA_START && polygonPoints > 0) { curr_net->interpolation = GERBV_INTERPOLATION_PAREA_END; curr_net = gerber_create_new_net (curr_net, state->layer, state->state); curr_net->interpolation = GERBV_INTERPOLATION_PAREA_START; state->parea_start_node->boundingBox = boundingBox; state->parea_start_node = curr_net; polygonPoints = 0; curr_net = gerber_create_new_net (curr_net, state->layer, state->state); curr_net->start_x = (double)state->prev_x / x_scale; curr_net->start_y = (double)state->prev_y / y_scale; curr_net->stop_x = (double)state->curr_x / x_scale; curr_net->stop_y = (double)state->curr_y / y_scale; boundingBox = boundingBoxNew; } else if (state->interpolation != GERBV_INTERPOLATION_PAREA_START) polygonPoints++; } /* if (state->in_parea_fill && state->parea_start_node) */ curr_net->interpolation = state->interpolation; /* * Override circular interpolation if no center was given. * This should be a safe hack, since a good file should always * include I or J. And even if the radius is zero, the endpoint * should be the same as the start point, creating no line */ if (((state->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR) || (state->interpolation == GERBV_INTERPOLATION_CCW_CIRCULAR)) && ((state->delta_cp_x == 0.0) && (state->delta_cp_y == 0.0))) curr_net->interpolation = GERBV_INTERPOLATION_LINEARx1; /* * If we detected the end of Polygon Area Fill we go back to * the interpolation we had before that. * Also if we detected any of the quadrant flags, since some * gerbers don't reset the interpolation (EagleCad again). */ if ((state->interpolation == GERBV_INTERPOLATION_PAREA_START || state->interpolation == GERBV_INTERPOLATION_PAREA_END) && state->prev_interpolation != GERBV_INTERPOLATION_PAREA_END) { state->interpolation = state->prev_interpolation; } /* * Save layer polarity and unit */ curr_net->layer = state->layer; state->delta_cp_x = 0.0; state->delta_cp_y = 0.0; curr_net->aperture = state->curr_aperture; curr_net->aperture_state = state->aperture_state; /* * For next round we save the current position as * the previous position */ state->prev_x = state->curr_x; state->prev_y = state->curr_y; /* * If we have an aperture defined at the moment we find * min and max of image with compensation for mm. */ if ((curr_net->aperture == 0) && !state->in_parea_fill) break; /* only update the min/max values and aperture stats if we are drawing */ if ((curr_net->aperture_state != GERBV_APERTURE_STATE_OFF)&& (curr_net->interpolation != GERBV_INTERPOLATION_PAREA_START)){ double repeat_off_X = 0.0, repeat_off_Y = 0.0; /* Update stats with current aperture number if not in polygon */ if (!state->in_parea_fill) { dprintf(" In %s(), adding 1 to D_list ...\n", __func__); int retcode = gerbv_stats_increment_D_list_count( stats->D_code_list, curr_net->aperture, 1, error_list); if (retcode == -1) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found undefined D code D%02d " "at line %ld in file \"%s\""), curr_net->aperture, line_num, fd->filename); stats->D_unknown++; } } /* * If step_and_repeat (%SR%) is used, check min_x,max_y etc for * the ends of the step_and_repeat lattice. This goes wrong in * the case of negative dist_X or dist_Y, in which case we * should compare against the startpoints of the lines, not * the stoppoints, but that seems an uncommon case (and the * error isn't very big any way). */ repeat_off_X = (state->layer->stepAndRepeat.X - 1) * state->layer->stepAndRepeat.dist_X; repeat_off_Y = (state->layer->stepAndRepeat.Y - 1) * state->layer->stepAndRepeat.dist_Y; cairo_matrix_init (¤tMatrix, 1, 0, 0, 1, 0, 0); /* offset image */ cairo_matrix_translate (¤tMatrix, image->info->offsetA, image->info->offsetB); /* do image rotation */ cairo_matrix_rotate (¤tMatrix, image->info->imageRotation); /* it's a new layer, so recalculate the new transformation * matrix for it */ /* do any rotations */ cairo_matrix_rotate (¤tMatrix, state->layer->rotation); /* calculate current layer and state transformation matrices */ /* apply scale factor */ cairo_matrix_scale (¤tMatrix, state->state->scaleA, state->state->scaleB); /* apply offset */ cairo_matrix_translate (¤tMatrix, state->state->offsetA, state->state->offsetB); /* apply mirror */ switch (state->state->mirrorState) { case GERBV_MIRROR_STATE_FLIPA: cairo_matrix_scale (¤tMatrix, -1, 1); break; case GERBV_MIRROR_STATE_FLIPB: cairo_matrix_scale (¤tMatrix, 1, -1); break; case GERBV_MIRROR_STATE_FLIPAB: cairo_matrix_scale (¤tMatrix, -1, -1); break; default: break; } /* finally, apply axis select */ if (state->state->axisSelect == GERBV_AXIS_SELECT_SWAPAB) { /* we do this by rotating 270 (counterclockwise, then * mirroring the Y axis */ cairo_matrix_rotate (¤tMatrix, M_PI + M_PI_2); cairo_matrix_scale (¤tMatrix, 1, -1); } /* if it's a macro, step through all the primitive components and calculate the true bounding box */ if ((image->aperture[curr_net->aperture] != NULL) && (image->aperture[curr_net->aperture]->type == GERBV_APTYPE_MACRO)) { gerbv_simplified_amacro_t *ls = image->aperture[curr_net->aperture]->simplified; while (ls != NULL) { gdouble offsetx = 0, offsety = 0, widthx = 0, widthy = 0; gboolean calculatedAlready = FALSE; if (ls->type == GERBV_APTYPE_MACRO_CIRCLE) { offsetx=ls->parameter[CIRCLE_CENTER_X]; offsety=ls->parameter[CIRCLE_CENTER_Y]; widthx=widthy=ls->parameter[CIRCLE_DIAMETER]; } else if (ls->type == GERBV_APTYPE_MACRO_OUTLINE) { int pointCounter,numberOfPoints; numberOfPoints = ls->parameter[OUTLINE_NUMBER_OF_POINTS] + 1; for (pointCounter = 0; pointCounter < numberOfPoints; pointCounter++) { gerber_update_min_and_max (&boundingBox, curr_net->stop_x + ls->parameter[OUTLINE_X_IDX_OF_POINT(pointCounter)], curr_net->stop_y + ls->parameter[OUTLINE_Y_IDX_OF_POINT(pointCounter)], 0,0,0,0); } calculatedAlready = TRUE; } else if (ls->type == GERBV_APTYPE_MACRO_POLYGON) { offsetx = ls->parameter[POLYGON_CENTER_X]; offsety = ls->parameter[POLYGON_CENTER_Y]; widthx = widthy = ls->parameter[POLYGON_DIAMETER]; } else if (ls->type == GERBV_APTYPE_MACRO_MOIRE) { offsetx = ls->parameter[MOIRE_CENTER_X]; offsety = ls->parameter[MOIRE_CENTER_Y]; widthx = widthy = ls->parameter[MOIRE_OUTSIDE_DIAMETER]; } else if (ls->type == GERBV_APTYPE_MACRO_THERMAL) { offsetx = ls->parameter[THERMAL_CENTER_X]; offsety = ls->parameter[THERMAL_CENTER_Y]; widthx = widthy = ls->parameter[THERMAL_OUTSIDE_DIAMETER]; } else if (ls->type == GERBV_APTYPE_MACRO_LINE20) { widthx = widthy = ls->parameter[LINE20_LINE_WIDTH]; gerber_update_min_and_max (&boundingBox, curr_net->stop_x + ls->parameter[LINE20_START_X], curr_net->stop_y + ls->parameter[LINE20_START_Y], widthx/2,widthx/2,widthy/2,widthy/2); gerber_update_min_and_max (&boundingBox, curr_net->stop_x + ls->parameter[LINE20_END_X], curr_net->stop_y + ls->parameter[LINE20_END_Y], widthx/2,widthx/2,widthy/2,widthy/2); calculatedAlready = TRUE; } else if (ls->type == GERBV_APTYPE_MACRO_LINE21) { gdouble largestDimension = hypot(ls->parameter[LINE21_WIDTH], ls->parameter[LINE21_HEIGHT]); offsetx = ls->parameter[LINE21_CENTER_X]; offsety = ls->parameter[LINE21_CENTER_Y]; widthx = widthy = largestDimension; } else if (ls->type == GERBV_APTYPE_MACRO_LINE22) { gdouble largestDimension = hypot(ls->parameter[LINE22_WIDTH], ls->parameter[LINE22_HEIGHT]); offsetx = ls->parameter[LINE22_LOWER_LEFT_X] + ls->parameter[LINE22_WIDTH]/2; offsety = ls->parameter[LINE22_LOWER_LEFT_Y] + ls->parameter[LINE22_HEIGHT]/2; widthx = widthy=largestDimension; } if (!calculatedAlready) { gerber_update_min_and_max (&boundingBox, curr_net->stop_x + offsetx, curr_net->stop_y + offsety, widthx/2,widthx/2,widthy/2,widthy/2); } ls = ls->next; } } else { if (image->aperture[curr_net->aperture] != NULL) { aperture_sizeX = image->aperture[curr_net->aperture]->parameter[0]; if ((image->aperture[curr_net->aperture]->type == GERBV_APTYPE_RECTANGLE) || (image->aperture[curr_net->aperture]->type == GERBV_APTYPE_OVAL)) { aperture_sizeY = image->aperture[curr_net->aperture]->parameter[1]; } else aperture_sizeY = aperture_sizeX; } else { /* this is usually for polygon fills, where the aperture width is "zero" */ aperture_sizeX = aperture_sizeY = 0; } /* if it's an arc path, use a special calc */ if ((curr_net->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR) || (curr_net->interpolation == GERBV_INTERPOLATION_CCW_CIRCULAR)) { calc_cirseg_bbox(curr_net->cirseg, aperture_sizeX, aperture_sizeY, &boundingBox); } else { /* check both the start and stop of the aperture points against a running min/max counter */ /* Note: only check start coordinate if this isn't a flash, since the start point may be bogus if it is a flash */ if (curr_net->aperture_state != GERBV_APERTURE_STATE_FLASH) { gerber_update_min_and_max (&boundingBox, curr_net->start_x, curr_net->start_y, aperture_sizeX/2,aperture_sizeX/2, aperture_sizeY/2,aperture_sizeY/2); } gerber_update_min_and_max (&boundingBox, curr_net->stop_x, curr_net->stop_y, aperture_sizeX/2,aperture_sizeX/2, aperture_sizeY/2,aperture_sizeY/2); } } /* update the info bounding box with this latest bounding box */ /* don't change the bounding box if the polarity is clear */ if (state->layer->polarity != GERBV_POLARITY_CLEAR){ gerber_update_image_min_max(&boundingBox, repeat_off_X, repeat_off_Y, image); } /* optionally update the knockout measurement box */ if (knockoutMeasure) { if (boundingBox.left < knockoutLimitXmin) knockoutLimitXmin = boundingBox.left; if (boundingBox.right+repeat_off_X > knockoutLimitXmax) knockoutLimitXmax = boundingBox.right+repeat_off_X; if (boundingBox.bottom < knockoutLimitYmin) knockoutLimitYmin = boundingBox.bottom; if (boundingBox.top+repeat_off_Y > knockoutLimitYmax) knockoutLimitYmax = boundingBox.top+repeat_off_Y; } /* if we're not in a polygon fill, then update the object bounding box */ if (!state->in_parea_fill) { curr_net->boundingBox = boundingBox; boundingBox = boundingBoxNew; } } break; case '\0': case '\t': case ' ': break; case '\n': line_num++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\r' && read != EOF) gerb_ungetc(fd); break; case '\r': line_num++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\n' && read != EOF) gerb_ungetc(fd); break; default: stats->unknown++; gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found unknown character '%s' (0x%x) " "at line %ld in file \"%s\""), gerbv_escape_char(read), read, line_num, fd->filename); } /* switch((char) (read & 0xff)) */ } return foundEOF; } /* ------------------------------------------------------------------ */ /*! This is a wrapper which gets called from top level. It * does some initialization and pre-processing, and * then calls gerber_parse_file_segment * which processes the actual file. Then it does final * modifications to the image created. */ gerbv_image_t * parse_gerb(gerb_file_t *fd, gchar *directoryPath) { gerb_state_t *state = NULL; gerbv_image_t *image = NULL; gerbv_net_t *curr_net = NULL; gerbv_stats_t *stats; gboolean foundEOF = FALSE; /* added by t.motylewski@bfad.de * many locales redefine "." as "," and so on, * so sscanf and strtod has problems when * reading files using %f format */ setlocale(LC_NUMERIC, "C" ); /* * Create new state. This is used locally to keep track * of the photoplotter's state as the Gerber is read in. */ state = g_new0 (gerb_state_t, 1); /* * Create new image. This will be returned. */ image = gerbv_create_image(image, "RS274-X (Gerber) File"); if (image == NULL) GERB_FATAL_ERROR("malloc image failed in %s()", __FUNCTION__); curr_net = image->netlist; image->layertype = GERBV_LAYERTYPE_RS274X; image->gerbv_stats = gerbv_stats_new(); if (image->gerbv_stats == NULL) GERB_FATAL_ERROR("malloc gerbv_stats failed in %s()", __FUNCTION__); stats = image->gerbv_stats; /* set active layer and netstate to point to first default one created */ state->layer = image->layers; state->state = image->states; curr_net->layer = state->layer; curr_net->state = state->state; /* * Start parsing */ dprintf("In %s(), starting to parse file...\n", __func__); foundEOF = gerber_parse_file_segment (1, image, state, curr_net, stats, fd, directoryPath); if (!foundEOF) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Missing Gerber EOF code in file \"%s\""), fd->filename); } g_free(state); dprintf(" ... done parsing Gerber file\n"); gerber_update_any_running_knockout_measurements (image); gerber_calculate_final_justify_effects(image); return image; } /* parse_gerb */ /* ------------------------------------------------------------------- */ /*! Checks for signs that this is a RS-274X file * Returns TRUE if it is, FALSE if not. */ gboolean gerber_is_rs274x_p(gerb_file_t *fd, gboolean *returnFoundBinary) { char *buf; int len = 0; char *letter; int i; gboolean found_binary = FALSE; gboolean found_ADD = FALSE; gboolean found_D0 = FALSE; gboolean found_D2 = FALSE; gboolean found_M0 = FALSE; gboolean found_M2 = FALSE; gboolean found_star = FALSE; gboolean found_X = FALSE; gboolean found_Y = FALSE; dprintf ("%s(%p, %p), fd->fd = %p\n", __func__, fd, returnFoundBinary, fd->fd); buf = (char *) g_malloc(MAXL); if (buf == NULL) GERB_FATAL_ERROR("malloc buf failed while checking for rs274x in %s()", __FUNCTION__); while (fgets(buf, MAXL, fd->fd) != NULL) { dprintf ("buf = \"%s\"\n", buf); len = strlen(buf); /* First look through the file for indications of its type by * checking that file is not binary (non-printing chars and white * spaces) */ for (i = 0; i < len; i++) { if (!isprint((int) buf[i]) && (buf[i] != '\r') && (buf[i] != '\n') && (buf[i] != '\t')) { found_binary = TRUE; dprintf ("found_binary (%d)\n", buf[i]); } } if (g_strstr_len(buf, len, "%ADD")) { found_ADD = TRUE; dprintf ("found_ADD\n"); } if (g_strstr_len(buf, len, "D00") || g_strstr_len(buf, len, "D0")) { found_D0 = TRUE; dprintf ("found_D0\n"); } if (g_strstr_len(buf, len, "D02") || g_strstr_len(buf, len, "D2")) { found_D2 = TRUE; dprintf ("found_D2\n"); } if (g_strstr_len(buf, len, "M00") || g_strstr_len(buf, len, "M0")) { found_M0 = TRUE; dprintf ("found_M0\n"); } if (g_strstr_len(buf, len, "M02") || g_strstr_len(buf, len, "M2")) { found_M2 = TRUE; dprintf ("found_M2\n"); } if (g_strstr_len(buf, len, "*")) { found_star = TRUE; dprintf ("found_star\n"); } /* look for X or Y */ if ((letter = g_strstr_len(buf, len, "X")) != NULL) { if (isdigit((int) letter[1])) { /* grab char after X */ found_X = TRUE; dprintf ("found_X\n"); } } if ((letter = g_strstr_len(buf, len, "Y")) != NULL) { if (isdigit((int) letter[1])) { /* grab char after Y */ found_Y = TRUE; dprintf ("found_Y\n"); } } } rewind(fd->fd); free(buf); *returnFoundBinary = found_binary; /* Now form logical expression determining if the file is RS-274X */ if ((found_D0 || found_D2 || found_M0 || found_M2) && found_ADD && found_star && (found_X || found_Y)) return TRUE; return FALSE; } /* gerber_is_rs274x */ /* ------------------------------------------------------------------- */ /*! Checks for signs that this is a RS-274D file * Returns TRUE if it is, FALSE if not. */ gboolean gerber_is_rs274d_p(gerb_file_t *fd) { char *buf; int len = 0; char *letter; int i; gboolean found_binary = FALSE; gboolean found_ADD = FALSE; gboolean found_D0 = FALSE; gboolean found_D2 = FALSE; gboolean found_M0 = FALSE; gboolean found_M2 = FALSE; gboolean found_star = FALSE; gboolean found_X = FALSE; gboolean found_Y = FALSE; buf = malloc(MAXL); if (buf == NULL) GERB_FATAL_ERROR("malloc buf failed while checking for rs274d in %s()", __FUNCTION__); while (fgets(buf, MAXL, fd->fd) != NULL) { len = strlen(buf); /* First look through the file for indications of its type */ /* check that file is not binary (non-printing chars */ for (i = 0; i < len; i++) { if (!isprint( (int) buf[i]) && (buf[i] != '\r') && (buf[i] != '\n') && (buf[i] != '\t')) { found_binary = TRUE; } } if (g_strstr_len(buf, len, "%ADD")) { found_ADD = TRUE; } if (g_strstr_len(buf, len, "D00") || g_strstr_len(buf, len, "D0")) { found_D0 = TRUE; } if (g_strstr_len(buf, len, "D02") || g_strstr_len(buf, len, "D2")) { found_D2 = TRUE; } if (g_strstr_len(buf, len, "M00") || g_strstr_len(buf, len, "M0")) { found_M0 = TRUE; } if (g_strstr_len(buf, len, "M02") || g_strstr_len(buf, len, "M2")) { found_M2 = TRUE; } if (g_strstr_len(buf, len, "*")) { found_star = TRUE; } /* look for X or Y */ if ((letter = g_strstr_len(buf, len, "X")) != NULL) { /* grab char after X */ if (isdigit( (int) letter[1])) { found_X = TRUE; } } if ((letter = g_strstr_len(buf, len, "Y")) != NULL) { /* grab char after Y */ if (isdigit( (int) letter[1])) { found_Y = TRUE; } } } rewind(fd->fd); free(buf); /* Now form logical expression determining if the file is RS-274D */ if ((found_D0 || found_D2 || found_M0 || found_M2) && !found_ADD && found_star && (found_X || found_Y) && !found_binary) return TRUE; return FALSE; } /* gerber_is_rs274d */ /* ------------------------------------------------------------------- */ /*! This function reads a G number and updates the current * state. It also updates the G stats counters */ static void parse_G_code(gerb_file_t *fd, gerb_state_t *state, gerbv_image_t *image, long int *line_num_p) { int op_int; gerbv_format_t *format = image->format; gerbv_stats_t *stats = image->gerbv_stats; gerbv_error_list_t *error_list = stats->error_list; int c; op_int=gerb_fgetint(fd, NULL); /* Emphasize text with new line '\n' in the beginning */ dprintf("\n Found G%02d at line %ld (%s)\n", op_int, *line_num_p, gerber_g_code_name(op_int)); switch(op_int) { case 0: /* Move */ /* Is this doing anything really? */ stats->G0++; break; case 1: /* Linear Interpolation (1X scale) */ state->interpolation = GERBV_INTERPOLATION_LINEARx1; stats->G1++; break; case 2: /* Clockwise Linear Interpolation */ state->interpolation = GERBV_INTERPOLATION_CW_CIRCULAR; stats->G2++; break; case 3: /* Counter Clockwise Linear Interpolation */ state->interpolation = GERBV_INTERPOLATION_CCW_CIRCULAR; stats->G3++; break; case 4: /* Ignore Data Block */ /* Don't do anything, just read 'til * */ /* SDB asks: Should we look for other codes while reading G04 in case * user forgot to put * at end of comment block? */ do { c = gerb_fgetc(fd); } while (c != EOF && c != '*'); stats->G4++; break; case 10: /* Linear Interpolation (10X scale) */ state->interpolation = GERBV_INTERPOLATION_LINEARx10; stats->G10++; break; case 11: /* Linear Interpolation (0.1X scale) */ state->interpolation = GERBV_INTERPOLATION_LINEARx01; stats->G11++; break; case 12: /* Linear Interpolation (0.01X scale) */ state->interpolation = GERBV_INTERPOLATION_LINEARx001; stats->G12++; break; case 36: /* Turn on Polygon Area Fill */ state->prev_interpolation = state->interpolation; state->interpolation = GERBV_INTERPOLATION_PAREA_START; state->changed = 1; stats->G36++; break; case 37: /* Turn off Polygon Area Fill */ state->interpolation = GERBV_INTERPOLATION_PAREA_END; state->changed = 1; stats->G37++; break; case 54: /* Tool prepare */ /* XXX Maybe uneccesary??? */ if (gerb_fgetc(fd) == 'D') { int a = gerb_fgetint(fd, NULL); if ((a >= 0) && (a <= APERTURE_MAX)) { state->curr_aperture = a; } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found aperture D%02d out of bounds while parsing " "G code at line %ld in file \"%s\""), a, *line_num_p, fd->filename); } } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found unexpected code after G54 " "at line %ld in file \"%s\""), *line_num_p, fd->filename); /* TODO: insert error count here */ } stats->G54++; break; case 55: /* Prepare for flash */ stats->G55++; break; case 70: /* Specify inches */ state->state = gerbv_image_return_new_netstate (state->state); state->state->unit = GERBV_UNIT_INCH; stats->G70++; break; case 71: /* Specify millimeters */ state->state = gerbv_image_return_new_netstate (state->state); state->state->unit = GERBV_UNIT_MM; stats->G71++; break; case 74: /* Disable 360 circular interpolation */ state->mq_on = 0; stats->G74++; break; case 75: /* Enable 360 circular interpolation */ state->mq_on = 1; stats->G75++; break; case 90: /* Specify absolut format */ if (format) format->coordinate = GERBV_COORDINATE_ABSOLUTE; stats->G90++; break; case 91: /* Specify incremental format */ if (format) format->coordinate = GERBV_COORDINATE_INCREMENTAL; stats->G91++; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Encountered unknown G code G%02d " "at line %ld in file \"%s\""), op_int, *line_num_p, fd->filename); gerbv_stats_printf(error_list, GERBV_MESSAGE_WARNING, -1, _("Ignorning unknown G code G%02d"), op_int); stats->G_unknown++; /* TODO: insert error count here */ break; } return; } /* parse_G_code */ /* ------------------------------------------------------------------ */ /*! This function reads the numeric value of a D code and updates the * state. It also updates the D stats counters */ static void parse_D_code(gerb_file_t *fd, gerb_state_t *state, gerbv_image_t *image, long int *line_num_p) { int a; gerbv_stats_t *stats = image->gerbv_stats; gerbv_error_list_t *error_list = stats->error_list; a = gerb_fgetint(fd, NULL); dprintf(" Found D%02d code at line %ld\n", a, *line_num_p); switch(a) { case 0 : /* Invalid code */ gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found invalid D00 code at line %ld in file \"%s\""), *line_num_p, fd->filename); stats->D_error++; break; case 1 : /* Exposure on */ state->aperture_state = GERBV_APERTURE_STATE_ON; state->changed = 1; stats->D1++; break; case 2 : /* Exposure off */ state->aperture_state = GERBV_APERTURE_STATE_OFF; state->changed = 1; stats->D2++; break; case 3 : /* Flash aperture */ state->aperture_state = GERBV_APERTURE_STATE_FLASH; state->changed = 1; stats->D3++; break; default: /* Aperture in use */ if ((a >= 0) && (a <= APERTURE_MAX)) { state->curr_aperture = a; } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found out of bounds aperture D%02d " "at line %ld in file \"%s\""), a, *line_num_p, fd->filename); stats->D_error++; } state->changed = 0; break; } return; } /* parse_D_code */ /* ------------------------------------------------------------------ */ static int parse_M_code(gerb_file_t *fd, gerbv_image_t *image, long int *line_num_p) { int op_int; gerbv_stats_t *stats = image->gerbv_stats; op_int=gerb_fgetint(fd, NULL); switch (op_int) { case 0: /* Program stop */ stats->M0++; return 1; case 1: /* Optional stop */ stats->M1++; return 2; case 2: /* End of program */ stats->M2++; return 3; default: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Encountered unknown M%02d code at line %ld in file \"%s\""), op_int, *line_num_p, fd->filename); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Ignorning unknown M%02d code"), op_int); stats->M_unknown++; } return 0; } /* parse_M_code */ /* ------------------------------------------------------------------ */ static void parse_rs274x(gint levelOfRecursion, gerb_file_t *fd, gerbv_image_t *image, gerb_state_t *state, gerbv_net_t *curr_net, gerbv_stats_t *stats, gchar *directoryPath, long int *line_num_p) { int op[2]; char str[3]; int tmp; gerbv_aperture_t *a = NULL; gerbv_amacro_t *tmp_amacro; int ano; gdouble scale = 1.0; gerbv_error_list_t *error_list = stats->error_list; if (state->state->unit == GERBV_UNIT_MM) scale = 25.4; op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); if (op[0] == EOF || op[1] == EOF) gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); switch (A2I(op[0], op[1])){ /* * Directive parameters */ case A2I('A','S'): /* Axis Select */ op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); state->state = gerbv_image_return_new_netstate (state->state); if (op[0] == EOF || op[1] == EOF) gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); if (((op[0] == 'A') && (op[1] == 'Y')) || ((op[0] == 'B') && (op[1] == 'X'))) { state->state->axisSelect = GERBV_AXIS_SELECT_SWAPAB; } else { state->state->axisSelect = GERBV_AXIS_SELECT_NOSELECT; } op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); if (op[0] == EOF || op[1] == EOF) gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); if (((op[0] == 'A') && (op[1] == 'Y')) || ((op[0] == 'B') && (op[1] == 'X'))) { state->state->axisSelect = GERBV_AXIS_SELECT_SWAPAB; } else { state->state->axisSelect = GERBV_AXIS_SELECT_NOSELECT; } break; case A2I('F','S'): /* Format Statement */ image->format = g_new0 (gerbv_format_t,1); switch (gerb_fgetc(fd)) { case 'L': image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; break; case 'T': image->format->omit_zeros = GERBV_OMIT_ZEROS_TRAILING; break; case 'D': image->format->omit_zeros = GERBV_OMIT_ZEROS_EXPLICIT; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("EagleCad bug detected: Undefined handling of zeros " "in format code at line %ld in file \"%s\""), *line_num_p, fd->filename); gerbv_stats_printf(error_list, GERBV_MESSAGE_WARNING, -1, _("Defaulting to omitting leading zeros")); gerb_ungetc(fd); image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; } switch (gerb_fgetc(fd)) { case 'A': image->format->coordinate = GERBV_COORDINATE_ABSOLUTE; break; case 'I': image->format->coordinate = GERBV_COORDINATE_INCREMENTAL; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Invalid coordinate type defined in format code " "at line %ld in file \"%s\""), *line_num_p, fd->filename); gerbv_stats_printf(error_list, GERBV_MESSAGE_WARNING, -1, _("Defaulting to absolute coordinates")); image->format->coordinate = GERBV_COORDINATE_ABSOLUTE; } op[0] = gerb_fgetc(fd); while((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'N': op[0] = (char)gerb_fgetc(fd); image->format->lim_seqno = op[0] - '0'; break; case 'G': op[0] = (char)gerb_fgetc(fd); image->format->lim_gf = op[0] - '0'; break; case 'D': op[0] = (char)gerb_fgetc(fd); image->format->lim_pf = op[0] - '0'; break; case 'M': op[0] = (char)gerb_fgetc(fd); image->format->lim_mf = op[0] - '0'; break; case 'X' : op[0] = gerb_fgetc(fd); if ((op[0] < '0') || (op[0] > '6')) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal format size '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } image->format->x_int = op[0] - '0'; op[0] = gerb_fgetc(fd); if ((op[0] < '0') || (op[0] > '6')) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal format size '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } image->format->x_dec = op[0] - '0'; break; case 'Y': op[0] = gerb_fgetc(fd); if ((op[0] < '0') || (op[0] > '6')) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal format size '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } image->format->y_int = op[0] - '0'; op[0] = gerb_fgetc(fd); if ((op[0] < '0') || (op[0] > '6')) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal format size '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } image->format->y_dec = op[0] - '0'; break; default : gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal format statement '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); gerbv_stats_printf(error_list, GERBV_MESSAGE_WARNING, -1, _("Ignoring invalid format statement")); } op[0] = gerb_fgetc(fd); } break; case A2I('M','I'): /* Mirror Image */ op[0] = gerb_fgetc(fd); state->state = gerbv_image_return_new_netstate (state->state); while ((op[0] != '*')&&(op[0] != EOF)) { gint readValue=0; switch (op[0]) { case 'A' : readValue = gerb_fgetint(fd, NULL); if (readValue == 1) { if (state->state->mirrorState == GERBV_MIRROR_STATE_FLIPB) state->state->mirrorState=GERBV_MIRROR_STATE_FLIPAB; else state->state->mirrorState=GERBV_MIRROR_STATE_FLIPA; } break; case 'B' : readValue = gerb_fgetint(fd, NULL); if (readValue == 1) { if (state->state->mirrorState == GERBV_MIRROR_STATE_FLIPA) state->state->mirrorState=GERBV_MIRROR_STATE_FLIPAB; else state->state->mirrorState=GERBV_MIRROR_STATE_FLIPB; } break; default : gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Wrong character '%s' in mirror " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } op[0] = gerb_fgetc(fd); } break; case A2I('M','O'): /* Mode of Units */ op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); if (op[0] == EOF || op[1] == EOF) gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); switch (A2I(op[0],op[1])) { case A2I('I','N'): state->state = gerbv_image_return_new_netstate (state->state); state->state->unit = GERBV_UNIT_INCH; break; case A2I('M','M'): state->state = gerbv_image_return_new_netstate (state->state); state->state->unit = GERBV_UNIT_MM; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Illegal unit '%s%s' at line %ld in file \"%s\""), gerbv_escape_char(op[0]), gerbv_escape_char(op[1]), *line_num_p, fd->filename); } break; case A2I('O','F'): /* Offset */ op[0] = gerb_fgetc(fd); while ((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'A' : state->state->offsetA = gerb_fgetdouble(fd) / scale; break; case 'B' : state->state->offsetB = gerb_fgetdouble(fd) / scale; break; default : gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Wrong character '%s' in offset " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } op[0] = gerb_fgetc(fd); } break; case A2I('I','F'): /* Include file */ { gchar *includeFilename = gerb_fgetstring(fd, '*'); if (includeFilename) { gchar *fullPath; if (!g_path_is_absolute(includeFilename)) { fullPath = g_build_filename (directoryPath, includeFilename, NULL); } else { fullPath = g_strdup (includeFilename); } if (levelOfRecursion < 10) { gerb_file_t *includefd = NULL; includefd = gerb_fopen(fullPath); if (includefd) { gerber_parse_file_segment (levelOfRecursion + 1, image, state, curr_net, stats, includefd, directoryPath); gerb_fclose(includefd); } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Included file \"%s\" cannot be found " "at line %ld in file \"%s\""), fullPath, *line_num_p, fd->filename); } g_free (fullPath); } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Parser encountered more than 10 levels of " "include file recursion which is not allowed " "by the RS-274X spec")); } } } break; case A2I('I','O'): /* Image offset */ op[0] = gerb_fgetc(fd); while ((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'A' : image->info->offsetA = gerb_fgetdouble(fd) / scale; break; case 'B' : image->info->offsetB = gerb_fgetdouble(fd) / scale; break; default : gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Wrong character '%s' in image offset " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } op[0] = gerb_fgetc(fd); } break; case A2I('S','F'): /* Scale Factor */ state->state = gerbv_image_return_new_netstate (state->state); if (gerb_fgetc(fd) == 'A') state->state->scaleA = gerb_fgetdouble(fd); else gerb_ungetc(fd); if (gerb_fgetc(fd) == 'B') state->state->scaleB = gerb_fgetdouble(fd); else gerb_ungetc(fd); break; case A2I('I','C'): /* Input Code */ /* Thanks to Stephen Adam for providing this information. As he writes: * btw, here's a logic puzzle for you. If you need to * read the gerber file to see how it's encoded, then * how can you read it? */ op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); if (op[0] == EOF || op[1] == EOF) gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); switch (A2I(op[0],op[1])) { case A2I('A','S'): image->info->encoding = GERBV_ENCODING_ASCII; break; case A2I('E','B'): image->info->encoding = GERBV_ENCODING_EBCDIC; break; case A2I('B','C'): image->info->encoding = GERBV_ENCODING_BCD; break; case A2I('I','S'): image->info->encoding = GERBV_ENCODING_ISO_ASCII; break; case A2I('E','I'): image->info->encoding = GERBV_ENCODING_EIA; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown input code (IC) '%s%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), gerbv_escape_char(op[1]), *line_num_p, fd->filename); } break; /* Image parameters */ case A2I('I','J'): /* Image Justify */ op[0] = gerb_fgetc(fd); image->info->imageJustifyTypeA = GERBV_JUSTIFY_LOWERLEFT; image->info->imageJustifyTypeB = GERBV_JUSTIFY_LOWERLEFT; image->info->imageJustifyOffsetA = 0.0; image->info->imageJustifyOffsetB = 0.0; while ((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'A' : op[0] = gerb_fgetc(fd); if (op[0] == 'C') { image->info->imageJustifyTypeA = GERBV_JUSTIFY_CENTERJUSTIFY; } else if (op[0] == 'L') { image->info->imageJustifyTypeA = GERBV_JUSTIFY_LOWERLEFT; } else { gerb_ungetc (fd); image->info->imageJustifyOffsetA = gerb_fgetdouble(fd) / scale; } break; case 'B' : op[0] = gerb_fgetc(fd); if (op[0] == 'C') { image->info->imageJustifyTypeB = GERBV_JUSTIFY_CENTERJUSTIFY; } else if (op[0] == 'L') { image->info->imageJustifyTypeB = GERBV_JUSTIFY_LOWERLEFT; } else { gerb_ungetc (fd); image->info->imageJustifyOffsetB = gerb_fgetdouble(fd) / scale; } break; default : gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Wrong character '%s' in image justify " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } op[0] = gerb_fgetc(fd); } break; case A2I('I','N'): /* Image Name */ image->info->name = gerb_fgetstring(fd, '*'); break; case A2I('I','P'): /* Image Polarity */ for (ano = 0; ano < 3; ano++) { op[0] = gerb_fgetc(fd); if (op[0] == EOF) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF while reading image polarity (IP) " "in file \"%s\""), fd->filename); } str[ano] = (char)op[0]; } if (strncmp(str, "POS", 3) == 0) image->info->polarity = GERBV_POLARITY_POSITIVE; else if (strncmp(str, "NEG", 3) == 0) image->info->polarity = GERBV_POLARITY_NEGATIVE; else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown polarity '%s%s%s' " "at line %ld in file \"%s\""), gerbv_escape_char(str[0]), gerbv_escape_char(str[1]), gerbv_escape_char(str[2]), *line_num_p, fd->filename); } break; case A2I('I','R'): /* Image Rotation */ tmp = gerb_fgetint(fd, NULL) % 360; if (tmp == 0) image->info->imageRotation = 0.0; else if (tmp == 90) image->info->imageRotation = M_PI_2; else if (tmp == 180) image->info->imageRotation = M_PI; else if (tmp == 270) image->info->imageRotation = M_PI + M_PI_2; else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Image rotation must be 0, 90, 180 or 270 " "(is actually %d) at line %ld in file \"%s\""), tmp, *line_num_p, fd->filename); } break; case A2I('P','F'): /* Plotter Film */ image->info->plotterFilm = gerb_fgetstring(fd, '*'); break; /* Aperture parameters */ case A2I('A','D'): /* Aperture Description */ a = (gerbv_aperture_t *) g_new0 (gerbv_aperture_t,1); ano = parse_aperture_definition(fd, a, image, scale, line_num_p); if (ano == -1) { /* error with line parse, so just quietly ignore */ } else if ((ano >= 0) && (ano <= APERTURE_MAX)) { a->unit = state->state->unit; image->aperture[ano] = a; dprintf(" In %s(), adding new aperture to aperture list ...\n", __func__); gerbv_stats_add_aperture(stats->aperture_list, -1, ano, a->type, a->parameter); gerbv_stats_add_to_D_list(stats->D_code_list, ano); if (ano < APERTURE_MIN) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Aperture number out of bounds %d " "at line %ld in file \"%s\""), ano, *line_num_p, fd->filename); } } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Aperture number out of bounds %d " "at line %ld in file \"%s\""), ano, *line_num_p, fd->filename); } /* Add aperture info to stats->aperture_list here */ break; case A2I('A','M'): /* Aperture Macro */ tmp_amacro = image->amacro; image->amacro = parse_aperture_macro(fd); if (image->amacro) { image->amacro->next = tmp_amacro; #ifdef AMACRO_DEBUG print_program(image->amacro); #endif } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Failed to parse aperture macro " "at line %ld in file \"%s\""), *line_num_p, fd->filename); } // return, since we want to skip the later back-up loop return; /* Layer */ case A2I('L','N'): /* Layer Name */ state->layer = gerbv_image_return_new_layer (state->layer); state->layer->name = gerb_fgetstring(fd, '*'); break; case A2I('L','P'): /* Layer Polarity */ state->layer = gerbv_image_return_new_layer (state->layer); switch (gerb_fgetc(fd)) { case 'D': /* Dark Polarity (default) */ state->layer->polarity = GERBV_POLARITY_DARK; break; case 'C': /* Clear Polarity */ state->layer->polarity = GERBV_POLARITY_CLEAR; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown layer polarity '%s' " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), *line_num_p, fd->filename); } break; case A2I('K','O'): /* Knock Out */ state->layer = gerbv_image_return_new_layer (state->layer); gerber_update_any_running_knockout_measurements (image); /* reset any previous knockout measurements */ knockoutMeasure = FALSE; op[0] = gerb_fgetc(fd); if (op[0] == '*') { /* Disable previous SR parameters */ state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_NOKNOCKOUT; break; } else if (op[0] == 'C') { state->layer->knockout.polarity = GERBV_POLARITY_CLEAR; } else if (op[0] == 'D') { state->layer->knockout.polarity = GERBV_POLARITY_DARK; } else { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Knockout must supply a polarity (C, D, or *) " "at line %ld in file \"%s\""), *line_num_p, fd->filename); } state->layer->knockout.lowerLeftX = 0.0; state->layer->knockout.lowerLeftY = 0.0; state->layer->knockout.width = 0.0; state->layer->knockout.height = 0.0; state->layer->knockout.border = 0.0; state->layer->knockout.firstInstance = TRUE; op[0] = gerb_fgetc(fd); while ((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'X': state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_FIXEDKNOCK; state->layer->knockout.lowerLeftX = gerb_fgetdouble(fd) / scale; break; case 'Y': state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_FIXEDKNOCK; state->layer->knockout.lowerLeftY = gerb_fgetdouble(fd) / scale; break; case 'I': state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_FIXEDKNOCK; state->layer->knockout.width = gerb_fgetdouble(fd) / scale; break; case 'J': state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_FIXEDKNOCK; state->layer->knockout.height = gerb_fgetdouble(fd) / scale; break; case 'K': state->layer->knockout.type = GERBV_KNOCKOUT_TYPE_BORDER; state->layer->knockout.border = gerb_fgetdouble(fd) / scale; /* this is a bordered knockout, so we need to start measuring the size of a square bordering all future components */ knockoutMeasure = TRUE; knockoutLimitXmin = HUGE_VAL; knockoutLimitYmin = HUGE_VAL; knockoutLimitXmax = -HUGE_VAL; knockoutLimitYmax = -HUGE_VAL; knockoutLayer = state->layer; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown variable in knockout " "at line %ld in file \"%s\""), *line_num_p, fd->filename); } op[0] = gerb_fgetc(fd); } break; case A2I('S','R'): /* Step and Repeat */ /* start by generating a new layer (duplicating previous layer settings */ state->layer = gerbv_image_return_new_layer (state->layer); op[0] = gerb_fgetc(fd); if (op[0] == '*') { /* Disable previous SR parameters */ state->layer->stepAndRepeat.X = 1; state->layer->stepAndRepeat.Y = 1; state->layer->stepAndRepeat.dist_X = 0.0; state->layer->stepAndRepeat.dist_Y = 0.0; break; } while ((op[0] != '*')&&(op[0] != EOF)) { switch (op[0]) { case 'X': state->layer->stepAndRepeat.X = gerb_fgetint(fd, NULL); break; case 'Y': state->layer->stepAndRepeat.Y = gerb_fgetint(fd, NULL); break; case 'I': state->layer->stepAndRepeat.dist_X = gerb_fgetdouble(fd) / scale; break; case 'J': state->layer->stepAndRepeat.dist_Y = gerb_fgetdouble(fd) / scale; break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Step-and-repeat parameter error " "at line %ld in file \"%s\""), *line_num_p, fd->filename); } /* * Repeating 0 times in any direction would disable the whole plot, and * is probably not intended. At least one other tool (viewmate) seems * to interpret 0-time repeating as repeating just once too. */ if(state->layer->stepAndRepeat.X == 0) state->layer->stepAndRepeat.X = 1; if(state->layer->stepAndRepeat.Y == 0) state->layer->stepAndRepeat.Y = 1; op[0] = gerb_fgetc(fd); } break; /* is this an actual RS274X command?? It isn't explainined in the spec... */ case A2I('R','O'): state->layer = gerbv_image_return_new_layer (state->layer); state->layer->rotation = DEG2RAD(gerb_fgetdouble(fd)); op[0] = gerb_fgetc(fd); if (op[0] != '*') { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Error in layer rotation command " "at line %ld in file \"%s\""), *line_num_p, fd->filename); } break; default: gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Unknown RS-274X extension found %%%s%s%% " "at line %ld in file \"%s\""), gerbv_escape_char(op[0]), gerbv_escape_char(op[1]), *line_num_p, fd->filename); } // make sure we read until the trailing * character // first, backspace once in case we already read the trailing * gerb_ungetc(fd); do { tmp = gerb_fgetc(fd); } while (tmp != EOF && tmp != '*'); return; } /* parse_rs274x */ /* * Stack declarations and operations to be used by the simple engine that * executes the parsed aperture macros. */ typedef struct { double *stack; int sp; } macro_stack_t; static macro_stack_t * new_stack(unsigned int stack_size) { macro_stack_t *s; s = (macro_stack_t *) g_new0 (macro_stack_t,1); s->stack = (double *) g_new0 (double, stack_size); s->sp = 0; return s; } /* new_stack */ static void free_stack(macro_stack_t *s) { if (s && s->stack) free(s->stack); if (s) free(s); return; } /* free_stack */ static void push(macro_stack_t *s, double val) { s->stack[s->sp++] = val; return; } /* push */ static int pop(macro_stack_t *s, double *value) { /* Check if we try to pop an empty stack */ if (s->sp == 0) { return -1; } *value = s->stack[--s->sp]; return 0; } /* pop */ /* ------------------------------------------------------------------ */ static int simplify_aperture_macro(gerbv_aperture_t *aperture, gdouble scale) { const int extra_stack_size = 10; macro_stack_t *s; gerbv_instruction_t *ip; int handled = 1, nuf_parameters = 0, i, j, clearOperatorUsed = FALSE; double *lp; /* Local copy of parameters */ double tmp[2] = {0.0, 0.0}; gerbv_aperture_type_t type = GERBV_APTYPE_NONE; gerbv_simplified_amacro_t *sam; if (aperture == NULL) GERB_FATAL_ERROR(_("aperture NULL in simplify aperture macro")); if (aperture->amacro == NULL) GERB_FATAL_ERROR(_("aperture->amacro NULL in simplify aperture macro")); /* Allocate stack for VM */ s = new_stack(aperture->amacro->nuf_push + extra_stack_size); if (s == NULL) GERB_FATAL_ERROR("malloc stack failed in %s()", __FUNCTION__); /* Make a copy of the parameter list that we can rewrite if necessary */ lp = g_new (double,APERTURE_PARAMETERS_MAX); memcpy(lp, aperture->parameter, sizeof(double) * APERTURE_PARAMETERS_MAX); for(ip = aperture->amacro->program; ip != NULL; ip = ip->next) { switch(ip->opcode) { case GERBV_OPCODE_NOP: break; case GERBV_OPCODE_PUSH : push(s, ip->data.fval); break; case GERBV_OPCODE_PPUSH : push(s, lp[ip->data.ival - 1]); break; case GERBV_OPCODE_PPOP: if (pop(s, &tmp[0]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); lp[ip->data.ival - 1] = tmp[0]; break; case GERBV_OPCODE_ADD : if (pop(s, &tmp[0]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); if (pop(s, &tmp[1]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); push(s, tmp[1] + tmp[0]); break; case GERBV_OPCODE_SUB : if (pop(s, &tmp[0]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); if (pop(s, &tmp[1]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); push(s, tmp[1] - tmp[0]); break; case GERBV_OPCODE_MUL : if (pop(s, &tmp[0]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); if (pop(s, &tmp[1]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); push(s, tmp[1] * tmp[0]); break; case GERBV_OPCODE_DIV : if (pop(s, &tmp[0]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); if (pop(s, &tmp[1]) < 0) GERB_FATAL_ERROR(_("Tried to pop an empty stack")); push(s, tmp[1] / tmp[0]); break; case GERBV_OPCODE_PRIM : /* * This handles the exposure thing in the aperture macro * The exposure is always the first element on stack independent * of aperture macro. */ switch(ip->data.ival) { case 1: dprintf(" Aperture macro circle [1] ("); type = GERBV_APTYPE_MACRO_CIRCLE; nuf_parameters = 4; break; case 3: break; case 4 : dprintf(" Aperture macro outline [4] ("); type = GERBV_APTYPE_MACRO_OUTLINE; /* * Number of parameters are: * - number of points defined in entry 1 of the stack + * start point. Times two since it is both X and Y. * - Then three more; exposure, nuf points and rotation. */ nuf_parameters = ((int)s->stack[1] + 1) * 2 + 3; break; case 5 : dprintf(" Aperture macro polygon [5] ("); type = GERBV_APTYPE_MACRO_POLYGON; nuf_parameters = 6; break; case 6 : dprintf(" Aperture macro moire [6] ("); type = GERBV_APTYPE_MACRO_MOIRE; nuf_parameters = 9; break; case 7 : dprintf(" Aperture macro thermal [7] ("); type = GERBV_APTYPE_MACRO_THERMAL; nuf_parameters = 6; break; case 2 : case 20 : dprintf(" Aperture macro line 20/2 ("); type = GERBV_APTYPE_MACRO_LINE20; nuf_parameters = 7; break; case 21 : dprintf(" Aperture macro line 21 ("); type = GERBV_APTYPE_MACRO_LINE21; nuf_parameters = 6; break; case 22 : dprintf(" Aperture macro line 22 ("); type = GERBV_APTYPE_MACRO_LINE22; nuf_parameters = 6; break; default : handled = 0; } if (type != GERBV_APTYPE_NONE) { if (nuf_parameters > APERTURE_PARAMETERS_MAX) { GERB_COMPILE_ERROR(_("Number of parameters to aperture macro (%d) " "are more than gerbv is able to store (%d)"), nuf_parameters, APERTURE_PARAMETERS_MAX); nuf_parameters = APERTURE_PARAMETERS_MAX; } /* * Create struct for simplified aperture macro and * start filling in the blanks. */ sam = g_new (gerbv_simplified_amacro_t, 1); sam->type = type; sam->next = NULL; memset(sam->parameter, 0, sizeof(double) * APERTURE_PARAMETERS_MAX); memcpy(sam->parameter, s->stack, sizeof(double) * nuf_parameters); /* convert any mm values to inches */ switch (type) { case GERBV_APTYPE_MACRO_CIRCLE: if (fabs(sam->parameter[0]) < 0.001) clearOperatorUsed = TRUE; sam->parameter[1]/=scale; sam->parameter[2]/=scale; sam->parameter[3]/=scale; break; case GERBV_APTYPE_MACRO_OUTLINE: if (fabs(sam->parameter[0]) < 0.001) clearOperatorUsed = TRUE; for (j=2; jparameter[j]/=scale; } break; case GERBV_APTYPE_MACRO_POLYGON: if (fabs(sam->parameter[0]) < 0.001) clearOperatorUsed = TRUE; sam->parameter[2]/=scale; sam->parameter[3]/=scale; sam->parameter[4]/=scale; break; case GERBV_APTYPE_MACRO_MOIRE: sam->parameter[0]/=scale; sam->parameter[1]/=scale; sam->parameter[2]/=scale; sam->parameter[3]/=scale; sam->parameter[4]/=scale; sam->parameter[6]/=scale; sam->parameter[7]/=scale; break; case GERBV_APTYPE_MACRO_THERMAL: sam->parameter[0]/=scale; sam->parameter[1]/=scale; sam->parameter[2]/=scale; sam->parameter[3]/=scale; sam->parameter[4]/=scale; break; case GERBV_APTYPE_MACRO_LINE20: if (fabs(sam->parameter[0]) < 0.001) clearOperatorUsed = TRUE; sam->parameter[1]/=scale; sam->parameter[2]/=scale; sam->parameter[3]/=scale; sam->parameter[4]/=scale; sam->parameter[5]/=scale; break; case GERBV_APTYPE_MACRO_LINE21: case GERBV_APTYPE_MACRO_LINE22: if (fabs(sam->parameter[0]) < 0.001) clearOperatorUsed = TRUE; sam->parameter[1]/=scale; sam->parameter[2]/=scale; sam->parameter[3]/=scale; sam->parameter[4]/=scale; break; default: break; } /* * Add this simplified aperture macro to the end of the list * of simplified aperture macros. If first entry, put it * in the top. */ if (aperture->simplified == NULL) { aperture->simplified = sam; } else { gerbv_simplified_amacro_t *tmp_sam; tmp_sam = aperture->simplified; while (tmp_sam->next != NULL) { tmp_sam = tmp_sam->next; } tmp_sam->next = sam; } #ifdef DEBUG for (i = 0; i < nuf_parameters; i++) { dprintf("%f, ", s->stack[i]); } #endif /* DEBUG */ dprintf(")\n"); } /* * Here we reset the stack pointer. It's not general correct * correct to do this, but since I know how the compiler works * I can do this. The correct way to do this should be to * subtract number of used elements in each primitive operation. */ s->sp = 0; break; default : break; } } free_stack(s); g_free (lp); /* store a flag to let the renderer know if it should expect any "clear" primatives */ aperture->parameter[0]= (gdouble) clearOperatorUsed; return handled; } /* simplify_aperture_macro */ /* ------------------------------------------------------------------ */ static int parse_aperture_definition(gerb_file_t *fd, gerbv_aperture_t *aperture, gerbv_image_t *image, gdouble scale, long int *line_num_p) { int ano, i; char *ad; char *token; gerbv_amacro_t *curr_amacro; gerbv_amacro_t *amacro = image->amacro; gerbv_error_list_t *error_list = image->gerbv_stats->error_list; gdouble tempHolder; if (gerb_fgetc(fd) != 'D') { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Found AD code with no following 'D' " "at line %ld in file \"%s\""), *line_num_p, fd->filename); return -1; } /* * Get aperture no */ ano = gerb_fgetint(fd, NULL); /* * Read in the whole aperture defintion and tokenize it */ ad = gerb_fgetstring(fd, '*'); token = strtok(ad, ","); if (token == NULL) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Invalid aperture definition " "at line %ld in file \"%s\""), *line_num_p, fd->filename); return -1; } if (strlen(token) == 1) { switch (token[0]) { case 'C': aperture->type = GERBV_APTYPE_CIRCLE; break; case 'R' : aperture->type = GERBV_APTYPE_RECTANGLE; break; case 'O' : aperture->type = GERBV_APTYPE_OVAL; break; case 'P' : aperture->type = GERBV_APTYPE_POLYGON; break; } /* Here a should a T be defined, but I don't know what it represents */ } else { aperture->type = GERBV_APTYPE_MACRO; /* * In aperture definition, point to the aperture macro * used in the defintion */ curr_amacro = amacro; while (curr_amacro) { if ((strlen(curr_amacro->name) == strlen(token)) && (strcmp(curr_amacro->name, token) == 0)) { aperture->amacro = curr_amacro; break; } curr_amacro = curr_amacro->next; } } /* * Parse all parameters */ for (token = strtok(NULL, "X"), i = 0; token != NULL; token = strtok(NULL, "X"), i++) { if (i == APERTURE_PARAMETERS_MAX) { gerbv_stats_printf(error_list, GERBV_MESSAGE_ERROR, -1, _("Maximum number of allowed parameters exceeded " "in aperture %d at line %ld in file \"%s\""), ano, *line_num_p, fd->filename); break; } errno = 0; tempHolder = strtod(token, NULL); /* convert any MM values to inches */ /* don't scale polygon angles or side numbers, or macro parmaeters */ if (!(((aperture->type == GERBV_APTYPE_POLYGON) && ((i==1) || (i==2)))|| (aperture->type == GERBV_APTYPE_MACRO))) { tempHolder /= scale; } aperture->parameter[i] = tempHolder; if (errno) { gerbv_stats_printf(error_list, GERBV_MESSAGE_WARNING, -1, _("Failed to read all parameters exceeded in " "aperture %d at line %ld in file \"%s\""), ano, *line_num_p, fd->filename); aperture->parameter[i] = 0.0; } } aperture->nuf_parameters = i; gerb_ungetc(fd); if (aperture->type == GERBV_APTYPE_MACRO) { dprintf("Simplifying aperture %d using aperture macro \"%s\"\n", ano, aperture->amacro->name); simplify_aperture_macro(aperture, scale); dprintf("Done simplifying\n"); } g_free(ad); return ano; } /* parse_aperture_definition */ /* ------------------------------------------------------------------ */ static void calc_cirseg_sq(struct gerbv_net *net, int cw, double delta_cp_x, double delta_cp_y) { double d1x, d1y, d2x, d2y; double alfa, beta; int quadrant = 0; /* * Quadrant detection (based on ccw, converted below if cw) * Y ^ * /!\ * ! * ---->X */ if (net->start_x > net->stop_x) /* 1st and 2nd quadrant */ if (net->start_y < net->stop_y) quadrant = 1; else quadrant = 2; else /* 3rd and 4th quadrant */ if (net->start_y > net->stop_y) quadrant = 3; else quadrant = 4; /* * If clockwise, rotate quadrant */ if (cw) { switch (quadrant) { case 1 : quadrant = 3; break; case 2 : quadrant = 4; break; case 3 : quadrant = 1; break; case 4 : quadrant = 2; break; default : GERB_COMPILE_ERROR(_("Unknow quadrant value while converting to cw")); } } /* * Calculate arc center point */ switch (quadrant) { case 1 : net->cirseg->cp_x = net->start_x - delta_cp_x; net->cirseg->cp_y = net->start_y - delta_cp_y; break; case 2 : net->cirseg->cp_x = net->start_x + delta_cp_x; net->cirseg->cp_y = net->start_y - delta_cp_y; break; case 3 : net->cirseg->cp_x = net->start_x + delta_cp_x; net->cirseg->cp_y = net->start_y + delta_cp_y; break; case 4 : net->cirseg->cp_x = net->start_x - delta_cp_x; net->cirseg->cp_y = net->start_y + delta_cp_y; break; default : GERB_COMPILE_ERROR(_("Strange quadrant: %d"), quadrant); } /* * Some good values */ d1x = fabs(net->start_x - net->cirseg->cp_x); d1y = fabs(net->start_y - net->cirseg->cp_y); d2x = fabs(net->stop_x - net->cirseg->cp_x); d2y = fabs(net->stop_y - net->cirseg->cp_y); alfa = atan2(d1y, d1x); beta = atan2(d2y, d2x); /* * Avoid divide by zero when sin(0) = 0 and cos(90) = 0 */ net->cirseg->width = alfa < beta ? 2 * (d1x / cos(alfa)) : 2 * (d2x / cos(beta)); net->cirseg->height = alfa > beta ? 2 * (d1y / sin(alfa)) : 2 * (d2y / sin(beta)); if (alfa < GERBV_PRECISION_ANGLE_RAD && beta < GERBV_PRECISION_ANGLE_RAD) { net->cirseg->height = 0; } switch (quadrant) { case 1 : net->cirseg->angle1 = RAD2DEG(alfa); net->cirseg->angle2 = RAD2DEG(beta); break; case 2 : net->cirseg->angle1 = 180.0 - RAD2DEG(alfa); net->cirseg->angle2 = 180.0 - RAD2DEG(beta); break; case 3 : net->cirseg->angle1 = 180.0 + RAD2DEG(alfa); net->cirseg->angle2 = 180.0 + RAD2DEG(beta); break; case 4 : net->cirseg->angle1 = 360.0 - RAD2DEG(alfa); net->cirseg->angle2 = 360.0 - RAD2DEG(beta); break; default : GERB_COMPILE_ERROR(_("Strange quadrant: %d"), quadrant); } if (net->cirseg->width < 0.0) GERB_COMPILE_WARNING(_("Negative width [%f] in quadrant %d [%f][%f]"), net->cirseg->width, quadrant, RAD2DEG(alfa), RAD2DEG(beta)); if (net->cirseg->height < 0.0) GERB_COMPILE_WARNING(_("Negative height [%f] in quadrant %d [%f][%f]"), net->cirseg->height, quadrant, RAD2DEG(alfa), RAD2DEG(beta)); return; } /* calc_cirseg_sq */ /* Multiquadrant circular interpolation */ static void calc_cirseg_mq(struct gerbv_net *net, int cw, double delta_cp_x, double delta_cp_y) { double d1x, d1y, d2x, d2y; double alfa, beta; net->cirseg->cp_x = net->start_x + delta_cp_x; net->cirseg->cp_y = net->start_y + delta_cp_y; /* * Some good values */ d1x = -delta_cp_x; d1y = -delta_cp_y; d2x = net->stop_x - net->cirseg->cp_x; d2y = net->stop_y - net->cirseg->cp_y; /* * It's possible for values to be calculated that smaller than epsilon, * but containing opposite signs. These values cause essentially a * "signed zero" effect, which makes atan2 results unpredictable. */ if (fabs(d1x) < DBL_EPSILON) d1x = 0; if (fabs(d1y) < DBL_EPSILON) d1y = 0; if (fabs(d2x) < DBL_EPSILON) d2x = 0; if (fabs(d2y) < DBL_EPSILON) d2y = 0; net->cirseg->width = hypot(delta_cp_x, delta_cp_y); net->cirseg->width *= 2.0; net->cirseg->height = net->cirseg->width; /* * Keep values in radians, convert to degrees only results */ alfa = atan2(d1y, d1x); beta = atan2(d2y, d2x); /* * Make sure it's always positive angles */ if (alfa < 0.0) { alfa += M_PI + M_PI; beta += M_PI + M_PI; } if (beta < 0.0) beta += M_PI + M_PI; /* * This is a sanity check for angles after the nature of atan2. * If cw we must make sure angle1-angle2 are always positive, * If ccw we must make sure angle2-angle1 are always negative. * We should really return one angle and the difference as GTK * uses them. But what the heck, it works for me. */ if (cw) { if (alfa - beta < DBL_EPSILON) beta -= M_PI + M_PI; } else { if (beta - alfa < DBL_EPSILON) beta += M_PI + M_PI; } net->cirseg->angle1 = RAD2DEG(alfa); net->cirseg->angle2 = RAD2DEG(beta); } /* Calculate circular interpolation bounding box */ static void calc_cirseg_bbox(const gerbv_cirseg_t *cirseg, double apert_size_x, double apert_size_y, gerbv_render_size_t *bbox) { gdouble x, y, ang1, ang2, step_pi_2; /* For bounding box calculation only half of aperture size is used */ apert_size_x /= 2; apert_size_y /= 2; ang1 = DEG2RAD(MIN(cirseg->angle1, cirseg->angle2)); ang2 = DEG2RAD(MAX(cirseg->angle1, cirseg->angle2)); /* Start arc point */ x = cirseg->cp_x + cirseg->width*cos(ang1)/2; y = cirseg->cp_y + cirseg->width*sin(ang1)/2; gerber_update_min_and_max(bbox, x, y, apert_size_x, apert_size_x, apert_size_y, apert_size_y); /* Middle arc points */ for (step_pi_2 = (ang1/M_PI_2 + 1)*M_PI_2; step_pi_2 < MIN(ang2, ang1 + 2*M_PI); step_pi_2 += M_PI_2) { x = cirseg->cp_x + cirseg->width*cos(step_pi_2)/2; y = cirseg->cp_y + cirseg->width*sin(step_pi_2)/2; gerber_update_min_and_max(bbox, x, y, apert_size_x, apert_size_x, apert_size_y, apert_size_y); } /* Stop arc point */ x = cirseg->cp_x + cirseg->width*cos(ang2)/2; y = cirseg->cp_y + cirseg->width*sin(ang2)/2; gerber_update_min_and_max(bbox, x, y, apert_size_x, apert_size_x, apert_size_y, apert_size_y); } static void gerber_update_any_running_knockout_measurements (gerbv_image_t *image) { if (knockoutMeasure) { knockoutLayer->knockout.lowerLeftX = knockoutLimitXmin; knockoutLayer->knockout.lowerLeftY = knockoutLimitYmin; knockoutLayer->knockout.width = knockoutLimitXmax - knockoutLimitXmin; knockoutLayer->knockout.height = knockoutLimitYmax - knockoutLimitYmin; knockoutMeasure = FALSE; } } static void gerber_calculate_final_justify_effects(gerbv_image_t *image) { gdouble translateA = 0.0, translateB = 0.0; if (image->info->imageJustifyTypeA != GERBV_JUSTIFY_NOJUSTIFY) { if (image->info->imageJustifyTypeA == GERBV_JUSTIFY_CENTERJUSTIFY) translateA = (image->info->max_x - image->info->min_x) / 2.0; else translateA = -image->info->min_x; } if (image->info->imageJustifyTypeB != GERBV_JUSTIFY_NOJUSTIFY) { if (image->info->imageJustifyTypeB == GERBV_JUSTIFY_CENTERJUSTIFY) translateB = (image->info->max_y - image->info->min_y) / 2.0; else translateB = -image->info->min_y; } /* update the min/max values so the autoscale function can correctly centered a justified image */ image->info->min_x += translateA+ image->info->imageJustifyOffsetA; image->info->max_x += translateA+ image->info->imageJustifyOffsetA; image->info->min_y += translateB+ image->info->imageJustifyOffsetB; image->info->max_y += translateB+ image->info->imageJustifyOffsetB; /* store the absolute offset for the justify so we can quickly offset the rendered picture during drawing */ image->info->imageJustifyOffsetActualA = translateA + image->info->imageJustifyOffsetA; image->info->imageJustifyOffsetActualB = translateB + image->info->imageJustifyOffsetB; } /* gerber_calculate_final_justify_effects */ void gerber_update_image_min_max (gerbv_render_size_t *boundingBox, double repeat_off_X, double repeat_off_Y, gerbv_image_t* image) { image->info->min_x = MIN(image->info->min_x, boundingBox->left); image->info->min_y = MIN(image->info->min_y, boundingBox->bottom); image->info->max_x = MAX(image->info->max_x, boundingBox->right + repeat_off_X); image->info->max_y = MAX(image->info->max_y, boundingBox->top + repeat_off_Y); } void gerber_update_min_and_max(gerbv_render_size_t *boundingBox, gdouble x, gdouble y, gdouble apertureSizeX1, gdouble apertureSizeX2,gdouble apertureSizeY1, gdouble apertureSizeY2) { gdouble ourX1 = x - apertureSizeX1, ourY1 = y - apertureSizeY1; gdouble ourX2 = x + apertureSizeX2, ourY2 = y + apertureSizeY2; /* transform the point to the final rendered position, accounting for any scaling, offsets, mirroring, etc */ /* NOTE: we need to already add/subtract in the aperture size since the final rendering may be scaled */ cairo_matrix_transform_point (¤tMatrix, &ourX1, &ourY1); cairo_matrix_transform_point (¤tMatrix, &ourX2, &ourY2); /* check both points against the min/max, since depending on the rotation, mirroring, etc, either point could possibly be a min or max */ boundingBox->left = MIN(boundingBox->left, ourX1); boundingBox->left = MIN(boundingBox->left, ourX2); boundingBox->right = MAX(boundingBox->right, ourX1); boundingBox->right = MAX(boundingBox->right, ourX2); boundingBox->bottom = MIN(boundingBox->bottom, ourY1); boundingBox->bottom = MIN(boundingBox->bottom, ourY2); boundingBox->top = MAX(boundingBox->top, ourY1); boundingBox->top = MAX(boundingBox->top, ourY2); } /* gerber_update_min_and_max */ static gboolean add_trailing_zeros_if_omitted(int *coord, int omitted_num, gerbv_format_t *format) { if (format && format->omit_zeros == GERBV_OMIT_ZEROS_TRAILING && omitted_num > 0) { for (int i = 0; i < omitted_num; i++) *coord *= 10; return TRUE; } return FALSE; } /* add_trailing_zeros_if_omitted() */ /** Return Gerber D-code name by code number. */ const char *gerber_d_code_name(int d_code) { switch (d_code) { case 1: return N_("exposure on"); case 2: return N_("exposure off"); case 3: return N_("flash aperture"); default: return N_("unknown D-code"); } } /* gerber_d_code_name() */ /** Return Gerber G-code name by code number. */ const char *gerber_g_code_name(int g_code) { switch (g_code) { case 0: return N_("move"); case 1: return N_("1X linear interpolation"); case 2: return N_("CW interpolation"); case 3: return N_("CCW interpolation"); case 4: return N_("comment/ignore block"); case 10: return N_("10X linear interpolation"); case 11: return N_("0.1X linear interpolation"); case 12: return N_("0.01X linear interpolation"); case 36: return N_("poly fill on"); case 37: return N_("poly fill off"); case 54: return N_("tool prepare"); case 55: return N_("flash prepare"); case 70: return N_("units = inches"); case 71: return N_("units = mm"); case 74: return N_("disable 360 circ. interpolation"); case 75: return N_("enable 360 circ. interpolation"); case 90: return N_("absolute units"); case 91: return N_("incremental units"); default: return N_("unknown G-code"); } } /* gerber_g_code_name() */ /** Return Gerber M-code name by code number. */ const char *gerber_m_code_name(int m_code) { switch (m_code) { case 0: return N_("program stop (obsolete)"); case 1: return N_("optional stop (obsolete)"); case 2: return N_("end of file"); default: return N_("unknown M-code"); } } /* gerber_m_code_name() */ gerbv-2.7.0/src/project.h0000644000175000017500000000374313421555714015131 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * Copyright (C) 2008 Dan McMahill * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file project.h \brief Header info for loading and saving project files. \ingroup gerbv */ #ifndef PROJECT_H #define PROJECT_H typedef struct project_list_t { int layerno; char *filename; int rgb[3]; int alpha; char inverted; double translate_x; double translate_y; double rotation; double scale_x; double scale_y; char mirror_x; char mirror_y; char is_pnp; char visible; gerbv_HID_Attribute *attr_list; int n_attr; struct project_list_t *next; } project_list_t; enum conv_type { MINGW_UNIX = 0, UNIX_MINGW = 1 }; int project_is_gerbv_project(const char *filename, gboolean *ret); /* * Reads a project from a file and returns a linked list describing the project */ project_list_t *read_project_file(char const* filename); /* Writes a description of a project to a file * that can be parsed by read_project above */ int write_project_file(gerbv_project_t *gerbvProject, char const* filename, project_list_t *project); void project_destroy_project_list (project_list_t *projectList); #endif /* PROJECT_H */ gerbv-2.7.0/src/libgerbv.pc.in0000644000175000017500000000043113421555714016026 0ustar carstencarstenprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ pkgincludedir=@includedir@/@PACKAGE@-@VERSION@ Name: libgerbv Description: Core library for gerbv Requires: glib-2.0 gtk+-2.0 Version: @VERSION@ Libs: -L${libdir} -lgerbv Cflags: -I${pkgincludedir} gerbv-2.7.0/src/render.c0000644000175000017500000005546313421555714014743 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * * render.c -- this file is a part of gerbv. * * Copyright (C) 2007 Stuart Brorson (SDB@cloud9.net) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file render.c \brief Rendering support functions for gerbv \ingroup gerbv */ #include "gerbv.h" #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_LIBGEN_H # include /* dirname */ #endif #include #include "common.h" #include "main.h" #include "callbacks.h" #include "interface.h" #include "render.h" #include "selection.h" #ifdef WIN32 # include #elif QUARTZ # include #else # include #endif #include "draw.h" #define dprintf if(DEBUG) printf gerbv_render_info_t screenRenderInfo; /* ------------------------------------------------------ */ void render_zoom_display (gint zoomType, gdouble scaleFactor, gdouble mouseX, gdouble mouseY) { gdouble mouseCoordinateX = 0.0; gdouble mouseCoordinateY = 0.0; double oldWidth, oldHeight; oldWidth = screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX; oldHeight = screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY; if (zoomType == ZOOM_IN_CMOUSE || zoomType == ZOOM_OUT_CMOUSE) { /* calculate what user coordinate the mouse is pointing at */ mouseCoordinateX = mouseX / screenRenderInfo.scaleFactorX + screenRenderInfo.lowerLeftX; mouseCoordinateY = (screenRenderInfo.displayHeight - mouseY) / screenRenderInfo.scaleFactorY + screenRenderInfo.lowerLeftY; } switch(zoomType) { case ZOOM_IN : /* Zoom In */ case ZOOM_IN_CMOUSE : /* Zoom In Around Mouse Pointer */ screenRenderInfo.scaleFactorX = MIN((gdouble)GERBV_SCALE_MAX, (1 + 1/3.0)*screenRenderInfo.scaleFactorX); screenRenderInfo.scaleFactorY = screenRenderInfo.scaleFactorX; screenRenderInfo.lowerLeftX += (oldWidth - (screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX)) / 2.0; screenRenderInfo.lowerLeftY += (oldHeight - (screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY)) / 2.0; break; case ZOOM_OUT : /* Zoom Out */ case ZOOM_OUT_CMOUSE : /* Zoom Out Around Mouse Pointer */ screenRenderInfo.scaleFactorX = MAX((gdouble)GERBV_SCALE_MIN, (1 - 1/3.0)*screenRenderInfo.scaleFactorX); screenRenderInfo.scaleFactorY = screenRenderInfo.scaleFactorX; screenRenderInfo.lowerLeftX += (oldWidth - (screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX)) / 2.0; screenRenderInfo.lowerLeftY += (oldHeight - (screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY)) / 2.0; break; case ZOOM_FIT : /* Zoom Fit */ gerbv_render_zoom_to_fit_display (mainProject, &screenRenderInfo); break; case ZOOM_SET : /*explicit scale set by user */ screenRenderInfo.scaleFactorX = MIN((gdouble)GERBV_SCALE_MAX, scaleFactor); screenRenderInfo.scaleFactorY = screenRenderInfo.scaleFactorX; screenRenderInfo.lowerLeftX += (oldWidth - (screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX)) / 2.0; screenRenderInfo.lowerLeftY += (oldHeight - (screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY)) / 2.0; break; default : GERB_MESSAGE(_("Illegal zoom direction %d"), zoomType); } if (zoomType == ZOOM_IN_CMOUSE || zoomType == ZOOM_OUT_CMOUSE) { /* make sure the mouse is still pointing at the point calculated earlier */ screenRenderInfo.lowerLeftX = mouseCoordinateX - mouseX / screenRenderInfo.scaleFactorX; screenRenderInfo.lowerLeftY = mouseCoordinateY - (screenRenderInfo.displayHeight - mouseY) / screenRenderInfo.scaleFactorY; } render_refresh_rendered_image_on_screen(); return; } /* --------------------------------------------------------- */ /** Will determine the outline of the zoomed regions. * In case region to be zoomed is too small (which correspondes * e.g. to a double click) it is interpreted as a right-click * and will be used to identify a part from the CURRENT selection, * which is drawn on screen*/ void render_calculate_zoom_from_outline(GtkWidget *widget, GdkEventButton *event) { int x1, y1, x2, y2, dx, dy; /* Zoom outline (UR and LL corners) */ double centerPointX, centerPointY; int half_x, half_y; /* cache for half window dimensions */ x1 = MIN((gdouble)screen.start_x, event->x); y1 = MIN((gdouble)screen.start_y, event->y); x2 = MAX((gdouble)screen.start_x, event->x); y2 = MAX((gdouble)screen.start_y, event->y); dx = x2-x1; dy = y2-y1; if ((dx >= 4) && (dy >= 4)) { if (screen.centered_outline_zoom) { /* Centered outline mode */ x1 = screen.start_x - dx; y1 = screen.start_y - dy; dx *= 2; dy *= 2; } half_x = (x1+x2)/2; half_y = (y1+y2)/2; centerPointX = half_x/screenRenderInfo.scaleFactorX + screenRenderInfo.lowerLeftX; centerPointY = (screenRenderInfo.displayHeight - half_y)/screenRenderInfo.scaleFactorY + screenRenderInfo.lowerLeftY; screenRenderInfo.scaleFactorX *= MIN((double)screenRenderInfo.displayWidth / dx, (double)screenRenderInfo.displayHeight / dy); screenRenderInfo.scaleFactorX = MIN((gdouble)GERBV_SCALE_MAX, screenRenderInfo.scaleFactorX); screenRenderInfo.scaleFactorY = screenRenderInfo.scaleFactorX; screenRenderInfo.lowerLeftX = centerPointX - (screenRenderInfo.displayWidth / 2.0 / screenRenderInfo.scaleFactorX); screenRenderInfo.lowerLeftY = centerPointY - (screenRenderInfo.displayHeight / 2.0 / screenRenderInfo.scaleFactorY); } render_refresh_rendered_image_on_screen(); } /* ------------------------------------------------------ */ void render_draw_selection_box_outline(void) { GdkGC *gc; GdkGCValues values; GdkGCValuesMask values_mask; gint x1, y1, x2, y2, dx, dy; memset(&values, 0, sizeof(values)); values.function = GDK_XOR; if (!screen.zoom_outline_color.pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), &screen.zoom_outline_color, FALSE, TRUE); values.foreground = screen.zoom_outline_color; values_mask = GDK_GC_FUNCTION | GDK_GC_FOREGROUND; gc = gdk_gc_new_with_values(screen.drawing_area->window, &values, values_mask); x1 = MIN(screen.start_x, screen.last_x); y1 = MIN(screen.start_y, screen.last_y); x2 = MAX(screen.start_x, screen.last_x); y2 = MAX(screen.start_y, screen.last_y); dx = x2-x1; dy = y2-y1; gdk_draw_rectangle(screen.drawing_area->window, gc, FALSE, x1, y1, dx, dy); gdk_gc_unref(gc); } /* --------------------------------------------------------- */ void render_draw_zoom_outline(gboolean centered) { GdkGC *gc; GdkGCValues values; GdkGCValuesMask values_mask; gint x1, y1, x2, y2, dx, dy; memset(&values, 0, sizeof(values)); values.function = GDK_XOR; if (!screen.zoom_outline_color.pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), &screen.zoom_outline_color, FALSE, TRUE); values.foreground = screen.zoom_outline_color; values_mask = GDK_GC_FUNCTION | GDK_GC_FOREGROUND; gc = gdk_gc_new_with_values(screen.drawing_area->window, &values, values_mask); x1 = MIN(screen.start_x, screen.last_x); y1 = MIN(screen.start_y, screen.last_y); x2 = MAX(screen.start_x, screen.last_x); y2 = MAX(screen.start_y, screen.last_y); dx = x2-x1; dy = y2-y1; if (centered) { /* Centered outline mode */ x1 = screen.start_x - dx; y1 = screen.start_y - dy; dx *= 2; dy *= 2; x2 = x1+dx; y2 = y1+dy; } gdk_draw_rectangle(screen.drawing_area->window, gc, FALSE, x1, y1, dx, dy); gdk_gc_unref(gc); /* Draw actual zoom area in dashed lines */ memset(&values, 0, sizeof(values)); values.function = GDK_XOR; values.foreground = screen.zoom_outline_color; values.line_style = GDK_LINE_ON_OFF_DASH; values_mask = GDK_GC_FUNCTION | GDK_GC_FOREGROUND | GDK_GC_LINE_STYLE; gc = gdk_gc_new_with_values(screen.drawing_area->window, &values, values_mask); if ((dy == 0) || ((double)dx/dy > (double)screen.drawing_area->allocation.width/ screen.drawing_area->allocation.height)) { dy = dx * (double)screen.drawing_area->allocation.height/ screen.drawing_area->allocation.width; } else { dx = dy * (double)screen.drawing_area->allocation.width/ screen.drawing_area->allocation.height; } gdk_draw_rectangle(screen.drawing_area->window, gc, FALSE, (x1+x2-dx)/2, (y1+y2-dy)/2, dx, dy); gdk_gc_unref(gc); } /* ------------------------------------------------------ */ /* Transforms board coordinates to screen ones */ static void render_board2screen(gdouble *X, gdouble *Y, gdouble x, gdouble y) { *X = (x - screenRenderInfo.lowerLeftX) * screenRenderInfo.scaleFactorX; *Y = screenRenderInfo.displayHeight - (y - screenRenderInfo.lowerLeftY) * screenRenderInfo.scaleFactorY; } /* Trims the coordinates to avoid overflows in gdk_draw_line */ static void render_trim_point(gdouble *start_x, gdouble *start_y, gdouble last_x, gdouble last_y) { const gdouble max_coord = (1<<15) - 2;/* a value that causes no overflow and lies out of screen */ gdouble dx, dy; if (fabs (*start_x) < max_coord && fabs (*start_y) < max_coord) return; dx = last_x - *start_x; dy = last_y - *start_y; if (*start_x < -max_coord) { *start_x = -max_coord; if (last_x > -max_coord && fabs (dx) > 0.1) *start_y = last_y - (last_x + max_coord) / dx * dy; } if (*start_x > max_coord) { *start_x = max_coord; if (last_x < max_coord && fabs (dx) > 0.1) *start_y = last_y - (last_x - max_coord) / dx * dy; } dx = last_x - *start_x; dy = last_y - *start_y; if (*start_y < -max_coord) { *start_y = -max_coord; if (last_y > -max_coord && fabs (dy) > 0.1) *start_x = last_x - (last_y + max_coord) / dy * dx; } if (*start_y > max_coord) { *start_y = max_coord; if (last_y < max_coord && fabs (dy) > 0.1) *start_x = last_x - (last_y - max_coord) / dy * dx; } } /* ------------------------------------------------------ */ /** Draws/erases measure line */ void render_toggle_measure_line(void) { GdkGC *gc; GdkGCValues values; GdkGCValuesMask values_mask; gdouble start_x, start_y, last_x, last_y; memset(&values, 0, sizeof(values)); values.function = GDK_XOR; values.line_width = 6; if (!screen.zoom_outline_color.pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), &screen.zoom_outline_color, FALSE, TRUE); values.foreground = screen.zoom_outline_color; values_mask = GDK_GC_FUNCTION | GDK_GC_LINE_WIDTH | GDK_GC_FOREGROUND; gc = gdk_gc_new_with_values(screen.drawing_area->window, &values, values_mask); render_board2screen(&start_x, &start_y, screen.measure_start_x, screen.measure_start_y); render_board2screen(&last_x, &last_y, screen.measure_stop_x, screen.measure_stop_y); render_trim_point(&start_x, &start_y, last_x, last_y); render_trim_point(&last_x, &last_y, start_x, start_y); gdk_draw_line(screen.drawing_area->window, gc, start_x, start_y, last_x, last_y); gdk_gc_unref(gc); } /* toggle_measure_line */ /* ------------------------------------------------------ */ /** Displays a measured distance graphically on screen and in statusbar. */ void render_draw_measure_distance(void) { gdouble dx, dy; dx = fabs (screen.measure_start_x - screen.measure_stop_x); dy = fabs (screen.measure_start_y - screen.measure_stop_y); screen.measure_last_x = dx; screen.measure_last_y = dy; callbacks_update_statusbar_measured_distance (dx, dy); render_toggle_measure_line(); } /* ------------------------------------------------------ */ static void render_selection (void) { gerbv_selection_item_t sel_item; gerbv_fileinfo_t *file; gdouble pixel_width; cairo_t *cr; int i; guint j; if (selection_length (&screen.selectionInfo) == 0) return; if (screen.selectionRenderData) cairo_surface_destroy ( (cairo_surface_t *)screen.selectionRenderData); screen.selectionRenderData = (gpointer) cairo_surface_create_similar ( (cairo_surface_t *)screen.windowSurface, CAIRO_CONTENT_COLOR_ALPHA, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight); pixel_width = 1.0/MAX(screenRenderInfo.scaleFactorX, screenRenderInfo.scaleFactorY); for (i = mainProject->last_loaded; i >= 0; i--) { file = mainProject->file[i]; if (!file || (!mainProject->show_invisible_selection && !file->isVisible)) continue; for (j = 0; j < selection_length (&screen.selectionInfo); j++) { sel_item = selection_get_item_by_index ( &screen.selectionInfo, j); if (file->image != sel_item.image) continue; /* Have selected image(s) on this file, draw it */ cr = cairo_create(screen.selectionRenderData); gerbv_render_cairo_set_scale_and_translation(cr, &screenRenderInfo); cairo_set_source_rgba (cr, 1.0, 1.0, 1.0, 0.85); draw_image_to_cairo_target (cr, file->image, pixel_width, DRAW_SELECTIONS, &screen.selectionInfo, &screenRenderInfo, TRUE, file->transform, TRUE); cairo_destroy (cr); break; /* All done, go to next file */ } } } /* ------------------------------------------------------ */ void render_refresh_rendered_image_on_screen (void) { GdkCursor *cursor; dprintf("----> Entering redraw_pixmap...\n"); cursor = gdk_cursor_new(GDK_WATCH); gdk_window_set_cursor(GDK_WINDOW(screen.drawing_area->window), cursor); gdk_cursor_destroy(cursor); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR){ if (screen.pixmap) gdk_pixmap_unref(screen.pixmap); screen.pixmap = gdk_pixmap_new(screen.drawing_area->window, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight, -1); gerbv_render_to_pixmap_using_gdk (mainProject, screen.pixmap, &screenRenderInfo, &screen.selectionInfo, &screen.selection_color); dprintf("<---- leaving redraw_pixmap.\n"); } else{ int i; dprintf(" .... Now try rendering the drawing using cairo .... \n"); /* * This now allows drawing several layers on top of each other. * Higher layer numbers have higher priority in the Z-order. */ for(i = mainProject->last_loaded; i >= 0; i--) { if (mainProject->file[i]) { cairo_t *cr; if (mainProject->file[i]->privateRenderData) cairo_surface_destroy ((cairo_surface_t *) mainProject->file[i]->privateRenderData); mainProject->file[i]->privateRenderData = (gpointer) cairo_surface_create_similar ((cairo_surface_t *)screen.windowSurface, CAIRO_CONTENT_COLOR_ALPHA, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight); cr= cairo_create(mainProject->file[i]->privateRenderData ); gerbv_render_layer_to_cairo_target (cr, mainProject->file[i], &screenRenderInfo); dprintf(" .... calling render_image_to_cairo_target on layer %d...\n", i); cairo_destroy (cr); } } render_recreate_composite_surface (); } /* remove watch cursor and switch back to normal cursor */ callbacks_switch_to_correct_cursor (); callbacks_force_expose_event_for_screen(); } /* ------------------------------------------------------ */ void render_remove_selected_objects_belonging_to_layer ( gerbv_selection_info_t *sel_info, gerbv_image_t *image) { guint i; for (i = 0; i < selection_length (sel_info);) { gerbv_selection_item_t sItem = selection_get_item_by_index (sel_info, i); if (image == (gerbv_image_t *) sItem.image) selection_clear_item_by_index (sel_info, i); else i++; } } /* ------------------------------------------------------ */ gint render_create_cairo_buffer_surface () { if (screen.bufferSurface) { cairo_surface_destroy (screen.bufferSurface); screen.bufferSurface = NULL; } if (!screen.windowSurface) return 0; screen.bufferSurface= cairo_surface_create_similar ((cairo_surface_t *)screen.windowSurface, CAIRO_CONTENT_COLOR, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight); return 1; } /* ------------------------------------------------------ */ static void render_find_selected_objects_and_refresh_display (gint activeFileIndex, enum selection_action action) { enum draw_mode mode = FIND_SELECTIONS; /* clear the old selection array if desired */ if ((action == SELECTION_REPLACE) && (selection_length (&screen.selectionInfo) != 0)) selection_clear (&screen.selectionInfo); if (action == SELECTION_TOGGLE) mode = FIND_SELECTIONS_TOGGLE; /* make sure we have a bufferSurface...if we start up in FAST mode, we may not have one yet, but we need it for selections */ if (!render_create_cairo_buffer_surface ()) return; /* call draw_image... passing the FILL_SELECTION mode to just search for nets which match the selection, and fill the selection buffer with them */ cairo_t *cr = cairo_create (screen.bufferSurface); gerbv_render_cairo_set_scale_and_translation (cr, &screenRenderInfo); draw_image_to_cairo_target (cr, mainProject->file[activeFileIndex]->image, 1.0/MAX (screenRenderInfo.scaleFactorX, screenRenderInfo.scaleFactorY), mode, &screen.selectionInfo, &screenRenderInfo, TRUE, mainProject->file[activeFileIndex]->transform, TRUE); cairo_destroy (cr); /* re-render the selection buffer layer */ if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen (); } else { render_recreate_composite_surface (); callbacks_force_expose_event_for_screen (); } } /* ------------------------------------------------------ */ void render_fill_selection_buffer_from_mouse_click (gint mouseX, gint mouseY, gint activeFileIndex, enum selection_action action) { screen.selectionInfo.lowerLeftX = mouseX; screen.selectionInfo.lowerLeftY = mouseY; /* no need to populate the upperright coordinates for a point_click */ screen.selectionInfo.type = GERBV_SELECTION_POINT_CLICK; render_find_selected_objects_and_refresh_display ( activeFileIndex, action); } /* ------------------------------------------------------ */ void render_fill_selection_buffer_from_mouse_drag (gint corner1X, gint corner1Y, gint corner2X, gint corner2Y, gint activeFileIndex, enum selection_action action) { /* figure out the lower left corner of the box */ screen.selectionInfo.lowerLeftX = MIN(corner1X, corner2X); screen.selectionInfo.lowerLeftY = MIN(corner1Y, corner2Y); /* figure out the upper right corner of the box */ screen.selectionInfo.upperRightX = MAX(corner1X, corner2X); screen.selectionInfo.upperRightY = MAX(corner1Y, corner2Y); screen.selectionInfo.type = GERBV_SELECTION_DRAG_BOX; render_find_selected_objects_and_refresh_display ( activeFileIndex, action); } /* ------------------------------------------------------ */ void render_recreate_composite_surface () { gint i; if (!render_create_cairo_buffer_surface()) return; cairo_t *cr= cairo_create(screen.bufferSurface); /* fill the background with the appropriate color */ cairo_set_source_rgba (cr, (double) mainProject->background.red/G_MAXUINT16, (double) mainProject->background.green/G_MAXUINT16, (double) mainProject->background.blue/G_MAXUINT16, 1); cairo_paint (cr); for(i = mainProject->last_loaded; i >= 0; i--) { if (mainProject->file[i] && mainProject->file[i]->isVisible) { cairo_set_source_surface (cr, (cairo_surface_t *) mainProject->file[i]->privateRenderData, 0, 0); /* ignore alpha if we are in high-speed render mode */ if (((double) mainProject->file[i]->alpha < 65535)&&(screenRenderInfo.renderType != GERBV_RENDER_TYPE_GDK_XOR)) { cairo_paint_with_alpha(cr,(double) mainProject->file[i]->alpha/G_MAXUINT16); } else { cairo_paint (cr); } } } /* render the selection layer at the end */ if (selection_length (&screen.selectionInfo) != 0) { render_selection (); cairo_set_source_surface (cr, (cairo_surface_t *) screen.selectionRenderData, 0, 0); cairo_paint_with_alpha (cr,1.0); } cairo_destroy (cr); } /* ------------------------------------------------------ */ void render_project_to_cairo_target (cairo_t *cr) { /* fill the background with the appropriate color */ cairo_set_source_rgba (cr, (double) mainProject->background.red/G_MAXUINT16, (double) mainProject->background.green/G_MAXUINT16, (double) mainProject->background.blue/G_MAXUINT16, 1); cairo_paint (cr); cairo_set_source_surface (cr, (cairo_surface_t *) screen.bufferSurface, 0 , 0); cairo_paint (cr); } void render_free_screen_resources (void) { if (screen.selectionRenderData) cairo_surface_destroy ((cairo_surface_t *) screen.selectionRenderData); if (screen.bufferSurface) cairo_surface_destroy ((cairo_surface_t *) screen.bufferSurface); if (screen.windowSurface) cairo_surface_destroy ((cairo_surface_t *) screen.windowSurface); if (screen.pixmap) gdk_pixmap_unref(screen.pixmap); } /* ------------------------------------------------------------------ */ /*! This fills out the project's Gerber statistics table. * It is called from within callbacks.c when the user * asks for a Gerber report. */ gerbv_stats_t * generate_gerber_analysis(void) { int i; gerbv_stats_t *stats; gerbv_stats_t *instats; /* Create new stats structure to hold report for whole project * (i.e. all layers together) */ stats = gerbv_stats_new(); /* Loop through open layers and compile statistics by accumulating reports from each layer */ for (i = 0; i <= mainProject->last_loaded; i++) { if (mainProject->file[i] && mainProject->file[i]->isVisible && (mainProject->file[i]->image->layertype == GERBV_LAYERTYPE_RS274X) ) { instats = mainProject->file[i]->image->gerbv_stats; gerbv_stats_add_layer(stats, instats, i+1); } } return stats; } /* ------------------------------------------------------------------ */ /*! This fills out the project's Drill statistics table. * It is called from within callbacks.c when the user * asks for a Drill report. */ gerbv_drill_stats_t * generate_drill_analysis(void) { int i; gerbv_drill_stats_t *stats; gerbv_drill_stats_t *instats; stats = gerbv_drill_stats_new(); /* Loop through open layers and compile statistics by accumulating reports from each layer */ for(i = mainProject->last_loaded; i >= 0; i--) { if (mainProject->file[i] && mainProject->file[i]->isVisible && (mainProject->file[i]->image->layertype == GERBV_LAYERTYPE_DRILL) ) { instats = mainProject->file[i]->image->drill_stats; /* add this batch of stats. Send the layer * index for error reporting */ gerbv_drill_stats_add_layer(stats, instats, i+1); } } return stats; } gerbv-2.7.0/src/Makefile.am0000644000175000017500000001303613421555714015342 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## gEDA - GNU Electronic Design Automation ## This file is a part of gerbv. ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA # main program bin_PROGRAMS = gerbv # shared library lib_LTLIBRARIES = libgerbv.la # public header file(s) pkgincludedir= $(includedir)/${PACKAGE}-${VERSION} pkginclude_HEADERS= gerbv.h # pkg-config data file pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libgerbv.pc libgerbv_la_SOURCES= \ amacro.c amacro.h \ common.h \ csv.c csv.h csv_defines.h \ draw-gdk.c draw-gdk.h \ draw.c draw.h \ drill.c drill.h \ drill_stats.c drill_stats.h \ export-drill.c \ export-geda-pcb.c \ export-image.c \ export-isel-drill.c \ export-rs274x.c \ gerb_file.c gerb_file.h \ gerb_image.c gerb_image.h \ gerb_stats.c gerb_stats.h \ gerber.c gerber.h \ gerbv.c gerbv.h \ gerbv_icon.h \ gettext.h \ pick-and-place.c pick-and-place.h \ selection.c selection.h \ tooltable.c if DXF libgerbv_la_SOURCES += export-dxf.cpp endif # libgerbv shared library version. A fairly strict rule should # be followed for when this version is updated. Those rules, # taken from the libtool manual, are as follows # # - Format is current:revision:age # # 1. Start with version information of `0:0:0' for each libtool library. # # 2. Update the version information only immediately before a public # release of your software. More frequent updates are unnecessary, # and only guarantee that the current interface number gets larger faster. # # 3. If the library source code has changed at all since the last update, # then increment revision (`c:r:a' becomes `c:r+1:a'). # # 4. If any interfaces have been added, removed, or changed since the last # update, increment current, and set revision to 0. # # 5. If any interfaces have been added since the last public release, then # increment age. # # 6. If any interfaces have been removed since the last public release, then # set age to 0. # libgerbv_la_LDFLAGS = -version-info 1:9:0 -no-undefined gerbv_SOURCES = \ attribute.c attribute.h \ callbacks.c callbacks.h \ common.h \ dynload.c dynload.h \ icons.h \ interface.c interface.h \ main.c main.h \ opdefines.h \ project.c project.h \ render.c render.h \ scheme-private.h scheme.c scheme.h \ table.c table.h \ lrealpath.c lrealpath.h gerbv_LDADD = libgerbv.la gerbv_DEPENDENCIES = libgerbv.la # If we are building on win32, then compile in some icons for the # desktop and application toolbar if WIN32 gerbv_icon.o : gerbv_icon.ico $(srcdir)/gerbv.rc $(WINDRES) $(srcdir)/gerbv.rc $@ gerbv_icon.ico: $(top_srcdir)/desktop/gerbv_icon.ico cp $(top_srcdir)/desktop/gerbv_icon.ico $@ gerbv_LDADD+= gerbv_icon.o gerbv_DEPENDENCIES+= gerbv_icon.o endif BUILT_SOURCES= authors.c bugs.c TXT2CL= sed -e 's;%;%%;g' -e 's;\\;\\\\;g' -e 's;";\\";g' -e 's;^;N_(";g' -e 's;$$;"),;g' -e 's;N_("");"";g' authors.c: $(top_srcdir)/AUTHORS Makefile if test -f $@.tmp ; then rm -f $@.tmp ; fi awk -F: '/^[ \t]*#/ {next}; /^[ \t]*$$/ {next}; {print $$1}' $(top_srcdir)/AUTHORS | ${TXT2CL} > $@.tmp echo '/* Generated from AUTHORS file */' > $@ echo '/*! \file $@' >> $@ echo ' \brief Generated at build time authors list.' >> $@ echo ' \ingroup gerbv' >> $@ echo ' */' >> $@ num=`wc -l $@.tmp | awk '{print $$1 + 1}'` && \ echo "const gchar * authors_string_array[$$num] = {" >> $@ cat $@.tmp >> $@ rm -f $@.tmp echo 'NULL};' >> $@ bugs.c: $(top_srcdir)/BUGS Makefile echo '/* Generated from BUGS file */' > $@ echo '/*! \file $@' >> $@ echo ' \brief Generated at build time bugs list.' >> $@ echo ' \ingroup gerbv' >> $@ echo ' */' >> $@ num=`wc -l $(top_srcdir)/BUGS | awk '{print $$1 + 1}'` && \ echo "const gchar * bugs_string_array[$$num] = {" >> $@ ${TXT2CL} $(top_srcdir)/BUGS >> $@ echo 'NULL};' >> $@ CLEANFILES= authors.c bugs.c ## authors.c and bugs.c are both built sources, however they are a bit problematic ## because of i18n. Certain built targets will try to update the po files but those ## rules may not cause authors.c and bugs.c to be built. Work around this by ## putting them in the distfile. They shouldn't change anyway. EXTRA_DIST= authors.c bugs.c gerbv.rc libgerbv.pc.in run_gerbv.in SCMSUBDIR = scheme scmdatadir = $(pkgdatadir)/${SCMSUBDIR}/ dist_scmdata_DATA = init.scm AM_CFLAGS= -DBACKEND_DIR='"$(scmdatadir)"' -DSCMSUBDIR='"$(SCMSUBDIR)"' all-local: run_gerbv # create wrapper script that lets you test gerbv prior to installation run_gerbv: $(srcdir)/run_gerbv.in Makefile sed \ -e 's;@SRCDIR@;${abs_srcdir};g' \ -e 's;@BUILDDIR@;${abs_builddir};g' \ $(srcdir)/run_gerbv.in > $@ chmod 755 $@ localedir = @datadir@/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ DISTCLEANFILES = run_gerbv MOSTLYCLEANFILES = *~ MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in authors.c bugs.c gerbv-2.7.0/src/pick-and-place.c0000644000175000017500000006501313421555714016224 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file pick-and-place.c \brief PNP (pick-and-place) parsing functions \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include #include "gerber.h" #include "common.h" #include "csv.h" #include "pick-and-place.h" static gerbv_net_t *pnp_new_net(gerbv_net_t *net); static void pnp_reset_bbox (gerbv_net_t *net); static void pnp_init_net(gerbv_net_t *net, gerbv_image_t *image, const char *label, gerbv_aperture_state_t apert_state, gerbv_interpolation_t interpol); void gerb_transf_free(gerbv_transf_t *transf) { g_free(transf); } void gerb_transf_reset(gerbv_transf_t* transf) { memset(transf,0,sizeof(gerbv_transf_t)); transf->r_mat[0][0] = transf->r_mat[1][1] = 1.0; /*off-diagonals 0 diagonals 1 */ //transf->r_mat[1][0] = transf->r_mat[0][1] = 0.0; transf->scale = 1.0; //transf->offset[0] = transf->offset[1] = 0.0; } /* gerb_transf_reset */ gerbv_transf_t* gerb_transf_new(void) { gerbv_transf_t *transf; transf = g_new(gerbv_transf_t, 1); gerb_transf_reset(transf); return transf; } /* gerb_transf_new */ //!Rotation /*! append rotation to transformation. @param transf transformation to be modified @param angle in rad (counterclockwise rotation) */ void gerb_transf_rotate(gerbv_transf_t* transf, double angle) { double m[2][2]; double s = sin(angle), c = cos(angle); memcpy(m, transf->r_mat, sizeof(m)); transf->r_mat[0][0] = c * m[0][0] - s * m[1][0]; transf->r_mat[0][1] = c * m[0][1] - s * m[1][1]; transf->r_mat[1][0] = s * m[0][0] + c * m[1][0]; transf->r_mat[1][1] = s * m[0][1] + c * m[1][1]; // transf->offset[0] = transf->offset[1] = 0.0; CHECK ME } /* gerb_transf_rotate */ //!Translation /*! append translation to transformation. @param transf transformation to be modified @param shift_x translation in x direction @param shift_y translation in y direction */ void gerb_transf_shift(gerbv_transf_t* transf, double shift_x, double shift_y) { transf->offset[0] += shift_x; transf->offset[1] += shift_y; } /* gerb_transf_shift */ void gerb_transf_apply(double x, double y, gerbv_transf_t* transf, double *out_x, double *out_y) { // x += transf->offset[0]; // y += transf->offset[1]; *out_x = (x * transf->r_mat[0][0] + y * transf->r_mat[0][1]) * transf->scale; *out_y = (x * transf->r_mat[1][0] + y * transf->r_mat[1][1]) * transf->scale; *out_x += transf->offset[0]; *out_y += transf->offset[1]; } /* gerb_transf_apply */ void pick_and_place_reset_bounding_box (gerbv_net_t *net) { net->boundingBox.left = -HUGE_VAL; net->boundingBox.right = HUGE_VAL; net->boundingBox.bottom = -HUGE_VAL; net->boundingBox.top = HUGE_VAL; } /* Parses a string representing float number with a unit. * Default unit can be specified with def_unit. */ static double pick_and_place_get_float_unit(const char *str, const char *def_unit) { double x = 0.0; char unit_str[41] = {0,}; const char *unit = unit_str; /* float, optional space, optional unit mm,cm,in,mil */ sscanf(str, "%lf %40s", &x, unit_str); if (unit_str[0] == '\0') unit = def_unit; /* NOTE: in order of comparability, * i.e. "mm" before "m", as "m" will match "mm" */ if (strstr(unit, "mm")) { x /= 25.4; } else if (strstr(unit, "in")) { /* NOTE: "in" is without scaling. */ } else if (strstr(unit, "cmil")) { x /= 1e5; } else if (strstr(unit, "dmil")) { x /= 1e4; } else if (strstr(unit, "mil")) { x /= 1e3; } else if (strstr(unit, "km")) { x /= 25.4/1e6; } else if (strstr(unit, "dm")) { x /= 25.4/100; } else if (strstr(unit, "cm")) { x /= 25.4/10; } else if (strstr(unit, "um")) { x /= 25.4*1e3; } else if (strstr(unit, "nm")) { x /= 25.4*1e6; } else if (strstr(unit, "m")) { x /= 25.4/1e3; } else { /* default to "mil" */ x /= 1e3; } return x; } /* pick_and_place_get_float_unit */ /** search a string for a delimiter. Must occur at least n times. */ int pick_and_place_screen_for_delimiter(char *str, int n) { char *ptr; char delimiter[4] = "|,;:"; int counter[4]; int idx, idx_max = 0; memset(counter, 0, sizeof(counter)); for(ptr = str; *ptr; ptr++) { switch(*ptr) { case '|': idx = 0; break; case ',': idx = 1; break; case ';': idx = 2; break; case ':': idx = 3; break; default: continue; break; } counter[idx]++; if(counter[idx] > counter[idx_max]) { idx_max = idx; } } if (counter[idx_max] > n) { return (unsigned char) delimiter[idx_max]; } else { return -1; } } /* pick_and_place_screen_for_delimiter */ /**Parses the PNP data. two lists are filled with the row data.\n One for the scrollable list in the search and select parts interface, the other one a mere two columned list, which drives the autocompletion when entering a search.\n It also tries to determine the shape of a part and sets pnp_state->shape accordingly which will be used when drawing the selections as an overlay on screen. @return the initial node of the pnp_state netlist */ GArray * pick_and_place_parse_file(gerb_file_t *fd) { PnpPartData pnpPartData; int lineCounter = 0, parsedLines = 0; int ret; char *row[12]; char buf[MAXL+2], buf0[MAXL+2]; char def_unit[41] = {0,}; double tmp_x, tmp_y; gerbv_transf_t *tr_rot = gerb_transf_new(); GArray *pnpParseDataArray = g_array_new (FALSE, FALSE, sizeof(PnpPartData)); gboolean foundValidDataRow = FALSE; /* Unit declaration for "PcbXY Version 1.0" files as exported by pcb */ const char *def_unit_prefix = "# X,Y in "; /* * many locales redefine "." as "," and so on, so sscanf has problems when * reading Pick and Place files using %f format */ setlocale(LC_NUMERIC, "C" ); while ( fgets(buf, MAXL, fd->fd) != NULL ) { int len = strlen(buf)-1; int i_length = 0, i_width = 0; lineCounter += 1; /*next line*/ if(lineCounter < 2) { /* * TODO in principle column names could be read and interpreted * but we skip the first line with names of columns for this time */ continue; } if(len >= 0 && buf[len] == '\n') { buf[len--] = 0; } if(len >= 0 && buf[len] == '\r') { buf[len--] = 0; } if (0 == strncmp(buf, def_unit_prefix, strlen(def_unit_prefix))) { sscanf(&buf[strlen(def_unit_prefix)], "%40s.", def_unit); } if (len <= 11) { //lets check a minimum length of 11 continue; } if ((len > 0) && (buf[0] == '%')) { continue; } /* Abort if we see a G54 */ if ((len > 4) && (strncmp(buf,"G54 ", 4) == 0)) { g_array_free (pnpParseDataArray, TRUE); return NULL; } /* abort if we see a G04 code */ if ((len > 4) && (strncmp(buf,"G04 ", 4) == 0)) { g_array_free (pnpParseDataArray, TRUE); return NULL; } /* this accepts file both with and without quotes */ /* if (!pnp_state) { /\* we are in first line *\/ */ /* if ((delimiter = pnp_screen_for_delimiter(buf, 8)) < 0) { */ /* continue; */ /* } */ /* } */ ret = csv_row_parse(buf, MAXL, buf0, MAXL, row, 11, ',', CSV_QUOTES); if (ret > 0) { foundValidDataRow = TRUE; } else { continue; } /* printf("direct:%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, ret %d\n", row[0], row[1], row[2],row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], ret); */ /* g_warning ("FFF %s %s\n",row[8],row[6]); */ if (row[0] && row[8]) { // here could be some better check for the syntax snprintf (pnpPartData.designator, sizeof(pnpPartData.designator)-1, "%s", row[0]); snprintf (pnpPartData.footprint, sizeof(pnpPartData.footprint)-1, "%s", row[1]); snprintf (pnpPartData.layer, sizeof(pnpPartData.layer)-1, "%s", row[8]); if (row[10] != NULL) { if ( ! g_utf8_validate(row[10], -1, NULL)) { gchar * str = g_convert(row[10], strlen(row[10]), "UTF-8", "ISO-8859-1", NULL, NULL, NULL); // I have not decided yet whether it is better to use always // "ISO-8859-1" or current locale. // str = g_locale_to_utf8(row[10], -1, NULL, NULL, NULL); snprintf (pnpPartData.comment, sizeof(pnpPartData.comment)-1, "%s", str); g_free(str); } else { snprintf (pnpPartData.comment, sizeof(pnpPartData.comment)-1, "%s", row[10]); } } /* gchar* g_convert(const gchar *str, gssize len, const gchar *to_codeset, const gchar *from_codeset, gsize *bytes_read, gsize *bytes_written, GError **error); */ pnpPartData.mid_x = pick_and_place_get_float_unit(row[2], def_unit); pnpPartData.mid_y = pick_and_place_get_float_unit(row[3], def_unit); pnpPartData.ref_x = pick_and_place_get_float_unit(row[4], def_unit); pnpPartData.ref_y = pick_and_place_get_float_unit(row[5], def_unit); pnpPartData.pad_x = pick_and_place_get_float_unit(row[6], def_unit); pnpPartData.pad_y = pick_and_place_get_float_unit(row[7], def_unit); /* This line causes segfault if we accidently starts parsing * a gerber file. It is crap crap crap */ if (row[9]) sscanf(row[9], "%lf", &pnpPartData.rotation); // no units, always deg } /* for now, default back to PCB program format * TODO: implement better checking for format */ else if (row[0] && row[1] && row[2] && row[3] && row[4] && row[5] && row[6]) { snprintf (pnpPartData.designator, sizeof(pnpPartData.designator)-1, "%s", row[0]); snprintf (pnpPartData.footprint, sizeof(pnpPartData.footprint)-1, "%s", row[1]); snprintf (pnpPartData.layer, sizeof(pnpPartData.layer)-1, "%s", row[6]); pnpPartData.mid_x = pick_and_place_get_float_unit(row[3], def_unit); pnpPartData.mid_y = pick_and_place_get_float_unit(row[4], def_unit); pnpPartData.pad_x = pnpPartData.mid_x + 0.03; pnpPartData.pad_y = pnpPartData.mid_y + 0.03; sscanf(row[5], "%lf", &pnpPartData.rotation); // no units, always deg /* check for coordinate sanity, and abort if it fails * Note: this is mainly to catch comment lines that get parsed */ if ((fabs(pnpPartData.mid_x) < 0.001)&&(fabs(pnpPartData.mid_y) < 0.001)) { continue; } } else { continue; } /* * now, try and figure out the actual footprint shape to draw, or just * guess something reasonable */ if(sscanf(pnpPartData.footprint, "%02d%02d", &i_length, &i_width) == 2) { // parse footprints like 0805 or 1206 pnpPartData.length = 0.01 * i_length; pnpPartData.width = 0.01 * i_width; pnpPartData.shape = PART_SHAPE_RECTANGLE; } else { gerb_transf_reset(tr_rot); gerb_transf_rotate(tr_rot, -DEG2RAD(pnpPartData.rotation));/* rotate it back to get dimensions */ gerb_transf_apply( pnpPartData.pad_x - pnpPartData.mid_x, pnpPartData.pad_y - pnpPartData.mid_y, tr_rot, &tmp_x, &tmp_y); if ((fabs(tmp_y) > fabs(tmp_x/100)) && (fabs(tmp_x) > fabs(tmp_y/100))){ pnpPartData.length = 2 * fabs(tmp_x);/* get dimensions*/ pnpPartData.width = 2 * fabs(tmp_y); pnpPartData.shape = PART_SHAPE_STD; } else { pnpPartData.length = 0.015; pnpPartData.width = 0.015; pnpPartData.shape = PART_SHAPE_UNKNOWN; } } g_array_append_val (pnpParseDataArray, pnpPartData); parsedLines += 1; } gerb_transf_free(tr_rot); /* fd->ptr=0; */ /* rewind(fd->fd); */ /* so a sanity check and see if this is a valid pnp file */ if ((((float) parsedLines / (float) lineCounter) < 0.3) || (!foundValidDataRow)) { /* this doesn't look like a valid PNP file, so return error */ g_array_free (pnpParseDataArray, TRUE); return NULL; } return pnpParseDataArray; } /* pick_and_place_parse_file */ /* ------------------------------------------------------------------ * pick_and_place_check_file_type * ------------------------------------------------------------------ * Description: Tries to parse the given file into a pick-and-place * data set. If it fails to read any good rows, then returns * FALSE, otherwise it returns TRUE. * Notes: * ------------------------------------------------------------------ */ gboolean pick_and_place_check_file_type(gerb_file_t *fd, gboolean *returnFoundBinary) { char *buf; int len = 0; int i; char *letter; gboolean found_binary = FALSE; gboolean found_G54 = FALSE; gboolean found_M0 = FALSE; gboolean found_M2 = FALSE; gboolean found_G2 = FALSE; gboolean found_ADD = FALSE; gboolean found_comma = FALSE; gboolean found_R = FALSE; gboolean found_U = FALSE; gboolean found_C = FALSE; gboolean found_boardside = FALSE; buf = malloc(MAXL); if (buf == NULL) GERB_FATAL_ERROR("malloc buf failed in %s()", __FUNCTION__); while (fgets(buf, MAXL, fd->fd) != NULL) { len = strlen(buf); /* First look through the file for indications of its type */ /* check for non-binary file */ for (i = 0; i < len; i++) { if (!isprint((int) buf[i]) && (buf[i] != '\r') && (buf[i] != '\n') && (buf[i] != '\t')) { found_binary = TRUE; } } if (g_strstr_len(buf, len, "G54")) { found_G54 = TRUE; } if (g_strstr_len(buf, len, "M00")) { found_M0 = TRUE; } if (g_strstr_len(buf, len, "M02")) { found_M2 = TRUE; } if (g_strstr_len(buf, len, "G02")) { found_G2 = TRUE; } if (g_strstr_len(buf, len, "ADD")) { found_ADD = TRUE; } if (g_strstr_len(buf, len, ",")) { found_comma = TRUE; } /* Semicolon can be separator too */ if (g_strstr_len(buf, len, ";")) { found_comma = TRUE; } /* Look for refdes -- This is dumb, but what else can we do? */ if ((letter = g_strstr_len(buf, len, "R")) != NULL) { if (isdigit((int) letter[1])) { /* grab char after R */ found_R = TRUE; } } if ((letter = g_strstr_len(buf, len, "C")) != NULL) { if (isdigit((int) letter[1])) { /* grab char after C */ found_C = TRUE; } } if ((letter = g_strstr_len(buf, len, "U")) != NULL) { if (isdigit((int) letter[1])) { /* grab char after U */ found_U = TRUE; } } /* Look for board side indicator since this is required * by many vendors */ if (g_strstr_len(buf, len, "top")) { found_boardside = TRUE; } if (g_strstr_len(buf, len, "Top")) { found_boardside = TRUE; } if (g_strstr_len(buf, len, "TOP")) { found_boardside = TRUE; } /* Also look for evidence of "Layer" in header.... */ if (g_strstr_len(buf, len, "ayer")) { found_boardside = TRUE; } if (g_strstr_len(buf, len, "AYER")) { found_boardside = TRUE; } } rewind(fd->fd); free(buf); /* Now form logical expression determining if this is a pick-place file */ *returnFoundBinary = found_binary; if (found_G54) return FALSE; if (found_M0) return FALSE; if (found_M2) return FALSE; if (found_G2) return FALSE; if (found_ADD) return FALSE; if (found_comma && (found_R || found_C || found_U) && found_boardside) return TRUE; return FALSE; } /* pick_and_place_check_file_type */ /* ------------------------------------------------------------------ * pick_and_place_convert_pnp_data_to_image * ------------------------------------------------------------------ * Description: Render a parsedPickAndPlaceData array into a gerb_image. * Notes: * ------------------------------------------------------------------ */ gerbv_image_t * pick_and_place_convert_pnp_data_to_image(GArray *parsedPickAndPlaceData, gint boardSide) { gerbv_image_t *image = NULL; gerbv_net_t *curr_net = NULL; int i; gerbv_transf_t *tr_rot = gerb_transf_new(); gerbv_drill_stats_t *stats; /* Eventually replace with pick_place_stats */ gboolean foundElement = FALSE; const double draw_width = 0.01; /* step through and make sure we have an element on the layer before we actually create a new image for it and fill it */ for (i = 0; i < parsedPickAndPlaceData->len; i++) { PnpPartData partData = g_array_index(parsedPickAndPlaceData, PnpPartData, i); if ((boardSide == 0) && !((partData.layer[0]=='b') || (partData.layer[0]=='B'))) continue; if ((boardSide == 1) && !((partData.layer[0]=='t') || (partData.layer[0]=='T'))) continue; foundElement = TRUE; } if (!foundElement) return NULL; image = gerbv_create_image(image, "Pick and Place (X-Y) File"); if (image == NULL) { GERB_FATAL_ERROR("malloc image failed in %s()", __FUNCTION__); } image->format = g_new0(gerbv_format_t, 1); if (image->format == NULL) { GERB_FATAL_ERROR("malloc format failed in %s()", __FUNCTION__); } /* Separate top/bot layer type is needed for reload purpose */ if (boardSide == 1) image->layertype = GERBV_LAYERTYPE_PICKANDPLACE_TOP; else image->layertype = GERBV_LAYERTYPE_PICKANDPLACE_BOT; stats = gerbv_drill_stats_new(); if (stats == NULL) GERB_FATAL_ERROR("malloc pick_place_stats failed in %s()", __FUNCTION__); image->drill_stats = stats; curr_net = image->netlist; curr_net->layer = image->layers; curr_net->state = image->states; pnp_reset_bbox (curr_net); image->info->min_x = HUGE_VAL; image->info->min_y = HUGE_VAL; image->info->max_x = -HUGE_VAL; image->info->max_y = -HUGE_VAL; image->aperture[0] = g_new0(gerbv_aperture_t, 1); assert(image->aperture[0] != NULL); image->aperture[0]->type = GERBV_APTYPE_CIRCLE; image->aperture[0]->amacro = NULL; image->aperture[0]->parameter[0] = draw_width; image->aperture[0]->nuf_parameters = 1; for (i = 0; i < parsedPickAndPlaceData->len; i++) { PnpPartData partData = g_array_index(parsedPickAndPlaceData, PnpPartData, i); float radius,labelOffset; curr_net = pnp_new_net(curr_net); curr_net->layer = image->layers; curr_net->state = image->states; if ((partData.rotation > 89) && (partData.rotation < 91)) labelOffset = fabs(partData.length/2); else if ((partData.rotation > 179) && (partData.rotation < 181)) labelOffset = fabs(partData.width/2); else if ((partData.rotation > 269) && (partData.rotation < 271)) labelOffset = fabs(partData.length/2); else if ((partData.rotation > -91) && (partData.rotation < -89)) labelOffset = fabs(partData.length/2); else if ((partData.rotation > -181) && (partData.rotation < -179)) labelOffset = fabs(partData.width/2); else if ((partData.rotation > -271) && (partData.rotation < -269)) labelOffset = fabs(partData.length/2); else labelOffset = fabs(partData.width/2); partData.rotation = DEG2RAD(partData.rotation); /* check if the entry is on the specified layer */ if ((boardSide == 0) && !((partData.layer[0]=='b') || (partData.layer[0]=='B'))) continue; if ((boardSide == 1) && !((partData.layer[0]=='t') || (partData.layer[0]=='T'))) continue; curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_OFF, GERBV_INTERPOLATION_LINEARx1); /* First net of PNP is just a label holder, so calculate the lower left * location to line up above the element */ curr_net->start_x = curr_net->stop_x = partData.mid_x; curr_net->start_y = curr_net->stop_y = partData.mid_y + labelOffset + draw_width; gerb_transf_reset(tr_rot); gerb_transf_shift(tr_rot, partData.mid_x, partData.mid_y); gerb_transf_rotate(tr_rot, -partData.rotation); if ((partData.shape == PART_SHAPE_RECTANGLE) || (partData.shape == PART_SHAPE_STD)) { // TODO: draw rectangle length x width taking into account rotation or pad x,y curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); gerb_transf_apply(partData.length/2, partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(-partData.length/2, partData.width/2, tr_rot, &curr_net->stop_x, &curr_net->stop_y); /* TODO: write unifying function */ curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); gerb_transf_apply(-partData.length/2, partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(-partData.length/2, -partData.width/2, tr_rot, &curr_net->stop_x, &curr_net->stop_y); curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); gerb_transf_apply(-partData.length/2, -partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(partData.length/2, -partData.width/2, tr_rot, &curr_net->stop_x, &curr_net->stop_y); curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); gerb_transf_apply(partData.length/2, -partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(partData.length/2, partData.width/2, tr_rot, &curr_net->stop_x, &curr_net->stop_y); curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); if (partData.shape == PART_SHAPE_RECTANGLE) { gerb_transf_apply(partData.length/4, -partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(partData.length/4, partData.width/2, tr_rot, &curr_net->stop_x, &curr_net->stop_y); } else { gerb_transf_apply(partData.length/4, partData.width/2, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(partData.length/4, partData.width/4, tr_rot, &curr_net->stop_x, &curr_net->stop_y); curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); gerb_transf_apply(partData.length/2, partData.width/4, tr_rot, &curr_net->start_x, &curr_net->start_y); gerb_transf_apply(partData.length/4, partData.width/4, tr_rot, &curr_net->stop_x, &curr_net->stop_y); } /* calculate a rough radius for the min/max screen calcs later */ radius = MAX(partData.length/2, partData.width/2); } else { gdouble tmp_x,tmp_y; pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_LINEARx1); curr_net->start_x = partData.mid_x; curr_net->start_y = partData.mid_y; gerb_transf_apply( partData.pad_x - partData.mid_x, partData.pad_y - partData.mid_y, tr_rot, &tmp_x, &tmp_y); curr_net->stop_x = tmp_x; curr_net->stop_y = tmp_y; curr_net = pnp_new_net(curr_net); pnp_init_net(curr_net, image, partData.designator, GERBV_APERTURE_STATE_ON, GERBV_INTERPOLATION_CW_CIRCULAR); curr_net->start_x = partData.mid_x; curr_net->start_y = partData.mid_y; curr_net->stop_x = partData.pad_x; curr_net->stop_y = partData.pad_y; curr_net->cirseg = g_new0 (gerbv_cirseg_t, 1); curr_net->cirseg->angle1 = 0.0; curr_net->cirseg->angle2 = 360.0; curr_net->cirseg->cp_x = partData.mid_x; curr_net->cirseg->cp_y = partData.mid_y; radius = hypot(partData.pad_x - partData.mid_x, partData.pad_y-partData.mid_y); if (radius < 0.001) radius = 0.1; curr_net->cirseg->width = 2*radius; /* fabs(pad_x-mid_x) */ curr_net->cirseg->height = 2*radius; } /* * update min and max numbers so the screen zoom-to-fit *function will work */ image->info->min_x = MIN(image->info->min_x, (partData.mid_x - radius - 0.02)); image->info->min_y = MIN(image->info->min_y, (partData.mid_y - radius - 0.02)); image->info->max_x = MAX(image->info->max_x, (partData.mid_x + radius + 0.02)); image->info->max_y = MAX(image->info->max_y, (partData.mid_y + radius + 0.02)); } curr_net->next = NULL; gerb_transf_free(tr_rot); return image; } /* pick_and_place_convert_pnp_data_to_image */ /* ------------------------------------------------------------------ * pick_and_place_parse_file_to_images * ------------------------------------------------------------------ * Description: Renders a pick and place file to a gerb_image. * If image pointer is not NULL, then corresponding image will not be * populated. * Notes: The file format should already be verified before calling * this function, since it does very little sanity checking itself. * ------------------------------------------------------------------ */ void pick_and_place_parse_file_to_images(gerb_file_t *fd, gerbv_image_t **topImage, gerbv_image_t **bottomImage) { GArray *parsedPickAndPlaceData = pick_and_place_parse_file (fd); if (parsedPickAndPlaceData != NULL) { /* Non NULL pointer is used as "not to reload" mark */ if (*bottomImage == NULL) *bottomImage = pick_and_place_convert_pnp_data_to_image(parsedPickAndPlaceData, 0); if (*topImage == NULL) *topImage = pick_and_place_convert_pnp_data_to_image(parsedPickAndPlaceData, 1); g_array_free (parsedPickAndPlaceData, TRUE); } } /* pick_and_place_parse_file_to_images */ static gerbv_net_t * pnp_new_net(gerbv_net_t *net) { gerbv_net_t *n; net->next = g_new0(gerbv_net_t, 1); n = net->next; assert(n != NULL); pnp_reset_bbox (n); return n; } static void pnp_reset_bbox (gerbv_net_t *net) { net->boundingBox.left = -HUGE_VAL; net->boundingBox.right = HUGE_VAL; net->boundingBox.bottom = -HUGE_VAL; net->boundingBox.top = HUGE_VAL; } static void pnp_init_net(gerbv_net_t *net, gerbv_image_t *image, const char *label, gerbv_aperture_state_t apert_state, gerbv_interpolation_t interpol) { net->aperture = 0; net->aperture_state = apert_state; net->interpolation = interpol; net->layer = image->layers; net->state = image->states; if (strlen(label) > 0) { net->label = g_string_new (label); } } gerbv-2.7.0/src/init.scm0000644000175000017500000004435513421555714014765 0ustar carstencarsten; Initialization file for TinySCHEME 1.34 ; Per R5RS, up to four deep compositions should be defined (define (caar x) (car (car x))) (define (cadr x) (car (cdr x))) (define (cdar x) (cdr (car x))) (define (cddr x) (cdr (cdr x))) (define (caaar x) (car (car (car x)))) (define (caadr x) (car (car (cdr x)))) (define (cadar x) (car (cdr (car x)))) (define (caddr x) (car (cdr (cdr x)))) (define (cdaar x) (cdr (car (car x)))) (define (cdadr x) (cdr (car (cdr x)))) (define (cddar x) (cdr (cdr (car x)))) (define (cdddr x) (cdr (cdr (cdr x)))) (define (caaaar x) (car (car (car (car x))))) (define (caaadr x) (car (car (car (cdr x))))) (define (caadar x) (car (car (cdr (car x))))) (define (caaddr x) (car (car (cdr (cdr x))))) (define (cadaar x) (car (cdr (car (car x))))) (define (cadadr x) (car (cdr (car (cdr x))))) (define (caddar x) (car (cdr (cdr (car x))))) (define (cadddr x) (car (cdr (cdr (cdr x))))) (define (cdaaar x) (cdr (car (car (car x))))) (define (cdaadr x) (cdr (car (car (cdr x))))) (define (cdadar x) (cdr (car (cdr (car x))))) (define (cdaddr x) (cdr (car (cdr (cdr x))))) (define (cddaar x) (cdr (cdr (car (car x))))) (define (cddadr x) (cdr (cdr (car (cdr x))))) (define (cdddar x) (cdr (cdr (cdr (car x))))) (define (cddddr x) (cdr (cdr (cdr (cdr x))))) (macro (unless form) `(if (not ,(cadr form)) (begin ,@(cddr form)))) (macro (when form) `(if ,(cadr form) (begin ,@(cddr form)))) ; DEFINE-MACRO Contributed by Andy Gaynor (macro (define-macro dform) (if (symbol? (cadr dform)) `(macro ,@(cdr dform)) (let ((form (gensym))) `(macro (,(caadr dform) ,form) (apply (lambda ,(cdadr dform) ,@(cddr dform)) (cdr ,form)))))) ; Utilities for math. Notice that inexact->exact is primitive, ; but exact->inexact is not. (define exact? integer?) (define (inexact? x) (and (real? x) (not (integer? x)))) (define (even? n) (= (remainder n 2) 0)) (define (odd? n) (not (= (remainder n 2) 0))) (define (zero? n) (= n 0)) (define (positive? n) (> n 0)) (define (negative? n) (< n 0)) (define complex? number?) (define rational? real?) (define (abs n) (if (>= n 0) n (- n))) (define (exact->inexact n) (* n 1.0)) (define (<> n1 n2) (not (= n1 n2))) (define (max . lst) (foldr (lambda (a b) (if (> a b) a b)) (car lst) (cdr lst))) (define (min . lst) (foldr (lambda (a b) (if (< a b) a b)) (car lst) (cdr lst))) (define (succ x) (+ x 1)) (define (pred x) (- x 1)) (define (gcd a b) (let ((aa (abs a)) (bb (abs b))) (if (= bb 0) aa (gcd bb (remainder aa bb))))) (define (lcm a b) (if (or (= a 0) (= b 0)) 0 (abs (* (quotient a (gcd a b)) b)))) (define call/cc call-with-current-continuation) (define (string . charlist) (list->string charlist)) (define (list->string charlist) (let* ((len (length charlist)) (newstr (make-string len)) (fill-string! (lambda (str i len charlist) (if (= i len) str (begin (string-set! str i (car charlist)) (fill-string! str (+ i 1) len (cdr charlist))))))) (fill-string! newstr 0 len charlist))) (define (string-fill! s e) (let ((n (string-length s))) (let loop ((i 0)) (if (= i n) s (begin (string-set! s i e) (loop (succ i))))))) (define (string->list s) (let loop ((n (pred (string-length s))) (l '())) (if (= n -1) l (loop (pred n) (cons (string-ref s n) l))))) (define (string-copy str) (string-append str)) (define (string->anyatom str pred) (let* ((a (string->atom str))) (if (pred a) a (error "string->xxx: not a xxx" a)))) (define (string->number str) (string->anyatom str number?)) (define (anyatom->string n pred) (if (pred n) (atom->string n) (error "xxx->string: not a xxx" n))) (define (number->string n) (anyatom->string n number?)) (define (char-cmp? cmp a b) (cmp (char->integer a) (char->integer b))) (define (char-ci-cmp? cmp a b) (cmp (char->integer (char-downcase a)) (char->integer (char-downcase b)))) (define (char=? a b) (char-cmp? = a b)) (define (char? a b) (char-cmp? > a b)) (define (char<=? a b) (char-cmp? <= a b)) (define (char>=? a b) (char-cmp? >= a b)) (define (char-ci=? a b) (char-ci-cmp? = a b)) (define (char-ci? a b) (char-ci-cmp? > a b)) (define (char-ci<=? a b) (char-ci-cmp? <= a b)) (define (char-ci>=? a b) (char-ci-cmp? >= a b)) ; Note the trick of returning (cmp x y) (define (string-cmp? chcmp cmp a b) (let ((na (string-length a)) (nb (string-length b))) (let loop ((i 0)) (cond ((= i na) (if (= i nb) (cmp 0 0) (cmp 0 1))) ((= i nb) (cmp 1 0)) ((chcmp = (string-ref a i) (string-ref b i)) (loop (succ i))) (else (chcmp cmp (string-ref a i) (string-ref b i))))))) (define (string=? a b) (string-cmp? char-cmp? = a b)) (define (string? a b) (string-cmp? char-cmp? > a b)) (define (string<=? a b) (string-cmp? char-cmp? <= a b)) (define (string>=? a b) (string-cmp? char-cmp? >= a b)) (define (string-ci=? a b) (string-cmp? char-ci-cmp? = a b)) (define (string-ci? a b) (string-cmp? char-ci-cmp? > a b)) (define (string-ci<=? a b) (string-cmp? char-ci-cmp? <= a b)) (define (string-ci>=? a b) (string-cmp? char-ci-cmp? >= a b)) (define (list . x) x) (define (foldr f x lst) (if (null? lst) x (foldr f (f x (car lst)) (cdr lst)))) (define (unzip1-with-cdr . lists) (unzip1-with-cdr-iterative lists '() '())) (define (unzip1-with-cdr-iterative lists cars cdrs) (if (null? lists) (cons cars cdrs) (let ((car1 (caar lists)) (cdr1 (cdar lists))) (unzip1-with-cdr-iterative (cdr lists) (append cars (list car1)) (append cdrs (list cdr1)))))) (define (map proc . lists) (if (null? lists) (apply proc) (if (null? (car lists)) '() (let* ((unz (apply unzip1-with-cdr lists)) (cars (car unz)) (cdrs (cdr unz))) (cons (apply proc cars) (apply map (cons proc cdrs))))))) (define (for-each proc . lists) (if (null? lists) (apply proc) (if (null? (car lists)) #t (let* ((unz (apply unzip1-with-cdr lists)) (cars (car unz)) (cdrs (cdr unz))) (apply proc cars) (apply map (cons proc cdrs)))))) (define (list-tail x k) (if (zero? k) x (list-tail (cdr x) (- k 1)))) (define (list-ref x k) (car (list-tail x k))) (define (last-pair x) (if (pair? (cdr x)) (last-pair (cdr x)) x)) (define (head stream) (car stream)) (define (tail stream) (force (cdr stream))) (define (vector-equal? x y) (and (vector? x) (vector? y) (= (vector-length x) (vector-length y)) (let ((n (vector-length x))) (let loop ((i 0)) (if (= i n) #t (and (equal? (vector-ref x i) (vector-ref y i)) (loop (succ i)))))))) (define (list->vector x) (apply vector x)) (define (vector-fill! v e) (let ((n (vector-length v))) (let loop ((i 0)) (if (= i n) v (begin (vector-set! v i e) (loop (succ i))))))) (define (vector->list v) (let loop ((n (pred (vector-length v))) (l '())) (if (= n -1) l (loop (pred n) (cons (vector-ref v n) l))))) ;; The following quasiquote macro is due to Eric S. Tiedemann. ;; Copyright 1988 by Eric S. Tiedemann; all rights reserved. ;; ;; Subsequently modified to handle vectors: D. Souflis (macro quasiquote (lambda (l) (define (mcons f l r) (if (and (pair? r) (eq? (car r) 'quote) (eq? (car (cdr r)) (cdr f)) (pair? l) (eq? (car l) 'quote) (eq? (car (cdr l)) (car f))) (if (or (procedure? f) (number? f) (string? f)) f (list 'quote f)) (if (eqv? l vector) (apply l (eval r)) (list 'cons l r) ))) (define (mappend f l r) (if (or (null? (cdr f)) (and (pair? r) (eq? (car r) 'quote) (eq? (car (cdr r)) '()))) l (list 'append l r))) (define (foo level form) (cond ((not (pair? form)) (if (or (procedure? form) (number? form) (string? form)) form (list 'quote form)) ) ((eq? 'quasiquote (car form)) (mcons form ''quasiquote (foo (+ level 1) (cdr form)))) (#t (if (zero? level) (cond ((eq? (car form) 'unquote) (car (cdr form))) ((eq? (car form) 'unquote-splicing) (error "Unquote-splicing wasn't in a list:" form)) ((and (pair? (car form)) (eq? (car (car form)) 'unquote-splicing)) (mappend form (car (cdr (car form))) (foo level (cdr form)))) (#t (mcons form (foo level (car form)) (foo level (cdr form))))) (cond ((eq? (car form) 'unquote) (mcons form ''unquote (foo (- level 1) (cdr form)))) ((eq? (car form) 'unquote-splicing) (mcons form ''unquote-splicing (foo (- level 1) (cdr form)))) (#t (mcons form (foo level (car form)) (foo level (cdr form))))))))) (foo 0 (car (cdr l))))) ;;;;; atom? and equal? written by a.k ;;;; atom? (define (atom? x) (not (pair? x))) ;;;; equal? (define (equal? x y) (cond ((pair? x) (and (pair? y) (equal? (car x) (car y)) (equal? (cdr x) (cdr y)))) ((vector? x) (and (vector? y) (vector-equal? x y))) ((string? x) (and (string? y) (string=? x y))) (else (eqv? x y)))) ;;;; (do ((var init inc) ...) (endtest result ...) body ...) ;; (macro do (lambda (do-macro) (apply (lambda (do vars endtest . body) (let ((do-loop (gensym))) `(letrec ((,do-loop (lambda ,(map (lambda (x) (if (pair? x) (car x) x)) `,vars) (if ,(car endtest) (begin ,@(cdr endtest)) (begin ,@body (,do-loop ,@(map (lambda (x) (cond ((not (pair? x)) x) ((< (length x) 3) (car x)) (else (car (cdr (cdr x)))))) `,vars))))))) (,do-loop ,@(map (lambda (x) (if (and (pair? x) (cdr x)) (car (cdr x)) '())) `,vars))))) do-macro))) ;;;; generic-member (define (generic-member cmp obj lst) (cond ((null? lst) #f) ((cmp obj (car lst)) lst) (else (generic-member cmp obj (cdr lst))))) (define (memq obj lst) (generic-member eq? obj lst)) (define (memv obj lst) (generic-member eqv? obj lst)) (define (member obj lst) (generic-member equal? obj lst)) ;;;; generic-assoc (define (generic-assoc cmp obj alst) (cond ((null? alst) #f) ((cmp obj (caar alst)) (car alst)) (else (generic-assoc cmp obj (cdr alst))))) (define (assq obj alst) (generic-assoc eq? obj alst)) (define (assv obj alst) (generic-assoc eqv? obj alst)) (define (assoc obj alst) (generic-assoc equal? obj alst)) (define (acons x y z) (cons (cons x y) z)) ;;;; Utility to ease macro creation (define (macro-expand form) ((eval (get-closure-code (eval (car form)))) form)) ;;;; Handy for imperative programs ;;;; Used as: (define-with-return (foo x y) .... (return z) ...) (macro (define-with-return form) `(define ,(cadr form) (call/cc (lambda (return) ,@(cddr form))))) ;;;; Simple exception handling ; ; Exceptions are caught as follows: ; ; (catch (do-something to-recover and-return meaningful-value) ; (if-something goes-wrong) ; (with-these calls)) ; ; "Catch" establishes a scope spanning multiple call-frames ; until another "catch" is encountered. ; ; Exceptions are thrown with: ; ; (throw "message") ; ; If used outside a (catch ...), reverts to (error "message) (define *handlers* (list)) (define (push-handler proc) (set! *handlers* (cons proc *handlers*))) (define (pop-handler) (let ((h (car *handlers*))) (set! *handlers* (cdr *handlers*)) h)) (define (more-handlers?) (pair? *handlers*)) (define (throw . x) (if (more-handlers?) (apply (pop-handler)) (apply error x))) (macro (catch form) (let ((label (gensym))) `(call/cc (lambda (exit) (push-handler (lambda () (exit ,(cadr form)))) (let ((,label (begin ,@(cddr form)))) (pop-handler) ,label))))) (define *error-hook* throw) ;;;;; Definition of MAKE-ENVIRONMENT, to be used with two-argument EVAL (macro (make-environment form) `(apply (lambda () ,@(cdr form) (current-environment)))) (define-macro (eval-polymorphic x . envl) (display envl) (let* ((env (if (null? envl) (current-environment) (eval (car envl)))) (xval (eval x env))) (if (closure? xval) (make-closure (get-closure-code xval) env) xval))) ; Redefine this if you install another package infrastructure ; Also redefine 'package' (define *colon-hook* eval) ;;;;; I/O (define (input-output-port? p) (and (input-port? p) (output-port? p))) (define (close-port p) (cond ((input-output-port? p) (close-input-port (close-output-port p))) ((input-port? p) (close-input-port p)) ((output-port? p) (close-output-port p)) (else (throw "Not a port" p)))) (define (call-with-input-file s p) (let ((inport (open-input-file s))) (if (eq? inport #f) #f (let ((res (p inport))) (close-input-port inport) res)))) (define (call-with-output-file s p) (let ((outport (open-output-file s))) (if (eq? outport #f) #f (let ((res (p outport))) (close-output-port outport) res)))) (define (with-input-from-file s p) (let ((inport (open-input-file s))) (if (eq? inport #f) #f (let ((prev-inport (current-input-port))) (set-input-port inport) (let ((res (p))) (close-input-port inport) (set-input-port prev-inport) res))))) (define (with-output-to-file s p) (let ((outport (open-output-file s))) (if (eq? outport #f) #f (let ((prev-outport (current-output-port))) (set-output-port outport) (let ((res (p))) (close-output-port outport) (set-output-port prev-outport) res))))) (define (with-input-output-from-to-files si so p) (let ((inport (open-input-file si)) (outport (open-input-file so))) (if (not (and inport outport)) (begin (close-input-port inport) (close-output-port outport) #f) (let ((prev-inport (current-input-port)) (prev-outport (current-output-port))) (set-input-port inport) (set-output-port outport) (let ((res (p))) (close-input-port inport) (close-output-port outport) (set-input-port prev-inport) (set-output-port prev-outport) res))))) ; Random number generator (maximum cycle) (define *seed* 1) (define (random-next) (let* ((a 16807) (m 2147483647) (q (quotient m a)) (r (modulo m a))) (set! *seed* (- (* a (- *seed* (* (quotient *seed* q) q))) (* (quotient *seed* q) r))) (if (< *seed* 0) (set! *seed* (+ *seed* m))) *seed*)) ;; SRFI-0 ;; COND-EXPAND ;; Implemented as a macro (define *features* '(srfi-0)) (define-macro (cond-expand . cond-action-list) (cond-expand-runtime cond-action-list)) (define (cond-expand-runtime cond-action-list) (if (null? cond-action-list) #t (if (cond-eval (caar cond-action-list)) `(begin ,@(cdar cond-action-list)) (cond-expand-runtime (cdr cond-action-list))))) (define (cond-eval-and cond-list) (foldr (lambda (x y) (and (cond-eval x) (cond-eval y))) #t cond-list)) (define (cond-eval-or cond-list) (foldr (lambda (x y) (or (cond-eval x) (cond-eval y))) #f cond-list)) (define (cond-eval condition) (cond ((symbol? condition) (if (member condition *features*) #t #f)) ((eq? condition #t) #t) ((eq? condition #f) #f) (else (case (car condition) ((and) (cond-eval-and (cdr condition))) ((or) (cond-eval-or (cdr condition))) ((not) (if (not (null? (cddr condition))) (error "cond-expand : 'not' takes 1 argument") (not (cond-eval (cadr condition))))) (else (error "cond-expand : unknown operator" (car condition))))))) (gc-verbose #f) gerbv-2.7.0/src/icons.h0000644000175000017500000006745513421555714014610 0ustar carstencarsten/** \file icons.h \brief XPM info for the toolbar button icons \ingroup gerbv */ /* ------------------- Zoom tool icon -------------------------- */ /* GdkPixbuf RGBA C-Source image dump */ #ifdef __SUNPRO_C #pragma align 4 (lzoom) #endif #ifdef __GNUC__ static const guint8 lzoom[] __attribute__ ((__aligned__ (4))) = #else static const guint8 lzoom[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (2304) */ "\0\0\11\30" /* pixdata_type (0x1010002) */ "\1\1\0\2" /* rowstride (96) */ "\0\0\0`" /* width (24) */ "\0\0\0\30" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0IIIN444\243---\335))" ")\373&&&\373&&&\335&&&\243555N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0]]]2...\300000\377sss\377\241\241\241\377\264\264\264\377\262\262" "\262\377\235\235\235\377ggg\377\40\40\40\377\34\34\34\3007772\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0@@@N'''\373aaa\377\264\264\264\377\312\312\312\377\317\317" "\317\377\320\320\320\377\316\316\316\377\311\311\311\377\301\301\301" "\377\247\247\247\377LLL\377\23\23\23\373###N\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377OOO2\"\"\"\373uu" "u\377\312\312\312\377\323\323\323\377\333\333\333\377\347\347\347\377" "\357\357\357\377\363\363\363\377\361\361\361\377\345\345\345\377\322" "\322\322\377\274\274\274\377^^^\377\20\20\20\373$$$2\0\0\0\0\0\0\0\377" "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377!!!\300888\377" "\314\314\314\377\205\205\205\377\345\345\345\377\227\227\227\377\372" "\372\372\377\233\233\233\377\372\372\372\377\231\231\231\377\365\365" "\365\377\224\224\224\377\341\341\341\377xxx\377CCC\377\6\6\6\377\0\0" "\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""000N\37\37" "\37\377\271\271\271\377\326\326\326\377\347\347\347\377\371\371\371\377" "\373\373\373\377\375\375\375\377\375\375\375\377\374\374\374\377\373" "\373\373\377\370\370\370\377\362\362\362\377\354\354\354\377\344\344" "\344\377\253\253\253\377\16\16\16\377\22\22\22N\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\21\21\21\377mmm\377\322\322\322\377\341\341" "\341\377\365\365\365\377\372\372\372\377\375\375\375\377\376\376\376" "\377\376\376\376\377\375\375\375\377\374\374\374\377\371\371\371\377" "\365\365\365\377\356\356\356\377\346\346\346\377\333\333\333\377WWW\377" "\11\11\11\243\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\24\24" "\24\335\250\250\250\377\330\330\330\377\356\356\356\377\366\366\366\377" "\371\371\371\377\374\374\374\377\376\376\376\377\376\376\376\377\375" "\375\375\377\373\373\373\377\370\370\370\377\364\364\364\377\356\356" "\356\377\346\346\346\377\334\334\334\377\233\233\233\377\6\6\6\335\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\20\20\377\305\305\305" "\377\337\337\337\377\357\357\357\377\365\365\365\377\370\370\370\377" "\373\373\373\377\375\375\375\377\375\375\375\377\374\374\374\377\372" "\372\372\377\367\367\367\377\362\362\362\377\355\355\355\377\345\345" "\345\377\333\333\333\377\277\277\277\377\6\6\6\373\0\0\0\377\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\16\16\373\306\306\306\377\343\343" "\343\377\354\354\354\377\362\362\362\377\365\365\365\377\370\370\370" "\377\372\372\372\377\372\372\372\377\372\372\372\377\367\367\367\377" "\364\364\364\377\360\360\360\377\352\352\352\377\340\340\340\377\327" "\327\327\377\272\272\272\377\5\5\5\373\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\11\11\11\377\245\245\245\377\341\341\341\377\347\347" "\347\377\355\355\355\377\361\361\361\377\364\364\364\377\366\366\366" "\377\366\366\366\377\365\365\365\377\363\363\363\377\357\357\357\377" "\354\354\354\377\344\344\344\377\333\333\333\377\321\321\321\377\223" "\223\223\377\2\2\2\335\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\12\12\12\243___\377\331\331\331\377\341\341\341\377\346\346\346" "\377\353\353\353\377\356\356\356\377\357\357\357\377\357\357\357\377" "\356\356\356\377\355\355\355\377\351\351\351\377\344\344\344\377\333" "\333\333\377\324\324\324\377\312\312\312\377LLL\377\0\0\0\243\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\3\3\377\12\12\12\377\264\264" "\264\377\330\330\330\377\334\334\334\377\342\342\342\377\345\345\345" "\377\346\346\346\377\346\346\346\377\347\347\347\377\343\343\343\377" "\337\337\337\377\332\332\332\377\324\324\324\377\313\313\313\377\241" "\241\241\377\2\2\2\377\0\0\0N\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\37\6\6\6\300;;;\377\314\314\314\377\322\322\322\377" "\324\324\324\377\332\332\332\377\333\333\333\377\332\332\332\377\333" "\333\333\377\330\330\330\377\325\325\325\377\320\320\320\377\310\310" "\310\377\275\275\275\377...\377\0\0\0\300\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\5\5\5""2\5\5\5\373QQQ\377\302" "\302\302\377\307\307\307\377\313\313\313\377\314\314\314\377\315\315" "\315\377\313\313\313\377\313\313\313\377\310\310\310\377\302\302\302" "\377\270\270\270\377EEE\377\0\0\0\373\0\0\0K\0\0\0\0\0\0\0\377\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\3\3\3N\3\3\3\373" "111\377\231\231\231\377\273\273\273\377\275\275\275\377\274\274\274\377" "\274\274\274\377\274\274\274\377\266\266\266\377\220\220\220\377+++\377" "\0\0\0\373\0\0\0\361\0\0\0\362\0\0\0g\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\37\0\0\0""2\1\1\1\300\3\3\3" "\377AAA\377zzz\377\232\232\232\377\232\232\232\377www\377<<<\377\0\0" "\0\377\0\0\0\300\0\0\0""2\0\0\0\337\0\0\0\360\0\0\0\363\0\0\0\377\0\0" "\0L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\37\0\0\0N\0\0\0\243\0\0\0\335\0\0\0\373\0\0\0\373\0\0\0\335\0\0" "\0\243\0\0\0N\0\0\0:\0\0\0\37\0\0\0\37\40\40\40\363\40\40\40\364\0\0" "\0\366\0\0\0\361\0\0\0:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0\37\0\0\0\37\0\0\0\37\0\0" "\0\37\0\0\0\37\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0\354hhh\373\0\0" "\0\377\0\0\0\362\0\0\0\366\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0\363yyy\375" ":::\374\0\0\0\363\0\0\0\364\0\0\0\37\0\0\0\377\0\0\0\377\0\0\0\0\0\0" "\0\377\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\0" "\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\377\0\0" "\0\37\0\0\0\377\0\0\0\377\37\37\37\373\0\0\0\364\0\0\0\37\0\0\0\377\0" "\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\37\0\0\0\377\0\0\0\377\0\0\0\375\0\0\0\77\0\0\0\37\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\37\0\0\0\37\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; /* ------------------- Measure tool icon ------------------- */ /* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ /* screenruler-icon.png 24px from Debian package mate-icon-theme-faenza ver. 1.8.0-1~bpo70+. This theme has been made by Rowen_Stipe based on Faenza and Faience icon themes by ~Tiheum. */ #ifdef __SUNPRO_C #pragma align 4 (ruler) #endif #ifdef __GNUC__ static const guint8 ruler[] __attribute__ ((__aligned__ (4))) = #else static const guint8 ruler[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1689) */ "\0\0\6\261" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (96) */ "\0\0\0`" /* width (24) */ "\0\0\0\30" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\233\377\377\377\0\1\0\0\0\7\220\0\0\0\15\1\0\0\0\7\205\377\377\377\0" "\24\311\277e`\356\343\205\337\363\350\215\377\363\351\217\377\363\351" "\222\377\363\351\225\377\364\352\227\377\364\352\231\377\364\353\233" "\377\364\353\235\377\365\354\237\377\365\354\240\377\365\354\241\377" "\365\355\244\377\365\355\246\377\366\355\250\377\366\356\252\377\366" "\356\254\377\362\352\243\346\322\312~k\203\377\377\377\0\12\0\0\0\11" "\352\335z\340\355\337_\377\357\342k\377\361\344z\377\360\344{\377\361" "\345\201\377\361\346\201\377\361\347\205\377\362\347\205\377\202\362" "\350\212\377\12\363\351\217\377\363\350\217\377\363\351\224\377\364\351" "\223\377\364\352\230\377\364\352\227\377\364\353\231\377\364\353\236" "\377\360\346\236\350\0\0\0\11\202\377\377\377\0\26\0\0\0\20\360\344{" "\377\352\333L\377\357\343u\377\214|\"\377\361\345\200\377\214|$\377\361" "\346\205\377\214|%\377\362\347\212\377\214}'\377\362\350\216\377\215" "}(\377\363\351\223\377\215})\377\364\352\227\377\215~*\377\363\352\231" "\377\215}*\377\363\352\231\377\365\355\244\377\0\0\0\20\202\377\377\377" "\0\26\0\0\0\21\357\342u\377\353\331L\377\360\343v\377\206u\34\377\361" "\345\202\377\206u\35\377\362\347\207\377\206v\36\377\362\350\214\377" "\206v\40\377\362\350\220\377\206v\40\377\363\351\225\377\206v\"\377\363" "\352\231\377\206v\"\377\364\352\232\377\206v\"\377\364\351\231\377\364" "\353\240\377\0\0\0\21\202\377\377\377\0\26\0\0\0\22\356\340m\377\352" "\330I\377\357\342u\377~m\26\377\361\345\201\377~m\27\377\361\345\206" "\377\177m\30\377\361\346\213\377\177n\31\377\362\347\217\377\177n\32" "\377\363\351\224\377\177n\32\377\363\351\230\377\177n\33\377\363\351" "\232\377\177n\33\377\363\351\226\377\363\352\232\377\0\0\0\22\202\377" "\377\377\0\26\0\0\0\24\355\337e\377\351\327E\377\356\341s\377xf\17\377" "\360\344~\377xg\20\377\361\345\204\377xg\21\377\361\346\210\377xg\21" "\377\361\346\215\377xg\22\377\362\350\221\377xg\22\377\363\351\225\377" "xg\23\377\362\351\230\377xg\23\377\362\351\224\377\362\350\225\377\0" "\0\0\24\202\377\377\377\0\26\0\0\0\25\352\334]\377\346\326@\377\355\340" "o\377p_\11\377\356\343{\377p_\11\377\357\344\201\377p_\12\377\357\345" "\205\377p_\12\377\360\346\211\377p_\12\377\361\346\215\377p_\13\377\361" "\350\222\377p_\13\377\362\350\225\377p_\13\377\361\350\221\377\360\346" "\216\377\0\0\0\25\202\377\377\377\0\26\0\0\0\26\351\332T\377\345\324" ":\377\355\337k\377jW\3\377\356\341x\377jW\3\377\356\343}\377jW\3\377" "\357\344\201\377jW\3\377\357\345\206\377jW\3\377\360\346\212\377jW\3" "\377\361\347\217\377jW\3\377\361\350\221\377jW\3\377\361\346\215\377" "\357\345\207\377\0\0\0\26\202\377\377\377\0\26\0\0\0\27\346\327J\377" "\344\3226\377\353\335h\377fT\0\377\355\341t\377\355\341x\377\355\341" "w\377\356\341}\377\356\342{\377\357\343\201\377\357\342\200\377\357\344" "\205\377\357\345\207\377fT\0\377\360\346\214\377\360\345\215\377\360" "\346\215\377\360\345\215\377\357\343\201\377\356\342\200\377\0\0\0\27" "\202\377\377\377\0\26\0\0\0\30\345\325@\377\343\3201\377\352\335d\377" "fT\0\377\354\340q\377\350\330Q\377\350\331T\377\351\332W\377\351\332" "Z\377\351\332\\\377\352\333`\377\352\334b\377\357\344\205\377fT\0\377" "\357\345\211\377\353\337n\377\354\337o\377\353\337l\377\353\336i\377" "\355\340y\377\0\0\0\30\202\377\377\377\0\26\0\0\0\32\344\3228\377\343" "\320-\377\352\334a\377fT\0\377\354\336n\377\347\327N\377\350\330Q\377" "\350\331T\377\351\331W\377\351\332X\377\351\331V\377\350\330R\377\354" "\337q\377fT\0\377\354\336o\377\347\326H\377\346\325C\377\345\3229\377" "\343\3200\377\345\324A\377\0\0\0\32\202\377\377\377\0\12\0\0\0\33\343" "\3200\377\342\316)\377\351\332]\377fT\0\377\353\335k\377\346\325I\377" "\346\325H\377\345\324D\377\345\324@\377\203\345\323<\377\11\351\331W" "\377\352\334c\377\351\331W\377\344\323;\377\344\3229\377\343\3200\377" "\342\316'\377\343\3200\377\0\0\0\33\202\377\377\377\0\6\0\0\0\34\341" "\315(\377\341\314#\377\351\331Z\377fT\0\377\351\333c\377\212\344\321" ":\377\6\344\3219\377\343\3206\377\342\316.\377\341\314#\377\341\315(" "\377\0\0\0\34\202\377\377\377\0\1\0\0\0\35\202\337\313\37\377\3\346\327" "U\377fT\0\377\350\331]\377\212\342\3206\377\3\342\3205\377\342\3172\377" "\340\315*\377\202\337\313\37\377\1\0\0\0\35\202\377\377\377\0\6\0\0\0" "\36\335\311\27\377\336\312\34\377\343\323E\377\347\330Y\377\345\326O" "\377\212\341\3174\377\6\341\3173\377\341\3160\377\337\314'\377\336\312" "\34\377\335\311\27\377\0\0\0\36\202\377\377\377\0\6\0\0\0\40\333\307" "\20\377\335\311\30\377\336\313#\377\340\315+\377\340\316/\377\212\340" "\3160\377\6\340\316/\377\340\315+\377\336\313#\377\335\311\30\377\333" "\307\20\377\0\0\0\40\202\377\377\377\0\6\0\0\0!\332\305\15\377\333\306" "\23\377\335\310\34\377\336\312%\377\337\313)\377\212\337\314+\377\6\337" "\313)\377\336\312%\377\335\310\34\377\333\306\23\377\332\305\15\377\0" "\0\0!\202\377\377\377\0\6\0\0\0\"\332\303\12\377\333\304\16\377\334\306" "\25\377\335\307\32\377\335\310\36\377\212\336\311\40\377\6\335\310\36" "\377\335\307\32\377\334\306\25\377\333\304\16\377\332\303\12\377\0\0" "\0\"\202\377\377\377\0\7\0\0\0\40\272\247\10\353\331\303\12\377\332\303" "\13\377\332\304\16\377\333\305\20\377\333\305\21\377\210\333\305\22\377" "\7\333\305\21\377\333\305\20\377\332\304\16\377\332\303\13\377\331\303" "\12\377\272\247\10\353\0\0\0\40\202\377\377\377\0\12\0\0\0\10QH\2\242" "\274\251\20\355\334\307\35\377\334\311\"\377\335\312%\377\337\313)\377" "\337\313,\377\337\314/\377\340\3153\377\202\340\3166\377\12\340\3153" "\377\337\314/\377\337\313,\377\337\313)\377\335\312%\377\334\311\"\377" "\334\307\35\377\274\251\20\355QH\2\242\0\0\0\10\203\377\377\377\0\3\0" "\0\0+\0\0\0{\0\0\0\243\216\0\0\0\245\3\0\0\0\243\0\0\0{\0\0\0+\232\377" "\377\377\0"}; /* ------------------- Move tool icon -------------------------- */ /* GdkPixbuf RGBA C-Source image dump */ #ifdef __SUNPRO_C #pragma align 4 (move) #endif #ifdef __GNUC__ static const guint8 move[] __attribute__ ((__aligned__ (4))) = #else static const guint8 move[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1936) */ "\0\0\7\250" /* pixdata_type (0x1010002) */ "\1\1\0\2" /* rowstride (88) */ "\0\0\0X" /* width (22) */ "\0\0\0\26" /* height (22) */ "\0\0\0\26" /* pixel_data: */ "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\40J\207\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\207\31\40J\207\377" "\40J\207\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\40J\207\31\40J\207\377r\237\317\377\40J\207\377\40" "J\207\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\40J\207\31\40J\207\377r\237\317\377L|\265\377r\237\317\377\40J\207\377" "\40J\207\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\207" "\377r\237\317\377L|\265\377L|\265\377L|\265\377r\237\317\377\40J\207" "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\207\377" "\40J\207\377\40J\207\377S\203\272\377\40J\207\377\40J\207\377\40J\207" "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\40J\207\377Y\210\276\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\40J\207\31\40J\207\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\40" "J\207\377b\221\304\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\40J\207\377" "\40J\207\377\40J\207\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" "\0\40J\207\31\40J\207\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0\0" "\0\0\0\40J\207\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\40" "J\207\377r\237\317\377\40J\207\377\40J\207\31\0\0\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\40J\207\31\40J\207\377r\237\317\377L|\265\377\40J\207\377\40" "J\207\377\40J\207\377\40J\207\377\40J\207\377r\237\317\377\40J\207\377" "\40J\207\377\40J\207\377\40J\207\377\40J\207\377L|\265\377r\237\317\377" "\40J\207\377\40J\207\31\0\0\0\0\0\0\0\0\40J\207\31\40J\207\377r\237\317" "\377L|\265\377L|\265\377S\203\272\377Y\210\276\377b\221\304\377r\237" "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377b\221\304" "\377Y\210\276\377S\203\272\377L|\265\377L|\265\377r\237\317\377\40J\207" "\377\40J\207\31\0\0\0\0\0\0\0\0\40J\207\31\40J\207\377r\237\317\377L" "|\265\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377" "r\237\317\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207" "\377L|\265\377r\237\317\377\40J\207\377\40J\207\31\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\40J\207\31\40J\207\377r\237\317\377\40J\207\377\0\0\0" "\0\0\0\0\0\0\0\0\0\40J\207\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0" "\0\0\0\0\0\40J\207\377r\237\317\377\40J\207\377\40J\207\31\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\207\31\40J\207\377\40J\207" "\377\0\0\0\0\0\0\0\1\0\0\0\1\40J\207\377b\221\304\377\40J\207\377\0\0" "\0\0\0\0\0\0\0\0\0\0\40J\207\377\40J\207\377\40J\207\31\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\3\0" "\0\0\6\0\0\0\10\0\0\0\11\40J\207\377Y\210\276\377\40J\207\377\0\0\0\12" "\0\0\0\6\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\10\0\0\0\16\0\0\0\26\40J\207" "\377\40J\207\377\40J\207\377S\203\272\377\40J\207\377\40J\207\377\40" "J\207\377\0\0\0\26\0\0\0\20\0\0\0\14\0\0\0\11\0\0\0\6\0\0\0\3\0\0\0\1" "\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\7\0\0\0\16\0\0\0\25\0\0\0!\0\0\0-\40J" "\207\377r\237\317\377L|\265\377L|\265\377L|\265\377r\237\317\377\40J" "\207\377\0\0\0""1\0\0\0%\0\0\0\32\0\0\0\22\0\0\0\12\0\0\0\5\0\0\0\1\0" "\0\0\0\0\0\0\1\0\0\0\4\0\0\0\13\0\0\0\25\0\0\0\37\0\0\0.\0\0\0:\11\25" "'V\40J\207\377r\237\317\377L|\265\377r\237\317\377\40J\207\377\10\24" "%[\0\0\0\77\0\0\0""0\0\0\0\40\0\0\0\23\0\0\0\14\0\0\0\5\0\0\0\1\0\0\0" "\0\0\0\0\1\0\0\0\3\0\0\0\11\0\0\0\22\0\0\0\35\0\0\0+\0\0\0""6\0\0\0\77" "\10\24%[\40J\207\377r\237\317\377\40J\207\377\10\23#^\0\0\0D\0\0\0""9" "\0\0\0*\0\0\0\31\0\0\0\16\0\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0" "\0\2\0\0\0\4\0\0\0\11\0\0\0\21\0\0\0\32\0\0\0!\0\0\0(\0\0\0""1\12\30" ",L\40J\207\377\12\30+M\0\0\0""4\0\0\0+\0\0\0!\0\0\0\25\0\0\0\14\0\0\0" "\5\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0" "\0\0\5\0\0\0\11\0\0\0\13\0\0\0\16\0\0\0\21\0\0\0\26\21(I.\0\0\0\25\0" "\0\0\22\0\0\0\15\0\0\0\12\0\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\2" "\0\0\0\2\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\1\0\0" "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; /* ------------------- Pointer tool icon -------------------------- */ /* GdkPixbuf RGBA C-Source image dump */ #ifdef __SUNPRO_C #pragma align 4 (pointer) #endif #ifdef __GNUC__ static const guint8 pointer[] __attribute__ ((__aligned__ (4))) = #else static const guint8 pointer[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (2304) */ "\0\0\11\30" /* pixdata_type (0x1010002) */ "\1\1\0\2" /* rowstride (96) */ "\0\0\0`" /* width (24) */ "\0\0\0\30" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\363\363\363" "\226\377\377\377(\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\377\364\364" "\364\354\377\377\377\37\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\376sss\374\364\364" "\364\345\377\377\377\27\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\376\376\376\376\1\1\1\377\204\204\204\372\363" "\363\363\333\377\377\377\20\377\377\377\0\377\377\377\0\377\377\377\0" "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\376\376\376\375\2\2\2\377\0\0\0\377\225\225\225\370" "\362\362\362\321\377\377\377\13\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\375\375\375\375\3\3\3\377\0\0\0\377\1\1\1\377\245\245\245\366\362" "\362\362\303\377\377\377\6\377\377\377\0\377\377\377\0\377\377\377\0" "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\375\375\375" "\374\4\4\4\377\0\0\0\377\0\0\0\377\3\3\3\377\264\264\264\365\362\362" "\362\265\377\377\377\3\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\374\374\374\374\5\5\5\377\0\0" "\0\377\0\0\0\377\0\0\0\377\6\6\6\377\302\302\302\364\363\363\363\245" "\377\377\377\1\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\374\374\374\374\6\6\6\377\0\0\0\377\0\0\0\377\0\0\0" "\377\0\0\0\377\13\13\13\377\316\316\316\364\365\365\365\224\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\374\374\374" "\373\7\7\7\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\20\20" "\20\377\331\331\331\364\365\365\365\202\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\373\373\373\373\10\10\10\377\0\0\0\377\0\0\0" "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\26\26\26\377\343\343\343" "\364\370\370\370o\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\373\373\373" "\372\11\11\11\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" "\0\0\377\0\0\0\377\36\36\36\377\352\352\352\364\374\374\374^\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\372\372\372\372\12\12\12\377\0\0\0\377\0\0\0\377" "\0\0\0\377\0\0\0\377\0\0\0\377\24\24\24\377\31\31\31\377\23\23\23\377" "444\377\362\362\362\366\377\377\377O\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\372\372\372\371" "\13\13\13\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\3\3\3\377\361\361" "\361\372\371\371\371\366\370\370\370\366\372\372\372\371\375\375\375" "\374\362\362\362\305\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\372\372\372\370\14\14\14\377\0\0\0" "\377:::\377nnn\370\0\0\0\377\0\0\0\377\224\224\224\370\362\362\362\243" "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\371\371\371\370\15\15\15\377(((\377\360\360\360\366\371\371\371\371" "\20\20\20\377\0\0\0\377\16\16\16\377\356\356\356\365\377\377\3776\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\371\371\371\370" "'''\377\347\347\347\365\374\374\374_\356\356\356\276ZZZ\377\0\0\0\377" "\0\0\0\377ZZZ\376\362\362\362\326\377\377\377\2\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\371\371\371\367\337\337\337\366\365\365\365}\377" "\377\377\0\377\377\377a\262\262\262\363\0\0\0\377\0\0\0\377\0\0\0\377" "\311\311\311\362\375\375\375g\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\372\372\372\362\362\362\362\234\377\377\377\0\377\377\377\0\377\377" "\377\24\366\366\366\370\7\7\7\377\0\0\0\377\0\0\0\377...\377\367\367" "\367\363\377\377\377\17\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\24\377" "\377\377\2\377\377\377\0\377\377\377\0\377\377\377\0\355\355\355\320" "JJJ\377\11\11\11\377lll\376\351\351\351\364\356\356\356\305\377\377\377" "\6\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" "\0\377\377\377\0\377\377\377\0\373\373\373s\324\324\324\372\360\360\360" "\366\356\356\356\270\377\377\3773\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" "\377\0\377\377\377\0\377\377\377\24\366\366\366\207\377\377\377(\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0"}; gerbv-2.7.0/src/csv.h0000644000175000017500000000464713421555714014262 0ustar carstencarsten/* csv - read write comma separated value format * Copyright (c) 2003 Michael B. Allen * * The MIT License * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ /* We (Juergen Haas and Tomasz Motylewski) execute our rights given above * to distribute and sublicence this file (csv.h) and csv.c, csv_defines.h * under General Pulic Licence version 2 or any later version. * * This file is derived from libmba : A library of generic C modules * http://www.ioplex.com/~miallen/libmba/dl/libmba-0.8.9.tar.gz */ /** \file csv.h \brief Header info for the parsing support functions for the pick and place parser \ingroup libgerbv */ #ifndef CSV_H #define CSV_H /* csv - read write comma separated value format */ #ifdef __cplusplus extern "C" { #endif # define LIBMBA_API extern #include /*#include "text.h"*/ #if defined(USE_WCHAR) #define csv_row_parse csv_row_parse_wcs #else #define csv_row_parse csv_row_parse_str #endif #define CSV_TRIM 0x01 #define CSV_QUOTES 0x02 LIBMBA_API int csv_row_parse_str(const char *src, size_t sn, char *buf, size_t bn, char *row[], int rn, int sep, int flags); LIBMBA_API int csv_row_parse_wcs(const wchar_t *src, size_t sn, wchar_t *buf, size_t bn, wchar_t *row[], int rn, int sep, int flags); LIBMBA_API int csv_row_fread(FILE *in, char *buf, size_t bn, char *row[], int numcols, int sep, int flags); #ifdef __cplusplus } #endif #endif /* CSV_H */ gerbv-2.7.0/src/gerb_image.h0000644000175000017500000000370013421555714015535 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_image.h \brief Header info for the image editing and support functions \ingroup libgerbv */ #ifndef GERB_IMAGE_H #define GERB_IMAGE_H #include "gerb_stats.h" #include "drill_stats.h" #ifdef __cplusplus extern "C" { #endif /* * Function prototypes */ /* * Check that the parsed gerber image is complete. * Returned errorcodes are: * 0: No problems * 1: Missing netlist * 2: Missing format * 4: Missing apertures * 8: Missing info * It could be any of above or'ed together */ typedef enum { GERB_IMAGE_OK = 0, GERB_IMAGE_MISSING_NETLIST = 1, GERB_IMAGE_MISSING_FORMAT = 2, GERB_IMAGE_MISSING_APERTURES = 4, GERB_IMAGE_MISSING_INFO = 8, } gerb_verify_error_t; gerb_verify_error_t gerbv_image_verify(gerbv_image_t const* image); /* Dumps a written version of image to stdout */ void gerbv_image_dump(gerbv_image_t const* image); gerbv_layer_t * gerbv_image_return_new_layer (gerbv_layer_t *previousLayer); gerbv_netstate_t * gerbv_image_return_new_netstate (gerbv_netstate_t *previousState); #ifdef __cplusplus } #endif #endif /* GERB_IMAGE_H */ gerbv-2.7.0/src/drill_stats.h0000644000175000017500000000400613421555714016000 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * gerb_stats.h -- a part of gerbv. * * Copyright (C) 2007 Stuart Brorson (sdb@cloud9.net) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file drill_stats.h \brief Header info to the statistics generating functions for Excellon drill files \ingroup libgerbv */ #ifndef DRILL_STATS_H #define DRILL_STATS_H #include /* This imports gboolean type */ /* =================== Prototypes ================ */ gboolean drill_stats_in_drill_list(gerbv_drill_list_t *drill_list, int drill_num); gerbv_drill_list_t *gerbv_drill_stats_new_drill_list(void); void drill_stats_add_to_drill_list(gerbv_drill_list_t *drill_list_in, int drill_num_in, double drill_size_in, char *drill_unit_in); void drill_stats_modify_drill_list(gerbv_drill_list_t *drill_list_in, int drill_num_in, double drill_size_in, char *drill_unit_in); void drill_stats_increment_drill_counter(gerbv_drill_list_t *drill_list_in, int drill_num_in); void drill_stats_add_to_drill_counter(gerbv_drill_list_t *drill_list_in, int drill_num_in, int increment); gerbv_error_list_t *gerbv_drill_stats_new_error_list(void); void drill_stats_add_error(gerbv_error_list_t *error_list_in, int layer, const char *error_text, gerbv_message_type_t type); #endif /* DRILL_STATS_H */ gerbv-2.7.0/src/selection.c0000644000175000017500000000376013421555714015442 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * * selection.c -- this file is a part of gerbv. * * Copyright (C) 2014 Sergey Alyoshin * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file selection.c \brief Selection support functions for libgerbv \ingroup libgerbv */ #include "gerbv.h" GArray *selection_new_array (void) { return g_array_new (FALSE, FALSE, sizeof (gerbv_selection_item_t)); } gchar *selection_free_array (gerbv_selection_info_t *sel_info) { return g_array_free (sel_info->selectedNodeArray, FALSE); } guint selection_length (gerbv_selection_info_t *sel_info) { return sel_info->selectedNodeArray->len; } gerbv_selection_item_t selection_get_item_by_index ( gerbv_selection_info_t *sel_info, guint idx) { return g_array_index (sel_info->selectedNodeArray, gerbv_selection_item_t, idx); } void selection_clear_item_by_index ( gerbv_selection_info_t *sel_info, guint idx) { g_array_remove_index (sel_info->selectedNodeArray, idx); } void selection_clear (gerbv_selection_info_t *sel_info) { if (selection_length(sel_info)) g_array_remove_range (sel_info->selectedNodeArray, 0, sel_info->selectedNodeArray->len); } void selection_add_item (gerbv_selection_info_t *sel_info, gerbv_selection_item_t *item) { g_array_append_val (sel_info->selectedNodeArray, *item); } gerbv-2.7.0/src/gettext.h0000644000175000017500000002311713421555714015144 0ustar carstencarsten/* Convenience header for conditional use of GNU . Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _LIBGETTEXT_H #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ #if ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by the gettext() and ngettext() macros. This is an alternative to calling textdomain(), and is useful for libraries. */ # ifdef DEFAULT_TEXT_DOMAIN # undef gettext # define gettext(Msgid) \ dgettext (DEFAULT_TEXT_DOMAIN, Msgid) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N) # endif #else /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. We don't include as well because people using "gettext.h" will not include , and also including would fail on SunOS 4, whereas is OK. */ #if defined(__sun) # include #endif /* Many header files from the libstdc++ coming with g++ 3.3 or newer include , which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. */ #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3) # include # if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H # include # endif #endif /* Disabled NLS. The casts to 'const char *' serve the purpose of producing warnings for invalid uses of the value returned from these functions. On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # undef gettext # define gettext(Msgid) ((const char *) (Msgid)) # undef dgettext # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid)) # undef dcgettext # define dcgettext(Domainname, Msgid, Category) \ ((void) (Category), dgettext (Domainname, Msgid)) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ ((N) == 1 \ ? ((void) (Msgid2), (const char *) (Msgid1)) \ : ((void) (Msgid1), (const char *) (Msgid2))) # undef dngettext # define dngettext(Domainname, Msgid1, Msgid2, N) \ ((void) (Domainname), ngettext (Msgid1, Msgid2, N)) # undef dcngettext # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N)) # undef textdomain # define textdomain(Domainname) ((const char *) (Domainname)) # undef bindtextdomain # define bindtextdomain(Domainname, Dirname) \ ((void) (Domainname), (const char *) (Dirname)) # undef bind_textdomain_codeset # define bind_textdomain_codeset(Domainname, Codeset) \ ((void) (Domainname), (const char *) (Codeset)) #endif /* A pseudo function call that serves as a marker for the automated extraction of messages, but does not call gettext(). The run-time translation is done at a different place in the code. The argument, String, should be a literal string. Concatenated strings and other string expressions won't work. The macro's expansion is not parenthesized, so that it is suitable as initializer for static 'char[]' or 'const char[]' variables. */ #define gettext_noop(String) String /* The separator between msgctxt and msgid in a .mo file. */ #define GETTEXT_CONTEXT_GLUE "\004" /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be short and rarely need to change. The letter 'p' stands for 'particular' or 'special'. */ #ifdef DEFAULT_TEXT_DOMAIN # define pgettext(Msgctxt, Msgid) \ pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #else # define pgettext(Msgctxt, Msgid) \ pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #endif #define dpgettext(Domainname, Msgctxt, Msgid) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) #ifdef DEFAULT_TEXT_DOMAIN # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #else # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #endif #define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * pgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, int category) { const char *translation = dcgettext (domain, msg_ctxt_id, category); if (translation == msg_ctxt_id) return msgid; else return translation; } #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * npgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { const char *translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); if (translation == msg_ctxt_id || translation == msgid_plural) return (n == 1 ? msgid : msgid_plural); else return translation; } /* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID can be arbitrary expressions. But for string literals these macros are less efficient than those above. */ #include #define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS \ (((__GNUC__ >= 3 || __GNUG__ >= 2) && !__STRICT_ANSI__) \ /* || __STDC_VERSION__ >= 199901L */ ) #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS #include #endif #define pgettext_expr(Msgctxt, Msgid) \ dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES) #define dpgettext_expr(Domainname, Msgctxt, Msgid) \ dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcgettext (domain, msg_ctxt_id, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (translation != msg_ctxt_id) return translation; } return msgid; } #define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcnpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (!(translation == msg_ctxt_id || translation == msgid_plural)) return translation; } return (n == 1 ? msgid : msgid_plural); } #endif /* _LIBGETTEXT_H */ gerbv-2.7.0/src/draw-gdk.c0000644000175000017500000010755413421555714015163 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file draw-gdk.c \brief GDK rendering functions \ingroup libgerbv */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include /* ceil(), atan2() */ #ifdef HAVE_STRING_H #include #endif #include #include "gerbv.h" #include "draw-gdk.h" #include "common.h" #undef round #define round(x) ceil((double)(x)) #define dprintf if(DEBUG) printf /* * If you want to rotate a * column vector v by t degrees using matrix M, use * * M = {{cos t, -sin t}, {sin t, cos t}} in M*v. * * From comp.graphics.algorithms Frequently Asked Questions * * Due reverse defintion of X-axis in GTK you have to negate * angels. * */ static GdkPoint rotate_point(GdkPoint point, double angle) { double sint, cost; GdkPoint returned; if (angle == 0.0) return point; sint = sin(DEG2RAD(-angle)); cost = cos(DEG2RAD(-angle)); returned.x = lround(cost*point.x - sint*point.y); returned.y = lround(sint*point.x + cost*point.y); return returned; } /* * Aperture macro primitive 1 (Circle) */ static void gerbv_gdk_draw_prim1(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int diameter_idx = 1; const int x_offset_idx = 2; const int y_offset_idx = 3; const gint full_circle = 23360; GdkGC *local_gc = gdk_gc_new(pixmap); gint dia = round(fabs(p[diameter_idx] * scale)); gint real_x = x - dia / 2; gint real_y = y - dia / 2; GdkColor color; gdk_gc_copy(local_gc, gc); real_x += (int)(p[x_offset_idx] * (double)scale); real_y -= (int)(p[y_offset_idx] * (double)scale); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } gdk_gc_set_line_attributes(local_gc, 1, /* outline always 1 pixels */ GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); /* * A filled circle */ gdk_draw_arc(pixmap, local_gc, 1, real_x, real_y, dia, dia, 0, full_circle); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim1 */ /* * Aperture macro primitive 4 (outline) * - Start point is not included in number of points. * - Outline is 1 pixel. */ static void gerbv_gdk_draw_prim4(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int nuf_points_idx = 1; const int first_x_idx = 2; const int first_y_idx = 3; const int rotext_idx = 4; GdkGC *local_gc = gdk_gc_new(pixmap); int nuf_points, point; double rotation; GdkPoint *points; GdkColor color; /* Include start point */ nuf_points = (int)p[nuf_points_idx] + 1; points = g_new(GdkPoint, nuf_points); if (!points) { g_free(points); return; } rotation = p[(nuf_points - 1) * 2 + rotext_idx]; for (point = 0; point < nuf_points; point++) { points[point].x = (int)round(scale * p[point * 2 + first_x_idx]); points[point].y = -(int)round(scale * p[point * 2 + first_y_idx]); if (rotation != 0.0) points[point] = rotate_point(points[point], rotation); points[point].x += x; points[point].y += y; } gdk_gc_copy(local_gc, gc); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } gdk_gc_set_line_attributes(local_gc, 1, /* outline always 1 pixels */ GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); gdk_draw_polygon(pixmap, local_gc, 1, points, nuf_points); g_free(points); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim4 */ /* * Aperture macro primitive 5 (polygon) */ static void gerbv_gdk_draw_prim5(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int nuf_vertices_idx = 1; const int center_x_idx = 2; const int center_y_idx = 3; const int diameter_idx = 4; const int rotation_idx = 5; int nuf_vertices, i; double vertex, tick, rotation, radius; GdkPoint *points; GdkGC *local_gc = gdk_gc_new(pixmap); GdkColor color; nuf_vertices = (int)p[nuf_vertices_idx]; points = g_new(GdkPoint, nuf_vertices); if (!points) { g_free(points); return; } gdk_gc_copy(local_gc, gc); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } tick = 2 * M_PI / (double)nuf_vertices; rotation = DEG2RAD(-p[rotation_idx]); radius = p[diameter_idx] / 2.0; for (i = 0; i < nuf_vertices; i++) { vertex = tick * (double)i + rotation; points[i].x = (int)round(scale * (radius * cos(vertex) + p[center_x_idx])) + x; points[i].y = (int)round(scale * (radius * sin(vertex) - p[center_y_idx])) + y; } gdk_draw_polygon(pixmap, local_gc, 1, points, nuf_vertices); gdk_gc_unref(local_gc); g_free(points); return; } /* gerbv_gdk_draw_prim5 */ /* * Doesn't handle and explicit x,y yet * Questions: * - is "gap" distance between edges of circles or distance between * center of line of circle? */ static void gerbv_gdk_draw_prim6(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int outside_dia_idx = 2; const int ci_thickness_idx = 3; const int gap_idx = 4; const int nuf_circles_idx = 5; const int ch_thickness_idx = 6; const int ch_length_idx = 7; const int rotation_idx = 8; GdkGC *local_gc = gdk_gc_new(pixmap); double real_dia; double real_dia_diff; int circle; GdkPoint crosshair[4]; int point; gdk_gc_copy(local_gc, gc); gdk_gc_set_line_attributes(local_gc, (int)round(scale * p[ci_thickness_idx]), GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); real_dia = p[outside_dia_idx] - p[ci_thickness_idx] / 2.0; real_dia_diff = 2*(p[gap_idx] + p[ci_thickness_idx]); for (circle = 0; circle != (int)p[nuf_circles_idx]; circle++) { /* * Non filled circle */ const gint full_circle = 23360; gint dia = (real_dia - real_dia_diff * circle) * scale; if (dia >= 0){ gdk_draw_arc(pixmap, local_gc, 0, x - dia / 2, y - dia / 2, dia, dia, 0, full_circle); } } /* * Cross Hair */ memset(crosshair, 0, sizeof(GdkPoint) * 4); crosshair[0].x = (int)((p[ch_length_idx] / 2.0) * scale); /*crosshair[0].y = 0;*/ crosshair[1].x = -crosshair[0].x; /*crosshair[1].y = 0;*/ /*crosshair[2].x = 0;*/ crosshair[2].y = crosshair[0].x; /*crosshair[3].x = 0;*/ crosshair[3].y = -crosshair[0].x; gdk_gc_set_line_attributes(local_gc, (int)round(scale * p[ch_thickness_idx]), GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); for (point = 0; point < 4; point++) { crosshair[point] = rotate_point(crosshair[point], p[rotation_idx]); crosshair[point].x += x; crosshair[point].y += y; } gdk_draw_line(pixmap, local_gc, crosshair[0].x, crosshair[0].y, crosshair[1].x, crosshair[1].y); gdk_draw_line(pixmap, local_gc, crosshair[2].x, crosshair[2].y, crosshair[3].x, crosshair[3].y); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim6 */ static void gerbv_gdk_draw_prim7(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int outside_dia_idx = 2; const int inside_dia_idx = 3; const int ch_thickness_idx = 4; const int rotation_idx = 5; const gint full_circle = 23360; GdkGCValues gc_val; int diameter, i; GdkGC *local_gc = gdk_gc_new(pixmap); GdkPoint point[4]; double ci_thickness = (p[outside_dia_idx] - p[inside_dia_idx]) / 2.0; gdk_gc_copy(local_gc, gc); gdk_gc_set_line_attributes(local_gc, (int)round(scale * ci_thickness), GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); /* * Non filled circle */ diameter = (p[inside_dia_idx] + ci_thickness) * scale; gdk_draw_arc(pixmap, local_gc, 0, x - diameter / 2, y - diameter / 2, diameter, diameter, 0, full_circle); /* * Cross hair */ /* Calculate the end points of the crosshair */ /* GDK doesn't always remove all of the circle (round of error probably) I extend the crosshair line with 2 (one pixel in each end) to make sure all of the circle is removed with the crosshair */ for (i = 0; i < 4; i++) { point[i].x = round((p[outside_dia_idx] / 2.0) * scale) + 2; point[i].y = 0; point[i] = rotate_point(point[i], p[rotation_idx] + 90 * i); point[i].x += x; point[i].y += y; } gdk_gc_set_line_attributes(local_gc, (int)round(scale * p[ch_thickness_idx]), GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); /* The cross hair should "cut out" parts of the circle, hence inverse */ gdk_gc_get_values(local_gc, &gc_val); if (gc_val.foreground.pixel == 1) gc_val.foreground.pixel = 0; else gc_val.foreground.pixel = 1; gdk_gc_set_foreground(local_gc, &(gc_val.foreground)); /* Draw the actual cross */ gdk_draw_line(pixmap, local_gc, point[0].x, point[0].y, point[2].x, point[2].y); gdk_draw_line(pixmap, local_gc, point[1].x, point[1].y, point[3].x, point[3].y); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim7 */ /* * Doesn't handle and explicit x,y yet */ static void gerbv_gdk_draw_prim20(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int linewidth_idx = 1; const int start_x_idx = 2; const int start_y_idx = 3; const int end_x_idx = 4; const int end_y_idx = 5; const int rotation_idx = 6; const int nuf_points = 2; GdkGC *local_gc = gdk_gc_new(pixmap); GdkPoint points[nuf_points]; GdkColor color; int i; gdk_gc_copy(local_gc, gc); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } gdk_gc_set_line_attributes(local_gc, (int)round(scale * p[linewidth_idx]), GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); points[0].x = (p[start_x_idx] * scale); points[0].y = (p[start_y_idx] * scale); points[1].x = (p[end_x_idx] * scale); points[1].y = (p[end_y_idx] * scale); for (i = 0; i < nuf_points; i++) { points[i] = rotate_point(points[i], -p[rotation_idx]); points[i].x = x + points[i].x; points[i].y = y - points[i].y; } gdk_draw_line(pixmap, local_gc, points[0].x, points[0].y, points[1].x, points[1].y); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim20 */ static void gerbv_gdk_draw_prim21(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int width_idx = 1; const int height_idx = 2; const int exp_x_idx = 3; const int exp_y_idx = 4; const int rotation_idx = 5; const int nuf_points = 4; GdkPoint points[nuf_points]; GdkColor color; GdkGC *local_gc = gdk_gc_new(pixmap); int half_width, half_height; int i; half_width = (int)round(p[width_idx] * scale / 2.0); half_height =(int)round(p[height_idx] * scale / 2.0); points[0].x = half_width; points[0].y = half_height; points[1].x = half_width; points[1].y = -half_height; points[2].x = -half_width; points[2].y = -half_height; points[3].x = -half_width; points[3].y = half_height; for (i = 0; i < nuf_points; i++) { points[i].x += (int)(p[exp_x_idx] * scale); points[i].y -= (int)(p[exp_y_idx] * scale); points[i] = rotate_point(points[i], p[rotation_idx]); points[i].x += x; points[i].y += y; } gdk_gc_copy(local_gc, gc); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } gdk_draw_polygon(pixmap, local_gc, 1, points, nuf_points); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim21 */ /* * Doesn't handle explicit x,y yet */ static void gerbv_gdk_draw_prim22(GdkPixmap *pixmap, GdkGC *gc, double *p, double scale, gint x, gint y) { const int exposure_idx = 0; const int width_idx = 1; const int height_idx = 2; const int x_lower_left_idx = 3; const int y_lower_left_idx = 4; const int rotation_idx = 5; const int nuf_points = 4; GdkPoint points[nuf_points]; GdkGC *local_gc = gdk_gc_new(pixmap); GdkColor color; int i; points[0].x = (int)round(p[x_lower_left_idx] * scale); points[0].y = (int)round(p[y_lower_left_idx] * scale); points[1].x = (int)round((p[x_lower_left_idx] + p[width_idx]) * scale); points[1].y = (int)round(p[y_lower_left_idx] * scale); points[2].x = (int)round((p[x_lower_left_idx] + p[width_idx]) * scale); points[2].y = (int)round((p[y_lower_left_idx] + p[height_idx]) * scale); points[3].x = (int)round(p[x_lower_left_idx] * scale); points[3].y = (int)round((p[y_lower_left_idx] + p[height_idx]) * scale); for (i = 0; i < nuf_points; i++) { points[i] = rotate_point(points[i], -p[rotation_idx]); points[i].x = x + points[i].x; points[i].y = y - points[i].y; } gdk_gc_copy(local_gc, gc); /* Exposure */ if (p[exposure_idx] == 0.0) { color.pixel = 0; gdk_gc_set_foreground(local_gc, &color); } gdk_draw_polygon(pixmap, local_gc, 1, points, nuf_points); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_prim22 */ /* Keep this array in order and without holes */ static void (*dgk_draw_amacro_funcs[])(GdkPixmap *, GdkGC *, double *, double, gint, gint) = { [GERBV_APTYPE_MACRO_CIRCLE] = &gerbv_gdk_draw_prim1, [GERBV_APTYPE_MACRO_OUTLINE] = &gerbv_gdk_draw_prim4, [GERBV_APTYPE_MACRO_POLYGON] = &gerbv_gdk_draw_prim5, [GERBV_APTYPE_MACRO_MOIRE] = &gerbv_gdk_draw_prim6, [GERBV_APTYPE_MACRO_THERMAL] = &gerbv_gdk_draw_prim7, [GERBV_APTYPE_MACRO_LINE20] = &gerbv_gdk_draw_prim20, [GERBV_APTYPE_MACRO_LINE21] = &gerbv_gdk_draw_prim21, [GERBV_APTYPE_MACRO_LINE22] = &gerbv_gdk_draw_prim22, }; static inline void gerbv_gdk_draw_amacro(GdkPixmap *pixmap, GdkGC *gc, gerbv_simplified_amacro_t *s, double scale, gint x, gint y) { dprintf("%s(): drawing simplified aperture macros:\n", __func__); while (s != NULL) { if (s->type >= GERBV_APTYPE_MACRO_CIRCLE && s->type <= GERBV_APTYPE_MACRO_LINE22) { dgk_draw_amacro_funcs[s->type](pixmap, gc, s->parameter, scale, x, y); dprintf(" %s\n", gerbv_aperture_type_name(s->type)); } else { GERB_FATAL_ERROR( _("Unknown simplified aperture macro type %d"), s->type); } s = s->next; } } /* gerbv_gdk_draw_amacro */ /* * Draws a circle _centered_ at x,y with diameter dia */ static void gerbv_gdk_draw_circle(GdkPixmap *pixmap, GdkGC *gc, gint filled, gint x, gint y, gint dia) { static const gint full_circle = 23360; gint real_x = x - dia / 2; gint real_y = y - dia / 2; gdk_draw_arc(pixmap, gc, filled, real_x, real_y, dia, dia, 0, full_circle); return; } /* gerbv_gdk_draw_circle */ /* * Draws a rectangle _centered_ at x,y with sides x_side, y_side */ static void gerbv_gdk_draw_rectangle(GdkPixmap *pixmap, GdkGC *gc, int filled, gint x, gint y, gint x_side, gint y_side, double angle_deg) { int i; GdkPoint points[4]; points[0].x = -(x_side >> 1); points[0].y = -(y_side >> 1); points[1].x = x_side >> 1; points[1].y = points[0].y; points[2].x = points[1].x; points[2].y = y_side >> 1; points[3].x = points[0].x; points[3].y = points[2].y; for (i = 0; i < 4; i++) { points[i] = rotate_point(points[i], angle_deg); points[i].x += x; points[i].y += y; } gdk_draw_polygon(pixmap, gc, filled, points, 4); return; } /* gerbv_gdk_draw_rectangle */ /* * Draws an oval _centered_ at x,y with x axis x_axis and y axis y_axis */ static void gerbv_gdk_draw_oval(GdkPixmap *pixmap, GdkGC *gc, int filled, gint x, gint y, gint x_axis, gint y_axis, double angle_deg) { gint width; GdkPoint points[2]; GdkGC *local_gc = gdk_gc_new(pixmap); gdk_gc_copy(local_gc, gc); if (x_axis > y_axis) { /* Draw in x axis */ width = y_axis; points[0].x = -(x_axis >> 1) + (y_axis >> 1); points[0].y = 0; points[1].x = (x_axis >> 1) - (y_axis >> 1); points[1].y = 0; } else { /* Draw in y axis */ width = x_axis; points[0].x = 0; points[0].y = -(y_axis >> 1) + (x_axis >> 1); points[1].x = 0; points[1].y = (y_axis >> 1) - (x_axis >> 1); } points[0] = rotate_point(points[0], angle_deg); points[0].x += x; points[0].y += y; points[1] = rotate_point(points[1], angle_deg); points[1].x += x; points[1].y += y; gdk_gc_set_line_attributes(local_gc, width, GDK_LINE_SOLID, GDK_CAP_ROUND, GDK_JOIN_MITER); gdk_draw_line(pixmap, local_gc, points[0].x, points[0].y, points[1].x, points[1].y); gdk_gc_unref(local_gc); return; } /* gerbv_gdk_draw_oval */ /* * Draws an arc * Draws an arc _centered_ at x,y * direction: 0 counterclockwise, 1 clockwise */ static void gerbv_gdk_draw_arc(GdkPixmap *pixmap, GdkGC *gc, int x, int y, int width, int height, double angle1, double angle2) { gint real_x = x - width / 2; gint real_y = y - height / 2; gdk_draw_arc(pixmap, gc, FALSE, real_x, real_y, width, height, round(64*fmod(angle1, 360)), round(64*(angle2 - angle1))); } /* gerbv_gdk_draw_arc */ void draw_gdk_render_polygon_object (gerbv_net_t *oldNet, gerbv_image_t *image, double sr_x, double sr_y, cairo_matrix_t *fullMatrix, cairo_matrix_t *scaleMatrix, GdkGC *gc, GdkGC *pgc, GdkPixmap **pixmap) { gerbv_net_t *currentNet; gint x2,y2,cp_x=0,cp_y=0,cir_width=0; GdkPoint *points = NULL; unsigned int pointArraySize, curr_point_idx; int steps,i; gdouble angleDiff, tempX, tempY; /* save the first net in the polygon as the "ID" net pointer in case we are saving this net to the selection array */ curr_point_idx = 0; pointArraySize = 0; for (currentNet = oldNet->next; currentNet!=NULL; currentNet = currentNet->next){ tempX = currentNet->stop_x + sr_x; tempY = currentNet->stop_y + sr_y; cairo_matrix_transform_point (fullMatrix, &tempX, &tempY); x2 = (int)round(tempX); y2 = (int)round(tempY); /* * If circle segment, scale and translate that one too */ if (currentNet->cirseg) { tempX = currentNet->cirseg->width; tempY = currentNet->cirseg->height; cairo_matrix_transform_point (scaleMatrix, &tempX, &tempY); /* Variables can be negative after transformation */ tempX = fabs(tempX); cir_width = (int)round(tempX); tempX = currentNet->cirseg->cp_x + sr_x; tempY = currentNet->cirseg->cp_y + sr_y; cairo_matrix_transform_point (fullMatrix, &tempX, &tempY); cp_x = (int)round(tempX); cp_y = (int)round(tempY); } switch (currentNet->interpolation) { case GERBV_INTERPOLATION_LINEARx1 : case GERBV_INTERPOLATION_LINEARx10 : case GERBV_INTERPOLATION_LINEARx01 : case GERBV_INTERPOLATION_LINEARx001 : if (pointArraySize < (curr_point_idx + 1)) { pointArraySize = curr_point_idx + 1; points = (GdkPoint *)g_realloc(points, pointArraySize*sizeof(GdkPoint)); } points[curr_point_idx].x = x2; points[curr_point_idx].y = y2; curr_point_idx++; break; case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : /* we need to chop up the arc into small lines for rendering with GDK */ angleDiff = currentNet->cirseg->angle2 - currentNet->cirseg->angle1; steps = (int) abs(angleDiff); if (pointArraySize < (curr_point_idx + steps)) { pointArraySize = curr_point_idx + steps; points = (GdkPoint *)g_realloc(points, pointArraySize*sizeof(GdkPoint)); } for (i=0; icirseg->angle1 + (angleDiff * i) / steps)); points[curr_point_idx].y = cp_y - cir_width / 2.0 * sin (DEG2RAD(currentNet->cirseg->angle1 + (angleDiff * i) / steps)); curr_point_idx++; } break; case GERBV_INTERPOLATION_PAREA_END : gdk_gc_copy(pgc, gc); gdk_gc_set_line_attributes(pgc, 1, GDK_LINE_SOLID, GDK_CAP_PROJECTING, GDK_JOIN_MITER); gdk_draw_polygon(*pixmap, pgc, 1, points, curr_point_idx); g_free(points); points = NULL; return; default: GERB_COMPILE_WARNING( _("Skipped interpolation type %d"), currentNet->interpolation); break; } } return; } void draw_gdk_apply_netstate_transformation (cairo_matrix_t *fullMatrix, cairo_matrix_t *scaleMatrix, gerbv_netstate_t *state) { /* apply scale factor */ cairo_matrix_scale (fullMatrix, state->scaleA, state->scaleB); cairo_matrix_scale (scaleMatrix, state->scaleA, state->scaleB); /* apply offset */ cairo_matrix_translate (fullMatrix, state->offsetA, state->offsetB); /* apply mirror */ switch (state->mirrorState) { case GERBV_MIRROR_STATE_FLIPA: cairo_matrix_scale (fullMatrix, -1, 1); cairo_matrix_scale (scaleMatrix, -1, 1); break; case GERBV_MIRROR_STATE_FLIPB: cairo_matrix_scale (fullMatrix, 1, -1); cairo_matrix_scale (scaleMatrix, -1, 1); break; case GERBV_MIRROR_STATE_FLIPAB: cairo_matrix_scale (fullMatrix, -1, -1); cairo_matrix_scale (scaleMatrix, -1, 1); break; default: break; } /* finally, apply axis select */ if (state->axisSelect == GERBV_AXIS_SELECT_SWAPAB) { /* we do this by rotating 270 (counterclockwise, then mirroring the Y axis */ cairo_matrix_rotate (fullMatrix, M_PI + M_PI_2); cairo_matrix_scale (fullMatrix, 1, -1); } } static void draw_gdk_cross (GdkPixmap *pixmap, GdkGC *gc, gint xc, gint yc, gint r) { gdk_gc_set_line_attributes (gc, 1, GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER); gdk_draw_line (pixmap, gc, xc - r, yc, xc + r, yc); gdk_draw_line (pixmap, gc, xc, yc - r, xc, yc + r); } /* * Convert a gerber image to a GDK clip mask to be used when creating pixmap */ int draw_gdk_image_to_pixmap(GdkPixmap **pixmap, gerbv_image_t *image, double scale, double trans_x, double trans_y, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_render_info_t *renderInfo, gerbv_user_transformation_t transform) { const int hole_cross_inc_px = 8; GdkGC *gc = gdk_gc_new(*pixmap); GdkGC *pgc = gdk_gc_new(*pixmap); GdkGCValues gc_values; struct gerbv_net *net; gerbv_netstate_t *oldState; gerbv_layer_t *oldLayer; gint x1, y1, x2, y2; glong xlong1, ylong1, xlong2, ylong2; int p1, p2; int cir_width = 0, cir_height = 0; int cp_x = 0, cp_y = 0; GdkColor transparent, opaque; gerbv_polarity_t polarity; gdouble tempX, tempY, r; gdouble minX=0,minY=0,maxX=0,maxY=0; if (image == NULL || image->netlist == NULL) { gdk_gc_unref(gc); gdk_gc_unref(pgc); return 0; } if (transform.inverted) { if (image->info->polarity == GERBV_POLARITY_POSITIVE) polarity = GERBV_POLARITY_NEGATIVE; else polarity = GERBV_POLARITY_POSITIVE; } else { polarity = image->info->polarity; } if (drawMode == DRAW_SELECTIONS) polarity = GERBV_POLARITY_POSITIVE; gboolean useOptimizations = TRUE; // if the user is using any transformations for this layer, then don't bother using rendering // optimizations if (fabs(transform.translateX) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.translateY) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.scaleX - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.scaleY - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.rotation) > GERBV_PRECISION_ANGLE_RAD || transform.mirrorAroundX || transform.mirrorAroundY) useOptimizations = FALSE; // calculate the transformation matrix for the user_transformation options cairo_matrix_t fullMatrix, scaleMatrix; cairo_matrix_init (&fullMatrix, 1, 0, 0, 1, 0, 0); cairo_matrix_init (&scaleMatrix, 1, 0, 0, 1, 0, 0); cairo_matrix_translate (&fullMatrix, trans_x, trans_y); cairo_matrix_scale (&fullMatrix, scale, scale); cairo_matrix_scale (&scaleMatrix, scale, scale); /* offset image */ cairo_matrix_translate (&fullMatrix, transform.translateX, -1*transform.translateY); // don't use mirroring for the scale matrix gdouble scaleX = transform.scaleX; gdouble scaleY = -1*transform.scaleY; cairo_matrix_scale (&scaleMatrix, scaleX, -1*scaleY); if (transform.mirrorAroundX) scaleY *= -1; if (transform.mirrorAroundY) scaleX *= -1; cairo_matrix_scale (&fullMatrix, scaleX, scaleY); /* do image rotation */ cairo_matrix_rotate (&fullMatrix, transform.rotation); //cairo_matrix_rotate (&scaleMatrix, transform.rotation); /* do image rotation */ cairo_matrix_rotate (&fullMatrix, image->info->imageRotation); if (useOptimizations) { minX = renderInfo->lowerLeftX; minY = renderInfo->lowerLeftY; maxX = renderInfo->lowerLeftX + (renderInfo->displayWidth / renderInfo->scaleFactorX); maxY = renderInfo->lowerLeftY + (renderInfo->displayHeight / renderInfo->scaleFactorY); } /* Set up the two "colors" we have */ opaque.pixel = 0; /* opaque will not let color through */ transparent.pixel = 1; /* transparent will let color through */ /* * Clear clipmask and set draw color depending image on image polarity */ if (polarity == GERBV_POLARITY_NEGATIVE) { gdk_gc_set_foreground(gc, &transparent); gdk_draw_rectangle(*pixmap, gc, TRUE, 0, 0, -1, -1); gdk_gc_set_foreground(gc, &opaque); } else { gdk_gc_set_foreground(gc, &opaque); gdk_draw_rectangle(*pixmap, gc, TRUE, 0, 0, -1, -1); gdk_gc_set_foreground(gc, &transparent); } oldLayer = image->layers; oldState = image->states; for (net = image->netlist->next ; net != NULL; net = gerbv_image_return_next_renderable_object(net)) { int repeat_X=1, repeat_Y=1; double repeat_dist_X=0.0, repeat_dist_Y=0.0; int repeat_i, repeat_j; /* * If step_and_repeat (%SR%) used, repeat the drawing; */ repeat_X = net->layer->stepAndRepeat.X; repeat_Y = net->layer->stepAndRepeat.Y; repeat_dist_X = net->layer->stepAndRepeat.dist_X; repeat_dist_Y = net->layer->stepAndRepeat.dist_Y; /* check if this is a new netstate */ if (net->state != oldState){ /* it's a new state, so recalculate the new transformation matrix for it */ draw_gdk_apply_netstate_transformation (&fullMatrix, &scaleMatrix, net->state); oldState = net->state; } /* check if this is a new layer */ /* for now, only do layer rotations in GDK rendering */ if (net->layer != oldLayer){ cairo_matrix_rotate (&fullMatrix, net->layer->rotation); oldLayer = net->layer; } if (drawMode == DRAW_SELECTIONS) { int i; gboolean foundNet = FALSE; gerbv_selection_item_t sItem; for (i=0; iselectedNodeArray->len; i++){ sItem = g_array_index (selectionInfo->selectedNodeArray, gerbv_selection_item_t, i); if (sItem.net == net) { foundNet = TRUE; break; } } if (!foundNet) continue; } for(repeat_i = 0; repeat_i < repeat_X; repeat_i++) { for(repeat_j = 0; repeat_j < repeat_Y; repeat_j++) { double sr_x = repeat_i * repeat_dist_X; double sr_y = repeat_j * repeat_dist_Y; if ((useOptimizations)&&((net->boundingBox.right+sr_x < minX) || (net->boundingBox.left+sr_x > maxX) || (net->boundingBox.top+sr_y < minY) || (net->boundingBox.bottom+sr_y > maxY))) { continue; } /* * If circle segment, scale and translate that one too */ if (net->cirseg) { tempX = net->cirseg->width; tempY = net->cirseg->height; cairo_matrix_transform_point (&scaleMatrix, &tempX, &tempY); /* Variables can be negative after transformation */ tempX = fabs(tempX); tempY = fabs(tempY); cir_width = (int)round(tempX); cir_height = (int)round(tempY); tempX = net->cirseg->cp_x; tempY = net->cirseg->cp_y; cairo_matrix_transform_point (&fullMatrix, &tempX, &tempY); cp_x = (int)round(tempX); cp_y = (int)round(tempY); } /* * Set GdkFunction depending on if this (gerber) layer is inverted * and allow for the photoplot being negative. */ gdk_gc_set_function(gc, GDK_COPY); if ((net->layer->polarity == GERBV_POLARITY_CLEAR) != (polarity == GERBV_POLARITY_NEGATIVE)) gdk_gc_set_foreground(gc, &opaque); else gdk_gc_set_foreground(gc, &transparent); /* * Polygon Area Fill routines */ switch (net->interpolation) { case GERBV_INTERPOLATION_PAREA_START : draw_gdk_render_polygon_object (net,image,sr_x,sr_y,&fullMatrix, &scaleMatrix,gc,pgc,pixmap); continue; /* make sure we completely skip over any deleted nodes */ case GERBV_INTERPOLATION_DELETED: continue; default : break; } /* * If aperture state is off we allow use of undefined apertures. * This happens when gerber files starts, but hasn't decided on * which aperture to use. */ if (image->aperture[net->aperture] == NULL) { /* Commenting this out since it gets emitted every time you click on the screen if (net->aperture_state != GERBV_APERTURE_STATE_OFF) GERB_MESSAGE("Aperture D%d is not defined", net->aperture); */ continue; } /* * Scale points with window scaling and translate them */ tempX = net->start_x + sr_x; tempY = net->start_y + sr_y; cairo_matrix_transform_point (&fullMatrix, &tempX, &tempY); xlong1 = (int)round(tempX); ylong1 = (int)round(tempY); tempX = net->stop_x + sr_x; tempY = net->stop_y + sr_y; cairo_matrix_transform_point (&fullMatrix, &tempX, &tempY); xlong2 = (int)round(tempX); ylong2 = (int)round(tempY); /* if the object is way outside our view window, just skip over it in order to eliminate some GDK clipping problems at high zoom levels */ if ((xlong1 < -10000) && (xlong2 < -10000)) continue; if ((ylong1 < -10000) && (ylong2 < -10000)) continue; if ((xlong1 > 10000) && (xlong2 > 10000)) continue; if ((ylong1 > 10000) && (ylong2 > 10000)) continue; if (xlong1 > G_MAXINT) x1 = G_MAXINT; else if (xlong1 < G_MININT) x1 = G_MININT; else x1 = (int)xlong1; if (xlong2 > G_MAXINT) x2 = G_MAXINT; else if (xlong2 < G_MININT) x2 = G_MININT; else x2 = (int)xlong2; if (ylong1 > G_MAXINT) y1 = G_MAXINT; else if (ylong1 < G_MININT) y1 = G_MININT; else y1 = (int)ylong1; if (ylong2 > G_MAXINT) y2 = G_MAXINT; else if (ylong2 < G_MININT) y2 = G_MININT; else y2 = (int)ylong2; switch (net->aperture_state) { case GERBV_APERTURE_STATE_ON : tempX = image->aperture[net->aperture]->parameter[0]; cairo_matrix_transform_point (&scaleMatrix, &tempX, &tempY); /* Variables can be negative after transformation */ tempX = fabs(tempX); p1 = (int)round(tempX); gdk_gc_set_line_attributes(gc, p1, GDK_LINE_SOLID, (image->aperture[net->aperture]->type == GERBV_APTYPE_RECTANGLE)? GDK_CAP_PROJECTING: GDK_CAP_ROUND, GDK_JOIN_MITER); switch (net->interpolation) { case GERBV_INTERPOLATION_LINEARx10 : case GERBV_INTERPOLATION_LINEARx01 : case GERBV_INTERPOLATION_LINEARx001 : GERB_MESSAGE(_("Linear != x1")); gdk_gc_set_line_attributes(gc, p1, GDK_LINE_ON_OFF_DASH, GDK_CAP_ROUND, GDK_JOIN_MITER); gdk_draw_line(*pixmap, gc, x1, y1, x2, y2); gdk_gc_set_line_attributes(gc, p1, GDK_LINE_SOLID, GDK_CAP_ROUND, GDK_JOIN_MITER); break; case GERBV_INTERPOLATION_LINEARx1 : if (image->aperture[net->aperture]->type != GERBV_APTYPE_RECTANGLE) { gdk_draw_line(*pixmap, gc, x1, y1, x2, y2); if (renderInfo->show_cross_on_drill_holes && image->layertype == GERBV_LAYERTYPE_DRILL) { /* Draw crosses on drill slot start and end */ r = p1/2.0 + hole_cross_inc_px; draw_gdk_cross(*pixmap, gc, x1, y1, r); draw_gdk_cross(*pixmap, gc, x2, y2, r); } break; } gint dx, dy; GdkPoint poly[6]; tempX = image->aperture[net->aperture]->parameter[0]/2; tempY = image->aperture[net->aperture]->parameter[1]/2; cairo_matrix_transform_point (&scaleMatrix, &tempX, &tempY); dx = (int)round(tempX); dy = (int)round(tempY); if(x1 > x2) dx = -dx; if(y1 > y2) dy = -dy; poly[0].x = x1 - dx; poly[0].y = y1 - dy; poly[1].x = x1 - dx; poly[1].y = y1 + dy; poly[2].x = x2 - dx; poly[2].y = y2 + dy; poly[3].x = x2 + dx; poly[3].y = y2 + dy; poly[4].x = x2 + dx; poly[4].y = y2 - dy; poly[5].x = x1 + dx; poly[5].y = y1 - dy; gdk_draw_polygon(*pixmap, gc, 1, poly, 6); break; case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : gerbv_gdk_draw_arc(*pixmap, gc, cp_x, cp_y, cir_width, cir_height, net->cirseg->angle1 + RAD2DEG(transform.rotation), net->cirseg->angle2 + RAD2DEG(transform.rotation)); break; default : GERB_COMPILE_WARNING( _("Skipped interpolation type %d"), net->interpolation); break; } break; case GERBV_APERTURE_STATE_OFF : break; case GERBV_APERTURE_STATE_FLASH : tempX = image->aperture[net->aperture]->parameter[0]; tempY = image->aperture[net->aperture]->parameter[1]; cairo_matrix_transform_point (&scaleMatrix, &tempX, &tempY); /* Variables can be negative after transformation */ tempX = fabs(tempX); tempY = fabs(tempY); p1 = (int)round(tempX); p2 = (int)round(tempY); switch (image->aperture[net->aperture]->type) { case GERBV_APTYPE_CIRCLE : gerbv_gdk_draw_circle(*pixmap, gc, TRUE, x2, y2, p1); if (renderInfo->show_cross_on_drill_holes && image->layertype == GERBV_LAYERTYPE_DRILL) { r = p1/2.0 + hole_cross_inc_px; draw_gdk_cross(*pixmap, gc, x2, y2, r); } /* * If circle has an inner diameter we must remove * that part of the circle to make a hole in it. * We should actually support square holes too, * but due to laziness I don't. */ if (p2) { gdk_gc_get_values(gc, &gc_values); if (gc_values.foreground.pixel == opaque.pixel) { gdk_gc_set_foreground(gc, &transparent); gerbv_gdk_draw_circle(*pixmap, gc, TRUE, x2, y2, p2); gdk_gc_set_foreground(gc, &opaque); } else { gdk_gc_set_foreground(gc, &opaque); gerbv_gdk_draw_circle(*pixmap, gc, TRUE, x2, y2, p2); gdk_gc_set_foreground(gc, &transparent); } } break; case GERBV_APTYPE_RECTANGLE: gerbv_gdk_draw_rectangle(*pixmap, gc, TRUE, x2, y2, p1, p2, RAD2DEG(transform.rotation + image->info->imageRotation)); break; case GERBV_APTYPE_OVAL : gerbv_gdk_draw_oval(*pixmap, gc, TRUE, x2, y2, p1, p2, RAD2DEG(transform.rotation + image->info->imageRotation)); break; case GERBV_APTYPE_POLYGON : /* TODO: gdk_draw_polygon() */ gerbv_gdk_draw_circle(*pixmap, gc, TRUE, x2, y2, p1); break; case GERBV_APTYPE_MACRO : /* TODO: check line22 and others */ gerbv_gdk_draw_amacro(*pixmap, gc, image->aperture[net->aperture]->simplified, scale, x2, y2); break; default : GERB_MESSAGE(_("Unknown aperture type %d"), image->aperture[net->aperture]->type); return 0; } break; default : GERB_MESSAGE(_("Unknown aperture state %d"), net->aperture_state); return 0; } } } } /* * Destroy GCs before exiting */ gdk_gc_unref(gc); gdk_gc_unref(pgc); return 1; } /* image2pixmap */ gerbv-2.7.0/src/callbacks.c0000644000175000017500000044341313421555714015377 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file callbacks.c \brief Callback functions for the GUI widgets \ingroup gerbv */ #include "gerbv.h" #include "drill.h" #if !defined(WIN32) && !defined(QUARTZ) # include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #include #include "common.h" #include "main.h" #include "attribute.h" #include "callbacks.h" #include "interface.h" #include "project.h" #include "render.h" #include "selection.h" #include "table.h" #include "draw-gdk.h" #include "draw.h" #ifdef WIN32 # include #elif QUARTZ # include #else # include #endif #define dprintf if(DEBUG) printf /* This default extension should really not be changed, but if it absolutely * must change, the ../win32/gerbv.nsi.in *must* be changed to reflect that. * Just grep for the extension (gvp) and change it in two places in that file. */ #define GERBV_PROJECT_FILE_EXT ".gvp" const char *gerbv_project_file_name = N_("Gerbv Project"); const char *gerbv_project_file_pat = "*" GERBV_PROJECT_FILE_EXT; static gint callbacks_get_selected_row_index (void); static void callbacks_units_changed (gerbv_gui_unit_t unit); static void callbacks_update_statusbar_coordinates (gint x, gint y); static void callbacks_update_ruler_scales (void); static void callbacks_render_type_changed (void); static void show_no_layers_warning (void); static double screen_units(double); static const char *screen_units_str(void); static double line_length(double, double, double, double); static double arc_length(double, double); static void aperture_state_report (gerbv_net_t *, gerbv_image_t *, gerbv_project_t *); static void aperture_report(gerbv_aperture_t *[], int, double, double, gerbv_image_t *, gerbv_project_t *); static void drill_report(gerbv_aperture_t *[], int); static void parea_report(gerbv_net_t *, gerbv_image_t *, gerbv_project_t *); static void net_layer_file_report(gerbv_net_t *, gerbv_image_t *, gerbv_project_t *); static void analyze_window_size_restore(GtkWidget *); static void analyze_window_size_store(GtkWidget *, gpointer); static void update_selected_object_message (gboolean userTriedToSelect); gchar *utf8_strncpy(gchar *dst, const gchar *src, gsize byte_len) { /* -1 for '\0' in buffer */ glong char_len = g_utf8_strlen(src, byte_len - 1); return g_utf8_strncpy(dst, src, char_len); } void utf8_snprintf(gchar *dst, gsize byte_len, const gchar *fmt, ...) { va_list ap; va_start(ap, fmt); gchar *str = g_strdup_vprintf(fmt, ap); va_end(ap); utf8_strncpy(dst, str, byte_len); g_free(str); } /* --------------------------------------------------------- */ static void show_no_layers_warning (void) { gchar *str = g_new(gchar, MAX_DISTLEN); utf8_strncpy(str, _("No layers are currently loaded. A layer must be loaded first."), MAX_DISTLEN - 7); utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, "%s", str); g_free(str); callbacks_update_statusbar(); } /* --------------------------------------------------------- */ /** * The file -> new menu item was selected. Create new * project. * */ void callbacks_new_project_activate (GtkMenuItem *menuitem, gpointer user_data) { if (mainProject->last_loaded >= 0) { if (!interface_get_alert_dialog_response ( _("Do you want to close any open layers " "and start a new project?"), _("Starting a new project will cause all currently " "open layers to be closed. Any unsaved changes " "will be lost."), FALSE, NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL)) return; } /* Unload all layers and then clear layer window */ gerbv_unload_all_layers (mainProject); callbacks_update_layer_tree (); selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); /* Destroy project info */ if (mainProject->project) { g_free(mainProject->project); mainProject->project = NULL; } render_refresh_rendered_image_on_screen(); } /* --------------------------------------------------------- */ /** * The file -> open menu item was selected. Open a * project file. * */ void open_project(char *project_filename) { /* TODO: check if layers is modified and show it to user. */ if (mainProject->last_loaded >= 0 && !interface_get_alert_dialog_response ( _("Do you want to close any open layers and load " "an existing project?"), _("Loading a project will cause all currently open " "layers to be closed. Any unsaved changes " "will be lost."), FALSE, NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL)) { return; } /* Update the last folder */ g_free (mainProject->path); mainProject->path = project_filename; gerbv_unload_all_layers (mainProject); main_open_project_from_filename (mainProject, project_filename); } /* --------------------------------------------------------- */ /** * File -> open action requested * or file drop event happened. * Open a layer (or layers) or one Gerbv project from the files. * This function will show a question if the layer to be opened * is already open. */ void open_files(GSList *filenames) { GSList *fns = NULL; /* File names to ask */ GSList *fns_is_mod = NULL; /* File name layer is modified */ GSList *fns_cnt = NULL; /* File names count */ GSList *fns_lay_num = NULL; /* Layer number for fns */ GSList *cnt = NULL; /* File names count unsorted by layers, 0 -- file not yet loaded as layer */ gint answer; if (filenames == NULL) return; /* Check if there is a Gerbv project in the list. * If there is least open only that and ignore the rest. */ for (GSList *fn = filenames; fn; fn = fn->next) { gboolean is_project = FALSE; if (0 == project_is_gerbv_project(fn->data, &is_project) && is_project) { open_project(fn->data); gerbv_render_zoom_to_fit_display(mainProject, &screenRenderInfo); render_refresh_rendered_image_on_screen(); callbacks_update_layer_tree(); return; } } /* Count opened filenames and place result in list */ for (GSList *fn = filenames; fn; fn = fn->next) { gint c = 0; for (gint fidx = 0; fidx <= mainProject->last_loaded; ++fidx) { gchar *fpn = mainProject->file[fidx]->fullPathname; if (strlen(fpn) == strlen(fn->data) && 0 == g_ascii_strncasecmp(fpn, fn->data, strlen(fn->data))) { c++; } } cnt = g_slist_append(cnt, GINT_TO_POINTER(c)); } /* Make fns, fns_is_mod and fns_cnt lists sorted by layers */ for (gint fidx = 0; fidx <= mainProject->last_loaded; ++fidx) { gchar *fpn = mainProject->file[fidx]->fullPathname; for (GSList *fn = filenames; fn; fn = fn->next) { if (strlen(fpn) == strlen(fn->data) && 0 == g_ascii_strncasecmp(fpn, fn->data, strlen(fn->data))) { fns = g_slist_append(fns, fn->data); fns_is_mod = g_slist_append(fns_is_mod, GINT_TO_POINTER(mainProject-> file[fidx]-> layer_dirty)); fns_cnt = g_slist_append(fns_cnt, g_slist_nth_data(cnt, g_slist_position( filenames, fn))); fns_lay_num = g_slist_append(fns_lay_num, GINT_TO_POINTER(fidx)); break; } } } answer = GTK_RESPONSE_NONE; if (g_slist_length(fns) > 0) answer = interface_reopen_question(fns, fns_is_mod, fns_cnt, fns_lay_num); switch (answer) { case GTK_RESPONSE_CANCEL: case GTK_RESPONSE_NONE: case GTK_RESPONSE_DELETE_EVENT: /* Dialog is closed or Esc is pressed, skip all */ break; case GTK_RESPONSE_YES: /* Reload layer was selected */ for (GSList *fn = fns; fn; fn = fn->next) { if (fn->data != NULL) gerbv_revert_file(mainProject, GPOINTER_TO_INT( g_slist_nth_data (fns_lay_num, g_slist_position (fns, fn)))); } break; case GTK_RESPONSE_OK: /* Open as a new layer was selected */ /* To open as new only _one_ instance of file, check filenames * by selected files in fns */ for (GSList *fn = filenames; fn; fn = fn->next) { if (NULL != g_slist_find (fns, fn->data)) gerbv_open_layer_from_filename(mainProject, fn->data); } break; } /* Add not loaded files (cnt == 0) in the end */ for (GSList *fn = filenames; fn; fn = fn->next) { if (0 == GPOINTER_TO_INT(g_slist_nth_data(cnt, g_slist_position(filenames, fn)))) gerbv_open_layer_from_filename (mainProject, fn->data); } g_slist_free(fns); g_slist_free(fns_is_mod); g_slist_free(fns_cnt); g_slist_free(fns_lay_num); g_slist_free(cnt); gerbv_render_zoom_to_fit_display (mainProject, &screenRenderInfo); render_refresh_rendered_image_on_screen(); callbacks_update_layer_tree(); } /* --------------------------------------------------------- */ /** * The file -> open action was selected. Open a * layer (or layers) or a project file. * */ void callbacks_open_activate(GtkMenuItem *menuitem, gpointer user_data) { GSList *fns = NULL; screen.win.gerber = gtk_file_chooser_dialog_new ( _("Open Gerbv project, Gerber, drill, " "or pick&place files"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); gtk_file_chooser_set_select_multiple( (GtkFileChooser *)screen.win.gerber, TRUE); gtk_file_chooser_set_current_folder( (GtkFileChooser *)screen.win.gerber, mainProject->path); gtk_widget_show (screen.win.gerber); if (gtk_dialog_run ((GtkDialog*)screen.win.gerber) == GTK_RESPONSE_ACCEPT) { fns = gtk_file_chooser_get_filenames( GTK_FILE_CHOOSER (screen.win.gerber)); /* Update the last folder */ g_free (mainProject->path); mainProject->path = gtk_file_chooser_get_current_folder( (GtkFileChooser *)screen.win.gerber); } gtk_widget_destroy (screen.win.gerber); open_files (fns); g_slist_free_full (fns, g_free); } /* --------------------------------------------------------- */ void callbacks_revert_activate (GtkMenuItem *menuitem, gpointer user_data) { gerbv_revert_all_files (mainProject); selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree (); } /* --------------------------------------------------------- */ void callbacks_save_project_activate (GtkMenuItem *menuitem, gpointer user_data) { if (mainProject->project) main_save_project_from_filename (mainProject, mainProject->project); else callbacks_generic_save_activate (menuitem, (gpointer) CALLBACKS_SAVE_PROJECT_AS); callbacks_update_layer_tree(); return; } /* --------------------------------------------------------- */ void callbacks_save_layer_activate (GtkMenuItem *menuitem, gpointer user_data) { /* first figure out which layer in the layer side menu is selected */ gint index=callbacks_get_selected_row_index(); /* Now save that layer */ if (index >= 0) { if (!gerbv_save_layer_from_index (mainProject, index, mainProject->file[index]->fullPathname)) { interface_show_alert_dialog(_("Gerbv cannot export this file type"), NULL, FALSE, NULL); mainProject->file[index]->layer_dirty = FALSE; callbacks_update_layer_tree(); return; } } callbacks_update_layer_tree(); return; } struct l_image_info { gerbv_image_t *image; gerbv_user_transformation_t *transform; }; /* --------------------------------------------------------- */ /**Go through each file and look at visibility, then type. Make sure we have at least 2 files. */ gerbv_image_t *merge_images (int type) { gint i, filecount, img; gerbv_image_t *out; struct l_image_info { gerbv_image_t *image; gerbv_user_transformation_t *transform; } *images; images=(struct l_image_info *)g_new0(struct l_image_info,1); out = NULL; switch(type){ case CALLBACKS_SAVE_FILE_DRILLM: type=GERBV_LAYERTYPE_DRILL; break; case CALLBACKS_SAVE_FILE_RS274XM: type=GERBV_LAYERTYPE_RS274X; break; default: GERB_COMPILE_ERROR(_("Unknown Layer type for merge")); goto err; } dprintf("Looking for matching files\n"); for (i = img = filecount = 0; i < mainProject->max_files; ++i) { if (mainProject->file[i] && mainProject->file[i]->isVisible && (mainProject->file[i]->image->layertype == type)) { ++filecount; dprintf("Adding '%s'\n", mainProject->file[i]->name); images[img].image=mainProject->file[i]->image; images[img++].transform=&mainProject->file[i]->transform; images = (struct l_image_info *)g_renew(struct l_image_info, images, img+1); } } if (filecount < 2) { GERB_COMPILE_ERROR(_("Not Enough Files of same type to merge")); goto err; } dprintf("Now merging files\n"); for (i = 0; i < img; ++i) { gerbv_user_transformation_t *thisTransform; gerbv_user_transformation_t identityTransform = {0,0,1,1,0,FALSE,FALSE,FALSE}; thisTransform=images[i].transform; if (NULL == thisTransform) thisTransform = &identityTransform; if (0 == i) out = gerbv_image_duplicate_image(images[i].image, thisTransform); else gerbv_image_copy_image(images[i].image, thisTransform, out); } err: g_free(images); return out; } /* --------------------------------------------------------- */ int visible_file_name(gchar **file_name, gchar **dir_name, gerbv_layertype_t layer_type, /* -1 for all types */ const gchar *file_extension, const gchar *untitled_file_extension) { unsigned int count = 0; gerbv_fileinfo_t *first_vis_file = NULL; for (int i = 0; i < mainProject->max_files; ++i) { if (mainProject->file[i] && mainProject->file[i]->isVisible && (layer_type == -1 || layer_type == mainProject->file[i]->image->layertype)) { if (first_vis_file == NULL) { first_vis_file = mainProject->file[i]; /* Always directory of first visible file */ if (dir_name) *dir_name = g_path_get_dirname ( first_vis_file->fullPathname); } if (++count == 2 && file_name) { *file_name = g_strdup_printf("%s%s", pgettext("file name", "untitled"), untitled_file_extension); } } } if (count == 1 && file_name) *file_name = g_strdup_printf("%s%s", first_vis_file->name, file_extension); return count; } /* --------------------------------------------------------- */ void callbacks_generic_save_activate (GtkMenuItem *menuitem, gpointer user_data) { gchar *new_file_name = NULL; gchar *file_name = NULL; gchar *dir_name = NULL; gboolean error_visible_layers = FALSE; gchar *windowTitle = NULL; gerbv_fileinfo_t *act_file; gint file_index; gint processType = GPOINTER_TO_INT (user_data); GtkFileFilter *filter; GtkSpinButton *spin_but; GtkTooltips *tooltips; GtkWidget *label; GtkWidget *hbox; static gint dpi = 0; file_index = callbacks_get_selected_row_index (); if (file_index < 0) { interface_show_alert_dialog (_("No layer is currently active"), _("Please select a layer and try again."), FALSE, NULL); return; } act_file = mainProject->file[file_index]; screen.win.gerber = gtk_file_chooser_dialog_new ("", NULL, GTK_FILE_CHOOSER_ACTION_SAVE, NULL, NULL, NULL); GtkFileChooser *file_chooser_p = GTK_FILE_CHOOSER(screen.win.gerber); gtk_file_chooser_set_do_overwrite_confirmation (file_chooser_p, TRUE); hbox = gtk_hbox_new (0, 0); spin_but = GTK_SPIN_BUTTON(gtk_spin_button_new_with_range (0, 0, 1)); label = gtk_label_new (""); tooltips = gtk_tooltips_new (); gtk_box_pack_end (GTK_BOX(hbox), GTK_WIDGET(spin_but), 0, 0, 1); gtk_box_pack_end (GTK_BOX(hbox), label, 0, 0, 5); gtk_box_pack_end (GTK_BOX(GTK_DIALOG(screen.win.gerber)->vbox), hbox, 0, 0, 2); switch (processType) { case CALLBACKS_SAVE_PROJECT_AS: windowTitle = g_strdup (_("Save project as...")); if (mainProject->project) { file_name = g_path_get_basename (mainProject->project); dir_name = g_path_get_dirname (mainProject->project); } else { file_name = g_strdup_printf("%s%s", pgettext("file name", "untitled"), GERBV_PROJECT_FILE_EXT); dir_name= g_path_get_dirname (act_file->fullPathname); } filter = gtk_file_filter_new (); gtk_file_filter_set_name (filter, _(gerbv_project_file_name)); gtk_file_filter_add_pattern (filter, gerbv_project_file_pat); gtk_file_chooser_add_filter (file_chooser_p, filter); filter = gtk_file_filter_new (); gtk_file_filter_set_name (filter, _("All")); gtk_file_filter_add_pattern (filter, "*"); gtk_file_chooser_add_filter (file_chooser_p, filter); break; case CALLBACKS_SAVE_FILE_PS: windowTitle = g_strdup_printf ( _("Export visible layers to %s file as..."), _("PS")); if (0 == visible_file_name(&file_name, &dir_name, -1, ".ps", ".ps")) { error_visible_layers = TRUE; break; } break; case CALLBACKS_SAVE_FILE_PDF: windowTitle = g_strdup_printf ( _("Export visible layers to %s file as..."), _("PDF")); if (0 == visible_file_name(&file_name, &dir_name, -1, ".pdf", ".pdf")) { error_visible_layers = TRUE; break; } break; case CALLBACKS_SAVE_FILE_SVG: windowTitle = g_strdup_printf ( _("Export visible layers to %s file as..."), _("SVG")); if (0 == visible_file_name(&file_name, &dir_name, -1, ".svg", ".svg")) { error_visible_layers = TRUE; break; } break; case CALLBACKS_SAVE_FILE_DXF: #if HAVE_LIBDXFLIB windowTitle = g_strdup_printf ( _("Export \"%s\" layer #%d to DXF file as..."), act_file->name, file_index + 1); file_name = g_strconcat (act_file->name, ".dxf", NULL); dir_name = g_path_get_dirname (act_file->fullPathname); #endif break; case CALLBACKS_SAVE_FILE_PNG: windowTitle = g_strdup_printf ( _("Export visible layers to %s file as..."), _("PNG")); if (0 == visible_file_name(&file_name, &dir_name, -1, ".png", ".png")) { error_visible_layers = TRUE; break; } gtk_label_set_text (GTK_LABEL(label), _("DPI:")); gtk_spin_button_set_range (spin_but, 0, 6000); gtk_spin_button_set_increments (spin_but, 10, 100); gtk_tooltips_set_tip (tooltips, GTK_WIDGET(label), _("DPI value, autoscaling if 0"), NULL); gtk_tooltips_set_tip (tooltips, GTK_WIDGET(spin_but), _("DPI value, autoscaling if 0"), NULL); gtk_spin_button_set_value (spin_but, dpi); gtk_widget_show_all (hbox); break; case CALLBACKS_SAVE_FILE_RS274X: windowTitle = g_strdup_printf( _("Export \"%s\" layer #%d to " "RS-274X file as..."), act_file->name, file_index+1); if (GERBV_LAYERTYPE_RS274X != act_file->image->layertype) file_name = g_strconcat (act_file->name, ".gbr", NULL); else file_name = g_strdup (act_file->name); dir_name = g_path_get_dirname (act_file->fullPathname); break; case CALLBACKS_SAVE_FILE_RS274XM: windowTitle = g_strdup (_("Export merged visible layers to " "RS-274X file as...")); if (2 > visible_file_name(&file_name, &dir_name, GERBV_LAYERTYPE_RS274X, "", ".gbr")) { error_visible_layers = TRUE; break; } case CALLBACKS_SAVE_FILE_DRILL: windowTitle = g_strdup_printf( _("Export \"%s\" layer #%d to " "Excellon drill file as..."), act_file->name, file_index+1); if (GERBV_LAYERTYPE_DRILL != act_file->image->layertype) file_name = g_strconcat (act_file->name, ".drl", NULL); else file_name = g_strdup (act_file->name); dir_name = g_path_get_dirname (act_file->fullPathname); break; case CALLBACKS_SAVE_FILE_DRILLM: windowTitle = g_strdup (_("Export merged visible layers to " "Excellon drill file as...")); if (2 > visible_file_name(&file_name, &dir_name, GERBV_LAYERTYPE_DRILL, "", ".drl")) { error_visible_layers = TRUE; } break; case CALLBACKS_SAVE_FILE_IDRILL: windowTitle = g_strdup_printf( _("Export \"%s\" layer #%d to ISEL NCP drill file as..."), act_file->name, file_index+1); file_name = g_strconcat (act_file->name, ".ncp", NULL); dir_name = g_path_get_dirname (act_file->fullPathname); break; case CALLBACKS_SAVE_FILE_GEDA_PCB: windowTitle = g_strdup_printf ( _("Export \"%s\" layer #%d to gEDA PCB file as..."), act_file->name, file_index + 1); file_name = g_strconcat (act_file->name, ".pcb", NULL); dir_name = g_path_get_dirname (act_file->fullPathname); break; case CALLBACKS_SAVE_LAYER_AS: windowTitle = g_strdup_printf (_("Save \"%s\" layer #%d as..."), act_file->name, file_index+1); file_name = g_strdup (act_file->name); dir_name = g_path_get_dirname (act_file->fullPathname); break; } if (file_name != NULL) { gtk_file_chooser_set_current_name (file_chooser_p, file_name); g_free (file_name); } if (dir_name != NULL) { gtk_file_chooser_set_current_folder (file_chooser_p, dir_name); g_free (dir_name); } gtk_dialog_add_buttons (GTK_DIALOG(screen.win.gerber), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL); gtk_window_set_title (GTK_WINDOW(screen.win.gerber), windowTitle); g_free (windowTitle); if (error_visible_layers) { switch (processType) { case CALLBACKS_SAVE_FILE_RS274XM: interface_get_alert_dialog_response ( _("Not enough Gerber layers are visible"), _("Two or more Gerber layers must be visible " "for export with merge."), FALSE, NULL, NULL, GTK_STOCK_CANCEL); break; case CALLBACKS_SAVE_FILE_DRILLM: interface_get_alert_dialog_response ( _("Not enough Excellon layers are visible"), _("Two or more Excellon layers must be visible " "for export with merge."), FALSE, NULL, NULL, GTK_STOCK_CANCEL); break; default: interface_get_alert_dialog_response ( _("No layers are visible"), _("One or more " "layers must be visible for export."), FALSE, NULL, NULL, GTK_STOCK_CANCEL); } gtk_widget_destroy (screen.win.gerber); callbacks_update_layer_tree (); return; } gtk_widget_show (screen.win.gerber); if (gtk_dialog_run (GTK_DIALOG(screen.win.gerber)) == GTK_RESPONSE_ACCEPT) { new_file_name = gtk_file_chooser_get_filename (file_chooser_p); dpi = gtk_spin_button_get_value_as_int (spin_but); } gtk_widget_destroy (screen.win.gerber); if (!new_file_name) { callbacks_update_layer_tree (); return; } switch (processType) { case CALLBACKS_SAVE_PROJECT_AS: main_save_as_project_from_filename (mainProject, new_file_name); rename_main_window(new_file_name, NULL); break; case CALLBACKS_SAVE_FILE_PS: gerbv_export_postscript_file_from_project_autoscaled ( mainProject, new_file_name); break; case CALLBACKS_SAVE_FILE_PDF: gerbv_export_pdf_file_from_project_autoscaled ( mainProject, new_file_name); break; case CALLBACKS_SAVE_FILE_SVG: gerbv_export_svg_file_from_project_autoscaled ( mainProject, new_file_name); break; case CALLBACKS_SAVE_FILE_DXF: #if HAVE_LIBDXFLIB if (gerbv_export_dxf_file_from_image(new_file_name, act_file->image, &act_file->transform)) { GERB_MESSAGE ( _("\"%s\" layer #%d saved as DXF in \"%s\""), act_file->name, file_index + 1, new_file_name); } #endif break; case CALLBACKS_SAVE_FILE_PNG: if (dpi == 0) { gerbv_export_png_file_from_project_autoscaled ( mainProject, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight, new_file_name); } else { /* Non zero DPI */ gerbv_render_size_t bb; gerbv_render_get_boundingbox (mainProject, &bb); gfloat w = bb.right - bb.left; gfloat h = bb.bottom - bb.top; gerbv_render_info_t renderInfo = { dpi, dpi, bb.left - (w*GERBV_DEFAULT_BORDER_COEFF)/2.0, bb.top - (h*GERBV_DEFAULT_BORDER_COEFF)/2.0, GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, w*dpi*(1 + GERBV_DEFAULT_BORDER_COEFF), h*dpi*(1 + GERBV_DEFAULT_BORDER_COEFF), }; gerbv_export_png_file_from_project (mainProject, &renderInfo, new_file_name); } break; case CALLBACKS_SAVE_LAYER_AS: gerbv_save_layer_from_index (mainProject, file_index, new_file_name); /* Rename the file path in the index, so future saves will * reference the new file path */ g_free (act_file->fullPathname); act_file->fullPathname = g_strdup (new_file_name); g_free (act_file->name); act_file->name = g_path_get_basename (new_file_name); break; case CALLBACKS_SAVE_FILE_RS274X: if (gerbv_export_rs274x_file_from_image (new_file_name, act_file->image, &act_file->transform)) { GERB_MESSAGE ( _("\"%s\" layer #%d saved as Gerber in \"%s\""), act_file->name, file_index + 1, new_file_name); } break; case CALLBACKS_SAVE_FILE_DRILL: if (gerbv_export_drill_file_from_image (new_file_name, act_file->image, &act_file->transform)) { GERB_MESSAGE ( _("\"%s\" layer #%d saved as drill in \"%s\""), act_file->name, file_index + 1, new_file_name); } break; case CALLBACKS_SAVE_FILE_IDRILL: if (gerbv_export_isel_drill_file_from_image (new_file_name, act_file->image, &act_file->transform)) { GERB_MESSAGE ( _("\"%s\" layer #%d saved as ISEL NCP drill " "in \"%s\""), act_file->name, file_index + 1, new_file_name); } break; case CALLBACKS_SAVE_FILE_GEDA_PCB: if (gerbv_export_geda_pcb_file_from_image(new_file_name, act_file->image, &act_file->transform)) { GERB_MESSAGE ( _("\"%s\" layer #%d saved as gEDA PCB " "in \"%s\""), act_file->name, file_index + 1, new_file_name); } break; case CALLBACKS_SAVE_FILE_RS274XM: { gerbv_image_t *image; gerbv_user_transformation_t t = {0,0,1,1,0,FALSE,FALSE,FALSE}; if (NULL != (image = merge_images (processType))) { if (gerbv_export_rs274x_file_from_image ( new_file_name, image, &t)) { GERB_MESSAGE (_("Merged visible Gerber layers " "and saved in \"%s\""), new_file_name); } gerbv_destroy_image (image); } break; } case CALLBACKS_SAVE_FILE_DRILLM: { gerbv_image_t *image; gerbv_user_transformation_t t = {0,0,1,1,0,FALSE,FALSE,FALSE}; if (NULL != (image = merge_images (processType))) { gerbv_export_drill_file_from_image ( new_file_name, image, &t); gerbv_destroy_image (image); GERB_MESSAGE (_("Merged visible drill layers " "and saved in \"%s\""), new_file_name); } break; } } g_free (new_file_name); callbacks_update_layer_tree (); return; } /* --------------------------------------------------------- */ #if GTK_CHECK_VERSION(2,10,0) static void callbacks_begin_print (GtkPrintOperation *operation, GtkPrintContext *context, gpointer user_data) { gtk_print_operation_set_n_pages (operation, 1); } /* --------------------------------------------------------- */ static void callbacks_print_render_page (GtkPrintOperation *operation, GtkPrintContext *context, gint page_nr, gpointer user_data) { GtkPrintSettings *pSettings = gtk_print_operation_get_print_settings (operation); gerbv_render_info_t renderInfo = {1.0, 1.0, 0, 0, GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, (gint) gtk_print_context_get_width (context), (gint) gtk_print_context_get_height (context)}; cairo_t *cr; /* have to assume x and y resolutions are the same for now, since we don't support differing scales in the gerb_render_info_t struct yet */ gdouble xres = gtk_print_context_get_dpi_x (context); gdouble yres = gtk_print_context_get_dpi_y (context); gdouble scalePercentage = gtk_print_settings_get_scale (pSettings); renderInfo.scaleFactorX = scalePercentage / 100 * xres; renderInfo.scaleFactorY = scalePercentage / 100 * yres; gerbv_render_translate_to_fit_display (mainProject, &renderInfo); cr = gtk_print_context_get_cairo_context (context); gerbv_render_all_layers_to_cairo_target_for_vector_output (mainProject, cr, &renderInfo); } /* --------------------------------------------------------- */ void callbacks_print_activate (GtkMenuItem *menuitem, gpointer user_data) { GtkPrintOperation *print; /*GtkPrintOperationResult res;*/ print = gtk_print_operation_new (); g_signal_connect (print, "begin_print", G_CALLBACK (callbacks_begin_print), NULL); g_signal_connect (print, "draw_page", G_CALLBACK (callbacks_print_render_page), NULL); //GtkPrintSettings *pSettings = gtk_print_operation_get_print_settings (print); (void) gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, (GtkWindow *) screen.win.topLevelWindow , NULL); g_object_unref (print); } #endif /* GTK_CHECK_VERSION(2,10,0) */ /* --------------------------------------------------------- */ void callbacks_fullscreen_toggled (GtkMenuItem *menuitem, gpointer user_data) { //struct GtkWindow *win = (struct GtkWindow *)(screen.win.topLevelWindow); GdkWindowState state = gdk_window_get_state (gtk_widget_get_window(screen.win.topLevelWindow)); if(state & GDK_WINDOW_STATE_FULLSCREEN) gtk_window_unfullscreen (GTK_WINDOW(screen.win.topLevelWindow)); else gtk_window_fullscreen (GTK_WINDOW(screen.win.topLevelWindow)); } /* --------------------------------------------------------- */ void callbacks_show_toolbar_toggled (GtkMenuItem *menuitem, gpointer user_data) { gtk_widget_set_visible (user_data, GTK_CHECK_MENU_ITEM(menuitem)->active); } /* --------------------------------------------------------- */ void callbacks_show_sidepane_toggled (GtkMenuItem *menuitem, gpointer user_data) { gtk_widget_set_visible (user_data, GTK_CHECK_MENU_ITEM(menuitem)->active); } /* --------------------------------------------------------- */ void callbacks_show_selection_on_invisible (GtkMenuItem *menuitem, gpointer user_data) { mainProject->show_invisible_selection = GTK_CHECK_MENU_ITEM(menuitem)->active; render_refresh_rendered_image_on_screen(); } /* --------------------------------------------------------- */ void callbacks_show_cross_on_drill_holes (GtkMenuItem *menuitem, gpointer user_data) { screenRenderInfo.show_cross_on_drill_holes = GTK_CHECK_MENU_ITEM(menuitem)->active; render_refresh_rendered_image_on_screen(); } /* --------------------------------------------------------- */ /** View/"Toggle visibility layer X" or Current layer/"Toggle visibility" menu item was activated. * Set the isVisible flag on file X and update the treeview and rendering. */ void callbacks_toggle_layer_visibility_activate (GtkMenuItem *menuitem, gpointer user_data) { int i = GPOINTER_TO_INT(user_data); switch (i) { case LAYER_SELECTED: i = callbacks_get_selected_row_index (); /* No break */ default: if (0 <= i && i <= mainProject->last_loaded) { mainProject->file[i]->isVisible = !mainProject->file[i]->isVisible; } else { /* Not in range */ return; } break; case LAYER_ALL_ON: for (i = 0; i <= mainProject->last_loaded; i++) { mainProject->file[i]->isVisible = TRUE; } break; case LAYER_ALL_OFF: for (i = 0; i <= mainProject->last_loaded; i++) { mainProject->file[i]->isVisible = FALSE; } break; } callbacks_update_layer_tree (); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen (); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } } /* --------------------------------------------------------- */ void callbacks_zoom_in_activate (GtkMenuItem *menuitem, gpointer user_data) { render_zoom_display (ZOOM_IN, 0, 0, 0); } /* --------------------------------------------------------- */ void callbacks_zoom_out_activate (GtkMenuItem *menuitem, gpointer user_data) { render_zoom_display (ZOOM_OUT, 0, 0, 0); } /* --------------------------------------------------------- */ void callbacks_fit_to_window_activate (GtkMenuItem *menuitem, gpointer user_data) { gerbv_render_zoom_to_fit_display (mainProject, &screenRenderInfo); render_refresh_rendered_image_on_screen(); } /* --------------------------------------------------------- */ static const char *error_type_string(gerbv_message_type_t type) { switch (type) { case GERBV_MESSAGE_FATAL: return _("FATAL"); case GERBV_MESSAGE_ERROR: return _("ERROR"); case GERBV_MESSAGE_WARNING: return _("Warning"); case GERBV_MESSAGE_NOTE: return _("Note"); default: return "Unknown"; } } /* --------------------------------------------------------- */ /** * The analyze -> analyze Gerbers menu item was selected. * Compile statistics on all open Gerber layers and then display * them. * */ void callbacks_analyze_active_gerbers_activate(GtkMenuItem *menuitem, gpointer user_data) { gerbv_aperture_list_t *aperture_list; gchar *str; int i; /* Get a report of stats & errors accumulated from all layers */ gerbv_stats_t *stat = generate_gerber_analysis(); /* General info report */ GString *general_report_str = g_string_new(NULL); if (stat->layer_count == 0) { g_string_printf(general_report_str, _("No Gerber layers visible!")); } else { if (stat->error_list->error_text == NULL) { g_string_printf(general_report_str, ngettext("No errors found in %d visible " "Gerber layer.", "No errors found in %d visible " "Gerber layers.", stat->layer_count), stat->layer_count); } else { g_string_printf(general_report_str, ngettext("Found errors in %d visible " "Gerber layer.", "Found errors in %d visible " "Gerber layers.", stat->layer_count), stat->layer_count); } } GtkWidget *general_label = gtk_label_new(general_report_str->str); g_string_free(general_report_str, TRUE); gtk_misc_set_alignment(GTK_MISC(general_label), 0, 0); gtk_misc_set_padding(GTK_MISC(general_label), 7, 7); gtk_label_set_selectable(GTK_LABEL(general_label), TRUE); struct table *general_table; general_table = table_new_with_columns(3, _("Layer"), G_TYPE_UINT, _("Type"), G_TYPE_STRING, _("Description"), G_TYPE_STRING); table_set_column_align(general_table, 0, 1.0); for (i = 0; i <= mainProject->last_loaded; i++) { gerbv_fileinfo_t **files = mainProject->file; if (!files[i] || !files[i]->isVisible || files[i]->image->layertype != GERBV_LAYERTYPE_RS274X) continue; table_add_row(general_table, i + 1, _("RS-274X file"), files[i]->fullPathname); str = g_strdup_printf(_("%g x %g %s"), screen_units(fabs(files[i]->image->info->max_x - files[i]->image->info->min_x)), screen_units(fabs(files[i]->image->info->max_y - files[i]->image->info->min_y)), screen_units_str()); table_add_row(general_table, i + 1, _("Bounding size"), str); g_free(str); /* Check error report on layer */ if (stat->layer_count > 0 && stat->error_list->error_text != NULL) { for (gerbv_error_list_t *err_list = stat->error_list; err_list != NULL; err_list = err_list->next) { if (i != err_list->layer - 1) continue; table_add_row(general_table, err_list->layer, error_type_string(err_list->type), err_list->error_text); } } } /* G codes on active layers */ GtkWidget *G_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(G_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *G_table = table_new_with_columns(3, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT, _("Note"), G_TYPE_STRING); table_set_column_align(G_table, 0, 1.0); table_set_column_align(G_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(G_table->widget), TRUE); table_add_row(G_table, "G00", stat->G0, _(gerber_g_code_name(0))); table_add_row(G_table, "G01", stat->G1, _(gerber_g_code_name(1))); table_add_row(G_table, "G02", stat->G2, _(gerber_g_code_name(2))); table_add_row(G_table, "G03", stat->G3, _(gerber_g_code_name(3))); table_add_row(G_table, "G04", stat->G4, _(gerber_g_code_name(4))); table_add_row(G_table, "G10", stat->G10, _(gerber_g_code_name(10))); table_add_row(G_table, "G11", stat->G11, _(gerber_g_code_name(11))); table_add_row(G_table, "G12", stat->G12, _(gerber_g_code_name(12))); table_add_row(G_table, "G36", stat->G36, _(gerber_g_code_name(36))); table_add_row(G_table, "G37", stat->G37, _(gerber_g_code_name(37))); table_add_row(G_table, "G54", stat->G54, _(gerber_g_code_name(54))); table_add_row(G_table, "G55", stat->G55, _(gerber_g_code_name(55))); table_add_row(G_table, "G70", stat->G70, _(gerber_g_code_name(70))); table_add_row(G_table, "G71", stat->G71, _(gerber_g_code_name(71))); table_add_row(G_table, "G74", stat->G74, _(gerber_g_code_name(74))); table_add_row(G_table, "G75", stat->G75, _(gerber_g_code_name(75))); table_add_row(G_table, "G90", stat->G90, _(gerber_g_code_name(90))); table_add_row(G_table, "G91", stat->G91, _(gerber_g_code_name(91))); table_add_row(G_table, "", stat->G_unknown, _("unknown G-codes")); table_set_sortable(G_table); gtk_container_add(GTK_CONTAINER(G_report_window), G_table->widget); /* D codes on active layers */ GtkWidget *D_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(D_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *D_table = table_new_with_columns(3, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT, _("Note"), G_TYPE_STRING); table_set_column_align(D_table, 0, 1.0); table_set_column_align(D_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(D_table->widget), TRUE); table_add_row(D_table, "D01", stat->D1, _(gerber_d_code_name(1))); table_add_row(D_table, "D02", stat->D2, _(gerber_d_code_name(2))); table_add_row(D_table, "D03", stat->D3, _(gerber_d_code_name(3))); table_add_row(D_table, "", stat->D_unknown, _("unknown D-codes")); table_add_row(D_table, "", stat->D_error, _("D-code errors")); table_set_sortable(D_table); gtk_container_add(GTK_CONTAINER(D_report_window), D_table->widget); /* M codes on active layers */ GtkWidget *M_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(M_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *M_table = table_new_with_columns(3, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT, _("Note"), G_TYPE_STRING); table_set_column_align(M_table, 0, 1.0); table_set_column_align(M_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(M_table->widget), TRUE); table_add_row(M_table, "M00", stat->M0, _(gerber_m_code_name(0))); table_add_row(M_table, "M01", stat->M1, _(gerber_m_code_name(1))); table_add_row(M_table, "M02", stat->M2, _(gerber_m_code_name(2))); table_add_row(M_table, "", stat->M_unknown, _("unknown M-codes")); table_set_sortable(M_table); gtk_container_add(GTK_CONTAINER(M_report_window), M_table->widget); /* Misc codes */ GtkWidget *misc_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(misc_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *misc_table = table_new_with_columns(2, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT); table_set_column_align(misc_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(misc_table->widget), TRUE); table_add_row(misc_table, "X", stat->X); table_add_row(misc_table, "Y", stat->Y); table_add_row(misc_table, "I", stat->I); table_add_row(misc_table, "J", stat->J); table_add_row(misc_table, "*", stat->star); table_add_row(misc_table, _("Unknown"), stat->unknown); table_set_sortable(misc_table); gtk_container_add(GTK_CONTAINER(misc_report_window), misc_table->widget); /* Apertures definition in input files */ GtkWidget *aperture_def_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(aperture_def_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); if (stat->aperture_list->number == -1) { GtkWidget *aperture_def_label = gtk_label_new( _("No aperture definitions found in active Gerber file(s)!")); gtk_misc_set_alignment(GTK_MISC(aperture_def_label), 0, 0); gtk_misc_set_padding(GTK_MISC(aperture_def_label), 7, 7); gtk_label_set_selectable(GTK_LABEL(aperture_def_label), TRUE); gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(aperture_def_report_window), aperture_def_label); } else { struct table *aperture_def_table = table_new_with_columns(6, _("Layer"), G_TYPE_UINT, _("D code"), G_TYPE_STRING, _("Aperture"), G_TYPE_STRING, _("Param[0]"), G_TYPE_DOUBLE, _("Param[1]"), G_TYPE_DOUBLE, _("Param[2]"), G_TYPE_DOUBLE); table_set_column_align(aperture_def_table, 0, 1.0); table_set_column_align(aperture_def_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(aperture_def_table->widget), TRUE); gtk_tree_view_set_search_column( GTK_TREE_VIEW(aperture_def_table->widget), 1); GString *gstr = g_string_new(NULL); for (aperture_list = stat->aperture_list; aperture_list != NULL; aperture_list = aperture_list->next) { g_string_printf(gstr, "D%d", aperture_list->number); table_add_row(aperture_def_table, aperture_list->layer, gstr->str, _(gerbv_aperture_type_name( aperture_list->type)), aperture_list->parameter[0], aperture_list->parameter[1], aperture_list->parameter[2]); } g_string_free(gstr, TRUE); table_set_sortable(aperture_def_table); gtk_container_add(GTK_CONTAINER(aperture_def_report_window), aperture_def_table->widget); } /* Gerber aperture usage on active layers */ GtkWidget *aperture_usage_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(aperture_usage_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); unsigned int aperture_count = 0; if (stat->D_code_list->number == -1) { GtkWidget *aperture_usage_label = gtk_label_new( _("No apertures used in Gerber file(s)!")); gtk_misc_set_alignment(GTK_MISC(aperture_usage_label), 0, 0); gtk_misc_set_padding(GTK_MISC(aperture_usage_label), 7, 7); gtk_label_set_selectable(GTK_LABEL(aperture_usage_label), TRUE); gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(aperture_usage_report_window), aperture_usage_label); } else { struct table *aperture_usage_table = table_new_with_columns(2, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT); table_set_column_align(aperture_usage_table, 0, 1.0); table_set_column_align(aperture_usage_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(aperture_usage_table->widget), TRUE); GString *gstr = g_string_new(NULL); for (aperture_list = stat->D_code_list; aperture_list != NULL; aperture_list = aperture_list->next) { g_string_printf(gstr, "D%d", aperture_list->number); table_add_row(aperture_usage_table, gstr->str, aperture_list->count); aperture_count += aperture_list->count; } g_string_free(gstr, TRUE); table_add_row(aperture_usage_table, _("Total"), aperture_count); table_set_sortable(aperture_usage_table); gtk_container_add( GTK_CONTAINER(aperture_usage_report_window), aperture_usage_table->widget); } /* Create top level dialog window for report */ GtkWidget *analyze_active_gerbers; analyze_active_gerbers = gtk_dialog_new_with_buttons( _("Gerber codes report on visible layers"), NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL); gtk_container_set_border_width(GTK_CONTAINER (analyze_active_gerbers), 5); gtk_dialog_set_default_response (GTK_DIALOG(analyze_active_gerbers), GTK_RESPONSE_ACCEPT); g_signal_connect_after (G_OBJECT(analyze_active_gerbers), "response", G_CALLBACK (gtk_widget_destroy), GTK_WIDGET(analyze_active_gerbers)); /* Put general report text into scrolled window */ GtkWidget *general_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(general_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); GtkWidget *vbox = gtk_vbox_new(0, 0); gtk_box_pack_start(GTK_BOX(vbox), general_label, 0, 0, 0); gtk_box_pack_start(GTK_BOX(vbox), general_table->widget, 0, 0, 0); gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(general_report_window), vbox); /* Create tabbed notebook widget and add report widgets. */ GtkWidget *notebook = gtk_notebook_new(); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(general_report_window), gtk_label_new(_("General"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(G_report_window), gtk_label_new(_("G codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(D_report_window), gtk_label_new(_("D codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(M_report_window), gtk_label_new(_("M codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(misc_report_window), gtk_label_new(_("Misc. codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(aperture_def_report_window), gtk_label_new(_("Aperture definitions"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(aperture_usage_report_window), gtk_label_new(_("Aperture usage"))); /* Now put notebook into dialog window and show the whole thing */ gtk_container_add( GTK_CONTAINER(GTK_DIALOG(analyze_active_gerbers)->vbox), GTK_WIDGET(notebook)); if (screen.settings) { analyze_window_size_restore(analyze_active_gerbers); g_signal_connect (G_OBJECT(analyze_active_gerbers), "response", G_CALLBACK (analyze_window_size_store), GTK_WIDGET(analyze_active_gerbers)); } else { gtk_window_set_default_size(GTK_WINDOW(analyze_active_gerbers), 640, 320); } gtk_widget_show_all(analyze_active_gerbers); gerbv_stats_destroy(stat); } /* --------------------------------------------------------- */ /** * The analyze -> analyze drill file menu item was selected. * Complie statistics on all open drill layers and then display * them. * */ void callbacks_analyze_active_drill_activate(GtkMenuItem *menuitem, gpointer user_data) { gchar *str; int i; gerbv_drill_stats_t *stat = generate_drill_analysis(); /* General info report */ GString *general_report_str = g_string_new(NULL); if (stat->layer_count == 0) { g_string_printf(general_report_str, _("No drill layers visible!")); } else { if (stat->error_list->error_text == NULL) { g_string_printf(general_report_str, ngettext("No errors found in %d visible " "drill layer.", "No errors found in %d visible " "drill layers.", stat->layer_count), stat->layer_count); } else { g_string_printf(general_report_str, ngettext("Found errors found in %d visible " "drill layer.", "Found errors found in %d visible " "drill layers.", stat->layer_count), stat->layer_count); } } GtkWidget *general_label = gtk_label_new(general_report_str->str); g_string_free(general_report_str, TRUE); gtk_misc_set_alignment(GTK_MISC(general_label), 0, 0); gtk_misc_set_padding(GTK_MISC(general_label), 7, 7); gtk_label_set_selectable(GTK_LABEL(general_label), TRUE); struct table *general_table; general_table = table_new_with_columns(3, _("Layer"), G_TYPE_UINT, _("Type"), G_TYPE_STRING, _("Description"), G_TYPE_STRING); table_set_column_align(general_table, 0, 1.0); for (i = 0; i <= mainProject->last_loaded; i++) { gerbv_fileinfo_t **files = mainProject->file; if (!files[i] || !files[i]->isVisible || files[i]->image->layertype != GERBV_LAYERTYPE_DRILL) continue; table_add_row(general_table, i + 1, _("Excellon file"), files[i]->fullPathname); str = g_strdup_printf(_("%g x %g %s"), screen_units(fabs(files[i]->image->info->max_x - files[i]->image->info->min_x)), screen_units(fabs(files[i]->image->info->max_y - files[i]->image->info->min_y)), screen_units_str()); table_add_row(general_table, i + 1, _("Bounding size"), str); g_free(str); /* Check error report on layer */ if (stat->layer_count > 0 && stat->error_list->error_text != NULL) { for (gerbv_error_list_t *err_list = stat->error_list; err_list != NULL; err_list = err_list->next) { if (i != err_list->layer - 1) continue; table_add_row(general_table, err_list->layer, error_type_string(err_list->type), err_list->error_text); } } } /* G codes on active layers */ GtkWidget *G_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(G_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *G_table = table_new_with_columns(3, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT, _("Note"), G_TYPE_STRING); table_set_column_align(G_table, 0, 1.0); table_set_column_align(G_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(G_table->widget), TRUE); table_add_row(G_table, "G00", stat->G00, _(drill_g_code_name(0))); table_add_row(G_table, "G01", stat->G01, _(drill_g_code_name(1))); table_add_row(G_table, "G02", stat->G02, _(drill_g_code_name(2))); table_add_row(G_table, "G03", stat->G03, _(drill_g_code_name(3))); table_add_row(G_table, "G04", stat->G04, _(drill_g_code_name(4))); table_add_row(G_table, "G05", stat->G05, _(drill_g_code_name(5))); table_add_row(G_table, "G85", stat->G85, _(drill_g_code_name(85))); table_add_row(G_table, "G90", stat->G90, _(drill_g_code_name(90))); table_add_row(G_table, "G91", stat->G91, _(drill_g_code_name(91))); table_add_row(G_table, "G93", stat->G93, _(drill_g_code_name(93))); table_add_row(G_table, "", stat->G_unknown, _("unknown G-codes")); table_set_sortable(G_table); gtk_container_add(GTK_CONTAINER(G_report_window), G_table->widget); /* M codes on active layers */ GtkWidget *M_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(M_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *M_table = table_new_with_columns(3, _("Code"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT, _("Note"), G_TYPE_STRING); table_set_column_align(M_table, 0, 1.0); table_set_column_align(M_table, 1, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(M_table->widget), TRUE); table_add_row(M_table, "M00", stat->M00, _(drill_m_code_name(0))); table_add_row(M_table, "M01", stat->M01, _(drill_m_code_name(1))); table_add_row(M_table, "M18", stat->M18, _(drill_m_code_name(18))); table_add_row(M_table, "M25", stat->M25, _(drill_m_code_name(25))); table_add_row(M_table, "M30", stat->M30, _(drill_m_code_name(30))); table_add_row(M_table, "M45", stat->M45, _(drill_m_code_name(45))); table_add_row(M_table, "M47", stat->M47, _(drill_m_code_name(47))); table_add_row(M_table, "M48", stat->M48, _(drill_m_code_name(48))); table_add_row(M_table, "M71", stat->M71, _(drill_m_code_name(71))); table_add_row(M_table, "M72", stat->M72, _(drill_m_code_name(72))); table_add_row(M_table, "M95", stat->M95, _(drill_m_code_name(95))); table_add_row(M_table, "M97", stat->M97, _(drill_m_code_name(97))); table_add_row(M_table, "M98", stat->M98, _(drill_m_code_name(98))); table_add_row(M_table, "", stat->M_unknown, _("unknown M-codes")); table_set_sortable(M_table); gtk_container_add(GTK_CONTAINER(M_report_window), M_table->widget); /* Misc codes */ GtkWidget *misc_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(misc_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *misc_table = table_new_with_columns(2, /* Count is string for value hide. */ pgettext("table", "Count"), G_TYPE_STRING, _("Code"), G_TYPE_STRING); table_set_column_align(misc_table, 0, 1.0); str = g_strdup_printf("%d", stat->comment); table_add_row(misc_table, str,_("Comments")); g_free(str); str = g_strdup_printf("%d", stat->unknown); table_add_row(misc_table, str, _("Unknown codes")); g_free(str); str = g_strdup_printf("%d", stat->R); table_add_row(misc_table, str, _("Repeat hole (R)")); g_free(str); if (stat->detect != NULL ) { table_add_row(misc_table, "", stat->detect); } table_set_sortable(misc_table); gtk_container_add(GTK_CONTAINER(misc_report_window), misc_table->widget); /* Drill usage on active layers */ GtkWidget *drill_usage_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(drill_usage_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); struct table *drill_usage_table = table_new_with_columns(4, _("Drill no."), G_TYPE_UINT, _("Dia."), G_TYPE_DOUBLE, _("Units"), G_TYPE_STRING, pgettext("table", "Count"), G_TYPE_UINT); table_set_column_align(drill_usage_table, 0, 1.0); table_set_column_align(drill_usage_table, 3, 1.0); gtk_tree_view_set_headers_clickable( GTK_TREE_VIEW(drill_usage_table->widget), TRUE); gerbv_drill_list_t *drill_list; for (drill_list = stat->drill_list; drill_list != NULL; drill_list = drill_list->next) { if (drill_list->drill_num == -1) break; /* No drill list */ table_add_row(drill_usage_table, drill_list->drill_num, drill_list->drill_size, drill_list->drill_unit, drill_list->drill_count); } table_set_sortable(drill_usage_table); gtk_container_add(GTK_CONTAINER(drill_usage_report_window), drill_usage_table->widget); /* Create top level dialog window for report */ GtkWidget *analyze_active_drill; analyze_active_drill = gtk_dialog_new_with_buttons( _("Drill codes report on visible layers"), NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL); gtk_container_set_border_width (GTK_CONTAINER (analyze_active_drill), 5); gtk_dialog_set_default_response (GTK_DIALOG(analyze_active_drill), GTK_RESPONSE_ACCEPT); g_signal_connect_after (G_OBJECT(analyze_active_drill), "response", G_CALLBACK (gtk_widget_destroy), GTK_WIDGET(analyze_active_drill)); /* Put general report text into scrolled window */ GtkWidget *general_report_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(general_report_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); GtkWidget *vbox = gtk_vbox_new(0, 0); gtk_box_pack_start(GTK_BOX(vbox), general_label, 0, 0, 0); gtk_box_pack_start(GTK_BOX(vbox), general_table->widget, 0, 0, 0); gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW(general_report_window), vbox); /* Create tabbed notebook widget and add report widgets. */ GtkWidget *notebook = gtk_notebook_new(); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(general_report_window), gtk_label_new(_("General"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(G_report_window), gtk_label_new(_("G codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(M_report_window), gtk_label_new(_("M codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(misc_report_window), gtk_label_new(_("Misc. codes"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), GTK_WIDGET(drill_usage_report_window), gtk_label_new(_("Drill usage"))); /* Now put notebook into dialog window and show the whole thing */ gtk_container_add(GTK_CONTAINER(GTK_DIALOG(analyze_active_drill)->vbox), GTK_WIDGET(notebook)); if (screen.settings) { analyze_window_size_restore(analyze_active_drill); g_signal_connect (G_OBJECT(analyze_active_drill), "response", G_CALLBACK (analyze_window_size_store), GTK_WIDGET(analyze_active_drill)); } else { gtk_window_set_default_size(GTK_WINDOW(analyze_active_drill), 640, 320); } gtk_widget_show_all(analyze_active_drill); gerbv_drill_stats_destroy(stat); } /* --------------------------------------------------------- */ void callbacks_control_gerber_options_activate (GtkMenuItem *menuitem, gpointer user_data) { } /* --------------------------------------------------------- */ void callbacks_online_manual_activate (GtkMenuItem *menuitem, gpointer user_data) { } /* --------------------------------------------------------- */ /** * The file -> quit menu item was selected or * the user requested the main window to be closed by other means. * Check that all changes have been saved, and then quit. * */ gboolean callbacks_quit_activate (GtkMenuItem *menuitem, gpointer user_data) { gboolean layers_dirty = FALSE; gint idx; for (idx = 0; idx<=mainProject->last_loaded; idx++) { if (mainProject->file[idx] == NULL) break; layers_dirty = layers_dirty || mainProject->file[idx]->layer_dirty; } if (layers_dirty && !interface_get_alert_dialog_response( _("Do you want to close all open layers and quit the program?"), _("Quitting the program will cause any unsaved changes " "to be lost."), FALSE, NULL, GTK_STOCK_QUIT, GTK_STOCK_CANCEL)) { return TRUE; // stop propagation of the delete_event. // this would destroy the gui but not return from the gtk event loop. } /* Save background color */ if (screen.settings && !screen.background_is_from_project) { guint clr; GdkColor *bg = &mainProject->background; clr = bg->red/257<<16 | bg->green/257<<8 | bg->blue/257; g_settings_set_uint (screen.settings, "background-color", clr); } /* Save main window size and postion */ if (screen.settings) { GtkWindow *win = GTK_WINDOW(screen.win.topLevelWindow); gint32 xy[2]; GVariant *var; gboolean is_max; is_max = FALSE != (GDK_WINDOW_STATE_MAXIMIZED & gdk_window_get_state ( gtk_widget_get_window (GTK_WIDGET(win)))); g_settings_set_boolean (screen.settings, "window-maximized", is_max); if (!is_max) { gtk_window_get_size (win, (gint *)xy, (gint *)(xy+1)); var = g_variant_new_fixed_array (G_VARIANT_TYPE_INT32, xy, 2, sizeof (xy[0])); g_settings_set_value (screen.settings, "window-size", var); gtk_window_get_position (win, (gint *)xy, (gint *)(xy+1)); var = g_variant_new_fixed_array (G_VARIANT_TYPE_INT32, xy, 2, sizeof (xy[0])); g_settings_set_value (screen.settings, "window-position", var); } } gerbv_unload_all_layers (mainProject); gtk_main_quit(); return FALSE; } /* --------------------------------------------------------- */ /** * The help -> about menu item was selected. * Show the about dialog. * */ void callbacks_about_activate (GtkMenuItem *menuitem, gpointer user_data) { GtkWidget *aboutdialog1; /* TRANSLATORS: Replace this string with your names, one name per line. */ gchar *translators = _("translator-credits"); gchar *string = g_strdup_printf(_( "Gerbv — a Gerber (RS-274/X) viewer\n" "\n" "Version %s\n" "Compiled on %s at %s\n" "\n" "Gerbv is part of the gEDA Project.\n" "\n" "For more information see:\n" " gEDA homepage: http://geda-project.org/\n" " gEDA Wiki: http://wiki.geda-project.org/"), VERSION, __DATE__, __TIME__); #if GTK_CHECK_VERSION(2,6,0) gchar *license = g_strdup_printf(_( "Gerbv — a Gerber (RS-274/X) viewer\n" "\n" "Copyright (C) 2000—2007 Stefan Petersen\n" "\n" "This program is free software: you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation, either version 2 of the License, or\n" "(at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" "GNU General Public License for more details.\n\n" "You should have received a copy of the GNU General Public License\n" "along with this program. If not, see .")); #include "authors.c" int a_size, i; gchar **a; aboutdialog1 = gtk_about_dialog_new (); gtk_container_set_border_width (GTK_CONTAINER (aboutdialog1), 5); gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (aboutdialog1), VERSION); gtk_about_dialog_set_name (GTK_ABOUT_DIALOG (aboutdialog1), _("Gerbv")); gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (aboutdialog1), translators); gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (aboutdialog1), string); gtk_about_dialog_set_license(GTK_ABOUT_DIALOG (aboutdialog1), license); /* The authors.c file is autogenerated at build time */ a_size = sizeof(authors_string_array)/sizeof(authors_string_array[0]); a = g_new(gchar *, a_size); for (i = 0; i < a_size; i++) a[i] = _(authors_string_array[i]); gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG (aboutdialog1), (const gchar **)a); gtk_about_dialog_set_website(GTK_ABOUT_DIALOG (aboutdialog1), "http://gerbv.geda-project.org/"); g_free(a); g_signal_connect (G_OBJECT(aboutdialog1),"response", G_CALLBACK (gtk_widget_destroy), GTK_WIDGET(aboutdialog1)); g_free (string); g_free (license); #else aboutdialog1 = gtk_message_dialog_new ( GTK_WINDOW (screen.win.topLevelWindow), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_INFO, GTK_BUTTONS_CLOSE, string ); gtk_window_set_title ( GTK_WINDOW (aboutdialog1), _("About Gerbv")); /* Destroy the dialog when the user responds to it (e.g. clicks a button) */ g_signal_connect_swapped (aboutdialog1, "response", G_CALLBACK (gtk_widget_destroy), aboutdialog1); g_free (string); #endif gtk_widget_show_all(GTK_WIDGET(aboutdialog1)); } /* --------------------------------------------------------- */ /** * The help -> bugs menu item was selected. * Show the known bugs window * */ void callbacks_bugs_activate (GtkMenuItem *menuitem, gpointer user_data) { int i; #include "bugs.c" /* Create the top level dialog widget with an OK button */ GtkWidget *bugs_dialog = gtk_dialog_new_with_buttons(_("Known bugs in Gerbv"), NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL); gtk_container_set_border_width (GTK_CONTAINER (bugs_dialog), 5); gtk_dialog_set_default_response (GTK_DIALOG(bugs_dialog), GTK_RESPONSE_ACCEPT); g_signal_connect (G_OBJECT(bugs_dialog), "response", G_CALLBACK (gtk_widget_destroy), GTK_WIDGET(bugs_dialog)); /* First create single bugs_string from bugs_string_array */ GString *bugs_string = g_string_new(NULL); for (i=0; bugs_string_array[i] != NULL; i++) { /* gettext("") will return info string */ g_string_append_printf(bugs_string, "%s\n", (bugs_string_array[i][0] == '\0') ? "" : _(bugs_string_array[i])); } /* Create GtkLabel to hold text */ GtkWidget *bugs_label = gtk_label_new (bugs_string->str); g_string_free(bugs_string, FALSE); gtk_misc_set_alignment(GTK_MISC(bugs_label), 0, 0); gtk_misc_set_padding(GTK_MISC(bugs_label), 7, 7); /* Put text into scrolled window */ GtkWidget *bugs_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(bugs_window), GTK_WIDGET(bugs_label)); gtk_widget_set_size_request(bugs_window, 600, 300); gtk_container_add(GTK_CONTAINER(GTK_DIALOG(bugs_dialog)->vbox), GTK_WIDGET(bugs_window)); gtk_widget_show_all(GTK_WIDGET(bugs_dialog)); gtk_dialog_run(GTK_DIALOG(bugs_dialog)); } /* --------------------------------------------------------- */ gdouble callbacks_calculate_actual_distance (gdouble inputDimension) { return screen_units(inputDimension); } /* --------------------------------------------------------- */ void callbacks_update_ruler_pointers (void) { double xPosition, yPosition; xPosition = screenRenderInfo.lowerLeftX + (screen.last_x / screenRenderInfo.scaleFactorX); yPosition = screenRenderInfo.lowerLeftY + ((screenRenderInfo.displayHeight - screen.last_y) / screenRenderInfo.scaleFactorY); if (!((screen.unit == GERBV_MILS) && ((screenRenderInfo.scaleFactorX < 80)||(screenRenderInfo.scaleFactorY < 80)))) { xPosition = callbacks_calculate_actual_distance (xPosition); yPosition = callbacks_calculate_actual_distance (yPosition); } g_object_set (G_OBJECT (screen.win.hRuler), "position", xPosition, NULL); g_object_set (G_OBJECT (screen.win.vRuler), "position", yPosition, NULL); } /* --------------------------------------------------------- */ static void callbacks_render_type_changed () { static gboolean isChanging = FALSE; if (isChanging) return; isChanging = TRUE; gerbv_render_types_t type = screenRenderInfo.renderType; GtkCheckMenuItem *check_item = screen.win.menu_view_render_group[type]; dprintf ("%s(): type = %d, check_item = %p\n", __FUNCTION__, type, check_item); gtk_check_menu_item_set_active (check_item, TRUE); gtk_combo_box_set_active (screen.win.sidepaneRenderComboBox, type); render_refresh_rendered_image_on_screen(); isChanging = FALSE; } /* --------------------------------------------------------- */ static void callbacks_units_changed (gerbv_gui_unit_t unit) { static gboolean isChanging = FALSE; if (isChanging) return; isChanging = TRUE; screen.unit = unit; if (unit == GERBV_MILS || unit == GERBV_MMS || unit == GERBV_INS) { gtk_combo_box_set_active ( GTK_COMBO_BOX (screen.win.statusUnitComboBox), unit); gtk_check_menu_item_set_active ( screen.win.menu_view_unit_group[unit], TRUE); } callbacks_update_ruler_scales (); callbacks_update_statusbar_coordinates (screen.last_x, screen.last_y); if (screen.tool == MEASURE) callbacks_update_statusbar_measured_distance ( screen.measure_last_x, screen.measure_last_y); isChanging = FALSE; } /* --------------------------------------------------------- */ static void callbacks_update_ruler_scales (void) { double xStart, xEnd, yStart, yEnd; xStart = screenRenderInfo.lowerLeftX; yStart = screenRenderInfo.lowerLeftY; xEnd = screenRenderInfo.lowerLeftX + (screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX); yEnd = screenRenderInfo.lowerLeftY + (screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY); /* mils can get super crowded with large boards, but inches are too large for most boards. So, we leave mils in for now and just switch to inches if the scale factor gets too small */ if (!((screen.unit == GERBV_MILS) && ((screenRenderInfo.scaleFactorX < 80)||(screenRenderInfo.scaleFactorY < 80)))) { xStart = callbacks_calculate_actual_distance (xStart); xEnd = callbacks_calculate_actual_distance (xEnd); yStart = callbacks_calculate_actual_distance (yStart); yEnd = callbacks_calculate_actual_distance (yEnd); } /* make sure the widgets actually exist before setting (in case this gets called before everything is realized */ if (screen.win.hRuler) gtk_ruler_set_range (GTK_RULER (screen.win.hRuler), xStart, xEnd, 0, xEnd - xStart); /* reverse y min and max, since the ruler starts at the top */ if (screen.win.vRuler) gtk_ruler_set_range (GTK_RULER (screen.win.vRuler), yEnd, yStart, 0, yEnd - yStart); } /* --------------------------------------------------------- */ void callbacks_update_scrollbar_limits (void){ gerbv_render_info_t tempRenderInfo = {0, 0, 0, 0, GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, screenRenderInfo.displayWidth, screenRenderInfo.displayHeight}; GtkAdjustment *hAdjust = (GtkAdjustment *)screen.win.hAdjustment; GtkAdjustment *vAdjust = (GtkAdjustment *)screen.win.vAdjustment; gerbv_render_zoom_to_fit_display (mainProject, &tempRenderInfo); hAdjust->lower = tempRenderInfo.lowerLeftX; hAdjust->page_increment = hAdjust->page_size; hAdjust->step_increment = hAdjust->page_size / 10.0; vAdjust->lower = tempRenderInfo.lowerLeftY; vAdjust->page_increment = vAdjust->page_size; vAdjust->step_increment = vAdjust->page_size / 10.0; hAdjust->upper = tempRenderInfo.lowerLeftX + (tempRenderInfo.displayWidth / tempRenderInfo.scaleFactorX); hAdjust->page_size = screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX; vAdjust->upper = tempRenderInfo.lowerLeftY + (tempRenderInfo.displayHeight / tempRenderInfo.scaleFactorY); vAdjust->page_size = screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY; callbacks_update_scrollbar_positions (); } /* --------------------------------------------------------- */ void callbacks_update_scrollbar_positions (void){ gdouble positionX,positionY; positionX = screenRenderInfo.lowerLeftX; if (positionX < ((GtkAdjustment *)screen.win.hAdjustment)->lower) positionX = ((GtkAdjustment *)screen.win.hAdjustment)->lower; if (positionX > (((GtkAdjustment *)screen.win.hAdjustment)->upper - ((GtkAdjustment *)screen.win.hAdjustment)->page_size)) positionX = (((GtkAdjustment *)screen.win.hAdjustment)->upper - ((GtkAdjustment *)screen.win.hAdjustment)->page_size); gtk_adjustment_set_value ((GtkAdjustment *)screen.win.hAdjustment, positionX); positionY = ((GtkAdjustment *)screen.win.vAdjustment)->upper - screenRenderInfo.lowerLeftY - ((GtkAdjustment *)screen.win.vAdjustment)->page_size + ((GtkAdjustment *)screen.win.vAdjustment)->lower; if (positionY < ((GtkAdjustment *)screen.win.vAdjustment)->lower) positionY = ((GtkAdjustment *)screen.win.vAdjustment)->lower; if (positionY > (((GtkAdjustment *)screen.win.vAdjustment)->upper - ((GtkAdjustment *)screen.win.vAdjustment)->page_size)) positionY = (((GtkAdjustment *)screen.win.vAdjustment)->upper - ((GtkAdjustment *)screen.win.vAdjustment)->page_size); gtk_adjustment_set_value ((GtkAdjustment *)screen.win.vAdjustment, positionY); } /* --------------------------------------------------------- */ gboolean callbacks_scrollbar_button_released (GtkWidget *widget, GdkEventButton *event){ screen.off_x = 0; screen.off_y = 0; screen.state = NORMAL; render_refresh_rendered_image_on_screen(); return FALSE; } /* --------------------------------------------------------- */ gboolean callbacks_scrollbar_button_pressed (GtkWidget *widget, GdkEventButton *event){ //screen.last_x = ((GtkAdjustment *)screen.win.hAdjustment)->value; screen.state = SCROLLBAR; return FALSE; } /* --------------------------------------------------------- */ void callbacks_hadjustment_value_changed (GtkAdjustment *adjustment, gpointer user_data){ /* make sure we're actually using the scrollbar to make sure we don't reset lowerLeftX during a scrollbar redraw during something else */ if (screen.state == SCROLLBAR) { screenRenderInfo.lowerLeftX = gtk_adjustment_get_value (adjustment); } } /* --------------------------------------------------------- */ void callbacks_vadjustment_value_changed (GtkAdjustment *adjustment, gpointer user_data){ /* make sure we're actually using the scrollbar to make sure we don't reset lowerLeftY during a scrollbar redraw during something else */ if (screen.state == SCROLLBAR) { screenRenderInfo.lowerLeftY = adjustment->upper - (gtk_adjustment_get_value (adjustment) + adjustment->page_size) + adjustment->lower; } } /* --------------------------------------------------------- */ static void callbacks_layer_tree_visibility_toggled (gint index) { mainProject->file[index]->isVisible = !mainProject->file[index]->isVisible; callbacks_update_layer_tree (); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen (); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } } /* --------------------------------------------------------- */ static gint callbacks_get_col_num_from_tree_view_col (GtkTreeViewColumn *col) { GList *cols; gint num; g_return_val_if_fail ( col != NULL, -1 ); g_return_val_if_fail ( col->tree_view != NULL, -1 ); cols = gtk_tree_view_get_columns(GTK_TREE_VIEW(col->tree_view)); num = g_list_index(cols, (gpointer) col); g_list_free(cols); return num; } /* --------------------------------------------------------- */ void callbacks_add_layer_button_clicked (GtkButton *button, gpointer user_data) { callbacks_open_activate (NULL, NULL); } /* --------------------------------------------------------- */ void callbacks_unselect_all_tool_buttons (void) { } void callbacks_switch_to_normal_tool_cursor (gint toolNumber) { GdkWindow *drawing_area_window = screen.drawing_area->window; GdkCursor *cursor; switch (toolNumber) { case POINTER: gdk_window_set_cursor(drawing_area_window, GERBV_DEF_CURSOR); break; case PAN: cursor = gdk_cursor_new(GDK_FLEUR); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); break; case ZOOM: cursor = gdk_cursor_new(GDK_SIZING); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); break; case MEASURE: cursor = gdk_cursor_new(GDK_CROSSHAIR); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); break; default: break; } } /* --------------------------------------------------------- */ void callbacks_switch_to_correct_cursor (void) { GdkWindow *drawing_area_window = screen.drawing_area->window; GdkCursor *cursor; if (screen.state == IN_MOVE) { cursor = gdk_cursor_new(GDK_FLEUR); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); return; } else if (screen.state == IN_ZOOM_OUTLINE) { cursor = gdk_cursor_new(GDK_SIZING); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); return; } callbacks_switch_to_normal_tool_cursor (screen.tool); } /* --------------------------------------------------------- */ void callbacks_change_tool (GtkButton *button, gpointer user_data) { gint toolNumber = GPOINTER_TO_INT (user_data); /* make sure se don't get caught in endless recursion here */ if (screen.win.updatingTools) return; screen.win.updatingTools = TRUE; gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonPointer), FALSE); gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonPan), FALSE); gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonZoom), FALSE); gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonMeasure), FALSE); switch (toolNumber) { case POINTER: gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonPointer), TRUE); screen.tool = POINTER; screen.state = NORMAL; utf8_strncpy(screen.statusbar.diststr, _("Click to select objects in the active layer. " "Middle click and drag to pan."), MAX_DISTLEN); break; case PAN: gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonPan), TRUE); screen.tool = PAN; screen.state = NORMAL; utf8_strncpy(screen.statusbar.diststr, _("Click and drag to pan. Right click and drag to zoom."), MAX_DISTLEN); break; case ZOOM: gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonZoom), TRUE); screen.tool = ZOOM; screen.state = NORMAL; utf8_strncpy(screen.statusbar.diststr, _("Click and drag to zoom in. Shift+click to zoom out."), MAX_DISTLEN); break; case MEASURE: gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (screen.win.toolButtonMeasure), TRUE); screen.tool = MEASURE; screen.state = NORMAL; utf8_strncpy(screen.statusbar.diststr, _("Click and drag to measure a distance or select two apertures."), MAX_DISTLEN); /* To not show previous measure drag-line */ screen.measure_start_x = 0; screen.measure_start_y = 0; screen.measure_stop_x = 0; screen.measure_stop_y = 0; /* If two items are selected, measure they distance */ if (selection_length (&screen.selectionInfo) == 2) { gerbv_selection_item_t item[2]; gerbv_net_t *net[2]; item[0] = selection_get_item_by_index( &screen.selectionInfo, 0); item[1] = selection_get_item_by_index( &screen.selectionInfo, 1); net[0] = item[0].net; net[1] = item[1].net; if ((net[0]->aperture_state == net[1]->aperture_state) && (net[0]->aperture_state == GERBV_APERTURE_STATE_FLASH)) { screen.measure_start_x = net[0]->stop_x; screen.measure_start_y = net[0]->stop_y; gerbv_transform_coord_for_image( &screen.measure_start_x, &screen.measure_start_y, item[0].image, mainProject); screen.measure_stop_x = net[1]->stop_x; screen.measure_stop_y = net[1]->stop_y; gerbv_transform_coord_for_image( &screen.measure_stop_x, &screen.measure_stop_y, item[1].image, mainProject); render_draw_measure_distance(); } } break; default: break; } callbacks_switch_to_normal_tool_cursor (toolNumber); callbacks_update_statusbar(); screen.win.updatingTools = FALSE; callbacks_force_expose_event_for_screen(); } /* --------------------------------------------------------- */ static void callbacks_select_layer_row (gint rowIndex) { GtkTreeSelection *selection; GtkTreeIter iter; GtkListStore *list_store = (GtkListStore *) gtk_tree_view_get_model ((GtkTreeView *) screen.win.layerTree); selection = gtk_tree_view_get_selection((GtkTreeView *) screen.win.layerTree); if (gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(list_store), &iter, NULL, rowIndex)) { gtk_tree_selection_select_iter (selection, &iter); } } /* --------------------------------------------------------- */ /** * This fcn returns the index of selected layer (selected in * the layer window on left). * */ static gint callbacks_get_selected_row_index (void) { GtkTreeSelection *selection; GtkTreeIter iter; GtkListStore *list_store = (GtkListStore *) gtk_tree_view_get_model ((GtkTreeView *) screen.win.layerTree); gint index=-1,i=0; /* This will only work in single or browse selection mode! */ selection = gtk_tree_view_get_selection((GtkTreeView *) screen.win.layerTree); if (gtk_tree_selection_get_selected(selection, NULL, &iter)) { while (gtk_tree_model_iter_nth_child ((GtkTreeModel *)list_store, &iter, NULL, i)){ if (gtk_tree_selection_iter_is_selected (selection, &iter)) { return i; } i++; } } return index; } /* --------------------------------------------------------- */ void callbacks_remove_layer_button_clicked (GtkButton *button, gpointer user_data) { gint index = callbacks_get_selected_row_index (); if ((index >= 0) && (index <= mainProject->last_loaded)) { render_remove_selected_objects_belonging_to_layer ( &screen.selectionInfo, mainProject->file[index]->image); update_selected_object_message (FALSE); gerbv_unload_layer (mainProject, index); callbacks_update_layer_tree (); index = MAX(0, index - 1); callbacks_select_layer_row (index); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen (); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } } } /* --------------------------------------------------------- */ void callbacks_move_layer_down_menu_activate (GtkMenuItem *menuitem, gpointer user_data) { callbacks_move_layer_down_button_clicked(NULL, NULL); gtk_widget_grab_focus (screen.win.layerTree); } /* --------------------------------------------------------- */ void callbacks_move_layer_down_button_clicked (GtkButton *button, gpointer user_data) { gint index=callbacks_get_selected_row_index(); if (index < 0) { show_no_layers_warning (); return; } if (index < mainProject->last_loaded) { gerbv_change_layer_order (mainProject, index, index + 1); callbacks_update_layer_tree (); callbacks_select_layer_row (index + 1); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen (); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } } } /* --------------------------------------------------------- */ void callbacks_move_layer_up_menu_activate (GtkMenuItem *menuitem, gpointer user_data) { callbacks_move_layer_up_button_clicked (NULL, NULL); gtk_widget_grab_focus (screen.win.layerTree); } /* --------------------------------------------------------- */ void callbacks_move_layer_up_button_clicked (GtkButton *button, gpointer user_data) { gint index=callbacks_get_selected_row_index(); if (index < 0) { show_no_layers_warning (); return; } if (index > 0) { gerbv_change_layer_order (mainProject, index, index - 1); callbacks_update_layer_tree (); callbacks_select_layer_row (index - 1); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen(); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } } } /* --------------------------------------------------------- */ void callbacks_layer_tree_row_inserted (GtkTreeModel *tree_model, GtkTreePath *path, GtkTreeIter *oIter, gpointer user_data) { gint *indices=NULL,oldPosition,newPosition; if ((!screen.win.treeIsUpdating)&&(path != NULL)) { indices = gtk_tree_path_get_indices (path); if (indices) { newPosition = indices[0]; oldPosition = callbacks_get_selected_row_index (); /* compensate for the fact that the old row has already been removed */ if (oldPosition < newPosition) newPosition--; else oldPosition--; gerbv_change_layer_order (mainProject, oldPosition, newPosition); if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { render_refresh_rendered_image_on_screen(); } else { render_recreate_composite_surface (screen.drawing_area); callbacks_force_expose_event_for_screen (); } /* select the new line */ GtkTreeSelection *selection; GtkTreeIter iter; GtkListStore *list_store = (GtkListStore *) gtk_tree_view_get_model ((GtkTreeView *) screen.win.layerTree); selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(screen.win.layerTree)); if (gtk_tree_model_get_iter ((GtkTreeModel *)list_store, &iter, path)) gtk_tree_selection_select_iter (selection, &iter); } } } /* --------------------------------------------------------- */ void callbacks_show_color_picker_dialog (gint index){ screen.win.colorSelectionDialog = NULL; GtkColorSelectionDialog *cs= (GtkColorSelectionDialog *) gtk_color_selection_dialog_new (_("Select a color")); GtkColorSelection *colorsel = (GtkColorSelection *) cs->colorsel; screen.win.colorSelectionDialog = (GtkWidget *) cs; screen.win.colorSelectionIndex = index; if (index >= 0) gtk_color_selection_set_current_color (colorsel, &mainProject->file[index]->color); else gtk_color_selection_set_current_color (colorsel, &mainProject->background); if ((screenRenderInfo.renderType >= GERBV_RENDER_TYPE_CAIRO_NORMAL)&&(index >= 0)) { gtk_color_selection_set_has_opacity_control (colorsel, TRUE); gtk_color_selection_set_current_alpha (colorsel, mainProject->file[index]->alpha); } gtk_widget_show_all((GtkWidget *)cs); if (gtk_dialog_run ((GtkDialog*)cs) == GTK_RESPONSE_OK) { GtkColorSelection *colorsel = (GtkColorSelection *) cs->colorsel; gint rowIndex = screen.win.colorSelectionIndex; if (index >= 0) { gtk_color_selection_get_current_color (colorsel, &mainProject->file[rowIndex]->color); gdk_colormap_alloc_color(gdk_colormap_get_system(), &mainProject->file[rowIndex]->color, FALSE, TRUE); } else { gtk_color_selection_get_current_color (colorsel, &mainProject->background); gdk_colormap_alloc_color(gdk_colormap_get_system(), &mainProject->background, FALSE, TRUE); } if ((screenRenderInfo.renderType >= GERBV_RENDER_TYPE_CAIRO_NORMAL)&&(index >= 0)) { mainProject->file[rowIndex]->alpha = gtk_color_selection_get_current_alpha (colorsel); } callbacks_update_layer_tree (); render_refresh_rendered_image_on_screen(); } gtk_widget_destroy ((GtkWidget *)cs); screen.win.colorSelectionDialog = NULL; } /* --------------------------------------------------------- */ void callbacks_invert_layer_clicked (GtkButton *button, gpointer user_data) { gint index=callbacks_get_selected_row_index(); if (index < 0) { show_no_layers_warning (); return; } mainProject->file[index]->transform.inverted = !mainProject->file[index]->transform.inverted; render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree (); } /* --------------------------------------------------------- */ void callbacks_change_layer_color_clicked (GtkButton *button, gpointer user_data) { gint index=callbacks_get_selected_row_index(); if (index < 0) { show_no_layers_warning (); return; } callbacks_show_color_picker_dialog (index); } void callbacks_change_background_color_clicked (GtkButton *button, gpointer user_data) { callbacks_show_color_picker_dialog (-1); } /* --------------------------------------------------------------------------- */ void callbacks_reload_layer_clicked (GtkButton *button, gpointer user_data) { gint index = callbacks_get_selected_row_index (); if (index < 0) { show_no_layers_warning (); return; } render_remove_selected_objects_belonging_to_layer ( &screen.selectionInfo, mainProject->file[index]->image); update_selected_object_message (FALSE); gerbv_revert_file (mainProject, index); render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree(); } void callbacks_change_layer_edit_clicked (GtkButton *button, gpointer userData) { gint index = callbacks_get_selected_row_index(); gerbv_fileinfo_t **files = mainProject->file; gerbv_user_transformation_t **transforms; int i, j; if (index < 0) { show_no_layers_warning (); return; } /* last_loaded == 0 if only one file is loaded */ transforms = g_new (gerbv_user_transformation_t *, mainProject->last_loaded + 2 /* layer + NULL */ + 1 /* if selected layer is visible */); /* [0] is selected layer */ transforms[0] = &mainProject->file[index]->transform; /* Get visible Gerber files transformations */ j = 1; /* [0] is alerady used */ for (i = 0; i <= mainProject->last_loaded; i++) { if (files[i] && files[i]->isVisible) transforms[j++] = &files[i]->transform; } /* Terminate array with NULL */ transforms[j] = NULL; interface_show_layer_edit_dialog(transforms, screen.unit); g_free (transforms); render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree (); } /* --------------------------------------------------------------------------- */ void callbacks_change_layer_format_clicked (GtkButton *button, gpointer user_data) { gerbv_HID_Attribute *attr = NULL; int n = 0; int i; gerbv_HID_Attr_Val * results = NULL; gint index = callbacks_get_selected_row_index(); gchar *type; gint rc; if (index < 0) { show_no_layers_warning (); return; } dprintf ("%s(): index = %d\n", __FUNCTION__, index); attr = mainProject->file[index]->image->info->attr_list; n = mainProject->file[index]->image->info->n_attr; type = mainProject->file[index]->image->info->type; if (type == NULL) type = N_("Unknown type"); if (attr == NULL || n == 0) { interface_show_alert_dialog(_("This file type does not currently have any editable features"), _("Format editing is currently only supported for Excellon drill file formats."), FALSE, NULL); return; } dprintf ("%s(): n = %d, attr = %p\n", __FUNCTION__, n, attr); if (n > 0) { if (mainProject->file[index]->layer_dirty) { rc = interface_get_alert_dialog_response ( _("This layer has changed!"), _("Editing the file type will reload the layer, " "destroying your changes. Click OK to edit " "the file type and destroy your changes, " "or Cancel to leave."), TRUE, NULL, GTK_STOCK_OK, GTK_STOCK_CANCEL); if (rc == 0) return; /* Return if user hit Cancel */ } results = (gerbv_HID_Attr_Val *) malloc (n * sizeof (gerbv_HID_Attr_Val)); if (results == NULL) GERB_FATAL_ERROR("%s(): malloc failed", __FUNCTION__); /* non-zero means cancel was picked */ if (attribute_interface_dialog (attr, n, results, _("Edit file format"), _(type))) { return; } } dprintf ("%s(): reloading layer\n", __func__); gerbv_revert_file (mainProject, index); for (i = 0; i < n; i++) { if (results[i].str_value) free (results[i].str_value); } if (results) free (results); render_refresh_rendered_image_on_screen(); callbacks_update_layer_tree(); } /* --------------------------------------------------------------------------- */ gboolean callbacks_file_drop_event(GtkWidget *widget, GdkDragContext *dc, gint x, gint y, GtkSelectionData *data, guint info, guint time, gpointer p) { gchar **uris, **uri; GSList *fns = NULL; uris = gtk_selection_data_get_uris(data); if (!uris) return FALSE; for (uri = uris; *uri; uri++) { const char *prefix_str = #ifdef WIN32 "file:///"; #else "file://"; #endif if (g_strrstr(*uri, prefix_str) == *uri) fns = g_slist_append(fns, g_uri_unescape_string( *uri + strlen(prefix_str), NULL)); } open_files(fns); g_slist_free(fns); g_strfreev(uris); return TRUE; } /* --------------------------------------------------------------------------- */ gboolean callbacks_layer_tree_key_press (GtkWidget *widget, GdkEventKey *event, gpointer user_data) { /* if space is pressed while a color picker icon is in focus, show the color picker dialog. */ if(event->keyval == GDK_space){ GtkTreeView *tree; GtkTreePath *path; GtkTreeViewColumn *col; gint *indices; gint idx; tree = (GtkTreeView *) screen.win.layerTree; gtk_tree_view_get_cursor (tree, &path, &col); if (path) { indices = gtk_tree_path_get_indices (path); if (indices) { idx = callbacks_get_col_num_from_tree_view_col (col); if ((idx == 1) && (indices[0] <= mainProject->last_loaded)){ callbacks_show_color_picker_dialog (indices[0]); } } gtk_tree_path_free (path); } } /* by default propagate the key press */ return FALSE; } /* --------------------------------------------------------------------------- */ gboolean callbacks_layer_tree_button_press (GtkWidget *widget, GdkEventButton *event, gpointer user_data) { GtkTreePath *path; GtkTreeIter iter; GtkTreeViewColumn *col; gint x,y; gint *indices; GtkListStore *list_store = (GtkListStore *) gtk_tree_view_get_model ( (GtkTreeView *) screen.win.layerTree); if (event->button == 1) { if (gtk_tree_view_get_path_at_pos ((GtkTreeView *) widget, event->x, event->y, &path, &col, &x, &y) && gtk_tree_model_get_iter ((GtkTreeModel *)list_store, &iter, path)) { indices = gtk_tree_path_get_indices (path); if (indices && (indices[0] <= mainProject->last_loaded)) { switch (callbacks_get_col_num_from_tree_view_col (col)) { case 0: callbacks_select_layer_row (indices[0]); callbacks_layer_tree_visibility_toggled (indices[0]); return TRUE; case 1: callbacks_show_color_picker_dialog (indices[0]); /* don't propagate the signal, since drag and drop can sometimes activated during color selection */ return TRUE; } } } } /* don't pop up the menu if we don't have any loaded files */ else if ((event->button == 3)&&(mainProject->last_loaded >= 0)) { gtk_menu_popup (GTK_MENU (screen.win.layerTreePopupMenu), NULL, NULL, NULL, NULL, event->button, event->time); } /* always allow the click to propagate and make sure the line is activated */ return FALSE; } /* --------------------------------------------------------------------------- */ void callbacks_update_layer_tree (void) { GtkListStore *list_store = (GtkListStore *) gtk_tree_view_get_model ((GtkTreeView *) screen.win.layerTree); gint idx; GtkTreeIter iter; GtkTreeSelection *selection; gint oldSelectedRow; int i; if (screen.win.treeIsUpdating) return; screen.win.treeIsUpdating = TRUE; oldSelectedRow = callbacks_get_selected_row_index(); if (oldSelectedRow < 0) oldSelectedRow = 0; gtk_list_store_clear (list_store); for (idx = 0; idx <= mainProject->last_loaded; idx++) { GdkPixbuf *pixbuf, *blackPixbuf; unsigned char red, green, blue, alpha; guint32 color; gchar *layerName; gerbv_fileinfo_t *file; file = mainProject->file[idx]; if (!file) continue; red = (unsigned char) (file->color.red * 255 / G_MAXUINT16); green = (unsigned char) (file->color.green * 255 / G_MAXUINT16); blue = (unsigned char) (file->color.blue *255 / G_MAXUINT16); alpha = (unsigned char) (file->alpha * 255 / G_MAXUINT16); color = red*(256*256*256) + green*(256*256) + blue*256 + alpha; pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 20, 15); gdk_pixbuf_fill (pixbuf, color); blackPixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 20, 15); color = 100*(256*256*256) + 100*(256*256) + 100*256 + 150; gdk_pixbuf_fill (blackPixbuf, color); /* copy the color area into the black pixbuf */ gdk_pixbuf_copy_area (pixbuf, 1, 1, 18, 13, blackPixbuf, 1, 1); g_object_unref(pixbuf); gtk_list_store_append (list_store, &iter); gchar startChar[2],*modifiedCode; /* terminate the letter string */ startChar[1] = 0; gint numberOfModifications = 0; if (file->transform.inverted) { startChar[0] = 'I'; numberOfModifications++; } if (file->transform.mirrorAroundX || file->transform.mirrorAroundY) { startChar[0] = 'M'; numberOfModifications++; } if (fabs(file->transform.translateX) > GERBV_PRECISION_LINEAR_INCH || fabs(file->transform.translateY) > GERBV_PRECISION_LINEAR_INCH) { startChar[0] = 'T'; numberOfModifications++; } if (fabs(file->transform.scaleX - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(file->transform.scaleY - 1) > GERBV_PRECISION_LINEAR_INCH) { startChar[0] = 'S'; numberOfModifications++; } if (fabs(file->transform.rotation) > GERBV_PRECISION_ANGLE_RAD) { startChar[0] = 'R'; numberOfModifications++; } if (numberOfModifications > 1) startChar[0] = '*'; if (numberOfModifications == 0) modifiedCode = g_strdup (""); else modifiedCode = g_strdup (startChar); /* Display any unsaved layers differently to show the user they * are unsaved */ if (file->layer_dirty == TRUE) { /* The layer has unsaved changes in it. Show layer name * in italics. */ layerName = g_strconcat ("*", "", file->name, "", NULL); } else { /* Layer is clean. Show layer name using normal font. */ layerName = g_strdup (file->name); } gtk_list_store_set (list_store, &iter, 0, file->isVisible, 1, blackPixbuf, 2, layerName, 3, modifiedCode, -1); g_free (layerName); g_free (modifiedCode); /* pixbuf has a refcount of 2 now, as the list store has added its own reference */ g_object_unref(blackPixbuf); } selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(screen.win.layerTree)); /* if no line is selected yet, select the first row (if it has data) */ /* or, select the line that was previously selected */ if (!gtk_tree_selection_get_selected (selection, NULL, &iter)) { if (gtk_tree_model_iter_nth_child ((GtkTreeModel *) list_store, &iter, NULL, oldSelectedRow)) { gtk_tree_selection_select_iter (selection, &iter); } } gboolean showItems = (mainProject->last_loaded >= 0); gtk_widget_set_sensitive (screen.win.curLayerMenuItem, showItems); gtk_widget_set_sensitive (screen.win.curAnalyzeMenuItem, showItems); gtk_widget_set_sensitive (screen.win.curEditMenuItem, showItems); for (i = 0; i < sizeof(screen.win.curFileMenuItem)/ sizeof(screen.win.curFileMenuItem[0]); i++) { gtk_widget_set_sensitive (screen.win.curFileMenuItem[i], showItems); } screen.win.treeIsUpdating = FALSE; } /* --------------------------------------------------------------------------- */ void callbacks_display_object_properties_clicked (GtkButton *button, gpointer user_data) { gint index = callbacks_get_selected_row_index (); guint i; if (index < 0 || selection_length (&screen.selectionInfo) == 0) { interface_show_alert_dialog(_("No object is currently selected"), _("Objects must be selected using the pointer tool " "before you can view the object properties."), FALSE, NULL); return; } for (i = 0; i < selection_length (&screen.selectionInfo); i++){ gerbv_selection_item_t sItem = selection_get_item_by_index (&screen.selectionInfo, i); gerbv_net_t *net = sItem.net; gerbv_image_t *image = sItem.image; if (net->interpolation == GERBV_INTERPOLATION_PAREA_START) { /* Spacing for a pretty display */ if (i != 0) g_message (" "); g_message (_("Object type: Polygon")); parea_report (net, image, mainProject); net_layer_file_report (net, image, mainProject); } else { switch (net->aperture_state) { case GERBV_APERTURE_STATE_ON: case GERBV_APERTURE_STATE_FLASH: /* Spacing for a pretty display */ if (i != 0) g_message (" "); break; default: break; } aperture_state_report (net, image, mainProject); } } /* Use separator for different report requests */ g_message ("---------------------------------------"); } void callbacks_support_benchmark (gerbv_render_info_t *renderInfo) { int i; time_t start, now; GdkPixmap *renderedPixmap = gdk_pixmap_new (NULL, renderInfo->displayWidth, renderInfo->displayHeight, 24); // start by running the GDK (fast) rendering test i = 0; start = time(NULL); now = start; while( now - 30 < start) { i++; dprintf("Benchmark(): Starting redraw #%d\n", i); gerbv_render_to_pixmap_using_gdk (mainProject, renderedPixmap, renderInfo, NULL, NULL); now = time(NULL); dprintf("Elapsed time = %ld seconds\n", (long int) (now - start)); } g_message(_("FAST (=GDK) mode benchmark: %d redraws " "in %ld seconds (%g redraws/second)"), i, (long int) (now - start), (double) i / (double)(now - start)); gdk_pixmap_unref(renderedPixmap); // run the cairo (normal) render mode i = 0; start = time(NULL); now = start; renderInfo->renderType = GERBV_RENDER_TYPE_CAIRO_NORMAL; while( now - 30 < start) { i++; dprintf("Benchmark(): Starting redraw #%d\n", i); cairo_surface_t *cSurface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, renderInfo->displayWidth, renderInfo->displayHeight); cairo_t *cairoTarget = cairo_create (cSurface); gerbv_render_all_layers_to_cairo_target (mainProject, cairoTarget, renderInfo); cairo_destroy (cairoTarget); cairo_surface_destroy (cSurface); now = time(NULL); dprintf("Elapsed time = %ld seconds\n", (long int) (now - start)); } g_message(_("NORMAL (=Cairo) mode benchmark: %d redraws " "in %ld seconds (%g redraws/second)"), i, (long int) (now - start), (double) i / (double)(now - start)); } /* --------------------------------------------------------------------------- */ void callbacks_benchmark_clicked (GtkButton *button, gpointer user_data) { // prepare render size and options (canvas size width and height are last 2 variables) gerbv_render_info_t renderInfo = {1.0, 1.0, 0, 0, GERBV_RENDER_TYPE_GDK, 640, 480}; if (!interface_get_alert_dialog_response(_("Performance benchmark"), _("Application will be unresponsive for 1 minute! " "Run performance benchmark?"), FALSE, NULL, GTK_STOCK_OK, GTK_STOCK_CANCEL)) return; GERB_COMPILE_WARNING(_("Running full zoom benchmark...")); while (g_main_context_iteration(NULL, FALSE)) {} // update log widget // autoscale the image for now...maybe we don't want to do this in order to // allow benchmarking of different zoom levels? gerbv_render_zoom_to_fit_display (mainProject, &renderInfo); callbacks_support_benchmark (&renderInfo); GERB_COMPILE_WARNING(_("Running x5 zoom benchmark...")); while (g_main_context_iteration(NULL, FALSE)) {} // update log widget renderInfo.lowerLeftX += (screenRenderInfo.displayWidth / screenRenderInfo.scaleFactorX) / 3.0; renderInfo.lowerLeftY += (screenRenderInfo.displayHeight / screenRenderInfo.scaleFactorY) / 3.0; renderInfo.scaleFactorX *= 5; renderInfo.scaleFactorY *= 5; callbacks_support_benchmark (&renderInfo); } /* --------------------------------------------------------------------------- */ void callbacks_edit_object_properties_clicked (GtkButton *button, gpointer user_data){ } /* --------------------------------------------------------------------------- */ void callbacks_move_objects_clicked (GtkButton *button, gpointer user_data){ /* for testing, just hard code in some translations here */ gerbv_image_move_selected_objects (screen.selectionInfo.selectedNodeArray, -0.050, 0.050); callbacks_update_layer_tree(); selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); render_refresh_rendered_image_on_screen (); } /* --------------------------------------------------------------------------- */ void callbacks_reduce_object_area_clicked (GtkButton *button, gpointer user_data){ /* for testing, just hard code in some parameters */ gerbv_image_reduce_area_of_selected_objects (screen.selectionInfo.selectedNodeArray, 0.20, 3, 3, 0.01); selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); render_refresh_rendered_image_on_screen (); } /* --------------------------------------------------------------------------- */ void callbacks_delete_objects_clicked (GtkButton *button, gpointer user_data) { if (selection_length (&screen.selectionInfo) == 0) { interface_show_alert_dialog ( _("No object is currently selected"), _("Objects must be selected using the pointer tool " "before they can be deleted."), FALSE, NULL); return; } gint index = callbacks_get_selected_row_index (); if (index < 0) return; if (mainProject->check_before_delete) { if (!interface_get_alert_dialog_response ( _("Do you want to permanently delete " "the selected objects from visible layers?"), _("Gerbv currently has no undo function, so " "this action cannot be undone. This action " "will not change the saved file unless you " "save the file afterwards."), TRUE, &(mainProject->check_before_delete), GTK_STOCK_DELETE, GTK_STOCK_CANCEL)) { return; } } guint i; for (i = 0; i < selection_length (&screen.selectionInfo);) { gerbv_selection_item_t sel_item = selection_get_item_by_index (&screen.selectionInfo, i); gerbv_fileinfo_t *file_info = gerbv_get_fileinfo_for_image(sel_item.image, mainProject); /* Preserve currently invisible selection from deletion */ if (!file_info->isVisible) { i++; continue; } file_info->layer_dirty = TRUE; selection_clear_item_by_index (&screen.selectionInfo, i); gerbv_image_delete_net (sel_item.net); } update_selected_object_message (FALSE); render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree(); } /* --------------------------------------------------------------------------- */ gboolean callbacks_drawingarea_configure_event (GtkWidget *widget, GdkEventConfigure *event) { GdkDrawable *drawable = widget->window; gdk_drawable_get_size (drawable, &screenRenderInfo.displayWidth, &screenRenderInfo.displayHeight); /* set this up if cairo is compiled, since we may need to switch over to using the surface at any time */ int x_off=0, y_off=0; if (GDK_IS_WINDOW(widget->window)) { /* query the window's backbuffer if it has one */ GdkWindow *window = GDK_WINDOW(widget->window); gdk_window_get_internal_paint_info (window, &drawable, &x_off, &y_off); } if (screen.windowSurface) cairo_surface_destroy ((cairo_surface_t *) screen.windowSurface); #if defined(WIN32) || defined(QUARTZ) cairo_t *cairoTarget = gdk_cairo_create (GDK_WINDOW(widget->window)); screen.windowSurface = cairo_get_target (cairoTarget); /* increase surface reference by one so it isn't freed when the cairo_t is destroyed next */ screen.windowSurface = cairo_surface_reference (screen.windowSurface); cairo_destroy (cairoTarget); #else GdkVisual *visual = gdk_drawable_get_visual (drawable); screen.windowSurface = (gpointer) cairo_xlib_surface_create (GDK_DRAWABLE_XDISPLAY (drawable), GDK_DRAWABLE_XID (drawable), GDK_VISUAL_XVISUAL (visual), screenRenderInfo.displayWidth, screenRenderInfo.displayHeight); #endif /* if this is the first time, go ahead and call autoscale even if we don't have a model loaded */ if ((screenRenderInfo.scaleFactorX < 0.001)||(screenRenderInfo.scaleFactorY < 0.001)) { gerbv_render_zoom_to_fit_display (mainProject, &screenRenderInfo); } render_refresh_rendered_image_on_screen(); return TRUE; } /* --------------------------------------------------------- */ gboolean callbacks_drawingarea_expose_event (GtkWidget *widget, GdkEventExpose *event) { if (screenRenderInfo.renderType <= GERBV_RENDER_TYPE_GDK_XOR) { GdkPixmap *new_pixmap; GdkGC *gc = gdk_gc_new(widget->window); /* * Create a pixmap with default background */ new_pixmap = gdk_pixmap_new(widget->window, widget->allocation.width, widget->allocation.height, -1); gdk_gc_set_foreground(gc, &mainProject->background); gdk_draw_rectangle(new_pixmap, gc, TRUE, event->area.x, event->area.y, event->area.width, event->area.height); /* * Copy gerber pixmap onto background if we have one to copy. * Do translation at the same time. */ if (screen.pixmap != NULL) { gdk_draw_pixmap(new_pixmap, widget->style->fg_gc[GTK_WIDGET_STATE (widget)], screen.pixmap, event->area.x - screen.off_x, event->area.y - screen.off_y, event->area.x, event->area.y, event->area.width, event->area.height); } /* * Draw the whole thing onto screen */ gdk_draw_pixmap(widget->window, widget->style->fg_gc[GTK_WIDGET_STATE (widget)], new_pixmap, event->area.x, event->area.y, event->area.x, event->area.y, event->area.width, event->area.height); gdk_pixmap_unref(new_pixmap); gdk_gc_unref(gc); /* * Draw Zooming outline if we are in that mode */ if (screen.state == IN_ZOOM_OUTLINE) { render_draw_zoom_outline(screen.centered_outline_zoom); } else if (screen.state == IN_MEASURE) { render_draw_measure_distance(); } if (screen.tool == MEASURE && screen.state != IN_MEASURE) { render_toggle_measure_line(); } return FALSE; } cairo_t *cr; int width, height; int x_off=0, y_off=0; GdkDrawable *drawable = widget->window; if (GDK_IS_WINDOW(widget->window)) { /* query the window's backbuffer if it has one */ GdkWindow *window = GDK_WINDOW(widget->window); gdk_window_get_internal_paint_info (window, &drawable, &x_off, &y_off); } gdk_drawable_get_size (drawable, &width, &height); #if defined(WIN32) || defined(QUARTZ) /* FIXME */ cr = gdk_cairo_create (GDK_WINDOW(widget->window)); #else cairo_surface_t *buffert; GdkVisual *visual = gdk_drawable_get_visual (drawable); buffert = (gpointer) cairo_xlib_surface_create (GDK_DRAWABLE_XDISPLAY (drawable), GDK_DRAWABLE_XID (drawable), GDK_VISUAL_XVISUAL (visual), event->area.width, event->area.height); cr = cairo_create (buffert); #endif cairo_translate (cr, -event->area.x + screen.off_x, -event->area.y + screen.off_y); render_project_to_cairo_target (cr); cairo_destroy (cr); #if !defined(WIN32) && !defined(QUARTZ) cairo_surface_destroy (buffert); #endif if (screen.tool == MEASURE) render_toggle_measure_line(); return FALSE; } /* Transforms screen coordinates to board ones */ static void callbacks_screen2board(gdouble *X, gdouble *Y, gint x, gint y) { /* make sure we don't divide by zero (which is possible if the gui isn't displayed yet */ if ((screenRenderInfo.scaleFactorX > 0.001)||(screenRenderInfo.scaleFactorY > 0.001)) { *X = screenRenderInfo.lowerLeftX + (x / screenRenderInfo.scaleFactorX); *Y = screenRenderInfo.lowerLeftY + ((screenRenderInfo.displayHeight - y) / screenRenderInfo.scaleFactorY); } else { *X = *Y = 0.0; } } const char *gerbv_coords_pattern_mils_str = N_("%8.2f %8.2f"); /* --------------------------------------------------------- */ static void callbacks_update_statusbar_coordinates (gint x, gint y) { gdouble X, Y; callbacks_screen2board (&X, &Y, x, y); switch (screen.unit) { case GERBV_MILS: utf8_snprintf (screen.statusbar.coordstr, MAX_COORDLEN, _(gerbv_coords_pattern_mils_str), COORD2MILS (X), COORD2MILS (Y)); break; case GERBV_MMS: utf8_snprintf (screen.statusbar.coordstr, MAX_COORDLEN, _("%8.3f %8.3f"), COORD2MMS (X), COORD2MMS (Y)); break; default: utf8_snprintf (screen.statusbar.coordstr, MAX_COORDLEN, _("%4.5f %4.5f"), COORD2INS (X), COORD2INS (Y)); } callbacks_update_statusbar(); } static void update_selected_object_message (gboolean userTriedToSelect) { if (screen.tool != POINTER) return; gint selectionLength = selection_length (&screen.selectionInfo); if (selectionLength == 0) { if (userTriedToSelect) { /* Update status bar message to make sure the user * knows about needing to select the layer */ gchar *str = g_new(gchar, MAX_DISTLEN); utf8_strncpy(str, _("No object selected. Objects can " "only be selected in the active " "layer."), MAX_DISTLEN - 7); utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, "%s", str); g_free(str); } else { utf8_strncpy(screen.statusbar.diststr, _("Click to select objects in the " "active layer. Middle click and drag " "to pan."), MAX_DISTLEN); } } else { utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, ngettext("%d object are currently selected", "%d objects are currently selected", selectionLength), selectionLength); } callbacks_update_statusbar(); } /* --------------------------------------------------------- */ gboolean callbacks_drawingarea_motion_notify_event (GtkWidget *widget, GdkEventMotion *event) { int x, y; GdkModifierType state; if (event->is_hint) gdk_window_get_pointer (event->window, &x, &y, &state); else { x = event->x; y = event->y; state = event->state; } switch (screen.state) { case IN_MOVE: { if (screen.last_x != 0 || screen.last_y != 0) { /* Move pixmap to get a snappier feel of movement */ screen.off_x += x - screen.last_x; screen.off_y += y - screen.last_y; } screenRenderInfo.lowerLeftX -= ((x - screen.last_x) / screenRenderInfo.scaleFactorX); screenRenderInfo.lowerLeftY += ((y - screen.last_y) / screenRenderInfo.scaleFactorY); callbacks_force_expose_event_for_screen (); callbacks_update_scrollbar_positions (); screen.last_x = x; screen.last_y = y; break; } case IN_ZOOM_OUTLINE: { if (screen.last_x || screen.last_y) render_draw_zoom_outline(screen.centered_outline_zoom); screen.last_x = x; screen.last_y = y; render_draw_zoom_outline(screen.centered_outline_zoom); break; } case IN_MEASURE: { /* clear the previous drawn line by drawing over it */ render_toggle_measure_line(); callbacks_screen2board(&(screen.measure_stop_x), &(screen.measure_stop_y), x, y); /* screen.last_[xy] are updated to move the ruler pointers */ screen.last_x = x; screen.last_y = y; /* draw the new line and write the new distance */ render_draw_measure_distance(); break; } case IN_SELECTION_DRAG: { if (screen.last_x || screen.last_y) render_draw_selection_box_outline(); screen.last_x = x; screen.last_y = y; render_draw_selection_box_outline(); break; } default: screen.last_x = x; screen.last_y = y; break; } callbacks_update_statusbar_coordinates (x, y); callbacks_update_ruler_pointers (); return TRUE; } /* motion_notify_event */ /* --------------------------------------------------------- */ gboolean callbacks_drawingarea_button_press_event (GtkWidget *widget, GdkEventButton *event) { GdkWindow *drawing_area_window = screen.drawing_area->window; GdkCursor *cursor; switch (event->button) { case 1 : if (screen.tool == POINTER) { /* select */ /* selection will only work with cairo, so do nothing if it's not compiled */ screen.state = IN_SELECTION_DRAG; screen.start_x = event->x; screen.start_y = event->y; } else if (screen.tool == PAN) { /* Plain panning */ screen.state = IN_MOVE; screen.last_x = event->x; screen.last_y = event->y; } else if (screen.tool == ZOOM) { screen.state = IN_ZOOM_OUTLINE; /* Zoom outline mode initiated */ screen.start_x = event->x; screen.start_y = event->y; screen.centered_outline_zoom = event->state; } else if (screen.tool == MEASURE) { screen.state = IN_MEASURE; callbacks_screen2board(&(screen.measure_start_x), &(screen.measure_start_y), event->x, event->y); screen.measure_stop_x = screen.measure_start_x; screen.measure_stop_y = screen.measure_start_y; /* force an expose event to clear any previous measure lines */ callbacks_force_expose_event_for_screen (); } break; case 2 : screen.state = IN_MOVE; screen.last_x = event->x; screen.last_y = event->y; cursor = gdk_cursor_new(GDK_FLEUR); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); break; case 3 : if (screen.tool == POINTER) { /* if no items are selected, try and find the item the user is pointing at */ if (selection_length (&screen.selectionInfo) == 0) { gint index=callbacks_get_selected_row_index(); if ((index >= 0) && (index <= mainProject->last_loaded) && (mainProject->file[index]->isVisible)) { render_fill_selection_buffer_from_mouse_click( event->x, event->y, index, SELECTION_REPLACE); } else { selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); render_refresh_rendered_image_on_screen (); } } /* only show the popup if we actually have something selected now */ if (selection_length (&screen.selectionInfo) != 0) { update_selected_object_message (TRUE); gtk_menu_popup(GTK_MENU(screen.win.drawWindowPopupMenu), NULL, NULL, NULL, NULL, event->button, event->time); } } else { /* Zoom outline mode initiated */ screen.state = IN_ZOOM_OUTLINE; screen.start_x = event->x; screen.start_y = event->y; screen.centered_outline_zoom = event->state & GDK_SHIFT_MASK; cursor = gdk_cursor_new(GDK_SIZING); gdk_window_set_cursor(drawing_area_window, cursor); gdk_cursor_destroy(cursor); } break; case 4 : /* Scroll wheel */ render_zoom_display (ZOOM_IN_CMOUSE, 0, event->x, event->y); break; case 5 : /* Scroll wheel */ render_zoom_display (ZOOM_OUT_CMOUSE, 0, event->x, event->y); break; default: break; } callbacks_switch_to_correct_cursor (); return TRUE; } static gboolean check_align_files_possibility (gerbv_selection_info_t *sel_info) { gerbv_fileinfo_t **f = mainProject->file; GtkMenuItem **menu_items = (GtkMenuItem **) screen.win.curEditAlingItem; gerbv_selection_item_t si[2]; int id[2] = {-1, -1}; int i; /* If has two objects, then can do files aligning */ if (selection_length (sel_info) == 2) { si[0] = selection_get_item_by_index(sel_info, 0); si[1] = selection_get_item_by_index(sel_info, 1); for (i = 0; i <= mainProject->last_loaded; i++) { if (f[i]->image == si[0].image) id[0] = i; if (f[i]->image == si[1].image) id[1] = i; } /* Can align if on different files */ if (id[0]*id[1] >= 0 && id[0] != id[1]) { gchar *str; /* TODO: add color boxes for layers as hint */ /* Update align menu items */ str = g_strdup_printf (_("#_%i %s > #%i %s"), id[0]+1, f[id[0]]->name, id[1]+1, f[id[1]]->name); gtk_menu_item_set_label (menu_items[0], str); g_free (str); str = g_strdup_printf (_("#_%i %s > #%i %s"), id[1]+1, f[id[1]]->name, id[0]+1, f[id[0]]->name); gtk_menu_item_set_label (menu_items[1], str); g_free (str); gtk_widget_set_sensitive ( screen.win.curEditAlingMenuItem, TRUE); return TRUE; } } /* Can't align, disable align menu */ gtk_widget_set_sensitive (screen.win.curEditAlingMenuItem, FALSE); gtk_menu_item_set_label (menu_items[0], ""); gtk_menu_item_set_label (menu_items[1], ""); return FALSE; } /** The edit -> align layers menu item was selected. Align first to second or * second to first layers by selected elements */ void callbacks_align_files_from_sel_clicked ( GtkMenuItem *menu_item, gpointer user_data) { gerbv_fileinfo_t *fi[2]; gerbv_selection_item_t item[2]; gerbv_net_t *net; gerbv_selection_info_t *sel_info = &screen.selectionInfo; int align_second_to_first = GPOINTER_TO_INT(user_data); gdouble x[2], y[2]; int i; if (selection_length (sel_info) != 2) return; item[0] = selection_get_item_by_index(sel_info, 0); item[1] = selection_get_item_by_index(sel_info, 1); fi[0] = gerbv_get_fileinfo_for_image (item[0].image, mainProject); fi[1] = gerbv_get_fileinfo_for_image (item[1].image, mainProject); if (fi[0] == NULL || fi[1] == NULL || fi[0] == fi[1]) return; /* Calculate aligning coords */ for (i = 0; i < 2; i++) { net = item[i].net; switch (net->aperture_state) { case GERBV_APERTURE_STATE_FLASH: x[i] = net->stop_x; y[i] = net->stop_y; break; case GERBV_APERTURE_STATE_ON: switch (net->interpolation) { case GERBV_INTERPOLATION_LINEARx1: case GERBV_INTERPOLATION_LINEARx10: case GERBV_INTERPOLATION_LINEARx01: case GERBV_INTERPOLATION_LINEARx001: x[i] = (net->stop_x + net->start_x)/2; y[i] = (net->stop_y + net->start_y)/2; break; case GERBV_INTERPOLATION_CW_CIRCULAR: case GERBV_INTERPOLATION_CCW_CIRCULAR: x[i] = net->cirseg->cp_x; y[i] = net->cirseg->cp_y; break; default: GERB_COMPILE_ERROR (_("Can't align by this " "type of object")); return; } break; default: GERB_COMPILE_ERROR (_("Can't align by this " "type of object")); return; } gerbv_transform_coord_for_image(x + i, y + i, item[i].image, mainProject); } if (align_second_to_first) { fi[1]->transform.translateX += x[0] - x[1]; fi[1]->transform.translateY += y[0] - y[1]; } else { fi[0]->transform.translateX += x[1] - x[0]; fi[0]->transform.translateY += y[1] - y[0]; } render_refresh_rendered_image_on_screen (); callbacks_update_layer_tree (); } /* --------------------------------------------------------- */ gboolean callbacks_drawingarea_button_release_event (GtkWidget *widget, GdkEventButton *event) { gint index; if (event->type != GDK_BUTTON_RELEASE) return TRUE; switch (screen.state) { case IN_MOVE: screen.off_x = 0; screen.off_y = 0; render_refresh_rendered_image_on_screen (); callbacks_switch_to_normal_tool_cursor (screen.tool); break; case IN_ZOOM_OUTLINE: if ((event->state & GDK_SHIFT_MASK) != 0) { render_zoom_display (ZOOM_OUT_CMOUSE, 0, event->x, event->y); } /* if the user just clicks without dragging, then simply zoom in a preset amount */ else if ((abs(screen.start_x - event->x) < 4) && (abs(screen.start_y - event->y) < 4)) { render_zoom_display (ZOOM_IN_CMOUSE, 0, event->x, event->y); } else { render_calculate_zoom_from_outline (widget, event); } callbacks_switch_to_normal_tool_cursor (screen.tool); break; case IN_SELECTION_DRAG: /* selection will only work with cairo, so do nothing if it's not compiled */ index = callbacks_get_selected_row_index (); if ((index >= 0) && mainProject->file[index]->isVisible) { enum selection_action sel_action = SELECTION_REPLACE; if (event->state & GDK_SHIFT_MASK) sel_action = SELECTION_ADD; else if (event->state & GDK_CONTROL_MASK) sel_action = SELECTION_TOGGLE; /* determine if this was just a click or a box drag */ if ((fabs((double)(screen.last_x - screen.start_x)) < 5) && (fabs((double)(screen.last_y - screen.start_y)) < 5)) { render_fill_selection_buffer_from_mouse_click ( event->x, event->y, index, sel_action); } else { render_fill_selection_buffer_from_mouse_drag ( event->x, event->y, screen.start_x, screen.start_y, index, sel_action); } /* Check if anything was selected */ update_selected_object_message (TRUE); check_align_files_possibility (&screen.selectionInfo); } else { render_refresh_rendered_image_on_screen (); } break; default: break; } screen.state = NORMAL; return TRUE; } /* button_release_event */ /* --------------------------------------------------------- */ gboolean callbacks_window_key_press_event (GtkWidget *widget, GdkEventKey *event) { switch (event->keyval) { case GDK_Escape: if (screen.tool == POINTER) { selection_clear (&screen.selectionInfo); update_selected_object_message (FALSE); } /* Escape may be used to abort outline zoom and just plain * repaint */ screen.state = NORMAL; render_refresh_rendered_image_on_screen(); break; default: break; } return TRUE; } /* key_press_event */ /* --------------------------------------------------------- */ gboolean callbacks_window_key_release_event (GtkWidget *widget, GdkEventKey *event) { return TRUE; } /* key_release_event */ /* --------------------------------------------------------- */ /* Scroll wheel */ gboolean callbacks_window_scroll_event(GtkWidget *widget, GdkEventScroll *event) { switch (event->direction) { case GDK_SCROLL_UP: render_zoom_display (ZOOM_IN_CMOUSE, 0, event->x, event->y); break; case GDK_SCROLL_DOWN: render_zoom_display (ZOOM_OUT_CMOUSE, 0, event->x, event->y); break; case GDK_SCROLL_LEFT: /* Ignore */ case GDK_SCROLL_RIGHT: /* Ignore */ default: return TRUE; } return TRUE; } /* scroll_event */ /* ------------------------------------------------------------------ */ /** Displays additional information in the statusbar. The Statusbar is divided into three sections:\n statusbar.coordstr for coords\n statusbar.diststr for displaying measured distances or the designator (right click on a graphically marked and also actively selected part)\n statusbar.msg for e.g. showing progress of actions*/ void callbacks_update_statusbar(void) { if ((screen.statusbar.coordstr != NULL)&&(GTK_IS_LABEL(screen.win.statusMessageLeft))) { gtk_label_set_text(GTK_LABEL(screen.win.statusMessageLeft), screen.statusbar.coordstr); } if ((screen.statusbar.diststr != NULL)&&(GTK_IS_LABEL(screen.win.statusMessageRight))) { gtk_label_set_markup(GTK_LABEL(screen.win.statusMessageRight), screen.statusbar.diststr); } } /* --------------------------------------------------------- */ void callbacks_update_statusbar_measured_distance (gdouble dx, gdouble dy){ gdouble delta = hypot(dx, dy); if (screen.unit == GERBV_MILS) { utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, _("Measured distance: %8.2f mils (%8.2f x, %8.2f y)"), COORD2MILS(delta), COORD2MILS(dx), COORD2MILS(dy)); } else if (screen.unit == GERBV_MMS) { utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, _("Measured distance: %8.3f mm (%8.3f x, %8.3f y)"), COORD2MMS(delta), COORD2MMS(dx), COORD2MMS(dy)); } else { utf8_snprintf(screen.statusbar.diststr, MAX_DISTLEN, _("Measured distance: %4.5f inches (%4.5f x, %4.5f y)"), COORD2INS(delta), COORD2INS(dx), COORD2INS(dy)); } callbacks_update_statusbar(); } /* --------------------------------------------------------- */ void callbacks_sidepane_render_type_combo_box_changed (GtkComboBox *widget, gpointer user_data) { int type = gtk_combo_box_get_active (widget); dprintf ("%s(): type = %d\n", __FUNCTION__, type); if (type < 0 || type == screenRenderInfo.renderType) return; screenRenderInfo.renderType = type; callbacks_render_type_changed (); } /* --------------------------------------------------------- */ void callbacks_viewmenu_rendertype_changed (GtkCheckMenuItem *widget, gpointer user_data) { gint type = GPOINTER_TO_INT(user_data); if (type == screenRenderInfo.renderType) return; dprintf ("%s(): type = %d\n", __FUNCTION__, type); screenRenderInfo.renderType = type; callbacks_render_type_changed (); } /* --------------------------------------------------------- */ void callbacks_viewmenu_units_changed (GtkCheckMenuItem *widget, gpointer user_data) { gint unit = GPOINTER_TO_INT(user_data); if (unit < 0 || unit == screen.unit) return; dprintf ("%s(): unit = %d, screen.unit = %d\n", __FUNCTION__, unit, screen.unit); callbacks_units_changed (unit); } /* --------------------------------------------------------- */ void callbacks_statusbar_unit_combo_box_changed (GtkComboBox *widget, gpointer user_data) { int unit = gtk_combo_box_get_active (widget); int force_change = GPOINTER_TO_INT (user_data); if (!force_change && (unit < 0 || unit == screen.unit)) return; callbacks_units_changed (unit); } /* --------------------------------------------------------- */ void callbacks_clear_messages_button_clicked (GtkButton *button, gpointer user_data) { GtkTextBuffer *textbuffer; GtkTextIter start, end; screen.length_sum = 0; textbuffer = gtk_text_view_get_buffer((GtkTextView*)screen.win.messageTextView); gtk_text_buffer_get_start_iter(textbuffer, &start); gtk_text_buffer_get_end_iter(textbuffer, &end); gtk_text_buffer_delete (textbuffer, &start, &end); } /* --------------------------------------------------------- */ void callbacks_handle_log_messages(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { GtkTextBuffer *textbuffer = NULL; GtkTextIter iter; GtkTextTag *tag; GtkTextMark *StartMark = NULL, *StopMark = NULL; GtkTextIter StartIter, StopIter; GtkWidget *dialog, *label; if (!screen.win.messageTextView) return; textbuffer = gtk_text_view_get_buffer((GtkTextView*)screen.win.messageTextView); /* create a mark for the end of the text. */ gtk_text_buffer_get_end_iter(textbuffer, &iter); /* get the current end position of the text (it will be the start of the new text. */ StartMark = gtk_text_buffer_create_mark(textbuffer, "NewTextStart", &iter, TRUE); tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "blue_foreground"); /* the tag does not exist: create it and let them exist in the tag table.*/ if (tag == NULL) { tag = gtk_text_buffer_create_tag(textbuffer, "black_foreground", "foreground", "black", NULL); tag = gtk_text_buffer_create_tag(textbuffer, "blue_foreground", "foreground", "blue", NULL); tag = gtk_text_buffer_create_tag(textbuffer, "red_foreground", "foreground", "red", NULL); tag = gtk_text_buffer_create_tag(textbuffer, "darkred_foreground", "foreground", "darkred", NULL); tag = gtk_text_buffer_create_tag(textbuffer, "darkblue_foreground", "foreground", "darkblue", NULL); tag = gtk_text_buffer_create_tag (textbuffer, "darkgreen_foreground", "foreground", "darkgreen", NULL); tag = gtk_text_buffer_create_tag (textbuffer, "saddlebrown_foreground", "foreground", "saddlebrown", NULL); } /* * See rgb.txt for the color names definition * (on my PC it is on /usr/X11R6/lib/X11/rgb.txt) */ switch (log_level & G_LOG_LEVEL_MASK) { case G_LOG_LEVEL_ERROR: /* a message of this kind aborts the application calling abort() */ tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "red_foreground"); gtk_notebook_set_current_page(GTK_NOTEBOOK(screen.win.sidepane_notebook), 1); gtk_widget_show(screen.win.sidepane_notebook); break; case G_LOG_LEVEL_CRITICAL: tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "red_foreground"); gtk_notebook_set_current_page(GTK_NOTEBOOK(screen.win.sidepane_notebook), 1); gtk_widget_show(screen.win.sidepane_notebook); break; case G_LOG_LEVEL_WARNING: tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "darkred_foreground"); gtk_notebook_set_current_page(GTK_NOTEBOOK(screen.win.sidepane_notebook), 1); gtk_widget_show(screen.win.sidepane_notebook); break; case G_LOG_LEVEL_MESSAGE: tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "darkblue_foreground"); gtk_notebook_set_current_page(GTK_NOTEBOOK(screen.win.sidepane_notebook), 1); gtk_widget_show(screen.win.sidepane_notebook); break; case G_LOG_LEVEL_INFO: tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "darkgreen_foreground"); break; case G_LOG_LEVEL_DEBUG: tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(textbuffer), "saddlebrown_foreground"); break; default: tag = gtk_text_tag_table_lookup (gtk_text_buffer_get_tag_table(textbuffer), "black_foreground"); break; } /* * Fatal aborts application. We will try to get the message out anyhow. */ if (log_level & G_LOG_FLAG_FATAL) { fprintf(stderr, _("Fatal error: %s\n"), message); /* Try to show dialog box with error message */ dialog = gtk_dialog_new_with_buttons(_("Fatal Error"), NULL, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL); label = gtk_label_new(g_strdup_printf(_("Fatal error: %s"), message)); gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label); gtk_label_set_selectable(GTK_LABEL(label), TRUE); gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), gtk_label_new(_("\nGerbv will be closed now!"))); gtk_container_set_border_width(GTK_CONTAINER(dialog), 5); gtk_widget_show_all(dialog); gtk_dialog_run(GTK_DIALOG(dialog)); } gtk_text_buffer_insert(textbuffer, &iter, message, -1); gtk_text_buffer_insert(textbuffer, &iter, "\n", -1); /* Scroll view to inserted text */ g_signal_emit_by_name(textbuffer, "paste-done", NULL); gtk_text_buffer_get_end_iter(textbuffer, &iter); StopMark = gtk_text_buffer_create_mark(textbuffer, "NewTextStop", &iter, TRUE); gtk_text_buffer_get_iter_at_mark(textbuffer, &StartIter, StartMark); gtk_text_buffer_get_iter_at_mark(textbuffer, &StopIter, StopMark); gtk_text_buffer_apply_tag(textbuffer, tag, &StartIter, &StopIter); } /* --------------------------------------------------------- */ void callbacks_force_expose_event_for_screen (void) { GdkRectangle update_rect; update_rect.x = 0; update_rect.y = 0; update_rect.width = screenRenderInfo.displayWidth; update_rect.height = screenRenderInfo.displayHeight; /* Calls expose_event */ gdk_window_invalidate_rect (screen.drawing_area->window, &update_rect, FALSE); /* update other gui things that could have changed */ callbacks_update_ruler_scales (); callbacks_update_scrollbar_limits (); callbacks_update_scrollbar_positions (); } static double screen_units(double d) { switch (screen.unit) { case GERBV_INS: return COORD2INS(d); break; case GERBV_MILS: return COORD2MILS(d); break; case GERBV_MMS: return COORD2MMS(d); break; } return d; } static const char *screen_units_str(void) { /* NOTE: in order of gerbv_gui_unit_t */ const char *units_str[] = {N_("mil"), N_("mm"), N_("in")}; return _(units_str[screen.unit]); } static double line_length(double x0, double y0, double x1, double y1) { double dx = x0 - x1; double dy = y0 - y1; return hypot(dx, dy); } static double arc_length(double dia, double angle) { return M_PI*dia*(angle/360.0); } static void aperture_state_report (gerbv_net_t *net, gerbv_image_t *img, gerbv_project_t *prj) { gerbv_layertype_t layer_type = img->layertype; gboolean show_length = FALSE; gboolean aperture_is_valid = FALSE; double x, y, len = 0; if (net->aperture > 0) aperture_is_valid = TRUE; switch (net->aperture_state) { case GERBV_APERTURE_STATE_OFF: break; case GERBV_APERTURE_STATE_ON: switch (net->interpolation) { case GERBV_INTERPOLATION_LINEARx1: case GERBV_INTERPOLATION_LINEARx10: case GERBV_INTERPOLATION_LINEARx01: case GERBV_INTERPOLATION_LINEARx001: if (layer_type != GERBV_LAYERTYPE_DRILL) g_message (_("Object type: Line")); else g_message (_("Object type: Slot (drilled)")); len = line_length(net->start_x, net->start_y, net->stop_x, net->stop_y); show_length = 1; break; case GERBV_INTERPOLATION_CW_CIRCULAR: case GERBV_INTERPOLATION_CCW_CIRCULAR: g_message (_("Object type: Arc")); len = arc_length(net->cirseg->width, fabs(net->cirseg->angle1 - net->cirseg->angle2)); show_length = 1; break; default: g_message (_("Object type: Unknown")); break; } if (layer_type != GERBV_LAYERTYPE_DRILL) g_message (_(" Exposure: On")); if (aperture_is_valid) { if (layer_type != GERBV_LAYERTYPE_DRILL) aperture_report(img->aperture, net->aperture, net->start_x, net->start_y, img, prj); else drill_report(img->aperture, net->aperture); } x = net->start_x; y = net->start_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Start: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x = net->stop_x; y = net->stop_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Stop: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); switch (net->interpolation) { case GERBV_INTERPOLATION_CW_CIRCULAR: case GERBV_INTERPOLATION_CCW_CIRCULAR: x = net->cirseg->cp_x; y = net->cirseg->cp_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x = net->cirseg->width/2; y = x; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Radius: %g %s"), screen_units(x), screen_units_str()); g_message (_(" Angle: %g deg"), fabs(net->cirseg->angle1 - net->cirseg->angle2)); g_message (_(" Angles: (%g, %g) deg"), net->cirseg->angle1, net->cirseg->angle2); g_message (_(" Direction: %s"), (net->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR)? _("CW"): _("CCW")); break; default: break; } if (show_length) { gerbv_aperture_t *aper = img->aperture[net->aperture]; if (layer_type == GERBV_LAYERTYPE_DRILL && aperture_is_valid && aper->type == GERBV_APTYPE_CIRCLE) { double dia = aper->parameter[0]; g_message (_(" Slot length: %g %s"), screen_units(len + dia), screen_units_str()); } screen.length_sum += len; g_message (_(" Length: %g (sum: %g) %s"), screen_units(len), screen_units(screen.length_sum), screen_units_str()); } net_layer_file_report (net, img, prj); break; case GERBV_APERTURE_STATE_FLASH: if (layer_type != GERBV_LAYERTYPE_DRILL) g_message (_("Object type: Flashed aperture")); else g_message (_("Object type: Drill")); if (aperture_is_valid) { if (layer_type != GERBV_LAYERTYPE_DRILL) aperture_report(img->aperture, net->aperture, net->stop_x, net->stop_y, img, prj); else drill_report(img->aperture, net->aperture); } x = net->stop_x; y = net->stop_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Location: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); net_layer_file_report (net, img, prj); break; } } static void aperture_report(gerbv_aperture_t *apertures[], int aperture_num, double x, double y, gerbv_image_t *img, gerbv_project_t *prj) { gerbv_aperture_type_t type = apertures[aperture_num]->type; double *params = apertures[aperture_num]->parameter; gerbv_simplified_amacro_t *sim = apertures[aperture_num]->simplified; double *simpars = sim->parameter; g_message (_(" Aperture used: D%d"), aperture_num); g_message (_(" Aperture type: %s"), (type == GERBV_APTYPE_MACRO)? _(gerbv_aperture_type_name(sim->type)): _(gerbv_aperture_type_name(type))); switch (type) { case GERBV_APTYPE_CIRCLE: g_message (_(" Diameter: %g %s"), screen_units(params[0]), screen_units_str()); break; case GERBV_APTYPE_RECTANGLE: case GERBV_APTYPE_OVAL: g_message (_(" Dimensions: %gx%g %s"), screen_units(params[0]), screen_units(params[1]), screen_units_str()); break; case GERBV_APTYPE_MACRO: { switch (sim->type) { case GERBV_APTYPE_MACRO_CIRCLE: g_message (_(" Diameter: %g %s"), screen_units(simpars[CIRCLE_DIAMETER]), screen_units_str()); x += simpars[CIRCLE_CENTER_X]; y += simpars[CIRCLE_CENTER_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); break; case GERBV_APTYPE_MACRO_OUTLINE: g_message (_(" Number of points: %g"), simpars[OUTLINE_NUMBER_OF_POINTS]); x += simpars[OUTLINE_FIRST_X]; y += simpars[OUTLINE_FIRST_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Start: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[OUTLINE_ROTATION_IDX(simpars)]); break; case GERBV_APTYPE_MACRO_POLYGON: g_message (_(" Number of points: %g"), simpars[POLYGON_NUMBER_OF_POINTS]); g_message (_(" Diameter: %g %s"), screen_units(simpars[POLYGON_DIAMETER]), screen_units_str()); x += simpars[POLYGON_CENTER_X]; y += simpars[POLYGON_CENTER_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[POLYGON_ROTATION]); break; case GERBV_APTYPE_MACRO_MOIRE: g_message (_(" Outside diameter: %g %s"), screen_units(simpars[MOIRE_OUTSIDE_DIAMETER]), screen_units_str()); g_message (_(" Ring thickness: %g %s"), screen_units(simpars[MOIRE_CIRCLE_THICKNESS]), screen_units_str()); g_message (_(" Gap width: %g %s"), screen_units(simpars[MOIRE_GAP_WIDTH]), screen_units_str()); g_message (_(" Number of rings: %g"), simpars[MOIRE_NUMBER_OF_CIRCLES]); g_message (_(" Crosshair thickness: %g %s"), screen_units( simpars[MOIRE_CROSSHAIR_THICKNESS]), screen_units_str()); g_message (_(" Crosshair length: %g %s"), screen_units(simpars[MOIRE_CROSSHAIR_LENGTH]), screen_units_str()); x += simpars[MOIRE_CENTER_X]; y += simpars[MOIRE_CENTER_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[MOIRE_ROTATION]); break; case GERBV_APTYPE_MACRO_THERMAL: g_message (_(" Outside diameter: %g %s"), screen_units(simpars[THERMAL_OUTSIDE_DIAMETER]), screen_units_str()); g_message (_(" Inside diameter: %g %s"), screen_units(simpars[THERMAL_INSIDE_DIAMETER]), screen_units_str()); g_message (_(" Crosshair thickness: %g %s"), screen_units( simpars[THERMAL_CROSSHAIR_THICKNESS]), screen_units_str()); x += simpars[THERMAL_CENTER_X]; y += simpars[THERMAL_CENTER_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[THERMAL_ROTATION]); break; case GERBV_APTYPE_MACRO_LINE20: g_message (_(" Width: %g %s"), screen_units(simpars[LINE20_WIDTH]), screen_units_str()); x += simpars[LINE20_START_X]; y += simpars[LINE20_START_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Start: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x += simpars[LINE20_END_X]; y += simpars[LINE20_END_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Stop: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[LINE20_ROTATION]); break; case GERBV_APTYPE_MACRO_LINE21: g_message (_(" Width: %g %s"), screen_units(simpars[LINE21_WIDTH]), screen_units_str()); g_message (_(" Height: %g %s"), screen_units(simpars[LINE21_HEIGHT]), screen_units_str()); x += simpars[LINE21_CENTER_X]; y += simpars[LINE21_CENTER_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[LINE21_ROTATION]); break; case GERBV_APTYPE_MACRO_LINE22: g_message (_(" Width: %g %s"), screen_units(simpars[LINE22_WIDTH]), screen_units_str()); g_message (_(" Height: %g %s"), screen_units(simpars[LINE22_HEIGHT]), screen_units_str()); x += simpars[LINE22_LOWER_LEFT_X]; y += simpars[LINE22_LOWER_LEFT_Y]; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Lower left: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); g_message (_(" Rotation: %g deg"), simpars[LINE22_ROTATION]); break; default: break; } break; } default: break; } } static void drill_report(gerbv_aperture_t *apertures[], int aperture_num) { gerbv_aperture_type_t type = apertures[aperture_num]->type; double *params = apertures[aperture_num]->parameter; g_message (_(" Tool used: T%d"), aperture_num); if (type == GERBV_APTYPE_CIRCLE) g_message (_(" Diameter: %g %s"), screen_units(params[0]), screen_units_str()); } static void parea_report (gerbv_net_t *net, gerbv_image_t *img, gerbv_project_t *prj) { gerbv_net_t *n; unsigned int c = 0; gerbv_interpolation_t inter_prev; double x, y; if (net->interpolation != GERBV_INTERPOLATION_PAREA_START) return; /* Count vertices */ for (gerbv_net_t *n = net->next; n != NULL; n = n->next) { if (n->interpolation == GERBV_INTERPOLATION_PAREA_END) break; c++; } g_message (_(" Number of vertices: %u"), c - 1); for (n = net->next, inter_prev = net->interpolation; n != NULL && n->interpolation != GERBV_INTERPOLATION_PAREA_END; n = n->next) { switch (n->interpolation) { case GERBV_INTERPOLATION_LINEARx1: if (inter_prev != n->interpolation) { x = n->start_x; y = n->start_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Line from: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); } x = n->stop_x; y = n->stop_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Line to: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); break; case GERBV_INTERPOLATION_CW_CIRCULAR: case GERBV_INTERPOLATION_CCW_CIRCULAR: x = n->start_x; y = n->start_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Arc from: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x = n->stop_x; y = n->stop_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Arc to: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x = n->cirseg->cp_x; y = n->cirseg->cp_y; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Center: (%g, %g) %s"), screen_units(x), screen_units(y), screen_units_str()); x = n->cirseg->width; y = n->cirseg->height; gerbv_transform_coord_for_image(&x, &y, img, prj); g_message (_(" Radius: %g %s"), screen_units(x)/2, screen_units_str()); g_message (_(" Angle: %g deg"), fabs(n->cirseg->angle1 - n->cirseg->angle2)); g_message (_(" Angles: (%g, %g) deg"), n->cirseg->angle1, n->cirseg->angle2); g_message (_(" Direction: %s"), (n->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR)? _("CW"): _("CCW")); break; default: g_message(" Skipping interpolation: %s", _(gerbv_interpolation_name(n->interpolation))); } inter_prev = n->interpolation; } } static void net_layer_file_report(gerbv_net_t *net, gerbv_image_t *img, gerbv_project_t *prj) { /* Don't report "no net" to keep log short */ if (net->label != NULL) g_message (_(" Net label: %s"), net->label->str); /* Don't report "no layer name" to keep log short */ if (net->layer->name != NULL) g_message (_(" Layer name: %s"), net->layer->name); /* Search file name in project files array */ for (int i = 0; i <= prj->last_loaded; i++) { if (img == prj->file[i]->image) g_message (_(" In file: %s"), prj->file[i]->name); } } /* Restore report window size and postion */ static void analyze_window_size_restore(GtkWidget *win) { GVariant *var; const gint32 *xy; gsize num; if (!screen.settings) return; var = g_settings_get_value (screen.settings, "analyze-window-size"); xy = g_variant_get_fixed_array (var, &num, sizeof (*xy)); if (num == 2) gtk_window_set_default_size (GTK_WINDOW (win), xy[0], xy[1]); g_variant_unref (var); var = g_settings_get_value (screen.settings, "analyze-window-position"); xy = g_variant_get_fixed_array (var, &num, sizeof (*xy)); if (num == 2) gtk_window_move (GTK_WINDOW (win), xy[0], xy[1]); g_variant_unref (var); } /* Store report window size and postion */ static void analyze_window_size_store(GtkWidget *win, gpointer user_data) { gint32 xy[2]; GVariant *var; gboolean is_max; if (!screen.settings) return; is_max = FALSE != (GDK_WINDOW_STATE_MAXIMIZED & gdk_window_get_state (gtk_widget_get_window (win))); if (is_max) return; gtk_window_get_size (GTK_WINDOW (win), (gint *)xy, (gint *)(xy+1)); var = g_variant_new_fixed_array (G_VARIANT_TYPE_INT32, xy, 2, sizeof (xy[0])); g_settings_set_value (screen.settings, "analyze-window-size", var); gtk_window_get_position (GTK_WINDOW (win), (gint *)xy, (gint *)(xy+1)); var = g_variant_new_fixed_array (G_VARIANT_TYPE_INT32, xy, 2, sizeof (xy[0])); g_settings_set_value (screen.settings, "analyze-window-position", var); } gerbv-2.7.0/src/tooltable.c0000644000175000017500000001017613421555714015441 0ustar carstencarsten/* * tooltable.c * Copyright (C) 2004 dmitri (at) users.sourceforge.net * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file tooltable.c \brief Tool file parsing functions \ingroup libgerbv */ #include #include #include #include #include "common.h" #include "gerbv.h" #define MIN_TOOL_NUMBER 1 /* T01 */ #define MAX_TOOL_NUMBER 99 /* T99 */ static int have_tools_file = 0; static double tools[1+MAX_TOOL_NUMBER]; static void ProcessToolLine(const char *cp, const char *file_name, long int file_line) { const char *cp0 = cp; int toolNumber; double toolDia; if (cp == NULL) return; /* Skip leading spaces if there are some */ while (isspace((int) *cp)) { if (*(++cp) == '\0') return; } if (*cp != 'T') { GERB_COMPILE_WARNING(_("Ignored strange tool \"%s\" " "at line %ld in file \"%s\""), cp0, file_line, file_name); return; } if ((!isdigit((int) cp[1])) || (!isdigit((int) cp[2]))) { GERB_COMPILE_WARNING(_("No tool number in \"%s\" " "at line %ld in file \"%s\""), cp0, file_line, file_name); return; } do { char tnb[3]; tnb[0] = cp[1]; tnb[1] = cp[2]; tnb[2] = '\0'; toolNumber = atoi(tnb); if ((toolNumber < MIN_TOOL_NUMBER) || (toolNumber > MAX_TOOL_NUMBER)) { GERB_COMPILE_WARNING(_("Can't parse tool number in \"%s\" " "at line %ld in file \"%s\""), cp0, file_line, file_name); return; } } while (0); cp += 3; /* Skip Tnn */ /* Skip following spaces if there are some */ while (isspace((int) *cp)) { if (*(++cp) == '\0') return; } /* The rest of the line is supposed to be the tool diameter in inches. */ toolDia = atof(cp); if (toolDia <= 0) { GERB_COMPILE_ERROR(_("Tool T%02d diameter is impossible " "at line %ld in file \"%s\""), toolNumber, file_line, file_name); return; } if (toolDia < 0.001) { GERB_COMPILE_WARNING(_("Tool T%02d diameter is very small " "at line %ld in file \"%s\""), toolNumber, file_line, file_name); } if (tools[toolNumber] != 0) { GERB_COMPILE_ERROR(_("Tool T%02d is already defined, occurred " "at line %ld in file \"%s\""), toolNumber, file_line, file_name); GERB_FATAL_ERROR(_("Exiting because this is a HOLD error " "at any board house.")); exit(1); return; } tools[toolNumber] = toolDia; } /* ProcessToolLine */ int gerbv_process_tools_file(const char *tf) { FILE *f; char buf[80]; long int file_line = 0; have_tools_file = 0; memset(tools, 0, sizeof(tools)); if (tf == NULL) return 0; f = fopen(tf, "r"); if (f == NULL) { GERB_COMPILE_ERROR(_("Failed to open \"%s\" for reading"), tf); return 0; } while (!feof(f)) { memset(buf, 0, sizeof(buf)); if (NULL == fgets(buf, sizeof(buf)-1, f)) break; file_line++; ProcessToolLine(buf, tf, file_line); } fclose(f); have_tools_file = 1; return 1; } /* gerbv_process_tools_file */ double gerbv_get_tool_diameter(int toolNumber) { if (!have_tools_file) return 0; if ((toolNumber < MIN_TOOL_NUMBER) || (toolNumber > MAX_TOOL_NUMBER)) return 0; return tools[toolNumber]; } /* gerbv_get_tool_diameter */ gerbv-2.7.0/src/common.h0000644000175000017500000000253513421555714014751 0ustar carstencarsten/* * $Id$ * * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2007 Dan McMahill * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file common.h \brief Contains basic defines \ingroup libgerbv */ #ifndef __COMMON_H__ #define __COMMON_H__ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifndef __GNUC__ #define __FUNCTION1(a,b) a ":" #b #define __FUNCTION2(a,b) __FUNCTION1(a,b) #define __FUNCTION__ __FUNCTION2(__FILE__,__LINE__) #endif #include "locale.h" #include "gettext.h" #define _(str) gettext(str) #ifdef ENABLE_NLS # ifdef gettext_noop # define N_(str) gettext_noop(str) # else # define N_(str) (str) # endif #else # define N_(str) (str) #endif #endif /* __COMMON_H__ */ gerbv-2.7.0/src/gerb_file.h0000644000175000017500000000405513421555714015376 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_file.h \brief Header info for the file parsing support functions \ingroup libgerbv */ #ifndef GERB_FILE_H #define GERB_FILE_H #include typedef struct file { FILE *fd; /* File descriptor */ int fileno; /* The integer version of fd */ char *data; /* Pointer to data mmaped in. May not be changed, use ptr */ int datalen;/* Length of mmaped data ie file length */ int ptr; /* Index in data where we are reading */ char *filename; /* File name */ } gerb_file_t; gerb_file_t *gerb_fopen(char const* filename); int gerb_fgetc(gerb_file_t *fd); int gerb_fgetint(gerb_file_t *fd, int *len); /* If len != NULL, returns number of chars parsed in len */ double gerb_fgetdouble(gerb_file_t *fd); char *gerb_fgetstring(gerb_file_t *fd, char term); void gerb_ungetc(gerb_file_t *fd); void gerb_fclose(gerb_file_t *fd); /** Search for files in directories pointed out by paths, a NULL terminated * list of directories to search. If a string in paths starts with a $, then * characters to / (or string end if no /) is interpreted as a environment * variable. */ char *gerb_find_file(char const * filename, char **paths); #endif /* GERB_FILE_H */ gerbv-2.7.0/src/draw.c0000644000175000017500000013042013421555714014404 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file draw.c \brief Cairo rendering functions and the related selection calculating functions \ingroup libgerbv */ #include #include #include /* ceil(), atan2() */ #ifdef HAVE_STRING_H # include #endif #include "gerbv.h" #include "draw.h" #include "common.h" #include "selection.h" #define dprintf if(DEBUG) printf static gboolean draw_do_vector_export_fix(cairo_t *cairoTarget, double *bg_red, double *bg_green, double *bg_blue); /** Draw Cairo line from current coordinates. @param x End of line x coordinate. @param y End of line y coordinate. @param adjustByHalf Increase x and y by 0.5. @param pixelOutput Round x and y coordinates to pixels. */ void draw_cairo_line_to (cairo_t *cairoTarget, gdouble x, gdouble y, gboolean adjustByHalf, gboolean pixelOutput) { if (pixelOutput) { cairo_user_to_device (cairoTarget, &x, &y); x = round(x); y = round(y); if (adjustByHalf) { x += 0.5; y += 0.5; } cairo_device_to_user (cairoTarget, &x, &y); } cairo_line_to (cairoTarget, x, y); } /** Move Cairo coordinates. @param x Move to x coordinate. @param y Move to y coordinate. @param oddWidth Increase x and y by 0.5. @param pixelOutput Round x and y coordinates to pixels. */ void draw_cairo_move_to (cairo_t *cairoTarget, gdouble x, gdouble y, gboolean oddWidth, gboolean pixelOutput) { if (pixelOutput) { cairo_user_to_device (cairoTarget, &x, &y); x = round(x); y = round(y); if (oddWidth) { x += 0.5; y += 0.5; } cairo_device_to_user (cairoTarget, &x, &y); } cairo_move_to (cairoTarget, x, y); } /** Cairo translate user-space origin. @param x The x coordinate. @param y The y coordinate. @param pixelOutput Round x and y coordinates to pixels. */ void draw_cairo_translate_adjust (cairo_t *cairoTarget, gdouble x, gdouble y, gboolean pixelOutput) { if (pixelOutput) { cairo_user_to_device (cairoTarget, &x, &y); x = round(x); y = round(y); cairo_device_to_user (cairoTarget, &x, &y); } cairo_translate (cairoTarget, x, y); } /** Check if net is in selection buffer and possibly deselect it. @return TRUE if net is selected, FALSE if not selected. @param net Checked net. @param selectionInfo Selection buffer. @param remove TRUE for deselect net. */ static gboolean draw_net_is_in_selection_buffer_remove (gerbv_net_t *net, gerbv_selection_info_t *selectionInfo, gboolean remove) { gerbv_selection_item_t sItem; gint i; for (i = 0; i < selection_length (selectionInfo); i++) { sItem = selection_get_item_by_index (selectionInfo, i); if (sItem.net == net) { if (remove) selection_clear_item_by_index (selectionInfo, i); return TRUE; } } return FALSE; } static void draw_check_if_object_is_in_selected_area (cairo_t *cairoTarget, gboolean isStroke, gerbv_selection_info_t *selectionInfo, gerbv_image_t *image, struct gerbv_net *net, enum draw_mode drawMode) { gerbv_selection_item_t sItem = {image, net}; gdouble corner1X, corner1Y, corner2X, corner2Y; gdouble x1, x2, y1, y2; gdouble minX, minY, maxX, maxY; corner1X = selectionInfo->lowerLeftX; corner1Y = selectionInfo->lowerLeftY; corner2X = selectionInfo->upperRightX; corner2Y = selectionInfo->upperRightY; /* calculate the coordinate of the user's click in the current transformation matrix */ cairo_device_to_user (cairoTarget, &corner1X, &corner1Y); cairo_device_to_user (cairoTarget, &corner2X, &corner2Y); switch (selectionInfo->type) { case GERBV_SELECTION_POINT_CLICK: /* use the cairo in_fill routine to see if the point is within the drawn area */ if ((isStroke && cairo_in_stroke (cairoTarget, corner1X, corner1Y)) || (!isStroke && cairo_in_fill (cairoTarget, corner1X, corner1Y))) { if (!draw_net_is_in_selection_buffer_remove (net, selectionInfo, (drawMode == FIND_SELECTIONS_TOGGLE))) { selection_add_item (selectionInfo, &sItem); } } break; case GERBV_SELECTION_DRAG_BOX: /* we can't assume the "lowerleft" corner is actually in the lower left, since the cairo transformation matrix may be mirrored,etc */ minX = MIN(corner1X,corner2X); maxX = MAX(corner1X,corner2X); minY = MIN(corner1Y,corner2Y); maxY = MAX(corner1Y,corner2Y); if (isStroke) cairo_stroke_extents (cairoTarget, &x1, &y1, &x2, &y2); else cairo_fill_extents (cairoTarget, &x1, &y1, &x2, &y2); if ((minX < x1) && (minY < y1) && (maxX > x2) && (maxY > y2)) { if (!draw_net_is_in_selection_buffer_remove (net, selectionInfo, (drawMode == FIND_SELECTIONS_TOGGLE))) { selection_add_item (selectionInfo, &sItem); } } break; default: break; } /* clear the path, since we didn't actually draw it and cairo doesn't reset it after the previous calls */ cairo_new_path (cairoTarget); } static void draw_fill (cairo_t *cairoTarget, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_image_t *image, struct gerbv_net *net) { if ((drawMode == DRAW_IMAGE) || (drawMode == DRAW_SELECTIONS)) cairo_fill (cairoTarget); else draw_check_if_object_is_in_selected_area (cairoTarget, FALSE, selectionInfo, image, net, drawMode); } static void draw_stroke (cairo_t *cairoTarget, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_image_t *image, struct gerbv_net *net) { if ((drawMode == DRAW_IMAGE) || (drawMode == DRAW_SELECTIONS)) cairo_stroke (cairoTarget); else draw_check_if_object_is_in_selected_area (cairoTarget, TRUE, selectionInfo, image, net, drawMode); } /** Draw the circle _centered_ at current Cairo coordinates. @param diameter Circle diameter. */ static void gerbv_draw_circle(cairo_t *cairoTarget, gdouble diameter) { cairo_arc (cairoTarget, 0.0, 0.0, diameter/2.0, 0, 2.0*M_PI); return; } /** Draw the rectangle _centered_ at current Cairo coordinates. @param width Width of the rectangle. @param height Height of the rectangle. @param pixelOutput Round width and height to pixels. */ static void gerbv_draw_rectangle(cairo_t *cairoTarget, gdouble width, gdouble height, gboolean pixelOutput) { if (pixelOutput) { cairo_user_to_device_distance (cairoTarget, &width, &height); width -= (int)round(width) % 2; height -= (int)round(height) % 2; cairo_device_to_user_distance (cairoTarget, &width, &height); } cairo_rectangle (cairoTarget, -width/2.0, -height/2.0, width, height); return; } /** Draw the oblong _centered_ at current Cairo coordinates. @param width Width of the oblong. @param height Height of the oblong. */ static void gerbv_draw_oblong(cairo_t *cairoTarget, gdouble width, gdouble height) { /* --- This stuff produces a line + rounded ends --- */ gdouble circleDiameter, strokeDistance; cairo_new_path (cairoTarget); if (width < height) { circleDiameter = width; strokeDistance = (height - width)/2.0; cairo_arc (cairoTarget, 0.0, strokeDistance, circleDiameter/2.0, 0, -M_PI); cairo_line_to (cairoTarget, -circleDiameter/2.0, -strokeDistance); cairo_arc (cairoTarget, 0.0, -strokeDistance, circleDiameter/2.0, -M_PI, 0); cairo_line_to (cairoTarget, circleDiameter/2.0, strokeDistance); } else { circleDiameter = height; strokeDistance = (width - height)/2.0; cairo_arc (cairoTarget, -strokeDistance, 0.0, circleDiameter/2.0, M_PI_2, -M_PI_2); cairo_line_to (cairoTarget, strokeDistance, -circleDiameter/2.0); cairo_arc (cairoTarget, strokeDistance, 0.0, circleDiameter/2.0, -M_PI_2, M_PI_2); cairo_line_to (cairoTarget, -strokeDistance, circleDiameter/2.0); } #if 0 /* --- This stuff produces an oval pad --- */ /* cairo doesn't have a function to draw ovals, so we must * draw an arc and stretch it by scaling different x and y values */ cairo_save (cairoTarget); cairo_scale (cairoTarget, width, height); gerbv_draw_circle (cairoTarget, 1); cairo_restore (cairoTarget); #endif return; } static void gerbv_draw_polygon(cairo_t *cairoTarget, gdouble outsideDiameter, gdouble numberOfSides, gdouble degreesOfRotation) { int i, numberOfSidesInteger = (int) numberOfSides; cairo_rotate(cairoTarget, DEG2RAD(degreesOfRotation)); cairo_move_to(cairoTarget, outsideDiameter / 2.0, 0); /* skip first point, since we've moved there already */ /* include last point, since we may be drawing an aperture hole next and cairo may not correctly close the path itself */ for (i = 1; i <= (int)numberOfSidesInteger; i++){ gdouble angle = ((double)i)*M_PI*2.0 / numberOfSidesInteger; cairo_line_to (cairoTarget, cos(angle) * outsideDiameter / 2.0, sin(angle) * outsideDiameter / 2.0); } return; } static void gerbv_draw_aperture_hole(cairo_t *cairoTarget, gdouble dimensionX, gdouble dimensionY, gboolean pixelOutput) { if (dimensionX) { if (dimensionY) gerbv_draw_rectangle (cairoTarget, dimensionX, dimensionY, pixelOutput); else gerbv_draw_circle (cairoTarget, dimensionX); } return; } static void draw_update_macro_exposure (cairo_t *cairoTarget, cairo_operator_t clearOperator, cairo_operator_t darkOperator, gdouble exposureSetting){ if (exposureSetting == 0.0) { cairo_set_operator (cairoTarget, clearOperator); } else if (exposureSetting == 1.0) { cairo_set_operator (cairoTarget, darkOperator); } else if (exposureSetting == 2.0) { /* reverse current exposure setting */ cairo_operator_t currentOperator = cairo_get_operator (cairoTarget); if (currentOperator == clearOperator) { cairo_set_operator (cairoTarget, darkOperator); } else { cairo_set_operator (cairoTarget, clearOperator); } } } static int gerbv_draw_amacro(cairo_t *cairoTarget, cairo_operator_t clearOperator, cairo_operator_t darkOperator, gerbv_simplified_amacro_t *s, gint usesClearPrimitive, gdouble pixelWidth, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_image_t *image, struct gerbv_net *net) { gerbv_simplified_amacro_t *ls = s; gboolean doVectorExportFix; double bg_r, bg_g, bg_b; /* Background color */ int ret = 1; dprintf("Drawing simplified aperture macros:\n"); doVectorExportFix = draw_do_vector_export_fix (cairoTarget, &bg_r, &bg_g, &bg_b); switch (cairo_surface_get_type (cairo_get_target (cairoTarget))) { case CAIRO_SURFACE_TYPE_PDF: case CAIRO_SURFACE_TYPE_PS: case CAIRO_SURFACE_TYPE_SVG: /* Don't limit "pixel width" in vector export */ pixelWidth = DBL_MIN; break; default: break; } if (usesClearPrimitive) cairo_push_group (cairoTarget); while (ls != NULL) { /* * This handles the exposure thing in the aperture macro * The exposure is always the first element on stack independent * of aperture macro. */ cairo_save (cairoTarget); cairo_new_path(cairoTarget); dprintf("\t%s(): drawing %s\n", __FUNCTION__, gerbv_aperture_type_name(ls->type)); switch (ls->type) { case GERBV_APTYPE_MACRO_CIRCLE: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[CIRCLE_EXPOSURE]); cairo_translate (cairoTarget, ls->parameter[CIRCLE_CENTER_X], ls->parameter[CIRCLE_CENTER_Y]); gerbv_draw_circle (cairoTarget, ls->parameter[CIRCLE_DIAMETER]); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; case GERBV_APTYPE_MACRO_OUTLINE: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[OUTLINE_EXPOSURE]); cairo_rotate (cairoTarget, DEG2RAD(ls->parameter[ OUTLINE_ROTATION_IDX(ls->parameter)])); cairo_move_to (cairoTarget, ls->parameter[OUTLINE_FIRST_X], ls->parameter[OUTLINE_FIRST_Y]); for (int point = 1; point < 1 + (int)ls->parameter[ OUTLINE_NUMBER_OF_POINTS]; point++) { cairo_line_to (cairoTarget, ls->parameter[OUTLINE_X_IDX_OF_POINT( point)], ls->parameter[OUTLINE_Y_IDX_OF_POINT( point)]); } if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } /* Although the gerber specs allow for an open outline, * I interpret it to mean the outline should be closed * by the rendering softare automatically, since there * is no dimension for line thickness. */ draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; case GERBV_APTYPE_MACRO_POLYGON: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[POLYGON_EXPOSURE]); cairo_translate (cairoTarget, ls->parameter[POLYGON_CENTER_X], ls->parameter[POLYGON_CENTER_Y]); gerbv_draw_polygon(cairoTarget, ls->parameter[POLYGON_DIAMETER], ls->parameter[POLYGON_NUMBER_OF_POINTS], ls->parameter[POLYGON_ROTATION]); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; case GERBV_APTYPE_MACRO_MOIRE: { gdouble diameter, diameterDifference, crosshairRadius; cairo_translate (cairoTarget, ls->parameter[MOIRE_CENTER_X], ls->parameter[MOIRE_CENTER_Y]); cairo_rotate (cairoTarget, DEG2RAD(ls->parameter[MOIRE_ROTATION])); diameter = ls->parameter[MOIRE_OUTSIDE_DIAMETER] - ls->parameter[MOIRE_CIRCLE_THICKNESS]; diameterDifference = 2*(ls->parameter[MOIRE_GAP_WIDTH] + ls->parameter[MOIRE_CIRCLE_THICKNESS]); cairo_set_line_width (cairoTarget, ls->parameter[MOIRE_CIRCLE_THICKNESS]); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); } for (int circle = 0; circle < (int)ls->parameter[ MOIRE_NUMBER_OF_CIRCLES]; circle++) { gdouble dia = diameter - diameterDifference * circle; if (dia <= 0) { GERB_COMPILE_WARNING (_("Ignoring %s " "with non positive diameter"), gerbv_aperture_type_name ( ls->type)); continue; } gerbv_draw_circle (cairoTarget, dia); draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); } cairo_set_line_width (cairoTarget, ls->parameter[MOIRE_CROSSHAIR_THICKNESS]); crosshairRadius = ls->parameter[MOIRE_CROSSHAIR_LENGTH] / 2.0; cairo_move_to (cairoTarget, -crosshairRadius, 0); cairo_line_to (cairoTarget, crosshairRadius, 0); cairo_move_to (cairoTarget, 0, -crosshairRadius); cairo_line_to (cairoTarget, 0, crosshairRadius); draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_restore (cairoTarget); } break; } case GERBV_APTYPE_MACRO_THERMAL: { gdouble startAngle1, startAngle2, endAngle1, endAngle2; cairo_translate (cairoTarget, ls->parameter[THERMAL_CENTER_X], ls->parameter[THERMAL_CENTER_Y]); cairo_rotate (cairoTarget, DEG2RAD(ls->parameter[THERMAL_ROTATION])); startAngle1 = asin ( ls->parameter[THERMAL_CROSSHAIR_THICKNESS]/ ls->parameter[THERMAL_INSIDE_DIAMETER]); endAngle1 = M_PI_2 - startAngle1; endAngle2 = asin ( ls->parameter[THERMAL_CROSSHAIR_THICKNESS]/ ls->parameter[THERMAL_OUTSIDE_DIAMETER]); startAngle2 = M_PI_2 - endAngle2; if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); /* */ cairo_restore (cairoTarget); break; } for (gint i = 0; i < 4; i++) { cairo_arc (cairoTarget, 0, 0, ls->parameter[ THERMAL_INSIDE_DIAMETER]/2.0, startAngle1, endAngle1); cairo_arc_negative (cairoTarget, 0, 0, ls->parameter[ THERMAL_OUTSIDE_DIAMETER]/2.0, startAngle2, endAngle2); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_rotate (cairoTarget, M_PI_2); } break; } case GERBV_APTYPE_MACRO_LINE20: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[LINE20_EXPOSURE]); cairo_set_line_width (cairoTarget, MAX(ls->parameter[LINE20_LINE_WIDTH], pixelWidth)); cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_BUTT); cairo_rotate (cairoTarget, DEG2RAD( ls->parameter[LINE20_ROTATION])); cairo_move_to (cairoTarget, ls->parameter[LINE20_START_X], ls->parameter[LINE20_START_Y]); cairo_line_to (cairoTarget, ls->parameter[LINE20_END_X], ls->parameter[LINE20_END_Y]); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); break; case GERBV_APTYPE_MACRO_LINE21: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[LINE21_EXPOSURE]); cairo_rotate (cairoTarget, DEG2RAD( ls->parameter[LINE21_ROTATION])); cairo_translate (cairoTarget, ls->parameter[LINE21_CENTER_X], ls->parameter[LINE21_CENTER_Y]); cairo_rectangle (cairoTarget, -MAX(ls->parameter[LINE21_WIDTH]/2.0, pixelWidth), -MAX(ls->parameter[LINE21_HEIGHT]/2.0, pixelWidth), MAX(ls->parameter[LINE21_WIDTH], pixelWidth), MAX(ls->parameter[LINE21_HEIGHT], pixelWidth)); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; case GERBV_APTYPE_MACRO_LINE22: draw_update_macro_exposure (cairoTarget, clearOperator, darkOperator, ls->parameter[LINE22_EXPOSURE]); cairo_rotate (cairoTarget, DEG2RAD( ls->parameter[LINE22_ROTATION])); cairo_translate (cairoTarget, ls->parameter[LINE22_LOWER_LEFT_X], ls->parameter[LINE22_LOWER_LEFT_Y]); cairo_rectangle (cairoTarget, 0, 0, MAX(ls->parameter[LINE22_WIDTH], pixelWidth), MAX(ls->parameter[LINE22_HEIGHT], pixelWidth)); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba (cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; } draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; default: GERB_COMPILE_WARNING(_("Unknown macro type: %s"), gerbv_aperture_type_name(ls->type)); ret = 0; } cairo_restore (cairoTarget); ls = ls->next; } if (usesClearPrimitive) { cairo_pop_group_to_source (cairoTarget); cairo_paint (cairoTarget); } return ret; } void draw_apply_netstate_transformation (cairo_t *cairoTarget, gerbv_netstate_t *state) { /* apply scale factor */ cairo_scale (cairoTarget, state->scaleA, state->scaleB); /* apply offset */ cairo_translate (cairoTarget, state->offsetA, state->offsetB); /* apply mirror */ switch (state->mirrorState) { case GERBV_MIRROR_STATE_FLIPA: cairo_scale (cairoTarget, -1, 1); break; case GERBV_MIRROR_STATE_FLIPB: cairo_scale (cairoTarget, 1, -1); break; case GERBV_MIRROR_STATE_FLIPAB: cairo_scale (cairoTarget, -1, -1); break; default: break; } /* finally, apply axis select */ if (state->axisSelect == GERBV_AXIS_SELECT_SWAPAB) { /* we do this by rotating 270 (counterclockwise, then mirroring the Y axis */ cairo_rotate (cairoTarget, M_PI + M_PI_2); cairo_scale (cairoTarget, 1, -1); } } void draw_render_polygon_object (gerbv_net_t *oldNet, cairo_t *cairoTarget, gdouble sr_x, gdouble sr_y, gerbv_image_t *image, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gboolean pixelOutput) { gerbv_net_t *currentNet, *polygonStartNet; int haveDrawnFirstFillPoint = 0; gdouble x2,y2,cp_x=0,cp_y=0; haveDrawnFirstFillPoint = FALSE; /* save the first net in the polygon as the "ID" net pointer in case we are saving this net to the selection array */ polygonStartNet = oldNet; cairo_new_path(cairoTarget); for (currentNet = oldNet->next; currentNet!=NULL; currentNet = currentNet->next) { x2 = currentNet->stop_x + sr_x; y2 = currentNet->stop_y + sr_y; /* translate circular x,y data as well */ if (currentNet->cirseg) { cp_x = currentNet->cirseg->cp_x + sr_x; cp_y = currentNet->cirseg->cp_y + sr_y; } if (!haveDrawnFirstFillPoint) { draw_cairo_move_to (cairoTarget, x2, y2, FALSE, pixelOutput); haveDrawnFirstFillPoint=TRUE; continue; } switch (currentNet->interpolation) { case GERBV_INTERPOLATION_LINEARx1 : case GERBV_INTERPOLATION_LINEARx10 : case GERBV_INTERPOLATION_LINEARx01 : case GERBV_INTERPOLATION_LINEARx001 : draw_cairo_line_to (cairoTarget, x2, y2, FALSE, pixelOutput); break; case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : if (currentNet->cirseg->angle2 > currentNet->cirseg->angle1) { cairo_arc (cairoTarget, cp_x, cp_y, currentNet->cirseg->width/2.0, DEG2RAD(currentNet->cirseg->angle1), DEG2RAD(currentNet->cirseg->angle2)); } else { cairo_arc_negative (cairoTarget, cp_x, cp_y, currentNet->cirseg->width/2.0, DEG2RAD(currentNet->cirseg->angle1), DEG2RAD(currentNet->cirseg->angle2)); } break; case GERBV_INTERPOLATION_PAREA_END : cairo_close_path(cairoTarget); /* turn off anti-aliasing for polygons, since it shows seams with adjacent polygons (usually on PCB ground planes) */ cairo_antialias_t oldAlias = cairo_get_antialias (cairoTarget); cairo_set_antialias (cairoTarget, CAIRO_ANTIALIAS_NONE); draw_fill (cairoTarget, drawMode, selectionInfo, image, polygonStartNet); cairo_set_antialias (cairoTarget, oldAlias); return; default : break; } } } /** Draw Cairo cross. @param xc Cross center x coordinate. @param yc Cross center y coordinate. @param r Cross half size. */ static void draw_cairo_cross (cairo_t *cairoTarget, gdouble xc, gdouble yc, gdouble r) { cairo_move_to (cairoTarget, xc, yc - r); cairo_rel_line_to (cairoTarget, 0, 2*r); cairo_move_to (cairoTarget, xc - r, yc); cairo_rel_line_to (cairoTarget, 2*r, 0); cairo_stroke (cairoTarget); } static int draw_calc_pnp_mark_coords(struct gerbv_net *start_net, double *label_x, double *label_y) { double x, y; struct gerbv_net *net = start_net; const char *label = NULL; if (net && net->label) label = net->label->str; if (label == NULL) return 0; x = HUGE_VAL; y = -HUGE_VAL; do { if (!net->label || 0 != g_strcmp0 (net->label->str, label)) break; /* Search top left corner */ if (net->boundingBox.top != HUGE_VAL) { /* Bounding box not calculated */ x = MIN(x, net->boundingBox.left); y = MAX(y, net->boundingBox.top); } else { x = MIN(x, net->stop_x); y = MAX(y, net->stop_y + 0.01/2); /* 0.01 default line width */ } } while (NULL != (net = gerbv_image_return_next_renderable_object(net))); *label_x = x; *label_y = y; return 1; } int draw_image_to_cairo_target (cairo_t *cairoTarget, gerbv_image_t *image, gdouble pixelWidth, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_render_info_t *renderInfo, gboolean allowOptimization, gerbv_user_transformation_t transform, gboolean pixelOutput) { const int hole_cross_inc_px = 8; struct gerbv_net *net, *polygonStartNet=NULL; double x1, y1, x2, y2, cp_x=0, cp_y=0; gdouble *p, p0, p1, dx, dy, lineWidth, r; gerbv_netstate_t *oldState; gerbv_layer_t *oldLayer; cairo_operator_t drawOperatorClear, drawOperatorDark; gboolean invertPolarity = FALSE, oddWidth = FALSE; gdouble minX=0, minY=0, maxX=0, maxY=0; gdouble criticalRadius; gdouble scaleX = transform.scaleX; gdouble scaleY = transform.scaleY; /* Keep PNP label not mirrored */ gdouble pnp_label_scale_x = 1, pnp_label_scale_y= -1; gboolean limitLineWidth = TRUE; gboolean displayPixel = TRUE; gboolean doVectorExportFix; double bg_r, bg_g, bg_b; /* Background color */ doVectorExportFix = draw_do_vector_export_fix (cairoTarget, &bg_r, &bg_g, &bg_b); /* If we are scaling the image at all, ignore the line width checks * since scaled up lines can still be visible */ if ((scaleX != 1)||(scaleY != 1)){ limitLineWidth = FALSE; } if (transform.mirrorAroundX) { scaleY *= -1; pnp_label_scale_y = 1; } if (transform.mirrorAroundY) { scaleX *= -1; pnp_label_scale_x= -1; } cairo_translate (cairoTarget, transform.translateX, transform.translateY); cairo_scale (cairoTarget, scaleX, scaleY); cairo_rotate (cairoTarget, transform.rotation); gboolean useOptimizations = allowOptimization; /* If the user is using any transformations for this layer, then don't * bother using rendering optimizations */ if (fabs(transform.translateX) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.translateY) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.scaleX - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.scaleY - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(transform.rotation) > GERBV_PRECISION_ANGLE_RAD || transform.mirrorAroundX || transform.mirrorAroundY) useOptimizations = FALSE; if (useOptimizations && pixelOutput) { minX = renderInfo->lowerLeftX; minY = renderInfo->lowerLeftY; maxX = renderInfo->lowerLeftX + (renderInfo->displayWidth / renderInfo->scaleFactorX); maxY = renderInfo->lowerLeftY + (renderInfo->displayHeight / renderInfo->scaleFactorY); } /* do initial justify */ cairo_translate (cairoTarget, image->info->imageJustifyOffsetActualA, image->info->imageJustifyOffsetActualB); /* set the fill rule so aperture holes are cleared correctly */ cairo_set_fill_rule (cairoTarget, CAIRO_FILL_RULE_EVEN_ODD); /* offset image */ cairo_translate (cairoTarget, image->info->offsetA, image->info->offsetB); /* do image rotation */ cairo_rotate (cairoTarget, image->info->imageRotation); /* load in polarity operators depending on the image polarity */ invertPolarity = transform.inverted; if (image->info->polarity == GERBV_POLARITY_NEGATIVE) invertPolarity = !invertPolarity; if (drawMode == DRAW_SELECTIONS) invertPolarity = FALSE; if (invertPolarity) { drawOperatorClear = CAIRO_OPERATOR_OVER; drawOperatorDark = CAIRO_OPERATOR_CLEAR; cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); cairo_paint (cairoTarget); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_CLEAR); } else { drawOperatorClear = CAIRO_OPERATOR_CLEAR; drawOperatorDark = CAIRO_OPERATOR_OVER; } /* next, push two cairo states to simulate the first layer and netstate translations (these will be popped when another layer or netstate is started */ cairo_save (cairoTarget); cairo_save (cairoTarget); /* store the current layer and netstate so we know when they change */ oldLayer = image->layers; oldState = image->states; const char *pnp_net_label_str_prev = NULL; for (net = image->netlist->next; net != NULL; net = gerbv_image_return_next_renderable_object(net)) { /* check if this is a new layer */ if (net->layer != oldLayer){ /* it's a new layer, so recalculate the new transformation matrix for it */ cairo_restore (cairoTarget); cairo_restore (cairoTarget); cairo_save (cairoTarget); /* do any rotations */ cairo_rotate (cairoTarget, net->layer->rotation); /* handle the layer polarity */ if ((net->layer->polarity == GERBV_POLARITY_CLEAR)^invertPolarity) { cairo_set_operator (cairoTarget, CAIRO_OPERATOR_CLEAR); drawOperatorClear = CAIRO_OPERATOR_OVER; drawOperatorDark = CAIRO_OPERATOR_CLEAR; } else { cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); drawOperatorClear = CAIRO_OPERATOR_CLEAR; drawOperatorDark = CAIRO_OPERATOR_OVER; } /* Draw any knockout areas */ gerbv_knockout_t *ko = &net->layer->knockout; if (ko->firstInstance == TRUE) { cairo_save (cairoTarget); if (ko->polarity == GERBV_POLARITY_CLEAR) { cairo_set_operator (cairoTarget, drawOperatorClear); } else { cairo_set_operator (cairoTarget, drawOperatorDark); } if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); cairo_set_source_rgba ( cairoTarget, bg_r, bg_g, bg_b, 1.0); } cairo_new_path (cairoTarget); cairo_rectangle (cairoTarget, ko->lowerLeftX - ko->border, ko->lowerLeftY - ko->border, ko->width + 2*ko->border, ko->height + 2*ko->border); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); } /* Finally, reapply old netstate transformation */ cairo_save (cairoTarget); draw_apply_netstate_transformation (cairoTarget, net->state); oldLayer = net->layer; } /* check if this is a new netstate */ if (net->state != oldState){ /* pop the transformation matrix back to the "pre-state" state and resave it */ cairo_restore (cairoTarget); cairo_save (cairoTarget); /* it's a new state, so recalculate the new transformation matrix for it */ draw_apply_netstate_transformation (cairoTarget, net->state); oldState = net->state; } /* if we are only drawing from the selection buffer, search if this net is in the buffer */ if (drawMode == DRAW_SELECTIONS) { /* this flag makes sure we don't draw any unintentional polygons... if we've successfully entered a polygon (the first net matches, and we don't want to check the nets inside the polygon) then polygonStartNet will be set */ if (!polygonStartNet) { if (!draw_net_is_in_selection_buffer_remove (net, selectionInfo, FALSE)) continue; } } /* Render any labels attached to this net */ /* NOTE: this is currently only used on PNP files, so we may make some assumptions here... */ if (drawMode != DRAW_SELECTIONS && net->label && (image->layertype == GERBV_LAYERTYPE_PICKANDPLACE_TOP || image->layertype == GERBV_LAYERTYPE_PICKANDPLACE_BOT) && g_strcmp0 (net->label->str, pnp_net_label_str_prev)) { double mark_x, mark_y; /* Add PNP text label only one time per * net and if it is not selected. */ pnp_net_label_str_prev = net->label->str; if (draw_calc_pnp_mark_coords(net, &mark_x, &mark_y)) { cairo_save (cairoTarget); cairo_set_font_size (cairoTarget, 0.05); cairo_move_to (cairoTarget, mark_x, mark_y); cairo_scale (cairoTarget, pnp_label_scale_x, pnp_label_scale_y); cairo_show_text (cairoTarget, net->label->str); cairo_restore (cairoTarget); } } /* step and repeat */ gerbv_step_and_repeat_t *sr = &net->layer->stepAndRepeat; int ix, iy; for (ix = 0; ix < sr->X; ix++) { for (iy = 0; iy < sr->Y; iy++) { double sr_x = ix * sr->dist_X; double sr_y = iy * sr->dist_Y; if (useOptimizations && pixelOutput && ((net->boundingBox.right+sr_x < minX) || (net->boundingBox.left+sr_x > maxX) || (net->boundingBox.top+sr_y < minY) || (net->boundingBox.bottom+sr_y > maxY))) { continue; } x1 = net->start_x + sr_x; y1 = net->start_y + sr_y; x2 = net->stop_x + sr_x; y2 = net->stop_y + sr_y; /* translate circular x,y data as well */ if (net->cirseg) { cp_x = net->cirseg->cp_x + sr_x; cp_y = net->cirseg->cp_y + sr_y; } /* Polygon area fill routines */ switch (net->interpolation) { case GERBV_INTERPOLATION_PAREA_START : if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); cairo_set_source_rgba ( cairoTarget, bg_r, bg_g, bg_b, 1.0); draw_render_polygon_object (net, cairoTarget, sr_x, sr_y, image, drawMode, selectionInfo, pixelOutput); cairo_restore (cairoTarget); } else { draw_render_polygon_object (net, cairoTarget, sr_x, sr_y, image, drawMode, selectionInfo, pixelOutput); } continue; case GERBV_INTERPOLATION_DELETED: continue; default : break; } /* * If aperture state is off we allow use of undefined apertures. * This happens when gerber files starts, but hasn't decided on * which aperture to use. */ if (image->aperture[net->aperture] == NULL) continue; switch (net->aperture_state) { case GERBV_APERTURE_STATE_ON : /* if the aperture width is truly 0, then render as a 1 pixel width line. 0 diameter apertures are used by some programs to draw labels, etc, and they are rendered by other programs as 1 pixel wide */ /* NOTE: also, make sure all lines are at least 1 pixel wide, so they always show up at low zoom levels */ if (limitLineWidth&&((image->aperture[net->aperture]->parameter[0] < pixelWidth)&& (pixelOutput))) criticalRadius = pixelWidth/2.0; else criticalRadius = image->aperture[net->aperture]->parameter[0]/2.0; lineWidth = criticalRadius*2.0; // convert to a pixel integer cairo_user_to_device_distance (cairoTarget, &lineWidth, &x1); if (pixelOutput) { lineWidth = round(lineWidth); if ((int)lineWidth % 2) { oddWidth = TRUE; } else { oddWidth = FALSE; } } cairo_device_to_user_distance (cairoTarget, &lineWidth, &x1); cairo_set_line_width (cairoTarget, lineWidth); switch (net->interpolation) { case GERBV_INTERPOLATION_LINEARx1 : case GERBV_INTERPOLATION_LINEARx10 : case GERBV_INTERPOLATION_LINEARx01 : case GERBV_INTERPOLATION_LINEARx001 : cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_ROUND); /* weed out any lines that are * obviously not going to * render on the visible screen */ switch (image->aperture[net->aperture]->type) { case GERBV_APTYPE_CIRCLE : if (renderInfo->show_cross_on_drill_holes && image->layertype == GERBV_LAYERTYPE_DRILL) { /* Draw center crosses on slot hole */ cairo_set_line_width (cairoTarget, pixelWidth); cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_SQUARE); r = image->aperture[net->aperture]->parameter[0]/2.0 + hole_cross_inc_px*pixelWidth; draw_cairo_cross (cairoTarget, x1, y1, r); draw_cairo_cross (cairoTarget, x2, y2, r); cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_ROUND); cairo_set_line_width (cairoTarget, lineWidth); } draw_cairo_move_to (cairoTarget, x1, y1, oddWidth, pixelOutput); draw_cairo_line_to (cairoTarget, x2, y2, oddWidth, pixelOutput); if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_save (cairoTarget); cairo_set_source_rgba ( cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator ( cairoTarget, CAIRO_OPERATOR_OVER); draw_stroke ( cairoTarget, drawMode, selectionInfo, image, net); cairo_restore ( cairoTarget); } else { draw_stroke ( cairoTarget, drawMode, selectionInfo, image, net); } break; case GERBV_APTYPE_RECTANGLE : dx = image->aperture[net->aperture]->parameter[0]/2; dy = image->aperture[net->aperture]->parameter[1]/2; if(x1 > x2) dx = -dx; if(y1 > y2) dy = -dy; cairo_new_path(cairoTarget); draw_cairo_move_to (cairoTarget, x1 - dx, y1 - dy, FALSE, pixelOutput); draw_cairo_line_to (cairoTarget, x1 - dx, y1 + dy, FALSE, pixelOutput); draw_cairo_line_to (cairoTarget, x2 - dx, y2 + dy, FALSE, pixelOutput); draw_cairo_line_to (cairoTarget, x2 + dx, y2 + dy, FALSE, pixelOutput); draw_cairo_line_to (cairoTarget, x2 + dx, y2 - dy, FALSE, pixelOutput); draw_cairo_line_to (cairoTarget, x1 + dx, y1 - dy, FALSE, pixelOutput); draw_fill (cairoTarget, drawMode, selectionInfo, image, net); break; /* TODO: for now, just render ovals or polygons like a circle */ case GERBV_APTYPE_OVAL : case GERBV_APTYPE_POLYGON : draw_cairo_move_to (cairoTarget, x1,y1, oddWidth, pixelOutput); draw_cairo_line_to (cairoTarget, x2,y2, oddWidth, pixelOutput); draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); break; /* macros can only be flashed, so ignore any that might be here */ default: GERB_COMPILE_WARNING( _("Unknown aperture type: %s"), _(gerbv_aperture_type_name( image->aperture[net->aperture]->type))); break; } break; case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : /* cairo doesn't have a function to draw oval arcs, so we must * draw an arc and stretch it by scaling different x and y values */ cairo_new_path(cairoTarget); if (image->aperture[net->aperture]->type == GERBV_APTYPE_RECTANGLE) { cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_SQUARE); } else { cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_ROUND); } cairo_save (cairoTarget); cairo_translate(cairoTarget, cp_x, cp_y); cairo_scale (cairoTarget, net->cirseg->width, net->cirseg->height); if (net->cirseg->angle2 > net->cirseg->angle1) { cairo_arc (cairoTarget, 0.0, 0.0, 0.5, DEG2RAD(net->cirseg->angle1), DEG2RAD(net->cirseg->angle2)); } else { cairo_arc_negative (cairoTarget, 0.0, 0.0, 0.5, DEG2RAD(net->cirseg->angle1), DEG2RAD(net->cirseg->angle2)); } cairo_restore (cairoTarget); draw_stroke (cairoTarget, drawMode, selectionInfo, image, net); break; default : GERB_COMPILE_WARNING( _("Unknown interpolation type: %s"), _(gerbv_interpolation_name(net->interpolation))); break; } break; case GERBV_APERTURE_STATE_OFF : break; case GERBV_APERTURE_STATE_FLASH : p = image->aperture[net->aperture]->parameter; cairo_save (cairoTarget); draw_cairo_translate_adjust(cairoTarget, x2, y2, pixelOutput); switch (image->aperture[net->aperture]->type) { case GERBV_APTYPE_CIRCLE : if (renderInfo->show_cross_on_drill_holes && image->layertype == GERBV_LAYERTYPE_DRILL) { /* Draw center cross on drill hole */ cairo_set_line_width (cairoTarget, pixelWidth); cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_SQUARE); r = p[0]/2.0 + hole_cross_inc_px*pixelWidth; draw_cairo_cross (cairoTarget, 0, 0, r); cairo_set_line_width (cairoTarget, lineWidth); cairo_set_line_cap (cairoTarget, CAIRO_LINE_CAP_ROUND); } gerbv_draw_circle(cairoTarget, p[0]); gerbv_draw_aperture_hole (cairoTarget, p[1], p[2], pixelOutput); break; case GERBV_APTYPE_RECTANGLE : // some CAD programs use very thin flashed rectangles to compose // logos/images, so we must make sure those display here displayPixel = pixelOutput; p0 = p[0]; p1 = p[1]; if (limitLineWidth && (p[0] < pixelWidth) && pixelOutput) { p0 = pixelWidth; displayPixel = FALSE; } if (limitLineWidth && (p[1] < pixelWidth) && pixelOutput) { p1 = pixelWidth; displayPixel = FALSE; } gerbv_draw_rectangle(cairoTarget, p0, p1, displayPixel); gerbv_draw_aperture_hole (cairoTarget, p[2], p[3], displayPixel); break; case GERBV_APTYPE_OVAL : gerbv_draw_oblong(cairoTarget, p[0], p[1]); gerbv_draw_aperture_hole (cairoTarget, p[2], p[3], pixelOutput); break; case GERBV_APTYPE_POLYGON : gerbv_draw_polygon(cairoTarget, p[0], p[1], p[2]); gerbv_draw_aperture_hole (cairoTarget, p[3], p[4], pixelOutput); break; case GERBV_APTYPE_MACRO : /* TODO: to do it properly for vector export (doVectorExportFix) draw all * macros with some vector library with logical operators */ gerbv_draw_amacro(cairoTarget, drawOperatorClear, drawOperatorDark, image->aperture[net->aperture]->simplified, (gint)p[0], pixelWidth, drawMode, selectionInfo, image, net); break; default : GERB_COMPILE_WARNING( _("Unknown aperture type: %s"), _(gerbv_aperture_type_name( image->aperture[net->aperture]->type))); return 0; } /* And finally fill the path */ if (doVectorExportFix && CAIRO_OPERATOR_CLEAR == cairo_get_operator (cairoTarget)) { cairo_set_source_rgba ( cairoTarget, bg_r, bg_g, bg_b, 1.0); cairo_set_operator (cairoTarget, CAIRO_OPERATOR_OVER); } draw_fill (cairoTarget, drawMode, selectionInfo, image, net); cairo_restore (cairoTarget); break; default: GERB_COMPILE_WARNING( _("Unknown aperture state: %s"), _(gerbv_aperture_type_name( net->aperture_state))); return 0; } } } } /* restore the initial two state saves (one for layer, one for netstate)*/ cairo_restore (cairoTarget); cairo_restore (cairoTarget); return 1; } /* Check if Cairo target require the vector export fix to be done and if so try * to retrieve background color. */ static gboolean draw_do_vector_export_fix(cairo_t *cairoTarget, double *bg_red, double *bg_green, double *bg_blue) { /* Cairo library produce _raster_ output if polygon is cleared by * negative aperture or other polygon. A workaround is to draw over * with background color instead of clearing. Drawback is: there won't * be any see thru negative opening if two layers printed one on the * another. */ switch (cairo_surface_get_type (cairo_get_target (cairoTarget))) { case CAIRO_SURFACE_TYPE_PDF: case CAIRO_SURFACE_TYPE_PS: case CAIRO_SURFACE_TYPE_SVG: { double *p0, *p1, *p2; /* Get background color from cairo user data to emulate clear * operator */ p0 = cairo_get_user_data (cairoTarget, (cairo_user_data_key_t *)0); p1 = cairo_get_user_data (cairoTarget, (cairo_user_data_key_t *)1); p2 = cairo_get_user_data (cairoTarget, (cairo_user_data_key_t *)2); if (p0 != NULL && p1 != NULL && p2 != NULL) { *bg_red = *p0; *bg_green = *p1; *bg_blue = *p2; } else { *bg_red = *bg_green = *bg_blue = 1.0; } break; } default: return FALSE; } return TRUE; } gerbv-2.7.0/src/interface.h0000644000175000017500000002364113421555714015422 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file interface.h \brief Header info for the GUI building functions for Gerber Viewer \ingroup gerbv */ /** Sets the key acceleration of a menu item. First tries to lookup the given STOCK_ID with gtk_stock_lookup. If this succeeds and the retrieved GtkStockItem has an accelerator defined this accelerator is used. Otherwise the defaults given below are used. \warning There has to be a GtkStockItem variable 'stock' in scope where this macro is used. */ #define SET_ACCELS_FROM_STOCK(MENU_ITEM, STOCK_ID, GERBV_ACCEL_ID)\ gtk_menu_item_set_accel_path (GTK_MENU_ITEM (MENU_ITEM), GERBV_ACCEL_ID ## _PATH);\ if(gtk_stock_lookup (STOCK_ID, &stock) && stock.keyval != GDK_VoidSymbol && stock.keyval != 0)\ gtk_accel_map_add_entry (GERBV_ACCEL_ID ## _PATH, stock.keyval, stock.modifier);\ else\ gtk_accel_map_add_entry (GERBV_ACCEL_ID ## _PATH, GERBV_ACCEL_ID ## _KEY, GERBV_ACCEL_ID ## _MOD) #define SET_ACCELS(MENU_ITEM, GERBV_ACCEL_ID)\ gtk_menu_item_set_accel_path (GTK_MENU_ITEM (MENU_ITEM), GERBV_ACCEL_ID ## _PATH);\ gtk_accel_map_add_entry (GERBV_ACCEL_ID ## _PATH, GERBV_ACCEL_ID ## _KEY, GERBV_ACCEL_ID ## _MOD) /* If stock items/IDs are used the ACCEL_*_PATH macros have to match the labels of the stock items. Otherwise the (persistent) accelerators are broken. One workaround would be to look the labels up. */ #define GERBV_ACCELS_RELPATH ".gEDA/gerbv/accels" #define ACCEL_ROOT "
/" #define ACCEL_FILE ACCEL_ROOT "file" #define ACCEL_FILE_NEW_PATH ACCEL_FILE "/New" #define ACCEL_FILE_NEW_KEY GDK_n #define ACCEL_FILE_NEW_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_FILE_REVERT_PATH ACCEL_FILE "/Revert" #define ACCEL_FILE_REVERT_KEY GDK_F5 #define ACCEL_FILE_REVERT_MOD (GdkModifierType) 0 #define ACCEL_FILE_OPEN_LAYER_PATH ACCEL_FILE "/Open layer(s)..." #define ACCEL_FILE_OPEN_LAYER_KEY GDK_O #define ACCEL_FILE_OPEN_LAYER_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_FILE_SAVE_LAYER_PATH ACCEL_FILE "/Save active layer" #define ACCEL_FILE_SAVE_LAYER_KEY GDK_S #define ACCEL_FILE_SAVE_LAYER_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_FILE_SAVE_LAYER_AS_PATH ACCEL_FILE "/Save active layer as..." #define ACCEL_FILE_SAVE_LAYER_AS_KEY GDK_A #define ACCEL_FILE_SAVE_LAYER_AS_MOD (GdkModifierType) GDK_CONTROL_MASK | GDK_SHIFT_MASK #define ACCEL_FILE_EXPORT ACCEL_FILE "/Export" #define ACCEL_FILE_PRINT_PATH ACCEL_FILE "/Print..." #define ACCEL_FILE_PRINT_KEY GDK_P #define ACCEL_FILE_PRINT_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_FILE_QUIT_PATH ACCEL_FILE "/Quit" #define ACCEL_FILE_QUIT_KEY GDK_Q #define ACCEL_FILE_QUIT_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_EDIT ACCEL_ROOT "edit" #define ACCEL_EDIT_PROPERTIES_PATH ACCEL_EDIT "/Display properties of selected object(s)" #define ACCEL_EDIT_PROPERTIES_KEY GDK_Return #define ACCEL_EDIT_PROPERTIES_MOD (GdkModifierType) GDK_MOD1_MASK #define ACCEL_EDIT_DELETE_PATH ACCEL_EDIT "/Delete selected object(s)" #define ACCEL_EDIT_DELETE_KEY GDK_Delete #define ACCEL_EDIT_DELETE_MOD (GdkModifierType) 0 #define ACCEL_VIEW ACCEL_ROOT "view" #define ACCEL_VIEW_FULLSCREEN_PATH ACCEL_VIEW "/Fullscreen" #define ACCEL_VIEW_FULLSCREEN_KEY GDK_F11 #define ACCEL_VIEW_FULLSCREEN_MOD (GdkModifierType) 0 #define ACCEL_VIEW_TOOLBAR_PATH ACCEL_VIEW "/Show Toolbar" #define ACCEL_VIEW_TOOLBAR_KEY GDK_F7 #define ACCEL_VIEW_TOOLBAR_MOD (GdkModifierType) 0 #define ACCEL_VIEW_SIDEPANE_PATH ACCEL_VIEW "/Show Sidepane" #define ACCEL_VIEW_SIDEPANE_KEY GDK_F9 #define ACCEL_VIEW_SIDEPANE_MOD (GdkModifierType) 0 #define ACCEL_VIEW_ALL_SELECTION_PATH ACCEL_VIEW "/Show all selection" #define ACCEL_VIEW_ALL_SELECTION_KEY GDK_l #define ACCEL_VIEW_ALL_SELECTION_MOD (GdkModifierType) 0 #define ACCEL_VIEW_CROSS_ON_DRILL_HOLES_PATH ACCEL_VIEW "/Show cross on drill holes" #define ACCEL_VIEW_CROSS_ON_DRILL_HOLES_KEY GDK_x #define ACCEL_VIEW_CROSS_ON_DRILL_HOLES_MOD (GdkModifierType) 0 #define ACCEL_VIEW_VIS ACCEL_VIEW "/Toggle layer visibilty" #define ACCEL_VIEW_VIS_LAYER1_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 1" #define ACCEL_VIEW_VIS_LAYER1_KEY GDK_1 #define ACCEL_VIEW_VIS_LAYER1_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER2_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 2" #define ACCEL_VIEW_VIS_LAYER2_KEY GDK_2 #define ACCEL_VIEW_VIS_LAYER2_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER3_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 3" #define ACCEL_VIEW_VIS_LAYER3_KEY GDK_3 #define ACCEL_VIEW_VIS_LAYER3_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER4_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 4" #define ACCEL_VIEW_VIS_LAYER4_KEY GDK_4 #define ACCEL_VIEW_VIS_LAYER4_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER5_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 5" #define ACCEL_VIEW_VIS_LAYER5_KEY GDK_5 #define ACCEL_VIEW_VIS_LAYER5_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER6_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 6" #define ACCEL_VIEW_VIS_LAYER6_KEY GDK_6 #define ACCEL_VIEW_VIS_LAYER6_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER7_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 7" #define ACCEL_VIEW_VIS_LAYER7_KEY GDK_7 #define ACCEL_VIEW_VIS_LAYER7_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER8_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 8" #define ACCEL_VIEW_VIS_LAYER8_KEY GDK_8 #define ACCEL_VIEW_VIS_LAYER8_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER9_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 9" #define ACCEL_VIEW_VIS_LAYER9_KEY GDK_9 #define ACCEL_VIEW_VIS_LAYER9_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_VIS_LAYER10_PATH ACCEL_VIEW_VIS "/Toggle visibility of layer 10" #define ACCEL_VIEW_VIS_LAYER10_KEY GDK_0 #define ACCEL_VIEW_VIS_LAYER10_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_VIEW_ZOOM_IN_PATH ACCEL_VIEW "/Zoom In" #define ACCEL_VIEW_ZOOM_IN_KEY GDK_z #define ACCEL_VIEW_ZOOM_IN_MOD (GdkModifierType) 0 #define ACCEL_VIEW_ZOOM_OUT_PATH ACCEL_VIEW "/Zoom Out" #define ACCEL_VIEW_ZOOM_OUT_KEY GDK_z #define ACCEL_VIEW_ZOOM_OUT_MOD (GdkModifierType) GDK_SHIFT_MASK #define ACCEL_VIEW_ZOOM_FIT_PATH ACCEL_VIEW "/Best Fit" #define ACCEL_VIEW_ZOOM_FIT_KEY GDK_f #define ACCEL_VIEW_ZOOM_FIT_MOD (GdkModifierType) 0 #define ACCEL_VIEW_RENDER ACCEL_VIEW "/Rendering" #define ACCEL_VIEW_UNITS ACCEL_VIEW "/Units" #define ACCEL_LAYER ACCEL_ROOT "layer" #define ACCEL_LAYER_ALL_ON_PATH ACCEL_LAYER "/All on" #define ACCEL_LAYER_ALL_ON_KEY GDK_KP_Multiply #define ACCEL_LAYER_ALL_ON_MOD (GdkModifierType) 0 #define ACCEL_LAYER_ALL_OFF_PATH ACCEL_LAYER "/All off" #define ACCEL_LAYER_ALL_OFF_KEY GDK_KP_Divide #define ACCEL_LAYER_ALL_OFF_MOD (GdkModifierType) 0 #define ACCEL_LAYER_COLOR_PATH ACCEL_LAYER "/Change color" #define ACCEL_LAYER_COLOR_KEY GDK_F6 #define ACCEL_LAYER_COLOR_MOD (GdkModifierType) 0 #define ACCEL_LAYER_UP_PATH ACCEL_LAYER "/Move up" #define ACCEL_LAYER_UP_KEY GDK_Up #define ACCEL_LAYER_UP_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_LAYER_DOWN_PATH ACCEL_LAYER "/Move down" #define ACCEL_LAYER_DOWN_KEY GDK_Down #define ACCEL_LAYER_DOWN_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_LAYER_DELETE_PATH ACCEL_LAYER "/Delete" #define ACCEL_LAYER_DELETE_KEY GDK_Delete #define ACCEL_LAYER_DELETE_MOD (GdkModifierType) GDK_CONTROL_MASK #define ACCEL_ANAL ACCEL_ROOT "analyze" #define ACCEL_TOOLS ACCEL_ROOT "tools" #define ACCEL_TOOLS_POINTER_PATH ACCEL_TOOLS "/Pointer Tool" #define ACCEL_TOOLS_POINTER_KEY GDK_1 #define ACCEL_TOOLS_POINTER_MOD (GdkModifierType) 0 #define ACCEL_TOOLS_PAN_PATH ACCEL_TOOLS "/Pan Tool" #define ACCEL_TOOLS_PAN_KEY GDK_2 #define ACCEL_TOOLS_PAN_MOD (GdkModifierType) 0 #define ACCEL_TOOLS_ZOOM_PATH ACCEL_TOOLS "/Zoom Tool" #define ACCEL_TOOLS_ZOOM_KEY GDK_3 #define ACCEL_TOOLS_ZOOM_MOD (GdkModifierType) 0 #define ACCEL_TOOLS_MEASURE_PATH ACCEL_TOOLS "/Measure Tool" #define ACCEL_TOOLS_MEASURE_KEY GDK_4 #define ACCEL_TOOLS_MEASURE_MOD (GdkModifierType) 0 #define ACCEL_HELP ACCEL_ROOT "help" void interface_create_gui (int req_width, int req_height); void interface_set_render_type (int); void rename_main_window(char const* filename, GtkWidget* main_win); void set_window_icon (GtkWidget * this_window); gboolean interface_get_alert_dialog_response (const gchar *primaryText, const gchar *secondaryText, gboolean show_checkbox, gboolean *ask_to_show_again, const gchar *true_button_label, const gchar *false_button_label); int interface_reopen_question (GSList *filename, GSList *is_modified, GSList *files_counter, GSList *layer_number); void interface_show_alert_dialog (gchar *primaryText, gchar *secondaryText, gboolean show_checkbox, gboolean *ask_to_show_again); /* transforms[0] is selected layer transformation, other is visible layers, * array must be terminated with NULL */ void interface_show_layer_edit_dialog (gerbv_user_transformation_t *transforms[], gerbv_unit_t screenUnit); gerbv-2.7.0/src/export-dxf.cpp0000644000175000017500000002055513421555714016116 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of Gerbv. * * Copyright (C) 2014 Sergey Alyoshin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-dxf.cpp \brief Functions for exporting Gerbv images to DXF files \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include #include #include "common.h" /* dxflib version difference */ #ifndef DL_STRGRP_END # define DL_STRGRP_END STRGRP_END #endif #ifndef DL_ATTFLAGS_CODE # define DL_ATTFLAGS_CODE ATTFLAGS_CODE #endif #ifndef DL_TXTHI_CODE # define DL_TXTHI_CODE TXTHI_CODE #endif #ifndef DL_TXT_STYLE_CODE # define DL_TXT_STYLE_CODE TXT_STYLE_CODE #endif #ifndef DL_FIRST_XCOORD_CODE # define DL_FIRST_XCOORD_CODE FIRST_XCOORD_CODE #endif #ifndef DL_FIRST_YCOORD_CODE # define DL_FIRST_YCOORD_CODE FIRST_YCOORD_CODE #endif #ifndef DL_CLOSED_PLINE # define DL_CLOSED_PLINE CLOSED_PLINE #endif enum insunits { INSUNITS_NONE = 0, INSUNITS_INCH, INSUNITS_FEET, INSUNITS_MILE, INSUNITS_MM, INSUNITS_CM, INSUNITS_M, INSUNITS_KM, INSUNITS_MICROINCH, INSUNITS_MIL, /* ... and more ... */ }; extern "C" { gboolean gerbv_export_dxf_file_from_image(const gchar *file_name, gerbv_image_t *input_img, gerbv_user_transformation_t *trans) { DL_Codes::version exportVersion = DL_Codes::AC1015; DL_Dxf* dxf = new DL_Dxf(); DL_WriterA* dw; gerbv_aperture_t *apert; gerbv_image_t *img; gerbv_net_t *net; GArray *apert_tab; double x[4], y[4], r, dx, dy, nom; unsigned int i; dw = dxf->out(file_name, exportVersion); if (dw == NULL) { GERB_MESSAGE(_("Can't open file for writing: %s"), file_name); return FALSE; } /* Output decimals as dots for all locales */ setlocale(LC_NUMERIC, "C"); /* Duplicate the image, cleaning it in the process */ img = gerbv_image_duplicate_image(input_img, trans); dxf->writeHeader(*dw); dw->dxfString(DL_STRGRP_END, "$INSUNITS"); dw->dxfInt(DL_ATTFLAGS_CODE, INSUNITS_INCH); dw->dxfString(DL_STRGRP_END, "$DIMEXE"); dw->dxfReal(DL_TXTHI_CODE, 1.25); dw->dxfString(DL_STRGRP_END, "$TEXTSTYLE"); dw->dxfString(DL_TXT_STYLE_CODE, "Standard"); /* TODO ? */ dw->dxfString(DL_STRGRP_END, "$LIMMIN"); dw->dxfReal(DL_FIRST_XCOORD_CODE, 0.0); dw->dxfReal(DL_FIRST_YCOORD_CODE, 0.0); dw->sectionEnd(); dw->sectionTables(); dxf->writeVPort(*dw); /* Line types */ #if (DL_VERSION_MAJOR == 3) dw->tableLinetypes(1); dxf->writeLinetype(*dw, DL_LinetypeData("ByLayer", "ByLayer", 0, 0, 0)); #else dw->tableLineTypes(1); dxf->writeLineType(*dw, DL_LineTypeData("ByLayer", 0)); #endif dw->tableEnd(); /* Layers */ dw->tableLayers(1); /* One layer */ #if (DL_VERSION_MAJOR == 3) dxf->writeLayer(*dw, DL_LayerData("0", 0), DL_Attributes("", DL_Codes::black,/* Color */ 10, /* Width */ "Continuous", 1)); /* Line style and scale */ #else dxf->writeLayer(*dw, DL_LayerData("0", 0), DL_Attributes("", DL_Codes::black,/* Color */ 10, /* Width */ "Continuous")); /* Line style */ #endif dw->tableEnd(); #if (DL_VERSION_MAJOR == 3) dxf->writeStyle(*dw, DL_StyleData("Standard", 0, 2.5, 1.0, 0.0, 0, 2.5, "txt", "")); #else dxf->writeStyle(*dw); #endif dxf->writeView(*dw); dxf->writeUcs(*dw); dw->tableAppid(1); dw->tableAppidEntry(0x12); dw->dxfString(2, "ACAD"); dw->dxfInt(DL_ATTFLAGS_CODE, 0); dw->tableEnd(); dw->sectionEnd(); /* All entities */ dw->sectionEntities(); #if (DL_VERSION_MAJOR == 3) DL_Attributes *attr = new DL_Attributes("0", 0, -1, "ByLayer", 1.0); #else DL_Attributes *attr = new DL_Attributes("0", 0, -1, "ByLayer"); #endif for (net = img->netlist; net != NULL; net = net->next) { apert = img->aperture[net->aperture]; if (!apert) continue; if (net->interpolation == GERBV_INTERPOLATION_PAREA_START) { dxf->writePolyline(*dw, DL_PolylineData(1, 0, 0, DL_CLOSED_PLINE), *attr); net = net->next; while (net != NULL && net->interpolation != GERBV_INTERPOLATION_PAREA_END) { if (net->aperture_state == GERBV_APERTURE_STATE_ON) { dxf->writeVertex(*dw, DL_VertexData( COORD2INS(net->stop_x), COORD2INS(net->stop_y), 0, 0)); } net = net->next; } dxf->writePolylineEnd(*dw); continue; } switch (net->aperture_state) { case GERBV_APERTURE_STATE_FLASH: switch (apert->type) { case GERBV_APTYPE_CIRCLE: x[0] = net->stop_x; y[0] = net->stop_y; r = apert->parameter[0]/2; dxf->writeCircle(*dw, DL_CircleData(x[0], y[0], 0.0, r), *attr); break; case GERBV_APTYPE_RECTANGLE: x[0] = net->stop_x + apert->parameter[0]/2; y[0] = net->stop_y + apert->parameter[1]/2; x[1] = x[0]; y[1] = y[0] - apert->parameter[1]; x[2] = x[1] - apert->parameter[0]; y[2] = y[1]; x[3] = x[2]; y[3] = y[0]; dxf->writePolyline(*dw, DL_PolylineData(4, 0, 0, DL_CLOSED_PLINE), *attr); for (i = 0; i < 4; i++) dxf->writeVertex(*dw, DL_VertexData(x[i], y[i], 0, 0)); dxf->writePolylineEnd(*dw); break; case GERBV_APTYPE_OVAL: if (apert->parameter[0] > apert->parameter[1]) { /* Horizontal oval */ r = apert->parameter[1]/2; dx = apert->parameter[0]/2 - r; x[0] = net->stop_x - dx; y[0] = net->stop_y + r; x[1] = net->stop_x + dx; y[1] = y[0]; x[2] = x[1]; y[2] = net->stop_y - r; x[3] = x[0]; y[3] = y[2]; } else { /* Vertical oval */ r = apert->parameter[0]/2; dy = apert->parameter[1]/2 - r; x[0] = net->stop_x - r; y[0] = net->stop_y - dy; x[1] = x[0]; y[1] = net->stop_y + dy; x[2] = net->stop_x + r; y[2] = y[1]; x[3] = x[2]; y[3] = y[0]; } dxf->writePolyline(*dw, DL_PolylineData(4, 0, 0, DL_CLOSED_PLINE), *attr); dxf->writeVertex(*dw, DL_VertexData(x[3], y[3], 0, -1)); dxf->writeVertex(*dw, DL_VertexData(x[0], y[0], 0, 0)); dxf->writeVertex(*dw, DL_VertexData(x[1], y[1], 0, -1)); dxf->writeVertex(*dw, DL_VertexData(x[2], y[2], 0, 0)); dxf->writePolylineEnd(*dw); break; case GERBV_APTYPE_MACRO: default: /* TODO: other GERBV_APTYPE_ */ GERB_COMPILE_WARNING( "%s:%d: aperture type %d is " "not yet supported", __func__, __LINE__, apert->type); break; } break; case GERBV_APERTURE_STATE_ON: /* Line or cut slot in drill file */ switch (apert->type) { case GERBV_APTYPE_CIRCLE: /* Calculate perpendicular vector */ dx = net->stop_x - net->start_x; dy = net->stop_y - net->start_y; nom = apert->parameter[0] / (2*sqrt(dx*dx + dy*dy)); dx = dx * nom; dy = dy * nom; /* Line 1 of 2 */ x[0] = net->stop_x + dy; y[0] = net->stop_y - dx; x[1] = net->start_x + dy; y[1] = net->start_y - dx; /* Line 2 of 2 */ x[2] = net->start_x - dy; y[2] = net->start_y + dx; x[3] = net->stop_x - dy; y[3] = net->stop_y + dx; dxf->writePolyline(*dw, DL_PolylineData(4, 0, 0, DL_CLOSED_PLINE), *attr); dxf->writeVertex(*dw, DL_VertexData(x[3], y[3], 0, -1)); dxf->writeVertex(*dw, DL_VertexData(x[0], y[0], 0, 0)); dxf->writeVertex(*dw, DL_VertexData(x[1], y[1], 0, -1)); dxf->writeVertex(*dw, DL_VertexData(x[2], y[2], 0, 0)); dxf->writePolylineEnd(*dw); break; default: GERB_COMPILE_WARNING( "%s:%d: aperture type %d is " "not yet supported", __func__, __LINE__, apert->type); break; } break; default: break; } } gerbv_destroy_image(img); dw->sectionEnd(); dxf->writeObjects(*dw); dxf->writeObjectsEnd(*dw); dw->dxfEOF(); dw->close(); delete attr; delete dw; delete dxf; setlocale(LC_NUMERIC, ""); /* Return to the default locale */ return TRUE; } } /* extern "C" */ gerbv-2.7.0/src/drill.c0000644000175000017500000016424313421555714014567 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * drill.c * Copyright (C) 2000-2006 Andreas Andersson * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file drill.c \brief Excellon drill parsing functions \ingroup libgerbv */ /* * 21 Feb 2007 patch for metric drill files: * 1) METRIC/INCH commands (partly) parsed to define units of the header * 2) units of the header and the program body are independent * 3) ICI command parsed in the header */ #include "gerbv.h" #include #ifdef HAVE_STRING_H #include #endif #include /* pow() */ #include #include #include #ifdef HAVE_UNISTD_H #include #endif #include "attribute.h" #include "common.h" #include "drill.h" #include "drill_stats.h" /* DEBUG printing. #define DEBUG 1 in config.h to use this fcn. */ #define dprintf if(DEBUG) printf #define MAXL 200 #define DRILL_READ_DOUBLE_SIZE 32 typedef enum { DRILL_NONE, DRILL_HEADER, DRILL_DATA } drill_file_section_t; typedef enum { DRILL_MODE_ABSOLUTE, DRILL_MODE_INCREMENTAL } drill_coordinate_mode_t; typedef enum { FMT_00_0000 /* INCH */, FMT_000_000 /* METRIC 6-digit, 1 um */, FMT_000_00 /* METRIC 5-digit, 10 um */, FMT_0000_00 /* METRIC 6-digit, 10 um */, FMT_USER /* User defined format */ } number_fmt_t; typedef struct drill_state { double curr_x; double curr_y; int current_tool; drill_file_section_t curr_section; drill_coordinate_mode_t coordinate_mode; double origin_x; double origin_y; gerbv_unit_t unit; /* number_format is used throughout the file itself. header_number_format is used to parse the tool definition C codes within the header. It is fixed to FMT_00_0000 for INCH measures, and FMT_000_000 (1 um resolution) for metric measures. */ number_fmt_t number_format, header_number_format; /* Used as a backup when temporarily switching to INCH. */ number_fmt_t backup_number_format; /* 0 means we don't try to autodetect any of the other values */ int autod; /* in FMT_USER this specifies the number of digits before the * decimal point when doing trailing zero suppression. Otherwise * it is the number of digits *after* the decimal * place in the file */ int decimals; } drill_state_t; /* Local function prototypes */ static drill_g_code_t drill_parse_G_code(gerb_file_t *fd, gerbv_image_t *image, ssize_t file_line); static drill_m_code_t drill_parse_M_code(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line); static int drill_parse_T_code(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line); static int drill_parse_header_is_metric(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line); static int drill_parse_header_is_inch(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line); static int drill_parse_header_is_ici(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line); static void drill_parse_coordinate(gerb_file_t *fd, char firstchar, gerbv_image_t *image, drill_state_t *state, ssize_t file_line); static drill_state_t *new_state(drill_state_t *state); static double read_double(gerb_file_t *fd, number_fmt_t fmt, gerbv_omit_zeros_t omit_zeros, int decimals); static void eat_line(gerb_file_t *fd); static char *get_line(gerb_file_t *fd); static int file_check_str(gerb_file_t *fd, const char *str); /* -------------------------------------------------------------- */ /* This is the list of specific attributes a drill file may have from * the point of view of parsing it. */ enum { SUP_NONE = 0, SUP_LEAD, SUP_TRAIL }; static const char *suppression_list[] = { N_("None"), N_("Leading"), N_("Trailing"), 0 }; static const char *units_list[] = { N_("inch"), N_("mm"), 0 }; enum { HA_auto = 0, HA_suppression, HA_xy_units, HA_digits, #if 0 HA_tool_units, #endif }; static gerbv_HID_Attribute drill_attribute_list[] = { /* This should be first */ {N_("autodetect"), N_("Try to autodetect the file format"), HID_Boolean, 0, 0, {1, 0, 0}, 0, 0}, {N_("zero_suppression"), N_("Zero suppression"), HID_Enum, 0, 0, {0, 0, 0}, suppression_list, 0}, {N_("units"), N_("Length units"), HID_Enum, 0, 0, {0, 0, 0}, units_list, 0}, {N_("digits"), N_("Number of digits. For trailing zero suppression," " this is the number of digits before the decimal point. " "Otherwise this is the number of digits after the decimal point."), HID_Integer, 0, 20, {5, 0, 0}, 0, 0}, #if 0 {"tool_units", "Tool size units", HID_Enum, 0, 0, {0, 0, 0}, units_list, 0}, #endif }; void drill_attribute_merge (gerbv_HID_Attribute *dest, int ndest, gerbv_HID_Attribute *src, int nsrc) { int i, j; /* Here is a brain dead merge algorithm which should make anyone cringe. * Still, it is simple and we won't merge many attributes and not * many times either. */ for (i = 0 ; i < nsrc ; i++) { /* see if our destination wants this attribute */ j = 0; while (j < ndest && strcmp (src[i].name, dest[j].name) != 0) j++; /* if we wanted it and it is the same type, copy it over */ if (j < ndest && src[i].type == dest[j].type) { dest[j].default_val = src[i].default_val; } else { GERB_MESSAGE("Ignoring \"%s\" attribute for drill file", src[i].name); } } } static void drill_update_image_info_min_max_from_bbox(gerbv_image_info_t *info, const gerbv_render_size_t *bbox) { info->min_x = MIN(info->min_x, bbox->left); info->min_y = MIN(info->min_y, bbox->bottom); info->max_x = MAX(info->max_x, bbox->right); info->max_y = MAX(info->max_y, bbox->top); } /* * Adds the actual drill hole to the drawing */ static gerbv_net_t * drill_add_drill_hole (gerbv_image_t *image, drill_state_t *state, gerbv_drill_stats_t *stats, gerbv_net_t *curr_net) { gerbv_render_size_t *bbox; double r; /* Add one to drill stats for the current tool */ drill_stats_increment_drill_counter(image->drill_stats->drill_list, state->current_tool); curr_net->next = g_new0(gerbv_net_t, 1); if (curr_net->next == NULL) GERB_FATAL_ERROR("malloc curr_net->next failed in %s()", __FUNCTION__); curr_net = curr_net->next; curr_net->layer = image->layers; curr_net->state = image->states; curr_net->start_x = state->curr_x; curr_net->start_y = state->curr_y; /* KLUDGE. This function isn't allowed to return anything but inches */ if(state->unit == GERBV_UNIT_MM) { curr_net->start_x /= 25.4; curr_net->start_y /= 25.4; /* KLUDGE. All images, regardless of input format, are returned in INCH format */ curr_net->state->unit = GERBV_UNIT_INCH; } curr_net->stop_x = curr_net->start_x - state->origin_x; curr_net->stop_y = curr_net->start_y - state->origin_y; curr_net->aperture = state->current_tool; curr_net->aperture_state = GERBV_APERTURE_STATE_FLASH; /* Check if aperture is set. Ignore the below instead of causing SEGV... */ if(image->aperture[state->current_tool] == NULL) return curr_net; bbox = &curr_net->boundingBox; r = image->aperture[state->current_tool]->parameter[0] / 2; /* Set boundingBox */ bbox->left = curr_net->start_x - r; bbox->right = curr_net->start_x + r; bbox->bottom = curr_net->start_y - r; bbox->top = curr_net->start_y + r; drill_update_image_info_min_max_from_bbox(image->info, bbox); return curr_net; } /* -------------------------------------------------------------- */ gerbv_image_t * parse_drillfile(gerb_file_t *fd, gerbv_HID_Attribute *attr_list, int n_attr, int reload) { drill_state_t *state = NULL; gerbv_image_t *image = NULL; gerbv_net_t *curr_net = NULL; gerbv_HID_Attribute *hid_attrs; int read; gerbv_drill_stats_t *stats; gchar *tmps; ssize_t file_line = 1; /* * many locales redefine "." as "," and so on, so sscanf and strtod * has problems when reading files using %f format. * Fixes bug #1963618 reported by Lorenzo Marcantonio. */ setlocale(LC_NUMERIC, "C" ); /* Create new image for this layer */ dprintf("In parse_drillfile, about to create image for this layer\n"); image = gerbv_create_image(image, "Excellon Drill File"); if (image == NULL) GERB_FATAL_ERROR("malloc image failed in %s()", __FUNCTION__); if (reload && attr_list != NULL) { /* FIXME there should probably just be a function to copy an attribute list including using strdup as needed */ image->info->n_attr = n_attr; image->info->attr_list = gerbv_attribute_dup(attr_list, n_attr); } else { /* Copy in the default attribute list for drill files. We make a * copy here because we will allow per-layer editing of the * attributes. */ image->info->n_attr = sizeof (drill_attribute_list) / sizeof (drill_attribute_list[0]); image->info->attr_list = gerbv_attribute_dup (drill_attribute_list, image->info->n_attr); /* now merge any project attributes */ drill_attribute_merge (image->info->attr_list, image->info->n_attr, attr_list, n_attr); } curr_net = image->netlist; curr_net->layer = image->layers; curr_net->state = image->states; image->layertype = GERBV_LAYERTYPE_DRILL; stats = gerbv_drill_stats_new(); if (stats == NULL) GERB_FATAL_ERROR("malloc stats failed in %s()", __FUNCTION__); image->drill_stats = stats; /* Create local state variable to track photoplotter state */ state = new_state(state); if (state == NULL) GERB_FATAL_ERROR("malloc state failed in %s()", __FUNCTION__); image->format = g_new0(gerbv_format_t, 1); if (image->format == NULL) GERB_FATAL_ERROR("malloc format failed in %s()", __FUNCTION__); image->format->omit_zeros = GERBV_OMIT_ZEROS_UNSPECIFIED; hid_attrs = image->info->attr_list; if (!hid_attrs[HA_auto].default_val.int_value) { state->autod = 0; state->number_format = FMT_USER; state->decimals = hid_attrs[HA_digits].default_val.int_value; if (GERBV_UNIT_MM == hid_attrs[HA_xy_units].default_val.int_value) state->unit = GERBV_UNIT_MM; switch (hid_attrs[HA_suppression].default_val.int_value) { case SUP_LEAD: image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; break; case SUP_TRAIL: image->format->omit_zeros = GERBV_OMIT_ZEROS_TRAILING; break; default: image->format->omit_zeros = GERBV_OMIT_ZEROS_EXPLICIT; break; } } dprintf("%s(): Starting parsing of drill file \"%s\"\n", __FUNCTION__, fd->filename); while ((read = gerb_fgetc(fd)) != EOF) { switch ((char) read) { case ';' : /* Comment found. Eat rest of line */ tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Comment \"%s\" at line %ld in file \"%s\""), tmps, file_line, fd->filename); dprintf(" Comment with ';' \"%s\" at line %ld\n", tmps, file_line); g_free(tmps); break; case 'D' : gerb_ungetc (fd); tmps = get_line (fd); if (strcmp (tmps, "DETECT,ON") == 0 || strcmp (tmps, "DETECT,OFF") == 0) { gchar *tmps2; gchar *tmps3; if (strcmp (tmps, "DETECT,ON") == 0) tmps3 = "ON"; else tmps3 = "OFF"; /* broken tool detect on/off. Silently ignored. */ if (stats->detect) { tmps2 = g_strdup_printf ("%s\n%s", stats->detect, tmps3); g_free (stats->detect); } else { tmps2 = g_strdup_printf ("%s", tmps3); } stats->detect = tmps2; } else { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unrecognised string \"%s\" in header " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); } g_free (tmps); break; case 'F' : gerb_ungetc (fd); tmps = get_line (fd); /* Silently ignore FMAT,2. Not sure what others are allowed */ if (0 == strcmp (tmps, "FMAT,2")) { g_free (tmps); break; } if (0 == strcmp (tmps, "FMAT,1")) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("File in unsupported format 1 " "at line %ld in file \"%s\""), file_line, fd->filename); gerbv_destroy_image(image); g_free (tmps); return NULL; } gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unrecognised string \"%s\" in header " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free (tmps); break; case 'G': { /* Most G codes aren't used, for now */ drill_g_code_t g_code; switch (g_code = drill_parse_G_code(fd, image, file_line)) { case DRILL_G_DRILL : /* Drill mode */ break; case DRILL_G_SLOT : { /* Parse drilled slot end coords */ gerbv_render_size_t *bbox = &curr_net->boundingBox; double r; if (EOF == (read = gerb_fgetc(fd))) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); break; } drill_parse_coordinate(fd, read, image, state, file_line); /* Modify last curr_net as drilled slot */ curr_net->stop_x = state->curr_x; curr_net->stop_y = state->curr_y; r = image->aperture[state->current_tool]->parameter[0]/2; /* Update boundingBox with drilled slot stop_x,y coords */ bbox->left = MIN(bbox->left, curr_net->stop_x - r); bbox->right = MAX(bbox->right, curr_net->stop_x + r); bbox->bottom = MIN(bbox->bottom, curr_net->stop_y - r); bbox->top = MAX(bbox->top, curr_net->stop_y + r); drill_update_image_info_min_max_from_bbox(image->info, bbox); if (state->unit == GERBV_UNIT_MM) { /* Convert to inches -- internal units */ curr_net->stop_x /= 25.4; curr_net->stop_y /= 25.4; } curr_net->aperture_state = GERBV_APERTURE_STATE_ON; break; } case DRILL_G_ABSOLUTE : state->coordinate_mode = DRILL_MODE_ABSOLUTE; break; case DRILL_G_INCREMENTAL : state->coordinate_mode = DRILL_MODE_INCREMENTAL; break; case DRILL_G_ZEROSET : if (EOF == (read = gerb_fgetc(fd))) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found in file \"%s\""), fd->filename); break; } drill_parse_coordinate(fd, (char)read, image, state, file_line); state->origin_x = state->curr_x; state->origin_y = state->curr_y; break; case DRILL_G_UNKNOWN: tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unrecognized string \"%s\" found " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free(tmps); break; default: eat_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unsupported G%02d (%s) code " "at line %ld in file \"%s\""), g_code, drill_g_code_name(g_code), file_line, fd->filename); break; } break; } case 'I': gerb_ungetc(fd); /* To compare full string in function or report full string */ if (drill_parse_header_is_inch(fd, state, image, file_line)) break; if (drill_parse_header_is_ici(fd, state, image, file_line)) break; tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unrecognized string \"%s\" found " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free(tmps); break; case 'M': { int m_code; switch (m_code = drill_parse_M_code(fd, state, image, file_line)) { case DRILL_M_HEADER : state->curr_section = DRILL_HEADER; break; case DRILL_M_HEADEREND : state->curr_section = DRILL_DATA; if (image->format->omit_zeros == GERBV_OMIT_ZEROS_UNSPECIFIED) { /* Excellon says they default to specify leading zeros, i.e. omit trailing zeros. The Excellon files floating around that don't specify the leading/trailing zeros in the header seem to contradict to this though. XXX We should probably ask the user. */ gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("End of Excellon header reached " "but no leading/trailing zero " "handling specified " "at line %ld in file \"%s\""), file_line, fd->filename); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Assuming leading zeros in file \"%s\""), fd->filename); image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; } break; case DRILL_M_METRIC : if (state->unit == GERBV_UNIT_UNSPECIFIED && state->curr_section != DRILL_HEADER) { double size; gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("M71 code found but no METRIC " "specification in header " "at line %ld in file \"%s\""), file_line, fd->filename); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Assuming all tool sizes are MM in file \"%s\""), fd->filename); stats = image->drill_stats; for (int tool_num = TOOL_MIN; tool_num < TOOL_MAX; tool_num++) { if (image->aperture && image->aperture[tool_num]) { /* First update stats. Do this before changing drill dias. * Maybe also put error into stats? */ size = image->aperture[tool_num]->parameter[0]; drill_stats_modify_drill_list(stats->drill_list, tool_num, size, "MM"); /* Now go back and update all tool dias, since * tools are displayed in inch units */ image->aperture[tool_num]->parameter[0] /= 25.4; } } } if (state->autod) { state->number_format = state->backup_number_format; state->unit = GERBV_UNIT_MM; } break; case DRILL_M_IMPERIAL : if (state->autod) { if (state->number_format != FMT_00_0000) /* save metric format definition for later */ state->backup_number_format = state->number_format; state->number_format = FMT_00_0000; state->decimals = 4; state->unit = GERBV_UNIT_INCH; } break; case DRILL_M_CANNEDTEXTX : case DRILL_M_CANNEDTEXTY : tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Canned text \"%s\" " "at line %ld in drill file \"%s\""), tmps, file_line, fd->filename); g_free(tmps); break; case DRILL_M_MESSAGELONG : case DRILL_M_MESSAGE : tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Message \"%s\" embedded " "at line %ld in drill file \"%s\""), tmps, file_line, fd->filename); g_free(tmps); break; case DRILL_M_PATTERNEND : case DRILL_M_TOOLTIPCHECK : break; case DRILL_M_END : /* M00 has optional arguments */ eat_line(fd); case DRILL_M_ENDREWIND : goto drill_parse_end; break; case DRILL_M_UNKNOWN: gerb_ungetc(fd); /* To compare full string in function or report full string */ if (drill_parse_header_is_metric(fd, state, image, file_line)) break; stats->M_unknown++; tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unrecognized string \"%s\" found " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free(tmps); break; default: stats->M_unknown++; gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unsupported M%02d (%s) code found " "at line %ld in file \"%s\""), m_code, _(drill_m_code_name(m_code)), file_line, fd->filename); break; } /* switch(m_code) */ break; } /* case 'M' */ case 'R': if (state->curr_section == DRILL_HEADER) { stats->unknown++; gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Not allowed 'R' code in the header " "at line %ld in file \"%s\""), file_line, fd->filename); } else { double start_x, start_y; double step_x, step_y; int c; int rcnt; /* * This is the "Repeat hole" command. Format is: * R##[X##][Y##] * This repeats the previous hole stepping in the X and * Y increments give. Example: * R04X0.1 -- repeats the drill hole 4 times, stepping * 0.1" in the X direction. Note that the X and Y step * sizes default to zero if not given and that they use * the same format and units as the normal X,Y * coordinates. */ stats->R++; start_x = state->curr_x; start_y = state->curr_y; /* figure out how many repeats there are */ c = gerb_fgetc (fd); rcnt = 0; while ( '0' <= c && c <= '9') { rcnt = 10*rcnt + (c - '0'); c = gerb_fgetc (fd); } dprintf ("working on R code (repeat) with a number of reps equal to %d\n", rcnt); step_x = 0.0; if (c == 'X') { step_x = read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); c = gerb_fgetc (fd); } step_y = 0.0; if( c == 'Y') { step_y = read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); } else { gerb_ungetc (fd); } dprintf ("Getting ready to repeat the drill %d times with delta_x = %g, delta_y = %g\n", rcnt, step_x, step_y); /* spit out the drills */ for (c = 1 ; c <= rcnt ; c++) { state->curr_x = start_x + c*step_x; state->curr_y = start_y + c*step_y; dprintf (" Repeat #%d — new location is (%g, %g)\n", c, state->curr_x, state->curr_y); curr_net = drill_add_drill_hole (image, state, stats, curr_net); } } case 'S': gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Ignoring setting spindle speed " "at line %ld in drill file \"%s\""), file_line, fd->filename); eat_line(fd); break; case 'T': drill_parse_T_code(fd, state, image, file_line); break; case 'V' : gerb_ungetc (fd); tmps = get_line (fd); /* Silently ignore VER,1. Not sure what others are allowed */ if (0 != strcmp (tmps, "VER,1")) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Undefined string \"%s\" in header " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); } g_free (tmps); break; case 'X': case 'Y': /* Hole coordinate found. Do some parsing */ drill_parse_coordinate(fd, read, image, state, file_line); /* add the new drill hole */ curr_net = drill_add_drill_hole (image, state, stats, curr_net); break; case '%': state->curr_section = DRILL_DATA; break; case '\n' : file_line++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\r' && read != EOF) gerb_ungetc(fd); break; case '\r' : file_line++; /* Get char, if any, from pair */ read = gerb_fgetc(fd); if (read != '\n' && read != EOF) gerb_ungetc(fd); break; case ' ' : /* White space */ case '\t' : break; default: stats->unknown++; if (DRILL_HEADER == state->curr_section) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Undefined code '%s' (0x%x) found in header " "at line %ld in file \"%s\""), gerbv_escape_char(read), read, file_line, fd->filename); gerb_ungetc(fd); /* Unrecognised crap in the header is thrown away */ tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Unrecognised string \"%s\" in header " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free (tmps); } else { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Ignoring undefined character '%s' (0x%x) " "found inside data at line %ld in file \"%s\""), gerbv_escape_char(read), read, file_line, fd->filename); } } } gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("No EOF found in drill file \"%s\""), fd->filename); drill_parse_end: dprintf ("%s(): Populating file attributes\n", __FUNCTION__); hid_attrs = image->info->attr_list; switch (state->unit) { case GERBV_UNIT_MM: hid_attrs[HA_xy_units].default_val.int_value = GERBV_UNIT_MM; break; default: hid_attrs[HA_xy_units].default_val.int_value = GERBV_UNIT_INCH; break; } switch (state->number_format) { case FMT_000_00: case FMT_0000_00: hid_attrs[HA_digits].default_val.int_value = 2; break; case FMT_000_000: hid_attrs[HA_digits].default_val.int_value = 3; break; case FMT_00_0000: hid_attrs[HA_digits].default_val.int_value = 4; break; case FMT_USER: dprintf ("%s(): Keeping user specified number of decimal places (%d)\n", __FUNCTION__, hid_attrs[HA_digits].default_val.int_value); break; default: break; } switch (image->format->omit_zeros) { case GERBV_OMIT_ZEROS_LEADING: hid_attrs[HA_suppression].default_val.int_value = SUP_LEAD; break; case GERBV_OMIT_ZEROS_TRAILING: hid_attrs[HA_suppression].default_val.int_value = SUP_TRAIL; break; default: hid_attrs[HA_suppression].default_val.int_value = SUP_NONE; break; } g_free(state); return image; } /* parse_drillfile */ /* -------------------------------------------------------------- */ /* * Checks for signs that this is a drill file * Returns TRUE if it is, FALSE if not. */ gboolean drill_file_p(gerb_file_t *fd, gboolean *returnFoundBinary) { char *buf=NULL, *tbuf; int len = 0; char *letter; int ascii; int zero = 48; /* ascii 0 */ int nine = 57; /* ascii 9 */ int i; gboolean found_binary = FALSE; gboolean found_M48 = FALSE; gboolean found_M30 = FALSE; gboolean found_percent = FALSE; gboolean found_T = FALSE; gboolean found_X = FALSE; gboolean found_Y = FALSE; gboolean end_comments=FALSE; tbuf = g_malloc(MAXL); if (tbuf == NULL) GERB_FATAL_ERROR( "malloc buf failed while checking for drill file in %s()", __FUNCTION__); while (fgets(tbuf, MAXL, fd->fd) != NULL) { len = strlen(tbuf); buf = tbuf; /* check for comments at top of file. */ if(!end_comments){ if(g_strstr_len(buf, len, ";")!=NULL){/* comments at top of file */ for (i = 0; i < len-1; ++i) { if (buf[i] == '\n' && buf[i+1] != ';' && buf[i+1] != '\r' && buf[i+1] != '\n') { end_comments = TRUE; /* Set rest of parser to end of * comments */ buf = &tbuf[i+1]; } } if(!end_comments) continue; } else end_comments=TRUE; } /* First look through the file for indications of its type */ len = strlen(buf); /* check that file is not binary (non-printing chars) */ for (i = 0; i < len; i++) { ascii = (int) buf[i]; if ((ascii > 128) || (ascii < 0)) { found_binary = TRUE; } } /* Check for M48 = start of drill header */ if (g_strstr_len(buf, len, "M48")) { found_M48 = TRUE; } /* Check for M30 = end of drill program */ if (g_strstr_len(buf, len, "M30")) { if (found_percent) { found_M30 = TRUE; /* Found M30 after % = good */ } } /* Check for % on its own line at end of header */ if ((letter = g_strstr_len(buf, len, "%")) != NULL) { if ((letter[1] == '\r') || (letter[1] == '\n')) found_percent = TRUE; } /* Check for T */ if ((letter = g_strstr_len(buf, len, "T")) != NULL) { if (!found_T && (found_X || found_Y)) { found_T = FALSE; /* Found first T after X or Y */ } else { if (isdigit( (int) letter[1])) { /* verify next char is digit */ found_T = TRUE; } } } /* look for X or Y */ if ((letter = g_strstr_len(buf, len, "X")) != NULL) { ascii = (int) letter[1]; /* grab char after X */ if ((ascii >= zero) && (ascii <= nine)) { found_X = TRUE; } } if ((letter = g_strstr_len(buf, len, "Y")) != NULL) { ascii = (int) letter[1]; /* grab char after Y */ if ((ascii >= zero) && (ascii <= nine)) { found_Y = TRUE; } } } /* while (fgets(buf, MAXL, fd->fd) */ rewind(fd->fd); g_free(tbuf); *returnFoundBinary = found_binary; /* Now form logical expression determining if this is a drill file */ if ( ((found_X || found_Y) && found_T) && (found_M48 || (found_percent && found_M30)) ) return TRUE; else if (found_M48 && found_T && found_percent && found_M30) /* Pathological case of drill file with valid header and EOF but no drill XY locations. */ return TRUE; else return FALSE; } /* drill_file_p */ /* -------------------------------------------------------------- */ /* Parse tool definition. This can get a bit tricky since it can appear in the header and/or data section. Returns tool number on success, -1 on error */ static int drill_parse_T_code(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line) { int tool_num; gboolean done = FALSE; int temp; double size; gerbv_drill_stats_t *stats = image->drill_stats; gerbv_aperture_t *apert; gchar *tmps; gchar *string; dprintf("---> entering %s()...\n", __FUNCTION__); /* Sneak a peek at what's hiding after the 'T'. Ugly fix for broken headers from Orcad, which is crap */ temp = gerb_fgetc(fd); dprintf(" Found a char '%s' (0x%02x) after the T\n", gerbv_escape_char(temp), temp); /* might be a tool tool change stop switch on/off*/ if((temp == 'C') && ((fd->ptr + 2) < fd->datalen)){ if(gerb_fgetc(fd) == 'S'){ if (gerb_fgetc(fd) == 'T' ){ fd->ptr -= 4; tmps = get_line(fd++); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_NOTE, -1, _("Tool change stop switch found \"%s\" " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free (tmps); return -1; } gerb_ungetc(fd); } gerb_ungetc(fd); } if( !(isdigit(temp) != 0 || temp == '+' || temp =='-') ) { if(temp != EOF) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("OrCAD bug: Junk text found in place of tool definition")); tmps = get_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Junk text \"%s\" " "at line %ld in file \"%s\""), tmps, file_line, fd->filename); g_free (tmps); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Ignoring junk text")); } return -1; } gerb_ungetc(fd); tool_num = (int) gerb_fgetint(fd, NULL); dprintf (" Handling tool T%d at line %ld\n", tool_num, file_line); if (tool_num == 0) return tool_num; /* T00 is a command to unload the drill */ if (tool_num < TOOL_MIN || tool_num >= TOOL_MAX) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Out of bounds drill number %d " "at line %ld in file \"%s\""), tool_num, file_line, fd->filename); } /* Set the current tool to the correct one */ state->current_tool = tool_num; /* Check for a size definition */ temp = gerb_fgetc(fd); /* This bit of code looks for a tool definition by scanning for strings * of form TxxC, TxxF, TxxS. */ while (!done) { switch((char)temp) { case 'C': size = read_double(fd, state->header_number_format, GERBV_OMIT_ZEROS_TRAILING, state->decimals); dprintf (" Read a size of %g\n", size); if (state->unit == GERBV_UNIT_MM) { size /= 25.4; } else if(size >= 4.0) { /* If the drill size is >= 4 inches, assume that this must be wrong and that the units are mils. The limit being 4 inches is because the smallest drill I've ever seen used is 0,3mm(about 12mil). Half of that seemed a bit too small a margin, so a third it is */ gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Read a drill of diameter %g inches " "at line %ld in file \"%s\""), size, file_line, fd->filename); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Assuming units are mils")); size /= 1000.0; } if (size <= 0. || size >= 10000.) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unreasonable drill size %g found for drill %d " "at line %ld in file \"%s\""), size, tool_num, file_line, fd->filename); } else { apert = image->aperture[tool_num]; if (apert != NULL) { /* allow a redefine of a tool only if the new definition is exactly the same. * This avoid lots of spurious complaints with the output of some cad * tools while keeping complaints if there is a true problem */ if (apert->parameter[0] != size || apert->type != GERBV_APTYPE_CIRCLE || apert->nuf_parameters != 1 || apert->unit != GERBV_UNIT_INCH) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Found redefinition of drill %d " "at line %ld in file \"%s\""), tool_num, file_line, fd->filename); } } else { apert = image->aperture[tool_num] = g_new0(gerbv_aperture_t, 1); if (apert == NULL) GERB_FATAL_ERROR("malloc tool failed in %s()", __FUNCTION__); /* There's really no way of knowing what unit the tools are defined in without sneaking a peek in the rest of the file first. That's done in drill_guess_format() */ apert->parameter[0] = size; apert->type = GERBV_APTYPE_CIRCLE; apert->nuf_parameters = 1; apert->unit = GERBV_UNIT_INCH; } } /* Add the tool whose definition we just found into the list * of tools for this layer used to generate statistics. */ stats = image->drill_stats; string = g_strdup_printf("%s", (state->unit == GERBV_UNIT_MM ? _("mm") : _("inch"))); drill_stats_add_to_drill_list(stats->drill_list, tool_num, state->unit == GERBV_UNIT_MM ? size*25.4 : size, string); g_free(string); break; case 'F': case 'S' : /* Silently ignored. They're not important. */ gerb_fgetint(fd, NULL); break; default: /* Stop when finding anything but what's expected (and put it back) */ gerb_ungetc(fd); done = TRUE; break; } /* switch((char)temp) */ temp = gerb_fgetc(fd); if (EOF == temp) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF encountered in header of " "drill file \"%s\""), fd->filename); /* Restore new line character for processing */ if ('\n' == temp || '\r' == temp) gerb_ungetc(fd); } } /* while(!done) */ /* Done looking at tool definitions */ /* Catch the tools that aren't defined. This isn't strictly a good thing, but at least something is shown */ if (apert == NULL) { double dia; apert = image->aperture[tool_num] = g_new0(gerbv_aperture_t, 1); if (apert == NULL) GERB_FATAL_ERROR("malloc tool failed in %s()", __FUNCTION__); /* See if we have the tool table */ dia = gerbv_get_tool_diameter(tool_num); if (dia <= 0) { /* * There is no tool. So go out and make some. * This size calculation is, of course, totally bogus. */ dia = (double)(16 + 8 * tool_num) / 1000; /* * Oooh, this is sooo ugly. But some CAD systems seem to always * use T00 at the end of the file while others that don't have * tool definitions inside the file never seem to use T00 at all. */ if (tool_num != 0) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Tool %02d used without being defined " "at line %ld in file \"%s\""), tool_num, file_line, fd->filename); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Setting a default size of %g\""), dia); } } apert->type = GERBV_APTYPE_CIRCLE; apert->nuf_parameters = 1; apert->parameter[0] = dia; /* Add the tool whose definition we just found into the list * of tools for this layer used to generate statistics. */ if (tool_num != 0) { /* Only add non-zero tool nums. * Zero = unload command. */ stats = image->drill_stats; string = g_strdup_printf("%s", (state->unit == GERBV_UNIT_MM ? _("mm") : _("inch"))); drill_stats_add_to_drill_list(stats->drill_list, tool_num, state->unit == GERBV_UNIT_MM ? dia*25.4 : dia, string); g_free(string); } } /* if(image->aperture[tool_num] == NULL) */ dprintf("<---- ...leaving %s()\n", __FUNCTION__); return tool_num; } /* drill_parse_T_code() */ /* -------------------------------------------------------------- */ static drill_m_code_t drill_parse_M_code(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line) { gerbv_drill_stats_t *stats = image->drill_stats; drill_m_code_t m_code; char op[3]; dprintf("---> entering %s() ...\n", __FUNCTION__); op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); op[2] = '\0'; if (op[0] == EOF || op[1] == EOF) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing M-code in file \"%s\""), fd->filename); return DRILL_M_UNKNOWN; } dprintf(" Compare M-code \"%s\" at line %ld\n", op, file_line); switch (m_code = atoi(op)) { case 0: /* atoi() return 0 in case of error, recheck string */ if (0 != strncmp(op, "00", 2)) { m_code = DRILL_M_UNKNOWN; gerb_ungetc(fd); gerb_ungetc(fd); break; } stats->M00++; break; case 1: stats->M01++; break; case 18: stats->M18++; break; case 25: stats->M25++; break; case 30: stats->M30++; break; case 45: stats->M45++; break; case 47: stats->M47++; break; case 48: stats->M48++; break; case 71: stats->M71++; eat_line(fd); break; case 72: stats->M72++; eat_line(fd); break; case 95: stats->M95++; break; case 97: stats->M97++; break; case 98: stats->M98++; break; default: case DRILL_M_UNKNOWN: break; } dprintf("<---- ...leaving %s()\n", __FUNCTION__); return m_code; } /* drill_parse_M_code() */ /* -------------------------------------------------------------- */ static int drill_parse_header_is_metric(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line) { gerbv_drill_stats_t *stats = image->drill_stats; char c, op[3]; dprintf(" %s(): entering\n", __FUNCTION__); /* METRIC is not an actual M code but a command that is only * acceptable within the header. * * The syntax is * METRIC[,{TZ|LZ}][,{000.000|000.00|0000.00}] */ if (DRILL_HEADER != state->curr_section) return 0; switch (file_check_str(fd, "METRIC")) { case -1: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing \"%s\" string " "in file \"%s\""), "METRIC", fd->filename); return 0; case 0: return 0; } header_again: if (',' != gerb_fgetc(fd)) { gerb_ungetc(fd); eat_line(fd); } else { /* Is it TZ, LZ, or zerofmt? */ switch (c = gerb_fgetc(fd)) { case 'T': case 'L': if ('Z' != gerb_fgetc(fd)) goto header_junk; if (c == 'L') { dprintf (" %s(): Detected a file that probably has " "trailing zero suppression\n", __FUNCTION__); if (state->autod) image->format->omit_zeros = GERBV_OMIT_ZEROS_TRAILING; } else { dprintf (" %s(): Detected a file that probably has " "leading zero suppression\n", __FUNCTION__); if (state->autod) image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; } if (state->autod) { /* Default metric number format is 6-digit, 1 um * resolution. The header number format (for T#C# * definitions) is fixed to that, while the number * format within the file can differ. */ state->header_number_format = state->number_format = FMT_000_000; state->decimals = 3; } if (',' == gerb_fgetc(fd)) /* Anticipate number format will follow */ goto header_again; gerb_ungetc(fd); break; case '0': if ('0' != gerb_fgetc(fd) || '0' != gerb_fgetc(fd)) goto header_junk; /* We just parsed three 0s, the remainder options so far are: .000 | .00 | 0.00 */ op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); op[2] = '\0'; if (EOF == op[0] || EOF == op[1]) goto header_junk; if (0 == strcmp(op, "0.")) { /* expecting FMT_0000_00, two trailing 0s must follow */ if ('0' != gerb_fgetc(fd) || '0' != gerb_fgetc(fd)) goto header_junk; eat_line(fd); if (state->autod) { state->number_format = FMT_0000_00; state->decimals = 2; } break; } if (0 != strcmp(op, ".0")) goto header_junk; /* Must be either FMT_000_000 or FMT_000_00, depending * on whether one or two 0s are following */ if ('0' != gerb_fgetc(fd)) goto header_junk; if ('0' == gerb_fgetc(fd) && state->autod) { state->number_format = FMT_000_000; state->decimals = 3; } else { gerb_ungetc(fd); if (state->autod) { state->number_format = FMT_000_00; state->decimals = 2; } } eat_line(fd); break; default: header_junk: gerb_ungetc(fd); eat_line(fd); gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Found junk after METRIC command " "at line %ld in file \"%s\""), file_line, fd->filename); break; } } state->unit = GERBV_UNIT_MM; return 1; } /* drill_parse_header_is_metric() */ /* -------------------------------------------------------------- */ static int drill_parse_header_is_inch(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line) { gerbv_drill_stats_t *stats = image->drill_stats; char c; dprintf(" %s(): entering\n", __FUNCTION__); if (DRILL_HEADER != state->curr_section) return 0; switch (file_check_str(fd, "INCH")) { case -1: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing \"%s\" string " "in file \"%s\""), "INCH", fd->filename); return 0; case 0: return 0; } /* Look for TZ/LZ */ if (',' != gerb_fgetc(fd)) { /* Unget the char in case we just advanced past a new line char */ gerb_ungetc (fd); } else { c = gerb_fgetc(fd); if (c != EOF && 'Z' == gerb_fgetc(fd)) { switch (c) { case 'L': if (state->autod) { image->format->omit_zeros = GERBV_OMIT_ZEROS_TRAILING; state->header_number_format = state->number_format = FMT_00_0000; state->decimals = 4; } break; case 'T': if (state->autod) { image->format->omit_zeros = GERBV_OMIT_ZEROS_LEADING; state->header_number_format = state->number_format = FMT_00_0000; state->decimals = 4; } break; default: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Found junk '%s' after " "INCH command " "at line %ld in file \"%s\""), gerbv_escape_char(c), file_line, fd->filename); break; } } else { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_WARNING, -1, _("Found junk '%s' after INCH command " "at line %ld in file \"%s\""), gerbv_escape_char(c), file_line, fd->filename); } } state->unit = GERBV_UNIT_INCH; return 1; } /* drill_parse_header_is_inch() */ /* -------------------------------------------------------------- */ /* Check "ICI" incremental input of coordinates */ static int drill_parse_header_is_ici(gerb_file_t *fd, drill_state_t *state, gerbv_image_t *image, ssize_t file_line) { gerbv_drill_stats_t *stats = image->drill_stats; switch (file_check_str(fd, "ICI,ON")) { case -1: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing \"%s\" string " "in file \"%s\""), "ICI,ON", fd->filename); return 0; case 1: state->coordinate_mode = DRILL_MODE_INCREMENTAL; return 1; } switch (file_check_str(fd, "ICI,OFF")) { case -1: gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing \"%s\" string " "in file \"%s\""), "ICI,OFF", fd->filename); return 0; case 1: state->coordinate_mode = DRILL_MODE_ABSOLUTE; return 1; } return 0; } /* drill_parse_header_is_ici() */ /* -------------------------------------------------------------- */ static drill_g_code_t drill_parse_G_code(gerb_file_t *fd, gerbv_image_t *image, ssize_t file_line) { char op[3]; drill_g_code_t g_code; gerbv_drill_stats_t *stats = image->drill_stats; dprintf("---> entering %s()...\n", __FUNCTION__); op[0] = gerb_fgetc(fd); op[1] = gerb_fgetc(fd); op[2] = '\0'; if (op[0] == EOF || op[1] == EOF) { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Unexpected EOF found while parsing G-code in file \"%s\""), fd->filename); return DRILL_G_UNKNOWN; } dprintf(" Compare G-code \"%s\" at line %ld\n", op, file_line); switch (g_code = atoi(op)) { case 0: /* atoi() return 0 in case of error, recheck string */ if (0 != strncmp(op, "00", 2)) { g_code = DRILL_G_UNKNOWN; gerb_ungetc(fd); gerb_ungetc(fd); break; } stats->G00++; break; case 1: stats->G01++; break; case 2: stats->G02++; break; case 3: stats->G03++; break; case 5: stats->G05++; break; case 85: stats->G85++; break; case 90: stats->G90++; break; case 91: stats->G91++; break; case 93: stats->G93++; break; case DRILL_G_UNKNOWN: default: stats->G_unknown++; break; } dprintf("<---- ...leaving %s()\n", __FUNCTION__); return g_code; } /* drill_parse_G_code() */ /* -------------------------------------------------------------- */ /* Parse on drill file coordinate. Returns nothing, but modifies state */ static void drill_parse_coordinate(gerb_file_t *fd, char firstchar, gerbv_image_t *image, drill_state_t *state, ssize_t file_line) { int read; gerbv_drill_stats_t *stats = image->drill_stats; if(state->coordinate_mode == DRILL_MODE_ABSOLUTE) { if (firstchar == 'X') { state->curr_x = read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); if ((read = (char)gerb_fgetc(fd)) == 'Y') { state->curr_y = read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); } else { gerb_ungetc(fd); } } else if (firstchar == 'Y') { state->curr_y = read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); } } else if(state->coordinate_mode == DRILL_MODE_INCREMENTAL) { if (firstchar == 'X') { state->curr_x += read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); if((read = (char)gerb_fgetc(fd)) == 'Y') { state->curr_y += read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); } else { gerb_ungetc(fd); } } else if (firstchar == 'Y') { state->curr_y += read_double(fd, state->number_format, image->format->omit_zeros, state->decimals); } } else { gerbv_stats_printf(stats->error_list, GERBV_MESSAGE_ERROR, -1, _("Coordinate mode is not absolute and not incremental " "at line %ld in file \"%s\""), file_line, fd->filename); } } /* drill_parse_coordinate */ /* Allocates and returns a new drill_state structure Returns state pointer on success, NULL on ERROR */ static drill_state_t * new_state(drill_state_t *state) { state = g_new0(drill_state_t, 1); if (state != NULL) { /* Init structure */ state->curr_section = DRILL_NONE; state->coordinate_mode = DRILL_MODE_ABSOLUTE; state->origin_x = 0.0; state->origin_y = 0.0; state->unit = GERBV_UNIT_UNSPECIFIED; state->backup_number_format = FMT_000_000; /* only used for METRIC */ state->header_number_format = state->number_format = FMT_00_0000; /* i. e. INCH */ state->autod = 1; state->decimals = 4; } return state; } /* new_state */ /* -------------------------------------------------------------- */ /* Reads one double from fd and returns it. If a decimal point is found, fmt is not used. */ static double read_double(gerb_file_t *fd, number_fmt_t fmt, gerbv_omit_zeros_t omit_zeros, int decimals) { int read; char temp[DRILL_READ_DOUBLE_SIZE]; int i = 0, ndigits = 0; double result; gboolean decimal_point = FALSE; gboolean sign_prepend = FALSE; memset(temp, 0, sizeof(temp)); read = gerb_fgetc(fd); while(read != EOF && i < (DRILL_READ_DOUBLE_SIZE -1) && (isdigit(read) || read == '.' || read == ',' || read == '+' || read == '-')) { if(read == ',' || read == '.') decimal_point = TRUE; /* * FIXME -- if we are going to do this, don't we need a * locale-independent strtod()? I think pcb has one. */ if(read == ',') read = '.'; /* adjust for strtod() */ if(isdigit(read)) ndigits++; if(read == '-' || read == '+') sign_prepend = TRUE; temp[i++] = (char)read; read = gerb_fgetc(fd); } temp[i] = 0; gerb_ungetc(fd); if (decimal_point) { result = strtod(temp, NULL); } else { int wantdigits; double scale; char tmp2[DRILL_READ_DOUBLE_SIZE]; memset(tmp2, 0, sizeof(tmp2)); /* Nothing to take care for when leading zeros are omitted. */ if (omit_zeros == GERBV_OMIT_ZEROS_TRAILING) { switch (fmt) { case FMT_00_0000: wantdigits = 2; break; case FMT_000_000: wantdigits = 3; break; case FMT_0000_00: wantdigits = 4; break; case FMT_000_00: wantdigits = 3; break; case FMT_USER: wantdigits = decimals; break; default: /* cannot happen, just plugs a compiler warning */ fprintf(stderr, _("%s(): omit_zeros == GERBV_OMIT_ZEROS_TRAILING but fmt = %d.\n" "This should never have happened\n"), __FUNCTION__, fmt); return 0; } /* need to add an extra char for '+' or '-' */ if (sign_prepend) wantdigits++; /* * we need at least wantdigits + one for the decimal place * + one for the terminating null character */ if (wantdigits > sizeof(tmp2) - 2) { fprintf(stderr, _("%s(): wantdigits = %d which exceeds the maximum allowed size\n"), __FUNCTION__, wantdigits); return 0; } /* * After we have read the correct number of digits * preceeding the decimal point, insert a decimal point * and append the rest of the digits. */ dprintf("%s(): wantdigits = %d, strlen(\"%s\") = %ld\n", __FUNCTION__, wantdigits, temp, (long) strlen(temp)); for (i = 0 ; i < wantdigits && i < strlen(temp) ; i++) { tmp2[i] = temp[i]; } for ( ; i < wantdigits ; i++) { tmp2[i] = '0'; } tmp2[i++] = '.'; for ( ; i <= strlen(temp) ; i++) { tmp2[i] = temp[i-1]; } dprintf("%s(): After dealing with trailing zero suppression, convert \"%s\"\n", __FUNCTION__, tmp2); scale = 1.0; for (i = 0 ; i <= strlen(tmp2) && i < sizeof (temp) ; i++) { temp[i] = tmp2[i]; } } else { /* * figure out the scale factor when we are not suppressing * trailing zeros. */ switch (fmt) { case FMT_00_0000: scale = 1E-4; break; case FMT_000_000: scale = 1E-3; break; case FMT_000_00: case FMT_0000_00: scale = 1E-2; break; case FMT_USER: scale = pow (10.0, -1.0*decimals); break; default: /* cannot happen, just plugs a compiler warning */ fprintf (stderr, _("%s(): Unhandled fmt ` %d\n"), __FUNCTION__, fmt); exit (1); } } result = strtod(temp, NULL) * scale; } dprintf(" %s()=%f: fmt=%d, omit_zeros=%d, decimals=%d \n", __FUNCTION__, result, fmt, omit_zeros, decimals); return result; } /* read_double */ /* -------------------------------------------------------------- */ /* Eats all characters up to and including the first one of CR or LF */ static void eat_line(gerb_file_t *fd) { int read; do { read = gerb_fgetc(fd); } while (read != '\n' && read != '\r' && read != EOF); /* Restore new line character for processing */ if (read != EOF) gerb_ungetc(fd); } /* eat_line */ /* -------------------------------------------------------------- */ static char * get_line(gerb_file_t *fd) { int read; gchar *retstring; gchar *tmps=g_strdup(""); read = gerb_fgetc(fd); while (read != '\n' && read != '\r' && read != EOF) { retstring = g_strdup_printf("%s%c", tmps, read); /* since g_strdup_printf allocates memory, we need to free it */ if (tmps) { g_free (tmps); tmps = NULL; } tmps = retstring; read = gerb_fgetc(fd); } /* Restore new line character for processing */ if (read != EOF) gerb_ungetc(fd); return tmps; } /* get_line */ /* -------------------------------------------------------------- */ static int file_check_str(gerb_file_t *fd, const char *str) { char c; for (int i = 0; str[i] != '\0'; i++) { c = gerb_fgetc(fd); if (c == EOF) return -1; if (c != str[i]) { do { /* Restore checked string */ gerb_ungetc(fd); } while (i--); return 0; } } return 1; } /* -------------------------------------------------------------- */ /** Return drill G-code name by code number. */ const char *drill_g_code_name(drill_g_code_t g_code) { switch (g_code) { case DRILL_G_ROUT: return N_("rout mode"); case DRILL_G_LINEARMOVE: return N_("linear mode"); case DRILL_G_CWMOVE: return N_("circular CW mode"); case DRILL_G_CCWMOVE: return N_("circular CCW mode"); case DRILL_G_VARIABLEDWELL: return N_("variable dwell"); case DRILL_G_DRILL: return N_("drill mode"); case DRILL_G_OVERRIDETOOLSPEED: return N_("override tool feed or speed"); case DRILL_G_ROUTCIRCLE: return N_("routed CW circle"); case DRILL_G_ROUTCIRCLECCW: return N_("routed CCW circle"); case DRILL_G_VISTOOL: return N_("select vision tool"); case DRILL_G_VISSINGLEPOINTOFFSET: return N_("single point vision offset"); case DRILL_G_VISMULTIPOINTTRANS: return N_("multipoint vision translation"); case DRILL_G_VISCANCEL: return N_("cancel vision translation or offset"); case DRILL_G_VISCORRHOLEDRILL: return N_("vision corrected single hole drilling"); case DRILL_G_VISAUTOCALIBRATION: return N_("vision system autocalibration"); case DRILL_G_CUTTERCOMPOFF: return N_("cutter compensation off"); case DRILL_G_CUTTERCOMPLEFT: return N_("cutter compensation left"); case DRILL_G_CUTTERCOMPRIGHT: return N_("cutter compensation right"); case DRILL_G_VISSINGLEPOINTOFFSETREL: return N_("single point vision relative offset"); case DRILL_G_VISMULTIPOINTTRANSREL: return N_("multipoint vision relative translation"); case DRILL_G_VISCANCELREL: return N_("cancel vision relative translation or offset"); case DRILL_G_VISCORRHOLEDRILLREL: return N_("vision corrected single hole relative drilling"); case DRILL_G_PACKDIP2: return N_("dual in line package"); case DRILL_G_PACKDIP: return N_("dual in line package"); case DRILL_G_PACK8PINL: return N_("eight pin L package"); case DRILL_G_CIRLE: return N_("canned circle"); case DRILL_G_SLOT: return N_("canned slot"); case DRILL_G_ROUTSLOT: return N_("routed step slot"); case DRILL_G_ABSOLUTE: return N_("absolute input mode"); case DRILL_G_INCREMENTAL: return N_("incremental input mode"); case DRILL_G_ZEROSET: return N_("zero set"); case DRILL_G_UNKNOWN: default: return N_("unknown G-code"); } } /* drill_g_code_name() */ /* -------------------------------------------------------------- */ /** Return drill M-code name by code number. */ const char *drill_m_code_name(drill_m_code_t m_code) { switch (m_code) { case DRILL_M_END: return N_("end of program"); case DRILL_M_PATTERNEND: return N_("pattern end"); case DRILL_M_REPEATPATTERNOFFSET: return N_("repeat pattern offset"); case DRILL_M_STOPOPTIONAL: return N_("stop optional"); case DRILL_M_SANDREND: return N_("step and repeat end"); case DRILL_M_STOPINSPECTION: return N_("stop for inspection"); case DRILL_M_ZAXISROUTEPOSITIONDEPTHCTRL: return N_("Z-axis rout position with depth control"); case DRILL_M_ZAXISROUTEPOSITION: return N_("Z-axis rout position"); case DRILL_M_RETRACTCLAMPING: return N_("retract with clamping"); case DRILL_M_RETRACTNOCLAMPING: return N_("retract without clamping"); case DRILL_M_TOOLTIPCHECK: return N_("tool tip check"); case DRILL_M_PATTERN: return N_("pattern start"); case DRILL_M_ENDREWIND: return N_("end of program with rewind"); case DRILL_M_MESSAGELONG: return N_("long operator message"); case DRILL_M_MESSAGE: return N_("operator message"); case DRILL_M_HEADER: return N_("header start"); case DRILL_M_VISANDRPATTERN: return N_("vision step and repeat pattern start"); case DRILL_M_VISANDRPATTERNREWIND: return N_("vision step and repeat rewind"); case DRILL_M_VISANDRPATTERNOFFSETCOUNTERCTRL: return N_("vision step and repeat offset counter control"); case DRILL_M_REFSCALING: return N_("reference scaling on"); case DRILL_M_REFSCALINGEND: return N_("reference scaling off"); case DRILL_M_PECKDRILLING: return N_("peck drilling on"); case DRILL_M_PECKDRILLINGEND: return N_("peck drilling off"); case DRILL_M_SWAPAXIS: return N_("swap axes"); case DRILL_M_METRIC: return N_("metric measuring mode"); case DRILL_M_IMPERIAL: return N_("inch measuring mode"); case DRILL_M_MIRRORX: return N_("mirror image X-axis"); case DRILL_M_MIRRORY: return N_("mirror image Y-axis"); case DRILL_M_HEADEREND: return N_("header end"); case DRILL_M_CANNEDTEXTX: return N_("canned text along X-axis"); case DRILL_M_CANNEDTEXTY: return N_("canned text along Y-axis"); case DRILL_M_USERDEFPATTERN: return N_("user defined stored pattern"); case DRILL_M_UNKNOWN: default: return N_("unknown M-code"); } } /* drill_m_code_name() */ gerbv-2.7.0/src/gerbv_icon.h0000644000175000017500000003634113421555714015600 0ustar carstencarsten/* XPM */ /** \file gerbv_icon.h \brief Contains the xpm data for the gerbv application icon \ingroup gerbv */ #define USE_NEW_ICON #ifdef USE_NEW_ICON /* This is the new icon */ static char *gerbv_icon_xpm[] = { /* columns rows colors chars-per-pixel */ "48 48 104 2", " c #000000", ". c #050709", "X c #070808", "o c #090A0A", "O c #0E0F10", "+ c #121313", "@ c #151618", "# c #13181C", "$ c #191B1C", "% c #151C23", "& c #191C20", "* c #1E2124", "= c #19232E", "- c #1F2C3A", "; c #232425", ": c #222628", "> c #24292B", ", c #2A2B2C", "< c #292F31", "1 c #22303F", "2 c #2D3335", "3 c #343434", "4 c #3B3B3B", "5 c #273544", "6 c #293746", "7 c #2D3B4A", "8 c #323940", "9 c #333E4B", "0 c #434343", "q c #4B4B4B", "w c #495057", "e c #49525B", "r c #535353", "t c #50575E", "y c #5A5A5A", "u c #4D5966", "i c #515F6E", "p c #56626F", "a c #596067", "s c #5C6671", "d c #5D6B7A", "f c #636363", "g c #61686F", "h c #6B6B6B", "j c #646B72", "k c #616F7E", "l c #62707F", "z c #737373", "x c #7D7D7D", "c c #657382", "v c #697786", "b c #6D7986", "n c #6D7B8A", "m c #717F8E", "M c #74808E", "N c #748392", "B c #798593", "V c #7E8C9B", "C c #848484", "Z c #8A8A8A", "A c #81909F", "S c #949494", "D c #9A9A9A", "F c #8392A1", "G c #8896A5", "H c #8D9BAA", "J c #919DAB", "K c #92A0AE", "L c #94A2B1", "P c #99A6B5", "I c #9AA8B7", "U c #9CAABA", "Y c #A3A3A3", "T c gray67", "R c #A0AEBD", "E c #A2B0BF", "W c #B3B3B3", "Q c gray74", "! c #A4B3C2", "~ c #A8B6C5", "^ c #AAB8C7", "/ c #ADBBCA", "( c #B1BFCE", ") c #B3C0CF", "_ c #B4C2D1", "` c #B8C6D5", "' c #BAC8D7", "] c #BCCAD9", "[ c #C2C2C2", "{ c #CBCBCB", "} c #C1CFDE", "| c #D3D3D3", " . c #DBDBDB", ".. c #C4D3E2", "X. c #C8D6E5", "o. c #CCDAEA", "O. c #D0DEED", "+. c #D2E0EF", "@. c #D2E1F0", "#. c #E3E3E3", "$. c #ECECEC", "%. c #F3F3F3", "&. c #FEFEFE", "*. c None", /* pixels */ "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.r q q q 0 0 *.*.*.*.0 q q q *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.0 f &.#.[ C q q q 0 0 q #. .f q 0 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.0 Y &.&.&.&.&.%.{ D y r C Y .| y q 0 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.r | &.&.[ T %.&.&.&.$.%. .T z q z C r q 0 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.q %.&.&.S ; X , f D .&.&.&.$.%.#.Q C q q 0 0 4 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.q y &.&.&.D { $.D y $ S &.&.&.#.Q [ %.&.&.$.[ C r q 0 4 4 *.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.0 S &.&.T X X o , C Q + .&.0 z %. .T W $.&.&.&.%.#.{ D y 0 0 4 4 *.*.*.*.*.*.*.*.", "*.*.q 0 0 0 q 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 4 0 4 0 Z .%.&. .Y 0 4 *.*.*.*.*.*.*.", "*.*.q &.&.&.&.%.&.&.&.$.$.$.$.$.$.$.&.$.%.&.%.$.&.%.$.&.&.&.&.&.%.0 &.| { $.&.0 4 *.*.*.*.*.*.*.", "*.*.0 &.&.&.&. .&.&.&.| | | | | | | &. .#.$.$.| #.%. . .&.&.$.$.%.4 &.&.&. . .0 *.*.*.*.*.*.*.*.", "*.*.q &.&.&.D C C C C Z Q | { T Q | &.T | $.$. .$.$.Q | %.&.%. .%.4 $.&.&.&.| r q 4 *.*.*.*.*.*.", "*.*.0 &.&.&.$.%.&.&.$.[ Z Q | Q Z [ $.[ Z | $.| $.$.C | %.&.&. .&.4 W &.&.&.D W .h 0 0 *.*.*.*.", "*.*.0 &.&.&.Z C C C C Q ( Z Q | Q Z { .| S { .$.%.C | &.&.&.| &.4 Y %.&.&.y .&.&.| y 0 0 *.*.", "*.*.0 &.&.&.C C C C C C Q Q Z | | { Z #.$.| Z .$.&.C #.&.&.$. .&.4 [ | &.%.q $.&.&.&.&.{ r 0 0 ", "*.*.0 &.&.%.C C C C C C C | C { | .C .#.$.C #.%.&.C $.&.&. .$.&.4 .Q &. .h q z &.&.&.&.&.W 0 ", "*.*.0 &.&.%.C C C C C C C | C | | .C #. .| C .$.$.C %.&.&.| %.&.4 Q { &.T x o #.&.&.&.&.&.$.0 ", "*.*.0 &.&.#.C C C C C C C { C | | { f x q q 0 T | | C .$.$.| &.&.4 T &.&.h 4 f &.&.&.&.&.&.C 4 ", "*.*.0 &.&.#.C C C C C C C | C Q 0 $ @ 0 z #. . .| %.&.4 | &.&.0 + %.&.&.&.&.&.$.0 4 ", "*.*.0 &.%.#.C C C C C C C | r O o i s ) ..( m J j X X Y $. . .| &.4 &.&. .0 z &.&.&.&.&.&.z 4 *.", "*.*.0 &.$.$.C C C C C C C 4 * b V A V A V A V V b * r | .| %.3 &.&.W > &.&.&.&.&.&. .0 4 *.", "*.*.0 &.#.&.x r 0 3 3 , ; 2 _ X...V ..X.] V X...( V w C #. .%.4 | &.h h &.&.&.&.&.&.f 4 *.*.", "*.*.4 &. .&.X # 1 v ] H n ~ X.~ V / +.! V ! * o { | &.3 Q $.4 $.&.&.&.&.&. .0 *.*.*.", "*.*.0 &.[ &. u 1 c / n 1 N ..L n ~ @.^ V ! b o 0 [ &.4 &.| 4 { &.&.&.&.&.r 4 *.*.*.", "*.*.0 &.| &. # c 1 v K n 1 m ( V 5 V @.U d I i j Q &.3 { T 0 h &.&.&.&.{ 0 *.*.*.*.", "*.*.4 %.$.&. = H v U K ~ V E K ~ K ] ( o.K o.1 K T &.4 | z 4 C &.&.&.&.r 4 *.*.*.*.", "*.*.0 %.&.&. - K I L K ' ] U K ` +.E K ] +.] 1 ' C &.3 $.0 + #.&.&.&.[ 4 *.*.*.*.*.", "*.*.0 %.&.&. . 1 K L U ~ ] ] K L o.O.K K } +.P 1 ` + r &.4 $.4 f &.&.&.&.q 4 *.*.*.*.*.", "*.*.4 %.&.%. . 1 E V H L R N K ' o.H H I X.G H 1 ( + r &.3 { , $.&.&.&.W 4 *.*.*.*.*.*.", "*.*.4 &.&.$. - M 1 c o.m 1 k L c 1 k ' V 5 d 1 H C &.3 Z y &.&.&.&.0 3 *.*.*.*.*.*.", "*.*.4 &.&.&. = d 5 n ] m 1 k o.v 1 d L d 5 c 1 M Y &.3 q { &.&.&.T 4 *.*.*.*.*.*.*.", "*.*.4 &.&.&. # N - V +.F 1 n +.F 1 k ' B - i 5 ; . y #.3 4 &.&.&.%.4 4 *.*.*.*.*.*.*.", "*.*.4 %.$.%. p 5 o.O.o.1 X.+.] 1 ! / ' c 5 9 X : $ o + y &.&.&.D 4 *.*.*.*.*.*.*.*.", "*.*.4 &.| [ & 5 - 1 1 1 1 1 1 1 1 5 - 6 i . @ 2 2 2 # X 4 [ %.4 4 *.*.*.*.*.*.*.*.", "*.*.4 &.&.&.o X h % o.@.@.1 @.+.+.7 E O.' ! e X $ < 2 2 2 * o ; ; *.*.*.*.*.*.*.*.*.", "*.*.4 &.&.&.&.&.&.&.&.$.S < P } 1 @.@.@.^ 9 ! _ < y { f o $ , 2 2 2 * X *.*.*.*.*.*.*.", "*.*.4 &.&.&.f o T Z o X t e L _ ..' B % x $.x X @ : 2 2 < ; . *.*.*.*.", "*.*.4 &.&.&.&.&.&.&.&.&.&.&.&. .3 + @ 0 | &.&.%.%.&.%.2 x + O : 2 2 2 : o *.*.*.", "*.*.4 &.&.&.&.&.&.&.&.&.&.&.&.&.&.$.Y h 4 4 f Y . .{ Q [ .#.$.%.3 &.z + . o * 2 2 2 : X *.*.", "*.*.4 &.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.&.%.&.&.&.&.%.%.%.$.4 .4 3 X ; 2 2 @ *.*.", "*.*.0 4 4 4 4 3 4 4 3 4 4 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 Z f 3 *.*.*.*. . @ *.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.3 4 q { &.&.&. .4 *.*.*.*.*.*.*. *.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.3 3 r | &.r 3 *.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.3 4 3 4 *.*.*.*.*.*.*.*.*.*.*.*.*.*.", "*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.2 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*." }; #else /* This is the old icon. To get it back, just rename it. */ static char * gerbv_icon_xpm[] = { "48 48 244 2", " c None", ". c #1F8888", "+ c #000000", "@ c #2CC2C2", "# c #37F2F2", "$ c #000200", "% c #010401", "& c #39FEFE", "* c #040D03", "= c #071505", "- c #081806", "; c #3AFFFF", "> c #030902", ", c #061505", "' c #0B2308", ") c #0F300B", "! c #12380D", "~ c #1D8383", "{ c #2BC0C0", "] c #2AB9B9", "^ c #155E5E", "/ c #051717", "( c #040F03", "_ c #0C2709", ": c #174811", "< c #236C1A", "[ c #2C8721", "} c #309424", "| c #020802", "1 c #081A06", "2 c #12370D", "3 c #206318", "4 c #2D8C22", "5 c #35A328", "6 c #37AA29", "7 c #39AF2B", "8 c #38AD2A", "9 c #339D26", "0 c #1D5A16", "a c #051204", "b c #0A1F07", "c c #154310", "d c #26741C", "e c #329B26", "f c #38AC2A", "g c #1D5916", "h c #0A2008", "i c #174611", "j c #27781D", "k c #339F27", "l c #051104", "m c #091E07", "n c #143F0F", "o c #236D1A", "p c #309624", "q c #37A929", "r c #38AE2A", "s c #020601", "t c #1C5715", "u c #297F1F", "v c #329925", "w c #35A428", "x c #030A02", "y c #133A0E", "z c #1D5B16", "A c #26761D", "B c #2B8520", "C c #39FCFC", "D c #061405", "E c #0D2809", "F c #15400F", "G c #1C5615", "H c #1F6117", "I c #35EAEA", "J c #061204", "K c #133D0F", "L c #1A5114", "M c #2ECBCB", "N c #081B06", "O c #10320C", "P c #1B5314", "Q c #236E1B", "R c #287B1E", "S c #37F4F4", "T c #29B6B6", "U c #135656", "V c #0E2B0A", "W c #194F13", "X c #2F9123", "Y c #000202", "Z c #133B0E", "` c #226919", " . c #36A628", ".. c #000101", "+. c #0A1E07", "@. c #164410", "#. c #216819", "$. c #2F9023", "%. c #37AB2A", "&. c #329C26", "*. c #184912", "=. c #2F9224", "-. c #2E8E23", ";. c #010501", ">. c #040E03", ",. c #0D2A0A", "'. c #12390E", "). c #154210", "!. c #1C5815", "~. c #000100", "{. c #030B05", "]. c #020701", "^. c #051004", "/. c #050F03", "(. c #010505", "_. c #DD1313", ":. c #EA1414", "<. c #E41313", "[. c #DF1313", "}. c #B80F0F", "|. c #460606", "1. c #9F0D0D", "2. c #FF1616", "3. c #F81515", "4. c #E21313", "5. c #DE1313", "6. c #A10E0E", "7. c #B10F0F", "8. c #F91515", "9. c #B51010", "0. c #B91010", "a. c #F01414", "b. c #F11515", "c. c #E11313", "d. c #EE1414", "e. c #C81111", "f. c #F31515", "g. c #ED1414", "h. c #D11212", "i. c #B11010", "j. c #3D0B0B", "k. c #D21313", "l. c #D91313", "m. c #A70F0F", "n. c #E91414", "o. c #F71515", "p. c #F61515", "q. c #A91010", "r. c #090909", "s. c #B81010", "t. c #DA1313", "u. c #DB1313", "v. c #9F0F0F", "w. c #EF1515", "x. c #820D0D", "y. c #9F1010", "z. c #0A0A0A", "A. c #C11212", "B. c #E51414", "C. c #B41010", "D. c #840F0F", "E. c #F51515", "F. c #810D0D", "G. c #950F0F", "H. c #E71414", "I. c #D61313", "J. c #901010", "K. c #C81313", "L. c #7B1111", "M. c #DE1414", "N. c #A01010", "O. c #EC1414", "P. c #F11414", "Q. c #991010", "R. c #E41414", "S. c #931010", "T. c #DD1414", "U. c #C41212", "V. c #0B0B0B", "W. c #8A1010", "X. c #0E0E0E", "Y. c #7A1111", "Z. c #450C0C", "`. c #490C0C", " + c #880E0E", ".+ c #400C0C", "++ c #E31414", "@+ c #E11414", "#+ c #821111", "$+ c #7F1111", "%+ c #801111", "&+ c #831111", "*+ c #851111", "=+ c #3E0E0E", "-+ c #D71414", ";+ c #0C0C0C", ">+ c #8E1010", ",+ c #791111", "'+ c #BD1313", ")+ c #BF1313", "!+ c #D31414", "~+ c #6C0F0F", "{+ c #AB1111", "]+ c #EE1515", "^+ c #941212", "/+ c #0F0F0F", "(+ c #0D0D0D", "_+ c #611010", ":+ c #3D0E0E", "<+ c #D51414", "[+ c #881111", "}+ c #370E0E", "|+ c #B31212", "1+ c #A51111", "2+ c #E01414", "3+ c #A51212", "4+ c #861111", "5+ c #380E0E", "6+ c #891111", "7+ c #D61414", "8+ c #8B1111", "9+ c #AC1010", "0+ c #390D0D", "a+ c #D51313", "b+ c #840E0E", "c+ c #AF1212", "d+ c #871010", "e+ c #3A0D0D", "f+ c #5C1010", "g+ c #B01313", "h+ c #C81414", "i+ c #C91414", "j+ c #CC1414", "k+ c #400E0E", "l+ c #D81414", "m+ c #6F0F0F", "n+ c #E21414", "o+ c #AF1111", "p+ c #A11111", "q+ c #CB1313", "r+ c #B51212", "s+ c #610F0F", "t+ c #9A1010", "u+ c #A41111", " ", " ", " ", " ", " . ", " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @ + + + + + ", " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + ", " + + + + + + + + + + + + + + $ % % % % $ + + + + + + + + + & + + + + + + ", " + + + + + + + + + + + + $ % * = - - = * % $ + + + + + + + ; + + + + + + ", " + + + + + + + + + + + $ > , ' ) ! ! ) ' , > $ + + + + + + ; + + + + + + + ", " ~ { # & ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; & # ] ^ / ", " + + + + + + + + + + + $ ( _ : < [ } } [ < : _ ( $ + + + + + ; + + + + + + + ", " + + + + + + + + + + + | 1 2 3 4 5 6 6 5 4 3 2 1 | + + + + 7 ; 7 7 8 9 0 a + + ", " + + + + + + + + + + + > b c d e f 7 7 7 7 7 7 7 7 7 7 7 7 7 ; 7 7 8 9 g a + + ", " + + + + + + + + + + + > h i j k f 7 7 7 7 7 7 7 7 7 7 7 7 7 ; 7 7 8 9 g l + + ", " + + + + + + + + + + + > m n o p q r 7 7 7 7 7 7 7 7 7 7 7 7 ; + + + + + + + + ", " + + + + + + + + + + + s = ) t u v w w v u t ) = s + + + + + ; + + + + + + + + ", " + + + + + + + + + + + + x b y z A B B A z y b x + + + + + + C + + + + + + + + ", " + + # + ; + ; + ; + + + % D E F G H H G F E D % + + + + + + I + + + + + + + + ", " + + + + + + + + + + + + % J _ K L z z L K _ J % + + + + + + M + + + + + + + + ", " + + # + ; + ; + ; + + + x N O P Q R R Q P O N x + + + + + + ] S ; & # T U + + ", " + + + + + + + + + + + % l V W A X 9 9 X A W V l % + + Y + + + + + + + + + + + ", " + + + + + + ; + ; + + | N Z ` X .f f .X ` Z N | + + ..+ + + + + + + + + + + ", " + + + + + + + + + + + | +.@.A 9 f 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 + + + + + + ", " + + + + + + ; + ; + + | +.@.A 9 f 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 + + + + + ", " + + + + + + + + + + + | N Z #.$. .%.%.r r 8 8 8 8 8 8 8 8 8 8 8 8 f &.+ + + + ", " + + + + + # + # + + % l _ *.< B =.=.B < *._ l % + + + + + + 9 9 &.-.+ + + + ", " + + + + + + + + + + + ;.>.1 ,.'.).).'.,.1 >.;.+ + + + + + + !.!.!.L + + + ", " + + + + + + + + + + + ~.$ % s {.].s % $ ~.+ + + + + + + + + ^.^./.+ + + ", " + + + + + + + + + + + + + (...+ + + + + + + + + + + + + + + + + + + + ", " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ", " + + + + + + + + + + + + + + + + + + + + + + + + + + + + ", " _.:.<.[.}.|. 1.2.2. ", " 2.2.3.4.5.2.6. 7.2.2. ", " 8.2.9. 0.2.2. ", " a.2.b. c.d.d.e. <.f. d.g.h.i.2.2.j.k.l.m. a.n. o. ", " p.2.q. r. 2.b.s.t.2.u. d.2.8.2.2.2.c.v.2.2.w.2.2.2.x. 2.2.5. 3. ", " f.2.y.z.z. A.B.C.2.o.D. 2.E.F. B.2.2.t.G.H.I.J.2.2.K.L.M.2.B. N.2.O. b.c. ", " P.2.Q.z.z. R.2.R.2.2.2.2.2.2.2.S. T.2.U.V.V.V.V.W.2.2.X.X.Y.2.2.V.z.2.2.Z.`.2. + ", " 5.2.2..+z. ++2.M.2.@+#+$+%+&+*+=+V.-+2.W.;+;+V.z.>+2.2.X.X.,+2.2.;+V.k.2.'+)+f. ", " w.2.!+~+ M.2.{+2.]+^+/+X.(+_+:+;+<+2.[+;+V.z. Q.2.2.}+(+K.2.|+;+V.1+2.2.2+3+V. ", " 2.2.2.2.2.2.4+5+2.2.2.2.2.2.6+(+7+2.8+;+z. 9+2.2.2.2.2.2.0+;+z.r.a+2.2.;+;+ ", " b+c+!+k.k.d+e+(+f+g+h+i+j+4+k+ |+l+m+V. n+o+p+q+r+s+V.V.r. t+I.u+V.z. ", " V.V.V.V.;+;+;+;+;+V.V.V. z.V.V.V.z. z. ", " ", " ", " ", " "}; #endif gerbv-2.7.0/src/dynload.h0000644000175000017500000000057713421555714015117 0ustar carstencarsten/* dynload.h */ /* Original Copyright (c) 1999 Alexander Shendi */ /* Modifications for NT and dl_* interface: D. Souflis */ /** \file dynload.h \brief Header info for the dynamic loader functions for TinyScheme \ingroup gerbv */ #ifndef DYNLOAD_H #define DYNLOAD_H #include "scheme-private.h" SCHEME_EXPORT pointer scm_load_ext(scheme *sc, pointer arglist); #endif gerbv-2.7.0/src/table.h0000644000175000017500000000122113421555714014537 0ustar carstencarsten/** \file table.h \brief Header info for GTK widgets table functions. \ingroup gerbv */ #ifndef TABLE_H #define TABLE_H struct table { GtkWidget *widget; /* All table */ GtkListStore *list_store; GType *types; /* Column types array */ GtkCellRenderer **renderers; /* Column renderers pointers array */ gint column_nums; /* Column number */ }; struct table *table_new_with_columns(gint col_nums, ...); void table_destroy(struct table *table); void table_set_sortable(struct table *table); void table_set_column_align(struct table *table, gint column_num, gfloat align); int table_add_row(struct table *table, ...); #endif /* TABLE_H */ gerbv-2.7.0/src/gerb_stats.c0000644000175000017500000003777713421555714015631 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * gerbv_stats.c -- a part of gerbv. * * Copyright (C) Stuart Brorson (sdb@cloud9.net) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_stats.c \brief Statistics generating functions for RS274X files \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include "common.h" #include "gerb_stats.h" #define dprintf if(DEBUG) printf /* ------------------------------------------------------- */ /** Allocates a new gerbv_stats structure @return gerbv_stats pointer on success, NULL on ERROR */ gerbv_stats_t * gerbv_stats_new(void) { gerbv_stats_t *stats; gerbv_error_list_t *error_list; gerbv_aperture_list_t *aperture_list; gerbv_aperture_list_t *D_code_list; /* Malloc space for new stats struct. Return NULL if error. */ if (NULL == (stats = g_new0(gerbv_stats_t, 1))) { return NULL; } /* Initialize error list */ error_list = gerbv_stats_new_error_list(); if (error_list == NULL) GERB_FATAL_ERROR("malloc error_list failed in %s()", __FUNCTION__); stats->error_list = (gerbv_error_list_t *) error_list; /* Initialize aperture list */ aperture_list = gerbv_stats_new_aperture_list(); if (aperture_list == NULL) GERB_FATAL_ERROR("malloc aperture_list failed in %s()", __FUNCTION__); stats->aperture_list = (gerbv_aperture_list_t *) aperture_list; /* Initialize D codes list */ D_code_list = gerbv_stats_new_aperture_list(); if (D_code_list == NULL) GERB_FATAL_ERROR("malloc D_code_list failed in %s()", __FUNCTION__); stats->D_code_list = (gerbv_aperture_list_t *) D_code_list; return stats; } void gerbv_destroy_error_list (gerbv_error_list_t *errorList) { gerbv_error_list_t *nextError=errorList,*tempError; while (nextError) { tempError = nextError->next; g_free (nextError->error_text); g_free (nextError); nextError = tempError; } } void gerbv_destroy_aperture_list (gerbv_aperture_list_t *apertureList) { gerbv_aperture_list_t *nextAperture=apertureList,*tempAperture; while (nextAperture) { tempAperture = nextAperture->next; g_free (nextAperture); nextAperture = tempAperture; } } /* ------------------------------------------------------- */ void gerbv_stats_destroy(gerbv_stats_t *stats) { if (stats == NULL) return; gerbv_destroy_error_list (stats->error_list); gerbv_destroy_aperture_list (stats->aperture_list); gerbv_destroy_aperture_list (stats->D_code_list); g_free (stats); } /* ------------------------------------------------------- */ /*! This fcn is called with a two gerbv_stats_t structs: * accum_stats and input_stats. Accum_stats holds * a list of stats accumulated for * all layers. This will be reported in the report window. * Input_stats holds a list of the stats for one particular layer * to be added to the accumulated list. */ void gerbv_stats_add_layer(gerbv_stats_t *accum_stats, gerbv_stats_t *input_stats, int this_layer) { dprintf("---> Entering gerbv_stats_add_layer ... \n"); gerbv_error_list_t *error; gerbv_aperture_list_t *aperture; gerbv_aperture_list_t *D_code; accum_stats->layer_count++; accum_stats->G0 += input_stats->G0; accum_stats->G1 += input_stats->G1; accum_stats->G2 += input_stats->G2; accum_stats->G3 += input_stats->G3; accum_stats->G4 += input_stats->G4; accum_stats->G10 += input_stats->G10; accum_stats->G11 += input_stats->G11; accum_stats->G12 += input_stats->G12; accum_stats->G36 += input_stats->G36; accum_stats->G37 += input_stats->G37; accum_stats->G54 += input_stats->G54; accum_stats->G55 += input_stats->G55; accum_stats->G70 += input_stats->G70; accum_stats->G71 += input_stats->G71; accum_stats->G74 += input_stats->G74; accum_stats->G75 += input_stats->G75; accum_stats->G90 += input_stats->G90; accum_stats->G91 += input_stats->G91; accum_stats->G_unknown += input_stats->G_unknown; accum_stats->D1 += input_stats->D1; accum_stats->D2 += input_stats->D2; accum_stats->D3 += input_stats->D3; /* Create list of user-defined D codes from aperture list */ for (D_code = input_stats->D_code_list; D_code != NULL; D_code = D_code->next) { if (D_code->number != -1) { dprintf(" .... In gerbv_stats_add_layer, D code section, adding number = %d to accum_stats D list ...\n", D_code->number); gerbv_stats_add_to_D_list(accum_stats->D_code_list, D_code->number); dprintf(" .... In gerbv_stats_add_layer, D code section, calling increment_D_count with count %d ...\n", D_code->count); gerbv_stats_increment_D_list_count(accum_stats->D_code_list, D_code->number, D_code->count, accum_stats->error_list); } } accum_stats->D_unknown += input_stats->D_unknown; accum_stats->D_error += input_stats->D_error; accum_stats->M0 += input_stats->M0; accum_stats->M1 += input_stats->M1; accum_stats->M2 += input_stats->M2; accum_stats->M_unknown += input_stats->M_unknown; accum_stats->X += input_stats->X; accum_stats->Y += input_stats->Y; accum_stats->I += input_stats->I; accum_stats->J += input_stats->J; accum_stats->star += input_stats->star; accum_stats->unknown += input_stats->unknown; /* ==== Now deal with the error list ==== */ for (error = input_stats->error_list; error != NULL; error = error->next) { if (error->error_text != NULL) { gerbv_stats_add_error(accum_stats->error_list, this_layer, error->error_text, error->type); } } /* ==== Now deal with the aperture list ==== */ for (aperture = input_stats->aperture_list; aperture != NULL; aperture = aperture->next) { if (aperture->number != -1) { gerbv_stats_add_aperture(accum_stats->aperture_list, this_layer, aperture->number, aperture->type, aperture->parameter); } } dprintf("<---- .... Leaving gerbv_stats_add_layer. \n"); return; } /* ------------------------------------------------------- */ gerbv_error_list_t * gerbv_stats_new_error_list() { gerbv_error_list_t *error_list; /* Malloc space for new error_list struct. Return NULL if error. */ if (NULL == (error_list = g_new(gerbv_error_list_t, 1))) { return NULL; } error_list->layer = -1; error_list->error_text = NULL; error_list->next = NULL; return error_list; } /* ------------------------------------------------------- */ void gerbv_stats_printf(gerbv_error_list_t *list, gerbv_message_type_t type, int layer, const char *text, ...) { gchar *str; va_list args; va_start(args, text); str = g_strdup_vprintf(text, args); va_end(args); gerbv_stats_add_error(list, layer, str, type); g_free(str); } /** Escape special ASCII char ('\n', '\0'). Return C string with escaped * special char or original char in integer. Use gerbv_escape_char(char) macro * instead of this function. */ /* ------------------------------------------------------- */ int gerbv_escape_char_return_int(char c) { int i = 0; char *ec = (char *)&i; ec[0] = '\\'; switch (c) { case '\0': ec[1] = '0'; break; case '\a': ec[1] = 'a'; break; case '\b': ec[1] = 'b'; break; case '\f': ec[1] = 'f'; break; case '\n': ec[1] = 'n'; break; case '\r': ec[1] = 'r'; break; case '\t': ec[1] = 't'; break; case '\v': ec[1] = 'v'; break; case '\\': ec[1] = '\\'; break; case '"': ec[1] = '"'; break; default: ec[0] = c; } return i; } /* ------------------------------------------------------- */ void gerbv_stats_add_error(gerbv_error_list_t *error_list_in, int layer, const char *error_text, gerbv_message_type_t type) { gerbv_error_list_t *error_list_new; gerbv_error_list_t *error_last = NULL; gerbv_error_list_t *error; /* Replace embedded error messages */ switch (type) { case GERBV_MESSAGE_FATAL: GERB_FATAL_ERROR("%s",error_text); break; case GERBV_MESSAGE_ERROR: GERB_COMPILE_ERROR("%s",error_text); break; case GERBV_MESSAGE_WARNING: GERB_COMPILE_WARNING("%s",error_text); break; case GERBV_MESSAGE_NOTE: break; } /* First handle case where this is the first list element */ if (error_list_in->error_text == NULL) { error_list_in->layer = layer; error_list_in->error_text = g_strdup_printf("%s", error_text); error_list_in->type = type; error_list_in->next = NULL; return; } /* Next check to see if this error is already in the list */ for(error = error_list_in; error != NULL; error = error->next) { if ((strcmp(error->error_text, error_text) == 0) && (error->layer == layer) ) { return; /* This error text is already in the error list */ } error_last = error; /* point to last element in error list */ } /* This error text is unique. Therefore, add it to the list */ /* Now malloc space for new error list element */ if (NULL == (error_list_new = g_new(gerbv_error_list_t, 1))) { GERB_FATAL_ERROR("malloc error_list failed in %s()", __FUNCTION__); } /* Set member elements */ error_list_new->layer = layer; error_list_new->error_text = g_strdup_printf("%s", error_text); error_list_new->type = type; error_list_new->next = NULL; error_last->next = error_list_new; return; } /* ------------------------------------------------------- */ gerbv_aperture_list_t * gerbv_stats_new_aperture_list() { gerbv_aperture_list_t *aperture_list; int i; dprintf("Mallocing new gerb aperture list\n"); /* Malloc space for new aperture_list struct. Return NULL if error. */ if (NULL == (aperture_list = g_new(gerbv_aperture_list_t, 1))) { dprintf("malloc new gerb aperture list failed in %s()\n", __FUNCTION__); return NULL; } dprintf(" Placing values in certain structs.\n"); aperture_list->number = -1; aperture_list->count = 0; aperture_list->type = 0; for (i = 0; i<5; i++) { aperture_list->parameter[i] = 0.0; } aperture_list->next = NULL; return aperture_list; } /* ------------------------------------------------------- */ void gerbv_stats_add_aperture(gerbv_aperture_list_t *aperture_list_in, int layer, int number, gerbv_aperture_type_t type, double parameter[5]) { gerbv_aperture_list_t *aperture_list_new; gerbv_aperture_list_t *aperture_last = NULL; gerbv_aperture_list_t *aperture; int i; dprintf(" ---> Entering gerbv_stats_add_aperture ....\n"); /* First handle case where this is the first list element */ if (aperture_list_in->number == -1) { dprintf(" .... Adding first aperture to aperture list ... \n"); dprintf(" .... Aperture type = %d ... \n", type); aperture_list_in->number = number; aperture_list_in->type = type; aperture_list_in->layer = layer; for(i=0; i<5; i++) { aperture_list_in->parameter[i] = parameter[i]; } aperture_list_in->next = NULL; dprintf(" <--- .... Leaving gerbv_stats_add_aperture.\n"); return; } /* Next check to see if this aperture is already in the list */ for(aperture = aperture_list_in; aperture != NULL; aperture = aperture->next) { if ((aperture->number == number) && (aperture->layer == layer) ) { dprintf(" .... This aperture is already in the list ... \n"); dprintf(" <--- .... Leaving gerbv_stats_add_aperture.\n"); return; } aperture_last = aperture; /* point to last element in list */ } /* This aperture number is unique. Therefore, add it to the list */ dprintf(" .... Adding another aperture to list ... \n"); dprintf(" .... Aperture type = %d ... \n", type); /* Now malloc space for new aperture list element */ if (NULL == (aperture_list_new = g_new(gerbv_aperture_list_t, 1))) { GERB_FATAL_ERROR("malloc aperture_list failed in %s()", __FUNCTION__); } /* Set member elements */ aperture_list_new->layer = layer; aperture_list_new->number = number; aperture_list_new->type = type; aperture_list_new->next = NULL; for(i=0; i<5; i++) { aperture_list_new->parameter[i] = parameter[i]; } aperture_last->next = aperture_list_new; dprintf(" <--- .... Leaving gerbv_stats_add_aperture.\n"); return; } /* ------------------------------------------------------- */ void gerbv_stats_add_to_D_list(gerbv_aperture_list_t *D_list_in, int number) { gerbv_aperture_list_t *D_list; gerbv_aperture_list_t *D_list_last=NULL; gerbv_aperture_list_t *D_list_new; dprintf(" ----> Entering add_to_D_list, numbr = %d\n", number); /* First handle case where this is the first list element */ if (D_list_in->number == -1) { dprintf(" .... Adding first D code to D code list ... \n"); dprintf(" .... Aperture number = %d ... \n", number); D_list_in->number = number; D_list_in->count = 0; D_list_in->next = NULL; dprintf(" <--- .... Leaving add_to_D_list.\n"); return; } /* Look to see if this is already in list */ for(D_list = D_list_in; D_list != NULL; D_list = D_list->next) { if (D_list->number == number) { dprintf(" .... Found in D list .... \n"); dprintf(" <--- .... Leaving add_to_D_list.\n"); return; } D_list_last = D_list; /* point to last element in list */ } /* This aperture number is unique. Therefore, add it to the list */ dprintf(" .... Adding another D code to D code list ... \n"); /* Malloc space for new aperture list element */ if (NULL == (D_list_new = g_new(gerbv_aperture_list_t, 1))) { GERB_FATAL_ERROR("malloc D_list failed in %s()", __FUNCTION__); } /* Set member elements */ D_list_new->number = number; D_list_new->count = 0; D_list_new->next = NULL; D_list_last->next = D_list_new; dprintf(" <--- .... Leaving add_to_D_list.\n"); return; } /* ------------------------------------------------------- */ int gerbv_stats_increment_D_list_count(gerbv_aperture_list_t *D_list_in, int number, int count, gerbv_error_list_t *error) { gerbv_aperture_list_t *D_list; dprintf(" Entering inc_D_list_count, code = D%d, input count to add = %d\n", number, count); /* Find D code in list and increment it */ for(D_list = D_list_in; D_list != NULL; D_list = D_list->next) { if (D_list->number == number) { dprintf(" old count = %d\n", D_list->count); D_list->count += count; /* Add to this aperture count, then return */ dprintf(" updated count = %d\n", D_list->count); return 0; /* Return 0 for success */ } } /* This D number is not defined. Therefore, flag error */ dprintf(" .... Didn't find this D code in defined list .... \n"); dprintf(" <--- .... Leaving inc_D_list_count.\n"); gerbv_stats_printf(error, GERBV_MESSAGE_ERROR, -1, _("Undefined aperture number called out in D code")); return -1; /* Return -1 for failure */ } gerbv-2.7.0/src/gerbv.h0000644000175000017500000011674313421555714014575 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of Gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ //! \example example1.c //! \example example2.c //! \example example3.c //! \example example4.c //! \example example5.c //! \example example6.c //! \defgroup gerbv Gerbv //! @{ Gerbv program @} //! \defgroup libgerbv libgerbv //! @{ Gerber library @} /** \file gerbv.h \brief The main header file for the libgerbv library \ingroup libgerbv */ /** \mainpage Gerbv/libgerbv Index Page \section intro_sec Introduction Gerbv is a program which can display, edit, export, and do other manipulation of file formats used in PCB design (RS274X, Excellon drill, and pick-and-place). The core library (libgerbv) is available as a separate library, allowing other software to easily incorporate advanced Gerber functionality. This code documentation is mainly intended to help explain the libgerbv API to developers wishing to use libgerbv in his/her own projects. The easiest way to learn to use libgerbv is by reading through and compiling the example source files (click on "Examples" in the navigation tree in the left pane, or look in the doc/example-code/ directory in CVS). For help with using the standalone Gerbv software, please refer to the man page (using the command "man gerbv") or go to the Gerbv homepage for documentation (http://gerbv.geda-project.org). */ #ifndef __GERBV_H__ #define __GERBV_H__ #if defined(__cplusplus) extern "C" { #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #ifndef RENDER_USING_GDK # include #endif #define APERTURE_MIN 10 #define APERTURE_MAX 9999 /* * Maximum number of aperture parameters is set by the outline aperture * macro. There (p. 28) is defined up to 50 points in polygon. * So 50 points with x and y plus two for holding extra data gives... */ #define APERTURE_PARAMETERS_MAX 102 #define GERBV_SCALE_MIN 10 #define GERBV_SCALE_MAX 3000 #define MAX_ERRMSGLEN 25 #define MAX_COORDLEN 28 #define MAX_DISTLEN 180 #define MAX_STATUSMSGLEN (MAX_ERRMSGLEN+MAX_COORDLEN+MAX_DISTLEN) /* * Files only have a limited precision in their data, so when interpreting * layer rotations or linear size that have been read from a project file, we * have to tolerate a certain amount of error. */ #define GERBV_PRECISION_ANGLE_RAD 1e-6 #define GERBV_PRECISION_LINEAR_INCH 1e-6 /* Macros to convert between unscaled gerber coordinates and other units */ /* XXX NOTE: Currently unscaled units are assumed as inch, this is not XXX necessarily true for all files */ #define COORD2INS(c) (c) #define COORD2MILS(c) ((c)*1000.0) #define COORD2MMS(c) ((c)*25.4) #define DEG2RAD(d) ((d)*M_PI/180.0) #define RAD2DEG(r) ((r)*180.0*M_1_PI) #define GERB_FATAL_ERROR(...) g_log(NULL, G_LOG_LEVEL_ERROR, __VA_ARGS__) #define GERB_COMPILE_ERROR(...) g_log(NULL, G_LOG_LEVEL_CRITICAL, __VA_ARGS__) #define GERB_COMPILE_WARNING(...) g_log(NULL, G_LOG_LEVEL_WARNING, __VA_ARGS__) #define GERB_MESSAGE(...) g_log(NULL, G_LOG_LEVEL_MESSAGE, __VA_ARGS__) /*! The aperture macro commands */ typedef enum {GERBV_OPCODE_NOP, /*!< no operation */ GERBV_OPCODE_PUSH, /*!< push the instruction onto the stack */ GERBV_OPCODE_PPUSH, /*!< push parameter onto stack */ GERBV_OPCODE_PPOP, /*!< pop parameter from stack */ GERBV_OPCODE_ADD, /*!< mathmatical add operation */ GERBV_OPCODE_SUB, /*!< mathmatical subtract operation */ GERBV_OPCODE_MUL, /*!< mathmatical multiply operation */ GERBV_OPCODE_DIV, /*!< mathmatical divide operation */ GERBV_OPCODE_PRIM /*!< draw macro primative */ } gerbv_opcodes_t; /*! The different message types used in libgerbv */ typedef enum {GERBV_MESSAGE_FATAL, /*!< processing cannot continue */ GERBV_MESSAGE_ERROR, /*!< something went wrong, but processing can still continue */ GERBV_MESSAGE_WARNING, /*!< something was encountered that may provide the wrong output */ GERBV_MESSAGE_NOTE /*!< an irregularity was encountered, but needs no intervention */ } gerbv_message_type_t; /*! The different aperture types available. * Please keep these in sync with the aperture names defined in * gerbv_aperture_type_name() in gerbv.c */ typedef enum { GERBV_APTYPE_NONE, /*!< no aperture used */ GERBV_APTYPE_CIRCLE, /*!< a round aperture */ GERBV_APTYPE_RECTANGLE, /*!< a rectangular aperture */ GERBV_APTYPE_OVAL, /*!< an ovular (obround) aperture */ GERBV_APTYPE_POLYGON, /*!< a polygon aperture */ GERBV_APTYPE_MACRO, /*!< a RS274X macro */ GERBV_APTYPE_MACRO_CIRCLE, /*!< a RS274X circle macro */ GERBV_APTYPE_MACRO_OUTLINE, /*!< a RS274X outline macro */ GERBV_APTYPE_MACRO_POLYGON, /*!< a RS274X polygon macro */ GERBV_APTYPE_MACRO_MOIRE, /*!< a RS274X moire macro */ GERBV_APTYPE_MACRO_THERMAL, /*!< a RS274X thermal macro */ GERBV_APTYPE_MACRO_LINE20, /*!< a RS274X vector line (code 20) macro */ GERBV_APTYPE_MACRO_LINE21, /*!< a RS274X centered line (code 21) macro */ GERBV_APTYPE_MACRO_LINE22 /*!< a RS274X lower left line (code 22) macro */ } gerbv_aperture_type_t; const char *gerbv_aperture_type_name(gerbv_aperture_type_t type); /*! The current state of the aperture drawing tool */ typedef enum {GERBV_APERTURE_STATE_OFF, /*!< tool drawing is off, and nothing will be drawn */ GERBV_APERTURE_STATE_ON, /*!< tool drawing is on, and something will be drawn */ GERBV_APERTURE_STATE_FLASH /*!< tool is flashing, and will draw a single aperture */ } gerbv_aperture_state_t; /*! The circle aperture macro parameter indexes */ typedef enum { CIRCLE_EXPOSURE, CIRCLE_DIAMETER, CIRCLE_CENTER_X, CIRCLE_CENTER_Y, } gerbv_aptype_macro_circle_index_t; typedef enum { OUTLINE_EXPOSURE, OUTLINE_NUMBER_OF_POINTS, OUTLINE_FIRST_X, /* x0 */ OUTLINE_FIRST_Y, /* y0 */ /* x1, y1, x2, y2, ..., rotation */ OUTLINE_ROTATION, /* Rotation index is correct if outline has no point except first */ } gerbv_aptype_macro_outline_index_t; /* Point number is from 0 (first) to (including) OUTLINE_NUMBER_OF_POINTS */ #define OUTLINE_X_IDX_OF_POINT(number) (2*(number) + OUTLINE_FIRST_X) #define OUTLINE_Y_IDX_OF_POINT(number) (2*(number) + OUTLINE_FIRST_Y) #define OUTLINE_ROTATION_IDX(param_array) \ ((int)param_array[OUTLINE_NUMBER_OF_POINTS]*2 + \ OUTLINE_ROTATION) typedef enum { POLYGON_EXPOSURE, POLYGON_NUMBER_OF_POINTS, POLYGON_CENTER_X, POLYGON_CENTER_Y, POLYGON_DIAMETER, POLYGON_ROTATION, } gerbv_aptype_macro_polygon_index_t; typedef enum { MOIRE_CENTER_X, MOIRE_CENTER_Y, MOIRE_OUTSIDE_DIAMETER, MOIRE_CIRCLE_THICKNESS, MOIRE_GAP_WIDTH, MOIRE_NUMBER_OF_CIRCLES, MOIRE_CROSSHAIR_THICKNESS, MOIRE_CROSSHAIR_LENGTH, MOIRE_ROTATION, } gerbv_aptype_macro_moire_index_t; typedef enum { THERMAL_CENTER_X, THERMAL_CENTER_Y, THERMAL_OUTSIDE_DIAMETER, THERMAL_INSIDE_DIAMETER, THERMAL_CROSSHAIR_THICKNESS, THERMAL_ROTATION, } gerbv_aptype_macro_thermal_index_t; /*! The vector line aperture macro parameter indexes */ typedef enum { LINE20_EXPOSURE, LINE20_LINE_WIDTH, LINE20_WIDTH = LINE20_LINE_WIDTH, /* Unification alias */ LINE20_START_X, LINE20_START_Y, LINE20_END_X, LINE20_END_Y, LINE20_ROTATION, } gerbv_aptype_macro_line20_index_t; /*! The centered line aperture macro parameter indexes */ typedef enum { LINE21_EXPOSURE, LINE21_WIDTH, LINE21_HEIGHT, LINE21_CENTER_X, LINE21_CENTER_Y, LINE21_ROTATION, } gerbv_aptype_macro_line21_index_t; /*! The lower left line aperture macro parameter indexes */ typedef enum { LINE22_EXPOSURE, LINE22_WIDTH, LINE22_HEIGHT, LINE22_LOWER_LEFT_X, LINE22_LOWER_LEFT_Y, LINE22_ROTATION, } gerbv_aptype_macro_line22_index_t; /*! The current unit used */ typedef enum {GERBV_UNIT_INCH, /*!< inches */ GERBV_UNIT_MM, /*!< mm */ GERBV_UNIT_UNSPECIFIED /*!< use default units */ } gerbv_unit_t; /*! The different drawing polarities available */ typedef enum {GERBV_POLARITY_POSITIVE, /*!< draw "positive", using the current layer's polarity */ GERBV_POLARITY_NEGATIVE, /*!< draw "negative", reversing the current layer's polarity */ GERBV_POLARITY_DARK, /*!< add to the current rendering */ GERBV_POLARITY_CLEAR /*!< subtract from the current rendering */ } gerbv_polarity_t; /*! The decimal point parsing style used */ typedef enum {GERBV_OMIT_ZEROS_LEADING, /*!< omit extra zeros before the decimal point */ GERBV_OMIT_ZEROS_TRAILING, /*!< omit extra zeros after the decimal point */ GERBV_OMIT_ZEROS_EXPLICIT, /*!< explicitly specify how many decimal places are used */ GERBV_OMIT_ZEROS_UNSPECIFIED /*!< use the default parsing style */ } gerbv_omit_zeros_t; /*! The coordinate system used */ typedef enum {GERBV_COORDINATE_ABSOLUTE, /*!< all coordinates are absolute from a common origin */ GERBV_COORDINATE_INCREMENTAL /*!< all coordinates are relative to the previous coordinate */ } gerbv_coordinate_t; /*! The interpolation methods available. * Please keep these in sync with the interpolation names defined in * gerbv_interpolation_name() in gerbv.c */ typedef enum {GERBV_INTERPOLATION_LINEARx1, /*!< draw a line */ GERBV_INTERPOLATION_LINEARx10, /*!< draw a line */ GERBV_INTERPOLATION_LINEARx01, /*!< draw a line */ GERBV_INTERPOLATION_LINEARx001, /*!< draw a line */ GERBV_INTERPOLATION_CW_CIRCULAR, /*!< draw an arc in the clockwise direction */ GERBV_INTERPOLATION_CCW_CIRCULAR, /*!< draw an arc in the counter-clockwise direction */ GERBV_INTERPOLATION_PAREA_START, /*!< start a polygon draw */ GERBV_INTERPOLATION_PAREA_END, /*!< end a polygon draw */ GERBV_INTERPOLATION_DELETED /*!< the net has been deleted by the user, and will not be drawn */ } gerbv_interpolation_t; /* For backward compatibility */ enum {GERBV_INTERPOLATION_x10 = GERBV_INTERPOLATION_LINEARx10}; const char *gerbv_interpolation_name(gerbv_interpolation_t interp); typedef enum {GERBV_ENCODING_NONE, GERBV_ENCODING_ASCII, GERBV_ENCODING_EBCDIC, GERBV_ENCODING_BCD, GERBV_ENCODING_ISO_ASCII, GERBV_ENCODING_EIA } gerbv_encoding_t; /*! The different layer types used */ typedef enum { GERBV_LAYERTYPE_RS274X, /*!< the file is a RS274X file */ GERBV_LAYERTYPE_DRILL, /*!< the file is an Excellon drill file */ GERBV_LAYERTYPE_PICKANDPLACE_TOP, /*!< the file is a CSV pick and place file, top side */ GERBV_LAYERTYPE_PICKANDPLACE_BOT, /*!< the file is a CSV pick and place file, bottom side */ } gerbv_layertype_t; typedef enum {GERBV_KNOCKOUT_TYPE_NOKNOCKOUT, GERBV_KNOCKOUT_TYPE_FIXEDKNOCK, GERBV_KNOCKOUT_TYPE_BORDER } gerbv_knockout_type_t; typedef enum {GERBV_MIRROR_STATE_NOMIRROR, GERBV_MIRROR_STATE_FLIPA, GERBV_MIRROR_STATE_FLIPB, GERBV_MIRROR_STATE_FLIPAB } gerbv_mirror_state_t; typedef enum {GERBV_AXIS_SELECT_NOSELECT, GERBV_AXIS_SELECT_SWAPAB } gerbv_axis_select_t; typedef enum {GERBV_JUSTIFY_NOJUSTIFY, GERBV_JUSTIFY_LOWERLEFT, GERBV_JUSTIFY_CENTERJUSTIFY } gerbv_image_justify_type_t; /*! The different selection modes available */ typedef enum { GERBV_SELECTION_POINT_CLICK = 1, /*!< the user clicked on a single point */ GERBV_SELECTION_DRAG_BOX /*!< the user dragged a box to encompass one or more objects */ } gerbv_selection_t; enum draw_mode { DRAW_IMAGE = 0, DRAW_SELECTIONS, FIND_SELECTIONS, FIND_SELECTIONS_TOGGLE, }; /*! The different rendering modes available to libgerbv */ typedef enum {GERBV_RENDER_TYPE_GDK, /*!< render using normal GDK drawing functions */ GERBV_RENDER_TYPE_GDK_XOR, /*!< use the GDK_XOR mask to draw a pseudo-transparent scene */ GERBV_RENDER_TYPE_CAIRO_NORMAL, /*!< use the cairo library */ GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, /*!< use the cairo library with the smoothest edges */ GERBV_RENDER_TYPE_MAX /*!< End-of-enum indicator */ } gerbv_render_types_t; /* * The following typedef's are taken directly from src/hid.h in the * pcb project. The names are kept the same to make it easier to * compare to pcb's sources. */ /* Used for HID attributes (exporting and printing, mostly). HA_boolean uses int_value, HA_enum sets int_value to the index and str_value to the enumeration string. HID_Label just shows the default str_value. HID_Mixed is a real_value followed by an enum, like 0.5in or 100mm. */ typedef struct { int int_value; char *str_value; double real_value; } gerbv_HID_Attr_Val; typedef struct { char *name; char *help_text; enum { HID_Label, HID_Integer, HID_Real, HID_String, HID_Boolean, HID_Enum, HID_Mixed, HID_Path } type; int min_val, max_val; /* for integer and real */ gerbv_HID_Attr_Val default_val; /* Also actual value for global attributes. */ const char **enumerations; /* If set, this is used for global attributes (i.e. those set statically with REGISTER_ATTRIBUTES below) instead of changing the default_val. Note that a HID_Mixed attribute must specify a pointer to gerbv_HID_Attr_Val here, and HID_Boolean assumes this is "char *" so the value should be initialized to zero, and may be set to non-zero (not always one). */ void *value; int hash; /* for detecting changes. */ } gerbv_HID_Attribute; /* end of HID attributes from PCB */ /*! A linked list of errors found in the files */ typedef struct error_list { int layer; gchar *error_text; gerbv_message_type_t type; struct error_list *next; } gerbv_error_list_t; typedef struct instruction { gerbv_opcodes_t opcode; union { int ival; float fval; } data; struct instruction *next; } gerbv_instruction_t; typedef struct amacro { gchar *name; gerbv_instruction_t *program; unsigned int nuf_push; /* Nuf pushes in program to estimate stack size */ struct amacro *next; } gerbv_amacro_t; typedef struct gerbv_simplified_amacro { gerbv_aperture_type_t type; double parameter[APERTURE_PARAMETERS_MAX]; struct gerbv_simplified_amacro *next; } gerbv_simplified_amacro_t; typedef struct gerbv_aperture { gerbv_aperture_type_t type; gerbv_amacro_t *amacro; gerbv_simplified_amacro_t *simplified; double parameter[APERTURE_PARAMETERS_MAX]; int nuf_parameters; gerbv_unit_t unit; } gerbv_aperture_t; /* the gerb_aperture_list is used to keep track of * apertures used in stats reporting */ typedef struct gerbv_aperture_list { int number; int layer; int count; gerbv_aperture_type_t type; double parameter[5]; struct gerbv_aperture_list *next; } gerbv_aperture_list_t; /*! Contains statistics on the various codes used in a RS274X file */ typedef struct { gerbv_error_list_t *error_list; gerbv_aperture_list_t *aperture_list; gerbv_aperture_list_t *D_code_list; int layer_count; int G0; int G1; int G2; int G3; int G4; int G10; int G11; int G12; int G36; int G37; int G54; int G55; int G70; int G71; int G74; int G75; int G90; int G91; int G_unknown; int D1; int D2; int D3; /* GHashTable *D_user_defined; */ int D_unknown; int D_error; int M0; int M1; int M2; int M_unknown; int X; int Y; int I; int J; /* Must include % RS-274 codes */ int star; int unknown; } gerbv_stats_t; /*! Linked list of drills found in active layers. Used in reporting statistics */ typedef struct drill_list { int drill_num; double drill_size; gchar *drill_unit; int drill_count; struct drill_list *next; } gerbv_drill_list_t; /*! Struct holding statistics of drill commands used. Used in reporting statistics */ typedef struct { int layer_count; gerbv_error_list_t *error_list; gerbv_drill_list_t *drill_list; int comment; int F; int G00; int G01; int G02; int G03; int G04; int G05; int G85; int G90; int G91; int G93; int G_unknown; int M00; int M01; int M18; int M25; int M30; int M31; int M45; int M47; int M48; int M71; int M72; int M95; int M97; int M98; int M_unknown; int R; int unknown; /* used to total up the drill count across all layers/sizes */ int total_count; char *detect; } gerbv_drill_stats_t; typedef struct { gpointer image; /* gerbv_image_t* */ gpointer net; /* gerbv_net_t* */ } gerbv_selection_item_t; /*! Struct holding info about the last selection */ typedef struct { gerbv_selection_t type; gdouble lowerLeftX; gdouble lowerLeftY; gdouble upperRightX; gdouble upperRightY; GArray *selectedNodeArray; } gerbv_selection_info_t; /*! Stores image transformation information, used to modify the rendered position/scale/etc of an image. */ typedef struct { gdouble translateX; /*!< the X translation (in inches) */ gdouble translateY; /*!< the Y translation (in inches) */ gdouble scaleX; /*!< the X scale factor (1.0 is default) */ gdouble scaleY; /*!< the Y scale factor (1.0 is default) */ gdouble rotation; /*!< the rotation of the layer around the origin (in radians) */ gboolean mirrorAroundX; /*!< TRUE if the layer is mirrored around the X axis (vertical flip) */ gboolean mirrorAroundY; /*!< TRUE if the layer is mirrored around the Y axis (vertical flip) */ gboolean inverted; /*!< TRUE if the image should be rendered "inverted" (light is dark and vice versa) */ } gerbv_user_transformation_t; /*! This defines a box location and size (used to rendering logic) */ typedef struct { double left; /*!< the X coordinate of the left side */ double right; /*!< the X coordinate of the right side */ double bottom; /*!< the Y coordinate of the bottom side */ double top; /*!< the Y coordinate of the top side */ } gerbv_render_size_t; typedef struct gerbv_cirseg { double cp_x; /* center point x */ double cp_y; /* center point y */ double width; /* used as diameter */ double height; /* */ double angle1; /* in degrees */ double angle2; /* in degrees */ } gerbv_cirseg_t; typedef struct gerbv_step_and_repeat { /* SR parameters */ int X; int Y; double dist_X; double dist_Y; } gerbv_step_and_repeat_t; typedef struct { gboolean firstInstance; gerbv_knockout_type_t type; gerbv_polarity_t polarity; gdouble lowerLeftX; gdouble lowerLeftY; gdouble width; gdouble height; gdouble border; } gerbv_knockout_t; /*! The structure used to keep track of RS274X layer groups */ typedef struct { gerbv_step_and_repeat_t stepAndRepeat; /*!< the current step and repeat group (refer to RS274X spec) */ gerbv_knockout_t knockout; /*!< the current knockout group (refer to RS274X spec) */ gdouble rotation; /*!< the current rotation around the origin */ gerbv_polarity_t polarity; /*!< the polarity of this layer */ gchar *name; /*!< the layer name (NULL for none) */ gpointer next; /*!< the next layer group in the array */ } gerbv_layer_t; /*! The structure used to keep track of RS274X state groups */ typedef struct { gerbv_axis_select_t axisSelect; /*!< the AB to XY coordinate mapping (refer to RS274X spec) */ gerbv_mirror_state_t mirrorState; /*!< any mirroring around the X or Y axis */ gerbv_unit_t unit; /*!< the current length unit */ gdouble offsetA; /*!< the offset along the A axis (usually this is the X axis) */ gdouble offsetB; /*!< the offset along the B axis (usually this is the Y axis) */ gdouble scaleA; /*!< the scale factor in the A axis (usually this is the X axis) */ gdouble scaleB; /*!< the scale factor in the B axis (usually this is the Y axis) */ gpointer next; /*!< the next state group in the array */ } gerbv_netstate_t; /*! The structure used to hold a geometric entity (line/polygon/etc)*/ typedef struct gerbv_net { double start_x; /*!< the X coordinate of the start point */ double start_y; /*!< the Y coordinate of the start point */ double stop_x; /*!< the X coordinate of the end point */ double stop_y; /*!< the Y coordinate of the end point */ gerbv_render_size_t boundingBox; /*!< the bounding box containing this net (used for rendering optimizations) */ int aperture; /*!< the index of the aperture used for this entity */ gerbv_aperture_state_t aperture_state; /*!< the state of the aperture tool (on/off/etc) */ gerbv_interpolation_t interpolation; /*!< the path interpolation method (linear/etc) */ gerbv_cirseg_t *cirseg; /*!< information for arc nets */ struct gerbv_net *next; /*!< the next net in the array */ GString *label; /*!< a label string for this net */ gerbv_layer_t *layer; /*!< the RS274X layer this net belongs to */ gerbv_netstate_t *state; /*!< the RS274X state this net belongs to */ } gerbv_net_t; /*! Struct holding info about interpreting the Gerber files read * e.g. leading zeros, etc. */ typedef struct gerbv_format { gerbv_omit_zeros_t omit_zeros; gerbv_coordinate_t coordinate; int x_int; int x_dec; int y_int; int y_dec; int lim_seqno; /* Length limit for codes of sequence number */ int lim_gf; /* Length limit for codes of general function */ int lim_pf; /* Length limit for codes of plot function */ int lim_mf; /* Length limit for codes of miscellaneous function */ } gerbv_format_t; /*! Struct holding info about a particular image */ typedef struct gerbv_image_info { char *name; gerbv_polarity_t polarity; double min_x; /* Always in inches */ double min_y; double max_x; double max_y; double offsetA; double offsetB; gerbv_encoding_t encoding; double imageRotation; gerbv_image_justify_type_t imageJustifyTypeA; gerbv_image_justify_type_t imageJustifyTypeB; gdouble imageJustifyOffsetA; gdouble imageJustifyOffsetB; gdouble imageJustifyOffsetActualA; gdouble imageJustifyOffsetActualB; gchar *plotterFilm; /* Descriptive string for the type of file (rs274-x, drill, etc) * that this is */ gchar *type; /* Attribute list that is used to hold all sorts of information * about how the layer is to be parsed. */ gerbv_HID_Attribute *attr_list; int n_attr; } gerbv_image_info_t; /*! The structure used to hold a layer (RS274X, drill, or pick-and-place data) */ typedef struct { gerbv_layertype_t layertype; /*!< the type of layer (RS274X, drill, or pick-and-place) */ gerbv_aperture_t *aperture[APERTURE_MAX]; /*!< an array with all apertures used */ gerbv_layer_t *layers; /*!< an array of all RS274X layers used (only used in RS274X types) */ gerbv_netstate_t *states; /*!< an array of all RS274X states used (only used in RS274X types) */ gerbv_amacro_t *amacro; /*!< an array of all macros used (only used in RS274X types) */ gerbv_format_t *format; /*!< formatting info */ gerbv_image_info_t *info; /*!< miscellaneous info regarding the layer such as overall size, etc */ gerbv_net_t *netlist; /*!< an array of all geometric entities in the layer */ gerbv_stats_t *gerbv_stats; /*!< RS274X statistics for the layer */ gerbv_drill_stats_t *drill_stats; /*!< Excellon drill statistics for the layer */ } gerbv_image_t; /*! Holds information related to an individual layer that is part of a project */ typedef struct { gerbv_image_t *image; /*!< the image holding all the geometry of the layer */ GdkColor color; /*!< the color to render this layer with */ guint16 alpha; /*!< the transparency to render this layer with */ gboolean isVisible; /*!< TRUE if this layer should be rendered with the project */ gpointer privateRenderData; /*!< private data holder for the rendering backend */ gchar *fullPathname; /*!< this full pathname to the file */ gchar *name; /*!< the name used when referring to this layer (e.g. in a layer selection menu) */ gerbv_user_transformation_t transform; /*!< user-specified transformation for this layer (mirroring, translating, etc) */ gboolean layer_dirty; /*!< True if layer has been modified since last save */ } gerbv_fileinfo_t; /*! The top-level structure used in libgerbv. A gerbv_project_t groups together any number of layers, while keeping track of other basic paramters needed for rendering */ typedef struct { GdkColor background; /*!< the background color used for rendering */ int max_files; /*!< the current number of fileinfos in the file array */ gerbv_fileinfo_t **file; /*!< the array for holding the child fileinfos */ int curr_index; /*!< the index of the currently active fileinfo */ int last_loaded; /*!< the (number-1) of fileinfos currently in the project */ int renderType; /*!< the type of renderer to use */ gboolean check_before_delete; /*!< TRUE to ask before deleting objects */ gboolean show_invisible_selection; /*!< TRUE to show selected objects on invisible files */ gchar *path; /*!< the default path to load new files from */ gchar *execpath; /*!< the path to executed version of Gerbv */ gchar *execname; /*!< the path plus executible name for Gerbv */ gchar *project; /*!< the default name for the private project file */ } gerbv_project_t; /*! Color of layer */ typedef struct{ unsigned char red; unsigned char green; unsigned char blue; unsigned char alpha; }gerbv_layer_color; /*! This contains the rendering info for a scene */ typedef struct { gdouble scaleFactorX; /*!< the X direction scale factor */ gdouble scaleFactorY; /*!< the Y direction scale factor */ gdouble lowerLeftX; /*!< the X coordinate of the lower left corner (in real world coordinates, in inches) */ gdouble lowerLeftY; /*!< the Y coordinate of the lower left corner (in real world coordinates, in inches) */ gerbv_render_types_t renderType; /*!< the type of rendering to use */ gint displayWidth; /*!< the width of the scene (in pixels, or points depending on the surface type) */ gint displayHeight; /*!< the height of the scene (in pixels, or points depending on the surface type) */ gboolean show_cross_on_drill_holes; /*!< TRUE to show cross on drill holes */ } gerbv_render_info_t; //! Allocate a new gerbv_image structure //! \return the newly created image gerbv_image_t *gerbv_create_image(gerbv_image_t *image, /*!< the old image to free or NULL */ const gchar *type /*!< the type of image to create */ ); //! Free an image structure void gerbv_destroy_image(gerbv_image_t *image /*!< the image to free */ ); //! Copy an image into an existing image, effectively merging the two together void gerbv_image_copy_image (gerbv_image_t *sourceImage, /*!< the source image */ gerbv_user_transformation_t *transform, /*!< the transformation to apply to the new image, or NULL for none */ gerbv_image_t *destinationImage /*!< the destination image to copy to */ ); //! Duplicate an existing image and return the new copy //! \return the newly created image gerbv_image_t * gerbv_image_duplicate_image (gerbv_image_t *sourceImage, /*!< the source image */ gerbv_user_transformation_t *transform /*!< the transformation to apply to the new image, or NULL for none */ ); //! Delete a net in an existing image void gerbv_image_delete_net (gerbv_net_t *currentNet /*!< the net to delete */ ); gboolean gerbv_image_reduce_area_of_selected_objects (GArray *selectionArray, gdouble areaReduction, gint paneRows, gint paneColumns, gdouble paneSeparation); gboolean gerbv_image_move_selected_objects (GArray *selectionArray, gdouble translationX, gdouble translationY); //! Return the next net entry which corresponds to a unique visible object gerbv_net_t * gerbv_image_return_next_renderable_object (gerbv_net_t *oldNet); //! Create a new project structure and initialize some important variables gerbv_project_t * gerbv_create_project (void); //! Free a project and all related variables void gerbv_destroy_project (gerbv_project_t *gerbvProject /*!< the project to destroy */ ); //! Open a file, parse the contents, and add a new layer to an existing project void gerbv_open_layer_from_filename ( gerbv_project_t *gerbvProject, /*!< the existing project to add the new layer to */ gchar *filename /*!< the full pathname of the file to be parsed */ ); //! Open a file, parse the contents, and add a new layer to an existing project while setting the color of the layer void gerbv_open_layer_from_filename_with_color(gerbv_project_t *gerbvProject, /*!< the existing project to add the new layer to */ gchar *filename, /*!< the full pathname of the file to be parsed */ guint16 red, /*!< the value for the red color component */ guint16 green, /*!< the value for the green color component */ guint16 blue, /*!< the value for the blue color component */ guint16 alpha /*!< the value for the alpha color component */ ); //! Free a fileinfo structure void gerbv_destroy_fileinfo (gerbv_fileinfo_t *fileInfo /*!< the fileinfo to free */ ); gboolean gerbv_save_layer_from_index(gerbv_project_t *gerbvProject, gint index, gchar *filename); int gerbv_revert_file(gerbv_project_t *gerbvProject, int idx); void gerbv_revert_all_files(gerbv_project_t *gerbvProject); void gerbv_unload_layer(gerbv_project_t *gerbvProject, int index); void gerbv_unload_all_layers (gerbv_project_t *gerbvProject); void gerbv_change_layer_order(gerbv_project_t *gerbvProject, gint oldPosition, gint newPosition); gint gerbv_add_parsed_image_to_project (gerbv_project_t *gerbvProject, gerbv_image_t *parsed_image, gchar *filename, gchar *baseName, int idx, int reload); int gerbv_open_image(gerbv_project_t *gerbvProject, char *filename, int idx, int reload, gerbv_HID_Attribute *fattr, int n_fattr, gboolean forceLoadFile); void gerbv_render_get_boundingbox(gerbv_project_t *gerbvProject, gerbv_render_size_t *boundingbox); //! Calculate the zoom and translations to fit the rendered scene inside the given scene size void gerbv_render_zoom_to_fit_display (gerbv_project_t *gerbvProject, /*!< the project to use for calculating */ gerbv_render_info_t *renderInfo /*!< the scene render pointer (updates the values in this parameter) */ ); void gerbv_render_translate_to_fit_display (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo); void gerbv_render_to_pixmap_using_gdk (gerbv_project_t *gerbvProject, GdkPixmap *pixmap, gerbv_render_info_t *renderInfo, gerbv_selection_info_t *selectionInfo, GdkColor *selectionColor); #ifndef RENDER_USING_GDK void gerbv_render_all_layers_to_cairo_target_for_vector_output (gerbv_project_t *gerbvProject, cairo_t *cr, gerbv_render_info_t *renderInfo); void gerbv_render_all_layers_to_cairo_target (gerbv_project_t *gerbvProject, cairo_t *cr, gerbv_render_info_t *renderInfo); //! Render a layer to a cairo context void gerbv_render_layer_to_cairo_target (cairo_t *cr, /*!< the cairo context */ gerbv_fileinfo_t *fileInfo, /*!< the layer fileinfo pointer */ gerbv_render_info_t *renderInfo /*!< the scene render info */ ); void gerbv_render_cairo_set_scale_and_translation(cairo_t *cr, gerbv_render_info_t *renderInfo); void gerbv_render_layer_to_cairo_target_without_transforming(cairo_t *cr, gerbv_fileinfo_t *fileInfo, gerbv_render_info_t *renderInfo, gboolean pixelOutput ); #endif double gerbv_get_tool_diameter(int toolNumber ); int gerbv_process_tools_file(const char *toolFileName ); //! Render a project to a PNG file, autoscaling the layers to fit inside the specified image dimensions void gerbv_export_png_file_from_project_autoscaled ( gerbv_project_t *gerbvProject, /*!< the project to render */ int widthInPixels, /*!< the width of the rendered picture (in pixels) */ int heightInPixels, /*!< the height of the rendered picture (in pixels) */ gchar const* filename /*!< the filename for the exported PNG file */ ); //! Render a project to a PNG file using user-specified render info void gerbv_export_png_file_from_project ( gerbv_project_t *gerbvProject, /*!< the project to render */ gerbv_render_info_t *renderInfo, /*!< the render settings for the rendered image */ gchar const* filename /*!< the filename for the exported PNG file */ ); //! Render a project to a PDF file, autoscaling the layers to fit inside the specified image dimensions void gerbv_export_pdf_file_from_project_autoscaled ( gerbv_project_t *gerbvProject, /*!< the project to render */ gchar const* filename /*!< the filename for the exported PDF file */ ); //! Render a project to a PDF file using user-specified render info void gerbv_export_pdf_file_from_project ( gerbv_project_t *gerbvProject, /*!< the project to render */ gerbv_render_info_t *renderInfo, /*!< the render settings for the rendered image */ gchar const* filename /*!< the filename for the exported PDF file */ ); //! Render a project to a Postscript file, autoscaling the layers to fit inside the specified image dimensions void gerbv_export_postscript_file_from_project_autoscaled ( gerbv_project_t *gerbvProject, /*!< the project to render */ gchar const* filename /*!< the filename for the exported Postscript file */ ); //! Render a project to a Postscript file using user-specified render info void gerbv_export_postscript_file_from_project ( gerbv_project_t *gerbvProject, /*!< the project to render */ gerbv_render_info_t *renderInfo, /*!< the render settings for the rendered image */ gchar const* filename /*!< the filename for the exported Postscript file */ ); //! Render a project to a SVG file, autoscaling the layers to fit inside the specified image dimensions void gerbv_export_svg_file_from_project_autoscaled ( gerbv_project_t *gerbvProject, /*!< the project to render */ gchar const* filename /*!< the filename for the exported file */ ); //! Render a project to a file using user-specified render info void gerbv_export_svg_file_from_project ( gerbv_project_t *gerbvProject, /*!< the project to render */ gerbv_render_info_t *renderInfo, /*!< the render settings for the rendered image */ gchar const* filename /*!< the filename for the exported file */ ); //! Export an image to a new file in DXF format //! \return TRUE if successful, or FALSE if not gboolean gerbv_export_dxf_file_from_image (const gchar *filename, /*!< the filename for the new file */ gerbv_image_t *image, /*!< the image to export */ gerbv_user_transformation_t *transform /*!< the transformation to apply before exporting */ ); //! Parse a RS274X file and return the parsed image //! \return the new gerbv_image_t, or NULL if not successful gerbv_image_t * gerbv_create_rs274x_image_from_filename (gchar *filename /*!< the filename of the file to be parsed*/ ); //! Export an image to a new file in RS274X format //! \return TRUE if successful, or FALSE if not gboolean gerbv_export_rs274x_file_from_image (const gchar *filename, /*!< the filename for the new file */ gerbv_image_t *image, /*!< the image to export */ gerbv_user_transformation_t *transform /*!< the transformation to apply before exporting */ ); //! Export an image to a new file in Excellon drill format //! \return TRUE if successful, or FALSE if not gboolean gerbv_export_drill_file_from_image (const gchar *filename, /*!< the filename for the new file */ gerbv_image_t *image, /*!< the image to export */ gerbv_user_transformation_t *transform /*!< the transformation to apply before exporting */ ); //! Export an image to a new file in ISEL NCP drill format //! \return TRUE if successful, or FALSE if not gboolean gerbv_export_isel_drill_file_from_image (const gchar *filename, /*!< the filename for the new file */ gerbv_image_t *image, /*!< the image to export */ gerbv_user_transformation_t *transform /*!< the transformation to apply before exporting */ ); //! Export an image to a new file in gEDA PCB format //! \return TRUE if successful, or FALSE if not gboolean gerbv_export_geda_pcb_file_from_image (const gchar *filename, /*!< the filename for the new file */ gerbv_image_t *image, /*!< the image to export */ gerbv_user_transformation_t *transform /*!< the transformation to apply before exporting */ ); //! Draw a line on the specified image void gerbv_image_create_line_object (gerbv_image_t *image, /*!< the image to draw to */ gdouble startX, /*!< the starting X coordinate */ gdouble startY, /*!< the starting Y coordinate */ gdouble endX, /*!< the ending X coordinate */ gdouble endY, /*!< the ending Y coordinate */ gdouble lineWidth, /*!< the width of the line to draw */ gerbv_aperture_type_t apertureType /*!< the type of aperture to use (e.g. CIRCLE) */ ); //! Draw an arc on the specified image void gerbv_image_create_arc_object (gerbv_image_t *image, /*!< the image to draw to */ gdouble centerX, /*!< the center X coordinate */ gdouble centerY, /*!< the center Y coordinate */ gdouble radius, /*!< the arc radius */ gdouble startAngle, /*!< the start angle (in CCW degrees) */ gdouble endAngle, /*!< the start angle (in CCW degrees) */ gdouble lineWidth, /*!< the width of the line to draw */ gerbv_aperture_type_t apertureType /*!< the type of aperture to use (e.g. CIRCLE) */ ); //! Draw a filled rectangle on the specified image void gerbv_image_create_rectangle_object (gerbv_image_t *image, /*!< the image to draw to */ gdouble coordinateX, /*!< the X coordinate of the lower left corner */ gdouble coordinateY, /*!< the Y coordinate of the lower left corner */ gdouble width, /*!< the width of the drawn rectangle */ gdouble height /*!< the height of the drawn rectangle */ ); //! Create any missing apertures in the specified image void gerbv_image_create_dummy_apertures (gerbv_image_t *parsed_image /*!< the image to repair */ ); /*! Create new struct for holding drill stats */ gerbv_drill_stats_t * gerbv_drill_stats_new(void); /*! Free the memory for a drill stats struct */ void gerbv_drill_stats_destroy(gerbv_drill_stats_t *); /*! Add stats gathered from specified layer to accumulatedd drill stats * compiled from all layers */ void gerbv_drill_stats_add_layer(gerbv_drill_stats_t *accum_stats, gerbv_drill_stats_t *input_stats, int this_layer ); /*! Create new struct for holding Gerber stats */ gerbv_stats_t * gerbv_stats_new(void); /*! Free the memory for a stats struct */ void gerbv_stats_destroy(gerbv_stats_t *); /*! Add stats gathered from specified layer to accumulated Gerber stats * compiled from all layers */ void gerbv_stats_add_layer(gerbv_stats_t *accum_stats, gerbv_stats_t *input_stats, int this_layer ); void gerbv_attribute_destroy_HID_attribute (gerbv_HID_Attribute *attributeList, int n_attr); gerbv_HID_Attribute * gerbv_attribute_dup (gerbv_HID_Attribute *, int); /*! Return found fileinfo for image, or NULL */ gerbv_fileinfo_t * gerbv_get_fileinfo_for_image(const gerbv_image_t *image, const gerbv_project_t *project); /*! Transform coordinate x and y for image in project */ int gerbv_transform_coord_for_image(double *x, double *y, const gerbv_image_t *image, const gerbv_project_t *project); /*! Transform coordinate x and y */ void gerbv_transform_coord(double *x, double *y, const gerbv_user_transformation_t *trans); /*! Rotate coordinate x and y buy angle in radians */ void gerbv_rotate_coord(double *x, double *y, double rad); #undef MIN #undef MAX #define MIN(x,y) ({ \ typeof(x) _x = (x); \ typeof(y) _y = (y); \ (void) (&_x == &_y); \ _x < _y ? _x : _y; }) #define MAX(x,y) ({ \ typeof(x) _x = (x); \ typeof(y) _y = (y); \ (void) (&_x == &_y); \ _x > _y ? _x : _y; }) #if defined(__cplusplus) } #endif #endif /* __GERBV_H__ */ gerbv-2.7.0/src/main.c0000644000175000017500000012044013421555714014374 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2008 Julian Lamb * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file main.c \brief The main code for the Gerber Viewer GUI application and command line processing \ingroup gerbv */ #include "gerbv.h" #include #include #include #include #include #ifdef WIN32 # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_GETOPT_H # include #endif #include "common.h" #include "main.h" #include "callbacks.h" #include "interface.h" #include "render.h" #include "project.h" #if (DEBUG) # define dprintf printf("%s(): ", __FUNCTION__); printf #else # define dprintf if(0) printf #endif #define NUMBER_OF_DEFAULT_COLORS 18 #define NUMBER_OF_DEFAULT_TRANSFORMATIONS 20 static void gerbv_print_help(void); static int getopt_configured(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex); static int getopt_lengh_unit(const char *optarg, double *input_div, gerbv_screen_t *screen); static gerbv_layer_color mainDefaultColors[NUMBER_OF_DEFAULT_COLORS] = { {115,115,222,177}, {255,127,115,177}, {193,0,224,177}, {117,242,103,177}, {0,195,195,177}, {213,253,51,177}, {209,27,104,177}, {255,197,51,177}, {186,186,186,177}, {211,211,255,177}, {253,210,206,177}, {236,194,242,177}, {208,249,204,177}, {183,255,255,177}, {241,255,183,177}, {255,202,225,177}, {253,238,197,177}, {226,226,226,177} }; static gerbv_user_transformation_t mainDefaultTransformations[NUMBER_OF_DEFAULT_TRANSFORMATIONS] = { {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, }; #ifdef HAVE_GETOPT_LONG int longopt_val = 0; int longopt_idx = 0; const struct option longopts[] = { /* name has_arg flag val */ {"border", required_argument, NULL, 'B'}, {"dpi", required_argument, NULL, 'D'}, {"version", no_argument, NULL, 'V'}, {"origin", required_argument, NULL, 'O'}, {"window_inch", required_argument, NULL, 'W'}, {"antialias", no_argument, NULL, 'a'}, {"background", required_argument, NULL, 'b'}, {"dump", no_argument, NULL, 'd'}, {"foreground", required_argument, NULL, 'f'}, {"rotate", required_argument, NULL, 'r'}, {"mirror", required_argument, NULL, 'm'}, {"help", no_argument, NULL, 'h'}, {"log", required_argument, NULL, 'l'}, {"output", required_argument, NULL, 'o'}, {"project", required_argument, NULL, 'p'}, {"tools", required_argument, NULL, 't'}, {"translate", required_argument, NULL, 'T'}, {"units", required_argument, NULL, 'u'}, {"window", required_argument, NULL, 'w'}, {"export", required_argument, NULL, 'x'}, {"geometry", required_argument, &longopt_val, 1}, /* GDK/GDK debug flags to be "let through" */ {"gtk-module", required_argument, &longopt_val, 2}, {"g-fatal-warnings",no_argument, &longopt_val, 2}, {"gtk-debug", required_argument, &longopt_val, 2}, {"gtk-no-debug", required_argument, &longopt_val, 2}, {"gdk-debug", required_argument, &longopt_val, 2}, {"gdk-no-debug", required_argument, &longopt_val, 2}, {"display", required_argument, &longopt_val, 2}, {"sync", no_argument, &longopt_val, 2}, {"no-xshm", no_argument, &longopt_val, 2}, {"name", required_argument, &longopt_val, 2}, {"class", required_argument, &longopt_val, 2}, {0, 0, 0, 0}, }; #endif /* HAVE_GETOPT_LONG*/ const char *opt_options = "VadhB:D:O:W:b:f:r:m:l:o:p:t:T:u:w:x:"; /**Global state variable to keep track of what's happening on the screen. Declared extern in main.h */ gerbv_project_t *mainProject; gerbv_screen_t screen; gboolean logToFileOption; gchar *logToFileFilename; /* Coords like "0x2" parsed by "%fx%f" will result in first number = 2 and second number 0. Replace 'x' in coordinate string with ';'*/ static void care_for_x_in_cords(char *string) { char *found; found = strchr(string, 'x'); if (!found) found = strchr(string, 'X'); if (found) *found = ';'; } /* ------------------------------------------------------------------ */ void main_open_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename) { project_list_t *list, *plist; gint i, max_layer_num = -1; gerbv_fileinfo_t *file_info; dprintf("Opening project = %s\n", (gchar *) filename); list = read_project_file(filename); if (!list) { GERB_COMPILE_WARNING(_("Could not read \"%s\" (loaded %d)"), (gchar *) filename, gerbvProject->last_loaded); return; } /* Get the max layer number in the project list */ plist = list; while (plist) { if (plist->layerno > max_layer_num) max_layer_num = plist->layerno; plist = plist->next; } /* Increase the layer count each time and find (if any) the * corresponding entry */ for (i = -1; i <= max_layer_num; i++) { plist = list; while (plist) { if (plist->layerno != i) { plist = plist->next; continue; } GdkColor colorTemplate = {0, plist->rgb[0], plist->rgb[1], plist->rgb[2]}; if (i == -1) { screen.background_is_from_project= TRUE; gerbvProject->background = colorTemplate; plist = plist->next; continue; } gchar *fullName = NULL; gchar *dirName = NULL; gint fileIndex = gerbvProject->last_loaded + 1; if (!g_path_is_absolute (plist->filename)) { /* Build the full pathname to the layer */ dirName = g_path_get_dirname (filename); fullName = g_build_filename (dirName, plist->filename, NULL); } else { fullName = g_strdup (plist->filename); } if (gerbv_open_image(gerbvProject, fullName, fileIndex, FALSE, plist->attr_list, plist->n_attr, TRUE) == -1) { GERB_MESSAGE(_("could not read file: %s"), fullName); plist = plist->next; continue; } g_free (dirName); g_free (fullName); /* Change color from default to from the project list */ file_info = gerbvProject->file[fileIndex]; file_info->color = colorTemplate; file_info->alpha = plist->alpha; file_info->transform.inverted = plist->inverted; file_info->transform.translateX = plist->translate_x; file_info->transform.translateY = plist->translate_y; file_info->transform.rotation = plist->rotation; file_info->transform.scaleX = plist->scale_x; file_info->transform.scaleY = plist->scale_y; file_info->transform.mirrorAroundX = plist->mirror_x; file_info->transform.mirrorAroundY = plist->mirror_y; file_info->isVisible = plist->visible; plist = plist->next; } } project_destroy_project_list(list); /* Save project filename for later use */ if (gerbvProject->project) { g_free(gerbvProject->project); gerbvProject->project = NULL; } gerbvProject->project = g_strdup(filename); if (gerbvProject->project == NULL) GERB_FATAL_ERROR("malloc gerbvProject->project failed in %s()", __FUNCTION__); } /* gerbv_open_project_from_filename */ /* ------------------------------------------------------------------ */ void main_save_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename) { project_list_t *list, *plist; gchar *dirName = g_path_get_dirname (filename); gerbv_fileinfo_t *file_info; int idx; list = g_new0 (project_list_t, 1); list->next = NULL; list->layerno = -1; list->filename = g_strdup(gerbvProject->path); list->rgb[0] = gerbvProject->background.red; list->rgb[1] = gerbvProject->background.green; list->rgb[2] = gerbvProject->background.blue; /* loop over all layer files */ for (idx = 0; idx <= gerbvProject->last_loaded; idx++) { if (gerbvProject->file[idx]) { plist = g_new0 (project_list_t, 1); plist->next = list; plist->layerno = idx; /* figure out the relative path to the layer from the project directory */ if (strncmp (dirName, gerbvProject->file[idx]->fullPathname, strlen(dirName)) == 0) { /* skip over the common dirname and the separator */ plist->filename = g_strdup(gerbvProject->file[idx]->fullPathname + strlen(dirName) + 1); } else { /* if we can't figure out a relative path, just save the * absolute one */ plist->filename = g_strdup(gerbvProject->file[idx]->fullPathname); } file_info = gerbvProject->file[idx]; plist->rgb[0] = file_info->color.red; plist->rgb[1] = file_info->color.green; plist->rgb[2] = file_info->color.blue; plist->alpha = file_info->alpha; plist->inverted = file_info->transform.inverted; plist->visible = file_info->isVisible; plist->translate_x = file_info->transform.translateX; plist->translate_y = file_info->transform.translateY; plist->rotation = file_info->transform.rotation; plist->scale_x = file_info->transform.scaleX; plist->scale_y = file_info->transform.scaleY; plist->mirror_x = file_info->transform.mirrorAroundX; plist->mirror_y = file_info->transform.mirrorAroundY; list= plist; } } if (write_project_file(gerbvProject, gerbvProject->project, list)) { GERB_MESSAGE(_("Failed to write project")); } project_destroy_project_list(list); g_free (dirName); } /* gerbv_save_project_from_filename */ /* ------------------------------------------------------------------ */ void main_save_as_project_from_filename(gerbv_project_t *gerbvProject, gchar *filename) { /* * Save project filename for later use */ if (gerbvProject->project) { g_free(gerbvProject->project); gerbvProject->project = NULL; } gerbvProject->project = g_strdup(filename); if (gerbvProject->project == NULL) GERB_FATAL_ERROR("malloc gerbvProject->project failed in %s()", __FUNCTION__); main_save_project_from_filename (gerbvProject, filename); } /* gerbv_save_as_project_from_filename */ GArray *log_array_tmp = NULL; /* Temporary log messages handler. It will store log messages before GUI * initialization. */ void callbacks_temporary_handle_log_messages(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { struct log_struct item; item.domain = g_strdup (log_domain); item.level = log_level; item.message = g_strdup (message); g_array_append_val (log_array_tmp, item); g_log_default_handler (log_domain, log_level, message, user_data); } #ifdef WIN32 static void wait_console_for_win(void) { FILE *console = fopen("CONOUT$", "w"); fprintf(console, _("\n*** Press Enter to continue ***")); fflush(console); } /* Attach console in application which is build with -mwindows flag */ static void attach_console_for_win(void) { if (((HANDLE)_get_osfhandle(fileno(stdout)) == INVALID_HANDLE_VALUE || (HANDLE)_get_osfhandle(fileno(stderr)) == INVALID_HANDLE_VALUE) && AttachConsole(ATTACH_PARENT_PROCESS)) { if ((HANDLE)_get_osfhandle(fileno (stdout)) == INVALID_HANDLE_VALUE) freopen("CONOUT$", "w", stdout); if ((HANDLE)_get_osfhandle(fileno (stderr)) == INVALID_HANDLE_VALUE) freopen("CONOUT$", "w", stderr); atexit(wait_console_for_win); } } #else static void attach_console_for_win(void) {} #endif /* ------------------------------------------------------------------ */ int main(int argc, char *argv[]) { int read_opt; int i,r,g,b,a; int req_width = -1, req_height = -1; #ifdef HAVE_GETOPT_LONG char *rest; #endif char *project_filename = NULL; gboolean userSuppliedOrigin=FALSE, userSuppliedWindow=FALSE, userSuppliedAntiAlias=FALSE, userSuppliedWindowInPixels=FALSE, userSuppliedDpi=FALSE; gint layerctr =0, transformCount = 0; gdouble initial_rotation = 0.0; gdouble input_divisor = 1.0; /* 1.0 for inch */ int unit_flag_counter; gboolean initial_mirror_x = FALSE; gboolean initial_mirror_y = FALSE; const gchar *exportFilename = NULL; gfloat userSuppliedOriginX=0.0,userSuppliedOriginY=0.0,userSuppliedDpiX=72.0, userSuppliedDpiY=72.0, userSuppliedWidth=0, userSuppliedHeight=0, userSuppliedBorder = GERBV_DEFAULT_BORDER_COEFF; gerbv_image_t *exportImage; enum exp_type { EXP_TYPE_NONE = -1, EXP_TYPE_PNG, EXP_TYPE_PDF, EXP_TYPE_SVG, EXP_TYPE_PS, EXP_TYPE_RS274X, EXP_TYPE_DRILL, EXP_TYPE_IDRILL, }; enum exp_type exportType = EXP_TYPE_NONE; const char *export_type_names[] = { "png", "pdf", "svg", "ps", "rs274x", "drill", "idrill", NULL }; const gchar *export_def_file_names[] = { "output.png", "output.pdf", "output.svg", "output.ps", "output.gbx", "output.cnc", "output.ncp", NULL }; const gchar *settings_schema_env = "GSETTINGS_SCHEMA_DIR"; #ifdef WIN32 /* On Windows executable can be not in bin/ dir */ const gchar *settings_schema_fallback_dir = "share/glib-2.0/schemas" G_SEARCHPATH_SEPARATOR_S "../share/glib-2.0/schemas"; #else const gchar *settings_schema_fallback_dir = "../share/glib-2.0/schemas"; #endif gchar *env_val; #if ENABLE_NLS setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); # ifdef WIN32 bind_textdomain_codeset(PACKAGE, "UTF-8"); # endif textdomain(PACKAGE); #endif attach_console_for_win(); /* * Setup the screen info. Must do this before getopt, since getopt * eventually will set some variables in screen. */ memset((void *)&screen, 0, sizeof(gerbv_screen_t)); screen.state = NORMAL; screen.unit = GERBV_DEFAULT_UNIT; mainProject = gerbv_create_project(); mainProject->execname = g_strdup(argv[0]); mainProject->execpath = g_path_get_dirname(argv[0]); /* Add "fallback" directory with settings schema file from this * executable path */ if (NULL == g_getenv(settings_schema_env)) /* Empty env var */ env_val = g_strconcat( mainProject->execpath, G_DIR_SEPARATOR_S, settings_schema_fallback_dir, NULL); else /* Not empty env var */ env_val = g_strconcat(g_getenv(settings_schema_env), G_SEARCHPATH_SEPARATOR_S, mainProject->execpath, G_DIR_SEPARATOR_S, settings_schema_fallback_dir, NULL); g_setenv(settings_schema_env, env_val, TRUE); g_free(env_val); /* set default rendering mode */ #ifdef WIN32 /* Cairo seems to render faster on Windows, so use it for default */ screenRenderInfo.renderType = GERBV_RENDER_TYPE_CAIRO_NORMAL; #else screenRenderInfo.renderType = GERBV_RENDER_TYPE_GDK; #endif logToFileOption = FALSE; logToFileFilename = NULL; log_array_tmp = g_array_new (TRUE, FALSE, sizeof (struct log_struct)); g_log_set_handler (NULL, G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION | G_LOG_LEVEL_MASK, callbacks_temporary_handle_log_messages, NULL); /* 1. Process "length unit" command line flag */ unit_flag_counter = 0; opterr = 0; /* Disable getopt() error messages */ while (-1 != (read_opt = getopt_configured(argc, argv, opt_options, longopts, &longopt_idx))) { switch (read_opt) { case 'u': unit_flag_counter++; if (!getopt_lengh_unit(optarg, &input_divisor, &screen)) GERB_COMPILE_WARNING( _("Unrecognized length unit \"%s\" in command line"), optarg); break; } } /* 2. Process all other command line flags */ optind = 0; /* Reset getopt() index */ opterr = 1; /* Enable getopt() error messages */ while (-1 != (read_opt = getopt_configured(argc, argv, opt_options, longopts, &longopt_idx))) { switch (read_opt) { #ifdef HAVE_GETOPT_LONG case 0: /* Only long options like GDK/GTK debug */ switch (longopt_val) { case 0: /* default value if nothing is set */ GERB_COMPILE_WARNING( _("Not handled option \"%s\" in command line"), longopts[longopt_idx].name); break; case 1: /* geometry */ errno = 0; req_width = (int)strtol(optarg, &rest, 10); if (errno) { perror(_("Width")); break; } if (rest[0] != 'x'){ fprintf(stderr, _("Split X and Y parameters with an x\n")); break; } rest++; errno = 0; req_height = (int)strtol(rest, &rest, 10); if (errno) { perror(_("Height")); break; } /* if ((rest[0] == 0) || ((rest[0] != '-') && (rest[0] != '+'))) break; errno = 0; req_x = (int)strtol(rest, &rest, 10); if (errno) { perror("X"); break; } if ((rest[0] == 0) || ((rest[0] != '-') && (rest[0] != '+'))) break; errno = 0; req_y = (int)strtol(rest, &rest, 10); if (errno) { perror("Y"); break; } */ break; default: break; } break; #endif /* HAVE_GETOPT_LONG */ case 'B' : if (optarg == NULL) { fprintf(stderr, _("You must specify the border in the format .\n")); exit(1); } if (strlen (optarg) > 10) { fprintf(stderr, _("Specified border is not recognized.\n")); exit(1); } sscanf (optarg,"%f",&userSuppliedBorder); if (userSuppliedBorder < 0) { fprintf(stderr, _("Specified border is smaller than zero!\n")); exit(1); } userSuppliedBorder/=100.0; break; case 'D' : if (optarg == NULL) { fprintf(stderr, _("You must give an resolution in the format or .\n")); exit(1); } if (strlen (optarg) > 20) { fprintf(stderr, _("Specified resolution is not recognized.\n")); exit(1); } if(strchr(optarg, 'x')!=NULL){ sscanf (optarg,"%fx%f",&userSuppliedDpiX,&userSuppliedDpiY); }else{ sscanf (optarg,"%f",&userSuppliedDpiX); userSuppliedDpiY = userSuppliedDpiX; } if ((userSuppliedDpiX <= 0) || (userSuppliedDpiY <= 0)) { fprintf(stderr, _("Specified resolution should be greater than 0.\n")); exit(1); } userSuppliedDpi=TRUE; break; case 'O' : if (optarg == NULL) { fprintf(stderr, _("You must give an origin in the format " " or .\n")); exit(1); } if (strlen (optarg) > 20) { fprintf(stderr, _("Specified origin is not recognized.\n")); exit(1); } care_for_x_in_cords(optarg); sscanf(optarg,"%f;%f", &userSuppliedOriginX, &userSuppliedOriginY); userSuppliedOriginX /= input_divisor; userSuppliedOriginY /= input_divisor; userSuppliedOrigin=TRUE; break; case 'V' : printf(_("gerbv version %s\n"), VERSION); printf(_("Copyright (C) 2001—2008 by Stefan Petersen\n" "and the respective original authors listed in the source files.\n")); exit(0); case 'a' : userSuppliedAntiAlias = TRUE; break; case 'b' : // Set background to this color if (optarg == NULL) { fprintf(stderr, _("You must give an background color " "in the hex-format <#RRGGBB>.\n")); exit(1); } if ((strlen (optarg) != 7)||(optarg[0]!='#')) { fprintf(stderr, _("Specified color format " "is not recognized.\n")); exit(1); } r=g=b=-1; sscanf (optarg,"#%2x%2x%2x",&r,&g,&b); if ( (r<0)||(r>255)||(g<0)||(g>255)||(b<0)||(b>255)) { fprintf(stderr, _("Specified color values should be " "between 00 and FF.\n")); exit(1); } screen.background_is_from_cmdline = TRUE; mainProject->background.red = r*257; mainProject->background.green = g*257; mainProject->background.blue = b*257; break; case 'f' : // Set layer colors to this color (foreground color) if (optarg == NULL) { fprintf(stderr, _("You must give an foreground color in the hex-format <#RRGGBB> or <#RRGGBBAA>.\n")); exit(1); } if (((strlen (optarg) != 7)&&(strlen (optarg) != 9))||(optarg[0]!='#')) { fprintf(stderr, _("Specified color format is not recognized.\n")); exit(1); } r=g=b=a=-1; if(strlen(optarg)==7){ sscanf (optarg,"#%2x%2x%2x",&r,&g,&b); a=177; } else{ sscanf (optarg,"#%2x%2x%2x%2x",&r,&g,&b,&a); } if ( (r<0)||(r>255)||(g<0)||(g>255)||(b<0)||(b>255)||(a<0)||(a>255) ) { fprintf(stderr, _("Specified color values should be between 0x00 (0) and 0xFF (255).\n")); exit(1); } mainDefaultColors[layerctr].red = r; mainDefaultColors[layerctr].green = g; mainDefaultColors[layerctr].blue = b; mainDefaultColors[layerctr].alpha = a; layerctr++; /* just reset the counter back to 0 if we read too many */ if (layerctr == NUMBER_OF_DEFAULT_COLORS) layerctr = 0; break; case 'r' : // Set initial orientation for all layers (rotation) if (optarg == NULL) { fprintf(stderr, _("You must give the initial rotation angle\n")); exit(1); } errno = 0; initial_rotation = (gdouble)strtod(optarg, &rest); if (errno) { perror(_("Rotate")); exit(1); } if (*rest) { fprintf(stderr, _("Failed parsing rotate value\n")); exit(1); } break; case 'm' : // Set initial mirroring state for all layers if (optarg == NULL) { fprintf(stderr, _("You must give the axis to mirror about\n")); exit(1); } if (strchr(optarg, 'x') != NULL || strchr(optarg, 'X') != NULL) { initial_mirror_x = TRUE; } if (strchr(optarg, 'y') != NULL || strchr(optarg, 'Y') != NULL) { initial_mirror_y = TRUE; } if (!(initial_mirror_x || initial_mirror_y)) { fprintf(stderr, _("Failed parsing mirror axis\n")); exit(1); } break; case 'l' : if (optarg == NULL) { fprintf(stderr, _("You must give a filename to send log to\n")); exit(1); } logToFileOption = TRUE; logToFileFilename = optarg; break; case 'o' : if (optarg == NULL) { fprintf(stderr, _("You must give a filename to export to.\n")); exit(1); } exportFilename = optarg; break; case 'p' : if (optarg == NULL) { fprintf(stderr, _("You must give a project filename\n")); exit(1); } project_filename = optarg; break; case 't' : if (optarg == NULL) { fprintf(stderr, _("You must give a filename to read the tools from.\n")); exit(1); } if (!gerbv_process_tools_file(optarg)) { fprintf(stderr, _("*** ERROR processing tools file \"%s\".\n"), optarg); fprintf(stderr, _("Make sure all lines of the file are formatted like this:\n" "T01 0.024\nT02 0.032\nT03 0.040\n...\n" "*** EXITING to prevent erroneous display.\n")); exit(1); } break; case 'T' : // Translate the layer if (optarg == NULL) { fprintf(stderr, _("You must give a translation in the format " " or .\n")); exit(1); } if (strlen (optarg) > 30) { fprintf(stderr, _("The translation format is not recognized.\n")); exit(1); } float transX = 0, transY = 0, rotate = 0; care_for_x_in_cords(optarg); sscanf(optarg, "%f;%fr%f", &transX, &transY, &rotate); transX /= input_divisor; transY /= input_divisor; mainDefaultTransformations[transformCount].translateX = transX; mainDefaultTransformations[transformCount].translateY = transY; mainDefaultTransformations[transformCount].rotation = DEG2RAD(rotate); transformCount++; /* just reset the counter back to 0 if we read too many */ if (transformCount == NUMBER_OF_DEFAULT_TRANSFORMATIONS) transformCount = 0; break; case 'u': if (unit_flag_counter == 1) /* Length unit flag occurred only once and processed */ break; /* Length unit flag occurred more than once, process each one */ if (!getopt_lengh_unit(optarg, &input_divisor, &screen)) GERB_COMPILE_WARNING( _("Unrecognized length unit \"%s\" in command line"), optarg); break; case 'w': userSuppliedWindowInPixels = TRUE; case 'W' : if (optarg == NULL) { fprintf(stderr, _("You must give a window size in the format .\n")); exit(1); } if (strlen (optarg) > 20) { fprintf(stderr, _("Specified window size is not recognized.\n")); exit(1); } sscanf (optarg, "%fx%f", &userSuppliedWidth, &userSuppliedHeight); if (((userSuppliedWidth < 0.001) || (userSuppliedHeight < 0.001)) || ((userSuppliedWidth > 2000) || (userSuppliedHeight > 2000))) { fprintf(stderr, _("Specified window size is out of bounds.\n")); exit(1); } userSuppliedWindow = TRUE; break; case 'x' : if (optarg == NULL) { fprintf(stderr, _("You must supply an export type.\n")); exit(1); } for (i = 0; export_type_names[i] != NULL; i++) { if (strcmp (optarg, export_type_names[i]) == 0) { exportType = i; break; } } if (exportType == EXP_TYPE_NONE) { fprintf(stderr, _("Unrecognized \"%s\" export type.\n"), optarg); exit(1); } break; case 'd': screen.dump_parsed_image = 1; break; case '?': case 'h': gerbv_print_help(); exit(1); break; default : /* This should not be reached */ GERB_COMPILE_WARNING(_("Not handled option '%c' in command line"), read_opt); } } /* * If project is given, load that one and use it for files and colors. * Else load files (eventually) given on the command line. * This limits you to either give files on the commandline or just load * a project. */ if (project_filename) { dprintf(_("Loading project %s...\n"), project_filename); /* calculate the absolute pathname to the project if the user used a relative path */ g_free (mainProject->path); if (!g_path_is_absolute(project_filename)) { gchar *fullName = g_build_filename (g_get_current_dir (), project_filename, NULL); main_open_project_from_filename (mainProject, fullName); mainProject->path = g_path_get_dirname (fullName); g_free (fullName); } else { main_open_project_from_filename (mainProject, project_filename); mainProject->path = g_path_get_dirname (project_filename); } } else { gint loadedIndex = 0; for(i = optind ; i < argc; i++) { g_free (mainProject->path); if (!g_path_is_absolute(argv[i])) { gchar *fullName = g_build_filename (g_get_current_dir (), argv[i], NULL); gerbv_open_layer_from_filename_with_color (mainProject, fullName, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].red*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].green*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].blue*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].alpha*257); mainProject->path = g_path_get_dirname (fullName); g_free (fullName); } else { gerbv_open_layer_from_filename_with_color (mainProject, argv[i], mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].red*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].green*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].blue*257, mainDefaultColors[loadedIndex % NUMBER_OF_DEFAULT_COLORS].alpha*257); mainProject->path = g_path_get_dirname (argv[i]); } loadedIndex++; } } if (initial_rotation != 0.0) { /* Set initial layer orientation */ gdouble initial_radians = DEG2RAD(initial_rotation); dprintf("Rotating all layers by %.0f degrees\n", (float) initial_rotation); for(i = 0; i < mainProject->max_files; i++) { if (mainProject->file[i]) mainProject->file[i]->transform.rotation = initial_radians; } } if (initial_mirror_x || initial_mirror_y) { /* Set initial mirroring of all layers */ if (initial_mirror_x) { dprintf("Mirroring all layers about x axis\n"); } if (initial_mirror_y) { dprintf("Mirroring all layers about y axis\n"); } for (i = 0; i < mainProject->max_files; i++) { if (mainProject->file[i]) { mainProject->file[i]->transform.mirrorAroundX = initial_mirror_x; mainProject->file[i]->transform.mirrorAroundY = initial_mirror_y; } } } if (exportType != EXP_TYPE_NONE) { /* load the info struct with the default values */ if (!exportFilename) exportFilename = export_def_file_names[exportType]; gerbv_render_size_t bb; gerbv_render_get_boundingbox(mainProject, &bb); // Set origin to the left-bottom corner if it is not specified if(!userSuppliedOrigin){ userSuppliedOriginX = bb.left; userSuppliedOriginY = bb.top; } float width = bb.right - userSuppliedOriginX + 0.001; // Plus a little extra to prevent from float height = bb.bottom - userSuppliedOriginY + 0.001; // missing items due to round-off errors // If the user did not specify a height and width, autoscale w&h till full size from origin. if(!userSuppliedWindow){ userSuppliedWidth = width; userSuppliedHeight = height; }else{ // If size was specified in pixels, and no resolution was specified, autoscale resolution till fit if( (!userSuppliedDpi)&& userSuppliedWindowInPixels){ userSuppliedDpiX = MIN((userSuppliedWidth-0.5)/width, (userSuppliedHeight-0.5)/height); userSuppliedDpiY = userSuppliedDpiX; userSuppliedOriginX -= 0.5/userSuppliedDpiX; userSuppliedOriginY -= 0.5/userSuppliedDpiY; } } // Add the border size (if there is one) if(userSuppliedBorder!=0){ // If supplied in inches, add a border around the image if(!userSuppliedWindowInPixels){ userSuppliedOriginX -= (userSuppliedWidth*userSuppliedBorder)/2.0; userSuppliedOriginY -= (userSuppliedHeight*userSuppliedBorder)/2.0; userSuppliedWidth += userSuppliedWidth*userSuppliedBorder; userSuppliedHeight += userSuppliedHeight*userSuppliedBorder; } // If supplied in pixels, shrink image content for border_size else{ userSuppliedOriginX -= ((userSuppliedWidth/userSuppliedDpiX)*userSuppliedBorder)/2.0; userSuppliedOriginY -= ((userSuppliedHeight/userSuppliedDpiX)*userSuppliedBorder)/2.0; userSuppliedDpiX -= (userSuppliedDpiX*userSuppliedBorder); userSuppliedDpiY -= (userSuppliedDpiY*userSuppliedBorder); } } if(!userSuppliedWindowInPixels){ userSuppliedWidth *= userSuppliedDpiX; userSuppliedHeight *= userSuppliedDpiY; } // Make sure there is something valid in it. It could become negative if // the userSuppliedOrigin is further than the bb.right or bb.top. if(userSuppliedWidth <=0) userSuppliedWidth = 1; if(userSuppliedHeight <=0) userSuppliedHeight = 1; gerbv_render_info_t renderInfo = {userSuppliedDpiX, userSuppliedDpiY, userSuppliedOriginX, userSuppliedOriginY, userSuppliedAntiAlias? GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY: GERBV_RENDER_TYPE_CAIRO_NORMAL, userSuppliedWidth,userSuppliedHeight }; switch (exportType) { case EXP_TYPE_PNG: gerbv_export_png_file_from_project(mainProject, &renderInfo, exportFilename); break; case EXP_TYPE_PDF: gerbv_export_pdf_file_from_project(mainProject, &renderInfo, exportFilename); break; case EXP_TYPE_SVG: gerbv_export_svg_file_from_project(mainProject, &renderInfo, exportFilename); break; case EXP_TYPE_PS: gerbv_export_postscript_file_from_project(mainProject, &renderInfo, exportFilename); break; case EXP_TYPE_RS274X: case EXP_TYPE_DRILL: case EXP_TYPE_IDRILL: if (!mainProject->file[0]->image) { fprintf(stderr, _("A valid file was not loaded.\n")); exit(1); } exportImage = gerbv_image_duplicate_image( mainProject->file[0]->image, &mainDefaultTransformations[0]); /* If more than one file, merge them before exporting */ for (i = mainProject->last_loaded; i > 0; i--) { if (mainProject->file[i]) gerbv_image_copy_image(mainProject->file[i]->image, &mainDefaultTransformations[i], exportImage); } switch (exportType) { case EXP_TYPE_RS274X: gerbv_export_rs274x_file_from_image(exportFilename, exportImage, &mainProject->file[0]->transform); break; case EXP_TYPE_DRILL: gerbv_export_drill_file_from_image(exportFilename, exportImage, &mainProject->file[0]->transform); break; case EXP_TYPE_IDRILL: gerbv_export_isel_drill_file_from_image (exportFilename, exportImage, &mainProject->file[0]->transform); break; default: break; } gerbv_destroy_image (exportImage); break; default: fprintf(stderr, _("A valid file was not loaded.\n")); exit(1); } /* exit now and don't start up gtk if this is a command line export */ exit(0); } gtk_init (&argc, &argv); interface_create_gui (req_width, req_height); /* we've exited the GTK loop, so free all resources */ render_free_screen_resources(); gerbv_destroy_project (mainProject); return 0; } /* main */ static int getopt_configured(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex) { #ifdef HAVE_GETOPT_LONG return getopt_long(argc, argv, optstring, longopts, longindex); #else return getopt(argc, argv, optstring); #endif } static int getopt_lengh_unit(const char *optarg, double *input_div, gerbv_screen_t *screen) { if (strncasecmp(optarg, "mm", 2) == 0) { *input_div = 25.4; screen->unit = GERBV_MMS; screen->unit_is_from_cmdline = TRUE; } else if (strncasecmp(optarg, "mil", 3) == 0) { *input_div = 1000.0; screen->unit = GERBV_MILS; screen->unit_is_from_cmdline = TRUE; } else if (strncasecmp(optarg, "inch", 4) == 0) { *input_div = 1.0; screen->unit = GERBV_INS; screen->unit_is_from_cmdline = TRUE; } else { return 0; } return 1; } static void gerbv_print_help(void) { printf(_( "Usage: gerbv [OPTIONS...] [FILE...]\n" "\n" "Available options:\n")); #ifdef HAVE_GETOPT_LONG printf(_( " -B, --border= Border around the image in percent of the\n" " width/height. Defaults to %d%%.\n"), (int)(100*GERBV_DEFAULT_BORDER_COEFF)); #else printf(_( " -B Border around the image in percent of the\n" " width/height. Defaults to %d%%.\n"), (int)(100*GERBV_DEFAULT_BORDER_COEFF)); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -D, --dpi= Resolution (Dots per inch) for the output\n" " bitmap. With the format , different\n" " resolutions for X- and Y-direction are used.\n" " With the format , both are the same.\n")); #else printf(_( " -D Resolution (Dots per inch) for the output\n" " bitmap. With the format , different\n" " resolutions for X- and Y-direction are used.\n" " With the format , both are the same.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -O, --origin= Use the specified coordinates (in inches)\n" " for the lower left corner.\n")); #else printf(_( " -O Use the specified coordinates (in inches)\n" " for the lower left corner.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -V, --version Print version of Gerbv.\n")); #else printf(_( " -V Print version of Gerbv.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -a, --antialias Use antialiasing for generated bitmap output.\n")); #else printf(_( " -a Use antialiasing for generated bitmap output.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -b, --background= Use background color (like #RRGGBB).\n")); #else printf(_( " -b Use background color (like #RRGGBB).\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -f, --foreground= Use foreground color (like #RRGGBB or\n" " #RRGGBBAA for setting the alpha).\n" " Use multiple -f flags to set the color for\n" " multiple layers.\n")); #else printf(_( " -f Use foreground color (like #RRGGBB or\n" " #RRGGBBAA for setting the alpha).\n" " Use multiple -f flags to set the color for\n" " multiple layers.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -r, --rotate= Set initial orientation for all layers.\n")); #else printf(_( " -r Set initial orientation for all layers.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -m, --mirror= Set initial mirroring axis (X or Y).\n")); #else printf(_( " -m Set initial mirroring axis (X or Y).\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -h, --help Print this help message.\n")); #else printf(_( " -h Print this help message.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -l, --log= Send error messages to .\n")); #else printf(_( " -l Send error messages to .\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -o, --output= Export to .\n")); #else printf(_( " -o Export to .\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -p, --project= Load project file .\n")); #else printf(_( " -p Load project file .\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -u, --units=\n" " Use given unit for coordinates.\n" " Default to inch.\n")); #else printf(_( " -u Use given unit for coordinates.\n" " Default to inch.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -W, --window_inch= Window size in inches for the exported image.\n")); #else printf(_( " -W Window size in inches for the exported image.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -w, --window= Window size in pixels for the exported image.\n" " Autoscales to fit if no resolution is specified.\n" " If a resolution is specified, it will clip\n" " exported image.\n")); #else printf(_( " -w Window size in pixels for the exported image.\n" " Autoscales to fit if no resolution is specified.\n" " If a resolution is specified, it will clip\n" " exported image.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -t, --tools= Read Excellon tools from file .\n")); #else printf(_( " -t Read Excellon tools from file \n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -T, --translate= Useful for arranging panels.\n" " Use multiple -T flags for multiple layers.\n" " Only evaluated when exporting as RS274X or drill.\n")); #else printf(_( " -T Translate image by X and Y and rotate by R degree.\n" " Useful for arranging panels.\n" " Use multiple -T flags for multiple files.\n" " Only evaluated when exporting as RS274X or drill.\n")); #endif #ifdef HAVE_GETOPT_LONG printf(_( " -x, --export=\n" " Export a rendered picture to a file with\n" " the specified format.\n")); #else printf(_( " -x\n")); #endif } gerbv-2.7.0/src/gerber.h0000644000175000017500000000507713421555714014733 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerber.h \brief Header info for the RS274X parsing functions \ingroup libgerbv */ #ifndef GERBER_H #define GERBER_H #ifdef __cplusplus extern "C" { #endif #include #include #include "gerb_file.h" typedef struct gerb_state { int curr_x; int curr_y; int prev_x; int prev_y; int delta_cp_x; int delta_cp_y; int curr_aperture; int changed; gerbv_aperture_state_t aperture_state; gerbv_interpolation_t interpolation; gerbv_interpolation_t prev_interpolation; gerbv_net_t *parea_start_node; gerbv_layer_t *layer; gerbv_netstate_t *state; int in_parea_fill; int mq_on; /* Is multiquadrant circular iterpolation */ } gerb_state_t; /* * parse gerber file pointed to by fd */ gerbv_image_t *parse_gerb(gerb_file_t *fd, gchar *directoryPath); gboolean gerber_is_rs274x_p(gerb_file_t *fd, gboolean *returnFoundBinary); gboolean gerber_is_rs274d_p(gerb_file_t *fd); gerbv_net_t * gerber_create_new_net (gerbv_net_t *currentNet, gerbv_layer_t *layer, gerbv_netstate_t *state); gboolean gerber_create_new_aperture (gerbv_image_t *image, int *indexNumber, gerbv_aperture_type_t apertureType, gdouble parameter1, gdouble parameter2); void gerber_update_image_min_max (gerbv_render_size_t *boundingBox, double repeat_off_X, double repeat_off_Y, gerbv_image_t* image); void gerber_update_min_and_max(gerbv_render_size_t *boundingBox, gdouble x, gdouble y, gdouble apertureSizeX1, gdouble apertureSizeX2,gdouble apertureSizeY1, gdouble apertureSizeY2); const char *gerber_d_code_name(int d_code); const char *gerber_g_code_name(int g_code); const char *gerber_m_code_name(int m_code); #ifdef __cplusplus } #endif #endif /* GERBER_H */ gerbv-2.7.0/src/attribute.c0000644000175000017500000003677313421555714015472 0ustar carstencarsten/* * COPYRIGHT * * gEDA - GNU Electronic Design Automation * This is a part of gerbv * * Copyright (C) 2008 Dan McMahill * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /** \file attribute.c \brief Dynamic GUI window creation functions \ingroup gerbv */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #include #include "common.h" #include "gerbv.h" #include "attribute.h" #include "main.h" #define dprintf if(DEBUG) printf static int auto_uncheck_needed = 0; static GtkWidget * auto_uncheck_widget = NULL; static int * auto_uncheck_attr = NULL; static GtkWidget ** all_widgets = NULL; static int n_widgets; static void clear_auto() { if( auto_uncheck_needed && auto_uncheck_widget != NULL && auto_uncheck_attr != NULL) { /* disable this bit of code so we don't enter an endless loop */ auto_uncheck_needed = 0; /* uncheck the "auto" toggle button */ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (auto_uncheck_widget), 0); /* store that we have unchecked the "auto" toggle button */ *auto_uncheck_attr = 0; /* re-enable this bit of code */ auto_uncheck_needed = 1; } } /* Callback for toggling a boolean attribute */ static void set_flag_cb (GtkToggleButton * button, gboolean * flag) { int i, f; *flag = gtk_toggle_button_get_active (button); /* * if this is the "auto" button then set/clear the sensitivity of * everything else. Otherwise call the clear_auto() function */ if (auto_uncheck_widget == GTK_WIDGET (button)) { f = *flag ? 0 : 1; for (i = 1 ; i < n_widgets ; i++) { gtk_widget_set_sensitive (all_widgets[i], f); } } else { clear_auto (); } } /* Callback for setting an integer value */ static void intspinner_changed_cb (GtkWidget * spin_button, gpointer data) { int *ival = data; *ival = gtk_spin_button_get_value (GTK_SPIN_BUTTON (spin_button)); clear_auto (); } /* Callback for setting a floating point value */ static void dblspinner_changed_cb (GtkWidget * spin_button, gpointer data) { double *dval = data; *dval = gtk_spin_button_get_value (GTK_SPIN_BUTTON (spin_button)); clear_auto (); } /* Callback for setting an string value */ static void entry_changed_cb (GtkEntry * entry, char **str) { const gchar *s; s = gtk_entry_get_text (entry); if (*str) free (*str); *str = strdup (s); clear_auto (); } /* Callback for setting an enum value */ static void enum_changed_cb (GtkWidget * combo_box, int *val) { gint active; active = gtk_combo_box_get_active (GTK_COMBO_BOX (combo_box)); *val = active; clear_auto (); } /* Utility function for building a vbox with a text label */ /* Written by Bill Wilson for PCB */ static GtkWidget * ghid_category_vbox (GtkWidget * box, const gchar * category_header, gint header_pad, gint box_pad, gboolean pack_start, gboolean bottom_pad) { GtkWidget *vbox, *vbox1, *hbox, *label; gchar *s; vbox = gtk_vbox_new (FALSE, 0); if (pack_start) gtk_box_pack_start (GTK_BOX (box), vbox, FALSE, FALSE, 0); else gtk_box_pack_end (GTK_BOX (box), vbox, FALSE, FALSE, 0); if (category_header) { label = gtk_label_new (NULL); s = g_strconcat ("", category_header, "", NULL); gtk_label_set_markup (GTK_LABEL (label), s); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, header_pad); g_free (s); } hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); label = gtk_label_new (" "); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); vbox1 = gtk_vbox_new (FALSE, box_pad); gtk_box_pack_start (GTK_BOX (hbox), vbox1, TRUE, TRUE, 0); if (bottom_pad) { label = gtk_label_new (""); gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); } return vbox1; } /* Utility function for creating a spin button */ /* Written by Bill Wilson for PCB */ static void ghid_spin_button (GtkWidget * box, GtkWidget ** spin_button, gfloat value, gfloat low, gfloat high, gfloat step0, gfloat step1, gint digits, gint width, void (*cb_func) (), gpointer data, gboolean right_align, gchar * string) { GtkWidget *hbox = NULL, *label, *spin_but; GtkSpinButton *spin; GtkAdjustment *adj; if (string && box) { hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (box), hbox, FALSE, FALSE, 2); box = hbox; } adj = (GtkAdjustment *) gtk_adjustment_new (value, low, high, step0, step1, 0.0); spin_but = gtk_spin_button_new (adj, 0.5, digits); if (spin_button) *spin_button = spin_but; if (width > 0) gtk_widget_set_size_request (spin_but, width, -1); spin = GTK_SPIN_BUTTON (spin_but); gtk_spin_button_set_numeric (spin, TRUE); if (data == NULL) data = (gpointer) spin; if (cb_func) g_signal_connect (G_OBJECT (spin_but), "value_changed", G_CALLBACK (cb_func), data); if (box) { if (right_align && string) { label = gtk_label_new (string); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 2); } gtk_box_pack_start (GTK_BOX (box), spin_but, FALSE, FALSE, 2); if (!right_align && string) { label = gtk_label_new (string); gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 2); } } } /* Utility function for creating a check button */ /* Written by Bill Wilson for PCB */ static void ghid_check_button_connected (GtkWidget * box, GtkWidget ** button, gboolean active, gboolean pack_start, gboolean expand, gboolean fill, gint pad, void (*cb_func) (), gpointer data, gchar * string) { GtkWidget *b; if (!string) return; b = gtk_check_button_new_with_label (string); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (b), active); if (box && pack_start) gtk_box_pack_start (GTK_BOX (box), b, expand, fill, pad); else if (box && !pack_start) gtk_box_pack_end (GTK_BOX (box), b, expand, fill, pad); if (cb_func) gtk_signal_connect (GTK_OBJECT (b), "clicked", GTK_SIGNAL_FUNC (cb_func), data); if (button) *button = b; } /* * The following function is taken almost directly from * ghid_attribte_dialog() from pcb. It is a generic attribute editor * gui where the dialog is built on the fly based on a passed in * attribute list. * * Written by Dan McMahill */ int attribute_interface_dialog (gerbv_HID_Attribute * attrs, int n_attrs, gerbv_HID_Attr_Val * results, const char * title, const char * descr) { GtkWidget *dialog, *main_vbox, *vbox, *vbox1, *hbox, *entry; GtkWidget *combo; GtkWidget *widget; int i, j; GtkTooltips *tips; int rc = 0; int set_auto_uncheck = 0; int sen = TRUE; /* * Store how many widgets we'll have in our dialog and keep track of * them. Be sure to free up our list if one existed already. */ n_widgets = n_attrs; if (all_widgets != NULL) free (all_widgets); all_widgets = (GtkWidget **) malloc (n_widgets * sizeof(GtkWidget *)); if (all_widgets == NULL) { fprintf (stderr, "%s(): malloc failed for an array of size %d\n", __FUNCTION__, n_widgets); exit (1); } dprintf ("%s(%p, %d, %p, \"%s\", \"%s\")\n", __FUNCTION__, attrs, n_attrs, results, title, descr); auto_uncheck_needed = 0; auto_uncheck_widget = NULL; auto_uncheck_attr = NULL; tips = gtk_tooltips_new (); dialog = gtk_dialog_new_with_buttons (title, GTK_WINDOW (screen.win.topLevelWindow), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_CANCEL, GTK_RESPONSE_NONE, GTK_STOCK_OK, GTK_RESPONSE_OK, NULL); gtk_window_set_wmclass (GTK_WINDOW (dialog), "gerbv_attribute_editor", _("gerbv")); main_vbox = gtk_vbox_new (FALSE, 6); gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 6); gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), main_vbox); vbox = ghid_category_vbox (main_vbox, descr != NULL ? descr : "", 4, 2, TRUE, TRUE); /* * Iterate over all the attributes and build up a dialog box * that lets us control all of the options. By doing things this * way, any changes to the attributes or if there is a new list of * attributes, everything will automatically be reflected in this * dialog box. */ for (j = 0; j < n_attrs; j++) { dprintf ("%s(): adding attribute #%d\n", __func__, j); switch (attrs[j].type) { case HID_Label: widget = gtk_label_new (_(attrs[j].name)); gtk_box_pack_start (GTK_BOX (vbox), widget, FALSE, FALSE, 0); gtk_tooltips_set_tip (tips, widget, _(attrs[j].help_text), NULL); break; case HID_Integer: hbox = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); /* * FIXME * need to pick the "digits" argument based on min/max * values */ ghid_spin_button (hbox, &widget, attrs[j].default_val.int_value, attrs[j].min_val, attrs[j].max_val, 1.0, 1.0, 0, 0, intspinner_changed_cb, &(attrs[j].default_val.int_value), FALSE, NULL); gtk_tooltips_set_tip (tips, widget, _(attrs[j].help_text), NULL); all_widgets[j] = widget; widget = gtk_label_new (_(attrs[j].name)); gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0); break; case HID_Real: hbox = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); /* * FIXME * need to pick the "digits" and step size argument more * intelligently */ ghid_spin_button (hbox, &widget, attrs[j].default_val.real_value, attrs[j].min_val, attrs[j].max_val, 0.01, 0.01, 3, 0, dblspinner_changed_cb, &(attrs[j].default_val.real_value), FALSE, NULL); gtk_tooltips_set_tip (tips, widget, _(attrs[j].help_text), NULL); all_widgets[j] = widget; widget = gtk_label_new (_(attrs[j].name)); gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0); break; case HID_String: hbox = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); entry = gtk_entry_new (); gtk_box_pack_start (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_entry_set_text (GTK_ENTRY (entry), attrs[j].default_val.str_value); gtk_tooltips_set_tip (tips, entry, _(attrs[j].help_text), NULL); g_signal_connect (G_OBJECT (entry), "changed", G_CALLBACK (entry_changed_cb), &(attrs[j].default_val.str_value)); all_widgets[j] = entry; widget = gtk_label_new (_(attrs[j].name)); gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0); break; case HID_Boolean: /* put this in a check button */ ghid_check_button_connected (vbox, &widget, attrs[j].default_val.int_value, TRUE, FALSE, FALSE, 0, set_flag_cb, &(attrs[j].default_val.int_value), _(attrs[j].name)); gtk_tooltips_set_tip (tips, widget, _(attrs[j].help_text), NULL); /* * This is an ugly ugly ugly hack.... If this is * the first in our list of attributes *and* it has a * magic name of "autodetect" then we'll remember it and * all of the other callbacks will cause this button to * come unchecked. Among the other nastiness * involved here, this dialog is now *required* to * be modal since we are using a static variable. * To avoid that, we need a new data type that can hold * more state information. Ideally we need a better * way to capture dependencies between attributes to * allow arbitrary relationships instead of just this * one single "magic" one. */ if (j == 0 && strcmp(attrs[j].name, "autodetect") == 0) { set_auto_uncheck = 1; auto_uncheck_widget = widget; auto_uncheck_attr = &(attrs[j].default_val.int_value); /* if the "auto" button in checked then don't let * anything else be sensitive. */ if (attrs[j].default_val.int_value) sen = FALSE; } all_widgets[j] = widget; break; case HID_Enum: hbox = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); /* * We have to put the combo_box inside of an event_box in * order for tooltips to work. */ widget = gtk_event_box_new (); gtk_tooltips_set_tip (tips, widget, _(attrs[j].help_text), NULL); gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0); combo = gtk_combo_box_new_text (); gtk_container_add (GTK_CONTAINER (widget), combo); g_signal_connect (G_OBJECT (combo), "changed", G_CALLBACK (enum_changed_cb), &(attrs[j].default_val.int_value)); /* * Iterate through each value and add them to the * combo box */ i = 0; while (attrs[j].enumerations[i]) { gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _(attrs[j].enumerations[i])); i++; } gtk_combo_box_set_active (GTK_COMBO_BOX (combo), attrs[j].default_val.int_value); all_widgets[j] = combo; widget = gtk_label_new (_(attrs[j].name)); gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0); break; case HID_Mixed: dprintf ("HID_Mixed\n"); break; case HID_Path: vbox1 = ghid_category_vbox (vbox, _(attrs[j].name), 4, 2, TRUE, TRUE); entry = gtk_entry_new (); gtk_box_pack_start (GTK_BOX (vbox1), entry, FALSE, FALSE, 0); gtk_entry_set_text (GTK_ENTRY (entry), attrs[j].default_val.str_value); g_signal_connect (G_OBJECT (entry), "changed", G_CALLBACK (entry_changed_cb), &(attrs[j].default_val.str_value)); gtk_tooltips_set_tip (tips, entry, _(attrs[j].help_text), NULL); all_widgets[j] = entry; break; default: fprintf (stderr, _("%s: unknown type of HID attribute\n"), __FUNCTION__); break; } } gtk_widget_show_all (dialog); auto_uncheck_needed = set_auto_uncheck; /* * part of the "auto" hack. Make everything sensitive or * insensitive based on the state of the "auto" toggle button (if it * exists) */ for (j = 1; j < n_widgets ; j++) { gtk_widget_set_sensitive (all_widgets[j], sen); } if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) { /* copy over the results */ for (i = 0; i < n_attrs; i++) { results[i] = attrs[i].default_val; if (results[i].str_value) results[i].str_value = strdup (results[i].str_value); } rc = 0; } else rc = 1; gtk_widget_destroy (dialog); return rc; } gerbv-2.7.0/src/gerb_image.c0000644000175000017500000012125413421555714015535 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_image.c \brief This file contains general files for handling the gerbv_image_t structure \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include "common.h" #include "gerb_image.h" #include "gerber.h" #include "amacro.h" typedef struct { int oldAperture; int newAperture; } gerb_translation_entry_t; gerbv_image_t * gerbv_create_image(gerbv_image_t *image, const gchar *type) { gerbv_destroy_image(image); /* Malloc space for image */ if (NULL == (image = g_new0(gerbv_image_t, 1))) { return NULL; } /* Malloc space for image->netlist */ if (NULL == (image->netlist = g_new0(gerbv_net_t, 1))) { g_free(image); return NULL; } /* Malloc space for image->info */ if (NULL == (image->info = g_new0(gerbv_image_info_t, 1))) { g_free(image->netlist); g_free(image); return NULL; } /* Set aside position for stats struct */ image->gerbv_stats = NULL; image->drill_stats = NULL; image->info->min_x = HUGE_VAL; image->info->min_y = HUGE_VAL; image->info->max_x = -HUGE_VAL; image->info->max_y = -HUGE_VAL; /* create our first layer and fill with non-zero default values */ image->layers = g_new0 (gerbv_layer_t, 1); image->layers->stepAndRepeat.X = 1; image->layers->stepAndRepeat.Y = 1; image->layers->polarity = GERBV_POLARITY_DARK; /* create our first netstate and fill with non-zero default values */ image->states = g_new0 (gerbv_netstate_t, 1); image->states->scaleA = 1; image->states->scaleB = 1; /* fill in some values for our first net */ image->netlist->layer = image->layers; image->netlist->state = image->states; if (type == NULL) image->info->type = g_strdup (_("unknown")); else image->info->type = g_strdup (type); /* the individual file parsers will have to set this. */ image->info->attr_list = NULL; image->info->n_attr = 0; return image; } void gerbv_destroy_image(gerbv_image_t *image) { int i; gerbv_net_t *net, *tmp; gerbv_layer_t *layer; gerbv_netstate_t *state; gerbv_simplified_amacro_t *sam,*sam2; if(image==NULL) return; /* * Free apertures */ for (i = 0; i < APERTURE_MAX; i++) if (image->aperture[i] != NULL) { for (sam = image->aperture[i]->simplified; sam != NULL; ){ sam2 = sam->next; g_free (sam); sam = sam2; } g_free(image->aperture[i]); image->aperture[i] = NULL; } /* * Free aperture macro */ if (image->amacro) { free_amacro(image->amacro); } /* * Free format */ if (image->format) g_free(image->format); /* * Free info */ if (image->info) { g_free(image->info->name); g_free(image->info->type); gerbv_attribute_destroy_HID_attribute (image->info->attr_list, image->info->n_attr); g_free(image->info); } /* * Free netlist */ for (net = image->netlist; net != NULL; ) { tmp = net; net = net->next; if (tmp->cirseg != NULL) { g_free(tmp->cirseg); tmp->cirseg = NULL; } if (tmp->label) { g_string_free (tmp->label, TRUE); } g_free(tmp); tmp = NULL; } for (layer = image->layers; layer != NULL; ) { gerbv_layer_t *tempLayer = layer; layer = layer->next; g_free (tempLayer); } for (state = image->states; state != NULL; ) { gerbv_netstate_t *tempState = state; state = state->next; g_free (tempState); } gerbv_stats_destroy(image->gerbv_stats); gerbv_drill_stats_destroy(image->drill_stats); /* * Free and reset the final image */ g_free(image); image = NULL; return; } /* * Check that the parsed gerber image is complete. * Returned errorcodes are: * 0: No problems * 1: Missing netlist * 2: Missing format * 4: Missing apertures * 8: Missing info * It could be any of above or'ed together */ gerb_verify_error_t gerbv_image_verify(gerbv_image_t const* image) { gerb_verify_error_t error = GERB_IMAGE_OK; int i, n_nets;; gerbv_net_t *net; if (image->netlist == NULL) error |= GERB_IMAGE_MISSING_NETLIST; if (image->format == NULL) error |= GERB_IMAGE_MISSING_FORMAT; if (image->info == NULL) error |= GERB_IMAGE_MISSING_INFO; /* Count how many nets we have */ n_nets = 0; if (image->netlist != NULL) { for (net = image->netlist->next ; net != NULL; net = net->next) { n_nets++; } } /* If we have nets but no apertures are defined, then complain */ if( n_nets > 0) { for (i = 0; i < APERTURE_MAX && image->aperture[i] == NULL; i++); if (i == APERTURE_MAX) error |= GERB_IMAGE_MISSING_APERTURES; } return error; } /* gerb_image_verify */ static void gerbv_image_aperture_state(gerbv_aperture_state_t state) { switch (state) { case GERBV_APERTURE_STATE_OFF: printf(_("..state off")); break; case GERBV_APERTURE_STATE_ON: printf(_("..state on")); break; case GERBV_APERTURE_STATE_FLASH: printf(_("..state flash")); break; default: printf(_("..state unknown")); } } /* Dumps a written version of image to stdout */ void gerbv_image_dump(gerbv_image_t const* image) { int i, j; gerbv_aperture_t * const* aperture; gerbv_net_t const * net; /* Apertures */ printf(_("Apertures:\n")); aperture = image->aperture; for (i = 0; i < APERTURE_MAX; i++) { if (aperture[i]) { printf(_(" Aperture no:%d is an "), i); switch(aperture[i]->type) { case GERBV_APTYPE_CIRCLE: printf(_("circle")); break; case GERBV_APTYPE_RECTANGLE: printf(_("rectangle")); break; case GERBV_APTYPE_OVAL: printf(_("oval")); break; case GERBV_APTYPE_POLYGON: printf(_("polygon")); break; case GERBV_APTYPE_MACRO: printf(_("macro")); break; default: printf(_("unknown")); } for (j = 0; j < aperture[i]->nuf_parameters; j++) { printf(" %f", aperture[i]->parameter[j]); } printf("\n"); } } /* Netlist */ net = image->netlist; while (net){ printf(_("(%f,%f)->(%f,%f) with %d ("), net->start_x, net->start_y, net->stop_x, net->stop_y, net->aperture); printf(_(gerbv_interpolation_name(net->interpolation))); gerbv_image_aperture_state(net->aperture_state); printf(")\n"); net = net->next; } } /* gerbv_image_dump */ gerbv_layer_t * gerbv_image_return_new_layer (gerbv_layer_t *previousLayer) { gerbv_layer_t *newLayer = g_new0 (gerbv_layer_t, 1); *newLayer = *previousLayer; previousLayer->next = newLayer; /* clear this boolean so we only draw the knockout once */ newLayer->knockout.firstInstance = FALSE; newLayer->next = NULL; return newLayer; } /* gerbv_image_return_new_layer */ gerbv_netstate_t * gerbv_image_return_new_netstate (gerbv_netstate_t *previousState) { gerbv_netstate_t *newState = g_new0 (gerbv_netstate_t, 1); *newState = *previousState; previousState->next = newState; newState->scaleA = 1.0; newState->scaleB = 1.0; newState->next = NULL; return newState; } /* gerbv_image_return_new_netstate */ gerbv_layer_t * gerbv_image_duplicate_layer (gerbv_layer_t *oldLayer) { gerbv_layer_t *newLayer = g_new (gerbv_layer_t,1); *newLayer = *oldLayer; newLayer->name = g_strdup (oldLayer->name); return newLayer; } static gerbv_netstate_t * gerbv_image_duplicate_state (gerbv_netstate_t *oldState) { gerbv_netstate_t *newState = g_new (gerbv_netstate_t, 1); *newState = *oldState; return newState; } static gerbv_aperture_t * gerbv_image_duplicate_aperture (gerbv_aperture_t *oldAperture) { gerbv_aperture_t *newAperture = g_new0 (gerbv_aperture_t,1); gerbv_simplified_amacro_t *simplifiedMacro, *tempSimplified; *newAperture = *oldAperture; /* delete the amacro section, since we really don't need it anymore now that we have the simplified section */ newAperture->amacro = NULL; newAperture->simplified = NULL; /* copy any simplified macros over */ tempSimplified = NULL; for (simplifiedMacro = oldAperture->simplified; simplifiedMacro != NULL; simplifiedMacro = simplifiedMacro->next) { gerbv_simplified_amacro_t *newSimplified = g_new0 (gerbv_simplified_amacro_t,1); *newSimplified = *simplifiedMacro; if (tempSimplified) tempSimplified->next = newSimplified; else newAperture->simplified = newSimplified; tempSimplified = newSimplified; } return newAperture; } static void gerbv_image_copy_all_nets (gerbv_image_t *sourceImage, gerbv_image_t *destImage, gerbv_layer_t *lastLayer, gerbv_netstate_t *lastState, gerbv_net_t *lastNet, gerbv_user_transformation_t *trans, GArray *translationTable) { /* NOTE: destImage already contains apertures and data, * latest data is: lastLayer, lastState, lastNet. */ gerbv_net_t *currentNet, *newNet; gerbv_aperture_type_t aper_type; gerbv_aperture_t *aper; gerbv_simplified_amacro_t *sam; int *trans_apers = NULL; /* Transformed apertures */ int aper_last_id = 0; guint err_scale_circle = 0, err_scale_line_macro = 0, err_scale_poly_macro = 0, err_scale_thermo_macro = 0, err_scale_moire_macro = 0, err_unknown_aperture = 0, err_unknown_macro_aperture = 0, err_rotate_oval = 0, err_rotate_rect = 0; guint i; if (trans && (trans->mirrorAroundX || trans->mirrorAroundY)) { if (sourceImage->layertype != GERBV_LAYERTYPE_DRILL) { GERB_COMPILE_ERROR(_("Exporting mirrored file " "is not supported!")); return; } } if (trans && trans->inverted) { GERB_COMPILE_ERROR(_("Exporting inverted file " "is not supported!")); return; } if (trans) { /* Find last used aperture to add transformed apertures if * needed */ for (aper_last_id = APERTURE_MAX - 1; aper_last_id > 0; aper_last_id--) { if (destImage->aperture[aper_last_id] != NULL) break; } trans_apers = g_new (int, aper_last_id + 1); /* Initialize trans_apers array */ for (i = 0; i < aper_last_id + 1; i++) trans_apers[i] = -1; } for (currentNet = sourceImage->netlist; currentNet != NULL; currentNet = currentNet->next) { /* Check for any new layers and duplicate them if needed */ if (currentNet->layer != lastLayer) { lastLayer->next = gerbv_image_duplicate_layer (currentNet->layer); lastLayer = lastLayer->next; } /* Check for any new states and duplicate them if needed */ if (currentNet->state != lastState) { lastState->next = gerbv_image_duplicate_state (currentNet->state); lastState = lastState->next; } /* Create and copy the actual net over */ newNet = g_new (gerbv_net_t, 1); *newNet = *currentNet; if (currentNet->cirseg) { newNet->cirseg = g_new (gerbv_cirseg_t, 1); *(newNet->cirseg) = *(currentNet->cirseg); } if (currentNet->label) newNet->label = g_string_new (currentNet->label->str); else newNet->label = NULL; newNet->state = lastState; newNet->layer = lastLayer; if (lastNet) lastNet->next = newNet; else destImage->netlist = newNet; lastNet = newNet; /* Check if we need to translate the aperture number */ if (translationTable) { for (i = 0; i < translationTable->len; i++) { gerb_translation_entry_t translationEntry; translationEntry = g_array_index (translationTable, gerb_translation_entry_t, i); if (translationEntry.oldAperture == newNet->aperture) { newNet->aperture = translationEntry.newAperture; break; } } } if (trans == NULL) continue; /* Transforming coords */ gerbv_transform_coord (&newNet->start_x, &newNet->start_y, trans); gerbv_transform_coord (&newNet->stop_x, &newNet->stop_y, trans); if (newNet->cirseg) { /* Circular interpolation only exported by start, stop * end center coordinates. */ gerbv_transform_coord (&newNet->cirseg->cp_x, &newNet->cirseg->cp_y, trans); } if (destImage->aperture[newNet->aperture] == NULL) continue; if (trans->scaleX == 1.0 && trans->scaleY == 1.0 && fabs(trans->rotation) < GERBV_PRECISION_ANGLE_RAD) continue; /* Aperture is already transformed, use it */ if (trans_apers[newNet->aperture] != -1) { newNet->aperture = trans_apers[newNet->aperture]; continue; } /* Transforming apertures */ aper_type = destImage->aperture[newNet->aperture]->type; switch (aper_type) { case GERBV_APTYPE_NONE: case GERBV_APTYPE_POLYGON: break; case GERBV_APTYPE_CIRCLE: if (trans->scaleX == trans->scaleY && trans->scaleX == 1.0) { break; } if (trans->scaleX == trans->scaleY) { aper = gerbv_image_duplicate_aperture ( destImage->aperture[ newNet->aperture]); aper->parameter[0] *= trans->scaleX; trans_apers[newNet->aperture] = ++aper_last_id; destImage->aperture[aper_last_id] = aper; newNet->aperture = aper_last_id; } else { err_scale_circle++; } break; case GERBV_APTYPE_RECTANGLE: case GERBV_APTYPE_OVAL: if (trans->scaleX == 1.0 && trans->scaleY == 1.0 && fabs(fabs(trans->rotation) - M_PI) < GERBV_PRECISION_ANGLE_RAD) break; aper = gerbv_image_duplicate_aperture ( destImage->aperture[newNet->aperture]); aper->parameter[0] *= trans->scaleX; aper->parameter[1] *= trans->scaleY; if (fabs(fabs(trans->rotation) - M_PI_2) < GERBV_PRECISION_ANGLE_RAD || fabs(fabs(trans->rotation) - (M_PI+M_PI_2)) < GERBV_PRECISION_ANGLE_RAD) { double t = aper->parameter[0]; aper->parameter[0] = aper->parameter[1]; aper->parameter[1] = t; } else { if (aper_type == GERBV_APTYPE_RECTANGLE) err_rotate_rect++; /* TODO: make line21 macro */ else err_rotate_oval++; break; } trans_apers[newNet->aperture] = ++aper_last_id; destImage->aperture[aper_last_id] = aper; newNet->aperture = aper_last_id; break; case GERBV_APTYPE_MACRO: aper = gerbv_image_duplicate_aperture ( destImage->aperture[newNet->aperture]); sam = aper->simplified; for (; sam != NULL; sam = sam->next) { switch (sam->type) { case GERBV_APTYPE_MACRO_CIRCLE: /* TODO: test circle macro center rotation */ sam->parameter[CIRCLE_CENTER_X] *= trans->scaleX; sam->parameter[CIRCLE_CENTER_Y] *= trans->scaleY; gerbv_rotate_coord( sam->parameter +CIRCLE_CENTER_X, sam->parameter +CIRCLE_CENTER_Y, trans->rotation); if (trans->scaleX != trans->scaleY) { err_scale_circle++; break; } sam->parameter[CIRCLE_DIAMETER] *= trans->scaleX; break; case GERBV_APTYPE_MACRO_LINE20: /* Vector line rectangle */ if (trans->scaleX == trans->scaleY) { sam->parameter[LINE20_LINE_WIDTH] *= trans->scaleX; } else if (sam->parameter[LINE20_START_X] == sam->parameter[LINE20_END_X]) { sam->parameter[LINE20_LINE_WIDTH] *= trans->scaleX; /* Vertical */ } else if (sam->parameter[LINE20_START_Y] == sam->parameter[LINE20_END_Y]) { sam->parameter[LINE20_LINE_WIDTH] *= trans->scaleY; /* Horizontal */ } else { /* TODO: make outline macro */ err_scale_line_macro++; break; } sam->parameter[LINE20_START_X] *= trans->scaleX; sam->parameter[LINE20_START_Y] *= trans->scaleY; sam->parameter[LINE20_END_X] *= trans->scaleX; sam->parameter[LINE20_END_Y] *= trans->scaleY; /* LINE20_START_X, LINE20_START_Y, * LINE20_END_X, LINE20_END_Y are not * rotated, change only rotation angle */ sam->parameter[LINE20_ROTATION] += RAD2DEG(trans->rotation); break; /* Compile time check if LINE21 and LINE22 parameters indexes are equal */ #if (LINE21_WIDTH != LINE22_WIDTH) \ || (LINE21_HEIGHT != LINE22_HEIGHT) \ || (LINE21_ROTATION != LINE22_ROTATION) \ || (LINE21_CENTER_X != LINE22_LOWER_LEFT_X) \ || (LINE21_CENTER_Y != LINE22_LOWER_LEFT_Y) # error "LINE21 and LINE22 indexes are not equal" #endif case GERBV_APTYPE_MACRO_LINE21: /* Centered line rectangle */ case GERBV_APTYPE_MACRO_LINE22: /* Lower left line rectangle */ /* Using LINE21 parameters array * indexes for LINE21 and LINE22, as * they are equal */ if (trans->scaleX == trans->scaleY) { sam->parameter[LINE21_WIDTH] *= trans->scaleX; sam->parameter[LINE21_HEIGHT] *= trans->scaleX; } else if (fabs(sam->parameter[LINE21_ROTATION]) == 0 || fabs(sam->parameter[LINE21_ROTATION]) == 180) { sam->parameter[LINE21_WIDTH] *= trans->scaleX; sam->parameter[LINE21_HEIGHT] *= trans->scaleY; } else if (fabs(sam->parameter[LINE21_ROTATION]) == 90 || fabs(sam->parameter[LINE21_ROTATION]) == 270) { double t; t = sam->parameter[LINE21_WIDTH]; sam->parameter[LINE21_WIDTH] = trans->scaleY * sam->parameter[ LINE21_HEIGHT]; sam->parameter[LINE21_HEIGHT] = trans->scaleX * t; } else { /* TODO: make outline macro */ err_scale_line_macro++; break; } sam->parameter[LINE21_CENTER_X] *= trans->scaleX; sam->parameter[LINE21_CENTER_Y] *= trans->scaleY; sam->parameter[LINE21_ROTATION] += RAD2DEG(trans->rotation); gerbv_rotate_coord( sam->parameter +LINE21_CENTER_X, sam->parameter +LINE21_CENTER_Y, trans->rotation); break; case GERBV_APTYPE_MACRO_OUTLINE: for (i = 0; i < 1 + sam->parameter[ OUTLINE_NUMBER_OF_POINTS]; i++) { sam->parameter[OUTLINE_X_IDX_OF_POINT(i)] *= trans->scaleX; sam->parameter[OUTLINE_Y_IDX_OF_POINT(i)] *= trans->scaleY; } sam->parameter[OUTLINE_ROTATION_IDX(sam->parameter)] += RAD2DEG(trans->rotation); break; #if 0 { /* TODO */ #include "main.h" gerbv_selection_item_t sItem = {sourceImage, currentNet}; selection_add_item (&screen.selectionInfo, &sItem); } #endif case GERBV_APTYPE_MACRO_POLYGON: if (trans->scaleX == trans->scaleY) { sam->parameter[POLYGON_CENTER_X] *= trans->scaleX; sam->parameter[POLYGON_CENTER_Y] *= trans->scaleX; sam->parameter[POLYGON_DIAMETER] *= trans->scaleX; } else { /* TODO: make outline macro */ err_scale_poly_macro++; break; } sam->parameter[POLYGON_ROTATION] += RAD2DEG(trans->rotation); break; case GERBV_APTYPE_MACRO_MOIRE: if (trans->scaleX == trans->scaleY) { sam->parameter[MOIRE_CENTER_X] *= trans->scaleX; sam->parameter[MOIRE_CENTER_Y] *= trans->scaleX; sam->parameter[MOIRE_OUTSIDE_DIAMETER] *= trans->scaleX; sam->parameter[MOIRE_CIRCLE_THICKNESS] *= trans->scaleX; sam->parameter[MOIRE_GAP_WIDTH] *= trans->scaleX; sam->parameter[MOIRE_CROSSHAIR_THICKNESS] *= trans->scaleX; sam->parameter[MOIRE_CROSSHAIR_LENGTH] *= trans->scaleX; } else { err_scale_moire_macro++; break; } sam->parameter[MOIRE_ROTATION] += RAD2DEG(trans->rotation); break; case GERBV_APTYPE_MACRO_THERMAL: if (trans->scaleX == trans->scaleY) { sam->parameter[THERMAL_CENTER_X] *= trans->scaleX; sam->parameter[THERMAL_CENTER_Y] *= trans->scaleX; sam->parameter[THERMAL_INSIDE_DIAMETER] *= trans->scaleX; sam->parameter[THERMAL_OUTSIDE_DIAMETER] *= trans->scaleX; sam->parameter[THERMAL_CROSSHAIR_THICKNESS] *= trans->scaleX; } else { err_scale_thermo_macro++; break; } sam->parameter[THERMAL_ROTATION] += RAD2DEG(trans->rotation); break; default: /* TODO: free aper if it is skipped (i.e. unused)? */ err_unknown_macro_aperture++; } } trans_apers[newNet->aperture] = ++aper_last_id; destImage->aperture[aper_last_id] = aper; newNet->aperture = aper_last_id; break; default: err_unknown_aperture++; } } if (err_rotate_rect) GERB_COMPILE_ERROR(ngettext( "Can't rotate %u rectangular aperture to %.2f " "degrees (non 90 multiply)!", "Can't rotate %u rectangular apertures to %.2f " "degrees (non 90 multiply)!", err_rotate_rect), err_rotate_rect, RAD2DEG(trans->rotation)); if (err_scale_line_macro) GERB_COMPILE_ERROR(ngettext( "Can't scale %u line macro!", "Can't scale %u line macros!", err_scale_line_macro), err_scale_line_macro); if (err_scale_poly_macro) GERB_COMPILE_ERROR(ngettext( "Can't scale %u polygon macro!", "Can't scale %u polygon macros!", err_scale_poly_macro), err_scale_poly_macro); if (err_scale_thermo_macro) GERB_COMPILE_ERROR(ngettext( "Can't scale %u thermal macro!", "Can't scale %u thermal macros!", err_scale_poly_macro), err_scale_poly_macro); if (err_scale_moire_macro) GERB_COMPILE_ERROR(ngettext( "Can't scale %u moire macro!", "Can't scale %u moire macros!", err_scale_poly_macro), err_scale_poly_macro); if (err_rotate_oval) GERB_COMPILE_ERROR(ngettext( "Can't rotate %u oval aperture to %.2f " "degrees (non 90 multiply)!", "Can't rotate %u oval apertures to %.2f " "degrees (non 90 multiply)!", err_rotate_oval), err_rotate_oval, RAD2DEG(trans->rotation)); if (err_scale_circle) GERB_COMPILE_ERROR(ngettext( "Can't scale %u circle aperture to ellipse!", "Can't scale %u circle apertures to ellipse!", err_scale_circle), err_scale_circle); if (err_unknown_aperture) GERB_COMPILE_ERROR(ngettext( "Skipped %u aperture with unknown type!", "Skipped %u apertures with unknown type!", err_unknown_aperture), err_unknown_aperture); if (err_unknown_macro_aperture) GERB_COMPILE_ERROR(ngettext( "Skipped %u macro aperture!", "Skipped %u macro apertures!", err_unknown_macro_aperture), err_unknown_macro_aperture); g_free (trans_apers); } gint gerbv_image_find_existing_aperture_match (gerbv_aperture_t *checkAperture, gerbv_image_t *imageToSearch) { int i,j; gboolean isMatch; for (i = 0; i < APERTURE_MAX; i++) { if (imageToSearch->aperture[i] != NULL) { if ((imageToSearch->aperture[i]->type == checkAperture->type) && (imageToSearch->aperture[i]->simplified == NULL) && (imageToSearch->aperture[i]->unit == checkAperture->unit)) { /* check all parameters match too */ isMatch=TRUE; for (j=0; japerture[i]->parameter[j] != checkAperture->parameter[j]) isMatch = FALSE; } if (isMatch) return i; } } } return 0; } int gerbv_image_find_unused_aperture_number (int startIndex, gerbv_image_t *image){ int i; for (i = startIndex; i < APERTURE_MAX; i++) { if (image->aperture[i] == NULL) { return i; } } return -1; } gerbv_image_t * gerbv_image_duplicate_image (gerbv_image_t *sourceImage, gerbv_user_transformation_t *transform) { gerbv_image_t *newImage = gerbv_create_image(NULL, sourceImage->info->type); int i; int lastUsedApertureNumber = APERTURE_MIN - 1; GArray *apertureNumberTable = g_array_new(FALSE,FALSE,sizeof(gerb_translation_entry_t)); newImage->layertype = sourceImage->layertype; /* copy information layer over */ *(newImage->info) = *(sourceImage->info); newImage->info->name = g_strdup (sourceImage->info->name); newImage->info->type = g_strdup (sourceImage->info->type); newImage->info->plotterFilm = g_strdup (sourceImage->info->plotterFilm); newImage->info->attr_list = gerbv_attribute_dup (sourceImage->info->attr_list, sourceImage->info->n_attr); /* copy apertures over, compressing all the numbers down for a cleaner output, and moving and apertures less than 10 up to the correct range */ for (i = 0; i < APERTURE_MAX; i++) { if (sourceImage->aperture[i] != NULL) { gerbv_aperture_t *newAperture = gerbv_image_duplicate_aperture (sourceImage->aperture[i]); lastUsedApertureNumber = gerbv_image_find_unused_aperture_number (lastUsedApertureNumber + 1, newImage); /* store the aperture numbers (new and old) in the translation table */ gerb_translation_entry_t translationEntry={i,lastUsedApertureNumber}; g_array_append_val (apertureNumberTable,translationEntry); newImage->aperture[lastUsedApertureNumber] = newAperture; } } /* step through all nets and create new layers and states on the fly, since we really don't have any other way to figure out where states and layers are used */ gerbv_image_copy_all_nets (sourceImage, newImage, newImage->layers, newImage->states, NULL, transform, apertureNumberTable); g_array_free (apertureNumberTable, TRUE); return newImage; } void gerbv_image_copy_image (gerbv_image_t *sourceImage, gerbv_user_transformation_t *transform, gerbv_image_t *destinationImage) { int lastUsedApertureNumber = APERTURE_MIN - 1; int i; GArray *apertureNumberTable = g_array_new(FALSE,FALSE,sizeof(gerb_translation_entry_t)); /* copy apertures over */ for (i = 0; i < APERTURE_MAX; i++) { if (sourceImage->aperture[i] != NULL) { gint existingAperture = gerbv_image_find_existing_aperture_match (sourceImage->aperture[i], destinationImage); /* if we already have an existing aperture in the destination image that matches what we want, just use it instead */ if (existingAperture > 0) { gerb_translation_entry_t translationEntry={i,existingAperture}; g_array_append_val (apertureNumberTable,translationEntry); } /* else, create a new aperture and put it in the destination image */ else { gerbv_aperture_t *newAperture = gerbv_image_duplicate_aperture (sourceImage->aperture[i]); lastUsedApertureNumber = gerbv_image_find_unused_aperture_number (lastUsedApertureNumber + 1, destinationImage); /* store the aperture numbers (new and old) in the translation table */ gerb_translation_entry_t translationEntry={i,lastUsedApertureNumber}; g_array_append_val (apertureNumberTable,translationEntry); destinationImage->aperture[lastUsedApertureNumber] = newAperture; } } } /* find the last layer, state, and net in the linked chains */ gerbv_netstate_t *lastState; gerbv_layer_t *lastLayer; gerbv_net_t *lastNet; for (lastState = destinationImage->states; lastState->next; lastState=lastState->next){} for (lastLayer = destinationImage->layers; lastLayer->next; lastLayer=lastLayer->next){} for (lastNet = destinationImage->netlist; lastNet->next; lastNet=lastNet->next){} /* and then copy them all to the destination image, using the aperture translation table we just built */ gerbv_image_copy_all_nets (sourceImage, destinationImage, lastLayer, lastState, lastNet, transform, apertureNumberTable); g_array_free (apertureNumberTable, TRUE); } void gerbv_image_delete_net (gerbv_net_t *currentNet) { gerbv_net_t *tempNet; g_assert (currentNet); /* we have a match, so just zero out all the important data fields */ currentNet->aperture = 0; currentNet->aperture_state = GERBV_APERTURE_STATE_OFF; /* if this is a polygon start, we need to erase all the rest of the nets in this polygon too */ if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_START){ for (tempNet = currentNet->next; tempNet; tempNet = tempNet->next){ tempNet->aperture = 0; tempNet->aperture_state = GERBV_APERTURE_STATE_OFF; if (tempNet->interpolation == GERBV_INTERPOLATION_PAREA_END) { tempNet->interpolation = GERBV_INTERPOLATION_DELETED; break; } /* make sure we don't leave a polygon interpolation in, since it will still draw if it is */ tempNet->interpolation = GERBV_INTERPOLATION_DELETED; } } /* make sure we don't leave a polygon interpolation in, since it will still draw if it is */ currentNet->interpolation = GERBV_INTERPOLATION_DELETED; } void gerbv_image_create_rectangle_object (gerbv_image_t *image, gdouble coordinateX, gdouble coordinateY, gdouble width, gdouble height) { gerbv_net_t *currentNet; /* run through and find last net pointer */ for (currentNet = image->netlist; currentNet->next; currentNet = currentNet->next){} /* create the polygon start node */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_PAREA_START; /* go to start point (we need this to create correct RS274X export code) */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; currentNet->aperture_state = GERBV_APERTURE_STATE_OFF; currentNet->start_x = coordinateX; currentNet->start_y = coordinateY; currentNet->stop_x = coordinateX; currentNet->stop_y = coordinateY; /* draw the 4 corners */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->start_x = coordinateX; currentNet->start_y = coordinateY; currentNet->stop_x = coordinateX + width; currentNet->stop_y = coordinateY; gerber_update_min_and_max (¤tNet->boundingBox,currentNet->stop_x,currentNet->stop_y, 0,0,0,0); gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->stop_x = coordinateX + width; currentNet->stop_y = coordinateY + height; gerber_update_min_and_max (¤tNet->boundingBox,currentNet->stop_x,currentNet->stop_y, 0,0,0,0); gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->stop_x = coordinateX; currentNet->stop_y = coordinateY + height; gerber_update_min_and_max (¤tNet->boundingBox,currentNet->stop_x,currentNet->stop_y, 0,0,0,0); gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->stop_x = coordinateX; currentNet->stop_y = coordinateY; gerber_update_min_and_max (¤tNet->boundingBox,currentNet->stop_x,currentNet->stop_y, 0,0,0,0); gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); /* create the polygon end node */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_PAREA_END; return; } gerbv_net_t * gerb_image_return_aperture_index (gerbv_image_t *image, gdouble lineWidth, int *apertureIndex){ gerbv_net_t *currentNet; gerbv_aperture_t *aperture=NULL; int i; /* run through and find last net pointer */ for (currentNet = image->netlist; currentNet->next; currentNet = currentNet->next){} /* try to find an existing aperture that matches the requested width and type */ for (i = 0; i < APERTURE_MAX; i++) { if (image->aperture[i] != NULL) { if ((image->aperture[i]->type == GERBV_APTYPE_CIRCLE) && (fabs (image->aperture[i]->parameter[0] - lineWidth) < 0.001)){ aperture = image->aperture[i]; *apertureIndex = i; break; } } } if (!aperture) { /* we didn't find a useable old aperture, so create a new one */ if (!gerber_create_new_aperture (image, apertureIndex, GERBV_APTYPE_CIRCLE, lineWidth, 0)) { /* if we didn't succeed, then return */ return FALSE; } } return currentNet; } void gerbv_image_create_arc_object (gerbv_image_t *image, gdouble centerX, gdouble centerY, gdouble radius, gdouble startAngle, gdouble endAngle, gdouble lineWidth, gerbv_aperture_type_t apertureType) { int apertureIndex; gerbv_net_t *currentNet; gerbv_cirseg_t cirSeg = {centerX, centerY, radius, radius, startAngle, endAngle}; currentNet = gerb_image_return_aperture_index(image, lineWidth, &apertureIndex); if (!currentNet) return; /* draw the arc */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_CCW_CIRCULAR; currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->aperture = apertureIndex; currentNet->start_x = centerX + (cos(DEG2RAD(startAngle)) * radius); currentNet->start_y = centerY + (sin(DEG2RAD(startAngle)) * radius); currentNet->stop_x = centerX + (cos(DEG2RAD(endAngle)) * radius); currentNet->stop_y = centerY + (sin(DEG2RAD(endAngle)) * radius); currentNet->cirseg = g_new0 (gerbv_cirseg_t,1); *(currentNet->cirseg) = cirSeg; gdouble angleDiff = currentNet->cirseg->angle2 - currentNet->cirseg->angle1; gint i, steps = abs(angleDiff); for (i=0; i<=steps; i++){ gdouble tempX = currentNet->cirseg->cp_x + currentNet->cirseg->width / 2.0 * cos (DEG2RAD(currentNet->cirseg->angle1 + (i*angleDiff)/steps)); gdouble tempY = currentNet->cirseg->cp_y + currentNet->cirseg->width / 2.0 * sin (DEG2RAD(currentNet->cirseg->angle1 + (i*angleDiff)/steps)); gerber_update_min_and_max (¤tNet->boundingBox, tempX, tempY, lineWidth/2,lineWidth/2, lineWidth/2,lineWidth/2); } gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); return; } void gerbv_image_create_line_object (gerbv_image_t *image, gdouble startX, gdouble startY, gdouble endX, gdouble endY, gdouble lineWidth, gerbv_aperture_type_t apertureType) { int apertureIndex; gerbv_net_t *currentNet; currentNet = gerb_image_return_aperture_index(image, lineWidth, &apertureIndex); if (!currentNet) return; /* draw the line */ currentNet = gerber_create_new_net (currentNet, NULL, NULL); currentNet->interpolation = GERBV_INTERPOLATION_LINEARx1; /* if the start and end coordinates are the same, use a "flash" aperture state */ if ((fabs(startX - endX) < 0.001) && (fabs(startY - endY) < 0.001)) currentNet->aperture_state = GERBV_APERTURE_STATE_FLASH; else currentNet->aperture_state = GERBV_APERTURE_STATE_ON; currentNet->aperture = apertureIndex; currentNet->start_x = startX; currentNet->start_y = startY; currentNet->stop_x = endX; currentNet->stop_y = endY; gerber_update_min_and_max (¤tNet->boundingBox,currentNet->stop_x,currentNet->stop_y, lineWidth/2,lineWidth/2,lineWidth/2,lineWidth/2); gerber_update_min_and_max (¤tNet->boundingBox,currentNet->start_x,currentNet->start_y, lineWidth/2,lineWidth/2,lineWidth/2,lineWidth/2); gerber_update_image_min_max (¤tNet->boundingBox, 0, 0, image); return; } void gerbv_image_create_window_pane_objects (gerbv_image_t *image, gdouble lowerLeftX, gdouble lowerLeftY, gdouble width, gdouble height, gdouble areaReduction, gint paneRows, gint paneColumns, gdouble paneSeparation){ int i,j; gdouble startX,startY,boxWidth,boxHeight; startX = lowerLeftX + (areaReduction * width) / 2.0; startY = lowerLeftY + (areaReduction * height) / 2.0; boxWidth = (width * (1.0 - areaReduction) - (paneSeparation * (paneColumns - 1))) / paneColumns; boxHeight = (height * (1.0 - areaReduction) - (paneSeparation * (paneRows - 1))) / paneRows; for (i=0; ilen; i++) { gerbv_selection_item_t sItem = g_array_index (selectionArray,gerbv_selection_item_t, i); gerbv_image_t *image = sItem.image; gerbv_net_t *currentNet = sItem.net; /* determine the object type first */ minX = HUGE_VAL; maxX = -HUGE_VAL; minY = HUGE_VAL; maxY = -HUGE_VAL; switch (currentNet->interpolation) { case GERBV_INTERPOLATION_PAREA_START: /* if it's a polygon, just determine the overall area of it and delete it */ currentNet->interpolation = GERBV_INTERPOLATION_DELETED; for (currentNet = currentNet->next; currentNet; currentNet = currentNet->next){ if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_END) break; currentNet->interpolation = GERBV_INTERPOLATION_DELETED; if (currentNet->stop_x < minX) minX = currentNet->stop_x; if (currentNet->stop_y < minY) minY = currentNet->stop_y; if (currentNet->stop_x > maxX) maxX = currentNet->stop_x; if (currentNet->stop_y > maxY) maxY = currentNet->stop_y; } currentNet->interpolation = GERBV_INTERPOLATION_DELETED; break; case GERBV_INTERPOLATION_LINEARx1: case GERBV_INTERPOLATION_LINEARx10: case GERBV_INTERPOLATION_LINEARx01: case GERBV_INTERPOLATION_LINEARx001: { gdouble dx=0,dy=0; gerbv_aperture_t *apert = image->aperture[currentNet->aperture]; /* figure out the overall size of this element */ switch (apert->type) { case GERBV_APTYPE_CIRCLE : case GERBV_APTYPE_OVAL : case GERBV_APTYPE_POLYGON : dx = dy = apert->parameter[0]; break; case GERBV_APTYPE_RECTANGLE : dx = apert->parameter[0]/2; dy = apert->parameter[1]/2; break; default : break; } if (currentNet->start_x-dx < minX) minX = currentNet->start_x-dx; if (currentNet->start_y-dy < minY) minY = currentNet->start_y-dy; if (currentNet->start_x+dx > maxX) maxX = currentNet->start_x+dx; if (currentNet->start_y+dy > maxY) maxY = currentNet->start_y+dy; if (currentNet->stop_x-dx < minX) minX = currentNet->stop_x-dx; if (currentNet->stop_y-dy < minY) minY = currentNet->stop_y-dy; if (currentNet->stop_x+dx > maxX) maxX = currentNet->stop_x+dx; if (currentNet->stop_y+dy > maxY) maxY = currentNet->stop_y+dy; /* finally, delete node */ currentNet->interpolation = GERBV_INTERPOLATION_DELETED; break; } default: /* we don't current support arcs */ return FALSE; } /* create new structures */ gerbv_image_create_window_pane_objects (image, minX, minY, maxX - minX, maxY - minY, areaReduction, paneRows, paneColumns, paneSeparation); } return TRUE; } gboolean gerbv_image_move_selected_objects (GArray *selectionArray, gdouble translationX, gdouble translationY) { int i; for (i=0; ilen; i++) { gerbv_selection_item_t sItem = g_array_index (selectionArray,gerbv_selection_item_t, i); gerbv_net_t *currentNet = sItem.net; if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_START) { /* if it's a polygon, step through every vertex and translate the point */ for (currentNet = currentNet->next; currentNet; currentNet = currentNet->next){ if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_END) break; currentNet->start_x += translationX; currentNet->start_y += translationY; currentNet->stop_x += translationX; currentNet->stop_y += translationY; } } else { /* otherwise, just move the single element */ currentNet->start_x += translationX; currentNet->start_y += translationY; currentNet->stop_x += translationX; currentNet->stop_y += translationY; } } return TRUE; } gerbv_net_t * gerbv_image_return_next_renderable_object (gerbv_net_t *oldNet) { gerbv_net_t *currentNet=oldNet; if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_START) { /* if it's a polygon, step to the next non-polygon net */ for (currentNet = currentNet->next; currentNet; currentNet = currentNet->next){ if (currentNet->interpolation == GERBV_INTERPOLATION_PAREA_END) { return currentNet->next; } } return NULL; } else { return currentNet->next; } } void gerbv_image_create_dummy_apertures (gerbv_image_t *parsed_image) { gerbv_net_t *currentNet; /* run through and find last net pointer */ for (currentNet = parsed_image->netlist; currentNet->next; currentNet = currentNet->next){ if (parsed_image->aperture[currentNet->aperture] == NULL) { parsed_image->aperture[currentNet->aperture] = g_new0 (gerbv_aperture_t, 1); parsed_image->aperture[currentNet->aperture]->type = GERBV_APTYPE_CIRCLE; parsed_image->aperture[currentNet->aperture]->parameter[0] = 0; parsed_image->aperture[currentNet->aperture]->parameter[1] = 0; } } } gerbv-2.7.0/src/dynload.c0000644000175000017500000000651513421555714015110 0ustar carstencarsten/* dynload.c Dynamic Loader for TinyScheme */ /* Original Copyright (c) 1999 Alexander Shendi */ /* Modifications for NT and dl_* interface, scm_load_ext: D. Souflis */ /* Refurbished by Stephen Gildea */ /** \file dynload.c \brief Dynamic loader functions for TinyScheme */ #define _SCHEME_SOURCE #include "dynload.h" #include "gerb_file.h" #include #include #include #include "common.h" #ifndef MAXPATHLEN # define MAXPATHLEN 1024 #endif static void make_filename(const char *name, char *filename); static void make_init_fn(const char *name, char *init_fn); #ifdef _WIN32 # include #else typedef void *HMODULE; typedef void (*FARPROC)(); #ifndef SUN_DL #define SUN_DL #endif #include #endif #ifdef _WIN32 #define PREFIX "" #define SUFFIX ".dll" static void display_w32_error_msg(const char *additional_message) { LPVOID msg_buf; FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER, NULL, GetLastError(), 0, (LPTSTR)&msg_buf, 0, NULL); fprintf(stderr, _("scheme load-extension: %s: %s"), additional_message, (char *) msg_buf); LocalFree(msg_buf); } static HMODULE dl_attach(const char *module) { HMODULE dll = LoadLibrary(module); if (!dll) display_w32_error_msg(module); return dll; } static FARPROC dl_proc(HMODULE mo, const char *proc) { FARPROC procedure = GetProcAddress(mo,proc); if (!procedure) display_w32_error_msg(proc); return procedure; } #if 0 static void dl_detach(HMODULE mo) { (void)FreeLibrary(mo); } #endif #elif defined(SUN_DL) #include #define PREFIX "lib" #define SUFFIX ".so" static HMODULE dl_attach(const char *module) { HMODULE so=dlopen(module,RTLD_LAZY); if(!so) { fprintf(stderr, _("Error loading scheme extension \"%s\": %s\n"), module, dlerror()); } return so; } static FARPROC dl_proc(HMODULE mo, const char *proc) { const char *errmsg; FARPROC fp=(FARPROC)dlsym(mo,proc); if ((errmsg = dlerror()) == 0) { return fp; } fprintf(stderr, _("Error initializing scheme module \"%s\": %s\n"), proc, errmsg); return 0; } #if 0 static void dl_detach(HMODULE mo) { (void)dlclose(mo); } #endif #endif pointer scm_load_ext(scheme *sc, pointer args) { pointer first_arg; pointer retval; char filename[MAXPATHLEN], init_fn[MAXPATHLEN+6]; char *name; HMODULE dll_handle; void (*module_init)(scheme *sc); if ((args != sc->NIL) && is_string((first_arg = pair_car(args)))) { name = string_value(first_arg); make_filename(name,filename); make_init_fn(name,init_fn); dll_handle = dl_attach(filename); if (dll_handle == 0) { retval = sc -> F; } else { module_init = (void(*)(scheme *))dl_proc(dll_handle, init_fn); if (module_init != 0) { (*module_init)(sc); retval = sc -> T; } else { retval = sc->F; } } } else { retval = sc -> F; } return(retval); } static void make_filename(const char *name, char *filename) { strcpy(filename,name); strcat(filename,SUFFIX); } static void make_init_fn(const char *name, char *init_fn) { const char *p=strrchr(name,'/');/*CHECK ME MINGW PATH SEPARATOR*/ if(p==0) { p=name; } else { p++; } strcpy(init_fn,"init_"); strcat(init_fn,p); } gerbv-2.7.0/src/scheme-private.h0000644000175000017500000001073313421555714016374 0ustar carstencarsten/* scheme-private.h */ /** \file scheme-private.h \brief Private data for the TinyScheme compiler \ingroup gerbv */ #ifndef _SCHEME_PRIVATE_H #define _SCHEME_PRIVATE_H #include "scheme.h" enum scheme_port_kind { port_free=0, port_file=1, port_string=2, port_input=16, port_output=32 }; typedef struct port { unsigned char kind; union { struct { FILE *file; int closeit; } stdio; struct { char *start; char *past_the_end; char *curr; } string; } rep; } port; /* cell structure */ struct cell { unsigned int _flag; union { struct { char *_svalue; int _length; } _string; num _number; port *_port; foreign_func _ff; struct { struct cell *_car; struct cell *_cdr; } _cons; } _object; }; struct scheme { /* arrays for segments */ func_alloc malloc; func_dealloc free; /* return code */ int retcode; int tracing; #define CELL_SEGSIZE 5000 /* # of cells in one segment */ #define CELL_NSEGMENT 10 /* # of segments for cells */ char *alloc_seg[CELL_NSEGMENT]; pointer cell_seg[CELL_NSEGMENT]; int last_cell_seg; /* We use 4 registers. */ pointer args; /* register for arguments of function */ pointer envir; /* stack register for current environment */ pointer code; /* register for current code */ pointer dump; /* stack register for next evaluation */ int interactive_repl; /* are we in an interactive REPL? */ struct cell _sink; pointer sink; /* when mem. alloc. fails */ struct cell _NIL; pointer NIL; /* special cell representing empty cell */ struct cell _HASHT; pointer T; /* special cell representing #t */ struct cell _HASHF; pointer F; /* special cell representing #f */ struct cell _EOF_OBJ; pointer EOF_OBJ; /* special cell representing end-of-file object */ pointer oblist; /* pointer to symbol table */ pointer global_env; /* pointer to global environment */ /* global pointers to special symbols */ pointer LAMBDA; /* pointer to syntax lambda */ pointer QUOTE; /* pointer to syntax quote */ pointer QQUOTE; /* pointer to symbol quasiquote */ pointer UNQUOTE; /* pointer to symbol unquote */ pointer UNQUOTESP; /* pointer to symbol unquote-splicing */ pointer FEED_TO; /* => */ pointer COLON_HOOK; /* *colon-hook* */ pointer ERROR_HOOK; /* *error-hook* */ pointer SHARP_HOOK; /* *sharp-hook* */ pointer free_cell; /* pointer to top of free cells */ long fcells; /* # of free cells */ pointer inport; pointer outport; pointer save_inport; pointer loadport; #define MAXFIL 64 port load_stack[MAXFIL]; /* Stack of open files for port -1 (LOADing) */ int nesting_stack[MAXFIL]; int file_i; int nesting; char gc_verbose; /* if gc_verbose is not zero, print gc status */ char no_memory; /* Whether mem. alloc. has failed */ #define LINESIZE 1024 char linebuff[LINESIZE]; char strbuff[256]; FILE *tmpfp; int tok; int print_flag; pointer value; int op; void *ext_data; /* For the benefit of foreign functions */ long gensym_cnt; struct scheme_interface *vptr; void *dump_base; /* pointer to base of allocated dump stack */ int dump_size; /* number of frames allocated for dump stack */ }; /* operator code */ enum scheme_opcodes { #define _OP_DEF(A,B,C,D,E,OP) OP, #include "opdefines.h" OP_MAXDEFINED }; #define cons(sc,a,b) _cons(sc,a,b,0) #define immutable_cons(sc,a,b) _cons(sc,a,b,1) int is_string(pointer p); char *string_value(pointer p); int is_number(pointer p); num nvalue(pointer p); long ivalue(pointer p); double rvalue(pointer p); int is_integer(pointer p); int is_real(pointer p); int is_character(pointer p); long charvalue(pointer p); int is_vector(pointer p); int is_port(pointer p); int is_pair(pointer p); pointer pair_car(pointer p); pointer pair_cdr(pointer p); pointer set_car(pointer p, pointer q); pointer set_cdr(pointer p, pointer q); int is_symbol(pointer p); char *symname(pointer p); int hasprop(pointer p); int is_syntax(pointer p); int is_proc(pointer p); int is_foreign(pointer p); char *syntaxname(pointer p); int is_closure(pointer p); #ifdef USE_MACRO int is_macro(pointer p); #endif pointer closure_code(pointer p); pointer closure_env(pointer p); int is_continuation(pointer p); int is_promise(pointer p); int is_environment(pointer p); int is_immutable(pointer p); void setimmutable(pointer p); #endif gerbv-2.7.0/src/export-image.c0000644000175000017500000001247213421555714016056 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * Contributed by Dino Ghilardi * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-image.c \brief This file contains image exporting functions for exporting to PNG, PDF, SVG, and Postscript formats \ingroup libgerbv */ #include "gerbv.h" #include "common.h" #include #include #include #include "render.h" #include "draw.h" #include #include #include #include void exportimage_render_to_surface_and_destroy (gerbv_project_t *gerbvProject, cairo_surface_t *cSurface, gerbv_render_info_t *renderInfo, gchar const* filename) { cairo_t *cairoTarget = cairo_create (cSurface); gerbv_render_all_layers_to_cairo_target_for_vector_output (gerbvProject, cairoTarget, renderInfo); cairo_destroy (cairoTarget); cairo_surface_destroy (cSurface); } gerbv_render_info_t gerbv_export_autoscale_project (gerbv_project_t *gerbvProject) { gerbv_render_size_t bb; gerbv_render_get_boundingbox(gerbvProject, &bb); // add a border around the bounding box gfloat tempWidth = bb.right - bb.left; gfloat tempHeight = bb.bottom - bb.top; bb.right += (tempWidth*0.05); bb.left -= (tempWidth*0.05); bb.bottom += (tempHeight*0.05); bb.top -= (tempHeight*0.05); float width = bb.right - bb.left + 0.001; // Plus a little extra to prevent from float height = bb.bottom - bb.top + 0.001; // missing items due to round-off errors gerbv_render_info_t renderInfo = {72, 72, bb.left, bb.top, GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, width*72, height*72}; return renderInfo; } void gerbv_export_png_file_from_project_autoscaled (gerbv_project_t *gerbvProject, int widthInPixels, int heightInPixels, gchar const* filename) { gerbv_render_info_t renderInfo = {1, 1, 0, 0, GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY, widthInPixels, heightInPixels}; gerbv_render_zoom_to_fit_display (gerbvProject, &renderInfo); gerbv_export_png_file_from_project (gerbvProject, &renderInfo, filename); } void gerbv_export_png_file_from_project (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo, gchar const* filename) { cairo_surface_t *cSurface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, renderInfo->displayWidth, renderInfo->displayHeight); cairo_t *cairoTarget = cairo_create (cSurface); gerbv_render_all_layers_to_cairo_target (gerbvProject, cairoTarget, renderInfo); if (CAIRO_STATUS_SUCCESS != cairo_surface_write_to_png (cSurface, filename)) { GERB_COMPILE_ERROR (_("Exporting error to file \"%s\""), filename); } cairo_destroy (cairoTarget); cairo_surface_destroy (cSurface); } void gerbv_export_pdf_file_from_project_autoscaled (gerbv_project_t *gerbvProject, gchar const* filename) { gerbv_render_info_t renderInfo = gerbv_export_autoscale_project(gerbvProject); gerbv_export_pdf_file_from_project (gerbvProject, &renderInfo, filename); } void gerbv_export_pdf_file_from_project (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo, gchar const* filename) { cairo_surface_t *cSurface = cairo_pdf_surface_create (filename, renderInfo->displayWidth, renderInfo->displayHeight); exportimage_render_to_surface_and_destroy (gerbvProject, cSurface, renderInfo, filename); } void gerbv_export_postscript_file_from_project_autoscaled (gerbv_project_t *gerbvProject, gchar const* filename) { gerbv_render_info_t renderInfo = gerbv_export_autoscale_project(gerbvProject); gerbv_export_postscript_file_from_project (gerbvProject, &renderInfo, filename); } void gerbv_export_postscript_file_from_project (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo, gchar const* filename) { cairo_surface_t *cSurface = cairo_ps_surface_create (filename, renderInfo->displayWidth, renderInfo->displayHeight); exportimage_render_to_surface_and_destroy (gerbvProject, cSurface, renderInfo, filename); } void gerbv_export_svg_file_from_project_autoscaled (gerbv_project_t *gerbvProject, gchar const* filename) { gerbv_render_info_t renderInfo = gerbv_export_autoscale_project(gerbvProject); gerbv_export_svg_file_from_project (gerbvProject, &renderInfo, filename); } void gerbv_export_svg_file_from_project (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo, gchar const* filename) { cairo_surface_t *cSurface = cairo_svg_surface_create (filename, renderInfo->displayWidth, renderInfo->displayHeight); exportimage_render_to_surface_and_destroy (gerbvProject, cSurface, renderInfo, filename); } gerbv-2.7.0/src/scheme.c0000644000175000017500000035750613421555714014733 0ustar carstencarsten/* T I N Y S C H E M E 1 . 3 5 * Dimitrios Souflis (dsouflis@acm.org) * Based on MiniScheme (original credits follow) * (MINISCM) coded by Atsushi Moriwaki (11/5/1989) * (MINISCM) E-MAIL : moriwaki@kurims.kurims.kyoto-u.ac.jp * (MINISCM) This version has been modified by R.C. Secrist. * (MINISCM) * (MINISCM) Mini-Scheme is now maintained by Akira KIDA. * (MINISCM) * (MINISCM) This is a revised and modified version by Akira KIDA. * (MINISCM) current version is 0.85k4 (15 May 1994) * */ /** \file scheme.c \brief The TinyScheme compiler \ingroup gerbv */ #ifdef HAVE_CONFIG_H #include #endif #define _SCHEME_SOURCE #include "scheme-private.h" #ifndef WIN32 # include #endif #if USE_DL # include "dynload.h" #endif #if USE_MATH # include #endif #include #include #include #ifdef HAVE_UNISTD_H #include /* access() on Linux */ #endif #if USE_STRCASECMP #include #define stricmp strcasecmp #endif /* Used for documentation purposes, to signal functions in 'interface' */ #define INTERFACE #define TOK_EOF (-1) #define TOK_LPAREN 0 #define TOK_RPAREN 1 #define TOK_DOT 2 #define TOK_ATOM 3 #define TOK_QUOTE 4 #define TOK_COMMENT 5 #define TOK_DQUOTE 6 #define TOK_BQUOTE 7 #define TOK_COMMA 8 #define TOK_ATMARK 9 #define TOK_SHARP 10 #define TOK_SHARP_CONST 11 #define TOK_VEC 12 # define BACKQUOTE '`' /* * Basic memory allocation units */ #define banner "TinyScheme 1.35" #ifdef HAVE_STRING_H #include #endif #include #ifndef macintosh #ifdef HAVE_MALLOC_H # include #endif #else static int stricmp(const char *s1, const char *s2) { unsigned char c1, c2; do { c1 = tolower(*s1); c2 = tolower(*s2); if (c1 < c2) return -1; else if (c1 > c2) return 1; s1++, s2++; } while (c1 != 0); return 0; } #endif /* macintosh */ #ifndef HAVE_STRLWR static const char *strlwr(char *s) { const char *p=s; while(*s) { *s=tolower((int) *s); s++; } return p; } #endif #ifndef prompt # define prompt "> " #endif #ifndef InitFile # define InitFile "init.scm" #endif #ifndef FIRST_CELLSEGS # define FIRST_CELLSEGS 3 #endif enum scheme_types { T_STRING=1, T_NUMBER=2, T_SYMBOL=3, T_PROC=4, T_PAIR=5, T_CLOSURE=6, T_CONTINUATION=7, T_FOREIGN=8, T_CHARACTER=9, T_PORT=10, T_VECTOR=11, T_MACRO=12, T_PROMISE=13, T_ENVIRONMENT=14, T_LAST_SYSTEM_TYPE=14 }; /* ADJ is enough slack to align cells in a TYPE_BITS-bit boundary */ #define ADJ 32 #define TYPE_BITS 5 #define T_MASKTYPE 31 /* 0000000000011111 */ #define T_SYNTAX 4096 /* 0001000000000000 */ #define T_IMMUTABLE 8192 /* 0010000000000000 */ #define T_ATOM 16384 /* 0100000000000000 */ /* only for gc */ #define CLRATOM 49151 /* 1011111111111111 */ /* only for gc */ #define MARK 32768 /* 1000000000000000 */ #define UNMARK 32767 /* 0111111111111111 */ static num num_add(num a, num b); static num num_mul(num a, num b); static num num_div(num a, num b); static num num_intdiv(num a, num b); static num num_sub(num a, num b); static num num_rem(num a, num b); static num num_mod(num a, num b); static int num_eq(num a, num b); static int num_gt(num a, num b); static int num_ge(num a, num b); static int num_lt(num a, num b); static int num_le(num a, num b); #if USE_MATH static double round_per_R5RS(double x); #endif static int is_zero_double(double x); static num num_zero; static num num_one; /* macros for cell operations */ #define typeflag(p) ((p)->_flag) #define type(p) (typeflag(p)&T_MASKTYPE) INTERFACE INLINE int is_string(pointer p) { return (type(p)==T_STRING); } #define strvalue(p) ((p)->_object._string._svalue) #define strlength(p) ((p)->_object._string._length) INTERFACE INLINE int is_vector(pointer p) { return (type(p)==T_VECTOR); } INTERFACE static void fill_vector(pointer vec, pointer obj); INTERFACE static pointer vector_elem(pointer vec, int ielem); INTERFACE static pointer set_vector_elem(pointer vec, int ielem, pointer a); INTERFACE INLINE int is_number(pointer p) { return (type(p)==T_NUMBER); } INTERFACE INLINE int is_integer(pointer p) { return ((p)->_object._number.is_fixnum); } INTERFACE INLINE int is_real(pointer p) { return (!(p)->_object._number.is_fixnum); } INTERFACE INLINE int is_character(pointer p) { return (type(p)==T_CHARACTER); } INTERFACE INLINE char *string_value(pointer p) { return strvalue(p); } INLINE num nvalue(pointer p) { return ((p)->_object._number); } INTERFACE long ivalue(pointer p) { return (is_integer(p)?(p)->_object._number.value.ivalue:(long)(p)->_object._number.value.rvalue); } INTERFACE double rvalue(pointer p) { return (!is_integer(p)?(p)->_object._number.value.rvalue:(double)(p)->_object._number.value.ivalue); } #define ivalue_unchecked(p) ((p)->_object._number.value.ivalue) #define rvalue_unchecked(p) ((p)->_object._number.value.rvalue) #define set_integer(p) (p)->_object._number.is_fixnum=1; #define set_real(p) (p)->_object._number.is_fixnum=0; INTERFACE long charvalue(pointer p) { return ivalue_unchecked(p); } INTERFACE INLINE int is_port(pointer p) { return (type(p)==T_PORT); } #define is_inport(p) (type(p)==T_PORT && p->_object._port->kind&port_input) #define is_outport(p) (type(p)==T_PORT && p->_object._port->kind&port_output) INTERFACE INLINE int is_pair(pointer p) { return (type(p)==T_PAIR); } #define car(p) ((p)->_object._cons._car) #define cdr(p) ((p)->_object._cons._cdr) INTERFACE pointer pair_car(pointer p) { return car(p); } INTERFACE pointer pair_cdr(pointer p) { return cdr(p); } INTERFACE pointer set_car(pointer p, pointer q) { return car(p)=q; } INTERFACE pointer set_cdr(pointer p, pointer q) { return cdr(p)=q; } INTERFACE INLINE int is_symbol(pointer p) { return (type(p)==T_SYMBOL); } INTERFACE INLINE char *symname(pointer p) { return strvalue(car(p)); } #if USE_PLIST SCHEME_EXPORT INLINE int hasprop(pointer p) { return (typeflag(p)&T_SYMBOL); } #define symprop(p) cdr(p) #endif INTERFACE INLINE int is_syntax(pointer p) { return (typeflag(p)&T_SYNTAX); } INTERFACE INLINE int is_proc(pointer p) { return (type(p)==T_PROC); } INTERFACE INLINE int is_foreign(pointer p) { return (type(p)==T_FOREIGN); } INTERFACE INLINE char *syntaxname(pointer p) { return strvalue(car(p)); } #define procnum(p) ivalue(p) static const char *procname(pointer x); INTERFACE INLINE int is_closure(pointer p) { return (type(p)==T_CLOSURE); } INTERFACE INLINE int is_macro(pointer p) { return (type(p)==T_MACRO); } INTERFACE INLINE pointer closure_code(pointer p) { return car(p); } INTERFACE INLINE pointer closure_env(pointer p) { return cdr(p); } INTERFACE INLINE int is_continuation(pointer p) { return (type(p)==T_CONTINUATION); } #define cont_dump(p) cdr(p) /* To do: promise should be forced ONCE only */ INTERFACE INLINE int is_promise(pointer p) { return (type(p)==T_PROMISE); } INTERFACE INLINE int is_environment(pointer p) { return (type(p)==T_ENVIRONMENT); } #define setenvironment(p) typeflag(p) = T_ENVIRONMENT #define is_atom(p) (typeflag(p)&T_ATOM) #define setatom(p) typeflag(p) |= T_ATOM #define clratom(p) typeflag(p) &= CLRATOM #define is_mark(p) (typeflag(p)&MARK) #define setmark(p) typeflag(p) |= MARK #define clrmark(p) typeflag(p) &= UNMARK INTERFACE INLINE int is_immutable(pointer p) { return (typeflag(p)&T_IMMUTABLE); } /*#define setimmutable(p) typeflag(p) |= T_IMMUTABLE*/ INTERFACE INLINE void setimmutable(pointer p) { typeflag(p) |= T_IMMUTABLE; } #define caar(p) car(car(p)) #define cadr(p) car(cdr(p)) #define cdar(p) cdr(car(p)) #define cddr(p) cdr(cdr(p)) #define cadar(p) car(cdr(car(p))) #define caddr(p) car(cdr(cdr(p))) #define cadaar(p) car(cdr(car(car(p)))) #define cadddr(p) car(cdr(cdr(cdr(p)))) #define cddddr(p) cdr(cdr(cdr(cdr(p)))) #if USE_CHAR_CLASSIFIERS static INLINE int Cisalpha(int c) { return isascii(c) && isalpha(c); } static INLINE int Cisdigit(int c) { return isascii(c) && isdigit(c); } static INLINE int Cisspace(int c) { return isascii(c) && isspace(c); } static INLINE int Cisupper(int c) { return isascii(c) && isupper(c); } static INLINE int Cislower(int c) { return isascii(c) && islower(c); } #endif #if USE_ASCII_NAMES static const char *charnames[32]={ "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel", "bs", "ht", "lf", "vt", "ff", "cr", "so", "si", "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb", "can", "em", "sub", "esc", "fs", "gs", "rs", "us" }; static int is_ascii_name(const char *name, int *pc) { int i; for(i=0; i<32; i++) { if(stricmp(name,charnames[i])==0) { *pc=i; return 1; } } if(stricmp(name,"del")==0) { *pc=127; return 1; } return 0; } #endif static int file_push(scheme *sc, const char *fname); static void file_pop(scheme *sc); static int file_interactive(scheme *sc); static INLINE int is_one_of(char *s, int c); static int alloc_cellseg(scheme *sc, int n); static long binary_decode(const char *s); static INLINE pointer get_cell(scheme *sc, pointer a, pointer b); static pointer _get_cell(scheme *sc, pointer a, pointer b); static pointer get_consecutive_cells(scheme *sc, int n); static pointer find_consecutive_cells(scheme *sc, int n); static void finalize_cell(scheme *sc, pointer a); static int count_consecutive_cells(pointer x, int needed); static pointer find_slot_in_env(scheme *sc, pointer env, pointer sym, int all); static pointer mk_number(scheme *sc, num n); static pointer mk_empty_string(scheme *sc, int len, char fill); static char *store_string(scheme *sc, int len, const char *str, char fill); static pointer mk_vector(scheme *sc, int len); static pointer mk_atom(scheme *sc, char *q); static pointer mk_sharp_const(scheme *sc, char *name); static pointer mk_port(scheme *sc, port *p); static pointer port_from_filename(scheme *sc, const char *fn, int prop); static pointer port_from_file(scheme *sc, FILE *, int prop); static pointer port_from_string(scheme *sc, char *start, char *past_the_end, int prop); static port *port_rep_from_filename(scheme *sc, const char *fn, int prop); static port *port_rep_from_file(scheme *sc, FILE *, int prop); static port *port_rep_from_string(scheme *sc, char *start, char *past_the_end, int prop); static void port_close(scheme *sc, pointer p, int flag); static void mark(pointer a); static void gc(scheme *sc, pointer a, pointer b); static int basic_inchar(port *pt); static int inchar(scheme *sc); static void backchar(scheme *sc, int c); static char *readstr_upto(scheme *sc, char *delim); static pointer readstrexp(scheme *sc); static INLINE void skipspace(scheme *sc); static int token(scheme *sc); static void printslashstring(scheme *sc, char *s, int len); static void atom2str(scheme *sc, pointer l, int f, char **pp, int *plen); static void printatom(scheme *sc, pointer l, int f); static pointer mk_proc(scheme *sc, enum scheme_opcodes op); static pointer mk_closure(scheme *sc, pointer c, pointer e); static pointer mk_continuation(scheme *sc, pointer d); static pointer reverse(scheme *sc, pointer a); static pointer reverse_in_place(scheme *sc, pointer term, pointer list); static pointer append(scheme *sc, pointer a, pointer b); static int list_length(scheme *sc, pointer a); static int eqv(pointer a, pointer b); static void dump_stack_mark(scheme *); static pointer opexe_0(scheme *sc, enum scheme_opcodes op); static pointer opexe_1(scheme *sc, enum scheme_opcodes op); static pointer opexe_2(scheme *sc, enum scheme_opcodes op); static pointer opexe_3(scheme *sc, enum scheme_opcodes op); static pointer opexe_4(scheme *sc, enum scheme_opcodes op); static pointer opexe_5(scheme *sc, enum scheme_opcodes op); static pointer opexe_6(scheme *sc, enum scheme_opcodes op); static void Eval_Cycle(scheme *sc, enum scheme_opcodes op); static void assign_syntax(scheme *sc, char *name); static int syntaxnum(pointer p); static void assign_proc(scheme *sc, enum scheme_opcodes, char *name); #define num_ivalue(n) (n.is_fixnum?(n).value.ivalue:(long)(n).value.rvalue) #define num_rvalue(n) (!n.is_fixnum?(n).value.rvalue:(double)(n).value.ivalue) static num num_add(num a, num b) { num ret; ret.is_fixnum=a.is_fixnum && b.is_fixnum; if(ret.is_fixnum) { ret.value.ivalue= a.value.ivalue+b.value.ivalue; } else { ret.value.rvalue=num_rvalue(a)+num_rvalue(b); } return ret; } static num num_mul(num a, num b) { num ret; ret.is_fixnum=a.is_fixnum && b.is_fixnum; if(ret.is_fixnum) { ret.value.ivalue= a.value.ivalue*b.value.ivalue; } else { ret.value.rvalue=num_rvalue(a)*num_rvalue(b); } return ret; } static num num_div(num a, num b) { num ret; ret.is_fixnum=a.is_fixnum && b.is_fixnum && a.value.ivalue%b.value.ivalue==0; if(ret.is_fixnum) { ret.value.ivalue= a.value.ivalue/b.value.ivalue; } else { ret.value.rvalue=num_rvalue(a)/num_rvalue(b); } return ret; } static num num_intdiv(num a, num b) { num ret; ret.is_fixnum=a.is_fixnum && b.is_fixnum; if(ret.is_fixnum) { ret.value.ivalue= a.value.ivalue/b.value.ivalue; } else { ret.value.rvalue=num_rvalue(a)/num_rvalue(b); } return ret; } static num num_sub(num a, num b) { num ret; ret.is_fixnum=a.is_fixnum && b.is_fixnum; if(ret.is_fixnum) { ret.value.ivalue= a.value.ivalue-b.value.ivalue; } else { ret.value.rvalue=num_rvalue(a)-num_rvalue(b); } return ret; } static num num_rem(num a, num b) { num ret; long e1, e2, res; ret.is_fixnum=a.is_fixnum && b.is_fixnum; e1=num_ivalue(a); e2=num_ivalue(b); res=e1%e2; /* modulo should have same sign as second operand */ if (res > 0) { if (e1 < 0) { res -= labs(e2); } } else if (res < 0) { if (e1 > 0) { res += labs(e2); } } ret.value.ivalue=res; return ret; } static num num_mod(num a, num b) { num ret; long e1, e2, res; ret.is_fixnum=a.is_fixnum && b.is_fixnum; e1=num_ivalue(a); e2=num_ivalue(b); res=e1%e2; if(res*e2<0) { /* modulo should have same sign as second operand */ e2=labs(e2); if(res>0) { res-=e2; } else { res+=e2; } } ret.value.ivalue=res; return ret; } static int num_eq(num a, num b) { int ret; int is_fixnum=a.is_fixnum && b.is_fixnum; if(is_fixnum) { ret= a.value.ivalue==b.value.ivalue; } else { ret=num_rvalue(a)==num_rvalue(b); } return ret; } static int num_gt(num a, num b) { int ret; int is_fixnum=a.is_fixnum && b.is_fixnum; if(is_fixnum) { ret= a.value.ivalue>b.value.ivalue; } else { ret=num_rvalue(a)>num_rvalue(b); } return ret; } static int num_ge(num a, num b) { return !num_lt(a,b); } static int num_lt(num a, num b) { int ret; int is_fixnum=a.is_fixnum && b.is_fixnum; if(is_fixnum) { ret= a.value.ivaluedce) { return ce; } else if(dfl-DBL_MIN; } static long binary_decode(const char *s) { long x=0; while(*s!=0 && (*s=='1' || *s=='0')) { x<<=1; x+=*s-'0'; s++; } return x; } /* allocate new cell segment */ static int alloc_cellseg(scheme *sc, int n) { pointer newp; pointer last; pointer p; char *cp; long i; int k; int adj=ADJ; if(adjlast_cell_seg >= CELL_NSEGMENT - 1) return k; cp = (char*) sc->malloc(CELL_SEGSIZE * sizeof(struct cell)+adj); if (cp == 0) return k; i = ++sc->last_cell_seg ; sc->alloc_seg[i] = cp; /* adjust in TYPE_BITS-bit boundary */ if((unsigned long)cp%adj!=0) { cp=(char*)(adj*((unsigned long)cp/adj+1)); } /* insert new segment in address order */ newp=(pointer)cp; sc->cell_seg[i] = newp; while (i > 0 && sc->cell_seg[i - 1] > sc->cell_seg[i]) { p = sc->cell_seg[i]; sc->cell_seg[i] = sc->cell_seg[i - 1]; sc->cell_seg[--i] = p; } sc->fcells += CELL_SEGSIZE; last = newp + CELL_SEGSIZE - 1; for (p = newp; p <= last; p++) { typeflag(p) = 0; cdr(p) = p + 1; car(p) = sc->NIL; } /* insert new cells in address order on free list */ if (sc->free_cell == sc->NIL || p < sc->free_cell) { cdr(last) = sc->free_cell; sc->free_cell = newp; } else { p = sc->free_cell; while (cdr(p) != sc->NIL && newp > cdr(p)) p = cdr(p); cdr(last) = cdr(p); cdr(p) = newp; } } return n; } static INLINE pointer get_cell(scheme *sc, pointer a, pointer b) { if (sc->free_cell != sc->NIL) { pointer x = sc->free_cell; sc->free_cell = cdr(x); --sc->fcells; return (x); } return _get_cell (sc, a, b); } /* get new cell. parameter a, b is marked by gc. */ static pointer _get_cell(scheme *sc, pointer a, pointer b) { pointer x; if(sc->no_memory) { return sc->sink; } if (sc->free_cell == sc->NIL) { gc(sc,a, b); if (sc->fcells < sc->last_cell_seg*8 || sc->free_cell == sc->NIL) { /* if only a few recovered, get more to avoid fruitless gc's */ if (!alloc_cellseg(sc,1) && sc->free_cell == sc->NIL) { sc->no_memory=1; return sc->sink; } } } x = sc->free_cell; sc->free_cell = cdr(x); --sc->fcells; return (x); } static pointer get_consecutive_cells(scheme *sc, int n) { pointer x; if(sc->no_memory) { return sc->sink; } /* Are there any cells available? */ x=find_consecutive_cells(sc,n); if (x == sc->NIL) { /* If not, try gc'ing some */ gc(sc, sc->NIL, sc->NIL); x=find_consecutive_cells(sc,n); if (x == sc->NIL) { /* If there still aren't, try getting more heap */ if (!alloc_cellseg(sc,1)) { sc->no_memory=1; return sc->sink; } } x=find_consecutive_cells(sc,n); if (x == sc->NIL) { /* If all fail, report failure */ sc->no_memory=1; return sc->sink; } } return (x); } static int count_consecutive_cells(pointer x, int needed) { int n=1; while(cdr(x)==x+1) { x=cdr(x); n++; if(n>needed) return n; } return n; } static pointer find_consecutive_cells(scheme *sc, int n) { pointer *pp; int cnt; pp=&sc->free_cell; while(*pp!=sc->NIL) { cnt=count_consecutive_cells(*pp,n); if(cnt>=n) { pointer x=*pp; *pp=cdr(*pp+n-1); sc->fcells -= n; return x; } pp=&cdr(*pp+cnt-1); } return sc->NIL; } /* get new cons cell */ pointer _cons(scheme *sc, pointer a, pointer b, int immutable) { pointer x = get_cell(sc,a, b); typeflag(x) = T_PAIR; if(immutable) { setimmutable(x); } car(x) = a; cdr(x) = b; return (x); } /* ========== oblist implementation ========== */ #ifndef USE_OBJECT_LIST static int hash_fn(const char *key, int table_size); static pointer oblist_initial_value(scheme *sc) { return mk_vector(sc, 461); /* probably should be bigger */ } /* returns the new symbol */ static pointer oblist_add_by_name(scheme *sc, const char *name) { pointer x; int location; x = immutable_cons(sc, mk_string(sc, name), sc->NIL); typeflag(x) = T_SYMBOL; setimmutable(car(x)); location = hash_fn(name, ivalue_unchecked(sc->oblist)); set_vector_elem(sc->oblist, location, immutable_cons(sc, x, vector_elem(sc->oblist, location))); return x; } static INLINE pointer oblist_find_by_name(scheme *sc, const char *name) { int location; pointer x; char *s; location = hash_fn(name, ivalue_unchecked(sc->oblist)); for (x = vector_elem(sc->oblist, location); x != sc->NIL; x = cdr(x)) { s = symname(car(x)); /* case-insensitive, per R5RS section 2. */ if(stricmp(name, s) == 0) { return car(x); } } return sc->NIL; } static pointer oblist_all_symbols(scheme *sc) { int i; pointer x; pointer ob_list = sc->NIL; for (i = 0; i < ivalue_unchecked(sc->oblist); i++) { for (x = vector_elem(sc->oblist, i); x != sc->NIL; x = cdr(x)) { ob_list = cons(sc, x, ob_list); } } return ob_list; } #else static pointer oblist_initial_value(scheme *sc) { return sc->NIL; } static INLINE pointer oblist_find_by_name(scheme *sc, const char *name) { pointer x; char *s; for (x = sc->oblist; x != sc->NIL; x = cdr(x)) { s = symname(car(x)); /* case-insensitive, per R5RS section 2. */ if(stricmp(name, s) == 0) { return car(x); } } return sc->NIL; } /* returns the new symbol */ static pointer oblist_add_by_name(scheme *sc, const char *name) { pointer x; x = immutable_cons(sc, mk_string(sc, name), sc->NIL); typeflag(x) = T_SYMBOL; setimmutable(car(x)); sc->oblist = immutable_cons(sc, x, sc->oblist); return x; } static pointer oblist_all_symbols(scheme *sc) { return sc->oblist; } #endif static pointer mk_port(scheme *sc, port *p) { pointer x = get_cell(sc, sc->NIL, sc->NIL); typeflag(x) = T_PORT|T_ATOM; x->_object._port=p; return (x); } pointer mk_foreign_func(scheme *sc, foreign_func f) { pointer x = get_cell(sc, sc->NIL, sc->NIL); typeflag(x) = (T_FOREIGN | T_ATOM); x->_object._ff=f; return (x); } INTERFACE pointer mk_character(scheme *sc, int c) { pointer x = get_cell(sc,sc->NIL, sc->NIL); typeflag(x) = (T_CHARACTER | T_ATOM); ivalue_unchecked(x)= c; set_integer(x); return (x); } /* get number atom (integer) */ INTERFACE pointer mk_integer(scheme *sc, long num) { pointer x = get_cell(sc,sc->NIL, sc->NIL); typeflag(x) = (T_NUMBER | T_ATOM); ivalue_unchecked(x)= num; set_integer(x); return (x); } INTERFACE pointer mk_real(scheme *sc, double n) { pointer x = get_cell(sc,sc->NIL, sc->NIL); typeflag(x) = (T_NUMBER | T_ATOM); rvalue_unchecked(x)= n; set_real(x); return (x); } static pointer mk_number(scheme *sc, num n) { if(n.is_fixnum) { return mk_integer(sc,n.value.ivalue); } else { return mk_real(sc,n.value.rvalue); } } /* allocate name to string area */ static char *store_string(scheme *sc, int len_str, const char *str, char fill) { char *q; q=(char*)sc->malloc(len_str+1); if(q==0) { sc->no_memory=1; return sc->strbuff; } if(str!=0) { strcpy(q, str); } else { memset(q, fill, len_str); q[len_str]=0; } return (q); } /* get new string */ INTERFACE pointer mk_string(scheme *sc, const char *str) { return mk_counted_string(sc,str,strlen(str)); } INTERFACE pointer mk_counted_string(scheme *sc, const char *str, int len) { pointer x = get_cell(sc, sc->NIL, sc->NIL); strvalue(x) = store_string(sc,len,str,0); typeflag(x) = (T_STRING | T_ATOM); strlength(x) = len; return (x); } static pointer mk_empty_string(scheme *sc, int len, char fill) { pointer x = get_cell(sc, sc->NIL, sc->NIL); strvalue(x) = store_string(sc,len,0,fill); typeflag(x) = (T_STRING | T_ATOM); strlength(x) = len; return (x); } INTERFACE static pointer mk_vector(scheme *sc, int len) { pointer x=get_consecutive_cells(sc,len/2+len%2+1); typeflag(x) = (T_VECTOR | T_ATOM); ivalue_unchecked(x)=len; set_integer(x); fill_vector(x,sc->NIL); return x; } INTERFACE static void fill_vector(pointer vec, pointer obj) { int i; int num=ivalue(vec)/2+ivalue(vec)%2; for(i=0; iNIL) { return (x); } else { x = oblist_add_by_name(sc, name); return (x); } } INTERFACE pointer gensym(scheme *sc) { pointer x; char name[40]; for(; sc->gensym_cntgensym_cnt++) { sprintf(name,"gensym-%ld",sc->gensym_cnt); /* first check oblist */ x = oblist_find_by_name(sc, name); if (x != sc->NIL) { continue; } else { x = oblist_add_by_name(sc, name); return (x); } } return sc->NIL; } /* make symbol or number atom from string */ static pointer mk_atom(scheme *sc, char *q) { char c, *p; int has_dec_point=0; int has_fp_exp = 0; #if USE_COLON_HOOK if((p=strstr(q,"::"))!=0) { *p=0; return cons(sc, sc->COLON_HOOK, cons(sc, cons(sc, sc->QUOTE, cons(sc, mk_atom(sc,p+2), sc->NIL)), cons(sc, mk_symbol(sc,strlwr(q)), sc->NIL))); } #endif p = q; c = *p++; if ((c == '+') || (c == '-')) { c = *p++; if (c == '.') { has_dec_point=1; c = *p++; } if (!isdigit((int) c)) { return (mk_symbol(sc, strlwr(q))); } } else if (c == '.') { has_dec_point=1; c = *p++; if (!isdigit((int) c)) { return (mk_symbol(sc, strlwr(q))); } } else if (!isdigit((int) c)) { return (mk_symbol(sc, strlwr(q))); } for ( ; (c = *p) != 0; ++p) { if (!isdigit((int) c)) { if(c=='.') { if(!has_dec_point) { has_dec_point=1; continue; } } else if ((c == 'e') || (c == 'E')) { if(!has_fp_exp) { has_dec_point = 1; /* decimal point illegal from now on */ p++; if ((*p == '-') || (*p == '+') || isdigit((int) *p)) { continue; } } } return (mk_symbol(sc, strlwr(q))); } } if(has_dec_point) { return mk_real(sc,atof(q)); } return (mk_integer(sc, atol(q))); } /* make constant */ static pointer mk_sharp_const(scheme *sc, char *name) { long x; char tmp[256]; if (!strcmp(name, "t")) return (sc->T); else if (!strcmp(name, "f")) return (sc->F); else if (*name == 'o') {/* #o (octal) */ sprintf(tmp, "0%s", name+1); sscanf(tmp, "%lo", &x); return (mk_integer(sc, x)); } else if (*name == 'd') { /* #d (decimal) */ sscanf(name+1, "%ld", &x); return (mk_integer(sc, x)); } else if (*name == 'x') { /* #x (hex) */ sprintf(tmp, "0x%s", name+1); sscanf(tmp, "%lx", &x); return (mk_integer(sc, x)); } else if (*name == 'b') { /* #b (binary) */ x = binary_decode(name+1); return (mk_integer(sc, x)); } else if (*name == '\\') { /* #\w (character) */ int c=0; if(stricmp(name+1,"space")==0) { c=' '; } else if(stricmp(name+1,"newline")==0) { c='\n'; } else if(stricmp(name+1,"return")==0) { c='\r'; } else if(stricmp(name+1,"tab")==0) { c='\t'; } else if(name[1]=='x' && name[2]!=0) { int c1=0; if(sscanf(name+2,"%x",&c1)==1 && c1<256) { c=c1; } else { return sc->NIL; } #if USE_ASCII_NAMES } else if(is_ascii_name(name+1,&c)) { /* nothing */ #endif } else if(name[2]==0) { c=name[1]; } else { return sc->NIL; } return mk_character(sc,c); } else return (sc->NIL); } /* ========== garbage collector ========== */ /*-- * We use algorithm E (Knuth, The Art of Computer Programming Vol.1, * sec. 2.3.5), the Schorr-Deutsch-Waite link-inversion algorithm, * for marking. */ static void mark(pointer a) { pointer t, q, p; t = (pointer) 0; p = a; E2: setmark(p); if(is_vector(p)) { int i; int num=ivalue_unchecked(p)/2+ivalue_unchecked(p)%2; for(i=0; igc_verbose) { putstr(sc, "gc..."); } /* mark system globals */ mark(sc->oblist); mark(sc->global_env); /* mark current registers */ mark(sc->args); mark(sc->envir); mark(sc->code); dump_stack_mark(sc); mark(sc->value); mark(sc->inport); mark(sc->save_inport); mark(sc->outport); mark(sc->loadport); /* mark variables a, b */ mark(a); mark(b); /* garbage collect */ clrmark(sc->NIL); sc->fcells = 0; sc->free_cell = sc->NIL; /* free-list is kept sorted by address so as to maintain consecutive ranges, if possible, for use with vectors. Here we scan the cells (which are also kept sorted by address) downwards to build the free-list in sorted order. */ for (i = sc->last_cell_seg; i >= 0; i--) { p = sc->cell_seg[i] + CELL_SEGSIZE; while (--p >= sc->cell_seg[i]) { if (is_mark(p)) { clrmark(p); } else { /* reclaim cell */ if (typeflag(p) != 0) { finalize_cell(sc, p); typeflag(p) = 0; car(p) = sc->NIL; } ++sc->fcells; cdr(p) = sc->free_cell; sc->free_cell = p; } } } if (sc->gc_verbose) { char msg[80]; sprintf(msg,"done: %ld cells were recovered.\n", sc->fcells); putstr(sc,msg); } } static void finalize_cell(scheme *sc, pointer a) { if(is_string(a)) { sc->free(strvalue(a)); } else if(is_port(a)) { if(a->_object._port->kind&port_file && a->_object._port->rep.stdio.closeit) { port_close(sc,a,port_input|port_output); } sc->free(a->_object._port); } } /* ========== Routines for Reading ========== */ static int file_push(scheme *sc, const char *fname) { FILE *fin=fopen(fname,"r"); if(fin!=0) { sc->file_i++; sc->load_stack[sc->file_i].kind=port_file|port_input; sc->load_stack[sc->file_i].rep.stdio.file=fin; sc->load_stack[sc->file_i].rep.stdio.closeit=1; sc->nesting_stack[sc->file_i]=0; sc->loadport->_object._port=sc->load_stack+sc->file_i; } return fin!=0; } static void file_pop(scheme *sc) { sc->nesting=sc->nesting_stack[sc->file_i]; if(sc->file_i!=0) { port_close(sc,sc->loadport,port_input); sc->file_i--; sc->loadport->_object._port=sc->load_stack+sc->file_i; if(file_interactive(sc)) { putstr(sc,prompt); } } } static int file_interactive(scheme *sc) { return sc->file_i==0 && sc->load_stack[0].rep.stdio.file==stdin && sc->inport->_object._port->kind&port_file; } static port *port_rep_from_filename(scheme *sc, const char *fn, int prop) { FILE *f; char *rw; port *pt; if(prop==(port_input|port_output)) { rw="a+"; } else if(prop==port_output) { rw="w"; } else { rw="r"; } f=fopen(fn,rw); if(f==0) { return 0; } pt=port_rep_from_file(sc,f,prop); pt->rep.stdio.closeit=1; return pt; } static pointer port_from_filename(scheme *sc, const char *fn, int prop) { port *pt; pt=port_rep_from_filename(sc,fn,prop); if(pt==0) { return sc->NIL; } return mk_port(sc,pt); } static port *port_rep_from_file(scheme *sc, FILE *f, int prop) { /*char *rw;*/ port *pt; pt=(port*)sc->malloc(sizeof(port)); if(pt==0) { return 0; } /* if(prop==(port_input|port_output)) { rw="a+"; } else if(prop==port_output) { rw="w"; } else { rw="r"; } */ pt->kind=port_file|prop; pt->rep.stdio.file=f; pt->rep.stdio.closeit=0; return pt; } static pointer port_from_file(scheme *sc, FILE *f, int prop) { port *pt; pt=port_rep_from_file(sc,f,prop); if(pt==0) { return sc->NIL; } return mk_port(sc,pt); } static port *port_rep_from_string(scheme *sc, char *start, char *past_the_end, int prop) { port *pt; pt=(port*)sc->malloc(sizeof(port)); if(pt==0) { return 0; } pt->kind=port_string|prop; pt->rep.string.start=start; pt->rep.string.curr=start; pt->rep.string.past_the_end=past_the_end; return pt; } static pointer port_from_string(scheme *sc, char *start, char *past_the_end, int prop) { port *pt; pt=port_rep_from_string(sc,start,past_the_end,prop); if(pt==0) { return sc->NIL; } return mk_port(sc,pt); } static void port_close(scheme *sc, pointer p, int flag) { port *pt=p->_object._port; pt->kind&=~flag; if((pt->kind & (port_input|port_output))==0) { if(pt->kind&port_file) { fclose(pt->rep.stdio.file); } pt->kind=port_free; } } /* get new character from input file */ static int inchar(scheme *sc) { int c; port *pt; again: pt=sc->inport->_object._port; c=basic_inchar(pt); if(c==EOF && sc->inport==sc->loadport && sc->file_i!=0) { file_pop(sc); if(sc->nesting!=0) { return EOF; } goto again; } return c; } static int basic_inchar(port *pt) { if(pt->kind&port_file) { return fgetc(pt->rep.stdio.file); } else { if(*pt->rep.string.curr==0 || pt->rep.string.curr==pt->rep.string.past_the_end) { return EOF; } else { return *pt->rep.string.curr++; } } } /* back character to input buffer */ static void backchar(scheme *sc, int c) { port *pt; if(c==EOF) return; pt=sc->inport->_object._port; if(pt->kind&port_file) { ungetc(c,pt->rep.stdio.file); } else { if(pt->rep.string.curr!=pt->rep.string.start) { --pt->rep.string.curr; } } } INTERFACE void putstr(scheme *sc, const char *s) { port *pt=sc->outport->_object._port; if(pt->kind&port_file) { fputs(s,pt->rep.stdio.file); } else { for(;*s;s++) { if(pt->rep.string.curr!=pt->rep.string.past_the_end) { *pt->rep.string.curr++=*s; } } } } static void putchars(scheme *sc, const char *s, int len) { port *pt=sc->outport->_object._port; if(pt->kind&port_file) { /* use the return value here to eliminate a compiler warning */ if (fwrite(s,1,len,pt->rep.stdio.file) == 0) return; } else { for(;len;len--) { if(pt->rep.string.curr!=pt->rep.string.past_the_end) { *pt->rep.string.curr++=*s++; } } } } INTERFACE void putcharacter(scheme *sc, int c) { port *pt=sc->outport->_object._port; if(pt->kind&port_file) { fputc(c,pt->rep.stdio.file); } else { if(pt->rep.string.curr!=pt->rep.string.past_the_end) { *pt->rep.string.curr++=c; } } } /* read characters up to delimiter, but cater to character constants */ static char *readstr_upto(scheme *sc, char *delim) { char *p = sc->strbuff; while (!is_one_of(delim, (*p++ = inchar(sc)))); if(p==sc->strbuff+2 && p[-2]=='\\') { *p=0; } else { backchar(sc,p[-1]); *--p = '\0'; } return sc->strbuff; } /* read string expression "xxx...xxx" */ static pointer readstrexp(scheme *sc) { char *p = sc->strbuff; int c; int c1=0; enum { st_ok, st_bsl, st_x1, st_x2} state=st_ok; for (;;) { c=inchar(sc); if(c==EOF || p-sc->strbuff>sizeof(sc->strbuff)-1) { return sc->F; } switch(state) { case st_ok: switch(c) { case '\\': state=st_bsl; break; case '"': *p=0; return mk_counted_string(sc,sc->strbuff,p-sc->strbuff); default: *p++=c; break; } break; case st_bsl: switch(c) { case 'x': case 'X': state=st_x1; c1=0; break; case 'n': *p++='\n'; state=st_ok; break; case 't': *p++='\t'; state=st_ok; break; case 'r': *p++='\r'; state=st_ok; break; case '"': *p++='"'; state=st_ok; break; default: *p++=c; state=st_ok; break; } break; case st_x1: case st_x2: c=toupper(c); if(c>='0' && c<='F') { if(c<='9') { c1=(c1<<4)+c-'0'; } else { c1=(c1<<4)+c-'A'+10; } if(state==st_x1) { state=st_x2; } else { *p++=c1; state=st_ok; } } else { return sc->F; } break; } } } /* check c is in chars */ static INLINE int is_one_of(char *s, int c) { if(c==EOF) return 1; while (*s) if (*s++ == c) return (1); return (0); } /* skip white characters */ static INLINE void skipspace(scheme *sc) { int c; while (isspace(c=inchar(sc))) ; if(c!=EOF) { backchar(sc,c); } } /* get token */ static int token(scheme *sc) { int c; skipspace(sc); switch (c=inchar(sc)) { case EOF: return (TOK_EOF); case '(': return (TOK_LPAREN); case ')': return (TOK_RPAREN); case '.': c=inchar(sc); if(is_one_of(" \n\t",c)) { return (TOK_DOT); } else { backchar(sc,c); backchar(sc,'.'); return TOK_ATOM; } case '\'': return (TOK_QUOTE); case ';': return (TOK_COMMENT); case '"': return (TOK_DQUOTE); case BACKQUOTE: return (TOK_BQUOTE); case ',': if ((c=inchar(sc)) == '@') return (TOK_ATMARK); else { backchar(sc,c); return (TOK_COMMA); } case '#': c=inchar(sc); if (c == '(') { return (TOK_VEC); } else if(c == '!') { return TOK_COMMENT; } else { backchar(sc,c); if(is_one_of(" tfodxb\\",c)) { return TOK_SHARP_CONST; } else { return (TOK_SHARP); } } default: backchar(sc,c); return (TOK_ATOM); } } /* ========== Routines for Printing ========== */ #define ok_abbrev(x) (is_pair(x) && cdr(x) == sc->NIL) static void printslashstring(scheme *sc, char *p, int len) { int i; unsigned char *s=(unsigned char*)p; putcharacter(sc,'"'); for ( i=0; iNIL) { p = "()"; } else if (l == sc->T) { p = "#t"; } else if (l == sc->F) { p = "#f"; } else if (l == sc->EOF_OBJ) { p = "#"; } else if (is_port(l)) { p = sc->strbuff; strcpy(p, "#"); } else if (is_number(l)) { p = sc->strbuff; if(is_integer(l)) { sprintf(p, "%ld", ivalue_unchecked(l)); } else { sprintf(p, "%.10g", rvalue_unchecked(l)); } } else if (is_string(l)) { if (!f) { p = strvalue(l); } else { /* Hack, uses the fact that printing is needed */ *pp=sc->strbuff; *plen=0; printslashstring(sc, strvalue(l), strlength(l)); return; } } else if (is_character(l)) { int c=charvalue(l); p = sc->strbuff; if (!f) { p[0]=c; p[1]=0; } else { switch(c) { case ' ': sprintf(p,"#\\space"); break; case '\n': sprintf(p,"#\\newline"); break; case '\r': sprintf(p,"#\\return"); break; case '\t': sprintf(p,"#\\tab"); break; default: #if USE_ASCII_NAMES if(c==127) { strcpy(p,"#\\del"); break; } else if(c<32) { strcpy(p,"#\\"); strcat(p,charnames[c]); break; } #else if(c<32) { sprintf(p,"#\\x%x",c); break; } #endif sprintf(p,"#\\%c",c); break; } } } else if (is_symbol(l)) { p = symname(l); } else if (is_proc(l)) { p = sc->strbuff; sprintf(p, "#<%s PROCEDURE %ld>", procname(l),procnum(l)); } else if (is_macro(l)) { p = "#"; } else if (is_closure(l)) { p = "#"; } else if (is_promise(l)) { p = "#"; } else if (is_foreign(l)) { p = sc->strbuff; sprintf(p, "#", procnum(l)); } else if (is_continuation(l)) { p = "#"; } else { p = "#"; } *pp=p; *plen=strlen(p); } /* ========== Routines for Evaluation Cycle ========== */ /* make closure. c is code. e is environment */ static pointer mk_closure(scheme *sc, pointer c, pointer e) { pointer x = get_cell(sc, c, e); typeflag(x) = T_CLOSURE; car(x) = c; cdr(x) = e; return (x); } /* make continuation. */ static pointer mk_continuation(scheme *sc, pointer d) { pointer x = get_cell(sc, sc->NIL, d); typeflag(x) = T_CONTINUATION; cont_dump(x) = d; return (x); } static pointer list_star(scheme *sc, pointer d) { pointer p, q; if(cdr(d)==sc->NIL) { return car(d); } p=cons(sc,car(d),cdr(d)); q=p; while(cdr(cdr(p))!=sc->NIL) { d=cons(sc,car(p),cdr(p)); if(cdr(cdr(p))!=sc->NIL) { p=cdr(d); } } cdr(p)=car(cdr(p)); return q; } /* reverse list -- produce new list */ static pointer reverse(scheme *sc, pointer a) { /* a must be checked by gc */ pointer p = sc->NIL; for ( ; is_pair(a); a = cdr(a)) { p = cons(sc, car(a), p); } return (p); } /* reverse list --- in-place */ static pointer reverse_in_place(scheme *sc, pointer term, pointer list) { pointer p = list, result = term, q; while (p != sc->NIL) { q = cdr(p); cdr(p) = result; result = p; p = q; } return (result); } /* append list -- produce new list */ static pointer append(scheme *sc, pointer a, pointer b) { pointer p = b, q; if (a != sc->NIL) { a = reverse(sc, a); while (a != sc->NIL) { q = cdr(a); cdr(a) = p; p = a; a = q; } } return (p); } /* equivalence of atoms */ static int eqv(pointer a, pointer b) { if (is_string(a)) { if (is_string(b)) return (strvalue(a) == strvalue(b)); else return (0); } else if (is_number(a)) { if (is_number(b)) return num_eq(nvalue(a),nvalue(b)); else return (0); } else if (is_character(a)) { if (is_character(b)) return charvalue(a)==charvalue(b); else return (0); } else if (is_port(a)) { if (is_port(b)) return a==b; else return (0); } else if (is_proc(a)) { if (is_proc(b)) return procnum(a)==procnum(b); else return (0); } else { return (a == b); } } /* true or false value macro */ /* () is #t in R5RS */ #define is_true(p) ((p) != sc->F) #define is_false(p) ((p) == sc->F) /* ========== Environment implementation ========== */ #if !defined(USE_ALIST_ENV) || !defined(USE_OBJECT_LIST) static int hash_fn(const char *key, int table_size) { unsigned int hashed = 0; const char *c; int bits_per_int = sizeof(unsigned int)*8; for (c = key; *c; c++) { /* letters have about 5 bits in them */ hashed = (hashed<<5) | (hashed>>(bits_per_int-5)); hashed ^= *c; } return hashed % table_size; } #endif #ifndef USE_ALIST_ENV /* * In this implementation, each frame of the environment may be * a hash table: a vector of alists hashed by variable name. * In practice, we use a vector only for the initial frame; * subsequent frames are too small and transient for the lookup * speed to out-weigh the cost of making a new vector. */ static void new_frame_in_env(scheme *sc, pointer old_env) { pointer new_frame; /* The interaction-environment has about 300 variables in it. */ if (old_env == sc->NIL) { new_frame = mk_vector(sc, 461); } else { new_frame = sc->NIL; } sc->envir = immutable_cons(sc, new_frame, old_env); setenvironment(sc->envir); } static INLINE void new_slot_spec_in_env(scheme *sc, pointer env, pointer variable, pointer value) { pointer slot = immutable_cons(sc, variable, value); if (is_vector(car(env))) { int location = hash_fn(symname(variable), ivalue_unchecked(car(env))); set_vector_elem(car(env), location, immutable_cons(sc, slot, vector_elem(car(env), location))); } else { car(env) = immutable_cons(sc, slot, car(env)); } } static pointer find_slot_in_env(scheme *sc, pointer env, pointer hdl, int all) { pointer x = sc->NIL, y = sc->NIL; int location = 0; for (x = env; x != sc->NIL; x = cdr(x)) { if (is_vector(car(x))) { location = hash_fn(symname(hdl), ivalue_unchecked(car(x))); y = vector_elem(car(x), location); } else { y = car(x); } for ( ; y != sc->NIL; y = cdr(y)) { if (caar(y) == hdl) { break; } } if (y != sc->NIL) { break; } if(!all) { return sc->NIL; } } if (x != sc->NIL) { return car(y); } return sc->NIL; } #else /* USE_ALIST_ENV */ static INLINE void new_frame_in_env(scheme *sc, pointer old_env) { sc->envir = immutable_cons(sc, sc->NIL, old_env); setenvironment(sc->envir); } static INLINE void new_slot_spec_in_env(scheme *sc, pointer env, pointer variable, pointer value) { car(env) = immutable_cons(sc, immutable_cons(sc, variable, value), car(env)); } static pointer find_slot_in_env(scheme *sc, pointer env, pointer hdl, int all) { pointer x,y; for (x = env; x != sc->NIL; x = cdr(x)) { for (y = car(x); y != sc->NIL; y = cdr(y)) { if (caar(y) == hdl) { break; } } if (y != sc->NIL) { break; } if(!all) { return sc->NIL; } } if (x != sc->NIL) { return car(y); } return sc->NIL; } #endif /* USE_ALIST_ENV else */ static INLINE void new_slot_in_env(scheme *sc, pointer variable, pointer value) { new_slot_spec_in_env(sc, sc->envir, variable, value); } static INLINE void set_slot_in_env(scheme *sc, pointer slot, pointer value) { cdr(slot) = value; } static INLINE pointer slot_value_in_env(pointer slot) { return cdr(slot); } /* ========== Evaluation Cycle ========== */ static pointer _Error_1(scheme *sc, const char *s, pointer a) { #if USE_ERROR_HOOK pointer x; pointer hdl=sc->ERROR_HOOK; x=find_slot_in_env(sc,sc->envir,hdl,1); if (x != sc->NIL) { if(a!=0) { sc->code = cons(sc, cons(sc, sc->QUOTE, cons(sc,(a), sc->NIL)), sc->NIL); } else { sc->code = sc->NIL; } sc->code = cons(sc, mk_string(sc, (s)), sc->code); setimmutable(car(sc->code)); sc->code = cons(sc, slot_value_in_env(x), sc->code); sc->op = (int)OP_EVAL; return sc->T; } #endif if(a!=0) { sc->args = cons(sc, (a), sc->NIL); } else { sc->args = sc->NIL; } sc->args = cons(sc, mk_string(sc, (s)), sc->args); setimmutable(car(sc->args)); sc->op = (int)OP_ERR0; return sc->T; } #define Error_1(sc,s, a) return _Error_1(sc,s,a) #define Error_0(sc,s) return _Error_1(sc,s,0) /* Too small to turn into function */ # define BEGIN do { # define END } while (0) #define s_goto(sc,a) BEGIN \ sc->op = (int)(a); \ return sc->T; END #define s_return(sc,a) return _s_return(sc,a) #ifndef USE_SCHEME_STACK /* this structure holds all the interpreter's registers */ struct dump_stack_frame { enum scheme_opcodes op; pointer args; pointer envir; pointer code; }; #define STACK_GROWTH 3 static void s_save(scheme *sc, enum scheme_opcodes op, pointer args, pointer code) { long nframes = (long)sc->dump; struct dump_stack_frame *next_frame; /* enough room for the next frame? */ if (nframes >= sc->dump_size) { sc->dump_size += STACK_GROWTH; /* alas there is no sc->realloc */ sc->dump_base = realloc(sc->dump_base, sizeof(struct dump_stack_frame) * sc->dump_size); } next_frame = (struct dump_stack_frame *)sc->dump_base + nframes; next_frame->op = op; next_frame->args = args; next_frame->envir = sc->envir; next_frame->code = code; sc->dump = (pointer)(nframes+1L); } static pointer _s_return(scheme *sc, pointer a) { long nframes = (long)sc->dump; struct dump_stack_frame *frame; sc->value = (a); if (nframes <= 0) { return sc->NIL; } nframes--; frame = (struct dump_stack_frame *)sc->dump_base + nframes; sc->op = frame->op; sc->args = frame->args; sc->envir = frame->envir; sc->code = frame->code; sc->dump = (pointer)nframes; return sc->T; } static INLINE void dump_stack_reset(scheme *sc) { /* in this implementation, sc->dump is the number of frames on the stack */ sc->dump = (pointer)0; } static INLINE void dump_stack_initialize(scheme *sc) { sc->dump_size = 0; sc->dump_base = NULL; dump_stack_reset(sc); } static void dump_stack_free(scheme *sc) { free(sc->dump_base); sc->dump_base = NULL; sc->dump = (pointer)0; sc->dump_size = 0; } static INLINE void dump_stack_mark(scheme *sc) { long nframes = (long)sc->dump; int i; for(i=0; idump_base + i; mark(frame->args); mark(frame->envir); mark(frame->code); } } #else static INLINE void dump_stack_reset(scheme *sc) { sc->dump = sc->NIL; } static INLINE void dump_stack_initialize(scheme *sc) { dump_stack_reset(sc); } static void dump_stack_free(scheme *sc) { sc->dump = sc->NIL; } static pointer _s_return(scheme *sc, pointer a) { sc->value = (a); if(sc->dump==sc->NIL) return sc->NIL; sc->op = ivalue(car(sc->dump)); sc->args = cadr(sc->dump); sc->envir = caddr(sc->dump); sc->code = cadddr(sc->dump); sc->dump = cddddr(sc->dump); return sc->T; } static void s_save(scheme *sc, enum scheme_opcodes op, pointer args, pointer code) { sc->dump = cons(sc, sc->envir, cons(sc, (code), sc->dump)); sc->dump = cons(sc, (args), sc->dump); sc->dump = cons(sc, mk_integer(sc, (long)(op)), sc->dump); } static INLINE void dump_stack_mark(scheme *sc) { mark(sc->dump); } #endif #define s_retbool(tf) s_return(sc,(tf) ? sc->T : sc->F) static pointer opexe_0(scheme *sc, enum scheme_opcodes op) { pointer x, y; switch (op) { case OP_LOAD: /* load */ if(file_interactive(sc)) { fprintf(sc->outport->_object._port->rep.stdio.file, "Loading %s\n", strvalue(car(sc->args))); } if (!file_push(sc,strvalue(car(sc->args)))) { Error_1(sc,"unable to open", car(sc->args)); } s_goto(sc,OP_T0LVL); case OP_T0LVL: /* top level */ if(file_interactive(sc)) { putstr(sc,"\n"); } sc->nesting=0; dump_stack_reset(sc); sc->envir = sc->global_env; sc->save_inport=sc->inport; sc->inport = sc->loadport; s_save(sc,OP_T0LVL, sc->NIL, sc->NIL); s_save(sc,OP_VALUEPRINT, sc->NIL, sc->NIL); s_save(sc,OP_T1LVL, sc->NIL, sc->NIL); if (file_interactive(sc)) { putstr(sc,prompt); } s_goto(sc,OP_READ_INTERNAL); case OP_T1LVL: /* top level */ sc->code = sc->value; sc->inport=sc->save_inport; s_goto(sc,OP_EVAL); case OP_READ_INTERNAL: /* internal read */ sc->tok = token(sc); if(sc->tok==TOK_EOF) { if(sc->inport==sc->loadport) { sc->args=sc->NIL; s_goto(sc,OP_QUIT); } else { s_return(sc,sc->EOF_OBJ); } } s_goto(sc,OP_RDSEXPR); case OP_GENSYM: s_return(sc, gensym(sc)); case OP_VALUEPRINT: /* print evaluation result */ /* OP_VALUEPRINT is always pushed, because when changing from non-interactive to interactive mode, it needs to be already on the stack */ if(sc->tracing) { putstr(sc,"\nGives: "); } if(file_interactive(sc)) { sc->print_flag = 1; sc->args = sc->value; s_goto(sc,OP_P0LIST); } else { s_return(sc,sc->value); } case OP_EVAL: /* main part of evaluation */ #if USE_TRACING if(sc->tracing) { /*s_save(sc,OP_VALUEPRINT,sc->NIL,sc->NIL);*/ s_save(sc,OP_REAL_EVAL,sc->args,sc->code); sc->args=sc->code; putstr(sc,"\nEval: "); s_goto(sc,OP_P0LIST); } /* fall through */ case OP_REAL_EVAL: #endif if (is_symbol(sc->code)) { /* symbol */ x=find_slot_in_env(sc,sc->envir,sc->code,1); if (x != sc->NIL) { s_return(sc,slot_value_in_env(x)); } else { Error_1(sc,"eval: unbound variable:", sc->code); } } else if (is_pair(sc->code)) { if (is_syntax(x = car(sc->code))) { /* SYNTAX */ sc->code = cdr(sc->code); s_goto(sc,syntaxnum(x)); } else {/* first, eval top element and eval arguments */ s_save(sc,OP_E0ARGS, sc->NIL, sc->code); /* If no macros => s_save(sc,OP_E1ARGS, sc->NIL, cdr(sc->code));*/ sc->code = car(sc->code); s_goto(sc,OP_EVAL); } } else { s_return(sc,sc->code); } case OP_E0ARGS: /* eval arguments */ if (is_macro(sc->value)) { /* macro expansion */ s_save(sc,OP_DOMACRO, sc->NIL, sc->NIL); sc->args = cons(sc,sc->code, sc->NIL); sc->code = sc->value; s_goto(sc,OP_APPLY); } else { sc->code = cdr(sc->code); s_goto(sc,OP_E1ARGS); } case OP_E1ARGS: /* eval arguments */ sc->args = cons(sc, sc->value, sc->args); if (is_pair(sc->code)) { /* continue */ s_save(sc,OP_E1ARGS, sc->args, cdr(sc->code)); sc->code = car(sc->code); sc->args = sc->NIL; s_goto(sc,OP_EVAL); } else { /* end */ sc->args = reverse_in_place(sc, sc->NIL, sc->args); sc->code = car(sc->args); sc->args = cdr(sc->args); s_goto(sc,OP_APPLY); } #if USE_TRACING case OP_TRACING: { int tr=sc->tracing; sc->tracing=ivalue(car(sc->args)); s_return(sc,mk_integer(sc,tr)); } #endif case OP_APPLY: /* apply 'code' to 'args' */ #if USE_TRACING if(sc->tracing) { s_save(sc,OP_REAL_APPLY,sc->args,sc->code); sc->print_flag = 1; /* sc->args=cons(sc,sc->code,sc->args);*/ putstr(sc,"\nApply to: "); s_goto(sc,OP_P0LIST); } /* fall through */ case OP_REAL_APPLY: #endif if (is_proc(sc->code)) { s_goto(sc,procnum(sc->code)); /* PROCEDURE */ } else if (is_foreign(sc->code)) { x=sc->code->_object._ff(sc,sc->args); s_return(sc,x); } else if (is_closure(sc->code) || is_macro(sc->code) || is_promise(sc->code)) { /* CLOSURE */ /* Should not accept promise */ /* make environment */ new_frame_in_env(sc, closure_env(sc->code)); for (x = car(closure_code(sc->code)), y = sc->args; is_pair(x); x = cdr(x), y = cdr(y)) { if (y == sc->NIL) { Error_0(sc,"not enough arguments"); } else { new_slot_in_env(sc, car(x), car(y)); } } if (x == sc->NIL) { /*-- * if (y != sc->NIL) { * Error_0(sc,"too many arguments"); * } */ } else if (is_symbol(x)) new_slot_in_env(sc, x, y); else { Error_1(sc,"syntax error in closure: not a symbol:", x); } sc->code = cdr(closure_code(sc->code)); sc->args = sc->NIL; s_goto(sc,OP_BEGIN); } else if (is_continuation(sc->code)) { /* CONTINUATION */ sc->dump = cont_dump(sc->code); s_return(sc,sc->args != sc->NIL ? car(sc->args) : sc->NIL); } else { Error_0(sc,"illegal function"); } case OP_DOMACRO: /* do macro */ sc->code = sc->value; s_goto(sc,OP_EVAL); case OP_LAMBDA: /* lambda */ s_return(sc,mk_closure(sc, sc->code, sc->envir)); case OP_MKCLOSURE: /* make-closure */ x=car(sc->args); if(car(x)==sc->LAMBDA) { x=cdr(x); } if(cdr(sc->args)==sc->NIL) { y=sc->envir; } else { y=cadr(sc->args); } s_return(sc,mk_closure(sc, x, y)); case OP_QUOTE: /* quote */ x=car(sc->code); s_return(sc,car(sc->code)); case OP_DEF0: /* define */ if (is_pair(car(sc->code))) { x = caar(sc->code); sc->code = cons(sc, sc->LAMBDA, cons(sc, cdar(sc->code), cdr(sc->code))); } else { x = car(sc->code); sc->code = cadr(sc->code); } if (!is_symbol(x)) { Error_0(sc,"variable is not a symbol"); } s_save(sc,OP_DEF1, sc->NIL, x); s_goto(sc,OP_EVAL); case OP_DEF1: /* define */ x=find_slot_in_env(sc,sc->envir,sc->code,0); if (x != sc->NIL) { set_slot_in_env(sc, x, sc->value); } else { new_slot_in_env(sc, sc->code, sc->value); } s_return(sc,sc->code); case OP_DEFP: /* defined? */ x=sc->envir; if(cdr(sc->args)!=sc->NIL) { x=cadr(sc->args); } s_retbool(find_slot_in_env(sc,x,car(sc->args),1)!=sc->NIL); case OP_SET0: /* set! */ s_save(sc,OP_SET1, sc->NIL, car(sc->code)); sc->code = cadr(sc->code); s_goto(sc,OP_EVAL); case OP_SET1: /* set! */ y=find_slot_in_env(sc,sc->envir,sc->code,1); if (y != sc->NIL) { set_slot_in_env(sc, y, sc->value); s_return(sc,sc->value); } else { Error_1(sc,"set!: unbound variable:", sc->code); } case OP_BEGIN: /* begin */ if (!is_pair(sc->code)) { s_return(sc,sc->code); } if (cdr(sc->code) != sc->NIL) { s_save(sc,OP_BEGIN, sc->NIL, cdr(sc->code)); } sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_IF0: /* if */ s_save(sc,OP_IF1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_IF1: /* if */ if (is_true(sc->value)) sc->code = car(sc->code); else sc->code = cadr(sc->code); /* (if #f 1) ==> () because * car(sc->NIL) = sc->NIL */ s_goto(sc,OP_EVAL); case OP_LET0: /* let */ sc->args = sc->NIL; sc->value = sc->code; sc->code = is_symbol(car(sc->code)) ? cadr(sc->code) : car(sc->code); s_goto(sc,OP_LET1); case OP_LET1: /* let (calculate parameters) */ sc->args = cons(sc, sc->value, sc->args); if (is_pair(sc->code)) { /* continue */ s_save(sc,OP_LET1, sc->args, cdr(sc->code)); sc->code = cadar(sc->code); sc->args = sc->NIL; s_goto(sc,OP_EVAL); } else { /* end */ sc->args = reverse_in_place(sc, sc->NIL, sc->args); sc->code = car(sc->args); sc->args = cdr(sc->args); s_goto(sc,OP_LET2); } case OP_LET2: /* let */ new_frame_in_env(sc, sc->envir); for (x = is_symbol(car(sc->code)) ? cadr(sc->code) : car(sc->code), y = sc->args; y != sc->NIL; x = cdr(x), y = cdr(y)) { new_slot_in_env(sc, caar(x), car(y)); } if (is_symbol(car(sc->code))) { /* named let */ for (x = cadr(sc->code), sc->args = sc->NIL; x != sc->NIL; x = cdr(x)) { sc->args = cons(sc, caar(x), sc->args); } x = mk_closure(sc, cons(sc, reverse_in_place(sc, sc->NIL, sc->args), cddr(sc->code)), sc->envir); new_slot_in_env(sc, car(sc->code), x); sc->code = cddr(sc->code); sc->args = sc->NIL; } else { sc->code = cdr(sc->code); sc->args = sc->NIL; } s_goto(sc,OP_BEGIN); case OP_LET0AST: /* let* */ if (car(sc->code) == sc->NIL) { new_frame_in_env(sc, sc->envir); sc->code = cdr(sc->code); s_goto(sc,OP_BEGIN); } s_save(sc,OP_LET1AST, cdr(sc->code), car(sc->code)); sc->code = cadaar(sc->code); s_goto(sc,OP_EVAL); case OP_LET1AST: /* let* (make new frame) */ new_frame_in_env(sc, sc->envir); s_goto(sc,OP_LET2AST); case OP_LET2AST: /* let* (calculate parameters) */ new_slot_in_env(sc, caar(sc->code), sc->value); sc->code = cdr(sc->code); if (is_pair(sc->code)) { /* continue */ s_save(sc,OP_LET2AST, sc->args, sc->code); sc->code = cadar(sc->code); sc->args = sc->NIL; s_goto(sc,OP_EVAL); } else { /* end */ sc->code = sc->args; sc->args = sc->NIL; s_goto(sc,OP_BEGIN); } default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; } static pointer opexe_1(scheme *sc, enum scheme_opcodes op) { pointer x, y; switch (op) { case OP_LET0REC: /* letrec */ new_frame_in_env(sc, sc->envir); sc->args = sc->NIL; sc->value = sc->code; sc->code = car(sc->code); s_goto(sc,OP_LET1REC); case OP_LET1REC: /* letrec (calculate parameters) */ sc->args = cons(sc, sc->value, sc->args); if (is_pair(sc->code)) { /* continue */ s_save(sc,OP_LET1REC, sc->args, cdr(sc->code)); sc->code = cadar(sc->code); sc->args = sc->NIL; s_goto(sc,OP_EVAL); } else { /* end */ sc->args = reverse_in_place(sc, sc->NIL, sc->args); sc->code = car(sc->args); sc->args = cdr(sc->args); s_goto(sc,OP_LET2REC); } case OP_LET2REC: /* letrec */ for (x = car(sc->code), y = sc->args; y != sc->NIL; x = cdr(x), y = cdr(y)) { new_slot_in_env(sc, caar(x), car(y)); } sc->code = cdr(sc->code); sc->args = sc->NIL; s_goto(sc,OP_BEGIN); case OP_COND0: /* cond */ if (!is_pair(sc->code)) { Error_0(sc,"syntax error in cond"); } s_save(sc,OP_COND1, sc->NIL, sc->code); sc->code = caar(sc->code); s_goto(sc,OP_EVAL); case OP_COND1: /* cond */ if (is_true(sc->value)) { if ((sc->code = cdar(sc->code)) == sc->NIL) { s_return(sc,sc->value); } if(car(sc->code)==sc->FEED_TO) { if(!is_pair(cdr(sc->code))) { Error_0(sc,"syntax error in cond"); } x=cons(sc, sc->QUOTE, cons(sc, sc->value, sc->NIL)); sc->code=cons(sc,cadr(sc->code),cons(sc,x,sc->NIL)); s_goto(sc,OP_EVAL); } s_goto(sc,OP_BEGIN); } else { if ((sc->code = cdr(sc->code)) == sc->NIL) { s_return(sc,sc->NIL); } else { s_save(sc,OP_COND1, sc->NIL, sc->code); sc->code = caar(sc->code); s_goto(sc,OP_EVAL); } } case OP_DELAY: /* delay */ x = mk_closure(sc, cons(sc, sc->NIL, sc->code), sc->envir); typeflag(x)=T_PROMISE; s_return(sc,x); case OP_AND0: /* and */ if (sc->code == sc->NIL) { s_return(sc,sc->T); } s_save(sc,OP_AND1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_AND1: /* and */ if (is_false(sc->value)) { s_return(sc,sc->value); } else if (sc->code == sc->NIL) { s_return(sc,sc->value); } else { s_save(sc,OP_AND1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); } case OP_OR0: /* or */ if (sc->code == sc->NIL) { s_return(sc,sc->F); } s_save(sc,OP_OR1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_OR1: /* or */ if (is_true(sc->value)) { s_return(sc,sc->value); } else if (sc->code == sc->NIL) { s_return(sc,sc->value); } else { s_save(sc,OP_OR1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); } case OP_C0STREAM: /* cons-stream */ s_save(sc,OP_C1STREAM, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_C1STREAM: /* cons-stream */ sc->args = sc->value; /* save sc->value to register sc->args for gc */ x = mk_closure(sc, cons(sc, sc->NIL, sc->code), sc->envir); typeflag(x)=T_PROMISE; s_return(sc,cons(sc, sc->args, x)); case OP_MACRO0: /* macro */ if (is_pair(car(sc->code))) { x = caar(sc->code); sc->code = cons(sc, sc->LAMBDA, cons(sc, cdar(sc->code), cdr(sc->code))); } else { x = car(sc->code); sc->code = cadr(sc->code); } if (!is_symbol(x)) { Error_0(sc,"variable is not a symbol"); } s_save(sc,OP_MACRO1, sc->NIL, x); s_goto(sc,OP_EVAL); case OP_MACRO1: /* macro */ typeflag(sc->value) = T_MACRO; x = find_slot_in_env(sc, sc->envir, sc->code, 0); if (x != sc->NIL) { set_slot_in_env(sc, x, sc->value); } else { new_slot_in_env(sc, sc->code, sc->value); } s_return(sc,sc->code); case OP_CASE0: /* case */ s_save(sc,OP_CASE1, sc->NIL, cdr(sc->code)); sc->code = car(sc->code); s_goto(sc,OP_EVAL); case OP_CASE1: /* case */ for (x = sc->code; x != sc->NIL; x = cdr(x)) { if (!is_pair(y = caar(x))) { break; } for ( ; y != sc->NIL; y = cdr(y)) { if (eqv(car(y), sc->value)) { break; } } if (y != sc->NIL) { break; } } if (x != sc->NIL) { if (is_pair(caar(x))) { sc->code = cdar(x); s_goto(sc,OP_BEGIN); } else {/* else */ s_save(sc,OP_CASE2, sc->NIL, cdar(x)); sc->code = caar(x); s_goto(sc,OP_EVAL); } } else { s_return(sc,sc->NIL); } case OP_CASE2: /* case */ if (is_true(sc->value)) { s_goto(sc,OP_BEGIN); } else { s_return(sc,sc->NIL); } case OP_PAPPLY: /* apply */ sc->code = car(sc->args); sc->args = list_star(sc,cdr(sc->args)); /*sc->args = cadr(sc->args);*/ s_goto(sc,OP_APPLY); case OP_PEVAL: /* eval */ if(cdr(sc->args)!=sc->NIL) { sc->envir=cadr(sc->args); } sc->code = car(sc->args); s_goto(sc,OP_EVAL); case OP_CONTINUATION: /* call-with-current-continuation */ sc->code = car(sc->args); sc->args = cons(sc, mk_continuation(sc, sc->dump), sc->NIL); s_goto(sc,OP_APPLY); default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; } static pointer opexe_2(scheme *sc, enum scheme_opcodes op) { pointer x; num v; #if USE_MATH double dd; #endif switch (op) { #if USE_MATH case OP_INEX2EX: /* inexact->exact */ x=car(sc->args); if(is_integer(x)) { s_return(sc,x); } else if(modf(rvalue_unchecked(x),&dd)==0.0) { s_return(sc,mk_integer(sc,ivalue(x))); } else { Error_1(sc,"inexact->exact: not integral:",x); } case OP_EXP: x=car(sc->args); s_return(sc, mk_real(sc, exp(rvalue(x)))); case OP_LOG: x=car(sc->args); s_return(sc, mk_real(sc, log(rvalue(x)))); case OP_SIN: x=car(sc->args); s_return(sc, mk_real(sc, sin(rvalue(x)))); case OP_COS: x=car(sc->args); s_return(sc, mk_real(sc, cos(rvalue(x)))); case OP_TAN: x=car(sc->args); s_return(sc, mk_real(sc, tan(rvalue(x)))); case OP_ASIN: x=car(sc->args); s_return(sc, mk_real(sc, asin(rvalue(x)))); case OP_ACOS: x=car(sc->args); s_return(sc, mk_real(sc, acos(rvalue(x)))); case OP_ATAN: x=car(sc->args); if(cdr(sc->args)==sc->NIL) { s_return(sc, mk_real(sc, atan(rvalue(x)))); } else { pointer y=cadr(sc->args); s_return(sc, mk_real(sc, atan2(rvalue(x),rvalue(y)))); } case OP_SQRT: x=car(sc->args); s_return(sc, mk_real(sc, sqrt(rvalue(x)))); case OP_EXPT: x=car(sc->args); if(cdr(sc->args)==sc->NIL) { Error_0(sc,"expt: needs two arguments"); } else { pointer y=cadr(sc->args); s_return(sc, mk_real(sc, pow(rvalue(x),rvalue(y)))); } case OP_FLOOR: x=car(sc->args); s_return(sc, mk_real(sc, floor(rvalue(x)))); case OP_CEILING: x=car(sc->args); s_return(sc, mk_real(sc, ceil(rvalue(x)))); case OP_TRUNCATE : { double rvalue_of_x ; x=car(sc->args); rvalue_of_x = rvalue(x) ; if (rvalue_of_x > 0) { s_return(sc, mk_real(sc, floor(rvalue_of_x))); } else { s_return(sc, mk_real(sc, ceil(rvalue_of_x))); } } case OP_ROUND: x=car(sc->args); s_return(sc, mk_real(sc, round_per_R5RS(rvalue(x)))); #endif case OP_ADD: /* + */ v=num_zero; for (x = sc->args; x != sc->NIL; x = cdr(x)) { v=num_add(v,nvalue(car(x))); } s_return(sc,mk_number(sc, v)); case OP_MUL: /* * */ v=num_one; for (x = sc->args; x != sc->NIL; x = cdr(x)) { v=num_mul(v,nvalue(car(x))); } s_return(sc,mk_number(sc, v)); case OP_SUB: /* - */ if(cdr(sc->args)==sc->NIL) { x=sc->args; v=num_zero; } else { x = cdr(sc->args); v = nvalue(car(sc->args)); } for (; x != sc->NIL; x = cdr(x)) { v=num_sub(v,nvalue(car(x))); } s_return(sc,mk_number(sc, v)); case OP_DIV: /* / */ if(cdr(sc->args)==sc->NIL) { x=sc->args; v=num_one; } else { x = cdr(sc->args); v = nvalue(car(sc->args)); } for (; x != sc->NIL; x = cdr(x)) { if (!is_zero_double(rvalue(car(x)))) v=num_div(v,nvalue(car(x))); else { Error_0(sc,"/: division by zero"); } } s_return(sc,mk_number(sc, v)); case OP_INTDIV: /* quotient */ if(cdr(sc->args)==sc->NIL) { x=sc->args; v=num_one; } else { x = cdr(sc->args); v = nvalue(car(sc->args)); } for (; x != sc->NIL; x = cdr(x)) { if (ivalue(car(x)) != 0) v=num_intdiv(v,nvalue(car(x))); else { Error_0(sc,"quotient: division by zero"); } } s_return(sc,mk_number(sc, v)); case OP_REM: /* remainder */ v = nvalue(car(sc->args)); if (ivalue(cadr(sc->args)) != 0) v=num_rem(v,nvalue(cadr(sc->args))); else { Error_0(sc,"remainder: division by zero"); } s_return(sc,mk_number(sc, v)); case OP_MOD: /* modulo */ v = nvalue(car(sc->args)); if (ivalue(cadr(sc->args)) != 0) v=num_mod(v,nvalue(cadr(sc->args))); else { Error_0(sc,"modulo: division by zero"); } s_return(sc,mk_number(sc, v)); case OP_CAR: /* car */ s_return(sc,caar(sc->args)); case OP_CDR: /* cdr */ s_return(sc,cdar(sc->args)); case OP_CONS: /* cons */ cdr(sc->args) = cadr(sc->args); s_return(sc,sc->args); case OP_SETCAR: /* set-car! */ if(!is_immutable(car(sc->args))) { caar(sc->args) = cadr(sc->args); s_return(sc,car(sc->args)); } else { Error_0(sc,"set-car!: unable to alter immutable pair"); } case OP_SETCDR: /* set-cdr! */ if(!is_immutable(car(sc->args))) { cdar(sc->args) = cadr(sc->args); s_return(sc,car(sc->args)); } else { Error_0(sc,"set-cdr!: unable to alter immutable pair"); } case OP_CHAR2INT: { /* char->integer */ char c; c=(char)ivalue(car(sc->args)); s_return(sc,mk_integer(sc,(unsigned char)c)); } case OP_INT2CHAR: { /* integer->char */ unsigned char c; c=(unsigned char)ivalue(car(sc->args)); s_return(sc,mk_character(sc,(char)c)); } case OP_CHARUPCASE: { unsigned char c; c=(unsigned char)ivalue(car(sc->args)); c=toupper(c); s_return(sc,mk_character(sc,(char)c)); } case OP_CHARDNCASE: { unsigned char c; c=(unsigned char)ivalue(car(sc->args)); c=tolower(c); s_return(sc,mk_character(sc,(char)c)); } case OP_STR2SYM: /* string->symbol */ s_return(sc,mk_symbol(sc,strvalue(car(sc->args)))); case OP_STR2ATOM: /* string->atom */ { char *s=strvalue(car(sc->args)); if(*s=='#') { s_return(sc, mk_sharp_const(sc, s+1)); } else { s_return(sc, mk_atom(sc, s)); } } case OP_SYM2STR: /* symbol->string */ x=mk_string(sc,symname(car(sc->args))); setimmutable(x); s_return(sc,x); case OP_ATOM2STR: /* atom->string */ x=car(sc->args); if(is_number(x) || is_character(x) || is_string(x) || is_symbol(x)) { char *p; int len; atom2str(sc,x,0,&p,&len); s_return(sc,mk_counted_string(sc,p,len)); } else { Error_1(sc, "atom->string: not an atom:", x); } case OP_MKSTRING: { /* make-string */ int fill=' '; int len; len=ivalue(car(sc->args)); if(cdr(sc->args)!=sc->NIL) { fill=charvalue(cadr(sc->args)); } s_return(sc,mk_empty_string(sc,len,(char)fill)); } case OP_STRLEN: /* string-length */ s_return(sc,mk_integer(sc,strlength(car(sc->args)))); case OP_STRREF: { /* string-ref */ char *str; int index; str=strvalue(car(sc->args)); index=ivalue(cadr(sc->args)); if(index>=strlength(car(sc->args))) { Error_1(sc,"string-ref: out of bounds:",cadr(sc->args)); } s_return(sc,mk_character(sc,((unsigned char*)str)[index])); } case OP_STRSET: { /* string-set! */ char *str; int index; int c; if(is_immutable(car(sc->args))) { Error_1(sc,"string-set!: unable to alter immutable string:",car(sc->args)); } str=strvalue(car(sc->args)); index=ivalue(cadr(sc->args)); if(index>=strlength(car(sc->args))) { Error_1(sc,"string-set!: out of bounds:",cadr(sc->args)); } c=charvalue(caddr(sc->args)); str[index]=(char)c; s_return(sc,car(sc->args)); } case OP_STRAPPEND: { /* string-append */ /* in 1.29 string-append was in Scheme in init.scm but was too slow */ int len = 0; pointer newstr; char *pos; /* compute needed length for new string */ for (x = sc->args; x != sc->NIL; x = cdr(x)) { len += strlength(car(x)); } newstr = mk_empty_string(sc, len, ' '); /* store the contents of the argument strings into the new string */ for (pos = strvalue(newstr), x = sc->args; x != sc->NIL; pos += strlength(car(x)), x = cdr(x)) { memcpy(pos, strvalue(car(x)), strlength(car(x))); } s_return(sc, newstr); } case OP_SUBSTR: { /* substring */ char *str; int index0; int index1; int len; str=strvalue(car(sc->args)); index0=ivalue(cadr(sc->args)); if(index0>strlength(car(sc->args))) { Error_1(sc,"substring: start out of bounds:",cadr(sc->args)); } if(cddr(sc->args)!=sc->NIL) { index1=ivalue(caddr(sc->args)); if(index1>strlength(car(sc->args)) || index1args)); } } else { index1=strlength(car(sc->args)); } len=index1-index0; x=mk_empty_string(sc,len,' '); memcpy(strvalue(x),str+index0,len); strvalue(x)[len]=0; s_return(sc,x); } case OP_VECTOR: { /* vector */ int i; pointer vec; int len=list_length(sc,sc->args); if(len<0) { Error_1(sc,"vector: not a proper list:",sc->args); } vec=mk_vector(sc,len); for (x = sc->args, i = 0; is_pair(x); x = cdr(x), i++) { set_vector_elem(vec,i,car(x)); } s_return(sc,vec); } case OP_MKVECTOR: { /* make-vector */ pointer fill=sc->NIL; int len; pointer vec; len=ivalue(car(sc->args)); if(cdr(sc->args)!=sc->NIL) { fill=cadr(sc->args); } vec=mk_vector(sc,len); if(fill!=sc->NIL) { fill_vector(vec,fill); } s_return(sc,vec); } case OP_VECLEN: /* vector-length */ s_return(sc,mk_integer(sc,ivalue(car(sc->args)))); case OP_VECREF: { /* vector-ref */ int index; index=ivalue(cadr(sc->args)); if(index>=ivalue(car(sc->args))) { Error_1(sc,"vector-ref: out of bounds:",cadr(sc->args)); } s_return(sc,vector_elem(car(sc->args),index)); } case OP_VECSET: { /* vector-set! */ int index; if(is_immutable(car(sc->args))) { Error_1(sc,"vector-set!: unable to alter immutable vector:",car(sc->args)); } index=ivalue(cadr(sc->args)); if(index>=ivalue(car(sc->args))) { Error_1(sc,"vector-set!: out of bounds:",cadr(sc->args)); } set_vector_elem(car(sc->args),index,caddr(sc->args)); s_return(sc,car(sc->args)); } default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; } static int list_length(scheme *sc, pointer a) { int v=0; pointer x; for (x = a, v = 0; is_pair(x); x = cdr(x)) { ++v; } if(x==sc->NIL) { return v; } return -1; } static pointer opexe_3(scheme *sc, enum scheme_opcodes op) { pointer x; num v; int (*comp_func)(num,num)=0; switch (op) { case OP_NOT: /* not */ s_retbool(is_false(car(sc->args))); case OP_BOOLP: /* boolean? */ s_retbool(car(sc->args) == sc->F || car(sc->args) == sc->T); case OP_EOFOBJP: /* boolean? */ s_retbool(car(sc->args) == sc->EOF_OBJ); case OP_NULLP: /* null? */ s_retbool(car(sc->args) == sc->NIL); case OP_NUMEQ: /* = */ case OP_LESS: /* < */ case OP_GRE: /* > */ case OP_LEQ: /* <= */ case OP_GEQ: /* >= */ switch(op) { case OP_NUMEQ: comp_func=num_eq; break; case OP_LESS: comp_func=num_lt; break; case OP_GRE: comp_func=num_gt; break; case OP_LEQ: comp_func=num_le; break; case OP_GEQ: comp_func=num_ge; break; default: ; } x=sc->args; v=nvalue(car(x)); x=cdr(x); for (; x != sc->NIL; x = cdr(x)) { if(!comp_func(v,nvalue(car(x)))) { s_retbool(0); } v=nvalue(car(x)); } s_retbool(1); case OP_SYMBOLP: /* symbol? */ s_retbool(is_symbol(car(sc->args))); case OP_NUMBERP: /* number? */ s_retbool(is_number(car(sc->args))); case OP_STRINGP: /* string? */ s_retbool(is_string(car(sc->args))); case OP_INTEGERP: /* integer? */ s_retbool(is_integer(car(sc->args))); case OP_REALP: /* real? */ s_retbool(is_number(car(sc->args))); /* All numbers are real */ case OP_CHARP: /* char? */ s_retbool(is_character(car(sc->args))); #if USE_CHAR_CLASSIFIERS case OP_CHARAP: /* char-alphabetic? */ s_retbool(Cisalpha(ivalue(car(sc->args)))); case OP_CHARNP: /* char-numeric? */ s_retbool(Cisdigit(ivalue(car(sc->args)))); case OP_CHARWP: /* char-whitespace? */ s_retbool(Cisspace(ivalue(car(sc->args)))); case OP_CHARUP: /* char-upper-case? */ s_retbool(Cisupper(ivalue(car(sc->args)))); case OP_CHARLP: /* char-lower-case? */ s_retbool(Cislower(ivalue(car(sc->args)))); #endif case OP_PORTP: /* port? */ s_retbool(is_port(car(sc->args))); case OP_INPORTP: /* input-port? */ s_retbool(is_inport(car(sc->args))); case OP_OUTPORTP: /* output-port? */ s_retbool(is_outport(car(sc->args))); case OP_PROCP: /* procedure? */ /*-- * continuation should be procedure by the example * (call-with-current-continuation procedure?) ==> #t * in R^3 report sec. 6.9 */ s_retbool(is_proc(car(sc->args)) || is_closure(car(sc->args)) || is_continuation(car(sc->args)) || is_foreign(car(sc->args))); case OP_PAIRP: /* pair? */ s_retbool(is_pair(car(sc->args))); case OP_LISTP: { /* list? */ pointer slow, fast; slow = fast = car(sc->args); while (1) { if (!is_pair(fast)) s_retbool(fast == sc->NIL); fast = cdr(fast); if (!is_pair(fast)) s_retbool(fast == sc->NIL); fast = cdr(fast); slow = cdr(slow); if (fast == slow) { /* the fast pointer has looped back around and caught up with the slow pointer, hence the structure is circular, not of finite length, and therefore not a list */ s_retbool(0); } } } case OP_ENVP: /* environment? */ s_retbool(is_environment(car(sc->args))); case OP_VECTORP: /* vector? */ s_retbool(is_vector(car(sc->args))); case OP_EQ: /* eq? */ s_retbool(car(sc->args) == cadr(sc->args)); case OP_EQV: /* eqv? */ s_retbool(eqv(car(sc->args), cadr(sc->args))); default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; } static pointer opexe_4(scheme *sc, enum scheme_opcodes op) { pointer x, y; switch (op) { case OP_FORCE: /* force */ sc->code = car(sc->args); if (is_promise(sc->code)) { /* Should change type to closure here */ s_save(sc, OP_SAVE_FORCED, sc->NIL, sc->code); sc->args = sc->NIL; s_goto(sc,OP_APPLY); } else { s_return(sc,sc->code); } case OP_SAVE_FORCED: /* Save forced value replacing promise */ memcpy(sc->code,sc->value,sizeof(struct cell)); s_return(sc,sc->value); case OP_WRITE: /* write */ case OP_DISPLAY: /* display */ case OP_WRITE_CHAR: /* write-char */ if(is_pair(cdr(sc->args))) { if(cadr(sc->args)!=sc->outport) { x=cons(sc,sc->outport,sc->NIL); s_save(sc,OP_SET_OUTPORT, x, sc->NIL); sc->outport=cadr(sc->args); } } sc->args = car(sc->args); if(op==OP_WRITE) { sc->print_flag = 1; } else { sc->print_flag = 0; } s_goto(sc,OP_P0LIST); case OP_NEWLINE: /* newline */ if(is_pair(sc->args)) { if(car(sc->args)!=sc->outport) { x=cons(sc,sc->outport,sc->NIL); s_save(sc,OP_SET_OUTPORT, x, sc->NIL); sc->outport=car(sc->args); } } putstr(sc, "\n"); s_return(sc,sc->T); case OP_ERR0: /* error */ sc->retcode=-1; if (!is_string(car(sc->args))) { sc->args=cons(sc,mk_string(sc," -- "),sc->args); setimmutable(car(sc->args)); } putstr(sc, "Error: "); putstr(sc, strvalue(car(sc->args))); sc->args = cdr(sc->args); s_goto(sc,OP_ERR1); case OP_ERR1: /* error */ putstr(sc, " "); if (sc->args != sc->NIL) { s_save(sc,OP_ERR1, cdr(sc->args), sc->NIL); sc->args = car(sc->args); sc->print_flag = 1; s_goto(sc,OP_P0LIST); } else { putstr(sc, "\n"); if(sc->interactive_repl) { s_goto(sc,OP_T0LVL); } else { return sc->NIL; } } case OP_REVERSE: /* reverse */ s_return(sc,reverse(sc, car(sc->args))); case OP_LIST_STAR: /* list* */ s_return(sc,list_star(sc,sc->args)); case OP_APPEND: /* append */ if(sc->args==sc->NIL) { s_return(sc,sc->NIL); } x=car(sc->args); if(cdr(sc->args)==sc->NIL) { s_return(sc,sc->args); } for (y = cdr(sc->args); y != sc->NIL; y = cdr(y)) { x=append(sc,x,car(y)); } s_return(sc,x); #if USE_PLIST case OP_PUT: /* put */ if (!hasprop(car(sc->args)) || !hasprop(cadr(sc->args))) { Error_0(sc,"illegal use of put"); } for (x = symprop(car(sc->args)), y = cadr(sc->args); x != sc->NIL; x = cdr(x)) { if (caar(x) == y) { break; } } if (x != sc->NIL) cdar(x) = caddr(sc->args); else symprop(car(sc->args)) = cons(sc, cons(sc, y, caddr(sc->args)), symprop(car(sc->args))); s_return(sc,sc->T); case OP_GET: /* get */ if (!hasprop(car(sc->args)) || !hasprop(cadr(sc->args))) { Error_0(sc,"illegal use of get"); } for (x = symprop(car(sc->args)), y = cadr(sc->args); x != sc->NIL; x = cdr(x)) { if (caar(x) == y) { break; } } if (x != sc->NIL) { s_return(sc,cdar(x)); } else { s_return(sc,sc->NIL); } #endif /* USE_PLIST */ case OP_QUIT: /* quit */ if(is_pair(sc->args)) { sc->retcode=ivalue(car(sc->args)); } return (sc->NIL); case OP_GC: /* gc */ gc(sc, sc->NIL, sc->NIL); s_return(sc,sc->T); case OP_GCVERB: /* gc-verbose */ { int was = sc->gc_verbose; sc->gc_verbose = (car(sc->args) != sc->F); s_retbool(was); } case OP_NEWSEGMENT: /* new-segment */ if (!is_pair(sc->args) || !is_number(car(sc->args))) { Error_0(sc,"new-segment: argument must be a number"); } alloc_cellseg(sc, (int) ivalue(car(sc->args))); s_return(sc,sc->T); case OP_OBLIST: /* oblist */ s_return(sc, oblist_all_symbols(sc)); case OP_CURR_INPORT: /* current-input-port */ s_return(sc,sc->inport); case OP_CURR_OUTPORT: /* current-output-port */ s_return(sc,sc->outport); case OP_OPEN_INFILE: /* open-input-file */ case OP_OPEN_OUTFILE: /* open-output-file */ case OP_OPEN_INOUTFILE: /* open-input-output-file */ { int prop=0; pointer p; switch(op) { case OP_OPEN_INFILE: prop=port_input; break; case OP_OPEN_OUTFILE: prop=port_output; break; case OP_OPEN_INOUTFILE: prop=port_input|port_output; break; default: ; } p=port_from_filename(sc,strvalue(car(sc->args)),prop); if(p==sc->NIL) { s_return(sc,sc->F); } s_return(sc,p); } #if USE_STRING_PORTS case OP_OPEN_INSTRING: /* open-input-string */ case OP_OPEN_OUTSTRING: /* open-output-string */ case OP_OPEN_INOUTSTRING: /* open-input-output-string */ { int prop=0; pointer p; switch(op) { case OP_OPEN_INSTRING: prop=port_input; break; case OP_OPEN_OUTSTRING: prop=port_output; break; case OP_OPEN_INOUTSTRING: prop=port_input|port_output; break; default: ; } p=port_from_string(sc, strvalue(car(sc->args)), strvalue(car(sc->args))+strlength(car(sc->args)), prop); if(p==sc->NIL) { s_return(sc,sc->F); } s_return(sc,p); } #endif case OP_CLOSE_INPORT: /* close-input-port */ port_close(sc,car(sc->args),port_input); s_return(sc,sc->T); case OP_CLOSE_OUTPORT: /* close-output-port */ port_close(sc,car(sc->args),port_output); s_return(sc,sc->T); case OP_INT_ENV: /* interaction-environment */ s_return(sc,sc->global_env); case OP_CURR_ENV: /* current-environment */ s_return(sc,sc->envir); default: ; } return sc->T; } static pointer opexe_5(scheme *sc, enum scheme_opcodes op) { pointer x; if(sc->nesting!=0) { int n=sc->nesting; sc->nesting=0; sc->retcode=-1; Error_1(sc,"unmatched parentheses:",mk_integer(sc,n)); } switch (op) { /* ========== reading part ========== */ case OP_READ: if(!is_pair(sc->args)) { s_goto(sc,OP_READ_INTERNAL); } if(!is_inport(car(sc->args))) { Error_1(sc,"read: not an input port:",car(sc->args)); } if(car(sc->args)==sc->inport) { s_goto(sc,OP_READ_INTERNAL); } x=sc->inport; sc->inport=car(sc->args); x=cons(sc,x,sc->NIL); s_save(sc,OP_SET_INPORT, x, sc->NIL); s_goto(sc,OP_READ_INTERNAL); case OP_READ_CHAR: /* read-char */ case OP_PEEK_CHAR: /* peek-char */ { int c; if(is_pair(sc->args)) { if(car(sc->args)!=sc->inport) { x=sc->inport; x=cons(sc,x,sc->NIL); s_save(sc,OP_SET_INPORT, x, sc->NIL); sc->inport=car(sc->args); } } c=inchar(sc); if(c==EOF) { s_return(sc,sc->EOF_OBJ); } if(sc->op==OP_PEEK_CHAR) { backchar(sc,c); } s_return(sc,mk_character(sc,c)); } case OP_CHAR_READY: /* char-ready? */ { pointer p=sc->inport; int res; if(is_pair(sc->args)) { p=car(sc->args); } res=p->_object._port->kind&port_string; s_retbool(res); } case OP_SET_INPORT: /* set-input-port */ sc->inport=car(sc->args); s_return(sc,sc->value); case OP_SET_OUTPORT: /* set-output-port */ sc->outport=car(sc->args); s_return(sc,sc->value); case OP_RDSEXPR: switch (sc->tok) { case TOK_EOF: if(sc->inport==sc->loadport) { sc->args=sc->NIL; s_goto(sc,OP_QUIT); } else { s_return(sc,sc->EOF_OBJ); } case TOK_COMMENT: { int c; while ((c=inchar(sc)) != '\n' && c!=EOF) ; sc->tok = token(sc); s_goto(sc,OP_RDSEXPR); } case TOK_VEC: s_save(sc,OP_RDVEC,sc->NIL,sc->NIL); /* fall through */ case TOK_LPAREN: sc->tok = token(sc); if (sc->tok == TOK_RPAREN) { s_return(sc,sc->NIL); } else if (sc->tok == TOK_DOT) { Error_0(sc,"syntax error: illegal dot expression"); } else { sc->nesting_stack[sc->file_i]++; s_save(sc,OP_RDLIST, sc->NIL, sc->NIL); s_goto(sc,OP_RDSEXPR); } case TOK_QUOTE: s_save(sc,OP_RDQUOTE, sc->NIL, sc->NIL); sc->tok = token(sc); s_goto(sc,OP_RDSEXPR); case TOK_BQUOTE: sc->tok = token(sc); if(sc->tok==TOK_VEC) { s_save(sc,OP_RDQQUOTEVEC, sc->NIL, sc->NIL); sc->tok=TOK_LPAREN; s_goto(sc,OP_RDSEXPR); } else { s_save(sc,OP_RDQQUOTE, sc->NIL, sc->NIL); } s_goto(sc,OP_RDSEXPR); case TOK_COMMA: s_save(sc,OP_RDUNQUOTE, sc->NIL, sc->NIL); sc->tok = token(sc); s_goto(sc,OP_RDSEXPR); case TOK_ATMARK: s_save(sc,OP_RDUQTSP, sc->NIL, sc->NIL); sc->tok = token(sc); s_goto(sc,OP_RDSEXPR); case TOK_ATOM: s_return(sc,mk_atom(sc, readstr_upto(sc, "();\t\n\r "))); case TOK_DQUOTE: x=readstrexp(sc); if(x==sc->F) { Error_0(sc,"Error reading string"); } setimmutable(x); s_return(sc,x); case TOK_SHARP: { pointer f=find_slot_in_env(sc,sc->envir,sc->SHARP_HOOK,1); if(f==sc->NIL) { Error_0(sc,"undefined sharp expression"); } else { sc->code=cons(sc,slot_value_in_env(f),sc->NIL); s_goto(sc,OP_EVAL); } } case TOK_SHARP_CONST: if ((x = mk_sharp_const(sc, readstr_upto(sc, "();\t\n\r "))) == sc->NIL) { Error_0(sc,"undefined sharp expression"); } else { s_return(sc,x); } default: Error_0(sc,"syntax error: illegal token"); } break; case OP_RDLIST: { sc->args = cons(sc, sc->value, sc->args); sc->tok = token(sc); if (sc->tok == TOK_COMMENT) { int c; while ((c=inchar(sc)) != '\n' && c!=EOF) ; sc->tok = token(sc); } if (sc->tok == TOK_RPAREN) { int c = inchar(sc); if (c != '\n') backchar(sc,c); sc->nesting_stack[sc->file_i]--; s_return(sc,reverse_in_place(sc, sc->NIL, sc->args)); } else if (sc->tok == TOK_DOT) { s_save(sc,OP_RDDOT, sc->args, sc->NIL); sc->tok = token(sc); s_goto(sc,OP_RDSEXPR); } else { s_save(sc,OP_RDLIST, sc->args, sc->NIL);; s_goto(sc,OP_RDSEXPR); } } case OP_RDDOT: if (token(sc) != TOK_RPAREN) { Error_0(sc,"syntax error: illegal dot expression"); } else { sc->nesting_stack[sc->file_i]--; s_return(sc,reverse_in_place(sc, sc->value, sc->args)); } case OP_RDQUOTE: s_return(sc,cons(sc, sc->QUOTE, cons(sc, sc->value, sc->NIL))); case OP_RDQQUOTE: s_return(sc,cons(sc, sc->QQUOTE, cons(sc, sc->value, sc->NIL))); case OP_RDQQUOTEVEC: s_return(sc,cons(sc, mk_symbol(sc,"apply"), cons(sc, mk_symbol(sc,"vector"), cons(sc,cons(sc, sc->QQUOTE, cons(sc,sc->value,sc->NIL)), sc->NIL)))); case OP_RDUNQUOTE: s_return(sc,cons(sc, sc->UNQUOTE, cons(sc, sc->value, sc->NIL))); case OP_RDUQTSP: s_return(sc,cons(sc, sc->UNQUOTESP, cons(sc, sc->value, sc->NIL))); case OP_RDVEC: /*sc->code=cons(sc,mk_proc(sc,OP_VECTOR),sc->value); s_goto(sc,OP_EVAL); Cannot be quoted*/ /*x=cons(sc,mk_proc(sc,OP_VECTOR),sc->value); s_return(sc,x); Cannot be part of pairs*/ /*sc->code=mk_proc(sc,OP_VECTOR); sc->args=sc->value; s_goto(sc,OP_APPLY);*/ sc->args=sc->value; s_goto(sc,OP_VECTOR); /* ========== printing part ========== */ case OP_P0LIST: if(is_vector(sc->args)) { putstr(sc,"#("); sc->args=cons(sc,sc->args,mk_integer(sc,0)); s_goto(sc,OP_PVECFROM); } else if(is_environment(sc->args)) { putstr(sc,"#"); s_return(sc,sc->T); } else if (!is_pair(sc->args)) { printatom(sc, sc->args, sc->print_flag); s_return(sc,sc->T); } else if (car(sc->args) == sc->QUOTE && ok_abbrev(cdr(sc->args))) { putstr(sc, "'"); sc->args = cadr(sc->args); s_goto(sc,OP_P0LIST); } else if (car(sc->args) == sc->QQUOTE && ok_abbrev(cdr(sc->args))) { putstr(sc, "`"); sc->args = cadr(sc->args); s_goto(sc,OP_P0LIST); } else if (car(sc->args) == sc->UNQUOTE && ok_abbrev(cdr(sc->args))) { putstr(sc, ","); sc->args = cadr(sc->args); s_goto(sc,OP_P0LIST); } else if (car(sc->args) == sc->UNQUOTESP && ok_abbrev(cdr(sc->args))) { putstr(sc, ",@"); sc->args = cadr(sc->args); s_goto(sc,OP_P0LIST); } else { putstr(sc, "("); s_save(sc,OP_P1LIST, cdr(sc->args), sc->NIL); sc->args = car(sc->args); s_goto(sc,OP_P0LIST); } case OP_P1LIST: if (is_pair(sc->args)) { s_save(sc,OP_P1LIST, cdr(sc->args), sc->NIL); putstr(sc, " "); sc->args = car(sc->args); s_goto(sc,OP_P0LIST); } else if(is_vector(sc->args)) { s_save(sc,OP_P1LIST,sc->NIL,sc->NIL); putstr(sc, " . "); s_goto(sc,OP_P0LIST); } else { if (sc->args != sc->NIL) { putstr(sc, " . "); printatom(sc, sc->args, sc->print_flag); } putstr(sc, ")"); s_return(sc,sc->T); } case OP_PVECFROM: { int i=ivalue_unchecked(cdr(sc->args)); pointer vec=car(sc->args); int len=ivalue_unchecked(vec); if(i==len) { putstr(sc,")"); s_return(sc,sc->T); } else { pointer elem=vector_elem(vec,i); ivalue_unchecked(cdr(sc->args))=i+1; s_save(sc,OP_PVECFROM, sc->args, sc->NIL); sc->args=elem; putstr(sc," "); s_goto(sc,OP_P0LIST); } } default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; } static pointer opexe_6(scheme *sc, enum scheme_opcodes op) { pointer x, y; long v; switch (op) { case OP_LIST_LENGTH: /* length */ /* a.k */ v=list_length(sc,car(sc->args)); if(v<0) { Error_1(sc,"length: not a list:",car(sc->args)); } s_return(sc,mk_integer(sc, v)); case OP_ASSQ: /* assq */ /* a.k */ x = car(sc->args); for (y = cadr(sc->args); is_pair(y); y = cdr(y)) { if (!is_pair(car(y))) { Error_0(sc,"unable to handle non pair element"); } if (x == caar(y)) break; } if (is_pair(y)) { s_return(sc,car(y)); } else { s_return(sc,sc->F); } case OP_GET_CLOSURE: /* get-closure-code */ /* a.k */ sc->args = car(sc->args); if (sc->args == sc->NIL) { s_return(sc,sc->F); } else if (is_closure(sc->args)) { s_return(sc,cons(sc, sc->LAMBDA, closure_code(sc->value))); } else if (is_macro(sc->args)) { s_return(sc,cons(sc, sc->LAMBDA, closure_code(sc->value))); } else { s_return(sc,sc->F); } case OP_CLOSUREP: /* closure? */ /* * Note, macro object is also a closure. * Therefore, (closure? <#MACRO>) ==> #t */ s_retbool(is_closure(car(sc->args))); case OP_MACROP: /* macro? */ s_retbool(is_macro(car(sc->args))); default: sprintf(sc->strbuff, "%d: illegal operator", sc->op); Error_0(sc,sc->strbuff); } return sc->T; /* NOTREACHED */ } typedef pointer (*dispatch_func)(scheme *, enum scheme_opcodes); typedef int (*test_predicate)(pointer); static int is_any(pointer p) { return 1;} static int is_num_integer(pointer p) { return is_number(p) && ((p)->_object._number.is_fixnum); } static int is_nonneg(pointer p) { return is_num_integer(p) && ivalue(p)>=0; } /* Correspond carefully with following defines! */ static struct { test_predicate fct; const char *kind; } tests[]={ {0,0}, /* unused */ {is_any, 0}, {is_string, "string"}, {is_symbol, "symbol"}, {is_port, "port"}, {0,"input port"}, {0,"output_port"}, {is_environment, "environment"}, {is_pair, "pair"}, {0, "pair or '()"}, {is_character, "character"}, {is_vector, "vector"}, {is_number, "number"}, {is_num_integer, "integer"}, {is_nonneg, "non-negative integer"} }; #define TST_NONE 0 #define TST_ANY "\001" #define TST_STRING "\002" #define TST_SYMBOL "\003" #define TST_PORT "\004" #define TST_INPORT "\005" #define TST_OUTPORT "\006" #define TST_ENVIRONMENT "\007" #define TST_PAIR "\010" #define TST_LIST "\011" #define TST_CHAR "\012" #define TST_VECTOR "\013" #define TST_NUMBER "\014" #define TST_INTEGER "\015" #define TST_NATURAL "\016" typedef struct { dispatch_func func; char *name; int min_arity; int max_arity; char *arg_tests_encoding; } op_code_info; #define INF_ARG 0xffff static op_code_info dispatch_table[]= { #define _OP_DEF(A,B,C,D,E,OP) {A,B,C,D,E}, #include "opdefines.h" { 0 } }; static const char *procname(pointer x) { int n=procnum(x); const char *name=dispatch_table[n].name; if(name==0) { name="ILLEGAL!"; } return name; } /* kernel of this interpreter */ static void Eval_Cycle(scheme *sc, enum scheme_opcodes op) { int count=0; /*int old_op;*/ sc->op = op; for (;;) { op_code_info *pcd=dispatch_table+sc->op; if (pcd->name!=0) { /* if built-in function, check arguments */ char msg[512]; int ok=1; int n=list_length(sc,sc->args); /* Check number of arguments */ if(nmin_arity) { ok=0; sprintf(msg,"%s: needs%s %d argument(s)", pcd->name, pcd->min_arity==pcd->max_arity?"":" at least", pcd->min_arity); } if(ok && n>pcd->max_arity) { ok=0; sprintf(msg,"%s: needs%s %d argument(s)", pcd->name, pcd->min_arity==pcd->max_arity?"":" at most", pcd->max_arity); } if(ok) { if(pcd->arg_tests_encoding!=0) { int i=0; int j; const char *t=pcd->arg_tests_encoding; pointer arglist=sc->args; do { pointer arg=car(arglist); j=(int)t[0]; if(j==TST_INPORT[0]) { if(!is_inport(arg)) break; } else if(j==TST_OUTPORT[0]) { if(!is_outport(arg)) break; } else if(j==TST_LIST[0]) { if(arg!=sc->NIL && !is_pair(arg)) break; } else { if(!tests[j].fct(arg)) break; } if(t[1]!=0) {/* last test is replicated as necessary */ t++; } arglist=cdr(arglist); i++; } while(iname, i+1, tests[j].kind); } } } if(!ok) { if(_Error_1(sc,msg,0)==sc->NIL) { return; } pcd=dispatch_table+sc->op; } } /*old_op=sc->op;*/ if (pcd->func(sc, (enum scheme_opcodes)sc->op) == sc->NIL) { return; } if(sc->no_memory) { fprintf(stderr,"No memory!\n"); return; } count++; } } /* ========== Initialization of internal keywords ========== */ static void assign_syntax(scheme *sc, char *name) { pointer x; x = oblist_add_by_name(sc, name); typeflag(x) |= T_SYNTAX; } static void assign_proc(scheme *sc, enum scheme_opcodes op, char *name) { pointer x, y; x = mk_symbol(sc, name); y = mk_proc(sc,op); new_slot_in_env(sc, x, y); } static pointer mk_proc(scheme *sc, enum scheme_opcodes op) { pointer y; y = get_cell(sc, sc->NIL, sc->NIL); typeflag(y) = (T_PROC | T_ATOM); ivalue_unchecked(y) = (long) op; set_integer(y); return y; } /* Hard-coded for the given keywords. Remember to rewrite if more are added! */ static int syntaxnum(pointer p) { const char *s=strvalue(car(p)); switch(strlength(car(p))) { case 2: if(s[0]=='i') return OP_IF0; /* if */ else return OP_OR0; /* or */ case 3: if(s[0]=='a') return OP_AND0; /* and */ else return OP_LET0; /* let */ case 4: switch(s[3]) { case 'e': return OP_CASE0; /* case */ case 'd': return OP_COND0; /* cond */ case '*': return OP_LET0AST; /* let* */ default: return OP_SET0; /* set! */ } case 5: switch(s[2]) { case 'g': return OP_BEGIN; /* begin */ case 'l': return OP_DELAY; /* delay */ case 'c': return OP_MACRO0; /* macro */ default: return OP_QUOTE; /* quote */ } case 6: switch(s[2]) { case 'm': return OP_LAMBDA; /* lambda */ case 'f': return OP_DEF0; /* define */ default: return OP_LET0REC; /* letrec */ } default: return OP_C0STREAM; /* cons-stream */ } } /* initialization of TinyScheme */ #if USE_INTERFACE INTERFACE static pointer s_cons(scheme *sc, pointer a, pointer b) { return cons(sc,a,b); } INTERFACE static pointer s_immutable_cons(scheme *sc, pointer a, pointer b) { return immutable_cons(sc,a,b); } static struct scheme_interface vtbl ={ scheme_define, s_cons, s_immutable_cons, mk_integer, mk_real, mk_symbol, gensym, mk_string, mk_counted_string, mk_character, mk_vector, mk_foreign_func, putstr, putcharacter, is_string, string_value, is_number, nvalue, ivalue, rvalue, is_integer, is_real, is_character, charvalue, is_vector, ivalue, fill_vector, vector_elem, set_vector_elem, is_port, is_pair, pair_car, pair_cdr, set_car, set_cdr, is_symbol, symname, is_syntax, is_proc, is_foreign, syntaxname, is_closure, is_macro, closure_code, closure_env, is_continuation, is_promise, is_environment, is_immutable, setimmutable, scheme_load_file, scheme_load_string }; #endif scheme *scheme_init_new() { scheme *sc=(scheme*)malloc(sizeof(scheme)); if(!scheme_init(sc)) { free(sc); return 0; } else { return sc; } } scheme *scheme_init_new_custom_alloc(func_alloc malloc, func_dealloc free) { scheme *sc=(scheme*)malloc(sizeof(scheme)); if(!scheme_init_custom_alloc(sc,malloc,free)) { free(sc); return 0; } else { return sc; } } int scheme_init(scheme *sc) { return scheme_init_custom_alloc(sc,malloc,free); } int scheme_init_custom_alloc(scheme *sc, func_alloc malloc, func_dealloc free) { int i, n=sizeof(dispatch_table)/sizeof(dispatch_table[0]); pointer x; num_zero.is_fixnum=1; num_zero.value.ivalue=0; num_one.is_fixnum=1; num_one.value.ivalue=1; #if USE_INTERFACE sc->vptr=&vtbl; #endif sc->gensym_cnt=0; sc->malloc=malloc; sc->free=free; sc->last_cell_seg = -1; sc->sink = &sc->_sink; sc->NIL = &sc->_NIL; sc->T = &sc->_HASHT; sc->F = &sc->_HASHF; sc->EOF_OBJ=&sc->_EOF_OBJ; sc->free_cell = &sc->_NIL; sc->fcells = 0; sc->no_memory=0; sc->inport=sc->NIL; sc->outport=sc->NIL; sc->save_inport=sc->NIL; sc->loadport=sc->NIL; sc->nesting=0; sc->interactive_repl=0; if (alloc_cellseg(sc,FIRST_CELLSEGS) != FIRST_CELLSEGS) { sc->no_memory=1; return 0; } sc->gc_verbose = 0; dump_stack_initialize(sc); sc->code = sc->NIL; sc->tracing=0; /* init sc->NIL */ typeflag(sc->NIL) = (T_ATOM | MARK); car(sc->NIL) = cdr(sc->NIL) = sc->NIL; /* init T */ typeflag(sc->T) = (T_ATOM | MARK); car(sc->T) = cdr(sc->T) = sc->T; /* init F */ typeflag(sc->F) = (T_ATOM | MARK); car(sc->F) = cdr(sc->F) = sc->F; sc->oblist = oblist_initial_value(sc); /* init global_env */ new_frame_in_env(sc, sc->NIL); sc->global_env = sc->envir; /* init else */ x = mk_symbol(sc,"else"); new_slot_in_env(sc, x, sc->T); assign_syntax(sc, "lambda"); assign_syntax(sc, "quote"); assign_syntax(sc, "define"); assign_syntax(sc, "if"); assign_syntax(sc, "begin"); assign_syntax(sc, "set!"); assign_syntax(sc, "let"); assign_syntax(sc, "let*"); assign_syntax(sc, "letrec"); assign_syntax(sc, "cond"); assign_syntax(sc, "delay"); assign_syntax(sc, "and"); assign_syntax(sc, "or"); assign_syntax(sc, "cons-stream"); assign_syntax(sc, "macro"); assign_syntax(sc, "case"); for(i=0; iLAMBDA = mk_symbol(sc, "lambda"); sc->QUOTE = mk_symbol(sc, "quote"); sc->QQUOTE = mk_symbol(sc, "quasiquote"); sc->UNQUOTE = mk_symbol(sc, "unquote"); sc->UNQUOTESP = mk_symbol(sc, "unquote-splicing"); sc->FEED_TO = mk_symbol(sc, "=>"); sc->COLON_HOOK = mk_symbol(sc,"*colon-hook*"); sc->ERROR_HOOK = mk_symbol(sc, "*error-hook*"); sc->SHARP_HOOK = mk_symbol(sc, "*sharp-hook*"); return !sc->no_memory; } void scheme_set_input_port_file(scheme *sc, FILE *fin) { sc->inport=port_from_file(sc,fin,port_input); } void scheme_set_input_port_string(scheme *sc, char *start, char *past_the_end) { sc->inport=port_from_string(sc,start,past_the_end,port_input); } void scheme_set_output_port_file(scheme *sc, FILE *fout) { sc->outport=port_from_file(sc,fout,port_output); } void scheme_set_output_port_string(scheme *sc, char *start, char *past_the_end) { sc->outport=port_from_string(sc,start,past_the_end,port_output); } void scheme_set_external_data(scheme *sc, void *p) { sc->ext_data=p; } void scheme_deinit(scheme *sc) { int i; sc->oblist=sc->NIL; sc->global_env=sc->NIL; dump_stack_free(sc); sc->envir=sc->NIL; sc->code=sc->NIL; sc->args=sc->NIL; sc->value=sc->NIL; if(is_port(sc->inport)) { typeflag(sc->inport) = T_ATOM; } sc->inport=sc->NIL; sc->outport=sc->NIL; if(is_port(sc->save_inport)) { typeflag(sc->save_inport) = T_ATOM; } sc->save_inport=sc->NIL; if(is_port(sc->loadport)) { typeflag(sc->loadport) = T_ATOM; } sc->loadport=sc->NIL; sc->gc_verbose=0; gc(sc,sc->NIL,sc->NIL); for(i=0; i<=sc->last_cell_seg; i++) { sc->free(sc->alloc_seg[i]); } } void scheme_load_file(scheme *sc, FILE *fin) { dump_stack_reset(sc); sc->envir = sc->global_env; sc->file_i=0; sc->load_stack[0].kind=port_input|port_file; sc->load_stack[0].rep.stdio.file=fin; sc->loadport=mk_port(sc,sc->load_stack); sc->retcode=0; if(fin==stdin) { sc->interactive_repl=1; } sc->inport=sc->loadport; Eval_Cycle(sc, OP_T0LVL); typeflag(sc->loadport)=T_ATOM; if(sc->retcode==0) { sc->retcode=sc->nesting!=0; } } void scheme_load_string(scheme *sc, const char *cmd) { dump_stack_reset(sc); sc->envir = sc->global_env; sc->file_i=0; sc->load_stack[0].kind=port_input|port_string; sc->load_stack[0].rep.string.start=(char*)cmd; /* This func respects const */ sc->load_stack[0].rep.string.past_the_end=(char*)cmd+strlen(cmd); sc->load_stack[0].rep.string.curr=(char*)cmd; sc->loadport=mk_port(sc,sc->load_stack); sc->retcode=0; sc->interactive_repl=0; sc->inport=sc->loadport; Eval_Cycle(sc, OP_T0LVL); typeflag(sc->loadport)=T_ATOM; if(sc->retcode==0) { sc->retcode=sc->nesting!=0; } } void scheme_define(scheme *sc, pointer envir, pointer symbol, pointer value) { pointer x; x=find_slot_in_env(sc,envir,symbol,0); if (x != sc->NIL) { set_slot_in_env(sc, x, value); } else { new_slot_spec_in_env(sc, envir, symbol, value); } } #if !STANDALONE void scheme_apply0(scheme *sc, const char *procname) { pointer carx=mk_symbol(sc,procname); pointer cdrx=sc->NIL; dump_stack_reset(sc); sc->envir = sc->global_env; sc->code = cons(sc,carx,cdrx); sc->interactive_repl=0; sc->retcode=0; Eval_Cycle(sc,OP_EVAL); } void scheme_call(scheme *sc, pointer func, pointer args) { dump_stack_reset(sc); sc->envir = sc->global_env; sc->args = args; sc->code = func; sc->interactive_repl =0; sc->retcode = 0; Eval_Cycle(sc, OP_APPLY); } #endif /* ========== Main ========== */ #if STANDALONE #ifdef macintosh int main() { extern MacTS_main(int argc, char **argv); char** argv; int argc = ccommand(&argv); MacTS_main(argc,argv); return 0; } int MacTS_main(int argc, char **argv) { #else int main(int argc, char **argv) { #endif scheme sc; FILE *fin = 0; char *file_name=InitFile; int retcode; int isfile=1; if(argc==1) { printf(banner); } if(argc==2 && strcmp(argv[1],"-?")==0) { printf("Usage: %s [-? | ... | -1 ...]\n\tUse - as filename for stdin.\n",argv[0]); return 1; } if(!scheme_init(&sc)) { fprintf(stderr,"Could not initialize!\n"); return 2; } scheme_set_input_port_file(&sc, stdin); scheme_set_output_port_file(&sc, stdout); #if USE_DL scheme_define(&sc,sc.global_env,mk_symbol(&sc,"load-extension"),mk_foreign_func(&sc, scm_load_ext)); #endif argv++; if(access(file_name,0)!=0) { char *p=getenv("TINYSCHEMEINIT"); if(p!=0) { file_name=p; } } do { if(strcmp(file_name,"-")==0) { fin=stdin; } else if(strcmp(file_name,"-1")==0 || strcmp(file_name,"-c")==0) { pointer args=sc.NIL; isfile=file_name[1]=='1'; file_name=*argv++; if(strcmp(file_name,"-")==0) { fin=stdin; } else if(isfile) { fin=fopen(file_name,"r"); } for(;*argv;argv++) { pointer value=mk_string(&sc,*argv); args=cons(&sc,value,args); } args=reverse_in_place(&sc,sc.NIL,args); scheme_define(&sc,sc.global_env,mk_symbol(&sc,"*args*"),args); } else { fin=fopen(file_name,"r"); } if(isfile && fin==0) { fprintf(stderr,"Could not open file %s\n",file_name); } else { if(isfile) { scheme_load_file(&sc,fin); } else { scheme_load_string(&sc,file_name); } if(!isfile || fin!=stdin) { if(sc.retcode!=0) { fprintf(stderr,"Errors encountered reading %s\n",file_name); } if(isfile) { fclose(fin); } } } file_name=*argv++; } while(file_name!=0); if(argc==1) { scheme_load_file(&sc,stdin); } retcode=sc.retcode; scheme_deinit(&sc); return retcode; } #endif gerbv-2.7.0/src/gerbv.c0000644000175000017500000010605013421555714014556 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerbv.c \brief This file contains high-level functions for the libgerbv library \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include #include #ifdef HAVE_LIBGEN_H # include /* dirname */ #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_GETOPT_H # include #endif #include #include "common.h" #include "gerber.h" #include "drill.h" #include "selection.h" #include "draw-gdk.h" #include "draw.h" #include "pick-and-place.h" /* DEBUG printing. #define DEBUG 1 in config.h to use this fcn. */ #define dprintf if(DEBUG) printf /** Return string name of gerbv_aperture_type_t aperture type. */ const char *gerbv_aperture_type_name(gerbv_aperture_type_t type) { /* These are the names of the valid apertures. Please keep this in * sync with the gerbv_aperture_type_t enum defined in gerbv.h */ const char *names[] = { N_("none"), N_("circle"), N_("rectangle"), N_("oval"), /* ovular (obround) aperture */ N_("polygon"), /* polygon aperture */ N_("macro"), /* RS274X macro */ N_("circle macro"), /* RS274X circle macro */ N_("outline macro"), /* RS274X outline macro */ N_("polygon macro"), /* RS274X polygon macro */ N_("moire macro"), /* RS274X moire macro */ N_("thermal macro"), /* RS274X thermal macro */ N_("line20 macro"), /* RS274X line (code 20) macro */ N_("line21 macro"), /* RS274X line (code 21) macro */ N_("line22 macro"), /* RS274X line (code 22) macro */ }; if (type >=0 && type < sizeof(names)/sizeof(names[0])) return names[type]; return N_(""); } /** Return string name of gerbv_interpolation_t interpolation. */ const char *gerbv_interpolation_name(gerbv_interpolation_t interp) { /* These are the names of the interpolation method. Please keep this * in sync with the gerbv_interpolation_t enum defined in gerbv.h */ const char *names[] = { N_("1X linear"), N_("10X linear"), N_("0.1X linear"), N_("0.01X linear"), N_("CW circular"), N_("CCW circular"), N_("poly area start"), N_("poly area stop"), N_("deleted"), }; if (interp >= 0 && interp < sizeof(names)/sizeof(names[0])) return names[interp]; return N_(""); } #define NUMBER_OF_DEFAULT_COLORS 18 #define NUMBER_OF_DEFAULT_TRANSFORMATIONS 20 static int defaultColorIndex = 0; /* ------------------------------------------------------------------ */ static gerbv_layer_color defaultColors[NUMBER_OF_DEFAULT_COLORS] = { {115,115,222,177}, {255,127,115,177}, {193,0,224,177}, {117,242,103,177}, {0,195,195,177}, {213,253,51,177}, {209,27,104,177}, {255,197,51,177}, {186,186,186,177}, {211,211,255,177}, {253,210,206,177}, {236,194,242,177}, {208,249,204,177}, {183,255,255,177}, {241,255,183,177}, {255,202,225,177}, {253,238,197,177}, {226,226,226,177} }; /* ------------------------------------------------------------------ */ static gerbv_user_transformation_t defaultTransformations[NUMBER_OF_DEFAULT_TRANSFORMATIONS] = { {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, {0,0,1,1,0,FALSE,FALSE,FALSE}, }; /* ------------------------------------------------------------------ */ gerbv_project_t * gerbv_create_project (void) { gerbv_project_t *returnProject= (gerbv_project_t *) g_new0(gerbv_project_t,1); /* default to using the current directory path for our starting guesses on future file loads */ returnProject->path = g_get_current_dir (); /* Will be updated to 0 when first Gerber is loaded */ returnProject->last_loaded = -1; returnProject->max_files = 1; returnProject->check_before_delete = TRUE; returnProject->file = g_new0 (gerbv_fileinfo_t *, returnProject->max_files); return returnProject; } /* ------------------------------------------------------------------ */ void gerbv_destroy_project (gerbv_project_t *gerbvProject) { int i; /* destroy all the files attached to the project */ for(i = gerbvProject->last_loaded; i >= 0; i--) { if (gerbvProject->file[i]) { gerbv_destroy_fileinfo (gerbvProject->file[i]); g_free(gerbvProject->file[i]); } } /* destroy strings */ g_free (gerbvProject->path); g_free (gerbvProject->execname); g_free (gerbvProject->execpath); g_free (gerbvProject->project); /* destroy the fileinfo array */ g_free (gerbvProject->file); g_free (gerbvProject); } /* ------------------------------------------------------------------ */ void gerbv_destroy_fileinfo (gerbv_fileinfo_t *fileInfo){ gerbv_destroy_image (fileInfo->image); g_free (fileInfo->fullPathname); g_free (fileInfo->name); if (fileInfo->privateRenderData) { cairo_surface_destroy ((cairo_surface_t *) fileInfo->privateRenderData); } } /* ------------------------------------------------------------------ */ void gerbv_open_layer_from_filename(gerbv_project_t *gerbvProject, gchar *filename) { gint idx_loaded; dprintf("Opening filename = %s\n", (gchar *) filename); if (gerbv_open_image(gerbvProject, filename, ++gerbvProject->last_loaded, FALSE, NULL, 0, TRUE) == -1) { GERB_COMPILE_WARNING(_("Could not read \"%s\" (loaded %d)"), (gchar *) filename, gerbvProject->last_loaded); gerbvProject->last_loaded--; } else { idx_loaded = gerbvProject->last_loaded; gerbvProject->file[idx_loaded]->layer_dirty = FALSE; dprintf(" Successfully opened file!\n"); } } /* gerbv_open_layer_from_filename */ /* ------------------------------------------------------------------ */ void gerbv_open_layer_from_filename_with_color(gerbv_project_t *gerbvProject, gchar *filename, guint16 red, guint16 green, guint16 blue, guint16 alpha) { gint idx_loaded; dprintf("Opening filename = %s\n", (gchar *) filename); if (gerbv_open_image(gerbvProject, filename, ++gerbvProject->last_loaded, FALSE, NULL, 0, TRUE) == -1) { GERB_COMPILE_WARNING(_("Could not read \"%s\" (loaded %d)"), (gchar *) filename, gerbvProject->last_loaded); gerbvProject->last_loaded--; } else { idx_loaded = gerbvProject->last_loaded; gerbvProject->file[idx_loaded]->layer_dirty = FALSE; GdkColor colorTemplate = {0, red, green, blue}; gerbvProject->file[idx_loaded]->color = colorTemplate; gerbvProject->file[idx_loaded]->alpha = alpha; dprintf(" Successfully opened file!\n"); } } /* gerbv_open_layer_from_filename_with_color */ /* ------------------------------------------------------------------ */ gboolean gerbv_save_layer_from_index(gerbv_project_t *gerbvProject, gint index, gchar *filename) { gerbv_fileinfo_t *file = gerbvProject->file[index]; gerbv_user_transformation_t *trans = &file->transform; switch (file->image->layertype) { case GERBV_LAYERTYPE_RS274X: if (trans) { /* NOTE: mirrored file is not yet supported */ if (trans->mirrorAroundX || trans->mirrorAroundY) { GERB_COMPILE_ERROR(_("Exporting mirrored file " "is not supported!")); return FALSE; } /* NOTE: inverted file is not yet supported */ if (trans->inverted) { GERB_COMPILE_ERROR(_("Exporting inverted file " "is not supported!")); return FALSE; } } gerbv_export_rs274x_file_from_image (filename, file->image, trans); break; case GERBV_LAYERTYPE_DRILL: if (trans) { /* NOTE: inverted file is not yet supported */ if (trans->inverted) { GERB_COMPILE_ERROR(_("Exporting inverted file " "is not supported!")); return FALSE; } } gerbv_export_drill_file_from_image (filename, file->image, trans); break; default: return FALSE; } file->layer_dirty = FALSE; return TRUE; } /* ------------------------------------------------------------------ */ int gerbv_revert_file(gerbv_project_t *gerbvProject, int idx){ int rv; rv = gerbv_open_image(gerbvProject, gerbvProject->file[idx]->fullPathname, idx, TRUE, NULL, 0, TRUE); gerbvProject->file[idx]->layer_dirty = FALSE; return rv; } /* ------------------------------------------------------------------ */ void gerbv_revert_all_files(gerbv_project_t *gerbvProject) { int idx; for (idx = 0; idx <= gerbvProject->last_loaded; idx++) { if (gerbvProject->file[idx] && gerbvProject->file[idx]->fullPathname) { (void) gerbv_revert_file (gerbvProject, idx); gerbvProject->file[idx]->layer_dirty = FALSE; } } } /* gerbv_revert_all_files */ /* ------------------------------------------------------------------ */ void gerbv_unload_layer(gerbv_project_t *gerbvProject, int index) { gint i; gerbv_destroy_fileinfo (gerbvProject->file[index]); /* slide all later layers down to fill the empty slot */ for (i=index; i<(gerbvProject->last_loaded); i++) { gerbvProject->file[i]=gerbvProject->file[i+1]; } /* make sure the final spot is clear */ gerbvProject->file[gerbvProject->last_loaded] = NULL; gerbvProject->last_loaded--; } /* gerbv_unload_layer */ /* ------------------------------------------------------------------ */ void gerbv_unload_all_layers (gerbv_project_t *gerbvProject) { int index; /* Must count down since gerbv_unload_layer collapses * layers down. Otherwise, layers slide past the index */ for (index = gerbvProject->last_loaded ; index >= 0; index--) { if (gerbvProject->file[index] && gerbvProject->file[index]->name) { gerbv_unload_layer (gerbvProject, index); } } } /* gerbv_unload_all_layers */ /* ------------------------------------------------------------------ */ void gerbv_change_layer_order(gerbv_project_t *gerbvProject, gint oldPosition, gint newPosition) { gerbv_fileinfo_t *temp_file; int index; temp_file = gerbvProject->file[oldPosition]; if (oldPosition < newPosition){ for (index = oldPosition; index < newPosition; index++) { gerbvProject->file[index] = gerbvProject->file[index + 1]; } } else { for (index = oldPosition; index > newPosition; index--) { gerbvProject->file[index] = gerbvProject->file[index - 1]; } } gerbvProject->file[newPosition] = temp_file; } /* gerbv_change_layer_order */ /* ------------------------------------------------------------------ */ gint gerbv_add_parsed_image_to_project (gerbv_project_t *gerbvProject, gerbv_image_t *parsed_image, gchar *filename, gchar *baseName, int idx, int reload){ gerb_verify_error_t error = GERB_IMAGE_OK; int r, g, b; dprintf("In open_image, now error check file....\n"); error = gerbv_image_verify(parsed_image); if (error) { if (error & GERB_IMAGE_MISSING_NETLIST) { GERB_COMPILE_ERROR(_("Missing netlist - aborting file read")); gerbv_destroy_image(parsed_image); return -1; } /* if the error was one of the following, try to open up the file anyways in case the file is a poorly formatted RS-274X file */ if (error & GERB_IMAGE_MISSING_FORMAT) g_warning(_("Missing format in file...trying to load anyways\n")); if (error & GERB_IMAGE_MISSING_APERTURES) { g_warning(_("Missing apertures/drill sizes...trying to load anyways\n")); /* step through the file and check for aperture references. For each one found, create a dummy aperture holder to visually draw something on the screen */ gerbv_image_create_dummy_apertures (parsed_image); } if (error & GERB_IMAGE_MISSING_INFO) g_warning(_("Missing info...trying to load anyways\n")); } /* * If reload, just exchange the image. Else we have to allocate * a new memory before we define anything more. */ if (reload) { gerbv_destroy_image(gerbvProject->file[idx]->image); gerbvProject->file[idx]->image = parsed_image; return 0; } else { /* Load new file. */ gerbvProject->file[idx] = (gerbv_fileinfo_t *) g_new0 (gerbv_fileinfo_t, 1); gerbvProject->file[idx]->image = parsed_image; } /* * Store filename for eventual reload */ gerbvProject->file[idx]->fullPathname = g_strdup (filename); gerbvProject->file[idx]->name = g_strdup (baseName); r = defaultColors[defaultColorIndex % NUMBER_OF_DEFAULT_COLORS].red*257; g = defaultColors[defaultColorIndex % NUMBER_OF_DEFAULT_COLORS].green*257; b = defaultColors[defaultColorIndex % NUMBER_OF_DEFAULT_COLORS].blue*257; GdkColor colorTemplate = {0, r, g, b}; gerbvProject->file[idx]->color = colorTemplate; gerbvProject->file[idx]->alpha = defaultColors[defaultColorIndex % NUMBER_OF_DEFAULT_COLORS].alpha*257; gerbvProject->file[idx]->isVisible = TRUE; gerbvProject->file[idx]->transform = defaultTransformations[defaultColorIndex % NUMBER_OF_DEFAULT_TRANSFORMATIONS]; /* update the number of files if we need to */ if (gerbvProject->last_loaded <= idx) { gerbvProject->last_loaded = idx; } defaultColorIndex++; return 1; } /* ------------------------------------------------------------------ */ int gerbv_open_image(gerbv_project_t *gerbvProject, char *filename, int idx, int reload, gerbv_HID_Attribute *fattr, int n_fattr, gboolean forceLoadFile) { gerb_file_t *fd; gerbv_image_t *parsed_image = NULL, *parsed_image2 = NULL; gint retv = -1; gboolean isPnpFile = FALSE, foundBinary; gerbv_HID_Attribute *attr_list = NULL; int n_attr = 0; /* If we're reloading, we'll pass in our file format attribute list * since this is our hook for letting the user override the fileformat. */ if (reload) { /* We're reloading so use the attribute list in memory */ attr_list = gerbvProject->file[idx]->image->info->attr_list; n_attr = gerbvProject->file[idx]->image->info->n_attr; } else { /* We're not reloading so use the attribute list read from the * project file if given or NULL otherwise. */ attr_list = fattr; n_attr = n_fattr; } /* if we don't have enough spots, then grow the file list by 2 to account for the possible loading of two images for PNP files */ if ((idx+1) >= gerbvProject->max_files) { gerbvProject->file = g_renew (gerbv_fileinfo_t *, gerbvProject->file, gerbvProject->max_files + 2); gerbvProject->file[gerbvProject->max_files] = NULL; gerbvProject->file[gerbvProject->max_files+1] = NULL; gerbvProject->max_files += 2; } dprintf("In open_image, about to try opening filename = %s\n", filename); fd = gerb_fopen(filename); if (fd == NULL) { GERB_COMPILE_ERROR(_("Trying to open \"%s\": %s"), filename, strerror(errno)); return -1; } /* Store filename info fd for further use */ fd->filename = g_strdup(filename); dprintf("In open_image, successfully opened file. Now check its type....\n"); /* Here's where we decide what file type we have */ /* Note: if the file has some invalid characters in it but still appears to be a valid file, we check with the user if he wants to continue (only if user opens the layer from the menu...if from the command line, we go ahead and try to load it anyways) */ if (gerber_is_rs274x_p(fd, &foundBinary)) { dprintf("Found RS-274X file\n"); if (!foundBinary || forceLoadFile) { /* figure out the directory path in case parse_gerb needs to * load any include files */ gchar *currentLoadDirectory = g_path_get_dirname (filename); parsed_image = parse_gerb(fd, currentLoadDirectory); g_free (currentLoadDirectory); } } else if(drill_file_p(fd, &foundBinary)) { dprintf("Found drill file\n"); if (!foundBinary || forceLoadFile) parsed_image = parse_drillfile(fd, attr_list, n_attr, reload); } else if (pick_and_place_check_file_type(fd, &foundBinary)) { dprintf("Found pick-n-place file\n"); if (!foundBinary || forceLoadFile) { if (!reload) { pick_and_place_parse_file_to_images(fd, &parsed_image, &parsed_image2); } else { switch (gerbvProject->file[idx]->image->layertype) { case GERBV_LAYERTYPE_PICKANDPLACE_TOP: /* Non NULL pointer is used as "not to reload" mark */ parsed_image2 = (void *)!NULL; pick_and_place_parse_file_to_images(fd, &parsed_image, &parsed_image2); parsed_image2 = NULL; break; case GERBV_LAYERTYPE_PICKANDPLACE_BOT: /* Non NULL pointer is used as "not to reload" mark */ parsed_image2 = (void *)!NULL; pick_and_place_parse_file_to_images(fd, &parsed_image2, &parsed_image); parsed_image2 = NULL; break; default: GERB_COMPILE_ERROR(_("%s: unknown pick-and-place board side to reload"), filename); } } isPnpFile = TRUE; } } else if (gerber_is_rs274d_p(fd)) { gchar *str = g_strdup_printf(_("Most likely found a RS-274D file " "\"%s\" ... trying to open anyways\n"), filename); dprintf(str); g_warning(str); g_free (str); if (!foundBinary || forceLoadFile) { /* figure out the directory path in case parse_gerb needs to * load any include files */ gchar *currentLoadDirectory = g_path_get_dirname (filename); parsed_image = parse_gerb(fd, currentLoadDirectory); g_free (currentLoadDirectory); } } else { /* This is not a known file */ dprintf("Unknown filetype"); GERB_COMPILE_ERROR(_("%s: Unknown file type."), filename); parsed_image = NULL; } g_free(fd->filename); gerb_fclose(fd); if (parsed_image == NULL) { return -1; } if (parsed_image) { /* strip the filename to the base */ gchar *baseName = g_path_get_basename (filename); gchar *displayedName; if (isPnpFile) displayedName = g_strconcat (baseName, _(" (top)"), NULL); else displayedName = g_strdup (baseName); retv = gerbv_add_parsed_image_to_project (gerbvProject, parsed_image, filename, displayedName, idx, reload); g_free (baseName); g_free (displayedName); } /* Set layer_dirty flag to FALSE */ gerbvProject->file[idx]->layer_dirty = FALSE; /* for PNP place files, we may need to add a second image for the other board side */ if (parsed_image2) { /* strip the filename to the base */ gchar *baseName = g_path_get_basename (filename); gchar *displayedName; displayedName = g_strconcat (baseName, _(" (bottom)"), NULL); retv = gerbv_add_parsed_image_to_project (gerbvProject, parsed_image2, filename, displayedName, idx + 1, reload); g_free (baseName); g_free (displayedName); } return retv; } /* open_image */ gerbv_image_t * gerbv_create_rs274x_image_from_filename (gchar *filename){ gerbv_image_t *returnImage; gerb_file_t *fd; fd = gerb_fopen(filename); if (fd == NULL) { GERB_COMPILE_ERROR(_("Trying to open \"%s\": %s"), filename, strerror(errno)); return NULL; } gchar *currentLoadDirectory = g_path_get_dirname (filename); returnImage = parse_gerb(fd, currentLoadDirectory); g_free (currentLoadDirectory); gerb_fclose(fd); return returnImage; } static inline int isnormal_or_zero(double x) { int cl = fpclassify(x); return cl == FP_NORMAL || cl == FP_ZERO; } /* ------------------------------------------------------------------ */ void gerbv_render_get_boundingbox(gerbv_project_t *gerbvProject, gerbv_render_size_t *boundingbox) { double x1=HUGE_VAL,y1=HUGE_VAL, x2=-HUGE_VAL,y2=-HUGE_VAL; int i; gerbv_image_info_t *info; gdouble minX, minY, maxX, maxY; for(i = 0; i <= gerbvProject->last_loaded; i++) { if (gerbvProject->file[i] && gerbvProject->file[i]->isVisible){ info = gerbvProject->file[i]->image->info; /* * Find the biggest image and use as a size reference */ /* cairo info already has offset calculated into min/max */ minX = info->min_x; minY = info->min_y; maxX = info->max_x; maxY = info->max_y; if (!isnormal_or_zero(minX) || !isnormal_or_zero(minY) || !isnormal_or_zero(maxX) || !isnormal_or_zero(maxY)) { continue; } /* transform the bounding box based on the user transform */ cairo_matrix_t fullMatrix; cairo_matrix_init (&fullMatrix, 1, 0, 0, 1, 0, 0); cairo_matrix_translate (&fullMatrix, gerbvProject->file[i]->transform.translateX, gerbvProject->file[i]->transform.translateY); // don't use mirroring for the scale matrix gdouble scaleX = gerbvProject->file[i]->transform.scaleX; gdouble scaleY = gerbvProject->file[i]->transform.scaleY; if (gerbvProject->file[i]->transform.mirrorAroundX) scaleY *= -1; if (gerbvProject->file[i]->transform.mirrorAroundY) scaleX *= -1; cairo_matrix_scale (&fullMatrix, scaleX, scaleY); cairo_matrix_rotate (&fullMatrix, gerbvProject->file[i]->transform.rotation); cairo_matrix_transform_point (&fullMatrix, &minX, &minY); cairo_matrix_transform_point (&fullMatrix, &maxX, &maxY); /* compare to both min and max, since a mirror transform may have made the "max" number smaller than the "min" */ x1 = MIN(x1, minX); x1 = MIN(x1, maxX); y1 = MIN(y1, minY); y1 = MIN(y1, maxY); x2 = MAX(x2, minX); x2 = MAX(x2, maxX); y2 = MAX(y2, minY); y2 = MAX(y2, maxY); } } boundingbox->left = x1; boundingbox->right = x2; boundingbox->top = y1; boundingbox->bottom = y2; } /* ------------------------------------------------------------------ */ void gerbv_render_zoom_to_fit_display (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo) { gerbv_render_size_t bb; double width, height; double x_scale, y_scale; /* Grab maximal width and height of all layers */ gerbv_render_get_boundingbox(gerbvProject, &bb); width = bb.right - bb.left; height = bb.bottom - bb.top; /* add in a 5% buffer around the drawing */ width *= 1.05; height *=1.05; /* if the values aren't sane (probably we have no models loaded), then put in some defaults */ if (!isnormal(width)||!isnormal(height)||((width < 0.01) && (height < 0.01))) { renderInfo->lowerLeftX = 0.0; renderInfo->lowerLeftY = 0.0; renderInfo->scaleFactorX = 200; renderInfo->scaleFactorY = renderInfo->scaleFactorX; return; } /* * Calculate scale for both x axis and y axis */ x_scale = renderInfo->displayWidth / width; y_scale = renderInfo->displayHeight / height; /* * Take the scale that fits both directions with some extra checks */ renderInfo->scaleFactorX = MIN(x_scale, y_scale); renderInfo->scaleFactorX = MIN((gdouble)GERBV_SCALE_MAX, renderInfo->scaleFactorX); renderInfo->scaleFactorX = MAX((gdouble)GERBV_SCALE_MIN, renderInfo->scaleFactorX); renderInfo->scaleFactorY = renderInfo->scaleFactorX; renderInfo->lowerLeftX = ((bb.left + bb.right) / 2.0) - ((double) renderInfo->displayWidth / 2.0 / renderInfo->scaleFactorX); renderInfo->lowerLeftY = ((bb.top + bb.bottom) / 2.0) - ((double) renderInfo->displayHeight / 2.0 / renderInfo->scaleFactorY); } /* ------------------------------------------------------------------ */ void gerbv_render_translate_to_fit_display (gerbv_project_t *gerbvProject, gerbv_render_info_t *renderInfo) { gerbv_render_size_t bb; /* Grab maximal width and height of all layers */ gerbv_render_get_boundingbox(gerbvProject, &bb); renderInfo->lowerLeftX = ((bb.left + bb.right) / 2.0) - ((double) renderInfo->displayWidth / 2.0 / renderInfo->scaleFactorX); renderInfo->lowerLeftY = ((bb.top + bb.bottom) / 2.0) - ((double) renderInfo->displayHeight / 2.0 / renderInfo->scaleFactorY); } /* ------------------------------------------------------------------ */ void gerbv_render_to_pixmap_using_gdk (gerbv_project_t *gerbvProject, GdkPixmap *pixmap, gerbv_render_info_t *renderInfo, gerbv_selection_info_t *selectionInfo, GdkColor *selectionColor){ GdkGC *gc = gdk_gc_new(pixmap); GdkPixmap *colorStamp, *clipmask; int i; /* * Remove old pixmap, allocate a new one, draw the background. */ if (!gerbvProject->background.pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), &gerbvProject->background, FALSE, TRUE); gdk_gc_set_foreground(gc, &gerbvProject->background); gdk_draw_rectangle(pixmap, gc, TRUE, 0, 0, -1, -1); /* * Allocate the pixmap and the clipmask (a one pixel pixmap) */ colorStamp = gdk_pixmap_new(pixmap, renderInfo->displayWidth, renderInfo->displayHeight, -1); clipmask = gdk_pixmap_new(NULL, renderInfo->displayWidth, renderInfo->displayHeight, 1); /* * This now allows drawing several layers on top of each other. * Higher layer numbers have higher priority in the Z-order. */ for(i = gerbvProject->last_loaded; i >= 0; i--) { if (gerbvProject->file[i] && gerbvProject->file[i]->isVisible) { /* * Fill up image with all the foreground color. Excess pixels * will be removed by clipmask. */ if (!gerbvProject->file[i]->color.pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), &gerbvProject->file[i]->color, FALSE, TRUE); gdk_gc_set_foreground(gc, &gerbvProject->file[i]->color); /* switch back to regular draw function for the initial bitmap clear */ gdk_gc_set_function(gc, GDK_COPY); gdk_draw_rectangle(colorStamp, gc, TRUE, 0, 0, -1, -1); if (renderInfo->renderType == GERBV_RENDER_TYPE_GDK) { gdk_gc_set_function(gc, GDK_COPY); } else if (renderInfo->renderType == GERBV_RENDER_TYPE_GDK_XOR) { gdk_gc_set_function(gc, GDK_XOR); } /* * Translation is to get it inside the allocated pixmap, * which is not always centered perfectly for GTK/X. */ dprintf(" .... calling image2pixmap on image %d...\n", i); // Dirty scaling solution when using GDK; simply use scaling factor for x-axis, ignore y-axis draw_gdk_image_to_pixmap(&clipmask, gerbvProject->file[i]->image, renderInfo->scaleFactorX, -(renderInfo->lowerLeftX * renderInfo->scaleFactorX), (renderInfo->lowerLeftY * renderInfo->scaleFactorY) + renderInfo->displayHeight, DRAW_IMAGE, NULL, renderInfo, gerbvProject->file[i]->transform); /* * Set clipmask and draw the clipped out image onto the * screen pixmap. Afterwards we remove the clipmask, else * it will screw things up when run this loop again. */ gdk_gc_set_clip_mask(gc, clipmask); gdk_gc_set_clip_origin(gc, 0, 0); gdk_draw_drawable(pixmap, gc, colorStamp, 0, 0, 0, 0, -1, -1); gdk_gc_set_clip_mask(gc, NULL); } } /* Render the selection group to the top of the output */ if (selectionInfo && selectionInfo->selectedNodeArray && (selection_length (selectionInfo) != 0)) { if (!selectionColor->pixel) gdk_colormap_alloc_color(gdk_colormap_get_system(), selectionColor, FALSE, TRUE); gdk_gc_set_foreground(gc, selectionColor); gdk_gc_set_function(gc, GDK_COPY); gdk_draw_rectangle(colorStamp, gc, TRUE, 0, 0, -1, -1); gerbv_selection_item_t sItem; gerbv_fileinfo_t *file; int j; guint k; for (j = gerbvProject->last_loaded; j >= 0; j--) { file = gerbvProject->file[j]; if (!file || (!gerbvProject->show_invisible_selection && !file->isVisible)) continue; for (k = 0; k < selection_length (selectionInfo); k++) { sItem = selection_get_item_by_index (selectionInfo, k); if (file->image != sItem.image) continue; /* Have selected image(s) on this layer, draw it */ draw_gdk_image_to_pixmap(&clipmask, file->image, renderInfo->scaleFactorX, -(renderInfo->lowerLeftX * renderInfo->scaleFactorX), (renderInfo->lowerLeftY * renderInfo->scaleFactorY) + renderInfo->displayHeight, DRAW_SELECTIONS, selectionInfo, renderInfo, file->transform); gdk_gc_set_clip_mask(gc, clipmask); gdk_gc_set_clip_origin(gc, 0, 0); gdk_draw_drawable(pixmap, gc, colorStamp, 0, 0, 0, 0, -1, -1); gdk_gc_set_clip_mask(gc, NULL); break; } } } gdk_pixmap_unref(colorStamp); gdk_pixmap_unref(clipmask); gdk_gc_unref(gc); } /* ------------------------------------------------------------------ */ void gerbv_render_all_layers_to_cairo_target_for_vector_output ( gerbv_project_t *gerbvProject, cairo_t *cr, gerbv_render_info_t *renderInfo) { GdkColor *bg = &gerbvProject->background; int i; double r, g, b; gerbv_render_cairo_set_scale_and_translation (cr, renderInfo); /* Fill the background with the appropriate not white and not black * color for backward culpability. */ if ((bg->red != 0xffff || bg->green != 0xffff || bg->blue != 0xffff) && (bg->red != 0x0000 || bg->green != 0x0000 || bg->blue != 0x0000)) { r = (double) bg->red/G_MAXUINT16; g = (double) bg->green/G_MAXUINT16; b = (double) bg->blue/G_MAXUINT16; cairo_set_source_rgba (cr, r, g, b, 1); cairo_paint (cr); /* Set cairo user data with background color information, to be * used for clear color. */ cairo_set_user_data (cr, (cairo_user_data_key_t *)0, &r, NULL); cairo_set_user_data (cr, (cairo_user_data_key_t *)1, &g, NULL); cairo_set_user_data (cr, (cairo_user_data_key_t *)2, &b, NULL); } for (i = gerbvProject->last_loaded; i >= 0; i--) { if (gerbvProject->file[i] && gerbvProject->file[i]->isVisible) { gerbv_render_layer_to_cairo_target_without_transforming( cr, gerbvProject->file[i], renderInfo, FALSE); } } } /* ------------------------------------------------------------------ */ void gerbv_render_all_layers_to_cairo_target (gerbv_project_t *gerbvProject, cairo_t *cr, gerbv_render_info_t *renderInfo) { int i; /* Fill the background with the appropriate color. */ cairo_set_source_rgba (cr, (double) gerbvProject->background.red/G_MAXUINT16, (double) gerbvProject->background.green/G_MAXUINT16, (double) gerbvProject->background.blue/G_MAXUINT16, 1); cairo_paint (cr); for (i = gerbvProject->last_loaded; i >= 0; i--) { if (gerbvProject->file[i] && gerbvProject->file[i]->isVisible) { cairo_push_group (cr); gerbv_render_layer_to_cairo_target (cr, gerbvProject->file[i], renderInfo); cairo_pop_group_to_source (cr); cairo_paint_with_alpha (cr, (double) gerbvProject->file[i]->alpha/G_MAXUINT16); } } } /* ------------------------------------------------------------------ */ void gerbv_render_layer_to_cairo_target (cairo_t *cr, gerbv_fileinfo_t *fileInfo, gerbv_render_info_t *renderInfo) { gerbv_render_cairo_set_scale_and_translation(cr, renderInfo); gerbv_render_layer_to_cairo_target_without_transforming(cr, fileInfo, renderInfo, TRUE); } /* ------------------------------------------------------------------ */ void gerbv_render_cairo_set_scale_and_translation(cairo_t *cr, gerbv_render_info_t *renderInfo){ gdouble translateX, translateY; translateX = (renderInfo->lowerLeftX * renderInfo->scaleFactorX); translateY = (renderInfo->lowerLeftY * renderInfo->scaleFactorY); /* renderTypes 0 and 1 use GDK rendering, so we shouldn't have made it this far */ if (renderInfo->renderType == GERBV_RENDER_TYPE_CAIRO_NORMAL) { cairo_set_tolerance (cr, 1.0); cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE); } else if (renderInfo->renderType == GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY) { cairo_set_tolerance (cr, 0.1); cairo_set_antialias (cr, CAIRO_ANTIALIAS_DEFAULT); } /* translate the draw area before drawing. We must translate the whole drawing down an additional displayHeight to account for the negative y flip done later */ cairo_translate (cr, -translateX, translateY + renderInfo->displayHeight); /* scale the drawing by the specified scale factor (inverting y since cairo y axis points down) */ cairo_scale (cr, renderInfo->scaleFactorX, -renderInfo->scaleFactorY); } /* ------------------------------------------------------------------ */ void gerbv_render_layer_to_cairo_target_without_transforming(cairo_t *cr, gerbv_fileinfo_t *fileInfo, gerbv_render_info_t *renderInfo, gboolean pixelOutput) { cairo_set_source_rgba (cr, (double) fileInfo->color.red/G_MAXUINT16, (double) fileInfo->color.green/G_MAXUINT16, (double) fileInfo->color.blue/G_MAXUINT16, 1); /* translate, rotate, and modify the image based on the layer-specific transformation struct */ cairo_save (cr); draw_image_to_cairo_target (cr, fileInfo->image, 1.0/MAX(renderInfo->scaleFactorX, renderInfo->scaleFactorY), DRAW_IMAGE, NULL, renderInfo, TRUE, fileInfo->transform, pixelOutput); cairo_restore (cr); } void gerbv_attribute_destroy_HID_attribute (gerbv_HID_Attribute *attributeList, int n_attr) { int i; /* free the string attributes */ for (i = 0 ; i < n_attr ; i++) { if ( (attributeList[i].type == HID_String || attributeList[i].type == HID_Label) && attributeList[i].default_val.str_value != NULL) { free (attributeList[i].default_val.str_value); } } /* and free the attribute list */ if (attributeList != NULL) { free (attributeList); } } /* allocate memory and make a copy of an attribute list */ gerbv_HID_Attribute * gerbv_attribute_dup (gerbv_HID_Attribute *attributeList, int n_attr) { gerbv_HID_Attribute *nl; int i; nl = (gerbv_HID_Attribute *) malloc (n_attr * sizeof (gerbv_HID_Attribute)); if (nl == NULL) { fprintf (stderr, "malloc failed in %s()\n", __FUNCTION__); exit (1); } /* copy the attribute list being sure to strdup the strings */ for (i = 0 ; i < n_attr ; i++) { if (attributeList[i].type == HID_String || attributeList[i].type == HID_Label) { if (attributeList[i].default_val.str_value != NULL) { nl[i].default_val.str_value = strdup (attributeList[i].default_val.str_value); } else { nl[i].default_val.str_value = NULL; } } else { nl[i] = attributeList[i]; } } return nl; } gerbv_fileinfo_t * gerbv_get_fileinfo_for_image(const gerbv_image_t *image, const gerbv_project_t *project) { int i; for (i = 0; i <= project->last_loaded; i++) { if (project->file[i]->image == image) return project->file[i]; } return NULL; } inline void gerbv_rotate_coord(double *x, double *y, double rad) { double x0 = *x; *x = x0*cos(rad) - *y*sin(rad); *y = x0*sin(rad) + *y*cos(rad); } void gerbv_transform_coord(double *x, double *y, const gerbv_user_transformation_t *trans) { *x = trans->scaleX * *x; *y = trans->scaleY * *y; gerbv_rotate_coord(x, y, trans->rotation); if (trans->mirrorAroundY) *x = -*x; if (trans->mirrorAroundX) *y = -*y; *x += trans->translateX; *y += trans->translateY; } int gerbv_transform_coord_for_image(double *x, double *y, const gerbv_image_t *image, const gerbv_project_t *project) { gerbv_fileinfo_t *fileinfo = gerbv_get_fileinfo_for_image(image, project); if (fileinfo == NULL) { dprintf("%s(): NULL fileinfo\n", __func__); return -1; } gerbv_transform_coord(x, y, &fileinfo->transform); return 0; } gerbv-2.7.0/src/amacro.h0000644000175000017500000000256313421555714014724 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file amacro.h \brief Aperture macro parsing header info \ingroup libgerbv */ #ifndef AMACRO_H #define AMACRO_H #ifdef __cplusplus extern "C" { #endif /* * Parses the definition of an aperture macro */ gerbv_amacro_t *parse_aperture_macro(gerb_file_t *fd); /* * Frees amacro struct completly */ void free_amacro(gerbv_amacro_t *amacro); /* * Print out parsed aperture macro. For debugging purpose. */ void print_program(gerbv_amacro_t *amacro); #ifdef __cplusplus } #endif #endif /* AMACRO_H */ gerbv-2.7.0/src/csv_defines.h0000644000175000017500000000206713421555714015751 0ustar carstencarsten#ifndef DEFINES_H #define DEFINES_H /** \file csv_defines.h \brief Sets up internal definitions for handling csv-style files \ingroup libgerbv */ #if defined(__sparc__) #define HAVE_ENCDEC 0 #define HAVE_STRDUP 1 #define HAVE_STRNLEN 0 #define HAVE_EXPAT 0 #define HAVE_MBSTATE 0 #define HAVE_WCWIDTH 1 #define HAVE_SNPRINTF 1 #define HAVE_VSNPRINTF 1 #define HAVE_VARMACRO 1 #define HAVE_LANGINFO 1 #elif defined(_WIN32) #define HAVE_ENCDEC 0 #define HAVE_STRDUP 1 #ifndef HAVE_STRNLEN # define HAVE_STRNLEN 0 #endif #define HAVE_EXPAT 0 #define HAVE_MBSTATE 0 #define HAVE_WCWIDTH 0 #ifndef HAVE_SNPRINTF # define HAVE_SNPRINTF 0 #endif #define HAVE_VSNPRINTF 0 #define HAVE_VARMACRO 0 #define HAVE_LANGINFO 0 #else #define HAVE_ENCDEC 0 #define HAVE_STRDUP 1 #define HAVE_STRNLEN 1 #define HAVE_EXPAT 0 #define HAVE_MBSTATE 1 #define HAVE_WCWIDTH 1 #define HAVE_SNPRINTF 1 #define HAVE_VSNPRINTF 0 #define HAVE_VARMACRO 1 #define HAVE_LANGINFO 1 #endif #ifdef __GNUC__ #define UNUSED __attribute__ ((unused)) #else #define UNUSED #endif #endif /* DEFINES_H */ gerbv-2.7.0/src/export-geda-pcb.c0000644000175000017500000001635113421555714016436 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of Gerbv. * * Copyright (C) 2014 Sergey Alyoshin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-geda-pcb.c \brief Functions for exporting Gerbv images to gEDA PCB files \ingroup libgerbv */ #include "gerbv.h" #include "common.h" #include static void write_line(FILE *fd, gerbv_net_t *net, double thick, double dx_p, double dy_m, const char *sflags) { dx_p = COORD2MILS(dx_p); dy_m = COORD2MILS(dy_m); fprintf(fd, "\tLine[%.2fmil %.2fmil %.2fmil %.2fmil " "%.2fmil %.2fmil \"%s\"]\n", dx_p + COORD2MILS(net->stop_x), dy_m - COORD2MILS(net->stop_y), dx_p + COORD2MILS(net->start_x), dy_m - COORD2MILS(net->start_y), COORD2MILS(thick), 100.0, sflags); } static void write_element_with_pad(FILE *fd, gerbv_net_t *net, double thick, double dx_p, double dy_m, const char *sflags) { double xc, yc; static unsigned int element_num = 1; dx_p = COORD2MILS(dx_p); dy_m = COORD2MILS(dy_m); xc = COORD2MILS(net->stop_x + net->start_x)/2; yc = COORD2MILS(net->stop_y + net->start_y)/2; fprintf(fd, "Element[\"\" \"\" \"pad%d\" \"\" " "%.2fmil %.2fmil 0mil 0mil 0 100 \"\"]\n(\n", element_num++, dx_p + xc, dy_m - yc); fprintf(fd, "\tPad[%.2fmil %.2fmil %.2fmil %.2fmil " "%.2fmil 0mil %.2fmil " "\"%s\" \"%s\" \"%s\"]\n)\n", xc - COORD2MILS(net->stop_x), yc - COORD2MILS(net->stop_y), xc - COORD2MILS(net->start_x), yc - COORD2MILS(net->start_y), COORD2MILS(thick), /* Thickness */ COORD2MILS(thick), /* Mask */ "1", /* Name */ "1", /* Number */ sflags); /* String flags */ } static void write_polygon(FILE *fd, gerbv_net_t *net, double dx_p, double dy_m, const char *sflags) { dx_p = COORD2MILS(dx_p); dy_m = COORD2MILS(dy_m); fprintf(fd, "\tPolygon(\"%s\")\n\t(", sflags); net = net->next; unsigned int i = 0; while (net != NULL && net->interpolation != GERBV_INTERPOLATION_PAREA_END) { if (net->aperture_state == GERBV_APERTURE_STATE_ON) { fprintf(fd, "%s[%.2fmil %.2fmil] ", !(i%5)? "\n\t\t": "", dx_p + COORD2MILS(net->stop_x), dy_m - COORD2MILS(net->stop_y)); i++; } net = net->next; } fprintf(fd, "\n\t)\n"); } gboolean gerbv_export_geda_pcb_file_from_image(const gchar *file_name, gerbv_image_t *input_img, gerbv_user_transformation_t *trans) { gerbv_aperture_t *apert; gerbv_image_t *img; gerbv_net_t *net; double dx_p, dy_m; double thick, len; FILE *fd; if ((fd = g_fopen(file_name, "w")) == NULL) { GERB_MESSAGE(_("Can't open file for writing: %s"), file_name); return FALSE; } /* Output decimals as dots for all locales */ setlocale(LC_NUMERIC, "C"); /* Duplicate the image, cleaning it in the process */ img = gerbv_image_duplicate_image(input_img, trans); /* Header */ fputs("# Generated with gerbv\n\n", fd); fputs("FileVersion[20091103]\n", fd); dx_p = (img->info->max_x - img->info->min_x) - img->info->min_x; dy_m = 2*(img->info->max_y - img->info->min_y) + img->info->min_y; /* Make board size is 3 times more than Gerber size */ fprintf(fd, "PCB[\"%s\" %.2fmil %.2fmil]\n", img->info->name, 3*COORD2MILS(img->info->max_x - img->info->min_x), 3*COORD2MILS(img->info->max_y - img->info->min_y)); fputs("Grid[1000.000000 0.0000 0.0000 0]\n", fd); /* Write all apertures as elements with single pad, before layer * definition */ for (net = img->netlist; net != NULL; net = net->next) { apert = img->aperture[net->aperture]; if (!apert) continue; /* Skip polygon, it will be written in layer section */ if (net->interpolation == GERBV_INTERPOLATION_PAREA_START) { /* Skip to the end for polygon */ do { net = net->next; } while (net != NULL && net->interpolation != GERBV_INTERPOLATION_PAREA_END); continue; } switch (net->aperture_state) { case GERBV_APERTURE_STATE_FLASH: switch (apert->type) { case GERBV_APTYPE_CIRCLE: /* Set start to stop coords for Circle flash */ net->start_x = net->stop_x; net->start_y = net->stop_y; write_element_with_pad(fd, net, apert->parameter[0], dx_p, dy_m, ""); break; case GERBV_APTYPE_OVAL: case GERBV_APTYPE_RECTANGLE: if (apert->parameter[0] > apert->parameter[1]) { /* Horizontal */ len = apert->parameter[0]; thick = apert->parameter[1]; net->start_x = net->stop_x - len/2 + thick/2; net->stop_x += len/2 - thick/2; net->start_y = net->stop_y; } else { /* Vertical */ len = apert->parameter[1]; thick = apert->parameter[0]; net->start_x = net->stop_x; net->start_y = net->stop_y - len/2 + thick/2; net->stop_y += len/2 - thick/2; } write_element_with_pad(fd, net, thick, dx_p, dy_m, (apert->type == GERBV_APTYPE_RECTANGLE)? "square": ""); break; default: /* TODO */ GERB_COMPILE_WARNING( "%s:%d: aperture type %d is " "not yet supported", __func__, __LINE__, apert->type); break; } break; case GERBV_APERTURE_STATE_ON: /* Will be done in layer section */ break; default: /* TODO */ GERB_COMPILE_WARNING( "%s:%d: aperture type %d is " "not yet supported", __func__, __LINE__, apert->type); break; } } /* Write all lines in layer definition */ fputs("Layer(1 \"top\")\n(\n", fd); for (net = img->netlist; net != NULL; net = net->next) { apert = img->aperture[net->aperture]; if (!apert) continue; if (net->interpolation == GERBV_INTERPOLATION_PAREA_START) { write_polygon(fd, net, dx_p, dy_m, "clearpoly"); /* Skip to the end for polygon */ do { net = net->next; } while (net != NULL && net->interpolation != GERBV_INTERPOLATION_PAREA_END); continue; } switch (net->aperture_state) { case GERBV_APERTURE_STATE_FLASH: /* Already done in elements section */ break; case GERBV_APERTURE_STATE_ON: /* Trace (or cut slot in drill file) */ switch (apert->type) { case GERBV_APTYPE_CIRCLE: write_line(fd, net, apert->parameter[0], dx_p, dy_m, "clearline"); break; default: GERB_COMPILE_WARNING( "%s:%d: aperture type %d is " "not yet supported", __func__, __LINE__, apert->type); break; } break; default: GERB_COMPILE_WARNING( "%s:%d: aperture state %d type %d is " "not yet supported", __func__, __LINE__, net->aperture_state, apert->type); break; } } fputs(")\n", fd); /* End of Layer 1 */ /* Necessary layer */ fputs("Layer(7 \"outline\")\n(\n)\n", fd); gerbv_destroy_image (img); fclose(fd); setlocale(LC_NUMERIC, ""); /* Return to the default locale */ return TRUE; } gerbv-2.7.0/src/scheme.h0000644000175000017500000001417013421555714014723 0ustar carstencarsten/* SCHEME.H */ /** \file scheme.h \brief Header info for the TinyScheme compiler \ingroup gerbv */ #ifndef _SCHEME_H #define _SCHEME_H #include #ifdef HAVE_CONFIG_H #include #endif /* * Default values for #define'd symbols */ #ifndef STANDALONE /* If used as standalone interpreter */ # define STANDALONE 1 #endif #if !defined(_MSC_VER) && !defined(__MINGW32__) # define USE_STRCASECMP 1 # define USE_STRLWR 1 # define SCHEME_EXPORT #else # define USE_STRCASECMP 0 # define USE_STRLWR 0 # if defined(__MINGW32__) # define SCHEME_EXPORT # else # ifdef _SCHEME_SOURCE # define SCHEME_EXPORT __declspec(dllexport) # else # define SCHEME_EXPORT __declspec(dllimport) # endif # endif #endif #if USE_NO_FEATURES # define USE_MATH 0 # define USE_CHAR_CLASSIFIERS 0 # define USE_ASCII_NAMES 0 # define USE_STRING_PORTS 0 # define USE_ERROR_HOOK 0 # define USE_TRACING 0 # define USE_COLON_HOOK 0 # define USE_DL 0 # define USE_PLIST 0 #endif /* * Leave it defined if you want continuations, and also for the Sharp Zaurus. * Undefine it if you only care about faster speed and not strict Scheme compatibility. */ #define USE_SCHEME_STACK #if USE_DL # define USE_INTERFACE 1 #endif #ifndef USE_MATH /* If math support is needed */ # define USE_MATH 1 #endif #ifndef USE_CHAR_CLASSIFIERS /* If char classifiers are needed */ # define USE_CHAR_CLASSIFIERS 1 #endif #ifndef USE_ASCII_NAMES /* If extended escaped characters are needed */ # define USE_ASCII_NAMES 1 #endif #ifndef USE_STRING_PORTS /* Enable string ports */ # define USE_STRING_PORTS 1 #endif #ifndef USE_TRACING # define USE_TRACING 1 #endif #ifndef USE_PLIST # define USE_PLIST 0 #endif /* To force system errors through user-defined error handling (see *error-hook*) */ #ifndef USE_ERROR_HOOK # define USE_ERROR_HOOK 1 #endif #ifndef USE_COLON_HOOK /* Enable qualified qualifier */ # define USE_COLON_HOOK 1 #endif #ifndef USE_STRCASECMP /* stricmp for Unix */ # define USE_STRCASECMP 0 #endif #ifndef USE_STRLWR # define USE_STRLWR 1 #endif #ifndef STDIO_ADDS_CR /* Define if DOS/Windows */ # define STDIO_ADDS_CR 0 #endif #ifndef INLINE # define INLINE #endif #ifndef USE_INTERFACE # define USE_INTERFACE 0 #endif typedef struct scheme scheme; typedef struct cell *pointer; typedef void * (*func_alloc)(size_t); typedef void (*func_dealloc)(void *); /* num, for generic arithmetic */ typedef struct num { char is_fixnum; union { long ivalue; double rvalue; } value; } num; SCHEME_EXPORT scheme *scheme_init_new(); SCHEME_EXPORT scheme *scheme_init_new_custom_alloc(func_alloc malloc, func_dealloc free); SCHEME_EXPORT int scheme_init(scheme *sc); SCHEME_EXPORT int scheme_init_custom_alloc(scheme *sc, func_alloc, func_dealloc); SCHEME_EXPORT void scheme_deinit(scheme *sc); void scheme_set_input_port_file(scheme *sc, FILE *fin); void scheme_set_input_port_string(scheme *sc, char *start, char *past_the_end); SCHEME_EXPORT void scheme_set_output_port_file(scheme *sc, FILE *fin); void scheme_set_output_port_string(scheme *sc, char *start, char *past_the_end); SCHEME_EXPORT void scheme_load_file(scheme *sc, FILE *fin); SCHEME_EXPORT void scheme_load_string(scheme *sc, const char *cmd); void scheme_apply0(scheme *sc, const char *procname); SCHEME_EXPORT pointer scheme_apply1(scheme *sc, const char *procname, pointer); void scheme_set_external_data(scheme *sc, void *p); SCHEME_EXPORT void scheme_define(scheme *sc, pointer env, pointer symbol, pointer value); typedef pointer (*foreign_func)(scheme *, pointer); pointer _cons(scheme *sc, pointer a, pointer b, int immutable); pointer mk_integer(scheme *sc, long num); pointer mk_real(scheme *sc, double num); pointer mk_symbol(scheme *sc, const char *name); pointer gensym(scheme *sc); pointer mk_string(scheme *sc, const char *str); pointer mk_counted_string(scheme *sc, const char *str, int len); pointer mk_character(scheme *sc, int c); pointer mk_foreign_func(scheme *sc, foreign_func f); void putstr(scheme *sc, const char *s); #if USE_INTERFACE struct scheme_interface { void (*scheme_define)(scheme *sc, pointer env, pointer symbol, pointer value); pointer (*cons)(scheme *sc, pointer a, pointer b); pointer (*immutable_cons)(scheme *sc, pointer a, pointer b); pointer (*mk_integer)(scheme *sc, long num); pointer (*mk_real)(scheme *sc, double num); pointer (*mk_symbol)(scheme *sc, const char *name); pointer (*gensym)(scheme *sc); pointer (*mk_string)(scheme *sc, const char *str); pointer (*mk_counted_string)(scheme *sc, const char *str, int len); pointer (*mk_character)(scheme *sc, int c); pointer (*mk_vector)(scheme *sc, int len); pointer (*mk_foreign_func)(scheme *sc, foreign_func f); void (*putstr)(scheme *sc, const char *s); void (*putcharacter)(scheme *sc, int c); int (*is_string)(pointer p); char *(*string_value)(pointer p); int (*is_number)(pointer p); num (*nvalue)(pointer p); long (*ivalue)(pointer p); double (*rvalue)(pointer p); int (*is_integer)(pointer p); int (*is_real)(pointer p); int (*is_character)(pointer p); long (*charvalue)(pointer p); int (*is_vector)(pointer p); long (*vector_length)(pointer vec); void (*fill_vector)(pointer vec, pointer elem); pointer (*vector_elem)(pointer vec, int ielem); pointer (*set_vector_elem)(pointer vec, int ielem, pointer newel); int (*is_port)(pointer p); int (*is_pair)(pointer p); pointer (*pair_car)(pointer p); pointer (*pair_cdr)(pointer p); pointer (*set_car)(pointer p, pointer q); pointer (*set_cdr)(pointer p, pointer q); int (*is_symbol)(pointer p); char *(*symname)(pointer p); int (*is_syntax)(pointer p); int (*is_proc)(pointer p); int (*is_foreign)(pointer p); char *(*syntaxname)(pointer p); int (*is_closure)(pointer p); int (*is_macro)(pointer p); pointer (*closure_code)(pointer p); pointer (*closure_env)(pointer p); int (*is_continuation)(pointer p); int (*is_promise)(pointer p); int (*is_environment)(pointer p); int (*is_immutable)(pointer p); void (*setimmutable)(pointer p); void (*load_file)(scheme *sc, FILE *fin); void (*load_string)(scheme *sc, const char *input); }; #endif #endif gerbv-2.7.0/src/drill_stats.c0000644000175000017500000003134413421555714016000 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * drill_stats.c -- a part of gerbv. * * Copyright (C) 2007 Stuart Brorson (sdb@cloud9.net) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file drill_stats.c \brief Statistics generating functions for Excellon drill files \ingroup libgerbv */ #include "gerbv.h" #include #include #include #include #include "common.h" #include "drill_stats.h" #include "gerb_stats.h" #define dprintf if(DEBUG) printf /* ------------------------------------------------------- */ /** Allocates a new drill_stats structure @return drill_stats pointer on success, NULL on ERROR */ gerbv_drill_stats_t * gerbv_drill_stats_new(void) { gerbv_drill_stats_t *stats; gerbv_drill_list_t *drill_list; gerbv_error_list_t *error_list; /* Malloc space for new stats struct. Return NULL if error. */ if (NULL == (stats = g_new0(gerbv_drill_stats_t, 1))) { return NULL; } /* Initialize drill list */ drill_list = gerbv_drill_stats_new_drill_list(); if (drill_list == NULL) GERB_FATAL_ERROR("malloc drill_list failed in %s()", __FUNCTION__); stats->drill_list = (gerbv_drill_list_t *) drill_list; /* Initialize error list */ error_list = gerbv_drill_stats_new_error_list(); if (error_list == NULL) GERB_FATAL_ERROR("malloc error_list failed in %s()", __FUNCTION__); stats->error_list = (gerbv_error_list_t *) error_list; stats->detect = NULL; return stats; } void gerbv_drill_destroy_error_list (gerbv_error_list_t *errorList) { gerbv_error_list_t *nextError=errorList,*tempError; while (nextError) { tempError = nextError->next; g_free (nextError->error_text); g_free (nextError); nextError = tempError; } } void gerbv_drill_destroy_drill_list (gerbv_drill_list_t *apertureList) { gerbv_drill_list_t *nextAperture=apertureList,*tempAperture; while (nextAperture) { tempAperture = nextAperture->next; g_free(nextAperture->drill_unit); g_free (nextAperture); nextAperture = tempAperture; } } void gerbv_drill_stats_destroy(gerbv_drill_stats_t *stats) { if (stats == NULL) return; gerbv_drill_destroy_error_list (stats->error_list); gerbv_drill_destroy_drill_list (stats->drill_list); g_free (stats); } /* ------------------------------------------------------- */ void gerbv_drill_stats_add_layer(gerbv_drill_stats_t *accum_stats, gerbv_drill_stats_t *input_stats, int this_layer) { gerbv_drill_list_t *drill; gerbv_error_list_t *error; char *tmps, *tmps2; dprintf("---> Entering gerbv_drill_stats_add_layer ..... \n"); accum_stats->layer_count++; accum_stats->comment += input_stats->comment; /* F codes go here */ accum_stats->G00 += input_stats->G00; accum_stats->G01 += input_stats->G01; accum_stats->G02 += input_stats->G02; accum_stats->G03 += input_stats->G03; accum_stats->G04 += input_stats->G04; accum_stats->G05 += input_stats->G05; accum_stats->G85 += input_stats->G85; accum_stats->G90 += input_stats->G90; accum_stats->G91 += input_stats->G91; accum_stats->G93 += input_stats->G93; accum_stats->G_unknown += input_stats->G_unknown; accum_stats->M00 += input_stats->M00; accum_stats->M01 += input_stats->M01; accum_stats->M18 += input_stats->M18; accum_stats->M25 += input_stats->M25; accum_stats->M30 += input_stats->M30; accum_stats->M31 += input_stats->M31; accum_stats->M45 += input_stats->M45; accum_stats->M47 += input_stats->M47; accum_stats->M48 += input_stats->M48; accum_stats->M71 += input_stats->M71; accum_stats->M72 += input_stats->M72; accum_stats->M95 += input_stats->M95; accum_stats->M97 += input_stats->M97; accum_stats->M98 += input_stats->M98; accum_stats->M_unknown += input_stats->M_unknown; accum_stats->R += input_stats->R; /* ==== Now deal with the drill list ==== */ for (drill = input_stats->drill_list; drill != NULL; drill = drill->next) { dprintf(" In gerbv_drill_stats_add_layer, adding drill_num = %d to list\n", drill->drill_num); /* First add this input drill to the accumulated list. * Drills already in accum list will not be added. */ drill_stats_add_to_drill_list(accum_stats->drill_list, drill->drill_num, drill->drill_size, drill->drill_unit); /* Now add count of input drill to accum list */ dprintf(" adding count %d of drills for drill %d\n", drill->drill_count, drill->drill_num); drill_stats_add_to_drill_counter(accum_stats->drill_list, drill->drill_num, drill->drill_count); accum_stats->total_count += drill->drill_count; } /* ==== Now deal with the error list ==== */ for (error = input_stats->error_list; error != NULL; error = error->next) { if (error->error_text != NULL) gerbv_stats_printf(accum_stats->error_list, error->type, this_layer, error->error_text); } /* ==== Now deal with the misc header stuff ==== */ tmps = NULL; tmps2 = NULL; if (input_stats->detect) { tmps2 = g_strdup_printf (_("Broken tool detect %s (layer %d)"), input_stats->detect, this_layer); } if (accum_stats->detect) { if (tmps2) { tmps = g_strdup_printf ("%s\n%s", accum_stats->detect, tmps2); g_free (accum_stats->detect); accum_stats->detect = NULL; } } else { if (tmps2) { tmps = g_strdup_printf ("%s", tmps2); } } if (tmps2) { g_free (tmps2); } if (tmps != NULL) { accum_stats->detect = tmps; } for (error = input_stats->error_list; error != NULL; error = error->next) { if (error->error_text != NULL) { gerbv_stats_printf(accum_stats->error_list, error->type, this_layer, error->error_text); } } dprintf("<--- .... Leaving gerbv_drill_stats_add_layer.\n"); return; } /* ------------------------------------------------------- */ gboolean drill_stats_in_drill_list(gerbv_drill_list_t *drill_list_in, int drill_num_in) { gerbv_drill_list_t *drill; for(drill = drill_list_in; drill != NULL; drill = drill->next) { if (drill_num_in == drill->drill_num) { return TRUE; } } return FALSE; } /* ------------------------------------------------------- */ gerbv_drill_list_t * gerbv_drill_stats_new_drill_list() { gerbv_drill_list_t *drill_list; /* Malloc space for new drill_list struct. Return NULL if error. */ if (NULL == (drill_list = g_new(gerbv_drill_list_t, 1))) { return NULL; } drill_list->drill_count = 0; drill_list->drill_num = -1; /* default val */ drill_list->drill_size = 0.0; drill_list->drill_unit = NULL; drill_list->next = NULL; return drill_list; } /* ------------------------------------------------------- */ void drill_stats_add_to_drill_list(gerbv_drill_list_t *drill_list_in, int drill_num_in, double drill_size_in, char *drill_unit_in) { gerbv_drill_list_t *drill_list_new; gerbv_drill_list_t *drill; gerbv_drill_list_t *drill_last = NULL; dprintf ("%s(%p, %d, %g, \"%s\")\n", __FUNCTION__, drill_list_in, drill_num_in, drill_size_in, drill_unit_in); dprintf(" ---> Entering drill_stats_add_to_drill_list, first drill_num in list = %d ...\n", drill_list_in->drill_num); /* First check for empty list. If empty, then just add this drill */ if (drill_list_in->drill_num == -1) { dprintf(" .... In drill_stats_add_to_drill_list, adding first drill, no %d\n", drill_num_in); drill_list_in->drill_num = drill_num_in; drill_list_in->drill_size = drill_size_in; drill_list_in->drill_count = 0; drill_list_in->drill_unit = g_strdup_printf("%s", drill_unit_in); drill_list_in->next = NULL; return; } /* Else check to see if this drill is already in the list */ for(drill = drill_list_in; drill != NULL; drill = (gerbv_drill_list_t *) drill->next) { dprintf("checking this drill_num %d against that in list %d.\n", drill_num_in, drill->drill_num); if (drill_num_in == drill->drill_num) { dprintf(" .... In drill_stats_add_to_drill_list, drill no %d already in list\n", drill_num_in); return; /* Found it in list, so return */ } drill_last = drill; } /* Now malloc space for new drill list element */ if (NULL == (drill_list_new = g_new(gerbv_drill_list_t, 1))) { GERB_FATAL_ERROR("malloc format failed in %s()", __FUNCTION__); } /* Now set various parameters based upon calling args */ dprintf(" .... In drill_stats_add_to_drill_list, adding new drill, no %d\n", drill_num_in); drill_list_new->drill_num = drill_num_in; drill_list_new->drill_size = drill_size_in; drill_list_new->drill_count = 0; drill_list_new->drill_unit = g_strdup_printf("%s", drill_unit_in); drill_list_new->next = NULL; drill_last->next = drill_list_new; dprintf(" <---- ... leaving drill_stats_add_to_drill_list.\n"); return; } /* ------------------------------------------------------- */ void drill_stats_modify_drill_list(gerbv_drill_list_t *drill_list_in, int drill_num_in, double drill_size_in, char *drill_unit_in) { gerbv_drill_list_t *drill; dprintf(" ---> Entering drill_stats_modify_drill_list, first drill_num in list = %d ...\n", drill_list_in->drill_num); /* Look for this drill num in list */ for(drill = drill_list_in; drill != NULL; drill = (gerbv_drill_list_t *) drill->next) { dprintf("checking this drill_num %d against that in list %d.\n", drill_num_in, drill->drill_num); if (drill_num_in == drill->drill_num) { dprintf(" .... Found it, now update it ....\n"); drill->drill_size = drill_size_in; if (drill->drill_unit) g_free(drill->drill_unit); drill->drill_unit = g_strdup_printf("%s", drill_unit_in); dprintf(" <---- ... Modified drill. leaving drill_stats_modify_drill_list.\n"); return; } } dprintf(" <---- ... Did not find drill. leaving drill_stats_modify_drill_list.\n"); return; } /* ------------------------------------------------------- */ void drill_stats_increment_drill_counter(gerbv_drill_list_t *drill_list_in, int drill_num_in) { dprintf(" ----> Entering drill_stats_increment_drill_counter......\n"); /* First check to see if this drill is already in the list */ gerbv_drill_list_t *drill; for(drill = drill_list_in; drill != NULL; drill = drill->next) { if (drill_num_in == drill->drill_num) { drill->drill_count++; dprintf(" .... incrementing drill count. drill_num = %d, drill_count = %d.\n", drill_list_in->drill_num, drill->drill_count); dprintf(" <---- .... Leaving drill_stats_increment_drill_counter after incrementing counter.\n"); return; } } dprintf(" <---- .... Leaving drill_stats_increment_drill_counter without incrementing any counter.\n"); } /* ------------------------------------------------------- */ void drill_stats_add_to_drill_counter(gerbv_drill_list_t *drill_list_in, int drill_num_in, int increment) { gerbv_drill_list_t *drill; for(drill = drill_list_in; drill != NULL; drill = drill->next) { if (drill_num_in == drill->drill_num) { dprintf(" In drill_stats_add_to_drill_counter, adding increment = %d drills to drill list\n", increment); drill->drill_count += increment; return; } } } /* ------------------------------------------------------- */ gerbv_error_list_t * gerbv_drill_stats_new_error_list() { gerbv_error_list_t *error_list; /* Malloc space for new error_list struct. Return NULL if error. */ if (NULL == (error_list = g_new(gerbv_error_list_t, 1))) { return NULL; } error_list->layer = -1; error_list->error_text = NULL; error_list->next = NULL; return error_list; } /* ------------------------------------------------------- */ /** Add statistic message for drill layer. * It is recommend to use gerbv_stats_printf() instead of this function. */ void drill_stats_add_error(gerbv_error_list_t *error_list_in, int layer, const char *error_text, gerbv_message_type_t type) { gerbv_stats_add_error(error_list_in, layer, error_text, type); } gerbv-2.7.0/src/export-rs274x.c0000644000175000017500000003331113421555714016040 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2008 Julian Lamb * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-rs274x.c \brief Functions to export an image to a RS274X file \ingroup libgerbv */ #include "gerbv.h" #include #include #include "common.h" #define dprintf if(DEBUG) printf #define round(x) floor(x+0.5) void export_rs274x_write_macro (FILE *fd, gerbv_aperture_t *currentAperture, gint apertureNumber) { gerbv_simplified_amacro_t *ls = currentAperture->simplified; /* write the macro portion first */ fprintf(fd, "%%AMMACRO%d*\n",apertureNumber); while (ls != NULL) { if (ls->type == GERBV_APTYPE_MACRO_CIRCLE) { fprintf(fd, "1,%d,%f,%f,%f*\n",(int) ls->parameter[CIRCLE_EXPOSURE], ls->parameter[CIRCLE_DIAMETER],ls->parameter[CIRCLE_CENTER_X], ls->parameter[CIRCLE_CENTER_Y]); } else if (ls->type == GERBV_APTYPE_MACRO_OUTLINE) { int pointCounter; int numberOfPoints = (int) ls->parameter[OUTLINE_NUMBER_OF_POINTS]; /* for Flatcam no new line after this 3 digits */ fprintf(fd, "4,%d,%d,",(int) ls->parameter[OUTLINE_EXPOSURE], numberOfPoints); /* add 1 point for the starting point here */ for (pointCounter=0; pointCounter <= numberOfPoints; pointCounter++) { fprintf(fd, "%f,%f,",ls->parameter[pointCounter * 2 + OUTLINE_FIRST_X], ls->parameter[pointCounter * 2 + OUTLINE_FIRST_Y]); } fprintf(fd, "%f*\n",ls->parameter[pointCounter * 2 + OUTLINE_FIRST_X]); } else if (ls->type == GERBV_APTYPE_MACRO_POLYGON) { fprintf(fd, "5,%d,%d,%f,%f,%f,%f*\n",(int) ls->parameter[POLYGON_EXPOSURE], (int) ls->parameter[POLYGON_NUMBER_OF_POINTS], ls->parameter[POLYGON_CENTER_X],ls->parameter[POLYGON_CENTER_Y], ls->parameter[POLYGON_DIAMETER],ls->parameter[POLYGON_ROTATION]); } else if (ls->type == GERBV_APTYPE_MACRO_MOIRE) { fprintf(fd, "6,%f,%f,%f,%f,%f,%d,%f,%f,%f*\n",ls->parameter[MOIRE_CENTER_X], ls->parameter[MOIRE_CENTER_Y],ls->parameter[MOIRE_OUTSIDE_DIAMETER], ls->parameter[MOIRE_CIRCLE_THICKNESS],ls->parameter[MOIRE_GAP_WIDTH], (int) ls->parameter[MOIRE_NUMBER_OF_CIRCLES],ls->parameter[MOIRE_CROSSHAIR_THICKNESS], ls->parameter[MOIRE_CROSSHAIR_LENGTH],ls->parameter[MOIRE_ROTATION]); } else if (ls->type == GERBV_APTYPE_MACRO_THERMAL) { fprintf(fd, "7,%f,%f,%f,%f,%f,%f*\n",ls->parameter[THERMAL_CENTER_X], ls->parameter[THERMAL_CENTER_Y],ls->parameter[THERMAL_OUTSIDE_DIAMETER], ls->parameter[THERMAL_INSIDE_DIAMETER],ls->parameter[THERMAL_CROSSHAIR_THICKNESS], ls->parameter[THERMAL_ROTATION]); } else if (ls->type == GERBV_APTYPE_MACRO_LINE20) { fprintf(fd, "20,%d,%f,%f,%f,%f,%f,%f*\n",(int) ls->parameter[LINE20_EXPOSURE], ls->parameter[LINE20_LINE_WIDTH],ls->parameter[LINE20_START_X], ls->parameter[LINE20_START_Y],ls->parameter[LINE20_END_X], ls->parameter[LINE20_END_Y],ls->parameter[LINE20_ROTATION]); } else if (ls->type == GERBV_APTYPE_MACRO_LINE21) { fprintf(fd, "21,%d,%f,%f,%f,%f,%f*\n",(int) ls->parameter[LINE21_EXPOSURE], ls->parameter[LINE21_WIDTH],ls->parameter[LINE21_HEIGHT], ls->parameter[LINE21_CENTER_X],ls->parameter[LINE21_CENTER_Y], ls->parameter[LINE21_ROTATION]); } else if (ls->type == GERBV_APTYPE_MACRO_LINE22) { fprintf(fd, "22,%d,%f,%f,%f,%f,%f*\n",(int) ls->parameter[LINE22_EXPOSURE], ls->parameter[LINE22_WIDTH],ls->parameter[LINE22_HEIGHT], ls->parameter[LINE22_LOWER_LEFT_X],ls->parameter[LINE22_LOWER_LEFT_Y], ls->parameter[LINE22_ROTATION]); } ls = ls->next; } fprintf(fd, "%%\n"); /* and finally create an aperture definition to use the macro */ fprintf(fd, "%%ADD%dMACRO%d*%%\n",apertureNumber,apertureNumber); } void export_rs274x_write_apertures (FILE *fd, gerbv_image_t *image) { gerbv_aperture_t *currentAperture; gint numberOfRequiredParameters=0,numberOfOptionalParameters=0,i,j; /* the image should already have been cleaned by a duplicate_image call, so we can safely assume the aperture range is correct */ for (i=APERTURE_MIN; iaperture[i]; if (!currentAperture) continue; switch (currentAperture->type) { case GERBV_APTYPE_CIRCLE: fprintf(fd, "%%ADD%d",i); fprintf(fd, "C,"); numberOfRequiredParameters = 1; numberOfOptionalParameters = 2; break; case GERBV_APTYPE_RECTANGLE: fprintf(fd, "%%ADD%d",i); fprintf(fd, "R,"); numberOfRequiredParameters = 2; numberOfOptionalParameters = 2; break; case GERBV_APTYPE_OVAL: fprintf(fd, "%%ADD%d",i); fprintf(fd, "O,"); numberOfRequiredParameters = 2; numberOfOptionalParameters = 2; break; case GERBV_APTYPE_POLYGON: fprintf(fd, "%%ADD%d",i); fprintf(fd, "P,"); numberOfRequiredParameters = 2; numberOfOptionalParameters = 3; break; case GERBV_APTYPE_MACRO: export_rs274x_write_macro (fd, currentAperture, i); writeAperture=FALSE; break; default: writeAperture=FALSE; break; } if (writeAperture) { /* write the parameter list */ for (j=0; j<(numberOfRequiredParameters + numberOfOptionalParameters); j++) { if ((j < numberOfRequiredParameters) || (currentAperture->parameter[j] != 0)) { /* print the "X" character to separate the parameters */ if (j>0) fprintf(fd, "X"); fprintf(fd, "%.4f",currentAperture->parameter[j]); } } fprintf(fd, "*%%\n"); } } } void export_rs274x_write_layer_change (gerbv_layer_t *oldLayer, gerbv_layer_t *newLayer, FILE *fd) { if (oldLayer->polarity != newLayer->polarity) { /* polarity changed */ if ((newLayer->polarity == GERBV_POLARITY_CLEAR)) fprintf(fd, "%%LPC*%%\n"); else fprintf(fd, "%%LPD*%%\n"); } } void export_rs274x_write_state_change (gerbv_netstate_t *oldState, gerbv_netstate_t *newState, FILE *fd) { } gboolean gerbv_export_rs274x_file_from_image (const gchar *filename, gerbv_image_t *inputImage, gerbv_user_transformation_t *transform) { const double decimal_coeff = 1e6; FILE *fd; gerbv_netstate_t *oldState; gerbv_layer_t *oldLayer; gboolean insidePolygon=FALSE; gerbv_user_transformation_t *thisTransform; // force gerbv to output decimals as dots (not commas for other locales) setlocale(LC_NUMERIC, "C"); if (transform != NULL) { thisTransform = transform; } else { static gerbv_user_transformation_t identityTransform = {0,0,1,1,0,FALSE,FALSE,FALSE}; thisTransform = &identityTransform; } if ((fd = g_fopen(filename, "w")) == NULL) { GERB_COMPILE_ERROR(_("Can't open file for writing: %s"), filename); return FALSE; } /* duplicate the image, cleaning it in the process */ gerbv_image_t *image = gerbv_image_duplicate_image (inputImage, thisTransform); /* write header info */ fprintf(fd, "G04 This is an RS-274x file exported by *\n"); fprintf(fd, "G04 gerbv version %s *\n",VERSION); fprintf(fd, "G04 More information is available about gerbv at *\n"); fprintf(fd, "G04 http://gerbv.geda-project.org/ *\n"); fprintf(fd, "G04 --End of header info--*\n"); fprintf(fd, "%%MOIN*%%\n"); fprintf(fd, "%%FSLAX36Y36*%%\n"); /* check the image info struct for any non-default settings */ /* image offset */ if ((image->info->offsetA > 0.0) || (image->info->offsetB > 0.0)) fprintf(fd, "%%IOA%fB%f*%%\n",image->info->offsetA,image->info->offsetB); /* image polarity */ if (image->info->polarity == GERBV_POLARITY_CLEAR) fprintf(fd, "%%IPNEG*%%\n"); else fprintf(fd, "%%IPPOS*%%\n"); /* image name */ if (image->info->name) fprintf(fd, "%%IN%s*%%\n",image->info->name); /* plotter film */ if (image->info->plotterFilm) fprintf(fd, "%%PF%s*%%\n",image->info->plotterFilm); /* image rotation */ if ((image->info->imageRotation != 0.0) || (thisTransform->rotation != 0.0)) fprintf(fd, "%%IR%d*%%\n", (int)(RAD2DEG(image->info->imageRotation + thisTransform->rotation))%360); if ((image->info->imageJustifyTypeA != GERBV_JUSTIFY_NOJUSTIFY) || (image->info->imageJustifyTypeB != GERBV_JUSTIFY_NOJUSTIFY)) { fprintf(fd, "%%IJA"); if (image->info->imageJustifyTypeA == GERBV_JUSTIFY_CENTERJUSTIFY) fprintf(fd, "C"); else fprintf(fd, "%.4f",image->info->imageJustifyOffsetA); fprintf(fd, "B"); if (image->info->imageJustifyTypeB == GERBV_JUSTIFY_CENTERJUSTIFY) fprintf(fd, "C"); else fprintf(fd, "%.4f",image->info->imageJustifyOffsetB); fprintf(fd, "*%%\n"); } /* handle scale user orientation transforms */ if (fabs(thisTransform->scaleX - 1) > GERBV_PRECISION_LINEAR_INCH || fabs(thisTransform->scaleY - 1) > GERBV_PRECISION_LINEAR_INCH) { fprintf(fd, "%%SFA%.4fB%.4f*%%\n",thisTransform->scaleX,thisTransform->scaleY); } /* handle mirror image user orientation transform */ if ((thisTransform->mirrorAroundX)||(thisTransform->mirrorAroundY)) { fprintf(fd, "%%MIA%dB%d*%%\n",thisTransform->mirrorAroundY,thisTransform->mirrorAroundX); } /* define all apertures */ fprintf(fd, "G04 --Define apertures--*\n"); export_rs274x_write_apertures (fd, image); /* write rest of image */ fprintf(fd, "G04 --Start main section--*\n"); gint currentAperture = 0; gerbv_net_t *currentNet; oldLayer = image->layers; oldState = image->states; /* skip the first net, since it's always zero due to the way we parse things */ for (currentNet = image->netlist->next; currentNet; currentNet = currentNet->next){ /* check for "layer" changes (RS274X commands) */ if (currentNet->layer != oldLayer) export_rs274x_write_layer_change (oldLayer, currentNet->layer, fd); /* check for new "netstate" (more RS274X commands) */ if (currentNet->state != oldState) export_rs274x_write_state_change (oldState, currentNet->state, fd); /* check for tool changes */ /* also, make sure the aperture number is a valid one, since sometimes the loaded file may refer to invalid apertures */ if ((currentNet->aperture != currentAperture)&& (image->aperture[currentNet->aperture] != NULL)) { fprintf(fd, "G54D%02d*\n",currentNet->aperture); currentAperture = currentNet->aperture; } oldLayer = currentNet->layer; oldState = currentNet->state; long xVal,yVal,endX,endY,centerX,centerY; switch (currentNet->interpolation) { case GERBV_INTERPOLATION_LINEARx1 : case GERBV_INTERPOLATION_LINEARx10 : case GERBV_INTERPOLATION_LINEARx01 : case GERBV_INTERPOLATION_LINEARx001 : /* see if we need to write an "aperture off" line to get the pen to the right start point */ if ((!insidePolygon) && (currentNet->aperture_state == GERBV_APERTURE_STATE_ON)) { xVal = (long) round(currentNet->start_x * decimal_coeff); yVal = (long) round(currentNet->start_y * decimal_coeff); fprintf(fd, "G01X%07ldY%07ldD02*\n",xVal,yVal); } xVal = (long) round(currentNet->stop_x * decimal_coeff); yVal = (long) round(currentNet->stop_y * decimal_coeff); fprintf(fd, "G01X%07ldY%07ld",xVal,yVal); /* and finally, write the esposure value */ if (currentNet->aperture_state == GERBV_APERTURE_STATE_OFF) fprintf(fd, "D02*\n"); else if (currentNet->aperture_state == GERBV_APERTURE_STATE_ON) fprintf(fd, "D01*\n"); else fprintf(fd, "D03*\n"); break; case GERBV_INTERPOLATION_CW_CIRCULAR : case GERBV_INTERPOLATION_CCW_CIRCULAR : /* see if we need to write an "aperture off" line to get the pen to the right start point */ if ((!insidePolygon) && (currentNet->aperture_state == GERBV_APERTURE_STATE_ON)) { xVal = (long) round(currentNet->start_x * decimal_coeff); yVal = (long) round(currentNet->start_y * decimal_coeff); fprintf(fd, "G01X%07ldY%07ldD02*\n",xVal,yVal); } centerX= (long) round((currentNet->cirseg->cp_x - currentNet->start_x) * decimal_coeff); centerY= (long) round((currentNet->cirseg->cp_y - currentNet->start_y) * decimal_coeff); endX = (long) round(currentNet->stop_x * decimal_coeff); endY = (long) round(currentNet->stop_y * decimal_coeff); /* always use multi-quadrant, since it's much easier to export */ /* and most all software should support it */ fprintf(fd, "G75*\n"); if (currentNet->interpolation == GERBV_INTERPOLATION_CW_CIRCULAR) fprintf(fd, "G02"); /* Clockwise */ else fprintf(fd, "G03"); /* Counter clockwise */ /* don't write the I and J values if the exposure is off */ if (currentNet->aperture_state == GERBV_APERTURE_STATE_ON) fprintf(fd, "X%07ldY%07ldI%07ldJ%07ld",endX,endY,centerX,centerY); else fprintf(fd, "X%07ldY%07ld",endX,endY); /* and finally, write the esposure value */ if (currentNet->aperture_state == GERBV_APERTURE_STATE_OFF) fprintf(fd, "D02*\n"); else if (currentNet->aperture_state == GERBV_APERTURE_STATE_ON) fprintf(fd, "D01*\n"); else fprintf(fd, "D03*\n"); break; case GERBV_INTERPOLATION_PAREA_START: fprintf(fd, "G36*\n"); insidePolygon = TRUE; break; case GERBV_INTERPOLATION_PAREA_END: fprintf(fd, "G37*\n"); insidePolygon = FALSE; break; default: break; } } fprintf(fd, "M02*\n"); gerbv_destroy_image (image); fclose(fd); // return to the default locale setlocale(LC_NUMERIC, ""); return TRUE; } gerbv-2.7.0/src/gerb_file.c0000644000175000017500000001767213421555714015402 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_file.c \brief File parsing support functions \ingroup libgerbv */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_MMAN_H #include #endif #include #include #include "common.h" #include "gerbv.h" #include "gerb_file.h" /* DEBUG printing. #define DEBUG 1 in config.h to use this fcn. */ #define dprintf if(DEBUG) printf gerb_file_t * gerb_fopen(char const * filename) { gerb_file_t *fd; struct stat statinfo; dprintf("---> Entering gerb_fopen, filename = %s\n", filename); #ifdef HAVE_SYS_MMAN_H fd = g_new(gerb_file_t, 1); if (fd == NULL) { return NULL; } dprintf(" Doing fopen\n"); fd->fd = fopen(filename, "r"); if (fd->fd == NULL) { g_free(fd); return NULL; } dprintf(" Doing fstat\n"); fd->ptr = 0; fd->fileno = fileno(fd->fd); if (fstat(fd->fileno, &statinfo) < 0) { fclose(fd->fd); g_free(fd); return NULL; } dprintf(" Checking S_ISREG\n"); if (!S_ISREG(statinfo.st_mode)) { fclose(fd->fd); g_free(fd); errno = EISDIR; return NULL; } dprintf(" Checking statinfo.st_size\n"); if ((int)statinfo.st_size == 0) { fclose(fd->fd); g_free(fd); errno = EIO; /* More compatible with the world outside Linux */ return NULL; } dprintf(" Doing mmap\n"); fd->datalen = (int)statinfo.st_size; fd->data = (char *)mmap(0, statinfo.st_size, PROT_READ, MAP_PRIVATE, fd->fileno, 0); if(fd->data == MAP_FAILED) { fclose(fd->fd); g_free(fd); fd = NULL; } #else /* all systems without mmap, not only MINGW32 */ fd = g_new(gerb_file_t); if (fd == NULL) { return NULL; } /* fopen() can't open files with non ASCII filenames on windows */ fd->fd = g_fopen(filename, "rb"); if (fd->fd == NULL) { g_free(fd); return NULL; } fd->ptr = 0; fd->fileno = fileno(fd->fd); if (fstat(fd->fileno, &statinfo) < 0) { fclose(fd->fd); g_free(fd); return NULL; } if (!S_ISREG(statinfo.st_mode)) { fclose(fd->fd); g_free(fd); errno = EISDIR; return NULL; } if ((int)statinfo.st_size == 0) { fclose(fd->fd); g_free(fd); errno = EIO; /* More compatible with the world outside Linux */ return NULL; } fd->datalen = (int)statinfo.st_size; fd->data = calloc(1, statinfo.st_size + 1); if (fd->data == NULL) { fclose(fd->fd); g_free(fd); return NULL; } if (fread((void*)fd->data, 1, statinfo.st_size, fd->fd) != statinfo.st_size) { fclose(fd->fd); g_free(fd->data); g_free(fd); return NULL; } rewind (fd->fd); #endif dprintf("<--- Leaving gerb_fopen\n"); return fd; } /* gerb_fopen */ int gerb_fgetc(gerb_file_t *fd) { if (fd->ptr >= fd->datalen) return EOF; return (int) fd->data[fd->ptr++]; } /* gerb_fgetc */ int gerb_fgetint(gerb_file_t *fd, int *len) { long int result; char *end; errno = 0; result = strtol(fd->data + fd->ptr, &end, 10); if (errno) { GERB_COMPILE_ERROR(_("Failed to read integer")); return 0; } if (len) { *len = end - (fd->data + fd->ptr); } fd->ptr = end - fd->data; if (len && (result < 0)) *len -= 1; return (int)result; } /* gerb_fgetint */ double gerb_fgetdouble(gerb_file_t *fd) { double result; char *end; errno = 0; result = strtod(fd->data + fd->ptr, &end); if (errno) { GERB_COMPILE_ERROR(_("Failed to read double")); return 0.0; } fd->ptr = end - fd->data; return result; } /* gerb_fgetdouble */ char * gerb_fgetstring(gerb_file_t *fd, char term) { char *strend = NULL; char *newstr; char *i, *iend; int len; iend = fd->data + fd->datalen; for (i = fd->data + fd->ptr; i < iend; i++) { if (*i == term) { strend = i; break; } } if (strend == NULL) return NULL; len = strend - (fd->data + fd->ptr); newstr = (char *)g_malloc(len + 1); if (newstr == NULL) return NULL; strncpy(newstr, fd->data + fd->ptr, len); newstr[len] = '\0'; fd->ptr += len; return newstr; } /* gerb_fgetstring */ void gerb_ungetc(gerb_file_t *fd) { if (fd->ptr) fd->ptr--; return; } /* gerb_ungetc */ void gerb_fclose(gerb_file_t *fd) { if (fd) { #ifdef HAVE_SYS_MMAN_H if (munmap(fd->data, fd->datalen) < 0) GERB_FATAL_ERROR("munmap: %s", strerror(errno)); #else g_free(fd->data); #endif if (fclose(fd->fd) == EOF) GERB_FATAL_ERROR("fclose: %s", strerror(errno)); g_free(fd); } return; } /* gerb_fclose */ char * gerb_find_file(char const * filename, char **paths) { char *curr_path = NULL; char *complete_path = NULL; int i; #ifdef DEBUG if( DEBUG > 0 ) { for (i = 0; paths[i] != NULL; i++) { printf("%s(): paths[%d] = \"%s\"\n", __FUNCTION__, i, paths[i]); } } #endif for (i = 0; paths[i] != NULL; i++) { dprintf("%s(): Try paths[%d] = \"%s\"\n", __FUNCTION__, i, paths[i]); /* * Environment variables start with a $ sign */ if (paths[i][0] == '$') { char *env_name, *env_value, *tmp; int len; /* Extract environment name. Remember we start with a $ */ tmp = strchr(paths[i], G_DIR_SEPARATOR); if (tmp == NULL) len = strlen(paths[i]) - 1; else len = tmp - paths[i] - 1; env_name = (char *)g_malloc(len + 1); if (env_name == NULL) return NULL; strncpy(env_name, (char *)(paths[i] + 1), len); env_name[len] = '\0'; env_value = getenv(env_name); dprintf("%s(): Trying \"%s\" = \"%s\" from the environment\n", __FUNCTION__, env_name, env_value == NULL ? "(null)" : env_value); if (env_value == NULL) { curr_path = NULL; } else { curr_path = (char *)g_malloc(strlen(env_value) + strlen(&paths[i][len + 1]) + 1); if (curr_path == NULL) return NULL; strcpy(curr_path, env_value); strcat(curr_path, &paths[i][len + 1]); g_free(env_name); } } else { curr_path = paths[i]; } if (curr_path != NULL) { /* * Build complete path (inc. filename) and check if file exists. */ complete_path = (char *)g_malloc(strlen(curr_path) + strlen(filename) + 2); if (complete_path == NULL) return NULL; strcpy(complete_path, curr_path); complete_path[strlen(curr_path)] = G_DIR_SEPARATOR; complete_path[strlen(curr_path) + 1] = '\0'; strncat(complete_path, filename, strlen(filename)); if (paths[i][0] == '$') { g_free(curr_path); curr_path = NULL; } dprintf("%s(): Tring to access \"%s\"\n", __FUNCTION__, complete_path); if (access(complete_path, R_OK) != -1) break; g_free(complete_path); complete_path = NULL; } } if (complete_path == NULL) errno = ENOENT; dprintf("%s(): returning complete_path = \"%s\"\n", __FUNCTION__, complete_path == NULL ? "(null)" : complete_path); return complete_path; } /* gerb_find_file */ gerbv-2.7.0/src/draw.h0000644000175000017500000000303013421555714014405 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file draw.h \brief Header info for the cairo rendering functions and the related selection calculating functions \ingroup gerbv */ #ifndef DRAW_H #define DRAW_H #include #include #include #include #include #endif /* DRAW_H */ /* * Convert a gerber image to a GDK clip mask to be used when creating pixmap */ int draw_image_to_cairo_target (cairo_t *cairoTarget, gerbv_image_t *image, gdouble pixelWidth, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_render_info_t *renderInfo, gboolean allowOptimization, gerbv_user_transformation_t transform, gboolean pixelOutput); gerbv-2.7.0/src/lrealpath.c0000644000175000017500000001150113421555714015421 0ustar carstencarsten/* Libiberty realpath. Like realpath, but more consistent behavior. Based on gdb_realpath from GDB. Copyright 2003 Free Software Foundation, Inc. This file is part of the libiberty library. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ /* @deftypefn Replacement {const char*} lrealpath (const char *@var{name}) Given a pointer to a string containing a pathname, returns a canonical version of the filename. Symlinks will be resolved, and ``.'' and ``..'' components will be simplified. The returned value will be allocated using @code{malloc}, or @code{NULL} will be returned on a memory allocation error. @end deftypefn */ #include "config.h" #include "lrealpath.h" #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_STRING_H #include #endif /* On GNU libc systems the declaration is only visible with _GNU_SOURCE. */ #if defined(HAVE_CANONICALIZE_FILE_NAME) \ && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME) extern char *canonicalize_file_name (const char *); #endif #if defined(HAVE_REALPATH) # if defined (PATH_MAX) # define REALPATH_LIMIT PATH_MAX # else # if defined (MAXPATHLEN) # define REALPATH_LIMIT MAXPATHLEN # endif # endif #else /* cygwin has realpath, so it won't get here. */ # if defined (_WIN32) # define WIN32_LEAN_AND_MEAN # include /* for GetFullPathName */ # endif #endif char * lrealpath (const char *filename) { /* Method 1: The system has a compile time upper bound on a filename path. Use that and realpath() to canonicalize the name. This is the most common case. Note that, if there isn't a compile time upper bound, you want to avoid realpath() at all costs. */ #if defined(REALPATH_LIMIT) { char buf[REALPATH_LIMIT]; const char *rp = realpath (filename, buf); if (rp == NULL) rp = filename; return strdup (rp); } /* REALPATH_LIMIT */ /* Method 2: The host system (i.e., GNU) has the function canonicalize_file_name() which malloc's a chunk of memory and returns that, use that. */ #elif defined(HAVE_CANONICALIZE_FILE_NAME) { char *rp = canonicalize_file_name (filename); if (rp == NULL) return strdup (filename); else return rp; } /* HAVE_CANONICALIZE_FILE_NAME */ /* Method 3: Now we're getting desperate! The system doesn't have a compile time buffer size and no alternative function. Query the OS, using pathconf(), for the buffer limit. Care is needed though, some systems do not limit PATH_MAX (return -1 for pathconf()) making it impossible to pass a correctly sized buffer to realpath() (it could always overflow). On those systems, we skip this. */ #elif defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H) { /* Find out the max path size. */ long path_max = pathconf ("/", _PC_PATH_MAX); if (path_max > 0) { /* PATH_MAX is bounded. */ char *buf, *rp, *ret; buf = (char *) malloc (path_max); if (buf == NULL) return NULL; rp = realpath (filename, buf); ret = strdup (rp ? rp : filename); free (buf); return ret; } else { return NULL; } } /* HAVE_REALPATH && HAVE_UNISTD_H */ /* The MS Windows method. If we don't have realpath, we assume we don't have symlinks and just canonicalize to a Windows absolute path. GetFullPath converts ../ and ./ in relative paths to absolute paths, filling in current drive if one is not given or using the current directory of a specified drive (eg, "E:foo"). It also converts all forward slashes to back slashes. */ #elif defined (_WIN32) { char buf[MAX_PATH]; char* basename; DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename); if (len == 0 || len > MAX_PATH - 1) return strdup (filename); else { /* The file system is case-preserving but case-insensitive, Canonicalize to lowercase, using the codepage associated with the process locale. */ CharLowerBuff (buf, len); return strdup (buf); } } #else /* This system is a lost cause, just duplicate the filename. */ return strdup (filename); #endif } gerbv-2.7.0/src/csv.c0000644000175000017500000002073613421555714014252 0ustar carstencarsten/* csv - read write comma separated value format * Copyright (c) 2003 Michael B. Allen * * The MIT License * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ /* We (Juergen Haas and Tomasz Motylewski) execute our rights given above * to distribute and sublicence this file (csv.c) and csv.h, csv_defines.h * under General Pulic Licence version 2 or any later version. * * This file is derived from libmba : A library of generic C modules * http://www.ioplex.com/~miallen/libmba/dl/libmba-0.8.9.tar.gz */ /** \file csv.c \brief Parsing support functions for the pick and place parser \ingroup libgerbv */ #ifdef HAVE_CONFIG_H #include #endif /* HAVE_CONFIG_H */ #include #include #include #include #include #include #include #include "common.h" #include "gerbv.h" #include "csv.h" #include "csv_defines.h" #define ST_START 1 #define ST_COLLECT 2 #define ST_TAILSPACE 3 #define ST_END_QUOTE 4 #define istspace iswspace struct sinput { FILE *in; const char *src; size_t sn; size_t count; }; struct winput { const wchar_t *src; size_t sn; size_t count; }; static int snextch(struct sinput *in) { int ch; if (in->in) { if ((ch = fgetc(in->in)) == EOF) { if (ferror(in->in)) { GERB_MESSAGE("errno:%d", errno); return -1; } return 0; } } else { if (in->sn == 0) { return 0; } ch = (unsigned char) *(in->src)++; in->sn--; } in->count++; return ch; }/* snextch */ static int wnextch(struct winput *in) { int ch; if (in->sn == 0) { return 0; } ch = *(in->src)++; in->sn--; in->count++; return ch; }/* wnextch */ static int csv_parse_str(struct sinput *in, char *buf, size_t bn, char *row[], int rn, int sep, int flags) { int trim, quotes, ch, state, r, j, t, inquotes; trim = flags & CSV_TRIM; quotes = flags & CSV_QUOTES; state = ST_START; inquotes = 0; ch = r = j = t = 0; memset(row, 0, sizeof(char *) * rn); while (rn && bn && (ch = snextch(in)) > 0) { switch (state) { case ST_START: if (ch != '\n' && ch != sep && isspace(ch)) { if (!trim) { buf[j++] = ch; bn--; t = j; } break; } else if (quotes && ch == '"') { j = t = 0; state = ST_COLLECT; inquotes = 1; break; } state = ST_COLLECT; case ST_COLLECT: if (inquotes) { if (ch == '"') { state = ST_END_QUOTE; break; } } else if (ch == sep || ch == '\n') { row[r++] = buf; rn--; buf[t] = '\0'; bn--; buf += t + 1; j = t = 0; state = ST_START; inquotes = 0; if (ch == '\n') { rn = 0; } break; } else if (quotes && ch == '"') { errno = EILSEQ; GERB_MESSAGE(_("%d: unexpected quote in element"),errno); return -1; } buf[j++] = ch; bn--; if (!trim || isspace(ch) == 0) { t = j; } break; case ST_TAILSPACE: case ST_END_QUOTE: if (ch == sep || ch == '\n') { row[r++] = buf; rn--; buf[j] = '\0'; bn--; buf += j + 1; j = t = 0; state = ST_START; inquotes = 0; if (ch == '\n') { rn = 0; } break; } else if (quotes && ch == '"' && state != ST_TAILSPACE) { buf[j++] = '"'; bn--; /* nope, just an escaped quote */ t = j; state = ST_COLLECT; break; } else if (isspace(ch)) { state = ST_TAILSPACE; break; } errno = EILSEQ; GERB_MESSAGE(_("%d: bad end quote in element"), errno); return -1; } } if (ch <= 0) { /* treat EOF as EOL, so the last record is accepted even when \n is not present. Some users parse strings, not lines */ if(state == ST_TAILSPACE || state == ST_END_QUOTE || (state == ST_COLLECT && ! inquotes)) { row[r++] = buf; rn--; buf[j] = '\0'; bn--; buf += j + 1; inquotes = 0; rn = 0; } else { // AMSG(""); return -1; } } if (bn == 0) { errno = E2BIG; GERB_MESSAGE("E2BIG %d ", errno); return -1; } if (rn) { if (inquotes) { errno = EILSEQ; GERB_MESSAGE("EILSEQ %d ", errno); return -1; } row[r] = buf; buf[t] = '\0'; } // return error if we can't read the minimum number of fields if (r < 4) { return -1; } return in->count; }/* csv_parse_str */ static int csv_parse_wcs(struct winput *in, wchar_t *buf, size_t bn, wchar_t *row[], int rn, wint_t sep, int flags) { int trim, quotes, state, r, j, t, inquotes; wint_t ch; trim = flags & CSV_TRIM; quotes = flags & CSV_QUOTES; state = ST_START; inquotes = 0; ch = r = j = t = 0; memset(row, 0, sizeof(wchar_t *) * rn); while (rn && bn && (ch = wnextch(in)) > 0) { switch (state) { case ST_START: if (ch != L'\n' && ch != sep && iswspace(ch)) { if (!trim) { buf[j++] = ch; bn--; t = j; } break; } else if (quotes && ch == L'"') { j = t = 0; state = ST_COLLECT; inquotes = 1; break; } state = ST_COLLECT; case ST_COLLECT: if (inquotes) { if (ch == L'"') { state = ST_END_QUOTE; break; } } else if (ch == sep || ch == L'\n') { row[r++] = buf; rn--; buf[t] = L'\0'; bn--; buf += t + 1; j = t = 0; state = ST_START; inquotes = 0; if (ch == L'\n') { rn = 0; } break; } else if (quotes && ch == L'"') { errno = EILSEQ; GERB_MESSAGE(_("%d: unexpected quote in element"), errno); return -1; } buf[j++] = ch; bn--; if (!trim || iswspace(ch) == 0) { t = j; } break; case ST_TAILSPACE: case ST_END_QUOTE: if (ch == sep || ch == L'\n') { row[r++] = buf; rn--; buf[j] = L'\0'; bn--; buf += j + 1; j = t = 0; state = ST_START; inquotes = 0; if (ch == L'\n') { rn = 0; } break; } else if (quotes && ch == L'"' && state != ST_TAILSPACE) { buf[j++] = L'"'; bn--; /* nope, just an escaped quote */ t = j; state = ST_COLLECT; break; } else if (iswspace(ch)) { state = ST_TAILSPACE; break; } errno = EILSEQ; GERB_MESSAGE(_("%d: bad end quote in element "), errno); return -1; } } if (ch <= 0) { /* treat EOF as EOL, so the last record is accepted even when \n is not present. Some users parse strings, not lines */ if(state == ST_TAILSPACE || state == ST_END_QUOTE || (state == ST_COLLECT && ! inquotes)) { row[r++] = buf; rn--; buf[j] = L'\0'; bn--; buf += j + 1; inquotes = 0; rn = 0; } else { // AMSG(""); return -1; } } if (bn == 0) { errno = E2BIG; GERB_MESSAGE("%d", errno); return -1; } if (rn) { if (inquotes) { errno = EILSEQ; GERB_MESSAGE("%d", errno); return -1; } row[r] = buf; buf[t] = L'\0'; } return in->count; }/*csv_row_parse_wcs*/ int csv_row_parse_wcs(const wchar_t *src, size_t sn, wchar_t *buf, size_t bn, wchar_t *row[], int rn, int sep, int trim) { struct winput input; input.src = src; input.sn = sn; input.count = 0; return csv_parse_wcs(&input, buf, bn, row, rn, (wint_t)sep, trim); }/*csv_row_parse_wcs*/ int csv_row_parse_str(const char *src, size_t sn, char *buf, size_t bn, char *row[], int rn, int sep, int trim) { struct sinput input; input.in = NULL; input.src = src; input.sn = sn; input.count = 0; return csv_parse_str(&input, buf, bn, row, rn, sep, trim); }/*csv_row_parse_str*/ int csv_row_fread(FILE *in, char *buf, size_t bn, char *row[], int numcols, int sep, int trim) { struct sinput input; input.in = in; input.count = 0; return csv_parse_str(&input, buf, bn, row, numcols, sep, trim); }/*csv_row_fread*/ gerbv-2.7.0/src/Makefile.in0000644000175000017500000011430113423533413015342 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = gerbv$(EXEEXT) @DXF_TRUE@am__append_1 = export-dxf.cpp @WIN32_TRUE@am__append_2 = gerbv_icon.o @WIN32_TRUE@am__append_3 = gerbv_icon.o subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_scmdata_DATA) \ $(pkginclude_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = libgerbv.pc CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(scmdatadir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(pkgincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) libgerbv_la_LIBADD = am__libgerbv_la_SOURCES_DIST = amacro.c amacro.h common.h csv.c csv.h \ csv_defines.h draw-gdk.c draw-gdk.h draw.c draw.h drill.c \ drill.h drill_stats.c drill_stats.h export-drill.c \ export-geda-pcb.c export-image.c export-isel-drill.c \ export-rs274x.c gerb_file.c gerb_file.h gerb_image.c \ gerb_image.h gerb_stats.c gerb_stats.h gerber.c gerber.h \ gerbv.c gerbv.h gerbv_icon.h gettext.h pick-and-place.c \ pick-and-place.h selection.c selection.h tooltable.c \ export-dxf.cpp @DXF_TRUE@am__objects_1 = export-dxf.lo am_libgerbv_la_OBJECTS = amacro.lo csv.lo draw-gdk.lo draw.lo drill.lo \ drill_stats.lo export-drill.lo export-geda-pcb.lo \ export-image.lo export-isel-drill.lo export-rs274x.lo \ gerb_file.lo gerb_image.lo gerb_stats.lo gerber.lo gerbv.lo \ pick-and-place.lo selection.lo tooltable.lo $(am__objects_1) libgerbv_la_OBJECTS = $(am_libgerbv_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libgerbv_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libgerbv_la_LDFLAGS) $(LDFLAGS) -o $@ PROGRAMS = $(bin_PROGRAMS) am_gerbv_OBJECTS = attribute.$(OBJEXT) callbacks.$(OBJEXT) \ dynload.$(OBJEXT) interface.$(OBJEXT) main.$(OBJEXT) \ project.$(OBJEXT) render.$(OBJEXT) scheme.$(OBJEXT) \ table.$(OBJEXT) lrealpath.$(OBJEXT) gerbv_OBJECTS = $(am_gerbv_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libgerbv_la_SOURCES) $(gerbv_SOURCES) DIST_SOURCES = $(am__libgerbv_la_SOURCES_DIST) $(gerbv_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(dist_scmdata_DATA) $(pkgconfig_DATA) HEADERS = $(pkginclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/libgerbv.pc.in \ $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) # public header file(s) pkgincludedir = $(includedir)/${PACKAGE}-${VERSION} ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @datadir@/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # shared library lib_LTLIBRARIES = libgerbv.la pkginclude_HEADERS = gerbv.h # pkg-config data file pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libgerbv.pc libgerbv_la_SOURCES = amacro.c amacro.h common.h csv.c csv.h \ csv_defines.h draw-gdk.c draw-gdk.h draw.c draw.h drill.c \ drill.h drill_stats.c drill_stats.h export-drill.c \ export-geda-pcb.c export-image.c export-isel-drill.c \ export-rs274x.c gerb_file.c gerb_file.h gerb_image.c \ gerb_image.h gerb_stats.c gerb_stats.h gerber.c gerber.h \ gerbv.c gerbv.h gerbv_icon.h gettext.h pick-and-place.c \ pick-and-place.h selection.c selection.h tooltable.c \ $(am__append_1) # libgerbv shared library version. A fairly strict rule should # be followed for when this version is updated. Those rules, # taken from the libtool manual, are as follows # # - Format is current:revision:age # # 1. Start with version information of `0:0:0' for each libtool library. # # 2. Update the version information only immediately before a public # release of your software. More frequent updates are unnecessary, # and only guarantee that the current interface number gets larger faster. # # 3. If the library source code has changed at all since the last update, # then increment revision (`c:r:a' becomes `c:r+1:a'). # # 4. If any interfaces have been added, removed, or changed since the last # update, increment current, and set revision to 0. # # 5. If any interfaces have been added since the last public release, then # increment age. # # 6. If any interfaces have been removed since the last public release, then # set age to 0. # libgerbv_la_LDFLAGS = -version-info 1:9:0 -no-undefined gerbv_SOURCES = \ attribute.c attribute.h \ callbacks.c callbacks.h \ common.h \ dynload.c dynload.h \ icons.h \ interface.c interface.h \ main.c main.h \ opdefines.h \ project.c project.h \ render.c render.h \ scheme-private.h scheme.c scheme.h \ table.c table.h \ lrealpath.c lrealpath.h gerbv_LDADD = libgerbv.la $(am__append_2) gerbv_DEPENDENCIES = libgerbv.la $(am__append_3) BUILT_SOURCES = authors.c bugs.c TXT2CL = sed -e 's;%;%%;g' -e 's;\\;\\\\;g' -e 's;";\\";g' -e 's;^;N_(";g' -e 's;$$;"),;g' -e 's;N_("");"";g' CLEANFILES = authors.c bugs.c EXTRA_DIST = authors.c bugs.c gerbv.rc libgerbv.pc.in run_gerbv.in SCMSUBDIR = scheme scmdatadir = $(pkgdatadir)/${SCMSUBDIR}/ dist_scmdata_DATA = init.scm AM_CFLAGS = -DBACKEND_DIR='"$(scmdatadir)"' -DSCMSUBDIR='"$(SCMSUBDIR)"' DISTCLEANFILES = run_gerbv MOSTLYCLEANFILES = *~ MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in authors.c bugs.c all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): libgerbv.pc: $(top_builddir)/config.status $(srcdir)/libgerbv.pc.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libgerbv.la: $(libgerbv_la_OBJECTS) $(libgerbv_la_DEPENDENCIES) $(EXTRA_libgerbv_la_DEPENDENCIES) $(AM_V_CXXLD)$(libgerbv_la_LINK) -rpath $(libdir) $(libgerbv_la_OBJECTS) $(libgerbv_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list gerbv$(EXEEXT): $(gerbv_OBJECTS) $(gerbv_DEPENDENCIES) $(EXTRA_gerbv_DEPENDENCIES) @rm -f gerbv$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gerbv_OBJECTS) $(gerbv_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amacro.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attribute.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/csv.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/draw-gdk.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/draw.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drill.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drill_stats.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dynload.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-drill.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-dxf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-geda-pcb.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-image.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-isel-drill.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export-rs274x.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gerb_file.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gerb_image.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gerb_stats.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gerber.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gerbv.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lrealpath.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pick-and-place.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/project.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/render.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scheme.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selection.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/table.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tooltable.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_scmdataDATA: $(dist_scmdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_scmdata_DATA)'; test -n "$(scmdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(scmdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(scmdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(scmdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(scmdatadir)" || exit $$?; \ done uninstall-dist_scmdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_scmdata_DATA)'; test -n "$(scmdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(scmdatadir)'; $(am__uninstall_files_from_dir) install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) \ all-local install-binPROGRAMS: install-libLTLIBRARIES installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(scmdatadir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_scmdataDATA install-pkgconfigDATA \ install-pkgincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-libLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_scmdataDATA \ uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ uninstall-pkgincludeHEADERS .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am clean \ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ install-data-am install-dist_scmdataDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ install-pkgconfigDATA install-pkgincludeHEADERS install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-dist_scmdataDATA \ uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ uninstall-pkgincludeHEADERS .PRECIOUS: Makefile # If we are building on win32, then compile in some icons for the # desktop and application toolbar @WIN32_TRUE@gerbv_icon.o : gerbv_icon.ico $(srcdir)/gerbv.rc @WIN32_TRUE@ $(WINDRES) $(srcdir)/gerbv.rc $@ @WIN32_TRUE@gerbv_icon.ico: $(top_srcdir)/desktop/gerbv_icon.ico @WIN32_TRUE@ cp $(top_srcdir)/desktop/gerbv_icon.ico $@ authors.c: $(top_srcdir)/AUTHORS Makefile if test -f $@.tmp ; then rm -f $@.tmp ; fi awk -F: '/^[ \t]*#/ {next}; /^[ \t]*$$/ {next}; {print $$1}' $(top_srcdir)/AUTHORS | ${TXT2CL} > $@.tmp echo '/* Generated from AUTHORS file */' > $@ echo '/*! \file $@' >> $@ echo ' \brief Generated at build time authors list.' >> $@ echo ' \ingroup gerbv' >> $@ echo ' */' >> $@ num=`wc -l $@.tmp | awk '{print $$1 + 1}'` && \ echo "const gchar * authors_string_array[$$num] = {" >> $@ cat $@.tmp >> $@ rm -f $@.tmp echo 'NULL};' >> $@ bugs.c: $(top_srcdir)/BUGS Makefile echo '/* Generated from BUGS file */' > $@ echo '/*! \file $@' >> $@ echo ' \brief Generated at build time bugs list.' >> $@ echo ' \ingroup gerbv' >> $@ echo ' */' >> $@ num=`wc -l $(top_srcdir)/BUGS | awk '{print $$1 + 1}'` && \ echo "const gchar * bugs_string_array[$$num] = {" >> $@ ${TXT2CL} $(top_srcdir)/BUGS >> $@ echo 'NULL};' >> $@ all-local: run_gerbv # create wrapper script that lets you test gerbv prior to installation run_gerbv: $(srcdir)/run_gerbv.in Makefile sed \ -e 's;@SRCDIR@;${abs_srcdir};g' \ -e 's;@BUILDDIR@;${abs_builddir};g' \ $(srcdir)/run_gerbv.in > $@ chmod 755 $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/src/selection.h0000644000175000017500000000264513421555714015450 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * * selection.h -- this file is a part of gerbv. * * Copyright (C) 2014 Sergey Alyoshin * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file selection.h \brief Header info for the selection support functions for libgerbv \ingroup libgerbv */ GArray *selection_new_array (void); guint selection_length (gerbv_selection_info_t *sel_info); void selection_add_item (gerbv_selection_info_t *sel_info, gerbv_selection_item_t *item); gerbv_selection_item_t selection_get_item_by_index ( gerbv_selection_info_t *sel_info, guint idx); void selection_clear_item_by_index ( gerbv_selection_info_t *sel_info, guint idx); void selection_clear (gerbv_selection_info_t *sel_info); gerbv-2.7.0/src/gerbv.rc0000644000175000017500000000003013421555714014727 0ustar carstencarsten1 ICON "gerbv_icon.ico" gerbv-2.7.0/src/export-isel-drill.c0000644000175000017500000001066213421555714017033 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2014 Florian Hirschberg * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-isel-drill.c \brief Functions for exporting gerbv images to ISEL Automation NCP file format with drill commands for CNC machines \ingroup libgerbv */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include "gerbv.h" #include "common.h" /* DEBUG printing. #define DEBUG 1 in config.h to use this fcn. */ #define dprintf if(DEBUG) printf #define round(x) floor(x+0.5) gboolean gerbv_export_isel_drill_file_from_image (const gchar *filename, gerbv_image_t *inputImage, gerbv_user_transformation_t *transform) { FILE *fd; GArray *apertureTable = g_array_new(FALSE,FALSE,sizeof(int)); gerbv_net_t *currentNet; /* force gerbv to output decimals as dots (not commas for other locales) */ setlocale(LC_NUMERIC, "C"); if ((fd = g_fopen(filename, "w")) == NULL) { GERB_COMPILE_ERROR(_("Can't open file for writing: %s"), filename); return FALSE; } /* duplicate the image, cleaning it in the process */ gerbv_image_t *image = gerbv_image_duplicate_image (inputImage, transform); /* write header info */ fprintf(fd, "IMF_PBL_V1.0\r\n" "\r\n" "; Please change this parameters to your needs\r\n" "; Don't forget to change the drill depth to\r\n" "; your PCB thickness\r\n" "\r\n" "; The normal movement velocity in 1/1000 mm/s\r\n" "VEL 5000\r\n" "\r\n" "; The fast movement velocity in 1/1000 mm/s\r\n" "FASTVEL 10000\r\n" "; The safety height in mm over the PCB for movement\r\n" "\r\n" "DRILLDEF S2000\r\n" "\r\n" "; Drill velocity of downwards movement in 1/1000 mm/s\r\n" "\r\n" "DRILLDEF V1000\r\n" "\r\n" "; The drill depth in 1/1000 mm\r\n" "\r\n" "DRILLDEF D1800 ; 1.5mm material + 0.3mm break through\r\n" "\r\n" "; DO NOT CHANGE THESE PARAMETERS!!\r\n" "\r\n" "DRILLDEF C1 P0\r\n" "\r\n"); /* define all apertures */ gerbv_aperture_t *currentAperture; gint i; /* the image should already have been cleaned by a duplicate_image call, so we can safely assume the aperture range is correct */ for (i=APERTURE_MIN; iaperture[i]; if (!currentAperture) continue; switch (currentAperture->type) { case GERBV_APTYPE_CIRCLE: /* add the "approved" aperture to our valid list */ fprintf(fd, "; TOOL %d - Diameter %1.3f mm\r\n", i + 1, COORD2MMS(currentAperture->parameter[0])); g_array_append_val (apertureTable, i); break; default: break; } } /* write rest of image */ for (i=0; ilen; i++) { int currentAperture=g_array_index (apertureTable, int, i); /* write tool change */ fprintf(fd, "GETTOOL %d\r\n",currentAperture+1); /* run through all nets and look for drills using this aperture */ for (currentNet = image->netlist; currentNet; currentNet = currentNet->next) { if (currentNet->aperture != currentAperture) continue; switch (currentNet->aperture_state) { case GERBV_APERTURE_STATE_FLASH: { long xVal,yVal; xVal = (long) round(COORD2MMS(currentNet->stop_x)*1e3); yVal = (long) round(COORD2MMS(currentNet->stop_y)*1e3); fprintf(fd, "DRILL X%06ld Y%06ld\r\n", xVal, yVal); break; } default: GERB_COMPILE_WARNING( _("Skipped to export of unsupported state %d " "interpolation \"%s\""), currentNet->aperture_state, gerbv_interpolation_name( currentNet->interpolation)); } } } g_array_free (apertureTable, TRUE); /* write footer */ fprintf(fd, "PROGEND\r\n"); gerbv_destroy_image (image); fclose(fd); /* return to the default locale */ setlocale(LC_NUMERIC, ""); return TRUE; } gerbv-2.7.0/src/drill.h0000644000175000017500000001064013421555714014563 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * drill.h * Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file drill.h \brief Header info for the Excellon drill parsing functions \ingroup libgerbv */ #ifndef DRILL_H #define DRILL_H #ifdef __cplusplus extern "C" { #endif #include #include #include "gerb_image.h" #include "gerb_file.h" #define TOOL_MIN 1 /* T00 code is reserved for unload tool command */ #define TOOL_MAX 9999 gerbv_image_t *parse_drillfile(gerb_file_t *fd, gerbv_HID_Attribute *attr_list, int n_attr, int reload); gboolean drill_file_p(gerb_file_t *fd, gboolean *returnFoundBinary); /* NOTE: keep drill_g_code_t in actual G code order. */ typedef enum { DRILL_G_UNKNOWN = -1, DRILL_G_ROUT = 0, /* Route mode */ DRILL_G_LINEARMOVE, /* Linear (straight line) mode */ DRILL_G_CWMOVE, /* Circular CW mode */ DRILL_G_CCWMOVE, /* Circular CCW mode */ DRILL_G_VARIABLEDWELL, /* Variable dwell */ DRILL_G_DRILL, /* Drill mode */ DRILL_G_OVERRIDETOOLSPEED = 7, /* Override current tool feed or speed */ DRILL_G_ROUTCIRCLE = 32, /* Routed circle canned cycle CW */ DRILL_G_ROUTCIRCLECCW, /* Routed circle canned cycle CCW */ DRILL_G_VISTOOL, /* Select vision tool */ DRILL_G_VISSINGLEPOINTOFFSET, /* Single point vision offset */ DRILL_G_VISMULTIPOINTTRANS, /* Multipoint vision translation */ DRILL_G_VISCANCEL, /* Cancel vision translation or offset */ DRILL_G_VISCORRHOLEDRILL, /* Vision corrected single hole drilling */ DRILL_G_VISAUTOCALIBRATION, /* Vision system autocalibration */ DRILL_G_CUTTERCOMPOFF, /* Cutter compensation off */ DRILL_G_CUTTERCOMPLEFT, /* Cutter compensation left */ DRILL_G_CUTTERCOMPRIGHT, /* Cutter compensation right */ DRILL_G_VISSINGLEPOINTOFFSETREL = 45, /* Single point vision offset relative to G35 or G36 */ DRILL_G_VISMULTIPOINTTRANSREL, /* Multipoint vision translation relative to G35 or G36 */ DRILL_G_VISCANCELREL, /* Cancel vision translation or offset from G45 or G46 */ DRILL_G_VISCORRHOLEDRILLREL, /* Vision corrected single hole drilling relative to G35 or G36 */ DRILL_G_PACKDIP2 = 81,/* Dual in line package, same to G82 in Format2 */ DRILL_G_PACKDIP, /* Dual in line package */ DRILL_G_PACK8PINL, /* Eight pin L pack */ DRILL_G_CIRLE, /* Canned circle */ DRILL_G_SLOT, /* Canned slot */ DRILL_G_ROUTSLOT = 87, /* Routed slot canned cycle */ DRILL_G_ABSOLUTE = 90, /* Absolute input mode */ DRILL_G_INCREMENTAL, /* Incremental input mode */ DRILL_G_ZEROSET = 93, /* Sets work zero relative to absolute zero */ } drill_g_code_t; /* NOTE: keep drill_m_code_t in actual M code order. */ typedef enum { DRILL_M_UNKNOWN = -1, DRILL_M_END = 0, DRILL_M_PATTERNEND, DRILL_M_REPEATPATTERNOFFSET, DRILL_M_STOPOPTIONAL = 6, DRILL_M_SANDREND = 8, /* Step and repeat */ DRILL_M_STOPINSPECTION, DRILL_M_ZAXISROUTEPOSITIONDEPTHCTRL = 14, DRILL_M_ZAXISROUTEPOSITION, DRILL_M_RETRACTCLAMPING, DRILL_M_RETRACTNOCLAMPING, DRILL_M_TOOLTIPCHECK, DRILL_M_PATTERN = 25, DRILL_M_ENDREWIND = 30, DRILL_M_MESSAGELONG = 45, DRILL_M_MESSAGE = 47, DRILL_M_HEADER, DRILL_M_VISANDRPATTERN = 50, /* Visual step and repeat */ DRILL_M_VISANDRPATTERNREWIND, DRILL_M_VISANDRPATTERNOFFSETCOUNTERCTRL, DRILL_M_REFSCALING = 60, /* Reference scaling */ DRILL_M_REFSCALINGEND, DRILL_M_PECKDRILLING, DRILL_M_PECKDRILLINGEND, DRILL_M_SWAPAXIS = 70, DRILL_M_METRIC, DRILL_M_IMPERIAL, DRILL_M_MIRRORX = 80, DRILL_M_MIRRORY = 90, DRILL_M_HEADEREND = 95, DRILL_M_CANNEDTEXTX = 97, DRILL_M_CANNEDTEXTY, DRILL_M_USERDEFPATTERN, } drill_m_code_t; const char *drill_g_code_name(drill_g_code_t g_code); const char *drill_m_code_name(drill_m_code_t m_code); #ifdef __cplusplus } #endif #endif /* DRILL_H */ gerbv-2.7.0/src/draw-gdk.h0000644000175000017500000000275013421555714015160 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file draw-gdk.h \brief Header info for the GDK rendering functions \ingroup libgerbv */ #ifndef DRAW_GDK_H #define DRAW_GDK_H #include /* Default mouse cursor. Perhaps redefine this to a variable later? */ #define GERBV_DEF_CURSOR NULL /* * Convert a gerber image to a GDK clip mask to be used when creating pixmap */ int draw_gdk_image_to_pixmap(GdkPixmap **pixmap, gerbv_image_t *image, double scale, double trans_x, double trans_y, enum draw_mode drawMode, gerbv_selection_info_t *selectionInfo, gerbv_render_info_t *renderInfo, gerbv_user_transformation_t transform); #endif /* DRAW_GDK_H */ gerbv-2.7.0/src/attribute.h0000644000175000017500000000256413421555714015466 0ustar carstencarsten/* * COPYRIGHT * * gEDA - GNU Electronic Design Automation * This is a part of gerbv * * Copyright (C) 2008 Dan McMahill * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /** \file attribute.h \brief Dynamic GUI window creation header info \ingroup gerbv */ #ifndef ATTRIBUTE_H #define ATTRIBUTE_H #include "gerbv.h" #ifdef __cplusplus extern "C" { #endif int attribute_interface_dialog (gerbv_HID_Attribute *, int, gerbv_HID_Attr_Val *, const char *,const char *); void attribute_merge (gerbv_HID_Attribute *, int, gerbv_HID_Attribute *, int); #ifdef __cplusplus } #endif #endif /* ATTRIBUTE_H */ gerbv-2.7.0/src/opdefines.h0000644000175000017500000005355513421555714015445 0ustar carstencarsten/** \file opdefines.h \brief More support data for the TinyScheme parser \ingroup gerbv */ _OP_DEF(opexe_0, "load", 1, 1, TST_STRING, OP_LOAD ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_T0LVL ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_T1LVL ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_READ_INTERNAL ) _OP_DEF(opexe_0, "gensym", 0, 0, 0, OP_GENSYM ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_VALUEPRINT ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_EVAL ) #if USE_TRACING _OP_DEF(opexe_0, 0, 0, 0, 0, OP_REAL_EVAL ) #endif _OP_DEF(opexe_0, 0, 0, 0, 0, OP_E0ARGS ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_E1ARGS ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_APPLY ) #if USE_TRACING _OP_DEF(opexe_0, 0, 0, 0, 0, OP_REAL_APPLY ) _OP_DEF(opexe_0, "tracing", 1, 1, TST_NATURAL, OP_TRACING ) #endif _OP_DEF(opexe_0, 0, 0, 0, 0, OP_DOMACRO ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LAMBDA ) _OP_DEF(opexe_0, "make-closure", 1, 2, TST_PAIR TST_ENVIRONMENT, OP_MKCLOSURE ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_QUOTE ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_DEF0 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_DEF1 ) _OP_DEF(opexe_0, "defined?", 1, 2, TST_SYMBOL TST_ENVIRONMENT, OP_DEFP ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_BEGIN ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_IF0 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_IF1 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_SET0 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_SET1 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET0 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET1 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET2 ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET0AST ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET1AST ) _OP_DEF(opexe_0, 0, 0, 0, 0, OP_LET2AST ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_LET0REC ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_LET1REC ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_LET2REC ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_COND0 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_COND1 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_DELAY ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_AND0 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_AND1 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_OR0 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_OR1 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_C0STREAM ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_C1STREAM ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_MACRO0 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_MACRO1 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_CASE0 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_CASE1 ) _OP_DEF(opexe_1, 0, 0, 0, 0, OP_CASE2 ) _OP_DEF(opexe_1, "eval", 1, 2, TST_ANY TST_ENVIRONMENT, OP_PEVAL ) _OP_DEF(opexe_1, "apply", 1, INF_ARG, TST_NONE, OP_PAPPLY ) _OP_DEF(opexe_1, "call-with-current-continuation", 1, 1, TST_NONE, OP_CONTINUATION ) #if USE_MATH _OP_DEF(opexe_2, "inexact->exact", 1, 1, TST_NUMBER, OP_INEX2EX ) _OP_DEF(opexe_2, "exp", 1, 1, TST_NUMBER, OP_EXP ) _OP_DEF(opexe_2, "log", 1, 1, TST_NUMBER, OP_LOG ) _OP_DEF(opexe_2, "sin", 1, 1, TST_NUMBER, OP_SIN ) _OP_DEF(opexe_2, "cos", 1, 1, TST_NUMBER, OP_COS ) _OP_DEF(opexe_2, "tan", 1, 1, TST_NUMBER, OP_TAN ) _OP_DEF(opexe_2, "asin", 1, 1, TST_NUMBER, OP_ASIN ) _OP_DEF(opexe_2, "acos", 1, 1, TST_NUMBER, OP_ACOS ) _OP_DEF(opexe_2, "atan", 1, 2, TST_NUMBER, OP_ATAN ) _OP_DEF(opexe_2, "sqrt", 1, 1, TST_NUMBER, OP_SQRT ) _OP_DEF(opexe_2, "expt", 2, 2, TST_NUMBER, OP_EXPT ) _OP_DEF(opexe_2, "floor", 1, 1, TST_NUMBER, OP_FLOOR ) _OP_DEF(opexe_2, "ceiling", 1, 1, TST_NUMBER, OP_CEILING ) _OP_DEF(opexe_2, "truncate", 1, 1, TST_NUMBER, OP_TRUNCATE ) _OP_DEF(opexe_2, "round", 1, 1, TST_NUMBER, OP_ROUND ) #endif _OP_DEF(opexe_2, "+", 0, INF_ARG, TST_NUMBER, OP_ADD ) _OP_DEF(opexe_2, "-", 1, INF_ARG, TST_NUMBER, OP_SUB ) _OP_DEF(opexe_2, "*", 0, INF_ARG, TST_NUMBER, OP_MUL ) _OP_DEF(opexe_2, "/", 1, INF_ARG, TST_NUMBER, OP_DIV ) _OP_DEF(opexe_2, "quotient", 1, INF_ARG, TST_INTEGER, OP_INTDIV ) _OP_DEF(opexe_2, "remainder", 2, 2, TST_INTEGER, OP_REM ) _OP_DEF(opexe_2, "modulo", 2, 2, TST_INTEGER, OP_MOD ) _OP_DEF(opexe_2, "car", 1, 1, TST_PAIR, OP_CAR ) _OP_DEF(opexe_2, "cdr", 1, 1, TST_PAIR, OP_CDR ) _OP_DEF(opexe_2, "cons", 2, 2, TST_NONE, OP_CONS ) _OP_DEF(opexe_2, "set-car!", 2, 2, TST_PAIR TST_ANY, OP_SETCAR ) _OP_DEF(opexe_2, "set-cdr!", 2, 2, TST_PAIR TST_ANY, OP_SETCDR ) _OP_DEF(opexe_2, "char->integer", 1, 1, TST_CHAR, OP_CHAR2INT ) _OP_DEF(opexe_2, "integer->char", 1, 1, TST_NATURAL, OP_INT2CHAR ) _OP_DEF(opexe_2, "char-upcase", 1, 1, TST_CHAR, OP_CHARUPCASE ) _OP_DEF(opexe_2, "char-downcase", 1, 1, TST_CHAR, OP_CHARDNCASE ) _OP_DEF(opexe_2, "symbol->string", 1, 1, TST_SYMBOL, OP_SYM2STR ) _OP_DEF(opexe_2, "atom->string", 1, 1, TST_ANY, OP_ATOM2STR ) _OP_DEF(opexe_2, "string->symbol", 1, 1, TST_STRING, OP_STR2SYM ) _OP_DEF(opexe_2, "string->atom", 1, 1, TST_STRING, OP_STR2ATOM ) _OP_DEF(opexe_2, "make-string", 1, 2, TST_NATURAL TST_CHAR, OP_MKSTRING ) _OP_DEF(opexe_2, "string-length", 1, 1, TST_STRING, OP_STRLEN ) _OP_DEF(opexe_2, "string-ref", 2, 2, TST_STRING TST_NATURAL, OP_STRREF ) _OP_DEF(opexe_2, "string-set!", 3, 3, TST_STRING TST_NATURAL TST_CHAR, OP_STRSET ) _OP_DEF(opexe_2, "string-append", 0, INF_ARG, TST_STRING, OP_STRAPPEND ) _OP_DEF(opexe_2, "substring", 2, 3, TST_STRING TST_NATURAL, OP_SUBSTR ) _OP_DEF(opexe_2, "vector", 0, INF_ARG, TST_NONE, OP_VECTOR ) _OP_DEF(opexe_2, "make-vector", 1, 2, TST_NATURAL TST_ANY, OP_MKVECTOR ) _OP_DEF(opexe_2, "vector-length", 1, 1, TST_VECTOR, OP_VECLEN ) _OP_DEF(opexe_2, "vector-ref", 2, 2, TST_VECTOR TST_NATURAL, OP_VECREF ) _OP_DEF(opexe_2, "vector-set!", 3, 3, TST_VECTOR TST_NATURAL TST_ANY, OP_VECSET ) _OP_DEF(opexe_3, "not", 1, 1, TST_NONE, OP_NOT ) _OP_DEF(opexe_3, "boolean?", 1, 1, TST_NONE, OP_BOOLP ) _OP_DEF(opexe_3, "eof-object?", 1, 1, TST_NONE, OP_EOFOBJP ) _OP_DEF(opexe_3, "null?", 1, 1, TST_NONE, OP_NULLP ) _OP_DEF(opexe_3, "=", 2, INF_ARG, TST_NUMBER, OP_NUMEQ ) _OP_DEF(opexe_3, "<", 2, INF_ARG, TST_NUMBER, OP_LESS ) _OP_DEF(opexe_3, ">", 2, INF_ARG, TST_NUMBER, OP_GRE ) _OP_DEF(opexe_3, "<=", 2, INF_ARG, TST_NUMBER, OP_LEQ ) _OP_DEF(opexe_3, ">=", 2, INF_ARG, TST_NUMBER, OP_GEQ ) _OP_DEF(opexe_3, "symbol?", 1, 1, TST_ANY, OP_SYMBOLP ) _OP_DEF(opexe_3, "number?", 1, 1, TST_ANY, OP_NUMBERP ) _OP_DEF(opexe_3, "string?", 1, 1, TST_ANY, OP_STRINGP ) _OP_DEF(opexe_3, "integer?", 1, 1, TST_ANY, OP_INTEGERP ) _OP_DEF(opexe_3, "real?", 1, 1, TST_ANY, OP_REALP ) _OP_DEF(opexe_3, "char?", 1, 1, TST_ANY, OP_CHARP ) #if USE_CHAR_CLASSIFIERS _OP_DEF(opexe_3, "char-alphabetic?", 1, 1, TST_CHAR, OP_CHARAP ) _OP_DEF(opexe_3, "char-numeric?", 1, 1, TST_CHAR, OP_CHARNP ) _OP_DEF(opexe_3, "char-whitespace?", 1, 1, TST_CHAR, OP_CHARWP ) _OP_DEF(opexe_3, "char-upper-case?", 1, 1, TST_CHAR, OP_CHARUP ) _OP_DEF(opexe_3, "char-lower-case?", 1, 1, TST_CHAR, OP_CHARLP ) #endif _OP_DEF(opexe_3, "port?", 1, 1, TST_ANY, OP_PORTP ) _OP_DEF(opexe_3, "input-port?", 1, 1, TST_ANY, OP_INPORTP ) _OP_DEF(opexe_3, "output-port?", 1, 1, TST_ANY, OP_OUTPORTP ) _OP_DEF(opexe_3, "procedure?", 1, 1, TST_ANY, OP_PROCP ) _OP_DEF(opexe_3, "pair?", 1, 1, TST_ANY, OP_PAIRP ) _OP_DEF(opexe_3, "list?", 1, 1, TST_ANY, OP_LISTP ) _OP_DEF(opexe_3, "environment?", 1, 1, TST_ANY, OP_ENVP ) _OP_DEF(opexe_3, "vector?", 1, 1, TST_ANY, OP_VECTORP ) _OP_DEF(opexe_3, "eq?", 2, 2, TST_ANY, OP_EQ ) _OP_DEF(opexe_3, "eqv?", 2, 2, TST_ANY, OP_EQV ) _OP_DEF(opexe_4, "force", 1, 1, TST_ANY, OP_FORCE ) _OP_DEF(opexe_4, 0, 0, 0, 0, OP_SAVE_FORCED ) _OP_DEF(opexe_4, "write", 1, 2, TST_ANY TST_OUTPORT, OP_WRITE ) _OP_DEF(opexe_4, "write-char", 1, 2, TST_CHAR TST_OUTPORT, OP_WRITE_CHAR ) _OP_DEF(opexe_4, "display", 1, 2, TST_ANY TST_OUTPORT, OP_DISPLAY ) _OP_DEF(opexe_4, "newline", 0, 1, TST_OUTPORT, OP_NEWLINE ) _OP_DEF(opexe_4, "error", 1, INF_ARG, TST_NONE, OP_ERR0 ) _OP_DEF(opexe_4, 0, 0, 0, 0, OP_ERR1 ) _OP_DEF(opexe_4, "reverse", 1, 1, TST_PAIR, OP_REVERSE ) _OP_DEF(opexe_4, "list*", 1, INF_ARG, TST_NONE, OP_LIST_STAR ) _OP_DEF(opexe_4, "append", 0, INF_ARG, TST_NONE, OP_APPEND ) _OP_DEF(opexe_4, "put", 3, 3, TST_NONE, OP_PUT ) _OP_DEF(opexe_4, "get", 2, 2, TST_NONE, OP_GET ) _OP_DEF(opexe_4, "quit", 0, 1, TST_NUMBER, OP_QUIT ) _OP_DEF(opexe_4, "gc", 0, 0, 0, OP_GC ) _OP_DEF(opexe_4, "gc-verbose", 0, 1, TST_NONE, OP_GCVERB ) _OP_DEF(opexe_4, "new-segment", 0, 1, TST_NUMBER, OP_NEWSEGMENT ) _OP_DEF(opexe_4, "oblist", 0, 0, 0, OP_OBLIST ) _OP_DEF(opexe_4, "current-input-port", 0, 0, 0, OP_CURR_INPORT ) _OP_DEF(opexe_4, "current-output-port", 0, 0, 0, OP_CURR_OUTPORT ) _OP_DEF(opexe_4, "open-input-file", 1, 1, TST_STRING, OP_OPEN_INFILE ) _OP_DEF(opexe_4, "open-output-file", 1, 1, TST_STRING, OP_OPEN_OUTFILE ) _OP_DEF(opexe_4, "open-input-output-file", 1, 1, TST_STRING, OP_OPEN_INOUTFILE ) #if USE_STRING_PORTS _OP_DEF(opexe_4, "open-input-string", 1, 1, TST_STRING, OP_OPEN_INSTRING ) _OP_DEF(opexe_4, "open-output-string", 1, 1, TST_STRING, OP_OPEN_OUTSTRING ) _OP_DEF(opexe_4, "open-input-output-string", 1, 1, TST_STRING, OP_OPEN_INOUTSTRING ) #endif _OP_DEF(opexe_4, "close-input-port", 1, 1, TST_INPORT, OP_CLOSE_INPORT ) _OP_DEF(opexe_4, "close-output-port", 1, 1, TST_OUTPORT, OP_CLOSE_OUTPORT ) _OP_DEF(opexe_4, "interaction-environment", 0, 0, 0, OP_INT_ENV ) _OP_DEF(opexe_4, "current-environment", 0, 0, 0, OP_CURR_ENV ) _OP_DEF(opexe_5, "read", 0, 1, TST_INPORT, OP_READ ) _OP_DEF(opexe_5, "read-char", 0, 1, TST_INPORT, OP_READ_CHAR ) _OP_DEF(opexe_5, "peek-char", 0, 1, TST_INPORT, OP_PEEK_CHAR ) _OP_DEF(opexe_5, "char-ready?", 0, 1, TST_INPORT, OP_CHAR_READY ) _OP_DEF(opexe_5, "set-input-port", 1, 1, TST_INPORT, OP_SET_INPORT ) _OP_DEF(opexe_5, "set-output-port", 1, 1, TST_OUTPORT, OP_SET_OUTPORT ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDSEXPR ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDLIST ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDDOT ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDQUOTE ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDQQUOTE ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDQQUOTEVEC ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDUNQUOTE ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDUQTSP ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_RDVEC ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_P0LIST ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_P1LIST ) _OP_DEF(opexe_5, 0, 0, 0, 0, OP_PVECFROM ) _OP_DEF(opexe_6, "length", 1, 1, TST_LIST, OP_LIST_LENGTH ) _OP_DEF(opexe_6, "assq", 2, 2, TST_NONE, OP_ASSQ ) _OP_DEF(opexe_6, "get-closure-code", 1, 1, TST_NONE, OP_GET_CLOSURE ) _OP_DEF(opexe_6, "closure?", 1, 1, TST_NONE, OP_CLOSUREP ) _OP_DEF(opexe_6, "macro?", 1, 1, TST_NONE, OP_MACROP ) #undef _OP_DEF gerbv-2.7.0/src/table.c0000644000175000017500000001264013421555714014541 0ustar carstencarsten/*! \file table.c \brief GTK widgets functions for table. \ingroup gerbv */ #include #include #include #include "table.h" static gint compare_uint(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer p) { gint sort_col = GPOINTER_TO_INT(p); guint no1, no2; gtk_tree_model_get(model, a, sort_col, &no1, -1); gtk_tree_model_get(model, b, sort_col, &no2, -1); return no1 - no2; } static gint compare_int(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer p) { gint sort_col = GPOINTER_TO_INT(p); gint no1, no2; gtk_tree_model_get(model, a, sort_col, &no1, -1); gtk_tree_model_get(model, b, sort_col, &no2, -1); return no1 - no2; } static gint compare_double(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer p) { gint sort_col = GPOINTER_TO_INT(p); double no1, no2; gtk_tree_model_get(model, a, sort_col, &no1, -1); gtk_tree_model_get(model, b, sort_col, &no2, -1); if (no1 > no2) return 1; if (no1 < no2) return -1; return 0; } static gint compare_str(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer p) { gint sort_col = GPOINTER_TO_INT(p); gchar *str1, *str2; gint ret; /* TODO: rewrite and sort D1 -- D10 */ gtk_tree_model_get(model, a, sort_col, &str1, -1); gtk_tree_model_get(model, b, sort_col, &str2, -1); if (str1 == NULL || str2 == NULL) { if (str1 == NULL && str2 == NULL) return 0; ret = (str1 == NULL) ? -1 : 1; } else { ret = g_utf8_collate(str1, str2); } g_free(str1); g_free(str2); return ret; } /* ... is (char *)title / (GType)type pairs */ struct table *table_new_with_columns(gint col_nums, ...) { struct table *table; GtkTreeViewColumn *column; const char *titles[col_nums]; va_list args; gint i; if (col_nums == 0) return NULL; va_start(args, col_nums); table = g_new(struct table, 1); table->types = g_new(GType, col_nums); for (i = 0; i < col_nums; i++) { titles[i] = va_arg(args, const char *); table->types[i] = va_arg(args, GType); } va_end(args); table->column_nums = col_nums; table->list_store = gtk_list_store_newv(col_nums, table->types); table->widget = gtk_tree_view_new_with_model( GTK_TREE_MODEL(table->list_store)); /* Auto free tree_model at tree_view destruction */ g_object_unref(GTK_TREE_MODEL(table->list_store)); table->renderers = g_new(GtkCellRenderer *, col_nums); for (i = 0; i < col_nums; i++) { table->renderers[i] = gtk_cell_renderer_text_new(); column = gtk_tree_view_column_new(); gtk_tree_view_column_set_title(column, titles[i]); gtk_tree_view_column_pack_start(column, table->renderers[i], FALSE); /* TODO: get "text" attribute by types[i] function? */ gtk_tree_view_column_add_attribute(column, table->renderers[i], "text", i); gtk_tree_view_append_column(GTK_TREE_VIEW(table->widget), column); } return table; } void table_destroy(struct table *table) { gtk_widget_destroy(table->widget); g_free(table->types); g_free(table); } void table_set_sortable(struct table *table) { GtkTreeSortable *sortable = GTK_TREE_SORTABLE(table->list_store); GtkTreeViewColumn *column; gint i, first_sort_col = -1; for (i = 0; i < table->column_nums; i++) { column = gtk_tree_view_get_column( GTK_TREE_VIEW(table->widget), i); switch (table->types[i]) { case G_TYPE_UINT: gtk_tree_sortable_set_sort_func(sortable, i, &compare_uint, GINT_TO_POINTER(i), NULL); if (first_sort_col == -1) first_sort_col = i; break; case G_TYPE_INT: gtk_tree_sortable_set_sort_func(sortable, i, &compare_int, GINT_TO_POINTER(i), NULL); if (first_sort_col == -1) first_sort_col = i; break; case G_TYPE_DOUBLE: gtk_tree_sortable_set_sort_func(sortable, i, &compare_double, GINT_TO_POINTER(i), NULL); if (first_sort_col == -1) first_sort_col = i; break; case G_TYPE_STRING: gtk_tree_sortable_set_sort_func(sortable, i, &compare_str, GINT_TO_POINTER(i), NULL); if (first_sort_col == -1) first_sort_col = i; break; } switch (table->types[i]) { case G_TYPE_UINT: case G_TYPE_INT: case G_TYPE_DOUBLE: case G_TYPE_STRING: gtk_tree_view_column_set_sort_column_id(column, i); } } if (first_sort_col != -1) gtk_tree_sortable_set_sort_column_id(sortable, first_sort_col, GTK_SORT_ASCENDING); } /* Set column alignment: 0.0 -- left, 0.5 -- center, 1.0 -- right */ void table_set_column_align(struct table *table, gint column_num, gfloat align) { g_object_set(G_OBJECT(table->renderers[column_num]), "xalign", align, NULL); } /* ... is values with types as in table_new_with_columns() */ int table_add_row(struct table *table, ...) { GtkTreeIter iter; GValue val; va_list args; gint i; #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init(); #endif va_start(args, table); gtk_list_store_append(table->list_store, &iter); for (i = 0; i < table->column_nums; i++) { memset(&val, 0, sizeof(GValue)); g_value_init(&val, table->types[i]); switch (table->types[i]) { case G_TYPE_STRING: g_value_set_static_string(&val, va_arg(args, const char *)); break; case G_TYPE_INT: g_value_set_int(&val, va_arg(args, int)); break; case G_TYPE_UINT: g_value_set_uint(&val, va_arg(args, unsigned int)); break; case G_TYPE_DOUBLE: g_value_set_double(&val, va_arg(args, double)); break; default: g_assert_not_reached(); } gtk_list_store_set_value(table->list_store, &iter, i, &val); } va_end(args); return 0; } gerbv-2.7.0/src/run_gerbv.in0000644000175000017500000000561013421555714015626 0ustar carstencarsten#!/bin/sh # # This is a wrapper script used to help gerbv find its scheme init file # when testing out gerbv prior to installation. # If the first argument is "-gdb" then run gerbv inside the gdb # debugger. # # Use --g-fatal-warnings to cause gtk-WARNING's to # abort. usage() { cat << EOF $0 - tests out gerbv prior to installation $0 [-gdb] [-h|--help] [--] [gerbv arguments] Options: -gdb - runs gerbv in the GDB debugger -h|--help - displays this message and exits -- - halts all further option processing all additional options are passed down to gerbv. See also: $0 -- --help for information on the gerbv options EOF } do_gdb=no while test $# -gt 0 ; do case $1 in -gdb) do_gdb=yes shift ;; -h|--help) usage exit ;; --) shift break ;; -*) echo "$0: Unknown option $1" echo "See $0 --help for more information." exit 1 ;; *) break ;; esac done # We do this hack because if there is a libgerbv already installed in the # same location as some of the libs like gtk, then we will pick up the # installed libgerbv at runtime instead of the one we just built. This can # lead to extreme frustration when trying to understand why changes to the code # do not change the way the program works! This makes sure we pick up our # newly built libgerbv first. # # This hack came from wcalc. LIBGERBV_DIR=@BUILDDIR@/.libs if test "X${LD_LIBRARY_PATH}" = "X" ; then LD_LIBRARY_PATH=${LIBGERBV_DIR} else LD_LIBRARY_PATH=${LIBGERBV_DIR}:${LD_LIBRARY_PATH} fi export LD_LIBRARY_PATH echo "Set LD_LIBRARY_PATH to ${LD_LIBRARY_PATH}" if test "X${LD_RUN_PATH}" = "X" ; then LD_RUN_PATH=${LIBGERBV_DIR} else LD_RUN_PATH=${LIBGERBV_DIR}:${LD_RUN_PATH} fi export LD_RUN_PATH echo "Set LD_RUN_PATH to ${LD_RUN_PATH}" if test "X${LD_PRELOAD}" = "X" ; then LD_PRELOAD=${LIBGERBV_DIR}/libgerbv.so else LD_PRELOAD=${LIBGERBV_DIR}/libgerbv.so:${LD_PRELOAD} fi export LD_PRELOAD echo "Set LD_PRELOAD to ${LD_PRELOAD}" GERBV=@BUILDDIR@/gerbv mv -f ${GERBV} ${GERBV}.orig sed \ -e 's;LD_LIBRARY_PATH="/;LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/;g' \ -e 's;LD_RUN_PATH="/;LD_RUN_PATH="${LD_RUN_PATH}:/;g' \ ${GERBV}.orig > ${GERBV} chmod 755 ${GERBV} # End of shared lib hack if test $do_gdb = yes ; then # Create a temp directory in a safe manner that is only accessible by us. # This will allow for safe use of temporary files. tmpd=${TMPDIR:-/tmp}/run_gerbv.$$ mkdir -p -m 0700 $tmpd rc=$? if test $rc -ne 0 ; then echo "$0: Unable to create temp directory $tmpd" echo "Either the directory exists already or you do not have permissions" exit 1 fi tmpf=${tmpd}/run_gerbv.gdb echo set args "$@" > $tmpf echo set env GERBV_SCHEMEINIT @SRCDIR@ >> $tmpf exec ../libtool --mode=execute gdb -x $tmpf ${GERBV} rm -f $tmpf rm -fr $tmpd else GERBV_SCHEMEINIT="@SRCDIR@" export GERBV_SCHEMEINIT exec ${GERBV} "$@" fi gerbv-2.7.0/src/gerb_stats.h0000644000175000017500000000407513421555714015617 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * gerbv_stats.h -- a part of gerbv. * * Copyright (C) 2007 Stuart Brorson (sdb@cloud9.net) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file gerb_stats.h \brief Header info for the statistics generating functions for RS274X files \ingroup libgerbv */ #ifndef gerb_stats_H #define gerb_stats_H /* =================== Prototypes ================ */ gerbv_error_list_t *gerbv_stats_new_error_list(void); void gerbv_stats_printf(gerbv_error_list_t *list, gerbv_message_type_t type, int layer, const char *text, ...) __attribute__ ((format (printf, 4, 5))); void gerbv_stats_add_error(gerbv_error_list_t *error_list_in, int layer, const char *error_text, gerbv_message_type_t type); #define gerbv_escape_char(c) \ ((char*)(int[]){gerbv_escape_char_return_int((c))}) int gerbv_escape_char_return_int(char c); gerbv_aperture_list_t *gerbv_stats_new_aperture_list(void); void gerbv_stats_add_aperture(gerbv_aperture_list_t *aperture_list_in, int layer, int number, gerbv_aperture_type_t type, double parameter[5]); void gerbv_stats_add_to_D_list(gerbv_aperture_list_t *D_list_in, int number); int gerbv_stats_increment_D_list_count(gerbv_aperture_list_t *D_list_in, int number, int count, gerbv_error_list_t *error); #endif /* gerb_stats_H */ gerbv-2.7.0/src/lrealpath.h0000644000175000017500000000025713421555714015434 0ustar carstencarsten#ifndef __LREALPATH_H__ #define __LREALPATH_H__ /* A well-defined realpath () that is always compiled in. */ char *lrealpath (const char *); #endif /* __LREALPATH_H__ */ gerbv-2.7.0/src/export-drill.c0000644000175000017500000000664613421555714016110 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2008 Julian Lamb * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file export-drill.c \brief Functions for exporting gerbv images to Excellon drill files \ingroup libgerbv */ #include "gerbv.h" #include #include #include "common.h" #define dprintf if(DEBUG) printf #define round(x) floor(x+0.5) gboolean gerbv_export_drill_file_from_image (const gchar *filename, gerbv_image_t *inputImage, gerbv_user_transformation_t *transform) { FILE *fd; GArray *apertureTable = g_array_new(FALSE, FALSE, sizeof(int)); gerbv_net_t *net; /* force gerbv to output decimals as dots (not commas for other locales) */ setlocale(LC_NUMERIC, "C"); if ((fd = g_fopen(filename, "w")) == NULL) { GERB_COMPILE_ERROR( _("Can't open file for writing: %s"), filename); return FALSE; } /* duplicate the image, cleaning it in the process */ gerbv_image_t *image = gerbv_image_duplicate_image (inputImage, transform); /* write header info */ fprintf(fd, "M48\n"); fprintf(fd, "INCH,TZ\n"); /* define all apertures */ gerbv_aperture_t *aperture; gint i; /* the image should already have been cleaned by a duplicate_image call, so we can safely assume the aperture range is correct */ for (i = APERTURE_MIN; i < APERTURE_MAX; i++) { aperture = image->aperture[i]; if (!aperture) continue; switch (aperture->type) { case GERBV_APTYPE_CIRCLE: fprintf(fd, "T%dC%1.3f\n", i, aperture->parameter[0]); /* add the "approved" aperture to our valid list */ g_array_append_val(apertureTable, i); break; default: break; } } fprintf(fd, "%%\n"); /* write rest of image */ for (i = 0; i < apertureTable->len; i++) { int aperture_idx = g_array_index(apertureTable, int, i); /* write tool change */ fprintf(fd, "T%d\n", aperture_idx); /* run through all nets and look for drills using this aperture */ for (net = image->netlist; net; net = net->next) { if (net->aperture != aperture_idx) continue; switch (net->aperture_state) { case GERBV_APERTURE_STATE_FLASH: fprintf(fd, "X%06ldY%06ld\n", (long)round(net->stop_x * 10000.0), (long)round(net->stop_y * 10000.0)); break; case GERBV_APERTURE_STATE_ON: /* Cut slot */ fprintf(fd, "X%06ldY%06ldG85X%06ldY%06ld\n", (long)round(net->start_x * 10000.0), (long)round(net->start_y * 10000.0), (long)round(net->stop_x * 10000.0), (long)round(net->stop_y * 10000.0)); break; default: break; } } } g_array_free (apertureTable, TRUE); /* write footer */ fprintf(fd, "M30\n\n"); gerbv_destroy_image(image); fclose(fd); /* return to the default locale */ setlocale(LC_NUMERIC, ""); return TRUE; } gerbv-2.7.0/src/callbacks.h0000644000175000017500000002327713421555714015406 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This file is a part of gerbv. * * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file callbacks.h \brief Header info for the GUI callback functions \ingroup gerbv */ enum { CALLBACKS_SAVE_PROJECT_AS, CALLBACKS_SAVE_FILE_PS, CALLBACKS_SAVE_FILE_PDF, CALLBACKS_SAVE_FILE_SVG, CALLBACKS_SAVE_FILE_PNG, CALLBACKS_SAVE_FILE_DXF, CALLBACKS_SAVE_FILE_GEDA_PCB, CALLBACKS_SAVE_FILE_RS274X, CALLBACKS_SAVE_FILE_DRILL, CALLBACKS_SAVE_FILE_RS274XM, CALLBACKS_SAVE_FILE_DRILLM, CALLBACKS_SAVE_LAYER_AS, CALLBACKS_SAVE_FILE_IDRILL } CALLBACKS_SAVE_FILE_TYPE; enum { LAYER_SELECTED = -1, LAYER_ALL_ON = -2, LAYER_ALL_OFF = -3, } toggle_layer; void callbacks_new_project_activate (GtkMenuItem *menuitem, gpointer user_data); void open_project (char *project_filename); void callbacks_open_activate (GtkMenuItem *menuitem, gpointer user_data); void open_files (GSList *filenames); void callbacks_revert_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_save_layer_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_save_project_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_generic_save_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_print_activate (GtkMenuItem *menuitem, gpointer user_data); gboolean callbacks_quit_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_fullscreen_toggled (GtkMenuItem *menuitem, gpointer user_data); void callbacks_show_toolbar_toggled (GtkMenuItem *menuitem, gpointer user_data); void callbacks_show_sidepane_toggled (GtkMenuItem *menuitem, gpointer user_data); void callbacks_show_selection_on_invisible (GtkMenuItem *menuitem, gpointer user_data); void callbacks_show_cross_on_drill_holes (GtkMenuItem *menuitem, gpointer user_data); void callbacks_toggle_layer_visibility_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_zoom_in_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_zoom_out_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_fit_to_window_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_analyze_active_gerbers_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_analyze_active_drill_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_control_gerber_options_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_online_manual_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_about_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_bugs_activate (GtkMenuItem *menuitem, gpointer user_data); gboolean callbacks_window_scroll_event(GtkWidget *widget, GdkEventScroll *event); gboolean callbacks_window_key_release_event (GtkWidget *widget, GdkEventKey *event); gboolean callbacks_window_key_press_event (GtkWidget *widget, GdkEventKey *event); gboolean callbacks_drawingarea_button_release_event (GtkWidget *widget, GdkEventButton *event); gboolean callbacks_drawingarea_button_press_event (GtkWidget *widget, GdkEventButton *event); gboolean callbacks_scrollbar_button_released (GtkWidget *widget, GdkEventButton *event); gboolean callbacks_scrollbar_button_pressed (GtkWidget *widget, GdkEventButton *event); gboolean callbacks_drawingarea_motion_notify_event (GtkWidget *widget, GdkEventMotion *event); gboolean callbacks_drawingarea_configure_event (GtkWidget *widget, GdkEventConfigure *event); gboolean callbacks_drawingarea_expose_event (GtkWidget *widget, GdkEventExpose *event); void callbacks_handle_log_messages(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data); void callbacks_clear_messages_button_clicked (GtkButton *button, gpointer user_data); void callbacks_statusbar_unit_combo_box_changed (GtkComboBox *widget, gpointer user_data); void callbacks_viewmenu_units_changed (GtkCheckMenuItem *widget, gpointer user_data); void callbacks_viewmenu_rendertype_changed (GtkCheckMenuItem *widget, gpointer user_data); void callbacks_sidepane_render_type_combo_box_changed (GtkComboBox *widget, gpointer user_data); void callbacks_layer_tree_visibility_button_toggled (GtkCellRendererToggle *cell_renderer, gchar *path, gpointer user_data); gboolean callbacks_drawingarea_leave_notify_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean callbacks_drawingarea_enter_notify_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); void callbacks_update_statusbar(void); void callbacks_update_statusbar_measured_distance (gdouble dx, gdouble dy); void callbacks_update_layer_tree (void); gboolean callbacks_layer_tree_key_press (GtkWidget *widget, GdkEventKey *event, gpointer user_data); gboolean callbacks_layer_tree_button_press (GtkWidget *widget, GdkEventButton *event, gpointer user_data); gboolean callbacks_file_drop_event (GtkWidget *widget, GdkDragContext *dc, gint x, gint y, GtkSelectionData *data, guint info, guint time, gpointer p); void callbacks_add_layer_button_clicked (GtkButton *button, gpointer user_data); void callbacks_remove_layer_button_clicked (GtkButton *button, gpointer user_data); void callbacks_move_layer_down_menu_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_move_layer_down_button_clicked (GtkButton *button, gpointer user_data); void callbacks_move_layer_up_menu_activate (GtkMenuItem *menuitem, gpointer user_data); void callbacks_move_layer_up_button_clicked (GtkButton *button, gpointer user_data); void callbacks_layer_tree_row_inserted (GtkTreeModel *tree_model, GtkTreePath *path, GtkTreeIter *oIter, gpointer user_data); void callbacks_invert_layer_clicked (GtkButton *button, gpointer user_data); void callbacks_display_object_properties_clicked (GtkButton *button, gpointer user_data); void callbacks_benchmark_clicked (GtkButton *button, gpointer user_data); void callbacks_edit_object_properties_clicked (GtkButton *button, gpointer user_data); void callbacks_move_objects_clicked (GtkButton *button, gpointer user_data); void callbacks_reduce_object_area_clicked (GtkButton *button, gpointer user_data); void callbacks_delete_objects_clicked (GtkButton *button, gpointer user_data); void callbacks_align_files_from_sel_clicked (GtkMenuItem *menu_item, gpointer user_data); void callbacks_change_layer_edit_clicked (GtkButton *button, gpointer user_data); void callbacks_change_layer_color_clicked (GtkButton *button, gpointer user_data); void callbacks_change_background_color_clicked (GtkButton *button, gpointer user_data); void callbacks_reload_layer_clicked (GtkButton *button, gpointer user_data); void callbacks_change_layer_format_clicked (GtkButton *button, gpointer user_data); void callbacks_update_scrollbar_limits (void); void callbacks_update_scrollbar_positions (void); void callbacks_hadjustment_value_changed (GtkAdjustment *adjustment, gpointer user_data); void callbacks_vadjustment_value_changed (GtkAdjustment *adjustment, gpointer user_data); void callbacks_force_expose_event_for_screen (void); void callbacks_change_tool (GtkButton *button, gpointer user_data); void callbacks_switch_to_correct_cursor (void); cairo_surface_t * callbacks_create_window_surface (GtkWidget *widget); void utf8_snprintf(gchar *dst, gsize byte_len, const gchar *fmt, ...); gerbv-2.7.0/src/render.h0000644000175000017500000000426313421555714014740 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * * render.h -- this file is a part of gerbv. * * $Id$ * * Copyright (C) 2007 Stuart Brorson (SDB@cloud9.net) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file render.h \brief Header info for the rendering support functions for gerbv \ingroup gerbv */ #include "gerber.h" gerbv_stats_t *generate_gerber_analysis(void); gerbv_drill_stats_t *generate_drill_analysis(void); void render_recreate_composite_surface (); void render_project_to_cairo_target (cairo_t *cr); void render_zoom_display (gint zoomType, gdouble scaleFactor, gdouble mouseX, gdouble mouseY); void render_calculate_zoom_from_outline(GtkWidget *widget, GdkEventButton *event); void render_draw_selection_box_outline(void); void render_draw_zoom_outline(gboolean centered); void render_toggle_measure_line(void); void render_draw_measure_distance(void); void render_refresh_rendered_image_on_screen (void); void render_remove_selected_objects_belonging_to_layer ( gerbv_selection_info_t *sel_info, gerbv_image_t *image); void render_free_screen_resources (void); enum selection_action { SELECTION_REPLACE = 0, SELECTION_ADD, SELECTION_TOGGLE, }; void render_fill_selection_buffer_from_mouse_click (gint mouseX, gint mouseY, gint activeFileIndex, enum selection_action action); void render_fill_selection_buffer_from_mouse_drag (gint corner1X, gint corner1Y, gint corner2X, gint corner2Y, gint activeFileIndex, enum selection_action action); extern gerbv_render_info_t screenRenderInfo; gerbv-2.7.0/src/pick-and-place.h0000644000175000017500000000426413421555714016232 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file pick-and-place.h \brief Header info for the PNP (pick-and-place) parsing functions \ingroup libgerbv */ #ifndef GERBV_LAYERTYPE_PICKANDPLACE_H #define GERBV_LAYERTYPE_PICKANDPLACE_H #define MAXL 200 typedef struct gerb_transf { double r_mat[2][2]; double scale; double offset[2]; } gerbv_transf_t; enum e_footprint { PART_SHAPE_UNKNOWN = 0, /* drawn as circle with line*/ PART_SHAPE_RECTANGLE = 1, /* rectangle with one side marked*/ PART_SHAPE_STD = 2 /* rectangle with one corner marked*/ }; typedef struct { char designator[MAXL]; char footprint[MAXL]; double mid_x; double mid_y; double ref_x; double ref_y; double pad_x; double pad_y; char layer[MAXL]; /*T is top B is bottom*/ double rotation; char comment[MAXL]; int shape; double width; double length; unsigned int nuf_push; /* Nuf pushes to estimate stack size */ } PnpPartData; GArray *pick_and_place_parse_file (gerb_file_t *fd); gerbv_image_t *pick_and_place_parse_file_to_image (gerb_file_t *fd); void pick_and_place_parse_file_to_images (gerb_file_t *fd, gerbv_image_t **topImage, gerbv_image_t **bottomImage); gboolean pick_and_place_check_file_type(gerb_file_t *fd, gboolean *returnFoundBinary); #endif /* GERBV_LAYERTYPE_PICKANDPLACE_H */ gerbv-2.7.0/src/amacro.c0000644000175000017500000002074713421555714014723 0ustar carstencarsten/* * gEDA - GNU Electronic Design Automation * This files is a part of gerbv. * * Copyright (C) 2000-2002 Stefan Petersen (spe@stacken.kth.se) * * $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ /** \file amacro.c \brief Aperture macro parsing functions \ingroup libgerbv */ #include #include #include #include "gerbv.h" #include "gerb_file.h" #include "amacro.h" /* * Allocates a new instruction structure */ static gerbv_instruction_t * new_instruction(void) { gerbv_instruction_t *instruction; instruction = (gerbv_instruction_t *)malloc(sizeof(gerbv_instruction_t)); if (instruction == NULL) { free(instruction); return NULL; } memset(instruction, 0, sizeof(gerbv_instruction_t)); return instruction; } /* new_instruction */ /* * Allocates a new amacro structure */ static gerbv_amacro_t * new_amacro(void) { gerbv_amacro_t *amacro; amacro = (gerbv_amacro_t *)malloc(sizeof(gerbv_amacro_t)); if (amacro == NULL) { free(amacro); return NULL; } memset(amacro, 0, sizeof(gerbv_amacro_t)); return amacro; } /* new_amacro */ /* * Defines precedence of operators used in aperture macros */ static int math_op_prec(gerbv_opcodes_t math_op) { switch (math_op) { case GERBV_OPCODE_ADD: case GERBV_OPCODE_SUB: return 1; case GERBV_OPCODE_MUL: case GERBV_OPCODE_DIV: return 2; default: ; } return 0; } /* math_op_prec */ /* * Operations on the operator stack. The operator stack is used in the * "shunting yard algorithm" to achive precedence. * Aperture macros has a very limited set of operators and matching precedence, * so it is solved by a small array and an index to that array. */ #define MATH_OP_STACK_SIZE 2 #define MATH_OP_PUSH(val) math_op[math_op_idx++] = val #define MATH_OP_POP math_op[--math_op_idx] #define MATH_OP_TOP (math_op_idx > 0)?math_op[math_op_idx - 1]:GERBV_OPCODE_NOP #define MATH_OP_EMPTY (math_op_idx == 0) /* * Parses the definition of an aperture macro */ gerbv_amacro_t * parse_aperture_macro(gerb_file_t *fd) { gerbv_amacro_t *amacro; gerbv_instruction_t *ip = NULL; int primitive = 0, c, found_primitive = 0; gerbv_opcodes_t math_op[MATH_OP_STACK_SIZE]; int math_op_idx = 0; int comma = 0; /* Just read an operator (one of '*+X/) */ int neg = 0; /* negative numbers succeding , */ unsigned char continueLoop = 1; int equate = 0; amacro = new_amacro(); memset(math_op, GERBV_OPCODE_NOP, sizeof(math_op)); /* * Get macroname */ amacro->name = gerb_fgetstring(fd, '*'); c = gerb_fgetc(fd); /* skip '*' */ if (c == EOF) { continueLoop = 0; } /* * Since I'm lazy I have a dummy head. Therefore the first * instruction in all programs will be NOP. */ amacro->program = new_instruction(); ip = amacro->program; while(continueLoop) { c = gerb_fgetc(fd); switch (c) { case '$': if (found_primitive) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = GERBV_OPCODE_PPUSH; amacro->nuf_push++; ip->data.ival = gerb_fgetint(fd, NULL); comma = 0; } else { equate = gerb_fgetint(fd, NULL); } break; case '*': while (!MATH_OP_EMPTY) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } /* * Check is due to some gerber files has spurious empty lines. * (EagleCad of course). */ if (found_primitive) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; if (equate) { ip->opcode = GERBV_OPCODE_PPOP; ip->data.ival = equate; } else { ip->opcode = GERBV_OPCODE_PRIM; ip->data.ival = primitive; } equate = 0; primitive = 0; found_primitive = 0; } break; case '=': if (equate) { found_primitive = 1; } break; case ',': if (!found_primitive) { found_primitive = 1; break; } while (!MATH_OP_EMPTY) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } comma = 1; break; case '+': while ((!MATH_OP_EMPTY) && (math_op_prec(MATH_OP_TOP) >= math_op_prec(GERBV_OPCODE_ADD))) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } MATH_OP_PUSH(GERBV_OPCODE_ADD); comma = 1; break; case '-': if (comma) { neg = 1; comma = 0; break; } while((!MATH_OP_EMPTY) && (math_op_prec(MATH_OP_TOP) >= math_op_prec(GERBV_OPCODE_SUB))) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } MATH_OP_PUSH(GERBV_OPCODE_SUB); break; case '/': while ((!MATH_OP_EMPTY) && (math_op_prec(MATH_OP_TOP) >= math_op_prec(GERBV_OPCODE_DIV))) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } MATH_OP_PUSH(GERBV_OPCODE_DIV); comma = 1; break; case 'X': case 'x': while ((!MATH_OP_EMPTY) && (math_op_prec(MATH_OP_TOP) >= math_op_prec(GERBV_OPCODE_MUL))) { ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = MATH_OP_POP; } MATH_OP_PUSH(GERBV_OPCODE_MUL); comma = 1; break; case '0': /* * Comments in aperture macros are a definition starting with * zero and ends with a '*' */ if (!found_primitive && (primitive == 0)) { /* Comment continues 'til next *, just throw it away */ gerb_fgetstring(fd, '*'); c = gerb_fgetc(fd); /* Read the '*' */ break; } case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '.': /* * First number in an aperture macro describes the primitive * as a numerical value */ if (!found_primitive) { primitive = (primitive * 10) + (c - '0'); break; } (void)gerb_ungetc(fd); ip->next = new_instruction(); /* XXX Check return value */ ip = ip->next; ip->opcode = GERBV_OPCODE_PUSH; amacro->nuf_push++; ip->data.fval = gerb_fgetdouble(fd); if (neg) ip->data.fval = -ip->data.fval; neg = 0; comma = 0; break; case '%': gerb_ungetc(fd); /* Must return with % first in string since the main parser needs it */ return amacro; default : /* Whitespace */ break; } if (c == EOF) { continueLoop = 0; } } free (amacro); return NULL; } void free_amacro(gerbv_amacro_t *amacro) { gerbv_amacro_t *am1, *am2; gerbv_instruction_t *instr1, *instr2; am1 = amacro; while (am1 != NULL) { free(am1->name); am1->name = NULL; instr1 = am1->program; while (instr1 != NULL) { instr2 = instr1; instr1 = instr1->next; free(instr2); instr2 = NULL; } am2 = am1; am1 = am1->next; free(am2); am2 = NULL; } return; } /* free_amacro */ void print_program(gerbv_amacro_t *amacro) { gerbv_instruction_t *ip; printf("Macroname [%s] :\n", amacro->name); for (ip = amacro->program ; ip != NULL; ip = ip->next) { switch(ip->opcode) { case GERBV_OPCODE_NOP: printf(" NOP\n"); break; case GERBV_OPCODE_PUSH: printf(" PUSH %f\n", ip->data.fval); break; case GERBV_OPCODE_PPOP: printf(" PPOP %d\n", ip->data.ival); break; case GERBV_OPCODE_PPUSH: printf(" PPUSH %d\n", ip->data.ival); break; case GERBV_OPCODE_ADD: printf(" ADD\n"); break; case GERBV_OPCODE_SUB: printf(" SUB\n"); break; case GERBV_OPCODE_MUL: printf(" MUL\n"); break; case GERBV_OPCODE_DIV: printf(" DIV\n"); break; case GERBV_OPCODE_PRIM: printf(" PRIM %d\n", ip->data.ival); break; default : printf(" ERROR!\n"); break; } fflush(stdout); } } /* print_program */ gerbv-2.7.0/autogen.sh0000755000175000017500000000572613421555713014526 0ustar carstencarsten#!/bin/sh # # a leftover cache from a different version will cause no end of headaches rm -fr autom4te.cache ############################################################################ # # autopoint (gettext) # echo "Checking autopoint version..." ver=`autopoint --version | awk '{print $NF; exit}'` ap_maj=`echo $ver | sed 's;\..*;;g'` ap_min=`echo $ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g'` ap_teeny=`echo $ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g'` echo " $ver" case $ap_maj in 0) if test $ap_min -lt 14 ; then echo "You must have gettext >= 0.14.0 but you seem to have $ver" exit 1 fi ;; esac echo "Running autopoint..." autopoint --force || exit 1 ############################################################################ # # libtoolize (libtool) # echo "Checking libtoolize version..." libtoolize --version 2>&1 > /dev/null rc=$? if test $rc -ne 0 ; then echo "Could not determine the version of libtool on your machine" echo "libtool --version produced:" libtool --version exit 1 fi lt_ver=`libtoolize --version | awk '{print $NF; exit}'` lt_maj=`echo $lt_ver | sed 's;\..*;;g'` lt_min=`echo $lt_ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g'` lt_teeny=`echo $lt_ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g'` echo " $lt_ver" case $lt_maj in 0) echo "You must have libtool >= 1.4.0 but you seem to have $lt_ver" exit 1 ;; 1) if test $lt_min -lt 4 ; then echo "You must have libtool >= 1.4.0 but you seem to have $lt_ver" exit 1 fi ;; 2) ;; *) echo "You are running a newer libtool than gerbv has been tested with." echo "It will probably work, but this is a warning that it may not." ;; esac echo "Running libtoolize..." libtoolize --force --copy --automake || exit 1 ############################################################################ # # aclocal echo "Checking aclocal version..." acl_ver=`aclocal --version | awk '{print $NF; exit}'` echo " $acl_ver" echo "Running aclocal..." aclocal -I m4 $ACLOCAL_FLAGS || exit 1 echo "... done with aclocal." ############################################################################ # # autoheader echo "Checking autoheader version..." ah_ver=`autoheader --version | awk '{print $NF; exit}'` echo " $ah_ver" echo "Running autoheader..." autoheader || exit 1 echo "... done with autoheader." ############################################################################ # # automake echo "Checking automake version..." am_ver=`automake --version | awk '{print $NF; exit}'` echo " $am_ver" echo "Running automake..." automake --force --copy --add-missing || exit 1 echo "... done with automake." ############################################################################ # # autoconf echo "Checking autoconf version..." ac_ver=`autoconf --version | awk '{print $NF; exit}'` echo " $ac_ver" echo "Running autoconf..." autoconf || exit 1 echo "... done with autoconf." gerbv-2.7.0/build_release0000755000175000017500000000152213421555713015240 0ustar carstencarsten#!/bin/sh # Release script for gerbv # (C) 2001-2005 Stefan Petersen (spe@stacken.kth.se) # $Id$ eval "`grep ^VERSION configure.in`" RELEASE="gerbv-${VERSION}" CVS_TAG="RELEASE_`echo ${VERSION}|/bin/sed -e 'y/./_/'`" FILES2REMOVE="build_release rebuild_conf cvs-tag.sh files2tag.txt" RESULT=`grep -c :pserver:anonymous@cvs.sourceforge.net:[0-9]*/cvsroot/gerbv ${HOME}/.cvspass` if [[ $RESULT -eq 0 ]] ; then echo You must login with anonymous login to get this to work! exit; fi (cd /tmp ;\ cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/gerbv export -r ${CVS_TAG} -d ${RELEASE} gerbv ; \ (cd ${RELEASE} ; rm -f ${FILES2REMOVE} ; \ aclocal ; autoheader ; autoconf ; automake --copy --add-missing) ;\ tar cf ${RELEASE}.tar ${RELEASE} ;\ gzip ${RELEASE}.tar ) cp /tmp/${RELEASE}.tar.gz . rm -rf /tmp/${RELEASE}.tar.gz /tmp/${RELEASE} gerbv-2.7.0/Structs.txt0000644000175000017500000001166413421555713014733 0ustar carstencarstengerbv_project *mainProject /* global variable */ gchar *path /* current working directory from which to load files */ gchar *project /* Name of current project. */ int curr_index /* currently active layer */ gerbv_fileinfo_t **file /* array of files */ gerbv_user_tranformation_t transform /*user-specified transformation for this layer (mirroring, translating, etc)*/ gchar *fullPathname gchar *name /* Name shown in layer window on left. i.e. filename*/ gboolean layer_dirty /* layer has changed since last save*/ gboolean isVisible gerbv_image_t *image /* This holds all info related to parsing and rendering one layer */ gerbv_image_info_t *info gerbv_aperture_t *aperture gerbv_aperture_type_t type; gerbv_amacro_t *amacro; gerbv_simplified_amacro_t *simplified; double parameter[APERTURE_PARAMETERS_MAX]; int nuf_parameters; gerbv_unit_t unit; gerbv_layertype_t /* Enum holding "RS274", "Drill", or "PnP"*/ gerbv_netstate_t *states /* List used to keep track of RS274X state groups */ gerbv_axis_select_t axisSelect; /* the AB to XY coordinate mapping (refer to RS274X spec) */ gerbv_mirror_state_t mirrorState; /* any mirroring around the X or Y axis */ gerbv_unit_t unit; /* the current length unit */ gdouble offsetA; /* the offset along the A axis (usually this is the X axis) */ gdouble offsetB; /* the offset along the B axis (usually this is the Y axis) */ gdouble scaleA; /* the scale factor in the A axis (usually this is the X axis) */ gdouble scaleB; /* the scale factor in the B axis (usually this is the Y axis) */ gerbv_net_t *netlist /* linked list of graphical objects */ int aperture gerbv_aperture_state_t aperture_state gerbv_interpolation_t interpolation gerbv_cirseg_t *cirseg GString *label /* A label attached to a net. Currently used only for refdeses in PnP file */ gerbv_layer_t *layer /* This points to the layer struct, defined one level up in hierarchy . */ gerbv_netstate_t *state gerbv_stats_t *gerbv_stats /* Gerber stats. Struct defined below. */ gerbv_drill_stats_t *drill_stats /* Drill stats. Struct defined below. */ gerbv_layer_t *layers /* linked list of layers. Is this because you can have multiple layers in one Gerber file? */ gerbv_polarity gchar *name /*This is name from %LN in Gerber file*/ gerbv_screen_t screen /* Global variable: hold info about what's displayed on the screen */ GtkWidget *drawing_area; GdkPixmap *pixmap; win /* struct holding the GUI */ statusbar int selected_layer gerbv_selection_info_t selectionInfo gerbv_selection_t type GArray *selectedNodeArray /* Holds text list of selected items. Access using GLib methods. */ gchar *data; guint len; gerbv_state_t state gerbv_tool_t tool gerbv_gui_unit_t unit gerbv_selection_item_t /*Defines sItem, the result of indexing into the selectedNodeArray*/ gpointer image gpointer net gerb_state_t /*Defines current Gerber state during parsing*/ int curr_x int curr_y int prev_x int prev_y int delta_cp_x int delta_cp_y int curr_aperture /*number of aperture in use*/ int changed gerbv_aperture_state_t aperture_state gerbv_interpolation_t interpolation gerbv_interpolation_t prev_interpolation gerbv_net_t *parea_start_node gerbv_layer_t *layer gerbv_netstate_t *state gerb_file_t /* Holds FILE descriptor and some other info. Created up file readin.*/ FILE *fd; /* File descriptor */ int fileno; /* The integer version of fd */ char *data; /* Pointer to data mmaped in. May not be changed, use ptr */ int datalen;/* Length of mmaped data ie file length */ int ptr; /* Index in data where we are reading */ gchar *filename /* name of file */ gerbv_aperture_list_t /* list holding info related to list of aperture definitions found */ int number; /* Aperture number */ int layer; /* Layer this aperture was found on */ int count; /* Number of definitions for this aperture */ gerbv_aperture_type_t type; double parameter[5]; gerbv_aperture_type_t /* enum of valid aperture types */ gerbv_stats_t /* large struct holding info about codes and errors found while parsing Gerber file */ gerbv_error_list_t *error_list; gerbv_aperture_list_t *aperture_list; /* This is list of aperture types and parameters */ gerbv_aperture_list_t *D_code_list; /* This is count of D code aperture counts */ int layer_count; int G0; int G1; /* all codes monitored are included in struct */ gerbv_drill_stats_t /* large struct holding info about codes and errors found while parsing Gerber file */ int layer_count; gerbv_error_list_t *error_list; gerbv_drill_list_t *drill_list; int comment; int F; int G00; int G01; /* all codes monitored are included in struct */ gerbv-2.7.0/Makefile.am0000644000175000017500000000252313421555713014551 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2006 Stefan Petersen (spe at stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA SUBDIRS = \ src \ scheme \ share/glib-2.0/schemas \ desktop \ doc man \ intl po \ example \ test \ win32 EXTRA_DIST = BUGS CONTRIBUTORS HACKING AUTHORS ChangeLog COPYING INSTALL \ NEWS README \ TODO \ autogen.sh README-cvs.txt README-release.txt \ README-win32.txt icon-theme-installer BUGS DISTCHECK_CONFIGURE_FLAGS = \ --disable-update-desktop-database GTK_UPDATE_ICON_THEME_BIN=true .PHONY: doxygen doxygen: doxygen doc/Doxyfile.nopreprocessing gerbv-2.7.0/share/0000755000175000017500000000000013421555714013616 5ustar carstencarstengerbv-2.7.0/share/glib-2.0/0000755000175000017500000000000013421555714015030 5ustar carstencarstengerbv-2.7.0/share/glib-2.0/schemas/0000755000175000017500000000000013423533413016445 5ustar carstencarstengerbv-2.7.0/share/glib-2.0/schemas/Makefile.am0000644000175000017500000000165213421555714020513 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2018 Sergey Alyoshin ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA gsettings_SCHEMAS = org.geda-user.gerbv.gschema.xml @GSETTINGS_RULES@ gerbv-2.7.0/share/glib-2.0/schemas/org.geda-user.gerbv.gschema.xml0000644000175000017500000000310713421555714024352 0ustar carstencarsten false Show cross on drill holes 0 Visual rendering type 0 Visual unit of length 0 Background color in 0xRRGGBB format [] Main window size [] Main window position false Main window is maximized [640, 320] Report window size [] Report window position gerbv-2.7.0/share/glib-2.0/schemas/Makefile.in0000644000175000017500000003602713423533413020522 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = share/glib-2.0/schemas ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ gsettings_SCHEMAS = org.geda-user.gerbv.gschema.xml all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/glib-2.0/schemas/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu share/glib-2.0/schemas/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile @GSETTINGS_RULES@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/NEWS0000644000175000017500000002572713421555713013227 0ustar carstencarsten======================================================================== Release Notes for gerbv-2.7.0 ======================================================================== -gerbv: User interface settings are saved with GSettings (units, rendering type, background color, windows size and position...). -gerbv: Merge file and project open menu items to File/Open. -gerbv: File drag&drop support (only to Gerbv). -gerbv: Popup dialog on reload. -gerbv: Add Apply to all visible layers functionality in Edit layer dialog. -gerbv: Two layers can be aligned by center of two selected apertures or lines. -gerbv: Add View/Show cross on drill holes. -gerbv: Show distance between apertures if two apertures are selected and measure tool is clicked. -gerbv: Deselect elements with Ctrl+LMB click. -gerbv: Add View/Show all selection to show selected items on invisible layers. -gerbv: Report layer bounding size in analyze dialog. -gerbv: Report more properties for elements. -gerbv: Default file name in export and save as dialogs. -gerbv: Show data in tables in Gerber and drill codes report. -gerbv: Support alpha, translate, rotation, scale, mirror in Gerbv project file. -gerbv: Ask confirmation on file overwriting. -gerbv: Add DPI setting for PNG exporting dialog. -gerbv: Updated localization. -gerbv: Fix missed console output on Windows. -gerbv: Fix various bugs. -libgerbv: Export to DXF (initial support). -libgerbv: Export to gEDA PCB (initial support). -libgerbv: Export drill as ISEL NCP. -libgerbv: Support drilled slot (but not routed yet). -libgerbv: Report file line number in RS274X and Excellon import error. -libgerbv: Prevent rasterization at vector export. -libgerbv: Fix various bugs. ======================================================================== Release Notes for gerbv-2.6.2 ======================================================================== This is a minor patch release on top of gerbv-2.6.1. The change is to property create the tarball with the build framework so that the automake/autoconf/etc generated files are included. ======================================================================== Release Notes for gerbv-2.6.1 ======================================================================== -gerbv: Report aperture parameters. -gerbv: Toggle all layers on/off. -gerbv: Using po4a to help man-page localization. -gerbv: Fix various bugs. ======================================================================== Release Notes for gerbv-2.6.0 ======================================================================== The following is a summary of the changes which went into gerbv-2.6.0. For a complete list of changes, refer to ChangeLog. This release is primarily a bug fix release. -libgerbv: Removed all gcc compiler warnings. -gerbv: Removed all gcc compiler warnings. -libgerbv: Updated the export code to be more portable in the face of different locale settings. -gerbv: Fix compilation on Quartz. -libgerbv: Fix a bug where very thin flashed rectangles in logos/images from Eagle CAD were not always rendered. -examples: Added example on using precedence sensitive calculations of aperture macros. -libgerbv: Improve vector output accuracy. -gerbv: Improve vector output accuracy. -libgerbv: Fix bug related to minimum line widths in scaled layers -libgerbv: Increase resolution in exported RS-274X files. -gerbv: Fix bug around exporting selected layers. -gerbv: Gray out menu items when no layers are open. -gerbv: Set secreen size to a default when the board size is not valid. -libgerbv: Implemented operator precedence in aperture macro parsing as per updated std -libgerbv: Fix scaling bug when multiple scale factors are present. -gerbv: Fix bug where only the bottom layer would print out. -gerbv: Add file merging to the GUI which allows the user to do basic panelization via the GUI. -gerbv: Added "current layer" menuitem to the main menu. -libgerbv: Fix macro rendering on clear layers (bug 3154966) ======================================================================== Release Notes for gerbv-2.5.0 ======================================================================== The following is a summary of the changes which went into gerbv-2.5.0. For a complete list of changes, refer to ChangeLog. This release is primarily a bug fix release. - libgerbv: fix leak and possible segfault in drill parser - libgerbv: fix segfault in pick and place parser - gerbv: add persistent keyboard accelerators and extra menu options - gerbv: increase max zoom 4x to allow more accurate measurements - libgerbv: fix bug which caused the drill parser to crash on an empty line - gerbv: change F8 shortcut to F7 per GNOME HIG - gerbv: add psuedo fullscreen mode - gerbv: add ability to toggle sidebar visibility - gerbv: speed up cairo rendering. - libgerbv: improved detection of drill files (comment lines are now ignored during file type detection) - libgerbv: fix handling of trailing zero suppression with very large precisions. - examples: fix some of the example code showing how to use libgerbv. - gerbv: fix gdk rendering of macro 22 elements with negative coordinates - gerbv: fix tooltip for modify layer button - libgerbv: fix handling of whitespace in the middle of an RS-274X command - libgerbv: fix bug in exporting outline macros - gerbv: unselect all items if a layer is hidden - libgerbv: fix drill parsing when INCH has nothing after it ======================================================================== Release Notes for gerbv-2.4.0 ======================================================================== The following is a summary of the changes which went into gerbv-2.4.0. For a complete list of changes, refer to ChangeLog. This release is primarily a bug fix release. A number of corner cases are handled more smoothly now. - libgerbv: fix bug parsing cirular moves with trailing zero suppression. - libgerbv: catch null strtok results in the aperture parser. Causes a more graceful failure when parsing bad input files. - gerbv: fix a bug in the rendering of text in exported PDF files - libgerbv: fix bugs in the file format recognition code - libgerbv: allow the RS-274X parser to handle multiple blocks within a single line per the RS-274X spec. - gerbv: Fix sidebar bug displaying small scale and translations in X - gerbv: Show the total aperture uses in the analysis tool - gerbv: Fix regression in FAST mode rendering of flashed apertures - libgerbv: If given an RS-274D file, create dummy apertures - gerbv: Fix FAST mode translation error in Y - libgerbv: Add #ifdef's to gerbv.h to allow use in a C++ program - gerbv: Fix segfaults if trying to change orientation of an empty layer - man page: Remove spurious line - gerbv: Update some information in the "About..." dialog ======================================================================== Release Notes for gerbv-2.3.0 ======================================================================== The following is a summary of the changes which went into gerbv-2.3.0. For a complete list of changes, refer to ChangeLog. - gerbv: fixed a minor arc rendering bug in fast mode - gerbv: Make the svg/pdf/ps export use a 1:1 scale instead of scaling to fit the page. - configure: Always require cairo now since we make use of some of the transformation functions even when using gdk rendering. - gerbv: Fix a bug in the vertical scrollbar calculations. - libgerbv: Fix a bug where apertures < 10 were potentially ignored in some drill files - gerbv: Fix clipping bug when viewing files with image offsets - gerbv: Fix a bug whereclicking on the message tab caused the keyboard accelerators stop working - gerbv: Use a reasonable return code when doing command line processing. - libgerbv: Improve the macro parser. - libgerbv: Allow 0 degree rotation - libgerbv: Fix some drill parser bugs - libgerbv: Support the Excellon "R" (repeat) command - testsuite: Add some tests for drill files - libgerbv: Fix a bug in the Excellon export which sometimes dropped the first element. - libgerbv: Fix some additional Excellon export bugs. - gerbv: Add the ability to rotate/translate layers - libgerbv: Fix the pkgconfig file to include some needed dependencies. ======================================================================== Release Notes for gerbv-2.2.0 ======================================================================== The following is a summary of the changes which went into gerbv-2.2.0. For a complete list of changes, refer to ChangeLog. - libgerbv: fixed a bug in the min/max calculation. - libgerbv: improved the ability to parse drill files with user specified formats. - libgerbv: Compile with -no-undefined to make it easier to build windows DLL's. - configure: Improve detection of tools when cross-compiling. - libgerbv: Improved example programs. - gerbv: Changed desktop categories to be more consistent with the rest of gEDA. - common: Fixed compilation with SunPRO compilers - libgerbv: Fixed calculation of pick and place bounding box - gerbv: Added a rendering benchmark - gerbv: Various rendering speed improvements - common: Made an install be relocatable. This is always needed for proper win32 operation and helps in some cases on other operating systems. As part of this, improve how init.scm is located at startup. - gerbv: Improved the project file load/save dialog. ======================================================================== Old Releases ======================================================================== 2008-09-07 : 2.1.0 release. Added features for object selection & deletion. 2008-02-07 : 2.0.1 release. This is largely a bugfix release. 2008-01-13 : 2.0.0 general release. Introduced new look for gerbv. 2008-01-09 : 2.0.0-beta release. 2007-12-01 : 1.0.3 release. 2006-07-28 : 1.0.2 release. 2005-01-22 : 1.0.1 release. 2004-12-28 : 1.0.0 release. 2004-10-19 : Another beta of a windows version is released. 2004-10-07 : A beta of a windows version. 2004-05-27 : 0.16 release. 2003-10-19 : 0.15 release. 2003-09-16 : 0.14 release. 2003-07-30 : Michael Ihde updated the ebuild script for Gentoo Linux. 2003-07-17 : Michael Ihde contributed an ebuild script for Gentoo Linux. 2003-03-19 : 0.13 release. 2003-02-10 : 0.12 release. 2002-11-20 : 0.11 release. 2002-10-13 : 0.0.10 release. 2002-07-06 : 0.0.9 release. 2002-05-06 : 0.0.8 release. 2002-02-10 : 0.0.7 release. 2001-12-15 : 0.0.6 release. 2001-11-14 : Fifth relase (0.0.5). 2001-10-27 : Fourth release (0.0.4). 2001-09-09 : Third release (0.0.3). 2001-08-30 : Second release (0.0.2). 2001-08-25 : First release (0.0.1) of source. gerbv-2.7.0/missing0000755000175000017500000001533013423533412014106 0ustar carstencarsten#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gerbv-2.7.0/ChangeLog_pre200802010000644000175000017500000025761513421555713015770 0ustar carstencarsten2008-01-29 23:30 thepurlieu * src/gerbv.c: cleanup help printout and change the format to better follow most other programs. 2008-01-24 11:12 thepurlieu * src/draw.c: speed up cairo rendering of macros by checking each macro for any clear draws, then only using push/pop group if we need to. 2008-01-23 22:23 thepurlieu * src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/export-rs274x.c, src/gerb_image.h, src/gerber.c, test/golden/example_jj_l1-2.png, test/golden/example_jj_l1-3.png, test/golden/example_jj_l1-orig.png, test/golden/test-polygon-fill-1.png: change polygon structure slightly and move "arc chopper" logic into the GDK draw functions, and store only the arc info in the gerb_image struct. This allows exporting with 100% accuracy, speeds up the cairo rendering, and reduces the size of the gerb_image. Update 4 golden files as a result of this change, since the cairo renderer now renders with the default resolution instead of the mandated 1 degree resolution with the previous method. Add more functionality to the export code, including info headers, polarity changes, and finishing the polygon stuff. The only major code that still needs to be added is macro exporting. This may wait until (or if) we re-arrange the macro storage method. Change GDK renderer to use a double for the scale factor instead of an int. The int was causing noticable error during rendering of large boards in comparison to the cairo version (which was correct). 2008-01-23 19:49 thepurlieu * src/gerber.c: Fix bug 1878509 by adding a hack to assume linear interpolation is desired if no I or J parameter is given. All other programs seem to assume this, so it should be safe. Also, the testsuite still passes after this change, so it shouldn't break anything. 2008-01-21 23:29 thepurlieu * src/export-rs274x.c: round values before writing to file in order to make sure no truncation errors are included. 2008-01-21 22:38 thepurlieu * src/: Makefile.am, export-rs274x.c, export-rs274x.h, gerbv.c: *export-rs274x.[ch]: start coding the library to export a gerb_image to a Gerber file. Currently it supports basic aperture drawing and polygon fills without circular paths inside them. This should support most all files exported from PCB, though. For now, only the command line option is hooked into this new library for testing (--export-rs274x). 2008-01-13 17:18 thepurlieu * src/: draw-gdk.h, interface.c: fix bug #1870444 (and a similar report about problems on MAC compiling) by allowing both draw.h and draw-gdk.h to be included. 2008-01-13 16:11 thepurlieu * test/golden/test-circular-interpolation-1.png: Update golden circular interpolation file to reflect updated test file. 2008-01-13 16:09 thepurlieu * ChangeLog, src/gerbv.c, src/interface.c, src/render.c, test/inputs/test-circular-interpolation-1.gbx: Get short options working for export from commandline options Get exporting from command line working without the need for a display (cairo only). This was a regression after the late on-the-fly GDK code. Get background color to show up correctly on loaded projects. ---- Release 2.0.0 on 1.13.2008 ---- 2008-01-12 Julian Lamb * draw.c: Fix a few minor cairo rendering issues: 1) fix rendering of circular interpolation within a polygon fill. 2) Fix rendering of flashed polygon apertures with holes in them. * tests: Add 8 new test files to test out aperture drawing, and 1 to test polygon fills. * tests/golden/*: Update all golden files in preparation for 2.0 release. 20 tests were failing for a variety of reasons. Most were due to the recent disabling of anti-aliasing on polygon fills, which caused very small changes to the rendering of the polygon borders. The remainder of the failings were due to spurious lines previously being drawn on flashed apertures with holes (noticed by Stefan), which has now been fixed. * draw.c: Fix small error in cairo rendering of elliptical circular interpolation paths. * test/input/test-circular-interpolation.gbx: added another test file. 2008-01-10 Julian Lamb * interface.c: Try and fix bug where tooltips weren't showing up for some users. * many files: Implement on-the-fly switching between GDK and cairo rendering, and set default setting on cairo builds to "Fast" (GDK). * draw.c: Fix spurious line rendering noticed by Stefan on BGA pads. * draw.c: Turn off anti-aliasing just on all polygon draws, since they were showing seams on ground planes. * draw.c: Fix clearing of BGA pin holes bug noticed by Stefan. * draw.c: Add "exposure off" logic, allowing macros with the exposure=off parameter to erase. ---- Release 2.0.0-beta ---- 2008-01-09 Julian Lamb * gerbv.c: Make sure we increase max_files by 2, since we may need to open up two files for PNP layers (top + bottom). This fixes a segfault after adding a PNP file to the project and then clicking "New". 2008-01-08 Julian Lamb * callbacks.c: Change color dialog to "blocking", which prevents user from modifying layer orders while it is running and preventing possible problems with the layer tree code. 2008-01-07 Julian Lamb * interface.c, callbacks.c: Add in warning dialogs if user starts a new project or opens a project with existing layers to make sure they don't accidentally close all layers. * callbacks.c: Add in some logic to switch to inches in the rulers if the scale gets too small in mils. Change the default unit back to mils. * interface.c: Recognize the default unit and start the unit combo box to the right one. * render.c: Change the default screen size scale factor to where mils can reasonably show up on the rulers. * draw.c: Revert back to old oval rendering for the time being, since the new one seems to be having issues... * gerbv.c, others: Add a dialog to confirm the user wants to open a file with invalid ASCII characters. * pick-and-place.c: Make sure we check cir_seg height and width are > 0, otherwise it can cause cairo rendering problems. * draw.c: Reduce label text font size, since the protel-pnp example file reveals problems fitting the text on the image. 2008-01-06 Julian Lamb * pick-and-place.c, gerbv.c: Render top and bottom layers in separate layers (if they exist). Rotate parts correctly and fix min/max calculations so autoscaling works correctly. Also, add "top" and "bottom" labels to layer names. * draw.c, draw-gdk.c, gerb_aperture.h: Add rendering code in preparation for aperture macro reordering. * render.c, callbacks.c: Add in watch cursor during rendering to provide feedback to user. * callbacks.c: Tweak the color dialog checks to make sure it works after destroying the dialog via the window manager. For cairo, speedup rendering during layer actions by simply recompositing the final image instead of redrawing everything. On layer deletion, reselect the first row to always make sure a line is active. * render.c: Reorder rendering so top layer is displayed on top. * callbacks.c, render.c: Get unit changing combobox to work more elegantly by updating all relevent fields immediately after changing units. Re- enable mils on the rulers, since inches were just too large to be usable for most boards. * interface.c: Get gui to gracefully shrink to a small size to support small screen resolutions. Prevent the sidebar from shrinking smaller than looks respectable. Change analysis tools to refer to "visible" layers rather than "active" layers to prevent confusion with the highlighted row in the layer tree. Add a frame around the statusbar to make it more visually appealing. Remove the "online manual" menu item since we don't actually have one yet. * draw.c: Change oval rendering to oblong, since that's probably what is actually intended (GDK rendering already did this). 2008-01-05 Julian Lamb * interface.c: Remove a billion glade-generated gtk_widget_show function calls, since they aren't needed with gtk_widget_show_all. * interface.c: Add tooltips for all menus and buttons. * interface.c: Update menus for new pointer tool and remove reference to control gerber option, since it's out for 2.0. * callbacks.c: Make middle mouse button the default pan tool, and update the mouse cursor is the user is panning or zooming with middle/right mouse buttons. * interface.c,callback.c: Add right click menu to the layer tree and add column to indicate any modifications to the layer (for now, we just show "I" for an inverted layer). Add back in support for individually inverted layers. Also, fix XOR and OR rendering modes for GDK. * render.c: Fix bug in alpha usage, which wasn't allowing transparency on exported images. * tests/golden/*: Update all golden files, since the png export wasn't using alpha correctly, so all test files now render with a slightly different color (since the black can bleed through the blue color a tiny bit). * gerber.c: Add support for include files (%IF) in the parser, which hopefully completes 100% implementation of the RS-274X spec (yay!). 2008-1-4 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/gerbv_screen.h, src/icons.h, src/interface.c: Added pointer button to toggletools on task bar. 2008-01-04 Stefan Petersen * src/interface.c: Changed menu entries where another window is popped up so text ends in three dots. "Save as" and "Print" uses built in GTK operations, so the hack there got not so nice. Is there other ways, like predefined with the three dots? * src/draw-gdk.c: Fixed aperture macro drawing in GDK target as well. 2008-01-03 Julian Lamb * draw.c: Fix some amacro rendering problems that Stefan uncovered. * draw.c: Change the thermal rendering logic to do rendering without push/pop operations, so that vector output will work (previously, the cairo export defaulted to an image export for thermal rendering). * render.c: Fix autoscaling for new amacro test (although the hack will be unnecessary after we reorder the amacro rendering process to correctly calculate the extents of each flashed macro aperture). 2008-1-2 Stuart Brorson (sdb@cloud9.net) * src/Makefile.am, src/icons.h, src/interface.c: Added icons for toggletool buttons: move, zoom, and measure. 2007-12-31 Julian Lamb * gerbv.c: Rework project filename saving to save all layers with relative pathnames, relative to the project file location. This allows projects to be relocated, and fixes the second half of bug# 1443885. * gerbv.c: More work on command line parsing. * interface.c, render.c, callbacks.c: Reimplement different rendering modes into the sidepane combobox for GDK. For cairo, allow the user to change the quality vs speed. * pick-and-place.c, draw.c: Correct pick and place parsing to use inches for the basic unit. Render names of pick-and-place components to help check placement. 2007-12-31 Stuart Brorson (sdb@cloud9.net) * src/drill.[hc], gerber.[hc], gerbv.c, pick-and-place.[hc]: Overhauled checks for file type. Now all file types (Gerber, drill, pick-place) are FALSE by default, and only are TRUE when positive of file type indications are found. Also added specific check for RS-284-D, and throw error if -D is found. 2007-12-30 Julian Lamb * callbacks.[ch], interface.c, others: Implement three "tools", namely the pointer, zoom, and measure tool and hookup to the existing gui stubs. Also, display an informative message in the message bar explaining how to use the active tool (similar to Inkscape). Do some miscellaneous cleanups in the gui code and rendering. * callbacks.c, render.[ch]: Get basic printing support working. 2007-12-28 Stefan Petersen * src/draw.c, src/amacro.[hc]: gerbv can handle comments and calculations in aperture macros. Unfortunate this uncovered some errors in how aperture macros are drawn. That will be next issue. 2007-12-28 Julian Lamb * gerber.c, many files: Finish implementing all remaining Gerber functions (offsets, mirrors, rotations, knockout, axis select, scale factors, and justify). Rework the min/max calculation routines for much more accurate autoscaling. Also, much updating was needed to allow the new Gerber functions to autoscale correctly (e.g. scaling needs multiply all the min/max values by the image scale factor, etc). * tests/inputs/test-...: Add test files for all Gerber functions. * tests/golden/*: Update all the golden files, since the autoscaling rework made all the old golden files fail, since the scale factor is now slightly off from the previous ones, making them fail. 2007-12-28 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/drill.c, src/gerb_stats.[hc], src/gerber.c src/gerbv_screen.h, src/interface.c, src/pick-and-place.c: Added more checks for file type. This should fix problem of segfaults when reading RS-274D. Make messages text window (in sidepane) pop up if an error or warning is written to it so user can immediately see problems. Robustified a few areas of stats gathering code. 2007-12-25 Stuart Brorson (sdb@cloud9.net) * src/gerber.c, src/callbacks.c, src/gerb_stats.[hc]: Added reporting of all D codes used to Gerber reports window. 2007-12-23 Julian Lamb * gerber.c, many files: Start reorganization of some gerb_image parameters in preparation for adding final Gerber commands like rotation, mirroring, and knockout. Also, normalize all dimensions to inches in the image in order to simplify rendering. * tests/inputs/test-...: Add first three testsuite files to test new commands. 2007-12-20 Stuart Brorson (sdb@cloud9.net) * callbacks.c: Add scrollbars to Gerber aperture report window since the report can grow to be very long. 2007-12-20 Julian Lamb * render.c,callbacks.c,interface.c: Connect rulers and scrollbars and start getting them functional. 2007-12-19 Stuart Brorson (sdb@cloud9.net) * src/gerber.c, src/gerb_stats.[hc], src/gerb_image.h, src/gerb_error.h, src/callbacks.c: Implemented reporting of apertures found in Gerber files. Added to Gerber reports window. 2007-12-17 Julian Lamb * render,callbacks,interface: Restructure the whole rendering process by separating out all zoom and pan information from the global variable "screen". This was necessary to allow rendering without having a gtk window open, allowing for export from command line and many others. Also, the translation and zoom code is much more readable due to the elimination of many variables. Also, the GDK color allocations were eliminated to allow rendering without existing GDK colormaps in place. * gerbv.c: Create the basic framework for exporting from the command line. 2007-12-16 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/render.c, src/gerber.c, src/gerb_error.h, src/gerb_stats.[hc]: Implemented reporting of parse errors (with error level) found dring parsing of the Gerber files. 2007-12-16 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/render.c, src/gerb_error.h, src/drill.c, src/drill_stats.[hc]: Implemented reporting of all parse errors (with error level) found during parsing of the drill file. 2007-12-16 Stuart Brorson (sdb@cloud9.net) * src/drill.[hc], src/drill_stats.[hc]: Fixed bug noticed by Joerg involving display of statistics in drill file with M71 calling out metric units. 2007-12-14 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/render.c: Added "General" tab to reports windows for both Gerbers and Drills. * src/Makefile.am, src/drill.c, src/gerb_image.h, src/gerb_stats.[hc], src/drill_stats.[hc]: Refactor drill_stats stuff to its own files in accordance with our function naming scheme. 2007-12-14 Stuart Brorson (sdb@cloud9.net) * Too many files to mention: Start adding list of drills found to drill statistics reported. Now "analyze->active drill layers" reports each drill defined, and the number of times it is used. 2007-12-14 Julian Lamb * render,callbacks: Fully separate GDK and cairo rendering code to help speed analization. Change from storing intermediate cairo patterns to xlib surfaces for speed improvement. Eliminate image compositing on each expose_event in order to make panning feel much quicker. Temporarily disable idle function to fix GDK memory leaks and crashes. 2007-12-12 Julian Lamb * src/gerbv.c: Fix half of bug #1443885 by eliminating segfault when project file has layer files that won't load. * src/callbacks.[ch],src/interface.c,src/render.[ch]: Big cleanup of callbacks.c and start moving zoom code to render.c in preparation for separating out zoom info from screen struct (allowing for exporting to file and improving code readability). Add in scrollbars and start hooking up rulers and scrollbar to panning. 2007-12-11 Julian Lamb * src/callbacks.c,src/interface,src/render.c: Get drag and drop working for layer sidebar. Fix memory leak for cairo rendering. 2007-12-10 Julian Lamb * src/gerbv.c,src/callbacks.c,others: Get basic layer management gui up and running. This includes visibility toggling, color picking, and basic row management using the buttons at the bottom. A popup menu will also be added when the user right clicks. * src/gerber.c: Fix polygon rendering bug (bug #1190809). This was due to the gerber parser not storing the correct polarity when closing a polygon. 2007-12-09 Stuart Brorson (sdb@cloud9.net) * src/callbacks.c, src/drill.c, src/render.[hc], src/gerb_image.[hc], src/gerb_stats.[hc]: Added beginnings of statistics report for drill files. 2007-12-09 Julian Lamb * src/gerbv.c,src/callbacks.c: Reattach project open/save stuff in gui and separate out some of the code back to gerbv.c. * gerbv.c,callbacks.c,interface.c,others: Implement export-to-file for PNG, PDF, SVG, and PS. Start implementing print functionality. More cleanup of old gui code. Move log handler over to new message textview in the sidebar. 2007-12-08 Julian Lamb * src/render.c,src/callbacks.c: Fix translation code for cairo renderer so things are correctly centered on the screen after a zoom-to-fit. Fix scaling code for MM unit drawings. * src/amacro.c,src/gerber.c: Fix error messages in amacro parsing (bug #1845782) on FreeBSD systems (thanks to Joerg for the patch). Also, fix possible hangs during amacro parsing (e.g. the file "%AM" would hang gerbv, since it didn't correctly check for EOF). 2007-12-07 SDB * render.c, render.h, Many other files: Started to refactor gerbv. Also start to incorporate statistics gathering stuff into gerber.[hc]. 2007-12-07 Julian Lamb * src/drill.c: Fix warning messages on some drill files (bug #1316247). The drill parser did not zero out new gerbv_aperture_t structures, which sometimes allowed junk in the param[x] portions, which confused the parser and gave warnings and potentially incorrectly rendered drill holes. 2007-12-07 Julian Lamb * src/draw.c: Fix thermal rendering bug (bug #1024000) in the cairo rendering code (this bug is not easily fixable in the GDK code, but it is being obsoleted soon). 2007-12-06 Julian Lamb * src/callbacks.c,src/gerbv.c: Add private implementation of gdk_cairo_create to allow compilation with gtk < 2.8. Fixed bug in gerbv which was causing gdk rendering to skip frames sometimes. 2007-12-05 Julian Lamb * src/gerber.c,src/drill.h,src/gerb_image.h: Fix memory corruption issue with G54 codes not checking if aperture numbers were within bounds (bug #1843983). Also, bumped up max aperture number from 999 to 9999 based on reports of some CAD packages using numbers this hig (even though it clearly says 999 is the highest number in the RS274X spec). This will increase memory usage somewhat, but hopefully should be acceptable. 2007-12-05 Julian Lamb * src/drill.c: Fix parsing of drill files with commas in place of decimals (bug #1844100). 2007-12-05 Julian Lamb * src/draw.c,src/draw-gtk.c: Fix rendering of lines drawn with rectangular aperatures (bug #1834944 and #1704942). Thanks to ineiev for the gdk patch, which was reworked to apply to the cairo rendering too. 2007-12-04 Julian Lamb * src/callbacks.[ch],src/interface.[ch]: Rename GTK widgets to more recognizable names for better code legibility. Change sidebar to a notebook view and add a messages tab. Organize statusbar layout. Add "analyze" menu and move CAM related functions to it. Clean up toolbars and combine into a single toolbar. 2007-11-30 Julian Lamb * src/callbacks.[ch],src/interface.[ch],src/gerbv.c: Split out all gui code out of gerbv.c and put it into the standard callbacks/interface files. Started to overhaul gui during the process. Also, speed up the feel of the cairo rendering by rendering layers to a cairo_pattern_t, then compositing using these patterns. This allows the user to pan and get much quicker response while the CPU renders the new view in the background. 2007-11-30 Stuart Brorson sdb (at) cloud9 (dot) net * configure.in, src/exportimage.c, src/gerbv.c, src/pick-and-place.c: Modify build system so you must explicitly --enable-cairo to build using cairo, otherwise build using GDK by default. 2007-11-29 Stuart Brorson sdb (at) cloud9 (dot) net * src/gerb_file.c, src/gerber.c, src/gerbv.c, src/gerbv_screen.h, src/project.c: Added "File -> Open Gerber(s)" dialog. Added int screen.last_loaded which keeps track of where to insert the next Gerber to be loaded. 2007-11-26 Julian Lamb * src/draw-gdk.[ch],src/gerber.c: Add gdk rendering code back in so it can be compiled if cairo isn't available. * src/gerber.c: Fix g_strconcat calls by adding NULL to end of arguments. 2007-11-20 Julian Lamb * src/draw.c: Add rendering code for arcs. Also, fix the rendiring of oval aperatures. 2007-11-19 Julian Lamb * src/draw.[ch], examples/am-test/am-test.gbx: Complete the conversion to the cairo rendering code. All aperature macros now render correctly, as well as clear layer polarities. Note that several bugs were found in the old aperature macro rendering functions (some rotations were not done correctly, and the moire and thermal outer diameters weren't correctly rendered) and those were fixed in the cairo conversion. The am-test.gbx file was modified slightly to test these fixes. * src/pick-and-place.c: Added an additional sanity check to make sure we don't accidentally open some gerber files as PNP place files. * configure.in: Add explicit cairo check. 2007-02-28 Julian Lamb * src/draw.[ch], src/draw_amacro.[ch], src/gerbv.c: Start converting rendering from gdk to cairo, in order to improve rendering capability, and allow for future export to PDF/SVG/PNG/PS capability. The draw_amacro files were combined into the draw files, since most of the rendering functions were common between the two. 2007-02-21 Julian Lamb * src/gerb_image.c, src/gerb_image.h: Added string label capability to the gerb_image struct for future rendering of labels. * src/pick-and-place.c: Updated parser to accept pick-and-place files output from the PCB program. Performed more code cleanup and implemented min/max screen calcs based on pick-and-place files. * example/LED.xy: Added a sample pick-and-place file output from PCB, based on the LED example in the PCB source code. 2007-02-17 Julian Lamb * src/pick-and-place.c, src/pick-and-place.h, src/gerbv.c, src/csv.c: Get example/protel-pnp/Pick*.csv to load through the normal file loading code, implementing some simple logic to try and guess if a given file is pick and place data. 2007-02-16 Julian Lamb * src/pick-and-place.c, src/pick-and-place.h, src/gerbv.c: Continue cleaning up pick-and-place code into simple parser/renderer. 2007-02-15 Julian Lamb * src/search.c, src/search.h, src/search-gui.c, src/search-gui.h, src/search-cb.c, src/search-cb.h, src/search-file.c, src/search-file.h, src/search-mark.c, src/search-mark.h, src/pick-and-place.c, src/pick-and-place.h, src/Makefile.am: Remove all search* files, and combine important functions into pick-and-place.[ch]. * src/gerbv.c, src/project.c: Remove gui-related references to pick and place functions in preparation for moving pick-and-place functionality to a simple parser/renderer. 2006-07-26 Stefan Petersen * src/log.c: Rewritten by Dino to use GTK2. The previous caused SEGVs, so it was time to get it exchanged. 2006-07-25 Stefan Petersen * loads of files: Added check of return value for error checking. * configure.in, man/gerbv.1.in, src/Makefile.am: Remade build system so it should be able to handle autoconf 2.60 and automake 1.9. Thanks FSF for yet again breaking a working API. 2006-07-24 Stefan Petersen * src/gerb_file.c: Fixed bug #1236047, so now gerbv handles negative coordinates. * src/gerb_file.c, src/gerbv.c: Hopefully reduce SEGVs even more by better error checking of operations in gerb_fclose. 2006-07-23 Stefan Petersen * src/gerb_image.h, src/gerber.c, gerbv.c: Added patch from extensive (Sourceforge alias) that according to him make gerbv handles autoscaling of gerber files with mm better. * src/drill.c, src/gerb_file.c: Fixed some possible memory leaks and SIGSEGVs pointed out by Wolfgang Wieser (hand patched from #1201900). 2006-05-07 Stefan Petersen * src/draw_amacro.c: Daniel Mack - zonque submitted as a patch (1350283) (with no file attached though) that renaming stack_t to macro_stack_t would make gerbv build on darwin. 2005-09-28 Dan McMahill * src/drill.c: Remove an lval typecast. Not only does this get gerbv to compile with gcc4 and other non-gcc compilers, it was no longer needed as the types involved were all doubles anyway. 2005-02-15 Stefan Petersen * src/draw_amacro.c: Forgot to copy gc to local_gc so drawing inherits gc from image wide setting. Pointed out by Warren Young. 2005-02-08 Tomasz Motylewski * src/gerbv.c: malloc strlen+2, not +1 * src/gerb_file.c: malloc len+1, not len 2005-01-06 Stefan Petersen * src/Makefile.am: A clean make distcheck by adding some missing .h-files in Makefile.am * src/*.c: Removed portability to GTK+ 1.x by changing configure.in and remove USE_GTK2 in many small places. Also made some reformat of the code to fit into the rest of the gerbv codebase. 2004-12-28 Stefan Petersen * src/draw.c: When drawing circles I ignored if circle had inner diameter, which was pointed out by Harry Eaton. Not anymore... Closes bug #1050340 in this branch. * Updated to TinyScheme 1.35 2004-10-30 Stefan Petersen * src/draw_amacro.c: Forgot to use local_gc when drawing some of the primitive aperture macros. Closes bug #1051045. 2004-10-13 Juergen Haas * right click on selected part (current active selection) now works also on shapes with PIN1 Off centre axis FIXME circular shapes are recognised at a fixed radius of 3mm Only works with units of gerbv match units used in pick and place file! 2004-10-11 Juergen Haas * a first draft of API documentation exists see doc/html/main.html After adding further comments please use the following style: /** brief description. Now we can write details */ Afterwards use doc/Doxyfile.nopreprocessing to update documentation with doxygen 2004-09-13 Stefan Petersen * src/gerbv.c: If you tried to invert color of an unloaded layer you got a segmentation fault. I think it was discovered by Juergen. 2004-09-11 Juergen Haas * right click in window with active selection now shows part designator in statusline for easier identification in multiple selections FIXME only works if pin1 is not on center axis of part 2004-09-09 Juergen Haas * added footprint column shown in result search window 2004-09-05 Juergen Haas * fixed right click shows designator in statusbar does not hang program * MINGW issues with path separators 2004-09-04 Juergen Haas * fixed graphical representation of parts * added gerb_transf_rotate * added gerb_transf_shift * fixed segfault when searching in comments * designator is also shown checked by default 2004-08-28 Juergen Haas * fixed GTK1 compilation issues 2004-08-27 Juergen Haas * fixed memory issues pnp_state * fixed too many calls to screen_for_delimiter * added #include "string.h" to gerb_transf.c * introduced update_combo_box_model() * removed unnecessary code * "beautified" gerb_transf.[ch] * introduced rectangular shape for marking rectangular parts * introduced a LOG MEssage, when right click on any selected part (must be in active selection) 2004-08-26 Juergen Haas * small bugfixes * added double click draws selected item on screen 2004-08-25 Tomasz Motylewski * eliminated memory leak MINGW32 gerb_file.c fd->data * forced LC_NUMERIC to "C" in parse_gerb(), fixing bug resulting in very thin lines (aperture size = 0) under GTK2 2004-08-23 Tomasz Motylewski * cleaned up memory allocation in gerb_image.c * improved project loading (still broken, there is no clear design which function should do what). * fixed memory leak plist_top->filename 2004-08-23 Juergen Haas -saving projects: is done in a more flexible way: adds a similar line with "filename" replaced by "pick_and_place" to project file FIX ME: reading in a project file is still broken -several bugfixes: upon pressing mark button in select parts dialog it always updates screen 2004-08-23 Tomasz Motylewski * replaced scale with gerb_transf_t(.scale) - mirroring preparation 2004-08-22 Stefan Petersen * configure.in, src/Makefile.am: Use libpng-config to find out parameters to use in CFLAGS and LIBS. tag:SEARCH_SELECT_merged 2004-08-13 11:25 Search9-pre8 Juergen Haas todo saving projects Bugs fixed: -if mark is pressed and there is no selection colour of layer button does not change -use of libmba's csv.[ch] -automatic screening for delimiters -if dialog is to be destroyed but it does not exist is caught -upon loading a second gerberfile the first user dialog is destroyed and parsed_PNP_data -compiles under GTK1 -pressing mark actually also activates the new layer -loading a gerberfile also activates layer -tooltip to entry field now hints at usage of regexp -arrow down acts like space -colour change back to original colour fixed - new colour is only allocated upon first draw on an empty layer -dropdown list for available layers updates, whenever changes to layer occur -default layer now is actually also the one which is drawn ontoi by default (shown was MAXFILES-1, but it was drawn onto 0!) -if there was an error loading a pnpfile (e.g. incompatible csv format) select parts window is destroyed also parsed_PNP_data is freed! -arrow up reverses arrow down/space -right click now selects and draws the selection on screen -shift_arrows will add items to selection (moving up and down!) -focus was always going to log window, for MINGW therefore logging in log window was disabled as a first measure 2004-08-12 09:51 Search9-pre7 Juergen Haas program now works under MINGW code cleanup BUG fixes: -crash on lowercase entries(linux)using REG_ICASE -crash on entries non existing in the list (MINGW/LINUX) use of parsed_PNP_data as a global storage place for pnp data after parsing, in case of reopen search window initiated. 2004-08-07 09:29 Search9-pre6 search_gui.c: -introduced GtkEntryCompletion listing choices for entry works for designators and comments _fixed bug in select_by_regex where if comment was NULL a segfault occurred -automatic scrolling to first hit works with designators only probably utf8 issue with comments strncasecmp causes segfault -alignment in assembly mode improved, the first 15 elements are also visible now -upon enter in entry field we scroll to first hit in selection ----------------------------- 2004-08-04 09:29 search9-pre5: Juergen Haas TODO introduction of libmba csv functions sublicensed under MIT csv.[ch] have been extracted and made independent from msgno.[ch] and text.[ch] the latter two wont be included ----------------------------- 2004-08-03 09:30 Search9-pre4: Juergen Haas search_gui.c: -fixed error with default layer selection:now always last layer is default, based on MAX_FILES cleaned up code ----------------------------- Search9-pre3: Juergen Haas TODO-towards project saving: added filename if pnp file is loaded dont know how to handle loading of files because pnp file is not compatible to gerberfile ->maybe including check for pnpfile in gerb_fopen? -search-gui.c: *implemented intelligent top/bottom selector if sel exists, only non matching (either tpo or bottom parts) will be unselected if no sel exists, all top or bottom parts are selected *implemented gtkcombobox for accessing layers, it will actually not allow overwriting existing layers( gerberfile displays), if loaded last after all gerberfiles dynamic update of list to be more flexible ok - used gtkliststore and GtkCellLayout for labels in Gtk_Combo_Box dropdown list TODO-MINGW: fgets seems to report NULL ???!! -implemented #ifdef __MINGW32__ , HAVE LIBGEN_H, HAVE MMAN_SYS_H and HAVE_REGEX_H for portability issues under WIN32/mingw ------------------------------------- tag:SEARCH_SELECT_start 2004-07-12 (summary) Juergen Haas/Tomasz Motylewski [pleases direct any questions, comments or bug reports to me or Tomasz] * added new functionality: search, select and mark parts in layers 16-19 by loading a "Pick and Place" file in CSV Format: entry1,entry2,.. NO OTHER FORMAT IS RECOGNISED SO FAR! - src/search.c: storing pnp data in memory - src/search_cb.c: callbacks - src/search_file.c: how to read in and parse pnp file - src/search_mark.c: create_marked_layer(layernumber); will draw the selected parts as circles with a line going from centre to Pin1 on the layer given as argument(at the moment layers 16-19 are selectable) - src/search_gui.c: will load pick and place file and display the parts unique designators, the Top/Bottom Flag and the corresponding comment in a sortable list. Multiple selections can be made by entering a regex search phrase or by simply clicking on the desired items (for multiple selections by mouse click use the well-known SHIFT-CTRL-click combinations) * This version also includes first rough support for MINGW/WIN32 -not yet usable, route for reading in files is broken 2004-08-21 Stefan Petersen * src/gerbv.c: Made sure that only list of short options is printed when only short options are compiled in. 2004-08-16 Stefan Petersen * doc/*, example/*: Makefiles.am removed Makefile.in wheh running distclean. Not good. Spotted by Hamish Moffatt when packaging for Debian. 2004-07-28 Stefan Petersen * src/draw.c: In gerbers the image can be negative or positive. Then a part of the image called a layer can be clear or dark. -"No more weed for you, Mr Gerber". Richard Lightman found this and submitted both an example and a patch. Thanks! 2004-07-11 Stefan Petersen * src/draw_amacro.c: When drawing thermals the cross ends in butt instead of round which gives nicer look when thermal covers an other via. 2004-06-27 Stefan Petersen * src/gerber.c: Improved comments on what is going and why. Also improved a little in determining the size of the image. Now it ignores points with no aperture defined, unless it is a polygon area. 2004-06-24 Stefan Petersen * src/gerber.c: Removed two potential segfaults when running old RS-274D format. * src/gerber.c, src/batch.c, src/gerb_image.[hc]: Actually removed all traces of MQ_END and MQ_START. That means that empty nodes with only this information isn't saved, since the only time we need this information is when parsing arcs. When an arc is parsed the information wheter that arc is multi or single quadrant is saved there. Also closes bug #942590. * src/gerbv.c, src/gerbv_screen.h, src/gerb_image.c, src/gerb_image.h: Added possibility to dump a parsed image as text to be able to debug the parser. 2004-06-10 Stefan Petersen * src/draw_amacro.c: By mistake I assumed that all aperture macros had exposure flags, but that was a mistake. Drew Moore pointed it out to me. Thanks. 2004-06-05 Stefan Petersen * */.cvsignore, man/gerbv.1.in, src/gerbv.c: Minor updates and cleanups from Dimitri. --help added for instance. -- Release 0.16 -- 2004-05-25 Stefan Petersen * src/draw_amacro.c: Now aperture macros handles exposures properly, so some thermals can be drawn properly. Inspired by discussion with Dimitri. 2004-05-19 Stefan Petersen * man/gerbv.1.in, src/Makefile.am, src/drill.c, src/gerbv.c, src/tooltable.c, src/tooltable.h: Patch from Dimitri (lastname unknown) to read tool files from for instance Eagle CAD. 2004-04-27 Stefan Petersen * configure.in, src/drill.c: Patch from Tomasz Motylewski as a start remove dependencies on mmap et al (sys/mman.h) for targets lacking these operations (mingw). 2004-04-21 Stefan Petersen * src/gerbv.c: Added keys f for fit, z for zoom in and Z for zoom out after request from Stefan Thiede. 2004-04-04 Stefan Petersen * src/gerb_file.[hc], src/drill.c, src/amacro.c, gerber.c: Changed gerb_fgetint() so it can return number of parsed characters. This is useful when parsing coordinates in omit trailing zeros mode. Omit trailing zeros is also handled properly now. Reported by Joachim Jansen and filed as bug #918344. 2004-02-24 Stefan Petersen * src/gerbv.c: Apperently under GTK2 both delete_event and destroy signals is emitted when you press the little cross in the decoration bar. When both signals were emitted gerbv tried to free the same memory twice. 2004-02-14 Stefan Petersen * src/Makefile.am: Making sure init.scm is copied to the right place at install. 2004-02-13 Stefan Petersen * src/gerber.c: The good old circles revisited. This time Dan noticed that circles with the same start and end point did not draw properly ie as circles. It became points. 2004-02-08 Stefan Petersen * configure.in: Apperently auto* doesn't define $prefix if you don't set it in your script. The autotools has become more and more of a moving target... * man/gerbv.1.in: A bunch of updates, mainly reflecting the new features. 2004-02-07 Stefan Petersen * src/gerbv.c: Save screen.path even when we load a project file. * src/gerbv.c: Fixed a segmentation fault when I tried to free an optarg:ed variable. 2004-02-05 Stefan Petersen * src/gerbv.c: Dan strikes again. Option -p (with appropriate error message) added as an alternative to --project. 2004-02-01 Stefan Petersen * src/gerbv.c: Patch from Dan causes the "save as..." dialog box to come up if you try to do a "save" with no current project file name. * src/gerbv.c: Yet another patch from Dan to put project filename in title of window. 2003-12-14 Stefan Petersen * configure.in, src/gerbv.c, src/log.c, src/setup.h: It is now possible to compile gerbv with GTK+ 2.*, at least tested with 2.2.4. There are still some problems, particulary in log.c. GtkText is deprecated, but I have enabled GTK_ENABLE_BROKEN. This needs a more permanent solution. This closes Feature Request #771480, but probably opens up some new ones. 2003-12-10 Stefan Petersen * src/gerbv.c: Projects saves and restores background color. * src/gerbv.c, src/gerbv_screen.h: Added Save Project and handles if a filename was given, either when loading or a previous save. 2003-12-09 Stefan Petersen * configure.in, */Makefile.am: Added a recursive chain of Makefile.am to be able to run make dist and make distcheck. Proposed by Dan McMahill. Thanks! 2003-12-07 Stefan Petersen * src/gerbv.c, src/project.[hc]: Project now saves ev. inversion of layer, all layers accept all parameters and commandline switch --project= also works. * src/gerbv.c, src/gerbv_screen.h: Added invert layer functionality. Closes feature request 777547. 2003-12-06 Stefan Petersen * src/gerb_file.[hc]: Added function gerb_find_file. * src/draw_amacro.c: Forgot to make some internal functions static. * src/*: Scheme interpreter added to be used by project files as a start. Also project file handling added. A short description of the format used in project files also added. A massive commit. 2003-11-22 Stefan Petersen * configure.in, acconfig.h: acconfig.h removed and more information added to configure.in after information in warning messages from autoheader. 2003-11-13 Stefan Petersen * src/export_image.c: Changes pixbuf_to_file_as_png simplify operation No major speedup since that is not the time hog. -- Release 0.15 -- 2003-10-06 Stefan Petersen * src/draw_amacro.c: Drawing of aperture macro primitive 7 was severly broken. Revealed by Drew Moore who sent an example along. Thanks Drew! Closes bug #818307. 2003-09-28 Stefan Petersen * src/gerber.c: Patch from Peter Brueckner. Some Gerbers don't have G04 but just G4. Peters patch fixes that for G- and M-codes. 2003-09-08 Stefan Petersen * src/gerber.c: Patch from Simon Munton to fix a problem with polygons sometimes not being filled properly. Closes bug #800928 (which he promptly had submitted). * src/gerber.c: Another patch from Simon. This time it fixes circular polygon outlines by with a number of short segments. Closes bug #603183, which was almost a year old. Thanks Simon! -- Release 0.14 -- 2003-05-31 Stefan Petersen * configure.in, src/amacro.c: Removed the last remaining malloc.h after tips from Charles Lepple on the geda mailinglist. 2003-04-18 Stefan Petersen * src/draw_amacro.c: Larry Doolittle had a problem when drawing one of his files, a circle seemed to explode. I couldn't reproduce it, but after his tests I added this patch. Thanks Larry! 2003-04-07 Stefan Petersen * src/gerber.c: RS274D caused segfaults again. Reported by Skurk. -- Release 0.13 -- 2003-03-16 Stefan Petersen * src/draw.c, src/gerb_image.h, src/gerber.c: Angles are now calculated as doubles instead of ints. For instance, the cslk example now draws properly at the same time as Dans ridicously small arcs also works. * src/gerber.c: Better sanity checks for angles of arcs, so cw are drawn cw and ccw are drawn ccw. Closes bug #703265 which was reported by Mark Whitis. Thanks! 2003-03-10 Stefan Petersen * src/gerber.c: Doesn't warn anymore if a gerber file requests an image rotate on zero degrees. Reported by Balaji V. 2003-03-02 Stefan Petersen * src/draw_amacro.c: Aperture macro primitive 1 is a filled circle. * Makefile.am, configure.in, src/gerbv.c, src/Makefile.am, src/gerbv.1.in: Removed all traces of Guile. batch.c is left, but is not compiled in. 2003-03-01 Stefan Petersen * src/gerb_image.[hc], gerber.c: Redesigned step-and-repeat parser. And when I was at it I also cleaned up new_gerb_image() a bit. 2003-02-24 Stefan Petersen * src/Makefile.am,src/gerbv.c,src/gerbv_screen.h,src/log.c, src/setup.[hc]: Added setup to handle all things that can be setup by commandline or (future) rc files. We have the screen variable, but some didn't think it was appropriate to add setup things to. 2003-02-22 Stefan Petersen * src/gerber.c: Changed comparision if two angles are equal to double since Dan McMahill discovered a case where the difference between the angles were actually less than 0.5 degrees. Closes bug #689663. * src/gerbv.c: I you tried to swap layer with an unused layer gerbv segfaulted. Also discovered by Dan McMahill. Cudos to him as usual... Closes bug #689667. 2003-02-12 Stefan Petersen * src/gerber.c: A patch from Peter Monta for incremental coordinates. He also discovered that I had made a mistake when parsing incremental/absolute coordinates. -- Release 0.12 -- 2003-02-06 Stefan Petersen * src/drill.c; Exchanged the last fprintf(stderr, with GERB_COMPILE_ERROR. * src/gerbv.c: Added swap of tooltips information too. 2003-02-02 Stefan Petersen * src/drill.c: Added patch from Dan McMahill since + sign before coordinates seemed to confuse the drill parser. Closes bug #678407. * src/gerbv.c: Now you can move around layers in the right sidebar so you can select in which order the layers should be presented. * src/draw.c, src/drill.c, src/gerb_image.[hc], src/gerber.c: A new system to keep track of mm and inches. Everything is still drawn based on inches and min/max is also stored as inches. But now every aperture and every coordinate has a unit attached to it that is used when drawing. I hope I haven't breaked anything, patricular in drill.c. And I have very few (one) reference examples in millimeters. 2003-01-26 Stefan Petersen * src/log.[hc], src/gerbv.c: Made sure error messages are directed to the right place (shell and popup) at the right moment and that the error messages look nicer. * .cvsignore, man/.cvsignore, scheme/.cvsignore, src/.cvsignore: Added these files submitted by Holger Waechtler. Thanks! 2003-01-25 Stefan Petersen * src/gerber.c, src/gerb_image.[hc]: Added a patch from Holger Waechtler regarding G70/G71 which opened up a whole can of worms. After thinking and hacking the following works: * all in inches (as always). * apertures in inches and vectors in millimeters. The reason for not fixing apertures in millimeter are because the calculation must happen in the drawing engine, since we don't know until the moment of drawing if the paramters defines a length or an angle. It's probably just a matter of fixing the scaling when drawing, but I fix that later on. 2003-01-19 Stefan Petersen * src/gerber.c: Fixed bug in arc/circle drawing that caused some odd cases (not noticed so far elsewhere) that made ccw arcs to be drawn cw. Discovered by Jukka Marin. Thanks. 2003-01-16 Stefan Petersen * man/gerbv.1, src/gerbv.c : Updated documentation to reflect the new log commandline switch. * files2tag, TODO: Minor documentation updates to reflect reality. 2003-01-15 Stefan Petersen * src/Makefile.am, src/color.c, src/draw.c, src/drill.c, src/gerber.c, src/gerbv.c, src/gerbv_screen.h. Added are src/log.[hc], src/gerb_error.h: Finally have managed to change all error reporting routines so it works with Dinos log system. Now should all errors and warnings pop up in an explicit window so it behaves like a proper X-application. Thanks to Dino I got this fixed. Maybe all code is not what Dino expected, but anyhow I owe him a great THANKS. Maybe all compilation errors should have "return;" after them? 2003-01-14 Stefan Petersen * src/gerbv.c: A fix for the previous fix. The previous fix was not good and had to be redone. now. We check the parsed image before we put it in use so we don't have to save alot of thing to be able to back off if error. 2003-01-13 Stefan Petersen * src/gerbv.c: When gerbv discovered RS274D and terminated it tried to free memory to hadn't been allocated due to it had discovered error in the gerber file. This caused windows to never close and segfaults when terminating. 2002-12-25 Stefan Petersen * src/gerbv_screen.h, src/gerbv.c: Changed how the different windows are stored in the screen struct. * src/amacro.h: Forgot to include stdlib.h which was needed to remove warnings regarding free missing. * src/gerbv.c: Minor beautification cleanups. 2002-12-11 Stefan Petersen * src/gerbv.c: Fixed 64-bit compilation warning by casting gpointer to long int. Closes bug #642703. 2002-12-09 Stefan Petersen * src/gerber.c: Fixed some kind of bug causing some filled polygons not to get displayed. Reported by Chris Ellec. Closes bug #649663. 2002-12-02 Anders Eriksson * configure.in, src/amacro.c: Applied patch from Charles Lepple to fix bug #646268 (building on MacOS X). 2002-11-26 Anders Eriksson * src/gerbv.c: Fixes bug #643799 (zoom out_line stopped working). 2002-11-26 Stefan Petersen * src/gerbv.c: Added idea and (hacked up by me) patch for turning all layers on and off from Martin Sigrand. It should really need an overhaul regarding non freed memory. 2002-11-24 Stefan Petersen * doc/eagle/*: Added information for Eagle CAD users from Daniel Dorau. It also made the webpage. Thanks Daniel! * src/gerber.c: Yet another G-code (55) discovered in an example in the "standard" by our russian friend Yuri. 2002-11-23 Stefan Petersen * src/amacro.c, src/draw.c, src/draw_amacro.c, src/gerber.c: More files with the same mistake in as below. I cleaned up my own mess this time. 2002-11-23 Anders Eriksson * src/gerbv.c: Fixed bug 642600, Don't use default labels without any statement after. Also use comments for label after #endif. -- Release 0.11 -- 2002-11-19 Stefan Petersen * src/gerbv.c: Anders optimized drawing optimized away setting of superimpose function. Not any longer. Daniel Dorau pointed out this and the one below. * src/draw.c: Hopefully fixed the one pixel gap between lines when it should be a filled area. 2002-11-17 Stefan Petersen * src/exportimage.c: Background color was ignored. Noticed by Dino. 2002-11-16 Stefan Petersen * src/gerbv.c: Made sure all cancels and destroy_event from different popup windows are handled and destroyed properly. Also made some minor fixes in new "set explicit scale" functions. * src/gerbv.c: Made explicit set scale also center image properly. 2002-11-15 Stefan Petersen * src/gerbv.c: Robustified if someone tries to parse RS274D. Happend to fix bug #639127. * doc/PNG-print/*: Added doc on how to print PNGs generated by gerbv. * src/gerbv.c: Added explicit setting of scale. Good when generating PNGs for printing. Both patch and above doc is thanks to Dino Ghilardi. 2002-11-15 Andreas Andersson * src/drill.c: Slight change to allow broken drill files from Orcad386. Not pretty. But then again, neither is Orcad. 2002-11-07 Anders Eriksson * src/gerbv.c: Minor cleanups, prepare idle_redraw to be reentrant to allow calling it more than once (i.e. for png export as well as for screen redraw). 2002-11-06 Anders Eriksson * src/gerbv.c: Re-read some gtk-docs, we weree mistreating the gtk_idle-functions. This patch fixes this and closes pixmap leakage caused by complete redraw when we had a preempted state. Oops, you need to start the idle function at least once. 2002-11-05 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h: Removed clipping/no clipping kludge since export_png now behaves as Dino expects. We should make a function of common code in export_png and redraw_pixmap to make it more maintainable. * src/gerbv.c (redraw_pixmap): Don't try to sneak out doing events from redraw_pixmap, check for them and preempt if there are events on queue. This closes the everythinh-is- not-redrawn-sometimes bug (I hope). 2002-11-04 Stefan Petersen * src/exportimage.c, gerbv.c: export_png now export whole image despite whats displayed (still depending on zoom/scale thou). If export_png receives an imagetosave, that will be the image that will be saved, so it's more general now. Must hack some more to be able to utilize both ways. Anders can happily remove all what he calls kludges. 2002-10-31 Stefan Petersen * src/gerber.c: Yet another commando that doesn't complain if default values are given. AS is the lucky one this time. * src/gerber.c, src/draw.c: By considering an undefined aperture despite we didn't draw caused strange lines around the first line drawn. 2002-10-31 Anders Eriksson * src/gerbv.c: Replace incremental redraw with clipping option. It is now possible to turn clipping off, this might be useful for export png (sorry for breaking this, Dino). 2002-10-30 Stefan Petersen * src/gerb_image.h, src/gerber.c: Implemented %SF% and %SR% in parser, but ignored the draw engine. If any of these parameters not are default a warning is issued. Closed a feature request. 2002-10-30 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h: Added restartable redraw by keeping redraw state between calls to redraw_pixmap(). Also added drawing status on statusbar. 2002-10-29 Stefan Petersen * src/draw_amacro.c: Fixed a bug when drawing primitive 20 discovered by jj. Caused slanted (by coordinates) primitives to "slant" in the wrong direction. 2002-10-29 Anders Eriksson * src/gerbv.c (redraw_pixmap): Free pixmaps also when preempted, we used to leek pixmaps (bad!). 2002-10-28 Anders Eriksson * src/gerbv.c (autoscale): Wrong sign on clip_bbox.x1 from trans_x. Now even nollezappare is centered correctly. 2002-10-27 Stefan Petersen * src/draw_amacro.c: Reset the stack pointer after each primitive operation. It's not completly right to do it this way, but since I built the compiler I know how the code generated looks like ;-). Closes bug #629101. 2002-10-26 Stefan Petersen * src/gerber.c: Removed some nested use of strncmp with simple switch/case instead in parse_G_code. * src/gerber.c: Added an extra check so RS274D doesn't casue segfault. Discovered by Jukka Marin. Thanks. 2002-10-24 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h: Played with clipping. Allocated pixmap is now same size as window. GTK does all clipping (we could optimize this somewhat with "object" bounding boxes). This makes it possible to zoom where no gerbv has zoomed before. Some interesting effects can be found by zooming in a lot. -- Release 0.0.10 debian release 2 -- 2002-10-18 Stefan Petersen * src/drill.c, src/gerb_file.[hc], src/gerber.c, src/gerbv.c: Alot of abuse using EOF(-1) when char actually is unsigned caused a lot of warnings when Debian build system tried to build it for a couple of platforms. 2002-10-14 Anders Eriksson * src/gerbv.c: Activate millimeters in unit menu if this is the default unit. (update_statusbar()): Check that statusbar has been created before trying to set text to it. This eliminates an annoying GTK assertion. -- Release 0.0.10 -- 2002-10-13 Stefan Petersen * configure.in: Updated version to 0.0.10 2002-10-11 Anders Eriksson * configure.in, acconfig.h, src/gerbv.c: Added configure-option to change default unit for status bar to millimeters instead of the built-in default of mils. 2002-10-09 Stefan Petersen * src/gerber.c: The undefined aperture fix below is, in princip, only valid if aperture type != from aperture macro. 2002-10-07 Stefan Petersen * src/gerber.c: If aperture was undefined (as in polygon outline) it caused a segfault in min-max routine. Closes bug #619652. * man/gerbv.1.in: Added blurb about the new command line switches. Also added some text on backends. * src/gerbv.c: Added some GDK/GTK specific command line parameters. Also added the parameter --geometry. Currently ignoring placement parameters, though I parse them 2002-10-06 Anders Eriksson * src/gerbv_screen.h, src/gerbv.c: Added menu selection for units. Decreased width of status bar. This closes the too wide window problem in bug #615475. The default minimum height is still too high to fit in an 800x600 display. By limiting the number of files to 17 or so this problem is also solved. 2002-09-29 Anders Eriksson * src/gerber.c, src/gerbv.c, src/gerbv_screen.h: Removed last traces of IMG_EXTRA hack. Now using proper aperture width to increase width of bounding box. This may give slightly too big bbox, but it is better than before. I consider this to close bug #605985. 2002-09-17 Stefan Petersen * configure.in: exportpng is configured in default and removed if asked (--disable-exportpng). * configure.in, acconfig.h, src/gerbv_screen.h: Setting of MAX_FILES from ./configure. 2002-09-09 Stefan Petersen * src/gerbv.c: Added version number in main windows title. 2002-09-07 Stefan Petersen * src/batch.c, src/draw.c, src/gerb_image.h, src/gerber.c, src/gerber.h: Changed how multiquadrant circles are supported. Now it's more of a state, before it was considered an interpolation. Therefore not all multiquadrant circles were detected as such and got defined wrong. Some parts of the EAGLECAD_KLUDGE was removed, though EagleCad had some other surprises in store. * src/amacro.[hc], draw.c, draw_amacro.[hc]: Dynamic allocation of stack when drawing aperture macros. Closes the evil bug 603147. 2002-09-02 Stefan Petersen * src/batch.c, src/draw.c, src/gerb_image.h, src/gerber.c: Polygon drawing got it's own gc (pgc) since we must have our own outline pen size. Now we don't have to have an aperture defined to be able to draw polygon areas. Closes bug 602965. * Removed PAREA_FILL as an interpolation. Has only PAREA_START and PAREA_END left so the application has to keep track if it's in polygon area fill or not by itself. PAREA_FILL was not a proper "interpolation", it is instead any of the other interpolations. Closes bug 603146. 2002-09-01 Stefan Petersen * src/draw.c: Polygon Area Fill could never have worked at all since number of points reported to gdk_draw_polygon always was zero. 2002-08-31 Anders Eriksson * src/gerbv.c (redraw_pixmap): Removed redundant bounding box calculation. 2002-08-27 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h, src/gerbv_icon.h: Calculate proper initial translation when doing autoscale. Center image. Added #define for extra 0.1 inches in autoscale. New icon image. Also added outline debugging code (within #ifdef's). 2002-08-27 Andreas Andersson * src/drill.c: Minor change to the drill file format guessing logic to allow for yet another special case. 2002-08-27 Stefan Petersen * src/gerbv.c: Fixed a couple of minor memoryleaks in color allocation with valgrind after a tips from Anthony J Bybell. 2002-08-10 Stefan Petersen * src/gerbv.c, src/Makefile.am, files2tag.txt modified, src/scm_gerber.[hc] removed, src/batch.[hc] added: All batch functionality broken out to one place, ie batch.[hc]. 2002-08-09 Stefan Petersen * src/gerbv.c: Removed two lines causing zoom to stop work when a non-loaded layer recently had been selected or deselected. I didn't find a reason for these two lines to be there. Maybe there was... Closes bug 593109. * src/gerbv.c, src/gerbv_screen.h, man/gerbv.1.in: Added activation/deactivation via the keyboard. Closes feature request 593104. Also updated the man page with this info and fixed other minor stuff. 2002-08-04 Stefan Petersen * src/gerbv.c, src/gerbv_screen.h: Added superimposing selectable function to be used when you put "layer upon layer". I call it superimposing functions. Hope it's correct english. * man/gerbv.1.in: Minor layout changes and added part on superimposing functions. * src/gerbv.c: Fixed GTK asserts popping up when starting gerbv without any files loaded. 2002-08-01 Stefan Petersen * src/draw.[hc], src/gerbv.c: Changed how layers are created and stored to be able to be displayed on top of each other. This is based on a grand idea from Dino Ghilardi. 2002-07-24 Andreas Andersson (e92_aan@e.kth.se) * src/drill.c: Changed the parser to catch undefined tools and insert default values. It warns the user, though. Fixed a slight bug in min/max coordinate finding. 2002-07-16 Stefan Petersen * src/gerbv.c: Fixed bug 573016, some gerbers not drawn. always do fabs on floats not abs. * src/gerb_image.[hc], gerber.c: Parses and stores %IN% ie the image name. 2002-07-15 Anders Eriksson * src/gerbv.c, src/gerbv_icon.h: Added application icon. 2002-07-13 Stefan Petersen * configure.in: Added --with-gtk-config to fit FreeBSD after patch from Bruno Schwander . * example/ekf/README: Fixed bug 578583 basically saying that this example shouldn't work. -- Release 0.0.9 -- 2002-07-06 Stefan Petersen * configure.in: Updated version to 0.0.9. * man/gerbv.1.in: Updated man page with new features. 2002-07-05 Anders Eriksson * src/gerbv.c: Save a widget by adding a leading space in statusbar. 2002-07-04 Anders Eriksson * src/gerbv.c: Statusbar => Label to allow setting a fixed width font and thus avoid getting the coordinates to move as the number of digits change. Moved font names to header file. We should consider using a rc-file for font names and colours and stuff. Made status bar not expandable. 2002-07-02 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h: Macrofied coordinate unit conversions to have the constants in one place. Converted sprintf()s to safer snprintf()s. 2002-07-01 Anders Eriksson * src/gerbv_screen.h: Bounding box needs to be doubles, not ints. * src/gerbv.c (motion_notify_event): Finally it seems I got the absolute coordinates right. Partly closes feature request 567965 (still need to add error messages and fix the layout). * Fixed some of the layout issues. Now uses only one statusbar widget instead of three. The message is composed from three strings. Still no error messages. 2002-06-20 Anders Eriksson * src/gerbv.c: Mils are 0.001 inch and not 0.01, thanks Dan! This closes bug #571097. 2002-06-19 Anders Eriksson * src/gerbv.c (motion_notify_event): py, not px! * src/gerbv.c, src/gerbv_screen.h, src/draw.c: Added bounding box translations to get correct gerber coordinates (second try, did I make it?). 2002-06-18 Stefan Petersen * src/gerbv.c: Added background color selection. Closes feature request 557365. 2002-06-17 Anders Eriksson * src/gerbv_screen.h: added msgid for stausbar. * src/gerbv.c: Changed coordinate output both in statusbar and in measure mode. Now using mils and mms as units. Coordinates are now correct in respect to the gerber coordinate system (at least that's what I think). Too much information is shown in the statusbar, we will have to add unit selection (either mils or mms). Minor layout change for statusbar (I need to learn gtk layout better!). 2002-06-17 Stefan Petersen * src/draw.c: Ignored if lines were using rectangular apertures to draw. Closes bug 567128. 2002-06-13 Anders Eriksson * src/gerbv.c, src/gerbv_screeen.h: Added statusbar, prints cursor position as well as distance when measuring. 2002-06-12 Stefan Petersen * src/gerbv.c: Fixed autoscale() not to translate image out of window. Happened after fix for negative coordinates. Should translate image to center of window. * src/draw.c: Moved setting off err_gc outside loop so it's always done, even if you don't need it. 2002-06-12 Anders Eriksson * src/gerbv.c (draw_zoom_outline): Fix division by zero when drawing a zoom box with no delta y. Closes bug 567166. 2002-06-11 Stefan Petersen * src/gerb_file.c: Changed ENODATA to EIO, which is more portable. Closes bug 567179. * src/gerbv.c: It is now possible to draw images with negative coordinates. Closes bug 548094. * src/draw.[hc],src/draw-amacro.[hc], src/Makefile.am: Split out aperture macro stuff from draw.c to a separate file, draw_amacro.c. * src/draw_amacro.c: Fixed bug when drawing primitive 4 causing rotation to be wrong. Thanks to Jonas (you know who you are) for the excellent files. * src/draw_amacro.c: Changed interpretation of "closed shape" in primitive 4. If first point is the same as the last point it's a closed shape, ie filled according to my interpretation. Don't know if it's a correct interpretation. 2002-06-10 Anders Eriksson * src/gerbv.c: Centered outline zoom uses shift instead of control, use shift before clicking with button three to initiate centered outline zoom (rm:ed switching between centered and plain outline). Changed distance output format to add more digits. 2002-06-09 Anders Eriksson * src/gerbv.c: Fix actual zoomed area for centered outline zooming. 2002-06-09 Anders Eriksson * src/gerbv.c: Set cross hair cursor as soon as shift key is pressed (in normal mode, i.e. not zoom outline). Added centered zoom outline mode (closes Feature Request 553452). 2002-06-09 Anders Eriksson * src/gerbv.c: Added measure distance color. Added actual zoom box for zoom outline mode (this shows the area that will be included when zooming, displayed as dashed lines). Use cross-hair cursor when measuring distance. 2002-06-08 Anders Eriksson * src/gerbv.c (motion_notify_event, expose_event): Don't redraw entire image when drawing zoom outline and measured distance. This makes the outline follow much more smoothly. The side effect in measure mode is that several measures may be visible simultaneously. I am not sure if this is a bug or a feature. :) 2002-06-08 Stefan Petersen * src/gerbv.c: Setting up a watch while running export_image. * configure.in: Adding a check for libpng when export_png enabled. 2002-06-07 Anders Eriksson * src/gerbv.c (expose_event): Center distance strings properly, get string height to properly space the two lines independant of the resolution (dpi). Minor cleanups. 2002-06-07 Stefan Petersen * src/draw.c, src/gerb_image.h, src/gerber.c: Now handles negative layer polarity (%LP%)! After fixing bug 557368 this was simple to add. Tested with files from PCB. 2002-06-06 Stefan Petersen * src/gerbv.c, src/gerbv_screen.h: Added "reload files", gerbv rereads all loaded files and display them. Usefull if you have an external gerber manipulation tool. 2002-06-06 Anders Eriksson * src/gerbv.c, src/gerbv_screen.h: Added a crude measurement tool, renamed screen.zstart_[xy] since they are now used for measure- ment also. To use this tool hold down while pressing button 1 (the leftmost). This functionality still needs some work. 2002-06-06 Stefan Petersen * src/draw.c, src/gerb_image.h, src/gerber.c: Added counting and storing of number of corners in polygons, so drawing of polygons can use dynamically allocated memory. Hard coded array size gave horrible result with submitted file from David Cussans with a lot of corners in the polygons. 2002-06-05 Stefan Petersen * src/gerbv.c: Added check to autoscale so scale don't screw up everything. 2002-06-02 Stefan Petersen * src/gerb_image.h, src/gerber.c: Thanks to Stephen Adam I now know what %IC??*% means (Input Code) and have added it to the parser. 2002-05-18 Stefan Petersen * configure.in, acconfig.h, src/Makefile.am, src/gerbv.c, src/gerbv_screen.h, src/exportimage.[hc], CONTRIBUTORS: Added "export image to PNG" contributed by Dino Ghilardi. Thanks! Currently not default, use --enable-exportpng when running configure. 2002-05-17 Stefan Petersen * src/gerbv.c, src/gerbv_screen.h: Split out the global screen variable and it's struct to simplify future split of gerbv.c. * acconfig.h, configure.in, src/gerbv.c, scm_gerber.c: Prepared phase out of Guile by changing default to exclude Guile inclusion.Change flag disable-batch to enable-batch during configure and changing the variable NO_GUILE to GUILE_IN_USE. 2002-05-10 Stefan Petersen * src/gerb_image.*, src/gerber.*, src/gerbv.c: Moved verify_gerb to gerb_image and renamed it to gerb_image_verify so drill file parsing and gerber file parsing could split them. Done after receiveing Excellon file without drillfile sizes (Innoveda/PADS Power PCB) from Dino Ghilardi. * src/gerb_file.c: Improved error reporting. 2002-05-08 Anders Eriksson * src/gerbv.c (zoom_outline): Prevent division by zero by disallowing too small zoom areas in outline mode. Allocate a separate outline zoom color. Center outline zoom area instead of using upper left corner as translation points. 2002-05-08 Stefan Petersen * INSTALL: Changed gschem->gerbv * src/gerbv.c: Remember where we loaded file from last time and start file selection from there. 2002-05-07 Anders Eriksson * src/gerbv.c (zoom_outline): Added zoom outline support and scaled zoom step (zoom 10% of current scale instead of a fixed number of 10). Some comments in old code. The outline drawing could probably be optimized quite a bit (it currently piggybacks on the expose event). With this functionality it is easier to note the excessive memory usage when zooming in too far. -- Release 0.0.8 -- 2002-05-05 Stefan Petersen * configure.in: Updated VERSION. * src/gerbv.c: If gerbv was started without any files loaded, the watch mouse pointer was running all the time. 2002-05-03 Anders Eriksson * AUTHORS: Corrected my e-mail address 2002-05-02 Anders Eriksson * src/gerbv.c: Made redraw_pixmap() and image2pixmap() interruptible by calling g_main_pending() at regular intervals and registering an idle function to redraw the pixmap at a later time if there are pending events to process. This partly fixes 550319. Also added the event to the data sent to the zoom function since this allows us to read the mouse position at the event generation and not at processing time which we used to do (giving a very confusing behaviour if we can't keep up with events). 2002-05-02 Stefan Petersen * src/draw.c: Now ovals are ovals and not ellypses. Closes bug 548099. * HACKING, AUTHORS, CONTRIBUTORS: Updated with more authors and contributors. Also extended HACKING to include ChangeLog and code format. * src/gerbv.c: Autoscale is more correct, though not completely perfect. Closes bug 550795. 2002-04-29 Anders Eriksson * src/gerbv.c: Improved zoom. Now zooming around image center when zooming from menu and around mouse pointer when zooming using the mouse. There seems to be some (small) rounding error in the centering code, but it is very small. Closes 548128. 2002-04-27 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Number constants replaced with an enumeration type. Also error in zooming comments fixed. * man/gerbv.1.in: Added blurb about zooming. * src/gerber.c: Bug 549602 fixed so format statements are completely handled. 2002-04-27 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Changed name for all *open* functions to *load*. Implemented "unload file" in right-click popup, which closes feature req. 548124. 2002-04-24 Stefan Petersen (spe@stacken.kth.se) * src/gerb_file.c: Fixed bug causing segfault when opening empty file (bug 548578). 2002-04-24 Stefan Petersen (spe@stacken.kth.se) * man/gerbv.1: Removed. * man/gerbv.1.in: Created, so configure can add version of gerbv automagically. Also added blurb about right-click thing. * configure.in: man/gerbv.1 is created from man/gerbv.1.in. 2002-04-24 Stefan Petersen (spe@stacken.kth.se) * example/orcad/*: Added after submission from and with permission from Dino Ghilardi. 2002-04-10 Stefan Petersen (spe@stacken.kth.se) * src/gerber.c: Fixed mq arcs so circles are circles and and width/height are correctly calculated. Closes bug #541089. Hopefully. 2002-04-09 Stefan Petersen (spe@stacken.kth.se) * src/gerber.c: Fixed draw direction of arcs reported in bug #541089. Not drawn D3 and VR1, and wrong size on some transistors, still open. 2002-04-03 Stefan Petersen (spe@stacken.kth.se) * src/gerber.c, src/gerber.h: Fixed some numerical constants in verify code. 2002-04-03 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Added color selection on layers. * TODO: Added zooming and gerber layers. 2002-02-10 Stefan Petersen (spe@stacken.kth.se) * src/draw.c: Added inclusion of string.h as pointed out by Dan McMahill. -- Release 0.0.7 -- 2002-02-03 Stefan Petersen (spe@stacken.kth.se) * src/draw.c: Fixed bugs in drawing primitive 6 and 7 after verification. The last primitives... * example/am-test/am-test.gbx: The verification suite for aperture macros. 2002-01-06 Stefan Petersen (spe@stacken.kth.se) * src/amacro.c: Parser handles negative immediate values. * src/draw.c: Load of minor bugfixes after verification like rotate points in the other direction, line wiidths constant, wrong indeces. * src/gerber.c: Rewrote parse_aperture_defintion to handle aperture defintions without parameters. 2002-01-06 Stefan Petersen (spe@stacken.kth.se) * src/draw.c: All primitive macros are implemented (though not completely) and passed the MS-test; they compile. Now it's verify, verify and verify. 2001-12-31 Stefan Petersen (spe@stacken.kth.se) * src/draw.c: Started to add functions to be able to draw aperture macros too. Some aperture macro primitives are half way implemented, so the examples in the distribution should work. Though not 100% properly. 2001-12-30 Stefan Petersen (spe@stacken.kth.se) * src/amacro.[hc]: Added, even though I haven't executed an aperture macro program yet. But parsing seems stable. * src/gerb_image.[hc], gerber.c, src/Makefile.am: Calls and keeps track of parsing of aperture macros. * doc/aperturemacro.txt: simple text on the "program code" generated when parsing aperture macros. 2001-12-29 Andreas Andersson (e92_aan@e.kth.se) * src/gerb_file.c: Fixed gerb_fgetstring() to not write after the end of the allocated array. * src/gerber.c: Removed small memory leak in parse_aperture_definition() 2001-12-29 Andreas Andersson (e92_aan@e.kth.se) * src/drill.c: Autodetection routine changed back to original style to allow special cases needed with output from some CAD systems. * src/gerb_file.c: Error check for mmap() added to stop gerbv from segdumping when trying to open a directory instead of a file. 2001-12-29 Stefan Petersen (spe@stacken.kth.se) * src/gerb_file.[hc], src/gerber.c: Added function gerb_fgetstring and used it. -- Release 0.0.6 -- 2001-12-14 Stefan Petersen (spe@stacken.kth.se) * src/draw.c : Removed gdk_gc_set_line_attribute when drawing a point. * src/gerbv.c: Added autoscaling and autocentering, both as a menu option (Zoom/Fit) and when loading a file. 2001-12-11 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c : Removed prelighting on buttons and changed the "random function" creating colors. Also fixed "clear all" remaining after the pan speedup rewrite. 2001-12-10 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c : Forgot to check if we had any pixmap to draw. 2001-12-09 Stefan Petersen (spe@stacken.kth.se) * src/gerber.c: Fixed small bug in min/max calculation which caused big problems. * src/gerbv.c: Major rewrite of panning code giving major improvements in screen update speed. 2001-12-07 Stefan Petersen (spe@stacken.kth.se) * src/draw.[hc], src/gerbv.c : Pseudo optimized drawing. * src/gerb_file.c, src/gerbv.c: Fixed bug causing segfault when file didn't exist (oops) and pushed error messages out of gerb_file.c. And if a file (of many) given at commandline doesn't exist, the next file is tried instead of halting. 2001-12-06 Stefan Petersen (spe@stacken.kth.se) * src/drill.c, src/gerb_image.c, src/gerber.c, src/gerbv.c: Exchanged bzero with memset for further portability. * scheme/Makefile.am: gerb-debug.scm gets installed too. 2001-12-06 Andreas Andersson (e92_aan@e.kth.se) * src/drill.[hc]: Very minor change to allow tool number 0. 2001-12-03 Stefan Petersen (spe@stacken.kth.se) * src/Makefile.am, src/color.c, src/gerber.c, src/scm_gerber.c: Turned on -Wall and cleaned up after it. 2001-12-03 Stefan Petersen (spe@stacken.kth.se) * src/drill.h, src/gerber.h, src/gerbv.c: Fixed bug caused by last minute namechange of gerb_file.[hc]. * src/gerb_file.[hc]: Added functions gerb_fgetint and gerb_fgetdouble. * src/drill.c, src/gerber.c: Utilize the new file read functions. 2001-12-02 Stefan Petersen (spe@stacken.kth.se) * src/gerb_file.[hc], src/drill.[hc], src/gerber.[hc], gerbv.c: Changed method of file IO from fgetc to mmap. Speed increase up to 3 times noted (loading all of jj's file at ones). 2001-12-02 Stefan Petersen (spe@stacken.kth.se) * src/drill.c: drill_file_p recoded so it seems to work better. * src/gerbv.c: Removed and cleaned up "open file" code. * src/gerbv.c, src/color.c, src/color.h: Fixed the whole mess with colors. Now colors doesn't set any limits on how many files you can load. It also checks that you don't give too many files to the program. 2001-12-02 Andreas Andersson (e92_aan@e.kth.se) * src/gerbv.c: Changed radiobuttons to togglebuttons, redraw_pixmap() now shows all switched on images. Slight changes to the zoom/translate code (it still doesn't work as intended, though). Added mouse commmands for zooming without scrollwheel. screen.scale no longer goes down to 0 when zooming out. * src/draw.h, src/draw.c: Floating point calculations that are converted to ints for display are now rounded to the nearest int rather than always truncated down (or was it up?) Macro round(x) added to make that prettier. Removed minor stuff that caused warnings with -Wall flag to gcc. 2001-11-27 Andreas Andersson (e92_aan@e.kth.se) * src/gerbv.c: Added autodetection of file type. * src/drill.c: Corrected stupid bug in autodetection. 2001-11-27 Andreas Andersson (e92_aan@e.kth.se) * src/drill.h, src/drill.c: Added drill_file_p(); which checks whether a file could be a drill file or not. 2001-11-26 Stefan Petersen (spe@stacken.kth.se) * configure.in: Now --data works when running ./configure. A patch from Wojciech Kazubski 2001-11-26 Andreas Andersson (e92_aan@e.kth.se) * src/drill.c: Coordinate parsing now works on coordinates with decimal points. More M codes and some G codes recognized. Most importantly absolute/incremental mode and zero setting could work, though it hasn't been properly tested yet. 2001-11-23 Stefan Petersen (spe@stacken.kth.se) * src/gerb_image.h, src/draw.c, src/gerber.c, src/scm_gerber.c: Are now able to parse and display polyogon area fill codes. 2001-11-21 Andreas Andersson (e92_aan@e.kth.se) * src/drill.c: The format guessing code now guesses right for one more format. More M codes recognized (and later ignored). 2001-11-20 Stefan Petersen (spe@stacken.kth.se) * src/scm_gerber.c: Backend didn't receive the last entry in the netlist due to bad loop constraint. * src/gerber.c: Made sure angles always are positive when calculating multi quadrant ones. * src/gerber.c: Improved error detection by checking that all part of an image is there. * src/gerber.c: Fix for EagleCad caused other Gerber files to fail. Only D-code 1-3 on a line should also be considered as a change. 2001-11-15 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Tooltips over radio buttons with name of loaded file. -- Release 0.0.5 -- 2001-11-14 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Changed speed key for zooming in to Alt-O. * configure.in: Changed version number for release. 2001-11-09 Stefan Petersen (spe@stacken.kth.se) * src/gerb_image.[hc]: Added. * src/drill.[hc], src/gerber.[hc], src/scm_gerber.[hc]: Changed to utilize the new "class", gerb_image. 2001-11-07 Stefan Petersen (spe@stacken.kth.se) * src/draw.c, src/gerber.c: Implemented multi quadrant arcs. Calculated with a separate function; should be able to be combined with single quadrant calculations. Not properly tested since I need better examples. 2001-11-06 Andreas Andersson (e92_aan@e.kth.se) * src/drill.h, src/drill.c: parse_drillfile() now ignores unstandard text in headers. Also, it now returns the actual unit used (it used to return the unit of the input file). Minor fixes, mostly moved stuff around. 2001-11-03 Stefan Petersen (spe@stacken.kth.se) * src/drill.c, src/scm_gerber.c: Fixed bug causing backend first not to generate aperture list and then barfing when trying. 2001-11-03 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Added command line -d|--drill support for drill files both in graphical mode and batch mode. Though are drill file tool/apertures not properly handled by ->scheme converter. * man/gerbv.1: Changed man page to reflect the new switches. 2001-11-03 Stefan Petersen (spe@stacken.kth.se) * src/gerber.[hc]: Cleaned up code after latest hack. * src/scm_gerber.c: Changed format of list delivered to the backend; no delta center points. Now it's all calculated center points and angles. * scheme/gerb-ps.scm: Accept the new list, but doesn't do anything with it yet. 2001-11-03 Stefan Petersen (spe@stacken.kth.se) * src/gerber.c: Inserted check for undefined apertures that was earlier removed. 2001-11-02 Stefan Petersen (spe@stacken.kth.se) * src/gerber.h, src/gerber.c, src/draw.c: Now almost all calculation for circles is done when parsing and not when (re)drawing. * src/gerbv.c: Removed two unnecessary defines. 2001-10-31 Stefan Petersen (spe@stacken.kth.se) * src/gerbv.c: Added zooming with scroll wheel on mouse. * README: Added info on how to configure XFree86 for scroll mouse. 2001-10-28 Stefan Petersen (spe@stacken.kth.se) * src/gerber.[hc]: Fixed bug causing parser to reports points with wrong aperture. Pointed out by Dan Christian. 2001-10-30 Andreas Andersson (e92_aan@e.kth.se) * src/drill.c, src/gerber.h, src/gerber.c Moved new_image() to the correct place 2001-10-28 Andreas Andersson (e92_aan@e.kth.se) * src/Makefile.am Added drill.c to SOURCES since it seems to work well enough for some testing. * src/drill.c Added an input file format guessing function. Some kludges to get around scaling problems. * src/gerbv.c Separated File/Open command into File/Open Gerber... and File/Open Drill... Added functions to open drill files. * src/*.c: A few speling errors fixed. 2001-10-28 Stefan Petersen (spe@stacken.kth.se) * src/draw.c, src/gerber.h, src/gerber.c, src/scm_gerber.c: aperture array is now full size and array index is very simple. 2001-10-27 Stefan Petersen (spe@stacken.kth.se) * src/*.[ch]: typedef:ed all internal structs to *_t -- Release 0.0.4 -- 2001-10-27 Stefan Petersen (spe@stacken.kth.se) * src/gerber.[hc]: EagleCad generates broken Gerber. I kindly detect and then tries to run as nothing happened. Disable kludge with commenting out EAGLECAD_KLUDGE in src/gerber.h. This was pointed out to me by Dan Christian and later confirmed by Fredrik Jonsson sent me some examples. Thanks guys! * AUTHORS/CONTRIBUTORS: Added latest bunch of contributing people. * configure.in: Updated version to 0.0.4 before release. 2001-10-24 Stefan Petersen (spe@stacken.kth.se) * src/draw.[hc]: Added. Extracted drawing functions from gerbv.c. * src/gerbv.c: Removed add drawing functions into draw.c. Also minor clean ups. Fixed #def's of Guile support. * src/Makefile.am: Added draw.c as src file. 2001-10-22 Stefan Petersen (spe@stacken.kth.se) * example/*: Cleaned out numpres.pcb.* to a separate dir and added a example received from Joachim Jansen on separate aperture files. 2001-10-21 Stefan Petersen (spe@stacken.kth.se) * gerbv.c: Changed how cw and ccw is handled when drawing arcs to avoid swapping of start and stop points. * gerbv.c: Red dots at "aperture macros wanna-be's" scale with ordinary scale, so they don't disappear when scaling around. 2001-10-09 Stefan Petersen (spe@stacken.kth.se) * gerber.h, gerber.c: Added 'D' as possible Format Statement after patches from Uwe Bonnes . Thanks! * scm_gerber.c: Broke out omit_zeros_t to scm type conversion and added 'explicit to this type. 2001-09-03 Stefan Petersen (spe@stacken.kth.se) * configure.in: fixed bug when testing for opt_backend_dir causing configure to fail at least on Solaris. * INSTALL: updated with info now that automake's in use. 2001-09-02 Stefan Petersen (spe@stacken.kth.se) * build-release, rebuild-conf: missing files when running automake are now copied instead of linked. Thanks Dan for reporting this. 2001-08-31 Stefan Petersen (spe@stacken.kth.se) * Splitted AUTHORS to AUTHORS and CONTRIBUTORS * src/gerb-ps.scm: removed * build_release uses anonymous cvs from sourceforge to build the release. * src/scm_gerber.c, src/gerbv.c: Now the scheme backend receives the name of the parsed file * scheme/gerb-ps.scm: Utilizes the above feature by creating output filename by prepending input filename with ".ps" gerbv-2.7.0/config.sub0000755000175000017500000010676313423533412014505 0ustar carstencarsten#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2016 Free Software Foundation, Inc. timestamp='2016-11-04' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2016 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pru-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; asmjs) basic_machine=asmjs-unknown ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; e500v[12]) basic_machine=powerpc-unknown os=$os"spe" ;; e500v[12]-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` os=$os"spe" ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ | -onefs* | -tirtos* | -phoenix* | -fuchsia*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -ios) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gerbv-2.7.0/configure.ac0000644000175000017500000003434213421555713015007 0ustar carstencarstendnl configuration script for gerbv dnl dnl gEDA - GNU Electronic Design Automation dnl This file is part of gerbv. dnl dnl Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se) dnl dnl $Id$ dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA AC_INIT([gerbv], [2.7.0]) AC_CONFIG_SRCDIR([src/gerbv.c]) AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.9]) AC_GNU_SOURCE AC_CONFIG_MACRO_DIR([m4]) dnl Create a configuration header AM_CONFIG_HEADER([config.h]) dnl Initialize maintainer mode AM_MAINTAINER_MODE dnl Internationalisation AM_NLS AM_GNU_GETTEXT AM_GNU_GETTEXT_VERSION([0.19]) #AX_DESKTOP_I18N dnl man-page internationalization AC_PATH_PROG([po4a_gettextize],[po4a-gettextize]) AC_PATH_PROG([po4a_translate],[po4a-translate]) if test -z "$po4a_gettextize" -o -z "$po4a_translate" ; then AC_MSG_WARN([po4a was not found. If you want to change and compile \ internationalized documentation, please install po4a]) else have_po4a=yes fi dnl po4a depend on onsgmls (opensp) or nsgmls (sp) AC_PATH_PROG([onsgmls],[onsgmls]) if test -n "$onsgmls" ; then have_onsgmls=yes fi AC_PATH_PROG([nsgmls],[nsgmls]) if test -n "$nsgmls" ; then have_nsgmls=yes fi if test "x$have_nsgmls" = "x" -a "x$have_onsgmls" = "x"; then AC_MSG_WARN([no onsgmls nor nsgmls was found. If you want to change \ and compile internationalized documentation, please install opensp or sp]) fi AM_CONDITIONAL(HAVE_PO4A, test "x$have_po4a" = "xyes" -a "x$have_onsgmls" = "xyes" -o \ "x$have_po4a" = "xyes" -a "x$have_nsgmls" = "xyes") ############################################################ # # Checks for cygwin/mingw32 # AC_CANONICAL_HOST # if you want -mno-cygwin, then add it to MINGW_CFLAGS or CYGWIN_CFLAGS # in your configure environment. After all you may or may not # want to always force -mno-cygwin on all users. AC_MSG_CHECKING([for windows]) WIN32=${WIN32:-no} case $host_os in *cygwin* ) CFLAGS="$CFLAGS ${CYGWIN_CFLAGS}" CPPFLAGS="$CPPFLAGS ${CYGWIN_CPPFLAGS}" ;; *mingw32* ) WIN32=yes CFLAGS="$CFLAGS ${MINGW_CFLAGS:--mms-bitfields -mwindows}" CPPFLAGS="$CPPFLAGS ${MINGW_CPPFLAGS:--mms-bitfields -mwindows}" ;; esac AC_MSG_RESULT([$WIN32]) AC_SUBST(WIN32) AM_CONDITIONAL(WIN32, test x$WIN32 = xyes) GERBV_PATH_DELIMETER=":" GERBV_DIR_SEPARATOR_S="/" GERBV_DIR_SEPARATOR_C='/' if test "x$WIN32" = "xyes" ; then GERBV_PATH_DELIMETER=";" GERBV_DIR_SEPARATOR_S="\\\\" GERBV_DIR_SEPARATOR_C='\\' fi AC_DEFINE_UNQUOTED(GERBV_DIR_SEPARATOR_C,'$GERBV_DIR_SEPARATOR_C',[Directory separator char]) AC_DEFINE_UNQUOTED(GERBV_DIR_SEPARATOR_S,"$GERBV_DIR_SEPARATOR_S",[Directory separator string]) AC_DEFINE_UNQUOTED(GERBV_PATH_DELIMETER,"$_PATH_DELIMETER",[Search path separator string]) # # ############################################################ ############################################################ # # Checks for our configure args # dnl --enable-debug debug=0 AC_ARG_ENABLE(debug, [ --enable-debug Enable fairly verbose debug output], [ if test $enableval = "yes"; then debug=1 fi ], [ debug=0 ]) AC_DEFINE_UNQUOTED(DEBUG, $debug, [Define to 1 to enable debugging code]) AC_DEFINE_UNQUOTED(GERBV_DEFAULT_BORDER_COEFF, 0.05, [Default border coefficient for export]) dnl --enable-unit-mm : Set default unit for coordinates in status bar to mm AC_ARG_ENABLE(unit-mm, [ --enable-unit-mm Set default unit for coordinates in status bar to mm], [ if test "$enableval" = "yes"; then default_unit="mm" fi ]) if test "$default_unit" = "mm"; then AC_DEFINE(GERBV_DEFAULT_UNIT, GERBV_MMS, [Default unit to display in statusbar]) else AC_DEFINE(GERBV_DEFAULT_UNIT, GERBV_MILS, [Default unit to display in statusbar]) fi # # ############################################################ ############################################################ # # Preliminary checks # dnl Build time sanity check... (?) AM_SANITY_CHECK dnl Checks for programs. AC_PROG_CC AC_PROG_CC_C99 if test "x$enable_dxf " != "xno" ; then AC_PROG_CXX fi AC_PROG_MAKE_SET AC_PROG_INSTALL AC_PROG_LIBTOOL if test "x$WIN32" = "xyes" ; then AC_CHECK_TOOL(WINDRES, windres, no) if test "$WINDRES" = "no"; then AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.]) fi fi # if we have gcc then add -Wall if test "x$GCC" = "xyes"; then if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then CFLAGS="$CFLAGS -Wall" fi fi # Check for ImageMagick tools used by the testsuite AC_PATH_PROG(IM_ANIMATE, animate, notfound) AC_PATH_PROG(IM_COMPARE, compare, notfound) AC_PATH_PROG(IM_COMPOSITE, composite, notfound) AC_PATH_PROG(IM_CONVERT, convert, notfound) AC_PATH_PROG(IM_DISPLAY, display, notfound) AC_PATH_PROG(IM_MONTAGE, montage, notfound) missing_magick="" test "${IM_ANIMATE}" != "notfound" || missing_magick="${missing_magick} animate" test "${IM_COMPARE}" != "notfound" || missing_magick="${missing_magick} compare" test "${IM_COMPOSITE}" != "notfound" || missing_magick="${missing_magick} composite" test "${IM_CONVERT}" != "notfound" || missing_magick="${missing_magick} convert" test "${IM_DISPLAY}" != "notfound" || missing_magick="${missing_magick} display" test "${IM_MONTAGE}" != "notfound" || missing_magick="${missing_magick} montage" AC_MSG_CHECKING([if all ImageMagick tools needed for the testsuite were found]) if test "X${missing_magick}" != "X" ; then AC_MSG_RESULT([no. The testsuite will be disabled because the following tools from the ImageMagick suite were not found: ${missing_magick} No loss in gerbv functionality should be experienced, you just will not be able to run the regression testsuite. ]) have_magick=no else AC_MSG_RESULT([yes]) have_magick=yes fi AM_CONDITIONAL(HAVE_MAGICK, test x$have_magick = xyes) # Check for pkg-config AC_PATH_PROG(PKG_CONFIG, pkg-config, no) if test "$PKG_CONFIG" = "no"; then AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH]) fi # Check GSettings support GLIB_GSETTINGS # # # ############################################################ ############################################################ # # Library checks # AC_CHECK_LIB(m, sin) # used by src/dynload.c (part of tinyscheme) AC_CHECK_LIB(dl, dlopen) # # ############################################################ ############################################################ # # GTK and cairo checks # PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, , [AC_MSG_ERROR([ *** Cairo > 1.2.0 required but not found. *** Please review the following errors: $CAIRO_PKG_ERRORS])] ) CAIRO_VER=`$PKG_CONFIG cairo --modversion` PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.18.0, , [AC_MSG_ERROR([ *** GTK >= 2.18.0 is required but was not found. Please review the following errors: $GTK_PKG_ERRORS])] ) GTK_VER=`$PKG_CONFIG gtk+-2.0 --modversion` # # ############################################################ ############################################################ # # dxflib with_dxf=no AC_MSG_CHECKING([if dxf should be enabled]) AC_ARG_ENABLE([dxf], [ --enable-dxf Enable DXF via dxflib [[default=no]]], [ if test "X$enable_dxf " != "Xno" ; then AC_MSG_RESULT([yes]) AC_CHECK_LIB(dxflib,main,, AC_MSG_ERROR([You have requested DXF support but -ldxflib could not be found])) with_dxf=yes AC_MSG_CHECKING([dxflib version]) AC_LANG([C++]) AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include #include #ifndef DL_VERSION # define DL_VERSION "undefined" #endif ]], [[ if (!strncmp("2.2.", DL_VERSION, 4) || !strncmp("2.5.", DL_VERSION, 4) || !strncmp("3.12.", DL_VERSION, 5)) return 0; return 1; ]])], AC_MSG_RESULT([yes]), AC_MSG_ERROR([untested dxflib version])) else AC_MSG_RESULT([no]) fi ], [ AC_MSG_RESULT([no]) ]) AM_CONDITIONAL(DXF, test x$with_dxf = xyes) # # ############################################################ ############################################################ # # ElectricFence with_efence=no AC_MSG_CHECKING([if ElectricFence debugging should be enabled]) AC_ARG_ENABLE([efence], [ --enable-efence Link with ElectricFence for malloc debugging [default=no]], [ if test "X$enable_efence" != "Xno" ; then AC_MSG_RESULT([yes]) AC_CHECK_LIB(efence,main,, AC_MSG_ERROR([You have requested ElectricFence debugging but -lefence could not be found])) with_efence=yes else AC_MSG_RESULT([no]) fi ], [ AC_MSG_RESULT([no]) ]) # # ############################################################ ###################################################################### # # desktop integration # AC_PATH_PROG(SETENV, env, []) AC_PATH_PROG(GTK_UPDATE_ICON_CACHE_BIN, gtk-update-icon-path, [true]) # Change default location for XDG files (MIME and Icons) AC_ARG_WITH(xdgdatadir, [ --with-xdgdatadir=path Change where the theme icons and mime registrations are installed [[DATADIR]]], [opt_xdgdatadir=$withval]) if test x$opt_xdgdatadir = x; then # path was not specified with --with-xdgdatadir XDGDATADIR='${datadir}' else # path WAS specified with --with-xdgdatadir XDGDATADIR="$opt_xdgdatadir" fi AC_SUBST(XDGDATADIR) AC_ARG_ENABLE(update-desktop-database, AC_HELP_STRING([--disable-update-desktop-database], [do not update desktop database after installation]),, enable_update_desktop_database=yes) AM_CONDITIONAL(ENABLE_UPDATE_DESKTOP_DATABASE, test x$enable_update_desktop_database = xyes) if test x$enable_update_desktop_database = xyes ; then AC_PATH_PROG(UPDATE_DESKTOP_DATABASE, [update-desktop-database], no) if test $UPDATE_DESKTOP_DATABASE = no; then AC_MSG_ERROR([Cannot find update-desktop-database, make sure it is installed and in your PATH, or configure with --disable-update-desktop-database]) fi fi # ###################################################################### AC_CHECK_HEADERS(unistd.h getopt.h string.h sys/mman.h sys/types.h sys/stat.h stdlib.h regex.h libgen.h time.h) AC_CHECK_FUNCS(getopt_long) AC_CHECK_FUNCS(strlwr) # for lrealpath.c AC_CHECK_FUNCS(realpath canonicalize_file_name) libiberty_NEED_DECLARATION(canonicalize_file_name) CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS $GTK_CFLAGS $CAIRO_CFLAGS" LIBS="$LIBS $GDK_PIXBUF_LIBS $GTK_LIBS $CAIRO_LIBS" CPPFLAGS="$CPPFLAGS $GTK_CFLAGS" ############################################################ # # scheme configure stuff # AC_DEFINE([STANDALONE], [0],[Scheme interpreter not used standalone]) AC_DEFINE([USE_DL],[1],[Dynamic linking in Scheme interpreter]) AC_DEFINE([SUN_DL],[1],[DL Sun method]) AC_DEFINE([USE_MATH],[1],[Math in Scheme interpreter]) AC_DEFINE([USE_ASCII_NAMES],[1],[ASCII names in Scheme interpreter]) AC_DEFINE([USE_COLON_HOOKS],[1],[Colon Hooks in Scheme interpreter]) AC_DEFINE([USE_STRING_HOOKS],[1],[String Hooks in Scheme interpreter]) AC_DEFINE([USE_INTERFACE],[1],[Use extension interface of Scheme interpreter]) # # ############################################################ ############################################################ # # Figure out relative paths # # standard autoconf variables CPPFLAGS="$CPPFLAGS -DPREFIXDIR=\\\"\${prefix}\\\"" CPPFLAGS="$CPPFLAGS -DBINDIR=\\\"\${bindir}\\\"" # these relative paths will be used to help locate init.scm # in the event that the installation directory is relocated. AC_MSG_CHECKING([for the bindir to datadir relative path]) adl_COMPUTE_RELATIVE_PATHS([bindir:datadir:bindir_to_datadir]) adl_NORMALIZE_PATH([bindir_to_datadir], [$GERBV_DIR_SEPARATOR_S]) AC_MSG_RESULT([$bindir_to_datadir]) AC_DEFINE_UNQUOTED(BINDIR_TO_DATADIR, "$bindir_to_datadir", [Relative path from bindir to datadir]) PKGDATADIR=${datadir}/${PACKAGE} AC_MSG_CHECKING([for the bindir to pkgdatadir relative path]) adl_COMPUTE_RELATIVE_PATHS([bindir:PKGDATADIR:bindir_to_pkgdatadir]) adl_NORMALIZE_PATH([bindir_to_pkgdatadir], [$GERBV_DIR_SEPARATOR_S]) AC_MSG_RESULT([$bindir_to_pkgdatadir]) AC_DEFINE_UNQUOTED(BINDIR_TO_PKGDATADIR, "$bindir_to_pkgdatadir", [Relative path from bindir to pkgdatadir]) AC_MSG_CHECKING([for the bindir to exec_prefix relative path]) adl_COMPUTE_RELATIVE_PATHS([bindir:exec_prefix:bindir_to_execprefix]) adl_NORMALIZE_PATH([bindir_to_execprefix], [$GERBV_DIR_SEPARATOR_S]) AC_MSG_RESULT([$bindir_to_execprefix]) AC_DEFINE_UNQUOTED(BINDIR_TO_EXECPREFIX, "$bindir_to_execprefix", [Relative path from bindir to exec_prefix]) # # ############################################################ AC_OUTPUT( Makefile \ src/Makefile \ src/libgerbv.pc \ scheme/Makefile \ \ share/glib-2.0/schemas/Makefile \ desktop/Makefile \ \ doc/PNG-print/Makefile \ doc/eagle/Makefile \ doc/html/Makefile \ doc/example-code/Makefile \ doc/Makefile \ man/Makefile \ \ intl/Makefile \ po/Makefile.in \ \ example/eaglecad1/Makefile \ example/nollezappare/Makefile \ example/numpres/Makefile \ example/jj/Makefile \ example/dan/Makefile \ example/ekf2/Makefile \ example/exposure/Makefile \ example/am-test/Makefile \ example/cslk/Makefile \ example/orcad/Makefile \ example/Mentor-BoardStation/Makefile \ example/pick-and-place/Makefile \ example/polarity/Makefile \ example/thermal/Makefile \ example/trailing/Makefile \ example/Makefile \ \ test/Makefile \ test/golden/Makefile \ test/inputs/Makefile \ \ win32/Makefile \ ) expandedXDGDATADIR=`eval "echo $XDGDATADIR"` AC_MSG_RESULT([ ** Configuration summary for $PACKAGE $VERSION: PREFIX: $PREFIX xdg data directory: $expandedXDGDATADIR CPPFLAGS: $CPPFLAGS CFLAGS: $CFLAGS LDFLAGS: $LDFLAGS LIBS: $LIBS GTK Version: $GTK_VER Cairo Version: $CAIRO_VER DXF via dxflib: $with_dxf Electric Fence Debugging: $with_efence ImageMagick: $have_magick (for test suite) ]) gerbv-2.7.0/doc/0000755000175000017500000000000013423533412013252 5ustar carstencarstengerbv-2.7.0/doc/Makefile.am0000644000175000017500000000204713421555713015317 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA SUBDIRS = PNG-print eagle html example-code EXTRA_DIST = Doxyfile.nopreprocessing aperturemacro.txt sources.txt image2pixmap.fig projectfiles.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/doc/eagle/0000755000175000017500000000000013423533412014327 5ustar carstencarstengerbv-2.7.0/doc/eagle/Makefile.am0000644000175000017500000000167313421555713016400 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=eagle2exc.pl eagle2exc.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/doc/eagle/eagle2exc.pl0000755000175000017500000000250713421555713016540 0ustar carstencarsten#!/usr/bin/perl -w if (scalar(@ARGV) < 3) { print "\nexcellon.pl <.drl file> <.drd file> \n\n"; print "Compiles Eagle's .drl drill definition file with generated\n"; print ".drd to a new Excellon .drd file containing the drill\n"; print "definitions. Eagle's .drl file may contain sizes in\n"; print "mil, in, mm and cm.\n\n"; exit; } open(DRLFILE, "$ARGV[0]") or die "can't open $ARGV[0]"; while () { $_ =~ tr/\r\n//d; @drills = (@drills,$_); } open(OUTFILE, ">$ARGV[2]") or die "can't open $ARGV[2]"; open(INFILE, "$ARGV[1]") or die "can't open $ARGV[1]"; print OUTFILE "M48\n"; foreach $drill (@drills) { ($nr = $drill) =~ s/.*(T[0-9]*).*/$1/; ($size = $drill) =~ s/.*T[0-9]*[^0-9]*([0-9\.]+).*/$1/; ($unit = $drill) =~ s/.*[0-9]([a-zA-Z]*).*/$1/; if (($unit eq "cm") || ($unit eq "CM")) { $size = sprintf("%0.3f",$size /2.54); } if (($unit eq "mm") || ($unit eq "MM")) { $size = sprintf("%0.3f",$size /25.4); } if (($unit eq "mil") || ($unit eq "MIL")) { $size = sprintf("%0.3f",$size / 1000); } print "found drill nr $nr with size $size and unit $unit\n"; print OUTFILE "$nr" . "C" . "$size\n"; } print OUTFILE "G90\nM72\n"; while () { print OUTFILE $_; } close DRLFILE; close INFILE; close OUTFILE; gerbv-2.7.0/doc/eagle/Makefile.in0000644000175000017500000003604513423533412016404 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc/eagle ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = eagle2exc.pl eagle2exc.txt MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/eagle/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/eagle/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/doc/eagle/eagle2exc.txt0000644000175000017500000000416513421555713016743 0ustar carstencarsten How to generate drill files from Eagle that gerbv likes By Daniel Dorau -- $Id$ -- Gerbv is basically able to read the Excellon files generated by Eagle, you have to make a few changes to them however. Gerbv expects the Excellon files to begin with a header defining the drill sizes used which Eagle's Excellon files are lacking. How does Eagle generate Excellon files? With Eagle's CAM processor you have the possibility to generate Excellon files of your board. For this you have to supply a file defining the drills available to the CAM processor. This file usually has the suffix .drl and is called Drill Rack in Eagle terms. It contains the drill sizes in the form T01 0.018in T02 0.036in and so on. Drill sizes may also be given in mil and mm while in seems to be the default. This drill rack file may be given by your board house or have been auto-generated by Eagle with drillcfg.ulp in which case simply all drill sizes used in your layout are written into a drill rack file. Now when you create an Excellon file with the given drill rack file, the CAM processor chooses which drill fits best for each hole using the given tolerance values. The CAM processor then outputs an Excellon file (default suffix .drd) and an information file (default suffix .dri). Within the Excellon file generated by Eagle there's no definition of the drill sizes used, it just takes the drills given in the drill rack file. However you can see in the .dri file which drills Eagle has chosen. So what you need to do to load your Excellon file into gerbv is just adding a proper header in front of your Excellon file defining the drills used by Eagle. You simply have to convert Eagle's drill rack file to a valid Excellon header and put it in front of the Excellon file generated by Eagle, then gerbv will know about the drill sizes. I hacked a small perl script which just does this and is called this way: ./excellon.pl The new Excellon file contains the needed drill definition and can be loaded into gerbv. That's all. gerbv-2.7.0/doc/example-code/0000755000175000017500000000000013423533412015615 5ustar carstencarstengerbv-2.7.0/doc/example-code/example2-input.gbx0000644000175000017500000000146513421555713021205 0ustar carstencarstenG04 Test drawing with circular apertures* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Note: aperture 11 has a round hole in it, but this shouldn't ever show when* G04 drawing with it (only should show in flashes)* %ADD11C,0.075X0.050*% G04 No hole, centered at 0,0 * G54D10* G04 Recenter to 0,0 G01X0Y0D02* G04 Draw a line segment* X00100Y0D01* G04 Turn off for a segment* X00200Y0D02* G04 Draw another line at angle* G54D11* X00300Y00100D01* G04 Turn off for a segment* X0Y00100D02* G54D10* G04 Turn on circular interpolation* G75* G03X0Y00300I0J00100D01* G04 Turn off for a segment* X00500Y00D02* G04 Draw a larger radius arc* G03X00350Y00150I-00250J-00050D01* G04 Turn off for a segment* X00250Y00200D02* G04 Draw a larger clockwise radius arc* G02X00350Y00350I00250J-00050D01* M02* gerbv-2.7.0/doc/example-code/example3-input.gbx0000644000175000017500000000102713421555713021200 0ustar carstencarstenG04 Test flashing of rectangular apertures* G04 Four groups of rectangular apertures are arranged in a square* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10R,0.050X0.080*% %ADD11R,0.080X0.050X0.025*% %ADD12R,0.050X0.025X0.025X0.0150*% G04 No hole, centered at 0,0 * G54D10* X0Y0D03* G04 Round hole, centered at 0.1,0 * G54D11* X00100Y0D03* G04 Square hole, centered at 0,0.1 * G54D12* X0Y00100D03* G04 Two, with round holes, slightly overlapping, centered at 0.1,0.1 * G54D11* X00100Y00090D03* X00100Y00110D03* M02* gerbv-2.7.0/doc/example-code/Makefile.am0000644000175000017500000000177413421555713017670 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2008 Julian Lamb ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=example1.c example1-input.gbx example2.c example2-input.gbx \ example3.c example3-input.gbx example4.c example4-input.gbx MOSTLYCLEANFILES = *~ gerbv-2.7.0/doc/example-code/example1.c0000644000175000017500000000336313421555713017510 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example1.c Description: Loads example1-input.gbx into a project, and then exports the layer back to another RS274X file. Instructions: Make sure you are in the example-code directory, and compile this program with the following command: gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example1.c -o example1 Run with the following command: ./example1 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ #include "gerbv.h" int main(int argc, char *argv[]) { /* create a top level libgerbv structure */ gerbv_project_t *mainProject = gerbv_create_project(); /* parse a Gerber file and store it in the gerbv_project_t struct */ gerbv_open_layer_from_filename (mainProject, "example1-input.gbx"); /* make sure we parsed the file */ if (mainProject->file[0] == NULL) g_error ("There was an error parsing the file."); /* export the first (and only) image in the project, which will be the one we just loaded */ gerbv_export_rs274x_file_from_image ("example1-output.gbx", mainProject->file[0]->image, NULL); /* destroy the top-level structure and free all memory */ gerbv_destroy_project (mainProject); return 0; } gerbv-2.7.0/doc/example-code/example1-input.gbx0000644000175000017500000000133013421555713021173 0ustar carstencarstenG04 Test drawing with polygon apertures* G04 Four small polygon fills aranged in a square G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Draw a rectangle with a rounded right side* G36* G01X0Y0D02* X00200Y0D01* G75* G03X00200Y00200I0J00100D01* X0Y00200D01* G04 Do not close with a final line, so let gerbv automatically close* G37* G04 Draw a simple square* G36* G01X00400Y0D02* X00600Y0D01* X00600Y00200D01* X00400Y00200D01* X00400Y0D01* G37* G04 Draw a small diamond* G36* G01X00100Y00300D02* X00200Y00400D01* X00100Y00500D01* X0Y00400D01* X00100Y00300D01* G37* G04 Draw a very-narrow slit* G36* G01X00500Y00300D02* X00510Y00300D01* X00510Y00500D01* X00500Y00500D01* X00500Y00300D01* G37* M02* gerbv-2.7.0/doc/example-code/example6.c0000644000175000017500000001516313421555713017516 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example6.c Description: Demonstrate how to embed a libgerbv render window into a new application to create a custom viewer Instructions: Make sure you are in the example-code directory, and compile this program with the following command (assumes you are using a newer version of gtk which uses cairo): gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example6.c -o example6 Run with the following command: ./example6 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ /* gerbv.h pulls in all glib and gtk headers for you */ #include "gerbv.h" #include /* this holds our rendering info like window size, scale factor, and translation */ gerbv_render_info_t screenRenderInfo; /* this holds all our layers */ gerbv_project_t *mainProject; /* store the drawing area widget globally to simplify the key event handling, to eliminate the need for an event box */ GtkWidget *drawingarea; void example_render_project_to_screen (GdkDrawable *drawable) { cairo_t *cr = gdk_cairo_create (drawable); /* this is by far the simplest method of rendering everything */ gerbv_render_all_layers_to_cairo_target (mainProject, cr, &screenRenderInfo); /* if you know cairo well, feel free to incorporate your own method here, but this method shows you one possible idea. With it, you have more flexibilty over the rendering int i; // paint the background white before we draw anything cairo_set_source_rgba (cr, 1,1,1, 1); cairo_paint (cr); // step through all the files for(i = mainProject->max_files-1; i >= 0; i--) { if (mainProject->file[i]) { cairo_push_group (cr); gerbv_render_layer_to_cairo_target (cr, mainProject->file[i], &screenRenderInfo); cairo_pop_group_to_source (cr); cairo_paint_with_alpha (cr, 0.70); } } */ cairo_destroy (cr); } /* this is called when the window size changes, and also during startup */ gboolean example_callbacks_drawingarea_configure_event (GtkWidget *widget, GdkEventConfigure *event) { GdkDrawable *drawable = widget->window; /* figure out how large the window is, and then fit the rendered images inside the specified window */ gdk_drawable_get_size (drawable, &screenRenderInfo.displayWidth, &screenRenderInfo.displayHeight); gerbv_render_zoom_to_fit_display (mainProject, &screenRenderInfo); /* GTK should now automatically expose the window, so no need to do it manually */ return TRUE; } /* this is called any time the window needs to redraw (another window moved in front of it, the window was un-minimized, etc) */ gboolean example_callbacks_drawingarea_expose_event (GtkWidget *widget, GdkEventExpose *event) { /* render all the layers */ example_render_project_to_screen(widget->window); return TRUE; } /* do some simple translation based on the arrow keys and "Z" keys */ gboolean example_callbacks_drawingarea_key_press_event (GtkWidget *widget, GdkEventKey *event) { switch(event->keyval) { case GDK_Up: /* cairo renders positive Y as down, so keep the sign in mind */ screenRenderInfo.lowerLeftY -= 0.1; break; case GDK_Down: screenRenderInfo.lowerLeftY += 0.1; break; case GDK_Left: screenRenderInfo.lowerLeftX += 0.1; break; case GDK_Right: screenRenderInfo.lowerLeftX -= 0.1; break; case GDK_z: /* notice the lower left corner doesn't move with this method... to do a "true" zoom in, refer to render.c and see how Gerber Viewer does it */ screenRenderInfo.scaleFactorX += screenRenderInfo.scaleFactorX/3; screenRenderInfo.scaleFactorY += screenRenderInfo.scaleFactorY/3; break; case GDK_Z: screenRenderInfo.scaleFactorX -= screenRenderInfo.scaleFactorX/3; screenRenderInfo.scaleFactorY -= screenRenderInfo.scaleFactorY/3; break; default: break; } /* render everything again by forcing an expose event */ GdkRectangle update_rect; update_rect.x = 0; update_rect.y = 0; update_rect.width = screenRenderInfo.displayWidth; update_rect.height = screenRenderInfo.displayHeight; /* force the drawing area to have an expose_event, thus redrawing the window */ gdk_window_invalidate_rect (drawingarea->window, &update_rect, FALSE); return TRUE; } void example_create_GUI (void){ GtkWidget *mainWindow; mainWindow = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_default_size((GtkWindow *)mainWindow, 400, 400); gtk_window_set_title (GTK_WINDOW (mainWindow), "Example 6"); /* a drawing area is the easiest way to make a custom cairo renderer */ drawingarea = gtk_drawing_area_new(); gtk_container_add (GTK_CONTAINER (mainWindow), drawingarea); /* hook up the signals we need to connect to */ gtk_signal_connect(GTK_OBJECT(drawingarea), "expose_event", GTK_SIGNAL_FUNC(example_callbacks_drawingarea_expose_event), NULL); gtk_signal_connect(GTK_OBJECT(drawingarea),"configure_event", GTK_SIGNAL_FUNC(example_callbacks_drawingarea_configure_event), NULL); gtk_signal_connect(GTK_OBJECT(mainWindow), "key_press_event", GTK_SIGNAL_FUNC(example_callbacks_drawingarea_key_press_event), NULL); gtk_signal_connect_after(GTK_OBJECT(mainWindow), "delete_event", GTK_SIGNAL_FUNC(gtk_main_quit), NULL); gtk_widget_show_all (mainWindow); } int main(int argc, char *argv[]) { /* create the top level libgerbv structure */ mainProject = gerbv_create_project(); /* make sure we change the render type to "cairo" instead of the GDK alternative */ screenRenderInfo.renderType = GERBV_RENDER_TYPE_CAIRO_HIGH_QUALITY; /* parse 2 Gerber files */ gerbv_open_layer_from_filename (mainProject, "example1-input.gbx"); gerbv_open_layer_from_filename (mainProject, "example2-input.gbx"); /* make sure we parsed the files */ if ((mainProject->file[0] == NULL) || (mainProject->file[1] == NULL)) g_error ("There was an error parsing the files."); /* start up the gtk engine and create our GUI */ gtk_init (&argc, &argv); example_create_GUI (); /* start the main GUI loop...it will stay in this function call until you exit */ gtk_main(); /* destroy the project, which will in turn destroy all child images */ gerbv_destroy_project (mainProject); return 0; } gerbv-2.7.0/doc/example-code/example4.c0000644000175000017500000000443313421555713017512 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example4.c Description: Loads example4-input.gbx, searches through the file and removes any entities with a width less than 60mils, and re-exports the modified image to a new RS274X file. Instructions: Make sure you are in the example-code directory, and compile this program with the following command: gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example4.c -o example4 Run with the following command: ./example4 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ #include "gerbv.h" int main(int argc, char *argv[]) { gerbv_image_t *workingImage; gerbv_net_t *currentNet; /* parse and create the image */ workingImage = gerbv_create_rs274x_image_from_filename ("example4-input.gbx"); /* make sure we parsed the file */ if (workingImage == NULL) g_error ("There was an error parsing the file."); /* run through all the nets in the layer */ for (currentNet = workingImage->netlist; currentNet; currentNet = currentNet->next){ /* check if the net aperture is a circle and has diameter < 0.060 inches */ if ((currentNet->aperture_state != GERBV_APERTURE_STATE_OFF) && (workingImage->aperture[currentNet->aperture] != NULL) && (workingImage->aperture[currentNet->aperture]->type == GERBV_APTYPE_CIRCLE) && (workingImage->aperture[currentNet->aperture]->parameter[0] < 0.060)){ /* we found a path which meets the criteria, so delete the net for demostration purposes */ gerbv_image_delete_net (currentNet); } } /* export the modified image to a new rs274x file */ gerbv_export_rs274x_file_from_image ("example4-output.gbx", workingImage, NULL); /* destroy all created structures */ gerbv_destroy_image (workingImage); return 0; } gerbv-2.7.0/doc/example-code/Makefile.in0000644000175000017500000003623213423533412017670 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc/example-code ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = example1.c example1-input.gbx example2.c example2-input.gbx \ example3.c example3-input.gbx example4.c example4-input.gbx MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/example-code/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/example-code/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/doc/example-code/example5.c0000644000175000017500000000455113421555713017514 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example5.c Description: Demonstrate the basic drawing functions available in libgerbv by drawing a smiley face and exporting the layer to a new RS274X file. Instructions: Make sure you are in the example-code directory, and compile this program with the following command: gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example5.c -o example5 Run with the following command: ./example5 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ #include "gerbv.h" int main(int argc, char *argv[]) { gerbv_image_t *workingImage; /* create a new, blank, image */ workingImage = gerbv_create_image(NULL, NULL); /* draw the nose */ gerbv_image_create_line_object (workingImage, 1.5, 1.5, 1.6, 1.3, 0.020, GERBV_APTYPE_CIRCLE); gerbv_image_create_line_object (workingImage, 1.5, 1.5, 1.4, 1.3, 0.020, GERBV_APTYPE_CIRCLE); gerbv_image_create_line_object (workingImage, 1.4, 1.3, 1.6, 1.3, 0.020, GERBV_APTYPE_CIRCLE); /* draw the eyes */ gerbv_image_create_arc_object (workingImage, 1, 2, 0.1, 0, 360, 0.020, GERBV_APTYPE_CIRCLE); gerbv_image_create_arc_object (workingImage, 2, 2, 0.1, 0, 360, 0.020, GERBV_APTYPE_CIRCLE); /* draw the mouth */ gerbv_image_create_arc_object (workingImage, 1.5, 1.5, 0.75, -30, -150, 0.20, GERBV_APTYPE_CIRCLE); /* draw the head */ gerbv_image_create_arc_object (workingImage, 1.5, 1.5, 1.5, 0, 360, 0.02, GERBV_APTYPE_CIRCLE); /* draw the ears */ gerbv_image_create_rectangle_object (workingImage, -0.2, 1.3, 0.2, 0.4); gerbv_image_create_rectangle_object (workingImage, 3, 1.3, 0.2, 0.4); /* export the drawn image to a new rs274x file */ gerbv_export_rs274x_file_from_image ("example5-output.gbx", workingImage, NULL); /* destroy all created structures */ gerbv_destroy_image (workingImage); return 0; } gerbv-2.7.0/doc/example-code/example4-input.gbx0000644000175000017500000000146513421555713021207 0ustar carstencarstenG04 Test drawing with circular apertures* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Note: aperture 11 has a round hole in it, but this shouldn't ever show when* G04 drawing with it (only should show in flashes)* %ADD11C,0.075X0.050*% G04 No hole, centered at 0,0 * G54D10* G04 Recenter to 0,0 G01X0Y0D02* G04 Draw a line segment* X00100Y0D01* G04 Turn off for a segment* X00200Y0D02* G04 Draw another line at angle* G54D11* X00300Y00100D01* G04 Turn off for a segment* X0Y00100D02* G54D10* G04 Turn on circular interpolation* G75* G03X0Y00300I0J00100D01* G04 Turn off for a segment* X00500Y00D02* G04 Draw a larger radius arc* G03X00350Y00150I-00250J-00050D01* G04 Turn off for a segment* X00250Y00200D02* G04 Draw a larger clockwise radius arc* G02X00350Y00350I00250J-00050D01* M02* gerbv-2.7.0/doc/example-code/example2.c0000644000175000017500000000471713421555713017515 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example2.c Description: Loads example2-input.gbx, duplicates it and offsets it to the right by the width of the layer, merges the two images, and exports the merged image back to another RS274X file. Note: this example code uses the gerbv_image_t interface as opposed to the gerb_project_t interface. Instructions: Make sure you are in the example-code directory, and compile this program with the following command: gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example2.c -o example2 Run with the following command: ./example2 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ #include "gerbv.h" int main(int argc, char *argv[]) { gerbv_image_t *originalImage, *duplicatedImage; /* parse and create the first image (by default, the image will not be offset and will be in its true position */ originalImage = gerbv_create_rs274x_image_from_filename ("example2-input.gbx"); /* make sure we parsed the file */ if (originalImage == NULL) g_error ("There was an error parsing the file."); /* duplicate the image and place it into a new gerbv_image_t */ duplicatedImage = gerbv_image_duplicate_image (originalImage, NULL); /* create a transormation for the second image, and offset it the width of the first image in the x direction */ gerbv_user_transformation_t newTransformation = {originalImage->info->max_x - originalImage->info->min_x, 0, 0, 0, FALSE}; /* merge the duplicated image onto the original image, but use the new offset to move the new copy to the right */ gerbv_image_copy_image (duplicatedImage, &newTransformation, originalImage); /* export the merged image to a new rs274x file */ gerbv_export_rs274x_file_from_image ("example2-output.gbx", originalImage, NULL); /* destroy all created structures */ gerbv_destroy_image (originalImage); gerbv_destroy_image (duplicatedImage); return 0; } gerbv-2.7.0/doc/example-code/example3.c0000644000175000017500000000454413421555713017514 0ustar carstencarsten/*------------------------------------------------------------------------------ Filename: example3.c Description: Loads example3-input.gbx, duplicates it and offsets it to the right by the width of the layer, changed the rendered color of the second image, then exports a PNG rendering of the overlaid images. Instructions: Make sure you are in the example-code directory, and compile this program with the following command: gcc -Wall -g `pkg-config --cflags libgerbv` `pkg-config --libs libgerbv` example3.c -o example3 Run with the following command: ./example3 Common compiling problems: 1. If you are compiling gerbv from source, make sure you run "make install" before trying to compile this example. This ensures libgerbv is correctly installed and can be found. 2. If you installed gerbv to "/usr/local" (the default), many distributions don't correctly point pkgconfig to this target. To fix this, add the following to your ~/.bashrc file: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ ------------------------------------------------------------------------------*/ #include "gerbv.h" int main(int argc, char *argv[]) { /* create a top level libgerbv structure */ gerbv_project_t *mainProject = gerbv_create_project(); /* parse a Gerber file and store it in the gerbv_project_t struct, and then immediately parse a second copy */ gerbv_open_layer_from_filename (mainProject, "example3-input.gbx"); gerbv_open_layer_from_filename (mainProject, "example3-input.gbx"); /* make sure we parsed the files */ if ((mainProject->file[0] == NULL) || (mainProject->file[1] == NULL)) g_error ("There was an error parsing the files."); /* translate the second image (file[1]) up and right by 0.02 inches */ mainProject->file[1]->transform.translateY = 0.02; mainProject->file[1]->transform.translateX = 0.02; /* change the color of the first image (file[0]) to green */ GdkColor greenishColor = {0, 10000, 65000, 10000}; mainProject->file[0]->color = greenishColor; /* export a rendered PNG image of the project, using the autoscale version to automatically center the image */ gerbv_export_png_file_from_project_autoscaled (mainProject, 640, 480, "example3-output.png"); /* destroy the project, which will in turn destroy all child images */ gerbv_destroy_project (mainProject); return 0; } gerbv-2.7.0/doc/sources.txt0000644000175000017500000000276113421555713015512 0ustar carstencarstenSince almost all documents I have found on the Internet has copyright forbidding the distribution of them, I have instead made a list of information about RS-274[XD]. I found them by, basically, using google. $Id$ * BARCO SYSTEMS _The_ description which is all over Internet. This is the source. http://www.maniabarco.com/trandown/rs274xrevd_e.pdf * D-codes, Apertures & Gerber Plot Files Desribes how a photo plotter works and describes RS-274D. http://www.artwork.com/gerber/appl2.htm * What's all this about RS274X Anyway? "If you're a PCB designer you're probably hearing more and more about extended Gerber - RS274X. The latest versions of many PCB layout programs either offer RS274X as an option or only output RS274X-- such as Cadence's Allegro." Discusses the extension to RS27X from RS274D. Continuation from above. http://www.artwork.com/gerber/274x/rs274x.htm * Webutils for gerber files "These web utilities are Java servlets written by C. Scott Ananian; the source code is licensed under the GNU GPL." Send in your gerber and you can view it on the web as SVG. There is also an Gerber to HPGL converter. http://sinfor.lcs.mit.edu:8180/pcbmill/index.html * Eagle Gerber Tutorial http://www.precma.com/informatica/tutorial.htm * Excellon Drill Format http://www.excellon.com/manuals/program.htm * Example on other free (as in free speech) implementations I try to list as many program as possible living up to the standards on Gerbv's homepage http://gerbv.geda-project.org/. gerbv-2.7.0/doc/PNG-print/0000755000175000017500000000000013423533412015030 5ustar carstencarstengerbv-2.7.0/doc/PNG-print/Makefile.am0000644000175000017500000000170613421555713017076 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=gimp-window.jpg PNGPrintMiniHowto.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/doc/PNG-print/PNGPrintMiniHowto.txt0000644000175000017500000001067313421555713021105 0ustar carstencarstenHOW TO PRINT A 1:1 SCALED IMAGE OF A PRINTED CIRCUIT BOARD FROM gerbv. By: Dino Ghilardi dino.ghilardi@ieee.org $Id$ First of all: This procedure works for me on my PC, but ABSOLUTLY NO WARRANTY that it works for you or that your machine will not hang up etc.. etc.. etc.. What you need: * gerbv version 0.11 and above * gimp (with a printer configured and working). Introduction - Knowledge base ----------------------------- The function `export PNG' in gerbv creates a bitmap that is saved in PNG format. The dimensions (in pixels) of the pixmap created are the same of the image on the screen, so the zoom scale is proportional to the dimensions of the image that will be obtained in the file. In 'Gimp', while printing, there is a scaling method that can specify the ppi (point-per-inches) of the source image, and the program will scale all in the right way (if the printer is well-configured). The Procedure ------------- 1) Load the gerber file you want to print (right-click the button of the layer where you want to load your file than choose load file..). 2) Select black as the color of the layer (right-click the button of that layer and choose layer-color). 3) Select white as the background color (Setup->Background color). 4) If you want also to have the holes, load the excellon file for the drill holes and set white as the color of the holes. 5) Look at the printer you are going to use and see the resolutions that the printer can use. 6) Select as the zoom factor in gerbv the resolution (in dpi) you need. Warning: if the resolution is too high the image on the screen could be so big that it can crash the X-server, so try low-resolutions of your printer first (On my Epson 1520 I've chosen 720 loading eaglecad/top-cop.gbx in example directory of gerbv). 7) Now on the screen you have a big image of the PCB (do not care about the fact that you see only a part of the board, it will be exported in the whole), DO NOT CHANGE the ZOOM and export it using File->Export->PNG... 8) Wait some time (the image can be quite big, so exporting it may take a lot of time... I know, the export routine is not very efficient 8-). On my P3 600MHz 512Mb RAM it took about 15 seconds to export the image of the example above. 9) Close gerbv (just to free some resources if the image is very big) 10) Start Gimp (I tested it using version 1.2.3 that cames with Mandrake Linux 8.2), then open the image you just exported (File->Open). Also here, if the board is very big (or if you have choosen a high scale) it may take some time. For the example above, on my machine it took some seconds. 11) Right-click ON THE IMAGE and choose File->Print 12) In the window that appears you can choose some printing parameters. Now: a) Set the printer resolution to the zoom factor you used exporting the image (this is not so important). b) Set the scaling method to PPI (Points per inches). Important! c) Set the scaling to the zoom scale you used exporting the image. Important! 13) Click on the 'PRINT' button and your printer will start print the image. Note: If the board you have to plot is quite big you can set a lower scale when you export the image and then use that number in 12.c. This will give you a less accurate image (of course). Using my ink-jet printer and setting it up properly I can print on a film and then use that film to realize home-made PCBs (or prototypes). If something goes wrong ----------------------- If the printed image do not have the dimensions you expect: * Check that you did follow all the steps in the above procedure. * If you further zoom the image after the explicit zoom set in step 7, you will not obtain the right image. * Repeat the whole procedure with a board having different dimensions and print it. If the scaling error is the same you'll need to find the right number to use as a scaling factor while exporting the image. To do that you can create a simple gerber file with your CAD (for instance a square with known dimensions (I used a 1cm-by-1cm square), follow the whole procedure and check the printed result. Measure the printed square and re-export the image using a Zoom scale obtained by: (Scale_Used_Before)*(1 cm)/(actual_dimension_of_the_printed_square) (This example is made for a square with a 1 cm border. If you use 1 inch, change 1 cm with 1 inch in the expression above...) gerbv-2.7.0/doc/PNG-print/Makefile.in0000644000175000017500000003607413423533412017107 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc/PNG-print ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = gimp-window.jpg PNGPrintMiniHowto.txt MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/PNG-print/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/PNG-print/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/doc/PNG-print/gimp-window.jpg0000644000175000017500000017714713421555713020022 0ustar carstencarstenJFIFonCreated with The GIMPC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222[Z"`  !1"AQTVu256RSrt#34Ua$Bq7cCg%b8Esd5!1Qq"3Aa2B#4r ?+q-lv(IVjч8g)Aae'$UDz!q~PZƐ9AtTW骮͚iΉ>_64Tyq9ߖՍH5(]`gQuC ,4_Fml#ZSp5Yb6xLY%l%W +qK, Ù9V&քMTkdf'=S tVulUqINBr{^*H|MzI7sG)BDHC ݭLC%ǐH:(IkZbRXږ )Jl[@QDg2)P+}Zr^ թm}ݲtD \M!-o@J /Z$׸ڝ4F(з-{-:ZR_?dN4*fL#/)ށqqCKr u:RӒ׈T3XL/[c-GCSr5%׊PՅ!mEJ c[lQ}帛]crI4!.+aF:RWԵ$ wJj v{W(Pۙ?0 JN`HHqNU i9SV1>Э.2UƐ@QoPI 85a5^H%DI'I jPU--4:!E -[c^{[K([L$ck)P+}Zu6j>d{vbfB Ɇ 96ҦPV N-e*؋Z"9gp̰q䓩4RHJw*9 şDr|?ٯz?(]Jij:*bl![X^VH)Aʁ$Uo^^ғ TrIl68m؝ Mɬ $^c\V qaJVN(I;JH,TS37!=br^|էVz1F^4sĂpúpw CRu RARuFG^U탖3ɻ O":sM~O )yMqmQKoxrސuZrq1{FETTVD5lIXJN30y55lHLDWmqbbc& S[Rə.o&CPBԣ$'TGX= Np+r lVnRY/e @RO58\L+bo-Cqƒ<ٮ+iI2f+Gק^=-}3J}KЇ{o:+GׯiOb7ܯmQ^{o:),FCB3{#ܯmQ^>hCorDz[z{#4Ա |WKcOrDz[zf)[Z'gԱ |WKcOrDz[z{Lwю4}SX>a+Gק^=-}=?λZc뾌u,FCB0#V=2S-8)gLwю4}Tj S44!md80N3xyS E)I8cpiCe}Gcy[(se}SLwюk]v0[{aqfFIsxpnG#냽V{ME]cM1uF:բ溦NuiXczko't޶{5eBS1YSJp;ns[{zdZʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIkޱizǦGʼn&7bwIjk)BR!%E)Q  J^9bwIiiXczS,wΩ6rj!{`Swei#*AZw6t88wUVџ[]zM<F\{[X^sV9։k9͟]]zlv2{3m>[\-!HIj#篝+íEh:Ƿ>+ tKd!:@QQ^sN;QEpaoy}WukҾ?{oOӱW2M# 6kqg@s XxsYEz!v)ɑ i[;X)hԶԔ*cCTIJfeOyDf~2BZ[AJR%- T&'@6mK]4R' RlͷGsx[ێ+aЂ26qJ  1jRZn u q`$Gեm# E(  eg%AyޓP`ʖ a) iIQH_CnprB9,dGnξl$ϐG=`sz[fE|iԓ 6Z##'<32kSZͰQ'' sUQVIs` mOYaJȌcIuy`ZG5i X8Qj^Xbr7-޳! HZ Վ# 3όB시&S1Hp:Tpy¯6rrPF|uYZH2=YI6%-e@ )Q!|^fiM^Ĕ C̕h ctq۬(;}7>zS1ݎӫҹ.'RT~ <{خFi n*JYJ0BH<ýve.V֖)ngOxd$PJҹͪ*+r9Zi^ suO$@ Rk<+} olX;&8$SiIZPU'%. M+vh1ewshФw9q*m[ٟ P$KՂ]vJBͭp zZ(Xpp%JeZ[[F(盁Z~iטv/r)Q+)$TJ885ˮO_mhSn IJ-e ͂u`Vहͧx<\}DWp✒Jmy+ RR:Sਊ ǝ/Zh> ~5 R R R RíEk+íEh:Ƿ>+_E^_0ٮ}~j7ƞc)JJRJRJRJRJRJRJRJRJRJRJRJRJRJRJR*6bOo}5}ʿ ؓ[M_}*R R R Re,8!\IBZBGyLQjGyLQjk_EڵtiJRRRRRRRRRRRRRRRRʿ ؓ[M_}kn$WA_ɯ ~<Ɍu%+}+JJUiQx*-t9rt\VTuPҐ HCWp2yKJR/ۉq#s(W(a-)K Sn%Ď=̠gf[G9.FQ-˒`Q sdx"^ٍObR!6mu/yġz2NJuBJ@3݁]{{yv24G{ZlJCIS%3[uI%/[Q@ H#IAܡrxsFr*J-!$ P %$=K[.[1g&#D| :JG<;Zs1E<7N!(Pt W(a-)K Sn%Ď=̠gf=L KzJJ!Gz 8)* ֫;ra[qΑȩ(OLwt)@ (4N&%Ͳu1!D688]/JO–㻤]CiJ$8 V fS-2ѥ-7*I8Ɨ?u%,Kس\ |k ӎl )IHt >]C R @RIJ ;rSwKϙ=VYbZ KGBqƒTk}eސ6SNM'ؼ[7n9֑<ҟ[M IJX?s$Ǚ9dBXmr^C֓`h.'W\$G[u˹j~KH{I$=*X6kz)փ̤'Uӱq7Y[l_y${ʷ͞<㛻Kک/[nN㗐M#RR@$c%*\\#7iN'Z iI]k>%XgP&b&T&s;LŠӘIJeiZsIҬ9)$ CW {T\^N'$`c[MKu :Ҵ8X @G~˄+t˸f[)R&$ȤeK-5')PУư4C{Է"z{FRՆ` -dͤK`8yiRB5)) 8T;/+좭9bnrlY-5o[a4?1FMܦ_Wobj"B׹.$)R@BFt`峀ri{avS}C57?ƴuSa:P ҳIңĚ\,Y-v[ZL+2A R8ysyqP\9BK^?Ҽ392Xm\HZB$d@"5k(]w)MΈd)[nXΖtA:C[7;H9;`1ۜU -z$Jg%/KKeԤHRrh~̇]-}r\K2,)ûm&; Q {cRxvV=j3-ȑmu t'Q8y%Z{KnflrpRc!ƋIΡq`xsI=ZmҲF9[%}K넮Wl*]pRTAK9S-{IGa,$3 ĩ--C`a$%)*X_^XS鐦2h.G-ÁҹI8jh$savgS+R҉?缯Ѭ_&W(0Cž xQQ2N` 'zRJRUƍ;V:_4lYíEk+íEh:Ƿ>k_E^_0ٮ}~j7ƞc)JJRJRJRJRJRJRJRJRJRJRJRJRJRJRJR*6bOo}5}ʿ ؓ[M_}*R R R R RԐqk5ShZs$82%n^rڜ0N/:R;8 NץO'_kҧ~{~\U͘ݵڜLw!pJ(F;FGjg ʛfcXal*ͺBjq):A‚MzTZE Ir#]g[׭<1_3մVޞm[%.'J H txPLu*jϴ&cZLru^NhI#q Lӳ[mo#4I8 iy*+WcS%}h!RBJ{B TBMzTZVZtrejiĴwjڔjƔrFEi@f6%a ,@F>'J\(,ܝ)JNNץOǮ,fZ aM+V i՜ds9 R8DԤ,q)*8Y*zMzTZQ׻V,P([U=x8sz nNץO'_kҧ(k~ rvnZա)m$( N1hmi:o \$kJIKkˆ) PLu*9:S^?֣QwC\hO7 n:xs˺;8n3O䙊gq nz '_kҧӓ5Sjv52Pܶy*,)AK(J %Iu[EjMiөݫKjRRSP R2A<)JNNץO .ʜfcj2_a &:JjrqZI¤hvK&Khh4Xp1#VqΤ%:S^?֜)JXASCr+oSBTa ^8grxpUƍ;Kƍ;Kƍ;A}u"OHm}e}u"OHm^wV=+\+kF{5ZZ:B4{)UR)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JPxcoe_lI-羚YW[K{JRJRJRJRJR+cUiij,M!m-?/t08LYV_80*{88uv"-[;pdhSu,*I!ZOij/gcl=Vmk* C)qHR{ass yʸaܸ{%iDu4o*l~1{{lmz&)qʮ'#$C\P<=Uq[+s*i,$-ڐx)N6AIƒW*;gcl=eh}#2ҋ\Xl6$>uʈ㌾[nYo1zuhѝXӜcsgcl=Fcc3lmzS`l eCyq-_̲omiRpO PXo6Wl;Od(βF`pOS͓e==.29U$dk88l{bAkP#=}~vliE,6 ZV{:RwDqqNMpl]9CiuCRT2 v7k|e~>sT7,ս:hάii19k=W;2ۿt]No'P/6O,/6O,yjzzmsŒVfZ**mmvWƍ;A}u"OHm}e}u"OHm^uōnr3OM ԥ!.gJV?vǷ>k]yAͫXxGHF|j?\Yu;QP-޶IxĊ,omm)RZI^-[/cۏտ?crzű9Xs=z dovKn?Vˑ,NJ.ÏRHVxsqVSlgVHIa۬BPr T:MOdovKn?V()]ۏտ?-[/cvKn?Vdo҂-[/cۏտ?J WdovKn?V()]ۏտ?-[/cvKn?Vdo҂-[/cۏտ?J Wdo7wC-arNlB!N`蚣P]jyIHϳ3ݺ;B^ZPHRiD ML-羚f?frK{ZWblw {#8VzU8nu][R, ɠt[nǫh&T|XSjpiVr&[ظ.ùI*޻KOcZLteIBEh aaVJviz˽ñVn#ZR KV':)PTCGK/G_eԺiP@V{OmE;qz֓LǞ7k)խBޢP:dbF|JyL@ᾨR*j@uJ'.,vrЗCmqטuyj[j ZBT a`eGpjU~[A<; ^{&ؽulÊ~bAIm+1a!`g#O1W~`ݚ}T'̞*aah[)۞:TH%j-`+?1,hFAe2n:Ӯ(a` ٟkm1y hMKܠjpIr@$hk9X#K2` )eDHBH:HI dxV<Kim+AS H*)H (Hu-HGV앳r5=;Ϻm)KQ8O T Fd` `t8~ԫ{@BL_}9=ZvM}|juÑLGkKcFqq1ß=)ѤQc0t@@H*`2TT0M}|i5ժwؒ*Pi(40P+JA´ ){ejj bdER6֕D2qppɯyrZmN-N<Uemoq҇)apVH %H#QJ)YNMKJyr˨q! ')PGpA1CKe|bզT-b#-ԹeaIrrsk]yAͫXxGHF_ݩ_ݪ,KgҶ'v]PKP2 $7l4BZ-RMa[<_ ʔ~rJIWQNS*;l3ȣ) Q@Vxw*ݦ+6?iìȐksS;!РpJ$[m.P㎃jAh* (𬬀@U{Hl3.Pq3zpw1:{k-(+Ѭ2f<.rO;4~Y9p8w=l6N)dazqF7&2<۹*koIQ2sZ$Uj$9vc2鋳SJYSkPaTFYRMxn߶KwoV)&̗RMRTy+yAD$ ]6E!  *x9 q#$d&xn۝~3c'Z sxsM y!SңIH <\V{v5 b6VCLDa 6W)E(HHρ[~[!>?>+ҋ KL-Q[C8_hG ͞n{Ņ/.ڑ)RUګIG0[!>dc eHj<{wua Rp9$ȭ׹i-3qU̯T TT#7+&mY?*{H\"\yHjk%a'vu\h??߇[$ċ_&W߇[$ċ_&uaoy}Z;d?\kF{5֮3r rDg 9I'HYv:u2ChBdE$RVG:C$vm7ͼ.. `Gxǿ(7(FEvηZyct'Ügsh\Bb$Nʁ ?*"o״^e-(#zI).HZ4(PHڋ-Ʌ?z Qq*m lAJ+f|BԗB"S+Vtp$JA  jaOuߌ*Aaւ%:%8(=5O-J̦CUr(JI޺3-D $ *PK];Ch'uNJ3Sse9W{LD>ͲMńDX ֕)M 1gfָm/ͲƎڜ$$)iN8ܶBڝZ6m'ce)HRRW9 MCltp?-a MX҅ :@h퓝5m:ZLm#4wpzRjRRlARRUQ{A76o0܈./*C[p)mWlAܳ},\aMMA $S-Ĥ<h%.׶m+:w1c  s֜{ȷGLCN/6(эՒ03ngg}j;w:sqܩr9*SEDHm+YH/I9 gkh"lnCb:Kܶ;aRRx\{S-=wH(cVƝ=4Gmx㳷k\I3TvH+S*RNY@)`bv\ܚu#2.% ^B8c{iom zEh4k(RRR I D&*eٗ20rm:H}x-Th^V '! &@)@)@)@)@R?6>?VZ#c+l%J %+$p?7\ܔd&bߚE:KHN18jsV259eVmEُNit-IFA BPFyɠMi&4'vu\h??߇[$ċ_&W߇[$ċ_&uaoy}Z;d?\kF{5֮Er;5,D+Bzx&dY!({jJV# I =(/;JZTvi*y3VPSN IPȭ5td/\8mGS joeHG!c$x\F1J¹UL̴4 Α7 ʋ;wjlS6ˋlnp0\_*o8CagGڛ*܈}!e Fx3ǵZ>{iy/yV1?wVD޶1 !g[~nsV*vò]6w:-? RCg@W ;OkkV).m{/&CrJX[Rt#vewI# R R R R R R R R |/^R_*n/ הf?frK{CY噩mv&vnӯ@*pqsb^t[nǫh&T|XSjpiVr&[ظ.@U̓i]3u*Ҕ@jZt9ԥ`H'XEsnla([ODdW!JTITI%Q">>em8\Ҥ( IWlFv$Fʲij*qM8pނ@JRmVV4xji9BVJJ@RNx|BԗB"S+Vtp$JA  h4lDQLi-]JCz IV90lPB:+vL[a;n9(OuGk}Ͳe62`Lj R Jr ?u-HGV[+>YZLbK\GR԰ qe:[pNvʆPpY, :P[ZӼTR5oKe|bէ#S MB~k]%  iA:8;_cD dKr^݌Bkƞ ڜKe|bէ#S-A1Aq$Ea-8ӍaOt)89/HqJ #Ou-HGVlPB:R_ujJ #Ou-HGVlPB:R_ujJ #Ou-HGVlPB:d%>%-ҥ-YRNI'^k͏)vC4TJm&9a[Sk[QJIA߫Sl%J %+$p?7\ܔd&bߚE:KHN18h2L1v1 B x8<٩J&4'vu\h??߇[$ċ_&W߇[$ċ_&uaoy}Z;d?\kF{5֮ùI*޻KOcZLteIBEh aaVJvizy^S1ukl7:TN9kj{ň^}S3[+u/Bp)Z ZAW%_dd%߫u7&ѽџ{G?kW-| K~3i7 HRIC)Ir 88K8Ge_mCQԩ,tAsN<6x*|7'bԶW(}!Z{lPB:--< VG02:泸Ia]m Zg;oRDP{!QJx'Zr{lPB:R_uh7.{7x~-0܂ ̺ùܘM% c`(,sHT?u-HGV[+>CR_ui1C_)T?u-HGV[+>CR_ui1C_)T?u-HGV[+>CR_ui1C_+͏HR_uk;32K1}J[eJZ4N8 W걑@*m".~rt'%KNsjN2 Bdp:3Mehd8+CEJ$6ku6 i6VY:!2QH@ZO5)@)@Fq坫W/6O,?"ɵ?"ɴ{kF{5֮+T,7%NPqUc6ׯ7]Si~m4v!!KLp OxծVY^-6|Wd9bDB=XN ll1[,1aVl֐*Y9 ڜ'mMܧ*fH!_-@R 䐑T<]>1bsnc3!ny$>NSHl;7xwAٹ- )xKf ǀPt]}i4dyl sZ}FaT^K[ ,'*xkLD85PlAZB!@XW62F\VXr㺔TD?)9%]%>aT[O"TP,%d8p ;xgiup[{?& ԼrHunI {`u޻Ccc4TsqV;R8+ Amț/pɷA@.eL9 N$)*?9-GXWkcnDԴ9v8Eqj풧% ֢m H"+ iƜk }ӤIt!zFHU>w2 " ˬ;yK ɎR8:t~. R #ceR?6>?PBTRH wU˭O\޶Bm!!-YS*)Z「`j.w=c#ZUf D]NJBԜd%tg{M`lMM)JP*Ѳ\gjUƍ;A}u"OHm}e}u"OHm^uöO(#Y}=a]jVmZ:B4OT&6M&6UI7JRJRJRJRJRJRJRJRJRJRJRJRJRJRPυkKREM%}Aa!ՎOo}5}\v15c[M_}*R TE>540R%)-my$;Ս}n<ɏ$/SK-RGNpT*9wb+B̔m-V+8A+!gJx'&_-LY{RVZӝHKhRHҬ$iP6 .RZHo ^;oxaכvWS7E8(=3 +=Bz-/򕥘.J[%+i#*qSTl3%5 [2ѥ Bu8 (Ru+<*=ԶW(}!ZY}D1՝kVp9g=HPPԶW(}!Z{lPB:|Ke|bէ#WPPԶW(}!Z{lPB:|Ke|bէ#WPPԶW(}!Z{lPB:|Ke|bկl{$,fq)m>)jҐrI8*X~l}4HmpPoA5:ڛ^ڊT HpZKe*PQ)Y$cy䧮o[!6լ) ZBqDF05AfaG)LoRVdqJT&|Gy6?ᦦ(\h??cFq坠:ߑ'$Z6:ߑ'$Z6{ |{{f'_0ٮwv+6c|i!v'e~Sve~Sv)@)@)@)@)@)@)@)@)@)@)@)@)@)@K5%)"yIHVcfj'l?;?՘Y-羚)JKE J>jKAjh@GyQƶ6Ɍ? q%hBJH9$I7*PVK0U0 y6xvTT!g-RQ<lSڸC7!p=⋎)h[ӄ=iAFwd-⭱^bfz[SHpjH .N{R?"EDI+YO"1Jt$q9e(.9-LGꕿ%4 7IA_<{^6S;A2eh~4V48YtsbIT-4ְ*VXbd*r\P@?Pb )Sȭ^#lOc<(Ci)JВP5$f>Ȗ]rc&jԤ!-+VOp[\3 TۚV'Q~uh9#k_:4vxz֨r2-e[!;-:H 5e2?mziHSe$Hl)@$:3gdwOV_}9=Z!l -͵vD*~$P4TI9WRU2 ڞv{j˛.@])#xR ?8Ӳk'Amznv;mK\rA$ivCqnyR{&rzMR{&rzMR{&rzMR{&rzMR{&rzMR{&rzMV)M*+k'Cr*Ơ =ßA纬dkP#2r>ʬaH7 RӜZAЄ_[m9ҋJ>ɬ.ZvRRGbO6;=ɱ 57ZVkblvn{#6Nzd8n)JP*Ѳ\gjUƍ;A}u"OHm}e}u"OHm^uöO(#Y}=a]jVmZ:B4OT&6M&6UI7JRJRJRJRJRJRJRJRJRJRJRJRJRJRPυkKREM%}Aa!֕fruѭ!JMcR֠D@pv,~mIf3l)RotJk)JHӌ$dC4{GtkiXp,+I5n?%zuŪSD˔+u(+\V [zJBOe!%JSp幵fnͨܒHC["v(:94v_fa$vQ)j7 J^x$A8AR[i9I .1# PWZn,8F)l-LR $^HV\RPB} h1Uz*ؙ7B rFr2R/\LF|I^Ѭ_&WmSKh3,8JP%H 8PʆjV[mHPOh+Ѭ_&WkȸIas`#&yn<]@{dg9k͆[d%vc(ɕ#KI*oO<䇖*ZTOtnDSqXM9rכZn?d[{o3sBΪ\Kmk!)H$Iإ9i\dЗ9<8=W^ȩl4bw,gc\zkɸ)n?%zʟ Dd]~<]zh/q+S5zJ`#&yn<]5zJb7ޒeX7{~xD=WA_b7ޒe=XMYV <"g߫3oWXMYOh/q+UpGLth/q+S5zJ`#&yn<]5zJb7ޒeX7{~xD=WA_b7ޒe=XMYV <"g߫3oWXMYOh/q+UpGLth/q+S5zJ`#&yn<]5zJb7ޒeX7{~xD=WA_b7ޒe=XMYV <"g߫3oWXMYY셚&Ԣ *h9BIII:V3ݩ<"g߫eK# @ +A]:ߑ'$Z6:ߑ'$Z6{ |{{f'_0ٮwv+6c|i!v'e~Sve~Sv)@)@)@)@)@)@)@)@)@)@)@)@)@)@K5%)"yIHVcfjmТ}YMBl?;?՘Yc(VkAK%x6xgDg)QEUQ6\e&fKx${? mLHʙs|4b-W:4ηG5v?kmv9L%d-+mr{mI::_s#|b+W88$փ/#+V#MҍRvGWp4śo8osoc^d#m.l|Kehq<`mƶFr6wL8$HRr{2>}}<Ӕ|YA|NS#*V^S#9Lw4YyLw42>}}0jUo<##NĥT,Ka•mB.S!i̧H'#Sw'`>5^=OQUR=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Zv_K?NkN|jz(xQ=EێguedƫǢ);WEP=쿌~Z[1n@n Yn<8K g 'HjCw'`>5^=OQAa!D_ճ@jfj–b),!K ,N1 '՚hݘ]uQES0sP-lk}2&H-ʏ9).ֵ{!BZQָs ogzL%./''R9V̸?6h}.fFmtI:@ TUi6[9*~ŵIPP'ps sL8ݸjjԡQ֬sankkns3gR{ d_Ȼ<ԛTL첂[JdvPZ;JthL=)n.m[e[-Ҡ {X)$$(N:d yF:JÉI*HVG $I,;>YH;RRTg$~ԌspwCBt.`#8?ƌݽ߷_P[m&[l ƣD퟼ȫ`A{S6RJ 8챠)=2c)SXvTv Y;#\biҵa̧)6B4'^SVcfnel9%T6@HP[7+;?iq̡i)-F/r'FMN]g8|Eʨ)siQ`&B)/Rm-(2p F6wĝqǑ)LRrrbDV$IQ)N ֕&59mL=ԙA!kLHi wXPQlZ5vVAkҴ߳iїG;Jg?)L)$!-?n\VPWhVm8LLu#);Idp!]Ooj1mlwm8X A*2mxyq9={_Md.!":iR2x<^{}֠ڗNۡ_O1N\ )@jk;ӳ/u Y^9Z[Z3 t.^{DunŰ]qڶFC!A41߂X[ nowQ So{ərP/XKipp *JI!viA[.ą)HP )$CtA TX(_6jC$Rc4JR\ltYR$ьͧs͊ +}vv6nL\ќ:Ip~ݠvԇgLj;diil)PRINAP%* N%+ï4u ( ZJ!){+l21&3{IwNrZOᔨscƽRj U[kdڒTա) zuW@%!D1 $JJIE/()!!9rl^F@kJntC!JNtt> 8g7ZPs+D˛Pm=rK< \Np$ެg+.#ÁNZFc>;a<9J~Ī;dܑw(:؆TwmC+J{mnK#nOCwPĆЎTuAI T]iAΔԨ3fI'f:G/nfg*JAJG=uvLKhvBc*]tvymk:dn`0ۣR(icak|3M-3ӄ# ʉQל۵ܜ1"Es\ +e1ʜ!n8ڌ,td2n{!u Hx*D1Tu)!ׂ4S󑀰IU0۶εf2;In8# …%EXp7n^{Du-6Vй2\E(k_E^_0ٮ}~j7ƞc)JJRJRJRJRJRJRJRJRJRJRJRJRJRJRJR*6PbRc5SAXYWF?Bf4 _H{M_H{^AqWqW׺չjjq}+S1[J*)JJ 2^2^&Hrk^uKJᑇ s upƓ6!~k&70GZʘ@K@ $pR8/A=+u鸏+us#RZ*JdIa! S/;.V1 H !AXԔchcqDaJYu#3-A^oVspNSGP"jJ$ZXA1jK{KNs qVqI)Ԟ-羚"$Zr(-="G= H:XK_5Qǭvrn-\xt%B>RP =2@XO#ӑDi?T;lkT0yX4hCKJ'(|AA± 2W$KDVKf:(\HIQ*ԑڐ2pTE姤HQ>ZzDQ.\LVfr}uf:BޓjRԔp8 :ө +Spw.qc(&T6GϞj W"$ZӺn&\b2>p22q8֫WrM-9T p[[DV;G}7> #p QNH{e~(-="GiϦU"$Zr(-="G5l[s`AL{$ISmthJ "$Zr(-="G R)n%'/vܐN;SzR@q'+#-+NһS-SiϔBJ䄫RUJRH@]9O#ӑDi?F[ \_}LwJ@JʂPXP#dh=r(-="Go]M-oGeP8V<9-ʮ[~?}Y*I IGE姤Hm|q"IfK.t-HC8 hDpl\8B У t:ب##.q$ #gQ>ZzDNE姤HzE;Qf-\KniRt$,m90l2B.mS!83t`eD$+JA98&Ȣ|֜'OHji)e܌̵nyZVF*HA9Nam2p-ڹ%$['nHZQ\) AiN$+iX ~[(1be1d%%$<‚uvgLH%Leo-(}J e@d$q4YUv{NlۂWbRJ\$rڳ"I4Yz~Dk~Dk5#~zWgvWǷ>kr$&qZV%XRNAuH21ot~_􂜾`#yCjidIPGܯ_􂜾Hw#~+yҔCݺ |FT02`#õO {z= Iө0 Dm6_􂜾Mg]I%a#[%ġQS5c=`{}w&%b9Q[EAOrV;[S= ֳ۝ڭ!"#E⒔(vݨVGqcjK= ֵ>^]v*G "tPx[s^G+Whi$@[ђ1)+)$Ԝ+(Nx]<^=(z3f\!=^ݝ n6aI#~jiX&绸2*g+d #ys(z ]Em [1B_B`e -'sDvxxU; +aGOPH[L(-oHZ; k_qWqWlr>id|y}_H{M_H{Ad|y)e}!7e}!)朦GϻGGGϻr>k_qWqWlr>id|y}_H{M_H{Ad|y)e}!7e}!)朦GϻGGGϻr>k_qWqWlr>id|y}_H{M_H{Ad|y)e}!7e}!)朦GϻGGcZԬsj9z2>}<־?̯=צ?̯=נ2>}<Ӕ|Z2^2^c|NS#k#Czn#Cz S#9Lw5+u鸏+u69Lw42>}<־?̯=צ?̯=נ2>}<Ӕ|Z2^2^c|NS#k#Czn#Cz S#9Lw5+u鸏+u69Lw42>}<־?̯=צ?̯=נ2>}<Ӕ|Z2^2^c|NS#k#Czn#Cz S#9Lw5+u鸏+u69Lw42>}<־?̯=צ?̯=נ2>}<Ӕ|Z2^2^c|NS#k#Czn#Cz S#9Lw5+u鸏+u69Lw42>}<־?̯=צ?̯=נ2>}<Ӕ|Z2^2^c|NS#k#Czn#Cz S#~):$E`GiXR]qdGv~Dk~Dk5#~zWgvWǷ>k_EڵtiJ~ٹP#< [NHuZ{`aI$c5Aq凵% Pee-X҅88I IjG5|q0[yeJBTYXmkNu!.JVR #J;S{][7 3 ‡-en(B i1=B@y^;9׍Zw:wӝ=Y^-FZv _CB8^ÈPnҩAfm+kiUTTFu%Cgާ6_=U•O;Ǫ6_=U•V2ޒm*'K$쭯jizDQA?JfVN8 `O{׿jizDQA?J϶LgiڍvR`m% a՞[^x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T U?/{x~T л^i8+uJV̕nC~Wdv{kin4Ao 엖PbbWr]=ؾU\WV˭nB\LfK)+Z{=\ö!5^7I6yKu։:` )*!!ObWr]=ؾU\WV=w/n;8J@Z$Ao;Ԕ$6<}pI kě% CnhoA G+Ip5_͋\utbWr]]6Ntsy*U;/HTp8 yby|^`f 4.%ʂHԕRpxUiٷn"Y߸TI@ !:$Ndluɘ}@sT Bx JxiƬOk_Lui~ 3ՠ˅*GG7jy Z%)Rh9Ҭw{5e+Ƶ4ΊV:+Z ~C/_f_lk_Lui~ 3ՠ6U!a-Yᬥ<3$pQ]??kiέ5tW:Im VIFH84weN_Lui~ 3ՠ1s;9>0`)N4 '*!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3[:+Zk_Luh5 њr~ 5~ 3զ4ΊV_W!3Y˪Hɏ,1\|8,4{BTF-rr&g߇RgGR<I$qk{%~է# u~*wۮδ*"*NL!;J) 5ij5i:6.Fqjb>1"GҒu8Jci8=<1g~yv[!©隲)en! %$'xZJX1?+d6-?+)dz׋_cڜ!0y׶3gnO]&6щ8'_S7KzHXW'OlVojtڝ/ _Nm[~WOy^JIQc;ֶXi JP0 VNm[~W b=N*Rmj'v<|߶vCl2}b[ݶ[Cj1 1*) ;l7{ɍ) ZhF?,)3jQ?/۬oXS93JR0H;?/۠_~oȓ-|_Y_~oȓ-|A׽=a]կJ, wV=+V4;U V}LOSkBTu\$Q֔R@F]&^LH2Q֝B+KXNPrQIU]I$mC^&Kb<Bn+dIQ:a"e- .CvH\O"~S֎ (nY+;StM~Tk"HҀ\-j)* OZg)en (mMQPIQJ|TÊeE.V6Za! #ZY4ZBJ[wKZ䲈5CjëbCm'R U"@lj,eEksZHN*=ҕ; W:Z!E)SJPޒx~O^MOpgS/ɸ? K w$cHN.w* allSZqEEIR7eYV@}CPݕ~NѾ3^a-+JA@(HUii'), WhuBtJhm,b*yo漅ۊlJ%~xV-~Qbn2YDE2V$HPox#J8:flMIMÙY;ϝa[u %Ġ jIʈ~xSy;7QQtG.ټۣR;~&-C)!HHHII '&ٳmI[,߼V*3VTŞ؜gcvoٿRl]a}n o Rn'%JJNxcsP?,[}^sxuh잍9:;\sc5g߮NM%\[CA[/N9P9ը{W?]B涴>ڬV6녢p-.8R@ FUo͑:gɜJJPOjJPh$iZ7Y#B1 WdĐ; ֙ +rZw [hv'28v@OҪQuieG^y=(4wk[e2G =?~ATȒie4oBT ˚ u AhUߘ]Q v䦷ӈ++o$gFP9eݸ7ϥz: RuMsJ3g8 R R R R R R R Rwk ml:Tk6kaL:1ڨ 1]rϲ&М4mYAW-[!w%- pAR)4YWn}`O6+߇[$ċ_&W߇[$ċ_&uaoy}ukҾ?{½=a]կJ,լo<##NtΔ.cz$J'P9H+۶;{9V^ԕ!ִJ:D4UIz˹`i%)m J)Q㨀 B {B،&ZY#%>R0_HWvG2ոaݡ*JBE* є<*:^϶:퐆 ~KǓ%jʔҀ(I$҃QcpF 6ZmKiOkH1ɰ\a[A\I 9@ FPC \6b418`TG#RDasfCM/'VRT1ġ?gzPi\-1.{ <!#[j p )g#z c""25iF{kP9;ջJzWt?[q{SaŨ:NTDs^}+*a!8YpKQ*YТ؜ 1#Jveǔ+C)y`ekw#8P*バHҔ }'u1#_I]2#2!JF<Ө28YA1Dfhiksp+W'dlr :5D oV0 䔕dFpwJLK)AA9<3 gn +@ uzCT$gd[T؈VǏ5X>jЦS.TVFA #Vv *(iTˏԸAYq*$8IR\{efdbf["ّ : %64h#C)i rc#N\yuk+NeI†Il[e:k+qnS8dGI8 UDzX?yH4{!ŃSAr1}ƥmPZjRARTx n҂:=Gݲ2-ŗ z )Qb1 5t-ej<{Q?Y@)@)@)@)@)@)@)@$I8֓w{cnZ[J0]v91])ʴ'ﶪʋ! %0ZW3$scjʈ'|)7lEde} \ipS[$>W?s9vvUp%Q:{{\Z@jTSTd_l]tZ*Towii<QtHF8I,l^-s"n’y эyozn~ȍl0yLJʦ>Xl Og 6U3:;g ۢݸb5/v96pfd~6J!Ĩ$#PRFq^A d0'$U.blgCACVoҞlE2VyR6rRb DC3AYI JO8t;yeMo6}뚭 RNrEgHRA% TO2!"m$*terDЕ,,}\q[oⲦ#JRc$%*q/v'o;D[L7aL(:Bʟ #:HR2†@ 6#\j}#gǶΤgwv/SsM?V_U}uXi ?"ɵ?"ɴ{kF{5Zpaoy}ukҾ?{kOӱUH)@xqN]B}Jem]'n,aQFlZ޽9[gLkF90hR&>x![*2̑8t"+*x$ƷvSl{eT;߶"գvcٛ-Ssi{0»/zqP(Qkp #li1uͣTIN)tEI[)Gz@ PO櫃kHB:͞+MQ\榩ki sq(O5R7qL$9^%j9M u)3/z!YQ'*)l7DI<5Bn!!7Ag$)hmA%YW]aTF9Fd4Bx%e%CJjj 6 YIP7A1#_I]{ ~wWA;݋v۫juVԹp[씸!DpGDR"E[֮t9Byq iN鎵ETT}!po 5 IIpڋ6U3 \+'$qp **wDڊU+jRҒhZil Qʲ:߶C2Iy!HRtRRU^;aQv.oQ%noFs9%<㎺)PRIQ*8eXƣ(u).;>xeLTS%bD;]Dyө&ó 7eKnL}2쨻Bm*X;p Rr* b![{R J֔R~*V?dFVM6ܻ黌E[&!lEN𤌅(H??]uƛy44 wT/bԁvm+@*",u>&WsjgUDr/Rܬ~m?5$շbGlnH5Nr#'etíEk+íEh:Ƿ>k$;Z x~Pk 660jYg~ 3իXxGHF4ΊVf>V:+Z;y{*ۿyΒ9@'P8'+~YJaͯo*(g?۫k_Lui~ 3զ4ΊV:+Z7j굿Y}D I\bbkBCifRm:Fp?5v쵓6{[Lge4U9ۦ<%S{%qfDyGZk *9LBeֵ8RH9\*jj5~}~ 3զ4ΊVw#rĖd:5 kiέz:f*\۫lN\kiέ5tW:ֿ\ZgEsY@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\T E rW;5~ 3զ4ΊV~ 3զ4ΊV:+Zk_Luh:+Zk_Lui~ 3զ4ΊV~ 3զ4ΊV:+Zk_Luh=TД!B@ Jc׮[+\:;ұk_Lui~ 3ՠe|GwSZ:+Zk_Luh2_"岾Eã+4ΊV:+Z Wȸtwy\ƶg+ڣ:q׍kiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\ZgEsMkiέ5tW: kiέ5tW:ֿ\ZgEs@ֿ\Grnm1ejJ4O;4ΊV.6.$%@ W86]:T;۰צ.혞R>Ʒ&dXYTgU5tW:oy{9yR4HeuhSd<"@S˛0t)Q\8Oˮ5vaOj^fѮ#*k o]", ԭhQ `s>]茀8޸)'wZe%)(X9J8uʚg w~zHڝd-x:\~+ ɒֶ3kUgbrK7ng?K4qKmC JA*b)k`;[j4q٪\?dJ^~Q>o Ih # ]-/ٌa jM TGϻr>h1R>j.C"ۛq-(RBpK RیBԓ#)8*+/)朦Gϻ T;ҳj}$5O>y(ᴫKcJum/8$A)P  ^6B^(3*l]ĻTPҢyUze2>}<Ӕ|A7RLLCFU+* 9P+?)+/)櫒<-RҋL$(?p+;N--I:20R>id|yJd|y\~ZeŹ)H$x;iZp6aNܘGR83C8̏)+/)朦Gϻ TGϻr>h1R>j.C"ۛq-(RBpK RیBԓ#)8*+/)朦Gϻ TGϻr>h1R>id|yJd|y)+/)朦Gϻ "\#+Ǿ;ơ{:BU!*ud}i2>}}<Ӕ|A|NS#*V^S#9Lw4YyLw42>}}~V*ʟiA皌ÏeŨ%)H$֌ +aR:rb;JH SFH5 #!xKVǗ2,.DfWA.!I<agki,,xѦ<\J[9xJ ` iR5aymL+ 0mz>{DN5'W j9l&!K I8$\l5hm";K8!372PNR  1-99L7oyN%hA\2s#V|ծ$ly` 2  I.jUd-dMxWt#$q<r7qcƟsiP998lXmuL s"u0(-ZV4 e8OU)VRUL$If*UL$If(,u?9*VTOܪ T(s UbQ XX@KI WLJڨCm)u\q =ɸ9 rHBEzJc r'~3{ݡJ\TT'mR_M4FYۏ"n?)a8u'p' ɒط6Rq㶧]^ Ҕ3]ږڈBa@$ ₛr͕efl&}˖͌J,)ticRA:\ʽxYv^36z;NdqH ` qE KeJ(HIHJIR @HUHPX*DsUbϦTJP)JPD5rH!GޮgxJ3i2HGKki* %iNpOj0rU>̺g&B`- ZmYBV;l8[uq[$o%:ԕQۂ928ط6Rq㶧]^ Ҕ\{6.4fOdlT2)C䕤pB@a+;'N 1͊ (\Dbu\DbYS#M?reO}4ʠJRQpϥK-ƈ%$ iVH8'qHyv\)Ñb; `2e* E*HPHO2RXmC8%I# 9T=6ٻ_z8WjVI%'$7^ܶnWaIK\gVҴ0S8P $$pN^kl[ț){SJFIxVc3ytɵ+&H,)ŖRB{QաYI˲bĶص8Ÿ'T\^AԳT)@&$3c&$3߇[$ċ_&W߇[$ċ_&uaoy}x5#kOӰ/vvsdFuҴ# "fq~S-jDFJ[dv#6YuշBs}mnUT) Ӝ$9*mU˅ON4|rtz-Ju][q/ൌVF_'/˳qs^SG8<6 l,aR]*O « ^/c;= 6$KdۏK+j "N+]E\ۏK)VE\ۏK)PXU|Mqq}e\ۏK)PXI?;?}6]nd]E;6<+ԥ8Ҁ̅sG>~V*ӹ\A. 81O>x`cps UbQ XX@KI WLJEzJc r'~3{ݡJ\TT'v~mǥۏK(+TtcȂoXuNm'(`# F{l+7#a3\lgJPaM#-CK USgn=./g&z\_YA񝉳uK'S@S(S(J[*QBBJBRNR=皸@b[D+"}CNFgrh mEI)Gg&z\_YN|Młk3ufL=<ܦ[$N8RZTR$I̽6%v20o( a;nZRx`tG qۏK)PW X ZI>F̾ (!Zऒ@QF0{j$fm 6tp XHVJƼV ^$LYq% mr*I Grmn6Ᏹu-ku/@*2H*'MΡmc!qy654:HB-6}!ݭL$If)Vp&.R-ٷ^)Ɣеd+w(-U?9*V* PwP8aƐ\Zy*Sn=./B\ 1-">! xBuia$sn=./g&z\_YAKb5홺&_anS-V~^RR)t-*)ZFJF^kimq7H D0-)ԥW;?}6v~mǥ:?`y"O1N|M@[1rdoͽO<)N4!\AjϦUW)PbDK4|Ϟ(7)U|Mqq}e\ۏK)PXU|Mqq}e\ۏK)PXU|Mqq}eHSn=./L\$[oz9S2JS(jt]OvK\|n֯~kW?mk qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Sݒ:?Ly%.>t]OvK\|n֯~kW?m3{>u=,qZQi_( qwHX<GdxΏjG|<.DZ}#` Vxr-!4^}C(wx ZQk#rd2@piXJ;Ǿ*5͌9=JUMLG] ]8А 'xddWɏDYn<78qO5r4@piXJ;Ǿ+eQTy/2[pTףMof*|z& v-2* Ե$ۋ<ͫovwH_ gerbv-2.7.0/doc/aperturemacro.txt0000644000175000017500000000410013421555713016665 0ustar carstencarstenDescription of how aperture macros are implemented in gerbv By Stefan Petersen $Id$ Operation of gerbv is split in two stages; parsing and drawing. This makes it simpler handle peculiar syntax in different gerber implementation by just doing the parser more robust. It also simplifies debugging. Handling of aperture macros are also split in two parts, ie parsing and drawing. Parsing ------- When the command "%AM" is stumbled upon in the gerber file command is left to the function parse_aperture_macro in amacro.c. It first extracts out the name of the aperture macro. Then it tries to build program in a very primitive assembler. This program should describe how to draw the macro. The assembler consist of 8 instruction intended for a stackbased machine. The instructions are: NOP, PUSH, PPUSH, ADD, SUB, MUL, DIV, PRIM. The instructions ---------------- NOP : The no operation. This is the default instruction and are added as a security measure. PUSH : Pushes a value on the stack. This machine only works with floats on the stack. PPUSH: Pushes inparameters onto the stack. Gerber aperture macros accepts parameters to be set when later declared, so the same macro can be used at several instances. Wich parameter to b set is an integer and starts with 1. ADD : The mathematical operation +. Takes the two uppermost values on the the stack, adds them and pushes the result back onto the stack. SUB : Same as ADD, but with -. MUL : Same as ADD, but with *. DIV : Same as ADD, but with /. PRIM : Aperture macros are based on primitive figures, which then are combined in a macro. This instruction describes which primitive figure to draw (for a description, see Gerber documentation) and all parameters when drawing this primitive figure is taken from the stack (and hence popped). Caveats ------- The parser have no precedence at all regarding mathematical operations. The standard doesn't define any, but the limit lies only within the parser. The parser handles several primitives within one aperture macro definition. gerbv-2.7.0/doc/Makefile.in0000644000175000017500000005255113423533412015327 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = PNG-print eagle html example-code EXTRA_DIST = Doxyfile.nopreprocessing aperturemacro.txt sources.txt image2pixmap.fig projectfiles.txt MOSTLYCLEANFILES = *~ all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/doc/html/0000755000175000017500000000000013423533412014216 5ustar carstencarstengerbv-2.7.0/doc/html/Makefile.am0000644000175000017500000000171413421555713016263 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA INFO = doxygen ../Doxygen.nopreprocessing EXTRA_DIST = MOSTLYCLEANFILES = *~ gerbv-2.7.0/doc/html/Makefile.in0000644000175000017500000003606113423533412016271 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc/html ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ INFO = doxygen ../Doxygen.nopreprocessing EXTRA_DIST = MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/html/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/html/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/doc/image2pixmap.fig0000644000175000017500000000563213421555713016340 0ustar carstencarsten#FIG 3.2 Landscape Center Metric A4 100.00 Single -2 1200 2 2 2 0 1 0 11 40 0 40 0.000 0 0 -1 0 0 5 2700 3060 6300 3060 6300 5760 2700 5760 2700 3060 2 2 0 1 0 15 45 0 30 0.000 0 0 -1 0 0 5 2250 2070 7740 2070 7740 6435 2250 6435 2250 2070 2 1 2 1 0 11 30 0 40 3.000 0 0 -1 0 0 2 7740 2070 7740 405 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2700 3060 1170 3060 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2250 2070 1125 2070 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 1350 945 1125 945 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 1350 720 1350 945 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2250 2070 2250 720 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2700 3105 2700 720 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 6300 3060 6300 720 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2700 5760 1170 5760 2 1 2 1 0 11 30 0 40 3.000 0 0 7 0 0 2 2250 6435 360 6435 2 2 0 1 0 11 50 0 20 0.000 0 0 7 0 0 5 1350 945 8100 945 8100 6750 1350 6750 1350 945 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 1350 720 2250 720 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 2250 720 2700 720 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 2700 720 6300 720 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 1170 945 1170 2070 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 1170 2070 1170 3060 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 1170 3060 1170 5760 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 2250 315 7740 315 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 270 2070 270 6435 2 1 2 1 0 11 30 0 20 3.000 0 0 -1 0 0 2 2250 675 2250 360 2 1 2 1 0 11 30 0 20 3.000 0 0 -1 0 0 2 1125 2070 315 2070 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 1350 7065 8145 7065 2 1 0 1 0 11 30 0 20 4.000 0 0 -1 1 1 2 0 0 1.00 120.00 0.00 0 0 1.00 120.00 0.00 8370 945 8370 6750 4 0 0 50 0 0 12 0.0000 4 180 1035 1620 1260 Gerber Image\001 4 0 0 35 0 0 12 0.0000 4 180 1035 3465 3555 Visible image\001 4 0 0 45 0 0 12 0.0000 4 180 555 6840 4005 Pixmap\001 4 0 0 30 0 0 9 0.0000 4 90 435 2340 675 trans_x\001 4 0 0 30 0 0 9 0.0000 4 90 945 3465 675 allocation.width\001 4 0 0 30 0 0 9 0.0000 4 105 315 1575 675 off_x\001 4 0 0 30 0 0 9 0.0000 4 120 315 585 1620 off_y\001 4 0 0 30 0 0 9 0.0000 4 105 435 540 2700 trans_y\001 4 0 0 30 0 0 9 0.0000 4 90 615 540 4320 allocation.\001 4 0 0 30 0 0 9 0.0000 4 120 375 540 4485 height\001 4 0 0 30 0 0 9 0.0000 4 120 840 4410 270 pixmap_width\001 4 0 0 30 0 0 9 0.0000 4 120 435 360 3465 pixmap\001 4 0 0 30 0 0 9 0.0000 4 120 375 360 3630 height\001 4 0 0 30 0 0 9 0.0000 4 90 1470 4095 7245 screen.scale * bbox.width\001 4 0 0 30 0 0 9 0.0000 4 120 1515 8595 2970 screen.scale * bbox.height\001 gerbv-2.7.0/doc/projectfiles.txt0000644000175000017500000000144613421555713016517 0ustar carstencarstenThis is short description of the project file format used in gerbv $Id$ The parser for project files is based on TinyScheme 1.33 (http://tinyscheme.sourceforge.net/), therefore the syntax of project files resembles Scheme syntax. Current per-layer syntax is: (define-layer! ) Current legal names are: * filename: The value for filename is of course the filename with in ". Example: (cons 'filename "foo.proj") * color: The value for color is a three element array with RGB values, where values can be between 0 and 65536. Example: (cons 'color #(1234 23444 12313)) Complete example for layer three is thus: (define-layer! 3 (cons 'filename "foo.proj")(cons 'color #(1234 23444 12313))) As in all Scheme syntax comments are between ; and end-of-line. gerbv-2.7.0/doc/Makefile.example0000644000175000017500000000145713421555713016361 0ustar carstencarsten # # General Makefile for latex documents with xfig figs # TEX=latex # Potential problem, because find returns ./ (infinite recursion) SUBDIRS = `find . -type d` eps_fig_files := $(patsubst %.fig, %.eps, $(wildcard *.fig)) pdf_fig_files := $(patsubst %.fig, %.pdf, $(wildcard *.fig)) .PHONY: clean subdirs $(SUBDIRS) all: echo " Use make my. instead" test: echo $(MAKE) # # Figure implicit rules # %.eps: %.fig fig2dev -L eps $< $@ %.pdf: %.fig fig2dev -L pdf $< $@ # TeX implicit rules (remove built-in implicit rules first) %.dvi: %.tex %.dvi: %.tex $(eps_fig_files) echo foo ; $(TEX) $< %.ps: %.dvi dvips -o $@ $< %.pdf: %.tex $(pdf_fig_files) pdflatex $< # # Recurse directories # subdirs: $(SUBDIRS) $(SUBDIRS): $(MAKE) -C $ clean: rm -f *.dvi *.aux *.log *~ *.eps *.ps *.pdf gerbv-2.7.0/doc/Doxyfile.nopreprocessing0000644000175000017500000016135313421555713020216 0ustar carstencarsten# Doxyfile 1.5.5 # 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 #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = gerbv # 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 = 2.7 # 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 = ./doc/ # 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, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, # and Ukrainian. OUTPUT_LANGUAGE = English # 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 = NO # 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 = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # 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 regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_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 = YES # 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 = 7 # 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 = YES # 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 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = 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 = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # 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 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # 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 = NO # 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 = YES # 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 = YES # 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 this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = 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 = YES # 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 = YES # 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_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = 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 = YES # 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 # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # 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 *.f90 FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.mm \ *.dox \ *.C \ *.CC \ *.C++ \ *.II \ *.I++ \ *.H \ *.HH \ *.H++ \ *.CS \ *.PHP \ *.PHP3 \ *.M \ *.MM # 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 = YES # 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 EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # 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 = ./doc/example-code/ # 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 # 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 = YES # 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 compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = 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 = YES # 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 = NO # 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 = YES # 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 = YES #--------------------------------------------------------------------------- # 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 = NO # 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 = NO # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # 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 options 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 # 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_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # 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 the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 1000 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is enabled by default, which results in a transparent # 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 = YES # 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 gerbv-2.7.0/HACKING0000644000175000017500000001747713421555713013522 0ustar carstencarsten======= CODING STANDARD FOR GERBV ======= $Id$ Indentation ----------- To hack in this code you need to set emacs (or whatever you use) to 4 indentation steps and {} at the right places (see code). Not negotiable. My ~/.emacs are: (defun my-c-mode-hook () (turn-on-font-lock) (setq c-basic-offset 4)) (add-hook 'c-mode-hook 'my-c-mode-hook) Curly Braces ------------ if () { blah1(); blah2(); } else { yada1(); yada2(); } If there is only one statement you don't need the braces. for() { do_whatever1(); do_whatever2(); } switch() { case foo: blah1(); break; case bar: blah2(); break; default: break; } Switch should always have a default case. ChangeLog --------- Minor changes (cosmetic, minor (up to 4,5 lines) not reported bugs) doesn't need a ChangeLog entry. A ChangeLog entry is needed when a reported bug is fixed (with bug report number) or when a feature is added. I (spe) use ChangeLog when writing release notes. Functions --------- The prototype should have return type on the same line as function name: int some_function(int par1, int par2); The function implementation should have return type on a separate line (including eventual pointer star). The function implementation should have the function name in c-comments at the closing brace. int * some_function(int par1, int par2) { /* Implementation */ } /* some_function */ In a function there should be maximum one empty line in a row. Between functions there should be two empty lines. ======= GERBV'S INTERNAL WORKINGS ======= Here are some rough notes about how gerbv works. These notes were taken during the development of version 1.1.0, so things may have changed since then. The idea behind these notes is to help new developers understand the program flow. Please add/modify these notes as you work on gerbv and come to understand its workings. ---------------------------------------------------------------- Important datastructures (this list is not complete, but rather tries to touch upon the high points of the datastructures used): screen -- top level struct of info about all Gerber images superimposed. Global variable. Individual Gerber images(layers) are accessed as screen.file[i]->image. This is a global variable, invoked by "extern gerbv_screen_t screen" in every fcn which uses it. Defined in gerbv_screen.h. Selected members: screen->drawing_area -- This is the window showing the layers (Gerbers) screen->pixmap screen->win -- various windows presented to the user. screen->state screen->file[idx] -- This holds info relating to the input layer (Gerber) files. Defined as gerbv_fileinfo_t in gerbv_screen.h screen->file[idx]->color screen->file[idx]->name screen->file[idx]->isVisible screen->file[idx]->gerber_stats -- struct hold info about codes encountered while reading gerber files. screen->file[idx]->drill_stats -- struct hold info about codes encountered while reading drill files. screen->file[idx]->image -- Holds a parsed representation of each Gerber file in the project. The data held in this struct is used in the drawing programs (image2pixmap) to draw the screen. Each layer lives on a separate index (idx). defined as gerb_image_t in gerb_image.h screen->file[idx]->image->aperture -- Holds aperture info pertaining to this Gerber layer. Defined as gerb_aperture_t in gerb_image.h screen->file[idx]->image->format screen->file[idx]->image->netlist -- This holds info relating to the elements in the layer (Gerber) files. Defined as gerb_net_t in gerb_image.h gerb_state_t -- This variable keeps track of the state of the CAM job as the Gerber file is parsed. It is updated with each code read in, and is also used duing parsing to hold state information which can be modified by the incoming codes. Its use is local to gerber.c ---------------------------------------------------------------- Important files: Here's a summary of gerbv's file hierarchy, from top to bottom: 1. gerbv.c -- holds main() and other top level fcns. 2. callbacks.[hc], interface.[hc] -- Hold GUI widgets (interface) and callbacks (callbacks). 3. render.[hc] -- holds the top-level rendering stuff with lots of looping code, like redraw_pixmap, image2pixmap, and render_image_to_cairo_target. This is the place that other, non-GUI exporters should get called from (export_png, export_pdf, etc). 4. draw.[hc], draw-gdk.[hc] -- these hold the low level utilities which draw objects onto screen.drawing_area. Each is specific to the corresponding rendering engine. Then on the side we have: * gerb_file.[hc]. gerb_image.[hc], etc -- functions related to dealing with the important structs in the program. This can be expanded as we include gerb_stats.[hc] etc. * gerber.[hc] drill.[hc] pick_and_place.[hc] -- files holding the stuff which parses and processes the respective types of CAM files. * Many others to be documented...... ---------------------------------------------------------------- Important functions gerber.c:parse_gerb: Parses gerber, returns gerb_image. gerbv.c:redraw_pixmap is the thing which actually draws the Gerber files on the screen. It is called by several callbacks to draw the screen. It takes a pointer to the screen widget (screen.drawing_area) image2pixmap (gdk) or render_image_to_cairo_target (cairo) is the thing which actually does the drawing onto the drawing area. ---------------------------------------------------------------- Use cases: ==== gerbv starts. Global variable screen is declared. main() called. Sets up screen. Handles command line flags. Inits GTK, then goes into GTK event loop. User does "file -> open Gerber(s)". Callback XXXX is called. It calls open_image to open the Gerber file. Then redraw_pixmap is called to redraw the screen for the user. open_image does this: 1. Calls gerb_fopen, which returns a file descriptor 2. Calls parse_gerb, which returns a gerb_image_t*. 3. Attaches new image to screen.file[idx]->image. 4. Stores the filename in screen.file[idx]->name 5. Sets the basename for the file. 6. Sets the colors for the image. 7. Return -1 upon error or 0 upon success. parse_gerb does this: 0. Mallocs and creates a new state (gerb_state_t). State is local to parse_gerb. 1. Creates a new gerb image (gerb_image_t) using new_gerb_image 2. Attaches new netlist using curr_net = image->netlist; 3. Reads chars from the opened Gerber file, and does a dispatch based upon which char is found. Example: for a G code, parse_G_code is called. 4. If the found char is a *, then wrap up processing for this code by: 1. Malloc memory for a new net element in the curr_net list. 2. Update state and image members depending upon what this code has been. 5. Loop to next code. 6. Returns built up gerb image (gerb_image_t *) parse_G_code (and parse_<*>_code) does this: 1. Calls gerb_fgetint to get the number of the code, then does a dispatch depending upon which number is found. 2. Depending upon the code (number), state-> is modified. 3. Return void. redraw_pixmap does this: 1. Set up global drawing parameters 2. Creates a new screen.pixmap 3. Loops over visible files (images) in state.file_index list 4. Calls image2pixmap (gdk) or render_image_to_cairo_target (cairo) on each image. 5. Redraws the top level window. 6. Returns TRUE or FALSE to control idle function (???) gerbv-2.7.0/win32/0000755000175000017500000000000013423533413013450 5ustar carstencarstengerbv-2.7.0/win32/extract_gtk_win320000755000175000017500000002120213421555714016742 0ustar carstencarsten#!/bin/sh # # # This script is probably not useful to most people. It is used # to extract a set of downloaded files for gtk for windows and # also extract a bunch of license files. # # It is used when initially setting up a cygwin environment for # building gerbv or pcb with a non-cygwin version for windows # as the goal. # # Among the several limitations of this script are: # # - most (all?) directory locations are hard coded. # # - it is really only "correct" for a particular set of downloaded # files. If you get a different version of anything, then you # really need to spend time and verify that the licenses are all # still correct. # # directory where all the files have been downloaded gtk_win32_downloads=${HOME}/gtk_win32_downloads # directory to extract everything (including headers) to. # This must match ./build_gerbv, or ./build_pcb. gtk_win32=${HOME}/gtk_win32 gd_win32=${HOME}/gd_win32 # directory to extract runtime files (excluding headers) to. # This must match ./build_pcb. gtk_win32_runtime=${HOME}/gtk_win32_runtime gd_win32_runtime=${HOME}/gd_win32_runtime cat << EOF Configured directories: -------------------------------------------------- GTK+ and friends developer and runtime directories -------------------------------------------------- gtk_win32 ${gtk_win32} gtk_win32_runtime ${gtk_win32_runtime} -------------------------------------- GD developer and run time directories: -------------------------------------- gd_win32 ${gd_win32} gd_win32_runtime ${gd_win32_runtime} -------------------------------------------- Directory where the downloaded files reside: -------------------------------------------- gtk_win32_downloads ${gtk_win32_downloads} EOF # clean out old directories echo "Cleaning out old developer and runtime directories" test ! -d ${gtk_win32} || rm -fr ${gtk_win32} test ! -d ${gtk_win32_runtime} || rm -fr ${gtk_win32_runtime} test ! -d ${gd_win32} || rm -fr ${gd_win32} test ! -d ${gd_win32_runtime} || rm -fr ${gd_win32_runtime} # make the new ones echo "Creating new old developer and runtime directories" mkdir -p ${gtk_win32} mkdir -p ${gtk_win32_runtime} mkdir -p ${gd_win32} mkdir -p ${gd_win32_runtime}/bin # extract the runtime files echo "Extracting runtime files" cd ${gtk_win32_runtime} for f in ${gtk_win32_downloads}/*.zip ; do fb=`basename "${f}"` case "$fb" in gd-*) echo "Skip gd" ;; *dev*) echo "Skip developer file `basename ${fb}`" ;; *src*) echo "Skip source file `basename ${fb}`" ;; *) echo "Extract ${fb}" unzip -n -q "$f" ;; esac done # extract the runtime+developer files echo "Extracting developer files (to be used at compile time)" cd ${gtk_win32} for f in ${gtk_win32_downloads}/*.zip ; do fb=`basename "${f}"` case "$fb" in gd-*) echo "Skip gd" ;; *src*) echo "Skip source file `basename ${fb}`" ;; *) echo "Extract ${fb}" unzip -n -q "$f" ;; esac done # this was needed for older zlibs #mv ${gtk_win32_runtime}/zlib*.dll ${gtk_win32_runtime}/bin mv ${gtk_win32}/lib/libpng.def ${gtk_win32}/lib/png14.def mv ${gtk_win32}/lib/libpng.lib ${gtk_win32}/lib/png14.lib chmod 755 ${gtk_win32}/bin/* chmod 755 ${gtk_win32_runtime}/bin/* cd ${HOME} echo "Extracting license files" cd ${gd_win32} unzip -q ${gtk_win32_downloads}/gd-*-win32.zip cp */*.dll ${gd_win32_runtime}/bin cat > ${gd_win32_runtime}/gd-license.txt << EOF The GD library which provides png/gif/jpeg exporting is covered by the following license: EOF cat ${gd_win32}/COPYING.TXT >> ${gd_win32_runtime}/gd-license.txt chmod 755 ${gd_win32}/*/* chmod 755 ${gd_win32_runtime}/* cd ${HOME} # extract licenses cd tmpd=/tmp/ext.$$ mkdir ${tmpd} cd ${tmpd} cat > ${gtk_win32_runtime}/LICENSE-lgpl2 << EOF The following packages are covered by the GNU Library General Public License (LGPL) version 2 atk glib gtk+ libiconv pango proxy-libintl ---------------------------------------- EOF cat > ${gtk_win32_runtime}/LICENSE-lgpl2-1 << EOF The following packages are covered by the GNU Library General Public License (LGPL) version 2.1 cairo ---------------------------------------- EOF cat > ${gtk_win32_runtime}/LICENSE-gpl2 << EOF The following packages are covered by the GNU General Public License (GPL) v2. freetype pkg-config ---------------------------------------- EOF cat > ${gtk_win32_runtime}/LICENSE-gpl3 << EOF The following packages are covered by the GNU General Public License (GPL) v3. gettext ---------------------------------------- EOF # LGPL # # atk-1.32.0.tar.bz2 # atk_1.32.0-1_win32.zip # atk-dev_1.32.0-1_win32.zip bzcat ${gtk_win32_downloads}/atk-*.tar.bz2 | tar -xf - cat atk-*/COPYING >> ${gtk_win32_runtime}/LICENSE-lgpl2 rm -fr atk-* # dual LGPL-2.1 and MPL-1.1 (Mozilla public license) # #cairo-1.10.0.tar.gz #cairo-1.10.0-1_win32.zip #cairo-dev_1.10.0-1_win32.zip tar -zxf ${gtk_win32_downloads}/cairo-*.tar.gz cat cairo-*/COPYING-LGPL-2.1 >> ${gtk_win32_runtime}/LICENSE-lgpl2-1 rm -fr cairo-* # no copyright assigned and placed in public domain # # dirent.zip # sort of BSD with advertising like # download the license from: # http://expat.cvs.sourceforge.net/viewvc/expat/expat/COPYING?view=log # expat-2.0.1-1_win32.zip echo "expat is covered by the following copyright and license" > ${gtk_win32_runtime}/LICENSE-expat cat ${gtk_win32_downloads}/COPYING-expat >> ${gtk_win32_runtime}/LICENSE-expat # fontconfig-2.8.0.tar.gz # fontconfig-dev_2.8.0-2_win32.zip # fontconfig_2.8.0-2_win32.zip tar -zxf ${gtk_win32_downloads}/fontconfig-*.tar.gz echo "fontconfig is covered by the following license" > ${gtk_win32_runtime}/LICENSE-fontconfig cat fontconfig*/COPYING >> ${gtk_win32_runtime}/LICENSE-fontconfig rm -fr fontconfig-* # # Dual, "you choose" license. We pick GPL v2. # freetype-2.4.2.tar.bz2 # freetype-dev_2.4.2-1_win32.zip # freetype_2.4.2-1_win32.zip #bzcat ${gtk_win32_downloads}/freetype-2.3.4.tar.bz2 | tar -xf - mv freetype-*/*/LICENSE.TXT ${gtk_win32_runtime}/LICENSE-freetype #rm -fr freetype-* # GPL v3 # # gettext-0.18.1.1.tar.gz # gettext-runtime-dev_0.18.1.1-2_win32.zip # gettext-runtime_0.18.1.1-2_win32.zip # gettext-tools-dev_0.18.1.1-2_win32.zip tar -zxf ${gtk_win32_downloads}/gettext-*.tar.gz cat gettext-*/COPYING >> ${gtk_win32_runtime}/LICENSE-gpl3 rm -fr gettext-* # LGPL # glib-2.26.1.tar.bz2 # glib-dev_2.26.1-1_win32.zip # glib_2.26.1-1_win32.zip # LGPL # # gtk+-2.22.1.tar.bz2 # gtk+-dev_2.22.1-1_win32.zip # gtk+_2.22.1-1_win32.zip # jpeg license # # jpeg-6b-4-bin.zip # jpeg-6b-4-dep.zip # jpeg-6b-4-lib.zip # jpegsrc.v6b.tar.gz # FIXME -- missing jpeg. Do I care? #unzip -q ${gtk_win32_downloads}/jpeg-*-src.zip #tar -zxf ${gtk_win32_downloads}/jpegsrc.v6b.tar.gz #echo "libjpeg is covered by the following license:" > ${gtk_win32_runtime}/LICENSE-jpeg #cat jpeg-6b/README >> ${gtk_win32_runtime}/LICENSE-jpeg #rm -fr jpeg-6b # LGPL # not used anymore #libiconv-1.9.1.bin.woe32.zip #libiconv-1.9.1.tar.gz # # libpng-1.4.3.tar.gz # libpng-dev_1.4.3-1_win32.zip # libpng_1.4.3-1_win32.zip mkdir tmppng cd tmppng unzip -q ${gtk_win32_downloads}/libpng-dev*.zip echo "libpng is covered by the following copyright and license" > ${gtk_win32_runtime}/LICENSE-png awk '/COPYRIGHT/,/^[ \t]*$/ {print}' include/png.h >> ${gtk_win32_runtime}/LICENSE-png cd .. rm -fr tmppng # LGPL # # pango-1.28.3.tar.bz2 # pango-dev_1.28.3-1_win32.zip # pango_1.28.3-1_win32.zip # GPL # # pkg-config-0.23.tar.gz # pkg-config-dev_0.23-3_win32.zip # pkg-config_0.23-3_win32.zip tar -zxf ${gtk_win32_downloads}/pkg-config-*.tar.gz cat pkg-config-*/COPYING >> ${gtk_win32_runtime}/LICENSE-gpl2 rm -fr pkg-config-* # LGPL # no longer used # proxy-libintl-20080728.zip # BSD-like with advertising clause # # FIXME - do I need this one? I don't have the files # tiff-3.8.2.tar.gz # libtiff-3.8.2.zip # libtiff-dev-3.8.2.zip # tar -zxf ${gtk_win32_downloads}/tiff-*.tar.gz # echo "libtiff is covered by the following license:" > ${gtk_win32_runtime}/LICENSE-tiff # cat tiff-*/COPYRIGHT >> ${gtk_win32_runtime}/LICENSE-tiff # rm -fr tiff-* # Not needed anymore #xpm-nox-4.0.3-20020617.zip #xpm-nox-dev-4.0.3-20020112.zip #tar -zxf ${gtk_win32_downloads}/xpm-*.tar.gz #echo "The xpm library is covered by the following license and copyright:" > ${gtk_win32_runtime}/LICENSE-xpm #cat xpm-*/COPYRIGHT >> ${gtk_win32_runtime}/LICENSE-xpm #rm -fr xpm-* # zlib-dev_1.2.5-2_win32.zip # zlib125.zip # zlib_1.2.5-2_win32.zip unzip -q ${gtk_win32_downloads}/zlib125.zip echo "zlib is covered by the following license and copyright" > ${gtk_win32_runtime}/LICENSE-zlib #cat ${gtk_win32_downloads}/zlib_license.txt >> ${gtk_win32_runtime}/LICENSE-zlib awk '/Copyright/ {p=1} p==1{print}' zlib-1.2.5/README >> ${gtk_win32_runtime}/LICENSE-zlib rm -fr zlib-1.2.5 echo "All done!" gerbv-2.7.0/win32/Makefile.am0000644000175000017500000000067113421555714015516 0ustar carstencarsten## -*- Makefile -*- ## ## $Id$ ## MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in EXTRA_DIST= build_gerbv extract_gtk_win32 gerbv.nsi.in Readme.txt \ registerExtension.nsh if WIN32 pkgdata_DATA= Readme.txt BUGS.txt COPYING.txt BUGS.txt: $(top_srcdir)/BUGS awk '{print $$0 "\r"}' $(top_srcdir)/BUGS > $@ COPYING.txt: $(top_srcdir)/COPYING awk '{print $$0 "\r"}' $(top_srcdir)/COPYING > $@ CLEANFILES = BUGS.txt COPYING.txt endif gerbv-2.7.0/win32/gerbv.nsi.in0000644000175000017500000001416113421555714015706 0ustar carstencarsten;; $Id$ ;; ;; Installer script file for gerbv for windows. See http://nsis.sourceforge.net ;; for details on NSIS. ;; ; Started with: ; ;NSIS Modern User Interface ;Start Menu Folder Selection Example Script ;Written by Joost Verburg ; ; and modified for wcalc by Dan McMahill ; ; Later copied for use by pcb by Dan McMahill ; Finally copied for use by gerbv by Dan McMahill ;-------------------------------- ;Include Modern UI !include "MUI.nsh" ;-------------------------------- ;Include macros for associating file ;extensions !include "registerExtension.nsh" ;-------------------------------- ;General ;Name and file Name "gerbv-@prog_version@" OutFile "gerbvinst-@prog_version@.exe" ;See http://nsis.sourceforge.net/Shortcuts_removal_fails_on_Windows_Vista ;for more details. RequestExecutionLevel admin ;Default installation folder InstallDir "$PROGRAMFILES\gerbv-@prog_version@" ;Get installation folder from registry if available InstallDirRegKey HKCU "Software\gerbv-@prog_version@" "" ;-------------------------------- ;Variables Var MUI_TEMP Var STARTMENU_FOLDER ;-------------------------------- ;Interface Settings !define MUI_ABORTWARNING ;-------------------------------- ;Pages !insertmacro MUI_PAGE_LICENSE "@prog_srcdir@\COPYING" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-gpl2" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-gpl3" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-lgpl2" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-lgpl2-1" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-expat" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-fontconfig" ; !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-jpeg" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-png" ; !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-tiff" ; !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-xpm" !insertmacro MUI_PAGE_LICENSE "@gtk_win32_runtime@\LICENSE-zlib" ; !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY ;Start Menu Folder Page Configuration !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\gerbv-@prog_version@" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;-------------------------------- ;Installer Sections Section "Dummy Section" SecDummy SetShellVarContext all SetOutPath "$INSTDIR" ;ADD YOUR OWN FILES HERE... File /a /r "@gtk_win32_runtime@\*.*" File /a /r "@prog_prefix@\*.*" ;Associate file types and icons ${registerExtension} "$INSTDIR\bin\gerbv.exe" "" ".gbr" "RS274-X File" ${registerExtension} "$INSTDIR\bin\gerbv.exe" "" ".gbx" "RS274-X File" ${registerExtension} "$INSTDIR\bin\gerbv.exe" "" ".cnc" "Excellon Drill File" ${registerExtension} "$INSTDIR\bin\gerbv.exe" "" ".ncd" "Excellon Drill File" ${registerExtension} "$INSTDIR\bin\gerbv.exe" "" ".xy" "PCB Centroid File" ${registerExtension} "$INSTDIR\bin\gerbv.exe" "-p" ".gvp" "Gerbv Project File" ;Store installation folder WriteRegStr HKCU "Software\gerbv-@prog_version@" "" $INSTDIR ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application ;Create shortcuts CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\BUGS.lnk" "$INSTDIR\share\gerbv\BUGS.txt" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\COPYING.lnk" "$INSTDIR\share\gerbv\COPYING.txt" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Readme.lnk" "$INSTDIR\share\gerbv\Readme.txt" SetShellVarContext current SetOutPath "$DOCUMENTS" SetShellVarContext all CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\gerbv.lnk" "$INSTDIR\bin\gerbv.exe" "" "$INSTDIR\bin\gerbv.exe" 0 "" "" "gerbv RS274-X file viewer" SetOutPath "$INSTDIR" ;; CreateShortCut link.lnk target.file [parameters [icon.file [icon_index_number [start_options [keyboard_shortcut [description]]]]]] !insertmacro MUI_STARTMENU_WRITE_END SectionEnd ;-------------------------------- ;Descriptions ;Language strings ; LangString DESC_SecDummy ${LANG_ENGLISH} "A test section." ;Assign language strings to sections ; !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN ; !insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy) ; !insertmacro MUI_FUNCTION_DESCRIPTION_END ;-------------------------------- ;Uninstaller Section Section "Uninstall" SetShellVarContext all ;ADD YOUR OWN FILES HERE... ${unregisterExtension} ".gbr" "RS274-X File" ${unregisterExtension} ".gbx" "RS274-X File" ${unregisterExtension} ".cnc" "Excellon Drill File" ${unregisterExtension} ".ncd" "Excellon Drill File" ${unregisterExtension} ".xy" "PCB Centroid File" ${unregisterExtension} ".gvp" "Gerbv Project File" Delete "$INSTDIR\Uninstall.exe" Delete "$INSTDIR\*.*" RMDir /r "$INSTDIR\*.*" RMDir "$INSTDIR" !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP Delete "$SMPROGRAMS\$MUI_TEMP\BUGS.lnk" Delete "$SMPROGRAMS\$MUI_TEMP\COPYING.lnk" Delete "$SMPROGRAMS\$MUI_TEMP\gerbv.lnk" Delete "$SMPROGRAMS\$MUI_TEMP\Readme.lnk" Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" startMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors startMenuDeleteLoopDone StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop startMenuDeleteLoopDone: DeleteRegKey /ifempty HKCU "Software\gerbv-@prog_version@" SectionEnd gerbv-2.7.0/win32/registerExtension.nsh0000644000175000017500000000404213421555714017711 0ustar carstencarsten;; From http://nsis.sourceforge.net/How_can_I_associate_a_file_extension_with_my_application !define registerExtension "!insertmacro registerExtension" !define unregisterExtension "!insertmacro unregisterExtension" !macro registerExtension executable flags extension description Push "${executable}" ; "full path to my.exe" Push "${flags}" ; "options to pass to my.exe" Push "${extension}" ; ".mkv" Push "${description}" ; "MKV File" Call registerExtension !macroend ; back up old value of .opt Function registerExtension !define Index "Line${__LINE__}" pop $R0 ; description pop $R1 ; extension pop $R3 ; flags pop $R2 ; binary push $1 push $0 ReadRegStr $1 HKCR $R1 "" StrCmp $1 "" "${Index}-NoBackup" StrCmp $1 "OptionsFile" "${Index}-NoBackup" WriteRegStr HKCR $R1 "backup_val" $1 "${Index}-NoBackup:" WriteRegStr HKCR $R1 "" $R0 ReadRegStr $0 HKCR $R0 "" StrCmp $0 "" 0 "${Index}-Skip" WriteRegStr HKCR $R0 "" $R0 WriteRegStr HKCR "$R0\shell" "" "open" WriteRegStr HKCR "$R0\DefaultIcon" "" "$R2,0" "${Index}-Skip:" WriteRegStr HKCR "$R0\shell\open\command" "" '$R2 $R3 "%1"' WriteRegStr HKCR "$R0\shell\edit" "" "Edit $R0" WriteRegStr HKCR "$R0\shell\edit\command" "" '$R2 $R3 "%1"' pop $0 pop $1 !undef Index FunctionEnd !macro unregisterExtension extension description Push "${extension}" ; ".mkv" Push "${description}" ; "MKV File" Call un.unregisterExtension !macroend Function un.unregisterExtension pop $R1 ; description pop $R0 ; extension !define Index "Line${__LINE__}" push $1 ReadRegStr $1 HKCR $R0 "" StrCmp $1 $R1 0 "${Index}-NoOwn" ; only do this if we own it ReadRegStr $1 HKCR $R0 "backup_val" StrCmp $1 "" 0 "${Index}-Restore" ; if backup="" then delete the whole key DeleteRegKey HKCR $R0 Goto "${Index}-NoOwn" "${Index}-Restore:" WriteRegStr HKCR $R0 "" $1 DeleteRegValue HKCR $R0 "backup_val" DeleteRegKey HKCR $R1 ;Delete key with association name settings "${Index}-NoOwn:" pop $1 !undef Index FunctionEnd gerbv-2.7.0/win32/Makefile.in0000644000175000017500000004324013423533413015520 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = win32 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pkgdatadir)" DATA = $(pkgdata_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in EXTRA_DIST = build_gerbv extract_gtk_win32 gerbv.nsi.in Readme.txt \ registerExtension.nsh @WIN32_TRUE@pkgdata_DATA = Readme.txt BUGS.txt COPYING.txt @WIN32_TRUE@CLEANFILES = BUGS.txt COPYING.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu win32/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-pkgdataDATA: $(pkgdata_DATA) @$(NORMAL_INSTALL) @list='$(pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(pkgdatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-pkgdataDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-pkgdataDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-pkgdataDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-pkgdataDATA .PRECIOUS: Makefile @WIN32_TRUE@BUGS.txt: $(top_srcdir)/BUGS @WIN32_TRUE@ awk '{print $$0 "\r"}' $(top_srcdir)/BUGS > $@ @WIN32_TRUE@COPYING.txt: $(top_srcdir)/COPYING @WIN32_TRUE@ awk '{print $$0 "\r"}' $(top_srcdir)/COPYING > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/win32/build_gerbv0000755000175000017500000003031613421555714015673 0ustar carstencarsten#!/bin/sh # # # error out on failed commands whose return code wasn't explicitly # checked set -e usage() { cat << EOF $0 [options] Builds a non-cygwin version of gerbv or pcb and create a standalone windows installer. Supported options: --build-only - Only run the 'make' part of the process. This is shorthand for all of the --skip-* options except for --skip-build. --debug - Omits the compiler flag which prevents a command window from being opened. This is useful when trying to use debug printf's. If listed twice then --enable-debug is passed down to the configure script which enables a good bit of debug output. -h|--help - Show this message and exit. --force-autogen - Force running ./autogen.sh. Normally this is only done if the configure script is not present. --nsis-only - Only run NSIS to create the installer. This is shorthand for all of the following --skip-* options. --skip-build - Skip the "make" step of the process. --skip-clean - Skip the "make clean" step of the process. --skip-config - Skip the "./configure" step of the process. --skip-install - Skip the "make install" step of the process. --skip-nsis - Skip the NSIS step of the process. For the $0 script to work, you must have the gtk_win32 files as well as gdlib installed on your system in very specific locations. Edit $0 to change these. While you are at it, feel free to provide a patch to improve the documentation about those libraries. On older installs of cygwin, the available gcc will accept -mno-cygwin to build an executible that does not link to the cygwin dll. On newer gcc's this option has been removed and you must use either a cross compiler that targets mingw or use the native MinGW compiler. If you use the native MinGW compiler approach, then the MinGW compilers to be installed in c:\MinGW and also in your cygwin environment there needs to be a symbolic link: /mingw -> /cygdrive/c/MinGW EOF } debug=no do_autogen=no do_config=yes do_build=yes do_clean=yes do_install=yes do_nsis=yes config_args="" while test $# -ne 0 ; do case $1 in --build-only) do_clean=no do_config=no do_install=no do_nsis=no shift ;; --debug) if test "X${debug}" = "Xyes" ; then config_args="${config_args} --enable-debug" fi debug=yes shift ;; -h|--help) usage exit 0 ;; --force-autogen) do_autogen=yes shift ;; --nsis-only) do_build=no do_clean=no do_config=no do_install=no shift ;; --skip-build) do_build=no shift ;; --skip-clean) do_clean=no shift ;; --skip-config) do_config=no shift ;; --skip-install) do_install=no shift ;; --skip-nsis) do_nsis=no shift ;; -*) echo "ERROR: Unknown option $1" usage exit 1 ;; *) break ;; esac done do_fake_crossbuild=no if test -f /mingw/bin/mingw32-gcc.exe ; then do_fake_crossbuild=yes fi echo "do_fake_crossbuild = ${do_fake_crossbuild}" enable_doc= prog_name=unknown if test ! -d win32 ; then echo "$0: ERROR. This script must be run from the top level of the source tree" exit 1 fi if test -f src/gerbv.c ; then prog_name=gerbv fi if test -f src/pcb-menu.res ; then prog_name=pcb config_args="${config_args} --disable-dbus --disable-m4lib-png " if test -f .gitignore -o -f CVS/Root ; then echo "Building from git or CVS so the documentation" echo "build will be disabled (since we are cross building" config_args="${config_args} --disable-doc" enable_doc=";" fi fi if test -f libwcalc/microstrip.c ; then prog_name=wcalc config_args="${config_args} --disable-htdocs --disable-cgi --disable-stdio" fi if test ${prog_name} = unknown ; then cat << EOF $0: ERROR. Unable to figure out what you are building. This may happen if you are trying to execute $0 from a directory other than the top of the source tree. EOF exit 1 fi echo "Building program: ${prog_name}" # Run this under cygwin to build gerbv or pcb and create a windows installer for # it. Thanks to Bob Paddock for pointing me to NSIS and answering some # beginner windows questions. # where gtk_win32 is installed gtk_win32=c:\\cygwin\\home\\${USER}\\gtk_win32 gd_win32=c:\\cygwin\\home\\${USER}\\gd_win32 gd_win32_f=c:/cygwin/home/${USER}/gd_win32 # where only the runtime components are installed gtk_win32_runtime=c:\\\\cygwin\\\\home\\\\${USER}\\\\gtk_win32_runtime gd_win32_runtime=c:\\\\cygwin\\\\home\\\\${USER}\\\\gd_win32_runtime # program version prog_version=`awk '/AC_INIT/ {gsub(/.*,[ \t]*\[/, ""); gsub(/\]\).*/, ""); print}' configure.ac` echo "prog_version=${prog_version}" # location of the NSIS makensis executible (see http://nsis.sourceforge.net) makensis="/cygdrive/c/Program Files/NSIS/makensis.exe" # ######################################################################## # # The rest should be ok without editing # # ######################################################################## ###################################################################### # # AUTOGEN # ###################################################################### if test ! -f configure -o $do_autogen = yes ; then echo "Bootstrapping autotools" ACLOCAL_FLAGS="-I ${gtk_win32}\\share\\aclocal" ./autogen.sh fi # source directory srcdir=`pwd.exe`/win32 top_srcdir=${srcdir}/.. src_dir=c:\\\\cygwin`echo ${srcdir} | sed 's;/;\\\\\\\\;g'` top_src_dir=c:\\\\cygwin`echo ${top_srcdir} | sed 's;/;\\\\\\\\;g'` # where to install the program prog_inst=`pwd`/${prog_name}_inst # DOS version prog_inst_dir=c:\\\\cygwin`echo ${prog_inst} | sed 's;/;\\\\\\\\;g'` PKG_CONFIG_PATH=${gtk_win32}\\lib\\pkgconfig export PKG_CONFIG_PATH PATH=${gtk_win32}\\bin:${gd_win32}:${PATH} export PATH echo "Showing packages known to pkg-config:" pkg-config --list-all # do not try to use libpng-config, it seems broken on win32 if test $prog_name = pcb ; then LIBPNG_CFLAGS="-I${gtk_win32}\\include" LIBPNG_CPPFLAGS="-I${gtk_win32}\\include" LIBPNG_LDFLAGS="-L${gtk_win32}\\lib" LIBPNG_LIBS="-lpng14" LIBGD_CFLAGS="-I${gd_win32}\\include -I${gd_win32_f}/include" LIBGD_CPPFLAGS="-I${gd_win32}\\include" LIBGD_LDFLAGS="-L${gd_win32}\\lib -L${gd_win32_f}/lib" LIBGD_LIBS="-lbgd" # this ugly hack is here because the AC_CHECK_FUNC autoconf # test doesn't include gd.h. Inside of gd.h, gdImageGif and # friends are declared with # __declspec(dllimport) void _stdcall # which causes a change in how the function is named in the DLL # which in turn causes the autoconf test to fail. ugh! FIXME! export ac_cv_func_gdImageGif=yes export ac_cv_func_gdImageJpeg=yes export ac_cv_func_gdImagePng=yes else LIBPNG_CFLAGS="" LIBPNG_LDFLAGS="" LIBPNG_LIBS="" fi LIBPNG_CONFIG=/usr/bin/true export LIBPNG_CONFIG # add the gcc options to produce a native windows binary that # does not need cygwin to run if test "x${debug}" = "xno" ; then EXTRA_FLAGS="-mwindows" fi CYGWIN_CFLAGS="-mms-bitfields -mno-cygwin ${EXTRA_FLAGS}" export CYGWIN_CFLAGS CYGWIN_CPPFLAGS="-mms-bitfields -mno-cygwin ${EXTRA_FLAGS}" export CYGWIN_CPPFLAGS # older releases of cygwin had a gcc that accepted -mno-cygwin. # in more recent releases this flag (which builds and links without # the cygwin dll) has been removed. We either need a normal # cross compiler or we can fake it by using the native mingw # compiler. # see http://www.gnu.org/software/libtool/manual/html_node/Cygwin-to-MinGW-Cross.html # in particular, the lt_cv_to_tool_file_cmd bit is needed because # libtool will call the mingw ranlib which will not understand # any cygwin absolute paths. if test ${do_fake_crossbuild} = yes ; then config_args="${config_args} --build=i686-pc-cygwin --host=mingw32" NM=/cygdrive/c/MinGW/bin/nm.exe export NM # the ranlib bit here is because putting the mingw tools first # in PATH causes the mingw ranlib to be called. The problem # with that is tht libtool is passing an absolute cygwin # path at install time to ranlib which can't deal. The # func_convert... stuff is supposed to help but it didn't. # The libtool folks have a patch for this so at some point # this can go away. RANLIB=/usr/bin/ranlib export RANLIB PATH=/cygdrive/c/MinGW/bin:${PATH} export lt_cv_to_tool_file_cmd=func_convert_file_cygwin_to_w32 fi ###################################################################### # # CONFIGURE # ###################################################################### # setting WIN32=yes will make sure that the desktop icon # gets compiled in if test "$do_config" = "yes" ; then rm -fr src/.deps echo "Configuring for cygwin" ( ( ( env WIN32=yes \ ./configure \ --prefix=${prog_inst} \ --disable-dependency-tracking \ --disable-maintainer-mode \ --disable-nls \ --disable-update-desktop-database \ --disable-update-mime-database \ ${config_args} \ CFLAGS="${LIBPNG_CFLAGS} ${LIBGD_CFLAGS}" \ CPPFLAGS="${LIBPNG_CPPFLAGS} ${LIBGD_CPPFLAGS}" \ LDFLAGS="${LIBPNG_LDFLAGS} ${LIBGD_LDFLAGS}" \ LIBS="${LIBPNG_LIBS} ${LIBGD_LIBS}" \ WIN32=yes \ 2>&1 ; echo $? >&4 ) | tee c.log 1>&3) 4>&1 | (read a ; exit $a)) 3>&1 if test $? -ne 0 ; then echo "**** ERROR **** Configure failed. See log in c.log" exit 1 fi # If the win32 pkg-config is used, then you end up with spurious CR's # in the generated Makefile's and we need to get rid of them. remove_rc() { f="$1" mv $f $f.bak cat $f.bak | tr '\r' ' ' > $f rm $f.bak } echo "Removing spurious carriage returns in the Makefiles..." for f in `find . -name Makefile -print` ; do remove_rc "$f" done if test -f libtool ; then echo "Removing spurious carriage returns in libtool..." remove_rc libtool fi fi # do_config ###################################################################### # # CLEAN # ###################################################################### if test "$do_clean" = "yes" ; then echo "Cleaning" ( ( ( make clean 2>&1 ; echo $? >&4) | tee clean.log 1>&3) 4>&1 | (read a ; exit $a) ) 3>&1 if test $? -ne 0 ; then echo "**** ERROR **** Clean failed. See log in clean.log" exit 1 fi fi ###################################################################### # # BUILD # ###################################################################### if test "$do_build" = "yes" ; then echo "Building for cygwin" ( ( ( make 2>&1 ; echo $? >&4) | tee m.log 1>&3) 4>&1 | (read a ; exit $a) ) 3>&1 if test $? -ne 0 ; then echo "**** ERROR **** Build failed. See log in m.log" exit 1 fi fi ###################################################################### # # INSTALL # ###################################################################### if test "$do_install" = "yes" ; then echo "Installing for cygwin" # first clean out the installation directory to make sure # we don't have old junk lying around. if test -d ${prog_inst} ; then rm -fr ${prog_inst} fi ( ( ( make install 2>&1 ; echo $? >&4) | tee -a m.log 1>&3) 4>&1 | (read a ; exit $a) ) 3>&1 if test $? -ne 0 ; then echo "**** ERROR **** Build failed. See log in m.log" exit 1 fi fi ###################################################################### # # NSIS INSTALLER CREATION # ###################################################################### if test "$do_nsis" = "yes" ; then echo "Creating NSIS script" echo "srcdir = ${srcdir}" echo "src_dir = ${src_dir}" echo "top_srcdir = ${top_srcdir}" echo "top_src_dir = ${top_src_dir}" sed \ -e "s|@enable_doc@|${enable_doc}|g" \ -e "s;@prog_version@;${prog_version};g" \ -e "s;@prog_prefix@;${prog_inst_dir};g" \ -e "s;@prog_srcdir@;${top_src_dir};g" \ -e "s;@gd_win32_runtime@;${gd_win32_runtime};g" \ -e "s;@gtk_win32_runtime@;${gtk_win32_runtime};g" \ ${srcdir}/${prog_name}.nsi.in > ${srcdir}/${prog_name}.nsi echo "Creating windows installer" "${makensis}" ${src_dir}/${prog_name}.nsi echo "Windows installer left in ${srcdir}:" ls -l ${srcdir}/*.exe bat=run_install.bat cat << EOF Creating DOS batch file wrapper for the installer. If you have just built this under cygwin on Vista, you will need to either run the installer from the Vista start menu, Windows explorer or directly from the cygwin shell with ./${bat} EOF cat > ${bat} << EOF .\win32\\${prog_name}inst-${prog_version}.exe EOF chmod 755 ${bat} else echo "Skipping NSIS step per user request" fi gerbv-2.7.0/win32/Readme.txt0000644000175000017500000000103113421555714015407 0ustar carstencarsten# $Id$ # This is the windows port of Gerbv, the free open source RS274-X, NC/drill and xy (centroid) file viewer. Please visit http://gerbv.geda-project.org for more information about Gerbv. The windows port makes use of GTK+ for windows. Please visit http://www.gtk.org for more information about GTK. Without all the hard work of the GTK+ authors, Gerbv would not exist in its current form. The windows installer was created with NSIS. Please visit http://nsis.sourceforge.net for more information about NSIS. gerbv-2.7.0/README-release.txt0000644000175000017500000001440213421555713015630 0ustar carstencarstenThis documents what is done to create a Gerbv release. The releases now are done fixing up the release version number in the branch and then tagging the release branch sources. The motivation for a branch rather than a tag is to make it easier to deal with setting the release version number in the documentation, distfile, and the about dialog box. Note that the gyrations with maintainer-clean and another build are to be sure that all the correct versions numbers end up in the files. After following the steps below, upload the 'gerbv-$VERSION.tar.gz' file to the sourceforge file release system NOTE: Due to the way that the regression tests work they will usually fail when run on a different machine (different CPU type for example) than what the test suite golden files were generated on. To let the rest of 'distcheck' complete, use this: setenv GERBV_MAGIC_TEST_SKIP yes or under ksh/sh GERBV_MAGIC_TEST_SKIP=yes export GERBV_MAGIC_TEST_SKIP To make a gerbv release do the following: =) Review the BUGS file and make sure it is up to date. =) # make sure it builds and makes distfiles ok: ./autogen.sh ./configure --enable-maintainer-mode --disable-update-desktop-database gmake maintainer-clean ./autogen.sh ./configure --disable-update-desktop-database gmake distcheck =) commit and push any changes which were needed to fix 'distcheck' problems. Of course if the changes aren't related then they should be committed in multiple commits. git commit git push =) Read the section in src/Makefile.am about the shared library versioning and make sure we have done the right thing. Check in src/Makefile.am if needed. This is critical. The version *will* change with every release if *any* changes have been made to the sources for libgerbv. src/Makefile.am has specific rules for how the versioning works. =) if there were any new developers added then update the ./utils/umap file. =) update the ChangeLog with 'git2cl'. ./utils/git2cl -O > ChangeLog =) update the NEWS file with some sort of release notes. I typically try to condense what I see in ChangeLog You can find the number of commits with something like awk '/^2008-11-28/ {print "Changes: " c ; exit} /^20[01][0-9]/ {c++}' ChangeLog Commit and push NEWS and ChangeLog: git commit NEWS ChangeLog git push =) if this is a major release, then tag and branch: 1. Create the release branch and push to the remote repository git branch gerbv-2-5 git push origin gerbv-2-5 2. On the trunk, update configure.ac to update the version. The rules for versioning is that we append uppercase letters to the branch version. For example 2.5A after creating the gerbv-2-5 branch git checkout master vi configure.ac git commit configure.ac git push 3. On the release branch, update configure.ac to update the version. On a new branch, add a 0RC1 to the teeny number. for example 2.5.0RC1. git checkout gerbv-2-5 vi configure.ac git commit configure.ac git push NOTE: if you are not going to do a release candidate step, then skip this push and directly put in the release version. 3a.Ask users to test the branch. 4. When the release branch is ready to go, update configure.ac to set the final release version. The first version from a branch has 0 for the teeny version. For example, 2.5.0. git checkout gerbv-2-5 vi configure.ac git commit configure.ac ./autogen.sh git commit -a # after we expunge all generate files from git, we can skip this one git push Next tag the release. git tag -a gerbv-2-5-RELEASE git push --tags Update the version on the branch to 2.5.1RC1 git checkout gerbv-2-5 vi configure.ac git commit configure.ac git push Update to the tagged released sources and build tarballs git checkout gerbv-2-5-RELEASE ./autogen.sh ./configure --enable-maintainer-mode --disable-update-desktop-database gmake maintainer-clean ./autogen.sh ./configure --disable-update-desktop-database gmake distcheck If teeny version bumps are made for a bug fix, then the tag name should be gerbv-2-5-PATCH001 for gerbv-2.5.1, gerbv-2-5-PATCH002 for gerbv-2.5.2, etc. 5. Create checksums openssl md5 gerbv-2.5.0.tar.gz > gerbv-2.5.0.cksum openssl rmd160 gerbv-2.5.0.tar.gz >> gerbv-2.5.0.cksum openssl sha1 gerbv-2.5.0.tar.gz >> gerbv-2.5.0.cksum 6. Create a new file release for the package "gerbv" with a release name of "gerbv-2.5.0" (for gerbv-2.5.0). Do this by logging into www.sourceforge.net and then navigating to https://sourceforge.net/projects/gerbv (you must be logged in to sourceforge) Upload the .tar.gz, .cksum, and if you built one, the windows installer. Once you have completed the file uploads return to the edit releases page, check the radio buttons next to the uploaded files and click the "Add Files..." button. In the "Step 3: Edit Files in this Release" section, set the following: For file types: .tar.gz - any / source .gz .cksum - Platform Independent / Other Source File .exe - i386 / .exe (32-bit Windows) You will have to click "update" for each file as you go. In the "Step 4: Email Release Notice" section, check the "I'm sure" radio button and click the "Send Notice" button. 7. Have a project admin go to the Admin->File Releases page and then follow the "Create/Edit Download page" to change the default download file to the new release. 8. Return to your regularly scheduled trunk development git checkout master =) if this is a patch release (2.5.1 for example), then simply make desired changes to the branch: git checkout gerbv-2-5 # make changes git commit git tag -a gerbv-2-5-PATCH001 git push gerbv-2.7.0/pixmaps/0000755000175000017500000000000013421555714014175 5ustar carstencarstengerbv-2.7.0/pixmaps/gerbv-icon2.xcf.gz0000644000175000017500000001632113421555714017436 0ustar carstencarsten-=gimp_temp.83530.xcf{TSIN$ТW[:ޱ۹ֶ:rZQk)/JQ@r;,u[oiVEEE "y?~3w]kf>{'1lڲmnGIs6mעȅ^p8%R΢8Dp"8v>^ +=U^zLjmr_q7?qƎ čܣo}{{Hgm1͸V(WرR10oOa`&e m8i2\7BJ {b \| aAS0 Rhի"C}aun s ^!w!0%.d/4)ޚמ3WyC12z7=zHiGO6.4̴wo~Yc7:kķ׈aS8Ѵj &!VC!R=:2[?Cnw!)6r !m'CE{wq< L.  ,ƙxzG_62oU$%BueUWuMmG5&po־e5%#[vVsMUcphQKIHl^,+9v ?o^~c%g~CRִ]j C977\<[\}7_9ƯjS{ߘrj Tߗݟ|oξeUum=#6?#أLߙ%W:yVMٔ*:/vҶnN޼5M};}N=4`GZV[}PnUjrSU{rrX%5վWSM}MWʊ ٫NK޸vk7&~SpȆ$T42޽U_uhWgnM\ĭzHW y97oXƋϿ w,LP=àYwTv&_k',gᩊMk{~6VŚhOڟtU}۵۞|CWTvS˂+VIV=ljno ZzǬX/l=t}cFhZӅPo=) 526X4)'*,x̐tA%ވ)12{I%CWwRɴ53у%}@TWz JVL[ƱN$#* F/ ,0}qDe L; rlS0~9 ca6ݚVwGbdtx׫>q]jPx`. #N/S$Lሻ+q$a`Is$G.kNđwG'6U#^<ژq$H:fw۲99ή@ Pow{sc3jimkJE 62tUPؤkmhLMKߕIߎΛ5mMm=2Nr۽]7uU.Wkku7zFv*1z]xjՅ^oԵw&,o#;? ]SժsgN>sjmSkgиr#k==zmUeYiIҲ*m=jGj#nqtdU[}\i#GP]r}kj#>2>Xs h` 5FN3A .>r -7n` {]:_z`(=Z6-gcuўٙw&Luwz Sa$aj;l9ٞrOK~[?jrr7جaln)ا;whյLDԮdx6̉WA-7uTd {[;O"l= .jME^5eMڍ7v eE ] A$JRFQuQ/D47 HvS Q#du<^LB$wFQ58)n# #*Ht(Mf(H4^ijddzI.ʙEF$ml!XfV܆][&0ĕlV bfw.g d9`61M&`~aF7F3$8TV  h2Q󃡱ufn 1|2>+t# R\逝slttdtt \as]($3B~"81>:2;GFǁߐ!3B  !m*4ᑈޙHXNٕ {Z4szZ{iAM\ HvmCOpBuwY Ʃ2OAw]HUf^-lN褗&+2VSjv!L%+k}&F* ְ<0t +[Gla,Jd[=X4d♔;XQ(GC&G)2"w<>CvT$+;:u; # VG xd#~dp%`ju⇏ 1w30Op h;g|F0B(%"Fs=QL0_o40GMg^A߮Ea5q=."GrxYe't7,Yb-l?ˈ Lx羡~k9=-Gpr Af+ϗ*9z|.x i7wW:bq||QV'Ao\nҊeKFE"Y’e"!Kd(M.f%,{uER.{9xIV|_):[Q7d']@K,68}:?%IǃُC k-yZT.{&Ȓt\m!<؄I~+zd 9~7IX͝;nx**[/U;[9@F֡~'dc՛IߖH| Mq9:-蹛EPW[cN=#l l|nÁ"$E[ognb 5ݘ< U)Gm/GB2Is7b1RiGڃءghEK痋P Iupm`AZc}d 3:˚h4݁2ܮL{VasV&.⣡Z0!><4q܏nۅ̌/fd.S~~ɦ~ #c 0g,6dnX?8sLǏb3qPd,ؘgX!ŀ$Eq0 2i,/FsYtLK\pbzIbQ,X / VW >#ȕ XAV)gC ν@<`qcYg>wq;:VA(at7*Z(*T >8.& :B* q\ĕny(3ӹTrYD,SixQ\AW#eQ&IePx2(FzsLv(Nʔ1Ip ## g0ټL+p9[Ɛ3v&4dlT .cJ2\QP-*7j71erƕerm Pf8Y_#Her܏Šåpt 6J胂Q.Pq%\NJ1|M02ȩJ.KA1e~"3/WxJLWBr7Gɰ17ḂRI90}3La {s4H _~{œvbR yb.-K' _诟|)@vD;-w+W91lR;^%ġx@vK ۶oXPa@&O<.TذND+zϾܻ'">ϾGl-b=?.3+~+i FX Χ' Ͻ{zys=҆ϏUOE{== 2: .+(lHDDV@pŕ qE A\^ɸB B$%&1<9=MVmՖΩ>|oO{Nn[nBTF>O;*^^QwΚ7>;ywfXQ5"iڔ~W]o{+6\TIJ<^yđ7 '*@QVlؑݯڛO|y‘mμ[nj . uQ2>s̉'NN_'U//&OmTȩ7KS]{\|jgOg~}yd^jnt#w䓷}P_\8c++_W̡4sҜ=4w}lt6esOt;u,FX0;~HѪZHTEB׾yf|qBkI}9O-yT7eD;"ƣ۞LpZyF+ 3*ٲxݥ?E6n:}锛d:)@=lb΄+BkhŏZYǯ)BFE*kO]g/pTR0}OO9 ?=%x;H[ߔ{#>ABǗU+F`G4\ގ5ʲRm"R=T{h[N~cSnIUȽvN6Y\ϖ`$MߖnѠҷRy/_n[=w-Zޅ 7gq]ݧN}pvS7& f$JK }Ҙ+_;t䃚k>:}[-) Tf sy/=\kӪ%Wny=%Nԡ&W-wmo]YpS ׼og1:W8+ޱbIc2GSv˖3&z+ o/(ٺd^~?M鳿O&Z-?d̔yN:uG'&j]ӜgLb$켉I(jBgMQI7:DN9R/ I!E& gC/'i=fHٔ(rrU7CLL_]`E<9νrgn-!$u% CƉƍ3<2u8ݞOTAxnۙ{+G;s BBOtGGiGaMrh ;8dqK7펎Ƹq"3!E$s)D8)' [% 2(r 7ДH I0)$*^R8vB`.!$m# C#f#5XN4"'BPBZ$Q1h?ٮk^>H y^u m /rre# 4& A]d^i!-DEBe˰^ W 0;fH֬Zv DZ#ïidRPHF0{w\$9f x(It lC8vsz9>2<:FY쭯[1zǧ8RmUŷjfP9M`)9x4 \H%JvV)&Xh]$|JiaFJͨu.P9R~"M( >K01BjM7 G%BBR;M@?囼V{qjC[4(fU-h֗P"٨c lDPQ Q#DIlND>Fb(Hl&|8ObhV3hJ_Y:[p&H Wm&A \͐!Rf#1[&fhDA` 05Uc_M؊x *1dYE Ly3ܓ^9N$kl5+U< p{ll46 pspF<,EjìflـX np簟QB] `sIl͂ň$6 _;;SȳgOSYAAȌ'E G4C}?/.^ !G epH9#bP#??+mvήg0C feei?nȈط'f c&0 ~a/,/X7(6>X`EOP`uU? H18MOs=?(/8-?:gerbv-2.7.0/pixmaps/gerbv-icon2.png0000644000175000017500000001013313421555714017016 0ustar carstencarstenPNG  IHDR00WbKGD pHYs 1htIME !IDATxY[sq>gfvfXAH)DIօl37ljcY6rc=v9)ٖH-dNX,{9;X mR$qWM 5ssjϟ]$ŋ^ד>Ѿoz_g>cMj3 .\` {}}|;@Ds;vL6}&ɓ?.J²1&6Ƥl` x`ԩSز>^F)7'nԁ?ley[)h@@D _珜ShĄfv'$."JX,f\.g+hX:s$qNmJi$&㎉Cٿ:K_ 9(d4567?}{QmcD2K.BW&o<j~lr]*$"733"Z`3V'?R%˖Ʀ3cvDNq=fer 3723YP"ɚ&XvZZZ6 %Ƕ휗͖( I󌔂q֢+W#b\Lmueޕ_n9d Kӊ-%2e g, )-3Te$ƊyɱJTfjrb~Rʅg,H$T~W^izjDD 40 ?S&g+I!T(bXh$ \ 䤍9y1 ]Ǯrb΍dmf3Bg-a2`o +mǖe1&50"3~Hi+XNN7vp"kr edz&140L@88fÙ:J| k7[\o~ъ6^g#a}`ᧀ07nS.L0;; ݵ7"TPncu6no kj*" -D… V^`e}?>!k0RbTe'{/2_=Ô`2'ah_mo} Õ8hA]muqW)[v+-5?>裏.(vtG™G"#&u&HL>f9S$d,j jVU%DAc߸>6"ľ1-f3DcBcLb1Dtn;}By)nIb 0 D'F ={fΞ=  7)n tBϜyΝ;g<Ô GL:m,}Jkcm"2t'pDƘr7}DZf ,Kiθv(vF #@{> /}Phrm0L lV 6Rxgߞ}pH?,=tX[I0cZƘ (&tEhX,B0sqj;Q&\R"%@w%Tہoa3Fpi-o HD4C+@ B?&v W) slf]$*Q48ncƘ=j,//˗/kkv9l*I(miF%#*"P u_bKG)zv@p$Bj]nA3BBz, NT=Iu`؏p@DH'"f@Dl6ZM-]_ԛa{{]Bzq]!5#hèACxG -wXįZkKf]Q.RlCȱJ_BD*`gpV[vU( ^)2T?t:_):>۴Ј^wiQ2kv|xytXf~??3$ $^2*%Ȥ1'_g ^6kCd8N=r>0; ,J3ؔ 1tGm50AGi;JƱ3[8Y'`U'N[Sg<8A]n^7sѶiV%0 ߨV&MSKa !,"+w30zHB$~5n\q/'l'#s.}vD+p@ :x `96[7Ko^U"Aڊmֈ2q3MdcQc;ҥ?ѓR#LN¸;4S8 ~ׯ2]{;fF&>Q7 $"4M0GCOpN+3h{V77pGm4)31-RIXYH̴Ƙc&3Y"ΣQDDj7Q|O?#G)Np,2Q`,il9?}TzT>W*I{f=x 7T=Ti"mcL3IHJ'NΕ+hy&H0on/}x%* !D!҉vs Bsxe 3[]Z}@Dt,ϻd6#ma5W{׮Ѯ\Def3d:dX4f\':Ʊ-잱=q̲o/7\9G PaXYlv>|^MԈhhCܮךF9\v󙩜(=FAfs871óSC¶+Q[k_m]OͮJ5"Z1Ԍ1M"*:t;$ysD:v.= "&IZk@,F}x'ոíF=Jd^ZGū#N]$,{}왓ڎNy?+[A7FcZZkbfVI`8Pglah^vQV7$iQ=]p@^筭-nRŋE?Έ7 uKkcnjy^]\\RmQp]7B)efjjjq8Zk3ZwGQ;s,ʕJ&ii1Rh!" )%t-YGDith=+QJ))gY' "Qֱ1&Su'BDd Nag 1Fw"jF79J!GRԽn{ !M? ]z[ 7N{pS}2-G/+az81TIENDB`gerbv-2.7.0/pixmaps/gerbv-icon-2.png0000644000175000017500000000333413421555714017100 0ustar carstencarstenPNG  IHDR00WbKGD pHYs }vHtIME  u;iIDATxo?3|rwI,8p @p]J\|%wX$h{!RIcPcZ7aZJ{/@ 9!cf~?XcXo%y/~|gh| >[pӷ1I4n߾?@@lj=6P*o6vwoSSky"}Tpe4IG pp% /hB 8,N=zV ^i (h9.ܡ쓳n߈i]NB]#P= `1'TOϵ®|]V:܊gY.$l[!v:cdM6CD$#CBzZ̸WjdGJN3N*1oB hėB͐ JhJxޕU>YE0əB u,QƢShH6[V]ӸX-o^ V[Ȑ+Ìr AhFaH! ٱL̷vg!ʪ3h6حBǩ ⁞+0nW/W>dkќAD(565혰w&KԠ΍JԾh,, BAАD[!d;v5"tZjD\B,g|3Rb@nOw hx]^Y~gډu!+/ֺ61Z]XwEA,HB@qd m튽vXeCCaZSδJ޼ʑ|+Lp718\#˫/RH"`b6- d/;٬YgaRe(wG"+HT1Iaf^`x_V'8\" ?^M[.)r c(uRuY|Kr*%[^@`ݢwم}$*6,d E/Vd@[ghMj`96AxҹT='S}ҹWe [σ½( -82126Q(L@XO\!zO4`*)Jc{mUjb ussmٯ޳Ւk|lZmϚN H$)ٶ*u[+D͐[3\}fy1,jWT/@ƗA0&T.́"/ {[-{dbBZrdbB4W\;wD#/^/$S:?JjlF薝x~kW ܁# X aU~xhEs%o;ԩ䋎DHl=tdE|yz^WcSl)LWGх-@F ]6S(Z>7_bDĀđh+ AV|x*2@j?[psk gC- 0HK V⻹VMsG!E8Gс-{KSQPE#PiVN?, uh(m%SZI. L!SkJkQ.}| H@np1MU /zG陰ٍ|x]/^9# ;sjj@_19P}Vܷ& 畆vژZ2Ww)aHT0ǦaA~9*"M Rտ=EU k:r \bk"KbmNU3Sy

>k,0!fE$f"^vrUuo1N~-#q|'_(?xs뫵گU4#_o6wJ>`)Umr#"bT x"Zhj=U?G-g[{8}W߫ɘȾȯ~R"@[ulNHyͱ{D&v+j>Y־ݫVM笵 ÚR-$"օ؅4+j6?zbr6?Sݟޗc|ql역W6ͯ8z[YjN^׼ jOJ{&D>Eі(6BY_'IƘIcLCDC"WTU;z1QQD6}Zեc"M[3QI8y~@|6ܗrϭY߀U0e̖-Ƽ?mRaƘk>ǻ#H&D~13!BUNmX|_H?QZ Oz3S{YDUڏgD*Tw뭽O; _dyc̔~!Dr`ؼ~8JDY8w`\dzZdW?e޺7OW)D"^/bB؝65`T1V?C?C;Dv~ӹ1@#N~Bs46f}p7'Ƀk>E7}:nϽY Y[.zzf" j;f~<ǘZ{ٶ;IYD(2S?8TՉHPk.2j cν-~#i" orCWG3-U]?۪wqt 5fǬj_{9Ϋw/=UT5W{' fHDjƘ)kƘ-ƘDrt_ EȦ!! z1Xkc19$UV;LcfDis! /h{# KU)ynQ{ zDOU^U۪RծF*p\~NUvAU y[! @B{_TS F@ ,ҰV$DTU˩jODUU_Y8Q'N0 腭TM-LcdkI>@3LDh=8@eֳ#cY3sW!29~/N>B`^o_VsB D8 &<S?FA!@61EbB ET^O"?sA"!2>IxO>D6gH"YDƋH"ńx ! 2#@dqb:Tr1LM~`yAtR$8 ̯2;>yȓywDŨzRAGI-d0*f7QPdL c24#ia. h4& r0O?'k`$܂ܠ hik t>eY40fрE X37,̤O,j,j,-հ;XԀEMEXTE̢Y0,*`d&~`Q`Q`h5,*, 4KF eÇ{˄4A1a jOaU=1p߾R8--<(P͵k5R4F-g:;l! |.$Zm-nॼ;j{mK}ss_6y`ӑOWF>HzĿuK!^Bg݃ef- rgI/<,7ρ8YqΝF]nn/ʏN'Բ;ĩ64q7fRyOir[U)?iڭ縨̨qb*'|\==]9#==<#&asl5?wbmhGht`=p}a݅hTʹsX#v>}>i8"FX/N\/OgĮئ=+cI/HV@+CeP .(m-IU%o@<)k)Ȟ0IALb40,RĠ /LњYJ[&@` A,a0.k-=2'A`C!<9'7 9C$r2 #L edBxFv D"11Q #LњYJ[&!< W*# eRcu"Ikj>rF]5Ѕ1+[@!,V#SjH='P] L'@|Md1_j&D[ ;â pyud чXj6ԀQ}$MdG| >TI:RƸ[uapL+&fUVw*{ F'\k =3^jZj}%N `@#PR Vc tMKr۰$H+ xfذې!9!pDb27zN G<3ft {O R }'db# Au5)|Fs9.A\> 8$`ҬA]8 'pOӢ/=%0 !8;{ 5%6#5"C"sb(BXg1MQF:LЄfƯjg 6WdP{pr&͚7δCE-I\={dD'^2(][7oX:S,zЗz*3ωXå{K T+s ֧D/߸o\&\c#2TK~bMVIڲhSvZڗ 2?K$j͚Mv]RA,vOR9+RVEs-3+1c sV%Gϙ1iR-;i#]FXGaKc",\h!ύ4'6!.2l߈10ʝ 2!dܨg pgs6*h|X/WW_K%H`ϡnCNNvb8yxyىŜ3DB9B8I?04(an>d߭F*t<2V~jAXBd$BA98\]L8;p"N9¢KG|>6fb C}t3z=|w>q\Sy"cOSmt**DK_Y}Dʊ~s+?}'*OTJWdh0zXz19ј Ihj||lйr뒊 rCw&͊S(+KZPsʕ/+5AWeHJ\ZScέEE oU 9숨-+W\Q']NIԖ=xOW^il~OJN۲{g+3ynt$ M[WQCD_a{<>^yCukq[r0ORn7Ծ΍{}rOkkʛ__^K9!2݋}w~hj=ƙMuGS~?Ňb?˗7w6mc!ǨmuG|8*i\@Sf% W>λTcӽ 񆻥/nzұ7js%"߭=,E@^i`7Qݱq(ՙ!j cGm(ؔ13+Tx gύMJZ!7>Jmy̜<2WΜUʪƦŽ8/ oj.ؐnKw<>yW 2/JǶB Ώ/]Xy_S6քۀioio77r $Vy7UzŔ^}ڃ{޽wwkʻ-0<}#`SK|rM΅{V|(-۾00?i?>I`~l kL0=+̏2\SYy`z+O*v|̊E{-(ߎ#c;Gθ̈^hDyii̜qq mQrs2WEYWŽ8[&&{gs؈7>E,z9;S(S[M(/]C.)~|!z8ju"[Qv50Po)Vw tÇoeby饗j%׿|d7d>S`ڿ; ϛ{f4%d~.ʶ⊋wQyfϾ~%o/&sN pjNjrIf~/tqk3zi m{vp;jtŠժ rDW.gerbv-2.7.0/README-win32.txt0000644000175000017500000000363613421555713015161 0ustar carstencarsten$Id$ Yes, gerbv runs on windows too! To build from source, you need cygwin and also the mingw compilers. It builds as a native WIN32 application. You may also use mingw instead of cygwin to build gerbv. The configure script is set up to assume that you are using the native win32 gtk libraries as opposed to the cygwin ones. One method which seems to work for building from source is: - Go to http://www.gtk.org and follow links to gtk for win32. - Download all of the runtime, developer, and source .zip, .tar.gz, and .bz2 files for glib, atk, pango, gtk+, gettext, libiconv, pkg-config, and the others there. Save all of these files to ~/gtk_win32_downloads. - In cygwin, cd /path/to/gerbv/sources and run ./win32/extract_gtk_win32. This will extract all of the runtime files you need to ~/gtk_win32_runtime and the developer files to ~/gtk_win32. - In cygwin, ./win32/build_gerbv This script is a wrapper on top of the normal configure script and has all of the correct options to get gerbv to build under cygwin/mingw. ./win32/build_gerbv --help will give a complete list of options for build_gerbv If you have the normal cygwin and cygwin for X gtk libraries installed you will have problems. It is related to libtool changing things like -L/path/to/nativewin32gtk -lgtk to /usr/lib/libgtk-2.0.a. Watch when gerbv.exe in src/ is actually linked and you'll see it happen. An ugly work around is to just modify the Makefile to not use libtool for linking or to run the link command by hand. But that is ugly. Anyone with a real fix? I worked around this by not installing the X gtk libraries on my cygwin installation. Binary Version: --------------- The installer was created using NSIS (http://nsis.sourceforge.net). The gerbv.nsi file in the win32 directory was used to build the installer. Note, gerbv.nsi is actually created from gerbv.nsi.in by build_gerbv in the win32 directory. gerbv-2.7.0/TODO0000644000175000017500000000061713421555713013207 0ustar carstencarstengEDA GNU Electronic Design Automation ------------------------------------------------------------------------------ gerbv TODO Stefan Petersen E-mail: spe@stacken.kth.se Web: http://gerbv.sourceforge.net/ $Id$ ------------------------------------------------------------------------------ For an up-to-date list of TODO items, see the Feature Requests at http://sourceforge.net/projects/gerbv gerbv-2.7.0/intl/0000755000175000017500000000000013421555750013462 5ustar carstencarstengerbv-2.7.0/intl/localename.c0000644000175000017500000024131413421555747015741 0ustar carstencarsten/* Determine name of the currently selected locale. Copyright (C) 1995-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Ulrich Drepper , 1995. */ /* Native Windows code written by Tor Lillqvist . */ /* Mac OS X code written by Bruno Haible . */ #include /* Specification. */ #ifdef IN_LIBINTL # include "gettextP.h" #else # include "localename.h" #endif #include #include #include #include #include #if HAVE_USELOCALE /* Mac OS X 10.5 defines the locale_t type in . */ # if defined __APPLE__ && defined __MACH__ # include # endif # include # if !defined IN_LIBINTL # include "glthread/lock.h" # endif #endif #if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE # include # if HAVE_CFLOCALECOPYCURRENT # include # elif HAVE_CFPREFERENCESCOPYAPPVALUE # include # endif #endif #if defined _WIN32 || defined __WIN32__ # define WINDOWS_NATIVE #endif #if defined WINDOWS_NATIVE || defined __CYGWIN__ /* Native Windows or Cygwin */ # define WIN32_LEAN_AND_MEAN # include /* List of language codes, sorted by value: 0x01 LANG_ARABIC 0x02 LANG_BULGARIAN 0x03 LANG_CATALAN 0x04 LANG_CHINESE 0x05 LANG_CZECH 0x06 LANG_DANISH 0x07 LANG_GERMAN 0x08 LANG_GREEK 0x09 LANG_ENGLISH 0x0a LANG_SPANISH 0x0b LANG_FINNISH 0x0c LANG_FRENCH 0x0d LANG_HEBREW 0x0e LANG_HUNGARIAN 0x0f LANG_ICELANDIC 0x10 LANG_ITALIAN 0x11 LANG_JAPANESE 0x12 LANG_KOREAN 0x13 LANG_DUTCH 0x14 LANG_NORWEGIAN 0x15 LANG_POLISH 0x16 LANG_PORTUGUESE 0x17 LANG_ROMANSH 0x18 LANG_ROMANIAN 0x19 LANG_RUSSIAN 0x1a LANG_CROATIAN == LANG_SERBIAN 0x1b LANG_SLOVAK 0x1c LANG_ALBANIAN 0x1d LANG_SWEDISH 0x1e LANG_THAI 0x1f LANG_TURKISH 0x20 LANG_URDU 0x21 LANG_INDONESIAN 0x22 LANG_UKRAINIAN 0x23 LANG_BELARUSIAN 0x24 LANG_SLOVENIAN 0x25 LANG_ESTONIAN 0x26 LANG_LATVIAN 0x27 LANG_LITHUANIAN 0x28 LANG_TAJIK 0x29 LANG_FARSI 0x2a LANG_VIETNAMESE 0x2b LANG_ARMENIAN 0x2c LANG_AZERI 0x2d LANG_BASQUE 0x2e LANG_SORBIAN 0x2f LANG_MACEDONIAN 0x30 LANG_SUTU 0x31 LANG_TSONGA 0x32 LANG_TSWANA 0x33 LANG_VENDA 0x34 LANG_XHOSA 0x35 LANG_ZULU 0x36 LANG_AFRIKAANS 0x37 LANG_GEORGIAN 0x38 LANG_FAEROESE 0x39 LANG_HINDI 0x3a LANG_MALTESE 0x3b LANG_SAMI 0x3c LANG_GAELIC 0x3d LANG_YIDDISH 0x3e LANG_MALAY 0x3f LANG_KAZAK 0x40 LANG_KYRGYZ 0x41 LANG_SWAHILI 0x42 LANG_TURKMEN 0x43 LANG_UZBEK 0x44 LANG_TATAR 0x45 LANG_BENGALI 0x46 LANG_PUNJABI 0x47 LANG_GUJARATI 0x48 LANG_ORIYA 0x49 LANG_TAMIL 0x4a LANG_TELUGU 0x4b LANG_KANNADA 0x4c LANG_MALAYALAM 0x4d LANG_ASSAMESE 0x4e LANG_MARATHI 0x4f LANG_SANSKRIT 0x50 LANG_MONGOLIAN 0x51 LANG_TIBETAN 0x52 LANG_WELSH 0x53 LANG_CAMBODIAN 0x54 LANG_LAO 0x55 LANG_BURMESE 0x56 LANG_GALICIAN 0x57 LANG_KONKANI 0x58 LANG_MANIPURI 0x59 LANG_SINDHI 0x5a LANG_SYRIAC 0x5b LANG_SINHALESE 0x5c LANG_CHEROKEE 0x5d LANG_INUKTITUT 0x5e LANG_AMHARIC 0x5f LANG_TAMAZIGHT 0x60 LANG_KASHMIRI 0x61 LANG_NEPALI 0x62 LANG_FRISIAN 0x63 LANG_PASHTO 0x64 LANG_TAGALOG 0x65 LANG_DIVEHI 0x66 LANG_EDO 0x67 LANG_FULFULDE 0x68 LANG_HAUSA 0x69 LANG_IBIBIO 0x6a LANG_YORUBA 0x6d LANG_BASHKIR 0x6e LANG_LUXEMBOURGISH 0x6f LANG_GREENLANDIC 0x70 LANG_IGBO 0x71 LANG_KANURI 0x72 LANG_OROMO 0x73 LANG_TIGRINYA 0x74 LANG_GUARANI 0x75 LANG_HAWAIIAN 0x76 LANG_LATIN 0x77 LANG_SOMALI 0x78 LANG_YI 0x79 LANG_PAPIAMENTU 0x7a LANG_MAPUDUNGUN 0x7c LANG_MOHAWK 0x7e LANG_BRETON 0x82 LANG_OCCITAN 0x83 LANG_CORSICAN 0x84 LANG_ALSATIAN 0x85 LANG_YAKUT 0x86 LANG_KICHE 0x87 LANG_KINYARWANDA 0x88 LANG_WOLOF 0x8c LANG_DARI 0x91 LANG_SCOTTISH_GAELIC */ /* Mingw headers don't have latest language and sublanguage codes. */ # ifndef LANG_AFRIKAANS # define LANG_AFRIKAANS 0x36 # endif # ifndef LANG_ALBANIAN # define LANG_ALBANIAN 0x1c # endif # ifndef LANG_ALSATIAN # define LANG_ALSATIAN 0x84 # endif # ifndef LANG_AMHARIC # define LANG_AMHARIC 0x5e # endif # ifndef LANG_ARABIC # define LANG_ARABIC 0x01 # endif # ifndef LANG_ARMENIAN # define LANG_ARMENIAN 0x2b # endif # ifndef LANG_ASSAMESE # define LANG_ASSAMESE 0x4d # endif # ifndef LANG_AZERI # define LANG_AZERI 0x2c # endif # ifndef LANG_BASHKIR # define LANG_BASHKIR 0x6d # endif # ifndef LANG_BASQUE # define LANG_BASQUE 0x2d # endif # ifndef LANG_BELARUSIAN # define LANG_BELARUSIAN 0x23 # endif # ifndef LANG_BENGALI # define LANG_BENGALI 0x45 # endif # ifndef LANG_BRETON # define LANG_BRETON 0x7e # endif # ifndef LANG_BURMESE # define LANG_BURMESE 0x55 # endif # ifndef LANG_CAMBODIAN # define LANG_CAMBODIAN 0x53 # endif # ifndef LANG_CATALAN # define LANG_CATALAN 0x03 # endif # ifndef LANG_CHEROKEE # define LANG_CHEROKEE 0x5c # endif # ifndef LANG_CORSICAN # define LANG_CORSICAN 0x83 # endif # ifndef LANG_DARI # define LANG_DARI 0x8c # endif # ifndef LANG_DIVEHI # define LANG_DIVEHI 0x65 # endif # ifndef LANG_EDO # define LANG_EDO 0x66 # endif # ifndef LANG_ESTONIAN # define LANG_ESTONIAN 0x25 # endif # ifndef LANG_FAEROESE # define LANG_FAEROESE 0x38 # endif # ifndef LANG_FARSI # define LANG_FARSI 0x29 # endif # ifndef LANG_FRISIAN # define LANG_FRISIAN 0x62 # endif # ifndef LANG_FULFULDE # define LANG_FULFULDE 0x67 # endif # ifndef LANG_GAELIC # define LANG_GAELIC 0x3c # endif # ifndef LANG_GALICIAN # define LANG_GALICIAN 0x56 # endif # ifndef LANG_GEORGIAN # define LANG_GEORGIAN 0x37 # endif # ifndef LANG_GREENLANDIC # define LANG_GREENLANDIC 0x6f # endif # ifndef LANG_GUARANI # define LANG_GUARANI 0x74 # endif # ifndef LANG_GUJARATI # define LANG_GUJARATI 0x47 # endif # ifndef LANG_HAUSA # define LANG_HAUSA 0x68 # endif # ifndef LANG_HAWAIIAN # define LANG_HAWAIIAN 0x75 # endif # ifndef LANG_HEBREW # define LANG_HEBREW 0x0d # endif # ifndef LANG_HINDI # define LANG_HINDI 0x39 # endif # ifndef LANG_IBIBIO # define LANG_IBIBIO 0x69 # endif # ifndef LANG_IGBO # define LANG_IGBO 0x70 # endif # ifndef LANG_INDONESIAN # define LANG_INDONESIAN 0x21 # endif # ifndef LANG_INUKTITUT # define LANG_INUKTITUT 0x5d # endif # ifndef LANG_KANNADA # define LANG_KANNADA 0x4b # endif # ifndef LANG_KANURI # define LANG_KANURI 0x71 # endif # ifndef LANG_KASHMIRI # define LANG_KASHMIRI 0x60 # endif # ifndef LANG_KAZAK # define LANG_KAZAK 0x3f # endif # ifndef LANG_KICHE # define LANG_KICHE 0x86 # endif # ifndef LANG_KINYARWANDA # define LANG_KINYARWANDA 0x87 # endif # ifndef LANG_KONKANI # define LANG_KONKANI 0x57 # endif # ifndef LANG_KYRGYZ # define LANG_KYRGYZ 0x40 # endif # ifndef LANG_LAO # define LANG_LAO 0x54 # endif # ifndef LANG_LATIN # define LANG_LATIN 0x76 # endif # ifndef LANG_LATVIAN # define LANG_LATVIAN 0x26 # endif # ifndef LANG_LITHUANIAN # define LANG_LITHUANIAN 0x27 # endif # ifndef LANG_LUXEMBOURGISH # define LANG_LUXEMBOURGISH 0x6e # endif # ifndef LANG_MACEDONIAN # define LANG_MACEDONIAN 0x2f # endif # ifndef LANG_MALAY # define LANG_MALAY 0x3e # endif # ifndef LANG_MALAYALAM # define LANG_MALAYALAM 0x4c # endif # ifndef LANG_MALTESE # define LANG_MALTESE 0x3a # endif # ifndef LANG_MANIPURI # define LANG_MANIPURI 0x58 # endif # ifndef LANG_MAORI # define LANG_MAORI 0x81 # endif # ifndef LANG_MAPUDUNGUN # define LANG_MAPUDUNGUN 0x7a # endif # ifndef LANG_MARATHI # define LANG_MARATHI 0x4e # endif # ifndef LANG_MOHAWK # define LANG_MOHAWK 0x7c # endif # ifndef LANG_MONGOLIAN # define LANG_MONGOLIAN 0x50 # endif # ifndef LANG_NEPALI # define LANG_NEPALI 0x61 # endif # ifndef LANG_OCCITAN # define LANG_OCCITAN 0x82 # endif # ifndef LANG_ORIYA # define LANG_ORIYA 0x48 # endif # ifndef LANG_OROMO # define LANG_OROMO 0x72 # endif # ifndef LANG_PAPIAMENTU # define LANG_PAPIAMENTU 0x79 # endif # ifndef LANG_PASHTO # define LANG_PASHTO 0x63 # endif # ifndef LANG_PUNJABI # define LANG_PUNJABI 0x46 # endif # ifndef LANG_QUECHUA # define LANG_QUECHUA 0x6b # endif # ifndef LANG_ROMANSH # define LANG_ROMANSH 0x17 # endif # ifndef LANG_SAMI # define LANG_SAMI 0x3b # endif # ifndef LANG_SANSKRIT # define LANG_SANSKRIT 0x4f # endif # ifndef LANG_SCOTTISH_GAELIC # define LANG_SCOTTISH_GAELIC 0x91 # endif # ifndef LANG_SERBIAN # define LANG_SERBIAN 0x1a # endif # ifndef LANG_SINDHI # define LANG_SINDHI 0x59 # endif # ifndef LANG_SINHALESE # define LANG_SINHALESE 0x5b # endif # ifndef LANG_SLOVAK # define LANG_SLOVAK 0x1b # endif # ifndef LANG_SOMALI # define LANG_SOMALI 0x77 # endif # ifndef LANG_SORBIAN # define LANG_SORBIAN 0x2e # endif # ifndef LANG_SOTHO # define LANG_SOTHO 0x6c # endif # ifndef LANG_SUTU # define LANG_SUTU 0x30 # endif # ifndef LANG_SWAHILI # define LANG_SWAHILI 0x41 # endif # ifndef LANG_SYRIAC # define LANG_SYRIAC 0x5a # endif # ifndef LANG_TAGALOG # define LANG_TAGALOG 0x64 # endif # ifndef LANG_TAJIK # define LANG_TAJIK 0x28 # endif # ifndef LANG_TAMAZIGHT # define LANG_TAMAZIGHT 0x5f # endif # ifndef LANG_TAMIL # define LANG_TAMIL 0x49 # endif # ifndef LANG_TATAR # define LANG_TATAR 0x44 # endif # ifndef LANG_TELUGU # define LANG_TELUGU 0x4a # endif # ifndef LANG_THAI # define LANG_THAI 0x1e # endif # ifndef LANG_TIBETAN # define LANG_TIBETAN 0x51 # endif # ifndef LANG_TIGRINYA # define LANG_TIGRINYA 0x73 # endif # ifndef LANG_TSONGA # define LANG_TSONGA 0x31 # endif # ifndef LANG_TSWANA # define LANG_TSWANA 0x32 # endif # ifndef LANG_TURKMEN # define LANG_TURKMEN 0x42 # endif # ifndef LANG_UIGHUR # define LANG_UIGHUR 0x80 # endif # ifndef LANG_UKRAINIAN # define LANG_UKRAINIAN 0x22 # endif # ifndef LANG_URDU # define LANG_URDU 0x20 # endif # ifndef LANG_UZBEK # define LANG_UZBEK 0x43 # endif # ifndef LANG_VENDA # define LANG_VENDA 0x33 # endif # ifndef LANG_VIETNAMESE # define LANG_VIETNAMESE 0x2a # endif # ifndef LANG_WELSH # define LANG_WELSH 0x52 # endif # ifndef LANG_WOLOF # define LANG_WOLOF 0x88 # endif # ifndef LANG_XHOSA # define LANG_XHOSA 0x34 # endif # ifndef LANG_YAKUT # define LANG_YAKUT 0x85 # endif # ifndef LANG_YI # define LANG_YI 0x78 # endif # ifndef LANG_YIDDISH # define LANG_YIDDISH 0x3d # endif # ifndef LANG_YORUBA # define LANG_YORUBA 0x6a # endif # ifndef LANG_ZULU # define LANG_ZULU 0x35 # endif # ifndef SUBLANG_AFRIKAANS_SOUTH_AFRICA # define SUBLANG_AFRIKAANS_SOUTH_AFRICA 0x01 # endif # ifndef SUBLANG_ALBANIAN_ALBANIA # define SUBLANG_ALBANIAN_ALBANIA 0x01 # endif # ifndef SUBLANG_ALSATIAN_FRANCE # define SUBLANG_ALSATIAN_FRANCE 0x01 # endif # ifndef SUBLANG_AMHARIC_ETHIOPIA # define SUBLANG_AMHARIC_ETHIOPIA 0x01 # endif # ifndef SUBLANG_ARABIC_SAUDI_ARABIA # define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 # endif # ifndef SUBLANG_ARABIC_IRAQ # define SUBLANG_ARABIC_IRAQ 0x02 # endif # ifndef SUBLANG_ARABIC_EGYPT # define SUBLANG_ARABIC_EGYPT 0x03 # endif # ifndef SUBLANG_ARABIC_LIBYA # define SUBLANG_ARABIC_LIBYA 0x04 # endif # ifndef SUBLANG_ARABIC_ALGERIA # define SUBLANG_ARABIC_ALGERIA 0x05 # endif # ifndef SUBLANG_ARABIC_MOROCCO # define SUBLANG_ARABIC_MOROCCO 0x06 # endif # ifndef SUBLANG_ARABIC_TUNISIA # define SUBLANG_ARABIC_TUNISIA 0x07 # endif # ifndef SUBLANG_ARABIC_OMAN # define SUBLANG_ARABIC_OMAN 0x08 # endif # ifndef SUBLANG_ARABIC_YEMEN # define SUBLANG_ARABIC_YEMEN 0x09 # endif # ifndef SUBLANG_ARABIC_SYRIA # define SUBLANG_ARABIC_SYRIA 0x0a # endif # ifndef SUBLANG_ARABIC_JORDAN # define SUBLANG_ARABIC_JORDAN 0x0b # endif # ifndef SUBLANG_ARABIC_LEBANON # define SUBLANG_ARABIC_LEBANON 0x0c # endif # ifndef SUBLANG_ARABIC_KUWAIT # define SUBLANG_ARABIC_KUWAIT 0x0d # endif # ifndef SUBLANG_ARABIC_UAE # define SUBLANG_ARABIC_UAE 0x0e # endif # ifndef SUBLANG_ARABIC_BAHRAIN # define SUBLANG_ARABIC_BAHRAIN 0x0f # endif # ifndef SUBLANG_ARABIC_QATAR # define SUBLANG_ARABIC_QATAR 0x10 # endif # ifndef SUBLANG_ARMENIAN_ARMENIA # define SUBLANG_ARMENIAN_ARMENIA 0x01 # endif # ifndef SUBLANG_ASSAMESE_INDIA # define SUBLANG_ASSAMESE_INDIA 0x01 # endif # ifndef SUBLANG_AZERI_LATIN # define SUBLANG_AZERI_LATIN 0x01 # endif # ifndef SUBLANG_AZERI_CYRILLIC # define SUBLANG_AZERI_CYRILLIC 0x02 # endif # ifndef SUBLANG_BASHKIR_RUSSIA # define SUBLANG_BASHKIR_RUSSIA 0x01 # endif # ifndef SUBLANG_BASQUE_BASQUE # define SUBLANG_BASQUE_BASQUE 0x01 # endif # ifndef SUBLANG_BELARUSIAN_BELARUS # define SUBLANG_BELARUSIAN_BELARUS 0x01 # endif # ifndef SUBLANG_BENGALI_INDIA # define SUBLANG_BENGALI_INDIA 0x01 # endif # ifndef SUBLANG_BENGALI_BANGLADESH # define SUBLANG_BENGALI_BANGLADESH 0x02 # endif # ifndef SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN # define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05 # endif # ifndef SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC # define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08 # endif # ifndef SUBLANG_BRETON_FRANCE # define SUBLANG_BRETON_FRANCE 0x01 # endif # ifndef SUBLANG_BULGARIAN_BULGARIA # define SUBLANG_BULGARIAN_BULGARIA 0x01 # endif # ifndef SUBLANG_CAMBODIAN_CAMBODIA # define SUBLANG_CAMBODIAN_CAMBODIA 0x01 # endif # ifndef SUBLANG_CATALAN_SPAIN # define SUBLANG_CATALAN_SPAIN 0x01 # endif # ifndef SUBLANG_CORSICAN_FRANCE # define SUBLANG_CORSICAN_FRANCE 0x01 # endif # ifndef SUBLANG_CROATIAN_CROATIA # define SUBLANG_CROATIAN_CROATIA 0x01 # endif # ifndef SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN # define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04 # endif # ifndef SUBLANG_CHINESE_MACAU # define SUBLANG_CHINESE_MACAU 0x05 # endif # ifndef SUBLANG_CZECH_CZECH_REPUBLIC # define SUBLANG_CZECH_CZECH_REPUBLIC 0x01 # endif # ifndef SUBLANG_DANISH_DENMARK # define SUBLANG_DANISH_DENMARK 0x01 # endif # ifndef SUBLANG_DARI_AFGHANISTAN # define SUBLANG_DARI_AFGHANISTAN 0x01 # endif # ifndef SUBLANG_DIVEHI_MALDIVES # define SUBLANG_DIVEHI_MALDIVES 0x01 # endif # ifndef SUBLANG_DUTCH_SURINAM # define SUBLANG_DUTCH_SURINAM 0x03 # endif # ifndef SUBLANG_ENGLISH_SOUTH_AFRICA # define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 # endif # ifndef SUBLANG_ENGLISH_JAMAICA # define SUBLANG_ENGLISH_JAMAICA 0x08 # endif # ifndef SUBLANG_ENGLISH_CARIBBEAN # define SUBLANG_ENGLISH_CARIBBEAN 0x09 # endif # ifndef SUBLANG_ENGLISH_BELIZE # define SUBLANG_ENGLISH_BELIZE 0x0a # endif # ifndef SUBLANG_ENGLISH_TRINIDAD # define SUBLANG_ENGLISH_TRINIDAD 0x0b # endif # ifndef SUBLANG_ENGLISH_ZIMBABWE # define SUBLANG_ENGLISH_ZIMBABWE 0x0c # endif # ifndef SUBLANG_ENGLISH_PHILIPPINES # define SUBLANG_ENGLISH_PHILIPPINES 0x0d # endif # ifndef SUBLANG_ENGLISH_INDONESIA # define SUBLANG_ENGLISH_INDONESIA 0x0e # endif # ifndef SUBLANG_ENGLISH_HONGKONG # define SUBLANG_ENGLISH_HONGKONG 0x0f # endif # ifndef SUBLANG_ENGLISH_INDIA # define SUBLANG_ENGLISH_INDIA 0x10 # endif # ifndef SUBLANG_ENGLISH_MALAYSIA # define SUBLANG_ENGLISH_MALAYSIA 0x11 # endif # ifndef SUBLANG_ENGLISH_SINGAPORE # define SUBLANG_ENGLISH_SINGAPORE 0x12 # endif # ifndef SUBLANG_ESTONIAN_ESTONIA # define SUBLANG_ESTONIAN_ESTONIA 0x01 # endif # ifndef SUBLANG_FAEROESE_FAROE_ISLANDS # define SUBLANG_FAEROESE_FAROE_ISLANDS 0x01 # endif # ifndef SUBLANG_FARSI_IRAN # define SUBLANG_FARSI_IRAN 0x01 # endif # ifndef SUBLANG_FINNISH_FINLAND # define SUBLANG_FINNISH_FINLAND 0x01 # endif # ifndef SUBLANG_FRENCH_LUXEMBOURG # define SUBLANG_FRENCH_LUXEMBOURG 0x05 # endif # ifndef SUBLANG_FRENCH_MONACO # define SUBLANG_FRENCH_MONACO 0x06 # endif # ifndef SUBLANG_FRENCH_WESTINDIES # define SUBLANG_FRENCH_WESTINDIES 0x07 # endif # ifndef SUBLANG_FRENCH_REUNION # define SUBLANG_FRENCH_REUNION 0x08 # endif # ifndef SUBLANG_FRENCH_CONGO # define SUBLANG_FRENCH_CONGO 0x09 # endif # ifndef SUBLANG_FRENCH_SENEGAL # define SUBLANG_FRENCH_SENEGAL 0x0a # endif # ifndef SUBLANG_FRENCH_CAMEROON # define SUBLANG_FRENCH_CAMEROON 0x0b # endif # ifndef SUBLANG_FRENCH_COTEDIVOIRE # define SUBLANG_FRENCH_COTEDIVOIRE 0x0c # endif # ifndef SUBLANG_FRENCH_MALI # define SUBLANG_FRENCH_MALI 0x0d # endif # ifndef SUBLANG_FRENCH_MOROCCO # define SUBLANG_FRENCH_MOROCCO 0x0e # endif # ifndef SUBLANG_FRENCH_HAITI # define SUBLANG_FRENCH_HAITI 0x0f # endif # ifndef SUBLANG_FRISIAN_NETHERLANDS # define SUBLANG_FRISIAN_NETHERLANDS 0x01 # endif # ifndef SUBLANG_GALICIAN_SPAIN # define SUBLANG_GALICIAN_SPAIN 0x01 # endif # ifndef SUBLANG_GEORGIAN_GEORGIA # define SUBLANG_GEORGIAN_GEORGIA 0x01 # endif # ifndef SUBLANG_GERMAN_LUXEMBOURG # define SUBLANG_GERMAN_LUXEMBOURG 0x04 # endif # ifndef SUBLANG_GERMAN_LIECHTENSTEIN # define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 # endif # ifndef SUBLANG_GREEK_GREECE # define SUBLANG_GREEK_GREECE 0x01 # endif # ifndef SUBLANG_GREENLANDIC_GREENLAND # define SUBLANG_GREENLANDIC_GREENLAND 0x01 # endif # ifndef SUBLANG_GUJARATI_INDIA # define SUBLANG_GUJARATI_INDIA 0x01 # endif # ifndef SUBLANG_HAUSA_NIGERIA_LATIN # define SUBLANG_HAUSA_NIGERIA_LATIN 0x01 # endif # ifndef SUBLANG_HEBREW_ISRAEL # define SUBLANG_HEBREW_ISRAEL 0x01 # endif # ifndef SUBLANG_HINDI_INDIA # define SUBLANG_HINDI_INDIA 0x01 # endif # ifndef SUBLANG_HUNGARIAN_HUNGARY # define SUBLANG_HUNGARIAN_HUNGARY 0x01 # endif # ifndef SUBLANG_ICELANDIC_ICELAND # define SUBLANG_ICELANDIC_ICELAND 0x01 # endif # ifndef SUBLANG_IGBO_NIGERIA # define SUBLANG_IGBO_NIGERIA 0x01 # endif # ifndef SUBLANG_INDONESIAN_INDONESIA # define SUBLANG_INDONESIAN_INDONESIA 0x01 # endif # ifndef SUBLANG_INUKTITUT_CANADA # define SUBLANG_INUKTITUT_CANADA 0x01 # endif # undef SUBLANG_INUKTITUT_CANADA_LATIN # define SUBLANG_INUKTITUT_CANADA_LATIN 0x02 # undef SUBLANG_IRISH_IRELAND # define SUBLANG_IRISH_IRELAND 0x02 # ifndef SUBLANG_JAPANESE_JAPAN # define SUBLANG_JAPANESE_JAPAN 0x01 # endif # ifndef SUBLANG_KANNADA_INDIA # define SUBLANG_KANNADA_INDIA 0x01 # endif # ifndef SUBLANG_KASHMIRI_INDIA # define SUBLANG_KASHMIRI_INDIA 0x02 # endif # ifndef SUBLANG_KAZAK_KAZAKHSTAN # define SUBLANG_KAZAK_KAZAKHSTAN 0x01 # endif # ifndef SUBLANG_KICHE_GUATEMALA # define SUBLANG_KICHE_GUATEMALA 0x01 # endif # ifndef SUBLANG_KINYARWANDA_RWANDA # define SUBLANG_KINYARWANDA_RWANDA 0x01 # endif # ifndef SUBLANG_KONKANI_INDIA # define SUBLANG_KONKANI_INDIA 0x01 # endif # ifndef SUBLANG_KYRGYZ_KYRGYZSTAN # define SUBLANG_KYRGYZ_KYRGYZSTAN 0x01 # endif # ifndef SUBLANG_LAO_LAOS # define SUBLANG_LAO_LAOS 0x01 # endif # ifndef SUBLANG_LATVIAN_LATVIA # define SUBLANG_LATVIAN_LATVIA 0x01 # endif # ifndef SUBLANG_LITHUANIAN_LITHUANIA # define SUBLANG_LITHUANIAN_LITHUANIA 0x01 # endif # undef SUBLANG_LOWER_SORBIAN_GERMANY # define SUBLANG_LOWER_SORBIAN_GERMANY 0x02 # ifndef SUBLANG_LUXEMBOURGISH_LUXEMBOURG # define SUBLANG_LUXEMBOURGISH_LUXEMBOURG 0x01 # endif # ifndef SUBLANG_MACEDONIAN_MACEDONIA # define SUBLANG_MACEDONIAN_MACEDONIA 0x01 # endif # ifndef SUBLANG_MALAY_MALAYSIA # define SUBLANG_MALAY_MALAYSIA 0x01 # endif # ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM # define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 # endif # ifndef SUBLANG_MALAYALAM_INDIA # define SUBLANG_MALAYALAM_INDIA 0x01 # endif # ifndef SUBLANG_MALTESE_MALTA # define SUBLANG_MALTESE_MALTA 0x01 # endif # ifndef SUBLANG_MAORI_NEW_ZEALAND # define SUBLANG_MAORI_NEW_ZEALAND 0x01 # endif # ifndef SUBLANG_MAPUDUNGUN_CHILE # define SUBLANG_MAPUDUNGUN_CHILE 0x01 # endif # ifndef SUBLANG_MARATHI_INDIA # define SUBLANG_MARATHI_INDIA 0x01 # endif # ifndef SUBLANG_MOHAWK_CANADA # define SUBLANG_MOHAWK_CANADA 0x01 # endif # ifndef SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA # define SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA 0x01 # endif # ifndef SUBLANG_MONGOLIAN_PRC # define SUBLANG_MONGOLIAN_PRC 0x02 # endif # ifndef SUBLANG_NEPALI_NEPAL # define SUBLANG_NEPALI_NEPAL 0x01 # endif # ifndef SUBLANG_NEPALI_INDIA # define SUBLANG_NEPALI_INDIA 0x02 # endif # ifndef SUBLANG_OCCITAN_FRANCE # define SUBLANG_OCCITAN_FRANCE 0x01 # endif # ifndef SUBLANG_ORIYA_INDIA # define SUBLANG_ORIYA_INDIA 0x01 # endif # ifndef SUBLANG_PASHTO_AFGHANISTAN # define SUBLANG_PASHTO_AFGHANISTAN 0x01 # endif # ifndef SUBLANG_POLISH_POLAND # define SUBLANG_POLISH_POLAND 0x01 # endif # ifndef SUBLANG_PUNJABI_INDIA # define SUBLANG_PUNJABI_INDIA 0x01 # endif # ifndef SUBLANG_PUNJABI_PAKISTAN # define SUBLANG_PUNJABI_PAKISTAN 0x02 # endif # ifndef SUBLANG_QUECHUA_BOLIVIA # define SUBLANG_QUECHUA_BOLIVIA 0x01 # endif # ifndef SUBLANG_QUECHUA_ECUADOR # define SUBLANG_QUECHUA_ECUADOR 0x02 # endif # ifndef SUBLANG_QUECHUA_PERU # define SUBLANG_QUECHUA_PERU 0x03 # endif # ifndef SUBLANG_ROMANIAN_ROMANIA # define SUBLANG_ROMANIAN_ROMANIA 0x01 # endif # ifndef SUBLANG_ROMANIAN_MOLDOVA # define SUBLANG_ROMANIAN_MOLDOVA 0x02 # endif # ifndef SUBLANG_ROMANSH_SWITZERLAND # define SUBLANG_ROMANSH_SWITZERLAND 0x01 # endif # ifndef SUBLANG_RUSSIAN_RUSSIA # define SUBLANG_RUSSIAN_RUSSIA 0x01 # endif # ifndef SUBLANG_RUSSIAN_MOLDAVIA # define SUBLANG_RUSSIAN_MOLDAVIA 0x02 # endif # ifndef SUBLANG_SAMI_NORTHERN_NORWAY # define SUBLANG_SAMI_NORTHERN_NORWAY 0x01 # endif # ifndef SUBLANG_SAMI_NORTHERN_SWEDEN # define SUBLANG_SAMI_NORTHERN_SWEDEN 0x02 # endif # ifndef SUBLANG_SAMI_NORTHERN_FINLAND # define SUBLANG_SAMI_NORTHERN_FINLAND 0x03 # endif # ifndef SUBLANG_SAMI_LULE_NORWAY # define SUBLANG_SAMI_LULE_NORWAY 0x04 # endif # ifndef SUBLANG_SAMI_LULE_SWEDEN # define SUBLANG_SAMI_LULE_SWEDEN 0x05 # endif # ifndef SUBLANG_SAMI_SOUTHERN_NORWAY # define SUBLANG_SAMI_SOUTHERN_NORWAY 0x06 # endif # ifndef SUBLANG_SAMI_SOUTHERN_SWEDEN # define SUBLANG_SAMI_SOUTHERN_SWEDEN 0x07 # endif # undef SUBLANG_SAMI_SKOLT_FINLAND # define SUBLANG_SAMI_SKOLT_FINLAND 0x08 # undef SUBLANG_SAMI_INARI_FINLAND # define SUBLANG_SAMI_INARI_FINLAND 0x09 # ifndef SUBLANG_SANSKRIT_INDIA # define SUBLANG_SANSKRIT_INDIA 0x01 # endif # ifndef SUBLANG_SERBIAN_LATIN # define SUBLANG_SERBIAN_LATIN 0x02 # endif # ifndef SUBLANG_SERBIAN_CYRILLIC # define SUBLANG_SERBIAN_CYRILLIC 0x03 # endif # ifndef SUBLANG_SINDHI_INDIA # define SUBLANG_SINDHI_INDIA 0x01 # endif # undef SUBLANG_SINDHI_PAKISTAN # define SUBLANG_SINDHI_PAKISTAN 0x02 # ifndef SUBLANG_SINDHI_AFGHANISTAN # define SUBLANG_SINDHI_AFGHANISTAN 0x02 # endif # ifndef SUBLANG_SINHALESE_SRI_LANKA # define SUBLANG_SINHALESE_SRI_LANKA 0x01 # endif # ifndef SUBLANG_SLOVAK_SLOVAKIA # define SUBLANG_SLOVAK_SLOVAKIA 0x01 # endif # ifndef SUBLANG_SLOVENIAN_SLOVENIA # define SUBLANG_SLOVENIAN_SLOVENIA 0x01 # endif # ifndef SUBLANG_SOTHO_SOUTH_AFRICA # define SUBLANG_SOTHO_SOUTH_AFRICA 0x01 # endif # ifndef SUBLANG_SPANISH_GUATEMALA # define SUBLANG_SPANISH_GUATEMALA 0x04 # endif # ifndef SUBLANG_SPANISH_COSTA_RICA # define SUBLANG_SPANISH_COSTA_RICA 0x05 # endif # ifndef SUBLANG_SPANISH_PANAMA # define SUBLANG_SPANISH_PANAMA 0x06 # endif # ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC # define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 # endif # ifndef SUBLANG_SPANISH_VENEZUELA # define SUBLANG_SPANISH_VENEZUELA 0x08 # endif # ifndef SUBLANG_SPANISH_COLOMBIA # define SUBLANG_SPANISH_COLOMBIA 0x09 # endif # ifndef SUBLANG_SPANISH_PERU # define SUBLANG_SPANISH_PERU 0x0a # endif # ifndef SUBLANG_SPANISH_ARGENTINA # define SUBLANG_SPANISH_ARGENTINA 0x0b # endif # ifndef SUBLANG_SPANISH_ECUADOR # define SUBLANG_SPANISH_ECUADOR 0x0c # endif # ifndef SUBLANG_SPANISH_CHILE # define SUBLANG_SPANISH_CHILE 0x0d # endif # ifndef SUBLANG_SPANISH_URUGUAY # define SUBLANG_SPANISH_URUGUAY 0x0e # endif # ifndef SUBLANG_SPANISH_PARAGUAY # define SUBLANG_SPANISH_PARAGUAY 0x0f # endif # ifndef SUBLANG_SPANISH_BOLIVIA # define SUBLANG_SPANISH_BOLIVIA 0x10 # endif # ifndef SUBLANG_SPANISH_EL_SALVADOR # define SUBLANG_SPANISH_EL_SALVADOR 0x11 # endif # ifndef SUBLANG_SPANISH_HONDURAS # define SUBLANG_SPANISH_HONDURAS 0x12 # endif # ifndef SUBLANG_SPANISH_NICARAGUA # define SUBLANG_SPANISH_NICARAGUA 0x13 # endif # ifndef SUBLANG_SPANISH_PUERTO_RICO # define SUBLANG_SPANISH_PUERTO_RICO 0x14 # endif # ifndef SUBLANG_SPANISH_US # define SUBLANG_SPANISH_US 0x15 # endif # ifndef SUBLANG_SWAHILI_KENYA # define SUBLANG_SWAHILI_KENYA 0x01 # endif # ifndef SUBLANG_SWEDISH_SWEDEN # define SUBLANG_SWEDISH_SWEDEN 0x01 # endif # ifndef SUBLANG_SWEDISH_FINLAND # define SUBLANG_SWEDISH_FINLAND 0x02 # endif # ifndef SUBLANG_SYRIAC_SYRIA # define SUBLANG_SYRIAC_SYRIA 0x01 # endif # ifndef SUBLANG_TAGALOG_PHILIPPINES # define SUBLANG_TAGALOG_PHILIPPINES 0x01 # endif # ifndef SUBLANG_TAJIK_TAJIKISTAN # define SUBLANG_TAJIK_TAJIKISTAN 0x01 # endif # ifndef SUBLANG_TAMAZIGHT_ARABIC # define SUBLANG_TAMAZIGHT_ARABIC 0x01 # endif # ifndef SUBLANG_TAMAZIGHT_ALGERIA_LATIN # define SUBLANG_TAMAZIGHT_ALGERIA_LATIN 0x02 # endif # ifndef SUBLANG_TAMIL_INDIA # define SUBLANG_TAMIL_INDIA 0x01 # endif # ifndef SUBLANG_TATAR_RUSSIA # define SUBLANG_TATAR_RUSSIA 0x01 # endif # ifndef SUBLANG_TELUGU_INDIA # define SUBLANG_TELUGU_INDIA 0x01 # endif # ifndef SUBLANG_THAI_THAILAND # define SUBLANG_THAI_THAILAND 0x01 # endif # ifndef SUBLANG_TIBETAN_PRC # define SUBLANG_TIBETAN_PRC 0x01 # endif # undef SUBLANG_TIBETAN_BHUTAN # define SUBLANG_TIBETAN_BHUTAN 0x02 # ifndef SUBLANG_TIGRINYA_ETHIOPIA # define SUBLANG_TIGRINYA_ETHIOPIA 0x01 # endif # ifndef SUBLANG_TIGRINYA_ERITREA # define SUBLANG_TIGRINYA_ERITREA 0x02 # endif # ifndef SUBLANG_TSWANA_SOUTH_AFRICA # define SUBLANG_TSWANA_SOUTH_AFRICA 0x01 # endif # ifndef SUBLANG_TURKISH_TURKEY # define SUBLANG_TURKISH_TURKEY 0x01 # endif # ifndef SUBLANG_TURKMEN_TURKMENISTAN # define SUBLANG_TURKMEN_TURKMENISTAN 0x01 # endif # ifndef SUBLANG_UIGHUR_PRC # define SUBLANG_UIGHUR_PRC 0x01 # endif # ifndef SUBLANG_UKRAINIAN_UKRAINE # define SUBLANG_UKRAINIAN_UKRAINE 0x01 # endif # ifndef SUBLANG_UPPER_SORBIAN_GERMANY # define SUBLANG_UPPER_SORBIAN_GERMANY 0x01 # endif # ifndef SUBLANG_URDU_PAKISTAN # define SUBLANG_URDU_PAKISTAN 0x01 # endif # ifndef SUBLANG_URDU_INDIA # define SUBLANG_URDU_INDIA 0x02 # endif # ifndef SUBLANG_UZBEK_LATIN # define SUBLANG_UZBEK_LATIN 0x01 # endif # ifndef SUBLANG_UZBEK_CYRILLIC # define SUBLANG_UZBEK_CYRILLIC 0x02 # endif # ifndef SUBLANG_VIETNAMESE_VIETNAM # define SUBLANG_VIETNAMESE_VIETNAM 0x01 # endif # ifndef SUBLANG_WELSH_UNITED_KINGDOM # define SUBLANG_WELSH_UNITED_KINGDOM 0x01 # endif # ifndef SUBLANG_WOLOF_SENEGAL # define SUBLANG_WOLOF_SENEGAL 0x01 # endif # ifndef SUBLANG_XHOSA_SOUTH_AFRICA # define SUBLANG_XHOSA_SOUTH_AFRICA 0x01 # endif # ifndef SUBLANG_YAKUT_RUSSIA # define SUBLANG_YAKUT_RUSSIA 0x01 # endif # ifndef SUBLANG_YI_PRC # define SUBLANG_YI_PRC 0x01 # endif # ifndef SUBLANG_YORUBA_NIGERIA # define SUBLANG_YORUBA_NIGERIA 0x01 # endif # ifndef SUBLANG_ZULU_SOUTH_AFRICA # define SUBLANG_ZULU_SOUTH_AFRICA 0x01 # endif /* GetLocaleInfoA operations. */ # ifndef LOCALE_SNAME # define LOCALE_SNAME 0x5c # endif #endif #if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE /* Mac OS X 10.2 or newer */ /* Canonicalize a Mac OS X locale name to a Unix locale name. NAME is a sufficiently large buffer. On input, it contains the Mac OS X locale name. On output, it contains the Unix locale name. */ # if !defined IN_LIBINTL static # endif void gl_locale_name_canonicalize (char *name) { /* This conversion is based on a posting by Deborah GoldSmith on 2005-03-08, http://lists.apple.com/archives/carbon-dev/2005/Mar/msg00293.html */ /* Convert legacy (NeXTstep inherited) English names to Unix (ISO 639 and ISO 3166) names. Prior to Mac OS X 10.3, there is no API for doing this. Therefore we do it ourselves, using a table based on the results of the Mac OS X 10.3.8 function CFLocaleCreateCanonicalLocaleIdentifierFromString(). */ typedef struct { const char legacy[21+1]; const char unixy[5+1]; } legacy_entry; static const legacy_entry legacy_table[] = { { "Afrikaans", "af" }, { "Albanian", "sq" }, { "Amharic", "am" }, { "Arabic", "ar" }, { "Armenian", "hy" }, { "Assamese", "as" }, { "Aymara", "ay" }, { "Azerbaijani", "az" }, { "Basque", "eu" }, { "Belarusian", "be" }, { "Belorussian", "be" }, { "Bengali", "bn" }, { "Brazilian Portugese", "pt_BR" }, { "Brazilian Portuguese", "pt_BR" }, { "Breton", "br" }, { "Bulgarian", "bg" }, { "Burmese", "my" }, { "Byelorussian", "be" }, { "Catalan", "ca" }, { "Chewa", "ny" }, { "Chichewa", "ny" }, { "Chinese", "zh" }, { "Chinese, Simplified", "zh_CN" }, { "Chinese, Traditional", "zh_TW" }, { "Chinese, Tradtional", "zh_TW" }, { "Croatian", "hr" }, { "Czech", "cs" }, { "Danish", "da" }, { "Dutch", "nl" }, { "Dzongkha", "dz" }, { "English", "en" }, { "Esperanto", "eo" }, { "Estonian", "et" }, { "Faroese", "fo" }, { "Farsi", "fa" }, { "Finnish", "fi" }, { "Flemish", "nl_BE" }, { "French", "fr" }, { "Galician", "gl" }, { "Gallegan", "gl" }, { "Georgian", "ka" }, { "German", "de" }, { "Greek", "el" }, { "Greenlandic", "kl" }, { "Guarani", "gn" }, { "Gujarati", "gu" }, { "Hawaiian", "haw" }, /* Yes, "haw", not "cpe". */ { "Hebrew", "he" }, { "Hindi", "hi" }, { "Hungarian", "hu" }, { "Icelandic", "is" }, { "Indonesian", "id" }, { "Inuktitut", "iu" }, { "Irish", "ga" }, { "Italian", "it" }, { "Japanese", "ja" }, { "Javanese", "jv" }, { "Kalaallisut", "kl" }, { "Kannada", "kn" }, { "Kashmiri", "ks" }, { "Kazakh", "kk" }, { "Khmer", "km" }, { "Kinyarwanda", "rw" }, { "Kirghiz", "ky" }, { "Korean", "ko" }, { "Kurdish", "ku" }, { "Latin", "la" }, { "Latvian", "lv" }, { "Lithuanian", "lt" }, { "Macedonian", "mk" }, { "Malagasy", "mg" }, { "Malay", "ms" }, { "Malayalam", "ml" }, { "Maltese", "mt" }, { "Manx", "gv" }, { "Marathi", "mr" }, { "Moldavian", "mo" }, { "Mongolian", "mn" }, { "Nepali", "ne" }, { "Norwegian", "nb" }, /* Yes, "nb", not the obsolete "no". */ { "Nyanja", "ny" }, { "Nynorsk", "nn" }, { "Oriya", "or" }, { "Oromo", "om" }, { "Panjabi", "pa" }, { "Pashto", "ps" }, { "Persian", "fa" }, { "Polish", "pl" }, { "Portuguese", "pt" }, { "Portuguese, Brazilian", "pt_BR" }, { "Punjabi", "pa" }, { "Pushto", "ps" }, { "Quechua", "qu" }, { "Romanian", "ro" }, { "Ruanda", "rw" }, { "Rundi", "rn" }, { "Russian", "ru" }, { "Sami", "se_NO" }, /* Not just "se". */ { "Sanskrit", "sa" }, { "Scottish", "gd" }, { "Serbian", "sr" }, { "Simplified Chinese", "zh_CN" }, { "Sindhi", "sd" }, { "Sinhalese", "si" }, { "Slovak", "sk" }, { "Slovenian", "sl" }, { "Somali", "so" }, { "Spanish", "es" }, { "Sundanese", "su" }, { "Swahili", "sw" }, { "Swedish", "sv" }, { "Tagalog", "tl" }, { "Tajik", "tg" }, { "Tajiki", "tg" }, { "Tamil", "ta" }, { "Tatar", "tt" }, { "Telugu", "te" }, { "Thai", "th" }, { "Tibetan", "bo" }, { "Tigrinya", "ti" }, { "Tongan", "to" }, { "Traditional Chinese", "zh_TW" }, { "Turkish", "tr" }, { "Turkmen", "tk" }, { "Uighur", "ug" }, { "Ukrainian", "uk" }, { "Urdu", "ur" }, { "Uzbek", "uz" }, { "Vietnamese", "vi" }, { "Welsh", "cy" }, { "Yiddish", "yi" } }; /* Convert new-style locale names with language tags (ISO 639 and ISO 15924) to Unix (ISO 639 and ISO 3166) names. */ typedef struct { const char langtag[7+1]; const char unixy[12+1]; } langtag_entry; static const langtag_entry langtag_table[] = { /* Mac OS X has "az-Arab", "az-Cyrl", "az-Latn". The default script for az on Unix is Latin. */ { "az-Latn", "az" }, /* Mac OS X has "ga-dots". Does not yet exist on Unix. */ { "ga-dots", "ga" }, /* Mac OS X has "kk-Cyrl". Does not yet exist on Unix. */ /* Mac OS X has "mn-Cyrl", "mn-Mong". The default script for mn on Unix is Cyrillic. */ { "mn-Cyrl", "mn" }, /* Mac OS X has "ms-Arab", "ms-Latn". The default script for ms on Unix is Latin. */ { "ms-Latn", "ms" }, /* Mac OS X has "tg-Cyrl". The default script for tg on Unix is Cyrillic. */ { "tg-Cyrl", "tg" }, /* Mac OS X has "tk-Cyrl". Does not yet exist on Unix. */ /* Mac OS X has "tt-Cyrl". The default script for tt on Unix is Cyrillic. */ { "tt-Cyrl", "tt" }, /* Mac OS X has "zh-Hans", "zh-Hant". Country codes are used to distinguish these on Unix. */ { "zh-Hans", "zh_CN" }, { "zh-Hant", "zh_TW" } }; /* Convert script names (ISO 15924) to Unix conventions. See http://www.unicode.org/iso15924/iso15924-codes.html */ typedef struct { const char script[4+1]; const char unixy[9+1]; } script_entry; static const script_entry script_table[] = { { "Arab", "arabic" }, { "Cyrl", "cyrillic" }, { "Mong", "mongolian" } }; /* Step 1: Convert using legacy_table. */ if (name[0] >= 'A' && name[0] <= 'Z') { unsigned int i1, i2; i1 = 0; i2 = sizeof (legacy_table) / sizeof (legacy_entry); while (i2 - i1 > 1) { /* At this point we know that if name occurs in legacy_table, its index must be >= i1 and < i2. */ unsigned int i = (i1 + i2) >> 1; const legacy_entry *p = &legacy_table[i]; if (strcmp (name, p->legacy) < 0) i2 = i; else i1 = i; } if (strcmp (name, legacy_table[i1].legacy) == 0) { strcpy (name, legacy_table[i1].unixy); return; } } /* Step 2: Convert using langtag_table and script_table. */ if (strlen (name) == 7 && name[2] == '-') { unsigned int i1, i2; i1 = 0; i2 = sizeof (langtag_table) / sizeof (langtag_entry); while (i2 - i1 > 1) { /* At this point we know that if name occurs in langtag_table, its index must be >= i1 and < i2. */ unsigned int i = (i1 + i2) >> 1; const langtag_entry *p = &langtag_table[i]; if (strcmp (name, p->langtag) < 0) i2 = i; else i1 = i; } if (strcmp (name, langtag_table[i1].langtag) == 0) { strcpy (name, langtag_table[i1].unixy); return; } i1 = 0; i2 = sizeof (script_table) / sizeof (script_entry); while (i2 - i1 > 1) { /* At this point we know that if (name + 3) occurs in script_table, its index must be >= i1 and < i2. */ unsigned int i = (i1 + i2) >> 1; const script_entry *p = &script_table[i]; if (strcmp (name + 3, p->script) < 0) i2 = i; else i1 = i; } if (strcmp (name + 3, script_table[i1].script) == 0) { name[2] = '@'; strcpy (name + 3, script_table[i1].unixy); return; } } /* Step 3: Convert new-style dash to Unix underscore. */ { char *p; for (p = name; *p != '\0'; p++) if (*p == '-') *p = '_'; } } #endif #if defined WINDOWS_NATIVE || defined __CYGWIN__ /* Native Windows or Cygwin */ /* Canonicalize a Windows native locale name to a Unix locale name. NAME is a sufficiently large buffer. On input, it contains the Windows locale name. On output, it contains the Unix locale name. */ # if !defined IN_LIBINTL static # endif void gl_locale_name_canonicalize (char *name) { /* FIXME: This is probably incomplete: it does not handle "zh-Hans" and "zh-Hant". */ char *p; for (p = name; *p != '\0'; p++) if (*p == '-') { *p = '_'; p++; for (; *p != '\0'; p++) { if (*p >= 'a' && *p <= 'z') *p += 'A' - 'a'; if (*p == '-') { *p = '\0'; return; } } return; } } # if !defined IN_LIBINTL static # endif const char * gl_locale_name_from_win32_LANGID (LANGID langid) { /* Activate the new code only when the GETTEXT_MUI environment variable is set, for the time being, since the new code is not well tested. */ if (getenv ("GETTEXT_MUI") != NULL) { static char namebuf[256]; /* Query the system's notion of locale name. On Windows95/98/ME, GetLocaleInfoA returns some incorrect results. But we don't need to support systems that are so old. */ if (GetLocaleInfoA (MAKELCID (langid, SORT_DEFAULT), LOCALE_SNAME, namebuf, sizeof (namebuf) - 1)) { /* Convert it to a Unix locale name. */ gl_locale_name_canonicalize (namebuf); return namebuf; } } /* Internet Explorer has an LCID to RFC3066 name mapping stored in HKEY_CLASSES_ROOT\Mime\Database\Rfc1766. But we better don't use that since IE's i18n subsystem is known to be inconsistent with the native Windows base (e.g. they have different character conversion facilities that produce different results). */ /* Use our own table. */ { int primary, sub; /* Split into language and territory part. */ primary = PRIMARYLANGID (langid); sub = SUBLANGID (langid); /* Dispatch on language. See also http://www.unicode.org/unicode/onlinedat/languages.html . For details about languages, see http://www.ethnologue.com/ . */ switch (primary) { case LANG_AFRIKAANS: switch (sub) { case SUBLANG_AFRIKAANS_SOUTH_AFRICA: return "af_ZA"; } return "af"; case LANG_ALBANIAN: switch (sub) { case SUBLANG_ALBANIAN_ALBANIA: return "sq_AL"; } return "sq"; case LANG_ALSATIAN: switch (sub) { case SUBLANG_ALSATIAN_FRANCE: return "gsw_FR"; } return "gsw"; case LANG_AMHARIC: switch (sub) { case SUBLANG_AMHARIC_ETHIOPIA: return "am_ET"; } return "am"; case LANG_ARABIC: switch (sub) { case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA"; case SUBLANG_ARABIC_IRAQ: return "ar_IQ"; case SUBLANG_ARABIC_EGYPT: return "ar_EG"; case SUBLANG_ARABIC_LIBYA: return "ar_LY"; case SUBLANG_ARABIC_ALGERIA: return "ar_DZ"; case SUBLANG_ARABIC_MOROCCO: return "ar_MA"; case SUBLANG_ARABIC_TUNISIA: return "ar_TN"; case SUBLANG_ARABIC_OMAN: return "ar_OM"; case SUBLANG_ARABIC_YEMEN: return "ar_YE"; case SUBLANG_ARABIC_SYRIA: return "ar_SY"; case SUBLANG_ARABIC_JORDAN: return "ar_JO"; case SUBLANG_ARABIC_LEBANON: return "ar_LB"; case SUBLANG_ARABIC_KUWAIT: return "ar_KW"; case SUBLANG_ARABIC_UAE: return "ar_AE"; case SUBLANG_ARABIC_BAHRAIN: return "ar_BH"; case SUBLANG_ARABIC_QATAR: return "ar_QA"; } return "ar"; case LANG_ARMENIAN: switch (sub) { case SUBLANG_ARMENIAN_ARMENIA: return "hy_AM"; } return "hy"; case LANG_ASSAMESE: switch (sub) { case SUBLANG_ASSAMESE_INDIA: return "as_IN"; } return "as"; case LANG_AZERI: switch (sub) { /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */ case 0x1e: return "az@latin"; case SUBLANG_AZERI_LATIN: return "az_AZ@latin"; case 0x1d: return "az@cyrillic"; case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic"; } return "az"; case LANG_BASHKIR: switch (sub) { case SUBLANG_BASHKIR_RUSSIA: return "ba_RU"; } return "ba"; case LANG_BASQUE: switch (sub) { case SUBLANG_BASQUE_BASQUE: return "eu_ES"; } return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */ case LANG_BELARUSIAN: switch (sub) { case SUBLANG_BELARUSIAN_BELARUS: return "be_BY"; } return "be"; case LANG_BENGALI: switch (sub) { case SUBLANG_BENGALI_INDIA: return "bn_IN"; case SUBLANG_BENGALI_BANGLADESH: return "bn_BD"; } return "bn"; case LANG_BRETON: switch (sub) { case SUBLANG_BRETON_FRANCE: return "br_FR"; } return "br"; case LANG_BULGARIAN: switch (sub) { case SUBLANG_BULGARIAN_BULGARIA: return "bg_BG"; } return "bg"; case LANG_BURMESE: switch (sub) { case SUBLANG_DEFAULT: return "my_MM"; } return "my"; case LANG_CAMBODIAN: switch (sub) { case SUBLANG_CAMBODIAN_CAMBODIA: return "km_KH"; } return "km"; case LANG_CATALAN: switch (sub) { case SUBLANG_CATALAN_SPAIN: return "ca_ES"; } return "ca"; case LANG_CHEROKEE: switch (sub) { case SUBLANG_DEFAULT: return "chr_US"; } return "chr"; case LANG_CHINESE: switch (sub) { case SUBLANG_CHINESE_TRADITIONAL: case 0x1f: return "zh_TW"; case SUBLANG_CHINESE_SIMPLIFIED: case 0x00: return "zh_CN"; case SUBLANG_CHINESE_HONGKONG: return "zh_HK"; /* traditional */ case SUBLANG_CHINESE_SINGAPORE: return "zh_SG"; /* simplified */ case SUBLANG_CHINESE_MACAU: return "zh_MO"; /* traditional */ } return "zh"; case LANG_CORSICAN: switch (sub) { case SUBLANG_CORSICAN_FRANCE: return "co_FR"; } return "co"; case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN == LANG_BOSNIAN * What used to be called Serbo-Croatian * should really now be two separate * languages because of political reasons. * (Says tml, who knows nothing about Serbian * or Croatian.) * (I can feel those flames coming already.) */ switch (sub) { /* Croatian */ case 0x00: return "hr"; case SUBLANG_CROATIAN_CROATIA: return "hr_HR"; case SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN: return "hr_BA"; /* Serbian */ case 0x1f: return "sr"; case 0x1c: return "sr"; /* latin */ case SUBLANG_SERBIAN_LATIN: return "sr_CS"; /* latin */ case 0x09: return "sr_RS"; /* latin */ case 0x0b: return "sr_ME"; /* latin */ case 0x06: return "sr_BA"; /* latin */ case 0x1b: return "sr@cyrillic"; case SUBLANG_SERBIAN_CYRILLIC: return "sr_CS@cyrillic"; case 0x0a: return "sr_RS@cyrillic"; case 0x0c: return "sr_ME@cyrillic"; case 0x07: return "sr_BA@cyrillic"; /* Bosnian */ case 0x1e: return "bs"; case 0x1a: return "bs"; /* latin */ case SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN: return "bs_BA"; /* latin */ case 0x19: return "bs@cyrillic"; case SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC: return "bs_BA@cyrillic"; } return "hr"; case LANG_CZECH: switch (sub) { case SUBLANG_CZECH_CZECH_REPUBLIC: return "cs_CZ"; } return "cs"; case LANG_DANISH: switch (sub) { case SUBLANG_DANISH_DENMARK: return "da_DK"; } return "da"; case LANG_DARI: /* FIXME: Adjust this when such locales appear on Unix. */ switch (sub) { case SUBLANG_DARI_AFGHANISTAN: return "prs_AF"; } return "prs"; case LANG_DIVEHI: switch (sub) { case SUBLANG_DIVEHI_MALDIVES: return "dv_MV"; } return "dv"; case LANG_DUTCH: switch (sub) { case SUBLANG_DUTCH: return "nl_NL"; case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE"; case SUBLANG_DUTCH_SURINAM: return "nl_SR"; } return "nl"; case LANG_EDO: switch (sub) { case SUBLANG_DEFAULT: return "bin_NG"; } return "bin"; case LANG_ENGLISH: switch (sub) { /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought * English was the language spoken in England. * Oh well. */ case SUBLANG_ENGLISH_US: return "en_US"; case SUBLANG_ENGLISH_UK: return "en_GB"; case SUBLANG_ENGLISH_AUS: return "en_AU"; case SUBLANG_ENGLISH_CAN: return "en_CA"; case SUBLANG_ENGLISH_NZ: return "en_NZ"; case SUBLANG_ENGLISH_EIRE: return "en_IE"; case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA"; case SUBLANG_ENGLISH_JAMAICA: return "en_JM"; case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */ case SUBLANG_ENGLISH_BELIZE: return "en_BZ"; case SUBLANG_ENGLISH_TRINIDAD: return "en_TT"; case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW"; case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH"; case SUBLANG_ENGLISH_INDONESIA: return "en_ID"; case SUBLANG_ENGLISH_HONGKONG: return "en_HK"; case SUBLANG_ENGLISH_INDIA: return "en_IN"; case SUBLANG_ENGLISH_MALAYSIA: return "en_MY"; case SUBLANG_ENGLISH_SINGAPORE: return "en_SG"; } return "en"; case LANG_ESTONIAN: switch (sub) { case SUBLANG_ESTONIAN_ESTONIA: return "et_EE"; } return "et"; case LANG_FAEROESE: switch (sub) { case SUBLANG_FAEROESE_FAROE_ISLANDS: return "fo_FO"; } return "fo"; case LANG_FARSI: switch (sub) { case SUBLANG_FARSI_IRAN: return "fa_IR"; } return "fa"; case LANG_FINNISH: switch (sub) { case SUBLANG_FINNISH_FINLAND: return "fi_FI"; } return "fi"; case LANG_FRENCH: switch (sub) { case SUBLANG_FRENCH: return "fr_FR"; case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE"; case SUBLANG_FRENCH_CANADIAN: return "fr_CA"; case SUBLANG_FRENCH_SWISS: return "fr_CH"; case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU"; case SUBLANG_FRENCH_MONACO: return "fr_MC"; case SUBLANG_FRENCH_WESTINDIES: return "fr"; /* Caribbean? */ case SUBLANG_FRENCH_REUNION: return "fr_RE"; case SUBLANG_FRENCH_CONGO: return "fr_CG"; case SUBLANG_FRENCH_SENEGAL: return "fr_SN"; case SUBLANG_FRENCH_CAMEROON: return "fr_CM"; case SUBLANG_FRENCH_COTEDIVOIRE: return "fr_CI"; case SUBLANG_FRENCH_MALI: return "fr_ML"; case SUBLANG_FRENCH_MOROCCO: return "fr_MA"; case SUBLANG_FRENCH_HAITI: return "fr_HT"; } return "fr"; case LANG_FRISIAN: switch (sub) { case SUBLANG_FRISIAN_NETHERLANDS: return "fy_NL"; } return "fy"; case LANG_FULFULDE: /* Spoken in Nigeria, Guinea, Senegal, Mali, Niger, Cameroon, Benin. */ switch (sub) { case SUBLANG_DEFAULT: return "ff_NG"; } return "ff"; case LANG_GAELIC: switch (sub) { case 0x01: /* SCOTTISH */ /* old, superseded by LANG_SCOTTISH_GAELIC */ return "gd_GB"; case SUBLANG_IRISH_IRELAND: return "ga_IE"; } return "ga"; case LANG_GALICIAN: switch (sub) { case SUBLANG_GALICIAN_SPAIN: return "gl_ES"; } return "gl"; case LANG_GEORGIAN: switch (sub) { case SUBLANG_GEORGIAN_GEORGIA: return "ka_GE"; } return "ka"; case LANG_GERMAN: switch (sub) { case SUBLANG_GERMAN: return "de_DE"; case SUBLANG_GERMAN_SWISS: return "de_CH"; case SUBLANG_GERMAN_AUSTRIAN: return "de_AT"; case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU"; case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI"; } return "de"; case LANG_GREEK: switch (sub) { case SUBLANG_GREEK_GREECE: return "el_GR"; } return "el"; case LANG_GREENLANDIC: switch (sub) { case SUBLANG_GREENLANDIC_GREENLAND: return "kl_GL"; } return "kl"; case LANG_GUARANI: switch (sub) { case SUBLANG_DEFAULT: return "gn_PY"; } return "gn"; case LANG_GUJARATI: switch (sub) { case SUBLANG_GUJARATI_INDIA: return "gu_IN"; } return "gu"; case LANG_HAUSA: switch (sub) { case 0x1f: return "ha"; case SUBLANG_HAUSA_NIGERIA_LATIN: return "ha_NG"; } return "ha"; case LANG_HAWAIIAN: /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers) or Hawaii Creole English ("cpe_US", 600000 speakers)? */ switch (sub) { case SUBLANG_DEFAULT: return "cpe_US"; } return "cpe"; case LANG_HEBREW: switch (sub) { case SUBLANG_HEBREW_ISRAEL: return "he_IL"; } return "he"; case LANG_HINDI: switch (sub) { case SUBLANG_HINDI_INDIA: return "hi_IN"; } return "hi"; case LANG_HUNGARIAN: switch (sub) { case SUBLANG_HUNGARIAN_HUNGARY: return "hu_HU"; } return "hu"; case LANG_IBIBIO: switch (sub) { case SUBLANG_DEFAULT: return "nic_NG"; } return "nic"; case LANG_ICELANDIC: switch (sub) { case SUBLANG_ICELANDIC_ICELAND: return "is_IS"; } return "is"; case LANG_IGBO: switch (sub) { case SUBLANG_IGBO_NIGERIA: return "ig_NG"; } return "ig"; case LANG_INDONESIAN: switch (sub) { case SUBLANG_INDONESIAN_INDONESIA: return "id_ID"; } return "id"; case LANG_INUKTITUT: switch (sub) { case 0x1e: return "iu"; /* syllabic */ case SUBLANG_INUKTITUT_CANADA: return "iu_CA"; /* syllabic */ case 0x1f: return "iu@latin"; case SUBLANG_INUKTITUT_CANADA_LATIN: return "iu_CA@latin"; } return "iu"; case LANG_ITALIAN: switch (sub) { case SUBLANG_ITALIAN: return "it_IT"; case SUBLANG_ITALIAN_SWISS: return "it_CH"; } return "it"; case LANG_JAPANESE: switch (sub) { case SUBLANG_JAPANESE_JAPAN: return "ja_JP"; } return "ja"; case LANG_KANNADA: switch (sub) { case SUBLANG_KANNADA_INDIA: return "kn_IN"; } return "kn"; case LANG_KANURI: switch (sub) { case SUBLANG_DEFAULT: return "kr_NG"; } return "kr"; case LANG_KASHMIRI: switch (sub) { case SUBLANG_DEFAULT: return "ks_PK"; case SUBLANG_KASHMIRI_INDIA: return "ks_IN"; } return "ks"; case LANG_KAZAK: switch (sub) { case SUBLANG_KAZAK_KAZAKHSTAN: return "kk_KZ"; } return "kk"; case LANG_KICHE: /* FIXME: Adjust this when such locales appear on Unix. */ switch (sub) { case SUBLANG_KICHE_GUATEMALA: return "qut_GT"; } return "qut"; case LANG_KINYARWANDA: switch (sub) { case SUBLANG_KINYARWANDA_RWANDA: return "rw_RW"; } return "rw"; case LANG_KONKANI: /* FIXME: Adjust this when such locales appear on Unix. */ switch (sub) { case SUBLANG_KONKANI_INDIA: return "kok_IN"; } return "kok"; case LANG_KOREAN: switch (sub) { case SUBLANG_DEFAULT: return "ko_KR"; } return "ko"; case LANG_KYRGYZ: switch (sub) { case SUBLANG_KYRGYZ_KYRGYZSTAN: return "ky_KG"; } return "ky"; case LANG_LAO: switch (sub) { case SUBLANG_LAO_LAOS: return "lo_LA"; } return "lo"; case LANG_LATIN: switch (sub) { case SUBLANG_DEFAULT: return "la_VA"; } return "la"; case LANG_LATVIAN: switch (sub) { case SUBLANG_LATVIAN_LATVIA: return "lv_LV"; } return "lv"; case LANG_LITHUANIAN: switch (sub) { case SUBLANG_LITHUANIAN_LITHUANIA: return "lt_LT"; } return "lt"; case LANG_LUXEMBOURGISH: switch (sub) { case SUBLANG_LUXEMBOURGISH_LUXEMBOURG: return "lb_LU"; } return "lb"; case LANG_MACEDONIAN: switch (sub) { case SUBLANG_MACEDONIAN_MACEDONIA: return "mk_MK"; } return "mk"; case LANG_MALAY: switch (sub) { case SUBLANG_MALAY_MALAYSIA: return "ms_MY"; case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN"; } return "ms"; case LANG_MALAYALAM: switch (sub) { case SUBLANG_MALAYALAM_INDIA: return "ml_IN"; } return "ml"; case LANG_MALTESE: switch (sub) { case SUBLANG_MALTESE_MALTA: return "mt_MT"; } return "mt"; case LANG_MANIPURI: /* FIXME: Adjust this when such locales appear on Unix. */ switch (sub) { case SUBLANG_DEFAULT: return "mni_IN"; } return "mni"; case LANG_MAORI: switch (sub) { case SUBLANG_MAORI_NEW_ZEALAND: return "mi_NZ"; } return "mi"; case LANG_MAPUDUNGUN: switch (sub) { case SUBLANG_MAPUDUNGUN_CHILE: return "arn_CL"; } return "arn"; case LANG_MARATHI: switch (sub) { case SUBLANG_MARATHI_INDIA: return "mr_IN"; } return "mr"; case LANG_MOHAWK: switch (sub) { case SUBLANG_MOHAWK_CANADA: return "moh_CA"; } return "moh"; case LANG_MONGOLIAN: switch (sub) { case SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA: case 0x1e: return "mn_MN"; case SUBLANG_MONGOLIAN_PRC: case 0x1f: return "mn_CN"; } return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */ case LANG_NEPALI: switch (sub) { case SUBLANG_NEPALI_NEPAL: return "ne_NP"; case SUBLANG_NEPALI_INDIA: return "ne_IN"; } return "ne"; case LANG_NORWEGIAN: switch (sub) { case 0x1f: return "nb"; case SUBLANG_NORWEGIAN_BOKMAL: return "nb_NO"; case 0x1e: return "nn"; case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO"; } return "no"; case LANG_OCCITAN: switch (sub) { case SUBLANG_OCCITAN_FRANCE: return "oc_FR"; } return "oc"; case LANG_ORIYA: switch (sub) { case SUBLANG_ORIYA_INDIA: return "or_IN"; } return "or"; case LANG_OROMO: switch (sub) { case SUBLANG_DEFAULT: return "om_ET"; } return "om"; case LANG_PAPIAMENTU: switch (sub) { case SUBLANG_DEFAULT: return "pap_AN"; } return "pap"; case LANG_PASHTO: switch (sub) { case SUBLANG_PASHTO_AFGHANISTAN: return "ps_AF"; } return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */ case LANG_POLISH: switch (sub) { case SUBLANG_POLISH_POLAND: return "pl_PL"; } return "pl"; case LANG_PORTUGUESE: switch (sub) { /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT. Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */ case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR"; case SUBLANG_PORTUGUESE: return "pt_PT"; } return "pt"; case LANG_PUNJABI: switch (sub) { case SUBLANG_PUNJABI_INDIA: return "pa_IN"; /* Gurmukhi script */ case SUBLANG_PUNJABI_PAKISTAN: return "pa_PK"; /* Arabic script */ } return "pa"; case LANG_QUECHUA: /* Note: Microsoft uses the non-ISO language code "quz". */ switch (sub) { case SUBLANG_QUECHUA_BOLIVIA: return "qu_BO"; case SUBLANG_QUECHUA_ECUADOR: return "qu_EC"; case SUBLANG_QUECHUA_PERU: return "qu_PE"; } return "qu"; case LANG_ROMANIAN: switch (sub) { case SUBLANG_ROMANIAN_ROMANIA: return "ro_RO"; case SUBLANG_ROMANIAN_MOLDOVA: return "ro_MD"; } return "ro"; case LANG_ROMANSH: switch (sub) { case SUBLANG_ROMANSH_SWITZERLAND: return "rm_CH"; } return "rm"; case LANG_RUSSIAN: switch (sub) { case SUBLANG_RUSSIAN_RUSSIA: return "ru_RU"; case SUBLANG_RUSSIAN_MOLDAVIA: return "ru_MD"; } return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA" or "ru_MD". */ case LANG_SAMI: switch (sub) { /* Northern Sami */ case 0x00: return "se"; case SUBLANG_SAMI_NORTHERN_NORWAY: return "se_NO"; case SUBLANG_SAMI_NORTHERN_SWEDEN: return "se_SE"; case SUBLANG_SAMI_NORTHERN_FINLAND: return "se_FI"; /* Lule Sami */ case 0x1f: return "smj"; case SUBLANG_SAMI_LULE_NORWAY: return "smj_NO"; case SUBLANG_SAMI_LULE_SWEDEN: return "smj_SE"; /* Southern Sami */ case 0x1e: return "sma"; case SUBLANG_SAMI_SOUTHERN_NORWAY: return "sma_NO"; case SUBLANG_SAMI_SOUTHERN_SWEDEN: return "sma_SE"; /* Skolt Sami */ case 0x1d: return "sms"; case SUBLANG_SAMI_SKOLT_FINLAND: return "sms_FI"; /* Inari Sami */ case 0x1c: return "smn"; case SUBLANG_SAMI_INARI_FINLAND: return "smn_FI"; } return "se"; /* or "smi"? */ case LANG_SANSKRIT: switch (sub) { case SUBLANG_SANSKRIT_INDIA: return "sa_IN"; } return "sa"; case LANG_SCOTTISH_GAELIC: switch (sub) { case SUBLANG_DEFAULT: return "gd_GB"; } return "gd"; case LANG_SINDHI: switch (sub) { case SUBLANG_SINDHI_INDIA: return "sd_IN"; case SUBLANG_SINDHI_PAKISTAN: return "sd_PK"; /*case SUBLANG_SINDHI_AFGHANISTAN: return "sd_AF";*/ } return "sd"; case LANG_SINHALESE: switch (sub) { case SUBLANG_SINHALESE_SRI_LANKA: return "si_LK"; } return "si"; case LANG_SLOVAK: switch (sub) { case SUBLANG_SLOVAK_SLOVAKIA: return "sk_SK"; } return "sk"; case LANG_SLOVENIAN: switch (sub) { case SUBLANG_SLOVENIAN_SLOVENIA: return "sl_SI"; } return "sl"; case LANG_SOMALI: switch (sub) { case SUBLANG_DEFAULT: return "so_SO"; } return "so"; case LANG_SORBIAN: /* FIXME: Adjust this when such locales appear on Unix. */ switch (sub) { /* Upper Sorbian */ case 0x00: return "hsb"; case SUBLANG_UPPER_SORBIAN_GERMANY: return "hsb_DE"; /* Lower Sorbian */ case 0x1f: return "dsb"; case SUBLANG_LOWER_SORBIAN_GERMANY: return "dsb_DE"; } return "wen"; case LANG_SOTHO: /* calls it "Sepedi"; according to it's the same as Northern Sotho. */ switch (sub) { case SUBLANG_SOTHO_SOUTH_AFRICA: return "nso_ZA"; } return "nso"; case LANG_SPANISH: switch (sub) { case SUBLANG_SPANISH: return "es_ES"; case SUBLANG_SPANISH_MEXICAN: return "es_MX"; case SUBLANG_SPANISH_MODERN: return "es_ES@modern"; /* not seen on Unix */ case SUBLANG_SPANISH_GUATEMALA: return "es_GT"; case SUBLANG_SPANISH_COSTA_RICA: return "es_CR"; case SUBLANG_SPANISH_PANAMA: return "es_PA"; case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO"; case SUBLANG_SPANISH_VENEZUELA: return "es_VE"; case SUBLANG_SPANISH_COLOMBIA: return "es_CO"; case SUBLANG_SPANISH_PERU: return "es_PE"; case SUBLANG_SPANISH_ARGENTINA: return "es_AR"; case SUBLANG_SPANISH_ECUADOR: return "es_EC"; case SUBLANG_SPANISH_CHILE: return "es_CL"; case SUBLANG_SPANISH_URUGUAY: return "es_UY"; case SUBLANG_SPANISH_PARAGUAY: return "es_PY"; case SUBLANG_SPANISH_BOLIVIA: return "es_BO"; case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV"; case SUBLANG_SPANISH_HONDURAS: return "es_HN"; case SUBLANG_SPANISH_NICARAGUA: return "es_NI"; case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR"; case SUBLANG_SPANISH_US: return "es_US"; } return "es"; case LANG_SUTU: switch (sub) { case SUBLANG_DEFAULT: return "bnt_TZ"; /* or "st_LS" or "nso_ZA"? */ } return "bnt"; case LANG_SWAHILI: switch (sub) { case SUBLANG_SWAHILI_KENYA: return "sw_KE"; } return "sw"; case LANG_SWEDISH: switch (sub) { case SUBLANG_SWEDISH_SWEDEN: return "sv_SE"; case SUBLANG_SWEDISH_FINLAND: return "sv_FI"; } return "sv"; case LANG_SYRIAC: switch (sub) { case SUBLANG_SYRIAC_SYRIA: return "syr_SY"; /* An extinct language. */ } return "syr"; case LANG_TAGALOG: switch (sub) { case SUBLANG_TAGALOG_PHILIPPINES: return "tl_PH"; /* or "fil_PH"? */ } return "tl"; /* or "fil"? */ case LANG_TAJIK: switch (sub) { case 0x1f: return "tg"; case SUBLANG_TAJIK_TAJIKISTAN: return "tg_TJ"; } return "tg"; case LANG_TAMAZIGHT: /* Note: Microsoft uses the non-ISO language code "tmz". */ switch (sub) { /* FIXME: Adjust this when Tamazight locales appear on Unix. */ case SUBLANG_TAMAZIGHT_ARABIC: return "ber_MA@arabic"; case 0x1f: return "ber@latin"; case SUBLANG_TAMAZIGHT_ALGERIA_LATIN: return "ber_DZ@latin"; } return "ber"; case LANG_TAMIL: switch (sub) { case SUBLANG_TAMIL_INDIA: return "ta_IN"; } return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */ case LANG_TATAR: switch (sub) { case SUBLANG_TATAR_RUSSIA: return "tt_RU"; } return "tt"; case LANG_TELUGU: switch (sub) { case SUBLANG_TELUGU_INDIA: return "te_IN"; } return "te"; case LANG_THAI: switch (sub) { case SUBLANG_THAI_THAILAND: return "th_TH"; } return "th"; case LANG_TIBETAN: switch (sub) { case SUBLANG_TIBETAN_PRC: /* Most Tibetans would not like "bo_CN". But Tibet does not yet have a country code of its own. */ return "bo"; case SUBLANG_TIBETAN_BHUTAN: return "bo_BT"; } return "bo"; case LANG_TIGRINYA: switch (sub) { case SUBLANG_TIGRINYA_ETHIOPIA: return "ti_ET"; case SUBLANG_TIGRINYA_ERITREA: return "ti_ER"; } return "ti"; case LANG_TSONGA: switch (sub) { case SUBLANG_DEFAULT: return "ts_ZA"; } return "ts"; case LANG_TSWANA: /* Spoken in South Africa, Botswana. */ switch (sub) { case SUBLANG_TSWANA_SOUTH_AFRICA: return "tn_ZA"; } return "tn"; case LANG_TURKISH: switch (sub) { case SUBLANG_TURKISH_TURKEY: return "tr_TR"; } return "tr"; case LANG_TURKMEN: switch (sub) { case SUBLANG_TURKMEN_TURKMENISTAN: return "tk_TM"; } return "tk"; case LANG_UIGHUR: switch (sub) { case SUBLANG_UIGHUR_PRC: return "ug_CN"; } return "ug"; case LANG_UKRAINIAN: switch (sub) { case SUBLANG_UKRAINIAN_UKRAINE: return "uk_UA"; } return "uk"; case LANG_URDU: switch (sub) { case SUBLANG_URDU_PAKISTAN: return "ur_PK"; case SUBLANG_URDU_INDIA: return "ur_IN"; } return "ur"; case LANG_UZBEK: switch (sub) { case 0x1f: return "uz"; case SUBLANG_UZBEK_LATIN: return "uz_UZ"; case 0x1e: return "uz@cyrillic"; case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic"; } return "uz"; case LANG_VENDA: switch (sub) { case SUBLANG_DEFAULT: return "ve_ZA"; } return "ve"; case LANG_VIETNAMESE: switch (sub) { case SUBLANG_VIETNAMESE_VIETNAM: return "vi_VN"; } return "vi"; case LANG_WELSH: switch (sub) { case SUBLANG_WELSH_UNITED_KINGDOM: return "cy_GB"; } return "cy"; case LANG_WOLOF: switch (sub) { case SUBLANG_WOLOF_SENEGAL: return "wo_SN"; } return "wo"; case LANG_XHOSA: switch (sub) { case SUBLANG_XHOSA_SOUTH_AFRICA: return "xh_ZA"; } return "xh"; case LANG_YAKUT: switch (sub) { case SUBLANG_YAKUT_RUSSIA: return "sah_RU"; } return "sah"; case LANG_YI: switch (sub) { case SUBLANG_YI_PRC: return "ii_CN"; } return "ii"; case LANG_YIDDISH: switch (sub) { case SUBLANG_DEFAULT: return "yi_IL"; } return "yi"; case LANG_YORUBA: switch (sub) { case SUBLANG_YORUBA_NIGERIA: return "yo_NG"; } return "yo"; case LANG_ZULU: switch (sub) { case SUBLANG_ZULU_SOUTH_AFRICA: return "zu_ZA"; } return "zu"; default: return "C"; } } } # if !defined IN_LIBINTL static # endif const char * gl_locale_name_from_win32_LCID (LCID lcid) { LANGID langid; /* Strip off the sorting rules, keep only the language part. */ langid = LANGIDFROMLCID (lcid); return gl_locale_name_from_win32_LANGID (langid); } #endif #if HAVE_USELOCALE /* glibc or Mac OS X */ /* Simple hash set of strings. We don't want to drag in lots of hash table code here. */ # define SIZE_BITS (sizeof (size_t) * CHAR_BIT) /* A hash function for NUL-terminated char* strings using the method described by Bruno Haible. See http://www.haible.de/bruno/hashfunc.html. */ static size_t string_hash (const void *x) { const char *s = (const char *) x; size_t h = 0; for (; *s; s++) h = *s + ((h << 9) | (h >> (SIZE_BITS - 9))); return h; } /* A hash table of fixed size. Multiple threads can access it read-only simultaneously, but only one thread can insert into it at the same time. */ /* A node in a hash bucket collision list. */ struct hash_node { struct hash_node * volatile next; char contents[100]; /* has variable size */ }; # define HASH_TABLE_SIZE 257 static struct hash_node * volatile struniq_hash_table[HASH_TABLE_SIZE] /* = { NULL, ..., NULL } */; /* This lock protects the struniq_hash_table against multiple simultaneous insertions. */ gl_lock_define_initialized(static, struniq_lock) /* Store a copy of the given string in a string pool with indefinite extent. Return a pointer to this copy. */ static const char * struniq (const char *string) { size_t hashcode = string_hash (string); size_t slot = hashcode % HASH_TABLE_SIZE; size_t size; struct hash_node *new_node; struct hash_node *p; for (p = struniq_hash_table[slot]; p != NULL; p = p->next) if (strcmp (p->contents, string) == 0) return p->contents; size = strlen (string) + 1; new_node = (struct hash_node *) malloc (offsetof (struct hash_node, contents[0]) + size); if (new_node == NULL) /* Out of memory. Return a statically allocated string. */ return "C"; memcpy (new_node->contents, string, size); /* Lock while inserting new_node. */ gl_lock_lock (struniq_lock); /* Check whether another thread already added the string while we were waiting on the lock. */ for (p = struniq_hash_table[slot]; p != NULL; p = p->next) if (strcmp (p->contents, string) == 0) { free (new_node); new_node = p; goto done; } /* Really insert new_node into the hash table. Fill new_node entirely first, because other threads may be iterating over the linked list. */ new_node->next = struniq_hash_table[slot]; struniq_hash_table[slot] = new_node; done: /* Unlock after new_node is inserted. */ gl_lock_unlock (struniq_lock); return new_node->contents; } #endif #if defined IN_LIBINTL || HAVE_USELOCALE /* Like gl_locale_name_thread, except that the result is not in storage of indefinite extent. */ # if !defined IN_LIBINTL static # endif const char * gl_locale_name_thread_unsafe (int category, const char *categoryname) { # if HAVE_USELOCALE { locale_t thread_locale = uselocale (NULL); if (thread_locale != LC_GLOBAL_LOCALE) { # if __GLIBC__ >= 2 && !defined __UCLIBC__ /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in glibc < 2.12. See . */ const char *name = nl_langinfo (_NL_ITEM ((category), _NL_ITEM_INDEX (-1))); if (name[0] == '\0') /* Fallback code for glibc < 2.4, which did not implement nl_langinfo (_NL_LOCALE_NAME (category)). */ name = thread_locale->__names[category]; return name; # elif defined __FreeBSD__ || (defined __APPLE__ && defined __MACH__) /* FreeBSD, Mac OS X */ int mask; switch (category) { case LC_CTYPE: mask = LC_CTYPE_MASK; break; case LC_NUMERIC: mask = LC_NUMERIC_MASK; break; case LC_TIME: mask = LC_TIME_MASK; break; case LC_COLLATE: mask = LC_COLLATE_MASK; break; case LC_MONETARY: mask = LC_MONETARY_MASK; break; case LC_MESSAGES: mask = LC_MESSAGES_MASK; break; default: /* We shouldn't get here. */ return ""; } return querylocale (mask, thread_locale); # endif } } # endif return NULL; } #endif const char * gl_locale_name_thread (int category, const char *categoryname) { #if HAVE_USELOCALE const char *name = gl_locale_name_thread_unsafe (category, categoryname); if (name != NULL) return struniq (name); #endif return NULL; } /* XPG3 defines the result of 'setlocale (category, NULL)' as: "Directs 'setlocale()' to query 'category' and return the current setting of 'local'." However it does not specify the exact format. Neither do SUSV2 and ISO C 99. So we can use this feature only on selected systems (e.g. those using GNU C Library). */ #if defined _LIBC || ((defined __GLIBC__ && __GLIBC__ >= 2) && !defined __UCLIBC__) # define HAVE_LOCALE_NULL #endif const char * gl_locale_name_posix (int category, const char *categoryname) { /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'. On some systems this can be done by the 'setlocale' function itself. */ #if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL return setlocale (category, NULL); #else /* On other systems we ignore what setlocale reports and instead look at the environment variables directly. This is necessary 1. on systems which have a facility for customizing the default locale (Mac OS X, native Windows, Cygwin) and where the system's setlocale() function ignores this default locale (Mac OS X, Cygwin), in two cases: a. when the user missed to use the setlocale() override from libintl (for example by not including ), b. when setlocale supports only the "C" locale, such as on Cygwin 1.5.x. In this case even the override from libintl cannot help. 2. on all systems where setlocale supports only the "C" locale. */ /* Strictly speaking, it is a POSIX violation to look at the environment variables regardless whether setlocale has been called or not. POSIX says: "For C-language programs, the POSIX locale shall be the default locale when the setlocale() function is not called." But we assume that all programs that use internationalized APIs call setlocale (LC_ALL, ""). */ return gl_locale_name_environ (category, categoryname); #endif } const char * gl_locale_name_environ (int category, const char *categoryname) { const char *retval; /* Setting of LC_ALL overrides all other. */ retval = getenv ("LC_ALL"); if (retval != NULL && retval[0] != '\0') return retval; /* Next comes the name of the desired category. */ retval = getenv (categoryname); if (retval != NULL && retval[0] != '\0') return retval; /* Last possibility is the LANG environment variable. */ retval = getenv ("LANG"); if (retval != NULL && retval[0] != '\0') { #if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE /* Mac OS X 10.2 or newer. Ignore invalid LANG value set by the Terminal application. */ if (strcmp (retval, "UTF-8") != 0) #endif #if defined __CYGWIN__ /* Cygwin. Ignore dummy LANG value set by ~/.profile. */ if (strcmp (retval, "C.UTF-8") != 0) #endif return retval; } return NULL; } const char * gl_locale_name_default (void) { /* POSIX:2001 says: "All implementations shall define a locale as the default locale, to be invoked when no environment variables are set, or set to the empty string. This default locale can be the POSIX locale or any other implementation-defined locale. Some implementations may provide facilities for local installation administrators to set the default locale, customizing it for each location. POSIX:2001 does not require such a facility. The systems with such a facility are Mac OS X and Windows: They provide a GUI that allows the user to choose a locale. - On Mac OS X, by default, none of LC_* or LANG are set. Starting with Mac OS X 10.4 or 10.5, LANG is set for processes launched by the 'Terminal' application (but sometimes to an incorrect value "UTF-8"). When no environment variable is set, setlocale (LC_ALL, "") uses the "C" locale. - On native Windows, by default, none of LC_* or LANG are set. When no environment variable is set, setlocale (LC_ALL, "") uses the locale chosen by the user. - On Cygwin 1.5.x, by default, none of LC_* or LANG are set. When no environment variable is set, setlocale (LC_ALL, "") uses the "C" locale. - On Cygwin 1.7, by default, LANG is set to "C.UTF-8" when the default ~/.profile is executed. When no environment variable is set, setlocale (LC_ALL, "") uses the "C.UTF-8" locale, which operates in the same way as the "C" locale. */ #if !(HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE || defined WINDOWS_NATIVE || defined __CYGWIN__) /* The system does not have a way of setting the locale, other than the POSIX specified environment variables. We use C as default locale. */ return "C"; #else /* Return an XPG style locale name language[_territory][@modifier]. Don't even bother determining the codeset; it's not useful in this context, because message catalogs are not specific to a single codeset. */ # if HAVE_CFLOCALECOPYCURRENT || HAVE_CFPREFERENCESCOPYAPPVALUE /* Mac OS X 10.2 or newer */ { /* Cache the locale name, since CoreFoundation calls are expensive. */ static const char *cached_localename; if (cached_localename == NULL) { char namebuf[256]; # if HAVE_CFLOCALECOPYCURRENT /* Mac OS X 10.3 or newer */ CFLocaleRef locale = CFLocaleCopyCurrent (); CFStringRef name = CFLocaleGetIdentifier (locale); if (CFStringGetCString (name, namebuf, sizeof (namebuf), kCFStringEncodingASCII)) { gl_locale_name_canonicalize (namebuf); cached_localename = strdup (namebuf); } CFRelease (locale); # elif HAVE_CFPREFERENCESCOPYAPPVALUE /* Mac OS X 10.2 or newer */ CFTypeRef value = CFPreferencesCopyAppValue (CFSTR ("AppleLocale"), kCFPreferencesCurrentApplication); if (value != NULL && CFGetTypeID (value) == CFStringGetTypeID () && CFStringGetCString ((CFStringRef)value, namebuf, sizeof (namebuf), kCFStringEncodingASCII)) { gl_locale_name_canonicalize (namebuf); cached_localename = strdup (namebuf); } # endif if (cached_localename == NULL) cached_localename = "C"; } return cached_localename; } # endif # if defined WINDOWS_NATIVE || defined __CYGWIN__ /* Native Windows or Cygwin */ { LCID lcid; /* Use native Windows API locale ID. */ lcid = GetThreadLocale (); return gl_locale_name_from_win32_LCID (lcid); } # endif #endif } /* Determine the current locale's name, and canonicalize it into XPG syntax language[_territory][.codeset][@modifier] The codeset part in the result is not reliable; the locale_charset() should be used for codeset information instead. The result must not be freed; it is statically allocated. */ const char * gl_locale_name (int category, const char *categoryname) { const char *retval; retval = gl_locale_name_thread (category, categoryname); if (retval != NULL) return retval; retval = gl_locale_name_posix (category, categoryname); if (retval != NULL) return retval; return gl_locale_name_default (); } gerbv-2.7.0/intl/hash-string.c0000644000175000017500000000304013421555747016060 0ustar carstencarsten/* Implements a string hashing function. Copyright (C) 1995, 1997, 1998, 2000, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see . */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #include "hash-string.h" /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ unsigned long int __hash_string (const char *str_param) { unsigned long int hval, g; const char *str = str_param; /* Compute the hash value for the given string. */ hval = 0; while (*str != '\0') { hval <<= 4; hval += (unsigned char) *str++; g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); if (g != 0) { hval ^= g >> (HASHWORDBITS - 8); hval ^= g; } } return hval; } gerbv-2.7.0/intl/explodename.c0000644000175000017500000000645113421555746016142 0ustar carstencarsten/* Copyright (C) 1995-1998, 2000-2001, 2003, 2005, 2007 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ /* Split a locale name NAME into a leading language part and all the rest. Return a pointer to the first character after the language, i.e. to the first byte of the rest. */ static char *_nl_find_language (const char *name); static char * _nl_find_language (const char *name) { while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '.') ++name; return (char *) name; } int _nl_explode_name (char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset) { char *cp; int mask; *modifier = NULL; *territory = NULL; *codeset = NULL; *normalized_codeset = NULL; /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_', '.', and `@'. */ mask = 0; *language = cp = name; cp = _nl_find_language (*language); if (*language == cp) /* This does not make sense: language has to be specified. Use this entry as it is without exploding. Perhaps it is an alias. */ cp = strchr (*language, '\0'); else { if (cp[0] == '_') { /* Next is the territory. */ cp[0] = '\0'; *territory = ++cp; while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@') ++cp; mask |= XPG_TERRITORY; } if (cp[0] == '.') { /* Next is the codeset. */ cp[0] = '\0'; *codeset = ++cp; while (cp[0] != '\0' && cp[0] != '@') ++cp; mask |= XPG_CODESET; if (*codeset != cp && (*codeset)[0] != '\0') { *normalized_codeset = _nl_normalize_codeset (*codeset, cp - *codeset); if (*normalized_codeset == NULL) return -1; else if (strcmp (*codeset, *normalized_codeset) == 0) free ((char *) *normalized_codeset); else mask |= XPG_NORM_CODESET; } } } if (cp[0] == '@') { /* Next is the modifier. */ cp[0] = '\0'; *modifier = ++cp; if (cp[0] != '\0') mask |= XPG_MODIFIER; } if (*territory != NULL && (*territory)[0] == '\0') mask &= ~XPG_TERRITORY; if (*codeset != NULL && (*codeset)[0] == '\0') mask &= ~XPG_CODESET; return mask; } gerbv-2.7.0/intl/log.c0000644000175000017500000000740413421555747014422 0ustar carstencarsten/* Log file output. Copyright (C) 2003, 2005, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include /* Handle multi-threaded applications. */ #ifdef _LIBC # include #else # include "lock.h" #endif /* Separator between msgctxt and msgid in .mo files. */ #define MSGCTXT_SEPARATOR '\004' /* EOT */ /* Print an ASCII string with quotes and escape sequences where needed. */ static void print_escaped (FILE *stream, const char *str, const char *str_end) { putc ('"', stream); for (; str != str_end; str++) if (*str == '\n') { fputs ("\\n\"", stream); if (str + 1 == str_end) return; fputs ("\n\"", stream); } else { if (*str == '"' || *str == '\\') putc ('\\', stream); putc (*str, stream); } putc ('"', stream); } static char *last_logfilename = NULL; static FILE *last_logfile = NULL; __libc_lock_define_initialized (static, lock) static inline void _nl_log_untranslated_locked (const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural) { FILE *logfile; const char *separator; /* Can we reuse the last opened logfile? */ if (last_logfilename == NULL || strcmp (logfilename, last_logfilename) != 0) { /* Close the last used logfile. */ if (last_logfilename != NULL) { if (last_logfile != NULL) { fclose (last_logfile); last_logfile = NULL; } free (last_logfilename); last_logfilename = NULL; } /* Open the logfile. */ last_logfilename = (char *) malloc (strlen (logfilename) + 1); if (last_logfilename == NULL) return; strcpy (last_logfilename, logfilename); last_logfile = fopen (logfilename, "a"); if (last_logfile == NULL) return; } logfile = last_logfile; fprintf (logfile, "domain "); print_escaped (logfile, domainname, domainname + strlen (domainname)); separator = strchr (msgid1, MSGCTXT_SEPARATOR); if (separator != NULL) { /* The part before the MSGCTXT_SEPARATOR is the msgctxt. */ fprintf (logfile, "\nmsgctxt "); print_escaped (logfile, msgid1, separator); msgid1 = separator + 1; } fprintf (logfile, "\nmsgid "); print_escaped (logfile, msgid1, msgid1 + strlen (msgid1)); if (plural) { fprintf (logfile, "\nmsgid_plural "); print_escaped (logfile, msgid2, msgid2 + strlen (msgid2)); fprintf (logfile, "\nmsgstr[0] \"\"\n"); } else fprintf (logfile, "\nmsgstr \"\"\n"); putc ('\n', logfile); } /* Add to the log file an entry denoting a failed translation. */ void _nl_log_untranslated (const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural) { __libc_lock_lock (lock); _nl_log_untranslated_locked (logfilename, domainname, msgid1, msgid2, plural); __libc_lock_unlock (lock); } gerbv-2.7.0/intl/langprefs.c0000644000175000017500000003064213421555747015622 0ustar carstencarsten/* Determine the user's language preferences. Copyright (C) 2004-2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible . Win32 code originally by Michele Cicciotti . */ #ifdef HAVE_CONFIG_H # include #endif #include #if HAVE_CFPREFERENCESCOPYAPPVALUE # include # include # include # include # include extern void _nl_locale_name_canonicalize (char *name); #endif #if defined _WIN32 || defined __WIN32__ # define WIN32_NATIVE #endif #ifdef WIN32_NATIVE # define WIN32_LEAN_AND_MEAN # include # ifndef MUI_LANGUAGE_NAME # define MUI_LANGUAGE_NAME 8 # endif # ifndef STATUS_BUFFER_OVERFLOW # define STATUS_BUFFER_OVERFLOW 0x80000005 # endif extern void _nl_locale_name_canonicalize (char *name); extern const char *_nl_locale_name_from_win32_LANGID (LANGID langid); extern const char *_nl_locale_name_from_win32_LCID (LCID lcid); /* Get the preferences list through the MUI APIs. This works on Windows Vista and newer. */ static const char * _nl_language_preferences_win32_mui (HMODULE kernel32) { /* DWORD GetUserPreferredUILanguages (ULONG dwFlags, PULONG pulNumLanguages, PWSTR pwszLanguagesBuffer, PULONG pcchLanguagesBuffer); */ typedef DWORD (WINAPI *GetUserPreferredUILanguages_func) (ULONG, PULONG, PWSTR, PULONG); GetUserPreferredUILanguages_func p_GetUserPreferredUILanguages; p_GetUserPreferredUILanguages = (GetUserPreferredUILanguages_func) GetProcAddress (kernel32, "GetUserPreferredUILanguages"); if (p_GetUserPreferredUILanguages != NULL) { ULONG num_languages; ULONG bufsize; DWORD ret; bufsize = 0; ret = p_GetUserPreferredUILanguages (MUI_LANGUAGE_NAME, &num_languages, NULL, &bufsize); if (ret == 0 && GetLastError () == STATUS_BUFFER_OVERFLOW && bufsize > 0) { WCHAR *buffer = (WCHAR *) malloc (bufsize * sizeof (WCHAR)); if (buffer != NULL) { ret = p_GetUserPreferredUILanguages (MUI_LANGUAGE_NAME, &num_languages, buffer, &bufsize); if (ret) { /* Convert the list from NUL-delimited WCHAR[] Win32 locale names to colon-delimited char[] Unix locale names. We assume that all these locale names are in ASCII, nonempty and contain no colons. */ char *languages = (char *) malloc (bufsize + num_languages * 10 + 1); if (languages != NULL) { const WCHAR *p = buffer; char *q = languages; ULONG i; for (i = 0; i < num_languages; i++) { char *q1; char *q2; q1 = q; if (i > 0) *q++ = ':'; q2 = q; for (; *p != (WCHAR)'\0'; p++) { if ((unsigned char) *p != *p || *p == ':') { /* A non-ASCII character or a colon inside the Win32 locale name! Punt. */ q = q1; break; } *q++ = (unsigned char) *p; } if (q == q1) /* An unexpected Win32 locale name occurred. */ break; *q = '\0'; _nl_locale_name_canonicalize (q2); q = q2 + strlen (q2); p++; } *q = '\0'; if (q > languages) { free (buffer); return languages; } free (languages); } } free (buffer); } } } return NULL; } /* Get a preference. This works on Windows ME and newer. */ static const char * _nl_language_preferences_win32_ME (HMODULE kernel32) { /* LANGID GetUserDefaultUILanguage (void); */ typedef LANGID (WINAPI *GetUserDefaultUILanguage_func) (void); GetUserDefaultUILanguage_func p_GetUserDefaultUILanguage; p_GetUserDefaultUILanguage = (GetUserDefaultUILanguage_func) GetProcAddress (kernel32, "GetUserDefaultUILanguage"); if (p_GetUserDefaultUILanguage != NULL) return _nl_locale_name_from_win32_LANGID (p_GetUserDefaultUILanguage ()); return NULL; } /* Get a preference. This works on Windows 95 and newer. */ static const char * _nl_language_preferences_win32_95 () { HKEY desktop_resource_locale_key; if (RegOpenKeyExA (HKEY_CURRENT_USER, "Control Panel\\Desktop\\ResourceLocale", 0, KEY_QUERY_VALUE, &desktop_resource_locale_key) == NO_ERROR) { DWORD type; char data[8 + 1]; DWORD data_size = sizeof (data); DWORD ret; ret = RegQueryValueExA (desktop_resource_locale_key, NULL, NULL, &type, data, &data_size); RegCloseKey (desktop_resource_locale_key); if (ret == NO_ERROR) { /* We expect a string, at most 8 bytes long, that parses as a hexadecimal number. */ if (type == REG_SZ && data_size <= sizeof (data) && (data_size < sizeof (data) || data[sizeof (data) - 1] == '\0')) { LCID lcid; char *endp; /* Ensure it's NUL terminated. */ if (data_size < sizeof (data)) data[data_size] = '\0'; /* Parse it as a hexadecimal number. */ lcid = strtoul (data, &endp, 16); if (endp > data && *endp == '\0') return _nl_locale_name_from_win32_LCID (lcid); } } } return NULL; } /* Get the system's preference. This can be used as a fallback. */ static BOOL CALLBACK ret_first_language (HMODULE h, LPCSTR type, LPCSTR name, WORD lang, LONG_PTR param) { *(const char **)param = _nl_locale_name_from_win32_LANGID (lang); return FALSE; } static const char * _nl_language_preferences_win32_system (HMODULE kernel32) { const char *languages = NULL; /* Ignore the warning on mingw here. mingw has a wrong definition of the last parameter type of ENUMRESLANGPROC. */ EnumResourceLanguages (kernel32, RT_VERSION, MAKEINTRESOURCE (1), ret_first_language, (LONG_PTR)&languages); return languages; } #endif /* Determine the user's language preferences, as a colon separated list of locale names in XPG syntax language[_territory][.codeset][@modifier] The result must not be freed; it is statically allocated. The LANGUAGE environment variable does not need to be considered; it is already taken into account by the caller. */ const char * _nl_language_preferences_default (void) { #if HAVE_CFPREFERENCESCOPYAPPVALUE /* MacOS X 10.2 or newer */ { /* Cache the preferences list, since CoreFoundation calls are expensive. */ static const char *cached_languages; static int cache_initialized; if (!cache_initialized) { CFTypeRef preferences = CFPreferencesCopyAppValue (CFSTR ("AppleLanguages"), kCFPreferencesCurrentApplication); if (preferences != NULL && CFGetTypeID (preferences) == CFArrayGetTypeID ()) { CFArrayRef prefArray = (CFArrayRef)preferences; int n = CFArrayGetCount (prefArray); char buf[256]; size_t size = 0; int i; for (i = 0; i < n; i++) { CFTypeRef element = CFArrayGetValueAtIndex (prefArray, i); if (element != NULL && CFGetTypeID (element) == CFStringGetTypeID () && CFStringGetCString ((CFStringRef)element, buf, sizeof (buf), kCFStringEncodingASCII)) { _nl_locale_name_canonicalize (buf); size += strlen (buf) + 1; /* Most GNU programs use msgids in English and don't ship an en.mo message catalog. Therefore when we see "en" in the preferences list, arrange for gettext() to return the msgid, and ignore all further elements of the preferences list. */ if (strcmp (buf, "en") == 0) break; } else break; } if (size > 0) { char *languages = (char *) malloc (size); if (languages != NULL) { char *p = languages; for (i = 0; i < n; i++) { CFTypeRef element = CFArrayGetValueAtIndex (prefArray, i); if (element != NULL && CFGetTypeID (element) == CFStringGetTypeID () && CFStringGetCString ((CFStringRef)element, buf, sizeof (buf), kCFStringEncodingASCII)) { _nl_locale_name_canonicalize (buf); strcpy (p, buf); p += strlen (buf); *p++ = ':'; if (strcmp (buf, "en") == 0) break; } else break; } *--p = '\0'; cached_languages = languages; } } } cache_initialized = 1; } if (cached_languages != NULL) return cached_languages; } #endif #ifdef WIN32_NATIVE { /* Cache the preferences list, since computing it is expensive. */ static const char *cached_languages; static int cache_initialized; /* Activate the new code only when the GETTEXT_MUI environment variable is set, for the time being, since the new code is not well tested. */ if (!cache_initialized && getenv ("GETTEXT_MUI") != NULL) { const char *languages = NULL; HMODULE kernel32 = GetModuleHandle ("kernel32"); if (kernel32 != NULL) languages = _nl_language_preferences_win32_mui (kernel32); if (languages == NULL && kernel32 != NULL) languages = _nl_language_preferences_win32_ME (kernel32); if (languages == NULL) languages = _nl_language_preferences_win32_95 (); if (languages == NULL && kernel32 != NULL) languages = _nl_language_preferences_win32_system (kernel32); cached_languages = languages; cache_initialized = 1; } if (cached_languages != NULL) return cached_languages; } #endif return NULL; } gerbv-2.7.0/intl/COPYING.LIB0000644000175000017500000006366113421555746015143 0ustar carstencarsten GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. ^L Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. ^L GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. ^L Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. ^L 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. ^L 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. ^L 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. ^L 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS ^L How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! gerbv-2.7.0/intl/VERSION0000644000175000017500000000004613421555746014537 0ustar carstencarstenGNU gettext library from gettext-0.19 gerbv-2.7.0/intl/l10nflist.c0000644000175000017500000002550013421555747015452 0ustar carstencarsten/* Copyright (C) 1995-1999, 2000-2007 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tell glibc's to provide a prototype for stpcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #if defined _LIBC || defined HAVE_ARGZ_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # ifndef stpcpy # define stpcpy(dest, src) __stpcpy(dest, src) # endif #else # ifndef HAVE_STPCPY static char *stpcpy (char *dest, const char *src); # endif #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. */ #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ /* Win32, Cygwin, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) #endif /* Define function which are usually not available. */ #ifdef _LIBC # define __argz_count(argz, len) INTUSE(__argz_count) (argz, len) #elif defined HAVE_ARGZ_COUNT # undef __argz_count # define __argz_count argz_count #else /* Returns the number of strings in ARGZ. */ static size_t argz_count__ (const char *argz, size_t len) { size_t count = 0; while (len > 0) { size_t part_len = strlen (argz); argz += part_len + 1; len -= part_len + 1; count++; } return count; } # undef __argz_count # define __argz_count(argz, len) argz_count__ (argz, len) #endif /* !_LIBC && !HAVE_ARGZ_COUNT */ #ifdef _LIBC # define __argz_stringify(argz, len, sep) \ INTUSE(__argz_stringify) (argz, len, sep) #elif defined HAVE_ARGZ_STRINGIFY # undef __argz_stringify # define __argz_stringify argz_stringify #else /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's except the last into the character SEP. */ static void argz_stringify__ (char *argz, size_t len, int sep) { while (len > 0) { size_t part_len = strlen (argz); argz += part_len; len -= part_len + 1; if (len > 0) *argz++ = sep; } } # undef __argz_stringify # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep) #endif /* !_LIBC && !HAVE_ARGZ_STRINGIFY */ #ifdef _LIBC #elif defined HAVE_ARGZ_NEXT # undef __argz_next # define __argz_next argz_next #else static char * argz_next__ (char *argz, size_t argz_len, const char *entry) { if (entry) { if (entry < argz + argz_len) entry = strchr (entry, '\0') + 1; return entry >= argz + argz_len ? NULL : (char *) entry; } else if (argz_len > 0) return argz; else return 0; } # undef __argz_next # define __argz_next(argz, len, entry) argz_next__ (argz, len, entry) #endif /* !_LIBC && !HAVE_ARGZ_NEXT */ /* Return number of bits set in X. */ static inline int pop (int x) { /* We assume that no more than 16 bits are used. */ x = ((x & ~0x5555) >> 1) + (x & 0x5555); x = ((x & ~0x3333) >> 2) + (x & 0x3333); x = ((x >> 4) + x) & 0x0f0f; x = ((x >> 8) + x) & 0xff; return x; } struct loaded_l10nfile * _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *filename, int do_allocate) { char *abs_filename; struct loaded_l10nfile **lastp; struct loaded_l10nfile *retval; char *cp; size_t dirlist_count; size_t entries; int cnt; /* If LANGUAGE contains an absolute directory specification, we ignore DIRLIST. */ if (IS_ABSOLUTE_PATH (language)) dirlist_len = 0; /* Allocate room for the full file name. */ abs_filename = (char *) malloc (dirlist_len + strlen (language) + ((mask & XPG_TERRITORY) != 0 ? strlen (territory) + 1 : 0) + ((mask & XPG_CODESET) != 0 ? strlen (codeset) + 1 : 0) + ((mask & XPG_NORM_CODESET) != 0 ? strlen (normalized_codeset) + 1 : 0) + ((mask & XPG_MODIFIER) != 0 ? strlen (modifier) + 1 : 0) + 1 + strlen (filename) + 1); if (abs_filename == NULL) return NULL; /* Construct file name. */ cp = abs_filename; if (dirlist_len > 0) { memcpy (cp, dirlist, dirlist_len); __argz_stringify (cp, dirlist_len, PATH_SEPARATOR); cp += dirlist_len; cp[-1] = '/'; } cp = stpcpy (cp, language); if ((mask & XPG_TERRITORY) != 0) { *cp++ = '_'; cp = stpcpy (cp, territory); } if ((mask & XPG_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, codeset); } if ((mask & XPG_NORM_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, normalized_codeset); } if ((mask & XPG_MODIFIER) != 0) { *cp++ = '@'; cp = stpcpy (cp, modifier); } *cp++ = '/'; stpcpy (cp, filename); /* Look in list of already loaded domains whether it is already available. */ lastp = l10nfile_list; for (retval = *l10nfile_list; retval != NULL; retval = retval->next) if (retval->filename != NULL) { int compare = strcmp (retval->filename, abs_filename); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It's not in the list. */ retval = NULL; break; } lastp = &retval->next; } if (retval != NULL || do_allocate == 0) { free (abs_filename); return retval; } dirlist_count = (dirlist_len > 0 ? __argz_count (dirlist, dirlist_len) : 1); /* Allocate a new loaded_l10nfile. */ retval = (struct loaded_l10nfile *) malloc (sizeof (*retval) + (((dirlist_count << pop (mask)) + (dirlist_count > 1 ? 1 : 0)) * sizeof (struct loaded_l10nfile *))); if (retval == NULL) { free (abs_filename); return NULL; } retval->filename = abs_filename; /* We set retval->data to NULL here; it is filled in later. Setting retval->decided to 1 here means that retval does not correspond to a real file (dirlist_count > 1) or is not worth looking up (if an unnormalized codeset was specified). */ retval->decided = (dirlist_count > 1 || ((mask & XPG_CODESET) != 0 && (mask & XPG_NORM_CODESET) != 0)); retval->data = NULL; retval->next = *lastp; *lastp = retval; entries = 0; /* Recurse to fill the inheritance list of RETVAL. If the DIRLIST is a real list (i.e. DIRLIST_COUNT > 1), the RETVAL entry does not correspond to a real file; retval->filename contains colons. In this case we loop across all elements of DIRLIST and across all bit patterns dominated by MASK. If the DIRLIST is a single directory or entirely redundant (i.e. DIRLIST_COUNT == 1), we loop across all bit patterns dominated by MASK, excluding MASK itself. In either case, we loop down from MASK to 0. This has the effect that the extra bits in the locale name are dropped in this order: first the modifier, then the territory, then the codeset, then the normalized_codeset. */ for (cnt = dirlist_count > 1 ? mask : mask - 1; cnt >= 0; --cnt) if ((cnt & ~mask) == 0 && !((cnt & XPG_CODESET) != 0 && (cnt & XPG_NORM_CODESET) != 0)) { if (dirlist_count > 1) { /* Iterate over all elements of the DIRLIST. */ char *dir = NULL; while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir)) != NULL) retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1, cnt, language, territory, codeset, normalized_codeset, modifier, filename, 1); } else retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, cnt, language, territory, codeset, normalized_codeset, modifier, filename, 1); } retval->successor[entries] = NULL; return retval; } /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ const char * _nl_normalize_codeset (const char *codeset, size_t name_len) { size_t len = 0; int only_digit = 1; char *retval; char *wp; size_t cnt; for (cnt = 0; cnt < name_len; ++cnt) if (isalnum ((unsigned char) codeset[cnt])) { ++len; if (isalpha ((unsigned char) codeset[cnt])) only_digit = 0; } retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1); if (retval != NULL) { if (only_digit) wp = stpcpy (retval, "iso"); else wp = retval; for (cnt = 0; cnt < name_len; ++cnt) if (isalpha ((unsigned char) codeset[cnt])) *wp++ = tolower ((unsigned char) codeset[cnt]); else if (isdigit ((unsigned char) codeset[cnt])) *wp++ = codeset[cnt]; *wp = '\0'; } return (const char *) retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (char *dest, const char *src) { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif gerbv-2.7.0/intl/xsize.h0000644000175000017500000000710513421555750015000 0ustar carstencarsten/* xsize.h -- Checked size_t computations. Copyright (C) 2003, 2008-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, see . */ #ifndef _XSIZE_H #define _XSIZE_H /* Get size_t. */ #include /* Get SIZE_MAX. */ #include #if HAVE_STDINT_H # include #endif #ifndef _GL_INLINE_HEADER_BEGIN #error "Please include config.h first." #endif _GL_INLINE_HEADER_BEGIN #ifndef XSIZE_INLINE # define XSIZE_INLINE _GL_INLINE #endif /* The size of memory objects is often computed through expressions of type size_t. Example: void* p = malloc (header_size + n * element_size). These computations can lead to overflow. When this happens, malloc() returns a piece of memory that is way too small, and the program then crashes while attempting to fill the memory. To avoid this, the functions and macros in this file check for overflow. The convention is that SIZE_MAX represents overflow. malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc implementation that uses mmap --, it's recommended to use size_overflow_p() or size_in_bounds_p() before invoking malloc(). The example thus becomes: size_t size = xsum (header_size, xtimes (n, element_size)); void *p = (size_in_bounds_p (size) ? malloc (size) : NULL); */ /* Convert an arbitrary value >= 0 to type size_t. */ #define xcast_size_t(N) \ ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX) /* Sum of two sizes, with overflow check. */ XSIZE_INLINE size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum (size_t size1, size_t size2) { size_t sum = size1 + size2; return (sum >= size1 ? sum : SIZE_MAX); } /* Sum of three sizes, with overflow check. */ XSIZE_INLINE size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum3 (size_t size1, size_t size2, size_t size3) { return xsum (xsum (size1, size2), size3); } /* Sum of four sizes, with overflow check. */ XSIZE_INLINE size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum4 (size_t size1, size_t size2, size_t size3, size_t size4) { return xsum (xsum (xsum (size1, size2), size3), size4); } /* Maximum of two sizes, with overflow check. */ XSIZE_INLINE size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xmax (size_t size1, size_t size2) { /* No explicit check is needed here, because for any n: max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX. */ return (size1 >= size2 ? size1 : size2); } /* Multiplication of a count with an element size, with overflow check. The count must be >= 0 and the element size must be > 0. This is a macro, not a function, so that it works correctly even when N is of a wider type and N > SIZE_MAX. */ #define xtimes(N, ELSIZE) \ ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX) /* Check for overflow. */ #define size_overflow_p(SIZE) \ ((SIZE) == SIZE_MAX) /* Check against overflow. */ #define size_in_bounds_p(SIZE) \ ((SIZE) != SIZE_MAX) _GL_INLINE_HEADER_END #endif /* _XSIZE_H */ gerbv-2.7.0/intl/hash-string.h0000644000175000017500000000247113421555747016074 0ustar carstencarsten/* Description of GNU message catalog format: string hashing function. Copyright (C) 1995, 1997-1998, 2000-2003, 2005 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* @@ end of prolog @@ */ /* We assume to have `unsigned long int' value with at least 32 bits. */ #define HASHWORDBITS 32 #ifndef _LIBC # ifdef IN_LIBINTL # define __hash_string libintl_hash_string # else # define __hash_string hash_string # endif #endif /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ extern unsigned long int __hash_string (const char *str_param); gerbv-2.7.0/intl/locale.alias0000644000175000017500000000501713421555747015745 0ustar carstencarsten# Locale name alias data base. # Copyright (C) 1996-2001,2003,2007 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # The format of this file is the same as for the corresponding file of # the X Window System, which normally can be found in # /usr/lib/X11/locale/locale.alias # A single line contains two fields: an alias and a substitution value. # All entries are case independent. # Note: This file is obsolete and is kept around for the time being for # backward compatibility. Nobody should rely on the names defined here. # Locales should always be specified by their full name. # Packages using this file: bokmal nb_NO.ISO-8859-1 bokm�l nb_NO.ISO-8859-1 catalan ca_ES.ISO-8859-1 croatian hr_HR.ISO-8859-2 czech cs_CZ.ISO-8859-2 danish da_DK.ISO-8859-1 dansk da_DK.ISO-8859-1 deutsch de_DE.ISO-8859-1 dutch nl_NL.ISO-8859-1 eesti et_EE.ISO-8859-1 estonian et_EE.ISO-8859-1 finnish fi_FI.ISO-8859-1 fran�ais fr_FR.ISO-8859-1 french fr_FR.ISO-8859-1 galego gl_ES.ISO-8859-1 galician gl_ES.ISO-8859-1 german de_DE.ISO-8859-1 greek el_GR.ISO-8859-7 hebrew he_IL.ISO-8859-8 hrvatski hr_HR.ISO-8859-2 hungarian hu_HU.ISO-8859-2 icelandic is_IS.ISO-8859-1 italian it_IT.ISO-8859-1 japanese ja_JP.eucJP japanese.euc ja_JP.eucJP ja_JP ja_JP.eucJP ja_JP.ujis ja_JP.eucJP japanese.sjis ja_JP.SJIS korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR lithuanian lt_LT.ISO-8859-13 no_NO nb_NO.ISO-8859-1 no_NO.ISO-8859-1 nb_NO.ISO-8859-1 norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 portuguese pt_PT.ISO-8859-1 romanian ro_RO.ISO-8859-2 russian ru_RU.ISO-8859-5 slovak sk_SK.ISO-8859-2 slovene sl_SI.ISO-8859-2 slovenian sl_SI.ISO-8859-2 spanish es_ES.ISO-8859-1 swedish sv_SE.ISO-8859-1 thai th_TH.TIS-620 turkish tr_TR.ISO-8859-9 gerbv-2.7.0/intl/dcgettext.c0000644000175000017500000000332413421555746015630 0ustar carstencarsten/* Implementation of the dcgettext(3) function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCGETTEXT __dcgettext # define DCIGETTEXT __dcigettext #else # define DCGETTEXT libintl_dcgettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCGETTEXT (const char *domainname, const char *msgid, int category) { return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ INTDEF(__dcgettext) weak_alias (__dcgettext, dcgettext); #endif gerbv-2.7.0/intl/lock.c0000644000175000017500000006422613421555747014576 0ustar carstencarsten/* Locking in multithreaded situations. Copyright (C) 2005-2008 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible , 2005. Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h, gthr-win32.h. */ #include #include "lock.h" /* ========================================================================= */ #if USE_POSIX_THREADS /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ # if HAVE_PTHREAD_RWLOCK # if !defined PTHREAD_RWLOCK_INITIALIZER int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_rwlock_init (&lock->rwlock, NULL); if (err != 0) return err; lock->initialized = 1; return 0; } int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_rwlock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_rwlock_rdlock (&lock->rwlock); } int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_rwlock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_rwlock_wrlock (&lock->rwlock); } int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) return EINVAL; return pthread_rwlock_unlock (&lock->rwlock); } int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock) { int err; if (!lock->initialized) return EINVAL; err = pthread_rwlock_destroy (&lock->rwlock); if (err != 0) return err; lock->initialized = 0; return 0; } # endif # else int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_init (&lock->lock, NULL); if (err != 0) return err; err = pthread_cond_init (&lock->waiting_readers, NULL); if (err != 0) return err; err = pthread_cond_init (&lock->waiting_writers, NULL); if (err != 0) return err; lock->waiting_writers_count = 0; lock->runcount = 0; return 0; } int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; /* Test whether only readers are currently running, and whether the runcount field will not overflow. */ /* POSIX says: "It is implementation-defined whether the calling thread acquires the lock when a writer does not hold the lock and there are writers blocked on the lock." Let's say, no: give the writers a higher priority. */ while (!(lock->runcount + 1 > 0 && lock->waiting_writers_count == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_readers. */ err = pthread_cond_wait (&lock->waiting_readers, &lock->lock); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } lock->runcount++; return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; /* Test whether no readers or writers are currently running. */ while (!(lock->runcount == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_writers. */ lock->waiting_writers_count++; err = pthread_cond_wait (&lock->waiting_writers, &lock->lock); if (err != 0) { lock->waiting_writers_count--; pthread_mutex_unlock (&lock->lock); return err; } lock->waiting_writers_count--; } lock->runcount--; /* runcount becomes -1 */ return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; if (lock->runcount < 0) { /* Drop a writer lock. */ if (!(lock->runcount == -1)) { pthread_mutex_unlock (&lock->lock); return EINVAL; } lock->runcount = 0; } else { /* Drop a reader lock. */ if (!(lock->runcount > 0)) { pthread_mutex_unlock (&lock->lock); return EINVAL; } lock->runcount--; } if (lock->runcount == 0) { /* POSIX recommends that "write locks shall take precedence over read locks", to avoid "writer starvation". */ if (lock->waiting_writers_count > 0) { /* Wake up one of the waiting writers. */ err = pthread_cond_signal (&lock->waiting_writers); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } else { /* Wake up all waiting readers. */ err = pthread_cond_broadcast (&lock->waiting_readers); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } } return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_destroy (&lock->lock); if (err != 0) return err; err = pthread_cond_destroy (&lock->waiting_readers); if (err != 0) return err; err = pthread_cond_destroy (&lock->waiting_writers); if (err != 0) return err; return 0; } # endif /* --------------------- gl_recursive_lock_t datatype --------------------- */ # if HAVE_PTHREAD_MUTEX_RECURSIVE # if defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER || defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { pthread_mutexattr_t attributes; int err; err = pthread_mutexattr_init (&attributes); if (err != 0) return err; err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutex_init (lock, &attributes); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutexattr_destroy (&attributes); if (err != 0) return err; return 0; } # else int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { pthread_mutexattr_t attributes; int err; err = pthread_mutexattr_init (&attributes); if (err != 0) return err; err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutex_init (&lock->recmutex, &attributes); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutexattr_destroy (&attributes); if (err != 0) return err; lock->initialized = 1; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_recursive_lock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_mutex_lock (&lock->recmutex); } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (!lock->initialized) return EINVAL; return pthread_mutex_unlock (&lock->recmutex); } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { int err; if (!lock->initialized) return EINVAL; err = pthread_mutex_destroy (&lock->recmutex); if (err != 0) return err; lock->initialized = 0; return 0; } # endif # else int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { int err; err = pthread_mutex_init (&lock->mutex, NULL); if (err != 0) return err; lock->owner = (pthread_t) 0; lock->depth = 0; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { pthread_t self = pthread_self (); if (lock->owner != self) { int err; err = pthread_mutex_lock (&lock->mutex); if (err != 0) return err; lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } return 0; } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != pthread_self ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = (pthread_t) 0; return pthread_mutex_unlock (&lock->mutex); } else return 0; } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != (pthread_t) 0) return EBUSY; return pthread_mutex_destroy (&lock->mutex); } # endif /* -------------------------- gl_once_t datatype -------------------------- */ static const pthread_once_t fresh_once = PTHREAD_ONCE_INIT; int glthread_once_singlethreaded (pthread_once_t *once_control) { /* We don't know whether pthread_once_t is an integer type, a floating-point type, a pointer type, or a structure type. */ char *firstbyte = (char *)once_control; if (*firstbyte == *(const char *)&fresh_once) { /* First time use of once_control. Invert the first byte. */ *firstbyte = ~ *(const char *)&fresh_once; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_PTH_THREADS /* Use the GNU Pth threads library. */ /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* -------------------------- gl_once_t datatype -------------------------- */ static void glthread_once_call (void *arg) { void (**gl_once_temp_addr) (void) = (void (**) (void)) arg; void (*initfunction) (void) = *gl_once_temp_addr; initfunction (); } int glthread_once_multithreaded (pth_once_t *once_control, void (*initfunction) (void)) { void (*temp) (void) = initfunction; return (!pth_once (once_control, glthread_once_call, &temp) ? errno : 0); } int glthread_once_singlethreaded (pth_once_t *once_control) { /* We know that pth_once_t is an integer type. */ if (*once_control == PTH_ONCE_INIT) { /* First time use of once_control. Invert the marker. */ *once_control = ~ PTH_ONCE_INIT; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_SOLARIS_THREADS /* Use the old Solaris threads library. */ /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* --------------------- gl_recursive_lock_t datatype --------------------- */ int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { int err; err = mutex_init (&lock->mutex, USYNC_THREAD, NULL); if (err != 0) return err; lock->owner = (thread_t) 0; lock->depth = 0; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { thread_t self = thr_self (); if (lock->owner != self) { int err; err = mutex_lock (&lock->mutex); if (err != 0) return err; lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } return 0; } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != thr_self ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = (thread_t) 0; return mutex_unlock (&lock->mutex); } else return 0; } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != (thread_t) 0) return EBUSY; return mutex_destroy (&lock->mutex); } /* -------------------------- gl_once_t datatype -------------------------- */ int glthread_once_multithreaded (gl_once_t *once_control, void (*initfunction) (void)) { if (!once_control->inited) { int err; /* Use the mutex to guarantee that if another thread is already calling the initfunction, this thread waits until it's finished. */ err = mutex_lock (&once_control->mutex); if (err != 0) return err; if (!once_control->inited) { once_control->inited = 1; initfunction (); } return mutex_unlock (&once_control->mutex); } else return 0; } int glthread_once_singlethreaded (gl_once_t *once_control) { /* We know that gl_once_t contains an integer type. */ if (!once_control->inited) { /* First time use of once_control. Invert the marker. */ once_control->inited = ~ 0; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_WINDOWS_THREADS /* -------------------------- gl_lock_t datatype -------------------------- */ void glthread_lock_init_func (gl_lock_t *lock) { InitializeCriticalSection (&lock->lock); lock->guard.done = 1; } int glthread_lock_lock_func (gl_lock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_lock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); return 0; } int glthread_lock_unlock_func (gl_lock_t *lock) { if (!lock->guard.done) return EINVAL; LeaveCriticalSection (&lock->lock); return 0; } int glthread_lock_destroy_func (gl_lock_t *lock) { if (!lock->guard.done) return EINVAL; DeleteCriticalSection (&lock->lock); lock->guard.done = 0; return 0; } /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* In this file, the waitqueues are implemented as circular arrays. */ #define gl_waitqueue_t gl_carray_waitqueue_t static void gl_waitqueue_init (gl_waitqueue_t *wq) { wq->array = NULL; wq->count = 0; wq->alloc = 0; wq->offset = 0; } /* Enqueues the current thread, represented by an event, in a wait queue. Returns INVALID_HANDLE_VALUE if an allocation failure occurs. */ static HANDLE gl_waitqueue_add (gl_waitqueue_t *wq) { HANDLE event; unsigned int index; if (wq->count == wq->alloc) { unsigned int new_alloc = 2 * wq->alloc + 1; HANDLE *new_array = (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE)); if (new_array == NULL) /* No more memory. */ return INVALID_HANDLE_VALUE; /* Now is a good opportunity to rotate the array so that its contents starts at offset 0. */ if (wq->offset > 0) { unsigned int old_count = wq->count; unsigned int old_alloc = wq->alloc; unsigned int old_offset = wq->offset; unsigned int i; if (old_offset + old_count > old_alloc) { unsigned int limit = old_offset + old_count - old_alloc; for (i = 0; i < limit; i++) new_array[old_alloc + i] = new_array[i]; } for (i = 0; i < old_count; i++) new_array[i] = new_array[old_offset + i]; wq->offset = 0; } wq->array = new_array; wq->alloc = new_alloc; } /* Whether the created event is a manual-reset one or an auto-reset one, does not matter, since we will wait on it only once. */ event = CreateEvent (NULL, TRUE, FALSE, NULL); if (event == INVALID_HANDLE_VALUE) /* No way to allocate an event. */ return INVALID_HANDLE_VALUE; index = wq->offset + wq->count; if (index >= wq->alloc) index -= wq->alloc; wq->array[index] = event; wq->count++; return event; } /* Notifies the first thread from a wait queue and dequeues it. */ static void gl_waitqueue_notify_first (gl_waitqueue_t *wq) { SetEvent (wq->array[wq->offset + 0]); wq->offset++; wq->count--; if (wq->count == 0 || wq->offset == wq->alloc) wq->offset = 0; } /* Notifies all threads from a wait queue and dequeues them all. */ static void gl_waitqueue_notify_all (gl_waitqueue_t *wq) { unsigned int i; for (i = 0; i < wq->count; i++) { unsigned int index = wq->offset + i; if (index >= wq->alloc) index -= wq->alloc; SetEvent (wq->array[index]); } wq->count = 0; wq->offset = 0; } void glthread_rwlock_init_func (gl_rwlock_t *lock) { InitializeCriticalSection (&lock->lock); gl_waitqueue_init (&lock->waiting_readers); gl_waitqueue_init (&lock->waiting_writers); lock->runcount = 0; lock->guard.done = 1; } int glthread_rwlock_rdlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_rwlock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); /* Test whether only readers are currently running, and whether the runcount field will not overflow. */ if (!(lock->runcount + 1 > 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_readers. */ HANDLE event = gl_waitqueue_add (&lock->waiting_readers); if (event != INVALID_HANDLE_VALUE) { DWORD result; LeaveCriticalSection (&lock->lock); /* Wait until another thread signals this event. */ result = WaitForSingleObject (event, INFINITE); if (result == WAIT_FAILED || result == WAIT_TIMEOUT) abort (); CloseHandle (event); /* The thread which signalled the event already did the bookkeeping: removed us from the waiting_readers, incremented lock->runcount. */ if (!(lock->runcount > 0)) abort (); return 0; } else { /* Allocation failure. Weird. */ do { LeaveCriticalSection (&lock->lock); Sleep (1); EnterCriticalSection (&lock->lock); } while (!(lock->runcount + 1 > 0)); } } lock->runcount++; LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_wrlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_rwlock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); /* Test whether no readers or writers are currently running. */ if (!(lock->runcount == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_writers. */ HANDLE event = gl_waitqueue_add (&lock->waiting_writers); if (event != INVALID_HANDLE_VALUE) { DWORD result; LeaveCriticalSection (&lock->lock); /* Wait until another thread signals this event. */ result = WaitForSingleObject (event, INFINITE); if (result == WAIT_FAILED || result == WAIT_TIMEOUT) abort (); CloseHandle (event); /* The thread which signalled the event already did the bookkeeping: removed us from the waiting_writers, set lock->runcount = -1. */ if (!(lock->runcount == -1)) abort (); return 0; } else { /* Allocation failure. Weird. */ do { LeaveCriticalSection (&lock->lock); Sleep (1); EnterCriticalSection (&lock->lock); } while (!(lock->runcount == 0)); } } lock->runcount--; /* runcount becomes -1 */ LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_unlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) return EINVAL; EnterCriticalSection (&lock->lock); if (lock->runcount < 0) { /* Drop a writer lock. */ if (!(lock->runcount == -1)) abort (); lock->runcount = 0; } else { /* Drop a reader lock. */ if (!(lock->runcount > 0)) { LeaveCriticalSection (&lock->lock); return EPERM; } lock->runcount--; } if (lock->runcount == 0) { /* POSIX recommends that "write locks shall take precedence over read locks", to avoid "writer starvation". */ if (lock->waiting_writers.count > 0) { /* Wake up one of the waiting writers. */ lock->runcount--; gl_waitqueue_notify_first (&lock->waiting_writers); } else { /* Wake up all waiting readers. */ lock->runcount += lock->waiting_readers.count; gl_waitqueue_notify_all (&lock->waiting_readers); } } LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_destroy_func (gl_rwlock_t *lock) { if (!lock->guard.done) return EINVAL; if (lock->runcount != 0) return EBUSY; DeleteCriticalSection (&lock->lock); if (lock->waiting_readers.array != NULL) free (lock->waiting_readers.array); if (lock->waiting_writers.array != NULL) free (lock->waiting_writers.array); lock->guard.done = 0; return 0; } /* --------------------- gl_recursive_lock_t datatype --------------------- */ void glthread_recursive_lock_init_func (gl_recursive_lock_t *lock) { lock->owner = 0; lock->depth = 0; InitializeCriticalSection (&lock->lock); lock->guard.done = 1; } int glthread_recursive_lock_lock_func (gl_recursive_lock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_recursive_lock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } { DWORD self = GetCurrentThreadId (); if (lock->owner != self) { EnterCriticalSection (&lock->lock); lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } } return 0; } int glthread_recursive_lock_unlock_func (gl_recursive_lock_t *lock) { if (lock->owner != GetCurrentThreadId ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = 0; LeaveCriticalSection (&lock->lock); } return 0; } int glthread_recursive_lock_destroy_func (gl_recursive_lock_t *lock) { if (lock->owner != 0) return EBUSY; DeleteCriticalSection (&lock->lock); lock->guard.done = 0; return 0; } /* -------------------------- gl_once_t datatype -------------------------- */ void glthread_once_func (gl_once_t *once_control, void (*initfunction) (void)) { if (once_control->inited <= 0) { if (InterlockedIncrement (&once_control->started) == 0) { /* This thread is the first one to come to this once_control. */ InitializeCriticalSection (&once_control->lock); EnterCriticalSection (&once_control->lock); once_control->inited = 0; initfunction (); once_control->inited = 1; LeaveCriticalSection (&once_control->lock); } else { /* Undo last operation. */ InterlockedDecrement (&once_control->started); /* Some other thread has already started the initialization. Yield the CPU while waiting for the other thread to finish initializing and taking the lock. */ while (once_control->inited < 0) Sleep (0); if (once_control->inited <= 0) { /* Take the lock. This blocks until the other thread has finished calling the initfunction. */ EnterCriticalSection (&once_control->lock); LeaveCriticalSection (&once_control->lock); if (!(once_control->inited > 0)) abort (); } } } } #endif /* ========================================================================= */ gerbv-2.7.0/intl/vasnprintf.c0000644000175000017500000066501413421555750016034 0ustar carstencarsten/* vsprintf with automatic memory allocation. Copyright (C) 1999, 2002-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* This file can be parametrized with the following macros: VASNPRINTF The name of the function being defined. FCHAR_T The element type of the format string. DCHAR_T The element type of the destination (result) string. FCHAR_T_ONLY_ASCII Set to 1 to enable verification that all characters in the format string are ASCII. MUST be set if FCHAR_T and DCHAR_T are not the same type. DIRECTIVE Structure denoting a format directive. Depends on FCHAR_T. DIRECTIVES Structure denoting the set of format directives of a format string. Depends on FCHAR_T. PRINTF_PARSE Function that parses a format string. Depends on FCHAR_T. DCHAR_CPY memcpy like function for DCHAR_T[] arrays. DCHAR_SET memset like function for DCHAR_T[] arrays. DCHAR_MBSNLEN mbsnlen like function for DCHAR_T[] arrays. SNPRINTF The system's snprintf (or similar) function. This may be either snprintf or swprintf. TCHAR_T The element type of the argument and result string of the said SNPRINTF function. This may be either char or wchar_t. The code exploits that sizeof (TCHAR_T) | sizeof (DCHAR_T) and alignof (TCHAR_T) <= alignof (DCHAR_T). DCHAR_IS_TCHAR Set to 1 if DCHAR_T and TCHAR_T are the same type. DCHAR_CONV_FROM_ENCODING A function to convert from char[] to DCHAR[]. DCHAR_IS_UINT8_T Set to 1 if DCHAR_T is uint8_t. DCHAR_IS_UINT16_T Set to 1 if DCHAR_T is uint16_t. DCHAR_IS_UINT32_T Set to 1 if DCHAR_T is uint32_t. */ /* Tell glibc's to provide a prototype for snprintf(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifndef VASNPRINTF # include #endif #ifndef IN_LIBINTL # include #endif /* Specification. */ #ifndef VASNPRINTF # if WIDE_CHAR_VERSION # include "vasnwprintf.h" # else # include "vasnprintf.h" # endif #endif #include /* localeconv() */ #include /* snprintf(), sprintf() */ #include /* abort(), malloc(), realloc(), free() */ #include /* memcpy(), strlen() */ #include /* errno */ #include /* CHAR_BIT */ #include /* DBL_MAX_EXP, LDBL_MAX_EXP */ #if HAVE_NL_LANGINFO # include #endif #ifndef VASNPRINTF # if WIDE_CHAR_VERSION # include "wprintf-parse.h" # else # include "printf-parse.h" # endif #endif /* Checked size_t computations. */ #include "xsize.h" #include "verify.h" #if (NEED_PRINTF_DOUBLE || NEED_PRINTF_LONG_DOUBLE) && !defined IN_LIBINTL # include # include "float+.h" #endif #if (NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE) && !defined IN_LIBINTL # include # include "isnand-nolibm.h" #endif #if (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE) && !defined IN_LIBINTL # include # include "isnanl-nolibm.h" # include "fpucw.h" #endif #if (NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_DOUBLE) && !defined IN_LIBINTL # include # include "isnand-nolibm.h" # include "printf-frexp.h" #endif #if (NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_LONG_DOUBLE) && !defined IN_LIBINTL # include # include "isnanl-nolibm.h" # include "printf-frexpl.h" # include "fpucw.h" #endif /* Default parameters. */ #ifndef VASNPRINTF # if WIDE_CHAR_VERSION # define VASNPRINTF vasnwprintf # define FCHAR_T wchar_t # define DCHAR_T wchar_t # define TCHAR_T wchar_t # define DCHAR_IS_TCHAR 1 # define DIRECTIVE wchar_t_directive # define DIRECTIVES wchar_t_directives # define PRINTF_PARSE wprintf_parse # define DCHAR_CPY wmemcpy # define DCHAR_SET wmemset # else # define VASNPRINTF vasnprintf # define FCHAR_T char # define DCHAR_T char # define TCHAR_T char # define DCHAR_IS_TCHAR 1 # define DIRECTIVE char_directive # define DIRECTIVES char_directives # define PRINTF_PARSE printf_parse # define DCHAR_CPY memcpy # define DCHAR_SET memset # endif #endif #if WIDE_CHAR_VERSION /* TCHAR_T is wchar_t. */ # define USE_SNPRINTF 1 # if HAVE_DECL__SNWPRINTF /* On Windows, the function swprintf() has a different signature than on Unix; we use the function _snwprintf() or - on mingw - snwprintf() instead. The mingw function snwprintf() has fewer bugs than the MSVCRT function _snwprintf(), so prefer that. */ # if defined __MINGW32__ # define SNPRINTF snwprintf # else # define SNPRINTF _snwprintf # endif # else /* Unix. */ # define SNPRINTF swprintf # endif #else /* TCHAR_T is char. */ /* Use snprintf if it exists under the name 'snprintf' or '_snprintf'. But don't use it on BeOS, since BeOS snprintf produces no output if the size argument is >= 0x3000000. Also don't use it on Linux libc5, since there snprintf with size = 1 writes any output without bounds, like sprintf. */ # if (HAVE_DECL__SNPRINTF || HAVE_SNPRINTF) && !defined __BEOS__ && !(__GNU_LIBRARY__ == 1) # define USE_SNPRINTF 1 # else # define USE_SNPRINTF 0 # endif # if HAVE_DECL__SNPRINTF /* Windows. The mingw function snprintf() has fewer bugs than the MSVCRT function _snprintf(), so prefer that. */ # if defined __MINGW32__ # define SNPRINTF snprintf /* Here we need to call the native snprintf, not rpl_snprintf. */ # undef snprintf # else # define SNPRINTF _snprintf # endif # else /* Unix. */ # define SNPRINTF snprintf /* Here we need to call the native snprintf, not rpl_snprintf. */ # undef snprintf # endif #endif /* Here we need to call the native sprintf, not rpl_sprintf. */ #undef sprintf /* GCC >= 4.0 with -Wall emits unjustified "... may be used uninitialized" warnings in this file. Use -Dlint to suppress them. */ #ifdef lint # define IF_LINT(Code) Code #else # define IF_LINT(Code) /* empty */ #endif /* Avoid some warnings from "gcc -Wshadow". This file doesn't use the exp() and remainder() functions. */ #undef exp #define exp expo #undef remainder #define remainder rem #if (!USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99) && !WIDE_CHAR_VERSION # if (HAVE_STRNLEN && !defined _AIX) # define local_strnlen strnlen # else # ifndef local_strnlen_defined # define local_strnlen_defined 1 static size_t local_strnlen (const char *string, size_t maxlen) { const char *end = memchr (string, '\0', maxlen); return end ? (size_t) (end - string) : maxlen; } # endif # endif #endif #if (((!USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99) && WIDE_CHAR_VERSION) || ((!USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || (NEED_PRINTF_DIRECTIVE_LS && !defined IN_LIBINTL)) && !WIDE_CHAR_VERSION && DCHAR_IS_TCHAR)) && HAVE_WCHAR_T # if HAVE_WCSLEN # define local_wcslen wcslen # else /* Solaris 2.5.1 has wcslen() in a separate library libw.so. To avoid a dependency towards this library, here is a local substitute. Define this substitute only once, even if this file is included twice in the same compilation unit. */ # ifndef local_wcslen_defined # define local_wcslen_defined 1 static size_t local_wcslen (const wchar_t *s) { const wchar_t *ptr; for (ptr = s; *ptr != (wchar_t) 0; ptr++) ; return ptr - s; } # endif # endif #endif #if (!USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99) && HAVE_WCHAR_T && WIDE_CHAR_VERSION # if HAVE_WCSNLEN # define local_wcsnlen wcsnlen # else # ifndef local_wcsnlen_defined # define local_wcsnlen_defined 1 static size_t local_wcsnlen (const wchar_t *s, size_t maxlen) { const wchar_t *ptr; for (ptr = s; maxlen > 0 && *ptr != (wchar_t) 0; ptr++, maxlen--) ; return ptr - s; } # endif # endif #endif #if (NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE || NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE) && !defined IN_LIBINTL /* Determine the decimal-point character according to the current locale. */ # ifndef decimal_point_char_defined # define decimal_point_char_defined 1 static char decimal_point_char (void) { const char *point; /* Determine it in a multithread-safe way. We know nl_langinfo is multithread-safe on glibc systems and Mac OS X systems, but is not required to be multithread-safe by POSIX. sprintf(), however, is multithread-safe. localeconv() is rarely multithread-safe. */ # if HAVE_NL_LANGINFO && (__GLIBC__ || defined __UCLIBC__ || (defined __APPLE__ && defined __MACH__)) point = nl_langinfo (RADIXCHAR); # elif 1 char pointbuf[5]; sprintf (pointbuf, "%#.0f", 1.0); point = &pointbuf[1]; # else point = localeconv () -> decimal_point; # endif /* The decimal point is always a single byte: either '.' or ','. */ return (point[0] != '\0' ? point[0] : '.'); } # endif #endif #if NEED_PRINTF_INFINITE_DOUBLE && !NEED_PRINTF_DOUBLE && !defined IN_LIBINTL /* Equivalent to !isfinite(x) || x == 0, but does not require libm. */ static int is_infinite_or_zero (double x) { return isnand (x) || x + x == x; } #endif #if NEED_PRINTF_INFINITE_LONG_DOUBLE && !NEED_PRINTF_LONG_DOUBLE && !defined IN_LIBINTL /* Equivalent to !isfinite(x) || x == 0, but does not require libm. */ static int is_infinite_or_zerol (long double x) { return isnanl (x) || x + x == x; } #endif #if (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_DOUBLE) && !defined IN_LIBINTL /* Converting 'long double' to decimal without rare rounding bugs requires real bignums. We use the naming conventions of GNU gmp, but vastly simpler (and slower) algorithms. */ typedef unsigned int mp_limb_t; # define GMP_LIMB_BITS 32 verify (sizeof (mp_limb_t) * CHAR_BIT == GMP_LIMB_BITS); typedef unsigned long long mp_twolimb_t; # define GMP_TWOLIMB_BITS 64 verify (sizeof (mp_twolimb_t) * CHAR_BIT == GMP_TWOLIMB_BITS); /* Representation of a bignum >= 0. */ typedef struct { size_t nlimbs; mp_limb_t *limbs; /* Bits in little-endian order, allocated with malloc(). */ } mpn_t; /* Compute the product of two bignums >= 0. Return the allocated memory in case of success, NULL in case of memory allocation failure. */ static void * multiply (mpn_t src1, mpn_t src2, mpn_t *dest) { const mp_limb_t *p1; const mp_limb_t *p2; size_t len1; size_t len2; if (src1.nlimbs <= src2.nlimbs) { len1 = src1.nlimbs; p1 = src1.limbs; len2 = src2.nlimbs; p2 = src2.limbs; } else { len1 = src2.nlimbs; p1 = src2.limbs; len2 = src1.nlimbs; p2 = src1.limbs; } /* Now 0 <= len1 <= len2. */ if (len1 == 0) { /* src1 or src2 is zero. */ dest->nlimbs = 0; dest->limbs = (mp_limb_t *) malloc (1); } else { /* Here 1 <= len1 <= len2. */ size_t dlen; mp_limb_t *dp; size_t k, i, j; dlen = len1 + len2; dp = (mp_limb_t *) malloc (dlen * sizeof (mp_limb_t)); if (dp == NULL) return NULL; for (k = len2; k > 0; ) dp[--k] = 0; for (i = 0; i < len1; i++) { mp_limb_t digit1 = p1[i]; mp_twolimb_t carry = 0; for (j = 0; j < len2; j++) { mp_limb_t digit2 = p2[j]; carry += (mp_twolimb_t) digit1 * (mp_twolimb_t) digit2; carry += dp[i + j]; dp[i + j] = (mp_limb_t) carry; carry = carry >> GMP_LIMB_BITS; } dp[i + len2] = (mp_limb_t) carry; } /* Normalise. */ while (dlen > 0 && dp[dlen - 1] == 0) dlen--; dest->nlimbs = dlen; dest->limbs = dp; } return dest->limbs; } /* Compute the quotient of a bignum a >= 0 and a bignum b > 0. a is written as a = q * b + r with 0 <= r < b. q is the quotient, r the remainder. Finally, round-to-even is performed: If r > b/2 or if r = b/2 and q is odd, q is incremented. Return the allocated memory in case of success, NULL in case of memory allocation failure. */ static void * divide (mpn_t a, mpn_t b, mpn_t *q) { /* Algorithm: First normalise a and b: a=[a[m-1],...,a[0]], b=[b[n-1],...,b[0]] with m>=0 and n>0 (in base beta = 2^GMP_LIMB_BITS). If m=n=1, perform a single-precision division: r:=0, j:=m, while j>0 do {Here (q[m-1]*beta^(m-1)+...+q[j]*beta^j) * b[0] + r*beta^j = = a[m-1]*beta^(m-1)+...+a[j]*beta^j und 0<=r=n>1, perform a multiple-precision division: We have a/b < beta^(m-n+1). s:=intDsize-1-(highest bit in b[n-1]), 0<=s=beta/2. For j=m-n,...,0: {Here 0 <= r < b*beta^(j+1).} Compute q* : q* := floor((r[j+n]*beta+r[j+n-1])/b[n-1]). In case of overflow (q* >= beta) set q* := beta-1. Compute c2 := ((r[j+n]*beta+r[j+n-1]) - q* * b[n-1])*beta + r[j+n-2] and c3 := b[n-2] * q*. {We have 0 <= c2 < 2*beta^2, even 0 <= c2 < beta^2 if no overflow occurred. Furthermore 0 <= c3 < beta^2. If there was overflow and r[j+n]*beta+r[j+n-1] - q* * b[n-1] >= beta, i.e. c2 >= beta^2, the next test can be skipped.} While c3 > c2, {Here 0 <= c2 < c3 < beta^2} Put q* := q* - 1, c2 := c2 + b[n-1]*beta, c3 := c3 - b[n-2]. If q* > 0: Put r := r - b * q* * beta^j. In detail: [r[n+j],...,r[j]] := [r[n+j],...,r[j]] - q* * [b[n-1],...,b[0]]. hence: u:=0, for i:=0 to n-1 do u := u + q* * b[i], r[j+i]:=r[j+i]-(u mod beta) (+ beta, if carry), u:=u div beta (+ 1, if carry in subtraction) r[n+j]:=r[n+j]-u. {Since always u = (q* * [b[i-1],...,b[0]] div beta^i) + 1 < q* + 1 <= beta, the carry u does not overflow.} If a negative carry occurs, put q* := q* - 1 and [r[n+j],...,r[j]] := [r[n+j],...,r[j]] + [0,b[n-1],...,b[0]]. Set q[j] := q*. Normalise [q[m-n],..,q[0]]; this yields the quotient q. Shift [r[n-1],...,r[0]] right by s bits and normalise; this yields the rest r. The room for q[j] can be allocated at the memory location of r[n+j]. Finally, round-to-even: Shift r left by 1 bit. If r > b or if r = b and q[0] is odd, q := q+1. */ const mp_limb_t *a_ptr = a.limbs; size_t a_len = a.nlimbs; const mp_limb_t *b_ptr = b.limbs; size_t b_len = b.nlimbs; mp_limb_t *roomptr; mp_limb_t *tmp_roomptr = NULL; mp_limb_t *q_ptr; size_t q_len; mp_limb_t *r_ptr; size_t r_len; /* Allocate room for a_len+2 digits. (Need a_len+1 digits for the real division and 1 more digit for the final rounding of q.) */ roomptr = (mp_limb_t *) malloc ((a_len + 2) * sizeof (mp_limb_t)); if (roomptr == NULL) return NULL; /* Normalise a. */ while (a_len > 0 && a_ptr[a_len - 1] == 0) a_len--; /* Normalise b. */ for (;;) { if (b_len == 0) /* Division by zero. */ abort (); if (b_ptr[b_len - 1] == 0) b_len--; else break; } /* Here m = a_len >= 0 and n = b_len > 0. */ if (a_len < b_len) { /* m beta^(m-2) <= a/b < beta^m */ r_ptr = roomptr; q_ptr = roomptr + 1; { mp_limb_t den = b_ptr[0]; mp_limb_t remainder = 0; const mp_limb_t *sourceptr = a_ptr + a_len; mp_limb_t *destptr = q_ptr + a_len; size_t count; for (count = a_len; count > 0; count--) { mp_twolimb_t num = ((mp_twolimb_t) remainder << GMP_LIMB_BITS) | *--sourceptr; *--destptr = num / den; remainder = num % den; } /* Normalise and store r. */ if (remainder > 0) { r_ptr[0] = remainder; r_len = 1; } else r_len = 0; /* Normalise q. */ q_len = a_len; if (q_ptr[q_len - 1] == 0) q_len--; } } else { /* n>1: multiple precision division. beta^(m-1) <= a < beta^m, beta^(n-1) <= b < beta^n ==> beta^(m-n-1) <= a/b < beta^(m-n+1). */ /* Determine s. */ size_t s; { mp_limb_t msd = b_ptr[b_len - 1]; /* = b[n-1], > 0 */ /* Determine s = GMP_LIMB_BITS - integer_length (msd). Code copied from gnulib's integer_length.c. */ # if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) s = __builtin_clz (msd); # else # if defined DBL_EXPBIT0_WORD && defined DBL_EXPBIT0_BIT if (GMP_LIMB_BITS <= DBL_MANT_BIT) { /* Use 'double' operations. Assumes an IEEE 754 'double' implementation. */ # define DBL_EXP_MASK ((DBL_MAX_EXP - DBL_MIN_EXP) | 7) # define DBL_EXP_BIAS (DBL_EXP_MASK / 2 - 1) # define NWORDS \ ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int)) union { double value; unsigned int word[NWORDS]; } m; /* Use a single integer to floating-point conversion. */ m.value = msd; s = GMP_LIMB_BITS - (((m.word[DBL_EXPBIT0_WORD] >> DBL_EXPBIT0_BIT) & DBL_EXP_MASK) - DBL_EXP_BIAS); } else # undef NWORDS # endif { s = 31; if (msd >= 0x10000) { msd = msd >> 16; s -= 16; } if (msd >= 0x100) { msd = msd >> 8; s -= 8; } if (msd >= 0x10) { msd = msd >> 4; s -= 4; } if (msd >= 0x4) { msd = msd >> 2; s -= 2; } if (msd >= 0x2) { msd = msd >> 1; s -= 1; } } # endif } /* 0 <= s < GMP_LIMB_BITS. Copy b, shifting it left by s bits. */ if (s > 0) { tmp_roomptr = (mp_limb_t *) malloc (b_len * sizeof (mp_limb_t)); if (tmp_roomptr == NULL) { free (roomptr); return NULL; } { const mp_limb_t *sourceptr = b_ptr; mp_limb_t *destptr = tmp_roomptr; mp_twolimb_t accu = 0; size_t count; for (count = b_len; count > 0; count--) { accu += (mp_twolimb_t) *sourceptr++ << s; *destptr++ = (mp_limb_t) accu; accu = accu >> GMP_LIMB_BITS; } /* accu must be zero, since that was how s was determined. */ if (accu != 0) abort (); } b_ptr = tmp_roomptr; } /* Copy a, shifting it left by s bits, yields r. Memory layout: At the beginning: r = roomptr[0..a_len], at the end: r = roomptr[0..b_len-1], q = roomptr[b_len..a_len] */ r_ptr = roomptr; if (s == 0) { memcpy (r_ptr, a_ptr, a_len * sizeof (mp_limb_t)); r_ptr[a_len] = 0; } else { const mp_limb_t *sourceptr = a_ptr; mp_limb_t *destptr = r_ptr; mp_twolimb_t accu = 0; size_t count; for (count = a_len; count > 0; count--) { accu += (mp_twolimb_t) *sourceptr++ << s; *destptr++ = (mp_limb_t) accu; accu = accu >> GMP_LIMB_BITS; } *destptr++ = (mp_limb_t) accu; } q_ptr = roomptr + b_len; q_len = a_len - b_len + 1; /* q will have m-n+1 limbs */ { size_t j = a_len - b_len; /* m-n */ mp_limb_t b_msd = b_ptr[b_len - 1]; /* b[n-1] */ mp_limb_t b_2msd = b_ptr[b_len - 2]; /* b[n-2] */ mp_twolimb_t b_msdd = /* b[n-1]*beta+b[n-2] */ ((mp_twolimb_t) b_msd << GMP_LIMB_BITS) | b_2msd; /* Division loop, traversed m-n+1 times. j counts down, b is unchanged, beta/2 <= b[n-1] < beta. */ for (;;) { mp_limb_t q_star; mp_limb_t c1; if (r_ptr[j + b_len] < b_msd) /* r[j+n] < b[n-1] ? */ { /* Divide r[j+n]*beta+r[j+n-1] by b[n-1], no overflow. */ mp_twolimb_t num = ((mp_twolimb_t) r_ptr[j + b_len] << GMP_LIMB_BITS) | r_ptr[j + b_len - 1]; q_star = num / b_msd; c1 = num % b_msd; } else { /* Overflow, hence r[j+n]*beta+r[j+n-1] >= beta*b[n-1]. */ q_star = (mp_limb_t)~(mp_limb_t)0; /* q* = beta-1 */ /* Test whether r[j+n]*beta+r[j+n-1] - (beta-1)*b[n-1] >= beta <==> r[j+n]*beta+r[j+n-1] + b[n-1] >= beta*b[n-1]+beta <==> b[n-1] < floor((r[j+n]*beta+r[j+n-1]+b[n-1])/beta) {<= beta !}. If yes, jump directly to the subtraction loop. (Otherwise, r[j+n]*beta+r[j+n-1] - (beta-1)*b[n-1] < beta <==> floor((r[j+n]*beta+r[j+n-1]+b[n-1])/beta) = b[n-1] ) */ if (r_ptr[j + b_len] > b_msd || (c1 = r_ptr[j + b_len - 1] + b_msd) < b_msd) /* r[j+n] >= b[n-1]+1 or r[j+n] = b[n-1] and the addition r[j+n-1]+b[n-1] gives a carry. */ goto subtract; } /* q_star = q*, c1 = (r[j+n]*beta+r[j+n-1]) - q* * b[n-1] (>=0, 0, decrease it by b[n-1]*beta+b[n-2]. Because of b[n-1]*beta+b[n-2] >= beta^2/2 this can happen only twice. */ if (c3 > c2) { q_star = q_star - 1; /* q* := q* - 1 */ if (c3 - c2 > b_msdd) q_star = q_star - 1; /* q* := q* - 1 */ } } if (q_star > 0) subtract: { /* Subtract r := r - b * q* * beta^j. */ mp_limb_t cr; { const mp_limb_t *sourceptr = b_ptr; mp_limb_t *destptr = r_ptr + j; mp_twolimb_t carry = 0; size_t count; for (count = b_len; count > 0; count--) { /* Here 0 <= carry <= q*. */ carry = carry + (mp_twolimb_t) q_star * (mp_twolimb_t) *sourceptr++ + (mp_limb_t) ~(*destptr); /* Here 0 <= carry <= beta*q* + beta-1. */ *destptr++ = ~(mp_limb_t) carry; carry = carry >> GMP_LIMB_BITS; /* <= q* */ } cr = (mp_limb_t) carry; } /* Subtract cr from r_ptr[j + b_len], then forget about r_ptr[j + b_len]. */ if (cr > r_ptr[j + b_len]) { /* Subtraction gave a carry. */ q_star = q_star - 1; /* q* := q* - 1 */ /* Add b back. */ { const mp_limb_t *sourceptr = b_ptr; mp_limb_t *destptr = r_ptr + j; mp_limb_t carry = 0; size_t count; for (count = b_len; count > 0; count--) { mp_limb_t source1 = *sourceptr++; mp_limb_t source2 = *destptr; *destptr++ = source1 + source2 + carry; carry = (carry ? source1 >= (mp_limb_t) ~source2 : source1 > (mp_limb_t) ~source2); } } /* Forget about the carry and about r[j+n]. */ } } /* q* is determined. Store it as q[j]. */ q_ptr[j] = q_star; if (j == 0) break; j--; } } r_len = b_len; /* Normalise q. */ if (q_ptr[q_len - 1] == 0) q_len--; # if 0 /* Not needed here, since we need r only to compare it with b/2, and b is shifted left by s bits. */ /* Shift r right by s bits. */ if (s > 0) { mp_limb_t ptr = r_ptr + r_len; mp_twolimb_t accu = 0; size_t count; for (count = r_len; count > 0; count--) { accu = (mp_twolimb_t) (mp_limb_t) accu << GMP_LIMB_BITS; accu += (mp_twolimb_t) *--ptr << (GMP_LIMB_BITS - s); *ptr = (mp_limb_t) (accu >> GMP_LIMB_BITS); } } # endif /* Normalise r. */ while (r_len > 0 && r_ptr[r_len - 1] == 0) r_len--; } /* Compare r << 1 with b. */ if (r_len > b_len) goto increment_q; { size_t i; for (i = b_len;;) { mp_limb_t r_i = (i <= r_len && i > 0 ? r_ptr[i - 1] >> (GMP_LIMB_BITS - 1) : 0) | (i < r_len ? r_ptr[i] << 1 : 0); mp_limb_t b_i = (i < b_len ? b_ptr[i] : 0); if (r_i > b_i) goto increment_q; if (r_i < b_i) goto keep_q; if (i == 0) break; i--; } } if (q_len > 0 && ((q_ptr[0] & 1) != 0)) /* q is odd. */ increment_q: { size_t i; for (i = 0; i < q_len; i++) if (++(q_ptr[i]) != 0) goto keep_q; q_ptr[q_len++] = 1; } keep_q: if (tmp_roomptr != NULL) free (tmp_roomptr); q->limbs = q_ptr; q->nlimbs = q_len; return roomptr; } /* Convert a bignum a >= 0, multiplied with 10^extra_zeroes, to decimal representation. Destroys the contents of a. Return the allocated memory - containing the decimal digits in low-to-high order, terminated with a NUL character - in case of success, NULL in case of memory allocation failure. */ static char * convert_to_decimal (mpn_t a, size_t extra_zeroes) { mp_limb_t *a_ptr = a.limbs; size_t a_len = a.nlimbs; /* 0.03345 is slightly larger than log(2)/(9*log(10)). */ size_t c_len = 9 * ((size_t)(a_len * (GMP_LIMB_BITS * 0.03345f)) + 1); char *c_ptr = (char *) malloc (xsum (c_len, extra_zeroes)); if (c_ptr != NULL) { char *d_ptr = c_ptr; for (; extra_zeroes > 0; extra_zeroes--) *d_ptr++ = '0'; while (a_len > 0) { /* Divide a by 10^9, in-place. */ mp_limb_t remainder = 0; mp_limb_t *ptr = a_ptr + a_len; size_t count; for (count = a_len; count > 0; count--) { mp_twolimb_t num = ((mp_twolimb_t) remainder << GMP_LIMB_BITS) | *--ptr; *ptr = num / 1000000000; remainder = num % 1000000000; } /* Store the remainder as 9 decimal digits. */ for (count = 9; count > 0; count--) { *d_ptr++ = '0' + (remainder % 10); remainder = remainder / 10; } /* Normalize a. */ if (a_ptr[a_len - 1] == 0) a_len--; } /* Remove leading zeroes. */ while (d_ptr > c_ptr && d_ptr[-1] == '0') d_ptr--; /* But keep at least one zero. */ if (d_ptr == c_ptr) *d_ptr++ = '0'; /* Terminate the string. */ *d_ptr = '\0'; } return c_ptr; } # if NEED_PRINTF_LONG_DOUBLE /* Assuming x is finite and >= 0: write x as x = 2^e * m, where m is a bignum. Return the allocated memory in case of success, NULL in case of memory allocation failure. */ static void * decode_long_double (long double x, int *ep, mpn_t *mp) { mpn_t m; int exp; long double y; size_t i; /* Allocate memory for result. */ m.nlimbs = (LDBL_MANT_BIT + GMP_LIMB_BITS - 1) / GMP_LIMB_BITS; m.limbs = (mp_limb_t *) malloc (m.nlimbs * sizeof (mp_limb_t)); if (m.limbs == NULL) return NULL; /* Split into exponential part and mantissa. */ y = frexpl (x, &exp); if (!(y >= 0.0L && y < 1.0L)) abort (); /* x = 2^exp * y = 2^(exp - LDBL_MANT_BIT) * (y * 2^LDBL_MANT_BIT), and the latter is an integer. */ /* Convert the mantissa (y * 2^LDBL_MANT_BIT) to a sequence of limbs. I'm not sure whether it's safe to cast a 'long double' value between 2^31 and 2^32 to 'unsigned int', therefore play safe and cast only 'long double' values between 0 and 2^16 (to 'unsigned int' or 'int', doesn't matter). */ # if (LDBL_MANT_BIT % GMP_LIMB_BITS) != 0 # if (LDBL_MANT_BIT % GMP_LIMB_BITS) > GMP_LIMB_BITS / 2 { mp_limb_t hi, lo; y *= (mp_limb_t) 1 << (LDBL_MANT_BIT % (GMP_LIMB_BITS / 2)); hi = (int) y; y -= hi; if (!(y >= 0.0L && y < 1.0L)) abort (); y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); lo = (int) y; y -= lo; if (!(y >= 0.0L && y < 1.0L)) abort (); m.limbs[LDBL_MANT_BIT / GMP_LIMB_BITS] = (hi << (GMP_LIMB_BITS / 2)) | lo; } # else { mp_limb_t d; y *= (mp_limb_t) 1 << (LDBL_MANT_BIT % GMP_LIMB_BITS); d = (int) y; y -= d; if (!(y >= 0.0L && y < 1.0L)) abort (); m.limbs[LDBL_MANT_BIT / GMP_LIMB_BITS] = d; } # endif # endif for (i = LDBL_MANT_BIT / GMP_LIMB_BITS; i > 0; ) { mp_limb_t hi, lo; y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); hi = (int) y; y -= hi; if (!(y >= 0.0L && y < 1.0L)) abort (); y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); lo = (int) y; y -= lo; if (!(y >= 0.0L && y < 1.0L)) abort (); m.limbs[--i] = (hi << (GMP_LIMB_BITS / 2)) | lo; } # if 0 /* On FreeBSD 6.1/x86, 'long double' numbers sometimes have excess precision. */ if (!(y == 0.0L)) abort (); # endif /* Normalise. */ while (m.nlimbs > 0 && m.limbs[m.nlimbs - 1] == 0) m.nlimbs--; *mp = m; *ep = exp - LDBL_MANT_BIT; return m.limbs; } # endif # if NEED_PRINTF_DOUBLE /* Assuming x is finite and >= 0: write x as x = 2^e * m, where m is a bignum. Return the allocated memory in case of success, NULL in case of memory allocation failure. */ static void * decode_double (double x, int *ep, mpn_t *mp) { mpn_t m; int exp; double y; size_t i; /* Allocate memory for result. */ m.nlimbs = (DBL_MANT_BIT + GMP_LIMB_BITS - 1) / GMP_LIMB_BITS; m.limbs = (mp_limb_t *) malloc (m.nlimbs * sizeof (mp_limb_t)); if (m.limbs == NULL) return NULL; /* Split into exponential part and mantissa. */ y = frexp (x, &exp); if (!(y >= 0.0 && y < 1.0)) abort (); /* x = 2^exp * y = 2^(exp - DBL_MANT_BIT) * (y * 2^DBL_MANT_BIT), and the latter is an integer. */ /* Convert the mantissa (y * 2^DBL_MANT_BIT) to a sequence of limbs. I'm not sure whether it's safe to cast a 'double' value between 2^31 and 2^32 to 'unsigned int', therefore play safe and cast only 'double' values between 0 and 2^16 (to 'unsigned int' or 'int', doesn't matter). */ # if (DBL_MANT_BIT % GMP_LIMB_BITS) != 0 # if (DBL_MANT_BIT % GMP_LIMB_BITS) > GMP_LIMB_BITS / 2 { mp_limb_t hi, lo; y *= (mp_limb_t) 1 << (DBL_MANT_BIT % (GMP_LIMB_BITS / 2)); hi = (int) y; y -= hi; if (!(y >= 0.0 && y < 1.0)) abort (); y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); lo = (int) y; y -= lo; if (!(y >= 0.0 && y < 1.0)) abort (); m.limbs[DBL_MANT_BIT / GMP_LIMB_BITS] = (hi << (GMP_LIMB_BITS / 2)) | lo; } # else { mp_limb_t d; y *= (mp_limb_t) 1 << (DBL_MANT_BIT % GMP_LIMB_BITS); d = (int) y; y -= d; if (!(y >= 0.0 && y < 1.0)) abort (); m.limbs[DBL_MANT_BIT / GMP_LIMB_BITS] = d; } # endif # endif for (i = DBL_MANT_BIT / GMP_LIMB_BITS; i > 0; ) { mp_limb_t hi, lo; y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); hi = (int) y; y -= hi; if (!(y >= 0.0 && y < 1.0)) abort (); y *= (mp_limb_t) 1 << (GMP_LIMB_BITS / 2); lo = (int) y; y -= lo; if (!(y >= 0.0 && y < 1.0)) abort (); m.limbs[--i] = (hi << (GMP_LIMB_BITS / 2)) | lo; } if (!(y == 0.0)) abort (); /* Normalise. */ while (m.nlimbs > 0 && m.limbs[m.nlimbs - 1] == 0) m.nlimbs--; *mp = m; *ep = exp - DBL_MANT_BIT; return m.limbs; } # endif /* Assuming x = 2^e * m is finite and >= 0, and n is an integer: Returns the decimal representation of round (x * 10^n). Return the allocated memory - containing the decimal digits in low-to-high order, terminated with a NUL character - in case of success, NULL in case of memory allocation failure. */ static char * scale10_round_decimal_decoded (int e, mpn_t m, void *memory, int n) { int s; size_t extra_zeroes; unsigned int abs_n; unsigned int abs_s; mp_limb_t *pow5_ptr; size_t pow5_len; unsigned int s_limbs; unsigned int s_bits; mpn_t pow5; mpn_t z; void *z_memory; char *digits; if (memory == NULL) return NULL; /* x = 2^e * m, hence y = round (2^e * 10^n * m) = round (2^(e+n) * 5^n * m) = round (2^s * 5^n * m). */ s = e + n; extra_zeroes = 0; /* Factor out a common power of 10 if possible. */ if (s > 0 && n > 0) { extra_zeroes = (s < n ? s : n); s -= extra_zeroes; n -= extra_zeroes; } /* Here y = round (2^s * 5^n * m) * 10^extra_zeroes. Before converting to decimal, we need to compute z = round (2^s * 5^n * m). */ /* Compute 5^|n|, possibly shifted by |s| bits if n and s have the same sign. 2.322 is slightly larger than log(5)/log(2). */ abs_n = (n >= 0 ? n : -n); abs_s = (s >= 0 ? s : -s); pow5_ptr = (mp_limb_t *) malloc (((int)(abs_n * (2.322f / GMP_LIMB_BITS)) + 1 + abs_s / GMP_LIMB_BITS + 1) * sizeof (mp_limb_t)); if (pow5_ptr == NULL) { free (memory); return NULL; } /* Initialize with 1. */ pow5_ptr[0] = 1; pow5_len = 1; /* Multiply with 5^|n|. */ if (abs_n > 0) { static mp_limb_t const small_pow5[13 + 1] = { 1, 5, 25, 125, 625, 3125, 15625, 78125, 390625, 1953125, 9765625, 48828125, 244140625, 1220703125 }; unsigned int n13; for (n13 = 0; n13 <= abs_n; n13 += 13) { mp_limb_t digit1 = small_pow5[n13 + 13 <= abs_n ? 13 : abs_n - n13]; size_t j; mp_twolimb_t carry = 0; for (j = 0; j < pow5_len; j++) { mp_limb_t digit2 = pow5_ptr[j]; carry += (mp_twolimb_t) digit1 * (mp_twolimb_t) digit2; pow5_ptr[j] = (mp_limb_t) carry; carry = carry >> GMP_LIMB_BITS; } if (carry > 0) pow5_ptr[pow5_len++] = (mp_limb_t) carry; } } s_limbs = abs_s / GMP_LIMB_BITS; s_bits = abs_s % GMP_LIMB_BITS; if (n >= 0 ? s >= 0 : s <= 0) { /* Multiply with 2^|s|. */ if (s_bits > 0) { mp_limb_t *ptr = pow5_ptr; mp_twolimb_t accu = 0; size_t count; for (count = pow5_len; count > 0; count--) { accu += (mp_twolimb_t) *ptr << s_bits; *ptr++ = (mp_limb_t) accu; accu = accu >> GMP_LIMB_BITS; } if (accu > 0) { *ptr = (mp_limb_t) accu; pow5_len++; } } if (s_limbs > 0) { size_t count; for (count = pow5_len; count > 0;) { count--; pow5_ptr[s_limbs + count] = pow5_ptr[count]; } for (count = s_limbs; count > 0;) { count--; pow5_ptr[count] = 0; } pow5_len += s_limbs; } pow5.limbs = pow5_ptr; pow5.nlimbs = pow5_len; if (n >= 0) { /* Multiply m with pow5. No division needed. */ z_memory = multiply (m, pow5, &z); } else { /* Divide m by pow5 and round. */ z_memory = divide (m, pow5, &z); } } else { pow5.limbs = pow5_ptr; pow5.nlimbs = pow5_len; if (n >= 0) { /* n >= 0, s < 0. Multiply m with pow5, then divide by 2^|s|. */ mpn_t numerator; mpn_t denominator; void *tmp_memory; tmp_memory = multiply (m, pow5, &numerator); if (tmp_memory == NULL) { free (pow5_ptr); free (memory); return NULL; } /* Construct 2^|s|. */ { mp_limb_t *ptr = pow5_ptr + pow5_len; size_t i; for (i = 0; i < s_limbs; i++) ptr[i] = 0; ptr[s_limbs] = (mp_limb_t) 1 << s_bits; denominator.limbs = ptr; denominator.nlimbs = s_limbs + 1; } z_memory = divide (numerator, denominator, &z); free (tmp_memory); } else { /* n < 0, s > 0. Multiply m with 2^s, then divide by pow5. */ mpn_t numerator; mp_limb_t *num_ptr; num_ptr = (mp_limb_t *) malloc ((m.nlimbs + s_limbs + 1) * sizeof (mp_limb_t)); if (num_ptr == NULL) { free (pow5_ptr); free (memory); return NULL; } { mp_limb_t *destptr = num_ptr; { size_t i; for (i = 0; i < s_limbs; i++) *destptr++ = 0; } if (s_bits > 0) { const mp_limb_t *sourceptr = m.limbs; mp_twolimb_t accu = 0; size_t count; for (count = m.nlimbs; count > 0; count--) { accu += (mp_twolimb_t) *sourceptr++ << s_bits; *destptr++ = (mp_limb_t) accu; accu = accu >> GMP_LIMB_BITS; } if (accu > 0) *destptr++ = (mp_limb_t) accu; } else { const mp_limb_t *sourceptr = m.limbs; size_t count; for (count = m.nlimbs; count > 0; count--) *destptr++ = *sourceptr++; } numerator.limbs = num_ptr; numerator.nlimbs = destptr - num_ptr; } z_memory = divide (numerator, pow5, &z); free (num_ptr); } } free (pow5_ptr); free (memory); /* Here y = round (x * 10^n) = z * 10^extra_zeroes. */ if (z_memory == NULL) return NULL; digits = convert_to_decimal (z, extra_zeroes); free (z_memory); return digits; } # if NEED_PRINTF_LONG_DOUBLE /* Assuming x is finite and >= 0, and n is an integer: Returns the decimal representation of round (x * 10^n). Return the allocated memory - containing the decimal digits in low-to-high order, terminated with a NUL character - in case of success, NULL in case of memory allocation failure. */ static char * scale10_round_decimal_long_double (long double x, int n) { int e IF_LINT(= 0); mpn_t m; void *memory = decode_long_double (x, &e, &m); return scale10_round_decimal_decoded (e, m, memory, n); } # endif # if NEED_PRINTF_DOUBLE /* Assuming x is finite and >= 0, and n is an integer: Returns the decimal representation of round (x * 10^n). Return the allocated memory - containing the decimal digits in low-to-high order, terminated with a NUL character - in case of success, NULL in case of memory allocation failure. */ static char * scale10_round_decimal_double (double x, int n) { int e IF_LINT(= 0); mpn_t m; void *memory = decode_double (x, &e, &m); return scale10_round_decimal_decoded (e, m, memory, n); } # endif # if NEED_PRINTF_LONG_DOUBLE /* Assuming x is finite and > 0: Return an approximation for n with 10^n <= x < 10^(n+1). The approximation is usually the right n, but may be off by 1 sometimes. */ static int floorlog10l (long double x) { int exp; long double y; double z; double l; /* Split into exponential part and mantissa. */ y = frexpl (x, &exp); if (!(y >= 0.0L && y < 1.0L)) abort (); if (y == 0.0L) return INT_MIN; if (y < 0.5L) { while (y < (1.0L / (1 << (GMP_LIMB_BITS / 2)) / (1 << (GMP_LIMB_BITS / 2)))) { y *= 1.0L * (1 << (GMP_LIMB_BITS / 2)) * (1 << (GMP_LIMB_BITS / 2)); exp -= GMP_LIMB_BITS; } if (y < (1.0L / (1 << 16))) { y *= 1.0L * (1 << 16); exp -= 16; } if (y < (1.0L / (1 << 8))) { y *= 1.0L * (1 << 8); exp -= 8; } if (y < (1.0L / (1 << 4))) { y *= 1.0L * (1 << 4); exp -= 4; } if (y < (1.0L / (1 << 2))) { y *= 1.0L * (1 << 2); exp -= 2; } if (y < (1.0L / (1 << 1))) { y *= 1.0L * (1 << 1); exp -= 1; } } if (!(y >= 0.5L && y < 1.0L)) abort (); /* Compute an approximation for l = log2(x) = exp + log2(y). */ l = exp; z = y; if (z < 0.70710678118654752444) { z *= 1.4142135623730950488; l -= 0.5; } if (z < 0.8408964152537145431) { z *= 1.1892071150027210667; l -= 0.25; } if (z < 0.91700404320467123175) { z *= 1.0905077326652576592; l -= 0.125; } if (z < 0.9576032806985736469) { z *= 1.0442737824274138403; l -= 0.0625; } /* Now 0.95 <= z <= 1.01. */ z = 1 - z; /* log2(1-z) = 1/log(2) * (- z - z^2/2 - z^3/3 - z^4/4 - ...) Four terms are enough to get an approximation with error < 10^-7. */ l -= 1.4426950408889634074 * z * (1.0 + z * (0.5 + z * ((1.0 / 3) + z * 0.25))); /* Finally multiply with log(2)/log(10), yields an approximation for log10(x). */ l *= 0.30102999566398119523; /* Round down to the next integer. */ return (int) l + (l < 0 ? -1 : 0); } # endif # if NEED_PRINTF_DOUBLE /* Assuming x is finite and > 0: Return an approximation for n with 10^n <= x < 10^(n+1). The approximation is usually the right n, but may be off by 1 sometimes. */ static int floorlog10 (double x) { int exp; double y; double z; double l; /* Split into exponential part and mantissa. */ y = frexp (x, &exp); if (!(y >= 0.0 && y < 1.0)) abort (); if (y == 0.0) return INT_MIN; if (y < 0.5) { while (y < (1.0 / (1 << (GMP_LIMB_BITS / 2)) / (1 << (GMP_LIMB_BITS / 2)))) { y *= 1.0 * (1 << (GMP_LIMB_BITS / 2)) * (1 << (GMP_LIMB_BITS / 2)); exp -= GMP_LIMB_BITS; } if (y < (1.0 / (1 << 16))) { y *= 1.0 * (1 << 16); exp -= 16; } if (y < (1.0 / (1 << 8))) { y *= 1.0 * (1 << 8); exp -= 8; } if (y < (1.0 / (1 << 4))) { y *= 1.0 * (1 << 4); exp -= 4; } if (y < (1.0 / (1 << 2))) { y *= 1.0 * (1 << 2); exp -= 2; } if (y < (1.0 / (1 << 1))) { y *= 1.0 * (1 << 1); exp -= 1; } } if (!(y >= 0.5 && y < 1.0)) abort (); /* Compute an approximation for l = log2(x) = exp + log2(y). */ l = exp; z = y; if (z < 0.70710678118654752444) { z *= 1.4142135623730950488; l -= 0.5; } if (z < 0.8408964152537145431) { z *= 1.1892071150027210667; l -= 0.25; } if (z < 0.91700404320467123175) { z *= 1.0905077326652576592; l -= 0.125; } if (z < 0.9576032806985736469) { z *= 1.0442737824274138403; l -= 0.0625; } /* Now 0.95 <= z <= 1.01. */ z = 1 - z; /* log2(1-z) = 1/log(2) * (- z - z^2/2 - z^3/3 - z^4/4 - ...) Four terms are enough to get an approximation with error < 10^-7. */ l -= 1.4426950408889634074 * z * (1.0 + z * (0.5 + z * ((1.0 / 3) + z * 0.25))); /* Finally multiply with log(2)/log(10), yields an approximation for log10(x). */ l *= 0.30102999566398119523; /* Round down to the next integer. */ return (int) l + (l < 0 ? -1 : 0); } # endif /* Tests whether a string of digits consists of exactly PRECISION zeroes and a single '1' digit. */ static int is_borderline (const char *digits, size_t precision) { for (; precision > 0; precision--, digits++) if (*digits != '0') return 0; if (*digits != '1') return 0; digits++; return *digits == '\0'; } #endif #if !USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 /* Use a different function name, to make it possible that the 'wchar_t' parametrization and the 'char' parametrization get compiled in the same translation unit. */ # if WIDE_CHAR_VERSION # define MAX_ROOM_NEEDED wmax_room_needed # else # define MAX_ROOM_NEEDED max_room_needed # endif /* Returns the number of TCHAR_T units needed as temporary space for the result of sprintf or SNPRINTF of a single conversion directive. */ static size_t MAX_ROOM_NEEDED (const arguments *ap, size_t arg_index, FCHAR_T conversion, arg_type type, int flags, size_t width, int has_precision, size_t precision, int pad_ourselves) { size_t tmp_length; switch (conversion) { case 'd': case 'i': case 'u': # if HAVE_LONG_LONG_INT if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.30103 /* binary -> decimal */ ) + 1; /* turn floor into ceil */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.30103 /* binary -> decimal */ ) + 1; /* turn floor into ceil */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.30103 /* binary -> decimal */ ) + 1; /* turn floor into ceil */ if (tmp_length < precision) tmp_length = precision; /* Multiply by 2, as an estimate for FLAG_GROUP. */ tmp_length = xsum (tmp_length, tmp_length); /* Add 1, to account for a leading sign. */ tmp_length = xsum (tmp_length, 1); break; case 'o': # if HAVE_LONG_LONG_INT if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1; /* turn floor into ceil */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1; /* turn floor into ceil */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1; /* turn floor into ceil */ if (tmp_length < precision) tmp_length = precision; /* Add 1, to account for a leading sign. */ tmp_length = xsum (tmp_length, 1); break; case 'x': case 'X': # if HAVE_LONG_LONG_INT if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1; /* turn floor into ceil */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1; /* turn floor into ceil */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1; /* turn floor into ceil */ if (tmp_length < precision) tmp_length = precision; /* Add 2, to account for a leading sign or alternate form. */ tmp_length = xsum (tmp_length, 2); break; case 'f': case 'F': if (type == TYPE_LONGDOUBLE) tmp_length = (unsigned int) (LDBL_MAX_EXP * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 10; /* sign, decimal point etc. */ else tmp_length = (unsigned int) (DBL_MAX_EXP * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 10; /* sign, decimal point etc. */ tmp_length = xsum (tmp_length, precision); break; case 'e': case 'E': case 'g': case 'G': tmp_length = 12; /* sign, decimal point, exponent etc. */ tmp_length = xsum (tmp_length, precision); break; case 'a': case 'A': if (type == TYPE_LONGDOUBLE) tmp_length = (unsigned int) (LDBL_DIG * 0.831 /* decimal -> hexadecimal */ ) + 1; /* turn floor into ceil */ else tmp_length = (unsigned int) (DBL_DIG * 0.831 /* decimal -> hexadecimal */ ) + 1; /* turn floor into ceil */ if (tmp_length < precision) tmp_length = precision; /* Account for sign, decimal point etc. */ tmp_length = xsum (tmp_length, 12); break; case 'c': # if HAVE_WINT_T && !WIDE_CHAR_VERSION if (type == TYPE_WIDE_CHAR) tmp_length = MB_CUR_MAX; else # endif tmp_length = 1; break; case 's': # if HAVE_WCHAR_T if (type == TYPE_WIDE_STRING) { # if WIDE_CHAR_VERSION /* ISO C says about %ls in fwprintf: "If the precision is not specified or is greater than the size of the array, the array shall contain a null wide character." So if there is a precision, we must not use wcslen. */ const wchar_t *arg = ap->arg[arg_index].a.a_wide_string; if (has_precision) tmp_length = local_wcsnlen (arg, precision); else tmp_length = local_wcslen (arg); # else /* ISO C says about %ls in fprintf: "If a precision is specified, no more than that many bytes are written (including shift sequences, if any), and the array shall contain a null wide character if, to equal the multibyte character sequence length given by the precision, the function would need to access a wide character one past the end of the array." So if there is a precision, we must not use wcslen. */ /* This case has already been handled separately in VASNPRINTF. */ abort (); # endif } else # endif { # if WIDE_CHAR_VERSION /* ISO C says about %s in fwprintf: "If the precision is not specified or is greater than the size of the converted array, the converted array shall contain a null wide character." So if there is a precision, we must not use strlen. */ /* This case has already been handled separately in VASNPRINTF. */ abort (); # else /* ISO C says about %s in fprintf: "If the precision is not specified or greater than the size of the array, the array shall contain a null character." So if there is a precision, we must not use strlen. */ const char *arg = ap->arg[arg_index].a.a_string; if (has_precision) tmp_length = local_strnlen (arg, precision); else tmp_length = strlen (arg); # endif } break; case 'p': tmp_length = (unsigned int) (sizeof (void *) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1 /* turn floor into ceil */ + 2; /* account for leading 0x */ break; default: abort (); } if (!pad_ourselves) { # if ENABLE_UNISTDIO /* Padding considers the number of characters, therefore the number of elements after padding may be > max (tmp_length, width) but is certainly <= tmp_length + width. */ tmp_length = xsum (tmp_length, width); # else /* Padding considers the number of elements, says POSIX. */ if (tmp_length < width) tmp_length = width; # endif } tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ return tmp_length; } #endif DCHAR_T * VASNPRINTF (DCHAR_T *resultbuf, size_t *lengthp, const FCHAR_T *format, va_list args) { DIRECTIVES d; arguments a; if (PRINTF_PARSE (format, &d, &a) < 0) /* errno is already set. */ return NULL; #define CLEANUP() \ if (d.dir != d.direct_alloc_dir) \ free (d.dir); \ if (a.arg != a.direct_alloc_arg) \ free (a.arg); if (PRINTF_FETCHARGS (args, &a) < 0) { CLEANUP (); errno = EINVAL; return NULL; } { size_t buf_neededlength; TCHAR_T *buf; TCHAR_T *buf_malloced; const FCHAR_T *cp; size_t i; DIRECTIVE *dp; /* Output string accumulator. */ DCHAR_T *result; size_t allocated; size_t length; /* Allocate a small buffer that will hold a directive passed to sprintf or snprintf. */ buf_neededlength = xsum4 (7, d.max_width_length, d.max_precision_length, 6); #if HAVE_ALLOCA if (buf_neededlength < 4000 / sizeof (TCHAR_T)) { buf = (TCHAR_T *) alloca (buf_neededlength * sizeof (TCHAR_T)); buf_malloced = NULL; } else #endif { size_t buf_memsize = xtimes (buf_neededlength, sizeof (TCHAR_T)); if (size_overflow_p (buf_memsize)) goto out_of_memory_1; buf = (TCHAR_T *) malloc (buf_memsize); if (buf == NULL) goto out_of_memory_1; buf_malloced = buf; } if (resultbuf != NULL) { result = resultbuf; allocated = *lengthp; } else { result = NULL; allocated = 0; } length = 0; /* Invariants: result is either == resultbuf or == NULL or malloc-allocated. If length > 0, then result != NULL. */ /* Ensures that allocated >= needed. Aborts through a jump to out_of_memory if needed is SIZE_MAX or otherwise too big. */ #define ENSURE_ALLOCATION(needed) \ if ((needed) > allocated) \ { \ size_t memory_size; \ DCHAR_T *memory; \ \ allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ if ((needed) > allocated) \ allocated = (needed); \ memory_size = xtimes (allocated, sizeof (DCHAR_T)); \ if (size_overflow_p (memory_size)) \ goto out_of_memory; \ if (result == resultbuf || result == NULL) \ memory = (DCHAR_T *) malloc (memory_size); \ else \ memory = (DCHAR_T *) realloc (result, memory_size); \ if (memory == NULL) \ goto out_of_memory; \ if (result == resultbuf && length > 0) \ DCHAR_CPY (memory, result, length); \ result = memory; \ } for (cp = format, i = 0, dp = &d.dir[0]; ; cp = dp->dir_end, i++, dp++) { if (cp != dp->dir_start) { size_t n = dp->dir_start - cp; size_t augmented_length = xsum (length, n); ENSURE_ALLOCATION (augmented_length); /* This copies a piece of FCHAR_T[] into a DCHAR_T[]. Here we need that the format string contains only ASCII characters if FCHAR_T and DCHAR_T are not the same type. */ if (sizeof (FCHAR_T) == sizeof (DCHAR_T)) { DCHAR_CPY (result + length, (const DCHAR_T *) cp, n); length = augmented_length; } else { do result[length++] = (unsigned char) *cp++; while (--n > 0); } } if (i == d.count) break; /* Execute a single directive. */ if (dp->conversion == '%') { size_t augmented_length; if (!(dp->arg_index == ARG_NONE)) abort (); augmented_length = xsum (length, 1); ENSURE_ALLOCATION (augmented_length); result[length] = '%'; length = augmented_length; } else { if (!(dp->arg_index != ARG_NONE)) abort (); if (dp->conversion == 'n') { switch (a.arg[dp->arg_index].type) { case TYPE_COUNT_SCHAR_POINTER: *a.arg[dp->arg_index].a.a_count_schar_pointer = length; break; case TYPE_COUNT_SHORT_POINTER: *a.arg[dp->arg_index].a.a_count_short_pointer = length; break; case TYPE_COUNT_INT_POINTER: *a.arg[dp->arg_index].a.a_count_int_pointer = length; break; case TYPE_COUNT_LONGINT_POINTER: *a.arg[dp->arg_index].a.a_count_longint_pointer = length; break; #if HAVE_LONG_LONG_INT case TYPE_COUNT_LONGLONGINT_POINTER: *a.arg[dp->arg_index].a.a_count_longlongint_pointer = length; break; #endif default: abort (); } } #if ENABLE_UNISTDIO /* The unistdio extensions. */ else if (dp->conversion == 'U') { arg_type type = a.arg[dp->arg_index].type; int flags = dp->flags; int has_width; size_t width; int has_precision; size_t precision; has_width = 0; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; if (arg < 0) { /* "A negative field width is taken as a '-' flag followed by a positive field width." */ flags |= FLAG_LEFT; width = (unsigned int) (-arg); } else width = arg; } else { const FCHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } has_width = 1; } has_precision = 0; precision = 0; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; /* "A negative precision is taken as if the precision were omitted." */ if (arg >= 0) { precision = arg; has_precision = 1; } } else { const FCHAR_T *digitp = dp->precision_start + 1; precision = 0; while (digitp != dp->precision_end) precision = xsum (xtimes (precision, 10), *digitp++ - '0'); has_precision = 1; } } switch (type) { case TYPE_U8_STRING: { const uint8_t *arg = a.arg[dp->arg_index].a.a_u8_string; const uint8_t *arg_end; size_t characters; if (has_precision) { /* Use only PRECISION characters, from the left. */ arg_end = arg; characters = 0; for (; precision > 0; precision--) { int count = u8_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else if (has_width) { /* Use the entire string, and count the number of characters. */ arg_end = arg; characters = 0; for (;;) { int count = u8_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else { /* Use the entire string. */ arg_end = arg + u8_strlen (arg); /* The number of characters doesn't matter. */ characters = 0; } if (has_width && width > characters && !(dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } # if DCHAR_IS_UINT8_T { size_t n = arg_end - arg; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_CPY (result + length, arg, n); length += n; } # else { /* Convert. */ DCHAR_T *converted = result + length; size_t converted_len = allocated - length; # if DCHAR_IS_TCHAR /* Convert from UTF-8 to locale encoding. */ converted = u8_conv_to_encoding (locale_charset (), iconveh_question_mark, arg, arg_end - arg, NULL, converted, &converted_len); # else /* Convert from UTF-8 to UTF-16/UTF-32. */ converted = U8_TO_DCHAR (arg, arg_end - arg, converted, &converted_len); # endif if (converted == NULL) { int saved_errno = errno; if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = saved_errno; return NULL; } if (converted != result + length) { ENSURE_ALLOCATION (xsum (length, converted_len)); DCHAR_CPY (result + length, converted, converted_len); free (converted); } length += converted_len; } # endif if (has_width && width > characters && (dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } } break; case TYPE_U16_STRING: { const uint16_t *arg = a.arg[dp->arg_index].a.a_u16_string; const uint16_t *arg_end; size_t characters; if (has_precision) { /* Use only PRECISION characters, from the left. */ arg_end = arg; characters = 0; for (; precision > 0; precision--) { int count = u16_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else if (has_width) { /* Use the entire string, and count the number of characters. */ arg_end = arg; characters = 0; for (;;) { int count = u16_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else { /* Use the entire string. */ arg_end = arg + u16_strlen (arg); /* The number of characters doesn't matter. */ characters = 0; } if (has_width && width > characters && !(dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } # if DCHAR_IS_UINT16_T { size_t n = arg_end - arg; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_CPY (result + length, arg, n); length += n; } # else { /* Convert. */ DCHAR_T *converted = result + length; size_t converted_len = allocated - length; # if DCHAR_IS_TCHAR /* Convert from UTF-16 to locale encoding. */ converted = u16_conv_to_encoding (locale_charset (), iconveh_question_mark, arg, arg_end - arg, NULL, converted, &converted_len); # else /* Convert from UTF-16 to UTF-8/UTF-32. */ converted = U16_TO_DCHAR (arg, arg_end - arg, converted, &converted_len); # endif if (converted == NULL) { int saved_errno = errno; if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = saved_errno; return NULL; } if (converted != result + length) { ENSURE_ALLOCATION (xsum (length, converted_len)); DCHAR_CPY (result + length, converted, converted_len); free (converted); } length += converted_len; } # endif if (has_width && width > characters && (dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } } break; case TYPE_U32_STRING: { const uint32_t *arg = a.arg[dp->arg_index].a.a_u32_string; const uint32_t *arg_end; size_t characters; if (has_precision) { /* Use only PRECISION characters, from the left. */ arg_end = arg; characters = 0; for (; precision > 0; precision--) { int count = u32_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else if (has_width) { /* Use the entire string, and count the number of characters. */ arg_end = arg; characters = 0; for (;;) { int count = u32_strmblen (arg_end); if (count == 0) break; if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else { /* Use the entire string. */ arg_end = arg + u32_strlen (arg); /* The number of characters doesn't matter. */ characters = 0; } if (has_width && width > characters && !(dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } # if DCHAR_IS_UINT32_T { size_t n = arg_end - arg; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_CPY (result + length, arg, n); length += n; } # else { /* Convert. */ DCHAR_T *converted = result + length; size_t converted_len = allocated - length; # if DCHAR_IS_TCHAR /* Convert from UTF-32 to locale encoding. */ converted = u32_conv_to_encoding (locale_charset (), iconveh_question_mark, arg, arg_end - arg, NULL, converted, &converted_len); # else /* Convert from UTF-32 to UTF-8/UTF-16. */ converted = U32_TO_DCHAR (arg, arg_end - arg, converted, &converted_len); # endif if (converted == NULL) { int saved_errno = errno; if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = saved_errno; return NULL; } if (converted != result + length) { ENSURE_ALLOCATION (xsum (length, converted_len)); DCHAR_CPY (result + length, converted, converted_len); free (converted); } length += converted_len; } # endif if (has_width && width > characters && (dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } } break; default: abort (); } } #endif #if (!USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || (NEED_PRINTF_DIRECTIVE_LS && !defined IN_LIBINTL)) && HAVE_WCHAR_T else if (dp->conversion == 's' # if WIDE_CHAR_VERSION && a.arg[dp->arg_index].type != TYPE_WIDE_STRING # else && a.arg[dp->arg_index].type == TYPE_WIDE_STRING # endif ) { /* The normal handling of the 's' directive below requires allocating a temporary buffer. The determination of its length (tmp_length), in the case when a precision is specified, below requires a conversion between a char[] string and a wchar_t[] wide string. It could be done, but we have no guarantee that the implementation of sprintf will use the exactly same algorithm. Without this guarantee, it is possible to have buffer overrun bugs. In order to avoid such bugs, we implement the entire processing of the 's' directive ourselves. */ int flags = dp->flags; int has_width; size_t width; int has_precision; size_t precision; has_width = 0; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; if (arg < 0) { /* "A negative field width is taken as a '-' flag followed by a positive field width." */ flags |= FLAG_LEFT; width = (unsigned int) (-arg); } else width = arg; } else { const FCHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } has_width = 1; } has_precision = 0; precision = 6; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; /* "A negative precision is taken as if the precision were omitted." */ if (arg >= 0) { precision = arg; has_precision = 1; } } else { const FCHAR_T *digitp = dp->precision_start + 1; precision = 0; while (digitp != dp->precision_end) precision = xsum (xtimes (precision, 10), *digitp++ - '0'); has_precision = 1; } } # if WIDE_CHAR_VERSION /* %s in vasnwprintf. See the specification of fwprintf. */ { const char *arg = a.arg[dp->arg_index].a.a_string; const char *arg_end; size_t characters; if (has_precision) { /* Use only as many bytes as needed to produce PRECISION wide characters, from the left. */ # if HAVE_MBRTOWC mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif arg_end = arg; characters = 0; for (; precision > 0; precision--) { int count; # if HAVE_MBRTOWC count = mbrlen (arg_end, MB_CUR_MAX, &state); # else count = mblen (arg_end, MB_CUR_MAX); # endif if (count == 0) /* Found the terminating NUL. */ break; if (count < 0) { /* Invalid or incomplete multibyte character. */ if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else if (has_width) { /* Use the entire string, and count the number of wide characters. */ # if HAVE_MBRTOWC mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif arg_end = arg; characters = 0; for (;;) { int count; # if HAVE_MBRTOWC count = mbrlen (arg_end, MB_CUR_MAX, &state); # else count = mblen (arg_end, MB_CUR_MAX); # endif if (count == 0) /* Found the terminating NUL. */ break; if (count < 0) { /* Invalid or incomplete multibyte character. */ if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end += count; characters++; } } else { /* Use the entire string. */ arg_end = arg + strlen (arg); /* The number of characters doesn't matter. */ characters = 0; } if (has_width && width > characters && !(dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } if (has_precision || has_width) { /* We know the number of wide characters in advance. */ size_t remaining; # if HAVE_MBRTOWC mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif ENSURE_ALLOCATION (xsum (length, characters)); for (remaining = characters; remaining > 0; remaining--) { wchar_t wc; int count; # if HAVE_MBRTOWC count = mbrtowc (&wc, arg, arg_end - arg, &state); # else count = mbtowc (&wc, arg, arg_end - arg); # endif if (count <= 0) /* mbrtowc not consistent with mbrlen, or mbtowc not consistent with mblen. */ abort (); result[length++] = wc; arg += count; } if (!(arg == arg_end)) abort (); } else { # if HAVE_MBRTOWC mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif while (arg < arg_end) { wchar_t wc; int count; # if HAVE_MBRTOWC count = mbrtowc (&wc, arg, arg_end - arg, &state); # else count = mbtowc (&wc, arg, arg_end - arg); # endif if (count <= 0) /* mbrtowc not consistent with mbrlen, or mbtowc not consistent with mblen. */ abort (); ENSURE_ALLOCATION (xsum (length, 1)); result[length++] = wc; arg += count; } } if (has_width && width > characters && (dp->flags & FLAG_LEFT)) { size_t n = width - characters; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } } # else /* %ls in vasnprintf. See the specification of fprintf. */ { const wchar_t *arg = a.arg[dp->arg_index].a.a_wide_string; const wchar_t *arg_end; size_t characters; # if !DCHAR_IS_TCHAR /* This code assumes that TCHAR_T is 'char'. */ verify (sizeof (TCHAR_T) == 1); TCHAR_T *tmpsrc; DCHAR_T *tmpdst; size_t tmpdst_len; # endif size_t w; if (has_precision) { /* Use only as many wide characters as needed to produce at most PRECISION bytes, from the left. */ # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif arg_end = arg; characters = 0; while (precision > 0) { char cbuf[64]; /* Assume MB_CUR_MAX <= 64. */ int count; if (*arg_end == 0) /* Found the terminating null wide character. */ break; # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t count = wcrtomb (cbuf, *arg_end, &state); # else count = wctomb (cbuf, *arg_end); # endif if (count < 0) { /* Cannot convert. */ if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } if (precision < count) break; arg_end++; characters += count; precision -= count; } } # if DCHAR_IS_TCHAR else if (has_width) # else else # endif { /* Use the entire string, and count the number of bytes. */ # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif arg_end = arg; characters = 0; for (;;) { char cbuf[64]; /* Assume MB_CUR_MAX <= 64. */ int count; if (*arg_end == 0) /* Found the terminating null wide character. */ break; # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t count = wcrtomb (cbuf, *arg_end, &state); # else count = wctomb (cbuf, *arg_end); # endif if (count < 0) { /* Cannot convert. */ if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } arg_end++; characters += count; } } # if DCHAR_IS_TCHAR else { /* Use the entire string. */ arg_end = arg + local_wcslen (arg); /* The number of bytes doesn't matter. */ characters = 0; } # endif # if !DCHAR_IS_TCHAR /* Convert the string into a piece of temporary memory. */ tmpsrc = (TCHAR_T *) malloc (characters * sizeof (TCHAR_T)); if (tmpsrc == NULL) goto out_of_memory; { TCHAR_T *tmpptr = tmpsrc; size_t remaining; # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif for (remaining = characters; remaining > 0; ) { char cbuf[64]; /* Assume MB_CUR_MAX <= 64. */ int count; if (*arg == 0) abort (); # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t count = wcrtomb (cbuf, *arg, &state); # else count = wctomb (cbuf, *arg); # endif if (count <= 0) /* Inconsistency. */ abort (); memcpy (tmpptr, cbuf, count); tmpptr += count; arg++; remaining -= count; } if (!(arg == arg_end)) abort (); } /* Convert from TCHAR_T[] to DCHAR_T[]. */ tmpdst = DCHAR_CONV_FROM_ENCODING (locale_charset (), iconveh_question_mark, tmpsrc, characters, NULL, NULL, &tmpdst_len); if (tmpdst == NULL) { int saved_errno = errno; free (tmpsrc); if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = saved_errno; return NULL; } free (tmpsrc); # endif if (has_width) { # if ENABLE_UNISTDIO /* Outside POSIX, it's preferable to compare the width against the number of _characters_ of the converted value. */ w = DCHAR_MBSNLEN (result + length, characters); # else /* The width is compared against the number of _bytes_ of the converted value, says POSIX. */ w = characters; # endif } else /* w doesn't matter. */ w = 0; if (has_width && width > w && !(dp->flags & FLAG_LEFT)) { size_t n = width - w; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } # if DCHAR_IS_TCHAR if (has_precision || has_width) { /* We know the number of bytes in advance. */ size_t remaining; # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif ENSURE_ALLOCATION (xsum (length, characters)); for (remaining = characters; remaining > 0; ) { char cbuf[64]; /* Assume MB_CUR_MAX <= 64. */ int count; if (*arg == 0) abort (); # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t count = wcrtomb (cbuf, *arg, &state); # else count = wctomb (cbuf, *arg); # endif if (count <= 0) /* Inconsistency. */ abort (); memcpy (result + length, cbuf, count); length += count; arg++; remaining -= count; } if (!(arg == arg_end)) abort (); } else { # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t mbstate_t state; memset (&state, '\0', sizeof (mbstate_t)); # endif while (arg < arg_end) { char cbuf[64]; /* Assume MB_CUR_MAX <= 64. */ int count; if (*arg == 0) abort (); # if HAVE_WCRTOMB && !defined GNULIB_defined_mbstate_t count = wcrtomb (cbuf, *arg, &state); # else count = wctomb (cbuf, *arg); # endif if (count <= 0) { /* Cannot convert. */ if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EILSEQ; return NULL; } ENSURE_ALLOCATION (xsum (length, count)); memcpy (result + length, cbuf, count); length += count; arg++; } } # else ENSURE_ALLOCATION (xsum (length, tmpdst_len)); DCHAR_CPY (result + length, tmpdst, tmpdst_len); free (tmpdst); length += tmpdst_len; # endif if (has_width && width > w && (dp->flags & FLAG_LEFT)) { size_t n = width - w; ENSURE_ALLOCATION (xsum (length, n)); DCHAR_SET (result + length, ' ', n); length += n; } } # endif } #endif #if (NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_DOUBLE) && !defined IN_LIBINTL else if ((dp->conversion == 'a' || dp->conversion == 'A') # if !(NEED_PRINTF_DIRECTIVE_A || (NEED_PRINTF_LONG_DOUBLE && NEED_PRINTF_DOUBLE)) && (0 # if NEED_PRINTF_DOUBLE || a.arg[dp->arg_index].type == TYPE_DOUBLE # endif # if NEED_PRINTF_LONG_DOUBLE || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE # endif ) # endif ) { arg_type type = a.arg[dp->arg_index].type; int flags = dp->flags; int has_width; size_t width; int has_precision; size_t precision; size_t tmp_length; DCHAR_T tmpbuf[700]; DCHAR_T *tmp; DCHAR_T *pad_ptr; DCHAR_T *p; has_width = 0; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; if (arg < 0) { /* "A negative field width is taken as a '-' flag followed by a positive field width." */ flags |= FLAG_LEFT; width = (unsigned int) (-arg); } else width = arg; } else { const FCHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } has_width = 1; } has_precision = 0; precision = 0; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; /* "A negative precision is taken as if the precision were omitted." */ if (arg >= 0) { precision = arg; has_precision = 1; } } else { const FCHAR_T *digitp = dp->precision_start + 1; precision = 0; while (digitp != dp->precision_end) precision = xsum (xtimes (precision, 10), *digitp++ - '0'); has_precision = 1; } } /* Allocate a temporary buffer of sufficient size. */ if (type == TYPE_LONGDOUBLE) tmp_length = (unsigned int) ((LDBL_DIG + 1) * 0.831 /* decimal -> hexadecimal */ ) + 1; /* turn floor into ceil */ else tmp_length = (unsigned int) ((DBL_DIG + 1) * 0.831 /* decimal -> hexadecimal */ ) + 1; /* turn floor into ceil */ if (tmp_length < precision) tmp_length = precision; /* Account for sign, decimal point etc. */ tmp_length = xsum (tmp_length, 12); if (tmp_length < width) tmp_length = width; tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T)) tmp = tmpbuf; else { size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T)); if (size_overflow_p (tmp_memsize)) /* Overflow, would lead to out of memory. */ goto out_of_memory; tmp = (DCHAR_T *) malloc (tmp_memsize); if (tmp == NULL) /* Out of memory. */ goto out_of_memory; } pad_ptr = NULL; p = tmp; if (type == TYPE_LONGDOUBLE) { # if NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_LONG_DOUBLE long double arg = a.arg[dp->arg_index].a.a_longdouble; if (isnanl (arg)) { if (dp->conversion == 'A') { *p++ = 'N'; *p++ = 'A'; *p++ = 'N'; } else { *p++ = 'n'; *p++ = 'a'; *p++ = 'n'; } } else { int sign = 0; DECL_LONG_DOUBLE_ROUNDING BEGIN_LONG_DOUBLE_ROUNDING (); if (signbit (arg)) /* arg < 0.0L or negative zero */ { sign = -1; arg = -arg; } if (sign < 0) *p++ = '-'; else if (flags & FLAG_SHOWSIGN) *p++ = '+'; else if (flags & FLAG_SPACE) *p++ = ' '; if (arg > 0.0L && arg + arg == arg) { if (dp->conversion == 'A') { *p++ = 'I'; *p++ = 'N'; *p++ = 'F'; } else { *p++ = 'i'; *p++ = 'n'; *p++ = 'f'; } } else { int exponent; long double mantissa; if (arg > 0.0L) mantissa = printf_frexpl (arg, &exponent); else { exponent = 0; mantissa = 0.0L; } if (has_precision && precision < (unsigned int) ((LDBL_DIG + 1) * 0.831) + 1) { /* Round the mantissa. */ long double tail = mantissa; size_t q; for (q = precision; ; q--) { int digit = (int) tail; tail -= digit; if (q == 0) { if (digit & 1 ? tail >= 0.5L : tail > 0.5L) tail = 1 - tail; else tail = - tail; break; } tail *= 16.0L; } if (tail != 0.0L) for (q = precision; q > 0; q--) tail *= 0.0625L; mantissa += tail; } *p++ = '0'; *p++ = dp->conversion - 'A' + 'X'; pad_ptr = p; { int digit; digit = (int) mantissa; mantissa -= digit; *p++ = '0' + digit; if ((flags & FLAG_ALT) || mantissa > 0.0L || precision > 0) { *p++ = decimal_point_char (); /* This loop terminates because we assume that FLT_RADIX is a power of 2. */ while (mantissa > 0.0L) { mantissa *= 16.0L; digit = (int) mantissa; mantissa -= digit; *p++ = digit + (digit < 10 ? '0' : dp->conversion - 10); if (precision > 0) precision--; } while (precision > 0) { *p++ = '0'; precision--; } } } *p++ = dp->conversion - 'A' + 'P'; # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = { '%', '+', 'd', '\0' }; SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, "%+d", exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, "%+d", exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } # endif } END_LONG_DOUBLE_ROUNDING (); } # else abort (); # endif } else { # if NEED_PRINTF_DIRECTIVE_A || NEED_PRINTF_DOUBLE double arg = a.arg[dp->arg_index].a.a_double; if (isnand (arg)) { if (dp->conversion == 'A') { *p++ = 'N'; *p++ = 'A'; *p++ = 'N'; } else { *p++ = 'n'; *p++ = 'a'; *p++ = 'n'; } } else { int sign = 0; if (signbit (arg)) /* arg < 0.0 or negative zero */ { sign = -1; arg = -arg; } if (sign < 0) *p++ = '-'; else if (flags & FLAG_SHOWSIGN) *p++ = '+'; else if (flags & FLAG_SPACE) *p++ = ' '; if (arg > 0.0 && arg + arg == arg) { if (dp->conversion == 'A') { *p++ = 'I'; *p++ = 'N'; *p++ = 'F'; } else { *p++ = 'i'; *p++ = 'n'; *p++ = 'f'; } } else { int exponent; double mantissa; if (arg > 0.0) mantissa = printf_frexp (arg, &exponent); else { exponent = 0; mantissa = 0.0; } if (has_precision && precision < (unsigned int) ((DBL_DIG + 1) * 0.831) + 1) { /* Round the mantissa. */ double tail = mantissa; size_t q; for (q = precision; ; q--) { int digit = (int) tail; tail -= digit; if (q == 0) { if (digit & 1 ? tail >= 0.5 : tail > 0.5) tail = 1 - tail; else tail = - tail; break; } tail *= 16.0; } if (tail != 0.0) for (q = precision; q > 0; q--) tail *= 0.0625; mantissa += tail; } *p++ = '0'; *p++ = dp->conversion - 'A' + 'X'; pad_ptr = p; { int digit; digit = (int) mantissa; mantissa -= digit; *p++ = '0' + digit; if ((flags & FLAG_ALT) || mantissa > 0.0 || precision > 0) { *p++ = decimal_point_char (); /* This loop terminates because we assume that FLT_RADIX is a power of 2. */ while (mantissa > 0.0) { mantissa *= 16.0; digit = (int) mantissa; mantissa -= digit; *p++ = digit + (digit < 10 ? '0' : dp->conversion - 10); if (precision > 0) precision--; } while (precision > 0) { *p++ = '0'; precision--; } } } *p++ = dp->conversion - 'A' + 'P'; # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = { '%', '+', 'd', '\0' }; SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, "%+d", exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, "%+d", exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } # endif } } # else abort (); # endif } /* The generated string now extends from tmp to p, with the zero padding insertion point being at pad_ptr. */ if (has_width && p - tmp < width) { size_t pad = width - (p - tmp); DCHAR_T *end = p + pad; if (flags & FLAG_LEFT) { /* Pad with spaces on the right. */ for (; pad > 0; pad--) *p++ = ' '; } else if ((flags & FLAG_ZERO) && pad_ptr != NULL) { /* Pad with zeroes. */ DCHAR_T *q = end; while (p > pad_ptr) *--q = *--p; for (; pad > 0; pad--) *p++ = '0'; } else { /* Pad with spaces on the left. */ DCHAR_T *q = end; while (p > tmp) *--q = *--p; for (; pad > 0; pad--) *p++ = ' '; } p = end; } { size_t count = p - tmp; if (count >= tmp_length) /* tmp_length was incorrectly calculated - fix the code above! */ abort (); /* Make room for the result. */ if (count >= allocated - length) { size_t n = xsum (length, count); ENSURE_ALLOCATION (n); } /* Append the result. */ memcpy (result + length, tmp, count * sizeof (DCHAR_T)); if (tmp != tmpbuf) free (tmp); length += count; } } #endif #if (NEED_PRINTF_INFINITE_DOUBLE || NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE || NEED_PRINTF_LONG_DOUBLE) && !defined IN_LIBINTL else if ((dp->conversion == 'f' || dp->conversion == 'F' || dp->conversion == 'e' || dp->conversion == 'E' || dp->conversion == 'g' || dp->conversion == 'G' || dp->conversion == 'a' || dp->conversion == 'A') && (0 # if NEED_PRINTF_DOUBLE || a.arg[dp->arg_index].type == TYPE_DOUBLE # elif NEED_PRINTF_INFINITE_DOUBLE || (a.arg[dp->arg_index].type == TYPE_DOUBLE /* The systems (mingw) which produce wrong output for Inf, -Inf, and NaN also do so for -0.0. Therefore we treat this case here as well. */ && is_infinite_or_zero (a.arg[dp->arg_index].a.a_double)) # endif # if NEED_PRINTF_LONG_DOUBLE || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE # elif NEED_PRINTF_INFINITE_LONG_DOUBLE || (a.arg[dp->arg_index].type == TYPE_LONGDOUBLE /* Some systems produce wrong output for Inf, -Inf, and NaN. Some systems in this category (IRIX 5.3) also do so for -0.0. Therefore we treat this case here as well. */ && is_infinite_or_zerol (a.arg[dp->arg_index].a.a_longdouble)) # endif )) { # if (NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE) && (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE) arg_type type = a.arg[dp->arg_index].type; # endif int flags = dp->flags; int has_width; size_t width; int has_precision; size_t precision; size_t tmp_length; DCHAR_T tmpbuf[700]; DCHAR_T *tmp; DCHAR_T *pad_ptr; DCHAR_T *p; has_width = 0; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; if (arg < 0) { /* "A negative field width is taken as a '-' flag followed by a positive field width." */ flags |= FLAG_LEFT; width = (unsigned int) (-arg); } else width = arg; } else { const FCHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } has_width = 1; } has_precision = 0; precision = 0; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; /* "A negative precision is taken as if the precision were omitted." */ if (arg >= 0) { precision = arg; has_precision = 1; } } else { const FCHAR_T *digitp = dp->precision_start + 1; precision = 0; while (digitp != dp->precision_end) precision = xsum (xtimes (precision, 10), *digitp++ - '0'); has_precision = 1; } } /* POSIX specifies the default precision to be 6 for %f, %F, %e, %E, but not for %g, %G. Implementations appear to use the same default precision also for %g, %G. But for %a, %A, the default precision is 0. */ if (!has_precision) if (!(dp->conversion == 'a' || dp->conversion == 'A')) precision = 6; /* Allocate a temporary buffer of sufficient size. */ # if NEED_PRINTF_DOUBLE && NEED_PRINTF_LONG_DOUBLE tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : DBL_DIG + 1); # elif NEED_PRINTF_INFINITE_DOUBLE && NEED_PRINTF_LONG_DOUBLE tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : 0); # elif NEED_PRINTF_LONG_DOUBLE tmp_length = LDBL_DIG + 1; # elif NEED_PRINTF_DOUBLE tmp_length = DBL_DIG + 1; # else tmp_length = 0; # endif if (tmp_length < precision) tmp_length = precision; # if NEED_PRINTF_LONG_DOUBLE # if NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE if (type == TYPE_LONGDOUBLE) # endif if (dp->conversion == 'f' || dp->conversion == 'F') { long double arg = a.arg[dp->arg_index].a.a_longdouble; if (!(isnanl (arg) || arg + arg == arg)) { /* arg is finite and nonzero. */ int exponent = floorlog10l (arg < 0 ? -arg : arg); if (exponent >= 0 && tmp_length < exponent + precision) tmp_length = exponent + precision; } } # endif # if NEED_PRINTF_DOUBLE # if NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE if (type == TYPE_DOUBLE) # endif if (dp->conversion == 'f' || dp->conversion == 'F') { double arg = a.arg[dp->arg_index].a.a_double; if (!(isnand (arg) || arg + arg == arg)) { /* arg is finite and nonzero. */ int exponent = floorlog10 (arg < 0 ? -arg : arg); if (exponent >= 0 && tmp_length < exponent + precision) tmp_length = exponent + precision; } } # endif /* Account for sign, decimal point etc. */ tmp_length = xsum (tmp_length, 12); if (tmp_length < width) tmp_length = width; tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T)) tmp = tmpbuf; else { size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T)); if (size_overflow_p (tmp_memsize)) /* Overflow, would lead to out of memory. */ goto out_of_memory; tmp = (DCHAR_T *) malloc (tmp_memsize); if (tmp == NULL) /* Out of memory. */ goto out_of_memory; } pad_ptr = NULL; p = tmp; # if NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_LONG_DOUBLE # if NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE if (type == TYPE_LONGDOUBLE) # endif { long double arg = a.arg[dp->arg_index].a.a_longdouble; if (isnanl (arg)) { if (dp->conversion >= 'A' && dp->conversion <= 'Z') { *p++ = 'N'; *p++ = 'A'; *p++ = 'N'; } else { *p++ = 'n'; *p++ = 'a'; *p++ = 'n'; } } else { int sign = 0; DECL_LONG_DOUBLE_ROUNDING BEGIN_LONG_DOUBLE_ROUNDING (); if (signbit (arg)) /* arg < 0.0L or negative zero */ { sign = -1; arg = -arg; } if (sign < 0) *p++ = '-'; else if (flags & FLAG_SHOWSIGN) *p++ = '+'; else if (flags & FLAG_SPACE) *p++ = ' '; if (arg > 0.0L && arg + arg == arg) { if (dp->conversion >= 'A' && dp->conversion <= 'Z') { *p++ = 'I'; *p++ = 'N'; *p++ = 'F'; } else { *p++ = 'i'; *p++ = 'n'; *p++ = 'f'; } } else { # if NEED_PRINTF_LONG_DOUBLE pad_ptr = p; if (dp->conversion == 'f' || dp->conversion == 'F') { char *digits; size_t ndigits; digits = scale10_round_decimal_long_double (arg, precision); if (digits == NULL) { END_LONG_DOUBLE_ROUNDING (); goto out_of_memory; } ndigits = strlen (digits); if (ndigits > precision) do { --ndigits; *p++ = digits[ndigits]; } while (ndigits > precision); else *p++ = '0'; /* Here ndigits <= precision. */ if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > ndigits; precision--) *p++ = '0'; while (ndigits > 0) { --ndigits; *p++ = digits[ndigits]; } } free (digits); } else if (dp->conversion == 'e' || dp->conversion == 'E') { int exponent; if (arg == 0.0L) { exponent = 0; *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } } else { /* arg > 0.0L. */ int adjusted; char *digits; size_t ndigits; exponent = floorlog10l (arg); adjusted = 0; for (;;) { digits = scale10_round_decimal_long_double (arg, (int)precision - exponent); if (digits == NULL) { END_LONG_DOUBLE_ROUNDING (); goto out_of_memory; } ndigits = strlen (digits); if (ndigits == precision + 1) break; if (ndigits < precision || ndigits > precision + 2) /* The exponent was not guessed precisely enough. */ abort (); if (adjusted) /* None of two values of exponent is the right one. Prevent an endless loop. */ abort (); free (digits); if (ndigits == precision) exponent -= 1; else exponent += 1; adjusted = 1; } /* Here ndigits = precision+1. */ if (is_borderline (digits, precision)) { /* Maybe the exponent guess was too high and a smaller exponent can be reached by turning a 10...0 into 9...9x. */ char *digits2 = scale10_round_decimal_long_double (arg, (int)precision - exponent + 1); if (digits2 == NULL) { free (digits); END_LONG_DOUBLE_ROUNDING (); goto out_of_memory; } if (strlen (digits2) == precision + 1) { free (digits); digits = digits2; exponent -= 1; } else free (digits2); } /* Here ndigits = precision+1. */ *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); while (ndigits > 0) { --ndigits; *p++ = digits[ndigits]; } } free (digits); } *p++ = dp->conversion; /* 'e' or 'E' */ # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = { '%', '+', '.', '2', 'd', '\0' }; SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, "%+.2d", exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, "%+.2d", exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } # endif } else if (dp->conversion == 'g' || dp->conversion == 'G') { if (precision == 0) precision = 1; /* precision >= 1. */ if (arg == 0.0L) /* The exponent is 0, >= -4, < precision. Use fixed-point notation. */ { size_t ndigits = precision; /* Number of trailing zeroes that have to be dropped. */ size_t nzeroes = (flags & FLAG_ALT ? 0 : precision - 1); --ndigits; *p++ = '0'; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = '0'; } } } else { /* arg > 0.0L. */ int exponent; int adjusted; char *digits; size_t ndigits; size_t nzeroes; exponent = floorlog10l (arg); adjusted = 0; for (;;) { digits = scale10_round_decimal_long_double (arg, (int)(precision - 1) - exponent); if (digits == NULL) { END_LONG_DOUBLE_ROUNDING (); goto out_of_memory; } ndigits = strlen (digits); if (ndigits == precision) break; if (ndigits < precision - 1 || ndigits > precision + 1) /* The exponent was not guessed precisely enough. */ abort (); if (adjusted) /* None of two values of exponent is the right one. Prevent an endless loop. */ abort (); free (digits); if (ndigits < precision) exponent -= 1; else exponent += 1; adjusted = 1; } /* Here ndigits = precision. */ if (is_borderline (digits, precision - 1)) { /* Maybe the exponent guess was too high and a smaller exponent can be reached by turning a 10...0 into 9...9x. */ char *digits2 = scale10_round_decimal_long_double (arg, (int)(precision - 1) - exponent + 1); if (digits2 == NULL) { free (digits); END_LONG_DOUBLE_ROUNDING (); goto out_of_memory; } if (strlen (digits2) == precision) { free (digits); digits = digits2; exponent -= 1; } else free (digits2); } /* Here ndigits = precision. */ /* Determine the number of trailing zeroes that have to be dropped. */ nzeroes = 0; if ((flags & FLAG_ALT) == 0) while (nzeroes < ndigits && digits[nzeroes] == '0') nzeroes++; /* The exponent is now determined. */ if (exponent >= -4 && exponent < (long)precision) { /* Fixed-point notation: max(exponent,0)+1 digits, then the decimal point, then the remaining digits without trailing zeroes. */ if (exponent >= 0) { size_t count = exponent + 1; /* Note: count <= precision = ndigits. */ for (; count > 0; count--) *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } } else { size_t count = -exponent - 1; *p++ = '0'; *p++ = decimal_point_char (); for (; count > 0; count--) *p++ = '0'; while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } } else { /* Exponential notation. */ *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } *p++ = dp->conversion - 'G' + 'E'; /* 'e' or 'E' */ # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = { '%', '+', '.', '2', 'd', '\0' }; SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, "%+.2d", exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, "%+.2d", exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } # endif } free (digits); } } else abort (); # else /* arg is finite. */ if (!(arg == 0.0L)) abort (); pad_ptr = p; if (dp->conversion == 'f' || dp->conversion == 'F') { *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } } else if (dp->conversion == 'e' || dp->conversion == 'E') { *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } *p++ = dp->conversion; /* 'e' or 'E' */ *p++ = '+'; *p++ = '0'; *p++ = '0'; } else if (dp->conversion == 'g' || dp->conversion == 'G') { *p++ = '0'; if (flags & FLAG_ALT) { size_t ndigits = (precision > 0 ? precision - 1 : 0); *p++ = decimal_point_char (); for (; ndigits > 0; --ndigits) *p++ = '0'; } } else if (dp->conversion == 'a' || dp->conversion == 'A') { *p++ = '0'; *p++ = dp->conversion - 'A' + 'X'; pad_ptr = p; *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } *p++ = dp->conversion - 'A' + 'P'; *p++ = '+'; *p++ = '0'; } else abort (); # endif } END_LONG_DOUBLE_ROUNDING (); } } # if NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE else # endif # endif # if NEED_PRINTF_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE { double arg = a.arg[dp->arg_index].a.a_double; if (isnand (arg)) { if (dp->conversion >= 'A' && dp->conversion <= 'Z') { *p++ = 'N'; *p++ = 'A'; *p++ = 'N'; } else { *p++ = 'n'; *p++ = 'a'; *p++ = 'n'; } } else { int sign = 0; if (signbit (arg)) /* arg < 0.0 or negative zero */ { sign = -1; arg = -arg; } if (sign < 0) *p++ = '-'; else if (flags & FLAG_SHOWSIGN) *p++ = '+'; else if (flags & FLAG_SPACE) *p++ = ' '; if (arg > 0.0 && arg + arg == arg) { if (dp->conversion >= 'A' && dp->conversion <= 'Z') { *p++ = 'I'; *p++ = 'N'; *p++ = 'F'; } else { *p++ = 'i'; *p++ = 'n'; *p++ = 'f'; } } else { # if NEED_PRINTF_DOUBLE pad_ptr = p; if (dp->conversion == 'f' || dp->conversion == 'F') { char *digits; size_t ndigits; digits = scale10_round_decimal_double (arg, precision); if (digits == NULL) goto out_of_memory; ndigits = strlen (digits); if (ndigits > precision) do { --ndigits; *p++ = digits[ndigits]; } while (ndigits > precision); else *p++ = '0'; /* Here ndigits <= precision. */ if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > ndigits; precision--) *p++ = '0'; while (ndigits > 0) { --ndigits; *p++ = digits[ndigits]; } } free (digits); } else if (dp->conversion == 'e' || dp->conversion == 'E') { int exponent; if (arg == 0.0) { exponent = 0; *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } } else { /* arg > 0.0. */ int adjusted; char *digits; size_t ndigits; exponent = floorlog10 (arg); adjusted = 0; for (;;) { digits = scale10_round_decimal_double (arg, (int)precision - exponent); if (digits == NULL) goto out_of_memory; ndigits = strlen (digits); if (ndigits == precision + 1) break; if (ndigits < precision || ndigits > precision + 2) /* The exponent was not guessed precisely enough. */ abort (); if (adjusted) /* None of two values of exponent is the right one. Prevent an endless loop. */ abort (); free (digits); if (ndigits == precision) exponent -= 1; else exponent += 1; adjusted = 1; } /* Here ndigits = precision+1. */ if (is_borderline (digits, precision)) { /* Maybe the exponent guess was too high and a smaller exponent can be reached by turning a 10...0 into 9...9x. */ char *digits2 = scale10_round_decimal_double (arg, (int)precision - exponent + 1); if (digits2 == NULL) { free (digits); goto out_of_memory; } if (strlen (digits2) == precision + 1) { free (digits); digits = digits2; exponent -= 1; } else free (digits2); } /* Here ndigits = precision+1. */ *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); while (ndigits > 0) { --ndigits; *p++ = digits[ndigits]; } } free (digits); } *p++ = dp->conversion; /* 'e' or 'E' */ # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = /* Produce the same number of exponent digits as the native printf implementation. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ { '%', '+', '.', '3', 'd', '\0' }; # else { '%', '+', '.', '2', 'd', '\0' }; # endif SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else { static const char decimal_format[] = /* Produce the same number of exponent digits as the native printf implementation. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ "%+.3d"; # else "%+.2d"; # endif if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, decimal_format, exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, decimal_format, exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } } # endif } else if (dp->conversion == 'g' || dp->conversion == 'G') { if (precision == 0) precision = 1; /* precision >= 1. */ if (arg == 0.0) /* The exponent is 0, >= -4, < precision. Use fixed-point notation. */ { size_t ndigits = precision; /* Number of trailing zeroes that have to be dropped. */ size_t nzeroes = (flags & FLAG_ALT ? 0 : precision - 1); --ndigits; *p++ = '0'; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = '0'; } } } else { /* arg > 0.0. */ int exponent; int adjusted; char *digits; size_t ndigits; size_t nzeroes; exponent = floorlog10 (arg); adjusted = 0; for (;;) { digits = scale10_round_decimal_double (arg, (int)(precision - 1) - exponent); if (digits == NULL) goto out_of_memory; ndigits = strlen (digits); if (ndigits == precision) break; if (ndigits < precision - 1 || ndigits > precision + 1) /* The exponent was not guessed precisely enough. */ abort (); if (adjusted) /* None of two values of exponent is the right one. Prevent an endless loop. */ abort (); free (digits); if (ndigits < precision) exponent -= 1; else exponent += 1; adjusted = 1; } /* Here ndigits = precision. */ if (is_borderline (digits, precision - 1)) { /* Maybe the exponent guess was too high and a smaller exponent can be reached by turning a 10...0 into 9...9x. */ char *digits2 = scale10_round_decimal_double (arg, (int)(precision - 1) - exponent + 1); if (digits2 == NULL) { free (digits); goto out_of_memory; } if (strlen (digits2) == precision) { free (digits); digits = digits2; exponent -= 1; } else free (digits2); } /* Here ndigits = precision. */ /* Determine the number of trailing zeroes that have to be dropped. */ nzeroes = 0; if ((flags & FLAG_ALT) == 0) while (nzeroes < ndigits && digits[nzeroes] == '0') nzeroes++; /* The exponent is now determined. */ if (exponent >= -4 && exponent < (long)precision) { /* Fixed-point notation: max(exponent,0)+1 digits, then the decimal point, then the remaining digits without trailing zeroes. */ if (exponent >= 0) { size_t count = exponent + 1; /* Note: count <= precision = ndigits. */ for (; count > 0; count--) *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } } else { size_t count = -exponent - 1; *p++ = '0'; *p++ = decimal_point_char (); for (; count > 0; count--) *p++ = '0'; while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } } else { /* Exponential notation. */ *p++ = digits[--ndigits]; if ((flags & FLAG_ALT) || ndigits > nzeroes) { *p++ = decimal_point_char (); while (ndigits > nzeroes) { --ndigits; *p++ = digits[ndigits]; } } *p++ = dp->conversion - 'G' + 'E'; /* 'e' or 'E' */ # if WIDE_CHAR_VERSION { static const wchar_t decimal_format[] = /* Produce the same number of exponent digits as the native printf implementation. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ { '%', '+', '.', '3', 'd', '\0' }; # else { '%', '+', '.', '2', 'd', '\0' }; # endif SNPRINTF (p, 6 + 1, decimal_format, exponent); } while (*p != '\0') p++; # else { static const char decimal_format[] = /* Produce the same number of exponent digits as the native printf implementation. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ "%+.3d"; # else "%+.2d"; # endif if (sizeof (DCHAR_T) == 1) { sprintf ((char *) p, decimal_format, exponent); while (*p != '\0') p++; } else { char expbuf[6 + 1]; const char *ep; sprintf (expbuf, decimal_format, exponent); for (ep = expbuf; (*p = *ep) != '\0'; ep++) p++; } } # endif } free (digits); } } else abort (); # else /* arg is finite. */ if (!(arg == 0.0)) abort (); pad_ptr = p; if (dp->conversion == 'f' || dp->conversion == 'F') { *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } } else if (dp->conversion == 'e' || dp->conversion == 'E') { *p++ = '0'; if ((flags & FLAG_ALT) || precision > 0) { *p++ = decimal_point_char (); for (; precision > 0; precision--) *p++ = '0'; } *p++ = dp->conversion; /* 'e' or 'E' */ *p++ = '+'; /* Produce the same number of exponent digits as the native printf implementation. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ *p++ = '0'; # endif *p++ = '0'; *p++ = '0'; } else if (dp->conversion == 'g' || dp->conversion == 'G') { *p++ = '0'; if (flags & FLAG_ALT) { size_t ndigits = (precision > 0 ? precision - 1 : 0); *p++ = decimal_point_char (); for (; ndigits > 0; --ndigits) *p++ = '0'; } } else abort (); # endif } } } # endif /* The generated string now extends from tmp to p, with the zero padding insertion point being at pad_ptr. */ if (has_width && p - tmp < width) { size_t pad = width - (p - tmp); DCHAR_T *end = p + pad; if (flags & FLAG_LEFT) { /* Pad with spaces on the right. */ for (; pad > 0; pad--) *p++ = ' '; } else if ((flags & FLAG_ZERO) && pad_ptr != NULL) { /* Pad with zeroes. */ DCHAR_T *q = end; while (p > pad_ptr) *--q = *--p; for (; pad > 0; pad--) *p++ = '0'; } else { /* Pad with spaces on the left. */ DCHAR_T *q = end; while (p > tmp) *--q = *--p; for (; pad > 0; pad--) *p++ = ' '; } p = end; } { size_t count = p - tmp; if (count >= tmp_length) /* tmp_length was incorrectly calculated - fix the code above! */ abort (); /* Make room for the result. */ if (count >= allocated - length) { size_t n = xsum (length, count); ENSURE_ALLOCATION (n); } /* Append the result. */ memcpy (result + length, tmp, count * sizeof (DCHAR_T)); if (tmp != tmpbuf) free (tmp); length += count; } } #endif else { arg_type type = a.arg[dp->arg_index].type; int flags = dp->flags; #if !USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || !DCHAR_IS_TCHAR || ENABLE_UNISTDIO || NEED_PRINTF_FLAG_LEFTADJUST || NEED_PRINTF_FLAG_ZERO || NEED_PRINTF_UNBOUNDED_PRECISION int has_width; size_t width; #endif #if !USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || NEED_PRINTF_UNBOUNDED_PRECISION int has_precision; size_t precision; #endif #if NEED_PRINTF_UNBOUNDED_PRECISION int prec_ourselves; #else # define prec_ourselves 0 #endif #if NEED_PRINTF_FLAG_LEFTADJUST # define pad_ourselves 1 #elif !DCHAR_IS_TCHAR || ENABLE_UNISTDIO || NEED_PRINTF_FLAG_ZERO || NEED_PRINTF_UNBOUNDED_PRECISION int pad_ourselves; #else # define pad_ourselves 0 #endif TCHAR_T *fbp; unsigned int prefix_count; int prefixes[2] IF_LINT (= { 0 }); int orig_errno; #if !USE_SNPRINTF size_t tmp_length; TCHAR_T tmpbuf[700]; TCHAR_T *tmp; #endif #if !USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || !DCHAR_IS_TCHAR || ENABLE_UNISTDIO || NEED_PRINTF_FLAG_LEFTADJUST || NEED_PRINTF_FLAG_ZERO || NEED_PRINTF_UNBOUNDED_PRECISION has_width = 0; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; if (arg < 0) { /* "A negative field width is taken as a '-' flag followed by a positive field width." */ flags |= FLAG_LEFT; width = (unsigned int) (-arg); } else width = arg; } else { const FCHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } has_width = 1; } #endif #if !USE_SNPRINTF || !HAVE_SNPRINTF_RETVAL_C99 || NEED_PRINTF_UNBOUNDED_PRECISION has_precision = 0; precision = 6; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; /* "A negative precision is taken as if the precision were omitted." */ if (arg >= 0) { precision = arg; has_precision = 1; } } else { const FCHAR_T *digitp = dp->precision_start + 1; precision = 0; while (digitp != dp->precision_end) precision = xsum (xtimes (precision, 10), *digitp++ - '0'); has_precision = 1; } } #endif /* Decide whether to handle the precision ourselves. */ #if NEED_PRINTF_UNBOUNDED_PRECISION switch (dp->conversion) { case 'd': case 'i': case 'u': case 'o': case 'x': case 'X': case 'p': prec_ourselves = has_precision && (precision > 0); break; default: prec_ourselves = 0; break; } #endif /* Decide whether to perform the padding ourselves. */ #if !NEED_PRINTF_FLAG_LEFTADJUST && (!DCHAR_IS_TCHAR || ENABLE_UNISTDIO || NEED_PRINTF_FLAG_ZERO || NEED_PRINTF_UNBOUNDED_PRECISION) switch (dp->conversion) { # if !DCHAR_IS_TCHAR || ENABLE_UNISTDIO /* If we need conversion from TCHAR_T[] to DCHAR_T[], we need to perform the padding after this conversion. Functions with unistdio extensions perform the padding based on character count rather than element count. */ case 'c': case 's': # endif # if NEED_PRINTF_FLAG_ZERO case 'f': case 'F': case 'e': case 'E': case 'g': case 'G': case 'a': case 'A': # endif pad_ourselves = 1; break; default: pad_ourselves = prec_ourselves; break; } #endif #if !USE_SNPRINTF /* Allocate a temporary buffer of sufficient size for calling sprintf. */ tmp_length = MAX_ROOM_NEEDED (&a, dp->arg_index, dp->conversion, type, flags, width, has_precision, precision, pad_ourselves); if (tmp_length <= sizeof (tmpbuf) / sizeof (TCHAR_T)) tmp = tmpbuf; else { size_t tmp_memsize = xtimes (tmp_length, sizeof (TCHAR_T)); if (size_overflow_p (tmp_memsize)) /* Overflow, would lead to out of memory. */ goto out_of_memory; tmp = (TCHAR_T *) malloc (tmp_memsize); if (tmp == NULL) /* Out of memory. */ goto out_of_memory; } #endif /* Construct the format string for calling snprintf or sprintf. */ fbp = buf; *fbp++ = '%'; #if NEED_PRINTF_FLAG_GROUPING /* The underlying implementation doesn't support the ' flag. Produce no grouping characters in this case; this is acceptable because the grouping is locale dependent. */ #else if (flags & FLAG_GROUP) *fbp++ = '\''; #endif if (flags & FLAG_LEFT) *fbp++ = '-'; if (flags & FLAG_SHOWSIGN) *fbp++ = '+'; if (flags & FLAG_SPACE) *fbp++ = ' '; if (flags & FLAG_ALT) *fbp++ = '#'; #if __GLIBC__ >= 2 && !defined __UCLIBC__ if (flags & FLAG_LOCALIZED) *fbp++ = 'I'; #endif if (!pad_ourselves) { if (flags & FLAG_ZERO) *fbp++ = '0'; if (dp->width_start != dp->width_end) { size_t n = dp->width_end - dp->width_start; /* The width specification is known to consist only of standard ASCII characters. */ if (sizeof (FCHAR_T) == sizeof (TCHAR_T)) { memcpy (fbp, dp->width_start, n * sizeof (TCHAR_T)); fbp += n; } else { const FCHAR_T *mp = dp->width_start; do *fbp++ = (unsigned char) *mp++; while (--n > 0); } } } if (!prec_ourselves) { if (dp->precision_start != dp->precision_end) { size_t n = dp->precision_end - dp->precision_start; /* The precision specification is known to consist only of standard ASCII characters. */ if (sizeof (FCHAR_T) == sizeof (TCHAR_T)) { memcpy (fbp, dp->precision_start, n * sizeof (TCHAR_T)); fbp += n; } else { const FCHAR_T *mp = dp->precision_start; do *fbp++ = (unsigned char) *mp++; while (--n > 0); } } } switch (type) { #if HAVE_LONG_LONG_INT case TYPE_LONGLONGINT: case TYPE_ULONGLONGINT: # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ *fbp++ = 'I'; *fbp++ = '6'; *fbp++ = '4'; break; # else *fbp++ = 'l'; /*FALLTHROUGH*/ # endif #endif case TYPE_LONGINT: case TYPE_ULONGINT: #if HAVE_WINT_T case TYPE_WIDE_CHAR: #endif #if HAVE_WCHAR_T case TYPE_WIDE_STRING: #endif *fbp++ = 'l'; break; case TYPE_LONGDOUBLE: *fbp++ = 'L'; break; default: break; } #if NEED_PRINTF_DIRECTIVE_F if (dp->conversion == 'F') *fbp = 'f'; else #endif *fbp = dp->conversion; #if USE_SNPRINTF # if !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) fbp[1] = '%'; fbp[2] = 'n'; fbp[3] = '\0'; # else /* On glibc2 systems from glibc >= 2.3 - probably also older ones - we know that snprintf's return value conforms to ISO C 99: the tests gl_SNPRINTF_RETVAL_C99 and gl_SNPRINTF_TRUNCATION_C99 pass. Therefore we can avoid using %n in this situation. On glibc2 systems from 2004-10-18 or newer, the use of %n in format strings in writable memory may crash the program (if compiled with _FORTIFY_SOURCE=2), so we should avoid it in this situation. */ /* On native Windows systems (such as mingw), we can avoid using %n because: - Although the gl_SNPRINTF_TRUNCATION_C99 test fails, snprintf does not write more than the specified number of bytes. (snprintf (buf, 3, "%d %d", 4567, 89) writes '4', '5', '6' into buf, not '4', '5', '\0'.) - Although the gl_SNPRINTF_RETVAL_C99 test fails, snprintf allows us to recognize the case of an insufficient buffer size: it returns -1 in this case. On native Windows systems (such as mingw) where the OS is Windows Vista, the use of %n in format strings by default crashes the program. See and So we should avoid %n in this situation. */ fbp[1] = '\0'; # endif #else fbp[1] = '\0'; #endif /* Construct the arguments for calling snprintf or sprintf. */ prefix_count = 0; if (!pad_ourselves && dp->width_arg_index != ARG_NONE) { if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); prefixes[prefix_count++] = a.arg[dp->width_arg_index].a.a_int; } if (!prec_ourselves && dp->precision_arg_index != ARG_NONE) { if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); prefixes[prefix_count++] = a.arg[dp->precision_arg_index].a.a_int; } #if USE_SNPRINTF /* The SNPRINTF result is appended after result[0..length]. The latter is an array of DCHAR_T; SNPRINTF appends an array of TCHAR_T to it. This is possible because sizeof (TCHAR_T) divides sizeof (DCHAR_T) and alignof (TCHAR_T) <= alignof (DCHAR_T). */ # define TCHARS_PER_DCHAR (sizeof (DCHAR_T) / sizeof (TCHAR_T)) /* Ensure that maxlen below will be >= 2. Needed on BeOS, where an snprintf() with maxlen==1 acts like sprintf(). */ ENSURE_ALLOCATION (xsum (length, (2 + TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR)); /* Prepare checking whether snprintf returns the count via %n. */ *(TCHAR_T *) (result + length) = '\0'; #endif orig_errno = errno; for (;;) { int count = -1; #if USE_SNPRINTF int retcount = 0; size_t maxlen = allocated - length; /* SNPRINTF can fail if its second argument is > INT_MAX. */ if (maxlen > INT_MAX / TCHARS_PER_DCHAR) maxlen = INT_MAX / TCHARS_PER_DCHAR; maxlen = maxlen * TCHARS_PER_DCHAR; # define SNPRINTF_BUF(arg) \ switch (prefix_count) \ { \ case 0: \ retcount = SNPRINTF ((TCHAR_T *) (result + length), \ maxlen, buf, \ arg, &count); \ break; \ case 1: \ retcount = SNPRINTF ((TCHAR_T *) (result + length), \ maxlen, buf, \ prefixes[0], arg, &count); \ break; \ case 2: \ retcount = SNPRINTF ((TCHAR_T *) (result + length), \ maxlen, buf, \ prefixes[0], prefixes[1], arg, \ &count); \ break; \ default: \ abort (); \ } #else # define SNPRINTF_BUF(arg) \ switch (prefix_count) \ { \ case 0: \ count = sprintf (tmp, buf, arg); \ break; \ case 1: \ count = sprintf (tmp, buf, prefixes[0], arg); \ break; \ case 2: \ count = sprintf (tmp, buf, prefixes[0], prefixes[1],\ arg); \ break; \ default: \ abort (); \ } #endif errno = 0; switch (type) { case TYPE_SCHAR: { int arg = a.arg[dp->arg_index].a.a_schar; SNPRINTF_BUF (arg); } break; case TYPE_UCHAR: { unsigned int arg = a.arg[dp->arg_index].a.a_uchar; SNPRINTF_BUF (arg); } break; case TYPE_SHORT: { int arg = a.arg[dp->arg_index].a.a_short; SNPRINTF_BUF (arg); } break; case TYPE_USHORT: { unsigned int arg = a.arg[dp->arg_index].a.a_ushort; SNPRINTF_BUF (arg); } break; case TYPE_INT: { int arg = a.arg[dp->arg_index].a.a_int; SNPRINTF_BUF (arg); } break; case TYPE_UINT: { unsigned int arg = a.arg[dp->arg_index].a.a_uint; SNPRINTF_BUF (arg); } break; case TYPE_LONGINT: { long int arg = a.arg[dp->arg_index].a.a_longint; SNPRINTF_BUF (arg); } break; case TYPE_ULONGINT: { unsigned long int arg = a.arg[dp->arg_index].a.a_ulongint; SNPRINTF_BUF (arg); } break; #if HAVE_LONG_LONG_INT case TYPE_LONGLONGINT: { long long int arg = a.arg[dp->arg_index].a.a_longlongint; SNPRINTF_BUF (arg); } break; case TYPE_ULONGLONGINT: { unsigned long long int arg = a.arg[dp->arg_index].a.a_ulonglongint; SNPRINTF_BUF (arg); } break; #endif case TYPE_DOUBLE: { double arg = a.arg[dp->arg_index].a.a_double; SNPRINTF_BUF (arg); } break; case TYPE_LONGDOUBLE: { long double arg = a.arg[dp->arg_index].a.a_longdouble; SNPRINTF_BUF (arg); } break; case TYPE_CHAR: { int arg = a.arg[dp->arg_index].a.a_char; SNPRINTF_BUF (arg); } break; #if HAVE_WINT_T case TYPE_WIDE_CHAR: { wint_t arg = a.arg[dp->arg_index].a.a_wide_char; SNPRINTF_BUF (arg); } break; #endif case TYPE_STRING: { const char *arg = a.arg[dp->arg_index].a.a_string; SNPRINTF_BUF (arg); } break; #if HAVE_WCHAR_T case TYPE_WIDE_STRING: { const wchar_t *arg = a.arg[dp->arg_index].a.a_wide_string; SNPRINTF_BUF (arg); } break; #endif case TYPE_POINTER: { void *arg = a.arg[dp->arg_index].a.a_pointer; SNPRINTF_BUF (arg); } break; default: abort (); } #if USE_SNPRINTF /* Portability: Not all implementations of snprintf() are ISO C 99 compliant. Determine the number of bytes that snprintf() has produced or would have produced. */ if (count >= 0) { /* Verify that snprintf() has NUL-terminated its result. */ if (count < maxlen && ((TCHAR_T *) (result + length)) [count] != '\0') abort (); /* Portability hack. */ if (retcount > count) count = retcount; } else { /* snprintf() doesn't understand the '%n' directive. */ if (fbp[1] != '\0') { /* Don't use the '%n' directive; instead, look at the snprintf() return value. */ fbp[1] = '\0'; continue; } else { /* Look at the snprintf() return value. */ if (retcount < 0) { # if !HAVE_SNPRINTF_RETVAL_C99 /* HP-UX 10.20 snprintf() is doubly deficient: It doesn't understand the '%n' directive, *and* it returns -1 (rather than the length that would have been required) when the buffer is too small. But a failure at this point can also come from other reasons than a too small buffer, such as an invalid wide string argument to the %ls directive, or possibly an invalid floating-point argument. */ size_t tmp_length = MAX_ROOM_NEEDED (&a, dp->arg_index, dp->conversion, type, flags, has_width ? width : 0, has_precision, precision, pad_ourselves); if (maxlen < tmp_length) { /* Make more room. But try to do through this reallocation only once. */ size_t bigger_need = xsum (length, xsum (tmp_length, TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR); /* And always grow proportionally. (There may be several arguments, each needing a little more room than the previous one.) */ size_t bigger_need2 = xsum (xtimes (allocated, 2), 12); if (bigger_need < bigger_need2) bigger_need = bigger_need2; ENSURE_ALLOCATION (bigger_need); continue; } # endif } else count = retcount; } } #endif /* Attempt to handle failure. */ if (count < 0) { /* SNPRINTF or sprintf failed. Save and use the errno that it has set, if any. */ int saved_errno = errno; if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = (saved_errno != 0 ? saved_errno : (dp->conversion == 'c' || dp->conversion == 's' ? EILSEQ : EINVAL)); return NULL; } #if USE_SNPRINTF /* Handle overflow of the allocated buffer. If such an overflow occurs, a C99 compliant snprintf() returns a count >= maxlen. However, a non-compliant snprintf() function returns only count = maxlen - 1. To cover both cases, test whether count >= maxlen - 1. */ if ((unsigned int) count + 1 >= maxlen) { /* If maxlen already has attained its allowed maximum, allocating more memory will not increase maxlen. Instead of looping, bail out. */ if (maxlen == INT_MAX / TCHARS_PER_DCHAR) goto overflow; else { /* Need at least (count + 1) * sizeof (TCHAR_T) bytes. (The +1 is for the trailing NUL.) But ask for (count + 2) * sizeof (TCHAR_T) bytes, so that in the next round, we likely get maxlen > (unsigned int) count + 1 and so we don't get here again. And allocate proportionally, to avoid looping eternally if snprintf() reports a too small count. */ size_t n = xmax (xsum (length, ((unsigned int) count + 2 + TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR), xtimes (allocated, 2)); ENSURE_ALLOCATION (n); continue; } } #endif #if NEED_PRINTF_UNBOUNDED_PRECISION if (prec_ourselves) { /* Handle the precision. */ TCHAR_T *prec_ptr = # if USE_SNPRINTF (TCHAR_T *) (result + length); # else tmp; # endif size_t prefix_count; size_t move; prefix_count = 0; /* Put the additional zeroes after the sign. */ if (count >= 1 && (*prec_ptr == '-' || *prec_ptr == '+' || *prec_ptr == ' ')) prefix_count = 1; /* Put the additional zeroes after the 0x prefix if (flags & FLAG_ALT) || (dp->conversion == 'p'). */ else if (count >= 2 && prec_ptr[0] == '0' && (prec_ptr[1] == 'x' || prec_ptr[1] == 'X')) prefix_count = 2; move = count - prefix_count; if (precision > move) { /* Insert zeroes. */ size_t insert = precision - move; TCHAR_T *prec_end; # if USE_SNPRINTF size_t n = xsum (length, (count + insert + TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR); length += (count + TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR; ENSURE_ALLOCATION (n); length -= (count + TCHARS_PER_DCHAR - 1) / TCHARS_PER_DCHAR; prec_ptr = (TCHAR_T *) (result + length); # endif prec_end = prec_ptr + count; prec_ptr += prefix_count; while (prec_end > prec_ptr) { prec_end--; prec_end[insert] = prec_end[0]; } prec_end += insert; do *--prec_end = '0'; while (prec_end > prec_ptr); count += insert; } } #endif #if !USE_SNPRINTF if (count >= tmp_length) /* tmp_length was incorrectly calculated - fix the code above! */ abort (); #endif #if !DCHAR_IS_TCHAR /* Convert from TCHAR_T[] to DCHAR_T[]. */ if (dp->conversion == 'c' || dp->conversion == 's') { /* type = TYPE_CHAR or TYPE_WIDE_CHAR or TYPE_STRING TYPE_WIDE_STRING. The result string is not certainly ASCII. */ const TCHAR_T *tmpsrc; DCHAR_T *tmpdst; size_t tmpdst_len; /* This code assumes that TCHAR_T is 'char'. */ verify (sizeof (TCHAR_T) == 1); # if USE_SNPRINTF tmpsrc = (TCHAR_T *) (result + length); # else tmpsrc = tmp; # endif tmpdst = DCHAR_CONV_FROM_ENCODING (locale_charset (), iconveh_question_mark, tmpsrc, count, NULL, NULL, &tmpdst_len); if (tmpdst == NULL) { int saved_errno = errno; if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = saved_errno; return NULL; } ENSURE_ALLOCATION (xsum (length, tmpdst_len)); DCHAR_CPY (result + length, tmpdst, tmpdst_len); free (tmpdst); count = tmpdst_len; } else { /* The result string is ASCII. Simple 1:1 conversion. */ # if USE_SNPRINTF /* If sizeof (DCHAR_T) == sizeof (TCHAR_T), it's a no-op conversion, in-place on the array starting at (result + length). */ if (sizeof (DCHAR_T) != sizeof (TCHAR_T)) # endif { const TCHAR_T *tmpsrc; DCHAR_T *tmpdst; size_t n; # if USE_SNPRINTF if (result == resultbuf) { tmpsrc = (TCHAR_T *) (result + length); /* ENSURE_ALLOCATION will not move tmpsrc (because it's part of resultbuf). */ ENSURE_ALLOCATION (xsum (length, count)); } else { /* ENSURE_ALLOCATION will move the array (because it uses realloc(). */ ENSURE_ALLOCATION (xsum (length, count)); tmpsrc = (TCHAR_T *) (result + length); } # else tmpsrc = tmp; ENSURE_ALLOCATION (xsum (length, count)); # endif tmpdst = result + length; /* Copy backwards, because of overlapping. */ tmpsrc += count; tmpdst += count; for (n = count; n > 0; n--) *--tmpdst = (unsigned char) *--tmpsrc; } } #endif #if DCHAR_IS_TCHAR && !USE_SNPRINTF /* Make room for the result. */ if (count > allocated - length) { /* Need at least count elements. But allocate proportionally. */ size_t n = xmax (xsum (length, count), xtimes (allocated, 2)); ENSURE_ALLOCATION (n); } #endif /* Here count <= allocated - length. */ /* Perform padding. */ #if !DCHAR_IS_TCHAR || ENABLE_UNISTDIO || NEED_PRINTF_FLAG_LEFTADJUST || NEED_PRINTF_FLAG_ZERO || NEED_PRINTF_UNBOUNDED_PRECISION if (pad_ourselves && has_width) { size_t w; # if ENABLE_UNISTDIO /* Outside POSIX, it's preferable to compare the width against the number of _characters_ of the converted value. */ w = DCHAR_MBSNLEN (result + length, count); # else /* The width is compared against the number of _bytes_ of the converted value, says POSIX. */ w = count; # endif if (w < width) { size_t pad = width - w; /* Make room for the result. */ if (xsum (count, pad) > allocated - length) { /* Need at least count + pad elements. But allocate proportionally. */ size_t n = xmax (xsum3 (length, count, pad), xtimes (allocated, 2)); # if USE_SNPRINTF length += count; ENSURE_ALLOCATION (n); length -= count; # else ENSURE_ALLOCATION (n); # endif } /* Here count + pad <= allocated - length. */ { # if !DCHAR_IS_TCHAR || USE_SNPRINTF DCHAR_T * const rp = result + length; # else DCHAR_T * const rp = tmp; # endif DCHAR_T *p = rp + count; DCHAR_T *end = p + pad; DCHAR_T *pad_ptr; # if !DCHAR_IS_TCHAR || ENABLE_UNISTDIO if (dp->conversion == 'c' || dp->conversion == 's') /* No zero-padding for string directives. */ pad_ptr = NULL; else # endif { pad_ptr = (*rp == '-' ? rp + 1 : rp); /* No zero-padding of "inf" and "nan". */ if ((*pad_ptr >= 'A' && *pad_ptr <= 'Z') || (*pad_ptr >= 'a' && *pad_ptr <= 'z')) pad_ptr = NULL; } /* The generated string now extends from rp to p, with the zero padding insertion point being at pad_ptr. */ count = count + pad; /* = end - rp */ if (flags & FLAG_LEFT) { /* Pad with spaces on the right. */ for (; pad > 0; pad--) *p++ = ' '; } else if ((flags & FLAG_ZERO) && pad_ptr != NULL) { /* Pad with zeroes. */ DCHAR_T *q = end; while (p > pad_ptr) *--q = *--p; for (; pad > 0; pad--) *p++ = '0'; } else { /* Pad with spaces on the left. */ DCHAR_T *q = end; while (p > rp) *--q = *--p; for (; pad > 0; pad--) *p++ = ' '; } } } } #endif /* Here still count <= allocated - length. */ #if !DCHAR_IS_TCHAR || USE_SNPRINTF /* The snprintf() result did fit. */ #else /* Append the sprintf() result. */ memcpy (result + length, tmp, count * sizeof (DCHAR_T)); #endif #if !USE_SNPRINTF if (tmp != tmpbuf) free (tmp); #endif #if NEED_PRINTF_DIRECTIVE_F if (dp->conversion == 'F') { /* Convert the %f result to upper case for %F. */ DCHAR_T *rp = result + length; size_t rc; for (rc = count; rc > 0; rc--, rp++) if (*rp >= 'a' && *rp <= 'z') *rp = *rp - 'a' + 'A'; } #endif length += count; break; } errno = orig_errno; #undef pad_ourselves #undef prec_ourselves } } } /* Add the final NUL. */ ENSURE_ALLOCATION (xsum (length, 1)); result[length] = '\0'; if (result != resultbuf && length + 1 < allocated) { /* Shrink the allocated memory if possible. */ DCHAR_T *memory; memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T)); if (memory != NULL) result = memory; } if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); *lengthp = length; /* Note that we can produce a big string of a length > INT_MAX. POSIX says that snprintf() fails with errno = EOVERFLOW in this case, but that's only because snprintf() returns an 'int'. This function does not have this limitation. */ return result; #if USE_SNPRINTF overflow: if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EOVERFLOW; return NULL; #endif out_of_memory: if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); out_of_memory_1: CLEANUP (); errno = ENOMEM; return NULL; } } #undef MAX_ROOM_NEEDED #undef TCHARS_PER_DCHAR #undef SNPRINTF #undef USE_SNPRINTF #undef DCHAR_SET #undef DCHAR_CPY #undef PRINTF_PARSE #undef DIRECTIVES #undef DIRECTIVE #undef DCHAR_IS_TCHAR #undef TCHAR_T #undef DCHAR_T #undef FCHAR_T #undef VASNPRINTF gerbv-2.7.0/intl/printf-args.c0000644000175000017500000001465213421555747016100 0ustar carstencarsten/* Decomposed printf argument list. Copyright (C) 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* This file can be parametrized with the following macros: ENABLE_UNISTDIO Set to 1 to enable the unistdio extensions. PRINTF_FETCHARGS Name of the function to be defined. STATIC Set to 'static' to declare the function static. */ #ifndef PRINTF_FETCHARGS # include #endif /* Specification. */ #ifndef PRINTF_FETCHARGS # include "printf-args.h" #endif #ifdef STATIC STATIC #endif int PRINTF_FETCHARGS (va_list args, arguments *a) { size_t i; argument *ap; for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++) switch (ap->type) { case TYPE_SCHAR: ap->a.a_schar = va_arg (args, /*signed char*/ int); break; case TYPE_UCHAR: ap->a.a_uchar = va_arg (args, /*unsigned char*/ int); break; case TYPE_SHORT: ap->a.a_short = va_arg (args, /*short*/ int); break; case TYPE_USHORT: ap->a.a_ushort = va_arg (args, /*unsigned short*/ int); break; case TYPE_INT: ap->a.a_int = va_arg (args, int); break; case TYPE_UINT: ap->a.a_uint = va_arg (args, unsigned int); break; case TYPE_LONGINT: ap->a.a_longint = va_arg (args, long int); break; case TYPE_ULONGINT: ap->a.a_ulongint = va_arg (args, unsigned long int); break; #if HAVE_LONG_LONG_INT case TYPE_LONGLONGINT: ap->a.a_longlongint = va_arg (args, long long int); break; case TYPE_ULONGLONGINT: ap->a.a_ulonglongint = va_arg (args, unsigned long long int); break; #endif case TYPE_DOUBLE: ap->a.a_double = va_arg (args, double); break; case TYPE_LONGDOUBLE: ap->a.a_longdouble = va_arg (args, long double); break; case TYPE_CHAR: ap->a.a_char = va_arg (args, int); break; #if HAVE_WINT_T case TYPE_WIDE_CHAR: /* Although ISO C 99 7.24.1.(2) says that wint_t is "unchanged by default argument promotions", this is not the case in mingw32, where wint_t is 'unsigned short'. */ ap->a.a_wide_char = (sizeof (wint_t) < sizeof (int) ? va_arg (args, int) : va_arg (args, wint_t)); break; #endif case TYPE_STRING: ap->a.a_string = va_arg (args, const char *); /* A null pointer is an invalid argument for "%s", but in practice it occurs quite frequently in printf statements that produce debug output. Use a fallback in this case. */ if (ap->a.a_string == NULL) ap->a.a_string = "(NULL)"; break; #if HAVE_WCHAR_T case TYPE_WIDE_STRING: ap->a.a_wide_string = va_arg (args, const wchar_t *); /* A null pointer is an invalid argument for "%ls", but in practice it occurs quite frequently in printf statements that produce debug output. Use a fallback in this case. */ if (ap->a.a_wide_string == NULL) { static const wchar_t wide_null_string[] = { (wchar_t)'(', (wchar_t)'N', (wchar_t)'U', (wchar_t)'L', (wchar_t)'L', (wchar_t)')', (wchar_t)0 }; ap->a.a_wide_string = wide_null_string; } break; #endif case TYPE_POINTER: ap->a.a_pointer = va_arg (args, void *); break; case TYPE_COUNT_SCHAR_POINTER: ap->a.a_count_schar_pointer = va_arg (args, signed char *); break; case TYPE_COUNT_SHORT_POINTER: ap->a.a_count_short_pointer = va_arg (args, short *); break; case TYPE_COUNT_INT_POINTER: ap->a.a_count_int_pointer = va_arg (args, int *); break; case TYPE_COUNT_LONGINT_POINTER: ap->a.a_count_longint_pointer = va_arg (args, long int *); break; #if HAVE_LONG_LONG_INT case TYPE_COUNT_LONGLONGINT_POINTER: ap->a.a_count_longlongint_pointer = va_arg (args, long long int *); break; #endif #if ENABLE_UNISTDIO /* The unistdio extensions. */ case TYPE_U8_STRING: ap->a.a_u8_string = va_arg (args, const uint8_t *); /* A null pointer is an invalid argument for "%U", but in practice it occurs quite frequently in printf statements that produce debug output. Use a fallback in this case. */ if (ap->a.a_u8_string == NULL) { static const uint8_t u8_null_string[] = { '(', 'N', 'U', 'L', 'L', ')', 0 }; ap->a.a_u8_string = u8_null_string; } break; case TYPE_U16_STRING: ap->a.a_u16_string = va_arg (args, const uint16_t *); /* A null pointer is an invalid argument for "%lU", but in practice it occurs quite frequently in printf statements that produce debug output. Use a fallback in this case. */ if (ap->a.a_u16_string == NULL) { static const uint16_t u16_null_string[] = { '(', 'N', 'U', 'L', 'L', ')', 0 }; ap->a.a_u16_string = u16_null_string; } break; case TYPE_U32_STRING: ap->a.a_u32_string = va_arg (args, const uint32_t *); /* A null pointer is an invalid argument for "%llU", but in practice it occurs quite frequently in printf statements that produce debug output. Use a fallback in this case. */ if (ap->a.a_u32_string == NULL) { static const uint32_t u32_null_string[] = { '(', 'N', 'U', 'L', 'L', ')', 0 }; ap->a.a_u32_string = u32_null_string; } break; #endif default: /* Unknown type. */ return -1; } return 0; } gerbv-2.7.0/intl/ngettext.c0000644000175000017500000000357713421555747015512 0ustar carstencarsten/* Implementation of ngettext(3) function. Copyright (C) 1995, 1997, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define NGETTEXT __ngettext # define DCNGETTEXT __dcngettext #else # define NGETTEXT libintl_ngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * NGETTEXT (const char *msgid1, const char *msgid2, unsigned long int n) { return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__ngettext, ngettext); #endif gerbv-2.7.0/intl/localcharset.c0000644000175000017500000004356113421555747016311 0ustar carstencarsten/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2006, 2008-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible . */ #include /* Specification. */ #include "localcharset.h" #include #include #include #include #include #if defined __APPLE__ && defined __MACH__ && HAVE_LANGINFO_CODESET # define DARWIN7 /* Darwin 7 or newer, i.e. Mac OS X 10.3 or newer */ #endif #if defined _WIN32 || defined __WIN32__ # define WINDOWS_NATIVE #endif #if defined __EMX__ /* Assume EMX program runs on OS/2, even if compiled under DOS. */ # ifndef OS2 # define OS2 # endif #endif #if !defined WINDOWS_NATIVE # include # if HAVE_LANGINFO_CODESET # include # else # if 0 /* see comment below */ # include # endif # endif # ifdef __CYGWIN__ # define WIN32_LEAN_AND_MEAN # include # endif #elif defined WINDOWS_NATIVE # define WIN32_LEAN_AND_MEAN # include #endif #if defined OS2 # define INCL_DOS # include #endif /* For MB_CUR_MAX_L */ #if defined DARWIN7 # include #endif #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif /* Get LIBDIR. */ #ifndef LIBDIR # include "configmake.h" #endif /* Define O_NOFOLLOW to 0 on platforms where it does not exist. */ #ifndef O_NOFOLLOW # define O_NOFOLLOW 0 #endif #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ /* Native Windows, Cygwin, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') #endif #ifndef DIRECTORY_SEPARATOR # define DIRECTORY_SEPARATOR '/' #endif #ifndef ISSLASH # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) #endif #if HAVE_DECL_GETC_UNLOCKED # undef getc # define getc getc_unlocked #endif /* The following static variable is declared 'volatile' to avoid a possible multithread problem in the function get_charset_aliases. If we are running in a threaded environment, and if two threads initialize 'charset_aliases' simultaneously, both will produce the same value, and everything will be ok if the two assignments to 'charset_aliases' are atomic. But I don't know what will happen if the two assignments mix. */ #if __STDC__ != 1 # define volatile /* empty */ #endif /* Pointer to the contents of the charset.alias file, if it has already been read, else NULL. Its format is: ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */ static const char * volatile charset_aliases; /* Return a pointer to the contents of the charset.alias file. */ static const char * get_charset_aliases (void) { const char *cp; cp = charset_aliases; if (cp == NULL) { #if !(defined DARWIN7 || defined VMS || defined WINDOWS_NATIVE || defined __CYGWIN__) const char *dir; const char *base = "charset.alias"; char *file_name; /* Make it possible to override the charset.alias location. This is necessary for running the testsuite before "make install". */ dir = getenv ("CHARSETALIASDIR"); if (dir == NULL || dir[0] == '\0') dir = relocate (LIBDIR); /* Concatenate dir and base into freshly allocated file_name. */ { size_t dir_len = strlen (dir); size_t base_len = strlen (base); int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); file_name = (char *) malloc (dir_len + add_slash + base_len + 1); if (file_name != NULL) { memcpy (file_name, dir, dir_len); if (add_slash) file_name[dir_len] = DIRECTORY_SEPARATOR; memcpy (file_name + dir_len + add_slash, base, base_len + 1); } } if (file_name == NULL) /* Out of memory. Treat the file as empty. */ cp = ""; else { int fd; /* Open the file. Reject symbolic links on platforms that support O_NOFOLLOW. This is a security feature. Without it, an attacker could retrieve parts of the contents (namely, the tail of the first line that starts with "* ") of an arbitrary file by placing a symbolic link to that file under the name "charset.alias" in some writable directory and defining the environment variable CHARSETALIASDIR to point to that directory. */ fd = open (file_name, O_RDONLY | (HAVE_WORKING_O_NOFOLLOW ? O_NOFOLLOW : 0)); if (fd < 0) /* File not found. Treat it as empty. */ cp = ""; else { FILE *fp; fp = fdopen (fd, "r"); if (fp == NULL) { /* Out of memory. Treat the file as empty. */ close (fd); cp = ""; } else { /* Parse the file's contents. */ char *res_ptr = NULL; size_t res_size = 0; for (;;) { int c; char buf1[50+1]; char buf2[50+1]; size_t l1, l2; char *old_res_ptr; c = getc (fp); if (c == EOF) break; if (c == '\n' || c == ' ' || c == '\t') continue; if (c == '#') { /* Skip comment, to end of line. */ do c = getc (fp); while (!(c == EOF || c == '\n')); if (c == EOF) break; continue; } ungetc (c, fp); if (fscanf (fp, "%50s %50s", buf1, buf2) < 2) break; l1 = strlen (buf1); l2 = strlen (buf2); old_res_ptr = res_ptr; if (res_size == 0) { res_size = l1 + 1 + l2 + 1; res_ptr = (char *) malloc (res_size + 1); } else { res_size += l1 + 1 + l2 + 1; res_ptr = (char *) realloc (res_ptr, res_size + 1); } if (res_ptr == NULL) { /* Out of memory. */ res_size = 0; free (old_res_ptr); break; } strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); strcpy (res_ptr + res_size - (l2 + 1), buf2); } fclose (fp); if (res_size == 0) cp = ""; else { *(res_ptr + res_size) = '\0'; cp = res_ptr; } } } free (file_name); } #else # if defined DARWIN7 /* To avoid the trouble of installing a file that is shared by many GNU packages -- many packaging systems have problems with this --, simply inline the aliases here. */ cp = "ISO8859-1" "\0" "ISO-8859-1" "\0" "ISO8859-2" "\0" "ISO-8859-2" "\0" "ISO8859-4" "\0" "ISO-8859-4" "\0" "ISO8859-5" "\0" "ISO-8859-5" "\0" "ISO8859-7" "\0" "ISO-8859-7" "\0" "ISO8859-9" "\0" "ISO-8859-9" "\0" "ISO8859-13" "\0" "ISO-8859-13" "\0" "ISO8859-15" "\0" "ISO-8859-15" "\0" "KOI8-R" "\0" "KOI8-R" "\0" "KOI8-U" "\0" "KOI8-U" "\0" "CP866" "\0" "CP866" "\0" "CP949" "\0" "CP949" "\0" "CP1131" "\0" "CP1131" "\0" "CP1251" "\0" "CP1251" "\0" "eucCN" "\0" "GB2312" "\0" "GB2312" "\0" "GB2312" "\0" "eucJP" "\0" "EUC-JP" "\0" "eucKR" "\0" "EUC-KR" "\0" "Big5" "\0" "BIG5" "\0" "Big5HKSCS" "\0" "BIG5-HKSCS" "\0" "GBK" "\0" "GBK" "\0" "GB18030" "\0" "GB18030" "\0" "SJIS" "\0" "SHIFT_JIS" "\0" "ARMSCII-8" "\0" "ARMSCII-8" "\0" "PT154" "\0" "PT154" "\0" /*"ISCII-DEV" "\0" "?" "\0"*/ "*" "\0" "UTF-8" "\0"; # endif # if defined VMS /* To avoid the troubles of an extra file charset.alias_vms in the sources of many GNU packages, simply inline the aliases here. */ /* The list of encodings is taken from the OpenVMS 7.3-1 documentation "Compaq C Run-Time Library Reference Manual for OpenVMS systems" section 10.7 "Handling Different Character Sets". */ cp = "ISO8859-1" "\0" "ISO-8859-1" "\0" "ISO8859-2" "\0" "ISO-8859-2" "\0" "ISO8859-5" "\0" "ISO-8859-5" "\0" "ISO8859-7" "\0" "ISO-8859-7" "\0" "ISO8859-8" "\0" "ISO-8859-8" "\0" "ISO8859-9" "\0" "ISO-8859-9" "\0" /* Japanese */ "eucJP" "\0" "EUC-JP" "\0" "SJIS" "\0" "SHIFT_JIS" "\0" "DECKANJI" "\0" "DEC-KANJI" "\0" "SDECKANJI" "\0" "EUC-JP" "\0" /* Chinese */ "eucTW" "\0" "EUC-TW" "\0" "DECHANYU" "\0" "DEC-HANYU" "\0" "DECHANZI" "\0" "GB2312" "\0" /* Korean */ "DECKOREAN" "\0" "EUC-KR" "\0"; # endif # if defined WINDOWS_NATIVE || defined __CYGWIN__ /* To avoid the troubles of installing a separate file in the same directory as the DLL and of retrieving the DLL's directory at runtime, simply inline the aliases here. */ cp = "CP936" "\0" "GBK" "\0" "CP1361" "\0" "JOHAB" "\0" "CP20127" "\0" "ASCII" "\0" "CP20866" "\0" "KOI8-R" "\0" "CP20936" "\0" "GB2312" "\0" "CP21866" "\0" "KOI8-RU" "\0" "CP28591" "\0" "ISO-8859-1" "\0" "CP28592" "\0" "ISO-8859-2" "\0" "CP28593" "\0" "ISO-8859-3" "\0" "CP28594" "\0" "ISO-8859-4" "\0" "CP28595" "\0" "ISO-8859-5" "\0" "CP28596" "\0" "ISO-8859-6" "\0" "CP28597" "\0" "ISO-8859-7" "\0" "CP28598" "\0" "ISO-8859-8" "\0" "CP28599" "\0" "ISO-8859-9" "\0" "CP28605" "\0" "ISO-8859-15" "\0" "CP38598" "\0" "ISO-8859-8" "\0" "CP51932" "\0" "EUC-JP" "\0" "CP51936" "\0" "GB2312" "\0" "CP51949" "\0" "EUC-KR" "\0" "CP51950" "\0" "EUC-TW" "\0" "CP54936" "\0" "GB18030" "\0" "CP65001" "\0" "UTF-8" "\0"; # endif #endif charset_aliases = cp; } return cp; } /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ #ifdef STATIC STATIC #endif const char * locale_charset (void) { const char *codeset; const char *aliases; #if !(defined WINDOWS_NATIVE || defined OS2) # if HAVE_LANGINFO_CODESET /* Most systems support nl_langinfo (CODESET) nowadays. */ codeset = nl_langinfo (CODESET); # ifdef __CYGWIN__ /* Cygwin < 1.7 does not have locales. nl_langinfo (CODESET) always returns "US-ASCII". Return the suffix of the locale name from the environment variables (if present) or the codepage as a number. */ if (codeset != NULL && strcmp (codeset, "US-ASCII") == 0) { const char *locale; static char buf[2 + 10 + 1]; locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } if (locale != NULL && locale[0] != '\0') { /* If the locale name contains an encoding after the dot, return it. */ const char *dot = strchr (locale, '.'); if (dot != NULL) { const char *modifier; dot++; /* Look for the possible @... trailer and remove it, if any. */ modifier = strchr (dot, '@'); if (modifier == NULL) return dot; if (modifier - dot < sizeof (buf)) { memcpy (buf, dot, modifier - dot); buf [modifier - dot] = '\0'; return buf; } } } /* The Windows API has a function returning the locale's codepage as a number: GetACP(). This encoding is used by Cygwin, unless the user has set the environment variable CYGWIN=codepage:oem (which very few people do). Output directed to console windows needs to be converted (to GetOEMCP() if the console is using a raster font, or to GetConsoleOutputCP() if it is using a TrueType font). Cygwin does this conversion transparently (see winsup/cygwin/fhandler_console.cc), converting to GetConsoleOutputCP(). This leads to correct results, except when SetConsoleOutputCP has been called and a raster font is in use. */ sprintf (buf, "CP%u", GetACP ()); codeset = buf; } # endif # else /* On old systems which lack it, use setlocale or getenv. */ const char *locale = NULL; /* But most old systems don't have a complete set of locales. Some (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't use setlocale here; it would return "C" when it doesn't support the locale name the user has set. */ # if 0 locale = setlocale (LC_CTYPE, NULL); # endif if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } } /* On some old systems, one used to set locale = "iso8859_1". On others, you set it to "language_COUNTRY.charset". In any case, we resolve it through the charset.alias file. */ codeset = locale; # endif #elif defined WINDOWS_NATIVE static char buf[2 + 10 + 1]; /* The Windows API has a function returning the locale's codepage as a number: GetACP(). When the output goes to a console window, it needs to be provided in GetOEMCP() encoding if the console is using a raster font, or in GetConsoleOutputCP() encoding if it is using a TrueType font. But in GUI programs and for output sent to files and pipes, GetACP() encoding is the best bet. */ sprintf (buf, "CP%u", GetACP ()); codeset = buf; #elif defined OS2 const char *locale; static char buf[2 + 10 + 1]; ULONG cp[3]; ULONG cplen; /* Allow user to override the codeset, as set in the operating system, with standard language environment variables. */ locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } if (locale != NULL && locale[0] != '\0') { /* If the locale name contains an encoding after the dot, return it. */ const char *dot = strchr (locale, '.'); if (dot != NULL) { const char *modifier; dot++; /* Look for the possible @... trailer and remove it, if any. */ modifier = strchr (dot, '@'); if (modifier == NULL) return dot; if (modifier - dot < sizeof (buf)) { memcpy (buf, dot, modifier - dot); buf [modifier - dot] = '\0'; return buf; } } /* Resolve through the charset.alias file. */ codeset = locale; } else { /* OS/2 has a function returning the locale's codepage as a number. */ if (DosQueryCp (sizeof (cp), cp, &cplen)) codeset = ""; else { sprintf (buf, "CP%u", cp[0]); codeset = buf; } } #endif if (codeset == NULL) /* The canonical name cannot be determined. */ codeset = ""; /* Resolve alias. */ for (aliases = get_charset_aliases (); *aliases != '\0'; aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1) if (strcmp (codeset, aliases) == 0 || (aliases[0] == '*' && aliases[1] == '\0')) { codeset = aliases + strlen (aliases) + 1; break; } /* Don't return an empty string. GNU libc and GNU libiconv interpret the empty string as denoting "the locale's character encoding", thus GNU libiconv would call this function a second time. */ if (codeset[0] == '\0') codeset = "ASCII"; #ifdef DARWIN7 /* Mac OS X sets MB_CUR_MAX to 1 when LC_ALL=C, and "UTF-8" (the default codeset) does not work when MB_CUR_MAX is 1. */ if (strcmp (codeset, "UTF-8") == 0 && MB_CUR_MAX_L (uselocale (NULL)) <= 1) codeset = "ASCII"; #endif return codeset; } gerbv-2.7.0/intl/gettext.c0000644000175000017500000000345713421555747015331 0ustar carstencarsten/* Implementation of gettext(3) function. Copyright (C) 1995, 1997, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define GETTEXT __gettext # define DCGETTEXT INTUSE(__dcgettext) #else # define GETTEXT libintl_gettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * GETTEXT (const char *msgid) { return DCGETTEXT (NULL, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__gettext, gettext); #endif gerbv-2.7.0/intl/verify.h0000644000175000017500000002541313421555750015144 0ustar carstencarsten/* Compile-time assert-like macros. Copyright (C) 2005-2006, 2009-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Paul Eggert, Bruno Haible, and Jim Meyering. */ #ifndef _GL_VERIFY_H #define _GL_VERIFY_H /* Define _GL_HAVE__STATIC_ASSERT to 1 if _Static_assert works as per C11. This is supported by GCC 4.6.0 and later, in C mode, and its use here generates easier-to-read diagnostics when verify (R) fails. Define _GL_HAVE_STATIC_ASSERT to 1 if static_assert works as per C++11. This will likely be supported by future GCC versions, in C++ mode. Use this only with GCC. If we were willing to slow 'configure' down we could also use it with other compilers, but since this affects only the quality of diagnostics, why bother? */ #if (4 < __GNUC__ + (6 <= __GNUC_MINOR__) \ && (201112L <= __STDC_VERSION__ || !defined __STRICT_ANSI__) \ && !defined __cplusplus) # define _GL_HAVE__STATIC_ASSERT 1 #endif /* The condition (99 < __GNUC__) is temporary, until we know about the first G++ release that supports static_assert. */ #if (99 < __GNUC__) && defined __cplusplus # define _GL_HAVE_STATIC_ASSERT 1 #endif /* FreeBSD 9.1 , included by and lots of other system headers, defines a conflicting _Static_assert that is no better than ours; override it. */ #ifndef _GL_HAVE_STATIC_ASSERT # include # undef _Static_assert #endif /* Each of these macros verifies that its argument R is nonzero. To be portable, R should be an integer constant expression. Unlike assert (R), there is no run-time overhead. If _Static_assert works, verify (R) uses it directly. Similarly, _GL_VERIFY_TRUE works by packaging a _Static_assert inside a struct that is an operand of sizeof. The code below uses several ideas for C++ compilers, and for C compilers that do not support _Static_assert: * The first step is ((R) ? 1 : -1). Given an expression R, of integral or boolean or floating-point type, this yields an expression of integral type, whose value is later verified to be constant and nonnegative. * Next this expression W is wrapped in a type struct _gl_verify_type { unsigned int _gl_verify_error_if_negative: W; }. If W is negative, this yields a compile-time error. No compiler can deal with a bit-field of negative size. One might think that an array size check would have the same effect, that is, that the type struct { unsigned int dummy[W]; } would work as well. However, inside a function, some compilers (such as C++ compilers and GNU C) allow local parameters and variables inside array size expressions. With these compilers, an array size check would not properly diagnose this misuse of the verify macro: void function (int n) { verify (n < 0); } * For the verify macro, the struct _gl_verify_type will need to somehow be embedded into a declaration. To be portable, this declaration must declare an object, a constant, a function, or a typedef name. If the declared entity uses the type directly, such as in struct dummy {...}; typedef struct {...} dummy; extern struct {...} *dummy; extern void dummy (struct {...} *); extern struct {...} *dummy (void); two uses of the verify macro would yield colliding declarations if the entity names are not disambiguated. A workaround is to attach the current line number to the entity name: #define _GL_CONCAT0(x, y) x##y #define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y) extern struct {...} * _GL_CONCAT (dummy, __LINE__); But this has the problem that two invocations of verify from within the same macro would collide, since the __LINE__ value would be the same for both invocations. (The GCC __COUNTER__ macro solves this problem, but is not portable.) A solution is to use the sizeof operator. It yields a number, getting rid of the identity of the type. Declarations like extern int dummy [sizeof (struct {...})]; extern void dummy (int [sizeof (struct {...})]); extern int (*dummy (void)) [sizeof (struct {...})]; can be repeated. * Should the implementation use a named struct or an unnamed struct? Which of the following alternatives can be used? extern int dummy [sizeof (struct {...})]; extern int dummy [sizeof (struct _gl_verify_type {...})]; extern void dummy (int [sizeof (struct {...})]); extern void dummy (int [sizeof (struct _gl_verify_type {...})]); extern int (*dummy (void)) [sizeof (struct {...})]; extern int (*dummy (void)) [sizeof (struct _gl_verify_type {...})]; In the second and sixth case, the struct type is exported to the outer scope; two such declarations therefore collide. GCC warns about the first, third, and fourth cases. So the only remaining possibility is the fifth case: extern int (*dummy (void)) [sizeof (struct {...})]; * GCC warns about duplicate declarations of the dummy function if -Wredundant-decls is used. GCC 4.3 and later have a builtin __COUNTER__ macro that can let us generate unique identifiers for each dummy function, to suppress this warning. * This implementation exploits the fact that older versions of GCC, which do not support _Static_assert, also do not warn about the last declaration mentioned above. * GCC warns if -Wnested-externs is enabled and verify() is used within a function body; but inside a function, you can always arrange to use verify_expr() instead. * In C++, any struct definition inside sizeof is invalid. Use a template type to work around the problem. */ /* Concatenate two preprocessor tokens. */ #define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y) #define _GL_CONCAT0(x, y) x##y /* _GL_COUNTER is an integer, preferably one that changes each time we use it. Use __COUNTER__ if it works, falling back on __LINE__ otherwise. __LINE__ isn't perfect, but it's better than a constant. */ #if defined __COUNTER__ && __COUNTER__ != __COUNTER__ # define _GL_COUNTER __COUNTER__ #else # define _GL_COUNTER __LINE__ #endif /* Generate a symbol with the given prefix, making it unique if possible. */ #define _GL_GENSYM(prefix) _GL_CONCAT (prefix, _GL_COUNTER) /* Verify requirement R at compile-time, as an integer constant expression that returns 1. If R is false, fail at compile-time, preferably with a diagnostic that includes the string-literal DIAGNOSTIC. */ #define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \ (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC))) #ifdef __cplusplus # if !GNULIB_defined_struct__gl_verify_type template struct _gl_verify_type { unsigned int _gl_verify_error_if_negative: w; }; # define GNULIB_defined_struct__gl_verify_type 1 # endif # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ _gl_verify_type<(R) ? 1 : -1> #elif defined _GL_HAVE__STATIC_ASSERT # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ struct { \ _Static_assert (R, DIAGNOSTIC); \ int _gl_dummy; \ } #else # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; } #endif /* Verify requirement R at compile-time, as a declaration without a trailing ';'. If R is false, fail at compile-time, preferably with a diagnostic that includes the string-literal DIAGNOSTIC. Unfortunately, unlike C11, this implementation must appear as an ordinary declaration, and cannot appear inside struct { ... }. */ #ifdef _GL_HAVE__STATIC_ASSERT # define _GL_VERIFY _Static_assert #else # define _GL_VERIFY(R, DIAGNOSTIC) \ extern int (*_GL_GENSYM (_gl_verify_function) (void)) \ [_GL_VERIFY_TRUE (R, DIAGNOSTIC)] #endif /* _GL_STATIC_ASSERT_H is defined if this code is copied into assert.h. */ #ifdef _GL_STATIC_ASSERT_H # if !defined _GL_HAVE__STATIC_ASSERT && !defined _Static_assert # define _Static_assert(R, DIAGNOSTIC) _GL_VERIFY (R, DIAGNOSTIC) # endif # if !defined _GL_HAVE_STATIC_ASSERT && !defined static_assert # define static_assert _Static_assert /* C11 requires this #define. */ # endif #endif /* @assert.h omit start@ */ /* Each of these macros verifies that its argument R is nonzero. To be portable, R should be an integer constant expression. Unlike assert (R), there is no run-time overhead. There are two macros, since no single macro can be used in all contexts in C. verify_true (R) is for scalar contexts, including integer constant expression contexts. verify (R) is for declaration contexts, e.g., the top level. */ /* Verify requirement R at compile-time, as an integer constant expression. Return 1. This is equivalent to verify_expr (R, 1). verify_true is obsolescent; please use verify_expr instead. */ #define verify_true(R) _GL_VERIFY_TRUE (R, "verify_true (" #R ")") /* Verify requirement R at compile-time. Return the value of the expression E. */ #define verify_expr(R, E) \ (_GL_VERIFY_TRUE (R, "verify_expr (" #R ", " #E ")") ? (E) : (E)) /* Verify requirement R at compile-time, as a declaration without a trailing ';'. */ #define verify(R) _GL_VERIFY (R, "verify (" #R ")") #ifndef __has_builtin # define __has_builtin(x) 0 #endif /* Assume that R always holds. This lets the compiler optimize accordingly. R should not have side-effects; it may or may not be evaluated. Behavior is undefined if R is false. */ #if (__has_builtin (__builtin_unreachable) \ || 4 < __GNUC__ + (5 <= __GNUC_MINOR__)) # define assume(R) ((R) ? (void) 0 : __builtin_unreachable ()) #elif 1200 <= _MSC_VER # define assume(R) __assume (R) #elif (defined lint \ && (__has_builtin (__builtin_trap) \ || 3 < __GNUC__ + (3 < __GNUC_MINOR__ + (4 <= __GNUC_PATCHLEVEL__)))) /* Doing it this way helps various packages when configured with --enable-gcc-warnings, which compiles with -Dlint. It's nicer when 'assume' silences warnings even with older GCCs. */ # define assume(R) ((R) ? (void) 0 : __builtin_trap ()) #else # define assume(R) ((void) (0 && (R))) #endif /* @assert.h omit end@ */ #endif gerbv-2.7.0/intl/libgnuintl.in.h0000644000175000017500000004063013421555747016420 0ustar carstencarsten/* Message catalogs for internationalization. Copyright (C) 1995-1997, 2000-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _LIBINTL_H #define _LIBINTL_H 1 #include #if (defined __APPLE__ && defined __MACH__) && @HAVE_NEWLOCALE@ # include #endif /* The LC_MESSAGES locale category is the category used by the functions gettext() and dgettext(). It is specified in POSIX, but not in ANSI C. On systems that don't define it, use an arbitrary value instead. On Solaris, defines __LOCALE_H (or _LOCALE_H in Solaris 2.5) then includes (i.e. this file!) and then only defines LC_MESSAGES. To avoid a redefinition warning, don't define LC_MESSAGES in this case. */ #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun)) # define LC_MESSAGES 1729 #endif /* We define an additional symbol to signal that we use the GNU implementation of gettext. */ #define __USE_GNU_GETTEXT 1 /* Provide information about the supported file formats. Returns the maximum minor revision number supported for a given major revision. */ #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ ((major) == 0 || (major) == 1 ? 1 : -1) /* Resolve a platform specific conflict on DJGPP. GNU gettext takes precedence over _conio_gettext. */ #ifdef __DJGPP__ # undef gettext #endif #ifdef __cplusplus extern "C" { #endif /* Version number: (major<<16) + (minor<<8) + subminor */ #define LIBINTL_VERSION 0x001300 extern int libintl_version; /* We redirect the functions to those prefixed with "libintl_". This is necessary, because some systems define gettext/textdomain/... in the C library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer). If we used the unprefixed names, there would be cases where the definition in the C library would override the one in the libintl.so shared library. Recall that on ELF systems, the symbols are looked up in the following order: 1. in the executable, 2. in the shared libraries specified on the link command line, in order, 3. in the dependencies of the shared libraries specified on the link command line, 4. in the dlopen()ed shared libraries, in the order in which they were dlopen()ed. The definition in the C library would override the one in libintl.so if either * -lc is given on the link command line and -lintl isn't, or * -lc is given on the link command line before -lintl, or * libintl.so is a dependency of a dlopen()ed shared library but not linked to the executable at link time. Since Solaris gettext() behaves differently than GNU gettext(), this would be unacceptable. The redirection happens by default through macros in C, so that &gettext is independent of the compilation unit, but through inline functions in C++, in order not to interfere with the name mangling of class fields or class methods called 'gettext'. */ /* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS. If he doesn't, we choose the method. A third possible method is _INTL_REDIRECT_ASM, supported only by GCC. */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS) # if defined __GNUC__ && __GNUC__ >= 2 && !(defined __APPLE_CC__ && __APPLE_CC__ > 1) && !defined __MINGW32__ && !(__GNUC__ == 2 && defined _AIX) && (defined __STDC__ || defined __cplusplus) # define _INTL_REDIRECT_ASM # else # ifdef __cplusplus # define _INTL_REDIRECT_INLINE # else # define _INTL_REDIRECT_MACROS # endif # endif #endif /* Auxiliary macros. */ #ifdef _INTL_REDIRECT_ASM # define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname)) # define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring # define _INTL_STRINGIFY(prefix) #prefix #else # define _INTL_ASM(cname) #endif /* _INTL_MAY_RETURN_STRING_ARG(n) declares that the given function may return its n-th argument literally. This enables GCC to warn for example about printf (gettext ("foo %y")). */ #if defined __GNUC__ && __GNUC__ >= 3 && !(defined __APPLE_CC__ && __APPLE_CC__ > 1 && defined __cplusplus) # define _INTL_MAY_RETURN_STRING_ARG(n) __attribute__ ((__format_arg__ (n))) #else # define _INTL_MAY_RETURN_STRING_ARG(n) #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_gettext (const char *__msgid) _INTL_MAY_RETURN_STRING_ARG (1); static inline char *gettext (const char *__msgid) { return libintl_gettext (__msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define gettext libintl_gettext #endif extern char *gettext (const char *__msgid) _INTL_ASM (libintl_gettext) _INTL_MAY_RETURN_STRING_ARG (1); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current LC_MESSAGES locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dgettext (const char *__domainname, const char *__msgid) _INTL_MAY_RETURN_STRING_ARG (2); static inline char *dgettext (const char *__domainname, const char *__msgid) { return libintl_dgettext (__domainname, __msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define dgettext libintl_dgettext #endif extern char *dgettext (const char *__domainname, const char *__msgid) _INTL_ASM (libintl_dgettext) _INTL_MAY_RETURN_STRING_ARG (2); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcgettext (const char *__domainname, const char *__msgid, int __category) _INTL_MAY_RETURN_STRING_ARG (2); static inline char *dcgettext (const char *__domainname, const char *__msgid, int __category) { return libintl_dcgettext (__domainname, __msgid, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcgettext libintl_dcgettext #endif extern char *dcgettext (const char *__domainname, const char *__msgid, int __category) _INTL_ASM (libintl_dcgettext) _INTL_MAY_RETURN_STRING_ARG (2); #endif /* Similar to 'gettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_MAY_RETURN_STRING_ARG (1) _INTL_MAY_RETURN_STRING_ARG (2); static inline char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_ngettext (__msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define ngettext libintl_ngettext #endif extern char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_ASM (libintl_ngettext) _INTL_MAY_RETURN_STRING_ARG (1) _INTL_MAY_RETURN_STRING_ARG (2); #endif /* Similar to 'dgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3); static inline char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_dngettext (__domainname, __msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define dngettext libintl_dngettext #endif extern char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_ASM (libintl_dngettext) _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3); #endif /* Similar to 'dcgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3); static inline char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) { return libintl_dcngettext (__domainname, __msgid1, __msgid2, __n, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcngettext libintl_dcngettext #endif extern char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) _INTL_ASM (libintl_dcngettext) _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3); #endif #ifndef IN_LIBGLOCALE /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_textdomain (const char *__domainname); static inline char *textdomain (const char *__domainname) { return libintl_textdomain (__domainname); } #else #ifdef _INTL_REDIRECT_MACROS # define textdomain libintl_textdomain #endif extern char *textdomain (const char *__domainname) _INTL_ASM (libintl_textdomain); #endif /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bindtextdomain (const char *__domainname, const char *__dirname); static inline char *bindtextdomain (const char *__domainname, const char *__dirname) { return libintl_bindtextdomain (__domainname, __dirname); } #else #ifdef _INTL_REDIRECT_MACROS # define bindtextdomain libintl_bindtextdomain #endif extern char *bindtextdomain (const char *__domainname, const char *__dirname) _INTL_ASM (libintl_bindtextdomain); #endif /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bind_textdomain_codeset (const char *__domainname, const char *__codeset); static inline char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) { return libintl_bind_textdomain_codeset (__domainname, __codeset); } #else #ifdef _INTL_REDIRECT_MACROS # define bind_textdomain_codeset libintl_bind_textdomain_codeset #endif extern char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) _INTL_ASM (libintl_bind_textdomain_codeset); #endif #endif /* IN_LIBGLOCALE */ /* Support for format strings with positions in *printf(), following the POSIX/XSI specification. Note: These replacements for the *printf() functions are visible only in source files that #include or #include "gettext.h". Packages that use *printf() in source files that don't refer to _() or gettext() but for which the format string could be the return value of _() or gettext() need to add this #include. Oh well. */ #if !@HAVE_POSIX_PRINTF@ #include #include /* Get va_list. */ #if (defined __STDC__ && __STDC__) || defined __cplusplus || defined _MSC_VER # include #else # include #endif #if !(defined fprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef fprintf #define fprintf libintl_fprintf extern int fprintf (FILE *, const char *, ...); #endif #if !(defined vfprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef vfprintf #define vfprintf libintl_vfprintf extern int vfprintf (FILE *, const char *, va_list); #endif #if !(defined printf && defined _GL_STDIO_H) /* don't override gnulib */ #undef printf #if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || defined __MINGW32__ /* Don't break __attribute__((format(printf,M,N))). This redefinition is only possible because the libc in NetBSD, Cygwin, mingw does not have a function __printf__. Alternatively, we could have done this redirection only when compiling with __GNUC__, together with a symbol redirection: extern int printf (const char *, ...) __asm__ (#__USER_LABEL_PREFIX__ "libintl_printf"); But doing it now would introduce a binary incompatibility with already distributed versions of libintl on these systems. */ # define libintl_printf __printf__ #endif #define printf libintl_printf extern int printf (const char *, ...); #endif #if !(defined vprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef vprintf #define vprintf libintl_vprintf extern int vprintf (const char *, va_list); #endif #if !(defined sprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef sprintf #define sprintf libintl_sprintf extern int sprintf (char *, const char *, ...); #endif #if !(defined vsprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef vsprintf #define vsprintf libintl_vsprintf extern int vsprintf (char *, const char *, va_list); #endif #if @HAVE_SNPRINTF@ #if !(defined snprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef snprintf #define snprintf libintl_snprintf extern int snprintf (char *, size_t, const char *, ...); #endif #if !(defined vsnprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef vsnprintf #define vsnprintf libintl_vsnprintf extern int vsnprintf (char *, size_t, const char *, va_list); #endif #endif #if @HAVE_ASPRINTF@ #if !(defined asprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef asprintf #define asprintf libintl_asprintf extern int asprintf (char **, const char *, ...); #endif #if !(defined vasprintf && defined _GL_STDIO_H) /* don't override gnulib */ #undef vasprintf #define vasprintf libintl_vasprintf extern int vasprintf (char **, const char *, va_list); #endif #endif #if @HAVE_WPRINTF@ #undef fwprintf #define fwprintf libintl_fwprintf extern int fwprintf (FILE *, const wchar_t *, ...); #undef vfwprintf #define vfwprintf libintl_vfwprintf extern int vfwprintf (FILE *, const wchar_t *, va_list); #undef wprintf #define wprintf libintl_wprintf extern int wprintf (const wchar_t *, ...); #undef vwprintf #define vwprintf libintl_vwprintf extern int vwprintf (const wchar_t *, va_list); #undef swprintf #define swprintf libintl_swprintf extern int swprintf (wchar_t *, size_t, const wchar_t *, ...); #undef vswprintf #define vswprintf libintl_vswprintf extern int vswprintf (wchar_t *, size_t, const wchar_t *, va_list); #endif #endif /* Support for the locale chosen by the user. */ #if (defined __APPLE__ && defined __MACH__) || defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ #ifndef GNULIB_defined_setlocale /* don't override gnulib */ #undef setlocale #define setlocale libintl_setlocale extern char *setlocale (int, const char *); #endif #if @HAVE_NEWLOCALE@ #undef newlocale #define newlocale libintl_newlocale extern locale_t newlocale (int, const char *, locale_t); #endif #endif /* Support for relocatable packages. */ /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ #define libintl_set_relocation_prefix libintl_set_relocation_prefix extern void libintl_set_relocation_prefix (const char *orig_prefix, const char *curr_prefix); #ifdef __cplusplus } #endif #endif /* libintl.h */ gerbv-2.7.0/intl/plural-exp.c0000644000175000017500000000763513421555747015740 0ustar carstencarsten/* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003, 2005-2007 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" #if (defined __GNUC__ && !(__APPLE_CC__ > 1) && !defined __cplusplus) \ || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) /* These structs are the constant expression for the germanic plural form determination. It represents the expression "n != 1". */ static const struct expression plvar = { .nargs = 0, .operation = var, }; static const struct expression plone = { .nargs = 0, .operation = num, .val = { .num = 1 } }; struct expression GERMANIC_PLURAL = { .nargs = 2, .operation = not_equal, .val = { .args = { [0] = (struct expression *) &plvar, [1] = (struct expression *) &plone } } }; # define INIT_GERMANIC_PLURAL() #else /* For compilers without support for ISO C 99 struct/union initializers: Initialization at run-time. */ static struct expression plvar; static struct expression plone; struct expression GERMANIC_PLURAL; static void init_germanic_plural () { if (plone.val.num == 0) { plvar.nargs = 0; plvar.operation = var; plone.nargs = 0; plone.operation = num; plone.val.num = 1; GERMANIC_PLURAL.nargs = 2; GERMANIC_PLURAL.operation = not_equal; GERMANIC_PLURAL.val.args[0] = &plvar; GERMANIC_PLURAL.val.args[1] = &plone; } } # define INIT_GERMANIC_PLURAL() init_germanic_plural () #endif void internal_function EXTRACT_PLURAL_EXPRESSION (const char *nullentry, const struct expression **pluralp, unsigned long int *npluralsp) { if (nullentry != NULL) { const char *plural; const char *nplurals; plural = strstr (nullentry, "plural="); nplurals = strstr (nullentry, "nplurals="); if (plural == NULL || nplurals == NULL) goto no_plural; else { char *endp; unsigned long int n; struct parse_args args; /* First get the number. */ nplurals += 9; while (*nplurals != '\0' && isspace ((unsigned char) *nplurals)) ++nplurals; if (!(*nplurals >= '0' && *nplurals <= '9')) goto no_plural; #if defined HAVE_STRTOUL || defined _LIBC n = strtoul (nplurals, &endp, 10); #else for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++) n = n * 10 + (*endp - '0'); #endif if (nplurals == endp) goto no_plural; *npluralsp = n; /* Due to the restrictions bison imposes onto the interface of the scanner function we have to put the input string and the result passed up from the parser into the same structure which address is passed down to the parser. */ plural += 7; args.cp = plural; if (PLURAL_PARSE (&args) != 0) goto no_plural; *pluralp = args.res; } } else { /* By default we are using the Germanic form: singular form only for `one', the plural form otherwise. Yes, this is also what English is using since English is a Germanic language. */ no_plural: INIT_GERMANIC_PLURAL (); *pluralp = &GERMANIC_PLURAL; *npluralsp = 2; } } gerbv-2.7.0/intl/dcigettext.c0000644000175000017500000013474413421555746016014 0ustar carstencarsten/* Implementation of the internal dcigettext function. Copyright (C) 1995-1999, 2000-2010, 2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #ifndef errno extern int errno; #endif #ifndef __set_errno # define __set_errno(val) errno = (val) #endif #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include #ifdef _LIBC /* Guess whether integer division by zero raises signal SIGFPE. Set to 1 only if you know for sure. In case of doubt, set to 0. */ # if defined __alpha__ || defined __arm__ || defined __i386__ \ || defined __m68k__ || defined __s390__ # define INTDIV0_RAISES_SIGFPE 1 # else # define INTDIV0_RAISES_SIGFPE 0 # endif #endif #if !INTDIV0_RAISES_SIGFPE # include #endif #if defined HAVE_SYS_PARAM_H || defined _LIBC # include #endif #if !defined _LIBC # include "localcharset.h" #endif #include "gettextP.h" #include "plural-exp.h" #ifdef _LIBC # include #else # ifdef IN_LIBGLOCALE # include # endif # include "libgnuintl.h" #endif #include "hash-string.h" /* Handle multi-threaded applications. */ #ifdef _LIBC # include # define gl_rwlock_define_initialized __libc_rwlock_define_initialized # define gl_rwlock_rdlock __libc_rwlock_rdlock # define gl_rwlock_wrlock __libc_rwlock_wrlock # define gl_rwlock_unlock __libc_rwlock_unlock #else # include "lock.h" #endif /* Alignment of types. */ #if defined __GNUC__ && __GNUC__ >= 2 # define alignof(TYPE) __alignof__ (TYPE) #else # define alignof(TYPE) \ ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2) #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define getcwd __getcwd # ifndef stpcpy # define stpcpy __stpcpy # endif # define tfind __tfind #else # if !defined HAVE_GETCWD char *getwd (); # define getcwd(buf, max) getwd (buf) # else # if VMS # define getcwd(buf, max) (getcwd) (buf, max, 0) # else char *getcwd (); # endif # endif # ifndef HAVE_STPCPY static char *stpcpy (char *dest, const char *src); # endif # ifndef HAVE_MEMPCPY static void *mempcpy (void *dest, const void *src, size_t n); # endif #endif /* Use a replacement if the system does not provide the `tsearch' function family. */ #if HAVE_TSEARCH || defined _LIBC # include #else # define tsearch libintl_tsearch # define tfind libintl_tfind # define tdelete libintl_tdelete # define twalk libintl_twalk # include "tsearch.h" #endif #ifdef _LIBC # define tsearch __tsearch #endif /* Amount to increase buffer size by in each try. */ #define PATH_INCR 32 /* The following is from pathmax.h. */ /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define PATH_MAX but might cause redefinition warnings when sys/param.h is later included (as on MORE/BSD 4.3). */ #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__) # include #endif #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 255 #endif #if !defined PATH_MAX && defined _PC_PATH_MAX # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) #endif /* Don't include sys/param.h if it already has been. */ #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN # include #endif #if !defined PATH_MAX && defined MAXPATHLEN # define PATH_MAX MAXPATHLEN #endif #ifndef PATH_MAX # define PATH_MAX _POSIX_PATH_MAX #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ /* Win32, Cygwin, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) #endif /* Whether to support different locales in different threads. */ #if defined _LIBC || HAVE_USELOCALE || defined IN_LIBGLOCALE # define HAVE_PER_THREAD_LOCALE #endif /* This is the type used for the search tree where known translations are stored. */ struct known_translation_t { /* Domain in which to search. */ const char *domainname; /* The category. */ int category; #ifdef HAVE_PER_THREAD_LOCALE /* Name of the relevant locale category, or "" for the global locale. */ const char *localename; #endif #ifdef IN_LIBGLOCALE /* The character encoding. */ const char *encoding; #endif /* State of the catalog counter at the point the string was found. */ int counter; /* Catalog where the string was found. */ struct loaded_l10nfile *domain; /* And finally the translation. */ const char *translation; size_t translation_length; /* Pointer to the string in question. */ union { char appended[ZERO]; /* used if domain != NULL */ const char *ptr; /* used if domain == NULL */ } msgid; }; gl_rwlock_define_initialized (static, tree_lock) /* Root of the search tree with known translations. */ static void *root; /* Function to compare two entries in the table of known translations. */ static int transcmp (const void *p1, const void *p2) { const struct known_translation_t *s1; const struct known_translation_t *s2; int result; s1 = (const struct known_translation_t *) p1; s2 = (const struct known_translation_t *) p2; result = strcmp (s1->domain != NULL ? s1->msgid.appended : s1->msgid.ptr, s2->domain != NULL ? s2->msgid.appended : s2->msgid.ptr); if (result == 0) { result = strcmp (s1->domainname, s2->domainname); if (result == 0) { #ifdef HAVE_PER_THREAD_LOCALE result = strcmp (s1->localename, s2->localename); if (result == 0) #endif { #ifdef IN_LIBGLOCALE result = strcmp (s1->encoding, s2->encoding); if (result == 0) #endif /* We compare the category last (though this is the cheapest operation) since it is hopefully always the same (namely LC_MESSAGES). */ result = s1->category - s2->category; } } } return result; } /* Name of the default domain used for gettext(3) prior any call to textdomain(3). The default value for this is "messages". */ const char _nl_default_default_domain[] attribute_hidden = "messages"; #ifndef IN_LIBGLOCALE /* Value used as the default domain for gettext(3). */ const char *_nl_current_default_domain attribute_hidden = _nl_default_default_domain; #endif /* Contains the default location of the message catalogs. */ #if defined __EMX__ extern const char _nl_default_dirname[]; #else # ifdef _LIBC extern const char _nl_default_dirname[]; libc_hidden_proto (_nl_default_dirname) # endif const char _nl_default_dirname[] = LOCALEDIR; # ifdef _LIBC libc_hidden_data_def (_nl_default_dirname) # endif #endif #ifndef IN_LIBGLOCALE /* List with bindings of specific domains created by bindtextdomain() calls. */ struct binding *_nl_domain_bindings; #endif /* Prototypes for local functions. */ static char *plural_lookup (struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len) internal_function; #ifdef IN_LIBGLOCALE static const char *guess_category_value (int category, const char *categoryname, const char *localename) internal_function; #else static const char *guess_category_value (int category, const char *categoryname) internal_function; #endif #ifdef _LIBC # include "../locale/localeinfo.h" # define category_to_name(category) \ _nl_category_names.str + _nl_category_name_idxs[category] #else static const char *category_to_name (int category) internal_function; #endif #if (defined _LIBC || HAVE_ICONV) && !defined IN_LIBGLOCALE static const char *get_output_charset (struct binding *domainbinding) internal_function; #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA /* Nothing has to be done. */ # define freea(p) /* nothing */ # define ADD_BLOCK(list, address) /* nothing */ # define FREE_BLOCKS(list) /* nothing */ #else struct block_list { void *address; struct block_list *next; }; # define ADD_BLOCK(list, addr) \ do { \ struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \ /* If we cannot get a free block we cannot add the new element to \ the list. */ \ if (newp != NULL) { \ newp->address = (addr); \ newp->next = (list); \ (list) = newp; \ } \ } while (0) # define FREE_BLOCKS(list) \ do { \ while (list != NULL) { \ struct block_list *old = list; \ list = list->next; \ free (old->address); \ free (old); \ } \ } while (0) # undef alloca # define alloca(size) (malloc (size)) # define freea(p) free (p) #endif /* have alloca */ #ifdef _LIBC /* List of blocks allocated for translations. */ typedef struct transmem_list { struct transmem_list *next; char data[ZERO]; } transmem_block_t; static struct transmem_list *transmem_list; #else typedef unsigned char transmem_block_t; #endif /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCIGETTEXT __dcigettext #else # define DCIGETTEXT libintl_dcigettext #endif /* Lock variable to protect the global data in the gettext implementation. */ gl_rwlock_define_initialized (, _nl_state_lock attribute_hidden) /* Checking whether the binaries runs SUID must be done and glibc provides easier methods therefore we make a difference here. */ #ifdef _LIBC # define ENABLE_SECURE __libc_enable_secure # define DETERMINE_SECURE #else # ifndef HAVE_GETUID # define getuid() 0 # endif # ifndef HAVE_GETGID # define getgid() 0 # endif # ifndef HAVE_GETEUID # define geteuid() getuid() # endif # ifndef HAVE_GETEGID # define getegid() getgid() # endif static int enable_secure; # define ENABLE_SECURE (enable_secure == 1) # define DETERMINE_SECURE \ if (enable_secure == 0) \ { \ if (getuid () != geteuid () || getgid () != getegid ()) \ enable_secure = 1; \ else \ enable_secure = -1; \ } #endif /* Get the function to evaluate the plural expression. */ #include "eval-plural.h" /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale and, if PLURAL is nonzero, search over string depending on the plural form determined by N. */ #ifdef IN_LIBGLOCALE char * gl_dcigettext (const char *domainname, const char *msgid1, const char *msgid2, int plural, unsigned long int n, int category, const char *localename, const char *encoding) #else char * DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, int plural, unsigned long int n, int category) #endif { #ifndef HAVE_ALLOCA struct block_list *block_list = NULL; #endif struct loaded_l10nfile *domain; struct binding *binding; const char *categoryname; const char *categoryvalue; const char *dirname; char *xdomainname; char *single_locale; char *retval; size_t retlen; int saved_errno; struct known_translation_t search; struct known_translation_t **foundp = NULL; #if defined HAVE_PER_THREAD_LOCALE && !defined IN_LIBGLOCALE const char *localename; #endif size_t domainname_len; /* If no real MSGID is given return NULL. */ if (msgid1 == NULL) return NULL; #ifdef _LIBC if (category < 0 || category >= __LC_LAST || category == LC_ALL) /* Bogus. */ return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); #endif /* Preserve the `errno' value. */ saved_errno = errno; #ifdef _LIBC __libc_rwlock_define (extern, __libc_setlocale_lock attribute_hidden) __libc_rwlock_rdlock (__libc_setlocale_lock); #endif gl_rwlock_rdlock (_nl_state_lock); /* If DOMAINNAME is NULL, we are interested in the default domain. If CATEGORY is not LC_MESSAGES this might not make much sense but the definition left this undefined. */ if (domainname == NULL) domainname = _nl_current_default_domain; /* OS/2 specific: backward compatibility with older libintl versions */ #ifdef LC_MESSAGES_COMPAT if (category == LC_MESSAGES_COMPAT) category = LC_MESSAGES; #endif /* Try to find the translation among those which we found at some time. */ search.domain = NULL; search.msgid.ptr = msgid1; search.domainname = domainname; search.category = category; #ifdef HAVE_PER_THREAD_LOCALE # ifndef IN_LIBGLOCALE # ifdef _LIBC localename = _strdupa (_current_locale_name (category)); # else categoryname = category_to_name (category); # define CATEGORYNAME_INITIALIZED localename = _nl_locale_name_thread_unsafe (category, categoryname); if (localename == NULL) localename = ""; # endif # endif search.localename = localename; # ifdef IN_LIBGLOCALE search.encoding = encoding; # endif /* Since tfind/tsearch manage a balanced tree, concurrent tfind and tsearch calls can be fatal. */ gl_rwlock_rdlock (tree_lock); foundp = (struct known_translation_t **) tfind (&search, &root, transcmp); gl_rwlock_unlock (tree_lock); if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr) { /* Now deal with plural. */ if (plural) retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, (*foundp)->translation_length); else retval = (char *) (*foundp)->translation; gl_rwlock_unlock (_nl_state_lock); # ifdef _LIBC __libc_rwlock_unlock (__libc_setlocale_lock); # endif __set_errno (saved_errno); return retval; } #endif /* See whether this is a SUID binary or not. */ DETERMINE_SECURE; /* First find matching binding. */ #ifdef IN_LIBGLOCALE /* We can use a trivial binding, since _nl_find_msg will ignore it anyway, and _nl_load_domain and _nl_find_domain just pass it through. */ binding = NULL; dirname = bindtextdomain (domainname, NULL); #else for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding == NULL) dirname = _nl_default_dirname; else { dirname = binding->dirname; #endif if (!IS_ABSOLUTE_PATH (dirname)) { /* We have a relative path. Make it absolute now. */ size_t dirname_len = strlen (dirname) + 1; size_t path_max; char *resolved_dirname; char *ret; path_max = (unsigned int) PATH_MAX; path_max += 2; /* The getcwd docs say to do this. */ for (;;) { resolved_dirname = (char *) alloca (path_max + dirname_len); ADD_BLOCK (block_list, tmp_dirname); __set_errno (0); ret = getcwd (resolved_dirname, path_max); if (ret != NULL || errno != ERANGE) break; path_max += path_max / 2; path_max += PATH_INCR; } if (ret == NULL) /* We cannot get the current working directory. Don't signal an error but simply return the default string. */ goto return_untranslated; stpcpy (stpcpy (strchr (resolved_dirname, '\0'), "/"), dirname); dirname = resolved_dirname; } #ifndef IN_LIBGLOCALE } #endif /* Now determine the symbolic name of CATEGORY and its value. */ #ifndef CATEGORYNAME_INITIALIZED categoryname = category_to_name (category); #endif #ifdef IN_LIBGLOCALE categoryvalue = guess_category_value (category, categoryname, localename); #else categoryvalue = guess_category_value (category, categoryname); #endif domainname_len = strlen (domainname); xdomainname = (char *) alloca (strlen (categoryname) + domainname_len + 5); ADD_BLOCK (block_list, xdomainname); stpcpy ((char *) mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"), domainname, domainname_len), ".mo"); /* Creating working area. */ single_locale = (char *) alloca (strlen (categoryvalue) + 1); ADD_BLOCK (block_list, single_locale); /* Search for the given string. This is a loop because we perhaps got an ordered list of languages to consider for the translation. */ while (1) { /* Make CATEGORYVALUE point to the next element of the list. */ while (categoryvalue[0] != '\0' && categoryvalue[0] == ':') ++categoryvalue; if (categoryvalue[0] == '\0') { /* The whole contents of CATEGORYVALUE has been searched but no valid entry has been found. We solve this situation by implicitly appending a "C" entry, i.e. no translation will take place. */ single_locale[0] = 'C'; single_locale[1] = '\0'; } else { char *cp = single_locale; while (categoryvalue[0] != '\0' && categoryvalue[0] != ':') *cp++ = *categoryvalue++; *cp = '\0'; /* When this is a SUID binary we must not allow accessing files outside the dedicated directories. */ if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale)) /* Ingore this entry. */ continue; } /* If the current locale value is C (or POSIX) we don't load a domain. Return the MSGID. */ if (strcmp (single_locale, "C") == 0 || strcmp (single_locale, "POSIX") == 0) break; /* Find structure describing the message catalog matching the DOMAINNAME and CATEGORY. */ domain = _nl_find_domain (dirname, single_locale, xdomainname, binding); if (domain != NULL) { #if defined IN_LIBGLOCALE retval = _nl_find_msg (domain, binding, encoding, msgid1, &retlen); #else retval = _nl_find_msg (domain, binding, msgid1, 1, &retlen); #endif if (retval == NULL) { int cnt; for (cnt = 0; domain->successor[cnt] != NULL; ++cnt) { #if defined IN_LIBGLOCALE retval = _nl_find_msg (domain->successor[cnt], binding, encoding, msgid1, &retlen); #else retval = _nl_find_msg (domain->successor[cnt], binding, msgid1, 1, &retlen); #endif /* Resource problems are not fatal, instead we return no translation. */ if (__builtin_expect (retval == (char *) -1, 0)) goto return_untranslated; if (retval != NULL) { domain = domain->successor[cnt]; break; } } } /* Returning -1 means that some resource problem exists (likely memory) and that the strings could not be converted. Return the original strings. */ if (__builtin_expect (retval == (char *) -1, 0)) break; if (retval != NULL) { /* Found the translation of MSGID1 in domain DOMAIN: starting at RETVAL, RETLEN bytes. */ FREE_BLOCKS (block_list); if (foundp == NULL) { /* Create a new entry and add it to the search tree. */ size_t msgid_len; size_t size; struct known_translation_t *newp; msgid_len = strlen (msgid1) + 1; size = offsetof (struct known_translation_t, msgid) + msgid_len + domainname_len + 1; #ifdef HAVE_PER_THREAD_LOCALE size += strlen (localename) + 1; #endif newp = (struct known_translation_t *) malloc (size); if (newp != NULL) { char *new_domainname; #ifdef HAVE_PER_THREAD_LOCALE char *new_localename; #endif new_domainname = (char *) mempcpy (newp->msgid.appended, msgid1, msgid_len); memcpy (new_domainname, domainname, domainname_len + 1); #ifdef HAVE_PER_THREAD_LOCALE new_localename = new_domainname + domainname_len + 1; strcpy (new_localename, localename); #endif newp->domainname = new_domainname; newp->category = category; #ifdef HAVE_PER_THREAD_LOCALE newp->localename = new_localename; #endif #ifdef IN_LIBGLOCALE newp->encoding = encoding; #endif newp->counter = _nl_msg_cat_cntr; newp->domain = domain; newp->translation = retval; newp->translation_length = retlen; gl_rwlock_wrlock (tree_lock); /* Insert the entry in the search tree. */ foundp = (struct known_translation_t **) tsearch (newp, &root, transcmp); gl_rwlock_unlock (tree_lock); if (foundp == NULL || __builtin_expect (*foundp != newp, 0)) /* The insert failed. */ free (newp); } } else { /* We can update the existing entry. */ (*foundp)->counter = _nl_msg_cat_cntr; (*foundp)->domain = domain; (*foundp)->translation = retval; (*foundp)->translation_length = retlen; } __set_errno (saved_errno); /* Now deal with plural. */ if (plural) retval = plural_lookup (domain, n, retval, retlen); gl_rwlock_unlock (_nl_state_lock); #ifdef _LIBC __libc_rwlock_unlock (__libc_setlocale_lock); #endif return retval; } } } return_untranslated: /* Return the untranslated MSGID. */ FREE_BLOCKS (block_list); gl_rwlock_unlock (_nl_state_lock); #ifdef _LIBC __libc_rwlock_unlock (__libc_setlocale_lock); #endif #ifndef _LIBC if (!ENABLE_SECURE) { extern void _nl_log_untranslated (const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural); const char *logfilename = getenv ("GETTEXT_LOG_UNTRANSLATED"); if (logfilename != NULL && logfilename[0] != '\0') _nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural); } #endif __set_errno (saved_errno); return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); } /* Look up the translation of msgid within DOMAIN_FILE and DOMAINBINDING. Return it if found. Return NULL if not found or in case of a conversion failure (problem in the particular message catalog). Return (char *) -1 in case of a memory allocation failure during conversion (only if ENCODING != NULL resp. CONVERT == true). */ char * internal_function #ifdef IN_LIBGLOCALE _nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *encoding, const char *msgid, size_t *lengthp) #else _nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, int convert, size_t *lengthp) #endif { struct loaded_domain *domain; nls_uint32 nstrings; size_t act; char *result; size_t resultlen; if (domain_file->decided <= 0) _nl_load_domain (domain_file, domainbinding); if (domain_file->data == NULL) return NULL; domain = (struct loaded_domain *) domain_file->data; nstrings = domain->nstrings; /* Locate the MSGID and its translation. */ if (domain->hash_tab != NULL) { /* Use the hashing table. */ nls_uint32 len = strlen (msgid); nls_uint32 hash_val = __hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); while (1) { nls_uint32 nstr = W (domain->must_swap_hash_tab, domain->hash_tab[idx]); if (nstr == 0) /* Hash table entry is empty. */ return NULL; nstr--; /* Compare msgid with the original string at index nstr. We compare the lengths with >=, not ==, because plural entries are represented by strings with an embedded NUL. */ if (nstr < nstrings ? W (domain->must_swap, domain->orig_tab[nstr].length) >= len && (strcmp (msgid, domain->data + W (domain->must_swap, domain->orig_tab[nstr].offset)) == 0) : domain->orig_sysdep_tab[nstr - nstrings].length > len && (strcmp (msgid, domain->orig_sysdep_tab[nstr - nstrings].pointer) == 0)) { act = nstr; goto found; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } /* NOTREACHED */ } else { /* Try the default method: binary search in the sorted array of messages. */ size_t top, bottom; bottom = 0; top = nstrings; while (bottom < top) { int cmp_val; act = (bottom + top) / 2; cmp_val = strcmp (msgid, (domain->data + W (domain->must_swap, domain->orig_tab[act].offset))); if (cmp_val < 0) top = act; else if (cmp_val > 0) bottom = act + 1; else goto found; } /* No translation was found. */ return NULL; } found: /* The translation was found at index ACT. If we have to convert the string to use a different character set, this is the time. */ if (act < nstrings) { result = (char *) (domain->data + W (domain->must_swap, domain->trans_tab[act].offset)); resultlen = W (domain->must_swap, domain->trans_tab[act].length) + 1; } else { result = (char *) domain->trans_sysdep_tab[act - nstrings].pointer; resultlen = domain->trans_sysdep_tab[act - nstrings].length; } #if defined _LIBC || HAVE_ICONV # ifdef IN_LIBGLOCALE if (encoding != NULL) # else if (convert) # endif { /* We are supposed to do a conversion. */ # ifndef IN_LIBGLOCALE const char *encoding = get_output_charset (domainbinding); # endif size_t nconversions; struct converted_domain *convd; size_t i; /* Protect against reallocation of the table. */ gl_rwlock_rdlock (domain->conversions_lock); /* Search whether a table with converted translations for this encoding has already been allocated. */ nconversions = domain->nconversions; convd = NULL; for (i = nconversions; i > 0; ) { i--; if (strcmp (domain->conversions[i].encoding, encoding) == 0) { convd = &domain->conversions[i]; break; } } gl_rwlock_unlock (domain->conversions_lock); if (convd == NULL) { /* We have to allocate a new conversions table. */ gl_rwlock_wrlock (domain->conversions_lock); nconversions = domain->nconversions; /* Maybe in the meantime somebody added the translation. Recheck. */ for (i = nconversions; i > 0; ) { i--; if (strcmp (domain->conversions[i].encoding, encoding) == 0) { convd = &domain->conversions[i]; goto found_convd; } } { /* Allocate a table for the converted translations for this encoding. */ struct converted_domain *new_conversions = (struct converted_domain *) (domain->conversions != NULL ? realloc (domain->conversions, (nconversions + 1) * sizeof (struct converted_domain)) : malloc ((nconversions + 1) * sizeof (struct converted_domain))); if (__builtin_expect (new_conversions == NULL, 0)) { /* Nothing we can do, no more memory. We cannot use the translation because it might be encoded incorrectly. */ unlock_fail: gl_rwlock_unlock (domain->conversions_lock); return (char *) -1; } domain->conversions = new_conversions; /* Copy the 'encoding' string to permanent storage. */ encoding = strdup (encoding); if (__builtin_expect (encoding == NULL, 0)) /* Nothing we can do, no more memory. We cannot use the translation because it might be encoded incorrectly. */ goto unlock_fail; convd = &new_conversions[nconversions]; convd->encoding = encoding; /* Find out about the character set the file is encoded with. This can be found (in textual form) in the entry "". If this entry does not exist or if this does not contain the 'charset=' information, we will assume the charset matches the one the current locale and we don't have to perform any conversion. */ # ifdef _LIBC convd->conv = (__gconv_t) -1; # else # if HAVE_ICONV convd->conv = (iconv_t) -1; # endif # endif { char *nullentry; size_t nullentrylen; /* Get the header entry. This is a recursion, but it doesn't reallocate domain->conversions because we pass encoding = NULL or convert = 0, respectively. */ nullentry = # ifdef IN_LIBGLOCALE _nl_find_msg (domain_file, domainbinding, NULL, "", &nullentrylen); # else _nl_find_msg (domain_file, domainbinding, "", 0, &nullentrylen); # endif /* Resource problems are fatal. If we continue onwards we will only attempt to calloc a new conv_tab and fail later. */ if (__builtin_expect (nullentry == (char *) -1, 0)) return (char *) -1; if (nullentry != NULL) { const char *charsetstr; charsetstr = strstr (nullentry, "charset="); if (charsetstr != NULL) { size_t len; char *charset; const char *outcharset; charsetstr += strlen ("charset="); len = strcspn (charsetstr, " \t\n"); charset = (char *) alloca (len + 1); # if defined _LIBC || HAVE_MEMPCPY *((char *) mempcpy (charset, charsetstr, len)) = '\0'; # else memcpy (charset, charsetstr, len); charset[len] = '\0'; # endif outcharset = encoding; # ifdef _LIBC /* We always want to use transliteration. */ outcharset = norm_add_slashes (outcharset, "TRANSLIT"); charset = norm_add_slashes (charset, ""); int r = __gconv_open (outcharset, charset, &convd->conv, GCONV_AVOID_NOCONV); if (__builtin_expect (r != __GCONV_OK, 0)) { /* If the output encoding is the same there is nothing to do. Otherwise do not use the translation at all. */ if (__builtin_expect (r != __GCONV_NULCONV, 1)) { gl_rwlock_unlock (domain->conversions_lock); free ((char *) encoding); return NULL; } convd->conv = (__gconv_t) -1; } # else # if HAVE_ICONV /* When using GNU libc >= 2.2 or GNU libiconv >= 1.5, we want to use transliteration. */ # if (((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2) \ && !defined __UCLIBC__) \ || _LIBICONV_VERSION >= 0x0105 if (strchr (outcharset, '/') == NULL) { char *tmp; len = strlen (outcharset); tmp = (char *) alloca (len + 10 + 1); memcpy (tmp, outcharset, len); memcpy (tmp + len, "//TRANSLIT", 10 + 1); outcharset = tmp; convd->conv = iconv_open (outcharset, charset); freea (outcharset); } else # endif convd->conv = iconv_open (outcharset, charset); # endif # endif freea (charset); } } } convd->conv_tab = NULL; /* Here domain->conversions is still == new_conversions. */ domain->nconversions++; } found_convd: gl_rwlock_unlock (domain->conversions_lock); } if ( # ifdef _LIBC convd->conv != (__gconv_t) -1 # else # if HAVE_ICONV convd->conv != (iconv_t) -1 # endif # endif ) { /* We are supposed to do a conversion. First allocate an appropriate table with the same structure as the table of translations in the file, where we can put the pointers to the converted strings in. There is a slight complication with plural entries. They are represented by consecutive NUL terminated strings. We handle this case by converting RESULTLEN bytes, including NULs. */ /* This lock primarily protects the memory management variables freemem, freemem_size. It also protects write accesses to convd->conv_tab. It's not worth using a separate lock (such as domain->conversions_lock) for this purpose, because when modifying convd->conv_tab, we also need to lock freemem, freemem_size for most of the time. */ __libc_lock_define_initialized (static, lock) if (__builtin_expect (convd->conv_tab == NULL, 0)) { __libc_lock_lock (lock); if (convd->conv_tab == NULL) { convd->conv_tab = (char **) calloc (nstrings + domain->n_sysdep_strings, sizeof (char *)); if (convd->conv_tab != NULL) goto not_translated_yet; /* Mark that we didn't succeed allocating a table. */ convd->conv_tab = (char **) -1; } __libc_lock_unlock (lock); } if (__builtin_expect (convd->conv_tab == (char **) -1, 0)) /* Nothing we can do, no more memory. We cannot use the translation because it might be encoded incorrectly. */ return (char *) -1; if (convd->conv_tab[act] == NULL) { /* We haven't used this string so far, so it is not translated yet. Do this now. */ /* We use a bit more efficient memory handling. We allocate always larger blocks which get used over time. This is faster than many small allocations. */ # define INITIAL_BLOCK_SIZE 4080 static unsigned char *freemem; static size_t freemem_size; const unsigned char *inbuf; unsigned char *outbuf; int malloc_count; # ifndef _LIBC transmem_block_t *transmem_list; # endif __libc_lock_lock (lock); not_translated_yet: inbuf = (const unsigned char *) result; outbuf = freemem + sizeof (size_t); # ifndef _LIBC transmem_list = NULL; # endif malloc_count = 0; while (1) { transmem_block_t *newmem; # ifdef _LIBC size_t non_reversible; int res; if (freemem_size < sizeof (size_t)) goto resize_freemem; res = __gconv (convd->conv, &inbuf, inbuf + resultlen, &outbuf, outbuf + freemem_size - sizeof (size_t), &non_reversible); if (res == __GCONV_OK || res == __GCONV_EMPTY_INPUT) break; if (res != __GCONV_FULL_OUTPUT) { /* We should not use the translation at all, it is incorrectly encoded. */ __libc_lock_unlock (lock); return NULL; } inbuf = (const unsigned char *) result; # else # if HAVE_ICONV const char *inptr = (const char *) inbuf; size_t inleft = resultlen; char *outptr = (char *) outbuf; size_t outleft; if (freemem_size < sizeof (size_t)) goto resize_freemem; outleft = freemem_size - sizeof (size_t); if (iconv (convd->conv, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft) != (size_t) (-1)) { outbuf = (unsigned char *) outptr; break; } if (errno != E2BIG) { __libc_lock_unlock (lock); return NULL; } # endif # endif resize_freemem: /* We must allocate a new buffer or resize the old one. */ if (malloc_count > 0) { ++malloc_count; freemem_size = malloc_count * INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) realloc (transmem_list, freemem_size); # ifdef _LIBC if (newmem != NULL) transmem_list = newmem; else { struct transmem_list *old = transmem_list; transmem_list = transmem_list->next; free (old); } # endif } else { malloc_count = 1; freemem_size = INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) malloc (freemem_size); # ifdef _LIBC if (newmem != NULL) { /* Add the block to the list of blocks we have to free at some point. */ newmem->next = transmem_list; transmem_list = newmem; } /* Fall through and return -1. */ # endif } if (__builtin_expect (newmem == NULL, 0)) { freemem = NULL; freemem_size = 0; __libc_lock_unlock (lock); return (char *) -1; } # ifdef _LIBC freemem = (unsigned char *) newmem->data; freemem_size -= offsetof (struct transmem_list, data); # else transmem_list = newmem; freemem = newmem; # endif outbuf = freemem + sizeof (size_t); } /* We have now in our buffer a converted string. Put this into the table of conversions. */ *(size_t *) freemem = outbuf - freemem - sizeof (size_t); convd->conv_tab[act] = (char *) freemem; /* Shrink freemem, but keep it aligned. */ freemem_size -= outbuf - freemem; freemem = outbuf; freemem += freemem_size & (alignof (size_t) - 1); freemem_size = freemem_size & ~ (alignof (size_t) - 1); __libc_lock_unlock (lock); } /* Now convd->conv_tab[act] contains the translation of all the plural variants. */ result = convd->conv_tab[act] + sizeof (size_t); resultlen = *(size_t *) convd->conv_tab[act]; } } /* The result string is converted. */ #endif /* _LIBC || HAVE_ICONV */ *lengthp = resultlen; return result; } /* Look up a plural variant. */ static char * internal_function plural_lookup (struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len) { struct loaded_domain *domaindata = (struct loaded_domain *) domain->data; unsigned long int index; const char *p; index = plural_eval (domaindata->plural, n); if (index >= domaindata->nplurals) /* This should never happen. It means the plural expression and the given maximum value do not match. */ index = 0; /* Skip INDEX strings at TRANSLATION. */ p = translation; while (index-- > 0) { #ifdef _LIBC p = __rawmemchr (p, '\0'); #else p = strchr (p, '\0'); #endif /* And skip over the NUL byte. */ p++; if (p >= translation + translation_len) /* This should never happen. It means the plural expression evaluated to a value larger than the number of variants available for MSGID1. */ return (char *) translation; } return (char *) p; } #ifndef _LIBC /* Return string representation of locale CATEGORY. */ static const char * internal_function category_to_name (int category) { const char *retval; switch (category) { #ifdef LC_COLLATE case LC_COLLATE: retval = "LC_COLLATE"; break; #endif #ifdef LC_CTYPE case LC_CTYPE: retval = "LC_CTYPE"; break; #endif #ifdef LC_MONETARY case LC_MONETARY: retval = "LC_MONETARY"; break; #endif #ifdef LC_NUMERIC case LC_NUMERIC: retval = "LC_NUMERIC"; break; #endif #ifdef LC_TIME case LC_TIME: retval = "LC_TIME"; break; #endif #ifdef LC_MESSAGES case LC_MESSAGES: retval = "LC_MESSAGES"; break; #endif #ifdef LC_RESPONSE case LC_RESPONSE: retval = "LC_RESPONSE"; break; #endif #ifdef LC_ALL case LC_ALL: /* This might not make sense but is perhaps better than any other value. */ retval = "LC_ALL"; break; #endif default: /* If you have a better idea for a default value let me know. */ retval = "LC_XXX"; } return retval; } #endif /* Guess value of current locale from value of the environment variables or system-dependent defaults. */ static const char * internal_function #ifdef IN_LIBGLOCALE guess_category_value (int category, const char *categoryname, const char *locale) #else guess_category_value (int category, const char *categoryname) #endif { const char *language; #ifndef IN_LIBGLOCALE const char *locale; # ifndef _LIBC const char *language_default; int locale_defaulted; # endif #endif /* We use the settings in the following order: 1. The value of the environment variable 'LANGUAGE'. This is a GNU extension. Its value can be a colon-separated list of locale names. 2. The value of the environment variable 'LC_ALL', 'LC_xxx', or 'LANG'. More precisely, the first among these that is set to a non-empty value. This is how POSIX specifies it. The value is a single locale name. 3. A system-dependent preference list of languages. Its value can be a colon-separated list of locale names. 4. A system-dependent default locale name. This way: - System-dependent settings can be overridden by environment variables. - If the system provides both a list of languages and a default locale, the former is used. */ #ifndef IN_LIBGLOCALE /* Fetch the locale name, through the POSIX method of looking to `LC_ALL', `LC_xxx', and `LANG'. On some systems this can be done by the `setlocale' function itself. */ # ifdef _LIBC locale = __current_locale_name (category); # else locale_defaulted = 0; # if HAVE_USELOCALE locale = _nl_locale_name_thread_unsafe (category, categoryname); if (locale == NULL) # endif { locale = _nl_locale_name_posix (category, categoryname); if (locale == NULL) { locale = _nl_locale_name_default (); locale_defaulted = 1; } } # endif #endif /* Ignore LANGUAGE and its system-dependent analogon if the locale is set to "C" because 1. "C" locale usually uses the ASCII encoding, and most international messages use non-ASCII characters. These characters get displayed as question marks (if using glibc's iconv()) or as invalid 8-bit characters (because other iconv()s refuse to convert most non-ASCII characters to ASCII). In any case, the output is ugly. 2. The precise output of some programs in the "C" locale is specified by POSIX and should not depend on environment variables like "LANGUAGE" or system-dependent information. We allow such programs to use gettext(). */ if (strcmp (locale, "C") == 0) return locale; /* The highest priority value is the value of the 'LANGUAGE' environment variable. */ language = getenv ("LANGUAGE"); if (language != NULL && language[0] != '\0') return language; #if !defined IN_LIBGLOCALE && !defined _LIBC /* The next priority value is the locale name, if not defaulted. */ if (locale_defaulted) { /* The next priority value is the default language preferences list. */ language_default = _nl_language_preferences_default (); if (language_default != NULL) return language_default; } /* The least priority value is the locale name, if defaulted. */ #endif return locale; } #if (defined _LIBC || HAVE_ICONV) && !defined IN_LIBGLOCALE /* Returns the output charset. */ static const char * internal_function get_output_charset (struct binding *domainbinding) { /* The output charset should normally be determined by the locale. But sometimes the locale is not used or not correctly set up, so we provide a possibility for the user to override this: the OUTPUT_CHARSET environment variable. Moreover, the value specified through bind_textdomain_codeset overrides both. */ if (domainbinding != NULL && domainbinding->codeset != NULL) return domainbinding->codeset; else { /* For speed reasons, we look at the value of OUTPUT_CHARSET only once. This is a user variable that is not supposed to change during a program run. */ static char *output_charset_cache; static int output_charset_cached; if (!output_charset_cached) { const char *value = getenv ("OUTPUT_CHARSET"); if (value != NULL && value[0] != '\0') { size_t len = strlen (value) + 1; char *value_copy = (char *) malloc (len); if (value_copy != NULL) memcpy (value_copy, value, len); output_charset_cache = value_copy; } output_charset_cached = 1; } if (output_charset_cache != NULL) return output_charset_cache; else { # ifdef _LIBC return _NL_CURRENT (LC_CTYPE, CODESET); # else # if HAVE_ICONV return locale_charset (); # endif # endif } } } #endif /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (char *dest, const char *src) { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif #if !_LIBC && !HAVE_MEMPCPY static void * mempcpy (void *dest, const void *src, size_t n) { return (void *) ((char *) memcpy (dest, src, n) + n); } #endif #if !_LIBC && !HAVE_TSEARCH # include "tsearch.c" #endif #ifdef _LIBC /* If we want to free all resources we have to do some work at program's end. */ libc_freeres_fn (free_mem) { void *old; while (_nl_domain_bindings != NULL) { struct binding *oldp = _nl_domain_bindings; _nl_domain_bindings = _nl_domain_bindings->next; if (oldp->dirname != _nl_default_dirname) /* Yes, this is a pointer comparison. */ free (oldp->dirname); free (oldp->codeset); free (oldp); } if (_nl_current_default_domain != _nl_default_default_domain) /* Yes, again a pointer comparison. */ free ((char *) _nl_current_default_domain); /* Remove the search tree with the known translations. */ __tdestroy (root, free); root = NULL; while (transmem_list != NULL) { old = transmem_list; transmem_list = transmem_list->next; free (old); } } #endif gerbv-2.7.0/intl/dngettext.c0000644000175000017500000000345113421555746015644 0ustar carstencarsten/* Implementation of the dngettext(3) function. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DNGETTEXT __dngettext # define DCNGETTEXT __dcngettext #else # define DNGETTEXT libintl_dngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale and skip message according to the plural form. */ char * DNGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) { return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dngettext, dngettext); #endif gerbv-2.7.0/intl/eval-plural.h0000644000175000017500000000524513421555746016072 0ustar carstencarsten/* Plural expression evaluation. Copyright (C) 2000-2003, 2007 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef STATIC #define STATIC static #endif /* Evaluate the plural expression and return an index value. */ STATIC unsigned long int internal_function plural_eval (const struct expression *pexp, unsigned long int n) { switch (pexp->nargs) { case 0: switch (pexp->operation) { case var: return n; case num: return pexp->val.num; default: break; } /* NOTREACHED */ break; case 1: { /* pexp->operation must be lnot. */ unsigned long int arg = plural_eval (pexp->val.args[0], n); return ! arg; } case 2: { unsigned long int leftarg = plural_eval (pexp->val.args[0], n); if (pexp->operation == lor) return leftarg || plural_eval (pexp->val.args[1], n); else if (pexp->operation == land) return leftarg && plural_eval (pexp->val.args[1], n); else { unsigned long int rightarg = plural_eval (pexp->val.args[1], n); switch (pexp->operation) { case mult: return leftarg * rightarg; case divide: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg / rightarg; case module: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg % rightarg; case plus: return leftarg + rightarg; case minus: return leftarg - rightarg; case less_than: return leftarg < rightarg; case greater_than: return leftarg > rightarg; case less_or_equal: return leftarg <= rightarg; case greater_or_equal: return leftarg >= rightarg; case equal: return leftarg == rightarg; case not_equal: return leftarg != rightarg; default: break; } } /* NOTREACHED */ break; } case 3: { /* pexp->operation must be qmop. */ unsigned long int boolarg = plural_eval (pexp->val.args[0], n); return plural_eval (pexp->val.args[boolarg ? 1 : 2], n); } } /* NOTREACHED */ return 0; } gerbv-2.7.0/intl/os2compat.c0000644000175000017500000000541213421555747015545 0ustar carstencarsten/* OS/2 compatibility functions. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #define OS2_AWARE #ifdef HAVE_CONFIG_H #include #endif #include #include #include /* A version of getenv() that works from DLLs */ extern unsigned long DosScanEnv (const unsigned char *pszName, unsigned char **ppszValue); char * _nl_getenv (const char *name) { unsigned char *value; if (DosScanEnv (name, &value)) return NULL; else return value; } /* A fixed size buffer. */ char libintl_nl_default_dirname[MAXPATHLEN+1]; char *_nlos2_libdir = NULL; char *_nlos2_localealiaspath = NULL; char *_nlos2_localedir = NULL; static __attribute__((constructor)) void nlos2_initialize () { char *root = getenv ("UNIXROOT"); char *gnulocaledir = getenv ("GNULOCALEDIR"); _nlos2_libdir = gnulocaledir; if (!_nlos2_libdir) { if (root) { size_t sl = strlen (root); _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); memcpy (_nlos2_libdir, root, sl); memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); } else _nlos2_libdir = LIBDIR; } _nlos2_localealiaspath = gnulocaledir; if (!_nlos2_localealiaspath) { if (root) { size_t sl = strlen (root); _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); memcpy (_nlos2_localealiaspath, root, sl); memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); } else _nlos2_localealiaspath = LOCALE_ALIAS_PATH; } _nlos2_localedir = gnulocaledir; if (!_nlos2_localedir) { if (root) { size_t sl = strlen (root); _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); memcpy (_nlos2_localedir, root, sl); memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1); } else _nlos2_localedir = LOCALEDIR; } if (strlen (_nlos2_localedir) <= MAXPATHLEN) strcpy (libintl_nl_default_dirname, _nlos2_localedir); } gerbv-2.7.0/intl/intl-exports.c0000644000175000017500000000334313421555747016307 0ustar carstencarsten/* List of exported symbols of libintl on Cygwin. Copyright (C) 2006 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* IMP(x) is a symbol that contains the address of x. */ #if USER_LABEL_PREFIX_UNDERSCORE # define IMP(x) _imp__##x #else # define IMP(x) __imp_##x #endif /* Ensure that the variable x is exported from the library, and that a pseudo-variable IMP(x) is available. */ #define VARIABLE(x) \ /* Export x without redefining x. This code was found by compiling a \ snippet: \ extern __declspec(dllexport) int x; int x = 42; */ \ asm (".section .drectve\n"); \ asm (".ascii \" -export:" #x ",data\"\n"); \ asm (".data\n"); \ /* Allocate a pseudo-variable IMP(x). */ \ extern int x; \ void * IMP(x) = &x; VARIABLE(libintl_version) gerbv-2.7.0/intl/ref-add.sin0000644000175000017500000000200613421555747015503 0ustar carstencarsten# Add this package to a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// ta :a s/ @PACKAGE@ / @PACKAGE@ / tb s/ $/ @PACKAGE@ / :b s/^/# Packages using this file:/ } gerbv-2.7.0/intl/relocatable.h0000644000175000017500000000607513421555750016120 0ustar carstencarsten/* Provide relocatable packages. Copyright (C) 2003, 2005, 2008 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _RELOCATABLE_H #define _RELOCATABLE_H #ifdef __cplusplus extern "C" { #endif /* This can be enabled through the configure --enable-relocatable option. */ #if ENABLE_RELOCATABLE /* When building a DLL, we must export some functions. Note that because this is a private .h file, we don't need to use __declspec(dllimport) in any case. */ #if HAVE_VISIBILITY && BUILDING_DLL # define RELOCATABLE_DLL_EXPORTED __attribute__((__visibility__("default"))) #elif defined _MSC_VER && BUILDING_DLL # define RELOCATABLE_DLL_EXPORTED __declspec(dllexport) #else # define RELOCATABLE_DLL_EXPORTED #endif /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ extern RELOCATABLE_DLL_EXPORTED void set_relocation_prefix (const char *orig_prefix, const char *curr_prefix); /* Returns the pathname, relocated according to the current installation directory. The returned string is either PATHNAME unmodified or a freshly allocated string that you can free with free() after casting it to 'char *'. */ extern const char * relocate (const char *pathname); /* Memory management: relocate() potentially allocates memory, because it has to construct a fresh pathname. If this is a problem because your program calls relocate() frequently, think about caching the result. Or free the return value if it was different from the argument pathname. */ /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns it, freshly allocated. Returns NULL upon failure. */ extern char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname); #else /* By default, we use the hardwired pathnames. */ #define relocate(pathname) (pathname) #endif #ifdef __cplusplus } #endif #endif /* _RELOCATABLE_H */ gerbv-2.7.0/intl/localcharset.h0000644000175000017500000000246613421555747016315 0ustar carstencarsten/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2003 Free Software Foundation, Inc. This file is part of the GNU CHARSET Library. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _LOCALCHARSET_H #define _LOCALCHARSET_H #ifdef __cplusplus extern "C" { #endif /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ extern const char * locale_charset (void); #ifdef __cplusplus } #endif #endif /* _LOCALCHARSET_H */ gerbv-2.7.0/intl/gmo.h0000644000175000017500000001141513421555747014425 0ustar carstencarsten/* Description of GNU message catalog format: general file layout. Copyright (C) 1995, 1997, 2000-2002, 2004, 2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _GETTEXT_H #define _GETTEXT_H 1 #include /* @@ end of prolog @@ */ /* The magic number of the GNU message catalog format. */ #define _MAGIC 0x950412de #define _MAGIC_SWAPPED 0xde120495 /* Revision number of the currently used .mo (binary) file format. */ #define MO_REVISION_NUMBER 0 #define MO_REVISION_NUMBER_WITH_SYSDEP_I 1 /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work when cross-compiling. */ #if __STDC__ # define UINT_MAX_32_BITS 4294967295U #else # define UINT_MAX_32_BITS 0xFFFFFFFF #endif /* If UINT_MAX isn't defined, assume it's a 32-bit type. This should be valid for all systems GNU cares about because that doesn't include 16-bit systems, and only modern systems (that certainly have ) have 64+-bit integral types. */ #ifndef UINT_MAX # define UINT_MAX UINT_MAX_32_BITS #endif #if UINT_MAX == UINT_MAX_32_BITS typedef unsigned nls_uint32; #else # if USHRT_MAX == UINT_MAX_32_BITS typedef unsigned short nls_uint32; # else # if ULONG_MAX == UINT_MAX_32_BITS typedef unsigned long nls_uint32; # else /* The following line is intended to throw an error. Using #error is not portable enough. */ "Cannot determine unsigned 32-bit data type." # endif # endif #endif /* Header for binary .mo file format. */ struct mo_file_header { /* The magic number. */ nls_uint32 magic; /* The revision number of the file format. */ nls_uint32 revision; /* The following are only used in .mo files with major revision 0 or 1. */ /* The number of strings pairs. */ nls_uint32 nstrings; /* Offset of table with start offsets of original strings. */ nls_uint32 orig_tab_offset; /* Offset of table with start offsets of translated strings. */ nls_uint32 trans_tab_offset; /* Size of hash table. */ nls_uint32 hash_tab_size; /* Offset of first hash table entry. */ nls_uint32 hash_tab_offset; /* The following are only used in .mo files with minor revision >= 1. */ /* The number of system dependent segments. */ nls_uint32 n_sysdep_segments; /* Offset of table describing system dependent segments. */ nls_uint32 sysdep_segments_offset; /* The number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Offset of table with start offsets of original sysdep strings. */ nls_uint32 orig_sysdep_tab_offset; /* Offset of table with start offsets of translated sysdep strings. */ nls_uint32 trans_sysdep_tab_offset; }; /* Descriptor for static string contained in the binary .mo file. */ struct string_desc { /* Length of addressed string, not including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* The following are only used in .mo files with minor revision >= 1. */ /* Descriptor for system dependent string segment. */ struct sysdep_segment { /* Length of addressed string, including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* Pair of a static and a system dependent segment, in struct sysdep_string. */ struct segment_pair { /* Size of static segment. */ nls_uint32 segsize; /* Reference to system dependent string segment, or ~0 at the end. */ nls_uint32 sysdepref; }; /* Descriptor for system dependent string. */ struct sysdep_string { /* Offset of static string segments in file. */ nls_uint32 offset; /* Alternating sequence of static and system dependent segments. The last segment is a static segment, including the trailing NUL. */ struct segment_pair segments[1]; }; /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF, regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */ #define SEGMENTS_END ((nls_uint32) ~0) /* @@ begin of epilog @@ */ #endif /* gettext.h */ gerbv-2.7.0/intl/vasnwprintf.h0000644000175000017500000000321113421555750016211 0ustar carstencarsten/* vswprintf with automatic memory allocation. Copyright (C) 2002-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _VASNWPRINTF_H #define _VASNWPRINTF_H /* Get va_list. */ #include /* Get wchar_t, size_t. */ #include #ifdef __cplusplus extern "C" { #endif /* Write formatted output to a string dynamically allocated with malloc(). You can pass a preallocated buffer for the result in RESULTBUF and its size in *LENGTHP; otherwise you pass RESULTBUF = NULL. If successful, return the address of the string (this may be = RESULTBUF if no dynamic memory allocation was necessary) and set *LENGTHP to the number of resulting bytes, excluding the trailing NUL. Upon error, set errno and return NULL. */ extern wchar_t * asnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, ...); extern wchar_t * vasnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, va_list args); #ifdef __cplusplus } #endif #endif /* _VASNWPRINTF_H */ gerbv-2.7.0/intl/localealias.c0000644000175000017500000002445113421555747016113 0ustar carstencarsten/* Handle aliases for locale names. Copyright (C) 1995-1999, 2000-2001, 2003, 2005-2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _LIBC || defined HAVE___FSETLOCKING # include #endif #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #include "gettextP.h" #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define strcasecmp __strcasecmp # ifndef mempcpy # define mempcpy __mempcpy # endif # define HAVE_MEMPCPY 1 # define HAVE___FSETLOCKING 1 #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include #else # include "lock.h" #endif #ifndef internal_function # define internal_function #endif /* Some optimizations for glibc. */ #ifdef _LIBC # define FEOF(fp) feof_unlocked (fp) # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp) #else # define FEOF(fp) feof (fp) # define FGETS(buf, n, fp) fgets (buf, n, fp) #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif #if defined _LIBC_REENTRANT || HAVE_DECL_FGETS_UNLOCKED # undef fgets # define fgets(buf, len, s) fgets_unlocked (buf, len, s) #endif #if defined _LIBC_REENTRANT || HAVE_DECL_FEOF_UNLOCKED # undef feof # define feof(s) feof_unlocked (s) #endif __libc_lock_define_initialized (static, lock) struct alias_map { const char *alias; const char *value; }; #ifndef _LIBC # define libc_freeres_ptr(decl) decl #endif libc_freeres_ptr (static char *string_space); static size_t string_space_act; static size_t string_space_max; libc_freeres_ptr (static struct alias_map *map); static size_t nmap; static size_t maxmap; /* Prototypes for local functions. */ static size_t read_alias_file (const char *fname, int fname_len) internal_function; static int extend_alias_table (void); static int alias_compare (const struct alias_map *map1, const struct alias_map *map2); const char * _nl_expand_alias (const char *name) { static const char *locale_alias_path; struct alias_map *retval; const char *result = NULL; size_t added; __libc_lock_lock (lock); if (locale_alias_path == NULL) locale_alias_path = LOCALE_ALIAS_PATH; do { struct alias_map item; item.alias = name; if (nmap > 0) retval = (struct alias_map *) bsearch (&item, map, nmap, sizeof (struct alias_map), (int (*) (const void *, const void *) ) alias_compare); else retval = NULL; /* We really found an alias. Return the value. */ if (retval != NULL) { result = retval->value; break; } /* Perhaps we can find another alias file. */ added = 0; while (added == 0 && locale_alias_path[0] != '\0') { const char *start; while (locale_alias_path[0] == PATH_SEPARATOR) ++locale_alias_path; start = locale_alias_path; while (locale_alias_path[0] != '\0' && locale_alias_path[0] != PATH_SEPARATOR) ++locale_alias_path; if (start < locale_alias_path) added = read_alias_file (start, locale_alias_path - start); } } while (added != 0); __libc_lock_unlock (lock); return result; } static size_t internal_function read_alias_file (const char *fname, int fname_len) { FILE *fp; char *full_fname; size_t added; static const char aliasfile[] = "/locale.alias"; full_fname = (char *) alloca (fname_len + sizeof aliasfile); #ifdef HAVE_MEMPCPY mempcpy (mempcpy (full_fname, fname, fname_len), aliasfile, sizeof aliasfile); #else memcpy (full_fname, fname, fname_len); memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile); #endif #ifdef _LIBC /* Note the file is opened with cancellation in the I/O functions disabled. */ fp = fopen (relocate (full_fname), "rc"); #else fp = fopen (relocate (full_fname), "r"); #endif freea (full_fname); if (fp == NULL) return 0; #ifdef HAVE___FSETLOCKING /* No threads present. */ __fsetlocking (fp, FSETLOCKING_BYCALLER); #endif added = 0; while (!FEOF (fp)) { /* It is a reasonable approach to use a fix buffer here because a) we are only interested in the first two fields b) these fields must be usable as file names and so must not be that long We avoid a multi-kilobyte buffer here since this would use up stack space which we might not have if the program ran out of memory. */ char buf[400]; char *alias; char *value; char *cp; int complete_line; if (FGETS (buf, sizeof buf, fp) == NULL) /* EOF reached. */ break; /* Determine whether the line is complete. */ complete_line = strchr (buf, '\n') != NULL; cp = buf; /* Ignore leading white space. */ while (isspace ((unsigned char) cp[0])) ++cp; /* A leading '#' signals a comment line. */ if (cp[0] != '\0' && cp[0] != '#') { alias = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate alias name. */ if (cp[0] != '\0') *cp++ = '\0'; /* Now look for the beginning of the value. */ while (isspace ((unsigned char) cp[0])) ++cp; if (cp[0] != '\0') { value = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate value. */ if (cp[0] == '\n') { /* This has to be done to make the following test for the end of line possible. We are looking for the terminating '\n' which do not overwrite here. */ *cp++ = '\0'; *cp = '\n'; } else if (cp[0] != '\0') *cp++ = '\0'; #ifdef IN_LIBGLOCALE /* glibc's locale.alias contains entries for ja_JP and ko_KR that make it impossible to use a Japanese or Korean UTF-8 locale under the name "ja_JP" or "ko_KR". Ignore these entries. */ if (strchr (alias, '_') == NULL) #endif { size_t alias_len; size_t value_len; if (nmap >= maxmap) if (__builtin_expect (extend_alias_table (), 0)) goto out; alias_len = strlen (alias) + 1; value_len = strlen (value) + 1; if (string_space_act + alias_len + value_len > string_space_max) { /* Increase size of memory pool. */ size_t new_size = (string_space_max + (alias_len + value_len > 1024 ? alias_len + value_len : 1024)); char *new_pool = (char *) realloc (string_space, new_size); if (new_pool == NULL) goto out; if (__builtin_expect (string_space != new_pool, 0)) { size_t i; for (i = 0; i < nmap; i++) { map[i].alias += new_pool - string_space; map[i].value += new_pool - string_space; } } string_space = new_pool; string_space_max = new_size; } map[nmap].alias = (const char *) memcpy (&string_space[string_space_act], alias, alias_len); string_space_act += alias_len; map[nmap].value = (const char *) memcpy (&string_space[string_space_act], value, value_len); string_space_act += value_len; ++nmap; ++added; } } } /* Possibly not the whole line fits into the buffer. Ignore the rest of the line. */ if (! complete_line) do if (FGETS (buf, sizeof buf, fp) == NULL) /* Make sure the inner loop will be left. The outer loop will exit at the `feof' test. */ break; while (strchr (buf, '\n') == NULL); } out: /* Should we test for ferror()? I think we have to silently ignore errors. --drepper */ fclose (fp); if (added > 0) qsort (map, nmap, sizeof (struct alias_map), (int (*) (const void *, const void *)) alias_compare); return added; } static int extend_alias_table () { size_t new_size; struct alias_map *new_map; new_size = maxmap == 0 ? 100 : 2 * maxmap; new_map = (struct alias_map *) realloc (map, (new_size * sizeof (struct alias_map))); if (new_map == NULL) /* Simply don't extend: we don't have any more core. */ return -1; map = new_map; maxmap = new_size; return 0; } static int alias_compare (const struct alias_map *map1, const struct alias_map *map2) { #if defined _LIBC || defined HAVE_STRCASECMP return strcasecmp (map1->alias, map2->alias); #else const unsigned char *p1 = (const unsigned char *) map1->alias; const unsigned char *p2 = (const unsigned char *) map2->alias; unsigned char c1, c2; if (p1 == p2) return 0; do { /* I know this seems to be odd but the tolower() function in some systems libc cannot handle nonalpha characters. */ c1 = isupper (*p1) ? tolower (*p1) : *p1; c2 = isupper (*p2) ? tolower (*p2) : *p2; if (c1 == '\0') break; ++p1; ++p2; } while (c1 == c2); return c1 - c2; #endif } gerbv-2.7.0/intl/version.c0000644000175000017500000000163413421555750015317 0ustar carstencarsten/* libintl library version. Copyright (C) 2005 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "libgnuintl.h" /* Version number: (major<<16) + (minor<<8) + subminor */ int libintl_version = LIBINTL_VERSION; gerbv-2.7.0/intl/config.charset0000755000175000017500000005517213421555746016324 0ustar carstencarsten#! /bin/sh # Output a system dependent table of character encoding aliases. # # Copyright (C) 2000-2004, 2006-2010 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # The table consists of lines of the form # ALIAS CANONICAL # # ALIAS is the (system dependent) result of "nl_langinfo (CODESET)". # ALIAS is compared in a case sensitive way. # # CANONICAL is the GNU canonical name for this character encoding. # It must be an encoding supported by libiconv. Support by GNU libc is # also desirable. CANONICAL is case insensitive. Usually an upper case # MIME charset name is preferred. # The current list of GNU canonical charset names is as follows. # # name MIME? used by which systems # (darwin = Mac OS X, woe32 = native Windows) # # ASCII, ANSI_X3.4-1968 glibc solaris freebsd netbsd darwin cygwin # ISO-8859-1 Y glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin # ISO-8859-2 Y glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin # ISO-8859-3 Y glibc solaris cygwin # ISO-8859-4 Y osf solaris freebsd netbsd openbsd darwin # ISO-8859-5 Y glibc aix hpux irix osf solaris freebsd netbsd openbsd darwin cygwin # ISO-8859-6 Y glibc aix hpux solaris cygwin # ISO-8859-7 Y glibc aix hpux irix osf solaris netbsd openbsd darwin cygwin # ISO-8859-8 Y glibc aix hpux osf solaris cygwin # ISO-8859-9 Y glibc aix hpux irix osf solaris darwin cygwin # ISO-8859-13 glibc netbsd openbsd darwin cygwin # ISO-8859-14 glibc cygwin # ISO-8859-15 glibc aix osf solaris freebsd netbsd openbsd darwin cygwin # KOI8-R Y glibc solaris freebsd netbsd openbsd darwin # KOI8-U Y glibc freebsd netbsd openbsd darwin cygwin # KOI8-T glibc # CP437 dos # CP775 dos # CP850 aix osf dos # CP852 dos # CP855 dos # CP856 aix # CP857 dos # CP861 dos # CP862 dos # CP864 dos # CP865 dos # CP866 freebsd netbsd openbsd darwin dos # CP869 dos # CP874 woe32 dos # CP922 aix # CP932 aix cygwin woe32 dos # CP943 aix # CP949 osf darwin woe32 dos # CP950 woe32 dos # CP1046 aix # CP1124 aix # CP1125 dos # CP1129 aix # CP1131 darwin # CP1250 woe32 # CP1251 glibc solaris netbsd openbsd darwin cygwin woe32 # CP1252 aix woe32 # CP1253 woe32 # CP1254 woe32 # CP1255 glibc woe32 # CP1256 woe32 # CP1257 woe32 # GB2312 Y glibc aix hpux irix solaris freebsd netbsd darwin # EUC-JP Y glibc aix hpux irix osf solaris freebsd netbsd darwin # EUC-KR Y glibc aix hpux irix osf solaris freebsd netbsd darwin cygwin # EUC-TW glibc aix hpux irix osf solaris netbsd # BIG5 Y glibc aix hpux osf solaris freebsd netbsd darwin cygwin # BIG5-HKSCS glibc solaris darwin # GBK glibc aix osf solaris darwin cygwin woe32 dos # GB18030 glibc solaris netbsd darwin # SHIFT_JIS Y hpux osf solaris freebsd netbsd darwin # JOHAB glibc solaris woe32 # TIS-620 glibc aix hpux osf solaris cygwin # VISCII Y glibc # TCVN5712-1 glibc # ARMSCII-8 glibc darwin # GEORGIAN-PS glibc cygwin # PT154 glibc # HP-ROMAN8 hpux # HP-ARABIC8 hpux # HP-GREEK8 hpux # HP-HEBREW8 hpux # HP-TURKISH8 hpux # HP-KANA8 hpux # DEC-KANJI osf # DEC-HANYU osf # UTF-8 Y glibc aix hpux osf solaris netbsd darwin cygwin # # Note: Names which are not marked as being a MIME name should not be used in # Internet protocols for information interchange (mail, news, etc.). # # Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications # must understand both names and treat them as equivalent. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM host="$1" os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'` echo "# This file contains a table of character encoding aliases," echo "# suitable for operating system '${os}'." echo "# It was automatically generated from config.charset." # List of references, updated during installation: echo "# Packages using this file: " case "$os" in linux-gnulibc1*) # Linux libc5 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "C ASCII" echo "POSIX ASCII" for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \ en en_AU en_BW en_CA en_DK en_GB en_IE en_NZ en_US en_ZA \ en_ZW es es_AR es_BO es_CL es_CO es_DO es_EC es_ES es_GT \ es_HN es_MX es_PA es_PE es_PY es_SV es_US es_UY es_VE et \ et_EE eu eu_ES fi fi_FI fo fo_FO fr fr_BE fr_CA fr_CH fr_FR \ fr_LU ga ga_IE gl gl_ES id id_ID in in_ID is is_IS it it_CH \ it_IT kl kl_GL nl nl_BE nl_NL no no_NO pt pt_BR pt_PT sv \ sv_FI sv_SE; do echo "$l ISO-8859-1" echo "$l.iso-8859-1 ISO-8859-1" echo "$l.iso-8859-15 ISO-8859-15" echo "$l.iso-8859-15@euro ISO-8859-15" echo "$l@euro ISO-8859-15" echo "$l.cp-437 CP437" echo "$l.cp-850 CP850" echo "$l.cp-1252 CP1252" echo "$l.cp-1252@euro CP1252" #echo "$l.atari-st ATARI-ST" # not a commonly used encoding echo "$l.utf-8 UTF-8" echo "$l.utf-8@euro UTF-8" done for l in cs cs_CZ hr hr_HR hu hu_HU pl pl_PL ro ro_RO sk sk_SK sl \ sl_SI sr sr_CS sr_YU; do echo "$l ISO-8859-2" echo "$l.iso-8859-2 ISO-8859-2" echo "$l.cp-852 CP852" echo "$l.cp-1250 CP1250" echo "$l.utf-8 UTF-8" done for l in mk mk_MK ru ru_RU; do echo "$l ISO-8859-5" echo "$l.iso-8859-5 ISO-8859-5" echo "$l.koi8-r KOI8-R" echo "$l.cp-866 CP866" echo "$l.cp-1251 CP1251" echo "$l.utf-8 UTF-8" done for l in ar ar_SA; do echo "$l ISO-8859-6" echo "$l.iso-8859-6 ISO-8859-6" echo "$l.cp-864 CP864" #echo "$l.cp-868 CP868" # not a commonly used encoding echo "$l.cp-1256 CP1256" echo "$l.utf-8 UTF-8" done for l in el el_GR gr gr_GR; do echo "$l ISO-8859-7" echo "$l.iso-8859-7 ISO-8859-7" echo "$l.cp-869 CP869" echo "$l.cp-1253 CP1253" echo "$l.cp-1253@euro CP1253" echo "$l.utf-8 UTF-8" echo "$l.utf-8@euro UTF-8" done for l in he he_IL iw iw_IL; do echo "$l ISO-8859-8" echo "$l.iso-8859-8 ISO-8859-8" echo "$l.cp-862 CP862" echo "$l.cp-1255 CP1255" echo "$l.utf-8 UTF-8" done for l in tr tr_TR; do echo "$l ISO-8859-9" echo "$l.iso-8859-9 ISO-8859-9" echo "$l.cp-857 CP857" echo "$l.cp-1254 CP1254" echo "$l.utf-8 UTF-8" done for l in lt lt_LT lv lv_LV; do #echo "$l BALTIC" # not a commonly used encoding, wrong encoding name echo "$l ISO-8859-13" done for l in ru_UA uk uk_UA; do echo "$l KOI8-U" done for l in zh zh_CN; do #echo "$l GB_2312-80" # not a commonly used encoding, wrong encoding name echo "$l GB2312" done for l in ja ja_JP ja_JP.EUC; do echo "$l EUC-JP" done for l in ko ko_KR; do echo "$l EUC-KR" done for l in th th_TH; do echo "$l TIS-620" done for l in fa fa_IR; do #echo "$l ISIRI-3342" # a broken encoding echo "$l.utf-8 UTF-8" done ;; linux* | *-gnu*) # With glibc-2.1 or newer, we don't need any canonicalization, # because glibc has iconv and both glibc and libiconv support all # GNU canonical names directly. Therefore, the Makefile does not # need to install the alias file at all. # The following applies only to glibc-2.0.x and older libcs. echo "ISO_646.IRV:1983 ASCII" ;; aix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "IBM-850 CP850" echo "IBM-856 CP856" echo "IBM-921 ISO-8859-13" echo "IBM-922 CP922" echo "IBM-932 CP932" echo "IBM-943 CP943" echo "IBM-1046 CP1046" echo "IBM-1124 CP1124" echo "IBM-1129 CP1129" echo "IBM-1252 CP1252" echo "IBM-eucCN GB2312" echo "IBM-eucJP EUC-JP" echo "IBM-eucKR EUC-KR" echo "IBM-eucTW EUC-TW" echo "big5 BIG5" echo "GBK GBK" echo "TIS-620 TIS-620" echo "UTF-8 UTF-8" ;; hpux*) echo "iso88591 ISO-8859-1" echo "iso88592 ISO-8859-2" echo "iso88595 ISO-8859-5" echo "iso88596 ISO-8859-6" echo "iso88597 ISO-8859-7" echo "iso88598 ISO-8859-8" echo "iso88599 ISO-8859-9" echo "iso885915 ISO-8859-15" echo "roman8 HP-ROMAN8" echo "arabic8 HP-ARABIC8" echo "greek8 HP-GREEK8" echo "hebrew8 HP-HEBREW8" echo "turkish8 HP-TURKISH8" echo "kana8 HP-KANA8" echo "tis620 TIS-620" echo "big5 BIG5" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "hp15CN GB2312" #echo "ccdc ?" # what is this? echo "SJIS SHIFT_JIS" echo "utf8 UTF-8" ;; irix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-9 ISO-8859-9" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" ;; osf*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "cp850 CP850" echo "big5 BIG5" echo "dechanyu DEC-HANYU" echo "dechanzi GB2312" echo "deckanji DEC-KANJI" echo "deckorean EUC-KR" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "GBK GBK" echo "KSC5601 CP949" echo "sdeckanji EUC-JP" echo "SJIS SHIFT_JIS" echo "TACTIS TIS-620" echo "UTF-8 UTF-8" ;; solaris*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-3 ISO-8859-3" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "koi8-r KOI8-R" echo "ansi-1251 CP1251" echo "BIG5 BIG5" echo "Big5-HKSCS BIG5-HKSCS" echo "gb2312 GB2312" echo "GBK GBK" echo "GB18030 GB18030" echo "cns11643 EUC-TW" echo "5601 EUC-KR" echo "ko_KR.johap92 JOHAB" echo "eucJP EUC-JP" echo "PCK SHIFT_JIS" echo "TIS620.2533 TIS-620" #echo "sun_eu_greek ?" # what is this? echo "UTF-8 UTF-8" ;; freebsd* | os2*) # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just # reuse FreeBSD's locale data for OS/2. echo "C ASCII" echo "US-ASCII ASCII" for l in la_LN lt_LN; do echo "$l.ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \ lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do echo "$l.ISO_8859-1 ISO-8859-1" echo "$l.DIS_8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do echo "$l.ISO_8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO_8859-4 ISO-8859-4" done for l in ru_RU ru_SU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO_8859-5 ISO-8859-5" echo "$l.CP866 CP866" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ja_JP.Shift_JIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; netbsd*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-13 ISO-8859-13" echo "ISO8859-15 ISO-8859-15" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "BIG5 BIG5" echo "SJIS SHIFT_JIS" ;; openbsd*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-13 ISO-8859-13" echo "ISO8859-15 ISO-8859-15" ;; darwin[56]*) # Darwin 6.8 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "C ASCII" for l in en_AU en_CA en_GB en_US la_LN; do echo "$l.US-ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE \ nl_NL no_NO pt_PT sv_SE; do echo "$l ISO-8859-1" echo "$l.ISO8859-1 ISO-8859-1" echo "$l.ISO8859-15 ISO-8859-15" done for l in la_LN; do echo "$l.ISO8859-1 ISO-8859-1" echo "$l.ISO8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN pl_PL sl_SI; do echo "$l.ISO8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO8859-4 ISO-8859-4" done for l in ru_RU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO8859-5 ISO-8859-5" echo "$l.CP866 CP866" done for l in bg_BG; do echo "$l.CP1251 CP1251" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; darwin*) # Darwin 7.5 has nl_langinfo(CODESET), but sometimes its value is # useless: # - It returns the empty string when LANG is set to a locale of the # form ll_CC, although ll_CC/LC_CTYPE is a symlink to an UTF-8 # LC_CTYPE file. # - The environment variables LANG, LC_CTYPE, LC_ALL are not set by # the system; nl_langinfo(CODESET) returns "US-ASCII" in this case. # - The documentation says: # "... all code that calls BSD system routines should ensure # that the const *char parameters of these routines are in UTF-8 # encoding. All BSD system functions expect their string # parameters to be in UTF-8 encoding and nothing else." # It also says # "An additional caveat is that string parameters for files, # paths, and other file-system entities must be in canonical # UTF-8. In a canonical UTF-8 Unicode string, all decomposable # characters are decomposed ..." # but this is not true: You can pass non-decomposed UTF-8 strings # to file system functions, and it is the OS which will convert # them to decomposed UTF-8 before accessing the file system. # - The Apple Terminal application displays UTF-8 by default. # - However, other applications are free to use different encodings: # - xterm uses ISO-8859-1 by default. # - TextEdit uses MacRoman by default. # We prefer UTF-8 over decomposed UTF-8-MAC because one should # minimize the use of decomposed Unicode. Unfortunately, through the # Darwin file system, decomposed UTF-8 strings are leaked into user # space nevertheless. # Then there are also the locales with encodings other than US-ASCII # and UTF-8. These locales can be occasionally useful to users (e.g. # when grepping through ISO-8859-1 encoded text files), when all their # file names are in US-ASCII. echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-13 ISO-8859-13" echo "ISO8859-15 ISO-8859-15" echo "KOI8-R KOI8-R" echo "KOI8-U KOI8-U" echo "CP866 CP866" echo "CP949 CP949" echo "CP1131 CP1131" echo "CP1251 CP1251" echo "eucCN GB2312" echo "GB2312 GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "Big5 BIG5" echo "Big5HKSCS BIG5-HKSCS" echo "GBK GBK" echo "GB18030 GB18030" echo "SJIS SHIFT_JIS" echo "ARMSCII-8 ARMSCII-8" echo "PT154 PT154" #echo "ISCII-DEV ?" echo "* UTF-8" ;; beos* | haiku*) # BeOS and Haiku have a single locale, and it has UTF-8 encoding. echo "* UTF-8" ;; msdosdjgpp*) # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "#" echo "# The encodings given here may not all be correct." echo "# If you find that the encoding given for your language and" echo "# country is not the one your DOS machine actually uses, just" echo "# correct it in this file, and send a mail to" echo "# Juan Manuel Guerrero " echo "# and Bruno Haible ." echo "#" echo "C ASCII" # ISO-8859-1 languages echo "ca CP850" echo "ca_ES CP850" echo "da CP865" # not CP850 ?? echo "da_DK CP865" # not CP850 ?? echo "de CP850" echo "de_AT CP850" echo "de_CH CP850" echo "de_DE CP850" echo "en CP850" echo "en_AU CP850" # not CP437 ?? echo "en_CA CP850" echo "en_GB CP850" echo "en_NZ CP437" echo "en_US CP437" echo "en_ZA CP850" # not CP437 ?? echo "es CP850" echo "es_AR CP850" echo "es_BO CP850" echo "es_CL CP850" echo "es_CO CP850" echo "es_CR CP850" echo "es_CU CP850" echo "es_DO CP850" echo "es_EC CP850" echo "es_ES CP850" echo "es_GT CP850" echo "es_HN CP850" echo "es_MX CP850" echo "es_NI CP850" echo "es_PA CP850" echo "es_PY CP850" echo "es_PE CP850" echo "es_SV CP850" echo "es_UY CP850" echo "es_VE CP850" echo "et CP850" echo "et_EE CP850" echo "eu CP850" echo "eu_ES CP850" echo "fi CP850" echo "fi_FI CP850" echo "fr CP850" echo "fr_BE CP850" echo "fr_CA CP850" echo "fr_CH CP850" echo "fr_FR CP850" echo "ga CP850" echo "ga_IE CP850" echo "gd CP850" echo "gd_GB CP850" echo "gl CP850" echo "gl_ES CP850" echo "id CP850" # not CP437 ?? echo "id_ID CP850" # not CP437 ?? echo "is CP861" # not CP850 ?? echo "is_IS CP861" # not CP850 ?? echo "it CP850" echo "it_CH CP850" echo "it_IT CP850" echo "lt CP775" echo "lt_LT CP775" echo "lv CP775" echo "lv_LV CP775" echo "nb CP865" # not CP850 ?? echo "nb_NO CP865" # not CP850 ?? echo "nl CP850" echo "nl_BE CP850" echo "nl_NL CP850" echo "nn CP865" # not CP850 ?? echo "nn_NO CP865" # not CP850 ?? echo "no CP865" # not CP850 ?? echo "no_NO CP865" # not CP850 ?? echo "pt CP850" echo "pt_BR CP850" echo "pt_PT CP850" echo "sv CP850" echo "sv_SE CP850" # ISO-8859-2 languages echo "cs CP852" echo "cs_CZ CP852" echo "hr CP852" echo "hr_HR CP852" echo "hu CP852" echo "hu_HU CP852" echo "pl CP852" echo "pl_PL CP852" echo "ro CP852" echo "ro_RO CP852" echo "sk CP852" echo "sk_SK CP852" echo "sl CP852" echo "sl_SI CP852" echo "sq CP852" echo "sq_AL CP852" echo "sr CP852" # CP852 or CP866 or CP855 ?? echo "sr_CS CP852" # CP852 or CP866 or CP855 ?? echo "sr_YU CP852" # CP852 or CP866 or CP855 ?? # ISO-8859-3 languages echo "mt CP850" echo "mt_MT CP850" # ISO-8859-5 languages echo "be CP866" echo "be_BE CP866" echo "bg CP866" # not CP855 ?? echo "bg_BG CP866" # not CP855 ?? echo "mk CP866" # not CP855 ?? echo "mk_MK CP866" # not CP855 ?? echo "ru CP866" echo "ru_RU CP866" echo "uk CP1125" echo "uk_UA CP1125" # ISO-8859-6 languages echo "ar CP864" echo "ar_AE CP864" echo "ar_DZ CP864" echo "ar_EG CP864" echo "ar_IQ CP864" echo "ar_IR CP864" echo "ar_JO CP864" echo "ar_KW CP864" echo "ar_MA CP864" echo "ar_OM CP864" echo "ar_QA CP864" echo "ar_SA CP864" echo "ar_SY CP864" # ISO-8859-7 languages echo "el CP869" echo "el_GR CP869" # ISO-8859-8 languages echo "he CP862" echo "he_IL CP862" # ISO-8859-9 languages echo "tr CP857" echo "tr_TR CP857" # Japanese echo "ja CP932" echo "ja_JP CP932" # Chinese echo "zh_CN GBK" echo "zh_TW CP950" # not CP938 ?? # Korean echo "kr CP949" # not CP934 ?? echo "kr_KR CP949" # not CP934 ?? # Thai echo "th CP874" echo "th_TH CP874" # Other echo "eo CP850" echo "eo_EO CP850" ;; esac gerbv-2.7.0/intl/plural-exp.h0000644000175000017500000001005113421555747015727 0ustar carstencarsten/* Expression parsing and evaluation for plural form selection. Copyright (C) 2000-2003, 2005-2007 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _PLURAL_EXP_H #define _PLURAL_EXP_H #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif #ifdef __cplusplus extern "C" { #endif enum expression_operator { /* Without arguments: */ var, /* The variable "n". */ num, /* Decimal number. */ /* Unary operators: */ lnot, /* Logical NOT. */ /* Binary operators: */ mult, /* Multiplication. */ divide, /* Division. */ module, /* Modulo operation. */ plus, /* Addition. */ minus, /* Subtraction. */ less_than, /* Comparison. */ greater_than, /* Comparison. */ less_or_equal, /* Comparison. */ greater_or_equal, /* Comparison. */ equal, /* Comparison for equality. */ not_equal, /* Comparison for inequality. */ land, /* Logical AND. */ lor, /* Logical OR. */ /* Ternary operators: */ qmop /* Question mark operator. */ }; /* This is the representation of the expressions to determine the plural form. */ struct expression { int nargs; /* Number of arguments. */ enum expression_operator operation; union { unsigned long int num; /* Number value for `num'. */ struct expression *args[3]; /* Up to three arguments. */ } val; }; /* This is the data structure to pass information to the parser and get the result in a thread-safe way. */ struct parse_args { const char *cp; struct expression *res; }; /* Names for the libintl functions are a problem. This source code is used 1. in the GNU C Library library, 2. in the GNU libintl library, 3. in the GNU gettext tools. The function names in each situation must be different, to allow for binary incompatible changes in 'struct expression'. Furthermore, 1. in the GNU C Library library, the names have a __ prefix, 2.+3. in the GNU libintl library and in the GNU gettext tools, the names must follow ANSI C and not start with __. So we have to distinguish the three cases. */ #ifdef _LIBC # define FREE_EXPRESSION __gettext_free_exp # define PLURAL_PARSE __gettextparse # define GERMANIC_PLURAL __gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION __gettext_extract_plural #elif defined (IN_LIBINTL) # define FREE_EXPRESSION libintl_gettext_free_exp # define PLURAL_PARSE libintl_gettextparse # define GERMANIC_PLURAL libintl_gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION libintl_gettext_extract_plural #else # define FREE_EXPRESSION free_plural_expression # define PLURAL_PARSE parse_plural_expression # define GERMANIC_PLURAL germanic_plural # define EXTRACT_PLURAL_EXPRESSION extract_plural_expression #endif extern void FREE_EXPRESSION (struct expression *exp) internal_function; extern int PLURAL_PARSE (struct parse_args *arg); extern struct expression GERMANIC_PLURAL attribute_hidden; extern void EXTRACT_PLURAL_EXPRESSION (const char *nullentry, const struct expression **pluralp, unsigned long int *npluralsp) internal_function; #if !defined (_LIBC) && !defined (IN_LIBINTL) && !defined (IN_LIBGLOCALE) extern unsigned long int plural_eval (const struct expression *pexp, unsigned long int n); #endif #ifdef __cplusplus } #endif #endif /* _PLURAL_EXP_H */ gerbv-2.7.0/intl/loadinfo.h0000644000175000017500000001201613421555747015434 0ustar carstencarsten/* Copyright (C) 1996-1999, 2000-2003, 2005-2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _LOADINFO_H #define _LOADINFO_H 1 /* Declarations of locale dependent catalog lookup functions. Implemented in localealias.c Possibly replace a locale name by another. explodename.c Split a locale name into its various fields. l10nflist.c Generate a list of filenames of possible message catalogs. finddomain.c Find and open the relevant message catalogs. The main function _nl_find_domain() in finddomain.c is declared in gettextP.h. */ #ifndef internal_function # define internal_function #endif #ifndef LIBINTL_DLL_EXPORTED # define LIBINTL_DLL_EXPORTED #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif /* Separator in PATH like lists of pathnames. */ #if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define PATH_SEPARATOR ';' #else /* Unix */ # define PATH_SEPARATOR ':' #endif /* Encoding of locale name parts. */ #define XPG_NORM_CODESET 1 #define XPG_CODESET 2 #define XPG_TERRITORY 4 #define XPG_MODIFIER 8 struct loaded_l10nfile { const char *filename; int decided; const void *data; struct loaded_l10nfile *next; struct loaded_l10nfile *successor[1]; }; /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ extern const char *_nl_normalize_codeset (const char *codeset, size_t name_len); /* Lookup a locale dependent file. *L10NFILE_LIST denotes a pool of lookup results of locale dependent files of the same kind, sorted in decreasing order of ->filename. DIRLIST and DIRLIST_LEN are an argz list of directories in which to look, containing at least one directory (i.e. DIRLIST_LEN > 0). MASK, LANGUAGE, TERRITORY, CODESET, NORMALIZED_CODESET, MODIFIER are the pieces of the locale name, as produced by _nl_explode_name(). FILENAME is the filename suffix. The return value is the lookup result, either found in *L10NFILE_LIST, or - if DO_ALLOCATE is nonzero - freshly allocated, or possibly NULL. If the return value is non-NULL, it is added to *L10NFILE_LIST, and its ->next field denotes the chaining inside *L10NFILE_LIST, and furthermore its ->successor[] field contains a list of other lookup results from which this lookup result inherits. */ extern struct loaded_l10nfile * _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *filename, int do_allocate); /* Lookup the real locale name for a locale alias NAME, or NULL if NAME is not a locale alias (but possibly a real locale name). The return value is statically allocated and must not be freed. */ /* Part of the libintl ABI only for the sake of the gettext.m4 macro. */ extern LIBINTL_DLL_EXPORTED const char *_nl_expand_alias (const char *name); /* Split a locale name NAME into its pieces: language, modifier, territory, codeset. NAME gets destructively modified: NUL bytes are inserted here and there. *LANGUAGE gets assigned NAME. Each of *MODIFIER, *TERRITORY, *CODESET gets assigned either a pointer into the old NAME string, or NULL. *NORMALIZED_CODESET gets assigned the expanded *CODESET, if it is different from *CODESET; this one is dynamically allocated and has to be freed by the caller. The return value is a bitmask, where each bit corresponds to one filled-in value: XPG_MODIFIER for *MODIFIER, XPG_TERRITORY for *TERRITORY, XPG_CODESET for *CODESET, XPG_NORM_CODESET for *NORMALIZED_CODESET. */ extern int _nl_explode_name (char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset); #endif /* loadinfo.h */ gerbv-2.7.0/intl/export.h0000644000175000017500000000023513421555746015161 0ustar carstencarsten #if @HAVE_VISIBILITY@ && BUILDING_LIBINTL #define LIBINTL_DLL_EXPORTED __attribute__((__visibility__("default"))) #else #define LIBINTL_DLL_EXPORTED #endif gerbv-2.7.0/intl/bindtextdom.c0000644000175000017500000002124513421555746016160 0ustar carstencarsten/* Implementation of the bindtextdomain(3) function Copyright (C) 1995-1998, 2000-2003, 2005-2006, 2008 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include # define gl_rwlock_define __libc_rwlock_define # define gl_rwlock_wrlock __libc_rwlock_wrlock # define gl_rwlock_unlock __libc_rwlock_unlock #else # include "lock.h" #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ /* Lock variable to protect the global data in the gettext implementation. */ gl_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define BINDTEXTDOMAIN __bindtextdomain # define BIND_TEXTDOMAIN_CODESET __bind_textdomain_codeset # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define BINDTEXTDOMAIN libintl_bindtextdomain # define BIND_TEXTDOMAIN_CODESET libintl_bind_textdomain_codeset #endif /* Specifies the directory name *DIRNAMEP and the output codeset *CODESETP to be used for the DOMAINNAME message catalog. If *DIRNAMEP or *CODESETP is NULL, the corresponding attribute is not modified, only the current value is returned. If DIRNAMEP or CODESETP is NULL, the corresponding attribute is neither modified nor returned. */ static void set_binding_values (const char *domainname, const char **dirnamep, const char **codesetp) { struct binding *binding; int modified; /* Some sanity checks. */ if (domainname == NULL || domainname[0] == '\0') { if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; return; } gl_rwlock_wrlock (_nl_state_lock); modified = 0; for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding != NULL) { if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The current binding has be to returned. */ *dirnamep = binding->dirname; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->dirname; if (strcmp (dirname, result) != 0) { if (strcmp (dirname, _nl_default_dirname) == 0) result = (char *) _nl_default_dirname; else { #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, dirname, len); #endif } if (__builtin_expect (result != NULL, 1)) { if (binding->dirname != _nl_default_dirname) free (binding->dirname); binding->dirname = result; modified = 1; } } *dirnamep = result; } } if (codesetp) { const char *codeset = *codesetp; if (codeset == NULL) /* The current binding has be to returned. */ *codesetp = binding->codeset; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->codeset; if (result == NULL || strcmp (codeset, result) != 0) { #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, codeset, len); #endif if (__builtin_expect (result != NULL, 1)) { free (binding->codeset); binding->codeset = result; modified = 1; } } *codesetp = result; } } } else if ((dirnamep == NULL || *dirnamep == NULL) && (codesetp == NULL || *codesetp == NULL)) { /* Simply return the default values. */ if (dirnamep) *dirnamep = _nl_default_dirname; if (codesetp) *codesetp = NULL; } else { /* We have to create a new binding. */ size_t len = strlen (domainname) + 1; struct binding *new_binding = (struct binding *) malloc (offsetof (struct binding, domainname) + len); if (__builtin_expect (new_binding == NULL, 0)) goto failed; memcpy (new_binding->domainname, domainname, len); if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The default value. */ dirname = _nl_default_dirname; else { if (strcmp (dirname, _nl_default_dirname) == 0) dirname = _nl_default_dirname; else { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; memcpy (result, dirname, len); #endif dirname = result; } } *dirnamep = dirname; new_binding->dirname = (char *) dirname; } else /* The default value. */ new_binding->dirname = (char *) _nl_default_dirname; if (codesetp) { const char *codeset = *codesetp; if (codeset != NULL) { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; memcpy (result, codeset, len); #endif codeset = result; } *codesetp = codeset; new_binding->codeset = (char *) codeset; } else new_binding->codeset = NULL; /* Now enqueue it. */ if (_nl_domain_bindings == NULL || strcmp (domainname, _nl_domain_bindings->domainname) < 0) { new_binding->next = _nl_domain_bindings; _nl_domain_bindings = new_binding; } else { binding = _nl_domain_bindings; while (binding->next != NULL && strcmp (domainname, binding->next->domainname) > 0) binding = binding->next; new_binding->next = binding->next; binding->next = new_binding; } modified = 1; /* Here we deal with memory allocation failures. */ if (0) { failed_codeset: if (new_binding->dirname != _nl_default_dirname) free (new_binding->dirname); failed_dirname: free (new_binding); failed: if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; } } /* If we modified any binding, we flush the caches. */ if (modified) ++_nl_msg_cat_cntr; gl_rwlock_unlock (_nl_state_lock); } /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ char * BINDTEXTDOMAIN (const char *domainname, const char *dirname) { set_binding_values (domainname, &dirname, NULL); return (char *) dirname; } /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ char * BIND_TEXTDOMAIN_CODESET (const char *domainname, const char *codeset) { set_binding_values (domainname, NULL, &codeset); return (char *) codeset; } #ifdef _LIBC /* Aliases for function names in GNU C Library. */ weak_alias (__bindtextdomain, bindtextdomain); weak_alias (__bind_textdomain_codeset, bind_textdomain_codeset); #endif gerbv-2.7.0/intl/ref-del.sin0000644000175000017500000000173113421555750015515 0ustar carstencarsten# Remove this package from a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// s/ @PACKAGE@ / / s/^/# Packages using this file:/ } gerbv-2.7.0/intl/dgettext.c0000644000175000017500000000327413421555746015471 0ustar carstencarsten/* Implementation of the dgettext(3) function. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DGETTEXT __dgettext # define DCGETTEXT INTUSE(__dcgettext) #else # define DGETTEXT libintl_dgettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale. */ char * DGETTEXT (const char *domainname, const char *msgid) { return DCGETTEXT (domainname, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dgettext, dgettext); #endif gerbv-2.7.0/intl/setlocale.c0000644000175000017500000010051713421555750015605 0ustar carstencarsten/* setlocale() function that respects the locale chosen by the user. Copyright (C) 2009 Free Software Foundation, Inc. Written by Bruno Haible , 2009. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif /* Override setlocale() and newlocale() so that when the default locale is requested (locale = "") and no relevant environment variable is set, the locale chosen by the user is used. This matters on MacOS X 10 and Windows. See the comments in localename.c, function gl_locale_name_default. */ #include #include #include /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if HAVE_VISIBILITY && BUILDING_DLL # define DLL_EXPORTED __attribute__((__visibility__("default"))) #elif defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif #include "gettextP.h" #if (defined __APPLE__ && defined __MACH__) || defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ # undef setlocale # undef newlocale /* Return string representation of locale category CATEGORY. */ static const char * category_to_name (int category) { const char *retval; switch (category) { case LC_COLLATE: retval = "LC_COLLATE"; break; case LC_CTYPE: retval = "LC_CTYPE"; break; case LC_MONETARY: retval = "LC_MONETARY"; break; case LC_NUMERIC: retval = "LC_NUMERIC"; break; case LC_TIME: retval = "LC_TIME"; break; case LC_MESSAGES: retval = "LC_MESSAGES"; break; default: /* If you have a better idea for a default value let me know. */ retval = "LC_XXX"; } return retval; } # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* The native Win32 setlocale() function expects locale names of the form "German" or "German_Germany" or "DEU", but not "de" or "de_DE". We need to convert the names from the form with ISO 639 language code and ISO 3166 country code to the form with English names or with three-letter identifier. The three-letter identifiers known by a Windows XP SP2 or SP3 are: AFK Afrikaans_South Africa.1252 ARA Arabic_Saudi Arabia.1256 ARB Arabic_Lebanon.1256 ARE Arabic_Egypt.1256 ARG Arabic_Algeria.1256 ARH Arabic_Bahrain.1256 ARI Arabic_Iraq.1256 ARJ Arabic_Jordan.1256 ARK Arabic_Kuwait.1256 ARL Arabic_Libya.1256 ARM Arabic_Morocco.1256 ARO Arabic_Oman.1256 ARQ Arabic_Qatar.1256 ARS Arabic_Syria.1256 ART Arabic_Tunisia.1256 ARU Arabic_U.A.E..1256 ARY Arabic_Yemen.1256 AZE Azeri (Latin)_Azerbaijan.1254 BEL Belarusian_Belarus.1251 BGR Bulgarian_Bulgaria.1251 BSB Bosnian_Bosnia and Herzegovina.1250 BSC Bosnian (Cyrillic)_Bosnia and Herzegovina.1250 (wrong encoding!) CAT Catalan_Spain.1252 CHH Chinese_Hong Kong S.A.R..950 CHI Chinese_Singapore.936 CHS Chinese_People's Republic of China.936 CHT Chinese_Taiwan.950 CSY Czech_Czech Republic.1250 CYM Welsh_United Kingdom.1252 DAN Danish_Denmark.1252 DEA German_Austria.1252 DEC German_Liechtenstein.1252 DEL German_Luxembourg.1252 DES German_Switzerland.1252 DEU German_Germany.1252 ELL Greek_Greece.1253 ENA English_Australia.1252 ENB English_Caribbean.1252 ENC English_Canada.1252 ENG English_United Kingdom.1252 ENI English_Ireland.1252 ENJ English_Jamaica.1252 ENL English_Belize.1252 ENP English_Republic of the Philippines.1252 ENS English_South Africa.1252 ENT English_Trinidad and Tobago.1252 ENU English_United States.1252 ENW English_Zimbabwe.1252 ENZ English_New Zealand.1252 ESA Spanish_Panama.1252 ESB Spanish_Bolivia.1252 ESC Spanish_Costa Rica.1252 ESD Spanish_Dominican Republic.1252 ESE Spanish_El Salvador.1252 ESF Spanish_Ecuador.1252 ESG Spanish_Guatemala.1252 ESH Spanish_Honduras.1252 ESI Spanish_Nicaragua.1252 ESL Spanish_Chile.1252 ESM Spanish_Mexico.1252 ESN Spanish_Spain.1252 ESO Spanish_Colombia.1252 ESP Spanish_Spain.1252 ESR Spanish_Peru.1252 ESS Spanish_Argentina.1252 ESU Spanish_Puerto Rico.1252 ESV Spanish_Venezuela.1252 ESY Spanish_Uruguay.1252 ESZ Spanish_Paraguay.1252 ETI Estonian_Estonia.1257 EUQ Basque_Spain.1252 FAR Farsi_Iran.1256 FIN Finnish_Finland.1252 FOS Faroese_Faroe Islands.1252 FPO Filipino_Philippines.1252 FRA French_France.1252 FRB French_Belgium.1252 FRC French_Canada.1252 FRL French_Luxembourg.1252 FRM French_Principality of Monaco.1252 FRS French_Switzerland.1252 FYN Frisian_Netherlands.1252 GLC Galician_Spain.1252 HEB Hebrew_Israel.1255 HRB Croatian_Bosnia and Herzegovina.1250 HRV Croatian_Croatia.1250 HUN Hungarian_Hungary.1250 IND Indonesian_Indonesia.1252 IRE Irish_Ireland.1252 ISL Icelandic_Iceland.1252 ITA Italian_Italy.1252 ITS Italian_Switzerland.1252 IUK Inuktitut (Latin)_Canada.1252 JPN Japanese_Japan.932 KKZ Kazakh_Kazakhstan.1251 KOR Korean_Korea.949 KYR Kyrgyz_Kyrgyzstan.1251 LBX Luxembourgish_Luxembourg.1252 LTH Lithuanian_Lithuania.1257 LVI Latvian_Latvia.1257 MKI FYRO Macedonian_Former Yugoslav Republic of Macedonia.1251 MON Mongolian_Mongolia.1251 MPD Mapudungun_Chile.1252 MSB Malay_Brunei Darussalam.1252 MSL Malay_Malaysia.1252 MWK Mohawk_Canada.1252 NLB Dutch_Belgium.1252 NLD Dutch_Netherlands.1252 NON Norwegian-Nynorsk_Norway.1252 NOR Norwegian (Bokmål)_Norway.1252 NSO Northern Sotho_South Africa.1252 PLK Polish_Poland.1250 PTB Portuguese_Brazil.1252 PTG Portuguese_Portugal.1252 QUB Quechua_Bolivia.1252 QUE Quechua_Ecuador.1252 QUP Quechua_Peru.1252 RMC Romansh_Switzerland.1252 ROM Romanian_Romania.1250 RUS Russian_Russia.1251 SKY Slovak_Slovakia.1250 SLV Slovenian_Slovenia.1250 SMA Sami (Southern)_Norway.1252 SMB Sami (Southern)_Sweden.1252 SME Sami (Northern)_Norway.1252 SMF Sami (Northern)_Sweden.1252 SMG Sami (Northern)_Finland.1252 SMJ Sami (Lule)_Norway.1252 SMK Sami (Lule)_Sweden.1252 SMN Sami (Inari)_Finland.1252 SMS Sami (Skolt)_Finland.1252 SQI Albanian_Albania.1250 SRB Serbian (Cyrillic)_Serbia and Montenegro.1251 SRL Serbian (Latin)_Serbia and Montenegro.1250 SRN Serbian (Cyrillic)_Bosnia and Herzegovina.1251 SRS Serbian (Latin)_Bosnia and Herzegovina.1250 SVE Swedish_Sweden.1252 SVF Swedish_Finland.1252 SWK Swahili_Kenya.1252 THA Thai_Thailand.874 TRK Turkish_Turkey.1254 TSN Tswana_South Africa.1252 TTT Tatar_Russia.1251 UKR Ukrainian_Ukraine.1251 URD Urdu_Islamic Republic of Pakistan.1256 USA English_United States.1252 UZB Uzbek (Latin)_Uzbekistan.1254 VIT Vietnamese_Viet Nam.1258 XHO Xhosa_South Africa.1252 ZHH Chinese_Hong Kong S.A.R..950 ZHI Chinese_Singapore.936 ZHM Chinese_Macau S.A.R..950 ZUL Zulu_South Africa.1252 */ /* Table from ISO 639 language code, optionally with country or script suffix, to English name. Keep in sync with the gl_locale_name_from_win32_LANGID function in localename.c! */ struct table_entry { const char *code; const char *english; }; static const struct table_entry language_table[] = { { "af", "Afrikaans" }, { "am", "Amharic" }, { "ar", "Arabic" }, { "arn", "Mapudungun" }, { "as", "Assamese" }, { "az@cyrillic", "Azeri (Cyrillic)" }, { "az@latin", "Azeri (Latin)" }, { "ba", "Bashkir" }, { "be", "Belarusian" }, { "ber", "Tamazight" }, { "ber@arabic", "Tamazight (Arabic)" }, { "ber@latin", "Tamazight (Latin)" }, { "bg", "Bulgarian" }, { "bin", "Edo" }, { "bn", "Bengali" }, { "bn_BD", "Bengali (Bangladesh)" }, { "bn_IN", "Bengali (India)" }, { "bnt", "Sutu" }, { "bo", "Tibetan" }, { "br", "Breton" }, { "bs", "BSB" }, /* "Bosnian (Latin)" */ { "bs@cyrillic", "BSC" }, /* Bosnian (Cyrillic) */ { "ca", "Catalan" }, { "chr", "Cherokee" }, { "co", "Corsican" }, { "cpe", "Hawaiian" }, { "cs", "Czech" }, { "cy", "Welsh" }, { "da", "Danish" }, { "de", "German" }, { "dsb", "Lower Sorbian" }, { "dv", "Divehi" }, { "el", "Greek" }, { "en", "English" }, { "es", "Spanish" }, { "et", "Estonian" }, { "eu", "Basque" }, { "fa", "Farsi" }, { "ff", "Fulfulde" }, { "fi", "Finnish" }, { "fo", "Faroese" }, /* "Faeroese" does not work */ { "fr", "French" }, { "fy", "Frisian" }, { "ga", "IRE" }, /* Gaelic (Ireland) */ { "gd", "Gaelic (Scotland)" }, { "gd", "Scottish Gaelic" }, { "gl", "Galician" }, { "gn", "Guarani" }, { "gsw", "Alsatian" }, { "gu", "Gujarati" }, { "ha", "Hausa" }, { "he", "Hebrew" }, { "hi", "Hindi" }, { "hr", "Croatian" }, { "hsb", "Upper Sorbian" }, { "hu", "Hungarian" }, { "hy", "Armenian" }, { "id", "Indonesian" }, { "ig", "Igbo" }, { "ii", "Yi" }, { "is", "Icelandic" }, { "it", "Italian" }, { "iu", "IUK" }, /* Inuktitut */ { "ja", "Japanese" }, { "ka", "Georgian" }, { "kk", "Kazakh" }, { "kl", "Greenlandic" }, { "km", "Cambodian" }, { "km", "Khmer" }, { "kn", "Kannada" }, { "ko", "Korean" }, { "kok", "Konkani" }, { "kr", "Kanuri" }, { "ks", "Kashmiri" }, { "ks_IN", "Kashmiri_India" }, { "ks_PK", "Kashmiri (Arabic)_Pakistan" }, { "ky", "Kyrgyz" }, { "la", "Latin" }, { "lb", "Luxembourgish" }, { "lo", "Lao" }, { "lt", "Lithuanian" }, { "lv", "Latvian" }, { "mi", "Maori" }, { "mk", "FYRO Macedonian" }, { "mk", "Macedonian" }, { "ml", "Malayalam" }, { "mn", "Mongolian" }, { "mni", "Manipuri" }, { "moh", "Mohawk" }, { "mr", "Marathi" }, { "ms", "Malay" }, { "mt", "Maltese" }, { "my", "Burmese" }, { "nb", "NOR" }, /* Norwegian Bokmål */ { "ne", "Nepali" }, { "nic", "Ibibio" }, { "nl", "Dutch" }, { "nn", "NON" }, /* Norwegian Nynorsk */ { "no", "Norwegian" }, { "nso", "Northern Sotho" }, { "nso", "Sepedi" }, { "oc", "Occitan" }, { "om", "Oromo" }, { "or", "Oriya" }, { "pa", "Punjabi" }, { "pap", "Papiamentu" }, { "pl", "Polish" }, { "prs", "Dari" }, { "ps", "Pashto" }, { "pt", "Portuguese" }, { "qu", "Quechua" }, { "qut", "K'iche'" }, { "rm", "Romansh" }, { "ro", "Romanian" }, { "ru", "Russian" }, { "rw", "Kinyarwanda" }, { "sa", "Sanskrit" }, { "sah", "Yakut" }, { "sd", "Sindhi" }, { "se", "Sami (Northern)" }, { "se", "Northern Sami" }, { "si", "Sinhalese" }, { "sk", "Slovak" }, { "sl", "Slovenian" }, { "sma", "Sami (Southern)" }, { "sma", "Southern Sami" }, { "smj", "Sami (Lule)" }, { "smj", "Lule Sami" }, { "smn", "Sami (Inari)" }, { "smn", "Inari Sami" }, { "sms", "Sami (Skolt)" }, { "sms", "Skolt Sami" }, { "so", "Somali" }, { "sq", "Albanian" }, { "sr", "Serbian (Latin)" }, { "sr@cyrillic", "SRB" }, /* Serbian (Cyrillic) */ { "sw", "Swahili" }, { "syr", "Syriac" }, { "ta", "Tamil" }, { "te", "Telugu" }, { "tg", "Tajik" }, { "th", "Thai" }, { "ti", "Tigrinya" }, { "tk", "Turkmen" }, { "tl", "Filipino" }, { "tn", "Tswana" }, { "tr", "Turkish" }, { "ts", "Tsonga" }, { "tt", "Tatar" }, { "ug", "Uighur" }, { "uk", "Ukrainian" }, { "ur", "Urdu" }, { "uz", "Uzbek" }, { "uz", "Uzbek (Latin)" }, { "uz@cyrillic", "Uzbek (Cyrillic)" }, { "ve", "Venda" }, { "vi", "Vietnamese" }, { "wen", "Sorbian" }, { "wo", "Wolof" }, { "xh", "Xhosa" }, { "yi", "Yiddish" }, { "yo", "Yoruba" }, { "zh", "Chinese" }, { "zu", "Zulu" } }; /* Table from ISO 3166 country code to English name. Keep in sync with the gl_locale_name_from_win32_LANGID function in localename.c! */ static const struct table_entry country_table[] = { { "AE", "U.A.E." }, { "AF", "Afghanistan" }, { "AL", "Albania" }, { "AM", "Armenia" }, { "AN", "Netherlands Antilles" }, { "AR", "Argentina" }, { "AT", "Austria" }, { "AU", "Australia" }, { "AZ", "Azerbaijan" }, { "BA", "Bosnia and Herzegovina" }, { "BD", "Bangladesh" }, { "BE", "Belgium" }, { "BG", "Bulgaria" }, { "BH", "Bahrain" }, { "BN", "Brunei Darussalam" }, { "BO", "Bolivia" }, { "BR", "Brazil" }, { "BT", "Bhutan" }, { "BY", "Belarus" }, { "BZ", "Belize" }, { "CA", "Canada" }, { "CG", "Congo" }, { "CH", "Switzerland" }, { "CI", "Cote d'Ivoire" }, { "CL", "Chile" }, { "CM", "Cameroon" }, { "CN", "People's Republic of China" }, { "CO", "Colombia" }, { "CR", "Costa Rica" }, { "CS", "Serbia and Montenegro" }, { "CZ", "Czech Republic" }, { "DE", "Germany" }, { "DK", "Denmark" }, { "DO", "Dominican Republic" }, { "DZ", "Algeria" }, { "EC", "Ecuador" }, { "EE", "Estonia" }, { "EG", "Egypt" }, { "ER", "Eritrea" }, { "ES", "Spain" }, { "ET", "Ethiopia" }, { "FI", "Finland" }, { "FO", "Faroe Islands" }, { "FR", "France" }, { "GB", "United Kingdom" }, { "GD", "Caribbean" }, { "GE", "Georgia" }, { "GL", "Greenland" }, { "GR", "Greece" }, { "GT", "Guatemala" }, { "HK", "Hong Kong" }, { "HK", "Hong Kong S.A.R." }, { "HN", "Honduras" }, { "HR", "Croatia" }, { "HT", "Haiti" }, { "HU", "Hungary" }, { "ID", "Indonesia" }, { "IE", "Ireland" }, { "IL", "Israel" }, { "IN", "India" }, { "IQ", "Iraq" }, { "IR", "Iran" }, { "IS", "Iceland" }, { "IT", "Italy" }, { "JM", "Jamaica" }, { "JO", "Jordan" }, { "JP", "Japan" }, { "KE", "Kenya" }, { "KG", "Kyrgyzstan" }, { "KH", "Cambodia" }, { "KR", "South Korea" }, { "KW", "Kuwait" }, { "KZ", "Kazakhstan" }, { "LA", "Laos" }, { "LB", "Lebanon" }, { "LI", "Liechtenstein" }, { "LK", "Sri Lanka" }, { "LT", "Lithuania" }, { "LU", "Luxembourg" }, { "LV", "Latvia" }, { "LY", "Libya" }, { "MA", "Morocco" }, { "MC", "Principality of Monaco" }, { "MD", "Moldava" }, { "MD", "Moldova" }, { "ME", "Montenegro" }, { "MK", "Former Yugoslav Republic of Macedonia" }, { "ML", "Mali" }, { "MM", "Myanmar" }, { "MN", "Mongolia" }, { "MO", "Macau S.A.R." }, { "MT", "Malta" }, { "MV", "Maldives" }, { "MX", "Mexico" }, { "MY", "Malaysia" }, { "NG", "Nigeria" }, { "NI", "Nicaragua" }, { "NL", "Netherlands" }, { "NO", "Norway" }, { "NP", "Nepal" }, { "NZ", "New Zealand" }, { "OM", "Oman" }, { "PA", "Panama" }, { "PE", "Peru" }, { "PH", "Philippines" }, { "PK", "Islamic Republic of Pakistan" }, { "PL", "Poland" }, { "PR", "Puerto Rico" }, { "PT", "Portugal" }, { "PY", "Paraguay" }, { "QA", "Qatar" }, { "RE", "Reunion" }, { "RO", "Romania" }, { "RS", "Serbia" }, { "RU", "Russia" }, { "RW", "Rwanda" }, { "SA", "Saudi Arabia" }, { "SE", "Sweden" }, { "SG", "Singapore" }, { "SI", "Slovenia" }, { "SK", "Slovak" }, { "SN", "Senegal" }, { "SO", "Somalia" }, { "SR", "Suriname" }, { "SV", "El Salvador" }, { "SY", "Syria" }, { "TH", "Thailand" }, { "TJ", "Tajikistan" }, { "TM", "Turkmenistan" }, { "TN", "Tunisia" }, { "TR", "Turkey" }, { "TT", "Trinidad and Tobago" }, { "TW", "Taiwan" }, { "TZ", "Tanzania" }, { "UA", "Ukraine" }, { "US", "United States" }, { "UY", "Uruguay" }, { "VA", "Vatican" }, { "VE", "Venezuela" }, { "VN", "Viet Nam" }, { "YE", "Yemen" }, { "ZA", "South Africa" }, { "ZW", "Zimbabwe" } }; /* Given a string STRING, find the set of indices i such that TABLE[i].code is the given STRING. It is a range [lo,hi-1]. */ typedef struct { size_t lo; size_t hi; } range_t; static void search (const struct table_entry *table, size_t table_size, const char *string, range_t *result) { /* The table is sorted. Perform a binary search. */ size_t hi = table_size; size_t lo = 0; while (lo < hi) { /* Invariant: for i < lo, strcmp (table[i].code, string) < 0, for i >= hi, strcmp (table[i].code, string) > 0. */ size_t mid = (hi + lo) >> 1; /* >= lo, < hi */ int cmp = strcmp (table[mid].code, string); if (cmp < 0) lo = mid + 1; else if (cmp > 0) hi = mid; else { /* Found an i with strcmp (language_table[i].code, string) == 0. Find the entire interval of such i. */ { size_t i; for (i = mid; i > lo; ) { i--; if (strcmp (table[i].code, string) < 0) { lo = i + 1; break; } } } { size_t i; for (i = mid; i < hi; i++) { if (strcmp (table[i].code, string) > 0) { hi = i; break; } } } /* The set of i with strcmp (language_table[i].code, string) == 0 is the interval [lo, hi-1]. */ break; } } result->lo = lo; result->hi = hi; } /* Like setlocale, but accept also locale names in the form ll or ll_CC, where ll is an ISO 639 language code and CC is an ISO 3166 country code. */ static char * setlocale_unixlike (int category, const char *locale) { char *result; char llCC_buf[64]; char ll_buf[64]; char CC_buf[64]; /* First, try setlocale with the original argument unchanged. */ result = setlocale (category, locale); if (result != NULL) return result; /* Otherwise, assume the argument is in the form language[_territory][.codeset][@modifier] and try to map it using the tables. */ if (strlen (locale) < sizeof (llCC_buf)) { /* Second try: Remove the codeset part. */ { const char *p = locale; char *q = llCC_buf; /* Copy the part before the dot. */ for (; *p != '\0' && *p != '.'; p++, q++) *q = *p; if (*p == '.') /* Skip the part up to the '@', if any. */ for (; *p != '\0' && *p != '@'; p++) ; /* Copy the part starting with '@', if any. */ for (; *p != '\0'; p++, q++) *q = *p; *q = '\0'; } /* llCC_buf now contains language[_territory][@modifier] */ if (strcmp (llCC_buf, locale) != 0) { result = setlocale (category, llCC_buf); if (result != NULL) return result; } /* Look it up in language_table. */ { range_t range; size_t i; search (language_table, sizeof (language_table) / sizeof (language_table[0]), llCC_buf, &range); for (i = range.lo; i < range.hi; i++) { /* Try the replacement in language_table[i]. */ result = setlocale (category, language_table[i].english); if (result != NULL) return result; } } /* Split language[_territory][@modifier] into ll_buf = language[@modifier] and CC_buf = territory */ { const char *underscore = strchr (llCC_buf, '_'); if (underscore != NULL) { const char *territory_start = underscore + 1; const char *territory_end = strchr (territory_start, '@'); if (territory_end == NULL) territory_end = territory_start + strlen (territory_start); memcpy (ll_buf, llCC_buf, underscore - llCC_buf); strcpy (ll_buf + (underscore - llCC_buf), territory_end); memcpy (CC_buf, territory_start, territory_end - territory_start); CC_buf[territory_end - territory_start] = '\0'; { /* Look up ll_buf in language_table and CC_buf in country_table. */ range_t language_range; search (language_table, sizeof (language_table) / sizeof (language_table[0]), ll_buf, &language_range); if (language_range.lo < language_range.hi) { range_t country_range; search (country_table, sizeof (country_table) / sizeof (country_table[0]), CC_buf, &country_range); if (country_range.lo < country_range.hi) { size_t i; size_t j; for (i = language_range.lo; i < language_range.hi; i++) for (j = country_range.lo; j < country_range.hi; j++) { /* Concatenate the replacements. */ const char *part1 = language_table[i].english; size_t part1_len = strlen (part1); const char *part2 = country_table[j].english; size_t part2_len = strlen (part2) + 1; char buf[64+64]; if (!(part1_len + 1 + part2_len <= sizeof (buf))) abort (); memcpy (buf, part1, part1_len); buf[part1_len] = '_'; memcpy (buf + part1_len + 1, part2, part2_len); /* Try the concatenated replacements. */ result = setlocale (category, buf); if (result != NULL) return result; } } /* Try omitting the country entirely. This may set a locale corresponding to the wrong country, but is better than failing entirely. */ { size_t i; for (i = language_range.lo; i < language_range.hi; i++) { /* Try only the language replacement. */ result = setlocale (category, language_table[i].english); if (result != NULL) return result; } } } } } } } /* Failed. */ return NULL; } # else # define setlocale_unixlike setlocale # endif # if LC_MESSAGES == 1729 /* The system does not store an LC_MESSAGES locale category. Do it here. */ static char lc_messages_name[64] = "C"; /* Like setlocale, but support also LC_MESSAGES. */ static char * setlocale_single (int category, const char *locale) { if (category == LC_MESSAGES) { if (locale != NULL) { lc_messages_name[sizeof (lc_messages_name) - 1] = '\0'; strncpy (lc_messages_name, locale, sizeof (lc_messages_name) - 1); } return lc_messages_name; } else return setlocale_unixlike (category, locale); } # else # define setlocale_single setlocale_unixlike # endif DLL_EXPORTED char * libintl_setlocale (int category, const char *locale) { if (locale != NULL && locale[0] == '\0') { /* A request to the set the current locale to the default locale. */ if (category == LC_ALL) { /* Set LC_CTYPE first. Then the other categories. */ static int const categories[] = { LC_NUMERIC, LC_TIME, LC_COLLATE, LC_MONETARY, LC_MESSAGES }; char *saved_locale; const char *base_name; unsigned int i; /* Back up the old locale, in case one of the steps fails. */ saved_locale = setlocale (LC_ALL, NULL); if (saved_locale == NULL) return NULL; saved_locale = strdup (saved_locale); if (saved_locale == NULL) return NULL; /* Set LC_CTYPE category. Set all other categories (except possibly LC_MESSAGES) to the same value in the same call; this is likely to save calls. */ base_name = gl_locale_name_environ (LC_CTYPE, category_to_name (LC_CTYPE)); if (base_name == NULL) base_name = gl_locale_name_default (); if (setlocale_unixlike (LC_ALL, base_name) == NULL) goto fail; # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* On native Windows, setlocale(LC_ALL,...) may succeed but set the LC_CTYPE category to an invalid value ("C") when it does not support the specified encoding. Report a failure instead. */ if (strchr (base_name, '.') != NULL && strcmp (setlocale (LC_CTYPE, NULL), "C") == 0) goto fail; # endif for (i = 0; i < sizeof (categories) / sizeof (categories[0]); i++) { int cat = categories[i]; const char *name; name = gl_locale_name_environ (cat, category_to_name (cat)); if (name == NULL) name = gl_locale_name_default (); /* If name is the same as base_name, it has already been set through the setlocale call before the loop. */ if (strcmp (name, base_name) != 0 # if LC_MESSAGES == 1729 || cat == LC_MESSAGES # endif ) if (setlocale_single (cat, name) == NULL) goto fail; } /* All steps were successful. */ ++_nl_msg_cat_cntr; free (saved_locale); return setlocale (LC_ALL, NULL); fail: if (saved_locale[0] != '\0') /* don't risk an endless recursion */ setlocale (LC_ALL, saved_locale); free (saved_locale); return NULL; } else { char *result; const char *name = gl_locale_name_environ (category, category_to_name (category)); if (name == NULL) name = gl_locale_name_default (); result = setlocale_single (category, name); if (result != NULL) ++_nl_msg_cat_cntr; return result; } } else { # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ if (category == LC_ALL && locale != NULL && strchr (locale, '.') != NULL) { char *saved_locale; /* Back up the old locale. */ saved_locale = setlocale (LC_ALL, NULL); if (saved_locale == NULL) return NULL; saved_locale = strdup (saved_locale); if (saved_locale == NULL) return NULL; if (setlocale_unixlike (LC_ALL, locale) == NULL) { free (saved_locale); return NULL; } /* On native Windows, setlocale(LC_ALL,...) may succeed but set the LC_CTYPE category to an invalid value ("C") when it does not support the specified encoding. Report a failure instead. */ if (strcmp (setlocale (LC_CTYPE, NULL), "C") == 0) { if (saved_locale[0] != '\0') /* don't risk an endless recursion */ setlocale (LC_ALL, saved_locale); free (saved_locale); return NULL; } /* It was really successful. */ ++_nl_msg_cat_cntr; free (saved_locale); return setlocale (LC_ALL, NULL); } else # endif { char *result = setlocale_single (category, locale); if (result != NULL) ++_nl_msg_cat_cntr; return result; } } } # if HAVE_NEWLOCALE DLL_EXPORTED locale_t libintl_newlocale (int category_mask, const char *locale, locale_t base) { if (category_mask != 0 && locale != NULL && locale[0] == '\0') { /* A request to construct a locale_t object that refers to the default locale. */ /* Set LC_CTYPE first. Then the other categories. */ static struct { int cat; int mask; } const categories[] = { { LC_CTYPE, LC_CTYPE_MASK }, { LC_NUMERIC, LC_NUMERIC_MASK }, { LC_TIME, LC_TIME_MASK }, { LC_COLLATE, LC_COLLATE_MASK }, { LC_MONETARY, LC_MONETARY_MASK }, { LC_MESSAGES, LC_MESSAGES_MASK } }; locale_t orig_base = base; if ((LC_ALL_MASK & ~category_mask) == 0) { const char *base_name; unsigned int i; /* Set LC_CTYPE category. Set all other categories (except possibly LC_MESSAGES) to the same value in the same call; this is likely to save calls. */ base_name = gl_locale_name_environ (LC_CTYPE, category_to_name (LC_CTYPE)); if (base_name == NULL) base_name = gl_locale_name_default (); base = newlocale (LC_ALL_MASK, base_name, base); if (base == NULL) return NULL; for (i = 1; i < sizeof (categories) / sizeof (categories[0]); i++) { int category = categories[i].cat; int category_mask = categories[i].mask; const char *name; name = gl_locale_name_environ (category, category_to_name (category)); if (name == NULL) name = gl_locale_name_default (); /* If name is the same as base_name, it has already been set through the setlocale call before the loop. */ if (strcmp (name, base_name) != 0) { locale_t copy = newlocale (category_mask, name, base); if (copy == NULL) goto fail; /* No need to call freelocale (base) if copy != base; the newlocale function already takes care of doing it. */ base = copy; } } } else { unsigned int i; for (i = 0; i < sizeof (categories) / sizeof (categories[0]); i++) { int cat_mask = categories[i].mask; if ((category_mask & cat_mask) != 0) { int cat = categories[i].cat; const char *name; locale_t copy; name = gl_locale_name_environ (cat, category_to_name (cat)); if (name == NULL) name = gl_locale_name_default (); copy = newlocale (cat_mask, name, base); if (copy == NULL) goto fail; /* No need to call freelocale (base) if copy != base; the newlocale function already takes care of doing it. */ base = copy; } } } /* All steps were successful. */ return base; fail: if (base != NULL && orig_base == NULL) { int saved_errno = errno; freelocale (base); errno = saved_errno; } return NULL; } else return newlocale (category_mask, locale, base); } # endif #endif gerbv-2.7.0/intl/Makefile.in0000644000175000017500000006002713421555746015541 0ustar carstencarsten# Makefile for directory with message catalog handling library of GNU gettext # Copyright (C) 1995-1998, 2000-2007, 2009-2012 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = @SHELL@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = .. # The VPATH variables allows builds with $builddir != $srcdir, assuming a # 'make' program that supports VPATH (such as GNU make). This line is removed # by autoconf automatically when "$(srcdir)" = ".". # In this directory, the VPATH handling is particular: # 1. If INTL_LIBTOOL_SUFFIX_PREFIX is 'l' (indicating a build with libtool), # the .c -> .lo rules carefully use $(srcdir), so that VPATH can be omitted. # 2. If PACKAGE = gettext-tools, VPATH _must_ be omitted, because otherwise # 'make' does the wrong thing if GNU gettext was configured with # "./configure --srcdir=`pwd`", namely it gets confused by the .lo and .la # files it finds in srcdir = ../../gettext-runtime/intl. VPATH = $(srcdir) prefix = @prefix@ exec_prefix = @exec_prefix@ transform = @program_transform_name@ libdir = @libdir@ includedir = @includedir@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/intl aliaspath = $(localedir) subdir = intl INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ l = @INTL_LIBTOOL_SUFFIX_PREFIX@ AR = ar CC = @CC@ LIBTOOL = @LIBTOOL@ RANLIB = @RANLIB@ YACC = @INTLBISON@ -y -d YFLAGS = --name-prefix=__gettext # Windows resource compiler (windres). Used when libtool is not used. WINDRES = @WINDRES@ # Windows resource compiler (windres). Used via libtool. RC = @RC@ # Support for silent-rules. AM_V_at = $(am__v_at_$(V)) am__v_at_ = $(am__v_at_@INTL_DEFAULT_VERBOSITY@) am__v_at_0 = @ AM_V_AR = $(am__v_AR_$(V)) am__v_AR_ = $(am__v_AR_@INTL_DEFAULT_VERBOSITY@) am__v_AR_0 = @echo " AR " $@; AM_V_CC = $(am__v_CC_$(V)) am__v_CC_ = $(am__v_CC_@INTL_DEFAULT_VERBOSITY@) am__v_CC_0 = @echo " CC " $@; AM_V_GEN = $(am__v_GEN_$(V)) am__v_GEN_ = $(am__v_GEN_@INTL_DEFAULT_VERBOSITY@) am__v_GEN_0 = @echo " GEN " $@; AM_V_YACC = $(am__v_YACC_$(V)) am__v_YACC_ = $(am__v_YACC_@INTL_DEFAULT_VERBOSITY@) am__v_YACC_0 = @echo " YACC " $@; AM_V_lt = $(am__v_lt_$(V)) am__v_lt_ = $(am__v_lt_@INTL_DEFAULT_VERBOSITY@) am__v_lt_0 = --silent # -DBUILDING_LIBINTL: Change expansion of LIBINTL_DLL_EXPORTED macro. # -DBUILDING_DLL: Change expansion of RELOCATABLE_DLL_EXPORTED macro. DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ -DLIBDIR=\"$(libdir)\" -DBUILDING_LIBINTL -DBUILDING_DLL -DIN_LIBINTL \ -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DNO_XMALLOC \ -Dset_relocation_prefix=libintl_set_relocation_prefix \ -Drelocate=libintl_relocate \ -DDEPENDS_ON_LIBICONV=1 @DEFS@ CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ @CFLAG_VISIBILITY@ LDFLAGS = @LDFLAGS@ $(LDFLAGS_@WOE32DLL@) LDFLAGS_yes = -Wl,--export-all-symbols LDFLAGS_no = LIBS = @LIBS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) HEADERS = \ gmo.h \ gettextP.h \ hash-string.h \ loadinfo.h \ plural-exp.h \ eval-plural.h \ localcharset.h \ lock.h \ relocatable.h \ tsearch.h tsearch.c \ verify.h \ xsize.h \ printf-args.h printf-args.c \ printf-parse.h wprintf-parse.h printf-parse.c \ vasnprintf.h vasnwprintf.h vasnprintf.c \ os2compat.h \ libgnuintl.in.h SOURCES = \ bindtextdom.c \ dcgettext.c \ dgettext.c \ gettext.c \ finddomain.c \ hash-string.c \ loadmsgcat.c \ localealias.c \ textdomain.c \ l10nflist.c \ explodename.c \ dcigettext.c \ dcngettext.c \ dngettext.c \ ngettext.c \ plural.y \ plural-exp.c \ localcharset.c \ threadlib.c \ lock.c \ relocatable.c \ langprefs.c \ localename.c \ log.c \ printf.c \ setlocale.c \ version.c \ xsize.c \ osdep.c \ os2compat.c \ intl-exports.c \ intl-compat.c OBJECTS = \ bindtextdom.$lo \ dcgettext.$lo \ dgettext.$lo \ gettext.$lo \ finddomain.$lo \ hash-string.$lo \ loadmsgcat.$lo \ localealias.$lo \ textdomain.$lo \ l10nflist.$lo \ explodename.$lo \ dcigettext.$lo \ dcngettext.$lo \ dngettext.$lo \ ngettext.$lo \ plural.$lo \ plural-exp.$lo \ localcharset.$lo \ threadlib.$lo \ lock.$lo \ relocatable.$lo \ langprefs.$lo \ localename.$lo \ log.$lo \ printf.$lo \ setlocale.$lo \ version.$lo \ xsize.$lo \ osdep.$lo \ intl-compat.$lo OBJECTS_RES_yes = libintl.res.$lo OBJECTS_RES_no = DISTFILES.common = Makefile.in \ config.charset locale.alias ref-add.sin ref-del.sin export.h libintl.rc \ $(HEADERS) $(SOURCES) DISTFILES.generated = plural.c DISTFILES.normal = VERSION DISTFILES.gettext = COPYING.LIB libintl.glibc README.woe32 DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \ COPYING.LIB-2 COPYING.LIB-2.0 COPYING.LIB-2.1 \ gettext.h libgettext.h plural-eval.c libgnuintl.h \ libgnuintl.h_vms Makefile.vms libgnuintl.h.msvc-static \ libgnuintl.h.msvc-shared Makefile.msvc all: all-@USE_INCLUDED_LIBINTL@ all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed all-no: all-no-@BUILD_INCLUDED_LIBINTL@ all-no-yes: libgnuintl.$la all-no-no: libintl.a libgnuintl.a: $(OBJECTS) $(AM_V_at)rm -f $@ $(AM_V_AR)$(AR) cru $@ $(OBJECTS) $(AM_V_at)$(RANLIB) $@ libintl.la libgnuintl.la: $(OBJECTS) $(OBJECTS_RES_@WOE32@) $(AM_V_GEN)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=link \ $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \ $(OBJECTS) @LTLIBICONV@ @INTL_MACOSX_LIBS@ $(LIBS) @LTLIBTHREAD@ @LTLIBC@ \ $(OBJECTS_RES_@WOE32@) \ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ -rpath $(libdir) \ -no-undefined # Libtool's library version information for libintl. # Before making a gettext release, the gettext maintainer must change this # according to the libtool documentation, section "Library interface versions". # Maintainers of other packages that include the intl directory must *not* # change these values. LTV_CURRENT=9 LTV_REVISION=2 LTV_AGE=1 .SUFFIXES: .SUFFIXES: .c .y .o .lo .sin .sed .c.o: $(AM_V_CC)$(COMPILE) $< .y.c: $(AM_V_YACC)$(YACC) $(YFLAGS) --output $@ $< $(AM_V_at)rm -f $*.h bindtextdom.lo: $(srcdir)/bindtextdom.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/bindtextdom.c dcgettext.lo: $(srcdir)/dcgettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/dcgettext.c dgettext.lo: $(srcdir)/dgettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/dgettext.c gettext.lo: $(srcdir)/gettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/gettext.c finddomain.lo: $(srcdir)/finddomain.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/finddomain.c hash-string.lo: $(srcdir)/hash-string.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/hash-string.c loadmsgcat.lo: $(srcdir)/loadmsgcat.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/loadmsgcat.c localealias.lo: $(srcdir)/localealias.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/localealias.c textdomain.lo: $(srcdir)/textdomain.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/textdomain.c l10nflist.lo: $(srcdir)/l10nflist.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/l10nflist.c explodename.lo: $(srcdir)/explodename.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/explodename.c dcigettext.lo: $(srcdir)/dcigettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/dcigettext.c dcngettext.lo: $(srcdir)/dcngettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/dcngettext.c dngettext.lo: $(srcdir)/dngettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/dngettext.c ngettext.lo: $(srcdir)/ngettext.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/ngettext.c plural.lo: $(srcdir)/plural.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/plural.c plural-exp.lo: $(srcdir)/plural-exp.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/plural-exp.c localcharset.lo: $(srcdir)/localcharset.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/localcharset.c threadlib.lo: $(srcdir)/threadlib.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/threadlib.c lock.lo: $(srcdir)/lock.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/lock.c relocatable.lo: $(srcdir)/relocatable.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/relocatable.c langprefs.lo: $(srcdir)/langprefs.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/langprefs.c localename.lo: $(srcdir)/localename.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/localename.c log.lo: $(srcdir)/log.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/log.c printf.lo: $(srcdir)/printf.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/printf.c setlocale.lo: $(srcdir)/setlocale.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/setlocale.c version.lo: $(srcdir)/version.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/version.c xsize.lo: $(srcdir)/xsize.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/xsize.c osdep.lo: $(srcdir)/osdep.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/osdep.c intl-compat.lo: $(srcdir)/intl-compat.c $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(COMPILE) $(srcdir)/intl-compat.c # This rule is executed only on Woe32 systems. # The following sed expressions come from the windres-options script. They are # inlined here, so that they can be written in a Makefile without requiring a # temporary file. They must contain literal newlines rather than semicolons, # so that they work with the sed-3.02 that is shipped with MSYS. libintl.res.o: $(srcdir)/libintl.rc nlinit=`echo 'nl="'; echo '"'`; eval "$$nlinit"; \ sed_extract_major='/^[0-9]/{'$${nl}'s/^\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ sed_extract_minor='/^[0-9][0-9]*[.][0-9]/{'$${nl}'s/^[0-9]*[.]\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ sed_extract_subminor='/^[0-9][0-9]*[.][0-9][0-9]*[.][0-9]/{'$${nl}'s/^[0-9]*[.][0-9]*[.]\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ $(WINDRES) \ "-DPACKAGE_VERSION_STRING=\\\"$(VERSION)\\\"" \ "-DPACKAGE_VERSION_MAJOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_major"` \ "-DPACKAGE_VERSION_MINOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_minor"` \ "-DPACKAGE_VERSION_SUBMINOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_subminor"` \ -i $(srcdir)/libintl.rc -o libintl.res.o --output-format=coff libintl.res.lo: $(srcdir)/libintl.rc nlinit=`echo 'nl="'; echo '"'`; eval "$$nlinit"; \ sed_extract_major='/^[0-9]/{'$${nl}'s/^\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ sed_extract_minor='/^[0-9][0-9]*[.][0-9]/{'$${nl}'s/^[0-9]*[.]\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ sed_extract_subminor='/^[0-9][0-9]*[.][0-9][0-9]*[.][0-9]/{'$${nl}'s/^[0-9]*[.][0-9]*[.]\([0-9]*\).*/\1/p'$${nl}q$${nl}'}'$${nl}'c\'$${nl}0$${nl}q; \ $(LIBTOOL) --mode=compile --tag=RC $(RC) \ "-DPACKAGE_VERSION_STRING=\\\"$(VERSION)\\\"" \ "-DPACKAGE_VERSION_MAJOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_major"` \ "-DPACKAGE_VERSION_MINOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_minor"` \ "-DPACKAGE_VERSION_SUBMINOR="`echo '$(VERSION)' | sed -n -e "$$sed_extract_subminor"` \ -i $(srcdir)/libintl.rc -o libintl.res.lo --output-format=coff ref-add.sed: $(srcdir)/ref-add.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-ref-add.sed mv t-ref-add.sed ref-add.sed ref-del.sed: $(srcdir)/ref-del.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-ref-del.sed mv t-ref-del.sed ref-del.sed INCLUDES = -I. -I$(srcdir) -I.. libgnuintl.h: $(srcdir)/libgnuintl.in.h sed -e '/IN_LIBGLOCALE/d' \ -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \ -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \ -e 's,@''HAVE_NEWLOCALE''@,@HAVE_NEWLOCALE@,g' \ -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \ -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \ < $(srcdir)/libgnuintl.in.h \ | if test '@WOE32DLL@' = yes; then \ sed -e 's/extern \([^()]*\);/extern __declspec (dllimport) \1;/'; \ else \ cat; \ fi \ | sed -e 's/extern \([^"]\)/extern LIBINTL_DLL_EXPORTED \1/' \ -e "/#define _LIBINTL_H/r $(srcdir)/export.h" \ | sed -e 's,@''HAVE_VISIBILITY''@,@HAVE_VISIBILITY@,g' \ > libgnuintl.h libintl.h: $(srcdir)/libgnuintl.in.h sed -e '/IN_LIBGLOCALE/d' \ -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \ -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \ -e 's,@''HAVE_NEWLOCALE''@,@HAVE_NEWLOCALE@,g' \ -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \ -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \ < $(srcdir)/libgnuintl.in.h > libintl.h charset.alias: $(srcdir)/config.charset $(SHELL) $(srcdir)/config.charset '@host@' > t-$@ mv t-$@ $@ check: all # We must not install the libintl.h/libintl.a files if we are on a # system which has the GNU gettext() function in its C library or in a # separate library. # If you want to use the one which comes with this version of the # package, you have to use "configure --with-included-gettext". install: install-exec install-data install-exec: all if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkdir_p) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \ if test "@RELOCATABLE@" = yes; then \ dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < $(DESTDIR)$(libdir)/libintl.la | sed -e "s,^',," -e "s,'\$$,,"`; \ if test -n "$$dependencies"; then \ rm -f $(DESTDIR)$(libdir)/libintl.la; \ fi; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no \ && test @GLIBC2@ != no; then \ $(mkdir_p) $(DESTDIR)$(libdir); \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libgnuintl.$la $(DESTDIR)$(libdir)/libgnuintl.$la; \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(INSTALL_DATA) $(DESTDIR)$(libdir)/libgnuintl.so $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libgnuintl.$la; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test @GLIBC21@ = no; then \ case '@host_os@' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac; \ else \ need_charset_alias=false; \ fi; \ if $$need_charset_alias; then \ $(mkdir_p) $(DESTDIR)$(libdir); \ fi; \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ orig=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ if $$need_charset_alias; then \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ fi; \ fi; \ $(mkdir_p) $(DESTDIR)$(localedir); \ test -f $(DESTDIR)$(localedir)/locale.alias \ && orig=$(DESTDIR)$(localedir)/locale.alias \ || orig=$(srcdir)/locale.alias; \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ : ; \ fi install-data: all if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \ $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \ dists="COPYING.LIB $(DISTFILES.common)"; \ for file in $$dists; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \ dists="$(DISTFILES.generated)"; \ for file in $$dists; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ $(INSTALL_DATA) $$dir/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ dists="$(DISTFILES.obsolete)"; \ for file in $$dists; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-strip: install install-dvi install-html install-info install-ps install-pdf: installdirs: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkdir_p) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no \ && test @GLIBC2@ != no; then \ $(mkdir_p) $(DESTDIR)$(libdir); \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test @GLIBC21@ = no; then \ case '@host_os@' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac; \ else \ need_charset_alias=false; \ fi; \ if $$need_charset_alias; then \ $(mkdir_p) $(DESTDIR)$(libdir); \ fi; \ $(mkdir_p) $(DESTDIR)$(localedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi # Define this as empty until I found a useful application. installcheck: uninstall: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ rm -f $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libintl.$la; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no \ && test @GLIBC2@ != no; then \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ if test -f $(DESTDIR)$(localedir)/locale.alias; then \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ for file in VERSION ChangeLog COPYING.LIB $(DISTFILES.common) $(DISTFILES.generated); do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi info dvi ps pdf html: $(OBJECTS): ../config.h libgnuintl.h bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo setlocale.$lo textdomain.$lo: $(srcdir)/gettextP.h $(srcdir)/gmo.h $(srcdir)/loadinfo.h localename.$lo: $(srcdir)/gettextP.h hash-string.$lo dcigettext.$lo loadmsgcat.$lo: $(srcdir)/hash-string.h explodename.$lo l10nflist.$lo: $(srcdir)/loadinfo.h dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: $(srcdir)/plural-exp.h dcigettext.$lo: $(srcdir)/eval-plural.h localcharset.$lo: $(srcdir)/localcharset.h bindtextdom.$lo dcigettext.$lo finddomain.$lo loadmsgcat.$lo localealias.$lo lock.$lo log.$lo: $(srcdir)/lock.h localealias.$lo localcharset.$lo relocatable.$lo: $(srcdir)/relocatable.h printf.$lo: $(srcdir)/printf-args.h $(srcdir)/printf-args.c $(srcdir)/printf-parse.h $(srcdir)/wprintf-parse.h $(srcdir)/xsize.h $(srcdir)/xsize.c $(srcdir)/printf-parse.c $(srcdir)/vasnprintf.h $(srcdir)/vasnwprintf.h $(srcdir)/vasnprintf.c # A bison-2.1 generated plural.c includes if ENABLE_NLS. PLURAL_DEPS_yes = libintl.h PLURAL_DEPS_no = plural.$lo: $(PLURAL_DEPS_@USE_INCLUDED_LIBINTL@) tags: TAGS TAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES) ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && ctags -o $$here/CTAGS $(HEADERS) $(SOURCES) id: ID ID: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES) mostlyclean: rm -f *.a *.la *.o *.obj *.lo core core.* rm -f libgnuintl.h libintl.h charset.alias ref-add.sed ref-del.sed rm -f -r .libs _libs clean: mostlyclean distclean: clean rm -f Makefile ID TAGS if test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; then \ rm -f ChangeLog.inst $(DISTFILES.normal); \ else \ : ; \ fi maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." # GNU gettext needs not contain the file 'VERSION' but contains some # other files which should not be distributed in other packages. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: Makefile if test "$(PACKAGE)" = "gettext-tools"; then \ : ; \ else \ if test "$(PACKAGE)" = "gettext-runtime"; then \ additional="$(DISTFILES.gettext)"; \ else \ additional="$(DISTFILES.normal)"; \ fi; \ $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \ for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ cp -p $$dir/$$file $(distdir) || test $$file = Makefile.in || exit 1; \ done; \ fi Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status # This would be more efficient, but doesn't work any more with autoconf-2.57, # when AC_CONFIG_FILES([intl/Makefile:somedir/Makefile.in]) is used. # cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/intl/printf.c0000644000175000017500000002411713421555747015143 0ustar carstencarsten/* Formatted output to strings, using POSIX/XSI format strings with positions. Copyright (C) 2003, 2006-2007, 2009-2011 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #if !HAVE_POSIX_PRINTF #include #include #include #include /* Some systems, like OSF/1 4.0 and Woe32, don't have EOVERFLOW. */ #ifndef EOVERFLOW # define EOVERFLOW E2BIG #endif /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if HAVE_VISIBILITY && BUILDING_DLL # define DLL_EXPORTED __attribute__((__visibility__("default"))) #elif defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif #define STATIC static /* This needs to be consistent with libgnuintl.in.h. */ #if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || defined __MINGW32__ /* Don't break __attribute__((format(printf,M,N))). This redefinition is only possible because the libc in NetBSD, Cygwin, mingw does not have a function __printf__. */ # define libintl_printf __printf__ #endif /* Define auxiliary functions declared in "printf-args.h". */ #include "printf-args.c" /* Define auxiliary functions declared in "printf-parse.h". */ #include "printf-parse.c" /* Define functions declared in "vasnprintf.h". */ #define vasnprintf libintl_vasnprintf #include "vasnprintf.c" #if 0 /* not needed */ #define asnprintf libintl_asnprintf #include "asnprintf.c" #endif DLL_EXPORTED int libintl_vfprintf (FILE *stream, const char *format, va_list args) { if (strchr (format, '$') == NULL) return vfprintf (stream, format, args); else { size_t length; char *result = libintl_vasnprintf (NULL, &length, format, args); int retval = -1; if (result != NULL) { size_t written = fwrite (result, 1, length, stream); free (result); if (written == length) { if (length > INT_MAX) errno = EOVERFLOW; else retval = length; } } return retval; } } DLL_EXPORTED int libintl_fprintf (FILE *stream, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vfprintf (stream, format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vprintf (const char *format, va_list args) { return libintl_vfprintf (stdout, format, args); } DLL_EXPORTED int libintl_printf (const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vprintf (format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vsprintf (char *resultbuf, const char *format, va_list args) { if (strchr (format, '$') == NULL) return vsprintf (resultbuf, format, args); else { size_t length = (size_t) ~0 / (4 * sizeof (char)); char *result = libintl_vasnprintf (resultbuf, &length, format, args); if (result != resultbuf) { free (result); return -1; } if (length > INT_MAX) { errno = EOVERFLOW; return -1; } else return length; } } DLL_EXPORTED int libintl_sprintf (char *resultbuf, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vsprintf (resultbuf, format, args); va_end (args); return retval; } #if HAVE_SNPRINTF # if HAVE_DECL__SNPRINTF /* Windows. The mingw function vsnprintf() has fewer bugs than the MSVCRT function _vsnprintf(), so prefer that. */ # if defined __MINGW32__ # define system_vsnprintf vsnprintf # else # define system_vsnprintf _vsnprintf # endif # else /* Unix. */ # define system_vsnprintf vsnprintf # endif DLL_EXPORTED int libintl_vsnprintf (char *resultbuf, size_t length, const char *format, va_list args) { if (strchr (format, '$') == NULL) return system_vsnprintf (resultbuf, length, format, args); else { size_t maxlength = length; char *result = libintl_vasnprintf (resultbuf, &length, format, args); if (result == NULL) return -1; if (result != resultbuf) { if (maxlength > 0) { size_t pruned_length = (length < maxlength ? length : maxlength - 1); memcpy (resultbuf, result, pruned_length); resultbuf[pruned_length] = '\0'; } free (result); } if (length > INT_MAX) { errno = EOVERFLOW; return -1; } else return length; } } DLL_EXPORTED int libintl_snprintf (char *resultbuf, size_t length, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vsnprintf (resultbuf, length, format, args); va_end (args); return retval; } #endif #if HAVE_ASPRINTF DLL_EXPORTED int libintl_vasprintf (char **resultp, const char *format, va_list args) { size_t length; char *result = libintl_vasnprintf (NULL, &length, format, args); if (result == NULL) return -1; if (length > INT_MAX) { free (result); errno = EOVERFLOW; return -1; } *resultp = result; return length; } DLL_EXPORTED int libintl_asprintf (char **resultp, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vasprintf (resultp, format, args); va_end (args); return retval; } #endif #if HAVE_FWPRINTF #include #define WIDE_CHAR_VERSION 1 #include "wprintf-parse.h" /* Define auxiliary functions declared in "wprintf-parse.h". */ #define CHAR_T wchar_t #define DIRECTIVE wchar_t_directive #define DIRECTIVES wchar_t_directives #define PRINTF_PARSE wprintf_parse #include "printf-parse.c" /* Define functions declared in "vasnprintf.h". */ #define vasnwprintf libintl_vasnwprintf #include "vasnprintf.c" #if 0 /* not needed */ #define asnwprintf libintl_asnwprintf #include "asnprintf.c" #endif # if HAVE_DECL__SNWPRINTF /* Windows. The function vswprintf() has a different signature than on Unix; we use the function _vsnwprintf() instead. */ # define system_vswprintf _vsnwprintf # else /* Unix. */ # define system_vswprintf vswprintf # endif DLL_EXPORTED int libintl_vfwprintf (FILE *stream, const wchar_t *format, va_list args) { if (wcschr (format, '$') == NULL) return vfwprintf (stream, format, args); else { size_t length; wchar_t *result = libintl_vasnwprintf (NULL, &length, format, args); int retval = -1; if (result != NULL) { size_t i; for (i = 0; i < length; i++) if (fputwc (result[i], stream) == WEOF) break; free (result); if (i == length) { if (length > INT_MAX) errno = EOVERFLOW; else retval = length; } } return retval; } } DLL_EXPORTED int libintl_fwprintf (FILE *stream, const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vfwprintf (stream, format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vwprintf (const wchar_t *format, va_list args) { return libintl_vfwprintf (stdout, format, args); } DLL_EXPORTED int libintl_wprintf (const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vwprintf (format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vswprintf (wchar_t *resultbuf, size_t length, const wchar_t *format, va_list args) { if (wcschr (format, '$') == NULL) return system_vswprintf (resultbuf, length, format, args); else { size_t maxlength = length; wchar_t *result = libintl_vasnwprintf (resultbuf, &length, format, args); if (result == NULL) return -1; if (result != resultbuf) { if (maxlength > 0) { size_t pruned_length = (length < maxlength ? length : maxlength - 1); memcpy (resultbuf, result, pruned_length * sizeof (wchar_t)); resultbuf[pruned_length] = 0; } free (result); /* Unlike vsnprintf, which has to return the number of character that would have been produced if the resultbuf had been sufficiently large, the vswprintf function has to return a negative value if the resultbuf was not sufficiently large. */ if (length >= maxlength) return -1; } if (length > INT_MAX) { errno = EOVERFLOW; return -1; } else return length; } } DLL_EXPORTED int libintl_swprintf (wchar_t *resultbuf, size_t length, const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vswprintf (resultbuf, length, format, args); va_end (args); return retval; } #endif #endif gerbv-2.7.0/intl/intl-compat.c0000644000175000017500000000656113421555747016073 0ustar carstencarsten/* intl-compat.c - Stub functions to call gettext functions from GNU gettext Library. Copyright (C) 1995, 2000-2003, 2005 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" /* @@ end of prolog @@ */ /* This file redirects the gettext functions (without prefix) to those defined in the included GNU libintl library (with "libintl_" prefix). It is compiled into libintl in order to make the AM_GNU_GETTEXT test of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which has the redirections primarily in the include file. It is also compiled into libgnuintl so that libgnuintl.so can be used as LD_PRELOADable library on glibc systems, to provide the extra features that the functions in the libc don't have (namely, logging). */ #undef gettext #undef dgettext #undef dcgettext #undef ngettext #undef dngettext #undef dcngettext #undef textdomain #undef bindtextdomain #undef bind_textdomain_codeset /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if HAVE_VISIBILITY && BUILDING_DLL # define DLL_EXPORTED __attribute__((__visibility__("default"))) #elif defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif DLL_EXPORTED char * gettext (const char *msgid) { return libintl_gettext (msgid); } DLL_EXPORTED char * dgettext (const char *domainname, const char *msgid) { return libintl_dgettext (domainname, msgid); } DLL_EXPORTED char * dcgettext (const char *domainname, const char *msgid, int category) { return libintl_dcgettext (domainname, msgid, category); } DLL_EXPORTED char * ngettext (const char *msgid1, const char *msgid2, unsigned long int n) { return libintl_ngettext (msgid1, msgid2, n); } DLL_EXPORTED char * dngettext (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) { return libintl_dngettext (domainname, msgid1, msgid2, n); } DLL_EXPORTED char * dcngettext (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) { return libintl_dcngettext (domainname, msgid1, msgid2, n, category); } DLL_EXPORTED char * textdomain (const char *domainname) { return libintl_textdomain (domainname); } DLL_EXPORTED char * bindtextdomain (const char *domainname, const char *dirname) { return libintl_bindtextdomain (domainname, dirname); } DLL_EXPORTED char * bind_textdomain_codeset (const char *domainname, const char *codeset) { return libintl_bind_textdomain_codeset (domainname, codeset); } gerbv-2.7.0/intl/xsize.c0000644000175000017500000000111113421555750014762 0ustar carstencarsten#include /* XSIZE_INLINE can be expanded to _GL_UNUSED, which is defined through a gnulib-tool magic. Define it here so not to require Gnulib. */ #if defined IN_LIBINTL && !defined GL_UNUSED /* Define as a marker that can be attached to declarations that might not be used. This helps to reduce warnings, such as from GCC -Wunused-parameter. */ # if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) # define _GL_UNUSED __attribute__ ((__unused__)) # else # define _GL_UNUSED # endif #endif #define XSIZE_INLINE _GL_EXTERN_INLINE #include "xsize.h" gerbv-2.7.0/intl/wprintf-parse.h0000644000175000017500000000510513421555750016435 0ustar carstencarsten/* Parse printf format string. Copyright (C) 1999, 2002-2003, 2005, 2007, 2010-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _WPRINTF_PARSE_H #define _WPRINTF_PARSE_H #if HAVE_FEATURES_H # include /* for __GLIBC__, __UCLIBC__ */ #endif #include "printf-args.h" /* Flags */ #define FLAG_GROUP 1 /* ' flag */ #define FLAG_LEFT 2 /* - flag */ #define FLAG_SHOWSIGN 4 /* + flag */ #define FLAG_SPACE 8 /* space flag */ #define FLAG_ALT 16 /* # flag */ #define FLAG_ZERO 32 #if __GLIBC__ >= 2 && !defined __UCLIBC__ # define FLAG_LOCALIZED 64 /* I flag, uses localized digits */ #endif /* arg_index value indicating that no argument is consumed. */ #define ARG_NONE (~(size_t)0) /* Number of directly allocated directives (no malloc() needed). */ #define N_DIRECT_ALLOC_DIRECTIVES 7 /* A parsed directive. */ typedef struct { const wchar_t* dir_start; const wchar_t* dir_end; int flags; const wchar_t* width_start; const wchar_t* width_end; size_t width_arg_index; const wchar_t* precision_start; const wchar_t* precision_end; size_t precision_arg_index; wchar_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */ size_t arg_index; } wchar_t_directive; /* A parsed format string. */ typedef struct { size_t count; wchar_t_directive *dir; size_t max_width_length; size_t max_precision_length; wchar_t_directive direct_alloc_dir[N_DIRECT_ALLOC_DIRECTIVES]; } wchar_t_directives; /* Parses the format string. Fills in the number N of directives, and fills in directives[0], ..., directives[N-1], and sets directives[N].dir_start to the end of the format string. Also fills in the arg_type fields of the arguments and the needed count of arguments. */ #ifdef STATIC STATIC #else extern #endif int wprintf_parse (const wchar_t *format, wchar_t_directives *d, arguments *a); #endif /* _WPRINTF_PARSE_H */ gerbv-2.7.0/intl/printf-parse.c0000644000175000017500000005324313421555747016255 0ustar carstencarsten/* Formatted output to strings. Copyright (C) 1999-2000, 2002-2003, 2006-2008, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* This file can be parametrized with the following macros: CHAR_T The element type of the format string. CHAR_T_ONLY_ASCII Set to 1 to enable verification that all characters in the format string are ASCII. DIRECTIVE Structure denoting a format directive. Depends on CHAR_T. DIRECTIVES Structure denoting the set of format directives of a format string. Depends on CHAR_T. PRINTF_PARSE Function that parses a format string. Depends on CHAR_T. STATIC Set to 'static' to declare the function static. ENABLE_UNISTDIO Set to 1 to enable the unistdio extensions. */ #ifndef PRINTF_PARSE # include #endif /* Specification. */ #ifndef PRINTF_PARSE # include "printf-parse.h" #endif /* Default parameters. */ #ifndef PRINTF_PARSE # define PRINTF_PARSE printf_parse # define CHAR_T char # define DIRECTIVE char_directive # define DIRECTIVES char_directives #endif /* Get size_t, NULL. */ #include /* Get intmax_t. */ #if defined IN_LIBINTL || defined IN_LIBASPRINTF # if HAVE_STDINT_H_WITH_UINTMAX # include # endif # if HAVE_INTTYPES_H_WITH_UINTMAX # include # endif #else # include #endif /* malloc(), realloc(), free(). */ #include /* memcpy(). */ #include /* errno. */ #include /* Checked size_t computations. */ #include "xsize.h" #if CHAR_T_ONLY_ASCII /* c_isascii(). */ # include "c-ctype.h" #endif #ifdef STATIC STATIC #endif int PRINTF_PARSE (const CHAR_T *format, DIRECTIVES *d, arguments *a) { const CHAR_T *cp = format; /* pointer into format */ size_t arg_posn = 0; /* number of regular arguments consumed */ size_t d_allocated; /* allocated elements of d->dir */ size_t a_allocated; /* allocated elements of a->arg */ size_t max_width_length = 0; size_t max_precision_length = 0; d->count = 0; d_allocated = N_DIRECT_ALLOC_DIRECTIVES; d->dir = d->direct_alloc_dir; a->count = 0; a_allocated = N_DIRECT_ALLOC_ARGUMENTS; a->arg = a->direct_alloc_arg; #define REGISTER_ARG(_index_,_type_) \ { \ size_t n = (_index_); \ if (n >= a_allocated) \ { \ size_t memory_size; \ argument *memory; \ \ a_allocated = xtimes (a_allocated, 2); \ if (a_allocated <= n) \ a_allocated = xsum (n, 1); \ memory_size = xtimes (a_allocated, sizeof (argument)); \ if (size_overflow_p (memory_size)) \ /* Overflow, would lead to out of memory. */ \ goto out_of_memory; \ memory = (argument *) (a->arg != a->direct_alloc_arg \ ? realloc (a->arg, memory_size) \ : malloc (memory_size)); \ if (memory == NULL) \ /* Out of memory. */ \ goto out_of_memory; \ if (a->arg == a->direct_alloc_arg) \ memcpy (memory, a->arg, a->count * sizeof (argument)); \ a->arg = memory; \ } \ while (a->count <= n) \ a->arg[a->count++].type = TYPE_NONE; \ if (a->arg[n].type == TYPE_NONE) \ a->arg[n].type = (_type_); \ else if (a->arg[n].type != (_type_)) \ /* Ambiguous type for positional argument. */ \ goto error; \ } while (*cp != '\0') { CHAR_T c = *cp++; if (c == '%') { size_t arg_index = ARG_NONE; DIRECTIVE *dp = &d->dir[d->count]; /* pointer to next directive */ /* Initialize the next directive. */ dp->dir_start = cp - 1; dp->flags = 0; dp->width_start = NULL; dp->width_end = NULL; dp->width_arg_index = ARG_NONE; dp->precision_start = NULL; dp->precision_end = NULL; dp->precision_arg_index = ARG_NONE; dp->arg_index = ARG_NONE; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; arg_index = n - 1; cp = np + 1; } } /* Read the flags. */ for (;;) { if (*cp == '\'') { dp->flags |= FLAG_GROUP; cp++; } else if (*cp == '-') { dp->flags |= FLAG_LEFT; cp++; } else if (*cp == '+') { dp->flags |= FLAG_SHOWSIGN; cp++; } else if (*cp == ' ') { dp->flags |= FLAG_SPACE; cp++; } else if (*cp == '#') { dp->flags |= FLAG_ALT; cp++; } else if (*cp == '0') { dp->flags |= FLAG_ZERO; cp++; } #if __GLIBC__ >= 2 && !defined __UCLIBC__ else if (*cp == 'I') { dp->flags |= FLAG_LOCALIZED; cp++; } #endif else break; } /* Parse the field width. */ if (*cp == '*') { dp->width_start = cp; cp++; dp->width_end = cp; if (max_width_length < 1) max_width_length = 1; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; dp->width_arg_index = n - 1; cp = np + 1; } } if (dp->width_arg_index == ARG_NONE) { dp->width_arg_index = arg_posn++; if (dp->width_arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->width_arg_index, TYPE_INT); } else if (*cp >= '0' && *cp <= '9') { size_t width_length; dp->width_start = cp; for (; *cp >= '0' && *cp <= '9'; cp++) ; dp->width_end = cp; width_length = dp->width_end - dp->width_start; if (max_width_length < width_length) max_width_length = width_length; } /* Parse the precision. */ if (*cp == '.') { cp++; if (*cp == '*') { dp->precision_start = cp - 1; cp++; dp->precision_end = cp; if (max_precision_length < 2) max_precision_length = 2; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; dp->precision_arg_index = n - 1; cp = np + 1; } } if (dp->precision_arg_index == ARG_NONE) { dp->precision_arg_index = arg_posn++; if (dp->precision_arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->precision_arg_index, TYPE_INT); } else { size_t precision_length; dp->precision_start = cp - 1; for (; *cp >= '0' && *cp <= '9'; cp++) ; dp->precision_end = cp; precision_length = dp->precision_end - dp->precision_start; if (max_precision_length < precision_length) max_precision_length = precision_length; } } { arg_type type; /* Parse argument type/size specifiers. */ { int flags = 0; for (;;) { if (*cp == 'h') { flags |= (1 << (flags & 1)); cp++; } else if (*cp == 'L') { flags |= 4; cp++; } else if (*cp == 'l') { flags += 8; cp++; } else if (*cp == 'j') { if (sizeof (intmax_t) > sizeof (long)) { /* intmax_t = long long */ flags += 16; } else if (sizeof (intmax_t) > sizeof (int)) { /* intmax_t = long */ flags += 8; } cp++; } else if (*cp == 'z' || *cp == 'Z') { /* 'z' is standardized in ISO C 99, but glibc uses 'Z' because the warning facility in gcc-2.95.2 understands only 'Z' (see gcc-2.95.2/gcc/c-common.c:1784). */ if (sizeof (size_t) > sizeof (long)) { /* size_t = long long */ flags += 16; } else if (sizeof (size_t) > sizeof (int)) { /* size_t = long */ flags += 8; } cp++; } else if (*cp == 't') { if (sizeof (ptrdiff_t) > sizeof (long)) { /* ptrdiff_t = long long */ flags += 16; } else if (sizeof (ptrdiff_t) > sizeof (int)) { /* ptrdiff_t = long */ flags += 8; } cp++; } #if defined __APPLE__ && defined __MACH__ /* On MacOS X 10.3, PRIdMAX is defined as "qd". We cannot change it to "lld" because PRIdMAX must also be understood by the system's printf routines. */ else if (*cp == 'q') { if (64 / 8 > sizeof (long)) { /* int64_t = long long */ flags += 16; } else { /* int64_t = long */ flags += 8; } cp++; } #endif #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* On native Win32, PRIdMAX is defined as "I64d". We cannot change it to "lld" because PRIdMAX must also be understood by the system's printf routines. */ else if (*cp == 'I' && cp[1] == '6' && cp[2] == '4') { if (64 / 8 > sizeof (long)) { /* __int64 = long long */ flags += 16; } else { /* __int64 = long */ flags += 8; } cp += 3; } #endif else break; } /* Read the conversion character. */ c = *cp++; switch (c) { case 'd': case 'i': #if HAVE_LONG_LONG_INT /* If 'long long' exists and is larger than 'long': */ if (flags >= 16 || (flags & 4)) type = TYPE_LONGLONGINT; else #endif /* If 'long long' exists and is the same as 'long', we parse "lld" into TYPE_LONGINT. */ if (flags >= 8) type = TYPE_LONGINT; else if (flags & 2) type = TYPE_SCHAR; else if (flags & 1) type = TYPE_SHORT; else type = TYPE_INT; break; case 'o': case 'u': case 'x': case 'X': #if HAVE_LONG_LONG_INT /* If 'long long' exists and is larger than 'long': */ if (flags >= 16 || (flags & 4)) type = TYPE_ULONGLONGINT; else #endif /* If 'unsigned long long' exists and is the same as 'unsigned long', we parse "llu" into TYPE_ULONGINT. */ if (flags >= 8) type = TYPE_ULONGINT; else if (flags & 2) type = TYPE_UCHAR; else if (flags & 1) type = TYPE_USHORT; else type = TYPE_UINT; break; case 'f': case 'F': case 'e': case 'E': case 'g': case 'G': case 'a': case 'A': if (flags >= 16 || (flags & 4)) type = TYPE_LONGDOUBLE; else type = TYPE_DOUBLE; break; case 'c': if (flags >= 8) #if HAVE_WINT_T type = TYPE_WIDE_CHAR; #else goto error; #endif else type = TYPE_CHAR; break; #if HAVE_WINT_T case 'C': type = TYPE_WIDE_CHAR; c = 'c'; break; #endif case 's': if (flags >= 8) #if HAVE_WCHAR_T type = TYPE_WIDE_STRING; #else goto error; #endif else type = TYPE_STRING; break; #if HAVE_WCHAR_T case 'S': type = TYPE_WIDE_STRING; c = 's'; break; #endif case 'p': type = TYPE_POINTER; break; case 'n': #if HAVE_LONG_LONG_INT /* If 'long long' exists and is larger than 'long': */ if (flags >= 16 || (flags & 4)) type = TYPE_COUNT_LONGLONGINT_POINTER; else #endif /* If 'long long' exists and is the same as 'long', we parse "lln" into TYPE_COUNT_LONGINT_POINTER. */ if (flags >= 8) type = TYPE_COUNT_LONGINT_POINTER; else if (flags & 2) type = TYPE_COUNT_SCHAR_POINTER; else if (flags & 1) type = TYPE_COUNT_SHORT_POINTER; else type = TYPE_COUNT_INT_POINTER; break; #if ENABLE_UNISTDIO /* The unistdio extensions. */ case 'U': if (flags >= 16) type = TYPE_U32_STRING; else if (flags >= 8) type = TYPE_U16_STRING; else type = TYPE_U8_STRING; break; #endif case '%': type = TYPE_NONE; break; default: /* Unknown conversion character. */ goto error; } } if (type != TYPE_NONE) { dp->arg_index = arg_index; if (dp->arg_index == ARG_NONE) { dp->arg_index = arg_posn++; if (dp->arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->arg_index, type); } dp->conversion = c; dp->dir_end = cp; } d->count++; if (d->count >= d_allocated) { size_t memory_size; DIRECTIVE *memory; d_allocated = xtimes (d_allocated, 2); memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); if (size_overflow_p (memory_size)) /* Overflow, would lead to out of memory. */ goto out_of_memory; memory = (DIRECTIVE *) (d->dir != d->direct_alloc_dir ? realloc (d->dir, memory_size) : malloc (memory_size)); if (memory == NULL) /* Out of memory. */ goto out_of_memory; if (d->dir == d->direct_alloc_dir) memcpy (memory, d->dir, d->count * sizeof (DIRECTIVE)); d->dir = memory; } } #if CHAR_T_ONLY_ASCII else if (!c_isascii (c)) { /* Non-ASCII character. Not supported. */ goto error; } #endif } d->dir[d->count].dir_start = cp; d->max_width_length = max_width_length; d->max_precision_length = max_precision_length; return 0; error: if (a->arg != a->direct_alloc_arg) free (a->arg); if (d->dir != d->direct_alloc_dir) free (d->dir); errno = EINVAL; return -1; out_of_memory: if (a->arg != a->direct_alloc_arg) free (a->arg); if (d->dir != d->direct_alloc_dir) free (d->dir); errno = ENOMEM; return -1; } #undef PRINTF_PARSE #undef DIRECTIVES #undef DIRECTIVE #undef CHAR_T_ONLY_ASCII #undef CHAR_T gerbv-2.7.0/intl/gettextP.h0000644000175000017500000002355113421555747015453 0ustar carstencarsten/* Header describing internals of libintl library. Copyright (C) 1995-1999, 2000-2007, 2009-2010 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _GETTEXTP_H #define _GETTEXTP_H #include /* Get size_t. */ #ifdef _LIBC # include "../iconv/gconv_int.h" #else # if HAVE_ICONV # include # endif #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include # define gl_rwlock_define __libc_rwlock_define #else # include "lock.h" #endif #ifdef _LIBC extern char *__gettext (const char *__msgid); extern char *__dgettext (const char *__domainname, const char *__msgid); extern char *__dcgettext (const char *__domainname, const char *__msgid, int __category); extern char *__ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n); extern char *__dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int n); extern char *__dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); extern char *__dcigettext (const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category); extern char *__textdomain (const char *__domainname); extern char *__bindtextdomain (const char *__domainname, const char *__dirname); extern char *__bind_textdomain_codeset (const char *__domainname, const char *__codeset); extern void _nl_finddomain_subfreeres (void) attribute_hidden; extern void _nl_unload_domain (struct loaded_domain *__domain) internal_function attribute_hidden; #else /* Declare the exported libintl_* functions, in a way that allows us to call them under their real name. */ # undef _INTL_REDIRECT_INLINE # undef _INTL_REDIRECT_MACROS # define _INTL_REDIRECT_MACROS # include "libgnuintl.h" # ifdef IN_LIBGLOCALE extern char *gl_dcigettext (const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category, const char *__localename, const char *__encoding); # else extern char *libintl_dcigettext (const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category); # endif #endif #include "loadinfo.h" #include "gmo.h" /* Get nls_uint32. */ /* @@ end of prolog @@ */ #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif #ifndef W # define W(flag, data) ((flag) ? SWAP (data) : (data)) #endif #ifdef _LIBC # include # define SWAP(i) bswap_32 (i) #else static inline nls_uint32 # ifdef __cplusplus SWAP (nls_uint32 i) # else SWAP (i) nls_uint32 i; # endif { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } #endif /* In-memory representation of system dependent string. */ struct sysdep_string_desc { /* Length of addressed string, including the trailing NUL. */ size_t length; /* Pointer to addressed string. */ const char *pointer; }; /* Cache of translated strings after charset conversion. Note: The strings are converted to the target encoding only on an as-needed basis. */ struct converted_domain { /* The target encoding name. */ const char *encoding; /* The descriptor for conversion from the message catalog's encoding to this target encoding. */ #ifdef _LIBC __gconv_t conv; #else # if HAVE_ICONV iconv_t conv; # endif #endif /* The table of translated strings after charset conversion. */ char **conv_tab; }; /* The representation of an opened message catalog. */ struct loaded_domain { /* Pointer to memory containing the .mo file. */ const char *data; /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */ int use_mmap; /* Size of mmap()ed memory. */ size_t mmap_size; /* 1 if the .mo file uses a different endianness than this machine. */ int must_swap; /* Pointer to additional malloc()ed memory. */ void *malloced; /* Number of static strings pairs. */ nls_uint32 nstrings; /* Pointer to descriptors of original strings in the file. */ const struct string_desc *orig_tab; /* Pointer to descriptors of translated strings in the file. */ const struct string_desc *trans_tab; /* Number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Pointer to descriptors of original sysdep strings. */ const struct sysdep_string_desc *orig_sysdep_tab; /* Pointer to descriptors of translated sysdep strings. */ const struct sysdep_string_desc *trans_sysdep_tab; /* Size of hash table. */ nls_uint32 hash_size; /* Pointer to hash table. */ const nls_uint32 *hash_tab; /* 1 if the hash table uses a different endianness than this machine. */ int must_swap_hash_tab; /* Cache of charset conversions of the translated strings. */ struct converted_domain *conversions; size_t nconversions; gl_rwlock_define (, conversions_lock) const struct expression *plural; unsigned long int nplurals; }; /* We want to allocate a string at the end of the struct. But ISO C doesn't allow zero sized arrays. */ #ifdef __GNUC__ # define ZERO 0 #else # define ZERO 1 #endif /* A set of settings bound to a message domain. Used to store settings from bindtextdomain() and bind_textdomain_codeset(). */ struct binding { struct binding *next; char *dirname; char *codeset; char domainname[ZERO]; }; /* A counter which is incremented each time some previous translations become invalid. This variable is part of the external ABI of the GNU libintl. */ #ifdef IN_LIBGLOCALE # include extern LIBGLOCALE_DLL_EXPORTED int _nl_msg_cat_cntr; #else extern LIBINTL_DLL_EXPORTED int _nl_msg_cat_cntr; #endif #ifndef _LIBC extern const char *_nl_language_preferences_default (void); # define gl_locale_name_canonicalize _nl_locale_name_canonicalize extern void _nl_locale_name_canonicalize (char *name); # define gl_locale_name_from_win32_LANGID _nl_locale_name_from_win32_LANGID /* extern const char *_nl_locale_name_from_win32_LANGID (LANGID langid); */ # define gl_locale_name_from_win32_LCID _nl_locale_name_from_win32_LCID /* extern const char *_nl_locale_name_from_win32_LCID (LCID lcid); */ # define gl_locale_name_thread_unsafe _nl_locale_name_thread_unsafe extern const char *_nl_locale_name_thread_unsafe (int category, const char *categoryname); # define gl_locale_name_thread _nl_locale_name_thread /* extern const char *_nl_locale_name_thread (int category, const char *categoryname); */ # define gl_locale_name_posix _nl_locale_name_posix extern const char *_nl_locale_name_posix (int category, const char *categoryname); # define gl_locale_name_environ _nl_locale_name_environ extern const char *_nl_locale_name_environ (int category, const char *categoryname); # define gl_locale_name_default _nl_locale_name_default extern const char *_nl_locale_name_default (void); # define gl_locale_name _nl_locale_name /* extern const char *_nl_locale_name (int category, const char *categoryname); */ #endif struct loaded_l10nfile *_nl_find_domain (const char *__dirname, char *__locale, const char *__domainname, struct binding *__domainbinding) internal_function; void _nl_load_domain (struct loaded_l10nfile *__domain, struct binding *__domainbinding) internal_function; #ifdef IN_LIBGLOCALE char *_nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *encoding, const char *msgid, size_t *lengthp) internal_function; #else char *_nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, int convert, size_t *lengthp) internal_function; #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Contains the default location of the message catalogs. */ extern const char _nl_default_dirname[]; #ifdef _LIBC libc_hidden_proto (_nl_default_dirname) #endif /* List with bindings of specific domains. */ extern struct binding *_nl_domain_bindings; /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain #endif /* Name of the default text domain. */ extern const char _nl_default_default_domain[] attribute_hidden; /* Default text domain in which entries for gettext(3) are to be found. */ extern const char *_nl_current_default_domain attribute_hidden; /* @@ begin of epilog @@ */ #endif /* gettextP.h */ gerbv-2.7.0/intl/tsearch.c0000644000175000017500000005174413421555750015272 0ustar carstencarsten/* Copyright (C) 1995, 1996, 1997, 2000, 2006 Free Software Foundation, Inc. Contributed by Bernd Schmidt , 1997. NOTE: The canonical source of this file is maintained with the GNU C Library. Bugs can be reported to bug-glibc@gnu.org. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tree search for red/black trees. The algorithm for adding nodes is taken from one of the many "Algorithms" books by Robert Sedgewick, although the implementation differs. The algorithm for deleting nodes can probably be found in a book named "Introduction to Algorithms" by Cormen/Leiserson/Rivest. At least that's the book that my professor took most algorithms from during the "Data Structures" course... Totally public domain. */ /* Red/black trees are binary trees in which the edges are colored either red or black. They have the following properties: 1. The number of black edges on every path from the root to a leaf is constant. 2. No two red edges are adjacent. Therefore there is an upper bound on the length of every path, it's O(log n) where n is the number of nodes in the tree. No path can be longer than 1+2*P where P is the length of the shortest path in the tree. Useful for the implementation: 3. If one of the children of a node is NULL, then the other one is red (if it exists). In the implementation, not the edges are colored, but the nodes. The color interpreted as the color of the edge leading to this node. The color is meaningless for the root node, but we color the root node black for convenience. All added nodes are red initially. Adding to a red/black tree is rather easy. The right place is searched with a usual binary tree search. Additionally, whenever a node N is reached that has two red successors, the successors are colored black and the node itself colored red. This moves red edges up the tree where they pose less of a problem once we get to really insert the new node. Changing N's color to red may violate rule 2, however, so rotations may become necessary to restore the invariants. Adding a new red leaf may violate the same rule, so afterwards an additional check is run and the tree possibly rotated. Deleting is hairy. There are mainly two nodes involved: the node to be deleted (n1), and another node that is to be unchained from the tree (n2). If n1 has a successor (the node with a smallest key that is larger than n1), then the successor becomes n2 and its contents are copied into n1, otherwise n1 becomes n2. Unchaining a node may violate rule 1: if n2 is black, one subtree is missing one black edge afterwards. The algorithm must try to move this error upwards towards the root, so that the subtree that does not have enough black edges becomes the whole tree. Once that happens, the error has disappeared. It may not be necessary to go all the way up, since it is possible that rotations and recoloring can fix the error before that. Although the deletion algorithm must walk upwards through the tree, we do not store parent pointers in the nodes. Instead, delete allocates a small array of parent pointers and fills it while descending the tree. Since we know that the length of a path is O(log n), where n is the number of nodes, this is likely to use less memory. */ /* Tree rotations look like this: A C / \ / \ B C A G / \ / \ --> / \ D E F G B F / \ D E In this case, A has been rotated left. This preserves the ordering of the binary tree. */ #include /* Specification. */ #ifdef IN_LIBINTL # include "tsearch.h" #else # include #endif #include typedef int (*__compar_fn_t) (const void *, const void *); typedef void (*__action_fn_t) (const void *, VISIT, int); #ifndef weak_alias # define __tsearch tsearch # define __tfind tfind # define __tdelete tdelete # define __twalk twalk #endif #ifndef internal_function /* Inside GNU libc we mark some function in a special way. In other environments simply ignore the marking. */ # define internal_function #endif typedef struct node_t { /* Callers expect this to be the first element in the structure - do not move! */ const void *key; struct node_t *left; struct node_t *right; unsigned int red:1; } *node; typedef const struct node_t *const_node; #undef DEBUGGING #ifdef DEBUGGING /* Routines to check tree invariants. */ #include #define CHECK_TREE(a) check_tree(a) static void check_tree_recurse (node p, int d_sofar, int d_total) { if (p == NULL) { assert (d_sofar == d_total); return; } check_tree_recurse (p->left, d_sofar + (p->left && !p->left->red), d_total); check_tree_recurse (p->right, d_sofar + (p->right && !p->right->red), d_total); if (p->left) assert (!(p->left->red && p->red)); if (p->right) assert (!(p->right->red && p->red)); } static void check_tree (node root) { int cnt = 0; node p; if (root == NULL) return; root->red = 0; for(p = root->left; p; p = p->left) cnt += !p->red; check_tree_recurse (root, 0, cnt); } #else #define CHECK_TREE(a) #endif /* Possibly "split" a node with two red successors, and/or fix up two red edges in a row. ROOTP is a pointer to the lowest node we visited, PARENTP and GPARENTP pointers to its parent/grandparent. P_R and GP_R contain the comparison values that determined which way was taken in the tree to reach ROOTP. MODE is 1 if we need not do the split, but must check for two red edges between GPARENTP and ROOTP. */ static void maybe_split_for_insert (node *rootp, node *parentp, node *gparentp, int p_r, int gp_r, int mode) { node root = *rootp; node *rp, *lp; rp = &(*rootp)->right; lp = &(*rootp)->left; /* See if we have to split this node (both successors red). */ if (mode == 1 || ((*rp) != NULL && (*lp) != NULL && (*rp)->red && (*lp)->red)) { /* This node becomes red, its successors black. */ root->red = 1; if (*rp) (*rp)->red = 0; if (*lp) (*lp)->red = 0; /* If the parent of this node is also red, we have to do rotations. */ if (parentp != NULL && (*parentp)->red) { node gp = *gparentp; node p = *parentp; /* There are two main cases: 1. The edge types (left or right) of the two red edges differ. 2. Both red edges are of the same type. There exist two symmetries of each case, so there is a total of 4 cases. */ if ((p_r > 0) != (gp_r > 0)) { /* Put the child at the top of the tree, with its parent and grandparent as successors. */ p->red = 1; gp->red = 1; root->red = 0; if (p_r < 0) { /* Child is left of parent. */ p->left = *rp; *rp = p; gp->right = *lp; *lp = gp; } else { /* Child is right of parent. */ p->right = *lp; *lp = p; gp->left = *rp; *rp = gp; } *gparentp = root; } else { *gparentp = *parentp; /* Parent becomes the top of the tree, grandparent and child are its successors. */ p->red = 0; gp->red = 1; if (p_r < 0) { /* Left edges. */ gp->left = p->right; p->right = gp; } else { /* Right edges. */ gp->right = p->left; p->left = gp; } } } } } /* Find or insert datum into search tree. KEY is the key to be located, ROOTP is the address of tree root, COMPAR the ordering function. */ void * __tsearch (const void *key, void **vrootp, __compar_fn_t compar) { node q; node *parentp = NULL, *gparentp = NULL; node *rootp = (node *) vrootp; node *nextp; int r = 0, p_r = 0, gp_r = 0; /* No they might not, Mr Compiler. */ if (rootp == NULL) return NULL; /* This saves some additional tests below. */ if (*rootp != NULL) (*rootp)->red = 0; CHECK_TREE (*rootp); nextp = rootp; while (*nextp != NULL) { node root = *rootp; r = (*compar) (key, root->key); if (r == 0) return root; maybe_split_for_insert (rootp, parentp, gparentp, p_r, gp_r, 0); /* If that did any rotations, parentp and gparentp are now garbage. That doesn't matter, because the values they contain are never used again in that case. */ nextp = r < 0 ? &root->left : &root->right; if (*nextp == NULL) break; gparentp = parentp; parentp = rootp; rootp = nextp; gp_r = p_r; p_r = r; } q = (struct node_t *) malloc (sizeof (struct node_t)); if (q != NULL) { *nextp = q; /* link new node to old */ q->key = key; /* initialize new node */ q->red = 1; q->left = q->right = NULL; if (nextp != rootp) /* There may be two red edges in a row now, which we must avoid by rotating the tree. */ maybe_split_for_insert (nextp, rootp, parentp, r, p_r, 1); } return q; } #ifdef weak_alias weak_alias (__tsearch, tsearch) #endif /* Find datum in search tree. KEY is the key to be located, ROOTP is the address of tree root, COMPAR the ordering function. */ void * __tfind (key, vrootp, compar) const void *key; void *const *vrootp; __compar_fn_t compar; { node *rootp = (node *) vrootp; if (rootp == NULL) return NULL; CHECK_TREE (*rootp); while (*rootp != NULL) { node root = *rootp; int r; r = (*compar) (key, root->key); if (r == 0) return root; rootp = r < 0 ? &root->left : &root->right; } return NULL; } #ifdef weak_alias weak_alias (__tfind, tfind) #endif /* Delete node with given key. KEY is the key to be deleted, ROOTP is the address of the root of tree, COMPAR the comparison function. */ void * __tdelete (const void *key, void **vrootp, __compar_fn_t compar) { node p, q, r, retval; int cmp; node *rootp = (node *) vrootp; node root, unchained; /* Stack of nodes so we remember the parents without recursion. It's _very_ unlikely that there are paths longer than 40 nodes. The tree would need to have around 250.000 nodes. */ int stacksize = 100; int sp = 0; node *nodestack[100]; if (rootp == NULL) return NULL; p = *rootp; if (p == NULL) return NULL; CHECK_TREE (p); while ((cmp = (*compar) (key, (*rootp)->key)) != 0) { if (sp == stacksize) abort (); nodestack[sp++] = rootp; p = *rootp; rootp = ((cmp < 0) ? &(*rootp)->left : &(*rootp)->right); if (*rootp == NULL) return NULL; } /* This is bogus if the node to be deleted is the root... this routine really should return an integer with 0 for success, -1 for failure and errno = ESRCH or something. */ retval = p; /* We don't unchain the node we want to delete. Instead, we overwrite it with its successor and unchain the successor. If there is no successor, we really unchain the node to be deleted. */ root = *rootp; r = root->right; q = root->left; if (q == NULL || r == NULL) unchained = root; else { node *parent = rootp, *up = &root->right; for (;;) { if (sp == stacksize) abort (); nodestack[sp++] = parent; parent = up; if ((*up)->left == NULL) break; up = &(*up)->left; } unchained = *up; } /* We know that either the left or right successor of UNCHAINED is NULL. R becomes the other one, it is chained into the parent of UNCHAINED. */ r = unchained->left; if (r == NULL) r = unchained->right; if (sp == 0) *rootp = r; else { q = *nodestack[sp-1]; if (unchained == q->right) q->right = r; else q->left = r; } if (unchained != root) root->key = unchained->key; if (!unchained->red) { /* Now we lost a black edge, which means that the number of black edges on every path is no longer constant. We must balance the tree. */ /* NODESTACK now contains all parents of R. R is likely to be NULL in the first iteration. */ /* NULL nodes are considered black throughout - this is necessary for correctness. */ while (sp > 0 && (r == NULL || !r->red)) { node *pp = nodestack[sp - 1]; p = *pp; /* Two symmetric cases. */ if (r == p->left) { /* Q is R's brother, P is R's parent. The subtree with root R has one black edge less than the subtree with root Q. */ q = p->right; if (q->red) { /* If Q is red, we know that P is black. We rotate P left so that Q becomes the top node in the tree, with P below it. P is colored red, Q is colored black. This action does not change the black edge count for any leaf in the tree, but we will be able to recognize one of the following situations, which all require that Q is black. */ q->red = 0; p->red = 1; /* Left rotate p. */ p->right = q->left; q->left = p; *pp = q; /* Make sure pp is right if the case below tries to use it. */ nodestack[sp++] = pp = &q->left; q = p->right; } /* We know that Q can't be NULL here. We also know that Q is black. */ if ((q->left == NULL || !q->left->red) && (q->right == NULL || !q->right->red)) { /* Q has two black successors. We can simply color Q red. The whole subtree with root P is now missing one black edge. Note that this action can temporarily make the tree invalid (if P is red). But we will exit the loop in that case and set P black, which both makes the tree valid and also makes the black edge count come out right. If P is black, we are at least one step closer to the root and we'll try again the next iteration. */ q->red = 1; r = p; } else { /* Q is black, one of Q's successors is red. We can repair the tree with one operation and will exit the loop afterwards. */ if (q->right == NULL || !q->right->red) { /* The left one is red. We perform the same action as in maybe_split_for_insert where two red edges are adjacent but point in different directions: Q's left successor (let's call it Q2) becomes the top of the subtree we are looking at, its parent (Q) and grandparent (P) become its successors. The former successors of Q2 are placed below P and Q. P becomes black, and Q2 gets the color that P had. This changes the black edge count only for node R and its successors. */ node q2 = q->left; q2->red = p->red; p->right = q2->left; q->left = q2->right; q2->right = q; q2->left = p; *pp = q2; p->red = 0; } else { /* It's the right one. Rotate P left. P becomes black, and Q gets the color that P had. Q's right successor also becomes black. This changes the black edge count only for node R and its successors. */ q->red = p->red; p->red = 0; q->right->red = 0; /* left rotate p */ p->right = q->left; q->left = p; *pp = q; } /* We're done. */ sp = 1; r = NULL; } } else { /* Comments: see above. */ q = p->left; if (q->red) { q->red = 0; p->red = 1; p->left = q->right; q->right = p; *pp = q; nodestack[sp++] = pp = &q->right; q = p->left; } if ((q->right == NULL || !q->right->red) && (q->left == NULL || !q->left->red)) { q->red = 1; r = p; } else { if (q->left == NULL || !q->left->red) { node q2 = q->right; q2->red = p->red; p->left = q2->right; q->right = q2->left; q2->left = q; q2->right = p; *pp = q2; p->red = 0; } else { q->red = p->red; p->red = 0; q->left->red = 0; p->left = q->right; q->right = p; *pp = q; } sp = 1; r = NULL; } } --sp; } if (r != NULL) r->red = 0; } free (unchained); return retval; } #ifdef weak_alias weak_alias (__tdelete, tdelete) #endif /* Walk the nodes of a tree. ROOT is the root of the tree to be walked, ACTION the function to be called at each node. LEVEL is the level of ROOT in the whole tree. */ static void internal_function trecurse (const void *vroot, __action_fn_t action, int level) { const_node root = (const_node) vroot; if (root->left == NULL && root->right == NULL) (*action) (root, leaf, level); else { (*action) (root, preorder, level); if (root->left != NULL) trecurse (root->left, action, level + 1); (*action) (root, postorder, level); if (root->right != NULL) trecurse (root->right, action, level + 1); (*action) (root, endorder, level); } } /* Walk the nodes of a tree. ROOT is the root of the tree to be walked, ACTION the function to be called at each node. */ void __twalk (const void *vroot, __action_fn_t action) { const_node root = (const_node) vroot; CHECK_TREE (root); if (root != NULL && action != NULL) trecurse (root, action, 0); } #ifdef weak_alias weak_alias (__twalk, twalk) #endif #ifdef _LIBC /* The standardized functions miss an important functionality: the tree cannot be removed easily. We provide a function to do this. */ static void internal_function tdestroy_recurse (node root, __free_fn_t freefct) { if (root->left != NULL) tdestroy_recurse (root->left, freefct); if (root->right != NULL) tdestroy_recurse (root->right, freefct); (*freefct) ((void *) root->key); /* Free the node itself. */ free (root); } void __tdestroy (void *vroot, __free_fn_t freefct) { node root = (node) vroot; CHECK_TREE (root); if (root != NULL) tdestroy_recurse (root, freefct); } weak_alias (__tdestroy, tdestroy) #endif /* _LIBC */ gerbv-2.7.0/intl/lock.h0000644000175000017500000010672113421555747014600 0ustar carstencarsten/* Locking in multithreaded situations. Copyright (C) 2005-2008 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible , 2005. Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h, gthr-win32.h. */ /* This file contains locking primitives for use with a given thread library. It does not contain primitives for creating threads or for other synchronization primitives. Normal (non-recursive) locks: Type: gl_lock_t Declaration: gl_lock_define(extern, name) Initializer: gl_lock_define_initialized(, name) Initialization: gl_lock_init (name); Taking the lock: gl_lock_lock (name); Releasing the lock: gl_lock_unlock (name); De-initialization: gl_lock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_lock_init (&name); Taking the lock: err = glthread_lock_lock (&name); Releasing the lock: err = glthread_lock_unlock (&name); De-initialization: err = glthread_lock_destroy (&name); Read-Write (non-recursive) locks: Type: gl_rwlock_t Declaration: gl_rwlock_define(extern, name) Initializer: gl_rwlock_define_initialized(, name) Initialization: gl_rwlock_init (name); Taking the lock: gl_rwlock_rdlock (name); gl_rwlock_wrlock (name); Releasing the lock: gl_rwlock_unlock (name); De-initialization: gl_rwlock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_rwlock_init (&name); Taking the lock: err = glthread_rwlock_rdlock (&name); err = glthread_rwlock_wrlock (&name); Releasing the lock: err = glthread_rwlock_unlock (&name); De-initialization: err = glthread_rwlock_destroy (&name); Recursive locks: Type: gl_recursive_lock_t Declaration: gl_recursive_lock_define(extern, name) Initializer: gl_recursive_lock_define_initialized(, name) Initialization: gl_recursive_lock_init (name); Taking the lock: gl_recursive_lock_lock (name); Releasing the lock: gl_recursive_lock_unlock (name); De-initialization: gl_recursive_lock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_recursive_lock_init (&name); Taking the lock: err = glthread_recursive_lock_lock (&name); Releasing the lock: err = glthread_recursive_lock_unlock (&name); De-initialization: err = glthread_recursive_lock_destroy (&name); Once-only execution: Type: gl_once_t Initializer: gl_once_define(extern, name) Execution: gl_once (name, initfunction); Equivalent functions with control of error handling: Execution: err = glthread_once (&name, initfunction); */ #ifndef _LOCK_H #define _LOCK_H #include #include /* ========================================================================= */ #if USE_POSIX_THREADS /* Use the POSIX threads library. */ # include # ifdef __cplusplus extern "C" { # endif # if PTHREAD_IN_USE_DETECTION_HARD /* The pthread_in_use() detection needs to be done at runtime. */ # define pthread_in_use() \ glthread_in_use () extern int glthread_in_use (void); # endif # if USE_POSIX_THREADS_WEAK /* Use weak references to the POSIX threads library. */ /* Weak references avoid dragging in external libraries if the other parts of the program don't use them. Here we use them, because we don't want every program that uses libintl to depend on libpthread. This assumes that libpthread would not be loaded after libintl; i.e. if libintl is loaded first, by an executable that does not depend on libpthread, and then a module is dynamically loaded that depends on libpthread, libintl will not be multithread-safe. */ /* The way to test at runtime whether libpthread is present is to test whether a function pointer's value, such as &pthread_mutex_init, is non-NULL. However, some versions of GCC have a bug through which, in PIC mode, &foo != NULL always evaluates to true if there is a direct call to foo(...) in the same function. To avoid this, we test the address of a function in libpthread that we don't use. */ # pragma weak pthread_mutex_init # pragma weak pthread_mutex_lock # pragma weak pthread_mutex_unlock # pragma weak pthread_mutex_destroy # pragma weak pthread_rwlock_init # pragma weak pthread_rwlock_rdlock # pragma weak pthread_rwlock_wrlock # pragma weak pthread_rwlock_unlock # pragma weak pthread_rwlock_destroy # pragma weak pthread_once # pragma weak pthread_cond_init # pragma weak pthread_cond_wait # pragma weak pthread_cond_signal # pragma weak pthread_cond_broadcast # pragma weak pthread_cond_destroy # pragma weak pthread_mutexattr_init # pragma weak pthread_mutexattr_settype # pragma weak pthread_mutexattr_destroy # ifndef pthread_self # pragma weak pthread_self # endif # if !PTHREAD_IN_USE_DETECTION_HARD # pragma weak pthread_cancel # define pthread_in_use() (pthread_cancel != NULL) # endif # else # if !PTHREAD_IN_USE_DETECTION_HARD # define pthread_in_use() 1 # endif # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef pthread_mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ PTHREAD_MUTEX_INITIALIZER # define glthread_lock_init(LOCK) \ (pthread_in_use () ? pthread_mutex_init (LOCK, NULL) : 0) # define glthread_lock_lock(LOCK) \ (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0) # define glthread_lock_unlock(LOCK) \ (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0) # define glthread_lock_destroy(LOCK) \ (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ # if HAVE_PTHREAD_RWLOCK # ifdef PTHREAD_RWLOCK_INITIALIZER typedef pthread_rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ PTHREAD_RWLOCK_INITIALIZER # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? pthread_rwlock_init (LOCK, NULL) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_rdlock (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_wrlock (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_unlock (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? pthread_rwlock_destroy (LOCK) : 0) # else typedef struct { int initialized; pthread_mutex_t guard; /* protects the initialization */ pthread_rwlock_t rwlock; /* read-write lock */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { 0, PTHREAD_MUTEX_INITIALIZER } # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0) extern int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock); # endif # else typedef struct { pthread_mutex_t lock; /* protects the remaining fields */ pthread_cond_t waiting_readers; /* waiting readers */ pthread_cond_t waiting_writers; /* waiting writers */ unsigned int waiting_writers_count; /* number of waiting writers */ int runcount; /* number of readers running, or -1 when a writer runs */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, PTHREAD_COND_INITIALIZER, 0, 0 } # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0) extern int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock); # endif /* --------------------- gl_recursive_lock_t datatype --------------------- */ # if HAVE_PTHREAD_MUTEX_RECURSIVE # if defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER || defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP typedef pthread_mutex_t gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME = gl_recursive_lock_initializer; # ifdef PTHREAD_RECURSIVE_MUTEX_INITIALIZER # define gl_recursive_lock_initializer \ PTHREAD_RECURSIVE_MUTEX_INITIALIZER # else # define gl_recursive_lock_initializer \ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP # endif # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); # else typedef struct { pthread_mutex_t recmutex; /* recursive mutex */ pthread_mutex_t guard; /* protects the initialization */ int initialized; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { PTHREAD_MUTEX_INITIALIZER, PTHREAD_MUTEX_INITIALIZER, 0 } # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); # endif # else /* Old versions of POSIX threads on Solaris did not have recursive locks. We have to implement them ourselves. */ typedef struct { pthread_mutex_t mutex; pthread_t owner; unsigned long depth; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { PTHREAD_MUTEX_INITIALIZER, (pthread_t) 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); # endif /* -------------------------- gl_once_t datatype -------------------------- */ typedef pthread_once_t gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_once_t NAME = PTHREAD_ONCE_INIT; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (pthread_in_use () \ ? pthread_once (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_singlethreaded (pthread_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_PTH_THREADS /* Use the GNU Pth threads library. */ # include # ifdef __cplusplus extern "C" { # endif # if USE_PTH_THREADS_WEAK /* Use weak references to the GNU Pth threads library. */ # pragma weak pth_mutex_init # pragma weak pth_mutex_acquire # pragma weak pth_mutex_release # pragma weak pth_rwlock_init # pragma weak pth_rwlock_acquire # pragma weak pth_rwlock_release # pragma weak pth_once # pragma weak pth_cancel # define pth_in_use() (pth_cancel != NULL) # else # define pth_in_use() 1 # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef pth_mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ PTH_MUTEX_INIT # define glthread_lock_init(LOCK) \ (pth_in_use () && !pth_mutex_init (LOCK) ? errno : 0) # define glthread_lock_lock(LOCK) \ (pth_in_use () && !pth_mutex_acquire (LOCK, 0, NULL) ? errno : 0) # define glthread_lock_unlock(LOCK) \ (pth_in_use () && !pth_mutex_release (LOCK) ? errno : 0) # define glthread_lock_destroy(LOCK) \ ((void)(LOCK), 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef pth_rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ PTH_RWLOCK_INIT # define glthread_rwlock_init(LOCK) \ (pth_in_use () && !pth_rwlock_init (LOCK) ? errno : 0) # define glthread_rwlock_rdlock(LOCK) \ (pth_in_use () && !pth_rwlock_acquire (LOCK, PTH_RWLOCK_RD, 0, NULL) ? errno : 0) # define glthread_rwlock_wrlock(LOCK) \ (pth_in_use () && !pth_rwlock_acquire (LOCK, PTH_RWLOCK_RW, 0, NULL) ? errno : 0) # define glthread_rwlock_unlock(LOCK) \ (pth_in_use () && !pth_rwlock_release (LOCK) ? errno : 0) # define glthread_rwlock_destroy(LOCK) \ ((void)(LOCK), 0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* In Pth, mutexes are recursive by default. */ typedef pth_mutex_t gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ PTH_MUTEX_INIT # define glthread_recursive_lock_init(LOCK) \ (pth_in_use () && !pth_mutex_init (LOCK) ? errno : 0) # define glthread_recursive_lock_lock(LOCK) \ (pth_in_use () && !pth_mutex_acquire (LOCK, 0, NULL) ? errno : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pth_in_use () && !pth_mutex_release (LOCK) ? errno : 0) # define glthread_recursive_lock_destroy(LOCK) \ ((void)(LOCK), 0) /* -------------------------- gl_once_t datatype -------------------------- */ typedef pth_once_t gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS pth_once_t NAME = PTH_ONCE_INIT; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (pth_in_use () \ ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_multithreaded (pth_once_t *once_control, void (*initfunction) (void)); extern int glthread_once_singlethreaded (pth_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_SOLARIS_THREADS /* Use the old Solaris threads library. */ # include # include # ifdef __cplusplus extern "C" { # endif # if USE_SOLARIS_THREADS_WEAK /* Use weak references to the old Solaris threads library. */ # pragma weak mutex_init # pragma weak mutex_lock # pragma weak mutex_unlock # pragma weak mutex_destroy # pragma weak rwlock_init # pragma weak rw_rdlock # pragma weak rw_wrlock # pragma weak rw_unlock # pragma weak rwlock_destroy # pragma weak thr_self # pragma weak thr_suspend # define thread_in_use() (thr_suspend != NULL) # else # define thread_in_use() 1 # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ DEFAULTMUTEX # define glthread_lock_init(LOCK) \ (thread_in_use () ? mutex_init (LOCK, USYNC_THREAD, NULL) : 0) # define glthread_lock_lock(LOCK) \ (thread_in_use () ? mutex_lock (LOCK) : 0) # define glthread_lock_unlock(LOCK) \ (thread_in_use () ? mutex_unlock (LOCK) : 0) # define glthread_lock_destroy(LOCK) \ (thread_in_use () ? mutex_destroy (LOCK) : 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ DEFAULTRWLOCK # define glthread_rwlock_init(LOCK) \ (thread_in_use () ? rwlock_init (LOCK, USYNC_THREAD, NULL) : 0) # define glthread_rwlock_rdlock(LOCK) \ (thread_in_use () ? rw_rdlock (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (thread_in_use () ? rw_wrlock (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (thread_in_use () ? rw_unlock (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (thread_in_use () ? rwlock_destroy (LOCK) : 0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* Old Solaris threads did not have recursive locks. We have to implement them ourselves. */ typedef struct { mutex_t mutex; thread_t owner; unsigned long depth; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { DEFAULTMUTEX, (thread_t) 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (thread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (thread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (thread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (thread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); /* -------------------------- gl_once_t datatype -------------------------- */ typedef struct { volatile int inited; mutex_t mutex; } gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = { 0, DEFAULTMUTEX }; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (thread_in_use () \ ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_multithreaded (gl_once_t *once_control, void (*initfunction) (void)); extern int glthread_once_singlethreaded (gl_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_WINDOWS_THREADS # define WIN32_LEAN_AND_MEAN /* avoid including junk */ # include # ifdef __cplusplus extern "C" { # endif /* We can use CRITICAL_SECTION directly, rather than the native Windows Event, Mutex, Semaphore types, because - we need only to synchronize inside a single process (address space), not inter-process locking, - we don't need to support trylock operations. (TryEnterCriticalSection does not work on Windows 95/98/ME. Packages that need trylock usually define their own mutex type.) */ /* There is no way to statically initialize a CRITICAL_SECTION. It needs to be done lazily, once only. For this we need spinlocks. */ typedef struct { volatile int done; volatile long started; } gl_spinlock_t; /* -------------------------- gl_lock_t datatype -------------------------- */ typedef struct { gl_spinlock_t guard; /* protects the initialization */ CRITICAL_SECTION lock; } gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_lock_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_lock_t NAME = gl_lock_initializer; # define gl_lock_initializer \ { { 0, -1 } } # define glthread_lock_init(LOCK) \ (glthread_lock_init_func (LOCK), 0) # define glthread_lock_lock(LOCK) \ glthread_lock_lock_func (LOCK) # define glthread_lock_unlock(LOCK) \ glthread_lock_unlock_func (LOCK) # define glthread_lock_destroy(LOCK) \ glthread_lock_destroy_func (LOCK) extern void glthread_lock_init_func (gl_lock_t *lock); extern int glthread_lock_lock_func (gl_lock_t *lock); extern int glthread_lock_unlock_func (gl_lock_t *lock); extern int glthread_lock_destroy_func (gl_lock_t *lock); /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* It is impossible to implement read-write locks using plain locks, without introducing an extra thread dedicated to managing read-write locks. Therefore here we need to use the low-level Event type. */ typedef struct { HANDLE *array; /* array of waiting threads, each represented by an event */ unsigned int count; /* number of waiting threads */ unsigned int alloc; /* length of allocated array */ unsigned int offset; /* index of first waiting thread in array */ } gl_carray_waitqueue_t; typedef struct { gl_spinlock_t guard; /* protects the initialization */ CRITICAL_SECTION lock; /* protects the remaining fields */ gl_carray_waitqueue_t waiting_readers; /* waiting readers */ gl_carray_waitqueue_t waiting_writers; /* waiting writers */ int runcount; /* number of readers running, or -1 when a writer runs */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { { 0, -1 } } # define glthread_rwlock_init(LOCK) \ (glthread_rwlock_init_func (LOCK), 0) # define glthread_rwlock_rdlock(LOCK) \ glthread_rwlock_rdlock_func (LOCK) # define glthread_rwlock_wrlock(LOCK) \ glthread_rwlock_wrlock_func (LOCK) # define glthread_rwlock_unlock(LOCK) \ glthread_rwlock_unlock_func (LOCK) # define glthread_rwlock_destroy(LOCK) \ glthread_rwlock_destroy_func (LOCK) extern void glthread_rwlock_init_func (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_func (gl_rwlock_t *lock); /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* The native Windows documentation says that CRITICAL_SECTION already implements a recursive lock. But we need not rely on it: It's easy to implement a recursive lock without this assumption. */ typedef struct { gl_spinlock_t guard; /* protects the initialization */ DWORD owner; unsigned long depth; CRITICAL_SECTION lock; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { { 0, -1 }, 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (glthread_recursive_lock_init_func (LOCK), 0) # define glthread_recursive_lock_lock(LOCK) \ glthread_recursive_lock_lock_func (LOCK) # define glthread_recursive_lock_unlock(LOCK) \ glthread_recursive_lock_unlock_func (LOCK) # define glthread_recursive_lock_destroy(LOCK) \ glthread_recursive_lock_destroy_func (LOCK) extern void glthread_recursive_lock_init_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_func (gl_recursive_lock_t *lock); /* -------------------------- gl_once_t datatype -------------------------- */ typedef struct { volatile int inited; volatile long started; CRITICAL_SECTION lock; } gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = { -1, -1 }; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (glthread_once_func (ONCE_CONTROL, INITFUNCTION), 0) extern void glthread_once_func (gl_once_t *once_control, void (*initfunction) (void)); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if !(USE_POSIX_THREADS || USE_PTH_THREADS || USE_SOLARIS_THREADS || USE_WINDOWS_THREADS) /* Provide dummy implementation if threads are not supported. */ /* -------------------------- gl_lock_t datatype -------------------------- */ typedef int gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) # define gl_lock_define_initialized(STORAGECLASS, NAME) # define glthread_lock_init(NAME) 0 # define glthread_lock_lock(NAME) 0 # define glthread_lock_unlock(NAME) 0 # define glthread_lock_destroy(NAME) 0 /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef int gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) # define gl_rwlock_define_initialized(STORAGECLASS, NAME) # define glthread_rwlock_init(NAME) 0 # define glthread_rwlock_rdlock(NAME) 0 # define glthread_rwlock_wrlock(NAME) 0 # define glthread_rwlock_unlock(NAME) 0 # define glthread_rwlock_destroy(NAME) 0 /* --------------------- gl_recursive_lock_t datatype --------------------- */ typedef int gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) # define glthread_recursive_lock_init(NAME) 0 # define glthread_recursive_lock_lock(NAME) 0 # define glthread_recursive_lock_unlock(NAME) 0 # define glthread_recursive_lock_destroy(NAME) 0 /* -------------------------- gl_once_t datatype -------------------------- */ typedef int gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = 0; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (*(ONCE_CONTROL) == 0 ? (*(ONCE_CONTROL) = ~ 0, INITFUNCTION (), 0) : 0) #endif /* ========================================================================= */ /* Macros with built-in error handling. */ /* -------------------------- gl_lock_t datatype -------------------------- */ #define gl_lock_init(NAME) \ do \ { \ if (glthread_lock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_lock(NAME) \ do \ { \ if (glthread_lock_lock (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_unlock(NAME) \ do \ { \ if (glthread_lock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_destroy(NAME) \ do \ { \ if (glthread_lock_destroy (&NAME)) \ abort (); \ } \ while (0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ #define gl_rwlock_init(NAME) \ do \ { \ if (glthread_rwlock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_rdlock(NAME) \ do \ { \ if (glthread_rwlock_rdlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_wrlock(NAME) \ do \ { \ if (glthread_rwlock_wrlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_unlock(NAME) \ do \ { \ if (glthread_rwlock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_destroy(NAME) \ do \ { \ if (glthread_rwlock_destroy (&NAME)) \ abort (); \ } \ while (0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ #define gl_recursive_lock_init(NAME) \ do \ { \ if (glthread_recursive_lock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_lock(NAME) \ do \ { \ if (glthread_recursive_lock_lock (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_unlock(NAME) \ do \ { \ if (glthread_recursive_lock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_destroy(NAME) \ do \ { \ if (glthread_recursive_lock_destroy (&NAME)) \ abort (); \ } \ while (0) /* -------------------------- gl_once_t datatype -------------------------- */ #define gl_once(NAME, INITFUNCTION) \ do \ { \ if (glthread_once (&NAME, INITFUNCTION)) \ abort (); \ } \ while (0) /* ========================================================================= */ #endif /* _LOCK_H */ gerbv-2.7.0/intl/printf-args.h0000644000175000017500000000757213421555747016110 0ustar carstencarsten/* Decomposed printf argument list. Copyright (C) 1999, 2002-2003, 2006-2007, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _PRINTF_ARGS_H #define _PRINTF_ARGS_H /* This file can be parametrized with the following macros: ENABLE_UNISTDIO Set to 1 to enable the unistdio extensions. PRINTF_FETCHARGS Name of the function to be declared. STATIC Set to 'static' to declare the function static. */ /* Default parameters. */ #ifndef PRINTF_FETCHARGS # define PRINTF_FETCHARGS printf_fetchargs #endif /* Get size_t. */ #include /* Get wchar_t. */ #if HAVE_WCHAR_T # include #endif /* Get wint_t. */ #if HAVE_WINT_T # include #endif /* Get va_list. */ #include /* Argument types */ typedef enum { TYPE_NONE, TYPE_SCHAR, TYPE_UCHAR, TYPE_SHORT, TYPE_USHORT, TYPE_INT, TYPE_UINT, TYPE_LONGINT, TYPE_ULONGINT, #if HAVE_LONG_LONG_INT TYPE_LONGLONGINT, TYPE_ULONGLONGINT, #endif TYPE_DOUBLE, TYPE_LONGDOUBLE, TYPE_CHAR, #if HAVE_WINT_T TYPE_WIDE_CHAR, #endif TYPE_STRING, #if HAVE_WCHAR_T TYPE_WIDE_STRING, #endif TYPE_POINTER, TYPE_COUNT_SCHAR_POINTER, TYPE_COUNT_SHORT_POINTER, TYPE_COUNT_INT_POINTER, TYPE_COUNT_LONGINT_POINTER #if HAVE_LONG_LONG_INT , TYPE_COUNT_LONGLONGINT_POINTER #endif #if ENABLE_UNISTDIO /* The unistdio extensions. */ , TYPE_U8_STRING , TYPE_U16_STRING , TYPE_U32_STRING #endif } arg_type; /* Polymorphic argument */ typedef struct { arg_type type; union { signed char a_schar; unsigned char a_uchar; short a_short; unsigned short a_ushort; int a_int; unsigned int a_uint; long int a_longint; unsigned long int a_ulongint; #if HAVE_LONG_LONG_INT long long int a_longlongint; unsigned long long int a_ulonglongint; #endif float a_float; double a_double; long double a_longdouble; int a_char; #if HAVE_WINT_T wint_t a_wide_char; #endif const char* a_string; #if HAVE_WCHAR_T const wchar_t* a_wide_string; #endif void* a_pointer; signed char * a_count_schar_pointer; short * a_count_short_pointer; int * a_count_int_pointer; long int * a_count_longint_pointer; #if HAVE_LONG_LONG_INT long long int * a_count_longlongint_pointer; #endif #if ENABLE_UNISTDIO /* The unistdio extensions. */ const uint8_t * a_u8_string; const uint16_t * a_u16_string; const uint32_t * a_u32_string; #endif } a; } argument; /* Number of directly allocated arguments (no malloc() needed). */ #define N_DIRECT_ALLOC_ARGUMENTS 7 typedef struct { size_t count; argument *arg; argument direct_alloc_arg[N_DIRECT_ALLOC_ARGUMENTS]; } arguments; /* Fetch the arguments, putting them into a. */ #ifdef STATIC STATIC #else extern #endif int PRINTF_FETCHARGS (va_list args, arguments *a); #endif /* _PRINTF_ARGS_H */ gerbv-2.7.0/intl/threadlib.c0000644000175000017500000000360513421555750015570 0ustar carstencarsten/* Multithreading primitives. Copyright (C) 2005-2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Written by Bruno Haible , 2005. */ #include /* ========================================================================= */ #if USE_POSIX_THREADS /* Use the POSIX threads library. */ # include # include # if PTHREAD_IN_USE_DETECTION_HARD /* The function to be executed by a dummy thread. */ static void * dummy_thread_func (void *arg) { return arg; } int glthread_in_use (void) { static int tested; static int result; /* 1: linked with -lpthread, 0: only with libc */ if (!tested) { pthread_t thread; if (pthread_create (&thread, NULL, dummy_thread_func, NULL) != 0) /* Thread creation failed. */ result = 0; else { /* Thread creation works. */ void *retval; if (pthread_join (thread, &retval) != 0) abort (); result = 1; } tested = 1; } return result; } # endif #endif /* ========================================================================= */ /* This declaration is solely to ensure that after preprocessing this file is never empty. */ typedef int dummy; gerbv-2.7.0/intl/os2compat.h0000644000175000017500000000272613421555747015557 0ustar carstencarsten/* OS/2 compatibility defines. This file is intended to be included from config.h Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* When included from os2compat.h we need all the original definitions */ #ifndef OS2_AWARE #undef LIBDIR #define LIBDIR _nlos2_libdir extern char *_nlos2_libdir; #undef LOCALEDIR #define LOCALEDIR _nlos2_localedir extern char *_nlos2_localedir; #undef LOCALE_ALIAS_PATH #define LOCALE_ALIAS_PATH _nlos2_localealiaspath extern char *_nlos2_localealiaspath; #endif #undef HAVE_STRCASECMP #define HAVE_STRCASECMP 1 #define strcasecmp stricmp #define strncasecmp strnicmp /* We have our own getenv() which works even if library is compiled as DLL */ #define getenv _nl_getenv /* Older versions of gettext used -1 as the value of LC_MESSAGES */ #define LC_MESSAGES_COMPAT (-1) gerbv-2.7.0/intl/libintl.rc0000644000175000017500000000312613421555747015455 0ustar carstencarsten/* Resources for intl.dll */ #include VS_VERSION_INFO VERSIONINFO FILEVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0 PRODUCTVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0 FILEFLAGSMASK 0x3fL /* VS_FFI_FILEFLAGSMASK */ #ifdef _DEBUG FILEFLAGS 0x1L /* VS_FF_DEBUG */ #else FILEFLAGS 0x0L #endif FILEOS 0x10004L /* VOS_DOS_WINDOWS32 */ FILETYPE 0x2L /* VFT_DLL */ FILESUBTYPE 0x0L /* VFT2_UNKNOWN */ BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "04090000" /* Lang = US English, Charset = ASCII */ BEGIN VALUE "Comments", "This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License. You should have received a copy of the GNU Lesser General Public License along with this library; if not, see .\0" VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "LGPLed libintl for Windows NT/2000/XP/Vista/7 and Windows 95/98/ME\0" VALUE "FileVersion", PACKAGE_VERSION_STRING "\0" VALUE "InternalName", "intl.dll\0" VALUE "LegalCopyright", "Copyright (C) 1995-2010\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "intl.dll\0" VALUE "ProductName", "libintl: accessing NLS message catalogs\0" VALUE "ProductVersion", PACKAGE_VERSION_STRING "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x0409, 0 /* US English, ASCII */ END END gerbv-2.7.0/intl/vasnprintf.h0000644000175000017500000000535413421555750016034 0ustar carstencarsten/* vsprintf with automatic memory allocation. Copyright (C) 2002-2004, 2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _VASNPRINTF_H #define _VASNPRINTF_H /* Get va_list. */ #include /* Get size_t. */ #include #ifndef __attribute__ /* This feature is available in gcc versions 2.5 and later. */ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__ # define __attribute__(Spec) /* empty */ # endif /* The __-protected variants of 'format' and 'printf' attributes are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) # define __format__ format # define __printf__ printf # endif #endif #ifdef __cplusplus extern "C" { #endif /* Write formatted output to a string dynamically allocated with malloc(). You can pass a preallocated buffer for the result in RESULTBUF and its size in *LENGTHP; otherwise you pass RESULTBUF = NULL. If successful, return the address of the string (this may be = RESULTBUF if no dynamic memory allocation was necessary) and set *LENGTHP to the number of resulting bytes, excluding the trailing NUL. Upon error, set errno and return NULL. When dynamic memory allocation occurs, the preallocated buffer is left alone (with possibly modified contents). This makes it possible to use a statically allocated or stack-allocated buffer, like this: char buf[100]; size_t len = sizeof (buf); char *output = vasnprintf (buf, &len, format, args); if (output == NULL) ... error handling ...; else { ... use the output string ...; if (output != buf) free (output); } */ extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) __attribute__ ((__format__ (__printf__, 3, 4))); extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args) __attribute__ ((__format__ (__printf__, 3, 0))); #ifdef __cplusplus } #endif #endif /* _VASNPRINTF_H */ gerbv-2.7.0/intl/dcngettext.c0000644000175000017500000000337713421555746016016 0ustar carstencarsten/* Implementation of the dcngettext(3) function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCNGETTEXT __dcngettext # define DCIGETTEXT __dcigettext #else # define DCNGETTEXT libintl_dcngettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCNGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) { return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dcngettext, dcngettext); #endif gerbv-2.7.0/intl/osdep.c0000644000175000017500000000167313421555747014755 0ustar carstencarsten/* OS dependent parts of libintl. Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #if defined __CYGWIN__ || defined __MINGW32__ # include "intl-exports.c" #elif defined __EMX__ # include "os2compat.c" #else /* Avoid AIX compiler warning. */ typedef int dummy; #endif gerbv-2.7.0/intl/textdomain.c0000644000175000017500000000737113421555750016012 0ustar carstencarsten/* Implementation of the textdomain(3) function. Copyright (C) 1995-1998, 2000-2003, 2005-2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include # define gl_rwlock_define __libc_rwlock_define # define gl_rwlock_wrlock __libc_rwlock_wrlock # define gl_rwlock_unlock __libc_rwlock_unlock #else # include "lock.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define TEXTDOMAIN __textdomain # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define TEXTDOMAIN libintl_textdomain #endif /* Lock variable to protect the global data in the gettext implementation. */ gl_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ char * TEXTDOMAIN (const char *domainname) { char *new_domain; char *old_domain; /* A NULL pointer requests the current setting. */ if (domainname == NULL) return (char *) _nl_current_default_domain; gl_rwlock_wrlock (_nl_state_lock); old_domain = (char *) _nl_current_default_domain; /* If domain name is the null string set to default domain "messages". */ if (domainname[0] == '\0' || strcmp (domainname, _nl_default_default_domain) == 0) { _nl_current_default_domain = _nl_default_default_domain; new_domain = (char *) _nl_current_default_domain; } else if (strcmp (domainname, old_domain) == 0) /* This can happen and people will use it to signal that some environment variable changed. */ new_domain = old_domain; else { /* If the following malloc fails `_nl_current_default_domain' will be NULL. This value will be returned and so signals we are out of core. */ #if defined _LIBC || defined HAVE_STRDUP new_domain = strdup (domainname); #else size_t len = strlen (domainname) + 1; new_domain = (char *) malloc (len); if (new_domain != NULL) memcpy (new_domain, domainname, len); #endif if (new_domain != NULL) _nl_current_default_domain = new_domain; } /* We use this possibility to signal a change of the loaded catalogs since this is most likely the case and there is no other easy we to do it. Do it only when the call was successful. */ if (new_domain != NULL) { ++_nl_msg_cat_cntr; if (old_domain != new_domain && old_domain != _nl_default_default_domain) free (old_domain); } gl_rwlock_unlock (_nl_state_lock); return new_domain; } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__textdomain, textdomain); #endif gerbv-2.7.0/intl/finddomain.c0000644000175000017500000001357613421555746015757 0ustar carstencarsten/* Handle list of needed message catalogs Copyright (C) 1995-1999, 2000-2001, 2003-2007 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include # define gl_rwlock_define_initialized __libc_rwlock_define_initialized # define gl_rwlock_rdlock __libc_rwlock_rdlock # define gl_rwlock_wrlock __libc_rwlock_wrlock # define gl_rwlock_unlock __libc_rwlock_unlock #else # include "lock.h" #endif /* @@ end of prolog @@ */ /* List of already loaded domains. */ static struct loaded_l10nfile *_nl_loaded_domains; /* Return a data structure describing the message catalog described by the DOMAINNAME and CATEGORY parameters with respect to the currently established bindings. */ struct loaded_l10nfile * internal_function _nl_find_domain (const char *dirname, char *locale, const char *domainname, struct binding *domainbinding) { struct loaded_l10nfile *retval; const char *language; const char *modifier; const char *territory; const char *codeset; const char *normalized_codeset; const char *alias_value; int mask; /* LOCALE can consist of up to four recognized parts for the XPG syntax: language[_territory][.codeset][@modifier] Beside the first part all of them are allowed to be missing. If the full specified locale is not found, the less specific one are looked for. The various parts will be stripped off according to the following order: (1) codeset (2) normalized codeset (3) territory (4) modifier */ /* We need to protect modifying the _NL_LOADED_DOMAINS data. */ gl_rwlock_define_initialized (static, lock); gl_rwlock_rdlock (lock); /* If we have already tested for this locale entry there has to be one data set in the list of loaded domains. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, 0, locale, NULL, NULL, NULL, NULL, domainname, 0); gl_rwlock_unlock (lock); if (retval != NULL) { /* We know something about this locale. */ int cnt; if (retval->decided <= 0) _nl_load_domain (retval, domainbinding); if (retval->data != NULL) return retval; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided <= 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } return retval; /* NOTREACHED */ } /* See whether the locale value is an alias. If yes its value *overwrites* the alias name. No test for the original value is done. */ alias_value = _nl_expand_alias (locale); if (alias_value != NULL) { #if defined _LIBC || defined HAVE_STRDUP locale = strdup (alias_value); if (locale == NULL) return NULL; #else size_t len = strlen (alias_value) + 1; locale = (char *) malloc (len); if (locale == NULL) return NULL; memcpy (locale, alias_value, len); #endif } /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_', '.', and `@'. */ mask = _nl_explode_name (locale, &language, &modifier, &territory, &codeset, &normalized_codeset); if (mask == -1) /* This means we are out of core. */ return NULL; /* We need to protect modifying the _NL_LOADED_DOMAINS data. */ gl_rwlock_wrlock (lock); /* Create all possible locale entries which might be interested in generalization. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, mask, language, territory, codeset, normalized_codeset, modifier, domainname, 1); gl_rwlock_unlock (lock); if (retval == NULL) /* This means we are out of core. */ goto out; if (retval->decided <= 0) _nl_load_domain (retval, domainbinding); if (retval->data == NULL) { int cnt; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided <= 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } } /* The room for an alias was dynamically allocated. Free it now. */ if (alias_value != NULL) free (locale); out: /* The space for normalized_codeset is dynamically allocated. Free it. */ if (mask & XPG_NORM_CODESET) free ((void *) normalized_codeset); return retval; } #ifdef _LIBC /* This is called from iconv/gconv_db.c's free_mem, as locales must be freed before freeing gconv steps arrays. */ void __libc_freeres_fn_section _nl_finddomain_subfreeres () { struct loaded_l10nfile *runp = _nl_loaded_domains; while (runp != NULL) { struct loaded_l10nfile *here = runp; if (runp->data != NULL) _nl_unload_domain ((struct loaded_domain *) runp->data); runp = runp->next; free ((char *) here->filename); free (here); } } #endif gerbv-2.7.0/intl/relocatable.c0000644000175000017500000003724513421555750016116 0ustar carstencarsten/* Provide relocatable packages. Copyright (C) 2003-2006, 2008-2011 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tell glibc's to provide a prototype for getline(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #define _GL_USE_STDLIB_ALLOC 1 #include /* Specification. */ #include "relocatable.h" #if ENABLE_RELOCATABLE #include #include #include #include #ifdef NO_XMALLOC # define xmalloc malloc #else # include "xalloc.h" #endif #if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ # define WIN32_LEAN_AND_MEAN # include #endif #if DEPENDS_ON_LIBCHARSET # include #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV # include #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS # include #endif /* Faked cheap 'bool'. */ #undef bool #undef false #undef true #define bool int #define false 0 #define true 1 /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__ /* Native Windows, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) # define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) # define FILE_SYSTEM_PREFIX_LEN(P) 0 #endif /* Whether to enable the more costly support for relocatable libraries. It allows libraries to be have been installed with a different original prefix than the program. But it is quite costly, especially on Cygwin platforms, see below. Therefore we enable it by default only on native Windows platforms. */ #ifndef ENABLE_COSTLY_RELOCATABLE # if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ # define ENABLE_COSTLY_RELOCATABLE 1 # else # define ENABLE_COSTLY_RELOCATABLE 0 # endif #endif /* Original installation prefix. */ static char *orig_prefix; static size_t orig_prefix_len; /* Current installation prefix. */ static char *curr_prefix; static size_t curr_prefix_len; /* These prefixes do not end in a slash. Anything that will be concatenated to them must start with a slash. */ /* Sets the original and the current installation prefix of this module. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ static void set_this_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { if (orig_prefix_arg != NULL && curr_prefix_arg != NULL /* Optimization: if orig_prefix and curr_prefix are equal, the relocation is a nop. */ && strcmp (orig_prefix_arg, curr_prefix_arg) != 0) { /* Duplicate the argument strings. */ char *memory; orig_prefix_len = strlen (orig_prefix_arg); curr_prefix_len = strlen (curr_prefix_arg); memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1); #ifdef NO_XMALLOC if (memory != NULL) #endif { memcpy (memory, orig_prefix_arg, orig_prefix_len + 1); orig_prefix = memory; memory += orig_prefix_len + 1; memcpy (memory, curr_prefix_arg, curr_prefix_len + 1); curr_prefix = memory; return; } } orig_prefix = NULL; curr_prefix = NULL; /* Don't worry about wasted memory here - this function is usually only called once. */ } /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ void set_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg); /* Now notify all dependent libraries. */ #if DEPENDS_ON_LIBCHARSET libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109 libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif } #if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE) /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns it, freshly allocated. Returns NULL upon failure. */ #ifdef IN_LIBRARY #define compute_curr_prefix local_compute_curr_prefix static #endif char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname) { char *curr_installdir; const char *rel_installdir; if (curr_pathname == NULL) return NULL; /* Determine the relative installation directory, relative to the prefix. This is simply the difference between orig_installprefix and orig_installdir. */ if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix)) != 0) /* Shouldn't happen - nothing should be installed outside $(prefix). */ return NULL; rel_installdir = orig_installdir + strlen (orig_installprefix); /* Determine the current installation directory. */ { const char *p_base = curr_pathname + FILE_SYSTEM_PREFIX_LEN (curr_pathname); const char *p = curr_pathname + strlen (curr_pathname); char *q; while (p > p_base) { p--; if (ISSLASH (*p)) break; } q = (char *) xmalloc (p - curr_pathname + 1); #ifdef NO_XMALLOC if (q == NULL) return NULL; #endif memcpy (q, curr_pathname, p - curr_pathname); q[p - curr_pathname] = '\0'; curr_installdir = q; } /* Compute the current installation prefix by removing the trailing rel_installdir from it. */ { const char *rp = rel_installdir + strlen (rel_installdir); const char *cp = curr_installdir + strlen (curr_installdir); const char *cp_base = curr_installdir + FILE_SYSTEM_PREFIX_LEN (curr_installdir); while (rp > rel_installdir && cp > cp_base) { bool same = false; const char *rpi = rp; const char *cpi = cp; while (rpi > rel_installdir && cpi > cp_base) { rpi--; cpi--; if (ISSLASH (*rpi) || ISSLASH (*cpi)) { if (ISSLASH (*rpi) && ISSLASH (*cpi)) same = true; break; } /* Do case-insensitive comparison if the file system is always or often case-insensitive. It's better to accept the comparison if the difference is only in case, rather than to fail. */ #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ /* Native Windows, Cygwin, OS/2, DOS - case insignificant file system */ if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi) != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi)) break; #else if (*rpi != *cpi) break; #endif } if (!same) break; /* The last pathname component was the same. opi and cpi now point to the slash before it. */ rp = rpi; cp = cpi; } if (rp > rel_installdir) { /* Unexpected: The curr_installdir does not end with rel_installdir. */ free (curr_installdir); return NULL; } { size_t curr_prefix_len = cp - curr_installdir; char *curr_prefix; curr_prefix = (char *) xmalloc (curr_prefix_len + 1); #ifdef NO_XMALLOC if (curr_prefix == NULL) { free (curr_installdir); return NULL; } #endif memcpy (curr_prefix, curr_installdir, curr_prefix_len); curr_prefix[curr_prefix_len] = '\0'; free (curr_installdir); return curr_prefix; } } } #endif /* !IN_LIBRARY || PIC */ #if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE /* Full pathname of shared library, or NULL. */ static char *shared_library_fullname; #if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ /* Native Windows only. On Cygwin, it is better to use the Cygwin provided /proc interface, than to use native Windows API and cygwin_conv_to_posix_path, because it supports longer file names (see ). */ /* Determine the full pathname of the shared library when it is loaded. */ BOOL WINAPI DllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved) { (void) reserved; if (event == DLL_PROCESS_ATTACH) { /* The DLL is being loaded into an application's address range. */ static char location[MAX_PATH]; if (!GetModuleFileName (module_handle, location, sizeof (location))) /* Shouldn't happen. */ return FALSE; if (!IS_PATH_WITH_DIR (location)) /* Shouldn't happen. */ return FALSE; shared_library_fullname = strdup (location); } return TRUE; } #else /* Unix */ static void find_shared_library_fullname () { #if (defined __linux__ && (__GLIBC__ >= 2 || defined __UCLIBC__)) || defined __CYGWIN__ /* Linux has /proc/self/maps. glibc 2 and uClibc have the getline() function. Cygwin >= 1.5 has /proc/self/maps and the getline() function too. But it is costly: ca. 0.3 ms on Linux, 3 ms on Cygwin 1.5, and 5 ms on Cygwin 1.7. */ FILE *fp; /* Open the current process' maps file. It describes one VMA per line. */ fp = fopen ("/proc/self/maps", "r"); if (fp) { unsigned long address = (unsigned long) &find_shared_library_fullname; for (;;) { unsigned long start, end; int c; if (fscanf (fp, "%lx-%lx", &start, &end) != 2) break; if (address >= start && address <= end - 1) { /* Found it. Now see if this line contains a filename. */ while (c = getc (fp), c != EOF && c != '\n' && c != '/') continue; if (c == '/') { size_t size; int len; ungetc (c, fp); shared_library_fullname = NULL; size = 0; len = getline (&shared_library_fullname, &size, fp); if (len >= 0) { /* Success: filled shared_library_fullname. */ if (len > 0 && shared_library_fullname[len - 1] == '\n') shared_library_fullname[len - 1] = '\0'; } } break; } while (c = getc (fp), c != EOF && c != '\n') continue; } fclose (fp); } #endif } #endif /* Native Windows / Unix */ /* Return the full pathname of the current shared library. Return NULL if unknown. Guaranteed to work only on Linux, Cygwin, and native Windows. */ static char * get_shared_library_fullname () { #if !((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) static bool tried_find_shared_library_fullname; if (!tried_find_shared_library_fullname) { find_shared_library_fullname (); tried_find_shared_library_fullname = true; } #endif return shared_library_fullname; } #endif /* PIC */ /* Returns the pathname, relocated according to the current installation directory. The returned string is either PATHNAME unmodified or a freshly allocated string that you can free with free() after casting it to 'char *'. */ const char * relocate (const char *pathname) { #if defined PIC && defined INSTALLDIR && ENABLE_COSTLY_RELOCATABLE static int initialized; /* Initialization code for a shared library. */ if (!initialized) { /* At this point, orig_prefix and curr_prefix likely have already been set through the main program's set_program_name_and_installdir function. This is sufficient in the case that the library has initially been installed in the same orig_prefix. But we can do better, to also cover the cases that 1. it has been installed in a different prefix before being moved to orig_prefix and (later) to curr_prefix, 2. unlike the program, it has not moved away from orig_prefix. */ const char *orig_installprefix = INSTALLPREFIX; const char *orig_installdir = INSTALLDIR; char *curr_prefix_better; curr_prefix_better = compute_curr_prefix (orig_installprefix, orig_installdir, get_shared_library_fullname ()); set_relocation_prefix (orig_installprefix, curr_prefix_better != NULL ? curr_prefix_better : curr_prefix); if (curr_prefix_better != NULL) free (curr_prefix_better); initialized = 1; } #endif /* Note: It is not necessary to perform case insensitive comparison here, even for DOS-like file systems, because the pathname argument was typically created from the same Makefile variable as orig_prefix came from. */ if (orig_prefix != NULL && curr_prefix != NULL && strncmp (pathname, orig_prefix, orig_prefix_len) == 0) { if (pathname[orig_prefix_len] == '\0') { /* pathname equals orig_prefix. */ char *result = (char *) xmalloc (strlen (curr_prefix) + 1); #ifdef NO_XMALLOC if (result != NULL) #endif { strcpy (result, curr_prefix); return result; } } else if (ISSLASH (pathname[orig_prefix_len])) { /* pathname starts with orig_prefix. */ const char *pathname_tail = &pathname[orig_prefix_len]; char *result = (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1); #ifdef NO_XMALLOC if (result != NULL) #endif { memcpy (result, curr_prefix, curr_prefix_len); strcpy (result + curr_prefix_len, pathname_tail); return result; } } } /* Nothing to relocate. */ return pathname; } #endif gerbv-2.7.0/intl/tsearch.h0000644000175000017500000000536113421555750015271 0ustar carstencarsten/* Binary tree data structure. Copyright (C) 2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _TSEARCH_H #define _TSEARCH_H #if HAVE_TSEARCH /* Get tseach(), tfind(), tdelete(), twalk() declarations. */ #include #else #ifdef __cplusplus extern "C" { #endif /* See , for details. */ typedef enum { preorder, postorder, endorder, leaf } VISIT; /* Searches an element in the tree *VROOTP that compares equal to KEY. If one is found, it is returned. Otherwise, a new element equal to KEY is inserted in the tree and is returned. */ extern void * tsearch (const void *key, void **vrootp, int (*compar) (const void *, const void *)); /* Searches an element in the tree *VROOTP that compares equal to KEY. If one is found, it is returned. Otherwise, NULL is returned. */ extern void * tfind (const void *key, void *const *vrootp, int (*compar) (const void *, const void *)); /* Searches an element in the tree *VROOTP that compares equal to KEY. If one is found, it is removed from the tree, and its parent node is returned. Otherwise, NULL is returned. */ extern void * tdelete (const void *key, void **vrootp, int (*compar) (const void *, const void *)); /* Perform a depth-first, left-to-right traversal of the tree VROOT. The ACTION function is called: - for non-leaf nodes: 3 times, before the left subtree traversal, after the left subtree traversal but before the right subtree traversal, and after the right subtree traversal, - for leaf nodes: once. The arguments passed to ACTION are: 1. the node; it can be casted to a 'const void * const *', i.e. into a pointer to the key, 2. an indicator which visit of the node this is, 3. the level of the node in the tree (0 for the root). */ extern void twalk (const void *vroot, void (*action) (const void *, VISIT, int)); #ifdef __cplusplus } #endif #endif #endif /* _TSEARCH_H */ gerbv-2.7.0/intl/plural.c0000644000175000017500000015006213421555747015137 0ustar carstencarsten/* A Bison parser, made by GNU Bison 3.0.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.0.2" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 2 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Substitute the variable and function names. */ #define yyparse __gettextparse #define yylex __gettextlex #define yyerror __gettexterror #define yydebug __gettextdebug #define yynerrs __gettextnerrs /* Copy the first part of user declarations. */ #line 1 "plural.y" /* yacc.c:339 */ /* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003, 2005-2006 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* For bison < 2.0, the bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. This can go away once the AM_INTL_SUBDIR macro requires bison >= 2.0. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #line 116 "plural.c" /* yacc.c:339 */ # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* In a future release of Bison, this section will be replaced by #include "plural.h". */ #ifndef YY__GETTEXT_PLURAL_H_INCLUDED # define YY__GETTEXT_PLURAL_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int __gettextdebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { EQUOP2 = 258, CMPOP2 = 259, ADDOP2 = 260, MULOP2 = 261, NUMBER = 262 }; #endif /* Tokens. */ #define EQUOP2 258 #define CMPOP2 259 #define ADDOP2 260 #define MULOP2 261 #define NUMBER 262 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE YYSTYPE; union YYSTYPE { #line 49 "plural.y" /* yacc.c:355 */ unsigned long int num; enum expression_operator op; struct expression *exp; #line 176 "plural.c" /* yacc.c:355 */ }; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif int __gettextparse (struct parse_args *arg); #endif /* !YY__GETTEXT_PLURAL_H_INCLUDED */ /* Copy the second part of user declarations. */ #line 55 "plural.y" /* yacc.c:358 */ /* Prototypes for local functions. */ static int yylex (YYSTYPE *lval, struct parse_args *arg); static void yyerror (struct parse_args *arg, const char *str); /* Allocation of expressions. */ static struct expression * new_exp (int nargs, enum expression_operator op, struct expression * const *args) { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (enum expression_operator op) { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (enum expression_operator op, struct expression *right) { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (enum expression_operator op, struct expression *left, struct expression *right) { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (enum expression_operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch) { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } #line 266 "plural.c" /* yacc.c:358 */ #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE # if (defined __GNUC__ \ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C # define YY_ATTRIBUTE(Spec) __attribute__(Spec) # else # define YY_ATTRIBUTE(Spec) /* empty */ # endif #endif #ifndef YY_ATTRIBUTE_PURE # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) #endif #ifndef YY_ATTRIBUTE_UNUSED # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif #if !defined _Noreturn \ && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) # if defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 9 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 54 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 16 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 3 /* YYNRULES -- Number of rules. */ #define YYNRULES 13 /* YYNSTATES -- Number of states. */ #define YYNSTATES 27 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 262 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 5, 2, 14, 15, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 12, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 13, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 6, 7, 8, 9, 11 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint8 yyrline[] = { 0, 152, 152, 160, 164, 168, 172, 176, 180, 184, 188, 192, 196, 201 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 0 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "'?'", "'|'", "'&'", "EQUOP2", "CMPOP2", "ADDOP2", "MULOP2", "'!'", "NUMBER", "':'", "'n'", "'('", "')'", "$accept", "start", "exp", YY_NULLPTR }; #endif # ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 63, 124, 38, 258, 259, 260, 261, 33, 262, 58, 110, 40, 41 }; # endif #define YYPACT_NINF -10 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-10))) #define YYTABLE_NINF -1 #define yytable_value_is_error(Yytable_value) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int8 yypact[] = { -9, -9, -10, -10, -9, 8, 36, -10, 13, -10, -9, -9, -9, -9, -9, -9, -9, -10, 26, 41, 45, 18, -2, 14, -10, -9, 36 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 0, 0, 12, 11, 0, 0, 2, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, 0, 4, 5, 6, 7, 8, 9, 0, 3 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -10, -10, -1 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { -1, 5, 6 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_uint8 yytable[] = { 7, 1, 2, 8, 3, 4, 15, 16, 9, 18, 19, 20, 21, 22, 23, 24, 10, 11, 12, 13, 14, 15, 16, 16, 26, 14, 15, 16, 17, 10, 11, 12, 13, 14, 15, 16, 0, 0, 25, 10, 11, 12, 13, 14, 15, 16, 12, 13, 14, 15, 16, 13, 14, 15, 16 }; static const yytype_int8 yycheck[] = { 1, 10, 11, 4, 13, 14, 8, 9, 0, 10, 11, 12, 13, 14, 15, 16, 3, 4, 5, 6, 7, 8, 9, 9, 25, 7, 8, 9, 15, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, 3, 4, 5, 6, 7, 8, 9, 5, 6, 7, 8, 9, 6, 7, 8, 9 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 10, 11, 13, 14, 17, 18, 18, 18, 0, 3, 4, 5, 6, 7, 8, 9, 15, 18, 18, 18, 18, 18, 18, 18, 12, 18 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 16, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 5, 3, 3, 3, 3, 3, 3, 2, 1, 1, 3 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (arg, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Error token number */ #define YYTERROR 1 #define YYERRCODE 256 /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, arg); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*----------------------------------------. | Print this symbol's value on YYOUTPUT. | `----------------------------------------*/ static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct parse_args *arg) { FILE *yyo = yyoutput; YYUSE (yyo); YYUSE (arg); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct parse_args *arg) { YYFPRINTF (yyoutput, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep, arg); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule, struct parse_args *arg) { unsigned long int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yystos[yyssp[yyi + 1 - yynrhs]], &(yyvsp[(yyi + 1) - (yynrhs)]) , arg); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, Rule, arg); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T yystrlen (const char *yystr) { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]); YYSIZE_T yysize = yysize0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTR; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; { YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { YYSIZE_T yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, struct parse_args *arg) { YYUSE (yyvaluep); YYUSE (arg); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YYUSE (yytype); YY_IGNORE_MAYBE_UNINITIALIZED_END } /*----------. | yyparse. | `----------*/ int yyparse (struct parse_args *arg) { /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ /* Default value used for initialization, for pacifying older GCCs or non-GCC compilers. */ YY_INITIAL_VALUE (static YYSTYPE yyval_default;) YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default); /* Number of syntax errors so far. */ int yynerrs; int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: 'yyss': related to states. 'yyvs': related to semantic values. Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyssp = yyss = yyssa; yyvsp = yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = yylex (&yylval, arg); } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: #line 153 "plural.y" /* yacc.c:1646 */ { if ((yyvsp[0].exp) == NULL) YYABORT; arg->res = (yyvsp[0].exp); } #line 1363 "plural.c" /* yacc.c:1646 */ break; case 3: #line 161 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_3 (qmop, (yyvsp[-4].exp), (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1371 "plural.c" /* yacc.c:1646 */ break; case 4: #line 165 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 (lor, (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1379 "plural.c" /* yacc.c:1646 */ break; case 5: #line 169 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 (land, (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1387 "plural.c" /* yacc.c:1646 */ break; case 6: #line 173 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 ((yyvsp[-1].op), (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1395 "plural.c" /* yacc.c:1646 */ break; case 7: #line 177 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 ((yyvsp[-1].op), (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1403 "plural.c" /* yacc.c:1646 */ break; case 8: #line 181 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 ((yyvsp[-1].op), (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1411 "plural.c" /* yacc.c:1646 */ break; case 9: #line 185 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_2 ((yyvsp[-1].op), (yyvsp[-2].exp), (yyvsp[0].exp)); } #line 1419 "plural.c" /* yacc.c:1646 */ break; case 10: #line 189 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_1 (lnot, (yyvsp[0].exp)); } #line 1427 "plural.c" /* yacc.c:1646 */ break; case 11: #line 193 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = new_exp_0 (var); } #line 1435 "plural.c" /* yacc.c:1646 */ break; case 12: #line 197 "plural.y" /* yacc.c:1646 */ { if (((yyval.exp) = new_exp_0 (num)) != NULL) (yyval.exp)->val.num = (yyvsp[0].num); } #line 1444 "plural.c" /* yacc.c:1646 */ break; case 13: #line 202 "plural.y" /* yacc.c:1646 */ { (yyval.exp) = (yyvsp[-1].exp); } #line 1452 "plural.c" /* yacc.c:1646 */ break; #line 1456 "plural.c" /* yacc.c:1646 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (arg, YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (arg, yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, arg); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp, arg); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (arg, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, arg); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, arg); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif return yyresult; } #line 207 "plural.y" /* yacc.c:1906 */ void internal_function FREE_EXPRESSION (struct expression *exp) { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (YYSTYPE *lval, struct parse_args *arg) { const char *exp = arg->cp; int result; while (1) { if (exp[0] == '\0') { arg->cp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } arg->cp = exp; return result; } static void yyerror (struct parse_args *arg, const char *str) { /* Do nothing. We don't print error messages here. */ } gerbv-2.7.0/intl/loadmsgcat.c0000644000175000017500000010320513421555747015753 0ustar carstencarsten/* Load needed message catalogs. Copyright (C) 1995-1999, 2000-2008, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #ifdef _LIBC # include # include #endif #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \ || (defined _LIBC && defined _POSIX_MAPPED_FILES) # include # undef HAVE_MMAP # define HAVE_MMAP 1 #else # undef HAVE_MMAP #endif #if defined HAVE_STDINT_H_WITH_UINTMAX || defined _LIBC # include #endif #if defined HAVE_INTTYPES_H || defined _LIBC # include #endif #include "gmo.h" #include "gettextP.h" #include "hash-string.h" #include "plural-exp.h" #ifdef _LIBC # include "../locale/localeinfo.h" # include #endif /* Handle multi-threaded applications. */ #ifdef _LIBC # include #else # include "lock.h" #endif #ifdef _LIBC # ifndef PRI_MACROS_BROKEN # define PRI_MACROS_BROKEN 0 # endif #endif /* Provide fallback values for macros that ought to be defined in . Note that our fallback values need not be literal strings, because we don't use them with preprocessor string concatenation. */ #if !defined PRId8 || PRI_MACROS_BROKEN # undef PRId8 # define PRId8 "d" #endif #if !defined PRIi8 || PRI_MACROS_BROKEN # undef PRIi8 # define PRIi8 "i" #endif #if !defined PRIo8 || PRI_MACROS_BROKEN # undef PRIo8 # define PRIo8 "o" #endif #if !defined PRIu8 || PRI_MACROS_BROKEN # undef PRIu8 # define PRIu8 "u" #endif #if !defined PRIx8 || PRI_MACROS_BROKEN # undef PRIx8 # define PRIx8 "x" #endif #if !defined PRIX8 || PRI_MACROS_BROKEN # undef PRIX8 # define PRIX8 "X" #endif #if !defined PRId16 || PRI_MACROS_BROKEN # undef PRId16 # define PRId16 "d" #endif #if !defined PRIi16 || PRI_MACROS_BROKEN # undef PRIi16 # define PRIi16 "i" #endif #if !defined PRIo16 || PRI_MACROS_BROKEN # undef PRIo16 # define PRIo16 "o" #endif #if !defined PRIu16 || PRI_MACROS_BROKEN # undef PRIu16 # define PRIu16 "u" #endif #if !defined PRIx16 || PRI_MACROS_BROKEN # undef PRIx16 # define PRIx16 "x" #endif #if !defined PRIX16 || PRI_MACROS_BROKEN # undef PRIX16 # define PRIX16 "X" #endif #if !defined PRId32 || PRI_MACROS_BROKEN # undef PRId32 # define PRId32 "d" #endif #if !defined PRIi32 || PRI_MACROS_BROKEN # undef PRIi32 # define PRIi32 "i" #endif #if !defined PRIo32 || PRI_MACROS_BROKEN # undef PRIo32 # define PRIo32 "o" #endif #if !defined PRIu32 || PRI_MACROS_BROKEN # undef PRIu32 # define PRIu32 "u" #endif #if !defined PRIx32 || PRI_MACROS_BROKEN # undef PRIx32 # define PRIx32 "x" #endif #if !defined PRIX32 || PRI_MACROS_BROKEN # undef PRIX32 # define PRIX32 "X" #endif #if !defined PRId64 || PRI_MACROS_BROKEN # undef PRId64 # define PRId64 (sizeof (long) == 8 ? "ld" : "lld") #endif #if !defined PRIi64 || PRI_MACROS_BROKEN # undef PRIi64 # define PRIi64 (sizeof (long) == 8 ? "li" : "lli") #endif #if !defined PRIo64 || PRI_MACROS_BROKEN # undef PRIo64 # define PRIo64 (sizeof (long) == 8 ? "lo" : "llo") #endif #if !defined PRIu64 || PRI_MACROS_BROKEN # undef PRIu64 # define PRIu64 (sizeof (long) == 8 ? "lu" : "llu") #endif #if !defined PRIx64 || PRI_MACROS_BROKEN # undef PRIx64 # define PRIx64 (sizeof (long) == 8 ? "lx" : "llx") #endif #if !defined PRIX64 || PRI_MACROS_BROKEN # undef PRIX64 # define PRIX64 (sizeof (long) == 8 ? "lX" : "llX") #endif #if !defined PRIdLEAST8 || PRI_MACROS_BROKEN # undef PRIdLEAST8 # define PRIdLEAST8 "d" #endif #if !defined PRIiLEAST8 || PRI_MACROS_BROKEN # undef PRIiLEAST8 # define PRIiLEAST8 "i" #endif #if !defined PRIoLEAST8 || PRI_MACROS_BROKEN # undef PRIoLEAST8 # define PRIoLEAST8 "o" #endif #if !defined PRIuLEAST8 || PRI_MACROS_BROKEN # undef PRIuLEAST8 # define PRIuLEAST8 "u" #endif #if !defined PRIxLEAST8 || PRI_MACROS_BROKEN # undef PRIxLEAST8 # define PRIxLEAST8 "x" #endif #if !defined PRIXLEAST8 || PRI_MACROS_BROKEN # undef PRIXLEAST8 # define PRIXLEAST8 "X" #endif #if !defined PRIdLEAST16 || PRI_MACROS_BROKEN # undef PRIdLEAST16 # define PRIdLEAST16 "d" #endif #if !defined PRIiLEAST16 || PRI_MACROS_BROKEN # undef PRIiLEAST16 # define PRIiLEAST16 "i" #endif #if !defined PRIoLEAST16 || PRI_MACROS_BROKEN # undef PRIoLEAST16 # define PRIoLEAST16 "o" #endif #if !defined PRIuLEAST16 || PRI_MACROS_BROKEN # undef PRIuLEAST16 # define PRIuLEAST16 "u" #endif #if !defined PRIxLEAST16 || PRI_MACROS_BROKEN # undef PRIxLEAST16 # define PRIxLEAST16 "x" #endif #if !defined PRIXLEAST16 || PRI_MACROS_BROKEN # undef PRIXLEAST16 # define PRIXLEAST16 "X" #endif #if !defined PRIdLEAST32 || PRI_MACROS_BROKEN # undef PRIdLEAST32 # define PRIdLEAST32 "d" #endif #if !defined PRIiLEAST32 || PRI_MACROS_BROKEN # undef PRIiLEAST32 # define PRIiLEAST32 "i" #endif #if !defined PRIoLEAST32 || PRI_MACROS_BROKEN # undef PRIoLEAST32 # define PRIoLEAST32 "o" #endif #if !defined PRIuLEAST32 || PRI_MACROS_BROKEN # undef PRIuLEAST32 # define PRIuLEAST32 "u" #endif #if !defined PRIxLEAST32 || PRI_MACROS_BROKEN # undef PRIxLEAST32 # define PRIxLEAST32 "x" #endif #if !defined PRIXLEAST32 || PRI_MACROS_BROKEN # undef PRIXLEAST32 # define PRIXLEAST32 "X" #endif #if !defined PRIdLEAST64 || PRI_MACROS_BROKEN # undef PRIdLEAST64 # define PRIdLEAST64 PRId64 #endif #if !defined PRIiLEAST64 || PRI_MACROS_BROKEN # undef PRIiLEAST64 # define PRIiLEAST64 PRIi64 #endif #if !defined PRIoLEAST64 || PRI_MACROS_BROKEN # undef PRIoLEAST64 # define PRIoLEAST64 PRIo64 #endif #if !defined PRIuLEAST64 || PRI_MACROS_BROKEN # undef PRIuLEAST64 # define PRIuLEAST64 PRIu64 #endif #if !defined PRIxLEAST64 || PRI_MACROS_BROKEN # undef PRIxLEAST64 # define PRIxLEAST64 PRIx64 #endif #if !defined PRIXLEAST64 || PRI_MACROS_BROKEN # undef PRIXLEAST64 # define PRIXLEAST64 PRIX64 #endif #if !defined PRIdFAST8 || PRI_MACROS_BROKEN # undef PRIdFAST8 # define PRIdFAST8 "d" #endif #if !defined PRIiFAST8 || PRI_MACROS_BROKEN # undef PRIiFAST8 # define PRIiFAST8 "i" #endif #if !defined PRIoFAST8 || PRI_MACROS_BROKEN # undef PRIoFAST8 # define PRIoFAST8 "o" #endif #if !defined PRIuFAST8 || PRI_MACROS_BROKEN # undef PRIuFAST8 # define PRIuFAST8 "u" #endif #if !defined PRIxFAST8 || PRI_MACROS_BROKEN # undef PRIxFAST8 # define PRIxFAST8 "x" #endif #if !defined PRIXFAST8 || PRI_MACROS_BROKEN # undef PRIXFAST8 # define PRIXFAST8 "X" #endif #if !defined PRIdFAST16 || PRI_MACROS_BROKEN # undef PRIdFAST16 # define PRIdFAST16 "d" #endif #if !defined PRIiFAST16 || PRI_MACROS_BROKEN # undef PRIiFAST16 # define PRIiFAST16 "i" #endif #if !defined PRIoFAST16 || PRI_MACROS_BROKEN # undef PRIoFAST16 # define PRIoFAST16 "o" #endif #if !defined PRIuFAST16 || PRI_MACROS_BROKEN # undef PRIuFAST16 # define PRIuFAST16 "u" #endif #if !defined PRIxFAST16 || PRI_MACROS_BROKEN # undef PRIxFAST16 # define PRIxFAST16 "x" #endif #if !defined PRIXFAST16 || PRI_MACROS_BROKEN # undef PRIXFAST16 # define PRIXFAST16 "X" #endif #if !defined PRIdFAST32 || PRI_MACROS_BROKEN # undef PRIdFAST32 # define PRIdFAST32 "d" #endif #if !defined PRIiFAST32 || PRI_MACROS_BROKEN # undef PRIiFAST32 # define PRIiFAST32 "i" #endif #if !defined PRIoFAST32 || PRI_MACROS_BROKEN # undef PRIoFAST32 # define PRIoFAST32 "o" #endif #if !defined PRIuFAST32 || PRI_MACROS_BROKEN # undef PRIuFAST32 # define PRIuFAST32 "u" #endif #if !defined PRIxFAST32 || PRI_MACROS_BROKEN # undef PRIxFAST32 # define PRIxFAST32 "x" #endif #if !defined PRIXFAST32 || PRI_MACROS_BROKEN # undef PRIXFAST32 # define PRIXFAST32 "X" #endif #if !defined PRIdFAST64 || PRI_MACROS_BROKEN # undef PRIdFAST64 # define PRIdFAST64 PRId64 #endif #if !defined PRIiFAST64 || PRI_MACROS_BROKEN # undef PRIiFAST64 # define PRIiFAST64 PRIi64 #endif #if !defined PRIoFAST64 || PRI_MACROS_BROKEN # undef PRIoFAST64 # define PRIoFAST64 PRIo64 #endif #if !defined PRIuFAST64 || PRI_MACROS_BROKEN # undef PRIuFAST64 # define PRIuFAST64 PRIu64 #endif #if !defined PRIxFAST64 || PRI_MACROS_BROKEN # undef PRIxFAST64 # define PRIxFAST64 PRIx64 #endif #if !defined PRIXFAST64 || PRI_MACROS_BROKEN # undef PRIXFAST64 # define PRIXFAST64 PRIX64 #endif #if !defined PRIdMAX || PRI_MACROS_BROKEN # undef PRIdMAX # define PRIdMAX (sizeof (uintmax_t) == sizeof (long) ? "ld" : "lld") #endif #if !defined PRIiMAX || PRI_MACROS_BROKEN # undef PRIiMAX # define PRIiMAX (sizeof (uintmax_t) == sizeof (long) ? "li" : "lli") #endif #if !defined PRIoMAX || PRI_MACROS_BROKEN # undef PRIoMAX # define PRIoMAX (sizeof (uintmax_t) == sizeof (long) ? "lo" : "llo") #endif #if !defined PRIuMAX || PRI_MACROS_BROKEN # undef PRIuMAX # define PRIuMAX (sizeof (uintmax_t) == sizeof (long) ? "lu" : "llu") #endif #if !defined PRIxMAX || PRI_MACROS_BROKEN # undef PRIxMAX # define PRIxMAX (sizeof (uintmax_t) == sizeof (long) ? "lx" : "llx") #endif #if !defined PRIXMAX || PRI_MACROS_BROKEN # undef PRIXMAX # define PRIXMAX (sizeof (uintmax_t) == sizeof (long) ? "lX" : "llX") #endif #if !defined PRIdPTR || PRI_MACROS_BROKEN # undef PRIdPTR # define PRIdPTR \ (sizeof (void *) == sizeof (long) ? "ld" : \ sizeof (void *) == sizeof (int) ? "d" : \ "lld") #endif #if !defined PRIiPTR || PRI_MACROS_BROKEN # undef PRIiPTR # define PRIiPTR \ (sizeof (void *) == sizeof (long) ? "li" : \ sizeof (void *) == sizeof (int) ? "i" : \ "lli") #endif #if !defined PRIoPTR || PRI_MACROS_BROKEN # undef PRIoPTR # define PRIoPTR \ (sizeof (void *) == sizeof (long) ? "lo" : \ sizeof (void *) == sizeof (int) ? "o" : \ "llo") #endif #if !defined PRIuPTR || PRI_MACROS_BROKEN # undef PRIuPTR # define PRIuPTR \ (sizeof (void *) == sizeof (long) ? "lu" : \ sizeof (void *) == sizeof (int) ? "u" : \ "llu") #endif #if !defined PRIxPTR || PRI_MACROS_BROKEN # undef PRIxPTR # define PRIxPTR \ (sizeof (void *) == sizeof (long) ? "lx" : \ sizeof (void *) == sizeof (int) ? "x" : \ "llx") #endif #if !defined PRIXPTR || PRI_MACROS_BROKEN # undef PRIXPTR # define PRIXPTR \ (sizeof (void *) == sizeof (long) ? "lX" : \ sizeof (void *) == sizeof (int) ? "X" : \ "llX") #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ISO C functions. This is required by the standard because some ISO C functions will require linking with this object file and the name space must not be polluted. */ # define open(name, flags) open_not_cancel_2 (name, flags) # define close(fd) close_not_cancel_no_status (fd) # define read(fd, buf, n) read_not_cancel (fd, buf, n) # define mmap(addr, len, prot, flags, fd, offset) \ __mmap (addr, len, prot, flags, fd, offset) # define munmap(addr, len) __munmap (addr, len) #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif /* For systems that distinguish between text and binary I/O. O_BINARY is usually declared in . */ #if !defined O_BINARY && defined _O_BINARY /* For MSC-compatible compilers. */ # define O_BINARY _O_BINARY # define O_TEXT _O_TEXT #endif #ifdef __BEOS__ /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */ # undef O_BINARY # undef O_TEXT #endif /* On reasonable systems, binary I/O is the default. */ #ifndef O_BINARY # define O_BINARY 0 #endif /* We need a sign, whether a new catalog was loaded, which can be associated with all translations. This is important if the translations are cached by one of GCC's features. */ int _nl_msg_cat_cntr; /* Expand a system dependent string segment. Return NULL if unsupported. */ static const char * get_sysdep_segment_value (const char *name) { /* Test for an ISO C 99 section 7.8.1 format string directive. Syntax: P R I { d | i | o | u | x | X } { { | LEAST | FAST } { 8 | 16 | 32 | 64 } | MAX | PTR } */ /* We don't use a table of 14 times 6 'const char *' strings here, because data relocations cost startup time. */ if (name[0] == 'P' && name[1] == 'R' && name[2] == 'I') { if (name[3] == 'd' || name[3] == 'i' || name[3] == 'o' || name[3] == 'u' || name[3] == 'x' || name[3] == 'X') { if (name[4] == '8' && name[5] == '\0') { if (name[3] == 'd') return PRId8; if (name[3] == 'i') return PRIi8; if (name[3] == 'o') return PRIo8; if (name[3] == 'u') return PRIu8; if (name[3] == 'x') return PRIx8; if (name[3] == 'X') return PRIX8; abort (); } if (name[4] == '1' && name[5] == '6' && name[6] == '\0') { if (name[3] == 'd') return PRId16; if (name[3] == 'i') return PRIi16; if (name[3] == 'o') return PRIo16; if (name[3] == 'u') return PRIu16; if (name[3] == 'x') return PRIx16; if (name[3] == 'X') return PRIX16; abort (); } if (name[4] == '3' && name[5] == '2' && name[6] == '\0') { if (name[3] == 'd') return PRId32; if (name[3] == 'i') return PRIi32; if (name[3] == 'o') return PRIo32; if (name[3] == 'u') return PRIu32; if (name[3] == 'x') return PRIx32; if (name[3] == 'X') return PRIX32; abort (); } if (name[4] == '6' && name[5] == '4' && name[6] == '\0') { if (name[3] == 'd') return PRId64; if (name[3] == 'i') return PRIi64; if (name[3] == 'o') return PRIo64; if (name[3] == 'u') return PRIu64; if (name[3] == 'x') return PRIx64; if (name[3] == 'X') return PRIX64; abort (); } if (name[4] == 'L' && name[5] == 'E' && name[6] == 'A' && name[7] == 'S' && name[8] == 'T') { if (name[9] == '8' && name[10] == '\0') { if (name[3] == 'd') return PRIdLEAST8; if (name[3] == 'i') return PRIiLEAST8; if (name[3] == 'o') return PRIoLEAST8; if (name[3] == 'u') return PRIuLEAST8; if (name[3] == 'x') return PRIxLEAST8; if (name[3] == 'X') return PRIXLEAST8; abort (); } if (name[9] == '1' && name[10] == '6' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST16; if (name[3] == 'i') return PRIiLEAST16; if (name[3] == 'o') return PRIoLEAST16; if (name[3] == 'u') return PRIuLEAST16; if (name[3] == 'x') return PRIxLEAST16; if (name[3] == 'X') return PRIXLEAST16; abort (); } if (name[9] == '3' && name[10] == '2' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST32; if (name[3] == 'i') return PRIiLEAST32; if (name[3] == 'o') return PRIoLEAST32; if (name[3] == 'u') return PRIuLEAST32; if (name[3] == 'x') return PRIxLEAST32; if (name[3] == 'X') return PRIXLEAST32; abort (); } if (name[9] == '6' && name[10] == '4' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST64; if (name[3] == 'i') return PRIiLEAST64; if (name[3] == 'o') return PRIoLEAST64; if (name[3] == 'u') return PRIuLEAST64; if (name[3] == 'x') return PRIxLEAST64; if (name[3] == 'X') return PRIXLEAST64; abort (); } } if (name[4] == 'F' && name[5] == 'A' && name[6] == 'S' && name[7] == 'T') { if (name[8] == '8' && name[9] == '\0') { if (name[3] == 'd') return PRIdFAST8; if (name[3] == 'i') return PRIiFAST8; if (name[3] == 'o') return PRIoFAST8; if (name[3] == 'u') return PRIuFAST8; if (name[3] == 'x') return PRIxFAST8; if (name[3] == 'X') return PRIXFAST8; abort (); } if (name[8] == '1' && name[9] == '6' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST16; if (name[3] == 'i') return PRIiFAST16; if (name[3] == 'o') return PRIoFAST16; if (name[3] == 'u') return PRIuFAST16; if (name[3] == 'x') return PRIxFAST16; if (name[3] == 'X') return PRIXFAST16; abort (); } if (name[8] == '3' && name[9] == '2' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST32; if (name[3] == 'i') return PRIiFAST32; if (name[3] == 'o') return PRIoFAST32; if (name[3] == 'u') return PRIuFAST32; if (name[3] == 'x') return PRIxFAST32; if (name[3] == 'X') return PRIXFAST32; abort (); } if (name[8] == '6' && name[9] == '4' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST64; if (name[3] == 'i') return PRIiFAST64; if (name[3] == 'o') return PRIoFAST64; if (name[3] == 'u') return PRIuFAST64; if (name[3] == 'x') return PRIxFAST64; if (name[3] == 'X') return PRIXFAST64; abort (); } } if (name[4] == 'M' && name[5] == 'A' && name[6] == 'X' && name[7] == '\0') { if (name[3] == 'd') return PRIdMAX; if (name[3] == 'i') return PRIiMAX; if (name[3] == 'o') return PRIoMAX; if (name[3] == 'u') return PRIuMAX; if (name[3] == 'x') return PRIxMAX; if (name[3] == 'X') return PRIXMAX; abort (); } if (name[4] == 'P' && name[5] == 'T' && name[6] == 'R' && name[7] == '\0') { if (name[3] == 'd') return PRIdPTR; if (name[3] == 'i') return PRIiPTR; if (name[3] == 'o') return PRIoPTR; if (name[3] == 'u') return PRIuPTR; if (name[3] == 'x') return PRIxPTR; if (name[3] == 'X') return PRIXPTR; abort (); } } } /* Test for a glibc specific printf() format directive flag. */ if (name[0] == 'I' && name[1] == '\0') { #if defined _LIBC \ || ((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)) \ && !defined __UCLIBC__) /* The 'I' flag, in numeric format directives, replaces ASCII digits with the 'outdigits' defined in the LC_CTYPE locale facet. This is used for Farsi (Persian), some Indic languages, and maybe Arabic. */ return "I"; #else return ""; #endif } /* Other system dependent strings are not valid. */ return NULL; } /* Load the message catalogs specified by FILENAME. If it is no valid message catalog do nothing. */ void internal_function _nl_load_domain (struct loaded_l10nfile *domain_file, struct binding *domainbinding) { __libc_lock_define_initialized_recursive (static, lock) int fd = -1; size_t size; #ifdef _LIBC struct stat64 st; #else struct stat st; #endif struct mo_file_header *data = (struct mo_file_header *) -1; int use_mmap = 0; struct loaded_domain *domain; int revision; const char *nullentry; size_t nullentrylen; __libc_lock_lock_recursive (lock); if (domain_file->decided != 0) { /* There are two possibilities: + this is the same thread calling again during this initialization via _nl_find_msg. We have initialized everything this call needs. + this is another thread which tried to initialize this object. Not necessary anymore since if the lock is available this is finished. */ goto done; } domain_file->decided = -1; domain_file->data = NULL; /* Note that it would be useless to store domainbinding in domain_file because domainbinding might be == NULL now but != NULL later (after a call to bind_textdomain_codeset). */ /* If the record does not represent a valid locale the FILENAME might be NULL. This can happen when according to the given specification the locale file name is different for XPG and CEN syntax. */ if (domain_file->filename == NULL) goto out; /* Try to open the addressed file. */ fd = open (domain_file->filename, O_RDONLY | O_BINARY); if (fd == -1) goto out; /* We must know about the size of the file. */ if ( #ifdef _LIBC __builtin_expect (fstat64 (fd, &st) != 0, 0) #else __builtin_expect (fstat (fd, &st) != 0, 0) #endif || __builtin_expect ((size = (size_t) st.st_size) != st.st_size, 0) || __builtin_expect (size < sizeof (struct mo_file_header), 0)) /* Something went wrong. */ goto out; #ifdef HAVE_MMAP /* Now we are ready to load the file. If mmap() is available we try this first. If not available or it failed we try to load it. */ data = (struct mo_file_header *) mmap (NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); if (__builtin_expect (data != (struct mo_file_header *) -1, 1)) { /* mmap() call was successful. */ close (fd); fd = -1; use_mmap = 1; } #endif /* If the data is not yet available (i.e. mmap'ed) we try to load it manually. */ if (data == (struct mo_file_header *) -1) { size_t to_read; char *read_ptr; data = (struct mo_file_header *) malloc (size); if (data == NULL) goto out; to_read = size; read_ptr = (char *) data; do { long int nb = (long int) read (fd, read_ptr, to_read); if (nb <= 0) { #ifdef EINTR if (nb == -1 && errno == EINTR) continue; #endif goto out; } read_ptr += nb; to_read -= nb; } while (to_read > 0); close (fd); fd = -1; } /* Using the magic number we can test whether it really is a message catalog file. */ if (__builtin_expect (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED, 0)) { /* The magic number is wrong: not a message catalog file. */ #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); goto out; } domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); if (domain == NULL) goto out; domain_file->data = domain; domain->data = (char *) data; domain->use_mmap = use_mmap; domain->mmap_size = size; domain->must_swap = data->magic != _MAGIC; domain->malloced = NULL; /* Fill in the information about the available tables. */ revision = W (domain->must_swap, data->revision); /* We support only the major revisions 0 and 1. */ switch (revision >> 16) { case 0: case 1: domain->nstrings = W (domain->must_swap, data->nstrings); domain->orig_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->orig_tab_offset)); domain->trans_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->trans_tab_offset)); domain->hash_size = W (domain->must_swap, data->hash_tab_size); domain->hash_tab = (domain->hash_size > 2 ? (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->hash_tab_offset)) : NULL); domain->must_swap_hash_tab = domain->must_swap; /* Now dispatch on the minor revision. */ switch (revision & 0xffff) { case 0: domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; break; case 1: default: { nls_uint32 n_sysdep_strings; if (domain->hash_tab == NULL) /* This is invalid. These minor revisions need a hash table. */ goto invalid; n_sysdep_strings = W (domain->must_swap, data->n_sysdep_strings); if (n_sysdep_strings > 0) { nls_uint32 n_sysdep_segments; const struct sysdep_segment *sysdep_segments; const char **sysdep_segment_values; const nls_uint32 *orig_sysdep_tab; const nls_uint32 *trans_sysdep_tab; nls_uint32 n_inmem_sysdep_strings; size_t memneed; char *mem; struct sysdep_string_desc *inmem_orig_sysdep_tab; struct sysdep_string_desc *inmem_trans_sysdep_tab; nls_uint32 *inmem_hash_tab; unsigned int i, j; /* Get the values of the system dependent segments. */ n_sysdep_segments = W (domain->must_swap, data->n_sysdep_segments); sysdep_segments = (const struct sysdep_segment *) ((char *) data + W (domain->must_swap, data->sysdep_segments_offset)); sysdep_segment_values = (const char **) alloca (n_sysdep_segments * sizeof (const char *)); for (i = 0; i < n_sysdep_segments; i++) { const char *name = (char *) data + W (domain->must_swap, sysdep_segments[i].offset); nls_uint32 namelen = W (domain->must_swap, sysdep_segments[i].length); if (!(namelen > 0 && name[namelen - 1] == '\0')) { freea (sysdep_segment_values); goto invalid; } sysdep_segment_values[i] = get_sysdep_segment_value (name); } orig_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->orig_sysdep_tab_offset)); trans_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->trans_sysdep_tab_offset)); /* Compute the amount of additional memory needed for the system dependent strings and the augmented hash table. At the same time, also drop string pairs which refer to an undefined system dependent segment. */ n_inmem_sysdep_strings = 0; memneed = domain->hash_size * sizeof (nls_uint32); for (i = 0; i < n_sysdep_strings; i++) { int valid = 1; size_t needs[2]; for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); size_t need = 0; const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; need += W (domain->must_swap, p->segsize); sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdepref >= n_sysdep_segments) { /* Invalid. */ freea (sysdep_segment_values); goto invalid; } if (sysdep_segment_values[sysdepref] == NULL) { /* This particular string pair is invalid. */ valid = 0; break; } need += strlen (sysdep_segment_values[sysdepref]); } needs[j] = need; if (!valid) break; } if (valid) { n_inmem_sysdep_strings++; memneed += needs[0] + needs[1]; } } memneed += 2 * n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); if (n_inmem_sysdep_strings > 0) { unsigned int k; /* Allocate additional memory. */ mem = (char *) malloc (memneed); if (mem == NULL) goto invalid; domain->malloced = mem; inmem_orig_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_trans_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_hash_tab = (nls_uint32 *) mem; mem += domain->hash_size * sizeof (nls_uint32); /* Compute the system dependent strings. */ k = 0; for (i = 0; i < n_sysdep_strings; i++) { int valid = 1; for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdep_segment_values[sysdepref] == NULL) { /* This particular string pair is invalid. */ valid = 0; break; } } if (!valid) break; } if (valid) { for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); const char *static_segments = (char *) data + W (domain->must_swap, sysdep_string->offset); const struct segment_pair *p = sysdep_string->segments; /* Concatenate the segments, and fill inmem_orig_sysdep_tab[k] (for j == 0) and inmem_trans_sysdep_tab[k] (for j == 1). */ struct sysdep_string_desc *inmem_tab_entry = (j == 0 ? inmem_orig_sysdep_tab : inmem_trans_sysdep_tab) + k; if (W (domain->must_swap, p->sysdepref) == SEGMENTS_END) { /* Only one static segment. */ inmem_tab_entry->length = W (domain->must_swap, p->segsize); inmem_tab_entry->pointer = static_segments; } else { inmem_tab_entry->pointer = mem; for (p = sysdep_string->segments;; p++) { nls_uint32 segsize = W (domain->must_swap, p->segsize); nls_uint32 sysdepref = W (domain->must_swap, p->sysdepref); size_t n; if (segsize > 0) { memcpy (mem, static_segments, segsize); mem += segsize; static_segments += segsize; } if (sysdepref == SEGMENTS_END) break; n = strlen (sysdep_segment_values[sysdepref]); memcpy (mem, sysdep_segment_values[sysdepref], n); mem += n; } inmem_tab_entry->length = mem - inmem_tab_entry->pointer; } } k++; } } if (k != n_inmem_sysdep_strings) abort (); /* Compute the augmented hash table. */ for (i = 0; i < domain->hash_size; i++) inmem_hash_tab[i] = W (domain->must_swap_hash_tab, domain->hash_tab[i]); for (i = 0; i < n_inmem_sysdep_strings; i++) { const char *msgid = inmem_orig_sysdep_tab[i].pointer; nls_uint32 hash_val = __hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); for (;;) { if (inmem_hash_tab[idx] == 0) { /* Hash table entry is empty. Use it. */ inmem_hash_tab[idx] = 1 + domain->nstrings + i; break; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } } domain->n_sysdep_strings = n_inmem_sysdep_strings; domain->orig_sysdep_tab = inmem_orig_sysdep_tab; domain->trans_sysdep_tab = inmem_trans_sysdep_tab; domain->hash_tab = inmem_hash_tab; domain->must_swap_hash_tab = 0; } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } freea (sysdep_segment_values); } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } } break; } break; default: /* This is an invalid revision. */ invalid: /* This is an invalid .mo file or we ran out of resources. */ free (domain->malloced); #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); free (domain); domain_file->data = NULL; goto out; } /* No caches of converted translations so far. */ domain->conversions = NULL; domain->nconversions = 0; gl_rwlock_init (domain->conversions_lock); /* Get the header entry and look for a plural specification. */ #ifdef IN_LIBGLOCALE nullentry = _nl_find_msg (domain_file, domainbinding, NULL, "", &nullentrylen); #else nullentry = _nl_find_msg (domain_file, domainbinding, "", 0, &nullentrylen); #endif if (__builtin_expect (nullentry == (char *) -1, 0)) { #ifdef _LIBC __libc_rwlock_fini (domain->conversions_lock); #endif goto invalid; } EXTRACT_PLURAL_EXPRESSION (nullentry, &domain->plural, &domain->nplurals); out: if (fd != -1) close (fd); domain_file->decided = 1; done: __libc_lock_unlock_recursive (lock); } #ifdef _LIBC void internal_function __libc_freeres_fn_section _nl_unload_domain (struct loaded_domain *domain) { size_t i; if (domain->plural != &__gettext_germanic_plural) __gettext_free_exp ((struct expression *) domain->plural); for (i = 0; i < domain->nconversions; i++) { struct converted_domain *convd = &domain->conversions[i]; free (convd->encoding); if (convd->conv_tab != NULL && convd->conv_tab != (char **) -1) free (convd->conv_tab); if (convd->conv != (__gconv_t) -1) __gconv_close (convd->conv); } free (domain->conversions); __libc_rwlock_fini (domain->conversions_lock); free (domain->malloced); # ifdef _POSIX_MAPPED_FILES if (domain->use_mmap) munmap ((caddr_t) domain->data, domain->mmap_size); else # endif /* _POSIX_MAPPED_FILES */ free ((void *) domain->data); free (domain); } #endif gerbv-2.7.0/intl/printf-parse.h0000644000175000017500000000502413421555747016254 0ustar carstencarsten/* Parse printf format string. Copyright (C) 1999, 2002-2003, 2005, 2007, 2010-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef _PRINTF_PARSE_H #define _PRINTF_PARSE_H #if HAVE_FEATURES_H # include /* for __GLIBC__, __UCLIBC__ */ #endif #include "printf-args.h" /* Flags */ #define FLAG_GROUP 1 /* ' flag */ #define FLAG_LEFT 2 /* - flag */ #define FLAG_SHOWSIGN 4 /* + flag */ #define FLAG_SPACE 8 /* space flag */ #define FLAG_ALT 16 /* # flag */ #define FLAG_ZERO 32 #if __GLIBC__ >= 2 && !defined __UCLIBC__ # define FLAG_LOCALIZED 64 /* I flag, uses localized digits */ #endif /* arg_index value indicating that no argument is consumed. */ #define ARG_NONE (~(size_t)0) /* Number of directly allocated directives (no malloc() needed). */ #define N_DIRECT_ALLOC_DIRECTIVES 7 /* A parsed directive. */ typedef struct { const char* dir_start; const char* dir_end; int flags; const char* width_start; const char* width_end; size_t width_arg_index; const char* precision_start; const char* precision_end; size_t precision_arg_index; char conversion; /* d i o u x X f e E g G c s p n U % but not C S */ size_t arg_index; } char_directive; /* A parsed format string. */ typedef struct { size_t count; char_directive *dir; size_t max_width_length; size_t max_precision_length; char_directive direct_alloc_dir[N_DIRECT_ALLOC_DIRECTIVES]; } char_directives; /* Parses the format string. Fills in the number N of directives, and fills in directives[0], ..., directives[N-1], and sets directives[N].dir_start to the end of the format string. Also fills in the arg_type fields of the arguments and the needed count of arguments. */ #ifdef STATIC STATIC #else extern #endif int printf_parse (const char *format, char_directives *d, arguments *a); #endif /* _PRINTF_PARSE_H */ gerbv-2.7.0/intl/plural.y0000644000175000017500000001655513421555747015175 0ustar carstencarsten%{ /* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003, 2005-2006 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ /* For bison < 2.0, the bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. This can go away once the AM_INTL_SUBDIR macro requires bison >= 2.0. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif %} %parse-param {struct parse_args *arg} %lex-param {struct parse_args *arg} %define api.pure full %expect 7 %union { unsigned long int num; enum expression_operator op; struct expression *exp; } %{ /* Prototypes for local functions. */ static int yylex (YYSTYPE *lval, struct parse_args *arg); static void yyerror (struct parse_args *arg, const char *str); /* Allocation of expressions. */ static struct expression * new_exp (int nargs, enum expression_operator op, struct expression * const *args) { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (enum expression_operator op) { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (enum expression_operator op, struct expression *right) { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (enum expression_operator op, struct expression *left, struct expression *right) { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (enum expression_operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch) { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } %} /* This declares that all operators have the same associativity and the precedence order as in C. See [Harbison, Steele: C, A Reference Manual]. There is no unary minus and no bitwise operators. Operators with the same syntactic behaviour have been merged into a single token, to save space in the array generated by bison. */ %right '?' /* ? */ %left '|' /* || */ %left '&' /* && */ %left EQUOP2 /* == != */ %left CMPOP2 /* < > <= >= */ %left ADDOP2 /* + - */ %left MULOP2 /* * / % */ %right '!' /* ! */ %token EQUOP2 CMPOP2 ADDOP2 MULOP2 %token NUMBER %type exp %% start: exp { if ($1 == NULL) YYABORT; arg->res = $1; } ; exp: exp '?' exp ':' exp { $$ = new_exp_3 (qmop, $1, $3, $5); } | exp '|' exp { $$ = new_exp_2 (lor, $1, $3); } | exp '&' exp { $$ = new_exp_2 (land, $1, $3); } | exp EQUOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp CMPOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp ADDOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp MULOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | '!' exp { $$ = new_exp_1 (lnot, $2); } | 'n' { $$ = new_exp_0 (var); } | NUMBER { if (($$ = new_exp_0 (num)) != NULL) $$->val.num = $1; } | '(' exp ')' { $$ = $2; } ; %% void internal_function FREE_EXPRESSION (struct expression *exp) { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (YYSTYPE *lval, struct parse_args *arg) { const char *exp = arg->cp; int result; while (1) { if (exp[0] == '\0') { arg->cp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } arg->cp = exp; return result; } static void yyerror (struct parse_args *arg, const char *str) { /* Do nothing. We don't print error messages here. */ } gerbv-2.7.0/INSTALL0000644000175000017500000003661013423533412013544 0ustar carstencarstenInstallation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. gerbv-2.7.0/test-driver0000755000175000017500000001104013423533413014700 0ustar carstencarsten#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2013-07-13.22; # UTC # Copyright (C) 2011-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>$log_file # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gerbv-2.7.0/dontdiff0000644000175000017500000000023413421555713014232 0ustar carstencarstenMakefile Makefile.in *.o *.a *.lib *.so gerbv config.* configure autom4te.cache .deps aclocal.m4 foo.drl *~ stamp-h1 gerbv.1 CVS depcomp install-sh missing gerbv-2.7.0/man/0000755000175000017500000000000013423533413013261 5ustar carstencarstengerbv-2.7.0/man/gerbv.ru.1.in.po0000644000175000017500000011174513421555714016136 0ustar carstencarsten# Translation of man 1 gerbv to Russian # # This file is distributed under the same license as the gerbv package. # # Sergey Alyoshin , 2012-2019 # msgid "" msgstr "" "Project-Id-Version: gerbv man ru\n" "POT-Creation-Date: 2019-01-20 20:24+0300\n" "PO-Revision-Date: 2019-01-20 21:25+0300\n" "Last-Translator: Sergey Alyoshin \n" "Language-Team: gEDA user \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. type: TH #: gerbv.1.in:1 #, no-wrap msgid "gerbv" msgstr "gerbv" #. type: TH #: gerbv.1.in:1 #, no-wrap msgid "Jule 13, 2013" msgstr "13 июля 2013" #. type: TH #: gerbv.1.in:1 #, no-wrap msgid "Version" msgstr "Версия" #. type: TH #: gerbv.1.in:1 #, no-wrap msgid "@version@" msgstr "@version@" #. type: SH #: gerbv.1.in:2 #, no-wrap msgid "NAME" msgstr "НАЗВАНИЕ" #. type: Plain text #: gerbv.1.in:4 msgid "gerbv - Gerber Viewer" msgstr "gerbv — просмотр Gerber-файлов" #. type: SH #: gerbv.1.in:4 #, no-wrap msgid "SYNOPSIS" msgstr "ОБЗОР" #. type: Plain text #: gerbv.1.in:6 msgid "B" msgstr "B" #. type: SH #: gerbv.1.in:6 #, no-wrap msgid "DESCRIPTION" msgstr "ОПИСАНИЕ" #. type: Plain text #: gerbv.1.in:13 msgid "" "I is a viewer for RS274-X, commonly known as Gerber, files. RS274-" "X files are generated from different PCB CAD programs and are used in the " "printed circuit board manufacturing process. I also supports " "Excellon/NC drill files as well as XY (centroid) files produced by the " "program PCB (http://pcb.geda-project.org/)." msgstr "" "I — это программа для просмотра файлов RS274-X, более известных " "как Gerber. Файлы RS274-X создаются различными программами " "автоматизированного проектирования печатных плат и используются при их " "изготовлении на производстве. I также поддерживает файлы сверловки " "Excellon/NC drill и файлы расположения (координаты центров элементов), " "создаваемые программой PCB (http://pcb.geda-project.org/)." #. type: SH #: gerbv.1.in:14 #, no-wrap msgid "OPTIONS" msgstr "ПАРАМЕТРЫ" #. type: Plain text #: gerbv.1.in:19 msgid "" "B On some platforms, which hasn't long option available, only " "short options are available." msgstr "" "B<Внимание!> На некоторых платформах, не имеющих поддержку длинных " "параметров, доступны только короткие параметры." #. type: SS #: gerbv.1.in:20 #, no-wrap msgid "gerbv General options:" msgstr "Общие параметры gerbv:" #. type: Plain text #: gerbv.1.in:23 msgid "B<-V|--version> Print the version number of gerbv and exit." msgstr "B<-V|--version> Вывести версию gerbv и выйти." #. type: TP #: gerbv.1.in:23 #, no-wrap msgid "B<-h|--help>" msgstr "B<-h|--help>" #. type: Plain text #: gerbv.1.in:26 msgid "Print a brief usage guide and exit." msgstr "Вывести краткое руководство и выйти." #. type: TP #: gerbv.1.in:26 #, no-wrap msgid "B<-bEhexE|--background=EhexE>" msgstr "B<-bEhexE|--background=EhexE>" #. type: Plain text #: gerbv.1.in:30 msgid "" "Use background color EhexE. EhexE is specified as an html-" "color code, e.g. #FF0000 for Red." msgstr "" "Задать цвет фона EhexE. Код цвета EhexE должен быть " "указан как в HTML, например, #FF0000 для красного." #. type: TP #: gerbv.1.in:30 #, no-wrap msgid "B<-fEhexE|--foreground=EhexE>" msgstr "B<-fEhexE|--foreground=EhexE>" #. type: Plain text #: gerbv.1.in:36 msgid "" "Use foreground color EhexE. EhexE is specified as an html-" "color code, e.g. #00FF00 for Green. If a user also wants to set the alpha " "(rendering with Cairo) it can be specified as an #RRGGBBAA code. Use " "multiple -f flags to set the color for multiple layers." msgstr "" "Задать цвет элементов EhexE. Код цвета EhexE должен быть " "указан как в HTML, например, #00FF00 для зелёного. Прозрачность (при " "отображении средствами Cairo) указывается в виде кода #RRGGBBAA (A — " "alpha). Для задания цвета нескольких слоёв используйте флаг -f несколько " "раз." #. type: TP #: gerbv.1.in:36 #, no-wrap msgid "B<-l\\ EfilenameE|--log=EfilenameE>" msgstr "B<-l\\ Eимя-файлаE|--log=Eимя-файлаE>" #. type: Plain text #: gerbv.1.in:39 msgid "" "All error messages etc are stored in a file with filename " "IfilenameE>." msgstr "Записывать все сообщения об ошибках в файл Iимя-файлаE>." #. type: TP #: gerbv.1.in:39 #, no-wrap msgid "B<-t\\ EfilenameE|--tools=EfilenameE>" msgstr "B<-t\\ Eимя-файлаE|--tools=Eимя-файлаE>" #. type: Plain text #: gerbv.1.in:42 msgid "Read Excellon tools from the file IfilenameE>." msgstr "Прочитать инструменты Excellon из файла Iимя-файлаE>." #. type: TP #: gerbv.1.in:42 #, no-wrap msgid "B<-p\\ Eproject\\ filenameE|--project=Eproject\\ filenameE>" msgstr "B<-p\\ Eимя-файла\\ проектаE|--project=Eимя-файла\\ проектаE>" #. type: Plain text #: gerbv.1.in:46 msgid "" "Load a stored project. Please note that the project file must be stored " "in the same directory as the Gerber files." msgstr "" "Загрузить проект. Заметьте, что файл проекта должен находиться в том же " "каталоге, что и файлы Gerber." #. type: SS #: gerbv.1.in:47 #, no-wrap msgid "gerbv Export-specific options:" msgstr "Параметры экспорта gerbv:" #. type: Plain text #: gerbv.1.in:49 msgid "The following commands can be used in combination with the -x flag:" msgstr "Вместе с флагом -x могут быть использованы следующие команды:" #. type: TP #: gerbv.1.in:49 #, no-wrap msgid "B<-BEbE|--border=EbE>" msgstr "B<-BEbE|--border=EbE>" #. type: Plain text #: gerbv.1.in:53 msgid "" "Set the border around the image EbE percent of the width and " "height. Default EbE is 5%." msgstr "" "Установить рамку вокруг изображения размером EbE процентов от " "ширины и высоты. По умолчанию, EbE равно 5%." #. type: TP #: gerbv.1.in:53 #, no-wrap msgid "B<-DEXxYEorERE|--dpi=EXxYEorERE>" msgstr "B<-DEXxYEилиERE|--dpi=EXxYEилиERE>" #. type: Plain text #: gerbv.1.in:59 msgid "" "Resolution (Dots per inch) for the output bitmap. Use EXxYE for " "different resolutions for the width and height (only when compiled with " "Cairo as render engine). Use ERE to have the same resolution in " "both directions. Defaults to 72 DPI in both directions." msgstr "" "Разрешение (в точках на дюйм, DPI) выводимого bitmap-изображения. Для " "различного разрешения по ширине и высоте используйте EXxYE " "(только при сборке с Cairo). Используйте ERE для одинакового " "разрешения по двум измерениям. По умолчанию, ERE равно 72 DPI." #. type: TP #: gerbv.1.in:59 #, no-wrap msgid "B<-TEXxYrR|X;YrRE|--translate=EXxYrR|X;YrRE>" msgstr "B<-TEXxYrR|X;YrRE|--translate=EXxYrR|X;YrRE>" #. type: Plain text #: gerbv.1.in:64 msgid "" "Translate image by X and Y and rotate by R degree. Use multiple -T flags " "to translate multiple files. Distance defaults to inches but may be " "changed with --units. Only evaluated when exporting as RS274X or drill." msgstr "" "Переместить изображение на расстояние X Y и повернуть на R градусов. Для " "задания перемещения нескольких слоёв используйте флаг -T несколько раз. " "Единицы измерения могут быть заданы с --units, по умолчанию, дюймы. " "Используется только при экспорте RS274X или сверловки." #. type: TP #: gerbv.1.in:64 #, no-wrap msgid "B<-OEXxY|X;YE|--origin=EXxY|X;YE>" msgstr "B<-OEXxY|X;YE|--origin=EXxY|X;YE>" #. type: Plain text #: gerbv.1.in:68 msgid "" "Set the lower left corner of the exported image to coordinate " "EXxYE. Coordinates defaults to inches but may be changed with --" "units." msgstr "" "Установить координаты EXxYE левого нижнего угла экспортируемого " "изображения. По умолчанию значение в дюймах и могут быть изменены с --" "units." #. type: TP #: gerbv.1.in:68 #, no-wrap msgid "B<-a|--antialias>" msgstr "B<-a|--antialias>" #. type: Plain text #: gerbv.1.in:71 msgid "Use antialiasing for the generated output-bitmap." msgstr "Использовать антиалиасинг для выходного bitmap-файла." #. type: TP #: gerbv.1.in:71 #, no-wrap msgid "B<-o\\ EfilenameE|--output=EfilenameE>" msgstr "B<-o\\ Eимя-файлаE|--output=Eимя-файлаE>" #. type: Plain text #: gerbv.1.in:74 msgid "Export to EfilenameE." msgstr "Экспортировать в файл Eимя-файлаE." #. type: TP #: gerbv.1.in:74 #, no-wrap msgid "B<-uEinch/mm/milE|--units=Einch/mm/milE>" msgstr "B<-uEinch/mm/milE|--units=Einch/mm/milE>" #. type: Plain text #: gerbv.1.in:77 msgid "Use given unit for coordinates. Default to inches." msgstr "Использовать указанные единицы измерения. По умолчанию дюймы." #. type: TP #: gerbv.1.in:77 #, no-wrap msgid "B<-WEWxHE|--window_inch=EWxHE>" msgstr "B<-WEШxВE|--window_inch=EШxВE>" #. type: Plain text #: gerbv.1.in:80 msgid "Window size in inches EWxHE for the exported image." msgstr "Размер окна в дюймах EШxВE для экспортируемого изображения." #. type: TP #: gerbv.1.in:80 #, no-wrap msgid "B<-wEWxHE|--window=WxHE>" msgstr "B<-wEШxВE|--window=EШxВE>" #. type: Plain text #: gerbv.1.in:86 msgid "" "Window size in pixels EWxHE for the exported image. Autoscales to " "fit if no resolution is specified (note that the default 72 DPI also " "changes in that case). If a resolution is specified, it will clip the " "image to this size." msgstr "" "Размер окна EШxВE в пикселях экспортируемого изображения. Если " "разрешение не указано, то выполняется масштабирование (заметьте, что в " "этом случае разрешение по умолчанию 72 DPI также изменяется). Если " "разрешение указано, то изображение обрезается." #. type: TP #: gerbv.1.in:86 #, no-wrap msgid "B<-xEpng/pdf/ps/svg/rs274x/drillE|--export=Epng/pdf/ps/svg/rs274x/drillE>" msgstr "B<-xEpng/pdf/ps/svg/rs274x/drillE|--export=Epng/pdf/ps/svg/rs274x/drillE>" #. type: Plain text #: gerbv.1.in:89 msgid "Export to a file and set the format for the output file." msgstr "Экспортировать в файл и установить формат выходного файла." #. type: SS #: gerbv.1.in:90 #, no-wrap msgid "GTK Options" msgstr "Параметры GTK" #. type: Plain text #: gerbv.1.in:93 msgid "B<--gtk-module=>I Load an additional GTK module" msgstr "B<--gtk-module=>I<МОДУЛЬ> Загрузить дополнительный модуль GTK" #. type: TP #: gerbv.1.in:93 #, no-wrap msgid "B<--g-fatal-warnings>" msgstr "B<--g-fatal-warnings>" #. type: Plain text #: gerbv.1.in:96 msgid "Make all warnings fatal" msgstr "Сделать все предупреждения фатальными" #. type: TP #: gerbv.1.in:96 #, no-wrap msgid "B<--gtk-debug=>I" msgstr "B<--gtk-debug=>I<ФЛАГИ>" #. type: Plain text #: gerbv.1.in:99 msgid "GTK debugging flags to set" msgstr "Установить флаги отладки GTK" #. type: TP #: gerbv.1.in:99 #, no-wrap msgid "B<--gtk-no-debug=>I" msgstr "B<--gtk-no-debug=>I<ФЛАГИ>" #. type: Plain text #: gerbv.1.in:102 msgid "GTK debugging flags to unset" msgstr "Снять флаги отладки GTK" #. type: TP #: gerbv.1.in:102 #, no-wrap msgid "B<--gdk-debug=>I" msgstr "B<--gdk-debug=>I<ФЛАГИ>" #. type: Plain text #: gerbv.1.in:105 msgid "GDK debugging flags to set" msgstr "Установить флаги отладки GDK" #. type: TP #: gerbv.1.in:105 #, no-wrap msgid "B<--gdk-no-debug=>I" msgstr "B<--gdk-no-debug=>I<ФЛАГИ>" #. type: Plain text #: gerbv.1.in:108 msgid "GDK debugging flags to unset" msgstr "Снять флаги отладки GDK" #. type: TP #: gerbv.1.in:108 #, no-wrap msgid "B<--display=>I" msgstr "B<--display=>I<ДИСПЛЕЙ>" #. type: Plain text #: gerbv.1.in:111 msgid "X display to use" msgstr "Использовать X-дисплей" #. type: TP #: gerbv.1.in:111 #, no-wrap msgid "B<--sync>" msgstr "B<--sync>" #. type: Plain text #: gerbv.1.in:114 msgid "Make X call synchronous" msgstr "Сделать синхронными X-вызовы" #. type: TP #: gerbv.1.in:114 #, no-wrap msgid "B<--no-xshm>" msgstr "B<--no-xshm>" #. type: Plain text #: gerbv.1.in:117 msgid "Don't use X shared memory extension" msgstr "Не использовать расширение разделяемой памяти X" #. type: TP #: gerbv.1.in:117 #, no-wrap msgid "B<--name=>I" msgstr "B<--name=>I<НАЗВАНИЕ>" #. type: Plain text #: gerbv.1.in:120 msgid "Program name as used by the window manager" msgstr "Название программы используемое оконным менеджером" #. type: TP #: gerbv.1.in:120 #, no-wrap msgid "B<--class=>I" msgstr "B<--class=>I<КЛАСС>" #. type: Plain text #: gerbv.1.in:123 msgid "Program class as used by the window manager" msgstr "Класс программы используемый оконным менеджером" #. type: SH #: gerbv.1.in:124 #, no-wrap msgid "GENERAL" msgstr "ОБЩИЕ ЗАМЕЧАНИЯ" #. type: Plain text #: gerbv.1.in:127 msgid "" "When you start gerbv you can give the files to be loaded on the command " "line, either as each file separated with a space or by using wildcards." msgstr "" "Вы можете указать в командной строке файлы для открытия в I при " "запуске: или все файлы разделённые пробелами, или применяя в названии " "файлов шаблоны." #. type: Plain text #: gerbv.1.in:133 msgid "" "The user interface is graphical. Simply press and drag middle mouse " "button (scroll wheel) and the image will pan as you move the mouse. To " "manipulate a layer, right-click on one of the rightmost list items. That " "will bring up a pop-up menu where you can select what you want to do with " "that layer (reload file, change color, etc)." msgstr "" "Gerbv использует графический пользовательский интерфейс. Для прокрутки " "перемещайте мышь удерживая среднюю кнопку (колесо прокрутки) или " "используйте инструмент Прокрутка. Для изменения свойств слоя выберите " "название слоя и откройте контекстное меню правой кнопкой мыши, через " "которое можно изменить цвет слоя, перезагрузить слой и т.д." #. type: Plain text #: gerbv.1.in:136 msgid "" "If you hold the mouse button over one the rightmost button a tooltips " "will show you the name of the file loaded on that layer." msgstr "" "При удержании курсора мыши над названием слоя появится всплывающая " "подсказка с именем файла, который соответствует этому слою." #. type: SH #: gerbv.1.in:137 #, no-wrap msgid "ACTIVATION AND DEACTIVATION OF LAYERS" msgstr "ВКЛЮЧЕНИЕ И ВЫКЛЮЧЕНИЕ СЛОЁВ" #. type: Plain text #: gerbv.1.in:140 msgid "" "You can load several files at one time. You can then turn displaying of " "the layers on and off by clicking on one of check boxes near the layer " "names." msgstr "" "Несколько файлов могут быть загружены одновременно. Отображение слоёв " "выключается и включается галочкой рядом с названием слоя." #. type: Plain text #: gerbv.1.in:144 msgid "" "You can also control this from the keyboard. Press Ctrl, enter the number " "on the layer you want activate/deactivate on the numerical keypad and " "then release the Ctrl key." msgstr "" "Отображением слоёв можно управлять с клавиатуры. Удерживая Ctrl, нажмите " "номер слоя на клавиатуре и отпустите Ctrl." #. type: SH #: gerbv.1.in:145 #, no-wrap msgid "ALIGNING OF LAYERS" msgstr "ВЫРАВНИВАНИЕ СЛОЁВ" #. type: Plain text #: gerbv.1.in:148 msgid "" "You can align two layers by selected elements. Select one element on each " "of two layers and click Align layers from context menu." msgstr "" "Два слоя могут быть выравнены по выбранным элементам. Выберите по одному " "элементу на каждом из двух слоёв и нажмите Выравнять слои в контекстном " "меню." #. type: SH #: gerbv.1.in:149 #, no-wrap msgid "ZOOMING" msgstr "МАСШТАБИРОВАНИЕ" #. type: Plain text #: gerbv.1.in:157 msgid "" "Zooming can be handled by either menu choices, keypressing or mouse " "scroll wheel. If you press z you will zoom in and if you press Shift+z (i." "e. Z) you will zoom out. Scroll wheel works if you enabled that in your X " "server and mapped it to button 4 and 5. You can make the image fit by " "pressing f (there is also a menu alternative for this). If Pan, Zoom, or " "Measure Tool is selected you can press right mouse button for zoom in, " "and if you press Shift and right mouse button you will zoom out." msgstr "" "Масштабирование может быть выполнено через меню, клавиатуру или колесо " "мыши. Для увеличения нажмите клавишу z и Shift+z (т.е. Z) для уменьшения. " "Колесо прокрутки мыши также используется для масштабирования. Для " "масштаба наилучшего заполнения нажмите клавишу f или используйте меню. " "Если выбраны инструменты Прокрутка, Масштаб или Измерение, то для " "увеличения можно использовать правую кнопку мыши, а для уменьшения правую " "кнопку мыши с удерживаемой клавишей Shift." #. type: Plain text #: gerbv.1.in:165 msgid "" "You can also do zooming by outline. Select Zoom Tool, press mouse button, " "draw, release. The dashed line shows how the zooming will be dependent on " "the resolution of the window. The non-dashed outline will show what you " "actually selected. If you change your mind when started to mark outline, " "you can always abort by pressing escape. By holding down the Shift key " "when you press the mouse button, you will select an area where the point " "you started at will be the center of your selection." msgstr "" "Для увеличения контуром выберите инструмент Масштаб, нажмите кнопку мыши " "и, удерживая её, укажите контур. Пунктирная линия отображает зависимость " "масштабирования от разрешения окна. Сплошная линия соответствует " "указанному контуру. Отменить указание контура можно клавишей Esc. Для " "указания контура относительно центра, удерживайте нажатой клавишу Shift." #. type: SH #: gerbv.1.in:166 #, no-wrap msgid "MEASUREMENTS" msgstr "ИЗМЕРЕНИЕ" #. type: Plain text #: gerbv.1.in:173 msgid "" "You can do measurement on the image displayed. Select Measure Tool, the " "cursor changes to a plus. By using left mouse button you can draw the " "lines that you want to measure. The result of the last measurement is " "also displayed on the statusbar. All measurements are in the drawing " "until you select other Tool. To measure distance between elements select " "two of them and switch to Measure Tool." msgstr "" "Для измерения элементов изображения слоя выберите инструмент Измерение " "(курсор изменится на перекрестие), нажмите левую кнопку мыши для точки " "начала измерения и, удерживая её, укажите точку окончания измерения. " "Результат в выбранных единицах измерения отображается в строке статуса. " "Линия измерения отображается до тех пор, пока не выбран другой " "инструмент. Для измерения расстояния между элементами выберите два из них " "и переключитесь на инструмент Измерение." #. type: Plain text #: gerbv.1.in:177 msgid "" "The statusbar shows the current mouse position on the layer in the same " "coordinates as in the file. I.e. if you have (0,0) in the middle of the " "image in the Gerber files, the statusbar will show (0,0) at the same " "place." msgstr "" "Текущие координаты указателя мыши (соответствующие координатам в файле) " "отображаются в строке статуса в выбранных единицах измерения. Т.е. если " "центр изображения Gerber-файла имеет координаты (0; 0), то в этом месте " "изображения слоя в строке статуса будут отображены координаты (0; 0)." #. type: SH #: gerbv.1.in:178 #, no-wrap msgid "SUPERIMPOSING" msgstr "НАЛОЖЕНИЕ" #. type: Plain text #: gerbv.1.in:182 msgid "" "When you load several Gerber files, you can display them \"on top of each " "other\", i.e. superimposing. The general way to display them are that " "upper layers cover the layers beneath, which is called copy (GTK+ terms)." msgstr "" "Если открыто несколько файлов, вы можете отображать слои \"один поверх " "другого\", т.е. наложением. По умолчанию верхний слой закрывает собой " "нижние слои." #. type: Plain text #: gerbv.1.in:187 msgid "" "The other ways selectable are and, or, xor and invert. They map directly " "to corresponding functions in GTK. In GTK they are described as: \"For " "colored images, only GDK_COPY, GDK_XOR and GDK_INVERT are generally " "useful. For bitmaps, GDK_AND and GDK_OR are also useful.\"" msgstr "" "Также можно выбрать отображение исключающим ИЛИ (XOR) или инвертированным " "из контекстного меню слоя." #. type: SH #: gerbv.1.in:188 #, no-wrap msgid "PROJECTS" msgstr "ПРОЕКТЫ" #. type: Plain text #: gerbv.1.in:193 msgid "" "gerbv can also handle projects. A project consist of bunch of loaded " "layers with their resp. color and the background color. The easiest way " "to create a project is to load all files you want into the layer you " "want, set all the colors etc and do a \"Save Project As...\"." msgstr "" "gerbv может работать с проектами. Файл проекта состоит из списка слоёв, " "их цвета и цвета фона. Для создания файла проекта, откройте желаемые " "файлы, организуйте порядок слоёв, задайте их цвет и выберите пункт меню " "\"Сохранить проект как...\"" #. type: Plain text #: gerbv.1.in:196 msgid "" "You load a project either from the menu bar or by using the commandline " "switches -p or --project." msgstr "" "Загрузить проект можно через меню или параметром командной строки -p или " "--project." #. type: Plain text #: gerbv.1.in:199 msgid "" "Currently there is a limit in that the project file must be in the same " "directory as the Gerber files to be loaded." msgstr "" "В настоящее время существует ограничение: файл проекта должен " "располагаться в том же каталоге, что и загружаемые Gerber-файлы." #. type: SH #: gerbv.1.in:200 #, no-wrap msgid "SCHEME" msgstr "SCHEME" #. type: Plain text #: gerbv.1.in:208 msgid "" "The project files are simple Scheme programs that is interpreted by a " "built in Scheme interpreter. The Scheme interpreter is TinyScheme and " "needs a Scheme program called init.scm to initialize itself. The search " "path for init.scm is (in the following order) @scmdir@, the directory " "with the executable gerbv, the directory gerbv was invoked from and " "finally according to the environment variable GERBV_SCHEMEINIT." msgstr "" "Файл проекта это сценарий Scheme, обрабатываемый встроенным Scheme-" "интерпретатором TinyScheme. Для инициализации TinyScheme необходим файл " "init.scm, поиск расположения которого выполняется в следующей " "последовательности: @scmdir@, каталог исполняемого файла gerbv, каталог " "запуска gerbv, значение переменной окружения GERBV_SCHEMEINIT." #. type: SH #: gerbv.1.in:209 #, no-wrap msgid "TOOLS FILE" msgstr "ФАЙЛ ИНСТРУМЕНТОВ" #. type: Plain text #: gerbv.1.in:214 msgid "" "Not every Excellon drill file is self-sufficient. Some CADs produce .drd " "files where tools are only referenced, but never defined (such as what " "diameter of the tool is.) Eagle CAD is one of such CADs, and there are " "more since many board houses require Tools files." msgstr "" "Не все файлы Excellon самодостаточны. Некоторые программы " "автоматизированного проектирования создают файлы \".drd\" содержащие " "только обозначение инструментов, а не их определение (т.е. не указывают " "их диаметр). Eagle — одна из таких программ, но есть и другие, поэтому " "многие производители печатных плат требуют файлы инструментов." #. type: Plain text #: gerbv.1.in:217 msgid "" "A Tools file is a plain text file which you create in an editor. Each " "line of the file describes one tool (the name and the diameter, in " "inches):" msgstr "" "Файл инструментов — это обычный текстовый файл, который можно создать в " "текстовом редакторе. Каждая строка файла описывает один инструмент " "(название и диаметр в дюймах):" #. type: Plain text #: gerbv.1.in:222 #, no-wrap msgid "" "\tT01 0.024\n" "\tT02 0.040\n" "\t...\n" msgstr "" "\tT01 0.024\n" "\tT02 0.040\n" "\t...\n" #. type: Plain text #: gerbv.1.in:228 msgid "" "These are the same tools (T01 etc.) that are used in the Drill file. A " "standard practice with Eagle is to create an empty Tools file, run the " "CAM processor, and the error report tells you which tools you \"forgot" "\". Then you put these tools into the file and rerun the CAM processor." msgstr "" "Это те же инструменты (T01 и т.д.), которые используются в файле " "сверловки. Обычная практика в Eagle — создавать пустой файл инструментов, " "запускать CAM-обработчик и по сообщениям об ошибках выяснять какие " "инструменты \"отсутствуют\". Затем эти инструменты добавляются в файл и " "CAM-процессор запускается повторно." #. type: Plain text #: gerbv.1.in:234 msgid "" "You load a tool file by using the commandline switches -t or --tools. " "The file can have any name you wish, but Eagle expects the file type to " "be \".drl\", so it makes sense to keep it this way. Some board houses are " "still using CAM software from DOS era, so you may want to excercise " "caution before going beyond the 8.3 naming convention." msgstr "" "Для загрузки файла инструментов используйте флаг командной строки -t или " "--tools. Имя файла может быть любым (Eagle предполагает расширение \".drl" "\" для таких файлов). Некоторые производители печатных плат до сих пор " "используют программное обеспечение из эры DOS, что может накладывать " "ограничение 8.3 на длину имён файлов." #. type: Plain text #: gerbv.1.in:244 msgid "" "When I reads the Tools file it also checks that there are no " "duplicate definitions of tools. This does happen from time to time as you " "edit the file by hand, especially if you, during design, add or remove " "parts from the board and then have to add new tools into the Tools file. " "The duplicate tools are a very serious error which will stop (HOLD) your " "board until you fix the Tools file and maybe the Excellon file. I " "will detect duplicate tools if they are present, and will exit " "immediately to indicate such a fatal error in a very obvious way. A " "message will also be printed to standard error." msgstr "" "При чтении файла инструментов I проверяет отсутствие повторяющихся " "определений инструментов. Это может случиться при редактировании файла " "инструментов вручную. Повторяющиеся определения инструментов — серьёзная " "ошибка, которая приостановит производство вашей печатной платы до " "исправления файла инструментов и, возможно, файла сверловки Excellon. При " "обнаружении повторяющихся определений инструментов I немедленно " "сообщает об ошибке и завершает работу." #. type: Plain text #: gerbv.1.in:249 msgid "" "If your Excellon file does not contain tool definitions then I " "will preconfigure the tools by deriving the diameter of the drill bit " "from the tool number. This is probably not what you want, and you will " "see warnings printed on the console." msgstr "" "Если файл Excellon не содержит определения инструментов, то I " "установит диаметр инструментов по номеру инструмента. Вероятно, это не " "то, что вы хотите, поэтому будет выведено предупреждение." #. type: SH #: gerbv.1.in:250 #, no-wrap msgid "PICK&PLACE FILE" msgstr "ФАЙЛ РАСПОЛОЖЕНИЯ" #. type: Plain text #: gerbv.1.in:252 msgid "Supported comma separated file (CSV) with fixed order of data:" msgstr "" "Поддерживается формат с разделением запятыми (CSV, comma separated file) " "и фиксированным порядком данных:" #. type: Plain text #: gerbv.1.in:256 #, no-wrap msgid "" "\t# X,Y in mils.\n" "\tDesignator,\"Description\",\"Value\",X,Y,\"Rotation (deg)\",top/bottom\n" msgstr "" "\t# X,Y in mils.\n" "\tDesignator,\"Description\",\"Value\",X,Y,\"Rotation (deg)\",top/bottom\n" #. type: Plain text #: gerbv.1.in:258 #, no-wrap msgid "\tor\n" msgstr "\tили\n" #. type: Plain text #: gerbv.1.in:261 #, no-wrap msgid "" "\tDesignator,\"Footprint\",\"Mid X\",\"Mid Y\",\"Ref X\",\"Ref Y\",\n" "\t\t\t\"Pad X\",\"Pad Y\",T/B,\"Rotation\",\"Comment\"\n" msgstr "" "\tDesignator,\"Footprint\",\"Mid X\",\"Mid Y\",\"Ref X\",\"Ref Y\",\n" "\t\t\t\"Pad X\",\"Pad Y\",T/B,\"Rotation\",\"Comment\"\n" #. type: Plain text #: gerbv.1.in:266 msgid "" "Units can be specified in format \"# X,Y in mils.\" or as suffix for X/Y-" "coordinates, i.e \",10mil,\". Supported units: in, mil, cmil, dmil, km, " "m, dm, cm, mm, um, nm." msgstr "" "Единицы измерения могут быть указаны в формате \"# X,Y in mils.\" или как " "суффикс для X/Y-координат, например, \",10mil,\". Поддерживаются: in " "(дюйм), mil (тысячные дюйма), cmil (стотысячная дюйма), dmil, km (км), m " "(м), dm (дм), cm (см), mm (мм), um (мкм), nm (нм)." #. type: SH #: gerbv.1.in:267 #, no-wrap msgid "ENVIRONMENT" msgstr "ОКРУЖЕНИЕ" #. type: IP #: gerbv.1.in:268 #, no-wrap msgid "GERBV_SCHEMEINIT" msgstr "GERBV_SCHEMEINIT" #. type: Plain text #: gerbv.1.in:271 msgid "" "Defines where the init.scm file is stored. Used by scheme interpreter, " "which is used by the project reader." msgstr "" "Задаёт расположение файла init.scm, используемого Scheme-интерпретатором " "для чтения файла проекта." #. type: SH #: gerbv.1.in:272 #, no-wrap msgid "AUTHOR" msgstr "АВТОРЫ" #. type: Plain text #: gerbv.1.in:277 #, no-wrap msgid "" "Stefan Petersen (spetm at users.sourceforge.net): Overall hacker and project leader\n" "Andreas Andersson (e92_aan at e.kth.se): Drill file support and general hacking\n" "Anders Eriksson (aenfaldor at users.sourceforge.net): X and GTK+ ideas and hacking\n" msgstr "" "Stefan Petersen (spetm at users.sourceforge.net):\n" "\tобщее программирование и ведение проекта\n" "Andreas Andersson (e92_aan at e.kth.se):\n" "\tподдержка файла сверловки и общее программирование\n" "Anders Eriksson (aenfaldor at users.sourceforge.net):\n" "\tидеи X и GTK+ и программирование\n" #. type: SH #: gerbv.1.in:278 #, no-wrap msgid "COPYRIGHT" msgstr "COPYRIGHT" #. type: Plain text #: gerbv.1.in:281 #, no-wrap msgid "Copyright \\(co 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Stefan Petersen\n" msgstr "Copyright \\(co 2001—2008 Stefan Petersen\n" #. type: Plain text #: gerbv.1.in:283 #, no-wrap msgid "" "This document can be freely redistributed according to the terms of the \n" "GNU General Public License version 2.0\n" msgstr "" "Данный документ может свободно распространяться в соответствии с \n" "требованиями GNU Универсальной общественной лицензии (GPL) версии 2.0\n" gerbv-2.7.0/man/Makefile.am0000644000175000017500000000346313421555714015331 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA LANGUAGES = ru if HAVE_PO4A man_MANS = gerbv.1 gerbv.ru.1 else man_MANS = gerbv.1 all: @ echo @ echo "WARNING: missing po4a or osp/sp (onsgmls/nsgmls). Rerun \ configure and check for 'checking for po4a-*' and 'checking for onsgmls'/ \ 'checking for nsgmls'" @ echo endif EXTRA_DIST = gerbv.1.in MOSTLYCLEANFILES = *~ CLEANFILES = *~ *.pot $(man_MANS) SUFFIXES = .1 .1.in .in .in.po # .1 << .1.in .1.in.1: sed -e "s;@scmdir@;${pkgdatadir}/scheme;g" \ -e 's;@version@;@VERSION@;g' \ $< > $@ || rm $@ # .in << .in.po .in.po.in: $(po4a_translate) -k 70 -M UTF-8 -f man -m gerbv.1.in -p $< -l $@ gerbv.1.in.pot: gerbv.1.in $(po4a_gettextize) -M UTF-8 -f man -m $< -p $@ .PHONY: $(LANGUAGES) update-po: $(LANGUAGES) # Without dependency to manually update .po files $(LANGUAGES): $(MAKE) gerbv.1.in.pot $(MSGMERGE) -v --width=76 gerbv.$@.1.in.po gerbv.1.in.pot \ -o gerbv.$@.1.in.po.new mv gerbv.$@.1.in.po.new gerbv.$@.1.in.po gerbv-2.7.0/man/Makefile.in0000644000175000017500000004615613423533413015342 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = man ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(man_MANS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ LANGUAGES = ru @HAVE_PO4A_FALSE@man_MANS = gerbv.1 @HAVE_PO4A_TRUE@man_MANS = gerbv.1 gerbv.ru.1 EXTRA_DIST = gerbv.1.in MOSTLYCLEANFILES = *~ CLEANFILES = *~ *.pot $(man_MANS) SUFFIXES = .1 .1.in .in .in.po all: all-am .SUFFIXES: .SUFFIXES: .1 .1.in .in .in.po $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu man/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu man/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(MANS) installdirs: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am uninstall-man \ uninstall-man1 .PRECIOUS: Makefile @HAVE_PO4A_FALSE@all: @HAVE_PO4A_FALSE@ @ echo @HAVE_PO4A_FALSE@ @ echo "WARNING: missing po4a or osp/sp (onsgmls/nsgmls). Rerun \ @HAVE_PO4A_FALSE@configure and check for 'checking for po4a-*' and 'checking for onsgmls'/ \ @HAVE_PO4A_FALSE@'checking for nsgmls'" @HAVE_PO4A_FALSE@ @ echo # .1 << .1.in .1.in.1: sed -e "s;@scmdir@;${pkgdatadir}/scheme;g" \ -e 's;@version@;@VERSION@;g' \ $< > $@ || rm $@ # .in << .in.po .in.po.in: $(po4a_translate) -k 70 -M UTF-8 -f man -m gerbv.1.in -p $< -l $@ gerbv.1.in.pot: gerbv.1.in $(po4a_gettextize) -M UTF-8 -f man -m $< -p $@ .PHONY: $(LANGUAGES) update-po: $(LANGUAGES) # Without dependency to manually update .po files $(LANGUAGES): $(MAKE) gerbv.1.in.pot $(MSGMERGE) -v --width=76 gerbv.$@.1.in.po gerbv.1.in.pot \ -o gerbv.$@.1.in.po.new mv gerbv.$@.1.in.po.new gerbv.$@.1.in.po # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/man/gerbv.1.in0000644000175000017500000002550313421555714015070 0ustar carstencarsten.TH gerbv 1 "Jule 13, 2013" Version @version@ .SH NAME gerbv - Gerber Viewer .SH SYNOPSIS .B gerbv [OPTIONS] [gerberfile[s]] .SH DESCRIPTION .PP \fIgerbv\fP is a viewer for RS274-X, commonly known as Gerber, files. RS274-X files are generated from different PCB CAD programs and are used in the printed circuit board manufacturing process. \fIgerbv\fP also supports Excellon/NC drill files as well as XY (centroid) files produced by the program PCB (http://pcb.geda-project.org/). .SH OPTIONS .B Warning! On some platforms, which hasn't long option available, only short options are available. .SS gerbv General options: .BI -V|--version Print the version number of gerbv and exit. .TP .BI -h|--help Print a brief usage guide and exit. .TP .BI -b|--background= Use background color . is specified as an html-color code, e.g. #FF0000 for Red. .TP .BI -f|--foreground= Use foreground color . is specified as an html-color code, e.g. #00FF00 for Green. If a user also wants to set the alpha (rendering with Cairo) it can be specified as an #RRGGBBAA code. Use multiple -f flags to set the color for multiple layers. .TP .BI -l\ |--log= All error messages etc are stored in a file with filename \fI\fP. .TP .BI -t\ |--tools= Read Excellon tools from the file \fI\fP. .TP .BI -p\ |--project= Load a stored project. Please note that the project file must be stored in the same directory as the Gerber files. .SS gerbv Export-specific options: The following commands can be used in combination with the -x flag: .TP .BI -B|--border= Set the border around the image percent of the width and height. Default is 5%. .TP .BI -Dor|--dpi=or Resolution (Dots per inch) for the output bitmap. Use for different resolutions for the width and height (only when compiled with Cairo as render engine). Use to have the same resolution in both directions. Defaults to 72 DPI in both directions. .TP .BI -T|--translate= Translate image by X and Y and rotate by R degree. Use multiple -T flags to translate multiple files. Distance defaults to inches but may be changed with --units. Only evaluated when exporting as RS274X or drill. .TP .BI -O|--origin= Set the lower left corner of the exported image to coordinate . Coordinates defaults to inches but may be changed with --units. .TP .BI -a|--antialias Use antialiasing for the generated output-bitmap. .TP .BI -o\ |--output= Export to . .TP .BI -u|--units= Use given unit for coordinates. Default to inches. .TP .BI -W|--window_inch= Window size in inches for the exported image. .TP .BI -w|--window=WxH> Window size in pixels for the exported image. Autoscales to fit if no resolution is specified (note that the default 72 DPI also changes in that case). If a resolution is specified, it will clip the image to this size. .TP .BI -x|--export= Export to a file and set the format for the output file. .SS GTK Options .BI --gtk-module= MODULE Load an additional GTK module .TP .BI --g-fatal-warnings Make all warnings fatal .TP .BI --gtk-debug= FLAGS GTK debugging flags to set .TP .BI --gtk-no-debug= FLAGS GTK debugging flags to unset .TP .BI --gdk-debug= FLAGS GDK debugging flags to set .TP .BI --gdk-no-debug= FLAGS GDK debugging flags to unset .TP .BI --display= DISPLAY X display to use .TP .BI --sync Make X call synchronous .TP .BI --no-xshm Don't use X shared memory extension .TP .BI --name= NAME Program name as used by the window manager .TP .BI --class= CLASS Program class as used by the window manager .SH GENERAL When you start gerbv you can give the files to be loaded on the command line, either as each file separated with a space or by using wildcards. The user interface is graphical. Simply press and drag middle mouse button (scroll wheel) and the image will pan as you move the mouse. To manipulate a layer, right-click on one of the rightmost list items. That will bring up a pop-up menu where you can select what you want to do with that layer (reload file, change color, etc). If you hold the mouse button over one the rightmost button a tooltips will show you the name of the file loaded on that layer. .SH ACTIVATION AND DEACTIVATION OF LAYERS You can load several files at one time. You can then turn displaying of the layers on and off by clicking on one of check boxes near the layer names. You can also control this from the keyboard. Press Ctrl, enter the number on the layer you want activate/deactivate on the numerical keypad and then release the Ctrl key. .SH ALIGNING OF LAYERS You can align two layers by selected elements. Select one element on each of two layers and click Align layers from context menu. .SH ZOOMING Zooming can be handled by either menu choices, keypressing or mouse scroll wheel. If you press z you will zoom in and if you press Shift+z (i.e. Z) you will zoom out. Scroll wheel works if you enabled that in your X server and mapped it to button 4 and 5. You can make the image fit by pressing f (there is also a menu alternative for this). If Pan, Zoom, or Measure Tool is selected you can press right mouse button for zoom in, and if you press Shift and right mouse button you will zoom out. You can also do zooming by outline. Select Zoom Tool, press mouse button, draw, release. The dashed line shows how the zooming will be dependent on the resolution of the window. The non-dashed outline will show what you actually selected. If you change your mind when started to mark outline, you can always abort by pressing escape. By holding down the Shift key when you press the mouse button, you will select an area where the point you started at will be the center of your selection. .SH MEASUREMENTS You can do measurement on the image displayed. Select Measure Tool, the cursor changes to a plus. By using left mouse button you can draw the lines that you want to measure. The result of the last measurement is also displayed on the statusbar. All measurements are in the drawing until you select other Tool. To measure distance between elements select two of them and switch to Measure Tool. The statusbar shows the current mouse position on the layer in the same coordinates as in the file. I.e. if you have (0,0) in the middle of the image in the Gerber files, the statusbar will show (0,0) at the same place. .SH SUPERIMPOSING When you load several Gerber files, you can display them "on top of each other", i.e. superimposing. The general way to display them are that upper layers cover the layers beneath, which is called copy (GTK+ terms). The other ways selectable are and, or, xor and invert. They map directly to corresponding functions in GTK. In GTK they are described as: "For colored images, only GDK_COPY, GDK_XOR and GDK_INVERT are generally useful. For bitmaps, GDK_AND and GDK_OR are also useful." .SH PROJECTS gerbv can also handle projects. A project consist of bunch of loaded layers with their resp. color and the background color. The easiest way to create a project is to load all files you want into the layer you want, set all the colors etc and do a "Save Project As...". You load a project either from the menu bar or by using the commandline switches -p or --project. Currently there is a limit in that the project file must be in the same directory as the Gerber files to be loaded. .SH SCHEME The project files are simple Scheme programs that is interpreted by a built in Scheme interpreter. The Scheme interpreter is TinyScheme and needs a Scheme program called init.scm to initialize itself. The search path for init.scm is (in the following order) @scmdir@, the directory with the executable gerbv, the directory gerbv was invoked from and finally according to the environment variable GERBV_SCHEMEINIT. .SH "TOOLS FILE" Not every Excellon drill file is self-sufficient. Some CADs produce .drd files where tools are only referenced, but never defined (such as what diameter of the tool is.) Eagle CAD is one of such CADs, and there are more since many board houses require Tools files. A Tools file is a plain text file which you create in an editor. Each line of the file describes one tool (the name and the diameter, in inches): .nf T01 0.024 T02 0.040 ... .fi These are the same tools (T01 etc.) that are used in the Drill file. A standard practice with Eagle is to create an empty Tools file, run the CAM processor, and the error report tells you which tools you "forgot". Then you put these tools into the file and rerun the CAM processor. You load a tool file by using the commandline switches -t or --tools. The file can have any name you wish, but Eagle expects the file type to be ".drl", so it makes sense to keep it this way. Some board houses are still using CAM software from DOS era, so you may want to excercise caution before going beyond the 8.3 naming convention. When \fIgerbv\fP reads the Tools file it also checks that there are no duplicate definitions of tools. This does happen from time to time as you edit the file by hand, especially if you, during design, add or remove parts from the board and then have to add new tools into the Tools file. The duplicate tools are a very serious error which will stop (HOLD) your board until you fix the Tools file and maybe the Excellon file. \fIgerbv\fP will detect duplicate tools if they are present, and will exit immediately to indicate such a fatal error in a very obvious way. A message will also be printed to standard error. If your Excellon file does not contain tool definitions then \fIgerbv\fP will preconfigure the tools by deriving the diameter of the drill bit from the tool number. This is probably not what you want, and you will see warnings printed on the console. .SH PICK&PLACE FILE Supported comma separated file (CSV) with fixed order of data: .nf # X,Y in mils. Designator,"Description","Value",X,Y,"Rotation (deg)",top/bottom or Designator,"Footprint","Mid X","Mid Y","Ref X","Ref Y", "Pad X","Pad Y",T/B,"Rotation","Comment" .fi Units can be specified in format "# X,Y in mils." or as suffix for X/Y-coordinates, i.e ",10mil,". Supported units: in, mil, cmil, dmil, km, m, dm, cm, mm, um, nm. .SH "ENVIRONMENT" .IP GERBV_SCHEMEINIT Defines where the init.scm file is stored. Used by scheme interpreter, which is used by the project reader. .SH "AUTHOR" .nf Stefan Petersen (spetm at users.sourceforge.net): Overall hacker and project leader Andreas Andersson (e92_aan at e.kth.se): Drill file support and general hacking Anders Eriksson (aenfaldor at users.sourceforge.net): X and GTK+ ideas and hacking .SH COPYRIGHT .nf Copyright \(co 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Stefan Petersen This document can be freely redistributed according to the terms of the GNU General Public License version 2.0 gerbv-2.7.0/BUGS0000644000175000017500000000060513421555713013177 0ustar carstencarstenCurrently KNOWN BUGS All OS: If layer orientation modified with rotation and rendering mode is 'Fast' or 'Fast, with XOR' (GDK rendering) line22 macro apertures are not rotated and not correctly displayed. Reporting about macro parameters (obtained via analyze -> analyze visible Gerber layers, and found in the Aperture definitions tab) incorrectly reports the macro parameters found. gerbv-2.7.0/AUTHORS0000644000175000017500000000143313421555713013564 0ustar carstencarsten# Note: This file is used to generate the entries i the 'credits' menu. # As such, the format must be adhered to. Format is: # # Name: Comment # # Lines starting with a '#' are considered comment lines. # Blank lines are allowed. Anders Eriksson: GTK+/X hacker and constructive ideas. Andreas Andersson aka Pitch: Drill file support hacker and constructive ideas. Dan McMahill: Build system, portability and bug fixes, misc. features David Carr Joerg Wunsch Joost Witteveen Juergen Haas Julian Lamb: Cairo conversion. Many user interface and rs274-x improvements Sergey Alyoshin Stefan Petersen: Project founder, and main developer for many years Stuart Brorson: Layer statistics, release engineer, UI improvements Tomasz Motylewski Trevor Blackwell ... and many others. gerbv-2.7.0/ltmain.sh0000644000175000017500000117147413423533407014350 0ustar carstencarsten#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.6 Debian-2.4.6-2" package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.4.6-2 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: gerbv-2.7.0/acinclude.m40000644000175000017500000001761613421555713014717 0ustar carstencarstendnl $Id$ dnl dnl ---------------------------------------------------------------- dnl From gcc's libiberty aclocal.m4 dnl See whether we need a declaration for a function. AC_DEFUN([libiberty_NEED_DECLARATION], [AC_MSG_CHECKING([whether $1 must be declared]) AC_CACHE_VAL(libiberty_cv_decl_needed_$1, [AC_TRY_COMPILE([ #include "confdefs.h" #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif], [char *(*pfn) = (char *(*)) $1], libiberty_cv_decl_needed_$1=no, libiberty_cv_decl_needed_$1=yes)]) AC_MSG_RESULT($libiberty_cv_decl_needed_$1) if test $libiberty_cv_decl_needed_$1 = yes; then AC_DEFINE([NEED_DECLARATION_]translit($1, [a-z], [A-Z]), 1, [Define if $1 is not declared in system header files.]) fi ])dnl dnl ---------------------------------------------------------------- dnl From http://autoconf-archive.cryp.to/adl_compute_relative_paths.html dnl and http://autoconf-archive.cryp.to/adl_normalize_path.html dnl dnl the adl_* functions which follow have the following copyright: dnl dnl Copyright 2006 Alexandre Duret-Lutz dnl This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. dnl This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. dnl You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf Macro. dnl This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as well. AC_DEFUN([adl_NORMALIZE_PATH], [case ":[$]$1:" in # change empty paths to '.' ::) $1='.' ;; # strip trailing slashes :*[[\\/]]:) $1=`echo "[$]$1" | sed 's,[[\\/]]*[$],,'` ;; :*:) ;; esac # squeze repeated slashes case ifelse($2,,"[$]$1",$2) in # if the path contains any backslashes, turn slashes into backslashes *\\*) $1=`echo "[$]$1" | sed 's,\(.\)[[\\/]][[\\/]]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) $1=`echo "[$]$1" | sed 's,\(.\)[[\\/]][[\\/]]*,\1/,g'` ;; esac]) AC_DEFUN([adl_COMPUTE_RELATIVE_PATHS], [for _lcl_i in $1; do _lcl_from=\[$]`echo "[$]_lcl_i" | sed 's,:.*$,,'` _lcl_to=\[$]`echo "[$]_lcl_i" | sed 's,^[[^:]]*:,,' | sed 's,:[[^:]]*$,,'` _lcl_result_var=`echo "[$]_lcl_i" | sed 's,^.*:,,'` adl_RECURSIVE_EVAL([[$]_lcl_from], [_lcl_from]) adl_RECURSIVE_EVAL([[$]_lcl_to], [_lcl_to]) _lcl_notation="$_lcl_from$_lcl_to" adl_NORMALIZE_PATH([_lcl_from],['/']) adl_NORMALIZE_PATH([_lcl_to],['/']) adl_COMPUTE_RELATIVE_PATH([_lcl_from], [_lcl_to], [_lcl_result_tmp]) adl_NORMALIZE_PATH([_lcl_result_tmp],["[$]_lcl_notation"]) eval $_lcl_result_var='[$]_lcl_result_tmp' done]) ## Note: ## ***** ## The following helper macros are too fragile to be used out ## of adl_COMPUTE_RELATIVE_PATHS (mainly because they assume that ## paths are normalized), that's why I'm keeping them in the same file. ## Still, some of them maybe worth to reuse. dnl adl_COMPUTE_RELATIVE_PATH(FROM, TO, RESULT) dnl =========================================== dnl Compute the relative path to go from $FROM to $TO and set the value dnl of $RESULT to that value. This function work on raw filenames dnl (for instead it will considerate /usr//local and /usr/local as dnl two distinct paths), you should really use adl_COMPUTE_REALTIVE_PATHS dnl instead to have the paths sanitized automatically. dnl dnl For instance: dnl first_dir=/somewhere/on/my/disk/bin dnl second_dir=/somewhere/on/another/disk/share dnl adl_COMPUTE_RELATIVE_PATH(first_dir, second_dir, first_to_second) dnl will set $first_to_second to '../../../another/disk/share'. AC_DEFUN([adl_COMPUTE_RELATIVE_PATH], [adl_COMPUTE_COMMON_PATH([$1], [$2], [_lcl_common_prefix]) adl_COMPUTE_BACK_PATH([$1], [_lcl_common_prefix], [_lcl_first_rel]) adl_COMPUTE_SUFFIX_PATH([$2], [_lcl_common_prefix], [_lcl_second_suffix]) $3="[$]_lcl_first_rel[$]_lcl_second_suffix"]) dnl adl_COMPUTE_COMMON_PATH(LEFT, RIGHT, RESULT) dnl ============================================ dnl Compute the common path to $LEFT and $RIGHT and set the result to $RESULT. dnl dnl For instance: dnl first_path=/somewhere/on/my/disk/bin dnl second_path=/somewhere/on/another/disk/share dnl adl_COMPUTE_COMMON_PATH(first_path, second_path, common_path) dnl will set $common_path to '/somewhere/on'. AC_DEFUN([adl_COMPUTE_COMMON_PATH], [$3='' _lcl_second_prefix_match='' while test "[$]_lcl_second_prefix_match" != 0; do _lcl_first_prefix=`expr "x[$]$1" : "x\([$]$3/*[[^/]]*\)"` _lcl_second_prefix_match=`expr "x[$]$2" : "x[$]_lcl_first_prefix"` if test "[$]_lcl_second_prefix_match" != 0; then if test "[$]_lcl_first_prefix" != "[$]$3"; then $3="[$]_lcl_first_prefix" else _lcl_second_prefix_match=0 fi fi done]) dnl adl_COMPUTE_SUFFIX_PATH(PATH, SUBPATH, RESULT) dnl ============================================== dnl Substrack $SUBPATH from $PATH, and set the resulting suffix dnl (or the empty string if $SUBPATH is not a subpath of $PATH) dnl to $RESULT. dnl dnl For instace: dnl first_path=/somewhere/on/my/disk/bin dnl second_path=/somewhere/on dnl adl_COMPUTE_SUFFIX_PATH(first_path, second_path, common_path) dnl will set $common_path to '/my/disk/bin'. AC_DEFUN([adl_COMPUTE_SUFFIX_PATH], [$3=`expr "x[$]$1" : "x[$]$2/*\(.*\)"`]) dnl adl_COMPUTE_BACK_PATH(PATH, SUBPATH, RESULT) dnl ============================================ dnl Compute the relative path to go from $PATH to $SUBPATH, knowing that dnl $SUBPATH is a subpath of $PATH (any other words, only repeated '../' dnl should be needed to move from $PATH to $SUBPATH) and set the value dnl of $RESULT to that value. If $SUBPATH is not a subpath of PATH, dnl set $RESULT to the empty string. dnl dnl For instance: dnl first_path=/somewhere/on/my/disk/bin dnl second_path=/somewhere/on dnl adl_COMPUTE_BACK_PATH(first_path, second_path, back_path) dnl will set $back_path to '../../../'. AC_DEFUN([adl_COMPUTE_BACK_PATH], [adl_COMPUTE_SUFFIX_PATH([$1], [$2], [_lcl_first_suffix]) $3='' _lcl_tmp='xxx' while test "[$]_lcl_tmp" != ''; do _lcl_tmp=`expr "x[$]_lcl_first_suffix" : "x[[^/]]*/*\(.*\)"` if test "[$]_lcl_first_suffix" != ''; then _lcl_first_suffix="[$]_lcl_tmp" $3="../[$]$3" fi done]) dnl adl_RECURSIVE_EVAL(VALUE, RESULT) dnl ================================= dnl Interpolate the VALUE in loop until it doesn't change, dnl and set the result to $RESULT. dnl WARNING: It's easy to get an infinite loop with some unsane input. AC_DEFUN([adl_RECURSIVE_EVAL], [_lcl_receval="$1" $2=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "[$]_lcl_receval_old" != "[$]_lcl_receval"; do _lcl_receval_old="[$]_lcl_receval" eval _lcl_receval="\"[$]_lcl_receval\"" done echo "[$]_lcl_receval")`]) gerbv-2.7.0/ChangeLog0000644000175000017500000115110313421555713014267 0ustar carstencarsten2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Don't show program version in window title 2017-02-06 Dan McMahill * dan AT mcmahill dot net * * NEWS: Add brief news item for 2.6.2 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am: Update library version 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * tags.txt: Remove tags.txt 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * cvs-tag.sh, files2tag.txt: Remove cvs-tag.sh and files2tag.txt 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * README-release.txt: Remove shell script header from README-release.txt 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.ru.1.in.po: Update Russian man translation 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/Makefile.am: Update man .po only by 'make update-po' 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.1.in: Update man 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2019-01-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Update messages 2019-01-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Reorganize --help output This is done to simplify translation and translation maintaining. 2019-01-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Avoid using += operator in autoconf file 2019-01-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Simplify message for translation 2019-01-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Don't use _() in ngettext() 2019-01-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Remove '\n' in message 2019-01-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c, src/interface.c, src/main.c: Fix typos in string and add accelerator 2018-12-30 nikor * nikorpoulsen AT gmail dot com * * configure.ac: Put space between flags in configure On Arch Linux the default build flags is CPPFLAGS="-D_FORTIFY_SOURCE=2". The patch makes that work. 2018-12-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Partially update ru.po 2018-12-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/attribute.c, src/callbacks.c, src/drill.c, src/drill_stats.c, src/gerb_stats.c, src/gerber.c, src/gerbv.c, src/interface.c, src/main.c, src/pick-and-place.c, src/project.c: Don't translate malloc() error messages 2018-12-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Modify element report messages 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove obvious "active" word in Save window title 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Replace gerbv with Gerbv in About dialog 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * AUTHORS: Add myself to authors 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Update button tooltip 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.1.in: Describe supported PNP format in man 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.1.in: Update man Briefly describe Layer alignment and two element measurement. 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Mark export to gEDA PCB as beta 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c, src/interface.h: * Add "All on/off" accelerators * Create accelerators files directory ~/.gEDA/gerbv 2018-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * README: Fix 'git clone' command and remove spaces 2018-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * README: Update README 2018-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * README-cvs.txt => README-git.txt: Update README-cvs.txt to README-git.txt 2018-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac, man/Makefile.am: Check for onsgmls or nsgmls for po4a 2018-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * .gitignore: Update .gitignore 2018-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/Makevars: Prevent .po files accidentally update 2018-12-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Autoscroll Messages tab 2018-12-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Rework drill parsing and add line number report 2018-12-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report benchmark start in messages tab 2018-12-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Request CXX in configure.ac only for DXF 2018-12-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am: Conditionally place export-dxf.cpp to libgerbv 2018-12-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/common.h, src/drill.c, src/export-drill.c, src/export-isel-drill.c, src/export-rs274x.c, src/gerber.c, src/gerbv.c, src/main.c, src/pick-and-place.c, src/project.c: Include locale.h in common.h 2018-12-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-geda-pcb.c: Fix file name in comment 2018-12-05 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/export-geda-pcb.c, src/gerbv.h, src/interface.c: Initial gEDA PCB export support 2018-12-05 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac, src/Makefile.am, src/callbacks.c, src/callbacks.h, src/export-dxf.cpp, src/gerbv.h, src/interface.c: Initial DXF export support 2018-12-05 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Fix cross on drills saved settings retrieve 2018-12-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Reduce pick-and-place.c size with functions 2018-12-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c, src/drill.c, src/drill_stats.c, src/gerb_file.c, src/gerb_image.c, src/gerb_stats.c, src/pick-and-place.c, src/project.c: Using g_new() instead of g_malloc() 2018-12-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c, src/interface.h: * Set as active layer before deleted one * Add Ctrl+Delete hotkey for delete layer action * Change stock label to "Revert all" 2018-12-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Using hypot() and pnp_new_net() 2018-12-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Using MIN() and MAX() 2018-12-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Draw pick and place labels on top of symbol 2018-11-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/render.c: Increase measure line width 2018-11-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Support more units in pick and place file 2016-03-09 chrysn * chrysn AT fsfe dot org * * src/pick-and-place.c: .xy files: Support both mm and mil units pcb can export .xy files both in mil and mm, and explains the units in the header. This patch scans for the unit declaration, and stores it as default unit for the following unit-less numbers. 2018-11-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c, src/gerbv.h: Fix outline macro aperture Cairo rendering Broken in 581b52533f9c490a667598a2bd89c69649017699 2018-11-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report macro aperture in screen coordinates 2018-11-27 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Workaround to prevent rasterization at vector export Workaround for macro aperture types. It is not good enough to produce vector files for photo plotting. 2018-11-27 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove forgotten debug code 2018-10-20 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c: Set default file name for export and save as dialogs 2018-10-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c: Change tooltips 2018-10-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * share/glib-2.0/schemas/org.geda-user.gerbv.gschema.xml, src/callbacks.c, src/interface.c, src/main.c, src/main.h: Save background color 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Don't call g_variant_unref() after g_variant_new_fixed_array() 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Change GSETTINGS_SCHEMA_DIR env value for Windows 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Move gdk_drawable_get_visual() To prevent non use warning on Windows 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/csv_defines.h: Don't redefine some HAVE_* in csv_defines for Win 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Revert check if image->format is not NULL 2018-10-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c, src/tooltable.c: Replace ssize_t with long int for MinGW 2018-10-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/drill.c, src/drill.h, src/gerber.c, src/gerber.h: * Report layer bounding size in analyze dialog * Add name functions for drill and Gerber D, G, M-codes 2018-10-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * share/glib-2.0/schemas/org.geda-user.gerbv.gschema.xml, src/callbacks.c, src/interface.c: Save main and analyze windows size and position 2018-10-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/main.h, src/render.c: Rename lastMeasuredX, Y 2018-10-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Replace #warning with TODO comment 2018-10-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c: Ask before benchmarking 2018-10-11 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Use gerbv_escape_char() in gerber.c 2018-10-11 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_stats.c, src/gerb_stats.h: Change gerbv_escape_char() to macro Macro use C "compound literals" to convert int from gerbv_escape_char_return_int() to char*. With this approach gerbv_escape_char() can be used more than one time in other function arguments. 2018-10-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_stats.c, src/gerb_stats.h: Add gerbv_escape_char() 2018-10-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_file.h: Remove extern path_separator declaration 2018-10-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_stats.h: Add printf style warning for gerbv_stats_printf() 2018-10-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill_stats.c: Use gerbv_stats_printf() instead of drill_stats_add_error() 2018-10-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c, src/main.c: Use GSettings Save and retrieve settings for visual unit, view rendering type, cross on drills. GSettings schema file can stored in default system directory. Fallback schema directory is set as relative to Gerbv executable file: For Unix: "../share/glib-2.0/schemas" For Windows: "share\glib-2.0\schemas" 2018-10-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c, src/main.h: Parse length unit cmdline option before others If several length unit option specified in cmdlie, then parse them sequentially, as before. 2018-10-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Fix typo in configure.ac Typo introduced in previous commit. 2018-10-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * Makefile.am, configure.ac, share/glib-2.0/schemas/Makefile.am, share/glib-2.0/schemas/org.geda-user.gerbv.gschema.xml: Add GSettings support GSettings will be used for user settings (units, renderer, windows size...) 2018-10-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/tooltable.c: Replace fprintf() with GERB_COMPILE_*() in tooltable.c Also report file name and line number in message. 2018-10-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po, src/interface.c: Fix typo in tooltip 2018-10-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po, src/callbacks.c, src/interface.c: Replace "mms" with "mm" 2018-10-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/export-drill.c, src/export-isel-drill.c, src/export-rs274x.c, src/gerbv.c: Save action improvements * Show file name and layer number in file choose dialog window title * Report success in Messages tab 2018-10-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Export menu changes * Rearrange items * Add menu separators * Update tooltips 2018-10-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Add static add_trailing_zeros_if_omitted() 2018-10-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c, src/main.c: Report file opening problem as error and warning 2018-10-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/export-rs274x.c, src/gerb_image.c, src/gerber.c, src/gerbv.h: Rename GERBV_INTERPOLATION_x10 Renamed in style with other linear interpolation enums. 2018-10-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Report unknown Gerber elements as warning in Cairo rendering 2018-10-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Change file name position in analyze tables 2018-10-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Additional check in string name functions 2018-10-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: * Report polygon area segments parameters * Move aperture state report to separate function 2018-10-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/gerb_image.c, src/gerbv.c, src/gerbv.h: Add functions to return string names 2018-10-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Emphasize dprintf() output for G code 2018-10-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Polygon area interpolation Don't change back from current start to previous end polygon area interpolation. 2018-10-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Minor cosmetic changes 2018-10-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Add line number from Gerber file in error message 2018-10-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerber.c, src/gerber.h: Add gerber_g_code_name() function 2018-10-01 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_stats.c, src/gerb_stats.h: Add gerbv_stats_printf() function 2018-09-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2018-09-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Clarity G85 as cut slot with series of holes 2018-09-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Unify "skipped/unknown interpolation type" message 2018-09-20 Miklos Marton * martonmiklosqdev AT gmail dot com * * src/callbacks.c: Unescape drag&droped file path 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-isel-drill.c: Use COORD2MMS instead of constant 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-isel-drill.c: Warn if element is skipped in ISEL drill export 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Update required gettext version Version is updated to fix autogen.sh warning: The 'AM_PROG_MKDIR_P' macro is deprecated 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/POTFILES.in, src/Makefile.am, src/{exportimage.c => export-image.c}: Rename exportimage.c to export-image.c 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-drill-slot-drilled-g85.exc, test/tests.list: Add drilled slot G85 test file 2018-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report drilled slot length 2018-09-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/common.h, src/drill.c, src/gerber.c, src/gerbv.c, src/gerbv.h, src/main.c, src/pick-and-place.c, src/render.c: Using enhanced MIN and MAX macros 2018-09-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Limit max scale factor in zoom to fit 2018-09-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Update bounding box and image info min/max for drilled slot 2018-09-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report drill not as apertures 2018-09-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Add units to element report 2018-09-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Configure with C99 compiler 2018-09-12 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/Makevars, src/callbacks.c, src/drill.c, src/interface.c, src/main.c: Using long dash "—" instead of "--" 2018-09-12 Miklos Marton * martonmiklosqdev AT gmail dot com * * po/ru.po, src/callbacks.c, src/callbacks.h, src/interface.c, src/interface.h, src/project.c, src/project.h: - Merge file and project open menu items - Drop file support - Popup dialog on reload Co-authored-by: Sergey Alyoshin * alyoshin dot s AT gmail dot com * 2018-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Remove Rendering label widget 2018-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Fix missed console output on Windows For Windows -mwindows build flag is used, which is prevent output to stdout/stderr. Solve this by reopening output streams. Closes-bug: SF #219, SF #221, SF #233 2018-08-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c, src/gerbv.c: Workaround to prevent rasterization at vector export Cairo library produce _raster_ output if polygon is cleared by negative aperture or other polygon. A workaround is to draw over with background color instead of clearing. Drawback is: there won't be any see thru negative opening if two layers printed one on the another. 2018-08-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Report filename in RS-274D warning 2018-08-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Don't limit minimum width at vector export Closes-bug: SF #207 2018-08-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Show text label only one time for PNP graphics Closes-bug: SF #203 2018-05-13 Kliment Yanev * kliment dot yanev AT gmail dot com * * src/gerbv.c: Fix memory leaks reported by valgrind 2018-05-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/export-rs274x.c, src/gerber.c, src/project.c: Using GERBV_PRECISION_* 2018-05-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Add golden test images 2018-05-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/{test-circular-interpolation-zero-error.gbr => test-circular-interpolation-zero-error.gbx}: Rename test file 2018-05-08 Joerg Wunsch * j AT uriah dot heep dot sax dot de * * src/gerb_image.c, src/gerbv.h: Change rotation precision check Rotated layer cannot be handled correctly in Gerber output when reading in a project file as the project file limits the precision of the rotation so it's not recognized as being 90/180/270 degrees. 2018-04-22 Dan Sheadel * tekdemo AT users dot sourceforge dot net * * src/export-rs274x.c: Increase precision of exported RS274X files Current PCB tools generally export gerbers in higher precision than GerbV exports RS274X files in. In rare circumstances, the start and end coordinates of an arc can be close enough that this loss of precision causes GerbV to round them to the same coordinate. This makes the arclength 0, and the arc is then treated as a full circle. If this occurs near traces or ground planes, then it generally results in the gerbers having a short, resulting in fabrication of the board to be incorrect. Saving the 3.6 formatted gerbv with standard GerbV will result in the short occurring. This patch simply adjusts the export output to 3:6 format, which is equal to or higher than most tools output. This avoids the precision loss, and thus the arc rounding bug. Closes-bug: SF #62 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-circular-interpolation-zero-error.gbr, test/tests.list: Add test Gerber file File from bug report SF #68 by Dan Sheadel. 2018-04-22 Dan Sheadel * tekdemo AT users dot sourceforge dot net * * src/gerber.c: Fix render bug for CW X-Y0 circles The issue is that calculated floating point values should be zero, but are actually very small with opposite signs. When put into atan2, that arc returns alfa and beta of -pi and pi. The subsequent angle processing then manipulates this into an incorrect, zero-length arc (pi to pi), instead of a (pi,3pi) arc as would be expected. This patch resolves the value by simply checking the values, and forcibly declaring values below epsilon to be zero. The subsequent math then works correctly, and the arc is handled correctly. Impact of this bug: This bug seems to only impact the rendering, and does not corrupt or mangle files. So using GerbV with this bug will not result in production of a failed board. It will, however, be very misleading, and potentially result in confusion. Several design tools, notably Ultiboard, default to this arc pattern for full circles, so it is a fairly common pattern to see in the wild. Closes-bug: SF #68 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report arc angle and polygon number of vertices 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Cleanup draw_gdk_render_polygon_object() 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Fix negative width and height in GDK rendering Take absolute value for width and height variables as cairo_matrix_transform_point() can produce negative results. 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Report signed incremental distance in SQ arc In single quadrant circular interpolation Ix and Jy incremental distance must be unsigned. 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Debug print Found X,Y,J,I code with coordinate 2018-04-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Output G code with two digits in G codes report 2017-02-19 Uwe Bonnes * bon AT elektron dot ikp dot physik dot tu-darmstadt dot de * * src/main.c: Handle IDRILL export like DRILL/RS274x export 2017-02-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Update golden test files 2017-02-19 Uwe Bonnes * bon AT elektron dot ikp dot physik dot tu-darmstadt dot de * * man/gerbv.1.in, src/main.c: Allow to specify rotation from cmdline when exporting 2017-02-19 Uwe Bonnes * bon AT elektron dot ikp dot physik dot tu-darmstadt dot de * * man/gerbv.1.in, src/main.c: For Translate, use 'x' as delimiter as for other coordinate input. Handle the case "0xn", where sscanf see a hex number. 2017-02-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.h: Report aperture macro parameters 2017-02-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Cleanup gerber_parse_file_segment() 2017-02-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Fix macro line21 and line22 bounding box calculation 2017-02-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerber.c: Replace sqrt(a*a + b*b) with hypot(a, b) 2017-02-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Fix parameter[LINE22_HEIGHT/2] typo 2017-02-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.h: Remove unused gerbv_bbox_t structure typedef 2017-02-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-aperture-macro-line21-rotation.gbx, test/tests.list: Add test: aperture macro line21 with rotation 2017-02-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c: Fix 190 (180) degrees typo and remove useless comment 2017-02-08 Uwe Bonnes * bon AT elektron dot ikp dot physik dot tu-darmstadt dot de * * man/gerbv.1.in, src/main.c: Allow to change input units. 2017-02-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c: Fix exported image rotation (IR) angle Error was in commit 664648e553d88c664d25fc95bbb0665f3317c523 2017-02-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Add background to exported vector file formats For backward culpability only non white and black background is added. Closes-bug: SF #217 2016-10-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Report skipped type/state number for GDK renderer 2016-10-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Fix circular interpolation drawing with GDK renderer Circular interpolation on rotated layer was drew wrongly. 2016-09-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c, src/interface.h: Specific button labels for alert window 2016-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Fix wrongly increased rectangular apertures bug This bug is produced by git commit 3cb133aca082a7c2ef09061ea5304e272eb8026a Closes-bug: SF #208 2016-07-07 Sergey Alyoshin * alyoshinsv AT omg dot transneft dot ru * * src/gerber.c: Rework circular segment bounding box calculation 2016-07-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Replace non ASCII char in message 2016-06-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/amacro.c: Fix memset() size argument Reported by dcb314 on sf.net 2016-07-05 Sergey Alyoshin * alyoshinsv AT omg dot transneft dot ru * * src/gerber.c: Convert rad to deg to output in warning 2016-07-05 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Multiquadrant circle interpolation is not shown on 32-bit systems Calculated start and stop angles in degrees are not quite equal, and full circle is transformed in very small arc. To fix this calculation is done in radians and only results are converted in degrees. Closes-bug: SF #210 2016-07-05 Sergey Alyoshin * alyoshinsv AT omg dot transneft dot ru * * test/inputs/test-circular-interpolation-mq-ccw.gbx, test/tests.list: Add circular multiquadrant CCW interpolation test 2016-05-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c: Remove new line before points in outline macro This allow to open exported Gerber file in Flatcam. Closes-bug: SF #202 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Use M_PI+M_PI_2 instead of 3*M_PI 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Use M_PI+M_PI_2 instead of 3*M_PI 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c, src/gerber.c, src/main.c, src/pick-and-place.c: Use DEG2RAD 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: drill.c: Remove '\n' in messages strings 2016-02-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c, src/gerbv.c: Check if file is not mirrored or inverted before overwriting file Drill files can be mirrored. 2016-02-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Don't change left pane width on window resize 2016-02-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c: Don't save all arcs only as counter clockwise Closes-bug: SF #201 2016-01-23 Stephan Bцttcher * geda AT psjt dot org * * src/export-rs274x.c: Declare identityTransform as static In gerbv_export_rs274x_file_from_image() a pointer to identityTransform is passed out of the {block} where it lives. identityTransform must be declared static to convince the compiler to keep it in place after control leaves the {block}. 2015-12-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Update some golden test files 2015-12-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/test-aperture-polygon-1.gbx, test/tests.list: Remove test/inputs/test-aperture-polygon-1.gbx It is exactly as test-aperture-obround-1.gbx 2015-12-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Add doxygen function descriptions. 2015-12-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Remove unneeded x1, y1 variables 2015-12-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Fix Cairo selection rendering 2015-12-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-aperture-circle-full.gbx, test/tests.list: Add test for full multiquadrant circular interpolation Gerber file is from Takahide HIGUCHI SF #200 bug report. 2015-09-25 Takahide HIGUCHI * takahide AT debian7 * * src/gerber.c: bugfix: clockwise arc from 0 to 360 degree is not drawn Reviewed-by: Sergey Alyoshin * alyoshin dot s AT gmail dot com * Closes-bug: SF #200 2015-09-28 Sergey Stepanov * no dot such dot process AT gmail dot com * * src/selection.c: fix build error: "undefined reference to `selection_add_item'", etc. functions, being declared inside .c source as inline, are thrown away by compiler, thus producing multiple linkage problems: render.c:517: undefined reference to `selection_clear' ./.libs/libgerbv.so: undefined reference to `selection_add_item' and so on 2015-09-01 Michael VoЕ™Г­ЕЎek * mvorisek AT mvorisek dot cz * * src/draw.c: Bug fix SF #188: Thermal draw for Cairo renderer 2015-08-23 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Rewrite gerbv_gdk_draw_amacro() with array of function pointers 2015-08-23 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/attribute.c, src/callbacks.c, src/draw-gdk.c, src/draw.c, src/main.c: Remove dprintf() messages from localization 2015-08-23 Florian Hirschberg * fhirschberg AT fhelectronic dot de * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/export-isel-drill.c, src/gerbv.h, src/interface.c, src/main.c: Added an export option for creating ISEL NCP files with drill commands for automatic drilling 2012-03-07 Ralf Fuest * ralf-fuest AT gmx dot de * * src/draw-gdk.c, src/draw.c: Fix rendering of primitives 5, 21 and 22 2015-08-23 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Do selection_new_array() more early for Cairo rendering 2015-08-23 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/selection.c: Prevent assertion at file reloading in selection_clear() Output at assertion: GLib-CRITICAL **: g_array_remove_range: assertion `index_ < array->len' failed 2015-08-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Use pointers instead of copy of values for parameters 2015-08-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw.c, src/gerbv.c, src/gerbv.h: Move aperture_names[] to gerbv.c 2015-08-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * BUGS, src/draw-gdk.c: Correctly rotate rect and oval apertures in GDK view mode 2015-08-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c, src/gerbv.h: Use M_PI_2 and M_1_PI 2015-07-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c, src/interface.h: Move layer items above project items in File menu Novice users frequently try to open layer file with project menu item instead of layer menu item. 2015-06-29 Sergey Alyoshin * alyoshinsv AT omg dot transneft dot ru * * src/callbacks.c, src/interface.c, src/interface.h: Add Apply to all visible layers functionality in Edit layer dialog Cancel button is not implemented. 2015-06-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Fix crash at Analyze/Benchmark start Check if selectionInfo is not NULL in gerbv_render_to_pixmap_using_gdk() 2015-06-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Fix typo in function name 2015-06-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.h: Report macro type if macro is selected 2015-06-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c: Exporting rotated and scaled Gerbers Add line22 and polygon, moire, thermal macros support. 2015-05-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c, src/gerbv.h: Exporting rotated and scaled Gerbers Add line20 and outline support. 2015-05-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerber.c, src/gerber.h: Report circular interpolation center, angle and direction Forgotten changes. 2015-05-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c, src/gerbv.h: Report circular interpolation center, angle and direction 2015-05-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c: Export only counter CW multiquadrant arcs This fix result of example/amacro-ref/1.grb export. 2015-05-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c, src/gerbv.c, src/gerbv.h: Exporting rotated and scaled Gerbers Work in progress: not all macro processed, not well tested. 2015-05-24 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.h, src/draw.c, src/export-rs274x.c, src/gerber.c, src/gerbv.h, src/interface.c, src/render.c: Move macro aperture enums from draw-gdk.h to gerbv.h 2015-05-24 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/table.c: g_type_init() is deprecated in glib-2.36 2015-05-24 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/gerber.c, src/gerbv.h, src/interface.c: Add and use DEG2RAD() and RAD2DEG() 2015-05-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Emphasis "visible" word in deletion warning dialog 2015-05-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Replace sprintf() by g_strdup_printf() 2015-05-04 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c, src/main.h: Add layer align functionality Two layers can be aligned by center of two selected apertures or lines. 2015-04-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c, src/gerbv.h: Add gerbv_transform_coord() 2015-04-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c, src/main.h: Reformat and simplify code 2015-04-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/draw.c, src/gerb_image.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/render.c, src/render.h, src/selection.c, src/selection.h: Add separated selection functions 2015-04-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.c, src/gerbv.h: Report coords with transformation 2015-04-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Reformat draw.c 2015-04-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Reduce code by using pointers 2015-03-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c, src/interface.c: Show cross on drill holes for Normal render 2015-02-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/draw.c, src/gerbv.h, src/interface.c, src/interface.h: Show cross on drill holes for Cairo render Menu item View/"Show cross on drill holes" was added 2015-02-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/render.c: Simplify render_draw_measure_distance() 2015-02-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.c, src/gerbv.h: Consider transformation for measured distance line Show measured distance line between two selected apertures with user transformation. 2015-02-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Allow zero value in min/max margins of bounding box Otherwise if one of margin is zero then zoom to fit will fail. Reported by Spacefalcon the Outlaw on geda-user mail list. 2014-11-12 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2014-11-11 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Show distance between two apertures If two apertures are selected and measure tool is clicked show distance between apertures. 2014-11-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/icons.h: Replace ruler icon 2014-11-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c: Layer visibility check box now can be pressed with Ctrl key 2014-11-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/gerbv.h, src/render.c, src/render.h: Selected items can now be deselected with pressed Ctrl and mouse 2014-11-02 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/render.c: Highlight selected items on several layers with normal rendering 2014-10-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/gerbv.c, src/gerbv.h, src/interface.c, src/interface.h: Add "View/Show all selection" menu item 2014-10-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.c: Show selected items on invisible layers Don't clear selection if layer visibility is changed. 2014-10-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c, src/gerbv.c: Highlight selected items on several layers with fast rendering 2014-10-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Fix reported file-name of selected item on non selected layer Also g_strdup() is not needed. 2014-10-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-merge-a.gbx, test/inputs/test-merge-b.gbx, test/tests.list: Add merging two files test Two files with clean polarity apertures. 2014-10-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/run_tests.sh: run_tests.sh: execute gerbv with args If args is started with !, only execute gerbv. 2014-10-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c: Fix SF bug #192 SF but #192: Export Gerber merge does not work for silkscreen layers The problem is: if files contain clean polarity apertures, then elements of second in merging order file will all have clean polarity. 2014-10-12 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-drill-trailing-zero-suppression.gvp: Use zero_suppression in project file in tests Using zero_suppression instead of zero_supression from commit 82f6d4cfdcfddffd92ae2b5e20f0bc27512e99c9 2014-10-12 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-drill.c, src/export-rs274x.c, src/gerbv.h, src/main.c: Rework cmdline export invocation 2014-10-12 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Set error text style for merge error messages 2014-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/project.c: Notify user if string in project file is not recognized 2014-09-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Notify user, if drill file attribute is skipped As zero_supression was changed to zero_suppression in project file, users will need notification if previous zero_supression attribute is not recognized. 2014-09-19 Mitch Davis * mjd AT sourceforge dot net * * ChangeLog, po/ru.po, src/drill.c: Suppression has two Ps, fix it 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: Set max possible width to coords label in status bar 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c, src/render.c: Cleanup render_zoom_display() And sightly change gerbv_render_zoom_to_fit_display() 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/exportimage.c, src/interface.c, src/main.c, src/render.c, src/render.h: Cleanup extern declarations 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Add va_end() after va_start() 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/interface.c: Replace #define's, use pointer to struct element and reformat 2014-08-10 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * doc/sources.txt, src/gerbv.h, win32/Readme.txt: Update homepage to gerbv.geda-project.org Also capitalize first letter in Gerbv name and reformat. 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * doc/Doxyfile.nopreprocessing: Change version to 2.6A for doxygen 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update ru.po 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.h, src/drill.h, src/gerbv.h, src/project.c, src/project.h, src/table.c, src/table.h: Add and update doxygen notes 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am: Add doxygen notes to generated authors.c and bugs.c files 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * AUTHORS: Remove space before ':' Such space result in end space at strings in authors.c 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * .gitignore: Add doxygen generated files to .gitignore 2014-08-09 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * Makefile.am: Add doxygen rule 2014-07-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Replace g_malloc() and memzset(0) pair with g_malloc0() 2014-07-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Reduce parenthesis 2014-07-31 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c, src/gerbv.h, src/pick-and-place.c: Fix crash if bottom PNP layer is reloaded 2014-07-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Fix SF bug #170 SF bug #170: Display Properties of circular pick place objects -> CRASH! This crash is actually not for circular object, but only for line in circular object, as only this line element net->label was specified. 2014-07-28 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Code cleanup 2014-07-28 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Remove excessive parentheses  2014-07-06 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/table.c, src/table.h: Allow codes report tables to be sorted Based on patch by Nicholas Vinen * nicholas dot vinen AT gmail dot com * 2014-04-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw.c, src/drill.c, src/drill_stats.c, src/export-drill.c, src/export-rs274x.c, src/gerb_image.c, src/gerb_stats.c, src/gerber.c, src/gerbv.c, src/gerbv.h, src/main.c, src/pick-and-place.c, src/pick-and-place.h, src/render.c: Cleanup #include sections 2014-04-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-drill.c: Add cut slot support for Excellon drill file export 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove commented code and slightly reformat 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove unused defines 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Use g_free() instead of free() for g_malloc() 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Use g_malloc0() Use g_malloc0() instead of g_malloc() and memset(0) pair. 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Use enums instead of defines 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Use #typedef for enums, and use this instead of int typedef for enums is used as it is already used for structs. 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Remove duplicate #include and unused #define 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.h: Update changed structure name in comment 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/drill.c, src/drill_stats.c, src/gerbv.h: Add support for cut slot in drill file 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove unused function callbacks_generate_alert_dialog() 2014-04-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Try to show dialog box with fatal error message 2014-03-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/tests.list: Update format description in tests.list and add new test 2014-03-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/run_tests.sh: Add arguments from run_test.sh to default options If preceded with +, then optional arguments will be added to default set of options. 2014-03-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * test/inputs/test-drill-trailing-zero-suppression.exc, test/inputs/test-drill-trailing-zero-suppression.gvp: Add test files for drill with zero suppression 2014-03-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am: Use absolute path for SRCDIR Overwise can't open project file from test/run_tests.sh 2014-03-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Add tooltip to Clear button 2014-03-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.h: Add and use COORD2INS macro 2014-03-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2014-03-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/drill.c, src/drill_stats.c, src/export-drill.c, src/export-rs274x.c, src/exportimage.c, src/gerbv.c, src/main.c, src/pick-and-place.c, src/project.c, src/render.c: Remove now unneeded new lines in messages 2014-03-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update Russian translation 2014-03-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Use ngettext() for layer number in report table 2014-03-08 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c, src/project.c: Style fix in messages 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * configure.ac: In the configuration summary, indicate if ImageMagick was found for the testsuite. 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: Go ahead and distribute authors.c and bugs.c because otherwise we sometimes see problems with updating po files during 'make distcheck' where authors.c and bugs.c aren't built yet. 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * man/Makefile.am: Add missing gerbv.1.in to EXTRA_DIST. This part of the build system probably needs some cleanup with respect to what tools are needed for creating distfiles versus what are needed for building from a tarball 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: Add gettext.h that has been added in this directory to the _SOURCES so that it actually makes it into the distfile and gets the dependency. Also add a missing header to gerbv_SOURCES for correct dependencies. 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * configure.ac: Fix the version on the master branch per the instructions in REEADME-release.txt. We should only get version 2.6.1 if building from the gerbv-2-6-1-RELEASE tag (which should have been gerbv-2-6-PATCH001 per the release instructions. 2014-02-09 Dan McMahill * dan AT mcmahill dot net * * src/interface.c: Add missing header for malloc(). 2013-12-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am, src/callbacks.c, src/table.c, src/table.h: Report Gerber and drill layers in table view 2013-12-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Remove now unneeded new lines in report messages 2013-12-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c, src/interface.h: Change menu item Modify orientation to Edit layer 2013-12-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c, src/project.c, src/project.h: Rework save and load project file Alpha, translate, rotation, scale, mirror is now supported. Using new line in project file. Compatible with previous project file format. Based on m.land changes. 2013-12-19 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Change style in messages 2013-12-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: locale.h is needed for setlocale() 2013-12-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Replace default border value in help In help show actual border define value, not just string. 2013-12-07 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerb_stats.c, src/gerber.c: Remove new line char in some error strings Gerber error will be shown in table view in Analyze menu, so new line is excess. 2013-11-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Update some golden test files 2013-11-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Update some golden test files 2013-11-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/common.h, src/drill.c, src/pick-and-place.c: Move repeated min() and max() macros to common.h 2013-11-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: pnp: remove unused headers and define 2013-11-16 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: pnp: can't use screen units Pratially undo commit bb318fbf3a1242eada61af47cec8744823e0645c 2013-09-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c, src/main.c, src/main.h: Fix Messages log tab missed messages If file is opened not from gerbv GUI but form command line or from file manager, then not all messages shown in Messages log tab. This log tab is not ready, when such messages appears. This patch put such messages to temporary buffer and output it when log tab is ready. 2013-09-26 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Fix calling install-sh not from build dir Spotted with automake 1.14 and autoconf 2.69 2013-09-22 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * : Update some golden test files 2013-09-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * autogen.sh, configure.ac: Specify m4 macro dir This fix file copying to / by autopoint 2013-09-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Ask confirmation on file overwriting 2013-09-15 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Remember entry widget focus in Modify layer orientation window 2013-08-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Explicitly set textdomain codeset for win32 2013-08-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update ru.po 2013-08-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_file.c: Add header for g_fopen() 2013-08-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.h: Fix GERB_ g_log() macros 2013-08-25 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * BUGS: Add known bug 2013-08-18 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac, src/callbacks.c, src/main.c: Add DPI setting for PNG exporting GUI 2013-08-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/exportimage.c, src/main.c: Replace render type numbers with enum 2013-08-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * .gitignore, po/POTFILES: Remove autogenerated po/POTFILES 2013-08-17 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/POTFILES.in, src/exportimage.c: Report PNG exporting error 2013-08-11 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Update ru.po 2013-08-11 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c, src/main.c: Add new line at the end of some messages 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.ru.1.in.po: man: Russian translation 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.1.in: man: wrong uppercase in parameter 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/.gitignore: Add man/.gitignore 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * .cvsignore, doc/.cvsignore, doc/PNG-print/.cvsignore, example/.cvsignore, example/Mentor-BoardStation/.cvsignore, example/am-test/.cvsignore, example/cslk/.cvsignore, example/dan/.cvsignore, example/eaglecad1/.cvsignore, example/ekf2/.cvsignore, example/jj/.cvsignore, example/nollezappare/.cvsignore, example/numpres/.cvsignore, example/orcad/.cvsignore, man/.cvsignore, scheme/.cvsignore, src/.cvsignore: Remove all .cvsignore files 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac, man/Makefile.am: Check if po4a is accessible at configuration If it is accessible, them compile internationalized man-pages. 2013-08-03 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Update gtk+-2.0 version to 2.18.0 gtk_widget_set_visible() require version 2.18.0 2013-07-30 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * autogen.sh: Unify autogen.sh indentation 2013-07-28 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/ru.po: Add Russian translation 2013-07-28 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Update DPI help string 2013-07-28 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_file.c: Fix crash on windows if dir or filename contains non ascii 2013-07-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * configure.ac: Update gerbv version to 2.6.1 2013-07-21 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Replace index() with strchr() strchr() already used and there is no index() on windows 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Report aperture parameters not only for flash type 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/gerbv.h, src/interface.c, src/main.h: Report arc length and length sum in Messages tab 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/.gitignore: Add po/.gitignore 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * README: Update mail-list 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Add images to some menu items and two menu separators 2013-07-14 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/export-rs274x.c: Fix Web-site links 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/Makefile.am: Add update-po rule for man 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/Makefile.am: Using po4a to help man-page localization 2013-07-13 Ralf Fuest * mail AT ralf-fuest dot de * * src/drill.c: Fix parsing of NC drill files with suppressed trailing zeros Fix situation, when with trailing zeroes suppression and with 4 digits '003' is interpreted as '003', but must be interpreted as '0030.' 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: fix #ifdef(DEBUG) DEBUG defined as 0 for no debug. 2013-07-13 Berni Joss * bernij AT users dot sf dot net * * src/main.c: Add command line options for initial layer rotate and mirror Specify the initial rotation and mirroring for all layers at once. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: .pnp import: import in screen units by default If units as suffix is not specified in .pnp file, use not mils, but screen units. Also add mm units. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * man/gerbv.1.in: Eng man page update Update measurement and zoom operation description, fix PCB project web-page, some minor changes. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Show aperture dimensions Show circle aperture diameter and oval/rectangle dimensions. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Display line length in object properties If object type is line, calculate and display its length. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Display object properties in screen units Object properties was displayed in inch units. Now properties will be displayed in selected screen units. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: Toggle all layers on/off functionality All layers can be turned on or off via context menu or main Layer menu. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Fix functions name comments in pick-and-place.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Fix hint string for DPI setting Separate DPI for X and Y can't be set in format, only in format. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/LINGUAS, po/POTFILES: Add po/POTFILES and po/LINGUAS 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * desktop/gerbv.desktop: Add Russian translation to .desktop file 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c, src/interface.h: Set accel paths for localized menu items 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Add Help/About/Translators 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.h: Increase status bar message buffer length Localized UTF-8 messages are truncated since UTF char have larger size. 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Add messages to translation from gerber.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_stats.c: Add messages to translation from gerb_stats.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_image.c: Add messages to translation from gerb_image.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/project.c: Add messages to translation from project.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerb_file.c: Add messages to translation from file.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-rs274x.c: Add messages to translation from export-rs274x.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/export-drill.c: Add messages to translation from export-drill.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill_stats.c: Add messages to translation from drill_stats.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/dynload.c: Add messages to translation from dynload.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Join sequential printf() 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: Add messages to translation from main.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/render.c: Add messages to translation from render.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/tooltable.c: Add messages to translation to tooltable.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw-gdk.c: Add messages to translation draw-gdk.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerbv.c: Add messages to translation from gerbv.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/draw.c: Add messages to translation form draw.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/csv.c: Add messages to translation from csv.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/drill.c: Add messages to translation from drill.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/attribute.c: Add messages to translation from attribute.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/pick-and-place.c: Add messages to translation from pick-and-place.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Add tooltips for layer buttons 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/interface.c: Add messages to translation from interface.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Use ngettext() for showning number of object 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Replace snprintf() with UTF-8 aware functions 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/callbacks.c: Add messages to translation from callbacks.c 2013-07-13 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am: Add authors and bugs lists to translation gettext() should not be called on empty strings. So prevent generation of N_("") in bugs.c and authors.c 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/Makefile.am, src/common.h, src/gettext.h, src/main.c: Add gettext basis Add src/gettext.h, short macros for gettext functions, LOCALEDIR definition and textdomain binding. 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * .gitignore: Update .gitignore 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/POTFILES.in: Add po/POTFILES.in Add po/POTFILES.in for internationalization support. 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * po/Makevars: Add po/Makevars Add po/Makevars for internationalizaton support. 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * Makefile.am, autogen.sh, configure.ac: Add autopoint Add autopoint for internationalization support. 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/gerber.c: Fix crash if Gerber file has more than 102 apterture Now gerbv is able to _partially_ load gerbers with aperture parameters more than 102, report it and _not_ crash. 2013-06-29 Sergey Alyoshin * alyoshin dot s AT gmail dot com * * src/main.c: gerbv -h does not require an argument 2012-11-25 Peter Clifton * peter AT clifton-electronics dot co dot uk * * src/Makefile.am: src/Makefile.am: Change pkginclude_DATA to pkginclude_HEADERS Automake is being picky about not installing "data" files into a path defined for headers. 2012-02-02 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: don't update min/max bounding box when drawing with CLEAR polarity fixes bug 3483097 where image justify was skewing the drawing due to bad min/max calcs 2012-01-12 Julian Lamb * thepurlieu AT gmail dot com * * example/am-test/am-test.gbx, src/draw-gdk.c, src/draw.c: fix rendering algorithm for MOIRE macro (reported by Matthias on mailing list) additionally, update the am-test file to actually show a proper moire with 2 circles 2011-12-25 Dan McMahill * dan AT mcmahill dot net * * configure.ac: Welcome to 2.6A 2011-12-25 Dan McMahill * dan AT mcmahill dot net * * autogen.sh: Quit complaining about libtool-2.4 not having been tested. It has. 2011-12-25 Dan McMahill * dan AT mcmahill dot net * * ChangeLog, NEWS: Update for the 2.6.0 release. 2011-12-25 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: Set shared lib version number in prep for 2.6.0 release. 2011-12-24 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/interface.c, src/main.c, src/render.c, src/scheme.c: * clean up all 'unused variable' compiler warnings 2011-12-24 Dan McMahill * dan AT mcmahill dot net * * src/project.c: Remove 2 unused variables (they were set but the values never used) to increase the SNR of the compiler warning output 2011-12-24 Dan McMahill * dan AT mcmahill dot net * * NEWS: Somehow the 2.5.0 release notes in NEWS never got committed so add them now. 2011-11-28 Dan McMahill * dan AT mcmahill dot net * * configure.ac: Check for dlopen in -ldl. This is used by the TinyScheme dynamic loader (src/dynload.c). Fixes linking problems seen on some systems like Fedora 16. 2011-09-04 Julian Lamb * thepurlieu AT gmail dot com * * .gitignore: * add .gitignore file to better track changed files with git (patch from Uwe Bonnes) 2011-05-01 Julian Lamb * thepurlieu AT gmail dot com * * src/export-drill.c, src/export-rs274x.c: Change LC_NUMERIC calls in the export functions to ensure portability 2011-05-01 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c: patch from Canonical to allow better compilation with quartz (ticket 3295792) 2011-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/export-drill.c, src/export-rs274x.c: force rs274x and drill export to use dots for commas this should prevent exporting incorrect formats on machines with other locales 2011-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: enforce a minimum width on flashed rectangle apertures Eagle CAD seems to use very thin flashed rectangles for logos/images, and the cairo rendering did not render them sometimes 2011-03-08 Julian Lamb * thepurlieu AT gmail dot com * * : commit f990adcfab61c16a3992be4d00e21da5a2bfe251 Author: Julian Lamb * thepurlieu AT gmail dot com * Date: Tue Mar 8 21:07:39 2011 -0500 2011-02-19 Stefan Petersen * spe AT stacken dot kth dot se * * example/amacro-ref/README.txt, example/amacro-ref/gerbv_am_expression_bug.ger: Added example on using precedence sensitive calculations of aperture macros. 2011-03-07 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/draw.h, src/gerbv.c, src/gerbv.h: greatly improve vector output accuracy many thanks for the bug and patch from Simon Bichler (3197830) 2011-03-07 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: disable the minimum line width rendering logic for scaled layers fixes bug 3202311 2011-03-05 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c: increase the resolution for exported RS274X files from 2.3 to 3.4 format fixes bug 3197816 2011-03-05 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: check for a selected layer before trying to save/export it fixes bug 3197797 2011-03-02 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: set the screen size to a default size when the board size is invalid fixes bug 3196664 2011-03-02 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/interface.c, src/main.h: grey out all applicable menu items when no layers are open fixes bug 3196584, where Excellon export crashes with no file open 2011-02-18 Stefan Petersen * spe AT stacken dot kth dot se * * src/amacro.c: Implemented operator precedence in aperture macro parsing as per updated std. Closes bug #3172530. Uses shunting yard algorithm, suggested by bug reporter Ben Rampling. 2011-02-12 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * fix scaling bug when multiple scale factors are present (bug 3172964) 2011-01-15 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: fix printing bug where only the bottom layer printed out (patch by cloudfish) 2011-01-12 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: relabel the "Current layer" menu to Layer to make it one word only 2011-01-12 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: add a file merging feature to the GUI menu thanks to Doug Springer for this nice feature which allows the user to do things like basic panelizing using the GUI now (it was previously only possible via the command line) 2011-01-12 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c, src/interface.h, src/main.h: patches by Stefan Tauner to add the "current layer" menuitem to the main menu also includes some other cleanup work by Stefan as well 2011-01-12 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * fix macro rendering on clear layers (bug 3154966) 2011-01-11 Dan McMahill * dan AT mcmahill dot net * * configure.ac: Welcome to 2.5A 2011-01-11 Dan McMahill * dan AT mcmahill dot net * * ChangeLog: update for 2.5.0 2011-01-08 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: Bump shared lib version in prep for 2.5 release. 2011-01-07 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: Minor updates (version numbers only) for the up and coming 2.5 release. 2011-01-07 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: Expand this script to cover pcb and wcalc as well as gerbv. Until such time as I get a decent NetBSD or Linux hosted cross build environment set up I should at least have an easier job of maintaining this script since it should be shared with no changes between the three projects now. 2011-01-07 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: Update some of the installer license info to reflect the latest set of gtk for win32 and friends downloads 2011-01-07 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: Update for the latest set of downloads of gtk for win32 2011-01-02 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: Use @prog instead of @gerbv in this file which makes it a little easier to use the same top level build script for both pcb and gerbv. 2011-01-02 Dan McMahill * dan AT mcmahill dot net * * : commit 966ac7e1567380978f8f6e63e11829105c055179 Author: Dan McMahill * dan AT mcmahill dot net * Date: Sat Jan 1 13:26:43 2011 -0500 2011-01-01 Julian Lamb * thepurlieu AT gmail dot com * * : commit 3b0ad206c7df6a5b1aa9cc0d6d308f70c32e68dc Author: Julian Lamb * thepurlieu AT gmail dot com * Date: Sat Jan 1 09:58:53 2011 -0500 2010-12-31 Dan McMahill * dan AT mcmahill dot net * * src/interface.c: Add missing header for malloc(). 2010-12-30 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: * fix leak and possible segfault in drill parser (patch by Doug Springer) 2010-12-22 Julian Lamb * thepurlieu AT gmail dot com * * src/pick-and-place.c: * fix segfault in pick-and-place parser (bug 3141941) 2010-12-14 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/gerbv.c, src/gerbv.h, src/interface.c, src/interface.h, src/main.c, src/main.h, src/project.c, src/render.c: * add persistent keyboard accelerators, extra menu options, and do general cleanup large patch from Stefan Tauner, which finishes mapping every possible command to the menus, as well as add persistent keyboard accelerators for everything. Also lots of general cleanup in the interface code. 2010-10-12 Julian Lamb * thepurlieu AT gmail dot com * * src/render.c: * increase max zoom 4 times, to allow more accurate measurements The previous zoom limit was set to prevent GDK rendering artifacts, but the rendering speedups in the code now eliminate those so there is no issue with zooming in. 2010-09-08 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: * fix crasher in drill parsing (bug 3061736) crasher was caused in bug in get_line function when given an empty line 2010-08-24 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * add accelerator for color changing 2010-08-24 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * change F8 shortcut to F7, per the GNOME HIG 2010-08-24 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: * add keyboard shortcut for moving layers up and down (patch by Stefan Tauner) 2010-08-22 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * change toolbar visibility key shortcut to F8, since F10 is normally stolen for the GTK menu 2010-08-22 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: * add pseudo-fullscreen mode (patch by Stefan Tauner) 2010-08-20 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/draw.c, src/interface.c: add ability to toggle sidebar visibility and add menu and keyboard shortcut for layer visibility (patch by Stefan Tauner) 2010-08-18 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/interface.c: add ability to toggle toolbar visibility, and add additional menu accelerators (patch by Stefan Tauner) 2010-08-18 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: pixel-align the coordinates when rendering via cairo (benchmark shows a 10%-15% speed boost) 2010-08-11 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: * fix length calcs in previous patch to prevent possible buffer overruns 2010-08-11 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: * ignore comments in drill files when determining file type patch by Doug Springer (ID:3043154) 2010-07-28 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerber.c, src/gerber.h: recalculate the bounding boxes when drawing primatives via the libgerbv API 2010-06-30 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: fix handling of trailing zero suppression with very large precisions (TAX35, etc) (bug 3022957) 2010-06-11 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example1.c, doc/example-code/example2.c, doc/example-code/example4.c, doc/example-code/example5.c, src/export-rs274x.c: fix the example code files showing how to use libgerv, and use a default identity transform during exporting if nothing is specified 2010-04-29 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: fix GDK rendering or Macro 22 elements when negative coordinates are present (bug 2994471) 2010-04-27 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: fix tooltip for modify layer button (patch by Joerg Wunsch) 2010-03-25 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: fix handling of whitespace in the middle of an RS274X command (bug 2976400) 2010-03-11 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c: * fix bug in exporting outline macros (fixes bug 2968567 and 2968550) 2010-02-25 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: unselect all items if a layer is hidden (bug 2957479) 2010-02-25 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: fix drill parsing bug when INCH command has nothing after it (bug 2957994) 2010-02-20 Dan McMahill * dan AT mcmahill dot net * * configure.ac: Welcome to 2.4A 2010-02-20 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: Increment revision for shared lib in prep for the 2.4.0 release. 2010-02-20 Dan McMahill * dan AT mcmahill dot net * * ChangeLog, NEWS: Update ChangeLog and NEWS for the 2.4.0 release 2010-02-20 Dan McMahill * dan AT mcmahill dot net * * utils/git2cl: Strip trailing whitespace on comment lines. 2010-02-20 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: Minor updates for 2.4.0 release. 2010-02-19 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: Update the release documentation to deal with the cvs to git change. 2010-02-19 Dan McMahill * dan AT mcmahill dot net * * utils/git2cl: Add script to produce a ChangeLog from git. 2010-02-19 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: fix bug 2954915, where circular moves were parsed incorrectly with trailing zero suppression 2010-02-15 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: fix bug 2949590 by making sure we catch null strtok results in the aperture parser This bug showed up in some very bad Gerber files. gerbv should now not segfault, but instead throw up errors and display what it can. 2010-01-23 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/draw.h, src/drill.c, src/gerb_image.c, src/gerber.c, src/gerbv.c, src/gerbv.h, src/render.c: fix bug 2935054, where text in exported PDF files was illegible This bug was caused by our draw rule that all lines must be at least 1 pixel wide, which ensures they show up at far zoom levels. However, for 72DPI print or PDF output, this rule should be avoided because the cairo backends for these don't need them. 2009-12-18 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: Fix bug in file format recognition code, and clean up error messages with bed AD definitions 2009-12-02 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * allow the RS274X parser to catch multiple "blocks" within a single line Fixes a bug reported by Dave N6NZ. Multiple blocks are clearly allowed within the same line in the RS274X spec, so this was a big ommision in gerbv. 2009-11-22 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Fix sidebar bug where small scale and translations in X did not display a marker (bug and fix by mland, bug #2901881( 2009-11-05 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: apply patch from Uwe Bonnes to display the total aperture uses in the anaylsis tool (patch #2892537) 2009-11-01 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: * fix regression in FAST mode rendering with flashed apertures 2009-09-22 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerbv.c, src/gerbv.h: Modify our parsing behavior for RS-274D files Try to parse files we suspect as RS-274D because of missing apertures/etc (fixes bug 2864667), and create dummy apertures to roughly visualize the file if it is actually a RS-274D file (fixes feature request 566142). 2009-09-14 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: Fix FAST mode translation rendering error in Y direction (bug 2858102) 2009-09-10 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.h: Fix typo in last commit 2009-09-10 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.h: Apply patch from Don Wooten to make libgerbv easier to use from C++ 2009-08-20 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Fix bug 2841371 (segfault on edit->orientation with no layer loaded) 2009-08-17 Julian Lamb * jul AT jul-laptop dot (none) * * src/draw-gdk.c, src/draw.c: * fix another type to hopefully fix a step and repeat display bug 2009-08-16 Julian Lamb * jul AT jul-laptop dot (none) * * src/draw.c: * revert commenting accidentally pushed with last commit 2009-08-16 Julian Lamb * jul AT jul-laptop dot (none) * * : commit 5f9a34f321dadf544a35dd1625055f5a15f98e02 Author: Julian Lamb * jul AT jul-laptop dot (none) * Date: Sun Aug 16 19:51:03 2009 -0400 2009-08-09 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Removed what seems like a spurious line in man page. This error was reported in Debian Lintian system. 2009-08-14 Stefan Petersen * spe AT stacken dot kth dot se * * src/callbacks.c, src/export-rs274x.c: Updated URL's in the about screen and export comment to reflect the moved website. 2009-07-14 Julian Lamb * jul AT jul-laptop dot (none) * * src/draw.c: Test committing to new git system Clean up a small section of code and test the new git system 2009-07-10 Dan McMahill * dan AT mcmahill dot net * * configure.ac: welcome to 2.3A 2009-07-10 Dan McMahill * dan AT mcmahill dot net * * ChangeLog, NEWS, README-release.txt: update for gerbv-2.3.0 2009-07-10 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: draw.c and draw-gdk.c functions are used in gerbv.c which is part of libgerbv. Since we have -no-undefined, we require libgerbv to be fully self contained so move draw.c and draw-gdk.c over to libgerbv. While here bump the age in prep for a release. 2009-07-02 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: * apply patch from ineiev to fix small error in FAST mode arc rendering 2009-04-30 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/exportimage.c, src/gerbv.h: * rework export svg/pdf/ps functionality to export images with 1:1 scale. Previously we autoscaled vector outputs to a 8.5x11 paper size, but it makes more sense to export true 1:1 scale instead since vector output formats are usually scaled when viewing. Fixes bug #2784295. 2009-03-31 Dan McMahill * dan AT mcmahill dot net * * README, configure.ac, src/Makefile.am, test/Makefile.am: remove the logic for disabling cairo. Even when we render with gdk we use some of the cairo functions for transformation math. Also remove the libpng stuff since we now require cairo. 2009-03-28 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * cleanup a spurious comment accidentally left in from previous commit 2009-03-28 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * fix error in vertical scrollbar calculations when zoomed in. The coordinate systems gets a bit confusing, but I think it's correct now. Hopefully this fixes the bug spotted by Dan. 2009-03-27 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/exportimage.c, src/gerber.c, src/gerbv.c, src/interface.c, src/main.c, src/render.c, src/render.h: * remove all RENDER_USING_GDK and EXPORT_PNG ifdefs, since we're removing those compile options from gerbv (see recent gerbv-devel mailing list discussion). 2009-03-27 Dan McMahill * dan AT mcmahill dot net * * src/main.c: add the function name to all dprintf output 2009-03-27 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: add a --nsis-only and --skip-nsis option 2009-03-26 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c: * fix a few more issues in libgerbv where we only checked apertures >= 10, which potentially ignored some apretures in Excellon files (patch by Robert Spanton) 2009-03-24 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example1.c, doc/example-code/example2.c, doc/example-code/example3.c, doc/example-code/example4.c, doc/example-code/example5.c, doc/example-code/example6.c: * update libgerbv example source files with the updates command line text for compilation, since the change to the pkgconfig file now eliminates the need to specify gtk and glib 2009-03-24 Julian Lamb * thepurlieu AT gmail dot com * * src/libgerbv.pc.in: * add pkgconfig dependiencies to libgerbv to reduce some typing during compiling (patch by Robert Spanton) 2009-03-24 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c, src/gerber.c: * make sure image rotations stay within 0-270 range when saving and loading (patch from Todd Blackmon) 2009-03-19 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/interface.c: * restrict the user rotations to 0/90/180/270, since the RS274X spec only allows those values for image rotations. This fixes a bug where non-orthogonal rotations don't save correctly, and also some problems with zoom to fit (noticed by Todd Blackmon). * implement the layer rotation RS274X command in the GDK renderer. This fixes the rendering problem with test-layer-rotation-1.gbx (noticed by Todd Blackmon). 2009-03-09 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/export-rs274x.c, src/interface.c: * fix bug in saving rotations (radian/degree conflict) * add a menu option for changing the background * remove the bezeled frame from the statusbar box, since I think it looks better without. Feedback welcome, of course. 2009-03-08 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: * clean out some debug messages 2009-03-08 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/export-drill.c, src/export-rs274x.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/interface.h, src/main.c, src/render.c: * finish designing the "modify orientation" dialog window to meet GNOME HIG guidelines * add logic to dialog to match translation units to the currently selected units in the main window * MAJOR work to the GDK render code to be able to rotate/scale/mirror files *reasonably* well...there are fundamental limits to how good we can make the GDK render these advanced transformations * rework the autoscale code to account for user transformations * change the export to drill and export to rs274x code to save the user transformations to the file. Translations are actually calculated for every path, but rotations/scale/mirroring are all done by just using the RS274X commands. Maybe in the future we can implement it without the RS274X commands. 2009-03-07 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/export-rs274x.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/interface.h, src/main.c: * start adding the code for a layer translate/rotate/scale/mirror dialog box and functionality. There's still plenty of work to do, so excuse the mess in the meantime. 2009-03-06 Julian Lamb * thepurlieu AT gmail dot com * * src/export-drill.c, src/export-rs274x.c, src/gerb_image.c, src/gerber.c, src/gerbv.c: * fix bug when exporting drill files with tool numbers < 10 (noticed by Peter Clifton). Added additional cleanup logic to correct this issue when exporting files. * fix bug where HID attributes were not duplicated during the image duplication, causing double-free issues when exporting drill files sometimes * increase the cairo render quality slightly for circles. If anyone notices slowdowns, please report them. 2009-03-02 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c, src/gerbv.c: * fix possible write outside array bounds (patch by Todd Blackmon) * keep a running default color counter, to prevent closed and opened files from duplicating the default color of an opened layer (patch by Todd Blackmon) 2009-02-23 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c: * fix excellon drill export bug, which sometimes deleted the first element in the file during export (noticed by Peter Clifton, bug #2631416) 2009-02-17 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * fix polygon render optimization bug with polygons from Altrium package (fixes bug 2607102, reported by Todd Blackmon) 2009-02-17 Dan McMahill * dan AT mcmahill dot net * * src/drill.c, test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/test-drill-repeat-1.exc, test/run_tests.sh, test/tests.list: add support for the excellon R (repeat) command. Include a testsuite entry for this. 2009-02-16 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c, src/drill.c, src/drill_stats.c, src/gerbv.h: Add a total drill count for the whole board to the drill stats. Keep stats on 'R' codes (repeat) in the drill files. For now (until I complete implementing R support), give a warning that the R command is ignored. 2009-02-15 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c, test/inputs/test-drill-leading-zero-1.exc, test/inputs/test-drill-trailing-zero-1.exc, test/tests.list: * Add patch by user to fix drill parsing error with negative numbers using leading zeros (bug 2601828). Also, added two test cases to start building a test suite for the drill parser. 2009-02-10 Dan McMahill * dan AT mcmahill dot net * * src/run_gerbv.in: allow this script to work when called from outside the build directory 2009-02-10 Dan McMahill * dan AT mcmahill dot net * * src/gerber.c: allow 0 degree rotation 2009-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/amacro.c, src/draw.c, src/gerber.c, src/scheme.c: * allow macro parser to handle numbers without a zero in front of the decimal (fixes rendering bug spotted by Dan) * fix speedup code for rendering of certain macros * draw 0 width macro lines in cairo as 1 pixel wide * fix compiler warning in scheme.c 2009-01-29 Dan McMahill * dan AT mcmahill dot net * * src/main.c: do not return 1 when just doing a command line processing. make does not like that 2009-01-28 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/interface.c: * fix a bug where clicking on the message tab made keyboard accelerators stop working 2009-01-28 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/interface.c: * fix clipping bug when viewing files with image offsets (noticed by Dan) * add key accelerator hints in the menus for zoom and fit functions, and added accelerator "Q" for the object query (Dan feature request) 2009-01-22 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: note how to change the default SF download file 2009-01-22 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: update with the latest in how sourceforge does things 2009-01-22 Dan McMahill * dan AT mcmahill dot net * * configure.ac: bump rev after 2.2 branch 2009-01-22 Dan McMahill * dan AT mcmahill dot net * * ChangeLog, NEWS: update for 2.2.0 release 2009-01-22 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: add some notes about the NEWS file 2009-01-21 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: Remove spurious carriage returns from the generated libtool as well as the Makefiles. Repairs building under cygwin which stopped working recently. 2009-01-21 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: create a batch file for launching the installer. Makes testing on vista easier. 2009-01-21 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: bump revision from Julians last change 2009-01-21 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: note the use of GERBV_MAGIC_TEST_SKIP, and add --disable-update-desktop-database for the testing 2009-01-20 Dan McMahill * dan AT mcmahill dot net * * src/drill.c, src/lrealpath.c: silence a compiler warning 2009-01-19 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * fix small bug in min/max calculation code. Bug appeared on large rectangle aperture flashes, since we didn't previously account for differing height and width. Fixes bug noticed by Erik Winn. 2009-01-08 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/drill.c: Fix up parsing of files with trailing zeros in the case where it is a user specified format. Now for trailing zero suppression, you specify how many digits preceed the decimal point. Tested and verified to fix some real-world drill files generated by a commercial EDA tool. 2009-01-08 Dan McMahill * dan AT mcmahill dot net * * src/run_gerbv.in: add some LD_LIBRARY_PATH and LD_PRELOAD hacks to deal with the case where there may already be an installed libgerbv which is being picked up instead of the just-built local one. 2009-01-08 Dan McMahill * dan AT mcmahill dot net * * test/run_tests.sh: add a -g|--golden

option to specify a "golden" directory. This makes it easier to regen all the files into a local golden directory, make source code changes, and then run the testsuite against the previous golden files. This helps in cases where floating point math roundoff caused some tests to fail on some machines with the checked in golden files. 2008-12-05 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: add -no-undefined to the libtool link line for libgerbv. Requested by Cesar Strauss in SF patch # 2381914. 2008-12-03 Dan McMahill * dan AT mcmahill dot net * * configure.ac, src/Makefile.am: Use autoconf to check for windres in a way that will pick up the correct tool when cross-compiling. This should help with cross-compiling gerbv with windows as the target and something other than windows as the build host. Patch from Cesar Strauss. SF patch # 2381904. 2008-11-30 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: add a --nsis-only option that only creates the installer 2008-11-30 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: sync with pcb 2008-11-17 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example1.c, doc/example-code/example2.c, doc/example-code/example3.c, doc/example-code/example4.c, doc/example-code/example5.c, doc/example-code/example6.c: * add some hints to the example*.c files to help step the user through some common compilation problems. 2008-11-16 Julian Lamb * thepurlieu AT gmail dot com * * src/drill_stats.c, src/gerb_stats.c: * fix some warnings that popped up with gcc 4.3.2 2008-11-15 Dan McMahill * dan AT mcmahill dot net * * desktop/gerbv.desktop: change categories to be more appropriate and consisten with the rest of gEDA 2008-11-15 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c, src/callbacks.c, src/drill.c, src/drill_stats.c, src/gerb_file.c, src/gerbv.c, src/project.c, src/render.c: add missing #include "common.h" to get __FUNCTION__ on non-gcc systems. 2008-10-16 Julian Lamb * thepurlieu AT gmail dot com * * src/pick-and-place.c: * fix pick-and-place bounding box calcs. I think this should cover all the cases now...again, let me know if you see any issues with CVS. 2008-10-16 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c, src/gerber.c: * add bounding box code to drill parser (pick-and-place still needed) * fix a few small bugs in the speedup code 2008-10-16 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/gerber.c: * fix autoscale bug caused by latest optimizations. Things look like they should work again, so please report any problems at this point. 2008-10-15 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/gerb_image.c, src/gerber.c, src/gerbv.c, src/gerbv.h: * pre-calculate a bounding box for every object during file parsing, and use the box dimensions to determine if that object will even be rendered inside the visible window. This approach allows for slightly better speed than the previous version, since it now includes polygons in the optimizations. My test boards show about a 25% speed improvement with this new method. The autoscale feature is somewhat broken right now...excuse the mess while I finish debugging things. * also, apply the optimizations to "FAST" render mode as well...looks to be about a 3x speedup when zoomed in to a board. 2008-09-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * make sure optimizations work with offsets and justifications (rarely ever used). 2008-09-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * comment out the "zoomed out" optimizations before the 2.1 Windows binary is built. 2008-09-09 Dan McMahill * dan AT mcmahill dot net * * BUGS: Remove the windows printing bug. Building with a new enough gtk makes that go away (it was a gtk bug in the first place). Remove the comment about windows rendering being slow. Currently we don't have measured data to support that when using cairo rendering and we have a few data points that shows it is on par with linux. 2008-09-07 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * add a few tweaks to the optimizations 2008-09-07 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw.c, src/draw.h, src/gerbv.c, src/render.c: * implement some basic render speedups in the cairo code (see mailing list for explanations) 2008-09-06 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerbv.c: * tweak Dan's benchmark code to render to an off-screen entity using a fixed resolution. Also, run both fast and normal benchmarks together and output the speed (took out high-quality, since it's roughly the same as normal it seems). 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * configure.ac, src/callbacks.c: add missing time.h 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * acinclude.m4: add acinclude.m4 which has some macros needed for the relocation patch 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c, src/callbacks.h, src/interface.c: add a basic rendering benchmark 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: When loading/saving project files, add a filter to show just .gvp (Gerbv Project) files or all files. Hopefully this will help promote the use of .gvp as a project file extension. The windows installer already uses this as a registered file type. The gnome/kde desktop integration still needs to happen. 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * configure.ac, desktop/Makefile.am, src/Makefile.am, src/gerb_file.c, src/gerbv.c, src/gerbv.h, src/lrealpath.c, src/lrealpath.h, src/main.c, src/project.c: make gerbv be relocatable. By this I mean ./configure --prefix=/tmp/gerbv make make install mv /tmp/gerbv /opt/gerbv or similar will now work. This makes it possible for any packaging system that provides the user the ability to choose where a binary install goes to actually work. This includes the native solaris package manager, windows installers, and just a plain old "tar it up and extract it some where else". This works by determining where init.scm lives relative the binary based on any configure flags that control things like the exec_prefix or datadir. While here, allow the GERBV_SCHEMEINIT to "win" if set. This is more in line with how most programs work. The environment variable gives a hook to override the default behaviour. 2008-09-06 Dan McMahill * dan AT mcmahill dot net * * configure.ac: correct version number on trunk 2008-09-06 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac: Update revision to 2.1.0 in configure.ac for release. 2008-09-06 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am: Set shared library version in prep for upcoming 2.1.0 release. 2008-09-06 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, NEWS: Update NEWS and ChangeLog in prep for 2.1.0 release. 2008-09-04 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: .gvp is now the extension for gerbv project files 2008-09-04 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: cause the start menu shortcut to startup in the users "My Documents" (XP/2k) or "Documents" (vista) area. 2008-09-04 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am, win32/gerbv.nsi.in, win32/registerExtension.nsh: add file extension associations. Now double clicking on .prj, .gbr, .gbx, .cnc, .ncd, and .xy files will launch gerbv. 2008-09-04 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: make sure the zlib dll ends up in the right place. This lets us click on a gerber file and have gerbv launch correctly 2008-09-04 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: Get the uninstaller to work with vista. Thank you microsoft for that little bit of joy :( Add in some commented out stuff that can hopefully be used later for associating file types. 2008-09-03 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: add the BUGS and COPYING links to the uninstall section. 2008-09-03 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: If --debug is added twice, the second one triggers --enable-debug being passed to the configure script. 2008-09-03 Dan McMahill * dan AT mcmahill dot net * * src/interface.c: remove another obsolete #if !defined(MINGW32). Now log messages actually show up in the messages window under windows too. No change on non-win32 systems. 2008-09-02 Stuart Brorson * sdb AT cloud9 dot net * * src/main.c, src/render.c: Applied Ineiev's latest patch to fix X11 functionality. Also updated copyright string emitted by gerbv --version. 2008-08-31 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * allow user to translate a single file from the command line (previously, it only worked on >1 file) 2008-08-31 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * fix image centering when using --border command line argument 2008-08-31 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * fix translation of files using command line interface (bug noticed by Stuart) 2008-08-30 Dan McMahill * dan AT mcmahill dot net * * src/render.c: remove a horribly out of date #if !defined(__MINGW32__). Only affects windows. 2008-08-29 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * add Joerg's patch instead, since it's better 2008-08-29 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/main.c: * set "save as" dialog to start in the current directory of the layer to be saved/exported * add a "Loading project..." message to stdout when loading a project from the command line 2008-08-29 Dan McMahill * dan AT mcmahill dot net * * README-release.txt, configure.ac, src/project.c: Add versioning to the project files. I have verfied reasonable behavour with a project file that has: - missing version (assumes a default "old" version) - version that is current (works) - version that is newer than current (issues a warning and tries to load the file anyway using the latest known version) - version that is not too new but it is not one we know about (issues a warning and tries anyway using a default assumption of version) - version string that is simply invalid (syntactically) (issues a warning and tries to anyway using a default assumption of version) As part of this, fully document how file format version changes are handled and also fully document the exact policy/procedure for gerbv versions on the cvs trunk as well as on cvs release branches. 2008-08-29 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c: * correct some namespaces in the recent patch by ineiv 2008-08-29 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/main.h, src/render.c, src/render.h: Measure tool now works with mouse zooms and the measure line is persistent. Patch submitted by Ineiev. 2008-08-28 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * don't save layers when saving a project file * fix regression where relative file paths were not used during project saves 2008-08-28 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c, src/main.c: * add some logic to the project loading code to load the layers sequentially, ignoring any skipped layer numbers. This should help make gerbv more robust against faulty project files. 2008-08-28 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Move "are you sure" dialog to before file chooser dialog is run in open_project. This is the more logical order: Warn the user first, and then let him chose the file. The other order didn't work in the case where the user hit "cancel" in the file chooser, because it would ask "are you sure" after the user hit cancel. 2008-08-28 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * try and alternate method of increasing the last_loaded int to try and stop Stuart's segfault 2008-08-28 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * fix a GTK warning on GDK-only builds 2008-08-27 Julian Lamb * thepurlieu AT gmail dot com * * src/render.c: * fix building with --disable-cairo, spotted by Erik 2008-08-27 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * fix segfault noticed by Stuart 2008-08-27 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c, src/project.c: * fix segfault noticed by Joerg during opening of project files 2008-08-27 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c, src/drill.c: repair the saving/loading of drill layers. HID attributes associated with the file format have to have names which are valid scheme variable names which precludes a name with a space in it. 2008-08-27 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/callbacks.c: Simplify the authors/bugs handling a bit. No need for these to be in standalone compiled files which ends up requiring extra declarations and producing global variables. While here correct a broken depenendency in my initial version. 2008-08-27 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: make a call to awk more portable so that it works with old sunos-5.8 /usr/bin/awk 2008-08-26 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Move all icons to the project load/save menu items since they correspond to the load/save buttons on the toolbar. 2008-08-26 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: Fix bug noticed by Joerg, in which buttons on toolbar were inconsistent w.r.t. loading/saving project files vs. layers. Now all buttons operate on project files. Also incorporate a few other fixes. 2008-08-26 Julian Lamb * thepurlieu AT gmail dot com * * src/export-drill.c: * fix drill export bug spotted by Erik 2008-08-26 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/interface.c: * update src/Makefile.am for Stuart * add control-O accelerator for open layer 2008-08-26 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.h: * add cairo.h include to fix build problem noticed by ineiev 2008-08-26 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am: Check in fixes required to get gerbv to compile reliably with bugs.c and authors.c functionality. 2008-08-26 Stuart Brorson * sdb AT cloud9 dot net * * AUTHORS, BUGS, NEWS, README, README-release.txt, src/Makefile.am, src/callbacks.c, src/callbacks.h, src/interface.c: Made BUGS file display one of the help menu options. This builds upon the changes made by Dan. 2008-08-26 Dan McMahill * dan AT mcmahill dot net * * AUTHORS, src/Makefile.am, src/callbacks.c: update the AUTHORS file and use the generated authors.c to fill in the 'credits' screen. 2008-08-26 Dan McMahill * dan AT mcmahill dot net * * test/run_tests.sh: Add a special environment variable, GERBV_MAGIC_TEST_SKIP, which if set to 'yes' will cause the testsuite to simply return with a "all passed" indication. This lets you debug packaging issues around 'make distcheck' without being stuck on 'make check' failures. While ignoring failures in the testsuite is not good, the reality of how the checks currently work is that variations in the cairo version and/or CPU architecture can cause false failures in the testsuite which end up being a barrier to more fully testing the build system. This variable should be used carefully and thoughtfully. 2008-08-26 Dan McMahill * dan AT mcmahill dot net * * Makefile.am: Include BUGS and quit including an obsolete readme in the distfile. 2008-08-25 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * prevent duplicate objects from being selected 2008-08-25 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/render.c, src/render.h: * add some more sanity to the selected object message, and when/how we remove items from the array * also fixes a bug in FAST mode, where unloading all layers when items are selected causes noticeable graphics glitches 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am: fix some typos in generation of the dos format versions of COPYING and BUGS 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * BUGS: associate a cairo version number (1.6.4) with the cairo printing bug under windows 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * BUGS: remove the version line since it is just yet another place to keep a version updated 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: generate a bugs.c and authors.c file which are generated at build time from $(top_srcdir)/BUGS and $(top_srcdir)/AUTHORS. These can be used to keep the authors list and bugs list in 1 place but display from multiple places. 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: set the web site in the about dialog 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am, win32/gerbv.nsi.in: On win32, install a dos version (\n -> \r\n) of the top level BUGS and add to the start menu group. While here do the same for the top level COPYING. 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: add a reminder to review and update the BUGS file prior to a release 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: repair a call to the cancel/ok dialog. The do not show again argument is not a boolean but rather a pointer to a boolean. 2008-08-25 Dan McMahill * dan AT mcmahill dot net * * src/interface.c: protect against a null pointer dereference 2008-08-25 Julian Lamb * thepurlieu AT gmail dot com * * : * update the golden files that changed after the recent oval->oblong render change 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am: Remove README-Pick-and-Place-search_parts.txt from release tarball since it was removed as obsolete. 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * README-Pick-and-Place-search_parts.txt: Removed obsolete README talking about PnP functionality which was removed in 2006. 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am: Add BUGS file to extra dist in Makefile.am. 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * BUGS: Added BUGS file to CVS. 2008-08-24 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/attribute.h, src/drill.c, src/gerb_image.c, src/gerbv.c, src/gerbv.h, src/project.c: * move two of the attribute destroy functions to libgerbv, where they are needed 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Added warning dialog if the user has previously edited the drill layer, and then does an "edit file properties". 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c, src/interface.c: Moved project related stuff in "file" menu to top section, and layer stuff to second section. This is because "new" is traditionally the top menu item, and it creates a new project. Therefore, all project stuff must be at top. Also did minor refactoring of revert function calls to eliminate a compiler warning. 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c, src/interface.c: Moved "revert" menu item to section holding "project" items (because it affects all layers, not just one). Also make both "revert project" and "revert layer" actions reset the dirty flag and reset the layer tree appropriately. 2008-08-24 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c, src/attribute.h, src/drill.c: make sure we always make local copies of the attribute lists in a way that allows us to destroy them later correctly. 2008-08-24 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.h: protect against multiple inclusions 2008-08-24 Dan McMahill * dan AT mcmahill dot net * * src/project.c: fix an obvious typo in the last commit. why did this still run??? 2008-08-24 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c, src/gerb_image.c, src/gerbv.h, src/project.c: fill in the destroy code for HID attribute lists 2008-08-24 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c: fill in the destroy code for attribute lists 2008-08-24 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Fix minor bug in which there were overlapping keyboard accelerators for different options in "analyze" menu. 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * after "saving as", update the file path in the project struct to make sure the layer name is updated and future "save" actions will save to the new position 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c* update dirty flag in some places. I think Stuart did this earlier in libgerbv, but I removed them from there and forgot to put them back into callbacks.c 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * fir the rendering of obround flashed apertures in cairo rendering 2008-08-23 Stuart Brorson * sdb AT cloud9 dot net * * src/draw.c: Make pdf export show oblong objects as a line with rounded ends, instead of an oval. Reviewed by Julian. 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * example/eaglecad1/top-cop.gbx: * revert an unintentional change to top-cop.gbx that happened during my testing 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * example/eaglecad1/top-cop.gbx, src/interface.c: * fix bug where save projet button read "save layer as" 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerbv.c: * try and improve Windows print quality 2008-08-23 Dan McMahill * dan AT mcmahill dot net * * win32/gerbv.nsi.in: point at correct location for Readme.txt 2008-08-23 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * fix printing translation bug noticed by Dan 2008-08-22 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * small change to an alert dialog to bring it inline with the visual style of others 2008-08-21 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: make sure we extract GPL v2 as well as v3 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/pick-and-place.c: * fix more bugs in PNP rendering orientation. LED example now works somewhat. I think I'll leave things as they are now for 2.1...it works "well enough" 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/pick-and-place.c: * some orientation fixes for PNP logic (noticed by Stuart). However, LED.xy has problems now...it looks like its row order isn't correctly recognized by gerbv. 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * change default render mode to cairo on Windows builds, since all data points seem to show it renders faster than GDK. This should help speed up the speed for the casual user that doesn't change the render mode. 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/main.c: * more fixes with the project writing freeing logic 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/project.c: * fix double-freeing of project struct when writing to file 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/main.c, src/project.c, src/project.h: * actually call the project_destroy functions committed in the last commit 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/callbacks.c, src/gerb_image.c, src/gerbv.h, src/project.c: * more leak fixes, including a stub for the HID_attribute free code... Dan? 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerb_image.c, src/gerber.c, src/gerbv.c, src/main.c, src/render.c, src/render.h: * more memory leak fixes, including a sizable cairo rendering leak. Again, lots of code touched, so testing is needed. 2008-08-21 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Added back "No object selected" dialog box when the user asks for an object properties report, but nothing is selected. 2008-08-21 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Change g_strdup_printf to g_string_printf and g_string_append_printf as recommended by Julian to help clean up memory leaks. 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerbv.h: * fix another memory leak in the image_destroy function 2008-08-21 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerber.c: * revert an erroneous fix in the simplified macro logic which caused segfaults 2008-08-20 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/drill_stats.c, src/gerb_image.c, src/gerb_stats.c, src/gerber.c, src/gerbv.c, src/gerbv.h, src/main.c, src/render.c, src/render.h: * fix lots and lots of memory leaks * code routines to destroy stats structs, and also to free all rendering data 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32, win32/gerbv.nsi.in: update some of the licenses (welcome to GPL v2 and v3 split) 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * autogen.sh: partially revert the previous. We still need to clear out autom4te.cache since it can cause problems 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * Makefile.am, README-win32.txt, win32/build_gerbv, win32/extract_gtk_win32, win32/gerbv.nsi.in: minor tweaks to allow building with the latest gtk/win32 builds 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.c: * fix some (not all) of the GDK clipping issues on high zoom. Please test out FAST rendering and let me know if anything is broken. Polygons still cause some problems at high zooms, but there's not much we can do...if you want nice rendering, don't use FAST. :) * add some message bar messages to help make sure users know about selection only working on the active layer 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/callbacks.c, src/render.c: * delete debug flag comment in attribute.c * limit max zoom level to help prevent clipping in GDK rendering at high zooms. My quick tests still show some clipping (GDK only) at the highest allowable zoom, but I don't think we should limit the zoom levels any more. Feedback is requested. 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c: * more miscellaneous GUI cleanup 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/drill.c, src/gerbv.h, src/interface.c: * more miscellaneous dialog cleanups 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * fix tearoff button bar size after being torn off * add some stock icons to various menu items to make them prettier 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * utils/umap: fill in everyones name 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * README-release.txt: note the shared library versioning requirement 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * INSTALL.MINGW.WIN32: remove obsolete mingw/win32 building document. 2008-08-19 Dan McMahill * dan AT mcmahill dot net * * INSTALL: remove the standard gnu boilerplate install doc. It is put in place by autogen.sh 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/interface.c: * change pointer tool to default, since it now actually does something * tweak all dialog messages and look to better meet GNOME HIG 2008-08-19 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c, src/gerbv.h, src/main.c: * fix command line color forcing, which was broken a few months ago * added a new library function to allow the user to force a color during file loading 2008-08-18 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/export-rs274x.c, src/gerb_image.c, src/gerber.c, src/gerbv.h, src/pick-and-place.c, test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/test-layer-step-and_repeat-2.gbx, test/tests.list: * fix render logic for polygon draws, eliminating the step and repeat segfault bug #2005074 * add a test case for the step and repeat bug * small fixes to the object property display code to fix a segfault and improve info accuracy 2008-08-18 Stuart Brorson * sdb AT cloud9 dot net * * Structs.txt: Change current_index -> curr_index. 2008-08-18 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Fixed bug in which you could select objects on an invisible layer. 2008-08-17 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/drill.c, src/gerber.c: Free strings created using g_strdup_printf in error and statistics gathering code. 2008-08-17 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * update golden files using cairo 1.6 rendering in preparation for polygon internal switch * make sure aperture stat warnings aren't issued during polygon fills, since there's no aperture used for them 2008-08-16 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h: * change object display code to use g_message(), and eliminate custom code to do the same thing 2008-08-16 Dan McMahill * dan AT mcmahill dot net * * autogen.sh: don't delete log files and assorted other generated files as part of the autogen.sh step. That should be left for things like 'make distclean'. Noted by DJ on gerbv-devel. 2008-08-16 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/textbox.c, src/textbox.h: * combine recent object property display code with the existing log code, eliminating textbox.[ch] * fix several memory leaks in the display callback function 2008-08-15 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * fix bug in revert function which kept it from working properly on >1 file 2008-08-15 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerbv.c: * remove callbacks function calls from gerbv.h, since it is in libgerbv and can't use GUI functions 2008-08-15 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: Minor changes to displayed text. 2008-08-15 Stuart Brorson * sdb AT cloud9 dot net * * Structs.txt: Added more info to file. 2008-08-15 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Misc fixes and updates. 2008-08-14 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/render.c: Output layer number alongside file name in general tab of Gerber report window. This allows users to cross-correlate the report to the aperture def list given in the aperture def tab. 2008-08-14 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/draw-gdk.c, src/draw.c: Make Gerbv report names of all files processed when generating reports. Filenames are presented on general tab of reports window. 2008-08-14 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerb_stats.c, src/render.c: Made selected object properties report also emit aperture type. 2008-08-14 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/draw-gdk.c, src/draw.c, src/gerb_file.h, src/gerb_stats.c, src/gerber.c, src/gerbv.c, src/gerbv.h: Added filename to gerb_file_t struct so that it could be reported from various reporting facilities. Also modified aperture D code report. Moved D count to separate tab for 10 <= D <= MAX and fixed reporting so gerbv now reports the number of times a particular aperture has been *used*, which is probably more interesting than the previous reporting quantity. Note that I still need to put the layer filename info into report for each code (G, D, M, etc), and to separate all reports by layer. 2008-08-14 Stuart Brorson * sdb AT cloud9 dot net * * Structs.txt: Added more info about structs used in program. 2008-08-14 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/run_gerbv.in: Add a wrapper script to use for launching gerbv prior to installation. This lets gerbv properly find init.scm even with libtool and also with building outside of the source tree. 2008-08-13 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c: take the previous commit one step further. If the "auto" button is checked none of the other widgets will be sensitive. 2008-08-13 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c: put a rather ugly hack in place where if the first entry in an attribute list is a boolean *and* its name is "auto" then the callbacks for everything else will cause it to be unchecked. It's an ugly hack but it is the best we have right now since the current framework does not allow for capturing dependencies between attributes. 2008-08-13 Dan McMahill * dan AT mcmahill dot net * * src/attribute.h, src/gerbv.h: move a comment back with the code it goes with 2008-08-13 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Fixed bug in which aperture types were misreported in the analyze -> reports stuff. The problem was that the enum of possible apertures contained in gerbv.h was updated, but the list of strings naming the apertures in callbacks.c was not. Also added exposure type to stuff reported by the "object properties" report. 2008-08-13 Dan McMahill * dan AT mcmahill dot net * * src/textbox.c: add missing header, remove unused variable. Gets rid of gcc warnings 2008-08-13 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.h: Made "display object properties" display file name *and* layer of each item selected. 2008-08-13 Stuart Brorson * sdb AT cloud9 dot net * * Structs.txt: A quick hierarchical outline of the datastructures involved in a gerbv project, and how they fit together. All gerbv hackers are invited to add to this as they work on the project. 2008-08-13 Stuart Brorson * sdb AT cloud9 dot net * * src/gerbv.h, src/interface.c: Changed references to program's name from "Gerber Viewer" to "Gerbv". 2008-08-13 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c, src/interface.h, src/render.c: Added new dialog box which only displays info and presents an "OK" button. Hooked it up to situations where the user needs an error dialog box (e.g. trying to get a report on selected objects when nothing is selected). Also some minor cleanups to eliminate compiler and GTK warnings. 2008-08-12 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Menu cleanups. Add "Edit" menu to top menubar and add "delete" to it. Add "get object properties" to "analyze" menu. Other random fixes. 2008-08-12 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: A couple of wording changes in text shown to the user. Clarified the meaning of the report given by the analysis windows, and fixed the second "display object properties" to read "edit object properties" (which is what it does). 2008-08-11 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Fixed bug in which clicking on empty drawing area with pointer tool would cause segfault. 2008-08-11 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am, src/callbacks.c, src/textbox.c, src/textbox.h: Committed DJ's patch which implementes reporting info about selected object's aperture. 2008-06-29 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Minor update to layer_dirty functionality. 2008-06-29 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.h, src/interface.c, src/main.c: Remove project_dirty and make gerbv store all layers when you do file->save project. Also make sure gerbv updates the layer_dirty flags when you do "save project". 2008-06-29 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c, src/gerbv.h, src/interface.c: Implement layer_dirty flag and bind it into file save mechanism. 2008-06-29 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/interface.c: * display the layer name in italics and preceded by a "*" to show unsaved layers (waiting for Stuart to commit the dirty flag changes) 2008-06-08 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c: * remove GDK rendering error messages for known GDK problems (fix bug 1984194) 2008-05-25 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.h, src/draw.h, src/exportimage.c, src/gerber.h, src/interface.c: * clean up some --disable-cairo compile problems * remove the pointer icon from --disable-cairo builds, since there's no way to figure out what is clicked without cairo * fix focus problem to prevent the NEW button from being focused on startup 2008-05-24 Julian Lamb * thepurlieu AT gmail dot com * * src/drill.c: * commit patch from Erik Winn to stop gerbv from complaining during TCST lines in Excellon drill files. The TCST command is a valid one and shouldn't flag as an error. 2008-05-23 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example4.c, doc/example-code/example5.c: * fix a few example source files based on the recent enum namespace conversion 2008-05-23 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/drill.c, src/drill.h, src/drill_stats.h, src/interface.c: * fix a couple accidental string replacements from the last commit 2008-05-23 Julian Lamb * thepurlieu AT gmail dot com * * src/amacro.c, src/amacro.h, src/attribute.c, src/attribute.h, src/callbacks.c, src/callbacks.h, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/drill.c, src/drill.h, src/drill_stats.c, src/drill_stats.h, src/export-drill.c, src/export-rs274x.c, src/gerb_image.c, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/gerbv.h, src/interface.c, src/main.c, src/main.h, src/pick-and-place.c, src/pick-and-place.h, src/project.c, src/project.h, src/render.c, src/render.h, src/tooltable.c: * finish converting all enums and structs over to use gerbv_ namespace * add more documentation 2008-05-23 Julian Lamb * thepurlieu AT gmail dot com * * doc/Doxyfile.nopreprocessing, doc/example-code/example6.c, src/amacro.c, src/amacro.h, src/attribute.c, src/attribute.h, src/callbacks.c, src/callbacks.h, src/common.h, src/csv.c, src/csv.h, src/csv_defines.h, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/drill.c, src/drill.h, src/drill_stats.c, src/drill_stats.h, src/dynload.h, src/export-drill.c, src/export-rs274x.c, src/exportimage.c, src/gerb_file.c, src/gerb_file.h, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/gerbv.h, src/gerbv_icon.h, src/icons.h, src/interface.c, src/interface.h, src/main.c, src/main.h, src/opdefines.h, src/pick-and-place.c, src/pick-and-place.h, src/project.c, src/project.h, src/render.c, src/render.h, src/scheme-private.h, src/scheme.c, src/scheme.h, src/tooltable.c: * assign all files to a module (doxygen documentation) * more namespace cleanup for enums * more documentation 2008-05-22 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example6.c, src/gerbv.h: * a couple small fixes to example6.c * correct the new render type enum 2008-05-22 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example6.c, src/gerbv.h: * add example6.c, which is an extensive example of how to embed a custom gerber render widget inside another application...also a great cairo starting reference for anyone who wants to learn the basics of cairo. * add more documentation and do some reorganizing of gerbv.h 2008-05-22 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/amacro.c, src/amacro.h, src/attribute.c, src/attribute.h, src/batch.c, src/batch.h, src/callbacks.c, src/callbacks.h, src/common.h, src/csv.c, src/csv.h, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/drill.c, src/drill.h, src/drill_stats.c, src/drill_stats.h, src/dynload.c, src/dynload.h, src/export-drill.c, src/gerb_file.c, src/gerb_file.h, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerb_transf.c, src/gerb_transf.h, src/gerber.c, src/gerber.h, src/gerbv.h, src/gerbv_icon.h, src/icons.h, src/interface.c, src/interface.h, src/main.c, src/main.h, src/opdefines.h, src/pick-and-place.c, src/pick-and-place.h, src/render.c, src/render.h, src/scheme-private.h, src/scheme.c, src/scheme.h, src/tooltable.c: * add doxygen header info to all files * remove batch.[ch] and eliminate gerb_transf.[ch] to help clean up the source tree 2008-05-21 Stuart Brorson * sdb AT cloud9 dot net * * src/export-rs274x.c: Change www.gerbv.org -> gerbv.sf.net in G04 codes emitted by RS-274X exporter. 2008-05-21 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/project.c: * eliminate random blank lines written to stdout during project loading * update Stuart's latest commit since mainProject is now a pointer 2008-05-20 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/export-rs274x.c: Fix program behavior so that when a user saves a page, then it is no longer dirty. Also augment G04 message placed into RS-274X files to point to the gerbv project home page. 2008-05-19 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example5.c, src/gerb_image.c, src/gerber.c, src/gerber.h, src/gerbv.h: * add some basic drawing functions to libgerbv (draw line, arc, rectangle) * add example5.c demonstrating basic drawing using libgerbv * more documentation 2008-05-18 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.h: * add a ifdef to make sure gerbv.h is usable in libgerbv 2008-05-18 Stuart Brorson * sdb AT cloud9 dot net * * src/gerbv.h: Add '#include "config.h"' so configure time flags are visible inside gerbv.h. 2008-05-18 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example2.c, doc/example-code/example4.c, src/batch.c, src/callbacks.c, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/drill.c, src/drill.h, src/export-drill.c, src/export-rs274x.c, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerb_transf.c, src/gerb_transf.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/gerbv.h, src/interface.c, src/main.c, src/main.h, src/pick-and-place.c, src/pick-and-place.h, src/render.c, src/render.h: * change all gerb_* namespace to gerbv_* namespace, clarifying the libgerbv API. 2008-05-18 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/Makefile.am, doc/example-code/example1.c, doc/example-code/example2-input.gbx, doc/example-code/example2.c, doc/example-code/example3-input.gbx, doc/example-code/example3.c, doc/example-code/example4-input.gbx, doc/example-code/example4.c, src/batch.c, src/callbacks.c, src/exportimage.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/main.c, src/project.h: * more namespace fixes * added 3 more example source files to show the libgerbv API * more documentation on functions and structs 2008-05-18 Julian Lamb * thepurlieu AT gmail dot com * * doc/example-code/example1.c, src/drill.c, src/export-rs274x.c, src/gerb_image.c, src/gerber.c, src/gerbv.c, src/gerbv.h, src/main.c, src/pick-and-place.c: * more namespace reorg for functions used by libgerbv * more documentation for the key functions and structs 2008-05-17 Julian Lamb * thepurlieu AT gmail dot com * * configure.ac, doc/Makefile.am, doc/example-code/Makefile.am, doc/example-code/example1-input.gbx, doc/example-code/example1.c, src/attribute.c, src/attribute.h, src/callbacks.c, src/drill.c, src/export-drill.c, src/export-rs274x.c, src/gerbv.c, src/gerbv.h, src/main.c, src/main.h, src/project.c, src/render.c: * Do some cleanup to get libgerbv usable (a few functions were needed by libgerbv previously). * Change mainProject to use a pointer, and move all gerbv_project_t initialization to a function called gerbv_create_project. This affected almost all the GUI source code files. * Add a first example file to show how to use libgerbv in other software (doc/example-code/exampl1.c). * Start filling in the documentation inside gerbv.h. To create the documentation, run "doxygen doc/Doxyfile.nopreprocessing" from the root directory, and then view the documentation at doc/html/index.html. 2008-05-17 Julian Lamb * thepurlieu AT gmail dot com * * doc/Doxyfile.nopreprocessing, src/exportimage.c, src/gerbv.h, src/pick-and-place.c: * start cleanup of gerbv.h and remove extra #ifdefs so that other software can use gerbv.h and not worry about setting up any defines 2008-05-16 Dan McMahill * dan AT mcmahill dot net * * src/gerb_file.c: use G_DIR_SEPARATOR instead of trying to figure it out ourselves (incorrectly) 2008-05-16 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * fix scrollbar handle positions, which were apparently broken during the rendering struct changes several months ago. 2008-05-16 Julian Lamb * thepurlieu AT gmail dot com * * INSTALL, src/export-rs274x.c, src/gerb_image.c: * skip over initial net when merging or exporting files. The initial net is always zero based on the way we parse files. 2008-05-14 Stefan Petersen * spe AT stacken dot kth dot se * * src/drill.c: Fixed bug #1963618 reported by Lorenzo Marcantonio regarding missing setlocale in drill_parse. Also cleaned up some mess while file was in my editor. 2008-05-11 Dan McMahill * dan AT mcmahill dot net * * autogen.sh: add some extra output about the versions of the different tools which are encountered. 2008-05-11 Dan McMahill * dan AT mcmahill dot net * * configure.ac: use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL as the former is the prefered name. 2008-05-09 Dan McMahill * dan AT mcmahill dot net * * README-cvs.txt: add a note about needing libtool 2008-05-09 Dan McMahill * dan AT mcmahill dot net * * autogen.sh: if libtoolize doesn't exist, spit out an error to that effect 2008-05-09 Dan McMahill * dan AT mcmahill dot net * * INSTALL, README-release.txt, autogen.sh, configure.ac, src/Makefile.am, src/libgerbv.pc.in: add the build system changes to break out libgerbv into a library that the main program links to 2008-05-05 Stuart Brorson * sdb AT cloud9 dot net * * src/exportimage.c: Tweaked invocation of gerbv_render_to_pixmap_using_gdk so I could build gerbv using only GDK (no cairo). 2008-04-30 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.h, src/interface.c, src/interface.h: Made "Don't show this dialog again" checkbox optional when you call interface_get_alert_dialog_response. This fixes issue where not all alerts should show the checkbox. Also added "Are you sure" dialog when user tries to quite after making changes. 2008-04-29 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/main.c, src/render.c, src/render.h: Added "Do not show this dialog again" checkbox to "are you sure?" delete dialog. 2008-04-27 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/amacro.c, src/amacro.h, src/callbacks.c, src/drill.c, src/drill_stats.h, src/exportimage.c, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.h, src/gerber.c, src/gerbv.c, src/gerbv.h, src/main.c, src/main.h, src/project.c, src/project.h, src/render.h, src/tooltable.c, src/tooltable.h: Finish cleaning up library split, eliminating all compile errors. Move project.[ch] and all related scheme files to the "application", since putting these in libgerbv is not really needed. 2008-04-20 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/amacro.h, src/attribute.c, src/callbacks.c, src/csv.c, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/drill.c, src/drill_stats.c, src/drill_stats.h, src/export-drill.c, src/export-drill.h, src/export-rs274x.c, src/export-rs274x.h, src/exportimage.c, src/exportimage.h, src/gerb_aperture.h, src/gerb_error.h, src/gerb_file.c, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/gerbv.h, src/gerbv_screen.h, src/interface.c, src/log.c, src/log.h, src/main.c, src/main.h, src/pick-and-place.c, src/project.c, src/project.h, src/render.c, src/render.h, src/setup.c, src/setup.h: Big commit to start separating gerbv into a library and the command line/gui application. Also, clean out a bunch of dead code that wasn't needed anymore, and start moving all the important structs and function prototypes to gerbv.h to make a clean API for future library use. 2008-04-17 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Hook up basic move object function (available through right-click menu). 2008-04-17 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerb_image.c: Add a 1 pixel grey border around the color picker boxes to make sure that the color stands out on a light background even with a light color. 2008-04-17 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c: Make sure created "panes" can actually be saved to a new rs274x file correctly. 2008-04-17 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/gerber.h: Get basic "window-paning" tool working (currently available through the right-click popup menu under "reduce area"). Next step is to work on the gui hookups to actually modify the parameters to the window-paning. 2008-04-16 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerber.c: Replace a lot of mallocs with g_new0 calls, since it saves quite a few lines of code. Start splitting out some functions from the parser which will be needed in the new drawing code. 2008-04-16 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c: Make sure we "compress" all the aperture numbers in the first panelization file too, giving cleaner output files. 2008-04-15 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: Fix bug #1943409, which was noticed by Stefan. One of the polygon parsing optimizations I did earlier turned out to be wrong in certain rare cases. It has now been fixed with an extra check to still reduce spurious polygon start/stops in most cases, but correctly flag the rare cases which actually use the D02 flag to start a new polygon. 2008-04-14 Julian Lamb * thepurlieu AT gmail dot com * * src/render.c: Fix compiler error. 2008-04-13 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/render.c, src/render.h: Minor mods, including adding #ifndef RENDER_USING_GDK, to facilitate compilation on boxen lacking cairo. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c: Fix smalle regressing in selection code. Also increase the pixel limit between using the click and drag selection options, and make the clicking more sensitive. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/gerb_image.c, src/gerb_image.h, src/interface.c, src/render.c, src/render.h: Hook up escape key to clear selection buffer. Temporarily add a menu item for "reduce area" (window-paning) and start working on code to do this. Also, create code stubs for object moving logic. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c, src/gerber.c: Make some experimental changes to the gerber parser, and not even make a new net for aperture=OFF lines. This results in about a 5% memory savings, rendering speedup, and makes deleting/modifying objects much cleaner since there isn't a hanging D02 line before every object. Please speak up if anything is broken regarding the parsing/rendering...the test suite still passes 100% after this change. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c, src/render.h: Allow user to control or shift click to add items to the selection buffer. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/gerbv_screen.h, src/interface.c, src/render.c: Add a quick right-click menu for the "pointer" tool per Stuart's suggestion. Hook up the delete menu option to the delete code. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/export-rs274x.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c: Restructure the way deleted nets are handled. Remove a portion of the polygon parsing code, since I suspect it was added due to a typo in the Gerber manual (Stefan, maybe you can double-check). This code was adding many wasted G36 and G37 codes in the image. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/gerb_image.c: Allow polygon fills to se selected/deleted/etc. This was done by adding special code to the draw and delete routines instead of changing the internal image structure. In retrospect, changing the image structure for the polygons is more trouble than it is worth, since the current implementation fits with the RS274X spec much better. 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c, test/run_tests.sh: Re-update all golden files since the 72 DPI default really makes most of the pictures unusable. Change the run_test script to force all tests to export as 640x480 window. Fix a small bug in the new export code which defaulted to different x and y scales if the user didn't specify DPI (most likely they want a 1:1 aspect ratio). 2008-04-08 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: Update all golden test files after the last few months of code changes. Several recent changes were responsible for the massive test failures: 1) Anton's recent export patch, which defaults to 72 DPI and trims the picture to the perfect aspect ratio. 2) Make sure <1 pixel lines render as 1 pixel even at large zooms. 2008-04-05 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/draw.h, src/gerbv_screen.h, src/interface.c, src/render.c: Add selection rendering to GDK (Fast) code as well, removing any need to desensitize the pointer tool depending on render type. 2008-04-04 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/render.c: Some miscellaneous code cleanup after the previous code commit. 2008-04-04 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/draw.c, src/draw.h, src/export-drill.c, src/gerb_image.c, src/gerb_image.h, src/gerbv.c, src/gerbv.h, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: Add several new capabilities to gerbv: 1) Add selection capability with the pointer tool. Both single clicking and dragging are supported now. 2) Add menu options for saving layers, now that gerbv offers actual editing of gerber files. Also allow the user to force an export to drill/rs274x format if they want to do that for some reason. 3) Allow the user to delete selected objects by pressing the delete key. The modified layer can then be saved. See post to gerbv_devel for known issues with this commit. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/batch.c, src/batch.h, src/exportimage.c, src/exportimage.h, src/gerb_file.c, src/gerb_file.h, src/gerb_image.c, src/gerb_image.h, src/interface.c, src/interface.h, src/project.c, src/project.h: Commit elfring's const correctness patch. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * man/gerbv.1.in, src/gerbv.c: Apply Anton's man page patch, and add the new translate option to it as well. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/attribute.c, src/attribute.h, src/callbacks.c, src/gerbv.c: Rename the attribute dialog function to prevent confusion from hackers thinking it is in interface.c. Add an include to gerbv.c to remove a compiler warning. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Slightly modify the format editor alert dialog wording to better conform to the Gnome HIG regarding primary/secondary wording. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Also refresh the screen after changing file format options. 2008-04-02 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/export-drill.c: Make sure we refresh the screen after reloading a layer. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/export-drill.c, src/export-drill.h, src/gerb_image.c, src/gerbv.c: Add logic to the merging code which tries to prevent duplicating apertures in the new image. Add an Excellon drill file exporter. Update the command line help to reflect the additions of rs274x and excellon exporting. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerbv.c: Add translation to the command line, effectively allowing panelization of multiple files (or multiple instances of the same file). e.g.: src/gerbv --export=rs274x --output=output.gbx --translate=0,0 --translate=3.5,0 example/dan/top.gbx example/dan/top.gbx to panelize 2 copies of top.gpx next to each other. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerb_image.c, src/gerb_image.h, src/gerbv.c, src/gerbv_screen.h, src/render.c: Add translation capability to merging code, and add a struct to handle per-layer transformations like translating/scaling/etc. After adding command line translation option, we should have the basics for scriptable panelization. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c: Fix bug in aperture translation logic for image merging. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerbv.c: Finish rough draft of image merging code...still plenty of bugs to fix though. 2008-04-01 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_image.c, src/gerb_image.h, src/gerbv.c: Start coding the image duplication and copying functions in preparation for the panelization feature addition. 2008-03-31 Dan McMahill * dan AT mcmahill dot net * * src/drill_stats.c: add an extra dprintf() 2008-03-31 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: add an extra digit on the measurements 2008-03-31 Dan McMahill * dan AT mcmahill dot net * * src/drill.c: fix drill stats when in metric mode 2008-03-30 Stuart Brorson * sdb AT cloud9 dot net * * src/exportimage.c: Move all #include declarations to same level to fix build problem. 2008-03-29 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw-gdk.c: Number of points in outline macro seems not to include start point and primitive 5 should handle explicit x/y 2008-03-29 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c: Number of points in outline macro seems not to include start point 2008-03-27 Stefan Petersen * spe AT stacken dot kth dot se * * example/am-test/am-test.gbx: Number of points given as parameter to aperture macro should apperently not contain start point as found in other (real) examples in the repository. 2008-03-27 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Fixed bug in aperture macro simplification. Number of parameters calculated for aperture macro 4 (outline) was calculated wrong. 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/render.c: add missing prototype 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/attribute.c, src/attribute.h, src/batch.c, src/callbacks.c, src/drill.c, src/drill.h, src/interface.c, src/interface.h, src/project.c, src/project.h: Store file format attributes into the project file and correctly load them back again. Also store the render type. 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/drill.c, src/drill_stats.c, src/drill_stats.h, src/gerbv.c: Don't complain about DETECT,ON and DETECT,OFF, FMAT,2 or VER,1 in drill files. Include the DETECT,ON/OFF part in the stats. 2008-03-26 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: Make sure some incorrect color values are caught by the command line parser (eg #gggggg was valid before). 2008-03-26 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/exportimage.c, src/gerbv.c, src/render.c, src/render.h: Added Anton's large patch set to: 1) Add much more command line exporting functionality to gerbv (note this patch pretty much changes the default png export behavior, so the test suite is 100% failing now...I will wait a little bit before uploading all the new golden files and make sure everyone is happy with the new command line setup). 2) fix a bug in the PDF/PS/SVG export code. The render function incorrectly scaled each layer during the export process, causing cairo to seriously complain and possibly crash. 3) Add capability to handle separate x and y scale factors. This will come in handy for fine-tuning printing for users etching their own boards (see Sourceforge feature request for this). Thanks again for Anton's great work on all this...maybe he'll stick around and contribute more! 2008-03-26 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_file.c: Fixed file parsing bug on Windows which sometimes read in past the EOF (noticed and fixed by Anton Verburg) (Bug 1925182 in Sourceforge). 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/drill.c: don't complain about redefining a drill if the new definition is identical to the old one. Cuts out a lot of spurious output. 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/drill.c: fix index for the digits attribute 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.c: add missing return in a non-void function. 2008-03-26 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/attribute.c, src/attribute.h, src/batch.c, src/callbacks.c, src/callbacks.h, src/drill.c, src/drill.h, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/gerbv.c, src/gerbv.h, src/interface.c, src/pick-and-place.c: Add code that provides a generic attribute list editor from pcb. Use this to provide a dialog for manually overriding the file format for drill files. Once people are satisfied that this works as desired we can fill in the code for specifying rs274-x and pick-and-place formatting. No more gui coding should be needed to add the others. 'make check' ran before and after with identical results. 2008-03-21 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: add gerbv_revert_file function for Dan's new popup menu option. 2008-03-20 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.c, src/project.c, src/project.h: Teach the project file about layer visibility. Now when you reload a project file, the layer visibility is preserved. 2008-03-14 Julian Lamb * thepurlieu AT gmail dot com * * src/exportimage.c, src/gerber.c: Fix bug in macro parsing which mistakenly flagged all macros as using a "clear" exposure operation. This made the cairo renderer very slow on files with lots of macros. Thanks to Stefan for spotting the speed issue. 2008-03-13 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw-gdk.c: Aperture macro 21 with X and Y given as parameters in the aperture macro definition is now handled by the GDK drawing engine too. 2008-02-26 Dan McMahill * dan AT mcmahill dot net * * desktop/Makefile.am: make sure we include gerbv_icon.ico in the distfile 2008-02-26 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: fix syntax error 2008-02-20 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: Eliminate the screen refresh after saving a project, since there's no need for it. This will make project saving near-instantaneous again. 2008-02-18 Dan McMahill * dan AT mcmahill dot net * * utils/umap: add some email addresses to the cvs2cl.pl umap file 2008-02-18 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am: Revert change made to DISTCHECK_CONFIGURE_FLAGS line per request of Dan. 2008-02-14 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/gerber.c: Add a flag to the macro structure to let the renderer know if any clear primatives are used in the macro. This allows cairo to only use push/pop if it needs to, speeding up all other macro rendering. 2008-02-14 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw.c, src/gerber.c: Convert all apertures and macros to inches during parsing, completing the storage of all dimensions in the gerb_image as inches. This simplified the drawing logic, as well as making sure we don't make any unit conversion mistakes, since the Gerber spec allows 2 different ways to change units. With cairo, render any lines < 1 pixel wide as 1 pixel wide in order to eliminate the disappearing of lines at low zoom levels (pointed out by Stefan). This breaks many of the test suite files due to this small change, so I'll update them all soon. 2008-02-14 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/callbacks.c, src/color.c, src/color.h, src/gerbv.c, src/interface.c, src/log.c: Remove color.[ch], since their functionality has been incorporated into the other files after the cairo code addition. 2008-02-14 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/draw.h, src/render.c, src/render.h: Start adding the code to allow selection of items on the screen. 2008-02-13 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw-gdk.c: Added some more debug printouts when drawing aperture macros. 2008-02-13 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: The list of simplified aperture macros is now stored in the order they are defined. Also some reformatting of the code to fit into the rest of gerbv. 2008-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/draw.h, src/export-rs274x.c, src/render.c: Render apertures with diameter of 0 as 1 pixel wide in cairo. The GDK renderer already did this due to roundoff error, and other viewer software seem to do this as well. Some programs seem to use 0 diameter apertures for labels and other things that aren't actually part of the PCB. This bug was noticed by Peter C. 2008-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/gerber.c: Add small fix to Stefan's recent bugfix to account for final rotation parameter in outline. Also, change to filled shapes in outline macro with GDK, since this is how other viewers handle this. 2008-02-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_aperture.h, src/gerber.c: Aperture macro primitive outline can have up to 102 parameters so I increased number of parameters to 102. That makes all places that is holding parameters this big, but I (spe) take that memory waste. When parsing, outline also calculates a more correct number of parameters, reflecting the changing number of parameters. That value is checked against maximum number of parameters. 2008-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c, src/gerbv.c: Add code to allow exporting macros (using the new simplified macro structures). This should almost complete the export to RS274X code, except for some work on finishing work on some of the rarely used RS274X features. Add exporting to RS274X command into the help printout. 2008-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.h, src/draw.c, src/draw.h, src/gerber.c: Add code to calculate the exact extents of a drawn macro, in order to autoscale the image correctly and do perfect knockout cuts. This is now possible with the simplified aperture code. Move macro enumerations to draw-gdk.h so we can use it in gerber.c. 2008-02-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: Change the cairo macro rendering over to use Stefan's new simplified macro aperture definitions. This allowed for quite a bit of code cleanup. Note that the clearing code currently doesn't work yet, since we're waiting on Stefan to fix some ordering bugs in the simplified macro list. 2008-02-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c: Fix for bug report #1884694 that made it possible for program to leak a small amount of memory in some situations. 2008-02-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw-gdk.c, src/draw-gdk.h, src/gerb_aperture.h, src/gerber.c: Implemented a simplifier for aperture macros. Already during the parse phase (actually when an aperture is defined using an aperture macro), gerbv now executes the byte code with the parameters given in the definition of the aperture. It generates a linked list with aperture macros with precalculated parameters, so the drawing engine never needs to redo the calculation everytime it draws an aperture defined by an aperture macro. And the virtual machine to execute the aperture macro byte code is only needed at one place (parser), not at every drawing engine. The virtual machine is also made hardended against bugs in the byte code. An actual implementation of using these simplified aperture macro is also done in the GDK drawing engine. A bug in the GDK drawing engine is also fixed so when drawing aperture macro primitive 20/2 so rotation is made in the correct way. 2008-02-09 Stuart Brorson * sdb AT cloud9 dot net * * tags.txt: Update tags.txt file with tag gerbv-2_1_trunk. 2008-02-09 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac: Changed version to gerv-2.1-trunk for trunk. 2008-02-09 Stuart Brorson * sdb AT cloud9 dot net * * tags.txt: Added new release name to tags.txt after tagging everything 2.0.1. 2008-02-09 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac: Update configure.ac to read version 2.0.1. 2008-02-08 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, ChangeLog_pre20080201: Move old manual ChangeLog to ChangeLog_pre20080201. Check in new, autogenerated ChangeLog. The new ChangeLog is generated using cvs2cl.pl. 2008-02-07 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog: Update Changelog manually for changes since 2.0.0 2008-02-07 Stuart Brorson * sdb AT cloud9 dot net * * NEWS: Add annotation about gerbv-2.0.1. 2008-02-07 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am: Fix typo. 2008-02-05 Stuart Brorson * sdb AT cloud9 dot net * * NEWS: Created bare-bones NEWS file in prep for 2.0.1 release. 2008-01-31 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: use tr instead of dos2unix to fix up the various Makefiles. This seems a bit more robust since the spurious \r is sometimes in the middle of a line 2008-01-30 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: add gdwin32 for pcb 2008-01-30 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am, win32/extract_gtk_win32, win32/gerbv.nsi.in: distribute the extract_gtk_win32 file, also list the gerbv license alone and keep the rest apart so it is easier to build other tools too. 2008-01-30 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32, win32/gerbv.nsi.in: all licenses for all the libraries 2008-01-30 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: disable desktop database updates 2008-01-30 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * more help printout cleanup and clarification 2008-01-30 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * cleanup help printout and change the format to better follow most other programs. 2008-01-29 Peter Clifton * pcjc2 AT cam dot ac dot uk * * Makefile.am, icon-theme-installer: Add missed icon-theme-installer to EXTRA_DIST, and fix bug in icon-theme-installer where the -?? size was not stripped from the installed icon name. 2008-01-29 Peter Clifton * pcjc2 AT cam dot ac dot uk * * Makefile.am, configure.ac, desktop/Makefile.am, desktop/gerbv.svg, icon-theme-installer: Hooked up GTK icon theme and .desktop file install. Also added a "scalable" version of the gerbv icon for installation. This is the 48x48 svg original, scaled onto a 128x128 canvas to match the expected size of the "scalable" size of the "hicolor" icon theme. 2008-01-24 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * speed up cairo rendering of macros by checking each macro for any clear draws, then only using push/pop group if we need to. 2008-01-24 Stuart Brorson * sdb AT cloud9 dot net * * example/hellboard/README, example/hellboard/hellboard.back.gbr, example/hellboard/hellboard.fab.gbr, example/hellboard/hellboard.front.gbr, example/hellboard/hellboard.group1.gbr, example/hellboard/hellboard.group2.gbr, example/hellboard/hellboard.pcb, example/hellboard/hellboard.plated-drill.cnc: Added DJ's hellboard to distribution. 2008-01-24 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_image.c, src/gerber.c: A little cleanup 2008-01-24 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.c, src/draw-gdk.h, src/draw.c, src/export-rs274x.c, src/gerb_image.h, src/gerber.c: * change polygon structure slightly and move "arc chopper" logic into the GDK draw functions, and store only the arc info in the gerb_image struct. This allows exporting with 100% accuracy, speeds up the cairo rendering, and reduces the size of the gerb_image * update 4 golden files as a result of this change, since the cairo renderer now renders with the default resolution instead of the mandated 1 degree resolution with the previous method. * add more functionality to the export code, including info headers, polarity changes, and finishing the polygon stuff. The only major code that still needs to be added is macro exporting. This may wait until (or if) we re-arrange the macro storage method. * change GDK renderer to use a double for the scale factor instead of an int. The int was causing noticable error during rendering of large boards in comparison to the cairo version (which was correct). 2008-01-24 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * fix bug 1878509 by adding a hack to assume linear interpolation is desired if no I or J parameter is given. All other programs seem to assume this, so it should be safe. Also, the testsuite still passes after this change, so it shouldn't break anything. 2008-01-23 Stuart Brorson * sdb AT cloud9 dot net * * src/draw-gdk.h: Trivial comment fix: #endif /* DRAW_H */ --> #endif /* DRAW_GDK_H */ 2008-01-22 Dan McMahill * dan AT mcmahill dot net * * win32/extract_gtk_win32: start work on documenting how I extract all the gtk for windows stuff and the licenses for each. 2008-01-22 Dan McMahill * dan AT mcmahill dot net * * Makefile.am: remove some extra entries in the files to be cleaned that didn't really belong 2008-01-22 Dan McMahill * dan AT mcmahill dot net * * src/dynload.c: fix a format string warning on windows. 2008-01-22 Dan McMahill * dan AT mcmahill dot net * * configure.ac, src/scheme.c: check for strlwr() at configure time instead of relying on preprocessor #defines. Should address the strlwr() part of sf bug [ 1877018 ] compiling gerbv 2.0 using cygwin 2008-01-22 Dan McMahill * dan AT mcmahill dot net * * configure.ac, src/Makefile.am, win32/build_gerbv, win32/gerbv.nsi.in: hook in the icons for the non-cygwin windows version 2008-01-22 Julian Lamb * thepurlieu AT gmail dot com * * src/export-rs274x.c: round values before writing to file in order to make sure no truncation errors are included. 2008-01-22 Julian Lamb * thepurlieu AT gmail dot com * * src/Makefile.am, src/export-rs274x.c, src/export-rs274x.h, src/gerbv.c: *export-rs274x.[ch]: start coding the library to export a gerb_image to a Gerber file. Currently it supports basic aperture drawing and polygon fills without circular paths inside them. This should support most all files exported from PCB, though. For now, only the command line option is hooked into this new library for testing (--export-rs274x). 2008-01-19 Dan McMahill * dan AT mcmahill dot net * * : add desktop icons from Tomaz. 2008-01-19 Dan McMahill * dan AT mcmahill dot net * * desktop/gerbv-32.svg: add 32x32 icon 2008-01-18 Dan McMahill * dan AT mcmahill dot net * * desktop/gerbv-16.svg, desktop/gerbv-22.svg, desktop/gerbv-48.svg, desktop/regen_files: add some application icons from Tomaz along with a script from pcb to rebuild the .png and .ico files. 2008-01-15 Dan McMahill * dan AT mcmahill dot net * * src/drill.c, src/gerber.c, src/pick-and-place.c, src/scheme.c, src/tooltable.c: fix a bunch of gcc4 warnings 2008-01-13 Stefan Petersen * spe AT stacken dot kth dot se * * src/project.c, src/project.h: Cleaned up WIN32 code slightly 2008-01-13 Stefan Petersen * spe AT stacken dot kth dot se * * src/interface.c: Cleaned up small compilation warning 2008-01-13 Julian Lamb * thepurlieu AT gmail dot com * * src/draw-gdk.h, src/interface.c: * fix bug #1870444 (and a similar report about problems on MAC compiling) by allowing both draw.h and draw-gdk.h to be included. 2008-01-13 Julian Lamb * thepurlieu AT gmail dot com * * : * update golden circular interpolation file to reflect updated test file. 2008-01-13 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/gerbv.c, src/interface.c, src/render.c, test/inputs/test-circular-interpolation-1.gbx: *gerbv.c: Get short options working for export from commandline options *many files: Get exporting from command line working without the need for a display (cairo only). This was a regression after the late on-the-fly GDK code. *render.c,interface.c: Get background color to show up correctly on loaded projects. 2008-01-13 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac, tags.txt: Created trunk in prep for 2.0.0 release. 2008-01-13 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog: Update ChangeLog in prep for 2.0.0 release. 2008-01-13 Stuart Brorson * sdb AT cloud9 dot net * * src/draw-gdk.c: Apply patch from Stephan Boettcher to help with drawing arcs. 2008-01-13 Dan McMahill * dan AT mcmahill dot net * * README-release.txt, utils/cvs2cl.pl, utils/umap: put cvs2cl.pl and a usermap file here to help with changelog updates for releases 2008-01-12 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac: Change displayed name of gerbv from gerbv-2.0.0-beta to gerbv-2.0.0. 2008-01-12 Stuart Brorson * sdb AT cloud9 dot net * * src/exportimage.c: Moved #includes for render.h and exportimage.h after that for cairo.h. This should fix OSX build bug reported by Colin Hall. 2008-01-12 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/test-circular-interpolation-1.gbx, test/tests.list: * draw.c: Fix small error in cairo rendering of elliptical circular interpolation paths. * test/input/test-circlar-interpolation.gbx: added another test file. 2008-01-12 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac, test/Makefile.am, test/run_tests.sh: Change name of ImageMagick utilities from FOO to IM_FOO. This fixes problem where DISPLAY was overwriting the X environment variable, breaking the tests for me. 2008-01-12 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/test-aperture-circle-1.gbx, test/inputs/test-aperture-circle-flash-1.gbx, test/inputs/test-aperture-obround-1.gbx, test/inputs/test-aperture-obround-flash-1.gbx, test/inputs/test-aperture-polygon-1.gbx, test/inputs/test-aperture-polygon-flash-1.gbx, test/inputs/test-aperture-rectangle-1.gbx, test/inputs/test-aperture-rectangle-flash-1.gbx, test/inputs/test-polygon-fill-1.gbx, test/tests.list: * draw.c: Fix a few minor cairo rendering issues: 1) fix rendering of circular interpolation within a polygon fill. 2) Fix rendering of flashed polygon apertures with holes in them. * tests/inputs: Add 8 new test files to test out aperture drawing, and 1 to test polygon fills. * tests/golden/*: Update all golden files in preparation for 2.0 release. 20 tests were failing for a variety of reasons. Most were due to the recent disabling of anti-aliasing on polygon fills, which causes very small changes to the rendering of the polygon borders. The remainder of the failings were due to spurious lines previously being drawn on flashed apertures with holes (noticed by Stefan), which has now been fixed. 2008-01-12 Peter Clifton * pcjc2 AT cam dot ac dot uk * * desktop/gerbv.desktop: Add mime types application/x-gerber;application/x-excellon; to .desktop file 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * test/Makefile.am: Revert adding $(SHELL) -x to the test environment. That broke the script. 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: - enable cairo in the win32 build script - add 'make clean' to the beginning of the script 2008-01-12 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * callbacks.c: Try and get cairo working on WIN32 by switching to use of gdk_cairo_create to get the drawing surfaces. 2008-01-12 Stuart Brorson * sdb AT cloud9 dot net * * man/Makefile.am: Random cleanup of makefile system. 2008-01-12 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am, autogen.sh, configure.ac, desktop/Makefile.am, src/Makefile.am, test/Makefile.am, win32/Makefile.am: Random cleanup of automake system. 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * win32/build_gerbv: disable dependency tracking which has issues with things like c: in a path 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c, src/drill.c, src/drill_stats.c, src/gerb_error.h, src/gerb_stats.c, src/gerber.c: ERROR->GRB_ERROR to avoid name space issues that prevented compiling with the cairo renderer on win32. 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: add a #error near the known broken WIN32 section. 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * src/render.c: protect one more cairo-xlib inclusion with a WIN32 check 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * src/gerber.c: add a handful of dprintfs 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * src/gerb_file.c: add missing rewind(). Now we can load files on win32. Noted by Peter Clifton. 2008-01-12 Dan McMahill * dan AT mcmahill dot net * * configure.ac, src/callbacks.c, src/gerb_image.h, src/gerber.c, win32/build_gerbv, win32/gerbv.nsi.in: Minor changes that let gerbv build a non-cygwin windows version along with a native windows installer. The resulting program installs and deinstalls cleanly but currently only uses the GDK renderer. It runs but won't load files. Still, a step in the right direction. 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * configure.ac: add an AM_CONDITIONAL on win32 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am: clean out a bunch of unneeded junk 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/gerbv.rc: put the code in place for adding an icon on a windows build but leave commented out for the moment until the new icons are added. 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * win32/Makefile.am, win32/Readme.txt, win32/build_gerbv, win32/gerbv.nsi.in: start adding infrastructure for building windows installers (not finished or hooked in yet) 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * Makefile.am, README-cvs.txt, README-release.txt: add notes on building from cvs and how to create a release 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * configure.ac, man/Makefile.am, scheme/Makefile.am, src/Makefile.am: rework the use of datarootdir to avoid some manpage problems and a dependence on really new autoconf/makes 2008-01-11 Dan McMahill * dan AT mcmahill dot net * * man/gerbv.1.in: remove some obsolete information 2008-01-11 Stuart Brorson * sdb AT cloud9 dot net * * src/gerber.c: Change char -> int to fix Mac OSX bug noted by Gabriel Paubert. 2008-01-10 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/Makefile.am, src/callbacks.c, src/draw.c, src/draw.h, src/exportimage.c, src/gerbv.c, src/interface.c, src/render.c: * interface.c: Try and fix bug where tooltips weren't showing up for some users. * many files: Implement on-the-fly switching between GDK and cairo rendering, and set default setting on cairo builds to "Fast" (GDK). * draw.c: Fix spurious line rendering noticed by Stefan on BGA pads. * draw.c: Turn off anti-aliasing just on all polygon draws, since they were showing seams on ground planes. * draw.c: Fix clearing of BGA pin holes bug noticed by Stefan. * draw.c: Add "exposure off" logic, allowing macros with the exposure=off parameter to erase. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog: Inserted note about release into ChangeLog. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * Makefile.am, configure.ac: Updated Makefile.am and configure.ac in prep for beta release. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * configure.in: Remove configure.in after moving the file to configure.ac. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * configure.ac: Move configure.in to configure.ac. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * rebuild_conf: Remove rebuild_conf after moving actual file to autogen.sh. 2008-01-10 Stuart Brorson * sdb AT cloud9 dot net * * autogen.sh: Move rebuild_conf to autogen.sh. 2008-01-09 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: add the name of the renderer to the about dialog 2008-01-09 Stefan Petersen * spe AT stacken dot kth dot se * * example/uwe/example.gbr, example/uwe/mail.txt: Added example on aperture macro overlayed 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * callbacks.c: Bump up the resolution of measurements in MMS. Change x and x to lowercase in display. 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/gerbv.c: * gerbv.c: Make sure we increase max_files by 2, since we may need to open up two files for PNP layers (top + bottom). This fixes a segfault after adding a PNP file to the project and then clicking "New". 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * fix bug where ruler pointers didn't show up when units are MILS (this was a regression after the new ruler scale logic was implemented last week). 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * src/render.c: * turn off cairo anti-aliasing from "normal" setting, since it seems to cause faint seams between adjacent polygons (most noticable in ground plane outputs from PCB, usually). I'll work on a better workaround for the next release. 2008-01-09 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Tweaked logic which recognizes drill files to fix bug in Orcad file pointed out by Julian. 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c: * fix for arc render regression found in test suite. Updated 2 golden files based on new (more correct) pictures. 2008-01-09 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * fix stupid change in callbacks.c which disabled all layer interaction 2008-01-09 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Improve code which figures out if a file is a valid drill file. This prevents gerbv from accidentally reading in pick-place files. Fixes bug reported by Julian. 2008-01-08 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c: * callbacks.c: Change color dialog to "blocking", which prevents user from modifying layer orders while it is running and preventing possible problems with the layer tree code. 2008-01-08 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Added check for %, and fixed check for T. This should fix bug noticed by Julian where gerbv would not load the drill file example/orcad/thruhole.tap. 2008-01-08 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Added more authors to list. 2008-01-08 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * when unloading a layer, make sure the last spot is NULL afterwards. 2008-01-08 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, src/pick-and-place.c: * pick-and-place.c: Make sure we check cir_seg height and width are > 0, otherwise it can cause cairo rendering problems. * draw.c: Reduce label text font size, since the protel-pnp example file reveals problems fitting the text on the image. 2008-01-08 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/draw.c, src/drill.c, src/drill.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/interface.c, src/interface.h, src/pick-and-place.c, src/pick-and-place.h: * draw.c: Revert back to old oval rendering for the time being, since the new one seems to be having issues... * gerbv.c, others: Add a dialog to confirm the user wants to open a file with invalid ASCII characters. 2008-01-07 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c: * gerbv.c: Fix segfault noticed by Stefan 2008-01-07 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/gerbv.c, src/interface.c, src/interface.h, src/render.c: * interface.c, callbacks.c: Add in warning dialogs if user starts a new project or opens a project with existing layers to make sure they don't accidentally close all layers. * callbacks.c: Add in some logic to switch to inches in the rulers if the scale gets too small in mils. Change the default unit back to mils. * interface.c: Recognize the default unit and start the unit combo box to the right one. * render.c: Change the default screen size scale factor to where mils can reasonably show up on the rulers. 2008-01-07 Dan McMahill * dan AT mcmahill dot net * * configure.in, src/callbacks.c, src/gerbv.c, src/gerbv_screen.h, src/render.c: remove MAX_FILES limit. We start with 1 and grow our array dynamically. 2008-01-07 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Made inches the default for the units combobox. 2008-01-07 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/draw.c, src/gerbv_screen.h, src/interface.c, src/render.c: * callbacks.c, render.c: Get unit changing combobox to work more elegantly by updating all relevent fields immediately after changing units. Re- enable mils on the rulers, since inches were just too large to be usable for most boards. * interface.c: Get gui to gracefully shrink to a small size to support small screen resolutions. Prevent the sidebar from shrinking smaller than looks respectable. Change analysis tools to refer to "visible" layers rather than "active" layers to prevent confusion with the highlighted row in the layer tree. Add a frame around the statusbar to make it more visually appealing. Remove the "online manual" menu item since we don't actually have one yet. * draw.c: Change oval rendering to oblong, since that's probably what is actually intended (GDK rendering already did this). 2008-01-07 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Added authors and license windows to "about" dialog. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/render.c: * callbacks.c: Tweak the color dialog checks to make sure it works after destroying the dialog via the window manager. For cairo, speedup rendering during layer actions by simply recompositing the final image instead of redrawing everything. On layer deletion, reselect the first row to always make sure a line is active. * render.c: Reorder rendering so top layer is displayed on top. 2008-01-06 Stuart Brorson * sdb AT cloud9 dot net * * example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv: Revert change removing u-umlaut. u-umlaut is now back in. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/render.c: * render.c, callbacks.c: Add in watch cursor during rendering to provide feedback to user. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw-gdk.c, src/draw.c: * draw.c, draw-gdk.c, gerb_aperture.h: Add rendering code in preparation for aperture macro reordering. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * src/gerb_aperture.h: * add new aperture_t types for the macro reordering 2008-01-06 Stuart Brorson * sdb AT cloud9 dot net * * example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv: Remove German u-umlaut from LED200 last item. Replace with "UE". This allows the CVS file to get past the binary filters in the file checking stuff. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/gerbv.c, src/gerbv_screen.h, src/pick-and-place.c, src/pick-and-place.h: * pick-and-place.c, gerbv.c: Render top and bottom layers in separate layers (if they exist). Rotate parts correctly and fix min/max calcualtions so autoscaling works correctly. Also, add "top" and "bottom" labels to layer names. 2008-01-06 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Minor code formatting changes. Checking in so my local copy matches CVS. 2008-01-06 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Minor mods. Added F4 and made minor annotation changes. 2008-01-06 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c, src/pick-and-place.c, src/pick-and-place.h: Use isprint() and isdigit() when detecting file type. isprint() seems locale aware, at least on Debian. 2008-01-06 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Reformatting back to as it was 2008-01-06 Dan McMahill * dan AT mcmahill dot net * * configure.in: set minimum required versions for automake an d autoconf 2008-01-06 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.c: fix off by one error that caused segfaults on exit. 2008-01-06 Dan McMahill * dan AT mcmahill dot net * * src/scheme.c: kill one more 64-bit compiler warning 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/gerber.c, src/gerber.h, src/gerbv.c, test/golden/Makefile.am, test/inputs/Makefile.am, test/inputs/include-file-1.gbx, test/inputs/test-include-file-1.gbx, test/tests.list: * gerber.c: Add support for include files (%IF) in the parser, which hopefully completes 100% implementation of the RS-274X spec (yay!). * tests: Add a test file to test the include file functionality. 2008-01-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/draw.c, src/draw.h, src/gerbv_screen.h, src/interface.c, src/render.c: * interface.c: Remove a billion glade-generated gtk_widget_show function calls, since they aren't needed with gtk_widget_show_all. * interface.c: Add tooltips for all menus and buttons. * interface.c: Update menus for new pointer tool and remove reference to control gerber option, since it's out for 2.0. * callbacks.c: Make middle mouse button the default pan tool, and update the mouse cursor is the user is panning or zooming with middle/right mouse buttons. * interface.c,callback.c: Add right click menu to the layer tree and add column to indicate any modifications to the layer (for now, we just show "I" for an inverted layer). Add back in support for individually inverted layers. Also, fix XOR and OR rendering modes for GDK. * render.c: Fix bug in alpha usage, which wasn't allowing transparency on exported images. * tests/golden/*: Update all golden files, since the png export wasn't using alpha correctly, so all test files now render with a slightly different color (since the black can bleed through the blue color a tiny bit). 2008-01-05 Stuart Brorson * sdb AT cloud9 dot net * * configure.in: Updated version number to 2.0.0-pre 2008-01-05 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: Fixed behavior of cursors in drawing_area so the special cursors stay only in the drawing_area, and the default pointer appears everywhere else. 2008-01-05 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/gerbv_screen.h, src/icons.h, src/interface.c: Added pointer button to toggletools on task bar. 2008-01-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/interface.c: Changed menu entries that pops up a new window to end with three dots 2008-01-04 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c: Fixed bug noted by Peter Clifton. File->new now emptys all project info. 2008-01-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw-gdk.c: Fixed aperture macro drawing in GDK target as well 2008-01-04 Stuart Brorson * sdb AT cloud9 dot net * * src/interface.c: Comment out toolbuttons for analyze, validate, and control. 2008-01-03 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, src/draw.h, src/render.c: * draw.c: Fix some amacro rendering problems that Stefan uncovered. * draw.c: Change the thermal rendering logic to do rendering without push/pop operations, so that vector output will work (previously, the cairo export defaulted to an image export for thermal rendering). * render.c: Fix autoscaling for new amacro test (although the hack will be unnecessary after we reorder the amacro rendering process to correctly calculate the extents of each flashed macro aperture). 2008-01-03 Stuart Brorson * sdb AT cloud9 dot net * * src/gerber.c: Small changes which improve error reporting for apertures. 2008-01-03 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog: Added note about new icons: move, zoom, measure. 2008-01-03 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am, src/icons.h, src/interface.c: Added icons for toggletool buttons: move, zoom, and measure. 2008-01-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/amacro.c, src/draw.c, src/draw.h, src/gerber.c: Aperture macros are parsed correctly and executed correctly 2008-01-03 Stefan Petersen * spe AT stacken dot kth dot se * * example/amacro-ref/1.grb, example/amacro-ref/README.txt, example/amacro-ref/full-ex.grb, example/amacro-ref/jj1.drl, example/amacro-ref/jj1.grb, example/amacro-ref/limit-ex.grb, example/amacro-ref/stp0.grb: Reference files for advanced, real life, aperture macros 2008-01-02 Dan McMahill * dan AT mcmahill dot net * * example/pick-and-place/LED.frontsilk.gbr, example/pick-and-place/LED.xy: regenerate after fixing PCB's x-y output. 2008-01-01 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_aperture.h, src/gerber.c: Increase parameter field parsed out of aperture definitions. Warn if to many parameters are found 2007-12-31 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, example/pick-and-place/LED.frontsilk.gbr, example/pick-and-place/Makefile.am, src/callbacks.c, src/callbacks.h, src/draw.c, src/exportimage.c, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/pick-and-place.c, src/render.c, src/render.h: * gerbv.c: Rework project filename saving to save all layers with relative pathnames, relative to the project file location. This allows projects to be relocated, and fixes the second half of bug# 1443885. * gerbv.c: More work on command line parsing. * interface.c, render.c, callbacks.c: Reimplement different rendering modes into the sidepane combobox for GDK. For cairo, allow the user to change the quality vs speed. * pick-and-place.c, draw.c: Correct pick and place parsing to use inches for the basic unit. Render names of pick-and-place components to help check placement. 2007-12-31 Stuart Brorson * sdb AT cloud9 dot net * * src/pick-and-place.c: Removed stuff requiring footprints since it's not a 100% sure-fire indication of a pick-place file. 2007-12-31 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/drill.c, src/drill.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/pick-and-place.c, src/pick-and-place.h: Overhauled checks for file type. Now all file types (Gerber, drill, pick-place) are FALSE by default, and only are TRUE when positive of file type indications are found. Also added specific check for RS-284-D, and throw error if -D is found. 2007-12-31 Stefan Petersen * spe AT stacken dot kth dot se * * src/scheme.c: Hopefully fixes some compilation warnings 2007-12-31 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: use GPOINTER_TO_INT() instead of a straight typecast to an int 2007-12-31 Dan McMahill * dan AT mcmahill dot net * * src/drill_stats.c: include missing header 2007-12-30 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * callbacks.[ch], interface.c, others: Implement three "tools", namely the pointer, zoom, and measure tool and hookup to the existing gui stubs. Also, display an informative message in the message bar explaining how to use the active tool (similar to Inkscape). Do some miscellaneous cleanups in the gui code and rendering. * callbacks.c, render.[ch]: Get basic printing support working. 2007-12-30 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c: * remove several potential locking loops in the gerber.c parser 2007-12-29 Dan McMahill * dan AT mcmahill dot net * * test/inputs/Makefile, test/inputs/Makefile.in: remove generated files 2007-12-28 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/amacro.h, src/draw.c: gerbv can now handle comments and calculations in aperture macros. Unfortunate this revealed some errors in how aperture macros are drawn. 2007-12-28 Stuart Brorson * sdb AT cloud9 dot net * * src/gerber.c: Fix problem where RENDER_USING_GDK was used before #import "config.h". 2007-12-28 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/render.c, test/golden/Makefile.am, test/inputs/Makefile, test/inputs/Makefile.am, test/inputs/Makefile.in, test/inputs/test-image-justify-1.gbx, test/inputs/test-image-justify-2.gbx, test/inputs/test-image-offset-1.gbx, test/inputs/test-image-polarity-1.gbx, test/inputs/test-image-rotation-1.gbx, test/inputs/test-layer-axis-select-1.gbx, test/inputs/test-layer-knockout-1.gbx, test/inputs/test-layer-knockout-2.gbx, test/inputs/test-layer-mirror-image-1.gbx, test/inputs/test-layer-mode-1.gbx, test/inputs/test-layer-offset-1.gbx, test/inputs/test-layer-rotation-1.gbx, test/inputs/test-layer-scale-factor-1.gbx, test/inputs/test-layer-step-and_repeat-1.gbx, test/tests.list: * commit Changelog after conflicts 2007-12-28 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: add a window title to the about window for gtk older than 2.6 2007-12-28 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Fix boneheaded error in stats gathering stuff which was causing segfaults when reading drill files. 2007-12-28 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/drill.c, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/gerbv_screen.h, src/interface.c, src/pick-and-place.c: Added more checks for file type. This should fix problem of segfaults when reading RS-274D. Make messages text window (in sidepane) pop up if an error or warning is written to it so user can immediately see problems. Robustified a few areas of stats gathering code. 2007-12-28 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: get this working with gtk-2.4.x again 2007-12-28 Dan McMahill * dan AT mcmahill dot net * * test/Makefile.am: don't run the tests if we built with gdk instead of cairo. The exporting to png is done differently in the two cases and it makes the comparisons a little harder. If the libpng vs cairo exporting can be made to be more identical this can be reverted. 2007-12-27 Stefan Petersen * spe AT stacken dot kth dot se * * src/pick-and-place.c: The pick and place file type check will hopefully not blow up in our face anymore. The pick and place parser et al still sucks and should need a complete rewrite by someone who knows how to write programs. This will proobably blow up in our face if someone tries to use it. 2007-12-27 Dan McMahill * dan AT mcmahill dot net * * test/README.txt: add section on updating golden files 2007-12-26 Julian Lamb * thepurlieu AT gmail dot com * * src/gerber.c, src/pick-and-place.c, test/golden/Makefile.am: * a few small followup fixes to prevent segfaults on some test files. Submit golden files for the 3 new testsuite files. 2007-12-26 Dan McMahill * dan AT mcmahill dot net * * test/inputs/Makefile.am: add missing files 2007-12-26 Dan McMahill * dan AT mcmahill dot net * * test/README.txt: write up how to add tests 2007-12-25 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/drill.c, src/gerber.c: Tweaked reporting of errors, warnings, and notes found while parsing drill and Gerber files. 2007-12-25 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c: Added reporting of all D codes used (both Gerber- and user-defined) to Gerber reports window. 2007-12-24 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/draw-gdk.c, src/draw.c, src/drill.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/pick-and-place.c, src/render.c, test/inputs/test-image-offset-1.gbx, test/inputs/test-image-offset-2.gbx, test/inputs/test-layer-mode-1.gbx, test/tests.list: * gerber.c, many files: Start reorganization of some gerb_image parameters in preparation for adding final Gerber commands like rotation, mirroring, and knockout. Also, normalize all dimensions to inches in the image in order to simplify rendering. * tests/inputs/test-...: Add first three testsuite files to test new commands. 2007-12-23 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/drill_stats.c, src/drill_stats.h: Add explanatory comments to drill codes in drill report window. 2007-12-23 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Made report text fixed font and selectable. 2007-12-22 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: add missing gerb_aperture.h 2007-12-22 Stefan Petersen * spe AT stacken dot kth dot se * * src/amacro.c: Can now handle comments in aperture macros 2007-12-22 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerb_stats.c: Extended list of parameters reported in Gerber stats to 3. 2007-12-22 Dan McMahill * dan AT mcmahill dot net * * configure.in: add --enable-efence option to link with ElectricFence 2007-12-21 Stefan Petersen * spe AT stacken dot kth dot se * * src/drill.c: Make sure malloc succeded before memset malloced memory 2007-12-21 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c, src/gerbv_icon.h: Fixed compilation warnings and removed comments around commented out code 2007-12-21 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Change gtk_layout_set_size to gtk_widget_set_size_request to eliminate a run-time warning from GTK. 2007-12-21 Stuart Brorson * sdb AT cloud9 dot net * * src/gerb_stats.c: Modified initialization of stats->parameter to fix possible memory corruption issue. 2007-12-21 Stuart Brorson * sdb AT cloud9 dot net * * src/amacro.c, src/batch.c, src/callbacks.c, src/color.c, src/draw-gdk.c, src/draw.c, src/drill.c, src/drill_stats.c, src/exportimage.c, src/gerb_file.c, src/gerb_image.c, src/gerb_stats.c, src/gerb_transf.c, src/gerber.c, src/gerbv.c, src/pick-and-place.c, src/project.c, src/setup.c: Now converted almost all malloc/free calls to g_malloc/g_free (except for in scheme.c). 2007-12-21 Stuart Brorson * sdb AT cloud9 dot net * * src/amacro.c, src/callbacks.c, src/drill_stats.c, src/exportimage.c, src/gerbv.c, src/pick-and-place.c: Replace calls to g_malloc/g_free with malloc/free to (hopefully) improve stability. 2007-12-20 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c: Add scrollbars to Gerber aperture report window. 2007-12-20 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Remove extraneous chars before line 1424 causing compilation failure. 2007-12-20 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/render.c: * make sure we have sane default render size info before any models are loaded to eliminate problems with the rulers and scrollbar size calcs. 2007-12-20 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * render.c,callbacks.c,interface.c: Connect rulers and scrollbars and start getting them functional. 2007-12-20 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/gerb_error.h, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c: Implemented reporting of apertures found in Gerber files. Added report to Gerber reports window. 2007-12-20 Stuart Brorson * sdb AT cloud9 dot net * * src/gerb_aperture.h: Added new file to repo after refactoring aperture stuff into its own .h file. 2007-12-19 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c: Bug fix so images are rendered when multiple images are loaded. 2007-12-19 Julian Lamb * thepurlieu AT gmail dot com * * src/gerbv.c, src/interface.c, src/render.c: *allocate all colors to the colormap to try and fix rendering bug Stuart noticed. 2007-12-18 Dan McMahill * dan AT mcmahill dot net * * test/inputs/Makefile.am: add missing directory 2007-12-18 Dan McMahill * dan AT mcmahill dot net * * Makefile.am, configure.in, example/Makefile.am, example/exposure/Makefile.am, example/pick-and-place/Makefile.am, example/polarity/Makefile.am, example/thermal/Makefile.am, example/trailing/Makefile.am, test/Makefile.am, test/golden/Makefile.am, test/tests.list: enable regression testing. Verified that the distcheck target works 2007-12-18 Dan McMahill * dan AT mcmahill dot net * * test/run_tests.sh: add some diagnostic output, add some more comments, make this work outside the source tree 2007-12-18 Dan McMahill * dan AT mcmahill dot net * * test/run_tests.sh: add more error checking and also produce an animate output script 2007-12-18 Dan McMahill * dan AT mcmahill dot net * * configure.in, test/Makefile.am: add composite to the list of imagemagick tools 2007-12-17 Julian Lamb * thepurlieu AT gmail dot com * * src/exportimage.c, src/gerbv.c: * fixes for building without PNG 2007-12-17 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/color.c, src/exportimage.c, src/exportimage.h, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * render,callbacks,interface: Restructure the whole rendering process by separating out all zoom and pan information from the global variable "screen". This was necessary to allow rendering without having a gtk window open, allowing for export from command line and many others. Also, the translation and zoom code is much more readable due to the elimination of many variables. Also, the GDK color allocations were eliminated to allow rendering without existing GDK colormaps in place. * gerbv.c: Create the basic framework for exporting from the command line. 2007-12-17 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Bugfix handling of T00 code so it will build on a different machine. 2007-12-17 Dan McMahill * dan AT mcmahill dot net * * configure.in, test/Makefile.am, test/README.txt, test/golden/Makefile.am, test/run_tests.sh, test/tests.list: Add the first pass at a regression testsuite. For now the tests are not enabled yet because we need some new command line options for gerbv, but the work here should get us a long way towards having an automated test setup. 2007-12-17 Stuart Brorson * sdb AT cloud9 dot net * * src/drill.c: Added more parse errors and warnings to those reported in report window. 2007-12-17 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/drill.c, src/gerber.c: Added expository text to Gerber code reports. Added more error reports for Gerber errors. 2007-12-17 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/drill_stats.h, src/gerb_error.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/render.c: Implemented reporting of parse errors (with error level) found dring parsing of the Gerber files. 2007-12-16 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/drill.c, src/drill_stats.c, src/drill_stats.h, src/gerb_error.h, src/render.c: Implemented reporting of all parse errors (with error level) found during parsing of the drill file. 2007-12-16 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerber.c, src/gerbv_icon.h: Changed gerbv icon to that drawn by Tomaz Solc. The old icon is also in gerbv_icon.h, but renamed *_old. 2007-12-16 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/drill.c, src/drill.h, src/drill_stats.c, src/drill_stats.h: Fixed bug noticed by Joerg involving display of statistics in drill file with M71 calling out metric units. 2007-12-15 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: kill another compiler warning 2007-12-15 Dan McMahill * dan AT mcmahill dot net * * src/drill_stats.c: fix a compiler warning and add missing year to copyright notice 2007-12-15 Dan McMahill * dan AT mcmahill dot net * * src/pick-and-place.c: clear out a bunch of compiler warnings. 2007-12-15 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: Changed zoom-fit icon on toolbar to use GTK stock "zoom-fit" icon. 2007-12-15 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/Makefile.am, src/callbacks.c, src/drill.c, src/drill_stats.c, src/drill_stats.h, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/render.c: 1. Added "General" tab to reports windows for both Gerbers and Drills. 2. Refactor drill_stats stuff to its own files in accordance with our function naming scheme. 2007-12-15 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/drill.c: zero out apertures in dril lparser to eliminate bad rendering. Add autoscale functionality back when new layers are loaded. 2007-12-15 Julian Lamb * thepurlieu AT gmail dot com * * src/draw.c, src/draw.h, src/drill.c, src/interface.c: fix cairo build problem. Re-enable log redirection to the message window. 2007-12-14 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/callbacks.c, src/callbacks.h, src/draw-gdk.c, src/draw-gdk.h, src/drill.c, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/render.c, src/render.h: Start adding list of drills found to drill statistics reported. Now "analyze->active drill layers" reports each drill defined, and the number of times it is used. 2007-12-14 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * render,callbacks: Fully separate GDK and cairo rendering code to help speed analyzing. Change from storing intermediate cairo patterns to xlib surfaces for speed improvement. Eliminate image compositing on each expose_event in order to make panning feel much quicker. Temporarily disable idle function to fix GDK memory leaks and crashes. 2007-12-13 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/drill.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h: Merged Joerg's drill parser stuff into CVS. 2007-12-13 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * src/gerbv.c: Fix half of bug #1443885 by eliminating segfault when project file has layer files that won't load. * src/callbacks.[ch],src/interface.c,src/render.[ch]: Big cleanup of callbacks.c and start moving zoom code to render.c in preparation for separating out zoom info from screen struct (allowing for exporting to file and improving code readability). Add in scrollbars and start hooking up rulers and scrollbar to panning. 2007-12-12 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c: * repair visibility toggle buttons after latest DND addition 2007-12-12 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/interface.c: * cleanup warning message, and change GTK variable for optional print enabling, per Dan's email 2007-12-12 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv_screen.h, src/interface.c, src/render.c: * src/callbacks.c,src/interface,src/render.c: Get drag and drop working for layer sidebar. Fix memory leak for cairo rendering. 2007-12-11 Julian Lamb * thepurlieu AT gmail dot com * * src/interface.c: * disable tree view searching so it doesn't steal key presses 2007-12-11 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/callbacks.h, src/render.c, src/render.h: * apply fixes for GDK compilation. Fix bug so GDK colors can now be changed. 2007-12-11 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/gerber.c: * src/gerber.c: Fix polygon rendering bug (bug #1190809). This was due to the gerber parser not storing the correct polarity when closing a polygon. 2007-12-10 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/pick-and-place.c, src/render.c: * src/gerbv.c,src/callbacks.c,others: Get basic layer management gui up and running. This includes visibility toggling, color picking, and basic row management using the buttons at the bottom. A popup menu will also be added when the user right clicks. 2007-12-10 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/gerbv.c, src/interface.c: Added some #ifdef EXPORT_PNG directives a strategic locations so I can compile on a system with no PNG stuff. 2007-12-09 Stuart Brorson * sdb AT cloud9 dot net * * src/render.c, src/render.h: Put #ifdef RENDER_USING_GDK around cairo stuff to enable compilation under GDK. 2007-12-09 Julian Lamb * thepurlieu AT gmail dot com * * configure.in: * reduce cairo dependency to 1.2 2007-12-09 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/draw.c, src/draw.h, src/exportimage.c, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: * gerbv.c,callbacks.c,interface.c,others: Implement export-to-file for PNG, PDF, SVG, and PS. Start implementing print functionality. More cleanup of old gui code. Move log handler over to new message textview in the sidebar. 2007-12-09 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, HACKING, src/callbacks.c, src/drill.c, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/render.c, src/render.h: Added beginnings of statistics reports for drill files. 2007-12-09 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/exportimage.c, src/gerbv.c, src/interface.c: * src/gerbv.c,src/callbacks.c: Reattach project open/save stuff in gui and separate out some of the code back to gerbv.c. 2007-12-08 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/gerb_image.c, src/gerb_image.h, src/gerb_stats.c, src/gerb_stats.h, src/gerber.c, src/gerber.h, src/gerbv_screen.h, src/interface.c, src/render.c, src/render.h: Added functionality to display report of G codes found in active Gerber layers. 2007-12-08 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/amacro.c, src/callbacks.c, src/draw.c, src/gerber.c, src/render.c: * src/render.c,src/callbacks.c: Fix translation code for cairo renderer so things are correctly centered on the screen after a zoom-to-fit. Fix scaling code for MM unit drawings. * src/amacro.c,src/gerber.c: Fix error messages in amacro parsing (bug #1845782) on FreeBSD systems (thanks to Joerg for the patch). Also, fix possible hangs during amacro parsing (e.g. the file "%AM" would hang gerbv, since it didn't correctly check for EOF). 2007-12-08 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, HACKING: Update HACKING with latest info about file hierarchy. 2007-12-08 Stuart Brorson * sdb AT cloud9 dot net * * src/Makefile.am, src/callbacks.c, src/callbacks.h, src/draw.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/gerbv_screen.h, src/render.c, src/render.h: Refactor redraw_pixmap into its own file, per discussion of 12.7.2007. Also start incorporating stuff to gather Gerber statistics. 2007-12-07 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/drill.c: * src/drill.c: Fix warning messages on some drill files (bug #1316247). The drill parser did not zero out new gerbv_aperture_t structures, which sometimes allowed junk in the param[x] portions, which confused the parser and gave warnings and potentially incorrectly rendered drill holes. 2007-12-07 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/draw.c: * src/draw.c: Fix thermal rendering bug (bug #1024000) in the cairo rendering code (this bug is not easily fixable in the GDK code, but it is being obsoleted soon). 2007-12-07 Stuart Brorson * sdb AT cloud9 dot net * * HACKING: Updated file with more info about gerbv's datastructures and workings. 2007-12-06 Stuart Brorson * sdb AT cloud9 dot net * * configure.in, src/callbacks.c: Minor tweaks to allow compilation on GDK (non-cairo) systems. 2007-12-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/gerbv.c: * src/callbacks.c,src/gerbv.c: Add private implementation of gdk_cairo_create to allow compilation with gtk < 2.8. Fixed bug in gerbv which was causing gdk rendering to skip frames sometimes. 2007-12-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/drill.h, src/gerb_image.h, src/gerber.c: * src/gerber.c,src/drill.h,src/gerb_image.h: Fix memory corruption issue with G54 codes not checking if aperture numbers were within bounds (bug #1843983). Also, bumped up max aperture number from 999 to 9999 based on reports of some CAD packages using numbers this hig (even though it clearly says 999 is the highest number in the RS274X spec). This will increase memory usage somewhat, but hopefully should be acceptable. 2007-12-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/drill.c: * src/drill.c: Fix parsing of drill files with commas in place of decimals (bug #1844100). 2007-12-06 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw-gdk.c, src/draw.c: * src/draw.c,src/draw-gtk.c: Fix rendering of lines drawn with rectangular aperatures (bug #1834944 and #1704942). Thanks to ineiev for the gdk patch, which was reworked to apply to the cairo rendering too. 2007-12-06 Stuart Brorson * sdb AT cloud9 dot net * * src/callbacks.c, src/interface.c: Added #ifdef RENDER_USING_GDK to enable compilation when not using cairo. 2007-12-05 Stuart Brorson * sdb AT cloud9 dot net * * HACKING: Started adding notes about gerbv's internal workings to help other new hackers understand the program. 2007-12-05 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/callbacks.c, src/callbacks.h, src/gerbv.c, src/interface.c: * src/callbacks.[ch],src/interface.[ch]: Rename GTK widgets to more recognizable names for better code legibility. Change sidebar to a notebook view and add a messages tab. Organize statusbar layout. Add "analyze" menu and move CAM related functions to it. Clean up toolbars and combine into a single toolbar. 2007-12-03 Stuart Brorson * sdb AT cloud9 dot net * * configure.in: Bump cairo requirements to 1.4.0 since some of the cairo code required the newer library. 2007-12-01 Dan McMahill * dan AT mcmahill dot net * * src/callbacks.c: add missing header 2007-12-01 Julian Lamb * thepurlieu AT gmail dot com * * src/callbacks.c, src/gerbv.c, src/interface.c: * remove references to support.h to allow compilation 2007-12-01 Dan McMahill * dan AT mcmahill dot net * * configure.in: make cairo be the default renderer again. Reduce the gtk version to 2.4.0 since we explicitly check for cairo in the cairo rendering case. 2007-12-01 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/Makefile.am, src/callbacks.c, src/callbacks.h, src/gerbv.c, src/gerbv_screen.h, src/interface.c, src/interface.h: * src/callbacks.[ch],src/interface.[ch],src/gerbv.c: Split out all gui code out of gerbv.c and put it into the standard callbacks/interface files. Started to overhaul gui during the process. Also, speed up the feel of the cairo rendering by rendering layers to a cairo_pattern_t, then compositing using these patterns. This allows the user to pan and get much quicker response while the CPU renders the new view in the background. 2007-11-30 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog: Modify build system so you must explicitly --enable-cairo to build using cairo, otherwise build using GDK by default. 2007-11-30 Stuart Brorson * sdb AT cloud9 dot net * * configure.in, src/exportimage.c, src/gerbv.c, src/pick-and-place.c: Modified configure.in so you must explicitly --enable-cairo. Added #ifdef to a couple files so both cairo and GDK flavors will build correctly. 2007-11-29 Stuart Brorson * sdb AT cloud9 dot net * * ChangeLog, src/gerb_file.c, src/gerber.c, src/gerbv.c, src/gerbv_screen.h, src/project.c: Added "File -> Open Gerber(s)" dialog window. 2007-11-29 Dan McMahill * dan AT mcmahill dot net * * configure.in, src/Makefile.am, src/gerbv.c: add a --disable-cairo to switch back to the gdk rendering 2007-11-29 Dan McMahill * dan AT mcmahill dot net * * configure.in: explicitly check for and add -lm instead of getting it as a side effect of gtk and glib. 2007-11-27 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.c: Plug a slow memory leak. While here point to the gerbv home page in addition to the gEDA home page. 2007-11-27 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/Makefile.am, src/draw-gdk.c, src/draw-gdk.h, src/gerbv.c: * src/draw-gdk.[ch],src/gerber.c: Add gdk rendering code back in so it can be compiled if cairo isn't available. * src/gerber.c: Fix g_strconcat calls by adding NULL to end of arguments. 2007-11-26 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am, src/common.h, src/drill.c: Make sure that we define __FUNCTION__ when using a non-gcc compiler. Builds with SunPRO again. 2007-11-26 Dan McMahill * dan AT mcmahill dot net * * configure.in: make sure DEBUG gets set to 0 or 1, not just defined or undefined 2007-11-26 Dan McMahill * dan AT mcmahill dot net * * configure.in: revert previous. We already have --enable-debug. 2007-11-26 Stuart Brorson * sdb AT cloud9 dot net * * configure.in, src/drill.c: Modify dprintf to make it configurable from config.h. This makes it possible to turn on and off for all files using this fcn. 2007-11-26 Dan McMahill * dan AT mcmahill dot net * * configure.in: Instead of completely overriding CFLAGS and LIBS, just append our stuff. Now we don't lose our compiler optimizations and any user supplied flags. Also add a --enable-debug argument which defines DEBUG=1 in config.h. 2007-11-26 Stuart Brorson * sdb AT cloud9 dot net * * src/gerbv.c, src/gerbv_screen.h: Added help->about dialog. 2007-11-26 Dan McMahill * dan AT mcmahill dot net * * doc/sources.txt: correct Excellon URL 2007-11-25 Dan McMahill * dan AT mcmahill dot net * * src/drill.c: fix parsing of example/nollezappare/ThruHolePlated.ncd where there is an M71 code in the header setting the units to metric. 2007-11-23 Dan McMahill * dan AT mcmahill dot net * * Makefile.am, configure.in, desktop/Makefile.am, doc/Makefile.am, doc/PNG-print/Makefile.am, doc/eagle/Makefile.am, doc/html/Makefile.am, example/Makefile.am, example/Mentor-BoardStation/Makefile.am, example/am-test/Makefile.am, example/cslk/Makefile.am, example/dan/Makefile.am, example/eaglecad1/Makefile.am, example/ekf2/Makefile.am, example/jj/Makefile.am, example/nollezappare/Makefile.am, example/numpres/Makefile.am, example/orcad/Makefile.am, man/Makefile.am, scheme/Makefile.am: Remove redundant code. There were several things explicitly added to configure.in and the Makefile.am's that automake/autoconf already add without being told. This consolidates and cleans up the build system a bit more. 2007-11-23 Dan McMahill * dan AT mcmahill dot net * * configure.in, src/Makefile.am: Remove a lot of duplicated and redundant code. For example, no need to AC_SUBST(CFLAGS), that happens automatically. Also if we add things like $GTK_CFLAGS in configure.in, then we don't need to also add them to AM_CFLAGS in src/Makefile.am 2007-11-22 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: do not explicitly set -Wall in AM_CFLAGS. There is a check in configure.in which only sets that if we're using gcc. 2007-11-22 Dan McMahill * dan AT mcmahill dot net * * src/Makefile.am: add missing csv_defines.h 2007-11-22 Dan McMahill * dan AT mcmahill dot net * * configure.in: when using PKG_CHECK_MODULES(FOO,..) don't then explicitly set FOO_CFLAGS and FOO_LIBS. The module check already does that. 2007-11-22 Stuart Brorson * sdb AT cloud9 dot net * * configure.in, src/draw.c, src/draw.h: Added stuff to configure.in to find libcairo and libgtk. Moved #include "cairo/cairo.h" to "cairo.h" in draw.* since cairo include dirs are now automatically found. 2007-11-21 Dan McMahill * dan AT mcmahill dot net * * src/gerb_image.c: If a gerber file doesn't have any nets, then don't complain that there are no apertures. Noted by Bert Timmerman. 2007-11-20 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/draw.c, src/gerbv.c: * Add missing rendiring code for arcs (I missed this with the last commit). Also, fix an error in the oval aperature rendering. 2007-11-19 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, configure.in, example/am-test/am-test.gbx, src/draw.c, src/draw.h, src/gerbv.c, src/pick-and-place.c: * complete the rendering conversion to cairo. Everything that rendered before *should* still render correctly. If it doesn't let me know. As a side note, several rendering bugs were discovered in the aperature macro code, so those are now fixed. * add an extra sanity check in the pick-n-place file parser and help make sure it doesn't incorrectly guess the filetype * add a cairo check to configure.in 2007-11-19 Dan McMahill * dan AT mcmahill dot net * * src/gerber.c, src/gerbv.c: get autoscaling to work when step and repeat is used 2007-11-19 Dan McMahill * dan AT mcmahill dot net * * configure.in, src/Makefile.am: - Check for a recent gtk which is needed due to the cairo stuff. - remove a bunch of lines like AC_SUBST(CC) which aren't needed since autoconf already does that. - remove some defines which are not used anywhere - do not hard code PKG_CONFIG - other random autoconf cleanups 2007-11-19 Dan McMahill * dan AT mcmahill dot net * * Makefile.am, configure.in, example/dan/Makefile.am, example/dan/README.txt, example/dan/top_sr.gbx, scheme/Makefile.am, src/draw.c, src/drill.c, src/gerb_image.h, src/gerber.c, src/gerbv.c: Apply a handful of patches from Thiemo Nagel and Joost Witteveen. - Implement support for %SR% extended gerber commands. - Fix endless loop bug when gerbv encountered an unknown % code: the '%' case in parse_gerb() did not check for EOF. - Setting the initial scale (image->info->min_x, min_y) went wrong for %MOMM% gerber files, as the if() statements compared to the unscaled cur_net->stop_x. And I added the following: - Added an example of a gerber file using the %SR% command. 2007-11-18 Dan McMahill * dan AT mcmahill dot net * * src/draw.c: Use cos() and sin() instead of cosf() and sinf() as the argument is a double anyway and also the float versions are not as widely available. 2007-06-24 Dan McMahill * dan AT mcmahill dot net * * src/gerbv_screen.h: correct the size of statusbar.msgstr to match whats used in the rest of the code 2007-03-01 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/Makefile.am, src/draw.c, src/draw.h, src/draw_amacro.c, src/draw_amacro.h, src/exportimage.c, src/gerbv.c, src/pick-and-place.c: Change rendering from gdk to cairo 2007-02-22 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, example/pick-and-place/LED.xy, src/gerb_image.c, src/gerb_image.h, src/pick-and-place.c: Add code to parse PCB pick-and-place export format 2007-02-17 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/csv.c, src/gerbv.c, src/pick-and-place.c, src/pick-and-place.h: Get simple pick-and-place file to load through command line 2007-02-16 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/gerbv.c, src/pick-and-place.c, src/pick-and-place.h: More cleanup of pick and place code 2007-02-16 Julian Lamb * thepurlieu AT gmail dot com * * ChangeLog, src/Makefile.am, src/gerbv.c, src/pick-and-place.c, src/pick-and-place.h, src/project.c, src/search.c, src/search.h, src/search_cb.c, src/search_cb.h, src/search_file.c, src/search_file.h, src/search_gui.c, src/search_gui.h, src/search_mark.c, src/search_mark.h: [no log message] 2006-10-19 Dan McMahill * dan AT mcmahill dot net * * src/gerbv.c: fix setting of the initial window size when the screen is larger than the display. Patch from David Carr 2006-10-19 Dan McMahill * dan AT mcmahill dot net * * configure.in: add some checks to make sure libpng-config exists 2006-10-19 Dan McMahill * dan AT mcmahill dot net * * rebuild_conf: add $ACLOCAL_FLAGS to aclocal call 2006-09-20 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c: Check that 3/4 of screen width does not cause height to be more than screen height. Make window resizable to smaller than initial size 2006-07-26 Stefan Petersen * spe AT stacken dot kth dot se * * Makefile.am, configure.in, desktop/Makefile.am: Make files in desktop part of distribution 2006-07-26 Stefan Petersen * spe AT stacken dot kth dot se * * desktop/gerbv.desktop: Added from Debian buglist Vassilis Pandis 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/log.c: Updated to use GTK2 by Dino 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Added handling of return values in a lot of places. 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * src/drill.c, src/gerb_file.c, src/gerber.c, src/gerbv.c, src/setup.c: Added handling of return values in a lot of places. 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * doc/PNG-print/Makefile.am: Update that has been laying around 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c, src/project.c: Improved error handling 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, man/gerbv.1.in, rebuild_conf, src/Makefile.am: Update to work with newer autoconf and automake 2006-07-25 Stefan Petersen * spe AT stacken dot kth dot se * * AUTHORS: Obfuscated email addresses 2006-07-24 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c: A small unfck of last patch 2006-07-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c: gerbv handles negative coordinates. Closes #1236047 2006-07-24 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Minor updating 2006-07-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c, src/gerbv.c: Reduce SEGV chance in gerb_fclose situation 2006-07-23 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c: Minor cleanup of previous patch 2006-07-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.h, src/gerber.c, src/gerbv.c: Handles autoscaling of mm better according to SF-alias extensive 2006-07-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c, src/gerb_file.c: Hand patched possible memleaks and SIGSEGVs pointed out by Wolfgang Wieser 2006-05-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Renamed stack_t to macro_stack_t to support build on Darwin 2005-09-29 Dan McMahill * dan AT mcmahill dot net * * ChangeLog: note gcc4 fix 2005-09-29 Dan McMahill * dan AT mcmahill dot net * * src/drill.c: Remove an lval typecast. Not only does this get gerbv to compile with gcc4 and other non-gcc compilers, it was no longer needed as the types involved were all doubles anyway. 2005-05-14 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: cvs server name changed 2005-05-14 Stefan Petersen * spe AT stacken dot kth dot se * * src/exportimage.c: Broke PNG ouput 2005-04-22 Tomasz Motylewski * t dot motylewski AT bfad dot de * * example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv, example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.txt, example/protel-pnp/README.txt, example/protel-pnp/SE_SG_IF_V2.DRL, example/protel-pnp/SE_SG_IF_V2.DRR, example/protel-pnp/SE_SG_IF_V2.GBL, example/protel-pnp/SE_SG_IF_V2.GBO, example/protel-pnp/SE_SG_IF_V2.GBS, example/protel-pnp/SE_SG_IF_V2.GD1, example/protel-pnp/SE_SG_IF_V2.GG1, example/protel-pnp/SE_SG_IF_V2.GM1, example/protel-pnp/SE_SG_IF_V2.GM2, example/protel-pnp/SE_SG_IF_V2.GTL, example/protel-pnp/SE_SG_IF_V2.GTO, example/protel-pnp/SE_SG_IF_V2.GTS, example/protel-pnp/SE_SG_IF_V2.LDP, example/protel-pnp/SE_SG_IF_V2.REP, example/protel-pnp/SE_SG_IF_V2.RUL, example/protel-pnp/SE_SG_IF_V2.TXT, example/protel-pnp/SE_SG_IF_V2.apr, example/protel-pnp/Status_Report.txt: These examples of GERBER files with matching "pick and place".csv file are intented to demonstrate possible usage of gerbv in PCB assembly and any other work which requires efficient searching of elements on PCB. They were donated by Karl Schmittschneider * ks dot electronic AT t-online dot de * to gerbv project on 2005-04-19. 2005-02-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Fixed gc in aperture macro primitives 5, 21 and 22 2005-02-08 Tomasz Motylewski * t dot motylewski AT bfad dot de * * ChangeLog: fixed ChangeLog patch typo 2005-02-08 Tomasz Motylewski * t dot motylewski AT bfad dot de * * ChangeLog, src/gerb_file.c, src/gerbv.c: src/gerbv.c: malloc strlen+2, not +1 src/gerb_file.c: malloc len+1, not len 2005-01-29 Juergen Haas * juergenhaas AT gmxx dot net * * INSTALL.MINGW.WIN32: updated mingw installation instructions 2005-01-26 Juergen Haas * juergenhaas AT gmxx dot net * * configure.in, rebuild_conf, src/Makefile.am: fixed mingw compiation 2005-01-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am: A working make distcheck 2005-01-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/csv.c, src/gerbv.c, src/log.c, src/project.c, src/search.c, src/search.h, src/search_cb.c, src/search_cb.h, src/search_file.c, src/search_file.h, src/search_gui.c, src/search_gui.h, src/search_mark.c, src/search_mark.h, src/setup.h: Removed back portability to GTK+ 1.x. Also some minor reformatting to suit the rest of the codebase. 2004-12-28 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Fixed holes in circles. Closes bug #1050340 2004-12-28 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/dynload.c, src/init.scm, src/scheme-private.h, src/scheme.c, src/scheme.h: Updated TinyScheme to 1.35 2004-12-23 Juergen Haas * juergenhaas AT gmxx dot net * * src/gerbv.c: small bugfix - reported by user U. Bonnes gerbv.c:3045 2004-10-30 Stefan Petersen * spe AT stacken dot kth dot se * * src/search_cb.c, src/search_gui.c, src/search_mark.c: Removed some minor compilation warnings 2004-10-30 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Didn't use local_gc in some aperture primitives. Closes bug #1051045 2004-10-28 Juergen Haas * juergenhaas AT gmxx dot net * * src/gerbv.c, src/search_cb.c: small modifications, bringing it up-to-date 2004-10-14 Juergen Haas * juergenhaas AT gmxx dot net * * doc/html/Makefile.am, doc/html/search__gui_8h-source.html: added Makefile.am to doc/html;removed last html file- 2004-10-14 Juergen Haas * juergenhaas AT gmxx dot net * * configure.in, doc/Doxyfile.nopreprocessing, doc/Makefile.am, doc/html/amacro_8c-source.html, doc/html/amacro_8h-source.html, doc/html/annotated.html, doc/html/batch_8c-source.html, doc/html/batch_8h-source.html, doc/html/classes.html, doc/html/color_8c-source.html, doc/html/color_8h-source.html, doc/html/config_8h-source.html, doc/html/csv_8c-source.html, doc/html/csv_8c.html, doc/html/csv_8h-source.html, doc/html/csv__defines_8h-source.html, doc/html/csv__defines_8h.html, doc/html/dir_000000.html, doc/html/draw_8c-source.html, doc/html/draw_8h-source.html, doc/html/draw__amacro_8c-source.html, doc/html/draw__amacro_8h-source.html, doc/html/drill_8c-source.html, doc/html/drill_8h-source.html, doc/html/dynload_8c-source.html, doc/html/dynload_8h-source.html, doc/html/exportimage_8c-source.html, doc/html/exportimage_8h-source.html, doc/html/files.html, doc/html/gerb__error_8h-source.html, doc/html/gerb__file_8c-source.html, doc/html/gerb__file_8h-source.html, doc/html/gerb__image_8c-source.html, doc/html/gerb__image_8h-source.html, doc/html/gerb__transf_8c-source.html, doc/html/gerb__transf_8c.html, doc/html/gerb__transf_8h-source.html, doc/html/gerber_8c-source.html, doc/html/gerber_8h-source.html, doc/html/gerbv_8c-source.html, doc/html/gerbv_8c.html, doc/html/gerbv__icon_8h-source.html, doc/html/gerbv__screen_8h-source.html, doc/html/globals.html, doc/html/globals_func.html, doc/html/globals_type.html, doc/html/globals_vars.html, doc/html/graph_legend.html, doc/html/index.html, doc/html/log_8c-source.html, doc/html/log_8h-source.html, doc/html/main.html, doc/html/opdefines_8h-source.html, doc/html/project_8c-source.html, doc/html/project_8c.html, doc/html/project_8h-source.html, doc/html/project_8h.html, doc/html/scheme-private_8h-source.html, doc/html/scheme_8c-source.html, doc/html/scheme_8h-source.html, doc/html/search_8c-source.html, doc/html/search_8c.html, doc/html/search_8h-source.html, doc/html/search_8h.html, doc/html/search__cb_8c-source.html, doc/html/search__cb_8c.html, doc/html/search__cb_8h-source.html, doc/html/search__file_8c-source.html, doc/html/search__file_8c.html, doc/html/search__file_8h-source.html, doc/html/search__gui_8c-source.html, src/draw.c, src/search_gui.c: removing rest of doc/html and updating various files;added initial support for a doc/html/Makefile.am 2004-10-14 Juergen Haas * juergenhaas AT gmxx dot net * * doc/html/doxygen.css, doc/html/gerb__transf_8c__incl.dot, doc/html/gerb__transf_8c__incl.md5, doc/html/gerb__transf_8c_a3_cgraph.dot, doc/html/gerb__transf_8c_a3_cgraph.md5, doc/html/gerb__transf_8c_a4_cgraph.dot, doc/html/gerb__transf_8c_a4_cgraph.md5, doc/html/graph_legend.dot, doc/html/project_8c__incl.dot, doc/html/project_8c__incl.md5, doc/html/project_8c_a6_cgraph.dot, doc/html/project_8c_a6_cgraph.md5, doc/html/project_8h__dep__incl.dot, doc/html/project_8h__dep__incl.md5, doc/html/project_8h_a4_cgraph.dot, doc/html/project_8h_a4_cgraph.md5, doc/html/search__gui_8c.html, doc/html/search__mark_8c-source.html, doc/html/search__mark_8c.html, doc/html/search__mark_8h-source.html, doc/html/setup_8c-source.html, doc/html/setup_8h-source.html, doc/html/struct__InterfaceStruct.html, doc/html/structgerb__transf.html, doc/html/structpnp__file.html, doc/html/structpnp__state.html, doc/html/structproject__list__t.html, doc/html/structproject__list__t__coll__graph.dot, doc/html/structproject__list__t__coll__graph.md5, doc/html/tooltable_8c-source.html, doc/html/tooltable_8h-source.html, doc/html/tree.html: removing all files in html/ and placing Makefile.am there; documentation should be created by make doc or similar 2004-10-13 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, INSTALL.MINGW.WIN32, README-Pick-and-Place-search_parts.txt, doc/Doxyfile.nopreprocessing, doc/html/amacro_8c-source.html, doc/html/amacro_8h-source.html, doc/html/annotated.html, doc/html/batch_8c-source.html, doc/html/batch_8h-source.html, doc/html/classes.html, doc/html/color_8c-source.html, doc/html/color_8h-source.html, doc/html/config_8h-source.html, doc/html/csv_8c-source.html, doc/html/csv_8c.html, doc/html/csv_8h-source.html, doc/html/csv__defines_8h-source.html, doc/html/csv__defines_8h.html, doc/html/dir_000000.html, doc/html/doxygen.css, doc/html/draw_8c-source.html, doc/html/draw_8h-source.html, doc/html/draw__amacro_8c-source.html, doc/html/draw__amacro_8h-source.html, doc/html/drill_8c-source.html, doc/html/drill_8h-source.html, doc/html/dynload_8c-source.html, doc/html/dynload_8h-source.html, doc/html/exportimage_8c-source.html, doc/html/exportimage_8h-source.html, doc/html/files.html, doc/html/gerb__error_8h-source.html, doc/html/gerb__file_8c-source.html, doc/html/gerb__file_8h-source.html, doc/html/gerb__image_8c-source.html, doc/html/gerb__image_8h-source.html, doc/html/gerb__transf_8c-source.html, doc/html/gerb__transf_8c.html, doc/html/gerb__transf_8c__incl.dot, doc/html/gerb__transf_8c__incl.md5, doc/html/gerb__transf_8c_a3_cgraph.dot, doc/html/gerb__transf_8c_a3_cgraph.md5, doc/html/gerb__transf_8c_a4_cgraph.dot, doc/html/gerb__transf_8c_a4_cgraph.md5, doc/html/gerb__transf_8h-source.html, doc/html/gerber_8c-source.html, doc/html/gerber_8h-source.html, doc/html/gerbv_8c-source.html, doc/html/gerbv_8c.html, doc/html/gerbv__icon_8h-source.html, doc/html/gerbv__screen_8h-source.html, doc/html/globals.html, doc/html/globals_func.html, doc/html/globals_type.html, doc/html/globals_vars.html, doc/html/graph_legend.dot, doc/html/graph_legend.html, doc/html/index.html, doc/html/log_8c-source.html, doc/html/log_8h-source.html, doc/html/main.html, doc/html/opdefines_8h-source.html, doc/html/project_8c-source.html, doc/html/project_8c.html, doc/html/project_8c__incl.dot, doc/html/project_8c__incl.md5, doc/html/project_8c_a6_cgraph.dot, doc/html/project_8c_a6_cgraph.md5, doc/html/project_8h-source.html, doc/html/project_8h.html, doc/html/project_8h__dep__incl.dot, doc/html/project_8h__dep__incl.md5, doc/html/project_8h_a4_cgraph.dot, doc/html/project_8h_a4_cgraph.md5, doc/html/scheme-private_8h-source.html, doc/html/scheme_8c-source.html, doc/html/scheme_8h-source.html, doc/html/search_8c-source.html, doc/html/search_8c.html, doc/html/search_8h-source.html, doc/html/search_8h.html, doc/html/search__cb_8c-source.html, doc/html/search__cb_8c.html, doc/html/search__cb_8h-source.html, doc/html/search__file_8c-source.html, doc/html/search__file_8c.html, doc/html/search__file_8h-source.html, doc/html/search__gui_8c-source.html, doc/html/search__gui_8c.html, doc/html/search__gui_8h-source.html, doc/html/search__mark_8c-source.html, doc/html/search__mark_8c.html, doc/html/search__mark_8h-source.html, doc/html/setup_8c-source.html, doc/html/setup_8h-source.html, doc/html/struct__InterfaceStruct.html, doc/html/structgerb__transf.html, doc/html/structpnp__file.html, doc/html/structpnp__state.html, doc/html/structproject__list__t.html, doc/html/structproject__list__t__coll__graph.dot, doc/html/structproject__list__t__coll__graph.md5, doc/html/tooltable_8c-source.html, doc/html/tooltable_8h-source.html, doc/html/tree.html, src/csv.c, src/csv.h, src/csv_defines.h, src/gerb_transf.c, src/gerb_transf.h, src/gerbv.c, src/project.c, src/project.h, src/search.c, src/search.h, src/search_cb.c, src/search_file.c, src/search_file.h, src/search_gui.c, src/search_gui.h, src/search_mark.c: doxygen documentation added for many fctns concerning pickandplace; right click on graphically marked and actively selected part now works for all shapes and reports to statusbar and log window;small bugfixes; 2004-09-13 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: No more segfaults from inverting an unloaded layer 2004-09-11 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, INSTALL.MINGW.WIN32, src/gerbv.c, src/project.c, src/project.h, src/search_gui.c, src/search_mark.c: towards right click shows part designator in statusbar: now works with all shapes where pin1 is not on center axis 2004-09-04 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, INSTALL.MINGW.WIN32, src/csv.h, src/dynload.c, src/gerb_file.c, src/gerb_file.h, src/gerber.h, src/gerbv.c, src/project.c, src/search_cb.c: fixed right click shows designator in statusbar does not hang program MINGW issues with path separators gerbv compiles under MINGW (following instructions in INSTALL.MINGW.WIN32) 2004-09-04 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, src/gerb_transf.c, src/gerb_transf.h, src/search.c, src/search.h, src/search_gui.c, src/search_mark.c: fixed graphical representation of parts added gerb_transf_rotate added gerb_transf_shift fixed segfault when searching in comments designator is also shown checked by default 2004-08-28 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, src/gerbv.c, src/project.c: fixed GTK1 compilation issues 2004-08-27 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, JOURNAL.txt, src/csv.c, src/gerb_transf.c, src/gerb_transf.h, src/gerbv.c, src/project.c, src/search.c, src/search.h, src/search_cb.c, src/search_cb.h, src/search_file.h, src/search_gui.c, src/search_gui.h, src/search_mark.c: new: identification of part in active selection by right clicking in screen, rectangular shapes for rectangular objects (based on footprint), code cleanup, memory issues 2004-08-26 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, INSTALL.MINGW.WIN32, JOURNAL.txt, src/gerb_image.c, src/gerbv.c, src/search.c, src/search_cb.c, src/search_gui.c, src/search_mark.c: small bugfixes, usability enhancements, double click in search dialog will now mark item on active layer 2004-08-24 Tomasz Motylewski * t dot motylewski AT bfad dot de * * ChangeLog: * eliminated memory leak MINGW32 gerb_file.c fd->data * forced LC_NUMERIC to "C" in parse_gerb(), fixing bug resulting in very thin lines (aperture size = 0) under GTK2 2004-08-24 Tomasz Motylewski * t dot motylewski AT bfad dot de * * src/gerber.c: forced LC_NUMERIC to "C" in parse_gerb(), fixing bug resulting in very thin lines (aperture size = 0) under GTK2 2004-08-24 Tomasz Motylewski * t dot motylewski AT bfad dot de * * src/gerb_file.c: eliminated memory leak MINGW32 gerb_file.c fd->data 2004-08-24 Tomasz Motylewski * t dot motylewski AT bfad dot de * * ChangeLog, src/gerb_image.c, src/gerbv.c, src/project.c, src/project.h, src/search_cb.c, src/search_mark.c: * cleaned up memory allocation in gerb_image.c * improved project loading (still broken, there is no clear design which function should do what). * fixed memory leak plist_top->filename 2004-08-23 Juergen Haas * juergenhaas AT gmxx dot net * * ChangeLog, src/gerbv.c, src/project.c, src/search.c, src/search_cb.c, src/search_gui.c, src/search_mark.c: bugfixes and saving pnp file into projects file 2004-08-23 Tomasz Motylewski * t dot motylewski AT bfad dot de * * ChangeLog, src/Makefile.am, src/draw.c, src/draw.h, src/draw_amacro.c, src/draw_amacro.h, src/exportimage.c, src/gerb_image.c, src/gerb_image.h, src/gerb_transf.c, src/gerb_transf.h, src/gerbv.c, src/gerbv_screen.h: replaced scale with gerb_transf_t(.scale) - mirroring preparation 2004-08-22 Tomasz Motylewski * t dot motylewski AT bfad dot de * * tags.txt: SEARCH_SELECT_branch merged 2004-08-22 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/Makefile.am: Use libpng-config to find out build parameters 2004-08-22 Stefan Petersen * spe AT stacken dot kth dot se * * rebuild_conf: Adhere to new auto tool standard 2004-08-22 Stefan Petersen * spe AT stacken dot kth dot se * * tags.txt: Added 2004-08-21 Tomasz Motylewski * t dot motylewski AT bfad dot de * * CONTRIBUTORS, ChangeLog, JOURNAL.txt, README-Pick-and-Place-search_parts.txt, configure.in, src/Makefile.am, src/csv.c, src/csv.h, src/csv_defines.h, src/gerb_file.c, src/gerbv.c, src/project.c, src/scheme.h, src/search.c, src/search.h, src/search_cb.c, src/search_cb.h, src/search_file.c, src/search_file.h, src/search_gui.c, src/search_gui.h, src/search_mark.c, src/search_mark.h, src/setup.h: merge from SEARCH_SELECT_branch part finder MINGW32 port 2004-08-21 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Prints only short options when compiled with short options 2004-08-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, doc/Makefile.am, example/Makefile.am, example/Mentor-BoardStation/Makefile.am, example/am-test/Makefile.am, example/cslk/Makefile.am, example/dan/Makefile.am, example/eaglecad1/Makefile.am, example/ekf2/Makefile.am, example/jj/Makefile.am, example/nollezappare/Makefile.am, example/numpres/Makefile.am, example/orcad/Makefile.am: distclean should not remove Makefile.in 2004-08-16 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added Richard Lightman 2004-07-28 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, example/polarity/6_vbat.gbr, example/polarity/README.txt, src/draw.c: Image polarity versus layer polarity fixed 2004-07-20 Tomasz Motylewski * t dot motylewski AT bfad dot de * * configure.in: added sys/types.h sys/stat.h stdlib.h required by src/project.c 2004-07-11 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Aperture macro thermal cross ends in butt 2004-06-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Minor comment improvements and improved size determination 2004-06-24 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_image.c: A segfault source more and a test of commit mails too 2004-06-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Removed two potential segfaults when running RS274D 2004-06-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/batch.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c: MQ_START and MQ_END is removed which also fixes bug #942590 2004-06-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.c, src/gerb_image.h, src/gerbv.c, src/gerbv_screen.h: Added dump to print out parser result 2004-06-15 Stefan Petersen * spe AT stacken dot kth dot se * * files2tag.txt: Forgot to tag some Makefile.am 2004-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: All apertures doesn't have exposure flags 2004-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * example/thermal/dsp.GP1: More examples from Drew Moore and some png's to display how it should look 2004-06-05 Stefan Petersen * spe AT stacken dot kth dot se * * .cvsignore, ChangeLog, doc/.cvsignore, doc/PNG-print/.cvsignore, dontdiff, example/.cvsignore, example/Mentor-BoardStation/.cvsignore, example/am-test/.cvsignore, example/cslk/.cvsignore, example/dan/.cvsignore, example/eaglecad1/.cvsignore, example/ekf2/.cvsignore, example/jj/.cvsignore, example/nollezappare/.cvsignore, example/numpres/.cvsignore, example/orcad/.cvsignore, man/gerbv.1.in, src/gerbv.c: Cleanups and minor fixes from Dimitri 2004-05-25 Stefan Petersen * spe AT stacken dot kth dot se * * src/Makefile.am: init.scm should also make it to the distribution 2004-05-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Aperture macros handles exposure now 2004-05-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Preparation for release 0.16 2004-05-24 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Added some info on z, Z and f buttons 2004-05-24 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added Stefan Thiede 2004-05-19 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, man/gerbv.1.in, src/Makefile.am, src/drill.c, src/gerbv.c, src/tooltable.c, src/tooltable.h: Tool table support from Dimitri 2004-04-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/drill.c: Check for sys/mman.h and removed unncecessary dependency 2004-04-21 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added keys f/F for fit, z for zoom in and Z for zoom out 2004-04-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/drill.c, src/gerb_file.c, src/gerb_file.h, src/gerber.c: Changed gerb_fgetint to return number of parsed characters and omit trailing zeros is properly handled 2004-03-20 Stefan Petersen * spe AT stacken dot kth dot se * * example/trailing/README.txt, example/trailing/cd1r2.1_sieb0.off, example/trailing/cd1r2.1_sieb1.off: Added in support to bug #918344 2004-02-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: In GTK2 two signals get emitted when you press destroy 2004-02-14 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am: Making sure init.scm is installed at the proper place 2004-02-13 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: If angles were exact equal then the circle became a dot 2004-02-08 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Fixed not getting defined by default anymore 2004-02-08 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, man/gerbv.1.in: A bunch of updates to mainly reflect the last additions of features 2004-02-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Save screen.path even when we open a project file from command line 2004-02-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Seg fault when freeing an optarged variable 2004-02-05 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: -p as an alternative --project from Dan 2004-02-01 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Save As opens if you haven't given any project name and project name is put in the title window, both patches from Dan 2003-12-14 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/gerbv.c, src/log.c, src/setup.h: First rought support for GTK+ 2.* 2003-12-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Project saves and restores background color 2003-12-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Fills in a a previously given filename if any is found 2003-12-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, Makefile.am, configure.in, doc/Makefile.am, doc/PNG-print/Makefile.am, doc/eagle/Makefile.am, example/Makefile.am, example/Mentor-BoardStation/Makefile.am, example/am-test/Makefile.am, example/cslk/Makefile.am, example/dan/Makefile.am, example/eaglecad1/Makefile.am, example/ekf2/Makefile.am, example/jj/Makefile.am, example/nollezappare/Makefile.am, example/numpres/Makefile.am, example/orcad/Makefile.am, man/Makefile.am, src/Makefile.am: Now it's possible to build with make dist and check with make distcheck 2003-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/project.c, src/project.h: Inversion in projects, all parameters in all layers and --project works 2003-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added invert layer 2003-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * src/opdefines.h: Part of scheme interpreter that almost didn't make it 2003-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, doc/projectfiles.txt, src/Makefile.am, src/dynload.c, src/dynload.h, src/gerbv.c, src/gerbv_screen.h, src/init.scm, src/project.c, src/project.h, src/scheme-private.h, src/scheme.c, src/scheme.h: Scheme interpreter added giving project file management 2003-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: static some internal functions 2003-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c, src/gerb_file.h: Added gerb_find_file in gerb_file 2003-11-22 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, acconfig.h, configure.in: acconfig removed and more information added to configure.in after warning messages from autoheader 2003-11-13 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/exportimage.c: Simplified pixbuf_to_file_as_png. No speed up, since that is not the time hog 2003-10-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Preparation for release 0.15 2003-10-06 Stefan Petersen * spe AT stacken dot kth dot se * * example/thermal/README.txt, example/thermal/bpB.GP1: Thermal example 2003-10-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Fixed aperture macro primitive no 7 thanks to Drew Moore 2003-09-28 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerber.c: Fixes instances when G04 is written like G4 2003-09-08 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerber.c: Circular polygon outline approximated with short segments solved by Simon Munton 2003-09-08 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerber.c: A polygon filling problem solved by Simon Munton 2003-08-18 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: Fixed nasty bug causing script not to work 2003-08-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Preparation for release 0.14 2003-05-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/amacro.c: Removed malloc.h to simplify porting 2003-04-18 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: A patch from Larry Dolittle that solved a problem with strangely drawn circles 2003-04-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Segfault from RS274D files 2003-03-18 Stefan Petersen * spe AT stacken dot kth dot se * * cvs-tag.sh: Improved with check for tag name and recursive tagging 2003-03-18 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, INSTALL, README, acconfig.h, configure.in, files2tag.txt, man/gerbv.1.in: In preparation for release 0.13 2003-03-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerb_image.h, src/gerber.c: Angles are now double 2003-03-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Better sanity checks for start- and end angle of arcs 2003-03-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Doesn't warn on image rotate zero degrees 2003-03-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, Makefile.am, configure.in, man/Makefile.am, man/gerbv.1.in, src/Makefile.am, src/gerbv.c: Removed the Guile stuff 2003-03-02 Stefan Petersen * spe AT stacken dot kth dot se * * example/exposure/README.txt, example/exposure/example.grb: Added example 2003-03-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Aperture macro primitive 1 is a filled circle 2003-03-01 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.c, src/gerb_image.h, src/gerber.c: Cleaned up parsing of step-and-repeat and new_gerb_image() 2003-02-28 Stefan Petersen * spe AT stacken dot kth dot se * * .cvsignore: Removed diff files and added some more autoconf files 2003-02-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/gerbv.c, src/gerbv_screen.h, src/log.c, src/setup.c, src/setup.h: Added setup.[hc] for setup specific thing like command switches and rc files. 2003-02-22 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Swapping with a non-existent layer caused segfault 2003-02-22 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Small differences in angles were ignored when they shouldn't 2003-02-12 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerber.c: Incremental coordinates support 2003-02-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Preparation for release 0.12 2003-02-08 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Removed a memory leak in drill_guess_format() 2003-02-08 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Small kludge for parsing broken PADS files (==tools in mil) 2003-02-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c: Exchanged some fprintf's with GERB_COMPILE_ERROR 2003-02-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added swap of tooltips too 2003-02-05 Stefan Petersen * spe AT stacken dot kth dot se * * files2tag.txt: Added doc/eagle 2003-02-02 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Good old guys keep on reporting 2003-02-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c: Added a patch from Dan that allows plus signs in the coordinates in drill file 2003-02-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Move layers in the sidebar 2003-02-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/drill.c, src/gerb_image.c, src/gerb_image.h, src/gerber.c: Fixed unit system to handle millimeter everywhere 2003-01-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/log.c, src/log.h: Better control over where error messages go when 2003-01-26 Stefan Petersen * spe AT stacken dot kth dot se * * .cvsignore, ChangeLog, man/.cvsignore, scheme/.cvsignore, src/.cvsignore: Added .cvsignore files 2003-01-25 Stefan Petersen * spe AT stacken dot kth dot se * * example/Mentor-BoardStation/README.txt, example/Mentor-BoardStation/artwork_1.grb: Fixed a major Mentor screw up. See README.txt 2003-01-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.c, src/gerb_image.h, src/gerber.c: Started to fixing units but not complete 2003-01-19 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Bug fixed that caused arcs to be drawn cw instead off ccw in some rare cases 2003-01-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, TODO, files2tag.txt: Minor documentation updates to reflect reality 2003-01-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, man/gerbv.1.in, src/gerbv.c: Update documentation with new log commandline switch 2003-01-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/color.c, src/draw.c, src/drill.c, src/gerb_error.h, src/gerber.c, src/gerbv.c, src/gerbv_screen.h, src/log.c, src/log.h: New error reporting system in place 2003-01-14 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Refixed the RS274D parsing error segfault 2003-01-12 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Another RS274D causing havoc 2002-12-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/gerbv.c, src/gerbv_screen.h: Changes windows store, fixed compilation warning in amacro and made minor cosmetic cleanups in gerbv.c 2002-12-13 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: Cleaned out some broken links and general clean up 2002-12-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Fixed compilation warnings on 64-bit platforms by casting gpointer to long int. 2002-12-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Filled polygons bug 649663 closed 2002-12-03 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added Charles to list of constributors 2002-12-02 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, configure.in, src/amacro.c: Applied patch from Charles Lepple to fix bug #646268 2002-11-26 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Fixing bug 643799 2002-11-25 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerbv.c: Turning all layers on and off 2002-11-24 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Yet another speling error 2002-11-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, doc/eagle/eagle2exc.pl, doc/eagle/eagle2exc.txt: Information on how to generate Excellon from Eagle 2002-11-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Yet another G-code (55) discovered 2002-11-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/draw.c, src/draw_amacro.c, src/gerber.c: Some more bug 642600 which I was completly responsible for... 2002-11-23 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: Deprecated Barco links 2002-11-23 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Fixed bug 642600, which I was not completely responsible for... 2002-11-20 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, files2tag.txt: Release 0.11 preps 2002-11-20 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Dino's don PNGPrintMinitHowto 2002-11-20 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Added blurb about shift+right mouse button 2002-11-19 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Superimposing functions back in business 2002-11-19 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: left and right isn't always easy 2002-11-19 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Changed round off method so when a filled area consisting of several lines is drawn it has bigger potential of being filled 2002-11-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/exportimage.c: Background color was ignored 2002-11-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Made sure all destroy and cancel events are properly handled. Some segfaults were noted here and there. 2002-11-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Made ZOOM_SET also set centering 2002-11-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added Dinos explicit setting of scale 2002-11-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, doc/PNG-print/PNGPrintMiniHowto.txt: Added docs on how to print PNGs generated by gerbv 2002-11-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Robustified if someone tries to parse RS274D files 2002-11-15 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c: Change to allow Orcad386 drill files. 2002-11-07 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Prepare idle_redraw for reentrancy, clean up some long lines. 2002-11-06 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Oops, you need to start the idle function at least once. 2002-11-06 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Do not call gtk_idle_xxx from within a gtk_idle function call 2002-11-05 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog: Removed clipping/no clipping kludge. 2002-11-05 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c, src/gerbv_screen.h: Removed clipping/no clipping kludge. 2002-11-05 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Preempt drawing when there are events to process, otherwise we can run redraw_pixmap partially+completely+partially. This caused some layers to disappear. 2002-11-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/exportimage.c, src/gerbv.c: Exports the whole image now if necessary 2002-11-02 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: gerbv handles aperture macros now(and done so for a long time) 2002-10-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerber.c: If first point in the first line didn't have an aperture defined, this line was drawn wrong 2002-10-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: AS doesn't complain if default values are given 2002-10-31 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Removed incremental redraw, it flickered too much, added option to disable clipping. We should probably make redraw_pixmap more general and make export_png independant of the shown pixmap, later... 2002-10-30 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.h, src/gerber.c: Implemented %SF% and %SR% in parser but ignore them in drawing engine. If they != default values a waring is issued 2002-10-30 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added restart state to redraw_pixmap() and drawing progress on statusbar 2002-10-29 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Fixed bug in drawing of primitive 20 in aperture macros. 2002-10-29 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Close (potential) memory leak by unref:ing temporary pixmaps even when preempting redraw 2002-10-28 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Changed sign on initialisation of screen.clip_bbox.x1. 2002-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Fixed an aperture macro bug that caused multi primitives macros to not be drawn properly. Closes bug #629101. 2002-10-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Replaced nested strncmp with switch/case and fixed a segfault caused by RS274D files. 2002-10-24 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Now the created pixmap is the size of the screen, always independant on the zoom scale. Added option to turn on incremental updates to redraw pixmap for each completed layer. This patch could need some cleaning up in the trans_x vs off_x vs clip_bbox.x1 areas. 2002-10-18 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Stupid size error when allocating buffer. Embarasing. 2002-10-18 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c, src/gerb_file.c, src/gerb_file.h, src/gerber.c, src/gerber.h, src/gerbv.c: Update for platforms were char really are unsigned as it should be 2002-10-16 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * doc/image2pixmap.fig: Added some food for thought regarding allocating smaller pixmaps when zooming 2002-10-14 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Check that the status bar has been created before trying to use it in update_statusbar() 2002-10-14 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Make menu reflect the default unit if set to mm 2002-10-13 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Updated date 2002-10-13 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Version 0.0.10 release prep 2002-10-11 Stefan Petersen * spe AT stacken dot kth dot se * * INSTALL, README, files2tag.txt: Minor updates for 0.0.10 release 2002-10-11 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, acconfig.h, configure.in, src/gerbv.c: Added configure option to set default units to millimeters instead of mils. 2002-10-09 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Smaller cleanups 2002-10-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Fixed bug in new min/max that made macros causing havoc 2002-10-08 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Added some text on activation/deactivation that apparently got lost in the mail 2002-10-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Segfault in min-max code fixed. Closes bug #619652 2002-10-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, man/gerbv.1.in: Added info about new commandline switches and backends 2002-10-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added GTK/GDK command line parameters and parameter --geometry 2002-10-06 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Use either mils or mms in statusbar. This limits window width enough to close bug #615475. 2002-09-29 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerber.c, src/gerbv.c, src/gerbv_screen.h: Closes bug #605985, now using aprture size when calculating bbox. Removed IMG_EXTRA hack. 2002-09-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, acconfig.h, configure.in, src/gerbv_screen.h: Definition of maximum number of simultaneous open files can be done from ./configure --with-maxfiles=xx 2002-09-17 Stefan Petersen * spe AT stacken dot kth dot se * * NEWS: Didn't bother to update this file all the time 2002-09-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: exportpng is configured in by default 2002-09-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added version number in main windows title 2002-09-09 Stefan Petersen * spe AT stacken dot kth dot se * * example/jj/README.txt, example/jj/l1-1.grb, example/jj/l1-2.grb, example/jj/l1-3.grb, example/jj/l1-orig.grb: Added 2002-09-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/amacro.h, src/draw.c, src/draw_amacro.c, src/draw_amacro.h: Dynamic allocation of stack when drawing aperture macros. 2002-09-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/batch.c, src/draw.c, src/gerb_image.h, src/gerber.c, src/gerber.h: Fixed multi quadrant detection 2002-09-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/batch.c, src/draw.c, src/gerb_image.h, src/gerber.c: More Polygon Area fixes. 2002-09-01 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Fixed fatal Polygon Area Fill bug 2002-08-31 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Removed redundant bounding box calculation. No biggie, but it looks nicer 2002-08-27 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_icon.h, src/gerbv_screen.h: Center image on zoom to fit (autoscale), add define for extra 0.1 inch in autoscale 2002-08-27 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Accidental debug message removed 2002-08-27 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c: Changed format guessing to work for yet another special case. 2002-08-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Memoryleak fixes 2002-08-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, files2tag.txt, src/Makefile.am, src/batch.c, src/batch.h, src/gerbv.c, src/scm_gerber.c, src/scm_gerber.h: All batch functionality in batch.[hc] 2002-08-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added (de)activation via keyboard 2002-08-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Fixed zooming to work after (de)selection of a non-loaded layer 2002-08-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Better control over not loading files 2002-08-04 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Updated Dan and Dino 2002-08-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, man/gerbv.1.in: Updates on superimposing 2002-08-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Superimposing functions 2002-08-01 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/draw.h, src/gerbv.c: Changed generation of images to using clipmasks 2002-07-24 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c: Changed parser to allow undefined tools and fake sizes for them. 2002-07-17 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw_amacro.c: Yet another fabs fix 2002-07-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Fixed bug 573016, some gerbers not drawn 2002-07-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.c, src/gerb_image.h, src/gerber.c: Parses and stores %IN% 2002-07-15 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c: Minor cleanup for earlier icon addition 2002-07-15 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_icon.h: Added application icon 2002-07-13 Stefan Petersen * spe AT stacken dot kth dot se * * build_release, cvs-tag.sh, files2tag.txt: Build system fixes to simply conditional tagging 2002-07-13 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, example/ekf/README: Closed bug 578583 saying example/ekf/* shouldn't work since it is RS274D 2002-07-13 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, configure.in: Added --with-gtk-config from Bruno Schwander 2002-07-13 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * : added some pixmaps to be used for icon and perhaps menu icons in gnome, kde, et al. 2002-07-06 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Escape zoom outline 2002-07-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Preparations for release 0.0.9 2002-07-06 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Updated with new features 2002-07-06 Stefan Petersen * spe AT stacken dot kth dot se * * example/Mentor-BoardStation/README.txt, example/Mentor-BoardStation/artwork_1.grb: Added 2002-07-06 Stefan Petersen * spe AT stacken dot kth dot se * * example/dan/README.txt, example/dan/top.gbx: Added 2002-07-05 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Saved us from using a widget. 2002-07-04 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Made status bar not expandable. 2002-07-04 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Changed coordinate display at bottom again, now using a Label instead of Statusbar. Digits don't dance around anymore. Not much space left for any other messages (there are none implemented yet anyway). 2002-07-02 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: s/sprintf/snprintf/, coordinate to mils and mms conversions macrofied 2002-07-01 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Using a single GtkStatusbar widget instead of three. Composing message from strings instead prevents window resizing in 1280x1024 resolution. Created a function to update statusbar. 2002-07-01 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog: Changed changelog 2002-07-01 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Finally got absolute coordinates to work properly! Partly closes feature request 567965 2002-06-20 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Fix for bug 571097, mils are really 0.001 inches and not 0.01 as I thought. Thanks Dan 2002-06-20 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Minor renaming of variables 2002-06-19 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Tried to fix gerber coordinates again. py and not px should be used for mirroring y-axis 2002-06-18 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added background color selection 2002-06-17 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Coordinates shown in statusbar are now in gerber coordinate system (instead of gtk/X11). Units changed to mils and mms. Minor statusbar layout changes. 2002-06-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Ignored if lines were using rectangular apertures to draw. 2002-06-13 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added status bar. Still needs to add code to be able to set a reference position outside of measure mode?! Should update all printfs to add messages in statusbar instead. 2002-06-12 Stefan Petersen * spe AT stacken dot kth dot se * * doc/Makefile.example: An example on how to write a Makefile for docs. Maybe you don't even have to rewrite it at all 2002-06-12 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Autoscale fix and setting of err_gc 2002-06-12 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c: Moved out setting of err_gc 2002-06-12 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Autoscale doesn't translate thing out of window 2002-06-12 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Fix division by zero in draw_zoom_outline(), closes bug 567166 2002-06-11 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c: Changed ENODATA to EIO. Closes bug 567179 2002-06-11 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Can now draw images with negative coordinates. Closes bug 548094. 2002-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: If primitive 4 has the same starting and ending point it will now get filled 2002-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw_amacro.c: Fixed bug causing rotation to be screwed up in primitive 4 2002-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/draw.c, src/draw.h, src/draw_amacro.c, src/draw_amacro.h: Split out aperture macro stuff from draw to draw_amacro 2002-06-10 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Added more digits in distance measurement as suggested by Dan 2002-06-10 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Removed ability to switch between centered and normal outline zooming during drag. Added escape key to abort zooming and repaint screen. Newlines between functions 2002-06-10 Stefan Petersen * spe AT stacken dot kth dot se * * HACKING: Minor cleanups and added blurb about functions. 2002-06-09 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Bugfix for centered outline zooming. Now it actually works 2002-06-09 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Change cursor on keypress (shift for distance measure). Added centered zooming in outline mode (closing feature request 553452). 2002-06-09 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added distance measure color and display of actual zoom box in outline mode. Improved distance string format. 2002-06-08 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Make use of xor drawing mode in zoom outline and distance measure to speed up redraw 2002-06-08 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Added check for libpng 2002-06-07 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Setup a watch while running export png 2002-06-07 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Centered measure distance text, line spacing calculated correctly, minor cleanups 2002-06-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerb_image.h, src/gerber.c: Handles layer polarity 2002-06-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Added reload files 2002-06-06 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: First implementation of request [ 562934 ] measurement tool 2002-06-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerb_image.h, src/gerber.c: Counting and dynamic allocation of memory when drawing polygons with many corners 2002-06-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Added extra check to autoscale 2002-06-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.h, src/gerber.c: Added IC to parser 2002-05-18 Stefan Petersen * spe AT stacken dot kth dot se * * configure.in: Couldn't check for png headers like I thought 2002-05-18 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, acconfig.h, configure.in, src/Makefile.am, src/exportimage.c, src/exportimage.h, src/gerbv.c, src/gerbv_screen.h: Added export image to PNG from Dino 2002-05-17 Stefan Petersen * spe AT stacken dot kth dot se * * configure.in: Minor bug in configure script to enable batch 2002-05-17 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c, src/gerbv_screen.h: Split out the global screen variable 2002-05-16 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, acconfig.h, configure.in, src/gerbv.c, src/scm_gerber.c: Changed default to exclude Guile when configuring 2002-05-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c: Improved error reporting from filehandling 2002-05-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Backing out some commits that came along previous commit 2002-05-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/gerber.h, src/gerbv.c: Moved around verification of gerb_image and use it more clever 2002-05-08 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Don't allow outline zoom on too small areas. Allocate separate outline color 2002-05-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Remember where we loaded file from last time and use it next file selection 2002-05-07 Stefan Petersen * spe AT stacken dot kth dot se * * INSTALL: gschem->gerbv 2002-05-07 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog, src/gerbv.c: Added outline zoom support as requested in feature request 550798 2002-05-07 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/draw.h, src/gerbv.c: Use #define for default cursor shape, for future use Scale by ten percent of current scale value instead of a fixed number 10 behaves better when zooming in very small and very large values for the scale 2002-05-05 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Mouse pointer as a watch was up all the time when no files were loaded at start up 2002-05-05 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Added Anders 2002-05-05 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbc.c: Removed 2002-05-05 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Updates for release 0.0.8 2002-05-03 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog: Added changelog entry for zooming. 2002-05-03 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * AUTHORS: Correcting my e-mail address. 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Translation in autoscale improved 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Ovals and some docs 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * HACKING: More elaboration on code standard 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added Neil and Dino 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * AUTHORS: Added aen 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c: Ovals are ovals and not ellypses 2002-05-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Added some event handling in the draw loop 2002-05-02 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c: Make sure the event is sent to the zoom function when zooming around mouse. Attempt to be preemptive when converting image to pixmap. This gives a small gain in responsiveness, but it is all we have time to do this close to the next release. Note that constantly moving the mouse will prevent screen updates to happen. Can we live with this? To be improved. 2002-05-01 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c, src/gerbv.c: Unrefed some GCs 2002-04-30 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Cleaned out a discusting macro 2002-04-29 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Zooming and format fixes 2002-04-29 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * ChangeLog: Added changelog for zooming changes in src/gerbv.c (rev 1.34 and 1.35). 2002-04-29 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c: First attempt to fix zoom in around mouse pointer. There seems to be some rounding error. I suspect it is in the centered zoom centering code. 2002-04-29 Anders Eriksson * aenfaldor AT users dot sourceforge dot net * * src/gerbv.c: Zooming is now centered to screen center. This is much nicer than previous behaviour, but it does not quite close [ gerbv-Bugs-548128 ]. 2002-04-28 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_image.h: Format statement now more completly handled (bug 549602) 2002-04-28 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Format statement now more completly handled (bug 549602) 2002-04-28 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1.in: Added blurb about zooming 2002-04-28 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Zooming number constants removed 2002-04-27 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c: Spelling error axle->axis 2002-04-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Implemented unload file and changed name of all open functions to load 2002-04-25 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c: Fixes segfault when opening empty file (bug 548578) 2002-04-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, man/gerbv.1, man/gerbv.1.in: Updated man page 2002-04-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, example/orcad/README.txt, example/orcad/ast.ps, example/orcad/rs232_cm.asb, example/orcad/rs232_cm.ast, example/orcad/rs232_cm.bot, example/orcad/rs232_cm.drd, example/orcad/rs232_cm.smb, example/orcad/rs232_cm.smt, example/orcad/rs232_cm.ssb, example/orcad/rs232_cm.sst, example/orcad/rs232_cm.top, example/orcad/thruhole.tap: Added example/orcad 2002-04-10 Stefan Petersen * spe AT stacken dot kth dot se * * example/cslk/README.txt, example/cslk/cslk.gbx, example/cslk/cslk.ps: Added 2002-04-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Fixed mq arcs so circles are circles and width/height are correctly calculated 2002-04-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Fixed drawing direction of arcs. Some other issues left in mq arcs left. 2002-04-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Minor cleanups by using switch/case instead of loads of strncmp 2002-04-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c, src/gerber.h: Fixed some numerical constants in verify_gerb 2002-04-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Color selection and blurb abt zooming and gerber layers 2002-04-03 Stefan Petersen * spe AT stacken dot kth dot se * * TODO: Added gerber layers and zooming. Removed some overdue things. 2002-04-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Color selection on layers added 2002-02-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Added string.h 2002-02-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: Release 0.0.7 preparations 2002-02-05 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: Added info abt gerber2eps 2002-02-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Aperture macro verification finalized 2002-02-03 Stefan Petersen * spe AT stacken dot kth dot se * * example/am-test/am-test.gbx: Added 2002-02-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c: Bugfixes in primitive 6 and 7 after verification. 2002-01-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Rewrote parse_aperture_defintion to handle aperture macro definitions without parameters 2002-01-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/amacro.c, src/draw.c: A bunt bugfixes in aperture macro parsing and drawing 2002-01-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: All primitive aperture macros implemented, but not fully 2001-12-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c: Drawing aperture macros with some elementary macro primitives 2001-12-30 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Minor fix to drill_file_p(), which was broken with files using CR+LF 2001-12-29 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, doc/aperturemacro.txt, src/Makefile.am, src/amacro.c, src/amacro.h, src/gerb_image.c, src/gerb_image.h, src/gerber.c: First rough cut at parsing aperture macros 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog: Minor fixes to gerber.c and gerb_file.c 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * src/gerb_file.c: Changed gerb_fgetstring() back to behave as before, except for one bug 2001-12-29 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: Fixed minor bug was added last time 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * src/gerb_file.c: Fixed gerb_fgetstring() 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * src/gerber.c: Fixed small memory leak in parse_aperture_definition() 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog: Autodetect of drill file changed, error check of mmap() return value added. 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Autodetect of drill file changed back to allow special cases. 2001-12-29 Andreas Andersson * e92_aan AT e dot kth dot se * * src/gerb_file.c: Error check of return value from mmap() added. 2001-12-29 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerb_file.c, src/gerb_file.h, src/gerber.c: Added gerb_fgetstring 2001-12-15 Stefan Petersen * spe AT stacken dot kth dot se * * configure.in: Updated to release 0.0.6 2001-12-14 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerbv.c: Autoscaling and autocentering 2001-12-11 Stefan Petersen * spe AT stacken dot kth dot se * * configure.in: Increased version to 0.0.6pre2 2001-12-11 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Fixed Clear All bug remaining after pan rewrite 2001-12-11 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Allocated pixmap must be bigger then max-min if there is a big object close to the edge. 2001-12-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Changed prelighting on buttons 2001-12-10 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Forgot to check if we had any pixmap to draw 2001-12-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: expose_event handles partial expose proper 2001-12-09 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Major rewrite of panningand minor bugfix 2001-12-09 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Mjor rewrite of panning for speed 2001-12-08 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c: min/max bug fixed 2001-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Remake of last commit 2001-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Pseudo drawing optimizations and non existant files gives proper error messages 2001-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Error color and error messages improvment 2001-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c: Pushed error messages out 2001-12-07 Stefan Petersen * spe AT stacken dot kth dot se * * src/draw.c, src/draw.h: Pseudo optimized drawing 2001-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, scheme/Makefile.am: scheme/gerb-debug.scm gets installed too 2001-12-06 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c, src/gerb_image.c, src/gerber.c, src/gerbv.c: Exchanged bzero with memset for portability 2001-12-06 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c, src/drill.h: Now allows tool number 0. 2001-12-05 Stefan Petersen * spe AT stacken dot kth dot se * * example/ekf2/README.txt, example/ekf2/d1.grb, example/ekf2/drill0.exc, example/ekf2/drill1.exc, example/ekf2/drill20.exc, example/ekf2/drill30.exc, example/ekf2/gnd.grb, example/ekf2/l0.grb, example/ekf2/l1.grb, example/ekf2/l2.grb, example/ekf2/l3.grb, example/ekf2/l4.grb, example/ekf2/l5.grb, example/ekf2/pow.grb, example/ekf2/pow3.grb, example/ekf2/resplan.grb, example/ekf2/sieb0.grb, example/ekf2/sieb1.grb, example/ekf2/stp0.grb, example/ekf2/stp1.grb: Added 2001-12-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/color.c, src/gerber.c, src/scm_gerber.c: Turned on -Wall and cleaned up after it 2001-12-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c, src/gerb_file.c, src/gerb_file.h, src/gerber.c: Utilize the file read functions 2001-12-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb_file.c, src/gerb_file.h: Added function gerb_getdouble and gerb_getint 2001-12-03 Stefan Petersen * spe AT stacken dot kth dot se * * src/drill.h, src/gerber.h, src/gerbv.c: Bugfix for lastminute .h name change 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/Makefile.am, src/drill.c, src/drill.h, src/gerb_file.c, src/gerb_file.h, src/gerber.c, src/gerber.h, src/gerbv.c: Improved parsing speed by implementing new file io 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Minor cleanups of open and autodetection, major cleanup of color scheme 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * man/gerbv.1: Updated man page to reflect autodetection of file type 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/color.c, src/color.h, src/gerbv.c: Major cleanup of the whole color mess 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/Makefile.am, src/color.c, src/color.h, src/gerbv.c: color.[hc] is split out from gerbv.c 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Cleaned up open functions since we now have automatic detection of drill files 2001-12-02 Stefan Petersen * spe AT stacken dot kth dot se * * src/drill.c: New algo to see if it's a drill file 2001-12-02 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog: gerbv now does several layers at once 2001-12-02 Andreas Andersson * e92_aan AT e dot kth dot se * * src/draw.c, src/draw.h: Floating point values rounded instead of truncated in image2pixmap() 2001-12-02 Andreas Andersson * e92_aan AT e dot kth dot se * * src/gerbv.c: Now shows layers simultaneously. 2001-11-27 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c, src/gerbv.c: Added autodetection of file type. 2001-11-27 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c, src/drill.h: Added drill file recognition function. 2001-11-26 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in: ./configure --data works 2001-11-26 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added jj and wr 2001-11-26 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c: More commands recognised. Somewhat better coordinate parsing. 2001-11-23 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerb_image.h, src/gerber.c, src/scm_gerber.c: Parses and draws polygon area fills 2001-11-21 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: Added Execellon link 2001-11-21 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c: Better format guessing. 2001-11-20 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: D01-D03 on a single line is also a change 2001-11-20 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c, src/gerber.h, src/scm_gerber.c: Minor bugfixes 2001-11-15 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Tooltips 2001-11-14 Stefan Petersen * spe AT stacken dot kth dot se * * NEWS: Added 0.0.5 information 2001-11-14 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, configure.in, src/gerbv.c: Changed speed key and increased release number 2001-11-08 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/drill.c, src/drill.h, src/gerb_image.c, src/gerb_image.h, src/gerber.c, src/gerber.h, src/scm_gerber.c, src/scm_gerber.h: Created new "class", gerb_image 2001-11-07 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerber.c: Multi quadrant arcs support 2001-11-06 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, TODO, src/drill.c, src/drill.h: Drill file parser now ignores unstandard text in headers, which means it can cope with output from more CAD systems. 2001-11-05 Stefan Petersen * spe AT stacken dot kth dot se * * scheme/gerb-ps.scm: Fixed mm conversion 2001-11-05 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/drill.c, src/scm_gerber.c: Backend interface generates proper aperture list even for drill files 2001-11-04 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, man/gerbv.1, src/gerbv.c: Command line -d support added 2001-11-03 Stefan Petersen * spe AT stacken dot kth dot se * * scheme/gerb-debug.scm: debug tool for scheme backends 2001-11-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, scheme/gerb-ps.scm, src/gerber.c, src/gerber.h, src/scm_gerber.c: Changed list delivered to scheme backend 2001-11-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c: Inserted check for undefined apertures that was earlier removed 2001-11-02 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerber.c, src/gerber.h, src/gerbv.c: Calculates arc data when parsing and not when drawing, and removed some defines 2001-10-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, README, src/gerbv.c: Zooming with scroll wheel on mouse added. 2001-10-30 Stefan Petersen * spe AT stacken dot kth dot se * * example/eaglecad1/top-cop.gbx: Added. From Dan Christian. 2001-10-30 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerber.c, src/gerber.h: Fixed bug causing false points when the file just changed aperture 2001-10-29 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/drill.c, src/gerber.c, src/gerber.h, src/gerbv.c: Moved new_image() to the correct place. 2001-10-29 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: Checks out a release based on tag built from release number and not a pure CVS image 2001-10-28 Andreas Andersson * e92_aan AT e dot kth dot se * * ChangeLog, src/Makefile.am, src/draw.c, src/drill.c, src/drill.h, src/gerber.c, src/gerbv.c: First "functional" drill file support incorporated into main program. 2001-10-28 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/draw.c, src/gerber.c, src/gerber.h, src/scm_gerber.c: Aperture array simplified 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, NEWS, build_release, src/drill.c, src/drill.h, src/gerber.c, src/gerber.h, src/gerbv.c, src/scm_gerber.c, src/scm_gerber.h: typedef:ed all structs to *_t 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerber.c, src/gerber.h: EagleCad fixes 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: EagleCad and release 0.0.4 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * NEWS, configure.in: Updated for release 0.0.4 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS: Added Dan and Fredrik 2001-10-27 Stefan Petersen * spe AT stacken dot kth dot se * * AUTHORS: Added Pitch 2001-10-25 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c, src/drill.h: parse_drillfile() now returns a regular gerb_image. Removed lots of unnecessary code. 2001-10-24 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerbv.c: Missed including draw.h 2001-10-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Changed some #ifdef NO_GUILE 2001-10-24 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/Makefile.am, src/draw.c, src/draw.h, src/gerbv.c: Split out drawing functions to draw.c 2001-10-23 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Removed evil C++ comments to pacify Stefan ;) 2001-10-22 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Cleaned example directory 2001-10-22 Stefan Petersen * spe AT stacken dot kth dot se * * example/numpres.pcb, example/numpres.pcb.output_componentmask.grb, example/numpres.pcb.output_componentsilk.grb, example/numpres.pcb.output_group1.grb, example/numpres.pcb.output_group2.grb, example/numpres.pcb.output_plated-drill.grb, example/numpres.pcb.output_soldermask.grb, example/numpres.pcb.output_unplated-drill.grb, example/numpres/numpres.pcb, example/numpres/numpres.pcb.output_componentmask.grb, example/numpres/numpres.pcb.output_componentsilk.grb, example/numpres/numpres.pcb.output_group1.grb, example/numpres/numpres.pcb.output_group2.grb, example/numpres/numpres.pcb.output_plated-drill.grb, example/numpres/numpres.pcb.output_soldermask.grb, example/numpres/numpres.pcb.output_unplated-drill.grb: Moved files to separate directory 2001-10-22 Stefan Petersen * spe AT stacken dot kth dot se * * example/ekf/README, example/ekf/ekf.gap, example/ekf/ekf_08.apt, example/ekf/l1.off: Added 2001-10-22 Stefan Petersen * spe AT stacken dot kth dot se * * doc/sources.txt: Added info abt gerb2tif 2001-10-21 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, src/gerbv.c: Changed cw/ccw handling when drawing arcs 2001-10-13 Andreas Andersson * e92_aan AT e dot kth dot se * * src/drill.c: Some (very) minor fixes, e.g. no longer uses a dummy hole at the beginning of the list of holes. 2001-10-13 Andreas Andersson * e92_aan AT e dot kth dot se * * example/nollezappare/ThruHolePlated.ncd, src/drill.c, src/drill.h: First "working" drill file parser. Manages a subset of the output from only one CAD system (Veribest), but it's a start... 2001-10-09 Stefan Petersen * spe AT stacken dot kth dot se * * CONTRIBUTORS, ChangeLog, src/gerber.c, src/gerber.h, src/scm_gerber.c: Added D flag for Format Statement in both parser and scm conversion 2001-09-09 Stefan Petersen * spe AT stacken dot kth dot se * * configure.in: 0.0.3 release 2001-09-09 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: Line in .cvspass has port number now 2001-09-03 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: Backed out of 1.3 changes 2001-09-03 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog, INSTALL, configure.in: Fixed bug causing at least Solaris not to be able to be configured and added some documentation in INSTALL 2001-09-01 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Failed automake fix desc. 2001-09-01 Stefan Petersen * spe AT stacken dot kth dot se * * build_release, rebuild_conf: Automake now _copies_ files instead of just linking 2001-08-31 Stefan Petersen * spe AT stacken dot kth dot se * * ChangeLog: Backend updates, minor directory clean up, fix move to sourceforge in build_release 2001-08-31 Stefan Petersen * spe AT stacken dot kth dot se * * scheme/gerb-ps.scm, src/gerbv.c, src/scm_gerber.c, src/scm_gerber.h: Backend now receives filename of parsed file 2001-08-31 Stefan Petersen * spe AT stacken dot kth dot se * * src/gerb-ps.scm: By mistake this was added during import 2001-08-31 Stefan Petersen * spe AT stacken dot kth dot se * * AUTHORS, CONTRIBUTORS: Split up AUTHORS into AUTHORS and CONTRIBUTORS 2001-08-31 Stefan Petersen * spe AT stacken dot kth dot se * * build_release: Uses anonymous login on sourceforge. Checks that a login ha been done 2001-08-30 Stefan Petersen * spe AT stacken dot kth dot se * * Initial revision gerbv-2.7.0/depcomp0000755000175000017500000005601613423533413014073 0ustar carstencarsten#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gerbv-2.7.0/Makefile.in0000644000175000017500000007122613423533412014562 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = intl/Makefile CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/intl/Makefile.in ABOUT-NLS AUTHORS COPYING \ ChangeLog INSTALL NEWS README TODO compile config.guess \ config.rpath config.sub install-sh ltmain.sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = \ src \ scheme \ share/glib-2.0/schemas \ desktop \ doc man \ intl po \ example \ test \ win32 EXTRA_DIST = BUGS CONTRIBUTORS HACKING AUTHORS ChangeLog COPYING INSTALL \ NEWS README \ TODO \ autogen.sh README-cvs.txt README-release.txt \ README-win32.txt icon-theme-installer BUGS DISTCHECK_CONFIGURE_FLAGS = \ --disable-update-desktop-database GTK_UPDATE_ICON_THEME_BIN=true all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ --with-included-gettext \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-generic \ distclean-hdr distclean-libtool distclean-tags distcleancheck \ distdir distuninstallcheck dvi dvi-am html html-am info \ info-am install install-am install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile .PHONY: doxygen doxygen: doxygen doc/Doxyfile.nopreprocessing # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/po/0000755000175000017500000000000013421555751013133 5ustar carstencarstengerbv-2.7.0/po/Rules-quot0000644000175000017500000000414213421555750015136 0ustar carstencarsten# This file, Rules-quot, can be copied and used freely without restrictions. # Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \ | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \ { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \ $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \ ;; \ *) \ $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \ ;; \ esac } 2>/dev/null > $$tmpdir/$$lang.new.po \ ; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header gerbv-2.7.0/po/boldquot.sed0000644000175000017500000000033113421555751015456 0ustar carstencarstens/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g s/“/“/g s/”/”/g s/‘/‘/g s/’/’/g gerbv-2.7.0/po/en@boldquot.header0000644000175000017500000000247113421555751016565 0ustar carstencarsten# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # gerbv-2.7.0/po/Makevars0000644000175000017500000000365513421555714014637 0ustar carstencarsten# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # Prevent .po files accidentally update. # To update .po files call 'make update-po' manually. PO_DEPENDS_ON_POT = no # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ \ --from-code=UTF-8 # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = gEDA Developers # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = gerbv-devel@lists.sourceforge.net # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = gerbv-2.7.0/po/quot.sed0000644000175000017500000000023113421555751014614 0ustar carstencarstens/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g gerbv-2.7.0/po/POTFILES.in0000644000175000017500000000071413421555714014711 0ustar carstencarsten# List of source files which contain translatable strings. src/attribute.c src/authors.c src/bugs.c src/callbacks.c src/csv.c src/draw-gdk.c src/draw.c src/drill.c src/drill_stats.c src/dynload.c src/export-drill.c src/export-image.c src/export-isel-drill.c src/export-rs274x.c src/gerb_file.c src/gerb_image.c src/gerb_stats.c src/gerber.c src/gerbv.c src/interface.c src/interface.h src/main.c src/pick-and-place.c src/project.c src/render.c src/tooltable.c gerbv-2.7.0/po/insert-header.sin0000644000175000017500000000124013421555751016375 0ustar carstencarsten# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } gerbv-2.7.0/po/en@quot.header0000644000175000017500000000226313421555751015723 0ustar carstencarsten# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # gerbv-2.7.0/po/ru.po0000644000175000017500000036505513421555714014136 0ustar carstencarsten# Gerbv Russian translation # Copyright (C) 2012 gEDA Developers # This file is distributed under the same license as the Gerbv package. # # Sergey Alyoshin , 2012-2019 # msgid "" msgstr "" "Project-Id-Version: gerbv 2.7 ru\n" "Report-Msgid-Bugs-To: gerbv-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2019-01-20 15:44+0300\n" "PO-Revision-Date: 2019-01-20 15:51+0300\n" "Last-Translator: Sergey Alyoshin \n" "Language-Team: gEDA user \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: src/attribute.c:323 msgid "gerbv" msgstr "Gerbv" #: src/attribute.c:507 #, c-format msgid "%s: unknown type of HID attribute\n" msgstr "%s: неизвестный тип HID-атрибута\n" #: src/authors.c:7 msgid "Anders Eriksson" msgstr "Anders Eriksson" #: src/authors.c:8 msgid "Andreas Andersson aka Pitch" msgstr "Andreas Andersson aka Pitch" #: src/authors.c:9 msgid "Dan McMahill" msgstr "Dan McMahill" #: src/authors.c:10 msgid "David Carr" msgstr "David Carr" #: src/authors.c:11 msgid "Joerg Wunsch" msgstr "Joerg Wunsch" #: src/authors.c:12 msgid "Joost Witteveen" msgstr "Joost Witteveen" #: src/authors.c:13 msgid "Juergen Haas" msgstr "Juergen Haas" #: src/authors.c:14 msgid "Julian Lamb" msgstr "Julian Lamb" #: src/authors.c:15 msgid "Sergey Alyoshin" msgstr "Сергей Алёшин" #: src/authors.c:16 msgid "Stefan Petersen" msgstr "Stefan Petersen" #: src/authors.c:17 msgid "Stuart Brorson" msgstr "Stuart Brorson" #: src/authors.c:18 msgid "Tomasz Motylewski" msgstr "Tomasz Motylewski" #: src/authors.c:19 msgid "Trevor Blackwell" msgstr "Trevor Blackwell" #: src/authors.c:20 msgid "... and many others." msgstr "... и многие другие." #: src/bugs.c:7 msgid "Currently KNOWN BUGS" msgstr "Известные ошибки" #: src/bugs.c:9 msgid "All OS:" msgstr "Для всех ОС:" #: src/bugs.c:11 msgid "" "If layer orientation modified with rotation and rendering mode is 'Fast' or" msgstr "" "Если для слоя выполнен поворот и выбран режим отображения «Быстрое» или" #: src/bugs.c:12 msgid "'Fast, with XOR' (GDK rendering) line22 macro apertures are not rotated" msgstr "" "«Искл. ИЛИ» (отрисовка GDK), то макосы апертуры линия22 не будут повёрнуты" #: src/bugs.c:13 msgid "and not correctly displayed." msgstr "и будут отображены некорректно." #: src/bugs.c:15 msgid "" "Reporting about macro parameters (obtained via analyze -> analyze visible" msgstr "" "Данные о макропараметрах (получаемые по «Анализ → Анализировать видимые" #: src/bugs.c:16 msgid "Gerber layers, and found in the Aperture definitions tab) incorrectly" msgstr "" "слои Gerber», и отображаемые во вкладке «Определение апертур») не " "соответствуют" #: src/bugs.c:17 msgid "reports the macro parameters found." msgstr "найденным макропараметрам." #: src/callbacks.c:83 msgid "Gerbv Project" msgstr "Проект Gerbv" #: src/callbacks.c:136 msgid "No layers are currently loaded. A layer must be loaded first." msgstr "Не открыто ни одного слоя." #: src/callbacks.c:154 msgid "Do you want to close any open layers and start a new project?" msgstr "Закрыть все открытые слои и начать новый проект?" #: src/callbacks.c:156 msgid "" "Starting a new project will cause all currently open layers to be closed. " "Any unsaved changes will be lost." msgstr "" "Все открытые слои будут закрыты. Все не сохранённые изменения будут потеряны." #: src/callbacks.c:190 msgid "Do you want to close any open layers and load an existing project?" msgstr "Закрыть все открытые слои и открыть существующий проект?" #: src/callbacks.c:192 msgid "" "Loading a project will cause all currently open layers to be closed. Any " "unsaved changes will be lost." msgstr "" "При открытии проекта все текущие слои будут закрыты. Все не сохранённые " "изменения будут потеряны." #: src/callbacks.c:355 src/interface.c:372 src/interface.c:1022 #: src/interface.c:1171 msgid "Open Gerbv project, Gerber, drill, or pick&place files" msgstr "Открыть проект Gerbv, файлы Gerber, сверловки или расположения" #: src/callbacks.c:417 msgid "Gerbv cannot export this file type" msgstr "Gerbv не может экспортировать этот формат файла" #: src/callbacks.c:457 msgid "Unknown Layer type for merge" msgstr "Неизвестный тип слоя для объединения" #: src/callbacks.c:472 msgid "Not Enough Files of same type to merge" msgstr "Недостаточно слоёв одного типа для объединения" #: src/callbacks.c:519 src/callbacks.c:587 msgctxt "file name" msgid "untitled" msgstr "безымянный" #: src/callbacks.c:554 msgid "No layer is currently active" msgstr "Нет активного слоя" #: src/callbacks.c:555 msgid "Please select a layer and try again." msgstr "Выберите слой и попробуйте снова." #: src/callbacks.c:580 src/interface.c:494 msgid "Save project as..." msgstr "Сохранить проект как..." #: src/callbacks.c:598 msgid "All" msgstr "Все" #: src/callbacks.c:605 src/callbacks.c:617 src/callbacks.c:629 #: src/callbacks.c:650 #, c-format msgid "Export visible layers to %s file as..." msgstr "Экспорт видимых слои в файл %s как..." #: src/callbacks.c:606 msgid "PS" msgstr "PS" #: src/callbacks.c:618 msgid "PDF" msgstr "PDF" #: src/callbacks.c:630 msgid "SVG" msgstr "SVG" #: src/callbacks.c:642 #, c-format msgid "Export \"%s\" layer #%d to DXF file as..." msgstr "Экспортировать слой «%s» №%d в файл DXF как..." #: src/callbacks.c:651 msgid "PNG" msgstr "PNG" #: src/callbacks.c:658 msgid "DPI:" msgstr "DPI:" #: src/callbacks.c:662 src/callbacks.c:664 msgid "DPI value, autoscaling if 0" msgstr "Значение DPI, 0 для автомасштабирования" #: src/callbacks.c:671 #, c-format msgid "Export \"%s\" layer #%d to RS-274X file as..." msgstr "Экспортировать слой «%s» №%d в файл RS-274X как..." #: src/callbacks.c:683 msgid "Export merged visible layers to RS-274X file as..." msgstr "Экспортировать объединение видимых слоёв в файл RS-274X как..." #: src/callbacks.c:692 #, c-format msgid "Export \"%s\" layer #%d to Excellon drill file as..." msgstr "Экспортировать слой «%s» №%d в файл сверловки Excellon как..." #: src/callbacks.c:704 msgid "Export merged visible layers to Excellon drill file as..." msgstr "" "Экспортировать объединение видимых слоёв в файл сверловки Excellon как..." #: src/callbacks.c:713 #, c-format msgid "Export \"%s\" layer #%d to ISEL NCP drill file as..." msgstr "Экспортировать слой «%s» №%d в файл сверловки ISEL NCP как..." #: src/callbacks.c:721 #, c-format msgid "Export \"%s\" layer #%d to gEDA PCB file as..." msgstr "Экспортировать слой «%s» №%d в файл gEDA PCB как..." #: src/callbacks.c:727 #, c-format msgid "Save \"%s\" layer #%d as..." msgstr "Сохранить слой «%s» №%d как..." #: src/callbacks.c:755 msgid "Not enough Gerber layers are visible" msgstr "Недостаточно видимых слоёв Gerber" #: src/callbacks.c:756 msgid "Two or more Gerber layers must be visible for export with merge." msgstr "" "Для экспорта с объединением необходимо два или более видимых слоя Gerber." #: src/callbacks.c:762 msgid "Not enough Excellon layers are visible" msgstr "Недостаточно видимых слоёв Excellon" #: src/callbacks.c:763 msgid "Two or more Excellon layers must be visible for export with merge." msgstr "" "Для экспорта с объединением необходимо два или более видимых слоя Excellon." #: src/callbacks.c:769 msgid "No layers are visible" msgstr "Нет видимых слоёв" #: src/callbacks.c:769 msgid "One or more layers must be visible for export." msgstr "Для экспорта необходимо два или более видимых слоя." #: src/callbacks.c:815 #, c-format msgid "\"%s\" layer #%d saved as DXF in \"%s\"" msgstr "Слой «%s» №%d сохранён как DXF в «%s»" #: src/callbacks.c:863 #, c-format msgid "\"%s\" layer #%d saved as Gerber in \"%s\"" msgstr "Слой «%s» №%d сохранён как Gerber в «%s»" #: src/callbacks.c:873 #, c-format msgid "\"%s\" layer #%d saved as drill in \"%s\"" msgstr "Слой «%s» №%d сохранён как сверловка в «%s»" #: src/callbacks.c:882 #, c-format msgid "\"%s\" layer #%d saved as ISEL NCP drill in \"%s\"" msgstr "Слой «%s» №%d сохранён как сверловка ISEL NCP в «%s»" #: src/callbacks.c:891 #, c-format msgid "\"%s\" layer #%d saved as gEDA PCB in \"%s\"" msgstr "Слой «%s» №%d сохранён как gEDA PCB в «%s»" #: src/callbacks.c:902 #, c-format msgid "Merged visible Gerber layers and saved in \"%s\"" msgstr "Объединение видимых слоев Gerber сохранено в «%s»" #: src/callbacks.c:917 #, c-format msgid "Merged visible drill layers and saved in \"%s\"" msgstr "Объединение видимых слоев сверловки сохранено в «%s»" #: src/callbacks.c:1104 msgid "FATAL" msgstr "ФАТАЛЬНАЯ ОШИБКА" #: src/callbacks.c:1106 msgid "ERROR" msgstr "ОШИБКА" #: src/callbacks.c:1108 msgid "Warning" msgstr "Предупреждение" #: src/callbacks.c:1110 src/callbacks.c:1217 src/callbacks.c:1254 #: src/callbacks.c:1276 src/callbacks.c:1584 src/callbacks.c:1613 msgid "Note" msgstr "Замечание" #: src/callbacks.c:1138 msgid "No Gerber layers visible!" msgstr "Нет видимых слоёв Gerber!" #: src/callbacks.c:1142 #, c-format msgid "No errors found in %d visible Gerber layer." msgid_plural "No errors found in %d visible Gerber layers." msgstr[0] "Ошибок не найдено в %d видимом слое Gerber." msgstr[1] "Ошибок не найдено в %d видимых слоях Gerber." msgstr[2] "Ошибок не найдено в %d видимых слоях Gerber." #: src/callbacks.c:1150 #, c-format msgid "Found errors in %d visible Gerber layer." msgid_plural "Found errors in %d visible Gerber layers." msgstr[0] "Найдены ошибки в %d видимом слое Gerber." msgstr[1] "Найдены ошибки в %d видимых слоях Gerber." msgstr[2] "Найдены ошибки в %d видимых слоях Gerber." #: src/callbacks.c:1168 src/callbacks.c:1329 src/callbacks.c:1535 msgid "Layer" msgstr "Слой" #: src/callbacks.c:1168 src/callbacks.c:1535 msgid "Type" msgstr "Тип" #: src/callbacks.c:1169 src/callbacks.c:1536 msgid "Description" msgstr "Описание" #: src/callbacks.c:1181 msgid "RS-274X file" msgstr "Файл RS-274X" #: src/callbacks.c:1183 src/callbacks.c:1550 #, c-format msgid "%g x %g %s" msgstr "%g × %g %s" #: src/callbacks.c:1189 src/callbacks.c:1556 msgid "Bounding size" msgstr "Размер" #: src/callbacks.c:1215 src/callbacks.c:1252 src/callbacks.c:1274 #: src/callbacks.c:1295 src/callbacks.c:1382 src/callbacks.c:1582 #: src/callbacks.c:1611 src/callbacks.c:1645 msgid "Code" msgstr "Код" #: src/callbacks.c:1216 src/callbacks.c:1253 src/callbacks.c:1275 #: src/callbacks.c:1296 src/callbacks.c:1383 src/callbacks.c:1583 #: src/callbacks.c:1612 src/callbacks.c:1644 src/callbacks.c:1675 msgctxt "table" msgid "Count" msgstr "Кол-во" #: src/callbacks.c:1241 src/callbacks.c:1600 msgid "unknown G-codes" msgstr "Неизвестные G-коды" #: src/callbacks.c:1262 msgid "unknown D-codes" msgstr "Неизвестные D-коды" #: src/callbacks.c:1263 msgid "D-code errors" msgstr "Ошибки D-кодов" #: src/callbacks.c:1284 src/callbacks.c:1631 msgid "unknown M-codes" msgstr "Неизвестные M-коды" #: src/callbacks.c:1305 msgid "Unknown" msgstr "Неизвестный" #: src/callbacks.c:1320 msgid "No aperture definitions found in active Gerber file(s)!" msgstr "Нет определения апертур в видимых слоях Gerber!" #: src/callbacks.c:1330 msgid "D code" msgstr "D-код" #: src/callbacks.c:1331 msgid "Aperture" msgstr "Апертура" #: src/callbacks.c:1332 msgid "Param[0]" msgstr "Параметр[0]" #: src/callbacks.c:1333 msgid "Param[1]" msgstr "Параметр[1]" #: src/callbacks.c:1334 msgid "Param[2]" msgstr "Параметр[2]" #: src/callbacks.c:1373 msgid "No apertures used in Gerber file(s)!" msgstr "Нет используемых апертур в видимых слоях Gerber!" #: src/callbacks.c:1400 msgid "Total" msgstr "Всего" #: src/callbacks.c:1409 msgid "Gerber codes report on visible layers" msgstr "Отчёт по кодам Gerber на видимых слоях" #: src/callbacks.c:1439 src/callbacks.c:1732 msgid "General" msgstr "Общая информация" #: src/callbacks.c:1443 src/callbacks.c:1736 msgid "G codes" msgstr "G-коды" #: src/callbacks.c:1447 msgid "D codes" msgstr "D-коды" #: src/callbacks.c:1451 src/callbacks.c:1740 msgid "M codes" msgstr "M-коды" #: src/callbacks.c:1455 src/callbacks.c:1744 msgid "Misc. codes" msgstr "Прочие коды" #: src/callbacks.c:1459 msgid "Aperture definitions" msgstr "Определение апертур" #: src/callbacks.c:1463 msgid "Aperture usage" msgstr "Использование апертур" #: src/callbacks.c:1505 msgid "No drill layers visible!" msgstr "Нет видимых слоёв сверловки!" #: src/callbacks.c:1509 #, c-format msgid "No errors found in %d visible drill layer." msgid_plural "No errors found in %d visible drill layers." msgstr[0] "Ошибок не найдено в %d видимом слое сверловки." msgstr[1] "Ошибок не найдено в %d видимых слоях сверловки." msgstr[2] "Ошибок не найдено в %d видимых слоях сверловки." #: src/callbacks.c:1517 #, c-format msgid "Found errors found in %d visible drill layer." msgid_plural "Found errors found in %d visible drill layers." msgstr[0] "Найдены ошибки в %d видимом слое сверловки." msgstr[1] "Найдены ошибки в %d видимых слоях сверловки." msgstr[2] "Найдены ошибки в %d видимых слоях сверловки." #: src/callbacks.c:1548 msgid "Excellon file" msgstr "Файл Excellon" #: src/callbacks.c:1648 msgid "Comments" msgstr "Комментарии" #: src/callbacks.c:1651 msgid "Unknown codes" msgstr "Неизвестные коды" #: src/callbacks.c:1654 msgid "Repeat hole (R)" msgstr "Повтор отверстия (R)" #: src/callbacks.c:1672 msgid "Drill no." msgstr "№ отв." #: src/callbacks.c:1673 msgid "Dia." msgstr "Диаметр" #: src/callbacks.c:1674 msgid "Units" msgstr "Единицы измерения" #: src/callbacks.c:1702 msgid "Drill codes report on visible layers" msgstr "Отчёт по кодам сверловки на видимых слоях" #: src/callbacks.c:1748 msgid "Drill usage" msgstr "Используемые отверстия" #: src/callbacks.c:1806 msgid "Do you want to close all open layers and quit the program?" msgstr "Закрыть все открытые слои и выйти из программы?" #: src/callbacks.c:1807 msgid "Quitting the program will cause any unsaved changes to be lost." msgstr "Выход из программы приведёт к потере всех не сохранённых изменений." #. TRANSLATORS: Replace this string with your names, one name per line. #: src/callbacks.c:1865 msgid "translator-credits" msgstr "Сергей Алёшин , 2012—2019" #: src/callbacks.c:1868 #, c-format msgid "" "Gerbv — a Gerber (RS-274/X) viewer\n" "\n" "Version %s\n" "Compiled on %s at %s\n" "\n" "Gerbv is part of the gEDA Project.\n" "\n" "For more information see:\n" " gEDA homepage: http://geda-project.org/\n" " gEDA Wiki: http://wiki.geda-project.org/" msgstr "" "Gerbv — просмотр файлов Gerber (RS-274/X)\n" "\n" "Версия %s\n" "Собрана %s в %s\n" "\n" "Gerbv является частью проекта gEDA.\n" "\n" "Для дальнейшей информации, см.:\n" " Домашняя страница gEDA: http://geda-project.org/\n" " gEDA Wiki: http://wiki.geda-project.org/" #: src/callbacks.c:1882 msgid "" "Gerbv — a Gerber (RS-274/X) viewer\n" "\n" "Copyright (C) 2000—2007 Stefan Petersen\n" "\n" "This program is free software: you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation, either version 2 of the License, or\n" "(at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" "GNU General Public License for more details.\n" "\n" "You should have received a copy of the GNU General Public License\n" "along with this program. If not, see ." msgstr "" "Gerbv — просмотр файлов Gerber (RS-274/X)\n" "\n" "Copyright © 2000—2007 Stefan Petersen\n" "\n" "Это свободное программное обеспечение: вы можете распространять и/или\n" "изменять его на условиях универсальной общественной лицензии (GPL) GNU,\n" "опубликованной фондом свободного программного обеспечения (FSF), версии 2\n" "или (по вашему усмотрению) более поздней версии.\n" "\n" "Эта программа распространяется в надежде, что она будет полезна,\n" "но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; в том числе БЕЗ ГАРАНТИИ ПРИГОДНОСТИ ДЛЯ\n" "ПРОДАЖИ или БЕЗ ГАРАНТИИ ПРИГОДНОСТИ ДЛЯ КАКОЙ-ЛИБО ЦЕЛИ. Для\n" "подробностей см. лицензию GNU GPL.\n" "\n" "Вы должны были получить копию лицензии GNU GPL вместе с этой программой\n" "Если вы её не получили, см. ." #: src/callbacks.c:1906 msgid "Gerbv" msgstr "Gerbv" #: src/callbacks.c:1935 msgid "About Gerbv" msgstr "О программе" #: src/callbacks.c:1962 msgid "Known bugs in Gerbv" msgstr "Известные ошибки в Gerbv" #: src/callbacks.c:2291 src/callbacks.c:3421 msgid "" "Click to select objects in the active layer. Middle click and drag to pan." msgstr "" "Выделите мышью объекты в активном слое. Средняя кнопка для масштабирования." #: src/callbacks.c:2300 msgid "Click and drag to pan. Right click and drag to zoom." msgstr "Перетащите для прокрутки. Правая кнопка для масштабирования." #: src/callbacks.c:2308 msgid "Click and drag to zoom in. Shift+click to zoom out." msgstr "Перетащите для увеличения. Удерживайте клавишу Shift для уменьшения." #: src/callbacks.c:2317 msgid "Click and drag to measure a distance or select two apertures." msgstr "Перетащите для измерения расстояния или выберите две апертуры." #: src/callbacks.c:2547 msgid "Select a color" msgstr "Выберите цвет" #: src/callbacks.c:2691 msgid "Unknown type" msgstr "Неизвестный тип" #: src/callbacks.c:2695 msgid "This file type does not currently have any editable features" msgstr "В настоящее время этот формат не имеет изменяемых свойств" #: src/callbacks.c:2696 msgid "" "Format editing is currently only supported for Excellon drill file formats." msgstr "Изменение формата возможно только для сверловки Excellon." #: src/callbacks.c:2707 msgid "This layer has changed!" msgstr "Слой изменён!" #: src/callbacks.c:2708 msgid "" "Editing the file type will reload the layer, destroying your changes. Click " "OK to edit the file type and destroy your changes, or Cancel to leave." msgstr "" "Изменение формата файла приведёт к перезагрузке слоя и потере всех его " "изменений. При нажатии OK изменения будут потеряны." #: src/callbacks.c:2722 msgid "Edit file format" msgstr "Изменить формат" #: src/callbacks.c:3000 src/callbacks.c:3154 msgid "No object is currently selected" msgstr "Нет выделенных объектов" #: src/callbacks.c:3001 msgid "" "Objects must be selected using the pointer tool before you can view the " "object properties." msgstr "Объект должен быть выделен для просмотра его свойств." #: src/callbacks.c:3019 msgid "Object type: Polygon" msgstr "Тип объекта: полигон" #: src/callbacks.c:3061 #, c-format msgid "" "FAST (=GDK) mode benchmark: %d redraws in %ld seconds (%g redraws/second)" msgstr "" "Проверка производительности БЫСТРОГО (GDK) режима: %d отрисовок за %ld с (%g " "отрисовок/c)" #: src/callbacks.c:3083 #, c-format msgid "" "NORMAL (=Cairo) mode benchmark: %d redraws in %ld seconds (%g redraws/second)" msgstr "" "Проверка производительности ОБЫЧНОГО (Cairo) режима: %d отрисовок за %ld с " "(%g отрисовок/c)" #: src/callbacks.c:3096 msgid "Performance benchmark" msgstr "Проверка производительности" #: src/callbacks.c:3097 msgid "" "Application will be unresponsive for 1 minute! Run performance benchmark?" msgstr "" "Приложение не будет отвечать в течение 1 минуты! Запустить оценку " "производительности?" #: src/callbacks.c:3102 msgid "Running full zoom benchmark..." msgstr "Проверка производительности полного увеличения..." #: src/callbacks.c:3110 msgid "Running x5 zoom benchmark..." msgstr "Проверка производительности x5 увеличения..." #: src/callbacks.c:3155 msgid "" "Objects must be selected using the pointer tool before they can be deleted." msgstr "Для того чтобы удалить объекты, они должны быть выделены указателем" #: src/callbacks.c:3168 msgid "" "Do you want to permanently delete the selected objects from visible " "layers?" msgstr "Безвозвратно удалить выделенные объекты с видимых слоёв?" #: src/callbacks.c:3170 msgid "" "Gerbv currently has no undo function, so this action cannot be undone. This " "action will not change the saved file unless you save the file afterwards." msgstr "" "В настоящее время Gerbv не имеет функции отмены, поэтому это действие нельзя " "будет отменить. Файл не будет изменён, если изменения не будут сохранены." #: src/callbacks.c:3368 #, c-format msgid "%8.2f %8.2f" msgstr "%8.2f %8.2f" #: src/callbacks.c:3386 #, c-format msgid "%8.3f %8.3f" msgstr "%8.3f %8.3f" #: src/callbacks.c:3391 #, c-format msgid "%4.5f %4.5f" msgstr "%4.5f %4.5f" #: src/callbacks.c:3412 msgid "No object selected. Objects can only be selected in the active layer." msgstr "" "Нет выделенных объектов. Они могут быть выделены только на активном слое." #: src/callbacks.c:3428 #, c-format msgid "%d object are currently selected" msgid_plural "%d objects are currently selected" msgstr[0] "Выделен %d объект" msgstr[1] "Выделено %d объекта" msgstr[2] "Выделено %d объектов" #: src/callbacks.c:3631 src/callbacks.c:3637 #, c-format msgid "#_%i %s > #%i %s" msgstr "№_%i %s ⇒ №%i %s" #: src/callbacks.c:3708 src/callbacks.c:3714 msgid "Can't align by this type of object" msgstr "Невозможно выравнять по данному типу выделенных объектов" #: src/callbacks.c:3891 #, c-format msgid "Measured distance: %8.2f mils (%8.2f x, %8.2f y)" msgstr "Расстояние: %.2f мил (x: %.2f; y: %.2f)" #: src/callbacks.c:3896 #, c-format msgid "Measured distance: %8.3f mm (%8.3f x, %8.3f y)" msgstr "Расстояние: %.3f мм (x: %.3f; y: %.3f)" #: src/callbacks.c:3901 #, c-format msgid "Measured distance: %4.5f inches (%4.5f x, %4.5f y)" msgstr "Расстояние: %.5f дюйм (x: %.5f; y: %.5f)" #: src/callbacks.c:4068 #, c-format msgid "Fatal error: %s\n" msgstr "Фатальная ошибка: %s\n" #: src/callbacks.c:4071 msgid "Fatal Error" msgstr "Фатальная ошибка" #: src/callbacks.c:4075 #, c-format msgid "Fatal error: %s" msgstr "Фатальная ошибка: %s" #: src/callbacks.c:4080 msgid "" "\n" "Gerbv will be closed now!" msgstr "" "\n" "Gerbv сейчас будет закрыт!" #: src/callbacks.c:4144 src/interface.c:1274 msgid "mil" msgstr "мил" #: src/callbacks.c:4144 src/drill.c:154 src/drill.c:1195 src/drill.c:1271 #: src/interface.c:1275 msgid "mm" msgstr "мм" #: src/callbacks.c:4144 src/interface.c:1276 msgid "in" msgstr "дюймы" #: src/callbacks.c:4187 msgid "Object type: Line" msgstr "Тип объекта: линия" #: src/callbacks.c:4189 msgid "Object type: Slot (drilled)" msgstr "Тип объекта: паз (сверлением)" #: src/callbacks.c:4199 msgid "Object type: Arc" msgstr "Тип объекта: дуга" #: src/callbacks.c:4207 msgid "Object type: Unknown" msgstr "Тип объекта: неизвестный" #: src/callbacks.c:4212 msgid " Exposure: On" msgstr " Экспозиция: вкл." #: src/callbacks.c:4226 src/callbacks.c:4374 src/callbacks.c:4454 #, c-format msgid " Start: (%g, %g) %s" msgstr " Начало: (%g; %g) %s" #: src/callbacks.c:4234 src/callbacks.c:4460 #, c-format msgid " Stop: (%g, %g) %s" msgstr " Конец: (%g; %g) %s" #: src/callbacks.c:4246 src/callbacks.c:4363 src/callbacks.c:4390 #: src/callbacks.c:4419 src/callbacks.c:4440 src/callbacks.c:4477 #, c-format msgid " Center: (%g, %g) %s" msgstr " Центр: (%g; %g) %s" #: src/callbacks.c:4254 #, c-format msgid " Radius: %g %s" msgstr " Радиус: %g %s" #: src/callbacks.c:4258 #, c-format msgid " Angle: %g deg" msgstr " Угол: %g °" #: src/callbacks.c:4261 #, c-format msgid " Angles: (%g, %g) deg" msgstr " Углы: (%g; %g) °" #: src/callbacks.c:4264 #, c-format msgid " Direction: %s" msgstr " Направление: %s" #: src/callbacks.c:4267 src/callbacks.c:4608 src/gerber.c:343 msgid "CW" msgstr "по часовой" #: src/callbacks.c:4267 src/callbacks.c:4608 src/gerber.c:343 msgid "CCW" msgstr "против часовой" #: src/callbacks.c:4281 #, c-format msgid " Slot length: %g %s" msgstr " Длина паза: %g %s" #: src/callbacks.c:4287 #, c-format msgid " Length: %g (sum: %g) %s" msgstr " Длина: %g (сумма: %g) %s" #: src/callbacks.c:4299 msgid "Object type: Flashed aperture" msgstr "Тип объекта: апертура экспозиции" #: src/callbacks.c:4301 msgid "Object type: Drill" msgstr "Тип объекта: отверстие" #: src/callbacks.c:4315 #, c-format msgid " Location: (%g, %g) %s" msgstr " Расположение: (%g; %g) %s" #: src/callbacks.c:4335 #, c-format msgid " Aperture used: D%d" msgstr " Апертура: D%d" #: src/callbacks.c:4336 #, c-format msgid " Aperture type: %s" msgstr " Тип апертуры: %s" #: src/callbacks.c:4343 src/callbacks.c:4357 src/callbacks.c:4384 #: src/callbacks.c:4518 #, c-format msgid " Diameter: %g %s" msgstr " Диаметр: %g %s" #: src/callbacks.c:4349 #, c-format msgid " Dimensions: %gx%g %s" msgstr " Размер: %g×%g %s" #: src/callbacks.c:4369 src/callbacks.c:4382 #, c-format msgid " Number of points: %g" msgstr " Кол-во точек: %g" #: src/callbacks.c:4377 src/callbacks.c:4393 src/callbacks.c:4422 #: src/callbacks.c:4443 src/callbacks.c:4463 src/callbacks.c:4480 #: src/callbacks.c:4497 #, c-format msgid " Rotation: %g deg" msgstr " Поворот: %g °" #: src/callbacks.c:4398 src/callbacks.c:4427 #, c-format msgid " Outside diameter: %g %s" msgstr " Внешний диаметр: %g %s" #: src/callbacks.c:4401 #, c-format msgid " Ring thickness: %g %s" msgstr " Толщина кольца: %g %s" #: src/callbacks.c:4404 #, c-format msgid " Gap width: %g %s" msgstr " Ширина зазора: %g %s" #: src/callbacks.c:4407 #, c-format msgid " Number of rings: %g" msgstr " Кол-во колец: %g" #: src/callbacks.c:4409 src/callbacks.c:4433 #, c-format msgid " Crosshair thickness: %g %s" msgstr " Толщина перекрестия: %g %s" #: src/callbacks.c:4413 #, c-format msgid " Crosshair length: %g %s" msgstr " Длина перекрестия: %g %s" #: src/callbacks.c:4430 #, c-format msgid " Inside diameter: %g %s" msgstr " Внутренний диаметр: %g %s" #: src/callbacks.c:4448 src/callbacks.c:4468 src/callbacks.c:4485 #, c-format msgid " Width: %g %s" msgstr " Ширина: %g %s" #: src/callbacks.c:4471 src/callbacks.c:4488 #, c-format msgid " Height: %g %s" msgstr " Высота: %g %s" #: src/callbacks.c:4494 #, c-format msgid " Lower left: (%g, %g) %s" msgstr " Нижняя левая: (%g; %g) %s" #: src/callbacks.c:4516 #, c-format msgid " Tool used: T%d" msgstr " Инструмент: T%d" #: src/callbacks.c:4541 #, c-format msgid " Number of vertices: %u" msgstr " Кол-во вершин: %u" #: src/callbacks.c:4557 #, c-format msgid " Line from: (%g, %g) %s" msgstr " Линия от: (%g; %g) %s" #: src/callbacks.c:4566 #, c-format msgid " Line to: (%g, %g) %s" msgstr " Линия к: (%g; %g) %s" #: src/callbacks.c:4577 #, c-format msgid " Arc from: (%g, %g) %s" msgstr " Дуга от: (%g; %g) %s" #: src/callbacks.c:4584 #, c-format msgid " Arc to: (%g, %g) %s" msgstr " Дуга к : (%g; %g) %s" #: src/callbacks.c:4591 #, c-format msgid " Center: (%g, %g) %s" msgstr " Центр: (%g; %g) %s" #: src/callbacks.c:4598 #, c-format msgid " Radius: %g %s" msgstr " Радиус: %g %s" #: src/callbacks.c:4601 #, c-format msgid " Angle: %g deg" msgstr " Угол: %g °" #: src/callbacks.c:4603 #, c-format msgid " Angles: (%g, %g) deg" msgstr " Углы: (%g; %g) °" #: src/callbacks.c:4605 #, c-format msgid " Direction: %s" msgstr " Направление: %s" #: src/callbacks.c:4625 #, c-format msgid " Net label: %s" msgstr " Соединение: %s" #: src/callbacks.c:4629 #, c-format msgid " Layer name: %s" msgstr " Слой: %s" #: src/callbacks.c:4634 #, c-format msgid " In file: %s" msgstr " Файл: %s" #: src/csv.c:167 src/csv.c:288 #, c-format msgid "%d: unexpected quote in element" msgstr "%d: неожиданная кавычка в элементе" #: src/csv.c:198 #, c-format msgid "%d: bad end quote in element" msgstr "%d: ошибочная закрывающая кавычка в элементе" #: src/csv.c:319 #, c-format msgid "%d: bad end quote in element " msgstr "%d: ошибочная закрывающая кавычка в элементе " #: src/draw-gdk.c:592 #, c-format msgid "Unknown simplified aperture macro type %d" msgstr "Неизвестный макрос упрощённой апертуры %d" #: src/draw-gdk.c:806 src/draw-gdk.c:1200 #, c-format msgid "Skipped interpolation type %d" msgstr "Пропущена интерполяция типа %d" #: src/draw-gdk.c:1144 msgid "Linear != x1" msgstr "Линейный != ×1" #: src/draw-gdk.c:1269 #, c-format msgid "Unknown aperture type %d" msgstr "Неизвестный тип апертуры %d" #: src/draw-gdk.c:1275 #, c-format msgid "Unknown aperture state %d" msgstr "Неизвестное состояние апертуры %d" #: src/draw.c:549 #, c-format msgid "Ignoring %s with non positive diameter" msgstr "Пропуск %s с не положительным диаметром" #: src/draw.c:746 #, c-format msgid "Unknown macro type: %s" msgstr "Неизвестный тип макроса: %s" #: src/draw.c:1327 src/draw.c:1427 #, c-format msgid "Unknown aperture type: %s" msgstr "Неизвестный тип апертуры: %s" #: src/draw.c:1363 #, c-format msgid "Unknown interpolation type: %s" msgstr "Неизвестный тип интерполяции: %s" #: src/draw.c:1450 #, c-format msgid "Unknown aperture state: %s" msgstr "Неизвестное состояние апертуры: %s" #: src/drill.c:146 src/interface.c:2399 msgid "None" msgstr "Нет" #: src/drill.c:147 msgid "Leading" msgstr "Спереди" #: src/drill.c:148 msgid "Trailing" msgstr "Сзади" #: src/drill.c:153 src/drill.c:1195 src/drill.c:1271 msgid "inch" msgstr "дюймы" #: src/drill.c:170 msgid "autodetect" msgstr "Автоопределение" #: src/drill.c:170 msgid "Try to autodetect the file format" msgstr "Попытаться автоматически определить формат" #: src/drill.c:173 msgid "zero_suppression" msgstr "Отбрасывать нули" #: src/drill.c:173 msgid "Zero suppression" msgstr "Отбрасывать нули" #: src/drill.c:176 msgid "units" msgstr "Единицы измерения" #: src/drill.c:176 msgid "Length units" msgstr "Единицы измерения" #: src/drill.c:179 msgid "digits" msgstr "Цифры" #: src/drill.c:179 msgid "" "Number of digits. For trailing zero suppression, this is the number of " "digits before the decimal point. Otherwise this is the number of digits " "after the decimal point." msgstr "" "Количество цифр перед десятичной точкой, при отбрасывании нулей сзади; и " "после, при отбрасывании спереди." #: src/drill.c:386 #, c-format msgid "Comment \"%s\" at line %ld in file \"%s\"" msgstr "Комментарий «%s» на строке %ld файла «%s»" #: src/drill.c:415 src/drill.c:447 src/drill.c:845 #, c-format msgid "Unrecognised string \"%s\" in header at line %ld in file \"%s\"" msgstr "Нераспознанная строка «%s» в заголовке на строке %ld файла «%s»" #: src/drill.c:435 #, c-format msgid "File in unsupported format 1 at line %ld in file \"%s\"" msgstr "Недопустимый формат 1 файла на строке %ld файла «%s»" #: src/drill.c:472 src/drill.c:515 src/gerber.c:1214 src/gerber.c:1228 #: src/gerber.c:1242 src/gerber.c:1403 src/gerber.c:1518 #, c-format msgid "Unexpected EOF found in file \"%s\"" msgstr "Неожиданный код конца файла в «%s»" #: src/drill.c:530 src/drill.c:561 src/drill.c:691 #, c-format msgid "Unrecognized string \"%s\" found at line %ld in file \"%s\"" msgstr "Не распознано «%s» на строке %ld файла «%s»" #: src/drill.c:539 #, c-format msgid "Unsupported G%02d (%s) code at line %ld in file \"%s\"" msgstr "Неподдерживаемый код G%02d (%s) на строке %ld файла «%s»" #: src/drill.c:589 #, c-format msgid "" "End of Excellon header reached but no leading/trailing zero handling " "specified at line %ld in file \"%s\"" msgstr "" "Достигнут конец заголовка Excellon, но не была указана обработка нулей " "спереди/сзади на строке %ld файла «%s»" #: src/drill.c:596 #, c-format msgid "Assuming leading zeros in file \"%s\"" msgstr "Предполагаются ведущие нули в файле «%s»" #: src/drill.c:608 #, c-format msgid "" "M71 code found but no METRIC specification in header at line %ld in file \"%s" "\"" msgstr "" "Найден код M71, но в заголовке не указано METRIC на строке %ld файла «%s»" #: src/drill.c:614 #, c-format msgid "Assuming all tool sizes are MM in file \"%s\"" msgstr "Предполагается размер всех инструментов в мм в файле «%s»" #: src/drill.c:655 #, c-format msgid "Canned text \"%s\" at line %ld in drill file \"%s\"" msgstr "Высверленный текст «%s» на строке %ld файла «%s»" #: src/drill.c:664 #, c-format msgid "Message \"%s\" embedded at line %ld in drill file \"%s\"" msgstr "Встроенный в файл сверловки текст «%s» на строке %ld файла «%s»" #: src/drill.c:701 #, c-format msgid "Unsupported M%02d (%s) code found at line %ld in file \"%s\"" msgstr "Неподдерживаемый код M%02d (%s) на строке %ld файла «%s»" #: src/drill.c:715 #, c-format msgid "Not allowed 'R' code in the header at line %ld in file \"%s\"" msgstr "Недопустимый в заголовке код 'R' на строке %ld файла «%s»" #: src/drill.c:775 #, c-format msgid "Ignoring setting spindle speed at line %ld in drill file \"%s\"" msgstr "Пропуск установки скорости шпинделя на строке %ld файла сверловки «%s»" #: src/drill.c:789 #, c-format msgid "Undefined string \"%s\" in header at line %ld in file \"%s\"" msgstr "Неопределённая строка «%s» в заголовке на строке %ld файла «%s»" #: src/drill.c:836 #, c-format msgid "Undefined code '%s' (0x%x) found in header at line %ld in file \"%s\"" msgstr "Неопределённый код '%s' (0x%x) в заголовке на строке %ld файла «%s»" #: src/drill.c:851 #, c-format msgid "" "Ignoring undefined character '%s' (0x%x) found inside data at line %ld in " "file \"%s\"" msgstr "" "Пропуск неопределённого символа ‘%s’ (0x%x) в данных на строке %ld файла «%s»" #: src/drill.c:859 #, c-format msgid "No EOF found in drill file \"%s\"" msgstr "Отсутствует код конца файла В файле сверловки «%s»" #: src/drill.c:1078 #, c-format msgid "Tool change stop switch found \"%s\" at line %ld in file \"%s\"" msgstr "Остановка для смены инструмента «%s» на строке %ld файла «%s»" #: src/drill.c:1093 msgid "OrCAD bug: Junk text found in place of tool definition" msgstr "Ошибка OrCAD: ненужный текст вместо определения инструмента" #: src/drill.c:1096 #, c-format msgid "Junk text \"%s\" at line %ld in file \"%s\"" msgstr "Ненужный текст «%s» на строке %ld файла «%s»" #: src/drill.c:1101 msgid "Ignoring junk text" msgstr "Пропуск ненужного текста" #: src/drill.c:1115 #, c-format msgid "Out of bounds drill number %d at line %ld in file \"%s\"" msgstr "Превышающий границы инструмент %d на строке %ld файла «%s»" #: src/drill.c:1144 #, c-format msgid "Read a drill of diameter %g inches at line %ld in file \"%s\"" msgstr "Прочитано отверстие диаметром %g дюймов на строке %ld файла «%s»" #: src/drill.c:1148 msgid "Assuming units are mils" msgstr "Предполагаются единицы измерения мил" #: src/drill.c:1154 #, c-format msgid "" "Unreasonable drill size %g found for drill %d at line %ld in file \"%s\"" msgstr "Бессмысленный размер %g для отверстия %d на строке %ld файла «%s»" #: src/drill.c:1171 #, c-format msgid "Found redefinition of drill %d at line %ld in file \"%s\"" msgstr "Переопределение отверстия %d на строке %ld файла «%s»" #: src/drill.c:1220 #, c-format msgid "Unexpected EOF encountered in header of drill file \"%s\"" msgstr "Неожиданный код конца файла в заголовке файла сверловки «%s»" #: src/drill.c:1253 #, c-format msgid "Tool %02d used without being defined at line %ld in file \"%s\"" msgstr "Инструмент %02d используется без определения на строке %ld файла «%s»" #: src/drill.c:1257 #, c-format msgid "Setting a default size of %g\"" msgstr "Установка размера по умолчанию %g\"" #: src/drill.c:1304 #, c-format msgid "Unexpected EOF found while parsing M-code in file \"%s\"" msgstr "Неожиданный код конца файла при разборе M-кода в файле «%s»" #: src/drill.c:1396 src/drill.c:1536 src/drill.c:1606 src/drill.c:1618 #, c-format msgid "Unexpected EOF found while parsing \"%s\" string in file \"%s\"" msgstr "Неожиданный код конца файла при разборе «%s» в файле «%s»" #: src/drill.c:1508 #, c-format msgid "Found junk after METRIC command at line %ld in file \"%s\"" msgstr "Найден ненужный текст после команды METRIC на строке %ld файла «%s»" #: src/drill.c:1573 src/drill.c:1583 #, c-format msgid "Found junk '%s' after INCH command at line %ld in file \"%s\"" msgstr "Найден ненужный текст «%s» после команды INCH на строке %ld файла «%s»" #: src/drill.c:1647 #, c-format msgid "Unexpected EOF found while parsing G-code in file \"%s\"" msgstr "Неожиданный код конца файла при разборе G-кода в файле «%s»" #: src/drill.c:1737 #, c-format msgid "" "Coordinate mode is not absolute and not incremental at line %ld in file \"%s" "\"" msgstr "" "Режим координат не абсолютный и не инкрементальный на строке %ld файла «%s»" #: src/drill.c:1842 #, c-format msgid "" "%s(): omit_zeros == GERBV_OMIT_ZEROS_TRAILING but fmt = %d.\n" "This should never have happened\n" msgstr "" "%s(): omit_zeros == GERBV_OMIT_ZEROS_TRAILING но fmt = %d.\n" "Этого никогда не должно происходить\n" #: src/drill.c:1857 #, c-format msgid "%s(): wantdigits = %d which exceeds the maximum allowed size\n" msgstr "%s(): wantdigits = %d превышает максимально допустимое значение\n" #: src/drill.c:1912 #, c-format msgid "%s(): Unhandled fmt ` %d\n" msgstr "%s(): формат %d не обработан\n" #: src/drill.c:2003 msgid "rout mode" msgstr "режим траектории" #: src/drill.c:2005 msgid "linear mode" msgstr "режим линии" #: src/drill.c:2007 msgid "circular CW mode" msgstr "режим окружности по часовой" #: src/drill.c:2009 msgid "circular CCW mode" msgstr "режим окружности против часовой" #: src/drill.c:2011 msgid "variable dwell" msgstr "переменная задержка" #: src/drill.c:2013 msgid "drill mode" msgstr "режим сверловки" #: src/drill.c:2015 msgid "override tool feed or speed" msgstr "переназначение подачи или скорости инструмента" #: src/drill.c:2017 msgid "routed CW circle" msgstr "траектория окружности по часовой" #: src/drill.c:2019 msgid "routed CCW circle" msgstr "траектория окружности против часовой" #: src/drill.c:2021 msgid "select vision tool" msgstr "выбор видеоинструмента" #: src/drill.c:2023 msgid "single point vision offset" msgstr "смещение по точке с видео" #: src/drill.c:2025 msgid "multipoint vision translation" msgstr "сдвиг по точкам с видео" #: src/drill.c:2027 msgid "cancel vision translation or offset" msgstr "отмена сдвига или смещения видео" #: src/drill.c:2029 msgid "vision corrected single hole drilling" msgstr "сверление отверстия с видеокоррекцией" #: src/drill.c:2031 msgid "vision system autocalibration" msgstr "автокалибровка видеосистемы" #: src/drill.c:2033 msgid "cutter compensation off" msgstr "откл. компенсацию резака" #: src/drill.c:2035 msgid "cutter compensation left" msgstr "компенсация резака слева" #: src/drill.c:2037 msgid "cutter compensation right" msgstr "компенсация резака справа" #: src/drill.c:2039 msgid "single point vision relative offset" msgstr "относительное смещение по точке с видео" #: src/drill.c:2041 msgid "multipoint vision relative translation" msgstr "относительный сдвиг по точкам с видео" #: src/drill.c:2043 msgid "cancel vision relative translation or offset" msgstr "отмена относительного сдвига или смещения видео" #: src/drill.c:2045 msgid "vision corrected single hole relative drilling" msgstr "относительное сверление отверстия с видеокоррекцией" #: src/drill.c:2047 src/drill.c:2049 msgid "dual in line package" msgstr "DIP-корпус" #: src/drill.c:2051 msgid "eight pin L package" msgstr "8-ми выводной L-корпус" #: src/drill.c:2053 msgid "canned circle" msgstr "высверленный круг" #: src/drill.c:2055 msgid "canned slot" msgstr "высверленный паз" #: src/drill.c:2057 msgid "routed step slot" msgstr "паз траекторией по глубине" #: src/drill.c:2059 msgid "absolute input mode" msgstr "режим абсолютных единиц" #: src/drill.c:2061 msgid "incremental input mode" msgstr "режим инкрементальных единиц" #: src/drill.c:2063 msgid "zero set" msgstr "установка нуля" #: src/drill.c:2067 src/gerber.c:2664 msgid "unknown G-code" msgstr "неизвестный G-код" #: src/drill.c:2077 msgid "end of program" msgstr "конец программы" #: src/drill.c:2079 msgid "pattern end" msgstr "конец шаблона" #: src/drill.c:2081 msgid "repeat pattern offset" msgstr "повтор смещения шаблона" #: src/drill.c:2083 msgid "stop optional" msgstr "опциональный останов" #: src/drill.c:2085 msgid "step and repeat end" msgstr "конец шага и повтора" #: src/drill.c:2087 msgid "stop for inspection" msgstr "останов для проверки" #: src/drill.c:2089 msgid "Z-axis rout position with depth control" msgstr "положение оси Z траектории с контролем глубины" #: src/drill.c:2091 msgid "Z-axis rout position" msgstr "положение оси Z траектории" #: src/drill.c:2093 msgid "retract with clamping" msgstr "отведение с прижиманием" #: src/drill.c:2095 msgid "retract without clamping" msgstr "отведение без прижимания" #: src/drill.c:2097 msgid "tool tip check" msgstr "проверка инструмента" #: src/drill.c:2099 msgid "pattern start" msgstr "начало шаблона" #: src/drill.c:2101 msgid "end of program with rewind" msgstr "конец программы со сбросом" #: src/drill.c:2103 msgid "long operator message" msgstr "длинное сообщение оператора" #: src/drill.c:2105 msgid "operator message" msgstr "сообщение оператора" #: src/drill.c:2107 msgid "header start" msgstr "начало заголовка" #: src/drill.c:2109 msgid "vision step and repeat pattern start" msgstr "начало шаблона с шагом и повтором с видео" #: src/drill.c:2111 msgid "vision step and repeat rewind" msgstr "возврат видеокоррекции для шага и повтора" #: src/drill.c:2113 msgid "vision step and repeat offset counter control" msgstr "управление счётчиком смещения шага и повтора c видео" #: src/drill.c:2115 msgid "reference scaling on" msgstr "вкл. опорный масштаб" #: src/drill.c:2117 msgid "reference scaling off" msgstr "откл. опорный масштаб" #: src/drill.c:2119 msgid "peck drilling on" msgstr "вкл. многозаходное сверление" #: src/drill.c:2121 msgid "peck drilling off" msgstr "откл. многозаходное сверление" #: src/drill.c:2123 msgid "swap axes" msgstr "перемена осей" #: src/drill.c:2125 msgid "metric measuring mode" msgstr "режим метрических измерений" #: src/drill.c:2127 msgid "inch measuring mode" msgstr "режим дюймовый измерений" #: src/drill.c:2129 msgid "mirror image X-axis" msgstr "отразить по оси X" #: src/drill.c:2131 msgid "mirror image Y-axis" msgstr "отразить по оси Y" #: src/drill.c:2133 msgid "header end" msgstr "конец заголовка" #: src/drill.c:2135 msgid "canned text along X-axis" msgstr "высверленный текст вдоль оси X" #: src/drill.c:2137 msgid "canned text along Y-axis" msgstr "высверленный текст вдоль оси Y" #: src/drill.c:2139 msgid "user defined stored pattern" msgstr "пользовательский шаблон" #: src/drill.c:2143 src/gerber.c:2675 msgid "unknown M-code" msgstr "неизвестный M-код" #: src/drill_stats.c:188 #, c-format msgid "Broken tool detect %s (layer %d)" msgstr "Обнаружена неисправность инструмента %s (слой %d)" #: src/dynload.c:49 #, c-format msgid "scheme load-extension: %s: %s" msgstr "scheme расширение для загрузки: %s: %s" #: src/dynload.c:79 #, c-format msgid "Error loading scheme extension \"%s\": %s\n" msgstr "Ошибка загрузки расширения scheme «%s»: %s\n" #: src/dynload.c:90 #, c-format msgid "Error initializing scheme module \"%s\": %s\n" msgstr "Ошибка инициализации модуля scheme «%s»: %s\n" #: src/export-drill.c:51 src/export-isel-drill.c:56 src/export-rs274x.c:214 #, c-format msgid "Can't open file for writing: %s" msgstr "Невозможно открыть файл «%s» для записи" #: src/export-image.c:89 #, c-format msgid "Exporting error to file \"%s\"" msgstr "Ошибка экспорта в файл «%s»" #: src/export-isel-drill.c:148 #, c-format msgid "Skipped to export of unsupported state %d interpolation \"%s\"" msgstr "Пропуск экспорта неподдерживаемого состояния %d интерполяции «%s»" #: src/gerb_file.c:182 msgid "Failed to read integer" msgstr "Ошибка чтения целого числа" #: src/gerb_file.c:208 msgid "Failed to read double" msgstr "Ошибка чтения вещественного числа двойной точности" #: src/gerb_image.c:93 src/gerb_image.c:284 #, c-format msgid "unknown" msgstr "неизвестный тип" #: src/gerb_image.c:240 #, c-format msgid "..state off" msgstr "..выключенное состояние" #: src/gerb_image.c:243 #, c-format msgid "..state on" msgstr "..включенное состояние" #: src/gerb_image.c:246 #, c-format msgid "..state flash" msgstr "..состояние экспозиции" #: src/gerb_image.c:249 #, c-format msgid "..state unknown" msgstr "..состояние неизвестно" #: src/gerb_image.c:262 #, c-format msgid "Apertures:\n" msgstr "Апертуры:\n" #: src/gerb_image.c:266 #, c-format msgid " Aperture no:%d is an " msgstr "Апертура №%d — " #: src/gerb_image.c:269 src/gerbv.c:76 #, c-format msgid "circle" msgstr "круг" #: src/gerb_image.c:272 src/gerbv.c:77 #, c-format msgid "rectangle" msgstr "прямоугольник" #: src/gerb_image.c:275 src/gerbv.c:78 #, c-format msgid "oval" msgstr "овал" #: src/gerb_image.c:278 src/gerbv.c:79 #, c-format msgid "polygon" msgstr "полигон" #: src/gerb_image.c:281 src/gerbv.c:80 #, c-format msgid "macro" msgstr "макрос" #: src/gerb_image.c:296 #, c-format msgid "(%f,%f)->(%f,%f) with %d (" msgstr "(%f,%f)->(%f,%f) с %d (" #: src/gerb_image.c:409 src/gerbv.c:275 msgid "Exporting mirrored file is not supported!" msgstr "Экспорт отражённого файла не поддерживается!" #: src/gerb_image.c:416 src/gerbv.c:282 src/gerbv.c:296 msgid "Exporting inverted file is not supported!" msgstr "Экспорт инвертированного файла не поддерживается!" #: src/gerb_image.c:809 #, c-format msgid "Can't rotate %u rectangular aperture to %.2f degrees (non 90 multiply)!" msgid_plural "" "Can't rotate %u rectangular apertures to %.2f degrees (non 90 multiply)!" msgstr[0] "" "Невозможно повернуть %u прямоугольную апертуру на %.2f° (не кратно 90°)!" msgstr[1] "" "Невозможно повернуть %u прямоугольные апертуры на %.2f° (не кратно 90°)!" msgstr[2] "" "Невозможно повернуть %u прямоугольных апертур на %.2f° (не кратно 90°)!" #: src/gerb_image.c:817 #, c-format msgid "Can't scale %u line macro!" msgid_plural "Can't scale %u line macros!" msgstr[0] "Невозможно масштабировать %u макролинию!" msgstr[1] "Невозможно масштабировать %u макролинии!" msgstr[2] "Невозможно масштабировать %u макролиний!" #: src/gerb_image.c:823 #, c-format msgid "Can't scale %u polygon macro!" msgid_plural "Can't scale %u polygon macros!" msgstr[0] "Невозможно масштабировать %u макрополигон!" msgstr[1] "Невозможно масштабировать %u макрополигона!" msgstr[2] "Невозможно масштабировать %u макрополигонов!" #: src/gerb_image.c:829 #, c-format msgid "Can't scale %u thermal macro!" msgid_plural "Can't scale %u thermal macros!" msgstr[0] "Невозможно масштабировать %u макротермо!" msgstr[1] "Невозможно масштабировать %u макротермо!" msgstr[2] "Невозможно масштабировать %u макротермо!" #: src/gerb_image.c:835 #, c-format msgid "Can't scale %u moire macro!" msgid_plural "Can't scale %u moire macros!" msgstr[0] "Невозможно масштабировать %u макромуар!" msgstr[1] "Невозможно масштабировать %u макромуара!" msgstr[2] "Невозможно масштабировать %u макромуаров!" #: src/gerb_image.c:841 #, c-format msgid "Can't rotate %u oval aperture to %.2f degrees (non 90 multiply)!" msgid_plural "" "Can't rotate %u oval apertures to %.2f degrees (non 90 multiply)!" msgstr[0] "Невозможно повернуть %u овальную апертуру на %.2f° (не кратно 90°)!" msgstr[1] "Невозможно повернуть %u овальные апертуры на %.2f° (не кратно 90°)!" msgstr[2] "Невозможно повернуть %u овальных апертур на %.2f° (не кратно 90°)!" #: src/gerb_image.c:849 #, c-format msgid "Can't scale %u circle aperture to ellipse!" msgid_plural "Can't scale %u circle apertures to ellipse!" msgstr[0] "Невозможно масштабировать %u круглую апертуру!" msgstr[1] "Невозможно масштабировать %u круглые апертуры!" msgstr[2] "Невозможно масштабировать %u круглых апертур!" #: src/gerb_image.c:855 #, c-format msgid "Skipped %u aperture with unknown type!" msgid_plural "Skipped %u apertures with unknown type!" msgstr[0] "Пропущена %u апертура неизвестного типа!" msgstr[1] "Пропущено %u апертуры неизвестного типа!" msgstr[2] "Пропущено %u апертур неизвестного типа!" #: src/gerb_image.c:861 #, c-format msgid "Skipped %u macro aperture!" msgid_plural "Skipped %u macro apertures!" msgstr[0] "Пропущено %u макро апертура!" msgstr[1] "Пропущено %u макро апертуры!" msgstr[2] "Пропущено %u макро апертур!" #: src/gerb_stats.c:528 msgid "Undefined aperture number called out in D code" msgstr "В D-коде указан неизвестный номер апертуры" #: src/gerber.c:178 #, c-format msgid "Unknown M code found at line %ld in file \"%s\"" msgstr "Неизвестный M-код на строке %ld файла «%s»" #: src/gerber.c:339 #, c-format msgid "" "Signed incremental distance IxJy in single quadrant %s circular " "interpolation %s at line %ld in file \"%s\"" msgstr "" "Инкрементальное расстояние со знаком IxJy в круговой интерполяции %s одного " "квадранта %s на строке %ld файла «%s»" #: src/gerber.c:365 #, c-format msgid "End of polygon without start at line %ld in file \"%s\"" msgstr "Конец полигона без начала на строке %ld файла «%s»" #: src/gerber.c:478 #, c-format msgid "Found undefined D code D%02d at line %ld in file \"%s\"" msgstr "Неопределённый D-код D%02d на строке %ld файла «%s»" #: src/gerber.c:706 #, c-format msgid "Found unknown character '%s' (0x%x) at line %ld in file \"%s\"" msgstr "Неизвестный символ '%s' (0x%x) на строке %ld файла «%s»" #: src/gerber.c:773 #, c-format msgid "Missing Gerber EOF code in file \"%s\"" msgstr "Файл «%s» не содержит код конца Gerber-файла" #: src/gerber.c:1046 #, c-format msgid "" "Found aperture D%02d out of bounds while parsing G code at line %ld in file " "\"%s\"" msgstr "" "Апертура D%02d превышает границы при разборе G-кода на строке %ld файла «%s»" #: src/gerber.c:1052 #, c-format msgid "Found unexpected code after G54 at line %ld in file \"%s\"" msgstr "Неизвестный код после G54 на строке %ld в файла «%s»" #: src/gerber.c:1090 #, c-format msgid "Encountered unknown G code G%02d at line %ld in file \"%s\"" msgstr "Неизвестный G-код G%02d на строке %ld файла «%s»" #: src/gerber.c:1094 #, c-format msgid "Ignorning unknown G code G%02d" msgstr "Пропуск неизвестного G-кода G%02d" #: src/gerber.c:1123 #, c-format msgid "Found invalid D00 code at line %ld in file \"%s\"" msgstr "Недопустимый код D00 на строке %ld файла «%s»" #: src/gerber.c:1148 #, c-format msgid "Found out of bounds aperture D%02d at line %ld in file \"%s\"" msgstr "Превышающая границы апертура D%02d на строке %ld файла «%s»" #: src/gerber.c:1182 #, c-format msgid "Encountered unknown M%02d code at line %ld in file \"%s\"" msgstr "Неизвестный код M%02d на строке %ld файла «%s»" #: src/gerber.c:1185 #, c-format msgid "Ignorning unknown M%02d code" msgstr "Пропуск неизвестного кода M%02d" #: src/gerber.c:1267 #, c-format msgid "" "EagleCad bug detected: Undefined handling of zeros in format code at line " "%ld in file \"%s\"" msgstr "" "Ошибка EagleCad: формат не определяет обработку нулей на строке %ld файла " "«%s»" #: src/gerber.c:1271 msgid "Defaulting to omitting leading zeros" msgstr "Пропуск ведущих нулей, по умолчанию" #: src/gerber.c:1285 #, c-format msgid "" "Invalid coordinate type defined in format code at line %ld in file \"%s\"" msgstr "Недопустимый тип координат в коде формата на строке %ld файла «%s»" #: src/gerber.c:1289 msgid "Defaulting to absolute coordinates" msgstr "Установка по умолчанию абсолютных координат" #: src/gerber.c:1315 src/gerber.c:1324 src/gerber.c:1335 src/gerber.c:1344 #, c-format msgid "Illegal format size '%s' at line %ld in file \"%s\"" msgstr "Недопустимый размер формата '%s' на строке %ld файла «%s»" #: src/gerber.c:1353 #, c-format msgid "Illegal format statement '%s' at line %ld in file \"%s\"" msgstr "Недопустимое выражение формата '%s' на строке %ld файла «%s»" #: src/gerber.c:1358 msgid "Ignoring invalid format statement" msgstr "Пропуск недопустимого выражения формата" #: src/gerber.c:1390 #, c-format msgid "Wrong character '%s' in mirror at line %ld in file \"%s\"" msgstr "Недопустимый символ в отражении '%s' на строке %ld файла «%s»" #: src/gerber.c:1416 #, c-format msgid "Illegal unit '%s%s' at line %ld in file \"%s\"" msgstr "Недопустимая единица измерения '%s%s' на строке %ld файла «%s»" #: src/gerber.c:1434 #, c-format msgid "Wrong character '%s' in offset at line %ld in file \"%s\"" msgstr "Недопустимый символ '%s' в смещении на строке %ld файла «%s»" #: src/gerber.c:1461 #, c-format msgid "Included file \"%s\" cannot be found at line %ld in file \"%s\"" msgstr "Невозможно найти включённый файл «%s» на строке %ld файла «%s»" #: src/gerber.c:1468 msgid "" "Parser encountered more than 10 levels of include file recursion which is " "not allowed by the RS-274X spec" msgstr "" "Более чем 10 уровней рекурсии включения файлов не допускается спецификацией " "RS-274X" #: src/gerber.c:1489 #, c-format msgid "Wrong character '%s' in image offset at line %ld in file \"%s\"" msgstr "" "Недопустимый символ '%s' в смещении изображения на строке %ld файла «%s»" #: src/gerber.c:1538 #, c-format msgid "Unknown input code (IC) '%s%s' at line %ld in file \"%s\"" msgstr "Неизвестный входной код (IC) '%s%s' на строке %ld файла «%s»" #: src/gerber.c:1578 #, c-format msgid "Wrong character '%s' in image justify at line %ld in file \"%s\"" msgstr "" "Недопустимый символ '%s' выравнивания изображения на строке %ld файла «%s»" #: src/gerber.c:1594 #, c-format msgid "Unexpected EOF while reading image polarity (IP) in file \"%s\"" msgstr "" "Неожиданный код конца файла при чтении полярности изображения (IP) в файле " "«%s»" #: src/gerber.c:1606 #, c-format msgid "Unknown polarity '%s%s%s' at line %ld in file \"%s\"" msgstr "Неизвестная полярность слоя '%s%s%s' на строке %ld файла «%s»" #: src/gerber.c:1624 #, c-format msgid "" "Image rotation must be 0, 90, 180 or 270 (is actually %d) at line %ld in " "file \"%s\"" msgstr "" "Изображение должно быть повёрнуто на 0°, 90°, 180° или 270° (указано %d°) на " "строке %ld файла «%s»" #: src/gerber.c:1654 src/gerber.c:1660 #, c-format msgid "Aperture number out of bounds %d at line %ld in file \"%s\"" msgstr "Номер апертуры выходит за границы %d на строке %ld файла «%s»" #: src/gerber.c:1677 #, c-format msgid "Failed to parse aperture macro at line %ld in file \"%s\"" msgstr "Ошибка разбора макроса апертуры на строке %ld файла «%s»" #: src/gerber.c:1699 #, c-format msgid "Unknown layer polarity '%s' at line %ld in file \"%s\"" msgstr "Неизвестная полярность слоя '%s' на строке %ld файла «%s»" #: src/gerber.c:1719 #, c-format msgid "Knockout must supply a polarity (C, D, or *) at line %ld in file \"%s\"" msgstr "" "Врезка должна содержать полярность (C, D или *) на строке %ld файла «%s»" #: src/gerber.c:1762 #, c-format msgid "Unknown variable in knockout at line %ld in file \"%s\"" msgstr "Неизвестная переменная врезки на строке %ld файла «%s»" #: src/gerber.c:1796 #, c-format msgid "Step-and-repeat parameter error at line %ld in file \"%s\"" msgstr "" "Ошибка параметра многократного экспонирования с шаговым перемещением на " "строке %ld файла «%s»" #: src/gerber.c:1822 #, c-format msgid "Error in layer rotation command at line %ld in file \"%s\"" msgstr "Ошибка в команде поворота слоя на строке %ld файла «%s»" #: src/gerber.c:1829 #, c-format msgid "Unknown RS-274X extension found %%%s%s%% at line %ld in file \"%s\"" msgstr "Неизвестное расширение RS-274X %%%s%s%% на строке %ld файла «%s»" #: src/gerber.c:1916 msgid "aperture NULL in simplify aperture macro" msgstr "Отсутствует апертура в макросе упрощения апертуры" #: src/gerber.c:1919 msgid "aperture->amacro NULL in simplify aperture macro" msgstr "Отсутствует структура amacro в макросе упрощения апертуры" #: src/gerber.c:1943 src/gerber.c:1948 src/gerber.c:1950 src/gerber.c:1955 #: src/gerber.c:1957 src/gerber.c:1962 src/gerber.c:1964 src/gerber.c:1969 #: src/gerber.c:1971 msgid "Tried to pop an empty stack" msgstr "Попытка удаления из пустого стека" #: src/gerber.c:2036 #, c-format msgid "" "Number of parameters to aperture macro (%d) are more than gerbv is able to " "store (%d)" msgstr "" "Количество параметров макроса апертуры (%d) больше чем допускает Gerbv (%d)" #: src/gerber.c:2176 #, c-format msgid "Found AD code with no following 'D' at line %ld in file \"%s\"" msgstr "AD-код без последующего ‘D’ на строке %ld файла «%s»" #: src/gerber.c:2195 #, c-format msgid "Invalid aperture definition at line %ld in file \"%s\"" msgstr "Недопустимое определение апертуры на строке %ld файла «%s»" #: src/gerber.c:2240 #, c-format msgid "" "Maximum number of allowed parameters exceeded in aperture %d at line %ld in " "file \"%s\"" msgstr "" "Превышено максимальное количество параметров для апертуры %d на строке %ld в " "файле «%s»" #: src/gerber.c:2258 #, c-format msgid "" "Failed to read all parameters exceeded in aperture %d at line %ld in file " "\"%s\"" msgstr "" "Не удалось прочитать все параметры апертуры %d на строке %ld файла «%s»" #: src/gerber.c:2330 msgid "Unknow quadrant value while converting to cw" msgstr "Неизвестное значение квадранта при преобразовании по часовой стрелке" #: src/gerber.c:2355 src/gerber.c:2400 #, c-format msgid "Strange quadrant: %d" msgstr "Неизвестный квадрант: %d" #: src/gerber.c:2404 #, c-format msgid "Negative width [%f] in quadrant %d [%f][%f]" msgstr "Отрицательная ширина (%f) в квадранте %d [%f][%f]" #: src/gerber.c:2408 #, c-format msgid "Negative height [%f] in quadrant %d [%f][%f]" msgstr "Отрицательная высота (%f) в квадранте %d [%f][%f]" #: src/gerber.c:2635 msgid "exposure on" msgstr "вкл. экспозиции" #: src/gerber.c:2636 msgid "exposure off" msgstr "откл. экспозиции" #: src/gerber.c:2637 msgid "flash aperture" msgstr "апертура экспозиции" #: src/gerber.c:2638 msgid "unknown D-code" msgstr "неизвестный D-код" #: src/gerber.c:2646 msgid "move" msgstr "перемещение" #: src/gerber.c:2647 msgid "1X linear interpolation" msgstr "1× линейная интерполяция" #: src/gerber.c:2648 msgid "CW interpolation" msgstr "интерполяция по часовой" #: src/gerber.c:2649 msgid "CCW interpolation" msgstr "интерполяция против часовой " #: src/gerber.c:2650 msgid "comment/ignore block" msgstr "блок комментария" #: src/gerber.c:2651 msgid "10X linear interpolation" msgstr "10× линейная интерполяция" #: src/gerber.c:2652 msgid "0.1X linear interpolation" msgstr "0.1× линейная интерполяция" #: src/gerber.c:2653 msgid "0.01X linear interpolation" msgstr "0.01× линейная интерполяция" #: src/gerber.c:2654 msgid "poly fill on" msgstr "заполнение полигона" #: src/gerber.c:2655 msgid "poly fill off" msgstr "завершение заполнения полигона" #: src/gerber.c:2656 msgid "tool prepare" msgstr "подготовка инструмента" #: src/gerber.c:2657 msgid "flash prepare" msgstr "подготовка экспозиции" #: src/gerber.c:2658 msgid "units = inches" msgstr "единицы изменения: дюймы" #: src/gerber.c:2659 msgid "units = mm" msgstr "единицы измерения: мм" #: src/gerber.c:2660 msgid "disable 360 circ. interpolation" msgstr "откл. 360° интерполяции" #: src/gerber.c:2661 msgid "enable 360 circ. interpolation" msgstr "вкл. 360° интерполяции" #: src/gerber.c:2662 msgid "absolute units" msgstr "абсолютные единицы" #: src/gerber.c:2663 msgid "incremental units" msgstr "инкрементальные единицы" #: src/gerber.c:2672 msgid "program stop (obsolete)" msgstr "останов программы (устарел)" #: src/gerber.c:2673 msgid "optional stop (obsolete)" msgstr "опциональный останов (устарел)" #: src/gerber.c:2674 msgid "end of file" msgstr "конец файла" #: src/gerbv.c:75 msgid "none" msgstr "нет" #: src/gerbv.c:81 msgid "circle macro" msgstr "макрокруг" #: src/gerbv.c:82 msgid "outline macro" msgstr "макроконтур" #: src/gerbv.c:83 msgid "polygon macro" msgstr "макрополигон" #: src/gerbv.c:84 msgid "moire macro" msgstr "макромуар" #: src/gerbv.c:85 msgid "thermal macro" msgstr "макротермо" #: src/gerbv.c:86 msgid "line20 macro" msgstr "макролиния20" #: src/gerbv.c:87 msgid "line21 macro" msgstr "макролиния21" #: src/gerbv.c:88 msgid "line22 macro" msgstr "макролиния22" #: src/gerbv.c:94 src/gerbv.c:117 msgid "" msgstr "<неопределено>" #: src/gerbv.c:103 msgid "1X linear" msgstr "линейная 1×" #: src/gerbv.c:104 msgid "10X linear" msgstr "линейная 10×" #: src/gerbv.c:105 msgid "0.1X linear" msgstr "линейная 0.1×" #: src/gerbv.c:106 msgid "0.01X linear" msgstr "линейная 0.01×" #: src/gerbv.c:107 msgid "CW circular" msgstr "круговая по часовой" #: src/gerbv.c:108 msgid "CCW circular" msgstr "круговая против часовой" #: src/gerbv.c:109 msgid "poly area start" msgstr "начало полигональной области" #: src/gerbv.c:110 msgid "poly area stop" msgstr "конец полигональной области" #: src/gerbv.c:111 msgid "deleted" msgstr "удалена" #: src/gerbv.c:231 src/gerbv.c:250 src/main.c:200 #, c-format msgid "Could not read \"%s\" (loaded %d)" msgstr "Невозможно прочитать «%s» (загружено %d)" #: src/gerbv.c:406 msgid "Missing netlist - aborting file read" msgstr "Список соединений отсутствует, чтение файла прервано" #: src/gerbv.c:413 msgid "Missing format in file...trying to load anyways\n" msgstr "Формат файла отсутствует, загрузка продолжена\n" #: src/gerbv.c:415 msgid "Missing apertures/drill sizes...trying to load anyways\n" msgstr "Размеры апертур/отверстий отсутствуют, загрузка продолжена\n" #: src/gerbv.c:421 msgid "Missing info...trying to load anyways\n" msgstr "Информация отсутствует, загрузка продолжена\n" #: src/gerbv.c:505 src/gerbv.c:625 #, c-format msgid "Trying to open \"%s\": %s" msgstr "Открытие «%s»: %s" #: src/gerbv.c:554 #, c-format msgid "%s: unknown pick-and-place board side to reload" msgstr "%s: неизвестна сторона платы для загрузки расположения" #: src/gerbv.c:561 #, c-format msgid "Most likely found a RS-274D file \"%s\" ... trying to open anyways\n" msgstr "Вероятно «%s» является файлом RS-274D... попытка открытия\n" #: src/gerbv.c:577 #, c-format msgid "%s: Unknown file type." msgstr "Неизвестный тип файла «%s»" #: src/gerbv.c:592 msgid " (top)" msgstr " (верх)" #: src/gerbv.c:609 msgid " (bottom)" msgstr " (низ)" #: src/interface.c:56 msgid "Gerbv — gEDA's Gerber Viewer" msgstr "Gerbv — gEDA просмотр Gerber-файлов" #: src/interface.c:73 #, c-format msgid "%s version %s: %s" msgstr "%s версии %s: %s" #: src/interface.c:358 msgid "_File" msgstr "_Файл" #: src/interface.c:368 msgid "_Open" msgstr "_Открыть" #: src/interface.c:375 msgid "_Save active layer" msgstr "_Сохранить активный слой" #: src/interface.c:377 msgid "Save the active layer" msgstr "Сохранить активный слой" #: src/interface.c:381 msgid "Save active layer _as..." msgstr "Сохранить _активный слой как..." #: src/interface.c:383 msgid "Save the active layer to a new file" msgstr "Сохранить активный слой в указанный файл" #: src/interface.c:389 msgid "_Revert all" msgstr "_Перезагрузить все" #: src/interface.c:392 msgid "Reload all layers" msgstr "Перезагрузить все слои" #: src/interface.c:400 msgid "_Export" msgstr "_Экспорт" #: src/interface.c:403 msgid "Export to a new format" msgstr "Экспортировать в новый формат" #: src/interface.c:411 msgid "P_NG..." msgstr "P_NG..." #: src/interface.c:413 msgid "Export visible layers to a PNG file" msgstr "Экспортировать видимые слои в формат PNG" #: src/interface.c:415 msgid "P_DF..." msgstr "P_DF..." #: src/interface.c:417 msgid "Export visible layers to a PDF file" msgstr "Экспортировать видимые слои в формат PDF" #: src/interface.c:419 msgid "_SVG..." msgstr "_SVG..." #: src/interface.c:421 msgid "Export visible layers to a SVG file" msgstr "Экспортировать видимые слои в формат SVG" #: src/interface.c:423 msgid "_PostScript..." msgstr "_PostScript..." #: src/interface.c:425 msgid "Export visible layers to a PostScript file" msgstr "Экспортировать видимые слои в формат PostScript" #: src/interface.c:428 msgid "D_XF..." msgstr "D_XF..." #: src/interface.c:431 msgid "Export active layer to a DXF file" msgstr "Экспортировать активный слой в формат DXF" #: src/interface.c:437 msgid "RS-274X (_Gerber)..." msgstr "RS-274X (_Gerber)..." #: src/interface.c:440 msgid "Export active layer to a RS-274X (Gerber) file" msgstr "Экспортировать активный слой в формат RS-274X (Gerber)" #: src/interface.c:442 msgid "RS-274X merge (Gerber)..." msgstr "Объединить в RS-274X (Gerber)..." #: src/interface.c:445 msgid "Export merged visible Gerber layers to a RS-274X (Gerber) file" msgstr "" "Экспортировать объединённые видимые слои Gerber в формат RS-274X (Gerber)" #: src/interface.c:451 msgid "_Excellon drill..." msgstr "Сверловка _Excellon... " #: src/interface.c:454 msgid "Export active layer to an Excellon drill file" msgstr "Экспортировать активный слой в формат сверловки Excellon" #: src/interface.c:456 msgid "Excellon drill merge..." msgstr "Объединить в сверловку Excellon..." #: src/interface.c:459 msgid "Export merged visible drill layers to an Excellon drill file" msgstr "" "Экспортировать объединённые видимые слои сверловки в формат Excellon " "(сверловка)" #: src/interface.c:462 msgid "_ISEL NCP drill..." msgstr "Сверловка _ISEL NCP..." #: src/interface.c:465 msgid "Export active layer to an ISEL Automation NCP drill file" msgstr "Экспортировать активный слой в формат сверловки ISEL Automation NCP" #: src/interface.c:471 msgid "gEDA P_CB (beta)..." msgstr "gEDA P_CB (тестовый)..." #: src/interface.c:474 msgid "Export active layer to a gEDA PCB file" msgstr "Экспортировать активный слой в формат gEDA PCB" #: src/interface.c:481 msgid "_New project" msgstr "_Новый проект" #: src/interface.c:483 src/interface.c:1017 msgid "Close all layers and start a new project" msgstr "Закрыть все слои и начать новый проект" #: src/interface.c:487 msgid "Save project" msgstr "Сохранить проект" #: src/interface.c:489 src/interface.c:1031 msgid "Save the current project" msgstr "Сохранить текущий проект" #: src/interface.c:496 msgid "Save the current project to a new file" msgstr "Сохранить текущий проект в указанный файл" #: src/interface.c:508 msgid "_Print..." msgstr "_Печать..." #: src/interface.c:516 src/interface.c:1038 msgid "Print the visible layers" msgstr "Печатать видимые слои" #: src/interface.c:524 msgid "Quit Gerbv" msgstr "Выйти из Gerbv" #: src/interface.c:528 msgid "_Edit" msgstr "_Правка" #: src/interface.c:537 msgid "Display _properties of selected object(s)" msgstr "_Свойства объектов" #: src/interface.c:539 msgid "Examine the properties of the selected object" msgstr "Показать свойства выделенных объектов" #: src/interface.c:544 msgid "_Delete selected object(s)" msgstr "_Удалить объекты" #: src/interface.c:546 msgid "Delete selected objects" msgstr "Удалить выделенные объекты" #: src/interface.c:551 msgid "_Align layers" msgstr "_Выравнять слои" #: src/interface.c:554 msgid "Align two layers by two selected objects" msgstr "_Выравнять два слоя по двум выделенным объектам" #: src/interface.c:569 msgid "Edit object properties" msgstr "Изменить свойства объекта" #: src/interface.c:571 msgid "Edit the properties of the selected object" msgstr "Показать свойства выделенных объектов" #: src/interface.c:575 msgid "Move object(s)" msgstr "Переместить объект(ы)" #: src/interface.c:577 msgid "Move the selected object(s)" msgstr "Переместить выделенный объект(ы)" #: src/interface.c:581 msgid "Reduce area" msgstr "Уменьшить область" #: src/interface.c:583 msgid "Reduce the area of the object (e.g. to prevent component floating)" msgstr "" "Уменьшить область объекта (например, для предотвращения плавания объекта)" #: src/interface.c:592 msgid "_View" msgstr "_Вид" #: src/interface.c:600 msgid "Fullscr_een" msgstr "Во в_есь экран" #: src/interface.c:602 msgid "Toggle between fullscreen and normal view" msgstr "Переключить между полноэкранным и обычным режимами" #: src/interface.c:606 msgid "Show _Toolbar" msgstr "_Панель инструментов" #: src/interface.c:608 msgid "Toggle visibility of the toolbar" msgstr "Показать панель инструментов" #: src/interface.c:612 msgid "Show _Sidepane" msgstr "_Боковая панель" #: src/interface.c:614 msgid "Toggle visibility of the sidepane" msgstr "Показать боковую панель" #: src/interface.c:621 msgid "Toggle layer _visibility" msgstr "Изменить _видимость слоя" #: src/interface.c:624 msgid "Show all se_lection" msgstr "Показывать в_сё выделенное" #: src/interface.c:626 msgid "Show selected objects on invisible layers" msgstr "Показывать выделенные объекты на невидимых слоях" #: src/interface.c:630 msgid "Show _cross on drill holes" msgstr "Показывать _метки отверстий сверловки" #: src/interface.c:632 msgid "Show cross on drill holes" msgstr "Показывать метки на центрах отверстий сверловки" #: src/interface.c:649 msgid "Toggle visibility of layer 1" msgstr "№1" #: src/interface.c:653 msgid "Toggle visibility of layer 2" msgstr "№2" #: src/interface.c:657 msgid "Toggle visibility of layer 3" msgstr "№3" #: src/interface.c:661 msgid "Toggle visibility of layer 4" msgstr "№4" #: src/interface.c:665 msgid "Toggle visibility of layer 5" msgstr "№5" #: src/interface.c:669 msgid "Toggle visibility of layer 6" msgstr "№6" #: src/interface.c:673 msgid "Toggle visibility of layer 7" msgstr "№7" #: src/interface.c:677 msgid "Toggle visibility of layer 8" msgstr "№8" #: src/interface.c:681 msgid "Toggle visibility of layer 9" msgstr "№9" #: src/interface.c:685 msgid "Toggle visibility of layer 10" msgstr "№10" #: src/interface.c:694 src/interface.c:1045 msgid "Zoom in" msgstr "Увеличить" #: src/interface.c:699 src/interface.c:1049 msgid "Zoom out" msgstr "Уменьшить" #: src/interface.c:703 src/interface.c:1053 msgid "Zoom to fit all visible layers in the window" msgstr "Масштабировать для отображения видимых слоёв на всё окно" #: src/interface.c:710 msgid "Background color" msgstr "Цвет фона" #: src/interface.c:711 msgid "Change the background color" msgstr "Изменить цвет фона" #: src/interface.c:731 msgid "_Rendering" msgstr "_Отображение" #: src/interface.c:741 msgid "_Fast" msgstr "_Быстро" #: src/interface.c:745 msgid "Fast (_XOR)" msgstr "_Искл. ИЛИ" #: src/interface.c:749 msgid "_Normal" msgstr "_Обычно" #: src/interface.c:753 msgid "High _Quality" msgstr "_Качественно" #: src/interface.c:770 msgid "U_nits" msgstr "_Единицы измерения" #: src/interface.c:780 msgid "mi_l" msgstr "ми_л" #: src/interface.c:784 msgid "_mm" msgstr "_мм" #: src/interface.c:788 msgid "_in" msgstr "_дюймы" #: src/interface.c:802 msgid "_Layer" msgstr "С_лой" #: src/interface.c:810 msgid "Toggle _visibility" msgstr "Изменить ви_димость" #: src/interface.c:812 msgid "Toggles the visibility of the active layer" msgstr "Изменить видимость активного слоя" #: src/interface.c:815 msgid "All o_n" msgstr "В_ключить все" #: src/interface.c:817 msgid "Turn on visibility of all layers" msgstr "Включить видимость всех слоёв" #: src/interface.c:822 msgid "All _off" msgstr "В_ыключить все" #: src/interface.c:824 msgid "Turn off visibility of all layers" msgstr "Выключить видимость всех слоёв" #: src/interface.c:829 msgid "_Invert color" msgstr "_Инвертировать" #: src/interface.c:831 msgid "Invert the display polarity of the active layer" msgstr "Инвертировать полярность активного слоя" #: src/interface.c:834 msgid "_Change color" msgstr "Изменить _цвет" #: src/interface.c:837 msgid "Change the display color of the active layer" msgstr "Изменить цвет отображения активного слоя" #: src/interface.c:845 msgid "_Reload layer" msgstr "_Перезагрузить слой" #: src/interface.c:847 msgid "Reload the active layer from disk" msgstr "Перезагрузить данные активного слоя из файла" #: src/interface.c:852 msgid "_Edit layer" msgstr "_Изменить слой" #: src/interface.c:855 msgid "Translate, scale, rotate or mirror the active layer" msgstr "Переместить, масштабировать, повернуть или отразить активный слой" #: src/interface.c:859 msgid "Edit file _format" msgstr "Изменить _формат" #: src/interface.c:861 msgid "View and edit the numerical format used to parse the active layer" msgstr "Просмотр и изменение формата активного слоя" #: src/interface.c:870 msgid "Move u_p" msgstr "Перенести в_верх" #: src/interface.c:872 src/interface.c:1188 msgid "Move the active layer one step up" msgstr "Переместить активный слой вверх" #: src/interface.c:878 msgid "Move dow_n" msgstr "Перенести в_низ" #: src/interface.c:880 src/interface.c:1180 msgid "Move the active layer one step down" msgstr "Переместить активный слой вниз" #: src/interface.c:886 msgid "_Delete" msgstr "_Удалить" #: src/interface.c:888 src/interface.c:1196 msgid "Remove the active layer" msgstr "Удалить активный слой" #: src/interface.c:901 msgid "_Analyze" msgstr "_Анализ" #: src/interface.c:913 msgid "Analyze visible _Gerber layers" msgstr "_Gerber" #: src/interface.c:915 msgid "" "Examine a detailed analysis of the contents of all visible Gerber layers" msgstr "Выполнить детальный анализ содержимого всех видимых слоёв Gerber" #: src/interface.c:921 msgid "Analyze visible _drill layers" msgstr "_Сверловки" #: src/interface.c:923 msgid "Examine a detailed analysis of the contents of all visible drill layers" msgstr "Выполнить детальный анализ содержимого всех видимых слоёв сверловки" #: src/interface.c:928 msgid "_Benchmark" msgstr "_Тест производительности" #: src/interface.c:930 msgid "" "Benchmark different rendering methods. Will make the application " "unresponsive for 1 minute!" msgstr "" "Проверить производительность различных способов отрисовки. Программа не " "будет отвечать в течение одной минуты!" #: src/interface.c:942 msgid "_Tools" msgstr "_Инструменты" #: src/interface.c:949 msgid "_Pointer Tool" msgstr "_Указатель" #: src/interface.c:954 src/interface.c:1077 msgid "Select objects on the screen" msgstr "Выделить объекты на экране" #: src/interface.c:955 msgid "Pa_n Tool" msgstr "_Прокрутка" #: src/interface.c:960 src/interface.c:1083 msgid "Pan by left clicking and dragging" msgstr "Выполнить прокрутку перетаскиванием" #: src/interface.c:962 msgid "_Zoom Tool" msgstr "_Масштаб" #: src/interface.c:967 src/interface.c:1091 msgid "Zoom by left clicking or dragging" msgstr "Масштабировать щелчком или перетаскиванием" #: src/interface.c:969 msgid "_Measure Tool" msgstr "_Измерение" #: src/interface.c:974 src/interface.c:1098 msgid "Measure distances on the screen" msgstr "Измерить расстояние на экране" #: src/interface.c:976 msgid "_Help" msgstr "_Справка" #: src/interface.c:990 msgid "_About Gerbv..." msgstr "_О программе..." #: src/interface.c:992 msgid "View information about Gerbv" msgstr "Показать информацию о Gerbv" #: src/interface.c:996 msgid "Known _bugs in this version..." msgstr "_Известные ошибки в этой версии..." #: src/interface.c:999 msgid "View list of known Gerbv bugs" msgstr "Показать список известных ошибок в Gerbv" #: src/interface.c:1027 msgid "Reload all layers in project" msgstr "Перезагрузить все слои в проекте" #: src/interface.c:1126 msgid "Rendering type" msgstr "Тип отображения" #: src/interface.c:1128 msgid "Fast" msgstr "Быстро" #: src/interface.c:1129 msgid "Fast, with XOR" msgstr "Быстрое искл. ИЛИ" #: src/interface.c:1130 msgid "Normal" msgstr "Обычно" #: src/interface.c:1131 msgid "High quality" msgstr "Качественно" #: src/interface.c:1198 msgid "Layers" msgstr "Слои" #: src/interface.c:1220 msgid "Clear all messages and accumulated sum" msgstr "Очистить все сообщения и накопленную сумму" #: src/interface.c:1223 msgid "Messages" msgstr "Журнал" #: src/interface.c:1882 msgid "Gerbv Alert" msgstr "Предупреждение Gerbv" #: src/interface.c:1914 src/interface.c:2254 msgid "Do not show this dialog again." msgstr "Больше не показывать этот диалог." #: src/interface.c:2040 #, c-format msgid "%d *%s (changed, %d layer)" msgid_plural "%d *%s (changed, %d layers)" msgstr[0] "%d *%s (изменён, %d слой)" msgstr[1] "%d *%s (изменён, %d слоя)" msgstr[2] "%d *%s (изменён, %d слоёв)" #: src/interface.c:2044 #, c-format msgid "%d *%s (changed)" msgstr "%d *%s (изменён)" #: src/interface.c:2050 #, c-format msgid "%d %s (%d layer)" msgid_plural "%d %s (%d layers)" msgstr[0] "%d %s (%d слой)" msgstr[1] "%d %s (%d слоя)" msgstr[2] "%d %s (%d слоёв)" #: src/interface.c:2053 #, c-format msgid "%d %s" msgstr "%d %s" #: src/interface.c:2096 msgid "Gerbv — Reload Files" msgstr "Gerbv — перезагрузить файлы" #: src/interface.c:2115 #, c-format msgid "%u file is already loaded from directory" msgid_plural "%u files are already loaded from directory" msgstr[0] "%u файл уже загружен из каталога" msgstr[1] "%u файла уже загружено из каталога" msgstr[2] "%u файлов уже загружено из каталога" #: src/interface.c:2137 msgid "Select _all" msgstr "Выбрать _все" #: src/interface.c:2169 msgid "_Reload" msgstr "_Перезагрузить" #: src/interface.c:2171 msgid "Reload layers with selected files" msgstr "Перезагрузить слои Выбранными файлами" #: src/interface.c:2175 msgid "Add as _new" msgstr "Добавить _новые" #: src/interface.c:2177 msgid "Add selected files as new layers" msgstr "Добавить выбранные файлы как новые слои" #: src/interface.c:2313 msgid "Edit layer" msgstr "Изменить слой" #: src/interface.c:2316 msgid "Apply to _active" msgstr "Применить к _активному" #: src/interface.c:2318 msgid "Apply to _visible" msgstr "Применить к _видимым" #: src/interface.c:2331 msgid "Translation" msgstr "Перемещение" #: src/interface.c:2340 msgid "X (mils):" msgstr "X, мил:" #: src/interface.c:2341 msgid "Y (mils):" msgstr "Y, мил:" #: src/interface.c:2346 msgid "X (mm):" msgstr "X, мм:" #: src/interface.c:2347 msgid "Y (mm):" msgstr "Y, мм:" #: src/interface.c:2352 msgid "X (inches):" msgstr "X, дюймы:" #: src/interface.c:2353 msgid "Y (inches):" msgstr "Y, дюймы:" #: src/interface.c:2371 msgid "Scale" msgstr "Масштаб" #: src/interface.c:2375 msgid "X direction:" msgstr "X-направление:" #: src/interface.c:2378 msgid "Y direction:" msgstr "Y-направление:" #: src/interface.c:2391 msgid "Rotation" msgstr "Поворот" #: src/interface.c:2395 msgid "Rotation (degrees):" msgstr "Поворот, градусы:" #: src/interface.c:2400 msgid "90 deg CCW" msgstr "90°" #: src/interface.c:2401 msgid "180 deg CCW" msgstr "180°" #: src/interface.c:2402 msgid "270 deg CCW" msgstr "270°" #: src/interface.c:2422 msgid "Mirroring" msgstr "Отражение" #: src/interface.c:2426 msgid "About X axis:" msgstr "Вокруг оси X:" #: src/interface.c:2433 msgid "About Y axis:" msgstr "Вокруг оси Y:" #: src/main.c:251 #, c-format msgid "could not read file: %s" msgstr "Невозможно прочитать файл «%s»" #: src/main.c:344 msgid "Failed to write project" msgstr "Ошибка при сохранении проекта" #: src/main.c:393 #, c-format msgid "" "\n" "*** Press Enter to continue ***" msgstr "" "\n" "*** Нажмите Enter для продолжение ***" #: src/main.c:557 src/main.c:842 #, c-format msgid "Unrecognized length unit \"%s\" in command line" msgstr "Не распознаны единицы измерения «%s» в командной строки" #: src/main.c:576 #, c-format msgid "Not handled option \"%s\" in command line" msgstr "Необработанный параметр «%s» командной строки" #: src/main.c:583 msgid "Width" msgstr "Ширина" #: src/main.c:587 #, c-format msgid "Split X and Y parameters with an x\n" msgstr "Параметры X и Y должны быть разделены символом x\n" #: src/main.c:594 msgid "Height" msgstr "Высота" #: src/main.c:623 #, c-format msgid "You must specify the border in the format .\n" msgstr "Для границы должно быть указано значение.\n" #: src/main.c:627 #, c-format msgid "Specified border is not recognized.\n" msgstr "Указанное значение границы не распознано.\n" #: src/main.c:632 #, c-format msgid "Specified border is smaller than zero!\n" msgstr "Указанное значение границы меньше нуля!\n" #: src/main.c:639 #, c-format msgid "" "You must give an resolution in the format or .\n" msgstr "" "Разрешение должно быть указано в формате или .\n" #: src/main.c:643 #, c-format msgid "Specified resolution is not recognized.\n" msgstr "Указанное значение разрешения не распознано.\n" #: src/main.c:653 #, c-format msgid "Specified resolution should be greater than 0.\n" msgstr "Указанное значение разрешения должно быть больше нуля.\n" #: src/main.c:660 #, c-format msgid "You must give an origin in the format or .\n" msgstr "Начало координат должно быть указано в формате или .\n" #: src/main.c:665 #, c-format msgid "Specified origin is not recognized.\n" msgstr "Указанное значение начала координат не распознано.\n" #: src/main.c:676 #, c-format msgid "gerbv version %s\n" msgstr "Gerbv версии %s\n" #: src/main.c:677 #, c-format msgid "" "Copyright (C) 2001—2008 by Stefan Petersen\n" "and the respective original authors listed in the source files.\n" msgstr "" "Copyright © 2001—2008 Stefan Petersen\n" "и соответствующие оригинальные авторы, указанные в файлах исходных кодов.\n" #: src/main.c:685 #, c-format msgid "You must give an background color in the hex-format <#RRGGBB>.\n" msgstr "Цвет фона должен быть указан в шестнадцатеричном формате <#RRGGBB>.\n" #: src/main.c:690 src/main.c:715 #, c-format msgid "Specified color format is not recognized.\n" msgstr "Указанный формат значения цвета не распознан.\n" #: src/main.c:698 #, c-format msgid "Specified color values should be between 00 and FF.\n" msgstr "Указанные значение цветов должны быть от 00 до FF.\n" #: src/main.c:711 #, c-format msgid "" "You must give an foreground color in the hex-format <#RRGGBB> or " "<#RRGGBBAA>.\n" msgstr "" "Цвет элементов должен быть указан в шестнадцатеричном формате <#RRGGBB> или " "<#RRGGBBAA>.\n" #: src/main.c:729 #, c-format msgid "Specified color values should be between 0x00 (0) and 0xFF (255).\n" msgstr "Указанное значение цвета должно быть от 0x00 (0) до 0xFF (255).\n" #: src/main.c:743 #, c-format msgid "You must give the initial rotation angle\n" msgstr "Должен быть указан угол начального поворота\n" #: src/main.c:749 msgid "Rotate" msgstr "Поворот" #: src/main.c:753 #, c-format msgid "Failed parsing rotate value\n" msgstr "Невозможно разобрать значение поворота\n" #: src/main.c:759 #, c-format msgid "You must give the axis to mirror about\n" msgstr "Должна быть указана ось для отражения\n" #: src/main.c:769 #, c-format msgid "Failed parsing mirror axis\n" msgstr "Невозможно разобрать ось для отражения\n" #: src/main.c:775 #, c-format msgid "You must give a filename to send log to\n" msgstr "Должно быть указано имя файла для журнала\n" #: src/main.c:783 #, c-format msgid "You must give a filename to export to.\n" msgstr "Должно быть указано имя файла для экспорта.\n" #: src/main.c:790 #, c-format msgid "You must give a project filename\n" msgstr "Должно быть указано имя файла проекта.\n" #: src/main.c:797 #, c-format msgid "You must give a filename to read the tools from.\n" msgstr "Должно быть указано имя файла инструментов.\n" #: src/main.c:801 #, c-format msgid "*** ERROR processing tools file \"%s\".\n" msgstr "*** ОШИБКА обработки файла инструментов «%s».\n" #: src/main.c:802 #, c-format msgid "" "Make sure all lines of the file are formatted like this:\n" "T01 0.024\n" "T02 0.032\n" "T03 0.040\n" "...\n" "*** EXITING to prevent erroneous display.\n" msgstr "" "Удостоверьтесь, что все строки этого файла имеют похожий формат:\n" "T01 0.024\n" "T02 0.032\n" "T03 0.040\n" "...\n" "*** ВЫХОД для предотвращения ошибочного отображения.\n" #: src/main.c:811 #, c-format msgid "You must give a translation in the format or .\n" msgstr "Сдвиг должен быть задан в формате или .\n" #: src/main.c:816 #, c-format msgid "The translation format is not recognized.\n" msgstr "Указанный формат сдвига не распознан.\n" #: src/main.c:851 #, c-format msgid "You must give a window size in the format .\n" msgstr "Размер окна должен быть указан в формате <ширина x высота>.\n" #: src/main.c:855 #, c-format msgid "Specified window size is not recognized.\n" msgstr "Указанный формат значения размера окна не распознан.\n" #: src/main.c:861 #, c-format msgid "Specified window size is out of bounds.\n" msgstr "Указанный размер окна вне допустимых границ.\n" #: src/main.c:868 #, c-format msgid "You must supply an export type.\n" msgstr "Должен быть указан тип формата для экспорта.\n" #: src/main.c:880 #, c-format msgid "Unrecognized \"%s\" export type.\n" msgstr "Не распознан тип экспорта «%s».\n" #: src/main.c:896 #, c-format msgid "Not handled option '%c' in command line" msgstr "Необработанный параметр '%c' в командной строке" #: src/main.c:909 #, c-format msgid "Loading project %s...\n" msgstr "Открывается проект %s...\n" #: src/main.c:1067 src/main.c:1102 #, c-format msgid "A valid file was not loaded.\n" msgstr "Не был загружен допустимый файл.\n" #: src/main.c:1155 #, c-format msgid "" "Usage: gerbv [OPTIONS...] [FILE...]\n" "\n" "Available options:\n" msgstr "" "Использование: gerbv [ПАРАМЕТРЫ...] [ФАЙЛ...]\n" "\n" "Допустимые параметры:\n" #: src/main.c:1161 #, c-format msgid "" " -B, --border= Border around the image in percent of the\n" " width/height. Defaults to %d%%.\n" msgstr "" " -B, --border=<проц> Граница вокруг изображения в процентах от ширины\n" " или высоты, по умолчанию %d%%.\n" #: src/main.c:1166 #, c-format msgid "" " -B Border around the image in percent of the\n" " width/height. Defaults to %d%%.\n" msgstr "" " -B<проц> Граница вокруг изображения в процентах от ширины\n" " или высоты, по умолчанию %d%%.\n" #: src/main.c:1173 #, c-format msgid "" " -D, --dpi= Resolution (Dots per inch) for the output\n" " bitmap. With the format , different\n" " resolutions for X- and Y-direction are used.\n" " With the format , both are the same.\n" msgstr "" " -D, --dpi= Разрешение (в точках на дюйм) выводимого\n" " изображения. Различные разрешения по X- и\n" " Y-направлению задаются в формате .\n" " Для задания одинакового разрешения используется\n" " формат .\n" #: src/main.c:1179 #, c-format msgid "" " -D Resolution (Dots per inch) for the output\n" " bitmap. With the format , different\n" " resolutions for X- and Y-direction are used.\n" " With the format , both are the same.\n" msgstr "" " -D Разрешение (в точках на дюйм) выводимого\n" " изображения. Различные разрешения по X- и\n" " Y-направлению задаются в формате .\n" " Для задания одинакового разрешения используется\n" " формат .\n" #: src/main.c:1187 #, c-format msgid "" " -O, --origin= Use the specified coordinates (in inches)\n" " for the lower left corner.\n" msgstr "" " -O, --origin= Использовать указанные координаты (в дюймах) для\n" " начала координат (левый нижний угол).\n" #: src/main.c:1191 #, c-format msgid "" " -O Use the specified coordinates (in inches)\n" " for the lower left corner.\n" msgstr "" " -O Использовать указанные координаты (в дюймах) для\n" " начала координат (левый нижний угол).\n" #: src/main.c:1197 #, c-format msgid " -V, --version Print version of Gerbv.\n" msgstr " -V, --version Отобразить версию Gerbv.\n" #: src/main.c:1200 #, c-format msgid " -V Print version of Gerbv.\n" msgstr " -V Отобразить версию Gerbv.\n" #: src/main.c:1205 #, c-format msgid "" " -a, --antialias Use antialiasing for generated bitmap output.\n" msgstr "" " -a, --antialias Использовать сглаживание для выводимых " "изображений.\n" #: src/main.c:1208 #, c-format msgid "" " -a Use antialiasing for generated bitmap output.\n" msgstr "" " -a Использовать сглаживание для выводимых " "изображений.\n" #: src/main.c:1213 #, c-format msgid " -b, --background= Use background color (like #RRGGBB).\n" msgstr "" " -b, --background= Цвет фона в шестнадцатеричном виде в формате\n" " #RRGGBB.\n" #: src/main.c:1216 #, c-format msgid "" " -b Use background color (like #RRGGBB).\n" msgstr "" " -b Цвет фона в шестнадцатеричном виде в формате\n" " #RRGGBB.\n" #: src/main.c:1221 #, c-format msgid "" " -f, --foreground= Use foreground color (like #RRGGBB or\n" " #RRGGBBAA for setting the alpha).\n" " Use multiple -f flags to set the color for\n" " multiple layers.\n" msgstr "" " -f, --foreground= Цвет элементов в шестнадцатеричном виде в формате\n" " #RRGGBB. Используйте повторно для задания цвета\n" " каждого следующего слоя.\n" #: src/main.c:1227 #, c-format msgid "" " -f Use foreground color (like #RRGGBB or\n" " #RRGGBBAA for setting the alpha).\n" " Use multiple -f flags to set the color for\n" " multiple layers.\n" msgstr "" " -f= Цвет элементов в шестнадцатеричном виде в формате\n" " #RRGGBB. Используйте повторно для задания цвета\n" " каждого следующего слоя.\n" #: src/main.c:1235 #, c-format msgid " -r, --rotate= Set initial orientation for all layers.\n" msgstr " -r, --rotate=<градусы> Задать начальный поворот для всех слоёв.\n" #: src/main.c:1238 #, c-format msgid " -r Set initial orientation for all layers.\n" msgstr " -r<градусы> Задать начальный поворот для всех слоёв.\n" #: src/main.c:1243 #, c-format msgid " -m, --mirror= Set initial mirroring axis (X or Y).\n" msgstr " -m, --mirror=<оси> Задать начальное отражение по оси X или Y.\n" #: src/main.c:1246 #, c-format msgid " -m Set initial mirroring axis (X or Y).\n" msgstr " -m<оси> Задать начальное отражение по оси X или Y.\n" #: src/main.c:1251 #, c-format msgid " -h, --help Print this help message.\n" msgstr " -h, --help Отобразить эту справку.\n" #: src/main.c:1254 #, c-format msgid " -h Print this help message.\n" msgstr " -h Отобразить эту справку.\n" #: src/main.c:1259 #, c-format msgid " -l, --log= Send error messages to .\n" msgstr "" " -l, --log=<лог-файл> Отправлять сообщения об ошибках в <лог-файл>.\n" #: src/main.c:1262 #, c-format msgid " -l Send error messages to .\n" msgstr "" " -l<лог-файл> Отправлять сообщения об ошибках в <лог-файл>.\n" #: src/main.c:1267 #, c-format msgid " -o, --output= Export to .\n" msgstr " -o, --output=<файл> Экспортировать в <файл>.\n" #: src/main.c:1270 #, c-format msgid " -o Export to .\n" msgstr " -o<файл> Экспортировать в <файл>.\n" #: src/main.c:1275 #, c-format msgid " -p, --project= Load project file .\n" msgstr " -p, --project=<файл-проекта> Открыть проект из <файла-проекта>.\n" #: src/main.c:1278 #, c-format msgid " -p Load project file .\n" msgstr " -p<файл-проекта> Открыть проект из <файла-проекта>.\n" #: src/main.c:1283 #, c-format msgid "" " -u, --units=\n" " Use given unit for coordinates.\n" " Default to inch.\n" msgstr "" " -u, --units=\n" " Использовать указанные единицы измерения.\n" " По умолчанию дюймы.\n" #: src/main.c:1288 #, c-format msgid "" " -u Use given unit for coordinates.\n" " Default to inch.\n" msgstr "" " -u Использовать указанные единицы измерения.\n" " По умолчанию дюймы.\n" #: src/main.c:1294 #, c-format msgid "" " -W, --window_inch= Window size in inches for the exported " "image.\n" msgstr "" " -W, --window_inch=<ШxВ> Размер окна в дюймах <ШxВ> для экспортируемого\n" " изображения.\n" #: src/main.c:1297 #, c-format msgid "" " -W Window size in inches for the exported " "image.\n" msgstr "" " -W<ШxВ> Размер окна в дюймах <ШxВ> для экспортируемого\n" " изображения.\n" #: src/main.c:1302 #, c-format msgid "" " -w, --window= Window size in pixels for the exported " "image.\n" " Autoscales to fit if no resolution is specified.\n" " If a resolution is specified, it will clip\n" " exported image.\n" msgstr "" " -w, --window=<ШxВ> Размер окна в пикселях <ШxВ> для экспортируемого\n" " изображения. Если разрешение не указано, то\n" " выполняется масштабирование, иначе, изображение\n" " обрезается.\n" #: src/main.c:1308 #, c-format msgid "" " -w Window size in pixels for the exported " "image.\n" " Autoscales to fit if no resolution is specified.\n" " If a resolution is specified, it will clip\n" " exported image.\n" msgstr "" " -w<ШxВ> Размер окна в пикселях <ШxВ> для экспортируемого\n" " изображения. Если разрешение не указано, то\n" " выполняется масштабирование, иначе, изображение\n" " обрезается.\n" #: src/main.c:1316 #, c-format msgid " -t, --tools= Read Excellon tools from file .\n" msgstr "" " -t, --tools=<файл-инструментов>\n" " Использовать <файл-инструментов> для задания\n" " инструментов Excellon.\n" #: src/main.c:1319 #, c-format msgid " -t Read Excellon tools from file \n" msgstr "" " -t<файл-инструментов> Использовать <файл-инструментов> для задания\n" " инструментов Excellon.\n" #: src/main.c:1324 #, c-format msgid "" " -T, --translate= Useful for arranging panels.\n" " Use multiple -T flags for multiple layers.\n" " Only evaluated when exporting as RS274X or drill.\n" msgstr "" " -T, --translate= и повернуть\n" " X;YrR> на (для выравнивания слоёв панели друг с " "другом).\n" " Используйте -T повторно для каждого следующего " "слоя.\n" " Работает только при экспорте в RS274X и в " "сверловку.\n" #: src/main.c:1330 #, c-format msgid "" " -T Translate image by X and Y and rotate by R " "degree.\n" " Useful for arranging panels.\n" " Use multiple -T flags for multiple files.\n" " Only evaluated when exporting as RS274X or drill.\n" msgstr "" " -T Переместить изображение на и повернуть\n" " на (для выравнивания слоёв панели друг с " "другом).\n" " Используйте -T повторно для каждого следующего " "слоя.\n" " Работает только при экспорте в RS274X и в " "сверловку.\n" #: src/main.c:1338 #, c-format msgid "" " -x, --export=\n" " Export a rendered picture to a file with\n" " the specified format.\n" msgstr "" " -x, --export=\n" " Экспортировать изображение в файл указанного " "формата.\n" #: src/main.c:1343 #, c-format msgid "" " -x\n" msgstr "" " -x\n" #: src/project.c:256 #, c-format msgid "'%s' parameter not a vector" msgstr "Параметр «%s» не является вектором" #: src/project.c:262 #, c-format msgid "'%s' vector of incorrect length" msgstr "Недопустимая длина вектора «%s»" #: src/project.c:285 msgid "Illegal color in projectfile" msgstr "Недопустимый цвет в файле проекта" #: src/project.c:306 msgid "Illegal alpha value in projectfile" msgstr "Недопустимое значение alpha в файле проекта" #: src/project.c:322 src/project.c:340 src/project.c:348 src/project.c:368 #: src/project.c:378 #, c-format msgid "Illegal %s in projectfile" msgstr "Недопустимое значение %s в файле проекта" #: src/project.c:601 #, c-format msgid "%s(): too few arguments" msgstr "%s(): слишком мало аргументов" #: src/project.c:610 #, c-format msgid "%s(): layer number missing/incorrect" msgstr "%s(): номер слоя пропущен или недопустим" #: src/project.c:641 #, c-format msgid "%s(): non-symbol found, ignoring" msgstr "%s(): пропуск не символа" #: src/project.c:677 msgid "Argument to inverted must be #t or #f" msgstr "Аргумент для инвертирования должен быть #t или #f" #: src/project.c:685 msgid "Argument to visible must be #t or #f" msgstr "Аргумент для видимости должен быть #t или #f" #: src/project.c:703 #, c-format msgid "%s(): realloc failed\n" msgstr "%s(): ошибка перевыделения памяти\n" #: src/project.c:766 #, c-format msgid "%s(): WARNING: HID_Mixed is not yet supported\n" msgstr "%s(): предупреждение: HID_Mixed ещё не поддерживается\n" #: src/project.c:775 #, c-format msgid "%s(): Unknown attribute type: \"%s\"\n" msgstr "%s(): неизвестный тип атрибута «%s»\n" #: src/project.c:784 #, c-format msgid "Ignoring \"%s\" in project file" msgstr "Пропуск «%s» в файле проекта" #: src/project.c:804 msgid "set-render-type!: Too few arguments" msgstr "set-render-type(): слишком мало аргументов" #: src/project.c:828 msgid "gerbv-file-version!: Too few arguments" msgstr "gerbv-file-version(): слишком мало аргументов" #: src/project.c:840 #, c-format msgid "" "The project file you are attempting to load has specified that it\n" "uses project file version \"%s\" but this string is not\n" "a valid version. Gerbv will attempt to load the file using\n" "version \"%s\". You may experience unexpected results." msgstr "" "В загружаемом файле проекта указана недействительная версия «%s».\n" "Gerbv попытается загрузить этот файл как версии «%s». Могут быть\n" "получены неожиданные результаты." #: src/project.c:849 #, c-format msgid "%s(): Read a project file version of %s (%d)\n" msgstr "%s(): чтение файла проекта версии %s (%d)\n" #: src/project.c:850 #, c-format msgid " Translated back to \"%s\"\n" msgstr " Перевод обратно к «%s»\n" #: src/project.c:858 #, c-format msgid "" "The project file you are attempting to load is version \"%s\"\n" "but this copy of gerbv is only capable of loading project files\n" "using version \"%s\" or older. You may experience unexpected results." msgstr "" "Версия загружаемого файла проекта «%s», но эта версия Gerbv способна\n" "загружать файлы проектов версий «%s» или старше. Могут быть получены\n" "неожиданные результаты." #: src/project.c:877 #, c-format msgid "" "The project file you are attempting to load is version \"%s\"\n" "which is an unknown version.\n" "You may experience unexpected results." msgstr "" "Версия «%s» загружаемого файла проекта неизвестна.\n" "Могут быть получены неожиданные результаты." #: src/project.c:910 #, c-format msgid "Failed to open \"%s\" for reading: %s" msgstr "Невозможно открыть «%s» для чтения: %s" #: src/project.c:984 #, c-format msgid "Failed to read %s" msgstr "Невозможно прочитать «%s»" #: src/project.c:993 msgid "Couldn't init scheme" msgstr "Невозможно инициализировать scheme" #: src/project.c:1001 #, c-format msgid "Problem loading init.scm (%s)" msgstr "Проблема при загрузке init.scm: %s" #: src/project.c:1008 #, c-format msgid "Couldn't open %s (%s)" msgstr "Невозможно открыть «%s»: %s" #: src/project.c:1033 #, c-format msgid "Couldn't open project file %s (%s)" msgstr "Невозможно открыть файл проекта «%s»: %s" #: src/project.c:1080 #, c-format msgid "Couldn't save project %s" msgstr "Невозможно сохранить проект %s" #: src/project.c:1176 #, c-format msgid "%s(): WARNING: HID_Mixed is not yet supported.\n" msgstr "%s(): предупреждение: HID_Mixed ещё не поддерживается.\n" #: src/project.c:1186 #, c-format msgid "%s: unknown type of HID attribute (%d)\n" msgstr "%s: неизвестный тип HID-атрибута (%d)\n" #: src/render.c:122 #, c-format msgid "Illegal zoom direction %d" msgstr "Недопустимый тип масштабирования %d" #: src/tooltable.c:58 #, c-format msgid "Ignored strange tool \"%s\" at line %ld in file \"%s\"" msgstr "Игнорирование странного инструмента в «%s» на строке %ld файла «%s»" #: src/tooltable.c:64 #, c-format msgid "No tool number in \"%s\" at line %ld in file \"%s\"" msgstr "Нет номера инструмента в «%s» на строке %ld файла «%s»" #: src/tooltable.c:76 #, c-format msgid "Can't parse tool number in \"%s\" at line %ld in file \"%s\"" msgstr "Невозможно разобрать номер инструмента в «%s» на строке %ld файла «%s»" #: src/tooltable.c:95 #, c-format msgid "Tool T%02d diameter is impossible at line %ld in file \"%s\"" msgstr "Невозможный диаметр инструмента T%02d на строке %ld файла «%s»" #: src/tooltable.c:101 #, c-format msgid "Tool T%02d diameter is very small at line %ld in file \"%s\"" msgstr "Слишком маленький диаметр инструмента T%02d на строке %ld файла «%s»" #: src/tooltable.c:107 #, c-format msgid "Tool T%02d is already defined, occurred at line %ld in file \"%s\"" msgstr "Повторное определение инструмента T%02d на строке %ld файла «%s»" #: src/tooltable.c:110 msgid "Exiting because this is a HOLD error at any board house." msgstr "Выход, так как любой изготовитель плат считает это ошибкой." #: src/tooltable.c:135 #, c-format msgid "Failed to open \"%s\" for reading" msgstr "Невозможно открыть «%s» для чтения" gerbv-2.7.0/po/Makefile.in.in0000644000175000017500000004155313421555750015614 0ustar carstencarsten# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.19 GETTEXT_MACRO_VERSION = 0.19 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SED = @SED@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot POFILESDEPS_yes = $(POFILESDEPS_) POFILESDEPS_no = POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) DISTFILESDEPS_ = update-po DISTFILESDEPS_yes = $(DISTFILESDEPS_) DISTFILESDEPS_no = DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO)) # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. CHECK_MACRO_VERSION = \ test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot @$(CHECK_MACRO_VERSION) test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. # The determination of whether the package xyz is a GNU one is based on the # heuristic whether some file in the top level directory mentions "GNU xyz". # If GNU 'find' is available, we avoid grepping through monster files. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed package_gnu="$(PACKAGE_GNU)"; \ test -n "$$package_gnu" || { \ if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f \ -size -10000000c -exec grep 'GNU @PACKAGE@' \ /dev/null '{}' ';' 2>/dev/null; \ else \ LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \ fi; \ } | grep -v 'libtool:' >/dev/null; then \ package_gnu=yes; \ else \ package_gnu=no; \ fi; \ }; \ if test "$$package_gnu" = "yes"; then \ package_prefix='GNU '; \ else \ package_prefix=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_prefix}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(POFILESDEPS) @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) \ && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ esac; \ }; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS) @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ esac; \ }; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: # Recreate Makefile by invoking config.status. Explicitly invoke the shell, # because execution permission bits may not work on the current file system. # Use @SHELL@, which is the shell determined by autoconf for the use by its # scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && @SHELL@ ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/po/Makevars.template0000644000175000017500000000445213421555750016445 0ustar carstencarsten# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Free Software Foundation, Inc. # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' # context. Possible values are "yes" and "no". Set this to yes if the # package uses functions taking also a message context, like pgettext(), or # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. USE_MSGCTXT = no # These options get passed to msgmerge. # Useful options are in particular: # --previous to keep previous msgids of translated messages, # --quiet to reduce the verbosity. MSGMERGE_OPTIONS = gerbv-2.7.0/po/LINGUAS0000644000175000017500000000000313421555714014150 0ustar carstencarstenru gerbv-2.7.0/po/remove-potcdate.sin0000644000175000017500000000066013421555751016746 0ustar carstencarsten# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } gerbv-2.7.0/configure0000755000175000017500000321012413423533413014420 0ustar carstencarsten#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for gerbv 2.7.0. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gerbv' PACKAGE_TARNAME='gerbv' PACKAGE_VERSION='2.7.0' PACKAGE_STRING='gerbv 2.7.0' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="src/gerbv.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" gt_needs= ac_header_list= gl_use_threads_default= ac_func_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS UPDATE_DESKTOP_DATABASE ENABLE_UPDATE_DESKTOP_DATABASE_FALSE ENABLE_UPDATE_DESKTOP_DATABASE_TRUE XDGDATADIR GTK_UPDATE_ICON_CACHE_BIN SETENV DXF_FALSE DXF_TRUE GTK_LIBS GTK_CFLAGS CAIRO_LIBS CAIRO_CFLAGS GSETTINGS_RULES GLIB_COMPILE_SCHEMAS gsettingsschemadir PKG_CONFIG_LIBDIR PKG_CONFIG_PATH GSETTINGS_DISABLE_SCHEMAS_COMPILE PKG_CONFIG HAVE_MAGICK_FALSE HAVE_MAGICK_TRUE IM_MONTAGE IM_DISPLAY IM_CONVERT IM_COMPOSITE IM_COMPARE IM_ANIMATE CXXCPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP LIBTOOL am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX WIN32_FALSE WIN32_TRUE WIN32 HAVE_PO4A_FALSE HAVE_PO4A_TRUE nsgmls onsgmls po4a_translate po4a_gettextize POSUB LTLIBINTL LIBINTL INTLLIBS INTL_LIBTOOL_SUFFIX_PREFIX INTLOBJS GENCAT INSTOBJEXT DATADIRNAME CATOBJEXT USE_INCLUDED_LIBINTL BUILD_INCLUDED_LIBINTL LTLIBC WINDRES WOE32 WOE32DLL HAVE_WPRINTF HAVE_NEWLOCALE HAVE_SNPRINTF HAVE_ASPRINTF HAVE_POSIX_PRINTF INTL_DEFAULT_VERBOSITY INTL_MACOSX_LIBS GLIBC21 INTLBISON LTLIBICONV LIBICONV LTLIBMULTITHREAD LIBMULTITHREAD LTLIBTHREAD LIBTHREAD LIBPTH_PREFIX LTLIBPTH LIBPTH PRI_MACROS_BROKEN ALLOCA HAVE_VISIBILITY CFLAG_VISIBILITY RANLIB GLIBC2 host_os host_vendor host_cpu host build_os build_vendor build_cpu build XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION SED USE_NLS MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_maintainer_mode enable_nls enable_threads with_gnu_ld enable_rpath with_libpth_prefix with_libiconv_prefix with_included_gettext with_libintl_prefix enable_debug enable_unit_mm enable_shared enable_static with_pic enable_fast_install with_aix_soname with_sysroot enable_libtool_lock enable_schemas_compile enable_dxf enable_efence with_xdgdatadir enable_update_desktop_database ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP CXX CXXFLAGS CCC LT_SYS_LIBRARY_PATH CXXCPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR CAIRO_CFLAGS CAIRO_LIBS GTK_CFLAGS GTK_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures gerbv 2.7.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/gerbv] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of gerbv 2.7.0:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-nls do not use Native Language Support --enable-threads={posix|solaris|pth|windows} specify multithreading API --disable-threads build without multithread safety --disable-rpath do not hardcode runtime library paths --enable-debug Enable fairly verbose debug output --enable-unit-mm Set default unit for coordinates in status bar to mm --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --disable-schemas-compile Disable regeneration of gschemas.compiled on install --enable-dxf Enable DXF via dxflib [default=no] --enable-efence Link with ElectricFence for malloc debugging default=no --disable-update-desktop-database do not update desktop database after installation Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-libpth-prefix[=DIR] search for libpth in DIR/include and DIR/lib --without-libpth-prefix don't search for libpth in includedir and libdir --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-included-gettext use the GNU gettext library included here --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-xdgdatadir=path Change where the theme icons and mime registrations are installed [DATADIR] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags LT_SYS_LIBRARY_PATH User-defined run-time library search path. CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path CAIRO_CFLAGS C compiler flags for CAIRO, overriding pkg-config CAIRO_LIBS linker flags for CAIRO, overriding pkg-config GTK_CFLAGS C compiler flags for GTK, overriding pkg-config GTK_LIBS linker flags for GTK, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF gerbv configure 2.7.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 &5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_link # ac_fn_cxx_try_run LINENO # ------------------------ # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_cxx_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_run # ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES # --------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_cxx_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_cxx_check_header_mongrel # ac_fn_cxx_check_func LINENO FUNC VAR # ------------------------------------ # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_cxx_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_cxx_check_func cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by gerbv $as_me 2.7.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gt_needs="$gt_needs " as_fn_append ac_header_list " stdlib.h" as_fn_append ac_header_list " unistd.h" as_fn_append ac_header_list " sys/param.h" as_fn_append ac_func_list " symlink" # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.15' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='gerbv' VERSION='2.7.0' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h ac_config_headers="$ac_config_headers config.h" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed GETTEXT_MACRO_VERSION=0.19 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2 or newer" >&5 $as_echo_n "checking whether we are using the GNU C Library 2 or newer... " >&6; } if ${ac_cv_gnu_library_2+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ >= 2) && !defined __UCLIBC__ Lucky GNU user #endif #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Lucky GNU user" >/dev/null 2>&1; then : ac_cv_gnu_library_2=yes else ac_cv_gnu_library_2=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2" >&5 $as_echo "$ac_cv_gnu_library_2" >&6; } GLIBC2="$ac_cv_gnu_library_2" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi CFLAG_VISIBILITY= HAVE_VISIBILITY=0 if test -n "$GCC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the -Werror option is usable" >&5 $as_echo_n "checking whether the -Werror option is usable... " >&6; } if ${gl_cv_cc_vis_werror+:} false; then : $as_echo_n "(cached) " >&6 else gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Werror" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_cc_vis_werror=yes else gl_cv_cc_vis_werror=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$gl_save_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_vis_werror" >&5 $as_echo "$gl_cv_cc_vis_werror" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for simple visibility declarations" >&5 $as_echo_n "checking for simple visibility declarations... " >&6; } if ${gl_cv_cc_visibility+:} false; then : $as_echo_n "(cached) " >&6 else gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden" if test $gl_cv_cc_vis_werror = yes; then CFLAGS="$CFLAGS -Werror" fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ extern __attribute__((__visibility__("hidden"))) int hiddenvar; extern __attribute__((__visibility__("default"))) int exportedvar; extern __attribute__((__visibility__("hidden"))) int hiddenfunc (void); extern __attribute__((__visibility__("default"))) int exportedfunc (void); void dummyfunc (void) {} int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_cc_visibility=yes else gl_cv_cc_visibility=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$gl_save_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_visibility" >&5 $as_echo "$gl_cv_cc_visibility" >&6; } if test $gl_cv_cc_visibility = yes; then CFLAG_VISIBILITY="-fvisibility=hidden" HAVE_VISIBILITY=1 fi fi cat >>confdefs.h <<_ACEOF #define HAVE_VISIBILITY $HAVE_VISIBILITY _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdint.h" >&5 $as_echo_n "checking for stdint.h... " >&6; } if ${gl_cv_header_stdint_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { uintmax_t i = (uintmax_t) -1; return !i; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_header_stdint_h=yes else gl_cv_header_stdint_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_stdint_h" >&5 $as_echo "$gl_cv_header_stdint_h" >&6; } if test $gl_cv_header_stdint_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H_WITH_UINTMAX 1 _ACEOF fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } if ${ac_cv_working_alloca_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *p = (char *) alloca (2 * sizeof (int)); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_working_alloca_h=yes else ac_cv_working_alloca_h=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h" >&5 $as_echo "$ac_cv_working_alloca_h" >&6; } if test $ac_cv_working_alloca_h = yes; then $as_echo "#define HAVE_ALLOCA_H 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } if ${ac_cv_func_alloca_works+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __GNUC__ # define alloca __builtin_alloca #else # ifdef _MSC_VER # include # define alloca _alloca # else # ifdef HAVE_ALLOCA_H # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ void *alloca (size_t); # endif # endif # endif # endif #endif int main () { char *p = (char *) alloca (1); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_func_alloca_works=yes else ac_cv_func_alloca_works=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5 $as_echo "$ac_cv_func_alloca_works" >&6; } if test $ac_cv_func_alloca_works = yes; then $as_echo "#define HAVE_ALLOCA 1" >>confdefs.h else # The SVR3 libPW and SVR4 libucb both contain incompatible functions # that cause trouble. Some versions do not even contain alloca or # contain a buggy version. If you still want to use their alloca, # use ar to extract alloca.o from them instead of compiling alloca.c. ALLOCA=\${LIBOBJDIR}alloca.$ac_objext $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } if ${ac_cv_os_cray+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined CRAY && ! defined CRAY2 webecray #else wenotbecray #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "webecray" >/dev/null 2>&1; then : ac_cv_os_cray=yes else ac_cv_os_cray=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray" >&5 $as_echo "$ac_cv_os_cray" >&6; } if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func _ACEOF break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } if ${ac_cv_c_stack_direction+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_c_stack_direction=0 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int find_stack_direction (int *addr, int depth) { int dir, dummy = 0; if (! addr) addr = &dummy; *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1; dir = depth ? find_stack_direction (addr, depth - 1) : 0; return dir + dummy; } int main (int argc, char **argv) { return find_stack_direction (0, argc + !argv + 20) < 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_c_stack_direction=1 else ac_cv_c_stack_direction=-1 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction" >&5 $as_echo "$ac_cv_c_stack_direction" >&6; } cat >>confdefs.h <<_ACEOF #define STACK_DIRECTION $ac_cv_c_stack_direction _ACEOF fi for ac_header in $ac_header_list do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getpagesize do : ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" if test "x$ac_cv_func_getpagesize" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETPAGESIZE 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 $as_echo_n "checking for working mmap... " >&6; } if ${ac_cv_func_mmap_fixed_mapped+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_mmap_fixed_mapped=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default /* malloc might have been renamed as rpl_malloc. */ #undef malloc /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the file system buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propagated back to all the places they're supposed to be. Grep wants private fixed already mapped. The main things grep needs to know about mmap are: * does it exist and is it safe to write into the mmap'd area * how to use it (BSD variants) */ #include #include #if !defined STDC_HEADERS && !defined HAVE_STDLIB_H char *malloc (); #endif /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE # ifdef _SC_PAGESIZE # define getpagesize() sysconf(_SC_PAGESIZE) # else /* no _SC_PAGESIZE */ # ifdef HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif /* no _SC_PAGESIZE */ #endif /* no HAVE_GETPAGESIZE */ int main () { char *data, *data2, *data3; const char *cdata2; int i, pagesize; int fd, fd2; pagesize = getpagesize (); /* First, make a file with some known garbage in it. */ data = (char *) malloc (pagesize); if (!data) return 1; for (i = 0; i < pagesize; ++i) *(data + i) = rand (); umask (0); fd = creat ("conftest.mmap", 0600); if (fd < 0) return 2; if (write (fd, data, pagesize) != pagesize) return 3; close (fd); /* Next, check that the tail of a page is zero-filled. File must have non-zero length, otherwise we risk SIGBUS for entire page. */ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); if (fd2 < 0) return 4; cdata2 = ""; if (write (fd2, cdata2, 1) != 1) return 5; data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); if (data2 == MAP_FAILED) return 6; for (i = 0; i < pagesize; ++i) if (*(data2 + i)) return 7; close (fd2); if (munmap (data2, pagesize)) return 8; /* Next, try to mmap the file at a fixed address which already has something else allocated at it. If we can, also make sure that we see the same garbage. */ fd = open ("conftest.mmap", O_RDWR); if (fd < 0) return 9; if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) return 10; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) return 11; /* Finally, make sure that changes to the mapped area do not percolate back to the file as seen by read(). (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = (char *) malloc (pagesize); if (!data3) return 12; if (read (fd, data3, pagesize) != pagesize) return 13; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) return 14; close (fd); return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_mmap_fixed_mapped=yes else ac_cv_func_mmap_fixed_mapped=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 $as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } if test $ac_cv_func_mmap_fixed_mapped = yes; then $as_echo "#define HAVE_MMAP 1" >>confdefs.h fi rm -f conftest.mmap conftest.txt { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether integer division by zero raises SIGFPE" >&5 $as_echo_n "checking whether integer division by zero raises SIGFPE... " >&6; } if ${gt_cv_int_divbyzero_sigfpe+:} false; then : $as_echo_n "(cached) " >&6 else gt_cv_int_divbyzero_sigfpe= case "$host_os" in macos* | darwin[6-9]* | darwin[1-9][0-9]*) # On Mac OS X 10.2 or newer, just assume the same as when cross- # compiling. If we were to perform the real test, 1 Crash Report # dialog window would pop up. case "$host_cpu" in i[34567]86 | x86_64) gt_cv_int_divbyzero_sigfpe="guessing yes" ;; esac ;; esac if test -z "$gt_cv_int_divbyzero_sigfpe"; then if test "$cross_compiling" = yes; then : # Guess based on the CPU. case "$host_cpu" in alpha* | i[34567]86 | x86_64 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include static void sigfpe_handler (int sig) { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (2); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gt_cv_int_divbyzero_sigfpe=yes else gt_cv_int_divbyzero_sigfpe=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_int_divbyzero_sigfpe" >&5 $as_echo "$gt_cv_int_divbyzero_sigfpe" >&6; } case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac cat >>confdefs.h <<_ACEOF #define INTDIV0_RAISES_SIGFPE $value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5 $as_echo_n "checking for inttypes.h... " >&6; } if ${gl_cv_header_inttypes_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { uintmax_t i = (uintmax_t) -1; return !i; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_header_inttypes_h=yes else gl_cv_header_inttypes_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_inttypes_h" >&5 $as_echo "$gl_cv_header_inttypes_h" >&6; } if test $gl_cv_header_inttypes_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H_WITH_UINTMAX 1 _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5 $as_echo_n "checking for unsigned long long int... " >&6; } if ${ac_cv_type_unsigned_long_long_int+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_type_unsigned_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* For now, do not test the preprocessor; as of 2007 there are too many implementations with broken preprocessors. Perhaps this can be revisited in 2012. In the meantime, code should not expect #if to work with literals wider than 32 bits. */ /* Test literals. */ long long int ll = 9223372036854775807ll; long long int nll = -9223372036854775807LL; unsigned long long int ull = 18446744073709551615ULL; /* Test constant expressions. */ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ? 1 : -1)]; typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ? 1 : -1)]; int i = 63; int main () { /* Test availability of runtime routines for shift and division. */ long long int llmax = 9223372036854775807ll; unsigned long long int ullmax = 18446744073709551615ull; return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) | (llmax / ll) | (llmax % ll) | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) | (ullmax / ull) | (ullmax % ull)); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : else ac_cv_type_unsigned_long_long_int=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long_int" >&5 $as_echo "$ac_cv_type_unsigned_long_long_int" >&6; } if test $ac_cv_type_unsigned_long_long_int = yes; then $as_echo "#define HAVE_UNSIGNED_LONG_LONG_INT 1" >>confdefs.h fi if test $gl_cv_header_inttypes_h = no && test $gl_cv_header_stdint_h = no; then test $ac_cv_type_unsigned_long_long_int = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' cat >>confdefs.h <<_ACEOF #define uintmax_t $ac_type _ACEOF else $as_echo "#define HAVE_UINTMAX_T 1" >>confdefs.h fi for ac_header in inttypes.h do : ac_fn_c_check_header_mongrel "$LINENO" "inttypes.h" "ac_cv_header_inttypes_h" "$ac_includes_default" if test "x$ac_cv_header_inttypes_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H 1 _ACEOF fi done if test $ac_cv_header_inttypes_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the inttypes.h PRIxNN macros are broken" >&5 $as_echo_n "checking whether the inttypes.h PRIxNN macros are broken... " >&6; } if ${gt_cv_inttypes_pri_broken+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef PRId32 char *p = PRId32; #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_inttypes_pri_broken=no else gt_cv_inttypes_pri_broken=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_inttypes_pri_broken" >&5 $as_echo "$gt_cv_inttypes_pri_broken" >&6; } fi if test "$gt_cv_inttypes_pri_broken" = yes; then cat >>confdefs.h <<_ACEOF #define PRI_MACROS_BROKEN 1 _ACEOF PRI_MACROS_BROKEN=1 else PRI_MACROS_BROKEN=0 fi # Check whether --enable-threads was given. if test "${enable_threads+set}" = set; then : enableval=$enable_threads; gl_use_threads=$enableval else if test -n "$gl_use_threads_default"; then gl_use_threads="$gl_use_threads_default" else case "$host_os" in osf*) gl_use_threads=no ;; cygwin*) case `uname -r` in 1.[0-5].*) gl_use_threads=no ;; *) gl_use_threads=yes ;; esac ;; *) gl_use_threads=yes ;; esac fi fi if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # For using : case "$host_os" in osf*) # On OSF/1, the compiler needs the flag -D_REENTRANT so that it # groks . cc also understands the flag -pthread, but # we don't use it because 1. gcc-2.95 doesn't understand -pthread, # 2. putting a flag into CPPFLAGS that has an effect on the linker # causes the AC_LINK_IFELSE test below to succeed unexpectedly, # leading to wrong values of LIBTHREAD and LTLIBTHREAD. CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac # Some systems optimize for single-threaded programs by default, and # need special flags to disable these optimizations. For example, the # definition of 'errno' in . case "$host_os" in aix* | freebsd*) CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" ;; solaris*) CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac fi if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 $as_echo_n "checking for 64-bit host... " >&6; } if ${gl_cv_solaris_64bit+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1; then : gl_cv_solaris_64bit=yes else gl_cv_solaris_64bit=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 $as_echo "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" gl_threads_api=none LIBTHREAD= LTLIBTHREAD= LIBMULTITHREAD= LTLIBMULTITHREAD= if test "$gl_use_threads" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether imported symbols can be declared weak" >&5 $as_echo_n "checking whether imported symbols can be declared weak... " >&6; } if ${gl_cv_have_weak+:} false; then : $as_echo_n "(cached) " >&6 else gl_cv_have_weak=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ extern void xyzzy (); #pragma weak xyzzy int main () { xyzzy(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_cv_have_weak=maybe fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test $gl_cv_have_weak = maybe; then if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __ELF__ Extensible Linking Format #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Extensible Linking Format" >/dev/null 2>&1; then : gl_cv_have_weak="guessing yes" else gl_cv_have_weak="guessing no" fi rm -f conftest* else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #pragma weak fputs int main () { return (fputs == NULL); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_have_weak=yes else gl_cv_have_weak=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_weak" >&5 $as_echo "$gl_cv_have_weak" >&6; } if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that # it groks . It's added above, in gl_THREADLIB_EARLY_BODY. ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" if test "x$ac_cv_header_pthread_h" = xyes; then : gl_have_pthread_h=yes else gl_have_pthread_h=no fi if test "$gl_have_pthread_h" = yes; then # Other possible tests: # -lpthreads (FSU threads, PCthreads) # -lgthreads gl_have_pthread= # Test whether both pthread_mutex_lock and pthread_mutexattr_init exist # in libc. IRIX 6.5 has the first one in both libc and libpthread, but # the second one only in libpthread, and lock.c needs it. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { pthread_mutex_lock((pthread_mutex_t*)0); pthread_mutexattr_init((pthread_mutexattr_t*)0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_pthread=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) if test -n "$gl_have_pthread"; then # The program links fine without libpthread. But it may actually # need to link with libpthread in order to create multiple threads. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; } if ${ac_cv_lib_pthread_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pthread_pthread_kill=yes else ac_cv_lib_pthread_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; } if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then : LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread # On Solaris and HP-UX, most pthread functions exist also in libc. # Therefore pthread_in_use() needs to actually try to create a # thread: pthread_create from libc will fail, whereas # pthread_create will actually create a thread. case "$host_os" in solaris* | hpux*) $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h esac fi else # Some library is needed. Try libpthread and libc_r. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; } if ${ac_cv_lib_pthread_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pthread_pthread_kill=yes else ac_cv_lib_pthread_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; } if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then : gl_have_pthread=yes LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread fi if test -z "$gl_have_pthread"; then # For FreeBSD 4. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lc_r" >&5 $as_echo_n "checking for pthread_kill in -lc_r... " >&6; } if ${ac_cv_lib_c_r_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_r $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_c_r_pthread_kill=yes else ac_cv_lib_c_r_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_kill" >&5 $as_echo "$ac_cv_lib_c_r_pthread_kill" >&6; } if test "x$ac_cv_lib_c_r_pthread_kill" = xyes; then : gl_have_pthread=yes LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r fi fi fi if test -n "$gl_have_pthread"; then gl_threads_api=posix $as_echo "#define USE_POSIX_THREADS 1" >>confdefs.h if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_POSIX_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi fi fi fi if test -z "$gl_have_pthread"; then if test "$gl_use_threads" = yes || test "$gl_use_threads" = solaris; then gl_have_solaristhread= gl_save_LIBS="$LIBS" LIBS="$LIBS -lthread" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { thr_self(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_solaristhread=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gl_save_LIBS" if test -n "$gl_have_solaristhread"; then gl_threads_api=solaris LIBTHREAD=-lthread LTLIBTHREAD=-lthread LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" $as_echo "#define USE_SOLARIS_THREADS 1" >>confdefs.h if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_SOLARIS_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi fi fi if test "$gl_use_threads" = pth; then gl_save_CPPFLAGS="$CPPFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libpth" >&5 $as_echo_n "checking how to link with libpth... " >&6; } if ${ac_cv_libpth_libs+:} false; then : $as_echo_n "(cached) " >&6 else use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libpth-prefix was given. if test "${with_libpth_prefix+set}" = set; then : withval=$with_libpth_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBPTH= LTLIBPTH= INCPTH= LIBPTH_PREFIX= HAVE_LIBPTH= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='pth ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBPTH="${LIBPTH}${LIBPTH:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBPTH="${LIBPTH}${LIBPTH:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else LIBPTH="${LIBPTH}${LIBPTH:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_a" else LIBPTH="${LIBPTH}${LIBPTH:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'pth'; then LIBPTH_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'pth'; then LIBPTH_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCPTH="${INCPTH}${INCPTH:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBPTH="${LIBPTH}${LIBPTH:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBPTH="${LIBPTH}${LIBPTH:+ }$dep" LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }$dep" ;; esac done fi else LIBPTH="${LIBPTH}${LIBPTH:+ }-l$name" LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBPTH="${LIBPTH}${LIBPTH:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBPTH="${LIBPTH}${LIBPTH:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-R$found_dir" done fi ac_cv_libpth_libs="$LIBPTH" ac_cv_libpth_ltlibs="$LTLIBPTH" ac_cv_libpth_cppflags="$INCPTH" ac_cv_libpth_prefix="$LIBPTH_PREFIX" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_libpth_libs" >&5 $as_echo "$ac_cv_libpth_libs" >&6; } LIBPTH="$ac_cv_libpth_libs" LTLIBPTH="$ac_cv_libpth_ltlibs" INCPTH="$ac_cv_libpth_cppflags" LIBPTH_PREFIX="$ac_cv_libpth_prefix" for element in $INCPTH; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done HAVE_LIBPTH=yes gl_have_pth= gl_save_LIBS="$LIBS" LIBS="$LIBS $LIBPTH" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { pth_self(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_pth=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gl_save_LIBS" if test -n "$gl_have_pth"; then gl_threads_api=pth LIBTHREAD="$LIBPTH" LTLIBTHREAD="$LTLIBPTH" LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" $as_echo "#define USE_PTH_THREADS 1" >>confdefs.h if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_PTH_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi else CPPFLAGS="$gl_save_CPPFLAGS" fi fi if test -z "$gl_have_pthread"; then case "$gl_use_threads" in yes | windows | win32) # The 'win32' is for backward compatibility. if { case "$host_os" in mingw*) true;; *) false;; esac }; then gl_threads_api=windows $as_echo "#define USE_WINDOWS_THREADS 1" >>confdefs.h fi ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for multithread API to use" >&5 $as_echo_n "checking for multithread API to use... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_threads_api" >&5 $as_echo "$gl_threads_api" >&6; } if test "$gl_threads_api" = posix; then # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the # pthread_rwlock_* functions. ac_fn_c_check_type "$LINENO" "pthread_rwlock_t" "ac_cv_type_pthread_rwlock_t" "#include " if test "x$ac_cv_type_pthread_rwlock_t" = xyes; then : $as_echo "#define HAVE_PTHREAD_RWLOCK 1" >>confdefs.h fi # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #if __FreeBSD__ == 4 error "No, in FreeBSD 4.0 recursive mutexes actually don't work." #elif (defined __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ \ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070) error "No, in Mac OS X < 10.7 recursive mutexes actually don't work." #else int x = (int)PTHREAD_MUTEX_RECURSIVE; return !x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : $as_echo "#define HAVE_PTHREAD_MUTEX_RECURSIVE 1" >>confdefs.h fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi : use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 $as_echo_n "checking for working iconv... " >&6; } if ${am_cv_func_iconv_works+:} false; then : $as_echo_n "(cached) " >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; const char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : am_cv_func_iconv_works=yes else am_cv_func_iconv_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi LIBS="$am_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 $as_echo "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 $as_echo_n "checking for iconv declaration... " >&6; } if ${am_cv_proto_iconv+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_cv_proto_iconv_arg1="" else am_cv_proto_iconv_arg1="const" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" fi am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_proto_iconv" >&5 $as_echo " $am_cv_proto_iconv" >&6; } cat >>confdefs.h <<_ACEOF #define ICONV_CONST $am_cv_proto_iconv_arg1 _ACEOF fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; } int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : $as_echo "#define HAVE_BUILTIN_EXPECT 1" >>confdefs.h fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext for ac_header in argz.h inttypes.h limits.h unistd.h sys/param.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getcwd getegid geteuid getgid getuid mempcpy munmap \ stpcpy strcasecmp strdup strtoul tsearch uselocale argz_count \ argz_stringify argz_next __fsetlocking do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_decl "$LINENO" "feof_unlocked" "ac_cv_have_decl_feof_unlocked" "#include " if test "x$ac_cv_have_decl_feof_unlocked" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_FEOF_UNLOCKED $ac_have_decl _ACEOF ac_fn_c_check_decl "$LINENO" "fgets_unlocked" "ac_cv_have_decl_fgets_unlocked" "#include " if test "x$ac_cv_have_decl_fgets_unlocked" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_FGETS_UNLOCKED $ac_have_decl _ACEOF for ac_prog in bison do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_INTLBISON+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$INTLBISON"; then ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_INTLBISON="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLBISON" >&5 $as_echo "$INTLBISON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$INTLBISON" && break done if test -z "$INTLBISON"; then ac_verc_fail=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking version of bison" >&5 $as_echo_n "checking version of bison... " >&6; } ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 2.[7-9]* | [3-9].*) ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prog_version" >&5 $as_echo "$ac_prog_version" >&6; } fi if test $ac_verc_fail = yes; then INTLBISON=: fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5 $as_echo_n "checking for long long int... " >&6; } if ${ac_cv_type_long_long_int+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_type_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int if test $ac_cv_type_long_long_int = yes; then if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef LLONG_MAX # define HALF \ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) # define LLONG_MAX (HALF - 1 + HALF) #endif int main () { long long int n = 1; int i; for (i = 0; ; i++) { long long int m = n << i; if (m >> i != n) return 1; if (LLONG_MAX / 2 < m) break; } return 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_type_long_long_int=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long_int" >&5 $as_echo "$ac_cv_type_long_long_int" >&6; } if test $ac_cv_type_long_long_int = yes; then $as_echo "#define HAVE_LONG_LONG_INT 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5 $as_echo_n "checking for wchar_t... " >&6; } if ${gt_cv_c_wchar_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include wchar_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wchar_t=yes else gt_cv_c_wchar_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t" >&5 $as_echo "$gt_cv_c_wchar_t" >&6; } if test $gt_cv_c_wchar_t = yes; then $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5 $as_echo_n "checking for wint_t... " >&6; } if ${gt_cv_c_wint_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Tru64 with Desktop Toolkit C has a bug: must be included before . BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #include #include wint_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wint_t=yes else gt_cv_c_wint_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wint_t" >&5 $as_echo "$gt_cv_c_wint_t" >&6; } if test $gt_cv_c_wint_t = yes; then $as_echo "#define HAVE_WINT_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intmax_t" >&5 $as_echo_n "checking for intmax_t... " >&6; } if ${gt_cv_c_intmax_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if HAVE_STDINT_H_WITH_UINTMAX #include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX #include #endif int main () { intmax_t x = -1; return !x; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_intmax_t=yes else gt_cv_c_intmax_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_intmax_t" >&5 $as_echo "$gt_cv_c_intmax_t" >&6; } if test $gt_cv_c_intmax_t = yes; then $as_echo "#define HAVE_INTMAX_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf() supports POSIX/XSI format strings" >&5 $as_echo_n "checking whether printf() supports POSIX/XSI format strings... " >&6; } if ${gt_cv_func_printf_posix+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined __NetBSD__ || defined __BEOS__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ notposix #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "notposix" >/dev/null 2>&1; then : gt_cv_func_printf_posix="guessing no" else gt_cv_func_printf_posix="guessing yes" fi rm -f conftest* else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include /* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */ static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' }; static char buf[100]; int main () { sprintf (buf, format, 33, 55); return (strcmp (buf, "55 33") != 0); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gt_cv_func_printf_posix=yes else gt_cv_func_printf_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_printf_posix" >&5 $as_echo "$gt_cv_func_printf_posix" >&6; } case $gt_cv_func_printf_posix in *yes) $as_echo "#define HAVE_POSIX_PRINTF 1" >>confdefs.h ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library >= 2.1 or uClibc" >&5 $as_echo_n "checking whether we are using the GNU C Library >= 2.1 or uClibc... " >&6; } if ${ac_cv_gnu_library_2_1+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif #ifdef __UCLIBC__ Lucky user #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Lucky" >/dev/null 2>&1; then : ac_cv_gnu_library_2_1=yes else ac_cv_gnu_library_2_1=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2_1" >&5 $as_echo "$ac_cv_gnu_library_2_1" >&6; } GLIBC21="$ac_cv_gnu_library_2_1" for ac_header in stdint.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" if test "x$ac_cv_header_stdint_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SIZE_MAX" >&5 $as_echo_n "checking for SIZE_MAX... " >&6; } if ${gl_cv_size_max+:} false; then : $as_echo_n "(cached) " >&6 else gl_cv_size_max= cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if HAVE_STDINT_H #include #endif #ifdef SIZE_MAX Found it #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Found it" >/dev/null 2>&1; then : gl_cv_size_max=yes fi rm -f conftest* if test -z "$gl_cv_size_max"; then if ac_fn_c_compute_int "$LINENO" "sizeof (size_t) * CHAR_BIT - 1" "size_t_bits_minus_1" "#include #include "; then : else size_t_bits_minus_1= fi if ac_fn_c_compute_int "$LINENO" "sizeof (size_t) <= sizeof (unsigned int)" "fits_in_uint" "#include "; then : else fits_in_uint= fi if test -n "$size_t_bits_minus_1" && test -n "$fits_in_uint"; then if test $fits_in_uint = 1; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern size_t foo; extern unsigned long foo; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : fits_in_uint=0 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test $fits_in_uint = 1; then gl_cv_size_max="(((1U << $size_t_bits_minus_1) - 1) * 2 + 1)" else gl_cv_size_max="(((1UL << $size_t_bits_minus_1) - 1) * 2 + 1)" fi else gl_cv_size_max='((size_t)~(size_t)0)' fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_size_max" >&5 $as_echo "$gl_cv_size_max" >&6; } if test "$gl_cv_size_max" != yes; then cat >>confdefs.h <<_ACEOF #define SIZE_MAX $gl_cv_size_max _ACEOF fi for ac_header in stdint.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" if test "x$ac_cv_header_stdint_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H 1 _ACEOF fi done for ac_func in $ac_func_list do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fcntl.h" >&5 $as_echo_n "checking for working fcntl.h... " >&6; } if ${gl_cv_header_working_fcntl_h+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : gl_cv_header_working_fcntl_h=cross-compiling else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if HAVE_UNISTD_H # include #else /* on Windows with MSVC */ # include # include # defined sleep(n) _sleep ((n) * 1000) #endif #include #ifndef O_NOATIME #define O_NOATIME 0 #endif #ifndef O_NOFOLLOW #define O_NOFOLLOW 0 #endif static int const constants[] = { O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY }; int main () { int result = !constants; #if HAVE_SYMLINK { static char const sym[] = "conftest.sym"; if (symlink ("/dev/null", sym) != 0) result |= 2; else { int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0); if (fd >= 0) { close (fd); result |= 4; } } if (unlink (sym) != 0 || symlink (".", sym) != 0) result |= 2; else { int fd = open (sym, O_RDONLY | O_NOFOLLOW); if (fd >= 0) { close (fd); result |= 4; } } unlink (sym); } #endif { static char const file[] = "confdefs.h"; int fd = open (file, O_RDONLY | O_NOATIME); if (fd < 0) result |= 8; else { struct stat st0; if (fstat (fd, &st0) != 0) result |= 16; else { char c; sleep (1); if (read (fd, &c, 1) != 1) result |= 24; else { if (close (fd) != 0) result |= 32; else { struct stat st1; if (stat (file, &st1) != 0) result |= 40; else if (st0.st_atime != st1.st_atime) result |= 64; } } } } } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_header_working_fcntl_h=yes else case $? in #( 4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #( 64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #( 68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #( *) gl_cv_header_working_fcntl_h='no';; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_fcntl_h" >&5 $as_echo "$gl_cv_header_working_fcntl_h" >&6; } case $gl_cv_header_working_fcntl_h in #( *O_NOATIME* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac cat >>confdefs.h <<_ACEOF #define HAVE_WORKING_O_NOATIME $ac_val _ACEOF case $gl_cv_header_working_fcntl_h in #( *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac cat >>confdefs.h <<_ACEOF #define HAVE_WORKING_O_NOFOLLOW $ac_val _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi case "$enable_silent_rules" in yes) INTL_DEFAULT_VERBOSITY=0;; no) INTL_DEFAULT_VERBOSITY=1;; *) INTL_DEFAULT_VERBOSITY=1;; esac ac_fn_c_check_type "$LINENO" "ptrdiff_t" "ac_cv_type_ptrdiff_t" "$ac_includes_default" if test "x$ac_cv_type_ptrdiff_t" = xyes; then : else $as_echo "#define ptrdiff_t long" >>confdefs.h fi for ac_header in features.h stddef.h stdlib.h string.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in asprintf fwprintf newlocale putenv setenv setlocale \ snprintf strnlen wcslen wcsnlen mbrtowc wcrtomb do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_decl "$LINENO" "_snprintf" "ac_cv_have_decl__snprintf" "#include " if test "x$ac_cv_have_decl__snprintf" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL__SNPRINTF $ac_have_decl _ACEOF ac_fn_c_check_decl "$LINENO" "_snwprintf" "ac_cv_have_decl__snwprintf" "#include " if test "x$ac_cv_have_decl__snwprintf" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL__SNWPRINTF $ac_have_decl _ACEOF ac_fn_c_check_decl "$LINENO" "getc_unlocked" "ac_cv_have_decl_getc_unlocked" "#include " if test "x$ac_cv_have_decl_getc_unlocked" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETC_UNLOCKED $ac_have_decl _ACEOF case $gt_cv_func_printf_posix in *yes) HAVE_POSIX_PRINTF=1 ;; *) HAVE_POSIX_PRINTF=0 ;; esac if test "$ac_cv_func_asprintf" = yes; then HAVE_ASPRINTF=1 else HAVE_ASPRINTF=0 fi if test "$ac_cv_func_snprintf" = yes; then HAVE_SNPRINTF=1 else HAVE_SNPRINTF=0 fi if test "$ac_cv_func_newlocale" = yes; then HAVE_NEWLOCALE=1 else HAVE_NEWLOCALE=0 fi if test "$ac_cv_func_wprintf" = yes; then HAVE_WPRINTF=1 else HAVE_WPRINTF=0 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 $as_echo_n "checking for nl_langinfo and CODESET... " >&6; } if ${am_cv_langinfo_codeset+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char* cs = nl_langinfo(CODESET); return !cs; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_langinfo_codeset=yes else am_cv_langinfo_codeset=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5 $as_echo "$am_cv_langinfo_codeset" >&6; } if test $am_cv_langinfo_codeset = yes; then $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if ${gt_cv_val_LC_MESSAGES+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_val_LC_MESSAGES=yes else gt_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_val_LC_MESSAGES" >&5 $as_echo "$gt_cv_val_LC_MESSAGES" >&6; } if test $gt_cv_val_LC_MESSAGES = yes; then $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi if test "$enable_shared" = yes; then case "$host_os" in mingw* | cygwin*) is_woe32dll=yes ;; *) is_woe32dll=no ;; esac else is_woe32dll=no fi WOE32DLL=$is_woe32dll case "$host_os" in mingw* | cygwin*) is_woe32=yes ;; *) is_woe32=no ;; esac WOE32=$is_woe32 if test $WOE32 = yes; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINDRES"; then ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WINDRES="${ac_tool_prefix}windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WINDRES=$ac_cv_prog_WINDRES if test -n "$WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 $as_echo "$WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_WINDRES"; then ac_ct_WINDRES=$WINDRES # Extract the first word of "windres", so it can be a program name with args. set dummy windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINDRES"; then ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_WINDRES="windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES if test -n "$ac_ct_WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5 $as_echo "$ac_ct_WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_WINDRES" = x; then WINDRES="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac WINDRES=$ac_ct_WINDRES fi else WINDRES="$ac_cv_prog_WINDRES" fi fi case "$host_os" in hpux*) LTLIBC="" ;; *) LTLIBC="-lc" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether included gettext is requested" >&5 $as_echo_n "checking whether included gettext is requested... " >&6; } # Check whether --with-included-gettext was given. if test "${with_included_gettext+set}" = set; then : withval=$with_included_gettext; nls_cv_force_use_gnu_gettext=$withval else nls_cv_force_use_gnu_gettext=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nls_cv_force_use_gnu_gettext" >&5 $as_echo "$nls_cv_force_use_gnu_gettext" >&6; } nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if eval \${$gt_func_gnugettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libc=yes" else eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if eval \${$gt_func_gnugettext_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libintl=yes" else eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test "$gt_use_preinstalled_gnugettext" != "yes"; then nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="\${top_builddir}/intl/libintl.a $LIBICONV $LIBTHREAD" LTLIBINTL="\${top_builddir}/intl/libintl.a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then CATOBJEXT=.gmo fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi nls_cv_header_intl= nls_cv_header_libgt= DATADIRNAME=share INSTOBJEXT=.mo GENCAT=gencat INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi INTL_LIBTOOL_SUFFIX_PREFIX= INTLLIBS="$LIBINTL" #AX_DESKTOP_I18N # Extract the first word of "po4a-gettextize", so it can be a program name with args. set dummy po4a-gettextize; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_po4a_gettextize+:} false; then : $as_echo_n "(cached) " >&6 else case $po4a_gettextize in [\\/]* | ?:[\\/]*) ac_cv_path_po4a_gettextize="$po4a_gettextize" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_po4a_gettextize="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi po4a_gettextize=$ac_cv_path_po4a_gettextize if test -n "$po4a_gettextize"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $po4a_gettextize" >&5 $as_echo "$po4a_gettextize" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "po4a-translate", so it can be a program name with args. set dummy po4a-translate; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_po4a_translate+:} false; then : $as_echo_n "(cached) " >&6 else case $po4a_translate in [\\/]* | ?:[\\/]*) ac_cv_path_po4a_translate="$po4a_translate" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_po4a_translate="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi po4a_translate=$ac_cv_path_po4a_translate if test -n "$po4a_translate"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $po4a_translate" >&5 $as_echo "$po4a_translate" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$po4a_gettextize" -o -z "$po4a_translate" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: po4a was not found. If you want to change and compile \ internationalized documentation, please install po4a" >&5 $as_echo "$as_me: WARNING: po4a was not found. If you want to change and compile \ internationalized documentation, please install po4a" >&2;} else have_po4a=yes fi # Extract the first word of "onsgmls", so it can be a program name with args. set dummy onsgmls; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_onsgmls+:} false; then : $as_echo_n "(cached) " >&6 else case $onsgmls in [\\/]* | ?:[\\/]*) ac_cv_path_onsgmls="$onsgmls" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_onsgmls="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi onsgmls=$ac_cv_path_onsgmls if test -n "$onsgmls"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $onsgmls" >&5 $as_echo "$onsgmls" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -n "$onsgmls" ; then have_onsgmls=yes fi # Extract the first word of "nsgmls", so it can be a program name with args. set dummy nsgmls; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_nsgmls+:} false; then : $as_echo_n "(cached) " >&6 else case $nsgmls in [\\/]* | ?:[\\/]*) ac_cv_path_nsgmls="$nsgmls" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_nsgmls="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi nsgmls=$ac_cv_path_nsgmls if test -n "$nsgmls"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nsgmls" >&5 $as_echo "$nsgmls" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -n "$nsgmls" ; then have_nsgmls=yes fi if test "x$have_nsgmls" = "x" -a "x$have_onsgmls" = "x"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no onsgmls nor nsgmls was found. If you want to change \ and compile internationalized documentation, please install opensp or sp" >&5 $as_echo "$as_me: WARNING: no onsgmls nor nsgmls was found. If you want to change \ and compile internationalized documentation, please install opensp or sp" >&2;} fi if test "x$have_po4a" = "xyes" -a "x$have_onsgmls" = "xyes" -o \ "x$have_po4a" = "xyes" -a "x$have_nsgmls" = "xyes"; then HAVE_PO4A_TRUE= HAVE_PO4A_FALSE='#' else HAVE_PO4A_TRUE='#' HAVE_PO4A_FALSE= fi ############################################################ # # Checks for cygwin/mingw32 # # if you want -mno-cygwin, then add it to MINGW_CFLAGS or CYGWIN_CFLAGS # in your configure environment. After all you may or may not # want to always force -mno-cygwin on all users. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for windows" >&5 $as_echo_n "checking for windows... " >&6; } WIN32=${WIN32:-no} case $host_os in *cygwin* ) CFLAGS="$CFLAGS ${CYGWIN_CFLAGS}" CPPFLAGS="$CPPFLAGS ${CYGWIN_CPPFLAGS}" ;; *mingw32* ) WIN32=yes CFLAGS="$CFLAGS ${MINGW_CFLAGS:--mms-bitfields -mwindows}" CPPFLAGS="$CPPFLAGS ${MINGW_CPPFLAGS:--mms-bitfields -mwindows}" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WIN32" >&5 $as_echo "$WIN32" >&6; } if test x$WIN32 = xyes; then WIN32_TRUE= WIN32_FALSE='#' else WIN32_TRUE='#' WIN32_FALSE= fi GERBV_PATH_DELIMETER=":" GERBV_DIR_SEPARATOR_S="/" GERBV_DIR_SEPARATOR_C='/' if test "x$WIN32" = "xyes" ; then GERBV_PATH_DELIMETER=";" GERBV_DIR_SEPARATOR_S="\\\\" GERBV_DIR_SEPARATOR_C='\\' fi cat >>confdefs.h <<_ACEOF #define GERBV_DIR_SEPARATOR_C '$GERBV_DIR_SEPARATOR_C' _ACEOF cat >>confdefs.h <<_ACEOF #define GERBV_DIR_SEPARATOR_S "$GERBV_DIR_SEPARATOR_S" _ACEOF cat >>confdefs.h <<_ACEOF #define GERBV_PATH_DELIMETER "$_PATH_DELIMETER" _ACEOF # # ############################################################ ############################################################ # # Checks for our configure args # debug=0 # Check whether --enable-debug was given. if test "${enable_debug+set}" = set; then : enableval=$enable_debug; if test $enableval = "yes"; then debug=1 fi else debug=0 fi cat >>confdefs.h <<_ACEOF #define DEBUG $debug _ACEOF cat >>confdefs.h <<_ACEOF #define GERBV_DEFAULT_BORDER_COEFF 0.05 _ACEOF # Check whether --enable-unit-mm was given. if test "${enable_unit_mm+set}" = set; then : enableval=$enable_unit_mm; if test "$enableval" = "yes"; then default_unit="mm" fi fi if test "$default_unit" = "mm"; then $as_echo "#define GERBV_DEFAULT_UNIT GERBV_MMS" >>confdefs.h else $as_echo "#define GERBV_DEFAULT_UNIT GERBV_MILS" >>confdefs.h fi # # ############################################################ ############################################################ # # Preliminary checks # { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : fi if test "x$enable_dxf " != "xno" ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.6' macro_revision='2.4.6' ltmain=$ac_aux_dir/ltmain.sh # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 $as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[012][,.]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done func_stripname_cnf () { case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; esac } # func_stripname_cnf # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else pic_mode=default fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac else enable_fast_install=yes fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/${ac_tool_prefix}file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test no = "$hard_links"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' $wl-bernotok' allow_undefined_flag=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi link_all_deplibs=no else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi fi fi fi fi fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC func_cc_basename $compiler cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec_CXX='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' $wl-bernotok' allow_undefined_flag_CXX=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" if test yes != "$lt_cv_apple_cc_single_mod"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi else ld_shlibs_CXX=no fi ;; os2*) hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_minus_L_CXX=yes allow_undefined_flag_CXX=unsupported shrext_cmds=.dll archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes_CXX=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='$wl-E' whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='$wl-z,text' allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no GCC_CXX=$GXX LD_CXX=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX=$prev$p else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX=$prev$p else postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static_CXX='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test no = "$hard_links"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec_CXX='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test relink = "$hardcode_action_CXX" || test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: if test "x$WIN32" = "xyes" ; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINDRES"; then ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WINDRES="${ac_tool_prefix}windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WINDRES=$ac_cv_prog_WINDRES if test -n "$WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 $as_echo "$WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_WINDRES"; then ac_ct_WINDRES=$WINDRES # Extract the first word of "windres", so it can be a program name with args. set dummy windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINDRES"; then ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_WINDRES="windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES if test -n "$ac_ct_WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5 $as_echo "$ac_ct_WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_WINDRES" = x; then WINDRES="no" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac WINDRES=$ac_ct_WINDRES fi else WINDRES="$ac_cv_prog_WINDRES" fi if test "$WINDRES" = "no"; then as_fn_error $? "*** Could not find an implementation of windres in your PATH." "$LINENO" 5 fi fi # if we have gcc then add -Wall if test "x$GCC" = "xyes"; then if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then CFLAGS="$CFLAGS -Wall" fi fi # Check for ImageMagick tools used by the testsuite # Extract the first word of "animate", so it can be a program name with args. set dummy animate; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_ANIMATE+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_ANIMATE in [\\/]* | ?:[\\/]*) ac_cv_path_IM_ANIMATE="$IM_ANIMATE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_ANIMATE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_ANIMATE" && ac_cv_path_IM_ANIMATE="notfound" ;; esac fi IM_ANIMATE=$ac_cv_path_IM_ANIMATE if test -n "$IM_ANIMATE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_ANIMATE" >&5 $as_echo "$IM_ANIMATE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "compare", so it can be a program name with args. set dummy compare; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_COMPARE+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_COMPARE in [\\/]* | ?:[\\/]*) ac_cv_path_IM_COMPARE="$IM_COMPARE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_COMPARE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_COMPARE" && ac_cv_path_IM_COMPARE="notfound" ;; esac fi IM_COMPARE=$ac_cv_path_IM_COMPARE if test -n "$IM_COMPARE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_COMPARE" >&5 $as_echo "$IM_COMPARE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "composite", so it can be a program name with args. set dummy composite; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_COMPOSITE+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_COMPOSITE in [\\/]* | ?:[\\/]*) ac_cv_path_IM_COMPOSITE="$IM_COMPOSITE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_COMPOSITE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_COMPOSITE" && ac_cv_path_IM_COMPOSITE="notfound" ;; esac fi IM_COMPOSITE=$ac_cv_path_IM_COMPOSITE if test -n "$IM_COMPOSITE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_COMPOSITE" >&5 $as_echo "$IM_COMPOSITE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "convert", so it can be a program name with args. set dummy convert; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_CONVERT+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_CONVERT in [\\/]* | ?:[\\/]*) ac_cv_path_IM_CONVERT="$IM_CONVERT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_CONVERT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_CONVERT" && ac_cv_path_IM_CONVERT="notfound" ;; esac fi IM_CONVERT=$ac_cv_path_IM_CONVERT if test -n "$IM_CONVERT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_CONVERT" >&5 $as_echo "$IM_CONVERT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "display", so it can be a program name with args. set dummy display; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_DISPLAY+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_DISPLAY in [\\/]* | ?:[\\/]*) ac_cv_path_IM_DISPLAY="$IM_DISPLAY" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_DISPLAY="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_DISPLAY" && ac_cv_path_IM_DISPLAY="notfound" ;; esac fi IM_DISPLAY=$ac_cv_path_IM_DISPLAY if test -n "$IM_DISPLAY"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_DISPLAY" >&5 $as_echo "$IM_DISPLAY" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "montage", so it can be a program name with args. set dummy montage; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_IM_MONTAGE+:} false; then : $as_echo_n "(cached) " >&6 else case $IM_MONTAGE in [\\/]* | ?:[\\/]*) ac_cv_path_IM_MONTAGE="$IM_MONTAGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_IM_MONTAGE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_IM_MONTAGE" && ac_cv_path_IM_MONTAGE="notfound" ;; esac fi IM_MONTAGE=$ac_cv_path_IM_MONTAGE if test -n "$IM_MONTAGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IM_MONTAGE" >&5 $as_echo "$IM_MONTAGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi missing_magick="" test "${IM_ANIMATE}" != "notfound" || missing_magick="${missing_magick} animate" test "${IM_COMPARE}" != "notfound" || missing_magick="${missing_magick} compare" test "${IM_COMPOSITE}" != "notfound" || missing_magick="${missing_magick} composite" test "${IM_CONVERT}" != "notfound" || missing_magick="${missing_magick} convert" test "${IM_DISPLAY}" != "notfound" || missing_magick="${missing_magick} display" test "${IM_MONTAGE}" != "notfound" || missing_magick="${missing_magick} montage" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if all ImageMagick tools needed for the testsuite were found" >&5 $as_echo_n "checking if all ImageMagick tools needed for the testsuite were found... " >&6; } if test "X${missing_magick}" != "X" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no. The testsuite will be disabled because the following tools from the ImageMagick suite were not found: ${missing_magick} No loss in gerbv functionality should be experienced, you just will not be able to run the regression testsuite. " >&5 $as_echo "no. The testsuite will be disabled because the following tools from the ImageMagick suite were not found: ${missing_magick} No loss in gerbv functionality should be experienced, you just will not be able to run the regression testsuite. " >&6; } have_magick=no else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } have_magick=yes fi if test x$have_magick = xyes; then HAVE_MAGICK_TRUE= HAVE_MAGICK_FALSE='#' else HAVE_MAGICK_TRUE='#' HAVE_MAGICK_FALSE= fi # Check for pkg-config # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$PKG_CONFIG" = "no"; then as_fn_error $? "Cannot find pkg-config, make sure it is installed and in your PATH" "$LINENO" 5 fi # Check GSettings support # Check whether --enable-schemas-compile was given. if test "${enable_schemas_compile+set}" = set; then : enableval=$enable_schemas_compile; case ${enableval} in yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; *) as_fn_error $? "bad value ${enableval} for --enable-schemas-compile" "$LINENO" 5 ;; esac fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.16 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi gsettingsschemadir=${datadir}/glib-2.0/schemas if test x$cross_compiling != xyes; then GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` else # Extract the first word of "glib-compile-schemas", so it can be a program name with args. set dummy glib-compile-schemas; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GLIB_COMPILE_SCHEMAS+:} false; then : $as_echo_n "(cached) " >&6 else case $GLIB_COMPILE_SCHEMAS in [\\/]* | ?:[\\/]*) ac_cv_path_GLIB_COMPILE_SCHEMAS="$GLIB_COMPILE_SCHEMAS" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GLIB_COMPILE_SCHEMAS="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi GLIB_COMPILE_SCHEMAS=$ac_cv_path_GLIB_COMPILE_SCHEMAS if test -n "$GLIB_COMPILE_SCHEMAS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_SCHEMAS" >&5 $as_echo "$GLIB_COMPILE_SCHEMAS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then as_fn_error $? "glib-compile-schemas not found." "$LINENO" 5 else : fi GSETTINGS_RULES=' .PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas mostlyclean-am: clean-gsettings-schemas gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) %.gschema.valid: %.gschema.xml $(gsettings__enum_file) $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p $(@D) && touch $@ all-am: $(gsettings_SCHEMAS:.xml=.valid) uninstall-am: uninstall-gsettings-schemas install-data-am: install-gsettings-schemas .SECONDARY: $(gsettings_SCHEMAS) install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) @$(NORMAL_INSTALL) if test -n "$^"; then \ test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ fi uninstall-gsettings-schemas: @$(NORMAL_UNINSTALL) @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ test -n "$$files" || exit 0; \ echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) clean-gsettings-schemas: rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) ifdef gsettings_ENUM_NAMESPACE $(gsettings__enum_file): $(gsettings_ENUM_FILES) $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" $^ > $@.tmp && mv $@.tmp $@ endif ' # # # ############################################################ ############################################################ # # Library checks # { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 $as_echo_n "checking for sin in -lm... " >&6; } if ${ac_cv_lib_m_sin+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sin (); int main () { return sin (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_sin=yes else ac_cv_lib_m_sin=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 $as_echo "$ac_cv_lib_m_sin" >&6; } if test "x$ac_cv_lib_m_sin" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF LIBS="-lm $LIBS" fi # used by src/dynload.c (part of tinyscheme) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBDL 1 _ACEOF LIBS="-ldl $LIBS" fi # # ############################################################ ############################################################ # # GTK and cairo checks # pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CAIRO" >&5 $as_echo_n "checking for CAIRO... " >&6; } if test -n "$CAIRO_CFLAGS"; then pkg_cv_CAIRO_CFLAGS="$CAIRO_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo >= 1.2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "cairo >= 1.2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CAIRO_CFLAGS=`$PKG_CONFIG --cflags "cairo >= 1.2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CAIRO_LIBS"; then pkg_cv_CAIRO_LIBS="$CAIRO_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo >= 1.2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "cairo >= 1.2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CAIRO_LIBS=`$PKG_CONFIG --libs "cairo >= 1.2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "cairo >= 1.2.0" 2>&1` else CAIRO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "cairo >= 1.2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CAIRO_PKG_ERRORS" >&5 as_fn_error $? " *** Cairo > 1.2.0 required but not found. *** Please review the following errors: $CAIRO_PKG_ERRORS" "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? " *** Cairo > 1.2.0 required but not found. *** Please review the following errors: $CAIRO_PKG_ERRORS" "$LINENO" 5 else CAIRO_CFLAGS=$pkg_cv_CAIRO_CFLAGS CAIRO_LIBS=$pkg_cv_CAIRO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi CAIRO_VER=`$PKG_CONFIG cairo --modversion` pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.18.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.18.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.18.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.18.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.18.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.18.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= 2.18.0" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= 2.18.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 as_fn_error $? " *** GTK >= 2.18.0 is required but was not found. Please review the following errors: $GTK_PKG_ERRORS" "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? " *** GTK >= 2.18.0 is required but was not found. Please review the following errors: $GTK_PKG_ERRORS" "$LINENO" 5 else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi GTK_VER=`$PKG_CONFIG gtk+-2.0 --modversion` # # ############################################################ ############################################################ # # dxflib with_dxf=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking if dxf should be enabled" >&5 $as_echo_n "checking if dxf should be enabled... " >&6; } # Check whether --enable-dxf was given. if test "${enable_dxf+set}" = set; then : enableval=$enable_dxf; if test "X$enable_dxf " != "Xno" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -ldxflib" >&5 $as_echo_n "checking for main in -ldxflib... " >&6; } if ${ac_cv_lib_dxflib_main+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldxflib $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dxflib_main=yes else ac_cv_lib_dxflib_main=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dxflib_main" >&5 $as_echo "$ac_cv_lib_dxflib_main" >&6; } if test "x$ac_cv_lib_dxflib_main" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBDXFLIB 1 _ACEOF LIBS="-ldxflib $LIBS" else as_fn_error $? "You have requested DXF support but -ldxflib could not be found" "$LINENO" 5 fi with_dxf=yes { $as_echo "$as_me:${as_lineno-$LINENO}: checking dxflib version" >&5 $as_echo_n "checking dxflib version... " >&6; } ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #ifndef DL_VERSION # define DL_VERSION "undefined" #endif int main () { if (!strncmp("2.2.", DL_VERSION, 4) || !strncmp("2.5.", DL_VERSION, 4) || !strncmp("3.12.", DL_VERSION, 5)) return 0; return 1; ; return 0; } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else as_fn_error $? "untested dxflib version" "$LINENO" 5 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$with_dxf = xyes; then DXF_TRUE= DXF_FALSE='#' else DXF_TRUE='#' DXF_FALSE= fi # # ############################################################ ############################################################ # # ElectricFence with_efence=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking if ElectricFence debugging should be enabled" >&5 $as_echo_n "checking if ElectricFence debugging should be enabled... " >&6; } # Check whether --enable-efence was given. if test "${enable_efence+set}" = set; then : enableval=$enable_efence; if test "X$enable_efence" != "Xno" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lefence" >&5 $as_echo_n "checking for main in -lefence... " >&6; } if ${ac_cv_lib_efence_main+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lefence $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return main (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_efence_main=yes else ac_cv_lib_efence_main=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_efence_main" >&5 $as_echo "$ac_cv_lib_efence_main" >&6; } if test "x$ac_cv_lib_efence_main" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBEFENCE 1 _ACEOF LIBS="-lefence $LIBS" else as_fn_error $? "You have requested ElectricFence debugging but -lefence could not be found" "$LINENO" 5 fi with_efence=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # # ############################################################ ###################################################################### # # desktop integration # # Extract the first word of "env", so it can be a program name with args. set dummy env; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_SETENV+:} false; then : $as_echo_n "(cached) " >&6 else case $SETENV in [\\/]* | ?:[\\/]*) ac_cv_path_SETENV="$SETENV" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_SETENV="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi SETENV=$ac_cv_path_SETENV if test -n "$SETENV"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SETENV" >&5 $as_echo "$SETENV" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gtk-update-icon-path", so it can be a program name with args. set dummy gtk-update-icon-path; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN+:} false; then : $as_echo_n "(cached) " >&6 else case $GTK_UPDATE_ICON_CACHE_BIN in [\\/]* | ?:[\\/]*) ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN="$GTK_UPDATE_ICON_CACHE_BIN" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN" && ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN="true" ;; esac fi GTK_UPDATE_ICON_CACHE_BIN=$ac_cv_path_GTK_UPDATE_ICON_CACHE_BIN if test -n "$GTK_UPDATE_ICON_CACHE_BIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTK_UPDATE_ICON_CACHE_BIN" >&5 $as_echo "$GTK_UPDATE_ICON_CACHE_BIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Change default location for XDG files (MIME and Icons) # Check whether --with-xdgdatadir was given. if test "${with_xdgdatadir+set}" = set; then : withval=$with_xdgdatadir; opt_xdgdatadir=$withval fi if test x$opt_xdgdatadir = x; then # path was not specified with --with-xdgdatadir XDGDATADIR='${datadir}' else # path WAS specified with --with-xdgdatadir XDGDATADIR="$opt_xdgdatadir" fi # Check whether --enable-update-desktop-database was given. if test "${enable_update_desktop_database+set}" = set; then : enableval=$enable_update_desktop_database; else enable_update_desktop_database=yes fi if test x$enable_update_desktop_database = xyes; then ENABLE_UPDATE_DESKTOP_DATABASE_TRUE= ENABLE_UPDATE_DESKTOP_DATABASE_FALSE='#' else ENABLE_UPDATE_DESKTOP_DATABASE_TRUE='#' ENABLE_UPDATE_DESKTOP_DATABASE_FALSE= fi if test x$enable_update_desktop_database = xyes ; then # Extract the first word of "update-desktop-database", so it can be a program name with args. set dummy update-desktop-database; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_UPDATE_DESKTOP_DATABASE+:} false; then : $as_echo_n "(cached) " >&6 else case $UPDATE_DESKTOP_DATABASE in [\\/]* | ?:[\\/]*) ac_cv_path_UPDATE_DESKTOP_DATABASE="$UPDATE_DESKTOP_DATABASE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_UPDATE_DESKTOP_DATABASE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_UPDATE_DESKTOP_DATABASE" && ac_cv_path_UPDATE_DESKTOP_DATABASE="no" ;; esac fi UPDATE_DESKTOP_DATABASE=$ac_cv_path_UPDATE_DESKTOP_DATABASE if test -n "$UPDATE_DESKTOP_DATABASE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UPDATE_DESKTOP_DATABASE" >&5 $as_echo "$UPDATE_DESKTOP_DATABASE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test $UPDATE_DESKTOP_DATABASE = no; then as_fn_error $? "Cannot find update-desktop-database, make sure it is installed and in your PATH, or configure with --disable-update-desktop-database" "$LINENO" 5 fi fi # ###################################################################### for ac_header in unistd.h getopt.h string.h sys/mman.h sys/types.h sys/stat.h stdlib.h regex.h libgen.h time.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getopt_long do : ac_fn_cxx_check_func "$LINENO" "getopt_long" "ac_cv_func_getopt_long" if test "x$ac_cv_func_getopt_long" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_LONG 1 _ACEOF fi done for ac_func in strlwr do : ac_fn_cxx_check_func "$LINENO" "strlwr" "ac_cv_func_strlwr" if test "x$ac_cv_func_strlwr" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRLWR 1 _ACEOF fi done # for lrealpath.c for ac_func in realpath canonicalize_file_name do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether canonicalize_file_name must be declared" >&5 $as_echo_n "checking whether canonicalize_file_name must be declared... " >&6; } if ${libiberty_cv_decl_needed_canonicalize_file_name+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "confdefs.h" #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_UNISTD_H #include #endif int main () { char *(*pfn) = (char *(*)) canonicalize_file_name ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : libiberty_cv_decl_needed_canonicalize_file_name=no else libiberty_cv_decl_needed_canonicalize_file_name=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libiberty_cv_decl_needed_canonicalize_file_name" >&5 $as_echo "$libiberty_cv_decl_needed_canonicalize_file_name" >&6; } if test $libiberty_cv_decl_needed_canonicalize_file_name = yes; then $as_echo "#define NEED_DECLARATION_CANONICALIZE_FILE_NAME 1" >>confdefs.h fi CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS $GTK_CFLAGS $CAIRO_CFLAGS" LIBS="$LIBS $GDK_PIXBUF_LIBS $GTK_LIBS $CAIRO_LIBS" CPPFLAGS="$CPPFLAGS $GTK_CFLAGS" ############################################################ # # scheme configure stuff # $as_echo "#define STANDALONE 0" >>confdefs.h $as_echo "#define USE_DL 1" >>confdefs.h $as_echo "#define SUN_DL 1" >>confdefs.h $as_echo "#define USE_MATH 1" >>confdefs.h $as_echo "#define USE_ASCII_NAMES 1" >>confdefs.h $as_echo "#define USE_COLON_HOOKS 1" >>confdefs.h $as_echo "#define USE_STRING_HOOKS 1" >>confdefs.h $as_echo "#define USE_INTERFACE 1" >>confdefs.h # # ############################################################ ############################################################ # # Figure out relative paths # # standard autoconf variables CPPFLAGS="$CPPFLAGS -DPREFIXDIR=\\\"\${prefix}\\\"" CPPFLAGS="$CPPFLAGS -DBINDIR=\\\"\${bindir}\\\"" # these relative paths will be used to help locate init.scm # in the event that the installation directory is relocated. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the bindir to datadir relative path" >&5 $as_echo_n "checking for the bindir to datadir relative path... " >&6; } for _lcl_i in bindir:datadir:bindir_to_datadir; do _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` _lcl_receval="$_lcl_from" _lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_receval="$_lcl_to" _lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_notation="$_lcl_from$_lcl_to" case ":$_lcl_from:" in # change empty paths to '.' ::) _lcl_from='.' ;; # strip trailing slashes :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac case ":$_lcl_to:" in # change empty paths to '.' ::) _lcl_to='.' ;; # strip trailing slashes :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac _lcl_common_prefix='' _lcl_second_prefix_match='' while test "$_lcl_second_prefix_match" != 0; do _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` if test "$_lcl_second_prefix_match" != 0; then if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then _lcl_common_prefix="$_lcl_first_prefix" else _lcl_second_prefix_match=0 fi fi done _lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_first_rel='' _lcl_tmp='xxx' while test "$_lcl_tmp" != ''; do _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` if test "$_lcl_first_suffix" != ''; then _lcl_first_suffix="$_lcl_tmp" _lcl_first_rel="../$_lcl_first_rel" fi done _lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" case ":$_lcl_result_tmp:" in # change empty paths to '.' ::) _lcl_result_tmp='.' ;; # strip trailing slashes :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case "$_lcl_notation" in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac eval $_lcl_result_var='$_lcl_result_tmp' done case ":$bindir_to_datadir:" in # change empty paths to '.' ::) bindir_to_datadir='.' ;; # strip trailing slashes :*[\\/]:) bindir_to_datadir=`echo "$bindir_to_datadir" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case $GERBV_DIR_SEPARATOR_S in # if the path contains any backslashes, turn slashes into backslashes *\\*) bindir_to_datadir=`echo "$bindir_to_datadir" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) bindir_to_datadir=`echo "$bindir_to_datadir" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bindir_to_datadir" >&5 $as_echo "$bindir_to_datadir" >&6; } cat >>confdefs.h <<_ACEOF #define BINDIR_TO_DATADIR "$bindir_to_datadir" _ACEOF PKGDATADIR=${datadir}/${PACKAGE} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the bindir to pkgdatadir relative path" >&5 $as_echo_n "checking for the bindir to pkgdatadir relative path... " >&6; } for _lcl_i in bindir:PKGDATADIR:bindir_to_pkgdatadir; do _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` _lcl_receval="$_lcl_from" _lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_receval="$_lcl_to" _lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_notation="$_lcl_from$_lcl_to" case ":$_lcl_from:" in # change empty paths to '.' ::) _lcl_from='.' ;; # strip trailing slashes :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac case ":$_lcl_to:" in # change empty paths to '.' ::) _lcl_to='.' ;; # strip trailing slashes :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac _lcl_common_prefix='' _lcl_second_prefix_match='' while test "$_lcl_second_prefix_match" != 0; do _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` if test "$_lcl_second_prefix_match" != 0; then if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then _lcl_common_prefix="$_lcl_first_prefix" else _lcl_second_prefix_match=0 fi fi done _lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_first_rel='' _lcl_tmp='xxx' while test "$_lcl_tmp" != ''; do _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` if test "$_lcl_first_suffix" != ''; then _lcl_first_suffix="$_lcl_tmp" _lcl_first_rel="../$_lcl_first_rel" fi done _lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" case ":$_lcl_result_tmp:" in # change empty paths to '.' ::) _lcl_result_tmp='.' ;; # strip trailing slashes :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case "$_lcl_notation" in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac eval $_lcl_result_var='$_lcl_result_tmp' done case ":$bindir_to_pkgdatadir:" in # change empty paths to '.' ::) bindir_to_pkgdatadir='.' ;; # strip trailing slashes :*[\\/]:) bindir_to_pkgdatadir=`echo "$bindir_to_pkgdatadir" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case $GERBV_DIR_SEPARATOR_S in # if the path contains any backslashes, turn slashes into backslashes *\\*) bindir_to_pkgdatadir=`echo "$bindir_to_pkgdatadir" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) bindir_to_pkgdatadir=`echo "$bindir_to_pkgdatadir" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bindir_to_pkgdatadir" >&5 $as_echo "$bindir_to_pkgdatadir" >&6; } cat >>confdefs.h <<_ACEOF #define BINDIR_TO_PKGDATADIR "$bindir_to_pkgdatadir" _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the bindir to exec_prefix relative path" >&5 $as_echo_n "checking for the bindir to exec_prefix relative path... " >&6; } for _lcl_i in bindir:exec_prefix:bindir_to_execprefix; do _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` _lcl_receval="$_lcl_from" _lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_receval="$_lcl_to" _lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" _lcl_receval_old='' while test "$_lcl_receval_old" != "$_lcl_receval"; do _lcl_receval_old="$_lcl_receval" eval _lcl_receval="\"$_lcl_receval\"" done echo "$_lcl_receval")` _lcl_notation="$_lcl_from$_lcl_to" case ":$_lcl_from:" in # change empty paths to '.' ::) _lcl_from='.' ;; # strip trailing slashes :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac case ":$_lcl_to:" in # change empty paths to '.' ::) _lcl_to='.' ;; # strip trailing slashes :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case '/' in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac _lcl_common_prefix='' _lcl_second_prefix_match='' while test "$_lcl_second_prefix_match" != 0; do _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` if test "$_lcl_second_prefix_match" != 0; then if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then _lcl_common_prefix="$_lcl_first_prefix" else _lcl_second_prefix_match=0 fi fi done _lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_first_rel='' _lcl_tmp='xxx' while test "$_lcl_tmp" != ''; do _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` if test "$_lcl_first_suffix" != ''; then _lcl_first_suffix="$_lcl_tmp" _lcl_first_rel="../$_lcl_first_rel" fi done _lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` _lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" case ":$_lcl_result_tmp:" in # change empty paths to '.' ::) _lcl_result_tmp='.' ;; # strip trailing slashes :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case "$_lcl_notation" in # if the path contains any backslashes, turn slashes into backslashes *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac eval $_lcl_result_var='$_lcl_result_tmp' done case ":$bindir_to_execprefix:" in # change empty paths to '.' ::) bindir_to_execprefix='.' ;; # strip trailing slashes :*[\\/]:) bindir_to_execprefix=`echo "$bindir_to_execprefix" | sed 's,[\\/]*$,,'` ;; :*:) ;; esac # squeze repeated slashes case $GERBV_DIR_SEPARATOR_S in # if the path contains any backslashes, turn slashes into backslashes *\\*) bindir_to_execprefix=`echo "$bindir_to_execprefix" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g'` ;; # if the path contains slashes, also turn backslashes into slashes *) bindir_to_execprefix=`echo "$bindir_to_execprefix" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bindir_to_execprefix" >&5 $as_echo "$bindir_to_execprefix" >&6; } cat >>confdefs.h <<_ACEOF #define BINDIR_TO_EXECPREFIX "$bindir_to_execprefix" _ACEOF # # ############################################################ ac_config_files="$ac_config_files Makefile src/Makefile src/libgerbv.pc scheme/Makefile share/glib-2.0/schemas/Makefile desktop/Makefile doc/PNG-print/Makefile doc/eagle/Makefile doc/html/Makefile doc/example-code/Makefile doc/Makefile man/Makefile intl/Makefile po/Makefile.in example/eaglecad1/Makefile example/nollezappare/Makefile example/numpres/Makefile example/jj/Makefile example/dan/Makefile example/ekf2/Makefile example/exposure/Makefile example/am-test/Makefile example/cslk/Makefile example/orcad/Makefile example/Mentor-BoardStation/Makefile example/pick-and-place/Makefile example/polarity/Makefile example/thermal/Makefile example/trailing/Makefile example/Makefile test/Makefile test/golden/Makefile test/inputs/Makefile win32/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_PO4A_TRUE}" && test -z "${HAVE_PO4A_FALSE}"; then as_fn_error $? "conditional \"HAVE_PO4A\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WIN32_TRUE}" && test -z "${WIN32_FALSE}"; then as_fn_error $? "conditional \"WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_MAGICK_TRUE}" && test -z "${HAVE_MAGICK_FALSE}"; then as_fn_error $? "conditional \"HAVE_MAGICK\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DXF_TRUE}" && test -z "${DXF_FALSE}"; then as_fn_error $? "conditional \"DXF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_UPDATE_DESKTOP_DATABASE_TRUE}" && test -z "${ENABLE_UPDATE_DESKTOP_DATABASE_FALSE}"; then as_fn_error $? "conditional \"ENABLE_UPDATE_DESKTOP_DATABASE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by gerbv $as_me 2.7.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ gerbv config.status 2.7.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/libgerbv.pc") CONFIG_FILES="$CONFIG_FILES src/libgerbv.pc" ;; "scheme/Makefile") CONFIG_FILES="$CONFIG_FILES scheme/Makefile" ;; "share/glib-2.0/schemas/Makefile") CONFIG_FILES="$CONFIG_FILES share/glib-2.0/schemas/Makefile" ;; "desktop/Makefile") CONFIG_FILES="$CONFIG_FILES desktop/Makefile" ;; "doc/PNG-print/Makefile") CONFIG_FILES="$CONFIG_FILES doc/PNG-print/Makefile" ;; "doc/eagle/Makefile") CONFIG_FILES="$CONFIG_FILES doc/eagle/Makefile" ;; "doc/html/Makefile") CONFIG_FILES="$CONFIG_FILES doc/html/Makefile" ;; "doc/example-code/Makefile") CONFIG_FILES="$CONFIG_FILES doc/example-code/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; "intl/Makefile") CONFIG_FILES="$CONFIG_FILES intl/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "example/eaglecad1/Makefile") CONFIG_FILES="$CONFIG_FILES example/eaglecad1/Makefile" ;; "example/nollezappare/Makefile") CONFIG_FILES="$CONFIG_FILES example/nollezappare/Makefile" ;; "example/numpres/Makefile") CONFIG_FILES="$CONFIG_FILES example/numpres/Makefile" ;; "example/jj/Makefile") CONFIG_FILES="$CONFIG_FILES example/jj/Makefile" ;; "example/dan/Makefile") CONFIG_FILES="$CONFIG_FILES example/dan/Makefile" ;; "example/ekf2/Makefile") CONFIG_FILES="$CONFIG_FILES example/ekf2/Makefile" ;; "example/exposure/Makefile") CONFIG_FILES="$CONFIG_FILES example/exposure/Makefile" ;; "example/am-test/Makefile") CONFIG_FILES="$CONFIG_FILES example/am-test/Makefile" ;; "example/cslk/Makefile") CONFIG_FILES="$CONFIG_FILES example/cslk/Makefile" ;; "example/orcad/Makefile") CONFIG_FILES="$CONFIG_FILES example/orcad/Makefile" ;; "example/Mentor-BoardStation/Makefile") CONFIG_FILES="$CONFIG_FILES example/Mentor-BoardStation/Makefile" ;; "example/pick-and-place/Makefile") CONFIG_FILES="$CONFIG_FILES example/pick-and-place/Makefile" ;; "example/polarity/Makefile") CONFIG_FILES="$CONFIG_FILES example/polarity/Makefile" ;; "example/thermal/Makefile") CONFIG_FILES="$CONFIG_FILES example/thermal/Makefile" ;; "example/trailing/Makefile") CONFIG_FILES="$CONFIG_FILES example/trailing/Makefile" ;; "example/Makefile") CONFIG_FILES="$CONFIG_FILES example/Makefile" ;; "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; "test/golden/Makefile") CONFIG_FILES="$CONFIG_FILES test/golden/Makefile" ;; "test/inputs/Makefile") CONFIG_FILES="$CONFIG_FILES test/inputs/Makefile" ;; "win32/Makefile") CONFIG_FILES="$CONFIG_FILES win32/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='CXX ' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi expandedXDGDATADIR=`eval "echo $XDGDATADIR"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: ** Configuration summary for $PACKAGE $VERSION: PREFIX: $PREFIX xdg data directory: $expandedXDGDATADIR CPPFLAGS: $CPPFLAGS CFLAGS: $CFLAGS LDFLAGS: $LDFLAGS LIBS: $LIBS GTK Version: $GTK_VER Cairo Version: $CAIRO_VER DXF via dxflib: $with_dxf Electric Fence Debugging: $with_efence ImageMagick: $have_magick (for test suite) " >&5 $as_echo " ** Configuration summary for $PACKAGE $VERSION: PREFIX: $PREFIX xdg data directory: $expandedXDGDATADIR CPPFLAGS: $CPPFLAGS CFLAGS: $CFLAGS LDFLAGS: $LDFLAGS LIBS: $LIBS GTK Version: $GTK_VER Cairo Version: $CAIRO_VER DXF via dxflib: $with_dxf Electric Fence Debugging: $with_efence ImageMagick: $have_magick (for test suite) " >&6; } gerbv-2.7.0/compile0000755000175000017500000001624513423533412014073 0ustar carstencarsten#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gerbv-2.7.0/COPYING0000644000175000017500000004307613421555713013560 0ustar carstencarsten GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. gerbv-2.7.0/utils/0000755000175000017500000000000013421555714013654 5ustar carstencarstengerbv-2.7.0/utils/git2cl0000755000175000017500000003417313421555714014776 0ustar carstencarsten#!/bin/sh exec perl -w -x $0 ${1+"$@"} # -*- mode: perl; perl-indent-level: 2; -*- #!perl -w # Copyright (C) 2007, 2008 Simon Josefsson # Copyright (C) 2007 Luis Mondesi # * calls git directly. To use it just: # cd ~/Project/my_git_repo; git2cl > ChangeLog # * implements strptime() # * fixes bugs in $comment parsing # - copy input before we remove leading spaces # - skip "merge branch" statements as they don't # have information about files (i.e. we never # go into $state 2) # - behaves like a pipe/filter if input is given from the CLI # else it calls git log by itself # # The functions mywrap, last_line_len, wrap_log_entry are derived from # the cvs2cl tool, see : # Copyright (C) 2001,2002,2003,2004 Martyn J. Pearce # Copyright (C) 1999 Karl Fogel # # git2cl is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # git2cl is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with git2cl; see the file COPYING. If not, write to the Free # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. use strict; use POSIX qw(strftime); use Getopt::Long qw( GetOptions ); use Text::Wrap qw(wrap); use FileHandle; use constant EMPTY_LOG_MESSAGE => '*** empty log message ***'; # Print debugging messages? my $Debug = 0; # Expand usernames to email addresses based on a map file? my $User_Map_File = ''; my $User_Passwd_File; my $Mail_Domain; my $Obfuscate_Emails = 0; # Just print usage message and exit? my $Print_Usage = 0; GetOptions('help|usage|h' => \$Print_Usage, 'debug' => \$Debug, # unadvertised option, heh 'obfuscate|o' => \$Obfuscate_Emails, 'usermap|U=s' => \$User_Map_File, # not implemented yet ) or die "options parsing failed\n"; if ($Print_Usage) { &usage (); exit (0); } # ------------------------------------- sub usage { eval "use Pod::Usage qw( pod2usage )"; if ( $@ ) { print <<'END'; * Pod::Usage was not found. The formatting may be suboptimal. Consider upgrading your Perl --- Pod::Usage is standard from 5.6 onwards, and versions of perl prior to 5.6 are getting rather rusty, now. Alternatively, install Pod::Usage direct from CPAN. END local $/ = undef; my $message = ; $message =~ s/^=(head1|item) //gm; $message =~ s/^=(over|back).*\n//gm; $message =~ s/\n{3,}/\n\n/g; print $message; } else { print "\n"; pod2usage( -exitval => 'NOEXIT', -verbose => 1, -output => \*STDOUT, ); } return; } # this is a helper hash for stptime. # Assumes you are calling 'git log ...' with LC_ALL=C my %month = ( 'Jan'=>0, 'Feb'=>1, 'Mar'=>2, 'Apr'=>3, 'May'=>4, 'Jun'=>5, 'Jul'=>6, 'Aug'=>7, 'Sep'=>8, 'Oct'=>9, 'Nov'=>10, 'Dec'=>11, ); my $fh = new FileHandle; sub key_ready { my ($rin, $nfd); $rin = ''; vec($rin, fileno(STDIN), 1) = 1; return $nfd = select($rin, undef, undef, 0); } sub strptime { my $str = shift; return undef if not defined $str; # we are parsing this format # Fri Oct 26 00:42:56 2007 -0400 # to these fields # sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = -1 # Luis Mondesi my @date; if ($str =~ /([[:alpha:]]{3})\s+([[:alpha:]]{3})\s+([[:digit:]]{1,2})\s+([[:digit:]]{1,2}):([[:digit:]]{1,2}):([[:digit:]]{1,2})\s+([[:digit:]]{4})/){ push(@date,$6,$5,$4,$3,$month{$2},($7 - 1900),-1,-1,-1); } else { die ("Cannot parse date '$str'\n'"); } return @date; } sub mywrap { my ($indent1, $indent2, @text) = @_; # If incoming text looks preformatted, don't get clever my $text = Text::Wrap::wrap($indent1, $indent2, @text); if ( grep /^\s+/m, @text ) { return $text; } my @lines = split /\n/, $text; $indent2 =~ s!^((?: {8})+)!"\t" x (length($1)/8)!e; $lines[0] =~ s/^$indent1\s+/$indent1/; s/^$indent2\s+/$indent2/ for @lines[1..$#lines]; my $newtext = join "\n", @lines; $newtext .= "\n" if substr($text, -1) eq "\n"; return $newtext; } sub last_line_len { my $files_list = shift; my @lines = split (/\n/, $files_list); my $last_line = pop (@lines); return length ($last_line); } # Obfuscate email addresses in the author information at the # beginning of each log. sub obfuscate_email { my $text = shift; # The text to wrap. my $text_out = ''; my @words = split (/ /, $text); while (@words) # Don't use `foreach' here, it won't work. { my $this_word = shift (@words); if ($this_word =~ /[a-zA-Z_\.0-9]@[a-zA-Z_\.0-9]/) { $this_word =~ s/^[<\[]/* /; $this_word =~ s/\./ dot /g; $this_word =~ s/@/ AT /g; $this_word =~ s/[>\]]/ */; } $text_out = $text_out . " " . $this_word; } return $text_out; } # A custom wrap function, sensitive to some common constructs used in # log entries. sub wrap_log_entry { my $text = shift; # The text to wrap. my $left_pad_str = shift; # String to pad with on the left. # These do NOT take left_pad_str into account: my $length_remaining = shift; # Amount left on current line. my $max_line_length = shift; # Amount left for a blank line. my $wrapped_text = ''; # The accumulating wrapped entry. my $user_indent = ''; # Inherited user_indent from prev line. my $first_time = 1; # First iteration of the loop? my $suppress_line_start_match = 0; # Set to disable line start checks. my @lines = split (/\n/, $text); while (@lines) # Don't use `foreach' here, it won't work. { my $this_line = shift (@lines); chomp $this_line; if ($this_line =~ /^(\s+)/) { $user_indent = $1; } else { $user_indent = ''; } # If it matches any of the line-start regexps, print a newline now... if ($suppress_line_start_match) { $suppress_line_start_match = 0; } elsif (($this_line =~ /^(\s*)\*\s+[a-zA-Z0-9]/) || ($this_line =~ /^(\s*)\* [a-zA-Z0-9_\.\/\+-]+/) || ($this_line =~ /^(\s*)\([a-zA-Z0-9_\.\/\+-]+(\)|,\s*)/) || ($this_line =~ /^(\s+)(\S+)/) || ($this_line =~ /^(\s*)- +/) || ($this_line =~ /^()\s*$/) || ($this_line =~ /^(\s*)\*\) +/) || ($this_line =~ /^(\s*)[a-zA-Z0-9](\)|\.|\:) +/)) { $length_remaining = $max_line_length - (length ($user_indent)); } # Now that any user_indent has been preserved, strip off leading # whitespace, so up-folding has no ugly side-effects. $this_line =~ s/^\s*//; # obfuscate any emails found inside the log if ($Obfuscate_Emails && $this_line =~ /@/ ) { $this_line = &obfuscate_email ($this_line); } # Accumulate the line, and adjust parameters for next line. my $this_len = length ($this_line); if ($this_len == 0) { # Blank lines should cancel any user_indent level. $user_indent = ''; $length_remaining = $max_line_length; } elsif ($this_len >= $length_remaining) # Line too long, try breaking it. { # Walk backwards from the end. At first acceptable spot, break # a new line. my $idx = $length_remaining - 1; if ($idx < 0) { $idx = 0 }; while ($idx > 0) { if (substr ($this_line, $idx, 1) =~ /\s/) { my $line_now = substr ($this_line, 0, $idx); my $next_line = substr ($this_line, $idx); $this_line = $line_now; # Clean whitespace off the end. chomp $this_line; # The current line is ready to be printed. $this_line .= "\n${left_pad_str}"; # Make sure the next line is allowed full room. $length_remaining = $max_line_length - (length ($user_indent)); # Strip next_line, but then preserve any user_indent. $next_line =~ s/^\s*//; # Sneak a peek at the user_indent of the upcoming line, so # $next_line (which will now precede it) can inherit that # indent level. Otherwise, use whatever user_indent level # we currently have, which might be none. my $next_next_line = shift (@lines); if ((defined ($next_next_line)) && ($next_next_line =~ /^(\s+)/)) { $next_line = $1 . $next_line if (defined ($1)); # $length_remaining = $max_line_length - (length ($1)); $next_next_line =~ s/^\s*//; } else { $next_line = $user_indent . $next_line; } if (defined ($next_next_line)) { unshift (@lines, $next_next_line); } unshift (@lines, $next_line); # Our new next line might, coincidentally, begin with one of # the line-start regexps, so we temporarily turn off # sensitivity to that until we're past the line. $suppress_line_start_match = 1; last; } else { $idx--; } } if ($idx == 0) { # We bottomed out because the line is longer than the # available space. But that could be because the space is # small, or because the line is longer than even the maximum # possible space. Handle both cases below. if ($length_remaining == ($max_line_length - (length ($user_indent)))) { # The line is simply too long -- there is no hope of ever # breaking it nicely, so just insert it verbatim, with # appropriate padding. $this_line = "\n${left_pad_str}${this_line}"; } else { # Can't break it here, but may be able to on the next round... unshift (@lines, $this_line); $length_remaining = $max_line_length - (length ($user_indent)); $this_line = "\n${left_pad_str}"; } } } else # $this_len < $length_remaining, so tack on what we can. { # Leave a note for the next iteration. $length_remaining = $length_remaining - $this_len; if ($this_line =~ /\.$/) { $this_line .= " "; $length_remaining -= 2; } else # not a sentence end { $this_line .= " "; $length_remaining -= 1; } } # Unconditionally indicate that loop has run at least once. $first_time = 0; $wrapped_text .= "${user_indent}${this_line}"; } # One last bit of padding. $wrapped_text .= "\n"; return $wrapped_text; } # main my @date; my $author; my @files; my $comment; my $state; # 0-header 1-comment 2-files my $done = 0; $state = 0; # if reading from STDIN, we assume that we are # getting git log as input if (key_ready()) { #my $dummyfh; # don't care about writing #($fh,$dummyfh) = FileHandle::pipe; $fh->fdopen(*STDIN, 'r'); } else { $fh->open("LC_ALL=C git log --pretty --numstat --summary|") or die("Cannot execute git log...$!\n"); } while (my $_l = <$fh>) { #print STDERR "debug ($state, " . (@date ? (strftime "%Y-%m-%d", @date) : "") . "): `$_'\n"; if ($state == 0) { if ($_l =~ m,^Author: (.*),) { $author = $1; if ($Obfuscate_Emails) { $author = &obfuscate_email ($author); } } if ($_l =~ m,^Date: (.*),) { @date = strptime($1); } $state = 1 if ($_l =~ m,^$, and $author and (@date+0>0)); } elsif ($state == 1) { # * modifying our input text is a bad choice # let's make a copy of it first, then we remove spaces # * if we meet a "merge branch" statement, we need to start # over and find a real entry # Luis Mondesi my $_s = $_l; $_s =~ s/^ //g; if ($_s =~ m/^Merge branch/) { $state=0; next; } $comment = $comment . $_s; $state = 2 if ($_l =~ m,^$,); } elsif ($state == 2) { if ($_l =~ m,^([0-9]+)\t([0-9]+)\t(.*)$,) { push @files, $3; } $done = 1 if ($_l =~ m,^$,); } if ($done) { my $now = (strftime "%Y-%m-%d $author\n\n", @date); $now =~ s/[ \t]+\n/\n/g; print "$now"; my $files = join (", ", @files); $files = mywrap ("\t", "\t", "* $files"); if (index($comment, EMPTY_LOG_MESSAGE) > -1 ) { $comment = "[no log message]\n"; } my $files_last_line_len = 0; $files_last_line_len = last_line_len($files) + 1; my $msg = wrap_log_entry($comment, "\t", 69-$files_last_line_len, 69); $msg = "$files: $msg\n"; # clean up any whitespace at the end of lines $msg =~ s/[ \t]+\n/\n/g; print "$msg"; @date = (); $author = ""; @files = (); $comment = ""; $state = 0; $done = 0; } } if (@date + 0) { my $when = (strftime "%Y-%m-%d $author\n\n", @date); $when =~ s/[ \t]+\n/\n/g; print "$when"; my $msg = wrap_log_entry($comment, "\t", 69, 69); $msg = "\t* $msg\n"; # clean up any whitespace at the end $msg =~ s/[ \t]+\n/\n/g; print "$msg"; } __DATA__ =head1 NAME cvs2cl.pl - convert cvs log messages to changelogs =head1 SYNOPSIS B [I] [I [I ...]] =head1 DESCRIPTION cvs2cl produces a GNU-style ChangeLog for CVS-controlled sources by running "cvs log" and parsing the output. Duplicate log messages get unified in the Right Way. The default output of cvs2cl is designed to be compact, formally unambiguous, but still easy for humans to read. It should be largely self-explanatory; the one abbreviation that might not be obvious is "utags". That stands for "universal tags" -- a universal tag is one held by all the files in a given change entry. If you need output that's easy for a program to parse, use the B<--xml> option. Note that with XML output, just about all available information is included with each change entry, whether you asked for it or not, on the theory that your parser can ignore anything it's not looking for. If filenames are given as arguments cvs2cl only shows log information for the named files. =head1 OPTIONS =over 4 =item B<-h>, B<-help>, B<--help>, B<-?> Show a short help and exit. =item B<--obfuscate>, B<-O> Obfuscate email addresses in the logs. =item -B I, B<--usermap> I Expand usernames to email addresses from I. NOT IMPLEMENTED YET =head1 SEE ALSO git(1) cvs2cl(1) gerbv-2.7.0/utils/umap0000644000175000017500000000075513421555714014550 0ustar carstencarstenaenfaldor:'Anders Eriksson ' brorson:'Stuart Brorson ' danmc:'Dan McMahill ' hwaechtler:'Holger Waechtler <>' juergenhaas:'Juergen Haas ' motyl:'Tomasz Motylewski ' petercjclifton:'Peter Clifton <>' pitch:'Andreas Andersson ' spetm:'Stefan Petersen ' thepurlieu:'Julian Lamb <>' gerbv-2.7.0/utils/cvs2cl.pl0000755000175000017500000025753313421555714015427 0ustar carstencarsten#!/bin/sh exec perl -w -x $0 ${1+"$@"} # -*- mode: perl; perl-indent-level: 2; -*- #!perl -w ############################################################## ### ### ### cvs2cl.pl: produce ChangeLog(s) from `cvs log` output. ### ### ### ############################################################## ## $Revision$ ## $Date$ ## $Author$ ## use strict; use File::Basename qw( fileparse ); use Getopt::Long qw( GetOptions ); use Text::Wrap qw( ); use User::pwent qw( getpwnam ); # The Plan: # # Read in the logs for multiple files, spit out a nice ChangeLog that # mirrors the information entered during `cvs commit'. # # The problem presents some challenges. In an ideal world, we could # detect files with the same author, log message, and checkin time -- # each would be a changelog entry. # We'd sort them; and spit them out. Unfortunately, CVS is *not atomic* # so checkins can span a range of times. Also, the directory structure # could be hierarchical. # # Another question is whether we really want to have the ChangeLog # exactly reflect commits. An author could issue two related commits, # with different log entries, reflecting a single logical change to the # source. GNU style ChangeLogs group these under a single author/date. # We try to do the same. # # So, we parse the output of `cvs log', storing log messages in a # multilevel hash that stores the mapping: # directory => author => time => message => filelist # As we go, we notice "nearby" commit times and store them together # (i.e., under the same timestamp), so they appear in the same log # entry. # # When we've read all the logs, we twist this mapping into # a time => author => message => filelist mapping for each directory. # # If we're not using the `--distributed' flag, the directory is always # considered to be `./', even as descend into subdirectories. # Call Tree # name number of lines (10.xii.03) # parse_options 192 # derive_changelog 13 # +-maybe_grab_accumulation_date 38 # +-read_changelog 277 # +-maybe_read_user_map_file 94 # +-run_ext 9 # +-read_file_path 29 # +-read_symbolic_name 43 # +-read_revision 49 # +-read_date_author_and_state 25 # +-parse_date_author_and_state 20 # +-read_branches 36 # +-output_changelog 424 # +-pretty_file_list 290 # +-common_path_prefix 35 # +-preprocess_msg_text 30 # +-min 1 # +-mywrap 16 # +-last_line_len 5 # +-wrap_log_entry 177 # # Utilities # # xml_escape 6 # slurp_file 11 # debug 5 # version 2 # usage 142 # -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- # # Note about a bug-slash-opportunity: # ----------------------------------- # # There's a bug in Text::Wrap, which affects cvs2cl. This script # reveals it: # # #!/usr/bin/perl -w # # use Text::Wrap; # # my $test_text = # "This script demonstrates a bug in Text::Wrap. The very long line # following this paragraph will be relocated relative to the surrounding # text: # # ==================================================================== # # See? When the bug happens, we'll get the line of equal signs below # this paragraph, even though it should be above."; # # # # Print out the test text with no wrapping: # print "$test_text"; # print "\n"; # print "\n"; # # # Now print it out wrapped, and see the bug: # print wrap ("\t", " ", "$test_text"); # print "\n"; # print "\n"; # # If the line of equal signs were one shorter, then the bug doesn't # happen. Interesting. # # Anyway, rather than fix this in Text::Wrap, we might as well write a # new wrap() which has the following much-needed features: # # * initial indentation, like current Text::Wrap() # * subsequent line indentation, like current Text::Wrap() # * user chooses among: force-break long words, leave them alone, or die()? # * preserve existing indentation: chopped chunks from an indented line # are indented by same (like this line, not counting the asterisk!) # * optional list of things to preserve on line starts, default ">" # # Note that the last two are essentially the same concept, so unify in # implementation and give a good interface to controlling them. # # And how about: # # Optionally, when encounter a line pre-indented by same as previous # line, then strip the newline and refill, but indent by the same. # Yeah... # Globals -------------------------------------------------------------------- # In case we have to print it out: my $VERSION = '$Revision$'; $VERSION =~ s/\S+\s+(\S+)\s+\S+/$1/; ## Vars set by options: # Print debugging messages? my $Debug = 0; # Just show version and exit? my $Print_Version = 0; # Just print usage message and exit? my $Print_Usage = 0; # What file should we generate (defaults to "ChangeLog")? my $Log_File_Name = "ChangeLog"; # Grab most recent entry date from existing ChangeLog file, just add # to that ChangeLog. my $Cumulative = 0; # `cvs log -d`, this will repeat the last entry in the old log. This is OK, # as it guarantees at least one entry in the update changelog, which means # that there will always be a date to extract for the next update. The repeat # entry can be removed in postprocessing, if necessary. # MJP 2003-08-02 # I don't think this actually does anything useful my $Update = 0; # Expand usernames to email addresses based on a map file? my $User_Map_File = ''; my $User_Passwd_File; my $Mail_Domain; # Output log in chronological order? [default is reverse chronological order] my $Chronological_Order = 0; # Grab user details via gecos my $Gecos = 0; # User domain for gecos email addresses my $Domain; # Output to a file or to stdout? my $Output_To_Stdout = 0; # Eliminate empty log messages? my $Prune_Empty_Msgs = 0; # Tags of which not to output my %ignore_tags; # Show only revisions with Tags my %show_tags; # Don't call Text::Wrap on the body of the message my $No_Wrap = 0; # Indentation of log messages my $Indent = "\t"; # Don't do any pretty print processing my $Summary = 0; # Separates header from log message. Code assumes it is either " " or # "\n\n", so if there's ever an option to set it to something else, # make sure to go through all conditionals that use this var. my $After_Header = " "; # XML Encoding my $XML_Encoding = ''; # Format more for programs than for humans. my $XML_Output = 0; my $No_XML_Namespace = 0; my $No_XML_ISO_Date = 0; # Do some special tweaks for log data that was written in FSF # ChangeLog style. my $FSF_Style = 0; # Show times in UTC instead of local time my $UTC_Times = 0; # Show times in output? my $Show_Times = 1; # Show day of week in output? my $Show_Day_Of_Week = 0; # Show revision numbers in output? my $Show_Revisions = 0; # Show dead files in output? my $Show_Dead = 0; # Hide dead trunk files which were created as a result of additions on a # branch? my $Hide_Branch_Additions = 1; # Show tags (symbolic names) in output? my $Show_Tags = 0; # Show tags separately in output? my $Show_Tag_Dates = 0; # Show branches by symbolic name in output? my $Show_Branches = 0; # Show only revisions on these branches or their ancestors. my @Follow_Branches; # Show only revisions on these branches or their ancestors; ignore descendent # branches. my @Follow_Only; # Don't bother with files matching this regexp. my @Ignore_Files; # How exactly we match entries. We definitely want "o", # and user might add "i" by using --case-insensitive option. my $Case_Insensitive = 0; # Maybe only show log messages matching a certain regular expression. my $Regexp_Gate = ''; # Pass this global option string along to cvs, to the left of `log': my $Global_Opts = ''; # Pass this option string along to the cvs log subcommand: my $Command_Opts = ''; # Read log output from stdin instead of invoking cvs log? my $Input_From_Stdin = 0; # Don't show filenames in output. my $Hide_Filenames = 0; # Don't shorten directory names from filenames. my $Common_Dir = 1; # Max checkin duration. CVS checkin is not atomic, so we may have checkin # times that span a range of time. We assume that checkins will last no # longer than $Max_Checkin_Duration seconds, and that similarly, no # checkins will happen from the same users with the same message less # than $Max_Checkin_Duration seconds apart. my $Max_Checkin_Duration = 180; # What to put at the front of [each] ChangeLog. my $ChangeLog_Header = ''; # Whether to enable 'delta' mode, and for what start/end tags. my $Delta_Mode = 0; my $Delta_From = ''; my $Delta_To = ''; my $TestCode; # Whether to parse filenames from the RCS filename, and if so what # prefix to strip. my $RCS_Root; # Whether to output information on the # of lines added and removed # by each file modification. my $Show_Lines_Modified = 0; ## end vars set by options. # latest observed times for the start/end tags in delta mode my $Delta_StartTime = 0; my $Delta_EndTime = 0; my $No_Ancestors = 0; my $No_Extra_Indent = 0; my $GroupWithinDate = 0; # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::EntrySet; sub new { my $class = shift; my %self; bless \%self, $class; } # ------------------------------------- sub output_changelog { my $output_type = $XML_Output ? 'XML' : 'Text'; my $output_class = "CVS::Utils::ChangeLog::EntrySet::Output::${output_type}"; my $output = $output_class->new(follow_branches => \@Follow_Branches, follow_only => \@Follow_Only, ignore_tags => \%ignore_tags, show_tags => \%show_tags, ); $output->output_changelog(@_); } # ------------------------------------- sub add_fileentry { my ($self, $file_full_path, $time, $revision, $state, $lines, $branch_names, $branch_roots, $branch_numbers, $symbolic_names, $author, $msg_txt) = @_; my $qunk = CVS::Utils::ChangeLog::FileEntry->new($file_full_path, $time, $revision, $state, $lines, $branch_names, $branch_roots, $branch_numbers, $symbolic_names); # We might be including revision numbers and/or tags and/or # branch names in the output. Most of the code from here to # loop-end deals with organizing these in qunk. unless ( $Hide_Branch_Additions and $msg_txt =~ /file .+ was initially added on branch \S+./ ) { # Add this file to the list # (We use many spoonfuls of autovivication magic. Hashes and arrays # will spring into existence if they aren't there already.) &main::debug ("(pushing log msg for ". $qunk->dir_key . $qunk->filename . ")\n"); # Store with the files in this commit. Later we'll loop through # again, making sure that revisions with the same log message # and nearby commit times are grouped together as one commit. $self->{$qunk->dir_key}{$author}{$time}{$msg_txt} = CVS::Utils::ChangeLog::Message->new($msg_txt) unless exists $self->{$qunk->dir_key}{$author}{$time}{$msg_txt}; $self->{$qunk->dir_key}{$author}{$time}{$msg_txt}->add_fileentry($qunk); } } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::EntrySet::Output::Text; use base qw( CVS::Utils::ChangeLog::EntrySet::Output ); use File::Basename qw( fileparse ); sub new { my $class = shift; my $self = $class->SUPER::new(@_); } # ------------------------------------- sub wday { my $self = shift; my $class = ref $self; my ($wday) = @_; return $Show_Day_Of_Week ? ' ' . $class->weekday_en($wday) : ''; } # ------------------------------------- sub header_line { my $self = shift; my ($time, $author, $lastdate) = @_; my $header_line = ''; my (undef,$min,$hour,$mday,$mon,$year,$wday) = $UTC_Times ? gmtime($time) : localtime($time); my $date = $self->fdatetime($time); if ($Show_Times) { $header_line = sprintf "%s %s\n\n", $date, $author; } else { if ( ! defined $lastdate or $date ne $lastdate or ! $GroupWithinDate ) { if ( $GroupWithinDate ) { $header_line = "$date\n\n"; } else { $header_line = "$date $author\n\n"; } } else { $header_line = ''; } } } # ------------------------------------- sub preprocess_msg_text { my $self = shift; my ($text) = @_; $text = $self->SUPER::preprocess_msg_text($text); unless ( $No_Wrap ) { # Strip off lone newlines, but only for lines that don't begin with # whitespace or a mail-quoting character, since we want to preserve # that kind of formatting. Also don't strip newlines that follow a # period; we handle those specially next. And don't strip # newlines that precede an open paren. 1 while $text =~ s/(^|\n)([^>\s].*[^.\n])\n([^>\n])/$1$2 $3/g; # If a newline follows a period, make sure that when we bring up the # bottom sentence, it begins with two spaces. 1 while $text =~ s/(^|\n)([^>\s].*)\n([^>\n])/$1$2 $3/g; } return $text; } # ------------------------------------- # Here we take a bunch of qunks and convert them into printed # summary that will include all the information the user asked for. sub pretty_file_list { my $self = shift; return '' if $Hide_Filenames; my $qunksref = shift; my @filenames; my $beauty = ''; # The accumulating header string for this entry. my %non_unanimous_tags; # Tags found in a proper subset of qunks my %unanimous_tags; # Tags found in all qunks my %all_branches; # Branches found in any qunk my $fbegun = 0; # Did we begin printing filenames yet? my ($common_dir, $qunkrefs) = $self->_pretty_file_list(\(%unanimous_tags, %non_unanimous_tags, %all_branches), $qunksref); my @qunkrefs = @$qunkrefs; # Not XML output, so complexly compactify for chordate consumption. At this # point we have enough global information about all the qunks to organize # them non-redundantly for output. if ($common_dir) { # Note that $common_dir still has its trailing slash $beauty .= "$common_dir: "; } if ($Show_Branches) { # For trailing revision numbers. my @brevisions; foreach my $branch (keys (%all_branches)) { foreach my $qunkref (@qunkrefs) { if ((defined ($qunkref->branch)) and ($qunkref->branch eq $branch)) { if ($fbegun) { # kff todo: comma-delimited in XML too? Sure. $beauty .= ", "; } else { $fbegun = 1; } my $fname = substr ($qunkref->filename, length ($common_dir)); $beauty .= $fname; $qunkref->{'printed'} = 1; # Just setting a mark bit, basically if ( $Show_Tags and defined $qunkref->tags ) { my @tags = grep ($non_unanimous_tags{$_}, @{$qunkref->tags}); if (@tags) { $beauty .= " (tags: "; $beauty .= join (', ', @tags); $beauty .= ")"; } } if ($Show_Revisions) { # Collect the revision numbers' last components, but don't # print them -- they'll get printed with the branch name # later. $qunkref->revision =~ /.+\.([\d]+)$/; push (@brevisions, $1); # todo: we're still collecting branch roots, but we're not # showing them anywhere. If we do show them, it would be # nifty to just call them revision "0" on a the branch. # Yeah, that's the ticket. } } } $beauty .= " ($branch"; if (@brevisions) { if ((scalar (@brevisions)) > 1) { $beauty .= ".["; $beauty .= (join (',', @brevisions)); $beauty .= "]"; } else { # Square brackets are spurious here, since there's no range to # encapsulate $beauty .= ".$brevisions[0]"; } } $beauty .= ")"; } } # Okay; any qunks that were done according to branch are taken care # of, and marked as printed. Now print everyone else. my %fileinfo_printed; foreach my $qunkref (@qunkrefs) { next if (defined ($qunkref->{'printed'})); # skip if already printed my $b = substr ($qunkref->filename, length ($common_dir)); # todo: Shlomo's change was this: # $beauty .= substr ($qunkref->filename, # (($common_dir eq "./") ? '' : length ($common_dir))); $qunkref->{'printed'} = 1; # Set a mark bit. if ($Show_Revisions || $Show_Tags || $Show_Dead) { my $started_addendum = 0; if ($Show_Revisions) { $started_addendum = 1; $b .= " ("; $b .= $qunkref->revision; } if ($Show_Dead && $qunkref->state =~ /dead/) { # Deliberately not using $started_addendum. Keeping it simple. $b .= "[DEAD]"; } if ($Show_Tags && (defined $qunkref->tags)) { my @tags = grep ($non_unanimous_tags{$_}, @{$qunkref->tags}); if ((scalar (@tags)) > 0) { if ($started_addendum) { $b .= ", "; } else { $b .= " (tags: "; } $b .= join (', ', @tags); $started_addendum = 1; } } if ($started_addendum) { $b .= ")"; } } unless ( exists $fileinfo_printed{$b} ) { if ($fbegun) { $beauty .= ", "; } else { $fbegun = 1; } $beauty .= $b, $fileinfo_printed{$b} = 1; } } # Unanimous tags always come last. if ($Show_Tags && %unanimous_tags) { $beauty .= " (utags: "; $beauty .= join (', ', sort keys (%unanimous_tags)); $beauty .= ")"; } # todo: still have to take care of branch_roots? $beauty = "$beauty:"; return $beauty; } # ------------------------------------- sub output_tagdate { my $self = shift; my ($fh, $time, $tag) = @_; my $fdatetime = $self->fdatetime($time); print $fh "$fdatetime tag $tag\n\n"; return; } # ------------------------------------- sub format_body { my $self = shift; my ($msg, $files, $qunklist) = @_; my $body; if ( $No_Wrap and ! $Summary ) { $msg = $self->preprocess_msg_text($msg); $files = $self->mywrap("\t", "\t ", "* $files"); $msg =~ s/\n(.+)/\n$Indent$1/g; unless ($After_Header eq " ") { $msg =~ s/^(.+)/$Indent$1/g; } if ( $Hide_Filenames ) { $body = $After_Header . $msg; } else { $body = $files . $After_Header . $msg; } } elsif ( $Summary ) { my ($filelist, $qunk); my (@DeletedQunks, @AddedQunks, @ChangedQunks); $msg = $self->preprocess_msg_text($msg); # # Sort the files (qunks) according to the operation that was # performed. Files which were added have no line change # indicator, whereas deleted files have state dead. # foreach $qunk ( @$qunklist ) { if ( "dead" eq $qunk->state) { push @DeletedQunks, $qunk; } elsif ( ! defined $qunk->lines ) { push @AddedQunks, $qunk; } else { push @ChangedQunks, $qunk; } } # # The qunks list was originally in tree search order. Let's # get that back. The lists, if they exist, will be reversed upon # processing. # # # Now write the three sections onto $filelist # if ( @DeletedQunks ) { $filelist .= "\tDeleted:\n"; foreach $qunk ( @DeletedQunks ) { $filelist .= "\t\t" . $qunk->filename; $filelist .= " (" . $qunk->revision . ")"; $filelist .= "\n"; } undef @DeletedQunks; } if ( @AddedQunks ) { $filelist .= "\tAdded:\n"; foreach $qunk (@AddedQunks) { $filelist .= "\t\t" . $qunk->filename; $filelist .= " (" . $qunk->revision . ")"; $filelist .= "\n"; } undef @AddedQunks ; } if ( @ChangedQunks ) { $filelist .= "\tChanged:\n"; foreach $qunk (@ChangedQunks) { $filelist .= "\t\t" . $qunk->filename; $filelist .= " (" . $qunk->revision . ")"; $filelist .= ", \"" . $qunk->state . "\""; $filelist .= ", lines: " . $qunk->lines; $filelist .= "\n"; } undef @ChangedQunks; } chomp $filelist; if ( $Hide_Filenames ) { $filelist = ''; } $msg =~ s/\n(.*)/\n$Indent$1/g; unless ( $After_Header eq " " or $FSF_Style ) { $msg =~ s/^(.*)/$Indent$1/g; } unless ( $No_Wrap ) { if ( $FSF_Style ) { $msg = $self->wrap_log_entry($msg, '', 69, 69); chomp($msg); chomp($msg); } else { $msg = $self->mywrap('', $Indent, "$msg"); $msg =~ s/[ \t]+\n/\n/g; } } $body = $filelist . $After_Header . $msg; } else { # do wrapping, either FSF-style or regular my $latter_wrap = $No_Extra_Indent ? $Indent : "$Indent "; if ( $FSF_Style ) { $files = $self->mywrap($Indent, $latter_wrap, "* $files"); my $files_last_line_len = 0; if ( $After_Header eq " " ) { $files_last_line_len = $self->last_line_len($files); $files_last_line_len += 1; # for $After_Header } $msg = $self->wrap_log_entry($msg, $latter_wrap, 69-$files_last_line_len, 69); $body = $files . $After_Header . $msg; } else { # not FSF-style $msg = $self->preprocess_msg_text($msg); $body = $files . $After_Header . $msg; $body = $self->mywrap($Indent, $latter_wrap, "* $body"); $body =~ s/[ \t]+\n/\n/g; } } return $body; } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::EntrySet::Output::XML; use base qw( CVS::Utils::ChangeLog::EntrySet::Output ); use File::Basename qw( fileparse ); sub new { my $class = shift; my $self = $class->SUPER::new(@_); } # ------------------------------------- sub header_line { my $self = shift; my ($time, $author, $lastdate) = @_; my $header_line = ''; my $isoDate; my ($y, $m, $d, $H, $M, $S) = (gmtime($time))[5,4,3,2,1,0]; # Ideally, this would honor $UTC_Times and use +HH:MM syntax $isoDate = sprintf("%04d-%02d-%02dT%02d:%02d:%02dZ", $y + 1900, $m + 1, $d, $H, $M, $S); my (undef,$min,$hour,$mday,$mon,$year,$wday) = $UTC_Times ? gmtime($time) : localtime($time); my $date = $self->fdatetime($time); $wday = $self->wday($wday); $header_line = sprintf ("%4u-%02u-%02u\n${wday}\n", $year+1900, $mon+1, $mday, $hour, $min); $header_line .= "$isoDate\n" unless $No_XML_ISO_Date; $header_line .= sprintf("%s\n" , $author); } # ------------------------------------- sub wday { my $self = shift; my $class = ref $self; my ($wday) = @_; return '' . $class->weekday_en($wday) . "\n"; } # ------------------------------------- sub escape { my $self = shift; my $txt = shift; $txt =~ s/&/&/g; $txt =~ s//>/g; return $txt; } # ------------------------------------- sub output_header { my $self = shift; my ($fh) = @_; my $encoding = length $XML_Encoding ? qq'encoding="$XML_Encoding"' : ''; my $version = 'version="1.0"'; my $declaration = sprintf '', join ' ', grep length, $version, $encoding; my $root = $No_XML_Namespace ? '' : ''; print $fh "$declaration\n\n$root\n\n"; } # ------------------------------------- sub output_footer { my $self = shift; my ($fh) = @_; print $fh "\n"; } # ------------------------------------- sub preprocess_msg_text { my $self = shift; my ($text) = @_; $text = $self->SUPER::preprocess_msg_text($text); $text = $self->escape($text); chomp $text; $text = "${text}\n"; return $text; } # ------------------------------------- # Here we take a bunch of qunks and convert them into a printed # summary that will include all the information the user asked for. sub pretty_file_list { my $self = shift; my ($qunksref) = @_; my $beauty = ''; # The accumulating header string for this entry. my %non_unanimous_tags; # Tags found in a proper subset of qunks my %unanimous_tags; # Tags found in all qunks my %all_branches; # Branches found in any qunk my $fbegun = 0; # Did we begin printing filenames yet? my ($common_dir, $qunkrefs) = $self->_pretty_file_list(\(%unanimous_tags, %non_unanimous_tags, %all_branches), $qunksref); my @qunkrefs = @$qunkrefs; # If outputting XML, then our task is pretty simple, because we # don't have to detect common dir, common tags, branch prefixing, # etc. We just output exactly what we have, and don't worry about # redundancy or readability. foreach my $qunkref (@qunkrefs) { my $filename = $qunkref->filename; my $state = $qunkref->state; my $revision = $qunkref->revision; my $tags = $qunkref->tags; my $branch = $qunkref->branch; my $branchroots = $qunkref->roots; my $lines = $qunkref->lines; $filename = $self->escape($filename); # probably paranoia $revision = $self->escape($revision); # definitely paranoia $beauty .= "\n"; $beauty .= "${filename}\n"; $beauty .= "${state}\n"; $beauty .= "${revision}\n"; if ($Show_Lines_Modified && $lines && $lines =~ m/\+(\d+)\s+-(\d+)/) { $beauty .= "$1\n"; $beauty .= "$2\n"; } if ($branch) { $branch = $self->escape($branch); # more paranoia $beauty .= "${branch}\n"; } foreach my $tag (@$tags) { $tag = $self->escape($tag); # by now you're used to the paranoia $beauty .= "${tag}\n"; } foreach my $root (@$branchroots) { $root = $self->escape($root); # which is good, because it will continue $beauty .= "${root}\n"; } $beauty .= "\n"; } # Theoretically, we could go home now. But as long as we're here, # let's print out the common_dir and utags, as a convenience to # the receiver (after all, earlier code calculated that stuff # anyway, so we might as well take advantage of it). if ((scalar (keys (%unanimous_tags))) > 1) { foreach my $utag ((keys (%unanimous_tags))) { $utag = $self->escape($utag); # the usual paranoia $beauty .= "${utag}\n"; } } if ($common_dir) { $common_dir = $self->escape($common_dir); $beauty .= "${common_dir}\n"; } # That's enough for XML, time to go home: return $beauty; } # ------------------------------------- sub output_tagdate { # NOT YET DONE } # ------------------------------------- sub output_entry { my $self = shift; my ($fh, $entry) = @_; print $fh "\n$entry\n\n"; } # ------------------------------------- sub format_body { my $self = shift; my ($msg, $files, $qunklist) = @_; $msg = $self->preprocess_msg_text($msg); return $files . $msg; } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::EntrySet::Output; use Carp qw( croak ); use File::Basename qw( fileparse ); # Class Utility Functions ------------- { # form closure my @weekdays = (qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday)); sub weekday_en { my $class = shift; return $weekdays[$_[0]]; } } # ------------------------------------- sub new { my ($proto, %args) = @_; my $class = ref $proto || $proto; my $follow_branches = delete $args{follow_branches}; my $follow_only = delete $args{follow_only}; my $ignore_tags = delete $args{ignore_tags}; my $show_tags = delete $args{show_tags}; die "Unrecognized arg to EntrySet::Output::new: '$_'\n" for keys %args; bless +{follow_branches => $follow_branches, follow_only => $follow_only, show_tags => $show_tags, ignore_tags => $ignore_tags, }, $class; } # Abstract Subrs ---------------------- sub wday { croak "Whoops. Abtract method call (wday).\n" } sub pretty_file_list { croak "Whoops. Abtract method call (pretty_file_list).\n" } sub output_tagdate { croak "Whoops. Abtract method call (output_tagdate).\n" } sub header_line { croak "Whoops. Abtract method call (header_line).\n" } # Instance Subrs ---------------------- sub output_header { } # ------------------------------------- sub output_entry { my $self = shift; my ($fh, $entry) = @_; print $fh "$entry\n"; } # ------------------------------------- sub output_footer { } # ------------------------------------- sub escape { return $_[1] } # ------------------------------------- sub _revision_is_wanted { my ($self, $qunk) = @_; my ($revision, $branch_numbers) = @{$qunk}{qw( revision branch_numbers )}; my $follow_branches = $self->{follow_branches}; my $follow_only = $self->{follow_only}; #print STDERR "IG: ", join(',', keys %{$self->{ignore_tags}}), "\n"; #print STDERR "IX: ", join(',', @{$qunk->{tags}}), "\n" if defined $qunk->{tags}; #print STDERR "IQ: ", join(',', keys %{$qunk->{branch_numbers}}), "\n" if defined $qunk->{branch_numbers}; #use Data::Dumper; print STDERR Dumper $qunk; for my $ignore_tag (keys %{$self->{ignore_tags}}) { return if defined $qunk->{tags} and grep $_ eq $ignore_tag, @{$qunk->{tags}}; } if ( keys %{$self->{show_tags}} ) { for my $show_tag (keys %{$self->{show_tags}}) { return if ! defined $qunk->{tags} or ! grep $_ eq $show_tag, @{$qunk->{tags}}; } } return 1 unless @$follow_branches + @$follow_only; # no follow is follow all for my $x (map([$_, 1], @$follow_branches), map([$_, 0], @$follow_only )) { my ($branch, $followsub) = @$x; # Special case for following trunk revisions return 1 if $branch =~ /^trunk$/i and $revision =~ /^[0-9]+\.[0-9]+$/; if ( my $branch_number = $branch_numbers->{$branch} ) { # Are we on one of the follow branches or an ancestor of same? # If this revision is a prefix of the branch number, or possibly is less # in the minormost number, OR if this branch number is a prefix of the # revision, then yes. Otherwise, no. # So below, we determine if any of those conditions are met. # Trivial case: is this revision on the branch? (Compare this way to # avoid regexps that screw up Emacs indentation, argh.) if ( substr($revision, 0, (length($branch_number) + 1)) eq ($branch_number . ".") ) { if ( $followsub ) { return 1; } elsif (length($revision) == length($branch_number)+2 ) { return 1; } } elsif ( length($branch_number) > length($revision) and $No_Ancestors ) { # Non-trivial case: check if rev is ancestral to branch # r_left still has the trailing "." my ($r_left, $r_end) = ($revision =~ /^((?:\d+\.)+)(\d+)$/); # b_left still has trailing "." # b_mid has no trailing "." my ($b_left, $b_mid) = ($branch_number =~ /^((?:\d+\.)+)(\d+)\.\d+$/); return 1 if $r_left eq $b_left and $r_end <= $b_mid; } } } return; } # ------------------------------------- sub output_changelog { my $self = shift; my $class = ref $self; my ($grand_poobah) = @_; ### Process each ChangeLog while (my ($dir,$authorhash) = each %$grand_poobah) { &main::debug ("DOING DIR: $dir\n"); # Here we twist our hash around, from being # author => time => message => filelist # in %$authorhash to # time => author => message => filelist # in %changelog. # # This is also where we merge entries. The algorithm proceeds # through the timeline of the changelog with a sliding window of # $Max_Checkin_Duration seconds; within that window, entries that # have the same log message are merged. # # (To save space, we zap %$authorhash after we've copied # everything out of it.) my %changelog; while (my ($author,$timehash) = each %$authorhash) { my %stamptime; foreach my $time (sort {$a <=> $b} (keys %$timehash)) { my $msghash = $timehash->{$time}; while (my ($msg,$qunklist) = each %$msghash) { my $stamptime = $stamptime{$msg}; if ((defined $stamptime) and (($time - $stamptime) < $Max_Checkin_Duration) and (defined $changelog{$stamptime}{$author}{$msg})) { push(@{$changelog{$stamptime}{$author}{$msg}}, $qunklist->files); } else { $changelog{$time}{$author}{$msg} = $qunklist->files; $stamptime{$msg} = $time; } } } } undef (%$authorhash); ### Now we can write out the ChangeLog! my ($logfile_here, $logfile_bak, $tmpfile); my $lastdate; if (! $Output_To_Stdout) { $logfile_here = $dir . $Log_File_Name; $logfile_here =~ s/^\.\/\//\//; # fix any leading ".//" problem $tmpfile = "${logfile_here}.cvs2cl$$.tmp"; $logfile_bak = "${logfile_here}.bak"; open (LOG_OUT, ">$tmpfile") or die "Unable to open \"$tmpfile\""; } else { open (LOG_OUT, ">-") or die "Unable to open stdout for writing"; } print LOG_OUT $ChangeLog_Header; my %tag_date_printed; $self->output_header(\*LOG_OUT); my @key_list = (); if($Chronological_Order) { @key_list = sort {$a <=> $b} (keys %changelog); } else { @key_list = sort {$b <=> $a} (keys %changelog); } foreach my $time (@key_list) { next if ($Delta_Mode && (($time <= $Delta_StartTime) || ($time > $Delta_EndTime && $Delta_EndTime))); # Set up the date/author line. # kff todo: do some more XML munging here, on the header # part of the entry: my (undef,$min,$hour,$mday,$mon,$year,$wday) = $UTC_Times ? gmtime($time) : localtime($time); $wday = $self->wday($wday); # XML output includes everything else, we might as well make # it always include Day Of Week too, for consistency. my $authorhash = $changelog{$time}; if ($Show_Tag_Dates) { my %tags; while (my ($author,$mesghash) = each %$authorhash) { while (my ($msg,$qunk) = each %$mesghash) { foreach my $qunkref2 (@$qunk) { if (defined ($qunkref2->tags)) { foreach my $tag (@{$qunkref2->tags}) { $tags{$tag} = 1; } } } } } # Sort here for determinism to ease testing foreach my $tag (sort keys %tags) { if ( ! defined $tag_date_printed{$tag} ) { $tag_date_printed{$tag} = $time; $self->output_tagdate(\*LOG_OUT, $time, $tag); } } } while (my ($author,$mesghash) = each %$authorhash) { # If XML, escape in outer loop to avoid compound quoting: $author = $self->escape($author); FOOBIE: # We sort here to enable predictable ordering for the testing porpoises for my $msg (sort keys %$mesghash) { my $qunklist = $mesghash->{$msg}; my @qunklist = grep $self->_revision_is_wanted($_), @$qunklist; next FOOBIE unless @qunklist; my $files = $self->pretty_file_list(\@qunklist); my $header_line; # date and author my $wholething; # $header_line + $body my $date = $self->fdatetime($time); $header_line = $self->header_line($time, $author, $lastdate); $lastdate = $date; $Text::Wrap::huge = 'overflow' if $Text::Wrap::VERSION >= 2001.0130; # Reshape the body according to user preferences. my $body = $self->format_body($msg, $files, \@qunklist); $body =~ s/[ \t]+\n/\n/g; $wholething = $header_line . $body; # One last check: make sure it passes the regexp test, if the # user asked for that. We have to do it here, so that the # test can match against information in the header as well # as in the text of the log message. # How annoying to duplicate so much code just because I # can't figure out a way to evaluate scalars on the trailing # operator portion of a regular expression. Grrr. if ($Case_Insensitive) { unless ( $Regexp_Gate and ( $wholething !~ /$Regexp_Gate/oi ) ) { $self->output_entry(\*LOG_OUT, $wholething); } } else { unless ( $Regexp_Gate and ( $wholething !~ /$Regexp_Gate/o ) ) { $self->output_entry(\*LOG_OUT, $wholething); } } } } } $self->output_footer(\*LOG_OUT); close (LOG_OUT); if ( ! $Output_To_Stdout ) { # If accumulating, append old data to new before renaming. But # don't append the most recent entry, since it's already in the # new log due to CVS's idiosyncratic interpretation of "log -d". if ($Cumulative && -f $logfile_here) { open NEW_LOG, ">>$tmpfile" or die "trouble appending to $tmpfile ($!)"; open OLD_LOG, "<$logfile_here" or die "trouble reading from $logfile_here ($!)"; my $started_first_entry = 0; my $passed_first_entry = 0; while () { if ( ! $passed_first_entry ) { if ( ( ! $started_first_entry ) and /^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/ ) { $started_first_entry = 1; } elsif ( /^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/ ) { $passed_first_entry = 1; print NEW_LOG $_; } } else { print NEW_LOG $_; } } close NEW_LOG; close OLD_LOG; } if ( -f $logfile_here ) { rename $logfile_here, $logfile_bak; } rename $tmpfile, $logfile_here; } } } # ------------------------------------- # Don't call this wrap, because with 5.5.3, that clashes with the # (unconditional :-( ) export of wrap() from Text::Wrap sub mywrap { my $self = shift; my ($indent1, $indent2, @text) = @_; # If incoming text looks preformatted, don't get clever my $text = Text::Wrap::wrap($indent1, $indent2, @text); if ( grep /^\s+/m, @text ) { return $text; } my @lines = split /\n/, $text; $indent2 =~ s!^((?: {8})+)!"\t" x (length($1)/8)!e; $lines[0] =~ s/^$indent1\s+/$indent1/; s/^$indent2\s+/$indent2/ for @lines[1..$#lines]; my $newtext = join "\n", @lines; $newtext .= "\n" if substr($text, -1) eq "\n"; return $newtext; } # ------------------------------------- sub preprocess_msg_text { my $self = shift; my ($text) = @_; # Strip out carriage returns (as they probably result from DOSsy editors). $text =~ s/\r\n/\n/g; # If it *looks* like two newlines, make it *be* two newlines: $text =~ s/\n\s*\n/\n\n/g; return $text; } # ------------------------------------- sub last_line_len { my $self = shift; my $files_list = shift; my @lines = split (/\n/, $files_list); my $last_line = pop (@lines); return length ($last_line); } # ------------------------------------- # A custom wrap function, sensitive to some common constructs used in # log entries. sub wrap_log_entry { my $self = shift; my $text = shift; # The text to wrap. my $left_pad_str = shift; # String to pad with on the left. # These do NOT take left_pad_str into account: my $length_remaining = shift; # Amount left on current line. my $max_line_length = shift; # Amount left for a blank line. my $wrapped_text = ''; # The accumulating wrapped entry. my $user_indent = ''; # Inherited user_indent from prev line. my $first_time = 1; # First iteration of the loop? my $suppress_line_start_match = 0; # Set to disable line start checks. my @lines = split (/\n/, $text); while (@lines) # Don't use `foreach' here, it won't work. { my $this_line = shift (@lines); chomp $this_line; if ($this_line =~ /^(\s+)/) { $user_indent = $1; } else { $user_indent = ''; } # If it matches any of the line-start regexps, print a newline now... if ($suppress_line_start_match) { $suppress_line_start_match = 0; } elsif (($this_line =~ /^(\s*)\*\s+[a-zA-Z0-9]/) || ($this_line =~ /^(\s*)\* [a-zA-Z0-9_\.\/\+-]+/) || ($this_line =~ /^(\s*)\([a-zA-Z0-9_\.\/\+-]+(\)|,\s*)/) || ($this_line =~ /^(\s+)(\S+)/) || ($this_line =~ /^(\s*)- +/) || ($this_line =~ /^()\s*$/) || ($this_line =~ /^(\s*)\*\) +/) || ($this_line =~ /^(\s*)[a-zA-Z0-9](\)|\.|\:) +/)) { # Make a line break immediately, unless header separator is set # and this line is the first line in the entry, in which case # we're getting the blank line for free already and shouldn't # add an extra one. unless (($After_Header ne " ") and ($first_time)) { if ($this_line =~ /^()\s*$/) { $suppress_line_start_match = 1; $wrapped_text .= "\n${left_pad_str}"; } $wrapped_text .= "\n${left_pad_str}"; } $length_remaining = $max_line_length - (length ($user_indent)); } # Now that any user_indent has been preserved, strip off leading # whitespace, so up-folding has no ugly side-effects. $this_line =~ s/^\s*//; # Accumulate the line, and adjust parameters for next line. my $this_len = length ($this_line); if ($this_len == 0) { # Blank lines should cancel any user_indent level. $user_indent = ''; $length_remaining = $max_line_length; } elsif ($this_len >= $length_remaining) # Line too long, try breaking it. { # Walk backwards from the end. At first acceptable spot, break # a new line. my $idx = $length_remaining - 1; if ($idx < 0) { $idx = 0 }; while ($idx > 0) { if (substr ($this_line, $idx, 1) =~ /\s/) { my $line_now = substr ($this_line, 0, $idx); my $next_line = substr ($this_line, $idx); $this_line = $line_now; # Clean whitespace off the end. chomp $this_line; # The current line is ready to be printed. $this_line .= "\n${left_pad_str}"; # Make sure the next line is allowed full room. $length_remaining = $max_line_length - (length ($user_indent)); # Strip next_line, but then preserve any user_indent. $next_line =~ s/^\s*//; # Sneak a peek at the user_indent of the upcoming line, so # $next_line (which will now precede it) can inherit that # indent level. Otherwise, use whatever user_indent level # we currently have, which might be none. my $next_next_line = shift (@lines); if ((defined ($next_next_line)) && ($next_next_line =~ /^(\s+)/)) { $next_line = $1 . $next_line if (defined ($1)); # $length_remaining = $max_line_length - (length ($1)); $next_next_line =~ s/^\s*//; } else { $next_line = $user_indent . $next_line; } if (defined ($next_next_line)) { unshift (@lines, $next_next_line); } unshift (@lines, $next_line); # Our new next line might, coincidentally, begin with one of # the line-start regexps, so we temporarily turn off # sensitivity to that until we're past the line. $suppress_line_start_match = 1; last; } else { $idx--; } } if ($idx == 0) { # We bottomed out because the line is longer than the # available space. But that could be because the space is # small, or because the line is longer than even the maximum # possible space. Handle both cases below. if ($length_remaining == ($max_line_length - (length ($user_indent)))) { # The line is simply too long -- there is no hope of ever # breaking it nicely, so just insert it verbatim, with # appropriate padding. $this_line = "\n${left_pad_str}${this_line}"; } else { # Can't break it here, but may be able to on the next round... unshift (@lines, $this_line); $length_remaining = $max_line_length - (length ($user_indent)); $this_line = "\n${left_pad_str}"; } } } else # $this_len < $length_remaining, so tack on what we can. { # Leave a note for the next iteration. $length_remaining = $length_remaining - $this_len; if ($this_line =~ /\.$/) { $this_line .= " "; $length_remaining -= 2; } else # not a sentence end { $this_line .= " "; $length_remaining -= 1; } } # Unconditionally indicate that loop has run at least once. $first_time = 0; $wrapped_text .= "${user_indent}${this_line}"; } # One last bit of padding. $wrapped_text .= "\n"; return $wrapped_text; } # ------------------------------------- sub _pretty_file_list { my $self = shift; my ($unanimous_tags, $non_unanimous_tags, $all_branches, $qunksref) = @_; my @qunkrefs = grep +( ( ! $_->tags_exists or ! grep exists $ignore_tags{$_}, @{$_->tags}) and ( ! keys %show_tags or ( $_->tags_exists and grep exists $show_tags{$_}, @{$_->tags} ) ) ), @$qunksref; my $common_dir; # Dir prefix common to all files ('' if none) # First, loop over the qunks gathering all the tag/branch names. # We'll put them all in non_unanimous_tags, and take out the # unanimous ones later. QUNKREF: foreach my $qunkref (@qunkrefs) { # Keep track of whether all the files in this commit were in the # same directory, and memorize it if so. We can make the output a # little more compact by mentioning the directory only once. if ($Common_Dir && (scalar (@qunkrefs)) > 1) { if (! (defined ($common_dir))) { my ($base, $dir); ($base, $dir, undef) = fileparse ($qunkref->filename); if ((! (defined ($dir))) # this first case is sheer paranoia or ($dir eq '') or ($dir eq "./") or ($dir eq ".\\")) { $common_dir = ''; } else { $common_dir = $dir; } } elsif ($common_dir ne '') { # Already have a common dir prefix, so how much of it can we preserve? $common_dir = &main::common_path_prefix ($qunkref->filename, $common_dir); } } else # only one file in this entry anyway, so common dir not an issue { $common_dir = ''; } if (defined ($qunkref->branch)) { $all_branches->{$qunkref->branch} = 1; } if (defined ($qunkref->tags)) { foreach my $tag (@{$qunkref->tags}) { $non_unanimous_tags->{$tag} = 1; } } } # Any tag held by all qunks will be printed specially... but only if # there are multiple qunks in the first place! if ((scalar (@qunkrefs)) > 1) { foreach my $tag (keys (%$non_unanimous_tags)) { my $everyone_has_this_tag = 1; foreach my $qunkref (@qunkrefs) { if ((! (defined ($qunkref->tags))) or (! (grep ($_ eq $tag, @{$qunkref->tags})))) { $everyone_has_this_tag = 0; } } if ($everyone_has_this_tag) { $unanimous_tags->{$tag} = 1; delete $non_unanimous_tags->{$tag}; } } } return $common_dir, \@qunkrefs; } # ------------------------------------- sub fdatetime { my $self = shift; my ($year, $mday, $mon, $wday, $hour, $min); if ( @_ > 1 ) { ($year, $mday, $mon, $wday, $hour, $min) = @_; } else { my ($time) = @_; (undef, $min, $hour, $mday, $mon, $year, $wday) = $UTC_Times ? gmtime($time) : localtime($time); $year += 1900; $mon += 1; $wday = $self->wday($wday); } my $fdate = $self->fdate($year, $mon, $mday, $wday); if ($Show_Times) { my $ftime = $self->ftime($hour, $min); return "$fdate $ftime"; } else { return $fdate; } } # ------------------------------------- sub fdate { my $self = shift; my ($year, $mday, $mon, $wday); if ( @_ > 1 ) { ($year, $mon, $mday, $wday) = @_; } else { my ($time) = @_; (undef, undef, undef, $mday, $mon, $year, $wday) = $UTC_Times ? gmtime($time) : localtime($time); $year += 1900; $mon += 1; $wday = $self->wday($wday); } return sprintf '%4u-%02u-%02u%s', $year, $mon, $mday, $wday; } # ------------------------------------- sub ftime { my $self = shift; my ($hour, $min); if ( @_ > 1 ) { ($hour, $min) = @_; } else { my ($time) = @_; (undef, $min, $hour) = $UTC_Times ? gmtime($time) : localtime($time); } return sprintf '%02u:%02u', $hour, $min; } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::Message; sub new { my $class = shift; my ($msg) = @_; my %self = (msg => $msg, files => []); bless \%self, $class; } sub add_fileentry { my $self = shift; my ($fileentry) = @_; die "Not a fileentry: $fileentry" unless $fileentry->isa('CVS::Utils::ChangeLog::FileEntry'); push @{$self->{files}}, $fileentry; } sub files { wantarray ? @{$_[0]->{files}} : $_[0]->{files} } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::FileEntry; # Each revision of a file has a little data structure (a `qunk') # associated with it. That data structure holds not only the # file's name, but any additional information about the file # that might be needed in the output, such as the revision # number, tags, branches, etc. The reason to have these things # arranged in a data structure, instead of just appending them # textually to the file's name, is that we may want to do a # little rearranging later as we write the output. For example, # all the files on a given tag/branch will go together, followed # by the tag in parentheses (so trunk or otherwise non-tagged # files would go at the end of the file list for a given log # message). This rearrangement is a lot easier to do if we # don't have to reparse the text. # # A qunk looks like this: # # { # filename => "hello.c", # revision => "1.4.3.2", # time => a timegm() return value (moment of commit) # tags => [ "tag1", "tag2", ... ], # branch => "branchname" # There should be only one, right? # roots => [ "branchtag1", "branchtag2", ... ] # lines => "+x -y" # or undefined; x and y are integers # } # Single top-level ChangeLog, or one per subdirectory? my $distributed; sub distributed { $#_ ? ($distributed = $_[1]) : $distributed; } sub new { my $class = shift; my ($path, $time, $revision, $state, $lines, $branch_names, $branch_roots, $branch_numbers, $symbolic_names) = @_; my %self = (time => $time, revision => $revision, state => $state, lines => $lines, branch_numbers => $branch_numbers, ); if ( $distributed ) { @self{qw(filename dir_key)} = fileparse($path); } else { @self{qw(filename dir_key)} = ($path, './'); } { # Scope for $branch_prefix (my ($branch_prefix) = ($revision =~ /((?:\d+\.)+)\d+/)); $branch_prefix =~ s/\.$//; if ( $branch_names->{$branch_prefix} ) { my $branch_name = $branch_names->{$branch_prefix}; $self{branch} = $branch_name; $self{branches} = [$branch_name]; } while ( $branch_prefix =~ s/^(\d+(?:\.\d+\.\d+)+)\.\d+\.\d+$/$1/ ) { push @{$self{branches}}, $branch_names->{$branch_prefix} if exists $branch_names->{$branch_prefix}; } } # If there's anything in the @branch_roots array, then this # revision is the root of at least one branch. We'll display # them as branch names instead of revision numbers, the # substitution for which is done directly in the array: $self{'roots'} = [ map { $branch_names->{$_} } @$branch_roots ] if @$branch_roots; if ( exists $symbolic_names->{$revision} ) { $self{tags} = delete $symbolic_names->{$revision}; &main::delta_check($time, $self{tags}); } bless \%self, $class; } sub filename { $_[0]->{filename} } sub dir_key { $_[0]->{dir_key} } sub revision { $_[0]->{revision} } sub branch { $_[0]->{branch} } sub state { $_[0]->{state} } sub lines { $_[0]->{lines} } sub roots { $_[0]->{roots} } sub branch_numbers { $_[0]->{branch_numbers} } sub tags { $_[0]->{tags} } sub tags_exists { exists $_[0]->{tags}; } # This may someday be used in a more sophisticated calculation of what other # files are involved in this commit. For now, we don't use it much except for # delta mode, because the common-commit-detection algorithm is hypothesized to # be "good enough" as it stands. sub time { $_[0]->{time} } # ---------------------------------------------------------------------------- package CVS::Utils::ChangeLog::EntrySetBuilder; use File::Basename qw( fileparse ); use Time::Local qw( timegm ); use constant MAILNAME => "/etc/mailname"; # In 'cvs log' output, one long unbroken line of equal signs separates files: use constant FILE_SEPARATOR => '=' x 77;# . "\n"; # In 'cvs log' output, a shorter line of dashes separates log messages within # a file: use constant REV_SEPARATOR => '-' x 28;# . "\n"; use constant EMPTY_LOG_MESSAGE => '*** empty log message ***'; # ------------------------------------- sub new { my ($proto) = @_; my $class = ref $proto || $proto; my $poobah = CVS::Utils::ChangeLog::EntrySet->new; my $self = bless +{ grand_poobah => $poobah }, $class; $self->clear_file; $self->maybe_read_user_map_file; return $self; } # ------------------------------------- sub clear_msg { my ($self) = @_; # Make way for the next message undef $self->{rev_msg}; undef $self->{rev_time}; undef $self->{rev_revision}; undef $self->{rev_author}; undef $self->{rev_state}; undef $self->{lines}; $self->{rev_branch_roots} = []; # For showing which files are branch # ancestors. $self->{collecting_symbolic_names} = 0; } # ------------------------------------- sub clear_file { my ($self) = @_; $self->clear_msg; undef $self->{filename}; $self->{branch_names} = +{}; # We'll grab branch names while we're # at it. $self->{branch_numbers} = +{}; # Save some revisions for # @Follow_Branches $self->{symbolic_names} = +{}; # Where tag names get stored. } # ------------------------------------- sub grand_poobah { $_[0]->{grand_poobah} } # ------------------------------------- sub read_changelog { my ($self, $command) = @_; # my $grand_poobah = CVS::Utils::ChangeLog::EntrySet->new; if (! $Input_From_Stdin) { my $Log_Source_Command = join(' ', @$command); &main::debug ("(run \"${Log_Source_Command}\")\n"); open (LOG_SOURCE, "$Log_Source_Command |") or die "unable to run \"${Log_Source_Command}\""; } else { open (LOG_SOURCE, "-") or die "unable to open stdin for reading"; } binmode LOG_SOURCE; XX_Log_Source: while () { chomp; # If on a new file and don't see filename, skip until we find it, and # when we find it, grab it. if ( ! defined $self->{filename} ) { $self->read_file_path($_); } elsif ( /^symbolic names:$/ ) { $self->{collecting_symbolic_names} = 1; } elsif ( $self->{collecting_symbolic_names} ) { $self->read_symbolic_name($_); } elsif ( $_ eq FILE_SEPARATOR and ! defined $self->{rev_revision} ) { $self->clear_file; } elsif ( ! defined $self->{rev_revision} ) { # If have file name, but not revision, and see revision, then grab # it. (We collect unconditionally, even though we may or may not # ever use it.) $self->read_revision($_); } elsif ( ! defined $self->{rev_time} ) { # and /^date: /) { $self->read_date_author_and_state($_); } elsif ( /^branches:\s+(.*);$/ ) { $self->read_branches($1); } elsif ( ! ( $_ eq FILE_SEPARATOR or $_ eq REV_SEPARATOR ) ) { # If have file name, time, and author, then we're just grabbing # log message texts: $self->{rev_msg} .= $_ . "\n"; # Normally, just accumulate the message... } else { if ( ! $self->{rev_msg} or $self->{rev_msg} =~ /^\s*(\.\s*)?$/ or index($self->{rev_msg}, EMPTY_LOG_MESSAGE) > -1 ) { # ... until a msg separator is encountered: # Ensure the message contains something: $self->clear_msg if $Prune_Empty_Msgs; $self->{rev_msg} = "[no log message]\n"; } $self->add_file_entry; if ( $_ eq FILE_SEPARATOR ) { $self->clear_file; } else { $self->clear_msg; } } } close LOG_SOURCE or die sprintf("Problem reading log input (exit/signal/core: %d/%d/%d)\n", $? >> 8, $? & 127, $? & 128); return; } # ------------------------------------- sub add_file_entry { $_[0]->grand_poobah->add_fileentry(@{$_[0]}{qw(filename rev_time rev_revision rev_state lines branch_names rev_branch_roots branch_numbers symbolic_names rev_author rev_msg)}); } # ------------------------------------- sub maybe_read_user_map_file { my ($self) = @_; my %expansions; my $User_Map_Input; if ($User_Map_File) { if ( $User_Map_File =~ m{^([-\w\@+=.,\/]+):([-\w\@+=.,\/:]+)} and !-f $User_Map_File ) { my $rsh = (exists $ENV{'CVS_RSH'} ? $ENV{'CVS_RSH'} : 'ssh'); $User_Map_Input = "$rsh $1 'cat $2' |"; &main::debug ("(run \"${User_Map_Input}\")\n"); } else { $User_Map_Input = "<$User_Map_File"; } open (MAPFILE, $User_Map_Input) or die ("Unable to open $User_Map_File ($!)"); while () { next if /^\s*#/; # Skip comment lines. next if not /:/; # Skip lines without colons. # It is now safe to split on ':'. my ($username, $expansion) = split ':'; chomp $expansion; $expansion =~ s/^'(.*)'$/$1/; $expansion =~ s/^"(.*)"$/$1/; # If it looks like the expansion has a real name already, then # we toss the username we got from CVS log. Otherwise, keep # it to use in combination with the email address. if ($expansion =~ /^\s*<{0,1}\S+@.*/) { # Also, add angle brackets if none present if (! ($expansion =~ /<\S+@\S+>/)) { $expansions{$username} = "$username <$expansion>"; } else { $expansions{$username} = "$username $expansion"; } } else { $expansions{$username} = $expansion; } } # fi ($User_Map_File) close (MAPFILE); } if (defined $User_Passwd_File) { if ( ! defined $Domain ) { if ( -e MAILNAME ) { chomp($Domain = slurp_file(MAILNAME)); } else { MAILDOMAIN_CMD: for ([qw(hostname -d)], 'dnsdomainname', 'domainname') { my ($text, $exit, $sig, $core) = run_ext($_); if ( $exit == 0 && $sig == 0 && $core == 0 ) { chomp $text; if ( length $text ) { $Domain = $text; last MAILDOMAIN_CMD; } } } } } die "No mail domain found\n" unless defined $Domain; open (MAPFILE, "<$User_Passwd_File") or die ("Unable to open $User_Passwd_File ($!)"); while () { # all lines are valid my ($username, $pw, $uid, $gid, $gecos, $homedir, $shell) = split ':'; my $expansion = ''; ($expansion) = split (',', $gecos) if defined $gecos && length $gecos; my $mailname = $Domain eq '' ? $username : "$username\@$Domain"; $expansions{$username} = "$expansion <$mailname>"; } close (MAPFILE); } $self->{usermap} = \%expansions; } # ------------------------------------- sub read_file_path { my ($self, $line) = @_; my $path; if ( $line =~ /^Working file: (.*)/ ) { $path = $1; } elsif ( defined $RCS_Root and $line =~ m|^RCS file: $RCS_Root[/\\](.*),v$| ) { $path = $1; $path =~ s!Attic/!!; } else { return; } if ( @Ignore_Files ) { my $base; ($base, undef, undef) = fileparse($path); my $xpath = $Case_Insensitive ? lc($path) : $path; if ( grep index($path, $_) > -1, @Ignore_Files ) { return; } } $self->{filename} = $path; return; } # ------------------------------------- sub read_symbolic_name { my ($self, $line) = @_; # All tag names are listed with whitespace in front in cvs log # output; so if see non-whitespace, then we're done collecting. if ( /^\S/ ) { $self->{collecting_symbolic_names} = 0; return; } else { # we're looking at a tag name, so parse & store it # According to the Cederqvist manual, in node "Tags", tag names must start # with an uppercase or lowercase letter and can contain uppercase and # lowercase letters, digits, `-', and `_'. However, it's not our place to # enforce that, so we'll allow anything CVS hands us to be a tag: my ($tag_name, $tag_rev) = ($line =~ /^\s+([^:]+): ([\d.]+)$/); # A branch number either has an odd number of digit sections # (and hence an even number of dots), or has ".0." as the # second-to-last digit section. Test for these conditions. my $real_branch_rev = ''; if ( $tag_rev =~ /^(\d+\.\d+\.)+\d+$/ # Even number of dots... and $tag_rev !~ /^(1\.)+1$/ ) { # ...but not "1.[1.]1" $real_branch_rev = $tag_rev; } elsif ($tag_rev =~ /(\d+\.(\d+\.)+)0.(\d+)/) { # Has ".0." $real_branch_rev = $1 . $3; } # If we got a branch, record its number. if ( $real_branch_rev ) { $self->{branch_names}->{$real_branch_rev} = $tag_name; $self->{branch_numbers}->{$tag_name} = $real_branch_rev; } else { # Else it's just a regular (non-branch) tag. push @{$self->{symbolic_names}->{$tag_rev}}, $tag_name; } } $self->{collecting_symbolic_names} = 1; return; } # ------------------------------------- sub read_revision { my ($self, $line) = @_; my ($revision) = ( $line =~ /^revision (\d+\.[\d.]+)/ ); return unless $revision; $self->{rev_revision} = $revision; return; } # ------------------------------------- { # Closure over %gecos_warned my %gecos_warned; sub read_date_author_and_state { my ($self, $line) = @_; my ($time, $author, $state) = $self->parse_date_author_and_state($line); if ( defined($self->{usermap}->{$author}) and $self->{usermap}->{$author} ) { $author = $self->{usermap}->{$author}; } elsif ( defined $Domain or $Gecos == 1 ) { my $email = $author; $email = $author."@".$Domain if defined $Domain && $Domain ne ''; my $pw = getpwnam($author); my ($fullname, $office, $workphone, $homephone); if ( defined $pw ) { ($fullname, $office, $workphone, $homephone) = split /\s*,\s*/, $pw->gecos; } else { warn "Couldn't find gecos info for author '$author'\n" unless $gecos_warned{$author}++; $fullname = ''; } for (grep defined, $fullname, $office, $workphone, $homephone) { s/&/ucfirst(lc($pw->name))/ge; } $author = $fullname . " <" . $email . ">" if $fullname ne ''; } $self->{rev_state} = $state; $self->{rev_time} = $time; $self->{rev_author} = $author; return; } } # ------------------------------------- sub read_branches { # A "branches: ..." line here indicates that one or more branches # are rooted at this revision. If we're showing branches, then we # want to show that fact as well, so we collect all the branches # that this is the latest ancestor of and store them in # $self->[rev_branch_roots}. Just for reference, the format of the # line we're seeing at this point is: # # branches: 1.5.2; 1.5.4; ...; # # Okay, here goes: my ($self, $line) = @_; # Ugh. This really bothers me. Suppose we see a log entry # like this: # # ---------------------------- # revision 1.1 # date: 1999/10/17 03:07:38; author: jrandom; state: Exp; # branches: 1.1.2; # Intended first line of log message begins here. # ---------------------------- # # The question is, how we can tell the difference between that # log message and a *two*-line log message whose first line is # # "branches: 1.1.2;" # # See the problem? The output of "cvs log" is inherently # ambiguous. # # For now, we punt: we liberally assume that people don't # write log messages like that, and just toss a "branches:" # line if we see it but are not showing branches. I hope no # one ever loses real log data because of this. if ( $Show_Branches ) { $line =~ s/(1\.)+1;|(1\.)+1$//; # ignore the trivial branch 1.1.1 $self->{rev_branch_roots} = [split /;\s+/, $line] if length $line; } } # ------------------------------------- sub parse_date_author_and_state { my ($self, $line) = @_; # Parses the date/time and author out of a line like: # # date: 1999/02/19 23:29:05; author: apharris; state: Exp; my ($year, $mon, $mday, $hours, $min, $secs, $author, $state, $rest) = $line =~ m!(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+ author:\s+([^;]+);\s+state:\s+([^;]+);(.*)!x or die "Couldn't parse date ``$line''"; die "Bad date or Y2K issues" unless $year > 1969 and $year < 2258; # Kinda arbitrary, but useful as a sanity check my $time = timegm($secs, $min, $hours, $mday, $mon-1, $year-1900); if ( $rest =~ m!\s+lines:\s+(.*)! ) { $self->{lines} = $1; } return $time, $author, $state; } # Subrs ---------------------------------------------------------------------- package main; sub delta_check { my ($time, $tags) = @_; # If we're in 'delta' mode, update the latest observed times for the # beginning and ending tags, and when we get around to printing output, we # will simply restrict ourselves to that timeframe... return unless $Delta_Mode; $Delta_StartTime = $time if $time > $Delta_StartTime and grep { $_ eq $Delta_From } @$tags; $Delta_EndTime = $time if $time > $Delta_EndTime and grep { $_ eq $Delta_To } @$tags; } sub run_ext { my ($cmd) = @_; $cmd = [$cmd] unless ref $cmd; local $" = ' '; my $out = qx"@$cmd 2>&1"; my $rv = $?; my ($sig, $core, $exit) = ($? & 127, $? & 128, $? >> 8); return $out, $exit, $sig, $core; } # ------------------------------------- # If accumulating, grab the boundary date from pre-existing ChangeLog. sub maybe_grab_accumulation_date { if (! $Cumulative || $Update) { return ''; } # else open (LOG, "$Log_File_Name") or die ("trouble opening $Log_File_Name for reading ($!)"); my $boundary_date; while () { if (/^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/) { $boundary_date = "$1"; last; } } close (LOG); # convert time from utc to local timezone if the ChangeLog has # dates/times in utc if ($UTC_Times && $boundary_date) { # convert the utc time to a time value my ($year,$mon,$mday,$hour,$min) = $boundary_date =~ m#(\d+)-(\d+)-(\d+)\s+(\d+):(\d+)#; my $time = timegm(0,$min,$hour,$mday,$mon-1,$year-1900); # print the timevalue in the local timezone my ($ignore,$wday); ($ignore,$min,$hour,$mday,$mon,$year,$wday) = localtime($time); $boundary_date=sprintf ("%4u-%02u-%02u %02u:%02u", $year+1900,$mon+1,$mday,$hour,$min); } return $boundary_date; } # ------------------------------------- # Fills up a ChangeLog structure in the current directory. sub derive_changelog { my ($command) = @_; # See "The Plan" above for a full explanation. # Might be adding to an existing ChangeLog my $accumulation_date = maybe_grab_accumulation_date; if ($accumulation_date) { # Insert -d immediately after 'cvs log' my $Log_Date_Command = "-d\'>${accumulation_date}\'"; my ($log_index) = grep $command->[$_] eq 'log', 0..$#$command; splice @$command, $log_index+1, 0, $Log_Date_Command; &debug ("(adding log msg starting from $accumulation_date)\n"); } # output_changelog(read_changelog($command)); my $builder = CVS::Utils::ChangeLog::EntrySetBuilder->new; $builder->read_changelog($command); $builder->grand_poobah->output_changelog; } # ------------------------------------- sub min { $_[0] < $_[1] ? $_[0] : $_[1] } # ------------------------------------- sub common_path_prefix { my ($path1, $path2) = @_; # For compatibility (with older versions of cvs2cl.pl), we think in UN*X # terms, and mould windoze filenames to match. Is this really appropriate? # If a file is checked in under UN*X, and cvs log run on windoze, which way # do the path separators slope? Can we use fileparse as per the local # conventions? If so, we should probably have a user option to specify an # OS to emulate to handle stdin-fed logs. If we did this, we could avoid # the nasty \-/ transmogrification below. my ($dir1, $dir2) = map +(fileparse($_))[1], $path1, $path2; # Transmogrify Windows filenames to look like Unix. # (It is far more likely that someone is running cvs2cl.pl under # Windows than that they would genuinely have backslashes in their # filenames.) tr!\\!/! for $dir1, $dir2; my ($accum1, $accum2, $last_common_prefix) = ('') x 3; my @path1 = grep length($_), split qr!/!, $dir1; my @path2 = grep length($_), split qr!/!, $dir2; my @common_path; for (0..min($#path1,$#path2)) { if ( $path1[$_] eq $path2[$_]) { push @common_path, $path1[$_]; } else { last; } } return join '', map "$_/", @common_path; } # ------------------------------------- sub parse_options { # Check this internally before setting the global variable. my $output_file; # If this gets set, we encountered unknown options and will exit at # the end of this subroutine. my $exit_with_admonishment = 0; # command to generate the log my @log_source_command = qw( cvs log ); my (@Global_Opts, @Local_Opts); Getopt::Long::Configure(qw( bundling permute no_getopt_compat pass_through no_ignore_case )); GetOptions('help|usage|h' => \$Print_Usage, 'debug' => \$Debug, # unadvertised option, heh 'version' => \$Print_Version, 'file|f=s' => \$output_file, 'accum' => \$Cumulative, 'update' => \$Update, 'fsf' => \$FSF_Style, 'rcs=s' => \$RCS_Root, 'usermap|U=s' => \$User_Map_File, 'gecos' => \$Gecos, 'domain=s' => \$Domain, 'passwd=s' => \$User_Passwd_File, 'window|W=i' => \$Max_Checkin_Duration, 'chrono' => \$Chronological_Order, 'ignore|I=s' => \@Ignore_Files, 'case-insensitive|C' => \$Case_Insensitive, 'regexp|R=s' => \$Regexp_Gate, 'stdin' => \$Input_From_Stdin, 'stdout' => \$Output_To_Stdout, 'distributed|d' => sub { CVS::Utils::ChangeLog::FileEntry->distributed(1) }, 'prune|P' => \$Prune_Empty_Msgs, 'no-wrap' => \$No_Wrap, 'gmt|utc' => \$UTC_Times, 'day-of-week|w' => \$Show_Day_Of_Week, 'revisions|r' => \$Show_Revisions, 'show-dead' => \$Show_Dead, 'tags|t' => \$Show_Tags, 'tagdates|T' => \$Show_Tag_Dates, 'branches|b' => \$Show_Branches, 'follow|F=s' => \@Follow_Branches, 'follow-only=s' => \@Follow_Only, 'xml-encoding=s' => \$XML_Encoding, 'xml' => \$XML_Output, 'noxmlns' => \$No_XML_Namespace, 'no-xml-iso-date' => \$No_XML_ISO_Date, 'no-ancestors' => \$No_Ancestors, 'lines-modified' => \$Show_Lines_Modified, 'no-indent' => sub { $Indent = ''; }, 'summary' => sub { $Summary = 1; $After_Header = "\n\n"; # Summary implies --separate-header }, 'no-times' => sub { $Show_Times = 0; }, 'no-hide-branch-additions' => sub { $Hide_Branch_Additions = 0; }, 'no-common-dir' => sub { $Common_Dir = 0; }, 'ignore-tag=s' => sub { $ignore_tags{$_[1]} = 1; }, 'show-tag=s' => sub { $show_tags{$_[1]} = 1; }, # Deliberately undocumented. This is not a public interface, and # may change/disappear at any time. 'test-code=s' => \$TestCode, 'delta=s' => sub { my $arg = $_[1]; if ( $arg =~ /^([A-Za-z][A-Za-z0-9_\-\]\[]*):([A-Za-z][A-Za-z0-9_\-\]\[]*)$/ ) { $Delta_From = $1; $Delta_To = $2; $Delta_Mode = 1; } else { die "--delta FROM_TAG:TO_TAG is what you meant to say.\n"; } }, 'FSF' => sub { $Show_Times = 0; $Common_Dir = 0; $No_Extra_Indent = 1; $Indent = "\t"; }, 'header=s' => sub { my $narg = $_[1]; $ChangeLog_Header = &slurp_file ($narg); if (! defined ($ChangeLog_Header)) { $ChangeLog_Header = ''; } }, 'global-opts|g=s' => sub { my $narg = $_[1]; push @Global_Opts, $narg; splice @log_source_command, 1, 0, $narg; }, 'log-opts|l=s' => sub { my $narg = $_[1]; push @Local_Opts, $narg; push @log_source_command, $narg; }, 'mailname=s' => sub { my $narg = $_[1]; warn "--mailname is deprecated; please use --domain instead\n"; $Domain = $narg; }, 'separate-header|S' => sub { $After_Header = "\n\n"; $No_Extra_Indent = 1; }, 'group-within-date' => sub { $GroupWithinDate = 1; $Show_Times = 0; }, 'hide-filenames' => sub { $Hide_Filenames = 1; $After_Header = ''; }, ) or die "options parsing failed\n"; push @log_source_command, map "'$_'", @ARGV; ## Check for contradictions... if ($Output_To_Stdout && CVS::Utils::ChangeLog::FileEntry->distributed) { print STDERR "cannot pass both --stdout and --distributed\n"; $exit_with_admonishment = 1; } if ($Output_To_Stdout && $output_file) { print STDERR "cannot pass both --stdout and --file\n"; $exit_with_admonishment = 1; } if ($Input_From_Stdin && @Global_Opts) { print STDERR "cannot pass both --stdin and -g\n"; $exit_with_admonishment = 1; } if ($Input_From_Stdin && @Local_Opts) { print STDERR "cannot pass both --stdin and -l\n"; $exit_with_admonishment = 1; } if ($XML_Output && $Cumulative) { print STDERR "cannot pass both --xml and --accum\n"; $exit_with_admonishment = 1; } # Other consistency checks and option-driven logic # Bleargh. Compensate for a deficiency of custom wrapping. if ( ($After_Header ne " ") and $FSF_Style ) { $After_Header .= "\t"; } @Ignore_Files = map lc, @Ignore_Files if $Case_Insensitive; # Or if any other error message has already been printed out, we # just leave now: if ($exit_with_admonishment) { &usage (); exit (1); } elsif ($Print_Usage) { &usage (); exit (0); } elsif ($Print_Version) { &version (); exit (0); } ## Else no problems, so proceed. if ($output_file) { $Log_File_Name = $output_file; } return \@log_source_command; } # ------------------------------------- sub slurp_file { my $filename = shift || die ("no filename passed to slurp_file()"); my $retstr; open (SLURPEE, "<${filename}") or die ("unable to open $filename ($!)"); local $/ = undef; $retstr = ; close (SLURPEE); return $retstr; } # ------------------------------------- sub debug { if ($Debug) { my $msg = shift; print STDERR $msg; } } # ------------------------------------- sub version { print "cvs2cl.pl version ${VERSION}; distributed under the GNU GPL.\n"; } # ------------------------------------- sub usage { &version (); eval "use Pod::Usage qw( pod2usage )"; if ( $@ ) { print <<'END'; * Pod::Usage was not found. The formatting may be suboptimal. Consider upgrading your Perl --- Pod::Usage is standard from 5.6 onwards, and versions of perl prior to 5.6 are getting rather rusty, now. Alternatively, install Pod::Usage direct from CPAN. END local $/ = undef; my $message = ; $message =~ s/^=(head1|item) //gm; $message =~ s/^=(over|back).*\n//gm; $message =~ s/\n{3,}/\n\n/g; print $message; } else { print "\n"; pod2usage( -exitval => 'NOEXIT', -verbose => 1, -output => \*STDOUT, ); } return; } # Main ----------------------------------------------------------------------- my $log_source_command = parse_options; if ( defined $TestCode ) { eval $TestCode; die "Eval failed: '$@'\n" if $@; } else { derive_changelog($log_source_command); } __DATA__ =head1 NAME cvs2cl.pl - convert cvs log messages to changelogs =head1 SYNOPSIS B [I] [I [I ...]] =head1 DESCRIPTION cvs2cl produces a GNU-style ChangeLog for CVS-controlled sources by running "cvs log" and parsing the output. Duplicate log messages get unified in the Right Way. The default output of cvs2cl is designed to be compact, formally unambiguous, but still easy for humans to read. It should be largely self-explanatory; the one abbreviation that might not be obvious is "utags". That stands for "universal tags" -- a universal tag is one held by all the files in a given change entry. If you need output that's easy for a program to parse, use the B<--xml> option. Note that with XML output, just about all available information is included with each change entry, whether you asked for it or not, on the theory that your parser can ignore anything it's not looking for. If filenames are given as arguments cvs2cl only shows log information for the named files. =head1 OPTIONS =over 4 =item B<-h>, B<-help>, B<--help>, B<-?> Show a short help and exit. =item B<--version> Show version and exit. =item B<-r>, B<--revisions> Show revision numbers in output. =item B<-b>, B<--branches> Show branch names in revisions when possible. =item B<-t>, B<--tags> Show tags (symbolic names) in output. =item B<-T>, B<--tagdates> Show tags in output on their first occurance. =item B<--show-dead> Show dead files. =item B<--stdin> Read from stdin, don't run cvs log. =item B<--stdout> Output to stdout not to ChangeLog. =item B<-d>, B<--distributed> Put ChangeLogs in subdirs. =item B<-f> I, B<--file> I Write to I instead of ChangeLog. =item B<--fsf> Use this if log data is in FSF ChangeLog style. =item B<--FSF> Attempt strict FSF-standard compatible output. =item B<-W> I, B<--window> I Window of time within which log entries unify. =item -B I, B<--usermap> I Expand usernames to email addresses from I. =item B<--passwd> I Use system passwd file for user name expansion. If no mail domain is provided (via B<--domain>), it tries to read one from B, output of B, B, or B. cvs2cl exits with an error if none of those options is successful. Use a domain of '' to prevent the addition of a mail domain. =item B<--domain> I Domain to build email addresses from. =item B<--gecos> Get user information from GECOS data. =item B<-R> I, B<--regexp> I Include only entries that match I. This option may be used multiple times. =item B<-I> I, B<--ignore> I Ignore files whose names match I. This option may be used multiple times. =item B<-C>, B<--case-insensitive> Any regexp matching is done case-insensitively. =item B<-F> I, B<--follow> I Show only revisions on or ancestral to I. =item B<--follow-only> I Like --follow, but sub-branches are not followed. =item B<--no-ancestors> When using B<-F>, only track changes since the I started. =item B<--no-hide-branch-additions> By default, entries generated by cvs for a file added on a branch (a dead 1.1 entry) are not shown. This flag reverses that action. =item B<-S>, B<--separate-header> Blank line between each header and log message. =item B<--summary> Add CVS change summary information. =item B<--no-wrap> Don't auto-wrap log message (recommend B<-S> also). =item B<--no-indent> Don't indent log message =item B<--gmt>, B<--utc> Show times in GMT/UTC instead of local time. =item B<--accum> Add to an existing ChangeLog (incompatible with B<--xml>). =item B<-w>, B<--day-of-week> Show day of week. =item B<--no-times> Don't show times in output. =item B<--chrono> Output log in chronological order (default is reverse chronological order). =item B<--header> I Get ChangeLog header from I ("B<->" means stdin). =item B<--xml> Output XML instead of ChangeLog format. =item B<--xml-encoding> I Insert encoding clause in XML header. =item B<--noxmlns> Don't include xmlns= attribute in root element. =item B<--hide-filenames> Don't show filenames (ignored for XML output). =item B<--no-common-dir> Don't shorten directory names from filenames. =item B<--rcs> I Handle filenames from raw RCS, for instance those produced by "cvs rlog" output, stripping the prefix I. =item B<-P>, B<--prune> Don't show empty log messages. =item B<--lines-modified> Output the number of lines added and the number of lines removed for each checkin (if applicable). At the moment, this only affects the XML output mode. =item B<--ignore-tag> I Ignore individual changes that are associated with a given tag. May be repeated, if so, changes that are associated with any of the given tags are ignored. =item B<--show-tag> I Log only individual changes that are associated with a given tag. May be repeated, if so, changes that are associated with any of the given tags are logged. =item B<--delta> IB<:>I Attempt a delta between two tags (since I up to and including I). The algorithm is a simple date-based one (this is a hard problem) so results are imperfect. =item B<-g> I, B<--global-opts> I Pass I to cvs like in "cvs I log ...". =item B<-l> I, B<--log-opts> I Pass I to cvs log like in "cvs ... log I". =back Notes about the options and arguments: =over 4 =item * The B<-I> and B<-F> options may appear multiple times. =item * To follow trunk revisions, use "B<-F trunk>" ("B<-F TRUNK>" also works). This is okay because no would ever, ever be crazy enough to name a branch "trunk", right? Right. =item * For the B<-U> option, the I should be formatted like CVSROOT/users. That is, each line of I looks like this: jrandom:jrandom@red-bean.com or maybe even like this jrandom:'Jesse Q. Random ' Don't forget to quote the portion after the colon if necessary. =item * Many people want to filter by date. To do so, invoke cvs2cl.pl like this: cvs2cl.pl -l "-d'DATESPEC'" where DATESPEC is any date specification valid for "cvs log -d". (Note that CVS 1.10.7 and below requires there be no space between -d and its argument). =item * Dates/times are interpreted in the local time zone. =item * Remember to quote the argument to `B<-l>' so that your shell doesn't interpret spaces as argument separators. =item * See the 'Common Options' section of the cvs manual ('info cvs' on UNIX-like systems) for more information. =item * Note that the rules for quoting under windows shells are different. =back =head1 EXAMPLES Some examples (working on UNIX shells): # logs after 6th March, 2003 (inclusive) cvs2cl.pl -l "-d'>2003-03-06'" # logs after 4:34PM 6th March, 2003 (inclusive) cvs2cl.pl -l "-d'>2003-03-06 16:34'" # logs between 4:46PM 6th March, 2003 (exclusive) and # 4:34PM 6th March, 2003 (inclusive) cvs2cl.pl -l "-d'2003-03-06 16:46>2003-03-06 16:34'" Some examples (on non-UNIX shells): # Reported to work on windows xp/2000 cvs2cl.pl -l "-d"">2003-10-18;today<""" =head1 AUTHORS =over 4 =item Karl Fogel =item Melissa O'Neill =item Martyn J. Pearce =back Contributions from =over 4 =item Mike Ayers =item Tim Bradshaw =item Richard Broberg =item Nathan Bryant =item Oswald Buddenhagen =item Neil Conway =item Arthur de Jong =item Mark W. Eichin =item Dave Elcock =item Reid Ellis =item Simon Josefsson =item Robin Hugh Johnson =item Terry Kane =item Akos Kiss =item Claus Klein =item Eddie Kohler =item Richard Laager =item Kevin Lilly =item Karl-Heinz Marbaise =item Mitsuaki Masuhara =item Henrik Nordstrom =item Joe Orton =item Peter Palfrader =item Thomas Parmelan =item Johanne Stezenbach =item Joseph Walton =item Ernie Zapata =back =head1 BUGS Please report bugs to C. =head1 PREREQUISITES This script requires C, C, and C. It also seems to require C or higher. =head1 OPERATING SYSTEM COMPATIBILITY Should work on any OS. =head1 SCRIPT CATEGORIES Version_Control/CVS =head1 COPYRIGHT (C) 2001,2002,2003,2004 Martyn J. Pearce , under the GNU GPL. (C) 1999 Karl Fogel , under the GNU GPL. cvs2cl.pl is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. cvs2cl.pl is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You may have received a copy of the GNU General Public License along with cvs2cl.pl; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. =head1 SEE ALSO cvs(1) gerbv-2.7.0/README0000644000175000017500000000706213421555713013400 0ustar carstencarstenGerbv -- a Gerber file viewer Gerbv is part of the gEDA Project ------------------------------------------------------------------------------ -- About Gerbv * Gerbv is a viewer for Gerber RS-274X files, Excellon drill files, and CSV pick-and-place files. (Note: RS-274D files are not supported.) * Gerbv is a native Linux application, and it runs on many common Unix platforms. * Gerbv is free/open-source software. * The core functionality of Gerbv is located in a separate library (libgerbv), allowing developers to include Gerber parsing/editing/exporting/rendering into other programs. * Gerbv is one of the utilities affiliated with the gEDA project, an umbrella organization dedicated to producing free software tools for electronic design. -- Building Gerbv by downloading a release tarball 1. Download source tarballs from http://gerbv.sourceforge.net 2. Expand source by running gzip -dc | tar xf - 3. Change to newly expanded directory 4. Type './configure '. The following (Gerbv) switches are available to configure: * --help: Lists all configure options. * --enable-debug: Program will output lots of debug spew while running. (default = no -> no debug output by default.) * --enable-unit-mm: Set default unit for coordinates in 4 status bar to mm (default = no -> units = inches by default.) * --enable-efence: Link with ElectricFence for malloc debugging (default = no -> efence off by default.) * --disable-update-desktop-database: Update desktop icon database after installation (default = no -> desktop icon installed by default.) 5. Type 'make' 6. Type 'make install'. Please note that if you want to install it in a system directory you have to 'su' first. 7. Test by typing 'gerbv' -- Building Gerbv by downloading from git 1. Pull the source tree: 'git clone ssh://git@geda-project.org:65/gerbv' 2. Recreate all build system files in pulled directory: 'sh autogen.sh' 3. Follow steps 4-7 from "Building Gerbv by downloading a release tarball". 4. Run 'git pull' in the cloned Gerbv directory to get the latest changes -- Supported platforms Gerbv has been built and tested on * Linux (from 2.2) * NetBSD/i386 (1.4.1) * NetBSD/Alpha (1.5.1) * Solaris (5.7 and 5.8) -- Information for developers Gerbv is split into a core functional library and a GUI portion. Developers wishing to incorporate Gerber parsing/editing/exporting/rendering into other programs are welcome to use libgerbv. Complete API documentation for libgerbv is here, as well as many example programs using libgerbv. -- License Gerbv and all associated files is placed under the GNU Public License (GPL) version 2.0. See the toplevel COPYING file for more information. Programs and associated files are: Copyright 2001, 2002 by Stefan Petersen and the respective original authors (which are listed on the respective files) -- Contact information Please submit bug reports to the SourceForge bug tracker: https://sourceforge.net/p/gerbv/bugs/ Please submit feature requests to the SourceForge feature request tracker: https://sourceforge.net/p/gerbv/feature-requests/ Please submit patches to the SourceForge patch submission tracker: https://sourceforge.net/p/gerbv/patches/ To communicate with a Gerbv developer, please post your query on the following mailing list: gerbv-devel@lists.sourceforge.net geda-user@delorie.com gerbv-2.7.0/aclocal.m40000644000175000017500000016414413423533411014356 0ustar carstencarsten# generated automatically by aclocal 1.15 -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) dnl GLIB_GSETTINGS dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether dnl the schema should be compiled dnl AC_DEFUN([GLIB_GSETTINGS], [ m4_pattern_allow([AM_V_GEN]) AC_ARG_ENABLE(schemas-compile, AS_HELP_STRING([--disable-schemas-compile], [Disable regeneration of gschemas.compiled on install]), [case ${enableval} in yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;; esac]) AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE]) PKG_PROG_PKG_CONFIG([0.16]) AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas]) if test x$cross_compiling != xyes; then GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0` else AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas) fi AC_SUBST(GLIB_COMPILE_SCHEMAS) if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2]) else ifelse([$1],,[:],[$1]) fi GSETTINGS_RULES=' .PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas mostlyclean-am: clean-gsettings-schemas gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE)) %.gschema.valid: %.gschema.xml $(gsettings__enum_file) $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && touch [$]@ all-am: $(gsettings_SCHEMAS:.xml=.valid) uninstall-am: uninstall-gsettings-schemas install-data-am: install-gsettings-schemas .SECONDARY: $(gsettings_SCHEMAS) install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file) @$(NORMAL_INSTALL) if test -n "$^"; then \ test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \ $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \ test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \ fi uninstall-gsettings-schemas: @$(NORMAL_UNINSTALL) @list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \ test -n "$$files" || exit 0; \ echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir) clean-gsettings-schemas: rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) ifdef gsettings_ENUM_NAMESPACE $(gsettings__enum_file): $(gsettings_ENUM_FILES) $(AM_V_GEN) glib-mkenums --comments '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@ endif ' _GSETTINGS_SUBST(GSETTINGS_RULES) ]) dnl _GSETTINGS_SUBST(VARIABLE) dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST AC_DEFUN([_GSETTINGS_SUBST], [ AC_SUBST([$1]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) ] ) dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- dnl serial 11 (pkg-config-0.29) dnl dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR # Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/codeset.m4]) m4_include([m4/extern-inline.m4]) m4_include([m4/fcntl-o.m4]) m4_include([m4/gettext.m4]) m4_include([m4/glibc2.m4]) m4_include([m4/glibc21.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intdiv0.m4]) m4_include([m4/intl.m4]) m4_include([m4/intlmacosx.m4]) m4_include([m4/intmax.m4]) m4_include([m4/inttypes-pri.m4]) m4_include([m4/inttypes_h.m4]) m4_include([m4/lcmessage.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/libtool.m4]) m4_include([m4/lock.m4]) m4_include([m4/longlong.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/printf-posix.m4]) m4_include([m4/progtest.m4]) m4_include([m4/size_max.m4]) m4_include([m4/stdint_h.m4]) m4_include([m4/threadlib.m4]) m4_include([m4/uintmax_t.m4]) m4_include([m4/visibility.m4]) m4_include([m4/wchar_t.m4]) m4_include([m4/wint_t.m4]) m4_include([m4/xsize.m4]) m4_include([acinclude.m4]) gerbv-2.7.0/install-sh0000755000175000017500000003546313423533412014524 0ustar carstencarsten#!/bin/sh # install - install a program, script, or datafile scriptversion=2014-09-12.12; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) # $RANDOM is not portable (e.g. dash); use it when possible to # lower collision chance tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 # As "mkdir -p" follows symlinks and we work in /tmp possibly; so # create the $tmpdir first (and fail if unsuccessful) to make sure # that nobody tries to guess the $tmpdir name. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gerbv-2.7.0/m4/0000755000175000017500000000000013423533407013031 5ustar carstencarstengerbv-2.7.0/m4/visibility.m40000644000175000017500000000642713421555750015476 0ustar carstencarsten# visibility.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2005, 2008, 2010-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Tests whether the compiler supports the command-line option dnl -fvisibility=hidden and the function and variable attributes dnl __attribute__((__visibility__("hidden"))) and dnl __attribute__((__visibility__("default"))). dnl Does *not* test for __visibility__("protected") - which has tricky dnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on dnl Mac OS X. dnl Does *not* test for __visibility__("internal") - which has processor dnl dependent semantics. dnl Does *not* test for #pragma GCC visibility push(hidden) - which is dnl "really only recommended for legacy code". dnl Set the variable CFLAG_VISIBILITY. dnl Defines and sets the variable HAVE_VISIBILITY. AC_DEFUN([gl_VISIBILITY], [ AC_REQUIRE([AC_PROG_CC]) CFLAG_VISIBILITY= HAVE_VISIBILITY=0 if test -n "$GCC"; then dnl First, check whether -Werror can be added to the command line, or dnl whether it leads to an error because of some other option that the dnl user has put into $CC $CFLAGS $CPPFLAGS. AC_MSG_CHECKING([whether the -Werror option is usable]) AC_CACHE_VAL([gl_cv_cc_vis_werror], [ gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Werror" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[]], [[]])], [gl_cv_cc_vis_werror=yes], [gl_cv_cc_vis_werror=no]) CFLAGS="$gl_save_CFLAGS"]) AC_MSG_RESULT([$gl_cv_cc_vis_werror]) dnl Now check whether visibility declarations are supported. AC_MSG_CHECKING([for simple visibility declarations]) AC_CACHE_VAL([gl_cv_cc_visibility], [ gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden" dnl We use the option -Werror and a function dummyfunc, because on some dnl platforms (Cygwin 1.7) the use of -fvisibility triggers a warning dnl "visibility attribute not supported in this configuration; ignored" dnl at the first function definition in every compilation unit, and we dnl don't want to use the option in this case. if test $gl_cv_cc_vis_werror = yes; then CFLAGS="$CFLAGS -Werror" fi AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[extern __attribute__((__visibility__("hidden"))) int hiddenvar; extern __attribute__((__visibility__("default"))) int exportedvar; extern __attribute__((__visibility__("hidden"))) int hiddenfunc (void); extern __attribute__((__visibility__("default"))) int exportedfunc (void); void dummyfunc (void) {} ]], [[]])], [gl_cv_cc_visibility=yes], [gl_cv_cc_visibility=no]) CFLAGS="$gl_save_CFLAGS"]) AC_MSG_RESULT([$gl_cv_cc_visibility]) if test $gl_cv_cc_visibility = yes; then CFLAG_VISIBILITY="-fvisibility=hidden" HAVE_VISIBILITY=1 fi fi AC_SUBST([CFLAG_VISIBILITY]) AC_SUBST([HAVE_VISIBILITY]) AC_DEFINE_UNQUOTED([HAVE_VISIBILITY], [$HAVE_VISIBILITY], [Define to 1 or 0, depending whether the compiler supports simple visibility declarations.]) ]) gerbv-2.7.0/m4/glibc2.m40000644000175000017500000000147613421555750014450 0ustar carstencarsten# glibc2.m4 serial 3 dnl Copyright (C) 2000-2002, 2004, 2008, 2010-2014 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Test for the GNU C Library, version 2.0 or newer. # From Bruno Haible. AC_DEFUN([gt_GLIBC2], [ AC_CACHE_CHECK([whether we are using the GNU C Library 2 or newer], [ac_cv_gnu_library_2], [AC_EGREP_CPP([Lucky GNU user], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ >= 2) && !defined __UCLIBC__ Lucky GNU user #endif #endif ], [ac_cv_gnu_library_2=yes], [ac_cv_gnu_library_2=no]) ] ) AC_SUBST([GLIBC2]) GLIBC2="$ac_cv_gnu_library_2" ] ) gerbv-2.7.0/m4/lock.m40000644000175000017500000000266713421555750014241 0ustar carstencarsten# lock.m4 serial 13 (gettext-0.18.2) dnl Copyright (C) 2005-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([gl_LOCK], [ AC_REQUIRE([gl_THREADLIB]) if test "$gl_threads_api" = posix; then # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the # pthread_rwlock_* functions. AC_CHECK_TYPE([pthread_rwlock_t], [AC_DEFINE([HAVE_PTHREAD_RWLOCK], [1], [Define if the POSIX multithreading library has read/write locks.])], [], [#include ]) # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro. AC_COMPILE_IFELSE([ AC_LANG_PROGRAM( [[#include ]], [[ #if __FreeBSD__ == 4 error "No, in FreeBSD 4.0 recursive mutexes actually don't work." #elif (defined __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ \ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070) error "No, in Mac OS X < 10.7 recursive mutexes actually don't work." #else int x = (int)PTHREAD_MUTEX_RECURSIVE; return !x; #endif ]])], [AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE], [1], [Define if the defines PTHREAD_MUTEX_RECURSIVE.])]) fi gl_PREREQ_LOCK ]) # Prerequisites of lib/glthread/lock.c. AC_DEFUN([gl_PREREQ_LOCK], [:]) gerbv-2.7.0/m4/uintmax_t.m40000644000175000017500000000213113421555750015303 0ustar carstencarsten# uintmax_t.m4 serial 12 dnl Copyright (C) 1997-2004, 2007-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert. AC_PREREQ([2.13]) # Define uintmax_t to 'unsigned long' or 'unsigned long long' # if it is not already defined in or . AC_DEFUN([gl_AC_TYPE_UINTMAX_T], [ AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) AC_REQUIRE([gl_AC_HEADER_STDINT_H]) if test $gl_cv_header_inttypes_h = no && test $gl_cv_header_stdint_h = no; then AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) test $ac_cv_type_unsigned_long_long_int = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' AC_DEFINE_UNQUOTED([uintmax_t], [$ac_type], [Define to unsigned long or unsigned long long if and don't define.]) else AC_DEFINE([HAVE_UINTMAX_T], [1], [Define if you have the 'uintmax_t' type in or .]) fi ]) gerbv-2.7.0/m4/lib-prefix.m40000644000175000017500000002042213421555750015337 0ustar carstencarsten# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates dnl - a variable acl_libdirstem, containing the basename of the libdir, either dnl "lib" or "lib64" or "lib/64", dnl - a variable acl_libdirstem2, as a secondary possible value for dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or dnl "lib/amd64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. dnl On glibc systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine dnl the compiler's default mode by looking at the compiler's library search dnl path. If at least one of its elements ends in /lib64 or points to a dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. dnl Otherwise we use the default, namely "lib". dnl On Solaris systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. AC_REQUIRE([AC_CANONICAL_HOST]) acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment dnl . dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the dnl symlink is missing, so we set acl_libdirstem2 too. AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], [AC_EGREP_CPP([sixtyfour bits], [ #ifdef _LP64 sixtyfour bits #endif ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) ]) if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" ]) gerbv-2.7.0/m4/size_max.m40000644000175000017500000000577013421555750015126 0ustar carstencarsten# size_max.m4 serial 10 dnl Copyright (C) 2003, 2005-2006, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([gl_SIZE_MAX], [ AC_CHECK_HEADERS([stdint.h]) dnl First test whether the system already has SIZE_MAX. AC_CACHE_CHECK([for SIZE_MAX], [gl_cv_size_max], [ gl_cv_size_max= AC_EGREP_CPP([Found it], [ #include #if HAVE_STDINT_H #include #endif #ifdef SIZE_MAX Found it #endif ], [gl_cv_size_max=yes]) if test -z "$gl_cv_size_max"; then dnl Define it ourselves. Here we assume that the type 'size_t' is not wider dnl than the type 'unsigned long'. Try hard to find a definition that can dnl be used in a preprocessor #if, i.e. doesn't contain a cast. AC_COMPUTE_INT([size_t_bits_minus_1], [sizeof (size_t) * CHAR_BIT - 1], [#include #include ], [size_t_bits_minus_1=]) AC_COMPUTE_INT([fits_in_uint], [sizeof (size_t) <= sizeof (unsigned int)], [#include ], [fits_in_uint=]) if test -n "$size_t_bits_minus_1" && test -n "$fits_in_uint"; then if test $fits_in_uint = 1; then dnl Even though SIZE_MAX fits in an unsigned int, it must be of type dnl 'unsigned long' if the type 'size_t' is the same as 'unsigned long'. AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include extern size_t foo; extern unsigned long foo; ]], [[]])], [fits_in_uint=0]) fi dnl We cannot use 'expr' to simplify this expression, because 'expr' dnl works only with 'long' integers in the host environment, while we dnl might be cross-compiling from a 32-bit platform to a 64-bit platform. if test $fits_in_uint = 1; then gl_cv_size_max="(((1U << $size_t_bits_minus_1) - 1) * 2 + 1)" else gl_cv_size_max="(((1UL << $size_t_bits_minus_1) - 1) * 2 + 1)" fi else dnl Shouldn't happen, but who knows... gl_cv_size_max='((size_t)~(size_t)0)' fi fi ]) if test "$gl_cv_size_max" != yes; then AC_DEFINE_UNQUOTED([SIZE_MAX], [$gl_cv_size_max], [Define as the maximum value of type 'size_t', if the system doesn't define it.]) fi dnl Don't redefine SIZE_MAX in config.h if config.h is re-included after dnl . Remember that the #undef in AH_VERBATIM gets replaced with dnl #define by AC_DEFINE_UNQUOTED. AH_VERBATIM([SIZE_MAX], [/* Define as the maximum value of type 'size_t', if the system doesn't define it. */ #ifndef SIZE_MAX # undef SIZE_MAX #endif]) ]) dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. dnl Remove this when we can assume autoconf >= 2.61. m4_ifdef([AC_COMPUTE_INT], [], [ AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) ]) gerbv-2.7.0/m4/glibc21.m40000644000175000017500000000161313421555750014522 0ustar carstencarsten# glibc21.m4 serial 5 dnl Copyright (C) 2000-2002, 2004, 2008, 2010-2014 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Test for the GNU C Library, version 2.1 or newer, or uClibc. # From Bruno Haible. AC_DEFUN([gl_GLIBC21], [ AC_CACHE_CHECK([whether we are using the GNU C Library >= 2.1 or uClibc], [ac_cv_gnu_library_2_1], [AC_EGREP_CPP([Lucky], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif #ifdef __UCLIBC__ Lucky user #endif ], [ac_cv_gnu_library_2_1=yes], [ac_cv_gnu_library_2_1=no]) ] ) AC_SUBST([GLIBC21]) GLIBC21="$ac_cv_gnu_library_2_1" ] ) gerbv-2.7.0/m4/wchar_t.m40000644000175000017500000000146213421555750014730 0ustar carstencarsten# wchar_t.m4 serial 4 (gettext-0.18.2) dnl Copyright (C) 2002-2003, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether has the 'wchar_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WCHAR_T], [ AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include wchar_t foo = (wchar_t)'\0';]], [[]])], [gt_cv_c_wchar_t=yes], [gt_cv_c_wchar_t=no])]) if test $gt_cv_c_wchar_t = yes; then AC_DEFINE([HAVE_WCHAR_T], [1], [Define if you have the 'wchar_t' type.]) fi ]) gerbv-2.7.0/m4/nls.m40000644000175000017500000000231513421555750014073 0ustar carstencarsten# nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) gerbv-2.7.0/m4/printf-posix.m40000644000175000017500000000305313421555750015741 0ustar carstencarsten# printf-posix.m4 serial 6 (gettext-0.18.2) dnl Copyright (C) 2003, 2007, 2009-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether the printf() function supports POSIX/XSI format strings with dnl positions. AC_DEFUN([gt_PRINTF_POSIX], [ AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings], gt_cv_func_printf_posix, [ AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include /* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */ static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' }; static char buf[100]; int main () { sprintf (buf, format, 33, 55); return (strcmp (buf, "55 33") != 0); }]])], [gt_cv_func_printf_posix=yes], [gt_cv_func_printf_posix=no], [ AC_EGREP_CPP([notposix], [ #if defined __NetBSD__ || defined __BEOS__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ notposix #endif ], [gt_cv_func_printf_posix="guessing no"], [gt_cv_func_printf_posix="guessing yes"]) ]) ]) case $gt_cv_func_printf_posix in *yes) AC_DEFINE([HAVE_POSIX_PRINTF], [1], [Define if your printf() function supports format strings with positions.]) ;; esac ]) gerbv-2.7.0/m4/longlong.m40000644000175000017500000001120313421555750015112 0ustar carstencarsten# longlong.m4 serial 17 dnl Copyright (C) 1999-2007, 2009-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert. # Define HAVE_LONG_LONG_INT if 'long long int' works. # This fixes a bug in Autoconf 2.61, and can be faster # than what's in Autoconf 2.62 through 2.68. # Note: If the type 'long long int' exists but is only 32 bits large # (as on some very old compilers), HAVE_LONG_LONG_INT will not be # defined. In this case you can treat 'long long int' like 'long int'. AC_DEFUN([AC_TYPE_LONG_LONG_INT], [ AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int], [ac_cv_type_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int if test $ac_cv_type_long_long_int = yes; then dnl Catch a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004. dnl If cross compiling, assume the bug is not important, since dnl nobody cross compiles for this platform as far as we know. AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[@%:@include @%:@ifndef LLONG_MAX @%:@ define HALF \ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) @%:@ define LLONG_MAX (HALF - 1 + HALF) @%:@endif]], [[long long int n = 1; int i; for (i = 0; ; i++) { long long int m = n << i; if (m >> i != n) return 1; if (LLONG_MAX / 2 < m) break; } return 0;]])], [], [ac_cv_type_long_long_int=no], [:]) fi fi]) if test $ac_cv_type_long_long_int = yes; then AC_DEFINE([HAVE_LONG_LONG_INT], [1], [Define to 1 if the system has the type 'long long int'.]) fi ]) # Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works. # This fixes a bug in Autoconf 2.61, and can be faster # than what's in Autoconf 2.62 through 2.68. # Note: If the type 'unsigned long long int' exists but is only 32 bits # large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT # will not be defined. In this case you can treat 'unsigned long long int' # like 'unsigned long int'. AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], [ AC_CACHE_CHECK([for unsigned long long int], [ac_cv_type_unsigned_long_long_int], [ac_cv_type_unsigned_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then AC_LINK_IFELSE( [_AC_TYPE_LONG_LONG_SNIPPET], [], [ac_cv_type_unsigned_long_long_int=no]) fi]) if test $ac_cv_type_unsigned_long_long_int = yes; then AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1], [Define to 1 if the system has the type 'unsigned long long int'.]) fi ]) # Expands to a C program that can be used to test for simultaneous support # of 'long long' and 'unsigned long long'. We don't want to say that # 'long long' is available if 'unsigned long long' is not, or vice versa, # because too many programs rely on the symmetry between signed and unsigned # integer types (excluding 'bool'). AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], [ AC_LANG_PROGRAM( [[/* For now, do not test the preprocessor; as of 2007 there are too many implementations with broken preprocessors. Perhaps this can be revisited in 2012. In the meantime, code should not expect #if to work with literals wider than 32 bits. */ /* Test literals. */ long long int ll = 9223372036854775807ll; long long int nll = -9223372036854775807LL; unsigned long long int ull = 18446744073709551615ULL; /* Test constant expressions. */ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ? 1 : -1)]; typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ? 1 : -1)]; int i = 63;]], [[/* Test availability of runtime routines for shift and division. */ long long int llmax = 9223372036854775807ll; unsigned long long int ullmax = 18446744073709551615ull; return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) | (llmax / ll) | (llmax % ll) | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) | (ullmax / ull) | (ullmax % ull));]]) ]) gerbv-2.7.0/m4/threadlib.m40000644000175000017500000003414313421555750015241 0ustar carstencarsten# threadlib.m4 serial 10 (gettext-0.18.2) dnl Copyright (C) 2005-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl gl_THREADLIB dnl ------------ dnl Tests for a multithreading library to be used. dnl If the configure.ac contains a definition of the gl_THREADLIB_DEFAULT_NO dnl (it must be placed before the invocation of gl_THREADLIB_EARLY!), then the dnl default is 'no', otherwise it is system dependent. In both cases, the user dnl can change the choice through the options --enable-threads=choice or dnl --disable-threads. dnl Defines at most one of the macros USE_POSIX_THREADS, USE_SOLARIS_THREADS, dnl USE_PTH_THREADS, USE_WINDOWS_THREADS dnl Sets the variables LIBTHREAD and LTLIBTHREAD to the linker options for use dnl in a Makefile (LIBTHREAD for use without libtool, LTLIBTHREAD for use with dnl libtool). dnl Sets the variables LIBMULTITHREAD and LTLIBMULTITHREAD similarly, for dnl programs that really need multithread functionality. The difference dnl between LIBTHREAD and LIBMULTITHREAD is that on platforms supporting weak dnl symbols, typically LIBTHREAD="" whereas LIBMULTITHREAD="-lpthread". dnl Adds to CPPFLAGS the flag -D_REENTRANT or -D_THREAD_SAFE if needed for dnl multithread-safe programs. AC_DEFUN([gl_THREADLIB_EARLY], [ AC_REQUIRE([gl_THREADLIB_EARLY_BODY]) ]) dnl The guts of gl_THREADLIB_EARLY. Needs to be expanded only once. AC_DEFUN([gl_THREADLIB_EARLY_BODY], [ dnl Ordering constraints: This macro modifies CPPFLAGS in a way that dnl influences the result of the autoconf tests that test for *_unlocked dnl declarations, on AIX 5 at least. Therefore it must come early. AC_BEFORE([$0], [gl_FUNC_GLIBC_UNLOCKED_IO])dnl AC_BEFORE([$0], [gl_ARGP])dnl AC_REQUIRE([AC_CANONICAL_HOST]) dnl _GNU_SOURCE is needed for pthread_rwlock_t on glibc systems. dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes dnl AC_GNU_SOURCE. m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])], [AC_REQUIRE([AC_GNU_SOURCE])]) dnl Check for multithreading. m4_ifdef([gl_THREADLIB_DEFAULT_NO], [m4_divert_text([DEFAULTS], [gl_use_threads_default=no])], [m4_divert_text([DEFAULTS], [gl_use_threads_default=])]) AC_ARG_ENABLE([threads], AC_HELP_STRING([--enable-threads={posix|solaris|pth|windows}], [specify multithreading API])m4_ifdef([gl_THREADLIB_DEFAULT_NO], [], [ AC_HELP_STRING([--disable-threads], [build without multithread safety])]), [gl_use_threads=$enableval], [if test -n "$gl_use_threads_default"; then gl_use_threads="$gl_use_threads_default" else changequote(,)dnl case "$host_os" in dnl Disable multithreading by default on OSF/1, because it interferes dnl with fork()/exec(): When msgexec is linked with -lpthread, its dnl child process gets an endless segmentation fault inside execvp(). dnl Disable multithreading by default on Cygwin 1.5.x, because it has dnl bugs that lead to endless loops or crashes. See dnl . osf*) gl_use_threads=no ;; cygwin*) case `uname -r` in 1.[0-5].*) gl_use_threads=no ;; *) gl_use_threads=yes ;; esac ;; *) gl_use_threads=yes ;; esac changequote([,])dnl fi ]) if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # For using : case "$host_os" in osf*) # On OSF/1, the compiler needs the flag -D_REENTRANT so that it # groks . cc also understands the flag -pthread, but # we don't use it because 1. gcc-2.95 doesn't understand -pthread, # 2. putting a flag into CPPFLAGS that has an effect on the linker # causes the AC_LINK_IFELSE test below to succeed unexpectedly, # leading to wrong values of LIBTHREAD and LTLIBTHREAD. CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac # Some systems optimize for single-threaded programs by default, and # need special flags to disable these optimizations. For example, the # definition of 'errno' in . case "$host_os" in aix* | freebsd*) CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" ;; solaris*) CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac fi ]) dnl The guts of gl_THREADLIB. Needs to be expanded only once. AC_DEFUN([gl_THREADLIB_BODY], [ AC_REQUIRE([gl_THREADLIB_EARLY_BODY]) gl_threads_api=none LIBTHREAD= LTLIBTHREAD= LIBMULTITHREAD= LTLIBMULTITHREAD= if test "$gl_use_threads" != no; then dnl Check whether the compiler and linker support weak declarations. AC_CACHE_CHECK([whether imported symbols can be declared weak], [gl_cv_have_weak], [gl_cv_have_weak=no dnl First, test whether the compiler accepts it syntactically. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[extern void xyzzy (); #pragma weak xyzzy]], [[xyzzy();]])], [gl_cv_have_weak=maybe]) if test $gl_cv_have_weak = maybe; then dnl Second, test whether it actually works. On Cygwin 1.7.2, with dnl gcc 4.3, symbols declared weak always evaluate to the address 0. AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #pragma weak fputs int main () { return (fputs == NULL); }]])], [gl_cv_have_weak=yes], [gl_cv_have_weak=no], [dnl When cross-compiling, assume that only ELF platforms support dnl weak symbols. AC_EGREP_CPP([Extensible Linking Format], [#ifdef __ELF__ Extensible Linking Format #endif ], [gl_cv_have_weak="guessing yes"], [gl_cv_have_weak="guessing no"]) ]) fi ]) if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that # it groks . It's added above, in gl_THREADLIB_EARLY_BODY. AC_CHECK_HEADER([pthread.h], [gl_have_pthread_h=yes], [gl_have_pthread_h=no]) if test "$gl_have_pthread_h" = yes; then # Other possible tests: # -lpthreads (FSU threads, PCthreads) # -lgthreads gl_have_pthread= # Test whether both pthread_mutex_lock and pthread_mutexattr_init exist # in libc. IRIX 6.5 has the first one in both libc and libpthread, but # the second one only in libpthread, and lock.c needs it. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[pthread_mutex_lock((pthread_mutex_t*)0); pthread_mutexattr_init((pthread_mutexattr_t*)0);]])], [gl_have_pthread=yes]) # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) if test -n "$gl_have_pthread"; then # The program links fine without libpthread. But it may actually # need to link with libpthread in order to create multiple threads. AC_CHECK_LIB([pthread], [pthread_kill], [LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread # On Solaris and HP-UX, most pthread functions exist also in libc. # Therefore pthread_in_use() needs to actually try to create a # thread: pthread_create from libc will fail, whereas # pthread_create will actually create a thread. case "$host_os" in solaris* | hpux*) AC_DEFINE([PTHREAD_IN_USE_DETECTION_HARD], [1], [Define if the pthread_in_use() detection is hard.]) esac ]) else # Some library is needed. Try libpthread and libc_r. AC_CHECK_LIB([pthread], [pthread_kill], [gl_have_pthread=yes LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread]) if test -z "$gl_have_pthread"; then # For FreeBSD 4. AC_CHECK_LIB([c_r], [pthread_kill], [gl_have_pthread=yes LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r]) fi fi if test -n "$gl_have_pthread"; then gl_threads_api=posix AC_DEFINE([USE_POSIX_THREADS], [1], [Define if the POSIX multithreading library can be used.]) if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_POSIX_THREADS_WEAK], [1], [Define if references to the POSIX multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi fi fi fi if test -z "$gl_have_pthread"; then if test "$gl_use_threads" = yes || test "$gl_use_threads" = solaris; then gl_have_solaristhread= gl_save_LIBS="$LIBS" LIBS="$LIBS -lthread" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[thr_self();]])], [gl_have_solaristhread=yes]) LIBS="$gl_save_LIBS" if test -n "$gl_have_solaristhread"; then gl_threads_api=solaris LIBTHREAD=-lthread LTLIBTHREAD=-lthread LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" AC_DEFINE([USE_SOLARIS_THREADS], [1], [Define if the old Solaris multithreading library can be used.]) if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_SOLARIS_THREADS_WEAK], [1], [Define if references to the old Solaris multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi fi fi if test "$gl_use_threads" = pth; then gl_save_CPPFLAGS="$CPPFLAGS" AC_LIB_LINKFLAGS([pth]) gl_have_pth= gl_save_LIBS="$LIBS" LIBS="$LIBS $LIBPTH" AC_LINK_IFELSE( [AC_LANG_PROGRAM([[#include ]], [[pth_self();]])], [gl_have_pth=yes]) LIBS="$gl_save_LIBS" if test -n "$gl_have_pth"; then gl_threads_api=pth LIBTHREAD="$LIBPTH" LTLIBTHREAD="$LTLIBPTH" LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" AC_DEFINE([USE_PTH_THREADS], [1], [Define if the GNU Pth multithreading library can be used.]) if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_PTH_THREADS_WEAK], [1], [Define if references to the GNU Pth multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi else CPPFLAGS="$gl_save_CPPFLAGS" fi fi if test -z "$gl_have_pthread"; then case "$gl_use_threads" in yes | windows | win32) # The 'win32' is for backward compatibility. if { case "$host_os" in mingw*) true;; *) false;; esac }; then gl_threads_api=windows AC_DEFINE([USE_WINDOWS_THREADS], [1], [Define if the native Windows multithreading API can be used.]) fi ;; esac fi fi AC_MSG_CHECKING([for multithread API to use]) AC_MSG_RESULT([$gl_threads_api]) AC_SUBST([LIBTHREAD]) AC_SUBST([LTLIBTHREAD]) AC_SUBST([LIBMULTITHREAD]) AC_SUBST([LTLIBMULTITHREAD]) ]) AC_DEFUN([gl_THREADLIB], [ AC_REQUIRE([gl_THREADLIB_EARLY]) AC_REQUIRE([gl_THREADLIB_BODY]) ]) dnl gl_DISABLE_THREADS dnl ------------------ dnl Sets the gl_THREADLIB default so that threads are not used by default. dnl The user can still override it at installation time, by using the dnl configure option '--enable-threads'. AC_DEFUN([gl_DISABLE_THREADS], [ m4_divert_text([INIT_PREPARE], [gl_use_threads_default=no]) ]) dnl Survey of platforms: dnl dnl Platform Available Compiler Supports test-lock dnl flavours option weak result dnl --------------- --------- --------- -------- --------- dnl Linux 2.4/glibc posix -lpthread Y OK dnl dnl GNU Hurd/glibc posix dnl dnl FreeBSD 5.3 posix -lc_r Y dnl posix -lkse ? Y dnl posix -lpthread ? Y dnl posix -lthr Y dnl dnl FreeBSD 5.2 posix -lc_r Y dnl posix -lkse Y dnl posix -lthr Y dnl dnl FreeBSD 4.0,4.10 posix -lc_r Y OK dnl dnl NetBSD 1.6 -- dnl dnl OpenBSD 3.4 posix -lpthread Y OK dnl dnl Mac OS X 10.[123] posix -lpthread Y OK dnl dnl Solaris 7,8,9 posix -lpthread Y Sol 7,8: 0.0; Sol 9: OK dnl solaris -lthread Y Sol 7,8: 0.0; Sol 9: OK dnl dnl HP-UX 11 posix -lpthread N (cc) OK dnl Y (gcc) dnl dnl IRIX 6.5 posix -lpthread Y 0.5 dnl dnl AIX 4.3,5.1 posix -lpthread N AIX 4: 0.5; AIX 5: OK dnl dnl OSF/1 4.0,5.1 posix -pthread (cc) N OK dnl -lpthread (gcc) Y dnl dnl Cygwin posix -lpthread Y OK dnl dnl Any of the above pth -lpth 0.0 dnl dnl Mingw windows N OK dnl dnl BeOS 5 -- dnl dnl The test-lock result shows what happens if in test-lock.c EXPLICIT_YIELD is dnl turned off: dnl OK if all three tests terminate OK, dnl 0.5 if the first test terminates OK but the second one loops endlessly, dnl 0.0 if the first test already loops endlessly. gerbv-2.7.0/m4/extern-inline.m40000644000175000017500000000670713421555750016071 0ustar carstencarstendnl 'extern inline' a la ISO C99. dnl Copyright 2012-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_EXTERN_INLINE], [ AH_VERBATIM([extern_inline], [/* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see . Suppress extern inline with Sun C in standards-conformance mode, as it mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. Suppress the use of extern inline on problematic Apple configurations. OS X 10.8 and earlier mishandle it; see, e.g., . OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and for clang but remains for g++; see . Perhaps Apple will fix this some day. */ #if (defined __APPLE__ \ && (defined __header_inline \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ && (defined __GNUC__ || defined __cplusplus)) \ || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ && defined __GNUC__ && ! defined __cplusplus)))) # define _GL_EXTERN_INLINE_APPLE_BUG #endif #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : (199901L <= __STDC_VERSION__ \ && !defined __HP_cc \ && !(defined __SUNPRO_C && __STDC__))) \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline # define _GL_EXTERN_INLINE_IN_USE #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif /* Suppress GCC's bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see . */ # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif]) ]) gerbv-2.7.0/m4/stdint_h.m40000644000175000017500000000174313421555750015117 0ustar carstencarsten# stdint_h.m4 serial 9 dnl Copyright (C) 1997-2004, 2006, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert. # Define HAVE_STDINT_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([gl_AC_HEADER_STDINT_H], [ AC_CACHE_CHECK([for stdint.h], [gl_cv_header_stdint_h], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include #include ]], [[uintmax_t i = (uintmax_t) -1; return !i;]])], [gl_cv_header_stdint_h=yes], [gl_cv_header_stdint_h=no])]) if test $gl_cv_header_stdint_h = yes; then AC_DEFINE_UNQUOTED([HAVE_STDINT_H_WITH_UINTMAX], [1], [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) gerbv-2.7.0/m4/ltsugar.m40000644000175000017500000001044013423533407014753 0ustar carstencarsten# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) gerbv-2.7.0/m4/ltversion.m40000644000175000017500000000127313423533407015323 0ustar carstencarsten# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 4179 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.6]) m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6' macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) gerbv-2.7.0/m4/intl.m40000644000175000017500000002550113421555750014247 0ustar carstencarsten# intl.m4 serial 26 (gettext-0.19) dnl Copyright (C) 1995-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2009. AC_PREREQ([2.60]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. AC_DEFUN([AM_INTL_SUBDIR], [ AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([gt_GLIBC2])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([gl_VISIBILITY])dnl AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl AC_REQUIRE([AC_TYPE_LONG_LONG_INT])dnl AC_REQUIRE([gt_TYPE_WCHAR_T])dnl AC_REQUIRE([gt_TYPE_WINT_T])dnl AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) AC_REQUIRE([gt_TYPE_INTMAX_T]) AC_REQUIRE([gt_PRINTF_POSIX]) AC_REQUIRE([gl_GLIBC21])dnl AC_REQUIRE([gl_XSIZE])dnl AC_REQUIRE([gl_FCNTL_O_FLAGS])dnl AC_REQUIRE([gt_INTL_MACOSX])dnl AC_REQUIRE([gl_EXTERN_INLINE])dnl dnl Support for automake's --enable-silent-rules. case "$enable_silent_rules" in yes) INTL_DEFAULT_VERBOSITY=0;; no) INTL_DEFAULT_VERBOSITY=1;; *) INTL_DEFAULT_VERBOSITY=1;; esac AC_SUBST([INTL_DEFAULT_VERBOSITY]) AC_CHECK_TYPE([ptrdiff_t], , [AC_DEFINE([ptrdiff_t], [long], [Define as the type of the result of subtracting two pointers, if the system doesn't define it.]) ]) AC_CHECK_HEADERS([features.h stddef.h stdlib.h string.h]) AC_CHECK_FUNCS([asprintf fwprintf newlocale putenv setenv setlocale \ snprintf strnlen wcslen wcsnlen mbrtowc wcrtomb]) dnl Use the _snprintf function only if it is declared (because on NetBSD it dnl is defined as a weak alias of snprintf; we prefer to use the latter). AC_CHECK_DECLS([_snprintf, _snwprintf], , , [#include ]) dnl Use the *_unlocked functions only if they are declared. dnl (because some of them were defined without being declared in Solaris dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built dnl on Solaris 2.5.1 to run on Solaris 2.6). AC_CHECK_DECLS([getc_unlocked], , , [#include ]) case $gt_cv_func_printf_posix in *yes) HAVE_POSIX_PRINTF=1 ;; *) HAVE_POSIX_PRINTF=0 ;; esac AC_SUBST([HAVE_POSIX_PRINTF]) if test "$ac_cv_func_asprintf" = yes; then HAVE_ASPRINTF=1 else HAVE_ASPRINTF=0 fi AC_SUBST([HAVE_ASPRINTF]) if test "$ac_cv_func_snprintf" = yes; then HAVE_SNPRINTF=1 else HAVE_SNPRINTF=0 fi AC_SUBST([HAVE_SNPRINTF]) if test "$ac_cv_func_newlocale" = yes; then HAVE_NEWLOCALE=1 else HAVE_NEWLOCALE=0 fi AC_SUBST([HAVE_NEWLOCALE]) if test "$ac_cv_func_wprintf" = yes; then HAVE_WPRINTF=1 else HAVE_WPRINTF=0 fi AC_SUBST([HAVE_WPRINTF]) AM_LANGINFO_CODESET gt_LC_MESSAGES dnl Compilation on mingw and Cygwin needs special Makefile rules, because dnl 1. when we install a shared library, we must arrange to export dnl auxiliary pointer variables for every exported variable, dnl 2. when we install a shared library and a static library simultaneously, dnl the include file specifies __declspec(dllimport) and therefore we dnl must arrange to define the auxiliary pointer variables for the dnl exported variables _also_ in the static library. if test "$enable_shared" = yes; then case "$host_os" in mingw* | cygwin*) is_woe32dll=yes ;; *) is_woe32dll=no ;; esac else is_woe32dll=no fi WOE32DLL=$is_woe32dll AC_SUBST([WOE32DLL]) dnl On mingw and Cygwin, we can activate special Makefile rules which add dnl version information to the shared libraries and executables. case "$host_os" in mingw* | cygwin*) is_woe32=yes ;; *) is_woe32=no ;; esac WOE32=$is_woe32 AC_SUBST([WOE32]) if test $WOE32 = yes; then dnl Check for a program that compiles Windows resource files. AC_CHECK_TOOL([WINDRES], [windres]) fi dnl Determine whether when creating a library, "-lc" should be passed to dnl libtool or not. On many platforms, it is required for the libtool option dnl -no-undefined to work. On HP-UX, however, the -lc - stored by libtool dnl in the *.la files - makes it impossible to create multithreaded programs, dnl because libtool also reorders the -lc to come before the -pthread, and dnl this disables pthread_create() . case "$host_os" in hpux*) LTLIBC="" ;; *) LTLIBC="-lc" ;; esac AC_SUBST([LTLIBC]) dnl Rename some macros and functions used for locking. AH_BOTTOM([ #define __libc_lock_t gl_lock_t #define __libc_lock_define gl_lock_define #define __libc_lock_define_initialized gl_lock_define_initialized #define __libc_lock_init gl_lock_init #define __libc_lock_lock gl_lock_lock #define __libc_lock_unlock gl_lock_unlock #define __libc_lock_recursive_t gl_recursive_lock_t #define __libc_lock_define_recursive gl_recursive_lock_define #define __libc_lock_define_initialized_recursive gl_recursive_lock_define_initialized #define __libc_lock_init_recursive gl_recursive_lock_init #define __libc_lock_lock_recursive gl_recursive_lock_lock #define __libc_lock_unlock_recursive gl_recursive_lock_unlock #define glthread_in_use libintl_thread_in_use #define glthread_lock_init_func libintl_lock_init_func #define glthread_lock_lock_func libintl_lock_lock_func #define glthread_lock_unlock_func libintl_lock_unlock_func #define glthread_lock_destroy_func libintl_lock_destroy_func #define glthread_rwlock_init_multithreaded libintl_rwlock_init_multithreaded #define glthread_rwlock_init_func libintl_rwlock_init_func #define glthread_rwlock_rdlock_multithreaded libintl_rwlock_rdlock_multithreaded #define glthread_rwlock_rdlock_func libintl_rwlock_rdlock_func #define glthread_rwlock_wrlock_multithreaded libintl_rwlock_wrlock_multithreaded #define glthread_rwlock_wrlock_func libintl_rwlock_wrlock_func #define glthread_rwlock_unlock_multithreaded libintl_rwlock_unlock_multithreaded #define glthread_rwlock_unlock_func libintl_rwlock_unlock_func #define glthread_rwlock_destroy_multithreaded libintl_rwlock_destroy_multithreaded #define glthread_rwlock_destroy_func libintl_rwlock_destroy_func #define glthread_recursive_lock_init_multithreaded libintl_recursive_lock_init_multithreaded #define glthread_recursive_lock_init_func libintl_recursive_lock_init_func #define glthread_recursive_lock_lock_multithreaded libintl_recursive_lock_lock_multithreaded #define glthread_recursive_lock_lock_func libintl_recursive_lock_lock_func #define glthread_recursive_lock_unlock_multithreaded libintl_recursive_lock_unlock_multithreaded #define glthread_recursive_lock_unlock_func libintl_recursive_lock_unlock_func #define glthread_recursive_lock_destroy_multithreaded libintl_recursive_lock_destroy_multithreaded #define glthread_recursive_lock_destroy_func libintl_recursive_lock_destroy_func #define glthread_once_func libintl_once_func #define glthread_once_singlethreaded libintl_once_singlethreaded #define glthread_once_multithreaded libintl_once_multithreaded ]) ]) dnl Checks for the core files of the intl subdirectory: dnl dcigettext.c dnl eval-plural.h dnl explodename.c dnl finddomain.c dnl gettextP.h dnl gmo.h dnl hash-string.h hash-string.c dnl l10nflist.c dnl libgnuintl.h.in (except the *printf stuff) dnl loadinfo.h dnl loadmsgcat.c dnl localealias.c dnl log.c dnl plural-exp.h plural-exp.c dnl plural.y dnl Used by libglocale. AC_DEFUN([gt_INTL_SUBDIR_CORE], [ AC_REQUIRE([AC_C_INLINE])dnl AC_REQUIRE([AC_TYPE_SIZE_T])dnl AC_REQUIRE([gl_AC_HEADER_STDINT_H]) AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl AC_REQUIRE([gt_INTDIV0])dnl AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])dnl AC_REQUIRE([gt_INTTYPES_PRI])dnl AC_REQUIRE([gl_LOCK])dnl AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; }]], [[]])], [AC_DEFINE([HAVE_BUILTIN_EXPECT], [1], [Define to 1 if the compiler understands __builtin_expect.])]) AC_CHECK_HEADERS([argz.h inttypes.h limits.h unistd.h sys/param.h]) AC_CHECK_FUNCS([getcwd getegid geteuid getgid getuid mempcpy munmap \ stpcpy strcasecmp strdup strtoul tsearch uselocale argz_count \ argz_stringify argz_next __fsetlocking]) dnl Use the *_unlocked functions only if they are declared. dnl (because some of them were defined without being declared in Solaris dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built dnl on Solaris 2.5.1 to run on Solaris 2.6). AC_CHECK_DECLS([feof_unlocked, fgets_unlocked], , , [#include ]) AM_ICONV dnl intl/plural.c is generated from intl/plural.y. It requires bison, dnl because plural.y uses bison specific features. It requires at least dnl bison-2.7 for %define api.pure. dnl bison is only needed for the maintainer (who touches plural.y). But in dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put dnl the rule in general Makefile. Now, some people carelessly touch the dnl files or have a broken "make" program, hence the plural.c rule will dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not dnl present or too old. AC_CHECK_PROGS([INTLBISON], [bison]) if test -z "$INTLBISON"; then ac_verc_fail=yes else dnl Found it, now check the version. AC_MSG_CHECKING([version of bison]) changequote(<<,>>)dnl ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 2.[7-9]* | [3-9].*) changequote([,])dnl ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac AC_MSG_RESULT([$ac_prog_version]) fi if test $ac_verc_fail = yes; then INTLBISON=: fi ]) gerbv-2.7.0/m4/ltoptions.m40000644000175000017500000003426213423533407015335 0ustar carstencarsten# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) gerbv-2.7.0/m4/po.m40000644000175000017500000004503713421555750013725 0ustar carstencarsten# po.m4 serial 22 (gettext-0.19) dnl Copyright (C) 1995-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.60]) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl AC_REQUIRE([AC_PROG_SED])dnl AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.19]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" tab=`printf '\t'` if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" < exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([gl_AC_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], [gl_cv_header_inttypes_h], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[uintmax_t i = (uintmax_t) -1; return !i;]])], [gl_cv_header_inttypes_h=yes], [gl_cv_header_inttypes_h=no])]) if test $gl_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED([HAVE_INTTYPES_H_WITH_UINTMAX], [1], [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) gerbv-2.7.0/m4/intlmacosx.m40000644000175000017500000000475313421555750015470 0ustar carstencarsten# intlmacosx.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2004-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Checks for special options needed on Mac OS X. dnl Defines INTL_MACOSX_LIBS. AC_DEFUN([gt_INTL_MACOSX], [ dnl Check for API introduced in Mac OS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], [gt_cv_func_CFPreferencesCopyAppValue], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[CFPreferencesCopyAppValue(NULL, NULL)]])], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in Mac OS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[CFLocaleCopyCurrent();]])], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) gerbv-2.7.0/m4/gettext.m40000644000175000017500000003561513421555750014774 0ustar carstencarsten# gettext.m4 serial 66 (gettext-0.18.2) dnl Copyright (C) 1995-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006, 2008-2010. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value '$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH([included-gettext], [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ]])], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ]])], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ]])], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE([HAVE_GETTEXT], [1], [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE([HAVE_DCGETTEXT], [1], [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST([BUILD_INCLUDED_LIBINTL]) AC_SUBST([USE_INCLUDED_LIBINTL]) AC_SUBST([CATOBJEXT]) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST([DATADIRNAME]) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST([INSTOBJEXT]) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST([GENCAT]) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST([INTLOBJS]) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST([INTLLIBS]) dnl Make all documented variables known to autoconf. AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) AC_SUBST([POSUB]) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) gerbv-2.7.0/m4/inttypes-pri.m40000644000175000017500000000234513421555750015751 0ustar carstencarsten# inttypes-pri.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1997-2002, 2006, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.53]) # Define PRI_MACROS_BROKEN if exists and defines the PRI* # macros to non-string values. This is the case on AIX 4.3.3. AC_DEFUN([gt_INTTYPES_PRI], [ AC_CHECK_HEADERS([inttypes.h]) if test $ac_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], [gt_cv_inttypes_pri_broken], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #ifdef PRId32 char *p = PRId32; #endif ]], [[]])], [gt_cv_inttypes_pri_broken=no], [gt_cv_inttypes_pri_broken=yes]) ]) fi if test "$gt_cv_inttypes_pri_broken" = yes; then AC_DEFINE_UNQUOTED([PRI_MACROS_BROKEN], [1], [Define if exists and defines unusable PRI* macros.]) PRI_MACROS_BROKEN=1 else PRI_MACROS_BROKEN=0 fi AC_SUBST([PRI_MACROS_BROKEN]) ]) gerbv-2.7.0/m4/lcmessage.m40000644000175000017500000000253313421555750015244 0ustar carstencarsten# lcmessage.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1995-2002, 2004-2005, 2008-2014 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([gt_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], [gt_cv_val_LC_MESSAGES], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[return LC_MESSAGES]])], [gt_cv_val_LC_MESSAGES=yes], [gt_cv_val_LC_MESSAGES=no])]) if test $gt_cv_val_LC_MESSAGES = yes; then AC_DEFINE([HAVE_LC_MESSAGES], [1], [Define if your file defines LC_MESSAGES.]) fi ]) gerbv-2.7.0/m4/lib-ld.m40000644000175000017500000000714313421555750014446 0ustar carstencarsten# lib-ld.m4 serial 6 dnl Copyright (C) 1996-2003, 2009-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Subroutines of libtool.m4, dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid dnl collision with libtool.m4. dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], [# I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 /dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL([acl_cv_path_LD], [if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[[012]][[,.]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi _LT_TAGVAR(link_all_deplibs, $1)=no else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS gerbv-2.7.0/m4/intdiv0.m40000644000175000017500000000455213421555750014661 0ustar carstencarsten# intdiv0.m4 serial 6 (gettext-0.18.2) dnl Copyright (C) 2002, 2007-2008, 2010-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([gt_INTDIV0], [ AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], gt_cv_int_divbyzero_sigfpe, [ gt_cv_int_divbyzero_sigfpe= changequote(,)dnl case "$host_os" in macos* | darwin[6-9]* | darwin[1-9][0-9]*) # On Mac OS X 10.2 or newer, just assume the same as when cross- # compiling. If we were to perform the real test, 1 Crash Report # dialog window would pop up. case "$host_cpu" in i[34567]86 | x86_64) gt_cv_int_divbyzero_sigfpe="guessing yes" ;; esac ;; esac changequote([,])dnl if test -z "$gt_cv_int_divbyzero_sigfpe"; then AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include static void sigfpe_handler (int sig) { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (2); } ]])], [gt_cv_int_divbyzero_sigfpe=yes], [gt_cv_int_divbyzero_sigfpe=no], [ # Guess based on the CPU. changequote(,)dnl case "$host_cpu" in alpha* | i[34567]86 | x86_64 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac changequote([,])dnl ]) fi ]) case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac AC_DEFINE_UNQUOTED([INTDIV0_RAISES_SIGFPE], [$value], [Define if integer division by zero raises signal SIGFPE.]) ]) gerbv-2.7.0/m4/lt~obsolete.m40000644000175000017500000001377413423533407015661 0ustar carstencarsten# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) gerbv-2.7.0/m4/iconv.m40000644000175000017500000002162013421555750014415 0ustar carstencarsten# iconv.m4 serial 18 (gettext-0.18.2) dnl Copyright (C) 2000-2002, 2007-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_LINK_IFELSE will then fail, the second AC_LINK_IFELSE will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_func_iconv=yes]) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_lib_iconv=yes] [am_cv_func_iconv=yes]) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11, dnl Solaris 10. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include int main () { int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; const char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; }]])], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], [ changequote(,)dnl case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac changequote([,])dnl ]) LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST([LIBICONV]) AC_SUBST([LTLIBICONV]) ]) dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to dnl avoid warnings like dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". dnl This is tricky because of the way 'aclocal' is implemented: dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. dnl Otherwise aclocal's initial scan pass would miss the macro definition. dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. dnl Otherwise aclocal would emit many "Use of uninitialized value $1" dnl warnings. m4_define([gl_iconv_AC_DEFUN], m4_version_prereq([2.64], [[AC_DEFUN_ONCE( [$1], [$2])]], [m4_ifdef([gl_00GNULIB], [[AC_DEFUN_ONCE( [$1], [$2])]], [[AC_DEFUN( [$1], [$2])]])])) gl_iconv_AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL([am_cv_proto_iconv], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ]], [[]])], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([ $am_cv_proto_iconv]) AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], [Define as const if the declaration of iconv() needs const.]) dnl Also substitute ICONV_CONST in the gnulib generated . m4_ifdef([gl_ICONV_H_DEFAULTS], [AC_REQUIRE([gl_ICONV_H_DEFAULTS]) if test -n "$am_cv_proto_iconv_arg1"; then ICONV_CONST="const" fi ]) fi ]) gerbv-2.7.0/m4/lib-link.m40000644000175000017500000010044313421555750015001 0ustar carstencarsten# lib-link.m4 serial 26 (gettext-0.18.2) dnl Copyright (C) 2001-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.54]) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes popdef([NAME]) popdef([Name]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. The missing-message dnl defaults to 'no' and may contain additional hints for the user. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, dnl because these -l options might require -L options that are present in dnl LIBS. -l options benefit only from the -L options listed before it. dnl Otherwise, add it to the front of LIBS, because it may be a static dnl library that depends on another static library that is present in LIBS. dnl Static libraries benefit only from the static libraries listed after dnl it. case " $LIB[]NAME" in *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; *) LIBS="$LIB[]NAME $LIBS" ;; esac AC_LINK_IFELSE( [AC_LANG_PROGRAM([[$3]], [[$4]])], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) popdef([NAME]) popdef([Name]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_libname_spec, dnl acl_library_names_spec, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE([rpath], [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_FROMPACKAGE(name, package) dnl declares that libname comes from the given package. The configure file dnl will then not have a --with-libname-prefix option but a dnl --with-package-prefix option. Several libraries can come from the same dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar dnl macro call that searches for libname. AC_DEFUN([AC_LIB_FROMPACKAGE], [ pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) popdef([PACKUP]) popdef([PACK]) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) dnl Autoconf >= 2.61 supports dots in --with options. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_ARG_WITH(P_A_C_K[-prefix], [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been dnl computed. So it has to be reset here. HAVE_LIB[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi popdef([P_A_C_K]) popdef([PACKLIBS]) popdef([PACKUP]) popdef([PACK]) popdef([NAME]) ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) gerbv-2.7.0/m4/intldir.m40000644000175000017500000000163313421555750014746 0ustar carstencarsten# intldir.m4 serial 2 (gettext-0.18) dnl Copyright (C) 2006, 2009-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. AC_PREREQ([2.52]) dnl Tells the AM_GNU_GETTEXT macro to consider an intl/ directory. AC_DEFUN([AM_GNU_GETTEXT_INTL_SUBDIR], []) gerbv-2.7.0/m4/intmax.m40000644000175000017500000000214313421555750014576 0ustar carstencarsten# intmax.m4 serial 6 (gettext-0.18.2) dnl Copyright (C) 2002-2005, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether the system has the 'intmax_t' type, but don't attempt to dnl find a replacement if it is lacking. AC_DEFUN([gt_TYPE_INTMAX_T], [ AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) AC_REQUIRE([gl_AC_HEADER_STDINT_H]) AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #include #if HAVE_STDINT_H_WITH_UINTMAX #include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX #include #endif ]], [[intmax_t x = -1; return !x;]])], [gt_cv_c_intmax_t=yes], [gt_cv_c_intmax_t=no])]) if test $gt_cv_c_intmax_t = yes; then AC_DEFINE([HAVE_INTMAX_T], [1], [Define if you have the 'intmax_t' type in or .]) fi ]) gerbv-2.7.0/m4/wint_t.m40000644000175000017500000000203513421555750014602 0ustar carstencarsten# wint_t.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2003, 2007-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether has the 'wint_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WINT_T], [ AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ /* Tru64 with Desktop Toolkit C has a bug: must be included before . BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #include #include wint_t foo = (wchar_t)'\0';]], [[]])], [gt_cv_c_wint_t=yes], [gt_cv_c_wint_t=no])]) if test $gt_cv_c_wint_t = yes; then AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.]) fi ]) gerbv-2.7.0/m4/codeset.m40000644000175000017500000000150013421555750014720 0ustar carstencarsten# codeset.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2000-2002, 2006, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], [ AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[char* cs = nl_langinfo(CODESET); return !cs;]])], [am_cv_langinfo_codeset=yes], [am_cv_langinfo_codeset=no]) ]) if test $am_cv_langinfo_codeset = yes; then AC_DEFINE([HAVE_LANGINFO_CODESET], [1], [Define if you have and nl_langinfo(CODESET).]) fi ]) gerbv-2.7.0/m4/progtest.m40000644000175000017500000000604013421555750015145 0ustar carstencarsten# progtest.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1996-2003, 2005, 2008-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. AC_PREREQ([2.50]) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL([ac_cv_path_$1], [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$][$1]) else AC_MSG_RESULT([no]) fi AC_SUBST([$1])dnl ]) gerbv-2.7.0/m4/fcntl-o.m40000644000175000017500000001107413421555750014643 0ustar carstencarsten# fcntl-o.m4 serial 4 dnl Copyright (C) 2006, 2009-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Paul Eggert. # Test whether the flags O_NOATIME and O_NOFOLLOW actually work. # Define HAVE_WORKING_O_NOATIME to 1 if O_NOATIME works, or to 0 otherwise. # Define HAVE_WORKING_O_NOFOLLOW to 1 if O_NOFOLLOW works, or to 0 otherwise. AC_DEFUN([gl_FCNTL_O_FLAGS], [ dnl Persuade glibc to define O_NOATIME and O_NOFOLLOW. dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes dnl AC_GNU_SOURCE. m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])], [AC_REQUIRE([AC_GNU_SOURCE])]) AC_CHECK_HEADERS_ONCE([unistd.h]) AC_CHECK_FUNCS_ONCE([symlink]) AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include #if HAVE_UNISTD_H # include #else /* on Windows with MSVC */ # include # include # defined sleep(n) _sleep ((n) * 1000) #endif #include #ifndef O_NOATIME #define O_NOATIME 0 #endif #ifndef O_NOFOLLOW #define O_NOFOLLOW 0 #endif static int const constants[] = { O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY }; ]], [[ int result = !constants; #if HAVE_SYMLINK { static char const sym[] = "conftest.sym"; if (symlink ("/dev/null", sym) != 0) result |= 2; else { int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0); if (fd >= 0) { close (fd); result |= 4; } } if (unlink (sym) != 0 || symlink (".", sym) != 0) result |= 2; else { int fd = open (sym, O_RDONLY | O_NOFOLLOW); if (fd >= 0) { close (fd); result |= 4; } } unlink (sym); } #endif { static char const file[] = "confdefs.h"; int fd = open (file, O_RDONLY | O_NOATIME); if (fd < 0) result |= 8; else { struct stat st0; if (fstat (fd, &st0) != 0) result |= 16; else { char c; sleep (1); if (read (fd, &c, 1) != 1) result |= 24; else { if (close (fd) != 0) result |= 32; else { struct stat st1; if (stat (file, &st1) != 0) result |= 40; else if (st0.st_atime != st1.st_atime) result |= 64; } } } } } return result;]])], [gl_cv_header_working_fcntl_h=yes], [case $? in #( 4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #( 64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #( 68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #( *) gl_cv_header_working_fcntl_h='no';; esac], [gl_cv_header_working_fcntl_h=cross-compiling])]) case $gl_cv_header_working_fcntl_h in #( *O_NOATIME* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOATIME], [$ac_val], [Define to 1 if O_NOATIME works.]) case $gl_cv_header_working_fcntl_h in #( *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOFOLLOW], [$ac_val], [Define to 1 if O_NOFOLLOW works.]) ]) gerbv-2.7.0/CONTRIBUTORS0000644000175000017500000000607113421555713014377 0ustar carstencarstengEDA GNU Electronic Design Automation ------------------------------------------------------------------------------ gerbv CONTRIBUTORS The peer reviews; Thanks a lot. This is what makes Open Source so fun. Dan McMahill - Fixed 64-bit support - Some additional configure things - Some great feedback on the measure tool thing. - A patch to allow plus sign on the coordinates in a drill file. - The over-all NetBSD and 64-bit guy. - Fixed GCC4 problem that had rotten into the code. Uwe Bonnes - Submitted patches for 'D' flag in Format Statement Dan Christian - Pointed out EagleCad broken Gerber and also sent a patch for fixing this. Fredrik Jonsson - Sent me actual EagleCad files so I saw the bugs. Joachim Jansen - Found and reported several bugs and came with very inspiring ideas which made gerbv take a big leap forward. Wojciech Kazubski - Patch so ./configure --data works. Neil Darlow - Reporting arc draw bug and sending along examples to show the bug. Dino Ghilardi - Pointed out that an 'oval' is different from a geometrical ellypse. - Some other feature requests. - Contributed export PNG functionality! - Came up with the idea and sent me the suggestion in source code on how the superimposing should work! - Wrote PNGPrintMiniHowto and code for explicitly setting the scale. - Hacked together the error popup thing. Bruno Schwander - Patch to configure.in to fit different GTK-versions on FreeBSD - Made me aware of BSD "different" getopt and also sent an example that was already fixed in CVS so I had to make a release. Daniel Dorau - Submitted information on how to generate proper Excellon files from Eagle CAD program. Martin Sigrand - Submitted code for turning all layers on and off. Charles Lepple - Sent in a patch to be able to compile gerbv under Mac OS X and fink. Peter Monta - A patch to support incremental coordinates. Simon Munton - A patch to fix a problem with polygons not always being filled properly. - Another patch to solve circular polygon outline by approximating them with a number of short segments. Peter Brueckner - A patch to fix that some gerbers has for instance G4 instead of G04. Juergen Haas - Written code fo select, find and mark parts from "pick and place" files. - MINGW32 WINDOWS port. Tomasz Motylewski - Removed potential dependencies on mmap for porting to mingw. - Helped Juergen Haas with above mentioned "part finder" and MINGW32 code. Dimitri - Patch, complete with updated man page, to be able to read tools file from for instance Eagle CAD. Stefan Thiede - Found some ugly bugs in the polygon area. - Suggested use of z, Z and f. Richard Lightman - Found a bug in handling negative image polarity in combination with layer polarity and sent in a patch for that. gerbv-2.7.0/config.h.in0000644000175000017500000004477613421555754014565 0ustar carstencarsten/* config.h.in. Generated from configure.ac by autoheader. */ /* Relative path from bindir to datadir */ #undef BINDIR_TO_DATADIR /* Relative path from bindir to exec_prefix */ #undef BINDIR_TO_EXECPREFIX /* Relative path from bindir to pkgdatadir */ #undef BINDIR_TO_PKGDATADIR /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP systems. This function is required for `alloca.c' support on those systems. */ #undef CRAY_STACKSEG_END /* Define to 1 if using `alloca.c'. */ #undef C_ALLOCA /* Define to 1 to enable debugging code */ #undef DEBUG /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Default border coefficient for export */ #undef GERBV_DEFAULT_BORDER_COEFF /* Default unit to display in statusbar */ #undef GERBV_DEFAULT_UNIT /* Directory separator char */ #undef GERBV_DIR_SEPARATOR_C /* Directory separator string */ #undef GERBV_DIR_SEPARATOR_S /* Search path separator string */ #undef GERBV_PATH_DELIMETER /* Define to 1 if you have `alloca', as a function or macro. */ #undef HAVE_ALLOCA /* Define to 1 if you have and it should be used (not on Ultrix). */ #undef HAVE_ALLOCA_H /* Define to 1 if you have the `argz_count' function. */ #undef HAVE_ARGZ_COUNT /* Define to 1 if you have the header file. */ #undef HAVE_ARGZ_H /* Define to 1 if you have the `argz_next' function. */ #undef HAVE_ARGZ_NEXT /* Define to 1 if you have the `argz_stringify' function. */ #undef HAVE_ARGZ_STRINGIFY /* Define to 1 if you have the `asprintf' function. */ #undef HAVE_ASPRINTF /* Define to 1 if the compiler understands __builtin_expect. */ #undef HAVE_BUILTIN_EXPECT /* Define to 1 if you have the `canonicalize_file_name' function. */ #undef HAVE_CANONICALIZE_FILE_NAME /* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_FEOF_UNLOCKED /* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_FGETS_UNLOCKED /* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_GETC_UNLOCKED /* Define to 1 if you have the declaration of `_snprintf', and to 0 if you don't. */ #undef HAVE_DECL__SNPRINTF /* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you don't. */ #undef HAVE_DECL__SNWPRINTF /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_FEATURES_H /* Define to 1 if you have the `fwprintf' function. */ #undef HAVE_FWPRINTF /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD /* Define to 1 if you have the `getegid' function. */ #undef HAVE_GETEGID /* Define to 1 if you have the `geteuid' function. */ #undef HAVE_GETEUID /* Define to 1 if you have the `getgid' function. */ #undef HAVE_GETGID /* Define to 1 if you have the header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the `getopt_long' function. */ #undef HAVE_GETOPT_LONG /* Define to 1 if you have the `getpagesize' function. */ #undef HAVE_GETPAGESIZE /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the `getuid' function. */ #undef HAVE_GETUID /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define if you have the 'intmax_t' type in or . */ #undef HAVE_INTMAX_T /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_INTTYPES_H_WITH_UINTMAX /* Define if you have and nl_langinfo(CODESET). */ #undef HAVE_LANGINFO_CODESET /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the `dl' library (-ldl). */ #undef HAVE_LIBDL /* Define to 1 if you have the `dxflib' library (-ldxflib). */ #undef HAVE_LIBDXFLIB /* Define to 1 if you have the `efence' library (-lefence). */ #undef HAVE_LIBEFENCE /* Define to 1 if you have the header file. */ #undef HAVE_LIBGEN_H /* Define to 1 if you have the `m' library (-lm). */ #undef HAVE_LIBM /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if the system has the type 'long long int'. */ #undef HAVE_LONG_LONG_INT /* Define to 1 if you have the `mbrtowc' function. */ #undef HAVE_MBRTOWC /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mempcpy' function. */ #undef HAVE_MEMPCPY /* Define to 1 if you have a working `mmap' system call. */ #undef HAVE_MMAP /* Define to 1 if you have the `munmap' function. */ #undef HAVE_MUNMAP /* Define to 1 if you have the `newlocale' function. */ #undef HAVE_NEWLOCALE /* Define if your printf() function supports format strings with positions. */ #undef HAVE_POSIX_PRINTF /* Define if the defines PTHREAD_MUTEX_RECURSIVE. */ #undef HAVE_PTHREAD_MUTEX_RECURSIVE /* Define if the POSIX multithreading library has read/write locks. */ #undef HAVE_PTHREAD_RWLOCK /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH /* Define to 1 if you have the header file. */ #undef HAVE_REGEX_H /* Define to 1 if you have the `setenv' function. */ #undef HAVE_SETENV /* Define to 1 if you have the `setlocale' function. */ #undef HAVE_SETLOCALE /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_STDINT_H_WITH_UINTMAX /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `stpcpy' function. */ #undef HAVE_STPCPY /* Define to 1 if you have the `strcasecmp' function. */ #undef HAVE_STRCASECMP /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strlwr' function. */ #undef HAVE_STRLWR /* Define to 1 if you have the `strnlen' function. */ #undef HAVE_STRNLEN /* Define to 1 if you have the `strtoul' function. */ #undef HAVE_STRTOUL /* Define to 1 if you have the `symlink' function. */ #undef HAVE_SYMLINK /* Define to 1 if you have the header file. */ #undef HAVE_SYS_MMAN_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PARAM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_TIME_H /* Define to 1 if you have the `tsearch' function. */ #undef HAVE_TSEARCH /* Define if you have the 'uintmax_t' type in or . */ #undef HAVE_UINTMAX_T /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if the system has the type 'unsigned long long int'. */ #undef HAVE_UNSIGNED_LONG_LONG_INT /* Define to 1 if you have the `uselocale' function. */ #undef HAVE_USELOCALE /* Define to 1 or 0, depending whether the compiler supports simple visibility declarations. */ #undef HAVE_VISIBILITY /* Define if you have the 'wchar_t' type. */ #undef HAVE_WCHAR_T /* Define to 1 if you have the `wcrtomb' function. */ #undef HAVE_WCRTOMB /* Define to 1 if you have the `wcslen' function. */ #undef HAVE_WCSLEN /* Define to 1 if you have the `wcsnlen' function. */ #undef HAVE_WCSNLEN /* Define if you have the 'wint_t' type. */ #undef HAVE_WINT_T /* Define to 1 if O_NOATIME works. */ #undef HAVE_WORKING_O_NOATIME /* Define to 1 if O_NOFOLLOW works. */ #undef HAVE_WORKING_O_NOFOLLOW /* Define to 1 if you have the `__fsetlocking' function. */ #undef HAVE___FSETLOCKING /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST /* Define if integer division by zero raises signal SIGFPE. */ #undef INTDIV0_RAISES_SIGFPE /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define if canonicalize_file_name is not declared in system header files. */ #undef NEED_DECLARATION_CANONICALIZE_FILE_NAME /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define if exists and defines unusable PRI* macros. */ #undef PRI_MACROS_BROKEN /* Define if the pthread_in_use() detection is hard. */ #undef PTHREAD_IN_USE_DETECTION_HARD /* Define as the maximum value of type 'size_t', if the system doesn't define it. */ #ifndef SIZE_MAX # undef SIZE_MAX #endif /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at runtime. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Scheme interpreter not used standalone */ #undef STANDALONE /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* DL Sun method */ #undef SUN_DL /* ASCII names in Scheme interpreter */ #undef USE_ASCII_NAMES /* Colon Hooks in Scheme interpreter */ #undef USE_COLON_HOOKS /* Dynamic linking in Scheme interpreter */ #undef USE_DL /* Use extension interface of Scheme interpreter */ #undef USE_INTERFACE /* Math in Scheme interpreter */ #undef USE_MATH /* Define if the POSIX multithreading library can be used. */ #undef USE_POSIX_THREADS /* Define if references to the POSIX multithreading library should be made weak. */ #undef USE_POSIX_THREADS_WEAK /* Define if the GNU Pth multithreading library can be used. */ #undef USE_PTH_THREADS /* Define if references to the GNU Pth multithreading library should be made weak. */ #undef USE_PTH_THREADS_WEAK /* Define if the old Solaris multithreading library can be used. */ #undef USE_SOLARIS_THREADS /* Define if references to the old Solaris multithreading library should be made weak. */ #undef USE_SOLARIS_THREADS_WEAK /* String Hooks in Scheme interpreter */ #undef USE_STRING_HOOKS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Define if the native Windows multithreading API can be used. */ #undef USE_WINDOWS_THREADS /* Version number of package */ #undef VERSION /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE /* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see . Suppress extern inline with Sun C in standards-conformance mode, as it mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. Suppress the use of extern inline on problematic Apple configurations. OS X 10.8 and earlier mishandle it; see, e.g., . OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and for clang but remains for g++; see . Perhaps Apple will fix this some day. */ #if (defined __APPLE__ \ && (defined __header_inline \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ && (defined __GNUC__ || defined __cplusplus)) \ || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ && defined __GNUC__ && ! defined __cplusplus)))) # define _GL_EXTERN_INLINE_APPLE_BUG #endif #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : (199901L <= __STDC_VERSION__ \ && !defined __HP_cc \ && !(defined __SUNPRO_C && __STDC__))) \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline # define _GL_EXTERN_INLINE_IN_USE #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif /* Suppress GCC's bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see . */ # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define as the type of the result of subtracting two pointers, if the system doesn't define it. */ #undef ptrdiff_t /* Define to `unsigned int' if does not define. */ #undef size_t /* Define to unsigned long or unsigned long long if and don't define. */ #undef uintmax_t #define __libc_lock_t gl_lock_t #define __libc_lock_define gl_lock_define #define __libc_lock_define_initialized gl_lock_define_initialized #define __libc_lock_init gl_lock_init #define __libc_lock_lock gl_lock_lock #define __libc_lock_unlock gl_lock_unlock #define __libc_lock_recursive_t gl_recursive_lock_t #define __libc_lock_define_recursive gl_recursive_lock_define #define __libc_lock_define_initialized_recursive gl_recursive_lock_define_initialized #define __libc_lock_init_recursive gl_recursive_lock_init #define __libc_lock_lock_recursive gl_recursive_lock_lock #define __libc_lock_unlock_recursive gl_recursive_lock_unlock #define glthread_in_use libintl_thread_in_use #define glthread_lock_init_func libintl_lock_init_func #define glthread_lock_lock_func libintl_lock_lock_func #define glthread_lock_unlock_func libintl_lock_unlock_func #define glthread_lock_destroy_func libintl_lock_destroy_func #define glthread_rwlock_init_multithreaded libintl_rwlock_init_multithreaded #define glthread_rwlock_init_func libintl_rwlock_init_func #define glthread_rwlock_rdlock_multithreaded libintl_rwlock_rdlock_multithreaded #define glthread_rwlock_rdlock_func libintl_rwlock_rdlock_func #define glthread_rwlock_wrlock_multithreaded libintl_rwlock_wrlock_multithreaded #define glthread_rwlock_wrlock_func libintl_rwlock_wrlock_func #define glthread_rwlock_unlock_multithreaded libintl_rwlock_unlock_multithreaded #define glthread_rwlock_unlock_func libintl_rwlock_unlock_func #define glthread_rwlock_destroy_multithreaded libintl_rwlock_destroy_multithreaded #define glthread_rwlock_destroy_func libintl_rwlock_destroy_func #define glthread_recursive_lock_init_multithreaded libintl_recursive_lock_init_multithreaded #define glthread_recursive_lock_init_func libintl_recursive_lock_init_func #define glthread_recursive_lock_lock_multithreaded libintl_recursive_lock_lock_multithreaded #define glthread_recursive_lock_lock_func libintl_recursive_lock_lock_func #define glthread_recursive_lock_unlock_multithreaded libintl_recursive_lock_unlock_multithreaded #define glthread_recursive_lock_unlock_func libintl_recursive_lock_unlock_func #define glthread_recursive_lock_destroy_multithreaded libintl_recursive_lock_destroy_multithreaded #define glthread_recursive_lock_destroy_func libintl_recursive_lock_destroy_func #define glthread_once_func libintl_once_func #define glthread_once_singlethreaded libintl_once_singlethreaded #define glthread_once_multithreaded libintl_once_multithreaded gerbv-2.7.0/config.guess0000755000175000017500000012564413423533412015041 0ustar carstencarsten#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2016 Free Software Foundation, Inc. timestamp='2016-10-02' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2016 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` machine=${arch}${endian}-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. case "${UNAME_MACHINE_ARCH}" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # Determine ABI tags. case "${UNAME_MACHINE_ARCH}" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; *:Sortix:*:*) echo ${UNAME_MACHINE}-unknown-sortix exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE=alpha ;; "EV4.5 (21064)") UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") UNAME_MACHINE=alpha ;; "EV5 (21164)") UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH=x86_64 fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = hppa2.0w ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH=hppa2.0w else HP_ARCH=hppa64 fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; e2k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; k1om:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; mips64el:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; SX-ACE:SUPER-UX:*:*) echo sxace-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'` exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac cat >&2 </dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gerbv-2.7.0/JOURNAL.txt0000644000175000017500000000170113421555713014365 0ustar carstencarstenThis file is intended to be a scratch pad storing design, implementation notes, questions and answers, short term TODO lists etc. Feel free to put anything here. Q:if the widget interface.main_window is destroyed, will it be NULL? several combinations of loading/ unloading gerberfiles and destroying the search dialog hint at it still exists and checking with if (interface.main_window) is not enough A: without looking into details, destroying (freeing) a pointer never sets it automatically to NULL. If it is important to know whether a pointer is valid, one should do free(ptr); ptr=NULL; or even if(ptr) free(ptr); ptr = NULL; -- Tomek What will follow is the list of dynamically allocated objects, places where and when they are allocated and freed. -- pnp files project files will only be included with the layer number and colour, not with the selected objects instead of a log message I would like to use the statusbar, any objections? (Stefan?) gerbv-2.7.0/example/0000755000175000017500000000000013423533412014140 5ustar carstencarstengerbv-2.7.0/example/ekf2/0000755000175000017500000000000013423533412014767 5ustar carstencarstengerbv-2.7.0/example/ekf2/README.txt0000644000175000017500000000037513421555713016500 0ustar carstencarstenThis is a design from Joachim Jansen (EKF Elektronik GmbH Industrial Computers & Information Technology) who kindly sent this files to debug our design. Don't try to build it; it is broken and will only serve as a great example on gerber files. $Id$ gerbv-2.7.0/example/ekf2/pow3.grb0000644000175000017500000051645513421555714016402 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1426Y976D02* X7834D01* X7835Y965D02* X1425D01* Y4972D01* X1426Y4776D02* X1826D01* Y4784D02* X1426D01* X1826Y4780D02* X1426D01* Y4772D02* X1826D01* X1426Y4768D02* X1826D01* Y4760D02* X1426D01* X1826Y4764D02* X1426D01* Y4756D02* X1826D01* X1426Y4752D02* X1826D01* Y4792D02* X1426D01* X1826Y4788D02* X1426D01* Y4796D02* X1826D01* X1426Y4800D02* X1826D01* X1426Y4804D02* X1826D01* Y4848D02* X1426D01* X1826Y4844D02* X1426D01* Y4852D02* X1826D01* X1426Y4856D02* X1826D01* Y4860D02* X1426D01* X1826Y4864D02* X1426D01* X1826Y4868D02* X1426D01* Y4876D02* X1826D01* X1426Y4872D02* X1826D01* X1831Y4898D02* X1827Y4894D01* X1826Y4880D02* X1426D01* X1826Y4884D02* X1426D01* Y4888D02* X1826D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5887D02* Y5037D01* X7834Y4960D02* X1426D01* Y4956D02* X7834D01* X7748Y4892D02* X7834D01* Y4896D02* X7744D01* X7834Y4940D02* X1426D01* Y4936D02* X7834D01* X7769Y4872D02* X7834D01* Y4876D02* X7765D01* X7834Y4952D02* X1426D01* Y4924D02* X7834D01* X7781Y4852D02* X7834D01* Y4856D02* X7781D01* X7834Y4900D02* X1426D01* Y4904D02* X7834D01* X7778Y4863D02* X7743Y4897D01* X7740Y4898D01* X1831D01* X1828Y4896D02* X1426D01* X1826Y4892D02* X1426D01* Y4812D02* X1826D01* X1426Y4808D02* X1826D01* X1850Y4937D02* X1500D01* X1426Y4680D02* X1826D01* X1426Y4684D02* X1826D01* Y4688D02* X1426D01* X1826Y4692D02* X1426D01* Y4656D02* X1826D01* X1426Y4652D02* X1826D01* X1426Y4648D02* X1826D01* Y4640D02* X1426D01* X1826Y4644D02* X1426D01* Y4636D02* X1826D01* X1426Y4632D02* X1826D01* Y4584D02* X1426D01* X1826Y4588D02* X1426D01* X1826Y4592D02* X1426D01* Y4596D02* X1826D01* X1426Y4600D02* X1826D01* Y4612D02* X1426D01* X1826Y4608D02* X1426D01* X1826Y4604D02* X1426D01* Y4580D02* X1826D01* X1426Y4576D02* X1826D01* Y4568D02* X1426D01* X1826Y4572D02* X1426D01* Y4564D02* X1826D01* X1426Y4560D02* X1826D01* X1426Y4556D02* X1826D01* Y4440D02* X1426D01* X1826Y4444D02* X1426D01* Y4452D02* X1826D01* X1426Y4448D02* X1826D01* Y4456D02* X1426D01* X1826Y4460D02* X1426D01* Y4464D02* X1826D01* X1426Y4468D02* X1826D01* X1426Y4472D02* X1826D01* Y4480D02* X1426D01* X1826Y4476D02* X1426D01* Y4436D02* X1826D01* X1426Y4432D02* X1826D01* X1426Y4428D02* X1826D01* Y4424D02* X1426D01* X1826Y4420D02* X1426D01* Y4412D02* X1826D01* X1426Y4416D02* X1826D01* Y4408D02* X1426D01* X1826Y4404D02* X1426D01* X1826Y4400D02* X1426D01* Y4396D02* X1826D01* X1426Y4392D02* X1826D01* Y4384D02* X1426D01* X1826Y4388D02* X1426D01* Y4380D02* X1826D01* X1426Y4376D02* X1826D01* Y4372D02* X1426D01* X1826Y4368D02* X1426D01* X1826Y4364D02* X1426D01* Y4300D02* X1826D01* X1426Y4304D02* X1826D01* X1426Y4308D02* X1826D01* Y4312D02* X1426D01* X1826Y4316D02* X1426D01* Y4324D02* X1826D01* X1426Y4320D02* X1826D01* Y4328D02* X1426D01* X1826Y4332D02* X1426D01* Y4336D02* X1826D01* X1426Y4340D02* X1826D01* X1426Y4344D02* X1826D01* Y4704D02* X1426D01* X1826Y4708D02* X1426D01* Y4700D02* X1826D01* X1426Y4696D02* X1826D01* Y4676D02* X1426D01* X1826Y4672D02* X1426D01* X1826Y4668D02* X1426D01* Y4660D02* X1826D01* X1426Y4664D02* X1826D01* Y4512D02* X1426D01* X1826Y4516D02* X1426D01* Y4508D02* X1826D01* X1426Y4504D02* X1826D01* Y4520D02* X1426D01* X1826Y4524D02* X1426D01* X1826Y4528D02* X1426D01* Y4532D02* X1826D01* X1426Y4536D02* X1826D01* Y4544D02* X1426D01* X1826Y4540D02* X1426D01* Y4548D02* X1826D01* X1426Y4552D02* X1826D01* X1441Y4543D02* Y4465D01* X1426Y4488D02* X1826D01* X1426Y4484D02* X1826D01* Y4492D02* X1426D01* X1826Y4496D02* X1426D01* X1826Y4500D02* X1426D01* Y4628D02* X1826D01* X1426Y4624D02* X1826D01* Y4620D02* X1426D01* X1826Y4616D02* X1426D01* X1500Y4543D02* Y4937D01* X1826Y4840D02* X1426D01* Y4836D02* X1826D01* X1426Y4832D02* X1826D01* Y4824D02* X1426D01* X1826Y4828D02* X1426D01* Y4820D02* X1826D01* X1426Y4816D02* X1826D01* Y4712D02* X1426D01* X1826Y4716D02* X1426D01* X1826Y4720D02* X1426D01* Y4724D02* X1826D01* X1426Y4728D02* X1826D01* Y4740D02* X1426D01* X1826Y4736D02* X1426D01* X1826Y4732D02* X1426D01* Y4748D02* X1826D01* X1426Y4744D02* X1826D01* X1827Y4894D02* Y3847D01* X1426Y3660D02* X1873D01* Y3664D02* X1426D01* X1700Y3768D02* X1426D01* X1700Y3772D02* X1426D01* Y3796D02* X1700D01* X1426Y3800D02* X1700D01* X1426Y4088D02* X1826D01* Y4096D02* X1426D01* X1826Y4092D02* X1426D01* Y4100D02* X1826D01* X1426Y4104D02* X1826D01* X1705Y3847D02* X1701Y3843D01* X1426Y4008D02* X1826D01* X1426Y4012D02* X1826D01* Y4016D02* X1426D01* X1826Y4020D02* X1426D01* Y4028D02* X1826D01* X1426Y4032D02* X1826D01* Y4036D02* X1426D01* X1826Y4040D02* X1426D01* X1702Y3844D02* X1426D01* Y3840D02* X1700D01* X1426Y3912D02* X1826D01* X1426Y3908D02* X1826D01* Y3904D02* X1426D01* X1826Y3900D02* X1426D01* Y3892D02* X1826D01* X1426Y3888D02* X1826D01* Y3884D02* X1426D01* X1826Y3880D02* X1426D01* X1700Y3836D02* X1426D01* Y3832D02* X1700D01* X1426Y3944D02* X1826D01* X1426Y3948D02* X1826D01* Y3952D02* X1426D01* X1826Y3956D02* X1426D01* Y3940D02* X1826D01* X1426Y3936D02* X1826D01* X1426Y3932D02* X1826D01* Y4044D02* X1426D01* X1826Y4048D02* X1426D01* X1700Y3776D02* X1426D01* Y3780D02* X1700D01* X1426Y3856D02* X1826D01* X1426Y3852D02* X1826D01* X1426Y3676D02* X1873D01* X1874Y3677D02* X1705D01* X1873Y3592D02* X1426D01* X1873Y3596D02* X1426D01* Y3612D02* X1873D01* X1426Y3616D02* X1873D01* Y3620D02* X1426D01* X1873Y3624D02* X1426D01* X1700Y3692D02* X1426D01* Y3680D02* X1700D01* X1426Y3336D02* X1873D01* X1426Y3340D02* X1873D01* Y3328D02* X1426D01* X1873Y3332D02* X1426D01* Y3324D02* X1873D01* X1426Y3320D02* X1873D01* Y3316D02* X1426D01* X1873Y3312D02* X1426D01* X1873Y3308D02* X1426D01* Y3268D02* X1873D01* X1426Y3264D02* X1873D01* X1426Y3260D02* X1873D01* Y3256D02* X1426D01* X1873Y3252D02* X1426D01* Y3244D02* X1873D01* X1426Y3248D02* X1873D01* Y3240D02* X1426D01* X1873Y3236D02* X1426D01* Y3232D02* X1873D01* X1426Y3228D02* X1873D01* X1426Y3224D02* X1873D01* Y3216D02* X1426D01* X1873Y3220D02* X1426D01* Y3348D02* X1873D01* X1426Y3344D02* X1873D01* Y3352D02* X1426D01* X1873Y3356D02* X1426D01* X1873Y3360D02* X1426D01* Y3372D02* X1873D01* X1426Y3376D02* X1873D01* X1426Y3380D02* X1873D01* Y3384D02* X1426D01* X1873Y3388D02* X1426D01* Y3484D02* X1873D01* X1426Y3488D02* X1873D01* Y3492D02* X1426D01* X1873Y3496D02* X1426D01* X1700Y3688D02* X1426D01* Y3684D02* X1700D01* X1426Y3656D02* X1873D01* Y3628D02* X1426D01* X1873Y3632D02* X1426D01* X1873Y3636D02* X1426D01* Y3652D02* X1873D01* X1426Y3648D02* X1873D01* Y3644D02* X1426D01* X1873Y3640D02* X1426D01* X1700Y3740D02* X1426D01* Y3744D02* X1700D01* X1426Y3576D02* X1873D01* X1426Y3580D02* X1873D01* Y3584D02* X1426D01* X1873Y3588D02* X1426D01* Y3572D02* X1873D01* X1426Y3568D02* X1873D01* X1426Y3564D02* X1873D01* Y3536D02* X1426D01* X1700Y3764D02* X1426D01* Y3760D02* X1700D01* X1426Y3600D02* X1873D01* Y3604D02* X1426D01* X1873Y3608D02* X1426D01* X1700Y3712D02* X1426D01* Y3708D02* X1700D01* X1426Y3480D02* X1873D01* X1426Y3476D02* X1873D01* Y3472D02* X1426D01* X1700Y3752D02* X1426D01* X1700Y3756D02* X1426D01* Y3748D02* X1700D01* X1426Y3448D02* X1873D01* X1426Y3452D02* X1873D01* Y3456D02* X1426D01* X1873Y3460D02* X1426D01* Y3468D02* X1873D01* X1426Y3464D02* X1873D01* X1874Y3677D02* Y2894D01* X1873Y2896D02* X1426D01* X1739Y2824D02* X1426D01* X1558Y2692D02* X1426D01* Y2696D02* X1558D01* X1426Y2952D02* X1873D01* X1426Y2956D02* X1873D01* Y2900D02* X1426D01* X1739Y2740D02* X1426D01* X1660Y2580D02* X1426D01* X1558Y2652D02* X1426D01* X1558Y2648D02* X1426D01* Y2640D02* X1558D01* X1426Y2644D02* X1558D01* X1426Y2516D02* X1660D01* Y2512D02* X1426D01* X1660Y2508D02* X1426D01* X1560Y2608D02* X1426D01* Y2624D02* X1558D01* X1426Y2620D02* X1558D01* X1426Y2432D02* X1660D01* Y2424D02* X1426D01* X1660Y2428D02* X1426D01* Y2420D02* X1660D01* X1426Y2416D02* X1660D01* X1661Y2268D02* X1579D01* X1426Y2400D02* X1660D01* X1426Y2404D02* X1660D01* Y2408D02* X1426D01* X1660Y2412D02* X1426D01* Y2436D02* X1660D01* X1426Y2440D02* X1660D01* Y2444D02* X1426D01* X1660Y2448D02* X1426D01* X1563Y2606D02* X1559Y2610D01* X1558Y2668D02* X1426D01* Y2664D02* X1558D01* X1426Y2928D02* X1873D01* Y2940D02* X1426D01* X1660Y2564D02* X1426D01* X1660Y2568D02* X1426D01* Y2636D02* X1558D01* X1563Y2736D02* X1559Y2732D01* X1426Y2904D02* X1873D01* Y2908D02* X1426D01* X1660Y2576D02* X1426D01* X1660Y2572D02* X1426D01* X1558Y2612D02* X1426D01* Y2616D02* X1558D01* X1426Y2556D02* X1660D01* X1426Y2560D02* X1660D01* X1426Y2924D02* X1873D01* Y2920D02* X1426D01* X1558Y2672D02* X1426D01* Y2688D02* X1558D01* X1426Y2684D02* X1558D01* X1426Y2856D02* X1739D01* X1426Y3048D02* X1873D01* Y3044D02* X1426D01* X1739Y2764D02* X1426D01* Y2772D02* X1739D01* X1426Y3076D02* X1873D01* Y3084D02* X1426D01* X1873Y3080D02* X1426D01* X1739Y2872D02* X1426D01* X1558Y2720D02* X1426D01* Y2724D02* X1558D01* X1426Y2808D02* X1739D01* X1426Y3104D02* X1873D01* Y3108D02* X1426D01* X1873Y3112D02* X1426D01* X1739Y2864D02* X1426D01* Y2860D02* X1739D01* X1426Y3168D02* X1873D01* X1426Y3164D02* X1873D01* Y3160D02* X1426D01* X1744Y2894D02* X1874D01* X1873Y3208D02* X1426D01* X1873Y3212D02* X1426D01* Y3204D02* X1873D01* X1426Y3200D02* X1873D01* X1426Y3196D02* X1873D01* Y3304D02* X1426D01* X1873Y3300D02* X1426D01* Y3296D02* X1873D01* X1426Y3292D02* X1873D01* X1426Y3288D02* X1873D01* Y3280D02* X1426D01* X1873Y3284D02* X1426D01* Y3276D02* X1873D01* X1426Y3272D02* X1873D01* Y3188D02* X1426D01* X1873Y3192D02* X1426D01* X1739Y2880D02* X1426D01* Y2876D02* X1739D01* X1426Y3152D02* X1873D01* X1426Y3156D02* X1873D01* Y3148D02* X1426D01* X1739Y2844D02* X1426D01* Y2840D02* X1739D01* X1740Y2890D02* Y2736D01* X1426Y2972D02* X1873D01* Y3004D02* X1426D01* X1873Y3008D02* X1426D01* X1739Y2784D02* X1426D01* X1660Y2600D02* X1426D01* Y2604D02* X1660D01* X1563Y2606D02* X1661D01* X1426Y2768D02* X1739D01* X1426Y2980D02* X1873D01* Y2976D02* X1426D01* X1739Y2804D02* X1426D01* Y2812D02* X1739D01* X1426Y3088D02* X1873D01* X1426Y3092D02* X1873D01* Y3132D02* X1426D01* X1739Y2820D02* X1426D01* Y2816D02* X1739D01* X1426Y2960D02* X1873D01* Y2964D02* X1426D01* X1739Y2736D02* X1426D01* X1660Y2584D02* X1426D01* Y2592D02* X1660D01* X1426Y2596D02* X1660D01* X1426Y2752D02* X1739D01* X1426Y3060D02* X1873D01* Y3052D02* X1426D01* X1873Y3056D02* X1426D01* X1739Y2848D02* X1426D01* Y2852D02* X1739D01* X1426Y3136D02* X1873D01* X1426Y3140D02* X1873D01* Y3144D02* X1426D01* X1742Y2892D02* X1426D01* Y2888D02* X1739D01* X1426Y3064D02* X1873D01* Y3068D02* X1426D01* X1873Y3072D02* X1426D01* X1739Y2788D02* X1426D01* Y2780D02* X1739D01* X1426Y3012D02* X1873D01* Y3020D02* X1426D01* X1873Y3016D02* X1426D01* X1558Y2708D02* X1426D01* Y2704D02* X1558D01* X1426Y2760D02* X1739D01* X1426Y2916D02* X1873D01* Y2912D02* X1426D01* X1739Y2796D02* X1426D01* Y2828D02* X1739D01* X1426Y3024D02* X1873D01* Y3028D02* X1426D01* X1739Y2744D02* X1426D01* X1558Y2716D02* X1426D01* Y2712D02* X1558D01* X1426Y3000D02* X1873D01* Y2996D02* X1426D01* X1739Y2748D02* X1426D01* Y2700D02* X1558D01* X1559Y2732D02* Y2610D01* X1426Y2492D02* X1660D01* X1426Y2496D02* X1660D01* Y2500D02* X1426D01* X1660Y2504D02* X1426D01* X1660Y2452D02* X1426D01* X1660Y2456D02* X1426D01* X1660Y2460D02* X1426D01* Y2464D02* X1660D01* X1426Y2468D02* X1660D01* Y2476D02* X1426D01* X1660Y2472D02* X1426D01* Y2480D02* X1660D01* X1426Y2484D02* X1660D01* X1426Y2488D02* X1660D01* Y2520D02* X1426D01* X1660Y2524D02* X1426D01* X1558Y2628D02* X1426D01* Y2632D02* X1558D01* X1426Y2588D02* X1660D01* X1426Y2756D02* X1739D01* X1426Y2932D02* X1873D01* Y2936D02* X1426D01* X1558Y2728D02* X1426D01* Y2732D02* X1558D01* X1426Y2776D02* X1739D01* X1426Y2948D02* X1873D01* Y2944D02* X1426D01* X1739Y2792D02* X1426D01* X1558Y2676D02* X1426D01* Y2680D02* X1558D01* X1426Y2984D02* X1873D01* Y2988D02* X1426D01* X1873Y2992D02* X1426D01* X1739Y2832D02* X1426D01* Y2836D02* X1739D01* X1426Y3120D02* X1873D01* X1426Y3116D02* X1873D01* Y3124D02* X1426D01* X1873Y3128D02* X1426D01* X1739Y2884D02* X1426D01* Y2868D02* X1739D01* X1426Y3184D02* X1873D01* X1426Y3180D02* X1873D01* Y3172D02* X1426D01* X1873Y3176D02* X1426D01* X1740Y2890D02* X1744Y2894D01* X1873Y3096D02* X1426D01* X1873Y3100D02* X1426D01* Y2968D02* X1873D01* X1740Y2736D02* X1563D01* X1426Y3032D02* X1873D01* X1426Y3036D02* X1873D01* Y3040D02* X1426D01* X1739Y2800D02* X1426D01* X1558Y2660D02* X1426D01* Y2656D02* X1558D01* X1426Y2548D02* X1660D01* X1426Y2544D02* X1660D01* X1426Y2552D02* X1660D01* Y2532D02* X1426D01* X1660Y2528D02* X1426D01* Y2536D02* X1660D01* X1426Y2540D02* X1660D01* X1661Y2606D02* Y2268D01* X1426Y2396D02* X1660D01* X1426Y2392D02* X1660D01* X1426Y2388D02* X1660D01* Y2380D02* X1426D01* X1660Y2384D02* X1426D01* X1574Y2264D02* X1426D01* X1660Y2268D02* X1426D01* Y2292D02* X1660D01* X1426Y2288D02* X1660D01* X1579Y2268D02* X1575Y2264D01* X1426Y2320D02* X1660D01* X1426Y2316D02* X1660D01* Y2308D02* X1426D01* X1660Y2312D02* X1426D01* X1574Y2232D02* X1426D01* Y2236D02* X1574D01* X1426Y2240D02* X1574D01* X1426Y2376D02* X1660D01* X1426Y2372D02* X1660D01* Y2348D02* X1426D01* X1660Y2344D02* X1426D01* X1574Y2228D02* X1426D01* Y2224D02* X1574D01* X1579Y2134D02* X1661D01* X1660Y2132D02* X1426D01* X1574Y2156D02* X1426D01* Y2152D02* X1574D01* X1426Y2076D02* X1660D01* Y2084D02* X1426D01* X1660Y2080D02* X1426D01* X1574Y2192D02* X1426D01* X1574Y2188D02* X1426D01* Y2180D02* X1574D01* X1426Y2184D02* X1574D01* X1426Y2112D02* X1660D01* Y2108D02* X1426D01* X1660Y2104D02* X1426D01* X1575Y2136D02* X1426D01* Y2144D02* X1574D01* X1426Y2140D02* X1574D01* X1426Y2088D02* X1660D01* X1426Y2092D02* X1660D01* Y2100D02* X1426D01* X1660Y2096D02* X1426D01* X1575Y2138D02* Y2264D01* X1660Y2352D02* X1426D01* X1660Y2356D02* X1426D01* Y2324D02* X1660D01* X1426Y2328D02* X1660D01* X1426Y2332D02* X1660D01* Y2340D02* X1426D01* X1660Y2336D02* X1426D01* X1574Y2260D02* X1426D01* Y2252D02* X1574D01* X1426Y2256D02* X1574D01* X1426Y2272D02* X1660D01* X1426Y2276D02* X1660D01* Y2284D02* X1426D01* X1660Y2280D02* X1426D01* X1574Y2216D02* X1426D01* X1574Y2220D02* X1426D01* Y2212D02* X1574D01* X1426Y2208D02* X1574D01* X1426Y2296D02* X1660D01* Y2300D02* X1426D01* X1660Y2304D02* X1426D01* X1574Y2248D02* X1426D01* Y2244D02* X1574D01* X1426Y2368D02* X1660D01* X1426Y2364D02* X1660D01* Y2360D02* X1426D01* X1574Y2204D02* X1426D01* Y2148D02* X1574D01* X1426Y2124D02* X1660D01* Y2128D02* X1426D01* X1574Y2176D02* X1426D01* X1574Y2172D02* X1426D01* X1574Y2168D02* X1426D01* Y2196D02* X1574D01* X1426Y2200D02* X1574D01* X1426Y2120D02* X1660D01* Y2116D02* X1426D01* X1574Y2164D02* X1426D01* Y2160D02* X1574D01* X1575Y2138D02* X1579Y2134D01* X1426Y2068D02* X1660D01* Y2072D02* X1426D01* X1562Y1956D02* X1426D01* Y1952D02* X1562D01* X1567Y1976D02* X1563Y1972D01* X1426Y2032D02* X1660D01* X1426Y2036D02* X1660D01* Y2044D02* X1426D01* X1660Y2040D02* X1426D01* X1567Y1976D02* X1661D01* X1660Y1984D02* X1426D01* Y1976D02* X1566D01* X1426Y2008D02* X1660D01* X1426Y2004D02* X1660D01* Y2000D02* X1426D01* X1562Y1964D02* X1426D01* Y1960D02* X1562D01* X1426Y2060D02* X1660D01* Y2064D02* X1426D01* X1562Y1936D02* X1426D01* X1562Y1932D02* X1426D01* Y1924D02* X1562D01* X1426Y1928D02* X1562D01* X1426Y2024D02* X1660D01* X1426Y2020D02* X1660D01* Y2028D02* X1426D01* X1562Y1912D02* X1426D01* X1562Y1916D02* X1426D01* Y1920D02* X1562D01* X1563Y1972D02* Y1874D01* X1426Y1840D02* X1601D01* X1426Y1844D02* X1601D01* X1426Y1524D02* X1601D01* X1426Y1352D02* X1818D01* Y1356D02* X1426D01* X1601Y1588D02* X1426D01* Y1580D02* X1601D01* X1426Y1584D02* X1601D01* X1426Y1324D02* X1818D01* Y1328D02* X1426D01* X1601Y1460D02* X1426D01* Y1440D02* X1602D01* X1426Y1408D02* X1818D01* Y1412D02* X1426D01* X1601Y1656D02* X1426D01* X1601Y1660D02* X1426D01* Y1620D02* X1601D01* X1426Y1624D02* X1601D01* X1426Y1308D02* X1818D01* Y1304D02* X1426D01* X1601Y1488D02* X1426D01* X1601Y1492D02* X1426D01* Y1496D02* X1601D01* X1426Y1368D02* X1818D01* Y1372D02* X1426D01* X1601Y1632D02* X1426D01* X1601Y1628D02* X1426D01* Y1636D02* X1601D01* X1426Y1640D02* X1601D01* X1426Y1404D02* X1818D01* Y1400D02* X1426D01* X1601Y1512D02* X1426D01* Y1508D02* X1601D01* X1426Y1272D02* X1818D01* X1426Y1276D02* X1818D01* Y1248D02* X1426D01* X1606Y1437D02* X1602Y1441D01* X1601Y1600D02* X1426D01* Y1604D02* X1601D01* X1426Y1420D02* X1818D01* Y1416D02* X1426D01* X1601Y1536D02* X1426D01* X1500Y1394D02* X1441D01* X1601Y1456D02* X1426D01* Y1452D02* X1601D01* X1426Y1392D02* X1818D01* Y1388D02* X1426D01* X1601Y1576D02* X1426D01* X1601Y1572D02* X1426D01* Y1548D02* X1601D01* X1426Y1544D02* X1601D01* X1426Y1384D02* X1818D01* Y1380D02* X1426D01* X1601Y1680D02* X1426D01* X1601Y1676D02* X1426D01* X1601Y1672D02* X1426D01* Y1668D02* X1601D01* X1426Y1664D02* X1601D01* X1426Y1316D02* X1818D01* Y1320D02* X1426D01* X1601Y1540D02* X1426D01* Y1532D02* X1601D01* X1426Y1528D02* X1601D01* X1426Y1288D02* X1818D01* Y1292D02* X1426D01* X1601Y1592D02* X1426D01* X1601Y1596D02* X1426D01* Y1608D02* X1601D01* X1426Y1612D02* X1601D01* X1426Y1616D02* X1601D01* X1426Y1436D02* X1818D01* X1819Y1437D02* X1606D01* X1601Y1472D02* X1426D01* Y1476D02* X1601D01* X1426Y1296D02* X1818D01* X1426Y1300D02* X1818D01* Y1312D02* X1426D01* X1602Y1441D02* Y1870D01* X1601Y1856D02* X1426D01* Y1860D02* X1601D01* X1426Y1980D02* X1660D01* X1661Y1976D02* Y2134D01* X1660Y2048D02* X1426D01* Y1968D02* X1562D01* X1426Y1972D02* X1562D01* X1426Y2016D02* X1660D01* Y2012D02* X1426D01* X1601Y1864D02* X1426D01* X1562Y1896D02* X1426D01* Y1892D02* X1562D01* X1426Y1848D02* X1601D01* X1426Y1852D02* X1601D01* X1426Y1988D02* X1660D01* Y1992D02* X1426D01* X1562Y1948D02* X1426D01* Y1940D02* X1562D01* X1426Y1944D02* X1562D01* X1426Y2056D02* X1660D01* X1426Y2052D02* X1660D01* Y1996D02* X1426D01* X1602Y1870D02* X1567D01* X1601Y1728D02* X1426D01* X1601Y1732D02* X1426D01* Y1736D02* X1601D01* X1426Y1740D02* X1601D01* X1426Y1744D02* X1601D01* Y1752D02* X1426D01* X1601Y1748D02* X1426D01* Y1756D02* X1601D01* X1426Y1760D02* X1601D01* X1426Y1796D02* X1601D01* X1426Y1792D02* X1601D01* X1563Y1874D02* X1567Y1870D01* X1426Y1816D02* X1601D01* X1426Y1812D02* X1601D01* Y1788D02* X1426D01* X1601Y1784D02* X1426D01* X1562Y1888D02* X1426D01* X1562Y1884D02* X1426D01* Y1880D02* X1562D01* X1426Y1808D02* X1601D01* Y1804D02* X1426D01* X1601Y1800D02* X1426D01* X1562Y1900D02* X1426D01* Y1908D02* X1562D01* X1426Y1904D02* X1562D01* X1426Y1832D02* X1601D01* X1426Y1836D02* X1601D01* X1426Y1828D02* X1601D01* Y1820D02* X1426D01* X1601Y1824D02* X1426D01* X1562Y1876D02* X1426D01* Y1868D02* X1601D01* X1426Y1872D02* X1564D01* X1426Y1776D02* X1601D01* X1426Y1780D02* X1601D01* Y1772D02* X1426D01* X1601Y1768D02* X1426D01* X1601Y1764D02* X1426D01* Y1724D02* X1601D01* X1426Y1720D02* X1601D01* X1426Y1716D02* X1601D01* Y1712D02* X1426D01* X1601Y1708D02* X1426D01* Y1700D02* X1601D01* X1426Y1704D02* X1601D01* X1426Y1428D02* X1818D01* Y1424D02* X1426D01* X1601Y1480D02* X1426D01* Y1484D02* X1601D01* X1426Y1432D02* X1818D01* Y1396D02* X1426D01* X1601Y1688D02* X1426D01* X1601Y1684D02* X1426D01* Y1692D02* X1601D01* X1426Y1696D02* X1601D01* X1426Y1364D02* X1818D01* Y1360D02* X1426D01* X1601Y1464D02* X1426D01* Y1468D02* X1601D01* X1426Y1232D02* X1818D01* X1426Y1236D02* X1818D01* Y1252D02* X1426D01* X1818Y1256D02* X1426D01* X1601Y1552D02* X1426D01* X1601Y1556D02* X1426D01* X1601Y1560D02* X1426D01* Y1564D02* X1601D01* X1426Y1568D02* X1601D01* X1426Y1260D02* X1818D01* Y1268D02* X1426D01* X1818Y1264D02* X1426D01* X1601Y1448D02* X1426D01* Y1444D02* X1601D01* X1426Y1376D02* X1818D01* Y1340D02* X1426D01* X1601Y1648D02* X1426D01* X1601Y1644D02* X1426D01* Y1652D02* X1601D01* X1426Y1348D02* X1818D01* Y1344D02* X1426D01* X1441Y1394D02* Y1472D01* X1601Y1520D02* X1426D01* Y1516D02* X1601D01* X1426Y1336D02* X1818D01* X1426Y1332D02* X1818D01* Y1212D02* X1426D01* X1607Y894D02* X1580D01* X1571Y886D02* X1580Y894D01* X1426Y1164D02* X1818D01* Y1184D02* X1426D01* X1500Y1000D02* Y1394D01* X1601Y1504D02* X1426D01* Y1500D02* X1601D01* X1426Y1240D02* X1818D01* Y1244D02* X1426D01* X1571Y886D02* Y859D01* X1580Y850D02* X1571Y859D01* X1426Y1140D02* X1818D01* X2336Y921D02* X2282Y850D01* Y859D02* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2264Y921D02* X2211Y850D01* X2220D02* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1749D02* X1731D01* X1818Y1156D02* X1426D01* Y1152D02* X1818D01* X1823Y1114D02* X5713D01* X5718Y1120D02* X5739D01* X5718Y1124D02* X5739D01* X5718Y1128D02* X5739D01* Y1140D02* X5718D01* X5739Y1144D02* X5718D01* Y1136D02* X5739D01* X5718Y1132D02* X5739D01* X5740Y1120D02* X5744Y1116D01* X5740Y1120D02* Y1453D01* X5739Y1452D02* X5639D01* Y1456D02* X5661D01* X5639Y1444D02* X5739D01* Y1448D02* X5639D01* X5661Y1457D02* Y2110D01* X5660Y2108D02* X5639D01* X5660Y2104D02* X5639D01* Y2076D02* X5660D01* X5639Y2080D02* X5660D01* X5639Y2084D02* X5660D01* Y2092D02* X5639D01* X5660Y2088D02* X5639D01* Y2096D02* X5660D01* X5639Y2100D02* X5660D01* X5665Y2114D02* X5661Y2110D01* X5639Y2112D02* X5662D01* X5665Y2114D02* X5996D01* X6003Y2136D02* X5639D01* X5638Y2138D02* X6002D01* X6056Y2084D01* X6031Y2108D02* X6005D01* X6019Y2120D02* X5639D01* Y2116D02* X6023D01* X6009Y2104D02* X6035D01* X6021Y2092D02* X6047D01* X6056Y2084D02* X6059Y2083D01* X6045Y2068D02* X6275D01* Y2072D02* X6041D01* X6055Y2084D02* X6029D01* X6043Y2096D02* X6017D01* X6013Y2100D02* X6039D01* X6025Y2088D02* X6051D01* X6033Y2080D02* X6275D01* Y2084D02* X6251D01* X6275Y2064D02* X6049D01* X6053Y2060D02* X6275D01* X6248Y2083D02* X6252Y2087D01* X6253Y2088D02* X6275D01* X6253Y2092D02* X6275D01* Y2100D02* X6253D01* X6275Y2096D02* X6253D01* Y2104D02* X6275D01* X6253Y2108D02* X6275D01* X6253Y2112D02* X6275D01* Y2116D02* X6253D01* X6275Y2120D02* X6253D01* X6248Y2130D02* X6252Y2126D01* X6275Y2132D02* X6075D01* X6071Y2136D02* X6275D01* X6253Y2124D02* X6275D01* X6276Y2059D02* Y2153D01* X6275Y2152D02* X6055D01* X6067Y2140D02* X6275D01* X6251Y2128D02* X6275D01* X6276Y2153D02* X6083D01* X6073Y2160D02* X6047D01* X6043Y2164D02* X6069D01* X6080Y2155D02* X6083Y2153D01* X6063Y2144D02* X6275D01* Y2148D02* X6059D01* X6077Y2156D02* X6051D01* X6065Y2168D02* X6039D01* X6080Y2155D02* X6026Y2209D01* X6029Y2204D02* X5781D01* Y2192D02* X6041D01* X6023Y2184D02* X6020Y2185D01* X5780D01* Y2484D01* X5781Y2476D02* X6747D01* Y2472D02* X5781D01* X5803Y2457D02* X5807Y2461D01* X5806Y2460D02* X5781D01* Y2456D02* X5802D01* X5781Y2464D02* X6747D01* X6748Y2461D02* Y2717D01* X6747Y2704D02* X6725D01* X6747Y2708D02* X6725D01* Y2712D02* X6747D01* X6725Y2716D02* X6747D01* X6725Y2728D02* X6904D01* Y2720D02* X6879D01* X6904Y2740D02* X6725D01* X6724Y2744D02* X6905D01* Y2488D01* X6909Y2484D02* X6905Y2488D01* X6904Y2500D02* X6883D01* X6904Y2504D02* X6883D01* Y2496D02* X6904D01* X6883Y2492D02* X6904D01* X6883Y2488D02* X6904D01* X6883Y2472D02* X7290D01* Y2488D02* X7269D01* X7290Y2480D02* X6883D01* Y2476D02* X7290D01* X7265Y2484D02* X7290D01* X7291Y2461D02* Y3126D01* X7290Y3108D02* X7269D01* X7290Y3112D02* X7269D01* Y3120D02* X7290D01* X7269Y3116D02* X7290D01* X7269Y3152D02* X7834D01* Y3160D02* X7781D01* X7834Y3144D02* X7269D01* X7290Y3076D02* X7269D01* X7290Y3072D02* X7269D01* Y3080D02* X7290D01* X7269Y3084D02* X7290D01* Y3092D02* X7269D01* X7290Y3088D02* X7269D01* Y3096D02* X7290D01* X7269Y3100D02* X7290D01* X7269Y3104D02* X7290D01* X7269Y3136D02* X7834D01* Y3140D02* X7269D01* X7295Y3130D02* X7770D01* X7781Y3280D02* X7834D01* X7781Y3284D02* X7834D01* X7781Y3288D02* X7834D01* Y3292D02* X7781D01* X7834Y3296D02* X7781D01* Y3304D02* X7834D01* X7781Y3300D02* X7834D01* Y3308D02* X7781D01* X7834Y3312D02* X7781D01* Y3316D02* X7834D01* X7781Y3320D02* X7834D01* X7781Y3324D02* X7834D01* Y3332D02* X7781D01* X7834Y3328D02* X7781D01* Y3336D02* X7834D01* X7781Y3340D02* X7834D01* X7781Y3344D02* X7834D01* X7781Y3348D02* X7834D01* X7781Y3352D02* X7834D01* Y3356D02* X7781D01* X7834Y3360D02* X7781D01* Y3368D02* X7834D01* X7781Y3364D02* X7834D01* Y3372D02* X7781D01* X7834Y3376D02* X7781D01* Y3380D02* X7834D01* X7781Y3384D02* X7834D01* X7781Y3388D02* X7834D01* Y3396D02* X7781D01* X7834Y3392D02* X7781D01* Y3400D02* X7834D01* X7781Y3404D02* X7834D01* Y3408D02* X7781D01* X7834Y3412D02* X7781D01* X7834Y3416D02* X7781D01* Y3424D02* X7834D01* X7781Y3420D02* X7834D01* X7781Y3432D02* X7834D01* X7781Y3428D02* X7834D01* Y3436D02* X7781D01* X7834Y3440D02* X7781D01* Y3444D02* X7834D01* X7781Y3448D02* X7834D01* X7781Y3452D02* X7834D01* Y3460D02* X7781D01* X7834Y3456D02* X7781D01* Y3464D02* X7834D01* X7781Y3468D02* X7834D01* Y3472D02* X7781D01* X7834Y3476D02* X7781D01* X7834Y3480D02* X7781D01* X7834Y3484D02* X7781D01* X7834Y3488D02* X7781D01* Y3496D02* X7834D01* X7781Y3492D02* X7834D01* Y3500D02* X7781D01* X7834Y3504D02* X7781D01* X7834Y3508D02* X7781D01* Y3512D02* X7834D01* X7781Y3516D02* X7834D01* Y3524D02* X7781D01* X7834Y3520D02* X7781D01* Y3528D02* X7834D01* X7781Y3532D02* X7834D01* Y3536D02* X7781D01* X7834Y3540D02* X7781D01* X7834Y3544D02* X7781D01* Y3552D02* X7834D01* X7781Y3548D02* X7834D01* Y3580D02* X7781D01* X7834Y3576D02* X7781D01* Y3584D02* X7834D01* X7781Y3588D02* X7834D01* Y3612D02* X7781D01* X7834Y3616D02* X7781D01* Y3624D02* X7834D01* X7781Y3620D02* X7834D01* Y3628D02* X7781D01* X7834Y3632D02* X7781D01* X7834Y3636D02* X7781D01* Y3640D02* X7834D01* X7781Y3644D02* X7834D01* Y3692D02* X7781D01* X7834Y3696D02* X7781D01* X7834Y3700D02* X7781D01* Y3704D02* X7834D01* X7781Y3708D02* X7834D01* Y3668D02* X7781D01* X7834Y3672D02* X7781D01* Y3680D02* X7834D01* X7781Y3676D02* X7834D01* Y3684D02* X7781D01* X7834Y3688D02* X7781D01* Y3664D02* X7834D01* X7781Y3660D02* X7834D01* Y3656D02* X7781D01* X7834Y3652D02* X7781D01* X7834Y3648D02* X7781D01* Y3608D02* X7834D01* X7781Y3604D02* X7834D01* X7781Y3600D02* X7834D01* Y3596D02* X7781D01* X7834Y3592D02* X7781D01* Y3572D02* X7834D01* X7781Y3568D02* X7834D01* X7781Y3564D02* X7834D01* Y3556D02* X7781D01* X7834Y3560D02* X7781D01* Y3712D02* X7834D01* X7781Y3716D02* X7834D01* X7781Y3720D02* X7834D01* Y3724D02* X7781D01* X7834Y3728D02* X7781D01* Y3736D02* X7834D01* X7781Y3732D02* X7834D01* Y3740D02* X7781D01* X7834Y3744D02* X7781D01* X7834Y3748D02* X7781D01* Y3752D02* X7834D01* X7781Y3756D02* X7834D01* Y3764D02* X7781D01* X7834Y3760D02* X7781D01* Y3768D02* X7834D01* X7781Y3772D02* X7834D01* X7781Y3776D02* X7834D01* X7781Y3780D02* X7834D01* X7781Y3784D02* X7834D01* Y3788D02* X7781D01* X7834Y3792D02* X7781D01* Y3800D02* X7834D01* X7781Y3796D02* X7834D01* Y3804D02* X7781D01* X7834Y3808D02* X7781D01* X7834Y3812D02* X7781D01* Y3816D02* X7834D01* X7781Y3820D02* X7834D01* Y3828D02* X7781D01* X7834Y3824D02* X7781D01* Y3832D02* X7834D01* X7781Y3836D02* X7834D01* Y3840D02* X7781D01* X7834Y3844D02* X7781D01* X7834Y3848D02* X7781D01* Y3856D02* X7834D01* X7781Y3852D02* X7834D01* Y3860D02* X7781D01* X7834Y3864D02* X7781D01* Y3912D02* X7834D01* X7781Y3908D02* X7834D01* X7781Y3904D02* X7834D01* Y3900D02* X7781D01* X7834Y3896D02* X7781D01* Y3888D02* X7834D01* X7781Y3892D02* X7834D01* Y3884D02* X7781D01* X7834Y3880D02* X7781D01* Y3876D02* X7834D01* X7781Y3872D02* X7834D01* X7781Y3868D02* X7834D01* X7781Y4056D02* X7834D01* X7781Y4052D02* X7834D01* Y4044D02* X7781D01* X7834Y4048D02* X7781D01* Y4040D02* X7834D01* X7781Y4036D02* X7834D01* X7781Y4032D02* X7834D01* Y4028D02* X7781D01* X7834Y4024D02* X7781D01* Y4004D02* X7834D01* X7781Y4000D02* X7834D01* X7781Y3996D02* X7834D01* Y3988D02* X7781D01* X7834Y3992D02* X7781D01* Y3984D02* X7834D01* X7781Y3980D02* X7834D01* Y3956D02* X7781D01* X7834Y3952D02* X7781D01* Y3944D02* X7834D01* X7781Y3948D02* X7834D01* Y3916D02* X7781D01* X7834Y3920D02* X7781D01* Y3928D02* X7834D01* X7781Y3924D02* X7834D01* Y3932D02* X7781D01* X7834Y3936D02* X7781D01* X7834Y3940D02* X7781D01* Y3960D02* X7834D01* X7781Y3964D02* X7834D01* Y3968D02* X7781D01* X7834Y3972D02* X7781D01* X7834Y3976D02* X7781D01* X7834Y4012D02* X7781D01* X7834Y4008D02* X7781D01* Y4016D02* X7834D01* X7781Y4020D02* X7834D01* Y4060D02* X7781D01* X7834Y4064D02* X7781D01* X7834Y4068D02* X7781D01* Y4072D02* X7834D01* X7781Y4076D02* X7834D01* X7781Y4080D02* X7834D01* X7781Y4084D02* X7834D01* X7781Y4088D02* X7834D01* Y4092D02* X7781D01* X7834Y4096D02* X7781D01* Y4104D02* X7834D01* X7781Y4100D02* X7834D01* Y4108D02* X7781D01* X7834Y4112D02* X7781D01* Y4120D02* X7834D01* X7781Y4116D02* X7834D01* Y4124D02* X7781D01* X7834Y4128D02* X7781D01* X7834Y4132D02* X7781D01* Y4136D02* X7834D01* X7781Y4140D02* X7834D01* Y4164D02* X7781D01* X7834Y4168D02* X7781D01* Y4176D02* X7834D01* X7781Y4172D02* X7834D01* Y4204D02* X7781D01* X7834Y4200D02* X7781D01* Y4192D02* X7834D01* X7781Y4196D02* X7834D01* Y4188D02* X7781D01* X7834Y4184D02* X7781D01* X7834Y4180D02* X7781D01* Y4160D02* X7834D01* X7781Y4156D02* X7834D01* Y4152D02* X7781D01* X7834Y4148D02* X7781D01* X7834Y4144D02* X7781D01* Y4208D02* X7834D01* X7781Y4212D02* X7834D01* X7781Y4216D02* X7834D01* Y4220D02* X7781D01* X7834Y4224D02* X7781D01* Y4232D02* X7834D01* X7781Y4228D02* X7834D01* Y4236D02* X7781D01* X7834Y4240D02* X7781D01* Y4244D02* X7834D01* X7781Y4248D02* X7834D01* X7781Y4252D02* X7834D01* Y4260D02* X7781D01* X7834Y4256D02* X7781D01* Y4264D02* X7834D01* X7781Y4268D02* X7834D01* Y4272D02* X7781D01* X7834Y4276D02* X7781D01* X7834Y4280D02* X7781D01* Y4288D02* X7834D01* X7781Y4284D02* X7834D01* Y4292D02* X7781D01* X7834Y4296D02* X7781D01* Y4304D02* X7834D01* X7781Y4300D02* X7834D01* Y4348D02* X7781D01* X7834Y4352D02* X7781D01* Y4344D02* X7834D01* X7781Y4340D02* X7834D01* X7781Y4336D02* X7834D01* Y4332D02* X7781D01* X7834Y4328D02* X7781D01* Y4320D02* X7834D01* X7781Y4324D02* X7834D01* Y4316D02* X7781D01* X7834Y4312D02* X7781D01* X7834Y4308D02* X7781D01* Y4360D02* X7834D01* X7781Y4356D02* X7834D01* Y4364D02* X7781D01* X7834Y4368D02* X7781D01* Y4372D02* X7834D01* X7781Y4376D02* X7834D01* X7781Y4380D02* X7834D01* Y4388D02* X7781D01* X7834Y4384D02* X7781D01* Y4392D02* X7834D01* X7781Y4396D02* X7834D01* Y4400D02* X7781D01* X7834Y4404D02* X7781D01* X7834Y4408D02* X7781D01* X7834Y4540D02* X7781D01* X7834Y4544D02* X7781D01* Y4536D02* X7834D01* X7781Y4532D02* X7834D01* Y4508D02* X7781D01* X7834Y4504D02* X7781D01* Y4500D02* X7834D01* X7781Y4496D02* X7834D01* X7781Y4492D02* X7834D01* Y4484D02* X7781D01* X7834Y4488D02* X7781D01* Y4480D02* X7834D01* X7781Y4476D02* X7834D01* Y4452D02* X7781D01* X7834Y4448D02* X7781D01* Y4440D02* X7834D01* X7781Y4444D02* X7834D01* Y4412D02* X7781D01* X7834Y4416D02* X7781D01* Y4424D02* X7834D01* X7781Y4420D02* X7834D01* Y4428D02* X7781D01* X7834Y4432D02* X7781D01* X7834Y4436D02* X7781D01* Y4456D02* X7834D01* X7781Y4460D02* X7834D01* Y4464D02* X7781D01* X7834Y4468D02* X7781D01* X7834Y4472D02* X7781D01* Y4512D02* X7834D01* X7781Y4516D02* X7834D01* X7781Y4520D02* X7834D01* Y4524D02* X7781D01* X7834Y4528D02* X7781D01* Y4552D02* X7834D01* X7781Y4548D02* X7834D01* Y4556D02* X7781D01* X7834Y4560D02* X7781D01* X7834Y4564D02* X7781D01* Y4568D02* X7834D01* X7781Y4572D02* X7834D01* Y4596D02* X7781D01* X7834Y4600D02* X7781D01* Y4592D02* X7834D01* X7781Y4588D02* X7834D01* Y4584D02* X7781D01* X7834Y4580D02* X7781D01* X7834Y4576D02* X7781D01* Y4608D02* X7834D01* X7781Y4604D02* X7834D01* Y4612D02* X7781D01* X7834Y4616D02* X7781D01* X7834Y4756D02* X7781D01* X7834Y4752D02* X7781D01* Y4744D02* X7834D01* X7781Y4740D02* X7834D01* Y4732D02* X7781D01* X7834Y4736D02* X7781D01* Y4760D02* X7834D01* X7781Y4764D02* X7834D01* Y4768D02* X7781D01* X7834Y4772D02* X7781D01* X7834Y4776D02* X7781D01* Y4816D02* X7834D01* X7781Y4820D02* X7834D01* Y4812D02* X7781D01* X7834Y4808D02* X7781D01* Y4804D02* X7834D01* X7781Y4800D02* X7834D01* X7781Y4796D02* X7834D01* Y4788D02* X7781D01* X7834Y4792D02* X7781D01* Y4784D02* X7834D01* X7781Y4780D02* X7834D01* X7799Y4760D02* Y4878D01* X7781Y4828D02* X7834D01* X7781Y4824D02* X7834D01* Y4832D02* X7781D01* X7834Y4836D02* X7781D01* X7834Y4840D02* X7781D01* X7740Y4937D02* X7799Y4878D01* X7834Y4912D02* X1426D01* Y4908D02* X7834D01* X7781Y4848D02* X7834D01* Y4844D02* X7781D01* X7780Y4860D02* Y3157D01* X7779Y3156D02* X7834D01* X7781Y3164D02* X7834D01* X7781Y3168D02* X7834D01* Y3172D02* X7781D01* X7834Y3176D02* X7781D01* Y3216D02* X7834D01* X7781Y3220D02* X7834D01* X7781Y3224D02* X7834D01* Y3228D02* X7781D01* X7834Y3232D02* X7781D01* Y3240D02* X7834D01* X7781Y3236D02* X7834D01* Y3244D02* X7781D01* X7834Y3248D02* X7781D01* Y3256D02* X7834D01* X7781Y3252D02* X7834D01* Y3260D02* X7781D01* X7834Y3264D02* X7781D01* X7834Y3268D02* X7781D01* Y3272D02* X7834D01* X7781Y3276D02* X7834D01* Y3212D02* X7781D01* X7834Y3208D02* X7781D01* Y3204D02* X7834D01* X7781Y3200D02* X7834D01* X7781Y3196D02* X7834D01* Y3188D02* X7781D01* X7834Y3192D02* X7781D01* Y3184D02* X7834D01* X7781Y3180D02* X7834D01* X7780Y3157D02* X7776Y3153D01* X7268D01* Y2488D01* X7290Y2468D02* X6883D01* Y2484D02* X6908D01* X6909D02* X7264D01* X7268Y2488D01* X7269Y2492D02* X7290D01* X7269Y2496D02* X7290D01* Y2504D02* X7269D01* X7290Y2500D02* X7269D01* Y2508D02* X7290D01* X7269Y2512D02* X7290D01* X7269Y2516D02* X7290D01* Y2520D02* X7269D01* X7290Y2524D02* X7269D01* Y2532D02* X7290D01* X7269Y2528D02* X7290D01* Y2536D02* X7269D01* X7290Y2540D02* X7269D01* Y2544D02* X7290D01* X7269Y2548D02* X7290D01* X7269Y2552D02* X7290D01* Y2560D02* X7269D01* X7290Y2556D02* X7269D01* Y2564D02* X7290D01* X7269Y2568D02* X7290D01* Y2592D02* X7269D01* X7290Y2596D02* X7269D01* Y2604D02* X7290D01* X7269Y2600D02* X7290D01* X7269Y2572D02* X7290D01* X7269Y2576D02* X7290D01* X7269Y2580D02* X7290D01* Y2584D02* X7269D01* X7290Y2588D02* X7269D01* Y2608D02* X7290D01* X7269Y2612D02* X7290D01* X7269Y2616D02* X7290D01* Y2624D02* X7269D01* X7290Y2620D02* X7269D01* Y2628D02* X7290D01* X7269Y2632D02* X7290D01* Y2636D02* X7269D01* X7290Y2640D02* X7269D01* X7290Y2644D02* X7269D01* X7290Y2648D02* X7269D01* X7290Y2652D02* X7269D01* Y2660D02* X7290D01* X7269Y2656D02* X7290D01* Y2664D02* X7269D01* X7290Y2668D02* X7269D01* Y2672D02* X7290D01* X7269Y2676D02* X7290D01* X7269Y2680D02* X7290D01* Y2688D02* X7269D01* X7290Y2684D02* X7269D01* Y2692D02* X7290D01* X7269Y2696D02* X7290D01* Y2700D02* X7269D01* X7290Y2704D02* X7269D01* X7290Y2708D02* X7269D01* X7290Y2712D02* X7269D01* X7290Y2716D02* X7269D01* Y2724D02* X7290D01* X7269Y2720D02* X7290D01* Y2728D02* X7269D01* X7290Y2732D02* X7269D01* X7290Y2736D02* X7269D01* X7290Y2740D02* X7269D01* X7290Y2744D02* X7269D01* Y2752D02* X7290D01* X7269Y2748D02* X7290D01* Y2756D02* X7269D01* X7290Y2760D02* X7269D01* Y2764D02* X7290D01* X7269Y2768D02* X7290D01* X7269Y2772D02* X7290D01* Y2780D02* X7269D01* X7290Y2776D02* X7269D01* Y2784D02* X7290D01* X7269Y2788D02* X7290D01* Y2792D02* X7269D01* X7290Y2796D02* X7269D01* X7290Y2800D02* X7269D01* X7290Y2804D02* X7269D01* X7290Y2808D02* X7269D01* Y2816D02* X7290D01* X7269Y2812D02* X7290D01* Y2820D02* X7269D01* X7290Y2824D02* X7269D01* Y2828D02* X7290D01* X7269Y2832D02* X7290D01* X7269Y2836D02* X7290D01* Y2844D02* X7269D01* X7290Y2840D02* X7269D01* Y2848D02* X7290D01* X7269Y2852D02* X7290D01* Y2856D02* X7269D01* X7290Y2860D02* X7269D01* X7290Y2864D02* X7269D01* X7290Y2868D02* X7269D01* X7290Y2872D02* X7269D01* Y2876D02* X7290D01* X7269Y2880D02* X7290D01* X7269Y2884D02* X7290D01* Y2892D02* X7269D01* X7290Y2888D02* X7269D01* X7290Y2900D02* X7269D01* X7290Y2896D02* X7269D01* Y2904D02* X7290D01* X7269Y2908D02* X7290D01* X7269Y2912D02* X7290D01* X7269Y2916D02* X7290D01* Y2920D02* X7269D01* X7290Y2924D02* X7269D01* X7290Y2928D02* X7269D01* X7290Y2932D02* X7269D01* X7290Y2936D02* X7269D01* Y2940D02* X7290D01* X7269Y2944D02* X7290D01* X7269Y2948D02* X7290D01* Y2956D02* X7269D01* X7290Y2952D02* X7269D01* Y3068D02* X7290D01* X7269Y3064D02* X7290D01* X7269Y3060D02* X7290D01* Y3052D02* X7269D01* X7290Y3056D02* X7269D01* Y3048D02* X7290D01* X7269Y3044D02* X7290D01* Y3040D02* X7269D01* X7290Y3036D02* X7269D01* X7290Y3032D02* X7269D01* Y3024D02* X7290D01* X7269Y3028D02* X7290D01* X7269Y3016D02* X7290D01* X7269Y3020D02* X7290D01* Y3012D02* X7269D01* X7290Y3008D02* X7269D01* X7290Y3004D02* X7269D01* Y2984D02* X7290D01* X7269Y2980D02* X7290D01* Y2976D02* X7269D01* X7290Y2972D02* X7269D01* X7290Y2968D02* X7269D01* Y2960D02* X7290D01* X7269Y2964D02* X7290D01* Y2988D02* X7269D01* X7290Y2992D02* X7269D01* Y3000D02* X7290D01* X7269Y2996D02* X7290D01* X7494Y3026D02* X7489Y3029D01* X7483Y3037D01* Y3057D02* X7486Y3062D01* X7494Y3069D01* X7514D02* X7519Y3065D01* X7525Y3057D01* Y3037D02* X7522Y3032D01* X7514Y3026D01* X6883Y2512D02* X6904D01* X6883Y2508D02* X6904D01* Y2516D02* X6883D01* X6904Y2520D02* X6883D01* X6904Y2524D02* X6883D01* Y2528D02* X6904D01* X6883Y2532D02* X6904D01* X6883Y2536D02* X6904D01* X6883Y2540D02* X6904D01* X6883Y2544D02* X6904D01* Y2548D02* X6883D01* X6904Y2552D02* X6883D01* Y2560D02* X6904D01* X6883Y2556D02* X6904D01* Y2564D02* X6883D01* X6904Y2568D02* X6883D01* Y2576D02* X6904D01* X6883Y2572D02* X6904D01* Y2580D02* X6883D01* X6904Y2584D02* X6883D01* X6904Y2588D02* X6883D01* Y2592D02* X6904D01* X6883Y2596D02* X6904D01* X6883Y2600D02* X6904D01* X6883Y2604D02* X6904D01* X6883Y2608D02* X6904D01* Y2612D02* X6883D01* X6904Y2616D02* X6883D01* Y2624D02* X6904D01* X6883Y2620D02* X6904D01* Y2628D02* X6883D01* X6904Y2632D02* X6883D01* X6904Y2636D02* X6883D01* Y2640D02* X6904D01* X6883Y2644D02* X6904D01* Y2652D02* X6883D01* X6904Y2648D02* X6883D01* Y2656D02* X6904D01* X6883Y2660D02* X6904D01* X6883Y2664D02* X6904D01* X6883Y2668D02* X6904D01* X6883Y2672D02* X6904D01* Y2676D02* X6883D01* X6904Y2680D02* X6883D01* X6904Y2684D02* X6883D01* X6904Y2688D02* X6883D01* Y2696D02* X6904D01* X6883Y2692D02* X6904D01* Y2700D02* X6883D01* X6904Y2704D02* X6883D01* X6882Y2717D02* X6878Y2721D01* X6752D01* X6747Y2700D02* X6725D01* X6747Y2696D02* X6725D01* X6747Y2692D02* X6725D01* Y2684D02* X6747D01* X6725Y2688D02* X6747D01* X6725Y2680D02* X6747D01* X6725Y2676D02* X6747D01* X6725Y2672D02* X6747D01* Y2664D02* X6725D01* X6747Y2668D02* X6725D01* Y2660D02* X6747D01* X6725Y2656D02* X6747D01* Y2648D02* X6725D01* X6747Y2652D02* X6725D01* Y2644D02* X6747D01* X6725Y2640D02* X6747D01* Y2636D02* X6725D01* X6747Y2632D02* X6725D01* X6747Y2628D02* X6725D01* X6747Y2624D02* X6725D01* X6747Y2620D02* X6725D01* Y2616D02* X6747D01* X6725Y2612D02* X6747D01* X6725Y2608D02* X6747D01* Y2600D02* X6725D01* X6747Y2604D02* X6725D01* Y2596D02* X6747D01* X6725Y2592D02* X6747D01* X6725Y2588D02* X6747D01* X6725Y2584D02* X6747D01* X6725Y2580D02* X6747D01* Y2576D02* X6725D01* X6747Y2572D02* X6725D01* Y2564D02* X6747D01* X6725Y2568D02* X6747D01* Y2560D02* X6725D01* X6747Y2556D02* X6725D01* Y2552D02* X6747D01* X6725Y2548D02* X6747D01* X6725Y2544D02* X6747D01* Y2536D02* X6725D01* X6747Y2540D02* X6725D01* Y2532D02* X6747D01* X6725Y2528D02* X6747D01* X6725Y2524D02* X6747D01* X6725Y2520D02* X6747D01* X6725Y2516D02* X6747D01* Y2512D02* X6725D01* X6747Y2508D02* X6725D01* X6747Y2504D02* X6725D01* X6747Y2500D02* X6725D01* Y2492D02* X6747D01* X6725Y2496D02* X6747D01* Y2488D02* X6725D01* X6747Y2480D02* X5781D01* X5780Y2484D02* X6720D01* X6724Y2488D01* X6722Y2484D02* X6747D01* X6724Y2488D02* Y2744D01* X6725Y2736D02* X6904D01* Y2732D02* X6725D01* X6748Y2717D02* X6752Y2721D01* X6751Y2720D02* X6725D01* Y2724D02* X6904D01* X6883Y2716D02* X6904D01* Y2712D02* X6883D01* X6904Y2708D02* X6883D01* X6882Y2717D02* Y2461D01* X7291D01* X7290Y2464D02* X6883D01* X5781Y2468D02* X6747D01* X6748Y2461D02* X5807D01* X5802Y2452D02* X5781D01* X5802Y2448D02* X5781D01* Y2444D02* X5802D01* X5803Y2457D02* Y2213D01* X5807Y2209D02* X5803Y2213D01* X5802Y2220D02* X5781D01* Y2216D02* X5802D01* X5781Y2212D02* X5802D01* X5781Y2208D02* X6025D01* X6026Y2209D02* X5807D01* X5802Y2228D02* X5781D01* X5802Y2224D02* X5781D01* Y2232D02* X5802D01* X5781Y2236D02* X5802D01* Y2240D02* X5781D01* X5802Y2244D02* X5781D01* X5802Y2248D02* X5781D01* X5802Y2252D02* X5781D01* X5802Y2256D02* X5781D01* Y2260D02* X5802D01* X5781Y2264D02* X5802D01* X5781Y2268D02* X5802D01* Y2276D02* X5781D01* X5802Y2272D02* X5781D01* Y2280D02* X5802D01* X5781Y2284D02* X5802D01* Y2308D02* X5781D01* X5802Y2312D02* X5781D01* Y2320D02* X5802D01* X5781Y2316D02* X5802D01* X5781Y2288D02* X5802D01* X5781Y2292D02* X5802D01* X5781Y2296D02* X5802D01* Y2300D02* X5781D01* X5802Y2304D02* X5781D01* Y2324D02* X5802D01* X5781Y2328D02* X5802D01* X5781Y2332D02* X5802D01* Y2340D02* X5781D01* X5802Y2336D02* X5781D01* X5802Y2348D02* X5781D01* X5802Y2344D02* X5781D01* Y2352D02* X5802D01* X5781Y2356D02* X5802D01* X5781Y2360D02* X5802D01* Y2364D02* X5781D01* X5802Y2368D02* X5781D01* Y2376D02* X5802D01* X5781Y2372D02* X5802D01* Y2380D02* X5781D01* X5802Y2384D02* X5781D01* X5802Y2388D02* X5781D01* Y2392D02* X5802D01* X5781Y2396D02* X5802D01* Y2404D02* X5781D01* X5802Y2400D02* X5781D01* Y2408D02* X5802D01* X5781Y2412D02* X5802D01* X5781Y2416D02* X5802D01* X5781Y2420D02* X5802D01* X5781Y2424D02* X5802D01* Y2428D02* X5781D01* X5802Y2432D02* X5781D01* Y2440D02* X5802D01* X5781Y2436D02* X5802D01* X5781Y2188D02* X6045D01* X6031Y2176D02* X6057D01* X6053Y2180D02* X6027D01* X6037Y2196D02* X5781D01* Y2200D02* X6033D01* X6022Y2184D02* X6049D01* X6061Y2172D02* X6035D01* X6023Y2184D02* X6076Y2130D01* X6248D01* X6252Y2126D02* Y2087D01* X6248Y2083D02* X6059D01* X6037Y2076D02* X6275D01* X6276Y2059D02* X6053D01* X5999Y2113D01* X5996Y2114D02* X5999Y2113D01* X6011Y2128D02* X5639D01* Y2132D02* X6007D01* X6001Y2112D02* X6027D01* X6015Y2124D02* X5639D01* X5638Y2138D02* Y1429D01* X5713D01* X5717Y1425D01* X5739Y1432D02* X5639D01* X5660Y1508D02* X5639D01* X5660Y1512D02* X5639D01* Y1520D02* X5660D01* X5639Y1516D02* X5660D01* Y1548D02* X5639D01* X5660Y1544D02* X5639D01* Y1536D02* X5660D01* X5639Y1540D02* X5660D01* Y1532D02* X5639D01* X5660Y1528D02* X5639D01* X5660Y1524D02* X5639D01* Y1504D02* X5660D01* X5639Y1500D02* X5660D01* Y1496D02* X5639D01* X5660Y1492D02* X5639D01* X5660Y1488D02* X5639D01* X5660Y1484D02* X5639D01* X5660Y1480D02* X5639D01* Y1472D02* X5660D01* X5639Y1476D02* X5660D01* X5665Y1453D02* X5661Y1457D01* X5660Y1468D02* X5639D01* Y1464D02* X5660D01* X5639Y1460D02* X5660D01* X5665Y1453D02* X5740D01* X5739Y1428D02* X5714D01* X5739Y1440D02* X5639D01* Y1436D02* X5739D01* X5718Y1424D02* X5739D01* X5639Y1552D02* X5660D01* X5639Y1556D02* X5660D01* X5639Y1560D02* X5660D01* Y1564D02* X5639D01* X5660Y1568D02* X5639D01* Y1576D02* X5660D01* X5639Y1572D02* X5660D01* Y1580D02* X5639D01* X5660Y1584D02* X5639D01* Y1588D02* X5660D01* X5639Y1592D02* X5660D01* X5639Y1596D02* X5660D01* Y1604D02* X5639D01* X5660Y1600D02* X5639D01* Y1608D02* X5660D01* X5639Y1612D02* X5660D01* Y1616D02* X5639D01* X5660Y1620D02* X5639D01* X5660Y1624D02* X5639D01* X5660Y1628D02* X5639D01* X5660Y1632D02* X5639D01* Y1640D02* X5660D01* X5639Y1636D02* X5660D01* Y1644D02* X5639D01* X5660Y1648D02* X5639D01* Y1652D02* X5660D01* X5639Y1656D02* X5660D01* X5639Y1660D02* X5660D01* Y1668D02* X5639D01* X5660Y1664D02* X5639D01* Y1672D02* X5660D01* X5639Y1676D02* X5660D01* Y1680D02* X5639D01* X5660Y1684D02* X5639D01* X5660Y1688D02* X5639D01* X5660Y1692D02* X5639D01* X5660Y1696D02* X5639D01* Y1704D02* X5660D01* X5639Y1700D02* X5660D01* Y1708D02* X5639D01* X5660Y1712D02* X5639D01* Y1716D02* X5660D01* X5639Y1720D02* X5660D01* X5639Y1724D02* X5660D01* Y1732D02* X5639D01* X5660Y1728D02* X5639D01* Y1736D02* X5660D01* X5639Y1740D02* X5660D01* Y1744D02* X5639D01* X5660Y1748D02* X5639D01* X5660Y1752D02* X5639D01* X5660Y1756D02* X5639D01* X5660Y1760D02* X5639D01* Y1764D02* X5660D01* X5639Y1768D02* X5660D01* X5639Y1772D02* X5660D01* Y1780D02* X5639D01* X5660Y1776D02* X5639D01* X5660Y1788D02* X5639D01* X5660Y1784D02* X5639D01* Y1792D02* X5660D01* X5639Y1796D02* X5660D01* X5639Y1800D02* X5660D01* X5639Y1804D02* X5660D01* Y1808D02* X5639D01* X5660Y1812D02* X5639D01* X5660Y1816D02* X5639D01* X5660Y1820D02* X5639D01* X5660Y1824D02* X5639D01* Y1828D02* X5660D01* X5639Y1832D02* X5660D01* X5639Y1836D02* X5660D01* Y1844D02* X5639D01* X5660Y1840D02* X5639D01* X5660Y1884D02* X5639D01* X5660Y1888D02* X5639D01* Y1880D02* X5660D01* X5639Y1876D02* X5660D01* Y1852D02* X5639D01* X5660Y1848D02* X5639D01* Y1856D02* X5660D01* X5639Y1860D02* X5660D01* X5639Y1864D02* X5660D01* Y1868D02* X5639D01* X5660Y1872D02* X5639D01* Y1892D02* X5660D01* X5639Y1896D02* X5660D01* X5639Y1900D02* X5660D01* Y1908D02* X5639D01* X5660Y1904D02* X5639D01* Y1912D02* X5660D01* X5639Y1916D02* X5660D01* X5639Y1920D02* X5660D01* X5639Y1924D02* X5660D01* X5639Y1928D02* X5660D01* Y1932D02* X5639D01* X5660Y1936D02* X5639D01* Y1944D02* X5660D01* X5639Y1940D02* X5660D01* Y1948D02* X5639D01* X5660Y1952D02* X5639D01* X5660Y1956D02* X5639D01* Y1960D02* X5660D01* X5639Y1964D02* X5660D01* Y1972D02* X5639D01* X5660Y1968D02* X5639D01* X5660Y1980D02* X5639D01* X5660Y1976D02* X5639D01* Y1984D02* X5660D01* X5639Y1988D02* X5660D01* X5639Y1992D02* X5660D01* Y1996D02* X5639D01* X5660Y2000D02* X5639D01* Y2008D02* X5660D01* X5639Y2004D02* X5660D01* Y2012D02* X5639D01* X5660Y2016D02* X5639D01* X5660Y2020D02* X5639D01* Y2024D02* X5660D01* X5639Y2028D02* X5660D01* Y2036D02* X5639D01* X5660Y2032D02* X5639D01* Y2040D02* X5660D01* X5639Y2044D02* X5660D01* Y2048D02* X5639D01* X5660Y2052D02* X5639D01* X5660Y2056D02* X5639D01* X5660Y2060D02* X5639D01* X5660Y2064D02* X5639D01* Y2072D02* X5660D01* X5639Y2068D02* X5660D01* X5739Y1148D02* X5718D01* X5739Y1152D02* X5718D01* X5739Y1156D02* X5718D01* Y1160D02* X5739D01* X5718Y1164D02* X5739D01* Y1172D02* X5718D01* X5739Y1168D02* X5718D01* Y1176D02* X5739D01* X5718Y1180D02* X5739D01* Y1184D02* X5718D01* X5739Y1188D02* X5718D01* X5739Y1192D02* X5718D01* X5739Y1196D02* X5718D01* X5739Y1200D02* X5718D01* Y1208D02* X5739D01* X5718Y1204D02* X5739D01* Y1212D02* X5718D01* X5739Y1216D02* X5718D01* X5739Y1220D02* X5718D01* Y1224D02* X5739D01* X5718Y1228D02* X5739D01* Y1236D02* X5718D01* X5739Y1232D02* X5718D01* Y1240D02* X5739D01* X5718Y1244D02* X5739D01* Y1248D02* X5718D01* X5739Y1252D02* X5718D01* X5739Y1256D02* X5718D01* X5739Y1260D02* X5718D01* X5739Y1264D02* X5718D01* Y1268D02* X5739D01* X5718Y1272D02* X5739D01* X5718Y1276D02* X5739D01* X5718Y1280D02* X5739D01* X5718Y1284D02* X5739D01* Y1292D02* X5718D01* X5739Y1288D02* X5718D01* Y1296D02* X5739D01* X5718Y1300D02* X5739D01* X5718Y1304D02* X5739D01* X5718Y1308D02* X5739D01* Y1312D02* X5718D01* X5739Y1316D02* X5718D01* X5739Y1320D02* X5718D01* X5739Y1324D02* X5718D01* X5739Y1328D02* X5718D01* Y1332D02* X5739D01* X5718Y1336D02* X5739D01* X5718Y1340D02* X5739D01* X5718Y1344D02* X5739D01* X5718Y1348D02* X5739D01* Y1356D02* X5718D01* X5739Y1352D02* X5718D01* Y1360D02* X5739D01* X5718Y1364D02* X5739D01* X5718Y1368D02* X5739D01* X5718Y1372D02* X5739D01* Y1376D02* X5718D01* X5739Y1380D02* X5718D01* X5739Y1384D02* X5718D01* X5739Y1388D02* X5718D01* X5739Y1392D02* X5718D01* Y1396D02* X5739D01* X5718Y1400D02* X5739D01* X5718Y1404D02* X5739D01* X5718Y1408D02* X5739D01* X5718Y1412D02* X5739D01* Y1416D02* X5718D01* X5739Y1420D02* X5718D01* X5717Y1425D02* Y1118D01* X5713Y1114D01* X5716Y1116D02* X5743D01* X5744D02* X7770D01* X7774Y1120D02* X7770Y1116D01* X7834Y1056D02* X1426D01* Y1060D02* X7834D01* X7775Y1172D02* X7834D01* Y1168D02* X7775D01* X7834Y1012D02* X1426D01* Y1016D02* X7834D01* X7775Y1140D02* X7834D01* Y1144D02* X7775D01* X7834Y1064D02* X1426D01* Y1036D02* X7834D01* X7775Y1200D02* X7834D01* Y1196D02* X7775D01* X7834Y1100D02* X1426D01* Y1096D02* X7834D01* X7775Y1148D02* X7834D01* Y1152D02* X7775D01* X7834Y1032D02* X1426D01* Y1028D02* X7834D01* X7775Y1180D02* X7834D01* Y1176D02* X7775D01* X7834Y1092D02* X1426D01* Y1120D02* X1818D01* X1740Y921D02* X1731D01* X1740D02* Y850D01* X1818Y1220D02* X1426D01* Y1216D02* X1818D01* X1819Y1118D02* X1823Y1114D01* X1819Y1118D02* Y1437D01* X1818Y1280D02* X1426D01* X1818Y1284D02* X1426D01* Y1160D02* X1818D01* X1820Y868D02* X1829Y877D01* Y886D02* Y877D01* X1818Y1144D02* X1426D01* Y1148D02* X1818D01* X1651Y894D02* X1678D01* X1687Y886D02* X1678Y894D01* X1818Y1196D02* X1426D01* Y1200D02* X1818D01* X1793Y894D02* X1784Y886D01* X1793Y894D02* X1820D01* X1818Y1136D02* X1426D01* Y1132D02* X1818D01* X1784Y859D02* X1793Y850D01* X1784Y859D02* Y886D01* X1818Y1176D02* X1426D01* Y1180D02* X1818D01* X1936Y877D02* X1980D01* Y894D02* X1936D01* X1818Y1224D02* X1426D01* Y1228D02* X1818D01* X1687Y886D02* Y850D01* Y877D02* X1651D01* X1818Y1188D02* X1426D01* Y1192D02* X1818D01* X1784Y868D02* X1820D01* X1829Y850D02* X1793D01* X1820Y1116D02* X1426D01* Y1112D02* X7834D01* X7775Y1132D02* X7834D01* Y1136D02* X7775D01* X7834Y1080D02* X1426D01* Y1076D02* X7834D01* X7775Y1164D02* X7834D01* Y1160D02* X7775D01* X7834Y1108D02* X1426D01* Y1104D02* X7834D01* X7775Y1120D02* X7834D01* X7775Y1284D02* X7834D01* X7775Y1280D02* X7834D01* X7775Y1276D02* X7834D01* Y1272D02* X7775D01* X7834Y1268D02* X7775D01* Y1260D02* X7834D01* X7775Y1264D02* X7834D01* Y1256D02* X7775D01* X7834Y1252D02* X7775D01* X7834Y1248D02* X7775D01* Y1244D02* X7834D01* X7775Y1240D02* X7834D01* Y1232D02* X7775D01* X7834Y1236D02* X7775D01* Y1228D02* X7834D01* X7775Y1224D02* X7834D01* X7775Y1220D02* X7834D01* Y1192D02* X7775D01* X7834Y1068D02* X1426D01* Y1072D02* X7834D01* X7771Y1116D02* X7834D01* X7799Y1059D02* X7740Y1000D01* X7834Y1008D02* X1426D01* Y1004D02* X7834D01* X8024Y1000D02* X8324Y1300D01* Y1425D02* Y575D01* Y800D02* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8624Y1000D01* X8749D02* X7899D01* X7834Y972D02* X1426D01* X1580Y850D02* X1607D01* X1616Y859D02* X1607Y850D01* X1500Y1000D02* X1850D01* X1820Y894D02* X1829Y886D01* X1818Y1168D02* X1426D01* Y1172D02* X1818D01* X1687Y850D02* X1651D01* X1642Y859D01* Y868D01* X1651Y877D01* X1607Y894D02* X1616Y886D01* X1426Y1204D02* X1818D01* Y1208D02* X1426D01* X1536Y894D02* X1509D01* X1500Y886D02* X1509Y894D01* X1426Y992D02* X7834D01* Y996D02* X1426D01* X1544Y868D02* Y859D01* X1536Y850D02* X1544Y859D01* X1426Y988D02* X7834D01* Y1000D02* X1426D01* X1509Y877D02* X1536D01* Y894D02* X1544Y886D01* X1426Y1128D02* X1818D01* Y1124D02* X1426D01* X1536Y850D02* X1509D01* X1500Y859D02* X1509Y850D01* X1426Y980D02* X7834D01* Y984D02* X1426D01* X1500Y886D02* X1509Y877D01* X1544Y868D02* X1536Y877D01* X1426Y968D02* X7834D01* X7835Y965D02* Y4972D01* X1425D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1873Y3500D02* X1426D01* X1873Y3504D02* X1426D01* X1873Y3508D02* X1426D01* Y3524D02* X1873D01* X1426Y3520D02* X1873D01* Y3516D02* X1426D01* X1873Y3512D02* X1426D01* X1700Y3736D02* X1426D01* X1700Y3732D02* X1426D01* Y3704D02* X1700D01* X1426Y3432D02* X1873D01* X1426Y3428D02* X1873D01* Y3424D02* X1426D01* X1873Y3420D02* X1426D01* Y3436D02* X1873D01* X1426Y3440D02* X1873D01* X1426Y3444D02* X1873D01* Y3400D02* X1426D01* X1705Y3677D02* X1701Y3681D01* X1700Y3720D02* X1426D01* Y3716D02* X1700D01* X1426Y3544D02* X1873D01* X1426Y3540D02* X1873D01* Y3532D02* X1426D01* X1873Y3528D02* X1426D01* X1701Y3681D02* Y3843D01* X1826Y3848D02* X1426D01* Y3868D02* X1826D01* X1426Y3872D02* X1826D01* X1426Y3876D02* X1826D01* Y3896D02* X1426D01* X1700Y3804D02* X1426D01* Y3808D02* X1700D01* X1426Y4024D02* X1826D01* Y3980D02* X1426D01* X1826Y3984D02* X1426D01* X1700Y3784D02* X1426D01* X1700Y3788D02* X1426D01* Y3792D02* X1700D01* X1426Y3960D02* X1826D01* Y3968D02* X1426D01* X1826Y3964D02* X1426D01* Y3972D02* X1826D01* X1426Y3976D02* X1826D01* X1827Y3847D02* X1705D01* X1426Y4072D02* X1826D01* X1426Y4076D02* X1826D01* Y4080D02* X1426D01* X1826Y4084D02* X1426D01* Y4068D02* X1826D01* X1426Y4064D02* X1826D01* X1426Y4060D02* X1826D01* Y4052D02* X1426D01* X1826Y4056D02* X1426D01* X1700Y3816D02* X1426D01* X1700Y3820D02* X1426D01* Y3812D02* X1700D01* X1426Y3928D02* X1826D01* X1426Y3924D02* X1826D01* Y3920D02* X1426D01* X1826Y3916D02* X1426D01* Y4172D02* X1826D01* X1426Y4176D02* X1826D01* X1426Y4180D02* X1826D01* Y4184D02* X1426D01* X1826Y4188D02* X1426D01* Y4196D02* X1826D01* X1426Y4192D02* X1826D01* Y4200D02* X1426D01* X1826Y4204D02* X1426D01* Y4212D02* X1826D01* X1426Y4208D02* X1826D01* Y4216D02* X1426D01* X1826Y4220D02* X1426D01* X1826Y4224D02* X1426D01* Y4236D02* X1826D01* X1426Y4240D02* X1826D01* X1426Y4244D02* X1826D01* Y4248D02* X1426D01* X1826Y4252D02* X1426D01* Y4260D02* X1826D01* X1426Y4256D02* X1826D01* Y4264D02* X1426D01* X1826Y4268D02* X1426D01* Y4272D02* X1826D01* X1426Y4276D02* X1826D01* X1426Y4280D02* X1826D01* Y4288D02* X1426D01* X1826Y4284D02* X1426D01* Y4292D02* X1826D01* X1426Y4296D02* X1826D01* Y4352D02* X1426D01* X1826Y4348D02* X1426D01* Y4356D02* X1826D01* X1426Y4360D02* X1826D01* X1500Y4543D02* X1441D01* X1426Y4232D02* X1826D01* X1426Y4228D02* X1826D01* Y4168D02* X1426D01* X1826Y4164D02* X1426D01* Y4160D02* X1826D01* X1426Y4156D02* X1826D01* X1426Y4152D02* X1826D01* Y4144D02* X1426D01* X1826Y4148D02* X1426D01* Y4140D02* X1826D01* X1426Y4136D02* X1826D01* Y4112D02* X1426D01* X1826Y4108D02* X1426D01* Y4116D02* X1826D01* X1426Y4120D02* X1826D01* Y4124D02* X1426D01* X1826Y4128D02* X1426D01* X1826Y4132D02* X1426D01* Y4004D02* X1826D01* X1426Y4000D02* X1826D01* X1426Y3996D02* X1826D01* Y3988D02* X1426D01* X1826Y3992D02* X1426D01* X1700Y3828D02* X1426D01* Y3824D02* X1700D01* X1426Y3864D02* X1826D01* X1426Y3860D02* X1826D01* X1426Y3668D02* X1873D01* Y3672D02* X1426D01* X1700Y3724D02* X1426D01* Y3728D02* X1700D01* X1426Y3416D02* X1873D01* X1426Y3412D02* X1873D01* Y3408D02* X1426D01* X1873Y3404D02* X1426D01* Y3396D02* X1873D01* X1426Y3392D02* X1873D01* Y3364D02* X1426D01* X1873Y3368D02* X1426D01* X1700Y3696D02* X1426D01* Y3700D02* X1700D01* X1426Y3560D02* X1873D01* X1426Y3556D02* X1873D01* Y3552D02* X1426D01* X1873Y3548D02* X1426D01* X4140Y3152D02* Y2863D01* X4144Y2887D02* Y2863D01* X4148D02* Y2885D01* X4136Y2863D02* Y3152D01* X4132D02* Y2863D01* X4146Y2886D02* X4142Y2890D01* X4156Y2885D02* Y2863D01* X4152D02* Y2885D01* X4146Y2886D02* X4484D01* X4488Y2890D01* X4508Y2863D02* Y3672D01* X4468Y3651D02* Y3672D01* X4464Y3651D02* Y3672D01* X4472D02* Y3651D01* X4488Y3646D02* Y2890D01* X4472Y2885D02* Y2863D01* X4464Y2885D02* Y2863D01* X4468Y2885D02* Y2863D01* X4460D02* Y2885D01* X4456Y2863D02* Y2885D01* X4448D02* Y2863D01* X4452Y2885D02* Y2863D01* X4444D02* Y2885D01* X4440Y2863D02* Y2885D01* X4436Y2863D02* Y2885D01* X4428D02* Y2863D01* X4432Y2885D02* Y2863D01* X4424D02* Y2885D01* X4420Y2863D02* Y2885D01* X4416Y2863D02* Y2885D01* X4412Y2863D02* Y2885D01* X4408Y2863D02* Y2885D01* X4400D02* Y2863D01* X4404Y2885D02* Y2863D01* X4392Y2885D02* Y2863D01* X4396Y2885D02* Y2863D01* X4388D02* Y2885D01* X4384Y2863D02* Y2885D01* X4380Y2863D02* Y2885D01* X4372D02* Y2863D01* X4376Y2885D02* Y2863D01* X4368D02* Y2885D01* X4364Y2863D02* Y2885D01* X4356D02* Y2863D01* X4360Y2885D02* Y2863D01* X4352D02* Y2885D01* X4348Y2863D02* Y2885D01* X4344Y2863D02* Y2885D01* X4336D02* Y2863D01* X4340Y2885D02* Y2863D01* X4332D02* Y2885D01* X4328Y2863D02* Y2885D01* X4324Y2863D02* Y2885D01* X4320Y2863D02* Y2885D01* X4316Y2863D02* Y2885D01* X4308D02* Y2863D01* X4312Y2885D02* Y2863D01* X4300Y2885D02* Y2863D01* X4304Y2885D02* Y2863D01* X4296D02* Y2885D01* X4292Y2863D02* Y2885D01* X4288Y2863D02* Y2885D01* X4280D02* Y2863D01* X4284Y2885D02* Y2863D01* X4276D02* Y2885D01* X4272Y2863D02* Y2885D01* X4264D02* Y2863D01* X4268Y2885D02* Y2863D01* X4260D02* Y2885D01* X4256Y2863D02* Y2885D01* X4252Y2863D02* Y2885D01* X4244D02* Y2863D01* X4248Y2885D02* Y2863D01* X4240D02* Y2885D01* X4236Y2863D02* Y2885D01* X4232Y2863D02* Y2885D01* X4228Y2863D02* Y2885D01* X4224Y2863D02* Y2885D01* X4216D02* Y2863D01* X4220Y2885D02* Y2863D01* X4208Y2885D02* Y2863D01* X4212Y2885D02* Y2863D01* X4204D02* Y2885D01* X4200Y2863D02* Y2885D01* X4196Y2863D02* Y2885D01* X4192Y2863D02* Y2885D01* X4188Y2863D02* Y2885D01* X4180D02* Y2863D01* X4184Y2885D02* Y2863D01* X4172Y2885D02* Y2863D01* X4176Y2885D02* Y2863D01* X4168D02* Y2885D01* X4164Y2863D02* Y2885D01* X4160Y2863D02* Y2885D01* X4142Y2890D02* Y3153D01* X3933D01* X3940Y3152D02* Y3131D01* X3944Y3152D02* Y3131D01* X3956D02* Y3152D01* X3952Y3131D02* Y3152D01* X3948Y3131D02* Y3152D01* X3933Y3153D02* X3929Y3157D01* Y3370D01* X3928Y3397D02* Y3131D01* X3936Y3152D02* Y3131D01* X3932D02* Y3154D01* X3920Y3131D02* Y3397D01* X3960D02* Y3375D01* X3964Y3397D02* Y3375D01* X3972D02* Y3397D01* X3968Y3375D02* Y3397D01* X3976Y3375D02* Y3400D01* X3984Y3375D02* Y3672D01* X3976Y3673D02* Y3402D01* X3956Y3397D02* Y3375D01* X3980D02* Y3672D01* X3976Y3673D02* X4512D01* Y2862D01* X3787D01* X3788Y2863D02* Y3152D01* X3820D02* Y3131D01* X3815Y3130D02* X4114D01* X4118Y3126D01* X4100Y3131D02* Y3152D01* X4096Y3131D02* Y3152D01* X4092Y3131D02* Y3152D01* X4088Y3131D02* Y3152D01* X4080D02* Y3131D01* X4084Y3152D02* Y3131D01* X4076D02* Y3152D01* X4072Y3131D02* Y3152D01* X4068Y3131D02* Y3152D01* X4060D02* Y3131D01* X4064Y3152D02* Y3131D01* X4056D02* Y3152D01* X4052Y3131D02* Y3152D01* X4048Y3131D02* Y3152D01* X4044Y3131D02* Y3152D01* X4040Y3131D02* Y3152D01* X4032D02* Y3131D01* X4036Y3152D02* Y3131D01* X4024Y3152D02* Y3131D01* X4028Y3152D02* Y3131D01* X4020D02* Y3152D01* X4016Y3131D02* Y3152D01* X4012Y3131D02* Y3152D01* X4008Y3131D02* Y3152D01* X4004Y3131D02* Y3152D01* X3996D02* Y3131D01* X4000Y3152D02* Y3131D01* X3988Y3152D02* Y3131D01* X3992Y3152D02* Y3131D01* X3984D02* Y3152D01* X3980Y3131D02* Y3152D01* X3976Y3131D02* Y3152D01* X3968D02* Y3131D01* X3972Y3152D02* Y3131D01* X3964D02* Y3152D01* X3960Y3131D02* Y3152D01* X3820Y2885D02* Y2863D01* X3824Y2885D02* Y2863D01* X3828Y2885D02* Y2863D01* X3836D02* Y2885D01* X3832Y2863D02* Y2885D01* X3844Y2863D02* Y2885D01* X3840Y2863D02* Y2885D01* X3848D02* Y2863D01* X3852Y2885D02* Y2863D01* X3856Y2885D02* Y2863D01* X3860Y2885D02* Y2863D01* X3864Y2885D02* Y2863D01* X3872D02* Y2885D01* X3868Y2863D02* Y2885D01* X3880Y2863D02* Y2885D01* X3876Y2863D02* Y2885D01* X3884D02* Y2863D01* X3888Y2885D02* Y2863D01* X3892Y2885D02* Y2863D01* X3896Y2885D02* Y2863D01* X3900Y2885D02* Y2863D01* X3908D02* Y2885D01* X3904Y2863D02* Y2885D01* X3912D02* Y2863D01* X3916Y2885D02* Y2863D01* X3920Y2885D02* Y2863D01* X3928D02* Y2885D01* X3924Y2863D02* Y2885D01* X3932D02* Y2863D01* X3936Y2885D02* Y2863D01* X3944D02* Y2885D01* X3940Y2863D02* Y2885D01* X3948D02* Y2863D01* X3952Y2885D02* Y2863D01* X3956Y2885D02* Y2863D01* X3964D02* Y2885D01* X3960Y2863D02* Y2885D01* X3972Y2863D02* Y2885D01* X3968Y2863D02* Y2885D01* X3976D02* Y2863D01* X3980Y2885D02* Y2863D01* X3984Y2885D02* Y2863D01* X3988Y2885D02* Y2863D01* X3992Y2885D02* Y2863D01* X4000D02* Y2885D01* X3996Y2863D02* Y2885D01* X4004D02* Y2863D01* X4008Y2885D02* Y2863D01* X4012Y2885D02* Y2863D01* X4020D02* Y2885D01* X4016Y2863D02* Y2885D01* X4024D02* Y2863D01* X4028Y2885D02* Y2863D01* X4036D02* Y2885D01* X4032Y2863D02* Y2885D01* X4040D02* Y2863D01* X4044Y2885D02* Y2863D01* X4048Y2885D02* Y2863D01* X4056D02* Y2885D01* X4052Y2863D02* Y2885D01* X4064Y2863D02* Y2885D01* X4060Y2863D02* Y2885D01* X4068D02* Y2863D01* X4072Y2885D02* Y2863D01* X4076Y2885D02* Y2863D01* X4080Y2885D02* Y2863D01* X4084Y2885D02* Y2863D01* X4092D02* Y2885D01* X4088Y2863D02* Y2885D01* X4104Y2863D02* Y2885D01* X4100Y2863D02* Y2885D01* X4118Y2890D02* Y3126D01* X4104Y3131D02* Y3152D01* X4108D02* Y3131D01* X4112Y3152D02* Y3131D01* X4116Y3152D02* Y3129D01* X4120Y3152D02* Y2863D01* X4096D02* Y2885D01* X4114Y2886D02* X4118Y2890D01* X4128Y2863D02* Y3152D01* X4124D02* Y2863D01* X4116Y2886D02* Y2863D01* X4108Y2885D02* Y2863D01* X4112Y2885D02* Y2863D01* X4114Y2886D02* X3815D01* X3812Y2888D02* Y2863D01* X3816D02* Y2885D01* X3800Y2863D02* Y3152D01* X3808D02* Y2863D01* X3815Y2886D02* X3811Y2890D01* Y3126D01* X3856Y3131D02* Y3152D01* X3852Y3131D02* Y3152D01* X3848Y3131D02* Y3152D01* X3840D02* Y3131D01* X3844Y3152D02* Y3131D01* X3836D02* Y3152D01* X3832Y3131D02* Y3152D01* X3828D02* Y3131D01* X3824Y3152D02* Y3131D01* X3811Y3126D02* X3815Y3130D01* X3804Y3152D02* Y2863D01* X3796D02* Y3152D01* X3816Y3131D02* Y3152D01* X3812D02* Y3128D01* X3792Y3152D02* Y2863D01* X3787Y2862D02* Y3153D01* X3902D01* X3906Y3157D02* X3902Y3153D01* X3884Y3152D02* Y3131D01* X3880D02* Y3152D01* X3876Y3131D02* Y3152D01* X3868D02* Y3131D01* X3872Y3152D02* Y3131D01* X3864D02* Y3152D01* X3860Y3131D02* Y3152D01* X3924Y3131D02* Y3397D01* X3933Y3374D02* X3929Y3370D01* X3940Y3375D02* Y3397D01* X3944Y3375D02* Y3397D01* X3948D02* Y3375D01* X3952Y3397D02* Y3375D01* X3976Y3402D02* X3972Y3398D01* X3906D01* X3908Y3397D02* Y3131D01* X3900D02* Y3152D01* X3896Y3131D02* Y3152D01* X3904Y3131D02* Y3155D01* X3912Y3131D02* Y3397D01* X3906Y3398D02* Y3157D01* X3888Y3152D02* Y3131D01* X3892Y3152D02* Y3131D01* X3916D02* Y3397D01* X3932Y3374D02* Y3397D01* X3936D02* Y3375D01* X3933Y3374D02* X4000D01* Y3646D01* X4012Y3672D02* Y3651D01* X4000Y3672D02* Y3375D01* X3996D02* Y3672D01* X4008Y3651D02* Y3672D01* X4004D02* Y3650D01* X3988Y3672D02* Y3375D01* X3992D02* Y3672D01* X4004Y3650D02* X4000Y3646D01* X4020Y3651D02* Y3672D01* X4016D02* Y3651D01* X4004Y3650D02* X4484D01* X4488Y3646D01* X4504Y3672D02* Y2863D01* X4476Y2885D02* Y2863D01* X4480Y2885D02* Y2863D01* X4484D02* Y2885D01* X4488Y2863D02* Y2888D01* X4500Y2863D02* Y3672D01* X4484D02* Y3651D01* X4488Y3672D02* Y3647D01* X4496Y3672D02* Y2863D01* X4492D02* Y3672D01* X4480Y3651D02* Y3672D01* X4476Y3651D02* Y3672D01* X4456D02* Y3651D01* X4460Y3672D02* Y3651D01* X4452D02* Y3672D01* X4448Y3651D02* Y3672D01* X4444Y3651D02* Y3672D01* X4440Y3651D02* Y3672D01* X4436Y3651D02* Y3672D01* X4428D02* Y3651D01* X4432Y3672D02* Y3651D01* X4420Y3672D02* Y3651D01* X4424Y3672D02* Y3651D01* X4416D02* Y3672D01* X4412Y3651D02* Y3672D01* X4408Y3651D02* Y3672D01* X4400D02* Y3651D01* X4404Y3672D02* Y3651D01* X4396D02* Y3672D01* X4392Y3651D02* Y3672D01* X4388Y3651D02* Y3672D01* X4384Y3651D02* Y3672D01* X4380Y3651D02* Y3672D01* X4372D02* Y3651D01* X4376Y3672D02* Y3651D01* X4364Y3672D02* Y3651D01* X4368Y3672D02* Y3651D01* X4360D02* Y3672D01* X4356Y3651D02* Y3672D01* X4352Y3651D02* Y3672D01* X4348Y3651D02* Y3672D01* X4344Y3651D02* Y3672D01* X4336D02* Y3651D01* X4340Y3672D02* Y3651D01* X4328Y3672D02* Y3651D01* X4332Y3672D02* Y3651D01* X4324D02* Y3672D01* X4320Y3651D02* Y3672D01* X4316Y3651D02* Y3672D01* X4308D02* Y3651D01* X4312Y3672D02* Y3651D01* X4304D02* Y3672D01* X4300Y3651D02* Y3672D01* X4296Y3651D02* Y3672D01* X4292Y3651D02* Y3672D01* X4288Y3651D02* Y3672D01* X4280D02* Y3651D01* X4284Y3672D02* Y3651D01* X4272Y3672D02* Y3651D01* X4276Y3672D02* Y3651D01* X4268D02* Y3672D01* X4264Y3651D02* Y3672D01* X4260Y3651D02* Y3672D01* X4256Y3651D02* Y3672D01* X4252Y3651D02* Y3672D01* X4244D02* Y3651D01* X4248Y3672D02* Y3651D01* X4236Y3672D02* Y3651D01* X4240Y3672D02* Y3651D01* X4232D02* Y3672D01* X4228Y3651D02* Y3672D01* X4224Y3651D02* Y3672D01* X4216D02* Y3651D01* X4220Y3672D02* Y3651D01* X4212D02* Y3672D01* X4208Y3651D02* Y3672D01* X4200D02* Y3651D01* X4204Y3672D02* Y3651D01* X4196D02* Y3672D01* X4192Y3651D02* Y3672D01* X4188Y3651D02* Y3672D01* X4180D02* Y3651D01* X4184Y3672D02* Y3651D01* X4176D02* Y3672D01* X4172Y3651D02* Y3672D01* X4168Y3651D02* Y3672D01* X4164Y3651D02* Y3672D01* X4160Y3651D02* Y3672D01* X4152D02* Y3651D01* X4156Y3672D02* Y3651D01* X4144Y3672D02* Y3651D01* X4148Y3672D02* Y3651D01* X4140D02* Y3672D01* X4136Y3651D02* Y3672D01* X4132Y3651D02* Y3672D01* X4124D02* Y3651D01* X4128Y3672D02* Y3651D01* X4120D02* Y3672D01* X4116Y3651D02* Y3672D01* X4108D02* Y3651D01* X4112Y3672D02* Y3651D01* X4104D02* Y3672D01* X4100Y3651D02* Y3672D01* X4096Y3651D02* Y3672D01* X4088D02* Y3651D01* X4092Y3672D02* Y3651D01* X4084D02* Y3672D01* X4080Y3651D02* Y3672D01* X4076Y3651D02* Y3672D01* X4072Y3651D02* Y3672D01* X4068Y3651D02* Y3672D01* X4060D02* Y3651D01* X4064Y3672D02* Y3651D01* X4052Y3672D02* Y3651D01* X4056Y3672D02* Y3651D01* X4048D02* Y3672D01* X4044Y3651D02* Y3672D01* X4040Y3651D02* Y3672D01* X4032D02* Y3651D01* X4036Y3672D02* Y3651D01* X4028D02* Y3672D01* X4024Y3651D02* Y3672D01* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3358Y5370D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* Y5370D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5406D01* X3429Y5370D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5379D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X4141D02* X4149Y5441D01* X4185D01* X4194Y5432D01* X4141D02* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4221Y5406D02* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4221D01* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5415D02* Y5432D01* X4398Y5441D01* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D01* X4407Y5415D01* X4425Y5441D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4567Y5406D02* X4603D01* X4638Y5415D02* Y5432D01* X4647Y5441D01* X4683D01* X4692Y5432D01* X4638Y5415D02* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* X4621D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5370D02* X5225Y5379D01* X5234Y5388D01* X5243Y5379D01* X5234Y5370D01* X5287D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5441D02* X5836D01* X5845Y5432D01* Y5415D01* X5862Y5406D02* Y5379D01* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5960Y5397D02* Y5379D01* X5969Y5370D02* X5960Y5379D01* X5951Y5370D01* X5934Y5397D01* Y5415D01* X5898D02* X5871D01* X5862Y5406D01* X5845Y5415D02* X5836Y5406D01* X5791D01* Y5370D02* Y5441D01* X6005Y5406D02* X6014Y5415D01* X6040D01* X6049Y5406D01* Y5397D01* X6040Y5388D01* X6005D01* X5969Y5370D02* X5987Y5397D01* Y5415D01* X6005Y5406D02* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6147D02* X6200D01* X6218D02* X6262D01* X6271Y5415D01* X6307Y5370D02* X6325D01* X6316D02* Y5441D01* X6307D01* X6271Y5415D02* Y5432D01* X6262Y5441D01* X6218D01* Y5370D01* X6369Y5415D02* X6396D01* X6405Y5406D01* Y5370D01* X6369D01* X6360Y5379D01* Y5388D01* X6369Y5397D01* X6405D01* X6431Y5370D02* Y5415D01* Y5406D02* X6440Y5415D01* X6467D01* X6476Y5406D01* Y5370D01* X6502Y5388D02* X6538D01* X6547Y5397D01* Y5406D01* X6538Y5415D01* X6511D01* X6502Y5406D01* Y5379D01* X6511Y5370D01* X6547D01* X6680D02* X6662Y5397D01* Y5415D01* X6680Y5441D01* X6742Y5432D02* Y5379D01* X6716Y5406D02* X6769D01* X6787Y5432D02* X6796Y5441D01* X6831D01* X6840Y5432D01* Y5415D01* X6822Y5406D01* X6805D02* X6822D01* X6840Y5397D01* Y5379D01* X6831Y5370D01* X6796D01* X6787Y5379D01* X6885Y5388D02* X6876Y5379D01* X6885Y5370D01* X6894Y5379D01* X6885Y5388D01* X6929Y5379D02* X6938Y5370D01* X6974D01* X6982Y5379D01* Y5397D01* X6965Y5406D01* X6947D01* X6965D02* X6982Y5415D01* Y5432D01* X6974Y5441D01* X6938D01* X6929Y5432D01* X7000Y5441D02* X7009Y5406D01* X7027Y5370D01* X7045Y5406D01* X7054Y5441D01* X7089D02* X7107Y5415D01* Y5397D01* X7089Y5370D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* Y5662D02* X7599Y5462D01* X7799Y5262D01* X7999Y5462D01* X7799Y5662D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X8324Y5137D02* X8124Y4937D01* X8324Y4737D01* X8524Y4937D01* X8324Y5137D01* Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8024Y4937D01* X8324Y4637D01* X7834Y4700D02* X7781D01* X7834Y4696D02* X7781D01* Y4688D02* X7834D01* X7781Y4692D02* X7834D01* Y4684D02* X7781D01* X7834Y4680D02* X7781D01* Y4676D02* X7834D01* X7781Y4672D02* X7834D01* X7781Y4668D02* X7834D01* Y4660D02* X7781D01* X7834Y4664D02* X7781D01* Y4656D02* X7834D01* X7781Y4652D02* X7834D01* Y4648D02* X7781D01* X7834Y4644D02* X7781D01* X7834Y4640D02* X7781D01* Y4632D02* X7834D01* X7781Y4636D02* X7834D01* Y4628D02* X7781D01* X7834Y4624D02* X7781D01* Y4620D02* X7834D01* X7799Y4587D02* Y4760D01* X7781Y4748D02* X7834D01* Y4724D02* X7781D01* X7834Y4728D02* X7781D01* Y4720D02* X7834D01* X7781Y4716D02* X7834D01* Y4712D02* X7781D01* X7834Y4708D02* X7781D01* X7834Y4704D02* X7781D01* X7449Y4937D02* X7740D01* X7834Y4944D02* X1426D01* Y4948D02* X7834D01* X7761Y4880D02* X7834D01* Y4884D02* X7757D01* X7834Y4964D02* X1426D01* Y4968D02* X7834D01* X7753Y4888D02* X7834D01* X7778Y4863D02* X7780Y4860D01* X7834Y4932D02* X1426D01* Y4928D02* X7834D01* X7778Y4864D02* X7834D01* Y4868D02* X7774D01* X7834Y4920D02* X1426D01* Y4916D02* X7834D01* X7780Y4860D02* X7834D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8624D02* X8324Y700D01* X8024Y1000D01* X7834Y1124D02* X7775D01* X7834Y1024D02* X1426D01* Y1020D02* X7834D01* X7775Y1188D02* X7834D01* Y1184D02* X7775D01* X7834Y1052D02* X1426D01* Y1048D02* X7834D01* X7775Y1128D02* X7834D01* Y1156D02* X7775D01* X7834Y1044D02* X1426D01* Y1040D02* X7834D01* X7799Y1059D02* Y1197D01* X7775Y1216D02* X7834D01* X7775Y1212D02* X7834D01* X7775Y1208D02* X7834D01* Y1204D02* X7775D01* X7740Y1000D02* X7449D01* X7775Y1644D02* X7834D01* X7775Y1648D02* X7834D01* X7775Y1652D02* X7834D01* Y1656D02* X7775D01* X7834Y1660D02* X7775D01* Y1668D02* X7834D01* X7775Y1664D02* X7834D01* Y1672D02* X7775D01* X7834Y1676D02* X7775D01* X7834Y1680D02* X7775D01* Y1684D02* X7834D01* X7775Y1688D02* X7834D01* Y1704D02* X7775D01* X7834Y1700D02* X7775D01* Y1692D02* X7834D01* X7775Y1696D02* X7834D01* Y1640D02* X7775D01* X7834Y1636D02* X7775D01* Y1628D02* X7834D01* X7775Y1632D02* X7834D01* Y1624D02* X7775D01* X7834Y1620D02* X7775D01* Y1616D02* X7834D01* X7775Y1612D02* X7834D01* X7775Y1608D02* X7834D01* Y1600D02* X7775D01* X7834Y1604D02* X7775D01* Y1596D02* X7834D01* X7775Y1592D02* X7834D01* Y1588D02* X7775D01* X7834Y1584D02* X7775D01* X7834Y1580D02* X7775D01* X7834Y1576D02* X7775D01* X7834Y1572D02* X7775D01* Y1564D02* X7834D01* X7775Y1568D02* X7834D01* Y1560D02* X7775D01* X7834Y1556D02* X7775D01* X7834Y1552D02* X7775D01* Y1532D02* X7834D01* X7775Y1528D02* X7834D01* Y1524D02* X7775D01* X7834Y1520D02* X7775D01* X7834Y1516D02* X7775D01* Y1508D02* X7834D01* X7775Y1512D02* X7834D01* Y1536D02* X7775D01* X7834Y1540D02* X7775D01* Y1548D02* X7834D01* X7775Y1544D02* X7834D01* Y1480D02* X7775D01* X7834Y1484D02* X7775D01* Y1488D02* X7834D01* X7775Y1492D02* X7834D01* X7775Y1496D02* X7834D01* Y1504D02* X7775D01* X7834Y1500D02* X7775D01* Y1476D02* X7834D01* X7775Y1472D02* X7834D01* X7775Y1468D02* X7834D01* Y1464D02* X7775D01* X7834Y1460D02* X7775D01* Y1452D02* X7834D01* X7775Y1456D02* X7834D01* Y1448D02* X7775D01* X7834Y1444D02* X7775D01* Y1436D02* X7834D01* X7775Y1440D02* X7834D01* Y1432D02* X7775D01* X7834Y1428D02* X7775D01* X7834Y1424D02* X7775D01* Y1420D02* X7834D01* X7775Y1416D02* X7834D01* Y1368D02* X7775D01* X7834Y1372D02* X7775D01* Y1376D02* X7834D01* X7775Y1380D02* X7834D01* X7775Y1384D02* X7834D01* Y1392D02* X7775D01* X7834Y1388D02* X7775D01* Y1396D02* X7834D01* X7775Y1400D02* X7834D01* Y1404D02* X7775D01* X7834Y1408D02* X7775D01* X7834Y1412D02* X7775D01* Y1364D02* X7834D01* X7775Y1360D02* X7834D01* Y1352D02* X7775D01* X7834Y1356D02* X7775D01* Y1348D02* X7834D01* X7775Y1344D02* X7834D01* X7775Y1340D02* X7834D01* Y1336D02* X7775D01* X7834Y1332D02* X7775D01* Y1324D02* X7834D01* X7775Y1328D02* X7834D01* Y1320D02* X7775D01* X7834Y1316D02* X7775D01* X7834Y1312D02* X7775D01* Y1308D02* X7834D01* X7775Y1304D02* X7834D01* Y1296D02* X7775D01* X7834Y1300D02* X7775D01* Y1292D02* X7834D01* X7775Y1288D02* X7834D01* X7799Y1350D02* Y1197D01* X7834Y1084D02* X1426D01* Y1088D02* X7834D01* X7774Y1120D02* Y3126D01* X7770Y3130D01* X7773Y3128D02* X7834D01* X7775Y3124D02* X7834D01* Y3120D02* X7775D01* X7834Y3116D02* X7775D01* Y3108D02* X7834D01* X7775Y3112D02* X7834D01* Y3132D02* X7269D01* X7291Y3126D02* X7295Y3130D01* X7290Y3124D02* X7269D01* Y3128D02* X7293D01* X7269Y3148D02* X7834D01* Y3104D02* X7775D01* X7834Y3100D02* X7775D01* X7834Y3096D02* X7775D01* Y3092D02* X7834D01* X7775Y3088D02* X7834D01* Y3080D02* X7775D01* X7834Y3084D02* X7775D01* Y3076D02* X7834D01* X7775Y3072D02* X7834D01* Y3068D02* X7775D01* X7834Y3064D02* X7775D01* X7834Y3060D02* X7775D01* Y3020D02* X7834D01* X7775Y3016D02* X7834D01* X7775Y3012D02* X7834D01* Y3008D02* X7775D01* X7834Y3004D02* X7775D01* X7834Y3056D02* X7775D01* X7834Y3052D02* X7775D01* Y3044D02* X7834D01* X7775Y3048D02* X7834D01* Y3040D02* X7775D01* X7834Y3036D02* X7775D01* X7834Y3032D02* X7775D01* Y3028D02* X7834D01* X7775Y3024D02* X7834D01* Y2976D02* X7775D01* X7834Y2972D02* X7775D01* X7834Y2968D02* X7775D01* Y2964D02* X7834D01* X7775Y2960D02* X7834D01* Y2984D02* X7775D01* X7834Y2980D02* X7775D01* Y2988D02* X7834D01* X7775Y2992D02* X7834D01* Y3000D02* X7775D01* X7834Y2996D02* X7775D01* Y2956D02* X7834D01* X7775Y2952D02* X7834D01* X7775Y2948D02* X7834D01* Y2944D02* X7775D01* X7834Y2940D02* X7775D01* X7761Y2900D02* X7755Y2908D01* X7750Y2911D01* X7775Y2928D02* X7834D01* Y2936D02* X7775D01* X7834Y2932D02* X7775D01* Y2924D02* X7834D01* X7775Y2920D02* X7834D01* Y2916D02* X7775D01* X7834Y2912D02* X7775D01* X7719Y2900D02* X7722Y2905D01* X7730Y2911D01* X7719Y2880D02* X7725Y2872D01* X7730Y2868D01* X7775Y2896D02* X7834D01* X7775Y2900D02* X7834D01* Y2904D02* X7775D01* X7834Y2908D02* X7775D01* Y2892D02* X7834D01* X7775Y2888D02* X7834D01* X7775Y2884D02* X7834D01* Y2880D02* X7775D01* X7834Y2876D02* X7775D01* Y2868D02* X7834D01* X7775Y2872D02* X7834D01* Y2848D02* X7775D01* X7834Y2852D02* X7775D01* Y2844D02* X7834D01* X7775Y2840D02* X7834D01* Y2816D02* X7775D01* X7834Y2812D02* X7775D01* Y2820D02* X7834D01* X7775Y2824D02* X7834D01* X7775Y2828D02* X7834D01* Y2832D02* X7775D01* X7834Y2836D02* X7775D01* Y2860D02* X7834D01* X7775Y2856D02* X7834D01* Y2864D02* X7775D01* X7761Y2880D02* X7758Y2875D01* X7750Y2868D01* X7834Y2776D02* X7775D01* X7834Y2780D02* X7775D01* Y2772D02* X7834D01* X7775Y2768D02* X7834D01* Y2764D02* X7775D01* X7834Y2760D02* X7775D01* X7834Y2756D02* X7775D01* Y2788D02* X7834D01* X7775Y2784D02* X7834D01* Y2792D02* X7775D01* X7834Y2796D02* X7775D01* Y2804D02* X7834D01* X7775Y2808D02* X7834D01* Y2800D02* X7775D01* X7750Y2754D02* X7755Y2750D01* X7761Y2742D01* X7775Y2720D02* X7834D01* X7775Y2724D02* X7834D01* Y2712D02* X7775D01* X7834Y2716D02* X7775D01* X7730Y2711D02* X7725Y2714D01* X7719Y2722D01* X7750Y2711D02* X7758Y2717D01* X7761Y2722D01* X7775Y2684D02* X7834D01* X7775Y2688D02* X7834D01* Y2692D02* X7775D01* X7834Y2696D02* X7775D01* Y2708D02* X7834D01* X7775Y2704D02* X7834D01* X7775Y2700D02* X7834D01* Y2728D02* X7775D01* X7834Y2732D02* X7775D01* X7834Y2736D02* X7775D01* Y2744D02* X7834D01* X7775Y2740D02* X7834D01* Y2748D02* X7775D01* X7834Y2752D02* X7775D01* X7719Y2742D02* X7722Y2748D01* X7730Y2754D01* X7775Y2680D02* X7834D01* X7775Y2676D02* X7834D01* X7775Y2672D02* X7834D01* Y2668D02* X7775D01* X7834Y2664D02* X7775D01* Y2656D02* X7834D01* X7775Y2660D02* X7834D01* Y2652D02* X7775D01* X7834Y2648D02* X7775D01* Y2644D02* X7834D01* X7775Y2640D02* X7834D01* X7775Y2636D02* X7834D01* X7775Y2600D02* X7834D01* X7775Y2604D02* X7834D01* Y2608D02* X7775D01* X7834Y2612D02* X7775D01* X7834Y2616D02* X7775D01* Y2632D02* X7834D01* X7775Y2628D02* X7834D01* Y2624D02* X7775D01* X7834Y2620D02* X7775D01* X7750Y2596D02* X7755Y2593D01* X7761Y2585D01* X7730Y2596D02* X7722Y2590D01* X7719Y2585D01* X7775Y2588D02* X7834D01* Y2596D02* X7775D01* X7834Y2592D02* X7775D01* Y2584D02* X7834D01* X7775Y2580D02* X7834D01* Y2572D02* X7775D01* X7834Y2576D02* X7775D01* Y2568D02* X7834D01* X7775Y2564D02* X7834D01* Y2560D02* X7775D01* X7834Y2556D02* X7775D01* X7761Y2565D02* X7758Y2560D01* X7750Y2554D01* X7775Y2552D02* X7834D01* X7775Y2548D02* X7834D01* X7775Y2544D02* X7834D01* Y2540D02* X7775D01* X7834Y2536D02* X7775D01* Y2528D02* X7834D01* X7775Y2532D02* X7834D01* Y2524D02* X7775D01* X7730Y2554D02* X7725Y2557D01* X7719Y2565D01* X7573Y2475D02* X7567Y2478D01* X7561Y2486D01* Y2506D02* X7565Y2511D01* X7573Y2517D01* X7593D02* X7598Y2514D01* X7604Y2506D01* Y2486D02* X7601Y2481D01* X7593Y2475D01* X7730Y2439D02* X7722Y2433D01* X7719Y2427D01* X7775Y2424D02* X7834D01* Y2432D02* X7775D01* X7834Y2428D02* X7775D01* X7761Y2427D02* X7755Y2435D01* X7750Y2439D01* X7775Y2440D02* X7834D01* X7775Y2436D02* X7834D01* Y2464D02* X7775D01* X7834Y2468D02* X7775D01* Y2476D02* X7834D01* X7775Y2472D02* X7834D01* Y2480D02* X7775D01* X7834Y2484D02* X7775D01* X7834Y2488D02* X7775D01* Y2512D02* X7834D01* X7775Y2508D02* X7834D01* Y2516D02* X7775D01* X7834Y2520D02* X7775D01* X7834Y2500D02* X7775D01* X7834Y2504D02* X7775D01* Y2496D02* X7834D01* X7775Y2492D02* X7834D01* X7775Y2460D02* X7834D01* X7775Y2456D02* X7834D01* Y2452D02* X7775D01* X7834Y2448D02* X7775D01* X7834Y2444D02* X7775D01* Y2420D02* X7834D01* X7775Y2416D02* X7834D01* Y2412D02* X7775D01* X7834Y2408D02* X7775D01* X7730Y2396D02* X7725Y2399D01* X7719Y2407D01* X7750Y2396D02* X7758Y2402D01* X7761Y2407D01* X7775Y2376D02* X7834D01* X7775Y2372D02* X7834D01* Y2368D02* X7775D01* X7834Y2364D02* X7775D01* Y2380D02* X7834D01* X7775Y2384D02* X7834D01* X7775Y2388D02* X7834D01* Y2392D02* X7775D01* X7834Y2396D02* X7775D01* Y2404D02* X7834D01* X7775Y2400D02* X7834D01* Y2360D02* X7775D01* X7834Y2356D02* X7775D01* X7834Y2352D02* X7775D01* Y2348D02* X7834D01* X7775Y2344D02* X7834D01* Y2320D02* X7775D01* X7834Y2316D02* X7775D01* Y2324D02* X7834D01* X7775Y2328D02* X7834D01* Y2332D02* X7775D01* X7834Y2336D02* X7775D01* X7834Y2340D02* X7775D01* X7730Y2281D02* X7722Y2275D01* X7719Y2270D01* X7775Y2280D02* X7834D01* X7775Y2284D02* X7834D01* Y2296D02* X7775D01* X7834Y2292D02* X7775D01* X7834Y2288D02* X7775D01* Y2300D02* X7834D01* X7775Y2304D02* X7834D01* Y2308D02* X7775D01* X7834Y2312D02* X7775D01* X7750Y2281D02* X7755Y2278D01* X7761Y2270D01* X7775Y2244D02* X7834D01* X7775Y2240D02* X7834D01* Y2248D02* X7775D01* X7761Y2250D02* X7758Y2245D01* X7750Y2239D01* X7719Y2250D02* X7725Y2242D01* X7730Y2239D01* X7775Y2216D02* X7834D01* X7775Y2220D02* X7834D01* Y2224D02* X7775D01* X7834Y2228D02* X7775D01* Y2236D02* X7834D01* X7775Y2232D02* X7834D01* Y2256D02* X7775D01* X7834Y2252D02* X7775D01* Y2260D02* X7834D01* X7775Y2264D02* X7834D01* Y2268D02* X7775D01* X7834Y2272D02* X7775D01* X7834Y2276D02* X7775D01* Y2212D02* X7834D01* X7775Y2208D02* X7834D01* X7775Y2204D02* X7834D01* Y2200D02* X7775D01* X7834Y2196D02* X7775D01* Y2188D02* X7834D01* X7775Y2192D02* X7834D01* Y2184D02* X7775D01* X7834Y2180D02* X7775D01* Y2176D02* X7834D01* X7775Y2172D02* X7834D01* X7775Y2168D02* X7834D01* Y2160D02* X7775D01* X7834Y2164D02* X7775D01* Y2156D02* X7834D01* X7775Y2152D02* X7834D01* Y2148D02* X7775D01* X7834Y2144D02* X7775D01* X7834Y2140D02* X7775D01* Y2132D02* X7834D01* X7775Y2136D02* X7834D01* Y2128D02* X7775D01* X7834Y2124D02* X7775D01* Y2120D02* X7834D01* X7775Y2116D02* X7834D01* X7775Y2112D02* X7834D01* Y2104D02* X7775D01* X7834Y2108D02* X7775D01* Y2100D02* X7834D01* X7775Y2096D02* X7834D01* X7775Y2092D02* X7834D01* X7775Y2088D02* X7834D01* Y2084D02* X7775D01* X7834Y2080D02* X7775D01* X7834Y2076D02* X7775D01* Y2012D02* X7834D01* X7775Y2016D02* X7834D01* X7775Y2020D02* X7834D01* Y2024D02* X7775D01* X7834Y2028D02* X7775D01* Y2036D02* X7834D01* X7775Y2032D02* X7834D01* Y2040D02* X7775D01* X7834Y2044D02* X7775D01* Y2048D02* X7834D01* X7775Y2052D02* X7834D01* X7775Y2056D02* X7834D01* Y2072D02* X7775D01* X7834Y2068D02* X7775D01* Y2060D02* X7834D01* X7775Y2064D02* X7834D01* Y2008D02* X7775D01* X7834Y2004D02* X7775D01* Y1996D02* X7834D01* X7775Y2000D02* X7834D01* Y1992D02* X7775D01* X7834Y1988D02* X7775D01* X7834Y1984D02* X7775D01* Y1980D02* X7834D01* X7775Y1976D02* X7834D01* Y1968D02* X7775D01* X7834Y1972D02* X7775D01* Y1964D02* X7834D01* X7775Y1960D02* X7834D01* Y1956D02* X7775D01* X7834Y1952D02* X7775D01* X7834Y1948D02* X7775D01* X7834Y1944D02* X7775D01* X7834Y1940D02* X7775D01* Y1932D02* X7834D01* X7775Y1936D02* X7834D01* Y1928D02* X7775D01* X7834Y1924D02* X7775D01* X7834Y1920D02* X7775D01* Y1916D02* X7834D01* X7775Y1912D02* X7834D01* X7775Y1908D02* X7834D01* X7775Y1904D02* X7834D01* X7775Y1900D02* X7834D01* Y1896D02* X7775D01* X7834Y1892D02* X7775D01* Y1884D02* X7834D01* X7775Y1888D02* X7834D01* Y1880D02* X7775D01* X7834Y1876D02* X7775D01* Y1868D02* X7834D01* X7775Y1872D02* X7834D01* Y1864D02* X7775D01* X7834Y1860D02* X7775D01* X7834Y1856D02* X7775D01* Y1852D02* X7834D01* X7775Y1848D02* X7834D01* Y1792D02* X7775D01* X7834Y1796D02* X7775D01* Y1788D02* X7834D01* X7775Y1784D02* X7834D01* X7775Y1780D02* X7834D01* X7775Y1776D02* X7834D01* X7775Y1772D02* X7834D01* Y1768D02* X7775D01* X7834Y1764D02* X7775D01* Y1756D02* X7834D01* X7775Y1760D02* X7834D01* Y1752D02* X7775D01* X7834Y1748D02* X7775D01* Y1744D02* X7834D01* X7775Y1740D02* X7834D01* X7775Y1736D02* X7834D01* Y1728D02* X7775D01* X7834Y1732D02* X7775D01* Y1724D02* X7834D01* X7775Y1720D02* X7834D01* Y1716D02* X7775D01* X7834Y1712D02* X7775D01* X7834Y1708D02* X7775D01* X7834Y1800D02* X7775D01* X7834Y1804D02* X7775D01* X7834Y1808D02* X7775D01* Y1812D02* X7834D01* X7775Y1816D02* X7834D01* Y1824D02* X7775D01* X7834Y1820D02* X7775D01* Y1828D02* X7834D01* X7775Y1832D02* X7834D01* Y1836D02* X7775D01* X7834Y1840D02* X7775D01* X7834Y1844D02* X7775D01* X7593Y1845D02* X7601Y1851D01* X7604Y1856D01* Y1876D02* X7598Y1884D01* X7593Y1887D01* X7573D02* X7565Y1881D01* X7561Y1876D01* Y1856D02* X7567Y1848D01* X7573Y1845D01* X8324Y1200D02* X8124Y1000D01* X8324Y800D01* Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D382* X2861Y1669D02* D03* X2910Y1671D02* D03* X2927Y1724D02* D03* X2874Y1727D02* D03* X2823Y1726D02* D03* X2767Y1679D02* D03* X2735Y1752D02* D03* X2777Y1780D02* D03* X2822D02* D03* X2875Y1785D02* D03* X2876Y1831D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X2874Y1933D02* D03* X2873Y1983D02* D03* X2923Y1987D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3026Y2184D02* D03* X3130D02* D03* X3231Y2239D02* D03* X3266Y2244D02* D03* X3272Y2288D02* D03* Y2188D02* D03* X3268Y2142D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3121Y1938D02* D03* X3126Y1887D02* D03* X3083Y1892D02* D03* X3071Y1931D02* D03* X3021D02* D03* X3027Y1880D02* D03* Y1824D02* D03* Y1780D02* D03* X3029Y1735D02* D03* X3051Y1666D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3275Y1735D02* D03* X3276Y1682D02* D03* X3350Y1684D02* D03* X3390Y1579D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3231Y1446D02* D03* X3010Y1443D02* D03* X2994Y1233D02* D03* X2931Y1243D02* D03* X2868Y1238D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2764Y1441D02* D03* X2650Y1414D02* D03* X2618Y1435D02* D03* X2537Y1427D02* D03* X2563Y1625D02* D03* X2523Y1644D02* D03* X2051Y1736D02* D03* X2091Y1756D02* D03* X2093Y1834D02* D03* X2027Y1915D02* D03* X2127Y2083D02* D03* X2166Y2082D02* D03* X2213Y2184D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2280Y2212D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2427D02* D03* X2461Y2637D02* D03* X2455Y2593D02* D03* X2396Y2588D02* D03* X2447Y2564D02* D03* X2444Y2530D02* D03* X2482Y2531D02* D03* X2481Y2482D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2386Y2243D02* D03* X2332Y2184D02* D03* X2303Y2180D02* D03* X2280Y2095D02* D03* X2413Y2093D02* D03* X2374Y2095D02* D03* X2377Y2061D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2327Y1830D02* D03* X2201Y1916D02* D03* X2188Y1812D02* D03* X2187Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* X2130Y1679D02* D03* X2188Y1612D02* D03* X2187Y1562D02* D03* Y1512D02* D03* X2168Y1466D02* D03* X2187Y1381D02* D03* X2189Y1345D02* D03* X2186Y1283D02* D03* X2164Y1157D02* D03* X2188Y1243D02* D03* X2091Y1245D02* D03* X2013Y1332D02* D03* X1970Y1398D02* D03* X2015Y1467D02* D03* X2314Y1462D02* D03* X2315Y1413D02* D03* X2314Y1312D02* D03* X2326Y1277D02* D03* X2315Y1193D02* D03* X2476Y1210D02* D03* X2558Y1214D02* D03* X2596Y1288D02* D03* X2647Y1189D02* D03* X2472Y1312D02* D03* X2471Y1412D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2823Y2087D02* D03* X2876Y2085D02* D03* X2923Y2134D02* D03* X2875D02* D03* X2876Y2284D02* D03* X3057Y2297D02* D03* X3067Y2343D02* D03* Y2443D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3064Y2544D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3132Y2728D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3371Y3139D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X3594Y3286D02* D03* X3644D02* D03* X3696D02* D03* X3745Y3285D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3698Y3396D02* D03* X3748Y3392D02* D03* X3747Y3340D02* D03* X3695Y3341D02* D03* X3646D02* D03* X3643Y3387D02* D03* X3647Y3441D02* D03* X3698D02* D03* X3692Y3490D02* D03* X3748Y3486D02* D03* X3743Y3440D02* D03* X3792Y3445D02* D03* X3791Y3401D02* D03* X3920Y3415D02* D03* X4001Y3383D02* D03* X3997Y3252D02* D03* X4004Y3122D02* D03* X3996Y3044D02* D03* Y3093D02* D03* X3938Y3110D02* D03* X3868Y3112D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3788Y3128D02* D03* X3688Y3027D02* D03* X3628Y2967D02* D03* X3492Y2978D02* D03* X3819Y2920D02* D03* X3891D02* D03* X3932Y2811D02* D03* X3974Y2918D02* D03* X4010Y2908D02* D03* X4069Y2917D02* D03* X4096Y2903D02* D03* X4066Y2816D02* D03* X4079Y2688D02* D03* X4121D02* D03* X4172D02* D03* X4325Y2691D02* D03* X4356Y2688D02* D03* X4432D02* D03* X4389Y2835D02* D03* X4299Y2918D02* D03* X4247Y2869D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3318D02* D03* Y3467D02* D03* X3998Y3465D02* D03* X3993Y3546D02* D03* X3955Y3558D02* D03* X3995Y3605D02* D03* X3941Y3623D02* D03* X3899Y3608D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3817Y2543D02* D03* X3767Y2727D02* D03* X3674Y2733D02* D03* X3623Y2635D02* D03* X3625Y2597D02* D03* X3583Y2539D02* D03* X3614Y2524D02* D03* X3633Y2493D02* D03* X3552Y2459D02* D03* X3573Y2436D02* D03* X3632Y2439D02* D03* X3627Y2411D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3817Y2348D02* D03* X3725Y2247D02* D03* X3767Y2193D02* D03* Y2092D02* D03* X3817D02* D03* X3866D02* D03* X3918D02* D03* X3924Y2035D02* D03* X3872Y1993D02* D03* X3874Y2035D02* D03* X3826D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3830Y1938D02* D03* X3821Y1882D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3667Y1993D02* D03* X3633Y2093D02* D03* X3544Y2137D02* D03* X3468Y2142D02* D03* X3472Y2188D02* D03* X3422D02* D03* X3418Y2142D02* D03* X3372Y2188D02* D03* X3368Y2142D02* D03* X3318D02* D03* X3322Y2188D02* D03* X3316Y2244D02* D03* X3322Y2288D02* D03* X3318Y2342D02* D03* X3268D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3422Y2288D02* D03* X3416Y2244D02* D03* X3366D02* D03* X3372Y2288D02* D03* X3478Y2430D02* D03* X3413Y2467D02* D03* X3433Y2537D02* D03* X3482Y2539D02* D03* X3533D02* D03* X3472Y2602D02* D03* X3475Y2645D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3379Y2685D02* D03* X3562Y2688D02* D03* X3525Y2697D02* D03* X3530Y2737D02* D03* X3531Y2784D02* D03* X3476Y2828D02* D03* X3451Y2845D02* D03* X3426Y2827D02* D03* X3367Y2919D02* D03* X3394Y2886D02* D03* X3360Y2847D02* D03* X3291Y2882D02* D03* X3278Y2839D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3232Y2592D02* D03* X3161Y2460D02* D03* X3176Y2486D02* D03* Y2516D02* D03* X3150Y2501D02* D03* X3148Y2533D02* D03* X2971Y2585D02* D03* X3020Y2636D02* D03* X3067Y2643D02* D03* X3041Y2687D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3446Y3386D02* D03* X3441Y3344D02* D03* X3393Y3343D02* D03* X3351D02* D03* X3350Y3387D02* D03* X3387Y3489D02* D03* X3396Y3442D02* D03* X3354D02* D03* X3288D02* D03* X3293Y3486D02* D03* X3248D02* D03* X3196Y3487D02* D03* X3140Y3442D02* D03* X3097Y3485D02* D03* X3043Y3494D02* D03* X3051Y3443D02* D03* X2778Y3579D02* D03* X2709Y3547D02* D03* X2745Y3506D02* D03* X2819Y3507D02* D03* X2818Y3477D02* D03* X2901Y3537D02* D03* X2898Y3505D02* D03* X2899Y3471D02* D03* X2905Y3440D02* D03* X2899Y3410D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2667Y3430D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2556Y3504D02* D03* X2550Y3548D02* D03* X2472Y3507D02* D03* X2512Y3547D02* D03* X2485Y3626D02* D03* X2396Y3638D02* D03* X2119Y3364D02* D03* Y3431D02* D03* X2118Y3483D02* D03* X2117Y3518D02* D03* X2119Y3641D02* D03* X2272Y3631D02* D03* X2318Y3578D02* D03* X2273Y3547D02* D03* X2312Y3469D02* D03* X2357Y3502D02* D03* X2435Y3387D02* D03* X2391Y3391D02* D03* X2356Y3388D02* D03* X2311Y3389D02* D03* X2357Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2391Y3265D02* D03* X2356D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2471Y3154D02* D03* X2470Y3114D02* D03* X2549D02* D03* X2587Y3152D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2591Y3227D02* D03* X2629D02* D03* Y3192D02* D03* Y3152D02* D03* Y3114D02* D03* X2617Y3067D02* D03* X2672Y3069D02* D03* X2561Y3053D02* D03* X2530Y3047D02* D03* X2468Y3048D02* D03* X2445Y2980D02* D03* X2411Y2885D02* D03* X2441Y2903D02* D03* X2473Y2873D02* D03* X2500Y2899D02* D03* X2522Y2857D02* D03* X2497Y2790D02* D03* X2463D02* D03* X2570Y2867D02* D03* X2555Y2912D02* D03* X2636Y2978D02* D03* X2718Y2979D02* D03* X2745Y3074D02* D03* X2743Y3109D02* D03* Y3151D02* D03* X2742Y3188D02* D03* Y3226D02* D03* X2672D02* D03* Y3191D02* D03* X2673Y3147D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2746Y3310D02* D03* X2710Y3304D02* D03* X2714Y3268D02* D03* X2672Y3269D02* D03* X2630Y3271D02* D03* X2588Y3272D02* D03* X2589Y3308D02* D03* X2472D02* D03* X2438Y3307D02* D03* Y3344D02* D03* X2472Y3345D02* D03* X2514D02* D03* Y3308D02* D03* Y3236D02* D03* X2472Y3230D02* D03* Y3263D02* D03* X2435Y3265D02* D03* X2433Y3231D02* D03* X2390Y3193D02* D03* X2354Y3153D02* D03* Y3114D02* D03* X2376Y3064D02* D03* X2274Y3153D02* D03* X2311Y3114D02* D03* X2224Y3044D02* D03* X2190Y3009D02* D03* X2131Y3010D02* D03* X1677Y2025D02* D03* X1781Y1918D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X1878Y1848D02* D03* X1854Y1876D02* D03* X1825Y1920D02* D03* X1877Y1915D02* D03* X1929Y1929D02* D03* X1902Y2092D02* D03* X1973Y2094D02* D03* X2013D02* D03* X2032Y2183D02* D03* X1894Y2250D02* D03* X1903Y2312D02* D03* X1868Y2348D02* D03* X1904Y2445D02* D03* X1902Y2484D02* D03* X1689Y2381D02* D03* X1738Y2507D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1901Y2550D02* D03* X1860Y2657D02* D03* X1832Y2771D02* D03* X1788Y2820D02* D03* X1991Y2780D02* D03* X2039Y2790D02* D03* X2026Y2841D02* D03* X2104Y2818D02* D03* X2102Y2896D02* D03* X2202Y2890D02* D03* X2178Y2786D02* D03* X2236Y2788D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X1990Y2335D02* D03* X1999Y2222D02* D03* X2030D02* D03* X2086Y2252D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2503Y2344D02* D03* X2495Y2284D02* D03* X2479Y2248D02* D03* X2501Y2225D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2604Y2393D02* D03* X2601Y2427D02* D03* X2603Y2472D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2598Y2623D02* D03* X2600Y2658D02* D03* X2599Y2694D02* D03* X2699Y2671D02* D03* X2761Y2681D02* D03* X2824Y2685D02* D03* X2823Y2634D02* D03* X2875Y2636D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X2872D02* D03* X2925Y2735D02* D03* X2921Y2779D02* D03* X2875Y2785D02* D03* X2698Y2784D02* D03* X2757D02* D03* X2788D02* D03* X2825D02* D03* X2829Y2859D02* D03* X2875Y2834D02* D03* Y2885D02* D03* X2947Y2928D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X3119Y2969D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X2955Y3210D02* D03* X2994Y3286D02* D03* X3061Y3219D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3159Y3138D02* D03* X3202Y3217D02* D03* X3174Y3231D02* D03* X3144Y3340D02* D03* X3146Y3286D02* D03* X3196Y3296D02* D03* X3245Y3292D02* D03* X3287Y3293D02* D03* X3293Y3339D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X2930Y3929D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X3055Y3995D02* D03* Y3946D02* D03* X3105D02* D03* X3045Y3838D02* D03* X3097D02* D03* X3146Y3895D02* D03* X3198Y3837D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3244Y3894D02* D03* X3286Y3939D02* D03* X3251Y4089D02* D03* X3202Y4165D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3109Y4165D02* D03* X3112Y4199D02* D03* X3050Y4328D02* D03* X2871Y4302D02* D03* X2934Y4231D02* D03* X3025Y4130D02* D03* X2969Y4108D02* D03* X2945Y4089D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2743Y3892D02* D03* X2736Y4010D02* D03* X2658Y4119D02* D03* X2581Y4227D02* D03* X2514Y4265D02* D03* X2511Y4345D02* D03* X2580Y4311D02* D03* X2684Y4304D02* D03* X2727Y4465D02* D03* X2786Y4848D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3199Y4847D02* D03* X3322Y4849D02* D03* X3361Y4671D02* D03* X3331Y4670D02* D03* X3286Y4659D02* D03* X3250Y4646D02* D03* X3236Y4673D02* D03* X3112D02* D03* X3034Y4657D02* D03* X3012Y4627D02* D03* X2962D02* D03* X2893Y4667D02* D03* X3048Y4538D02* D03* Y4498D02* D03* X2940Y4479D02* D03* X2873Y4532D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2148Y4773D02* D03* X2014Y4651D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1950Y4222D02* D03* Y4156D02* D03* X2018Y4045D02* D03* X2061Y4142D02* D03* X2124Y4218D02* D03* X2119Y4359D02* D03* X2223Y4425D02* D03* X1729Y3706D02* D03* X1777Y3745D02* D03* X1809Y3776D02* D03* X1926Y3896D02* D03* X2036Y3887D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2481Y3776D02* D03* X2532D02* D03* X2555Y3742D02* D03* X2509Y3719D02* D03* X2610Y3709D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2822Y3779D02* D03* X2855Y3758D02* D03* X2882Y3779D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3047D02* D03* X3093Y3747D02* D03* X3133Y3744D02* D03* X3095Y3684D02* D03* X3092Y3640D02* D03* X3047D02* D03* Y3684D02* D03* X2998D02* D03* X2992Y3640D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2896Y3658D02* D03* X2892Y3628D02* D03* X2965Y3492D02* D03* X3007Y3495D02* D03* X2994Y3531D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* X3096D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3282D02* D03* X3344Y3602D02* D03* X3345Y3672D02* D03* X3342Y3719D02* D03* X3288D02* D03* X3206Y3720D02* D03* X3445Y3670D02* D03* Y3719D02* D03* X3395D02* D03* X3394Y3670D02* D03* X3392Y3604D02* D03* X3441D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3545D02* D03* X3590D02* D03* X3591Y3497D02* D03* X3542Y3554D02* D03* X3591Y3548D02* D03* Y3589D02* D03* X3648Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3591Y3796D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3693Y3993D02* D03* X3696Y3938D02* D03* X3735Y3896D02* D03* X3796Y3912D02* D03* X3799Y4006D02* D03* X3751Y4048D02* D03* X3698D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3480Y4308D02* D03* X3560Y4446D02* D03* X3697Y4416D02* D03* X3816Y4490D02* D03* X3805Y4529D02* D03* X3855Y4457D02* D03* X3875Y4424D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4193Y4780D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5142Y3999D02* D03* Y3909D02* D03* X5188Y3803D02* D03* X5218Y3699D02* D03* X5216Y3643D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5049Y3322D02* D03* X5091D02* D03* X5175Y3351D02* D03* X5252Y3336D02* D03* Y3262D02* D03* X5175Y3207D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X5827Y3128D02* D03* X5768Y3258D02* D03* Y3300D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6099Y3154D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5850D02* D03* X5881Y3442D02* D03* X5936Y3447D02* D03* X5979Y3472D02* D03* X6022Y3470D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4081Y4187D02* D03* X4108Y4072D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X3875Y4187D02* D03* X3799Y4134D02* D03* X3909Y3933D02* D03* X3879Y3930D02* D03* X3827Y3844D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X4126Y3848D02* D03* X4196Y3951D02* D03* X4266Y3852D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4377Y3509D02* D03* X4365Y3415D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4380Y3270D02* D03* X4331Y3278D02* D03* X4302Y3265D02* D03* X4369Y3218D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4701Y2806D02* D03* X4925Y2769D02* D03* X4634Y2494D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4282D02* D03* X4234D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4223D02* D03* X4253D02* D03* X4281D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4604Y2159D02* D03* X4615Y2014D02* D03* X4646D02* D03* X4771D02* D03* X4804D02* D03* X4835D02* D03* X4800Y2108D02* D03* X4771D02* D03* X4743D02* D03* Y2223D02* D03* X4772D02* D03* X4800D02* D03* Y2365D02* D03* X4755D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4725D02* D03* X4770D02* D03* X4815D02* D03* X4860D02* D03* X4905D02* D03* X4945D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* X5185D02* D03* Y1865D02* D03* X5150D02* D03* X5360D02* D03* Y1910D02* D03* X5270D02* D03* X5255Y1865D02* D03* X5220D02* D03* Y1830D02* D03* X5255D02* D03* X5253Y1772D02* D03* Y1697D02* D03* Y1622D02* D03* X5141Y1510D02* D03* X5049Y1447D02* D03* X5018Y1446D02* D03* X4929Y1565D02* D03* X4874Y1572D02* D03* X4771Y1564D02* D03* X4682Y1572D02* D03* X4514Y1445D02* D03* X4388Y1563D02* D03* X4356D02* D03* X4325D02* D03* X4294D02* D03* X4263Y1446D02* D03* X4231Y1560D02* D03* X4199Y1561D02* D03* X4168D02* D03* X4136Y1560D02* D03* X4105Y1316D02* D03* X4010Y1446D02* D03* X3851Y1416D02* D03* X3854Y1559D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X3917Y1693D02* D03* X3824Y1736D02* D03* X3717Y1743D02* D03* X3623Y1831D02* D03* X3675Y1935D02* D03* X3583Y1943D02* D03* X3533D02* D03* X3499Y2030D02* D03* X3434Y1990D02* D03* X3404Y1986D02* D03* X3433Y1943D02* D03* X3383Y1893D02* D03* X3381Y1789D02* D03* X3423Y1697D02* D03* X3489Y1738D02* D03* X3607Y1565D02* D03* X3580Y1580D02* D03* X3522Y1564D02* D03* X3553Y1566D02* D03* X3555Y1408D02* D03* X3472Y1420D02* D03* X3441Y1423D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* X3341Y1242D02* D03* X3310D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3215Y1235D02* D03* X3744Y1190D02* D03* X3752Y1241D02* D03* X3867Y1235D02* D03* X3994Y1234D02* D03* X4120Y1237D02* D03* X4151D02* D03* X4184D02* D03* X4246Y1235D02* D03* X4310D02* D03* X4340Y1233D02* D03* X4373D02* D03* X4435D02* D03* X4502Y1238D02* D03* X4514Y1121D02* D03* X4639Y1245D02* D03* X4687Y1235D02* D03* X4686Y1269D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4869Y1387D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5204Y1213D02* D03* X5262Y1146D02* D03* X5392Y1139D02* D03* X5344D02* D03* Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* Y1380D02* D03* X5560D02* D03* X5530D02* D03* X5783Y1139D02* D03* X5736D02* D03* Y1263D02* D03* X5783D02* D03* X5864Y1269D02* D03* X5975Y1390D02* D03* Y1436D02* D03* X6021Y1490D02* D03* Y1536D02* D03* X5975D02* D03* X5921D02* D03* Y1490D02* D03* X6075Y1536D02* D03* X6121Y1490D02* D03* X6175D02* D03* X6221Y1390D02* D03* X6236Y1340D02* D03* X6321Y1390D02* D03* X6275D02* D03* Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6028Y1216D02* D03* X6037Y1066D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6475Y1336D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1436D02* D03* X6421D02* D03* X6475D02* D03* X6495Y1594D02* D03* X6421Y1490D02* D03* X6375D02* D03* X6359Y1541D02* D03* X6331Y1654D02* D03* X6623Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6829Y1616D02* D03* X6871Y1640D02* D03* Y1686D02* D03* Y1740D02* D03* X6925D02* D03* X6971D02* D03* X6925Y1686D02* D03* Y1640D02* D03* X6971D02* D03* Y1686D02* D03* X7025D02* D03* Y1640D02* D03* Y1586D02* D03* Y1540D02* D03* X6971D02* D03* Y1586D02* D03* X6925D02* D03* X6971Y1386D02* D03* Y1340D02* D03* X6925D02* D03* Y1386D02* D03* Y1440D02* D03* X6971D02* D03* X7025D02* D03* Y1486D02* D03* X6971D02* D03* X6925D02* D03* X6871D02* D03* Y1540D02* D03* Y1440D02* D03* X6825D02* D03* Y1486D02* D03* X6771Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6625Y1486D02* D03* X6571D02* D03* Y1440D02* D03* Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* X6671D02* D03* Y1340D02* D03* X6725D02* D03* Y1386D02* D03* X6771D02* D03* X6825Y1340D02* D03* X6829Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6850Y1231D02* D03* X6937D02* D03* X6959Y1200D02* D03* Y1162D02* D03* Y1130D02* D03* X7089D02* D03* X7090Y1207D02* D03* X7089Y1238D02* D03* X7118Y1219D02* D03* X7104Y1300D02* D03* X7119Y1326D02* D03* X7104Y1352D02* D03* X7119Y1378D02* D03* X7136Y1407D02* D03* X7190Y1411D02* D03* X7186Y1465D02* D03* X7119Y1551D02* D03* X7104Y1577D02* D03* X7119Y1603D02* D03* X7104Y1629D02* D03* X7119Y1697D02* D03* X7104Y1723D02* D03* X7119Y1749D02* D03* X7104Y1775D02* D03* X7119Y1842D02* D03* X7104Y1868D02* D03* X7119Y1894D02* D03* X7104Y1920D02* D03* X7119Y1988D02* D03* X7104Y2014D02* D03* X7119Y2040D02* D03* X7104Y2066D02* D03* X7119Y2134D02* D03* X7104Y2160D02* D03* X7119Y2186D02* D03* X7104Y2212D02* D03* X6925Y1940D02* D03* X6871D02* D03* Y1886D02* D03* X6925Y1840D02* D03* Y1786D02* D03* X6971D02* D03* X7025Y1740D02* D03* Y1786D02* D03* Y1840D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* Y2140D02* D03* X6925Y2240D02* D03* X6971Y2140D02* D03* X6871D02* D03* Y2086D02* D03* X6824Y2039D02* D03* X6502Y2231D02* D03* X6571Y2286D02* D03* X6671Y2340D02* D03* Y2386D02* D03* X6625Y2440D02* D03* X6571D02* D03* X6500Y2540D02* D03* X6450Y2620D02* D03* Y2580D02* D03* Y2540D02* D03* Y2500D02* D03* X6475Y2436D02* D03* X6410Y2480D02* D03* X6370D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6175D02* D03* Y2336D02* D03* X6075D02* D03* X6021Y2290D02* D03* Y2236D02* D03* Y2190D02* D03* X6075Y2236D02* D03* Y2136D02* D03* Y2090D02* D03* Y2036D02* D03* X6135Y2077D02* D03* X6021Y2090D02* D03* Y2136D02* D03* X5975D02* D03* X5921D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X6021Y1836D02* D03* X5975D02* D03* Y1790D02* D03* X5921D02* D03* Y1836D02* D03* Y1890D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2036D02* D03* Y1990D02* D03* X6021D02* D03* Y1936D02* D03* Y1890D02* D03* X5975D02* D03* Y1936D02* D03* X6075D02* D03* Y1890D02* D03* Y1836D02* D03* X6113D02* D03* X6126Y1791D02* D03* X6075Y1736D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X5975Y1690D02* D03* Y1736D02* D03* X6021D02* D03* Y1690D02* D03* Y1636D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X5625Y2769D02* D03* X5645Y2605D02* D03* X5690D02* D03* X5600D02* D03* X5450D02* D03* X5275Y2769D02* D03* X5215Y2605D02* D03* X5173Y2566D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X5087Y2128D02* D03* X5124D02* D03* X5162D02* D03* X5240Y2220D02* D03* Y2255D02* D03* Y2290D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5645Y2128D02* D03* X5681D02* D03* X5717D02* D03* X5832Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5803Y2324D02* D03* X5921Y2290D02* D03* Y2336D02* D03* X5975D02* D03* Y2390D02* D03* X6050Y2480D02* D03* Y2520D02* D03* Y2560D02* D03* X6100D02* D03* Y2520D02* D03* Y2480D02* D03* X6150D02* D03* X6195D02* D03* X6240Y2560D02* D03* Y2520D02* D03* Y2480D02* D03* X6280D02* D03* X6320D02* D03* Y2520D02* D03* X6280D02* D03* X6320Y2560D02* D03* X6280D02* D03* X6296Y2634D02* D03* X6182Y2787D02* D03* X5975Y2769D02* D03* X6671Y2991D02* D03* Y3030D02* D03* X6621D02* D03* Y2990D02* D03* Y2875D02* D03* X6671Y2876D02* D03* X6722Y2877D02* D03* X6760D02* D03* X6781Y2693D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* Y2473D02* D03* X6725Y2440D02* D03* X6771D02* D03* X6825D02* D03* X6871D02* D03* X6771Y2386D02* D03* Y2340D02* D03* X6725D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* X6925Y2386D02* D03* X6971D02* D03* X7025Y2440D02* D03* Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X7119Y2279D02* D03* X7104Y2305D02* D03* X7119Y2331D02* D03* X7104Y2357D02* D03* X7119Y2425D02* D03* X7109Y2454D02* D03* X7120Y2482D02* D03* X7109Y2510D02* D03* X7119Y2571D02* D03* Y2623D02* D03* X7104Y2649D02* D03* Y2597D02* D03* X7018Y2569D02* D03* X6934Y2564D02* D03* X6885D02* D03* Y2696D02* D03* X6939Y2698D02* D03* X7052Y2692D02* D03* X7051Y2722D02* D03* X7119Y2716D02* D03* X7104Y2742D02* D03* X7074Y2744D02* D03* X7119Y2768D02* D03* X7104Y2794D02* D03* X6970Y2865D02* D03* X6865D02* D03* X6761Y2917D02* D03* Y2955D02* D03* Y2991D02* D03* X6762Y3030D02* D03* X6719D02* D03* X6720Y2991D02* D03* X6725Y3105D02* D03* X6670D02* D03* X6620D02* D03* X6570D02* D03* X6571Y3270D02* D03* X6570Y3230D02* D03* X6620D02* D03* X6621Y3270D02* D03* X6671D02* D03* X6670Y3230D02* D03* X6726Y3270D02* D03* X6725Y3230D02* D03* X6775D02* D03* X6815D02* D03* X6816Y3270D02* D03* X6776D02* D03* Y3185D02* D03* Y3145D02* D03* X6775Y3105D02* D03* X6815D02* D03* X6865Y3030D02* D03* Y2990D02* D03* X6970D02* D03* Y3030D02* D03* X6920Y3105D02* D03* Y3230D02* D03* X6921Y3270D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7119Y3130D02* D03* X7104Y3156D02* D03* Y3062D02* D03* X7119Y3036D02* D03* X7104Y3010D02* D03* X7119Y2984D02* D03* X7189Y2952D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7267Y2764D02* D03* X7258Y2850D02* D03* X7189Y2843D02* D03* X7258Y2882D02* D03* Y2913D02* D03* Y2945D02* D03* X7267Y3031D02* D03* X7293Y3132D02* D03* X7267Y3177D02* D03* Y3323D02* D03* Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* X6574Y4365D02* D03* X6704Y4282D02* D03* X6656Y4220D02* D03* X6752Y4189D02* D03* X6850Y4213D02* D03* X6854Y4272D02* D03* X6906Y4217D02* D03* X6976Y4323D02* D03* X7104Y4373D02* D03* X7119Y4347D02* D03* X7104Y4321D02* D03* X7119Y4295D02* D03* X7117Y4244D02* D03* X7119Y4212D02* D03* X7143Y4126D02* D03* X7115Y4141D02* D03* X7104Y4112D02* D03* X7118Y4085D02* D03* X7104Y4058D02* D03* X7115Y4030D02* D03* X7267Y4051D02* D03* Y4197D02* D03* Y4343D02* D03* Y4488D02* D03* X7119Y4441D02* D03* X7104Y4467D02* D03* X7119Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6873Y4557D02* D03* X6850Y4643D02* D03* X6800D02* D03* X6750Y4718D02* D03* X6800D02* D03* X6850D02* D03* X6903D02* D03* X6955Y4717D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7110Y4681D02* D03* X7244Y4764D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6800D02* D03* Y4850D02* D03* X6750D02* D03* Y4888D02* D03* X6700D02* D03* Y4850D02* D03* X6656Y4849D02* D03* Y4889D02* D03* X6612Y4888D02* D03* Y4850D02* D03* X6613Y4643D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6700Y4718D02* D03* X6657D02* D03* X6613D02* D03* X6322Y4780D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* D052* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* D026* X1789Y3607D02* X1799Y3605D01* X1806Y3598D01* X1809Y3589D01* X1808Y3586D01* X1804Y3577D01* X1796Y3571D01* X1786D01* X1777Y3576D01* X1773Y3585D01* X1774Y3595D01* X1780Y3603D01* X1789Y3607D01* X1808Y2975D02* X1804Y2966D01* X1796Y2961D01* X1786D01* X1777Y2966D01* X1773Y2975D01* X1774Y2985D01* X1780Y2993D01* X1789Y2996D01* X1799Y2994D01* X1806Y2988D01* X1809Y2978D01* X1808Y2975D01* D052* X1528Y1787D02* D03* D026* X1518Y1732D02* X1510Y1727D01* X1504Y1719D01* X1502Y1709D01* X1504Y1699D01* X1509Y1691D01* X1518Y1685D01* X1527Y1683D01* X1537Y1685D01* D052* X1528Y1630D02* D03* X1606Y1669D02* D03* D026* X1551Y1699D02* X1545Y1690D01* X1537Y1685D01* X1551Y1699D02* X1553Y1708D01* Y1709D01* X1551Y1718D01* X1518Y1732D02* X1528Y1734D01* X1537Y1732D01* X1546Y1727D01* X1551Y1718D01* D052* X1606Y1748D02* D03* X1685D02* D03* Y1669D02* D03* X1764D02* D03* Y1748D02* D03* X1843Y1669D02* D03* Y1748D02* D03* X1921D02* D03* X2327Y1069D02* D03* D026* X2627Y1328D02* X2622Y1337D01* X2623Y1346D01* X2629Y1354D01* X2638Y1358D01* X2648Y1356D01* X2655Y1349D01* X2658Y1340D01* Y1337D01* X2653Y1328D01* X2645Y1323D01* X2635D01* X2627Y1328D01* D052* X4374Y1069D02* D03* X5120Y1340D02* D03* D026* X5343Y2502D02* X5334Y2506D01* X5327Y2513D01* X5324Y2523D01* X5326Y2532D01* X5332Y2540D01* X5341Y2545D01* X5351D01* X5360Y2541D01* X5366Y2533D01* X5368Y2524D01* X5367Y2516D01* X5361Y2507D01* X5353Y2503D01* X5343Y2502D01* D052* X5335Y2844D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5135D02* D03* X5185Y2894D02* D03* X5135Y2944D02* D03* X5035Y2844D02* D03* X5085Y2894D02* D03* X5035Y2944D02* D03* X5085Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5185Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5485D02* D03* X5535Y3044D02* D03* X5485Y2994D02* D03* X5435Y3044D02* D03* X5385Y3094D02* D03* Y2994D02* D03* X5335Y2944D02* D03* X5385Y2894D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5435Y2944D02* D03* X5535D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5785D02* D03* X5735Y2944D02* D03* X5785Y2894D02* D03* X5735Y2844D02* D03* X5835D02* D03* X5885Y2894D02* D03* X5835Y2944D02* D03* X5935D02* D03* X5985Y2894D02* D03* X5935Y2844D02* D03* X6035D02* D03* X6085Y2894D02* D03* X6035Y2944D02* D03* X6085Y2994D02* D03* X5985D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X6435Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6435Y3544D02* D03* X6385Y3594D02* D03* X6435Y3644D02* D03* X6335D02* D03* X6385Y3694D02* D03* X6335Y3744D02* D03* X6285Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6435Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* X6385Y3794D02* D03* X6435Y3744D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6285Y3694D02* D03* X6235Y3644D02* D03* X6185Y3594D02* D03* X6235Y3544D02* D03* X6285Y3594D02* D03* X6335Y3544D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* X6335Y3344D02* D03* X6185Y3194D02* D03* X6235Y3144D02* D03* X6285Y3194D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6335Y3044D02* D03* X6285Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6135Y3044D02* D03* X6085Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335Y2944D02* D03* X6385Y2894D02* D03* X6335Y2844D02* D03* X6435D02* D03* Y2944D02* D03* X6385Y2994D02* D03* X6435Y3044D02* D03* X6385Y3094D02* D03* X6435Y3144D02* D03* X6385Y3194D02* D03* X6435Y3244D02* D03* X6385Y3294D02* D03* X6335Y3244D02* D03* X6285Y3294D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6185Y3494D02* D03* Y3794D02* D03* X6235Y3844D02* D03* X6185Y3894D02* D03* Y3994D02* D03* X6235Y3944D02* D03* X6285Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6235Y4444D02* D03* X6285Y4494D02* D03* X6235Y4544D02* D03* X6285Y4594D02* D03* X6235Y4644D02* D03* X6335D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* Y4544D02* D03* X6385Y4494D02* D03* X6335Y4544D02* D03* Y4444D02* D03* X6385Y4394D02* D03* X6435Y4444D02* D03* Y4344D02* D03* X6385Y4294D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6335Y4044D02* D03* X6285Y4094D02* D03* X6335Y4144D02* D03* X6285Y4194D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* X6335Y4344D02* D03* D026* X6664Y4086D02* X6670Y4094D01* X6672Y4102D01* X6669Y4112D01* X6663Y4120D01* X6654Y4124D01* X6644D01* X6635Y4119D01* X6629Y4111D01* X6628Y4101D01* X6630Y4092D01* X6637Y4084D01* X6646Y4081D01* X6656D01* X6664Y4086D01* D052* X5835Y4644D02* D03* X5885Y4594D02* D03* X5835Y4544D02* D03* X5885Y4494D02* D03* X5935Y4544D02* D03* X5985Y4594D02* D03* X5935Y4644D02* D03* X6035D02* D03* X6085Y4594D02* D03* X6135Y4644D02* D03* X6185Y4594D02* D03* Y4494D02* D03* X6135Y4544D02* D03* X6085Y4494D02* D03* X6035Y4544D02* D03* X5985Y4494D02* D03* X6185Y4394D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6035Y4444D02* D03* X5985Y4394D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5835Y4444D02* D03* X5785Y4394D02* D03* X5735Y4444D02* D03* X5685Y4394D02* D03* Y4494D02* D03* X5735Y4544D02* D03* X5785Y4494D02* D03* Y4594D02* D03* X5735Y4644D02* D03* X5635D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5535Y4644D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5185Y4394D02* D03* X5235Y4444D02* D03* X5285Y4394D02* D03* X5335Y4444D02* D03* X5385Y4394D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5585Y4394D02* D03* X5635Y4444D02* D03* X5585Y4494D02* D03* X5535Y4544D02* D03* X5485Y4494D02* D03* X5435Y4544D02* D03* X5485Y4594D02* D03* X5435Y4644D02* D03* X5385Y4594D02* D03* X5335Y4644D02* D03* X5235D02* D03* X5285Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5135Y4644D02* D03* X5085Y4494D02* D03* X5035Y4544D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X4835D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4594D02* D03* X4735Y4544D02* D03* X4785Y4494D02* D03* X4735Y4444D02* D03* X4785Y4394D02* D03* X4735Y4344D02* D03* D026* X4290Y4124D02* X4295Y4132D01* X4297Y4140D01* X4295Y4150D01* X4289Y4157D01* X4280Y4162D01* X4270Y4161D01* X4261Y4157D01* X4255Y4149D01* X4253Y4139D01* X4256Y4130D01* X4262Y4122D01* X4271Y4118D01* X4281Y4119D01* X4290Y4124D01* D052* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4144D02* D03* X4885Y4094D02* D03* Y4294D02* D03* X4835Y4244D02* D03* X4885Y4194D02* D03* X4785D02* D03* X4735Y4244D02* D03* X4785Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4835Y4444D02* D03* X4685Y4594D02* D03* X4635Y4544D02* D03* X4685Y4494D02* D03* X4635Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* X4685Y4294D02* D03* X4635Y4244D02* D03* X4685Y4194D02* D03* X4635Y4144D02* D03* X4685Y4094D02* D03* X4635Y4044D02* D03* X4685Y3994D02* D03* X4635Y3944D02* D03* X4685Y3894D02* D03* X4635Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* X4685Y3694D02* D03* X4635Y3644D02* D03* X4685Y3594D02* D03* X4635Y3544D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4735Y3244D02* D03* X4785Y3194D02* D03* X4735Y3144D02* D03* X4785Y3094D02* D03* X4735Y3044D02* D03* X4785Y2994D02* D03* X4735Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4835D02* D03* X4885Y2894D02* D03* X4835Y2944D02* D03* X4935Y2844D02* D03* X4985Y2894D02* D03* X4935Y2944D02* D03* X4985Y2994D02* D03* X4935Y3044D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4885Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3394D02* D03* X4735Y3444D02* D03* X4785Y3494D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* X4835Y3444D02* D03* X4885Y3394D02* D03* Y3794D02* D03* X4835Y3844D02* D03* X4885Y3894D02* D03* X4835Y3944D02* D03* X4885Y3994D02* D03* X4835Y4044D02* D03* X4735D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3694D02* D03* X4835Y3644D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4735Y3644D02* D03* X4785Y3594D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4635Y3444D02* D03* X4685Y3394D02* D03* X4635Y3344D02* D03* X4685Y3294D02* D03* X4635Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4685Y3094D02* D03* X4635Y3044D02* D03* X4685Y2994D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X6972Y1069D02* D03* D056* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D031* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D055* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D051* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* Y1866D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* X7425D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* Y2339D02* D03* X7583D02* D03* X7661Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7346Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* X7425D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* X7661Y3283D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7740Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3756D02* D03* X7504D02* D03* Y3677D02* D03* X7425D02* D03* Y3756D02* D03* Y3913D02* D03* Y3835D02* D03* X7504D02* D03* Y3913D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583Y3992D02* D03* X7661D02* D03* Y4071D02* D03* X7583D02* D03* X7504D02* D03* Y3992D02* D03* X7425D02* D03* Y4071D02* D03* X7346D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* X7425Y3598D02* D03* Y3520D02* D03* X7504D02* D03* Y3598D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7740Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7583Y4150D02* D03* X7661D02* D03* Y4228D02* D03* X7740Y4150D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y4701D02* D03* Y4622D02* D03* X7504D02* D03* Y4701D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* Y4543D02* D03* Y4465D02* D03* X7583D02* D03* Y4543D02* D03* X7504D02* D03* Y4465D02* D03* X7425D02* D03* Y4543D02* D03* Y4386D02* D03* Y4307D02* D03* X7504D02* D03* Y4386D02* D03* X7583D02* D03* X7661D02* D03* Y4307D02* D03* X7583D02* D03* Y4228D02* D03* X7504D02* D03* Y4150D02* D03* X7425D02* D03* Y4228D02* D03* X7346Y4150D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7740Y3047D02* D03* Y2969D02* D03* X7661D02* D03* Y3047D02* D03* X7583D02* D03* X7661Y3126D02* D03* Y3205D02* D03* X7583D02* D03* Y3126D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* X7583D02* D03* Y2890D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* X7583Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7740Y2811D02* D03* Y2654D02* D03* X7661D02* D03* Y2732D02* D03* X7583D02* D03* X7504D02* D03* Y2654D02* D03* X7425D02* D03* Y2732D02* D03* Y2575D02* D03* Y2496D02* D03* X7504D02* D03* Y2575D02* D03* X7583D02* D03* Y2654D02* D03* X7661Y2575D02* D03* Y2496D02* D03* X7740D02* D03* Y2339D02* D03* X7583Y1630D02* D03* Y1709D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1709D02* D03* Y1866D02* D03* Y1945D02* D03* X7504D02* D03* Y1866D02* D03* X7583Y1945D02* D03* X7661D02* D03* Y1866D02* D03* X7740Y1945D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1394D02* D03* X7583Y1315D02* D03* Y1394D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* Y1157D02* D03* X7504D02* D03* X7425D02* D03* D050* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D035* X1596Y1177D02* X1603Y1170D01* X1611Y1165D01* X1621Y1160D01* X1630Y1158D01* X1640Y1157D01* X1650Y1158D01* X1660Y1160D01* X1669Y1164D01* X1677Y1170D01* X1685Y1177D01* X1691Y1184D01* X1695Y1193D01* X1698Y1203D01* X1700Y1213D01* Y1217D01* X1699Y1226D01* X1697Y1236D01* X1693Y1245D01* X1687Y1254D01* X1680Y1261D01* X1672Y1267D01* X1663Y1271D01* X1654Y1275D01* X1644Y1276D01* X1634D01* X1624Y1274D01* X1615Y1270D01* X1606Y1265D01* X1599Y1259D01* X1592Y1251D01* X1587Y1243D01* X1583Y1233D01* X1581Y1223D01* Y1213D01* X1582Y1204D01* X1585Y1194D01* X1590Y1185D01* X1596Y1177D01* X1598Y1188D02* X1683D01* X1730Y3957D02* X1723Y3949D01* X1714Y3945D01* X1705Y3944D01* X1695Y3947D01* X1687Y3953D01* X1682Y3962D01* X1681Y3971D01* X1684Y3981D01* X1690Y3989D01* X1698Y3994D01* X1708Y3996D01* X1718Y3993D01* X1726Y3988D01* X1731Y3979D01* X1733Y3970D01* Y3966D01* X1730Y3957D01* Y4474D02* X1723Y4467D01* X1714Y4462D01* X1705Y4461D01* X1695Y4464D01* X1687Y4470D01* X1682Y4479D01* X1681Y4489D01* X1684Y4498D01* X1690Y4506D01* X1698Y4511D01* X1708Y4513D01* X1718Y4511D01* X1726Y4505D01* X1731Y4497D01* X1733Y4487D01* Y4484D01* X1730Y4474D01* X2382Y4627D02* X2375Y4620D01* X2366Y4615D01* X2356Y4614D01* X2347Y4617D01* X2339Y4623D01* X2334Y4632D01* X2333Y4642D01* X2335Y4651D01* X2341Y4659D01* X2350Y4664D01* X2360Y4666D01* X2369Y4664D01* X2378Y4658D01* X2383Y4650D01* X2385Y4640D01* Y4637D01* X2382Y4627D01* X3917Y4651D02* X3923Y4659D01* X3931Y4664D01* X3941Y4666D01* X3951Y4664D01* X3959Y4658D01* X3964Y4650D01* X3966Y4640D01* Y4637D01* X3963Y4627D01* X3956Y4620D01* X3947Y4615D01* X3937Y4614D01* X3928Y4617D01* X3920Y4623D01* X3915Y4632D01* X3914Y4642D01* X3917Y4651D01* X1683Y4692D02* X1598D01* X1596Y4681D02* X1590Y4689D01* X1585Y4698D01* X1582Y4708D01* X1581Y4717D01* Y4727D01* X1583Y4737D01* X1587Y4746D01* X1592Y4755D01* X1599Y4763D01* X1606Y4769D01* X1615Y4774D01* X1624Y4778D01* X1634Y4780D01* X1644D01* X1654Y4778D01* X1663Y4775D01* X1672Y4771D01* X1680Y4765D01* X1687Y4758D01* X1693Y4749D01* X1697Y4740D01* X1699Y4730D01* X1700Y4720D01* Y4717D01* X1698Y4707D01* X1695Y4697D01* X1691Y4688D01* X1685Y4680D01* X1677Y4674D01* X1669Y4668D01* X1660Y4664D01* X1650Y4662D01* X1640Y4661D01* X1630Y4662D01* X1621Y4664D01* X1611Y4669D01* X1603Y4674D01* X1596Y4681D01* D065* X1670Y3058D02* D03* Y3509D02* D03* D063* X7425Y2102D02* D03* X7661D02* D03* D059* X2359Y4522D02* D03* X3940D02* D03* D079* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D083* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D084* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D082* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D078* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/drill1.exc0000644000175000017500000000072613421555714016673 0ustar carstencarstenG90 M72 M48 T0C0.006 T1C0.012 T3C0.020 T4C0.024 T5C0.028 T6C0.031 T7C0.035 T8C0.039 T9C0.043 T10C0.047 T14C0.063 T16C0.071 T18C0.079 T19C0.083 T20C0.087 T21C0.091 T23C0.098 T25C0.110 T27C0.126 % G90 M72 M48 % T7 X23268Y17868 Y12368 T8 X17339Y14709 T14 X26400Y13400 T9 X51203 T7 X23268Y17868 Y12368 T16 X39400Y45219 X23589 T20 X66496Y41024 X53465Y25236 X42750Y41400 T27 X16705Y35087 Y30583 T19 X76614Y21024 X74252 M30 gerbv-2.7.0/example/ekf2/drill30.exc0000644000175000017500000000237513421555714016757 0ustar carstencarstenG90 M72 M48 T0C0.006 T1C0.012 T3C0.020 T4C0.024 T5C0.028 T6C0.031 T7C0.035 T8C0.039 T9C0.043 T10C0.047 T14C0.063 T16C0.071 T18C0.079 T19C0.083 T20C0.087 T21C0.091 T23C0.098 T25C0.110 T27C0.126 % G90 M72 M48 % T0 X20210Y26370 X70160Y39350 X68894 X47000Y28320 X20880Y26350 X68126Y39350 X23490Y20770 X42290Y30580 X21350Y26760 X33110Y32220 X20870Y20380 X26260Y39310 X16200Y19240 X21610Y26750 X52360Y31600 X25110Y21780 X36600Y26090 T1 X50455Y16775 X46380Y15720 T0 X34980Y34910 X26580Y39480 X45580Y35000 X22330Y26290 X20170Y26654 X32610Y35500 X41870Y32930 X19970Y25320 X41850Y33560 X20230Y25970 X20000Y24291 X21930Y26940 X22000Y20490 X25940Y39490 X21240Y26360 X24590Y26790 X62220Y26730 X20340Y26870 X68382Y39350 X32490Y34180 X32780Y32120 X69780Y39350 X29990Y28090 X22960Y23819 X41840Y30330 X20840Y20780 X20090Y26180 X22320Y20490 X69710Y25270 X32820Y26090 X33510Y25430 X70190Y25380 X47090Y15670 T1 X25340Y13870 T0 X37540Y23940 X69150Y39350 X35980Y26950 X22530Y26090 X41920Y31070 X20160Y19870 X44750Y14460 X26960Y17430 X68638Y39350 X20500Y26590 X69850Y36570 X25630Y39300 X23340Y24810 X41920Y30760 X20220Y25710 X61300Y17170 X24220Y19310 X20080Y25520 X24400Y26960 X69850Y34430 M30 gerbv-2.7.0/example/ekf2/Makefile.am0000644000175000017500000000213313421555713017030 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=README.txt l0.grb l1.grb l2.grb l3.grb l4.grb l5.grb \ stp0.grb stp1.grb d1.grb resplan.grb gnd.grb pow.grb pow3.grb \ sieb0.grb sieb1.grb drill0.exc drill1.exc drill20.exc drill30.exc MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/ekf2/sieb1.grb0000644000175000017500000032645513421555714016514 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1500Y859D02* X1509Y850D01* X1536D01* X1544Y859D01* Y868D01* X1536Y877D01* X1509D01* X1500Y886D01* X1509Y894D01* X1536D01* X1544Y886D01* X1616Y859D02* X1607Y850D01* X1580D01* X1571Y859D01* Y886D01* X1580Y894D01* X1607D01* X1616Y886D01* X1651Y894D02* X1678D01* X1687Y886D01* Y850D01* X1651D01* X1642Y859D01* Y868D01* X1651Y877D01* X1687D01* X1731Y850D02* X1749D01* X1740D02* Y921D01* X1731D01* X2336D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2256Y921D02* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2264D02* X2211Y850D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1980Y877D02* X1936D01* X1980Y894D02* X1936D01* X1829Y850D02* X1793D01* X1784Y859D01* Y886D01* X1793Y894D01* X1820D01* X1784Y868D02* X1820D01* X1829Y877D01* Y886D01* X1820Y894D01* X1850Y1000D02* X1500D01* Y1394D01* X1441D01* Y1472D01* X1661Y1954D02* X1583D01* X1661Y1958D02* X1583D01* X1582Y1950D02* Y2002D01* X1662D01* X1661Y1990D02* X1583D01* X1661Y1986D02* X1583D01* X1661Y1982D02* X1583D01* Y1974D02* X1661D01* X1583Y1978D02* X1661D01* X1583Y1998D02* X1661D01* X1583Y1994D02* X1661D01* X1662Y2002D02* Y1950D01* X1582D01* X1583Y1962D02* X1661D01* Y1970D02* X1583D01* X1661Y1966D02* X1583D01* Y1888D02* X1661D01* X1583Y1884D02* X1661D01* X1662Y1892D02* Y1840D01* X1582D01* X1583Y1852D02* X1661D01* Y1860D02* X1583D01* X1661Y1856D02* X1583D01* X1661Y1868D02* X1583D01* X1661Y1864D02* X1583D01* Y1872D02* X1661D01* X1583Y1876D02* X1661D01* X1583Y1880D02* X1661D01* X1662Y1892D02* X1582D01* Y1840D01* X1583Y1848D02* X1661D01* X1583Y1844D02* X1661D01* X2035Y1711D02* X2067D01* Y1686D01* X2066Y1687D02* X2036D01* X2066Y1691D02* X2036D01* Y1699D02* X2066D01* X2036Y1695D02* X2066D01* X2067Y1686D02* X2035D01* Y1711D01* X2036Y1703D02* X2066D01* X2036Y1707D02* X2066D01* X2535Y1896D02* Y2052D01* X2531Y1896D02* Y2052D01* X2539D02* Y1896D01* X2543Y2052D02* Y1896D01* X2547Y2052D02* Y1896D01* X2627D02* Y2052D01* X2623Y1896D02* Y2052D01* X2631D02* Y1896D01* X2635Y2052D02* Y1896D01* X2639Y2052D02* Y1896D01* X2663D02* Y2052D01* X2659Y1896D02* Y2052D01* X2667D02* Y1896D01* X2671Y2052D02* Y1896D01* X2643Y2052D02* Y1896D01* X2647Y2052D02* Y1896D01* X2655D02* Y2052D01* X2651Y1896D02* Y2052D01* X2675Y2053D02* X2522D01* Y1895D01* X2527Y1896D02* Y2052D01* X2675Y2053D02* Y1895D01* X2522D01* X2523Y1896D02* Y2052D01* X2551D02* Y1896D01* X2555Y2052D02* Y1896D01* X2563D02* Y2052D01* X2559Y1896D02* Y2052D01* X2567D02* Y1896D01* X2571Y2052D02* Y1896D01* X2575Y2052D02* Y1896D01* X2583D02* Y2052D01* X2579Y1896D02* Y2052D01* X2587D02* Y1896D01* X2591Y2052D02* Y1896D01* X2599D02* Y2052D01* X2595Y1896D02* Y2052D01* X2603D02* Y1896D01* X2607Y2052D02* Y1896D01* X2611Y2052D02* Y1896D01* X2619D02* Y2052D01* X2615Y1896D02* Y2052D01* X2387Y2941D02* Y3019D01* X2383Y2941D02* Y3019D01* X2449Y3020D02* X2501D01* X2493Y3019D02* Y2941D01* X2497Y3019D02* Y2941D01* X2501Y2940D02* X2449D01* X2379Y2941D02* Y3019D01* X2371D02* Y2941D01* X2375Y3019D02* Y2941D01* X2363Y3019D02* Y2941D01* X2367Y3019D02* Y2941D01* X2359D02* Y3019D01* X2355Y2941D02* Y3019D01* X2343D02* Y2941D01* X2339Y2940D02* X2391D01* Y3020D01* X2347Y3019D02* Y2941D01* X2351Y3019D02* Y2941D01* X2339Y2940D02* Y3020D01* X2391D01* X2465Y3019D02* Y2941D01* X2469Y3019D02* Y2941D01* X2477D02* Y3019D01* X2473Y2941D02* Y3019D01* X2481D02* Y2941D01* X2485Y3019D02* Y2941D01* X2489Y3019D02* Y2941D01* X2533D02* Y3019D01* X2581Y3020D02* Y2940D01* X2529D02* Y3020D01* X2537Y3019D02* Y2941D01* X2541Y3019D02* Y2941D01* X2545Y3019D02* Y2941D01* X2581Y3020D02* X2529D01* X2461Y3019D02* Y2941D01* X2453D02* Y3019D01* X2501Y3020D02* Y2940D01* X2449D02* Y3020D01* X2457Y3019D02* Y2941D01* X2529Y2940D02* X2581D01* X2577Y2941D02* Y3019D01* X2573Y2941D02* Y3019D01* X2549D02* Y2941D01* X2553Y3019D02* Y2941D01* X2561D02* Y3019D01* X2557Y2941D02* Y3019D01* X2565D02* Y2941D01* X2639Y2940D02* X2691D01* X2687Y2941D02* Y3019D01* X2683Y2941D02* Y3019D01* X2691Y3020D02* X2639D01* X2569Y3019D02* Y2941D01* X2643D02* Y3019D01* X2691Y3020D02* Y2940D01* X2639D02* Y3020D01* X2647Y3019D02* Y2941D01* X2651Y3019D02* Y2941D01* X2655Y3019D02* Y2941D01* X2679D02* Y3019D01* X2675Y2941D02* Y3019D01* X2667D02* Y2941D01* X2671Y3019D02* Y2941D01* X2663D02* Y3019D01* X2659Y2941D02* Y3019D01* X3959Y3393D02* X3881D01* X3959Y3397D02* X3881D01* X3880Y3389D02* Y3441D01* X3960D01* X3959Y3429D02* X3881D01* X3959Y3425D02* X3881D01* X3959Y3421D02* X3881D01* Y3413D02* X3959D01* X3881Y3417D02* X3959D01* X3881Y3437D02* X3959D01* X3881Y3433D02* X3959D01* X3960Y3441D02* Y3389D01* X3880D01* X3881Y3401D02* X3959D01* Y3409D02* X3881D01* X3959Y3405D02* X3881D01* Y3327D02* X3959D01* X3881Y3323D02* X3959D01* X3960Y3331D02* Y3279D01* X3880D01* X3881Y3291D02* X3959D01* Y3299D02* X3881D01* X3959Y3295D02* X3881D01* X3959Y3283D02* X3881D01* X3959Y3287D02* X3881D01* X3880Y3279D02* Y3331D01* X3960D01* X3959Y3319D02* X3881D01* X3959Y3315D02* X3881D01* X3959Y3311D02* X3881D01* Y3303D02* X3959D01* X3881Y3307D02* X3959D01* X3741Y3129D02* X3819D01* X3741Y3125D02* X3819D01* Y3117D02* X3741D01* X3819Y3121D02* X3741D01* Y3113D02* X3819D01* X3741Y3109D02* X3819D01* Y3105D02* X3741D01* X3819Y3101D02* X3741D01* X3740Y3089D02* X3820D01* Y3141D01* X3819Y3133D02* X3741D01* X3819Y3137D02* X3741D01* X3820Y3141D02* X3740D01* Y3089D01* X3741Y3097D02* X3819D01* X3741Y3093D02* X3819D01* X3820Y3031D02* X3740D01* Y2979D01* X3741Y2987D02* X3819D01* X3741Y2983D02* X3819D01* Y3015D02* X3741D01* X3819Y3019D02* X3741D01* Y3011D02* X3819D01* X3741Y3007D02* X3819D01* X3741Y3003D02* X3819D01* X3741Y2999D02* X3819D01* Y2995D02* X3741D01* X3819Y2991D02* X3741D01* X3740Y2979D02* X3820D01* Y3031D01* X3819Y3023D02* X3741D01* X3819Y3027D02* X3741D01* X4125Y2203D02* Y2128D01* X4179D01* X4175Y2129D02* Y2202D01* X4171Y2129D02* Y2202D01* X4163D02* Y2129D01* X4167Y2202D02* Y2129D01* X4159D02* Y2202D01* X4225Y2203D02* X4279D01* X4247Y2202D02* Y2129D01* X4251Y2202D02* Y2129D01* X4243D02* Y2202D01* X4239Y2129D02* Y2202D01* X4227Y2129D02* Y2202D01* X4279Y2203D02* Y2128D01* X4225D02* Y2203D01* X4231Y2202D02* Y2129D01* X4235Y2202D02* Y2129D01* X4255D02* Y2202D01* X4325Y2203D02* X4379D01* X4367Y2202D02* Y2129D01* X4371Y2202D02* Y2129D01* X4375Y2202D02* Y2129D01* X4379Y2128D02* X4325D01* X4259Y2129D02* Y2202D01* X4263D02* Y2129D01* X4267Y2202D02* Y2129D01* X4271Y2202D02* Y2129D01* X4275Y2202D02* Y2129D01* X4279Y2128D02* X4225D01* X4155Y2129D02* Y2202D01* X4147D02* Y2129D01* X4151Y2202D02* Y2129D01* X4143D02* Y2202D01* X4139Y2129D02* Y2202D01* X4135Y2129D02* Y2202D01* X4131D02* Y2129D01* X4179Y2128D02* Y2203D01* X4125D01* X4127Y2202D02* Y2129D01* X4067Y1972D02* X4437D01* X4587D02* X4957D01* Y1968D02* X4587D01* X4437D02* X4067D01* Y1964D02* X4437D01* X4586Y1976D02* X4958D01* X4957Y1960D02* X4587D01* X4437D02* X4067D01* Y1956D02* X4437D01* X4587D02* X4957D01* Y1928D02* X4587D01* X4437D02* X4067D01* Y1932D02* X4437D01* X4587D02* X4957D01* Y1936D02* X4587D01* X4437D02* X4067D01* Y1940D02* X4437D01* X4587D02* X4957D01* Y1944D02* X4587D01* X4437D02* X4067D01* Y1900D02* X4437D01* X4587D02* X4957D01* Y1904D02* X4587D01* X4437D02* X4067D01* Y1908D02* X4437D01* X4587D02* X4957D01* Y1912D02* X4587D01* X4437D02* X4067D01* Y1916D02* X4437D01* X4587D02* X4957D01* Y1920D02* X4587D01* X4437D02* X4067D01* Y1924D02* X4437D01* X4587D02* X4957D01* Y1952D02* X4587D01* X4437D02* X4067D01* Y1948D02* X4437D01* X4438Y1976D02* Y1664D01* X4066D01* X4067Y1692D02* X4437D01* X4339Y2202D02* Y2129D01* X4343Y2202D02* Y2129D01* X4351D02* Y2202D01* X4347Y2129D02* Y2202D01* X4355D02* Y2129D01* X4359Y2202D02* Y2129D01* X4363Y2202D02* Y2129D01* X4335D02* Y2202D01* X4331Y2129D02* Y2202D01* X4325Y2203D02* Y2128D01* X4379D02* Y2203D01* X4327Y2202D02* Y2129D01* X4438Y1976D02* X4066D01* Y1664D01* X4067Y1668D02* X4437D01* X4587D02* X4957D01* Y1672D02* X4587D01* X4437D02* X4067D01* Y1676D02* X4437D01* X4586Y1664D02* Y1976D01* X4695Y2129D02* Y2202D01* Y2248D02* Y2326D01* X4691D02* Y2248D01* Y2202D02* Y2129D01* X4687D02* Y2202D01* Y2248D02* Y2326D01* X4683D02* Y2248D01* Y2202D02* Y2129D01* X4679D02* Y2202D01* Y2248D02* Y2326D01* X4675D02* Y2248D01* Y2202D02* Y2129D01* X4671D02* Y2202D01* Y2248D02* Y2326D01* X4655Y2327D02* Y2247D01* X4659Y2202D02* Y2129D01* X4663D02* Y2202D01* X4659Y2248D02* Y2326D01* X4663D02* Y2248D01* X4707Y2247D02* Y2327D01* X4667Y2326D02* Y2248D01* X4707Y2247D02* X4655D01* X4581Y2248D02* Y2326D01* X4585D02* Y2248D01* X4645Y2203D02* Y2128D01* X4647Y2129D02* Y2202D01* X4589Y2248D02* Y2326D01* X4549D02* Y2248D01* X4545Y2247D02* X4597D01* Y2327D01* X4553Y2326D02* Y2248D01* X4557Y2326D02* Y2248D01* X4565D02* Y2326D01* X4561Y2248D02* Y2326D01* X4569D02* Y2248D01* X4573Y2326D02* Y2248D01* X4577D02* Y2326D01* X4655Y2327D02* X4707D01* X4771Y2202D02* Y2129D01* X4775Y2202D02* Y2129D01* X4779D02* Y2202D01* X4845Y2203D02* X4899D01* X4871Y2202D02* Y2129D01* X4875Y2202D02* Y2129D01* X4867D02* Y2202D01* X4863Y2129D02* Y2202D01* X4847Y2129D02* Y2202D01* X4899Y2203D02* Y2128D01* X4845D02* Y2203D01* X4851Y2202D02* Y2129D01* X4855Y2202D02* Y2129D01* X4859Y2202D02* Y2129D01* X4883D02* Y2202D01* X4879Y2129D02* Y2202D01* X4887D02* Y2129D01* X4891Y2202D02* Y2129D01* X4895Y2202D02* Y2129D01* X4899Y2128D02* X4845D01* X4783Y2129D02* Y2202D01* X4787D02* Y2129D01* X4791Y2202D02* Y2129D01* X4795Y2202D02* Y2129D01* X4767D02* Y2202D01* X4763Y2129D02* Y2202D01* X4759Y2129D02* Y2202D01* X4755D02* Y2129D01* X4751Y2202D02* Y2129D01* X4745Y2128D02* X4799D01* Y2203D01* X4745D01* X4747Y2202D02* Y2129D01* X4745Y2128D02* Y2203D01* X4703Y2248D02* Y2326D01* X4699D02* Y2248D01* X4667Y2202D02* Y2129D01* X4645Y2128D02* X4699D01* Y2203D01* X4645D01* X4655Y2202D02* Y2129D01* X4651D02* Y2202D01* X4593Y2248D02* Y2326D01* X4597Y2327D02* X4545D01* Y2247D01* X4587Y1692D02* X4957D01* X5085Y1895D02* Y2053D01* X5086Y2052D02* Y1896D01* X4957Y1948D02* X4587D01* Y1964D02* X4957D01* X4958Y1976D02* Y1664D01* X4586D01* X4587Y1676D02* X4957D01* Y1688D02* X4587D01* X4437D02* X4067D01* Y1684D02* X4437D01* X4587D02* X4957D01* Y1680D02* X4587D01* X4437D02* X4067D01* Y1696D02* X4437D01* X4587D02* X4957D01* Y1700D02* X4587D01* X4437D02* X4067D01* Y1704D02* X4437D01* X4587D02* X4957D01* Y1708D02* X4587D01* X4437D02* X4067D01* Y1712D02* X4437D01* X4587D02* X4957D01* Y1796D02* X4587D01* X4437D02* X4067D01* Y1792D02* X4437D01* X4587D02* X4957D01* Y1788D02* X4587D01* X4437D02* X4067D01* Y1784D02* X4437D01* X4587D02* X4957D01* Y1760D02* X4587D01* X4437D02* X4067D01* Y1756D02* X4437D01* X4587D02* X4957D01* Y1764D02* X4587D01* X4437D02* X4067D01* Y1768D02* X4437D01* X4587D02* X4957D01* Y1772D02* X4587D01* X4437D02* X4067D01* Y1776D02* X4437D01* X4587D02* X4957D01* Y1780D02* X4587D01* X4437D02* X4067D01* Y1752D02* X4437D01* X4587D02* X4957D01* Y1748D02* X4587D01* X4437D02* X4067D01* Y1744D02* X4437D01* X4587D02* X4957D01* Y1740D02* X4587D01* X4437D02* X4067D01* Y1736D02* X4437D01* X4587D02* X4957D01* Y1732D02* X4587D01* X4437D02* X4067D01* Y1728D02* X4437D01* X4587D02* X4957D01* Y1724D02* X4587D01* X4437D02* X4067D01* Y1720D02* X4437D01* X4587D02* X4957D01* Y1716D02* X4587D01* X4437D02* X4067D01* Y1800D02* X4437D01* X4587D02* X4957D01* Y1804D02* X4587D01* X4437D02* X4067D01* Y1808D02* X4437D01* X4587D02* X4957D01* Y1812D02* X4587D01* X4437D02* X4067D01* Y1816D02* X4437D01* X4587D02* X4957D01* Y1820D02* X4587D01* X4437D02* X4067D01* Y1824D02* X4437D01* X4587D02* X4957D01* Y1828D02* X4587D01* X4437D02* X4067D01* Y1832D02* X4437D01* X4587D02* X4957D01* Y1836D02* X4587D01* X4437D02* X4067D01* Y1840D02* X4437D01* X4587D02* X4957D01* Y1844D02* X4587D01* X4437D02* X4067D01* Y1848D02* X4437D01* X4587D02* X4957D01* Y1852D02* X4587D01* X4437D02* X4067D01* Y1872D02* X4437D01* X4587D02* X4957D01* Y1876D02* X4587D01* X4437D02* X4067D01* Y1880D02* X4437D01* X4587D02* X4957D01* Y1884D02* X4587D01* X4437D02* X4067D01* Y1888D02* X4437D01* X4587D02* X4957D01* Y1896D02* X4587D01* X4437D02* X4067D01* Y1892D02* X4437D01* X4587D02* X4957D01* Y1868D02* X4587D01* X4437D02* X4067D01* Y1864D02* X4437D01* X4587D02* X4957D01* Y1860D02* X4587D01* X4437D02* X4067D01* Y1856D02* X4437D01* X4587D02* X4957D01* X5797Y2217D02* Y2295D01* X5793Y2217D02* Y2295D01* X5785D02* Y2217D01* X5789Y2295D02* Y2217D01* X5781D02* Y2295D01* X5777Y2217D02* Y2295D01* X5773Y2217D02* Y2295D01* X5765D02* Y2217D01* X5769Y2295D02* Y2217D01* X5761D02* Y2295D01* X5809Y2296D02* Y2216D01* X5757D02* Y2296D01* X5663Y2295D02* Y2217D01* X5667Y2295D02* Y2217D01* X5671Y2295D02* Y2217D01* X5679D02* Y2295D01* X5675Y2217D02* Y2295D01* X5687D02* Y2217D01* X5757Y2216D02* X5809D01* X5805Y2217D02* Y2295D01* X5801Y2217D02* Y2295D01* X5809Y2296D02* X5757D01* X5683Y2295D02* Y2217D01* X5695D02* Y2295D01* X5691Y2217D02* Y2295D01* X5699Y2296D02* X5647D01* Y2216D01* X5659Y2217D02* Y2295D01* X5655Y2217D02* Y2295D01* X5699Y2296D02* Y2216D01* X5647D01* X5651Y2217D02* Y2295D01* X5439Y2217D02* Y2295D01* X5435Y2217D02* Y2295D01* X5443D02* Y2217D01* X5447Y2295D02* Y2217D01* X5451Y2295D02* Y2217D01* X5459D02* Y2295D01* X5455Y2217D02* Y2295D01* X5427D02* Y2217D01* X5431Y2295D02* Y2217D01* X5423D02* Y2295D01* X5471Y2296D02* Y2216D01* X5419D02* Y2296D01* X5313Y2295D02* Y2217D01* X5309Y2216D02* X5361D01* Y2296D01* X5317Y2295D02* Y2217D01* X5321Y2295D02* Y2217D01* X5329D02* Y2295D01* X5325Y2217D02* Y2295D01* X5333D02* Y2217D01* X5337Y2295D02* Y2217D01* X5341D02* Y2295D01* X5419Y2296D02* X5471D01* X5463Y2295D02* Y2217D01* X5467Y2295D02* Y2217D01* X5471Y2216D02* X5419D01* X5345Y2217D02* Y2295D01* X5349Y2217D02* Y2295D01* X5357Y2217D02* Y2295D01* X5353Y2217D02* Y2295D01* X5361Y2296D02* X5309D01* Y2216D01* X5090Y1896D02* Y2052D01* X5085Y2053D02* X5238D01* Y1895D01* X5085D01* X5094Y1896D02* Y2052D01* X5098D02* Y1896D01* X5102Y2052D02* Y1896D01* X5106Y2052D02* Y1896D01* X5114D02* Y2052D01* X5110Y1896D02* Y2052D01* X5374Y1808D02* X5744D01* Y1804D02* X5374D01* X5138Y2052D02* Y1896D01* X5142Y2052D02* Y1896D01* X5186D02* Y2052D01* X5182Y1896D02* Y2052D01* X5374Y1796D02* X5744D01* X5374Y1792D02* X5744D01* Y1800D02* X5374D01* X5118Y2052D02* Y1896D01* X5122Y2052D02* Y1896D01* X5134D02* Y2052D01* X5130Y1896D02* Y2052D01* X5126Y1896D02* Y2052D01* X5374Y1816D02* X5744D01* Y1812D02* X5374D01* X5230Y2052D02* Y1896D01* X5234Y2052D02* Y1896D01* X5374Y1744D02* X5744D01* X5374Y1740D02* X5744D01* X5374Y1736D02* X5744D01* Y1708D02* X5374D01* X5744Y1704D02* X5374D01* Y1712D02* X5744D01* X5374Y1716D02* X5744D01* X5686Y1360D02* Y1285D01* X5672Y1240D02* Y1162D01* X5734Y1161D02* X5786D01* X5782Y1162D02* Y1240D01* X5778Y1162D02* Y1240D01* X5786Y1241D02* X5734D01* X5668Y1240D02* Y1162D01* X5660D02* Y1240D01* X5658Y1286D02* Y1359D01* X5654D02* Y1286D01* X5656Y1240D02* Y1162D01* X5652D02* Y1240D01* X5650Y1286D02* Y1359D01* X5686Y1360D02* X5632D01* X5744Y1660D02* X5374D01* Y1688D02* X5744D01* X5374Y1684D02* X5744D01* X5745Y1824D02* Y1512D01* X5373D01* X5374Y1556D02* X5744D01* Y1560D02* X5374D01* X5550Y1359D02* Y1286D01* X5586Y1285D02* Y1360D01* X5744Y1516D02* X5374D01* X5373Y1512D02* Y1824D01* X5745D01* X5744Y1820D02* X5374D01* X5174Y2052D02* Y1896D01* X5178Y2052D02* Y1896D01* X5170D02* Y2052D01* X5166Y1896D02* Y2052D01* X5162Y1896D02* Y2052D01* X5374Y1756D02* X5744D01* X5374Y1760D02* X5744D01* Y1752D02* X5374D01* X5744Y1748D02* X5374D01* X5218Y2052D02* Y1896D01* X5222Y2052D02* Y1896D01* X5226Y2052D02* Y1896D01* X5214D02* Y2052D01* X5210Y1896D02* Y2052D01* X5374Y1780D02* X5744D01* X5374Y1776D02* X5744D01* Y1784D02* X5374D01* X5744Y1788D02* X5374D01* X5154Y2052D02* Y1896D01* X5158Y2052D02* Y1896D01* X5150D02* Y2052D01* X5146Y1896D02* Y2052D01* X5374Y1772D02* X5744D01* X5374Y1768D02* X5744D01* Y1764D02* X5374D01* X5202Y2052D02* Y1896D01* X5206Y2052D02* Y1896D01* X5198D02* Y2052D01* X5194Y1896D02* Y2052D01* X5190Y1896D02* Y2052D01* X5374Y1732D02* X5744D01* X5374Y1728D02* X5744D01* Y1724D02* X5374D01* X5744Y1720D02* X5374D01* Y1536D02* X5744D01* X5678Y1286D02* Y1359D01* X5682D02* Y1286D01* X5744Y1528D02* X5374D01* Y1520D02* X5744D01* X5670Y1286D02* Y1359D01* X5674D02* Y1286D01* X5744Y1584D02* X5374D01* Y1616D02* X5744D01* X5532Y1360D02* X5586D01* X5374Y1648D02* X5744D01* Y1652D02* X5374D01* X5442Y1359D02* Y1286D01* X5438D02* Y1359D01* X5374Y1524D02* X5744D01* Y1532D02* X5374D01* X5486Y1360D02* X5432D01* X5486D02* Y1285D01* X5432D01* X5374Y1544D02* X5744D01* Y1548D02* X5374D01* X5542Y1359D02* Y1286D01* X5546D02* Y1359D01* X5374Y1676D02* X5744D01* X5374Y1672D02* X5744D01* X5374Y1680D02* X5744D01* Y1664D02* X5374D01* X5744Y1668D02* X5374D01* X5466Y1359D02* Y1286D01* X5470D02* Y1359D01* X5374Y1692D02* X5744D01* X5374Y1696D02* X5744D01* Y1700D02* X5374D01* X5446Y1359D02* Y1286D01* X5450D02* Y1359D01* X5374Y1572D02* X5744D01* Y1576D02* X5374D01* X5566Y1359D02* Y1286D01* X5562D02* Y1359D01* X5374Y1656D02* X5744D01* Y1644D02* X5374D01* X5534Y1359D02* Y1286D01* X5538D02* Y1359D01* X5374Y1612D02* X5744D01* Y1608D02* X5374D01* X5574Y1359D02* Y1286D01* X5570D02* Y1359D01* X5374Y1640D02* X5744D01* Y1636D02* X5374D01* X5454Y1359D02* Y1286D01* X5482D02* Y1359D01* X5374Y1596D02* X5744D01* Y1592D02* X5374D01* X5558Y1359D02* Y1286D01* X5554D02* Y1359D01* X5374Y1624D02* X5744D01* Y1620D02* X5374D01* X5432Y1360D02* Y1285D01* X5434Y1286D02* Y1359D01* X5374Y1588D02* X5744D01* Y1580D02* X5374D01* X5532Y1360D02* Y1285D01* X5586D01* X5624Y1241D02* Y1161D01* X5628Y1162D02* Y1240D01* X5624Y1241D02* X5676D01* Y1161D01* X5624D01* X5632Y1162D02* Y1240D01* Y1285D02* Y1360D01* X5634Y1359D02* Y1286D01* X5636Y1240D02* Y1162D01* X5754D02* Y1240D01* X5750Y1162D02* Y1240D01* X5758D02* Y1162D01* X5762Y1240D02* Y1162D01* X5766Y1240D02* Y1162D01* X5774D02* Y1240D01* X5770Y1162D02* Y1240D01* X5742D02* Y1162D01* X5746Y1240D02* Y1162D01* X5738D02* Y1240D01* X5786Y1241D02* Y1161D01* X5734D02* Y1241D01* X5632Y1285D02* X5686D01* X5744Y1568D02* X5374D01* Y1552D02* X5744D01* X5666Y1286D02* Y1359D01* X5662D02* Y1286D01* X5664Y1240D02* Y1162D01* X5648D02* Y1240D01* X5646Y1286D02* Y1359D01* X5642D02* Y1286D01* X5644Y1240D02* Y1162D01* X5640D02* Y1240D01* X5638Y1286D02* Y1359D01* X5744Y1540D02* X5374D01* X5462Y1359D02* Y1286D01* X5458D02* Y1359D01* X5374Y1604D02* X5744D01* Y1600D02* X5374D01* X5582Y1359D02* Y1286D01* X5578D02* Y1359D01* X5374Y1632D02* X5744D01* Y1628D02* X5374D01* X5478Y1359D02* Y1286D01* X5474D02* Y1359D01* X5374Y1564D02* X5744D01* X6647Y1137D02* Y1217D01* X6699D01* X6695Y1216D02* Y1138D01* X6691Y1216D02* Y1138D01* X6687Y1216D02* Y1138D01* X6757Y1137D02* X6809D01* X6805Y1138D02* Y1216D01* X6801Y1138D02* Y1216D01* X6797Y1138D02* Y1216D01* X6793Y1138D02* Y1216D01* X6809Y1217D02* X6757D01* X6683Y1216D02* Y1138D01* X6675Y1216D02* Y1138D01* X6679Y1216D02* Y1138D01* X6671D02* Y1216D01* X6667Y1138D02* Y1216D01* X6659D02* Y1138D01* X6663Y1216D02* Y1138D01* X6655D02* Y1216D01* X6699Y1217D02* Y1137D01* X6647D01* X6651Y1138D02* Y1216D01* X6757Y1217D02* Y1137D01* X6809D02* Y1217D01* X6761Y1216D02* Y1138D01* X6765Y1216D02* Y1138D01* X6773D02* Y1216D01* X6769Y1138D02* Y1216D01* X6777D02* Y1138D01* X6781Y1216D02* Y1138D01* X6789D02* Y1216D01* X6785Y1138D02* Y1216D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y5137D02* X8124Y4937D01* X8324Y4737D01* X8524Y4937D01* X8324Y5137D01* Y5237D02* X8024Y4937D01* X8324Y4637D01* X8624Y4937D01* X8324Y5237D01* Y4512D02* Y5362D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1441D01* Y4465D01* X2534Y4695D02* Y4825D01* X2539D01* Y4695D01* X2534D01* X2535Y4696D02* Y4824D01* X2559Y4825D02* Y4695D01* X2564D01* Y4825D01* X2559D01* X2560Y4824D02* Y4696D01* X2585D02* Y4824D01* X2584Y4825D02* X2589D01* Y4695D01* X2584D01* Y4825D01* X2660Y4824D02* Y4696D01* X2659Y4695D02* X2664D01* Y4825D01* X2659D01* Y4695D01* X2635Y4696D02* Y4824D01* X2634Y4825D02* X2639D01* Y4695D01* X2634D01* Y4825D01* X2609D02* Y4695D01* X2614D01* Y4825D01* X2609D01* X2610Y4824D02* Y4696D01* X2734Y4695D02* Y4825D01* X2739D01* Y4695D01* X2734D01* X2735Y4696D02* Y4824D01* X2759Y4825D02* Y4695D01* X2764D01* Y4825D01* X2759D01* X2760Y4824D02* Y4696D01* X2884Y4695D02* Y4825D01* X2889D01* Y4695D01* X2884D01* X2885Y4696D02* Y4824D01* X2910D02* Y4696D01* X2909Y4695D02* X2914D01* Y4825D01* X2909D01* Y4695D01* X2934D02* Y4825D01* X2939D01* Y4695D01* X2934D01* X2935Y4696D02* Y4824D01* X2959Y4825D02* Y4695D01* X2964D01* Y4825D01* X2959D01* X2960Y4824D02* Y4696D01* X3134Y4695D02* Y4825D01* X3139D01* Y4695D01* X3134D01* X3135Y4696D02* Y4824D01* X3159Y4825D02* Y4695D01* X3164D01* Y4825D01* X3159D01* X3160Y4824D02* Y4696D01* X3185D02* Y4824D01* X3184Y4825D02* X3189D01* Y4695D01* X3184D01* Y4825D01* X3209D02* Y4695D01* X3214D01* Y4825D01* X3209D01* X3210Y4824D02* Y4696D01* X3334Y4695D02* Y4825D01* X3339D01* Y4695D01* X3334D01* X3335Y4696D02* Y4824D01* X3359Y4825D02* Y4695D01* X3364D01* Y4825D01* X3359D01* X3360Y4824D02* Y4696D01* X3484Y4695D02* Y4825D01* X3489D01* Y4695D01* X3484D01* X3485Y4696D02* Y4824D01* X3460D02* Y4696D01* X3459Y4695D02* X3464D01* Y4825D01* X3459D01* Y4695D01* X3435Y4696D02* Y4824D01* X3434Y4825D02* X3439D01* Y4695D01* X3434D01* Y4825D01* X3409D02* Y4695D01* X3414D01* Y4825D01* X3409D01* X3410Y4824D02* Y4696D01* X3385D02* Y4824D01* X3384Y4825D02* X3389D01* Y4695D01* X3384D01* Y4825D01* X3310Y4824D02* Y4696D01* X3309Y4695D02* X3314D01* Y4825D01* X3309D01* Y4695D01* X3284D02* Y4825D01* X3289D01* Y4695D01* X3284D01* X3285Y4696D02* Y4824D01* X3260D02* Y4696D01* X3259Y4695D02* X3264D01* Y4825D01* X3259D01* Y4695D01* X3235Y4696D02* Y4824D01* X3234Y4825D02* X3239D01* Y4695D01* X3234D01* Y4825D01* X3110Y4824D02* Y4696D01* X3109Y4695D02* X3114D01* Y4825D01* X3109D01* Y4695D01* X3084D02* Y4825D01* X3089D01* Y4695D01* X3084D01* X3085Y4696D02* Y4824D01* X3060D02* Y4696D01* X3059Y4695D02* X3064D01* Y4825D01* X3059D01* Y4695D01* X3035Y4696D02* Y4824D01* X3034Y4825D02* X3039D01* Y4695D01* X3034D01* Y4825D01* X3009D02* Y4695D01* X3014D01* Y4825D01* X3009D01* X3010Y4824D02* Y4696D01* X2985D02* Y4824D01* X2984Y4825D02* X2989D01* Y4695D01* X2984D01* Y4825D01* X2860Y4824D02* Y4696D01* X2859Y4695D02* X2864D01* Y4825D01* X2859D01* Y4695D01* X2835Y4696D02* Y4824D01* X2834Y4825D02* X2839D01* Y4695D01* X2834D01* Y4825D01* X2809D02* Y4695D01* X2814D01* Y4825D01* X2809D01* X2810Y4824D02* Y4696D01* X2785D02* Y4824D01* X2784Y4825D02* X2789D01* Y4695D01* X2784D01* Y4825D01* X2710Y4824D02* Y4696D01* X2709Y4695D02* X2714D01* Y4825D01* X2709D01* Y4695D01* X2684D02* Y4825D01* X2689D01* Y4695D01* X2684D01* X2685Y4696D02* Y4824D01* X3760Y4696D02* Y4824D01* X3759Y4825D02* X3764D01* Y4695D01* X3759D01* Y4825D01* X3735Y4824D02* Y4696D01* X3734Y4695D02* X3739D01* Y4825D01* X3734D01* Y4695D01* X3709D02* Y4825D01* X3714D01* Y4695D01* X3709D01* X3710Y4696D02* Y4824D01* X3685D02* Y4696D01* X3684Y4695D02* X3689D01* Y4825D01* X3684D01* Y4695D01* X3560Y4696D02* Y4824D01* X3559Y4825D02* X3564D01* Y4695D01* X3559D01* Y4825D01* X3535Y4824D02* Y4696D01* X3534Y4695D02* X3539D01* Y4825D01* X3534D01* Y4695D01* X3509D02* Y4825D01* X3514D01* Y4695D01* X3509D01* X3510Y4696D02* Y4824D01* X3584Y4825D02* Y4695D01* X3589D01* Y4825D01* X3584D01* X3585Y4824D02* Y4696D01* X3610D02* Y4824D01* X3609Y4825D02* X3614D01* Y4695D01* X3609D01* Y4825D01* X3634D02* Y4695D01* X3639D01* Y4825D01* X3634D01* X3635Y4824D02* Y4696D01* X3659Y4695D02* Y4825D01* X3664D01* Y4695D01* X3659D01* X3660Y4696D02* Y4824D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3358D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* Y5370D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5406D01* X3429Y5370D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3678Y5415D02* X3643D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5379D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X4185Y5441D02* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4212Y5397D02* X4221Y5406D01* X4256D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* X4194D02* X4185Y5441D01* X4212Y5432D02* Y5415D01* X4221Y5406D01* X4212Y5397D02* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5415D02* Y5432D01* X4398Y5441D01* X4407Y5415D02* X4398Y5406D01* X4407Y5397D01* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4425D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4567Y5406D02* X4603D01* X4638Y5415D02* Y5432D01* X4647Y5441D01* X4683D01* X4692Y5432D01* X4638Y5415D02* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* X4621D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5370D02* X5225Y5379D01* X5234Y5388D01* X5243Y5379D01* X5234Y5370D01* X5278D02* X5332Y5441D01* X5323D02* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5563Y5406D02* X5616D01* X5791Y5379D02* Y5432D01* X5800Y5441D01* X5836D01* X5845Y5432D01* X5862Y5406D02* X5871Y5415D01* X5898D02* X5871D01* X5862Y5406D02* Y5379D01* X5898Y5415D02* X5907Y5406D01* Y5379D01* X5898Y5370D01* X5871D01* X5862Y5379D01* X5845D02* X5836Y5370D01* X5800D01* X5791Y5379D01* X5934Y5370D02* Y5415D01* Y5406D02* X5942Y5415D01* X5951D01* X5960Y5406D01* Y5370D01* X5987D02* Y5406D01* X5978Y5415D01* X5969D01* X5960Y5406D01* X6005Y5370D02* X6040D01* X6049Y5379D01* Y5406D01* X6040Y5415D01* X6005D01* Y5343D01* X6085Y5415D02* X6111D01* X6120Y5406D01* Y5379D01* X6111Y5370D01* X6085D01* X6076Y5379D01* Y5406D01* X6085Y5415D01* X6147Y5370D02* Y5415D01* Y5406D02* X6156Y5415D01* X6182D01* X6191Y5406D01* Y5370D01* X6218Y5388D02* X6254D01* X6262Y5397D01* Y5406D01* X6254Y5415D01* X6227D01* X6218Y5406D01* Y5379D01* X6227Y5370D01* X6262D01* X6289D02* Y5415D01* Y5406D02* X6298Y5415D01* X6325D01* X6334Y5406D01* Y5370D01* X6405Y5379D02* X6396Y5370D01* X6387D01* X6378Y5379D01* Y5441D01* X6360Y5415D02* X6396D01* X6502Y5370D02* Y5441D01* X6547D01* X6556Y5432D01* Y5415D01* X6547Y5406D01* X6502D01* X6582Y5415D02* X6609D01* X6618Y5406D01* Y5370D01* X6582D01* X6574Y5379D01* Y5388D01* X6582Y5397D01* X6618D01* X6645Y5379D02* X6654Y5370D01* X6680D01* X6689Y5379D01* Y5388D01* X6680Y5397D01* X6654D01* X6645Y5406D01* X6654Y5415D01* X6680D01* X6689Y5406D01* X6751Y5415D02* X6716D01* X6734Y5441D02* Y5379D01* X6742Y5370D01* X6751D01* X6760Y5379D01* X6787Y5388D02* X6822D01* X6831Y5397D01* Y5406D01* X6822Y5415D01* X6796D01* X6787Y5406D01* Y5379D01* X6796Y5370D01* X6831D01* X6730Y4751D02* X6940D01* X6730Y4755D02* X6940D01* X6941Y4747D02* X6729D01* Y4819D01* X6730Y4787D02* X6940D01* X6730Y4791D02* X6940D01* Y4795D02* X6730D01* X6940Y4799D02* X6730D01* Y4783D02* X6940D01* X6730Y4779D02* X6940D01* X6730Y4775D02* X6940D01* Y4771D02* X6730D01* X6940Y4767D02* X6730D01* Y4759D02* X6940D01* X6730Y4763D02* X6940D01* X6941Y4747D02* Y4819D01* X6729D01* X6730Y4815D02* X6940D01* X6730Y4811D02* X6940D01* X6730Y4807D02* X6940D01* X6730Y4803D02* X6940D01* Y4359D02* X6730D01* X6940Y4355D02* X6730D01* Y4351D02* X6940D01* X6851Y4191D02* Y4139D01* X6850Y4143D02* X6772D01* X6850Y4147D02* X6772D01* Y4151D02* X6850D01* X6851Y4139D02* X6771D01* X6730Y4323D02* X6940D01* Y4311D02* X6730D01* X6851Y4191D02* X6771D01* X6772Y4187D02* X6850D01* X6730Y4343D02* X6940D01* X6730Y4347D02* X6940D01* X6729Y4307D02* Y4379D01* X6941D01* X6940Y4375D02* X6730D01* X6940Y4371D02* X6730D01* Y4363D02* X6940D01* X6730Y4367D02* X6940D01* X6941Y4379D02* Y4307D01* X6729D01* X6730Y4335D02* X6940D01* Y4339D02* X6730D01* X6850Y4179D02* X6772D01* Y4175D02* X6850D01* X6730Y4315D02* X6940D01* Y4319D02* X6730D01* X6771Y4191D02* Y4139D01* X6772Y4077D02* X6850D01* X6772Y4073D02* X6850D01* X6851Y4081D02* Y4029D01* X6771D01* X6772Y4041D02* X6850D01* Y4049D02* X6772D01* X6850Y4045D02* X6772D01* X6850Y4057D02* X6772D01* X6850Y4053D02* X6772D01* Y4061D02* X6850D01* X6772Y4065D02* X6850D01* X6772Y4069D02* X6850D01* X6851Y4081D02* X6771D01* Y4029D01* X6772Y4037D02* X6850D01* X6772Y4033D02* X6850D01* Y4159D02* X6772D01* X6850Y4155D02* X6772D01* Y4163D02* X6850D01* X6772Y4167D02* X6850D01* X6772Y4171D02* X6850D01* X6730Y4331D02* X6940D01* Y4327D02* X6730D01* X6850Y4183D02* X6772D01* X6730Y3220D02* X6940D01* X6730Y3216D02* X6940D01* X6730Y3212D02* X6940D01* Y3224D02* X6730D01* X6940Y3228D02* X6730D01* X6729Y3196D02* X6941D01* Y3268D01* X6940Y3260D02* X6730D01* X6940Y3264D02* X6730D01* Y3256D02* X6940D01* X6730Y3252D02* X6940D01* X6730Y3248D02* X6940D01* Y3244D02* X6730D01* X6940Y3240D02* X6730D01* Y3232D02* X6940D01* X6730Y3236D02* X6940D01* X6941Y3268D02* X6729D01* Y3196D01* X6730Y3208D02* X6940D01* X6730Y3204D02* X6940D01* X6730Y3200D02* X6940D01* Y2823D02* X6730D01* X6734Y2669D02* Y2591D01* X6738D02* Y2669D01* X6730Y2815D02* X6940D01* Y2771D02* X6730D01* X6812Y2670D02* Y2590D01* X6844Y2591D02* Y2669D01* X6840Y2591D02* Y2669D01* X6836D02* Y2591D01* X6832Y2669D02* Y2591D01* X6903Y2590D02* X6955D01* Y2670D01* X6940Y2791D02* X6730D01* Y2787D02* X6940D01* X6903Y2670D02* X6955D01* X7013D02* Y2590D01* X7065D02* Y2670D01* X7017Y2669D02* Y2591D01* X7025D02* Y2669D01* X7021Y2591D02* Y2669D01* X7029D02* Y2591D01* X7033Y2669D02* Y2591D01* X7037Y2669D02* Y2591D01* X7045D02* Y2669D01* X7041Y2591D02* Y2669D01* X7049D02* Y2591D01* X7053Y2669D02* Y2591D01* X6951D02* Y2669D01* X6947Y2591D02* Y2669D01* X6943D02* Y2591D01* X6939Y2669D02* Y2591D01* X7013Y2590D02* X7065D01* X7061Y2591D02* Y2669D01* X7057Y2591D02* Y2669D01* X7065Y2670D02* X7013D01* X6940Y2819D02* X6730D01* Y2803D02* X6940D01* X6864Y2670D02* Y2590D01* X6820Y2591D02* Y2669D01* X6824D02* Y2591D01* X6828Y2669D02* Y2591D01* X6852D02* Y2669D01* X6848Y2591D02* Y2669D01* X6856D02* Y2591D01* X6860Y2669D02* Y2591D01* X6864Y2590D02* X6812D01* X6816Y2591D02* Y2669D01* X6812Y2670D02* X6864D01* X6903D02* Y2590D01* X6907Y2669D02* Y2591D01* X6915D02* Y2669D01* X6911Y2591D02* Y2669D01* X6919D02* Y2591D01* X6923Y2669D02* Y2591D01* X6927Y2669D02* Y2591D01* X6935D02* Y2669D01* X6931Y2591D02* Y2669D01* X6730Y2775D02* X6940D01* X6941Y2755D02* X6729D01* Y2827D01* X6730Y2807D02* X6940D01* Y2811D02* X6730D01* X6754Y2670D02* X6702D01* Y2590D01* X6710Y2591D02* Y2669D01* X6754Y2670D02* Y2590D01* X6702D01* X6706Y2591D02* Y2669D01* X6730Y2763D02* X6940D01* Y2767D02* X6730D01* X6714Y2669D02* Y2591D01* X6718Y2669D02* Y2591D01* X6750D02* Y2669D01* X6730Y2795D02* X6940D01* Y2799D02* X6730D01* X6742Y2669D02* Y2591D01* X6746D02* Y2669D01* X6730Y2779D02* X6940D01* Y2783D02* X6730D01* X6722Y2669D02* Y2591D01* X6726Y2669D02* Y2591D01* X6730D02* Y2669D01* Y2759D02* X6940D01* X6941Y2755D02* Y2827D01* X6729D01* X8324Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* Y800D02* X8524Y1000D01* X8324Y1200D01* X8124Y1000D01* X8324Y800D01* Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D020* X1820Y4681D02* X1840D01* X1820Y4619D02* X1840D01* X1910D02* X1890D01* X1910Y4681D02* X1890D01* X1970D02* X1990D01* X1970Y4619D02* X1990D01* X2151Y3641D02* X2171D01* X2151Y3579D02* X2171D01* Y3519D02* X2151D01* X2171Y3457D02* X2151D01* Y3401D02* X2171D01* Y3339D02* X2151D01* Y3283D02* X2171D01* X2151Y3221D02* X2171D01* X2287Y3010D02* Y2990D01* Y2935D02* Y2915D01* Y2864D02* Y2844D01* X2225D02* Y2864D01* Y2915D02* Y2935D01* Y2990D02* Y3010D01* X2170Y2979D02* X2150D01* X2170Y3041D02* X2150D01* X2122Y2844D02* Y2864D01* X2060Y2844D02* Y2864D01* X1826Y2896D02* Y2876D01* X1764Y2896D02* Y2876D01* X1892Y2665D02* X1912D01* X1962D02* X1982D01* Y2603D02* X1962D01* X1912D02* X1892D01* X1939Y2452D02* X1959D01* X1939Y2390D02* X1959D01* X2037Y2394D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* Y2456D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2371Y1562D02* X2437D01* X2371Y1512D02* X2437D01* Y1462D02* X2371D01* X2437Y1412D02* X2371D01* X2437Y1362D02* X2371D01* X2437Y1312D02* X2371D01* X2437Y1262D02* X2371D01* X2437Y1212D02* X2371D01* X2217D02* X2283D01* X2217Y1262D02* X2283D01* X2217Y1312D02* X2283D01* X2217Y1362D02* X2283D01* X2217Y1412D02* X2283D01* X2217Y1462D02* X2283D01* Y1512D02* X2217D01* X2283Y1562D02* X2217D01* X2122Y1581D02* Y1561D01* X2060Y1581D02* Y1561D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* X3421Y1600D02* Y1620D01* X3359Y1600D02* Y1620D01* X2437Y1612D02* X2371D01* X2437Y1662D02* X2371D01* X2437Y1712D02* X2371D01* X2437Y1762D02* X2371D01* X2437Y1812D02* X2371D01* X2283Y1612D02* X2217D01* X2283Y1662D02* X2217D01* X2283Y1712D02* X2217D01* X2283Y1762D02* X2217D01* X2283Y1812D02* X2217D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984D02* Y1856D01* X1922Y1876D02* Y1856D01* X2185Y2128D02* Y2148D01* X2123Y2128D02* Y2148D01* X2125Y2203D02* Y2223D01* X2182D02* Y2203D01* X2244D02* Y2223D01* X2270Y2280D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2063Y2223D02* Y2203D01* X1982Y2123D02* X1962D01* X1912D02* X1892D01* Y2185D02* X1912D01* X1962D02* X1982D01* X1959Y2241D02* X1939D01* X1959Y2303D02* X1939D01* X2037Y2342D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* X2351Y2451D02* Y2431D01* X2413Y2451D02* Y2431D01* X2417Y2227D02* Y2207D01* Y2148D02* Y2128D01* X2355D02* Y2148D01* Y2207D02* Y2227D01* X2675Y2504D02* X2655D01* X2675Y2566D02* X2655D01* X2675Y2642D02* X2655D01* X2675Y2704D02* X2655D01* X3590Y3001D02* X3610D01* X3660D02* X3680D01* Y2939D02* X3660D01* X3610D02* X3590D01* X3320D02* X3300D01* X3320Y3001D02* X3300D01* X2850Y3489D02* X2870D01* X2850Y3551D02* X2870D01* X2850Y3609D02* X2870D01* X2850Y3671D02* X2870D01* X2850Y3859D02* X2830D01* X2780D02* X2760D01* Y3921D02* X2780D01* X2830D02* X2850D01* Y3979D02* X2830D01* X2777D02* X2757D01* Y4041D02* X2777D01* X2830D02* X2850D01* X3490Y4217D02* X3470D01* X3490Y4279D02* X3470D01* X4511Y3695D02* Y3675D01* X4449Y3695D02* Y3675D01* X4401D02* Y3695D01* X4339Y3675D02* Y3695D01* X3860Y3641D02* X3880D01* X3860Y3579D02* X3880D01* X3909Y3230D02* Y3210D01* X3971Y3230D02* Y3210D01* X3970Y3131D02* X3950D01* X3900D02* X3880D01* Y3069D02* X3900D01* X3950D02* X3970D01* Y3011D02* X3950D01* X3900D02* X3880D01* Y2949D02* X3900D01* X3950D02* X3970D01* X4154Y2640D02* Y2660D01* X4216Y2640D02* Y2660D01* X4312Y2640D02* Y2660D01* X4374Y2640D02* Y2660D01* X4414D02* Y2640D01* X4476Y2660D02* Y2640D01* X4970Y2472D02* X4990D01* X4970Y2410D02* X4990D01* X5799Y3379D02* Y3399D01* X5861Y3379D02* Y3399D01* X5838Y3801D02* Y3821D01* X5776Y3801D02* Y3821D01* X6626Y4258D02* Y4238D01* X6688Y4258D02* Y4238D01* X7154Y4774D02* Y4754D01* X7216Y4774D02* Y4754D01* X7162Y2856D02* Y2876D01* Y2919D02* Y2939D01* X7224D02* Y2919D01* Y2876D02* Y2856D01* Y1423D02* Y1443D01* Y1486D02* Y1506D01* X7162D02* Y1486D01* Y1443D02* Y1423D01* X6993Y1227D02* Y1207D01* X7055Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6993Y1156D02* Y1136D01* X6573Y1158D02* X6553D01* X6573Y1220D02* X6553D01* D042* X6861Y1916D02* D03* Y1866D02* D03* X6911D02* D03* Y1916D02* D03* X6961D02* D03* Y1866D02* D03* Y1816D02* D03* X6911D02* D03* X6861D02* D03* Y1716D02* D03* Y1766D02* D03* X6911D02* D03* Y1716D02* D03* X6961Y1766D02* D03* Y1716D02* D03* Y1666D02* D03* Y1616D02* D03* X6911D02* D03* Y1666D02* D03* X6861D02* D03* Y1616D02* D03* X7011D02* D03* Y1666D02* D03* Y1716D02* D03* Y1766D02* D03* Y1816D02* D03* Y1866D02* D03* Y1916D02* D03* Y2066D02* D03* Y2016D02* D03* Y1966D02* D03* X6961D02* D03* Y2016D02* D03* X6911D02* D03* Y1966D02* D03* X6861D02* D03* Y2016D02* D03* Y2066D02* D03* X6911D02* D03* X6961D02* D03* X7011Y2316D02* D03* Y2366D02* D03* Y2416D02* D03* Y2266D02* D03* Y2216D02* D03* Y2166D02* D03* Y2116D02* D03* X6961D02* D03* Y2166D02* D03* X6911Y2116D02* D03* X6861D02* D03* Y2166D02* D03* X6911D02* D03* Y2216D02* D03* X6961D02* D03* Y2266D02* D03* X6911D02* D03* X6861D02* D03* Y2216D02* D03* Y2316D02* D03* Y2366D02* D03* X6911D02* D03* Y2316D02* D03* X6961D02* D03* Y2366D02* D03* Y2416D02* D03* X6911D02* D03* X6861D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* Y2366D02* D03* Y2316D02* D03* X6761D02* D03* Y2366D02* D03* X6811D02* D03* Y2316D02* D03* Y2266D02* D03* X6761D02* D03* X6711D02* D03* X6611Y2316D02* D03* X6661D02* D03* Y2266D02* D03* X6611D02* D03* X6561D02* D03* X6511D02* D03* X6411Y2366D02* D03* Y2316D02* D03* X6361D02* D03* Y2366D02* D03* Y2416D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* Y2366D02* D03* X6611D02* D03* X6561D02* D03* Y2316D02* D03* X6511D02* D03* Y2366D02* D03* X6461D02* D03* Y2316D02* D03* Y2266D02* D03* X6411D02* D03* X6361D02* D03* X6311D02* D03* X6261D02* D03* X6211D02* D03* Y2366D02* D03* Y2316D02* D03* X6261D02* D03* Y2366D02* D03* X6311D02* D03* Y2316D02* D03* Y2416D02* D03* X6261D02* D03* X6211D02* D03* X6161D02* D03* Y2366D02* D03* Y2316D02* D03* Y2266D02* D03* X6111D02* D03* X6061Y2216D02* D03* Y2266D02* D03* X6011D02* D03* Y2216D02* D03* X5961Y2266D02* D03* X5911D02* D03* Y2216D02* D03* X5961D02* D03* Y2166D02* D03* X5911D02* D03* Y2116D02* D03* X5961D02* D03* X6011D02* D03* Y2166D02* D03* X6061D02* D03* Y2116D02* D03* X5911Y2316D02* D03* Y2366D02* D03* X5961D02* D03* Y2316D02* D03* X6011D02* D03* X6061D02* D03* X6111D02* D03* Y2366D02* D03* Y2416D02* D03* X6061D02* D03* Y2366D02* D03* X6011D02* D03* Y2416D02* D03* X5961D02* D03* X5911D02* D03* X5961Y2066D02* D03* X5911D02* D03* Y2016D02* D03* Y1966D02* D03* X5961D02* D03* Y2016D02* D03* X6061D02* D03* Y2066D02* D03* X6011D02* D03* Y2016D02* D03* Y1966D02* D03* X6061D02* D03* Y1916D02* D03* X6011D02* D03* X5961D02* D03* Y1866D02* D03* X5911D02* D03* Y1916D02* D03* Y1816D02* D03* X5961D02* D03* X6011D02* D03* Y1866D02* D03* X6061D02* D03* Y1816D02* D03* Y1616D02* D03* X6011D02* D03* Y1666D02* D03* X6061D02* D03* Y1716D02* D03* Y1766D02* D03* X6011D02* D03* Y1716D02* D03* X5961D02* D03* Y1766D02* D03* X5911D02* D03* Y1716D02* D03* Y1616D02* D03* Y1666D02* D03* X5961D02* D03* Y1616D02* D03* X6011Y1566D02* D03* X6061D02* D03* Y1516D02* D03* Y1466D02* D03* X6011D02* D03* Y1516D02* D03* X5961D02* D03* Y1566D02* D03* X5911D02* D03* Y1516D02* D03* Y1466D02* D03* X5961D02* D03* X5911Y1416D02* D03* X5961D02* D03* X6011D02* D03* Y1366D02* D03* X6061D02* D03* Y1416D02* D03* X6111D02* D03* Y1366D02* D03* X6161D02* D03* Y1416D02* D03* Y1466D02* D03* X6111D02* D03* X5911Y1316D02* D03* Y1366D02* D03* X5961D02* D03* Y1316D02* D03* X6011D02* D03* X6061D02* D03* X6111D02* D03* X6161D02* D03* X6211D02* D03* Y1366D02* D03* X6261D02* D03* Y1316D02* D03* X6311D02* D03* Y1366D02* D03* Y1416D02* D03* X6261D02* D03* X6211D02* D03* Y1466D02* D03* X6261D02* D03* X6311D02* D03* X6361D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* X6711D02* D03* X6761D02* D03* X6811D02* D03* X7011Y1316D02* D03* Y1366D02* D03* Y1416D02* D03* Y1466D02* D03* Y1516D02* D03* Y1566D02* D03* X6961D02* D03* Y1516D02* D03* X6911D02* D03* Y1566D02* D03* X6861D02* D03* Y1516D02* D03* Y1466D02* D03* X6911D02* D03* X6961D02* D03* X6511Y1416D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* Y1366D02* D03* X6611D02* D03* X6711Y1416D02* D03* X6761D02* D03* X6811D02* D03* Y1366D02* D03* X6861Y1416D02* D03* X6911D02* D03* X6961D02* D03* Y1366D02* D03* Y1316D02* D03* X6911D02* D03* Y1366D02* D03* X6861D02* D03* Y1316D02* D03* X6811D02* D03* X6761D02* D03* Y1366D02* D03* X6711D02* D03* Y1316D02* D03* X6661D02* D03* X6611D02* D03* X6561D02* D03* Y1366D02* D03* X6511D02* D03* Y1316D02* D03* X6361D02* D03* Y1366D02* D03* X6411D02* D03* Y1316D02* D03* X6461D02* D03* Y1366D02* D03* Y1416D02* D03* X6411D02* D03* X6361D02* D03* X3900Y2510D02* D03* Y2460D02* D03* Y2410D02* D03* Y2360D02* D03* Y2310D02* D03* Y2260D02* D03* X3850Y2310D02* D03* Y2260D02* D03* X3800D02* D03* Y2310D02* D03* Y2360D02* D03* X3850D02* D03* X3800Y2460D02* D03* Y2410D02* D03* X3850D02* D03* Y2460D02* D03* Y2510D02* D03* X3800D02* D03* X3750D02* D03* Y2460D02* D03* X3700D02* D03* Y2510D02* D03* X3650D02* D03* Y2460D02* D03* Y2410D02* D03* Y2360D02* D03* X3700D02* D03* Y2310D02* D03* X3750D02* D03* Y2360D02* D03* Y2410D02* D03* X3700D02* D03* Y2260D02* D03* X3750D02* D03* Y2210D02* D03* X3700D02* D03* Y2160D02* D03* Y2110D02* D03* X3750D02* D03* Y2160D02* D03* X3850D02* D03* Y2110D02* D03* X3800D02* D03* Y2160D02* D03* Y2210D02* D03* X3850D02* D03* X3900D02* D03* Y2160D02* D03* Y2110D02* D03* Y2060D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* X3850D02* D03* X3800D02* D03* X3750D02* D03* Y1810D02* D03* X3700D02* D03* Y1760D02* D03* Y1860D02* D03* X3750D02* D03* X3800D02* D03* Y1810D02* D03* X3850D02* D03* Y1860D02* D03* Y1960D02* D03* Y1910D02* D03* X3800D02* D03* Y1960D02* D03* Y2010D02* D03* X3850D02* D03* Y2060D02* D03* X3800D02* D03* X3750D02* D03* X3700D02* D03* X3750Y2010D02* D03* X3700D02* D03* Y1960D02* D03* Y1910D02* D03* X3750D02* D03* Y1960D02* D03* X3650Y2160D02* D03* Y2110D02* D03* Y2060D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* X3600D02* D03* X3550D02* D03* Y1810D02* D03* Y1860D02* D03* X3600D02* D03* Y1810D02* D03* Y1910D02* D03* Y1960D02* D03* X3550D02* D03* Y1910D02* D03* X3500D02* D03* Y1960D02* D03* X3450D02* D03* Y1910D02* D03* X3400D02* D03* X3350D02* D03* X3300D02* D03* X3200Y1860D02* D03* Y1810D02* D03* X3250D02* D03* Y1860D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* Y1810D02* D03* X3450D02* D03* Y1860D02* D03* X3500D02* D03* Y1810D02* D03* Y1760D02* D03* X3450D02* D03* X3400D02* D03* X3350D02* D03* Y1810D02* D03* X3300D02* D03* Y1760D02* D03* X3250D02* D03* X3200D02* D03* Y1710D02* D03* X3250D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* X3450D02* D03* X3500D02* D03* X3550D02* D03* X3600D02* D03* X3650D02* D03* X3700D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3900D02* D03* D017* X2040Y1632D02* X2062D01* X2119D02* X2141D01* X2119Y1707D02* X2141D01* X2695Y1531D02* Y1471D01* X2727Y1531D02* Y1471D01* X2758Y1531D02* Y1471D01* X2821D02* Y1531D01* X2790Y1471D02* Y1531D01* X2853D02* Y1471D01* X2884Y1531D02* Y1471D01* X2916Y1531D02* Y1471D01* X2947Y1531D02* Y1471D01* X2979Y1531D02* Y1471D01* X3042D02* Y1531D01* X3010Y1471D02* Y1531D01* X3105Y1471D02* Y1531D01* X3073Y1471D02* Y1531D01* X3136D02* Y1471D01* X3168Y1531D02* Y1471D01* X3199Y1531D02* Y1471D01* X3262D02* Y1531D01* X3231Y1471D02* Y1531D01* X3294D02* Y1471D01* X3325Y1531D02* Y1471D01* X3357Y1531D02* Y1471D01* X3388Y1531D02* Y1471D01* X3420Y1531D02* Y1471D01* X3483D02* Y1531D01* X3451Y1471D02* Y1531D01* X3514D02* Y1471D01* X3546Y1531D02* Y1471D01* X3609D02* Y1531D01* X3577Y1471D02* Y1531D01* X3790D02* Y1471D01* X3821Y1531D02* Y1471D01* X3884D02* Y1531D01* X3853Y1471D02* Y1531D01* X3947Y1471D02* Y1531D01* X3916Y1471D02* Y1531D01* X3979D02* Y1471D01* X4010Y1531D02* Y1471D01* X4042Y1531D02* Y1471D01* X4105D02* Y1531D01* X4073Y1471D02* Y1531D01* X4136D02* Y1471D01* X4168Y1531D02* Y1471D01* X4199Y1531D02* Y1471D01* X4231Y1531D02* Y1471D01* X4262Y1531D02* Y1471D01* X4325D02* Y1531D01* X4294Y1471D02* Y1531D01* X4357D02* Y1471D01* X4388Y1531D02* Y1471D01* X4420Y1531D02* Y1471D01* X4451Y1531D02* Y1471D01* X4483Y1531D02* Y1471D01* X4546D02* Y1531D01* X4514Y1471D02* Y1531D01* X4577D02* Y1471D01* X4609Y1531D02* Y1471D01* X4640Y1531D02* Y1471D01* X4703D02* Y1531D01* X4671Y1471D02* Y1531D01* X4734D02* Y1471D01* X4766Y1531D02* Y1471D01* X4797Y1531D02* Y1471D01* X4860D02* Y1531D01* X4829Y1471D02* Y1531D01* X4923Y1471D02* Y1531D01* X4892Y1471D02* Y1531D01* X4955D02* Y1471D01* X4986Y1531D02* Y1471D01* X5018Y1531D02* Y1471D01* X5049Y1531D02* Y1471D01* X5081Y1531D02* Y1471D01* X5034Y1209D02* Y1149D01* X5065Y1209D02* Y1149D01* X5002D02* Y1209D01* X4971Y1149D02* Y1209D01* X4939Y1149D02* Y1209D01* X4908Y1149D02* Y1209D01* X4876Y1149D02* Y1209D01* X4813D02* Y1149D01* X4845Y1209D02* Y1149D01* X4750Y1209D02* Y1149D01* X4782Y1209D02* Y1149D01* X4719D02* Y1209D01* X4687Y1149D02* Y1209D01* X4656Y1149D02* Y1209D01* X4593D02* Y1149D01* X4624Y1209D02* Y1149D01* X4561D02* Y1209D01* X4530Y1149D02* Y1209D01* X4498Y1149D02* Y1209D01* X4467Y1149D02* Y1209D01* X4435Y1149D02* Y1209D01* X4372D02* Y1149D01* X4404Y1209D02* Y1149D01* X4309Y1209D02* Y1149D01* X4341Y1209D02* Y1149D01* X4278D02* Y1209D01* X4246Y1149D02* Y1209D01* X4215Y1149D02* Y1209D01* X4152D02* Y1149D01* X4183Y1209D02* Y1149D01* X4120D02* Y1209D01* X4089Y1149D02* Y1209D01* X4057Y1149D02* Y1209D01* X4026Y1149D02* Y1209D01* X3994Y1149D02* Y1209D01* X3931D02* Y1149D01* X3963Y1209D02* Y1149D01* X3868Y1209D02* Y1149D01* X3900Y1209D02* Y1149D01* X3837D02* Y1209D01* X3805Y1149D02* Y1209D01* X3774Y1149D02* Y1209D01* X3593Y1149D02* Y1209D01* X3561Y1149D02* Y1209D01* X3530Y1149D02* Y1209D01* X3467D02* Y1149D01* X3498Y1209D02* Y1149D01* X3435D02* Y1209D01* X3404Y1149D02* Y1209D01* X3372Y1149D02* Y1209D01* X3309D02* Y1149D01* X3341Y1209D02* Y1149D01* X3278D02* Y1209D01* X3246Y1149D02* Y1209D01* X3215Y1149D02* Y1209D01* X3152D02* Y1149D01* X3183Y1209D02* Y1149D01* X3120D02* Y1209D01* X3089Y1149D02* Y1209D01* X3057Y1149D02* Y1209D01* X3026Y1149D02* Y1209D01* X2994Y1149D02* Y1209D01* X2931D02* Y1149D01* X2963Y1209D02* Y1149D01* X2900D02* Y1209D01* X2868Y1149D02* Y1209D01* X2805D02* Y1149D01* X2837Y1209D02* Y1149D01* X2742Y1209D02* Y1149D01* X2774Y1209D02* Y1149D01* X2711D02* Y1209D01* X2679Y1149D02* Y1209D01* D042* X2850Y1710D02* D03* X2800D02* D03* Y1760D02* D03* X2850D02* D03* X2950D02* D03* Y1810D02* D03* X2900D02* D03* Y1760D02* D03* Y1710D02* D03* X2950D02* D03* X3000D02* D03* Y1760D02* D03* Y1810D02* D03* X3050D02* D03* Y1760D02* D03* X3100D02* D03* Y1810D02* D03* X3050Y1710D02* D03* X3100D02* D03* X3150D02* D03* Y1760D02* D03* Y1810D02* D03* Y1860D02* D03* X3100D02* D03* X3050D02* D03* X3000D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* Y1810D02* D03* X2800D02* D03* Y1860D02* D03* X2850Y1960D02* D03* Y2010D02* D03* X2800D02* D03* Y1960D02* D03* Y1910D02* D03* X2850D02* D03* X2900D02* D03* X2950D02* D03* X3000D02* D03* Y1960D02* D03* Y2010D02* D03* X2950D02* D03* Y1960D02* D03* X2900D02* D03* Y2010D02* D03* X3000Y2060D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* Y2110D02* D03* X2800D02* D03* Y2060D02* D03* Y2160D02* D03* Y2210D02* D03* X2850D02* D03* Y2160D02* D03* X2900Y2110D02* D03* Y2160D02* D03* X2950D02* D03* Y2110D02* D03* X3000D02* D03* Y2160D02* D03* Y2210D02* D03* X2950D02* D03* X2900D02* D03* X2850Y2260D02* D03* X2800D02* D03* X3300Y2310D02* D03* Y2360D02* D03* X3250D02* D03* Y2310D02* D03* Y2260D02* D03* X3300D02* D03* X3350D02* D03* Y2310D02* D03* Y2360D02* D03* X3450D02* D03* X3400D02* D03* Y2260D02* D03* Y2310D02* D03* X3450D02* D03* Y2260D02* D03* Y2160D02* D03* Y2210D02* D03* X3400D02* D03* Y2160D02* D03* X3350D02* D03* Y2210D02* D03* X3300D02* D03* Y2160D02* D03* X3250D02* D03* Y2210D02* D03* Y1960D02* D03* Y1910D02* D03* X3200D02* D03* Y1960D02* D03* X3150D02* D03* Y1910D02* D03* X3050D02* D03* X3100D02* D03* Y1960D02* D03* X3050D02* D03* Y2010D02* D03* Y2060D02* D03* Y2110D02* D03* Y2160D02* D03* X3000Y2260D02* D03* Y2310D02* D03* Y2360D02* D03* X2950D02* D03* Y2310D02* D03* Y2260D02* D03* X2900D02* D03* Y2310D02* D03* Y2360D02* D03* X2850D02* D03* Y2310D02* D03* X2800D02* D03* Y2360D02* D03* X2850Y2410D02* D03* X2800D02* D03* Y2460D02* D03* Y2510D02* D03* X2850D02* D03* Y2460D02* D03* X3000Y2510D02* D03* Y2460D02* D03* X2950D02* D03* Y2510D02* D03* X2900D02* D03* Y2460D02* D03* Y2410D02* D03* X2950D02* D03* X3000D02* D03* X3050Y2360D02* D03* Y2410D02* D03* Y2460D02* D03* Y2510D02* D03* Y2560D02* D03* Y2610D02* D03* X3100D02* D03* Y2560D02* D03* X3150D02* D03* Y2610D02* D03* X3200D02* D03* Y2560D02* D03* X3250D02* D03* Y2610D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* Y2660D02* D03* X3450D02* D03* Y2610D02* D03* Y2560D02* D03* X3500D02* D03* Y2610D02* D03* Y2660D02* D03* Y2710D02* D03* X3450D02* D03* X3400D02* D03* X3350D02* D03* Y2660D02* D03* X3300D02* D03* Y2710D02* D03* X3250D02* D03* Y2660D02* D03* X3200D02* D03* Y2710D02* D03* X3100Y2760D02* D03* Y2810D02* D03* X3050D02* D03* Y2760D02* D03* X3000D02* D03* Y2810D02* D03* X2950D02* D03* Y2760D02* D03* X2900D02* D03* Y2810D02* D03* X2850D02* D03* Y2760D02* D03* X2800D02* D03* Y2810D02* D03* X2850Y2710D02* D03* Y2660D02* D03* X2800D02* D03* Y2710D02* D03* Y2610D02* D03* Y2560D02* D03* X2850D02* D03* Y2610D02* D03* X2900D02* D03* Y2560D02* D03* X2950D02* D03* X3000D02* D03* Y2610D02* D03* X2950D02* D03* Y2660D02* D03* X2900D02* D03* Y2710D02* D03* X2950D02* D03* X3000D02* D03* Y2660D02* D03* X3050D02* D03* Y2710D02* D03* X3100D02* D03* Y2660D02* D03* X3150D02* D03* Y2710D02* D03* Y2760D02* D03* Y2810D02* D03* X3200D02* D03* Y2760D02* D03* X3250D02* D03* Y2810D02* D03* X3300D02* D03* Y2760D02* D03* X3350D02* D03* Y2810D02* D03* X3400D02* D03* Y2760D02* D03* X3450D02* D03* Y2810D02* D03* X3500D02* D03* Y2760D02* D03* X3550D02* D03* Y2810D02* D03* X3600D02* D03* Y2760D02* D03* X3650D02* D03* Y2810D02* D03* X3550Y2710D02* D03* X3600D02* D03* Y2660D02* D03* X3550D02* D03* Y2610D02* D03* Y2560D02* D03* X3600D02* D03* Y2610D02* D03* X3650Y2560D02* D03* Y2610D02* D03* Y2660D02* D03* Y2710D02* D03* X3700Y2810D02* D03* Y2760D02* D03* X3750D02* D03* Y2810D02* D03* X3800D02* D03* Y2760D02* D03* X3850D02* D03* Y2810D02* D03* X3900D02* D03* Y2760D02* D03* Y2710D02* D03* Y2660D02* D03* Y2610D02* D03* Y2560D02* D03* X3850D02* D03* Y2610D02* D03* Y2660D02* D03* X3800D02* D03* Y2610D02* D03* Y2560D02* D03* X3750D02* D03* X3700D02* D03* Y2610D02* D03* X3750D02* D03* Y2660D02* D03* X3700D02* D03* Y2710D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3120Y3320D02* D03* Y3270D02* D03* X3170D02* D03* Y3320D02* D03* X3220D02* D03* Y3270D02* D03* X3270D02* D03* Y3320D02* D03* X3320D02* D03* Y3270D02* D03* X3370D02* D03* Y3320D02* D03* X3420D02* D03* Y3370D02* D03* Y3420D02* D03* X3370Y3470D02* D03* Y3420D02* D03* Y3370D02* D03* X3320D02* D03* Y3420D02* D03* X3270D02* D03* Y3370D02* D03* X3220D02* D03* Y3420D02* D03* X3170D02* D03* Y3370D02* D03* X3120D02* D03* Y3420D02* D03* X3070D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3020D02* D03* X2970D02* D03* Y3320D02* D03* X3020D02* D03* Y3370D02* D03* X2970D02* D03* Y3420D02* D03* X3020D02* D03* X2970Y3470D02* D03* Y3520D02* D03* X3020D02* D03* Y3470D02* D03* X3070D02* D03* Y3520D02* D03* Y3570D02* D03* X3020D02* D03* X2970D02* D03* X3020Y3670D02* D03* Y3620D02* D03* X2970D02* D03* Y3670D02* D03* Y3720D02* D03* X3020D02* D03* X2970Y3770D02* D03* Y3820D02* D03* X3020D02* D03* Y3770D02* D03* X3070D02* D03* Y3820D02* D03* X3120D02* D03* Y3770D02* D03* X3170D02* D03* Y3820D02* D03* X3120Y3720D02* D03* X3070D02* D03* Y3670D02* D03* Y3620D02* D03* X3120D02* D03* Y3670D02* D03* X3170D02* D03* Y3570D02* D03* Y3520D02* D03* X3120D02* D03* Y3570D02* D03* Y3470D02* D03* X3170D02* D03* X3220D02* D03* X3270D02* D03* X3370Y3670D02* D03* Y3720D02* D03* X3320D02* D03* Y3670D02* D03* Y3620D02* D03* X3370D02* D03* X3420D02* D03* Y3670D02* D03* Y3720D02* D03* X3570Y3670D02* D03* X3620D02* D03* Y3720D02* D03* X3670D02* D03* X3720D02* D03* Y3670D02* D03* Y3620D02* D03* X3670Y3670D02* D03* Y3620D02* D03* X3620D02* D03* X3570Y3570D02* D03* Y3520D02* D03* Y3470D02* D03* X3520D02* D03* X3470D02* D03* Y3420D02* D03* X3520D02* D03* X3570D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3520D02* D03* Y3320D02* D03* Y3370D02* D03* X3470D02* D03* Y3320D02* D03* Y3270D02* D03* X3420D02* D03* X3770Y3420D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3670D02* D03* X3620D02* D03* Y3320D02* D03* Y3370D02* D03* X3670D02* D03* Y3320D02* D03* X3720Y3270D02* D03* Y3320D02* D03* Y3370D02* D03* Y3420D02* D03* X3670D02* D03* X3620D02* D03* X3670Y3520D02* D03* Y3470D02* D03* X3620D02* D03* Y3520D02* D03* Y3570D02* D03* X3670D02* D03* X3720D02* D03* Y3520D02* D03* Y3470D02* D03* X3770D02* D03* Y3520D02* D03* Y3570D02* D03* Y3620D02* D03* Y3670D02* D03* Y3720D02* D03* Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* Y3920D02* D03* Y3970D02* D03* Y4020D02* D03* Y4070D02* D03* X3170Y4020D02* D03* Y4070D02* D03* X3120D02* D03* Y4020D02* D03* Y3970D02* D03* X3170D02* D03* X3220D02* D03* Y4020D02* D03* Y4070D02* D03* X3270D02* D03* X3320D02* D03* X3370D02* D03* X3420D02* D03* X3470D02* D03* Y4020D02* D03* Y3970D02* D03* X3520D02* D03* Y4020D02* D03* Y4070D02* D03* X3570D02* D03* Y4020D02* D03* Y3970D02* D03* X3620Y4020D02* D03* Y3970D02* D03* X3670D02* D03* Y4020D02* D03* X3620Y4070D02* D03* X3670D02* D03* X3720D02* D03* Y4020D02* D03* Y3970D02* D03* X3620Y3920D02* D03* Y3870D02* D03* X3670D02* D03* Y3920D02* D03* X3720D02* D03* Y3870D02* D03* Y3820D02* D03* Y3770D02* D03* X3670Y3820D02* D03* Y3770D02* D03* X3620D02* D03* Y3820D02* D03* X3570Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* Y3920D02* D03* X3520Y3870D02* D03* Y3920D02* D03* X3470D02* D03* Y3870D02* D03* X3420Y3920D02* D03* Y3970D02* D03* Y4020D02* D03* X3370D02* D03* Y3970D02* D03* X3320D02* D03* Y4020D02* D03* X3270D02* D03* Y3970D02* D03* X3370Y3870D02* D03* Y3920D02* D03* X3320D02* D03* X3270D02* D03* Y3870D02* D03* X3220D02* D03* Y3920D02* D03* X3170D02* D03* Y3870D02* D03* X3120D02* D03* Y3920D02* D03* X3070D02* D03* Y3870D02* D03* X3020D02* D03* Y3920D02* D03* X2970D02* D03* Y3870D02* D03* Y3970D02* D03* X3020D02* D03* X3070D02* D03* Y4020D02* D03* Y4070D02* D03* X3020D02* D03* Y4020D02* D03* X2970D02* D03* Y4070D02* D03* D017* X2508Y4089D02* Y4041D01* X2558Y4089D02* Y4041D01* X2608Y4089D02* Y4041D01* X2658Y4089D02* Y4041D01* Y3865D02* Y3817D01* X2608Y3865D02* Y3817D01* X2558Y3865D02* Y3817D01* X2508Y3865D02* Y3817D01* D022* X2035Y4418D02* Y4382D01* X2009Y4479D02* Y4542D01* X1891D02* Y4479D01* X1885Y4382D02* Y4418D01* Y3958D02* Y3922D01* X2035Y3958D02* Y3922D01* X2870Y2927D02* Y2947D01* X2791Y2927D02* Y2947D01* X1890Y2890D02* X1953D01* X1890Y2772D02* X1953D01* X1854Y2469D02* Y2406D01* X1736Y2469D02* Y2406D01* X1689Y2455D02* Y2419D01* X1539Y2455D02* Y2419D01* X1717Y1987D02* Y1951D01* X1720Y1864D02* Y1884D01* X1799Y1864D02* Y1884D01* X1866Y1951D02* Y1987D01* X1929Y1964D02* Y2004D01* X2055Y1964D02* Y2004D01* X2224D02* Y1964D01* X2350Y2004D02* Y1964D01* X4043Y2271D02* Y2311D01* X4169Y2271D02* Y2311D01* X3891Y3510D02* Y3490D01* X3969Y3510D02* Y3490D01* X5027Y3499D02* Y3459D01* X5031Y3374D02* Y3354D01* X5153Y3499D02* Y3459D01* X5109Y3374D02* Y3354D01* X5165Y3319D02* X5185D01* X5165Y3240D02* X5185D01* X5275Y3236D02* X5315D01* X5410Y3240D02* X5430D01* X5490D02* X5510D01* X5592Y3254D02* Y3294D01* X5510Y3319D02* X5490D01* X5430D02* X5410D01* X5315Y3362D02* X5275D01* X5031Y4009D02* Y3989D01* Y3919D02* Y3899D01* X5027Y3824D02* Y3784D01* X5031Y3704D02* Y3684D01* Y3609D02* Y3589D01* X5109D02* Y3609D01* Y3684D02* Y3704D01* X5153Y3784D02* Y3824D01* X5109Y3899D02* Y3919D01* Y3989D02* Y4009D01* X5135Y4066D02* X5175D01* X5450Y4126D02* X5410D01* X5340Y4170D02* X5320D01* X5255D02* X5235D01* X5175Y4192D02* X5135D01* X5235Y4249D02* X5255D01* X5320D02* X5340D01* X5410Y4252D02* X5450D01* X5850D02* X5810D01* X5700Y4249D02* X5680D01* X5600D02* X5580D01* Y4170D02* X5600D01* X5680D02* X5700D01* X5810Y4126D02* X5850D01* X5917Y4109D02* Y4069D01* X5961Y3964D02* Y3944D01* Y3864D02* Y3844D01* X5915Y3319D02* X5895D01* X5820D02* X5800D01* X5718Y3294D02* Y3254D01* X5800Y3240D02* X5820D01* X5895D02* X5915D01* X6030Y3271D02* X5990D01* X6030Y3397D02* X5990D01* X5961Y3504D02* Y3524D01* X6039Y3504D02* Y3524D01* Y3609D02* Y3629D01* X5961Y3609D02* Y3629D01* X5917Y3714D02* Y3754D01* X6043Y3714D02* Y3754D01* X6039Y3844D02* Y3864D01* Y3944D02* Y3964D01* X6043Y4069D02* Y4109D01* X5995Y4170D02* X5975D01* X5995Y4249D02* X5975D01* X6736Y4258D02* Y4238D01* X6815Y4258D02* Y4238D01* X6764Y3408D02* Y3388D01* X6843Y3408D02* Y3388D01* D016* X2330Y2374D02* X2358D01* X2330Y2343D02* X2358D01* X2330Y2311D02* X2358D01* X2330Y2280D02* X2358D01* X2405D02* X2433D01* X2405Y2311D02* X2433D01* X2405Y2343D02* X2433D01* X2405Y2374D02* X2433D01* X2571Y2343D02* X2543D01* X2571Y2311D02* X2543D01* X2571Y2280D02* X2543D01* X2571Y2248D02* X2543D01* Y2197D02* X2571D01* X2543Y2165D02* X2571D01* X2543Y2134D02* X2571D01* X2543Y2102D02* X2571D01* X2618D02* X2646D01* X2618Y2134D02* X2646D01* X2618Y2165D02* X2646D01* X2618Y2197D02* X2646D01* Y2248D02* X2618D01* X2646Y2280D02* X2618D01* X2646Y2311D02* X2618D01* X2646Y2343D02* X2618D01* X5749Y3637D02* X5777D01* X5749Y3669D02* X5777D01* X5749Y3700D02* X5777D01* X5749Y3732D02* X5777D01* X5823D02* X5851D01* X5823Y3700D02* X5851D01* X5823Y3669D02* X5851D01* X5823Y3637D02* X5851D01* X5818Y3576D02* Y3548D01* X5849Y3576D02* Y3548D01* X5881Y3576D02* Y3548D01* X5912Y3576D02* Y3548D01* Y3501D02* Y3473D01* X5881D02* Y3501D01* X5849Y3473D02* Y3501D01* X5818Y3473D02* Y3501D01* X7142Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* X7142Y3130D02* X7170D01* X7142Y3161D02* X7170D01* X7142Y3193D02* X7170D01* X7142Y3224D02* X7170D01* X7216D02* X7244D01* X7216Y3193D02* X7244D01* X7216Y3161D02* X7244D01* X7216Y3130D02* X7244D01* Y3079D02* X7216D01* X7244Y3047D02* X7216D01* X7244Y3016D02* X7216D01* X7244Y2984D02* X7216D01* X7170D02* X7142D01* X7170Y3016D02* X7142D01* X7170Y3047D02* X7142D01* X7170Y3079D02* X7142D01* X7244Y2717D02* X7216D01* X7244Y2748D02* X7216D01* X7244Y2780D02* X7216D01* X7244Y2811D02* X7216D01* X7170D02* X7142D01* X7170Y2780D02* X7142D01* X7170Y2748D02* X7142D01* X7170Y2717D02* X7142D01* Y2665D02* X7170D01* X7142Y2634D02* X7170D01* X7142Y2602D02* X7170D01* X7142Y2571D02* X7170D01* X7216D02* X7244D01* X7216Y2602D02* X7244D01* X7216Y2634D02* X7244D01* X7216Y2665D02* X7244D01* X7142Y2425D02* X7170D01* X7142Y2457D02* X7170D01* X7142Y2488D02* X7170D01* X7142Y2520D02* X7170D01* X7216D02* X7244D01* X7216Y2488D02* X7244D01* X7216Y2457D02* X7244D01* X7216Y2425D02* X7244D01* Y2374D02* X7216D01* X7244Y2343D02* X7216D01* X7244Y2311D02* X7216D01* X7244Y2280D02* X7216D01* X7170D02* X7142D01* X7170Y2311D02* X7142D01* X7170Y2343D02* X7142D01* X7170Y2374D02* X7142D01* X7244Y2134D02* X7216D01* X7244Y2165D02* X7216D01* X7244Y2197D02* X7216D01* X7244Y2228D02* X7216D01* X7170D02* X7142D01* X7170Y2197D02* X7142D01* X7170Y2165D02* X7142D01* X7170Y2134D02* X7142D01* Y2083D02* X7170D01* X7142Y2051D02* X7170D01* X7142Y2020D02* X7170D01* X7142Y1988D02* X7170D01* X7216D02* X7244D01* X7216Y2020D02* X7244D01* X7216Y2051D02* X7244D01* X7216Y2083D02* X7244D01* Y1843D02* X7216D01* X7244Y1874D02* X7216D01* X7244Y1906D02* X7216D01* X7244Y1937D02* X7216D01* X7170D02* X7142D01* X7170Y1906D02* X7142D01* X7170Y1874D02* X7142D01* X7170Y1843D02* X7142D01* Y1791D02* X7170D01* X7142Y1760D02* X7170D01* X7142Y1728D02* X7170D01* X7142Y1697D02* X7170D01* X7216D02* X7244D01* X7216Y1728D02* X7244D01* X7216Y1760D02* X7244D01* X7216Y1791D02* X7244D01* X7142Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* X7142Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X7216Y4535D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7142Y4587D02* X7170D01* X7142Y4618D02* X7170D01* X7142Y4650D02* X7170D01* X7142Y4681D02* X7170D01* X7216D02* X7244D01* X7216Y4650D02* X7244D01* X7216Y4618D02* X7244D01* X7216Y4587D02* X7244D01* D029* X2538Y2534D02* X2541D01* X2373D02* X2376D01* X2253D02* X2250D01* X2088D02* X2085D01* Y2734D02* X2088D01* X2250D02* X2253D01* X2376D02* X2373D01* X2541D02* X2538D01* D367* X2293Y3409D02* D03* X2254D02* D03* Y3448D02* D03* X2293D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2254D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2333D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2372D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2333D02* D03* Y3409D02* D03* X2372D02* D03* X2333Y3370D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* X2254D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2293D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2254D02* D03* Y3094D02* D03* X2293D02* D03* X2372D02* D03* X2333D02* D03* Y3133D02* D03* X2372D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2412D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* Y3094D02* D03* X2451D02* D03* X2490Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2451D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2490D02* D03* Y3094D02* D03* X2530D02* D03* Y3133D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2569D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* Y3094D02* D03* X2608D02* D03* Y3133D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2648D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* X2727D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2687D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2648D02* D03* Y3094D02* D03* X2687D02* D03* X2766D02* D03* X2727D02* D03* Y3133D02* D03* X2766D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* Y3409D02* D03* X2727D02* D03* Y3448D02* D03* X2766D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2727Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2687D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2648D02* D03* Y3409D02* D03* X2687D02* D03* X2608D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2648D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2569Y3409D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2530D02* D03* X2490D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2451Y3409D02* D03* X2412D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2451D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2490D02* D03* Y3409D02* D03* X2530D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* D014* X4026Y3593D02* X4100D01* X4026Y3618D02* X4100D01* Y3568D02* X4026D01* X4100Y3543D02* X4026D01* X4100Y3518D02* X4026D01* Y3468D02* X4100D01* X4026Y3493D02* X4100D01* X4026Y3418D02* X4100D01* X4026Y3443D02* X4100D01* Y3393D02* X4026D01* X4100Y3368D02* X4026D01* Y3318D02* X4100D01* X4026Y3343D02* X4100D01* Y3293D02* X4026D01* X4100Y3268D02* X4026D01* X4100Y3243D02* X4026D01* X4100Y3218D02* X4026D01* X4100Y3193D02* X4026D01* Y3143D02* X4100D01* X4026Y3168D02* X4100D01* X4026Y3093D02* X4100D01* X4026Y3118D02* X4100D01* Y3068D02* X4026D01* X4100Y3043D02* X4026D01* Y2993D02* X4100D01* X4026Y3018D02* X4100D01* Y2968D02* X4026D01* X4100Y2943D02* X4026D01* X4400D02* X4474D01* X4400Y2968D02* X4474D01* Y3018D02* X4400D01* X4474Y2993D02* X4400D01* Y3043D02* X4474D01* X4400Y3068D02* X4474D01* Y3118D02* X4400D01* X4474Y3093D02* X4400D01* X4474Y3168D02* X4400D01* X4474Y3143D02* X4400D01* Y3193D02* X4474D01* X4400Y3218D02* X4474D01* X4400Y3243D02* X4474D01* X4400Y3268D02* X4474D01* X4400Y3293D02* X4474D01* Y3343D02* X4400D01* X4474Y3318D02* X4400D01* Y3368D02* X4474D01* X4400Y3393D02* X4474D01* Y3443D02* X4400D01* X4474Y3418D02* X4400D01* X4474Y3493D02* X4400D01* X4474Y3468D02* X4400D01* Y3518D02* X4474D01* X4400Y3543D02* X4474D01* X4400Y3568D02* X4474D01* Y3618D02* X4400D01* X4474Y3593D02* X4400D01* D024* X4275Y3702D02* X4251D01* X4149D02* X4125D01* Y3918D02* X4149D01* X4251D02* X4275D01* D100* X2040Y1632D02* D03* X2062D02* D03* X2119D02* D03* X2141D02* D03* Y1707D02* D03* X2119D02* D03* X2695Y1531D02* D03* X2727D02* D03* X2758D02* D03* X2790D02* D03* X2821D02* D03* X2853D02* D03* X2884D02* D03* X2916D02* D03* X2947D02* D03* X2979D02* D03* X3010D02* D03* X3042D02* D03* X3073D02* D03* X3105D02* D03* X3136D02* D03* X3168D02* D03* X3199D02* D03* X3231D02* D03* X3262D02* D03* X3294D02* D03* X3325D02* D03* X3357D02* D03* X3388D02* D03* X3420D02* D03* X3451D02* D03* X3483D02* D03* X3514D02* D03* X3546D02* D03* X3577D02* D03* X3609D02* D03* Y1471D02* D03* X3577D02* D03* X3546D02* D03* X3514D02* D03* X3483D02* D03* X3451D02* D03* X3420D02* D03* X3388D02* D03* X3357D02* D03* X3325D02* D03* X3294D02* D03* X3262D02* D03* X3231D02* D03* X3199D02* D03* X3168D02* D03* X3136D02* D03* X3105D02* D03* X3073D02* D03* X3042D02* D03* X3010D02* D03* X2979D02* D03* X2947D02* D03* X2916D02* D03* X2884D02* D03* X2853D02* D03* X2821D02* D03* X2790D02* D03* X2758D02* D03* X2727D02* D03* X2695D02* D03* X3593Y1209D02* D03* X3561D02* D03* X3530D02* D03* X3498D02* D03* X3467D02* D03* X3435D02* D03* X3404D02* D03* X3372D02* D03* X3341D02* D03* X3309D02* D03* X3278D02* D03* X3246D02* D03* X3215D02* D03* X3183D02* D03* X3152D02* D03* X3120D02* D03* X3089D02* D03* X3057D02* D03* X3026D02* D03* X2994D02* D03* X2963D02* D03* X2931D02* D03* X2900D02* D03* X2868D02* D03* X2837D02* D03* X2805D02* D03* X2774D02* D03* X2742D02* D03* X2711D02* D03* X2679D02* D03* Y1149D02* D03* X2711D02* D03* X2742D02* D03* X2774D02* D03* X2805D02* D03* X2837D02* D03* X2868D02* D03* X2900D02* D03* X2931D02* D03* X2963D02* D03* X2994D02* D03* X3026D02* D03* X3057D02* D03* X3089D02* D03* X3120D02* D03* X3152D02* D03* X3183D02* D03* X3215D02* D03* X3246D02* D03* X3278D02* D03* X3309D02* D03* X3341D02* D03* X3372D02* D03* X3404D02* D03* X3435D02* D03* X3467D02* D03* X3498D02* D03* X3530D02* D03* X3561D02* D03* X3593D02* D03* X4971D02* D03* X4939D02* D03* X4908D02* D03* X4876D02* D03* X4845D02* D03* X4813D02* D03* X4782D02* D03* X4750D02* D03* X4719D02* D03* X4687D02* D03* X4656D02* D03* X4624D02* D03* X4593D02* D03* X4561D02* D03* X4530D02* D03* X4498D02* D03* X4467D02* D03* X4435D02* D03* X4404D02* D03* X4372D02* D03* X4341D02* D03* X4309D02* D03* X4278D02* D03* X4246D02* D03* X4215D02* D03* X4183D02* D03* X4152D02* D03* X4120D02* D03* X4089D02* D03* X4057D02* D03* X4026D02* D03* X3994D02* D03* X3963D02* D03* X3931D02* D03* X3900D02* D03* X3868D02* D03* X3837D02* D03* X3805D02* D03* X3774D02* D03* Y1209D02* D03* X3805D02* D03* X3837D02* D03* X3868D02* D03* X3900D02* D03* X3931D02* D03* X3963D02* D03* X3994D02* D03* X4026D02* D03* X4057D02* D03* X4089D02* D03* X4120D02* D03* X4152D02* D03* X4183D02* D03* X4215D02* D03* X4246D02* D03* X4278D02* D03* X4309D02* D03* X4341D02* D03* X4372D02* D03* X4404D02* D03* X4435D02* D03* X4467D02* D03* X4498D02* D03* X4530D02* D03* X4561D02* D03* X4593D02* D03* X4624D02* D03* X4656D02* D03* X4687D02* D03* X4719D02* D03* X4750D02* D03* X4782D02* D03* X4813D02* D03* X4845D02* D03* X4876D02* D03* X4908D02* D03* X4939D02* D03* X4971D02* D03* X5002D02* D03* X5034D02* D03* X5065D02* D03* Y1149D02* D03* X5034D02* D03* X5002D02* D03* X5081Y1471D02* D03* X5049D02* D03* X5018D02* D03* X4986D02* D03* X4955D02* D03* X4923D02* D03* X4892D02* D03* X4860D02* D03* X4829D02* D03* X4797D02* D03* X4766D02* D03* X4734D02* D03* X4703D02* D03* X4671D02* D03* X4640D02* D03* X4609D02* D03* X4577D02* D03* X4546D02* D03* X4514D02* D03* X4483D02* D03* X4451D02* D03* X4420D02* D03* X4388D02* D03* X4357D02* D03* X4325D02* D03* X4294D02* D03* X4262D02* D03* X4231D02* D03* X4199D02* D03* X4168D02* D03* X4136D02* D03* X4105D02* D03* X4073D02* D03* X4042D02* D03* X4010D02* D03* X3979D02* D03* X3947D02* D03* X3916D02* D03* X3884D02* D03* X3853D02* D03* X3821D02* D03* X3790D02* D03* Y1531D02* D03* X3821D02* D03* X3853D02* D03* X3884D02* D03* X3916D02* D03* X3947D02* D03* X3979D02* D03* X4010D02* D03* X4042D02* D03* X4073D02* D03* X4105D02* D03* X4136D02* D03* X4168D02* D03* X4199D02* D03* X4231D02* D03* X4262D02* D03* X4294D02* D03* X4325D02* D03* X4357D02* D03* X4388D02* D03* X4420D02* D03* X4451D02* D03* X4483D02* D03* X4514D02* D03* X4546D02* D03* X4577D02* D03* X4609D02* D03* X4640D02* D03* X4671D02* D03* X4703D02* D03* X4734D02* D03* X4766D02* D03* X4797D02* D03* X4829D02* D03* X4860D02* D03* X4892D02* D03* X4923D02* D03* X4955D02* D03* X4986D02* D03* X5018D02* D03* X5049D02* D03* X5081D02* D03* D074* X1736Y2469D02* D03* Y2406D02* D03* X1854D02* D03* Y2469D02* D03* X1890Y2772D02* D03* X1953D02* D03* Y2890D02* D03* X1890D02* D03* X1891Y4542D02* D03* Y4479D02* D03* X2009D02* D03* Y4542D02* D03* D082* X2541Y2534D02* D03* X2538D02* D03* X2376D02* D03* X2373D02* D03* X2253D02* D03* X2250D02* D03* X2088D02* D03* X2085D02* D03* Y2734D02* D03* X2088D02* D03* X2250D02* D03* X2253D02* D03* X2373D02* D03* X2376D02* D03* X2538D02* D03* X2541D02* D03* D072* X2437Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2371D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2283D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2217D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* D086* X2098Y1167D02* D03* Y1352D02* D03* X2957Y2950D02* D03* X3143D02* D03* X4258Y2291D02* D03* X4443D02* D03* X4778D02* D03* X4963D02* D03* X5368Y1201D02* D03* X5553D02* D03* X6657Y3364D02* D03* Y3549D02* D03* D084* X1839Y1162D02* D03* Y1310D02* D03* D087* X1950Y4292D02* D03* Y4048D02* D03* X5437Y2063D02* D03* X5681D02* D03* M02*gerbv-2.7.0/example/ekf2/gnd.grb0000644000175000017500000050245513421555714016255 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1849Y3248D02* X1426D01* X1849Y3244D02* X1426D01* Y3236D02* X1849D01* X1426Y3240D02* X1849D01* Y3224D02* X1426D01* X1849Y3228D02* X1426D01* X1849Y3232D02* X1426D01* Y3252D02* X1849D01* X1426Y3256D02* X1849D01* Y3260D02* X1426D01* X1849Y3264D02* X1426D01* X1849Y3268D02* X1426D01* Y3276D02* X1849D01* X1426Y3272D02* X1849D01* Y3280D02* X1426D01* X1849Y3284D02* X1426D01* Y3308D02* X1849D01* X1426Y3312D02* X1849D01* X1426Y3316D02* X1849D01* Y3320D02* X1426D01* X1849Y3324D02* X1426D01* Y3332D02* X1849D01* X1426Y3328D02* X1849D01* Y3304D02* X1426D01* X1849Y3300D02* X1426D01* Y3296D02* X1849D01* X1426Y3292D02* X1849D01* X1426Y3288D02* X1849D01* Y3536D02* X1426D01* X1676Y3736D02* X1426D01* X1676Y3732D02* X1426D01* Y3740D02* X1676D01* X1426Y3632D02* X1849D01* X1426Y3628D02* X1849D01* X1426Y3636D02* X1849D01* Y3644D02* X1426D01* X1849Y3640D02* X1426D01* X1676Y3688D02* X1426D01* X1676Y3684D02* X1426D01* Y3680D02* X1676D01* X1426Y3544D02* X1849D01* X1426Y3540D02* X1849D01* Y3556D02* X1426D01* X1849Y3552D02* X1426D01* X1849Y3548D02* X1426D01* Y3564D02* X1849D01* X1426Y3560D02* X1849D01* X2002Y3745D02* X1994Y3750D01* X2002Y3745D02* X2008Y3736D01* X1849Y3496D02* X1426D01* X1849Y3492D02* X1426D01* Y3484D02* X1849D01* X1426Y3488D02* X1849D01* Y3508D02* X1426D01* X1849Y3500D02* X1426D01* X1849Y3504D02* X1426D01* X1676Y3744D02* X1426D01* Y3748D02* X1676D01* X1426Y3440D02* X1849D01* X1426Y3436D02* X1849D01* X1426Y3444D02* X1849D01* Y3380D02* X1426D01* X1849Y3376D02* X1426D01* X1849Y3372D02* X1426D01* Y3356D02* X1849D01* X1426Y3360D02* X1849D01* Y3364D02* X1426D01* X1849Y3368D02* X1426D01* X1677Y3656D02* X1426D01* X1676Y3660D02* X1426D01* Y3664D02* X1676D01* X1426Y3608D02* X1849D01* X1426Y3604D02* X1849D01* Y3612D02* X1426D01* X1849Y3616D02* X1426D01* X1676Y3760D02* X1426D01* X1676Y3764D02* X1426D01* Y3772D02* X1676D01* X1426Y3768D02* X1676D01* X1426Y3952D02* X1802D01* X1426Y3956D02* X1802D01* Y3948D02* X1426D01* X1802Y3944D02* X1426D01* X1676Y3844D02* X1426D01* Y3848D02* X1676D01* X1677Y3850D02* Y3657D01* X1426Y3432D02* X1849D01* X1426Y3428D02* X1849D01* Y3424D02* X1426D01* X1849Y3420D02* X1426D01* Y3940D02* X1802D01* X1426Y3936D02* X1802D01* X1426Y3932D02* X1802D01* Y3924D02* X1426D01* X1802Y3928D02* X1426D01* X1676Y3828D02* X1426D01* Y3824D02* X1676D01* X1426Y4056D02* X1802D01* X1426Y4052D02* X1802D01* Y4044D02* X1426D01* X1802Y4048D02* X1426D01* X1676Y3784D02* X1426D01* X1676Y3788D02* X1426D01* Y3780D02* X1676D01* X1426Y3888D02* X1802D01* X1426Y3892D02* X1802D01* Y3876D02* X1426D01* X1802Y3872D02* X1426D01* X1802Y3868D02* X1426D01* Y3852D02* X1678D01* X1426Y4040D02* X1802D01* X1426Y4036D02* X1802D01* Y4032D02* X1426D01* X1802Y4028D02* X1426D01* Y4004D02* X1802D01* X1426Y4000D02* X1802D01* X1426Y3996D02* X1802D01* Y3988D02* X1426D01* X1802Y3992D02* X1426D01* X1676Y3832D02* X1426D01* Y3820D02* X1676D01* X1426Y3816D02* X1676D01* X1426Y3896D02* X1802D01* Y3904D02* X1426D01* X1802Y3900D02* X1426D01* Y3908D02* X1802D01* X1426Y3912D02* X1802D01* X1966Y3744D02* X1961Y3736D01* X1966Y3744D02* X1974Y3750D01* X1802Y3880D02* X1426D01* X1802Y3884D02* X1426D01* Y3812D02* X1676D01* X1426Y4024D02* X1802D01* Y4020D02* X1426D01* X1802Y4016D02* X1426D01* X1676Y3776D02* X1426D01* Y3756D02* X1676D01* X1426Y3752D02* X1676D01* X1426Y3568D02* X1849D01* X1426Y3572D02* X1849D01* Y3600D02* X1426D01* X1676Y3712D02* X1426D01* Y3716D02* X1676D01* X1426Y3472D02* X1849D01* Y3476D02* X1426D01* X1849Y3480D02* X1426D01* X1676Y3668D02* X1426D01* X1676Y3672D02* X1426D01* Y3676D02* X1676D01* X1426Y3416D02* X1849D01* X1426Y3412D02* X1849D01* Y3408D02* X1426D01* X1676Y3728D02* X1426D01* X1676Y3724D02* X1426D01* Y3720D02* X1676D01* X1677Y3657D02* X1681Y3653D01* X1426Y3352D02* X1849D01* Y3344D02* X1426D01* X1849Y3348D02* X1426D01* Y3340D02* X1849D01* X1426Y3336D02* X1849D01* X1681Y3653D02* X1850D01* X1849Y3648D02* X1426D01* X1849Y3652D02* X1426D01* Y3620D02* X1849D01* X1426Y3624D02* X1849D01* X2002Y3709D02* X2008Y3716D01* X2002Y3709D02* X1994Y3703D01* X1849Y3528D02* X1426D01* X1849Y3532D02* X1426D01* Y3524D02* X1849D01* X1426Y3520D02* X1849D01* Y3516D02* X1426D01* X1849Y3512D02* X1426D01* X1676Y3696D02* X1426D01* Y3700D02* X1676D01* X1426Y3448D02* X1849D01* X1426Y3452D02* X1849D01* Y3456D02* X1426D01* X1849Y3460D02* X1426D01* Y3468D02* X1849D01* X1426Y3464D02* X1849D01* X1966Y3708D02* X1974Y3703D01* X1966Y3708D02* X1961Y3716D01* X1849Y3400D02* X1426D01* X1849Y3404D02* X1426D01* Y3396D02* X1849D01* X1426Y3392D02* X1849D01* Y3388D02* X1426D01* X1849Y3384D02* X1426D01* X1676Y3692D02* X1426D01* Y3708D02* X1676D01* X1426Y3704D02* X1676D01* X1426Y3576D02* X1849D01* X1426Y3580D02* X1849D01* Y3584D02* X1426D01* X1849Y3588D02* X1426D01* Y3596D02* X1849D01* X1426Y3592D02* X1849D01* X1850Y3653D02* Y2917D01* X1849Y2920D02* X1426D01* X1534Y2744D02* X1426D01* Y2740D02* X1534D01* X1426Y2792D02* X1715D01* X1426Y2796D02* X1715D01* X1426Y3052D02* X1849D01* Y2964D02* X1426D01* X1715Y2764D02* X1426D01* X1638Y2583D02* X1539D01* X1637Y2440D02* X1426D01* X1637Y2436D02* X1426D01* Y2428D02* X1637D01* X1426Y2432D02* X1637D01* Y2424D02* X1426D01* X1534Y2272D02* X1426D01* Y2268D02* X1534D01* X1426Y2296D02* X1637D01* X1638Y2291D02* Y2583D01* X1637Y2568D02* X1426D01* X1637Y2564D02* X1426D01* Y2556D02* X1637D01* X1426Y2560D02* X1637D01* Y2516D02* X1426D01* X1637Y2508D02* X1426D01* X1637Y2512D02* X1426D01* X1534Y2620D02* X1426D01* Y2624D02* X1534D01* X1426Y2480D02* X1637D01* X1426Y2484D02* X1637D01* Y2488D02* X1426D01* X1534Y2596D02* X1426D01* Y2604D02* X1534D01* X1426Y2600D02* X1534D01* X1426Y2552D02* X1637D01* X1426Y2548D02* X1637D01* Y2544D02* X1426D01* X1534Y2628D02* X1426D01* Y2632D02* X1534D01* X1535Y2587D02* X1539Y2583D01* X1426Y2456D02* X1637D01* X1426Y2460D02* X1637D01* Y2452D02* X1426D01* X1637Y2444D02* X1426D01* X1637Y2448D02* X1426D01* X1534Y2616D02* X1426D01* X1534Y2612D02* X1426D01* Y2608D02* X1534D01* X1426Y2576D02* X1637D01* X1426Y2572D02* X1637D01* X1426Y2932D02* X1849D01* Y2936D02* X1426D01* X1534Y2708D02* X1426D01* Y2704D02* X1534D01* X1426Y2808D02* X1715D01* X1426Y3116D02* X1849D01* Y3120D02* X1426D01* X1715Y2872D02* X1426D01* X1534Y2720D02* X1426D01* Y2716D02* X1534D01* X1426Y2712D02* X1534D01* X1426Y3000D02* X1849D01* Y2996D02* X1426D01* X1716Y2760D02* Y2913D01* X1849Y2952D02* X1426D01* Y2852D02* X1715D01* X1426Y3040D02* X1849D01* Y3036D02* X1426D01* X1715Y2784D02* X1426D01* X1534Y2648D02* X1426D01* X1534Y2652D02* X1426D01* Y2656D02* X1534D01* X1426Y2660D02* X1534D01* X1426Y2848D02* X1715D01* X1426Y3136D02* X1849D01* X1426Y3132D02* X1849D01* X1426Y3140D02* X1849D01* Y3148D02* X1426D01* X1849Y3144D02* X1426D01* X1718Y2916D02* X1426D01* Y2912D02* X1715D01* X1426Y3112D02* X1849D01* X1426Y3108D02* X1849D01* Y3124D02* X1426D01* X1849Y3128D02* X1426D01* X1715Y2896D02* X1426D01* Y2900D02* X1715D01* X1426Y3032D02* X1849D01* Y3044D02* X1426D01* X1849Y3048D02* X1426D01* X1715Y2908D02* X1426D01* Y2904D02* X1715D01* X1426Y3160D02* X1849D01* Y3156D02* X1426D01* X1849Y3152D02* X1426D01* X1715Y2880D02* X1426D01* Y2876D02* X1715D01* X1426Y3024D02* X1849D01* Y3028D02* X1426D01* X1715Y2760D02* X1426D01* X1534Y2752D02* X1426D01* Y2748D02* X1534D01* X1426Y2984D02* X1849D01* X1426Y2980D02* X1849D01* Y2976D02* X1426D01* X1715Y2856D02* X1426D01* X1535Y2756D02* X1539Y2760D01* X1534Y2728D02* X1426D01* Y2724D02* X1534D01* X1426Y2776D02* X1715D01* X1426Y2780D02* X1715D01* X1426Y3004D02* X1849D01* Y3012D02* X1426D01* X1849Y3008D02* X1426D01* X1715Y2844D02* X1426D01* Y2836D02* X1715D01* X1426Y3072D02* X1849D01* X1426Y3076D02* X1849D01* Y3068D02* X1426D01* X1715Y2768D02* X1426D01* X1534Y2688D02* X1426D01* Y2684D02* X1534D01* X1426Y2864D02* X1715D01* X1426Y3056D02* X1849D01* Y3060D02* X1426D01* X1849Y3064D02* X1426D01* X1715Y2888D02* X1426D01* X1535Y2756D02* X1426D01* Y2772D02* X1715D01* X1426Y2940D02* X1849D01* Y2948D02* X1426D01* X1849Y2944D02* X1426D01* X1715Y2840D02* X1426D01* X1534Y2736D02* X1426D01* Y2732D02* X1534D01* X1426Y2968D02* X1849D01* Y2972D02* X1426D01* X1715Y2788D02* X1426D01* X1637Y2524D02* X1426D01* X1637Y2520D02* X1426D01* X1534Y2592D02* X1426D01* Y2588D02* X1534D01* X1426Y2536D02* X1637D01* X1426Y2540D02* X1637D01* Y2532D02* X1426D01* X1637Y2528D02* X1426D01* X1534Y2640D02* X1426D01* X1534Y2644D02* X1426D01* Y2636D02* X1534D01* X1426Y2464D02* X1637D01* X1426Y2468D02* X1637D01* Y2476D02* X1426D01* X1637Y2472D02* X1426D01* X1535Y2587D02* Y2756D01* X1534Y2696D02* X1426D01* Y2700D02* X1534D01* X1426Y2832D02* X1715D01* X1426Y3084D02* X1849D01* Y3092D02* X1426D01* X1849Y3088D02* X1426D01* X1715Y2884D02* X1426D01* Y2892D02* X1715D01* X1426Y3192D02* X1849D01* X1426Y3188D02* X1849D01* Y3184D02* X1426D01* X1849Y3180D02* X1426D01* Y3164D02* X1849D01* X1426Y3168D02* X1849D01* Y3172D02* X1426D01* X1849Y3176D02* X1426D01* X1716Y2913D02* X1720Y2917D01* X1849Y3208D02* X1426D01* X1849Y3212D02* X1426D01* Y3220D02* X1849D01* X1426Y3216D02* X1849D01* Y3196D02* X1426D01* X1849Y3200D02* X1426D01* X1849Y3204D02* X1426D01* Y3080D02* X1849D01* X1850Y2917D02* X1720D01* X1426Y3096D02* X1849D01* X1426Y3100D02* X1849D01* Y3104D02* X1426D01* X1715Y2860D02* X1426D01* Y2868D02* X1715D01* X1426Y2992D02* X1849D01* Y2988D02* X1426D01* X1715Y2804D02* X1426D01* Y2812D02* X1715D01* X1426Y2816D02* X1715D01* X1426Y3020D02* X1849D01* Y3016D02* X1426D01* X1539Y2760D02* X1716D01* X1715Y2824D02* X1426D01* X1715Y2828D02* X1426D01* Y2820D02* X1715D01* X1426Y2956D02* X1849D01* Y2960D02* X1426D01* X1534Y2692D02* X1426D01* Y2672D02* X1534D01* X1426Y2676D02* X1534D01* X1426Y2680D02* X1534D01* X1426Y2928D02* X1849D01* Y2924D02* X1426D01* X1715Y2800D02* X1426D01* X1534Y2664D02* X1426D01* X1534Y2668D02* X1426D01* Y2580D02* X1637D01* X1426Y2584D02* X1537D01* X1426Y2504D02* X1637D01* X1426Y2500D02* X1637D01* Y2496D02* X1426D01* X1637Y2492D02* X1426D01* Y2372D02* X1637D01* X1426Y2376D02* X1637D01* X1539Y2291D02* X1535Y2287D01* X1426Y2408D02* X1637D01* X1426Y2412D02* X1637D01* Y2420D02* X1426D01* X1637Y2416D02* X1426D01* X1534Y2244D02* X1426D01* Y2248D02* X1534D01* X1535Y2287D02* Y2114D01* X1426Y2072D02* X1637D01* Y2068D02* X1426D01* X1534Y2160D02* X1426D01* X1534Y2164D02* X1426D01* Y2172D02* X1534D01* X1426Y2168D02* X1534D01* X1426Y2324D02* X1637D01* Y2328D02* X1426D01* X1534Y2280D02* X1426D01* X1534Y2284D02* X1426D01* Y2276D02* X1534D01* X1426Y2360D02* X1637D01* Y2364D02* X1426D01* X1637Y2368D02* X1426D01* X1534Y2224D02* X1426D01* X1534Y2228D02* X1426D01* Y2260D02* X1534D01* X1426Y2264D02* X1534D01* X1426Y2320D02* X1637D01* Y2316D02* X1426D01* X1534Y2208D02* X1426D01* X1534Y2212D02* X1426D01* Y2220D02* X1534D01* X1426Y2216D02* X1534D01* X1426Y2304D02* X1637D01* Y2300D02* X1426D01* X1534Y2176D02* X1426D01* X1534Y2180D02* X1426D01* Y2156D02* X1534D01* X1426Y2152D02* X1534D01* X1426Y2108D02* X1637D01* X1638Y2110D02* X1539D01* X1534Y2120D02* X1426D01* Y2116D02* X1534D01* X1426Y2104D02* X1637D01* Y2092D02* X1426D01* X1534Y2144D02* X1426D01* X1534Y2140D02* X1426D01* Y2148D02* X1534D01* X1426Y2076D02* X1637D01* Y2080D02* X1426D01* X1539Y2110D02* X1535Y2114D01* X1534Y2184D02* X1426D01* Y2188D02* X1534D01* X1426Y2192D02* X1534D01* X1426Y2332D02* X1637D01* Y2340D02* X1426D01* X1637Y2336D02* X1426D01* X1534Y2240D02* X1426D01* Y2236D02* X1534D01* X1426Y2232D02* X1534D01* X1426Y2400D02* X1637D01* X1426Y2404D02* X1637D01* Y2396D02* X1426D01* X1637Y2392D02* X1426D01* X1539Y2291D02* X1638D01* X1637Y2312D02* X1426D01* X1637Y2308D02* X1426D01* Y2292D02* X1637D01* X1426Y2288D02* X1535D01* X1426Y2344D02* X1637D01* Y2348D02* X1426D01* X1534Y2200D02* X1426D01* X1534Y2196D02* X1426D01* Y2204D02* X1534D01* X1426Y2380D02* X1637D01* Y2388D02* X1426D01* X1637Y2384D02* X1426D01* X1534Y2256D02* X1426D01* Y2252D02* X1534D01* X1426Y2352D02* X1637D01* X1426Y2356D02* X1637D01* X1578Y1664D02* X1426D01* X1578Y1668D02* X1426D01* Y1676D02* X1578D01* X1426Y1672D02* X1578D01* X1583Y1659D02* X1588Y1651D01* X1578Y1652D02* X1426D01* X1578Y1648D02* X1426D01* X1578Y1644D02* X1426D01* Y1636D02* X1578D01* X1426Y1640D02* X1578D01* X1630Y1679D02* X1624Y1687D01* X1616Y1693D02* X1624Y1687D01* X1578Y1768D02* X1426D01* X1578Y1772D02* X1426D01* Y1800D02* X1578D01* X1579Y1846D02* Y1417D01* X1426Y1256D02* X1794D01* X1426Y1252D02* X1794D01* Y1248D02* X1426D01* X1578Y1472D02* X1426D01* Y1476D02* X1578D01* X1426Y1344D02* X1794D01* Y1340D02* X1426D01* X1578Y1552D02* X1426D01* X1578Y1556D02* X1426D01* Y1532D02* X1578D01* X1426Y1528D02* X1578D01* X1426Y1372D02* X1794D01* Y1364D02* X1426D01* X1578Y1588D02* X1426D01* Y1580D02* X1578D01* X1426Y1584D02* X1578D01* X1426Y1300D02* X1794D01* Y1296D02* X1426D01* X1578Y1440D02* X1426D01* Y1436D02* X1578D01* X1426Y1272D02* X1794D01* X1426Y1268D02* X1794D01* Y1276D02* X1426D01* X1578Y1572D02* X1426D01* Y1576D02* X1578D01* X1625Y1651D02* X1630Y1659D01* X1625Y1651D02* X1616Y1646D01* X1578Y1608D02* X1426D01* Y1612D02* X1578D01* X1426Y1616D02* X1578D01* X1426Y1284D02* X1794D01* Y1280D02* X1426D01* X1578Y1488D02* X1426D01* X1578Y1492D02* X1426D01* Y1524D02* X1578D01* X1426Y1308D02* X1794D01* Y1312D02* X1426D01* X1578Y1468D02* X1426D01* Y1460D02* X1578D01* X1426Y1464D02* X1578D01* X1426Y1264D02* X1794D01* Y1260D02* X1426D01* X1578Y1520D02* X1426D01* X1578Y1516D02* X1426D01* Y1504D02* X1578D01* X1426Y1500D02* X1578D01* X1426Y1496D02* X1578D01* X1426Y1292D02* X1794D01* Y1288D02* X1426D01* X1441Y1394D02* Y1472D01* X1578Y1512D02* X1426D01* Y1508D02* X1578D01* X1426Y1228D02* X1794D01* Y1224D02* X1426D01* X1500Y1394D02* X1441D01* X1578Y1432D02* X1426D01* Y1092D02* X7834D01* X7781Y1172D02* X7834D01* Y1168D02* X7781D01* X7834Y1028D02* X1426D01* Y1032D02* X7834D01* X7799Y1059D02* Y1197D01* X7781Y1196D02* X7834D01* X7781Y1200D02* X7834D01* Y1208D02* X7781D01* X7834Y1204D02* X7781D01* Y1212D02* X7834D01* X7781Y1216D02* X7834D01* X7781Y1220D02* X7834D01* Y1192D02* X7781D01* X7834Y1188D02* X7781D01* Y1184D02* X7834D01* X7781Y1180D02* X7834D01* X7781Y1176D02* X7834D01* Y1144D02* X7781D01* X7834Y1020D02* X1426D01* Y1024D02* X7834D01* X7781Y1120D02* X7834D01* Y1124D02* X7781D01* X7834Y1088D02* X1426D01* Y1084D02* X7834D01* X7781Y1148D02* X7834D01* Y1160D02* X7781D01* X7834Y1076D02* X1426D01* Y1080D02* X7834D01* X7781Y1100D02* X7834D01* Y1096D02* X7779D01* X7834Y1048D02* X1426D01* Y1052D02* X7834D01* X7781Y1140D02* X7834D01* Y1136D02* X7781D01* X7834Y1068D02* X1426D01* Y1072D02* X7834D01* X7781Y1112D02* X7834D01* Y1116D02* X7781D01* X7834Y1056D02* X1426D01* Y1036D02* X7834D01* X7781Y1128D02* X7834D01* Y1132D02* X7781D01* X7834Y1004D02* X1426D01* Y1008D02* X7834D01* X7781Y1108D02* X7834D01* Y1104D02* X7781D01* X7834Y1040D02* X1426D01* Y1044D02* X7834D01* X7781Y1152D02* X7834D01* Y1156D02* X7781D01* X7834Y1012D02* X1426D01* Y1016D02* X7834D01* X7776Y1094D02* X7780Y1098D01* X7776Y1094D02* X1799D01* X1796Y1096D02* X1426D01* Y1100D02* X1794D01* X1784Y859D02* X1793Y850D01* X1829D02* X1793D01* X1794Y1116D02* X1426D01* Y1120D02* X1794D01* X1820Y868D02* X1829Y877D01* X1820Y868D02* X1784D01* X1794Y1184D02* X1426D01* Y1220D02* X1794D01* X1500Y1000D02* X1850D01* X2282Y850D02* X2336Y921D01* X2327D02* X2336Y912D01* Y859D01* X2327Y850D01* X2291D01* X2282Y859D01* Y912D01* X2291Y921D01* X2327D01* X2264D02* X2211Y850D01* Y859D02* X2220Y850D01* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2220D01* X2211Y912D01* Y859D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1980Y877D02* X1936D01* X1794Y1204D02* X1426D01* Y1196D02* X1794D01* X1936Y894D02* X1980D01* X1642Y859D02* X1651Y850D01* X1687D01* Y886D01* X1794Y1152D02* X1426D01* Y1148D02* X1794D01* X1740Y850D02* Y921D01* X1731D02* X1740D01* X1794Y1128D02* X1426D01* Y1112D02* X1794D01* X1820Y894D02* X1793D01* X1784Y886D02* X1793Y894D01* X1794Y1176D02* X1426D01* Y1168D02* X1794D01* X1829Y886D02* X1820Y894D01* X1829Y886D02* Y877D01* X1794Y1104D02* X1426D01* Y1108D02* X1794D01* X1731Y850D02* X1749D01* X1784Y859D02* Y886D01* X1794Y1144D02* X1426D01* Y1140D02* X1794D01* X1651Y877D02* X1687D01* Y886D02* X1678Y894D01* X1794Y1136D02* X1426D01* Y1132D02* X1794D01* X1651Y894D02* X1678D01* X1651Y877D02* X1642Y868D01* Y859D01* X1616D02* X1607Y850D01* X1580D01* X1571Y859D01* Y886D01* X1426Y1212D02* X1794D01* Y1216D02* X1426D01* X1578Y1484D02* X1426D01* Y1480D02* X1578D01* X1583Y1413D02* X1795D01* X1794Y1404D02* X1426D01* X1578Y1568D02* X1426D01* X1578Y1564D02* X1426D01* Y1560D02* X1578D01* X1667Y1651D02* X1675Y1646D01* X1667Y1651D02* X1662Y1659D01* X1578Y1688D02* X1426D01* X1578Y1684D02* X1426D01* Y1680D02* X1578D01* X1708Y1679D02* X1703Y1687D01* X1833Y1725D02* X1825Y1730D01* X1819Y1738D01* Y1758D02* X1824Y1766D01* X1833Y1771D01* X1853D02* X1860Y1766D01* X1866Y1758D01* Y1738D02* X1861Y1730D01* X1853Y1725D01* Y1693D02* X1860Y1687D01* X1866Y1679D01* Y1659D02* X1861Y1651D01* X1853Y1646D01* X1794Y1316D02* X1426D01* Y1320D02* X1794D01* X1816Y1495D02* X1824Y1491D01* X1853Y1496D02* X1844Y1491D01* X1794Y1384D02* X1426D01* Y1380D02* X1794D01* X1782Y1651D02* X1787Y1659D01* X1782Y1651D02* X1774Y1646D01* X1794Y1396D02* X1426D01* Y1400D02* X1794D01* X1804Y1511D02* X1809Y1502D01* X1804Y1531D02* X1808Y1539D01* X1794Y1392D02* X1426D01* Y1388D02* X1794D01* X1852Y1547D02* X1844Y1551D01* X1816Y1495D02* X1809Y1502D01* X1794Y1368D02* X1426D01* Y1360D02* X1794D01* X1860Y1503D02* X1864Y1511D01* X1860Y1503D02* X1853Y1496D01* X1794Y1336D02* X1426D01* Y1348D02* X1794D01* X1825Y1651D02* X1833Y1646D01* X1825Y1651D02* X1819Y1659D01* Y1679D02* X1824Y1687D01* X1833Y1693D01* X1787Y1679D02* X1782Y1687D01* X1774Y1693D01* X1754D02* X1746Y1687D01* X1740Y1679D01* Y1659D02* X1746Y1651D01* X1754Y1646D02* X1746Y1651D01* X1794Y1412D02* X1426D01* Y1408D02* X1794D01* X1815Y1546D02* X1808Y1539D01* X1815Y1546D02* X1824Y1551D01* X1794Y1324D02* X1426D01* Y1376D02* X1794D01* X1864Y1531D02* X1859Y1540D01* X1852Y1547D02* X1859Y1540D01* X1794Y1356D02* X1426D01* Y1352D02* X1794D01* X1795Y1413D02* Y1098D01* X1799Y1094D02* X1795Y1098D01* X1794Y1160D02* X1426D01* Y1156D02* X1794D01* X1607Y894D02* X1616Y886D01* X1580Y894D02* X1607D01* X1426Y1188D02* X1794D01* Y1180D02* X1426D01* X1580Y894D02* X1571Y886D01* X1544Y859D02* Y868D01* X1426Y1172D02* X1794D01* Y1164D02* X1426D01* X1544Y886D02* X1536Y894D01* X1509Y877D02* X1500Y886D01* X1426Y992D02* X7834D01* Y996D02* X1426D01* X1509Y850D02* X1500Y859D01* X1509Y850D02* X1536D01* X1544Y859D01* X1426Y1124D02* X1794D01* Y1200D02* X1426D01* X1578Y1456D02* X1426D01* Y1452D02* X1578D01* X1426Y1328D02* X1794D01* Y1332D02* X1426D01* X1578Y1600D02* X1426D01* X1578Y1604D02* X1426D01* Y1596D02* X1578D01* X1426Y1592D02* X1578D01* X1695Y1646D02* X1703Y1651D01* X1708Y1659D02* X1703Y1651D01* X1578Y1656D02* X1426D01* X1578Y1660D02* X1426D01* Y1692D02* X1578D01* X1426Y1696D02* X1578D01* X1588Y1687D02* X1596Y1693D01* X1578Y1736D02* X1426D01* Y1740D02* X1578D01* X1426Y1744D02* X1578D01* Y1728D02* X1426D01* X1578Y1732D02* X1426D01* Y1724D02* X1578D01* X1426Y1720D02* X1578D01* X1703Y1687D02* X1695Y1693D01* X1667Y1687D02* X1675Y1693D01* X1578Y1752D02* X1426D01* X1578Y1748D02* X1426D01* Y1756D02* X1578D01* X1426Y1760D02* X1578D01* X1426Y1764D02* X1578D01* Y1780D02* X1426D01* X1578Y1776D02* X1426D01* X1543Y1846D02* X1539Y1850D01* X1538Y1864D02* X1426D01* Y1868D02* X1538D01* X1426Y1872D02* X1538D01* X1426Y1824D02* X1578D01* Y1820D02* X1426D01* X1538Y1900D02* X1426D01* X1538Y1904D02* X1426D01* X1538Y1908D02* X1426D01* Y1972D02* X1538D01* X1426Y1968D02* X1538D01* X1426Y2012D02* X1637D01* Y2008D02* X1426D01* X1538Y1996D02* X1426D01* Y2000D02* X1539D01* X1426Y2024D02* X1637D01* Y2028D02* X1426D01* X1538Y1976D02* X1426D01* X1538Y1980D02* X1426D01* Y1992D02* X1538D01* X1543Y2004D02* X1539Y2000D01* X1426Y2040D02* X1637D01* Y2044D02* X1426D01* X1538Y1960D02* X1426D01* X1538Y1964D02* X1426D01* Y1956D02* X1538D01* X1426Y2004D02* X1637D01* X1638D02* Y2110D01* X1637Y2088D02* X1426D01* Y2112D02* X1536D01* X1426Y2064D02* X1637D01* Y2060D02* X1426D01* X1534Y2136D02* X1426D01* X1534Y2132D02* X1426D01* Y2124D02* X1534D01* X1426Y2128D02* X1534D01* X1426Y2096D02* X1637D01* Y2100D02* X1426D01* X1538Y1952D02* X1426D01* X1538Y1948D02* X1426D01* Y1940D02* X1538D01* X1426Y1944D02* X1538D01* X1426Y2036D02* X1637D01* Y2032D02* X1426D01* X1538Y1988D02* X1426D01* Y1984D02* X1538D01* X1426Y2016D02* X1637D01* X1426Y2020D02* X1637D01* Y2048D02* X1426D01* X1543Y2004D02* X1638D01* X1637Y2056D02* X1426D01* X1637Y2052D02* X1426D01* X1637Y2084D02* X1426D01* X1538Y1936D02* X1426D01* X1538Y1932D02* X1426D01* Y1928D02* X1538D01* X1539Y2000D02* Y1850D01* X1426Y1808D02* X1578D01* Y1804D02* X1426D01* X1538Y1888D02* X1426D01* X1538Y1884D02* X1426D01* Y1892D02* X1538D01* X1426Y1896D02* X1538D01* X1426Y1836D02* X1578D01* Y1840D02* X1426D01* X1538Y1860D02* X1426D01* Y1856D02* X1538D01* X1426Y1848D02* X1540D01* X1426Y1784D02* X1578D01* X1426Y1788D02* X1578D01* Y1796D02* X1426D01* X1578Y1792D02* X1426D01* X1538Y1880D02* X1426D01* X1538Y1876D02* X1426D01* Y1852D02* X1538D01* X1426Y1816D02* X1578D01* Y1812D02* X1426D01* X1538Y1912D02* X1426D01* X1538Y1916D02* X1426D01* Y1924D02* X1538D01* X1426Y1920D02* X1538D01* X1426Y1844D02* X1578D01* X1579Y1846D02* X1543D01* X1578Y1832D02* X1426D01* X1578Y1828D02* X1426D01* X1578Y1716D02* X1426D01* X1578Y1712D02* X1426D01* X1578Y1708D02* X1426D01* Y1700D02* X1578D01* X1426Y1704D02* X1578D01* X1588Y1687D02* X1583Y1679D01* X1662D02* X1667Y1687D01* X1578Y1624D02* X1426D01* X1578Y1620D02* X1426D01* Y1628D02* X1578D01* X1426Y1632D02* X1578D01* X1596Y1646D02* X1588Y1651D01* X1578Y1544D02* X1426D01* X1578Y1548D02* X1426D01* Y1540D02* X1578D01* X1426Y1536D02* X1578D01* X1426Y1244D02* X1794D01* Y1304D02* X1426D01* X1578Y1420D02* X1426D01* Y1416D02* X1579D01* Y1417D02* X1583Y1413D01* X1426Y1192D02* X1794D01* Y1208D02* X1426D01* X1578Y1428D02* X1426D01* Y1424D02* X1578D01* X1426Y1240D02* X1794D01* Y1236D02* X1426D01* X1794Y1232D02* X1426D01* X1578Y1444D02* X1426D01* Y1448D02* X1578D01* X1500Y1394D02* Y1000D01* X1426D02* X7834D01* X7740D02* X7449D01* X7368Y1147D02* X7364Y1142D01* X7356Y1136D01* X7336D02* X7331Y1140D01* X7325Y1147D01* Y1167D02* X7329Y1173D01* X7336Y1179D01* X7356D02* X7362Y1175D01* X7368Y1167D01* X7356Y1215D02* X7364Y1221D01* X7368Y1226D01* Y1246D02* X7362Y1254D01* X7356Y1257D01* X7336D02* X7329Y1251D01* X7325Y1246D01* Y1226D02* X7331Y1218D01* X7336Y1215D01* Y1294D02* X7331Y1297D01* X7325Y1305D01* Y1325D02* X7329Y1330D01* X7336Y1336D01* X7356D02* X7362Y1333D01* X7368Y1325D01* Y1305D02* X7364Y1300D01* X7356Y1294D01* X7336Y1372D02* X7331Y1376D01* X7325Y1384D01* Y1404D02* X7329Y1409D01* X7336Y1415D01* X7356D02* X7362Y1412D01* X7368Y1404D01* Y1384D02* X7364Y1378D01* X7356Y1372D01* Y1451D02* X7364Y1457D01* X7368Y1462D01* Y1482D02* X7362Y1490D01* X7356Y1494D01* X7336D02* X7329Y1488D01* X7325Y1482D01* Y1462D02* X7331Y1455D01* X7336Y1451D01* Y1530D02* X7331Y1533D01* X7325Y1541D01* Y1561D02* X7329Y1566D01* X7336Y1572D01* X7356D02* X7362Y1569D01* X7368Y1561D01* Y1541D02* X7364Y1536D01* X7356Y1530D01* Y1609D02* X7364Y1615D01* X7368Y1620D01* Y1640D02* X7362Y1648D01* X7356Y1651D01* X7336D02* X7329Y1645D01* X7325Y1640D01* Y1620D02* X7331Y1612D01* X7336Y1609D01* X7781Y1284D02* X7834D01* X7781Y1280D02* X7834D01* X7781Y1276D02* X7834D01* Y1272D02* X7781D01* X7834Y1268D02* X7781D01* Y1260D02* X7834D01* X7781Y1264D02* X7834D01* Y1256D02* X7781D01* X7834Y1252D02* X7781D01* Y1248D02* X7834D01* X7781Y1244D02* X7834D01* X7781Y1240D02* X7834D01* Y1232D02* X7781D01* X7834Y1236D02* X7781D01* Y1228D02* X7834D01* X7781Y1224D02* X7834D01* X7799Y1197D02* Y1350D01* X7781Y1352D02* X7834D01* X7781Y1356D02* X7834D01* Y1360D02* X7781D01* X7834Y1364D02* X7781D01* Y1376D02* X7834D01* X7781Y1372D02* X7834D01* X7781Y1368D02* X7834D01* Y1328D02* X7781D01* X7834Y1324D02* X7781D01* Y1316D02* X7834D01* X7781Y1320D02* X7834D01* Y1288D02* X7781D01* X7834Y1292D02* X7781D01* Y1300D02* X7834D01* X7781Y1296D02* X7834D01* Y1304D02* X7781D01* X7834Y1308D02* X7781D01* X7834Y1312D02* X7781D01* Y1332D02* X7834D01* X7781Y1336D02* X7834D01* Y1340D02* X7781D01* X7834Y1344D02* X7781D01* X7834Y1348D02* X7781D01* Y1396D02* X7834D01* X7781Y1400D02* X7834D01* Y1404D02* X7781D01* X7834Y1408D02* X7781D01* X7834Y1412D02* X7781D01* Y1440D02* X7834D01* X7781Y1436D02* X7834D01* X7781Y1432D02* X7834D01* Y1424D02* X7781D01* X7834Y1428D02* X7781D01* Y1420D02* X7834D01* X7781Y1416D02* X7834D01* Y1392D02* X7781D01* X7834Y1388D02* X7781D01* Y1380D02* X7834D01* X7781Y1384D02* X7834D01* Y1448D02* X7781D01* X7834Y1444D02* X7781D01* Y1452D02* X7834D01* X7781Y1456D02* X7834D01* Y1480D02* X7781D01* X7834Y1484D02* X7781D01* Y1476D02* X7834D01* X7781Y1472D02* X7834D01* X7781Y1468D02* X7834D01* Y1464D02* X7781D01* X7834Y1460D02* X7781D01* X7834Y1544D02* X7781D01* X7834Y1548D02* X7781D01* Y1540D02* X7834D01* X7781Y1536D02* X7834D01* Y1512D02* X7781D01* X7834Y1508D02* X7781D01* Y1504D02* X7834D01* X7781Y1500D02* X7834D01* X7781Y1496D02* X7834D01* Y1488D02* X7781D01* X7834Y1492D02* X7781D01* Y1516D02* X7834D01* X7781Y1520D02* X7834D01* X7781Y1524D02* X7834D01* Y1528D02* X7781D01* X7834Y1532D02* X7781D01* Y1556D02* X7834D01* X7781Y1552D02* X7834D01* Y1560D02* X7781D01* X7834Y1564D02* X7781D01* X7834Y1568D02* X7781D01* Y1572D02* X7834D01* X7781Y1576D02* X7834D01* Y1704D02* X7781D01* X7834Y1700D02* X7781D01* Y1692D02* X7834D01* X7781Y1696D02* X7834D01* Y1688D02* X7781D01* X7834Y1684D02* X7781D01* X7834Y1680D02* X7781D01* Y1676D02* X7834D01* X7781Y1672D02* X7834D01* Y1664D02* X7781D01* X7834Y1668D02* X7781D01* Y1660D02* X7834D01* X7781Y1656D02* X7834D01* Y1652D02* X7781D01* X7834Y1648D02* X7781D01* X7834Y1644D02* X7781D01* X7834Y1600D02* X7781D01* X7834Y1604D02* X7781D01* Y1612D02* X7834D01* X7781Y1608D02* X7834D01* Y1640D02* X7781D01* X7834Y1636D02* X7781D01* Y1628D02* X7834D01* X7781Y1632D02* X7834D01* Y1624D02* X7781D01* X7834Y1620D02* X7781D01* X7834Y1616D02* X7781D01* Y1596D02* X7834D01* X7781Y1592D02* X7834D01* Y1588D02* X7781D01* X7834Y1584D02* X7781D01* X7834Y1580D02* X7781D01* X7671Y1530D02* X7679Y1536D01* X7683Y1541D01* Y1561D02* X7677Y1569D01* X7671Y1572D01* X7651D02* X7644Y1566D01* X7640Y1561D01* Y1541D02* X7646Y1533D01* X7651Y1530D01* X7494Y1451D02* X7489Y1455D01* X7483Y1462D01* Y1482D02* X7486Y1488D01* X7494Y1494D01* X7514D02* X7519Y1490D01* X7525Y1482D01* Y1462D02* X7522Y1457D01* X7514Y1451D01* Y1609D02* X7522Y1615D01* X7525Y1620D01* Y1640D02* X7519Y1648D01* X7514Y1651D01* X7494D02* X7486Y1645D01* X7483Y1640D01* Y1620D02* X7489Y1612D01* X7494Y1609D01* Y1766D02* X7489Y1770D01* X7483Y1777D01* Y1797D02* X7486Y1803D01* X7494Y1809D01* X7514D02* X7519Y1805D01* X7525Y1797D01* Y1777D02* X7522Y1772D01* X7514Y1766D01* Y1924D02* X7522Y1930D01* X7525Y1935D01* Y1955D02* X7519Y1963D01* X7514Y1966D01* X7494D02* X7486Y1960D01* X7483Y1955D01* Y1935D02* X7489Y1927D01* X7494Y1924D01* X7651Y1845D02* X7646Y1848D01* X7640Y1856D01* Y1876D02* X7644Y1881D01* X7651Y1887D01* X7671D02* X7677Y1884D01* X7683Y1876D01* Y1856D02* X7679Y1851D01* X7671Y1845D01* X7781Y1860D02* X7834D01* X7781Y1856D02* X7834D01* Y1864D02* X7781D01* X7834Y1868D02* X7781D01* X7834Y1872D02* X7781D01* Y1876D02* X7834D01* X7781Y1880D02* X7834D01* Y1888D02* X7781D01* X7834Y1884D02* X7781D01* Y1892D02* X7834D01* X7781Y1896D02* X7834D01* Y1900D02* X7781D01* X7834Y1904D02* X7781D01* X7834Y1908D02* X7781D01* Y1948D02* X7834D01* X7781Y1952D02* X7834D01* X7781Y1956D02* X7834D01* Y1960D02* X7781D01* X7834Y1964D02* X7781D01* Y1988D02* X7834D01* X7781Y1984D02* X7834D01* Y1992D02* X7781D01* X7834Y1996D02* X7781D01* X7834Y2000D02* X7781D01* Y2004D02* X7834D01* X7781Y2008D02* X7834D01* Y1976D02* X7781D01* X7834Y1980D02* X7781D01* Y1972D02* X7834D01* X7781Y1968D02* X7834D01* Y1944D02* X7781D01* X7834Y1940D02* X7781D01* Y1936D02* X7834D01* X7781Y1932D02* X7834D01* X7781Y1928D02* X7834D01* Y1920D02* X7781D01* X7834Y1924D02* X7781D01* Y1916D02* X7834D01* X7781Y1912D02* X7834D01* Y1848D02* X7781D01* X7834Y1852D02* X7781D01* Y1844D02* X7834D01* X7781Y1840D02* X7834D01* X7781Y1836D02* X7834D01* Y1832D02* X7781D01* X7834Y1828D02* X7781D01* Y1820D02* X7834D01* X7781Y1824D02* X7834D01* Y1816D02* X7781D01* X7834Y1812D02* X7781D01* X7834Y1808D02* X7781D01* Y1804D02* X7834D01* X7781Y1800D02* X7834D01* Y1792D02* X7781D01* X7834Y1796D02* X7781D01* X7834Y1784D02* X7781D01* X7834Y1788D02* X7781D01* Y1780D02* X7834D01* X7781Y1776D02* X7834D01* X7781Y1772D02* X7834D01* Y1768D02* X7781D01* X7834Y1764D02* X7781D01* Y1756D02* X7834D01* X7781Y1760D02* X7834D01* Y1752D02* X7781D01* X7834Y1748D02* X7781D01* X7834Y1744D02* X7781D01* Y1740D02* X7834D01* X7781Y1736D02* X7834D01* Y1728D02* X7781D01* X7834Y1732D02* X7781D01* Y1724D02* X7834D01* X7781Y1720D02* X7834D01* Y1716D02* X7781D01* X7834Y1712D02* X7781D01* X7834Y1708D02* X7781D01* X7671Y1687D02* X7679Y1693D01* X7683Y1699D01* Y1719D02* X7677Y1727D01* X7671Y1730D01* X7651D02* X7644Y1724D01* X7640Y1719D01* Y1699D02* X7646Y1691D01* X7651Y1687D01* X7336D02* X7331Y1691D01* X7325Y1699D01* Y1719D02* X7329Y1724D01* X7336Y1730D01* X7356D02* X7362Y1727D01* X7368Y1719D01* Y1699D02* X7364Y1693D01* X7356Y1687D01* Y1766D02* X7364Y1772D01* X7368Y1777D01* Y1797D02* X7362Y1805D01* X7356Y1809D01* X7336D02* X7329Y1803D01* X7325Y1797D01* Y1777D02* X7331Y1770D01* X7336Y1766D01* Y1845D02* X7331Y1848D01* X7325Y1856D01* Y1876D02* X7329Y1881D01* X7336Y1887D01* X7356D02* X7362Y1884D01* X7368Y1876D01* Y1856D02* X7364Y1851D01* X7356Y1845D01* Y1924D02* X7364Y1930D01* X7368Y1935D01* Y1955D02* X7362Y1963D01* X7356Y1966D01* X7336D02* X7329Y1960D01* X7325Y1955D01* Y1935D02* X7331Y1927D01* X7336Y1924D01* Y2002D02* X7331Y2006D01* X7325Y2014D01* Y2034D02* X7329Y2039D01* X7336Y2045D01* X7356D02* X7362Y2042D01* X7368Y2034D01* Y2014D02* X7364Y2008D01* X7356Y2002D01* Y2081D02* X7364Y2087D01* X7368Y2092D01* Y2112D02* X7362Y2120D01* X7356Y2124D01* X7336D02* X7329Y2118D01* X7325Y2112D01* Y2092D02* X7331Y2084D01* X7336Y2081D01* Y2160D02* X7331Y2163D01* X7325Y2171D01* Y2191D02* X7329Y2196D01* X7336Y2202D01* X7356D02* X7362Y2199D01* X7368Y2191D01* Y2171D02* X7364Y2166D01* X7356Y2160D01* Y2239D02* X7364Y2245D01* X7368Y2250D01* Y2270D02* X7362Y2278D01* X7356Y2281D01* X7336D02* X7329Y2275D01* X7325Y2270D01* Y2250D02* X7331Y2242D01* X7336Y2239D01* Y2317D02* X7331Y2321D01* X7325Y2329D01* Y2349D02* X7329Y2354D01* X7336Y2360D01* X7356D02* X7362Y2356D01* X7368Y2349D01* Y2329D02* X7364Y2323D01* X7356Y2317D01* Y2396D02* X7364Y2402D01* X7368Y2407D01* Y2427D02* X7362Y2435D01* X7356Y2439D01* X7336D02* X7329Y2433D01* X7325Y2427D01* Y2407D02* X7331Y2399D01* X7336Y2396D01* Y2475D02* X7331Y2478D01* X7325Y2486D01* Y2506D02* X7329Y2511D01* X7336Y2517D01* X7356D02* X7362Y2514D01* X7368Y2506D01* Y2486D02* X7364Y2481D01* X7356Y2475D01* Y2554D02* X7364Y2560D01* X7368Y2565D01* Y2585D02* X7362Y2593D01* X7356Y2596D01* X7336D02* X7329Y2590D01* X7325Y2585D01* Y2565D02* X7331Y2557D01* X7336Y2554D01* Y2632D02* X7331Y2636D01* X7325Y2644D01* Y2664D02* X7329Y2669D01* X7336Y2675D01* X7356D02* X7362Y2671D01* X7368Y2664D01* Y2644D02* X7364Y2638D01* X7356Y2632D01* X7494Y2554D02* X7489Y2557D01* X7483Y2565D01* Y2585D02* X7486Y2590D01* X7494Y2596D01* X7514D02* X7519Y2593D01* X7525Y2585D01* Y2565D02* X7522Y2560D01* X7514Y2554D01* Y2396D02* X7522Y2402D01* X7525Y2407D01* Y2427D02* X7519Y2435D01* X7514Y2439D01* X7494D02* X7486Y2433D01* X7483Y2427D01* Y2407D02* X7489Y2399D01* X7494Y2396D01* X7781Y2012D02* X7834D01* X7781Y2016D02* X7834D01* X7781Y2020D02* X7834D01* Y2024D02* X7781D01* X7834Y2028D02* X7781D01* Y2036D02* X7834D01* X7781Y2032D02* X7834D01* Y2040D02* X7781D01* X7834Y2044D02* X7781D01* X7834Y2048D02* X7781D01* Y2052D02* X7834D01* X7781Y2056D02* X7834D01* Y2064D02* X7781D01* X7834Y2060D02* X7781D01* Y2068D02* X7834D01* X7781Y2072D02* X7834D01* X7781Y2076D02* X7834D01* X7781Y2080D02* X7834D01* X7781Y2084D02* X7834D01* Y2088D02* X7781D01* X7834Y2092D02* X7781D01* Y2100D02* X7834D01* X7781Y2096D02* X7834D01* Y2104D02* X7781D01* X7834Y2108D02* X7781D01* X7834Y2112D02* X7781D01* Y2116D02* X7834D01* X7781Y2120D02* X7834D01* Y2128D02* X7781D01* X7834Y2124D02* X7781D01* Y2132D02* X7834D01* X7781Y2136D02* X7834D01* X7781Y2140D02* X7834D01* X7781Y2144D02* X7834D01* X7781Y2148D02* X7834D01* Y2152D02* X7781D01* X7834Y2156D02* X7781D01* Y2164D02* X7834D01* X7781Y2160D02* X7834D01* Y2168D02* X7781D01* X7834Y2172D02* X7781D01* X7834Y2176D02* X7781D01* Y2180D02* X7834D01* X7781Y2184D02* X7834D01* Y2192D02* X7781D01* X7834Y2188D02* X7781D01* Y2196D02* X7834D01* X7781Y2200D02* X7834D01* Y2204D02* X7781D01* X7834Y2208D02* X7781D01* X7834Y2212D02* X7781D01* Y2276D02* X7834D01* X7781Y2272D02* X7834D01* X7781Y2268D02* X7834D01* Y2264D02* X7781D01* X7834Y2260D02* X7781D01* Y2240D02* X7834D01* X7781Y2236D02* X7834D01* X7781Y2232D02* X7834D01* Y2224D02* X7781D01* X7834Y2228D02* X7781D01* Y2220D02* X7834D01* X7781Y2216D02* X7834D01* Y2248D02* X7781D01* X7834Y2244D02* X7781D01* Y2252D02* X7834D01* X7781Y2256D02* X7834D01* Y2280D02* X7781D01* X7834Y2284D02* X7781D01* Y2292D02* X7834D01* X7781Y2288D02* X7834D01* X7651Y2317D02* X7646Y2321D01* X7640Y2329D01* Y2349D02* X7644Y2354D01* X7651Y2360D01* X7671D02* X7677Y2356D01* X7683Y2349D01* Y2329D02* X7679Y2323D01* X7671Y2317D01* X7781Y2340D02* X7834D01* X7781Y2336D02* X7834D01* X7781Y2332D02* X7834D01* Y2328D02* X7781D01* X7834Y2324D02* X7781D01* Y2316D02* X7834D01* X7781Y2320D02* X7834D01* Y2312D02* X7781D01* X7834Y2308D02* X7781D01* Y2304D02* X7834D01* X7781Y2300D02* X7834D01* X7781Y2296D02* X7834D01* Y2344D02* X7781D01* X7834Y2348D02* X7781D01* Y2356D02* X7834D01* X7781Y2352D02* X7834D01* Y2360D02* X7781D01* X7834Y2364D02* X7781D01* X7834Y2368D02* X7781D01* Y2372D02* X7834D01* X7781Y2376D02* X7834D01* X7781Y2380D02* X7834D01* X7781Y2384D02* X7834D01* X7781Y2388D02* X7834D01* Y2392D02* X7781D01* X7834Y2396D02* X7781D01* Y2404D02* X7834D01* X7781Y2400D02* X7834D01* Y2408D02* X7781D01* X7834Y2412D02* X7781D01* Y2420D02* X7834D01* X7781Y2416D02* X7834D01* Y2424D02* X7781D01* X7834Y2428D02* X7781D01* X7834Y2432D02* X7781D01* Y2436D02* X7834D01* X7781Y2440D02* X7834D01* Y2464D02* X7781D01* X7834Y2468D02* X7781D01* Y2476D02* X7834D01* X7781Y2472D02* X7834D01* Y2504D02* X7781D01* X7834Y2500D02* X7781D01* Y2496D02* X7834D01* X7781Y2492D02* X7834D01* X7781Y2488D02* X7834D01* Y2480D02* X7781D01* X7834Y2484D02* X7781D01* Y2460D02* X7834D01* X7781Y2456D02* X7834D01* Y2452D02* X7781D01* X7834Y2448D02* X7781D01* X7834Y2444D02* X7781D01* X7671Y2475D02* X7679Y2481D01* X7683Y2486D01* Y2506D02* X7677Y2514D01* X7671Y2517D01* X7651D02* X7644Y2511D01* X7640Y2506D01* Y2486D02* X7646Y2478D01* X7651Y2475D01* X7781Y2508D02* X7834D01* X7781Y2512D02* X7834D01* X7781Y2516D02* X7834D01* Y2520D02* X7781D01* X7834Y2524D02* X7781D01* Y2532D02* X7834D01* X7781Y2528D02* X7834D01* Y2536D02* X7781D01* X7834Y2540D02* X7781D01* Y2544D02* X7834D01* X7781Y2548D02* X7834D01* X7781Y2552D02* X7834D01* Y2560D02* X7781D01* X7834Y2556D02* X7781D01* Y2564D02* X7834D01* X7781Y2568D02* X7834D01* X7781Y2572D02* X7834D01* X7781Y2576D02* X7834D01* X7781Y2580D02* X7834D01* Y2584D02* X7781D01* X7834Y2588D02* X7781D01* Y2596D02* X7834D01* X7781Y2592D02* X7834D01* Y2600D02* X7781D01* X7834Y2604D02* X7781D01* Y2608D02* X7834D01* X7781Y2612D02* X7834D01* X7781Y2616D02* X7834D01* Y2624D02* X7781D01* X7834Y2620D02* X7781D01* Y2628D02* X7834D01* X7781Y2632D02* X7834D01* Y2636D02* X7781D01* X7834Y2640D02* X7781D01* X7834Y2644D02* X7781D01* X7671Y2632D02* X7679Y2638D01* X7683Y2644D01* Y2664D02* X7677Y2671D01* X7671Y2675D01* X7651D02* X7644Y2669D01* X7640Y2664D01* Y2644D02* X7646Y2636D01* X7651Y2632D01* Y2790D02* X7646Y2793D01* X7640Y2801D01* Y2821D02* X7644Y2826D01* X7651Y2832D01* X7671D02* X7677Y2829D01* X7683Y2821D01* Y2801D02* X7679Y2796D01* X7671Y2790D01* X7781Y2788D02* X7834D01* X7781Y2784D02* X7834D01* Y2792D02* X7781D01* X7834Y2796D02* X7781D01* X7834Y2800D02* X7781D01* Y2804D02* X7834D01* X7781Y2808D02* X7834D01* Y2816D02* X7781D01* X7834Y2812D02* X7781D01* Y2820D02* X7834D01* X7781Y2824D02* X7834D01* Y2828D02* X7781D01* X7834Y2832D02* X7781D01* X7834Y2836D02* X7781D01* Y2876D02* X7834D01* X7781Y2880D02* X7834D01* X7781Y2884D02* X7834D01* Y2888D02* X7781D01* X7834Y2892D02* X7781D01* Y2900D02* X7834D01* X7781Y2896D02* X7834D01* Y2904D02* X7781D01* X7834Y2908D02* X7781D01* Y2916D02* X7834D01* X7781Y2912D02* X7834D01* Y2936D02* X7781D01* X7834Y2932D02* X7781D01* Y2928D02* X7834D01* X7781Y2924D02* X7834D01* X7781Y2920D02* X7834D01* Y2872D02* X7781D01* X7834Y2868D02* X7781D01* Y2864D02* X7834D01* X7781Y2860D02* X7834D01* X7781Y2856D02* X7834D01* Y2848D02* X7781D01* X7834Y2852D02* X7781D01* Y2844D02* X7834D01* X7781Y2840D02* X7834D01* Y2776D02* X7781D01* X7834Y2780D02* X7781D01* Y2772D02* X7834D01* X7781Y2768D02* X7834D01* X7781Y2764D02* X7834D01* Y2760D02* X7781D01* X7834Y2756D02* X7781D01* Y2748D02* X7834D01* X7781Y2752D02* X7834D01* Y2744D02* X7781D01* X7834Y2740D02* X7781D01* Y2736D02* X7834D01* X7781Y2732D02* X7834D01* X7781Y2728D02* X7834D01* Y2720D02* X7781D01* X7834Y2724D02* X7781D01* Y2716D02* X7834D01* X7781Y2712D02* X7834D01* X7781Y2708D02* X7834D01* X7781Y2704D02* X7834D01* X7781Y2700D02* X7834D01* Y2696D02* X7781D01* X7834Y2692D02* X7781D01* Y2684D02* X7834D01* X7781Y2688D02* X7834D01* Y2680D02* X7781D01* X7834Y2676D02* X7781D01* X7834Y2672D02* X7781D01* Y2668D02* X7834D01* X7781Y2664D02* X7834D01* Y2656D02* X7781D01* X7834Y2660D02* X7781D01* Y2652D02* X7834D01* X7781Y2648D02* X7834D01* X7651Y3105D02* X7646Y3108D01* X7640Y3116D01* Y3136D02* X7644Y3141D01* X7651Y3147D01* X7671D02* X7677Y3144D01* X7683Y3136D01* Y3116D02* X7679Y3111D01* X7671Y3105D01* X7781Y3076D02* X7834D01* X7781Y3072D02* X7834D01* X7781Y3068D02* X7834D01* Y3064D02* X7781D01* X7834Y3060D02* X7781D01* Y3052D02* X7834D01* X7781Y3056D02* X7834D01* Y3048D02* X7781D01* X7834Y3044D02* X7781D01* Y3040D02* X7834D01* X7781Y3036D02* X7834D01* X7781Y3032D02* X7834D01* Y3024D02* X7781D01* X7834Y3028D02* X7781D01* X7834Y2984D02* X7781D01* X7834Y2980D02* X7781D01* Y2988D02* X7834D01* X7781Y2992D02* X7834D01* Y3000D02* X7781D01* X7834Y2996D02* X7781D01* Y3004D02* X7834D01* X7781Y3008D02* X7834D01* X7781Y3012D02* X7834D01* Y3016D02* X7781D01* X7834Y3020D02* X7781D01* Y2976D02* X7834D01* X7781Y2972D02* X7834D01* X7781Y2968D02* X7834D01* Y2960D02* X7781D01* X7834Y2964D02* X7781D01* Y2956D02* X7834D01* X7781Y2952D02* X7834D01* Y2948D02* X7781D01* X7834Y2944D02* X7781D01* X7834Y2940D02* X7781D01* X7834Y3080D02* X7781D01* X7834Y3084D02* X7781D01* Y3092D02* X7834D01* X7781Y3088D02* X7834D01* Y3096D02* X7781D01* X7834Y3100D02* X7781D01* X7834Y3104D02* X7781D01* Y3108D02* X7834D01* X7781Y3112D02* X7834D01* Y3120D02* X7781D01* X7834Y3116D02* X7781D01* Y3124D02* X7834D01* X7781Y3128D02* X7834D01* Y3132D02* X7781D01* X7834Y3136D02* X7781D01* X7834Y3140D02* X7781D01* Y3148D02* X7834D01* X7781Y3144D02* X7834D01* X7781Y3156D02* X7834D01* X7781Y3152D02* X7834D01* Y3160D02* X7781D01* X7834Y3164D02* X7781D01* X7834Y3168D02* X7781D01* Y3172D02* X7834D01* X7781Y3176D02* X7834D01* Y3184D02* X7781D01* X7834Y3180D02* X7781D01* Y3188D02* X7834D01* X7781Y3192D02* X7834D01* Y3196D02* X7781D01* X7834Y3200D02* X7781D01* X7834Y3204D02* X7781D01* Y3212D02* X7834D01* X7781Y3208D02* X7834D01* Y3240D02* X7781D01* X7834Y3236D02* X7781D01* Y3244D02* X7834D01* X7781Y3248D02* X7834D01* Y3272D02* X7781D01* X7834Y3276D02* X7781D01* Y3284D02* X7834D01* X7781Y3280D02* X7834D01* Y3288D02* X7781D01* X7834Y3292D02* X7781D01* X7834Y3296D02* X7781D01* Y3300D02* X7834D01* X7781Y3304D02* X7834D01* Y3352D02* X7781D01* X7834Y3356D02* X7781D01* X7834Y3360D02* X7781D01* Y3364D02* X7834D01* X7781Y3368D02* X7834D01* Y3344D02* X7781D01* X7834Y3348D02* X7781D01* Y3340D02* X7834D01* X7781Y3336D02* X7834D01* Y3328D02* X7781D01* X7834Y3332D02* X7781D01* Y3324D02* X7834D01* X7781Y3320D02* X7834D01* Y3316D02* X7781D01* X7834Y3312D02* X7781D01* X7834Y3308D02* X7781D01* Y3220D02* X7834D01* X7781Y3216D02* X7834D01* Y3224D02* X7781D01* X7834Y3228D02* X7781D01* X7834Y3232D02* X7781D01* Y3252D02* X7834D01* X7781Y3256D02* X7834D01* Y3260D02* X7781D01* X7834Y3264D02* X7781D01* X7834Y3268D02* X7781D01* X7671Y3262D02* X7679Y3268D01* X7683Y3273D01* Y3293D02* X7677Y3301D01* X7671Y3305D01* X7651D02* X7644Y3299D01* X7640Y3293D01* Y3273D02* X7646Y3266D01* X7651Y3262D01* X7834Y3416D02* X7781D01* X7834Y3412D02* X7781D01* X7834Y3408D02* X7781D01* Y3404D02* X7834D01* X7781Y3400D02* X7834D01* Y3392D02* X7781D01* X7834Y3396D02* X7781D01* Y3388D02* X7834D01* X7781Y3384D02* X7834D01* Y3380D02* X7781D01* X7834Y3376D02* X7781D01* X7834Y3372D02* X7781D01* Y3420D02* X7834D01* X7781Y3424D02* X7834D01* Y3432D02* X7781D01* X7834Y3428D02* X7781D01* Y3436D02* X7834D01* X7781Y3440D02* X7834D01* X7781Y3444D02* X7834D01* Y3448D02* X7781D01* X7834Y3452D02* X7781D01* Y3460D02* X7834D01* X7781Y3456D02* X7834D01* Y3464D02* X7781D01* X7834Y3468D02* X7781D01* Y3472D02* X7834D01* X7781Y3476D02* X7834D01* X7781Y3480D02* X7834D01* Y3488D02* X7781D01* X7834Y3484D02* X7781D01* Y3492D02* X7834D01* X7781Y3496D02* X7834D01* Y3500D02* X7781D01* X7834Y3504D02* X7781D01* X7834Y3508D02* X7781D01* Y3516D02* X7834D01* X7781Y3512D02* X7834D01* X7781Y3524D02* X7834D01* X7781Y3520D02* X7834D01* Y3528D02* X7781D01* X7834Y3532D02* X7781D01* Y3536D02* X7834D01* X7781Y3540D02* X7834D01* X7781Y3544D02* X7834D01* Y3552D02* X7781D01* X7834Y3548D02* X7781D01* Y3556D02* X7834D01* X7781Y3560D02* X7834D01* Y3564D02* X7781D01* X7834Y3568D02* X7781D01* X7834Y3572D02* X7781D01* Y3580D02* X7834D01* X7781Y3576D02* X7834D01* Y3584D02* X7781D01* X7834Y3588D02* X7781D01* Y3596D02* X7834D01* X7781Y3592D02* X7834D01* X7651Y3577D02* X7646Y3581D01* X7640Y3588D01* Y3608D02* X7644Y3614D01* X7651Y3620D01* X7671D02* X7677Y3616D01* X7683Y3608D01* Y3588D02* X7679Y3583D01* X7671Y3577D01* X7781Y3600D02* X7834D01* X7781Y3604D02* X7834D01* X7781Y3608D02* X7834D01* Y3616D02* X7781D01* X7834Y3612D02* X7781D01* Y3620D02* X7834D01* X7781Y3624D02* X7834D01* Y3628D02* X7781D01* X7834Y3632D02* X7781D01* X7834Y3636D02* X7781D01* X7834Y3640D02* X7781D01* X7834Y3644D02* X7781D01* Y3652D02* X7834D01* X7781Y3648D02* X7834D01* Y3656D02* X7781D01* X7834Y3660D02* X7781D01* X7834Y3664D02* X7781D01* Y3668D02* X7834D01* X7781Y3672D02* X7834D01* Y3680D02* X7781D01* X7834Y3676D02* X7781D01* Y3684D02* X7834D01* X7781Y3688D02* X7834D01* Y3692D02* X7781D01* X7834Y3696D02* X7781D01* X7834Y3700D02* X7781D01* X7834Y3704D02* X7781D01* X7834Y3708D02* X7781D01* Y3716D02* X7834D01* X7781Y3712D02* X7834D01* Y3720D02* X7781D01* X7834Y3724D02* X7781D01* X7834Y3728D02* X7781D01* Y3732D02* X7834D01* X7781Y3736D02* X7834D01* Y3784D02* X7781D01* X7834Y3788D02* X7781D01* X7834Y3792D02* X7781D01* Y3796D02* X7834D01* X7781Y3800D02* X7834D01* Y3776D02* X7781D01* X7834Y3780D02* X7781D01* Y3772D02* X7834D01* X7781Y3768D02* X7834D01* Y3760D02* X7781D01* X7834Y3764D02* X7781D01* Y3756D02* X7834D01* X7781Y3752D02* X7834D01* Y3748D02* X7781D01* X7834Y3744D02* X7781D01* X7834Y3740D02* X7781D01* X7671Y3735D02* X7679Y3741D01* X7683Y3746D01* Y3766D02* X7677Y3774D01* X7671Y3777D01* X7651D02* X7644Y3771D01* X7640Y3766D01* Y3746D02* X7646Y3738D01* X7651Y3735D01* X5075Y2871D02* X5067Y2876D01* X5062Y2884D01* Y2904D02* X5067Y2912D01* X5075Y2918D01* X5095D02* X5103Y2913D01* X5108Y2904D01* Y2884D02* X5103Y2877D01* X5095Y2871D01* X5125Y3021D02* X5117Y3026D01* X5112Y3034D01* Y3054D02* X5117Y3062D01* X5125Y3068D01* X5145D02* X5153Y3063D01* X5158Y3054D01* Y3034D02* X5153Y3027D01* X5145Y3021D01* X5312Y3054D02* X5317Y3062D01* X5325Y3068D01* X5345D02* X5353Y3063D01* X5358Y3054D01* Y3034D02* X5353Y3027D01* X5345Y3021D01* X5325D02* X5317Y3026D01* X5312Y3034D01* X5295Y2871D02* X5303Y2877D01* X5308Y2884D01* Y2904D02* X5303Y2913D01* X5295Y2918D01* X5275D02* X5267Y2912D01* X5262Y2904D01* Y2884D02* X5267Y2876D01* X5275Y2871D01* X5565Y2513D02* X5574Y2518D01* X5581Y2525D01* X5585Y2533D01* Y2553D02* X5580Y2562D01* X5573Y2569D01* X5565Y2573D01* X5545D02* X5536Y2569D01* X5529Y2561D01* X5525Y2553D01* Y2533D02* X5530Y2524D01* X5537Y2518D01* X5545Y2513D01* X5475Y2871D02* X5467Y2876D01* X5462Y2884D01* Y2904D02* X5467Y2912D01* X5475Y2918D01* X5495D02* X5503Y2913D01* X5508Y2904D01* Y2884D02* X5503Y2877D01* X5495Y2871D01* X5525Y3021D02* X5517Y3026D01* X5512Y3034D01* Y3054D02* X5517Y3062D01* X5525Y3068D01* X5545D02* X5553Y3063D01* X5558Y3054D01* Y3034D02* X5553Y3027D01* X5545Y3021D01* X5675Y2871D02* X5667Y2876D01* X5662Y2884D01* Y2904D02* X5667Y2912D01* X5675Y2918D01* X5695D02* X5703Y2913D01* X5708Y2904D01* Y2884D02* X5703Y2877D01* X5695Y2871D01* X5725Y3021D02* X5717Y3026D01* X5712Y3034D01* Y3054D02* X5717Y3062D01* X5725Y3068D01* X5745D02* X5753Y3063D01* X5758Y3054D01* Y3034D02* X5753Y3027D01* X5745Y3021D01* X5622Y3446D02* X5627Y3438D01* X5635Y3433D01* Y3430D02* X5627Y3424D01* X5622Y3416D01* Y3396D02* X5627Y3388D01* X5635Y3383D01* X5655D02* X5663Y3389D01* X5668Y3396D01* Y3416D02* X5663Y3425D01* X5655Y3430D01* Y3433D02* X5663Y3439D01* X5668Y3446D01* Y3466D02* X5663Y3475D01* X5655Y3480D01* Y3483D02* X5663Y3489D01* X5668Y3496D01* Y3516D02* X5663Y3525D01* X5655Y3530D01* X5635D02* X5627Y3524D01* X5622Y3516D01* Y3496D02* X5627Y3488D01* X5635Y3483D01* Y3480D02* X5627Y3474D01* X5622Y3466D01* X5568Y3696D02* X5563Y3689D01* X5555Y3683D01* X5535D02* X5527Y3688D01* X5522Y3696D01* Y3716D02* X5527Y3724D01* X5535Y3730D01* Y3733D02* X5527Y3738D01* X5522Y3746D01* Y3766D02* X5527Y3774D01* X5535Y3780D01* Y3783D02* X5527Y3788D01* X5522Y3796D01* Y3816D02* X5527Y3824D01* X5535Y3830D01* Y3833D02* X5527Y3838D01* X5522Y3846D01* Y3866D02* X5527Y3874D01* X5535Y3880D01* Y3883D02* X5527Y3888D01* X5522Y3896D01* Y3916D02* X5527Y3924D01* X5535Y3930D01* Y3933D02* X5527Y3938D01* X5522Y3946D01* Y3966D02* X5527Y3974D01* X5535Y3980D01* Y3983D02* X5527Y3988D01* X5522Y3996D01* Y4016D02* X5527Y4024D01* X5535Y4030D01* Y4033D02* X5527Y4038D01* X5522Y4046D01* Y4066D02* X5527Y4074D01* X5535Y4080D01* X5555D02* X5563Y4075D01* X5568Y4066D01* Y4046D02* X5563Y4039D01* X5555Y4033D01* Y4030D02* X5563Y4025D01* X5568Y4016D01* Y3996D02* X5563Y3989D01* X5555Y3983D01* Y3980D02* X5563Y3975D01* X5568Y3966D01* Y3946D02* X5563Y3939D01* X5555Y3933D01* Y3930D02* X5563Y3925D01* X5568Y3916D01* Y3896D02* X5563Y3889D01* X5555Y3883D01* Y3880D02* X5563Y3875D01* X5568Y3866D01* Y3846D02* X5563Y3839D01* X5555Y3833D01* Y3830D02* X5563Y3825D01* X5568Y3816D01* Y3796D02* X5563Y3789D01* X5555Y3783D01* Y3780D02* X5563Y3775D01* X5568Y3766D01* Y3746D02* X5563Y3739D01* X5555Y3733D01* Y3730D02* X5563Y3725D01* X5568Y3716D01* X6175Y3371D02* X6167Y3376D01* X6162Y3384D01* Y3404D02* X6167Y3412D01* X6175Y3418D01* X6195D02* X6203Y3413D01* X6208Y3404D01* Y3384D02* X6203Y3377D01* X6195Y3371D01* X6212Y3354D02* X6217Y3362D01* X6225Y3368D01* X6245D02* X6253Y3363D01* X6258Y3354D01* Y3334D02* X6253Y3327D01* X6245Y3321D01* X6225D02* X6217Y3326D01* X6212Y3334D01* X6275Y3271D02* X6267Y3276D01* X6262Y3284D01* Y3304D02* X6267Y3312D01* X6275Y3318D01* X6295D02* X6303Y3313D01* X6308Y3304D01* Y3284D02* X6303Y3277D01* X6295Y3271D01* X6375Y3171D02* X6367Y3176D01* X6362Y3184D01* Y3204D02* X6367Y3212D01* X6375Y3218D01* X6395D02* X6403Y3213D01* X6408Y3204D01* Y3184D02* X6403Y3177D01* X6395Y3171D01* Y2971D02* X6403Y2977D01* X6408Y2984D01* Y3004D02* X6403Y3013D01* X6395Y3018D01* X6375D02* X6367Y3012D01* X6362Y3004D01* Y2984D02* X6367Y2976D01* X6375Y2971D01* X6295Y3071D02* X6303Y3077D01* X6308Y3084D01* Y3104D02* X6303Y3113D01* X6295Y3118D01* X6275D02* X6267Y3112D01* X6262Y3104D01* Y3084D02* X6267Y3076D01* X6275Y3071D01* X6195Y3171D02* X6203Y3177D01* X6208Y3184D01* Y3204D02* X6203Y3213D01* X6195Y3218D01* X6175D02* X6167Y3212D01* X6162Y3204D01* Y3184D02* X6167Y3176D01* X6175Y3171D01* X5979Y2513D02* X5987Y2518D01* X5994Y2525D01* X5998Y2533D01* Y2553D02* X5994Y2562D01* X5987Y2569D01* X5979Y2573D01* X5959D02* X5950Y2569D01* X5943Y2561D01* X5939Y2553D01* Y2533D02* X5943Y2524D01* X5950Y2518D01* X5959Y2513D01* X5875Y2871D02* X5867Y2876D01* X5862Y2884D01* Y2904D02* X5867Y2912D01* X5875Y2918D01* X5895D02* X5903Y2913D01* X5908Y2904D01* Y2884D02* X5903Y2877D01* X5895Y2871D01* X5925Y3021D02* X5917Y3026D01* X5912Y3034D01* Y3054D02* X5917Y3062D01* X5925Y3068D01* X5945D02* X5953Y3063D01* X5958Y3054D01* Y3034D02* X5953Y3027D01* X5945Y3021D01* X6075Y2871D02* X6067Y2876D01* X6062Y2884D01* Y2904D02* X6067Y2912D01* X6075Y2918D01* X6095D02* X6103Y2913D01* X6108Y2904D01* Y2884D02* X6103Y2877D01* X6095Y2871D01* X6275D02* X6267Y2876D01* X6262Y2884D01* Y2904D02* X6267Y2912D01* X6275Y2918D01* X6295D02* X6303Y2913D01* X6308Y2904D01* Y2884D02* X6303Y2877D01* X6295Y2871D01* X6376Y2513D02* X6368Y2518D01* X6361Y2524D01* X6356Y2533D01* Y2553D02* X6360Y2561D01* X6367Y2569D01* X6376Y2573D01* X6396D02* X6404Y2569D01* X6411Y2562D01* X6416Y2553D01* Y2533D02* X6412Y2525D01* X6405Y2518D01* X6396Y2513D01* X7336Y2711D02* X7331Y2714D01* X7325Y2722D01* Y2742D02* X7329Y2748D01* X7336Y2754D01* X7356D02* X7362Y2750D01* X7368Y2742D01* Y2722D02* X7364Y2717D01* X7356Y2711D01* Y2790D02* X7364Y2796D01* X7368Y2801D01* Y2821D02* X7362Y2829D01* X7356Y2832D01* X7336D02* X7329Y2826D01* X7325Y2821D01* Y2801D02* X7331Y2793D01* X7336Y2790D01* Y2868D02* X7331Y2872D01* X7325Y2880D01* Y2900D02* X7329Y2905D01* X7336Y2911D01* X7356D02* X7362Y2908D01* X7368Y2900D01* Y2880D02* X7364Y2875D01* X7356Y2868D01* Y2947D02* X7364Y2953D01* X7368Y2959D01* Y2979D02* X7362Y2986D01* X7356Y2990D01* X7336D02* X7329Y2984D01* X7325Y2979D01* Y2959D02* X7331Y2951D01* X7336Y2947D01* Y3026D02* X7331Y3029D01* X7325Y3037D01* Y3057D02* X7329Y3062D01* X7336Y3069D01* X7356D02* X7362Y3065D01* X7368Y3057D01* Y3037D02* X7364Y3032D01* X7356Y3026D01* Y3105D02* X7364Y3111D01* X7368Y3116D01* Y3136D02* X7362Y3144D01* X7356Y3147D01* X7336D02* X7329Y3141D01* X7325Y3136D01* Y3116D02* X7331Y3108D01* X7336Y3105D01* Y3183D02* X7331Y3187D01* X7325Y3195D01* Y3215D02* X7329Y3220D01* X7336Y3226D01* X7356D02* X7362Y3223D01* X7368Y3215D01* Y3195D02* X7364Y3189D01* X7356Y3183D01* Y3262D02* X7364Y3268D01* X7368Y3273D01* Y3293D02* X7362Y3301D01* X7356Y3305D01* X7336D02* X7329Y3299D01* X7325Y3293D01* Y3273D02* X7331Y3266D01* X7336Y3262D01* X7356Y3420D02* X7364Y3426D01* X7368Y3431D01* Y3451D02* X7362Y3459D01* X7356Y3462D01* X7336D02* X7329Y3456D01* X7325Y3451D01* Y3431D02* X7331Y3423D01* X7336Y3420D01* Y3498D02* X7331Y3502D01* X7325Y3510D01* Y3530D02* X7329Y3535D01* X7336Y3541D01* X7356D02* X7362Y3538D01* X7368Y3530D01* Y3510D02* X7364Y3504D01* X7356Y3498D01* Y3577D02* X7364Y3583D01* X7368Y3588D01* Y3608D02* X7362Y3616D01* X7356Y3620D01* X7336D02* X7329Y3614D01* X7325Y3608D01* Y3588D02* X7331Y3581D01* X7336Y3577D01* Y3656D02* X7331Y3659D01* X7325Y3667D01* Y3687D02* X7329Y3692D01* X7336Y3698D01* X7356D02* X7362Y3695D01* X7368Y3687D01* Y3667D02* X7364Y3662D01* X7356Y3656D01* Y3735D02* X7364Y3741D01* X7368Y3746D01* Y3766D02* X7362Y3774D01* X7356Y3777D01* X7336D02* X7329Y3771D01* X7325Y3766D01* Y3746D02* X7331Y3738D01* X7336Y3735D01* Y3813D02* X7331Y3817D01* X7325Y3825D01* Y3845D02* X7329Y3850D01* X7336Y3856D01* X7356D02* X7362Y3853D01* X7368Y3845D01* Y3825D02* X7364Y3819D01* X7356Y3813D01* Y3892D02* X7364Y3898D01* X7368Y3903D01* Y3923D02* X7362Y3931D01* X7356Y3935D01* X7336D02* X7329Y3929D01* X7325Y3923D01* Y3903D02* X7331Y3895D01* X7336Y3892D01* Y3971D02* X7331Y3974D01* X7325Y3982D01* Y4002D02* X7329Y4007D01* X7336Y4013D01* X7356D02* X7362Y4010D01* X7368Y4002D01* Y3982D02* X7364Y3977D01* X7356Y3971D01* Y4050D02* X7364Y4056D01* X7368Y4061D01* Y4081D02* X7362Y4089D01* X7356Y4092D01* X7336D02* X7329Y4086D01* X7325Y4081D01* Y4061D02* X7331Y4053D01* X7336Y4050D01* X7073Y4147D02* X7065Y4151D01* X7057Y4158D01* X7053Y4167D01* Y4187D02* X7057Y4195D01* X7064Y4202D01* X7073Y4207D01* X7093D02* X7101Y4203D01* X7108Y4196D01* X7113Y4187D01* Y4167D02* X7108Y4159D01* X7102Y4152D01* X7093Y4147D01* X7336Y4128D02* X7331Y4132D01* X7325Y4140D01* Y4160D02* X7329Y4165D01* X7336Y4171D01* X7356D02* X7362Y4167D01* X7368Y4160D01* Y4140D02* X7364Y4134D01* X7356Y4128D01* Y4207D02* X7364Y4213D01* X7368Y4218D01* Y4238D02* X7362Y4246D01* X7356Y4250D01* X7336D02* X7329Y4244D01* X7325Y4238D01* Y4218D02* X7331Y4210D01* X7336Y4207D01* Y4286D02* X7331Y4289D01* X7325Y4297D01* Y4317D02* X7329Y4322D01* X7336Y4328D01* X7356D02* X7362Y4325D01* X7368Y4317D01* Y4297D02* X7364Y4292D01* X7356Y4286D01* Y4365D02* X7364Y4371D01* X7368Y4376D01* Y4396D02* X7362Y4404D01* X7356Y4407D01* X7336D02* X7329Y4401D01* X7325Y4396D01* Y4376D02* X7331Y4368D01* X7336Y4365D01* Y4758D02* X7331Y4762D01* X7325Y4770D01* Y4790D02* X7329Y4795D01* X7336Y4801D01* X7356D02* X7362Y4797D01* X7368Y4790D01* Y4770D02* X7364Y4764D01* X7356Y4758D01* Y4680D02* X7364Y4686D01* X7368Y4691D01* Y4711D02* X7362Y4719D01* X7356Y4722D01* X7336D02* X7329Y4716D01* X7325Y4711D01* Y4691D02* X7331Y4683D01* X7336Y4680D01* X7514Y4601D02* X7522Y4607D01* X7525Y4612D01* Y4632D02* X7519Y4640D01* X7514Y4643D01* X7494D02* X7486Y4637D01* X7483Y4632D01* Y4612D02* X7489Y4604D01* X7494Y4601D01* X7356D02* X7364Y4607D01* X7368Y4612D01* Y4632D02* X7362Y4640D01* X7356Y4643D01* X7336D02* X7329Y4637D01* X7325Y4632D01* Y4612D02* X7331Y4604D01* X7336Y4601D01* Y4522D02* X7331Y4525D01* X7325Y4533D01* Y4553D02* X7329Y4559D01* X7336Y4565D01* X7356D02* X7362Y4561D01* X7368Y4553D01* Y4533D02* X7364Y4528D01* X7356Y4522D01* Y4443D02* X7364Y4449D01* X7368Y4455D01* Y4475D02* X7362Y4482D01* X7356Y4486D01* X7336D02* X7329Y4480D01* X7325Y4475D01* Y4455D02* X7331Y4447D01* X7336Y4443D01* X7494D02* X7489Y4447D01* X7483Y4455D01* Y4475D02* X7486Y4480D01* X7494Y4486D01* X7514D02* X7519Y4482D01* X7525Y4475D01* Y4455D02* X7522Y4449D01* X7514Y4443D01* Y4286D02* X7522Y4292D01* X7525Y4297D01* Y4317D02* X7519Y4325D01* X7514Y4328D01* X7494D02* X7486Y4322D01* X7483Y4317D01* Y4297D02* X7489Y4289D01* X7494Y4286D01* Y4128D02* X7489Y4132D01* X7483Y4140D01* Y4160D02* X7486Y4165D01* X7494Y4171D01* X7514D02* X7519Y4167D01* X7525Y4160D01* Y4140D02* X7522Y4134D01* X7514Y4128D01* Y3971D02* X7522Y3977D01* X7525Y3982D01* Y4002D02* X7519Y4010D01* X7514Y4013D01* X7494D02* X7486Y4007D01* X7483Y4002D01* Y3982D02* X7489Y3974D01* X7494Y3971D01* Y3813D02* X7489Y3817D01* X7483Y3825D01* Y3845D02* X7486Y3850D01* X7494Y3856D01* X7514D02* X7519Y3853D01* X7525Y3845D01* Y3825D02* X7522Y3819D01* X7514Y3813D01* Y3656D02* X7522Y3662D01* X7525Y3667D01* Y3687D02* X7519Y3695D01* X7514Y3698D01* X7494D02* X7486Y3692D01* X7483Y3687D01* Y3667D02* X7489Y3659D01* X7494Y3656D01* Y3498D02* X7489Y3502D01* X7483Y3510D01* Y3530D02* X7486Y3535D01* X7494Y3541D01* X7514D02* X7519Y3538D01* X7525Y3530D01* Y3510D02* X7522Y3504D01* X7514Y3498D01* Y3341D02* X7522Y3347D01* X7525Y3352D01* Y3372D02* X7519Y3380D01* X7514Y3383D01* X7494D02* X7486Y3377D01* X7483Y3372D01* Y3352D02* X7489Y3344D01* X7494Y3341D01* X7356D02* X7364Y3347D01* X7368Y3352D01* Y3372D02* X7362Y3380D01* X7356Y3383D01* X7336D02* X7329Y3377D01* X7325Y3372D01* Y3352D02* X7331Y3344D01* X7336Y3341D01* X7093Y3368D02* X7102Y3372D01* X7108Y3380D01* X7113Y3388D01* Y3408D02* X7108Y3416D01* X7101Y3423D01* X7093Y3428D01* X7073D02* X7064Y3423D01* X7057Y3416D01* X7053Y3408D01* Y3388D02* X7057Y3379D01* X7065Y3372D01* X7073Y3368D01* X6699Y3758D02* X6708Y3762D01* X6715Y3769D01* X6719Y3777D01* Y3797D02* X6714Y3806D01* X6707Y3813D01* X6699Y3817D01* X6679D02* X6670Y3813D01* X6663Y3806D01* X6659Y3797D01* Y3777D02* X6664Y3769D01* X6671Y3762D01* X6679Y3758D01* X6445Y3521D02* X6453Y3527D01* X6458Y3534D01* Y3554D02* X6453Y3563D01* X6445Y3568D01* X6425D02* X6417Y3562D01* X6412Y3554D01* Y3534D02* X6417Y3526D01* X6425Y3521D01* X6395Y3571D02* X6403Y3577D01* X6408Y3584D01* Y3604D02* X6403Y3613D01* X6395Y3618D01* X6375D02* X6367Y3612D01* X6362Y3604D01* Y3584D02* X6367Y3576D01* X6375Y3571D01* X6295Y3471D02* X6303Y3477D01* X6308Y3484D01* Y3504D02* X6303Y3513D01* X6295Y3518D01* X6275D02* X6267Y3512D01* X6262Y3504D01* Y3484D02* X6267Y3476D01* X6275Y3471D01* X6195Y3571D02* X6203Y3577D01* X6208Y3584D01* Y3604D02* X6203Y3613D01* X6195Y3618D01* X6175D02* X6167Y3612D01* X6162Y3604D01* Y3584D02* X6167Y3576D01* X6175Y3571D01* Y3771D02* X6167Y3776D01* X6162Y3784D01* Y3804D02* X6167Y3812D01* X6175Y3818D01* X6195D02* X6203Y3813D01* X6208Y3804D01* Y3784D02* X6203Y3777D01* X6195Y3771D01* X6275Y3671D02* X6267Y3676D01* X6262Y3684D01* Y3704D02* X6267Y3712D01* X6275Y3718D01* X6295D02* X6303Y3713D01* X6308Y3704D01* Y3684D02* X6303Y3677D01* X6295Y3671D01* X6375Y3771D02* X6367Y3776D01* X6362Y3784D01* Y3804D02* X6367Y3812D01* X6375Y3818D01* X6395D02* X6403Y3813D01* X6408Y3804D01* Y3784D02* X6403Y3777D01* X6395Y3771D01* Y3971D02* X6403Y3977D01* X6408Y3984D01* Y4004D02* X6403Y4013D01* X6395Y4018D01* X6375D02* X6367Y4012D01* X6362Y4004D01* Y3984D02* X6367Y3976D01* X6375Y3971D01* X6295Y3871D02* X6303Y3877D01* X6308Y3884D01* Y3904D02* X6303Y3913D01* X6295Y3918D01* X6275D02* X6267Y3912D01* X6262Y3904D01* Y3884D02* X6267Y3876D01* X6275Y3871D01* X6175Y3971D02* X6167Y3976D01* X6162Y3984D01* Y4004D02* X6167Y4012D01* X6175Y4018D01* X6195D02* X6203Y4013D01* X6208Y4004D01* Y3984D02* X6203Y3977D01* X6195Y3971D01* X6275Y4071D02* X6267Y4076D01* X6262Y4084D01* Y4104D02* X6267Y4112D01* X6275Y4118D01* X6295D02* X6303Y4113D01* X6308Y4104D01* Y4084D02* X6303Y4077D01* X6295Y4071D01* X6375Y4171D02* X6367Y4176D01* X6362Y4184D01* Y4204D02* X6367Y4212D01* X6375Y4218D01* X6395D02* X6403Y4213D01* X6408Y4204D01* Y4184D02* X6403Y4177D01* X6395Y4171D01* X6425Y4521D02* X6417Y4526D01* X6412Y4534D01* Y4554D02* X6417Y4562D01* X6425Y4568D01* X6445D02* X6453Y4563D01* X6458Y4554D01* Y4534D02* X6453Y4527D01* X6445Y4521D01* Y4621D02* X6453Y4627D01* X6458Y4634D01* Y4654D02* X6453Y4663D01* X6445Y4668D01* X6425D02* X6417Y4662D01* X6412Y4654D01* Y4634D02* X6417Y4626D01* X6425Y4621D01* X6175Y4571D02* X6167Y4576D01* X6162Y4584D01* Y4604D02* X6167Y4612D01* X6175Y4618D01* X6195D02* X6203Y4613D01* X6208Y4604D01* Y4584D02* X6203Y4577D01* X6195Y4571D01* X6275Y4471D02* X6267Y4476D01* X6262Y4484D01* Y4504D02* X6267Y4512D01* X6275Y4518D01* X6295D02* X6303Y4513D01* X6308Y4504D01* Y4484D02* X6303Y4477D01* X6295Y4471D01* X6395Y4371D02* X6403Y4377D01* X6408Y4384D01* Y4404D02* X6403Y4413D01* X6395Y4418D01* X6375D02* X6367Y4412D01* X6362Y4404D01* Y4384D02* X6367Y4376D01* X6375Y4371D01* X6295Y4271D02* X6303Y4277D01* X6308Y4284D01* Y4304D02* X6303Y4313D01* X6295Y4318D01* X6275D02* X6267Y4312D01* X6262Y4304D01* Y4284D02* X6267Y4276D01* X6275Y4271D01* X6195Y4371D02* X6203Y4377D01* X6208Y4384D01* Y4404D02* X6203Y4413D01* X6195Y4418D01* X6175D02* X6167Y4412D01* X6162Y4404D01* Y4384D02* X6167Y4376D01* X6175Y4371D01* X5975D02* X5967Y4376D01* X5962Y4384D01* Y4404D02* X5967Y4412D01* X5975Y4418D01* X5995D02* X6003Y4413D01* X6008Y4404D01* Y4384D02* X6003Y4377D01* X5995Y4371D01* X6075Y4471D02* X6067Y4476D01* X6062Y4484D01* Y4504D02* X6067Y4512D01* X6075Y4518D01* X6095D02* X6103Y4513D01* X6108Y4504D01* Y4484D02* X6103Y4477D01* X6095Y4471D01* X5995Y4571D02* X6003Y4577D01* X6008Y4584D01* Y4604D02* X6003Y4613D01* X5995Y4618D01* X5975D02* X5967Y4612D01* X5962Y4604D01* Y4584D02* X5967Y4576D01* X5975Y4571D01* X5808Y4604D02* X5803Y4613D01* X5795Y4618D01* X5775D02* X5767Y4612D01* X5762Y4604D01* Y4584D02* X5767Y4576D01* X5775Y4571D01* X5795D02* X5803Y4577D01* X5808Y4584D01* X5895Y4471D02* X5903Y4477D01* X5908Y4484D01* Y4504D02* X5903Y4513D01* X5895Y4518D01* X5875D02* X5867Y4512D01* X5862Y4504D01* Y4484D02* X5867Y4476D01* X5875Y4471D01* X5762Y4404D02* X5767Y4412D01* X5775Y4418D01* X5795D02* X5803Y4413D01* X5808Y4404D01* Y4384D02* X5803Y4377D01* X5795Y4371D01* X5775D02* X5767Y4376D01* X5762Y4384D01* X5695Y4471D02* X5703Y4477D01* X5708Y4484D01* Y4504D02* X5703Y4513D01* X5695Y4518D01* X5675D02* X5667Y4512D01* X5662Y4504D01* Y4484D02* X5667Y4476D01* X5675Y4471D01* X5595Y4571D02* X5603Y4577D01* X5608Y4584D01* Y4604D02* X5603Y4613D01* X5595Y4618D01* X5575D02* X5567Y4612D01* X5562Y4604D01* Y4584D02* X5567Y4576D01* X5575Y4571D01* X5595Y4371D02* X5603Y4377D01* X5608Y4384D01* Y4404D02* X5603Y4413D01* X5595Y4418D01* X5575D02* X5567Y4412D01* X5562Y4404D01* Y4384D02* X5567Y4376D01* X5575Y4371D01* X5545Y4421D02* X5553Y4427D01* X5558Y4434D01* Y4454D02* X5553Y4463D01* X5545Y4468D01* X5525D02* X5517Y4462D01* X5512Y4454D01* Y4434D02* X5517Y4426D01* X5525Y4421D01* X5495Y4471D02* X5503Y4477D01* X5508Y4484D01* Y4504D02* X5503Y4513D01* X5495Y4518D01* X5475D02* X5467Y4512D01* X5462Y4504D01* Y4484D02* X5467Y4476D01* X5475Y4471D01* X5358Y4434D02* X5353Y4427D01* X5345Y4421D01* X5325D02* X5317Y4426D01* X5312Y4434D01* Y4454D02* X5317Y4462D01* X5325Y4468D01* X5345D02* X5353Y4463D01* X5358Y4454D01* X5375Y4571D02* X5367Y4576D01* X5362Y4584D01* Y4604D02* X5367Y4612D01* X5375Y4618D01* X5395D02* X5403Y4613D01* X5408Y4604D01* Y4584D02* X5403Y4577D01* X5395Y4571D01* X5195D02* X5203Y4577D01* X5208Y4584D01* Y4604D02* X5203Y4613D01* X5195Y4618D01* X5175D02* X5167Y4612D01* X5162Y4604D01* Y4584D02* X5167Y4576D01* X5175Y4571D01* X5145Y4421D02* X5153Y4427D01* X5158Y4434D01* Y4454D02* X5153Y4463D01* X5145Y4468D01* X5125D02* X5117Y4462D01* X5112Y4454D01* Y4434D02* X5117Y4426D01* X5125Y4421D01* X4675Y4471D02* X4667Y4476D01* X4662Y4484D01* Y4504D02* X4667Y4512D01* X4675Y4518D01* X4695D02* X4703Y4513D01* X4708Y4504D01* Y4484D02* X4703Y4477D01* X4695Y4471D01* X4775D02* X4767Y4476D01* X4762Y4484D01* Y4504D02* X4767Y4512D01* X4775Y4518D01* X4795D02* X4803Y4513D01* X4808Y4504D01* Y4484D02* X4803Y4477D01* X4795Y4471D01* Y4571D02* X4803Y4577D01* X4808Y4584D01* Y4604D02* X4803Y4613D01* X4795Y4618D01* X4775D02* X4767Y4612D01* X4762Y4604D01* Y4584D02* X4767Y4576D01* X4775Y4571D01* X4962Y4604D02* X4967Y4612D01* X4975Y4618D01* X4995D02* X5003Y4613D01* X5008Y4604D01* Y4584D02* X5003Y4577D01* X4995Y4571D01* X4975D02* X4967Y4576D01* X4962Y4584D01* X4945Y4421D02* X4953Y4427D01* X4958Y4434D01* Y4454D02* X4953Y4463D01* X4945Y4468D01* X4925D02* X4917Y4462D01* X4912Y4454D01* Y4434D02* X4917Y4426D01* X4925Y4421D01* X4845Y4321D02* X4853Y4327D01* X4858Y4334D01* Y4354D02* X4853Y4363D01* X4845Y4368D01* X4825D02* X4817Y4362D01* X4812Y4354D01* Y4334D02* X4817Y4326D01* X4825Y4321D01* X4695Y4271D02* X4703Y4277D01* X4708Y4284D01* Y4304D02* X4703Y4313D01* X4695Y4318D01* X4675D02* X4667Y4312D01* X4662Y4304D01* Y4284D02* X4667Y4276D01* X4675Y4271D01* Y4071D02* X4667Y4076D01* X4662Y4084D01* Y4104D02* X4667Y4112D01* X4675Y4118D01* X4695D02* X4703Y4113D01* X4708Y4104D01* Y4084D02* X4703Y4077D01* X4695Y4071D01* X4825Y4121D02* X4817Y4126D01* X4812Y4134D01* Y4154D02* X4817Y4162D01* X4825Y4168D01* X4845D02* X4853Y4163D01* X4858Y4154D01* Y4134D02* X4853Y4127D01* X4845Y4121D01* X4825Y3921D02* X4817Y3926D01* X4812Y3934D01* Y3954D02* X4817Y3962D01* X4825Y3968D01* X4845D02* X4853Y3963D01* X4858Y3954D01* Y3934D02* X4853Y3927D01* X4845Y3921D01* Y3721D02* X4853Y3727D01* X4858Y3734D01* Y3754D02* X4853Y3763D01* X4845Y3768D01* X4825D02* X4817Y3762D01* X4812Y3754D01* Y3734D02* X4817Y3726D01* X4825Y3721D01* X4695Y3671D02* X4703Y3677D01* X4708Y3684D01* Y3704D02* X4703Y3713D01* X4695Y3718D01* X4675D02* X4667Y3712D01* X4662Y3704D01* Y3684D02* X4667Y3676D01* X4675Y3671D01* X4380Y3855D02* X4389Y3860D01* X4396Y3867D01* X4400Y3875D01* Y3895D02* X4395Y3904D01* X4388Y3911D01* X4380Y3915D01* X4360D02* X4351Y3910D01* X4344Y3903D01* X4340Y3895D01* Y3875D02* X4345Y3866D01* X4352Y3859D01* X4360Y3855D01* X4675Y3471D02* X4667Y3476D01* X4662Y3484D01* Y3504D02* X4667Y3512D01* X4675Y3518D01* X4695D02* X4703Y3513D01* X4708Y3504D01* Y3484D02* X4703Y3477D01* X4695Y3471D01* X4825Y3521D02* X4817Y3526D01* X4812Y3534D01* Y3554D02* X4817Y3562D01* X4825Y3568D01* X4845D02* X4853Y3563D01* X4858Y3554D01* Y3534D02* X4853Y3527D01* X4845Y3521D01* Y3321D02* X4853Y3327D01* X4858Y3334D01* Y3354D02* X4853Y3363D01* X4845Y3368D01* X4825D02* X4817Y3362D01* X4812Y3354D01* Y3334D02* X4817Y3326D01* X4825Y3321D01* X4695Y3271D02* X4703Y3277D01* X4708Y3284D01* Y3304D02* X4703Y3313D01* X4695Y3318D01* X4675D02* X4667Y3312D01* X4662Y3304D01* Y3284D02* X4667Y3276D01* X4675Y3271D01* X4825Y3121D02* X4817Y3126D01* X4812Y3134D01* Y3154D02* X4817Y3162D01* X4825Y3168D01* X4845D02* X4853Y3163D01* X4858Y3154D01* Y3134D02* X4853Y3127D01* X4845Y3121D01* X4925Y3021D02* X4917Y3026D01* X4912Y3034D01* Y3054D02* X4917Y3062D01* X4925Y3068D01* X4945D02* X4953Y3063D01* X4958Y3054D01* Y3034D02* X4953Y3027D01* X4945Y3021D01* X4862Y2884D02* X4867Y2876D01* X4875Y2871D01* X4895D02* X4903Y2877D01* X4908Y2884D01* Y2904D02* X4903Y2913D01* X4895Y2918D01* X4875D02* X4867Y2912D01* X4862Y2904D01* X4795Y2971D02* X4803Y2977D01* X4808Y2984D01* Y3004D02* X4803Y3013D01* X4795Y3018D01* X4775D02* X4767Y3012D01* X4762Y3004D01* Y2984D02* X4767Y2976D01* X4775Y2971D01* X4745Y3021D02* X4753Y3027D01* X4758Y3034D01* Y3054D02* X4753Y3063D01* X4745Y3068D01* X4725D02* X4717Y3062D01* X4712Y3054D01* Y3034D02* X4717Y3026D01* X4725Y3021D01* X4695Y3071D02* X4703Y3077D01* X4708Y3084D01* Y3104D02* X4703Y3113D01* X4695Y3118D01* X4675D02* X4667Y3112D01* X4662Y3104D01* Y3084D02* X4667Y3076D01* X4675Y3071D01* X4625Y2921D02* X4617Y2926D01* X4612Y2934D01* Y2954D02* X4617Y2962D01* X4625Y2968D01* X4645D02* X4653Y2963D01* X4658Y2954D01* Y2934D02* X4653Y2927D01* X4645Y2921D01* X4725D02* X4717Y2926D01* X4712Y2934D01* Y2954D02* X4717Y2962D01* X4725Y2968D01* X4745D02* X4753Y2963D01* X4758Y2954D01* Y2934D02* X4753Y2927D01* X4745Y2921D01* Y2821D02* X4753Y2827D01* X4758Y2834D01* Y2854D02* X4753Y2863D01* X4745Y2868D01* X4725D02* X4717Y2862D01* X4712Y2854D01* Y2834D02* X4717Y2826D01* X4725Y2821D01* X4429Y1309D02* X4438Y1313D01* X4445Y1320D01* X4449Y1329D01* Y1349D02* X4444Y1357D01* X4437Y1364D01* X4429Y1368D01* X4409D02* X4400Y1364D01* X4393Y1357D01* X4389Y1349D01* Y1329D02* X4394Y1320D01* X4401Y1313D01* X4409Y1309D01* X7651Y4050D02* X7646Y4053D01* X7640Y4061D01* Y4081D02* X7644Y4086D01* X7651Y4092D01* X7671D02* X7677Y4089D01* X7683Y4081D01* Y4061D02* X7679Y4056D01* X7671Y4050D01* X7781Y4068D02* X7834D01* X7781Y4064D02* X7834D01* X7781Y4060D02* X7834D01* Y4056D02* X7781D01* X7834Y4052D02* X7781D01* Y4044D02* X7834D01* X7781Y4048D02* X7834D01* Y4040D02* X7781D01* X7834Y4036D02* X7781D01* Y4032D02* X7834D01* X7781Y4028D02* X7834D01* X7781Y4024D02* X7834D01* Y4016D02* X7781D01* X7834Y4020D02* X7781D01* Y3940D02* X7834D01* X7781Y3936D02* X7834D01* X7781Y3932D02* X7834D01* Y3928D02* X7781D01* X7834Y3924D02* X7781D01* Y3904D02* X7834D01* X7781Y3900D02* X7834D01* X7781Y3896D02* X7834D01* Y3888D02* X7781D01* X7834Y3892D02* X7781D01* Y3884D02* X7834D01* X7781Y3880D02* X7834D01* Y3876D02* X7781D01* X7834Y3872D02* X7781D01* X7834Y3868D02* X7781D01* X7671Y3892D02* X7679Y3898D01* X7683Y3903D01* Y3923D02* X7677Y3931D01* X7671Y3935D01* X7651D02* X7644Y3929D01* X7640Y3923D01* Y3903D02* X7646Y3895D01* X7651Y3892D01* X7781Y3804D02* X7834D01* X7781Y3808D02* X7834D01* X7781Y3812D02* X7834D01* Y3816D02* X7781D01* X7834Y3820D02* X7781D01* Y3828D02* X7834D01* X7781Y3824D02* X7834D01* Y3832D02* X7781D01* X7834Y3836D02* X7781D01* X7834Y3840D02* X7781D01* Y3844D02* X7834D01* X7781Y3848D02* X7834D01* Y3856D02* X7781D01* X7834Y3852D02* X7781D01* Y3860D02* X7834D01* X7781Y3864D02* X7834D01* Y3912D02* X7781D01* X7834Y3908D02* X7781D01* Y3916D02* X7834D01* X7781Y3920D02* X7834D01* Y3944D02* X7781D01* X7834Y3948D02* X7781D01* Y3956D02* X7834D01* X7781Y3952D02* X7834D01* Y3960D02* X7781D01* X7834Y3964D02* X7781D01* X7834Y3968D02* X7781D01* Y3972D02* X7834D01* X7781Y3976D02* X7834D01* Y3984D02* X7781D01* X7834Y3980D02* X7781D01* Y3988D02* X7834D01* X7781Y3992D02* X7834D01* Y3996D02* X7781D01* X7834Y4000D02* X7781D01* X7834Y4004D02* X7781D01* Y4012D02* X7834D01* X7781Y4008D02* X7834D01* Y4072D02* X7781D01* X7834Y4076D02* X7781D01* Y4084D02* X7834D01* X7781Y4080D02* X7834D01* Y4088D02* X7781D01* X7834Y4092D02* X7781D01* X7834Y4096D02* X7781D01* Y4100D02* X7834D01* X7781Y4104D02* X7834D01* Y4112D02* X7781D01* X7834Y4108D02* X7781D01* Y4116D02* X7834D01* X7781Y4120D02* X7834D01* Y4124D02* X7781D01* X7834Y4128D02* X7781D01* X7834Y4132D02* X7781D01* Y4140D02* X7834D01* X7781Y4136D02* X7834D01* Y4168D02* X7781D01* X7834Y4164D02* X7781D01* Y4160D02* X7834D01* X7781Y4156D02* X7834D01* X7781Y4152D02* X7834D01* Y4144D02* X7781D01* X7834Y4148D02* X7781D01* Y4172D02* X7834D01* X7781Y4176D02* X7834D01* X7781Y4180D02* X7834D01* Y4184D02* X7781D01* X7834Y4188D02* X7781D01* X7834Y4360D02* X7781D01* X7834Y4356D02* X7781D01* Y4348D02* X7834D01* X7781Y4352D02* X7834D01* Y4344D02* X7781D01* X7834Y4340D02* X7781D01* X7834Y4336D02* X7781D01* Y4332D02* X7834D01* X7781Y4328D02* X7834D01* X7781Y4284D02* X7834D01* X7781Y4288D02* X7834D01* Y4296D02* X7781D01* X7834Y4292D02* X7781D01* Y4300D02* X7834D01* X7781Y4304D02* X7834D01* X7781Y4308D02* X7834D01* Y4312D02* X7781D01* X7834Y4316D02* X7781D01* Y4324D02* X7834D01* X7781Y4320D02* X7834D01* Y4280D02* X7781D01* X7834Y4276D02* X7781D01* X7834Y4272D02* X7781D01* Y4268D02* X7834D01* X7781Y4264D02* X7834D01* Y4256D02* X7781D01* X7834Y4260D02* X7781D01* Y4252D02* X7834D01* X7781Y4248D02* X7834D01* Y4244D02* X7781D01* X7834Y4240D02* X7781D01* X7834Y4236D02* X7781D01* X7834Y4232D02* X7781D01* X7834Y4228D02* X7781D01* Y4224D02* X7834D01* X7781Y4220D02* X7834D01* X7781Y4216D02* X7834D01* Y4192D02* X7781D01* X7834Y4196D02* X7781D01* Y4204D02* X7834D01* X7781Y4200D02* X7834D01* Y4208D02* X7781D01* X7834Y4212D02* X7781D01* X7671Y4207D02* X7679Y4213D01* X7683Y4218D01* Y4238D02* X7677Y4246D01* X7671Y4250D01* X7651D02* X7644Y4244D01* X7640Y4238D01* Y4218D02* X7646Y4210D01* X7651Y4207D01* Y4365D02* X7646Y4368D01* X7640Y4376D01* Y4396D02* X7644Y4401D01* X7651Y4407D01* X7671D02* X7677Y4404D01* X7683Y4396D01* Y4376D02* X7679Y4371D01* X7671Y4365D01* X7781Y4364D02* X7834D01* X7781Y4368D02* X7834D01* X7781Y4372D02* X7834D01* Y4376D02* X7781D01* X7834Y4380D02* X7781D01* Y4388D02* X7834D01* X7781Y4384D02* X7834D01* Y4392D02* X7781D01* X7834Y4396D02* X7781D01* Y4400D02* X7834D01* X7781Y4404D02* X7834D01* X7781Y4408D02* X7834D01* Y4416D02* X7781D01* X7834Y4412D02* X7781D01* Y4420D02* X7834D01* X7781Y4424D02* X7834D01* Y4428D02* X7781D01* X7834Y4432D02* X7781D01* X7834Y4436D02* X7781D01* X7834Y4440D02* X7781D01* X7834Y4444D02* X7781D01* Y4452D02* X7834D01* X7781Y4448D02* X7834D01* Y4456D02* X7781D01* X7834Y4460D02* X7781D01* Y4464D02* X7834D01* X7781Y4468D02* X7834D01* X7781Y4472D02* X7834D01* Y4480D02* X7781D01* X7834Y4476D02* X7781D01* Y4484D02* X7834D01* X7781Y4488D02* X7834D01* Y4492D02* X7781D01* X7834Y4496D02* X7781D01* X7834Y4500D02* X7781D01* X7834Y4504D02* X7781D01* X7834Y4508D02* X7781D01* Y4516D02* X7834D01* X7781Y4512D02* X7834D01* Y4520D02* X7781D01* X7834Y4524D02* X7781D01* X7834Y4528D02* X7781D01* Y4532D02* X7834D01* X7781Y4536D02* X7834D01* Y4544D02* X7781D01* X7834Y4540D02* X7781D01* Y4548D02* X7834D01* X7781Y4552D02* X7834D01* Y4556D02* X7781D01* X7834Y4560D02* X7781D01* X7834Y4564D02* X7781D01* X7834Y4916D02* X7728D01* X7778Y4863D01* X7780Y4860D01* X7834Y4904D02* X7740D01* X7744Y4900D02* X7834D01* X7781Y4856D02* X7834D01* Y4860D02* X7780D01* X7834Y4912D02* X7732D01* X7728Y4916D02* X7725Y4917D01* X1807D01* X1805Y4916D02* X1426D01* X1802Y4912D02* X1426D01* X1802Y4908D02* X1426D01* Y4940D02* X7834D01* X7767Y4876D02* X7834D01* Y4872D02* X7770D01* X7834Y4928D02* X1426D01* Y4932D02* X7834D01* X7778Y4864D02* X7834D01* Y4868D02* X7774D01* X7834Y4924D02* X1426D01* Y4920D02* X7834D01* X7799Y4878D02* X7740Y4937D01* X8324Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* Y5137D02* X8524Y4937D01* X8324Y4737D01* X8124Y4937D01* X8324Y5137D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* X8099Y5462D01* X7999D02* X7799Y5262D01* X7599Y5462D01* X7799Y5662D01* X7999Y5462D01* X8099D02* X7799Y5162D01* X7499Y5462D01* X7449Y4937D02* X7740D01* X7834Y4960D02* X1426D01* Y4956D02* X7834D01* X7759Y4884D02* X7834D01* Y4908D02* X7736D01* X7799Y4878D02* Y4760D01* X7834Y4776D02* X7781D01* Y4772D02* X7834D01* X7781Y4768D02* X7834D01* Y4792D02* X7781D01* X7834Y4788D02* X7781D01* Y4780D02* X7834D01* X7781Y4784D02* X7834D01* Y4760D02* X7781D01* X7834Y4764D02* X7781D01* Y4756D02* X7834D01* X7781Y4752D02* X7834D01* Y4728D02* X7781D01* X7834Y4724D02* X7781D01* Y4720D02* X7834D01* X7781Y4716D02* X7834D01* X7781Y4712D02* X7834D01* Y4568D02* X7781D01* X7834Y4572D02* X7781D01* Y4580D02* X7834D01* X7781Y4576D02* X7834D01* Y4584D02* X7781D01* X7834Y4588D02* X7781D01* X7834Y4592D02* X7781D01* Y4596D02* X7834D01* X7781Y4600D02* X7834D01* Y4632D02* X7781D01* X7834Y4636D02* X7781D01* Y4628D02* X7834D01* X7781Y4624D02* X7834D01* Y4612D02* X7781D01* X7834Y4608D02* X7781D01* X7834Y4604D02* X7781D01* Y4620D02* X7834D01* X7781Y4616D02* X7834D01* X7799Y4587D02* Y4760D01* X7781Y4744D02* X7834D01* X7781Y4748D02* X7834D01* Y4740D02* X7781D01* X7834Y4736D02* X7781D01* X7834Y4732D02* X7781D01* Y4668D02* X7834D01* X7781Y4672D02* X7834D01* X7781Y4676D02* X7834D01* Y4680D02* X7781D01* X7834Y4684D02* X7781D01* Y4708D02* X7834D01* X7781Y4704D02* X7834D01* Y4696D02* X7781D01* X7834Y4700D02* X7781D01* Y4692D02* X7834D01* X7781Y4688D02* X7834D01* Y4664D02* X7781D01* X7834Y4660D02* X7781D01* Y4656D02* X7834D01* X7781Y4652D02* X7834D01* X7781Y4648D02* X7834D01* Y4640D02* X7781D01* X7834Y4644D02* X7781D01* Y4796D02* X7834D01* X7781Y4800D02* X7834D01* X7781Y4804D02* X7834D01* Y4808D02* X7781D01* X7834Y4812D02* X7781D01* Y4820D02* X7834D01* X7781Y4816D02* X7834D01* Y4824D02* X7781D01* X7834Y4828D02* X7781D01* X7834Y4832D02* X7781D01* Y4836D02* X7834D01* X7781Y4840D02* X7834D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X8024D02* X8324Y1300D01* Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y800D02* X8524Y1000D01* X8324Y1200D01* X8124Y1000D01* X8324Y800D01* Y575D02* Y1425D01* Y1300D02* X8624Y1000D01* X8324Y700D01* X8024Y1000D01* X7834Y988D02* X1426D01* X1536Y894D02* X1509D01* X1500Y886D02* X1509Y894D01* X1426Y976D02* X7834D01* Y980D02* X1426D01* X1536Y877D02* X1544Y868D01* X1536Y877D02* X1509D01* X1426Y972D02* X7834D01* X7835Y965D02* Y4972D01* X1425D01* X1426Y4968D02* X7834D01* X7799Y5037D02* Y5887D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1802Y4880D02* X1426D01* X1802Y4884D02* X1426D01* Y4888D02* X1802D01* X1972Y4805D02* X1964Y4809D01* X1972Y4805D02* X1980Y4798D01* X1802Y4760D02* X1426D01* Y4764D02* X1802D01* X1426Y4768D02* X1802D01* Y4784D02* X1426D01* X1802Y4780D02* X1426D01* Y4772D02* X1802D01* X1426Y4776D02* X1802D01* X1929Y4798D02* X1924Y4790D01* X1929Y4761D02* X1924Y4770D01* X1802Y4744D02* X1426D01* X1802Y4748D02* X1426D01* Y4756D02* X1802D01* X1426Y4752D02* X1802D01* Y4740D02* X1426D01* X1802Y4736D02* X1426D01* X1802Y4732D02* X1426D01* Y4724D02* X1802D01* X1426Y4728D02* X1802D01* X2108Y4663D02* X2102Y4670D01* X2108Y4663D02* X2113Y4654D01* X1802Y4600D02* X1426D01* X1802Y4596D02* X1426D01* Y4604D02* X1802D01* X1426Y4608D02* X1802D01* X1426Y4612D02* X1802D01* Y4620D02* X1426D01* X1802Y4616D02* X1426D01* X1441Y4543D02* X1500D01* X1802Y4392D02* X1426D01* Y4396D02* X1802D01* X1426Y4400D02* X1802D01* Y4448D02* X1426D01* X1802Y4452D02* X1426D01* Y4444D02* X1802D01* X1426Y4440D02* X1802D01* X2055Y4665D02* X2050Y4656D01* X2049Y4654D02* X2050Y4656D01* X1802Y4504D02* X1426D01* X1802Y4508D02* X1426D01* Y4500D02* X1802D01* X1426Y4496D02* X1802D01* X1426Y4492D02* X1802D01* X1803Y4913D02* X1807Y4917D01* X1802Y4808D02* X1426D01* X1802Y4812D02* X1426D01* Y4820D02* X1802D01* X1426Y4816D02* X1802D01* Y4804D02* X1426D01* X1802Y4800D02* X1426D01* X1802Y4796D02* X1426D01* Y4788D02* X1802D01* X1426Y4792D02* X1802D01* X2102Y4670D02* X2093Y4675D01* X2091Y4676D02* X2093Y4675D01* X1802Y4664D02* X1426D01* X1802Y4660D02* X1426D01* Y4668D02* X1802D01* X1426Y4672D02* X1802D01* X1426Y4676D02* X1802D01* Y4656D02* X1426D01* X1802Y4652D02* X1426D01* Y4648D02* X1802D01* X1964Y4750D02* X1973Y4754D01* X1980Y4798D02* X1984Y4790D01* X1802Y4696D02* X1426D01* X1802Y4700D02* X1426D01* Y4692D02* X1802D01* X1426Y4688D02* X1802D01* Y4640D02* X1426D01* X1802Y4644D02* X1426D01* Y4636D02* X1802D01* X1426Y4632D02* X1802D01* X1980Y4761D02* X1984Y4770D01* X1980Y4761D02* X1973Y4754D01* X1802Y4584D02* X1426D01* Y4588D02* X1802D01* X1426Y4592D02* X1802D01* Y4576D02* X1426D01* X1802Y4580D02* X1426D01* Y4628D02* X1802D01* X1426Y4624D02* X1802D01* X1441Y4543D02* Y4465D01* X1426Y4360D02* X1802D01* X1426Y4356D02* X1802D01* Y4352D02* X1426D01* X1802Y4348D02* X1426D01* Y4336D02* X1802D01* X1426Y4340D02* X1802D01* X1426Y4344D02* X1802D01* Y4328D02* X1426D01* X1802Y4332D02* X1426D01* Y4324D02* X1802D01* X1426Y4320D02* X1802D01* Y4296D02* X1426D01* X1802Y4292D02* X1426D01* Y4284D02* X1802D01* X1426Y4288D02* X1802D01* Y4280D02* X1426D01* X1802Y4276D02* X1426D01* X1802Y4272D02* X1426D01* Y4300D02* X1802D01* X1426Y4304D02* X1802D01* X1426Y4308D02* X1802D01* Y4312D02* X1426D01* X1802Y4316D02* X1426D01* Y4252D02* X1802D01* X1426Y4248D02* X1802D01* Y4244D02* X1426D01* X1802Y4240D02* X1426D01* X1802Y4236D02* X1426D01* Y4224D02* X1802D01* X1426Y4220D02* X1802D01* X1426Y4216D02* X1802D01* Y4208D02* X1426D01* X1802Y4212D02* X1426D01* Y4188D02* X1802D01* X1426Y4184D02* X1802D01* Y4180D02* X1426D01* X1802Y4176D02* X1426D01* X1802Y4172D02* X1426D01* Y4364D02* X1802D01* X1426Y4368D02* X1802D01* X1426Y4372D02* X1802D01* Y4384D02* X1426D01* X1802Y4388D02* X1426D01* Y4380D02* X1802D01* X1426Y4376D02* X1802D01* X2091Y4612D02* X2100Y4616D01* X2107Y4623D02* X2100Y4616D01* X1802Y4408D02* X1426D01* X1802Y4404D02* X1426D01* Y4412D02* X1802D01* X1426Y4416D02* X1802D01* Y4428D02* X1426D01* X1802Y4432D02* X1426D01* X1802Y4436D02* X1426D01* Y4420D02* X1802D01* X1426Y4424D02* X1802D01* X2060Y4618D02* X2069Y4613D01* X2071Y4612D02* X2069Y4613D01* X1802Y4456D02* X1426D01* Y4460D02* X1802D01* X1426Y4464D02* X1802D01* Y4480D02* X1426D01* X1802Y4476D02* X1426D01* Y4484D02* X1802D01* X1426Y4488D02* X1802D01* X2053Y4625D02* X2060Y4618D01* X2053Y4625D02* X2049Y4634D01* X1802Y4520D02* X1426D01* Y4516D02* X1802D01* X1426Y4512D02* X1802D01* Y4528D02* X1426D01* X1802Y4524D02* X1426D01* Y4532D02* X1802D01* X1426Y4536D02* X1802D01* X2107Y4623D02* X2112Y4632D01* X2113Y4634D02* X2112Y4632D01* X1802Y4472D02* X1426D01* X1802Y4468D02* X1426D01* Y4836D02* X1802D01* X1426Y4840D02* X1802D01* X1944Y4809D02* X1936Y4805D01* X1929Y4798D02* X1936Y4805D01* X1802Y4712D02* X1426D01* Y4716D02* X1802D01* X1426Y4720D02* X1802D01* Y4704D02* X1426D01* X1802Y4708D02* X1426D01* Y4684D02* X1802D01* X1426Y4680D02* X1802D01* X1929Y4761D02* X1936Y4754D01* X1944Y4750D02* X1936Y4754D01* X1802Y4552D02* X1426D01* X1802Y4548D02* X1426D01* Y4540D02* X1802D01* X1426Y4544D02* X1802D01* Y4556D02* X1426D01* X1802Y4560D02* X1426D01* X1802Y4564D02* X1426D01* Y4572D02* X1802D01* X1426Y4568D02* X1802D01* X2071Y4676D02* X2062Y4672D01* X2055Y4665D02* X2062Y4672D01* X1802Y4824D02* X1426D01* Y4828D02* X1802D01* X1426Y4832D02* X1802D01* Y4848D02* X1426D01* X1802Y4844D02* X1426D01* Y4852D02* X1802D01* X1426Y4856D02* X1802D01* X1500Y4937D02* Y4543D01* X1426Y4232D02* X1802D01* X1426Y4228D02* X1802D01* Y4256D02* X1426D01* X1802Y4260D02* X1426D01* Y4268D02* X1802D01* X1426Y4264D02* X1802D01* Y4200D02* X1426D01* X1802Y4204D02* X1426D01* Y4196D02* X1802D01* X1426Y4192D02* X1802D01* Y4168D02* X1426D01* X1802Y4164D02* X1426D01* Y4160D02* X1802D01* X1426Y4156D02* X1802D01* X1426Y4152D02* X1802D01* Y4144D02* X1426D01* X1802Y4148D02* X1426D01* Y4140D02* X1802D01* X1426Y4136D02* X1802D01* Y4060D02* X1426D01* X1802Y4064D02* X1426D01* X1802Y4068D02* X1426D01* Y4084D02* X1802D01* X1426Y4080D02* X1802D01* Y4076D02* X1426D01* X1802Y4072D02* X1426D01* X1681Y3854D02* X1803D01* X1802Y4104D02* X1426D01* X1802Y4100D02* X1426D01* Y4096D02* X1802D01* X1426Y4092D02* X1802D01* X1426Y4088D02* X1802D01* Y4112D02* X1426D01* X1802Y4108D02* X1426D01* Y4132D02* X1802D01* X1426Y4128D02* X1802D01* X1426Y4124D02* X1802D01* Y4116D02* X1426D01* X1802Y4120D02* X1426D01* X1676Y3840D02* X1426D01* Y3836D02* X1676D01* X1426Y3864D02* X1802D01* X1426Y3860D02* X1802D01* Y3916D02* X1426D01* X1802Y3920D02* X1426D01* X1676Y3792D02* X1426D01* Y3796D02* X1676D01* X1426Y3800D02* X1676D01* X1426Y3984D02* X1802D01* X1426Y3980D02* X1802D01* Y4012D02* X1426D01* X1802Y4008D02* X1426D01* X1677Y3850D02* X1681Y3854D01* X1802Y3976D02* X1426D01* X1802Y3972D02* X1426D01* Y3964D02* X1802D01* X1426Y3968D02* X1802D01* Y3960D02* X1426D01* X1676Y3808D02* X1426D01* Y3804D02* X1676D01* X1426Y3856D02* X1802D01* X1803Y3854D02* Y4913D01* X1802Y4872D02* X1426D01* X1802Y4876D02* X1426D01* Y4868D02* X1802D01* X1426Y4864D02* X1802D01* X1426Y4860D02* X1802D01* Y4896D02* X1426D01* X1802Y4892D02* X1426D01* Y4900D02* X1802D01* X1426Y4904D02* X1802D01* X1850Y4937D02* X1500D01* X1426Y4936D02* X7834D01* Y4952D02* X1426D01* X1425Y4972D02* Y965D01* X7835D01* X7834Y968D02* X1426D01* Y984D02* X7834D01* X7740Y1000D02* X7799Y1059D01* X7834Y1164D02* X7781D01* X7834Y1060D02* X1426D01* Y1064D02* X7834D01* X7780Y1098D02* Y4860D01* X7781Y4844D02* X7834D01* X7781Y4848D02* X7834D01* Y4852D02* X7781D01* X7834Y4896D02* X7748D01* X7834Y4880D02* X7763D01* X7834Y4944D02* X1426D01* Y4948D02* X7834D01* X7751Y4892D02* X7834D01* Y4888D02* X7755D01* X7834Y4964D02* X1426D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3358Y5370D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4256D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D01* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5397D02* X4398Y5406D01* X4407Y5415D01* Y5432D01* X4425Y5441D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4603Y5406D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5415D01* Y5432D01* X4647Y5441D01* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5370D02* Y5441D01* X5836D01* X5845Y5432D01* X5871Y5415D02* X5862Y5406D01* X5845Y5415D02* Y5432D01* Y5415D02* X5836Y5406D01* X5791D01* X5862D02* Y5379D01* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5871D01* X5934D02* Y5397D01* X5951Y5370D01* X5960Y5379D01* Y5397D01* Y5379D02* X5969Y5370D01* X5987Y5397D01* Y5415D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6147D02* X6200D01* X6218D02* X6262D01* X6271Y5415D01* Y5432D01* X6262Y5441D01* X6218D01* Y5370D01* X6307Y5441D02* X6316D01* Y5370D01* X6325D02* X6307D01* X6360Y5388D02* Y5379D01* X6369Y5370D01* X6405D01* Y5406D01* X6369Y5415D02* X6396D01* X6405Y5406D01* Y5397D02* X6369D01* X6360Y5388D01* X6431Y5370D02* Y5415D01* Y5406D02* X6440Y5415D01* X6467D01* X6476Y5406D01* Y5370D01* X6502Y5388D02* X6538D01* X6547Y5397D01* Y5406D01* X6538Y5415D01* X6511D01* X6502Y5406D01* Y5379D01* X6511Y5370D01* X6547D01* X6680Y5441D02* X6662Y5415D01* Y5397D01* X6680Y5370D01* X6716Y5379D02* X6725Y5370D01* X6760D01* X6751Y5397D02* X6769D01* Y5379D01* X6760Y5370D01* X6787D02* Y5441D01* X6840Y5370D01* Y5441D01* X6769Y5432D02* X6760Y5441D01* X6725D01* X6716Y5432D01* Y5379D01* X6902Y5432D02* X6894Y5441D01* X6858D01* Y5370D01* X6894D01* X6902Y5379D01* X6911Y5397D01* Y5415D01* X6902Y5432D01* X6947Y5441D02* X6965Y5415D01* Y5397D01* X6947Y5370D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D382* X3674Y2733D02* D03* X3623Y2635D02* D03* X3583Y2539D02* D03* X3533D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3475Y2645D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3478Y2430D02* D03* X3573Y2436D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3725Y2247D02* D03* X3633Y2143D02* D03* X3577Y2141D02* D03* X3434Y1990D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3583D02* D03* X3675Y1935D02* D03* X3633Y1943D02* D03* X3627Y1893D02* D03* X3621Y1789D02* D03* X3607Y1565D02* D03* X3580Y1580D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3472Y1420D02* D03* X3441Y1423D02* D03* X3388Y1438D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3404Y1241D02* D03* X3435D02* D03* X3498Y1234D02* D03* X3341Y1242D02* D03* X3310D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3089Y1234D02* D03* X2931Y1243D02* D03* X2868Y1238D02* D03* X2837Y1237D02* D03* X2774Y1240D02* D03* X2742Y1236D02* D03* X2711Y1237D02* D03* X2596Y1288D02* D03* X2558Y1214D02* D03* X2476Y1210D02* D03* X2480Y1262D02* D03* X2472Y1312D02* D03* X2468Y1362D02* D03* X2471Y1412D02* D03* X2537Y1427D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2853Y1443D02* D03* X2707Y2012D02* D03* X2771Y2032D02* D03* X2770Y1980D02* D03* X2821Y1982D02* D03* X2823Y2087D02* D03* X2876Y2085D02* D03* X2923Y2134D02* D03* Y2233D02* D03* X3025Y2135D02* D03* X2977Y2086D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X3027D02* D03* X3021Y1931D02* D03* X2977Y1986D02* D03* X3073Y1984D02* D03* X3121Y1938D02* D03* X3083Y1892D02* D03* X3130Y1800D02* D03* X3084Y1794D02* D03* X3027Y1824D02* D03* Y1780D02* D03* X3029Y1735D02* D03* X2876Y1831D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X2927Y1724D02* D03* X2874Y1727D02* D03* X2861Y1669D02* D03* X2823Y1726D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2555Y1589D02* D03* X2563Y1625D02* D03* X2469Y1661D02* D03* X2467Y1612D02* D03* X2468Y1562D02* D03* X2471Y1512D02* D03* X2473Y1462D02* D03* X2314D02* D03* X2315Y1413D02* D03* X2337Y1362D02* D03* X2314Y1312D02* D03* X2326Y1277D02* D03* X2315Y1193D02* D03* X2188Y1243D02* D03* X2186Y1283D02* D03* X2189Y1345D02* D03* X2187Y1381D02* D03* X1978Y1562D02* D03* X2130Y1679D02* D03* X2201Y1916D02* D03* X2027Y1915D02* D03* X1878Y1848D02* D03* X1825Y1920D02* D03* X1698Y1788D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X1784Y2778D02* D03* X1832Y2771D02* D03* X1861Y2625D02* D03* X1825Y2540D02* D03* X1773Y2547D02* D03* X1902Y2484D02* D03* Y2413D02* D03* X1906Y2350D02* D03* X1868Y2348D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1999Y2222D02* D03* X1998Y2292D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2304Y2311D02* D03* X2385Y2187D02* D03* X2327Y2096D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2265Y1915D02* D03* X2327Y1830D02* D03* X2471Y1762D02* D03* X2470Y1712D02* D03* X2564Y1816D02* D03* X2518Y1841D02* D03* X2446Y1961D02* D03* X2409Y1991D02* D03* X2440Y2024D02* D03* X2505Y2091D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2691Y2462D02* D03* X2704Y2555D02* D03* X2599Y2694D02* D03* X2600Y2658D02* D03* X2599Y2534D02* D03* X2603Y2472D02* D03* X2601Y2427D02* D03* X2604Y2393D02* D03* X2503Y2344D02* D03* Y2314D02* D03* X2479Y2248D02* D03* X2458Y2311D02* D03* Y2345D02* D03* X2459Y2378D02* D03* X2478Y2422D02* D03* X2449Y2441D02* D03* X2428Y2482D02* D03* X2481D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2329Y2405D02* D03* X2381Y2474D02* D03* X2312Y2507D02* D03* X2350Y2617D02* D03* X2363Y2589D02* D03* X2396Y2588D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2093Y2676D02* D03* X2039Y2790D02* D03* X2026Y2841D02* D03* X2131Y3010D02* D03* X2260Y2965D02* D03* X2261Y2894D02* D03* X2236Y2788D02* D03* X2411Y2885D02* D03* X2441Y2903D02* D03* X2500Y2899D02* D03* X2473Y2873D02* D03* X2463Y2790D02* D03* X2522Y2857D02* D03* X2570Y2867D02* D03* X2555Y2912D02* D03* X2585Y2979D02* D03* X2530Y3047D02* D03* X2561Y3053D02* D03* X2546Y3079D02* D03* X2587Y3152D02* D03* X2629D02* D03* Y3192D02* D03* X2589Y3194D02* D03* X2547Y3191D02* D03* X2590Y3351D02* D03* X2628Y3387D02* D03* X2667Y3388D02* D03* X2666Y3349D02* D03* X2710Y3347D02* D03* X2709Y3389D02* D03* X2745D02* D03* X2746Y3428D02* D03* X2745Y3506D02* D03* X2709Y3547D02* D03* X2672Y3506D02* D03* X2667Y3430D02* D03* X2664Y3468D02* D03* X2629D02* D03* Y3430D02* D03* X2587Y3429D02* D03* X2556Y3425D02* D03* X2550Y3390D02* D03* X2514Y3387D02* D03* Y3424D02* D03* X2515Y3462D02* D03* X2556Y3464D02* D03* X2587Y3467D02* D03* X2592Y3505D02* D03* X2631Y3510D02* D03* X2333Y3637D02* D03* X2273Y3547D02* D03* X2278Y3463D02* D03* X2357Y3466D02* D03* X2390Y3468D02* D03* Y3507D02* D03* X2472D02* D03* X2433D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2435Y3424D02* D03* X2472D02* D03* Y3387D02* D03* X2391Y3428D02* D03* X2357Y3424D02* D03* X2311Y3389D02* D03* X2277Y3349D02* D03* X2119Y3431D02* D03* X2118Y3483D02* D03* X1809Y3776D02* D03* X1777Y3745D02* D03* X1729Y3706D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2454Y3638D02* D03* X2470Y3545D02* D03* X2512Y3547D02* D03* X2551Y3582D02* D03* X2612Y3651D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2896Y3658D02* D03* X2939Y3669D02* D03* X2954Y3643D02* D03* X2992Y3640D02* D03* X2998Y3684D02* D03* X3047D02* D03* Y3640D02* D03* Y3585D02* D03* X2996D02* D03* X2947D02* D03* X2818Y3477D02* D03* X2819Y3537D02* D03* X2901D02* D03* X2899Y3471D02* D03* X2905Y3440D02* D03* X2899Y3410D02* D03* X2965Y3492D02* D03* X3007Y3495D02* D03* X2994Y3531D02* D03* X3043Y3494D02* D03* X3051Y3443D02* D03* X3009D02* D03* X3097Y3485D02* D03* X3089Y3443D02* D03* X3140Y3442D02* D03* X3148Y3485D02* D03* X3196Y3487D02* D03* X3248Y3486D02* D03* X3288Y3442D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X3192Y3340D02* D03* X3144D02* D03* X3247D02* D03* X3293Y3339D02* D03* X3287Y3293D02* D03* X3245Y3292D02* D03* X3196Y3296D02* D03* X3146Y3286D02* D03* X3174Y3231D02* D03* X3202Y3217D02* D03* X3113Y3242D02* D03* X3092Y3220D02* D03* X3003Y3163D02* D03* X3061Y3219D02* D03* X2994Y3286D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2806Y3313D02* D03* X2748Y3268D02* D03* X2746Y3310D02* D03* X2710Y3304D02* D03* X2672Y3269D02* D03* Y3226D02* D03* Y3191D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* Y3109D02* D03* X2745Y3074D02* D03* X2672Y3069D02* D03* Y3111D02* D03* X2629Y3114D02* D03* X2617Y3067D02* D03* X2397Y2982D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2470Y3114D02* D03* X2471Y3154D02* D03* X2433Y3231D02* D03* X2312Y3272D02* D03* X2354Y3231D02* D03* Y3153D02* D03* Y3114D02* D03* X2311D02* D03* X2274Y3153D02* D03* X1852Y4473D02* D03* Y4510D02* D03* X1851Y4548D02* D03* X1931Y4588D02* D03* X1864Y4648D02* D03* X2092Y4767D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X2223Y4425D02* D03* X2511Y4345D02* D03* X2514Y4265D02* D03* X2508Y4117D02* D03* X2608Y4118D02* D03* X2689Y4063D02* D03* X2683Y4228D02* D03* X2804Y4013D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2822Y3779D02* D03* X2855Y3758D02* D03* X2882Y3779D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3045Y3838D02* D03* X3097D02* D03* X3145D02* D03* X3198Y3837D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X3112Y4199D02* D03* X3109Y4165D02* D03* X3025Y4130D02* D03* X2969Y4108D02* D03* X2945Y4089D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X2997Y4044D02* D03* X3005Y3995D02* D03* X3003Y3945D02* D03* X2949Y3901D02* D03* X3133Y3744D02* D03* X3093Y3747D02* D03* X3095Y3684D02* D03* X3092Y3640D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3251Y3621D02* D03* X3288Y3719D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3244Y3894D02* D03* X3286Y3939D02* D03* X3347Y3943D02* D03* X3297Y4095D02* D03* X3202Y4165D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3560Y4446D02* D03* X3487Y4562D02* D03* X3438Y4561D02* D03* X3416Y4538D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3662Y4629D02* D03* X3637Y4665D02* D03* X3712Y4638D02* D03* X3462Y4844D02* D03* X3410Y4848D02* D03* X3322Y4849D02* D03* X3263Y4848D02* D03* X3137Y4844D02* D03* X3062Y4676D02* D03* X3112Y4673D02* D03* X3162Y4676D02* D03* X3250Y4646D02* D03* X3361Y4671D02* D03* X2853Y4849D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X2906Y4532D02* D03* X2883Y4465D02* D03* X2902Y4301D02* D03* X2725Y4434D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2761Y4623D02* D03* X2787Y4669D02* D03* X2712Y4623D02* D03* X2662Y4666D02* D03* X3363Y3794D02* D03* X3425Y3798D02* D03* X3486Y3791D02* D03* X3523Y3765D02* D03* X3588Y3697D02* D03* X3647Y3640D02* D03* X3740Y3607D02* D03* X3703Y3553D02* D03* X3648Y3541D02* D03* Y3485D02* D03* X3647Y3441D02* D03* X3643Y3387D02* D03* X3646Y3341D02* D03* X3695D02* D03* X3747Y3340D02* D03* X3748Y3392D02* D03* X3698Y3396D02* D03* Y3441D02* D03* X3692Y3490D02* D03* X3748Y3486D02* D03* X3743Y3440D02* D03* X3792Y3445D02* D03* X3791Y3401D02* D03* X3855Y3367D02* D03* X3997Y3323D02* D03* X4122Y3385D02* D03* Y3240D02* D03* X4126Y3197D02* D03* X4331Y3278D02* D03* X4302Y3265D02* D03* X4304Y3196D02* D03* X4359Y3169D02* D03* X4369Y3218D02* D03* X4377Y3142D02* D03* X4305Y3046D02* D03* X4355Y2918D02* D03* X4389Y2835D02* D03* X4701Y2806D02* D03* X4356Y2688D02* D03* X4325Y2691D02* D03* X4121Y2688D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3996Y3044D02* D03* Y3093D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3907Y3041D02* D03* X3877Y3039D02* D03* X3847D02* D03* X3688Y3027D02* D03* X3628Y2967D02* D03* X3413Y3035D02* D03* X3326D02* D03* X3367Y2919D02* D03* X3394Y2886D02* D03* X3360Y2847D02* D03* X3291Y2882D02* D03* X3278Y2839D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X2971Y2585D02* D03* X3020Y2636D02* D03* X3067Y2643D02* D03* X3041Y2687D02* D03* X2921Y2779D02* D03* X2925Y2735D02* D03* X2922Y2682D02* D03* X2875Y2636D02* D03* X2824Y2685D02* D03* X2788Y2784D02* D03* X2825D02* D03* X2829Y2859D02* D03* X2875Y2834D02* D03* Y2885D02* D03* X2947Y2928D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X2985Y3039D02* D03* X3053Y3031D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3278Y2961D02* D03* X3235Y2905D02* D03* X3192Y2852D02* D03* X3219Y2782D02* D03* X3175Y2726D02* D03* X3126Y2687D02* D03* X3122Y2642D02* D03* X3080Y2583D02* D03* X3093Y2535D02* D03* X3067Y2493D02* D03* Y2393D02* D03* X3057Y2297D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X3224Y2109D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3177Y1937D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3423Y1697D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3105Y1446D02* D03* X3752Y1241D02* D03* X3804Y1235D02* D03* X3867D02* D03* X3851Y1416D02* D03* X3821Y1445D02* D03* X3854Y1559D02* D03* X3867Y1743D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3812Y1993D02* D03* X3767Y1994D02* D03* X3770Y1940D02* D03* Y1888D02* D03* X3767Y1843D02* D03* X3817Y2193D02* D03* Y2092D02* D03* X3767D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4401Y2203D02* D03* X4281Y2223D02* D03* X4253D02* D03* X4223D02* D03* X4181D02* D03* X4153D02* D03* X4123D02* D03* X4147Y2339D02* D03* X4192D02* D03* X4234Y2354D02* D03* X4282D02* D03* X4585Y2494D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X5009Y2434D02* D03* X5173Y2566D02* D03* X5215Y2605D02* D03* X5450D02* D03* X5600D02* D03* X5645D02* D03* X5690D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5240Y2290D02* D03* Y2255D02* D03* Y2220D02* D03* X5162Y2128D02* D03* X5124D02* D03* X5087D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4615Y2014D02* D03* X4646D02* D03* X4771D02* D03* X4804D02* D03* X4835D02* D03* X4945Y1905D02* D03* X4905D02* D03* X4860D02* D03* X4815D02* D03* X4770D02* D03* X4725D02* D03* X4680D02* D03* X4635D02* D03* X4491Y1871D02* D03* X4686Y1269D02* D03* X4593Y1233D02* D03* X4435D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4089Y1234D02* D03* X4120Y1237D02* D03* X4105Y1316D02* D03* Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4231Y1560D02* D03* X4221Y1625D02* D03* X4390D02* D03* X4388Y1563D02* D03* X4356D02* D03* X4325D02* D03* X4294D02* D03* X4420Y1446D02* D03* X4609Y1445D02* D03* X4682Y1572D02* D03* X4771Y1564D02* D03* X4874Y1572D02* D03* X4929Y1565D02* D03* X4860Y1446D02* D03* X4793Y1399D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5211Y1277D02* D03* X5081Y1439D02* D03* X5049Y1447D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X5790Y1745D02* D03* X5825D02* D03* X5857D02* D03* X5870Y1795D02* D03* X5830D02* D03* X5790D02* D03* X5758Y1875D02* D03* Y1910D02* D03* X5620Y1960D02* D03* X5593D02* D03* X5597Y1916D02* D03* X5605Y1862D02* D03* X5530D02* D03* X5522Y1916D02* D03* X5525Y1960D02* D03* X5498D02* D03* X5360Y1865D02* D03* Y1910D02* D03* X5270D02* D03* X5255Y1865D02* D03* X5220D02* D03* Y1830D02* D03* X5255D02* D03* X5185D02* D03* X5150D02* D03* Y1865D02* D03* X5185D02* D03* X5645Y2128D02* D03* X5681D02* D03* X5717D02* D03* X5754Y2189D02* D03* X5704D02* D03* X5654D02* D03* X5625Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5654Y2321D02* D03* X5704D02* D03* X5754D02* D03* X5803Y2324D02* D03* X5921Y2236D02* D03* Y2190D02* D03* X5975D02* D03* Y2236D02* D03* X6021D02* D03* Y2190D02* D03* X6075Y2236D02* D03* Y2190D02* D03* Y2136D02* D03* X6021Y2036D02* D03* Y1990D02* D03* X5975D02* D03* Y2036D02* D03* Y2090D02* D03* Y2136D02* D03* X5921D02* D03* Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975D02* D03* Y1936D02* D03* X5855Y1910D02* D03* Y1875D02* D03* X5870Y1840D02* D03* X5921Y1836D02* D03* Y1790D02* D03* X6021D02* D03* Y1836D02* D03* Y1890D02* D03* Y1936D02* D03* X6075D02* D03* Y1990D02* D03* Y2036D02* D03* X6135Y2033D02* D03* X6214Y2109D02* D03* X6320Y2480D02* D03* X6280D02* D03* X6240D02* D03* X6195D02* D03* X6150D02* D03* X6100D02* D03* Y2520D02* D03* Y2560D02* D03* X6050D02* D03* Y2520D02* D03* Y2480D02* D03* X5975Y2436D02* D03* X5921Y2390D02* D03* Y2336D02* D03* Y2290D02* D03* X5975D02* D03* X6021D02* D03* X6221D02* D03* X6275D02* D03* X6321D02* D03* X6459Y2231D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6370Y2480D02* D03* X6410D02* D03* X6450Y2500D02* D03* Y2540D02* D03* X6500D02* D03* X6450Y2580D02* D03* Y2620D02* D03* X6363Y2634D02* D03* X6320Y2560D02* D03* X6280D02* D03* X6320Y2520D02* D03* X6280D02* D03* X6240D02* D03* Y2560D02* D03* X6182Y2787D02* D03* X5768Y3258D02* D03* X5858Y3325D02* D03* X5947Y3258D02* D03* X6037Y3150D02* D03* X6054Y3359D02* D03* X6022Y3470D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5770Y3389D02* D03* X5763Y3498D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X5900Y3596D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X6072Y3954D02* D03* X5974Y4010D02* D03* X6016Y4132D02* D03* X5941Y4235D02* D03* X5880Y4224D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* X5390Y4226D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* Y3557D02* D03* X4992Y3478D02* D03* X5049Y3322D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* X5542D02* D03* X5692Y3231D02* D03* X5291Y3404D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5218Y3699D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X4568Y3669D02* D03* X4380Y3592D02* D03* X4303Y3665D02* D03* X4354Y3486D02* D03* X4379Y3442D02* D03* X4365Y3415D02* D03* X4334Y3386D02* D03* X4335Y3356D02* D03* X4122Y3531D02* D03* X3998Y3465D02* D03* X3955Y3558D02* D03* X3995Y3605D02* D03* X3941Y3623D02* D03* X3909Y3658D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3798Y3772D02* D03* X3938Y3771D02* D03* X3980Y3787D02* D03* X3979Y3830D02* D03* X3944Y3816D02* D03* X4037Y4068D02* D03* Y4027D02* D03* X4126Y3848D02* D03* X4266Y3852D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3512Y3205D02* D03* X3469D02* D03* X3423D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3446Y3386D02* D03* X3441Y3344D02* D03* X3351Y3343D02* D03* X3393D02* D03* Y3386D02* D03* X3350Y3387D02* D03* X3354Y3442D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3590Y3440D02* D03* X3545D02* D03* Y3485D02* D03* X3591Y3497D02* D03* Y3548D02* D03* Y3589D02* D03* X3548Y3587D02* D03* X3542Y3554D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3698Y4048D02* D03* X3696Y3938D02* D03* X3735Y3896D02* D03* X3796Y3912D02* D03* X3794Y3846D02* D03* X3879Y3930D02* D03* X3831Y4006D02* D03* X3872Y4138D02* D03* X3831Y4134D02* D03* X3841Y4186D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3816Y4490D02* D03* X4319Y4780D02* D03* X7049Y4888D02* D03* Y4850D02* D03* X7000D02* D03* Y4888D02* D03* X6950D02* D03* Y4850D02* D03* X6900Y4888D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6800D02* D03* Y4850D02* D03* X6750D02* D03* Y4888D02* D03* X6700Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6440Y4780D02* D03* X6613Y4718D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6800D02* D03* X6850D02* D03* X6903D02* D03* X6955Y4717D02* D03* X6850Y4643D02* D03* X6800D02* D03* X6750D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6574Y4365D02* D03* X6704Y4282D02* D03* X6656Y4220D02* D03* X6723Y3981D02* D03* X6852Y3741D02* D03* Y3710D02* D03* Y3680D02* D03* X6899Y3741D02* D03* Y3711D02* D03* Y3681D02* D03* Y3621D02* D03* Y3651D02* D03* X6852Y3650D02* D03* X6851Y3621D02* D03* X6850Y3471D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644D02* D03* Y3649D02* D03* Y3619D02* D03* X6570Y3105D02* D03* X6620D02* D03* X6670D02* D03* X6725D02* D03* X6670Y3230D02* D03* X6671Y3270D02* D03* X6621D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X6726D02* D03* X6725Y3230D02* D03* X6775D02* D03* X6815D02* D03* X6816Y3270D02* D03* X6776D02* D03* Y3185D02* D03* Y3145D02* D03* X6775Y3105D02* D03* X6815D02* D03* X6920D02* D03* Y3230D02* D03* X6921Y3270D02* D03* X7119Y2984D02* D03* X7104Y3010D02* D03* X7119Y3036D02* D03* X7104Y3062D02* D03* Y3156D02* D03* X7119Y3130D02* D03* X7060Y3105D02* D03* X7061Y3145D02* D03* Y3185D02* D03* X7104Y3208D02* D03* X7060Y3230D02* D03* X7061Y3270D02* D03* X7119Y3275D02* D03* X7104Y3301D02* D03* X7119Y3327D02* D03* X7104Y3353D02* D03* X7120Y3428D02* D03* X7097Y3459D02* D03* X7113Y3487D02* D03* X7097Y3513D02* D03* X7104Y3543D02* D03* X7141Y3544D02* D03* X7119Y3644D02* D03* X7126Y3679D02* D03* X7119Y3712D02* D03* X7104Y3738D02* D03* X7119Y3764D02* D03* X7104Y3790D02* D03* X7119Y3858D02* D03* X7104Y3884D02* D03* X7119Y3910D02* D03* X7094Y3927D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7143Y4126D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7119Y4212D02* D03* X7117Y4244D02* D03* X6906Y4217D02* D03* X7119Y4295D02* D03* X7104Y4321D02* D03* X7119Y4347D02* D03* X7104Y4373D02* D03* X6992Y4433D02* D03* X7104Y4467D02* D03* X7119Y4441D02* D03* Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7127Y4764D02* D03* X7110Y4681D02* D03* X7119Y4634D02* D03* X7267D02* D03* Y4488D02* D03* Y4343D02* D03* Y4197D02* D03* Y4051D02* D03* Y3905D02* D03* Y3760D02* D03* Y3614D02* D03* Y3469D02* D03* Y3323D02* D03* Y3177D02* D03* X7293Y3132D02* D03* X7267Y3031D02* D03* X7258Y2945D02* D03* Y2913D02* D03* Y2882D02* D03* Y2850D02* D03* X7267Y2764D02* D03* X7104Y2794D02* D03* X7119Y2768D02* D03* Y2716D02* D03* X7104Y2742D02* D03* X7074Y2744D02* D03* X7051Y2722D02* D03* X7052Y2692D02* D03* X7104Y2649D02* D03* X7119Y2623D02* D03* Y2571D02* D03* X7104Y2597D02* D03* X7018Y2569D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7025Y2286D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* Y2286D02* D03* X6871Y2340D02* D03* X6825D02* D03* Y2286D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6671D02* D03* Y2340D02* D03* Y2386D02* D03* X6625Y2440D02* D03* X6725D02* D03* X6771D02* D03* Y2475D02* D03* X6825Y2440D02* D03* Y2386D02* D03* X6871D02* D03* X6781Y2565D02* D03* X6837D02* D03* Y2695D02* D03* X6781Y2693D02* D03* X6659Y2658D02* D03* X6871Y2186D02* D03* Y2140D02* D03* X6824Y2071D02* D03* X6871Y1986D02* D03* Y1940D02* D03* X6925Y1886D02* D03* X6971Y1840D02* D03* X7025D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* X6925D02* D03* X7025Y2140D02* D03* Y2186D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6925Y1340D02* D03* X6971D02* D03* X7025D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6971D02* D03* Y1440D02* D03* X6925D02* D03* X7025Y1640D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7025Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* X6871Y1540D02* D03* X6829Y1573D02* D03* X6871Y1586D02* D03* Y1640D02* D03* X6925D02* D03* Y1686D02* D03* Y1740D02* D03* X6971D02* D03* Y1786D02* D03* X6925D02* D03* X6871D02* D03* Y1740D02* D03* X6823Y1693D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1386D02* D03* Y1340D02* D03* X6625D02* D03* X6671D02* D03* Y1386D02* D03* X6725Y1340D02* D03* Y1386D02* D03* X6771D02* D03* X6825Y1340D02* D03* X6871Y1440D02* D03* Y1486D02* D03* X6825D02* D03* Y1440D02* D03* X6771D02* D03* X6725Y1486D02* D03* X6671D02* D03* X6625Y1440D02* D03* Y1486D02* D03* X6623Y1594D02* D03* X6495D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421Y1490D02* D03* Y1436D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6475Y1336D02* D03* X6421D02* D03* X6375D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6275Y1390D02* D03* X6321D02* D03* Y1436D02* D03* X6275D02* D03* Y1490D02* D03* X6321D02* D03* X6359Y1541D02* D03* X6279Y1610D02* D03* X5975Y1590D02* D03* Y1536D02* D03* X6021D02* D03* Y1490D02* D03* X5975D02* D03* Y1436D02* D03* X6021D02* D03* Y1390D02* D03* Y1336D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5921Y1390D02* D03* Y1436D02* D03* Y1490D02* D03* Y1536D02* D03* X5876Y1590D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* X6021D02* D03* Y1690D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* Y1736D02* D03* X6120Y1664D02* D03* X6021Y1636D02* D03* X6075D02* D03* Y1590D02* D03* Y1536D02* D03* Y1490D02* D03* X6121D02* D03* X6075Y1436D02* D03* X6121Y1336D02* D03* X6145Y1216D02* D03* X6037Y1066D02* D03* D052* X6972Y1069D02* D03* X5235Y4644D02* D03* X5135D02* D03* Y4544D02* D03* X5185Y4494D02* D03* X5235Y4544D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5335Y4644D02* D03* X5435D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5735D02* D03* X5635D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4494D02* D03* X5535Y4544D02* D03* X5435D02* D03* X5385Y4494D02* D03* X5485Y4394D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5085D02* D03* X5035Y4444D02* D03* X4985Y4394D02* D03* X4885D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X4985Y4494D02* D03* X5085D02* D03* X5035Y4544D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4935D02* D03* X4885Y4594D02* D03* X4835Y4644D02* D03* X4885Y4294D02* D03* Y4194D02* D03* X4835Y4244D02* D03* X4785Y4194D02* D03* X4735Y4244D02* D03* X4785Y4294D02* D03* X4735Y4344D02* D03* X4785Y4394D02* D03* X4735Y4444D02* D03* X4835Y4544D02* D03* X4735D02* D03* X4685Y4594D02* D03* X4635Y4544D02* D03* Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4244D02* D03* X4685Y4194D02* D03* X4635Y4144D02* D03* X4735D02* D03* X4785Y4094D02* D03* X4735Y4044D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4785Y3794D02* D03* X4835Y3844D02* D03* X4885Y3794D02* D03* Y3894D02* D03* Y3994D02* D03* X4835Y4044D02* D03* X4885Y4094D02* D03* D026* X4290Y4124D02* X4295Y4132D01* X4297Y4140D01* X4295Y4150D01* X4289Y4157D01* X4280Y4162D01* X4270Y4161D01* X4261Y4157D01* X4255Y4149D01* X4253Y4139D01* X4256Y4130D01* X4262Y4122D01* X4271Y4118D01* X4281Y4119D01* X4290Y4124D01* D052* X4635Y4044D02* D03* X4685Y3994D02* D03* X4635Y3944D02* D03* X4685Y3894D02* D03* X4635Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3644D02* D03* X4685Y3594D02* D03* X4635Y3544D02* D03* Y3444D02* D03* X4685Y3394D02* D03* X4635Y3344D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* Y3044D02* D03* X4685Y2994D02* D03* Y2894D02* D03* X4835Y2844D02* D03* X4785Y2894D02* D03* X4835Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4885Y3094D02* D03* Y3194D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4885Y3494D02* D03* Y3594D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4735Y3644D02* D03* X4785Y3594D02* D03* X4735Y3544D02* D03* X4785Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4735Y3244D02* D03* X4785Y3194D02* D03* X4735Y3144D02* D03* X4785Y3094D02* D03* X6435Y2844D02* D03* Y2944D02* D03* Y3044D02* D03* X6335D02* D03* X6385Y3094D02* D03* X6335Y3144D02* D03* X6435D02* D03* X6335Y3344D02* D03* X6385Y3294D02* D03* X6335Y3244D02* D03* X6435D02* D03* Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* Y3644D02* D03* Y3744D02* D03* X6335D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6235D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6285Y3794D02* D03* X6235Y3844D02* D03* X6185Y3894D02* D03* X6235Y3944D02* D03* X6285Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6235Y4444D02* D03* X6335D02* D03* X6385Y4494D02* D03* X6335Y4544D02* D03* X6235D02* D03* X6285Y4594D02* D03* X6235Y4644D02* D03* X6335D02* D03* X6385Y4594D02* D03* X6435Y4444D02* D03* Y4344D02* D03* Y4244D02* D03* X6385Y4294D02* D03* X6335Y4344D02* D03* Y4244D02* D03* X6285Y4194D02* D03* X6335Y4144D02* D03* X6435D02* D03* X6385Y4094D02* D03* X6335Y4044D02* D03* Y3944D02* D03* X6385Y3894D02* D03* X6335Y3844D02* D03* X6435D02* D03* Y3944D02* D03* Y4044D02* D03* D026* X6664Y4086D02* X6670Y4094D01* X6672Y4102D01* X6669Y4112D01* X6663Y4120D01* X6654Y4124D01* X6644D01* X6635Y4119D01* X6629Y4111D01* X6628Y4101D01* X6630Y4092D01* X6637Y4084D01* X6646Y4081D01* X6656D01* X6664Y4086D01* D052* X5935Y4644D02* D03* X5835D02* D03* X5885Y4594D02* D03* X5835Y4544D02* D03* X5935D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* Y4644D02* D03* X6085Y4594D02* D03* X6135Y4644D02* D03* Y4544D02* D03* X6185Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6035Y4444D02* D03* X5935D02* D03* X5885Y4394D02* D03* X5835Y4444D02* D03* X5735Y4544D02* D03* X5785Y4494D02* D03* X5735Y4444D02* D03* X5685Y4394D02* D03* X5635Y4444D02* D03* X5545Y4106D02* D03* X5645D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* X5545Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* X6235Y3544D02* D03* X6285Y3594D02* D03* X6335Y3544D02* D03* X6385Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* X6235Y3444D02* D03* X6185Y3494D02* D03* Y3294D02* D03* X6235Y3244D02* D03* X6285Y3194D02* D03* X6235Y3144D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6285Y2994D02* D03* X6235Y2944D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6335Y2844D02* D03* X6235D02* D03* X6135D02* D03* X6185Y2894D02* D03* X6135Y2944D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* Y2844D02* D03* X5785Y3094D02* D03* X5685D02* D03* Y2994D02* D03* X5735Y2944D02* D03* X5785Y2994D02* D03* X5835Y2944D02* D03* X5885Y2994D02* D03* X5835Y3044D02* D03* X5885Y3094D02* D03* X5985D02* D03* X6035Y3044D02* D03* X5985Y2994D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X5935Y2844D02* D03* X5835D02* D03* X5785Y2894D02* D03* X5735Y2844D02* D03* X5635D02* D03* Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5435D02* D03* X5385Y2894D02* D03* X5335Y2844D02* D03* X5235D02* D03* X5135D02* D03* X5185Y2894D02* D03* X5135Y2944D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* Y2844D02* D03* X4935D02* D03* X4985Y2894D02* D03* X4935Y2944D02* D03* X4985Y2994D02* D03* Y3094D02* D03* X5035Y3044D02* D03* X5085Y3094D02* D03* X5185D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y2944D02* D03* X5385Y2994D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5435Y3044D02* D03* X5485Y3094D02* D03* X5385D02* D03* X5285D02* D03* D026* X5343Y2502D02* X5353Y2503D01* X5361Y2507D01* X5367Y2516D01* X5368Y2524D01* X5366Y2533D01* X5360Y2541D01* X5351Y2545D01* X5341D01* X5332Y2540D01* X5326Y2532D01* X5324Y2523D01* X5327Y2513D01* X5334Y2506D01* X5343Y2502D01* D052* X5120Y1340D02* D03* X4374Y1069D02* D03* D026* X2627Y1328D02* X2635Y1323D01* X2645D01* X2653Y1328D01* X2658Y1337D01* Y1340D01* X2655Y1349D01* X2648Y1356D01* X2638Y1358D01* X2629Y1354D01* X2623Y1346D01* X2622Y1337D01* X2627Y1328D01* D052* X2327Y1069D02* D03* X1921Y1748D02* D03* X1764D02* D03* X1685D02* D03* X1606D02* D03* D026* X1551Y1718D02* X1546Y1727D01* X1537Y1732D01* X1528Y1734D01* X1518Y1732D01* X1551Y1718D02* X1553Y1709D01* Y1708D01* X1551Y1699D01* X1545Y1690D01* X1537Y1685D01* D052* X1528Y1630D02* D03* D026* X1537Y1685D02* X1527Y1683D01* X1518Y1685D01* X1509Y1691D01* X1504Y1699D01* X1502Y1709D01* X1504Y1719D01* X1510Y1727D01* X1518Y1732D01* D052* X1528Y1787D02* D03* D026* X1808Y2975D02* X1809Y2978D01* X1806Y2988D01* X1799Y2994D01* X1789Y2996D01* X1780Y2993D01* X1774Y2985D01* X1773Y2975D01* X1777Y2966D01* X1786Y2961D01* X1796D01* X1804Y2966D01* X1808Y2975D01* X1789Y3607D02* X1780Y3603D01* X1774Y3595D01* X1773Y3585D01* X1777Y3576D01* X1786Y3571D01* X1796D01* X1804Y3577D01* X1808Y3586D01* X1809Y3589D01* X1806Y3598D01* X1799Y3605D01* X1789Y3607D01* D052* X1886Y3726D02* D03* X1984Y3825D02* D03* D056* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* D031* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D051* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7425Y1157D02* D03* Y1236D02* D03* X7504D02* D03* Y1157D02* D03* X7583D02* D03* X7661D02* D03* X7583Y1236D02* D03* X7661D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* X7583D02* D03* X7425D02* D03* Y1394D02* D03* X7504D02* D03* X7583D02* D03* Y1315D02* D03* X7504D02* D03* X7425D02* D03* Y1630D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* Y1630D02* D03* X7661D02* D03* X7740D02* D03* Y1709D02* D03* Y1787D02* D03* X7661D02* D03* X7583D02* D03* Y1709D02* D03* X7504D02* D03* X7425D02* D03* Y1787D02* D03* Y1945D02* D03* Y1866D02* D03* X7504D02* D03* X7583D02* D03* Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7583Y2260D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2417D02* D03* X7661D02* D03* X7583D02* D03* Y2339D02* D03* X7504D02* D03* Y2260D02* D03* X7425D02* D03* Y2339D02* D03* Y2417D02* D03* X7583Y2496D02* D03* X7504D02* D03* X7425D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* X7504D02* D03* Y2654D02* D03* X7583D02* D03* Y2575D02* D03* X7661D02* D03* X7740D02* D03* Y2496D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* Y2890D02* D03* X7583D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7425D02* D03* Y2969D02* D03* Y2811D02* D03* Y2890D02* D03* X7504D02* D03* Y2811D02* D03* X7583D02* D03* Y2732D02* D03* X7661D02* D03* X7425Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* X7504D02* D03* X7583D02* D03* Y3362D02* D03* Y3283D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* X7504D02* D03* X7583D02* D03* Y3205D02* D03* X7661D02* D03* X7740D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7661D02* D03* X7583D02* D03* Y3756D02* D03* X7504D02* D03* X7425D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* X7504Y3598D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3441D02* D03* Y3362D02* D03* X7740Y3913D02* D03* Y3835D02* D03* X7661D02* D03* X7583D02* D03* Y3913D02* D03* X7504D02* D03* X7425Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7504D02* D03* X7583D02* D03* Y3992D02* D03* X7661D02* D03* X7740D02* D03* Y4071D02* D03* Y4228D02* D03* Y4150D02* D03* X7661D02* D03* X7583D02* D03* Y4228D02* D03* X7504D02* D03* X7425Y4150D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* X7504D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* X7740D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* X7425Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7740D02* D03* X7661D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* X7583D02* D03* Y4543D02* D03* X7504D02* D03* X7583Y4622D02* D03* Y4701D02* D03* X7504D02* D03* X7425D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* D050* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D035* X1596Y1177D02* X1603Y1170D01* X1611Y1165D01* X1621Y1160D01* X1630Y1158D01* X1640Y1157D01* X1650Y1158D01* X1660Y1160D01* X1669Y1164D01* X1677Y1170D01* X1685Y1177D01* X1691Y1184D01* X1695Y1193D01* X1698Y1203D01* X1700Y1213D01* Y1217D01* X1699Y1226D01* X1697Y1236D01* X1693Y1245D01* X1687Y1254D01* X1680Y1261D01* X1672Y1267D01* X1663Y1271D01* X1654Y1275D01* X1644Y1276D01* X1634D01* X1624Y1274D01* X1615Y1270D01* X1606Y1265D01* X1599Y1259D01* X1592Y1251D01* X1587Y1243D01* X1583Y1233D01* X1581Y1223D01* Y1213D01* X1582Y1204D01* X1585Y1194D01* X1590Y1185D01* X1596Y1177D01* X1598Y1188D02* X1683D01* X1730Y3957D02* X1723Y3949D01* X1714Y3945D01* X1705Y3944D01* X1695Y3947D01* X1687Y3953D01* X1682Y3962D01* X1681Y3971D01* X1684Y3981D01* X1690Y3989D01* X1698Y3994D01* X1708Y3996D01* X1718Y3993D01* X1726Y3988D01* X1731Y3979D01* X1733Y3970D01* Y3966D01* X1730Y3957D01* Y4474D02* X1723Y4467D01* X1714Y4462D01* X1705Y4461D01* X1695Y4464D01* X1687Y4470D01* X1682Y4479D01* X1681Y4489D01* X1684Y4498D01* X1690Y4506D01* X1698Y4511D01* X1708Y4513D01* X1718Y4511D01* X1726Y4505D01* X1731Y4497D01* X1733Y4487D01* Y4484D01* X1730Y4474D01* X2382Y4627D02* X2375Y4620D01* X2366Y4615D01* X2356Y4614D01* X2347Y4617D01* X2339Y4623D01* X2334Y4632D01* X2333Y4642D01* X2335Y4651D01* X2341Y4659D01* X2350Y4664D01* X2360Y4666D01* X2369Y4664D01* X2378Y4658D01* X2383Y4650D01* X2385Y4640D01* Y4637D01* X2382Y4627D01* X3917Y4651D02* X3923Y4659D01* X3931Y4664D01* X3941Y4666D01* X3951Y4664D01* X3959Y4658D01* X3964Y4650D01* X3966Y4640D01* Y4637D01* X3963Y4627D01* X3956Y4620D01* X3947Y4615D01* X3937Y4614D01* X3928Y4617D01* X3920Y4623D01* X3915Y4632D01* X3914Y4642D01* X3917Y4651D01* X1683Y4692D02* X1598D01* X1596Y4681D02* X1590Y4689D01* X1585Y4698D01* X1582Y4708D01* X1581Y4717D01* Y4727D01* X1583Y4737D01* X1587Y4746D01* X1592Y4755D01* X1599Y4763D01* X1606Y4769D01* X1615Y4774D01* X1624Y4778D01* X1634Y4780D01* X1644D01* X1654Y4778D01* X1663Y4775D01* X1672Y4771D01* X1680Y4765D01* X1687Y4758D01* X1693Y4749D01* X1697Y4740D01* X1699Y4730D01* X1700Y4720D01* Y4717D01* X1698Y4707D01* X1695Y4697D01* X1691Y4688D01* X1685Y4680D01* X1677Y4674D01* X1669Y4668D01* X1660Y4664D01* X1650Y4662D01* X1640Y4661D01* X1630Y4662D01* X1621Y4664D01* X1611Y4669D01* X1603Y4674D01* X1596Y4681D01* D055* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X2138Y4049D02* D03* X4370Y3785D02* D03* X4332Y2800D02* D03* X4319Y1339D02* D03* X4519D02* D03* X4619D02* D03* X4719D02* D03* X4819D02* D03* X4919D02* D03* D065* X1670Y3058D02* D03* Y3509D02* D03* D063* X7425Y2102D02* D03* X7661D02* D03* D059* X2359Y4522D02* D03* X3940D02* D03* D079* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D083* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D084* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D082* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D078* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/l4.grb0000644000175000017500000035045513421555714016025 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X8324Y575D02* Y1425D01* Y1300D02* X8624Y1000D01* X8324Y700D01* X8024Y1000D01* X8324Y1300D01* Y1200D02* X8524Y1000D01* X8324Y800D01* X8124Y1000D01* X8324Y1200D01* Y1100D02* X8424Y1000D01* X8324Y900D01* X8224Y1000D01* X8324Y1100D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4737D02* X8124Y4937D01* X8324Y5137D01* X8524Y4937D01* X8324Y4737D01* Y4637D02* X8024Y4937D01* X8324Y5237D01* X7799Y5662D02* X7599Y5462D01* X7799Y5262D01* X7999Y5462D01* X7799Y5662D01* X8324Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1441D01* Y4465D01* Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1820Y894D02* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* X1829Y850D02* X1793D01* X1784Y859D01* Y886D01* X1793Y894D01* X1820D01* X1731Y921D02* X1740D01* Y850D01* X1749D02* X1731D01* X1687Y877D02* X1651D01* X1642Y868D01* Y859D01* X1651Y850D01* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1616Y886D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1544Y886D02* X1536Y894D01* X1509D01* X1500Y886D01* X1509Y877D01* X1536D01* X1544Y868D01* Y859D01* X1536Y850D01* X1509D01* X1500Y859D01* X1936Y894D02* X1980D01* X1936Y877D02* X1980D01* X2069Y850D02* X2122D01* X2096D02* Y921D01* X2078Y903D01* X2167Y850D02* X2158Y859D01* X2167Y868D01* X2176Y859D01* X2167Y850D01* X2211D02* X2264Y921D01* X2256D02* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y912D01* X2220Y921D01* X2256D01* X2282Y859D02* Y912D01* X2291Y921D01* X2327D01* X2336Y912D01* Y859D01* X2327Y850D01* X2291D01* X2282Y859D01* Y850D02* X2336Y921D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* Y5379D01* X3296Y5370D01* X3358D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* Y5370D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5406D01* X3429Y5370D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D01* X4256D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5415D02* Y5432D01* X4398Y5441D01* X4407Y5415D02* X4398Y5406D01* X4407Y5397D01* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4425D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4567Y5406D02* X4603D01* X4638Y5415D02* Y5432D01* X4647Y5441D01* X4683D01* X4692Y5432D01* X4638Y5415D02* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* X4621D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5278Y5370D02* X5332Y5441D01* X5323D02* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5563Y5406D02* X5616D01* X5791Y5441D02* X5845D01* X5818D02* Y5370D01* X5791D02* X5845D01* X5862D02* Y5415D01* Y5406D02* X5871Y5415D01* X5898D01* X5907Y5406D01* Y5370D01* X5934D02* Y5415D01* Y5406D02* X5942Y5415D01* X5969D01* X5978Y5406D01* Y5370D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6218Y5432D02* X6227Y5441D01* X6262D01* X6271Y5432D01* Y5415D01* X6254Y5406D01* X6236D02* X6254D01* X6271Y5397D01* Y5379D01* X6262Y5370D01* X6227D01* X6218Y5379D01* X6396Y5370D02* X6378Y5397D01* Y5415D01* X6396Y5441D01* X6431D02* Y5370D01* X6485D01* X6502Y5441D02* Y5406D01* X6556D01* X6547Y5441D02* Y5370D01* X6591D02* X6609Y5397D01* Y5415D01* X6591Y5441D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2213Y5611D02* Y5571D01* X2220Y5564D01* X2247D02* X2253Y5571D01* Y5611D01* Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2447Y5681D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2373Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2353Y5501D01* X2360Y5507D01* Y5521D01* X2353Y5527D01* X2327D01* X2320Y5521D01* X2307D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2273Y5474D01* X2300D01* X2307Y5481D01* Y5521D01* Y5527D02* X2267Y5474D01* X2180D02* X2187Y5481D01* X2180Y5487D01* X2173Y5481D01* X2180Y5474D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* Y5404D02* X2087D01* Y5411D02* Y5384D01* X2060D01* X2053Y5391D01* Y5397D01* X2060Y5404D02* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2140Y5564D02* X2113D01* X2107Y5571D01* X2093Y5591D02* X2053D01* X2040Y5584D02* Y5597D01* X2033Y5611D01* X2027Y5617D01* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2040Y5584D01* X2000Y5771D02* X2027D01* X2040Y5744D02* X2000D01* Y5797D01* X2040D01* X2053Y5771D02* X2067Y5777D01* X2093Y5797D01* X2147D02* X2107D01* X2133Y5771D02* X2107D01* Y5797D02* Y5744D01* X2093D02* X2067Y5777D01* X2053Y5797D02* Y5744D01* X2000Y5681D02* X2033D01* X2040Y5687D01* X2033Y5707D02* X2000D01* Y5654D01* X2053D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2053Y5681D02* X2060Y5687D01* X2080D01* X2087Y5681D01* Y5654D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2147Y5617D02* X2107D01* Y5597D01* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2193Y5617D01* X2167D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2167Y5617D02* X2160Y5611D01* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* X2213Y5611D02* X2220Y5617D01* X2247D01* X2253Y5611D01* X2267Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2227D02* X2240D01* X2233D02* Y5687D01* X2227D01* X2233Y5701D02* Y5694D01* X2227D01* Y5701D01* X2233D01* X2213Y5744D02* Y5797D01* X2253D01* X2280D02* X2287D01* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5771D02* X2240D01* X2320Y5757D02* X2347D01* X2353Y5764D01* Y5771D01* X2347Y5777D01* X2327D01* X2320Y5771D01* Y5751D01* X2327Y5744D01* X2353D01* X2373D02* Y5797D01* X2400Y5777D02* X2373Y5757D01* X2407Y5744D01* X2440Y5751D02* Y5797D01* X2427Y5777D02* X2453D01* X2440Y5751D02* X2447Y5744D01* X2453D01* X2460Y5751D01* X2480Y5744D02* Y5777D01* Y5771D02* X2487Y5777D01* X2507D01* X2513Y5771D01* X2560Y5777D02* X2567Y5771D01* Y5751D01* X2560Y5744D01* X2540D01* X2533Y5751D01* Y5771D01* X2540Y5777D01* X2560D01* X2587Y5744D02* Y5777D01* Y5771D02* X2593Y5777D01* X2613D01* X2620Y5771D01* Y5744D01* X2660Y5784D02* Y5791D01* X2653D01* Y5784D01* X2660D01* X2653Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2693D02* Y5797D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2733Y5701D02* X2727Y5707D01* X2700D01* X2693Y5701D01* Y5687D01* X2680Y5681D02* X2640D01* X2620D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2547Y5654D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2427Y5494D01* Y5481D01* X2433Y5474D01* X2460D01* X2467Y5481D01* Y5494D01* X2460Y5501D01* X2433D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2647Y5527D02* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2680Y5494D01* Y5481D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2647D01* X2640Y5507D01* Y5521D01* X2647Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* X2693Y5481D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2747Y5474D02* X2787Y5527D01* Y5521D02* Y5481D01* X2780Y5474D01* X2753D01* X2747Y5481D01* Y5521D01* X2753Y5527D01* X2780D01* X2787Y5521D01* X2800Y5501D02* X2840D01* X2853Y5481D02* Y5521D01* X2860Y5527D01* X2887D01* X2993Y5654D02* Y5707D01* X3000Y5681D02* X2960D01* Y5707D01* Y5744D02* Y5797D01* Y5771D02* X3000D01* Y5797D02* Y5744D01* X2907Y5797D02* Y5744D01* X2933D01* X2940Y5751D01* Y5771D01* X2933Y5777D01* X2907D01* X2880D02* X2887D01* X2893Y5771D01* Y5744D01* X2873D02* Y5771D01* X2880Y5777D02* X2873Y5771D01* X2867Y5777D01* X2860D01* X2853Y5771D01* Y5777D02* Y5744D01* X2873Y5667D02* X2867Y5661D01* X2873Y5654D01* X2880Y5661D01* X2873Y5667D01* X2833Y5681D02* X2827Y5687D01* X2807D01* X2800Y5681D01* Y5687D02* Y5654D01* X2780Y5661D02* X2773Y5654D01* X2767D01* X2760Y5661D01* Y5707D01* X2773Y5687D02* X2747D01* X2727Y5681D02* X2733Y5674D01* Y5661D01* X2727Y5654D01* X2700D01* X2693Y5661D01* Y5687D02* X2700Y5681D01* X2727D01* X2827Y5764D02* X2840D01* Y5751D01* X2833Y5744D01* X2807D01* X2800Y5751D01* Y5791D01* X2807Y5797D01* X2833D01* X2840Y5791D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5224D02* Y5211D01* X2667Y5204D02* X2660Y5211D01* X2653Y5204D01* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* X2600Y5204D02* X2607Y5211D01* Y5224D01* X2600Y5204D02* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287D02* X2280Y5121D01* X2287Y5127D01* X2293Y5121D01* X2287Y5114D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2000Y5127D02* X2027D01* X2033Y5134D01* Y5141D01* X2027Y5147D01* X2007D01* X2000Y5141D01* Y5121D01* X2007Y5114D01* X2033D01* X2053D02* Y5147D01* Y5141D02* X2060Y5147D01* X2067D01* X2073Y5141D01* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2107Y5121D02* Y5127D01* X2113Y5134D01* X2140D01* Y5114D02* Y5141D01* X2133Y5147D01* X2113D01* X2080D02* X2087D01* X2093Y5141D01* Y5114D01* X2107Y5121D02* X2113Y5114D01* X2140D01* X2173D02* X2187D01* X2180D02* Y5147D01* X2173D01* X2180Y5154D02* X2173D01* Y5161D01* X2180D01* Y5154D01* X2193Y5204D02* X2167D01* X2160Y5211D01* Y5231D01* X2167Y5237D01* X2187D01* X2193Y5231D01* Y5224D01* X2187Y5217D01* X2160D01* X2140Y5211D02* X2133Y5204D01* X2127D01* X2120Y5211D01* Y5257D01* X2107Y5237D02* X2133D01* X2087Y5204D02* Y5231D01* X2080Y5237D01* X2060D01* X2053Y5231D01* Y5237D02* Y5204D01* X2040D02* X2000D01* X2020D02* Y5257D01* X2040D02* X2000D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2467Y5431D01* Y5417D01* X2460Y5411D01* X2487Y5424D02* X2500Y5437D01* Y5384D01* X2480D02* X2520D01* X2533D02* X2573Y5437D01* X2587Y5431D02* Y5391D01* X2593Y5384D01* X2620D01* X2627Y5391D01* Y5404D01* X2620Y5411D01* X2593D01* X2587Y5404D01* Y5431D02* X2593Y5437D01* X2620D01* X2627Y5431D01* X2640Y5417D02* Y5431D01* X2647Y5437D01* X2673D01* X2680Y5431D01* Y5417D01* X2673Y5411D01* X2647D02* X2640Y5404D01* Y5391D01* X2647Y5384D01* X2673D01* X2680Y5391D01* Y5404D01* X2673Y5411D01* X2647D01* X2640Y5417D01* X2693Y5391D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2753Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2887Y5474D02* X2860D01* X2853D02* X2893Y5527D01* X2887D02* X2893Y5521D01* Y5481D01* X2887Y5474D01* X2860D02* X2853Y5481D01* X2947Y5437D02* X2907Y5384D01* X2913D02* X2940D01* X2947Y5391D01* Y5431D01* X2940Y5437D01* X2913D01* X2907Y5431D01* Y5391D01* X2913Y5384D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D01* X2587Y5141D01* Y5147D02* Y5114D01* X2547D02* X2560D01* X2553D02* Y5147D01* X2547D01* X2553Y5161D02* Y5154D01* X2547D01* Y5161D01* X2553D01* X2773Y5121D02* X2760D01* X2753Y5127D01* Y5154D01* X2760Y5161D01* X2773D01* X2780Y5154D01* Y5134D01* X2767D01* Y5147D01* X2780D01* X2800Y5141D02* Y5121D01* X2807Y5114D01* X2833D01* Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X3013Y5217D02* X3040D01* X3047Y5224D01* Y5231D01* X3040Y5237D01* X3020D01* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X3538Y4631D02* X3356D01* X3154Y4429D01* Y4241D01* X3112Y4199D01* X3109Y4165D02* X3091Y4183D01* Y4228D01* X3129Y4266D01* Y4437D01* X3340Y4648D01* X3550D01* X3582Y4616D01* X3587Y4642D02* X3537Y4692D01* X3323D01* X3308Y4677D01* Y4651D01* X3101Y4444D01* Y4295D01* X3071Y4265D01* Y4061D01* X3005Y3995D01* X3003Y3945D02* X2971D01* X2895Y4021D01* Y4248D01* X2923Y4276D01* Y4460D01* X2884Y4499D01* X2875D01* X2852Y4522D01* Y4589D01* X2830Y4611D01* X2812D01* X2662Y4666D02* X2680Y4648D01* X2865D01* X2979Y4534D01* Y4118D01* X2945Y4089D02* X2947Y4087D01* X2978D01* X2998Y4072D02* X2980D01* X2954Y4046D01* X2952Y3996D02* X2924Y4024D01* Y4126D01* X2955Y4157D01* Y4456D01* X2963Y4464D01* Y4514D01* X2845Y4632D01* X2770D01* X2761Y4623D01* X2712D02* X2745Y4590D01* X2825D01* X2840Y4575D01* Y4049D01* X2967Y3922D01* X3019D01* X3028Y3931D01* Y3968D01* X3055Y3995D01* Y3946D02* X3085Y3976D01* Y4098D01* X3181Y4194D01* Y4424D01* X3372Y4615D01* X3517D01* X3537Y4595D01* X3538Y4631D02* X3578Y4591D01* X3518Y4574D02* X3495Y4597D01* X3383D01* X3267Y4481D01* Y4197D01* X3105Y4035D01* Y3946D01* X3198Y3837D02* Y3856D01* X3220Y3878D01* Y3913D01* X3416Y4109D01* Y4538D01* X3438Y4561D02* X3408D01* X3371Y4524D01* Y4126D01* X3221Y3976D01* Y3948D01* X3197Y3924D01* X3187D01* X3170Y3907D01* Y3884D01* X3154Y3868D01* X3127D01* X3097Y3838D01* X3045D02* X3149Y3942D01* Y4019D01* X3319Y4189D01* Y4503D01* X3398Y4582D01* X3467D01* X3487Y4562D01* X3518Y4574D02* X3648D01* X3712Y4638D01* X3612Y4616D02* X3582D01* X3578Y4591D02* X3624D01* X3662Y4629D01* X3637Y4665D02* X3592Y4710D01* X3232D01* X3075Y4553D01* X2962Y4627D02* X3004Y4585D01* Y4113D01* X2978Y4087D01* X2969Y4108D02* X2979Y4118D01* X3025Y4130D02* X3026Y4131D01* Y4613D01* X3012Y4627D01* X3075Y4553D02* Y4319D01* X3047Y4291D01* Y4121D01* X2998Y4072D01* X2897Y3964D02* X2815Y4046D01* Y4531D01* X2813Y4568D02* X2782Y4537D01* Y4002D01* X2832Y3952D01* X2871D01* X2897Y3964D02* Y3794D01* X2882Y3779D01* X2855Y3758D02* X2757Y3660D01* Y3543D01* X2766Y3534D01* Y3458D01* X2798Y3426D01* X2811Y3431D02* X2778Y3464D01* Y3547D01* X2801Y3570D01* Y3653D01* X2913Y3765D01* X2967D01* X2992Y3740D01* X2951Y3742D02* X2921D01* X2926Y3718D02* X3062D01* X3096Y3684D01* X3095D01* X3117Y3665D02* Y3568D01* X3043Y3494D01* X3049Y3470D02* X3134Y3555D01* Y3613D01* X3047Y3684D02* X3026Y3705D01* X2944D01* X2918Y3679D01* Y3624D01* X2852Y3558D01* Y3375D01* X2898Y3329D01* Y3162D01* X2851Y3136D02* X2884Y3169D01* Y3320D01* X2840Y3364D01* Y3632D01* X2926Y3718D01* X2921Y3742D02* X2820Y3641D01* Y3569D01* X2796Y3545D01* Y3466D01* X2825Y3437D01* Y3360D01* X2869Y3316D01* Y3174D01* X2837Y3142D01* Y3060D01* X2764Y2987D01* Y2976D01* X2559Y2771D01* Y1894D01* X2610Y1843D01* Y1672D01* X2705Y1577D01* X2930D01* X2994Y1641D01* X2973Y1647D02* X2920Y1594D01* X2718D01* X2646Y1666D01* Y1873D01* X2576Y1943D01* Y2768D01* X2851Y3043D01* Y3136D01* X2898Y3162D02* X2863Y3127D01* Y3038D01* X2628Y2803D01* Y2386D01* X2598Y2356D01* Y1952D01* X2661Y1889D01* Y1682D01* X2731Y1612D01* X2912D01* X2952Y1652D01* Y1760D01* X2927Y1824D02* X2905Y1802D01* Y1784D01* X2876Y1755D01* X2770D01* X2741Y1784D01* X2777Y1780D02* X2757Y1800D01* Y1961D01* X2749Y1969D01* Y2046D01* X2802Y2099D01* Y2569D01* X2848Y2615D01* Y2668D01* X2896Y2716D01* Y2937D01* X2938Y2979D01* Y3079D01* X2981Y3122D01* Y3171D01* X3003Y3193D01* Y3246D01* X2973Y3276D01* Y3399D01* X2962Y3410D01* Y3489D01* X2965Y3492D01* X3097Y3485D02* Y3497D01* X3173Y3573D01* X3193D01* X3230Y3610D01* Y3719D01* X3355Y3844D01* X3745D01* X3766Y3823D01* X3853D01* X3902Y3872D01* X4064D01* X4109Y3827D01* X4495D01* X4520Y3802D01* X4643D01* X4889Y4048D01* X5416D01* X5516Y4148D01* X5678D01* X5774Y4052D01* X6192D01* X6217Y4077D01* X6256D01* X6276Y4057D01* X6466Y4123D02* X6193Y3850D01* X5920D01* X5826Y3756D01* X5645D01* Y3656D02* X5600Y3611D01* Y3389D01* X5756Y3233D01* X5987D01* X5950Y3179D02* X5587D01* X5424Y3342D01* Y3408D01* X5286Y3546D01* X5284Y3474D02* Y3442D01* X5575Y3151D01* X5879D01* X6070Y2960D01* X6101D01* X6120Y2979D01* X6152D01* X6187Y2944D01* X6235D01* X6185Y2994D02* X6135D01* X5950Y3179D01* X5987Y3233D02* X6091Y3129D01* X6103D01* X5645Y3606D02* X5759D01* X5910Y3455D01* Y3440D01* X6020Y3330D01* X6099D01* X6421Y3008D01* Y2980D01* X6404Y2963D01* Y2928D01* X6435Y2897D01* Y2844D01* X6335D02* Y2898D01* X6301Y2932D01* Y2956D01* X6317Y2972D01* Y3013D01* X6179Y3151D01* X6148D01* X5948Y3351D01* X5850D01* X5645Y3556D01* X5679Y3206D02* X5303Y3582D01* X4959D01* X4912Y3629D01* X4869D01* X4849Y3609D01* X4821D01* X4803Y3627D01* X4768D01* X4647Y3506D01* X4598D01* X4574Y3530D01* X4163D01* X4142Y3509D01* X3955D01* X3880Y3584D01* X3816D01* X3830Y3663D02* X3938Y3771D01* X3972Y3795D02* X3980Y3787D01* X3972Y3795D02* X3894D01* X3850Y3751D01* X3868Y3793D02* X3891Y3816D01* X3944D01* X3748Y3486D02* X3815D01* X3930Y3371D01* Y3259D01* X4031Y3158D01* Y2915D01* X4094Y2852D01* Y2761D01* X4109Y2746D01* X4148D01* X4513Y2381D01* X4708D01* X4762Y2327D01* X5026D01* X5156Y2197D01* X5293D01* X5313Y2217D01* X5452D01* X5476Y2193D01* X5626D01* X5651Y2218D01* X5783D01* X5811Y2190D01* X5921D01* Y2236D02* X5812Y2345D01* X5806Y2375D02* X5917Y2264D01* X5947D01* X5975Y2236D01* Y2136D02* X5942Y2103D01* X5919D01* X5898Y2082D01* X4954D01* X4845Y2191D01* X4546D01* X4507Y2230D01* Y2246D01* X4466Y2287D01* X4469Y2311D02* X4529Y2251D01* X4836D01* X4980Y2107D01* X5901D01* X5909Y2115D01* X5933D02* X5947Y2129D01* X5933Y2115D02* X5909D01* X5921Y2136D02* X5752D01* X5739Y2149D01* X5098D01* X4970Y2277D01* X4531D01* X4479Y2329D01* X4453D01* X4443Y2339D01* Y2363D01* X4141Y2665D01* X4114D01* X4100Y2679D01* Y2707D01* X3933Y2874D01* Y3066D01* X3896Y3103D01* Y3356D01* X3828Y3424D01* X3782D01* X3766Y3440D01* X3743D01* X3698Y3441D02* X3720Y3463D01* X3763D01* X3766Y3466D01* X3810D01* X3912Y3364D01* Y3244D01* X3959Y3197D01* Y2947D01* X3953Y2941D01* Y2876D01* X4104Y2725D01* X4132D01* X4146Y2711D01* Y2683D01* X4166Y2663D01* X4188D01* X4184Y2728D02* X4504Y2408D01* X4983D01* X5046Y2345D01* X5812D01* X6235Y2844D02* Y2895D01* X6269Y2929D01* Y2963D01* X6103Y3129D01* X6085Y3094D02* X6055Y3124D01* X6031D01* X5949Y3206D01* X5679D01* X5545Y3406D02* X5494Y3457D01* Y3923D01* X5469Y3948D01* X5437D01* X5413Y3924D01* Y3724D01* X5388Y3699D01* X5218D01* X4785Y3594D02* Y3541D01* X4821Y3505D01* Y3481D01* X4797Y3457D01* Y3434D01* X4820Y3411D01* Y3380D01* X4796Y3356D01* Y3335D01* X4821Y3310D01* Y3279D01* X4800Y3258D01* Y3230D01* X4820Y3210D01* Y3175D01* X4785Y3140D01* Y3094D01* X4184Y2728D02* Y2946D01* X4056Y3074D01* Y3160D01* X3948Y3268D01* Y3418D01* X3855Y3511D01* X3678D01* X3648Y3541D01* X3591Y3548D02* X3605Y3562D01* X3659D01* X3692Y3529D01* X3858D01* X3963Y3424D01* Y3319D01* X4079Y3203D01* Y3096D01* X4204Y2971D01* Y2736D01* X4471Y2469D01* X5020D01* X5114Y2375D01* X5806D01* X5921Y2290D02* X5808Y2403D01* X5173D01* X5047Y2529D01* X4455D01* X4226Y2758D01* Y2999D01* X4101Y3124D01* Y3253D01* X3978Y3376D01* Y3430D01* X3861Y3547D01* X3742D01* X3700Y3589D01* X3591D01* Y3497D02* X3622Y3466D01* Y3435D01* X3637Y3420D01* X3666D01* X3676Y3410D01* Y3387D01* X3688Y3375D01* X3713D01* X3724Y3364D01* X3755D01* X3791Y3328D01* Y3162D01* X3809Y3144D01* Y3117D01* X3783Y3091D01* Y2871D01* X4227Y2427D01* X4257D01* X4443Y2241D01* Y2208D01* X4584Y2067D01* X4865D01* X4896Y2036D01* X5921D01* Y1990D02* X5675D01* X5668Y1997D01* X4864D01* X4857Y1990D01* X4597D01* X4409Y2178D01* X4396D01* X4374Y2200D01* Y2276D01* X4308Y2342D01* Y2358D01* X4261Y2405D01* X4217D01* X3767Y2855D01* Y3249D01* X3778Y3260D01* Y3309D01* X3747Y3340D01* X3745Y3285D02* X3738Y3278D01* Y2826D01* X4213Y2351D01* Y2344D01* X4257Y2300D01* X4289D01* X4338Y2251D01* Y2190D01* X4573Y1955D01* X5439D01* X5455Y1939D01* X5646D01* X5657Y1950D01* X5874D01* X5911Y1913D01* X5939D01* X6086Y1814D02* X6101Y1799D01* Y1742D01* X6299Y1544D01* Y1380D01* X6275Y1390D02* X6208Y1457D01* X6171D01* X6151Y1477D01* Y1497D01* X6236Y1340D02* X6259D01* X6299Y1380D01* X6492Y1168D02* X6515Y1145D01* X6492Y1168D02* X2219D01* X2170Y1216D01* X2074D01* X2010Y1280D01* X1976D01* D01* X2975Y2835D02* Y2857D01* X3025Y2907D01* Y3042D01* X3151Y3168D01* Y3252D01* X3167Y3268D01* Y3396D01* X3196Y3425D01* Y3487D01* X3248Y3486D02* X3220Y3514D01* X3186D01* X3171Y3499D01* Y3438D01* X3123Y3390D01* Y3270D01* X3134Y3259D01* Y3179D01* X3007Y3052D01* Y2923D01* X2952Y2868D01* Y2828D01* X3018Y2762D01* Y2665D01* X2947Y2594D01* Y2089D01* X2900Y2042D01* Y1959D01* X2874Y1933D01* X2876Y1831D02* X2850Y1857D01* Y2028D01* X2902Y2080D01* Y2584D01* X2998Y2680D01* Y2758D01* X2936Y2821D01* Y2880D01* X2975Y2919D01* Y3013D01* X2964Y3024D01* Y3063D01* X3043Y3142D01* Y3182D01* X3028Y3197D01* Y3391D01* X2988Y3431D01* Y3461D01* X3007Y3480D01* Y3495D01* X2994Y3531D02* X2986Y3523D01* Y3479D01* X2974Y3467D01* Y3423D01* X3000Y3397D01* Y3316D01* X3015Y3301D01* Y3187D01* X3027Y3175D01* Y3147D01* X2950Y3070D01* Y2964D01* X2918Y2932D01* Y2815D01* X2946Y2787D01* Y2667D01* X2849Y2570D01* Y2080D01* X2799Y2030D01* Y1803D01* X2822Y1780D01* X2823Y1726D02* X2803Y1706D01* X2743D01* X2709Y1740D01* Y1930D01* X2724Y1940D02* Y1763D01* X2735Y1752D01* X2741Y1784D02* Y1950D01* X2730Y1961D01* Y2094D01* X2776Y2140D01* Y2597D01* X2790Y2611D01* Y2698D01* X2851Y2759D01* Y2917D01* X2926Y2992D01* Y3086D01* X2965Y3125D01* Y3172D01* X2989Y3196D01* X2976Y3200D02* X2949Y3173D01* Y3129D01* X2912Y3092D01* Y3004D01* X2824Y2916D01* Y2886D01* X2736Y2798D01* Y2762D01* X2738Y2760D01* Y2598D01* X2749Y2587D01* Y2176D01* X2683Y2110D01* Y1981D01* X2724Y1940D01* X2709Y1930D02* X2663Y1976D01* Y2195D01* X2714Y2246D01* Y2499D01* X2725Y2510D01* Y2681D01* X2719Y2687D01* Y2813D01* X2800Y2894D01* Y2917D01* X2900Y3017D01* Y3100D01* X2934Y3134D01* Y3361D01* X2926Y3369D01* Y3465D01* X2920Y3471D01* Y3528D01* X2969Y3577D01* Y3592D01* X2996Y3585D02* X2994D01* X2932Y3523D01* Y3477D01* X2938Y3471D01* Y3381D01* X2949Y3370D01* Y3250D01* X2976Y3223D01* Y3200D01* X2989Y3196D02* Y3235D01* X2961Y3263D01* Y3385D01* X2950Y3396D01* Y3477D01* X2944Y3483D01* Y3518D01* X2988Y3562D01* X3007D01* X3022Y3577D01* Y3594D01* X3040Y3612D01* X3021Y3614D02* X2991D01* X2969Y3592D01* X2947Y3585D02* X2918D01* X2877Y3544D01* Y3395D01* X2922Y3350D01* Y3144D01* X2887Y3109D01* Y3025D01* X2764Y3095D02* X2766Y3093D01* Y3063D01* X2751Y3048D01* X2733D01* X2677Y2992D01* Y2959D01* X2585Y2867D01* X2570D01* X2555Y2912D02* X2611Y2968D01* Y2985D01* X2664Y3038D01* X2673D01* X2710Y3075D01* Y3108D01* X2721Y3119D01* Y3236D01* X2732Y3247D01* X2758D01* X2770Y3259D01* Y3404D01* X2746Y3428D01* X2745Y3389D02* X2731Y3375D01* Y3337D01* X2720Y3326D01* X2700D01* X2689Y3315D01* Y3294D01* X2693Y3290D01* Y3246D01* X2694Y3245D01* Y3102D01* X2682Y3090D01* X2658D01* X2493Y3482D02* X2538Y3527D01* X2614D01* X2631Y3510D02* X2614Y3527D01* X2672Y3506D02* X2698D01* X2784Y3420D01* Y3193D01* X2764Y3173D01* Y3095D01* X2743Y3109D02* X2724Y3090D01* Y3064D01* X2657Y2997D01* Y2966D01* X2580Y2889D01* X2554D01* X2522Y2857D01* X2500Y2899D02* X2511Y2910D01* Y2964D01* X2591Y3044D01* Y3075D01* X2606Y3090D02* X2635D01* X2651Y3106D01* Y3302D01* X2688Y3339D01* Y3409D01* X2667Y3430D01* X2579Y3330D02* X2609D01* X2667Y3388D01* X2666Y3349D02* X2609Y3292D01* Y3261D01* X2597Y3249D01* X2582D01* X2568Y3235D01* X2553Y3228D02* Y3304D01* X2579Y3330D01* X2613Y3372D02* X2628Y3387D01* X2613Y3372D02* X2577D01* X2535Y3330D01* Y3227D01* X2492Y3184D01* Y3105D01* X2422Y3035D01* Y2957D01* X2362Y2897D01* Y2741D01* X2281Y2660D01* X2331Y2564D02* X2259Y2636D01* Y2684D01* X2335Y2760D01* Y2991D01* X2413Y3069D01* Y3133D01* X2493Y3213D01* Y3482D01* X2273Y3547D02* X2255Y3529D01* Y3172D01* X2274Y3153D01* X2300Y3142D02* Y3215D01* X2291Y3224D01* Y3290D01* X2311Y3310D01* Y3389D01* X2312Y3272D02* Y3231D01* X2332Y3211D01* Y3095D01* X2310Y3073D01* Y2783D01* X2219Y2692D01* Y2592D01* X2181D02* Y2703D01* X2282Y2804D01* Y3124D01* X2300Y3142D01* X2411Y2885D02* Y2910D01* X2466Y2965D01* Y3004D01* X2489Y3027D01* Y3069D01* X2509Y3089D01* Y3184D01* X2553Y3228D01* X2568Y3235D02* Y3167D01* X2525Y3124D01* Y3074D01* X2509Y3058D01* Y3016D01* X2481Y2988D01* Y2943D01* X2441Y2903D01* X2473Y2873D02* X2507D01* X2526Y2892D01* Y2953D01* X2575Y3002D01* X2583D01* X2645Y3064D01* Y3077D01* X2658Y3090D01* X2606D02* X2591Y3075D01* X2561Y3053D02* Y3038D01* X2497Y2974D01* Y2928D01* X2382Y2813D01* Y2649D01* X2350Y2617D01* X2331Y2564D02* X2447D01* X2329Y2405D02* X2434Y2300D01* Y2108D01* X2497Y2045D01* Y1606D01* X2591Y1512D01* X3809D01* X3925Y1396D01* X4717D01* X4737Y1376D01* X4802D01* X4813Y1387D01* X4869D01* X4945Y1420D02* X4954Y1411D01* X5121D01* X5175Y1357D01* X6030D01* X6121Y1448D01* Y1490D01* X6151Y1497D02* X6133Y1515D01* X6065D01* X6049Y1499D01* Y1485D01* X6028Y1464D01* X5959D01* X5975Y1936D02* X5962D01* X5939Y1913D01* X5921Y1890D02* X5945D01* X5968Y1913D01* X5990D01* X5999Y1904D01* Y1879D01* X5983Y1863D01* X5967D01* X5975Y1890D02* X5971D01* X5950Y1869D01* X5908D01* X5886Y1891D01* Y1912D01* X5867Y1931D01* X5736D01* X5698Y1893D01* X5447D01* X5409Y1931D01* X5473Y1816D02* X5881D01* X5901Y1836D01* X5921D01* X5931Y1812D02* X5948Y1829D01* X5967Y1863D02* X5948Y1844D01* Y1829D01* X5931Y1812D02* X5907D01* X5898Y1803D01* X5921Y1790D02* X5888Y1757D01* Y1741D01* X5871Y1724D01* X5878Y1710D02* X5900Y1732D01* Y1748D01* X5909Y1757D01* X5954D01* X5975Y1736D01* X6086Y1814D02* X6063D01* X6054Y1823D01* Y1991D01* X6032Y2013D01* X4868D01* X4846Y2035D01* X4636D01* X4615Y2014D01* X4945Y1420D02* X4236D01* X3791Y1865D01* Y2004D01* X3720Y2075D01* Y2087D01* X3490Y2317D01* X3458D01* X3444Y2331D01* Y2351D01* X3287Y2508D01* Y2577D01* X3250Y2614D01* Y2836D01* X3181Y2905D01* Y3224D01* X3174Y3231D01* X3202Y3217D02* Y3004D01* X3262Y2944D01* Y2881D01* X3282Y2861D01* X3289D01* X3300Y2850D01* Y2543D01* X3736Y2107D01* Y2086D01* X3808Y2014D01* X3823D01* X3845Y1992D01* Y1957D01* X4210Y1592D01* X4230D01* X4347Y1475D01* X5084D01* X5144Y1415D01* X5954D01* X5975Y1436D01* X5959Y1464D02* X5952Y1457D01* X5132D01* X5090Y1499D01* X4486D01* X4398Y1587D01* X4317D01* X3890Y2014D01* X3863D01* X3847Y2030D01* Y2051D01* X3834Y2064D01* X3807D01* X3792Y2079D01* Y2100D01* X3775Y2117D01* X3765D01* X3483Y2399D01* X3473D01* X3455Y2417D01* Y2460D01* X3356Y2559D01* Y2641D01* X3312Y2685D01* Y2969D01* X3297Y2984D01* Y3066D01* X3266Y3097D01* Y3312D01* X3293Y3339D01* X3287Y3293D02* Y3121D01* X3347Y3061D01* Y2997D01* X3329Y2979D01* Y2750D01* X3370Y2709D01* X3392D01* X3400Y2701D01* Y2539D01* X3444Y2495D01* X3452D01* X3693Y2254D01* Y2234D01* X3797Y2130D01* X3814D01* X3842Y2102D01* Y2083D01* X3862Y2063D01* X3884D01* X3899Y2048D01* Y2030D01* X3920Y2009D01* X3947D01* X4353Y1603D01* X4418D01* X4498Y1523D01* X5095D01* X5130Y1488D01* X5878D01* X5897Y1469D01* X5937D01* X5948Y1480D02* Y1497D01* X5963Y1512D01* X5966Y1615D02* X5946Y1595D01* Y1583D01* X5932Y1569D01* X5898Y1613D02* X5853D01* X5838Y1598D01* X5197D01* X5159Y1636D01* X4536D01* X4412Y1760D01* X4349D01* X3680Y2429D01* Y2488D01* X3583Y2585D01* Y2704D01* X3555Y2732D01* Y2819D01* X3514Y2860D01* Y2993D01* X3491Y3016D01* Y3214D01* X3465Y3240D01* Y3296D01* X3440Y3321D01* X3415D01* X3393Y3343D01* X3647Y3441D02* X3668D01* X3690Y3419D01* X3752D01* X3769Y3402D01* Y3391D01* X3822Y3338D01* Y3202D01* X3833Y3191D01* Y3089D01* X3812Y3068D01* Y2999D01* X3865Y2946D01* Y2842D01* X4082Y2625D01* X4097D01* X4435Y2287D01* X4466D01* X4469Y2311D02* X4431D01* X4386Y2356D01* Y2381D01* X4121Y2646D01* X4083D01* X4038Y2691D01* Y2741D01* X3912Y2867D01* Y2930D01* X3826Y3016D01* Y3053D01* X3847Y3074D01* Y3211D01* X3839Y3219D01* Y3353D01* X3791Y3401D01* X3748Y3392D02* X3806Y3334D01* Y3181D01* X3821Y3166D01* Y3105D01* X3798Y3082D01* Y2981D01* X3840Y2939D01* Y2840D01* X4078Y2602D01* X4100D01* X4440Y2262D01* X4465D01* X4488Y2239D01* Y2197D01* X4547Y2138D01* X4840D01* X4921Y2057D01* X5954D01* X5975Y2036D01* Y1990D02* X5957D01* X5936Y1969D01* X5658D01* X5645Y1982D01* X5482D01* X5477Y1977D01* X4578D01* X4356Y2199D01* Y2263D01* X4297Y2322D01* X4280D01* X4258Y2344D01* Y2361D01* X4243Y2376D01* X4218D01* X3752Y2842D01* Y3256D01* X3766Y3270D01* Y3299D01* X3752Y3313D01* X3743D01* X3722Y3334D01* Y3348D01* X3708Y3362D01* X3676D01* X3664Y3374D01* Y3399D01* X3655Y3408D01* X3622D01* X3590Y3440D01* X3541Y3340D02* X3542Y3339D01* Y3262D01* X3559Y3245D01* Y2943D01* X3622Y2880D01* Y2691D01* X3658Y2655D01* Y2613D01* X4000Y2271D01* Y2235D01* X4042Y2193D01* X4059D01* X4099Y2153D01* Y2102D01* X4144Y2057D01* X4247D01* X4585Y1719D01* X5273D01* X5297Y1695D01* X5880D01* X5871Y1724D02* X5770D01* X5743Y1751D01* X5308D01* X5264Y1795D01* X5221D01* X5217Y1791D01* X4635D01* X4258Y2168D01* X4146D01* X4100Y2214D01* Y2240D01* X4069Y2271D01* X4059D01* X3682Y2648D01* Y2679D01* X3651Y2710D01* Y3140D01* X3613Y3178D01* Y3267D01* X3594Y3286D01* X3646Y3341D02* Y3333D01* X3675Y3304D01* Y3210D01* X3709Y3176D01* Y2745D01* X4163Y2291D01* X4179D01* X4216Y2254D01* X4282D01* X4303Y2233D01* Y2177D01* X4604Y1876D01* X5025D01* X5035Y1886D01* X5403D01* X5473Y1816D01* X5409Y1931D02* X4574D01* X4320Y2185D01* Y2242D01* X4285Y2277D01* X4221D01* X4168Y2330D01* Y2357D01* X3723Y2802D01* Y3297D01* X3704Y3316D01* X3686D01* X3667Y3335D01* Y3354D01* X3657Y3364D01* X3615D01* X3595Y3384D01* X3545Y3386D02* X3562Y3369D01* Y3263D01* X3571Y3254D01* Y3211D01* X3580Y3202D01* Y2970D01* X3639Y2911D01* Y2698D01* X3670Y2667D01* Y2631D01* X4043Y2258D01* Y2236D01* X4139Y2140D01* X4183D01* X4202Y2121D01* Y2096D01* X4216Y2082D01* X4248D01* X4569Y1761D01* X5225D01* X5255Y1731D01* X5726D01* X5747Y1710D01* X5878D01* X5880Y1695D02* X5921Y1736D01* Y1690D02* X5914Y1683D01* X5859D01* X5851Y1675D01* X4603D01* X4501Y1777D01* X4486D01* X4240Y2023D01* X4158D01* X3947Y2234D01* Y2291D01* X3646Y2592D01* Y2644D01* X3607Y2683D01* Y2852D01* X3547Y2912D01* Y3237D01* X3498Y3286D01* X3443D02* X3444Y3285D01* Y2899D01* X3497Y2846D01* Y2687D01* X3560Y2624D01* Y2527D01* X3619Y2468D01* X3635D01* X3657Y2446D01* Y2420D01* X4349Y1728D01* X4413D01* X4525Y1616D01* X5027D01* X5065Y1578D01* X5851D01* X5860Y1569D01* X5932D01* X5921Y1590D02* X5898Y1613D01* X5921Y1636D02* X5285D01* X5268Y1653D01* X4553D01* X4265Y1941D01* X4209D01* X3841Y2309D01* Y2361D01* X3824Y2378D01* X3813D01* X3595Y2596D01* Y2720D01* X3581Y2734D01* Y2831D01* X3529Y2883D01* X3531D01* Y3174D01* X3529D01* X3535Y3180D01* Y3217D01* X3477Y3275D01* Y3309D01* X3469Y3317D01* Y3418D01* X3491Y3440D01* X3442Y3442D02* X3420Y3420D01* X3394D01* X3372Y3398D01* Y3186D01* X3392Y3166D01* Y2957D01* X3415Y2934D01* Y2857D01* X3403Y2845D01* Y2816D01* X3474Y2745D01* Y2682D01* X3503Y2653D01* Y2528D01* X3527Y2504D01* X3543D01* X3594Y2453D01* Y2413D01* X3619Y2388D01* X3653D01* X4348Y1693D01* X4407D01* X4507Y1593D01* X4940D01* X4976Y1557D01* X5942D01* X5975Y1590D01* X5966Y1615D02* X5986D01* X6000Y1601D01* Y1578D01* X5975Y1553D01* Y1536D01* X5963Y1512D02* X5990D01* X5998Y1520D01* Y1547D01* X6014Y1563D01* X6027D01* X6042Y1578D01* Y1948D01* X6023Y1967D01* X5966D01* X5935Y1936D01* X5921D01* X5898Y1803D02* Y1787D01* X5881Y1770D01* X5446D01* X5407Y1809D01* X4646D01* X4265Y2190D01* X4219D01* X4202Y2207D01* Y2237D01* X4179Y2260D01* X4114D01* X4042Y2332D01* Y2351D01* X3695Y2698D01* Y2745D01* X3667Y2773D01* Y3147D01* X3634Y3180D01* Y3264D01* X3619Y3279D01* Y3342D01* X3599Y3362D01* X3584D01* X3574Y3372D01* Y3395D01* X3562Y3407D01* X3542D01* X3519Y3430D01* Y3444D01* X3500Y3463D01* X3375D01* X3354Y3442D01* X3350Y3387D02* Y3373D01* X3330Y3353D01* Y3142D01* X3360Y3112D01* Y2965D01* X3345Y2950D01* Y2894D01* X3383Y2856D01* Y2812D01* X3449Y2746D01* Y2570D01* X3459Y2560D01* Y2517D01* X3656Y2320D01* X3685D01* X3756Y2249D01* Y2239D01* X3793Y2202D01* Y2186D01* X3823Y2156D01* X3835D01* X3892Y2099D01* Y2084D01* X3912Y2064D01* X3933D01* X4343Y1654D01* X4405D01* X4524Y1535D01* X5212D01* X5224Y1523D01* X5888D01* X5921Y1490D01* X5937Y1469D02* X5948Y1480D01* X7012Y876D02* X7045Y843D01* X7072Y863D02* X7105D01* Y876D02* X7072D01* X7045D02* X7012Y843D01* Y786D02* Y759D01* X7018Y753D01* X7038D01* X7045Y759D01* X7012Y739D02* X7018Y733D01* X7038D01* X7045Y739D01* Y786D01* X7072D02* X7105D01* X7072Y773D02* X7105D01* X7125Y883D02* X7138Y896D01* Y843D01* X7118D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7212Y849D01* Y869D01* X7205Y876D01* X7172D01* Y896D01* X7212D01* X7232Y869D02* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7225Y863D01* Y849D01* X7232Y843D01* X7258D01* X7265Y849D01* Y863D01* X7258Y869D01* Y806D02* X7232D01* X7225Y799D01* Y759D01* X7232Y753D01* X7258D01* X7265Y759D01* Y799D01* X7258Y806D01* X7265D02* X7225Y753D01* X7298D02* X7292Y759D01* X7298Y766D01* X7305Y759D01* X7298Y753D01* X7338D02* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332D02* X7372Y806D01* X7425D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* X7445D02* X7452D01* X7438Y779D02* X7445Y786D01* X7452D02* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7438D02* Y876D01* Y869D02* X7445Y876D01* X7452D01* X7458Y869D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y869D01* X7452Y876D01* X7425Y896D02* X7385Y843D01* X7392D02* X7418D01* X7425Y849D01* Y889D01* X7418Y896D01* X7392D01* X7385Y889D01* Y849D01* X7392Y843D01* X7372Y896D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7923Y1181D02* X7957Y1214D01* X7937Y1241D02* Y1274D01* X7923D02* Y1241D01* Y1214D02* X7957Y1181D01* X8013D02* X8040D01* X8047Y1188D01* Y1208D01* X8040Y1214D01* X8060Y1181D02* X8067Y1188D01* Y1208D01* X8060Y1214D01* X8013D01* Y1241D02* Y1274D01* X8027Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1288D02* Y1328D01* X7950Y1341D02* X7957Y1348D01* Y1374D01* X7910Y1381D02* X7903Y1374D01* Y1348D01* X7910Y1341D01* X7950D01* X7937D02* X7930Y1348D01* Y1374D01* X7937Y1381D01* X7950D01* X7957Y1374D01* Y1401D02* Y1428D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* Y1501D02* X7910D01* X7903Y1508D01* Y1534D01* X7910Y1541D01* X7950D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8040D01* X8047Y1534D01* Y1561D02* Y1588D01* X8040Y1594D01* X8000D01* X7993Y1588D01* Y1594D02* X8047Y1554D01* Y1534D02* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X7957Y1428D02* X7950Y1434D01* X7910D01* X7903Y1428D01* Y1434D02* X7957Y1394D01* Y1401D02* X7950Y1394D01* X7910D01* X7903Y1401D01* Y1428D01* X8020Y1681D02* X8013Y1688D01* Y1694D01* X8020Y1701D01* X8047D01* Y1681D02* X8020D01* X8013Y1674D01* Y1668D01* X8020Y1661D01* X8013D02* X8047D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X7957D02* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* X7923Y1621D02* X7930Y1628D01* X7923Y1634D01* Y1641D01* X7930Y1648D01* X7957D01* Y1661D02* X7923D01* X7930D02* X7923Y1668D01* Y1674D01* X7930Y1681D01* X7957D01* Y1701D02* X7930D01* X7923Y1694D01* Y1688D01* X7930Y1681D01* X7025Y1940D02* X7080Y1995D01* Y2075D01* X7096Y2091D01* X7142D01* X7130Y2109D02* X7095D01* X7065Y2079D01* Y2026D01* X7025Y1986D01* Y2040D02* X7050Y2065D01* Y2116D01* X7075Y2141D01* Y2218D01* X7096Y2239D01* X7114D01* X7144Y2269D01* Y2787D01* X7038Y2893D01* Y3440D01* X7085Y3487D01* X7113D01* X7104Y3301D02* X7083Y3280D01* Y3086D01* X7061Y3064D01* Y2891D01* X7164Y2788D01* Y2143D01* X7130Y2109D01* X7142Y2091D02* X7185Y2134D01* Y2790D01* X7083Y2892D01* Y3022D01* X7097Y3036D01* X7119D01* Y2984D02* X7103Y2968D01* Y2895D01* X7206Y2792D01* Y2036D01* X7126Y1956D01* X7102D01* X7066Y1920D01* Y1881D01* X7025Y1840D01* X6823Y1693D02* X6843Y1713D01* X6998D01* X7025Y1740D01* X7192Y1573D01* X7281D01* X7302Y1594D01* Y2507D01* X7330Y2535D01* X7361D01* X7385Y2559D01* Y2589D01* X7410Y2614D01* X7437D01* X7464Y2641D01* Y2692D01* X7504Y2732D01* X6276Y4057D02* X6297D01* X6334Y4094D01* X6385D01* X6335Y4144D02* D01* X6283D01* X6246Y4107D01* X6222D01* X6198Y4131D01* X6100D01* X5974Y4257D01* X4998D01* X4645Y3904D01* X4536D01* X4505Y3935D01* X4274D01* X4238Y3899D01* X3822D01* X3790Y3867D01* X3346D01* X3267Y3788D01* X3246Y3815D02* X3348Y3917D01* X3757D01* X3794Y3954D01* X4119D01* X4143Y3930D01* X4215D01* X4232Y3947D01* X4411D01* X4451Y3987D01* X4625D01* X4933Y4295D01* X6018D01* X6156Y4157D01* X6196D01* X6221Y4182D01* X6248D01* X6271Y4159D01* X6300D01* X6322Y4181D01* X6349D01* X6386Y4144D01* X6435D01* X6466Y4123D02* Y4213D01* X6435Y4244D01* X6335D02* X6284D01* X6252Y4212D01* X6218D01* X6188Y4242D01* X6151D01* X6063Y4330D01* X4871D01* X4631Y4090D01* X4395D01* X4289Y3984D01* X3781D01* X3767Y3970D01* X3342D01* X3325Y3953D01* Y3936D01* X3224Y3835D01* Y3772D01* X3117Y3665D01* X3162Y3641D02* X3134Y3613D01* X3070Y3648D02* Y3628D01* X3054Y3612D01* X3040D01* X3021Y3614D02* X3047Y3640D01* X3070Y3648D02* X3057Y3661D01* X2972D01* X2954Y3643D01* X2939Y3669D02* X2933Y3663D01* Y3619D01* X2864Y3550D01* Y3385D01* X2910Y3339D01* Y3154D01* X2875Y3119D01* Y3032D01* X2643Y2800D01* Y2373D01* X2621Y2351D01* Y1958D01* X2677Y1902D01* Y1695D01* X2742Y1630D01* X2902D01* X2938Y1666D01* Y1687D01* X2927Y1698D01* Y1724D01* X2952Y1760D02* X2972Y1780D01* X2994Y1791D02* X3027Y1824D01* X3006Y1759D02* Y1626D01* X2939Y1559D01* X2693D01* X2585Y1667D01* Y1836D01* X2543Y1878D01* Y2774D01* X2743Y2974D01* Y2995D01* X2824Y3076D01* Y3149D01* X2855Y3180D01* Y3312D01* X2811Y3356D01* Y3431D01* X2798Y3426D02* Y3351D01* X2839Y3310D01* Y3213D01* X2843Y3209D01* Y3189D01* X2809Y3155D01* Y3086D01* X2723Y3000D01* X2708D01* X2693Y2985D01* Y2949D01* X2527Y2783D01* Y1863D01* X2541Y1849D01* Y1680D01* X2679Y1542D01* X2949D01* X3029Y1622D01* Y1735D01* X3006Y1759D02* X3027Y1780D01* X2994Y1791D02* Y1641D01* X2973Y1647D02* Y1726D01* X2874Y1727D02* X2871Y1730D01* X2860D01* X2852Y1725D01* X2851Y1716D01* X2859Y1710D01* X2860D01* X2870D01* X2871D01* X2879Y1704D01* X2878Y1695D01* X2870Y1690D01* X2800D01* X2792Y1685D01* X2791Y1676D01* X2799Y1670D01* X2800D01* X2830D01* X2831D01* X2839Y1664D01* X2838Y1655D01* X2830Y1650D01* X2751D01* X2693Y1708D01* Y1916D01* X2641Y1968D01* Y2344D01* X2670Y2373D01* Y2796D01* X2783Y2909D01* Y2921D01* X2887Y3025D01* X2985Y3039D02* Y3064D01* X3055Y3134D01* Y3189D01* X3040Y3204D01* Y3231D01* X3046Y3237D01* Y3412D01* X3030Y3428D01* Y3458D01* X3042Y3470D01* X3049D01* X3051Y3443D02* X3072Y3464D01* X3106D01* X3123Y3481D01* Y3498D01* X3175Y3550D01* X3243D01* X3317Y3624D01* Y3727D01* X3350Y3760D01* X3364D01* X3388Y3784D01* Y3799D01* X3409Y3820D01* X3729D01* X3756Y3793D01* X3868D01* X3850Y3751D02* X3567D01* X3532Y3786D01* X3491D01* X3486Y3791D01* X3523Y3765D02* X3554Y3734D01* X3661D01* X3732Y3663D01* X3830D01* X3425Y3798D02* X3505Y3718D01* X3617D01* X3719Y3616D01* Y3597D01* X3753Y3563D01* X3868D01* X4091Y3340D01* Y3311D01* X4155Y3247D01* Y3123D01* X4268Y3010D01* Y2748D01* X4325Y2691D01* X4188Y2663D02* X4548Y2303D01* X4999D01* X5134Y2168D01* X5953D01* X5947Y2129D02* Y2141D01* X5969Y2163D01* X5953Y2168D02* X5975Y2190D01* X5969Y2163D02* X6306D01* X6456Y2313D01* X6498D01* X6625Y2440D01* X6849Y2512D02* Y2310D01* X6825Y2286D01* X6871Y2340D02* X6899Y2368D01* Y2493D01* X6906Y2500D01* Y3071D01* X6895Y3082D01* Y3505D01* X6950Y3560D01* Y4115D01* X7079Y4244D01* X7117D01* X7141Y4234D02* Y4255D01* X7119Y4212D02* X7141Y4234D01* Y4255D02* X7128Y4268D01* X7065D01* X6931Y4134D01* Y3574D01* X6878Y3521D01* Y3056D01* X6890Y3044D01* Y2844D01* X6862Y2816D01* Y2525D01* X6849Y2512D01* X7025Y2440D02* X6962Y2503D01* Y2582D01* X6918Y2626D01* Y3070D01* X6947Y3099D01* Y3523D01* X6968Y3544D01* Y3976D01* X7104Y4112D01* X7143Y4126D02* Y3843D01* X7124Y3824D01* X7083D01* X7119Y3764D02* X7089D01* X7041Y3716D01* Y3478D01* X7020Y3457D01* Y2674D01* X7082Y2612D01* Y2251D01* X7056Y2225D01* Y2171D01* X7025Y2140D01* Y2286D02* X7070Y2331D01* Y2589D01* X7002Y2657D01* Y3475D01* X7022Y3495D01* Y3730D01* X7082Y3790D01* X7104D01* X7083Y3824D02* X7004Y3745D01* Y3512D01* X6984Y3492D01* Y3079D01* X6949Y3044D01* Y2847D01* X6984Y2812D01* Y2638D01* X7058Y2564D01* Y2419D01* X7025Y2386D02* X7058Y2419D01* X7046Y2430D02* X7030Y2414D01* X7020D01* X7000Y2394D01* Y2365D01* X7025Y2340D01* X7046Y2430D02* Y2465D01* X6986Y2525D01* Y2598D01* X6965Y2619D01* Y2804D01* X6935Y2834D01* Y3059D01* X6965Y3089D01* Y3507D01* X6986Y3528D01* Y3819D01* X7094Y3927D01* X7923Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7923D02* Y4269D01* Y4242D02* X7957Y4209D01* X8013D02* X8040D01* X8047Y4215D01* Y4235D01* X8040Y4242D01* X8060Y4209D02* X8067Y4215D01* Y4235D01* X8060Y4242D01* X8013D01* Y4269D02* Y4302D01* X8027Y4269D02* Y4302D01* X8040Y4369D02* X8047Y4375D01* Y4402D01* X8040Y4409D01* X8000D01* X7993Y4402D01* Y4375D01* X8000Y4369D01* X8013D01* X8020Y4375D01* Y4402D01* X8013Y4409D01* Y4422D02* X8000D01* X7993Y4429D01* Y4455D01* X8000Y4462D01* X8013D01* X8020Y4455D01* Y4429D01* X8013Y4422D01* X8020Y4429D02* X8027Y4422D01* X8040D01* X8047Y4429D01* Y4455D01* X8040Y4462D01* X8027D01* X8020Y4455D01* X8040Y4502D02* X8047Y4495D01* X8040Y4489D01* X8033Y4495D01* X8040Y4502D01* Y4529D02* X8047Y4535D01* Y4562D01* Y4582D02* X7993Y4622D01* Y4615D02* X8000Y4622D01* X8040D01* X8047Y4615D01* Y4589D01* Y4562D02* X8040Y4569D01* X8020D01* X7993D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8047Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* X8013Y4649D02* X8020Y4655D01* X8013Y4662D01* X8020Y4655D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* Y4649D02* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4689D02* X8013D01* Y4695D02* Y4702D01* Y4715D02* Y4722D01* X8020Y4729D01* X8047D01* Y4709D02* X8020D01* X8013Y4715D02* X8020Y4709D01* X8013Y4702D01* Y4695D02* X8020Y4689D01* X7923Y4715D02* Y4722D01* X7930Y4729D01* X7957D01* Y4709D02* X7930D01* X7923Y4715D02* X7930Y4709D01* X7923Y4702D01* Y4695D01* X7930Y4689D01* X7923D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4655D02* X7930D01* X7923Y4662D02* X7930Y4655D01* X7923Y4649D01* Y4642D02* X7930Y4635D01* X7903Y4622D02* X7957Y4582D01* X7950D02* X7957Y4589D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* Y4562D02* Y4535D01* X7950Y4529D01* X7910D01* X7903Y4535D01* Y4562D01* X7957D02* X7950Y4569D01* X7910D01* X7903Y4562D01* Y4569D02* X7957Y4529D01* X7950Y4502D02* X7943Y4495D01* X7950Y4489D01* X7957Y4495D01* X7950Y4502D01* X7910Y4462D02* X7903Y4455D01* Y4429D01* X7910Y4422D01* X7950D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7957Y4375D02* X7950Y4369D01* X7910D01* X7903Y4375D01* Y4402D01* X7910Y4409D01* X7950D02* X7957Y4402D01* Y4375D01* Y4355D02* Y4315D01* Y4335D02* X7903D01* X7917Y4322D01* X7212Y5058D02* X7172Y5004D01* X7178D02* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7232D02* X7225Y5011D01* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225D02* X7265Y5058D01* X7298Y5018D02* X7305Y5011D01* X7298Y5004D01* X7292Y5011D01* X7298Y5018D01* X7332Y5004D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7532Y5094D02* Y5121D01* X7525Y5128D01* X7518D01* X7512Y5121D01* X7505Y5128D01* X7438Y5121D02* X7445Y5128D01* X7452D02* X7458Y5121D01* Y5094D01* X7438D02* Y5128D01* X7445D02* X7452D01* X7458Y5121D02* X7465Y5128D01* X7472D01* X7478Y5121D01* Y5094D01* X7492D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D02* Y5094D01* X7492Y5031D02* X7498Y5038D01* X7505D02* X7512Y5031D01* Y5004D01* X7492D02* Y5038D01* X7498D02* X7505D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7372Y5148D02* X7332D01* Y5128D01* X7365D01* X7372Y5121D01* Y5101D01* X7365Y5094D01* X7338D01* X7332Y5101D01* X7298Y5094D02* X7305Y5101D01* X7298Y5108D01* X7292Y5101D01* X7298Y5094D01* X7258Y5121D02* X7232D01* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7265Y5141D01* Y5128D01* X7258Y5121D01* X7265Y5114D01* Y5101D01* X7258Y5094D01* X7232D01* X7225Y5101D01* Y5114D01* X7232Y5121D01* X7212Y5148D02* X7172D01* Y5128D01* X7205D01* X7212Y5121D01* Y5101D01* X7205Y5094D01* X7178D01* X7172Y5101D01* X7158Y5094D02* X7118D01* X7138D02* Y5148D01* X7125Y5134D01* X7012Y5128D02* X7045Y5094D01* X7072Y5114D02* X7105D01* Y5128D02* X7072D01* X7045D02* X7012Y5094D01* Y5038D02* Y5011D01* X7018Y5004D01* X7038D01* X7045Y5011D01* X7072Y5024D02* X7105D01* X7118Y5004D02* X7158D01* X7138D02* Y5058D01* X7125Y5044D01* X7105Y5038D02* X7072D01* X7045D02* Y4991D01* X7038Y4984D01* X7018D01* X7012Y4991D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X2148Y4773D02* D03* X2092Y4767D02* D03* X2014Y4651D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1950Y4222D02* D03* Y4156D02* D03* X2018Y4045D02* D03* X2061Y4142D02* D03* X2124Y4218D02* D03* X2119Y4359D02* D03* X2223Y4425D02* D03* X2580Y4311D02* D03* X2511Y4345D02* D03* X2514Y4265D02* D03* X2581Y4227D02* D03* X2683Y4228D02* D03* X2684Y4304D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2786Y4848D02* D03* X2853Y4849D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3137D02* D03* X3199Y4847D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3361Y4671D02* D03* X3331Y4670D02* D03* X3286Y4659D02* D03* X3250Y4646D02* D03* X3236Y4673D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3034Y4657D02* D03* X3048Y4538D02* D03* Y4498D02* D03* X3050Y4328D02* D03* X3112Y4199D02* D03* X3109Y4165D02* D03* X3202D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3251Y4089D02* D03* X3297Y4095D02* D03* X3347Y3943D02* D03* X3286Y3939D02* D03* X3244Y3894D02* D03* X3246Y3815D02* D03* X3267Y3788D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X2930Y3929D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2997Y4044D02* D03* X2954Y4046D02* D03* X2952Y3996D02* D03* X2945Y4089D02* D03* X2969Y4108D02* D03* X3025Y4130D02* D03* X2934Y4231D02* D03* X2902Y4301D02* D03* X2871Y4302D02* D03* X2883Y4465D02* D03* X2940Y4479D02* D03* X2906Y4532D02* D03* X2873D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X2508Y4117D02* D03* X2608Y4118D02* D03* X2658Y4119D02* D03* X2689Y4063D02* D03* X2736Y4010D02* D03* X2804Y4013D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2743Y3892D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2778Y3579D02* D03* X2819Y3537D02* D03* X2818Y3477D02* D03* X2819Y3507D02* D03* X2745Y3506D02* D03* X2709Y3547D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2629Y3430D02* D03* Y3468D02* D03* X2664D02* D03* X2667Y3430D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2556Y3504D02* D03* X2592Y3505D02* D03* X2587Y3467D02* D03* X2556Y3464D02* D03* X2515Y3462D02* D03* X2514Y3424D02* D03* Y3387D02* D03* X2550Y3390D02* D03* X2556Y3425D02* D03* X2587Y3429D02* D03* X2590Y3351D02* D03* X2589Y3308D02* D03* X2588Y3272D02* D03* X2630Y3271D02* D03* X2672Y3269D02* D03* X2714Y3268D02* D03* X2710Y3304D02* D03* X2746Y3310D02* D03* X2748Y3268D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* Y3109D02* D03* X2745Y3074D02* D03* X2718Y2979D02* D03* X2636Y2978D02* D03* X2585Y2979D02* D03* X2555Y2912D02* D03* X2570Y2867D02* D03* X2698Y2784D02* D03* X2757D02* D03* X2788D02* D03* X2825D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* Y2839D02* D03* X3291Y2882D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3562Y2688D02* D03* X3659Y3191D02* D03* X3601Y3154D02* D03* X3592Y3232D02* D03* X3594Y3286D02* D03* X3644D02* D03* X3696D02* D03* X3745Y3285D02* D03* X3864Y3235D02* D03* X3875Y3169D02* D03* X3981Y3176D02* D03* X4004Y3122D02* D03* X3868Y3112D02* D03* X3788Y3128D02* D03* X3688Y3027D02* D03* X3628Y2967D02* D03* X3492Y2978D02* D03* X3413Y3035D02* D03* X3326D02* D03* X3276Y3033D02* D03* X3371Y3139D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3542Y3554D02* D03* X3548Y3587D02* D03* X3591Y3589D02* D03* Y3548D02* D03* Y3497D02* D03* X3545Y3485D02* D03* Y3440D02* D03* X3590D02* D03* X3595Y3384D02* D03* X3590Y3341D02* D03* X3541Y3340D02* D03* X3545Y3386D02* D03* X3393Y3343D02* D03* X3351D02* D03* X3293Y3339D02* D03* X3247Y3340D02* D03* X3287Y3293D02* D03* X3245Y3292D02* D03* X3196Y3296D02* D03* X3146Y3286D02* D03* X3174Y3231D02* D03* X3202Y3217D02* D03* X3159Y3138D02* D03* X3119Y2969D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X2947Y2928D02* D03* X2875Y2885D02* D03* Y2834D02* D03* X2829Y2859D02* D03* X2875Y2785D02* D03* X2921Y2779D02* D03* X2925Y2735D02* D03* X2872Y2732D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X2875Y2636D02* D03* X2823Y2634D02* D03* X2824Y2685D02* D03* X2761Y2681D02* D03* X2699Y2671D02* D03* X2599Y2694D02* D03* X2600Y2658D02* D03* X2598Y2623D02* D03* X2599Y2534D02* D03* X2603Y2472D02* D03* X2601Y2427D02* D03* X2604Y2393D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2704Y2555D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2093Y2676D02* D03* X2236Y2788D02* D03* X2178Y2786D02* D03* X2202Y2890D02* D03* X2261Y2894D02* D03* X2260Y2965D02* D03* X2224Y3044D02* D03* X2190Y3009D02* D03* X2131Y3010D02* D03* X2102Y2896D02* D03* X2104Y2818D02* D03* X2026Y2841D02* D03* X2039Y2790D02* D03* X1991Y2780D02* D03* X1861Y2625D02* D03* X1860Y2657D02* D03* X1832Y2771D02* D03* X1784Y2778D02* D03* X1788Y2820D02* D03* X1689Y2381D02* D03* X1738Y2507D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1901Y2550D02* D03* X1902Y2484D02* D03* X1904Y2445D02* D03* X1902Y2413D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1903Y2312D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1973Y2094D02* D03* X1902Y2092D02* D03* X2013Y2094D02* D03* X2032Y2183D02* D03* X2030Y2222D02* D03* X1999D02* D03* X1998Y2292D02* D03* X1990Y2335D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2213Y2184D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2280Y2095D02* D03* X2327Y2096D02* D03* X2377Y2061D02* D03* X2374Y2095D02* D03* X2413Y2093D02* D03* X2505Y2091D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2327Y1830D02* D03* X2265Y1915D02* D03* X2201Y1916D02* D03* X2188Y1812D02* D03* X2187Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* X2130Y1679D02* D03* X2051Y1736D02* D03* X2091Y1756D02* D03* X2093Y1834D02* D03* X2027Y1915D02* D03* X1929Y1929D02* D03* X1877Y1915D02* D03* X1825Y1920D02* D03* X1854Y1876D02* D03* X1878Y1848D02* D03* X1646Y1817D02* D03* X1692Y1826D02* D03* X1698Y1788D02* D03* X1781Y1918D02* D03* X1677Y2025D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2280Y2212D02* D03* X2303Y2180D02* D03* X2332Y2184D02* D03* X2385Y2187D02* D03* X2386Y2243D02* D03* X2304Y2311D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2495Y2284D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2479Y2248D02* D03* X2501Y2225D02* D03* X2481Y2482D02* D03* X2482Y2531D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2463Y2790D02* D03* X2497D02* D03* X2522Y2857D02* D03* X2500Y2899D02* D03* X2473Y2873D02* D03* X2441Y2903D02* D03* X2411Y2885D02* D03* X2397Y2982D02* D03* X2445Y2980D02* D03* X2468Y3048D02* D03* X2530Y3047D02* D03* X2561Y3053D02* D03* X2546Y3079D02* D03* X2549Y3114D02* D03* X2470D02* D03* X2471Y3154D02* D03* X2274Y3153D02* D03* X2311Y3114D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2354Y3114D02* D03* Y3153D02* D03* X2390Y3193D02* D03* X2433Y3231D02* D03* X2435Y3265D02* D03* X2391D02* D03* X2354Y3231D02* D03* X2356Y3265D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2356Y3388D02* D03* X2391Y3391D02* D03* Y3428D02* D03* X2357Y3424D02* D03* Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2312Y3469D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2318Y3578D02* D03* X2333Y3637D02* D03* X2272Y3631D02* D03* X2119Y3641D02* D03* X2117Y3518D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* Y3364D02* D03* X2396Y3638D02* D03* X2454D02* D03* X2485Y3626D02* D03* X2551Y3582D02* D03* X2550Y3548D02* D03* X2512Y3547D02* D03* X2470Y3545D02* D03* X2472Y3507D02* D03* X2433D02* D03* X2390D02* D03* X2357Y3502D02* D03* Y3466D02* D03* X2390Y3468D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2472Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2472D02* D03* X2514Y3308D02* D03* Y3345D02* D03* X2472D02* D03* X2438Y3344D02* D03* Y3307D02* D03* X2472Y3308D02* D03* Y3263D02* D03* Y3230D02* D03* X2514Y3236D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2591Y3227D02* D03* X2629D02* D03* Y3192D02* D03* X2672Y3226D02* D03* Y3191D02* D03* X2673Y3147D02* D03* X2672Y3111D02* D03* Y3069D02* D03* X2617Y3067D02* D03* X2629Y3114D02* D03* Y3152D02* D03* X2587D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2899Y3410D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2898Y3505D02* D03* X2901Y3537D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* X3096D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3251Y3621D02* D03* X3282Y3622D02* D03* X3344Y3602D02* D03* X3392Y3604D02* D03* X3441D02* D03* X3445Y3670D02* D03* Y3719D02* D03* X3395D02* D03* X3394Y3670D02* D03* X3345Y3672D02* D03* X3342Y3719D02* D03* X3288D02* D03* X3206Y3720D02* D03* X3248Y3486D02* D03* X3293D02* D03* X3288Y3442D02* D03* X3354D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3500Y3383D02* D03* X3491Y3340D02* D03* X3498Y3286D02* D03* X3443D02* D03* X3397Y3280D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3393D02* D03* X3350Y3387D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X3192Y3340D02* D03* X3144D02* D03* X3113Y3242D02* D03* X3092Y3220D02* D03* X3061Y3219D02* D03* X3003Y3163D02* D03* X2955Y3210D02* D03* X2994Y3286D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3009Y3443D02* D03* X3051D02* D03* X3043Y3494D02* D03* X2994Y3531D02* D03* X3007Y3495D02* D03* X2965Y3492D02* D03* X2892Y3628D02* D03* X2896Y3658D02* D03* X2939Y3669D02* D03* X2954Y3643D02* D03* X2992Y3640D02* D03* X2998Y3684D02* D03* X3047D02* D03* Y3640D02* D03* X3092D02* D03* X3095Y3684D02* D03* X3133Y3744D02* D03* X3093Y3747D02* D03* X3047Y3740D02* D03* X2992D02* D03* X2951Y3742D02* D03* X2882Y3779D02* D03* X2855Y3758D02* D03* X2822Y3779D02* D03* X2674Y3743D02* D03* X2638Y3770D02* D03* X2584Y3773D02* D03* X2615Y3742D02* D03* X2610Y3709D02* D03* X2612Y3651D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2525Y3938D02* D03* X2397Y3955D02* D03* X2360Y3934D02* D03* X2335Y3963D02* D03* X2307Y3934D02* D03* X2273Y3962D02* D03* X2036Y3887D02* D03* X1926Y3896D02* D03* X1809Y3776D02* D03* X1777Y3745D02* D03* X1729Y3706D02* D03* X1978Y1562D02* D03* X2015Y1467D02* D03* X1970Y1398D02* D03* X2013Y1332D02* D03* X2187Y1381D02* D03* X2189Y1345D02* D03* X2186Y1283D02* D03* X2091Y1245D02* D03* X2188Y1243D02* D03* X2164Y1157D02* D03* X2315Y1193D02* D03* X2326Y1277D02* D03* X2314Y1312D02* D03* X2337Y1362D02* D03* X2315Y1413D02* D03* X2314Y1462D02* D03* X2168Y1466D02* D03* X2187Y1512D02* D03* Y1562D02* D03* X2188Y1612D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2876Y1831D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2767Y1679D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2910Y1671D02* D03* X2861Y1669D02* D03* X3083Y1892D02* D03* X3126Y1887D02* D03* X3121Y1938D02* D03* X3177Y1937D02* D03* X3173Y1983D02* D03* X3227D02* D03* X3226Y2040D02* D03* X3224Y2109D02* D03* X3268Y2142D02* D03* X3272Y2188D02* D03* X3322D02* D03* X3318Y2142D02* D03* X3316Y2244D02* D03* X3322Y2288D02* D03* X3318Y2342D02* D03* X3268D02* D03* X3272Y2288D02* D03* X3266Y2244D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3057Y2297D02* D03* X3067Y2343D02* D03* Y2393D02* D03* Y2443D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3064Y2544D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3132Y2728D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3232Y2592D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3379Y2685D02* D03* X3380Y2730D02* D03* X3425Y2736D02* D03* X3428Y2690D02* D03* X3421Y2640D02* D03* X3379Y2633D02* D03* X3475Y2645D02* D03* X3472Y2602D02* D03* X3533Y2539D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3413Y2467D02* D03* X3478Y2430D02* D03* X3667Y2343D02* D03* X3571Y2342D02* D03* X3627Y2411D02* D03* X3632Y2439D02* D03* X3573Y2436D02* D03* X3552Y2459D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3583Y2539D02* D03* X3625Y2597D02* D03* X3623Y2635D02* D03* X3674Y2733D02* D03* X3767Y2727D02* D03* X3817Y2543D02* D03* Y2348D02* D03* X3725Y2247D02* D03* X3767Y2193D02* D03* X3817D02* D03* X3767Y2092D02* D03* X3817D02* D03* X3866D02* D03* X3918D02* D03* X3924Y2035D02* D03* X3830Y1938D02* D03* X3821Y1882D02* D03* X3876Y1893D02* D03* X3925Y1947D02* D03* X3872Y1993D02* D03* X3874Y2035D02* D03* X3826D02* D03* X3812Y1993D02* D03* X3767Y1994D02* D03* X3770Y1940D02* D03* Y1888D02* D03* X3767Y1843D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X3917Y1693D02* D03* X3867Y1743D02* D03* X3824Y1736D02* D03* X3717Y1743D02* D03* X3621Y1789D02* D03* X3623Y1831D02* D03* X3627Y1893D02* D03* X3633Y1943D02* D03* X3583D02* D03* X3675Y1935D02* D03* X3667Y1993D02* D03* X3633Y2093D02* D03* Y2143D02* D03* X3577Y2141D02* D03* X3544Y2137D02* D03* X3468Y2142D02* D03* X3472Y2188D02* D03* X3466Y2244D02* D03* X3472Y2288D02* D03* X3468Y2342D02* D03* X3418D02* D03* X3368Y2378D02* D03* X3422Y2288D02* D03* X3416Y2244D02* D03* X3366D02* D03* X3372Y2288D02* D03* Y2188D02* D03* X3368Y2142D02* D03* X3418D02* D03* X3422Y2188D02* D03* X3404Y1986D02* D03* X3434Y1990D02* D03* X3499Y2030D02* D03* X3533Y1943D02* D03* X3483D02* D03* X3433D02* D03* X3383Y1893D02* D03* X3381Y1789D02* D03* X3419Y1828D02* D03* X3489Y1738D02* D03* X3423Y1697D02* D03* X3350Y1684D02* D03* X3385Y1636D02* D03* X3390Y1579D02* D03* X3253Y1629D02* D03* X3277Y1648D02* D03* X3276Y1682D02* D03* X3275Y1735D02* D03* X3277Y1795D02* D03* Y1838D02* D03* X3184Y1843D02* D03* X3173Y1785D02* D03* X3130Y1800D02* D03* X3084Y1794D02* D03* X3075Y1735D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3231Y1446D02* D03* X3105D02* D03* X3010Y1443D02* D03* X2853D02* D03* X2764Y1441D02* D03* X2650Y1414D02* D03* X2618Y1435D02* D03* X2537Y1427D02* D03* X2471Y1412D02* D03* X2468Y1362D02* D03* X2472Y1312D02* D03* X2480Y1262D02* D03* X2476Y1210D02* D03* X2558Y1214D02* D03* X2596Y1288D02* D03* X2647Y1189D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2837Y1237D02* D03* X2868Y1238D02* D03* X2931Y1243D02* D03* X2994Y1233D02* D03* X3089Y1234D02* D03* X3215Y1235D02* D03* X3246Y1238D02* D03* X3278Y1239D02* D03* X3310Y1242D02* D03* X5018Y1446D02* D03* X5049Y1447D02* D03* X5081Y1439D02* D03* X5141Y1510D02* D03* X5253Y1622D02* D03* Y1697D02* D03* Y1772D02* D03* X5255Y1830D02* D03* X5220D02* D03* Y1865D02* D03* X5255D02* D03* X5270Y1910D02* D03* X5360D02* D03* Y1865D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5758Y1910D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X6021Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X5921Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X6021D02* D03* Y1390D02* D03* X6075Y1436D02* D03* X6121Y1490D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* Y1736D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* X6925Y1486D02* D03* X6971D02* D03* Y1440D02* D03* X6925D02* D03* Y1386D02* D03* Y1340D02* D03* X6971D02* D03* Y1386D02* D03* X7025Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* X6925Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X7025D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* X6971D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X7267Y1185D02* D03* X7274Y1234D02* D03* X7267Y1331D02* D03* X7258Y1417D02* D03* Y1449D02* D03* Y1480D02* D03* Y1512D02* D03* X7267Y1599D02* D03* Y1744D02* D03* Y1890D02* D03* Y2035D02* D03* Y2181D02* D03* Y2327D02* D03* Y2473D02* D03* Y2618D02* D03* X6970Y2865D02* D03* X6865D02* D03* X6761Y2917D02* D03* Y2955D02* D03* Y2991D02* D03* X6762Y3030D02* D03* X6719D02* D03* X6720Y2991D02* D03* X6725Y3105D02* D03* X6670D02* D03* X6620D02* D03* X6570D02* D03* X6671Y2991D02* D03* Y3030D02* D03* X6621D02* D03* Y2990D02* D03* Y2875D02* D03* X6671Y2876D02* D03* X6722Y2877D02* D03* X6760D02* D03* X6571Y3270D02* D03* X6570Y3230D02* D03* X6620D02* D03* X6621Y3270D02* D03* X6671D02* D03* X6670Y3230D02* D03* X6725D02* D03* X6726Y3270D02* D03* X6920Y3230D02* D03* X6921Y3270D02* D03* X6816D02* D03* X6776D02* D03* X6775Y3230D02* D03* X6815D02* D03* X6776Y3185D02* D03* Y3145D02* D03* X6775Y3105D02* D03* X6815D02* D03* X6865Y3030D02* D03* Y2990D02* D03* X6970D02* D03* Y3030D02* D03* X6920Y3105D02* D03* X7104Y3062D02* D03* X7119Y3036D02* D03* X7104Y3010D02* D03* X7119Y2984D02* D03* X7104Y3156D02* D03* X7119Y3130D02* D03* X7060Y3105D02* D03* X7061Y3145D02* D03* Y3185D02* D03* X7104Y3208D02* D03* X7060Y3230D02* D03* X7061Y3270D02* D03* X7119Y3275D02* D03* X7104Y3301D02* D03* X7119Y3327D02* D03* X7104Y3353D02* D03* X7120Y3428D02* D03* X7097Y3459D02* D03* X7113Y3487D02* D03* X7097Y3513D02* D03* X7104Y3543D02* D03* X7141Y3544D02* D03* X7119Y3644D02* D03* X7126Y3679D02* D03* X7119Y3712D02* D03* X7104Y3738D02* D03* X7119Y3764D02* D03* X7104Y3790D02* D03* X7119Y3858D02* D03* X7104Y3884D02* D03* X7119Y3910D02* D03* X7094Y3927D02* D03* X6910Y4005D02* D03* X6723Y3981D02* D03* X6576Y3943D02* D03* X6591Y3769D02* D03* X6644Y3681D02* D03* Y3649D02* D03* Y3619D02* D03* X6690Y3681D02* D03* X6691Y3649D02* D03* Y3618D02* D03* X6736D02* D03* X6735Y3649D02* D03* X6734Y3681D02* D03* X6741Y3737D02* D03* X6899Y3621D02* D03* Y3651D02* D03* Y3681D02* D03* Y3711D02* D03* Y3741D02* D03* X6852D02* D03* Y3710D02* D03* Y3680D02* D03* Y3650D02* D03* X6851Y3621D02* D03* X6850Y3471D02* D03* X7267Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* Y4051D02* D03* Y4197D02* D03* Y4343D02* D03* Y4488D02* D03* Y4634D02* D03* X7244Y4764D02* D03* X7127D02* D03* X7110Y4681D02* D03* X7119Y4634D02* D03* X7042Y4718D02* D03* X7000D02* D03* X6955Y4717D02* D03* X6903Y4718D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6800D02* D03* Y4850D02* D03* X6750D02* D03* Y4888D02* D03* X6700D02* D03* Y4850D02* D03* X6656Y4849D02* D03* Y4889D02* D03* X6612Y4888D02* D03* Y4850D02* D03* X6613Y4643D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6873Y4557D02* D03* X6850Y4643D02* D03* X6800D02* D03* X6850Y4718D02* D03* X6800D02* D03* X6750D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6440Y4780D02* D03* X6322D02* D03* X6574Y4365D02* D03* X6704Y4282D02* D03* X6656Y4220D02* D03* X6752Y4189D02* D03* X6850Y4213D02* D03* X6854Y4272D02* D03* X6906Y4217D02* D03* X6976Y4323D02* D03* X6992Y4433D02* D03* X6991Y4592D02* D03* X7083Y4560D02* D03* X7104Y4519D02* D03* X7119Y4493D02* D03* X7104Y4467D02* D03* X7119Y4441D02* D03* X7104Y4373D02* D03* X7119Y4347D02* D03* X7104Y4321D02* D03* X7119Y4295D02* D03* X7117Y4244D02* D03* X7119Y4212D02* D03* X7143Y4126D02* D03* X7115Y4141D02* D03* X7104Y4112D02* D03* X7118Y4085D02* D03* X7104Y4058D02* D03* X7115Y4030D02* D03* X7267Y3323D02* D03* Y3177D02* D03* X7293Y3132D02* D03* X7267Y3031D02* D03* X7258Y2945D02* D03* X7189Y2952D02* D03* X7135Y2906D02* D03* X7189Y2889D02* D03* Y2843D02* D03* X7258Y2913D02* D03* Y2882D02* D03* Y2850D02* D03* X7267Y2764D02* D03* X7104Y2794D02* D03* X7119Y2768D02* D03* Y2716D02* D03* X7104Y2742D02* D03* X7074Y2744D02* D03* X7051Y2722D02* D03* X7052Y2692D02* D03* X6939Y2698D02* D03* X6885Y2696D02* D03* X6837Y2695D02* D03* X6781Y2693D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* X6781Y2565D02* D03* X6837D02* D03* X6885Y2564D02* D03* X6934D02* D03* X7018Y2569D02* D03* X7104Y2597D02* D03* Y2649D02* D03* X7119Y2623D02* D03* Y2571D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X6871Y1740D02* D03* Y1786D02* D03* X6925D02* D03* X6971D02* D03* Y1740D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X7025D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6571D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6450Y2620D02* D03* Y2580D02* D03* X6500Y2540D02* D03* X6450D02* D03* Y2500D02* D03* X6475Y2436D02* D03* X6410Y2480D02* D03* X6370D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6321D02* D03* X6275D02* D03* X6221D02* D03* X6175D02* D03* Y2336D02* D03* X6075D02* D03* X6021Y2290D02* D03* X5975D02* D03* Y2336D02* D03* X5921Y2290D02* D03* Y2336D02* D03* Y2390D02* D03* X5975D02* D03* Y2436D02* D03* X6050Y2480D02* D03* Y2520D02* D03* Y2560D02* D03* X6100D02* D03* Y2520D02* D03* Y2480D02* D03* X6150D02* D03* X6195D02* D03* X6240D02* D03* X6280D02* D03* X6320D02* D03* Y2520D02* D03* X6280D02* D03* X6240D02* D03* Y2560D02* D03* X6280D02* D03* X6320D02* D03* X6363Y2634D02* D03* X6296D02* D03* X6182Y2787D02* D03* X5975Y2769D02* D03* X5625D02* D03* X5645Y2605D02* D03* X5690D02* D03* X5600D02* D03* X5450D02* D03* X5275Y2769D02* D03* X5215Y2605D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4835Y2014D02* D03* X4804D02* D03* X4771D02* D03* X4646D02* D03* X4615D02* D03* X4770Y1905D02* D03* X4815D02* D03* X4860D02* D03* X4905D02* D03* X4945D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* X5185D02* D03* Y1865D02* D03* X5150D02* D03* X5087Y2128D02* D03* X5124D02* D03* X5162D02* D03* X5240Y2220D02* D03* Y2255D02* D03* Y2290D02* D03* X5365Y2321D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5754Y2189D02* D03* X5704D02* D03* X5717Y2128D02* D03* X5681D02* D03* X5645D02* D03* X5654Y2189D02* D03* X5625Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5654Y2321D02* D03* X5704D02* D03* X5754D02* D03* X5803Y2324D02* D03* X5832Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5921Y2236D02* D03* Y2190D02* D03* X5975D02* D03* Y2236D02* D03* X6021D02* D03* Y2190D02* D03* X6075D02* D03* Y2236D02* D03* X6214Y2109D02* D03* X6135Y2077D02* D03* Y2033D02* D03* X6075Y2136D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X6021Y1936D02* D03* Y1890D02* D03* Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5975Y1936D02* D03* Y1890D02* D03* X5921D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2090D02* D03* Y2136D02* D03* X5921D02* D03* X6021D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* X5975D02* D03* Y2036D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* X6275Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5783Y1263D02* D03* X5736D02* D03* Y1139D02* D03* X5783D02* D03* X5530Y1380D02* D03* X5560D02* D03* X5588D02* D03* X5630D02* D03* X5660D02* D03* X5688D02* D03* Y1265D02* D03* X5658D02* D03* X5630D02* D03* X5588D02* D03* X5558D02* D03* X5530D02* D03* X5410Y1289D02* D03* X5392Y1263D02* D03* X5344D02* D03* X5392Y1139D02* D03* X5344D02* D03* X5262Y1146D02* D03* X5211Y1277D02* D03* X5204Y1213D02* D03* X5065Y1234D02* D03* X5033Y1236D02* D03* X5001Y1234D02* D03* X4845Y1233D02* D03* X4869Y1387D02* D03* X4860Y1446D02* D03* X4929Y1565D02* D03* X4874Y1572D02* D03* X4771Y1564D02* D03* X4682Y1572D02* D03* X4420Y1446D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4725D02* D03* X4252Y1975D02* D03* X4359Y2014D02* D03* X4281Y2108D02* D03* X4251D02* D03* X4223D02* D03* X4181D02* D03* X4151D02* D03* X4123D02* D03* X4058Y2161D02* D03* X4066Y2244D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2339D02* D03* X4066D02* D03* X4147D02* D03* X4192D02* D03* X4234Y2354D02* D03* X4282D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4223D02* D03* X4253D02* D03* X4281D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4419Y2354D02* D03* X4467D02* D03* X4547Y2350D02* D03* X4595D02* D03* X4585Y2494D02* D03* X4634D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X4925Y2769D02* D03* X4701Y2806D02* D03* X4559Y2950D02* D03* X4376Y3057D02* D03* X4305Y3046D02* D03* X4241Y3112D02* D03* X4240Y3166D02* D03* X4304Y3196D02* D03* X4359Y3169D02* D03* X4369Y3218D02* D03* X4377Y3142D02* D03* X4380Y3270D02* D03* X4331Y3278D02* D03* X4302Y3265D02* D03* X4379Y3442D02* D03* X4365Y3415D02* D03* X4297Y3428D02* D03* X4334Y3386D02* D03* X4335Y3356D02* D03* X4381Y3342D02* D03* X4559Y3305D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X3998Y3465D02* D03* X4001Y3383D02* D03* X3920Y3415D02* D03* X3855Y3367D02* D03* X3791Y3401D02* D03* X3792Y3445D02* D03* X3743Y3440D02* D03* X3748Y3486D02* D03* X3692Y3490D02* D03* X3698Y3441D02* D03* Y3396D02* D03* X3748Y3392D02* D03* X3747Y3340D02* D03* X3695Y3341D02* D03* X3646D02* D03* X3643Y3387D02* D03* X3647Y3441D02* D03* X3648Y3485D02* D03* Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3363Y3794D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4081Y4187D02* D03* X4108Y4072D02* D03* X4037Y4068D02* D03* Y4027D02* D03* X3909Y3933D02* D03* X3879Y3930D02* D03* X3831Y4006D02* D03* X3799D02* D03* X3751Y4048D02* D03* X3698D02* D03* X3693Y3993D02* D03* X3696Y3938D02* D03* X3735Y3896D02* D03* X3796Y3912D02* D03* X3794Y3846D02* D03* X3827Y3844D02* D03* X3798Y3772D02* D03* X3793Y3718D02* D03* X3820Y3684D02* D03* X3806Y3613D02* D03* X3816Y3584D02* D03* X3995Y3605D02* D03* X3993Y3546D02* D03* X3955Y3558D02* D03* X3899Y3608D02* D03* X3941Y3623D02* D03* X3909Y3658D02* D03* X3938Y3771D02* D03* X3980Y3787D02* D03* X3979Y3830D02* D03* X3944Y3816D02* D03* X4126Y3848D02* D03* X4196Y3951D02* D03* X4266Y3852D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X5291Y3404D02* D03* X5252Y3336D02* D03* X5175Y3351D02* D03* X5091Y3322D02* D03* X5049D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X6022Y3470D02* D03* X5979Y3472D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5850Y3444D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5770Y3389D02* D03* X5768Y3300D02* D03* Y3258D02* D03* X5827Y3128D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6037Y3150D02* D03* X6099Y3154D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D053* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D028* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D048* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D047* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D060* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D061* X7425Y2102D02* D03* X7661D02* D03* D056* X2359Y4522D02* D03* X3940D02* D03* D014* X3979Y3830D02* X4024Y3785D01* Y3595D01* X3999Y3570D01* X3967D01* X3955Y3558D01* X3941Y3623D02* X3931Y3633D01* X3856D01* X3848Y3641D01* X3774D01* X3740Y3607D01* X4389Y2835D02* X4442Y2782D01* X4875D01* X4887Y2794D01* X6175D01* X6182Y2787D01* X6113Y1836D02* X6874D01* X6897Y1813D01* X7267D01* Y1890D01* Y2035D01* Y2764D02* Y2618D01* Y2473D01* Y2327D01* Y2181D01* Y2035D01* Y1813D02* Y1744D01* Y1599D01* Y1331D02* Y1241D01* X7274Y1234D01* X7267Y2764D02* X7225Y2806D01* Y2989D01* X7267Y3031D01* Y3177D01* Y3323D01* Y3469D01* Y3614D01* Y3760D01* Y3905D01* Y4051D01* Y4197D01* Y4343D01* Y4488D01* D018* X6606Y1231D02* X6684Y1309D01* X7042D01* X7066Y1333D01* Y1402D01* X7164Y1500D01* X7215D01* X7235Y1480D01* X7258D01* X7284D01* X7316Y1512D01* X7533D01* X7543Y1522D01* Y1551D01* X7583D01* X7543D02* Y1969D01* X7520Y1992D01* Y2213D01* X7543Y2236D01* Y2811D01* X7583D01* X7543D02* Y2837D01* X7530Y2850D01* X7258D01* D01* Y2882D02* X7278D01* X7325Y2929D01* X7504D01* Y2890D02* Y2929D01* X7604D01* X7622Y2911D01* Y2237D01* X7567Y2182D01* Y2025D01* X7622Y1970D01* Y1371D01* X7605Y1354D01* X7504D01* Y1315D01* Y1354D02* X7325D01* X7294Y1385D01* Y1434D01* X7279Y1449D01* X7258D01* X7244D01* X7229Y1434D01* Y1374D01* X7127Y1272D01* X6891D01* X6850Y1231D01* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D080* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D081* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D075* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/drill20.exc0000644000175000017500000000605313421555714016753 0ustar carstencarstenG90 M72 M48 T0C0.006 T1C0.012 T3C0.020 T4C0.024 T5C0.028 T6C0.031 T7C0.035 T8C0.039 T9C0.043 T10C0.047 T14C0.063 T16C0.071 T18C0.079 T19C0.083 T20C0.087 T21C0.091 T23C0.098 T25C0.110 T27C0.126 % G90 M72 M48 % T0 X35790Y26070 X31380Y13800 X44640Y29020 X44820Y14810 X31550Y13580 X68290Y22490 X39860Y15456 X27580Y14700 X69350Y21640 X47340Y15130 X38650Y28510 X47500Y12070 X38130Y22960 X37150Y20960 X34870Y17910 X28998Y13760 X36230Y27030 X33340Y18920 X36900Y38900 X33600Y25640 X39830Y27220 X39330Y17460 X69090Y23410 X32340Y32450 X35750Y18440 X37150Y24450 X44240Y12750 X69890Y18930 X40050Y26490 X33310Y18410 X37660Y26760 X29500Y14210 X38640Y22740 X38170Y24490 X37670Y24930 X37470Y36930 X36000Y40030 X24260Y30680 X37150Y19950 X45360Y12920 X38020Y18350 X37150Y26750 Y20460 X57360Y35905 X30840Y14240 X49890Y15130 X69390Y23500 X37790Y25790 X29470Y14720 X37290Y27910 X28550Y34310 X32250Y18370 X30420Y14720 X34780Y18390 X27260Y14700 X38210Y24880 X29160Y14720 X42290Y13200 X34010Y16740 X36780Y28310 X30880Y18500 X36650Y20460 X37180Y26280 X69830Y22390 X49570Y15330 T1 X18570Y29390 T0 X35770Y17840 X37150Y24950 X48940Y14700 X57100Y36295 X23520Y35780 X38170Y27770 X46610Y14360 X68970Y19510 X36640Y18450 X69850Y20260 X35190Y40510 X36800Y28570 X36370Y38870 X32310Y32190 T1 X70885Y11617 T0 X39320Y27390 X38710Y27740 X38220Y26700 T1 X42740Y40200 T0 X34630Y19230 X38440Y27840 X29080Y33770 X69860Y22770 X37140Y23460 X37160Y19450 X49210Y14700 X38800Y25460 X33570Y15040 X34220Y17350 X36750Y26290 X36450Y26860 X39450Y18250 X37520Y27850 X37380Y37880 X37680Y21420 T1 X32360Y34410 T0 X49710Y12090 X38370Y12070 X38720Y37820 T1 X18290Y28220 T0 X27640Y14020 X40160Y20250 X23160Y30530 X35290Y26700 X31510Y17360 X35200Y19200 X38720Y26080 X37690Y36920 X36950Y37200 X48130Y12070 X31810Y18920 X37230Y17880 X32820Y18940 X48310Y15140 X67850Y13410 X36800Y26900 X30320Y14270 X37630Y22960 X35760Y18870 X27780Y32330 X69600Y18930 X37150Y21920 X34970Y16320 X35990Y37700 X46310Y14170 X30760Y14720 X69380Y20070 X35710Y26300 X37000Y16850 X38160Y27260 X39620Y20340 X31360Y18460 X36570Y17880 X35340Y18950 X44760Y28060 X69350Y21180 X34490Y14980 X38890Y26350 X44790Y12680 X34860Y15014 T1 X35510Y37990 T0 X69880Y21940 X36000Y28520 X31210Y13980 X36330Y27430 X33240Y15620 X34220Y17860 X38650Y26400 X37160Y23940 X36970Y31960 X69580Y23370 X69890Y20870 X37640Y23960 X38180Y21420 X38150Y25950 X37650Y20450 X38270Y33170 X38330Y26920 X68820Y13870 X33550Y31960 X37180Y18950 X37240Y36950 X69860Y19680 X37140Y21450 X45740Y14670 X34150Y15360 X37150Y18450 X36800Y25380 X38390Y28640 X45440Y15250 X32550Y32090 X47660Y15120 X56810Y43515 X47970Y15120 X30580Y14440 X47820Y12050 X36330Y27900 X30870Y16960 X37650Y24450 X36460Y28690 X68500Y22360 X38270Y36330 X28840Y14710 X68930Y18410 X27890Y14710 X57320Y38100 X32330Y18950 X23930Y31530 X28200Y14710 X68880Y20440 X29740Y28650 X37640Y23460 X37120Y22980 X33800Y18430 X34350Y18490 X37650Y25460 M30 gerbv-2.7.0/example/ekf2/pow.grb0000644000175000017500000072145513421555714016315 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1426Y2860D02* X1739D01* X1426Y3156D02* X1873D01* X1426Y3152D02* X1873D01* Y3160D02* X1426D01* X1873Y3164D02* X1426D01* X1873Y3168D02* X1426D01* Y3184D02* X1873D01* X1426Y3180D02* X1873D01* Y3176D02* X1426D01* X1873Y3172D02* X1426D01* X1742Y2892D02* X1426D01* Y2888D02* X1739D01* X1426Y3104D02* X1873D01* Y3100D02* X1426D01* X1873Y3096D02* X1426D01* X1739Y2828D02* X1426D01* Y2820D02* X1739D01* X1426Y2936D02* X1873D01* Y2932D02* X1426D01* X1739Y2804D02* X1426D01* Y2796D02* X1739D01* X1426Y3028D02* X1873D01* Y3024D02* X1426D01* X1739Y2864D02* X1426D01* X1558Y2696D02* X1426D01* Y2700D02* X1558D01* X1559Y2732D02* Y2610D01* X1426Y2432D02* X1660D01* X1426Y2428D02* X1660D01* Y2452D02* X1426D01* X1660Y2456D02* X1426D01* X1660Y2460D02* X1426D01* Y2468D02* X1660D01* X1426Y2464D02* X1660D01* Y2472D02* X1426D01* X1660Y2476D02* X1426D01* Y2480D02* X1660D01* X1426Y2484D02* X1660D01* X1426Y2488D02* X1660D01* Y2568D02* X1426D01* X1660Y2564D02* X1426D01* Y2556D02* X1660D01* X1426Y2560D02* X1660D01* Y2552D02* X1426D01* X1660Y2548D02* X1426D01* X1660Y2544D02* X1426D01* Y2540D02* X1660D01* X1426Y2536D02* X1660D01* Y2528D02* X1426D01* X1660Y2532D02* X1426D01* Y2524D02* X1660D01* X1426Y2520D02* X1660D01* Y2516D02* X1426D01* X1660Y2512D02* X1426D01* X1660Y2508D02* X1426D01* Y2492D02* X1660D01* X1426Y2496D02* X1660D01* Y2500D02* X1426D01* X1660Y2504D02* X1426D01* X1558Y2620D02* X1426D01* Y2624D02* X1558D01* X1426Y2744D02* X1739D01* X1426Y2972D02* X1873D01* Y2968D02* X1426D01* X1739Y2824D02* X1426D01* X1558Y2652D02* X1426D01* Y2648D02* X1558D01* X1426Y2760D02* X1739D01* X1426Y2916D02* X1873D01* Y2912D02* X1426D01* X1558Y2732D02* X1426D01* Y2748D02* X1739D01* X1426Y2908D02* X1873D01* Y2904D02* X1426D01* X1558Y2632D02* X1426D01* Y2628D02* X1558D01* X1426Y2808D02* X1739D01* X1426Y2996D02* X1873D01* Y3000D02* X1426D01* X1739Y2812D02* X1426D01* Y2836D02* X1739D01* X1426Y3048D02* X1873D01* Y3044D02* X1426D01* X1739Y2756D02* X1426D01* X1660Y2592D02* X1426D01* X1660Y2596D02* X1426D01* Y2588D02* X1660D01* X1426Y2584D02* X1660D01* X1426Y2924D02* X1873D01* Y2928D02* X1426D01* X1558Y2680D02* X1426D01* Y2676D02* X1558D01* X1426Y2800D02* X1739D01* X1426Y3060D02* X1873D01* Y3068D02* X1426D01* X1873Y3064D02* X1426D01* X1739Y2816D02* X1426D01* X1558Y2716D02* X1426D01* Y2712D02* X1558D01* X1426Y2752D02* X1739D01* X1426Y3036D02* X1873D01* Y3032D02* X1426D01* X1739Y2832D02* X1426D01* X1558Y2664D02* X1426D01* Y2660D02* X1558D01* X1426Y2960D02* X1873D01* Y2964D02* X1426D01* X1739Y2780D02* X1426D01* Y2764D02* X1739D01* X1426Y2980D02* X1873D01* Y2984D02* X1426D01* X1739Y2840D02* X1426D01* Y2844D02* X1739D01* X1426Y3112D02* X1873D01* X1426Y3108D02* X1873D01* Y3116D02* X1426D01* X1873Y3120D02* X1426D01* X1739Y2884D02* X1426D01* Y2876D02* X1739D01* X1426Y3188D02* X1873D01* Y3212D02* X1426D01* X1873Y3208D02* X1426D01* Y3216D02* X1873D01* X1426Y3220D02* X1873D01* Y3224D02* X1426D01* X1873Y3228D02* X1426D01* X1873Y3232D02* X1426D01* Y3192D02* X1873D01* X1426Y3196D02* X1873D01* Y3200D02* X1426D01* X1873Y3204D02* X1426D01* X1740Y2890D02* X1744Y2894D01* X1873Y3148D02* X1426D01* Y3136D02* X1873D01* X1426Y3140D02* X1873D01* X1740Y2890D02* Y2736D01* X1426Y2988D02* X1873D01* Y2992D02* X1426D01* X1739Y2880D02* X1426D01* X1558Y2704D02* X1426D01* Y2708D02* X1558D01* X1426Y3008D02* X1873D01* Y3004D02* X1426D01* X1739Y2736D02* X1426D01* X1558Y2688D02* X1426D01* Y2684D02* X1558D01* X1563Y2736D02* X1559Y2732D01* X1426Y2848D02* X1739D01* X1426Y3016D02* X1873D01* X1426Y3020D02* X1873D01* Y3012D02* X1426D01* X1739Y2768D02* X1426D01* X1558Y2672D02* X1426D01* Y2668D02* X1558D01* X1426Y2896D02* X1873D01* X1874Y2894D02* Y3677D01* X1873Y3660D02* X1426D01* Y3704D02* X1700D01* X1426Y3708D02* X1700D01* X1426Y3604D02* X1873D01* X1426Y3600D02* X1873D01* X1426Y3608D02* X1873D01* Y3616D02* X1426D01* X1873Y3612D02* X1426D01* X1700Y3688D02* X1426D01* Y3692D02* X1700D01* X1862Y3716D02* X1868Y3708D01* X1426Y3648D02* X1873D01* Y3656D02* X1426D01* X1873Y3652D02* X1426D01* X1862Y3736D02* X1868Y3744D01* X1826Y3956D02* X1426D01* X1826Y3952D02* X1426D01* Y3960D02* X1826D01* X1426Y3964D02* X1826D01* X1426Y3968D02* X1826D01* Y3976D02* X1426D01* X1826Y3972D02* X1426D01* X1700Y3832D02* X1426D01* Y3844D02* X1702D01* X1426Y4020D02* X1826D01* X1426Y4016D02* X1826D01* Y4008D02* X1426D01* X1826Y4012D02* X1426D01* X1700Y3804D02* X1426D01* X1700Y3808D02* X1426D01* Y3812D02* X1700D01* X1426Y3940D02* X1826D01* Y3936D02* X1426D01* X1700Y3796D02* X1426D01* Y3800D02* X1700D01* X1426Y3860D02* X1826D01* X1426Y3864D02* X1826D01* X1868Y3744D02* X1876Y3750D01* X1826Y3852D02* X1426D01* X1826Y3856D02* X1426D01* Y3848D02* X1826D01* X1426Y3664D02* X1873D01* Y3676D02* X1426D01* X1700Y3684D02* X1426D01* Y3680D02* X1700D01* X1426Y3628D02* X1873D01* Y3632D02* X1426D01* X1873Y3636D02* X1426D01* X1700Y3720D02* X1426D01* Y3736D02* X1700D01* X1426Y3732D02* X1700D01* X1426Y3620D02* X1873D01* X1426Y3624D02* X1873D01* Y3640D02* X1426D01* X1873Y3644D02* X1426D01* X1700Y3696D02* X1426D01* Y3700D02* X1700D01* X1426Y3516D02* X1873D01* X1426Y3512D02* X1873D01* Y3524D02* X1426D01* X1873Y3520D02* X1426D01* Y3528D02* X1873D01* X1426Y3532D02* X1873D01* X1896Y3703D02* X1904Y3709D01* X1909Y3716D02* X1904Y3709D01* X1873Y3564D02* X1426D01* Y3464D02* X1873D01* X1426Y3468D02* X1873D01* X1426Y3472D02* X1873D01* Y3476D02* X1426D01* X1873Y3480D02* X1426D01* Y3488D02* X1873D01* X1426Y3484D02* X1873D01* Y3492D02* X1426D01* X1873Y3496D02* X1426D01* Y3500D02* X1873D01* X1426Y3504D02* X1873D01* X1426Y3508D02* X1873D01* Y3460D02* X1426D01* X1873Y3456D02* X1426D01* Y3452D02* X1873D01* X1426Y3448D02* X1873D01* X1426Y3444D02* X1873D01* Y3436D02* X1426D01* X1873Y3440D02* X1426D01* Y3432D02* X1873D01* X1426Y3428D02* X1873D01* Y3396D02* X1426D01* X1873Y3392D02* X1426D01* Y3388D02* X1873D01* X1426Y3384D02* X1873D01* X1426Y3380D02* X1873D01* Y3372D02* X1426D01* X1873Y3376D02* X1426D01* Y3400D02* X1873D01* X1426Y3404D02* X1873D01* X1426Y3408D02* X1873D01* Y3412D02* X1426D01* X1873Y3416D02* X1426D01* Y3424D02* X1873D01* X1426Y3420D02* X1873D01* Y3588D02* X1426D01* X1873Y3584D02* X1426D01* Y3592D02* X1873D01* X1426Y3596D02* X1873D01* X1868Y3708D02* X1876Y3703D01* X1874Y3677D02* X1705D01* X1700Y3724D02* X1426D01* Y3728D02* X1700D01* X1426Y3572D02* X1873D01* X1426Y3568D02* X1873D01* Y3576D02* X1426D01* X1873Y3580D02* X1426D01* X1705Y3677D02* X1701Y3681D01* X1700Y3788D02* X1426D01* Y3792D02* X1700D01* X1426Y3948D02* X1826D01* X1426Y3944D02* X1826D01* Y3984D02* X1426D01* X1826Y3980D02* X1426D01* X1700Y3780D02* X1426D01* Y3776D02* X1700D01* X1426Y4044D02* X1826D01* X1426Y4048D02* X1826D01* Y4060D02* X1426D01* X1826Y4064D02* X1426D01* Y4068D02* X1826D01* X2169Y3917D02* X2148D01* X2169D02* Y3939D01* X1826Y4132D02* X1426D01* Y4128D02* X1826D01* X1426Y4124D02* X1826D01* Y4140D02* X1426D01* X1826Y4136D02* X1426D01* Y4144D02* X1826D01* X1426Y4148D02* X1826D01* X2128Y3917D02* X2106D01* Y3939D02* Y3917D01* X1826Y4084D02* X1426D01* X1826Y4080D02* X1426D01* Y4072D02* X1826D01* X1426Y4076D02* X1826D01* Y4088D02* X1426D01* X1826Y4092D02* X1426D01* X1826Y4096D02* X1426D01* Y4112D02* X1826D01* X1426Y4108D02* X1826D01* Y4104D02* X1426D01* X1826Y4100D02* X1426D01* X1705Y3847D02* X1827D01* X1826Y4116D02* X1426D01* X1826Y4120D02* X1426D01* Y3784D02* X1700D01* X1426Y3892D02* X1826D01* X1426Y3888D02* X1826D01* Y3880D02* X1426D01* X1826Y3884D02* X1426D01* X1700Y3840D02* X1426D01* Y3836D02* X1700D01* X1426Y3868D02* X1826D01* X1426Y3872D02* X1826D01* Y3876D02* X1426D01* X1700Y3764D02* X1426D01* X1700Y3760D02* X1426D01* Y3768D02* X1700D01* X1426Y3772D02* X1700D01* X1426Y3920D02* X1826D01* Y3928D02* X1426D01* X1826Y3924D02* X1426D01* X1700Y3828D02* X1426D01* Y3824D02* X1700D01* X1426Y4004D02* X1826D01* X1426Y4000D02* X1826D01* Y3996D02* X1426D01* X1700Y3756D02* X1426D01* X1700Y3752D02* X1426D01* Y3748D02* X1700D01* X1426Y3744D02* X1700D01* X1426Y3740D02* X1700D01* X1426Y3556D02* X1873D01* X1426Y3560D02* X1873D01* Y3364D02* X1426D01* X1873Y3368D02* X1426D01* Y3360D02* X1873D01* X1426Y3356D02* X1873D01* X1426Y3352D02* X1873D01* Y3348D02* X1426D01* X1873Y3344D02* X1426D01* Y3336D02* X1873D01* X1426Y3340D02* X1873D01* Y3332D02* X1426D01* X1873Y3328D02* X1426D01* Y3324D02* X1873D01* X1426Y3320D02* X1873D01* X1426Y3316D02* X1873D01* Y3308D02* X1426D01* X1873Y3312D02* X1426D01* Y3304D02* X1873D01* X1426Y3300D02* X1873D01* Y3244D02* X1426D01* X1873Y3248D02* X1426D01* Y3240D02* X1873D01* X1426Y3236D02* X1873D01* Y3252D02* X1426D01* X1873Y3256D02* X1426D01* X1873Y3260D02* X1426D01* Y3264D02* X1873D01* X1426Y3268D02* X1873D01* Y3276D02* X1426D01* X1873Y3272D02* X1426D01* Y3280D02* X1873D01* X1426Y3284D02* X1873D01* Y3288D02* X1426D01* X1873Y3292D02* X1426D01* X1873Y3296D02* X1426D01* X1873Y3084D02* X1426D01* X1873Y3080D02* X1426D01* X1739Y2852D02* X1426D01* Y2856D02* X1739D01* X1426Y3088D02* X1873D01* Y3092D02* X1426D01* X1739Y2788D02* X1426D01* Y2784D02* X1739D01* X1740Y2736D02* X1563D01* X1426Y3040D02* X1873D01* Y3052D02* X1426D01* X1873Y3056D02* X1426D01* X1739Y2872D02* X1426D01* Y2868D02* X1739D01* X1426Y3144D02* X1873D01* Y3128D02* X1426D01* X1873Y3124D02* X1426D01* Y3132D02* X1873D01* X1874Y2894D02* X1744D01* X1426Y3072D02* X1873D01* Y3076D02* X1426D01* X1739Y2772D02* X1426D01* X1660Y2600D02* X1426D01* X1660Y2604D02* X1426D01* Y2608D02* X1560D01* X1426Y2416D02* X1660D01* Y2420D02* X1426D01* X1558Y2612D02* X1426D01* Y2616D02* X1558D01* X1426Y2440D02* X1660D01* X1426Y2436D02* X1660D01* Y2444D02* X1426D01* X1660Y2448D02* X1426D01* X1563Y2606D02* X1559Y2610D01* X1558Y2692D02* X1426D01* Y2572D02* X1660D01* X1426Y2576D02* X1660D01* X1426Y2580D02* X1660D01* X1426Y2956D02* X1873D01* Y2952D02* X1426D01* X1558Y2656D02* X1426D01* Y2636D02* X1558D01* X1426Y2776D02* X1739D01* X1426Y2948D02* X1873D01* Y2944D02* X1426D01* X1558Y2720D02* X1426D01* X1558Y2724D02* X1426D01* Y2728D02* X1558D01* X1426Y2976D02* X1873D01* Y2900D02* X1426D01* X1739Y2792D02* X1426D01* X1558Y2640D02* X1426D01* Y2644D02* X1558D01* X1426Y2920D02* X1873D01* Y2940D02* X1426D01* X1739Y2740D02* X1426D01* X1661Y2606D02* X1563D01* X1660Y2424D02* X1426D01* Y2412D02* X1660D01* X1426Y2408D02* X1660D01* X1661Y2606D02* Y2268D01* X1660Y2276D02* X1426D01* X1660Y2272D02* X1426D01* X1574Y2240D02* X1426D01* Y2236D02* X1574D01* X1426Y2232D02* X1574D01* X1426Y2400D02* X1660D01* X1426Y2404D02* X1660D01* Y2396D02* X1426D01* X1660Y2392D02* X1426D01* X1574Y2252D02* X1426D01* Y2256D02* X1574D01* X1426Y2296D02* X1660D01* Y2300D02* X1426D01* X1660Y2304D02* X1426D01* X1574Y2228D02* X1426D01* X1574Y2224D02* X1426D01* Y2216D02* X1574D01* X1426Y2220D02* X1574D01* X1426Y2368D02* X1660D01* X1426Y2364D02* X1660D01* Y2360D02* X1426D01* X1575Y2264D02* X1579Y2268D01* X1660Y2376D02* X1426D01* X1660Y2372D02* X1426D01* Y2308D02* X1660D01* X1426Y2312D02* X1660D01* X1661Y2268D02* X1579D01* X1426Y2328D02* X1660D01* X1426Y2332D02* X1660D01* Y2340D02* X1426D01* X1660Y2336D02* X1426D01* X1574Y2244D02* X1426D01* Y2248D02* X1574D01* X1575Y2264D02* Y2138D01* X1426Y2124D02* X1660D01* Y2128D02* X1426D01* X1574Y2168D02* X1426D01* Y2172D02* X1574D01* X1426Y2176D02* X1574D01* X1426Y2292D02* X1660D01* Y2316D02* X1426D01* X1660Y2320D02* X1426D01* X1574Y2204D02* X1426D01* Y2200D02* X1574D01* X1426Y2196D02* X1574D01* X1426Y2352D02* X1660D01* Y2348D02* X1426D01* X1660Y2344D02* X1426D01* X1574Y2264D02* X1426D01* X1660Y2268D02* X1426D01* Y2260D02* X1574D01* X1426Y2280D02* X1660D01* X1426Y2284D02* X1660D01* Y2288D02* X1426D01* X1574Y2188D02* X1426D01* X1574Y2192D02* X1426D01* Y2156D02* X1574D01* X1426Y2152D02* X1574D01* X1426Y2148D02* X1574D01* X1426Y2092D02* X1660D01* Y2088D02* X1426D01* X1562Y1968D02* X1426D01* Y1972D02* X1562D01* X1426Y2064D02* X1660D01* Y2056D02* X1426D01* X1562Y1948D02* X1426D01* Y1952D02* X1562D01* X1426Y1956D02* X1562D01* X1426Y2024D02* X1660D01* Y2048D02* X1426D01* X1563Y1972D02* X1567Y1976D01* X1660Y2036D02* X1426D01* Y2032D02* X1660D01* X1773Y1936D02* X1794D01* Y1932D02* X1773D01* X1660Y2000D02* X1426D01* Y1996D02* X1660D01* X1773Y1960D02* X2212D01* Y1964D02* X1773D01* X1660Y2020D02* X1426D01* Y2028D02* X1660D01* X1773Y1952D02* X2212D01* Y1956D02* X1773D01* X1660Y2060D02* X1426D01* Y2052D02* X1660D01* X1772Y1972D02* X2185D01* X2189Y1976D01* Y2114D01* X2190Y2096D02* X2314D01* Y2112D02* X2190D01* X2213Y2088D02* X2190D01* Y2084D02* X2212D01* X2190Y2092D02* X2314D01* Y2100D02* X2190D01* X2213Y2087D02* X2217Y2091D01* X2212Y2080D02* X2190D01* X2212Y2076D02* X2190D01* X2212Y2072D02* X2190D01* X2212Y2068D02* X2190D01* Y2060D02* X2212D01* X2190Y2064D02* X2212D01* X2217Y2091D02* X2287D01* X2291Y2087D01* X2314Y2108D02* X2190D01* Y2104D02* X2314D01* X2291Y2088D02* X2314D01* Y2068D02* X2292D01* X2314Y2072D02* X2292D01* Y2064D02* X2314D01* X2292Y2060D02* X2314D01* X2292Y2056D02* X2314D01* X2292Y2052D02* X2314D01* X2292Y2048D02* X2314D01* Y2044D02* X2292D01* X2314Y2040D02* X2292D01* Y2032D02* X2314D01* X2292Y2036D02* X2314D01* Y2028D02* X2292D01* X2314Y2024D02* X2292D01* Y2020D02* X2314D01* X2292Y2016D02* X2314D01* X2292Y2012D02* X2314D01* Y2004D02* X2292D01* X2314Y2008D02* X2292D01* Y2000D02* X2314D01* X2292Y1996D02* X2314D01* X2315Y1984D02* X2319Y1980D01* X2315Y1984D02* Y2114D01* X2189D01* X2213Y2087D02* Y1949D01* X1799D01* X1798Y1948D02* X1773D01* X1660Y1980D02* X1426D01* Y1976D02* X1566D01* X1426Y2080D02* X1660D01* Y2076D02* X1426D01* X1574Y2160D02* X1426D01* Y2164D02* X1574D01* X1426Y2096D02* X1660D01* Y2084D02* X1426D01* X1575Y2136D02* X1426D01* Y2132D02* X1660D01* X1579Y2134D02* X1661D01* X1660Y2116D02* X1426D01* X1574Y2144D02* X1426D01* Y2140D02* X1574D01* X1426Y2100D02* X1660D01* Y2108D02* X1426D01* X1579Y2134D02* X1575Y2138D01* X1574Y2212D02* X1426D01* Y2208D02* X1574D01* X1426Y2384D02* X1660D01* X1426Y2388D02* X1660D01* X1426Y2380D02* X1660D01* Y2356D02* X1426D01* X1574Y2180D02* X1426D01* Y2184D02* X1574D01* X1426Y2324D02* X1660D01* Y2112D02* X1426D01* X1567Y1976D02* X1661D01* X1660Y2004D02* X1426D01* Y2008D02* X1660D01* X1773Y1916D02* X1794D01* Y1912D02* X1773D01* X1660Y2040D02* X1426D01* Y2044D02* X1660D01* X1773Y1944D02* X1794D01* X1795Y1945D02* X1799Y1949D01* X1660Y2120D02* X1426D01* Y2104D02* X1660D01* X1773Y1908D02* X1794D01* Y1904D02* X1773D01* X1794Y1900D02* X1773D01* X1794Y1896D02* X1773D01* Y1884D02* X1794D01* X1799Y1878D02* X2102D01* X2101Y1872D02* X1773D01* X1796Y1880D02* X1773D01* X1794Y1888D02* X1773D01* Y1892D02* X1794D01* X1795Y1882D02* X1799Y1878D01* X1426Y1488D02* X1601D01* X1426Y1436D02* X1818D01* X1819Y1437D02* X1606D01* X1601Y1580D02* X1426D01* Y1584D02* X1601D01* X1426Y1588D02* X1601D01* X1426Y1264D02* X1818D01* Y1256D02* X1426D01* X1818Y1252D02* X1426D01* X1601Y1556D02* X1426D01* X1601Y1552D02* X1426D01* Y1544D02* X1601D01* X1426Y1548D02* X1601D01* X1426Y1412D02* X1818D01* Y1408D02* X1426D01* X1601Y1632D02* X1426D01* X1601Y1628D02* X1426D01* Y1672D02* X1601D01* X1426Y1676D02* X1601D01* X1426Y1352D02* X1818D01* Y1356D02* X1426D01* X1602Y1441D02* Y1870D01* X1601Y1712D02* X1426D01* X1601Y1708D02* X1426D01* Y1704D02* X1601D01* X1563Y1874D02* X1567Y1870D01* X1426Y1780D02* X1601D01* Y1772D02* X1426D01* X1601Y1776D02* X1426D01* Y1752D02* X1601D01* X1426Y1748D02* X1601D01* Y1744D02* X1426D01* X1601Y1740D02* X1426D01* X1601Y1736D02* X1426D01* Y1784D02* X1601D01* X1426Y1788D02* X1601D01* Y1792D02* X1426D01* X1601Y1796D02* X1426D01* X1564Y1872D02* X1426D01* Y1920D02* X1562D01* X1426Y1924D02* X1562D01* X1426Y1864D02* X1601D01* Y1860D02* X1426D01* X1562Y1876D02* X1426D01* Y1880D02* X1562D01* X1426Y1812D02* X1601D01* X1426Y1808D02* X1601D01* Y1800D02* X1426D01* X1601Y1804D02* X1426D01* X1562Y1888D02* X1426D01* Y1884D02* X1562D01* X1426Y1844D02* X1601D01* Y1836D02* X1426D01* X1562Y1900D02* X1426D01* Y1904D02* X1562D01* X1426Y1908D02* X1562D01* X1426Y1820D02* X1601D01* Y1764D02* X1426D01* X1601Y1768D02* X1426D01* Y1760D02* X1601D01* X1426Y1756D02* X1601D01* Y1732D02* X1426D01* X1601Y1728D02* X1426D01* Y1724D02* X1601D01* X1426Y1720D02* X1601D01* X1426Y1716D02* X1601D01* Y1692D02* X1426D01* X1601Y1696D02* X1426D01* Y1700D02* X1601D01* X1567Y1870D02* X1602D01* X1601Y1868D02* X1426D01* X1562Y1892D02* X1426D01* X1562Y1896D02* X1426D01* Y1916D02* X1562D01* X1426Y1912D02* X1562D01* X1426Y1852D02* X1601D01* Y1848D02* X1426D01* X1562Y1940D02* X1426D01* X1562Y1944D02* X1426D01* Y1936D02* X1562D01* X1426Y1932D02* X1562D01* X1426Y1928D02* X1562D01* X1426Y1832D02* X1601D01* Y1828D02* X1426D01* X1563Y1874D02* Y1972D01* X1562Y1960D02* X1426D01* X1562Y1964D02* X1426D01* Y1992D02* X1660D01* X1773Y1920D02* X1794D01* Y1924D02* X1773D01* X1660Y1984D02* X1426D01* Y1988D02* X1660D01* X1773Y1968D02* X2212D01* X2186Y1972D02* X2212D01* X2190Y1976D02* X2212D01* X2190Y1980D02* X2212D01* Y1984D02* X2190D01* X2212Y1988D02* X2190D01* X2212Y1992D02* X2190D01* X2212Y2000D02* X2190D01* X2212Y1996D02* X2190D01* Y2004D02* X2212D01* X2190Y2008D02* X2212D01* X2190Y2012D02* X2212D01* X2190Y2016D02* X2212D01* Y2020D02* X2190D01* X2212Y2024D02* X2190D01* X2212Y2028D02* X2190D01* X2212Y2032D02* X2190D01* X2212Y2036D02* X2190D01* Y2040D02* X2212D01* X2190Y2044D02* X2212D01* X2190Y2048D02* X2212D01* Y2056D02* X2190D01* X2212Y2052D02* X2190D01* X2292Y2080D02* X2314D01* X2292Y2084D02* X2314D01* Y2076D02* X2292D01* X2291Y2087D02* Y1957D01* X2756D01* X2755Y1960D02* X2292D01* Y1964D02* X2755D01* X2729Y1980D02* X2755D01* Y1984D02* X2733D01* X2755Y1968D02* X2292D01* Y1972D02* X2755D01* X2733Y1988D02* X2755D01* Y2008D02* X2733D01* X2755Y2004D02* X2733D01* Y2012D02* X2755D01* X2733Y2016D02* X2755D01* X2733Y2020D02* X2755D01* Y2024D02* X2733D01* X2755Y2028D02* X2733D01* Y2036D02* X2755D01* X2733Y2032D02* X2755D01* Y2040D02* X2733D01* X2755Y2044D02* X2733D01* X2755Y2048D02* X2733D01* X2755Y2056D02* X2733D01* X2755Y2052D02* X2733D01* Y2060D02* X2755D01* X2733Y2064D02* X2755D01* Y2072D02* X2733D01* X2755Y2068D02* X2733D01* Y2076D02* X2755D01* X2733Y2080D02* X2755D01* X2733Y2084D02* X2755D01* Y2088D02* X2733D01* X2755Y2092D02* X2733D01* Y2096D02* X2755D01* X2733Y2100D02* X2755D01* Y2108D02* X2733D01* X2755Y2104D02* X2733D01* Y2112D02* X2755D01* X2733Y2116D02* X2755D01* X2733Y2120D02* X2755D01* Y2128D02* X2733D01* X2755Y2124D02* X2733D01* Y2132D02* X2755D01* X2733Y2136D02* X2755D01* X2733Y2140D02* X2755D01* X2733Y2144D02* X2755D01* Y2148D02* X2733D01* X2755Y2152D02* X2733D01* X2755Y2156D02* X2733D01* X2755Y2160D02* X2733D01* X2755Y2164D02* X2733D01* Y2168D02* X2755D01* X2733Y2172D02* X2755D01* X2733Y2176D02* X2755D01* Y2184D02* X2733D01* X2755Y2180D02* X2733D01* Y2188D02* X2755D01* X2733Y2192D02* X2755D01* Y2216D02* X2733D01* X2755Y2220D02* X2733D01* Y2228D02* X2755D01* X2733Y2224D02* X2755D01* X2733Y2196D02* X2755D01* X2733Y2200D02* X2755D01* Y2204D02* X2733D01* X2755Y2208D02* X2733D01* X2755Y2212D02* X2733D01* Y2232D02* X2755D01* X2733Y2236D02* X2755D01* Y2240D02* X2733D01* X2755Y2244D02* X2733D01* X2755Y2248D02* X2733D01* X2755Y2252D02* X2733D01* X2755Y2256D02* X2733D01* Y2260D02* X2755D01* X2733Y2264D02* X2755D01* X2733Y2268D02* X2755D01* Y2276D02* X2733D01* X2755Y2272D02* X2733D01* Y2280D02* X2755D01* X2733Y2284D02* X2755D01* X2733Y2288D02* X2755D01* X2733Y2292D02* X2755D01* X2733Y2296D02* X2755D01* Y2300D02* X2733D01* X2755Y2304D02* X2733D01* Y2312D02* X2755D01* X2733Y2308D02* X2755D01* Y2316D02* X2733D01* X2755Y2320D02* X2733D01* Y2324D02* X2755D01* X2733Y2328D02* X2755D01* X2733Y2332D02* X2755D01* Y2340D02* X2733D01* X2755Y2336D02* X2733D01* Y2344D02* X2755D01* X2733Y2348D02* X2755D01* X2733Y2352D02* X2755D01* X2733Y2356D02* X2755D01* X2733Y2360D02* X2755D01* Y2364D02* X2733D01* X2755Y2368D02* X2733D01* Y2376D02* X2755D01* X2733Y2372D02* X2755D01* Y2380D02* X2733D01* X2755Y2384D02* X2733D01* X2755Y2388D02* X2733D01* Y2392D02* X2755D01* X2733Y2396D02* X2755D01* Y2404D02* X2733D01* X2755Y2400D02* X2733D01* Y2408D02* X2755D01* X2733Y2412D02* X2755D01* X2733Y2416D02* X2755D01* X2733Y2420D02* X2755D01* X2733Y2424D02* X2755D01* Y2428D02* X2733D01* X2755Y2432D02* X2733D01* Y2440D02* X2755D01* X2733Y2436D02* X2755D01* X2733Y2448D02* X2755D01* X2733Y2444D02* X2755D01* Y2452D02* X2733D01* X2755Y2456D02* X2733D01* X2755Y2460D02* X2733D01* Y2468D02* X2755D01* X2733Y2464D02* X2755D01* Y2472D02* X2733D01* X2755Y2476D02* X2733D01* Y2480D02* X2755D01* X2733Y2484D02* X2755D01* X2733Y2488D02* X2755D01* Y2496D02* X2733D01* X2755Y2492D02* X2733D01* Y2500D02* X2755D01* X2733Y2504D02* X2755D01* X2733Y2508D02* X2755D01* X2733Y2512D02* X2755D01* X2733Y2516D02* X2755D01* Y2520D02* X2733D01* X2755Y2524D02* X2733D01* Y2532D02* X2755D01* X2733Y2528D02* X2755D01* Y2536D02* X2733D01* X2755Y2540D02* X2733D01* Y2544D02* X2755D01* X2733Y2548D02* X2755D01* X2733Y2552D02* X2755D01* Y2560D02* X2733D01* X2755Y2556D02* X2733D01* X2755Y2568D02* X2733D01* X2755Y2564D02* X2733D01* Y2572D02* X2755D01* X2733Y2576D02* X2755D01* X2733Y2580D02* X2755D01* Y2584D02* X2733D01* X2755Y2588D02* X2733D01* Y2596D02* X2755D01* X2733Y2592D02* X2755D01* Y2600D02* X2733D01* X2755Y2604D02* X2733D01* Y2608D02* X2755D01* X2733Y2612D02* X2755D01* X2733Y2616D02* X2755D01* Y2624D02* X2733D01* X2755Y2620D02* X2733D01* Y2628D02* X2755D01* X2733Y2632D02* X2755D01* Y2636D02* X2733D01* X2755Y2640D02* X2733D01* X2755Y2644D02* X2733D01* X2755Y2648D02* X2733D01* X2755Y2652D02* X2733D01* Y2660D02* X2755D01* X2733Y2656D02* X2755D01* Y2664D02* X2733D01* X2755Y2668D02* X2733D01* Y2672D02* X2755D01* X2733Y2676D02* X2755D01* X2733Y2680D02* X2755D01* Y2688D02* X2733D01* X2755Y2684D02* X2733D01* Y2692D02* X2755D01* X2733Y2696D02* X2755D01* X2733Y2700D02* X2755D01* X2733Y2704D02* X2755D01* X2733Y2708D02* X2755D01* Y2716D02* X2733D01* X2755Y2712D02* X2733D01* Y2720D02* X2755D01* X2733Y2724D02* X2755D01* X2733Y2728D02* X2755D01* Y2732D02* X2733D01* X2755Y2736D02* X2733D01* X2755Y2740D02* X2733D01* X2755Y2744D02* X2733D01* Y2752D02* X2755D01* X2733Y2748D02* X2755D01* X2733Y2760D02* X2755D01* X2733Y2756D02* X2755D01* Y2764D02* X2733D01* X2755Y2768D02* X2733D01* X2755Y2772D02* X2733D01* Y2776D02* X2755D01* X2733Y2780D02* X2755D01* X2733Y2784D02* X2755D01* X2733Y2788D02* X2755D01* X2733Y2792D02* X2755D01* Y2796D02* X2733D01* X2755Y2800D02* X2733D01* Y2808D02* X2755D01* X2733Y2804D02* X2755D01* Y2812D02* X2733D01* X2755Y2816D02* X2733D01* Y2824D02* X2755D01* X2733Y2820D02* X2755D01* Y2828D02* X2733D01* X2755Y2832D02* X2733D01* X2755Y2836D02* X2733D01* Y2840D02* X2755D01* X2733Y2844D02* X2755D01* X2733Y2848D02* X2755D01* X2733Y2852D02* X2755D01* X2733Y2856D02* X2755D01* Y2860D02* X2733D01* X2755Y2864D02* X2733D01* Y2872D02* X2755D01* X2733Y2868D02* X2755D01* Y2876D02* X2733D01* X2755Y2880D02* X2733D01* X2755Y2884D02* X2733D01* Y2888D02* X2755D01* X2733Y2892D02* X2755D01* Y2900D02* X2733D01* X2755Y2896D02* X2733D01* Y2904D02* X2755D01* X2733Y2908D02* X2755D01* X2733Y2912D02* X2755D01* X2733Y2916D02* X2755D01* X2733Y2920D02* X2755D01* Y2924D02* X2733D01* X2755Y2928D02* X2733D01* Y2936D02* X2755D01* X2733Y2932D02* X2755D01* Y2940D02* X2733D01* X2755Y2944D02* X2733D01* X2755Y2948D02* X2733D01* Y2952D02* X2755D01* X2733Y2956D02* X2755D01* Y2964D02* X2733D01* X2755Y2960D02* X2733D01* Y2968D02* X2755D01* X2733Y2972D02* X2755D01* Y2976D02* X2733D01* X2755Y2980D02* X2733D01* X2755Y2984D02* X2733D01* X2755Y2988D02* X2733D01* X2755Y2992D02* X2733D01* Y3000D02* X2755D01* X2733Y2996D02* X2755D01* Y3004D02* X2733D01* X2755Y3008D02* X2733D01* X2755Y3012D02* X2733D01* Y3032D02* X2755D01* X2733Y3036D02* X2755D01* Y3040D02* X2733D01* X2755Y3044D02* X2733D01* X2755Y3048D02* X2733D01* X2755Y3020D02* X2733D01* X2755Y3016D02* X2733D01* Y3024D02* X2755D01* X2733Y3028D02* X2755D01* Y3052D02* X2733D01* X2755Y3056D02* X2733D01* Y3064D02* X2755D01* X2733Y3060D02* X2755D01* Y3068D02* X2733D01* X2755Y3072D02* X2733D01* X2755Y3076D02* X2733D01* Y3080D02* X2755D01* X2733Y3084D02* X2755D01* Y3092D02* X2733D01* X2755Y3088D02* X2733D01* Y3096D02* X2755D01* X2733Y3100D02* X2755D01* Y3104D02* X2733D01* X2755Y3108D02* X2733D01* X2755Y3112D02* X2733D01* Y3120D02* X2755D01* X2733Y3116D02* X2755D01* X2944Y3176D02* X2922D01* X2944Y3164D02* X2733D01* Y3168D02* X2944D01* X2921Y3172D02* X2944D01* X2921Y3173D02* X2917Y3169D01* X2732D01* Y1984D01* X2755Y1976D02* X2292D01* X2314Y1992D02* X2292D01* X2314Y1988D02* X2292D01* X2314Y1984D02* X2292D01* Y1980D02* X2318D01* X2319D02* X2728D01* X2732Y1984D01* X2733Y1992D02* X2755D01* Y2000D02* X2733D01* X2755Y1996D02* X2733D01* X2756Y1957D02* Y3142D01* X2755Y3124D02* X2733D01* X2755Y3128D02* X2733D01* Y3132D02* X2755D01* X2733Y3136D02* X2755D01* X2760Y3146D02* X2756Y3142D01* X2733Y3156D02* X2944D01* Y3184D02* X2922D01* X2944Y3180D02* X2922D01* Y3188D02* X2944D01* X2922Y3192D02* X2944D01* X2922Y3196D02* X2944D01* Y3200D02* X2922D01* X2944Y3204D02* X2922D01* Y3224D02* X2944D01* X2922Y3228D02* X2944D01* X2922Y3232D02* X2944D01* Y3240D02* X2922D01* X2944Y3236D02* X2922D01* Y3244D02* X2944D01* X2922Y3248D02* X2944D01* Y3216D02* X2922D01* X2944Y3220D02* X2922D01* Y3212D02* X2944D01* X2922Y3208D02* X2944D01* X2922Y3252D02* X2944D01* X2922Y3256D02* X2944D01* X2922Y3260D02* X2944D01* Y3264D02* X2922D01* X2944Y3268D02* X2922D01* Y3276D02* X2944D01* X2922Y3272D02* X2944D01* Y3280D02* X2922D01* X2944Y3284D02* X2922D01* Y3288D02* X2944D01* X2922Y3292D02* X2944D01* X2922Y3296D02* X2944D01* Y3304D02* X2922D01* X2944Y3300D02* X2922D01* Y3308D02* X2944D01* X2922Y3312D02* X2944D01* Y3316D02* X2922D01* X2944Y3320D02* X2922D01* X2944Y3324D02* X2922D01* X2944Y3328D02* X2922D01* X2944Y3332D02* X2922D01* Y3340D02* X2944D01* X2922Y3336D02* X2944D01* Y3344D02* X2922D01* X2944Y3348D02* X2922D01* Y3352D02* X2944D01* X2922Y3356D02* X2944D01* X2922Y3360D02* X2944D01* Y3368D02* X2922D01* X2944Y3364D02* X2922D01* Y3372D02* X2944D01* X2922Y3376D02* X2944D01* Y3380D02* X2922D01* X2944Y3384D02* X2922D01* X2944Y3388D02* X2922D01* Y3396D02* X2944D01* X2922Y3392D02* X2944D01* Y3424D02* X2922D01* X2944Y3420D02* X2922D01* Y3428D02* X2944D01* X2922Y3432D02* X2944D01* Y3448D02* X2922D01* X2944Y3464D02* X2670D01* Y3460D02* X2944D01* X2921Y3449D02* X2917Y3453D01* X2669D01* X2670Y3456D02* X2944D01* X2922Y3404D02* X2944D01* X2922Y3400D02* X2944D01* Y3408D02* X2922D01* X2944Y3412D02* X2922D01* X2944Y3416D02* X2922D01* Y3436D02* X2944D01* X2922Y3440D02* X2944D01* Y3444D02* X2922D01* X2944Y3452D02* X2919D01* X2921Y3449D02* Y3173D01* X2944Y3160D02* X2733D01* Y3152D02* X2944D01* X2945Y3146D02* X2760D01* X2733Y3140D02* X2755D01* X2733Y3144D02* X2757D01* X2733Y3148D02* X2944D01* X2945Y3146D02* Y3476D01* X2944Y3472D02* X2670D01* X2669Y3453D02* Y3941D01* X3378D01* X3377Y3936D02* X2670D01* X2695Y3916D02* X2670D01* X2693Y3913D02* X2697Y3917D01* X2692Y3896D02* X2670D01* Y3892D02* X2692D01* X2670Y3888D02* X2692D01* Y3904D02* X2670D01* X2692Y3900D02* X2670D01* Y3908D02* X2692D01* X2670Y3912D02* X2692D01* X2693Y3913D02* Y3480D01* X2670Y3476D02* X2696D01* X2670Y3468D02* X2944D01* X2945Y3476D02* X2697D01* X2692Y3480D02* X2670D01* Y3484D02* X2692D01* X2670Y3488D02* X2692D01* X2693Y3480D02* X2697Y3476D01* X2670Y3492D02* X2692D01* X2670Y3496D02* X2692D01* X2670Y3500D02* X2692D01* Y3504D02* X2670D01* X2692Y3508D02* X2670D01* X2692Y3512D02* X2670D01* X2692Y3516D02* X2670D01* Y3524D02* X2692D01* X2670Y3520D02* X2692D01* Y3528D02* X2670D01* X2692Y3532D02* X2670D01* Y3536D02* X2692D01* X2670Y3540D02* X2692D01* X2670Y3544D02* X2692D01* Y3552D02* X2670D01* X2692Y3548D02* X2670D01* Y3556D02* X2692D01* X2670Y3560D02* X2692D01* Y3564D02* X2670D01* X2692Y3568D02* X2670D01* X2692Y3572D02* X2670D01* X2692Y3576D02* X2670D01* X2692Y3580D02* X2670D01* Y3588D02* X2692D01* X2670Y3584D02* X2692D01* Y3592D02* X2670D01* X2692Y3596D02* X2670D01* Y3600D02* X2692D01* X2670Y3604D02* X2692D01* X2670Y3608D02* X2692D01* Y3616D02* X2670D01* X2692Y3612D02* X2670D01* Y3620D02* X2692D01* X2670Y3624D02* X2692D01* Y3628D02* X2670D01* X2692Y3632D02* X2670D01* X2692Y3636D02* X2670D01* Y3644D02* X2692D01* X2670Y3640D02* X2692D01* X2670Y3652D02* X2692D01* X2670Y3648D02* X2692D01* Y3656D02* X2670D01* X2692Y3660D02* X2670D01* X2692Y3664D02* X2670D01* Y3684D02* X2692D01* X2670Y3688D02* X2692D01* Y3692D02* X2670D01* X2692Y3696D02* X2670D01* X2692Y3700D02* X2670D01* X2692Y3672D02* X2670D01* X2692Y3668D02* X2670D01* Y3676D02* X2692D01* X2670Y3680D02* X2692D01* Y3704D02* X2670D01* X2692Y3708D02* X2670D01* Y3716D02* X2692D01* X2670Y3712D02* X2692D01* Y3720D02* X2670D01* X2692Y3724D02* X2670D01* X2692Y3728D02* X2670D01* Y3732D02* X2692D01* X2670Y3736D02* X2692D01* X2670Y3740D02* X2692D01* X2670Y3744D02* X2692D01* X2670Y3748D02* X2692D01* Y3752D02* X2670D01* X2692Y3756D02* X2670D01* Y3764D02* X2692D01* X2670Y3760D02* X2692D01* Y3768D02* X2670D01* X2692Y3772D02* X2670D01* Y3780D02* X2692D01* X2670Y3776D02* X2692D01* Y3784D02* X2670D01* X2692Y3788D02* X2670D01* X2692Y3792D02* X2670D01* Y3796D02* X2692D01* X2670Y3800D02* X2692D01* X2670Y3804D02* X2692D01* X2670Y3808D02* X2692D01* X2670Y3812D02* X2692D01* Y3816D02* X2670D01* X2692Y3820D02* X2670D01* Y3828D02* X2692D01* X2670Y3824D02* X2692D01* Y3832D02* X2670D01* X2692Y3836D02* X2670D01* X2692Y3840D02* X2670D01* Y3844D02* X2692D01* X2670Y3848D02* X2692D01* Y3856D02* X2670D01* X2692Y3852D02* X2670D01* Y3860D02* X2692D01* X2670Y3864D02* X2692D01* X2670Y3868D02* X2692D01* X2670Y3872D02* X2692D01* X2670Y3876D02* X2692D01* Y3880D02* X2670D01* X2692Y3884D02* X2670D01* X3377Y3456D02* X3355D01* X3377Y3460D02* X3355D01* Y3452D02* X3377D01* X3355Y3448D02* X3377D01* X3355Y3444D02* X3377D01* Y3440D02* X3355D01* X3377Y3436D02* X3355D01* Y3428D02* X3377D01* X3355Y3432D02* X3377D01* Y3424D02* X3355D01* X3377Y3420D02* X3355D01* Y3416D02* X3377D01* X3355Y3412D02* X3377D01* X3355Y3408D02* X3377D01* Y3400D02* X3355D01* X3377Y3404D02* X3355D01* Y3396D02* X3377D01* X3355Y3392D02* X3377D01* X3355Y3388D02* X3377D01* X3355Y3384D02* X3377D01* X3355Y3380D02* X3377D01* Y3376D02* X3355D01* X3377Y3372D02* X3355D01* Y3364D02* X3377D01* X3355Y3368D02* X3377D01* Y3360D02* X3355D01* X3377Y3356D02* X3355D01* X3377Y3352D02* X3355D01* Y3348D02* X3377D01* X3355Y3344D02* X3377D01* Y3336D02* X3355D01* X3377Y3340D02* X3355D01* Y3332D02* X3377D01* X3355Y3328D02* X3377D01* X3355Y3324D02* X3377D01* X3355Y3320D02* X3377D01* X3355Y3316D02* X3377D01* Y3312D02* X3355D01* X3377Y3308D02* X3355D01* Y3300D02* X3377D01* X3355Y3304D02* X3377D01* Y3296D02* X3355D01* X3377Y3292D02* X3355D01* X3377Y3288D02* X3355D01* Y3284D02* X3377D01* X3355Y3280D02* X3377D01* Y3272D02* X3355D01* X3377Y3276D02* X3355D01* Y3268D02* X3377D01* X3355Y3264D02* X3377D01* Y3260D02* X3355D01* X3377Y3256D02* X3355D01* X3377Y3252D02* X3355D01* X3377Y3248D02* X3355D01* X3377Y3244D02* X3355D01* Y3236D02* X3377D01* X3355Y3240D02* X3377D01* Y3232D02* X3355D01* X3377Y3228D02* X3355D01* X3377Y3224D02* X3355D01* Y3220D02* X3377D01* X3355Y3216D02* X3377D01* Y3208D02* X3355D01* X3377Y3212D02* X3355D01* Y3204D02* X3377D01* X3355Y3200D02* X3377D01* Y3196D02* X3355D01* X3377Y3192D02* X3355D01* X3377Y3188D02* X3355D01* X3377Y3184D02* X3355D01* X3377Y3180D02* X3355D01* Y3172D02* X3377D01* X3355Y3176D02* X3377D01* Y3168D02* X3355D01* X3377Y3164D02* X3355D01* X3377Y3160D02* X3355D01* Y3156D02* X3377D01* X3355Y3152D02* X3377D01* Y3148D02* X3355D01* X3377Y3144D02* X3355D01* Y3136D02* X3377D01* X3355Y3140D02* X3377D01* Y3132D02* X3355D01* X3377Y3128D02* X3355D01* X3377Y3124D02* X3355D01* Y3120D02* X3377D01* X3355Y3116D02* X3377D01* Y3092D02* X3355D01* X3377Y3088D02* X3355D01* Y3080D02* X3377D01* X3355Y3084D02* X3377D01* X3355Y3112D02* X3377D01* X3355Y3108D02* X3377D01* X3355Y3104D02* X3377D01* Y3100D02* X3355D01* X3377Y3096D02* X3355D01* Y3076D02* X3377D01* X3355Y3072D02* X3377D01* X3355Y3068D02* X3377D01* Y3060D02* X3355D01* X3377Y3064D02* X3355D01* Y3056D02* X3377D01* X3355Y3052D02* X3377D01* X3355Y3048D02* X3377D01* X3355Y3044D02* X3377D01* X3355Y3040D02* X3377D01* Y3036D02* X3355D01* X3377Y3032D02* X3355D01* Y3024D02* X3377D01* X3355Y3028D02* X3377D01* Y3020D02* X3355D01* X3377Y3016D02* X3355D01* Y3012D02* X3377D01* X3355Y3008D02* X3377D01* X3355Y3004D02* X3377D01* Y2996D02* X3355D01* X3377Y3000D02* X3355D01* X3378Y2976D02* Y3941D01* X3377Y3932D02* X2670D01* Y3940D02* X3377D01* X3352Y3916D02* X3377D01* Y3904D02* X3355D01* X3377Y3900D02* X3355D01* X3377Y3896D02* X3355D01* Y3888D02* X3377D01* X3355Y3892D02* X3377D01* X3355Y3884D02* X3377D01* X3355Y3880D02* X3377D01* X3355Y3876D02* X3377D01* Y3868D02* X3355D01* X3377Y3872D02* X3355D01* Y3864D02* X3377D01* X3355Y3860D02* X3377D01* Y3852D02* X3355D01* X3377Y3856D02* X3355D01* Y3848D02* X3377D01* X3355Y3844D02* X3377D01* Y3840D02* X3355D01* X3377Y3836D02* X3355D01* X3377Y3832D02* X3355D01* X3377Y3828D02* X3355D01* X3377Y3824D02* X3355D01* Y3820D02* X3377D01* X3355Y3816D02* X3377D01* X3355Y3812D02* X3377D01* Y3804D02* X3355D01* X3377Y3808D02* X3355D01* Y3800D02* X3377D01* X3355Y3796D02* X3377D01* X3355Y3792D02* X3377D01* X3355Y3788D02* X3377D01* X3355Y3784D02* X3377D01* Y3780D02* X3355D01* X3377Y3776D02* X3355D01* Y3768D02* X3377D01* X3355Y3772D02* X3377D01* Y3764D02* X3355D01* X3377Y3760D02* X3355D01* Y3756D02* X3377D01* X3355Y3752D02* X3377D01* X3355Y3748D02* X3377D01* Y3740D02* X3355D01* X3377Y3744D02* X3355D01* Y3736D02* X3377D01* X3355Y3732D02* X3377D01* X3355Y3728D02* X3377D01* X3355Y3724D02* X3377D01* X3355Y3720D02* X3377D01* Y3716D02* X3355D01* X3377Y3712D02* X3355D01* Y3704D02* X3377D01* X3355Y3708D02* X3377D01* Y3700D02* X3355D01* X3377Y3696D02* X3355D01* X3377Y3692D02* X3355D01* Y3688D02* X3377D01* X3355Y3684D02* X3377D01* Y3676D02* X3355D01* X3377Y3680D02* X3355D01* Y3672D02* X3377D01* X3355Y3668D02* X3377D01* X3355Y3664D02* X3377D01* X3355Y3660D02* X3377D01* X3355Y3656D02* X3377D01* Y3652D02* X3355D01* X3377Y3648D02* X3355D01* Y3640D02* X3377D01* X3355Y3644D02* X3377D01* Y3636D02* X3355D01* X3377Y3632D02* X3355D01* X3377Y3628D02* X3355D01* Y3608D02* X3377D01* X3355Y3604D02* X3377D01* Y3600D02* X3355D01* X3377Y3596D02* X3355D01* X3377Y3592D02* X3355D01* X3377Y3620D02* X3355D01* X3377Y3624D02* X3355D01* Y3616D02* X3377D01* X3355Y3612D02* X3377D01* Y3588D02* X3355D01* X3377Y3584D02* X3355D01* Y3576D02* X3377D01* X3355Y3580D02* X3377D01* Y3572D02* X3355D01* X3377Y3568D02* X3355D01* X3377Y3564D02* X3355D01* Y3560D02* X3377D01* X3355Y3556D02* X3377D01* Y3548D02* X3355D01* X3377Y3552D02* X3355D01* Y3544D02* X3377D01* X3355Y3540D02* X3377D01* Y3536D02* X3355D01* X3377Y3532D02* X3355D01* X3377Y3528D02* X3355D01* Y3508D02* X3377D01* X3355Y3504D02* X3377D01* Y3500D02* X3355D01* X3377Y3496D02* X3355D01* X3377Y3492D02* X3355D01* X3377Y3488D02* X3355D01* X3377Y3484D02* X3355D01* Y3480D02* X3377D01* X3355Y3476D02* X3377D01* X3355Y3472D02* X3377D01* Y3464D02* X3355D01* X3377Y3468D02* X3355D01* X3377Y3516D02* X3355D01* X3377Y3512D02* X3355D01* Y3520D02* X3377D01* X3355Y3524D02* X3377D01* Y3928D02* X2670D01* X2697Y3917D02* X3350D01* X3354Y3913D01* X3377Y3920D02* X2670D01* Y3924D02* X3377D01* X3355Y3912D02* X3377D01* Y3908D02* X3355D01* X3354Y3913D02* Y2949D01* X3862D01* X3866Y2945D01* X3889Y2952D02* X3355D01* Y2956D02* X3889D01* X3890Y2972D02* Y1969D01* X3894Y1965D02* X3890Y1969D01* X3889Y1988D02* X3867D01* X3889Y1984D02* X3867D01* Y1980D02* X3889D01* X3867Y1976D02* X3889D01* Y1992D02* X3867D01* X3889Y1996D02* X3867D01* X3889Y2000D02* X3867D01* Y2008D02* X3889D01* X3867Y2004D02* X3889D01* X3867Y2012D02* X3889D01* X3867Y2016D02* X3889D01* X3867Y2020D02* X3889D01* Y2028D02* X3867D01* X3889Y2024D02* X3867D01* Y2032D02* X3889D01* X3867Y2036D02* X3889D01* X3867Y2040D02* X3889D01* X3867Y2044D02* X3889D01* X3867Y2048D02* X3889D01* Y2052D02* X3867D01* X3889Y2056D02* X3867D01* X3889Y2060D02* X3867D01* X3889Y2064D02* X3867D01* Y2072D02* X3889D01* X3867Y2068D02* X3889D01* Y2084D02* X3867D01* X3889Y2080D02* X3867D01* X3889Y2076D02* X3867D01* Y2088D02* X3889D01* X3867Y2092D02* X3889D01* Y2096D02* X3867D01* X3889Y2100D02* X3867D01* Y2108D02* X3889D01* X3867Y2104D02* X3889D01* Y2112D02* X3867D01* X3889Y2116D02* X3867D01* X3889Y2120D02* X3867D01* Y2128D02* X3889D01* X3867Y2124D02* X3889D01* X3867Y2136D02* X3889D01* X3867Y2132D02* X3889D01* Y2140D02* X3867D01* X3889Y2144D02* X3867D01* X3889Y2148D02* X3867D01* Y2152D02* X3889D01* X3867Y2156D02* X3889D01* Y2164D02* X3867D01* X3889Y2160D02* X3867D01* Y2168D02* X3889D01* X3867Y2172D02* X3889D01* Y2176D02* X3867D01* X3889Y2180D02* X3867D01* X3889Y2184D02* X3867D01* X3889Y2188D02* X3867D01* X3889Y2192D02* X3867D01* Y2200D02* X3889D01* X3867Y2196D02* X3889D01* Y2204D02* X3867D01* X3889Y2208D02* X3867D01* X3889Y2212D02* X3867D01* Y2216D02* X3889D01* X3867Y2220D02* X3889D01* Y2228D02* X3867D01* X3889Y2224D02* X3867D01* Y2232D02* X3889D01* X3867Y2236D02* X3889D01* X3867Y2240D02* X3889D01* Y2248D02* X3867D01* X3889Y2244D02* X3867D01* Y2252D02* X3889D01* X3867Y2256D02* X3889D01* X3867Y2260D02* X3889D01* X3867Y2264D02* X3889D01* X3867Y2268D02* X3889D01* Y2272D02* X3867D01* X3889Y2276D02* X3867D01* Y2284D02* X3889D01* X3867Y2280D02* X3889D01* Y2288D02* X3867D01* X3889Y2292D02* X3867D01* Y2296D02* X3889D01* X3867Y2300D02* X3889D01* X3867Y2304D02* X3889D01* Y2312D02* X3867D01* X3889Y2308D02* X3867D01* Y2316D02* X3889D01* X3867Y2320D02* X3889D01* X3867Y2324D02* X3889D01* X3867Y2328D02* X3889D01* X3867Y2332D02* X3889D01* Y2336D02* X3867D01* X3889Y2340D02* X3867D01* Y2348D02* X3889D01* X3867Y2344D02* X3889D01* Y2352D02* X3867D01* X3889Y2356D02* X3867D01* Y2360D02* X3889D01* X3867Y2364D02* X3889D01* X3867Y2368D02* X3889D01* Y2376D02* X3867D01* X3889Y2372D02* X3867D01* Y2380D02* X3889D01* X3867Y2384D02* X3889D01* Y2388D02* X3867D01* X3889Y2392D02* X3867D01* X3889Y2396D02* X3867D01* X3889Y2400D02* X3867D01* X3889Y2404D02* X3867D01* Y2412D02* X3889D01* X3867Y2408D02* X3889D01* Y2416D02* X3867D01* X3889Y2420D02* X3867D01* X3889Y2424D02* X3867D01* X3889Y2428D02* X3867D01* X3889Y2432D02* X3867D01* Y2440D02* X3889D01* X3867Y2436D02* X3889D01* X3867Y2448D02* X3889D01* X3867Y2444D02* X3889D01* Y2452D02* X3867D01* X3889Y2456D02* X3867D01* X3889Y2460D02* X3867D01* Y2468D02* X3889D01* X3867Y2464D02* X3889D01* Y2472D02* X3867D01* X3889Y2476D02* X3867D01* Y2480D02* X3889D01* X3867Y2484D02* X3889D01* X3867Y2488D02* X3889D01* Y2496D02* X3867D01* X3889Y2492D02* X3867D01* Y2500D02* X3889D01* X3867Y2504D02* X3889D01* X3867Y2508D02* X3889D01* X3867Y2512D02* X3889D01* X3867Y2516D02* X3889D01* Y2520D02* X3867D01* X3889Y2524D02* X3867D01* Y2532D02* X3889D01* X3867Y2528D02* X3889D01* Y2536D02* X3867D01* X3889Y2540D02* X3867D01* Y2544D02* X3889D01* X3867Y2548D02* X3889D01* X3867Y2552D02* X3889D01* Y2560D02* X3867D01* X3889Y2556D02* X3867D01* Y2564D02* X3889D01* X3867Y2568D02* X3889D01* X3867Y2572D02* X3889D01* X3867Y2576D02* X3889D01* X3867Y2580D02* X3889D01* Y2584D02* X3867D01* X3889Y2588D02* X3867D01* Y2596D02* X3889D01* X3867Y2592D02* X3889D01* Y2600D02* X3867D01* X3889Y2604D02* X3867D01* Y2608D02* X3889D01* X3867Y2612D02* X3889D01* X3867Y2616D02* X3889D01* Y2624D02* X3867D01* X3889Y2620D02* X3867D01* Y2628D02* X3889D01* X3867Y2632D02* X3889D01* Y2636D02* X3867D01* X3889Y2640D02* X3867D01* X3889Y2644D02* X3867D01* X3889Y2648D02* X3867D01* X3889Y2652D02* X3867D01* Y2660D02* X3889D01* X3867Y2656D02* X3889D01* Y2664D02* X3867D01* X3889Y2668D02* X3867D01* Y2672D02* X3889D01* X3867Y2676D02* X3889D01* X3867Y2680D02* X3889D01* Y2684D02* X3867D01* X3889Y2688D02* X3867D01* Y2696D02* X3889D01* X3867Y2692D02* X3889D01* Y2700D02* X3867D01* X3889Y2704D02* X3867D01* X3889Y2708D02* X3867D01* Y2712D02* X3889D01* X3867Y2716D02* X3889D01* X3867Y2720D02* X3889D01* X3867Y2724D02* X3889D01* X3867Y2728D02* X3889D01* Y2732D02* X3867D01* X3889Y2736D02* X3867D01* X3889Y2740D02* X3867D01* X3889Y2744D02* X3867D01* Y2752D02* X3889D01* X3867Y2748D02* X3889D01* Y2756D02* X3867D01* X3889Y2760D02* X3867D01* X3889Y2764D02* X3867D01* X3889Y2768D02* X3867D01* X3889Y2772D02* X3867D01* Y2776D02* X3889D01* X3867Y2780D02* X3889D01* X3867Y2784D02* X3889D01* X3867Y2788D02* X3889D01* X3867Y2792D02* X3889D01* Y2796D02* X3867D01* X3889Y2800D02* X3867D01* Y2808D02* X3889D01* X3867Y2804D02* X3889D01* Y2812D02* X3867D01* X3889Y2816D02* X3867D01* Y2824D02* X3889D01* X3867Y2820D02* X3889D01* Y2828D02* X3867D01* X3889Y2832D02* X3867D01* X3889Y2836D02* X3867D01* Y2840D02* X3889D01* X3867Y2844D02* X3889D01* X3867Y2848D02* X3889D01* X3867Y2852D02* X3889D01* X3867Y2856D02* X3889D01* Y2860D02* X3867D01* X3889Y2864D02* X3867D01* Y2872D02* X3889D01* X3867Y2868D02* X3889D01* Y2876D02* X3867D01* X3889Y2880D02* X3867D01* X3889Y2884D02* X3867D01* Y2888D02* X3889D01* X3867Y2892D02* X3889D01* Y2900D02* X3867D01* X3889Y2896D02* X3867D01* Y2904D02* X3889D01* X3867Y2908D02* X3889D01* X3867Y2912D02* X3889D01* X3867Y2916D02* X3889D01* X3867Y2920D02* X3889D01* Y2924D02* X3867D01* X3889Y2928D02* X3867D01* Y2932D02* X3889D01* X3867Y2936D02* X3889D01* X3867Y2940D02* X3889D01* Y2944D02* X3867D01* X3889Y2960D02* X3355D01* X3890Y2972D02* X3382D01* X3377Y2992D02* X3355D01* Y2988D02* X3377D01* X3378Y2976D02* X3382Y2972D01* X3355Y2968D02* X3889D01* Y2972D02* X3355D01* X3377Y2976D02* X3355D01* Y2984D02* X3377D01* X3355Y2980D02* X3377D01* X3355Y2964D02* X3889D01* Y2948D02* X3864D01* X3866Y2945D02* Y1941D01* X3867Y1944D02* X5062D01* X5064Y1924D02* X5126Y1864D01* X5125Y1836D02* X5103D01* X5125Y1832D02* X5103D01* Y1824D02* X5126D01* X5112Y1812D02* X5138D01* X5124Y1800D02* X5150D01* X5142Y1808D02* X5116D01* X5130Y1820D02* X5104D01* X5108Y1816D02* X5134D01* X5120Y1804D02* X5146D01* X5132Y1792D02* X5158D01* X5144Y1780D02* X5170D01* X5156Y1768D02* X5182D01* X5168Y1756D02* X5194D01* X5180Y1744D02* X5206D01* X5214Y1736D02* X5188D01* X5202Y1748D02* X5176D01* X5190Y1760D02* X5164D01* X5172Y1752D02* X5198D01* X5184Y1740D02* X5210D01* X5196Y1728D02* X5222D01* X5178Y1772D02* X5152D01* X5166Y1784D02* X5140D01* X5154Y1796D02* X5128D01* X5136Y1788D02* X5162D01* X5148Y1776D02* X5174D01* X5160Y1764D02* X5186D01* X5192Y1732D02* X5218D01* X5204Y1720D02* X5230D01* X5216Y1708D02* X5242D01* X5246Y1704D02* X5220D01* X5234Y1716D02* X5208D01* X5200Y1724D02* X5226D01* X5212Y1712D02* X5238D01* X5224Y1700D02* X5250D01* X5236Y1688D02* X5262D01* X5248Y1676D02* X5274D01* X5260Y1664D02* X5286D01* X5278Y1672D02* X5252D01* X5266Y1684D02* X5240D01* X5254Y1696D02* X5228D01* X5232Y1692D02* X5258D01* X5244Y1680D02* X5270D01* X5256Y1668D02* X5282D01* X5268Y1656D02* X5294D01* X5280Y1644D02* X5306D01* X5310Y1640D02* X5284D01* X5298Y1652D02* X5272D01* X5264Y1660D02* X5290D01* X5276Y1648D02* X5302D01* X5288Y1636D02* X5314D01* X5292Y1632D02* X5318D01* X5304Y1620D02* X5330D01* X5316Y1608D02* X5342D01* X5338Y1612D02* X5312D01* X5326Y1624D02* X5300D01* X5296Y1628D02* X5322D01* X5308Y1616D02* X5334D01* X5328Y1596D02* X5354D01* X5340Y1584D02* X5366D01* X5352Y1572D02* X5378D01* X5370Y1580D02* X5344D01* X5358Y1592D02* X5332D01* X5346Y1604D02* X5320D01* X5324Y1600D02* X5350D01* X5336Y1588D02* X5362D01* X5348Y1576D02* X5374D01* X5360Y1564D02* X5386D01* X5372Y1552D02* X5398D01* X5402Y1548D02* X5376D01* X5390Y1560D02* X5364D01* X5356Y1568D02* X5382D01* X5368Y1556D02* X5394D01* X5380Y1544D02* X5406D01* X5392Y1532D02* X5418D01* X5404Y1520D02* X5430D01* X5416Y1508D02* X5442D01* X5434Y1516D02* X5408D01* X5422Y1528D02* X5396D01* X5410Y1540D02* X5384D01* X5388Y1536D02* X5414D01* X5400Y1524D02* X5426D01* X5420Y1504D02* X5446D01* X5432Y1492D02* X5458D01* X5448Y1476D02* X5637D01* Y1472D02* X5452D01* X5462Y1461D02* X5610D01* X5615Y1444D02* X5637D01* X5615Y1448D02* X5637D01* X5615Y1452D02* X5637D01* Y1456D02* X5615D01* X5637Y1464D02* X5460D01* X5462Y1461D02* X5102Y1821D01* Y1858D01* X5103Y1860D02* X5125D01* Y1856D02* X5103D01* X5117Y1872D02* X5091D01* X5104Y1884D02* X5079D01* X5095Y1868D02* X5121D01* X5126Y1864D02* Y1827D01* X5127Y1824D02* X5126Y1827D01* X5125Y1828D02* X5103D01* X5075Y1888D02* X5100D01* X5087Y1876D02* X5112D01* X5108Y1880D02* X5083D01* X5096Y1892D02* X5071D01* X5083Y1904D02* X5059D01* X5071Y1916D02* X5047D01* X5062Y1932D02* X5031D01* X5035Y1928D02* X5062D01* X5051Y1912D02* X5075D01* X5063Y1900D02* X5087D01* X5092Y1896D02* X5067D01* X5079Y1908D02* X5055D01* X5063Y1924D02* X5039D01* X5066Y1920D02* X5043D01* X5062Y1936D02* X5027D01* X5023Y1940D02* X5020Y1941D01* X3866D01* X3867Y1956D02* X5062D01* Y1968D02* X5040D01* X5062Y1964D02* X3867D01* Y1960D02* X5062D01* X5039Y1969D02* Y2185D01* X5220D01* Y2118D01* X5219Y2180D02* X5040D01* X5065Y2160D02* X5040D01* Y2164D02* X5219D01* X5198Y2156D02* X5219D01* Y2160D02* X5195D01* X5219Y2184D02* X5040D01* Y2176D02* X5219D01* X5197Y2157D02* X5193Y2161D01* X5198Y2128D02* X5219D01* X5198Y2124D02* X5219D01* Y2152D02* X5198D01* X5219Y2148D02* X5198D01* X5219Y2144D02* X5198D01* X5219Y2140D02* X5198D01* Y2136D02* X5219D01* X5198Y2132D02* X5219D01* X5224Y2114D02* X5547D01* X5551Y2118D01* X5552Y2124D02* X5574D01* X5552Y2128D02* X5574D01* Y2092D02* X5198D01* X5224Y2114D02* X5220Y2118D01* X5221Y2116D02* X5198D01* Y2120D02* X5219D01* X5198Y2108D02* X5574D01* Y2136D02* X5552D01* X5574Y2132D02* X5552D01* Y2140D02* X5574D01* X5552Y2144D02* X5574D01* Y2148D02* X5552D01* X5574Y2152D02* X5552D01* X5574Y2156D02* X5552D01* Y2164D02* X5574D01* X5552Y2160D02* X5574D01* Y2168D02* X5552D01* X5574Y2172D02* X5552D01* X5574Y2176D02* X5552D01* Y2180D02* X5574D01* X5552Y2184D02* X5574D01* Y2116D02* X5551D01* X5574Y2096D02* X5198D01* X5197Y2091D02* Y2157D01* X5193Y2161D02* X5067D01* X5062Y2140D02* X5040D01* X5062Y2136D02* X5040D01* X5062Y2132D02* X5040D01* Y2124D02* X5062D01* X5040Y2128D02* X5062D01* X5040Y2148D02* X5062D01* X5040Y2144D02* X5062D01* X5067Y2161D02* X5063Y2157D01* X5040Y2168D02* X5219D01* Y2172D02* X5040D01* X5062Y2156D02* X5040D01* Y2152D02* X5062D01* X5063Y2157D02* Y1926D01* X5064Y1924D02* X5063Y1926D01* X5062Y1948D02* X3867D01* Y1952D02* X5062D01* X5035Y1965D02* X5039Y1969D01* X5035Y1965D02* X3894D01* X3889Y1968D02* X3867D01* X3889Y1972D02* X3867D01* X3897Y1656D02* X3875D01* X3897Y1660D02* X3875D01* Y1668D02* X3897D01* X3875Y1664D02* X3897D01* Y1672D02* X3875D01* X3897Y1676D02* X3875D01* Y1680D02* X3897D01* X3875Y1684D02* X3897D01* X3875Y1688D02* X3897D01* X3902Y1705D02* X5059D01* X5062Y1704D01* X5076Y1724D02* X3875D01* Y1720D02* X5080D01* X5066Y1700D02* X5100D01* X5104Y1696D02* X5070D01* X5088Y1712D02* X3875D01* Y1716D02* X5084D01* X5074Y1692D02* X5108D01* X5078Y1688D02* X5112D01* X5094Y1672D02* X5128D01* X5110Y1656D02* X5144D01* X5148Y1652D02* X5114D01* X5132Y1668D02* X5098D01* X5116Y1684D02* X5082D01* X5096Y1704D02* X5061D01* X5062D02* X5188Y1578D01* X5189Y1575D02* X5188Y1578D01* X5174Y1592D02* X5208D01* X5200Y1600D02* X5166D01* X5184Y1616D02* X5150D01* X5168Y1632D02* X5134D01* X5152Y1648D02* X5118D01* X5126Y1640D02* X5160D01* X5142Y1624D02* X5176D01* X5158Y1608D02* X5192D01* X5188Y1612D02* X5154D01* X5172Y1628D02* X5138D01* X5130Y1636D02* X5164D01* X5146Y1620D02* X5180D01* X5156Y1644D02* X5122D01* X5140Y1660D02* X5106D01* X5124Y1676D02* X5090D01* X5086Y1680D02* X5120D01* X5102Y1664D02* X5136D01* X5092Y1708D02* X3875D01* X3898Y1701D02* X3902Y1705D01* X3900Y1704D02* X3875D01* X3897Y1700D02* X3875D01* Y1692D02* X3897D01* X3875Y1696D02* X3897D01* X3898Y1701D02* Y1618D01* X2079D01* X2080Y1620D02* X3897D01* Y1636D02* X2080D01* X2103Y1644D02* X2080D01* Y1648D02* X2101D01* X2080Y1640D02* X3897D01* Y1644D02* X3874D01* X3897Y1628D02* X2080D01* Y1632D02* X3897D01* X3875Y1648D02* X3897D01* Y1652D02* X3875D01* X3874Y1646D02* X3870Y1642D01* X2106D01* X2101Y1652D02* X2080D01* Y1660D02* X2101D01* X2080Y1656D02* X2101D01* X2102Y1646D02* X2106Y1642D01* X2102Y1646D02* Y1878D01* X2101Y1876D02* X1773D01* X1795Y1882D02* Y1945D01* X1660Y2072D02* X1426D01* Y2068D02* X1660D01* X1661Y2134D02* Y1976D01* X1794Y1940D02* X1773D01* X1660Y2012D02* X1426D01* Y2016D02* X1660D01* X1773Y1928D02* X1794D01* X1772Y1972D02* Y1854D01* X1601Y1816D02* X1426D01* Y1824D02* X1601D01* X1773Y1860D02* X2101D01* Y1856D02* X1773D01* X1601Y1840D02* X1426D01* Y1856D02* X1601D01* X1773Y1864D02* X2101D01* Y1868D02* X1773D01* X1772Y1854D02* X2075D01* X2079Y1850D01* X2101Y1664D02* X2080D01* X2101Y1668D02* X2080D01* Y1676D02* X2101D01* X2080Y1672D02* X2101D01* X2080Y1680D02* X2101D01* X2080Y1684D02* X2101D01* X2080Y1688D02* X2101D01* Y1696D02* X2080D01* X2101Y1692D02* X2080D01* Y1700D02* X2101D01* X2080Y1704D02* X2101D01* Y1708D02* X2080D01* X2101Y1712D02* X2080D01* X2101Y1716D02* X2080D01* X2101Y1720D02* X2080D01* X2101Y1724D02* X2080D01* Y1728D02* X2101D01* X2080Y1732D02* X2101D01* X2080Y1736D02* X2101D01* X2080Y1740D02* X2101D01* X2080Y1744D02* X2101D01* Y1748D02* X2080D01* X2101Y1752D02* X2080D01* Y1760D02* X2101D01* X2080Y1756D02* X2101D01* Y1764D02* X2080D01* X2101Y1768D02* X2080D01* Y1772D02* X2101D01* X2080Y1776D02* X2101D01* X2080Y1780D02* X2101D01* Y1788D02* X2080D01* X2101Y1784D02* X2080D01* Y1792D02* X2101D01* X2080Y1796D02* X2101D01* X2080Y1800D02* X2101D01* X2080Y1804D02* X2101D01* X2080Y1808D02* X2101D01* Y1812D02* X2080D01* X2101Y1816D02* X2080D01* Y1824D02* X2101D01* X2080Y1820D02* X2101D01* Y1828D02* X2080D01* X2101Y1832D02* X2080D01* Y1836D02* X2101D01* X2080Y1840D02* X2101D01* X2080Y1844D02* X2101D01* Y1848D02* X2080D01* X2101Y1852D02* X2078D01* X2079Y1850D02* Y1618D01* X2080Y1624D02* X3897D01* X3874Y1646D02* Y1728D01* X5073D01* X5213Y1589D01* X5212Y1588D02* X5178D01* X5189Y1575D02* Y1118D01* X5185Y1114D01* X1823D01* X1818Y1260D02* X1426D01* Y1216D02* X1818D01* X1687Y886D02* Y850D01* X1651D01* X1642Y859D01* X1678Y894D02* X1651D01* X1818Y1240D02* X1426D01* Y1232D02* X1818D01* X1678Y894D02* X1687Y886D01* Y877D02* X1651D01* X1642Y868D01* Y859D01* X1509Y850D02* X1536D01* X1426Y972D02* X7834D01* Y976D02* X1426D01* X1544Y859D02* X1536Y850D01* X1544Y859D02* Y868D01* X1426Y1176D02* X1818D01* X2069Y850D02* X2122D01* X2096D02* Y921D01* X2078Y903D01* X2167Y868D02* X2176Y859D01* X2167Y850D01* X2158Y859D01* X2167Y868D01* X2211Y859D02* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y850D02* X2264Y921D01* X2327D02* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2327Y921D02* X2336Y912D01* Y859D01* X2327Y850D01* X2291D01* X2282D02* X2336Y921D01* X1818Y1272D02* X1426D01* X1818Y1268D02* X1426D01* X1601Y1496D02* X1426D01* Y1492D02* X1601D01* X1426Y1332D02* X1818D01* Y1336D02* X1426D01* X1601Y1644D02* X1426D01* X1601Y1648D02* X1426D01* X1601Y1652D02* X1426D01* Y1656D02* X1601D01* X1426Y1660D02* X1601D01* X1426Y1400D02* X1818D01* Y1396D02* X1426D01* X1601Y1500D02* X1426D01* X1601Y1504D02* X1426D01* Y1520D02* X1601D01* X1426Y1524D02* X1601D01* X1426Y1428D02* X1818D01* Y1424D02* X1426D01* X1601Y1616D02* X1426D01* X1601Y1620D02* X1426D01* Y1624D02* X1601D01* X1426Y1344D02* X1818D01* Y1348D02* X1426D01* X1601Y1532D02* X1426D01* X1601Y1528D02* X1426D01* Y1540D02* X1601D01* X1426Y1536D02* X1601D01* X1426Y1284D02* X1818D01* X1426Y1280D02* X1818D01* Y1276D02* X1426D01* X1601Y1460D02* X1426D01* Y1464D02* X1601D01* X1426Y1404D02* X1818D01* Y1432D02* X1426D01* X1601Y1668D02* X1426D01* Y1664D02* X1601D01* X1426Y1368D02* X1818D01* Y1372D02* X1426D01* X1601Y1476D02* X1426D01* Y1472D02* X1601D01* X1426Y1244D02* X1818D01* Y1236D02* X1426D01* X1601Y1508D02* X1426D01* Y1512D02* X1601D01* X1426Y1364D02* X1818D01* Y1360D02* X1426D01* X1601Y1604D02* X1426D01* X1601Y1600D02* X1426D01* Y1608D02* X1601D01* X1426Y1612D02* X1601D01* X1426Y1296D02* X1818D01* Y1300D02* X1426D01* X1601Y1516D02* X1426D01* X1500Y1394D02* X1441D01* X1818Y1304D02* X1426D01* Y1388D02* X1818D01* X1819Y1437D02* Y1118D01* X1818Y1120D02* X1426D01* X1536Y877D02* X1544Y868D01* X1509Y877D02* X1500Y886D01* X1426Y1172D02* X1818D01* Y1168D02* X1426D01* X1544Y886D02* X1536Y894D01* Y877D02* X1509D01* X1426Y1200D02* X1818D01* Y1212D02* X1426D01* X1601Y1448D02* X1426D01* Y1444D02* X1601D01* X1426Y1420D02* X1818D01* Y1416D02* X1426D01* X1601Y1680D02* X1426D01* Y1688D02* X1601D01* X1426Y1684D02* X1601D01* X1426Y1384D02* X1818D01* Y1392D02* X1426D01* X1601Y1596D02* X1426D01* X1601Y1592D02* X1426D01* Y1560D02* X1601D01* X1426Y1380D02* X1818D01* Y1376D02* X1426D01* X1601Y1636D02* X1426D01* Y1640D02* X1601D01* X1426Y1312D02* X1818D01* Y1308D02* X1426D01* X1601Y1480D02* X1426D01* Y1484D02* X1601D01* X1500Y1394D02* Y1000D01* X1426Y1132D02* X1818D01* X1823Y1114D02* X1819Y1118D01* X1818Y1196D02* X1426D01* Y1204D02* X1818D01* X1784Y886D02* Y859D01* X1793Y850D02* X1784Y859D01* X1818Y1152D02* X1426D01* Y1156D02* X1818D01* X1829Y877D02* Y886D01* X1820Y868D02* X1784D01* X1818Y1136D02* X1426D01* Y1144D02* X1818D01* X1793Y850D02* X1829D01* X1749D02* X1731D01* X1818Y1192D02* X1426D01* Y1188D02* X1818D01* X1936Y894D02* X1980D01* Y877D02* X1936D01* X1818Y1184D02* X1426D01* Y1180D02* X1818D01* X1829Y886D02* X1820Y894D01* X1829Y877D02* X1820Y868D01* X1818Y1124D02* X1426D01* Y1116D02* X1820D01* X1793Y894D02* X1784Y886D01* X1793Y894D02* X1820D01* X1818Y1148D02* X1426D01* Y1160D02* X1818D01* X1740Y850D02* Y921D01* X1731D02* X1740D01* X1818Y1164D02* X1426D01* X1500Y859D02* X1509Y850D01* X1426Y1128D02* X1818D01* Y1140D02* X1426D01* X1509Y894D02* X1500Y886D01* X1509Y894D02* X1536D01* X1426Y1220D02* X1818D01* Y1208D02* X1426D01* X1571Y886D02* Y859D01* Y886D02* X1580Y894D01* X1426Y1248D02* X1818D01* Y1288D02* X1426D01* X1818Y1292D02* X1426D01* X1606Y1437D02* X1602Y1441D01* X1601Y1452D02* X1426D01* Y1456D02* X1601D01* X1426Y1340D02* X1818D01* Y1328D02* X1426D01* X1601Y1572D02* X1426D01* X1601Y1576D02* X1426D01* Y1568D02* X1601D01* X1426Y1564D02* X1601D01* X1426Y1316D02* X1818D01* X1426Y1320D02* X1818D01* Y1324D02* X1426D01* X1441Y1394D02* Y1472D01* X1601Y1468D02* X1426D01* Y1440D02* X1602D01* X1426Y1228D02* X1818D01* Y1224D02* X1426D01* X1607Y894D02* X1580D01* X1850Y1000D02* X1500D01* X1616Y886D02* X1607Y894D01* X1616Y859D02* X1607Y850D01* X1580D01* X1571Y859D01* X1426Y980D02* X7834D01* X7835Y965D02* Y4972D01* X1425D01* X1426Y4968D02* X7834D01* X7756Y4896D02* X7834D01* Y4860D02* X7781D01* X7834Y4900D02* X7752D01* X7748Y4904D02* X7834D01* X7781Y4864D02* X7834D01* Y4868D02* X7781D01* X7834Y4908D02* X7744D01* X7740Y4937D02* X7799Y4878D01* X7834Y4948D02* X1426D01* Y4944D02* X7834D01* X7768Y4884D02* X7834D01* Y4880D02* X7772D01* X7834Y4940D02* X1426D01* Y4936D02* X7834D01* X7780Y4870D02* X7778Y4873D01* X7781Y4564D02* X7834D01* X7781Y4560D02* X7834D01* X7781Y4556D02* X7834D01* Y4552D02* X7781D01* X7834Y4548D02* X7781D01* Y4540D02* X7834D01* X7781Y4544D02* X7834D01* Y4536D02* X7781D01* X7834Y4532D02* X7781D01* Y4524D02* X7834D01* X7781Y4528D02* X7834D01* Y4520D02* X7781D01* X7834Y4516D02* X7781D01* X7834Y4512D02* X7781D01* Y4508D02* X7834D01* X7781Y4504D02* X7834D01* Y4480D02* X7781D01* X7834Y4476D02* X7781D01* Y4468D02* X7834D01* X7781Y4472D02* X7834D01* X7781Y4500D02* X7834D01* X7781Y4496D02* X7834D01* X7781Y4492D02* X7834D01* Y4488D02* X7781D01* X7834Y4484D02* X7781D01* Y4464D02* X7834D01* X7781Y4460D02* X7834D01* X7781Y4456D02* X7834D01* Y4448D02* X7781D01* X7834Y4452D02* X7781D01* Y4444D02* X7834D01* X7781Y4440D02* X7834D01* Y4416D02* X7781D01* X7834Y4412D02* X7781D01* Y4404D02* X7834D01* X7781Y4408D02* X7834D01* X7781Y4436D02* X7834D01* X7781Y4432D02* X7834D01* X7781Y4428D02* X7834D01* Y4424D02* X7781D01* X7834Y4420D02* X7781D01* Y4400D02* X7834D01* X7781Y4396D02* X7834D01* X7781Y4392D02* X7834D01* Y4384D02* X7781D01* X7834Y4388D02* X7781D01* Y4380D02* X7834D01* X7781Y4376D02* X7834D01* Y4372D02* X7781D01* X7834Y4368D02* X7781D01* X7834Y4364D02* X7781D01* Y4360D02* X7834D01* X7781Y4356D02* X7834D01* Y4348D02* X7781D01* X7834Y4352D02* X7781D01* Y4344D02* X7834D01* X7781Y4340D02* X7834D01* Y4336D02* X7781D01* X7834Y4332D02* X7781D01* X7834Y4328D02* X7781D01* X7834Y4324D02* X7781D01* X7834Y4320D02* X7781D01* Y4312D02* X7834D01* X7781Y4316D02* X7834D01* Y4308D02* X7781D01* X7834Y4304D02* X7781D01* X7834Y4300D02* X7781D01* Y4296D02* X7834D01* X7781Y4292D02* X7834D01* Y4284D02* X7781D01* X7834Y4288D02* X7781D01* Y4280D02* X7834D01* X7781Y4276D02* X7834D01* Y4272D02* X7781D01* X7834Y4268D02* X7781D01* X7834Y4264D02* X7781D01* X7834Y4260D02* X7781D01* X7834Y4256D02* X7781D01* Y4248D02* X7834D01* X7781Y4252D02* X7834D01* Y4244D02* X7781D01* X7834Y4240D02* X7781D01* X7834Y4236D02* X7781D01* Y4232D02* X7834D01* X7781Y4228D02* X7834D01* Y4180D02* X7781D01* X7834Y4176D02* X7781D01* X7834Y4172D02* X7781D01* Y4168D02* X7834D01* X7781Y4164D02* X7834D01* Y4188D02* X7781D01* X7834Y4184D02* X7781D01* Y4192D02* X7834D01* X7781Y4196D02* X7834D01* Y4204D02* X7781D01* X7834Y4200D02* X7781D01* Y4208D02* X7834D01* X7781Y4212D02* X7834D01* Y4216D02* X7781D01* X7834Y4220D02* X7781D01* X7834Y4224D02* X7781D01* Y4160D02* X7834D01* X7781Y4156D02* X7834D01* X7781Y4152D02* X7834D01* Y4148D02* X7781D01* X7834Y4144D02* X7781D01* Y4136D02* X7834D01* X7781Y4140D02* X7834D01* Y4132D02* X7781D01* X7834Y4128D02* X7781D01* Y4124D02* X7834D01* X7781Y4120D02* X7834D01* X7781Y4116D02* X7834D01* Y4108D02* X7781D01* X7834Y4112D02* X7781D01* X7834Y4100D02* X7781D01* X7834Y4104D02* X7781D01* Y4096D02* X7834D01* X7781Y4092D02* X7834D01* X7781Y4088D02* X7834D01* Y4084D02* X7781D01* X7834Y4080D02* X7781D01* Y4072D02* X7834D01* X7781Y4076D02* X7834D01* Y4012D02* X7781D01* X7834Y4008D02* X7781D01* Y4016D02* X7834D01* X7781Y4020D02* X7834D01* Y4068D02* X7781D01* X7834Y4064D02* X7781D01* Y4060D02* X7834D01* X7781Y4056D02* X7834D01* X7781Y4052D02* X7834D01* Y4044D02* X7781D01* X7834Y4048D02* X7781D01* Y4040D02* X7834D01* X7781Y4036D02* X7834D01* Y4032D02* X7781D01* X7834Y4028D02* X7781D01* X7834Y4024D02* X7781D01* Y3960D02* X7834D01* X7781Y3964D02* X7834D01* X7781Y3968D02* X7834D01* Y3972D02* X7781D01* X7834Y3976D02* X7781D01* Y3984D02* X7834D01* X7781Y3980D02* X7834D01* Y3988D02* X7781D01* X7834Y3992D02* X7781D01* X7834Y3996D02* X7781D01* Y4000D02* X7834D01* X7781Y4004D02* X7834D01* Y3956D02* X7781D01* X7834Y3952D02* X7781D01* Y3944D02* X7834D01* X7781Y3948D02* X7834D01* Y3940D02* X7781D01* X7834Y3936D02* X7781D01* Y3932D02* X7834D01* X7781Y3928D02* X7834D01* X7781Y3924D02* X7834D01* Y3916D02* X7781D01* X7834Y3920D02* X7781D01* Y3912D02* X7834D01* X7781Y3908D02* X7834D01* Y3904D02* X7781D01* X7834Y3900D02* X7781D01* X7834Y3896D02* X7781D01* X7834Y3796D02* X7781D01* X7834Y3800D02* X7781D01* Y3808D02* X7834D01* X7781Y3804D02* X7834D01* Y3812D02* X7781D01* X7834Y3816D02* X7781D01* X7834Y3820D02* X7781D01* Y3824D02* X7834D01* X7781Y3828D02* X7834D01* Y3876D02* X7781D01* X7834Y3880D02* X7781D01* X7834Y3884D02* X7781D01* Y3888D02* X7834D01* X7781Y3892D02* X7834D01* Y3852D02* X7781D01* X7834Y3856D02* X7781D01* Y3864D02* X7834D01* X7781Y3860D02* X7834D01* Y3868D02* X7781D01* X7834Y3872D02* X7781D01* Y3848D02* X7834D01* X7781Y3844D02* X7834D01* Y3840D02* X7781D01* X7834Y3836D02* X7781D01* X7834Y3832D02* X7781D01* Y3792D02* X7834D01* X7781Y3788D02* X7834D01* X7781Y3784D02* X7834D01* Y3780D02* X7781D01* X7834Y3776D02* X7781D01* Y3768D02* X7834D01* X7781Y3772D02* X7834D01* Y3764D02* X7781D01* X7834Y3760D02* X7781D01* Y3756D02* X7834D01* X7781Y3752D02* X7834D01* X7781Y3748D02* X7834D01* Y3740D02* X7781D01* X7834Y3744D02* X7781D01* Y3736D02* X7834D01* X7781Y3732D02* X7834D01* X7781Y3728D02* X7834D01* X7781Y3724D02* X7834D01* X7781Y3720D02* X7834D01* Y3716D02* X7781D01* X7834Y3712D02* X7781D01* Y3704D02* X7834D01* X7781Y3708D02* X7834D01* Y3700D02* X7781D01* X7834Y3696D02* X7781D01* Y3692D02* X7834D01* X7781Y3688D02* X7834D01* X7781Y3684D02* X7834D01* Y3676D02* X7781D01* X7834Y3680D02* X7781D01* X7834Y3668D02* X7781D01* X7834Y3672D02* X7781D01* Y3664D02* X7834D01* X7781Y3660D02* X7834D01* X7781Y3656D02* X7834D01* Y3652D02* X7781D01* X7834Y3648D02* X7781D01* Y3640D02* X7834D01* X7781Y3644D02* X7834D01* Y3636D02* X7781D01* X7834Y3632D02* X7781D01* Y3628D02* X7834D01* X7781Y3624D02* X7834D01* X7781Y3620D02* X7834D01* Y3612D02* X7781D01* X7834Y3616D02* X7781D01* Y3608D02* X7834D01* X7781Y3604D02* X7834D01* Y3600D02* X7781D01* X7834Y3596D02* X7781D01* X7834Y3592D02* X7781D01* Y3584D02* X7834D01* X7781Y3588D02* X7834D01* Y3580D02* X7781D01* X7834Y3576D02* X7781D01* Y3568D02* X7834D01* X7781Y3572D02* X7834D01* Y3524D02* X7781D01* X7834Y3520D02* X7781D01* Y3516D02* X7834D01* X7781Y3512D02* X7834D01* X7781Y3564D02* X7834D01* X7781Y3560D02* X7834D01* X7781Y3556D02* X7834D01* Y3548D02* X7781D01* X7834Y3552D02* X7781D01* Y3544D02* X7834D01* X7781Y3540D02* X7834D01* Y3536D02* X7781D01* X7834Y3532D02* X7781D01* X7834Y3528D02* X7781D01* Y3508D02* X7834D01* X7781Y3504D02* X7834D01* X7781Y3500D02* X7834D01* Y3496D02* X7781D01* X7834Y3492D02* X7781D01* Y3484D02* X7834D01* X7781Y3488D02* X7834D01* Y3480D02* X7781D01* X7834Y3476D02* X7781D01* X7834Y3472D02* X7781D01* Y3468D02* X7834D01* X7781Y3464D02* X7834D01* Y3456D02* X7781D01* X7834Y3460D02* X7781D01* Y3452D02* X7834D01* X7781Y3448D02* X7834D01* Y3444D02* X7781D01* X7834Y3440D02* X7781D01* X7834Y3436D02* X7781D01* Y3428D02* X7834D01* X7781Y3432D02* X7834D01* Y3424D02* X7781D01* X7834Y3420D02* X7781D01* Y3372D02* X7834D01* X7781Y3376D02* X7834D01* X7781Y3380D02* X7834D01* Y3384D02* X7781D01* X7834Y3388D02* X7781D01* Y3396D02* X7834D01* X7781Y3392D02* X7834D01* Y3400D02* X7781D01* X7834Y3404D02* X7781D01* Y3408D02* X7834D01* X7781Y3412D02* X7834D01* X7781Y3416D02* X7834D01* Y3368D02* X7781D01* X7834Y3364D02* X7781D01* Y3360D02* X7834D01* X7781Y3356D02* X7834D01* X7781Y3352D02* X7834D01* Y3344D02* X7781D01* X7834Y3348D02* X7781D01* Y3324D02* X7834D01* X7781Y3320D02* X7834D01* Y3316D02* X7781D01* X7834Y3312D02* X7781D01* X7834Y3308D02* X7781D01* Y3268D02* X7834D01* X7781Y3264D02* X7834D01* X7781Y3260D02* X7834D01* Y3256D02* X7781D01* X7834Y3252D02* X7781D01* X7834Y3272D02* X7781D01* X7834Y3276D02* X7781D01* Y3284D02* X7834D01* X7781Y3280D02* X7834D01* Y3288D02* X7781D01* X7834Y3292D02* X7781D01* X7834Y3296D02* X7781D01* Y3300D02* X7834D01* X7781Y3304D02* X7834D01* Y3328D02* X7781D01* X7834Y3332D02* X7781D01* Y3340D02* X7834D01* X7781Y3336D02* X7834D01* X7781Y3188D02* X7834D01* X7781Y3192D02* X7834D01* Y3196D02* X7781D01* X7834Y3200D02* X7781D01* X7834Y3204D02* X7781D01* Y3244D02* X7834D01* X7781Y3248D02* X7834D01* Y3240D02* X7781D01* X7834Y3236D02* X7781D01* Y3232D02* X7834D01* X7781Y3228D02* X7834D01* X7781Y3224D02* X7834D01* Y3216D02* X7781D01* X7834Y3220D02* X7781D01* Y3212D02* X7834D01* X7781Y3208D02* X7834D01* Y3184D02* X7781D01* X7834Y3180D02* X7781D01* Y3172D02* X7834D01* X7781Y3176D02* X7834D01* Y3160D02* X7781D01* X7834Y3164D02* X7781D01* X7834Y3168D02* X7781D01* X7780Y3157D02* Y4870D01* X7736Y4916D02* X7834D01* Y4912D02* X7740D01* X7799Y4878D02* Y4760D01* X7834Y4796D02* X7781D01* Y4792D02* X7834D01* X7781Y4788D02* X7834D01* Y4780D02* X7781D01* X7834Y4784D02* X7781D01* Y4776D02* X7834D01* X7781Y4772D02* X7834D01* X7781Y4768D02* X7834D01* Y4764D02* X7781D01* X7834Y4760D02* X7781D01* Y4720D02* X7834D01* X7781Y4716D02* X7834D01* Y4712D02* X7781D01* X7834Y4708D02* X7781D01* X7834Y4704D02* X7781D01* X7834Y4700D02* X7781D01* X7834Y4696D02* X7781D01* Y4688D02* X7834D01* X7781Y4692D02* X7834D01* Y4684D02* X7781D01* X7834Y4680D02* X7781D01* X7834Y4676D02* X7781D01* Y4668D02* X7834D01* X7781Y4672D02* X7834D01* Y4664D02* X7781D01* X7834Y4660D02* X7781D01* Y4652D02* X7834D01* X7781Y4656D02* X7834D01* Y4648D02* X7781D01* X7834Y4644D02* X7781D01* X7834Y4640D02* X7781D01* Y4636D02* X7834D01* X7781Y4632D02* X7834D01* Y4624D02* X7781D01* X7834Y4628D02* X7781D01* Y4620D02* X7834D01* X7781Y4616D02* X7834D01* Y4612D02* X7781D01* X7834Y4608D02* X7781D01* X7834Y4604D02* X7781D01* X7834Y4600D02* X7781D01* X7834Y4596D02* X7781D01* Y4588D02* X7834D01* X7781Y4592D02* X7834D01* Y4584D02* X7781D01* X7834Y4580D02* X7781D01* X7834Y4576D02* X7781D01* Y4572D02* X7834D01* X7781Y4568D02* X7834D01* X7799Y4587D02* Y4760D01* X7781Y4732D02* X7834D01* Y4724D02* X7781D01* X7834Y4728D02* X7781D01* Y4736D02* X7834D01* X7781Y4740D02* X7834D01* Y4748D02* X7781D01* X7834Y4744D02* X7781D01* Y4752D02* X7834D01* X7781Y4756D02* X7834D01* Y4932D02* X1426D01* X1425Y4972D02* Y965D01* X7835D01* X7834Y1000D02* X1426D01* Y1004D02* X7834D01* X7730Y1134D02* X7717D01* X7750D02* X7764D01* X7834Y1040D02* X1426D01* Y1044D02* X7834D01* X7764Y1181D02* Y1167D01* Y1181D02* X7750D01* X7834Y996D02* X1426D01* Y992D02* X7834D01* X7764Y1147D02* Y1134D01* X7780Y1120D02* X7776Y1116D01* X7834Y1016D02* X1426D01* Y1012D02* X7834D01* X7781Y1184D02* X7834D01* Y1148D02* X7781D01* X7834Y1088D02* X1426D01* Y1084D02* X7834D01* X7781Y1172D02* X7834D01* Y1168D02* X7781D01* X7834Y1036D02* X1426D01* Y1056D02* X7834D01* X7781Y1156D02* X7834D01* Y1152D02* X7781D01* X7834Y1024D02* X1426D01* Y1020D02* X7834D01* X7717Y1134D02* Y1147D01* X7740Y1000D02* X7449D01* X7415Y1136D02* X7410Y1140D01* X7404Y1147D01* Y1167D02* X7407Y1173D01* X7415Y1179D01* X7435D02* X7440Y1175D01* X7446Y1167D01* Y1147D02* X7443Y1142D01* X7435Y1136D01* X7651Y1215D02* X7646Y1218D01* X7640Y1226D01* Y1246D02* X7644Y1251D01* X7651Y1257D01* X7671D02* X7677Y1254D01* X7683Y1246D01* Y1226D02* X7679Y1221D01* X7671Y1215D01* X7717Y1167D02* Y1181D01* X7730D01* X7781Y1208D02* X7834D01* X7781Y1204D02* X7834D01* X7781Y1200D02* X7834D01* Y1196D02* X7781D01* X7834Y1060D02* X1426D01* Y1064D02* X7834D01* X7799Y1059D02* Y1197D01* X7781Y1212D02* X7834D01* X7781Y1216D02* X7834D01* Y1220D02* X7781D01* X7834Y1224D02* X7781D01* X7834Y1228D02* X7781D01* Y1236D02* X7834D01* X7781Y1232D02* X7834D01* X7781Y1244D02* X7834D01* X7781Y1240D02* X7834D01* Y1248D02* X7781D01* X7834Y1252D02* X7781D01* X7834Y1256D02* X7781D01* Y1260D02* X7834D01* X7781Y1264D02* X7834D01* Y1288D02* X7781D01* X7834Y1292D02* X7781D01* Y1284D02* X7834D01* X7781Y1280D02* X7834D01* Y1276D02* X7781D01* X7834Y1272D02* X7781D01* X7834Y1268D02* X7781D01* X7834Y1296D02* X7781D01* X7834Y1300D02* X7781D01* Y1308D02* X7834D01* X7781Y1304D02* X7834D01* Y1312D02* X7781D01* X7834Y1316D02* X7781D01* X7834Y1320D02* X7781D01* Y1324D02* X7834D01* X7781Y1328D02* X7834D01* Y1376D02* X7781D01* X7834Y1380D02* X7781D01* X7834Y1384D02* X7781D01* Y1388D02* X7834D01* X7781Y1392D02* X7834D01* Y1368D02* X7781D01* X7834Y1372D02* X7781D01* Y1364D02* X7834D01* X7781Y1360D02* X7834D01* Y1352D02* X7781D01* X7834Y1356D02* X7781D01* Y1348D02* X7834D01* X7781Y1344D02* X7834D01* Y1340D02* X7781D01* X7834Y1336D02* X7781D01* X7834Y1332D02* X7781D01* X7799Y1350D02* Y1197D01* X7834Y1108D02* X1426D01* Y1104D02* X7834D01* X7781Y1144D02* X7834D01* Y1140D02* X7781D01* X7834Y1008D02* X1426D01* Y988D02* X7834D01* X8024Y1000D02* X8324Y1300D01* Y1100D02* X8224Y1000D01* X8324Y900D01* X8424Y1000D01* X8324Y1100D01* Y800D02* X8524Y1000D01* X8324Y1200D01* X8124Y1000D01* X8324Y800D01* Y575D02* Y1425D01* Y1300D02* X8624Y1000D01* X8749D02* X7899D01* X8024D02* X8324Y700D01* X8624Y1000D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7834Y4852D02* X7781D01* X7834Y4856D02* X7781D01* Y4848D02* X7834D01* X7781Y4844D02* X7834D01* Y4820D02* X7781D01* X7834Y4816D02* X7781D01* Y4808D02* X7834D01* X7781Y4812D02* X7834D01* Y4804D02* X7781D01* X7834Y4800D02* X7781D01* Y4824D02* X7834D01* X7781Y4828D02* X7834D01* Y4832D02* X7781D01* X7834Y4836D02* X7781D01* X7834Y4840D02* X7781D01* X7449Y4937D02* X7740D01* X7834Y4956D02* X1426D01* Y4960D02* X7834D01* X7764Y4888D02* X7834D01* Y4892D02* X7760D01* X7834Y4952D02* X1426D01* Y4964D02* X7834D01* X7799Y5037D02* Y5887D01* Y5662D02* X7999Y5462D01* X7799Y5262D01* X7599Y5462D01* X7799Y5662D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* X7499Y5462D01* X7374D02* X8224D01* X8324Y5362D02* Y4512D01* Y4737D02* X8124Y4937D01* X8324Y5137D01* X8524Y4937D01* X8324Y4737D01* Y5237D02* X8624Y4937D01* X8324Y4637D01* X8024Y4937D01* X8324Y5237D01* X7799Y5850D02* X1500D01* Y5887D02* Y5037D01* X1826Y4892D02* X1426D01* X1826Y4888D02* X1426D01* Y4880D02* X1826D01* X1426Y4884D02* X1826D01* Y4876D02* X1426D01* X1826Y4872D02* X1426D01* Y4864D02* X1826D01* X1426Y4868D02* X1826D01* Y4896D02* X1426D01* X1826Y4900D02* X1426D01* X1826Y4904D02* X1426D01* Y4912D02* X1826D01* X1426Y4908D02* X1826D01* X1426Y4916D02* X1829D01* X1827Y4913D02* X1831Y4917D01* X1826Y4860D02* X1426D01* Y4856D02* X1826D01* X1426Y4852D02* X1826D01* Y4844D02* X1426D01* X1826Y4848D02* X1426D01* Y4840D02* X1826D01* X1426Y4836D02* X1826D01* X1426Y4832D02* X1826D01* Y4820D02* X1426D01* X1826Y4816D02* X1426D01* Y4824D02* X1826D01* X1426Y4828D02* X1826D01* X1500Y4937D02* Y4543D01* X1426Y4504D02* X1826D01* X1426Y4508D02* X1826D01* Y4544D02* X1426D01* X1826Y4540D02* X1426D01* Y4548D02* X1826D01* X1426Y4552D02* X1826D01* Y4556D02* X1426D01* X1826Y4560D02* X1426D01* X1826Y4564D02* X1426D01* Y4576D02* X1826D01* X1426Y4580D02* X1826D01* X1426Y4584D02* X1826D01* Y4592D02* X1426D01* X1826Y4588D02* X1426D01* Y4596D02* X1826D01* X1426Y4600D02* X1826D01* Y4456D02* X1426D01* X1826Y4460D02* X1426D01* X1826Y4464D02* X1426D01* Y4468D02* X1826D01* X1426Y4472D02* X1826D01* Y4480D02* X1426D01* X1826Y4476D02* X1426D01* Y4484D02* X1826D01* X1426Y4488D02* X1826D01* Y4492D02* X1426D01* X1826Y4496D02* X1426D01* X1826Y4500D02* X1426D01* Y4512D02* X1826D01* X1426Y4516D02* X1826D01* X1426Y4520D02* X1826D01* Y4528D02* X1426D01* X1826Y4524D02* X1426D01* Y4532D02* X1826D01* X1426Y4536D02* X1826D01* X1441Y4543D02* Y4465D01* X1426Y4440D02* X1826D01* X1426Y4444D02* X1826D01* Y4448D02* X1426D01* X1826Y4452D02* X1426D01* Y4436D02* X1826D01* X1426Y4432D02* X1826D01* X1426Y4428D02* X1826D01* Y4424D02* X1426D01* X1826Y4420D02* X1426D01* Y4412D02* X1826D01* X1426Y4416D02* X1826D01* Y4408D02* X1426D01* X1826Y4404D02* X1426D01* Y4400D02* X1826D01* X1426Y4396D02* X1826D01* X1426Y4392D02* X1826D01* X1426Y4264D02* X1826D01* X1426Y4268D02* X1826D01* X1426Y4272D02* X1826D01* Y4276D02* X1426D01* X1826Y4280D02* X1426D01* Y4288D02* X1826D01* X1426Y4284D02* X1826D01* Y4292D02* X1426D01* X1826Y4296D02* X1426D01* Y4300D02* X1826D01* X1426Y4304D02* X1826D01* X1426Y4308D02* X1826D01* Y4324D02* X1426D01* X1826Y4320D02* X1426D01* Y4312D02* X1826D01* X1426Y4316D02* X1826D01* Y4260D02* X1426D01* X1826Y4256D02* X1426D01* Y4248D02* X1826D01* X1426Y4252D02* X1826D01* Y4196D02* X1426D01* X1826Y4192D02* X1426D01* Y4184D02* X1826D01* X1426Y4188D02* X1826D01* Y4172D02* X1426D01* X1826Y4176D02* X1426D01* Y4180D02* X1826D01* X2148Y3980D02* X2169D01* Y3959D02* Y3980D01* X1826Y4164D02* X1426D01* X1826Y4168D02* X1426D01* Y4160D02* X1826D01* X1426Y4156D02* X1826D01* X1426Y4152D02* X1826D01* Y4204D02* X1426D01* X1826Y4200D02* X1426D01* Y4208D02* X1826D01* X1426Y4212D02* X1826D01* Y4216D02* X1426D01* X1826Y4220D02* X1426D01* X1826Y4224D02* X1426D01* Y4232D02* X1826D01* X1426Y4228D02* X1826D01* Y4236D02* X1426D01* X1826Y4240D02* X1426D01* Y4244D02* X1826D01* X2106Y3980D02* X2128D01* X2106D02* Y3959D01* X1826Y4052D02* X1426D01* X1826Y4056D02* X1426D01* Y4024D02* X1826D01* X1426Y4028D02* X1826D01* X1426Y4032D02* X1826D01* Y4040D02* X1426D01* X1826Y4036D02* X1426D01* X1701Y3843D02* X1705Y3847D01* X1826Y3916D02* X1426D01* Y3912D02* X1826D01* X1426Y3908D02* X1826D01* X1426Y3904D02* X1826D01* Y3896D02* X1426D01* X1826Y3900D02* X1426D01* X1700Y3816D02* X1426D01* Y3820D02* X1700D01* X1904Y3745D02* X1896Y3750D01* X1904Y3745D02* X1909Y3736D01* X1826Y3932D02* X1426D01* Y3992D02* X1826D01* X1426Y3988D02* X1826D01* X1701Y3843D02* Y3681D01* X1426Y3548D02* X1873D01* X1426Y3552D02* X1873D01* Y3544D02* X1426D01* X1873Y3536D02* X1426D01* X1873Y3540D02* X1426D01* X1700Y3712D02* X1426D01* Y3716D02* X1700D01* X1426Y3668D02* X1873D01* Y3672D02* X1426D01* X1827Y3847D02* Y4913D01* X1826Y4732D02* X1426D01* Y4728D02* X1826D01* X1426Y4724D02* X1826D01* Y4664D02* X1426D01* X1826Y4660D02* X1426D01* Y4652D02* X1826D01* X1426Y4656D02* X1826D01* Y4572D02* X1426D01* X1826Y4568D02* X1426D01* X1441Y4543D02* X1500D01* X1826Y4376D02* X1426D01* X1826Y4380D02* X1426D01* Y4388D02* X1826D01* X1426Y4384D02* X1826D01* Y4372D02* X1426D01* X1826Y4368D02* X1426D01* X1826Y4364D02* X1426D01* Y4356D02* X1826D01* X1426Y4360D02* X1826D01* Y4348D02* X1426D01* X1826Y4352D02* X1426D01* Y4344D02* X1826D01* X1426Y4340D02* X1826D01* Y4336D02* X1426D01* X1826Y4332D02* X1426D01* X1826Y4328D02* X1426D01* Y4604D02* X1826D01* X1426Y4608D02* X1826D01* X1426Y4612D02* X1826D01* Y4616D02* X1426D01* X1826Y4620D02* X1426D01* Y4628D02* X1826D01* X1426Y4624D02* X1826D01* Y4648D02* X1426D01* X1826Y4644D02* X1426D01* X1826Y4640D02* X1426D01* Y4636D02* X1826D01* X1426Y4632D02* X1826D01* X1850Y4937D02* X1500D01* X1426Y4796D02* X1826D01* Y4756D02* X1426D01* X1826Y4752D02* X1426D01* Y4744D02* X1826D01* X1426Y4748D02* X1826D01* Y4740D02* X1426D01* X1826Y4736D02* X1426D01* Y4720D02* X1826D01* X1426Y4716D02* X1826D01* Y4712D02* X1426D01* X1826Y4708D02* X1426D01* X1826Y4704D02* X1426D01* Y4696D02* X1826D01* X1426Y4700D02* X1826D01* Y4692D02* X1426D01* X1826Y4688D02* X1426D01* Y4680D02* X1826D01* X1426Y4684D02* X1826D01* Y4676D02* X1426D01* X1826Y4672D02* X1426D01* X1826Y4668D02* X1426D01* Y4760D02* X1826D01* X1426Y4764D02* X1826D01* Y4768D02* X1426D01* X1826Y4772D02* X1426D01* X1826Y4776D02* X1426D01* Y4784D02* X1826D01* X1426Y4780D02* X1826D01* Y4788D02* X1426D01* X1826Y4792D02* X1426D01* Y4800D02* X1826D01* X1426Y4804D02* X1826D01* Y4812D02* X1426D01* X1826Y4808D02* X1426D01* Y4928D02* X7834D01* X7776Y4876D02* X7834D01* Y4872D02* X7780D01* X7834Y4924D02* X1426D01* Y4920D02* X7834D01* X7778Y4873D02* X7735Y4916D01* X7732Y4917D01* X1831D01* X1925Y5462D02* X1075D01* X1200D02* X1500Y5762D01* X1800Y5462D01* X1500Y5162D01* X1200Y5462D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* Y5379D01* X3296Y5370D01* X3358D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* X3509Y5370D02* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3474Y5379D02* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4221D01* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5397D02* X4398Y5406D01* X4407Y5415D01* Y5432D01* X4425Y5441D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4603Y5406D02* X4567D01* Y5370D02* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5432D02* X4683Y5441D01* X4647D01* X4638Y5432D01* X4647Y5406D02* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647Y5406D02* X4638Y5415D01* Y5432D01* X4621Y5441D02* X4567D01* Y5370D01* X4994D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5370D02* Y5441D01* X5836D01* X5845Y5432D01* X5871Y5415D02* X5862Y5406D01* X5845Y5415D02* Y5432D01* Y5415D02* X5836Y5406D01* X5791D01* X5862D02* Y5379D01* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5871D01* X5934D02* Y5397D01* X5951Y5370D01* X5960Y5379D01* Y5397D01* Y5379D02* X5969Y5370D01* X5987Y5397D01* Y5415D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6147D02* X6200D01* X6218D02* X6262D01* X6271Y5415D01* Y5432D01* X6262Y5441D01* X6218D01* Y5370D01* X6360Y5379D02* X6369Y5370D01* X6405D01* Y5406D01* X6396Y5415D01* X6369D01* X6307Y5441D02* X6316D01* Y5370D01* X6325D02* X6307D01* X6360Y5379D02* Y5388D01* X6369Y5397D01* X6405D01* X6431Y5370D02* Y5415D01* Y5406D02* X6440Y5415D01* X6467D01* X6476Y5406D01* Y5370D01* X6502Y5388D02* X6538D01* X6547Y5397D01* Y5406D01* X6538Y5415D01* X6511D01* X6502Y5406D01* Y5379D01* X6511Y5370D01* X6547D01* X6787Y5415D02* X6831D01* X6840Y5406D01* Y5379D01* X6831Y5370D01* X6796D01* X6787Y5379D01* X6680Y5370D02* X6662Y5397D01* Y5415D01* X6680Y5441D01* X6742Y5432D02* Y5379D01* X6716Y5406D02* X6769D01* X6787Y5415D02* Y5441D01* X6840D01* X6858D02* X6867Y5406D01* X6885Y5370D01* X6902Y5406D01* X6911Y5441D01* X6947D02* X6965Y5415D01* Y5397D01* X6947Y5370D01* X6511Y4660D02* X4544D01* X4543Y4673D02* Y2429D01* X5547D01* X5552Y2416D02* X5574D01* X5552Y2420D02* X5574D01* X5579Y2429D02* X5575Y2425D01* X5552Y2424D02* X5574D01* Y2404D02* X5552D01* X5574Y2400D02* X5552D01* Y2408D02* X5574D01* X5552Y2412D02* X5574D01* X5575Y2425D02* Y2091D01* X5197D01* X5198Y2112D02* X5574D01* Y2120D02* X5552D01* X5574Y2100D02* X5198D01* Y2104D02* X5574D01* X5551Y2118D02* Y2425D01* X5547Y2429D01* X5549Y2428D02* X5577D01* X5579Y2429D02* X6638D01* X6637Y2440D02* X4544D01* Y2444D02* X6637D01* X6614Y2457D02* Y2705D01* X6732D01* Y2457D01* X6736Y2453D02* X6732Y2457D01* X6731Y2476D02* X6710D01* X6731Y2472D02* X6710D01* Y2464D02* X6731D01* X6710Y2468D02* X6731D01* X6710Y2480D02* X6731D01* X6710Y2484D02* X6731D01* X6710Y2488D02* X6731D01* Y2492D02* X6710D01* X6731Y2496D02* X6710D01* Y2504D02* X6731D01* X6710Y2500D02* X6731D01* Y2508D02* X6710D01* X6731Y2512D02* X6710D01* Y2516D02* X6731D01* X6710Y2520D02* X6731D01* X6710Y2524D02* X6731D01* Y2532D02* X6710D01* X6731Y2528D02* X6710D01* Y2536D02* X6731D01* X6710Y2540D02* X6731D01* Y2544D02* X6710D01* X6731Y2548D02* X6710D01* X6731Y2552D02* X6710D01* X6731Y2556D02* X6710D01* X6731Y2560D02* X6710D01* Y2568D02* X6731D01* X6710Y2564D02* X6731D01* Y2572D02* X6710D01* X6731Y2576D02* X6710D01* Y2580D02* X6731D01* X6710Y2584D02* X6731D01* X6710Y2588D02* X6731D01* Y2596D02* X6710D01* X6731Y2592D02* X6710D01* Y2600D02* X6731D01* X6710Y2604D02* X6731D01* Y2608D02* X6710D01* X6731Y2612D02* X6710D01* X6731Y2616D02* X6710D01* X6731Y2620D02* X6710D01* X6731Y2624D02* X6710D01* Y2628D02* X6731D01* X6710Y2632D02* X6731D01* X6710Y2636D02* X6731D01* Y2644D02* X6710D01* X6731Y2640D02* X6710D01* X6731Y2652D02* X6710D01* X6731Y2648D02* X6710D01* Y2656D02* X6731D01* X6710Y2660D02* X6731D01* Y2672D02* X6710D01* X6731Y2664D02* X6710D01* X6731Y2668D02* X6710D01* X6709Y2677D02* Y2429D01* X7189D01* X7188Y2440D02* X6710D01* X6615Y2468D02* X6637D01* X6615Y2464D02* X6637D01* Y2472D02* X6615D01* X6637Y2476D02* X6615D01* Y2480D02* X6637D01* X6615Y2484D02* X6637D01* X6615Y2488D02* X6637D01* Y2496D02* X6615D01* X6637Y2492D02* X6615D01* Y2500D02* X6637D01* X6615Y2504D02* X6637D01* X6615Y2508D02* X6637D01* X6615Y2512D02* X6637D01* X6615Y2516D02* X6637D01* Y2520D02* X6615D01* X6637Y2524D02* X6615D01* X6637Y2552D02* X6615D01* X6637Y2548D02* X6615D01* X6637Y2544D02* X6615D01* Y2540D02* X6637D01* X6615Y2536D02* X6637D01* Y2528D02* X6615D01* X6637Y2532D02* X6615D01* X6614Y2533D02* Y2512D01* X6593D01* X6573D02* X6551D01* Y2533D01* Y2553D02* Y2575D01* X6573D01* X6593D02* X6614D01* Y2553D01* X6615Y2568D02* X6637D01* X6615Y2564D02* X6637D01* Y2560D02* X6615D01* X6637Y2556D02* X6615D01* Y2572D02* X6637D01* X6615Y2576D02* X6637D01* X6615Y2580D02* X6637D01* Y2584D02* X6615D01* X6637Y2588D02* X6615D01* Y2596D02* X6637D01* X6615Y2592D02* X6637D01* Y2600D02* X6615D01* X6637Y2604D02* X6615D01* Y2608D02* X6637D01* X6615Y2612D02* X6637D01* X6615Y2616D02* X6637D01* Y2624D02* X6615D01* X6637Y2620D02* X6615D01* Y2628D02* X6637D01* X6615Y2632D02* X6637D01* Y2636D02* X6615D01* X6637Y2640D02* X6615D01* X6637Y2644D02* X6615D01* X6637Y2648D02* X6615D01* X6637Y2652D02* X6615D01* Y2660D02* X6637D01* X6615Y2656D02* X6637D01* X6642Y2681D02* X6705D01* X6709Y2677D01* X6731Y2696D02* X6615D01* Y2692D02* X6731D01* X6710Y2676D02* X6731D01* Y2680D02* X6707D01* X6731Y2700D02* X6615D01* X6731Y2704D02* X6615D01* X6640Y2680D02* X6615D01* Y2676D02* X6637D01* X6615Y2684D02* X6731D01* Y2688D02* X6615D01* X6638Y2677D02* X6642Y2681D01* X6637Y2672D02* X6615D01* Y2668D02* X6637D01* X6615Y2664D02* X6637D01* X6638Y2677D02* Y2429D01* X6637Y2448D02* X4544D01* X4566Y2456D02* X4544D01* Y2460D02* X4566D01* X4544Y2452D02* X6637D01* Y2436D02* X4544D01* X4567Y2457D02* Y4646D01* X4566Y4632D02* X4544D01* X4566Y4636D02* X4544D01* Y4628D02* X4566D01* X4544Y4624D02* X4566D01* X4544Y4620D02* X4566D01* X4544Y4616D02* X4566D01* Y4612D02* X4544D01* X4566Y4608D02* X4544D01* X4566Y4604D02* X4544D01* X4566Y4536D02* X4544D01* X4566Y4532D02* X4544D01* Y4540D02* X4566D01* X4544Y4544D02* X4566D01* X4544Y4548D02* X4566D01* X4544Y4552D02* X4566D01* Y4556D02* X4544D01* X4566Y4560D02* X4544D01* X4566Y4564D02* X4544D01* X4566Y4568D02* X4544D01* X4566Y4572D02* X4544D01* Y4576D02* X4566D01* X4544Y4580D02* X4566D01* X4544Y4584D02* X4566D01* Y4592D02* X4544D01* X4566Y4588D02* X4544D01* Y4596D02* X4566D01* X4544Y4600D02* X4566D01* X4567Y4646D02* X4571Y4650D01* X4566Y4640D02* X4544D01* Y4644D02* X4566D01* X4544Y4652D02* X6511D01* Y4648D02* X6487D01* X6511Y4664D02* X4544D01* X4543Y4673D02* X6512D01* Y4386D01* X6395Y4471D02* X6403Y4477D01* X6408Y4484D01* Y4504D02* X6403Y4513D01* X6395Y4518D01* X6375D02* X6367Y4512D01* X6362Y4504D01* Y4484D02* X6367Y4476D01* X6375Y4471D01* X6295Y4571D02* X6303Y4577D01* X6308Y4584D01* Y4604D02* X6303Y4613D01* X6295Y4618D01* X6275D02* X6267Y4612D01* X6262Y4604D01* Y4584D02* X6267Y4576D01* X6275Y4571D01* X6195Y4471D02* X6203Y4477D01* X6208Y4484D01* Y4504D02* X6203Y4513D01* X6195Y4518D01* X6175D02* X6167Y4512D01* X6162Y4504D01* Y4484D02* X6167Y4476D01* X6175Y4471D01* X6095Y4571D02* X6103Y4577D01* X6108Y4584D01* Y4604D02* X6103Y4613D01* X6095Y4618D01* X6075D02* X6067Y4612D01* X6062Y4604D01* Y4584D02* X6067Y4576D01* X6075Y4571D01* X5875D02* X5867Y4576D01* X5862Y4584D01* Y4604D02* X5867Y4612D01* X5875Y4618D01* X5895D02* X5903Y4613D01* X5908Y4604D01* Y4584D02* X5903Y4577D01* X5895Y4571D01* X5995Y4471D02* X6003Y4477D01* X6008Y4484D01* Y4504D02* X6003Y4513D01* X5995Y4518D01* X5975D02* X5967Y4512D01* X5962Y4504D01* Y4484D02* X5967Y4476D01* X5975Y4471D01* X5895Y4371D02* X5903Y4377D01* X5908Y4384D01* Y4404D02* X5903Y4413D01* X5895Y4418D01* X5875D02* X5867Y4412D01* X5862Y4404D01* Y4384D02* X5867Y4376D01* X5875Y4371D01* X5675D02* X5667Y4376D01* X5662Y4384D01* Y4404D02* X5667Y4412D01* X5675Y4418D01* X5695D02* X5703Y4413D01* X5708Y4404D01* Y4384D02* X5703Y4377D01* X5695Y4371D01* X5808Y4484D02* X5803Y4477D01* X5795Y4471D01* X5775D02* X5767Y4476D01* X5762Y4484D01* Y4504D02* X5767Y4512D01* X5775Y4518D01* X5795D02* X5803Y4513D01* X5808Y4504D01* X5695Y4571D02* X5703Y4577D01* X5708Y4584D01* Y4604D02* X5703Y4613D01* X5695Y4618D01* X5675D02* X5667Y4612D01* X5662Y4604D01* Y4584D02* X5667Y4576D01* X5675Y4571D01* X5475D02* X5467Y4576D01* X5462Y4584D01* Y4604D02* X5467Y4612D01* X5475Y4618D01* X5495D02* X5503Y4613D01* X5508Y4604D01* Y4584D02* X5503Y4577D01* X5495Y4571D01* X5595Y4471D02* X5603Y4477D01* X5608Y4484D01* Y4504D02* X5603Y4513D01* X5595Y4518D01* X5575D02* X5567Y4512D01* X5562Y4504D01* Y4484D02* X5567Y4476D01* X5575Y4471D01* X5445Y4421D02* X5453Y4427D01* X5458Y4434D01* Y4454D02* X5453Y4463D01* X5445Y4468D01* X5425D02* X5417Y4462D01* X5412Y4454D01* Y4434D02* X5417Y4426D01* X5425Y4421D01* X5295Y4371D02* X5303Y4377D01* X5308Y4384D01* Y4404D02* X5303Y4413D01* X5295Y4418D01* X5275D02* X5267Y4412D01* X5262Y4404D01* Y4384D02* X5267Y4376D01* X5275Y4371D01* X5245Y4421D02* X5253Y4427D01* X5258Y4434D01* Y4454D02* X5253Y4463D01* X5245Y4468D01* X5225D02* X5217Y4462D01* X5212Y4454D01* Y4434D02* X5217Y4426D01* X5225Y4421D01* X5275Y4571D02* X5267Y4576D01* X5262Y4584D01* Y4604D02* X5267Y4612D01* X5275Y4618D01* X5295D02* X5303Y4613D01* X5308Y4604D01* Y4584D02* X5303Y4577D01* X5295Y4571D01* X5095D02* X5103Y4577D01* X5108Y4584D01* Y4604D02* X5103Y4613D01* X5095Y4618D01* X5075D02* X5067Y4612D01* X5062Y4604D01* Y4584D02* X5067Y4576D01* X5075Y4571D01* X5045Y4421D02* X5053Y4427D01* X5058Y4434D01* Y4454D02* X5053Y4463D01* X5045Y4468D01* X5025D02* X5017Y4462D01* X5012Y4454D01* Y4434D02* X5017Y4426D01* X5025Y4421D01* X4908Y4484D02* X4903Y4477D01* X4895Y4471D01* X4875D02* X4867Y4476D01* X4862Y4484D01* Y4504D02* X4867Y4512D01* X4875Y4518D01* X4895D02* X4903Y4513D01* X4908Y4504D01* X4862Y4584D02* X4867Y4576D01* X4875Y4571D01* X4895D02* X4903Y4577D01* X4908Y4584D01* Y4604D02* X4903Y4613D01* X4895Y4618D01* X4875D02* X4867Y4612D01* X4862Y4604D01* X4725Y4521D02* X4717Y4526D01* X4712Y4534D01* Y4554D02* X4717Y4562D01* X4725Y4568D01* X4745D02* X4753Y4563D01* X4758Y4554D01* Y4534D02* X4753Y4527D01* X4745Y4521D01* X4825Y4421D02* X4817Y4426D01* X4812Y4434D01* Y4454D02* X4817Y4462D01* X4825Y4468D01* X4845D02* X4853Y4463D01* X4858Y4454D01* Y4434D02* X4853Y4427D01* X4845Y4421D01* X4795Y4371D02* X4803Y4377D01* X4808Y4384D01* Y4404D02* X4803Y4413D01* X4795Y4418D01* X4775D02* X4767Y4412D01* X4762Y4404D01* Y4384D02* X4767Y4376D01* X4775Y4371D01* X4695D02* X4703Y4377D01* X4708Y4384D01* Y4404D02* X4703Y4413D01* X4695Y4418D01* X4675D02* X4667Y4412D01* X4662Y4404D01* Y4384D02* X4667Y4376D01* X4675Y4371D01* X4566Y4264D02* X4544D01* X4566Y4268D02* X4544D01* Y4260D02* X4566D01* X4544Y4256D02* X4566D01* Y4232D02* X4544D01* X4566Y4228D02* X4544D01* Y4220D02* X4566D01* X4544Y4224D02* X4566D01* X4544Y4236D02* X4566D01* X4544Y4240D02* X4566D01* X4544Y4244D02* X4566D01* Y4248D02* X4544D01* X4566Y4252D02* X4544D01* Y4272D02* X4566D01* X4544Y4276D02* X4566D01* X4544Y4280D02* X4566D01* Y4288D02* X4544D01* X4566Y4284D02* X4544D01* Y4292D02* X4566D01* X4544Y4296D02* X4566D01* Y4320D02* X4544D01* X4566Y4324D02* X4544D01* Y4332D02* X4566D01* X4544Y4328D02* X4566D01* X4544Y4300D02* X4566D01* X4544Y4304D02* X4566D01* X4544Y4308D02* X4566D01* Y4312D02* X4544D01* X4566Y4316D02* X4544D01* Y4336D02* X4566D01* X4544Y4340D02* X4566D01* X4544Y4344D02* X4566D01* Y4352D02* X4544D01* X4566Y4348D02* X4544D01* Y4356D02* X4566D01* X4544Y4360D02* X4566D01* X4544Y4364D02* X4566D01* X4544Y4368D02* X4566D01* X4544Y4372D02* X4566D01* Y4376D02* X4544D01* X4566Y4380D02* X4544D01* Y4388D02* X4566D01* X4544Y4384D02* X4566D01* Y4392D02* X4544D01* X4566Y4396D02* X4544D01* X4566Y4400D02* X4544D01* Y4404D02* X4566D01* X4544Y4408D02* X4566D01* Y4416D02* X4544D01* X4566Y4412D02* X4544D01* Y4420D02* X4566D01* X4544Y4424D02* X4566D01* Y4428D02* X4544D01* X4566Y4432D02* X4544D01* X4566Y4436D02* X4544D01* X4566Y4440D02* X4544D01* X4566Y4444D02* X4544D01* Y4452D02* X4566D01* X4544Y4448D02* X4566D01* Y4456D02* X4544D01* X4566Y4460D02* X4544D01* X4566Y4464D02* X4544D01* Y4468D02* X4566D01* X4544Y4472D02* X4566D01* Y4480D02* X4544D01* X4566Y4476D02* X4544D01* Y4484D02* X4566D01* X4544Y4488D02* X4566D01* Y4492D02* X4544D01* X4566Y4496D02* X4544D01* X4566Y4500D02* X4544D01* X4566Y4504D02* X4544D01* X4566Y4508D02* X4544D01* Y4512D02* X4566D01* X4544Y4516D02* X4566D01* X4544Y4520D02* X4566D01* Y4528D02* X4544D01* X4566Y4524D02* X4544D01* X4360Y4017D02* X4339D01* Y3995D01* Y3975D02* Y3954D01* X4360D01* X4380D02* X4402D01* Y3975D01* Y3995D02* Y4017D01* X4380D01* X4544Y4004D02* X4566D01* X4544Y4000D02* X4566D01* X4544Y3996D02* X4566D01* Y3992D02* X4544D01* X4566Y3988D02* X4544D01* Y3980D02* X4566D01* X4544Y3984D02* X4566D01* Y3976D02* X4544D01* X4566Y3972D02* X4544D01* Y3968D02* X4566D01* X4544Y3964D02* X4566D01* X4544Y3960D02* X4566D01* Y3952D02* X4544D01* X4566Y3956D02* X4544D01* Y3948D02* X4566D01* X4544Y3944D02* X4566D01* X4544Y3940D02* X4566D01* X4544Y3936D02* X4566D01* X4544Y3932D02* X4566D01* Y3928D02* X4544D01* X4566Y3924D02* X4544D01* X4566Y3920D02* X4544D01* X4566Y3916D02* X4544D01* Y3912D02* X4566D01* X4544Y3908D02* X4566D01* X4544Y3904D02* X4566D01* Y3896D02* X4544D01* X4566Y3900D02* X4544D01* Y3892D02* X4566D01* X4544Y3888D02* X4566D01* X4544Y3884D02* X4566D01* X4544Y3880D02* X4566D01* X4544Y3876D02* X4566D01* Y3872D02* X4544D01* X4566Y3868D02* X4544D01* Y3860D02* X4566D01* X4544Y3864D02* X4566D01* Y3856D02* X4544D01* X4566Y3852D02* X4544D01* Y3848D02* X4566D01* X4544Y3844D02* X4566D01* X4544Y3840D02* X4566D01* Y3832D02* X4544D01* X4566Y3836D02* X4544D01* Y3828D02* X4566D01* X4544Y3824D02* X4566D01* X4675Y3771D02* X4667Y3776D01* X4662Y3784D01* Y3804D02* X4667Y3812D01* X4675Y3818D01* X4695D02* X4703Y3813D01* X4708Y3804D01* Y3784D02* X4703Y3777D01* X4695Y3771D01* X4544Y3820D02* X4566D01* X4544Y3816D02* X4566D01* X4544Y3812D02* X4566D01* Y3808D02* X4544D01* X4566Y3804D02* X4544D01* Y3796D02* X4566D01* X4544Y3800D02* X4566D01* Y3792D02* X4544D01* X4566Y3788D02* X4544D01* X4566Y3784D02* X4544D01* Y3780D02* X4566D01* X4544Y3776D02* X4566D01* Y3768D02* X4544D01* X4566Y3772D02* X4544D01* Y3764D02* X4566D01* X4544Y3760D02* X4566D01* X4544Y3756D02* X4566D01* X4544Y3752D02* X4566D01* X4544Y3748D02* X4566D01* Y3744D02* X4544D01* X4566Y3740D02* X4544D01* Y3732D02* X4566D01* X4544Y3736D02* X4566D01* Y3728D02* X4544D01* X4566Y3724D02* X4544D01* X4566Y3720D02* X4544D01* Y3716D02* X4566D01* X4544Y3712D02* X4566D01* Y3704D02* X4544D01* X4566Y3708D02* X4544D01* Y3700D02* X4566D01* X4544Y3696D02* X4566D01* Y3692D02* X4544D01* X4566Y3688D02* X4544D01* X4566Y3684D02* X4544D01* X4566Y3680D02* X4544D01* X4566Y3676D02* X4544D01* Y3668D02* X4566D01* X4544Y3672D02* X4566D01* Y3664D02* X4544D01* X4566Y3660D02* X4544D01* X4566Y3656D02* X4544D01* Y3652D02* X4566D01* X4544Y3648D02* X4566D01* Y3640D02* X4544D01* X4566Y3644D02* X4544D01* Y3636D02* X4566D01* X4544Y3632D02* X4566D01* Y3628D02* X4544D01* X4566Y3624D02* X4544D01* X4566Y3620D02* X4544D01* X4566Y3616D02* X4544D01* X4566Y3612D02* X4544D01* Y3608D02* X4566D01* X4544Y3604D02* X4566D01* X4544Y3600D02* X4566D01* Y3592D02* X4544D01* X4566Y3596D02* X4544D01* Y3588D02* X4566D01* X4544Y3584D02* X4566D01* Y3576D02* X4544D01* X4566Y3580D02* X4544D01* Y3572D02* X4566D01* X4544Y3568D02* X4566D01* Y3564D02* X4544D01* X4566Y3560D02* X4544D01* X4566Y3556D02* X4544D01* X4566Y3552D02* X4544D01* X4566Y3548D02* X4544D01* Y3544D02* X4566D01* X4544Y3540D02* X4566D01* X4544Y3536D02* X4566D01* Y3528D02* X4544D01* X4566Y3532D02* X4544D01* Y3524D02* X4566D01* X4544Y3520D02* X4566D01* Y3512D02* X4544D01* X4566Y3516D02* X4544D01* Y3508D02* X4566D01* X4544Y3504D02* X4566D01* X4544Y3500D02* X4566D01* Y3492D02* X4544D01* X4566Y3496D02* X4544D01* Y3488D02* X4566D01* X4544Y3484D02* X4566D01* X4544Y3480D02* X4566D01* X4544Y3476D02* X4566D01* X4544Y3472D02* X4566D01* Y3468D02* X4544D01* X4566Y3464D02* X4544D01* Y3456D02* X4566D01* X4544Y3460D02* X4566D01* Y3452D02* X4544D01* X4566Y3448D02* X4544D01* Y3444D02* X4566D01* X4544Y3440D02* X4566D01* X4544Y3436D02* X4566D01* Y3428D02* X4544D01* X4566Y3432D02* X4544D01* Y3424D02* X4566D01* X4544Y3420D02* X4566D01* Y3396D02* X4544D01* X4566Y3392D02* X4544D01* Y3384D02* X4566D01* X4544Y3388D02* X4566D01* X4675Y3371D02* X4667Y3376D01* X4662Y3384D01* Y3404D02* X4667Y3412D01* X4675Y3418D01* X4695D02* X4703Y3413D01* X4708Y3404D01* Y3384D02* X4703Y3377D01* X4695Y3371D01* X4825Y3421D02* X4817Y3426D01* X4812Y3434D01* Y3454D02* X4817Y3462D01* X4825Y3468D01* X4845D02* X4853Y3463D01* X4858Y3454D01* Y3434D02* X4853Y3427D01* X4845Y3421D01* Y3221D02* X4853Y3227D01* X4858Y3234D01* Y3254D02* X4853Y3263D01* X4845Y3268D01* X4825D02* X4817Y3262D01* X4812Y3254D01* Y3234D02* X4817Y3226D01* X4825Y3221D01* X4695Y3171D02* X4703Y3177D01* X4708Y3184D01* Y3204D02* X4703Y3213D01* X4695Y3218D01* X4675D02* X4667Y3212D01* X4662Y3204D01* Y3184D02* X4667Y3176D01* X4675Y3171D01* X4566Y3144D02* X4544D01* X4566Y3148D02* X4544D01* Y3152D02* X4566D01* X4544Y3156D02* X4566D01* X4544Y3160D02* X4566D01* Y3164D02* X4544D01* X4566Y3168D02* X4544D01* Y3176D02* X4566D01* X4544Y3172D02* X4566D01* Y3180D02* X4544D01* X4566Y3184D02* X4544D01* Y3192D02* X4566D01* X4544Y3188D02* X4566D01* Y3196D02* X4544D01* X4566Y3200D02* X4544D01* X4566Y3204D02* X4544D01* Y3208D02* X4566D01* X4544Y3212D02* X4566D01* X4544Y3216D02* X4566D01* X4544Y3220D02* X4566D01* X4544Y3224D02* X4566D01* Y3228D02* X4544D01* X4566Y3232D02* X4544D01* X4566Y3236D02* X4544D01* X4566Y3240D02* X4544D01* Y3248D02* X4566D01* X4544Y3244D02* X4566D01* Y3252D02* X4544D01* X4566Y3256D02* X4544D01* X4566Y3260D02* X4544D01* X4566Y3264D02* X4544D01* X4566Y3268D02* X4544D01* Y3272D02* X4566D01* X4544Y3276D02* X4566D01* X4544Y3280D02* X4566D01* X4544Y3284D02* X4566D01* X4544Y3288D02* X4566D01* Y3292D02* X4544D01* X4566Y3296D02* X4544D01* Y3304D02* X4566D01* X4544Y3300D02* X4566D01* Y3308D02* X4544D01* X4566Y3312D02* X4544D01* X4566Y3316D02* X4544D01* Y3320D02* X4566D01* X4544Y3324D02* X4566D01* Y3332D02* X4544D01* X4566Y3328D02* X4544D01* Y3336D02* X4566D01* X4544Y3340D02* X4566D01* X4544Y3344D02* X4566D01* X4544Y3348D02* X4566D01* X4544Y3352D02* X4566D01* Y3356D02* X4544D01* X4566Y3360D02* X4544D01* Y3368D02* X4566D01* X4544Y3364D02* X4566D01* Y3372D02* X4544D01* X4566Y3376D02* X4544D01* X4566Y3380D02* X4544D01* Y3400D02* X4566D01* X4544Y3404D02* X4566D01* Y3408D02* X4544D01* X4566Y3412D02* X4544D01* X4566Y3416D02* X4544D01* X4825Y3621D02* X4817Y3626D01* X4812Y3634D01* Y3654D02* X4817Y3662D01* X4825Y3668D01* X4845D02* X4853Y3663D01* X4858Y3654D01* Y3634D02* X4853Y3627D01* X4845Y3621D01* Y3821D02* X4853Y3827D01* X4858Y3834D01* Y3854D02* X4853Y3863D01* X4845Y3868D01* X4825D02* X4817Y3862D01* X4812Y3854D01* Y3834D02* X4817Y3826D01* X4825Y3821D01* X4695Y3971D02* X4703Y3977D01* X4708Y3984D01* Y4004D02* X4703Y4013D01* X4695Y4018D01* X4675D02* X4667Y4012D01* X4662Y4004D01* Y3984D02* X4667Y3976D01* X4675Y3971D01* X4566Y4008D02* X4544D01* X4566Y4012D02* X4544D01* Y4020D02* X4566D01* X4544Y4016D02* X4566D01* Y4024D02* X4544D01* X4566Y4028D02* X4544D01* X4566Y4032D02* X4544D01* Y4036D02* X4566D01* X4544Y4040D02* X4566D01* Y4048D02* X4544D01* X4566Y4044D02* X4544D01* Y4052D02* X4566D01* X4544Y4056D02* X4566D01* Y4060D02* X4544D01* X4566Y4064D02* X4544D01* X4566Y4068D02* X4544D01* X4566Y4072D02* X4544D01* X4566Y4076D02* X4544D01* Y4080D02* X4566D01* X4544Y4084D02* X4566D01* X4544Y4088D02* X4566D01* Y4096D02* X4544D01* X4566Y4092D02* X4544D01* X4566Y4104D02* X4544D01* X4566Y4100D02* X4544D01* Y4108D02* X4566D01* X4544Y4112D02* X4566D01* X4544Y4116D02* X4566D01* X4544Y4120D02* X4566D01* Y4124D02* X4544D01* X4566Y4128D02* X4544D01* X4566Y4132D02* X4544D01* X4566Y4136D02* X4544D01* X4566Y4140D02* X4544D01* Y4144D02* X4566D01* X4544Y4148D02* X4566D01* X4544Y4152D02* X4566D01* Y4160D02* X4544D01* X4566Y4156D02* X4544D01* Y4164D02* X4566D01* X4544Y4168D02* X4566D01* X4544Y4172D02* X4566D01* X4544Y4176D02* X4566D01* X4544Y4180D02* X4566D01* Y4184D02* X4544D01* X4566Y4188D02* X4544D01* Y4196D02* X4566D01* X4544Y4192D02* X4566D01* Y4200D02* X4544D01* X4566Y4204D02* X4544D01* Y4208D02* X4566D01* X4544Y4212D02* X4566D01* X4544Y4216D02* X4566D01* X4675Y4171D02* X4667Y4176D01* X4662Y4184D01* Y4204D02* X4667Y4212D01* X4675Y4218D01* X4695D02* X4703Y4213D01* X4708Y4204D01* Y4184D02* X4703Y4177D01* X4695Y4171D01* X4825Y4221D02* X4817Y4226D01* X4812Y4234D01* Y4254D02* X4817Y4262D01* X4825Y4268D01* X4845D02* X4853Y4263D01* X4858Y4254D01* Y4234D02* X4853Y4227D01* X4845Y4221D01* Y4021D02* X4853Y4027D01* X4858Y4034D01* Y4054D02* X4853Y4063D01* X4845Y4068D01* X4825D02* X4817Y4062D01* X4812Y4054D01* Y4034D02* X4817Y4026D01* X4825Y4021D01* X4544Y2432D02* X6637D01* X6615Y2456D02* X6637D01* Y2460D02* X6615D01* X6614Y2457D02* X6610Y2453D01* X4571D01* X4566Y2464D02* X4544D01* X4566Y2468D02* X4544D01* X4566Y2488D02* X4544D01* X4566Y2484D02* X4544D01* X4566Y2480D02* X4544D01* Y2476D02* X4566D01* X4544Y2472D02* X4566D01* X4567Y2457D02* X4571Y2453D01* X4566Y2496D02* X4544D01* X4566Y2492D02* X4544D01* Y2500D02* X4566D01* X4544Y2504D02* X4566D01* X4544Y2508D02* X4566D01* X4544Y2512D02* X4566D01* X4544Y2516D02* X4566D01* Y2520D02* X4544D01* X4566Y2524D02* X4544D01* Y2532D02* X4566D01* X4544Y2528D02* X4566D01* Y2536D02* X4544D01* X4566Y2540D02* X4544D01* Y2544D02* X4566D01* X4544Y2548D02* X4566D01* X4544Y2552D02* X4566D01* Y2560D02* X4544D01* X4566Y2556D02* X4544D01* Y2564D02* X4566D01* X4544Y2568D02* X4566D01* X4544Y2572D02* X4566D01* X4544Y2576D02* X4566D01* X4544Y2580D02* X4566D01* Y2584D02* X4544D01* X4566Y2588D02* X4544D01* Y2596D02* X4566D01* X4544Y2592D02* X4566D01* Y2600D02* X4544D01* X4566Y2604D02* X4544D01* Y2608D02* X4566D01* X4544Y2612D02* X4566D01* X4544Y2616D02* X4566D01* Y2624D02* X4544D01* X4566Y2620D02* X4544D01* Y2628D02* X4566D01* X4544Y2632D02* X4566D01* Y2636D02* X4544D01* X4566Y2640D02* X4544D01* X4566Y2644D02* X4544D01* X4566Y2648D02* X4544D01* X4566Y2652D02* X4544D01* Y2660D02* X4566D01* X4544Y2656D02* X4566D01* Y2664D02* X4544D01* X4566Y2668D02* X4544D01* Y2672D02* X4566D01* X4544Y2676D02* X4566D01* X4544Y2680D02* X4566D01* Y2688D02* X4544D01* X4566Y2684D02* X4544D01* Y2692D02* X4566D01* X4544Y2696D02* X4566D01* X4544Y2700D02* X4566D01* Y2704D02* X4544D01* X4566Y2708D02* X4544D01* Y2716D02* X4566D01* X4544Y2712D02* X4566D01* X4544Y2724D02* X4566D01* X4544Y2720D02* X4566D01* Y2728D02* X4544D01* X4566Y2732D02* X4544D01* X4566Y2736D02* X4544D01* Y2756D02* X4566D01* X4544Y2760D02* X4566D01* Y2764D02* X4544D01* X4566Y2768D02* X4544D01* X4566Y2772D02* X4544D01* X4566Y2744D02* X4544D01* X4566Y2740D02* X4544D01* Y2748D02* X4566D01* X4544Y2752D02* X4566D01* Y2776D02* X4544D01* X4566Y2780D02* X4544D01* Y2788D02* X4566D01* X4544Y2784D02* X4566D01* Y2792D02* X4544D01* X4566Y2796D02* X4544D01* X4566Y2800D02* X4544D01* Y2804D02* X4566D01* X4544Y2808D02* X4566D01* Y2816D02* X4544D01* X4566Y2812D02* X4544D01* Y2820D02* X4566D01* X4544Y2824D02* X4566D01* Y2828D02* X4544D01* X4566Y2832D02* X4544D01* X4566Y2836D02* X4544D01* X4566Y2840D02* X4544D01* X4566Y2844D02* X4544D01* Y2852D02* X4566D01* X4544Y2848D02* X4566D01* Y2856D02* X4544D01* X4566Y2860D02* X4544D01* X4566Y2864D02* X4544D01* Y2868D02* X4566D01* X4544Y2872D02* X4566D01* X4544Y2876D02* X4566D01* X4544Y2880D02* X4566D01* X4544Y2884D02* X4566D01* Y2888D02* X4544D01* X4566Y2892D02* X4544D01* X4566Y2896D02* X4544D01* X4566Y2900D02* X4544D01* Y2908D02* X4566D01* X4544Y2904D02* X4566D01* X4695Y2971D02* X4703Y2977D01* X4708Y2984D01* Y3004D02* X4703Y3013D01* X4695Y3018D01* X4675D02* X4667Y3012D01* X4662Y3004D01* Y2984D02* X4667Y2976D01* X4675Y2971D01* X4566Y3032D02* X4544D01* X4566Y3036D02* X4544D01* Y3028D02* X4566D01* X4544Y3024D02* X4566D01* Y3000D02* X4544D01* X4566Y2996D02* X4544D01* Y2988D02* X4566D01* X4544Y2992D02* X4566D01* Y2984D02* X4544D01* X4566Y2980D02* X4544D01* X4566Y2976D02* X4544D01* Y2972D02* X4566D01* X4544Y2968D02* X4566D01* Y2960D02* X4544D01* X4566Y2964D02* X4544D01* Y2956D02* X4566D01* X4544Y2952D02* X4566D01* Y2948D02* X4544D01* X4566Y2944D02* X4544D01* X4566Y2940D02* X4544D01* X4566Y2936D02* X4544D01* X4566Y2932D02* X4544D01* Y2928D02* X4566D01* X4544Y2924D02* X4566D01* X4544Y2920D02* X4566D01* Y2912D02* X4544D01* X4566Y2916D02* X4544D01* Y3004D02* X4566D01* X4544Y3008D02* X4566D01* X4544Y3012D02* X4566D01* Y3016D02* X4544D01* X4566Y3020D02* X4544D01* Y3040D02* X4566D01* X4544Y3044D02* X4566D01* X4544Y3048D02* X4566D01* Y3056D02* X4544D01* X4566Y3052D02* X4544D01* Y3060D02* X4566D01* X4544Y3064D02* X4566D01* Y3068D02* X4544D01* X4566Y3072D02* X4544D01* X4566Y3076D02* X4544D01* Y3084D02* X4566D01* X4544Y3080D02* X4566D01* Y3088D02* X4544D01* X4566Y3092D02* X4544D01* Y3100D02* X4566D01* X4544Y3096D02* X4566D01* X4544Y3104D02* X4566D01* X4544Y3108D02* X4566D01* X4544Y3112D02* X4566D01* Y3120D02* X4544D01* X4566Y3116D02* X4544D01* Y3124D02* X4566D01* X4544Y3128D02* X4566D01* Y3132D02* X4544D01* X4566Y3136D02* X4544D01* X4566Y3140D02* X4544D01* X4775Y2871D02* X4767Y2876D01* X4762Y2884D01* Y2904D02* X4767Y2912D01* X4775Y2918D01* X4795D02* X4803Y2913D01* X4808Y2904D01* Y2884D02* X4803Y2877D01* X4795Y2871D01* X4825Y3021D02* X4817Y3026D01* X4812Y3034D01* Y3054D02* X4817Y3062D01* X4825Y3068D01* X4845D02* X4853Y3063D01* X4858Y3054D01* Y3034D02* X4853Y3027D01* X4845Y3021D01* X5045D02* X5053Y3027D01* X5058Y3034D01* Y3054D02* X5053Y3063D01* X5045Y3068D01* X5025D02* X5017Y3062D01* X5012Y3054D01* Y3034D02* X5017Y3026D01* X5025Y3021D01* X5008Y2904D02* X5003Y2913D01* X4995Y2918D01* X4975D02* X4967Y2912D01* X4962Y2904D01* Y2884D02* X4967Y2876D01* X4975Y2871D01* X4995D02* X5003Y2877D01* X5008Y2884D01* X5175Y2871D02* X5167Y2876D01* X5162Y2884D01* Y2904D02* X5167Y2912D01* X5175Y2918D01* X5195D02* X5203Y2913D01* X5208Y2904D01* Y2884D02* X5203Y2877D01* X5195Y2871D01* X5225Y3021D02* X5217Y3026D01* X5212Y3034D01* Y3054D02* X5217Y3062D01* X5225Y3068D01* X5245D02* X5253Y3063D01* X5258Y3054D01* Y3034D02* X5253Y3027D01* X5245Y3021D01* X5375Y2871D02* X5367Y2876D01* X5362Y2884D01* Y2904D02* X5367Y2912D01* X5375Y2918D01* X5395D02* X5403Y2913D01* X5408Y2904D01* Y2884D02* X5403Y2877D01* X5395Y2871D01* X5425Y3021D02* X5417Y3026D01* X5412Y3034D01* Y3054D02* X5417Y3062D01* X5425Y3068D01* X5445D02* X5453Y3063D01* X5458Y3054D01* Y3034D02* X5453Y3027D01* X5445Y3021D01* X5575Y2871D02* X5567Y2876D01* X5562Y2884D01* Y2904D02* X5567Y2912D01* X5575Y2918D01* X5595D02* X5603Y2913D01* X5608Y2904D01* Y2884D02* X5603Y2877D01* X5595Y2871D01* X5625Y3021D02* X5617Y3026D01* X5612Y3034D01* Y3054D02* X5617Y3062D01* X5625Y3068D01* X5645D02* X5653Y3063D01* X5658Y3054D01* Y3034D02* X5653Y3027D01* X5645Y3021D01* X5775Y3071D02* X5767Y3076D01* X5762Y3084D01* Y3104D02* X5767Y3112D01* X5775Y3118D01* X5795D02* X5803Y3113D01* X5808Y3104D01* Y3084D02* X5803Y3077D01* X5795Y3071D01* X5845Y3021D02* X5853Y3027D01* X5858Y3034D01* Y3054D02* X5853Y3063D01* X5845Y3068D01* X5825D02* X5817Y3062D01* X5812Y3054D01* Y3034D02* X5817Y3026D01* X5825Y3021D01* X5762Y2904D02* X5767Y2912D01* X5775Y2918D01* X5795D02* X5803Y2913D01* X5808Y2904D01* Y2884D02* X5803Y2877D01* X5795Y2871D01* X5775D02* X5767Y2876D01* X5762Y2884D01* X5720Y2553D02* Y2575D01* X5742D01* X5762D02* X5783D01* Y2553D01* Y2533D02* Y2512D01* X5762D01* X5742D02* X5720D01* Y2533D01* X5552Y2392D02* X5574D01* X5552Y2396D02* X5574D01* Y2388D02* X5552D01* X5574Y2384D02* X5552D01* X5574Y2380D02* X5552D01* Y2376D02* X5574D01* X5552Y2372D02* X5574D01* X5552Y2368D02* X5574D01* X5552Y2364D02* X5574D01* X5552Y2360D02* X5574D01* Y2356D02* X5552D01* X5574Y2352D02* X5552D01* Y2344D02* X5574D01* X5552Y2348D02* X5574D01* Y2340D02* X5552D01* X5574Y2336D02* X5552D01* Y2332D02* X5574D01* X5552Y2328D02* X5574D01* X5552Y2324D02* X5574D01* Y2316D02* X5552D01* X5574Y2320D02* X5552D01* Y2312D02* X5574D01* X5552Y2308D02* X5574D01* X5552Y2304D02* X5574D01* X5552Y2300D02* X5574D01* X5552Y2296D02* X5574D01* Y2292D02* X5552D01* X5574Y2288D02* X5552D01* Y2280D02* X5574D01* X5552Y2284D02* X5574D01* Y2276D02* X5552D01* X5574Y2272D02* X5552D01* Y2268D02* X5574D01* X5552Y2264D02* X5574D01* X5552Y2260D02* X5574D01* Y2252D02* X5552D01* X5574Y2256D02* X5552D01* Y2248D02* X5574D01* X5552Y2244D02* X5574D01* Y2240D02* X5552D01* X5574Y2236D02* X5552D01* X5574Y2232D02* X5552D01* Y2228D02* X5574D01* X5552Y2224D02* X5574D01* Y2216D02* X5552D01* X5574Y2220D02* X5552D01* Y2212D02* X5574D01* X5552Y2208D02* X5574D01* Y2204D02* X5552D01* X5574Y2200D02* X5552D01* X5574Y2196D02* X5552D01* Y2188D02* X5574D01* X5552Y2192D02* X5574D01* X5040Y2116D02* X5062D01* X5040Y2120D02* X5062D01* Y2112D02* X5040D01* X5062Y2108D02* X5040D01* X5062Y2104D02* X5040D01* Y2096D02* X5062D01* X5040Y2100D02* X5062D01* Y2092D02* X5040D01* X5062Y2088D02* X5040D01* X5062Y2084D02* X5040D01* X5062Y2080D02* X5040D01* X5062Y2076D02* X5040D01* Y2068D02* X5062D01* X5040Y2072D02* X5062D01* Y2064D02* X5040D01* X5062Y2060D02* X5040D01* Y2052D02* X5062D01* X5040Y2056D02* X5062D01* Y2048D02* X5040D01* X5062Y2044D02* X5040D01* X5062Y2040D02* X5040D01* Y2036D02* X5062D01* X5040Y2032D02* X5062D01* X5040Y2028D02* X5062D01* X5040Y2024D02* X5062D01* X5040Y2020D02* X5062D01* Y2016D02* X5040D01* X5062Y2012D02* X5040D01* Y2004D02* X5062D01* X5040Y2008D02* X5062D01* Y2000D02* X5040D01* X5062Y1996D02* X5040D01* X5062Y1992D02* X5040D01* Y1988D02* X5062D01* X5040Y1984D02* X5062D01* Y1980D02* X5040D01* X5062Y1976D02* X5040D01* X5062Y1972D02* X5040D01* X5062Y1940D02* X5022D01* X5023D02* X5101Y1861D01* X5102Y1858D02* X5101Y1861D01* X5099Y1864D02* X5125D01* Y1852D02* X5103D01* X5125Y1848D02* X5103D01* Y1840D02* X5125D01* X5103Y1844D02* X5125D01* X5127Y1824D02* X5466Y1485D01* X5467Y1484D02* X5440D01* X5450Y1500D02* X5424D01* X5438Y1512D02* X5412D01* X5428Y1496D02* X5454D01* X5466Y1485D02* X5469Y1484D01* X5456Y1468D02* X5637D01* Y1460D02* X5612D01* X5610Y1461D02* X5614Y1457D01* Y1118D01* X5610Y1114D01* X5217D01* X5212Y1120D02* X5190D01* Y1124D02* X5212D01* X5190Y1128D02* X5212D01* Y1136D02* X5190D01* X5212Y1132D02* X5190D01* Y1140D02* X5212D01* X5190Y1144D02* X5212D01* Y1328D02* X5190D01* X5212Y1324D02* X5190D01* Y1320D02* X5212D01* X5190Y1316D02* X5212D01* X5190Y1312D02* X5212D01* Y1304D02* X5190D01* X5212Y1308D02* X5190D01* Y1300D02* X5212D01* X5190Y1296D02* X5212D01* Y1288D02* X5190D01* X5212Y1292D02* X5190D01* Y1284D02* X5212D01* X5190Y1280D02* X5212D01* Y1276D02* X5190D01* X5212Y1272D02* X5190D01* X5212Y1268D02* X5190D01* X5212Y1264D02* X5190D01* X5212Y1260D02* X5190D01* Y1256D02* X5212D01* X5190Y1252D02* X5212D01* X5190Y1248D02* X5212D01* Y1240D02* X5190D01* X5212Y1244D02* X5190D01* X5212Y1232D02* X5190D01* X5212Y1236D02* X5190D01* Y1228D02* X5212D01* X5190Y1224D02* X5212D01* X5190Y1220D02* X5212D01* Y1216D02* X5190D01* X5212Y1212D02* X5190D01* Y1204D02* X5212D01* X5190Y1208D02* X5212D01* Y1200D02* X5190D01* X5212Y1196D02* X5190D01* Y1192D02* X5212D01* X5190Y1188D02* X5212D01* X5190Y1184D02* X5212D01* Y1176D02* X5190D01* X5212Y1180D02* X5190D01* Y1172D02* X5212D01* X5190Y1168D02* X5212D01* X5190Y1164D02* X5212D01* X5190Y1160D02* X5212D01* X5190Y1156D02* X5212D01* Y1152D02* X5190D01* X5212Y1148D02* X5190D01* X5188Y1116D02* X5213D01* Y1118D02* X5217Y1114D01* X5213Y1118D02* Y1589D01* X5196Y1604D02* X5162D01* X5170Y1596D02* X5204D01* X5186Y1580D02* X5212D01* Y1572D02* X5190D01* X5212Y1576D02* X5189D01* X5212Y1584D02* X5182D01* X5212Y1568D02* X5190D01* X5212Y1564D02* X5190D01* X5212Y1560D02* X5190D01* Y1556D02* X5212D01* X5190Y1552D02* X5212D01* Y1544D02* X5190D01* X5212Y1548D02* X5190D01* Y1540D02* X5212D01* X5190Y1536D02* X5212D01* X5190Y1532D02* X5212D01* X5190Y1528D02* X5212D01* X5190Y1524D02* X5212D01* Y1520D02* X5190D01* X5212Y1516D02* X5190D01* Y1508D02* X5212D01* X5190Y1512D02* X5212D01* Y1504D02* X5190D01* X5212Y1500D02* X5190D01* X5212Y1496D02* X5190D01* Y1492D02* X5212D01* X5190Y1488D02* X5212D01* Y1480D02* X5190D01* X5212Y1484D02* X5190D01* Y1476D02* X5212D01* X5190Y1472D02* X5212D01* Y1468D02* X5190D01* X5212Y1464D02* X5190D01* X5212Y1460D02* X5190D01* X5212Y1456D02* X5190D01* X5212Y1452D02* X5190D01* Y1444D02* X5212D01* X5190Y1448D02* X5212D01* Y1440D02* X5190D01* X5212Y1436D02* X5190D01* X5212Y1432D02* X5190D01* Y1428D02* X5212D01* X5190Y1424D02* X5212D01* Y1416D02* X5190D01* X5212Y1420D02* X5190D01* Y1412D02* X5212D01* X5190Y1408D02* X5212D01* Y1404D02* X5190D01* X5212Y1400D02* X5190D01* X5212Y1396D02* X5190D01* X5212Y1392D02* X5190D01* X5212Y1388D02* X5190D01* Y1384D02* X5212D01* X5190Y1380D02* X5212D01* X5190Y1376D02* X5212D01* Y1368D02* X5190D01* X5212Y1372D02* X5190D01* X5212Y1360D02* X5190D01* X5212Y1364D02* X5190D01* Y1356D02* X5212D01* X5190Y1352D02* X5212D01* X5190Y1348D02* X5212D01* X5190Y1344D02* X5212D01* Y1340D02* X5190D01* X5212Y1336D02* X5190D01* X5212Y1332D02* X5190D01* X4987Y1329D02* Y1307D01* X5009D01* X5029D02* X5050D01* Y1329D01* Y1349D02* Y1370D01* X5029D01* X5009D02* X4987D01* Y1349D01* X5615Y1124D02* X5637D01* X5615Y1128D02* X5637D01* Y1136D02* X5615D01* X5637Y1132D02* X5615D01* Y1140D02* X5637D01* X5615Y1144D02* X5637D01* X5615Y1148D02* X5637D01* X5615Y1152D02* X5637D01* Y1156D02* X5615D01* X5637Y1160D02* X5615D01* X5637Y1164D02* X5615D01* X5637Y1168D02* X5615D01* X5637Y1172D02* X5615D01* Y1180D02* X5637D01* X5615Y1176D02* X5637D01* Y1184D02* X5615D01* X5637Y1188D02* X5615D01* X5637Y1192D02* X5615D01* Y1196D02* X5637D01* X5615Y1200D02* X5637D01* Y1208D02* X5615D01* X5637Y1204D02* X5615D01* Y1212D02* X5637D01* X5615Y1216D02* X5637D01* Y1220D02* X5615D01* X5637Y1224D02* X5615D01* X5637Y1228D02* X5615D01* X5637Y1232D02* X5615D01* X5637Y1236D02* X5615D01* Y1244D02* X5637D01* X5615Y1240D02* X5637D01* Y1248D02* X5615D01* X5637Y1252D02* X5615D01* X5637Y1256D02* X5615D01* Y1260D02* X5637D01* X5615Y1264D02* X5637D01* X5615Y1268D02* X5637D01* X5615Y1272D02* X5637D01* X5615Y1276D02* X5637D01* Y1280D02* X5615D01* X5637Y1284D02* X5615D01* Y1292D02* X5637D01* X5615Y1288D02* X5637D01* Y1296D02* X5615D01* X5637Y1300D02* X5615D01* Y1308D02* X5637D01* X5615Y1304D02* X5637D01* Y1312D02* X5615D01* X5637Y1316D02* X5615D01* X5637Y1320D02* X5615D01* Y1324D02* X5637D01* X5615Y1328D02* X5637D01* X5615Y1332D02* X5637D01* X5615Y1336D02* X5637D01* X5615Y1340D02* X5637D01* Y1344D02* X5615D01* X5637Y1348D02* X5615D01* X5637Y1352D02* X5615D01* X5637Y1356D02* X5615D01* Y1364D02* X5637D01* X5615Y1360D02* X5637D01* X5615Y1372D02* X5637D01* X5615Y1368D02* X5637D01* Y1376D02* X5615D01* X5637Y1380D02* X5615D01* X5637Y1384D02* X5615D01* Y1388D02* X5637D01* X5615Y1392D02* X5637D01* X5615Y1396D02* X5637D01* X5615Y1400D02* X5637D01* X5615Y1404D02* X5637D01* Y1408D02* X5615D01* X5637Y1412D02* X5615D01* Y1420D02* X5637D01* X5615Y1416D02* X5637D01* Y1424D02* X5615D01* X5637Y1428D02* X5615D01* Y1432D02* X5637D01* X5615Y1436D02* X5637D01* X5615Y1440D02* X5637D01* X5638Y1484D02* X5469D01* X5462Y1488D02* X5436D01* X5444Y1480D02* X5637D01* X5638Y1484D02* Y1118D01* X5642Y1114D02* X5638Y1118D01* Y1116D02* X5614D01* X5615Y1120D02* X5637D01* X5642Y1114D02* X7776Y1116D01* X7799Y1059D02* X7740Y1000D01* X7834Y968D02* X1426D01* Y984D02* X7834D01* X7781Y1124D02* X7834D01* Y1120D02* X7781D01* X7834Y1096D02* X1426D01* Y1092D02* X7834D01* X7781Y1188D02* X7834D01* Y1192D02* X7781D01* X7834Y1028D02* X1426D01* Y1032D02* X7834D01* X7777Y1116D02* X7834D01* Y1128D02* X7781D01* X7834Y1112D02* X1426D01* Y1100D02* X7834D01* X7781Y1164D02* X7834D01* Y1160D02* X7781D01* X7834Y1068D02* X1426D01* Y1072D02* X7834D01* X7781Y1136D02* X7834D01* Y1132D02* X7781D01* X7834Y1048D02* X1426D01* Y1052D02* X7834D01* X7781Y1176D02* X7834D01* Y1180D02* X7781D01* X7834Y1076D02* X1426D01* Y1080D02* X7834D01* X7780Y1120D02* Y3126D01* X7776Y3130D01* X7193D01* X7166Y3116D02* X7188D01* X7166Y3120D02* X7188D01* X7166Y3136D02* X7834D01* Y3140D02* X7166D01* X7189Y3126D02* X7193Y3130D01* X7188Y3112D02* X7166D01* Y3108D02* X7188D01* X7166Y3104D02* X7188D01* Y3096D02* X7166D01* X7188Y3100D02* X7166D01* Y3092D02* X7188D01* X7166Y3088D02* X7188D01* Y3080D02* X7166D01* X7188Y3084D02* X7166D01* Y3076D02* X7188D01* X7166Y3072D02* X7188D01* X7166Y3068D02* X7188D01* Y3064D02* X7166D01* X7188Y3060D02* X7166D01* Y3052D02* X7188D01* X7166Y3056D02* X7188D01* Y3048D02* X7166D01* X7188Y3044D02* X7166D01* X7188Y3040D02* X7166D01* Y3036D02* X7188D01* X7166Y3032D02* X7188D01* Y3024D02* X7166D01* X7188Y3028D02* X7166D01* Y3020D02* X7188D01* X7166Y3016D02* X7188D01* Y3012D02* X7166D01* X7188Y3008D02* X7166D01* X7188Y3004D02* X7166D01* X7188Y3000D02* X7166D01* X7188Y2996D02* X7166D01* Y2988D02* X7188D01* X7166Y2992D02* X7188D01* Y2984D02* X7166D01* X7188Y2980D02* X7166D01* X7188Y2976D02* X7166D01* Y2972D02* X7188D01* X7166Y2968D02* X7188D01* Y2960D02* X7166D01* X7188Y2964D02* X7166D01* Y2956D02* X7188D01* X7166Y2952D02* X7188D01* Y2948D02* X7166D01* X7188Y2944D02* X7166D01* X7188Y2940D02* X7166D01* X7188Y2936D02* X7166D01* X7188Y2932D02* X7166D01* Y2928D02* X7188D01* X7166Y2924D02* X7188D01* X7166Y2920D02* X7188D01* Y2912D02* X7166D01* X7188Y2916D02* X7166D01* Y2908D02* X7188D01* X7166Y2904D02* X7188D01* Y2896D02* X7166D01* X7188Y2900D02* X7166D01* Y2892D02* X7188D01* X7166Y2888D02* X7188D01* Y2884D02* X7166D01* X7188Y2880D02* X7166D01* X7188Y2876D02* X7166D01* X7188Y2476D02* X7166D01* X7188Y2472D02* X7166D01* X7188Y2468D02* X7166D01* Y2480D02* X7188D01* X7166Y2484D02* X7188D01* X7166Y2488D02* X7188D01* Y2492D02* X7166D01* X7188Y2496D02* X7166D01* Y2504D02* X7188D01* X7166Y2500D02* X7188D01* Y2508D02* X7166D01* X7188Y2512D02* X7166D01* Y2516D02* X7188D01* X7166Y2520D02* X7188D01* X7166Y2524D02* X7188D01* Y2532D02* X7166D01* X7188Y2528D02* X7166D01* Y2536D02* X7188D01* X7166Y2540D02* X7188D01* Y2544D02* X7166D01* X7188Y2548D02* X7166D01* X7188Y2552D02* X7166D01* X7188Y2556D02* X7166D01* X7188Y2560D02* X7166D01* Y2568D02* X7188D01* X7166Y2564D02* X7188D01* Y2572D02* X7166D01* X7188Y2576D02* X7166D01* Y2580D02* X7188D01* X7166Y2584D02* X7188D01* X7166Y2588D02* X7188D01* Y2596D02* X7166D01* X7188Y2592D02* X7166D01* Y2600D02* X7188D01* X7166Y2604D02* X7188D01* Y2608D02* X7166D01* X7188Y2612D02* X7166D01* X7188Y2616D02* X7166D01* X7188Y2620D02* X7166D01* X7188Y2624D02* X7166D01* Y2628D02* X7188D01* X7166Y2632D02* X7188D01* X7166Y2636D02* X7188D01* Y2644D02* X7166D01* X7188Y2640D02* X7166D01* Y2648D02* X7188D01* X7166Y2652D02* X7188D01* Y2660D02* X7166D01* X7188Y2656D02* X7166D01* Y2664D02* X7188D01* X7166Y2668D02* X7188D01* Y2672D02* X7166D01* X7188Y2676D02* X7166D01* X7188Y2680D02* X7166D01* Y2684D02* X7188D01* X7166Y2688D02* X7188D01* X7166Y2692D02* X7188D01* X7166Y2696D02* X7188D01* Y2700D02* X7166D01* X7188Y2704D02* X7166D01* X7188Y2708D02* X7166D01* X7188Y2712D02* X7166D01* X7188Y2716D02* X7166D01* Y2724D02* X7188D01* X7166Y2720D02* X7188D01* Y2728D02* X7166D01* X7188Y2732D02* X7166D01* X7188Y2736D02* X7166D01* Y2740D02* X7188D01* X7166Y2744D02* X7188D01* Y2752D02* X7166D01* X7188Y2748D02* X7166D01* Y2756D02* X7188D01* X7166Y2760D02* X7188D01* Y2764D02* X7166D01* X7188Y2768D02* X7166D01* X7188Y2772D02* X7166D01* X7188Y2776D02* X7166D01* X7188Y2780D02* X7166D01* Y2788D02* X7188D01* X7166Y2784D02* X7188D01* Y2792D02* X7166D01* X7188Y2796D02* X7166D01* X7188Y2800D02* X7166D01* Y2804D02* X7188D01* X7166Y2808D02* X7188D01* Y2816D02* X7166D01* X7188Y2812D02* X7166D01* Y2820D02* X7188D01* X7166Y2824D02* X7188D01* Y2828D02* X7166D01* X7188Y2832D02* X7166D01* X7188Y2836D02* X7166D01* X7188Y2840D02* X7166D01* X7188Y2844D02* X7166D01* Y2852D02* X7188D01* X7166Y2848D02* X7188D01* Y2856D02* X7166D01* X7188Y2860D02* X7166D01* X7188Y2864D02* X7166D01* Y2868D02* X7188D01* X7166Y2872D02* X7188D01* X7415Y3026D02* X7410Y3029D01* X7404Y3037D01* Y3057D02* X7407Y3062D01* X7415Y3069D01* X7435D02* X7440Y3065D01* X7446Y3057D01* Y3037D02* X7443Y3032D01* X7435Y3026D01* X7651Y2947D02* X7646Y2951D01* X7640Y2959D01* Y2979D02* X7644Y2984D01* X7651Y2990D01* X7671D02* X7677Y2986D01* X7683Y2979D01* Y2959D02* X7679Y2953D01* X7671Y2947D01* X7781Y2880D02* X7834D01* X7781Y2876D02* X7834D01* Y2884D02* X7781D01* X7834Y2888D02* X7781D01* X7834Y2892D02* X7781D01* Y2912D02* X7834D01* X7781Y2916D02* X7834D01* Y2920D02* X7781D01* X7834Y2924D02* X7781D01* X7834Y2928D02* X7781D01* Y2968D02* X7834D01* X7781Y2972D02* X7834D01* X7781Y2976D02* X7834D01* Y2980D02* X7781D01* X7834Y2984D02* X7781D01* X7750Y3026D02* X7758Y3032D01* X7761Y3037D01* X7781Y3044D02* X7834D01* X7781Y3048D02* X7834D01* Y3052D02* X7781D01* X7834Y3056D02* X7781D01* Y3096D02* X7834D01* X7781Y3100D02* X7834D01* X7781Y3104D02* X7834D01* Y3092D02* X7781D01* X7834Y3088D02* X7781D01* Y3080D02* X7834D01* X7781Y3084D02* X7834D01* Y3076D02* X7781D01* X7834Y3072D02* X7781D01* Y3068D02* X7834D01* X7781Y3064D02* X7834D01* X7781Y3060D02* X7834D01* Y3040D02* X7781D01* X7834Y3036D02* X7781D01* X7834Y3032D02* X7781D01* Y3024D02* X7834D01* X7781Y3028D02* X7834D01* X7781Y1396D02* X7834D01* X7781Y1400D02* X7834D01* X7781Y1404D02* X7834D01* Y1408D02* X7781D01* X7834Y1412D02* X7781D01* Y1420D02* X7834D01* X7781Y1416D02* X7834D01* Y1424D02* X7781D01* X7834Y1428D02* X7781D01* Y1432D02* X7834D01* X7781Y1436D02* X7834D01* X7781Y1440D02* X7834D01* Y1448D02* X7781D01* X7834Y1444D02* X7781D01* Y1452D02* X7834D01* X7781Y1456D02* X7834D01* X7781Y1460D02* X7834D01* X7781Y1464D02* X7834D01* X7781Y1468D02* X7834D01* Y1472D02* X7781D01* X7834Y1476D02* X7781D01* Y1484D02* X7834D01* X7781Y1480D02* X7834D01* Y1488D02* X7781D01* X7834Y1492D02* X7781D01* Y1496D02* X7834D01* X7781Y1500D02* X7834D01* X7781Y1504D02* X7834D01* Y1512D02* X7781D01* X7834Y1508D02* X7781D01* Y1516D02* X7834D01* X7781Y1520D02* X7834D01* Y1524D02* X7781D01* X7834Y1528D02* X7781D01* X7834Y1532D02* X7781D01* X7834Y1536D02* X7781D01* X7834Y1540D02* X7781D01* Y1548D02* X7834D01* X7781Y1544D02* X7834D01* Y1552D02* X7781D01* X7834Y1556D02* X7781D01* Y1560D02* X7834D01* X7781Y1564D02* X7834D01* X7781Y1568D02* X7834D01* Y1576D02* X7781D01* X7834Y1572D02* X7781D01* Y1580D02* X7834D01* X7781Y1584D02* X7834D01* Y1588D02* X7781D01* X7834Y1592D02* X7781D01* X7834Y1596D02* X7781D01* Y1660D02* X7834D01* X7781Y1656D02* X7834D01* X7781Y1652D02* X7834D01* Y1648D02* X7781D01* X7834Y1644D02* X7781D01* Y1620D02* X7834D01* X7781Y1624D02* X7834D01* Y1632D02* X7781D01* X7834Y1628D02* X7781D01* Y1636D02* X7834D01* X7781Y1640D02* X7834D01* Y1600D02* X7781D01* X7834Y1604D02* X7781D01* Y1608D02* X7834D01* X7781Y1612D02* X7834D01* X7781Y1616D02* X7834D01* Y1664D02* X7781D01* X7834Y1668D02* X7781D01* Y1672D02* X7834D01* X7781Y1676D02* X7834D01* X7781Y1680D02* X7834D01* Y1688D02* X7781D01* X7834Y1684D02* X7781D01* Y1692D02* X7834D01* X7781Y1696D02* X7834D01* Y1704D02* X7781D01* X7834Y1700D02* X7781D01* Y1708D02* X7834D01* X7781Y1712D02* X7834D01* Y1716D02* X7781D01* X7834Y1720D02* X7781D01* X7834Y1724D02* X7781D01* Y1728D02* X7834D01* X7781Y1732D02* X7834D01* Y1756D02* X7781D01* X7834Y1760D02* X7781D01* Y1768D02* X7834D01* X7781Y1764D02* X7834D01* X7781Y1736D02* X7834D01* X7781Y1740D02* X7834D01* X7781Y1744D02* X7834D01* Y1748D02* X7781D01* X7834Y1752D02* X7781D01* Y1772D02* X7834D01* X7781Y1776D02* X7834D01* X7781Y1780D02* X7834D01* Y1788D02* X7781D01* X7834Y1784D02* X7781D01* X7834Y1796D02* X7781D01* X7834Y1792D02* X7781D01* Y1800D02* X7834D01* X7781Y1804D02* X7834D01* X7781Y1808D02* X7834D01* Y1812D02* X7781D01* X7834Y1816D02* X7781D01* Y1836D02* X7834D01* X7781Y1840D02* X7834D01* X7781Y1844D02* X7834D01* Y1852D02* X7781D01* X7834Y1848D02* X7781D01* Y1856D02* X7834D01* X7781Y1860D02* X7834D01* Y1864D02* X7781D01* X7834Y1868D02* X7781D01* X7834Y1872D02* X7781D01* X7834Y1820D02* X7781D01* X7834Y1824D02* X7781D01* Y1832D02* X7834D01* X7781Y1828D02* X7834D01* Y1876D02* X7781D01* X7834Y1880D02* X7781D01* Y1888D02* X7834D01* X7781Y1884D02* X7834D01* Y1892D02* X7781D01* X7834Y1896D02* X7781D01* Y1900D02* X7834D01* X7781Y1904D02* X7834D01* X7781Y1908D02* X7834D01* Y1916D02* X7781D01* X7834Y1912D02* X7781D01* Y1920D02* X7834D01* X7781Y1924D02* X7834D01* Y1928D02* X7781D01* X7834Y1932D02* X7781D01* X7834Y1936D02* X7781D01* X7834Y1940D02* X7781D01* X7834Y1944D02* X7781D01* Y1952D02* X7834D01* X7781Y1948D02* X7834D01* Y1956D02* X7781D01* X7834Y1960D02* X7781D01* X7834Y1964D02* X7781D01* Y1968D02* X7834D01* X7781Y1972D02* X7834D01* Y1980D02* X7781D01* X7834Y1976D02* X7781D01* Y1984D02* X7834D01* X7781Y1988D02* X7834D01* X7781Y1992D02* X7834D01* Y1996D02* X7781D01* X7834Y2000D02* X7781D01* X7834Y2004D02* X7781D01* X7834Y2008D02* X7781D01* Y2016D02* X7834D01* X7781Y2012D02* X7834D01* X7781Y2020D02* X7834D01* X7781Y2024D02* X7834D01* X7781Y2028D02* X7834D01* Y2036D02* X7781D01* X7834Y2032D02* X7781D01* Y2040D02* X7834D01* X7781Y2044D02* X7834D01* Y2048D02* X7781D01* X7834Y2052D02* X7781D01* X7834Y2056D02* X7781D01* Y2064D02* X7834D01* X7781Y2060D02* X7834D01* Y2068D02* X7781D01* X7834Y2072D02* X7781D01* X7834Y2076D02* X7781D01* X7834Y2080D02* X7781D01* Y2084D02* X7834D01* X7781Y2088D02* X7834D01* X7781Y2092D02* X7834D01* Y2100D02* X7781D01* X7834Y2096D02* X7781D01* Y2104D02* X7834D01* X7781Y2108D02* X7834D01* Y2112D02* X7781D01* X7834Y2116D02* X7781D01* X7834Y2120D02* X7781D01* Y2128D02* X7834D01* X7781Y2124D02* X7834D01* Y2156D02* X7781D01* X7834Y2152D02* X7781D01* X7834Y2148D02* X7781D01* Y2144D02* X7834D01* X7781Y2140D02* X7834D01* Y2132D02* X7781D01* X7834Y2136D02* X7781D01* Y2160D02* X7834D01* X7781Y2164D02* X7834D01* Y2168D02* X7781D01* X7834Y2172D02* X7781D01* X7834Y2176D02* X7781D01* Y2180D02* X7834D01* X7781Y2184D02* X7834D01* Y2188D02* X7781D01* X7834Y2192D02* X7781D01* X7834Y2196D02* X7781D01* X7834Y2200D02* X7781D01* Y2204D02* X7834D01* X7781Y2208D02* X7834D01* X7781Y2212D02* X7834D01* Y2220D02* X7781D01* X7834Y2216D02* X7781D01* Y2224D02* X7834D01* X7781Y2228D02* X7834D01* X7781Y2276D02* X7834D01* X7781Y2272D02* X7834D01* X7781Y2268D02* X7834D01* Y2264D02* X7781D01* X7834Y2260D02* X7781D01* Y2232D02* X7834D01* X7781Y2236D02* X7834D01* X7781Y2240D02* X7834D01* Y2248D02* X7781D01* X7834Y2244D02* X7781D01* Y2252D02* X7834D01* X7781Y2256D02* X7834D01* Y2280D02* X7781D01* X7834Y2284D02* X7781D01* Y2288D02* X7834D01* X7781Y2292D02* X7834D01* X7781Y2296D02* X7834D01* Y2344D02* X7781D01* X7834Y2348D02* X7781D01* Y2352D02* X7834D01* X7781Y2356D02* X7834D01* X7781Y2360D02* X7834D01* Y2368D02* X7781D01* X7834Y2364D02* X7781D01* Y2372D02* X7834D01* X7781Y2376D02* X7834D01* Y2424D02* X7781D01* X7834Y2420D02* X7781D01* X7834Y2416D02* X7781D01* Y2412D02* X7834D01* X7781Y2408D02* X7834D01* Y2400D02* X7781D01* X7834Y2404D02* X7781D01* Y2396D02* X7834D01* X7781Y2392D02* X7834D01* Y2388D02* X7781D01* X7834Y2384D02* X7781D01* X7834Y2380D02* X7781D01* Y2340D02* X7834D01* X7781Y2336D02* X7834D01* X7781Y2332D02* X7834D01* Y2328D02* X7781D01* X7834Y2324D02* X7781D01* Y2316D02* X7834D01* X7781Y2320D02* X7834D01* Y2312D02* X7781D01* X7834Y2308D02* X7781D01* Y2300D02* X7834D01* X7781Y2304D02* X7834D01* X7781Y2428D02* X7834D01* X7781Y2432D02* X7834D01* Y2436D02* X7781D01* X7834Y2440D02* X7781D01* Y2448D02* X7834D01* X7781Y2444D02* X7834D01* Y2452D02* X7781D01* X7834Y2456D02* X7781D01* X7834Y2460D02* X7781D01* Y2464D02* X7834D01* X7781Y2468D02* X7834D01* Y2476D02* X7781D01* X7834Y2472D02* X7781D01* Y2480D02* X7834D01* X7781Y2484D02* X7834D01* X7781Y2488D02* X7834D01* Y2492D02* X7781D01* X7834Y2496D02* X7781D01* Y2504D02* X7834D01* X7781Y2500D02* X7834D01* Y2508D02* X7781D01* X7834Y2512D02* X7781D01* Y2516D02* X7834D01* X7781Y2520D02* X7834D01* X7781Y2524D02* X7834D01* Y2532D02* X7781D01* X7834Y2528D02* X7781D01* Y2536D02* X7834D01* X7781Y2540D02* X7834D01* Y2544D02* X7781D01* X7834Y2548D02* X7781D01* X7834Y2552D02* X7781D01* X7834Y2556D02* X7781D01* X7834Y2560D02* X7781D01* Y2568D02* X7834D01* X7781Y2564D02* X7834D01* Y2572D02* X7781D01* X7834Y2576D02* X7781D01* Y2580D02* X7834D01* X7781Y2584D02* X7834D01* X7781Y2588D02* X7834D01* Y2596D02* X7781D01* X7834Y2592D02* X7781D01* Y2600D02* X7834D01* X7781Y2604D02* X7834D01* Y2608D02* X7781D01* X7834Y2612D02* X7781D01* X7834Y2616D02* X7781D01* X7834Y2620D02* X7781D01* X7834Y2624D02* X7781D01* Y2628D02* X7834D01* X7781Y2632D02* X7834D01* X7781Y2636D02* X7834D01* Y2644D02* X7781D01* X7834Y2640D02* X7781D01* Y2648D02* X7834D01* X7781Y2652D02* X7834D01* Y2660D02* X7781D01* X7834Y2656D02* X7781D01* Y2664D02* X7834D01* X7781Y2668D02* X7834D01* Y2672D02* X7781D01* X7834Y2676D02* X7781D01* X7834Y2680D02* X7781D01* Y2688D02* X7834D01* X7781Y2684D02* X7834D01* Y2692D02* X7781D01* X7834Y2696D02* X7781D01* X7834Y2700D02* X7781D01* Y2704D02* X7834D01* X7781Y2708D02* X7834D01* Y2716D02* X7781D01* X7834Y2712D02* X7781D01* Y2720D02* X7834D01* X7781Y2724D02* X7834D01* Y2728D02* X7781D01* X7834Y2732D02* X7781D01* X7834Y2736D02* X7781D01* X7834Y2740D02* X7781D01* X7834Y2744D02* X7781D01* Y2752D02* X7834D01* X7781Y2748D02* X7834D01* Y2756D02* X7781D01* X7834Y2760D02* X7781D01* Y2764D02* X7834D01* X7781Y2768D02* X7834D01* X7781Y2772D02* X7834D01* Y2780D02* X7781D01* X7834Y2776D02* X7781D01* Y2784D02* X7834D01* X7781Y2788D02* X7834D01* Y2792D02* X7781D01* X7834Y2796D02* X7781D01* X7834Y2800D02* X7781D01* X7834Y2804D02* X7781D01* X7834Y2808D02* X7781D01* Y2816D02* X7834D01* X7781Y2812D02* X7834D01* Y2820D02* X7781D01* X7834Y2824D02* X7781D01* Y2828D02* X7834D01* X7781Y2832D02* X7834D01* X7781Y2836D02* X7834D01* Y2844D02* X7781D01* X7834Y2840D02* X7781D01* Y2848D02* X7834D01* X7781Y2852D02* X7834D01* Y2856D02* X7781D01* X7834Y2860D02* X7781D01* X7834Y2864D02* X7781D01* Y2872D02* X7834D01* X7781Y2868D02* X7834D01* Y2900D02* X7781D01* X7834Y2896D02* X7781D01* Y2904D02* X7834D01* X7781Y2908D02* X7834D01* Y2932D02* X7781D01* X7834Y2936D02* X7781D01* Y2944D02* X7834D01* X7781Y2940D02* X7834D01* Y2948D02* X7781D01* X7834Y2952D02* X7781D01* X7834Y2956D02* X7781D01* Y2960D02* X7834D01* X7781Y2964D02* X7834D01* Y2988D02* X7781D01* X7834Y2992D02* X7781D01* Y3000D02* X7834D01* X7781Y2996D02* X7834D01* Y3004D02* X7781D01* X7834Y3008D02* X7781D01* Y3016D02* X7834D01* X7781Y3020D02* X7834D01* Y3012D02* X7781D01* X7730Y3026D02* X7725Y3029D01* X7719Y3037D01* Y3057D02* X7722Y3062D01* X7730Y3069D01* X7761Y3057D02* X7755Y3065D01* X7750Y3069D01* X7781Y3108D02* X7834D01* X7781Y3112D02* X7834D01* Y3116D02* X7781D01* X7834Y3120D02* X7781D01* X7778Y3128D02* X7834D01* X7781Y3124D02* X7834D01* Y3132D02* X7166D01* X7188Y3124D02* X7166D01* Y3128D02* X7190D01* X7189Y3126D02* Y2429D01* X7188Y2456D02* X7166D01* X7188Y2448D02* X6710D01* Y2444D02* X7188D01* X7166Y2460D02* X7188D01* Y2464D02* X7166D01* X7188Y2452D02* X6710D01* Y2456D02* X6732D01* X6710Y2460D02* X6731D01* X6736Y2453D02* X7161D01* X7165Y2457D02* X7161Y2453D01* X7188Y2436D02* X6710D01* Y2432D02* X7188D01* X7165Y2457D02* Y3488D01* X7166Y3480D02* X7188D01* X7166Y3476D02* X7188D01* X7166Y3472D02* X7188D01* Y3468D02* X7166D01* X7188Y3464D02* X7166D01* Y3456D02* X7188D01* X7166Y3460D02* X7188D01* Y3452D02* X7166D01* X7188Y3448D02* X7166D01* Y3444D02* X7188D01* X7166Y3440D02* X7188D01* X7166Y3436D02* X7188D01* Y3428D02* X7166D01* X7188Y3432D02* X7166D01* Y3424D02* X7188D01* X7166Y3420D02* X7188D01* Y3396D02* X7166D01* X7188Y3392D02* X7166D01* Y3384D02* X7188D01* X7166Y3388D02* X7188D01* X7166Y3416D02* X7188D01* X7166Y3412D02* X7188D01* X7166Y3408D02* X7188D01* Y3404D02* X7166D01* X7188Y3400D02* X7166D01* Y3380D02* X7188D01* X7166Y3376D02* X7188D01* X7166Y3372D02* X7188D01* Y3364D02* X7166D01* X7188Y3368D02* X7166D01* Y3360D02* X7188D01* X7166Y3356D02* X7188D01* Y3352D02* X7166D01* X7188Y3348D02* X7166D01* X7188Y3344D02* X7166D01* X7188Y3340D02* X7166D01* X7188Y3336D02* X7166D01* Y3328D02* X7188D01* X7166Y3332D02* X7188D01* Y3324D02* X7166D01* X7188Y3320D02* X7166D01* Y3316D02* X7188D01* X7166Y3312D02* X7188D01* X7166Y3308D02* X7188D01* Y3300D02* X7166D01* X7188Y3304D02* X7166D01* Y3296D02* X7188D01* X7166Y3292D02* X7188D01* Y3288D02* X7166D01* X7188Y3284D02* X7166D01* X7188Y3280D02* X7166D01* X7188Y3276D02* X7166D01* X7188Y3272D02* X7166D01* Y3268D02* X7188D01* X7166Y3264D02* X7188D01* X7166Y3260D02* X7188D01* Y3252D02* X7166D01* X7188Y3256D02* X7166D01* X7188Y3244D02* X7166D01* X7188Y3248D02* X7166D01* Y3240D02* X7188D01* X7166Y3236D02* X7188D01* X7166Y3232D02* X7188D01* X7166Y3228D02* X7188D01* Y3224D02* X7166D01* X7188Y3220D02* X7166D01* X7188Y3216D02* X7166D01* X7188Y3212D02* X7166D01* X7188Y3208D02* X7166D01* Y3204D02* X7188D01* X7166Y3200D02* X7188D01* X7166Y3196D02* X7188D01* X7166Y3192D02* X7188D01* X7166Y3188D02* X7188D01* Y3180D02* X7166D01* X7188Y3184D02* X7166D01* Y3176D02* X7188D01* X7166Y3172D02* X7188D01* X7193Y3153D02* X7776D01* X7780Y3157D01* X7779Y3156D02* X7834D01* Y3152D02* X7166D01* X7193Y3153D02* X7189Y3157D01* X7188Y3164D02* X7166D01* X7188Y3168D02* X7166D01* Y3160D02* X7188D01* X7166Y3144D02* X7834D01* Y3148D02* X7166D01* X7189Y3156D02* X7166D01* X7189Y3157D02* Y4382D01* X7188Y4376D02* X6489D01* Y4368D02* X7188D01* X7165Y4354D02* X7161Y4358D01* X7166Y4340D02* X7188D01* X7166Y4344D02* X7188D01* X7166Y4348D02* X7188D01* Y4336D02* X7166D01* X7188Y4332D02* X7166D01* X7188Y4328D02* X7166D01* Y4324D02* X7188D01* X7166Y4320D02* X7188D01* X7166Y4316D02* X7188D01* X7166Y4312D02* X7188D01* X7166Y4308D02* X7188D01* Y4304D02* X7166D01* X7188Y4300D02* X7166D01* Y4292D02* X7188D01* X7166Y4296D02* X7188D01* Y4288D02* X7166D01* X7188Y4284D02* X7166D01* Y4276D02* X7188D01* X7166Y4280D02* X7188D01* Y4272D02* X7166D01* X7188Y4268D02* X7166D01* X7188Y4264D02* X7166D01* Y4260D02* X7188D01* X7166Y4256D02* X7188D01* X7166Y4252D02* X7188D01* X7166Y4248D02* X7188D01* X7166Y4244D02* X7188D01* Y4240D02* X7166D01* X7188Y4236D02* X7166D01* Y4228D02* X7188D01* X7166Y4232D02* X7188D01* Y4224D02* X7166D01* X7188Y4220D02* X7166D01* X7188Y4216D02* X7166D01* Y4212D02* X7188D01* X7166Y4208D02* X7188D01* Y4200D02* X7166D01* X7188Y4204D02* X7166D01* Y4196D02* X7188D01* X7166Y4192D02* X7188D01* Y4372D02* X6489D01* X6512Y4384D02* X6489D01* X6511Y4388D02* X6489D01* Y4396D02* X6511D01* X6489Y4392D02* X6511D01* X6512Y4386D02* X6516Y4382D01* X6489Y4380D02* X7188D01* X7189Y4382D02* X6516D01* X6511Y4400D02* X6489D01* Y4404D02* X6511D01* X6489Y4408D02* X6511D01* Y4416D02* X6489D01* X6511Y4412D02* X6489D01* Y4420D02* X6511D01* X6489Y4424D02* X6511D01* Y4428D02* X6489D01* X6511Y4432D02* X6489D01* X6511Y4436D02* X6489D01* Y4444D02* X6511D01* X6489Y4440D02* X6511D01* X6489Y4452D02* X6511D01* X6489Y4448D02* X6511D01* Y4456D02* X6489D01* X6511Y4460D02* X6489D01* X6511Y4464D02* X6489D01* Y4468D02* X6511D01* X6489Y4472D02* X6511D01* Y4480D02* X6489D01* X6511Y4476D02* X6489D01* Y4484D02* X6511D01* X6489Y4488D02* X6511D01* Y4492D02* X6489D01* X6511Y4496D02* X6489D01* X6511Y4500D02* X6489D01* X6511Y4504D02* X6489D01* X6511Y4508D02* X6489D01* Y4512D02* X6511D01* X6489Y4516D02* X6511D01* X6489Y4520D02* X6511D01* Y4528D02* X6489D01* X6511Y4524D02* X6489D01* X6511Y4536D02* X6489D01* X6511Y4532D02* X6489D01* Y4540D02* X6511D01* X6489Y4544D02* X6511D01* X6489Y4548D02* X6511D01* X6489Y4552D02* X6511D01* Y4556D02* X6489D01* X6511Y4560D02* X6489D01* X6511Y4564D02* X6489D01* X6511Y4568D02* X6489D01* X6511Y4572D02* X6489D01* Y4576D02* X6511D01* X6489Y4580D02* X6511D01* X6489Y4584D02* X6511D01* Y4592D02* X6489D01* X6511Y4588D02* X6489D01* Y4596D02* X6511D01* X6489Y4600D02* X6511D01* X6484Y4650D02* X4571D01* X4544Y4672D02* X6511D01* Y4668D02* X4544D01* X4569Y4648D02* X4544D01* Y4656D02* X6511D01* X6489Y4644D02* X6511D01* Y4640D02* X6489D01* X6511Y4636D02* X6489D01* Y4604D02* X6511D01* X6489Y4608D02* X6511D01* X6489Y4612D02* X6511D01* Y4616D02* X6489D01* X6511Y4620D02* X6489D01* Y4628D02* X6511D01* X6489Y4624D02* X6511D01* Y4632D02* X6489D01* X6484Y4650D02* X6488Y4646D01* Y4358D01* X6489Y4364D02* X7188D01* X7166Y4352D02* X7188D01* Y4360D02* X6489D01* X6488Y4358D02* X6744D01* X6748Y4354D01* X6747Y4356D02* X6773D01* X6772Y4354D02* Y3933D01* X6771Y3936D02* X6521D01* X6543Y3929D02* X6547Y3933D01* X6542Y3928D02* X6521D01* Y3924D02* X6542D01* X6521Y3932D02* X6545D01* X6521Y3940D02* X6771D01* X6748Y3961D02* X6744Y3957D01* X6520D01* X6521Y3956D02* X6771D01* X6749Y3960D02* X6771D01* Y3964D02* X6749D01* X6771Y3968D02* X6749D01* Y3976D02* X6771D01* X6749Y3972D02* X6771D01* Y3980D02* X6749D01* X6771Y3984D02* X6749D01* Y3988D02* X6771D01* X6749Y3992D02* X6771D01* X6749Y3996D02* X6771D01* Y4004D02* X6749D01* X6771Y4000D02* X6749D01* Y4008D02* X6771D01* X6749Y4012D02* X6771D01* Y4020D02* X6749D01* X6771Y4016D02* X6749D01* Y4024D02* X6771D01* X6749Y4028D02* X6771D01* Y4032D02* X6749D01* X6771Y4036D02* X6749D01* X6771Y4040D02* X6749D01* X6771Y4044D02* X6749D01* X6771Y4048D02* X6749D01* Y4052D02* X6771D01* X6749Y4056D02* X6771D01* X6749Y4060D02* X6771D01* Y4068D02* X6749D01* X6771Y4064D02* X6749D01* Y4072D02* X6771D01* X6749Y4076D02* X6771D01* Y4100D02* X6749D01* X6771Y4104D02* X6749D01* Y4112D02* X6771D01* X6749Y4108D02* X6771D01* X6776Y4358D02* X7161D01* X7188Y4356D02* X7164D01* X7165Y4354D02* Y3520D01* X7188Y3504D02* X6521D01* Y3508D02* X7188D01* X7166Y3520D02* X7188D01* Y3524D02* X7166D01* X7188Y3528D02* X7166D01* X7188Y3532D02* X7166D01* X7188Y3536D02* X7166D01* X7188Y3544D02* X7166D01* X7188Y3540D02* X7166D01* Y3548D02* X7188D01* X7166Y3552D02* X7188D01* X7166Y3556D02* X7188D01* X7166Y3560D02* X7188D01* Y3564D02* X7166D01* X7188Y3568D02* X7166D01* X7188Y3572D02* X7166D01* X7188Y3576D02* X7166D01* X7188Y3580D02* X7166D01* Y3588D02* X7188D01* X7166Y3584D02* X7188D01* Y3592D02* X7166D01* X7188Y3596D02* X7166D01* X7188Y3600D02* X7166D01* Y3604D02* X7188D01* X7166Y3608D02* X7188D01* Y3616D02* X7166D01* X7188Y3612D02* X7166D01* Y3620D02* X7188D01* X7166Y3624D02* X7188D01* Y3628D02* X7166D01* X7188Y3632D02* X7166D01* X7188Y3636D02* X7166D01* X7188Y3640D02* X7166D01* X7188Y3644D02* X7166D01* Y3652D02* X7188D01* X7166Y3648D02* X7188D01* Y3656D02* X7166D01* X7188Y3660D02* X7166D01* X7188Y3664D02* X7166D01* Y3668D02* X7188D01* X7166Y3672D02* X7188D01* Y3680D02* X7166D01* X7188Y3676D02* X7166D01* Y3684D02* X7188D01* X7166Y3688D02* X7188D01* Y3692D02* X7166D01* X7188Y3696D02* X7166D01* X7188Y3700D02* X7166D01* X7093Y3626D02* X7114D01* Y3604D01* Y3584D02* Y3563D01* X7093D01* X7073D02* X7051D01* Y3584D01* Y3604D02* Y3626D01* X7073D01* X6896Y3819D02* X6917D01* Y3797D01* Y3777D02* Y3756D01* X6896D01* X6876D02* X6854D01* Y3777D01* Y3797D02* Y3819D01* X6876D01* X7188Y3704D02* X7166D01* X7188Y3708D02* X7166D01* Y3716D02* X7188D01* X7166Y3712D02* X7188D01* Y3720D02* X7166D01* X7188Y3724D02* X7166D01* X7188Y3728D02* X7166D01* Y3732D02* X7188D01* X7166Y3736D02* X7188D01* X7166Y3740D02* X7188D01* X7166Y3744D02* X7188D01* X7166Y3748D02* X7188D01* Y3752D02* X7166D01* X7188Y3756D02* X7166D01* Y3764D02* X7188D01* X7166Y3760D02* X7188D01* Y3768D02* X7166D01* X7188Y3772D02* X7166D01* Y3780D02* X7188D01* X7166Y3776D02* X7188D01* Y3784D02* X7166D01* X7188Y3788D02* X7166D01* X7188Y3792D02* X7166D01* Y3796D02* X7188D01* X7166Y3800D02* X7188D01* X7166Y3804D02* X7188D01* X7166Y3808D02* X7188D01* X7166Y3812D02* X7188D01* Y3816D02* X7166D01* X7188Y3820D02* X7166D01* Y3828D02* X7188D01* X7166Y3824D02* X7188D01* Y3832D02* X7166D01* X7188Y3836D02* X7166D01* Y3840D02* X7188D01* X7166Y3844D02* X7188D01* X7166Y3848D02* X7188D01* Y3856D02* X7166D01* X7188Y3852D02* X7166D01* Y3860D02* X7188D01* X7166Y3864D02* X7188D01* X7166Y3868D02* X7188D01* X7166Y3872D02* X7188D01* X7166Y3876D02* X7188D01* Y3880D02* X7166D01* X7188Y3884D02* X7166D01* Y3892D02* X7188D01* X7166Y3888D02* X7188D01* Y3896D02* X7166D01* X7188Y3900D02* X7166D01* Y3904D02* X7188D01* X7166Y3908D02* X7188D01* X7166Y3912D02* X7188D01* X7166Y3916D02* X7188D01* X7166Y3920D02* X7188D01* Y3924D02* X7166D01* X7188Y3928D02* X7166D01* X7188Y3932D02* X7166D01* Y3936D02* X7188D01* X7166Y3940D02* X7188D01* Y3944D02* X7166D01* X7188Y3948D02* X7166D01* X7188Y3952D02* X7166D01* X7188Y3956D02* X7166D01* Y3960D02* X7188D01* X7166Y3964D02* X7188D01* X7166Y3968D02* X7188D01* Y3976D02* X7166D01* X7188Y3972D02* X7166D01* Y3980D02* X7188D01* X7166Y3984D02* X7188D01* Y4008D02* X7166D01* X7188Y4012D02* X7166D01* Y4020D02* X7188D01* X7166Y4016D02* X7188D01* X7073Y4012D02* X7051D01* Y3990D01* Y3970D02* Y3949D01* X7073D01* X7093D02* X7114D01* Y3970D01* Y3990D02* Y4012D01* X7093D01* X7166Y3988D02* X7188D01* X7166Y3992D02* X7188D01* X7166Y3996D02* X7188D01* Y4000D02* X7166D01* X7188Y4004D02* X7166D01* Y4024D02* X7188D01* X7166Y4028D02* X7188D01* X7166Y4032D02* X7188D01* Y4040D02* X7166D01* X7188Y4036D02* X7166D01* Y4044D02* X7188D01* X7166Y4048D02* X7188D01* X7166Y4052D02* X7188D01* X7166Y4056D02* X7188D01* X7166Y4060D02* X7188D01* Y4064D02* X7166D01* X7188Y4068D02* X7166D01* Y4076D02* X7188D01* X7166Y4072D02* X7188D01* Y4080D02* X7166D01* X7188Y4084D02* X7166D01* Y4088D02* X7188D01* X7166Y4092D02* X7188D01* X7166Y4096D02* X7188D01* Y4104D02* X7166D01* X7188Y4100D02* X7166D01* Y4108D02* X7188D01* X7166Y4112D02* X7188D01* X7166Y4116D02* X7188D01* X7166Y4120D02* X7188D01* X7166Y4124D02* X7188D01* Y4128D02* X7166D01* X7188Y4132D02* X7166D01* Y4140D02* X7188D01* X7166Y4136D02* X7188D01* Y4144D02* X7166D01* X7188Y4148D02* X7166D01* Y4152D02* X7188D01* X7166Y4156D02* X7188D01* X7166Y4160D02* X7188D01* Y4168D02* X7166D01* X7188Y4164D02* X7166D01* Y4172D02* X7188D01* X7166Y4176D02* X7188D01* Y4180D02* X7166D01* X7188Y4184D02* X7166D01* X7188Y4188D02* X7166D01* X6075Y4371D02* X6067Y4376D01* X6062Y4384D01* Y4404D02* X6067Y4412D01* X6075Y4418D01* X6095D02* X6103Y4413D01* X6108Y4404D01* Y4384D02* X6103Y4377D01* X6095Y4371D01* X6175Y4271D02* X6167Y4276D01* X6162Y4284D01* Y4304D02* X6167Y4312D01* X6175Y4318D01* X6195D02* X6203Y4313D01* X6208Y4304D01* Y4284D02* X6203Y4277D01* X6195Y4271D01* X6275Y4371D02* X6267Y4376D01* X6262Y4384D01* Y4404D02* X6267Y4412D01* X6275Y4418D01* X6295D02* X6303Y4413D01* X6308Y4404D01* Y4384D02* X6303Y4377D01* X6295Y4371D01* X6375Y4271D02* X6367Y4276D01* X6362Y4284D01* Y4304D02* X6367Y4312D01* X6375Y4318D01* X6395D02* X6403Y4313D01* X6408Y4304D01* Y4284D02* X6403Y4277D01* X6395Y4271D01* X6295Y4171D02* X6303Y4177D01* X6308Y4184D01* Y4204D02* X6303Y4213D01* X6295Y4218D01* X6275D02* X6267Y4212D01* X6262Y4204D01* Y4184D02* X6267Y4176D01* X6275Y4171D01* X6175D02* X6167Y4176D01* X6162Y4184D01* Y4204D02* X6167Y4212D01* X6175Y4218D01* X6195D02* X6203Y4213D01* X6208Y4204D01* Y4184D02* X6203Y4177D01* X6195Y4171D01* Y4071D02* X6203Y4077D01* X6208Y4084D01* Y4104D02* X6203Y4113D01* X6195Y4118D01* X6175D02* X6167Y4112D01* X6162Y4104D01* Y4084D02* X6167Y4076D01* X6175Y4071D01* Y3871D02* X6167Y3876D01* X6162Y3884D01* Y3904D02* X6167Y3912D01* X6175Y3918D01* X6195D02* X6203Y3913D01* X6208Y3904D01* Y3884D02* X6203Y3877D01* X6195Y3871D01* X6275Y3971D02* X6267Y3976D01* X6262Y3984D01* Y4004D02* X6267Y4012D01* X6275Y4018D01* X6295D02* X6303Y4013D01* X6308Y4004D01* Y3984D02* X6303Y3977D01* X6295Y3971D01* X6375Y3871D02* X6367Y3876D01* X6362Y3884D01* Y3904D02* X6367Y3912D01* X6375Y3918D01* X6395D02* X6403Y3913D01* X6408Y3904D01* Y3884D02* X6403Y3877D01* X6395Y3871D01* X6521Y3848D02* X6542D01* X6521Y3844D02* X6542D01* X6521Y3840D02* X6542D01* Y3836D02* X6521D01* X6542Y3832D02* X6521D01* Y3824D02* X6542D01* X6521Y3828D02* X6542D01* Y3820D02* X6521D01* X6542Y3816D02* X6521D01* X6542Y3812D02* X6521D01* Y3808D02* X6542D01* X6521Y3804D02* X6542D01* Y3796D02* X6521D01* X6542Y3800D02* X6521D01* Y3792D02* X6542D01* X6521Y3788D02* X6542D01* Y3784D02* X6521D01* X6542Y3780D02* X6521D01* X6542Y3776D02* X6521D01* Y3768D02* X6542D01* X6521Y3772D02* X6542D01* X6521Y3760D02* X6542D01* X6521Y3764D02* X6542D01* Y3756D02* X6521D01* X6542Y3752D02* X6521D01* X6542Y3748D02* X6521D01* Y3744D02* X6542D01* X6521Y3740D02* X6542D01* Y3732D02* X6521D01* X6542Y3736D02* X6521D01* Y3728D02* X6542D01* X6521Y3724D02* X6542D01* Y3720D02* X6521D01* X6542Y3716D02* X6521D01* X6542Y3712D02* X6521D01* X6542Y3708D02* X6521D01* X6542Y3704D02* X6521D01* Y3700D02* X6542D01* X6521Y3696D02* X6542D01* X6521Y3692D02* X6542D01* Y3684D02* X6521D01* X6542Y3688D02* X6521D01* Y3680D02* X6542D01* X6521Y3676D02* X6542D01* Y3668D02* X6521D01* X6542Y3672D02* X6521D01* Y3664D02* X6542D01* X6521Y3660D02* X6542D01* Y3656D02* X6521D01* X6542Y3652D02* X6521D01* X6542Y3648D02* X6521D01* X6542Y3644D02* X6521D01* X6542Y3640D02* X6521D01* Y3636D02* X6542D01* X6521Y3632D02* X6542D01* X6521Y3628D02* X6542D01* Y3620D02* X6521D01* X6542Y3624D02* X6521D01* Y3616D02* X6542D01* X6521Y3612D02* X6542D01* Y3588D02* X6521D01* X6542Y3584D02* X6521D01* Y3576D02* X6542D01* X6521Y3580D02* X6542D01* X6275Y3771D02* X6267Y3776D01* X6262Y3784D01* Y3804D02* X6267Y3812D01* X6275Y3818D01* X6295D02* X6303Y3813D01* X6308Y3804D01* Y3784D02* X6303Y3777D01* X6295Y3771D01* X6375Y3671D02* X6367Y3676D01* X6362Y3684D01* Y3704D02* X6367Y3712D01* X6375Y3718D01* X6395D02* X6403Y3713D01* X6408Y3704D01* Y3684D02* X6403Y3677D01* X6395Y3671D01* X6521Y3608D02* X6542D01* X6521Y3604D02* X6542D01* X6521Y3600D02* X6542D01* Y3596D02* X6521D01* X6542Y3592D02* X6521D01* Y3572D02* X6542D01* X6521Y3568D02* X6542D01* X6521Y3564D02* X6542D01* Y3556D02* X6521D01* X6542Y3560D02* X6521D01* Y3552D02* X6542D01* X6521Y3548D02* X6542D01* Y3536D02* X6521D01* X6542Y3540D02* X6521D01* X6542Y3544D02* X6521D01* Y3528D02* X6542D01* X6521Y3532D02* X6542D01* X6543Y3520D02* X6547Y3516D01* X6542Y3524D02* X6521D01* X6542Y3520D02* X6521D01* Y3516D02* X6546D01* X6547D02* X7161D01* X7165Y3520D01* X7163Y3516D02* X7188D01* Y3512D02* X6521D01* X6543Y3520D02* Y3929D01* X6542Y3916D02* X6521D01* X6542Y3920D02* X6521D01* Y3912D02* X6542D01* X6521Y3908D02* X6542D01* X6521Y3904D02* X6542D01* Y3900D02* X6521D01* X6542Y3896D02* X6521D01* Y3888D02* X6542D01* X6521Y3892D02* X6542D01* Y3884D02* X6521D01* X6542Y3880D02* X6521D01* X6542Y3876D02* X6521D01* Y3872D02* X6542D01* X6521Y3868D02* X6542D01* Y3860D02* X6521D01* X6542Y3864D02* X6521D01* Y3856D02* X6542D01* X6521Y3852D02* X6542D01* X6547Y3933D02* X6772D01* X6771Y3944D02* X6521D01* Y3952D02* X6771D01* X6748Y3961D02* Y4354D01* X6772D02* X6776Y4358D01* X6771Y4348D02* X6749D01* X6771Y4352D02* X6749D01* Y4344D02* X6771D01* X6749Y4340D02* X6771D01* X6749Y4336D02* X6771D01* Y4332D02* X6749D01* X6771Y4328D02* X6749D01* Y4320D02* X6771D01* X6749Y4324D02* X6771D01* Y4316D02* X6749D01* X6771Y4312D02* X6749D01* Y4308D02* X6771D01* X6749Y4304D02* X6771D01* X6749Y4300D02* X6771D01* Y4292D02* X6749D01* X6771Y4296D02* X6749D01* Y4288D02* X6771D01* X6749Y4284D02* X6771D01* Y4260D02* X6749D01* X6771Y4256D02* X6749D01* Y4248D02* X6771D01* X6749Y4252D02* X6771D01* X6749Y4280D02* X6771D01* X6749Y4276D02* X6771D01* X6749Y4272D02* X6771D01* Y4268D02* X6749D01* X6771Y4264D02* X6749D01* Y4244D02* X6771D01* X6749Y4240D02* X6771D01* X6749Y4236D02* X6771D01* Y4228D02* X6749D01* X6771Y4232D02* X6749D01* Y4224D02* X6771D01* X6749Y4220D02* X6771D01* Y4216D02* X6749D01* X6771Y4212D02* X6749D01* X6771Y4208D02* X6749D01* X6771Y4204D02* X6749D01* X6771Y4200D02* X6749D01* Y4192D02* X6771D01* X6749Y4196D02* X6771D01* Y4188D02* X6749D01* X6771Y4184D02* X6749D01* Y4180D02* X6771D01* X6749Y4176D02* X6771D01* X6749Y4172D02* X6771D01* Y4164D02* X6749D01* X6771Y4168D02* X6749D01* Y4160D02* X6771D01* X6749Y4156D02* X6771D01* Y4152D02* X6749D01* X6771Y4148D02* X6749D01* X6771Y4144D02* X6749D01* X6771Y4140D02* X6749D01* X6771Y4136D02* X6749D01* Y4128D02* X6771D01* X6749Y4132D02* X6771D01* Y4124D02* X6749D01* X6771Y4120D02* X6749D01* X6771Y4116D02* X6749D01* Y4096D02* X6771D01* X6749Y4092D02* X6771D01* Y4088D02* X6749D01* X6771Y4084D02* X6749D01* X6771Y4080D02* X6749D01* X6771Y3948D02* X6521D01* X6520Y3957D02* Y3492D01* X7161D01* X7165Y3488D01* X7188Y3492D02* X6521D01* Y3496D02* X7188D01* X7166Y3484D02* X7188D01* Y3488D02* X7166D01* X7188Y3500D02* X6521D01* X6445Y3421D02* X6453Y3427D01* X6458Y3434D01* Y3454D02* X6453Y3463D01* X6445Y3468D01* X6425D02* X6417Y3462D01* X6412Y3454D01* Y3434D02* X6417Y3426D01* X6425Y3421D01* X6345Y3521D02* X6353Y3527D01* X6358Y3534D01* Y3554D02* X6353Y3563D01* X6345Y3568D01* X6325D02* X6317Y3562D01* X6312Y3554D01* Y3534D02* X6317Y3526D01* X6325Y3521D01* X6295Y3571D02* X6303Y3577D01* X6308Y3584D01* Y3604D02* X6303Y3613D01* X6295Y3618D01* X6275D02* X6267Y3612D01* X6262Y3604D01* Y3584D02* X6267Y3576D01* X6275Y3571D01* X6195Y3671D02* X6203Y3677D01* X6208Y3684D01* Y3704D02* X6203Y3713D01* X6195Y3718D01* X6175D02* X6167Y3712D01* X6162Y3704D01* Y3684D02* X6167Y3676D01* X6175Y3671D01* Y3471D02* X6167Y3476D01* X6162Y3484D01* Y3504D02* X6167Y3512D01* X6175Y3518D01* X6195D02* X6203Y3513D01* X6208Y3504D01* Y3484D02* X6203Y3477D01* X6195Y3471D01* X6275Y3371D02* X6267Y3376D01* X6262Y3384D01* Y3404D02* X6267Y3412D01* X6275Y3418D01* X6295D02* X6303Y3413D01* X6308Y3404D01* Y3384D02* X6303Y3377D01* X6295Y3371D01* X6175Y3271D02* X6167Y3276D01* X6162Y3284D01* Y3304D02* X6167Y3312D01* X6175Y3318D01* X6195D02* X6203Y3313D01* X6208Y3304D01* Y3284D02* X6203Y3277D01* X6195Y3271D01* X6275Y3171D02* X6267Y3176D01* X6262Y3184D01* Y3204D02* X6267Y3212D01* X6275Y3218D01* X6295D02* X6303Y3213D01* X6308Y3204D01* Y3184D02* X6303Y3177D01* X6295Y3171D01* X6395Y3071D02* X6403Y3077D01* X6408Y3084D01* Y3104D02* X6403Y3113D01* X6395Y3118D01* X6375D02* X6367Y3112D01* X6362Y3104D01* Y3084D02* X6367Y3076D01* X6375Y3071D01* X6295Y2971D02* X6303Y2977D01* X6308Y2984D01* Y3004D02* X6303Y3013D01* X6295Y3018D01* X6275D02* X6267Y3012D01* X6262Y3004D01* Y2984D02* X6267Y2976D01* X6275Y2971D01* X6195Y3071D02* X6203Y3077D01* X6208Y3084D01* Y3104D02* X6203Y3113D01* X6195Y3118D01* X6175D02* X6167Y3112D01* X6162Y3104D01* Y3084D02* X6167Y3076D01* X6175Y3071D01* X6045Y3021D02* X6053Y3027D01* X6058Y3034D01* Y3054D02* X6053Y3063D01* X6045Y3068D01* X6025D02* X6017Y3062D01* X6012Y3054D01* Y3034D02* X6017Y3026D01* X6025Y3021D01* X5995Y2871D02* X6003Y2877D01* X6008Y2884D01* Y2904D02* X6003Y2913D01* X5995Y2918D01* X5975D02* X5967Y2912D01* X5962Y2904D01* Y2884D02* X5967Y2876D01* X5975Y2871D01* X6195D02* X6203Y2877D01* X6208Y2884D01* Y2904D02* X6203Y2913D01* X6195Y2918D01* X6175D02* X6167Y2912D01* X6162Y2904D01* Y2884D02* X6167Y2876D01* X6175Y2871D01* Y2575D02* X6197D01* Y2553D01* Y2533D02* Y2512D01* X6175D01* X6155D02* X6134D01* Y2533D01* Y2553D02* Y2575D01* X6155D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D382* X7267Y4343D02* D03* Y4488D02* D03* Y4634D02* D03* X7244Y4764D02* D03* X7127D02* D03* X7110Y4681D02* D03* X7119Y4634D02* D03* Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X6873Y4557D02* D03* X6752Y4189D02* D03* X6850Y4213D02* D03* X6854Y4272D02* D03* X6976Y4323D02* D03* X6992Y4433D02* D03* X7104Y4467D02* D03* X7119Y4441D02* D03* X7104Y4373D02* D03* X7119Y4347D02* D03* X7104Y4321D02* D03* X7119Y4295D02* D03* X7117Y4244D02* D03* X7119Y4212D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7143Y4126D02* D03* X7267Y4197D02* D03* Y4051D02* D03* Y3905D02* D03* Y3760D02* D03* Y3614D02* D03* Y3469D02* D03* Y3323D02* D03* Y3177D02* D03* X7293Y3132D02* D03* X7104Y3156D02* D03* X7119Y3130D02* D03* X7060Y3105D02* D03* X7061Y3145D02* D03* Y3185D02* D03* X7104Y3208D02* D03* X7060Y3230D02* D03* X7061Y3270D02* D03* X7119Y3275D02* D03* X7104Y3301D02* D03* X7119Y3327D02* D03* X7104Y3353D02* D03* X7120Y3428D02* D03* X7097Y3459D02* D03* X7113Y3487D02* D03* X7097Y3513D02* D03* X7104Y3543D02* D03* X7141Y3544D02* D03* X7119Y3644D02* D03* X7126Y3679D02* D03* X7119Y3712D02* D03* X7104Y3738D02* D03* X7119Y3764D02* D03* X7104Y3790D02* D03* X7119Y3858D02* D03* X7104Y3884D02* D03* X7119Y3910D02* D03* X7094Y3927D02* D03* X6910Y4005D02* D03* X6741Y3737D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6656Y4220D02* D03* X6574Y4365D02* D03* X6440Y4780D02* D03* X6322D02* D03* X5730Y4187D02* D03* X5629Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5284D02* D03* X5109Y4090D02* D03* X5142Y3999D02* D03* Y3909D02* D03* X5188Y3803D02* D03* X5218Y3699D02* D03* X5216Y3643D02* D03* X5091Y3652D02* D03* Y3557D02* D03* X5188Y3478D02* D03* X5088Y3433D02* D03* X5091Y3322D02* D03* X5175Y3351D02* D03* X5252Y3336D02* D03* X5291Y3404D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5378Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* X5618Y3231D02* D03* X5770Y3389D02* D03* X5768Y3300D02* D03* X5827Y3128D02* D03* X6099Y3154D02* D03* X6037Y3150D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* X6057Y3296D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5850D02* D03* X5881Y3442D02* D03* X5936Y3447D02* D03* X5979Y3472D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6067Y3673D02* D03* X5975Y3810D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X5876Y4150D02* D03* X5943Y4130D02* D03* X5944Y4185D02* D03* X5971Y4360D02* D03* X5950Y4721D02* D03* X5600D02* D03* X5250D02* D03* X4907Y4717D02* D03* X4577D02* D03* X4319Y4780D02* D03* X4193D02* D03* X3763Y4848D02* D03* X3712Y4638D02* D03* X3678Y4567D02* D03* X3662Y4629D02* D03* X3637Y4665D02* D03* X3612Y4616D02* D03* X3587Y4642D02* D03* X3537Y4595D02* D03* X3487Y4562D02* D03* X3438Y4561D02* D03* X3416Y4538D02* D03* X3480Y4308D02* D03* X3560Y4446D02* D03* X3697Y4416D02* D03* X3816Y4490D02* D03* X3805Y4529D02* D03* X3855Y4457D02* D03* X3843Y4422D02* D03* X3875Y4424D02* D03* X3841Y4186D02* D03* X3875Y4187D02* D03* X3872Y4138D02* D03* X3831Y4134D02* D03* X3799D02* D03* X3675Y4221D02* D03* X3641Y4091D02* D03* X3597Y4043D02* D03* X3548Y4085D02* D03* X3547Y4040D02* D03* X3546Y3997D02* D03* X3506Y3991D02* D03* X3493Y4043D02* D03* X3505Y3896D02* D03* X3596D02* D03* X3591Y3796D02* D03* X3645Y3797D02* D03* X4081Y4187D02* D03* X4108Y4072D02* D03* X4037Y4068D02* D03* Y4027D02* D03* X3909Y3933D02* D03* X3879Y3930D02* D03* X3831Y4006D02* D03* X3799D02* D03* X3751Y4048D02* D03* X3698D02* D03* X3693Y3993D02* D03* X3696Y3938D02* D03* X3735Y3896D02* D03* X3796Y3912D02* D03* X3794Y3846D02* D03* X3827Y3844D02* D03* X3798Y3772D02* D03* X3793Y3718D02* D03* X3820Y3684D02* D03* X3806Y3613D02* D03* X3816Y3584D02* D03* X3995Y3605D02* D03* X3993Y3546D02* D03* X3955Y3558D02* D03* X3899Y3608D02* D03* X3941Y3623D02* D03* X3909Y3658D02* D03* X3938Y3771D02* D03* X3980Y3787D02* D03* X3979Y3830D02* D03* X3944Y3816D02* D03* X4126Y3848D02* D03* X4196Y3951D02* D03* X4266Y3852D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4377Y3142D02* D03* X4369Y3218D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4925Y2769D02* D03* X5173Y2566D02* D03* X5215Y2605D02* D03* X5275Y2769D02* D03* X5450Y2605D02* D03* X5600D02* D03* X5690D02* D03* X5645D02* D03* X5625Y2769D02* D03* X5975D02* D03* X6182Y2787D02* D03* X6296Y2634D02* D03* X6363D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6475D02* D03* Y2336D02* D03* Y2436D02* D03* X6571Y2440D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6321Y2290D02* D03* X6275D02* D03* X6221D02* D03* X6175D02* D03* Y2336D02* D03* X6075D02* D03* X6021Y2290D02* D03* X5975D02* D03* Y2336D02* D03* X5921Y2290D02* D03* Y2336D02* D03* Y2390D02* D03* X5975D02* D03* Y2436D02* D03* X6075Y1936D02* D03* Y1890D02* D03* X6021D02* D03* Y1936D02* D03* X5975D02* D03* Y1890D02* D03* X5921D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2090D02* D03* Y2136D02* D03* X5921D02* D03* X6075D02* D03* Y2090D02* D03* X6021D02* D03* Y2136D02* D03* X5975Y2036D02* D03* Y1990D02* D03* X6021D02* D03* Y2036D02* D03* X6075D02* D03* Y1990D02* D03* X6135Y2033D02* D03* Y2077D02* D03* X6214Y2109D02* D03* X6075Y2236D02* D03* Y2190D02* D03* X6021D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5921D02* D03* Y2236D02* D03* X5832Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5803Y2324D02* D03* X5754Y2321D02* D03* X5704D02* D03* X5654D02* D03* X5625Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5654Y2189D02* D03* X5704D02* D03* X5754D02* D03* X5717Y2128D02* D03* X5681D02* D03* X5645D02* D03* X5620Y1960D02* D03* X5593D02* D03* X5597Y1916D02* D03* X5605Y1862D02* D03* X5573D02* D03* X5530D02* D03* X5522Y1916D02* D03* X5525Y1960D02* D03* X5498D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4595Y2225D02* D03* X4547D02* D03* X4467Y2229D02* D03* X4419D02* D03* X4401Y2203D02* D03* X4419Y2354D02* D03* X4467D02* D03* X4547Y2350D02* D03* X4595D02* D03* X4585Y2494D02* D03* X4634D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X4252Y1975D02* D03* X4359Y2014D02* D03* X4281Y2108D02* D03* X4251D02* D03* X4223D02* D03* Y2223D02* D03* X4253D02* D03* X4281D02* D03* X4282Y2354D02* D03* X4234D02* D03* X4066Y2339D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X3866D02* D03* X3817D02* D03* X3767D02* D03* X3817Y2193D02* D03* X3767D02* D03* X3725Y2247D02* D03* X3817Y2348D02* D03* Y2543D02* D03* X3767Y2727D02* D03* X3674Y2733D02* D03* X3623Y2635D02* D03* X3625Y2597D02* D03* X3614Y2524D02* D03* X3552Y2459D02* D03* X3573Y2436D02* D03* X3632Y2439D02* D03* X3627Y2411D02* D03* X3571Y2342D02* D03* X3268D02* D03* X3318D02* D03* X3372Y2288D02* D03* X3366Y2244D02* D03* X3422Y2288D02* D03* X3416Y2244D02* D03* X3466D02* D03* X3472Y2288D02* D03* X3468Y2342D02* D03* X3418D02* D03* X3368Y2378D02* D03* X3413Y2467D02* D03* X3335Y2586D02* D03* X3324Y2627D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3379Y2685D02* D03* X3472Y2602D02* D03* X3475Y2645D02* D03* X3562Y2688D02* D03* X3525Y2697D02* D03* X3530Y2737D02* D03* X3531Y2784D02* D03* X3476Y2828D02* D03* X3451Y2845D02* D03* X3426Y2827D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3278Y2839D02* D03* X3291Y2882D02* D03* X3278Y2961D02* D03* X3276Y3033D02* D03* X3159Y3138D02* D03* X3202Y3217D02* D03* X3174Y3231D02* D03* X3146Y3286D02* D03* X3196Y3296D02* D03* X3245Y3292D02* D03* X3287Y3293D02* D03* X3247Y3340D02* D03* X3293Y3339D02* D03* X3351Y3343D02* D03* X3393D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3393D02* D03* X3350Y3387D02* D03* X3354Y3442D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3542Y3554D02* D03* X3548Y3587D02* D03* X3591Y3589D02* D03* Y3548D02* D03* Y3497D02* D03* X3545Y3485D02* D03* Y3440D02* D03* X3590D02* D03* X3595Y3384D02* D03* X3590Y3341D02* D03* X3541Y3340D02* D03* X3545Y3386D02* D03* X3500Y3383D02* D03* X3491Y3340D02* D03* X3498Y3286D02* D03* X3443D02* D03* X3397Y3280D02* D03* X3512Y3205D02* D03* X3469D02* D03* X3423D02* D03* X3371Y3139D02* D03* X3413Y3035D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3688Y3027D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X3996Y3044D02* D03* Y3093D02* D03* X3938Y3110D02* D03* X3907Y3041D02* D03* X3877Y3039D02* D03* X3847D02* D03* X3819Y2920D02* D03* X3891D02* D03* X3932Y2811D02* D03* X3974Y2918D02* D03* X4010Y2908D02* D03* X4069Y2917D02* D03* X4096Y2903D02* D03* X4066Y2816D02* D03* X4079Y2688D02* D03* X4172D02* D03* X4325Y2691D02* D03* X4432Y2688D02* D03* X4389Y2835D02* D03* X4355Y2918D02* D03* X4299D02* D03* X4247Y2869D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* Y3318D02* D03* Y3385D02* D03* Y3531D02* D03* Y3467D02* D03* X3998Y3465D02* D03* X3920Y3415D02* D03* X4001Y3383D02* D03* X3997Y3323D02* D03* Y3252D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X3643Y3387D02* D03* X3646Y3341D02* D03* X3695D02* D03* X3747Y3340D02* D03* X3748Y3392D02* D03* X3698Y3396D02* D03* Y3441D02* D03* X3692Y3490D02* D03* X3748Y3486D02* D03* X3743Y3440D02* D03* X3792Y3445D02* D03* X3791Y3401D02* D03* X3855Y3367D02* D03* X3647Y3441D02* D03* X3648Y3485D02* D03* Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3363Y3794D02* D03* X3206Y3720D02* D03* X3288Y3719D02* D03* X3342D02* D03* X3345Y3672D02* D03* X3394Y3670D02* D03* X3395Y3719D02* D03* X3445D02* D03* Y3670D02* D03* X3441Y3604D02* D03* X3392D02* D03* X3344Y3602D02* D03* X3282Y3622D02* D03* X3251Y3621D02* D03* X3209Y3622D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X3045Y3838D02* D03* X3097D02* D03* X3145D02* D03* X3198Y3837D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3244Y3894D02* D03* X3286Y3939D02* D03* X3347Y3943D02* D03* X3297Y4095D02* D03* X3251Y4089D02* D03* X3243Y4238D02* D03* X3202Y4213D02* D03* Y4165D02* D03* X3109D02* D03* X3112Y4199D02* D03* X3050Y4328D02* D03* X3048Y4498D02* D03* Y4538D02* D03* X3012Y4627D02* D03* X2962D02* D03* X2929Y4657D02* D03* X2893Y4667D02* D03* X3034Y4657D02* D03* X3062Y4676D02* D03* X3112Y4673D02* D03* X3162Y4676D02* D03* X3236Y4673D02* D03* X3250Y4646D02* D03* X3286Y4659D02* D03* X3331Y4670D02* D03* X3361Y4671D02* D03* X3462Y4844D02* D03* X3410Y4848D02* D03* X3322Y4849D02* D03* X3263Y4848D02* D03* X3199Y4847D02* D03* X3137Y4844D02* D03* X3087D02* D03* X3037D02* D03* X2987D02* D03* X2937D02* D03* X2896Y4847D02* D03* X2853Y4849D02* D03* X2786Y4848D02* D03* X2871Y4302D02* D03* X2902Y4301D02* D03* X2934Y4231D02* D03* X3025Y4130D02* D03* X2969Y4108D02* D03* X2945Y4089D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X2997Y4044D02* D03* X3005Y3995D02* D03* X3003Y3945D02* D03* X2949Y3901D02* D03* X2930Y3929D02* D03* X2871Y3952D02* D03* X2804Y4013D02* D03* X2736Y4010D02* D03* X2743Y3892D02* D03* X2689Y4063D02* D03* X2658Y4119D02* D03* X2608Y4118D02* D03* X2508Y4117D02* D03* X2581Y4227D02* D03* X2514Y4265D02* D03* X2511Y4345D02* D03* X2580Y4311D02* D03* X2683Y4228D02* D03* X2684Y4304D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2883D02* D03* X2940Y4479D02* D03* X2906Y4532D02* D03* X2873D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2148Y4773D02* D03* X2092Y4767D02* D03* X2040Y4583D02* D03* X2020Y4619D02* D03* X2014Y4651D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X2223Y4425D02* D03* X2119Y4359D02* D03* X2124Y4218D02* D03* X2061Y4142D02* D03* X2018Y4045D02* D03* X1950Y4156D02* D03* Y4222D02* D03* X1777Y3745D02* D03* X1809Y3776D02* D03* X1926Y3896D02* D03* X2036Y3887D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2481Y3776D02* D03* X2532D02* D03* X2555Y3742D02* D03* X2509Y3719D02* D03* X2612Y3651D02* D03* X2610Y3709D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2709Y3547D02* D03* X2745Y3506D02* D03* X2819Y3507D02* D03* X2818Y3477D02* D03* X2819Y3537D02* D03* X2778Y3579D02* D03* X2733Y3657D02* D03* X2764Y3721D02* D03* X2732Y3750D02* D03* X2706Y3773D02* D03* X2822Y3779D02* D03* X2855Y3758D02* D03* X2882Y3779D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3047D02* D03* Y3684D02* D03* Y3640D02* D03* X3095Y3684D02* D03* X3162Y3641D02* D03* X3096Y3585D02* D03* X2994Y3286D02* D03* X2955Y3210D02* D03* X3003Y3163D02* D03* X3061Y3219D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3144Y3340D02* D03* X3192D02* D03* X3197Y3386D02* D03* X3245Y3390D02* D03* X3290D02* D03* X3288Y3442D02* D03* X3293Y3486D02* D03* X3248D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3043Y3494D02* D03* X3051Y3443D02* D03* X3009D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2898Y3505D02* D03* X2965Y3492D02* D03* X3007Y3495D02* D03* X2994Y3531D02* D03* X2996Y3585D02* D03* X2947D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2892Y3628D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2629Y3430D02* D03* X2667D02* D03* X2629Y3468D02* D03* X2664D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2592Y3505D02* D03* X2556Y3504D02* D03* Y3464D02* D03* X2587Y3467D02* D03* Y3429D02* D03* X2556Y3425D02* D03* X2590Y3351D02* D03* X2589Y3308D02* D03* X2588Y3272D02* D03* X2630Y3271D02* D03* X2672Y3269D02* D03* Y3226D02* D03* Y3191D02* D03* X2629Y3192D02* D03* Y3227D02* D03* X2591D02* D03* X2396Y3638D02* D03* X2454D02* D03* X2485Y3626D02* D03* X2551Y3582D02* D03* X2550Y3548D02* D03* X2512Y3547D02* D03* X2470Y3545D02* D03* X2472Y3507D02* D03* X2433D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2515Y3462D02* D03* X2514Y3424D02* D03* Y3387D02* D03* X2550Y3390D02* D03* X2514Y3345D02* D03* Y3308D02* D03* Y3236D02* D03* X2472Y3230D02* D03* Y3263D02* D03* Y3308D02* D03* X2438Y3307D02* D03* Y3344D02* D03* X2472Y3345D02* D03* Y3387D02* D03* Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2357Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2433Y3231D02* D03* X2435Y3265D02* D03* X2391D02* D03* X2354Y3231D02* D03* X2356Y3265D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2356Y3388D02* D03* X2391Y3391D02* D03* Y3428D02* D03* X2357Y3424D02* D03* Y3502D02* D03* X2390Y3507D02* D03* Y3468D02* D03* X2357Y3466D02* D03* X2312Y3469D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2318Y3578D02* D03* X2333Y3637D02* D03* X2272Y3631D02* D03* X2119Y3641D02* D03* X2117Y3518D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* Y3364D02* D03* X2411Y2885D02* D03* X2441Y2903D02* D03* X2473Y2873D02* D03* X2500Y2899D02* D03* X2522Y2857D02* D03* X2497Y2790D02* D03* X2570Y2867D02* D03* X2555Y2912D02* D03* X2585Y2979D02* D03* X2636Y2978D02* D03* X2718Y2979D02* D03* X2745Y3074D02* D03* X2743Y3109D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2746Y3310D02* D03* X2710Y3304D02* D03* X2714Y3268D02* D03* X2748D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* X2673Y3147D02* D03* X2672Y3111D02* D03* Y3069D02* D03* X2617Y3067D02* D03* X2629Y3114D02* D03* Y3152D02* D03* X2587D02* D03* X2589Y3194D02* D03* X2547Y3191D02* D03* X2471Y3154D02* D03* X2470Y3114D02* D03* X2549D02* D03* X2546Y3079D02* D03* X2561Y3053D02* D03* X2530Y3047D02* D03* X2468Y3048D02* D03* X2445Y2980D02* D03* X2397Y2982D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2390Y3193D02* D03* X2354Y3153D02* D03* Y3114D02* D03* X2311D02* D03* X2274Y3153D02* D03* X2131Y3010D02* D03* X2190Y3009D02* D03* X2224Y3044D02* D03* X2260Y2965D02* D03* X2261Y2894D02* D03* X2202Y2890D02* D03* X2178Y2786D02* D03* X2104Y2818D02* D03* X2102Y2896D02* D03* X2026Y2841D02* D03* X1991Y2780D02* D03* X1788Y2820D02* D03* X1784Y2778D02* D03* X1832Y2771D02* D03* X1860Y2657D02* D03* X1861Y2625D02* D03* X1901Y2550D02* D03* X1825Y2540D02* D03* X1773Y2547D02* D03* X1738Y2507D02* D03* X1689Y2381D02* D03* X1904Y2445D02* D03* X1902Y2413D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1903Y2312D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1973Y2094D02* D03* X1902Y2092D02* D03* X2013Y2094D02* D03* X2032Y2183D02* D03* X2030Y2222D02* D03* X1999D02* D03* X1998Y2292D02* D03* X1990Y2335D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2213Y2184D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2280Y2095D02* D03* X2327Y2096D02* D03* X2377Y2061D02* D03* X2374Y2095D02* D03* X2413Y2093D02* D03* X2385Y2187D02* D03* X2386Y2243D02* D03* X2332Y2184D02* D03* X2303Y2180D02* D03* X2280Y2212D02* D03* X2277Y2249D02* D03* X2212D02* D03* X2304Y2311D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2481Y2482D02* D03* X2482Y2531D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2093Y2676D02* D03* X1677Y2025D02* D03* X1781Y1918D02* D03* X1698Y1788D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X1878Y1848D02* D03* X1854Y1876D02* D03* X1877Y1915D02* D03* X1929Y1929D02* D03* X2027Y1915D02* D03* X2093Y1834D02* D03* X2091Y1756D02* D03* X2051Y1736D02* D03* X1978Y1562D02* D03* X2015Y1467D02* D03* X1970Y1398D02* D03* X2013Y1332D02* D03* X2186Y1283D02* D03* X2091Y1245D02* D03* X2188Y1243D02* D03* X2164Y1157D02* D03* X2315Y1193D02* D03* X2326Y1277D02* D03* X2314Y1312D02* D03* X2337Y1362D02* D03* X2315Y1413D02* D03* X2314Y1462D02* D03* X2168Y1466D02* D03* X2187Y1512D02* D03* Y1562D02* D03* X2188Y1612D02* D03* X2187Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* X2188Y1812D02* D03* X2201Y1916D02* D03* X2265Y1915D02* D03* X2327Y1830D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2446Y1961D02* D03* X2409Y1991D02* D03* X2440Y2024D02* D03* X2505Y2091D02* D03* X2501Y2225D02* D03* X2495Y2284D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2604Y2393D02* D03* X2601Y2427D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2704Y2555D02* D03* X2599Y2534D02* D03* X2598Y2623D02* D03* X2600Y2658D02* D03* X2599Y2694D02* D03* X2699Y2671D02* D03* X2761Y2681D02* D03* X2823Y2634D02* D03* X2875Y2636D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X2925Y2735D02* D03* X2872Y2732D02* D03* X2875Y2785D02* D03* X2825Y2784D02* D03* X2757D02* D03* X2698D02* D03* X2829Y2859D02* D03* X2875Y2834D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X2947Y2928D02* D03* X2985Y3039D02* D03* X3053Y3031D02* D03* X3123Y3046D02* D03* X3098Y3029D02* D03* X3119Y2969D02* D03* X3235Y2905D02* D03* X3192Y2852D02* D03* X3121Y2869D02* D03* X3103Y2845D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X3232Y2592D02* D03* X3279Y2639D02* D03* X3229Y2682D02* D03* X3276Y2684D02* D03* X3277Y2733D02* D03* X3219Y2782D02* D03* X3175Y2726D02* D03* X3132Y2728D02* D03* X3126Y2687D02* D03* X3122Y2642D02* D03* X3080Y2583D02* D03* X3064Y2544D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3067Y2443D02* D03* Y2393D02* D03* Y2343D02* D03* X3057Y2297D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2771Y2032D02* D03* X2770Y1980D02* D03* X2821Y1982D02* D03* X2825Y1934D02* D03* X2778Y1887D02* D03* X2876Y1831D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2767Y1679D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2910Y1671D02* D03* X2973Y1726D02* D03* X2972Y1780D02* D03* X2927Y1824D02* D03* X2973Y1838D02* D03* X3027Y1824D02* D03* Y1780D02* D03* X3029Y1735D02* D03* X3051Y1666D02* D03* X3341Y1242D02* D03* X3310D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3215Y1235D02* D03* X3089Y1234D02* D03* X2994Y1233D02* D03* X2931Y1243D02* D03* X2868Y1238D02* D03* X2837Y1237D02* D03* X2774Y1240D02* D03* X2742Y1236D02* D03* X2711Y1237D02* D03* X2647Y1189D02* D03* X2596Y1288D02* D03* X2558Y1214D02* D03* X2476Y1210D02* D03* X2480Y1262D02* D03* X2472Y1312D02* D03* X2468Y1362D02* D03* X2471Y1412D02* D03* X2537Y1427D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2764Y1441D02* D03* X2853Y1443D02* D03* X3010D02* D03* X3105Y1446D02* D03* X3231D02* D03* X3205Y1582D02* D03* X3229Y1604D02* D03* X3151Y1667D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3177Y1937D02* D03* X3126Y1887D02* D03* X3083Y1892D02* D03* X3071Y1931D02* D03* X3073Y1984D02* D03* X3027Y1880D02* D03* X2972D02* D03* X2919Y1883D02* D03* X2874Y1933D02* D03* X2873Y1983D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3130D02* D03* X3231Y2239D02* D03* X3266Y2244D02* D03* X3272Y2288D02* D03* X3322D02* D03* X3316Y2244D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1234D02* D03* Y1268D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3499Y2030D02* D03* X3483Y1943D02* D03* X3404Y1986D02* D03* X3383Y1893D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3489Y1738D02* D03* X3423Y1697D02* D03* X3350Y1684D02* D03* X3385Y1636D02* D03* X3390Y1579D02* D03* X3253Y1629D02* D03* X3277Y1648D02* D03* X3276Y1682D02* D03* X3275Y1735D02* D03* X3277Y1795D02* D03* Y1838D02* D03* X3224Y2109D02* D03* X3268Y2142D02* D03* X3272Y2188D02* D03* X3322D02* D03* X3318Y2142D02* D03* X3372Y2188D02* D03* X3368Y2142D02* D03* X3418D02* D03* X3422Y2188D02* D03* X3472D02* D03* X3468Y2142D02* D03* X3544Y2137D02* D03* X3577Y2141D02* D03* X3633Y2143D02* D03* Y2093D02* D03* X3667Y1993D02* D03* X3675Y1935D02* D03* X3633Y1943D02* D03* X3627Y1893D02* D03* X3623Y1831D02* D03* X3621Y1789D02* D03* X3717Y1743D02* D03* X3767Y1843D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3812Y1993D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X3917Y1693D02* D03* X3867Y1743D02* D03* X3824Y1736D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4420Y1446D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4682Y1572D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4646Y2014D02* D03* X4615D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4804Y2014D02* D03* X4835D02* D03* X4725Y1905D02* D03* X4770D02* D03* X4815D02* D03* X4860D02* D03* X4905D02* D03* X4945D02* D03* X5044Y1740D02* D03* X5253Y1772D02* D03* Y1697D02* D03* Y1622D02* D03* X5141Y1510D02* D03* X5081Y1439D02* D03* X5049Y1447D02* D03* X5018Y1446D02* D03* X4929Y1565D02* D03* X4874Y1572D02* D03* X4860Y1446D02* D03* X4750Y1399D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5204Y1213D02* D03* X5211Y1277D02* D03* X5262Y1146D02* D03* X5344Y1139D02* D03* X5392D02* D03* X5344Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5688Y1380D02* D03* X5660D02* D03* X5630D02* D03* Y1265D02* D03* X5658D02* D03* X5688D02* D03* X5736Y1263D02* D03* X5783D02* D03* Y1139D02* D03* X5736D02* D03* X5864Y1269D02* D03* X5921Y1336D02* D03* X5975D02* D03* X6021D02* D03* X6121D02* D03* X6175Y1490D02* D03* X6121D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5921Y1536D02* D03* Y1490D02* D03* X5975D02* D03* Y1536D02* D03* X6021D02* D03* Y1490D02* D03* X6075Y1436D02* D03* X6021D02* D03* Y1390D02* D03* X5975Y1436D02* D03* Y1390D02* D03* X5921D02* D03* Y1436D02* D03* X5876Y1590D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6075D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* X6021Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5758D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6475D02* D03* Y1436D02* D03* X6421Y1390D02* D03* Y1436D02* D03* X6375D02* D03* Y1390D02* D03* Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6606Y1231D02* D03* X6625Y1340D02* D03* Y1386D02* D03* X6671D02* D03* Y1340D02* D03* X6725D02* D03* Y1386D02* D03* X6771D02* D03* X6825Y1340D02* D03* X6925D02* D03* Y1386D02* D03* X6971D02* D03* Y1340D02* D03* X7025D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971Y1540D02* D03* Y1586D02* D03* X6925D02* D03* Y1540D02* D03* Y1486D02* D03* Y1440D02* D03* X6971D02* D03* Y1486D02* D03* X7025Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X6925D02* D03* Y1686D02* D03* X6871Y1740D02* D03* Y1786D02* D03* X6925D02* D03* Y1740D02* D03* X6971D02* D03* Y1786D02* D03* X7025D02* D03* Y1740D02* D03* Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* X7025D02* D03* Y2040D02* D03* Y1986D02* D03* Y1940D02* D03* Y1886D02* D03* Y1840D02* D03* X6971D02* D03* X6925D02* D03* Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X7025D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* X6971D02* D03* X6871Y2440D02* D03* X6825D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* X6825D02* D03* Y2286D02* D03* X6725D02* D03* X6771D02* D03* Y2340D02* D03* X6725D02* D03* Y2386D02* D03* X6771D02* D03* X7267Y1185D02* D03* X7274Y1234D02* D03* X7267Y1331D02* D03* X7258Y1417D02* D03* Y1449D02* D03* Y1480D02* D03* Y1512D02* D03* X7267Y1599D02* D03* Y1744D02* D03* Y1890D02* D03* Y2035D02* D03* Y2181D02* D03* Y2327D02* D03* Y2473D02* D03* Y2618D02* D03* X7119Y2571D02* D03* X7104Y2597D02* D03* X7018Y2569D02* D03* X6934Y2564D02* D03* X6885D02* D03* X6837Y2565D02* D03* X6781D02* D03* X6726Y2567D02* D03* X6672Y2573D02* D03* Y2702D02* D03* X6726Y2694D02* D03* X6781Y2693D02* D03* X6837Y2695D02* D03* X6885Y2696D02* D03* X6939Y2698D02* D03* X6970Y2865D02* D03* X6865D02* D03* X6761Y2917D02* D03* Y2955D02* D03* Y2991D02* D03* X6762Y3030D02* D03* X6719D02* D03* X6720Y2991D02* D03* X6725Y3105D02* D03* X6670D02* D03* X6620D02* D03* X6570D02* D03* X6671Y2991D02* D03* Y3030D02* D03* X6621D02* D03* Y2990D02* D03* Y2875D02* D03* X6671Y2876D02* D03* X6722Y2877D02* D03* X6760D02* D03* X6571Y3270D02* D03* X6570Y3230D02* D03* X6620D02* D03* X6621Y3270D02* D03* X6671D02* D03* X6670Y3230D02* D03* X6725D02* D03* X6726Y3270D02* D03* X6920Y3230D02* D03* X6921Y3270D02* D03* X6816D02* D03* X6776D02* D03* X6775Y3230D02* D03* X6815D02* D03* X6776Y3185D02* D03* Y3145D02* D03* X6775Y3105D02* D03* X6815D02* D03* X6865Y3030D02* D03* Y2990D02* D03* X6970D02* D03* Y3030D02* D03* X6920Y3105D02* D03* X7104Y3062D02* D03* X7119Y3036D02* D03* X7104Y3010D02* D03* X7119Y2984D02* D03* X7189Y2952D02* D03* X7258Y2945D02* D03* X7267Y3031D02* D03* Y2764D02* D03* X7258Y2850D02* D03* Y2882D02* D03* Y2913D02* D03* X7189Y2843D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7104Y2794D02* D03* X7119Y2768D02* D03* Y2716D02* D03* X7104Y2742D02* D03* X7074Y2744D02* D03* X7051Y2722D02* D03* X7052Y2692D02* D03* X7104Y2649D02* D03* X7119Y2623D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X6625Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6725Y1440D02* D03* Y1486D02* D03* X6771D02* D03* Y1440D02* D03* X6825Y1486D02* D03* Y1440D02* D03* X6871D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6829Y1573D02* D03* Y1616D02* D03* X6871Y1640D02* D03* Y1686D02* D03* X6823Y1693D02* D03* X6753Y1775D02* D03* X6623Y1744D02* D03* Y1694D02* D03* Y1594D02* D03* X6495D02* D03* X6571Y1486D02* D03* Y1440D02* D03* Y1386D02* D03* Y1340D02* D03* X6321Y1390D02* D03* Y1436D02* D03* Y1490D02* D03* X6275D02* D03* Y1436D02* D03* Y1390D02* D03* X6221D02* D03* X6236Y1340D02* D03* X6337Y1230D02* D03* X6341Y1141D02* D03* X6187D02* D03* X6145Y1216D02* D03* X6028D02* D03* X6037Y1066D02* D03* D052* X1984Y3825D02* D03* Y3726D02* D03* D026* X1808Y3586D02* X1809Y3589D01* X1806Y3598D01* X1799Y3605D01* X1789Y3607D01* X1780Y3603D01* X1774Y3595D01* X1773Y3585D01* X1777Y3576D01* X1786Y3571D01* X1796D01* X1804Y3577D01* X1808Y3586D01* Y2975D02* X1809Y2978D01* X1806Y2988D01* X1799Y2994D01* X1789Y2996D01* X1780Y2993D01* X1774Y2985D01* X1773Y2975D01* X1777Y2966D01* X1786Y2961D01* X1796D01* X1804Y2966D01* X1808Y2975D01* D052* X1528Y1787D02* D03* D026* X1518Y1732D02* X1510Y1727D01* X1504Y1719D01* X1502Y1709D01* X1504Y1699D01* X1509Y1691D01* X1518Y1685D01* X1527Y1683D01* X1537Y1685D01* D052* X1528Y1630D02* D03* X1606Y1669D02* D03* D026* X1551Y1699D02* X1545Y1690D01* X1537Y1685D01* X1551Y1699D02* X1553Y1708D01* Y1709D01* X1551Y1718D01* X1518Y1732D02* X1528Y1734D01* X1537Y1732D01* X1546Y1727D01* X1551Y1718D01* D052* X1606Y1748D02* D03* X1685D02* D03* Y1669D02* D03* X1764D02* D03* Y1748D02* D03* X1843Y1669D02* D03* Y1748D02* D03* X1921D02* D03* X2327Y1069D02* D03* D026* X2627Y1328D02* X2622Y1337D01* X2623Y1346D01* X2629Y1354D01* X2638Y1358D01* X2648Y1356D01* X2655Y1349D01* X2658Y1340D01* Y1337D01* X2653Y1328D01* X2645Y1323D01* X2635D01* X2627Y1328D01* D052* X4374Y1069D02* D03* X5120Y1340D02* D03* D026* X5343Y2502D02* X5334Y2506D01* X5327Y2513D01* X5324Y2523D01* X5326Y2532D01* X5332Y2540D01* X5341Y2545D01* X5351D01* X5360Y2541D01* X5366Y2533D01* X5368Y2524D01* X5367Y2516D01* X5361Y2507D01* X5353Y2503D01* X5343Y2502D01* D052* X5035Y2844D02* D03* X5085Y2894D02* D03* X5135Y2844D02* D03* X5235D02* D03* X5285Y2894D02* D03* X5335Y2844D02* D03* X5235Y2944D02* D03* X5185Y2994D02* D03* X5135Y2944D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2994D02* D03* X5085Y3094D02* D03* X5135Y3044D02* D03* X5185Y3094D02* D03* X5385D02* D03* X5285D02* D03* X5335Y3044D02* D03* X5285Y2994D02* D03* X5335Y2944D02* D03* X5385Y2994D02* D03* X5435Y2944D02* D03* X5485Y2894D02* D03* X5435Y2844D02* D03* X5535D02* D03* X5735D02* D03* X5685Y2894D02* D03* X5635Y2844D02* D03* Y2944D02* D03* X5585Y2994D02* D03* X5535Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5585D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* X5785Y2994D02* D03* X5835Y2944D02* D03* X5885Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X6435Y4344D02* D03* Y4444D02* D03* Y4544D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335D02* D03* X6235D02* D03* Y4544D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* Y4444D02* D03* X6385Y4394D02* D03* X6335Y4344D02* D03* Y4244D02* D03* X6385Y4194D02* D03* X6435Y4244D02* D03* Y4144D02* D03* X6385Y4094D02* D03* X6335Y4144D02* D03* X6235D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6335Y3944D02* D03* X6435D02* D03* Y4044D02* D03* D026* X6664Y4086D02* X6670Y4094D01* X6672Y4102D01* X6669Y4112D01* X6663Y4120D01* X6654Y4124D01* X6644D01* X6635Y4119D01* X6629Y4111D01* X6628Y4101D01* X6630Y4092D01* X6637Y4084D01* X6646Y4081D01* X6656D01* X6664Y4086D01* D052* X6435Y3644D02* D03* Y3744D02* D03* Y3844D02* D03* X6335D02* D03* X6385Y3794D02* D03* X6335Y3744D02* D03* Y3644D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* X6385Y3494D02* D03* X6335Y3444D02* D03* X6385Y3394D02* D03* X6335Y3344D02* D03* X6385Y3294D02* D03* X6335Y3244D02* D03* X6435D02* D03* Y3344D02* D03* Y2844D02* D03* Y2944D02* D03* X6385Y2994D02* D03* X6435Y3044D02* D03* Y3144D02* D03* X6385Y3194D02* D03* X6335Y3144D02* D03* Y3044D02* D03* X6285Y3094D02* D03* X6235Y3044D02* D03* Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6335Y2944D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2844D02* D03* Y2944D02* D03* X6185Y2994D02* D03* X6135Y3044D02* D03* X6085Y3094D02* D03* X5985D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5935Y2944D02* D03* X5985Y2994D02* D03* X6035Y2944D02* D03* X6085Y2994D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6285Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6285Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* X6235Y3844D02* D03* X6285Y3894D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* Y4244D02* D03* X6285Y4294D02* D03* X6235Y4344D02* D03* Y4444D02* D03* X6185Y4394D02* D03* X6135Y4444D02* D03* X6035D02* D03* X5985Y4394D02* D03* X5935Y4444D02* D03* X5835D02* D03* X5785Y4394D02* D03* X5735Y4444D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5835Y4544D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5735Y4644D02* D03* X5835D02* D03* X5935D02* D03* X6035D02* D03* X5985Y4594D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4544D02* D03* X6185Y4594D02* D03* X6135Y4644D02* D03* X5335D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5535D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* Y4544D02* D03* X5685Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5485D02* D03* X5535Y4444D02* D03* Y4544D02* D03* X5485Y4494D02* D03* X5435Y4544D02* D03* X5385Y4394D02* D03* X5335Y4444D02* D03* X5385Y4494D02* D03* X5335Y4544D02* D03* X5285Y4494D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5135Y4644D02* D03* X5235D02* D03* X5035D02* D03* X4935D02* D03* X4985Y4594D02* D03* X4935Y4544D02* D03* X4985Y4494D02* D03* X5035Y4544D02* D03* X5085Y4494D02* D03* Y4394D02* D03* X5135Y4444D02* D03* X5185Y4394D02* D03* X4985D02* D03* X4935Y4444D02* D03* X4885Y4394D02* D03* X4835Y4344D02* D03* X4885Y4294D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4885Y4094D02* D03* Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* Y3694D02* D03* Y3594D02* D03* X4835Y3544D02* D03* X4885Y3494D02* D03* Y3394D02* D03* X4835Y3344D02* D03* X4885Y3294D02* D03* Y3194D02* D03* X4835Y3144D02* D03* X4885Y3094D02* D03* X4985D02* D03* X4935Y3044D02* D03* X4885Y2994D02* D03* X4935Y2944D02* D03* Y2844D02* D03* X4835D02* D03* X4885Y2894D02* D03* X4835Y2944D02* D03* X4635Y3744D02* D03* X4685Y3694D02* D03* X4635Y3644D02* D03* X4685Y3594D02* D03* X4635Y3544D02* D03* X4685Y3494D02* D03* X4635Y3444D02* D03* Y3344D02* D03* X4685Y3294D02* D03* X4635Y3244D02* D03* Y3144D02* D03* X4685Y3094D02* D03* X4635Y3044D02* D03* Y2944D02* D03* X4685Y2894D02* D03* X4735Y2844D02* D03* Y2944D02* D03* X4785Y2994D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4735Y3144D02* D03* X4785Y3194D02* D03* X4735Y3244D02* D03* X4785Y3294D02* D03* X4735Y3344D02* D03* X4785Y3394D02* D03* X4735Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4785Y3594D02* D03* X4735Y3644D02* D03* X4785Y3694D02* D03* X4735Y3744D02* D03* Y3944D02* D03* X4785Y3994D02* D03* X4735Y4044D02* D03* X4785Y4094D02* D03* X4735Y4144D02* D03* X4785Y4194D02* D03* X4735Y4244D02* D03* X4785Y4294D02* D03* X4735Y4344D02* D03* Y4444D02* D03* X4785Y4494D02* D03* X4835Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4685Y4594D02* D03* X4635Y4544D02* D03* X4685Y4494D02* D03* X4635Y4444D02* D03* Y4344D02* D03* X4685Y4294D02* D03* X4635Y4244D02* D03* Y4144D02* D03* X4685Y4094D02* D03* X4635Y4044D02* D03* Y3944D02* D03* X4685Y3894D02* D03* X4635Y3844D02* D03* D026* X4290Y4124D02* X4281Y4119D01* X4271Y4118D01* X4262Y4122D01* X4256Y4130D01* X4253Y4139D01* X4255Y4149D01* X4261Y4157D01* X4270Y4161D01* X4280Y4162D01* X4289Y4157D01* X4295Y4150D01* X4297Y4140D01* X4295Y4132D01* X4290Y4124D01* D052* X6972Y1069D02* D03* D056* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D031* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D055* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D051* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425D02* D03* Y1709D02* D03* X7504D02* D03* Y1787D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1157D02* D03* X7583Y1236D02* D03* Y1157D02* D03* X7504D02* D03* X7425Y1315D02* D03* Y1236D02* D03* X7504D02* D03* Y1315D02* D03* X7583D02* D03* Y1394D02* D03* Y1472D02* D03* X7504D02* D03* Y1394D02* D03* X7425D02* D03* Y1472D02* D03* Y1630D02* D03* Y1551D02* D03* X7504D02* D03* Y1630D02* D03* X7583D02* D03* Y1709D02* D03* X7661D02* D03* Y1630D02* D03* X7583Y1551D02* D03* X7661D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* X7740Y1866D02* D03* Y1945D02* D03* X7661D02* D03* Y1866D02* D03* X7583D02* D03* Y1945D02* D03* X7504D02* D03* Y1866D02* D03* X7425D02* D03* Y1945D02* D03* X7346Y1866D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* Y4150D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* X7583Y4386D02* D03* X7661D02* D03* Y4307D02* D03* X7740Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* Y3835D02* D03* X7504D02* D03* Y3913D02* D03* X7425D02* D03* Y3835D02* D03* Y3677D02* D03* Y3756D02* D03* X7504D02* D03* Y3677D02* D03* X7583D02* D03* Y3756D02* D03* X7661D02* D03* Y3677D02* D03* X7583Y3598D02* D03* X7661D02* D03* Y3520D02* D03* X7583D02* D03* X7504D02* D03* Y3598D02* D03* X7425D02* D03* Y3520D02* D03* Y3362D02* D03* Y3441D02* D03* X7504D02* D03* Y3362D02* D03* X7583D02* D03* Y3441D02* D03* X7661D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3126D02* D03* X7583D02* D03* Y3205D02* D03* X7504D02* D03* Y3126D02* D03* X7425D02* D03* Y3205D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7740Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7661Y3992D02* D03* Y4071D02* D03* X7583D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* Y4150D02* D03* Y4228D02* D03* X7504D02* D03* Y4150D02* D03* X7583D02* D03* X7661D02* D03* Y4228D02* D03* X7583D02* D03* Y4307D02* D03* X7504D02* D03* Y4386D02* D03* X7425D02* D03* Y4307D02* D03* Y4465D02* D03* Y4543D02* D03* X7504D02* D03* Y4465D02* D03* X7583D02* D03* X7661D02* D03* Y4543D02* D03* X7583D02* D03* X7661Y4622D02* D03* Y4701D02* D03* X7583D02* D03* Y4622D02* D03* X7504D02* D03* Y4701D02* D03* X7425D02* D03* Y4622D02* D03* Y2969D02* D03* Y2890D02* D03* X7504D02* D03* Y2969D02* D03* Y3047D02* D03* X7583Y2969D02* D03* Y3047D02* D03* X7661D02* D03* X7740Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* Y2811D02* D03* X7504D02* D03* X7425D02* D03* Y2654D02* D03* Y2732D02* D03* X7504D02* D03* Y2654D02* D03* X7583D02* D03* Y2575D02* D03* Y2496D02* D03* X7504D02* D03* Y2575D02* D03* X7425D02* D03* Y2496D02* D03* X7504Y2260D02* D03* X7425D02* D03* Y2339D02* D03* Y2417D02* D03* X7504D02* D03* Y2339D02* D03* X7583D02* D03* Y2260D02* D03* X7661D02* D03* Y2339D02* D03* Y2417D02* D03* X7583D02* D03* X7661Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* X7583D02* D03* X7740D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* Y2417D02* D03* Y2339D02* D03* Y2260D02* D03* D050* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D035* X1596Y1177D02* X1603Y1170D01* X1611Y1165D01* X1621Y1160D01* X1630Y1158D01* X1640Y1157D01* X1650Y1158D01* X1660Y1160D01* X1669Y1164D01* X1677Y1170D01* X1685Y1177D01* X1691Y1184D01* X1695Y1193D01* X1698Y1203D01* X1700Y1213D01* Y1217D01* X1699Y1226D01* X1697Y1236D01* X1693Y1245D01* X1687Y1254D01* X1680Y1261D01* X1672Y1267D01* X1663Y1271D01* X1654Y1275D01* X1644Y1276D01* X1634D01* X1624Y1274D01* X1615Y1270D01* X1606Y1265D01* X1599Y1259D01* X1592Y1251D01* X1587Y1243D01* X1583Y1233D01* X1581Y1223D01* Y1213D01* X1582Y1204D01* X1585Y1194D01* X1590Y1185D01* X1596Y1177D01* X1598Y1188D02* X1683D01* X1730Y3957D02* X1723Y3949D01* X1714Y3945D01* X1705Y3944D01* X1695Y3947D01* X1687Y3953D01* X1682Y3962D01* X1681Y3971D01* X1684Y3981D01* X1690Y3989D01* X1698Y3994D01* X1708Y3996D01* X1718Y3993D01* X1726Y3988D01* X1731Y3979D01* X1733Y3970D01* Y3966D01* X1730Y3957D01* Y4474D02* X1723Y4467D01* X1714Y4462D01* X1705Y4461D01* X1695Y4464D01* X1687Y4470D01* X1682Y4479D01* X1681Y4489D01* X1684Y4498D01* X1690Y4506D01* X1698Y4511D01* X1708Y4513D01* X1718Y4511D01* X1726Y4505D01* X1731Y4497D01* X1733Y4487D01* Y4484D01* X1730Y4474D01* X2382Y4627D02* X2375Y4620D01* X2366Y4615D01* X2356Y4614D01* X2347Y4617D01* X2339Y4623D01* X2334Y4632D01* X2333Y4642D01* X2335Y4651D01* X2341Y4659D01* X2350Y4664D01* X2360Y4666D01* X2369Y4664D01* X2378Y4658D01* X2383Y4650D01* X2385Y4640D01* Y4637D01* X2382Y4627D01* X3917Y4651D02* X3923Y4659D01* X3931Y4664D01* X3941Y4666D01* X3951Y4664D01* X3959Y4658D01* X3964Y4650D01* X3966Y4640D01* Y4637D01* X3963Y4627D01* X3956Y4620D01* X3947Y4615D01* X3937Y4614D01* X3928Y4617D01* X3920Y4623D01* X3915Y4632D01* X3914Y4642D01* X3917Y4651D01* X1683Y4692D02* X1598D01* X1596Y4681D02* X1590Y4689D01* X1585Y4698D01* X1582Y4708D01* X1581Y4717D01* Y4727D01* X1583Y4737D01* X1587Y4746D01* X1592Y4755D01* X1599Y4763D01* X1606Y4769D01* X1615Y4774D01* X1624Y4778D01* X1634Y4780D01* X1644D01* X1654Y4778D01* X1663Y4775D01* X1672Y4771D01* X1680Y4765D01* X1687Y4758D01* X1693Y4749D01* X1697Y4740D01* X1699Y4730D01* X1700Y4720D01* Y4717D01* X1698Y4707D01* X1695Y4697D01* X1691Y4688D01* X1685Y4680D01* X1677Y4674D01* X1669Y4668D01* X1660Y4664D01* X1650Y4662D01* X1640Y4661D01* X1630Y4662D01* X1621Y4664D01* X1611Y4669D01* X1603Y4674D01* X1596Y4681D01* D065* X1670Y3058D02* D03* Y3509D02* D03* D063* X7425Y2102D02* D03* X7661D02* D03* D059* X2359Y4522D02* D03* X3940D02* D03* D079* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D083* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D084* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D082* X1834Y1421D02* D03* X1920Y3459D02* D03* X4140Y2800D02* D03* X1854Y4780D02* D03* D078* X1976Y1280D02* D03* X7740Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/stp0.grb0000644000175000017500000042045513421555714016372 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1500Y859D02* X1509Y850D01* X1536D01* X1544Y859D01* Y868D01* X1536Y877D01* X1509D01* X1500Y886D01* X1509Y894D01* X1536D01* X1544Y886D01* X1616D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1651Y850D02* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1687Y877D02* X1651D01* X1642Y868D01* Y859D01* X1651Y850D01* X1613Y1454D02* Y1538D01* X1609Y1454D02* Y1538D01* X1617D02* Y1454D01* X1621Y1538D02* Y1454D01* X1625Y1538D02* Y1454D01* X1649D02* Y1538D01* X1645Y1454D02* Y1538D01* X1653D02* Y1454D01* X1657Y1538D02* Y1454D01* X1661Y1538D02* Y1454D01* X1669D02* Y1538D01* X1665Y1454D02* Y1538D01* X1673D02* Y1454D01* X1677Y1538D02* Y1454D01* X1681Y1538D02* Y1454D01* X1685Y1539D02* X1598D01* Y1453D01* X1605Y1454D02* Y1538D01* X1685Y1539D02* Y1453D01* X1598D01* X1601Y1454D02* Y1538D01* X1629D02* Y1454D01* X1633Y1538D02* Y1454D01* X1641D02* Y1538D01* X1637Y1454D02* Y1538D01* X1441Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1793Y894D02* X1784Y886D01* Y859D01* X1731Y850D02* X1749D01* X1740D02* Y921D01* X1731D01* X1793Y894D02* X1820D01* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* Y859D02* X1793Y850D01* X1829D01* X1936Y877D02* X1980D01* X1936Y894D02* X1980D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X2167Y868D02* X2176Y859D01* X2167Y850D01* X2158Y859D01* X2167Y868D01* X2220Y850D02* X2211Y859D01* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211D02* X2264Y921D01* X2336D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2539Y2154D02* X2532Y2148D01* Y2144D02* X2565D01* Y2146D02* X2568Y2137D01* X2567Y2136D02* X2530D01* Y2140D02* X2566D01* X2565Y2146D02* X2559Y2154D01* Y2152D02* X2538D01* X2539Y2154D02* X2549Y2156D01* X2559Y2154D01* X2562Y2148D02* X2534D01* X2532D02* X2529Y2138D01* X2530Y2129D01* X2532Y2128D02* X2564D01* Y2125D02* X2556Y2119D01* X2557Y2120D02* X2539D01* X2535Y2124D02* X2562D01* X2564Y2125D02* X2568Y2134D01* Y2137D02* Y2134D01* X2566Y2132D02* X2531D01* X2530Y2129D02* X2537Y2121D01* X2546Y2117D01* X2556Y2119D01* X2137Y1582D02* X2130Y1589D01* X2123Y1583D01* Y1582D02* Y1583D01* X2120Y1582D02* Y1560D01* X2124Y1552D01* X2134Y1550D01* X2140Y1558D01* Y1560D01* X2147Y1561D02* Y1556D01* X2141Y1548D01* X2147Y1561D02* Y1581D01* X2144D02* Y1560D01* X2143Y1557D02* X2144Y1560D01* X2143Y1557D02* X2138Y1549D01* X2128Y1547D01* X2119Y1551D01* X2116Y1560D01* Y1581D01* X2120Y1584D02* Y1582D01* Y1584D02* X2126Y1591D01* X2136Y1590D01* X2118Y1594D02* X2127Y1598D01* X2137Y1597D01* X2145Y1590D01* X2147Y1581D01* X2144D02* X2140Y1590D01* X2132Y1595D01* X2122Y1593D01* X2117Y1585D01* X2130Y1582D02* Y1560D01* X2137D02* Y1559D01* X2140Y1560D02* Y1582D01* X2136Y1590D01* X2137Y1582D02* Y1560D01* Y1559D02* X2129Y1553D01* X2123Y1560D01* Y1582D01* X2118Y1594D02* X2113Y1586D01* X2112Y1581D01* X2116D02* X2117Y1585D01* X2112Y1581D02* Y1561D01* X2115Y1551D01* X2123Y1545D01* X2132Y1544D01* X2141Y1548D01* X2136Y1393D02* X2126Y1394D01* X2120Y1387D01* Y1385D02* Y1387D01* X2116Y1384D02* Y1364D01* X2119Y1354D01* X2128Y1350D01* X2138Y1352D01* X2143Y1360D01* X2141Y1351D02* X2132Y1347D01* X2123Y1348D01* X2115Y1355D01* X2112Y1364D01* Y1384D01* X2117Y1388D02* X2116Y1384D01* X2112D02* X2113Y1389D01* X2118Y1397D01* X2127Y1401D01* X2137Y1400D01* X2145Y1393D01* X2147Y1384D01* Y1364D01* X2134Y1354D02* X2140Y1361D01* Y1363D01* X2137D02* Y1362D01* X2129Y1356D01* X2134Y1354D02* X2124Y1355D01* X2120Y1363D01* Y1385D01* X2123Y1386D02* Y1385D01* X2117Y1388D02* X2122Y1396D01* X2132Y1398D01* X2140Y1394D01* X2144Y1384D01* Y1364D01* X2141Y1351D02* X2147Y1359D01* Y1364D01* X2144D02* X2143Y1360D01* X2140Y1363D02* Y1385D01* X2136Y1393D01* X2137Y1385D02* Y1363D01* X2130D02* Y1385D01* X2137D02* X2130Y1392D01* X2123Y1386D01* Y1385D02* Y1363D01* X2129Y1356D02* X2123Y1363D01* X2051D02* Y1385D01* X2058D02* X2052Y1392D01* X2057Y1393D02* X2047Y1394D01* X2041Y1387D01* Y1385D02* Y1387D01* X2037Y1384D02* Y1364D01* X2041Y1354D01* X2049Y1350D01* X2059Y1352D01* X2065Y1360D01* X2061Y1363D02* Y1361D01* X2055Y1354D01* X2045Y1355D01* X2041Y1363D01* Y1385D01* X2045Y1386D02* X2044Y1385D01* X2045Y1386D02* X2052Y1392D01* X2044Y1385D02* Y1363D01* X2051Y1356D01* X2058Y1362D01* Y1363D02* Y1362D01* Y1363D02* Y1385D01* X2057Y1393D02* X2061Y1385D01* X2065Y1384D02* X2062Y1394D01* X2061Y1385D02* Y1363D01* X2065Y1360D02* Y1364D01* Y1384D01* X2066Y1393D02* X2069Y1384D01* Y1364D01* X2063Y1351D02* X2068Y1359D01* X2069Y1364D01* X2063Y1351D02* X2054Y1347D01* X2044Y1348D01* X2036Y1355D01* X2034Y1364D01* Y1384D01* Y1389D02* Y1384D01* X2037D02* X2038Y1388D01* X2043Y1396D01* X2053Y1398D01* X2062Y1394D01* X2066Y1393D02* X2058Y1400D01* X2049Y1401D01* X2040Y1397D01* X2034Y1389D01* X1982Y1422D02* Y1452D01* X1978Y1422D02* Y1452D01* X1986Y1453D02* X1954D01* Y1421D01* X1958Y1452D02* Y1422D01* X1954Y1421D02* X1986D01* Y1453D01* X1962Y1452D02* Y1422D01* X1966Y1452D02* Y1422D01* X1974D02* Y1452D01* X1970Y1422D02* Y1452D01* X2044Y1560D02* X2051Y1553D01* X2044Y1560D02* Y1582D01* X2045Y1583D02* X2052Y1589D01* X2058Y1582D01* X2051D02* Y1560D01* X2058D02* Y1582D01* X2057Y1590D02* X2061Y1582D01* Y1560D01* X2065Y1557D02* Y1560D01* X2069Y1561D02* X2068Y1556D01* X2063Y1548D01* X2065Y1560D02* Y1581D01* X2062Y1590D01* X2053Y1595D01* X2043Y1593D01* X2038Y1585D01* X2044Y1582D02* X2045Y1583D01* X2041Y1582D02* Y1560D01* X2045Y1552D01* X2055Y1550D01* X2051Y1553D02* X2058Y1559D01* Y1560D01* X2061D02* Y1558D01* X2055Y1550D01* X2069Y1561D02* Y1581D01* X2066Y1590D01* X2058Y1597D01* X2049Y1598D01* X2040Y1594D01* X2034Y1586D01* Y1581D01* X2037D02* X2038Y1585D01* X2034Y1581D02* Y1561D01* X2036Y1551D01* X2044Y1545D01* X2054Y1544D01* X2063Y1548D01* X2065Y1557D02* X2059Y1549D01* X2049Y1547D01* X2041Y1551D01* X2037Y1560D01* Y1581D01* X2041Y1584D02* Y1582D01* Y1584D02* X2047Y1591D01* X2057Y1590D01* X1815Y1861D02* Y1891D01* X1811Y1861D02* Y1891D01* X1819D02* Y1861D01* X1823Y1891D02* Y1861D01* X1827Y1891D02* Y1861D01* X1831Y1892D02* X1799D01* Y1860D01* X1807Y1861D02* Y1891D01* X1831Y1892D02* Y1860D01* X1799D01* X1803Y1861D02* Y1891D01* X1496Y1929D02* X1531D01* Y1898D01* X1496D01* X1497Y1921D02* X1530D01* X1497Y1925D02* X1530D01* Y1917D02* X1497D01* X1530Y1913D02* X1497D01* X1530Y1909D02* X1497D01* X1474Y1865D02* Y1823D01* X1471Y1822D02* X1506D01* Y1866D01* X1478Y1865D02* Y1823D01* X1471Y1822D02* Y1866D01* X1506D01* X1494Y1865D02* Y1823D01* X1498Y1865D02* Y1823D01* X1502Y1865D02* Y1823D01* X1490D02* Y1865D01* X1497Y1905D02* X1530D01* Y1901D02* X1497D01* X1486Y1865D02* Y1823D01* X1482D02* Y1865D01* X1496Y1898D02* Y1929D01* X1482Y1961D02* Y2003D01* X1486D02* Y1961D01* X1490Y2003D02* Y1961D01* X1502D02* Y2003D01* X1498Y1961D02* Y2003D01* X1494Y1961D02* Y2003D01* X1506Y2004D02* X1471D01* Y1960D01* X1478Y1961D02* Y2003D01* X1506Y2004D02* Y1960D01* X1471D01* X1474Y1961D02* Y2003D01* X1523Y2460D02* X1528Y2468D01* X1537Y2472D01* X1547Y2471D01* X1554Y2464D01* X1550Y2465D02* X1553Y2455D01* X1546Y2456D02* X1540Y2463D01* X1545Y2464D02* X1536Y2465D01* X1529Y2458D01* Y2456D02* Y2458D01* X1525Y2455D02* Y2419D01* X1529Y2409D01* X1538Y2405D01* X1547Y2407D01* X1553Y2415D01* X1550Y2418D02* X1549Y2416D01* X1543Y2409D01* X1534Y2410D01* X1529Y2418D01* Y2456D01* X1533Y2457D02* Y2456D01* Y2457D02* X1540Y2463D01* X1533Y2456D02* Y2418D01* X1539Y2411D01* X1546Y2417D01* X1539Y2418D02* Y2456D01* X1550Y2465D02* X1541Y2469D01* X1532Y2467D01* X1526Y2459D01* X1525Y2455D01* X1522D02* X1523Y2460D01* X1522Y2455D02* Y2419D01* X1525Y2410D01* X1532Y2403D01* X1542Y2402D01* X1551Y2406D01* X1546Y2418D02* Y2417D01* Y2418D02* Y2456D01* X1545Y2464D02* X1550Y2456D01* Y2418D01* X1553Y2415D02* Y2419D01* Y2455D01* X1554Y2464D02* X1557Y2455D01* Y2419D01* X1551Y2406D02* X1556Y2414D01* X1557Y2419D01* X1682Y2418D02* X1688Y2411D01* X1682Y2418D02* Y2456D01* Y2457D01* X1679Y2456D02* Y2418D01* X1683Y2410D01* X1693Y2409D01* X1688Y2411D02* X1696Y2417D01* Y2418D01* X1699D02* Y2416D01* X1693Y2409D01* X1706Y2419D02* Y2455D01* X1704Y2464D01* X1696Y2471D01* X1686Y2472D01* X1678Y2468D01* X1672Y2460D01* X1671Y2455D01* X1675D02* X1676Y2459D01* X1671Y2455D02* Y2419D01* X1674Y2410D01* X1682Y2403D01* X1691Y2402D01* X1700Y2406D01* X1706Y2419D02* Y2414D01* X1700Y2406D01* X1703Y2419D02* Y2455D01* X1699Y2456D02* Y2418D01* X1702Y2415D02* X1703Y2419D01* X1702Y2415D02* X1697Y2407D01* X1687Y2405D01* X1679Y2409D01* X1675Y2419D01* Y2455D01* X1679Y2458D02* Y2456D01* Y2458D02* X1685Y2465D01* X1695Y2464D01* X1689Y2456D02* Y2418D01* X1696D02* Y2456D01* X1695Y2464D02* X1699Y2456D01* X1696D02* X1690Y2463D01* X1682Y2457D01* X1676Y2459D02* X1681Y2467D01* X1691Y2469D01* X1699Y2465D01* X1703Y2455D01* X1955Y2719D02* X1945Y2718D01* X1936Y2721D01* X1930Y2729D01* Y2733D02* X1966D01* X1967Y2734D02* Y2737D01* Y2734D02* X1963Y2725D01* X1962D02* X1934D01* X1939Y2721D02* X1957D01* X1955Y2719D02* X1963Y2725D01* X1964Y2729D02* X1931D01* X1930D02* X1928Y2739D01* X1932Y2748D01* X1933Y2749D02* X1962D01* X1958Y2754D02* X1949Y2757D01* X1939Y2755D01* X1938Y2753D02* X1958D01* Y2754D02* X1965Y2747D01* X1966Y2741D02* X1930D01* Y2737D02* X1966D01* X1967D02* X1965Y2747D01* X1964Y2745D02* X1931D01* X1932Y2748D02* X1939Y2755D01* X1931Y2892D02* X1928Y2902D01* X1919Y2906D01* X1910Y2904D01* X1904Y2896D01* X1901Y2897D02* X1906Y2905D01* X1915Y2909D01* X1925Y2908D01* X1932Y2901D01* X1923D02* X1914Y2902D01* X1907Y2895D01* Y2893D02* Y2895D01* Y2893D02* Y2855D01* X1912Y2847D01* X1921Y2846D01* X1927Y2853D01* X1928Y2855D01* X1924D02* Y2854D01* X1917Y2848D01* X1911Y2855D01* Y2893D01* Y2894D02* Y2893D01* Y2894D02* X1918Y2900D01* X1924Y2893D01* X1917D02* Y2855D01* X1924D02* Y2893D01* X1923Y2901D02* X1928Y2893D01* Y2855D01* X1931Y2852D02* Y2856D01* Y2892D01* X1932Y2901D02* X1935Y2892D01* Y2856D01* X1929Y2843D02* X1934Y2851D01* X1935Y2856D01* X1931Y2852D02* X1925Y2844D01* X1915Y2842D01* X1907Y2846D01* X1903Y2856D01* Y2892D01* X1904Y2896D02* X1903Y2892D01* X1900D02* X1901Y2897D01* X1900Y2892D02* Y2856D01* X1903Y2847D01* X1910Y2840D01* X1920Y2839D01* X1929Y2843D01* X1768Y2855D02* Y2893D01* X1774D02* X1768Y2900D01* X1774Y2901D02* X1764Y2902D01* X1758Y2895D01* X1757Y2893D02* X1758Y2895D01* X1754Y2892D02* Y2856D01* X1757Y2846D01* X1766Y2842D01* X1775Y2844D01* X1781Y2852D01* X1778Y2855D02* Y2853D01* X1771Y2846D01* X1785Y2856D02* Y2892D01* X1782Y2901D01* X1775Y2908D01* X1765Y2909D01* X1756Y2905D01* X1751Y2897D01* X1750Y2892D01* X1754D02* Y2896D01* X1750Y2892D02* Y2856D01* X1753Y2847D01* X1760Y2840D01* X1770Y2839D01* X1779Y2843D01* X1771Y2846D02* X1762Y2847D01* X1757Y2855D01* Y2893D01* X1761Y2894D02* Y2893D01* Y2894D02* X1768Y2900D01* X1761Y2893D02* Y2855D01* X1767Y2848D01* X1774Y2854D01* Y2855D02* Y2854D01* Y2855D02* Y2893D01* Y2901D02* X1778Y2893D01* Y2855D01* X1781Y2852D02* X1782Y2856D01* X1785D02* Y2851D01* X1779Y2843D01* X1782Y2856D02* Y2892D01* X1778Y2902D01* X1770Y2906D01* X1760Y2904D01* X1754Y2896D01* X1496Y3791D02* X1531D01* Y3760D01* X1496D01* X1497Y3779D02* X1530D01* Y3787D02* X1497D01* X1530Y3783D02* X1497D01* Y3775D02* X1530D01* X1497Y3771D02* X1530D01* Y3767D02* X1497D01* X1490Y3728D02* Y3686D01* X1486D02* Y3728D01* X1497Y3763D02* X1530D01* X1494Y3728D02* Y3686D01* X1498Y3728D02* Y3686D01* X1502Y3728D02* Y3686D01* X1506Y3685D02* X1471D01* Y3729D01* X1478Y3728D02* Y3686D01* X1506Y3685D02* Y3729D01* X1471D01* X1474Y3728D02* Y3686D01* X1482D02* Y3728D01* X1496Y3760D02* Y3791D01* X1482Y3823D02* Y3865D01* X1478D02* Y3823D01* X1506Y3822D02* Y3866D01* X1471D01* X1474Y3865D02* Y3823D01* X1490D02* Y3865D01* X1486Y3823D02* Y3865D01* X1494D02* Y3823D01* X1498Y3865D02* Y3823D01* X1502Y3865D02* Y3823D01* X1506Y3822D02* X1471D01* Y3866D01* X1441Y4465D02* Y4543D01* X1500D01* Y4937D01* X1850D01* X1943Y4904D02* Y4820D01* X1941Y4819D02* X2027D01* Y4905D01* X1947Y4904D02* Y4820D01* X1951Y4904D02* Y4820D01* X1941Y4819D02* Y4905D01* X2027D01* X2019Y4904D02* Y4820D01* X2023Y4904D02* Y4820D01* X2015D02* Y4904D01* X2011Y4820D02* Y4904D01* X2003D02* Y4820D01* X2007Y4904D02* Y4820D01* X1999D02* Y4904D01* X1995Y4820D02* Y4904D01* X1991Y4820D02* Y4904D01* X1983D02* Y4820D01* X1987Y4904D02* Y4820D01* X1979D02* Y4904D01* X1975Y4820D02* Y4904D01* X1967D02* Y4820D01* X1971Y4904D02* Y4820D01* X1963D02* Y4904D01* X1959Y4820D02* Y4904D01* X1955Y4820D02* Y4904D01* X1925Y5462D02* X1075D01* X1200D02* X1500Y5762D01* X1800Y5462D01* X1500Y5162D01* X1200Y5462D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X8324Y5137D02* X8124Y4937D01* X8324Y4737D01* X8524Y4937D01* X8324Y5137D01* Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8024Y4937D01* X8324Y4637D01* X7799Y4587D02* Y4760D01* Y4878D01* X7740Y4937D01* X7449D01* X7161Y4901D02* Y4816D01* X7165Y4901D02* Y4816D01* X7173D02* Y4901D01* X7169Y4816D02* Y4901D01* X7177D02* Y4816D01* X7181Y4901D02* Y4816D01* X7185Y4815D02* X7098D01* Y4902D01* X7125Y4901D02* Y4816D01* X7129Y4901D02* Y4816D01* X7137D02* Y4901D01* X7133Y4816D02* Y4901D01* X7157Y4816D02* Y4901D01* X7153Y4816D02* Y4901D01* X7149Y4816D02* Y4901D01* X7141D02* Y4816D01* X7145Y4901D02* Y4816D01* X7121D02* Y4901D01* X7117Y4816D02* Y4901D01* X7113Y4816D02* Y4901D01* X7109D02* Y4816D01* X7105Y4901D02* Y4816D01* X7185Y4815D02* Y4902D01* X7098D01* X7101Y4901D02* Y4816D01* X6678Y4571D02* X6673Y4572D01* X6665Y4577D01* X6678Y4571D02* X6858D01* X6867Y4574D01* X6858D02* X6677D01* X6674Y4575D01* X6666Y4581D01* X6664Y4590D01* X6668Y4599D01* X6677Y4602D01* X6858D01* X6862D02* X6858D01* Y4606D02* X6863Y4605D01* X6858Y4606D02* X6678D01* X6668Y4603D01* X6662Y4596D01* X6660Y4586D01* X6665Y4577D01* X6677Y4588D02* X6859D01* Y4582D02* X6677D01* X6675D01* X6670Y4589D01* X6677Y4595D01* X6859D01* X6860D02* X6859D01* X6860D02* X6866Y4588D01* X6859Y4582D01* Y4578D02* X6867Y4583D01* X6868Y4592D01* X6861Y4598D01* X6862Y4602D02* X6870Y4596D01* X6872Y4587D01* X6867Y4578D01* Y4574D02* X6874Y4581D01* X6875Y4591D01* X6871Y4600D01* X6863Y4605D01* X6859Y4599D02* X6861Y4598D01* X6859Y4599D02* X6677D01* X6668Y4594D01* X6667Y4585D01* X6675Y4578D01* X6677D01* X6859D01* X6867D02* X6858Y4574D01* X6867Y4354D02* X6872Y4363D01* X6870Y4372D01* X6862Y4378D01* X6861Y4374D02* X6868Y4368D01* X6867Y4359D01* X6859Y4354D01* Y4358D02* X6866Y4364D01* X6860Y4371D01* X6859D02* X6860D01* X6859D02* X6677D01* X6670Y4365D01* X6675Y4358D01* X6677D01* X6859D01* Y4364D02* X6677D01* X6665Y4353D02* X6660Y4362D01* X6662Y4372D01* X6668Y4379D01* X6678Y4382D01* X6858D01* X6863Y4381D02* X6858Y4382D01* Y4378D02* X6862D01* X6858D02* X6677D01* X6668Y4375D01* X6664Y4366D01* X6666Y4357D01* X6674Y4351D01* X6677Y4350D01* X6858D01* X6867D02* X6858Y4347D01* X6678D01* X6665Y4353D02* X6673Y4348D01* X6678Y4347D01* X6730Y4237D02* X6736Y4230D01* X6743Y4236D01* Y4237D02* Y4236D01* Y4237D02* Y4259D01* X6737Y4266D01* X6730Y4260D01* X6726Y4259D02* Y4261D01* X6722Y4258D02* Y4238D01* X6726Y4228D01* X6734Y4224D01* X6744Y4226D01* X6750Y4234D01* X6747Y4237D02* X6746Y4235D01* X6740Y4228D01* X6754Y4238D02* Y4258D01* X6751Y4267D01* X6743Y4274D01* X6750Y4258D02* Y4238D01* X6748Y4225D02* X6753Y4233D01* X6754Y4238D01* X6750D02* Y4234D01* X6747Y4237D02* Y4259D01* X6742Y4267D01* X6732Y4268D01* X6726Y4261D01* X6723Y4262D02* X6729Y4270D01* X6738Y4272D01* X6747Y4268D01* X6750Y4258D01* X6736Y4259D02* Y4237D01* X6730D02* Y4259D01* Y4260D01* X6726Y4259D02* Y4237D01* X6730Y4229D01* X6740Y4228D01* X6748Y4225D02* X6739Y4221D01* X6729Y4222D01* X6722Y4229D01* X6719Y4238D01* Y4258D01* X6723Y4262D02* X6722Y4258D01* X6719D02* Y4263D01* X6725Y4271D01* X6734Y4275D01* X6743Y4274D01* X6808Y4237D02* X6814Y4230D01* X6822Y4236D01* Y4237D02* Y4236D01* Y4237D02* Y4259D01* X6815Y4266D01* X6808Y4260D01* X6805Y4259D02* Y4261D01* X6801Y4258D02* Y4238D01* X6805Y4228D01* X6813Y4224D01* X6823Y4226D01* X6828Y4234D01* X6825Y4237D02* Y4235D01* X6819Y4228D01* X6832Y4238D02* Y4258D01* X6830Y4267D01* X6822Y4274D01* X6829Y4258D02* Y4238D01* X6826Y4225D02* X6832Y4233D01* Y4238D01* X6829D02* X6828Y4234D01* X6825Y4237D02* Y4259D01* X6821Y4267D01* X6811Y4268D01* X6805Y4261D01* X6802Y4262D02* X6807Y4270D01* X6817Y4272D01* X6825Y4268D01* X6829Y4258D01* X6815Y4259D02* Y4237D01* X6808D02* Y4259D01* Y4260D01* X6805Y4259D02* Y4237D01* X6809Y4229D01* X6819Y4228D01* X6826Y4225D02* X6817Y4221D01* X6808Y4222D01* X6800Y4229D01* X6797Y4238D01* Y4258D01* X6802Y4262D02* X6801Y4258D01* X6797D02* X6798Y4263D01* X6803Y4271D01* X6812Y4275D01* X6822Y4274D01* X6858Y4350D02* X6867Y4354D01* X6859D02* X6677D01* X6675D01* X6667Y4361D01* X6668Y4370D01* X6677Y4375D01* X6859D01* X6861Y4374D02* X6859Y4375D01* X6863Y4381D02* X6871Y4376D01* X6875Y4367D01* X6874Y4357D01* X6867Y4350D01* X6689Y5379D02* X6680Y5370D01* X6671D01* X6662Y5379D01* Y5441D01* X6645Y5415D02* X6680D01* X6618Y5406D02* X6609Y5415D01* X6582D01* X6574Y5406D01* X6582Y5397D01* X6609D01* X6618Y5388D01* Y5379D01* X6609Y5370D01* X6582D01* X6574Y5379D01* X6520Y5370D02* X6538D01* X6529D02* Y5415D01* X6520D01* X6529Y5432D02* Y5423D01* X6520D01* Y5432D01* X6529D01* X6476Y5406D02* X6467Y5415D01* X6440D01* X6431Y5406D01* X6440Y5397D01* X6467D01* X6476Y5388D01* Y5379D01* X6467Y5370D01* X6440D01* X6431Y5379D01* X6405Y5370D02* X6369D01* X6360Y5379D02* Y5406D01* X6369Y5415D01* X6396D01* X6405Y5406D01* Y5397D01* X6396Y5388D01* X6360D01* X6369Y5370D02* X6360Y5379D01* X6342Y5370D02* X6316Y5406D01* X6289D02* X6334D01* X6342Y5415D01* Y5432D01* X6334Y5441D01* X6289D01* Y5370D01* X6191Y5406D02* X6182Y5415D01* X6156D01* X6147Y5406D01* Y5415D02* Y5370D01* X6120D02* X6085D01* X6076Y5379D01* Y5406D01* X6085Y5415D01* X6111D01* X6120Y5406D01* Y5397D01* X6111Y5388D01* X6076D01* X6049Y5415D02* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* Y5441D01* X5791Y5379D02* X5800Y5370D01* X5836D01* X5845Y5379D01* Y5397D01* X5836Y5406D01* X5800D01* X5791Y5415D01* X5871D02* X5862Y5406D01* Y5379D01* X5871Y5370D01* X5898D01* X5951Y5441D02* X5960D01* Y5370D01* X5969D02* X5951D01* X5898D02* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5871D01* X5845Y5432D02* X5836Y5441D01* X5800D01* X5791Y5432D01* Y5415D01* X5616Y5406D02* X5563D01* X5332Y5441D02* X5278Y5370D01* X5287D02* X5323D01* X5332Y5379D01* Y5432D01* X5323Y5441D01* X5287D01* X5278Y5432D01* Y5379D01* X5287Y5370D01* X5234D02* X5243Y5379D01* X5234Y5388D01* X5225Y5379D01* X5234Y5370D01* X5189Y5415D02* X5163Y5370D01* X5136Y5415D01* X5109Y5397D02* Y5406D01* X5101Y5415D01* X5074D01* X5065Y5406D01* Y5379D01* X5074Y5370D02* X5109D01* Y5397D02* X5101Y5388D01* X5065D01* X5074Y5370D02* X5065Y5379D01* X5047Y5370D02* X5021Y5406D01* X4994D02* X5038D01* X5047Y5415D01* Y5432D01* X5038Y5441D01* X4994D01* Y5370D01* X4692Y5432D02* X4683Y5441D01* X4647D01* X4638Y5432D01* Y5415D01* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* Y5406D02* X4603D01* X4621Y5441D02* X4567D01* X4549D02* Y5379D01* X4541Y5370D01* X4505D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4478D02* X4425D01* Y5441D01* X4407Y5397D02* X4398Y5406D01* X4407Y5415D01* Y5432D01* X4398Y5441D01* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D02* X4354D01* X4336D02* X4283D01* X4256D02* X4221D01* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4265Y5397D01* Y5379D01* X4256Y5370D01* X4221D01* X4212Y5379D01* Y5397D01* X4221Y5406D01* X4194Y5432D02* X4185Y5441D01* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4123D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X3909Y5370D02* X3856D01* X3883D02* Y5441D01* X3909D02* X3856D01* X3838Y5432D02* X3829Y5441D01* X3794D01* X3785Y5432D01* Y5379D01* X3794Y5370D01* X3829D01* X3838Y5379D01* X3714Y5406D02* X3758D01* X3767Y5415D01* Y5432D01* X3758Y5441D01* X3714D01* Y5370D01* X3687Y5379D02* X3678Y5370D01* X3669D01* X3661Y5379D01* Y5441D01* X3678Y5415D02* X3643D01* X3616Y5406D02* X3607Y5415D01* X3581D01* X3572Y5406D01* Y5379D01* X3581Y5370D01* X3607D01* X3616Y5379D01* X3545Y5397D02* X3509D01* X3501Y5388D01* Y5379D01* X3509Y5370D01* X3545D01* Y5406D01* X3536Y5415D01* X3509D01* X3429Y5343D02* Y5415D01* X3465D01* X3474Y5406D01* Y5379D01* X3465Y5370D01* X3429D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5370D02* Y5406D01* X3394Y5415D02* X3385Y5406D01* X3376Y5415D01* X3367D01* X3358Y5406D01* Y5415D02* Y5370D01* X3287Y5406D02* Y5379D01* X3296Y5370D01* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3913Y3834D02* X3917Y3826D01* X3916Y3816D01* X3909Y3808D01* X3910Y3813D02* X3914Y3821D01* X3912Y3831D01* X3904Y3836D01* X3903Y3833D02* X3910Y3827D01* X3909Y3817D01* X3901Y3813D01* Y3816D02* X3859D01* Y3823D02* X3901D01* X3902Y3830D02* X3901D01* X3902D02* X3908Y3822D01* X3901Y3816D01* X3900Y3809D02* X3910Y3813D01* X3901D02* X3859D01* X3857D01* X3850Y3819D01* X3851Y3829D01* X3859Y3833D01* X3901D01* X3904Y3836D02* X3900Y3837D01* X3901Y3833D02* X3903D01* X3901Y3830D02* X3859D01* X3852Y3824D01* X3858Y3816D01* X3859D01* X3860Y3806D02* X3855D01* X3847Y3812D01* X3860Y3806D02* X3900D01* X3909Y3808D01* X3900Y3809D02* X3860D01* X3856Y3810D01* X3848Y3815D01* X3846Y3825D01* X3850Y3833D01* X3860Y3837D01* X3900D01* X3905Y3840D02* X3900Y3841D01* X3905Y3840D02* X3913Y3834D01* X3900Y3841D02* X3860D01* X3851Y3838D01* X3844Y3830D01* X3843Y3820D01* X3847Y3812D01* X3901Y3704D02* X3902D01* X3901Y3697D02* X3859D01* Y3690D02* X3901D01* X3908Y3696D01* X3902Y3704D01* X3913Y3708D02* X3917Y3700D01* X3916Y3690D01* X3909Y3682D01* X3910Y3687D02* X3914Y3695D01* X3912Y3705D01* X3904Y3710D01* X3903Y3707D02* X3910Y3701D01* X3909Y3691D01* X3901Y3687D01* X3900Y3683D02* X3910Y3687D01* X3901D02* X3859D01* X3857D01* X3850Y3693D01* X3851Y3703D01* X3859Y3707D01* X3901D01* X3904Y3710D02* X3900Y3711D01* X3901Y3707D02* X3903D01* X3901Y3704D02* X3859D01* X3852Y3698D01* X3858Y3690D01* X3859D01* X3860Y3680D02* X3855D01* X3847Y3686D01* X3860Y3680D02* X3900D01* X3909Y3682D01* X3900Y3683D02* X3860D01* X3856Y3684D01* X3848Y3689D01* X3846Y3699D01* X3850Y3707D01* X3860Y3711D01* X3900D01* X3905Y3714D02* X3900Y3715D01* X3905Y3714D02* X3913Y3708D01* X3900Y3715D02* X3860D01* X3851Y3712D01* X3844Y3704D01* X3843Y3694D01* X3847Y3686D01* X3964Y3365D02* X3954Y3366D01* X3945Y3362D01* X3940Y3353D01* X3939Y3349D01* X3943D02* Y3353D01* X3939Y3349D02* Y3329D01* X3942Y3319D01* X3949Y3313D01* X3959Y3311D01* X3968Y3315D01* X3960Y3318D02* X3951Y3319D01* X3946Y3328D01* Y3349D01* X3950Y3351D02* Y3350D01* Y3327D01* X3957D02* Y3350D01* X3971Y3349D02* X3967Y3358D01* X3959Y3363D01* X3949Y3361D01* X3943Y3353D01* X3947Y3352D02* X3953Y3359D01* X3963Y3358D01* X3967Y3349D01* Y3328D01* X3970Y3325D02* X3971Y3328D01* X3974Y3329D02* X3973Y3324D01* X3968Y3315D01* X3971Y3328D02* Y3349D01* X3964Y3365D02* X3971Y3358D01* X3974Y3349D01* Y3329D01* X3960Y3318D02* X3967Y3325D01* Y3328D01* X3970Y3325D02* X3964Y3317D01* X3955Y3314D01* X3946Y3319D01* X3943Y3328D01* Y3349D01* X3947Y3352D02* X3946Y3349D01* X3950Y3351D02* X3957Y3356D01* X3963Y3350D01* Y3327D01* Y3326D02* Y3327D01* Y3326D02* X3956Y3321D01* X3950Y3327D01* X3885Y3365D02* X3875Y3366D01* X3866Y3362D01* X3861Y3353D01* X3860Y3349D01* X3864D02* X3865Y3353D01* X3860Y3349D02* Y3329D01* X3863Y3319D01* X3871Y3313D01* X3880Y3311D01* X3889Y3315D01* X3882Y3318D02* X3872Y3319D01* X3868Y3328D01* Y3349D01* X3871Y3351D02* Y3350D01* Y3327D01* X3878D02* Y3350D01* X3892Y3349D02* X3888Y3358D01* X3880Y3363D01* X3870Y3361D01* X3865Y3353D01* X3868Y3352D02* X3874Y3359D01* X3884Y3358D01* X3888Y3349D01* Y3328D01* X3891Y3325D02* X3892Y3328D01* X3895Y3329D02* Y3324D01* X3889Y3315D01* X3892Y3328D02* Y3349D01* X3885Y3365D02* X3893Y3358D01* X3895Y3349D01* Y3329D01* X3882Y3318D02* X3888Y3325D01* Y3328D01* X3891Y3325D02* X3886Y3317D01* X3876Y3314D01* X3867Y3319D01* X3864Y3328D01* Y3349D01* X3868Y3352D02* Y3349D01* X3871Y3351D02* X3878Y3356D01* X3885Y3350D01* Y3327D01* Y3326D02* Y3327D01* Y3326D02* X3877Y3321D01* X3871Y3327D01* X3813Y3069D02* X3819Y3062D01* X3813Y3069D02* Y3091D01* Y3092D02* X3820Y3098D01* X3826Y3091D01* X3819D02* Y3069D01* X3826D02* Y3091D01* X3825Y3099D02* X3830Y3091D01* Y3069D01* X3833Y3066D02* Y3070D01* X3837D02* X3836Y3065D01* X3831Y3057D01* X3833Y3070D02* Y3090D01* X3830Y3100D01* X3821Y3104D01* X3812Y3102D01* X3806Y3094D01* X3805Y3090D02* X3806Y3094D01* X3802Y3090D02* Y3070D01* X3805Y3061D01* X3812Y3054D01* X3822Y3053D01* X3831Y3057D01* X3833Y3066D02* X3827Y3058D01* X3818Y3056D01* X3809Y3060D01* X3805Y3070D01* Y3090D01* X3809Y3093D02* Y3091D01* Y3093D02* X3816Y3100D01* X3825Y3099D01* X3813Y3091D02* Y3092D01* X3809Y3091D02* Y3069D01* X3814Y3061D01* X3823Y3060D01* X3819Y3062D02* X3826Y3068D01* Y3069D01* X3830D02* X3829Y3067D01* X3823Y3060D01* X3837Y3070D02* Y3090D01* X3834Y3099D01* X3827Y3106D01* X3817Y3107D01* X3808Y3103D01* X3803Y3095D01* X3802Y3090D01* X3755D02* X3751Y3100D01* Y3091D02* Y3069D01* Y3067D01* X3744Y3060D01* X3735Y3061D01* X3730Y3069D01* Y3091D01* X3734Y3092D02* Y3091D01* Y3092D02* X3741Y3098D01* X3734Y3091D02* Y3069D01* X3740Y3062D01* X3747Y3068D01* Y3069D02* Y3068D01* Y3069D02* Y3091D01* X3746Y3099D02* X3751Y3091D01* X3741Y3069D02* Y3091D01* X3747D02* X3741Y3098D01* X3746Y3099D02* X3737Y3100D01* X3731Y3093D01* X3730Y3091D02* X3731Y3093D01* X3727Y3090D02* Y3070D01* X3730Y3060D01* X3739Y3056D01* X3748Y3058D01* X3754Y3066D01* X3755Y3070D02* X3754Y3066D01* X3755Y3070D02* Y3090D01* Y3099D02* X3758Y3090D01* Y3070D01* X3752Y3057D02* X3757Y3065D01* X3758Y3070D01* X3752Y3057D02* X3743Y3053D01* X3733Y3054D01* X3726Y3061D01* X3723Y3070D01* Y3090D01* X3724Y3095D02* X3723Y3090D01* X3727D02* Y3094D01* X3733Y3102D01* X3742Y3104D01* X3751Y3100D01* X3755Y3099D02* X3748Y3106D01* X3738Y3107D01* X3729Y3103D01* X3724Y3095D01* X3347Y3160D02* X3343Y3170D01* X3348Y3169D02* X3340Y3176D01* X3330Y3177D01* X3322Y3173D01* X3316Y3165D01* X3323Y3163D02* X3329Y3170D01* X3339Y3169D01* X3343Y3161D01* Y3119D01* X3346Y3116D02* X3347Y3120D01* X3343Y3119D02* Y3117D01* X3337Y3110D01* X3331Y3106D02* X3341Y3108D01* X3346Y3116D01* X3347Y3120D02* Y3160D01* X3348Y3169D02* X3351Y3160D01* Y3120D01* X3344Y3107D02* X3350Y3115D01* X3351Y3120D01* X3344Y3107D02* X3336Y3103D01* X3326Y3104D01* X3318Y3111D01* X3316Y3120D01* Y3160D01* Y3165D02* Y3160D01* X3319D02* X3320Y3164D01* X3325Y3172D01* X3335Y3174D01* X3343Y3170D01* X3333Y3161D02* Y3119D01* X3326D02* Y3161D01* Y3162D01* X3323Y3161D02* Y3119D01* X3327Y3111D01* X3337Y3110D01* X3331Y3106D02* X3323Y3110D01* X3319Y3120D01* Y3160D01* X3323Y3163D02* Y3161D01* X3326Y3162D02* X3334Y3168D01* X3340Y3161D01* Y3119D01* Y3118D02* Y3119D01* Y3118D02* X3332Y3112D01* X3326Y3119D01* X3222Y3169D02* X3214Y3176D01* X3204Y3177D01* X3196Y3173D01* X3190Y3165D01* X3194Y3164D02* X3199Y3172D01* X3209Y3174D01* X3217Y3170D01* X3221Y3160D01* X3217Y3161D02* Y3119D01* X3220Y3116D02* X3221Y3120D01* Y3160D01* X3222Y3169D02* X3225Y3160D01* Y3120D01* X3218Y3107D02* X3224Y3115D01* X3225Y3120D01* X3218Y3107D02* X3210Y3103D01* X3200Y3104D01* X3192Y3111D01* X3190Y3120D01* Y3160D01* Y3165D02* Y3160D01* X3193D02* X3194Y3164D01* X3193Y3160D02* Y3120D01* X3197Y3110D01* X3205Y3106D01* X3215Y3108D01* X3220Y3116D01* X3217Y3119D02* Y3117D01* X3211Y3110D01* X3201Y3111D01* X3197Y3119D01* Y3161D01* Y3163D02* Y3161D01* Y3163D02* X3203Y3170D01* X3213Y3169D01* X3200Y3161D02* Y3162D01* Y3161D02* Y3119D01* X3206Y3112D01* X3214Y3118D01* Y3119D01* Y3161D01* X3213Y3169D02* X3217Y3161D01* X3214D02* X3208Y3168D01* X3200Y3162D01* X3207Y3161D02* Y3119D01* X5758Y1231D02* X5755Y1240D01* X5759D02* X5751Y1246D01* X5742Y1248D01* X5733Y1244D01* X5727Y1235D01* X5734Y1234D02* X5740Y1241D01* X5750Y1240D01* X5754Y1231D01* Y1210D01* X5758Y1206D02* Y1210D01* X5754D02* Y1207D01* X5748Y1200D01* X5742Y1196D02* X5752Y1199D01* X5758Y1206D01* Y1210D02* Y1231D01* X5759Y1240D02* X5762Y1230D01* Y1210D01* X5756Y1197D02* X5761Y1206D01* X5762Y1210D01* X5756Y1197D02* X5747Y1193D01* X5737Y1195D01* X5729Y1201D01* X5727Y1210D01* Y1230D01* Y1235D02* Y1230D01* X5730Y1231D02* X5731Y1234D01* X5736Y1242D01* X5746Y1245D01* X5755Y1240D01* X5744Y1232D02* Y1209D01* X5737D02* Y1232D01* Y1233D01* X5734Y1231D02* Y1210D01* X5738Y1201D01* X5748Y1200D01* X5742Y1196D02* X5734Y1201D01* X5730Y1210D01* Y1231D01* X5734Y1234D02* Y1231D01* X5737Y1233D02* X5745Y1238D01* X5751Y1232D01* Y1209D01* Y1208D02* Y1209D01* Y1208D02* X5744Y1203D01* X5737Y1209D01* X5677Y1197D02* X5668Y1193D01* X5658Y1195D01* X5651Y1201D01* X5648Y1210D01* Y1230D01* X5649Y1235D02* X5648Y1230D01* X5651Y1231D02* X5652Y1234D01* X5651Y1231D02* Y1210D01* X5655Y1201D01* X5664Y1196D01* X5673Y1199D01* X5679Y1206D01* X5683Y1210D02* X5682Y1206D01* X5677Y1197D01* X5683Y1210D02* Y1230D01* X5680Y1240D01* X5679Y1231D02* Y1210D01* Y1206D01* X5676Y1210D02* Y1231D01* X5671Y1240D01* X5672Y1232D02* Y1209D01* Y1208D01* X5665Y1209D02* Y1232D01* X5672D02* X5666Y1238D01* X5659Y1233D01* Y1232D02* Y1233D01* Y1232D02* Y1209D01* X5665Y1203D01* X5672Y1208D01* X5676Y1210D02* X5675Y1207D01* X5669Y1200D01* X5660Y1201D01* X5655Y1210D01* Y1231D01* Y1234D02* Y1231D01* Y1234D02* X5662Y1241D01* X5671Y1240D01* X5680D02* X5673Y1246D01* X5663Y1248D01* X5654Y1244D01* X5649Y1235D01* X5652Y1234D02* X5658Y1242D01* X5667Y1245D01* X5676Y1240D01* X5679Y1231D01* X5593Y1238D02* X5586Y1245D01* X5576Y1246D01* X5567Y1242D01* X5562Y1234D01* X5565Y1233D02* X5571Y1241D01* X5581Y1243D01* X5589Y1238D01* X5593Y1229D01* X5579Y1230D02* Y1187D01* X5585D02* Y1230D01* X5579Y1237D01* X5572Y1231D01* X5568Y1229D02* X5569Y1232D01* X5575Y1239D01* X5585Y1238D01* X5589Y1229D01* Y1188D01* X5592Y1185D02* X5593Y1188D01* Y1229D01* Y1238D02* X5596Y1229D01* Y1189D01* X5590Y1175D02* X5596Y1184D01* Y1189D01* X5592Y1185D02* X5586Y1177D01* X5577Y1174D01* X5568Y1179D01* X5565Y1188D01* Y1229D01* Y1233D02* Y1229D01* X5561D02* X5562Y1234D01* X5561Y1229D02* Y1189D01* X5564Y1179D01* X5571Y1173D01* X5581Y1171D01* X5590Y1175D01* X5578Y1181D02* X5585Y1186D01* Y1187D01* X5589Y1188D02* Y1186D01* X5582Y1178D01* X5573Y1179D01* X5568Y1188D01* Y1229D01* X5572Y1231D02* Y1230D01* Y1187D01* X5578Y1181D02* X5572Y1187D01* X5470Y1189D02* Y1184D01* X5464Y1175D01* X5467Y1188D02* Y1229D01* X5470D02* Y1189D01* X5456Y1178D02* X5463Y1186D01* Y1188D01* X5467D02* X5466Y1185D01* X5463Y1188D02* Y1229D01* X5459Y1238D01* X5449Y1239D01* X5443Y1232D01* X5442Y1229D02* X5443Y1232D01* X5439Y1229D02* Y1188D01* X5442Y1179D01* X5451Y1174D01* X5460Y1177D01* X5466Y1185D01* X5459Y1187D02* Y1186D01* Y1187D02* Y1230D01* X5453Y1237D01* X5446Y1231D01* Y1230D02* Y1231D01* X5442Y1229D02* Y1188D01* X5447Y1179D01* X5456Y1178D01* X5464Y1175D02* X5455Y1171D01* X5445Y1173D01* X5438Y1179D01* X5435Y1189D01* Y1229D01* X5439Y1233D02* Y1229D01* X5435D02* X5436Y1234D01* X5441Y1242D01* X5446Y1230D02* Y1187D01* X5452Y1181D01* X5459Y1186D01* X5453Y1187D02* Y1230D01* X5439Y1233D02* X5445Y1241D01* X5455Y1243D01* X5463Y1238D01* X5467Y1229D01* X5470D02* X5467Y1238D01* X5460Y1245D01* X5450Y1246D01* X5441Y1242D01* X4936Y1491D02* Y1490D01* X4929Y1484D01* X4923Y1491D02* X4929Y1484D01* X4923Y1491D02* Y1541D01* D01* X4929Y1547D01* X4936Y1541D01* X4929D02* Y1491D01* X4936D02* Y1541D01* X4904D02* Y1491D01* Y1490D02* Y1491D01* X4898D02* Y1541D01* X4904D02* X4898Y1547D01* X4891Y1541D02* D01* X4898Y1547D01* X4891Y1541D02* Y1491D01* X4897Y1484D01* X4904Y1490D01* X4873Y1491D02* Y1490D01* Y1491D02* Y1541D01* X4866Y1547D01* X4860Y1541D01* X4866D02* Y1491D01* X4873Y1490D02* X4866Y1484D01* X4860Y1491D01* Y1541D01* D01* X4841D02* Y1491D01* Y1490D02* Y1491D01* X4835D02* Y1541D01* X4841D02* X4835Y1547D01* X4841Y1490D02* X4834Y1484D01* X4828Y1491D01* Y1541D01* X4835Y1547D02* X4828Y1541D01* D01* X4810D02* Y1491D01* X4803D02* Y1541D01* X4810D02* X4803Y1547D01* X4797Y1541D01* D01* Y1491D01* X4803Y1484D02* X4797Y1491D01* X4803Y1484D02* X4810Y1490D01* Y1491D01* X4778Y1490D02* X4771Y1484D01* X4765Y1491D01* Y1541D01* X4772Y1547D02* X4765Y1541D01* D01* X4772Y1547D02* X4778Y1541D01* X4772D02* Y1491D01* X4778D02* Y1490D01* Y1491D02* Y1541D01* X4740D02* Y1491D01* X4747D02* Y1541D01* X4740Y1547D01* X4734Y1541D01* D01* Y1491D01* X4740Y1484D01* X4747Y1490D01* Y1491D01* X4715D02* Y1490D01* Y1491D02* Y1541D01* X4709Y1547D02* X4715Y1541D01* X4709D02* Y1491D01* X4715Y1490D02* X4708Y1484D01* X4702Y1491D01* Y1541D01* X4709Y1547D02* X4702Y1541D01* D01* X4684D02* Y1491D01* X4677D02* Y1541D01* X4684D02* X4677Y1547D01* X4671Y1541D01* D01* Y1491D01* X4677Y1484D02* X4671Y1491D01* X4677Y1484D02* X4684Y1490D01* Y1491D01* X4652Y1541D02* Y1491D01* Y1490D02* Y1491D01* X4646D02* Y1541D01* X4652D02* X4646Y1547D01* X4639Y1541D02* D01* X4646Y1547D01* X4639Y1541D02* Y1491D01* X4645Y1484D01* X4652Y1490D01* X4621Y1491D02* Y1490D01* X4614Y1484D01* X4608Y1491D01* Y1541D01* D01* X4614Y1547D01* X4621Y1541D01* Y1491D01* X4614D02* Y1541D01* X4572Y1583D02* X4522D01* Y1576D02* X4572D01* X4579Y1582D01* X4573Y1589D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1583D01* X4522Y1576D01* D01* Y1608D02* D01* X4516Y1614D01* X4522Y1621D01* X4572D01* X4573D02* X4572D01* X4573D02* X4579Y1614D01* X4572Y1608D01* X4522D01* Y1614D02* X4572D01* Y1646D02* X4522D01* Y1639D02* X4572D01* X4579Y1645D01* X4573Y1652D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1646D01* X4522Y1639D01* D01* Y1671D02* D01* X4516Y1677D01* X4522Y1684D01* X4572D01* X4573D02* X4572D01* X4573D02* X4579Y1677D01* X4572Y1671D01* X4522D01* Y1677D02* X4572D01* Y1702D02* X4579Y1708D01* X4573Y1715D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1709D01* X4522Y1702D01* D01* X4572D01* Y1709D02* X4522D01* Y1740D02* X4572D01* Y1734D02* X4522D01* D01* X4516Y1740D01* X4522Y1747D01* X4572D01* X4573D02* X4572D01* X4573D02* X4579Y1740D01* X4572Y1734D01* Y1765D02* X4579Y1771D01* X4573Y1778D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1772D01* X4522Y1765D01* D01* X4572D01* Y1772D02* X4522D01* Y1803D02* X4572D01* Y1797D02* X4522D01* D01* X4516Y1803D01* X4522Y1810D01* X4572D01* X4573D02* X4572D01* X4573D02* X4579Y1803D01* X4572Y1797D01* Y1835D02* X4522D01* Y1828D02* X4572D01* X4579Y1834D01* X4573Y1841D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1835D01* X4522Y1828D01* D01* Y1860D02* D01* X4516Y1866D01* X4522Y1873D01* X4572D01* X4573D02* X4572D01* X4573D02* X4579Y1866D01* X4572Y1860D01* X4522D01* Y1866D02* X4572D01* Y1898D02* X4522D01* Y1891D02* X4572D01* X4579Y1897D01* X4573Y1904D01* X4572D02* X4573D01* X4572D02* X4522D01* X4516Y1898D01* X4522Y1891D01* D01* X4570Y2283D02* X4575Y2291D01* X4584Y2295D01* X4594Y2294D01* X4601Y2287D01* X4597D02* X4588Y2292D01* X4579Y2290D01* X4573Y2282D01* Y2278D01* X4569D02* X4570Y2283D01* X4569Y2278D02* Y2258D01* X4572Y2248D01* X4579Y2242D01* X4585Y2244D02* X4576Y2248D01* X4573Y2257D01* Y2278D01* X4577Y2281D02* X4576Y2279D01* X4577Y2281D02* X4583Y2288D01* X4592Y2287D01* X4587Y2286D02* X4593Y2279D01* X4587D02* Y2257D01* X4598Y2245D02* X4589Y2240D01* X4579Y2242D01* X4585Y2244D02* X4594Y2246D01* X4600Y2254D01* X4597Y2257D02* Y2255D01* X4590Y2247D01* X4581Y2248D01* X4576Y2257D01* Y2279D01* X4580Y2280D02* Y2279D01* Y2280D02* X4587Y2286D01* X4580Y2279D02* Y2257D01* X4586Y2250D01* X4593Y2255D01* Y2257D02* Y2255D01* Y2257D02* Y2279D01* X4592Y2287D02* X4597Y2279D01* X4601Y2278D02* X4597Y2287D01* Y2279D02* Y2257D01* X4600Y2254D02* X4601Y2257D01* Y2278D01* Y2287D02* X4604Y2278D01* Y2258D01* X4598Y2245D02* X4603Y2253D01* X4604Y2258D01* X4659Y2257D02* X4665Y2250D01* X4659Y2257D02* Y2279D01* Y2280D01* X4655Y2279D02* Y2257D01* X4660Y2248D01* X4669Y2247D01* X4665Y2250D02* X4672Y2255D01* Y2257D01* X4676D02* X4675Y2255D01* X4669Y2247D01* X4683Y2258D02* Y2278D01* X4680Y2287D01* X4673Y2294D01* X4663Y2295D01* X4654Y2291D01* X4649Y2283D01* X4648Y2278D01* X4651D02* X4652Y2282D01* X4648Y2278D02* Y2258D01* X4651Y2248D01* X4658Y2242D01* X4668Y2240D01* X4677Y2245D01* X4683Y2258D02* X4682Y2253D01* X4677Y2245D01* X4679Y2257D02* Y2278D01* X4676Y2279D02* Y2257D01* X4679Y2254D02* Y2257D01* Y2254D02* X4673Y2246D01* X4664Y2244D01* X4655Y2248D01* X4651Y2257D01* Y2278D01* X4655Y2281D02* Y2279D01* Y2281D02* X4662Y2288D01* X4671Y2287D01* X4665Y2279D02* Y2257D01* X4672D02* Y2279D01* X4671Y2287D02* X4676Y2279D01* X4672D02* X4666Y2286D01* X4659Y2280D01* X4652Y2282D02* X4658Y2290D01* X4667Y2292D01* X4676Y2287D01* X4679Y2278D01* X4614Y1990D02* Y1940D01* X4621D02* Y1990D01* X4614Y1996D01* X4608Y1990D01* D01* Y1940D01* X4614Y1933D01* X4621Y1939D01* Y1940D01* X4652Y1939D02* X4645Y1933D01* X4639Y1940D01* Y1990D01* X4646Y1996D02* X4639Y1990D01* D01* X4646Y1996D02* X4652Y1990D01* X4646D02* Y1940D01* X4652D02* Y1939D01* Y1940D02* Y1990D01* X4684Y1940D02* Y1939D01* X4677Y1933D01* X4671Y1940D02* X4677Y1933D01* X4671Y1940D02* Y1990D01* D01* X4677Y1996D01* X4684Y1990D01* X4677D02* Y1940D01* X4684D02* Y1990D01* X4702D02* D01* X4709Y1996D01* X4702Y1990D02* Y1940D01* X4708Y1933D01* X4715Y1939D01* X4709Y1940D02* Y1990D01* X4715D02* X4709Y1996D01* X4715Y1990D02* Y1940D01* Y1939D02* Y1940D01* X4747D02* Y1939D01* X4740Y1933D01* X4734Y1940D01* Y1990D01* D01* X4740Y1996D01* X4747Y1990D01* Y1940D01* X4740D02* Y1990D01* X4778D02* Y1940D01* Y1939D02* Y1940D01* X4772D02* Y1990D01* X4778D02* X4772Y1996D01* X4765Y1990D02* D01* X4772Y1996D01* X4765Y1990D02* Y1940D01* X4771Y1933D01* X4778Y1939D01* X4810Y1940D02* Y1939D01* X4803Y1933D01* X4797Y1940D02* X4803Y1933D01* X4797Y1940D02* Y1990D01* D01* X4803Y1996D01* X4810Y1990D01* X4803D02* Y1940D01* X4810D02* Y1990D01* X4828D02* D01* X4835Y1996D01* X4828Y1990D02* Y1940D01* X4834Y1933D01* X4841Y1939D01* X4835Y1996D02* X4841Y1990D01* X4835D02* Y1940D01* X4841D02* Y1939D01* Y1940D02* Y1990D01* X4860D02* D01* Y1940D01* X4866Y1933D01* X4873Y1939D01* X4866Y1940D02* Y1990D01* X4860D02* X4866Y1996D01* X4873Y1990D01* Y1940D01* Y1939D02* Y1940D01* X4904Y1939D02* X4897Y1933D01* X4891Y1940D01* Y1990D01* X4898Y1996D02* X4891Y1990D01* D01* X4898Y1996D02* X4904Y1990D01* X4898D02* Y1940D01* X4904D02* Y1939D01* Y1940D02* Y1990D01* X4936D02* Y1940D01* X4929D02* Y1990D01* X4936D02* X4929Y1996D01* X4923Y1990D01* D01* Y1940D01* X4929Y1933D02* X4923Y1940D01* X4929Y1933D02* X4936Y1939D01* Y1940D01* X4971Y1898D02* X5021D01* Y1891D02* X4971D01* D01* X4965Y1898D01* X4971Y1904D01* X5021D01* D01* X5028Y1897D01* X5021Y1891D01* Y1873D02* X5028Y1866D01* X5021Y1860D01* Y1873D02* D01* X4971D01* X4965Y1866D01* X4971Y1860D01* D01* X5021D01* Y1866D02* X4971D01* X5021Y1835D02* X4971D01* Y1828D02* X5021D01* X5028Y1834D01* X5021Y1841D01* D01* X4971D01* X4965Y1835D01* X4971Y1828D01* D01* Y1797D02* D01* X4965Y1803D01* X4971Y1810D01* X5021D01* D01* X5028Y1803D01* X5021Y1797D01* X4971D01* Y1803D02* X5021D01* X4971Y1765D02* D01* X4965Y1772D01* X4971Y1778D01* X5021D01* D01* X5028Y1771D01* X5021Y1772D02* X4971D01* Y1765D02* X5021D01* X5028Y1771D02* X5021Y1765D01* Y1747D02* X5028Y1740D01* X5021Y1734D01* X4971D01* Y1740D02* X5021D01* Y1747D02* D01* X4971D01* X4965Y1740D01* X4971Y1734D01* D01* Y1709D02* X5021D01* Y1702D02* X4971D01* D01* X4965Y1709D01* X4971Y1715D01* X5021D01* D01* Y1684D02* D01* X4971D01* X4965Y1677D01* X4971Y1671D01* D01* X5021D01* Y1677D02* X4971D01* X5021Y1715D02* X5028Y1708D01* X5021Y1702D01* Y1684D02* X5028Y1677D01* X5021Y1671D01* Y1652D02* X5028Y1645D01* X5021Y1639D01* Y1652D02* D01* X4971D01* X4965Y1646D01* X4971Y1639D01* D01* X5021D01* Y1646D02* X4971D01* Y1614D02* X5021D01* Y1608D02* X4971D01* D01* X4965Y1614D01* X4971Y1621D01* X5021D01* D01* X5028Y1614D01* X5021Y1608D01* Y1589D02* X5028Y1582D01* X5021Y1576D01* X4971D01* Y1583D02* X5021D01* Y1589D02* D01* X4971D01* X4965Y1583D01* X4971Y1576D01* D01* X5344Y1824D02* X5351Y1831D01* X5352Y1841D01* X5348Y1850D01* X5340Y1855D01* X5339Y1852D02* X5347Y1846D01* X5349Y1837D01* X5345Y1828D01* X5336Y1839D02* X5294D01* Y1832D02* X5336D01* X5343Y1838D01* X5337Y1845D01* X5338Y1849D02* X5345Y1842D01* X5344Y1833D01* X5336Y1828D01* X5335Y1825D02* X5345Y1828D01* X5336D02* X5294D01* X5292Y1829D01* X5285Y1835D01* X5286Y1844D01* X5294Y1849D01* X5336D01* X5338D02* X5336D01* Y1845D02* X5337D01* X5336D02* X5294D01* X5287Y1839D01* X5293Y1832D01* X5294D01* X5295Y1821D02* X5290Y1822D01* X5282Y1827D01* X5295Y1821D02* X5335D01* X5344Y1824D01* X5335Y1825D02* X5295D01* X5291D01* X5283Y1831D01* X5281Y1840D01* X5285Y1849D01* X5295Y1852D01* X5335D01* X5339D02* X5335D01* Y1856D02* X5340Y1855D01* X5335Y1856D02* X5295D01* X5285Y1853D01* X5279Y1846D01* X5278Y1836D01* X5282Y1827D01* X5295Y1947D02* X5290Y1948D01* X5282Y1953D01* X5295Y1947D02* X5335D01* X5344Y1950D01* X5335Y1951D02* X5295D01* X5291D01* X5283Y1957D01* X5281Y1966D01* X5285Y1975D01* X5295Y1978D01* X5335D01* X5339D02* X5335D01* Y1982D02* X5340Y1981D01* X5335Y1982D02* X5295D01* X5285Y1979D01* X5279Y1972D01* X5278Y1962D01* X5282Y1953D01* X5294Y1965D02* X5336D01* Y1958D02* X5294D01* X5293D01* X5287Y1965D01* X5294Y1971D01* X5336D01* X5337D02* X5336D01* X5337D02* X5343Y1964D01* X5336Y1958D01* Y1954D02* X5344Y1959D01* X5345Y1968D01* X5338Y1975D01* X5339Y1978D02* X5347Y1972D01* X5349Y1963D01* X5345Y1954D01* X5344Y1950D02* X5351Y1957D01* X5352Y1967D01* X5348Y1976D01* X5340Y1981D01* X5336Y1975D02* X5338D01* X5336D02* X5294D01* X5286Y1970D01* X5285Y1961D01* X5292Y1955D01* X5294Y1954D01* X5336D01* X5345D02* X5335Y1951D01* X5824Y1971D02* X5825D01* X5824Y1965D02* X5782D01* Y1958D02* X5824D01* X5831Y1964D01* X5825Y1971D01* X5836Y1976D02* X5840Y1967D01* X5839Y1957D01* X5833Y1950D01* Y1954D02* X5837Y1963D01* X5835Y1972D01* X5827Y1978D01* X5826Y1975D02* X5834Y1968D01* X5832Y1959D01* X5824Y1954D01* Y1951D02* X5833Y1954D01* X5824D02* X5782D01* X5780Y1955D01* X5773Y1961D01* X5774Y1970D01* X5782Y1975D01* X5824D01* X5827Y1978D02* X5824D01* Y1975D02* X5826D01* X5824Y1971D02* X5782D01* X5775Y1965D01* X5781Y1958D01* X5782D01* X5783Y1947D02* X5778Y1948D01* X5770Y1953D01* X5783Y1947D02* X5823D01* X5833Y1950D01* X5824Y1951D02* X5783D01* X5779D01* X5771Y1957D01* X5769Y1966D01* X5774Y1975D01* X5783Y1978D01* X5824D01* X5828Y1981D02* X5823Y1982D01* X5828Y1981D02* X5836Y1976D01* X5823Y1982D02* X5783D01* X5774Y1979D01* X5767Y1972D01* X5766Y1962D01* X5770Y1953D01* X5783Y1821D02* X5778Y1822D01* X5770Y1827D01* X5783Y1821D02* X5823D01* X5833Y1824D01* X5824Y1825D02* X5783D01* X5779D01* X5771Y1831D01* X5769Y1840D01* X5774Y1849D01* X5783Y1852D01* X5824D01* X5827D02* X5824D01* X5823Y1856D02* X5828Y1855D01* X5823Y1856D02* X5783D01* X5774Y1853D01* X5767Y1846D01* X5766Y1836D01* X5770Y1827D01* X5782Y1839D02* X5824D01* Y1832D02* X5782D01* X5781D01* X5775Y1839D01* X5782Y1845D01* X5824D01* X5825D02* X5824D01* Y1849D02* X5826D01* X5824D02* X5782D01* X5774Y1844D01* X5773Y1835D01* X5780Y1829D01* X5782Y1828D01* X5824D01* X5833D02* X5824Y1825D01* Y1828D02* X5832Y1833D01* X5834Y1842D01* X5826Y1849D01* X5825Y1845D02* X5831Y1838D01* X5824Y1832D01* X5833Y1828D02* X5837Y1837D01* X5835Y1846D01* X5827Y1852D01* X5828Y1855D02* X5836Y1850D01* X5840Y1841D01* X5839Y1831D01* X5833Y1824D01* X6114Y3383D02* X6120Y3390D01* X6122Y3400D01* X6118Y3409D01* X6109Y3415D01* X6108Y3411D02* X6116Y3405D01* X6119Y3396D01* X6114Y3387D01* Y3392D02* X6115Y3401D01* X6108Y3408D01* X6106Y3404D02* X6107D01* X6112Y3397D01* X6106Y3391D01* X6105Y3408D02* X6108D01* X6105D02* X6064D01* X6055Y3404D01* X6054Y3394D01* X6061Y3388D01* X6064Y3387D01* X6105D01* X6114D02* X6105Y3384D01* Y3387D02* X6114Y3392D01* X6106Y3391D02* X6063D01* X6062D01* X6056Y3398D01* X6063Y3404D01* X6106D01* Y3398D02* X6063D01* X6051Y3386D02* X6047Y3395D01* X6048Y3405D01* X6055Y3412D01* X6064Y3415D01* X6104D01* X6109D02* X6104D01* X6105Y3412D02* X6108Y3411D01* X6105Y3412D02* X6064D01* X6055Y3408D01* X6050Y3400D01* X6052Y3390D01* X6060Y3384D01* X6064D01* X6105D01* X6114Y3383D02* X6104Y3380D01* X6064D01* X6051Y3386D02* X6059Y3381D01* X6064Y3380D01* Y3506D02* X6059Y3507D01* X6051Y3512D01* X6064Y3506D02* X6104D01* X6114Y3509D01* X6105Y3510D02* X6064D01* X6060D01* X6052Y3516D01* X6050Y3526D01* X6055Y3534D01* X6064Y3538D01* X6105D01* X6108Y3537D02* X6105Y3538D01* X6104Y3541D02* X6109D01* X6104D02* X6064D01* X6055Y3538D01* X6048Y3531D01* X6047Y3521D01* X6051Y3512D01* X6063Y3524D02* X6106D01* X6112Y3523D02* X6106Y3517D01* X6105Y3513D02* X6114Y3518D01* X6106Y3517D02* X6063D01* X6062D01* X6056Y3524D01* X6063Y3530D01* X6106D01* X6107D02* X6106D01* X6105Y3534D02* X6108D01* X6105D02* X6064D01* X6055Y3530D01* X6054Y3520D01* X6061Y3514D01* X6064Y3513D01* X6105D01* X6114D02* X6105Y3510D01* X6114Y3518D02* X6115Y3527D01* X6112Y3523D02* X6107Y3530D01* X6108Y3534D02* X6115Y3527D01* X6116Y3531D02* X6119Y3522D01* X6114Y3513D01* Y3509D02* X6120Y3516D01* X6122Y3526D01* X6118Y3535D01* X6116Y3531D02* X6108Y3537D01* X6118Y3535D02* X6109Y3541D01* X6601Y3644D02* X6610Y3647D01* X6601D02* X6580D01* X6577D01* X6570Y3654D01* X6571Y3663D01* X6580Y3668D01* X6601D01* X6604D02* X6601D01* X6605Y3674D02* X6614Y3669D01* X6618Y3660D01* X6616Y3650D01* X6610Y3643D01* Y3647D02* X6615Y3656D01* X6613Y3665D01* X6605Y3671D01* X6604Y3668D02* X6611Y3661D01* X6610Y3652D01* X6601Y3647D01* X6602Y3651D02* X6608Y3657D01* X6603Y3664D01* X6602D02* X6603D01* X6602D02* X6579D01* X6573Y3658D01* X6578Y3651D01* X6579D01* X6602D01* Y3657D02* X6579D01* X6567Y3646D02* X6563Y3655D01* X6565Y3665D01* X6571Y3672D01* X6581Y3675D01* X6601D01* X6605Y3674D02* X6601Y3675D01* Y3671D02* X6605D01* X6601D02* X6580D01* X6571Y3668D01* X6566Y3659D01* X6569Y3650D01* X6577Y3644D01* X6580D01* X6601D01* X6610Y3643D02* X6601Y3640D01* X6581D01* X6567Y3646D02* X6576Y3641D01* X6581Y3640D01* X6567Y3725D02* X6563Y3734D01* X6565Y3743D01* X6571Y3751D01* X6581Y3754D01* X6601D01* X6605Y3753D02* X6601Y3754D01* Y3750D02* X6605D01* X6601D02* X6580D01* X6571Y3747D01* X6566Y3738D01* X6569Y3729D01* X6577Y3723D01* X6580Y3722D01* X6601D01* X6610D02* X6601Y3719D01* X6581D01* X6567Y3725D02* X6576Y3719D01* X6581D01* X6579Y3730D02* X6578D01* X6573Y3737D01* X6579Y3743D01* X6602D01* X6603D02* X6602D01* X6603D02* X6608Y3736D01* X6602Y3730D01* X6579D01* Y3736D02* X6602D01* X6601Y3747D02* X6604Y3746D01* X6601Y3747D02* X6580D01* X6571Y3742D01* X6570Y3732D01* X6577Y3726D01* X6580D01* X6601D01* X6610D02* X6601Y3722D01* Y3726D02* X6610Y3730D01* X6611Y3740D01* X6604Y3746D01* X6605Y3750D02* X6613Y3744D01* X6615Y3734D01* X6610Y3726D01* Y3722D02* X6616Y3729D01* X6618Y3739D01* X6614Y3748D01* X6605Y3753D01* X6760Y3646D02* X6756Y3655D01* X6758Y3665D01* X6764Y3672D01* X6773Y3675D01* X6793D01* X6807Y3669D02* X6798Y3674D01* X6793Y3675D02* X6798Y3674D01* X6794Y3671D02* X6773D01* X6764Y3668D01* X6759Y3659D01* X6761Y3650D01* X6769Y3644D01* X6773D01* X6794D01* X6803Y3643D02* X6793Y3640D01* X6773D01* X6760Y3646D02* X6769Y3641D01* X6773Y3640D01* X6772Y3651D02* X6771D01* X6766Y3658D01* X6772Y3664D01* X6795D01* X6797Y3668D02* X6794D01* Y3671D02* X6797D01* X6794Y3668D02* X6773D01* X6764Y3663D01* X6763Y3654D01* X6770Y3647D01* X6773D01* X6794D01* X6803D02* X6794Y3644D01* Y3647D02* X6803Y3652D01* X6804Y3661D01* X6797Y3668D01* Y3671D02* X6805Y3665D01* X6808Y3656D01* X6803Y3647D01* Y3643D02* X6809Y3650D01* X6811Y3660D01* X6807Y3669D01* X6796Y3664D02* X6801Y3657D01* X6795Y3651D01* X6772D01* Y3657D02* X6795D01* X6796Y3664D02* X6795D01* X6760Y3725D02* X6756Y3734D01* X6758Y3743D01* X6764Y3751D01* X6773Y3754D01* X6793D01* X6807Y3748D02* X6798Y3753D01* X6793Y3754D02* X6798Y3753D01* X6794Y3750D02* X6773D01* X6764Y3747D01* X6759Y3738D01* X6761Y3729D01* X6769Y3723D01* X6773Y3722D01* X6794D01* X6803D02* X6793Y3719D01* X6773D01* X6760Y3725D02* X6769Y3719D01* X6773D01* X6772Y3730D02* X6771D01* X6766Y3737D01* X6772Y3743D01* X6795D01* X6797Y3746D02* X6794Y3747D01* Y3750D02* X6797D01* X6794Y3747D02* X6773D01* X6764Y3742D01* X6763Y3732D01* X6770Y3726D01* X6773D01* X6794D01* X6803D02* X6794Y3722D01* Y3726D02* X6803Y3730D01* X6804Y3740D01* X6797Y3746D01* Y3750D02* X6805Y3744D01* X6808Y3734D01* X6803Y3726D01* Y3722D02* X6809Y3729D01* X6811Y3739D01* X6807Y3748D01* X6796Y3743D02* X6801Y3736D01* X6795Y3730D01* X6772D01* Y3736D02* X6795D01* X6796Y3743D02* X6795D01* X7799Y5662D02* X7599Y5462D01* X7799Y5262D01* X7999Y5462D01* X7799Y5662D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* Y5887D02* Y5037D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X8324Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y800D02* X8124Y1000D01* X8324Y1200D01* X8524Y1000D01* X8324Y800D01* Y575D02* Y1425D01* Y1300D02* X8624Y1000D01* X8324Y700D01* X8024Y1000D01* X8324Y1300D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D022* X1588Y1894D02* X1608D01* X1588Y1956D02* X1608D01* X1926Y1974D02* Y1994D01* X1988Y1974D02* Y1994D01* X2056Y2022D02* Y2002D01* Y1959D02* Y1939D01* X2118D02* Y1959D01* Y2002D02* Y2022D01* X2232Y1939D02* Y1959D01* Y2002D02* Y2022D01* X2170D02* Y2002D01* Y1959D02* Y1939D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984Y1856D02* Y1876D01* X1922Y1856D02* Y1876D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* Y1307D02* X2061D01* X2120D02* X2140D01* Y1245D02* X2120D01* X2061D02* X2041D01* X2067Y1147D02* Y1167D01* X2129Y1147D02* Y1167D01* X2219Y1212D02* X2282D01* X2219Y1262D02* X2282D01* X2219Y1312D02* X2282D01* X2219Y1362D02* X2282D01* X2219Y1412D02* X2282D01* X2219Y1462D02* X2282D01* X2219Y1512D02* X2282D01* X2219Y1562D02* X2282D01* X2219Y1612D02* X2282D01* X2219Y1662D02* X2282D01* X2219Y1712D02* X2282D01* Y1762D02* X2219D01* X2282Y1812D02* X2219D01* X2372D02* X2435D01* X2372Y1762D02* X2435D01* Y1712D02* X2372D01* X2435Y1662D02* X2372D01* X2435Y1612D02* X2372D01* X2435Y1562D02* X2372D01* X2435Y1512D02* X2372D01* X2435Y1462D02* X2372D01* X2435Y1412D02* X2372D01* X2435Y1362D02* X2372D01* X2435Y1312D02* X2372D01* X2435Y1262D02* X2372D01* X2435Y1212D02* X2372D01* X2787Y1180D02* Y1200D01* X2725Y1180D02* Y1200D01* X2854Y1498D02* Y1518D01* X2792Y1498D02* Y1518D01* X2756Y1648D02* Y1628D01* X2818Y1648D02* Y1628D01* X2875D02* Y1648D01* X2937Y1628D02* Y1648D01* X2990Y1629D02* X3010D01* X2990Y1691D02* X3010D01* X2871Y1869D02* Y1889D01* X2809Y1869D02* Y1889D01* X2615Y2022D02* Y2002D01* X2677Y2022D02* Y2002D01* X2720Y2089D02* X2740D01* X2720Y2151D02* X2740D01* X2655Y2504D02* X2675D01* X2655Y2566D02* X2675D01* X2737Y2733D02* Y2713D01* X2799Y2733D02* Y2713D01* X2655Y2752D02* X2675D01* X2655Y2814D02* X2675D01* X2737D02* Y2834D01* X2799Y2814D02* Y2834D01* X2801Y2930D02* Y2950D01* Y3010D02* Y3030D01* X2739D02* Y3010D01* Y2950D02* Y2930D01* X2620Y2948D02* X2600D01* X2620Y3010D02* X2600D01* X2544Y2993D02* Y3013D01* X2482Y2993D02* Y3013D01* X2431Y3011D02* X2411D01* X2431Y2949D02* X2411D01* X2170Y3041D02* X2150D01* X2170Y2979D02* X2150D01* X2225Y2864D02* Y2844D01* X2287Y2864D02* Y2844D01* X2122Y2864D02* Y2844D01* X2060Y2864D02* Y2844D01* X1800Y2451D02* Y2471D01* X1738Y2451D02* Y2471D01* X3129Y2030D02* Y2050D01* X3191Y2030D02* Y2050D01* X3170Y2109D02* X3190D01* X3170Y2171D02* X3190D01* X3390Y2104D02* Y2084D01* Y2041D02* Y2021D01* X3452D02* Y2041D01* Y2084D02* Y2104D01* X3528D02* Y2084D01* Y2041D02* Y2021D01* X3590D02* Y2041D01* Y2084D02* Y2104D01* X3591Y2480D02* Y2500D01* X3529Y2480D02* Y2500D01* X3451D02* Y2480D01* Y2440D02* Y2420D01* X3389D02* Y2440D01* Y2480D02* Y2500D01* X3790Y2949D02* X3810D01* X3790Y3011D02* X3810D01* X3900D02* X3880D01* X3900Y2949D02* X3880D01* X4009Y2860D02* Y2880D01* X4071Y2860D02* Y2880D01* X4101Y2940D02* Y2960D01* X4039Y2940D02* Y2960D01* X4269D02* Y2940D01* X4279Y2880D02* Y2860D01* X4201Y2880D02* Y2860D01* X4139Y2880D02* Y2860D01* X4165Y2738D02* Y2718D01* X4103Y2738D02* Y2718D01* X4093Y2559D02* X4073D01* X4093Y2497D02* X4073D01* X4264Y2262D02* Y2282D01* X4326Y2262D02* Y2282D01* X4375Y2262D02* Y2282D01* X4437Y2262D02* Y2282D01* X4610Y2451D02* Y2471D01* X4548Y2451D02* Y2471D01* Y2518D02* Y2538D01* Y2584D02* Y2604D01* X4610D02* Y2584D01* Y2538D02* Y2518D01* X4691Y2715D02* Y2735D01* X4629Y2715D02* Y2735D01* X4915Y2679D02* X4935D01* X4915Y2741D02* X4935D01* X4837Y2322D02* X4817D01* X4754D02* X4774D01* Y2260D02* X4754D01* X4817D02* X4837D01* X4894Y2262D02* Y2282D01* X4956Y2262D02* Y2282D01* X5346Y1612D02* Y1632D01* Y1687D02* Y1707D01* Y1762D02* Y1782D01* X5284D02* Y1762D01* Y1707D02* Y1687D01* Y1632D02* Y1612D01* X5121Y1534D02* X5101D01* X5121Y1472D02* X5101D01* X5174Y1155D02* Y1175D01* X5236Y1155D02* Y1175D01* X5240Y1234D02* Y1254D01* X5178Y1234D02* Y1254D01* X5343Y1230D02* Y1210D01* X5405Y1230D02* Y1210D01* X4654Y1203D02* Y1183D01* X4716Y1203D02* Y1183D01* X4803Y1427D02* Y1447D01* X4741Y1427D02* Y1447D01* X4374Y1651D02* Y1671D01* X4312Y1651D02* Y1671D01* X4204Y1651D02* Y1671D01* X4142Y1651D02* Y1671D01* X3881Y1683D02* Y1703D01* X3819Y1683D02* Y1703D01* X3657Y1852D02* Y1872D01* X3595Y1852D02* Y1872D01* X3400Y1531D02* X3380D01* X3400Y1469D02* X3380D01* X3779Y1200D02* Y1180D01* X3841Y1200D02* Y1180D01* X5265Y2679D02* X5285D01* X5265Y2741D02* X5285D01* X5615Y2679D02* X5635D01* X5615Y2741D02* X5635D01* X5985D02* X5965D01* X5985Y2679D02* X5965D01* X6254Y2611D02* X6274D01* X6254Y2673D02* X6274D01* X6408D02* X6388D01* X6341D02* X6321D01* Y2611D02* X6341D01* X6388D02* X6408D01* X6787Y2502D02* Y2522D01* X6725Y2502D02* Y2522D01* X6695Y2599D02* X6715D01* X6778D02* X6758D01* Y2661D02* X6778D01* X6715D02* X6695D01* X6841D02* X6821D01* X6841Y2599D02* X6821D01* X6892D02* X6912D01* X6892Y2661D02* X6912D01* X7224Y2939D02* Y2919D01* Y2876D02* Y2856D01* X7162D02* Y2876D01* Y2919D02* Y2939D01* X7019Y3671D02* Y3691D01* X6957Y3671D02* Y3691D01* X6947Y3737D02* X6967D01* X7010D02* X7030D01* Y3799D02* X7010D01* X6967D02* X6947D01* X6537Y3902D02* X6557D01* X6537Y3964D02* X6557D01* X6876Y4237D02* X6896D01* X6935D02* X6955D01* X6876Y4299D02* X6896D01* X6935D02* X6955D01* X6994D02* X7014D01* X7053D02* X7073D01* Y4237D02* X7053D01* X7014D02* X6994D01* X7062Y4344D02* Y4364D01* X7000Y4344D02* Y4364D01* X6413Y4770D02* Y4790D01* X6351Y4770D02* Y4790D01* X6160Y4811D02* X6140D01* X6160Y4749D02* X6140D01* X5960Y4811D02* X5940D01* X5960Y4749D02* X5940D01* X5995Y4240D02* X5975D01* X5995Y4178D02* X5975D01* X5850Y4240D02* X5830D01* X5850Y4178D02* X5830D01* X5804Y3754D02* Y3774D01* X5866Y3754D02* Y3774D01* X5974Y3734D02* Y3714D01* X6036Y3734D02* Y3714D01* X6021Y3629D02* Y3609D01* X5959Y3629D02* Y3609D01* X6021Y3524D02* Y3504D01* X5959Y3524D02* Y3504D01* X5916Y3494D02* Y3474D01* X5854D02* Y3494D01* X5866Y3554D02* Y3574D01* X5804Y3554D02* Y3574D01* X6108Y3346D02* X6088D01* X6108Y3284D02* X6088D01* X6038Y3244D02* X6018D01* X6038Y3182D02* X6018D01* X6088D02* X6108D01* X6088Y3244D02* X6108D01* X5756Y3164D02* Y3184D01* X5694Y3164D02* Y3184D01* X5450Y3248D02* X5470D01* X5450Y3310D02* X5470D01* X5324Y3394D02* Y3414D01* X5386Y3394D02* Y3414D01* Y3464D02* Y3484D01* Y3534D02* Y3554D01* Y3624D02* Y3604D01* X5324Y3554D02* Y3534D01* Y3484D02* Y3464D01* X5121Y3489D02* Y3469D01* X5059Y3489D02* Y3469D01* X5101Y3704D02* Y3684D01* X5039Y3704D02* Y3684D01* Y3589D02* Y3609D01* X5101Y3589D02* Y3609D01* X5154Y3589D02* Y3609D01* X5216Y3589D02* Y3609D01* X5324Y3604D02* Y3624D01* Y3764D02* Y3784D01* X5386Y3764D02* Y3784D01* Y3844D02* Y3864D01* X5324Y3844D02* Y3864D01* X5101Y4009D02* Y3989D01* X5039Y4009D02* Y3989D01* X5610Y4811D02* X5590D01* X5610Y4749D02* X5590D01* X5260Y4811D02* X5240D01* X5260Y4749D02* X5240D01* X4910Y4811D02* X4890D01* X4910Y4749D02* X4890D01* X4560Y4811D02* X4540D01* X4560Y4749D02* X4540D01* X4287Y4770D02* Y4790D01* X4225Y4770D02* Y4790D01* X4531Y4410D02* Y4390D01* X4469Y4410D02* Y4390D01* X4531Y4060D02* Y4040D01* X4469Y4060D02* Y4040D01* X4250Y3951D02* X4230D01* X4170D02* X4150D01* Y3889D02* X4170D01* X4169Y3830D02* Y3810D01* X4231D02* Y3830D01* X4250Y3889D02* X4230D01* X4291Y3720D02* Y3740D01* X4229Y3720D02* Y3740D01* X4171Y3720D02* Y3740D01* X4109Y3720D02* Y3740D01* X4029Y3630D02* Y3610D01* X4091Y3630D02* Y3610D01* X4160Y3559D02* X4180D01* X4160Y3621D02* X4180D01* X4269Y3600D02* Y3580D01* Y3530D02* Y3510D01* Y3460D02* Y3440D01* X4331D02* Y3460D01* Y3510D02* Y3530D01* Y3580D02* Y3600D01* X4469Y3490D02* Y3510D01* X4531Y3490D02* Y3510D01* X4469Y3690D02* Y3710D01* X4531Y3690D02* Y3710D01* Y3310D02* Y3290D01* X4469Y3310D02* Y3290D01* X4331Y3240D02* Y3220D01* X4269Y3240D02* Y3220D01* X4220Y3238D02* Y3218D01* X4158Y3238D02* Y3218D01* X4269Y3080D02* Y3100D01* Y3150D02* Y3170D01* X4331D02* Y3150D01* Y3100D02* Y3080D01* Y3030D02* Y3010D01* X4269Y3030D02* Y3010D01* X4331Y2960D02* Y2940D01* X4341Y2880D02* Y2860D01* X4363Y2718D02* Y2738D01* X4425Y2718D02* Y2738D01* X4469Y2940D02* Y2960D01* X4531Y2940D02* Y2960D01* X3889Y3270D02* Y3250D01* Y3210D02* Y3190D01* X3951D02* Y3210D01* Y3250D02* Y3270D01* X4029Y3160D02* Y3180D01* X4091Y3160D02* Y3180D01* Y3230D02* Y3250D01* X4029Y3230D02* Y3250D01* X4093Y3373D02* Y3393D01* X4031Y3373D02* Y3393D01* X4091Y3510D02* Y3530D01* X4029Y3510D02* Y3530D01* X3971Y3510D02* Y3490D01* X3909Y3510D02* Y3490D01* X3859Y3580D02* X3879D01* X3859Y3642D02* X3879D01* X3859Y3880D02* Y3900D01* X3921Y3880D02* Y3900D01* X3979Y3860D02* Y3880D01* X3977Y3938D02* Y3958D01* X4041Y3860D02* Y3880D01* X4039Y3938D02* Y3958D01* X4069Y4020D02* Y4040D01* Y4100D02* Y4120D01* X4131D02* Y4100D01* Y4040D02* Y4020D01* X4030Y4199D02* X4050D01* X4110D02* X4130D01* Y4261D02* X4110D01* X4050D02* X4030D01* X3891Y4390D02* Y4370D01* X3829Y4390D02* Y4370D01* X3891Y4240D02* Y4220D01* X3829Y4240D02* Y4220D01* X3846Y4110D02* Y4090D01* Y4050D02* Y4030D01* X3784D02* Y4050D01* Y4090D02* Y4110D01* X3268Y3966D02* Y3986D01* X3330Y3966D02* Y3986D01* X3381Y3750D02* Y3770D01* X3319Y3750D02* Y3770D01* X3250Y3731D02* X3230D01* X3250Y3669D02* X3230D01* X3229Y3515D02* Y3535D01* Y3575D02* Y3595D01* X3291D02* Y3575D01* Y3535D02* Y3515D01* X3569Y3120D02* Y3140D01* Y3180D02* Y3200D01* X3631D02* Y3180D01* Y3140D02* Y3120D01* X3610Y3001D02* X3590D01* X3610Y2939D02* X3590D01* X3540D02* X3520D01* X3470D02* X3450D01* Y3001D02* X3470D01* X3520D02* X3540D01* X3320D02* X3300D01* X3250D02* X3230D01* Y2939D02* X3250D01* X3300D02* X3320D01* X3070Y2929D02* X3050D01* X3000D02* X2980D01* Y2991D02* X3000D01* X3050D02* X3070D01* X3120Y3109D02* X3140D01* X3120Y3171D02* X3140D01* X3021Y3240D02* Y3260D01* X2959Y3240D02* Y3260D01* X2850Y3129D02* X2870D01* X2850Y3191D02* X2870D01* X2850Y3249D02* X2870D01* Y3311D02* X2850D01* X2870Y3369D02* X2850D01* X2870Y3431D02* X2850D01* X2870Y3489D02* X2850D01* X2870Y3551D02* X2850D01* X2641Y3670D02* Y3690D01* X2579Y3670D02* Y3690D01* X2451Y3670D02* Y3690D01* X2389Y3670D02* Y3690D01* X2318Y3671D02* Y3691D01* X2256Y3671D02* Y3691D01* X2171Y3641D02* X2151D01* X2171Y3579D02* X2151D01* X2171Y3519D02* X2151D01* Y3457D02* X2171D01* Y3401D02* X2151D01* X2171Y3339D02* X2151D01* X1588Y3745D02* X1608D01* X1588Y3807D02* X1608D01* X1707D02* X1687D01* X1707Y3745D02* X1687D01* X1889Y3930D02* Y3950D01* X1951Y3930D02* Y3950D01* X1980Y4104D02* Y4124D01* X1918Y4104D02* Y4124D01* Y4179D02* Y4199D01* Y4258D02* Y4278D01* X1980D02* Y4258D01* Y4199D02* Y4179D01* X2099Y4152D02* Y4132D01* X2161Y4152D02* Y4132D01* X2187Y4425D02* X2167D01* X2187Y4363D02* X2167D01* X1994Y4359D02* X2014D01* X2069D02* X2089D01* Y4421D02* X2069D01* X2014D02* X1994D01* X1939D02* X1919D01* X1939Y4359D02* X1919D01* X1910Y4681D02* X1890D01* X1910Y4619D02* X1890D01* X1960D02* X1980D01* X1960Y4681D02* X1980D01* X2110Y4739D02* X2130D01* X2110Y4801D02* X2130D01* X2548Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2610D02* Y4336D01* Y4274D02* Y4254D01* X2701D02* Y4274D01* X2763Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2701Y4336D02* Y4356D01* X2670Y4419D02* X2690D01* X2670Y4481D02* X2690D01* X2780D02* X2760D01* X2780Y4419D02* X2760D01* X2916Y4335D02* Y4355D01* X2854Y4335D02* Y4355D01* Y4420D02* Y4440D01* X2916Y4420D02* Y4440D01* Y4565D02* Y4585D01* X2854Y4565D02* Y4585D01* X2796Y4813D02* X2776D01* X2796Y4751D02* X2776D01* X2851D02* X2871D01* X2851Y4813D02* X2871D01* X2929Y4710D02* Y4730D01* X2989Y4710D02* Y4730D01* X2991Y4710D02* Y4730D01* X3051Y4710D02* Y4730D01* X3112Y4710D02* Y4730D01* X3174Y4710D02* Y4730D01* X3143Y4792D02* Y4812D01* X3081Y4792D02* Y4812D01* X3253Y4750D02* X3273D01* X3253Y4812D02* X3273D01* X3346D02* X3326D01* X3346Y4750D02* X3326D01* X3400Y4751D02* X3420D01* X3400Y4813D02* X3420D01* X6056Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6118D02* Y1156D01* Y1207D02* Y1227D01* X6321Y1563D02* X6341D01* X6321Y1625D02* X6341D01* X6163Y2024D02* X6183D01* X6163Y2086D02* X6183D01* X6449Y2183D02* Y2203D01* X6511Y2183D02* Y2203D01* X6801Y2086D02* X6781D01* X6801Y2024D02* X6781D01* X6801Y1775D02* X6781D01* X6801Y1713D02* X6781D01* X6801Y1625D02* X6781D01* X6801Y1563D02* X6781D01* X7162Y1506D02* Y1486D01* Y1443D02* Y1423D01* X7224D02* Y1443D01* Y1486D02* Y1506D01* X6993Y1156D02* Y1136D01* X7055Y1156D02* Y1136D01* Y1227D02* Y1207D01* X6993Y1227D02* Y1207D01* X6904Y1220D02* X6884D01* X6904Y1158D02* X6884D01* X6738Y1220D02* X6718D01* X6738Y1158D02* X6718D01* X6573Y1220D02* X6553D01* X6573Y1158D02* X6553D01* D019* X1728Y1884D02* X1744D01* X1728Y1809D02* X1744D01* X1807D02* X1823D01* X1978Y1524D02* Y1508D01* X1904Y1524D02* Y1508D01* Y1445D02* Y1429D01* X2523Y1671D02* Y1719D01* X2573Y1671D02* Y1719D01* X2623Y1671D02* Y1719D01* X2673Y1671D02* Y1719D01* Y1895D02* Y1943D01* X2623Y1895D02* Y1943D01* X2573Y1895D02* Y1943D01* X2523Y1895D02* Y1943D01* X4059Y2392D02* Y2440D01* X4109Y2392D02* Y2440D01* X4159Y2392D02* Y2440D01* X4209Y2392D02* Y2440D01* X4319Y2392D02* Y2440D01* X4369Y2392D02* Y2440D01* X4419Y2392D02* Y2440D01* X4469Y2392D02* Y2440D01* Y2616D02* Y2664D01* X4419Y2616D02* Y2664D01* X4369Y2616D02* Y2664D01* X4319Y2616D02* Y2664D01* X4209Y2616D02* Y2664D01* X4159Y2616D02* Y2664D01* X4109Y2616D02* Y2664D01* X4059Y2616D02* Y2664D01* X5315Y2021D02* Y2069D01* X5365Y2021D02* Y2069D01* X5415Y2021D02* Y2069D01* X5465Y2021D02* Y2069D01* Y2245D02* Y2293D01* X5415Y2245D02* Y2293D01* X5365Y2245D02* Y2293D01* X5315Y2245D02* Y2293D01* X5653D02* Y2245D01* X5703Y2293D02* Y2245D01* X5753Y2293D02* Y2245D01* X5803Y2293D02* Y2245D01* Y2069D02* Y2021D01* X5753Y2069D02* Y2021D01* X5703Y2069D02* Y2021D01* X5653Y2069D02* Y2021D01* X6423Y1744D02* X6471D01* X6423Y1694D02* X6471D01* X6423Y1644D02* X6471D01* X6423Y1594D02* X6471D01* X6695D02* X6647D01* X6695Y1644D02* X6647D01* X6695Y1694D02* X6647D01* X6695Y1744D02* X6647D01* X6571Y2911D02* Y2959D01* X6621Y2911D02* Y2959D01* X6671Y2911D02* Y2959D01* X6721Y2911D02* Y2959D01* X6819Y2911D02* Y2959D01* X6869Y2911D02* Y2959D01* X6919Y2911D02* Y2959D01* X6969Y2911D02* Y2959D01* Y3135D02* Y3183D01* X6919Y3135D02* Y3183D01* X6869Y3135D02* Y3183D01* X6819Y3135D02* Y3183D01* X6721Y3135D02* Y3183D01* X6671Y3135D02* Y3183D01* X6621Y3135D02* Y3183D01* X6571Y3135D02* Y3183D01* Y3325D02* Y3373D01* X6621Y3325D02* Y3373D01* X6671Y3325D02* Y3373D01* X6721Y3325D02* Y3373D01* X6819Y3325D02* Y3373D01* X6869Y3325D02* Y3373D01* X6919Y3325D02* Y3373D01* X6969Y3325D02* Y3373D01* Y3549D02* Y3597D01* X6919Y3549D02* Y3597D01* X6869Y3549D02* Y3597D01* X6819Y3549D02* Y3597D01* X6721Y3549D02* Y3597D01* X6671Y3549D02* Y3597D01* X6621Y3549D02* Y3597D01* X6571Y3549D02* Y3597D01* D120* X2283Y2024D02* X2311D01* X2283Y1992D02* X2311D01* X2283Y1961D02* X2311D01* X2283Y1929D02* X2311D01* X2358D02* X2386D01* X2358Y1961D02* X2386D01* X2358Y1992D02* X2386D01* X2358Y2024D02* X2386D01* X2555Y1563D02* Y1535D01* X2587Y1563D02* Y1535D01* X2618Y1563D02* Y1535D01* X2650Y1563D02* Y1535D01* Y1460D02* Y1488D01* X2618Y1460D02* Y1488D01* X2587Y1460D02* Y1488D01* X2555Y1460D02* Y1488D01* X3513Y1439D02* Y1467D01* X3544Y1439D02* Y1467D01* X3576Y1439D02* Y1467D01* X3607Y1439D02* Y1467D01* Y1541D02* Y1513D01* X3576Y1541D02* Y1513D01* X3544Y1541D02* Y1513D01* X3513Y1541D02* Y1513D01* X3089Y2317D02* X3117D01* X3089Y2286D02* X3117D01* X3089Y2254D02* X3117D01* X3089Y2223D02* X3117D01* X3163D02* X3191D01* X3163Y2254D02* X3191D01* X3163Y2286D02* X3191D01* X3163Y2317D02* X3191D01* X3507Y3107D02* Y3079D01* X3476Y3107D02* Y3079D01* X3444Y3107D02* Y3079D01* X3413Y3107D02* Y3079D01* Y3153D02* Y3181D01* X3444Y3153D02* Y3181D01* X3476Y3153D02* Y3181D01* X3507Y3153D02* Y3181D01* X2563Y3996D02* Y3968D01* X2594Y3996D02* Y3968D01* X2626Y3996D02* Y3968D01* X2657Y3996D02* Y3968D01* Y4043D02* Y4071D01* X2626Y4043D02* Y4071D01* X2594Y4043D02* Y4071D01* X2563Y4043D02* Y4071D01* X2370Y4299D02* X2342D01* X2370Y4268D02* X2342D01* X2370Y4236D02* X2342D01* X2370Y4205D02* X2342D01* X2295D02* X2267D01* X2295Y4236D02* X2267D01* X2295Y4268D02* X2267D01* X2295Y4299D02* X2267D01* X4127Y4327D02* Y4299D01* X4096Y4327D02* Y4299D01* X4064Y4327D02* Y4299D01* X4033Y4327D02* Y4299D01* Y4373D02* Y4401D01* X4064Y4373D02* Y4401D01* X4096Y4373D02* Y4401D01* X4127Y4373D02* Y4401D01* X4449Y4453D02* X4477D01* X4449Y4484D02* X4477D01* X4449Y4516D02* X4477D01* X4449Y4547D02* X4477D01* X4449Y4603D02* X4477D01* X4449Y4634D02* X4477D01* X4449Y4666D02* X4477D01* X4449Y4697D02* X4477D01* X4523D02* X4551D01* X4523Y4666D02* X4551D01* X4523Y4634D02* X4551D01* X4523Y4603D02* X4551D01* X4523Y4547D02* X4551D01* X4523Y4516D02* X4551D01* X4523Y4484D02* X4551D01* X4523Y4453D02* X4551D01* Y4253D02* X4523D01* X4551Y4284D02* X4523D01* X4551Y4316D02* X4523D01* X4551Y4347D02* X4523D01* X4477D02* X4449D01* X4477Y4316D02* X4449D01* X4477Y4284D02* X4449D01* X4477Y4253D02* X4449D01* Y4103D02* X4477D01* X4449Y4134D02* X4477D01* X4449Y4166D02* X4477D01* X4449Y4197D02* X4477D01* X4523D02* X4551D01* X4523Y4166D02* X4551D01* X4523Y4134D02* X4551D01* X4523Y4103D02* X4551D01* Y3903D02* X4523D01* X4551Y3934D02* X4523D01* X4551Y3966D02* X4523D01* X4551Y3997D02* X4523D01* X4477D02* X4449D01* X4477Y3966D02* X4449D01* X4477Y3934D02* X4449D01* X4477Y3903D02* X4449D01* Y3753D02* X4477D01* X4449Y3784D02* X4477D01* X4449Y3816D02* X4477D01* X4449Y3847D02* X4477D01* X4523D02* X4551D01* X4523Y3816D02* X4551D01* X4523Y3784D02* X4551D01* X4523Y3753D02* X4551D01* Y3553D02* X4523D01* X4551Y3584D02* X4523D01* X4551Y3616D02* X4523D01* X4551Y3647D02* X4523D01* X4477D02* X4449D01* X4477Y3616D02* X4449D01* X4477Y3584D02* X4449D01* X4477Y3553D02* X4449D01* Y3353D02* X4477D01* X4449Y3384D02* X4477D01* X4449Y3416D02* X4477D01* X4449Y3447D02* X4477D01* X4523D02* X4551D01* X4523Y3416D02* X4551D01* X4523Y3384D02* X4551D01* X4523Y3353D02* X4551D01* X4311Y3293D02* X4283D01* X4311Y3324D02* X4283D01* X4311Y3356D02* X4283D01* X4311Y3387D02* X4283D01* X4237D02* X4209D01* X4237Y3356D02* X4209D01* X4237Y3324D02* X4209D01* X4237Y3293D02* X4209D01* X4131Y3013D02* X4103D01* X4131Y3044D02* X4103D01* X4131Y3076D02* X4103D01* X4131Y3107D02* X4103D01* X4057D02* X4029D01* X4057Y3076D02* X4029D01* X4057Y3044D02* X4029D01* X4057Y3013D02* X4029D01* X4551Y3153D02* X4523D01* X4551Y3184D02* X4523D01* X4551Y3216D02* X4523D01* X4551Y3247D02* X4523D01* X4477D02* X4449D01* X4477Y3216D02* X4449D01* X4477Y3184D02* X4449D01* X4477Y3153D02* X4449D01* Y3003D02* X4477D01* X4449Y3034D02* X4477D01* X4449Y3066D02* X4477D01* X4449Y3097D02* X4477D01* X4523D02* X4551D01* X4523Y3066D02* X4551D01* X4523Y3034D02* X4551D01* X4523Y3003D02* X4551D01* Y2803D02* X4523D01* X4551Y2834D02* X4523D01* X4551Y2866D02* X4523D01* X4551Y2897D02* X4523D01* X4477D02* X4449D01* X4477Y2866D02* X4449D01* X4477Y2834D02* X4449D01* X4477Y2803D02* X4449D01* X4778Y2761D02* Y2733D01* X4809Y2761D02* Y2733D01* X4841Y2761D02* Y2733D01* X4872Y2761D02* Y2733D01* Y2659D02* Y2687D01* X4841Y2659D02* Y2687D01* X4809Y2659D02* Y2687D01* X4778Y2659D02* Y2687D01* X4978D02* Y2659D01* X5009Y2687D02* Y2659D01* X5041Y2687D02* Y2659D01* X5072Y2687D02* Y2659D01* X5128Y2687D02* Y2659D01* X5159Y2687D02* Y2659D01* X5191Y2687D02* Y2659D01* X5222Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5191Y2733D02* Y2761D01* X5159Y2733D02* Y2761D01* X5128Y2733D02* Y2761D01* X5072Y2733D02* Y2761D01* X5041Y2733D02* Y2761D01* X5009Y2733D02* Y2761D01* X4978Y2733D02* Y2761D01* X5328Y2687D02* Y2659D01* X5359Y2687D02* Y2659D01* X5391Y2687D02* Y2659D01* X5422Y2687D02* Y2659D01* X5478Y2687D02* Y2659D01* X5509Y2687D02* Y2659D01* X5541Y2687D02* Y2659D01* X5572Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5541Y2733D02* Y2761D01* X5509Y2733D02* Y2761D01* X5478Y2733D02* Y2761D01* X5422Y2733D02* Y2761D01* X5391Y2733D02* Y2761D01* X5359Y2733D02* Y2761D01* X5328Y2733D02* Y2761D01* X5678D02* Y2733D01* X5709Y2761D02* Y2733D01* X5741Y2761D02* Y2733D01* X5772Y2761D02* Y2733D01* X5828Y2761D02* Y2733D01* X5859Y2761D02* Y2733D01* X5891Y2761D02* Y2733D01* X5922Y2761D02* Y2733D01* Y2659D02* Y2687D01* X5891Y2659D02* Y2687D01* X5859Y2659D02* Y2687D01* X5828Y2659D02* Y2687D01* X5772Y2659D02* Y2687D01* X5741Y2659D02* Y2687D01* X5709Y2659D02* Y2687D01* X5678Y2659D02* Y2687D01* X6028D02* Y2659D01* X6059Y2687D02* Y2659D01* X6091Y2687D02* Y2659D01* X6122Y2687D02* Y2659D01* Y2733D02* Y2761D01* X6091Y2733D02* Y2761D01* X6059Y2733D02* Y2761D01* X6028Y2733D02* Y2761D01* X6630Y2594D02* X6602D01* X6630Y2626D02* X6602D01* X6630Y2657D02* X6602D01* X6630Y2689D02* X6602D01* X6555D02* X6527D01* X6555Y2657D02* X6527D01* X6555Y2626D02* X6527D01* X6555Y2594D02* X6527D01* Y2736D02* X6555D01* X6527Y2768D02* X6555D01* X6527Y2799D02* X6555D01* X6527Y2831D02* X6555D01* X6602D02* X6630D01* X6602Y2799D02* X6630D01* X6602Y2768D02* X6630D01* X6602Y2736D02* X6630D01* X7142Y2717D02* X7170D01* X7142Y2748D02* X7170D01* X7142Y2780D02* X7170D01* X7142Y2811D02* X7170D01* X7216D02* X7244D01* X7216Y2780D02* X7244D01* X7216Y2748D02* X7244D01* X7216Y2717D02* X7244D01* Y2665D02* X7216D01* X7244Y2634D02* X7216D01* X7244Y2602D02* X7216D01* X7244Y2571D02* X7216D01* X7170D02* X7142D01* X7170Y2602D02* X7142D01* X7170Y2634D02* X7142D01* X7170Y2665D02* X7142D01* X7244Y2425D02* X7216D01* X7244Y2457D02* X7216D01* X7244Y2488D02* X7216D01* X7244Y2520D02* X7216D01* X7170D02* X7142D01* X7170Y2488D02* X7142D01* X7170Y2457D02* X7142D01* X7170Y2425D02* X7142D01* Y2374D02* X7170D01* X7142Y2343D02* X7170D01* X7142Y2311D02* X7170D01* X7142Y2280D02* X7170D01* X7216D02* X7244D01* X7216Y2311D02* X7244D01* X7216Y2343D02* X7244D01* X7216Y2374D02* X7244D01* X7142Y2134D02* X7170D01* X7142Y2165D02* X7170D01* X7142Y2197D02* X7170D01* X7142Y2228D02* X7170D01* X7216D02* X7244D01* X7216Y2197D02* X7244D01* X7216Y2165D02* X7244D01* X7216Y2134D02* X7244D01* Y2083D02* X7216D01* X7244Y2051D02* X7216D01* X7244Y2020D02* X7216D01* X7244Y1988D02* X7216D01* X7170D02* X7142D01* X7170Y2020D02* X7142D01* X7170Y2051D02* X7142D01* X7170Y2083D02* X7142D01* Y1843D02* X7170D01* X7142Y1874D02* X7170D01* X7142Y1906D02* X7170D01* X7142Y1937D02* X7170D01* X7216D02* X7244D01* X7216Y1906D02* X7244D01* X7216Y1874D02* X7244D01* X7216Y1843D02* X7244D01* Y1791D02* X7216D01* X7244Y1760D02* X7216D01* X7244Y1728D02* X7216D01* X7244Y1697D02* X7216D01* X7170D02* X7142D01* X7170Y1728D02* X7142D01* X7170Y1760D02* X7142D01* X7170Y1791D02* X7142D01* Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* X6213Y1166D02* Y1138D01* X6244Y1166D02* Y1138D01* X6276Y1166D02* Y1138D01* X6307Y1166D02* Y1138D01* X6366Y1166D02* Y1138D01* X6398Y1166D02* Y1138D01* X6429Y1166D02* Y1138D01* X6461Y1166D02* Y1138D01* Y1212D02* Y1240D01* X6429Y1212D02* Y1240D01* X6398Y1212D02* Y1240D01* X6366Y1212D02* Y1240D01* X6307Y1212D02* Y1240D01* X6276Y1212D02* Y1240D01* X6244Y1212D02* Y1240D01* X6213Y1212D02* Y1240D01* X6256Y1657D02* X6228D01* X6256Y1626D02* X6228D01* X6256Y1594D02* X6228D01* X6256Y1563D02* X6228D01* X6181D02* X6153D01* X6181Y1594D02* X6153D01* X6181Y1626D02* X6153D01* X6181Y1657D02* X6153D01* Y1870D02* X6181D01* X6153Y1902D02* X6181D01* X6153Y1933D02* X6181D01* X6153Y1965D02* X6181D01* X6228D02* X6256D01* X6228Y1933D02* X6256D01* X6228Y1902D02* X6256D01* X6228Y1870D02* X6256D01* Y1717D02* X6228D01* X6256Y1748D02* X6228D01* X6256Y1780D02* X6228D01* X6256Y1811D02* X6228D01* X6181D02* X6153D01* X6181Y1780D02* X6153D01* X6181Y1748D02* X6153D01* X6181Y1717D02* X6153D01* X5855Y1709D02* X5827D01* X5855Y1677D02* X5827D01* X5855Y1646D02* X5827D01* X5855Y1614D02* X5827D01* X5780D02* X5752D01* X5780Y1646D02* X5752D01* X5780Y1677D02* X5752D01* X5780Y1709D02* X5752D01* X7142Y3079D02* X7170D01* X7142Y3047D02* X7170D01* X7142Y3016D02* X7170D01* X7142Y2984D02* X7170D01* X7216D02* X7244D01* X7216Y3016D02* X7244D01* X7216Y3047D02* X7244D01* X7216Y3079D02* X7244D01* Y3130D02* X7216D01* X7244Y3161D02* X7216D01* X7244Y3193D02* X7216D01* X7244Y3224D02* X7216D01* X7170D02* X7142D01* X7170Y3193D02* X7142D01* X7170Y3161D02* X7142D01* X7170Y3130D02* X7142D01* Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* Y4681D02* X7216D01* X7244Y4650D02* X7216D01* X7244Y4618D02* X7216D01* X7244Y4587D02* X7216D01* X7170D02* X7142D01* X7170Y4618D02* X7142D01* X7170Y4650D02* X7142D01* X7170Y4681D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7216D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X6630Y4232D02* X6602D01* X6630Y4264D02* X6602D01* X6630Y4295D02* X6602D01* X6630Y4327D02* X6602D01* X6555D02* X6527D01* X6555Y4295D02* X6527D01* X6555Y4264D02* X6527D01* X6555Y4232D02* X6527D01* X6003Y4803D02* Y4831D01* X6034Y4803D02* Y4831D01* X6066Y4803D02* Y4831D01* X6097Y4803D02* Y4831D01* Y4757D02* Y4729D01* X6066Y4757D02* Y4729D01* X6034Y4757D02* Y4729D01* X6003Y4757D02* Y4729D01* X5653D02* Y4757D01* X5684Y4729D02* Y4757D01* X5716Y4729D02* Y4757D01* X5747Y4729D02* Y4757D01* X5803Y4729D02* Y4757D01* X5834Y4729D02* Y4757D01* X5866Y4729D02* Y4757D01* X5897Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5866Y4831D02* Y4803D01* X5834Y4831D02* Y4803D01* X5803Y4831D02* Y4803D01* X5747Y4831D02* Y4803D01* X5716Y4831D02* Y4803D01* X5684Y4831D02* Y4803D01* X5653Y4831D02* Y4803D01* X5303D02* Y4831D01* X5334Y4803D02* Y4831D01* X5366Y4803D02* Y4831D01* X5397Y4803D02* Y4831D01* X5453Y4803D02* Y4831D01* X5484Y4803D02* Y4831D01* X5516Y4803D02* Y4831D01* X5547Y4803D02* Y4831D01* Y4757D02* Y4729D01* X5516Y4757D02* Y4729D01* X5484Y4757D02* Y4729D01* X5453Y4757D02* Y4729D01* X5397Y4757D02* Y4729D01* X5366Y4757D02* Y4729D01* X5334Y4757D02* Y4729D01* X5303Y4757D02* Y4729D01* X4953D02* Y4757D01* X4984Y4729D02* Y4757D01* X5016Y4729D02* Y4757D01* X5047Y4729D02* Y4757D01* X5103Y4729D02* Y4757D01* X5134Y4729D02* Y4757D01* X5166Y4729D02* Y4757D01* X5197Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5166Y4831D02* Y4803D01* X5134Y4831D02* Y4803D01* X5103Y4831D02* Y4803D01* X5047Y4831D02* Y4803D01* X5016Y4831D02* Y4803D01* X4984Y4831D02* Y4803D01* X4953Y4831D02* Y4803D01* X4603D02* Y4831D01* X4634Y4803D02* Y4831D01* X4666Y4803D02* Y4831D01* X4697Y4803D02* Y4831D01* X4753Y4803D02* Y4831D01* X4784Y4803D02* Y4831D01* X4816Y4803D02* Y4831D01* X4847Y4803D02* Y4831D01* Y4757D02* Y4729D01* X4816Y4757D02* Y4729D01* X4784Y4757D02* Y4729D01* X4753Y4757D02* Y4729D01* X4697Y4757D02* Y4729D01* X4666Y4757D02* Y4729D01* X4634Y4757D02* Y4729D01* X4603Y4757D02* Y4729D01* D050* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D061* X1528Y1709D02* D03* D054* X2081Y4644D02* D03* X1814Y4268D02* D03* Y4189D02* D03* Y4091D02* D03* X1511Y3526D02* D03* Y3426D02* D03* Y3141D02* D03* Y3041D02* D03* X1652Y2732D02* D03* X1573D02* D03* Y2614D02* D03* X1652D02* D03* X1730D02* D03* X1652Y2260D02* D03* X1573D02* D03* Y2142D02* D03* X1652D02* D03* X1730D02* D03* D028* X1606Y1069D02* X3047D01* X3344D02* X5405D01* X6252D02* X7693D01* D029* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D384* X1922Y2681D02* X1973D01* X1922Y2665D02* X1973D01* X1922Y2650D02* X1973D01* Y2618D02* X1922D01* X1973Y2634D02* X1922D01* Y2602D02* X1973D01* X1922Y2587D02* X1973D01* X1922Y2571D02* X1973D01* Y2539D02* X1922D01* X1973Y2555D02* X1922D01* Y2524D02* X1973D01* X1922Y2508D02* X1973D01* Y2476D02* X1922D01* X1973Y2492D02* X1922D01* Y2461D02* X1973D01* X1922Y2445D02* X1973D01* Y2413D02* X1922D01* X1973Y2429D02* X1922D01* Y2398D02* X1973D01* X1922Y2382D02* X1973D01* Y2350D02* X1922D01* X1973Y2366D02* X1922D01* Y2335D02* X1973D01* X1922Y2319D02* X1973D01* X1922Y2303D02* X1973D01* X1922Y2287D02* X1973D01* X1922Y2272D02* X1973D01* Y2240D02* X1922D01* X1973Y2256D02* X1922D01* X1973Y2209D02* X1922D01* X1973Y2224D02* X1922D01* Y2193D02* X1973D01* X2004Y2162D02* Y2111D01* X2020Y2162D02* Y2111D01* X2035Y2162D02* Y2111D01* X2051Y2162D02* Y2111D01* X2067D02* Y2162D01* X2083Y2111D02* Y2162D01* X2098Y2111D02* Y2162D01* X2114Y2111D02* Y2162D01* X2146D02* Y2111D01* X2130Y2162D02* Y2111D01* X2161D02* Y2162D01* X2177Y2111D02* Y2162D01* X2209D02* Y2111D01* X2193Y2162D02* Y2111D01* X2224D02* Y2162D01* X2240Y2111D02* Y2162D01* X2272D02* Y2111D01* X2256Y2162D02* Y2111D01* X2303Y2162D02* Y2111D01* X2287Y2162D02* Y2111D01* X2319D02* Y2162D01* X2335Y2111D02* Y2162D01* X2350Y2111D02* Y2162D01* X2366Y2111D02* Y2162D01* X2398D02* Y2111D01* X2382Y2162D02* Y2111D01* X2413D02* Y2162D01* X2429Y2111D02* Y2162D01* X2461D02* Y2111D01* X2445Y2162D02* Y2111D01* X2476D02* Y2162D01* X2492Y2111D02* Y2162D01* X2574Y2193D02* X2523D01* X2574Y2209D02* X2523D01* Y2240D02* X2574D01* X2523Y2224D02* X2574D01* Y2256D02* X2523D01* X2574Y2272D02* X2523D01* Y2303D02* X2574D01* X2523Y2287D02* X2574D01* Y2319D02* X2523D01* X2574Y2335D02* X2523D01* X2574Y2350D02* X2523D01* X2574Y2366D02* X2523D01* Y2398D02* X2574D01* X2523Y2382D02* X2574D01* Y2413D02* X2523D01* X2574Y2429D02* X2523D01* Y2461D02* X2574D01* X2523Y2445D02* X2574D01* Y2476D02* X2523D01* X2574Y2492D02* X2523D01* Y2524D02* X2574D01* X2523Y2508D02* X2574D01* X2523Y2555D02* X2574D01* X2523Y2539D02* X2574D01* Y2571D02* X2523D01* X2574Y2587D02* X2523D01* X2574Y2602D02* X2523D01* X2574Y2618D02* X2523D01* X2574Y2634D02* X2523D01* Y2665D02* X2574D01* X2523Y2650D02* X2574D01* Y2681D02* X2523D01* X2492Y2712D02* Y2763D01* X2476D02* Y2712D01* X2461Y2763D02* Y2712D01* X2445Y2763D02* Y2712D01* X2429D02* Y2763D01* X2413Y2712D02* Y2763D01* X2382D02* Y2712D01* X2398Y2763D02* Y2712D01* X2366D02* Y2763D01* X2350Y2712D02* Y2763D01* X2335Y2712D02* Y2763D01* X2319Y2712D02* Y2763D01* X2287D02* Y2712D01* X2303Y2763D02* Y2712D01* X2272D02* Y2763D01* X2256Y2712D02* Y2763D01* X2240Y2712D02* Y2763D01* X2224Y2712D02* Y2763D01* X2193D02* Y2712D01* X2209Y2763D02* Y2712D01* X2177D02* Y2763D01* X2161Y2712D02* Y2763D01* X2130D02* Y2712D01* X2146Y2763D02* Y2712D01* X2114D02* Y2763D01* X2098Y2712D02* Y2763D01* X2067D02* Y2712D01* X2083Y2763D02* Y2712D01* X2051D02* Y2763D01* X2035Y2712D02* Y2763D01* X2004D02* Y2712D01* X2020Y2763D02* Y2712D01* D053* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D049* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D048* X2327Y1237D02* D03* D03* Y1787D02* D03* D03* D023* X4211Y1717D02* Y1757D01* X4135Y1717D02* Y1757D01* X4173Y1817D02* Y1857D01* X4343D02* Y1817D01* X4305Y1757D02* Y1717D01* X4381Y1757D02* Y1717D01* X3988Y4140D02* Y4100D01* X3912Y4140D02* Y4100D01* X3950Y4040D02* Y4000D01* X4020Y3820D02* Y3780D01* X3982Y3720D02* Y3680D01* X4058Y3720D02* Y3680D01* X3076Y3091D02* X3036D01* X3076Y3167D02* X3036D01* X2976Y3129D02* X2936D01* X2196Y4218D02* X2156D01* X2196Y4294D02* X2156D01* X2096Y4256D02* X2056D01* X1970Y4520D02* X2010D01* X2070Y4482D02* X2110D01* X2070Y4558D02* X2110D01* X6918Y4592D02* X6958D01* X6918Y4668D02* X6958D01* X7018Y4630D02* X7058D01* Y4469D02* X7018D01* X6958Y4431D02* X6918D01* X6958Y4507D02* X6918D01* X6000Y3984D02* Y3944D01* X5962Y3884D02* Y3844D01* X6038Y3884D02* Y3844D01* X7016Y2700D02* Y2660D01* X6978Y2600D02* Y2560D01* X7054Y2600D02* Y2560D01* D346* X1641Y1217D02* D03* Y4720D02* D03* D337* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D059* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D334* X1670Y3058D02* D03* Y3509D02* D03* D016* X2958Y4203D02* X3018D01* X2958Y4223D02* X3018D01* Y4262D02* X2958D01* X3018Y4242D02* X2958D01* Y4282D02* X3018D01* X2958Y4301D02* X3018D01* Y4341D02* X2958D01* X3018Y4321D02* X2958D01* Y4360D02* X3018D01* X2958Y4380D02* X3018D01* Y4420D02* X2958D01* X3018Y4400D02* X2958D01* Y4439D02* X3018D01* X2958Y4459D02* X3018D01* Y4518D02* X2958D01* X3018Y4498D02* X2958D01* X3018Y4479D02* X2958D01* Y4538D02* X3018D01* X2958Y4557D02* X3018D01* X2958Y4577D02* X3018D01* X3782D02* X3722D01* X3782Y4557D02* X3722D01* X3782Y4538D02* X3722D01* Y4479D02* X3782D01* X3722Y4498D02* X3782D01* X3722Y4518D02* X3782D01* Y4439D02* X3722D01* X3782Y4459D02* X3722D01* Y4420D02* X3782D01* X3722Y4400D02* X3782D01* Y4360D02* X3722D01* X3782Y4380D02* X3722D01* Y4341D02* X3782D01* X3722Y4321D02* X3782D01* Y4282D02* X3722D01* X3782Y4301D02* X3722D01* Y4262D02* X3782D01* X3722Y4242D02* X3782D01* Y4203D02* X3722D01* X3782Y4223D02* X3722D01* X5800Y3411D02* Y3351D01* X5825Y3411D02* Y3351D01* X5850Y3411D02* Y3351D01* X5900D02* Y3411D01* X5875Y3351D02* Y3411D01* X5925D02* Y3351D01* X5950Y3411D02* Y3351D01* X5975Y3411D02* Y3351D01* Y3216D02* Y3156D01* X5950D02* Y3216D01* X5925Y3156D02* Y3216D01* X5875D02* Y3156D01* X5900Y3216D02* Y3156D01* X5850D02* Y3216D01* X5825Y3156D02* Y3216D01* X5800Y3156D02* Y3216D01* D300* X5408Y1934D02* X5482D01* X5408Y1960D02* X5482D01* Y1908D02* X5408D01* X5482Y1883D02* X5408D01* Y1832D02* X5482D01* X5408Y1857D02* X5482D01* Y1806D02* X5408D01* X5482Y1781D02* X5408D01* Y1729D02* X5482D01* X5408Y1755D02* X5482D01* Y1704D02* X5408D01* X5482Y1678D02* X5408D01* X5636D02* X5710D01* X5636Y1704D02* X5710D01* Y1755D02* X5636D01* X5710Y1729D02* X5636D01* Y1781D02* X5710D01* X5636Y1806D02* X5710D01* Y1857D02* X5636D01* X5710Y1832D02* X5636D01* Y1883D02* X5710D01* X5636Y1908D02* X5710D01* Y1960D02* X5636D01* X5710Y1934D02* X5636D01* X6786Y3841D02* Y3915D01* X6812Y3841D02* Y3915D01* X6863D02* Y3841D01* X6838Y3915D02* Y3841D01* X6889D02* Y3915D01* X6914Y3841D02* Y3915D01* X6966D02* Y3841D01* X6940Y3915D02* Y3841D01* X6991D02* Y3915D01* X7017Y3841D02* Y3915D01* Y4117D02* Y4191D01* X6991Y4117D02* Y4191D01* X6940D02* Y4117D01* X6966Y4191D02* Y4117D01* X6914D02* Y4191D01* X6889Y4117D02* Y4191D01* X6838D02* Y4117D01* X6863Y4191D02* Y4117D01* X6812D02* Y4191D01* X6786Y4117D02* Y4191D01* D319* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D062* X7425Y2102D02* D03* X7661D02* D03* D057* X2359Y4522D02* D03* X3940D02* D03* D071* X1904Y1429D02* D03* Y1445D02* D03* Y1508D02* D03* Y1524D02* D03* X1978D02* D03* Y1508D02* D03* X1823Y1809D02* D03* X1807D02* D03* X1744D02* D03* X1728D02* D03* Y1884D02* D03* X1744D02* D03* D077* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D081* X2179Y4516D02* D03* X1814Y4366D02* D03* X1730Y2732D02* D03* Y2260D02* D03* X1606Y1069D02* D03* X3047D02* D03* X3344D02* D03* X5405D02* D03* X6252D02* D03* X7693D02* D03* D082* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D386* X2303Y2763D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* X1922Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X1973D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2004Y2712D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* X2523Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X2574D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2492Y2763D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2492Y2162D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2303D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* Y2111D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* D080* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D076* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* D074* X2219Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2282D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2372D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2435D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* M02*gerbv-2.7.0/example/ekf2/drill0.exc0000644000175000017500000010263313421555714016672 0ustar carstencarstenG90 M72 M48 T0C0.006 T1C0.012 T3C0.020 T4C0.024 T5C0.028 T6C0.031 T7C0.035 T8C0.039 T9C0.043 T10C0.047 T14C0.063 T16C0.071 T18C0.079 T19C0.083 T20C0.087 T21C0.091 T23C0.098 T25C0.110 T27C0.126 % G90 M72 M48 % T5 X69724Y10689 X43740 X23268 T4 X55450Y34065 X56450 X55450Y34565 X56450 X55450Y35065 X56450 X55450Y35565 X56450 X55450Y36065 X56450 X55450Y36565 X56450 X55450Y37065 X56450 X55450Y37565 X56450 X55450Y38065 X56450 X55450Y38565 X56450 X55450Y39065 X56450 X55450Y39565 X56450 X55450Y40065 X56450 X55450Y40565 X56450 X55450Y41065 X56450 T3 X19764Y12795 Y12303 Y11811 T5 X18339Y14209 Y15209 X18858Y38248 Y37264 X19843Y38248 Y37264 T20 X39400Y46400 X23589 T7 X21792Y45160 X20808Y46440 X19205Y34587 X20205Y34087 X19205Y33587 X20205Y33087 X19205Y32587 X20205Y32087 X19205Y31587 X20205Y31087 T14 X17906Y35886 Y29783 T8 X15106Y35264 Y34264 Y31406 Y30406 T4 X77402Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 X76614Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 X75827Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 X75039Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 X74252Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 X73465Y31260 Y32047 Y32835 Y33622 Y34409 Y35197 Y35984 Y36772 Y37559 Y38346 Y39134 Y39921 Y40709 Y41496 Y42283 Y43071 Y43858 Y44646 Y45433 Y46220 Y47008 Y47795 T5 X70827Y39803 Y41772 X68858Y37874 X66890 T25 X16406Y12165 T7 X50189Y13386 X49189 X48189 X47189 X46189 X45189 X44189 X43189 T8 X18138Y43661 Y42677 Y41890 Y40906 T23 X17071Y44870 Y39697 T4 X77402Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 X76614Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 X75827Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 X75039Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 X74252Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 X73465Y11575 Y12362 Y13150 Y13937 Y14724 Y15512 Y16299 Y17087 Y17874 Y18661 Y19449 Y20236 Y21024 Y21811 Y22598 Y23386 Y24173 Y24961 Y25748 Y26535 Y27323 Y28110 Y28898 Y29685 Y30472 T7 X43700Y39850 Y38850 Y37850 X21378Y39488 Y40488 T5 X47350Y46445 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X46850Y45945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X46350Y45445 X47350 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X46850Y44945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X46350Y44445 X47350 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X46850Y43945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X46350Y43445 X47350 X48350 X62350 X63350 X64350 X46850Y42945 X47850 X48850 X61850 X62850 X63850 X46350Y42445 X47350 X48350 X62350 X63350 X64350 X46850Y41945 X47850 X48850 X61850 X62850 X63850 X46350Y41445 X47350 X48350 X62350 X63350 X64350 X46850Y40945 X47850 X48850 X61850 X62850 X63850 X46350Y40445 X47350 X48350 X62350 X63350 X64350 X46850Y39945 X47850 X48850 X61850 X62850 X63850 X46350Y39445 X47350 X48350 X62350 X63350 X64350 X46850Y38945 X47850 X48850 X61850 X62850 X63850 X46350Y38445 X47350 X48350 X62350 X63350 X64350 X46850Y37945 X47850 X48850 X61850 X62850 X63850 X46350Y37445 X47350 X48350 X62350 X63350 X64350 X46850Y36945 X47850 X48850 X61850 X62850 X63850 X46350Y36445 X47350 X48350 X62350 X63350 X64350 X46850Y35945 X47850 X48850 X61850 X62850 X63850 X46350Y35445 X47350 X48350 X62350 X63350 X64350 X46850Y34945 X47850 X48850 X61850 X62850 X63850 X46350Y34445 X47350 X48350 X62350 X63350 X64350 X46850Y33945 X47850 X48850 X61850 X62850 X63850 X46350Y33445 X47350 X48350 X62350 X63350 X64350 X46850Y32945 X47850 X48850 X61850 X62850 X63850 X46350Y32445 X47350 X48350 X62350 X63350 X64350 X46850Y31945 X47850 X48850 X61850 X62850 X63850 X46350Y31445 X47350 X48350 X62350 X63350 X64350 X46850Y30945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X46350Y30445 X47350 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X46850Y29945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X46350Y29445 X47350 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X46850Y28945 X47850 X48850 X49850 X50850 X51850 X52850 X53850 X54850 X55850 X56850 X57850 X58850 X59850 X60850 X61850 X62850 X63850 X47350Y28445 X48350 X49350 X50350 X51350 X52350 X53350 X54350 X55350 X56350 X57350 X58350 X59350 X60350 X61350 X62350 X63350 X64350 X16063Y16693 Y17480 X16850Y16693 Y17480 X17638Y16693 Y17480 X18425Y16693 Y17480 X19213Y16693 Y17480 X15276Y16299 Y17874 T18 Y17087 T6 X17303Y27323 Y26142 X16516Y27323 Y26142 X15728Y27323 Y26142 X17303Y22598 Y21417 X16516Y22598 Y21417 X15728Y22598 Y21417 T5 X41400Y28000 X43320 X57520Y25433 X55551 T25 X16406Y47205 T7 X18543Y47795 X19543 T5 X70827Y35945 Y33976 X65827Y25433 X63858 X61654 X59685 T1 X32350Y29050 X21310Y30100 X33600Y28470 X71040Y13521 X25370Y14270 X32780Y12390 X70890Y12380 X29470Y35850 X68250Y14860 X30200Y26360 X72578Y28822 X72670Y26179 X32760Y26840 X70510Y27220 X71090Y24540 X59210Y17900 X40790Y26880 X69250Y23860 X71040Y13001 Y27944 X68250Y24400 X71190Y19880 X41260Y38480 X43040Y31960 X26010Y24270 X56200Y19600 X16460Y18170 X21880Y12430 X31620Y36410 X43050Y30460 X40100Y29080 X40960Y29030 X30430Y34940 X37250Y22470 X54100Y12890 X40690Y29170 X23960Y25880 X40580Y21610 X29050Y34400 X43880Y15630 X33500Y33870 X59750Y15360 X72578Y14491 X27350Y17520 X21180Y34830 X25640Y18160 X69250Y16860 X27450Y35060 X60210Y18900 X25180Y18410 X64210Y14360 X23120Y25070 X25300Y30470 X34210Y26400 X71040Y30621 X24670Y16120 X71190Y26227 X29310Y12430 X62750Y13900 X30290Y17350 X71090Y25100 X24690Y16610 X43650Y34150 X32020Y42130 X32790Y26390 X23150Y14130 X70250Y14400 X46820Y15720 X31230Y30460 X30070Y34950 X35910Y37960 X18780Y18480 X70250Y15860 X28750Y28340 X57171Y21280 X43030Y36650 X39180Y20920 X31960Y34870 X30270Y17800 X71040Y30101 X44010Y22030 X65710Y13400 X71190Y39101 Y18943 X68250Y13400 X71190Y27684 X17730Y25470 X64750Y14360 X26280Y33870 X27110Y12370 X36480Y35410 X29720Y18800 X70250Y14860 X61200Y16640 X71040Y23053 X26000Y26580 X39250Y19470 X66710Y13860 X71190Y22793 X33220Y48490 X36120Y46160 X67250Y24400 X60370Y10660 X29850Y30390 X69250Y15860 X31980Y38370 X63750Y13360 X30030Y39450 X28230Y17260 X32460Y12380 X36070Y15650 X38300Y19380 X29490Y39010 X34250Y37980 X29650Y34920 X54644Y23240 X22730Y35470 X50330Y12360 X39410Y36230 X56811Y21280 X68710Y15400 X65710Y13860 X72740Y12340 X29190Y18830 X28550Y37580 X59740Y40105 X24610Y26370 X34260Y28270 X66250Y14860 X59750Y19900 X35600Y44460 X39550Y35580 X34910Y33400 X32430Y42380 X72670Y20352 X27060Y37730 X40370Y40680 X68710Y14400 X57630Y34985 X27100Y33040 X57900Y17450 X35900Y34400 X31460Y32860 X36750Y19350 X26380Y37700 X67710Y23400 X28230Y20870 X71190Y21336 X52180Y36995 X59210Y16900 X34040Y12410 X29270Y18240 X71040Y33534 X18250Y25400 X43100Y12350 X26930Y23870 X43250Y15630 X38260Y20350 X23540Y31140 X35900Y33410 X71190Y18423 X29940Y35310 X32770Y18380 X70740Y27440 X32500Y46460 X24720Y35070 X36140Y25240 X34430Y32860 X32880Y37190 X29620Y46270 X36370Y46650 X71040Y32077 X59750Y21360 X65150Y11450 X32480Y34860 X49240Y22010 X39950Y36050 X46040Y21590 X42940Y15630 X36740Y27330 X24110Y28850 X30050Y39950 X45680Y36690 X60670Y36735 X28150Y45310 X72670Y18899 X69250Y17860 X66250Y13400 X72670Y13305 X27420Y31880 X30840Y17940 X34280Y26900 X59210Y19900 X70250Y17400 X66560Y42200 X39960Y30930 X37520Y12410 X69710Y14400 X36280Y29670 X30250Y41300 X36920Y34900 X25140Y42650 X30970Y34850 X20400Y45830 X70970Y34590 X71040Y45188 X31300Y18000 X28220Y17800 X48040Y20140 X71040Y17227 X46145Y20140 X28760Y18310 X58790Y36895 X43020Y32650 X31760Y24860 X69710Y13400 X30410Y26870 X37400Y36070 X41260Y31970 X24090Y19910 X43400Y12330 X37700Y19400 X35480Y40850 X28060Y33130 X28740Y17270 X41840Y12370 X71190Y44407 X33940Y28860 X36960Y32860 X24730Y28730 Y14620 X55930Y19600 X71040Y33014 X31510Y16670 X71040Y16290 X38060Y36130 X23110Y33890 X39870Y17810 X69710Y15400 X60750Y22360 X34910Y34400 X35910Y34970 X35450Y33860 X34980Y32860 X60210Y15360 X68710Y14860 X30980Y30290 X24280Y24820 X27860Y31580 X59210Y18900 X60210Y16900 X70250Y23860 X43350Y33560 X21270Y20830 X26720Y32260 X36980Y33960 X29520Y39960 X28760Y20850 X22120Y22490 X24550Y25930 X71190Y31297 X72670Y31773 Y39053 X56050Y18620 X48350Y20140 X60210Y16360 X27870Y31150 X33930Y33430 X28220Y37790 X71190Y21857 Y27163 X39790Y38300 X67710Y23860 X66250Y24400 X59210Y19360 X24810Y24820 X25630Y16250 X64951Y15940 X62750Y14360 X29710Y25850 X59420Y36765 X32770Y16480 X43250Y26910 X33410Y12420 X31740Y32310 X24580Y23110 X34230Y32050 X63750Y14360 X25610Y30530 X32440Y38940 X54981Y19600 X24400Y20240 X72670Y40513 X27460Y33100 X29940Y32860 X20860Y22520 X67250Y23400 X36950Y33410 X26660Y33490 X61210Y14900 X25000Y28990 X63210Y14900 X35120Y32050 X60750Y15360 X59750Y20360 X24700Y31140 X25700Y28670 X60210Y19900 X29220Y26820 X60750Y17360 X31440Y33400 X26710Y23110 X71190Y33274 X64750Y13360 X32090Y36220 X71040Y15770 X38210Y18820 X71040Y23573 X52840Y34745 X36470Y34410 X59750Y19360 X30620Y27860 X32930Y33390 X37480Y34860 X60210Y22360 X17770Y37446 X34460Y33860 X25470Y31910 X32530Y16290 X60210Y19360 X59210Y18360 X72670Y24726 X42310Y15600 X34510Y28450 X34400Y34840 X26720Y30690 X28740Y19330 X60750Y21360 X26710Y22480 X63590Y15410 X30670Y26430 X68710Y19400 X23140Y14620 X27430Y31510 X32880Y34420 X37920Y34450 X19990Y22220 X37480Y33920 X30300Y28780 X30470Y36400 X36410Y40910 X31120Y46730 X26180Y14350 X59750Y17360 X68250Y23400 X28730Y19830 X38160Y44900 X23540Y31530 X31970Y33860 X38200Y36840 X18940Y22500 X66710Y23860 X59210Y22360 X18090Y37760 X35410Y33400 X23120Y32720 X30270Y18240 X32190Y27820 X31090Y41650 X71190Y37124 X27120Y46230 X22010Y19160 X31220Y26420 X26720Y32690 X24710Y31540 X29540Y36430 X43310Y32780 X24580Y23450 X25250Y39380 X51730Y25660 X69710Y14860 X27420Y32260 X22740Y31530 X31400Y34420 X25890Y31940 X27450Y30740 X32050Y15820 X71040Y20140 X33720Y12680 X33610Y46710 X37470Y33400 X33510Y33430 X26170Y30670 X59210Y15360 X72670Y41967 X37450Y32850 X28820Y37790 X30510Y34430 X29230Y19870 X30450Y38380 X64210Y13360 X71190Y32754 X29470Y29280 X60750Y18360 X72670Y27639 X23760Y30640 X72670Y34687 X69367Y12310 X23150Y11930 X32290Y16040 X65740Y43650 X26700Y22800 X31610Y24600 X70250Y18860 X40370Y40270 X67250Y22860 X16920Y18260 X71200Y24820 X71190Y24250 X32860Y39390 X34980Y12340 X69250Y16400 X70250Y24400 X30830Y18920 X64210Y13900 X70970Y35130 X71040Y43731 X27320Y37500 X30970Y38380 X35710Y23420 X35250Y26970 X28750Y26360 X70250Y19400 X25110Y43450 X49295Y15652 X35230Y37650 X24810Y37760 X30570Y22970 X70250Y15400 X71040Y35430 X29250Y27350 X44350Y12330 X71430Y41260 X30800Y25830 X23290Y24050 X24700Y17120 X70250Y16860 X41360Y15600 X25580Y12140 X71040Y38841 X22810Y26600 X26670Y34300 X33790Y26330 X41680Y15610 X32910Y28820 X30600Y28550 X71040Y37384 X34410Y14230 X29960Y35850 X71180Y40850 X23260Y12770 X31760Y25160 X31500Y25010 X55970Y19160 X31920Y28520 X26720Y31910 X33500Y16840 X31210Y28690 X43690Y32180 X58570Y17450 X31960Y32960 X24270Y26390 X29690Y41080 X55220Y19160 X37030Y35530 X26500Y14140 X27090Y35470 X33240Y26270 X30070Y28410 X50490Y14470 X59360Y34475 X71190Y44928 X23970Y39550 X27430Y31090 X41200Y12370 X21860Y12830 X33350Y25860 X27870Y46690 X29770Y19860 X24940Y26390 X38740Y20350 X35470Y40400 X71190Y17487 X67250Y14860 X36230Y26350 X72578Y15121 X34230Y16970 X70940Y39270 X68250Y23860 X23350Y39630 X34160Y45380 X20840Y23090 X29390Y36690 X61820Y27870 X36960Y39380 X27740Y12400 X59210Y17360 X68500Y12310 X71190Y25706 X31130Y32420 X59750Y15900 X26910Y24620 X26290Y31520 Y31140 X34690Y32050 X58030Y23240 X71190Y43471 X23070Y39340 X69250Y17400 X72670Y30313 X28120Y46110 X38670Y12350 X69710Y17400 X68710Y23860 X70250Y21400 X71130Y34870 X35420Y35540 X72670Y44880 X32290Y26820 X31840Y18430 X35000Y33830 X38790Y39300 X29920Y37400 X69710Y15860 X26730Y23420 X68710Y16400 X24330Y32310 X62360Y13400 X72578Y29131 X72670Y36140 Y21813 X28130Y45680 X37700Y18880 X71040Y27424 Y26487 X27460Y34280 X32020Y32170 X60210Y22900 X21660Y20820 X40080Y17590 X71190Y20400 X71180Y12190 X34410Y33440 X38160Y35840 X31120Y41990 X38510Y14160 X71410Y35440 X26040Y23930 X72578Y28501 X58250Y17450 X70250Y18400 X59750Y18900 X72670Y15986 X30920Y32200 X34250Y27360 X66060Y12310 X67710Y24400 X30950Y36840 X31460Y38950 X72578Y14800 X37350Y38960 X31260Y26870 X28250Y27840 X39980Y34650 X68250Y22860 X71190Y15510 X35940Y32860 X70250Y20400 X34420Y34420 X29540Y40460 X67710Y13860 X71200Y34280 X35910Y35890 X72670Y33226 X32020Y41650 X72578Y14170 X69710Y17860 X71040Y19203 X23500Y26170 X43560Y15630 X32900Y33900 X68710Y17400 X71170Y42440 X71190Y36440 X35870Y46420 X36430Y33870 X68230Y16930 X71040Y44668 X71190Y38580 X38540Y15590 X23270Y18300 X33100Y12420 X70250Y16400 X29230Y21340 X33540Y34420 X36440Y32860 X19310Y45880 X29730Y17260 X29770Y20860 X71190Y16966 X27420Y12360 X72670Y17439 X43340Y33860 X59210Y15900 X71190Y42120 X27090Y33890 X25120Y35470 X38720Y19930 X71040Y41120 X72670Y37600 X37960Y39120 X18680Y23480 X58810Y34425 X30550Y39460 X32780Y29610 X27710Y20320 X35220Y15640 X46460Y20140 X32760Y16820 X28930Y46670 X29450Y40890 X34870Y45620 X33870Y34890 X35880Y36970 X35460Y39970 X71040Y18683 X34760Y28280 X35310Y27840 X60210Y18360 X27770Y17800 X41990Y15610 X71040Y21597 X20270Y19150 X37670Y20920 X25840Y37730 X69250Y13400 X31030Y28450 X71040Y25967 X67250Y13400 X71190Y16030 X20260Y28410 X71150Y41410 X23140Y13120 X36620Y46290 X35730Y24360 X28180Y34770 X37670Y19940 X25320Y37760 X70250Y23400 X29720Y17800 X33800Y27300 X60210Y14900 X25960Y12880 X39440Y38160 X33810Y17890 X63210Y13900 X29270Y17240 X33960Y34420 X40040Y31220 X24440Y25300 X24710Y15120 X34720Y14200 X59210Y14900 Y16360 X23600Y39340 X22730Y39620 X52860Y35465 X39960Y30440 X66710Y23400 X63210Y14360 X34380Y45610 X31750Y27260 X35300Y27370 X72670Y23266 X24410Y29030 X34750Y26450 X37910Y34010 X28680Y12380 X24490Y24410 X70900Y12070 X39800Y37870 X55251Y19600 X24710Y17620 X26290Y31920 X55300Y18620 X25550Y37420 X58640Y12690 X32460Y38150 X66710Y13400 X38550Y44570 X32870Y32930 X32770Y17950 X28710Y39520 X22770Y22490 X30530Y30310 X71190Y29840 X35370Y45950 X48740Y15720 X35530Y15660 X30550Y39950 X44910Y18710 X32450Y33900 X32670Y37880 X61260Y17910 X27700Y19800 X30270Y18800 X33970Y32800 X24760Y12100 X27450Y33890 X42660Y38520 X28290Y28590 X24590Y23780 X70250Y20860 X70830Y45600 X71190Y13261 X59750Y22360 X32770Y27330 X59750Y14360 X32310Y22390 X24720Y13120 X39240Y20350 X25090Y37190 X22230Y44250 X35450Y34400 X70885Y11296 X36980Y34410 X29510Y37420 X31300Y21840 X72670Y43427 X26740Y37430 X35910Y35480 X59210Y21900 X68710Y21400 X24780Y24220 X21810Y25920 X41510Y12370 X71040Y22117 X21190Y34310 X26720Y35060 X37120Y46380 X27640Y37210 X35950Y33840 X35970Y40430 X24680Y15620 X59210Y20360 X71040Y37904 X38170Y20920 X27100Y33470 X71190Y13782 X67710Y14400 X70250Y17860 X71100Y46810 X36460Y33410 X22190Y25920 X68710Y23400 X25030Y23440 X28210Y19820 X43590Y20140 X60210Y21900 X26150Y37420 X32780Y28390 X69250Y14400 X71190Y42950 X39380Y37710 X60750Y20360 X60210Y17360 X24460Y19610 X43730Y12330 X58580Y33255 X25870Y31520 X37430Y34400 X59210Y21360 X26620Y46660 X35060Y39910 X18320Y27710 X34350Y12410 X39650Y18020 X61130Y18360 X71260Y36790 X59750Y21900 X41050Y13160 X33670Y29190 X70250Y22860 X68250Y14400 X26670Y33880 X35800Y15800 X60750Y19360 X71040Y20660 X67250Y13860 X25220Y28570 X29750Y28350 X30610Y32190 X71040Y40580 X59210Y22900 X27610Y46230 X34860Y37910 X71150Y40300 X24470Y25640 X70250Y19860 X25550Y29120 X30470Y36840 X28990Y34710 X26310Y35100 X30120Y46270 X71040Y17747 X59210Y23360 X46860Y12690 X58760Y15900 X56451Y21280 X63750Y13900 X71190Y23313 X37930Y37180 X36980Y40480 X71190Y30361 X36470Y36400 X23110Y31140 X28050Y32290 X71040Y31557 X71190Y37644 X31050Y39460 X64210Y14900 X71040Y43211 X24710Y14120 X48690Y13870 X32450Y32920 X25990Y26940 X52620Y11460 X23560Y33880 X59750Y13900 X42990Y29180 X42960Y34940 X33940Y36700 X67040Y42820 X72440Y47640 X52840Y41885 X68710Y20860 X59360Y20800 X19030Y23120 X38750Y44240 X53780Y32585 X24350Y32650 X69910Y45920 X25140Y33450 X24680Y30480 X25140Y32360 X23565Y34657 X37990Y41340 X63750Y22900 X40660Y28160 X32860Y46590 X54700Y41525 X67200Y29910 X38170Y21930 X34180Y21420 X20510Y17360 X39240Y22600 X21780Y27860 X36480Y34850 X27780Y18870 X62960Y26340 X32260Y20400 X61750Y22900 X68987Y36206 X49070Y47170 X24630Y27900 X23860Y22430 X62400Y25600 X52150Y26050 X21680Y14660 X60250Y38105 X58800Y42245 X47715Y15637 X19500Y42220 X26580Y41190 X34330Y19430 X35770Y21410 X43800Y32700 X34130Y30350 X60190Y36645 X67260Y24730 X47047Y23496 X34130Y24670 X38760Y18930 X24540Y36380 X37980Y37720 X26720Y31110 X71188Y46337 X68849Y25640 X67710Y24750 X30930Y37470 X60750Y15900 X59280Y39545 X67710Y14860 X72578Y29452 X37990Y40060 X23970Y29820 X30920Y36400 X68000Y48500 X69100Y40050 X64500Y26200 X34220Y22880 X43190Y47800 X28830Y44650 X59750Y27690 X41260Y31370 X41916Y23390 X24950Y22840 X59790Y34725 X26990Y26710 X59480Y35655 X71890Y28890 X67220Y28770 X25980Y26230 X56180Y32315 X23810Y24740 X27330Y36570 X27360Y40100 X33470Y39430 X47010Y28060 X44666Y23536 X69250Y20860 X24380Y33070 X51880Y34785 X19910Y27800 X49980Y39995 X67810Y25650 X60750Y19900 X64750Y23360 X38040Y12350 X19260Y38960 X22800Y20950 X47003Y21080 X49250Y27690 X23270Y20960 X42806Y21080 X50180Y14460 X39380Y31100 X32150Y12350 X32060Y37200 X24850Y36260 X39930Y35460 X57680Y33005 X66560Y48490 X56584Y12655 X20180Y40450 X57300Y41875 X29020Y43010 X42341Y23536 X56597Y13802 X32510Y40890 X68710Y18860 X69587Y11617 X62400Y25200 X43540Y34860 X20610Y41420 X38910Y29200 X65760Y39430 X24380Y33440 X49050Y19050 X63700Y24800 X45020Y12380 X69390Y26980 X50440Y17400 X61351Y20768 X40100Y14460 X60210Y21360 X27140Y32680 X20800Y24280 X52160Y36435 X25500Y35480 X58316Y22228 X60750Y16900 X30869Y48442 X54010Y21280 X33440Y36020 X28980Y35050 X19700Y13980 X17380Y25070 X59430Y41305 X25080Y41170 X39970Y32520 X69760Y43230 X28920Y36280 X20930Y18340 X24720Y32630 X25560Y35040 X54370Y21280 X27780Y35790 X38770Y30390 X59470Y33005 X17810Y19180 X50880Y34335 X31260Y18870 X60750Y20900 X50910Y33225 X69500Y48880 X63750Y23900 X42233Y21080 X29300Y39290 X24353Y33870 X60500Y24800 X68500Y34710 X61750Y23360 X42410Y31120 X46870Y12350 X34160Y22440 X59470Y32585 X28120Y32710 X49480Y24480 X27070Y20120 X44666Y22291 X53490Y36505 X26290Y32270 X69710Y16860 X28720Y27320 X34660Y22440 X63310Y16540 X32680Y23420 X19350Y46470 X20300Y22220 X20870Y25850 X62400Y24800 X61231Y34200 X52530Y17718 X23510Y26800 X39970Y33230 X72670Y11852 X56000Y47210 X29940Y12330 X33680Y21420 X29100Y16710 X67600Y28770 X52040Y12130 X24330Y35070 X62800Y24800 X45947Y23496 X20150Y14670 X29550Y32100 X55420Y32585 X42210Y16250 X59460Y37765 X24970Y27900 X41220Y33180 X60280Y12160 X49920Y34785 X50490Y33225 X27670Y16790 X63220Y47800 X23910Y33910 X23050Y23560 X45947Y22252 X49980Y39095 X69587Y11296 X66720Y25730 X44192Y22291 X38680Y31120 X43770Y35090 X58760Y41505 X60990Y31540 X27640Y14410 X34720Y21880 X60220Y34705 X58316Y22560 X66440Y36810 X38750Y41870 X23180Y35780 X67000Y48500 X21020Y28960 X24450Y29800 X34450Y36700 X33450Y36720 X30250Y21350 X69250Y13860 X33260Y30350 X41080Y40720 X50910Y35575 X63200Y25600 X60570Y32965 X51090Y40905 X67190Y30300 X41930Y47800 X29730Y18380 X45590Y40500 X45473Y22252 X31330Y37440 X19900Y23350 X62140Y21090 X54930Y22560 X65710Y14400 X41220Y35310 X33630Y37940 X32360Y46730 X43790Y34420 X25510Y35820 X60750Y14900 X18520Y44730 X53650Y21890 X22360Y27880 X35550Y14080 X49389Y23536 X36670Y19930 X68730Y45570 X66130Y47180 X71900Y14110 X30250Y20360 X46390Y12450 X66710Y14860 X20130Y13320 X30260Y21840 X37440Y11900 X25150Y34620 X59750Y16900 X69550Y47170 X45140Y11210 X44318Y26880 X70490Y48500 X65707Y32700 X43770Y31420 X48000Y23650 X65700Y32300 X52550Y18300 X53900Y42265 X33720Y12340 X34220Y21880 X29369Y48442 X68650Y29900 X22130Y21840 X41720Y26880 X69710Y18400 X25870Y34290 X18610Y26250 X45930Y12330 X29060Y45320 X30640Y25440 X70420Y47180 X50910Y36525 X56251Y22228 X19010Y25500 X65910Y37690 X38170Y25430 X38720Y41380 X29290Y46570 X66560Y48890 X30930Y25350 X66230Y16940 X58550Y19100 X61000Y25600 X66207Y30300 X59750Y17900 X68157Y32700 X69060Y42170 X42816Y23536 X29400Y44790 X34930Y40430 X68987Y36806 X68000Y46430 X53150Y21890 X28960Y48470 X26640Y34680 X66230Y17440 X25900Y33510 X68710Y17860 X33850Y16360 X67610Y29550 X66720Y27020 X27880Y27840 X55304Y13802 X33920Y36040 X42513Y21080 X32270Y19830 X42400Y31660 X24350Y34640 X66910Y36490 X38750Y31690 X33930Y33860 X67000Y47180 X36210Y17890 X43760Y30570 X66277Y12070 X56290Y42335 X30890Y12340 X43590Y31690 X24680Y13620 X22800Y22120 X36270Y24110 X36330Y24930 X18540Y18760 X26290Y34300 X68987Y37406 X36230Y18310 X17880Y28200 X20320Y21830 X68710Y19860 X22600Y29650 X35520Y24590 X60750Y16360 X60210Y15900 X51240Y21280 X57360Y12630 X68520Y37410 X44200Y14460 X67500Y48500 X71270Y47640 X36930Y39930 X37940Y38460 X26840Y43040 X69710Y13860 X67350Y36490 X57036Y21890 X52530Y16970 X33720Y22880 X20130Y20940 X33680Y23780 X31320Y27280 X28990Y34100 X28760Y22840 X25850Y29790 X67257Y32700 X24720Y33450 X28730Y45320 X27250Y44340 X57580Y18750 X62750Y22900 X48003Y21080 X43810Y33420 X66710Y29910 X35330Y25390 X50010Y12340 X21870Y17120 X45600Y43870 X32630Y48480 X52200Y18650 X32470Y33400 X23565Y35025 X52530Y16222 X30100Y14430 X36320Y24390 X61000Y24800 X45590Y29500 X36970Y44160 X70600Y32300 X60500Y25600 X28010Y38910 X31920Y33400 X40890Y12340 X19060Y23500 X35830Y19430 X26730Y31470 X39940Y12340 X34800Y43080 X28750Y27850 X69250Y19400 X56304Y12655 X69710Y21400 X23320Y21840 X53690Y41885 X27040Y25550 X29740Y26860 X60720Y39545 X38990Y36080 X26360Y29780 X71348Y29063 X23910Y34280 X66440Y36490 X68987Y36506 X69710Y24400 X63410Y11410 X69700Y29900 X32210Y25300 X60750Y17900 X29970Y40440 X31190Y29690 X35620Y26880 X51620Y21280 X24790Y22480 X31480Y34850 X66440Y36190 X62210Y13900 X21190Y43590 X62750Y14900 X52520Y32625 X25880Y32720 X25370Y46750 X21870Y16620 X24720Y34237 X31590Y31380 X41210Y26880 X29010Y35370 X31480Y25330 X30890Y34430 X18640Y46480 X19730Y20940 X28700Y38920 X21870Y17620 X40010Y33830 X58700Y17950 X68240Y20390 X31620Y46760 X69030Y47180 X42520Y19750 X32750Y17350 X23900Y34680 X41050Y14450 X33660Y22440 X26100Y37090 X37170Y17430 X38210Y14450 X38410Y41860 X25030Y23140 X60210Y20900 X38170Y23480 X41220Y34670 X68710Y24400 X29210Y20320 X18250Y19200 X20917Y47673 X66900Y36810 X52865Y22560 X33830Y18930 X50490Y36525 X27570Y27840 X26830Y42280 X41220Y32400 X64100Y24800 X68500Y48880 X46430Y22227 X68294Y16162 X16980Y17880 X27480Y32680 X32720Y22880 X52400Y22550 X33710Y31390 X58550Y18750 X51050Y41645 X43556Y26880 X65250Y11880 X69700Y28650 X47710Y21080 X67757Y31450 X30480Y45380 X33790Y26850 X44192Y23536 X34180Y23420 X70180Y25690 X27430Y38920 X26470Y11890 X68500Y42130 X51880Y38035 X36450Y37970 X60210Y13360 X52865Y22228 X23540Y32310 X66707Y32700 X63629Y26340 X52865Y22890 X23330Y36370 X33220Y22880 X28370Y12370 X24353Y34237 X65710Y14860 X60500Y25200 X22020Y28900 X52110Y12770 X58300Y17950 X59210Y13360 X19290Y19290 X68370Y25650 X58700Y18400 X61351Y20334 X25140Y33870 X23120Y34690 X68294Y15728 X51750Y33515 X24800Y12618 X61452Y12160 X66250Y14400 X16770Y20250 X36590Y31910 X69710Y23860 X53600Y19100 X19980Y22920 X63750Y14900 X25990Y25340 X47723Y22227 X30670Y23430 X53918Y12630 X33900Y15790 X30369Y48442 X20910Y12450 X24710Y34630 X18520Y45100 X36270Y18930 X32510Y36210 X60750Y23360 X69200Y31050 X34830Y19430 X57536Y23210 X70000Y47180 X31950Y38960 X28040Y40130 X56536Y21890 X64500Y25000 X30510Y16660 X28960Y36580 X70613Y31850 X36010Y31540 X51750Y32075 X21890Y13450 X24180Y26810 X32240Y21090 X31730Y17850 X34450Y37190 X49863Y22291 X46340Y24940 X39170Y16930 X56251Y22560 X59210Y13900 X22780Y34630 X23770Y20610 X30090Y34430 X21870Y15120 X25870Y34670 X21640Y11570 X33880Y14380 X67250Y23860 X68290Y12070 X28750Y21340 X23565Y34237 X53050Y38195 X67250Y31050 X24720Y32295 X38190Y29200 X29869Y48442 X31990Y48470 X66250Y13860 X52500Y47210 X21240Y42180 X70490Y48880 X34720Y22880 X23900Y31930 X66207Y29900 X29770Y27320 X41806Y21080 X67500Y48880 X59750Y14900 X41526Y22227 X34619Y48442 X30620Y46760 X66277Y11770 X42460Y12350 X68520Y37100 X54600Y33535 X25050Y20910 X58500Y34445 X26120Y36510 X66207Y32700 X21870Y15620 X67410Y37370 X24820Y25310 X44040Y12330 X25460Y30790 X69250Y15400 X67230Y39810 X18510Y45480 X70000Y48500 X36780Y45670 X40210Y22437 X60750Y21900 X33180Y23420 X66130Y46430 X59710Y43600 X30480Y44983 X52550Y18650 X35295Y12340 X67763Y31850 X69587Y12005 X34410Y36040 X55420Y33005 X69250Y18400 X25140Y33083 X69250Y18860 X19020Y24130 X25230Y16440 X25500Y33900 X45590Y33050 X25550Y15890 X67810Y26930 X57900Y17950 X68290Y11473 X60370Y31500 X52910Y34045 X59750Y23900 X59000Y35965 X34680Y23420 X65710Y22860 X67000Y46430 X38240Y17360 X69700Y30300 X67620 X56877Y13802 X28750Y17850 X27270Y44650 X56536Y23210 X68650Y30300 X48600Y14460 X41960Y39510 X28530Y14430 X69200Y32300 X70607Y32700 X55730Y18620 X51850Y18650 X30470Y37400 X43800Y35920 X53600Y18650 X51420Y39095 X57834Y12630 X30210Y19310 X30500Y43280 X32660Y22440 X39740Y29180 X61000Y25200 X32760Y30330 X25040Y23990 X23630Y25890 X67757Y32700 X23910Y33110 X51500Y18650 X34720Y26020 X66707Y30300 X69343Y25640 X58150Y34445 X42526Y22227 X32680Y21420 X24130Y20930 X56920Y32315 X57700Y33895 X22760Y33110 X21040Y28180 X28710Y43020 X53918Y11386 X25910Y32270 X58380Y38470 X71860Y14650 X71360Y14070 X51420Y39995 X23900Y35070 X26300Y32710 X68520Y36500 X30750Y17350 X44993Y17400 X67520Y41890 X43903Y16250 X67260Y25670 X56290Y41955 X47500Y13989 X38640Y32350 X57580Y19100 X19500Y41560 X67610Y29910 X66200Y32300 X36750Y42210 X33720Y21880 X21483Y47727 X25920Y35050 X48600Y19050 X38670Y17430 X26290Y34680 X20910Y17560 X18600Y26570 X62788Y16100 X34190Y18280 X35440Y21370 X59210Y23900 X23560Y32650 X70600Y31050 X50870Y21280 X68987Y37106 X33160Y22440 X19040Y24450 X23040Y23110 X67260Y26940 X53150Y23210 X64586Y22310 X46723Y22227 X46430Y21080 X34920Y29780 X33310Y46700 X45590Y37000 X17290Y37060 X60540Y33595 X23910Y33450 X72670Y46340 X37630Y48480 X70520Y26920 X34890Y17380 X59780Y35815 X41260Y31670 X30960Y35850 X33420Y37190 X67750Y31050 X58270Y31285 X51850Y18300 X37670Y27270 X70250Y13400 X67750Y32300 X28230Y26340 X33180Y21420 X30030Y31630 X25140Y34237 X54500Y26050 X60210Y14360 X69250Y22860 X35920Y32320 X69250Y14860 X21880Y18120 X48450Y12330 X57290Y42325 X42950Y35630 X64750Y14900 X21540Y22110 X70000Y48880 X54150Y23210 X38470Y30390 X21170Y35180 X20360Y38870 X59750Y20900 X65020Y22310 X24860Y26810 X53444Y11386 X60160Y41325 X28190Y35370 X45770Y47170 X59750Y23360 X25490Y31140 X27610Y26810 X50650Y12340 X39320Y28110 X49389Y22291 X37510Y40480 X18770Y19150 X64400Y47800 X41470Y23390 X52750Y27690 X68520Y36800 X61875Y11410 X37670Y21930 X64905Y12300 X59210Y14360 X34680Y21420 X31369Y48442 X59750Y13360 X51500Y18300 X57834Y11386 X59750Y18360 X66120Y48500 X23850Y21870 X52910Y42305 X67500Y47180 X63370Y12300 X61750Y14900 X38660Y20920 X53650Y23210 X36330Y21430 X50490Y35575 X30710Y19310 X28190Y35070 X64750Y22900 X43890Y28350 X67250Y32300 X70607Y31450 X29340Y42310 X36250Y25970 X57036Y23210 X66910Y36180 X71890Y28433 X69000Y48500 X41806Y22227 X61500Y24800 X20200Y46190 X20390Y27900 X60210Y13900 X38430Y44220 X43550Y29180 X60210Y17900 X55877Y12655 X16890Y23810 X62800Y25200 X39090Y39330 X65700Y31050 X45855Y24942 X26980Y27840 X19020Y20920 X40810Y41870 X66710Y22860 X22240Y30440 X52700Y19100 X26030Y24720 X57680Y32585 X61210Y13360 X23960Y36380 X72930Y31320 X66200Y31050 X23910Y32650 X23565Y33450 X24700Y35450 X22610Y28940 X69500Y48500 X28530Y48490 X31450Y38380 X64500Y25400 X56251Y22890 X41220Y33850 X71890Y29520 X42970Y34280 X39090Y36580 X59440Y41855 X54150Y21890 X33950Y37190 X21190Y36410 X67710Y22860 X60210Y20360 X66230Y15940 X64500Y25800 X39200Y34150 X63210Y22900 X47040Y14460 X37880Y31280 X28220Y31990 X38050Y45290 X66700Y31050 X68510Y36206 X68650Y28650 X23910Y31150 X28750Y28850 X63200Y25200 X25010Y22250 X59750Y38105 X46573Y23496 X69250Y24400 X36330Y19430 X54930Y22228 X36330Y20930 X69250Y22400 X68000Y48880 X25560Y34250 X34040Y19860 X67360Y36180 X32970Y40950 X56877Y12655 X42806Y22227 X69207Y32700 X41233Y21080 X38550Y33670 X19370Y21560 X57360Y11386 X66120Y48880 X68240Y20712 X67340Y36810 X66570Y47180 X62210Y22900 X68150Y31050 X59750Y24360 X66570Y46430 X21880Y16120 X30670Y24430 X67610Y29170 X46350Y19050 X56304Y13802 X25890Y33080 X34100Y48480 X35050Y38960 X68500Y46430 X42233Y22227 X52400Y22200 X37670Y18430 X21900Y30090 X50810Y14390 X67530Y17750 X68500Y48500 X19020Y24840 X22250Y24270 X54930Y22890 X41513Y21080 X60790Y37325 X23370Y13620 X67000Y48880 X31050Y14460 X69920Y44330 X52060Y42305 X61950Y24800 X24720Y33870 X26250Y18620 X68540Y42720 X29230Y22330 X66710Y28760 X24720Y33083 X59500Y47210 X56250Y27690 X23030Y21800 X30340Y46570 X49920Y38035 X45473Y23496 X57536Y21890 X70250Y21860 X59410Y42355 X23740Y20950 X27030Y25220 X52400Y22900 X65000Y25400 X35480Y35870 X30670Y24930 X49863Y23536 X33220Y21880 X61310Y33650 X53490Y37500 X32820Y36220 X17840Y27780 X27180Y29790 X55584Y12655 X28610Y16690 X29210Y27790 X25810Y42270 X35830Y25390 X29920Y36400 X55304Y12655 X29980Y36840 X34820Y25390 X31730Y19830 X55877Y13802 X66700Y32300 X30470Y35850 X55597Y13802 X28240Y26850 X31850Y35960 X34780Y24300 X34340Y19900 X31210Y19380 X69710Y16400 X68370Y26950 X32310Y14460 X36670Y23430 X28250Y19340 X35330Y19430 X29270Y17840 X32660Y25320 X34330Y25370 X21300Y16790 X36880Y30270 X48003Y22227 X48150Y19050 X47250 X46800 X47710Y20140 X26080Y41180 X68290Y11770 X47430Y21080 X47933Y13989 X56450Y26050 X56000 X22650Y19150 X49450Y19050 X47550Y23650 X20140Y46510 X66210Y28750 X53444Y12630 X30670Y23930 X47430Y22227 X47700Y19050 X26890Y40630 X68849Y26958 X54730Y21280 X31770Y19370 X32320Y25920 X38270Y38440 X31910Y39490 X32930Y34860 X63200Y24800 X40210Y23390 X68500Y47180 X68000 X52520Y33365 X35960Y38960 X68710Y15860 X35450Y34850 X21190Y33640 X60750Y18900 X30730Y19840 X46710Y21080 X50090Y24340 X53780Y33005 X38120Y19930 X62800Y25600 X47003Y22227 X34990Y20300 X42630Y14460 X38310Y41340 X19780Y15620 X23565Y33083 X22720Y36310 X22770Y33490 X39810Y31760 X25800Y43110 X68150Y32300 X39070Y30410 X45140Y14450 X38310Y40060 X51410Y15100 X60750Y14360 X66590Y26580 X67250Y14400 X58316Y22890 X27860Y48480 X25560Y34640 X52200Y18300 X18960Y22190 X27060Y34670 X68710Y16860 Y21860 X59750Y22900 X69000Y48880 X20930Y26760 X41233Y22227 X66277Y11473 X56900Y26050 X42470Y28690 X21870Y13810 X64750Y24360 X65710Y24400 X67500Y46430 X46090Y14450 X40656Y22437 X70250Y13860 X40656Y23390 X32720Y21880 X58772Y16616 M30 gerbv-2.7.0/example/ekf2/sieb0.grb0000644000175000017500000023645513421555714016513 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* Y5379D01* X3296Y5370D01* X3358D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4221D01* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5415D01* X4398Y5406D01* X4407Y5397D01* X4425Y5441D02* Y5370D01* X4478D01* X4505D02* X4496Y5379D01* Y5441D01* X4505Y5370D02* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4647D02* X4638Y5432D01* Y5415D01* X4603Y5406D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5415D01* X4647Y5441D02* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5370D02* X5225Y5379D01* X5234Y5388D01* X5243Y5379D01* X5234Y5370D01* X5287D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5415D02* Y5432D01* X5800Y5441D01* X5836D01* X5845Y5432D01* X5791Y5415D02* X5800Y5406D01* X5836D01* X5845Y5397D01* Y5379D01* X5836Y5370D01* X5800D01* X5791Y5379D01* X5898Y5415D02* X5871D01* X5862Y5406D01* Y5379D01* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5951Y5441D02* X5960D01* Y5370D01* X5969D02* X5951D01* X6049Y5441D02* Y5370D01* X6014D01* X6005Y5379D01* Y5406D01* X6014Y5415D01* X6049D01* X6085D02* X6111D01* X6120Y5406D01* Y5397D01* X6111Y5388D01* X6076D01* X6085Y5415D02* X6076Y5406D01* Y5379D01* X6085Y5370D01* X6120D01* X6147D02* Y5415D01* Y5406D02* X6156Y5415D01* X6182D01* X6191Y5406D01* X6289Y5370D02* Y5441D01* X6334D01* X6342Y5432D01* Y5415D01* X6334Y5406D01* X6289D01* X6369Y5415D02* X6396D01* X6405Y5406D01* Y5370D01* X6369D01* X6360Y5379D01* Y5388D01* X6369Y5397D01* X6405D01* X6431Y5379D02* X6440Y5370D01* X6467D01* X6476Y5379D01* Y5388D01* X6467Y5397D01* X6440D01* X6431Y5406D01* X6440Y5415D01* X6467D01* X6476Y5406D01* X6502Y5415D02* X6538D01* X6520Y5441D02* Y5379D01* X6529Y5370D01* X6538D01* X6547Y5379D01* X6574Y5388D02* X6609D01* X6618Y5397D01* Y5406D01* X6609Y5415D01* X6582D01* X6574Y5406D01* Y5379D01* X6582Y5370D01* X6618D01* X8324Y1425D02* Y575D01* Y700D02* X8624Y1000D01* X8324Y1300D01* X8024Y1000D01* X8324Y700D01* Y800D02* X8124Y1000D01* X8324Y1200D01* X8524Y1000D01* X8324Y800D01* Y900D02* X8224Y1000D01* X8324Y1100D01* X8424Y1000D01* X8324Y900D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* X7799Y5662D02* X7999Y5462D01* X7799Y5262D01* X7599Y5462D01* X7799Y5662D01* X8324Y5137D02* X8524Y4937D01* X8324Y4737D01* X8124Y4937D01* X8324Y5137D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1441D01* Y4465D01* X1799Y1888D02* X1831D01* Y1863D01* X1830Y1876D02* X1800D01* X1830Y1872D02* X1800D01* Y1864D02* X1830D01* X1800Y1868D02* X1830D01* X1831Y1863D02* X1799D01* Y1888D01* X1800Y1884D02* X1830D01* X1800Y1880D02* X1830D01* X1959Y1452D02* Y1422D01* X1958Y1421D02* X1983D01* Y1453D01* X1963Y1452D02* Y1422D01* X1958Y1421D02* Y1453D01* X1983D01* X1979Y1422D02* Y1452D01* X1975Y1422D02* Y1452D01* X1967D02* Y1422D01* X1971Y1452D02* Y1422D01* X1441Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1793Y894D02* X1784Y886D01* Y859D01* X1731Y850D02* X1749D01* X1740D02* Y921D01* X1731D01* X1793Y894D02* X1820D01* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* Y859D02* X1793Y850D01* X1829D01* X1936Y877D02* X1980D01* X1936Y894D02* X1980D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1651D02* X1642Y859D01* Y868D01* X1651Y877D01* X1687D01* X1651Y894D02* X1678D01* X1687Y886D01* Y850D01* X1651D01* X1616Y859D02* X1607Y850D01* X1580D01* X1571Y859D01* Y886D01* X1580Y894D01* X1607D01* X1616Y886D01* X1544D02* X1536Y894D01* X1509D01* X1500Y886D01* X1509Y877D01* X1536D01* X1544Y868D01* Y859D01* X1536Y850D01* X1509D01* X1500Y859D01* X2167Y850D02* X2158Y859D01* X2167Y868D01* X2176Y859D01* X2167Y850D01* X2220D02* X2211Y859D01* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211D02* X2264Y921D01* X2336D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X2958Y4557D02* X3018D01* X2958Y4577D02* X3018D01* Y4538D02* X2958D01* X3018Y4518D02* X2958D01* Y4479D02* X3018D01* X2958Y4498D02* X3018D01* Y4459D02* X2958D01* X3018Y4439D02* X2958D01* Y4400D02* X3018D01* X2958Y4420D02* X3018D01* Y4380D02* X2958D01* X3018Y4360D02* X2958D01* Y4321D02* X3018D01* X2958Y4341D02* X3018D01* Y4301D02* X2958D01* X3018Y4282D02* X2958D01* X3018Y4262D02* X2958D01* X3018Y4242D02* X2958D01* Y4203D02* X3018D01* X2958Y4223D02* X3018D01* X3782Y4203D02* X3722D01* X3782Y4223D02* X3722D01* Y4262D02* X3782D01* X3722Y4242D02* X3782D01* X3722Y4301D02* X3782D01* X3722Y4282D02* X3782D01* Y4321D02* X3722D01* X3782Y4341D02* X3722D01* Y4380D02* X3782D01* X3722Y4360D02* X3782D01* Y4400D02* X3722D01* X3782Y4420D02* X3722D01* X3782Y4439D02* X3722D01* X3782Y4459D02* X3722D01* Y4498D02* X3782D01* X3722Y4479D02* X3782D01* Y4518D02* X3722D01* X3782Y4538D02* X3722D01* Y4577D02* X3782D01* X3722Y4557D02* X3782D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4394D02* X4350D01* X4339Y5978D01* Y5911D01* X4350Y5900D01* X4394D01* X4406Y5911D01* Y5978D01* X4394Y5989D01* X4406D02* X4339Y5900D01* X4428D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* Y5944D02* X4472Y5956D01* X4483D01* X4494Y5944D01* Y5900D01* X4517D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4550Y5944D01* X4539Y5956D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4139Y5989D02* X4072Y5900D01* X4083D02* X4128D01* X4139Y5911D01* Y5978D01* X4128Y5989D01* X4083D01* X4072Y5978D01* Y5911D01* X4083Y5900D01* X4050Y5978D02* X4039Y5989D01* X3994D01* X3983Y5978D01* Y5911D01* Y5933D02* X3994Y5944D01* X4039D01* X4050Y5933D01* Y5911D01* X4039Y5900D01* X3994D01* X3983Y5911D01* X3961Y5900D02* X3894D01* X3928D02* Y5989D01* X3906Y5967D01* X4939Y5911D02* X4928Y5900D01* X4883D01* X4872Y5911D01* Y5900D02* X4939Y5989D01* X4817Y5978D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5911D02* Y5978D01* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4961Y5900D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D02* X5194Y5989D01* X5206D02* X5139Y5900D01* Y5978D02* Y5911D01* X5150Y5900D01* X5194D01* X5206Y5911D01* Y5978D01* X5261Y5922D02* X5250Y5911D01* X5261Y5900D01* X5272Y5911D01* X5261Y5922D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X5950Y3411D02* Y3351D01* X5975Y3411D02* Y3351D01* X5925D02* Y3411D01* X5900Y3351D02* Y3411D01* X5850D02* Y3351D01* X5875Y3411D02* Y3351D01* X5825D02* Y3411D01* X5800Y3351D02* Y3411D01* Y3216D02* Y3156D01* X5825Y3216D02* Y3156D01* X5875D02* Y3216D01* X5850Y3156D02* Y3216D01* X5900D02* Y3156D01* X5925Y3216D02* Y3156D01* X5975D02* Y3216D01* X5950Y3156D02* Y3216D01* X8761Y2950D02* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8750D01* X8728Y2961D01* X8750Y3017D02* X8794D01* X8806Y3028D01* Y3039D01* X8794Y3050D01* X8806Y3061D02* Y3072D01* X8794Y3083D01* X8806D02* X8750D01* Y3050D02* X8794D01* X8806Y3061D01* X8750Y3172D02* X8806D01* Y3161D02* Y3150D01* X8794Y3139D01* X8750D01* Y3106D02* X8794D01* X8806Y3117D01* Y3128D01* X8794Y3139D01* X8806Y3161D02* X8794Y3172D01* X8839Y3206D02* Y3250D01* X8828Y3261D01* X8761D01* X8750Y3250D01* Y3206D01* X8761Y3194D01* X8828D01* X8839Y3206D01* Y3194D02* X8750Y3261D01* X8839Y3283D02* X8750Y3350D01* Y3339D02* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* Y3339D01* X8828Y3350D01* X8761D01* X8750Y3339D01* X8761Y3394D02* X8772Y3406D01* X8761Y3417D01* X8750Y3406D01* X8761Y3394D01* X8750Y3528D02* X8839Y3461D01* Y3472D02* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8828D01* X8839Y3517D01* Y3550D02* X8750Y3617D01* Y3606D02* Y3561D01* X8761Y3550D01* X8828D01* X8839Y3472D02* Y3517D01* X8828Y3550D02* X8839Y3561D01* Y3606D01* X8828Y3617D01* X8761D01* X8750Y3606D01* Y3639D02* Y3706D01* Y3672D02* X8839D01* X8817Y3694D01* X8839Y2672D02* Y2717D01* X8828Y2728D01* X8794Y2750D02* Y2817D01* X8761Y2783D02* X8828D01* Y2728D02* X8761D01* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8750Y2728D02* X8839Y2661D01* Y2672D02* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2461D02* X8750Y2450D01* Y2406D01* X8761Y2394D01* X8828D01* X8839Y2406D01* Y2394D02* X8750Y2461D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D020* X1588Y1894D02* X1608D01* X1588Y1956D02* X1608D01* X1926Y1974D02* Y1994D01* X1988Y1974D02* Y1994D01* X2056Y2022D02* Y2002D01* Y1959D02* Y1939D01* X2118D02* Y1959D01* Y2002D02* Y2022D01* X2232Y1939D02* Y1959D01* Y2002D02* Y2022D01* X2170D02* Y2002D01* Y1959D02* Y1939D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984Y1856D02* Y1876D01* X1922Y1856D02* Y1876D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* Y1307D02* X2061D01* X2120D02* X2140D01* Y1245D02* X2120D01* X2061D02* X2041D01* X2067Y1147D02* Y1167D01* X2129Y1147D02* Y1167D01* X2217Y1212D02* X2283D01* X2217Y1262D02* X2283D01* X2217Y1312D02* X2283D01* X2217Y1362D02* X2283D01* X2217Y1412D02* X2283D01* X2217Y1462D02* X2283D01* X2217Y1512D02* X2283D01* X2217Y1562D02* X2283D01* X2217Y1612D02* X2283D01* X2217Y1662D02* X2283D01* X2217Y1712D02* X2283D01* Y1762D02* X2217D01* X2283Y1812D02* X2217D01* X2371D02* X2437D01* X2371Y1762D02* X2437D01* Y1712D02* X2371D01* X2437Y1662D02* X2371D01* X2437Y1612D02* X2371D01* X2437Y1562D02* X2371D01* X2437Y1512D02* X2371D01* X2437Y1462D02* X2371D01* X2437Y1412D02* X2371D01* X2437Y1362D02* X2371D01* X2437Y1312D02* X2371D01* X2437Y1262D02* X2371D01* X2437Y1212D02* X2371D01* X2787Y1180D02* Y1200D01* X2725Y1180D02* Y1200D01* X2854Y1498D02* Y1518D01* X2792Y1498D02* Y1518D01* X2756Y1648D02* Y1628D01* X2818Y1648D02* Y1628D01* X2875D02* Y1648D01* X2937Y1628D02* Y1648D01* X2990Y1629D02* X3010D01* X2990Y1691D02* X3010D01* X2871Y1869D02* Y1889D01* X2809Y1869D02* Y1889D01* X2615Y2022D02* Y2002D01* X2677Y2022D02* Y2002D01* X2720Y2089D02* X2740D01* X2720Y2151D02* X2740D01* X2655Y2504D02* X2675D01* X2655Y2566D02* X2675D01* X2737Y2733D02* Y2713D01* X2799Y2733D02* Y2713D01* X2655Y2752D02* X2675D01* X2655Y2814D02* X2675D01* X2737D02* Y2834D01* X2799Y2814D02* Y2834D01* X2801Y2930D02* Y2950D01* Y3010D02* Y3030D01* X2739D02* Y3010D01* Y2950D02* Y2930D01* X2620Y2948D02* X2600D01* X2620Y3010D02* X2600D01* X2544Y2993D02* Y3013D01* X2482Y2993D02* Y3013D01* X2431Y3011D02* X2411D01* X2431Y2949D02* X2411D01* X2170Y3041D02* X2150D01* X2170Y2979D02* X2150D01* X2225Y2864D02* Y2844D01* X2287Y2864D02* Y2844D01* X2122Y2864D02* Y2844D01* X2060Y2864D02* Y2844D01* X1800Y2451D02* Y2471D01* X1738Y2451D02* Y2471D01* X3129Y2030D02* Y2050D01* X3191Y2030D02* Y2050D01* X3170Y2109D02* X3190D01* X3170Y2171D02* X3190D01* X3390Y2104D02* Y2084D01* Y2041D02* Y2021D01* X3452D02* Y2041D01* Y2084D02* Y2104D01* X3528D02* Y2084D01* Y2041D02* Y2021D01* X3590D02* Y2041D01* Y2084D02* Y2104D01* X3591Y2480D02* Y2500D01* X3529Y2480D02* Y2500D01* X3451D02* Y2480D01* Y2440D02* Y2420D01* X3389D02* Y2440D01* Y2480D02* Y2500D01* X3790Y2949D02* X3810D01* X3790Y3011D02* X3810D01* X3900D02* X3880D01* X3900Y2949D02* X3880D01* X4009Y2860D02* Y2880D01* X4071Y2860D02* Y2880D01* X4101Y2940D02* Y2960D01* X4039Y2940D02* Y2960D01* X4269D02* Y2940D01* X4279Y2880D02* Y2860D01* X4201Y2880D02* Y2860D01* X4139Y2880D02* Y2860D01* X4165Y2738D02* Y2718D01* X4103Y2738D02* Y2718D01* X4093Y2559D02* X4073D01* X4093Y2497D02* X4073D01* X4264Y2262D02* Y2282D01* X4326Y2262D02* Y2282D01* X4375Y2262D02* Y2282D01* X4437Y2262D02* Y2282D01* X4610Y2451D02* Y2471D01* X4548Y2451D02* Y2471D01* Y2518D02* Y2538D01* Y2584D02* Y2604D01* X4610D02* Y2584D01* Y2538D02* Y2518D01* X4691Y2715D02* Y2735D01* X4629Y2715D02* Y2735D01* X4915Y2679D02* X4935D01* X4915Y2741D02* X4935D01* X4837Y2322D02* X4817D01* X4754D02* X4774D01* Y2260D02* X4754D01* X4817D02* X4837D01* X4894Y2262D02* Y2282D01* X4956Y2262D02* Y2282D01* X5346Y1612D02* Y1632D01* Y1687D02* Y1707D01* Y1762D02* Y1782D01* X5284D02* Y1762D01* Y1707D02* Y1687D01* Y1632D02* Y1612D01* X5121Y1534D02* X5101D01* X5121Y1472D02* X5101D01* X5174Y1155D02* Y1175D01* X5236Y1155D02* Y1175D01* X5240Y1234D02* Y1254D01* X5178Y1234D02* Y1254D01* X5343Y1230D02* Y1210D01* X5405Y1230D02* Y1210D01* X4654Y1203D02* Y1183D01* X4716Y1203D02* Y1183D01* X4803Y1427D02* Y1447D01* X4741Y1427D02* Y1447D01* X4374Y1651D02* Y1671D01* X4312Y1651D02* Y1671D01* X4204Y1651D02* Y1671D01* X4142Y1651D02* Y1671D01* X3881Y1683D02* Y1703D01* X3819Y1683D02* Y1703D01* X3657Y1852D02* Y1872D01* X3595Y1852D02* Y1872D01* X3400Y1531D02* X3380D01* X3400Y1469D02* X3380D01* X3779Y1200D02* Y1180D01* X3841Y1200D02* Y1180D01* X5265Y2679D02* X5285D01* X5265Y2741D02* X5285D01* X5615Y2679D02* X5635D01* X5615Y2741D02* X5635D01* X5985D02* X5965D01* X5985Y2679D02* X5965D01* X6254Y2611D02* X6274D01* X6254Y2673D02* X6274D01* X6408D02* X6388D01* X6341D02* X6321D01* Y2611D02* X6341D01* X6388D02* X6408D01* X6787Y2502D02* Y2522D01* X6725Y2502D02* Y2522D01* X6695Y2599D02* X6715D01* X6778D02* X6758D01* Y2661D02* X6778D01* X6715D02* X6695D01* X6841D02* X6821D01* X6841Y2599D02* X6821D01* X6892D02* X6912D01* X6892Y2661D02* X6912D01* X7224Y2939D02* Y2919D01* Y2876D02* Y2856D01* X7162D02* Y2876D01* Y2919D02* Y2939D01* X7019Y3671D02* Y3691D01* X6957Y3671D02* Y3691D01* X6947Y3737D02* X6967D01* X7010D02* X7030D01* Y3799D02* X7010D01* X6967D02* X6947D01* X6537Y3902D02* X6557D01* X6537Y3964D02* X6557D01* X6876Y4237D02* X6896D01* X6935D02* X6955D01* X6876Y4299D02* X6896D01* X6935D02* X6955D01* X6994D02* X7014D01* X7053D02* X7073D01* Y4237D02* X7053D01* X7014D02* X6994D01* X7062Y4344D02* Y4364D01* X7000Y4344D02* Y4364D01* X6413Y4770D02* Y4790D01* X6351Y4770D02* Y4790D01* X6160Y4811D02* X6140D01* X6160Y4749D02* X6140D01* X5960Y4811D02* X5940D01* X5960Y4749D02* X5940D01* X5995Y4240D02* X5975D01* X5995Y4178D02* X5975D01* X5850Y4240D02* X5830D01* X5850Y4178D02* X5830D01* X5804Y3754D02* Y3774D01* X5866Y3754D02* Y3774D01* X5974Y3734D02* Y3714D01* X6036Y3734D02* Y3714D01* X6021Y3629D02* Y3609D01* X5959Y3629D02* Y3609D01* X6021Y3524D02* Y3504D01* X5959Y3524D02* Y3504D01* X5916Y3494D02* Y3474D01* X5854D02* Y3494D01* X5866Y3554D02* Y3574D01* X5804Y3554D02* Y3574D01* X6108Y3346D02* X6088D01* X6108Y3284D02* X6088D01* X6038Y3244D02* X6018D01* X6038Y3182D02* X6018D01* X6088D02* X6108D01* X6088Y3244D02* X6108D01* X5756Y3164D02* Y3184D01* X5694Y3164D02* Y3184D01* X5450Y3248D02* X5470D01* X5450Y3310D02* X5470D01* X5324Y3394D02* Y3414D01* X5386Y3394D02* Y3414D01* Y3464D02* Y3484D01* Y3534D02* Y3554D01* Y3624D02* Y3604D01* X5324Y3554D02* Y3534D01* Y3484D02* Y3464D01* X5121Y3489D02* Y3469D01* X5059Y3489D02* Y3469D01* X5101Y3704D02* Y3684D01* X5039Y3704D02* Y3684D01* Y3589D02* Y3609D01* X5101Y3589D02* Y3609D01* X5154Y3589D02* Y3609D01* X5216Y3589D02* Y3609D01* X5324Y3604D02* Y3624D01* Y3764D02* Y3784D01* X5386Y3764D02* Y3784D01* Y3844D02* Y3864D01* X5324Y3844D02* Y3864D01* X5101Y4009D02* Y3989D01* X5039Y4009D02* Y3989D01* X5610Y4811D02* X5590D01* X5610Y4749D02* X5590D01* X5260Y4811D02* X5240D01* X5260Y4749D02* X5240D01* X4910Y4811D02* X4890D01* X4910Y4749D02* X4890D01* X4560Y4811D02* X4540D01* X4560Y4749D02* X4540D01* X4287Y4770D02* Y4790D01* X4225Y4770D02* Y4790D01* X4531Y4410D02* Y4390D01* X4469Y4410D02* Y4390D01* X4531Y4060D02* Y4040D01* X4469Y4060D02* Y4040D01* X4250Y3951D02* X4230D01* X4170D02* X4150D01* Y3889D02* X4170D01* X4169Y3830D02* Y3810D01* X4231D02* Y3830D01* X4250Y3889D02* X4230D01* X4291Y3720D02* Y3740D01* X4229Y3720D02* Y3740D01* X4171Y3720D02* Y3740D01* X4109Y3720D02* Y3740D01* X4029Y3630D02* Y3610D01* X4091Y3630D02* Y3610D01* X4160Y3559D02* X4180D01* X4160Y3621D02* X4180D01* X4269Y3600D02* Y3580D01* Y3530D02* Y3510D01* Y3460D02* Y3440D01* X4331D02* Y3460D01* Y3510D02* Y3530D01* Y3580D02* Y3600D01* X4469Y3490D02* Y3510D01* X4531Y3490D02* Y3510D01* X4469Y3690D02* Y3710D01* X4531Y3690D02* Y3710D01* Y3310D02* Y3290D01* X4469Y3310D02* Y3290D01* X4331Y3240D02* Y3220D01* X4269Y3240D02* Y3220D01* X4220Y3238D02* Y3218D01* X4158Y3238D02* Y3218D01* X4269Y3080D02* Y3100D01* Y3150D02* Y3170D01* X4331D02* Y3150D01* Y3100D02* Y3080D01* Y3030D02* Y3010D01* X4269Y3030D02* Y3010D01* X4331Y2960D02* Y2940D01* X4341Y2880D02* Y2860D01* X4363Y2718D02* Y2738D01* X4425Y2718D02* Y2738D01* X4469Y2940D02* Y2960D01* X4531Y2940D02* Y2960D01* X3889Y3270D02* Y3250D01* Y3210D02* Y3190D01* X3951D02* Y3210D01* Y3250D02* Y3270D01* X4029Y3160D02* Y3180D01* X4091Y3160D02* Y3180D01* Y3230D02* Y3250D01* X4029Y3230D02* Y3250D01* X4093Y3373D02* Y3393D01* X4031Y3373D02* Y3393D01* X4091Y3510D02* Y3530D01* X4029Y3510D02* Y3530D01* X3971Y3510D02* Y3490D01* X3909Y3510D02* Y3490D01* X3859Y3580D02* X3879D01* X3859Y3642D02* X3879D01* X3859Y3880D02* Y3900D01* X3921Y3880D02* Y3900D01* X3979Y3860D02* Y3880D01* X3977Y3938D02* Y3958D01* X4041Y3860D02* Y3880D01* X4039Y3938D02* Y3958D01* X4069Y4020D02* Y4040D01* Y4100D02* Y4120D01* X4131D02* Y4100D01* Y4040D02* Y4020D01* X4030Y4199D02* X4050D01* X4110D02* X4130D01* Y4261D02* X4110D01* X4050D02* X4030D01* X3891Y4390D02* Y4370D01* X3829Y4390D02* Y4370D01* X3891Y4240D02* Y4220D01* X3829Y4240D02* Y4220D01* X3846Y4110D02* Y4090D01* Y4050D02* Y4030D01* X3784D02* Y4050D01* Y4090D02* Y4110D01* X3268Y3966D02* Y3986D01* X3330Y3966D02* Y3986D01* X3381Y3750D02* Y3770D01* X3319Y3750D02* Y3770D01* X3250Y3731D02* X3230D01* X3250Y3669D02* X3230D01* X3229Y3515D02* Y3535D01* Y3575D02* Y3595D01* X3291D02* Y3575D01* Y3535D02* Y3515D01* X3569Y3120D02* Y3140D01* Y3180D02* Y3200D01* X3631D02* Y3180D01* Y3140D02* Y3120D01* X3610Y3001D02* X3590D01* X3610Y2939D02* X3590D01* X3540D02* X3520D01* X3470D02* X3450D01* Y3001D02* X3470D01* X3520D02* X3540D01* X3320D02* X3300D01* X3250D02* X3230D01* Y2939D02* X3250D01* X3300D02* X3320D01* X3070Y2929D02* X3050D01* X3000D02* X2980D01* Y2991D02* X3000D01* X3050D02* X3070D01* X3120Y3109D02* X3140D01* X3120Y3171D02* X3140D01* X3021Y3240D02* Y3260D01* X2959Y3240D02* Y3260D01* X2850Y3129D02* X2870D01* X2850Y3191D02* X2870D01* X2850Y3249D02* X2870D01* Y3311D02* X2850D01* X2870Y3369D02* X2850D01* X2870Y3431D02* X2850D01* X2870Y3489D02* X2850D01* X2870Y3551D02* X2850D01* X2641Y3670D02* Y3690D01* X2579Y3670D02* Y3690D01* X2451Y3670D02* Y3690D01* X2389Y3670D02* Y3690D01* X2318Y3671D02* Y3691D01* X2256Y3671D02* Y3691D01* X2171Y3641D02* X2151D01* X2171Y3579D02* X2151D01* X2171Y3519D02* X2151D01* Y3457D02* X2171D01* Y3401D02* X2151D01* X2171Y3339D02* X2151D01* X1588Y3745D02* X1608D01* X1588Y3807D02* X1608D01* X1707D02* X1687D01* X1707Y3745D02* X1687D01* X1889Y3930D02* Y3950D01* X1951Y3930D02* Y3950D01* X1980Y4104D02* Y4124D01* X1918Y4104D02* Y4124D01* Y4179D02* Y4199D01* Y4258D02* Y4278D01* X1980D02* Y4258D01* Y4199D02* Y4179D01* X2099Y4152D02* Y4132D01* X2161Y4152D02* Y4132D01* X2187Y4425D02* X2167D01* X2187Y4363D02* X2167D01* X1994Y4359D02* X2014D01* X2069D02* X2089D01* Y4421D02* X2069D01* X2014D02* X1994D01* X1939D02* X1919D01* X1939Y4359D02* X1919D01* X1910Y4681D02* X1890D01* X1910Y4619D02* X1890D01* X1960D02* X1980D01* X1960Y4681D02* X1980D01* X2110Y4739D02* X2130D01* X2110Y4801D02* X2130D01* X2548Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2610D02* Y4336D01* Y4274D02* Y4254D01* X2701D02* Y4274D01* X2763Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2701Y4336D02* Y4356D01* X2670Y4419D02* X2690D01* X2670Y4481D02* X2690D01* X2780D02* X2760D01* X2780Y4419D02* X2760D01* X2916Y4335D02* Y4355D01* X2854Y4335D02* Y4355D01* Y4420D02* Y4440D01* X2916Y4420D02* Y4440D01* Y4565D02* Y4585D01* X2854Y4565D02* Y4585D01* X2796Y4813D02* X2776D01* X2796Y4751D02* X2776D01* X2851D02* X2871D01* X2851Y4813D02* X2871D01* X2929Y4710D02* Y4730D01* X2989Y4710D02* Y4730D01* X2991Y4710D02* Y4730D01* X3051Y4710D02* Y4730D01* X3112Y4710D02* Y4730D01* X3174Y4710D02* Y4730D01* X3143Y4792D02* Y4812D01* X3081Y4792D02* Y4812D01* X3253Y4750D02* X3273D01* X3253Y4812D02* X3273D01* X3346D02* X3326D01* X3346Y4750D02* X3326D01* X3400Y4751D02* X3420D01* X3400Y4813D02* X3420D01* X6056Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6118D02* Y1156D01* Y1207D02* Y1227D01* X6321Y1563D02* X6341D01* X6321Y1625D02* X6341D01* X6163Y2024D02* X6183D01* X6163Y2086D02* X6183D01* X6449Y2183D02* Y2203D01* X6511Y2183D02* Y2203D01* X6801Y2086D02* X6781D01* X6801Y2024D02* X6781D01* X6801Y1775D02* X6781D01* X6801Y1713D02* X6781D01* X6801Y1625D02* X6781D01* X6801Y1563D02* X6781D01* X7162Y1506D02* Y1486D01* Y1443D02* Y1423D01* X7224D02* Y1443D01* Y1486D02* Y1506D01* X6993Y1156D02* Y1136D01* X7055Y1156D02* Y1136D01* Y1227D02* Y1207D01* X6993Y1227D02* Y1207D01* X6904Y1220D02* X6884D01* X6904Y1158D02* X6884D01* X6738Y1220D02* X6718D01* X6738Y1158D02* X6718D01* X6573Y1220D02* X6553D01* X6573Y1158D02* X6553D01* D017* X1725Y1884D02* X1747D01* X1725Y1809D02* X1747D01* X1804D02* X1826D01* X1978Y1527D02* Y1505D01* X1904Y1527D02* Y1505D01* Y1448D02* Y1426D01* X2523Y1671D02* Y1719D01* X2573Y1671D02* Y1719D01* X2623Y1671D02* Y1719D01* X2673Y1671D02* Y1719D01* Y1895D02* Y1943D01* X2623Y1895D02* Y1943D01* X2573Y1895D02* Y1943D01* X2523Y1895D02* Y1943D01* X4059Y2392D02* Y2440D01* X4109Y2392D02* Y2440D01* X4159Y2392D02* Y2440D01* X4209Y2392D02* Y2440D01* X4319Y2392D02* Y2440D01* X4369Y2392D02* Y2440D01* X4419Y2392D02* Y2440D01* X4469Y2392D02* Y2440D01* Y2616D02* Y2664D01* X4419Y2616D02* Y2664D01* X4369Y2616D02* Y2664D01* X4319Y2616D02* Y2664D01* X4209Y2616D02* Y2664D01* X4159Y2616D02* Y2664D01* X4109Y2616D02* Y2664D01* X4059Y2616D02* Y2664D01* X5315Y2021D02* Y2069D01* X5365Y2021D02* Y2069D01* X5415Y2021D02* Y2069D01* X5465Y2021D02* Y2069D01* Y2245D02* Y2293D01* X5415Y2245D02* Y2293D01* X5365Y2245D02* Y2293D01* X5315Y2245D02* Y2293D01* X5653D02* Y2245D01* X5703Y2293D02* Y2245D01* X5753Y2293D02* Y2245D01* X5803Y2293D02* Y2245D01* Y2069D02* Y2021D01* X5753Y2069D02* Y2021D01* X5703Y2069D02* Y2021D01* X5653Y2069D02* Y2021D01* X6423Y1744D02* X6471D01* X6423Y1694D02* X6471D01* X6423Y1644D02* X6471D01* X6423Y1594D02* X6471D01* X6695D02* X6647D01* X6695Y1644D02* X6647D01* X6695Y1694D02* X6647D01* X6695Y1744D02* X6647D01* X6571Y2911D02* Y2959D01* X6621Y2911D02* Y2959D01* X6671Y2911D02* Y2959D01* X6721Y2911D02* Y2959D01* X6819Y2911D02* Y2959D01* X6869Y2911D02* Y2959D01* X6919Y2911D02* Y2959D01* X6969Y2911D02* Y2959D01* Y3135D02* Y3183D01* X6919Y3135D02* Y3183D01* X6869Y3135D02* Y3183D01* X6819Y3135D02* Y3183D01* X6721Y3135D02* Y3183D01* X6671Y3135D02* Y3183D01* X6621Y3135D02* Y3183D01* X6571Y3135D02* Y3183D01* Y3325D02* Y3373D01* X6621Y3325D02* Y3373D01* X6671Y3325D02* Y3373D01* X6721Y3325D02* Y3373D01* X6819Y3325D02* Y3373D01* X6869Y3325D02* Y3373D01* X6919Y3325D02* Y3373D01* X6969Y3325D02* Y3373D01* Y3549D02* Y3597D01* X6919Y3549D02* Y3597D01* X6869Y3549D02* Y3597D01* X6819Y3549D02* Y3597D01* X6721Y3549D02* Y3597D01* X6671Y3549D02* Y3597D01* X6621Y3549D02* Y3597D01* X6571Y3549D02* Y3597D01* D022* X2130Y1364D02* Y1384D01* X2051Y1364D02* Y1384D01* X2130Y1561D02* Y1581D01* X2051Y1561D02* Y1581D01* X1539Y2455D02* Y2419D01* X1689Y2455D02* Y2419D01* X1768Y2892D02* Y2856D01* X1917Y2892D02* Y2856D01* X3207Y3120D02* Y3160D01* X3333Y3120D02* Y3160D01* X3741Y3090D02* Y3070D01* X3819Y3090D02* Y3070D01* X3878Y3329D02* Y3349D01* X3957Y3329D02* Y3349D01* X3860Y3697D02* X3900D01* X3860Y3823D02* X3900D01* X4587Y2278D02* Y2258D01* X4665Y2278D02* Y2258D01* X5335Y1965D02* X5295D01* X5335Y1839D02* X5295D01* X5783D02* X5823D01* X5783Y1965D02* X5823D01* X5744Y1230D02* Y1210D01* X5665Y1230D02* Y1210D01* X5579Y1189D02* Y1229D01* X5453Y1189D02* Y1229D01* X6064Y3398D02* X6104D01* X6064Y3524D02* X6104D01* X6581Y3657D02* X6601D01* X6581Y3736D02* X6601D01* X6773Y3657D02* X6793D01* X6773Y3736D02* X6793D01* X6815Y4258D02* Y4238D01* X6736Y4258D02* Y4238D01* X6678Y4364D02* X6858D01* X6678Y4588D02* X6858D01* D016* X2283Y2024D02* X2311D01* X2283Y1992D02* X2311D01* X2283Y1961D02* X2311D01* X2283Y1929D02* X2311D01* X2358D02* X2386D01* X2358Y1961D02* X2386D01* X2358Y1992D02* X2386D01* X2358Y2024D02* X2386D01* X2555Y1563D02* Y1535D01* X2587Y1563D02* Y1535D01* X2618Y1563D02* Y1535D01* X2650Y1563D02* Y1535D01* Y1460D02* Y1488D01* X2618Y1460D02* Y1488D01* X2587Y1460D02* Y1488D01* X2555Y1460D02* Y1488D01* X3513Y1439D02* Y1467D01* X3544Y1439D02* Y1467D01* X3576Y1439D02* Y1467D01* X3607Y1439D02* Y1467D01* Y1541D02* Y1513D01* X3576Y1541D02* Y1513D01* X3544Y1541D02* Y1513D01* X3513Y1541D02* Y1513D01* X3089Y2317D02* X3117D01* X3089Y2286D02* X3117D01* X3089Y2254D02* X3117D01* X3089Y2223D02* X3117D01* X3163D02* X3191D01* X3163Y2254D02* X3191D01* X3163Y2286D02* X3191D01* X3163Y2317D02* X3191D01* X3507Y3107D02* Y3079D01* X3476Y3107D02* Y3079D01* X3444Y3107D02* Y3079D01* X3413Y3107D02* Y3079D01* Y3153D02* Y3181D01* X3444Y3153D02* Y3181D01* X3476Y3153D02* Y3181D01* X3507Y3153D02* Y3181D01* X2563Y3996D02* Y3968D01* X2594Y3996D02* Y3968D01* X2626Y3996D02* Y3968D01* X2657Y3996D02* Y3968D01* Y4043D02* Y4071D01* X2626Y4043D02* Y4071D01* X2594Y4043D02* Y4071D01* X2563Y4043D02* Y4071D01* X2370Y4299D02* X2342D01* X2370Y4268D02* X2342D01* X2370Y4236D02* X2342D01* X2370Y4205D02* X2342D01* X2295D02* X2267D01* X2295Y4236D02* X2267D01* X2295Y4268D02* X2267D01* X2295Y4299D02* X2267D01* X4127Y4327D02* Y4299D01* X4096Y4327D02* Y4299D01* X4064Y4327D02* Y4299D01* X4033Y4327D02* Y4299D01* Y4373D02* Y4401D01* X4064Y4373D02* Y4401D01* X4096Y4373D02* Y4401D01* X4127Y4373D02* Y4401D01* X4449Y4453D02* X4477D01* X4449Y4484D02* X4477D01* X4449Y4516D02* X4477D01* X4449Y4547D02* X4477D01* X4449Y4603D02* X4477D01* X4449Y4634D02* X4477D01* X4449Y4666D02* X4477D01* X4449Y4697D02* X4477D01* X4523D02* X4551D01* X4523Y4666D02* X4551D01* X4523Y4634D02* X4551D01* X4523Y4603D02* X4551D01* X4523Y4547D02* X4551D01* X4523Y4516D02* X4551D01* X4523Y4484D02* X4551D01* X4523Y4453D02* X4551D01* Y4253D02* X4523D01* X4551Y4284D02* X4523D01* X4551Y4316D02* X4523D01* X4551Y4347D02* X4523D01* X4477D02* X4449D01* X4477Y4316D02* X4449D01* X4477Y4284D02* X4449D01* X4477Y4253D02* X4449D01* Y4103D02* X4477D01* X4449Y4134D02* X4477D01* X4449Y4166D02* X4477D01* X4449Y4197D02* X4477D01* X4523D02* X4551D01* X4523Y4166D02* X4551D01* X4523Y4134D02* X4551D01* X4523Y4103D02* X4551D01* Y3903D02* X4523D01* X4551Y3934D02* X4523D01* X4551Y3966D02* X4523D01* X4551Y3997D02* X4523D01* X4477D02* X4449D01* X4477Y3966D02* X4449D01* X4477Y3934D02* X4449D01* X4477Y3903D02* X4449D01* Y3753D02* X4477D01* X4449Y3784D02* X4477D01* X4449Y3816D02* X4477D01* X4449Y3847D02* X4477D01* X4523D02* X4551D01* X4523Y3816D02* X4551D01* X4523Y3784D02* X4551D01* X4523Y3753D02* X4551D01* Y3553D02* X4523D01* X4551Y3584D02* X4523D01* X4551Y3616D02* X4523D01* X4551Y3647D02* X4523D01* X4477D02* X4449D01* X4477Y3616D02* X4449D01* X4477Y3584D02* X4449D01* X4477Y3553D02* X4449D01* Y3353D02* X4477D01* X4449Y3384D02* X4477D01* X4449Y3416D02* X4477D01* X4449Y3447D02* X4477D01* X4523D02* X4551D01* X4523Y3416D02* X4551D01* X4523Y3384D02* X4551D01* X4523Y3353D02* X4551D01* X4311Y3293D02* X4283D01* X4311Y3324D02* X4283D01* X4311Y3356D02* X4283D01* X4311Y3387D02* X4283D01* X4237D02* X4209D01* X4237Y3356D02* X4209D01* X4237Y3324D02* X4209D01* X4237Y3293D02* X4209D01* X4131Y3013D02* X4103D01* X4131Y3044D02* X4103D01* X4131Y3076D02* X4103D01* X4131Y3107D02* X4103D01* X4057D02* X4029D01* X4057Y3076D02* X4029D01* X4057Y3044D02* X4029D01* X4057Y3013D02* X4029D01* X4551Y3153D02* X4523D01* X4551Y3184D02* X4523D01* X4551Y3216D02* X4523D01* X4551Y3247D02* X4523D01* X4477D02* X4449D01* X4477Y3216D02* X4449D01* X4477Y3184D02* X4449D01* X4477Y3153D02* X4449D01* Y3003D02* X4477D01* X4449Y3034D02* X4477D01* X4449Y3066D02* X4477D01* X4449Y3097D02* X4477D01* X4523D02* X4551D01* X4523Y3066D02* X4551D01* X4523Y3034D02* X4551D01* X4523Y3003D02* X4551D01* Y2803D02* X4523D01* X4551Y2834D02* X4523D01* X4551Y2866D02* X4523D01* X4551Y2897D02* X4523D01* X4477D02* X4449D01* X4477Y2866D02* X4449D01* X4477Y2834D02* X4449D01* X4477Y2803D02* X4449D01* X4778Y2761D02* Y2733D01* X4809Y2761D02* Y2733D01* X4841Y2761D02* Y2733D01* X4872Y2761D02* Y2733D01* Y2659D02* Y2687D01* X4841Y2659D02* Y2687D01* X4809Y2659D02* Y2687D01* X4778Y2659D02* Y2687D01* X4978D02* Y2659D01* X5009Y2687D02* Y2659D01* X5041Y2687D02* Y2659D01* X5072Y2687D02* Y2659D01* X5128Y2687D02* Y2659D01* X5159Y2687D02* Y2659D01* X5191Y2687D02* Y2659D01* X5222Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5191Y2733D02* Y2761D01* X5159Y2733D02* Y2761D01* X5128Y2733D02* Y2761D01* X5072Y2733D02* Y2761D01* X5041Y2733D02* Y2761D01* X5009Y2733D02* Y2761D01* X4978Y2733D02* Y2761D01* X5328Y2687D02* Y2659D01* X5359Y2687D02* Y2659D01* X5391Y2687D02* Y2659D01* X5422Y2687D02* Y2659D01* X5478Y2687D02* Y2659D01* X5509Y2687D02* Y2659D01* X5541Y2687D02* Y2659D01* X5572Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5541Y2733D02* Y2761D01* X5509Y2733D02* Y2761D01* X5478Y2733D02* Y2761D01* X5422Y2733D02* Y2761D01* X5391Y2733D02* Y2761D01* X5359Y2733D02* Y2761D01* X5328Y2733D02* Y2761D01* X5678D02* Y2733D01* X5709Y2761D02* Y2733D01* X5741Y2761D02* Y2733D01* X5772Y2761D02* Y2733D01* X5828Y2761D02* Y2733D01* X5859Y2761D02* Y2733D01* X5891Y2761D02* Y2733D01* X5922Y2761D02* Y2733D01* Y2659D02* Y2687D01* X5891Y2659D02* Y2687D01* X5859Y2659D02* Y2687D01* X5828Y2659D02* Y2687D01* X5772Y2659D02* Y2687D01* X5741Y2659D02* Y2687D01* X5709Y2659D02* Y2687D01* X5678Y2659D02* Y2687D01* X6028D02* Y2659D01* X6059Y2687D02* Y2659D01* X6091Y2687D02* Y2659D01* X6122Y2687D02* Y2659D01* Y2733D02* Y2761D01* X6091Y2733D02* Y2761D01* X6059Y2733D02* Y2761D01* X6028Y2733D02* Y2761D01* X6630Y2594D02* X6602D01* X6630Y2626D02* X6602D01* X6630Y2657D02* X6602D01* X6630Y2689D02* X6602D01* X6555D02* X6527D01* X6555Y2657D02* X6527D01* X6555Y2626D02* X6527D01* X6555Y2594D02* X6527D01* Y2736D02* X6555D01* X6527Y2768D02* X6555D01* X6527Y2799D02* X6555D01* X6527Y2831D02* X6555D01* X6602D02* X6630D01* X6602Y2799D02* X6630D01* X6602Y2768D02* X6630D01* X6602Y2736D02* X6630D01* X7142Y2717D02* X7170D01* X7142Y2748D02* X7170D01* X7142Y2780D02* X7170D01* X7142Y2811D02* X7170D01* X7216D02* X7244D01* X7216Y2780D02* X7244D01* X7216Y2748D02* X7244D01* X7216Y2717D02* X7244D01* Y2665D02* X7216D01* X7244Y2634D02* X7216D01* X7244Y2602D02* X7216D01* X7244Y2571D02* X7216D01* X7170D02* X7142D01* X7170Y2602D02* X7142D01* X7170Y2634D02* X7142D01* X7170Y2665D02* X7142D01* X7244Y2425D02* X7216D01* X7244Y2457D02* X7216D01* X7244Y2488D02* X7216D01* X7244Y2520D02* X7216D01* X7170D02* X7142D01* X7170Y2488D02* X7142D01* X7170Y2457D02* X7142D01* X7170Y2425D02* X7142D01* Y2374D02* X7170D01* X7142Y2343D02* X7170D01* X7142Y2311D02* X7170D01* X7142Y2280D02* X7170D01* X7216D02* X7244D01* X7216Y2311D02* X7244D01* X7216Y2343D02* X7244D01* X7216Y2374D02* X7244D01* X7142Y2134D02* X7170D01* X7142Y2165D02* X7170D01* X7142Y2197D02* X7170D01* X7142Y2228D02* X7170D01* X7216D02* X7244D01* X7216Y2197D02* X7244D01* X7216Y2165D02* X7244D01* X7216Y2134D02* X7244D01* Y2083D02* X7216D01* X7244Y2051D02* X7216D01* X7244Y2020D02* X7216D01* X7244Y1988D02* X7216D01* X7170D02* X7142D01* X7170Y2020D02* X7142D01* X7170Y2051D02* X7142D01* X7170Y2083D02* X7142D01* Y1843D02* X7170D01* X7142Y1874D02* X7170D01* X7142Y1906D02* X7170D01* X7142Y1937D02* X7170D01* X7216D02* X7244D01* X7216Y1906D02* X7244D01* X7216Y1874D02* X7244D01* X7216Y1843D02* X7244D01* Y1791D02* X7216D01* X7244Y1760D02* X7216D01* X7244Y1728D02* X7216D01* X7244Y1697D02* X7216D01* X7170D02* X7142D01* X7170Y1728D02* X7142D01* X7170Y1760D02* X7142D01* X7170Y1791D02* X7142D01* Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* X6213Y1166D02* Y1138D01* X6244Y1166D02* Y1138D01* X6276Y1166D02* Y1138D01* X6307Y1166D02* Y1138D01* X6366Y1166D02* Y1138D01* X6398Y1166D02* Y1138D01* X6429Y1166D02* Y1138D01* X6461Y1166D02* Y1138D01* Y1212D02* Y1240D01* X6429Y1212D02* Y1240D01* X6398Y1212D02* Y1240D01* X6366Y1212D02* Y1240D01* X6307Y1212D02* Y1240D01* X6276Y1212D02* Y1240D01* X6244Y1212D02* Y1240D01* X6213Y1212D02* Y1240D01* X6256Y1657D02* X6228D01* X6256Y1626D02* X6228D01* X6256Y1594D02* X6228D01* X6256Y1563D02* X6228D01* X6181D02* X6153D01* X6181Y1594D02* X6153D01* X6181Y1626D02* X6153D01* X6181Y1657D02* X6153D01* Y1870D02* X6181D01* X6153Y1902D02* X6181D01* X6153Y1933D02* X6181D01* X6153Y1965D02* X6181D01* X6228D02* X6256D01* X6228Y1933D02* X6256D01* X6228Y1902D02* X6256D01* X6228Y1870D02* X6256D01* Y1717D02* X6228D01* X6256Y1748D02* X6228D01* X6256Y1780D02* X6228D01* X6256Y1811D02* X6228D01* X6181D02* X6153D01* X6181Y1780D02* X6153D01* X6181Y1748D02* X6153D01* X6181Y1717D02* X6153D01* X5855Y1709D02* X5827D01* X5855Y1677D02* X5827D01* X5855Y1646D02* X5827D01* X5855Y1614D02* X5827D01* X5780D02* X5752D01* X5780Y1646D02* X5752D01* X5780Y1677D02* X5752D01* X5780Y1709D02* X5752D01* X7142Y3079D02* X7170D01* X7142Y3047D02* X7170D01* X7142Y3016D02* X7170D01* X7142Y2984D02* X7170D01* X7216D02* X7244D01* X7216Y3016D02* X7244D01* X7216Y3047D02* X7244D01* X7216Y3079D02* X7244D01* Y3130D02* X7216D01* X7244Y3161D02* X7216D01* X7244Y3193D02* X7216D01* X7244Y3224D02* X7216D01* X7170D02* X7142D01* X7170Y3193D02* X7142D01* X7170Y3161D02* X7142D01* X7170Y3130D02* X7142D01* Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* Y4681D02* X7216D01* X7244Y4650D02* X7216D01* X7244Y4618D02* X7216D01* X7244Y4587D02* X7216D01* X7170D02* X7142D01* X7170Y4618D02* X7142D01* X7170Y4650D02* X7142D01* X7170Y4681D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7216D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X6630Y4232D02* X6602D01* X6630Y4264D02* X6602D01* X6630Y4295D02* X6602D01* X6630Y4327D02* X6602D01* X6555D02* X6527D01* X6555Y4295D02* X6527D01* X6555Y4264D02* X6527D01* X6555Y4232D02* X6527D01* X6003Y4803D02* Y4831D01* X6034Y4803D02* Y4831D01* X6066Y4803D02* Y4831D01* X6097Y4803D02* Y4831D01* Y4757D02* Y4729D01* X6066Y4757D02* Y4729D01* X6034Y4757D02* Y4729D01* X6003Y4757D02* Y4729D01* X5653D02* Y4757D01* X5684Y4729D02* Y4757D01* X5716Y4729D02* Y4757D01* X5747Y4729D02* Y4757D01* X5803Y4729D02* Y4757D01* X5834Y4729D02* Y4757D01* X5866Y4729D02* Y4757D01* X5897Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5866Y4831D02* Y4803D01* X5834Y4831D02* Y4803D01* X5803Y4831D02* Y4803D01* X5747Y4831D02* Y4803D01* X5716Y4831D02* Y4803D01* X5684Y4831D02* Y4803D01* X5653Y4831D02* Y4803D01* X5303D02* Y4831D01* X5334Y4803D02* Y4831D01* X5366Y4803D02* Y4831D01* X5397Y4803D02* Y4831D01* X5453Y4803D02* Y4831D01* X5484Y4803D02* Y4831D01* X5516Y4803D02* Y4831D01* X5547Y4803D02* Y4831D01* Y4757D02* Y4729D01* X5516Y4757D02* Y4729D01* X5484Y4757D02* Y4729D01* X5453Y4757D02* Y4729D01* X5397Y4757D02* Y4729D01* X5366Y4757D02* Y4729D01* X5334Y4757D02* Y4729D01* X5303Y4757D02* Y4729D01* X4953D02* Y4757D01* X4984Y4729D02* Y4757D01* X5016Y4729D02* Y4757D01* X5047Y4729D02* Y4757D01* X5103Y4729D02* Y4757D01* X5134Y4729D02* Y4757D01* X5166Y4729D02* Y4757D01* X5197Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5166Y4831D02* Y4803D01* X5134Y4831D02* Y4803D01* X5103Y4831D02* Y4803D01* X5047Y4831D02* Y4803D01* X5016Y4831D02* Y4803D01* X4984Y4831D02* Y4803D01* X4953Y4831D02* Y4803D01* X4603D02* Y4831D01* X4634Y4803D02* Y4831D01* X4666Y4803D02* Y4831D01* X4697Y4803D02* Y4831D01* X4753Y4803D02* Y4831D01* X4784Y4803D02* Y4831D01* X4816Y4803D02* Y4831D01* X4847Y4803D02* Y4831D01* Y4757D02* Y4729D01* X4816Y4757D02* Y4729D01* X4784Y4757D02* Y4729D01* X4753Y4757D02* Y4729D01* X4697Y4757D02* Y4729D01* X4666Y4757D02* Y4729D01* X4634Y4757D02* Y4729D01* X4603Y4757D02* Y4729D01* D381* X1488Y1838D02* Y1850D01* Y1976D02* Y1988D01* Y3701D02* Y3713D01* Y3838D02* Y3850D01* D384* X1926Y2681D02* X1969D01* X1926Y2665D02* X1969D01* X1926Y2650D02* X1969D01* Y2618D02* X1926D01* X1969Y2634D02* X1926D01* Y2602D02* X1969D01* X1926Y2587D02* X1969D01* X1926Y2571D02* X1969D01* Y2539D02* X1926D01* X1969Y2555D02* X1926D01* X1969Y2508D02* X1926D01* X1969Y2524D02* X1926D01* Y2492D02* X1969D01* X1926Y2476D02* X1969D01* Y2445D02* X1926D01* X1969Y2461D02* X1926D01* Y2429D02* X1969D01* X1926Y2413D02* X1969D01* Y2382D02* X1926D01* X1969Y2398D02* X1926D01* Y2366D02* X1969D01* X1926Y2350D02* X1969D01* X1926Y2335D02* X1969D01* X1926Y2319D02* X1969D01* Y2287D02* X1926D01* X1969Y2303D02* X1926D01* Y2272D02* X1969D01* X1926Y2256D02* X1969D01* Y2224D02* X1926D01* X1969Y2240D02* X1926D01* Y2209D02* X1969D01* X1926Y2193D02* X1969D01* X2020Y2158D02* Y2115D01* X2004Y2158D02* Y2115D01* X2035D02* Y2158D01* X2051Y2115D02* Y2158D01* X2067Y2115D02* Y2158D01* X2083Y2115D02* Y2158D01* X2114D02* Y2115D01* X2098Y2158D02* Y2115D01* X2130D02* Y2158D01* X2146Y2115D02* Y2158D01* X2177D02* Y2115D01* X2161Y2158D02* Y2115D01* X2193D02* Y2158D01* X2209Y2115D02* Y2158D01* X2240D02* Y2115D01* X2224Y2158D02* Y2115D01* X2256D02* Y2158D01* X2272Y2115D02* Y2158D01* X2303D02* Y2115D01* X2287Y2158D02* Y2115D01* X2319D02* Y2158D01* X2335Y2115D02* Y2158D01* X2350Y2115D02* Y2158D01* X2366Y2115D02* Y2158D01* X2398D02* Y2115D01* X2382Y2158D02* Y2115D01* X2413D02* Y2158D01* X2429Y2115D02* Y2158D01* X2461D02* Y2115D01* X2445Y2158D02* Y2115D01* X2476D02* Y2158D01* X2492Y2115D02* Y2158D01* X2570Y2193D02* X2527D01* X2570Y2209D02* X2527D01* Y2240D02* X2570D01* X2527Y2224D02* X2570D01* Y2256D02* X2527D01* X2570Y2272D02* X2527D01* Y2303D02* X2570D01* X2527Y2287D02* X2570D01* Y2319D02* X2527D01* X2570Y2335D02* X2527D01* X2570Y2350D02* X2527D01* X2570Y2366D02* X2527D01* Y2398D02* X2570D01* X2527Y2382D02* X2570D01* Y2413D02* X2527D01* X2570Y2429D02* X2527D01* Y2461D02* X2570D01* X2527Y2445D02* X2570D01* Y2476D02* X2527D01* X2570Y2492D02* X2527D01* Y2524D02* X2570D01* X2527Y2508D02* X2570D01* X2527Y2555D02* X2570D01* X2527Y2539D02* X2570D01* Y2571D02* X2527D01* X2570Y2587D02* X2527D01* X2570Y2602D02* X2527D01* Y2634D02* X2570D01* X2527Y2618D02* X2570D01* Y2650D02* X2527D01* X2570Y2665D02* X2527D01* X2570Y2681D02* X2527D01* X2492Y2716D02* Y2759D01* X2476Y2716D02* Y2759D01* X2445D02* Y2716D01* X2461Y2759D02* Y2716D01* X2429D02* Y2759D01* X2413Y2716D02* Y2759D01* X2382D02* Y2716D01* X2398Y2759D02* Y2716D01* X2366D02* Y2759D01* X2350Y2716D02* Y2759D01* X2319D02* Y2716D01* X2335Y2759D02* Y2716D01* X2287Y2759D02* Y2716D01* X2303Y2759D02* Y2716D01* X2272D02* Y2759D01* X2256Y2716D02* Y2759D01* X2240Y2716D02* Y2759D01* X2224Y2716D02* Y2759D01* X2193D02* Y2716D01* X2209Y2759D02* Y2716D01* X2177D02* Y2759D01* X2161Y2716D02* Y2759D01* X2130D02* Y2716D01* X2146Y2759D02* Y2716D01* X2114D02* Y2759D01* X2098Y2716D02* Y2759D01* X2067D02* Y2716D01* X2083Y2759D02* Y2716D01* X2051D02* Y2759D01* X2035Y2716D02* Y2759D01* X2004D02* Y2716D01* X2020Y2759D02* Y2716D01* D021* X2110Y4558D02* X2070D01* X2110Y4482D02* X2070D01* X2010Y4520D02* X1970D01* X2056Y4256D02* X2096D01* X2156Y4218D02* X2196D01* X2156Y4294D02* X2196D01* X2936Y3129D02* X2976D01* X3036Y3167D02* X3076D01* X3036Y3091D02* X3076D01* X4058Y3680D02* Y3720D01* X3982Y3680D02* Y3720D01* X4020Y3780D02* Y3820D01* X3950Y4000D02* Y4040D01* X3912Y4100D02* Y4140D01* X3988Y4100D02* Y4140D01* X4211Y1717D02* Y1757D01* X4135Y1717D02* Y1757D01* X4173Y1817D02* Y1857D01* X4343D02* Y1817D01* X4305Y1757D02* Y1717D01* X4381Y1757D02* Y1717D01* X7054Y2560D02* Y2600D01* X6978Y2560D02* Y2600D01* X7016Y2660D02* Y2700D01* X6038Y3844D02* Y3884D01* X5962Y3844D02* Y3884D01* X6000Y3944D02* Y3984D01* X6918Y4507D02* X6958D01* X6918Y4431D02* X6958D01* X7018Y4469D02* X7058D01* Y4630D02* X7018D01* X6958Y4668D02* X6918D01* X6958Y4592D02* X6918D01* D014* X5408Y1934D02* X5482D01* X5408Y1960D02* X5482D01* Y1908D02* X5408D01* X5482Y1883D02* X5408D01* Y1832D02* X5482D01* X5408Y1857D02* X5482D01* Y1806D02* X5408D01* X5482Y1781D02* X5408D01* Y1729D02* X5482D01* X5408Y1755D02* X5482D01* Y1704D02* X5408D01* X5482Y1678D02* X5408D01* X5636D02* X5710D01* X5636Y1704D02* X5710D01* Y1755D02* X5636D01* X5710Y1729D02* X5636D01* Y1781D02* X5710D01* X5636Y1806D02* X5710D01* Y1857D02* X5636D01* X5710Y1832D02* X5636D01* Y1883D02* X5710D01* X5636Y1908D02* X5710D01* Y1960D02* X5636D01* X5710Y1934D02* X5636D01* X6786Y3841D02* Y3915D01* X6812Y3841D02* Y3915D01* X6863D02* Y3841D01* X6838Y3915D02* Y3841D01* X6889D02* Y3915D01* X6914Y3841D02* Y3915D01* X6966D02* Y3841D01* X6940Y3915D02* Y3841D01* X6991D02* Y3915D01* X7017Y3841D02* Y3915D01* Y4117D02* Y4191D01* X6991Y4117D02* Y4191D01* X6940D02* Y4117D01* X6966Y4191D02* Y4117D01* X6914D02* Y4191D01* X6889Y4117D02* Y4191D01* X6838D02* Y4117D01* X6863Y4191D02* Y4117D01* X6812D02* Y4191D01* X6786Y4117D02* Y4191D01* D041* X4522Y1898D02* X4572D01* X4522Y1866D02* X4572D01* X4522Y1835D02* X4572D01* X4522Y1803D02* X4572D01* X4522Y1772D02* X4572D01* X4522Y1740D02* X4572D01* X4522Y1709D02* X4572D01* X4522Y1677D02* X4572D01* X4522Y1646D02* X4572D01* X4522Y1614D02* X4572D01* X4522Y1583D02* X4572D01* X4614Y1541D02* Y1491D01* X4646Y1541D02* Y1491D01* X4677Y1541D02* Y1491D01* X4709Y1541D02* Y1491D01* X4740Y1541D02* Y1491D01* X4772Y1541D02* Y1491D01* X4803D02* Y1541D01* X4835Y1491D02* Y1541D01* X4866Y1491D02* Y1541D01* X4898Y1491D02* Y1541D01* X4929Y1491D02* Y1541D01* X5021Y1583D02* X4971D01* X5021Y1614D02* X4971D01* X5021Y1646D02* X4971D01* X5021Y1677D02* X4971D01* X5021Y1709D02* X4971D01* X5021Y1740D02* X4971D01* X5021Y1772D02* X4971D01* X5021Y1803D02* X4971D01* X5021Y1835D02* X4971D01* X5021Y1866D02* X4971D01* X5021Y1898D02* X4971D01* X4929Y1990D02* Y1940D01* X4898Y1990D02* Y1940D01* X4866Y1990D02* Y1940D01* X4835Y1990D02* Y1940D01* X4803Y1990D02* Y1940D01* X4772Y1990D02* Y1940D01* X4740Y1990D02* Y1940D01* X4709D02* Y1990D01* X4677Y1940D02* Y1990D01* X4646Y1940D02* Y1990D01* X4614Y1940D02* Y1990D01* D100* X1904Y1426D02* D03* Y1448D02* D03* Y1505D02* D03* Y1527D02* D03* X1978D02* D03* Y1505D02* D03* X1826Y1809D02* D03* X1804D02* D03* X1747D02* D03* X1725D02* D03* Y1884D02* D03* X1747D02* D03* D383* X1488Y1838D02* D03* Y1850D02* D03* Y1976D02* D03* Y1988D02* D03* Y3701D02* D03* Y3713D02* D03* Y3838D02* D03* Y3850D02* D03* D386* X2492Y2115D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2303D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* Y2158D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* X2570Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X2527D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2492Y2716D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2303D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* X1969Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X1926D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2004Y2759D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* D072* X2217Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2283D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2371D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2437D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* M02*gerbv-2.7.0/example/ekf2/stp1.grb0000644000175000017500000057145513421555714016402 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1764Y4932D02* Y4588D01* X1895Y4381D02* Y4419D01* X1891Y4427D01* X1656Y4588D02* Y4932D01* X1664D02* Y4588D01* X1896Y4428D02* X1899Y4418D01* Y4382D01* X1895Y4379D02* Y4381D01* X1899Y4382D02* Y4378D01* X1893Y4370D01* X1883Y4368D01* X1875Y4372D01* X1885Y4419D02* Y4381D01* X1696Y4588D02* Y4932D01* X1704D02* Y4588D01* X1879Y4373D02* X1875Y4381D01* X1870Y4373D02* X1878Y4366D01* X1888Y4365D01* X1897Y4369D01* X1902Y4377D01* X1903Y4382D02* X1902Y4377D01* X1903Y4382D02* Y4418D01* X1900Y4427D01* X1668Y4588D02* Y4932D01* X1676D02* Y4588D01* X1870Y4373D02* X1868Y4382D01* Y4418D01* X1588Y4588D02* Y4932D01* X1600D02* Y4588D01* X1871Y4418D02* Y4382D01* X1875Y4372D01* X1688Y4588D02* Y4932D01* X1991Y4904D02* Y4820D01* X1995Y4904D02* Y4820D01* X1999Y4904D02* Y4820D01* X2007D02* Y4904D01* X2003Y4820D02* Y4904D01* X2011D02* Y4820D01* X2015Y4904D02* Y4820D01* X2023D02* Y4904D01* X2019Y4820D02* Y4904D01* X2027Y4905D02* X1941D01* X1660Y4932D02* Y4588D01* X1672D02* Y4932D01* X1941Y4819D02* Y4905D01* X1943Y4904D02* Y4820D01* X1680Y4932D02* Y4588D01* X1684D02* Y4932D01* X1947Y4820D02* Y4904D01* X1951D02* Y4820D01* X1692Y4932D02* Y4588D01* X1700D02* Y4932D01* X1955Y4820D02* Y4904D01* X1959D02* Y4820D01* X1708Y4932D02* Y4588D01* X1720D02* Y4932D01* X1963Y4820D02* Y4904D01* X1967D02* Y4820D01* X1728Y4932D02* Y4588D01* X1744D02* Y4932D01* X1971Y4820D02* Y4904D01* X1975D02* Y4820D01* X1752Y4932D02* Y4588D01* X1760D02* Y4932D01* X1979Y4820D02* Y4904D01* X1983D02* Y4820D01* X1941Y4819D02* X2027D01* Y4905D01* X1987Y4904D02* Y4820D01* X2023Y4556D02* Y4464D01* X2027Y4430D02* X2037Y4432D01* X2045Y4428D01* X2049Y4418D01* Y4382D01* X2046Y4369D02* X2052Y4377D01* Y4382D01* X2049D02* X2048Y4378D01* X2045Y4381D02* Y4419D01* X2041Y4427D01* X2042Y4419D02* Y4381D01* X2041Y4380D02* X2042Y4381D01* X2041Y4380D02* X2034Y4374D01* X2028Y4381D01* X2039Y4372D02* X2029Y4373D01* X2025Y4381D01* Y4419D01* X2028Y4420D02* Y4419D01* Y4381D01* X2035D02* Y4419D01* X2042D02* X2035Y4426D01* X2028Y4420D01* X2025Y4421D02* X2031Y4428D01* X2041Y4427D01* X1900Y4464D02* Y4556D01* X1564Y4588D02* Y4932D01* X1568D02* Y4588D01* X1904Y4556D02* Y4464D01* X1908Y4463D02* X1873D01* X1556Y4588D02* Y4932D01* X1560D02* Y4588D01* X1896Y4556D02* Y4464D01* X1884D02* Y4556D01* X1544Y4588D02* Y4932D01* X1540D02* Y4588D01* X1880Y4556D02* Y4464D01* X1875Y4381D02* Y4419D01* X1616Y4588D02* Y4932D01* X1612D02* Y4588D01* X1875Y4421D02* X1881Y4428D01* X1879Y4420D02* X1878Y4419D01* X1636Y4588D02* Y4932D01* X1640D02* Y4588D01* X1887Y4432D02* X1896Y4428D01* X1891Y4427D02* X1881Y4428D01* X1624Y4588D02* Y4932D01* X1620D02* Y4588D01* X1875Y4419D02* Y4421D01* X1872Y4422D02* X1871Y4418D01* X1604Y4588D02* Y4932D01* X1608D02* Y4588D01* X1883Y4435D02* X1892Y4434D01* X1900Y4427D02* X1892Y4434D01* X1648Y4588D02* Y4932D01* X1652D02* Y4588D01* X1908Y4463D02* Y4557D01* X1873D02* X1908D01* X1572Y4588D02* Y4932D01* X1576D02* Y4588D01* X1868Y4423D02* X1874Y4431D01* X1877Y4430D02* X1872Y4422D01* X1592Y4588D02* Y4932D01* X1596D02* Y4588D01* X1877Y4430D02* X1887Y4432D01* X1883Y4435D02* X1874Y4431D01* X1580Y4588D02* Y4932D01* X1584D02* Y4588D01* X1868Y4418D02* Y4423D01* X1886Y4426D02* X1879Y4420D01* X1628Y4588D02* Y4932D01* X1632D02* Y4588D01* X1878Y4419D02* Y4381D01* X1885Y4374D01* X1736Y4588D02* Y4932D01* X1732D02* Y4588D01* X1992Y4557D02* Y4463D01* X1995Y4464D02* Y4556D01* X1740Y4588D02* Y4932D01* X1748D02* Y4588D01* X1999Y4556D02* Y4464D01* X2003D02* Y4556D01* X1756Y4588D02* Y4932D01* X1724D02* Y4588D01* X1892Y4380D02* X1885Y4374D01* X1879Y4373D02* X1889Y4372D01* X1895Y4379D01* X1892Y4380D02* Y4381D01* X1716Y4588D02* Y4932D01* X1712D02* Y4588D01* X1892Y4381D02* Y4419D01* X1886Y4426D01* X1644Y4588D02* Y4932D01* X1552D02* Y4588D01* X1892Y4556D02* Y4464D01* X1888D02* Y4556D01* X1548Y4588D02* Y4932D01* X1536D02* Y4588D01* X1876Y4556D02* Y4464D01* X1873Y4463D02* Y4557D01* X1532Y4588D02* Y4932D01* X1508D02* Y4588D01* X1504Y4587D02* X1772D01* Y4933D01* X1524Y4932D02* Y4588D01* X1528D02* Y4932D01* X1850Y4937D02* X1500D01* Y4543D01* X1512Y4588D02* Y4932D01* X1520D02* Y4588D01* X1441Y4465D02* Y4543D01* X1500D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* Y5379D01* X3296Y5370D01* X3358D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4185Y5370D02* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4212Y5415D02* X4221Y5406D01* X4256D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D02* X4212Y5397D01* Y5379D01* X4194D02* X4185Y5370D01* X4212Y5379D02* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4407Y5432D02* X4398Y5441D01* X4354D01* Y5370D01* X4398D01* X4407Y5397D02* X4398Y5406D01* X4407Y5415D01* Y5432D01* X4425Y5441D02* Y5370D01* X4478D01* X4496Y5441D02* Y5379D01* X4505Y5370D01* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4603Y5406D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5415D01* Y5432D01* X4647Y5441D01* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5370D02* X5225Y5379D01* X5234Y5388D01* X5243Y5379D01* X5234Y5370D01* X5287D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5379D02* Y5432D01* X5800Y5441D01* X5836D01* X5845Y5432D01* X5862Y5406D02* X5871Y5415D01* X5898D02* X5871D01* X5862Y5406D02* Y5379D01* X5791D02* X5800Y5370D01* X5836D01* X5845Y5379D01* X5862D02* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5934Y5370D02* Y5415D01* Y5406D02* X5942Y5415D01* X5951D01* X5960Y5406D01* X5969Y5415D01* X5960Y5406D02* Y5370D01* X5969Y5415D02* X5978D01* X5987Y5406D01* Y5370D01* X6005D02* X6040D01* X6049Y5379D01* X6005Y5343D02* Y5415D01* X6040D01* X6049Y5406D01* Y5379D01* X6085Y5370D02* X6076Y5379D01* Y5406D01* X6085Y5415D01* X6111D01* X6120Y5406D01* Y5379D01* X6111Y5370D01* X6085D01* X6147D02* Y5415D01* Y5406D02* X6156Y5415D01* X6182D01* X6191Y5406D01* Y5370D01* X6218Y5388D02* X6254D01* X6262Y5397D01* Y5406D01* X6254Y5415D01* X6227D01* X6218Y5406D01* Y5379D01* X6227Y5370D01* X6262D01* X6289D02* Y5415D01* Y5406D02* X6298Y5415D01* X6325D01* X6334Y5406D01* Y5370D01* X6405Y5379D02* X6396Y5370D01* X6387D01* X6378Y5379D01* Y5441D01* X6360Y5415D02* X6396D01* X6502Y5370D02* Y5441D01* X6547D01* X6556Y5432D01* Y5415D01* X6547Y5406D01* X6502D01* X6529D02* X6556Y5370D01* X6574Y5379D02* X6582Y5370D01* X6574Y5388D02* X6609D01* X6618Y5397D01* Y5406D01* X6609Y5415D01* X6582D01* X6574Y5406D01* Y5379D01* X6582Y5370D02* X6618D01* X6645Y5379D02* X6654Y5370D01* X6680D01* X6689Y5379D01* Y5388D01* X6680Y5397D01* X6654D01* X6645Y5406D01* X6654Y5415D01* X6680D01* X6689Y5406D01* X6734Y5423D02* X6742D01* Y5432D01* X6734D01* Y5423D01* Y5415D02* X6742D01* Y5370D01* X6751D02* X6734D01* X6787Y5379D02* X6796Y5370D01* X6822D01* X6831Y5379D01* Y5388D01* X6822Y5397D01* X6796D01* X6787Y5406D01* X6796Y5415D01* X6822D01* X6831Y5406D01* X6894Y5415D02* X6858D01* X6876Y5441D02* Y5379D01* X6885Y5370D01* X6894D01* X6902Y5379D01* X7161Y4901D02* Y4816D01* X6950Y4797D02* X6720D01* Y4793D02* X6950D01* X7125Y4816D02* Y4901D01* X7129D02* Y4816D01* X6950Y4773D02* X6720D01* Y4777D02* X6950D01* X7117Y4816D02* Y4901D01* X7121D02* Y4816D01* X6950Y4761D02* X6720D01* Y4765D02* X6950D01* X7157Y4816D02* Y4901D01* X7153D02* Y4816D01* X6950Y4781D02* X6720D01* Y4785D02* X6950D01* X7105Y4816D02* Y4901D01* X6720Y4789D02* X6950D01* X7141Y4816D02* Y4901D01* X7145D02* Y4816D01* X6950Y4749D02* X6720D01* Y4753D02* X6950D01* X7098Y4815D02* Y4902D01* X7101Y4901D02* Y4816D01* X6950Y4817D02* X6720D01* Y4821D02* X6950D01* X7137Y4816D02* Y4901D01* X7133D02* Y4816D01* X6950Y4757D02* X6720D01* X6950Y4769D02* X6720D01* X6719Y4742D02* X6951D01* Y4825D01* X6950Y4801D02* X6720D01* Y4805D02* X6950D01* X7098Y4902D02* X7185D01* X7149Y4901D02* Y4816D01* X6950Y4813D02* X6720D01* Y4809D02* X6950D01* X7113Y4816D02* Y4901D01* X7109D02* Y4816D01* X6950Y4745D02* X6720D01* X6719Y4742D02* Y4825D01* X6951D01* X7165Y4816D02* Y4901D01* X7185Y4902D02* Y4815D01* X7098D01* X7169Y4816D02* Y4901D01* X7173Y4816D02* Y4901D01* X7177D02* Y4816D01* X7181Y4901D02* Y4816D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4737D02* X8524Y4937D01* X8324Y5137D01* X8124Y4937D01* X8324Y4737D01* Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* Y5887D02* Y5037D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X8324Y1100D02* X8224Y1000D01* X8324Y900D01* X8424Y1000D01* X8324Y1100D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* X6857Y3417D02* X6850Y3424D01* X6840Y3425D01* X6831Y3421D01* X6826Y3413D01* X6829Y3412D02* X6835Y3420D01* X6844Y3422D01* X6853Y3417D01* X6856Y3408D01* X6843Y3409D02* Y3386D01* X6849D02* Y3409D01* X6843Y3416D01* X6836Y3410D01* X6832Y3408D02* Y3411D01* X6839Y3418D01* X6848Y3417D01* X6853Y3408D01* Y3387D01* X6856Y3384D02* Y3387D01* Y3408D01* X6857Y3417D02* X6860Y3408D01* Y3388D01* X6854Y3374D02* X6859Y3383D01* X6860Y3388D01* X6856Y3384D02* X6850Y3376D01* X6841Y3373D01* X6832Y3378D01* X6829Y3387D01* Y3408D01* Y3412D02* Y3408D01* X6825D02* X6826Y3413D01* X6825Y3408D02* Y3388D01* X6828Y3378D01* X6835Y3372D01* X6845Y3370D01* X6854Y3374D01* X6842Y3380D02* X6849Y3385D01* Y3386D01* X6853Y3387D02* Y3385D01* X6846Y3377D01* X6837Y3378D01* X6832Y3387D01* Y3408D01* X6836Y3410D02* Y3409D01* Y3386D01* X6842Y3380D02* X6836Y3386D01* X6720Y3250D02* X6950D01* X6951Y3274D02* Y3191D01* X6719D01* X6720Y3218D02* X6950D01* Y3222D02* X6720D01* X6763Y3380D02* X6757Y3386D01* Y3409D01* X6764Y3416D02* X6757Y3410D01* Y3409D02* Y3410D01* X6753Y3408D02* Y3387D01* X6758Y3378D01* X6720Y3226D02* X6950D01* Y3230D02* X6720D01* X6770Y3386D02* Y3409D01* X6764Y3416D02* X6770Y3409D01* X6764D02* Y3386D01* X6770Y3385D02* Y3386D01* X6720Y3262D02* X6950D01* Y3266D02* X6720D01* X6757Y3372D02* X6749Y3378D01* X6753D02* X6762Y3373D01* X6720Y3234D02* X6950D01* Y3238D02* X6720D01* X6777Y3384D02* X6771Y3376D01* X6775Y3374D02* X6781Y3383D01* X6720Y3198D02* X6950D01* Y3202D02* X6720D01* X6766Y3370D02* X6757Y3372D01* X6758Y3378D02* X6768Y3377D01* X6720Y3242D02* X6950D01* Y3246D02* X6720D01* X6774Y3387D02* Y3408D01* X6778D02* X6774Y3417D01* Y3408D02* X6770Y3417D01* X6760Y3418D01* X6754Y3411D01* X6753Y3408D02* X6754Y3411D01* X6750Y3408D02* Y3387D01* X6753Y3378D01* X6720Y3194D02* X6950D01* Y3214D02* X6720D01* X6774Y3387D02* Y3385D01* X6778Y3387D02* X6777Y3384D01* X6778Y3387D02* Y3408D01* Y3417D02* X6781Y3408D01* Y3388D01* Y3383D02* Y3388D01* X6747Y3413D02* X6752Y3421D01* X6761Y3425D01* X6771Y3424D01* X6778Y3417D01* X6774D02* X6766Y3422D01* X6756Y3420D01* X6750Y3412D01* Y3408D01* X6746D02* X6747Y3413D01* X6746Y3408D02* Y3388D01* X6749Y3378D01* X6720Y3258D02* X6950D01* Y3254D02* X6720D01* X6775Y3374D02* X6766Y3370D01* X6762Y3373D02* X6771Y3376D01* X6720Y3210D02* X6950D01* Y3206D02* X6720D01* X6774Y3385D02* X6768Y3377D01* X6763Y3380D02* X6770Y3385D01* X6720Y3270D02* X6950D01* X6951Y3274D02* X6719D01* Y3191D01* X6720Y2829D02* X6950D01* X6720Y2825D02* X6950D01* Y2817D02* X6720D01* X6950Y2821D02* X6720D01* Y2797D02* X6950D01* X6720Y2793D02* X6950D01* Y2789D02* X6720D01* X6950Y2785D02* X6720D01* X6950Y2781D02* X6720D01* Y2769D02* X6950D01* X6720Y2765D02* X6950D01* X6720Y2761D02* X6950D01* Y2753D02* X6720D01* X6950Y2757D02* X6720D01* X6719Y2750D02* Y2833D01* X6951D01* X6950Y2801D02* X6720D01* X6950Y2805D02* X6720D01* Y2813D02* X6950D01* X6720Y2809D02* X6950D01* X6951Y2833D02* Y2750D01* X6719D01* X6720Y2777D02* X6950D01* X6720Y2773D02* X6950D01* X7004Y2488D02* X7083D01* Y2409D01* X5917Y1244D02* X5839D01* Y1323D01* X5680Y1365D02* Y1281D01* X5684Y1365D02* Y1281D01* X5688Y1365D02* Y1281D01* X5676D02* Y1365D01* X5672Y1281D02* Y1365D01* X5668Y1281D02* Y1365D01* X5660D02* Y1281D01* X5664Y1365D02* Y1281D01* X5636D02* Y1365D01* X5632Y1281D02* Y1365D01* X5626Y1366D02* Y1280D01* X5692D02* Y1366D01* X5628Y1365D02* Y1281D01* X5692Y1280D02* X5626D01* X5548Y1281D02* Y1365D01* X5540D02* Y1281D01* X5544Y1365D02* Y1281D01* X5572D02* Y1365D01* X5568Y1281D02* Y1365D01* X5560D02* Y1281D01* X5564Y1365D02* Y1281D01* X5556D02* Y1365D01* X5552Y1281D02* Y1365D01* X5626Y1366D02* X5692D01* X5652Y1365D02* Y1281D01* X5656Y1365D02* Y1281D01* X5648D02* Y1365D01* X5644Y1281D02* Y1365D01* X5640Y1281D02* Y1365D01* X5592Y1366D02* X5526D01* X5452Y1365D02* Y1281D01* X5464D02* Y1365D01* X5460Y1281D02* Y1365D01* X5456Y1281D02* Y1365D01* X5448D02* Y1281D01* X5526Y1280D02* X5592D01* X5588Y1281D02* Y1365D01* X5584Y1281D02* Y1365D01* X5580Y1281D02* Y1365D01* X5576Y1281D02* Y1365D01* X5536Y1281D02* Y1365D01* X5532Y1281D02* Y1365D01* X5526Y1366D02* Y1280D01* X5592D02* Y1366D01* X5528Y1365D02* Y1281D01* X5444D02* Y1365D01* X5440Y1281D02* Y1365D01* X5436D02* Y1281D01* X5432Y1365D02* Y1281D01* X5492Y1280D02* Y1366D01* X5426D01* X5428Y1365D02* Y1281D01* X5426Y1366D02* Y1280D01* X5492D01* X5488Y1281D02* Y1365D01* X5484Y1281D02* Y1365D01* X5476D02* Y1281D01* X5480Y1365D02* Y1281D01* X5472D02* Y1365D01* X5468Y1281D02* Y1365D01* X5198Y2059D02* Y1888D01* X5202Y2059D02* Y1888D01* X5194D02* Y2059D01* X5190Y1888D02* Y2059D01* X5186Y1888D02* Y2059D01* X5178D02* Y1888D01* X5182Y2059D02* Y1888D01* X5174D02* Y2059D01* X5170Y1888D02* Y2059D01* X5142D02* Y1888D01* X5146Y2059D02* Y1888D01* X5138D02* Y2059D01* X5134Y1888D02* Y2059D01* X5106D02* Y1888D01* X5110Y2059D02* Y1888D01* X5102D02* Y2059D01* X5098Y1888D02* Y2059D01* X5094Y1888D02* Y2059D01* X5077Y2060D02* Y1887D01* X5246D01* X5242Y1888D02* Y2059D01* X5238Y1888D02* Y2059D01* X5234Y1888D02* Y2059D01* X5226D02* Y1888D01* X5230Y2059D02* Y1888D01* X5222D02* Y2059D01* X5218Y1888D02* Y2059D01* X5214Y1888D02* Y2059D01* X5206D02* Y1888D01* X5210Y2059D02* Y1888D01* X5166D02* Y2059D01* X5162Y1888D02* Y2059D01* X5158Y1888D02* Y2059D01* X5150D02* Y1888D01* X5154Y2059D02* Y1888D01* X5130D02* Y2059D01* X5126Y1888D02* Y2059D01* X5122Y1888D02* Y2059D01* X5114D02* Y1888D01* X5118Y2059D02* Y1888D01* X5090D02* Y2059D01* X5086Y1888D02* Y2059D01* X5082D02* Y1888D01* X5246Y1887D02* Y2060D01* X5077D01* X5078Y2059D02* Y1888D01* X4841Y2123D02* Y2207D01* X4905Y2208D02* Y2122D01* X4839D02* Y2208D01* X4845Y2207D02* Y2123D01* X4849Y2207D02* Y2123D01* X4893D02* Y2207D01* X4889Y2123D02* Y2207D01* X4881D02* Y2123D01* X4885Y2207D02* Y2123D01* X4877D02* Y2207D01* X4873Y2123D02* Y2207D01* X4869Y2123D02* Y2207D01* X4861D02* Y2123D01* X4865Y2207D02* Y2123D01* X4857D02* Y2207D01* X4853Y2123D02* Y2207D01* X4805Y2208D02* X4739D01* X4657Y2207D02* Y2123D01* X4653D02* Y2207D01* X4649Y2123D02* Y2207D01* X4641D02* Y2123D01* X4639Y2122D02* X4705D01* Y2208D01* X4645Y2207D02* Y2123D01* X4639Y2122D02* Y2208D01* X4705D01* X4697Y2207D02* Y2123D01* X4701Y2207D02* Y2123D01* X4693D02* Y2207D01* X4689Y2123D02* Y2207D01* X4685Y2123D02* Y2207D01* X4677D02* Y2123D01* X4681Y2207D02* Y2123D01* X4673D02* Y2207D01* X4669Y2123D02* Y2207D01* X4665D02* Y2123D01* X4661Y2207D02* Y2123D01* X4739Y2122D02* X4805D01* X4801Y2123D02* Y2207D01* X4797Y2123D02* Y2207D01* X4789D02* Y2123D01* X4793Y2207D02* Y2123D01* X4785D02* Y2207D01* X4781Y2123D02* Y2207D01* X4777Y2123D02* Y2207D01* X4753D02* Y2123D01* X4757Y2207D02* Y2123D01* X4761D02* Y2207D01* X4839Y2208D02* X4905D01* X4897Y2207D02* Y2123D01* X4901Y2207D02* Y2123D01* X4905Y2122D02* X4839D01* X4765Y2123D02* Y2207D01* X4769D02* Y2123D01* X4773Y2207D02* Y2123D01* X4749D02* Y2207D01* X4745Y2123D02* Y2207D01* X4739Y2208D02* Y2122D01* X4805D02* Y2208D01* X4741Y2207D02* Y2123D01* X4058Y2321D02* X4051Y2327D01* X4041Y2329D01* X4032Y2325D01* X4027Y2316D01* X4030Y2315D02* X4036Y2323D01* X4045Y2326D01* X4054Y2321D01* X4057Y2312D01* X4054D02* Y2271D01* X4057Y2267D02* Y2271D01* Y2312D01* X4058Y2321D02* X4061Y2311D01* Y2271D01* X4055Y2258D02* X4060Y2266D01* X4061Y2271D01* X4055Y2258D02* X4046Y2254D01* X4036Y2255D01* X4029Y2262D01* X4026Y2271D01* Y2311D01* X4027Y2316D02* X4026Y2311D01* X4029Y2312D02* X4030Y2315D01* X4029Y2312D02* Y2271D01* X4033Y2262D01* X4041Y2257D01* X4051Y2259D01* X4057Y2267D01* X4054Y2271D02* X4053Y2268D01* X4047Y2261D01* X4037Y2262D01* X4033Y2271D01* Y2312D01* Y2314D02* Y2312D01* Y2314D02* X4040Y2322D01* X4049Y2321D01* X4037Y2313D02* Y2314D01* Y2313D02* Y2270D01* X4043Y2263D01* X4050Y2269D01* Y2270D01* Y2313D01* X4049Y2321D02* X4054Y2312D01* X4050Y2313D02* X4044Y2319D01* X4037Y2314D01* X4043Y2313D02* Y2270D01* X4165Y2207D02* Y2123D01* X4219Y2122D02* X4285D01* X4281Y2123D02* Y2207D01* X4277Y2123D02* Y2207D01* X4273Y2123D02* Y2207D01* X4265D02* Y2123D01* X4269Y2207D02* Y2123D01* X4261D02* Y2207D01* X4257Y2123D02* Y2207D01* X4245D02* Y2123D01* X4249Y2207D02* Y2123D01* X4253Y2207D02* Y2123D01* X4241D02* Y2207D01* X4319Y2208D02* X4385D01* X4373Y2207D02* Y2123D01* X4377Y2207D02* Y2123D01* X4381Y2207D02* Y2123D01* X4385Y2122D02* X4319D01* X4237Y2123D02* Y2207D01* X4229D02* Y2123D01* X4233Y2207D02* Y2123D01* X4225D02* Y2207D01* X4221Y2123D02* Y2207D01* X4285Y2208D02* Y2122D01* X4219D02* Y2208D01* X4365Y2207D02* Y2123D01* X4369Y2207D02* Y2123D01* X4361D02* Y2207D01* X4357Y2123D02* Y2207D01* X4349D02* Y2123D01* X4353Y2207D02* Y2123D01* X4345D02* Y2207D01* X4341Y2123D02* Y2207D01* X4337Y2123D02* Y2207D01* X4329D02* Y2123D01* X4333Y2207D02* Y2123D01* X4325D02* Y2207D01* X4321Y2123D02* Y2207D01* X4385Y2208D02* Y2122D01* X4319D02* Y2208D01* X4285D02* X4219D01* X4169Y2207D02* Y2123D01* X4173D02* Y2207D01* X4186Y2266D02* X4187Y2271D01* Y2311D01* X4171Y2326D02* X4180Y2321D01* X4183Y2312D01* X4187Y2311D02* X4184Y2321D01* X4177Y2327D01* X4183Y2312D02* Y2271D01* Y2267D01* X4177Y2207D02* Y2123D01* X4137D02* Y2207D01* X4172Y2254D02* X4181Y2258D01* X4177Y2259D02* X4167Y2257D01* X4141Y2207D02* Y2123D01* X4153D02* Y2207D01* X4177Y2259D02* X4183Y2267D01* X4186Y2266D02* X4181Y2258D01* X4157Y2207D02* Y2123D01* X4161D02* Y2207D01* X4173Y2261D02* X4179Y2268D01* X4180Y2271D02* X4179Y2268D01* X4180Y2271D02* Y2312D01* X4175Y2321D01* X4166Y2322D01* X4159Y2314D01* Y2312D02* Y2314D01* X4155Y2312D02* Y2271D01* X4159Y2262D02* X4155Y2271D01* Y2262D02* X4152Y2271D01* Y2311D01* X4156Y2315D02* X4155Y2312D01* X4156Y2315D02* X4162Y2323D01* X4171Y2326D01* X4177Y2327D02* X4167Y2329D01* X4158Y2325D01* X4153Y2316D01* X4152Y2311D01* X4176Y2270D02* Y2269D01* Y2270D02* Y2313D01* X4170Y2319D01* X4163Y2314D01* Y2313D02* Y2314D01* X4159Y2312D02* Y2271D01* X4163Y2262D01* X4169Y2263D02* X4176Y2269D01* X4162Y2255D02* X4155Y2262D01* X4133Y2207D02* Y2123D01* X4129D02* Y2207D01* X4162Y2255D02* X4172Y2254D01* X4167Y2257D02* X4159Y2262D01* X4145Y2207D02* Y2123D01* X4149D02* Y2207D01* X4163Y2262D02* X4173Y2261D01* X4169Y2263D02* X4163Y2270D01* X4169D02* Y2313D01* X4163D02* Y2270D01* X4181Y2207D02* Y2123D01* X4185Y2122D02* X4119D01* Y2208D01* X4125Y2207D02* Y2123D01* X4185Y2122D02* Y2208D01* X4119D01* X4121Y2207D02* Y2123D01* X3968Y1721D02* Y1642D01* X3889D01* X2213Y2017D02* X2222Y2022D01* X2232Y2020D01* X2239Y2014D01* X2242Y2004D01* X2238Y2005D02* X2235Y2014D01* X2226Y2018D01* X2217Y2016D01* X2211Y2008D01* X2224Y2005D02* Y1963D01* X2231Y1962D02* X2224Y1956D01* X2218Y1963D01* Y2005D01* X2213Y2017D02* X2208Y2009D01* X2207Y2004D01* X2211Y2005D02* Y2008D01* X2207Y2004D02* Y1964D01* X2210Y1955D01* X2217Y1948D01* X2227Y1947D01* X2236Y1951D01* X2228Y1954D02* X2219Y1955D01* X2214Y1963D01* Y2005D01* X2218Y2006D02* Y2005D01* Y2006D02* X2225Y2012D01* X2231Y2005D01* Y1963D01* Y1962D02* Y1963D01* X2235D02* X2234Y1961D01* X2228Y1954D01* X2242Y1964D02* Y2004D01* X2238Y2005D02* Y1964D01* X2236Y1951D02* X2241Y1959D01* X2242Y1964D01* X2238D02* Y1960D01* X2235Y1963D02* Y2005D01* X2230Y2014D01* X2221Y2015D01* X2214Y2007D01* Y2005D02* Y2007D01* X2211Y2005D02* Y1964D01* X2214Y1955D01* X2223Y1950D01* X2232Y1952D01* X2238Y1960D01* X2559Y1888D02* Y2059D01* X2555Y1888D02* Y2059D01* X2563D02* Y1888D01* X2567Y2059D02* Y1888D01* X2571Y2059D02* Y1888D01* X2595D02* Y2059D01* X2591Y1888D02* Y2059D01* X2599D02* Y1888D01* X2603Y2059D02* Y1888D01* X2607Y2059D02* Y1888D01* X2611Y2059D02* Y1888D01* X2615Y2059D02* Y1888D01* X2623D02* Y2059D01* X2619Y1888D02* Y2059D01* X2627D02* Y1888D01* X2631Y2059D02* Y1888D01* X2635Y2059D02* Y1888D01* X2643D02* Y2059D01* X2639Y1888D02* Y2059D01* X2647D02* Y1888D01* X2651Y2059D02* Y1888D01* X2659D02* Y2059D01* X2655Y1888D02* Y2059D01* X2663D02* Y1888D01* X2667Y2059D02* Y1888D01* X2671Y2059D02* Y1888D01* X2679D02* Y2059D01* X2675Y1888D02* Y2059D01* X2683Y2060D02* X2514D01* Y1887D01* X2531Y1888D02* Y2059D01* X2527Y1888D02* Y2059D01* X2368Y2004D02* Y1964D01* X2354Y1954D02* X2360Y1961D01* X2361Y1963D01* X2357D02* Y1962D01* X2350Y1956D01* X2354Y1954D02* X2345Y1955D01* X2340Y1963D01* Y2005D01* X2344Y2006D02* Y2005D01* Y1963D01* X2350Y1956D02* X2344Y1963D01* X2364Y2005D02* X2361Y2014D01* X2352Y2018D01* X2343Y2016D01* X2337Y2008D01* Y2005D02* Y2008D01* X2333Y2004D02* Y1964D01* X2336Y1955D01* X2343Y1948D01* X2353Y1947D01* X2362Y1951D01* X2368Y1964D02* X2367Y1959D01* X2362Y1951D01* X2364Y1964D02* Y2005D01* X2361D02* Y1963D01* X2364Y1960D02* Y1964D01* Y1960D02* X2358Y1952D01* X2349Y1950D01* X2340Y1955D01* X2337Y1964D01* Y2005D01* X2340Y2007D02* Y2005D01* Y2007D02* X2347Y2015D01* X2356Y2014D01* X2350Y2005D02* Y1963D01* X2357D02* Y2005D01* X2356Y2014D02* X2361Y2005D01* X2357D02* X2351Y2012D01* X2344Y2006D01* X2333Y2004D02* X2334Y2009D01* X2339Y2017D01* X2348Y2022D01* X2358Y2020D01* X2365Y2014D01* X2368Y2004D01* X2519Y2059D02* Y1888D01* X2523D02* Y2059D01* X2683Y2060D02* Y1887D01* X2514D01* X2515Y1888D02* Y2059D01* X2535D02* Y1888D01* X2539Y2059D02* Y1888D01* X2543Y2059D02* Y1888D01* X2551D02* Y2059D01* X2547Y1888D02* Y2059D01* X2575D02* Y1888D01* X2579Y2059D02* Y1888D01* X2587D02* Y2059D01* X2583Y1888D02* Y2059D01* X2885Y2956D02* X2877Y2963D01* X2868Y2964D01* X2859Y2960D01* X2853Y2952D01* X2857Y2951D02* X2862Y2959D01* X2872Y2961D01* X2881Y2957D01* X2884Y2947D01* X2870Y2948D02* Y2926D01* X2877D02* Y2948D01* X2871Y2955D01* X2863Y2949D01* X2860Y2948D02* Y2950D01* X2866Y2957D01* X2876Y2956D01* X2880Y2948D01* Y2926D01* X2883Y2923D02* X2884Y2927D01* Y2947D01* X2885Y2956D02* X2888Y2947D01* Y2927D01* X2882Y2914D02* X2887Y2922D01* X2888Y2927D01* X2883Y2923D02* X2878Y2915D01* X2868Y2913D01* X2860Y2917D01* X2856Y2927D01* Y2947D01* X2857Y2951D02* X2856Y2947D01* X2853D02* Y2952D01* Y2947D02* Y2927D01* X2855Y2918D01* X2863Y2911D01* X2873Y2910D01* X2882Y2914D01* X2870Y2919D02* X2877Y2925D01* Y2926D01* X2880D02* Y2924D01* X2874Y2917D01* X2864Y2918D01* X2860Y2926D01* Y2948D01* X2863Y2949D02* Y2948D01* Y2926D01* X2870Y2919D02* X2863Y2926D01* X2809Y2927D02* X2808Y2922D01* X2803Y2914D01* X2809Y2927D02* Y2947D01* X2806Y2956D01* X2805Y2947D02* Y2927D01* Y2923D01* X2802Y2926D02* Y2948D01* Y2957D02* X2805Y2947D01* X2802Y2948D02* X2797Y2956D01* X2798Y2948D02* Y2926D01* Y2925D02* Y2926D01* Y2925D02* X2791Y2919D01* X2785Y2926D01* Y2948D01* X2792Y2955D02* X2785Y2949D01* X2789Y2964D02* X2799Y2963D01* X2806Y2956D01* X2802Y2957D02* X2793Y2961D01* X2784Y2959D01* X2778Y2951D01* X2777Y2947D01* X2785Y2948D02* Y2949D01* X2781Y2948D02* Y2926D01* X2786Y2918D01* X2795Y2917D01* X2801Y2924D01* X2802Y2926D01* X2805Y2923D02* X2799Y2915D01* X2790Y2913D01* X2781Y2917D01* X2777Y2927D01* Y2947D01* X2781Y2950D02* Y2948D01* Y2950D02* X2788Y2957D01* X2797Y2956D01* X2792Y2955D02* X2798Y2948D01* X2791D02* Y2926D01* X2732Y2799D02* Y2878D01* X2811D01* X2803Y2914D02* X2794Y2910D01* X2784Y2911D01* X2777Y2918D01* X2774Y2927D01* Y2947D01* X2775Y2952D02* X2774Y2947D01* X2775Y2952D02* X2780Y2960D01* X2789Y2964D01* X2734Y3047D02* X2813D01* Y3126D01* X1967Y2903D02* X1875D01* X1967Y2899D02* X1875D01* X1967Y2895D02* X1875D01* X1874Y2907D02* X1968D01* Y2872D01* X1967Y2883D02* X1875D01* X1967Y2879D02* X1875D01* Y2875D02* X1967D01* X1968Y2872D02* X1874D01* Y2907D01* X1875Y2891D02* X1967D01* X1875Y2887D02* X1967D01* Y2765D02* X1875D01* X1967Y2769D02* X1875D01* Y2761D02* X1967D01* X1875Y2757D02* X1967D01* X1968Y2754D02* X1874D01* Y2789D01* X1875Y2773D02* X1967D01* X1875Y2777D02* X1967D01* Y2781D02* X1875D01* X1967Y2785D02* X1875D01* X1874Y2789D02* X1968D01* Y2754D01* X1840Y2391D02* Y2483D01* X1837Y2484D02* X1872D01* Y2390D01* X1844Y2391D02* Y2483D01* X1848D02* Y2391D01* X1852Y2483D02* Y2391D01* X1856Y2483D02* Y2391D01* X1860Y2483D02* Y2391D01* X1864Y2483D02* Y2391D01* X1868Y2483D02* Y2391D01* X1872Y2390D02* X1837D01* Y2484D01* X1703Y2455D02* X1699Y2465D01* X1704Y2464D02* X1696Y2471D01* X1686Y2472D01* X1678Y2468D01* X1672Y2460D01* X1679Y2458D02* X1685Y2465D01* X1695Y2464D01* X1699Y2456D01* Y2418D01* X1702Y2415D02* X1703Y2419D01* X1750Y2391D02* Y2483D01* X1719Y2484D02* Y2390D01* X1754D01* X1738Y2391D02* Y2483D01* X1706Y2455D02* Y2419D01* X1700Y2406D02* X1706Y2414D01* Y2419D01* X1742Y2391D02* Y2483D01* X1746D02* Y2391D01* X1703Y2419D02* Y2455D01* X1704Y2464D02* X1706Y2455D01* X1734Y2483D02* Y2391D01* X1722D02* Y2483D01* X1719Y2484D02* X1754D01* Y2390D01* X1726Y2391D02* Y2483D01* X1730D02* Y2391D01* X1702Y2415D02* X1697Y2407D01* X1687Y2405D01* X1693Y2409D02* X1699Y2416D01* Y2418D01* X1700Y2406D02* X1691Y2402D01* X1682Y2403D01* X1674Y2410D01* X1671Y2419D01* Y2455D01* X1672Y2460D02* X1671Y2455D01* X1675D02* X1676Y2459D01* X1681Y2467D01* X1691Y2469D01* X1699Y2465D01* X1689Y2456D02* Y2418D01* X1682D02* Y2456D01* Y2457D01* X1679Y2456D02* Y2418D01* X1683Y2410D01* X1693Y2409D01* X1687Y2405D02* X1679Y2409D01* X1675Y2419D01* Y2455D01* X1679Y2458D02* Y2456D01* X1682Y2457D02* X1690Y2463D01* X1696Y2456D01* Y2418D01* Y2417D02* Y2418D01* Y2417D02* X1688Y2411D01* X1682Y2418D01* X1547Y2471D02* X1537Y2472D01* X1528Y2468D01* X1523Y2460D01* X1522Y2455D01* X1525D02* X1526Y2459D01* X1522Y2455D02* Y2419D01* X1525Y2410D01* X1532Y2403D01* X1542Y2402D01* X1551Y2406D01* X1543Y2409D02* X1534Y2410D01* X1529Y2418D01* Y2456D01* X1533Y2457D02* Y2456D01* Y2418D01* X1539D02* Y2456D01* X1553Y2455D02* X1550Y2465D01* X1541Y2469D01* X1532Y2467D01* X1526Y2459D01* X1529Y2458D02* X1536Y2465D01* X1545Y2464D01* X1550Y2456D01* Y2418D01* X1553Y2415D02* Y2419D01* X1557D02* X1556Y2414D01* X1551Y2406D01* X1553Y2419D02* Y2455D01* X1547Y2471D02* X1554Y2464D01* X1557Y2455D01* Y2419D01* X1543Y2409D02* X1549Y2416D01* X1550Y2418D01* X1553Y2415D02* X1547Y2407D01* X1538Y2405D01* X1529Y2409D01* X1525Y2419D01* Y2455D01* X1529Y2458D02* Y2456D01* X1533Y2457D02* X1540Y2463D01* X1546Y2456D01* Y2418D01* Y2417D02* Y2418D01* Y2417D02* X1539Y2411D01* X1533Y2418D01* X1730Y1987D02* X1727Y1996D01* X1718Y2001D01* X1709Y1998D01* X1703Y1991D01* X1700D02* X1705Y2000D01* X1714Y2004D01* X1724Y2002D01* X1731Y1996D01* X1722D02* X1713Y1997D01* X1707Y1990D01* X1706Y1987D02* X1707Y1990D01* X1706Y1987D02* Y1950D01* X1711Y1941D01* X1720Y1940D01* X1727Y1947D01* Y1950D01* X1723Y1948D02* X1716Y1943D01* X1710Y1949D01* Y1988D01* Y1989D02* Y1988D01* Y1989D02* X1717Y1994D01* X1723Y1988D01* X1717D02* Y1949D01* X1723Y1948D02* Y1949D01* Y1988D01* X1722Y1996D02* X1727Y1987D01* Y1950D01* X1730Y1946D02* Y1950D01* Y1987D01* X1731Y1996D02* X1734Y1987D01* Y1951D01* X1728Y1937D02* X1733Y1946D01* X1734Y1951D01* X1730Y1946D02* X1724Y1939D01* X1715Y1936D01* X1706Y1941D01* X1703Y1950D01* Y1987D01* Y1991D02* Y1987D01* X1699D02* X1700Y1991D01* X1699Y1987D02* Y1951D01* X1702Y1941D01* X1709Y1935D01* X1719Y1933D01* X1728Y1937D01* X1704Y1889D02* X1709Y1897D01* X1718Y1901D01* X1728Y1900D01* X1735Y1893D01* X1731Y1894D02* X1734Y1884D01* X1731Y1885D02* X1726Y1893D01* X1727Y1885D02* Y1863D01* Y1862D02* Y1863D01* X1731D02* Y1861D01* X1724Y1854D01* X1715Y1855D01* X1710Y1863D01* Y1885D01* X1714Y1886D02* Y1885D01* Y1886D02* X1721Y1892D01* X1714Y1885D02* Y1863D01* X1720Y1856D01* X1727Y1862D01* X1720Y1863D02* Y1885D01* X1731Y1894D02* X1722Y1898D01* X1713Y1896D01* X1707Y1888D01* Y1884D01* X1703D02* X1704Y1889D01* X1703Y1884D02* Y1864D01* X1706Y1855D01* X1713Y1848D01* X1723Y1847D01* X1732Y1851D01* X1734Y1860D02* X1728Y1852D01* X1719Y1850D01* X1710Y1854D01* X1707Y1864D01* Y1884D01* X1710Y1887D02* Y1885D01* Y1887D02* X1717Y1894D01* X1726Y1893D01* X1721Y1892D02* X1727Y1885D01* X1731D02* Y1863D01* X1734Y1860D02* Y1864D01* Y1884D01* X1735Y1893D02* X1738Y1884D01* Y1864D01* X1732Y1851D02* X1737Y1859D01* X1738Y1864D01* X1799Y1885D02* Y1863D01* X1806Y1862D02* X1799Y1856D01* X1793Y1863D01* Y1885D01* Y1886D02* Y1885D01* Y1886D02* X1800Y1892D01* X1806Y1885D01* X1813Y1884D02* X1810Y1894D01* X1801Y1898D01* X1792Y1896D01* X1786Y1888D01* X1782Y1889D02* X1788Y1897D01* X1797Y1901D01* X1806Y1900D01* X1814Y1893D01* X1805D02* X1795Y1894D01* X1789Y1887D01* Y1885D02* Y1887D01* Y1885D02* Y1863D01* X1793Y1855D01* X1803Y1854D01* X1809Y1861D01* X1810Y1863D01* X1806D02* Y1862D01* Y1863D02* Y1885D01* X1805Y1893D02* X1810Y1885D01* Y1863D01* X1813Y1860D02* Y1864D01* Y1884D01* X1814Y1893D02* X1817Y1884D01* Y1864D01* X1811Y1851D02* X1816Y1859D01* X1817Y1864D01* X1813Y1860D02* X1807Y1852D01* X1797Y1850D01* X1789Y1854D01* X1785Y1864D01* Y1884D01* X1786Y1888D02* X1785Y1884D01* X1782D02* Y1889D01* Y1884D02* Y1864D01* X1784Y1855D01* X1792Y1848D01* X1802Y1847D01* X1811Y1851D01* X1859Y1949D02* X1866Y1943D01* X1873Y1948D01* Y1949D02* Y1948D01* Y1949D02* Y1988D01* X1867Y1994D01* X1860Y1989D01* X1856Y1987D02* Y1990D01* X1852Y1987D02* Y1950D01* X1856Y1941D01* X1864Y1936D01* X1874Y1939D01* X1880Y1946D01* X1876Y1950D02* Y1947D01* X1870Y1940D01* X1884Y1951D02* Y1987D01* X1881Y1996D01* X1873Y2002D01* X1880Y1987D02* Y1950D01* X1878Y1937D02* X1883Y1946D01* X1884Y1951D01* X1880Y1950D02* Y1946D01* X1876Y1950D02* Y1987D01* X1872Y1996D01* X1862Y1997D01* X1856Y1990D01* X1853Y1991D02* X1858Y1998D01* X1868Y2001D01* X1877Y1996D01* X1880Y1987D01* X1866Y1988D02* Y1949D01* X1859D02* Y1988D01* X1860Y1989D01* X1856Y1987D02* Y1950D01* X1860Y1941D01* X1870Y1940D01* X1878Y1937D02* X1869Y1933D01* X1859Y1935D01* X1851Y1941D01* X1849Y1951D01* Y1987D01* X1853Y1991D02* X1852Y1987D01* X1849D02* Y1991D01* X1855Y2000D01* X1864Y2004D01* X1873Y2002D01* X1922Y1963D02* X1929Y1956D01* X1936Y1962D01* Y1963D02* Y1962D01* Y1963D02* Y2005D01* X1930Y2012D01* X1923Y2006D01* X1919Y2005D02* Y2007D01* X1915Y2005D02* Y1964D01* X1919Y1955D01* X1927Y1950D01* X1937Y1952D01* X1943Y1960D01* X1939Y1963D02* Y1961D01* X1933Y1954D01* X1947Y1964D02* Y2004D01* X1944Y2014D01* X1936Y2020D01* X1943Y2005D02* Y1964D01* X1941Y1951D02* X1946Y1959D01* X1947Y1964D01* X1943D02* Y1960D01* X1939Y1963D02* Y2005D01* X1935Y2014D01* X1925Y2015D01* X1919Y2007D01* X1916Y2008D02* X1921Y2016D01* X1931Y2018D01* X1940Y2014D01* X1943Y2005D01* X1929D02* Y1963D01* X1922D02* Y2005D01* X1923Y2006D01* X1919Y2005D02* Y1963D01* X1923Y1955D01* X1933Y1954D01* X1941Y1951D02* X1932Y1947D01* X1922Y1948D01* X1914Y1955D01* X1912Y1964D01* Y2004D01* X1916Y2008D02* X1915Y2005D01* X1912Y2004D02* Y2009D01* X1918Y2017D01* X1927Y2022D01* X1936Y2020D01* X2073Y1964D02* X2072Y1959D01* X2067Y1951D01* X2073Y1964D02* Y2004D01* X2070Y2014D01* X2069Y2005D02* Y1964D01* X2065Y1963D02* Y1961D01* X2059Y1954D01* X2049Y1955D01* X2045Y1963D01* Y2005D01* X2049Y2006D02* X2048Y2005D01* X2038Y2009D02* X2044Y2017D01* X2053Y2022D01* X2062Y2020D01* X2070Y2014D01* X2066D02* X2069Y2005D01* X2065D02* X2061Y2014D01* X2062Y2005D02* Y1963D01* Y1962D02* Y1963D01* Y1962D02* X2055Y1956D01* X2048Y1963D01* X2055Y2005D02* Y1963D01* X2048D02* Y2005D01* X2049Y2006D02* X2056Y2012D01* X2062Y2005D01* X2065D02* Y1963D01* X2069Y1960D02* Y1964D01* Y1960D02* X2063Y1952D01* X2053Y1950D01* X2045Y1955D01* X2041Y1964D01* Y2005D01* X2045Y2007D02* Y2005D01* Y2007D02* X2051Y2015D01* X2061Y2014D01* X2066D02* X2057Y2018D01* X2047Y2016D01* X2042Y2008D01* X2041Y2005D01* X2038Y2004D02* Y2009D01* Y2004D02* Y1964D01* X2040Y1955D01* X2048Y1948D01* X2058Y1947D01* X2067Y1951D01* X2039Y1714D02* Y1684D01* X2035Y1683D02* X2067D01* Y1715D01* X2043Y1714D02* Y1684D01* X2035Y1683D02* Y1715D01* X2067D01* X2063Y1684D02* Y1714D01* X2059Y1684D02* Y1714D01* X2055Y1684D02* Y1714D01* X2047D02* Y1684D01* X2051Y1714D02* Y1684D01* X1681Y1538D02* Y1454D01* X1624Y1349D02* Y1005D01* X1620D02* Y1349D01* X1677Y1454D02* Y1538D01* X1673D02* Y1454D01* X1616Y1349D02* Y1005D01* X1612D02* Y1349D01* X1669Y1454D02* Y1538D01* X1665D02* Y1454D01* X1608Y1349D02* Y1005D01* X1604D02* Y1349D01* X1661Y1454D02* Y1538D01* X1649D02* Y1454D01* X1588Y1349D02* Y1005D01* X1584D02* Y1349D01* X1645Y1454D02* Y1538D01* X1641D02* Y1454D01* X1580Y1349D02* Y1005D01* X1576D02* Y1349D01* X1637Y1454D02* Y1538D01* X1617D02* Y1454D01* X1552Y1349D02* Y1005D01* X1548D02* Y1349D01* X1613Y1454D02* Y1538D01* X1609D02* Y1454D01* X1544Y1349D02* Y1005D01* X1540D02* Y1349D01* X1605Y1454D02* Y1538D01* X1598Y1453D02* X1685D01* Y1539D01* X1598D01* X1712Y1349D02* Y1005D01* X1752D02* Y1349D01* X1748Y1005D02* Y1349D01* X1740D02* Y1005D01* X1744Y1349D02* Y1005D01* X1736D02* Y1349D01* X1732Y1005D02* Y1349D01* X1441Y1472D02* Y1394D01* X1500D01* X1504Y1350D02* Y1004D01* X1772D01* X1764Y1005D02* Y1349D01* X1760Y1005D02* Y1349D01* X1556D02* Y1005D01* X1607Y894D02* X1580D01* X1571Y886D02* X1580Y894D01* X1524Y1005D02* Y1349D01* X1536D02* Y1005D01* X1571Y886D02* Y859D01* X1544Y868D02* X1536Y877D01* X1509D01* X1720Y1005D02* Y1349D01* X1716D02* Y1005D01* X1536Y850D02* X1509D01* X1500Y859D01* X1509Y877D02* X1500Y886D01* X1509Y894D01* X1516Y1005D02* Y1349D01* X1520D02* Y1005D01* X1544Y886D02* X1536Y894D01* X1509D01* X1536Y850D02* X1544Y859D01* Y868D01* X1708Y1005D02* Y1349D01* X1704D02* Y1005D01* X1829Y850D02* X1793D01* X1784Y859D02* X1793Y850D01* X1692Y1005D02* Y1349D01* X1696D02* Y1005D01* X1820Y868D02* X1784D01* X1651Y850D02* X1642Y859D01* Y868D01* X1652Y1005D02* Y1349D01* X1648D02* Y1005D01* X1772Y1004D02* Y1350D01* X1504D01* X1508Y1349D02* Y1005D01* X1512D02* Y1349D01* X1500Y1394D02* Y1000D01* X1850D01* X1676Y1005D02* Y1349D01* X1680D02* Y1005D01* X1820Y894D02* X1829Y886D01* X1820Y894D02* X1793D01* X1668Y1005D02* Y1349D01* X1664D02* Y1005D01* X1784Y886D02* X1793Y894D01* X1784Y886D02* Y859D01* X1684Y1005D02* Y1349D01* X1688D02* Y1005D01* X1829Y886D02* Y877D01* X1820Y868D02* X1829Y877D01* X1700Y1005D02* Y1349D01* X1672D02* Y1005D01* X1749Y850D02* X1731D01* X1740D02* Y921D01* X1644Y1005D02* Y1349D01* X1640D02* Y1005D01* X1687Y886D02* X1678Y894D01* X1740Y921D02* X1731D01* X1636Y1005D02* Y1349D01* X1632D02* Y1005D01* X1651Y877D02* X1642Y868D01* X1616Y859D02* X1607Y850D01* X1580D01* X1571Y859D01* X1660Y1005D02* Y1349D01* X1656D02* Y1005D01* X1651Y850D02* X1687D01* Y886D01* Y877D02* X1651D01* Y894D02* X1678D01* X1628Y1005D02* Y1349D01* X1596D02* Y1005D01* X1616Y886D02* X1607Y894D01* X1600Y1005D02* Y1349D01* X1657Y1454D02* Y1538D01* X1653D02* Y1454D01* X1592Y1349D02* Y1005D01* X1572D02* Y1349D01* X1633Y1454D02* Y1538D01* X1629D02* Y1454D01* X1568Y1349D02* Y1005D01* X1564D02* Y1349D01* X1625Y1454D02* Y1538D01* X1621D02* Y1454D01* X1560Y1349D02* Y1005D01* X1532D02* Y1349D01* X1601Y1454D02* Y1538D01* X1598Y1539D02* Y1453D01* X1528Y1349D02* Y1005D01* X1936Y894D02* X1980D01* X1724Y1005D02* Y1349D01* X1728D02* Y1005D01* X1980Y877D02* X1936D01* X2069Y850D02* X2122D01* X2158Y859D02* X2167Y868D01* X2176Y859D01* X2167Y850D01* X2158Y859D01* X2096Y921D02* X2078Y903D01* X1756Y1005D02* Y1349D01* X1768D02* Y1005D01* X2096Y921D02* Y850D01* X2220D02* X2211Y859D01* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211D02* X2264Y921D01* X2336D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X5320Y3379D02* X5328Y3374D01* X5319Y3376D02* X5327Y3370D01* X5328Y3374D02* X5332Y3365D01* X5331Y3355D01* X5329Y3361D02* X5325Y3352D01* X5324Y3348D02* X5331Y3355D01* X5329Y3361D02* X5327Y3370D01* X5325Y3366D02* X5318Y3373D01* X5317Y3369D02* X5323Y3362D01* X5325Y3366D02* X5324Y3357D01* X5315Y3349D02* X5325Y3352D01* X5316D02* X5274D01* X5272D01* X5265Y3359D01* X5266Y3368D01* X5274Y3373D01* X5316D01* X5318D02* X5316D01* Y3369D02* X5317D01* X5316D02* X5274D01* X5267Y3363D01* X5273Y3356D01* X5274D01* X5316D01* X5324Y3357D02* X5316Y3352D01* Y3356D02* X5323Y3362D01* X5316D02* X5274D01* X5262Y3351D02* X5258Y3360D01* X5259Y3370D01* X5266Y3377D01* X5275Y3380D01* X5315D01* X5320Y3379D02* X5315Y3380D01* Y3376D02* X5319D01* X5315D02* X5275D01* X5265Y3373D01* X5261Y3364D01* X5263Y3355D01* X5271Y3349D01* X5275D01* X5315D01* X5324Y3348D02* X5315Y3345D01* X5275D01* X5262Y3351D02* X5270Y3346D01* X5275Y3345D01* X5186Y3319D02* X5164D01* Y3326D02* X5186D01* X5187Y3325D02* X5186Y3326D01* X5187Y3325D02* X5193Y3318D01* X5186Y3312D01* X5194Y3313D02* X5195Y3323D01* X5188Y3329D01* X5189Y3332D02* X5197Y3327D01* X5199Y3317D01* X5195Y3308D01* X5194Y3304D02* X5201Y3312D01* X5202Y3321D01* X5198Y3330D01* X5190Y3336D01* X5185D02* X5190D01* X5185D02* X5165D01* Y3333D02* X5185D01* X5189Y3332D02* X5185Y3333D01* X5186Y3329D02* X5188D01* X5186D02* X5164D01* X5156Y3325D01* X5155Y3315D01* X5162Y3309D01* X5164D01* X5186D01* X5195Y3308D02* X5185Y3305D01* X5186Y3309D02* X5194Y3313D01* X5186Y3312D02* X5164D01* X5163D01* X5157Y3319D01* X5164Y3326D01* X5152Y3307D02* X5148Y3316D01* X5149Y3326D01* X5156Y3334D01* X5165Y3336D01* Y3333D02* X5155Y3329D01* X5151Y3321D01* X5153Y3311D01* X5161Y3305D01* X5165D01* X5185D01* X5194Y3304D02* X5185Y3301D01* X5165D01* X5152Y3307D02* X5160Y3302D01* X5165Y3301D01* X5185Y3258D02* X5190Y3257D01* X5185Y3258D02* X5165D01* Y3254D02* X5185D01* X5189D02* X5185D01* X5189D02* X5197Y3248D01* X5199Y3238D01* X5195Y3230D01* X5194Y3225D02* X5201Y3233D01* X5202Y3243D01* X5198Y3252D01* X5190Y3257D01* X5194Y3234D02* X5195Y3244D01* X5188Y3250D01* X5186Y3247D02* X5187D01* X5193Y3240D01* X5186Y3233D01* Y3250D02* X5188D01* X5186D02* X5164D01* X5156Y3246D01* X5155Y3236D01* X5162Y3230D01* X5164D01* X5186D01* X5195D02* X5185Y3226D01* X5186Y3230D02* X5194Y3234D01* X5186Y3233D02* X5164D01* X5163Y3234D01* X5157Y3241D01* X5164Y3247D01* X5186D01* Y3240D02* X5164D01* X5152Y3229D02* X5148Y3238D01* X5149Y3247D01* X5156Y3255D01* X5165Y3258D01* Y3254D02* X5155Y3251D01* X5151Y3242D01* X5153Y3232D01* X5161Y3227D01* X5165Y3226D01* X5185D01* X5194Y3225D02* X5185Y3223D01* X5165D01* X5152Y3229D02* X5160Y3223D01* X5165D01* X5275Y3219D02* X5270Y3220D01* X5262Y3225D01* X5275Y3219D02* X5315D01* X5324Y3222D01* X5315Y3223D02* X5275D01* X5271D01* X5263Y3229D01* X5261Y3238D01* X5265Y3247D01* X5275Y3250D01* X5315D01* X5319D02* X5315D01* Y3254D02* X5320Y3253D01* X5315Y3254D02* X5275D01* X5266Y3251D01* X5259Y3244D01* X5258Y3234D01* X5262Y3225D01* X5274Y3236D02* X5316D01* X5323D02* X5316Y3230D01* Y3226D02* X5324Y3231D01* X5316Y3230D02* X5274D01* X5273D01* X5267Y3237D01* X5274Y3243D01* X5316D01* X5317D02* X5316D01* Y3247D02* X5318D01* X5316D02* X5274D01* X5266Y3242D01* X5265Y3233D01* X5272Y3226D01* X5274D01* X5316D01* X5325D02* X5315Y3223D01* X5324Y3231D02* X5325Y3240D01* X5323Y3236D02* X5317Y3243D01* X5318Y3247D02* X5325Y3240D01* X5327Y3244D02* X5329Y3235D01* X5325Y3226D01* X5324Y3222D02* X5331Y3229D01* X5332Y3239D01* X5328Y3248D01* X5327Y3244D02* X5319Y3250D01* X5328Y3248D02* X5320Y3253D01* X5410Y3223D02* X5405D01* X5397Y3229D01* X5410Y3223D02* X5430D01* X5439Y3225D01* X5430Y3226D02* X5410D01* X5406Y3227D01* X5398Y3232D01* X5396Y3242D01* X5400Y3251D01* X5410Y3254D01* X5430D01* X5434D02* X5430D01* Y3258D02* X5435Y3257D01* X5430Y3258D02* X5410D01* X5401Y3255D01* X5394Y3247D01* X5393Y3238D01* X5397Y3229D01* X5409Y3240D02* X5431D01* X5438D02* X5431Y3233D01* Y3230D02* X5439Y3234D01* X5431Y3233D02* X5409D01* X5408Y3234D01* X5402Y3241D01* X5409Y3247D01* X5431D01* X5432D02* X5431D01* Y3250D02* X5433D01* X5431D02* X5409D01* X5401Y3246D01* X5400Y3236D01* X5407Y3230D01* X5409D01* X5431D01* X5440D02* X5430Y3226D01* X5439Y3234D02* X5440Y3244D01* X5438Y3240D02* X5432Y3247D01* X5433Y3250D02* X5440Y3244D01* X5442Y3248D02* X5444Y3238D01* X5440Y3230D01* X5439Y3225D02* X5446Y3233D01* X5447Y3243D01* X5443Y3252D01* X5442Y3248D02* X5434Y3254D01* X5443Y3252D02* X5435Y3257D01* X5410Y3301D02* X5405Y3302D01* X5397Y3307D01* X5410Y3301D02* X5430D01* X5439Y3304D01* X5430Y3305D02* X5410D01* X5406D01* X5398Y3311D01* X5396Y3321D01* X5400Y3329D01* X5410Y3333D01* X5430D01* X5434Y3332D02* X5430Y3333D01* Y3336D02* X5435D01* X5430D02* X5410D01* X5401Y3334D01* X5394Y3326D01* X5393Y3316D01* X5397Y3307D01* X5409Y3319D02* X5431D01* X5438Y3318D02* X5431Y3312D01* Y3309D02* X5439Y3313D01* X5431Y3312D02* X5409D01* X5408D01* X5402Y3319D01* X5409Y3326D01* X5431D01* X5432Y3325D02* X5431Y3326D01* Y3329D02* X5433D01* X5431D02* X5409D01* X5401Y3325D01* X5400Y3315D01* X5407Y3309D01* X5409D01* X5431D01* X5440Y3308D02* X5430Y3305D01* X5439Y3313D02* X5440Y3323D01* X5438Y3318D02* X5432Y3325D01* X5433Y3329D02* X5440Y3323D01* X5442Y3327D02* X5444Y3317D01* X5440Y3308D01* X5439Y3304D02* X5446Y3312D01* X5447Y3321D01* X5443Y3330D01* X5442Y3327D02* X5434Y3332D01* X5443Y3330D02* X5435Y3336D01* X5490Y3301D02* X5485Y3302D01* X5477Y3307D01* X5490Y3301D02* X5510D01* X5519Y3304D01* X5510Y3305D02* X5490D01* X5486D01* X5478Y3311D01* X5476Y3321D01* X5480Y3329D01* X5490Y3333D01* X5510D01* X5514Y3332D02* X5510Y3333D01* Y3336D02* X5515D01* X5510D02* X5490D01* X5481Y3334D01* X5474Y3326D01* X5473Y3316D01* X5477Y3307D01* X5489Y3319D02* X5511D01* Y3326D02* X5489D01* X5482Y3319D01* X5488Y3312D01* X5489D01* X5511D01* X5519Y3313D02* X5511Y3309D01* X5510Y3305D02* X5520Y3308D01* X5511Y3309D02* X5489D01* X5487D01* X5480Y3315D01* X5481Y3325D01* X5489Y3329D01* X5511D01* X5513D02* X5511D01* Y3312D02* X5518Y3318D01* X5512Y3325D01* X5511Y3326D01* X5513Y3329D02* X5520Y3323D01* X5519Y3313D01* X5520Y3308D02* X5524Y3317D01* X5522Y3327D01* X5514Y3332D01* X5515Y3336D02* X5523Y3330D01* X5527Y3321D01* X5526Y3312D01* X5519Y3304D01* X5511Y3240D02* X5489D01* Y3247D02* X5511D01* X5512D02* X5511D01* X5512D02* X5518Y3240D01* X5511Y3233D01* X5519Y3234D02* X5520Y3244D01* X5513Y3250D01* X5514Y3254D02* X5522Y3248D01* X5524Y3238D01* X5520Y3230D01* X5519Y3225D02* X5526Y3233D01* X5527Y3243D01* X5523Y3252D01* X5515Y3257D01* X5511Y3250D02* X5513D01* X5511D02* X5489D01* X5481Y3246D01* X5480Y3236D01* X5487Y3230D01* X5489D01* X5511D01* X5520D02* X5510Y3226D01* X5511Y3230D02* X5519Y3234D01* X5511Y3233D02* X5489D01* X5488Y3234D01* X5482Y3241D01* X5489Y3247D01* X5477Y3229D02* X5473Y3238D01* X5474Y3247D01* X5481Y3255D01* X5490Y3258D01* X5510D01* X5515Y3257D02* X5510Y3258D01* Y3254D02* X5514D01* X5510D02* X5490D01* X5480Y3251D01* X5476Y3242D01* X5478Y3232D01* X5486Y3227D01* X5490Y3226D01* X5510D01* X5519Y3225D02* X5510Y3223D01* X5490D01* X5477Y3229D02* X5485Y3223D01* X5490D01* X5585Y3253D02* X5591Y3247D01* X5599Y3252D01* Y3253D01* X5602Y3254D02* Y3251D01* X5596Y3244D01* X5610Y3254D02* Y3294D01* X5607Y3304D01* X5606Y3295D02* Y3254D01* X5605Y3250D01* X5599Y3253D02* Y3296D01* X5593Y3302D01* X5585Y3297D01* X5592Y3296D02* Y3253D01* X5585D02* Y3296D01* Y3297D01* X5582Y3295D02* Y3254D01* X5586Y3245D01* X5596Y3244D01* X5603Y3241D02* X5595Y3237D01* X5585Y3239D01* X5577Y3245D01* X5575Y3254D01* Y3294D01* Y3299D02* Y3294D01* X5578Y3295D02* X5579Y3299D01* X5578Y3295D02* Y3254D01* X5582Y3245D01* X5590Y3240D01* X5600Y3243D01* X5605Y3250D01* X5603Y3241D02* X5609Y3250D01* X5610Y3254D02* X5609Y3250D01* X5602Y3254D02* Y3295D01* X5598Y3304D01* X5588Y3305D01* X5582Y3298D01* Y3295D01* X5606D02* X5602Y3304D01* X5594Y3309D01* X5584Y3306D01* X5579Y3299D01* X5575D02* X5581Y3308D01* X5589Y3312D01* X5599Y3310D01* X5607Y3304D01* X5701Y3294D02* Y3299D01* X5707Y3308D01* X5715Y3312D01* X5725Y3310D01* X5733Y3304D01* X5736Y3294D01* Y3254D01* X5722Y3244D02* X5728Y3251D01* Y3254D01* X5736D02* X5735Y3250D01* X5729Y3241D01* X5732Y3254D02* Y3295D01* X5728Y3304D01* X5720Y3309D01* X5710Y3306D01* X5705Y3299D01* X5708Y3298D02* X5714Y3305D01* X5724Y3304D01* X5728Y3295D01* Y3254D01* X5731Y3250D02* X5732Y3254D01* X5731Y3250D02* X5726Y3243D01* X5716Y3240D01* X5711Y3239D02* X5721Y3237D01* X5729Y3241D01* X5722Y3244D02* X5712Y3245D01* X5708Y3254D01* Y3295D01* X5711Y3297D02* Y3296D01* Y3253D01* X5718D02* Y3296D01* X5711Y3297D02* X5719Y3302D01* X5725Y3296D01* Y3253D01* Y3252D02* Y3253D01* Y3252D02* X5717Y3247D01* X5711Y3253D01* X5716Y3240D02* X5708Y3245D01* X5704Y3254D01* Y3295D01* X5708Y3298D02* Y3295D01* X5704D02* X5705Y3299D01* X5701Y3294D02* Y3254D01* X5703Y3245D01* X5711Y3239D01* X5800Y3223D02* X5795D01* X5787Y3229D01* X5800Y3223D02* X5820D01* X5829Y3225D01* X5820Y3226D02* X5800D01* X5796Y3227D01* X5788Y3232D01* X5786Y3242D01* X5790Y3251D01* X5800Y3254D01* X5820D01* X5824D02* X5820D01* Y3258D02* X5825Y3257D01* X5820Y3258D02* X5800D01* X5791Y3255D01* X5784Y3247D01* X5783Y3238D01* X5787Y3229D01* X5799Y3247D02* X5792Y3241D01* X5798Y3234D01* X5799Y3233D02* X5798Y3234D01* X5799Y3233D02* X5821D01* Y3230D02* X5829Y3234D01* X5830Y3244D01* X5823Y3250D01* X5822Y3247D02* X5828Y3240D01* X5821Y3233D01* Y3240D02* X5799D01* Y3247D02* X5821D01* X5822D02* X5821D01* Y3250D02* X5823D01* X5821D02* X5799D01* X5791Y3246D01* X5790Y3236D01* X5797Y3230D01* X5799D01* X5821D01* X5830D02* X5820Y3226D01* X5829Y3225D02* X5836Y3233D01* X5837Y3243D01* X5833Y3252D01* X5825Y3257D01* X5824Y3254D02* X5832Y3248D01* X5834Y3238D01* X5830Y3230D01* X5895Y3223D02* X5890D01* X5882Y3229D01* X5895Y3223D02* X5915D01* X5924Y3225D01* X5915Y3226D02* X5895D01* X5891Y3227D01* X5883Y3232D01* X5881Y3242D01* X5885Y3251D01* X5895Y3254D01* X5915D01* X5919D02* X5915D01* Y3258D02* X5920Y3257D01* X5915Y3258D02* X5895D01* X5886Y3255D01* X5879Y3247D01* X5878Y3238D01* X5882Y3229D01* X5894Y3247D02* X5887Y3241D01* X5893Y3234D01* X5894Y3233D01* X5916D01* X5924Y3234D02* X5916Y3230D01* X5915Y3226D02* X5925Y3230D01* X5916D02* X5894D01* X5892D01* X5885Y3236D01* X5886Y3246D01* X5894Y3250D01* X5916D01* X5918D02* X5916D01* X5920Y3257D02* X5928Y3252D01* X5932Y3243D01* X5931Y3233D01* X5924Y3225D01* X5925Y3230D02* X5929Y3238D01* X5927Y3248D01* X5919Y3254D01* X5918Y3250D02* X5925Y3244D01* X5924Y3234D01* X5916Y3233D02* X5923Y3240D01* X5917Y3247D01* X5916D02* X5917D01* X5916D02* X5894D01* Y3240D02* X5916D01* X5977Y3260D02* X5973Y3269D01* X5974Y3279D01* X5981Y3286D01* X5990Y3289D01* X6030D01* X6035Y3288D02* X6030Y3289D01* Y3285D02* X6034D01* X6030D02* X5990D01* X5980Y3282D01* X5976Y3273D01* X5978Y3264D01* X5986Y3258D01* X5990D01* X6030D01* X6039Y3257D02* X6030Y3254D01* X5990D01* X5977Y3260D02* X5985Y3255D01* X5990Y3254D01* X5989Y3265D02* X5988D01* X5982Y3272D01* X5989Y3278D01* X6031D01* X6032D02* X6031D01* X6032D02* X6038Y3271D01* X6031Y3265D01* X5989D01* Y3271D02* X6031D01* Y3282D02* X6033D01* X6031D02* X5989D01* X5981Y3277D01* X5980Y3268D01* X5987Y3261D01* X5989D01* X6031D01* X6040D02* X6030Y3258D01* X6031Y3261D02* X6039Y3266D01* X6040Y3275D01* X6033Y3282D01* X6034Y3285D02* X6042Y3279D01* X6044Y3270D01* X6040Y3261D01* X6039Y3257D02* X6046Y3264D01* X6047Y3274D01* X6043Y3283D01* X6035Y3288D01* X6040Y3387D02* X6044Y3396D01* X6042Y3405D01* X6034Y3411D01* X6035Y3414D02* X6043Y3409D01* X6047Y3400D01* X6046Y3390D01* X6039Y3383D01* X6030Y3384D02* X6040Y3387D01* X6031D02* X5989D01* X5987D01* X5980Y3394D01* X5981Y3403D01* X5989Y3408D01* X6031D01* X6033D02* X6031D01* X6033D02* X6040Y3401D01* X6039Y3392D01* X6031Y3387D01* Y3391D02* X6038Y3397D01* X6032Y3404D01* X6031D02* X6032D01* X6031D02* X5989D01* X5982Y3398D01* X5988Y3391D01* X5989D01* X6031D01* Y3397D02* X5989D01* X5977Y3386D02* X5973Y3395D01* X5974Y3405D01* X5981Y3412D01* X5990Y3415D01* X6030D01* X6035Y3414D02* X6030Y3415D01* Y3411D02* X6034D01* X6030D02* X5990D01* X5980Y3408D01* X5976Y3399D01* X5978Y3390D01* X5986Y3384D01* X5990D01* X6030D01* X6039Y3383D02* X6030Y3380D01* X5990D01* X5977Y3386D02* X5985Y3381D01* X5990Y3380D01* X5924Y3304D02* X5931Y3312D01* X5932Y3321D01* X5928Y3330D01* X5920Y3336D01* X5919Y3332D02* X5927Y3327D01* X5929Y3317D01* X5925Y3308D01* X5924Y3313D02* X5925Y3323D01* X5918Y3329D01* X5916Y3326D02* X5917Y3325D01* X5923Y3318D01* X5916Y3312D01* Y3329D02* X5918D01* X5916D02* X5894D01* X5886Y3325D01* X5885Y3315D01* X5892Y3309D01* X5894D01* X5916D01* X5925Y3308D02* X5915Y3305D01* X5916Y3309D02* X5924Y3313D01* X5916Y3312D02* X5894D01* X5893D01* X5887Y3319D01* X5894Y3326D01* X5916D01* Y3319D02* X5894D01* X5882Y3307D02* X5878Y3316D01* X5879Y3326D01* X5886Y3334D01* X5895Y3336D01* X5915D01* X5920D02* X5915D01* Y3333D02* X5919Y3332D01* X5915Y3333D02* X5895D01* X5885Y3329D01* X5881Y3321D01* X5883Y3311D01* X5891Y3305D01* X5895D01* X5915D01* X5924Y3304D02* X5915Y3301D01* X5895D01* X5882Y3307D02* X5890Y3302D01* X5895Y3301D01* X5825Y3336D02* X5833Y3330D01* X5837Y3321D01* X5836Y3312D01* X5829Y3304D01* X5830Y3308D02* X5834Y3317D01* X5832Y3327D01* X5824Y3332D01* X5823Y3329D02* X5830Y3323D01* X5829Y3313D01* X5821Y3309D01* X5820Y3305D02* X5830Y3308D01* X5821Y3309D02* X5799D01* X5797D01* X5790Y3315D01* X5791Y3325D01* X5799Y3329D01* X5821D01* X5823D02* X5821D01* Y3326D02* X5822Y3325D01* X5828Y3318D01* X5821Y3312D01* X5799D01* X5798D02* X5799D01* X5798D02* X5792Y3319D01* X5799Y3326D01* X5821D01* Y3319D02* X5799D01* X5787Y3307D02* X5783Y3316D01* X5784Y3326D01* X5791Y3334D01* X5800Y3336D01* X5820D01* X5825D02* X5820D01* Y3333D02* X5824Y3332D01* X5820Y3333D02* X5800D01* X5790Y3329D01* X5786Y3321D01* X5788Y3311D01* X5796Y3305D01* X5800D01* X5820D01* X5829Y3304D02* X5820Y3301D01* X5800D01* X5787Y3307D02* X5795Y3302D01* X5800Y3301D01* X6051Y3491D02* X6042Y3487D01* X6032Y3489D01* X6025Y3495D01* X6022Y3504D01* Y3524D01* X6023Y3529D02* X6022Y3524D01* X6025Y3525D02* X6026Y3529D01* X6032Y3536D01* X6041Y3539D01* X6050Y3534D01* X6045D02* X6036Y3535D01* X6029Y3528D01* Y3525D02* Y3528D01* X6025Y3525D02* Y3504D01* X6029Y3495D01* X6038Y3490D01* X6047Y3493D01* X6053Y3500D01* Y3504D02* Y3525D01* X6054Y3534D02* X6057Y3524D01* Y3504D01* X6051Y3491D02* X6056Y3500D01* X6057Y3504D01* X6039Y3526D02* Y3503D01* X6033D02* Y3526D01* Y3527D01* X6029Y3525D02* Y3504D01* X6034Y3495D01* X6043Y3494D01* X6049Y3501D01* X6050Y3504D01* X6053D02* Y3500D01* X6050Y3504D02* Y3525D01* X6046Y3526D02* X6040Y3532D01* X6033Y3527D01* X6023Y3529D02* X6028Y3538D01* X6037Y3542D01* X6047Y3540D01* X6054Y3534D01* X6050D02* X6053Y3525D01* X6050D02* X6045Y3534D01* X6046Y3526D02* Y3503D01* Y3502D02* Y3503D01* Y3502D02* X6039Y3497D01* X6033Y3503D01* X5954D02* X5960Y3497D01* X5967Y3502D01* Y3503D02* Y3502D01* Y3503D02* Y3526D01* X5966Y3534D02* X5971Y3525D01* X5966Y3534D02* X5957Y3535D01* X5951Y3528D01* X5950Y3525D02* X5951Y3528D01* X5947Y3525D02* Y3504D01* X5950Y3495D01* X5959Y3490D01* X5968Y3493D01* X5974Y3500D01* X5975Y3504D02* X5974Y3500D01* X5971Y3504D02* Y3525D01* X5967Y3526D02* X5961Y3532D01* X5954Y3527D01* X5961Y3526D02* Y3503D01* X5954D02* Y3526D01* Y3527D01* X5950Y3525D02* Y3504D01* X5955Y3495D01* X5964Y3494D01* X5972Y3491D02* X5963Y3487D01* X5953Y3489D01* X5946Y3495D01* X5943Y3504D01* Y3524D01* X5947Y3529D02* Y3525D01* X5943Y3524D02* X5944Y3529D01* X5949Y3538D01* X5958Y3542D01* X5968Y3540D01* X5975Y3534D01* X5978Y3524D01* Y3504D01* X5964Y3494D02* X5971Y3501D01* Y3504D01* X5978D02* X5977Y3500D01* X5972Y3491D01* X5975Y3504D02* Y3525D01* X5971Y3534D01* X5962Y3539D01* X5953Y3536D01* X5947Y3529D01* X6033Y3608D02* X6039Y3602D01* X6046Y3607D01* Y3608D02* Y3607D01* Y3608D02* Y3631D01* X6045Y3639D02* X6050Y3630D01* X6045Y3639D02* X6036Y3640D01* X6029Y3633D01* Y3630D02* Y3633D01* X6025Y3630D02* Y3609D01* X6029Y3600D01* X6038Y3595D01* X6047Y3598D01* X6053Y3605D01* Y3609D02* Y3605D01* X6050Y3609D02* Y3630D01* X6046Y3631D02* X6040Y3637D01* X6033Y3632D01* X6039Y3631D02* Y3608D01* X6033D02* Y3631D01* Y3632D01* X6029Y3630D02* Y3609D01* X6034Y3600D01* X6043Y3599D01* X6051Y3596D02* X6042Y3592D01* X6032Y3594D01* X6025Y3600D01* X6022Y3609D01* Y3629D01* X6026Y3634D02* X6025Y3630D01* X6022Y3629D02* X6023Y3634D01* X6028Y3643D01* X6037Y3647D01* X6047Y3645D01* X6054Y3639D01* X6057Y3629D01* Y3609D01* X6043Y3599D02* X6049Y3606D01* X6050Y3609D01* X6057D02* X6056Y3605D01* X6051Y3596D01* X6053Y3609D02* Y3630D01* X6050Y3639D01* X6041Y3644D01* X6032Y3641D01* X6026Y3634D01* X5978Y3609D02* X5977Y3605D01* X5972Y3596D01* X5978Y3609D02* Y3629D01* X5975Y3639D01* Y3630D02* Y3609D01* X5972Y3596D02* X5963Y3592D01* X5953Y3594D01* X5946Y3600D01* X5943Y3609D01* Y3629D01* X5944Y3634D02* X5943Y3629D01* X5947Y3630D02* Y3634D01* Y3630D02* Y3609D01* X5950Y3600D01* X5959Y3595D01* X5968Y3598D01* X5974Y3605D01* X5975Y3609D02* X5974Y3605D01* X5971Y3609D02* Y3630D01* X5975D02* X5971Y3639D01* X5962Y3644D01* X5953Y3641D01* X5947Y3634D01* X5944D02* X5949Y3643D01* X5958Y3647D01* X5968Y3645D01* X5975Y3639D01* X5966D02* X5957Y3640D01* X5951Y3633D01* X5950Y3630D02* X5951Y3633D01* X5950Y3630D02* Y3609D01* X5955Y3600D01* X5964Y3599D01* X5971Y3606D01* Y3609D01* X5967Y3608D02* Y3607D01* Y3608D02* Y3631D01* X5966Y3639D02* X5971Y3630D01* X5967Y3631D02* X5961Y3637D01* X5954Y3632D01* X5961Y3631D02* Y3608D01* X5967Y3607D02* X5960Y3602D01* X5954Y3608D01* Y3631D01* Y3632D02* Y3631D01* X5910Y3713D02* X5916Y3707D01* X5924Y3712D01* Y3713D02* Y3712D01* Y3713D02* Y3756D01* X5923Y3764D02* X5927Y3755D01* X5923Y3764D02* X5913Y3765D01* X5907Y3758D01* Y3755D02* Y3758D01* X5903Y3755D02* Y3714D01* X5907Y3705D01* X5915Y3700D01* X5925Y3703D01* X5930Y3710D01* X5931Y3714D02* X5930Y3710D01* X5927Y3714D02* Y3755D01* X5924Y3756D02* X5918Y3762D01* X5910Y3757D01* X5917Y3756D02* Y3713D01* X5910D02* Y3756D01* Y3757D01* X5907Y3755D02* Y3714D01* X5911Y3705D01* X5921Y3704D01* X5928Y3701D02* X5920Y3697D01* X5910Y3699D01* X5902Y3705D01* X5900Y3714D01* Y3754D01* X5904Y3759D02* X5903Y3755D01* X5900Y3754D02* Y3759D01* X5906Y3768D01* X5914Y3772D01* X5924Y3770D01* X5932Y3764D01* X5935Y3754D01* Y3714D01* X5921Y3704D02* X5927Y3711D01* Y3714D01* X5935D02* X5934Y3710D01* X5928Y3701D01* X5931Y3714D02* Y3755D01* X5927Y3764D01* X5919Y3769D01* X5909Y3766D01* X5904Y3759D01* X5954Y3843D02* X5960Y3837D01* X5967Y3842D01* Y3843D02* Y3842D01* Y3843D02* Y3866D01* X5966Y3874D02* X5971Y3865D01* X5966Y3874D02* X5957Y3875D01* X5951Y3868D01* X5950Y3865D02* X5951Y3868D01* X5947Y3865D02* Y3844D01* X5950Y3835D01* X5959Y3830D01* X5968Y3833D01* X5974Y3840D01* X5975Y3844D02* X5974Y3840D01* X5971Y3844D02* Y3865D01* X5967Y3866D02* X5961Y3872D01* X5954Y3867D01* X5961Y3866D02* Y3843D01* X5954D02* Y3866D01* Y3867D01* X5950Y3865D02* Y3844D01* X5955Y3835D01* X5964Y3834D01* X5972Y3831D02* X5963Y3827D01* X5953Y3829D01* X5946Y3835D01* X5943Y3844D01* Y3864D01* X5947Y3869D02* Y3865D01* X5943Y3864D02* X5944Y3869D01* X5949Y3878D01* X5958Y3882D01* X5968Y3880D01* X5975Y3874D01* X5978Y3864D01* Y3844D01* X5964Y3834D02* X5971Y3841D01* Y3844D01* X5978D02* X5977Y3840D01* X5972Y3831D01* X5975Y3844D02* Y3865D01* X5971Y3874D01* X5962Y3879D01* X5953Y3876D01* X5947Y3869D01* X5972Y3931D02* X5963Y3927D01* X5953Y3929D01* X5946Y3935D01* X5943Y3944D01* Y3964D01* X5944Y3969D02* X5943Y3964D01* X5947Y3965D02* Y3969D01* Y3965D02* Y3944D01* X5950Y3935D01* X5959Y3930D01* X5968Y3933D01* X5974Y3940D01* X5975Y3944D02* X5974Y3940D01* X5971Y3944D02* Y3965D01* X5966Y3974D01* X5957Y3975D01* X5951Y3968D01* X5950Y3965D01* X5954Y3967D02* X5961Y3972D01* X5967Y3966D01* Y3943D01* Y3942D02* Y3943D01* Y3942D02* X5960Y3937D01* X5954Y3943D01* X5978Y3944D02* X5977Y3940D01* X5972Y3931D01* X5978Y3944D02* Y3964D01* X5975Y3974D01* Y3965D02* Y3944D01* X5971D02* Y3941D01* X5964Y3934D01* X5955Y3935D01* X5950Y3944D01* Y3965D01* X5954Y3967D02* Y3966D01* Y3943D01* X5961D02* Y3966D01* X5975Y3965D02* X5971Y3974D01* X5962Y3979D01* X5953Y3976D01* X5947Y3969D01* X5944D02* X5949Y3978D01* X5958Y3982D01* X5968Y3980D01* X5975Y3974D01* X6026Y3969D02* X6032Y3976D01* X6041Y3979D01* X6050Y3974D01* X6053Y3965D01* Y3944D01* X6051Y3931D02* X6056Y3940D01* X6057Y3944D01* X6050D02* X6049Y3941D01* X6043Y3934D01* X6057Y3944D02* Y3964D01* X6054Y3974D01* X6047Y3980D01* X6037Y3982D01* X6028Y3978D01* X6023Y3969D01* X6022Y3964D01* X6025Y3965D02* X6026Y3969D01* X6022Y3964D02* Y3944D01* X6025Y3935D01* X6032Y3929D01* X6042Y3927D01* X6051Y3931D01* X6043Y3934D02* X6034Y3935D01* X6029Y3944D01* Y3965D01* X6033Y3967D02* Y3966D01* Y3943D01* X6039D02* Y3966D01* X6033Y3967D02* X6040Y3972D01* X6046Y3966D01* X6050Y3965D02* Y3944D01* X6053Y3940D02* Y3944D01* Y3940D02* X6047Y3933D01* X6038Y3930D01* X6029Y3935D01* X6025Y3944D01* Y3965D01* X6029Y3968D02* Y3965D01* Y3968D02* X6036Y3975D01* X6045Y3974D01* X6050Y3965D02* X6045Y3974D01* X6046Y3966D02* Y3943D01* Y3942D02* Y3943D01* Y3942D02* X6039Y3937D01* X6033Y3943D01* X6039Y3866D02* Y3843D01* X6033D02* Y3866D01* Y3867D01* X6029Y3865D02* Y3844D01* X6034Y3835D01* X6043Y3834D01* X6049Y3841D01* X6050Y3844D01* X6053D02* Y3840D01* X6050Y3844D02* Y3865D01* X6046Y3866D02* X6040Y3872D01* X6033Y3867D01* X6023Y3869D02* X6028Y3878D01* X6037Y3882D01* X6047Y3880D01* X6054Y3874D01* X6050D02* X6053Y3865D01* X6050D02* X6045Y3874D01* X6046Y3866D02* Y3843D01* Y3842D02* Y3843D01* Y3842D02* X6039Y3837D01* X6033Y3843D01* X6057Y3844D02* X6056Y3840D01* X6051Y3831D01* X6057Y3844D02* Y3864D01* X6054Y3874D01* X6053Y3865D02* Y3844D01* Y3840D02* X6047Y3833D01* X6038Y3830D01* X6029Y3835D01* X6025Y3844D01* Y3865D01* X6029Y3868D02* Y3865D01* Y3868D02* X6036Y3875D01* X6045Y3874D01* X6050D02* X6041Y3879D01* X6032Y3876D01* X6026Y3869D01* X6025Y3865D01* X6022Y3864D02* X6023Y3869D01* X6022Y3864D02* Y3844D01* X6025Y3835D01* X6032Y3829D01* X6042Y3827D01* X6051Y3831D01* X6026Y3759D02* X6032Y3768D01* X6040Y3772D01* X6050Y3770D01* X6058Y3764D01* X6053D02* X6057Y3755D01* X6053D02* Y3714D01* X6056Y3710D02* X6057Y3714D01* X6056Y3710D02* X6051Y3703D01* X6041Y3700D01* X6033Y3705D01* X6029Y3714D01* Y3755D01* X6033Y3758D02* Y3755D01* Y3758D02* X6039Y3765D01* X6049Y3764D01* X6053Y3755D02* X6049Y3764D01* X6053D02* X6045Y3769D01* X6035Y3766D01* X6030Y3759D01* X6029Y3755D01* X6026Y3754D02* Y3759D01* Y3754D02* Y3714D01* X6028Y3705D01* X6036Y3699D01* X6046Y3697D01* X6054Y3701D01* X6061Y3714D02* X6060Y3710D01* X6054Y3701D01* X6061Y3714D02* Y3754D01* X6058Y3764D01* X6057Y3755D02* Y3714D01* X6053D02* Y3711D01* X6047Y3704D01* X6037Y3705D01* X6033Y3714D01* Y3755D01* X6036Y3757D02* Y3756D01* Y3713D01* X6043D02* Y3756D01* X6036Y3757D02* X6044Y3762D01* X6050Y3756D01* Y3713D01* Y3712D02* Y3713D01* Y3712D02* X6042Y3707D01* X6036Y3713D01* X5605Y4266D02* X5613Y4260D01* X5617Y4251D01* X5616Y4242D01* X5609Y4234D01* X5610Y4238D02* X5614Y4247D01* X5612Y4257D01* X5604Y4262D01* X5603Y4259D02* X5610Y4253D01* X5609Y4243D01* X5601Y4239D01* X5600Y4235D02* X5610Y4238D01* X5601Y4239D02* X5579D01* X5577D01* X5570Y4245D01* X5571Y4255D01* X5579Y4259D01* X5601D01* X5603D02* X5601D01* Y4249D02* X5579D01* X5578Y4242D02* X5572Y4249D01* X5579Y4256D01* X5601D01* X5602Y4255D02* X5601Y4256D01* X5602Y4255D02* X5608Y4248D01* X5601Y4242D01* X5579D01* X5578D02* X5579D01* X5580Y4231D02* X5575Y4232D01* X5567Y4237D01* X5580Y4231D02* X5600D01* X5609Y4234D01* X5600Y4235D02* X5580D01* X5576D01* X5568Y4241D01* X5566Y4251D01* X5570Y4259D01* X5580Y4263D01* X5600D01* X5604Y4262D02* X5600Y4263D01* Y4266D02* X5605D01* X5600D02* X5580D01* X5571Y4264D01* X5564Y4256D01* X5563Y4246D01* X5567Y4237D01* X5605Y4187D02* X5613Y4182D01* X5617Y4173D01* X5616Y4163D01* X5609Y4155D01* X5610Y4160D02* X5614Y4168D01* X5612Y4178D01* X5604Y4184D01* X5603Y4180D02* X5610Y4174D01* X5609Y4164D01* X5601Y4160D01* X5600Y4156D02* X5610Y4160D01* X5601D02* X5579D01* X5577D01* X5570Y4166D01* X5571Y4176D01* X5579Y4180D01* X5601D01* X5603D02* X5601D01* Y4170D02* X5579D01* X5578Y4164D02* X5572Y4171D01* X5579Y4177D01* X5601D01* X5602D02* X5601D01* X5602D02* X5608Y4170D01* X5601Y4163D01* X5579D01* X5578Y4164D02* X5579Y4163D01* X5580Y4153D02* X5575D01* X5567Y4159D01* X5580Y4153D02* X5600D01* X5609Y4155D01* X5600Y4156D02* X5580D01* X5576Y4157D01* X5568Y4162D01* X5566Y4172D01* X5570Y4181D01* X5580Y4184D01* X5600D01* X5604D02* X5600D01* Y4188D02* X5605Y4187D01* X5600Y4188D02* X5580D01* X5571Y4185D01* X5564Y4177D01* X5563Y4168D01* X5567Y4159D01* X5709Y4155D02* X5716Y4163D01* X5717Y4173D01* X5713Y4182D01* X5705Y4187D01* X5704Y4184D02* X5712Y4178D01* X5714Y4168D01* X5710Y4160D01* X5701Y4170D02* X5679D01* Y4163D02* X5701D01* X5708Y4170D01* X5702Y4177D01* X5703Y4180D02* X5710Y4174D01* X5709Y4164D01* X5701Y4160D01* X5700Y4156D02* X5710Y4160D01* X5701D02* X5679D01* X5677D01* X5670Y4166D01* X5671Y4176D01* X5679Y4180D01* X5701D01* X5703D02* X5701D01* Y4177D02* X5702D01* X5701D02* X5679D01* X5672Y4171D01* X5678Y4164D01* X5679Y4163D01* X5680Y4153D02* X5675D01* X5667Y4159D01* X5680Y4153D02* X5700D01* X5709Y4155D01* X5700Y4156D02* X5680D01* X5676Y4157D01* X5668Y4162D01* X5666Y4172D01* X5670Y4181D01* X5680Y4184D01* X5700D01* X5704D02* X5700D01* Y4188D02* X5705Y4187D01* X5700Y4188D02* X5680D01* X5671Y4185D01* X5664Y4177D01* X5663Y4168D01* X5667Y4159D01* X5680Y4231D02* X5675Y4232D01* X5667Y4237D01* X5680Y4231D02* X5700D01* X5709Y4234D01* X5700Y4235D02* X5680D01* X5676D01* X5668Y4241D01* X5666Y4251D01* X5670Y4259D01* X5680Y4263D01* X5700D01* X5704Y4262D02* X5700Y4263D01* Y4266D02* X5705D01* X5700D02* X5680D01* X5671Y4264D01* X5664Y4256D01* X5663Y4246D01* X5667Y4237D01* X5679Y4249D02* X5701D01* Y4242D02* X5679D01* X5678D01* X5672Y4249D01* X5679Y4256D01* X5701D01* X5702Y4255D02* X5701Y4256D01* Y4259D02* X5703D01* X5701D02* X5679D01* X5671Y4255D01* X5670Y4245D01* X5677Y4239D01* X5679D01* X5701D01* X5710Y4238D02* X5700Y4235D01* X5701Y4239D02* X5709Y4243D01* X5710Y4253D01* X5703Y4259D01* X5702Y4255D02* X5708Y4248D01* X5701Y4242D01* X5710Y4238D02* X5714Y4247D01* X5712Y4257D01* X5704Y4262D01* X5705Y4266D02* X5713Y4260D01* X5717Y4251D01* X5716Y4242D01* X5709Y4234D01* X5797Y4241D02* X5793Y4250D01* X5794Y4260D01* X5801Y4267D01* X5810Y4270D01* Y4266D02* X5800Y4263D01* X5796Y4254D01* X5798Y4245D01* X5806Y4239D01* X5810D01* X5850D01* X5859Y4238D02* X5850Y4235D01* X5810D01* X5797Y4241D02* X5805Y4236D01* X5810Y4235D01* X5809Y4246D02* X5808D01* X5802Y4253D01* X5809Y4259D01* X5851D01* X5852D02* X5851D01* X5852D02* X5858Y4252D01* X5851Y4246D01* X5809D01* Y4252D02* X5851D01* X5855Y4269D02* X5863Y4264D01* X5867Y4255D01* X5866Y4245D01* X5859Y4238D01* X5860Y4242D02* X5864Y4251D01* X5862Y4260D01* X5854Y4266D01* X5853Y4263D02* X5860Y4256D01* X5859Y4247D01* X5851Y4242D01* X5850Y4239D02* X5860Y4242D01* X5851D02* X5809D01* X5807D01* X5800Y4249D01* X5801Y4258D01* X5809Y4263D01* X5851D01* X5853D02* X5851D01* X5850Y4266D02* X5854D01* X5850D02* X5810D01* Y4270D02* X5850D01* X5855Y4269D02* X5850Y4270D01* X5810Y4109D02* X5805Y4110D01* X5797Y4115D01* X5810Y4109D02* X5850D01* X5859Y4112D01* X5850Y4113D02* X5810D01* X5806D01* X5798Y4119D01* X5796Y4128D01* X5800Y4137D01* X5810Y4140D01* Y4144D02* X5801Y4141D01* X5794Y4134D01* X5793Y4124D01* X5797Y4115D01* X5809Y4126D02* X5851D01* Y4120D02* X5809D01* X5808D01* X5802Y4127D01* X5809Y4133D01* X5851D01* X5852D02* X5851D01* X5850Y4144D02* X5855Y4143D01* X5850Y4144D02* X5810D01* Y4140D02* X5850D01* X5854D02* X5850D01* X5851Y4137D02* X5853D01* X5851D02* X5809D01* X5801Y4132D01* X5800Y4123D01* X5807Y4116D01* X5809D01* X5851D01* X5860D02* X5850Y4113D01* X5851Y4120D02* X5858Y4126D01* X5852Y4133D01* X5853Y4137D02* X5860Y4130D01* X5859Y4121D01* X5851Y4116D01* X5860D02* X5864Y4125D01* X5862Y4134D01* X5854Y4140D01* X5855Y4143D02* X5863Y4138D01* X5867Y4129D01* X5866Y4119D01* X5859Y4112D01* X5910Y4111D02* Y4112D01* Y4111D02* Y4068D01* X5916Y4062D01* X5924Y4067D01* X5917Y4068D02* Y4111D01* X5910Y4112D02* X5918Y4117D01* X5924Y4111D01* X5927Y4110D02* X5923Y4119D01* X5924Y4111D02* Y4068D01* Y4067D02* Y4068D01* X5927Y4069D02* Y4066D01* X5921Y4059D01* X5911Y4060D01* X5907Y4069D01* Y4110D01* Y4113D02* Y4110D01* Y4113D02* X5913Y4120D01* X5923Y4119D01* X5932D02* X5924Y4125D01* X5914Y4127D01* X5906Y4123D01* X5900Y4114D01* X5904D02* X5909Y4121D01* X5919Y4124D01* X5927Y4119D01* X5931Y4110D01* X5927D02* Y4069D01* X5930Y4065D02* X5931Y4069D01* Y4110D01* X5932Y4119D02* X5935Y4109D01* Y4069D01* X5928Y4056D02* X5934Y4065D01* X5935Y4069D01* X5930Y4065D02* X5925Y4058D01* X5915Y4055D01* X5907Y4060D01* X5903Y4069D01* Y4110D01* X5904Y4114D02* X5903Y4110D01* X5900Y4109D02* Y4114D01* Y4109D02* Y4069D01* X5902Y4060D01* X5910Y4054D01* X5920Y4052D01* X5928Y4056D01* X6054D02* X6046Y4052D01* X6036Y4054D01* X6028Y4060D01* X6026Y4069D01* Y4109D01* X6030Y4114D02* X6029Y4110D01* X6026Y4109D02* Y4114D01* X6032Y4123D01* X6040Y4127D01* X6050Y4125D01* X6058Y4119D01* X6061Y4109D01* Y4069D01* X6047Y4059D02* X6053Y4066D01* Y4069D01* X6061D02* X6060Y4065D01* X6054Y4056D01* X6057Y4069D02* Y4110D01* X6053D02* Y4069D01* X6056Y4065D02* X6057Y4069D01* X6056Y4065D02* X6051Y4058D01* X6041Y4055D01* X6033Y4060D01* X6029Y4069D01* Y4110D01* X6033Y4113D02* Y4110D01* Y4113D02* X6039Y4120D01* X6049Y4119D01* X6050Y4111D02* X6044Y4117D01* X6036Y4112D01* Y4111D02* Y4068D01* X6043D02* Y4111D01* X6036D02* Y4112D01* X6033Y4110D02* Y4069D01* X6037Y4060D01* X6047Y4059D01* X6036Y4068D02* X6042Y4062D01* X6050Y4067D01* Y4068D02* Y4067D01* Y4068D02* Y4111D01* X6049Y4119D02* X6053Y4110D01* X6057D02* X6053Y4119D01* X6045Y4124D01* X6035Y4121D01* X6030Y4114D01* X5995Y4153D02* X6004Y4155D01* X5995Y4156D02* X5975D01* X5971Y4157D01* X5963Y4162D01* X5961Y4172D01* X5965Y4181D01* X5975Y4184D01* X5995D01* X5999D02* X5995D01* Y4188D02* X6000Y4187D01* X5995Y4188D02* X5975D01* X5966Y4185D01* X5959Y4177D01* X5958Y4168D01* X5962Y4159D01* X5970Y4153D01* X5975D01* X5995D01* X6005Y4160D02* X5995Y4156D01* X6004Y4155D02* X6011Y4163D01* X6012Y4173D01* X6008Y4182D01* X6000Y4187D01* X5999Y4184D02* X6007Y4178D01* X6009Y4168D01* X6005Y4160D01* Y4174D02* X6004Y4164D01* X5996Y4160D01* X5974D01* X5972D02* X5974D01* X5972D02* X5965Y4166D01* X5966Y4176D01* X5974Y4180D01* X5996D01* X5998D02* X5996D01* X5998D02* X6005Y4174D01* X6003Y4170D02* X5996Y4163D01* X5974D01* X5973Y4164D02* X5974Y4163D01* X5973Y4164D02* X5967Y4171D01* X5974Y4177D01* X5996D01* X5997D02* X5996D01* X5997D02* X6003Y4170D01* X5996D02* X5974D01* X5995Y4231D02* X6004Y4234D01* X5995Y4235D02* X5975D01* X5971D01* X5963Y4241D01* X5961Y4251D01* X5965Y4259D01* X5975Y4263D01* X5995D01* X5999Y4262D02* X5995Y4263D01* Y4266D02* X6000D01* X5995D02* X5975D01* X5966Y4264D01* X5959Y4256D01* X5958Y4246D01* X5962Y4237D01* X5970Y4232D01* X5975Y4231D01* X5995D01* X6005Y4238D02* X5995Y4235D01* X6004Y4234D02* X6011Y4242D01* X6012Y4251D01* X6008Y4260D01* X6000Y4266D01* X5999Y4262D02* X6007Y4257D01* X6009Y4247D01* X6005Y4238D01* Y4253D02* X6004Y4243D01* X5996Y4239D01* X5974D01* X5972D02* X5974D01* X5972D02* X5965Y4245D01* X5966Y4255D01* X5974Y4259D01* X5996D01* X5998D02* X5996D01* X5998D02* X6005Y4253D01* X6003Y4248D02* X5996Y4242D01* X5974D01* X5973D02* X5974D01* X5973D02* X5967Y4249D01* X5974Y4256D01* X5996D01* X5997Y4255D02* X5996Y4256D01* X5997Y4255D02* X6003Y4248D01* X5996Y4249D02* X5974D01* X6720Y4360D02* X6950D01* X6951Y4384D02* Y4301D01* X6719D01* X6720Y4328D02* X6950D01* Y4332D02* X6720D01* X6747Y4268D02* X6750Y4258D01* X6747Y4259D02* X6742Y4267D01* X6720Y4352D02* X6950D01* Y4356D02* X6720D01* X6726Y4259D02* Y4261D01* X6719Y4258D02* Y4263D01* X6725Y4271D01* X6729Y4270D02* X6723Y4262D01* X6720Y4348D02* X6950D01* Y4344D02* X6720D01* X6734Y4275D02* X6743Y4274D01* X6742Y4267D02* X6732Y4268D01* X6720Y4368D02* X6950D01* Y4364D02* X6720D01* X6751Y4267D02* X6754Y4258D01* Y4238D01* X6740Y4228D02* X6746Y4235D01* X6747Y4237D01* X6750Y4238D02* Y4234D01* X6747Y4237D02* Y4259D01* X6750Y4258D02* Y4238D01* X6748Y4225D02* X6753Y4233D01* X6754Y4238D01* X6750Y4234D02* X6744Y4226D01* X6734Y4224D01* X6729Y4222D02* X6739Y4221D01* X6748Y4225D01* X6740Y4228D02* X6730Y4229D01* X6726Y4237D01* Y4259D01* X6720Y4340D02* X6950D01* Y4336D02* X6720D01* X6738Y4272D02* X6747Y4268D01* X6751Y4267D02* X6743Y4274D01* X6720Y4376D02* X6950D01* Y4372D02* X6720D01* X6730Y4259D02* Y4260D01* Y4259D02* Y4237D01* X6736Y4230D01* X6743Y4236D01* X6736Y4259D02* Y4237D01* X6743D02* Y4236D01* Y4237D02* Y4259D01* X6737Y4266D01* X6720Y4320D02* X6950D01* Y4324D02* X6720D01* X6722Y4258D02* X6723Y4262D01* X6719Y4258D02* Y4238D01* X6722Y4229D01* X6729Y4222D01* X6734Y4224D02* X6726Y4228D01* X6722Y4238D01* Y4258D01* X6720Y4308D02* X6950D01* Y4304D02* X6720D01* X6729Y4270D02* X6738Y4272D01* X6734Y4275D02* X6725Y4271D01* X6720Y4312D02* X6950D01* Y4316D02* X6720D01* X6726Y4261D02* X6732Y4268D01* X6737Y4266D02* X6730Y4260D01* X6720Y4380D02* X6950D01* X6951Y4384D02* X6719D01* Y4301D01* X6808Y4237D02* X6814Y4230D01* X6808Y4237D02* Y4259D01* Y4260D01* X6805Y4259D02* Y4237D01* X6809Y4229D01* X6819Y4228D01* X6814Y4230D02* X6822Y4236D01* Y4237D01* X6825D02* Y4235D01* X6819Y4228D01* X6832Y4238D02* Y4258D01* X6830Y4267D01* X6822Y4274D01* X6812Y4275D01* X6803Y4271D01* X6798Y4263D01* X6797Y4258D01* X6808Y4260D02* X6815Y4266D01* X6822Y4259D01* X6825D02* X6821Y4267D01* X6822Y4259D02* Y4237D01* X6815D02* Y4259D01* X6821Y4267D02* X6811Y4268D01* X6805Y4261D01* Y4259D02* Y4261D01* X6801Y4258D02* Y4238D01* X6805Y4228D01* X6813Y4224D01* X6823Y4226D01* X6828Y4234D01* X6829Y4238D02* X6828Y4234D01* X6825Y4237D02* Y4259D01* X6829Y4258D02* Y4238D01* X6826Y4225D02* X6832Y4233D01* Y4238D01* X6826Y4225D02* X6817Y4221D01* X6808Y4222D01* X6800Y4229D01* X6797Y4238D01* Y4258D01* X6802Y4262D02* X6801Y4258D01* X6802Y4262D02* X6807Y4270D01* X6817Y4272D01* X6825Y4268D01* X6829Y4258D01* X5410Y4235D02* X5405Y4236D01* X5397Y4241D01* X5410Y4235D02* X5450D01* X5459Y4238D01* X5450Y4239D02* X5410D01* X5406D01* X5398Y4245D01* X5396Y4254D01* X5400Y4263D01* X5410Y4266D01* X5450D01* X5454D02* X5450D01* Y4270D02* X5455Y4269D01* X5450Y4270D02* X5410D01* X5401Y4267D01* X5394Y4260D01* X5393Y4250D01* X5397Y4241D01* X5409Y4252D02* X5451D01* Y4246D02* X5409D01* X5408D01* X5402Y4253D01* X5409Y4259D01* X5451D01* X5452D02* X5451D01* X5452D02* X5458Y4252D01* X5451Y4246D01* Y4242D02* X5459Y4247D01* X5460Y4256D01* X5453Y4263D01* X5454Y4266D02* X5462Y4260D01* X5464Y4251D01* X5460Y4242D01* X5459Y4238D02* X5466Y4245D01* X5467Y4255D01* X5463Y4264D01* X5455Y4269D01* X5451Y4263D02* X5453D01* X5451D02* X5409D01* X5401Y4258D01* X5400Y4249D01* X5407Y4242D01* X5409D01* X5451D01* X5460D02* X5450Y4239D01* X5460Y4130D02* X5459Y4121D01* X5451Y4116D01* Y4120D02* X5458Y4126D01* X5460Y4130D02* X5453Y4137D01* X5452Y4133D02* X5458Y4126D01* X5451D02* X5409D01* Y4120D02* X5451D01* X5460Y4116D02* X5464Y4125D01* X5462Y4134D01* X5454Y4140D01* X5455Y4143D02* X5463Y4138D01* X5467Y4129D01* X5466Y4119D01* X5459Y4112D01* X5450Y4113D02* X5460Y4116D01* X5451D02* X5409D01* X5407D01* X5400Y4123D01* X5401Y4132D01* X5409Y4137D01* X5451D01* X5453D02* X5451D01* Y4133D02* X5452D01* X5451D02* X5409D01* X5402Y4127D01* X5408Y4120D01* X5409D01* X5410Y4109D02* X5405Y4110D01* X5397Y4115D01* X5410Y4109D02* X5450D01* X5459Y4112D01* X5450Y4113D02* X5410D01* X5406D01* X5398Y4119D01* X5396Y4128D01* X5400Y4137D01* X5410Y4140D01* X5450D01* X5454D02* X5450D01* Y4144D02* X5455Y4143D01* X5450Y4144D02* X5410D01* X5401Y4141D01* X5394Y4134D01* X5393Y4124D01* X5397Y4115D01* X5307Y4159D02* X5303Y4168D01* X5304Y4177D01* X5311Y4185D01* X5320Y4188D01* X5340D01* X5345Y4187D02* X5340Y4188D01* Y4184D02* X5344D01* X5340D02* X5320D01* X5310Y4181D01* X5306Y4172D01* X5308Y4162D01* X5316Y4157D01* X5320Y4156D01* X5340D01* X5349Y4155D02* X5340Y4153D01* X5320D01* X5307Y4159D02* X5315Y4153D01* X5320D01* X5319Y4163D02* X5318Y4164D01* X5312Y4171D01* X5319Y4177D01* X5341D01* X5342D02* X5341D01* Y4180D02* X5343D01* X5341D02* X5319D01* X5311Y4176D01* X5310Y4166D01* X5317Y4160D01* X5319D01* X5341D01* X5350D02* X5340Y4156D01* X5349Y4155D02* X5356Y4163D01* X5357Y4173D01* X5353Y4182D01* X5345Y4187D01* X5344Y4184D02* X5352Y4178D01* X5354Y4168D01* X5350Y4160D01* X5341Y4163D02* X5319D01* Y4170D02* X5341D01* X5348D02* X5342Y4177D01* X5343Y4180D02* X5350Y4174D01* X5348Y4170D02* X5341Y4163D01* Y4160D02* X5349Y4164D01* X5350Y4174D01* X5349Y4234D02* X5356Y4242D01* X5357Y4251D01* X5353Y4260D01* X5345Y4266D01* X5344Y4262D02* X5352Y4257D01* X5354Y4247D01* X5350Y4238D01* X5341Y4239D02* X5349Y4243D01* X5350Y4253D01* X5343Y4259D01* X5342Y4255D02* X5348Y4248D01* X5341Y4242D01* X5340Y4235D02* X5350Y4238D01* X5341Y4239D02* X5319D01* X5317D01* X5310Y4245D01* X5311Y4255D01* X5319Y4259D01* X5341D01* X5343D02* X5341D01* Y4256D02* X5342Y4255D01* X5341Y4256D02* X5319D01* X5312Y4249D01* X5318Y4242D01* X5319D01* X5341D01* Y4249D02* X5319D01* X5307Y4237D02* X5303Y4246D01* X5304Y4256D01* X5311Y4264D01* X5320Y4266D01* X5340D01* X5345D02* X5340D01* Y4263D02* X5344Y4262D01* X5340Y4263D02* X5320D01* X5310Y4259D01* X5306Y4251D01* X5308Y4241D01* X5316Y4235D01* X5320D01* X5340D01* X5349Y4234D02* X5340Y4231D01* X5320D01* X5307Y4237D02* X5315Y4232D01* X5320Y4231D01* X5264Y4234D02* X5271Y4242D01* X5272Y4251D01* X5268Y4260D01* X5260Y4266D01* X5259Y4262D02* X5267Y4257D01* X5269Y4247D01* X5265Y4238D01* X5256Y4242D02* X5263Y4248D01* X5257Y4255D01* X5258Y4259D02* X5265Y4253D01* X5264Y4243D01* X5256Y4239D01* X5255Y4235D02* X5265Y4238D01* X5256Y4239D02* X5234D01* X5232D01* X5225Y4245D01* X5226Y4255D01* X5234Y4259D01* X5256D01* X5258D02* X5256D01* Y4256D02* X5257Y4255D01* X5256Y4256D02* X5234D01* X5227Y4249D01* X5233Y4242D01* X5234D01* X5256D01* Y4249D02* X5234D01* X5222Y4237D02* X5218Y4246D01* X5219Y4256D01* X5226Y4264D01* X5235Y4266D01* X5255D01* X5260D02* X5255D01* Y4263D02* X5259Y4262D01* X5255Y4263D02* X5235D01* X5225Y4259D01* X5221Y4251D01* X5223Y4241D01* X5231Y4235D01* X5235D01* X5255D01* X5264Y4234D02* X5255Y4231D01* X5235D01* X5222Y4237D02* X5230Y4232D01* X5235Y4231D01* X5264Y4155D02* X5271Y4163D01* X5272Y4173D01* X5268Y4182D01* X5260Y4187D01* X5259Y4184D02* X5267Y4178D01* X5269Y4168D01* X5265Y4160D01* X5256Y4170D02* X5234D01* Y4163D02* X5256D01* X5263Y4170D01* X5257Y4177D01* X5258Y4180D02* X5265Y4174D01* X5264Y4164D01* X5256Y4160D01* X5255Y4156D02* X5265Y4160D01* X5256D02* X5234D01* X5232D01* X5225Y4166D01* X5226Y4176D01* X5234Y4180D01* X5256D01* X5258D02* X5256D01* Y4177D02* X5257D01* X5256D02* X5234D01* X5227Y4171D01* X5233Y4164D01* X5234Y4163D01* X5235Y4153D02* X5230D01* X5222Y4159D01* X5235Y4153D02* X5255D01* X5264Y4155D01* X5255Y4156D02* X5235D01* X5231Y4157D01* X5223Y4162D01* X5221Y4172D01* X5225Y4181D01* X5235Y4184D01* X5255D01* X5259D02* X5255D01* Y4188D02* X5260Y4187D01* X5255Y4188D02* X5235D01* X5226Y4185D01* X5219Y4177D01* X5218Y4168D01* X5222Y4159D01* X5185Y4182D02* X5189Y4191D01* X5187Y4200D01* X5179Y4206D01* X5180Y4209D02* X5188Y4204D01* X5192Y4195D01* X5191Y4185D01* X5184Y4178D01* X5175Y4179D02* X5185Y4182D01* X5176D02* X5134D01* X5132D01* X5125Y4189D01* X5126Y4198D01* X5134Y4203D01* X5176D01* X5178D02* X5176D01* X5175Y4206D02* X5179D01* X5175D02* X5135D01* Y4210D02* X5175D01* X5180Y4209D02* X5175Y4210D01* X5178Y4203D02* X5185Y4196D01* X5184Y4187D01* X5176Y4182D01* Y4186D02* X5183Y4192D01* X5177Y4199D01* X5176D02* X5177D01* X5176D02* X5134D01* X5127Y4193D01* X5133Y4186D01* X5134D01* X5176D01* Y4192D02* X5134D01* X5122Y4181D02* X5118Y4190D01* X5119Y4200D01* X5126Y4207D01* X5135Y4210D01* Y4206D02* X5125Y4203D01* X5121Y4194D01* X5123Y4185D01* X5131Y4179D01* X5135D01* X5175D01* X5184Y4178D02* X5175Y4175D01* X5135D01* X5122Y4181D02* X5130Y4176D01* X5135Y4175D01* X5177Y4073D02* X5183Y4066D01* X5176Y4060D01* X5134D01* Y4066D02* X5176D01* X5177Y4073D02* X5176D01* X5175Y4084D02* X5180Y4083D01* X5175Y4080D02* X5135D01* Y4084D02* X5175D01* X5188Y4078D02* X5180Y4083D01* X5188Y4078D02* X5192Y4069D01* X5191Y4059D01* X5184Y4052D01* X5185Y4056D02* X5189Y4065D01* X5187Y4074D01* X5179Y4080D01* X5178Y4077D02* X5185Y4070D01* X5184Y4061D01* X5176Y4056D01* X5175Y4053D02* X5185Y4056D01* X5176D02* X5134D01* X5132D01* X5125Y4063D01* X5126Y4072D01* X5134Y4077D01* X5176D01* X5179Y4080D02* X5175D01* X5176Y4077D02* X5178D01* X5176Y4073D02* X5134D01* X5127Y4067D01* X5133Y4060D01* X5134D01* X5135Y4049D02* X5130Y4050D01* X5122Y4055D01* X5135Y4049D02* X5175D01* X5184Y4052D01* X5175Y4053D02* X5135D01* X5131D01* X5123Y4059D01* X5121Y4068D01* X5125Y4077D01* X5135Y4080D01* Y4084D02* X5126Y4081D01* X5119Y4074D01* X5118Y4064D01* X5122Y4055D01* X5103Y3988D02* X5109Y3982D01* X5103Y3988D02* Y4011D01* Y4012D02* X5110Y4017D01* X5116Y4011D01* X5109D02* Y3988D01* X5116D02* Y4011D01* X5115Y4019D02* X5120Y4010D01* Y3989D01* X5123Y3985D02* Y3989D01* X5127D02* X5126Y3985D01* X5121Y3976D01* X5123Y3989D02* Y4010D01* X5120Y4019D01* X5111Y4024D01* X5102Y4021D01* X5096Y4014D01* X5095Y4010D02* X5096Y4014D01* X5092Y4009D02* Y3989D01* X5095Y3980D01* X5102Y3974D01* X5112Y3972D01* X5121Y3976D01* X5123Y3985D02* X5117Y3978D01* X5108Y3975D01* X5099Y3980D01* X5095Y3989D01* Y4010D01* X5099Y4013D02* Y4010D01* Y4013D02* X5106Y4020D01* X5115Y4019D01* X5103Y4011D02* Y4012D01* X5099Y4010D02* Y3989D01* X5104Y3980D01* X5113Y3979D01* X5109Y3982D02* X5116Y3987D01* Y3988D01* X5120Y3989D02* X5119Y3986D01* X5113Y3979D01* X5127Y3989D02* Y4009D01* X5124Y4019D01* X5117Y4025D01* X5107Y4027D01* X5098Y4023D01* X5093Y4014D01* X5092Y4009D01* X5036Y4019D02* X5027Y4020D01* X5021Y4013D01* X5020Y4010D02* X5021Y4013D01* X5017Y4010D02* Y3989D01* X5020Y3980D01* X5029Y3975D01* X5038Y3978D01* X5044Y3985D01* X5048Y3989D02* X5047Y3985D01* X5042Y3976D01* X5048Y3989D02* Y4009D01* X5045Y4010D02* Y3989D01* X5044Y3985D02* X5045Y3989D01* X5041D02* Y3986D01* X5034Y3979D01* X5025Y3980D01* X5020Y3989D01* Y4010D01* X5024Y4012D02* Y4011D01* Y4012D02* X5031Y4017D01* X5037Y4011D01* X5031D02* Y3988D01* X5037D02* Y3987D01* X5041Y3989D02* Y4010D01* X5036Y4019D01* X5037Y4011D02* Y3988D01* Y3987D02* X5030Y3982D01* X5024Y3988D01* Y4011D01* X5019Y4023D02* X5014Y4014D01* X5013Y4009D01* X5019Y4023D02* X5028Y4027D01* X5038Y4025D01* X5045Y4019D01* X5048Y4009D01* X5045Y4010D02* X5041Y4019D01* X5032Y4024D01* X5023Y4021D01* X5017Y4014D01* Y4010D02* Y4014D01* X5013Y4009D02* Y3989D01* X5016Y3980D01* X5023Y3974D01* X5033Y3972D01* X5042Y3976D01* X5014Y3924D02* X5019Y3933D01* X5028Y3937D01* X5038Y3935D01* X5045Y3929D01* X5041D02* X5032Y3934D01* X5023Y3931D01* X5017Y3924D01* Y3920D01* X5013Y3919D02* X5014Y3924D01* X5013Y3919D02* Y3899D01* X5016Y3890D01* X5023Y3884D01* X5033Y3882D01* X5042Y3886D01* X5034Y3889D02* X5025Y3890D01* X5020Y3899D01* Y3920D01* X5024Y3922D02* Y3921D01* Y3922D02* X5031Y3927D01* X5024Y3921D02* Y3898D01* X5030Y3892D01* X5037Y3897D01* Y3898D02* Y3897D01* Y3898D02* Y3921D01* X5036Y3929D02* X5041Y3920D01* X5045D02* X5041Y3929D01* Y3920D02* Y3899D01* X5044Y3895D02* X5045Y3899D01* X5048D02* X5047Y3895D01* X5042Y3886D01* X5048Y3899D02* Y3919D01* X5045Y3929D01* Y3920D02* Y3899D01* X5041D02* Y3896D01* X5034Y3889D01* X5031Y3898D02* Y3921D01* X5037D02* X5031Y3927D01* X5036Y3929D02* X5027Y3930D01* X5021Y3923D01* X5020Y3920D02* X5021Y3923D01* X5017Y3920D02* Y3899D01* X5020Y3890D01* X5029Y3885D01* X5038Y3888D01* X5044Y3895D01* X5103Y3898D02* X5109Y3892D01* X5103Y3898D02* Y3921D01* Y3922D01* X5099Y3920D02* Y3899D01* X5104Y3890D01* X5113Y3889D01* X5119Y3896D01* X5120Y3899D01* X5116Y3898D02* Y3897D01* X5109Y3892D01* X5121Y3886D02* X5112Y3882D01* X5102Y3884D01* X5095Y3890D01* X5092Y3899D01* Y3919D01* X5093Y3924D02* X5092Y3919D01* X5095Y3920D02* X5096Y3924D01* X5095Y3920D02* Y3899D01* X5099Y3890D01* X5108Y3885D01* X5117Y3888D01* X5123Y3895D01* X5127Y3899D02* X5126Y3895D01* X5121Y3886D01* X5127Y3899D02* Y3919D01* X5124Y3929D01* X5123Y3920D02* Y3899D01* Y3895D01* X5120Y3899D02* Y3920D01* X5115Y3929D01* X5106Y3930D01* X5099Y3923D01* Y3920D01* X5103Y3922D02* X5110Y3927D01* X5116Y3921D01* Y3898D01* X5109D02* Y3921D01* X5123Y3920D02* X5120Y3929D01* X5111Y3934D01* X5102Y3931D01* X5096Y3924D01* X5093D02* X5098Y3933D01* X5107Y3937D01* X5117Y3935D01* X5124Y3929D01* X5171Y3824D02* X5168Y3834D01* X5160Y3840D01* X5150Y3842D01* X5142Y3838D01* X5136Y3829D01* X5140D02* X5145Y3836D01* X5155Y3839D01* X5163Y3834D01* X5167Y3825D01* X5160Y3826D02* X5154Y3832D01* X5146Y3827D01* Y3826D02* Y3827D01* Y3826D02* Y3783D01* X5152Y3777D01* X5160Y3782D01* Y3783D02* Y3782D01* X5163Y3784D02* Y3825D01* X5159Y3834D01* X5160Y3826D02* Y3783D01* X5153D02* Y3826D01* X5159Y3834D02* X5149Y3835D01* X5143Y3828D01* Y3825D02* Y3828D01* Y3825D02* Y3784D01* X5147Y3775D01* X5157Y3774D01* X5163Y3781D01* Y3784D01* X5167D02* X5166Y3780D01* X5167Y3784D02* Y3825D01* X5171Y3824D02* Y3784D01* X5164Y3771D02* X5170Y3780D01* X5171Y3784D01* X5166Y3780D02* X5161Y3773D01* X5151Y3770D01* X5143Y3775D01* X5139Y3784D01* Y3825D01* X5140Y3829D02* X5139Y3825D01* X5136Y3824D02* Y3829D01* Y3824D02* Y3784D01* X5138Y3775D01* X5146Y3769D01* X5156Y3767D01* X5164Y3771D01* X5123Y3705D02* X5120Y3714D01* X5111Y3719D01* X5102Y3716D01* X5096Y3709D01* X5103Y3707D02* X5110Y3712D01* X5116Y3706D01* X5120Y3705D02* X5115Y3714D01* X5116Y3706D02* Y3683D01* X5109D02* Y3706D01* X5115Y3714D02* X5106Y3715D01* X5099Y3708D01* Y3705D02* Y3708D01* X5095Y3705D02* Y3684D01* X5099Y3675D01* X5108Y3670D01* X5117Y3673D01* X5123Y3680D01* Y3684D02* Y3680D01* X5120Y3684D02* Y3705D01* X5123D02* Y3684D01* X5121Y3671D02* X5126Y3680D01* X5127Y3684D01* X5121Y3671D02* X5112Y3667D01* X5102Y3669D01* X5095Y3675D01* X5092Y3684D01* Y3704D01* X5096Y3709D02* X5095Y3705D01* X5092Y3704D02* X5093Y3709D01* X5098Y3718D01* X5107Y3722D01* X5117Y3720D01* X5124Y3714D01* X5127Y3704D01* Y3684D01* X5113Y3674D02* X5119Y3681D01* X5120Y3684D01* X5116Y3683D02* Y3682D01* X5109Y3677D01* X5113Y3674D02* X5104Y3675D01* X5099Y3684D01* Y3705D01* X5103Y3707D02* Y3706D01* Y3683D01* X5109Y3677D02* X5103Y3683D01* X5127Y3609D02* X5124Y3619D01* X5117Y3625D01* X5107Y3627D01* X5098Y3623D01* X5093Y3614D01* X5096D02* X5102Y3621D01* X5111Y3624D01* X5120Y3619D01* X5123Y3610D01* X5115Y3619D02* X5106Y3620D01* X5099Y3613D01* Y3610D02* Y3613D01* Y3610D02* Y3589D01* X5104Y3580D01* X5113Y3579D01* X5119Y3586D01* X5120Y3589D01* X5116Y3588D02* Y3587D01* X5120Y3589D02* Y3610D01* X5115Y3619D01* X5116Y3611D02* Y3588D01* X5109D02* Y3611D01* X5116D02* X5110Y3617D01* X5103Y3612D01* Y3611D02* Y3612D01* Y3611D02* Y3588D01* X5109Y3582D01* X5116Y3587D01* X5123Y3589D02* Y3585D01* Y3589D02* Y3610D01* X5127Y3609D02* Y3589D01* X5121Y3576D02* X5126Y3585D01* X5127Y3589D01* X5123Y3585D02* X5117Y3578D01* X5108Y3575D01* X5099Y3580D01* X5095Y3589D01* Y3610D01* X5096Y3614D02* X5095Y3610D01* X5092Y3609D02* X5093Y3614D01* X5092Y3609D02* Y3589D01* X5095Y3580D01* X5102Y3574D01* X5112Y3572D01* X5121Y3576D01* X5159Y3509D02* X5149Y3510D01* X5143Y3503D01* Y3500D02* Y3503D01* X5139Y3500D02* Y3459D01* X5143Y3450D01* X5151Y3445D01* X5161Y3448D01* X5166Y3455D01* X5164Y3446D02* X5156Y3442D01* X5146Y3444D01* X5138Y3450D01* X5136Y3459D01* Y3499D01* X5140Y3504D02* X5139Y3500D01* X5136Y3499D02* Y3504D01* X5142Y3513D01* X5150Y3517D01* X5160Y3515D01* X5168Y3509D01* X5171Y3499D01* Y3459D01* X5157Y3449D02* X5163Y3456D01* Y3459D01* X5160Y3458D02* Y3457D01* X5152Y3452D01* X5157Y3449D02* X5147Y3450D01* X5143Y3459D01* Y3500D01* X5146Y3502D02* Y3501D01* X5140Y3504D02* X5145Y3511D01* X5155Y3514D01* X5163Y3509D01* X5167Y3500D01* Y3459D01* X5164Y3446D02* X5170Y3455D01* X5171Y3459D01* X5167D02* X5166Y3455D01* X5163Y3459D02* Y3500D01* X5159Y3509D01* X5160Y3501D02* Y3458D01* X5153D02* Y3501D01* X5160D02* X5154Y3507D01* X5146Y3502D01* Y3501D02* Y3458D01* X5152Y3452D02* X5146Y3458D01* X5010Y3829D02* X5016Y3838D01* X5024Y3842D01* X5034Y3840D01* X5042Y3834D01* X5037D02* X5041Y3825D01* X5034Y3826D02* X5028Y3832D01* X5033Y3834D02* X5023Y3835D01* X5017Y3828D01* Y3825D02* Y3828D01* X5013Y3825D02* Y3784D01* X5017Y3775D01* X5025Y3770D01* X5035Y3773D01* X5040Y3780D01* X5045Y3784D02* X5044Y3780D01* X5038Y3771D01* X5045Y3784D02* Y3824D01* X5042Y3834D01* X5041Y3825D02* Y3784D01* X5034Y3783D02* Y3782D01* Y3783D02* Y3826D01* X5033Y3834D02* X5037Y3825D01* Y3784D01* X5040Y3780D02* X5041Y3784D01* X5037D02* Y3781D01* X5031Y3774D01* X5021Y3775D01* X5017Y3784D01* Y3825D01* X5020Y3827D02* Y3826D01* Y3827D02* X5028Y3832D01* X5020Y3826D02* Y3783D01* X5026Y3777D01* X5034Y3782D01* X5027Y3783D02* Y3826D01* X5037Y3834D02* X5029Y3839D01* X5019Y3836D01* X5014Y3829D01* X5013Y3825D01* X5010Y3824D02* Y3829D01* Y3824D02* Y3784D01* X5012Y3775D01* X5020Y3769D01* X5030Y3767D01* X5038Y3771D01* X5037Y3706D02* X5031Y3712D01* X5024Y3707D01* Y3706D02* Y3707D01* X5020Y3705D02* Y3684D01* X5025Y3675D01* X5034Y3674D01* X5041Y3681D01* Y3684D01* X5045D02* X5044Y3680D01* X5045Y3684D02* Y3705D01* X5048Y3704D02* Y3684D01* X5042Y3671D02* X5047Y3680D01* X5048Y3684D01* X5044Y3680D02* X5038Y3673D01* X5029Y3670D01* X5020Y3675D01* X5017Y3684D01* Y3705D01* X5021Y3708D02* X5020Y3705D01* X5021Y3708D02* X5027Y3715D01* X5036Y3714D01* X5019Y3718D02* X5028Y3722D01* X5038Y3720D01* X5045Y3714D01* X5048Y3704D01* X5045Y3705D02* X5041Y3714D01* X5032Y3719D01* X5023Y3716D01* X5017Y3709D01* X5031Y3706D02* Y3683D01* X5037D02* Y3682D01* X5041Y3684D02* Y3705D01* X5036Y3714D01* X5037Y3706D02* Y3683D01* Y3682D02* X5030Y3677D01* X5024Y3683D01* Y3706D01* X5019Y3718D02* X5014Y3709D01* X5013Y3704D01* X5017Y3705D02* Y3709D01* X5013Y3704D02* Y3684D01* X5016Y3675D01* X5023Y3669D01* X5033Y3667D01* X5042Y3671D01* X5014Y3614D02* X5019Y3623D01* X5028Y3627D01* X5038Y3625D01* X5045Y3619D01* X5041D02* X5032Y3624D01* X5023Y3621D01* X5017Y3614D01* Y3610D01* X5013Y3609D02* X5014Y3614D01* X5013Y3609D02* Y3589D01* X5016Y3580D01* X5023Y3574D01* X5033Y3572D01* X5042Y3576D01* X5037Y3587D02* X5030Y3582D01* X5024Y3588D01* Y3611D01* X5031Y3617D02* X5024Y3612D01* Y3611D02* Y3612D01* X5020Y3610D02* Y3589D01* X5025Y3580D01* X5034Y3579D01* X5041Y3586D01* Y3589D01* X5037Y3588D02* Y3587D01* Y3588D02* Y3611D01* X5036Y3619D02* X5041Y3610D01* X5045D02* X5041Y3619D01* Y3610D02* Y3589D01* X5044Y3585D02* X5045Y3589D01* Y3610D01* Y3619D02* X5048Y3609D01* Y3589D01* X5042Y3576D02* X5047Y3585D01* X5048Y3589D01* X5044Y3585D02* X5038Y3578D01* X5029Y3575D01* X5020Y3580D01* X5017Y3589D01* Y3610D01* X5021Y3613D02* X5020Y3610D01* X5021Y3613D02* X5027Y3620D01* X5036Y3619D01* X5031Y3617D02* X5037Y3611D01* X5031D02* Y3588D01* X5014Y3504D02* X5019Y3511D01* X5029Y3514D01* X5037Y3509D01* X5041Y3500D01* Y3459D01* X5038Y3446D02* X5044Y3455D01* X5045Y3459D01* X5041D02* X5040Y3455D01* X5037Y3459D02* Y3500D01* X5033Y3509D01* X5034Y3501D02* Y3458D01* Y3457D02* Y3458D01* X5037Y3459D02* Y3456D01* X5031Y3449D01* X5045Y3459D02* Y3499D01* X5042Y3509D01* X5034Y3515D01* X5024Y3517D01* X5016Y3513D01* X5010Y3504D01* Y3499D01* X5013Y3500D02* X5014Y3504D01* X5010Y3499D02* Y3459D01* X5012Y3450D01* X5020Y3444D01* X5030Y3442D01* X5038Y3446D01* X5031Y3449D02* X5021Y3450D01* X5017Y3459D01* Y3500D01* X5020Y3502D02* Y3501D01* Y3502D02* X5028Y3507D01* X5020Y3501D02* Y3458D01* X5026Y3452D01* X5034Y3457D01* X5027Y3458D02* Y3501D01* X5034D02* X5028Y3507D01* X5033Y3509D02* X5023Y3510D01* X5017Y3503D01* Y3500D02* Y3503D01* X5013Y3500D02* Y3459D01* X5017Y3450D01* X5025Y3445D01* X5035Y3448D01* X5040Y3455D01* X5019Y3388D02* X5028Y3392D01* X5038Y3390D01* X5045Y3384D01* X5048Y3374D01* X5045Y3375D02* X5041Y3384D01* X5032Y3389D01* X5023Y3386D01* X5017Y3379D01* X5031Y3376D02* Y3353D01* X5037D02* Y3352D01* X5041Y3354D02* Y3375D01* X5036Y3384D01* X5037Y3376D02* Y3353D01* X5041Y3354D02* Y3351D01* X5034Y3344D01* X5025Y3345D01* X5020Y3354D01* Y3375D01* X5024Y3377D02* Y3376D01* Y3377D02* X5031Y3382D01* X5037Y3376D01* X5036Y3384D02* X5027Y3385D01* X5021Y3378D01* X5020Y3375D02* X5021Y3378D01* X5017Y3375D02* Y3354D01* X5020Y3345D01* X5029Y3340D01* X5038Y3343D01* X5044Y3350D01* X5045Y3354D02* X5044Y3350D01* X5045Y3354D02* Y3375D01* X5048Y3374D02* Y3354D01* X5042Y3341D02* X5047Y3350D01* X5048Y3354D01* X5037Y3352D02* X5030Y3347D01* X5024Y3353D01* Y3376D01* X5019Y3388D02* X5014Y3379D01* X5013Y3374D01* X5017Y3375D02* Y3379D01* X5013Y3374D02* Y3354D01* X5016Y3345D01* X5023Y3339D01* X5033Y3337D01* X5042Y3341D01* X5103Y3353D02* X5109Y3347D01* X5103Y3353D02* Y3376D01* Y3377D01* X5099Y3375D02* Y3354D01* X5104Y3345D01* X5113Y3344D01* X5109Y3347D02* X5116Y3352D01* Y3353D01* X5120Y3354D02* X5119Y3351D01* X5113Y3344D01* X5127Y3354D02* Y3374D01* X5124Y3384D01* X5117Y3390D01* X5107Y3392D01* X5098Y3388D01* X5093Y3379D01* X5092Y3374D01* X5095Y3375D02* X5096Y3379D01* X5092Y3374D02* Y3354D01* X5095Y3345D01* X5102Y3339D01* X5112Y3337D01* X5121Y3341D01* X5127Y3354D02* X5126Y3350D01* X5121Y3341D01* X5123Y3354D02* Y3375D01* X5120D02* Y3354D01* X5123Y3350D02* Y3354D01* Y3350D02* X5117Y3343D01* X5108Y3340D01* X5099Y3345D01* X5095Y3354D01* Y3375D01* X5099Y3378D02* Y3375D01* Y3378D02* X5106Y3385D01* X5115Y3384D01* X5109Y3376D02* Y3353D01* X5116D02* Y3376D01* X5115Y3384D02* X5120Y3375D01* X5116Y3376D02* X5110Y3382D01* X5103Y3377D01* X5096Y3379D02* X5102Y3386D01* X5111Y3389D01* X5120Y3384D01* X5123Y3375D01* X3752Y3209D02* X3831D01* Y3288D01* X3883Y3474D02* X3876Y3481D01* X3873Y3490D01* Y3510D01* X3877Y3514D02* Y3510D01* X3873D02* X3874Y3515D01* X3879Y3523D01* X3884Y3511D02* Y3489D01* X3890Y3482D01* X3897Y3488D01* X3905Y3490D02* X3904Y3486D01* X3901Y3489D02* Y3511D01* X3896Y3519D01* X3887Y3520D01* X3881Y3513D01* X3877Y3514D02* X3883Y3522D01* X3892Y3524D01* X3901Y3520D01* X3905Y3510D01* X3908D02* X3905Y3519D01* X3898Y3526D01* X3888Y3527D01* X3879Y3523D01* X3884Y3512D02* X3891Y3518D01* X3897Y3511D01* Y3489D01* Y3488D02* Y3489D01* X3891D02* Y3511D01* X3908Y3490D02* X3907Y3485D01* X3902Y3477D01* X3905Y3490D02* Y3510D01* X3908D02* Y3490D01* X3894Y3480D02* X3901Y3487D01* Y3489D01* X3904Y3486D02* X3898Y3478D01* X3889Y3476D01* X3883Y3474D02* X3893Y3473D01* X3902Y3477D01* X3894Y3480D02* X3885Y3481D01* X3880Y3489D01* Y3511D01* X3884Y3512D02* Y3511D01* X3880D02* X3881Y3513D01* X3877Y3510D02* Y3490D01* X3880Y3480D01* X3889Y3476D01* X3963Y3489D02* X3969Y3482D01* X3963Y3489D02* Y3511D01* Y3512D01* X3959Y3511D02* Y3489D01* X3964Y3481D01* X3973Y3480D01* X3969Y3482D02* X3976Y3488D01* Y3489D01* X3980D02* X3979Y3487D01* X3973Y3480D01* X3987Y3490D02* Y3510D01* X3984Y3519D01* X3977Y3526D01* X3967Y3527D01* X3958Y3523D01* X3953Y3515D01* X3952Y3510D01* X3955D02* X3956Y3514D01* X3952Y3510D02* Y3490D01* X3955Y3481D01* X3962Y3474D01* X3972Y3473D01* X3981Y3477D01* X3983Y3486D02* X3977Y3478D01* X3968Y3476D01* X3959Y3480D01* X3955Y3490D01* Y3510D01* X3959Y3513D02* Y3511D01* Y3513D02* X3966Y3520D01* X3975Y3519D01* X3980Y3511D02* Y3489D01* X3983Y3486D02* Y3490D01* X3987D02* X3986Y3485D01* X3981Y3477D01* X3983Y3490D02* Y3510D01* X3980Y3520D01* X3971Y3524D01* X3962Y3522D01* X3956Y3514D01* X3963Y3512D02* X3970Y3518D01* X3976Y3511D01* X3980D02* X3975Y3519D01* X3976Y3511D02* Y3489D01* X3969D02* Y3511D01* X2988Y4131D02* X2909D01* Y4052D01* X2052Y3922D02* Y3917D01* X2046Y3909D01* X2052Y3922D02* Y3958D01* X2050Y3967D01* X2049Y3958D02* Y3922D01* X2048Y3918D01* X2045Y3921D02* Y3959D01* X2041Y3967D01* X2042Y3959D02* Y3921D01* X2041Y3920D02* X2042Y3921D01* X2045D02* Y3919D01* X2039Y3912D01* X2029Y3913D01* X2025Y3921D01* Y3959D01* Y3961D02* Y3959D01* Y3961D02* X2031Y3968D01* X2041Y3967D01* X2050D02* X2042Y3974D01* X2032Y3975D01* X2023Y3971D01* X2018Y3963D01* X2021Y3962D02* X2027Y3970D01* X2037Y3972D01* X2045Y3968D01* X2049Y3958D01* X2042Y3959D02* X2035Y3966D01* X2028Y3960D01* Y3959D02* Y3960D01* Y3959D02* Y3921D01* X2034Y3914D01* X2041Y3920D01* X2035Y3921D02* Y3959D01* X2048Y3918D02* X2043Y3910D01* X2033Y3908D01* X2024Y3912D01* X2021Y3922D01* Y3958D01* Y3962D02* Y3958D01* X2017D02* X2018Y3963D01* X2017Y3958D02* Y3922D01* X2020Y3913D01* X2028Y3906D01* X2037Y3905D01* X2046Y3909D01* X2286Y3653D02* X2207D01* Y3574D01* X1885Y3921D02* Y3959D01* X1892D02* X1886Y3966D01* X1891Y3967D02* X1881Y3968D01* X1875Y3961D01* Y3959D02* Y3961D01* X1871Y3958D02* Y3922D01* X1875Y3912D01* X1883Y3908D01* X1893Y3910D01* X1899Y3918D01* X1895Y3921D02* Y3919D01* X1889Y3912D01* X1879Y3913D01* X1875Y3921D01* Y3959D01* X1879Y3960D02* X1878Y3959D01* X1879Y3960D02* X1886Y3966D01* X1878Y3959D02* Y3921D01* X1885Y3914D01* X1892Y3920D01* Y3921D02* Y3920D01* Y3921D02* Y3959D01* X1891Y3967D02* X1895Y3959D01* X1899Y3958D02* X1896Y3968D01* X1895Y3959D02* Y3921D01* X1899Y3918D02* Y3922D01* Y3958D01* X1900Y3967D02* X1903Y3958D01* Y3922D01* X1897Y3909D02* X1902Y3917D01* X1903Y3922D01* X1897Y3909D02* X1888Y3905D01* X1878Y3906D01* X1870Y3913D01* X1868Y3922D01* Y3958D01* Y3963D02* Y3958D01* X1871D02* X1872Y3962D01* X1877Y3970D01* X1887Y3972D01* X1896Y3968D01* X1900Y3967D02* X1892Y3974D01* X1883Y3975D01* X1874Y3971D01* X1868Y3963D01* X2046Y4369D02* X2037Y4365D01* X2028Y4366D01* X2020Y4373D01* X2017Y4382D01* Y4418D01* X2018Y4423D02* X2017Y4418D01* X2018Y4423D02* X2023Y4431D01* X2032Y4435D01* X2027Y4430D02* X2021Y4422D01* Y4418D01* X2025Y4419D02* Y4421D01* X2021Y4418D02* Y4382D01* X2024Y4372D01* X2033Y4368D01* X2043Y4370D01* X2048Y4378D01* X2045Y4381D02* Y4379D01* X2039Y4372D01* X2052Y4382D02* Y4418D01* X2050Y4427D01* X2042Y4434D01* X2032Y4435D01* X2019Y4464D02* Y4556D01* X2015D02* Y4464D01* X1992Y4463D02* X2027D01* Y4557D01* X1992D01* X2011Y4556D02* Y4464D01* X2007D02* Y4556D01* X1768Y4588D02* Y4932D01* X1772Y4933D02* X1504D01* Y4587D01* X1516Y4588D02* Y4932D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D022* X1820Y4681D02* X1840D01* X1820Y4619D02* X1840D01* X1910D02* X1890D01* X1910Y4681D02* X1890D01* X1970D02* X1990D01* X1970Y4619D02* X1990D01* X2151Y3641D02* X2171D01* X2151Y3579D02* X2171D01* Y3519D02* X2151D01* X2171Y3457D02* X2151D01* Y3401D02* X2171D01* Y3339D02* X2151D01* Y3283D02* X2171D01* X2151Y3221D02* X2171D01* X2287Y3010D02* Y2990D01* Y2935D02* Y2915D01* Y2864D02* Y2844D01* X2225D02* Y2864D01* Y2915D02* Y2935D01* Y2990D02* Y3010D01* X2170Y2979D02* X2150D01* X2170Y3041D02* X2150D01* X2122Y2844D02* Y2864D01* X2060Y2844D02* Y2864D01* X1826Y2896D02* Y2876D01* X1764Y2896D02* Y2876D01* X1892Y2665D02* X1912D01* X1962D02* X1982D01* Y2603D02* X1962D01* X1912D02* X1892D01* X1939Y2452D02* X1959D01* X1939Y2390D02* X1959D01* X2037Y2394D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* Y2456D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2372Y1562D02* X2435D01* X2372Y1512D02* X2435D01* Y1462D02* X2372D01* X2435Y1412D02* X2372D01* X2435Y1362D02* X2372D01* X2435Y1312D02* X2372D01* X2435Y1262D02* X2372D01* X2435Y1212D02* X2372D01* X2219D02* X2282D01* X2219Y1262D02* X2282D01* X2219Y1312D02* X2282D01* X2219Y1362D02* X2282D01* X2219Y1412D02* X2282D01* X2219Y1462D02* X2282D01* Y1512D02* X2219D01* X2282Y1562D02* X2219D01* X2122Y1581D02* Y1561D01* X2060Y1581D02* Y1561D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* X3421Y1600D02* Y1620D01* X3359Y1600D02* Y1620D01* X2435Y1612D02* X2372D01* X2435Y1662D02* X2372D01* X2435Y1712D02* X2372D01* X2435Y1762D02* X2372D01* X2435Y1812D02* X2372D01* X2282Y1612D02* X2219D01* X2282Y1662D02* X2219D01* X2282Y1712D02* X2219D01* X2282Y1762D02* X2219D01* X2282Y1812D02* X2219D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984D02* Y1856D01* X1922Y1876D02* Y1856D01* X2185Y2128D02* Y2148D01* X2123Y2128D02* Y2148D01* X2125Y2203D02* Y2223D01* X2182D02* Y2203D01* X2244D02* Y2223D01* X2270Y2280D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2063Y2223D02* Y2203D01* X1982Y2123D02* X1962D01* X1912D02* X1892D01* Y2185D02* X1912D01* X1962D02* X1982D01* X1959Y2241D02* X1939D01* X1959Y2303D02* X1939D01* X2037Y2342D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* X2351Y2451D02* Y2431D01* X2413Y2451D02* Y2431D01* X2417Y2227D02* Y2207D01* Y2148D02* Y2128D01* X2355D02* Y2148D01* Y2207D02* Y2227D01* X2675Y2504D02* X2655D01* X2675Y2566D02* X2655D01* X2675Y2642D02* X2655D01* X2675Y2704D02* X2655D01* X3590Y3001D02* X3610D01* X3660D02* X3680D01* Y2939D02* X3660D01* X3610D02* X3590D01* X3320D02* X3300D01* X3320Y3001D02* X3300D01* X2850Y3489D02* X2870D01* X2850Y3551D02* X2870D01* X2850Y3609D02* X2870D01* X2850Y3671D02* X2870D01* X2850Y3859D02* X2830D01* X2780D02* X2760D01* Y3921D02* X2780D01* X2830D02* X2850D01* Y3979D02* X2830D01* X2777D02* X2757D01* Y4041D02* X2777D01* X2830D02* X2850D01* X3490Y4217D02* X3470D01* X3490Y4279D02* X3470D01* X4511Y3695D02* Y3675D01* X4449Y3695D02* Y3675D01* X4401D02* Y3695D01* X4339Y3675D02* Y3695D01* X3860Y3641D02* X3880D01* X3860Y3579D02* X3880D01* X3909Y3230D02* Y3210D01* X3971Y3230D02* Y3210D01* X3970Y3131D02* X3950D01* X3900D02* X3880D01* Y3069D02* X3900D01* X3950D02* X3970D01* Y3011D02* X3950D01* X3900D02* X3880D01* Y2949D02* X3900D01* X3950D02* X3970D01* X4154Y2640D02* Y2660D01* X4216Y2640D02* Y2660D01* X4312Y2640D02* Y2660D01* X4374Y2640D02* Y2660D01* X4414D02* Y2640D01* X4476Y2660D02* Y2640D01* X4970Y2472D02* X4990D01* X4970Y2410D02* X4990D01* X5799Y3379D02* Y3399D01* X5861Y3379D02* Y3399D01* X5838Y3801D02* Y3821D01* X5776Y3801D02* Y3821D01* X6626Y4258D02* Y4238D01* X6688Y4258D02* Y4238D01* X7154Y4774D02* Y4754D01* X7216Y4774D02* Y4754D01* X7162Y2856D02* Y2876D01* Y2919D02* Y2939D01* X7224D02* Y2919D01* Y2876D02* Y2856D01* Y1423D02* Y1443D01* Y1486D02* Y1506D01* X7162D02* Y1486D01* Y1443D02* Y1423D01* X6993Y1227D02* Y1207D01* X7055Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6993Y1156D02* Y1136D01* X6573Y1158D02* X6553D01* X6573Y1220D02* X6553D01* D044* X6861Y1916D02* D03* Y1866D02* D03* X6911D02* D03* Y1916D02* D03* X6961D02* D03* Y1866D02* D03* Y1816D02* D03* X6911D02* D03* X6861D02* D03* Y1716D02* D03* Y1766D02* D03* X6911D02* D03* Y1716D02* D03* X6961Y1766D02* D03* Y1716D02* D03* Y1666D02* D03* Y1616D02* D03* X6911D02* D03* Y1666D02* D03* X6861D02* D03* Y1616D02* D03* X7011D02* D03* Y1666D02* D03* Y1716D02* D03* Y1766D02* D03* Y1816D02* D03* Y1866D02* D03* Y1916D02* D03* Y2066D02* D03* Y2016D02* D03* Y1966D02* D03* X6961D02* D03* Y2016D02* D03* X6911D02* D03* Y1966D02* D03* X6861D02* D03* Y2016D02* D03* Y2066D02* D03* X6911D02* D03* X6961D02* D03* X7011Y2316D02* D03* Y2366D02* D03* Y2416D02* D03* Y2266D02* D03* Y2216D02* D03* Y2166D02* D03* Y2116D02* D03* X6961D02* D03* Y2166D02* D03* X6911Y2116D02* D03* X6861D02* D03* Y2166D02* D03* X6911D02* D03* Y2216D02* D03* X6961D02* D03* Y2266D02* D03* X6911D02* D03* X6861D02* D03* Y2216D02* D03* Y2316D02* D03* Y2366D02* D03* X6911D02* D03* Y2316D02* D03* X6961D02* D03* Y2366D02* D03* Y2416D02* D03* X6911D02* D03* X6861D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* Y2366D02* D03* Y2316D02* D03* X6761D02* D03* Y2366D02* D03* X6811D02* D03* Y2316D02* D03* Y2266D02* D03* X6761D02* D03* X6711D02* D03* X6611Y2316D02* D03* X6661D02* D03* Y2266D02* D03* X6611D02* D03* X6561D02* D03* X6511D02* D03* X6411Y2366D02* D03* Y2316D02* D03* X6361D02* D03* Y2366D02* D03* Y2416D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* Y2366D02* D03* X6611D02* D03* X6561D02* D03* Y2316D02* D03* X6511D02* D03* Y2366D02* D03* X6461D02* D03* Y2316D02* D03* Y2266D02* D03* X6411D02* D03* X6361D02* D03* X6311D02* D03* X6261D02* D03* X6211D02* D03* Y2366D02* D03* Y2316D02* D03* X6261D02* D03* Y2366D02* D03* X6311D02* D03* Y2316D02* D03* Y2416D02* D03* X6261D02* D03* X6211D02* D03* X6161D02* D03* Y2366D02* D03* Y2316D02* D03* Y2266D02* D03* X6111D02* D03* X6061Y2216D02* D03* Y2266D02* D03* X6011D02* D03* Y2216D02* D03* X5961Y2266D02* D03* X5911D02* D03* Y2216D02* D03* X5961D02* D03* Y2166D02* D03* X5911D02* D03* Y2116D02* D03* X5961D02* D03* X6011D02* D03* Y2166D02* D03* X6061D02* D03* Y2116D02* D03* X5911Y2316D02* D03* Y2366D02* D03* X5961D02* D03* Y2316D02* D03* X6011D02* D03* X6061D02* D03* X6111D02* D03* Y2366D02* D03* Y2416D02* D03* X6061D02* D03* Y2366D02* D03* X6011D02* D03* Y2416D02* D03* X5961D02* D03* X5911D02* D03* X5961Y2066D02* D03* X5911D02* D03* Y2016D02* D03* Y1966D02* D03* X5961D02* D03* Y2016D02* D03* X6061D02* D03* Y2066D02* D03* X6011D02* D03* Y2016D02* D03* Y1966D02* D03* X6061D02* D03* Y1916D02* D03* X6011D02* D03* X5961D02* D03* Y1866D02* D03* X5911D02* D03* Y1916D02* D03* Y1816D02* D03* X5961D02* D03* X6011D02* D03* Y1866D02* D03* X6061D02* D03* Y1816D02* D03* Y1616D02* D03* X6011D02* D03* Y1666D02* D03* X6061D02* D03* Y1716D02* D03* Y1766D02* D03* X6011D02* D03* Y1716D02* D03* X5961D02* D03* Y1766D02* D03* X5911D02* D03* Y1716D02* D03* Y1616D02* D03* Y1666D02* D03* X5961D02* D03* Y1616D02* D03* X6011Y1566D02* D03* X6061D02* D03* Y1516D02* D03* Y1466D02* D03* X6011D02* D03* Y1516D02* D03* X5961D02* D03* Y1566D02* D03* X5911D02* D03* Y1516D02* D03* Y1466D02* D03* X5961D02* D03* X5911Y1416D02* D03* X5961D02* D03* X6011D02* D03* Y1366D02* D03* X6061D02* D03* Y1416D02* D03* X6111D02* D03* Y1366D02* D03* X6161D02* D03* Y1416D02* D03* Y1466D02* D03* X6111D02* D03* X5911Y1316D02* D03* Y1366D02* D03* X5961D02* D03* Y1316D02* D03* X6011D02* D03* X6061D02* D03* X6111D02* D03* X6161D02* D03* X6211D02* D03* Y1366D02* D03* X6261D02* D03* Y1316D02* D03* X6311D02* D03* Y1366D02* D03* Y1416D02* D03* X6261D02* D03* X6211D02* D03* Y1466D02* D03* X6261D02* D03* X6311D02* D03* X6361D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* X6711D02* D03* X6761D02* D03* X6811D02* D03* X7011Y1316D02* D03* Y1366D02* D03* Y1416D02* D03* Y1466D02* D03* Y1516D02* D03* Y1566D02* D03* X6961D02* D03* Y1516D02* D03* X6911D02* D03* Y1566D02* D03* X6861D02* D03* Y1516D02* D03* Y1466D02* D03* X6911D02* D03* X6961D02* D03* X6511Y1416D02* D03* X6561D02* D03* X6611D02* D03* X6661D02* D03* Y1366D02* D03* X6611D02* D03* X6711Y1416D02* D03* X6761D02* D03* X6811D02* D03* Y1366D02* D03* X6861Y1416D02* D03* X6911D02* D03* X6961D02* D03* Y1366D02* D03* Y1316D02* D03* X6911D02* D03* Y1366D02* D03* X6861D02* D03* Y1316D02* D03* X6811D02* D03* X6761D02* D03* Y1366D02* D03* X6711D02* D03* Y1316D02* D03* X6661D02* D03* X6611D02* D03* X6561D02* D03* Y1366D02* D03* X6511D02* D03* Y1316D02* D03* X6361D02* D03* Y1366D02* D03* X6411D02* D03* Y1316D02* D03* X6461D02* D03* Y1366D02* D03* Y1416D02* D03* X6411D02* D03* X6361D02* D03* X3900Y2510D02* D03* Y2460D02* D03* Y2410D02* D03* Y2360D02* D03* Y2310D02* D03* Y2260D02* D03* X3850Y2310D02* D03* Y2260D02* D03* X3800D02* D03* Y2310D02* D03* Y2360D02* D03* X3850D02* D03* X3800Y2460D02* D03* Y2410D02* D03* X3850D02* D03* Y2460D02* D03* Y2510D02* D03* X3800D02* D03* X3750D02* D03* Y2460D02* D03* X3700D02* D03* Y2510D02* D03* X3650D02* D03* Y2460D02* D03* Y2410D02* D03* Y2360D02* D03* X3700D02* D03* Y2310D02* D03* X3750D02* D03* Y2360D02* D03* Y2410D02* D03* X3700D02* D03* Y2260D02* D03* X3750D02* D03* Y2210D02* D03* X3700D02* D03* Y2160D02* D03* Y2110D02* D03* X3750D02* D03* Y2160D02* D03* X3850D02* D03* Y2110D02* D03* X3800D02* D03* Y2160D02* D03* Y2210D02* D03* X3850D02* D03* X3900D02* D03* Y2160D02* D03* Y2110D02* D03* Y2060D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* X3850D02* D03* X3800D02* D03* X3750D02* D03* Y1810D02* D03* X3700D02* D03* Y1760D02* D03* Y1860D02* D03* X3750D02* D03* X3800D02* D03* Y1810D02* D03* X3850D02* D03* Y1860D02* D03* Y1960D02* D03* Y1910D02* D03* X3800D02* D03* Y1960D02* D03* Y2010D02* D03* X3850D02* D03* Y2060D02* D03* X3800D02* D03* X3750D02* D03* X3700D02* D03* X3750Y2010D02* D03* X3700D02* D03* Y1960D02* D03* Y1910D02* D03* X3750D02* D03* Y1960D02* D03* X3650Y2160D02* D03* Y2110D02* D03* Y2060D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* X3600D02* D03* X3550D02* D03* Y1810D02* D03* Y1860D02* D03* X3600D02* D03* Y1810D02* D03* Y1910D02* D03* Y1960D02* D03* X3550D02* D03* Y1910D02* D03* X3500D02* D03* Y1960D02* D03* X3450D02* D03* Y1910D02* D03* X3400D02* D03* X3350D02* D03* X3300D02* D03* X3200Y1860D02* D03* Y1810D02* D03* X3250D02* D03* Y1860D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* Y1810D02* D03* X3450D02* D03* Y1860D02* D03* X3500D02* D03* Y1810D02* D03* Y1760D02* D03* X3450D02* D03* X3400D02* D03* X3350D02* D03* Y1810D02* D03* X3300D02* D03* Y1760D02* D03* X3250D02* D03* X3200D02* D03* Y1710D02* D03* X3250D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* X3450D02* D03* X3500D02* D03* X3550D02* D03* X3600D02* D03* X3650D02* D03* X3700D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3900D02* D03* D019* X2043Y1632D02* X2059D01* X2122D02* X2138D01* X2122Y1707D02* X2138D01* X2695Y1530D02* Y1472D01* X2727Y1530D02* Y1472D01* X2758Y1530D02* Y1472D01* X2821D02* Y1530D01* X2790Y1472D02* Y1530D01* X2853D02* Y1472D01* X2884Y1530D02* Y1472D01* X2916Y1530D02* Y1472D01* X2947Y1530D02* Y1472D01* X2979Y1530D02* Y1472D01* X3042D02* Y1530D01* X3010Y1472D02* Y1530D01* X3105Y1472D02* Y1530D01* X3073Y1472D02* Y1530D01* X3136D02* Y1472D01* X3168Y1530D02* Y1472D01* X3199Y1530D02* Y1472D01* X3262D02* Y1530D01* X3231Y1472D02* Y1530D01* X3294D02* Y1472D01* X3325Y1530D02* Y1472D01* X3357Y1530D02* Y1472D01* X3388Y1530D02* Y1472D01* X3420Y1530D02* Y1472D01* X3483D02* Y1530D01* X3451Y1472D02* Y1530D01* X3514D02* Y1472D01* X3546Y1530D02* Y1472D01* X3609D02* Y1530D01* X3577Y1472D02* Y1530D01* X3790D02* Y1472D01* X3821Y1530D02* Y1472D01* X3884D02* Y1530D01* X3853Y1472D02* Y1530D01* X3947Y1472D02* Y1530D01* X3916Y1472D02* Y1530D01* X3979D02* Y1472D01* X4010Y1530D02* Y1472D01* X4042Y1530D02* Y1472D01* X4105D02* Y1530D01* X4073Y1472D02* Y1530D01* X4136D02* Y1472D01* X4168Y1530D02* Y1472D01* X4199Y1530D02* Y1472D01* X4231Y1530D02* Y1472D01* X4262Y1530D02* Y1472D01* X4325D02* Y1530D01* X4294Y1472D02* Y1530D01* X4357D02* Y1472D01* X4388Y1530D02* Y1472D01* X4420Y1530D02* Y1472D01* X4451Y1530D02* Y1472D01* X4483Y1530D02* Y1472D01* X4546D02* Y1530D01* X4514Y1472D02* Y1530D01* X4577D02* Y1472D01* X4609Y1530D02* Y1472D01* X4640Y1530D02* Y1472D01* X4703D02* Y1530D01* X4671Y1472D02* Y1530D01* X4734D02* Y1472D01* X4766Y1530D02* Y1472D01* X4797Y1530D02* Y1472D01* X4860D02* Y1530D01* X4829Y1472D02* Y1530D01* X4923Y1472D02* Y1530D01* X4892Y1472D02* Y1530D01* X4955D02* Y1472D01* X4986Y1530D02* Y1472D01* X5018Y1530D02* Y1472D01* X5049Y1530D02* Y1472D01* X5081Y1530D02* Y1472D01* X5034Y1208D02* Y1150D01* X5065Y1208D02* Y1150D01* X5002D02* Y1208D01* X4971Y1150D02* Y1208D01* X4939Y1150D02* Y1208D01* X4908Y1150D02* Y1208D01* X4876Y1150D02* Y1208D01* X4813D02* Y1150D01* X4845Y1208D02* Y1150D01* X4750Y1208D02* Y1150D01* X4782Y1208D02* Y1150D01* X4719D02* Y1208D01* X4687Y1150D02* Y1208D01* X4656Y1150D02* Y1208D01* X4593D02* Y1150D01* X4624Y1208D02* Y1150D01* X4561D02* Y1208D01* X4530Y1150D02* Y1208D01* X4498Y1150D02* Y1208D01* X4467Y1150D02* Y1208D01* X4435Y1150D02* Y1208D01* X4372D02* Y1150D01* X4404Y1208D02* Y1150D01* X4309Y1208D02* Y1150D01* X4341Y1208D02* Y1150D01* X4278D02* Y1208D01* X4246Y1150D02* Y1208D01* X4215Y1150D02* Y1208D01* X4152D02* Y1150D01* X4183Y1208D02* Y1150D01* X4120D02* Y1208D01* X4089Y1150D02* Y1208D01* X4057Y1150D02* Y1208D01* X4026Y1150D02* Y1208D01* X3994Y1150D02* Y1208D01* X3931D02* Y1150D01* X3963Y1208D02* Y1150D01* X3868Y1208D02* Y1150D01* X3900Y1208D02* Y1150D01* X3837D02* Y1208D01* X3805Y1150D02* Y1208D01* X3774Y1150D02* Y1208D01* X3593Y1150D02* Y1208D01* X3561Y1150D02* Y1208D01* X3530Y1150D02* Y1208D01* X3467D02* Y1150D01* X3498Y1208D02* Y1150D01* X3435D02* Y1208D01* X3404Y1150D02* Y1208D01* X3372Y1150D02* Y1208D01* X3309D02* Y1150D01* X3341Y1208D02* Y1150D01* X3278D02* Y1208D01* X3246Y1150D02* Y1208D01* X3215Y1150D02* Y1208D01* X3152D02* Y1150D01* X3183Y1208D02* Y1150D01* X3120D02* Y1208D01* X3089Y1150D02* Y1208D01* X3057Y1150D02* Y1208D01* X3026Y1150D02* Y1208D01* X2994Y1150D02* Y1208D01* X2931D02* Y1150D01* X2963Y1208D02* Y1150D01* X2900D02* Y1208D01* X2868Y1150D02* Y1208D01* X2805D02* Y1150D01* X2837Y1208D02* Y1150D01* X2742Y1208D02* Y1150D01* X2774Y1208D02* Y1150D01* X2711D02* Y1208D01* X2679Y1150D02* Y1208D01* D044* X2850Y1710D02* D03* X2800D02* D03* Y1760D02* D03* X2850D02* D03* X2950D02* D03* Y1810D02* D03* X2900D02* D03* Y1760D02* D03* Y1710D02* D03* X2950D02* D03* X3000D02* D03* Y1760D02* D03* Y1810D02* D03* X3050D02* D03* Y1760D02* D03* X3100D02* D03* Y1810D02* D03* X3050Y1710D02* D03* X3100D02* D03* X3150D02* D03* Y1760D02* D03* Y1810D02* D03* Y1860D02* D03* X3100D02* D03* X3050D02* D03* X3000D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* Y1810D02* D03* X2800D02* D03* Y1860D02* D03* X2850Y1960D02* D03* Y2010D02* D03* X2800D02* D03* Y1960D02* D03* Y1910D02* D03* X2850D02* D03* X2900D02* D03* X2950D02* D03* X3000D02* D03* Y1960D02* D03* Y2010D02* D03* X2950D02* D03* Y1960D02* D03* X2900D02* D03* Y2010D02* D03* X3000Y2060D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* Y2110D02* D03* X2800D02* D03* Y2060D02* D03* Y2160D02* D03* Y2210D02* D03* X2850D02* D03* Y2160D02* D03* X2900Y2110D02* D03* Y2160D02* D03* X2950D02* D03* Y2110D02* D03* X3000D02* D03* Y2160D02* D03* Y2210D02* D03* X2950D02* D03* X2900D02* D03* X2850Y2260D02* D03* X2800D02* D03* X3300Y2310D02* D03* Y2360D02* D03* X3250D02* D03* Y2310D02* D03* Y2260D02* D03* X3300D02* D03* X3350D02* D03* Y2310D02* D03* Y2360D02* D03* X3450D02* D03* X3400D02* D03* Y2260D02* D03* Y2310D02* D03* X3450D02* D03* Y2260D02* D03* Y2160D02* D03* Y2210D02* D03* X3400D02* D03* Y2160D02* D03* X3350D02* D03* Y2210D02* D03* X3300D02* D03* Y2160D02* D03* X3250D02* D03* Y2210D02* D03* Y1960D02* D03* Y1910D02* D03* X3200D02* D03* Y1960D02* D03* X3150D02* D03* Y1910D02* D03* X3050D02* D03* X3100D02* D03* Y1960D02* D03* X3050D02* D03* Y2010D02* D03* Y2060D02* D03* Y2110D02* D03* Y2160D02* D03* X3000Y2260D02* D03* Y2310D02* D03* Y2360D02* D03* X2950D02* D03* Y2310D02* D03* Y2260D02* D03* X2900D02* D03* Y2310D02* D03* Y2360D02* D03* X2850D02* D03* Y2310D02* D03* X2800D02* D03* Y2360D02* D03* X2850Y2410D02* D03* X2800D02* D03* Y2460D02* D03* Y2510D02* D03* X2850D02* D03* Y2460D02* D03* X3000Y2510D02* D03* Y2460D02* D03* X2950D02* D03* Y2510D02* D03* X2900D02* D03* Y2460D02* D03* Y2410D02* D03* X2950D02* D03* X3000D02* D03* X3050Y2360D02* D03* Y2410D02* D03* Y2460D02* D03* Y2510D02* D03* Y2560D02* D03* Y2610D02* D03* X3100D02* D03* Y2560D02* D03* X3150D02* D03* Y2610D02* D03* X3200D02* D03* Y2560D02* D03* X3250D02* D03* Y2610D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* Y2660D02* D03* X3450D02* D03* Y2610D02* D03* Y2560D02* D03* X3500D02* D03* Y2610D02* D03* Y2660D02* D03* Y2710D02* D03* X3450D02* D03* X3400D02* D03* X3350D02* D03* Y2660D02* D03* X3300D02* D03* Y2710D02* D03* X3250D02* D03* Y2660D02* D03* X3200D02* D03* Y2710D02* D03* X3100Y2760D02* D03* Y2810D02* D03* X3050D02* D03* Y2760D02* D03* X3000D02* D03* Y2810D02* D03* X2950D02* D03* Y2760D02* D03* X2900D02* D03* Y2810D02* D03* X2850D02* D03* Y2760D02* D03* X2800D02* D03* Y2810D02* D03* X2850Y2710D02* D03* Y2660D02* D03* X2800D02* D03* Y2710D02* D03* Y2610D02* D03* Y2560D02* D03* X2850D02* D03* Y2610D02* D03* X2900D02* D03* Y2560D02* D03* X2950D02* D03* X3000D02* D03* Y2610D02* D03* X2950D02* D03* Y2660D02* D03* X2900D02* D03* Y2710D02* D03* X2950D02* D03* X3000D02* D03* Y2660D02* D03* X3050D02* D03* Y2710D02* D03* X3100D02* D03* Y2660D02* D03* X3150D02* D03* Y2710D02* D03* Y2760D02* D03* Y2810D02* D03* X3200D02* D03* Y2760D02* D03* X3250D02* D03* Y2810D02* D03* X3300D02* D03* Y2760D02* D03* X3350D02* D03* Y2810D02* D03* X3400D02* D03* Y2760D02* D03* X3450D02* D03* Y2810D02* D03* X3500D02* D03* Y2760D02* D03* X3550D02* D03* Y2810D02* D03* X3600D02* D03* Y2760D02* D03* X3650D02* D03* Y2810D02* D03* X3550Y2710D02* D03* X3600D02* D03* Y2660D02* D03* X3550D02* D03* Y2610D02* D03* Y2560D02* D03* X3600D02* D03* Y2610D02* D03* X3650Y2560D02* D03* Y2610D02* D03* Y2660D02* D03* Y2710D02* D03* X3700Y2810D02* D03* Y2760D02* D03* X3750D02* D03* Y2810D02* D03* X3800D02* D03* Y2760D02* D03* X3850D02* D03* Y2810D02* D03* X3900D02* D03* Y2760D02* D03* Y2710D02* D03* Y2660D02* D03* Y2610D02* D03* Y2560D02* D03* X3850D02* D03* Y2610D02* D03* Y2660D02* D03* X3800D02* D03* Y2610D02* D03* Y2560D02* D03* X3750D02* D03* X3700D02* D03* Y2610D02* D03* X3750D02* D03* Y2660D02* D03* X3700D02* D03* Y2710D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3120Y3320D02* D03* Y3270D02* D03* X3170D02* D03* Y3320D02* D03* X3220D02* D03* Y3270D02* D03* X3270D02* D03* Y3320D02* D03* X3320D02* D03* Y3270D02* D03* X3370D02* D03* Y3320D02* D03* X3420D02* D03* Y3370D02* D03* Y3420D02* D03* X3370Y3470D02* D03* Y3420D02* D03* Y3370D02* D03* X3320D02* D03* Y3420D02* D03* X3270D02* D03* Y3370D02* D03* X3220D02* D03* Y3420D02* D03* X3170D02* D03* Y3370D02* D03* X3120D02* D03* Y3420D02* D03* X3070D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3020D02* D03* X2970D02* D03* Y3320D02* D03* X3020D02* D03* Y3370D02* D03* X2970D02* D03* Y3420D02* D03* X3020D02* D03* X2970Y3470D02* D03* Y3520D02* D03* X3020D02* D03* Y3470D02* D03* X3070D02* D03* Y3520D02* D03* Y3570D02* D03* X3020D02* D03* X2970D02* D03* X3020Y3670D02* D03* Y3620D02* D03* X2970D02* D03* Y3670D02* D03* Y3720D02* D03* X3020D02* D03* X2970Y3770D02* D03* Y3820D02* D03* X3020D02* D03* Y3770D02* D03* X3070D02* D03* Y3820D02* D03* X3120D02* D03* Y3770D02* D03* X3170D02* D03* Y3820D02* D03* X3120Y3720D02* D03* X3070D02* D03* Y3670D02* D03* Y3620D02* D03* X3120D02* D03* Y3670D02* D03* X3170D02* D03* Y3570D02* D03* Y3520D02* D03* X3120D02* D03* Y3570D02* D03* Y3470D02* D03* X3170D02* D03* X3220D02* D03* X3270D02* D03* X3370Y3670D02* D03* Y3720D02* D03* X3320D02* D03* Y3670D02* D03* Y3620D02* D03* X3370D02* D03* X3420D02* D03* Y3670D02* D03* Y3720D02* D03* X3570Y3670D02* D03* X3620D02* D03* Y3720D02* D03* X3670D02* D03* X3720D02* D03* Y3670D02* D03* Y3620D02* D03* X3670Y3670D02* D03* Y3620D02* D03* X3620D02* D03* X3570Y3570D02* D03* Y3520D02* D03* Y3470D02* D03* X3520D02* D03* X3470D02* D03* Y3420D02* D03* X3520D02* D03* X3570D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3520D02* D03* Y3320D02* D03* Y3370D02* D03* X3470D02* D03* Y3320D02* D03* Y3270D02* D03* X3420D02* D03* X3770Y3420D02* D03* Y3370D02* D03* Y3320D02* D03* Y3270D02* D03* X3670D02* D03* X3620D02* D03* Y3320D02* D03* Y3370D02* D03* X3670D02* D03* Y3320D02* D03* X3720Y3270D02* D03* Y3320D02* D03* Y3370D02* D03* Y3420D02* D03* X3670D02* D03* X3620D02* D03* X3670Y3520D02* D03* Y3470D02* D03* X3620D02* D03* Y3520D02* D03* Y3570D02* D03* X3670D02* D03* X3720D02* D03* Y3520D02* D03* Y3470D02* D03* X3770D02* D03* Y3520D02* D03* Y3570D02* D03* Y3620D02* D03* Y3670D02* D03* Y3720D02* D03* Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* Y3920D02* D03* Y3970D02* D03* Y4020D02* D03* Y4070D02* D03* X3170Y4020D02* D03* Y4070D02* D03* X3120D02* D03* Y4020D02* D03* Y3970D02* D03* X3170D02* D03* X3220D02* D03* Y4020D02* D03* Y4070D02* D03* X3270D02* D03* X3320D02* D03* X3370D02* D03* X3420D02* D03* X3470D02* D03* Y4020D02* D03* Y3970D02* D03* X3520D02* D03* Y4020D02* D03* Y4070D02* D03* X3570D02* D03* Y4020D02* D03* Y3970D02* D03* X3620Y4020D02* D03* Y3970D02* D03* X3670D02* D03* Y4020D02* D03* X3620Y4070D02* D03* X3670D02* D03* X3720D02* D03* Y4020D02* D03* Y3970D02* D03* X3620Y3920D02* D03* Y3870D02* D03* X3670D02* D03* Y3920D02* D03* X3720D02* D03* Y3870D02* D03* Y3820D02* D03* Y3770D02* D03* X3670Y3820D02* D03* Y3770D02* D03* X3620D02* D03* Y3820D02* D03* X3570Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* Y3920D02* D03* X3520Y3870D02* D03* Y3920D02* D03* X3470D02* D03* Y3870D02* D03* X3420Y3920D02* D03* Y3970D02* D03* Y4020D02* D03* X3370D02* D03* Y3970D02* D03* X3320D02* D03* Y4020D02* D03* X3270D02* D03* Y3970D02* D03* X3370Y3870D02* D03* Y3920D02* D03* X3320D02* D03* X3270D02* D03* Y3870D02* D03* X3220D02* D03* Y3920D02* D03* X3170D02* D03* Y3870D02* D03* X3120D02* D03* Y3920D02* D03* X3070D02* D03* Y3870D02* D03* X3020D02* D03* Y3920D02* D03* X2970D02* D03* Y3870D02* D03* Y3970D02* D03* X3020D02* D03* X3070D02* D03* Y4020D02* D03* Y4070D02* D03* X3020D02* D03* Y4020D02* D03* X2970D02* D03* Y4070D02* D03* D019* X2508Y4089D02* Y4041D01* X2558Y4089D02* Y4041D01* X2608Y4089D02* Y4041D01* X2658Y4089D02* Y4041D01* Y3865D02* Y3817D01* X2608Y3865D02* Y3817D01* X2558Y3865D02* Y3817D01* X2508Y3865D02* Y3817D01* D050* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D061* X1528Y1709D02* D03* D029* X1607Y1866D02* X1638D01* X1607Y1976D02* X1638D01* X1587Y2059D02* X1516D01* X1809Y2165D02* Y2236D01* X1516Y2343D02* X1587D01* X1516Y2531D02* X1587D01* X1809Y2638D02* Y2709D01* X1587Y2815D02* X1516D01* X2365Y2996D02* Y2965D01* X2475Y2996D02* Y2965D01* X2555Y2996D02* Y2965D01* X2665Y2996D02* Y2965D01* X3796Y3005D02* X3765D01* X3796Y3115D02* X3765D01* X3936Y3305D02* X3905D01* X3936Y3415D02* X3905D01* X4571Y2272D02* Y2303D01* X4681Y2272D02* Y2303D01* X5335Y2271D02* Y2240D01* X5445Y2271D02* Y2240D01* X5673Y2271D02* Y2240D01* X5783Y2271D02* Y2240D01* X6728Y2614D02* Y2645D01* X6838Y2614D02* Y2645D01* X6929Y2614D02* Y2645D01* X7039Y2614D02* Y2645D01* X6783Y1162D02* Y1193D01* X6673Y1162D02* Y1193D01* X5760Y1185D02* Y1216D01* X5650Y1185D02* Y1216D01* X6827Y4055D02* X6796D01* X6827Y4165D02* X6796D01* D120* X2330Y2374D02* X2358D01* X2330Y2343D02* X2358D01* X2330Y2311D02* X2358D01* X2330Y2280D02* X2358D01* X2405D02* X2433D01* X2405Y2311D02* X2433D01* X2405Y2343D02* X2433D01* X2405Y2374D02* X2433D01* X2571Y2343D02* X2543D01* X2571Y2311D02* X2543D01* X2571Y2280D02* X2543D01* X2571Y2248D02* X2543D01* Y2197D02* X2571D01* X2543Y2165D02* X2571D01* X2543Y2134D02* X2571D01* X2543Y2102D02* X2571D01* X2618D02* X2646D01* X2618Y2134D02* X2646D01* X2618Y2165D02* X2646D01* X2618Y2197D02* X2646D01* Y2248D02* X2618D01* X2646Y2280D02* X2618D01* X2646Y2311D02* X2618D01* X2646Y2343D02* X2618D01* X5749Y3637D02* X5777D01* X5749Y3669D02* X5777D01* X5749Y3700D02* X5777D01* X5749Y3732D02* X5777D01* X5823D02* X5851D01* X5823Y3700D02* X5851D01* X5823Y3669D02* X5851D01* X5823Y3637D02* X5851D01* X5818Y3576D02* Y3548D01* X5849Y3576D02* Y3548D01* X5881Y3576D02* Y3548D01* X5912Y3576D02* Y3548D01* Y3501D02* Y3473D01* X5881D02* Y3501D01* X5849Y3473D02* Y3501D01* X5818Y3473D02* Y3501D01* X7142Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* X7142Y3130D02* X7170D01* X7142Y3161D02* X7170D01* X7142Y3193D02* X7170D01* X7142Y3224D02* X7170D01* X7216D02* X7244D01* X7216Y3193D02* X7244D01* X7216Y3161D02* X7244D01* X7216Y3130D02* X7244D01* Y3079D02* X7216D01* X7244Y3047D02* X7216D01* X7244Y3016D02* X7216D01* X7244Y2984D02* X7216D01* X7170D02* X7142D01* X7170Y3016D02* X7142D01* X7170Y3047D02* X7142D01* X7170Y3079D02* X7142D01* X7244Y2717D02* X7216D01* X7244Y2748D02* X7216D01* X7244Y2780D02* X7216D01* X7244Y2811D02* X7216D01* X7170D02* X7142D01* X7170Y2780D02* X7142D01* X7170Y2748D02* X7142D01* X7170Y2717D02* X7142D01* Y2665D02* X7170D01* X7142Y2634D02* X7170D01* X7142Y2602D02* X7170D01* X7142Y2571D02* X7170D01* X7216D02* X7244D01* X7216Y2602D02* X7244D01* X7216Y2634D02* X7244D01* X7216Y2665D02* X7244D01* X7142Y2425D02* X7170D01* X7142Y2457D02* X7170D01* X7142Y2488D02* X7170D01* X7142Y2520D02* X7170D01* X7216D02* X7244D01* X7216Y2488D02* X7244D01* X7216Y2457D02* X7244D01* X7216Y2425D02* X7244D01* Y2374D02* X7216D01* X7244Y2343D02* X7216D01* X7244Y2311D02* X7216D01* X7244Y2280D02* X7216D01* X7170D02* X7142D01* X7170Y2311D02* X7142D01* X7170Y2343D02* X7142D01* X7170Y2374D02* X7142D01* X7244Y2134D02* X7216D01* X7244Y2165D02* X7216D01* X7244Y2197D02* X7216D01* X7244Y2228D02* X7216D01* X7170D02* X7142D01* X7170Y2197D02* X7142D01* X7170Y2165D02* X7142D01* X7170Y2134D02* X7142D01* Y2083D02* X7170D01* X7142Y2051D02* X7170D01* X7142Y2020D02* X7170D01* X7142Y1988D02* X7170D01* X7216D02* X7244D01* X7216Y2020D02* X7244D01* X7216Y2051D02* X7244D01* X7216Y2083D02* X7244D01* Y1843D02* X7216D01* X7244Y1874D02* X7216D01* X7244Y1906D02* X7216D01* X7244Y1937D02* X7216D01* X7170D02* X7142D01* X7170Y1906D02* X7142D01* X7170Y1874D02* X7142D01* X7170Y1843D02* X7142D01* Y1791D02* X7170D01* X7142Y1760D02* X7170D01* X7142Y1728D02* X7170D01* X7142Y1697D02* X7170D01* X7216D02* X7244D01* X7216Y1728D02* X7244D01* X7216Y1760D02* X7244D01* X7216Y1791D02* X7244D01* X7142Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* X7142Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X7216Y4535D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7142Y4587D02* X7170D01* X7142Y4618D02* X7170D01* X7142Y4650D02* X7170D01* X7142Y4681D02* X7170D01* X7216D02* X7244D01* X7216Y4650D02* X7244D01* X7216Y4618D02* X7244D01* X7216Y4587D02* X7244D01* D057* X3940Y4522D02* D03* X2359D02* D03* D031* X2543Y2734D02* X2536D01* X2378D02* X2371D01* X2248D02* X2255D01* X2083D02* X2090D01* X2083Y2534D02* X2090D01* X2248D02* X2255D01* X2378D02* X2371D01* X2543D02* X2536D01* D054* X2081Y4644D02* D03* X1814Y4268D02* D03* Y4189D02* D03* Y4091D02* D03* X1511Y3526D02* D03* Y3426D02* D03* Y3141D02* D03* Y3041D02* D03* X1652Y2732D02* D03* X1573D02* D03* Y2614D02* D03* X1652D02* D03* X1730D02* D03* X1652Y2260D02* D03* X1573D02* D03* Y2142D02* D03* X1652D02* D03* X1730D02* D03* D028* X1606Y1069D02* X3047D01* X3344D02* X5405D01* X6252D02* X7693D01* D053* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D049* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D048* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D346* X1641Y1217D02* D03* Y4720D02* D03* D337* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D043* X2293Y3409D02* D03* X2254D02* D03* Y3448D02* D03* X2293D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2254D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2333D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2372D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2333D02* D03* Y3409D02* D03* X2372D02* D03* X2333Y3370D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* X2254D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2293D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2254D02* D03* Y3094D02* D03* X2293D02* D03* X2372D02* D03* X2333D02* D03* Y3133D02* D03* X2372D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2412D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* Y3094D02* D03* X2451D02* D03* X2490Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2451D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2490D02* D03* Y3094D02* D03* X2530D02* D03* Y3133D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2569D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* Y3094D02* D03* X2608D02* D03* Y3133D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2648D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* X2727D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* X2687D02* D03* Y3330D02* D03* Y3291D02* D03* Y3252D02* D03* Y3212D02* D03* Y3173D02* D03* Y3133D02* D03* X2648D02* D03* Y3094D02* D03* X2687D02* D03* X2766D02* D03* X2727D02* D03* Y3133D02* D03* X2766D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* Y3409D02* D03* X2727D02* D03* Y3448D02* D03* X2766D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2727Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2687D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2648D02* D03* Y3409D02* D03* X2687D02* D03* X2608D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2648D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2569Y3409D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2530D02* D03* X2490D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* X2451Y3409D02* D03* X2412D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2451D02* D03* Y3567D02* D03* Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* X2490D02* D03* Y3409D02* D03* X2530D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* D059* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D334* X1670Y3058D02* D03* Y3509D02* D03* D300* X2537Y4699D02* Y4822D01* X2562Y4699D02* Y4822D01* X2612D02* Y4699D01* X2587Y4822D02* Y4699D01* X2637D02* Y4822D01* X2662Y4699D02* Y4822D01* X2712D02* Y4699D01* X2687Y4822D02* Y4699D01* X2737D02* Y4822D01* X2762Y4699D02* Y4822D01* X2812D02* Y4699D01* X2787Y4822D02* Y4699D01* X2837D02* Y4822D01* X2862Y4699D02* Y4822D01* X2912D02* Y4699D01* X2887Y4822D02* Y4699D01* X2937D02* Y4822D01* X2962Y4699D02* Y4822D01* X3012D02* Y4699D01* X2987Y4822D02* Y4699D01* X3037D02* Y4822D01* X3062Y4699D02* Y4822D01* X3112D02* Y4699D01* X3087Y4822D02* Y4699D01* X3137D02* Y4822D01* X3162Y4699D02* Y4822D01* X3212D02* Y4699D01* X3187Y4822D02* Y4699D01* X3237D02* Y4822D01* X3262Y4699D02* Y4822D01* X3312D02* Y4699D01* X3287Y4822D02* Y4699D01* X3337D02* Y4822D01* X3362Y4699D02* Y4822D01* X3412D02* Y4699D01* X3387Y4822D02* Y4699D01* X3437D02* Y4822D01* X3462Y4699D02* Y4822D01* X3512D02* Y4699D01* X3487Y4822D02* Y4699D01* X3537D02* Y4822D01* X3562Y4699D02* Y4822D01* X3612D02* Y4699D01* X3587Y4822D02* Y4699D01* X3662Y4822D02* Y4699D01* X3637Y4822D02* Y4699D01* X3687D02* Y4822D01* X3712Y4699D02* Y4822D01* X3737Y4699D02* Y4822D01* X3762Y4699D02* Y4822D01* X4400Y3368D02* X4474D01* X4400Y3343D02* X4474D01* Y3393D02* X4400D01* X4474Y3418D02* X4400D01* Y3468D02* X4474D01* X4400Y3443D02* X4474D01* Y3493D02* X4400D01* X4474Y3518D02* X4400D01* Y3568D02* X4474D01* X4400Y3543D02* X4474D01* Y3593D02* X4400D01* X4474Y3618D02* X4400D01* X4100D02* X4026D01* X4100Y3593D02* X4026D01* Y3543D02* X4100D01* X4026Y3568D02* X4100D01* Y3518D02* X4026D01* X4100Y3493D02* X4026D01* Y3443D02* X4100D01* X4026Y3468D02* X4100D01* Y3418D02* X4026D01* X4100Y3393D02* X4026D01* Y3343D02* X4100D01* X4026Y3368D02* X4100D01* X4026Y3293D02* X4100D01* X4026Y3318D02* X4100D01* Y3268D02* X4026D01* X4100Y3243D02* X4026D01* Y3193D02* X4100D01* X4026Y3218D02* X4100D01* Y3168D02* X4026D01* X4100Y3143D02* X4026D01* Y3093D02* X4100D01* X4026Y3118D02* X4100D01* Y3068D02* X4026D01* X4100Y3043D02* X4026D01* Y2993D02* X4100D01* X4026Y3018D02* X4100D01* Y2968D02* X4026D01* X4100Y2943D02* X4026D01* X4400Y2968D02* X4474D01* X4400Y2943D02* X4474D01* Y2993D02* X4400D01* X4474Y3018D02* X4400D01* Y3068D02* X4474D01* X4400Y3043D02* X4474D01* Y3093D02* X4400D01* X4474Y3118D02* X4400D01* Y3168D02* X4474D01* X4400Y3143D02* X4474D01* X4400Y3218D02* X4474D01* X4400Y3193D02* X4474D01* Y3243D02* X4400D01* X4474Y3268D02* X4400D01* Y3318D02* X4474D01* X4400Y3293D02* X4474D01* D360* X5524Y1668D02* X5594D01* X4807Y1820D02* X4737D01* X4287D02* X4217D01* D026* X4275Y3702D02* X4251D01* X4149D02* X4125D01* Y3918D02* X4149D01* X4251D02* X4275D01* D319* Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D062* X7425Y2102D02* D03* X7661D02* D03* D071* X2043Y1632D02* D03* X2059D02* D03* X2122D02* D03* X2138D02* D03* Y1707D02* D03* X2122D02* D03* X2695Y1530D02* D03* X2727D02* D03* X2758D02* D03* X2790D02* D03* X2821D02* D03* X2853D02* D03* X2884D02* D03* X2916D02* D03* X2947D02* D03* X2979D02* D03* X3010D02* D03* X3042D02* D03* X3073D02* D03* X3105D02* D03* X3136D02* D03* X3168D02* D03* X3199D02* D03* X3231D02* D03* X3262D02* D03* X3294D02* D03* X3325D02* D03* X3357D02* D03* X3388D02* D03* X3420D02* D03* X3451D02* D03* X3483D02* D03* X3514D02* D03* X3546D02* D03* X3577D02* D03* X3609D02* D03* Y1472D02* D03* X3577D02* D03* X3546D02* D03* X3514D02* D03* X3483D02* D03* X3451D02* D03* X3420D02* D03* X3388D02* D03* X3357D02* D03* X3325D02* D03* X3294D02* D03* X3262D02* D03* X3231D02* D03* X3199D02* D03* X3168D02* D03* X3136D02* D03* X3105D02* D03* X3073D02* D03* X3042D02* D03* X3010D02* D03* X2979D02* D03* X2947D02* D03* X2916D02* D03* X2884D02* D03* X2853D02* D03* X2821D02* D03* X2790D02* D03* X2758D02* D03* X2727D02* D03* X2695D02* D03* X3593Y1208D02* D03* X3561D02* D03* X3530D02* D03* X3498D02* D03* X3467D02* D03* X3435D02* D03* X3404D02* D03* X3372D02* D03* X3341D02* D03* X3309D02* D03* X3278D02* D03* X3246D02* D03* X3215D02* D03* X3183D02* D03* X3152D02* D03* X3120D02* D03* X3089D02* D03* X3057D02* D03* X3026D02* D03* X2994D02* D03* X2963D02* D03* X2931D02* D03* X2900D02* D03* X2868D02* D03* X2837D02* D03* X2805D02* D03* X2774D02* D03* X2742D02* D03* X2711D02* D03* X2679D02* D03* Y1150D02* D03* X2711D02* D03* X2742D02* D03* X2774D02* D03* X2805D02* D03* X2837D02* D03* X2868D02* D03* X2900D02* D03* X2931D02* D03* X2963D02* D03* X2994D02* D03* X3026D02* D03* X3057D02* D03* X3089D02* D03* X3120D02* D03* X3152D02* D03* X3183D02* D03* X3215D02* D03* X3246D02* D03* X3278D02* D03* X3309D02* D03* X3341D02* D03* X3372D02* D03* X3404D02* D03* X3435D02* D03* X3467D02* D03* X3498D02* D03* X3530D02* D03* X3561D02* D03* X3593D02* D03* X4971D02* D03* X4939D02* D03* X4908D02* D03* X4876D02* D03* X4845D02* D03* X4813D02* D03* X4782D02* D03* X4750D02* D03* X4719D02* D03* X4687D02* D03* X4656D02* D03* X4624D02* D03* X4593D02* D03* X4561D02* D03* X4530D02* D03* X4498D02* D03* X4467D02* D03* X4435D02* D03* X4404D02* D03* X4372D02* D03* X4341D02* D03* X4309D02* D03* X4278D02* D03* X4246D02* D03* X4215D02* D03* X4183D02* D03* X4152D02* D03* X4120D02* D03* X4089D02* D03* X4057D02* D03* X4026D02* D03* X3994D02* D03* X3963D02* D03* X3931D02* D03* X3900D02* D03* X3868D02* D03* X3837D02* D03* X3805D02* D03* X3774D02* D03* Y1208D02* D03* X3805D02* D03* X3837D02* D03* X3868D02* D03* X3900D02* D03* X3931D02* D03* X3963D02* D03* X3994D02* D03* X4026D02* D03* X4057D02* D03* X4089D02* D03* X4120D02* D03* X4152D02* D03* X4183D02* D03* X4215D02* D03* X4246D02* D03* X4278D02* D03* X4309D02* D03* X4341D02* D03* X4372D02* D03* X4404D02* D03* X4435D02* D03* X4467D02* D03* X4498D02* D03* X4530D02* D03* X4561D02* D03* X4593D02* D03* X4624D02* D03* X4656D02* D03* X4687D02* D03* X4719D02* D03* X4750D02* D03* X4782D02* D03* X4813D02* D03* X4845D02* D03* X4876D02* D03* X4908D02* D03* X4939D02* D03* X4971D02* D03* X5002D02* D03* X5034D02* D03* X5065D02* D03* Y1150D02* D03* X5034D02* D03* X5002D02* D03* X5081Y1472D02* D03* X5049D02* D03* X5018D02* D03* X4986D02* D03* X4955D02* D03* X4923D02* D03* X4892D02* D03* X4860D02* D03* X4829D02* D03* X4797D02* D03* X4766D02* D03* X4734D02* D03* X4703D02* D03* X4671D02* D03* X4640D02* D03* X4609D02* D03* X4577D02* D03* X4546D02* D03* X4514D02* D03* X4483D02* D03* X4451D02* D03* X4420D02* D03* X4388D02* D03* X4357D02* D03* X4325D02* D03* X4294D02* D03* X4262D02* D03* X4231D02* D03* X4199D02* D03* X4168D02* D03* X4136D02* D03* X4105D02* D03* X4073D02* D03* X4042D02* D03* X4010D02* D03* X3979D02* D03* X3947D02* D03* X3916D02* D03* X3884D02* D03* X3853D02* D03* X3821D02* D03* X3790D02* D03* Y1530D02* D03* X3821D02* D03* X3853D02* D03* X3884D02* D03* X3916D02* D03* X3947D02* D03* X3979D02* D03* X4010D02* D03* X4042D02* D03* X4073D02* D03* X4105D02* D03* X4136D02* D03* X4168D02* D03* X4199D02* D03* X4231D02* D03* X4262D02* D03* X4294D02* D03* X4325D02* D03* X4357D02* D03* X4388D02* D03* X4420D02* D03* X4451D02* D03* X4483D02* D03* X4514D02* D03* X4546D02* D03* X4577D02* D03* X4609D02* D03* X4640D02* D03* X4671D02* D03* X4703D02* D03* X4734D02* D03* X4766D02* D03* X4797D02* D03* X4829D02* D03* X4860D02* D03* X4892D02* D03* X4923D02* D03* X4955D02* D03* X4986D02* D03* X5018D02* D03* X5049D02* D03* X5081D02* D03* D077* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D082* X1607Y1866D02* D03* X1638D02* D03* Y1976D02* D03* X1607D02* D03* X1587Y2059D02* D03* X1516D02* D03* X1809Y2165D02* D03* Y2236D02* D03* X1587Y2343D02* D03* X1516D02* D03* Y2531D02* D03* X1587D02* D03* X1809Y2638D02* D03* Y2709D02* D03* X1587Y2815D02* D03* X1516D02* D03* X2365Y2965D02* D03* Y2996D02* D03* X2475D02* D03* Y2965D02* D03* X2555D02* D03* Y2996D02* D03* X2665D02* D03* Y2965D02* D03* X3796Y3005D02* D03* X3765D02* D03* Y3115D02* D03* X3796D02* D03* X3936Y3305D02* D03* X3905D02* D03* Y3415D02* D03* X3936D02* D03* X4571Y2303D02* D03* Y2272D02* D03* X4681D02* D03* Y2303D02* D03* X5335Y2240D02* D03* Y2271D02* D03* X5445D02* D03* Y2240D02* D03* X5673D02* D03* Y2271D02* D03* X5783D02* D03* Y2240D02* D03* X6728Y2645D02* D03* Y2614D02* D03* X6838D02* D03* Y2645D02* D03* X6929D02* D03* Y2614D02* D03* X7039D02* D03* Y2645D02* D03* X6783Y1162D02* D03* Y1193D02* D03* X6673D02* D03* Y1162D02* D03* X5760Y1185D02* D03* Y1216D02* D03* X5650D02* D03* Y1185D02* D03* X6827Y4055D02* D03* X6796D02* D03* Y4165D02* D03* X6827D02* D03* D084* X2543Y2534D02* D03* X2536D02* D03* X2378D02* D03* X2371D02* D03* X2255D02* D03* X2248D02* D03* X2090D02* D03* X2083D02* D03* Y2734D02* D03* X2090D02* D03* X2248D02* D03* X2255D02* D03* X2371D02* D03* X2378D02* D03* X2536D02* D03* X2543D02* D03* D081* X2179Y4516D02* D03* X1814Y4366D02* D03* X1730Y2732D02* D03* Y2260D02* D03* X1606Y1069D02* D03* X3047D02* D03* X3344D02* D03* X5405D02* D03* X6252D02* D03* X7693D02* D03* D080* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D074* X2435Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2372D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2282D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2219D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* D076* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* D188* X2098Y1167D02* D03* Y1352D02* D03* X2957Y2950D02* D03* X3143D02* D03* X4258Y2291D02* D03* X4443D02* D03* X4778D02* D03* X4963D02* D03* X5368Y1201D02* D03* X5553D02* D03* X6657Y3364D02* D03* Y3549D02* D03* D087* X1839Y1162D02* D03* Y1310D02* D03* D089* X1950Y4292D02* D03* Y4048D02* D03* X5437Y2063D02* D03* X5681D02* D03* D362* X4217Y1820D02* D03* X4287D02* D03* X4737D02* D03* X4807D02* D03* X5524Y1668D02* D03* X5594D02* D03* D302* X3762Y4699D02* D03* X3737D02* D03* X3712D02* D03* X3687D02* D03* X3662D02* D03* X3637D02* D03* X3612D02* D03* X3587D02* D03* X3562D02* D03* X3537D02* D03* X3512D02* D03* X3487D02* D03* X3462D02* D03* X3437D02* D03* X3412D02* D03* X3387D02* D03* X3362D02* D03* X3337D02* D03* X3312D02* D03* X3287D02* D03* X3262D02* D03* X3237D02* D03* X3212D02* D03* X3187D02* D03* X3162D02* D03* X3137D02* D03* X3112D02* D03* X3087D02* D03* X3062D02* D03* X3037D02* D03* X3012D02* D03* X2987D02* D03* X2962D02* D03* X2937D02* D03* X2912D02* D03* X2887D02* D03* X2862D02* D03* X2837D02* D03* X2812D02* D03* X2787D02* D03* X2762D02* D03* X2737D02* D03* X2712D02* D03* X2687D02* D03* X2662D02* D03* X2637D02* D03* X2612D02* D03* X2587D02* D03* X2562D02* D03* X2537D02* D03* Y4822D02* D03* X2562D02* D03* X2587D02* D03* X2612D02* D03* X2637D02* D03* X2662D02* D03* X2687D02* D03* X2712D02* D03* X2737D02* D03* X2762D02* D03* X2787D02* D03* X2812D02* D03* X2837D02* D03* X2862D02* D03* X2887D02* D03* X2912D02* D03* X2937D02* D03* X2962D02* D03* X2987D02* D03* X3012D02* D03* X3037D02* D03* X3062D02* D03* X3087D02* D03* X3112D02* D03* X3137D02* D03* X3162D02* D03* X3187D02* D03* X3212D02* D03* X3237D02* D03* X3262D02* D03* X3287D02* D03* X3312D02* D03* X3337D02* D03* X3362D02* D03* X3387D02* D03* X3412D02* D03* X3437D02* D03* X3462D02* D03* X3487D02* D03* X3512D02* D03* X3537D02* D03* X3562D02* D03* X3587D02* D03* X3612D02* D03* X3637D02* D03* X3662D02* D03* X3687D02* D03* X3712D02* D03* X3737D02* D03* X3762D02* D03* M02*gerbv-2.7.0/example/ekf2/l1.grb0000644000175000017500000113345513421555714016022 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X2988Y4131D02* X2909D01* Y4052D01* X2286Y3653D02* X2207D01* Y3574D01* X2732Y2799D02* Y2878D01* X2811D01* X2734Y3047D02* X2813D01* Y3126D01* X3752Y3209D02* X3831D01* Y3288D01* X3968Y1721D02* Y1642D01* X3889D01* X5839Y1323D02* Y1244D01* X5917D01* X7083Y2409D02* Y2488D01* X7004D01* X1531Y2029D02* Y2086D01* X1527Y2029D02* Y2086D01* X1535D02* Y2029D01* X1539Y2086D02* Y2029D01* X1543Y2086D02* Y2029D01* X1547Y2086D02* Y2029D01* X1551Y2086D02* Y2029D01* X1559D02* Y2086D01* X1555Y2029D02* Y2086D01* X1563D02* Y2029D01* X1614Y2028D02* Y2087D01* X1567Y2086D02* Y2029D01* X1571Y2086D02* Y2029D01* X1579D02* Y2086D01* X1575Y2029D02* Y2086D01* X1583D02* Y2029D01* X1587Y2086D02* Y2029D01* X1595D02* Y2086D01* X1591Y2029D02* Y2086D01* X1599D02* Y2029D01* X1603Y2086D02* Y2029D01* X1607Y2086D02* Y2029D01* X1611Y2086D02* Y2029D01* X1614Y2028D02* X1520D01* X1516Y2024D01* X1523Y2029D02* Y2086D01* X1520Y2087D02* X1516Y2091D01* Y2311D01* X1543Y2316D02* Y2373D01* X1539Y2316D02* Y2373D01* X1535D02* Y2316D01* X1516Y2311D02* X1520Y2315D01* X1511Y2373D02* Y1422D01* X1579Y1389D02* Y1025D01* X1575D02* Y1389D01* X1515Y1422D02* Y2373D01* X1527Y2316D02* Y2373D01* X1531D02* Y2316D01* X1520Y2315D02* X1614D01* Y2374D01* X1563Y2373D02* Y2316D01* X1614Y2374D02* X1500D01* X1499D02* Y1422D01* X1631Y1389D02* Y1025D01* X1623D02* Y1389D01* X1500Y1394D02* Y1000D01* X1850D01* X1675Y1025D02* Y1389D01* X1735Y1353D02* Y1025D01* X1980Y877D02* X1936D01* Y894D02* X1980D01* X1731Y1025D02* Y1353D01* X1723D02* Y1025D01* X1509Y877D02* X1536D01* X1544Y868D01* X1571Y859D02* Y886D01* X1547Y1025D02* Y1822D01* X1551D02* Y1025D01* X1607Y894D02* X1580D01* X1571Y886D02* X1580Y894D01* X1539Y1025D02* Y1822D01* X1543D02* Y1025D01* X1544Y886D02* X1536Y894D01* X1509D01* X1536Y850D02* X1544Y859D01* Y868D01* X1715Y1025D02* Y1355D01* X1713Y1358D02* Y1390D01* X1559D01* X1567Y1389D02* Y1025D01* X1563D02* Y1389D01* X1527Y1419D02* Y1822D01* X1520Y1823D02* X1516Y1827D01* Y2024D01* X1519Y2028D02* Y2087D01* X1520D02* X1614D01* X1973Y2094D02* X1972Y2095D01* Y2123D01* X1902D02* Y2092D01* D01* X1896Y2219D02* Y2190D01* X1902Y2185D01* X1937Y2156D02* X1966Y2185D01* X1972D01* X1963Y2240D02* X1949D01* Y2241D01* X1611Y2316D02* Y2373D01* X1607Y2316D02* Y2373D01* X1603Y2316D02* Y2373D01* X1599Y2316D02* Y2373D01* X1591D02* Y2316D01* X1595Y2373D02* Y2316D01* X1587D02* Y2373D01* X1583Y2316D02* Y2373D01* X1575D02* Y2316D01* X1579Y2373D02* Y2316D01* X1571D02* Y2373D01* X1567Y2316D02* Y2373D01* X1555D02* Y2316D01* X1559Y2373D02* Y2316D01* X1551D02* Y2373D01* X1547Y2316D02* Y2373D01* X1523D02* Y2316D01* X1507Y2373D02* Y1422D01* X1591Y1389D02* Y1025D01* X1595D02* Y1389D01* X1656Y1457D02* Y1535D01* X1772Y1354D02* X1717D01* X1615Y1389D02* Y1025D01* X1599D02* Y1389D01* X1603Y1482D02* X1681D01* Y1510D02* X1603D01* X1628Y1535D02* Y1457D01* X1583Y1389D02* Y1025D01* X1571D02* Y1389D01* X1519Y1422D02* Y1823D01* X1520D02* X1555D01* Y1822D02* Y1025D01* X1616Y886D02* X1607Y894D01* Y850D02* X1580D01* X1571Y859D01* X1711Y1025D02* Y1389D01* X1707D02* Y1025D01* X1829Y850D02* X1793D01* X1784Y859D02* X1793Y850D01* X1703Y1025D02* Y1389D01* X1699D02* Y1025D01* X1820Y868D02* X1784D01* X1820D02* X1829Y877D01* X1695Y1025D02* Y1389D01* X1691D02* Y1025D01* X1829Y886D02* Y877D01* Y886D02* X1820Y894D01* X1683Y1025D02* Y1389D01* X1687D02* Y1025D01* X1784Y859D02* Y886D01* X1793Y894D02* X1784Y886D01* X1671Y1025D02* Y1389D01* X1679D02* Y1025D01* X1749Y850D02* X1731D01* X1687Y886D02* Y850D01* X1651D01* X1659Y1025D02* Y1389D01* X1655D02* Y1025D01* X1687Y877D02* X1651D01* X1642Y868D01* Y859D01* X1651Y850D02* X1642Y859D01* X1616D02* X1607Y850D01* X1663Y1025D02* Y1389D01* X1667D02* Y1025D01* X1793Y894D02* X1820D01* X1740Y921D02* X1731D01* X1643Y1025D02* Y1389D01* X1635D02* Y1025D01* X1678Y894D02* X1651D01* X1678D02* X1687Y886D01* X1651Y1025D02* Y1389D01* X1647D02* Y1025D01* X1740Y921D02* Y850D01* X2336Y921D02* X2282Y850D01* Y859D02* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2264Y921D02* X2211Y850D01* X2220D02* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2167D02* X2158Y859D01* X2167Y868D01* Y850D02* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X2057Y1126D02* X2140D01* Y1209D01* X2057D01* Y1126D01* X2064Y1133D02* X2133D01* Y1202D01* X2064D01* Y1133D01* X2071Y1140D02* X2126D01* Y1194D01* X2071D01* Y1140D01* X2075Y1144D02* X2122D01* Y1191D01* X2075D01* Y1144D01* X2082Y1151D02* X2115D01* Y1184D01* X2082D01* Y1151D01* X2089Y1158D02* X2108D01* Y1176D01* X2089D01* Y1158D01* X2098Y1162D02* Y1173D01* X2104D02* Y1162D01* X2093D01* Y1173D01* X2104D01* X2111Y1180D02* X2086D01* Y1155D01* X2111D01* Y1180D01* X2118Y1187D02* X2079D01* Y1147D01* X2118D01* Y1187D01* X2129Y1198D02* X2068D01* Y1137D01* X2129D01* Y1198D01* X2136Y1205D02* X2061D01* Y1129D01* X2136D01* Y1205D01* X2057Y1311D02* X2140D01* Y1394D01* X2136Y1390D02* Y1314D01* X2061D01* X2064Y1318D02* X2133D01* Y1387D01* X2129Y1383D02* Y1322D01* X2068D01* X2104Y1347D02* X2093D01* Y1358D01* X2104D01* Y1347D01* X2098D02* Y1358D01* X2089Y1361D02* X2108D01* Y1343D01* X2089D01* Y1361D01* X2111Y1340D02* Y1365D01* X2086D01* Y1340D01* X2111D01* X2118Y1332D02* Y1372D01* X2079D01* Y1332D01* X2118D01* X2129Y1383D02* X2068D01* X1763Y1353D02* Y1025D01* X1759D02* Y1353D01* X2064Y1318D02* Y1387D01* X2061Y1390D02* Y1314D01* X1751Y1353D02* Y1025D01* X1755D02* Y1353D01* X2064Y1387D02* X2133D01* X2082Y1369D02* Y1336D01* X2115D01* Y1369D01* X2082D01* X2075Y1376D02* X2122D01* Y1329D01* X2075D01* Y1376D01* X2071Y1379D02* Y1325D01* X2126D01* Y1379D01* X2071D01* X1771Y1353D02* Y1025D01* X1767D02* Y1353D01* X2068Y1322D02* Y1383D01* X2057Y1394D02* Y1311D01* X1743Y1353D02* Y1025D01* X1747D02* Y1353D01* X2061Y1390D02* X2136D01* X2140Y1394D02* X2057D01* X1739Y1353D02* Y1025D01* X1727D02* Y1353D01* X1471Y1422D02* Y2964D01* X1469Y2965D02* X1598D01* X1602Y2969D01* X1523Y2964D02* Y2785D01* X1693Y2784D02* Y2937D01* X1527Y2964D02* Y2785D01* X1531D02* Y2964D01* X1695Y2940D02* Y3629D01* X1579Y3596D02* Y4905D01* X1575D02* Y3596D01* X1691Y3629D02* Y2785D01* X1693Y2784D02* X1516D01* X1515Y2783D02* Y2964D01* X1511D02* Y2501D01* X1523Y2558D02* Y2501D01* X1519D02* Y2558D01* X1503Y2501D02* Y2964D01* X1507D02* Y2501D01* X1515Y2559D02* Y2501D01* X1496Y2496D02* Y2378D01* X1500Y2374D01* X1519Y2373D02* Y2315D01* X1503Y2373D02* Y1422D01* X1627Y1389D02* Y1025D01* X1619D02* Y1389D01* X1523Y1422D02* Y1822D01* X1555Y1823D02* Y1394D01* X1487Y1422D02* Y2964D01* X1483D02* Y1422D01* X1528Y1417D02* Y1024D01* X1559Y1025D02* Y1389D01* X1491Y1422D02* Y2964D01* X1495D02* Y1422D01* X1559Y1390D02* X1555Y1394D01* X1587Y1389D02* Y1025D01* X1611D02* Y1389D01* X1713Y1358D02* X1717Y1354D01* X1719Y1353D02* Y1025D01* X1536Y850D02* X1509D01* X1500Y859D01* X1509Y877D02* X1500Y886D01* X1509Y894D01* X1535Y1025D02* Y1822D01* X1531D02* Y1025D01* X1528Y1024D02* X1772D01* Y1354D01* X1639Y1389D02* Y1025D01* X1441Y1472D02* Y1394D01* X1500D01* X1475Y1422D02* Y2964D01* X1479D02* Y1422D01* X1524Y1421D02* X1528Y1417D01* X1603Y1389D02* Y1025D01* X1607D02* Y1389D01* X1524Y1421D02* X1469D01* Y2965D01* X1499Y2964D02* Y2500D01* X1496Y2496D02* X1500Y2500D01* X1614D01* X1611Y2501D02* Y2558D01* X1607Y2501D02* Y2558D01* X1603Y2501D02* Y2558D01* X1599Y2501D02* Y2558D01* X1591D02* Y2501D01* X1595Y2558D02* Y2501D01* X1587D02* Y2558D01* X1583Y2501D02* Y2558D01* X1575D02* Y2501D01* X1579Y2558D02* Y2501D01* X1571D02* Y2558D01* X1567Y2501D02* Y2558D01* X1614Y2559D02* Y2500D01* X1563Y2501D02* Y2558D01* X1555D02* Y2501D01* X1559Y2558D02* Y2501D01* X1551D02* Y2558D01* X1547Y2501D02* Y2558D01* X1535D02* Y2501D01* X1539Y2558D02* Y2501D01* X1543Y2558D02* Y2501D01* X1531D02* Y2558D01* X1527Y2501D02* Y2558D01* X1512Y2563D02* X1516Y2559D01* X1614D01* X1512Y2563D02* Y2780D01* X1516Y2784D01* X1519Y2785D02* Y2964D01* X1602Y2969D02* Y3591D01* X1487Y3596D02* Y4515D01* X1647Y4422D02* Y4905D01* X1627D02* Y4422D01* X1594Y4417D02* X1598Y4421D01* X1503Y4515D02* Y3596D01* X1499D02* Y4515D01* X1594Y4417D02* Y4039D01* X1599Y4034D02* Y3595D01* X1711Y3629D02* Y2942D01* X1551Y2964D02* Y2785D01* X1547D02* Y2964D01* X1707Y2942D02* Y3629D01* X1591Y3596D02* Y4905D01* X1595D02* Y4419D01* X1491Y4515D02* Y3596D01* X1495D02* Y4515D01* X1599Y4422D02* Y4905D01* X1571D02* Y3596D01* X1687Y3629D02* Y2785D01* X1683D02* Y3629D01* X1567Y3596D02* Y4905D01* X1563D02* Y3596D01* X1679Y3629D02* Y2785D01* X1675D02* Y3629D01* X1559Y3596D02* Y4905D01* X1555D02* Y3596D01* X1671Y3629D02* Y2785D01* X1667D02* Y3629D01* X1551Y3596D02* Y4905D01* X1547D02* Y3596D01* X1663Y3629D02* Y2785D01* X1902Y2603D02* X1907D01* X1906Y2602D01* X1972Y2603D02* X1907D01* X1906Y2602D02* X1884D01* X1861Y2625D01* X1860Y2657D02* X1868Y2665D01* X1902D01* X1972D01* X2675Y2059D02* Y1888D01* X2679Y2059D02* Y1888D01* X2683Y1887D02* X2514D01* Y2060D01* X2535Y2059D02* Y1888D01* X2539Y2059D02* Y1888D01* X2543Y2059D02* Y1888D01* X2551D02* Y2059D01* X2547Y1888D02* Y2059D01* X2575D02* Y1888D01* X2579Y2059D02* Y1888D01* X2587D02* Y2059D01* X2583Y1888D02* Y2059D01* X2611D02* Y1888D01* X2615Y2059D02* Y1888D01* X2623D02* Y2059D01* X2619Y1888D02* Y2059D01* X2627D02* Y1888D01* X2631Y2059D02* Y1888D01* X2635Y2059D02* Y1888D01* X2643D02* Y2059D01* X2639Y1888D02* Y2059D01* X2647D02* Y1888D01* X2651Y2059D02* Y1888D01* X2659D02* Y2059D01* X2655Y1888D02* Y2059D01* X2663D02* Y1888D01* X2667Y2059D02* Y1888D01* X2671Y2059D02* Y1888D01* X2607D02* Y2059D01* X2603Y1888D02* Y2059D01* X2599Y1888D02* Y2059D01* X2591D02* Y1888D01* X2595Y2059D02* Y1888D01* X2571D02* Y2059D01* X2567Y1888D02* Y2059D01* X2563Y1888D02* Y2059D01* X2555D02* Y1888D01* X2559Y2059D02* Y1888D01* X2531D02* Y2059D01* X2527Y1888D02* Y2059D01* X2523D02* Y1888D01* X2519Y2059D02* Y1888D01* X2683Y1887D02* Y2060D01* X2514D01* X2515Y2059D02* Y1888D01* X2916Y2992D02* Y2909D01* X2999D01* Y2992D01* X2916D01* X2920Y2988D02* Y2912D01* X2995D01* Y2988D01* X2920D01* X2923Y2984D02* Y2916D01* X2992D01* Y2984D01* X2923D01* X2927Y2981D02* Y2919D01* X2988D01* Y2981D01* X2927D01* X2930Y2977D02* Y2923D01* X2985D01* Y2977D01* X2930D01* X2934Y2974D02* Y2927D01* X2981D01* Y2974D01* X2934D01* X2938Y2970D02* Y2930D01* X2977D01* Y2970D01* X2938D01* X2941Y2966D02* Y2934D01* X2974D01* Y2966D01* X2941D01* X2945Y2963D02* Y2937D01* X2970D01* Y2963D01* X2945D01* X2948Y2959D02* Y2941D01* X2967D01* Y2959D01* X2948D01* X2952Y2950D02* X2963D01* Y2956D02* Y2945D01* X2952D01* Y2956D01* X2963D01* X3137Y2950D02* X3148D01* Y2956D02* Y2945D01* X3137D01* Y2956D01* X3148D01* X3152Y2959D02* Y2941D01* X3133D01* Y2959D01* X3152D01* X3155Y2963D02* X3130D01* Y2937D01* X3155D01* Y2963D01* X3159Y2966D02* X3126D01* Y2934D01* X3159D01* Y2966D01* X3162Y2970D02* X3123D01* Y2930D01* X3162D01* Y2970D01* X3166Y2974D02* X3119D01* Y2927D01* X3166D01* Y2974D01* X3170Y2977D02* X3115D01* Y2923D01* X3170D01* Y2977D01* X3173Y2981D02* X3112D01* Y2919D01* X3173D01* Y2981D01* X3177Y2984D02* X3108D01* Y2916D01* X3177D01* Y2984D01* X3180Y2988D02* X3105D01* Y2912D01* X3180D01* Y2988D01* X3184Y2992D02* X3101D01* Y2909D01* X3184D01* Y2992D01* X4121Y2206D02* Y2124D01* X4183D01* X4179Y2125D02* Y2205D01* X4175Y2125D02* Y2205D01* X4155D02* Y2125D01* X4159Y2205D02* Y2125D01* X4163D02* Y2205D01* X4220Y2253D02* Y2329D01* X4296D01* Y2253D01* X4220D01* X4216Y2250D02* X4299D01* Y2333D01* X4216D01* Y2250D01* X4151Y2205D02* Y2125D01* X4147D02* Y2205D01* X4221Y2206D02* X4283D01* X4275Y2205D02* Y2125D01* X4279Y2205D02* Y2125D01* X4283Y2124D02* X4221D01* X4143Y2125D02* Y2205D01* X4223D02* Y2125D01* X4283Y2124D02* Y2206D01* X4227Y2205D02* Y2125D01* X4231D02* Y2205D01* X4234Y2268D02* Y2315D01* X4281D01* Y2268D01* X4234D01* X4238Y2271D02* X4278D01* Y2311D01* X4238D01* Y2271D01* X4235Y2205D02* Y2125D01* X4221Y2124D02* Y2206D01* X4231Y2264D02* Y2318D01* X4285D01* Y2264D01* X4231D01* X4227Y2261D02* X4289D01* Y2322D01* X4227D01* Y2261D01* X4171Y2205D02* Y2125D01* X4123D02* Y2205D01* X4121Y2206D02* X4183D01* Y2124D01* X4127Y2125D02* Y2205D01* X4131Y2125D02* Y2205D01* X4135D02* Y2125D01* X4139Y2205D02* Y2125D01* X4167D02* Y2205D01* X4224Y2257D02* Y2326D01* X4292D01* Y2257D01* X4224D01* X4242Y2275D02* X4274D01* Y2308D01* X4242D01* Y2275D01* X4239Y2205D02* Y2125D01* X4243D02* Y2205D01* X4245Y2279D02* Y2304D01* X4271D01* Y2279D01* X4245D01* X4252Y2291D02* X4263D01* Y2286D02* X4252D01* Y2297D01* X4263D01* Y2286D01* X4267Y2282D02* Y2300D01* X4249D01* Y2282D01* X4267D01* X4255Y2205D02* Y2125D01* X4259Y2205D02* Y2125D01* X4251D02* Y2205D01* X4321Y2206D02* X4383D01* X4367Y2205D02* Y2125D01* X4371Y2205D02* Y2125D01* X4375D02* Y2205D01* X4419Y2268D02* Y2315D01* X4466D01* Y2268D01* X4419D01* X4423Y2271D02* X4463D01* Y2311D01* X4423D01* X4427Y2308D02* Y2275D01* X4459D01* Y2308D01* X4427D01* X4423Y2311D02* Y2271D01* X4379Y2205D02* Y2125D01* X4383Y2124D02* X4321D01* X4247Y2125D02* Y2205D01* X4263D02* Y2125D01* X4267Y2205D02* Y2125D01* X4271Y2205D02* Y2125D01* X4321Y2206D02* Y2124D01* X4383D02* Y2206D01* X4323Y2205D02* Y2125D01* X4327Y2205D02* Y2125D01* X4335D02* Y2205D01* X4331Y2125D02* Y2205D01* X4347D02* Y2125D01* X4351Y2205D02* Y2125D01* X4355D02* Y2205D01* X4409Y2257D02* Y2326D01* X4477D01* Y2257D01* X4409D01* X4412Y2261D02* X4474D01* Y2322D01* X4412D01* Y2261D01* X4359Y2205D02* Y2125D01* X4363D02* Y2205D01* X4416Y2264D02* Y2318D01* X4470D01* Y2264D01* X4416D01* X4405Y2253D02* X4481D01* Y2329D01* X4405D01* Y2253D01* X4343Y2205D02* Y2125D01* X4339D02* Y2205D01* X4401Y2250D02* Y2333D01* X4484D01* Y2250D01* X4401D01* X4430Y2304D02* Y2279D01* X4456D01* Y2304D01* X4430D01* X4434Y2300D02* Y2282D01* X4452D01* Y2300D01* X4434D01* X4437Y2291D02* X4448D01* Y2297D02* Y2286D01* X4437D01* Y2297D01* X4448D01* X4783Y2286D02* Y2297D01* X4772D01* Y2286D01* X4783D01* Y2291D02* X4772D01* X4768Y2282D02* X4787D01* Y2300D01* X4768D01* Y2282D01* X4763Y2205D02* Y2125D01* X4759D02* Y2205D01* X4765Y2279D02* Y2304D01* X4790D01* Y2279D01* X4765D01* X4761Y2275D02* X4794D01* Y2308D01* X4761D01* Y2275D01* X4755Y2205D02* Y2125D01* X4751D02* Y2205D01* X4758Y2271D02* Y2311D01* X4797D01* Y2271D01* X4758D01* X4743Y2257D02* X4812D01* Y2326D01* X4743D01* Y2257D01* X4683Y2205D02* Y2125D01* X4679D02* Y2205D01* X4740Y2253D02* Y2329D01* X4815D01* Y2253D01* X4740D01* X4803Y2206D02* X4741D01* X4671Y2205D02* Y2125D01* X4675D02* Y2205D01* X4736Y2250D02* Y2333D01* X4819D01* Y2250D01* X4736D01* X4754Y2268D02* X4801D01* Y2315D01* X4754D01* Y2268D01* X4747Y2205D02* Y2125D01* X4743D02* Y2205D01* X4803Y2206D02* Y2124D01* X4741D02* Y2206D01* X4767Y2205D02* Y2125D01* X4841Y2124D02* X4903D01* X4899Y2125D02* Y2205D01* X4943Y2271D02* Y2311D01* X4982D01* Y2271D01* X4943D01* X4939Y2268D02* X4986D01* Y2315D01* X4939D01* Y2268D01* X4891Y2205D02* Y2125D01* X4895Y2205D02* Y2125D01* X4867D02* Y2205D01* X4863Y2125D02* Y2205D01* X4925Y2253D02* Y2329D01* X5000D01* Y2253D01* X4925D01* X4921Y2250D02* X5004D01* Y2333D01* X4921D01* Y2250D01* X4859Y2205D02* Y2125D01* X4699D02* Y2205D01* X4750Y2264D02* Y2318D01* X4805D01* Y2264D01* X4750D01* X4747Y2261D02* X4808D01* Y2322D01* X4747D01* Y2261D01* X4695Y2205D02* Y2125D01* X4691D02* Y2205D01* X4687Y2125D02* Y2205D01* X4703Y2206D02* X4641D01* Y2124D01* X4647Y2125D02* Y2205D01* X4703Y2206D02* Y2124D01* X4641D01* X4643Y2125D02* Y2205D01* X4651D02* Y2125D01* X4655Y2205D02* Y2125D01* X4663D02* Y2205D01* X4659Y2125D02* Y2205D01* X4667D02* Y2125D01* X4741Y2124D02* X4803D01* X4799Y2125D02* Y2205D01* X4795Y2125D02* Y2205D01* X4791Y2125D02* Y2205D01* X4787Y2125D02* Y2205D01* X4779D02* Y2125D01* X4783Y2205D02* Y2125D01* X4775D02* Y2205D01* X4771Y2125D02* Y2205D01* X4841Y2206D02* X4903D01* X4928Y2257D02* X4997D01* Y2326D01* X4928D01* Y2257D01* X4871Y2205D02* Y2125D01* X4875D02* Y2205D01* X4932Y2261D02* Y2322D01* X4993D01* Y2261D01* X4932D01* X4935Y2264D02* X4990D01* Y2318D01* X4935D01* Y2264D01* X4887Y2205D02* Y2125D01* X4883D02* Y2205D01* X4879Y2125D02* Y2205D01* X4851D02* Y2125D01* X4855Y2205D02* Y2125D01* X4847D02* Y2205D01* X4843Y2125D02* Y2205D01* X4903Y2206D02* Y2124D01* X4841D02* Y2206D01* X4946Y2275D02* X4979D01* Y2308D01* X4946D01* Y2275D01* X4950Y2279D02* X4975D01* Y2304D01* X4950D01* Y2279D01* X4953Y2282D02* Y2300D01* X4972D01* Y2282D01* X4953D01* X4957Y2286D02* Y2297D01* X4968D01* Y2286D01* X4957D01* Y2291D02* X4968D01* X5118Y2059D02* Y1888D01* X5228Y1779D02* X5182D01* Y1783D02* X5230D01* X5114Y1888D02* Y2059D01* X5098Y1888D02* Y2059D01* X5094Y1888D02* Y2059D01* X5102D02* Y1888D01* X5232Y1787D02* X5182D01* Y1791D02* X5237D01* X5110Y1888D02* Y2059D01* X5106D02* Y1888D01* X5234Y1788D02* X5242Y1794D01* X5229Y1779D02* X5228Y1769D01* X5146Y1888D02* Y2059D01* X5292Y1815D02* X5763D01* Y1819D02* X5292D01* X5130Y2059D02* Y1888D01* X5229Y1779D02* X5234Y1788D01* X5270Y1790D02* X5262Y1795D01* X5154Y1888D02* Y2059D01* X5292Y1807D02* X5763D01* Y1811D02* X5292D01* X5138Y2059D02* Y1888D01* X5252Y1796D02* X5262Y1795D01* X5252Y1796D02* X5242Y1794D01* X5122Y1888D02* Y2059D01* X5126D02* Y1888D01* X5243Y1795D02* X5182D01* Y1759D02* X5232D01* X5174Y1888D02* Y2059D01* X5278Y1775D02* X5763D01* Y1771D02* X5279D01* X5170Y2059D02* Y1888D01* X5231Y1760D02* X5228Y1769D01* X5231Y1760D02* X5238Y1752D01* X5182Y1739D02* X5763D01* Y1731D02* X5182D01* X5229Y1706D02* X5235Y1714D01* X5234Y1715D02* X5182D01* Y1719D02* X5240D01* X5243Y1720D02* X5235Y1714D01* X5182Y1583D02* X5849D01* Y1579D02* X5182D01* X5231Y1635D02* X5182D01* Y1631D02* X5229D01* Y1630D02* X5228Y1620D01* X5182Y1595D02* X5849D01* Y1591D02* X5182D01* X5262Y1645D02* X5270Y1640D01* X5272Y1639D02* X5849D01* X5725Y1371D02* X5881D01* Y1451D02* X5182D01* X5225Y1295D02* X5232Y1287D01* X5233D02* X5298D01* X5235Y1275D02* X5298D01* Y1263D02* X5229D01* X5204Y1255D02* X5196Y1260D01* X5198Y1259D02* X5127D01* X5123Y1255D02* X5213D01* X5214D02* X5223Y1258D01* X5226Y1295D02* X5301D01* X5303D02* X5380D01* X5401Y1355D02* X5182D01* Y1359D02* X5401D01* X5438Y1283D02* Y1363D01* X5279Y1695D02* X5849D01* Y1707D02* X5277D01* X5190Y2059D02* Y1888D01* X5278Y1772D02* X5277Y1767D01* X5273Y1757D02* X5277Y1767D01* X5194Y1888D02* Y2059D01* X5276Y1763D02* X5763D01* Y1759D02* X5275D01* X5206Y2059D02* Y1888D01* X5257Y1747D02* X5247Y1748D01* X5257Y1747D02* X5266Y1751D01* X5210Y1888D02* Y2059D01* X5273Y1787D02* X5763D01* Y1791D02* X5270D01* X5226Y2059D02* Y1888D01* X5230Y2059D02* Y1888D01* X5222D02* Y2059D01* X5218Y1888D02* Y2059D01* X5271Y1755D02* X5763D01* Y1751D02* X5266D01* X5246Y2060D02* X5077D01* Y1887D01* X5090Y1888D02* Y2059D01* X5086Y1888D02* Y2059D01* X5246Y2060D02* Y1887D01* X5077D01* X5078Y1888D02* Y2059D01* X5082D02* Y1888D01* X5181Y1799D02* Y1315D01* X5180Y1312D02* X5181Y1315D01* X5182D02* X5398D01* X5401Y1323D02* X5182D01* X5198Y1295D02* X5207Y1299D01* X5189Y1283D02* X5151D01* X5155Y1287D02* X5190D01* X5171Y1303D02* X5386D01* X5390Y1307D02* X5175D01* X5192Y1291D02* X5159D01* X5163Y1295D02* X5196D01* X5217Y1299D02* X5207D01* X5182Y1411D02* X5881D01* Y1415D02* X5182D01* X5190Y1269D02* X5188Y1278D01* X5190Y1267D02* X5135D01* X5139Y1271D02* X5189D01* X5191Y1288D02* X5188Y1278D01* X5182Y1419D02* X5881D01* Y1431D02* X5182D01* X5232Y1287D02* X5234Y1277D01* X5298Y1271D02* X5233D01* X5232Y1267D02* X5298D01* X5345Y1224D02* X5392D01* Y1177D01* X5345D01* Y1224D01* X5381Y1213D02* Y1188D01* X5355D01* Y1213D01* X5381D01* X5377Y1210D02* Y1192D01* X5359D01* Y1210D01* X5377D01* X5374Y1206D02* Y1195D01* X5363D01* Y1206D01* X5374D01* Y1201D02* X5363D01* X5341Y1228D02* Y1174D01* X5395D01* Y1228D01* X5341D01* X5298Y1219D02* X5226D01* X5184Y1224D02* X5191Y1231D01* X5189D02* X5103D01* Y1227D02* X5185D01* X5212Y1235D02* X5298D01* Y1231D02* X5219D01* X5225Y1223D02* X5227Y1213D01* Y1210D02* Y1213D01* X5222Y1199D02* X5298D01* Y1195D02* X5218D01* X5227Y1210D02* X5223Y1201D01* X5216Y1194D02* X5207Y1191D01* X5206D02* X5103D01* Y1195D02* X5191D01* X5208Y1191D02* X5298D01* X5276Y1164D02* X5283Y1156D01* X5298Y1183D02* X5103D01* Y1187D02* X5298D01* X5276Y1164D02* X5268Y1168D01* X5258D02* X5268D01* X5253Y1167D02* X5103D01* Y1163D02* X5246D01* X5249Y1164D02* X5242Y1157D01* X5249Y1164D02* X5258Y1168D01* X5243Y1159D02* X5103D01* Y1155D02* X5240D01* X5242Y1157D02* X5239Y1147D01* X5241Y1138D02* X5239Y1147D01* X5240Y1139D02* X5103D01* Y1135D02* X5242D01* X5241Y1138D02* X5247Y1129D01* X5250Y1127D02* X5103D01* X5102Y1122D02* X5299D01* Y1291D01* X5298Y1251D02* X5119D01* X5115Y1247D02* X5298D01* X5334Y1235D02* X5402D01* Y1166D01* X5442Y1167D02* X5597D01* X5598Y1122D02* Y1402D01* X5597Y1399D02* X5182D01* Y1395D02* X5597D01* X5628Y1364D02* X5690D01* X5724Y1287D02* X5803D01* X5881Y1423D02* X5182D01* Y1427D02* X5881D01* X5882Y1358D02* X5807D01* X5802Y1335D02* X5725D01* X5662Y1363D02* Y1283D01* X5666D02* Y1363D01* X5725Y1331D02* X5802D01* Y1327D02* X5725D01* X5670Y1363D02* Y1283D01* X5674D02* Y1363D01* X5725Y1323D02* X5802D01* X5803Y1287D02* Y1354D01* X5881Y1443D02* X5182D01* Y1439D02* X5881D01* X5725Y1395D02* X5881D01* Y1399D02* X5725D01* X5881Y1447D02* X5182D01* Y1463D02* X5881D01* X5725Y1403D02* X5881D01* Y1407D02* X5182D01* X5234Y1277D02* Y1274D01* X5225Y1259D02* X5298D01* X5303Y1295D02* X5299Y1291D01* X5298Y1283D02* X5233D01* X5298Y1279D02* X5234D01* X5298Y1291D02* X5230D01* X5225Y1295D02* X5217Y1299D01* X5182Y1371D02* X5401D01* X5273Y1607D02* X5849D01* Y1599D02* X5260D01* X5276Y1707D02* X5278Y1697D01* X5276Y1707D02* X5271Y1715D01* X5263Y1795D02* X5763D01* Y1803D02* X5292D01* X5162Y2059D02* Y1888D01* X5230Y1763D02* X5182D01* Y1767D02* X5228D01* X5150Y1888D02* Y2059D01* X5292Y1831D02* X5763D01* Y1827D02* X5292D01* X5142Y2059D02* Y1888D01* X5228Y1771D02* X5182D01* Y1775D02* X5228D01* X5134Y1888D02* Y2059D01* X5292Y1835D02* X5763D01* X5266Y1751D02* X5273Y1757D01* X5202Y1888D02* Y2059D01* X5275Y1711D02* X5849D01* Y1715D02* X5272D01* X5214Y2059D02* Y1888D01* X5252Y1722D02* X5262Y1720D01* X5271Y1715D02* X5262Y1720D01* X5234Y1888D02* Y2059D01* X5238Y1888D02* Y2059D01* X5242Y1888D02* Y2059D01* X5266Y1719D02* X5849D01* X5850Y1720D02* X5768D01* X5763Y1727D02* X5182D01* Y1743D02* X5763D01* X5764Y1724D02* X5768Y1720D01* X5765Y1723D02* X5182D01* X5228Y1696D02* X5229Y1706D01* Y1707D02* X5182D01* Y1711D02* X5231D01* X5182Y1735D02* X5763D01* X5764Y1724D02* Y1839D01* X5763Y1799D02* X5182D01* X5181D02* X5287D01* X5178Y1888D02* Y2059D01* X5278Y1767D02* X5763D01* Y1747D02* X5182D01* X5235Y1755D02* X5182D01* Y1751D02* X5240D01* X5238Y1752D02* X5247Y1748D01* X5198Y1888D02* Y2059D01* X5276Y1783D02* X5763D01* Y1779D02* X5277D01* X5186Y2059D02* Y1888D01* X5276Y1782D02* X5278Y1772D01* X5276Y1782D02* X5270Y1790D01* X5166Y1888D02* Y2059D01* X5291Y1839D02* X5764D01* X5763Y1823D02* X5292D01* X5158Y2059D02* Y1888D01* X5291Y1839D02* Y1803D01* X5287Y1799D02* X5291Y1803D01* X5182Y1888D02* Y2059D01* X5278Y1703D02* X5849D01* Y1699D02* X5279D01* X5442Y1363D02* Y1283D01* X5401Y1367D02* X5182D01* Y1363D02* X5401D01* X5402Y1386D02* Y1317D01* X5401Y1319D02* X5182D01* X5196Y1260D02* X5190Y1269D01* X5193Y1263D02* X5131D01* X5111Y1243D02* X5298D01* X5330Y1239D02* X5406D01* X5410Y1242D02* X5327D01* X5298Y1239D02* X5107D01* X5103Y1235D02* X5197D01* X5200D02* X5191Y1231D01* X5228Y1211D02* X5298D01* Y1215D02* X5227D01* X5200Y1235D02* X5210D01* X5182Y1219D02* X5103D01* Y1223D02* X5183D01* X5184Y1224D02* X5181Y1214D01* X5197Y1191D02* X5189Y1196D01* X5186Y1199D02* X5103D01* Y1203D02* X5183D01* X5197Y1191D02* X5207D01* X5226Y1207D02* X5298D01* Y1203D02* X5225D01* X5223Y1201D02* X5216Y1194D01* X5181Y1211D02* X5103D01* Y1215D02* X5180D01* X5181Y1214D02* X5183Y1205D01* X5189Y1196D02* X5183Y1205D01* X5182Y1207D02* X5103D01* Y1171D02* X5298D01* X5281Y1159D02* X5298D01* Y1155D02* X5284D01* X5298Y1175D02* X5103D01* Y1179D02* X5298D01* X5278Y1163D02* X5298D01* Y1167D02* X5272D01* X5239Y1151D02* X5103D01* Y1147D02* X5238D01* X5247Y1129D02* X5255Y1124D01* X5265D02* X5255D01* X5239Y1143D02* X5103D01* Y1131D02* X5245D01* X5265Y1124D02* X5274Y1127D01* X5281Y1134D01* X5274Y1127D02* X5298D01* Y1131D02* X5279D01* X5285Y1143D02* X5281Y1134D01* X5284Y1139D02* X5298D01* X5285Y1143D02* X5298D01* Y1147D02* X5286D01* X5298Y1151D02* X5285D01* X5283Y1156D02* X5285Y1146D01* Y1143D01* X5298Y1135D02* X5282D01* X5298Y1123D02* X5103D01* X5102Y1122D02* Y1235D01* X5180Y1312D01* X5179Y1311D02* X5394D01* X5401Y1339D02* X5182D01* X5191Y1288D02* X5198Y1295D01* X5188Y1275D02* X5143D01* X5147Y1279D02* X5187D01* X5167Y1299D02* X5204D01* X5182Y1435D02* X5881D01* Y1383D02* X5725D01* X5881Y1487D02* X5182D01* Y1491D02* X5881D01* X5854Y1563D02* X5882D01* X5881D02* X5182D01* X5228Y1619D02* X5182D01* Y1615D02* X5229D01* X5238Y1603D02* X5247Y1598D01* X5182Y1475D02* X5881D01* Y1467D02* X5182D01* X5266Y1601D02* X5257Y1598D01* X5266Y1601D02* X5273Y1608D01* X5182Y1515D02* X5881D01* Y1483D02* X5182D01* X5277Y1617D02* X5273Y1608D01* X5268Y1603D02* X5849D01* X5725Y1379D02* X5881D01* Y1375D02* X5725D01* X5849Y1679D02* X5270D01* X5277Y1689D02* X5278Y1697D01* X5182Y1551D02* X5881D01* Y1559D02* X5182D01* X5252Y1647D02* X5262Y1645D01* X5276Y1687D02* X5849D01* X5725Y1355D02* X5802D01* X5803Y1354D02* X5807Y1358D01* X5881Y1459D02* X5182D01* Y1455D02* X5881D01* X5725Y1387D02* X5881D01* Y1391D02* X5725D01* X5881Y1471D02* X5182D01* Y1479D02* X5881D01* X5724Y1402D02* X5720Y1406D01* X5724Y1402D02* Y1287D01* X5802Y1291D02* X5725D01* X5802Y1295D02* X5725D01* Y1299D02* X5802D01* X5725Y1303D02* X5802D01* X5725Y1307D02* X5802D01* Y1319D02* X5725D01* X5678Y1363D02* Y1283D01* X5682D02* Y1363D01* X5725Y1315D02* X5802D01* Y1311D02* X5725D01* X5686Y1363D02* Y1283D01* X5658D02* Y1363D01* X5725Y1339D02* X5802D01* Y1343D02* X5725D01* X5654Y1363D02* Y1283D01* X5597Y1251D02* X5511D01* X5512Y1252D02* X5508Y1248D01* X5441D01* X5442Y1247D02* X5597D01* X5584Y1231D02* Y1170D01* X5559Y1195D02* Y1206D01* X5597Y1211D02* X5442D01* Y1207D02* X5597D01* X5577Y1224D02* Y1177D01* X5580Y1174D02* Y1228D01* X5597Y1215D02* X5442D01* Y1219D02* X5597D01* X5559Y1201D02* X5548D01* X5540Y1213D02* X5566D01* X5569Y1217D02* X5537D01* X5548Y1206D02* Y1195D01* X5597Y1159D02* X5442D01* Y1155D02* X5597D01* X5595Y1159D02* X5512D01* X5442Y1131D02* X5597D01* Y1135D02* X5442D01* X5410Y1159D02* Y1242D01* X5441Y1248D02* Y1122D01* X5598D01* X5597Y1123D02* X5442D01* Y1127D02* X5597D01* X5562Y1192D02* X5544D01* X5573Y1221D02* X5533D01* X5544Y1210D02* Y1192D01* X5597Y1139D02* X5442D01* Y1143D02* X5597D01* X5573Y1181D02* X5533D01* Y1221D01* X5522Y1231D02* X5584D01* X5587Y1235D02* X5519D01* X5530Y1224D02* Y1177D01* X5577D01* X5597Y1199D02* X5442D01* Y1203D02* X5597D01* X5548Y1206D02* X5559D01* X5562Y1210D02* X5544D01* X5548Y1195D02* X5559D01* X5597Y1175D02* X5442D01* Y1179D02* X5597D01* X5587Y1166D02* X5519D01* Y1235D01* X5513Y1259D02* X5597D01* X5650Y1283D02* Y1363D01* X5646D02* Y1283D01* X5597Y1267D02* X5513D01* X5522Y1231D02* Y1170D01* X5584D01* X5597Y1171D02* X5442D01* X5512Y1159D02* Y1242D01* X5595D01* X5591Y1239D02* X5515D01* X5526Y1228D02* Y1174D01* X5580D01* X5597Y1187D02* X5442D01* Y1183D02* X5597D01* X5569Y1184D02* X5537D01* Y1217D01* X5526Y1228D02* X5580D01* X5577Y1224D02* X5530D01* X5540Y1213D02* Y1188D01* X5566D01* X5597Y1151D02* X5442D01* Y1147D02* X5597D01* X5591Y1163D02* X5515D01* Y1239D01* X5513Y1255D02* X5597D01* X5550Y1283D02* Y1363D01* X5513Y1347D02* X5597D01* Y1343D02* X5513D01* X5528Y1364D02* Y1282D01* X5530Y1283D02* Y1363D01* X5513Y1327D02* X5597D01* Y1323D02* X5513D01* X5542Y1363D02* Y1283D01* X5546D02* Y1363D01* X5513Y1339D02* X5597D01* Y1351D02* X5513D01* X5482Y1363D02* Y1283D01* X5478D02* Y1363D01* X5513Y1375D02* X5597D01* Y1379D02* X5513D01* X5486Y1363D02* Y1283D01* X5490Y1282D02* X5428D01* X5454Y1283D02* Y1363D01* X5490Y1364D02* X5428D01* X5401Y1347D02* X5182D01* Y1351D02* X5401D01* X5450Y1283D02* Y1363D01* X5446D02* Y1283D01* X5401Y1335D02* X5182D01* Y1343D02* X5401D01* X5430Y1283D02* Y1363D01* X5278Y1627D02* X5849D01* Y1631D02* X5277D01* X5428Y1364D02* Y1282D01* X5401Y1375D02* X5182D01* Y1379D02* X5401D01* X5406Y1390D02* X5402Y1386D01* X5267Y1643D02* X5849D01* Y1647D02* X5255D01* X5228Y1627D02* X5182D01* Y1623D02* X5228D01* Y1620D02* X5231Y1610D01* X5182Y1539D02* X5881D01* Y1543D02* X5182D01* X5255Y1672D02* X5245Y1673D01* X5242Y1675D02* X5182D01* Y1671D02* X5849D01* X5850Y1720D02* Y1567D01* X5854Y1563D02* X5850Y1567D01* X5849Y1587D02* X5182D01* Y1555D02* X5881D01* X5882Y1563D02* Y1358D01* X5881Y1359D02* X5725D01* X5849Y1611D02* X5275D01* X5277Y1615D02* X5849D01* X5725Y1351D02* X5802D01* Y1347D02* X5725D01* X5849Y1619D02* X5278D01* X5277Y1617D02* X5278Y1622D01* X5182Y1495D02* X5881D01* Y1499D02* X5182D01* X5257Y1598D02* X5247D01* X5245Y1599D02* X5182D01* Y1603D02* X5237D01* X5182Y1523D02* X5881D01* Y1527D02* X5182D01* X5276Y1632D02* X5278Y1622D01* X5279Y1623D02* X5849D01* X5690Y1364D02* Y1282D01* X5628D01* X5642Y1283D02* Y1363D01* X5578D02* Y1283D01* X5597Y1287D02* X5513D01* Y1283D02* X5597D01* X5554D02* Y1363D01* X5513Y1331D02* X5597D01* Y1335D02* X5513D01* X5534Y1363D02* Y1283D01* X5538D02* Y1363D01* X5513Y1383D02* X5597D01* Y1387D02* X5512D01* X5508Y1390D02* X5512Y1386D01* Y1252D01* X5513Y1263D02* X5597D01* X5586Y1283D02* Y1363D01* X5590Y1364D02* X5528D01* X5558Y1363D02* Y1283D01* X5597Y1307D02* X5513D01* Y1303D02* X5597D01* X5574Y1283D02* Y1363D01* X5570D02* Y1283D01* X5597Y1295D02* X5513D01* Y1291D02* X5597D01* X5628Y1282D02* Y1364D01* X5630Y1363D02* Y1283D01* X5597Y1299D02* X5513D01* Y1319D02* X5597D01* X5562Y1283D02* Y1363D01* X5566D02* Y1283D01* X5597Y1271D02* X5513D01* Y1275D02* X5597D01* X5634Y1283D02* Y1363D01* X5638D02* Y1283D01* X5597Y1315D02* X5513D01* Y1311D02* X5597D01* X5582Y1283D02* Y1363D01* X5597D02* X5513D01* X5458D02* Y1283D01* X5462D02* Y1363D01* X5513Y1367D02* X5597D01* Y1371D02* X5513D01* X5470Y1363D02* Y1283D01* X5466D02* Y1363D01* X5513Y1359D02* X5597D01* Y1355D02* X5513D01* X5474Y1363D02* Y1283D01* X5490Y1282D02* Y1364D01* X5401Y1387D02* X5182D01* Y1383D02* X5401D01* X5508Y1390D02* X5406D01* X5265Y1675D02* X5849D01* Y1667D02* X5182D01* X5230Y1686D02* X5228Y1696D01* X5227Y1699D02* X5182D01* Y1703D02* X5228D01* X5252Y1722D02* X5243Y1720D01* X5182Y1659D02* X5849D01* Y1663D02* X5182D01* X5229Y1687D02* X5182D01* Y1691D02* X5228D01* X5236Y1678D02* X5245Y1673D01* X5182Y1511D02* X5881D01* Y1507D02* X5182D01* X5238Y1603D02* X5231Y1610D01* X5234Y1607D02* X5182D01* Y1611D02* X5230D01* X5182Y1571D02* X5849D01* X5850Y1567D02* X5182D01* X5264Y1675D02* X5255Y1672D01* X5227Y1695D02* X5182D01* Y1639D02* X5233D01* X5234Y1638D02* X5229Y1630D01* X5182Y1531D02* X5881D01* Y1535D02* X5182D01* X5272Y1681D02* X5264Y1675D01* X5235Y1679D02* X5182D01* Y1683D02* X5232D01* X5230Y1686D02* X5236Y1678D01* X5182Y1651D02* X5849D01* Y1655D02* X5182D01* X5234Y1638D02* X5242Y1644D01* X5239Y1643D02* X5182D01* Y1647D02* X5249D01* X5252D02* X5242Y1644D01* X5182Y1547D02* X5881D01* Y1519D02* X5182D01* X5277Y1689D02* X5272Y1681D01* X5274Y1683D02* X5849D01* X5725Y1367D02* X5881D01* Y1363D02* X5725D01* X5849Y1635D02* X5275D01* X5276Y1632D02* X5270Y1640D01* X5182Y1575D02* X5849D01* Y1691D02* X5278D01* X5434Y1363D02* Y1283D01* X5401Y1327D02* X5182D01* Y1331D02* X5401D01* X5402Y1317D02* X5380Y1295D01* X5382Y1299D02* X5219D01* X5234Y1274D02* X5230Y1265D01* X5223Y1258D01* X5204Y1255D02* X5214D01* X5215D02* X5298D01* Y1227D02* X5223D01* X5210Y1235D02* X5218Y1231D01* X5225Y1223D01* X5226D02* X5298D01* X5337Y1231D02* X5399D01* Y1170D01* X5337D01* Y1231D01* X5334Y1235D02* Y1166D01* X5402D01* X5406Y1163D02* X5330D01* Y1239D01* X5327Y1242D02* Y1159D01* X5410D01* X5384Y1217D02* X5352D01* Y1184D01* X5384D01* Y1217D01* X5388Y1221D02* X5348D01* Y1181D01* X5388D01* Y1221D01* X5406Y1239D02* Y1163D01* X5442D02* X5597D01* X5595Y1159D02* Y1242D01* X5597Y1243D02* X5442D01* Y1239D02* X5597D01* X5587Y1235D02* Y1166D01* X5591Y1163D02* Y1239D01* X5597Y1231D02* X5442D01* Y1227D02* X5597D01* X5562Y1210D02* Y1192D01* X5566Y1188D02* Y1213D01* X5597Y1195D02* X5442D01* Y1191D02* X5597D01* X5569Y1217D02* Y1184D01* X5573Y1181D02* Y1221D01* X5597Y1223D02* X5442D01* Y1235D02* X5597D01* X5590Y1282D02* X5528D01* X5513Y1279D02* X5597D01* X5590Y1282D02* Y1364D01* X5598Y1403D02* X5182D01* Y1391D02* X5597D01* X5602Y1406D02* X5598Y1402D01* X5602Y1406D02* X5720D01* X5881Y1503D02* X5182D01* X5743Y2597D02* X5792Y2646D01* X5718Y2496D02* X6625D01* Y2500D02* X5981D01* X5940Y2508D02* X5718D01* Y2512D02* X5935D01* X5938Y2510D02* X5947Y2504D01* X5938Y2510D02* X5932Y2517D01* X5929Y2520D02* X5718D01* Y2516D02* X5932D01* X5956Y2500D02* X5966Y2498D01* X5956Y2500D02* X5947Y2504D01* X5945D02* X5718D01* Y2500D02* X5955D01* X5976Y2499D02* X5985Y2501D01* X5976Y2499D02* X5966Y2498D01* X5924Y2532D02* X5718D01* Y2536D02* X5923D01* X5924Y2535D02* X5927Y2526D01* X5924Y2535D02* X5923Y2545D01* X5926Y2560D02* X5718D01* Y2484D02* X6625D01* X6626Y2479D02* X6470D01* X6467Y2478D02* X6470Y2479D01* X6460Y2472D02* X5718D01* X5717Y2469D02* Y2596D01* X5740D01* X5718Y2548D02* X5923D01* X5747Y2600D02* X6625D01* Y2604D02* X5751D01* X5925Y2555D02* X5929Y2564D01* X5930Y2568D02* X5718D01* Y2564D02* X5927D01* X5974Y2588D02* X6625D01* Y2584D02* X6401D01* X6412Y2578D02* X6419Y2571D01* X6412Y2578D02* X6403Y2583D01* X6387Y2628D02* X6625D01* Y2632D02* X6388D01* X6346Y2616D02* X6313D01* X6310Y2614D02* X6301Y2610D01* X6291D01* X6282Y2614D01* X6286Y2612D02* X5759D01* X5792Y2646D02* X6225D01* X6228Y2647D01* X6312Y2731D01* X6385D01* X6302Y2720D02* X6625D01* X6421Y2764D02* X7047D01* X7051Y2768D02* X6425D01* X6625Y2716D02* X6298D01* X6361Y2658D02* X6371Y2657D01* X6361Y2658D02* X6352Y2655D01* X6290Y2708D02* X6625D01* X6441Y2784D02* X7067D01* X7071Y2787D02* Y2836D01* X7023Y2740D02* X6397D01* X6320Y2631D02* Y2634D01* X6262Y2680D02* X6625D01* X6469Y2812D02* X7070D01* Y2816D02* X6473D01* X6625Y2676D02* X6258D01* X6279Y2652D02* X6234D01* X6230Y2648D02* X6275D01* X6307Y2656D02* X6352D01* X6294Y2712D02* X6625D01* X6433Y2776D02* X7059D01* X7055Y2772D02* X6429D01* X6628Y2728D02* X6310D01* X6338Y2640D02* X6320D01* X6352Y2655D02* X6344Y2649D01* X6278Y2696D02* X6625D01* X6453Y2796D02* X7070D01* Y2792D02* X6449D01* X6625Y2700D02* X6282D01* X6346Y2652D02* X6313D01* X6316Y2648D02* X6342D01* X6274Y2692D02* X6625D01* X6457Y2800D02* X7070D01* Y2804D02* X6461D01* X6625Y2688D02* X6270D01* X6317Y2622D02* X6310Y2614D01* X6306Y2612D02* X6353D01* X6349Y2614D02* X6358Y2610D01* X6387Y2640D02* X6625D01* Y2636D02* X6388D01* X6349Y2614D02* X6342Y2621D01* Y2620D02* X6316D01* X6317Y2622D02* X6320Y2631D01* X6266Y2684D02* X6625D01* X6465Y2808D02* X7070D01* Y2820D02* X6477D01* X6625Y2672D02* X6254D01* X6318Y2644D02* X6320Y2634D01* X6321Y2632D02* X6338D01* X6321Y2636D02* X6338D01* X6344Y2649D02* X6339Y2640D01* X6386Y2644D02* X6625D01* Y2648D02* X6383D01* X6387Y2634D02* Y2631D01* Y2634D02* X6385Y2644D01* X6380Y2652D02* X6625D01* Y2664D02* X6246D01* X6272Y2640D02* X5787D01* X5791Y2644D02* X6273D01* X6304Y2657D02* X6294Y2658D01* X6285Y2655D02* X6294Y2658D01* X6271Y2636D02* X5783D01* X5779Y2632D02* X6271D01* X6285Y2655D02* X6277Y2649D01* X6273Y2640D02* X6277Y2649D01* X6272Y2628D02* X5775D01* X5771Y2624D02* X6273D01* Y2640D02* X6272Y2630D01* X6275Y2621D02* X6272Y2630D01* X6275Y2620D02* X5767D01* X5763Y2616D02* X6279D01* X6275Y2621D02* X6282Y2614D01* X6238Y2656D02* X6285D01* X6313Y2652D02* X6304Y2657D01* X6242Y2660D02* X6625D01* X6485Y2828D02* X7070D01* Y2832D02* X6489D01* X6625Y2656D02* X6374D01* X6371Y2657D02* X6379Y2652D01* X6385Y2644D01* X6377Y2614D02* X6384Y2622D01* X6387Y2631D01* X6380Y2616D02* X6625D01* Y2612D02* X6373D01* X6377Y2614D02* X6368Y2610D01* X6358D01* X6365Y2581D02* X6374Y2585D01* X6343Y2552D02* X6014D01* X6015Y2544D02* X6342D01* X6392Y2500D02* X6401Y2503D01* X6410Y2507D01* X6416Y2512D02* X6625D01* Y2532D02* X6429D01* X6625Y2536D02* X6429D01* X6625Y2524D02* X6425D01* X6423Y2520D02* X6625D01* X6430Y2540D02* X6625D01* Y2552D02* X6429D01* X6625Y2564D02* X6425D01* Y2563D02* X6419Y2571D01* X6409Y2752D02* X7035D01* X7039Y2756D02* X6413D01* X6428Y2553D02* X6429Y2543D01* X6625Y2556D02* X6428D01* Y2553D02* X6425Y2563D01* X6409Y2580D02* X6625D01* Y2576D02* X6415D01* X6429Y2543D02* Y2541D01* X6625Y2528D02* X6427D01* Y2531D02* X6429Y2541D01* X6419Y2572D02* X6625D01* Y2516D02* X6420D01* X6427Y2531D02* X6424Y2522D01* X6418Y2514D01* X6410Y2507D01* X6444Y2456D02* X6001D01* X6005Y2452D02* X6440D01* X6405Y2504D02* X6625D01* Y2508D02* X6412D01* X6448Y2460D02* X5997D01* X5988Y2468D02* X5985Y2469D01* X5717D01* X5718Y2492D02* X6625D01* Y2608D02* X5755D01* X5929Y2564D02* X5934Y2573D01* X5937Y2576D02* X5718D01* Y2572D02* X5933D01* X5979Y2587D02* X5969Y2588D01* X5979Y2587D02* X5989Y2584D01* X5924Y2556D02* X5718D01* Y2552D02* X5923D01* X5925Y2555D02* X5923Y2545D01* X5932Y2517D02* X5927Y2526D01* X5925Y2528D02* X5718D01* Y2524D02* X5927D01* X5991Y2504D02* X6367D01* X6372Y2502D02* X6363Y2507D01* X6360Y2508D02* X5997D01* X5994Y2506D02* X6002Y2512D01* X5993Y2464D02* X6452D01* X6456Y2468D02* X5988D01* X6007Y2449D01* X6438D01* X6625Y2480D02* X5718D01* Y2476D02* X6464D01* X6467Y2478D02* X6438Y2449D01* X6392Y2500D02* X6382D01* X6342Y2540D02* X6015D01* X6014Y2536D02* X6342D01* X6372Y2502D02* X6382Y2500D01* X6363Y2507D02* X6355Y2513D01* Y2512D02* X6002D01* X6007Y2520D01* X6012Y2530D01* X6010Y2524D02* X6346D01* X6349Y2521D02* X6345Y2530D01* X6348Y2520D02* X6008D01* X6005Y2516D02* X6352D01* X6349Y2521D02* X6355Y2513D01* X6427Y2560D02* X6625D01* X6430Y2548D02* X6625D01* Y2544D02* X6430D01* X6625Y2568D02* X6422D01* X6403Y2583D02* X6394Y2586D01* X6386Y2624D02* X6625D01* Y2620D02* X6383D01* X6384Y2587D02* X6394Y2586D01* X6345Y2530D02* X6343Y2539D01* X6344Y2528D02* X6012D01* Y2530D02* X6014Y2539D01* Y2543D01* X6013Y2532D02* X6343D01* Y2539D02* Y2549D01* X6344Y2556D02* X6013D01* X6011Y2560D02* X6345D01* Y2559D02* X6343Y2549D01* X6345Y2559D02* X6350Y2568D01* X6349D02* X6007D01* X6004Y2571D02* X5997Y2578D01* X5989Y2584D01* X6371D01* X6374Y2585D02* X6384Y2587D01* X6342Y2548D02* X6014D01* Y2543D02* X6013Y2553D01* X6009Y2563D01* X6010Y2564D02* X6347D01* X6350Y2568D02* X6357Y2575D01* Y2576D02* X6000D01* X5995Y2580D02* X6362D01* X6365Y2581D02* X6357Y2575D01* X6353Y2572D02* X6004D01* Y2571D02* X6009Y2563D01* X5994Y2506D02* X5985Y2501D01* X5923Y2540D02* X5718D01* Y2544D02* X5922D01* X5941Y2580D02* X5934Y2573D01* X5941Y2580D02* X5950Y2585D01* X5948Y2584D02* X5718D01* Y2580D02* X5941D01* X5969Y2588D02* X5960D01* X5950Y2585D02* X5960Y2588D01* X5963D02* X5718D01* Y2592D02* X6625D01* X6626Y2725D02* Y2479D01* X6625Y2488D02* X5718D01* X5743Y2597D02* X5740Y2596D01* X5741D02* X6625D01* X6630Y2729D02* X6626Y2725D01* X7013Y2729D02* X7071Y2787D01* X7019Y2736D02* X6393D01* X6388Y2732D02* X7015D01* X7013Y2729D02* X6630D01* X6437Y2780D02* X7063D01* X7070Y2788D02* X6445D01* X6625Y2704D02* X6286D01* X6340Y2644D02* X6319D01* X6318D02* X6313Y2652D01* X6250Y2668D02* X6625D01* X6481Y2824D02* X7070D01* X7071Y2836D02* X6492D01* X6388Y2732D01* X6385Y2731D02* X6388Y2732D01* X6306Y2724D02* X6625D01* X6417Y2760D02* X7043D01* X7031Y2748D02* X6405D01* X6342Y2621D02* X6339Y2630D01* X6340Y2624D02* X6319D01* X6320Y2628D02* X6339D01* Y2640D02* Y2630D01* X6401Y2744D02* X7027D01* X7074Y3191D02* X6560D01* X6630Y3391D02* Y3337D01* X6627Y3333D02* Y3395D01* X6560Y3095D02* X7074D01* Y3091D02* X6560D01* X6699Y3323D02* Y3406D01* X6695Y3402D02* Y3326D01* X6560Y3115D02* X7074D01* Y3111D02* X6560D01* X6657Y3370D02* Y3359D01* X6663D02* X6652D01* X6560Y3243D02* X7074D01* Y3239D02* X6560D01* X6652Y3370D02* Y3359D01* X6648Y3355D02* Y3373D01* X6560Y3275D02* X7074D01* Y3279D02* X6560D01* X6677Y3384D02* X6638D01* X6634Y3388D02* X6681D01* X6560Y3151D02* X7074D01* Y3147D02* X6560D01* X6688Y3333D02* Y3395D01* X6685Y3391D02* Y3337D01* X6560Y3211D02* X7074D01* Y3215D02* X6560D01* X6688Y3395D02* X6627D01* X6630Y3391D02* X6685D01* X6560Y3087D02* X7074D01* Y3127D02* X6560D01* X6667Y3373D02* X6648D01* X6645Y3377D02* X6670D01* X6560Y3159D02* X7074D01* Y3155D02* X6560D01* X6645Y3351D02* X6670D01* X6681Y3341D02* X6634D01* X6560Y3123D02* X7074D01* Y3119D02* X6560D01* X6674Y3380D02* X6641D01* X6623Y3398D02* X6692D01* X6560Y3263D02* X7074D01* Y3259D02* X6560D01* X6663Y3359D02* Y3370D01* X6652D02* X6663D01* X6560Y3143D02* X7074D01* Y3139D02* X6560D01* X6623Y3330D02* X6692D01* X6695Y3326D02* X6620D01* X6560Y3267D02* X7074D01* Y3271D02* X6560D01* X6641Y3380D02* Y3348D01* X6645Y3351D02* Y3377D01* X6560Y3175D02* X7074D01* Y3179D02* X6560D01* X6692Y3330D02* Y3398D01* X6681Y3388D02* Y3341D01* X6560Y3131D02* X7074D01* Y3135D02* X6560D01* X6695Y3402D02* X6620D01* X6616Y3406D02* X6699D01* X6560Y3199D02* X7074D01* Y3195D02* X6560D01* X6677Y3344D02* Y3384D01* X6685Y3337D02* X6630D01* X6560Y3251D02* X7074D01* Y3247D02* X6560D01* X6620Y3402D02* Y3326D01* X6623Y3330D02* Y3398D01* X6560Y3223D02* X7074D01* Y3219D02* X6560D01* X6648Y3355D02* X6667D01* X6674Y3380D02* Y3348D01* X6560Y3163D02* X7074D01* Y3171D02* X6560D01* X6616Y3323D02* X6699D01* X6688Y3333D02* X6627D01* X6560Y3203D02* X7074D01* Y3207D02* X6560D01* X6638Y3384D02* Y3344D01* X6634Y3341D02* Y3388D01* X6560Y3255D02* X7074D01* Y3227D02* X6560D01* X6667Y3355D02* Y3373D01* X6670Y3377D02* Y3351D01* X6560Y3099D02* X7074D01* Y3107D02* X6560D01* X6559Y3087D02* X7075D01* Y3287D01* X7074Y3235D02* X6560D01* Y3231D02* X7074D01* X7062Y3497D02* Y4143D01* X7066Y4140D02* Y3497D01* X7074Y3103D02* X6560D01* X6559Y3087D02* Y3287D01* X7075D01* X7074Y3283D02* X6560D01* X6641Y3348D02* X6674D01* X6677Y3344D02* X6638D01* X6560Y3187D02* X7074D01* Y3183D02* X6560D01* X6616Y3406D02* Y3323D01* X6560Y3167D02* X7074D01* X7067Y3496D02* X6729D01* Y3605D01* X6670Y3610D02* Y3690D01* X6674D02* Y3610D01* X6663Y3544D02* Y3555D01* X6652D01* X6657D02* Y3544D01* X6663D02* X6652D01* Y3555D01* X6666Y3610D02* Y3690D01* X6662D02* Y3610D01* X6648Y3558D02* Y3540D01* X6667D01* X6670Y3537D02* X6645D01* Y3562D01* X6658Y3610D02* Y3690D01* X6654D02* Y3610D01* X6641Y3566D02* Y3533D01* X6674D01* X6677Y3529D02* X6638D01* Y3569D01* X6650Y3610D02* Y3690D01* X6646D02* Y3610D01* X6634Y3573D02* Y3526D01* X6681D01* X6685Y3522D02* X6630D01* Y3576D01* X6642Y3610D02* Y3690D01* X6638D02* Y3610D01* X6627Y3580D02* Y3519D01* X6688D01* X6619Y3609D02* Y3691D01* X6764D01* X6766Y3692D02* Y3497D01* X6677Y3529D02* Y3569D01* X6638D01* X6634Y3573D02* X6681D01* Y3526D01* X6750Y3497D02* Y3690D01* X6746D02* Y3497D01* X6685Y3522D02* Y3576D01* X6630D01* X6627Y3580D02* X6688D01* Y3519D01* X6742Y3497D02* Y3690D01* X6738D02* Y3497D01* X6692Y3515D02* Y3584D01* X6623D01* X6620Y3587D02* X6695D01* Y3511D01* X6734Y3497D02* Y3690D01* X6730D02* Y3497D01* X6699Y3508D02* Y3591D01* X6616D01* X6648Y3558D02* X6667D01* Y3540D01* X6678Y3610D02* Y3690D01* X6682D02* Y3610D01* X6670Y3537D02* Y3562D01* X6645D01* X6641Y3566D02* X6674D01* Y3533D01* X6694Y3610D02* Y3690D01* X6698Y3610D02* Y3690D01* X6702D02* Y3610D01* X6706Y3690D02* Y3610D01* X6710Y3690D02* Y3610D01* X6762Y3690D02* Y3497D01* X6692Y3515D02* X6623D01* Y3584D01* X6634Y3610D02* Y3690D01* X6630D02* Y3610D01* X6620Y3587D02* Y3511D01* X6695D01* X6699Y3508D02* X6616D01* Y3591D01* X6626Y3610D02* Y3690D01* X6622D02* Y3610D01* X6619Y3609D02* X6725D01* X6729Y3605D01* X6714Y3690D02* Y3610D01* X6718Y3690D02* Y3610D01* X6758Y3690D02* Y3497D01* X6754D02* Y3690D01* X6726Y3609D02* Y3690D01* X6722Y3610D02* Y3690D01* X6768Y3695D02* X6764Y3691D01* X6686Y3690D02* Y3610D01* X6690D02* Y3690D01* X6768Y3695D02* Y4090D01* X6882Y4094D02* X6878Y4090D01* X6768D01* X6770Y4089D02* Y3497D01* X6774D02* Y4089D01* X6882Y4094D02* Y4295D01* X6854Y4300D02* Y4408D01* X6850D02* Y4300D01* X6878Y4299D02* X6882Y4295D01* X6994Y4308D02* Y3497D01* X6990D02* Y4304D01* X6998Y4329D02* Y4408D01* X6978D02* Y4347D01* X7070Y4702D02* X6596D01* Y4694D02* X7070D01* X6973Y4346D02* X6963Y4343D01* X6973Y4346D02* X6983Y4345D01* X7070Y4654D02* X6596D01* Y4662D02* X7070D01* X6994Y4338D02* Y4408D01* X6990D02* Y4342D01* X7070Y4670D02* X6596D01* Y4734D02* X7070D01* X6974Y4347D02* Y4408D01* X6970D02* Y4346D01* X7070Y4726D02* X6596D01* Y4686D02* X7070D01* X6982Y4346D02* Y4408D01* X6986D02* Y4344D01* X7070Y4638D02* X6596D01* Y4630D02* X7070D01* X6991Y4341D02* X6983Y4345D01* X6991Y4341D02* X6997Y4333D01* X7070Y4678D02* X6596D01* Y4682D02* X7070D01* X7071Y4626D02* X6595D01* Y4902D01* X6596Y4874D02* X7070D01* X6596Y4870D02* X7070D01* Y4866D02* X6596D01* X7070Y4862D02* X6596D01* Y4842D02* X7070D01* X7103Y4872D02* X7181D01* Y4844D02* X7103D01* X7070Y4810D02* X6596D01* X7070Y4642D02* X6596D01* X6790Y4408D02* Y4300D01* X6794D02* Y4408D01* X6596Y4770D02* X7070D01* Y4774D02* X6596D01* X6842Y4408D02* Y4300D01* X6846D02* Y4408D01* X6596Y4806D02* X7070D01* Y4814D02* X6596D01* X6810Y4408D02* Y4300D01* X6806D02* Y4408D01* X6596Y4802D02* X7070D01* Y4798D02* X6596D01* X6830Y4408D02* Y4300D01* X6826D02* Y4408D01* X6596Y4766D02* X7070D01* X7156Y4897D02* Y4819D01* X7070Y4714D02* X6596D01* Y4710D02* X7070D01* X6966Y4345D02* Y4408D01* X6962D02* Y4342D01* X7070Y4742D02* X6596D01* Y4746D02* X7070D01* X7128Y4819D02* Y4897D01* X7070Y4846D02* X6596D01* X7070Y4850D02* X6596D01* X6766Y4408D02* Y4300D01* X6770D02* Y4408D01* X6596Y4722D02* X7070D01* Y4718D02* X6596D01* X6818Y4408D02* Y4300D01* X6814D02* Y4408D01* X6596Y4750D02* X7070D01* Y4738D02* X6596D01* X6798Y4408D02* Y4300D01* X6802D02* Y4408D01* X6596Y4674D02* X7070D01* Y4690D02* X6596D01* X6758Y4408D02* Y4300D01* X6762D02* Y4408D01* X6596Y4754D02* X7070D01* Y4758D02* X6596D01* X6834Y4408D02* Y4300D01* X6838D02* Y4408D01* X6596Y4790D02* X7070D01* Y4794D02* X6596D01* X6750Y4408D02* Y4300D01* X6754D02* Y4408D01* X6596Y4818D02* X7070D01* X6596Y4822D02* X7070D01* Y4890D02* X6596D01* X7070Y4894D02* X6596D01* Y4886D02* X7070D01* X6596Y4882D02* X7070D01* X6596Y4878D02* X7070D01* Y4854D02* X6596D01* X7070Y4858D02* X6596D01* X6738Y4408D02* Y4300D01* X6734D02* Y4408D01* X6596Y4762D02* X7070D01* Y4730D02* X6596D01* X6742Y4408D02* Y4300D01* X6746D02* Y4408D01* X6596Y4666D02* X7070D01* Y4658D02* X6596D01* X6774Y4408D02* Y4300D01* X6778D02* Y4408D01* X6596Y4786D02* X7070D01* Y4782D02* X6596D01* X6822Y4408D02* Y4300D01* X6878Y4299D02* X6721D01* Y4409D02* X7079D01* X7078Y4408D02* Y4218D01* X7064Y4142D02* X7056Y4148D01* X7050Y4154D02* Y3497D01* X7046D02* Y4162D01* X7045Y4165D02* X7049Y4156D01* X7056Y4148D01* X7074Y4217D02* Y4408D01* X7070D02* Y4216D01* X7045Y4165D02* X7043Y4175D01* X7044Y4185D01* X7058Y4408D02* Y4209D01* X7069Y4214D02* X7078Y4217D01* X7069Y4214D02* X7060Y4209D01* X7054Y4205D02* Y4408D01* X7050D02* Y4200D01* X7053Y4203D02* X7060Y4209D01* X7053Y4203D02* X7047Y4194D01* X7044Y4185D01* X7046Y4193D02* Y4408D01* X7042D02* Y3497D01* X7102Y3617D02* Y3572D01* X7106Y3571D02* X7071D01* X6934Y3497D02* Y3999D01* Y4000D02* X6930Y3990D01* X6894Y3985D02* Y3497D01* X6890D02* Y3990D01* X6923Y3984D02* X6930Y3990D01* X6913Y3980D02* X6903Y3981D01* X6878Y4090D02* Y3497D01* X6874D02* Y4089D01* X6934Y4000D02* X6935Y4005D01* X6933Y4015D02* X6935Y4005D01* X6870Y4089D02* Y3497D01* X6866D02* Y4089D01* X6895Y3986D02* X6903Y3981D01* X6898Y3983D02* Y3497D01* X7067Y3496D02* Y3567D01* X7070Y3571D02* Y4139D01* X7078Y4138D02* X7079D01* Y4008D01* X7086Y4003D02* Y3958D01* X7075Y3957D02* X7106D01* Y4004D01* X7090Y4003D02* Y3958D01* X7094Y4003D02* Y3958D01* X7102D02* Y4003D01* X7098Y3958D02* Y4003D01* X7106Y4004D02* X7083D01* X6926Y3986D02* Y3497D01* X6930D02* Y3990D01* X7082Y3958D02* Y4003D01* X7083Y4004D02* X7079Y4008D01* X6918Y3981D02* Y3497D01* X6914D02* Y3980D01* X7078Y3958D02* Y4137D01* Y4138D02* X7073Y4139D01* X7058Y4145D02* Y3497D01* X7054D02* Y4149D01* X7064Y4142D02* X7073Y4139D01* X7074Y4138D02* Y3957D01* X6906Y3980D02* Y3497D01* X6910D02* Y3980D01* X7075Y3957D02* X7071Y3953D01* X6885Y4003D02* X6886Y4013D01* X6790Y4089D02* Y3497D01* X6786D02* Y4089D01* X6894Y4024D02* Y4408D01* X6890D02* Y4020D01* X6778Y4089D02* Y3497D01* X6782D02* Y4089D01* X6891Y4021D02* X6886Y4013D01* X6891Y4021D02* X6899Y4027D01* X6802Y4089D02* Y3497D01* X6806D02* Y4089D01* X6902Y4029D02* Y4408D01* X6898D02* Y4028D01* X6798Y4089D02* Y3497D01* X6794D02* Y4089D01* X6886Y4012D02* Y4408D01* X6878D02* Y4300D01* X6962Y4304D02* Y3497D01* X6966D02* Y4301D01* X6976Y4300D02* X6986Y4302D01* X6934Y4408D02* Y4009D01* X6862Y4089D02* Y3497D01* X6858D02* Y4089D01* X6933Y4015D02* X6927Y4023D01* X6919Y4028D02* X6927Y4023D01* X6846Y4089D02* Y3497D01* X6842D02* Y4089D01* X6926Y4024D02* Y4408D01* X6930D02* Y4019D01* X6854Y4089D02* Y3497D01* X6850D02* Y4089D01* X6888Y3993D02* X6895Y3986D01* X6888Y3993D02* X6885Y4003D01* X6822Y4089D02* Y3497D01* X6826D02* Y4089D01* X6914Y4030D02* Y4408D01* X6858D02* Y4300D01* X6954Y4316D02* X6953Y4326D01* X6946Y4408D02* Y3497D01* X6942D02* Y4408D01* X6954Y4331D02* Y4408D01* X6958D02* Y4338D01* X6882Y4408D02* Y3497D01* X6886D02* Y3999D01* X6913Y3980D02* X6923Y3984D01* X6922Y3983D02* Y3497D01* X7067Y3567D02* X7071Y3571D01* X7090Y3572D02* Y3617D01* X7030Y3497D02* Y4408D01* X7026D02* Y3497D01* X7086Y3617D02* Y3572D01* X7082D02* Y3617D01* X7022Y3497D02* Y4408D01* X7018D02* Y3497D01* X7071Y3622D02* Y3953D01* X6902Y3981D02* Y3497D01* X6830D02* Y4089D01* X6918Y4029D02* Y4408D01* X6922D02* Y4027D01* X6838Y4089D02* Y3497D01* X6834D02* Y4089D01* X6919Y4028D02* X6909Y4030D01* X6899Y4027D02* X6909Y4030D01* X6814Y4089D02* Y3497D01* X6818D02* Y4089D01* X6910Y4031D02* Y4408D01* X6906D02* Y4030D01* X6810Y4089D02* Y3497D01* X6938D02* Y4408D01* X6956Y4336D02* X6953Y4326D01* X6866Y4300D02* Y4408D01* X6862D02* Y4300D01* X6954Y4314D02* Y3497D01* X6958D02* Y4307D01* X6870Y4300D02* Y4408D01* X6874D02* Y4300D01* X6958Y4308D02* X6954Y4316D01* X6950Y4408D02* Y3497D01* X6986D02* Y4301D01* X6999Y4323D02* X6997Y4333D01* X6999Y4323D02* X6998Y4317D01* X6982Y4300D02* Y3497D01* X6978D02* Y4299D01* X6994Y4308D02* X6998Y4317D01* X6994Y4308D02* X6986Y4302D01* X6974Y4299D02* Y3497D01* X6970D02* Y4300D01* X6958Y4308D02* X6966Y4302D01* X6976Y4300D01* X6956Y4336D02* X6963Y4343D01* X7070Y4646D02* X6596D01* Y4650D02* X7070D01* X7079Y4409D02* Y4217D01* X7078D01* X7066Y4214D02* Y4408D01* X7062D02* Y4212D01* X6998Y4315D02* Y3497D01* X7098Y3572D02* Y3617D01* X7038Y3497D02* Y4408D01* X7034D02* Y3497D01* X7094Y3617D02* Y3572D01* X7075Y3618D02* X7106D01* Y3571D01* X7002Y3497D02* Y4408D01* X7006D02* Y3497D01* X7074Y3618D02* Y3572D01* X7078D02* Y3617D01* X7014Y3497D02* Y4408D01* X7010D02* Y3497D01* X7075Y3618D02* X7071Y3622D01* X7070Y4778D02* X6596D01* X6721Y4409D02* Y4299D01* X6722Y4300D02* Y4408D01* X6596Y4826D02* X7070D01* X6596Y4830D02* X7070D01* Y4838D02* X6596D01* X7070Y4834D02* X6596D01* X6782Y4408D02* Y4300D01* X6786D02* Y4408D01* X6596Y4706D02* X7070D01* Y4698D02* X6596D01* X6726Y4408D02* Y4300D01* X6730D02* Y4408D01* X6596Y4634D02* X7070D01* X7071Y4626D02* Y4902D01* X6595D01* X6596Y4898D02* X7070D01* X7089Y5370D02* X7107Y5397D01* Y5415D01* X7089Y5441D01* X7009Y5423D02* X7027Y5441D01* Y5370D01* X7054D02* X7000D01* X6982D02* X6929D01* Y5441D01* X6894D02* X6876Y5415D01* Y5397D01* X6894Y5370D01* X6760D02* X6725D01* X6716Y5379D01* Y5406D01* X6725Y5415D01* X6751D01* X6760Y5406D01* Y5397D01* X6751Y5388D01* X6716D01* X6689Y5415D02* X6654D01* X6645Y5406D01* Y5379D01* X6654Y5370D01* X6689D01* Y5441D01* X6591Y5370D02* X6609D01* X6600D02* Y5415D01* X6591D01* X6600Y5432D02* Y5423D01* X6591D01* Y5432D01* X6600D01* X6556D02* X6547Y5441D01* X6511D01* X6502Y5432D01* Y5415D01* X6511Y5406D01* X6547D01* X6556Y5397D01* Y5379D01* X6547Y5370D01* X6511D01* X6502Y5379D01* X6396Y5415D02* X6360D01* X6378Y5441D02* Y5379D01* X6387Y5370D01* X6396D01* X6405Y5379D01* X6334Y5370D02* Y5406D01* X6325Y5415D01* X6298D01* X6289Y5406D01* Y5415D02* Y5370D01* X6262D02* X6227D01* X6218Y5379D01* Y5406D01* X6227Y5415D01* X6254D01* X6262Y5406D01* Y5397D01* X6254Y5388D01* X6218D01* X6191Y5370D02* Y5406D01* X6182Y5415D01* X6156D01* X6147Y5406D01* Y5415D02* Y5370D01* X6111Y5415D02* X6085D01* X6076Y5406D01* Y5379D01* X6085Y5370D01* X6111D01* X6120Y5379D01* Y5406D01* X6111Y5415D01* X6005Y5343D02* Y5415D01* X6040D01* X6049Y5406D01* Y5379D01* X6040Y5370D01* X6005D01* X5960Y5406D02* X5969Y5415D01* X5978D01* X5987Y5406D01* Y5370D01* X5960D02* Y5406D01* X5951Y5415D01* X5942D01* X5934Y5406D01* Y5415D02* Y5370D01* X5791Y5379D02* X5800Y5370D01* X5836D01* X5845Y5379D01* X5862D02* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5871D01* X5862Y5406D01* Y5379D01* X5845Y5432D02* X5836Y5441D01* X5800D01* X5791Y5432D01* Y5379D01* X5616Y5406D02* X5563D01* X5332Y5441D02* X5278Y5370D01* X5287D02* X5323D01* X5332Y5379D01* Y5432D01* X5323Y5441D01* X5287D01* X5278Y5432D01* Y5379D01* X5287Y5370D01* X5234Y5388D02* X5225Y5379D01* X5234Y5370D01* X5243Y5379D01* X5234Y5388D01* X5189Y5415D02* X5163Y5370D01* X5136Y5415D01* X5109Y5397D02* Y5406D01* X5101Y5415D01* X5074D01* X5065Y5406D01* Y5379D01* X5074Y5370D02* X5109D01* Y5397D02* X5101Y5388D01* X5065D01* X5074Y5370D02* X5065Y5379D01* X5047Y5370D02* X5021Y5406D01* X4994D02* X5038D01* X5047Y5415D01* Y5432D01* X5038Y5441D01* X4994D01* Y5370D01* X4621Y5441D02* X4567D01* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* Y5441D02* X4692Y5432D01* X4683Y5406D02* X4647D01* X4638Y5415D01* X4683Y5441D02* X4647D01* X4638Y5432D01* Y5415D01* X4603Y5406D02* X4567D01* X4549Y5441D02* Y5379D01* X4541Y5370D01* X4505D01* X4496Y5379D01* Y5441D01* X4478Y5370D02* X4425D01* Y5441D01* X4398D02* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D01* X4407Y5415D01* X4398Y5441D02* X4407Y5432D01* Y5415D01* X4398Y5406D02* X4354D01* X4336D02* X4283D01* X4256D02* X4221D01* X4212Y5397D01* Y5379D01* X4194D02* X4185Y5370D01* X4123Y5379D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X4194D02* X4185Y5441D01* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4212Y5379D02* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D01* X3909Y5370D02* X3856D01* X3883D02* Y5441D01* X3909D02* X3856D01* X3838Y5432D02* X3829Y5441D01* X3794D01* X3785Y5432D01* Y5379D01* X3794Y5370D01* X3829D01* X3838Y5379D01* X3714Y5406D02* X3758D01* X3767Y5415D01* Y5432D01* X3758Y5441D01* X3714D01* Y5370D01* X3687Y5379D02* X3678Y5370D01* X3669D01* X3661Y5379D01* Y5441D01* X3643Y5415D02* X3678D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3545Y5397D02* X3509D01* X3501Y5388D01* Y5379D01* X3509Y5370D01* X3545D01* Y5406D01* X3536Y5415D01* X3509D01* X3429Y5343D02* Y5415D01* X3465D01* X3474Y5406D01* Y5379D01* X3465Y5370D01* X3429D01* X3385Y5406D02* X3394Y5415D01* X3403D01* X3412Y5406D01* Y5370D01* X3385D02* Y5406D01* X3376Y5415D01* X3367D01* X3358Y5406D01* Y5415D02* Y5370D01* X3287Y5379D02* Y5406D01* X3296Y5415D01* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* X3269D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3758Y4825D02* Y4695D01* X3765D01* Y4825D01* X3758D01* X3761Y4824D02* Y4696D01* X3736D02* Y4824D01* X3733Y4825D02* X3740D01* Y4695D01* X3733D01* Y4825D01* X3661Y4824D02* Y4696D01* X3658Y4695D02* X3665D01* Y4825D01* X3658D01* Y4695D01* X3683D02* Y4825D01* X3690D01* Y4695D01* X3683D01* X3686Y4696D02* Y4824D01* X3708Y4825D02* Y4695D01* X3715D01* Y4825D01* X3708D01* X3711Y4824D02* Y4696D01* X3633Y4695D02* Y4825D01* X3640D01* Y4695D01* X3633D01* X3636Y4696D02* Y4824D01* X3611D02* Y4696D01* X3608Y4695D02* X3615D01* Y4825D01* X3608D01* Y4695D01* X3483D02* Y4825D01* X3490D01* Y4695D01* X3483D01* X3486Y4696D02* Y4824D01* X3508Y4825D02* Y4695D01* X3515D01* Y4825D01* X3508D01* X3511Y4824D02* Y4696D01* X3536D02* Y4824D01* X3533Y4825D02* X3540D01* Y4695D01* X3533D01* Y4825D01* X3558D02* Y4695D01* X3565D01* Y4825D01* X3558D01* X3561Y4824D02* Y4696D01* X3586D02* Y4824D01* X3583Y4825D02* X3590D01* Y4695D01* X3583D01* Y4825D01* X3461Y4824D02* Y4696D01* X3458Y4695D02* X3465D01* Y4825D01* X3458D01* Y4695D01* X3433D02* Y4825D01* X3440D01* Y4695D01* X3433D01* X3436Y4696D02* Y4824D01* X3411D02* Y4696D01* X3408Y4695D02* X3415D01* Y4825D01* X3408D01* Y4695D01* X3386Y4696D02* Y4824D01* X3383Y4825D02* X3390D01* Y4695D01* X3383D01* Y4825D01* X3358D02* Y4695D01* X3365D01* Y4825D01* X3358D01* X3361Y4824D02* Y4696D01* X3336D02* Y4824D01* X3333Y4825D02* X3340D01* Y4695D01* X3333D01* Y4825D01* X3311Y4696D02* Y4824D01* X3308Y4825D02* X3315D01* Y4695D01* X3308D01* Y4825D01* X3286Y4824D02* Y4696D01* X3283Y4695D02* X3290D01* Y4825D01* X3283D01* Y4695D01* X3161Y4696D02* Y4824D01* X3158Y4825D02* X3165D01* Y4695D01* X3158D01* Y4825D01* X3133D02* Y4695D01* X3140D01* Y4825D01* X3133D01* X3136Y4824D02* Y4696D01* X3111D02* Y4824D01* X3108Y4825D02* X3115D01* Y4695D01* X3108D01* Y4825D01* X3086Y4824D02* Y4696D01* X3083Y4695D02* X3090D01* Y4825D01* X3083D01* Y4695D01* X3183Y4825D02* Y4695D01* X3190D01* Y4825D01* X3183D01* X3186Y4824D02* Y4696D01* X3208Y4695D02* Y4825D01* X3215D01* Y4695D01* X3208D01* X3211Y4696D02* Y4824D01* X3236D02* Y4696D01* X3233Y4695D02* X3240D01* Y4825D01* X3233D01* Y4695D01* X3258D02* Y4825D01* X3265D01* Y4695D01* X3258D01* X3261Y4696D02* Y4824D01* X3061D02* Y4696D01* X3058Y4695D02* X3065D01* Y4825D01* X3058D01* Y4695D01* X3033D02* Y4825D01* X3040D01* Y4695D01* X3033D01* X3036Y4696D02* Y4824D01* X3011D02* Y4696D01* X3008Y4695D02* X3015D01* Y4825D01* X3008D01* Y4695D01* X2986Y4696D02* Y4824D01* X2983Y4825D02* X2990D01* Y4695D01* X2983D01* Y4825D01* X2958D02* Y4695D01* X2965D01* Y4825D01* X2958D01* X2961Y4824D02* Y4696D01* X2936D02* Y4824D01* X2933Y4825D02* X2940D01* Y4695D01* X2933D01* Y4825D01* X2811Y4824D02* Y4696D01* X2808Y4695D02* X2815D01* Y4825D01* X2808D01* Y4695D01* X2833D02* Y4825D01* X2840D01* Y4695D01* X2833D01* X2836Y4696D02* Y4824D01* X2861D02* Y4696D01* X2858Y4695D02* X2865D01* Y4825D01* X2858D01* Y4695D01* X2883D02* Y4825D01* X2890D01* Y4695D01* X2883D01* X2886Y4696D02* Y4824D01* X2908Y4825D02* Y4695D01* X2915D01* Y4825D01* X2908D01* X2911Y4824D02* Y4696D01* X2683Y4695D02* Y4825D01* X2690D01* Y4695D01* X2683D01* X2686Y4696D02* Y4824D01* X2708Y4825D02* Y4695D01* X2715D01* Y4825D01* X2708D01* X2711Y4824D02* Y4696D01* X2736D02* Y4824D01* X2733Y4825D02* X2740D01* Y4695D01* X2733D01* Y4825D01* X2758D02* Y4695D01* X2765D01* Y4825D01* X2758D01* X2761Y4824D02* Y4696D01* X2786D02* Y4824D01* X2783Y4825D02* X2790D01* Y4695D01* X2783D01* Y4825D01* X2661Y4824D02* Y4696D01* X2658Y4695D02* X2665D01* Y4825D01* X2658D01* Y4695D01* X2633D02* Y4825D01* X2640D01* Y4695D01* X2633D01* X2636Y4696D02* Y4824D01* X2611D02* Y4696D01* X2608Y4695D02* X2615D01* Y4825D01* X2608D01* Y4695D01* X2586Y4696D02* Y4824D01* X2583Y4825D02* X2590D01* Y4695D01* X2583D01* Y4825D01* X2558D02* Y4695D01* X2565D01* Y4825D01* X2558D01* X2561Y4824D02* Y4696D01* X2536D02* Y4824D01* X2533Y4825D02* X2540D01* Y4695D01* X2533D01* Y4825D01* X1719Y3879D02* Y4034D01* X1715Y4422D02* Y4905D01* X1711D02* Y4422D01* X1715Y4034D02* Y3879D01* X1711D02* Y4034D01* X1707Y4422D02* Y4905D01* X1703D02* Y4422D01* X1707Y4034D02* Y3879D01* X1703D02* Y4034D01* X1699Y3879D02* Y4034D01* Y4422D02* Y4905D01* X1667D02* Y4422D01* X1441Y4465D02* Y4543D01* X1500D01* X1475Y4515D02* Y3596D01* X1479D02* Y4515D01* X1524Y4516D02* X1528Y4520D01* X1639Y4422D02* Y4905D01* X1643D02* Y4422D01* X1524Y4516D02* X1469D01* Y3595D01* X1483Y3596D02* Y4515D01* X1528Y4520D02* Y4906D01* X1535Y4905D02* Y3596D01* X1655Y3632D02* Y2785D01* X1659D02* Y3629D01* X1543Y3596D02* Y4905D01* X1539D02* Y3596D01* X1657Y3630D02* X1653Y3634D01* X1775Y3629D02* Y2942D01* X1779D02* Y3629D01* Y3879D02* Y4034D01* X1775Y4422D02* Y4905D01* X1779D02* Y4422D01* X1683Y4034D02* Y3879D01* X1639Y4034D02* Y2785D01* X1799Y2942D02* Y3629D01* X1755Y3879D02* Y4034D01* X1751Y4422D02* Y4905D01* X1747D02* Y4422D01* X1751Y4034D02* Y3879D01* X1803Y3629D02* Y2942D01* X1807D02* Y3629D01* X1747Y3879D02* Y4034D01* X1743Y4422D02* Y4905D01* X1739D02* Y4422D01* X1743Y4034D02* Y3879D01* X1811Y3629D02* Y2942D01* X1823D02* Y3629D01* X1731Y3879D02* Y4034D01* X1727Y4422D02* Y4905D01* X1723D02* Y4422D01* X1727Y4034D02* Y3879D01* X1723D02* Y4034D01* X1719Y4422D02* Y4905D01* X1731D02* Y4422D01* X1735Y4034D02* Y3879D01* X1819Y3629D02* Y2942D01* X1815D02* Y3629D01* X1739Y3879D02* Y4034D01* X1735Y4422D02* Y4905D01* X1779Y4421D02* X1598D01* X1623Y4422D02* Y4905D01* X1619D02* Y4422D01* X1523Y4515D02* Y3596D01* X1519D02* Y4515D01* X1615Y4422D02* Y4905D01* X1611D02* Y4422D01* X1515Y4515D02* Y3596D01* X1511D02* Y4515D01* X1607Y4422D02* Y4905D01* X1603D02* Y4422D01* X1507Y4515D02* Y3596D01* X1531D02* Y4905D01* X1528Y4906D02* X1779D01* Y4421D01* X1635Y4422D02* Y4905D01* X1631D02* Y4422D01* X1527Y4518D02* Y3596D01* X1653Y3634D02* X1655Y3874D01* X1631Y4034D02* Y2785D01* X1635D02* Y4034D01* X1679Y3879D02* Y4034D01* X1675D02* Y3879D01* X1627Y4034D02* Y2785D01* X1599D02* Y2964D01* X1759Y2942D02* Y3629D01* X1763D02* Y2942D01* X1697Y2941D02* X1827D01* Y3630D01* X1657D01* X1767Y3629D02* Y2942D01* X1771D02* Y3629D01* X1595Y3596D02* Y4038D01* X1594Y4039D02* X1598Y4035D01* X1779D01* X1755Y4422D02* Y4905D01* X1759D02* Y4422D01* Y4034D02* Y3879D01* X1763Y4034D02* Y3879D01* X1795Y3629D02* Y2942D01* X1783D02* Y3629D01* X1775Y3879D02* Y4034D01* X1771Y4422D02* Y4905D01* X1767D02* Y4422D01* X1771Y4034D02* Y3879D01* X1787Y3629D02* Y2942D01* X1791D02* Y3629D01* X1767Y3879D02* Y4034D01* X1763Y4422D02* Y4905D01* X1925Y5462D02* X1075D01* X1200D02* X1500Y5762D01* X1800Y5462D01* X1500Y5162D01* X1200Y5462D01* X1687Y4905D02* Y4422D01* Y4034D02* Y3879D01* X1647Y4034D02* Y2785D01* X1651D02* Y4034D01* X1691Y3879D02* Y4034D01* Y4422D02* Y4905D01* X1695D02* Y4422D01* Y4034D02* Y3879D01* X1659Y3878D02* X1779D01* Y4035D01* X1619Y4034D02* Y2785D01* X1623D02* Y4034D01* X1671Y3879D02* Y4034D01* X1667D02* Y3879D01* X1615Y4034D02* Y2785D01* X1611D02* Y4034D01* X1663Y3879D02* Y4034D01* X1659D02* Y3879D01* X1603Y4034D02* Y2785D01* X1607D02* Y4034D01* X1659Y3878D02* X1655Y3874D01* Y3868D02* Y4034D01* X1643D02* Y2785D01* X1693Y2937D02* X1697Y2941D01* X1535Y2964D02* Y2785D01* X1539D02* Y2964D01* X1699Y2942D02* Y3629D01* X1583Y3596D02* Y4905D01* X1587D02* Y3596D01* X1703Y3629D02* Y2942D01* X1543Y2964D02* Y2785D01* X1563D02* Y2964D01* X1723Y2942D02* Y3629D01* X1727D02* Y2942D01* X1567Y2964D02* Y2785D01* X1571D02* Y2964D01* X1731Y2942D02* Y3629D01* X1735D02* Y2942D01* X1575Y2964D02* Y2785D01* X1579D02* Y2964D01* X1739Y2942D02* Y3629D01* X1743D02* Y2942D01* X1583Y2964D02* Y2785D01* X1587D02* Y2964D01* X1747Y2942D02* Y3629D01* X1751D02* Y2942D01* X1591Y2964D02* Y2785D01* X1595D02* Y2964D01* X1755Y2942D02* Y3629D01* X1719D02* Y2942D01* X1559Y2964D02* Y2785D01* X1555D02* Y2964D01* X1715Y2942D02* Y3629D01* X1602Y3591D02* X1598Y3595D01* X1469D01* X1471Y3596D02* Y4515D01* X1663Y4422D02* Y4905D01* X1651D02* Y4422D01* X1500Y4543D02* Y4937D01* X1850D01* X1655Y4905D02* Y4422D01* X1683D02* Y4905D01* X1998Y4823D02* Y4901D01* X1970D02* Y4823D01* X1679Y4905D02* Y4422D01* X1675D02* Y4905D01* X1945Y4848D02* X2023D01* Y4876D02* X1945D01* X1671Y4905D02* Y4422D01* X1659D02* Y4905D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X8324Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8024Y4937D01* X8324Y4637D01* Y4737D02* X8524Y4937D01* X8324Y5137D01* X8124Y4937D01* X8324Y4737D01* X7799Y4587D02* Y4760D01* Y4878D01* X7740Y4937D01* X7449D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X8324Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2433Y5474D02* X2460D01* X2467Y5481D01* Y5494D01* X2460Y5501D01* X2433D01* X2427Y5494D01* Y5481D01* X2433Y5474D01* Y5501D02* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640D02* Y5507D01* X2647Y5501D01* X2673D01* X2647D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* Y5494D01* X2673Y5501D01* X2693Y5507D02* X2700Y5501D01* X2727D01* X2733Y5507D01* X2693Y5481D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2673Y5501D02* X2680Y5507D01* Y5521D01* X2673Y5527D01* X2647D01* X2640Y5521D01* X2587D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2373Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2353Y5501D01* X2360Y5507D01* Y5521D01* X2353Y5527D01* X2327D01* X2320Y5521D01* X2307D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2273Y5474D01* X2300D01* X2307Y5481D01* Y5521D01* Y5527D02* X2267Y5474D01* Y5391D02* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5437D02* X2267Y5384D01* Y5391D02* X2273Y5384D01* X2300D01* X2307Y5391D01* X2320D02* X2353Y5411D01* X2360Y5417D01* Y5431D01* X2353Y5437D01* X2327D01* X2320Y5431D01* X2307D02* Y5391D01* X2320D02* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* X2433Y5411D02* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2467Y5431D01* Y5417D01* X2460Y5411D01* X2467Y5404D01* Y5391D01* X2460Y5384D01* X2433D01* X2427Y5391D01* Y5404D01* X2433Y5411D01* X2460D01* X2487Y5424D02* X2500Y5437D01* Y5384D01* X2480D02* X2520D01* X2533D02* X2573Y5437D01* X2587Y5431D02* Y5391D01* X2593Y5384D01* X2620D01* X2627Y5391D01* Y5404D01* X2620Y5411D01* X2593D01* X2587Y5404D01* Y5431D02* X2593Y5437D01* X2620D01* X2627Y5431D01* X2640D02* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5404D01* Y5391D01* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2640Y5431D02* X2647Y5437D01* X2673D01* X2680Y5431D01* Y5417D01* X2673Y5411D01* X2693Y5391D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2780Y5437D02* X2753D01* X2747Y5431D01* Y5391D01* X2753Y5384D01* X2780D01* X2787Y5391D01* X2747Y5384D02* X2787Y5437D01* X2780D02* X2787Y5431D01* Y5391D01* X2800Y5411D02* X2840D01* X2853Y5391D02* X2860Y5384D01* X2887D01* X2893Y5391D01* Y5431D01* X2887Y5437D01* Y5474D02* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2893D02* X2853Y5474D01* X2840Y5501D02* X2800D01* X2787Y5481D02* Y5521D01* X2780Y5527D01* X2787D02* X2747Y5474D01* X2787Y5481D02* X2780Y5474D01* X2753D01* X2747Y5481D01* Y5521D01* X2753Y5527D01* X2780D01* X2853Y5167D02* Y5114D01* X2833Y5141D02* Y5134D01* X2853Y5127D02* X2880Y5147D01* X2853Y5127D02* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2720Y5147D02* X2727Y5141D01* Y5121D01* X2720Y5114D01* X2700D01* X2693Y5121D01* Y5141D01* X2700Y5147D01* X2720D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D01* X2587Y5141D01* Y5147D02* Y5114D01* X2547D02* X2560D01* X2553D02* Y5147D01* X2547D01* Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* X2287Y5141D02* X2293Y5147D01* X2287Y5154D01* X2280Y5147D01* X2287Y5141D01* Y5114D02* X2293Y5121D01* X2287Y5127D01* X2280Y5121D01* X2287Y5114D01* X2227D02* X2240D01* X2233D02* Y5167D01* X2227D01* X2213Y5204D02* Y5237D01* Y5231D02* X2220Y5237D01* X2240D01* X2247Y5231D01* X2267Y5204D02* Y5237D01* Y5231D02* X2273Y5237D01* X2293D01* X2300Y5231D01* Y5204D01* X2320Y5217D02* X2347D01* X2353Y5224D01* Y5231D01* X2347Y5237D01* X2327D01* X2320Y5231D01* Y5211D01* X2327Y5204D01* X2353D01* X2400Y5237D02* X2373D01* X2387Y5257D02* Y5211D01* X2393Y5204D01* X2400D01* X2407Y5211D01* X2447Y5204D02* X2453Y5211D01* X2447Y5217D01* X2440Y5211D01* X2447Y5204D01* Y5244D02* X2440Y5237D01* X2447Y5231D01* X2453Y5237D01* X2447Y5244D01* X2533Y5237D02* Y5224D01* X2547Y5204D01* X2553Y5211D01* X2560Y5204D01* X2553Y5211D02* Y5224D01* X2560Y5204D02* X2573Y5224D01* Y5237D01* X2587D02* Y5224D01* X2600Y5204D01* X2607Y5224D02* Y5211D01* X2600Y5204D01* X2607Y5211D02* X2613Y5204D01* X2627Y5224D01* Y5237D02* Y5224D01* X2640D02* Y5237D01* Y5224D02* X2653Y5204D01* X2660Y5211D01* Y5224D01* Y5211D02* X2667Y5204D01* X2680Y5224D01* Y5237D01* X2780Y5147D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* Y5141D02* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2980D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3047D02* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* Y5167D02* Y5114D01* X3067Y5121D02* Y5141D01* X3073Y5147D01* X3093D01* X3100Y5141D01* Y5134D01* X3093Y5127D01* X3067D01* Y5121D02* X3073Y5114D01* X3100D01* X3047Y5204D02* X3020D01* X3013Y5211D01* Y5231D01* X3020Y5237D01* X3013Y5217D02* X3040D01* X3047Y5224D01* Y5231D01* X3040Y5237D01* X3020D01* X2993D02* X2967D01* X2960Y5231D01* Y5211D01* X2967Y5204D01* X2993D01* Y5257D01* X2940Y5437D02* X2913D01* X2907Y5431D01* Y5391D01* X2913Y5384D01* X2940D01* X2947Y5391D01* Y5431D01* X2940Y5437D01* X2947D02* X2907Y5384D01* X2893Y5417D02* X2887Y5411D01* X2860D01* X2853Y5417D01* Y5431D01* X2860Y5437D01* X2887D01* Y5474D02* X2860D01* X2853Y5481D01* Y5521D01* X2860Y5527D01* X2887D01* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2827Y5764D02* X2840D01* Y5751D01* X2833Y5744D01* X2853D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2993Y5654D02* Y5707D01* X3000Y5681D02* X2960D01* Y5707D01* Y5744D02* Y5797D01* Y5771D02* X3000D01* Y5797D02* Y5744D01* X2907Y5797D02* Y5744D01* X2933D01* X2940Y5751D01* Y5771D01* X2933Y5777D01* X2907D01* X2893Y5744D02* Y5771D01* X2887Y5777D01* X2880D01* X2867D02* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* Y5654D02* X2880Y5661D01* X2873Y5667D01* X2867Y5661D01* X2873Y5654D01* X2833Y5681D02* X2827Y5687D01* X2807D01* X2800Y5681D01* Y5687D02* Y5654D01* X2780Y5661D02* X2773Y5654D01* X2767D01* X2760Y5661D01* Y5707D01* X2773Y5687D02* X2747D01* X2733Y5701D02* X2727Y5707D01* X2693Y5687D02* X2700Y5681D01* X2727D01* X2733Y5674D01* Y5661D01* X2727Y5654D01* X2700D01* X2693Y5661D01* X2727Y5707D02* X2700D01* X2693Y5701D01* Y5687D01* X2680Y5681D02* X2640D01* X2620D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2547Y5654D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5701D02* X2553D01* Y5694D01* X2547D01* Y5701D01* X2587Y5744D02* Y5777D01* Y5771D02* X2593Y5777D01* X2613D01* X2620Y5771D01* Y5744D01* X2653D02* X2667D01* X2660D02* Y5777D01* X2653D01* Y5784D02* Y5791D01* X2660D01* Y5784D01* X2653D01* X2693Y5797D02* Y5744D01* X2727D02* X2693Y5757D01* X2720Y5777D01* X2540D02* X2560D01* X2567Y5771D01* Y5751D01* X2560Y5744D01* X2540D01* X2533Y5751D01* Y5771D01* X2540Y5777D01* X2513Y5771D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2447Y5681D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2360Y5617D02* X2320D01* X2300D02* X2307Y5611D01* X2320Y5617D02* Y5597D01* X2353D01* X2360Y5591D01* Y5571D01* X2353Y5564D01* X2327D01* X2320Y5571D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2267Y5654D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2220D01* X2213Y5611D02* Y5571D01* X2220Y5564D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2127Y5701D02* X2120D01* Y5694D01* X2127D01* Y5701D01* X2120Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* X2040Y5687D02* Y5701D01* X2033Y5707D01* X2053D02* Y5654D01* X2027Y5617D02* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2040Y5584D01* Y5597D01* X2033Y5611D01* X2027Y5617D01* X2000Y5654D02* Y5707D01* X2033D01* X2040Y5687D02* X2033Y5681D01* X2000D01* Y5771D02* X2027D01* X2040Y5744D02* X2000D01* Y5797D01* X2040D01* X2053Y5771D02* X2067Y5777D01* X2053Y5797D02* Y5744D01* X2107D02* Y5797D01* X2147D01* X2133Y5771D02* X2107D01* X2093Y5744D02* X2067Y5777D01* X2093Y5797D01* X2240Y5771D02* X2213D01* Y5744D02* X2253D01* X2280D02* X2293D01* X2287D02* Y5797D01* X2280D01* X2253D02* X2213D01* Y5744D01* X2233Y5694D02* Y5701D01* X2227D01* Y5694D01* X2233D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2220Y5617D02* X2213Y5611D01* X2200Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2107Y5597D02* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2113D01* X2107Y5571D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2087Y5474D02* X2060D01* X2053Y5481D01* Y5501D01* X2060Y5507D01* X2080D01* X2087Y5501D01* Y5494D01* X2080Y5487D01* X2053D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2127Y5204D01* X2133D01* X2140Y5211D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* X2173D01* Y5161D01* X2180D01* Y5154D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2107Y5121D02* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5114D02* Y5141D01* X2080Y5147D02* X2073Y5141D01* X2067Y5147D01* X2060D01* X2053Y5141D01* Y5147D02* Y5114D01* X2033D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2712Y4623D02* D01* Y4760D01* X2737D02* Y4533D01* X2881Y4389D01* X2906D01* X3088Y4207D01* Y4136D01* X3101Y4123D01* X3089Y4112D02* X3076Y4125D01* Y4177D01* X2914Y4339D01* X2891D01* X2687Y4543D01* Y4760D01* X2662D02* Y4666D01* D01* X2637Y4760D02* Y4488D01* X2924Y4201D01* X3022D01* X3064Y4159D01* X3051Y4136D02* X3011Y4176D01* X2896D01* X2612Y4460D01* Y4760D01* X2587D02* Y4440D01* X2871Y4156D01* X2984D01* X3003Y4137D01* X3039Y4115D02* X3025Y4129D01* Y4130D01* X3003Y4137D02* Y4112D01* X3020Y4095D01* Y4070D01* X3070D02* Y4104D01* X3064Y4110D01* Y4159D01* X3109Y4165D02* X3120Y4154D01* Y4070D01* X3146Y3895D02* X3145D01* X3120Y3870D01* X3097Y3838D02* X3079Y3820D01* X3070D01* X3045Y3838D02* X3027Y3820D01* X3020D01* X2993Y3818D02* X3010Y3801D01* X2992Y3798D02* X3020Y3770D01* X2992Y3740D02* D01* X3011Y3720D01* X3020D01* X3040Y3708D02* X3054D01* X3061Y3701D01* X3040Y3708D02* X3033Y3701D01* X3012D01* X3006Y3707D01* X2989D01* X2970Y3670D02* Y3659D01* X2954Y3643D01* X2970Y3620D02* X2946D01* X2932Y3634D01* Y3662D01* X2939Y3669D01* X2917Y3685D02* Y3619D01* X2904Y3606D01* Y3569D01* X2930Y3543D01* X2944Y3549D02* X2926Y3567D01* Y3594D01* X2938Y3606D01* X2957D01* X2981Y3601D02* X2962D01* X2957Y3606D01* X2947Y3585D02* Y3584D01* X2961Y3570D01* X2970D01* X2994Y3531D02* X2981D01* X2970Y3520D01* X2965Y3492D02* Y3483D01* X2970Y3478D01* Y3470D01* X2993Y3460D02* X2970Y3437D01* Y3420D01* Y3370D02* X2944Y3396D01* Y3549D01* X2930Y3543D02* Y3388D01* X2940Y3378D01* Y3321D01* X2962Y3299D01* X2977D01* X2998Y3320D01* X3020D01* Y3270D02* X3004Y3286D01* X2994D01* X2970Y3270D02* X2976Y3264D01* Y3186D01* X2954Y3164D01* Y3111D01* X3018Y3047D01* Y2896D01* X2987Y2865D01* X2974D01* X3007Y2841D02* Y2817D01* X3000Y2810D01* Y2760D02* X3020Y2740D01* Y2636D01* X3067Y2643D02* X3050Y2660D01* X3041Y2687D02* X3050Y2696D01* Y2710D01* X3100D02* X3102Y2712D01* X3126Y2687D01* X3100Y2660D02* X3102Y2662D01* X3120Y2643D01* X3122D01* Y2642D01* X2940Y2630D02* X2927Y2617D01* Y2599D01* X2911Y2583D01* X2891D01* X2876Y2568D01* Y2506D01* X2853Y2483D01* X2773D01* X2691Y2462D02* X2690D01* Y2445D01* X2773Y2483D02* X2714Y2424D01* Y2235D01* X2676Y2197D01* X2632D01* Y2165D02* X2679D01* X2736Y2222D01* Y2391D01* X2777Y2432D01* X2863D01* X2878Y2447D01* Y2471D01* X2891Y2484D01* X2928Y2402D02* X2910Y2384D01* X2783D01* X2758Y2359D01* Y2211D01* X2680Y2133D01* X2636D01* Y2134D01* X2632D01* Y2102D02* D01* X2684D01* X2779Y2197D01* Y2323D01* X2792Y2336D01* X2960D01* X2900Y2310D02* X2924Y2286D01* X3046D01* X3057Y2297D01* X2960Y2336D02* X2976Y2352D01* Y2436D01* X3000Y2460D01* X2950D02* X2928Y2438D01* Y2402D01* X2891Y2484D02* X2912D01* X2926Y2498D01* Y2571D01* X2950Y2595D01* Y2610D02* Y2595D01* X2971Y2585D02* X3025D01* X3000Y2610D02* X2980Y2630D01* X2940D01* X2922Y2682D02* X2950Y2710D01* X2800Y2810D02* X2826Y2785D01* X2825Y2784D01* X2850Y2810D02* X2848D01* X2829Y2829D01* Y2859D01* X2875Y2834D02* X2876Y2835D01* X2900Y2810D01* X2950Y2760D02* X2925Y2735D01* X2900Y2710D02* X2875Y2685D01* Y2636D02* Y2685D01* X2800Y2710D02* X2772D01* X2766Y2704D01* X2665D01* X2374Y2734D02* Y2870D01* X2316Y2928D01* Y3053D01* X2287Y3000D02* X2293Y3007D01* Y3094D01* X2333D02* X2329D01* X2309Y3114D01* X2311D01* X2293Y3133D02* X2274Y3153D01* D01* X2254Y3133D02* X2201Y3080D01* Y3052D01* X2190Y3041D01* X2160D01* X2131Y3010D02* Y3003D01* X2155Y2979D01* X2160D01* X2089Y3075D02* X2108D01* X2117Y3084D01* Y3213D01* X2125Y3221D01* X2161D01* Y3186D01* X2175Y3173D01* X2254D01* X2293D02* X2276Y3190D01* X2228D01* X2208Y3210D01* Y3268D01* X2193Y3283D01* X2161D01* D01* X2127D01* X2195Y3339D02* X2223Y3311D01* Y3255D01* X2244Y3234D01* X2276D01* X2293Y3252D01* X2254D02* X2237Y3269D01* Y3366D01* X2202Y3401D01* X2215Y3445D02* X2233Y3427D01* X2315D01* X2333Y3409D01* X2412Y3527D02* X2433Y3549D01* Y3828D01* X2493Y3888D01* X2537D01* X2558Y3853D02* Y3867D01* X2537Y3888D01* X2508Y3853D02* Y3822D01* X2483D01* X2460Y3799D01* Y3691D01* X2530Y3621D01* Y3606D01* Y3567D02* X2511Y3548D01* X2512Y3547D01* X2530Y3527D02* X2511Y3508D01* Y3507D01* X2472D01* X2608Y3527D02* X2591Y3545D01* Y3609D01* X2608Y3606D02* Y3620D01* X2532Y3696D01* Y3776D01* X2481D02* Y3694D01* X2569Y3606D01* X2591Y3609D02* X2509Y3691D01* Y3719D01* X2273Y3547D02* X2230D01* X2202Y3519D01* X2161D01* Y3579D02* X2155D01* D01* X1968D01* X1878Y3489D01* Y3401D01* X1920Y3359D01* Y3459D02* Y3414D01* X1934Y3400D01* X1960D01* X1999Y3361D01* X2052D01* X2074Y3339D01* X2161D01* X2195D01* X2119Y3431D02* Y3448D01* X2128Y3457D01* X2161D01* X2118Y3483D02* X2121Y3486D01* X2190D01* X2215Y3461D01* Y3445D01* X2202Y3401D02* X2161D01* X2108D01* X2093Y3416D01* Y3508D01* X2069Y3532D01* X2042D01* X2020Y3510D01* Y3409D01* X1920Y3259D02* X1957D01* X1970Y3272D01* X1987D01* X2010Y3249D01* X2079Y3313D02* X2110D01* X2120Y3303D01* Y3290D01* X2127Y3283D01* X2079Y3313D02* X2068Y3302D01* Y3270D01* X2047Y3249D01* X2010D01* X2020Y3209D02* X2070D01* X2080Y3199D01* Y3084D01* X2089Y3075D01* X2020Y3109D02* X1890Y2978D01* X1791D01* X2123Y2138D02* X2122Y2137D01* Y2088D01* X2127Y2083D01* X2166Y2082D02* X2185Y2101D01* Y2138D01* X2212Y2249D02* X2190Y2271D01* Y2280D01* X2189D01* D01* X2277Y2249D02* X2260Y2266D01* Y2280D01* Y2394D02* Y2342D01* X2189D01* Y2394D01* X2118D02* Y2342D01* Y2300D02* X2109Y2309D01* X2084D01* X2118Y2280D02* Y2300D01* Y2342D02* X2047D01* Y2394D02* Y2342D01* Y2280D02* Y2262D01* X2057Y2252D01* X2086D01* X1999Y2222D02* X1981Y2240D01* X1964D01* X1949Y2303D02* Y2281D01* X1940Y2272D01* X1916D01* X1894Y2250D01* X1868Y2348D02* X1910Y2390D01* X1949D01* Y2452D02* X1991D01* X2023Y2484D01* X2202D01* X2252Y2534D01* X2413Y2441D02* Y2411D01* X2418Y2406D01* X2462D01* X2480Y2388D01* X2458Y2345D02* X2419D01* Y2343D01* Y2311D02* X2458D01* D01* X2503Y2344D02* X2480Y2367D01* Y2388D01* X2459Y2378D02* X2419D01* Y2374D01* X2632Y2343D02* X2673D01* Y2342D01* X2671Y2311D02* D01* X2632D01* X2670Y2280D02* D01* X2632D01* Y2248D02* X2671D01* D01* X2690Y2445D02* X2593Y2348D01* Y2235D01* X2580Y2222D01* X2534D01* X2509Y2197D01* Y2131D01* X2409Y2031D01* Y1991D01* X2440Y2024D02* X2475Y1989D01* Y1894D01* X2501Y1868D01* X2569D01* X2465Y1851D02* X2192D01* X2162Y1821D01* Y1587D01* X2145Y1570D01* X2122D01* Y1571D02* Y1570D01* Y1511D01* X2130Y1503D01* X2250Y1462D02* D01* X2314D01* X2315Y1413D02* Y1412D01* X2250D01* X2711Y1179D02* Y1237D01* D01* X2742Y1236D02* D01* Y1179D01* X2774Y1240D02* D01* Y1179D01* X2805D02* Y1361D01* X2764Y1402D01* X2726Y1470D02* X2727Y1471D01* Y1501D01* X2758D02* Y1502D01* D01* Y1470D01* X2790Y1501D02* Y1503D01* X2789D01* Y1471D01* X2820D02* Y1503D01* X2821D01* Y1501D01* X2916Y1472D02* D01* Y1501D01* X2884D02* Y1471D01* D01* X2900Y1376D02* Y1179D01* X2931D02* D01* Y1243D02* Y1179D01* X2868D02* Y1238D01* D01* X3057Y1179D02* Y1443D01* X3058Y1444D01* X3032Y1427D02* X3026Y1421D01* Y1179D01* X2963D02* Y1407D01* X2950Y1420D01* Y1421D01* X2947Y1472D02* D01* Y1501D01* X2979D02* Y1560D01* X3019Y1600D01* X3170D01* X3178Y1605D02* X3170Y1600D01* Y1580D02* X3030D01* X3022Y1575D01* X3021Y1566D01* X3029Y1560D01* X3030D01* X3160D01* X3170Y1550D01* X3250D01* X3262Y1538D01* Y1501D01* X3330Y1585D02* Y1620D01* X3325Y1628D01* X3316Y1629D01* X3310Y1621D01* Y1620D01* Y1576D01* X3294Y1560D01* Y1501D01* X3357Y1504D02* D01* Y1501D01* X3325D02* Y1562D01* X3324D01* X3330Y1585D02* X3361Y1554D01* X3417D01* X3420Y1501D02* Y1536D01* X3415D01* X3417Y1554D02* X3454Y1591D01* Y1638D01* X3435Y1657D01* X3390D01* X3375Y1672D02* Y1762D01* X3400Y1760D02* Y1770D01* X3381Y1789D01* X3350Y1810D02* Y1787D01* X3375Y1762D01* X3350Y1760D02* X3320Y1730D01* X3300Y1710D02* X3302Y1708D01* X3276Y1682D01* X3250Y1710D02* Y1675D01* X3277Y1648D01* X3253Y1629D02* X3231Y1651D01* Y1741D01* X3250Y1760D01* X3277Y1795D02* X3292Y1810D01* X3300D01* X3250D02* X3219Y1779D01* Y1614D01* X3229Y1604D01* X3205Y1582D02* X3200Y1587D01* Y1710D01* X3151Y1736D02* Y1760D01* X3150D01* X3200D02* X3181Y1741D01* Y1660D01* X3161Y1640D01* X2880D01* X2872Y1635D01* X2871Y1626D01* X2879Y1620D01* X2880D01* X3170D01* X3171D01* X3179Y1614D01* X3178Y1605D01* X3170Y1580D02* X3190Y1560D01* X3220D01* X3320Y1660D01* Y1730D01* X3350Y1710D02* Y1684D01* X3375Y1672D02* X3390Y1657D01* X3401Y1674D02* X3434D01* X3450Y1690D01* X3423Y1697D02* X3410Y1710D01* X3400D01* X3100Y1910D02* X3101D01* X3083Y1892D01* X3100Y1860D02* X3099Y1861D01* X3088Y1850D01* X3140Y1810D02* X3150D01* X3136Y1846D02* X3150Y1860D01* X3184Y1843D02* X3201Y1860D01* X3200D01* X3225Y1837D02* X3249Y1861D01* X3250Y1860D01* X3277Y1838D02* X3300Y1861D01* Y1860D01* X3331Y1841D02* X3350Y1860D01* X3380Y1843D02* X3399Y1862D01* X3400Y1860D01* X3435Y1849D02* X3448Y1862D01* X3450Y1860D01* X3350Y1910D02* X3351Y1909D01* X3334Y1892D01* X3300Y1910D02* X3299Y1911D01* X3282Y1894D01* X3250Y1910D02* X3249Y1911D01* X3233Y1895D01* X3200Y1910D02* Y1911D01* X3181Y1892D01* X3140Y1810D02* X3130Y1800D01* X3100Y1810D02* X3084Y1794D01* X3050Y1810D02* X3041D01* X3027Y1824D01* X3000Y1860D02* X2991D01* X2972Y1880D01* D01* X2950Y1860D02* X2927Y1883D01* X2919D01* X2950Y2010D02* X2977Y2037D01* Y2086D01* X2950Y2110D02* X2925Y2136D01* X2923Y2134D01* X2800Y2110D02* X2823Y2087D01* X2827Y2035D02* X2860D01* X2876Y2051D01* Y2085D01* X2827Y2035D02* X2802Y2010D01* X2800D01* X2874Y1933D02* Y1899D01* X2859Y1884D01* X2840D01* X2826Y1870D01* Y1852D01* X2808Y1834D01* X2876Y1831D02* X2879D01* X2900Y1810D01* X2927Y1824D02* X2941Y1810D01* X2950D01* X2972Y1780D02* D01* X2991Y1760D01* X3000D01* X3027Y1780D02* X3047Y1760D01* X3050D01* X3151Y1667D02* Y1710D01* X3150D01* X3100D02* X3101D01* X3087Y1696D01* X3050Y1710D02* X3026Y1734D01* Y1735D01* X3029D01* X3000Y1710D02* X2989D01* X2973Y1726D01* X2950Y1710D02* X2941D01* X2927Y1724D01* X2900Y1710D02* X2890D01* X2874Y1726D01* Y1727D01* X2850Y1710D02* X2839D01* X2823Y1726D01* X2800Y1710D02* X2777D01* X2735Y1752D01* X2777Y1780D02* X2797Y1760D01* X2800D01* X2822Y1780D02* D01* X2841Y1760D01* X2850D01* X2808Y1834D02* X2603D01* X2569Y1868D01* X2564Y1816D02* X2500D01* X2465Y1851D01* X2518Y1841D02* X2500D01* X2462Y1879D01* X2172D01* X2138Y1913D01* X2201Y1916D02* X2224Y1939D01* Y1984D01* D01* X2027Y1915D02* X2042D01* X2056Y1929D01* Y1977D01* X2055D01* Y1984D01* X2138Y1913D02* X2074D01* X2060Y1899D01* Y1866D01* X1984D01* X1922D02* X1896D01* X1878Y1848D01* X1939Y1787D01* X2060D01* X2327Y1830D02* X2345Y1812D01* X2391D01* D01* X2404D01* X2471Y1762D02* D01* X2404D01* Y1712D02* X2470D01* D01* X2404Y1662D02* X2469D01* Y1661D01* X2467Y1612D02* D01* X2404D01* Y1562D02* X2468D01* D01* X2471Y1512D02* D01* X2404D01* Y1462D02* X2473D01* D01* X2471Y1412D02* D01* X2404D01* X2472Y1312D02* D01* X2404D01* X2314D02* D01* X2250D01* Y1212D02* X2251Y1211D01* X2297D01* X2315Y1193D01* X2327Y1069D02* D01* X1645D01* Y1217D01* X1976Y1181D02* X1977D01* X1950D01* X1917Y1214D01* Y1372D01* X1868Y1421D01* X1834D01* X2051Y1503D02* Y1528D01* X2060Y1537D01* Y1571D01* X2059D01* Y1606D01* X2051Y1614D01* Y1632D01* X2052Y1631D02* X2051Y1632D01* X2052Y1631D02* X2016D01* X1938Y1709D01* X1724D01* X1685Y1748D01* X2412Y3094D02* Y3082D01* X2426Y3068D01* X2451Y3094D02* Y3065D01* X2433Y3047D01* X2393D01* X2376Y3064D01* X2354Y3114D02* X2350D01* Y3115D01* X2352Y3113D01* X2372Y3133D01* X2354Y3153D02* Y3151D01* X2351D01* X2372Y3172D01* Y3173D01* X2393Y3153D02* X2431D01* X2451Y3133D01* X2470Y3114D02* X2490Y3094D01* D01* X2569D02* Y3061D01* X2561Y3053D01* X2530Y3047D02* X2512Y3065D01* Y3151D01* X2490Y3173D01* Y3133D02* X2491Y3134D01* X2471Y3154D01* X2451Y3173D02* Y3187D01* X2433Y3205D01* Y3231D01* X2530Y3173D02* X2547Y3191D01* D01* X2569Y3173D02* X2590Y3193D01* X2589Y3194D01* X2629Y3192D02* D01* X2648Y3173D01* X2629Y3152D02* Y3151D01* X2628D01* X2609Y3132D01* X2608Y3133D01* X2587Y3152D02* Y3151D01* X2589D01* X2588Y3152D01* X2569Y3133D01* X2617Y3067D02* Y3086D01* X2608Y3094D01* X2629Y3114D02* Y3113D01* X2630D01* X2648Y3131D01* Y3133D01* Y3094D02* Y3093D01* X2672Y3069D01* X2727Y3094D02* X2742Y3110D01* X2743Y3109D01* X2727Y3133D02* X2744Y3150D01* X2743Y3151D01* X2727Y3173D02* X2743Y3189D01* X2742Y3190D01* Y3188D01* X2766Y3173D02* X2781Y3158D01* X2786D01* X2766Y3133D02* X2784Y3115D01* X2787D01* X2710Y3304D02* Y3307D01* X2711D01* D01* X2727Y3291D01* X2766Y3330D02* X2785Y3311D01* Y3299D01* X2766Y3291D02* X2763D01* X2745Y3309D01* Y3310D01* X2746D01* X2727Y3330D02* X2710Y3347D01* D01* X2687Y3330D02* X2667Y3350D01* X2666Y3349D01* X2687Y3370D02* X2668Y3389D01* X2667Y3388D01* X2687Y3409D02* X2709Y3387D01* D01* Y3389D01* X2727Y3409D02* X2706Y3430D01* X2667D01* X2628Y3387D02* Y3389D01* X2630D01* X2629Y3388D01* Y3322D01* X2638Y3313D01* X2662D01* X2684Y3291D01* X2687D02* X2684D01* X2668Y3272D02* X2672D01* Y3269D01* X2668Y3272D02* X2667Y3271D01* X2687Y3252D01* X2672Y3226D02* X2673Y3227D01* X2687Y3212D01* X2672Y3191D02* X2671Y3190D01* X2687Y3173D01* X2727Y3212D02* X2741Y3227D01* X2742Y3226D01* X2766Y3212D02* X2784D01* X2803Y3231D01* X2805Y3229D01* X2778Y3233D02* X2795Y3250D01* X2844D01* X2908Y3314D01* Y3377D01* X2855Y3431D02* X2870Y3416D01* Y3310D01* Y3309D01* X2864Y3301D01* X2855Y3302D01* X2850Y3310D01* Y3400D01* X2845Y3408D01* X2836Y3409D01* X2830Y3401D01* Y3400D01* Y3303D01* X2819Y3292D01* X2792D01* X2785Y3299D01* X2806Y3313D02* Y3336D01* X2794Y3348D01* X2763D01* X2744Y3367D01* X2729D01* X2727Y3370D01* X2745Y3389D02* X2764Y3370D01* X2766D01* Y3409D02* X2763D01* X2745Y3427D01* X2746D01* Y3428D01* X2766Y3448D02* X2783Y3431D01* X2830D01* X2847Y3448D01* X2897D01* X2905Y3440D02* X2897Y3448D01* X2899Y3471D02* X2889Y3461D01* X2841D01* X2830Y3450D01* X2804D01* X2766Y3488D01* X2745Y3506D02* D01* X2727Y3488D01* Y3567D02* X2745Y3585D01* Y3630D01* X2754Y3639D01* Y3671D01* X2706Y3719D01* Y3773D01* X2732Y3750D02* Y3718D01* X2773Y3677D01* Y3637D01* X2802Y3608D01* Y3572D01* X2776Y3546D01* X2745D01* X2727Y3527D01* X2766D02* X2779D01* X2816Y3564D01* Y3620D01* X2792Y3644D01* Y3693D01* X2764Y3721D01* X2631Y3510D02* X2628D01* Y3511D01* X2644Y3527D01* X2648D01* X2672Y3506D02* Y3503D01* X2687Y3488D01* Y3527D02* X2707Y3547D01* X2709D01* X2687Y3567D02* X2707Y3586D01* Y3673D01* X2648Y3665D02* X2629Y3684D01* X2599D01* X2584Y3699D01* Y3773D01* X2555Y3742D02* X2554D01* Y3703D01* X2585Y3672D01* X2621D01* X2635Y3658D01* Y3640D01* X2628Y3633D01* Y3586D01* X2608Y3567D01* X2648D02* X2670Y3589D01* Y3662D01* X2687Y3667D02* X2651Y3703D01* Y3735D01* X2674Y3743D02* Y3706D01* X2707Y3673D01* X2687Y3667D02* Y3606D01* X2648D02* Y3665D01* X2670Y3662D02* X2635Y3697D01* Y3724D01* X2617Y3742D01* X2615D01* X2651Y3735D02* X2638Y3748D01* Y3770D01* X2658Y3853D02* Y3867D01* X2608Y3853D02* Y3867D01* X2658D02* X2608Y3917D01* Y3867D02* X2572Y3903D01* X2464D01* X2407Y3846D01* Y3665D01* X2421Y3651D01* Y3629D01* X2412Y3620D01* Y3606D01* X2352Y3578D02* X2361D01* X2372Y3567D01* X2412D02* X2394Y3584D01* Y3609D01* X2375Y3628D01* Y3848D01* X2444Y3917D01* X2608D01* X2871Y3952D02* X2921Y3902D01* Y3872D01* X2946Y3847D01* X2981D01* X2993Y3818D02* Y3835D01* X2981Y3847D01* X2970Y3870D02* X2949Y3891D01* Y3901D01* X2970Y3970D02* Y3978D01* X2952Y3996D01* X2970Y4020D02* Y4030D01* X2954Y4046D01* X2970Y4070D02* Y4108D01* X2969D01* X2945Y4089D02* X2927Y4071D01* Y3969D01* X2945Y3951D01* X2966D01* X2995Y3922D01* X3020Y3920D02* Y3928D01* X3003Y3945D01* X2995Y3922D02* Y3895D01* X3020Y3870D01* X3070D02* X3045Y3895D01* Y3926D01* X3055Y3946D02* X3056D01* X3070Y3932D01* Y3920D01* X3045Y3926D02* X3033Y3938D01* Y3955D01* X3020Y3970D02* Y3980D01* X3005Y3995D01* X3033Y3955D02* X3040Y3962D01* Y3980D01* X3034Y3986D01* Y4006D01* X3039Y4011D01* Y4115D01* X3051Y4136D02* Y4039D01* X3070Y4020D01* X3055Y3995D02* X3070Y3980D01* Y3970D01* X3116Y3994D02* X3101Y4009D01* Y4123D01* X3089Y4112D02* Y4001D01* X3120Y3970D01* X3105Y3946D02* X3120Y3931D01* Y3920D01* X3170D02* X3139Y3951D01* Y3981D01* X3126Y3994D01* X3116D01* X3120Y4020D02* X3139Y4039D01* Y4172D01* X3112Y4199D01* X3151Y4191D02* Y4039D01* X3170Y4020D01* X3286Y3939D02* Y3936D01* X3270Y3920D01* X3244Y3894D02* X3268Y3870D01* X3270D01* X2917Y3685D02* X2932Y3700D01* X2982D01* X2989Y3707D01* X2970Y3720D02* Y3723D01* X2951Y3742D01* X2970Y3770D02* X2921D01* X2909Y3758D01* X2855D01* X2882Y3779D02* X2901Y3798D01* X2992D01* X3010Y3801D02* X3089D01* X3120Y3770D01* X3170D02* X3198Y3798D01* Y3837D01* X3246Y3815D02* X3130Y3699D01* X3113D01* X3105Y3707D01* X3087D01* X3081Y3701D01* X3061D01* X3047Y3684D02* X3061Y3670D01* X3070D01* X3095Y3684D02* X3096D01* X3110Y3670D01* X3120D01* X3139Y3684D02* Y3609D01* X3131Y3601D01* X3112D01* X3106Y3607D01* X3087D01* X3081Y3601D01* X3070Y3620D02* X3067D01* X3047Y3640D01* X3081Y3601D02* X3062D01* X3056Y3607D01* X3038D01* X3032Y3601D01* X3011D01* X3004Y3608D01* X2988D01* X2981Y3601D01* X2996Y3585D02* Y3586D01* X2993D01* X3009Y3570D01* X3020D01* X2993Y3460D02* Y3481D01* X3007Y3495D01* X3020Y3470D02* Y3471D01* X3043Y3494D01* X3070Y3470D02* Y3489D01* X3096Y3515D01* Y3525D01* X3110Y3539D01* X3070Y3520D02* X3101Y3551D01* X3131D01* X3151Y3571D01* Y3600D01* X3193Y3642D01* Y3662D01* X3297Y3766D01* X3461D01* X3469Y3711D02* X3523Y3765D01* X3560Y3751D02* X3510Y3701D01* Y3620D01* X3541Y3611D02* X3601D01* X3620Y3620D02* Y3643D01* X3643Y3666D01* Y3676D01* X3656Y3689D01* X3647Y3640D02* X3655D01* X3670Y3655D01* Y3670D01* X3656Y3689D02* X3695D01* X3701Y3695D01* X3724D02* X3701D01* X3695Y3720D02* Y3709D01* X3687Y3701D01* X3637D01* X3620Y3684D01* Y3670D01* X3588Y3697D02* X3570Y3679D01* Y3670D01* X3670Y3620D02* X3689Y3639D01* X3821D01* X3827Y3633D02* X3821Y3639D01* X3827Y3651D02* X3856Y3680D01* X3924D01* X3962Y3642D01* Y3583D01* X3978Y3568D01* X4063D01* X4437Y3193D02* X4365D01* X4347Y3210D01* Y3262D01* X4331Y3278D01* X4302Y3265D02* Y3266D01* X4256Y3312D01* Y3378D01* X4285Y3407D01* X4343D01* X4383Y3368D01* X4360D02* Y3321D01* X4389Y3293D01* X4437D01* X4365Y3415D02* X4398D01* Y3414D01* X4402Y3418D01* X4437D01* Y3368D02* X4383D01* X4360D02* X4342Y3386D01* X4334D01* X4335Y3356D02* X4348Y3343D01* Y3311D01* X4359Y3300D01* Y3259D01* X4376Y3243D01* X4437D01* Y3218D02* D01* X4369D01* X4304Y3196D02* X4280Y3172D01* Y3140D01* X4303Y3118D01* X4437D01* Y3093D02* X4288D01* X4270Y3075D01* Y3055D01* X4279Y3046D01* X4305D01* X4140Y2800D02* X4212D01* X4320Y2908D01* Y2978D01* X4356Y3014D01* X4434D01* X4437Y3018D01* Y2993D02* X4368D01* X4332Y2957D01* Y2800D01* X4312Y2650D02* Y2678D01* X4325Y2691D01* X4365Y2713D02* X4380Y2698D01* Y2656D01* X4365Y2713D02* X4246D01* X4217Y2684D01* Y2651D01* X4216Y2650D01* X4352Y2165D02* Y2203D01* X4401D01* X4542Y2449D02* X4548Y2443D01* X4795D01* X5052Y2700D01* X5526D01* X5629Y2803D01* X5644D01* X5771Y2930D01* Y2958D01* X5735Y2944D02* X5685D01* X5595Y2854D01* Y2807D01* X5512Y2724D01* X5043D01* X4774Y2455D01* X4561D01* X4833Y2415D02* X3998D01* X3920Y2337D01* X3877D01* X3850Y2310D01* X3864Y2274D02* X3850Y2260D01* X3842Y2279D02* X3854Y2291D01* X3921D01* X4011Y2381D01* X4715D01* X4720Y2386D01* X4833D01* X4838Y2381D01* X5510D01* X5667Y2538D01* Y2620D01* X5739Y2692D01* X5844D01* X5771Y2958D02* X5685Y3044D01* Y3094D01* X5793Y3132D02* X5818Y3107D01* X5841D01* X5793Y3132D02* X4873D01* X4851Y3110D01* X4885Y3094D02* Y3045D01* X4609Y2769D01* Y2698D01* X4507Y2596D01* X4106D01* X4092Y2610D01* X3900D01* Y2660D02* Y2646D01* X3889Y2635D01* X3865Y2640D02* Y2642D01* X3850Y2657D01* Y2660D01* X3900Y2760D02* X3911D01* X3932Y2739D01* X3900Y2710D02* X3961Y2649D01* X4005D01* X3983Y2722D02* X3922D01* X3915Y2729D01* X3881D01* X3850Y2760D01* X3871Y2774D02* Y2789D01* X3850Y2810D01* X3865Y2851D02* X3861Y2847D01* X3896Y2885D02* X3934Y2847D01* X3963Y2818D02* X3934Y2847D01* X3963Y2818D02* Y2770D01* X4122Y2611D01* X4079Y2688D02* X4117Y2650D01* X4154D01* X4122Y2611D02* X4490D01* X4514Y2635D01* Y2773D01* X4785Y3044D01* Y3094D01* X4819Y3110D02* X4851D01* X4819D02* X4798Y3131D01* X4772D01* X4476Y2835D01* Y2806D01* D01* Y2650D01* X4380Y2656D02* X4374Y2650D01* X4414D01* X4407Y2656D01* Y2698D01* X4437Y2728D01* Y2943D01* X4464Y2902D02* X4503Y2941D01* Y3603D01* X4488Y3618D01* X4489D01* X4488D02* X4437D01* X4449Y3685D02* Y3675D01* X4418Y3644D01* X4390D01* X4355Y3609D01* Y3581D01* X4369Y3568D01* X4437D01* Y3543D02* X4368D01* X4340Y3570D01* Y3613D01* X4401Y3674D01* Y3685D01* X4489Y3618D02* X4500Y3629D01* X4520D01* X4565Y3584D01* Y3566D01* X4979Y3152D01* Y3151D01* X6005D01* X6027Y3129D01* X5935Y2944D02* X5943Y2936D01* Y2888D01* X5922Y2907D02* Y2882D01* X5839Y2799D01* X5773D01* X5624Y2650D01* X5068D01* X4833Y2415D01* X4924Y2201D02* X4872D01* Y2165D01* X5006Y2753D02* X4757Y2504D01* X4661D01* X4649Y2516D01* X4570D01* X4555Y2501D01* X3968D01* X3908Y2441D01* X3847D01* X3850Y2460D02* X3881Y2491D01* X3912D01* X3956Y2535D01* X4535D01* X4540Y2540D01* X4730D01* X4972Y2782D01* X5122D01* X5067Y2796D02* X4918D01* X4674Y2552D01* X3942D01* X3900Y2510D01* Y2460D02* X3958Y2518D01* X4545D01* X4555Y2528D01* X4749D01* X4988Y2767D01* X5147D01* X5188Y2808D01* X5399D01* X5535Y2844D02* X5481Y2790D01* X5208D01* X5171Y2753D01* X5006D01* X5074Y2857D02* X5051Y2880D01* Y2911D01* X5070Y2930D01* Y2961D01* X5047Y2984D01* Y3007D01* X5085Y3045D01* Y3094D01* X5185D02* Y3045D01* X5101Y2961D01* Y2929D01* X5122Y2908D01* Y2882D01* X5095Y2855D01* Y2824D01* X5067Y2796D01* X5122Y2782D02* X5385Y3045D01* Y3094D01* X5710Y3629D02* X5749Y3669D01* X5763D01* Y3637D02* Y3617D01* X5736Y3590D01* X5645Y3556D02* X5683Y3594D01* Y3648D01* X5735Y3700D01* X5763D01* Y3732D02* X5721D01* X5696Y3756D01* X5645D01* X5732Y3810D02* X5776D01* Y3811D01* X5681Y4351D02* X4888D01* X4959Y4318D02* X6026D01* X6143Y4201D01* Y3589D01* X5936Y3447D02* X5913Y3470D01* Y3486D01* X5912Y3487D01* X5881D02* Y3442D01* D01* X5861Y3389D02* Y3328D01* X5858Y3325D01* X6335Y3344D02* X6288D01* X6108Y3524D01* X6143Y3589D02* X6418Y3314D01* Y3278D01* X6403Y3263D01* Y3228D01* X6435Y3196D01* Y3144D01* X6108Y3524D02* Y4187D01* X6009Y4286D01* X5027D01* X4583Y3842D01* X4330D01* X4279Y3791D01* X3984D01* X3980Y3787D01* X3879Y3930D02* X3838Y3889D01* X3759D01* X3770Y3920D02* X3788D01* X3796Y3912D01* X3770Y3970D02* X3829D01* X3927Y4068D01* X4037D01* X4024Y3992D02* X4296D01* X4137Y3918D02* X4126D01* Y3848D01* X4160Y3824D02* X4254Y3918D01* X4263D01* X4266D01* Y3852D01* X4327Y3757D02* X4336Y3748D01* X4582D01* X5144Y3186D01* X5213D01* X5215Y3188D01* X6132D01* X6166Y3154D01* X6225D01* X6155Y3134D02* X6113Y3176D01* X6033D01* X6026Y3169D01* X5061D01* X4591Y3639D01* Y3706D01* X4568Y3669D02* X4546D01* X4530Y3685D01* X4511D01* X4591Y3706D02* X4566Y3731D01* X4316D01* X4339Y3685D02* Y3683D01* X4321Y3665D01* X4303D01* X4327Y3757D02* X4014D01* X4007Y3750D01* X3959D01* X3938Y3771D01* X3872Y3782D02* X3941Y3851D01* X4082D01* X4109Y3824D01* X4160D01* X4316Y3731D02* X4307Y3740D01* X4096D01* X4086Y3730D01* X3818D01* X3809Y3739D01* X3596D01* X3620Y3770D02* X3599D01* X3570D02* X3568Y3773D01* X3591Y3796D01* X3520Y3970D02* Y3977D01* X3506Y3991D01* X3520Y4020D02* X3545Y3996D01* X3546Y3997D01* X3570Y4020D02* X3567D01* X3547Y4040D01* X3570Y4070D02* X3563D01* X3548Y4085D01* X3519Y4051D02* X3520D01* Y4070D01* X3470D02* Y4217D01* X3480D01* X3698Y4048D02* X3720Y4070D01* X3641Y4091D02* X3620Y4070D01* X3597Y4043D02* X3620Y4020D01* X3600Y4003D02* X3620Y3983D01* Y3970D01* X3670Y3920D02* X3678D01* X3696Y3938D01* X3720Y3870D02* Y3881D01* X3746Y3876D02* X3759Y3889D01* X3746Y3876D02* Y3846D01* X3720Y3820D01* X3738Y3788D02* X3720Y3770D01* X3670Y3820D02* X3620D01* X3600Y3840D01* X3620Y3870D02* X3637Y3887D01* X3670Y3870D02* X3690Y3890D01* X3720Y3881D02* X3735Y3896D01* X3720Y3920D02* X3751Y3951D01* X3852D01* X3928Y4027D01* X4037D01* X4024Y3992D02* X3852Y3820D01* X3770D01* Y3720D02* X3793D01* Y3718D01* X3813Y3707D02* X3921D01* X3974Y3654D01* Y3593D01* X3986Y3581D01* X4003D01* X4015Y3593D01* X4063D01* Y3618D02* X4007D01* X3994Y3605D01* X3995D01* X4063Y3543D02* X4111D01* X4122Y3531D01* X4109Y3518D01* X4063D01* Y3493D02* X4027D01* X3999Y3465D01* X3998D01* X3743Y3440D02* X3740D01* X3720Y3420D01* X3698Y3396D02* Y3393D01* X3697D01* X3720Y3370D01* X3695Y3341D02* X3697D01* X3718Y3320D01* X3720D01* X3702Y3310D02* X3712Y3300D01* X3727D01* X3733Y3306D01* X3756D01* X3762Y3300D01* X3770D01* X3745Y3260D02* X3716Y3231D01* X3669D01* X3625Y3187D01* X3574D01* X3571Y3184D01* X3404D01* X3392Y3196D01* X3355D01* X3455Y3120D02* Y3000D01* X3460Y2992D01* X3469Y2991D01* X3475Y2999D01* Y3000D01* Y3120D01* Y3121D01* X3481Y3129D01* X3490Y3128D01* X3495Y3120D01* Y3010D01* X3500Y3002D01* X3509Y3001D01* X3515Y3009D01* Y3010D01* Y3120D01* Y3121D01* X3521Y3129D01* X3530Y3128D01* X3535Y3120D01* Y2975D01* X3538Y2966D01* X3548Y2964D01* X3555Y2971D01* X3719Y2900D02* X3720D01* X3770D01* X3773Y2897D01* X3999D01* X4010Y2908D01* X4076Y2924D02* X4069Y2917D01* X4076Y2924D02* X4107D01* X4118Y2935D01* Y2960D01* X4110Y2968D01* X4063D01* X4096Y2903D02* X4105D01* X4130Y2928D01* Y2977D01* X4115Y2993D01* X4063D01* Y3043D02* X4062Y3044D01* X3996D01* Y3093D02* X4063D01* D01* Y3118D02* X4059Y3122D01* X4004D01* X4126Y3197D02* X4068D01* X4063Y3193D01* Y3218D02* X4002D01* X3999Y3220D01* X3971D01* X3909D02* X3885Y3196D01* X3697D01* X3680Y3175D02* Y3204D01* X3695Y3219D01* X3729D01* X3760Y3250D01* X3770Y3270D02* X3764D01* X3749Y3285D01* X3745D01* Y3260D01* X3760Y3250D02* X3780D01* X3792Y3262D01* Y3278D01* X3770Y3300D01* X3748Y3342D02* X3747Y3341D01* Y3340D01* X3770Y3320D02* X3748Y3342D01* X3770Y3370D02* X3748Y3392D01* X3770Y3420D02* Y3423D01* X3792Y3445D01* X3827Y3317D02* X3817Y3327D01* Y3473D01* X3770Y3520D01* Y3470D02* X3767D01* X3748Y3489D01* Y3486D01* X3720Y3470D02* X3698Y3448D01* Y3441D01* X3670Y3420D02* X3669Y3419D01* X3647Y3440D01* Y3441D01* X3620Y3420D02* X3611D01* X3590Y3441D01* Y3440D01* X3595Y3384D02* X3609Y3370D01* X3620D01* X3643Y3387D02* Y3389D01* X3662Y3370D01* X3670D01* X3646Y3341D02* X3667Y3320D01* X3670D01* X3680Y3310D01* X3702D01* X3644Y3286D02* X3649D01* X3665Y3270D01* X3670D01* X3696Y3286D02* Y3284D01* X3710Y3270D01* X3720D01* X3693Y3243D01* X3664D01* X3620Y3199D01* X3565D01* X3538Y3226D01* X3238D01* X3231Y3219D01* X3202Y3217D02* Y3238D01* X3170Y3270D01* X3146Y3286D02* Y3294D01* X3120Y3320D01* X3070D02* X3089Y3301D01* Y3223D01* X3092Y3220D01* X3106Y3194D02* X3100Y3186D01* Y3185D01* Y3095D01* Y3094D01* X3094Y3086D01* X3085Y3087D01* X3080Y3095D01* Y3185D01* X3075Y3193D01* X3066Y3194D01* X3061Y3219D02* X3070Y3228D01* Y3270D01* X2970Y3320D02* X2995Y3345D01* Y3375D01* X3012Y3392D01* X3025D01* X3070Y3370D02* X3101Y3339D01* Y3312D01* X3108Y3305D01* Y3288D01* X3101Y3281D01* Y3254D01* X3113Y3242D01* X3120Y3270D02* X3142Y3248D01* X3158D01* X3175Y3231D01* X3174D01* X3160Y3210D02* X3155Y3218D01* X3146Y3219D01* X3140Y3211D01* Y3210D01* Y3150D01* X3135Y3145D01* Y3115D01* X3140Y3110D01* X3139D01* Y3095D01* Y3094D01* X3134Y3086D01* X3124Y3087D01* X3120Y3095D01* Y3185D01* X3115Y3193D01* X3106Y3194D01* X3066D02* X3060Y3186D01* Y3185D01* Y3096D01* X3059Y3095D01* Y3094D01* X3054Y3086D01* X3044Y3087D01* X3040Y3095D01* Y3235D01* X3043Y3238D01* Y3347D01* X3020Y3370D01* X3025Y3392D02* X3051Y3418D01* Y3443D01* X3097Y3485D02* X3095D01* Y3483D01* X3108Y3470D01* X3120D01* X3140Y3442D02* Y3446D01* X3138D01* X3139Y3445D01* Y3389D01* X3120Y3370D01* X3236Y3441D02* X3220Y3425D01* Y3420D01* X3245Y3390D02* X3270Y3415D01* Y3420D01* X3290Y3390D02* X3310Y3370D01* X3320D01* X3350Y3387D02* X3352Y3389D01* X3370Y3370D01* X3393Y3386D02* X3409Y3370D01* X3420D01* X3446Y3386D02* X3447D01* X3463Y3370D01* X3470D01* X3500Y3383D02* X3513Y3370D01* X3520D01* X3545Y3386D02* X3561Y3370D01* X3570D01* Y3420D02* X3561D01* X3543Y3438D01* X3545Y3440D01* X3520Y3420D02* X3514D01* X3494Y3440D01* X3491D01* X3470Y3470D02* X3457D01* X3442Y3485D01* X3440D01* Y3484D01* X3387Y3489D02* Y3487D01* X3370Y3470D01* X3354Y3442D02* Y3436D01* X3370Y3420D01* X3396Y3442D02* X3418Y3420D01* X3420D01* X3442Y3442D02* X3448D01* X3470Y3420D01* X3469Y3599D02* X3451Y3581D01* X3210D01* X3209Y3622D02* Y3640D01* X3288Y3719D01* X3267Y3788D02* X3243D01* X3139Y3684D01* X3170Y3670D02* Y3651D01* X3161Y3642D01* X3162Y3641D01* X3210Y3581D02* X3180Y3551D01* X3151D01* X3139Y3539D01* X3110D01* X3120Y3520D02* X3143D01* X3162Y3501D01* X3180D01* X3215Y3536D01* X3170Y3520D02* X3174D01* X3212Y3558D01* X3448D01* X3510Y3620D01* X3469Y3599D02* Y3711D01* X3461Y3766D02* X3486Y3791D01* X3551Y3799D02* X3550D01* Y3800D01* X3570Y3820D01* X3600Y3840D02* X3466D01* X3396Y3910D01* Y4085D01* X3243Y4238D01* X3151Y4191D02* X2905Y4437D01* X2876D01* X2787Y4526D01* Y4669D01* Y4677D01* D01* Y4760D01* X2762D02* Y4629D01* X2761Y4628D01* Y4623D01* X2812Y4613D02* D01* Y4611D02* Y4613D01* Y4760D01* X2837D02* Y4592D01* X2813Y4568D01* X2815Y4531D02* X2862Y4578D01* Y4760D01* X2893Y4667D02* X2912Y4686D01* Y4760D01* X2962D02* Y4672D01* D01* Y4627D01* X3012D02* D01* Y4760D01* X3112D02* D01* Y4673D01* X3322Y4849D02* X3313Y4840D01* Y4751D01* X3312Y4750D01* Y4760D01* X3262D02* D01* Y4658D01* X3250Y4646D01* X3112Y4673D02* Y4255D01* X3202Y4165D01* Y4213D02* Y4427D01* X3361Y4586D01* Y4671D01* Y4759D01* X3362Y4760D01* X3387D02* Y4674D01* X3416Y4645D01* Y4538D01* X3438Y4561D02* X3437Y4562D01* Y4760D01* X3487Y4563D02* D01* Y4562D02* Y4563D01* Y4760D01* X3537D02* Y4595D01* D01* X3587Y4642D02* D01* Y4760D01* X3612D02* Y4616D01* D01* X3637Y4665D02* D01* Y4760D01* X3662D02* Y4629D01* D01* X3712Y4638D02* Y4760D01* D01* X3687D02* Y4603D01* X3743Y4547D01* Y4486D01* X4209Y4020D01* X4274D01* X4296Y3992D02* X4340Y4036D01* X4505D01* X4565Y4096D01* X4633D01* X4888Y4351D01* X4959Y4318D02* X4575Y3934D01* X4354D01* X4317Y3897D01* Y3873D01* X4252Y3808D01* X3970D01* X3962Y3816D01* X3944D01* X3813Y3707D02* X3776Y3670D01* X3770D01* X3769D01* Y3692D01* X3747Y3693D02* X3724Y3670D01* X3739D02* X3724D01* X3720D02* X3724D01* X3739D02* X3758Y3651D01* X3827D01* X3770Y3620D02* X3799D01* X3806Y3613D01* X3816Y3584D02* X3811Y3589D01* X3760D01* X3720Y3520D02* X3691Y3491D01* X3692Y3490D01* X3670Y3470D02* X3663D01* X3648Y3485D01* X3620Y3470D02* Y3468D01* X3591Y3497D01* X3570Y3520D02* Y3526D01* X3542Y3554D01* X3620Y3570D02* X3609D01* X3589Y3590D01* Y3589D01* X3591D01* X3601Y3611D02* X3617Y3595D01* X3722D01* X3760Y3589D02* X3757Y3586D01* X3731D01* X3722Y3595D02* X3731Y3586D01* X3720Y3570D02* X3703Y3553D01* X3670Y3520D02* X3669D01* X3648Y3541D01* X3620Y3520D02* X3619D01* X3591Y3548D01* X3570Y3570D02* X3563D01* X3548Y3585D01* Y3587D01* X3541Y3611D02* X3444Y3514D01* X3239D01* X3248Y3486D02* X3264Y3470D01* X3270D01* X3288Y3442D02* X3298D01* X3320Y3420D01* X3293Y3339D02* X3312Y3320D01* X3320D01* X3351Y3343D02* Y3339D01* X3370Y3320D01* X3393Y3343D02* X3390D01* Y3339D01* X3409Y3320D01* X3420D01* X3441Y3344D02* Y3339D01* X3460Y3320D01* X3470D01* X3491Y3340D02* X3511Y3320D01* X3520D01* X3541Y3340D02* Y3337D01* X3558Y3320D01* X3570D01* X3590Y3341D02* X3611Y3320D01* X3620D01* X3594Y3286D02* X3610Y3270D01* X3620D01* X3644Y3286D02* Y3251D01* X3604Y3211D01* X3578D01* X3550Y3239D01* X3240D01* X3234Y3245D01* X3255Y3209D02* X3315D01* X3356Y3168D01* X3576D01* X3583Y3175D01* X3636D01* X3641Y3170D01* X3675D01* X3680Y3175D01* X3520Y3270D02* X3504Y3286D01* X3498D01* X3470Y3270D02* X3454Y3286D01* X3443D01* X3420Y3270D02* X3410Y3280D01* X3397D01* X3370Y3270D02* X3347Y3293D01* X3287D01* X3320Y3270D02* X3301Y3251D01* X3257D01* X3245Y3263D01* Y3292D01* X3196Y3296D02* X3195Y3295D01* X3170Y3320D01* X3144Y3340D02* Y3343D01* X3143D01* X3170Y3370D01* X3197Y3386D02* X3213Y3370D01* X3220D01* X3170Y3420D02* X3196Y3446D01* Y3487D01* X3220Y3470D02* Y3495D01* X3239Y3514D01* X3215Y3536D02* X3446D01* X3549Y3639D01* Y3692D01* X3596Y3739D01* X3560Y3751D02* X3888D01* X3930Y3793D01* X3946D01* X3959Y3780D01* Y3776D01* X3969Y3766D01* X3994D01* X4002Y3774D01* X4302D01* X4352Y3824D01* X4414D01* X4445Y3793D01* X4637D01* X5018Y3412D01* X5152D01* X5222Y3342D01* Y3240D01* X5255Y3207D01* X6128D01* X6165Y3244D01* X6235D01* X6225Y3154D02* X6235Y3144D01* X6155Y3134D02* X6195D01* X6285Y3044D01* X6335D02* X6285D01* X6235D02* X6189D01* X6104Y3129D01* X6027D01* X6135Y3044D02* X6087D01* X5999Y3132D01* X5866D01* X5841Y3107D01* X5901Y2961D02* Y2928D01* X5835Y2944D02* Y2895D01* X5617Y2677D01* X5062D01* X4816Y2431D01* X3994D01* X3923Y2360D01* X3900D01* X3850D02* X3874Y2384D01* X3924D01* X3989Y2449D01* X4542D01* X4561Y2455D02* X4549Y2467D01* X3985D01* X3928Y2410D01* X3900D01* X3850D02* X3869Y2429D01* X3920D01* X3977Y2486D01* X4554D01* X4573Y2467D01* X4648D01* X4661Y2480D01* X4766D01* X5024Y2738D01* X5191D01* X5201Y2748D01* X5498D01* X5574Y2824D01* Y2855D01* X5535Y2894D01* Y2944D02* Y2894D01* X5435Y2844D02* X5399Y2808D01* X3850Y2510D02* X3869Y2529D01* X3901D01* X3939Y2567D01* X4648D01* X4892Y2811D01* X5053D01* X5074Y2832D01* Y2857D01* X5035Y2844D02* X4987D01* X4953Y2878D01* X4919D01* X4623Y2582D01* X3922D01* X3900Y2560D01* X3880Y2546D02* X3866Y2560D01* X3850D01* X3872Y2608D02* X3870Y2610D01* X3850D01* X3815Y2595D02* X3800Y2610D01* X3779Y2579D02* X3780Y2580D01* X3750Y2610D01* Y2560D02* X3764Y2546D01* X3765D01* X3750Y2510D02* X3767Y2493D01* X3800Y2510D02* X3821Y2488D01* X3800Y2510D02* D01* X3750Y2460D02* X3765Y2445D01* X3800Y2460D02* X3803Y2463D01* X3817Y2449D01* X3847Y2441D02* X3816Y2410D01* X3800D01* X3764Y2396D02* X3750Y2410D01* X3716Y2394D02* X3700Y2410D01* X3715Y2445D02* X3700Y2460D01* X3715Y2495D02* X3700Y2510D01* X3680Y2538D02* Y2559D01* X3700Y2560D02* X3675Y2585D01* Y2629D01* X3700Y2610D02* X3718Y2628D01* X3700Y2660D02* X3715Y2675D01* X3750Y2660D02* X3766Y2676D01* X3800Y2660D02* X3810Y2670D01* X3822D01* X3833Y2693D02* Y2692D01* X3850Y2710D02* X3833Y2693D01* X3800Y2710D02* X3816Y2726D01* X3800Y2810D02* X3818D01* X3844Y2784D01* X3817Y2777D02* X3800Y2760D01* X3781Y2771D02* X3770Y2760D01* X3750D01* X3700Y2810D02* X3754Y2864D01* X3839D01* X3861Y2847D02* X3787D01* X3750Y2810D01* X3781Y2771D02* Y2819D01* X3794Y2832D01* X3919D01* X3934Y2847D01* X3896Y2885D02* X3690D01* X3685Y2890D01* X3506D01* X3500D01* X3494Y2898D01* X3496Y2907D01* X3506Y2910D01* X3641D01* X3650Y2810D02* Y2828D01* X3679Y2857D01* X3680D01* X3678Y2831D02* Y2788D01* X3650Y2760D01* X3700D02* X3699Y2761D01* X3729Y2791D01* X3752Y2785D02* X3748D01* X3725Y2762D01* Y2735D01* X3700Y2710D01* X3680Y2690D02* X3650Y2660D01* X3614Y2524D02* X3650Y2560D01* X3635Y2572D02* X3642Y2579D01* X3660D01* X3680Y2559D01* X3635Y2572D02* X3615D01* X3608Y2579D01* X3375D01* X3360Y2564D01* X3400Y2610D02* X3401Y2611D01* X3379Y2633D01* X3400Y2660D02* X3401Y2661D01* X3421Y2640D01* X3450Y2710D02* Y2711D01* X3425Y2736D01* X3400Y2760D02* Y2782D01* X3381Y2801D01* Y2873D01* X3394Y2886D01* X3367Y2919D02* X3393D01* X3418Y2894D01* Y2871D01* X3400Y2853D01* Y2810D01* X3360Y2847D02* Y2820D01* X3350Y2810D01* X3331Y2798D02* X3344Y2785D01* X3357D01* X3370Y2772D01* Y2753D01* X3354Y2737D01* X3380Y2730D02* X3400Y2710D01* X3428Y2690D02* X3450Y2668D01* Y2660D01* X3475Y2645D02* X3500Y2620D01* Y2610D01* X3550D02* X3551D01* X3571Y2630D01* X3579Y2607D02* X3600D01* Y2610D01* X3623Y2635D02* X3592D01* X3575Y2652D01* Y2666D01* X3600Y2660D02* X3626Y2686D01* X3645D01* X3650Y2710D02* X3630D01* X3623Y2703D01* X3600Y2710D02* X3633Y2743D01* X3600Y2760D02* X3603D01* X3633Y2790D01* X3600Y2810D02* Y2852D01* X3550Y2810D02* Y2803D01* X3531Y2784D01* X3550Y2760D02* X3577Y2733D01* Y2704D01* X3585Y2696D01* Y2676D01* X3575Y2666D01* X3550Y2660D02* X3540Y2670D01* X3529D01* X3500Y2660D02* Y2672D01* X3525Y2697D01* X3500Y2710D02* X3503D01* X3530Y2737D01* X3451Y2845D02* Y2810D01* X3450D01* X3426Y2827D02* Y2784D01* X3450Y2760D01* X3500D02* Y2777D01* X3476Y2801D01* Y2828D01* X3500Y2810D02* X3559Y2869D01* X3646D01* X3641Y2910D02* X3670Y2939D01* X3712Y2915D02* X3720Y2920D01* X3719Y2900D02* X3711Y2906D01* X3712Y2915D01* X3720Y2920D02* X3780D01* X3788Y2925D01* X3789Y2934D01* X3781Y2940D01* X3780D01* X3744D01* X3720Y2964D01* Y3040D01* X3695Y3065D01* Y3150D01* X3690Y3158D01* X3681Y3159D01* X3675Y3151D01* Y3150D01* Y3050D01* Y3049D01* X3669Y3041D01* X3660Y3042D01* X3655Y3050D01* Y3142D01* X3650Y3150D01* X3640D01* X3635Y3142D01* D01* Y3040D01* Y3039D01* X3629Y3031D01* X3620Y3032D01* X3615Y3040D01* Y3120D01* X3610Y3128D01* X3601Y3129D01* X3595Y3121D01* Y3120D01* Y3040D01* Y3039D01* X3589Y3031D01* X3580Y3032D01* X3575Y3040D01* Y3120D01* X3570Y3128D01* X3561Y3129D01* X3555Y3121D01* Y3120D01* Y2975D01* Y2971D01* X3597Y2942D02* X3600Y2939D01* X3597Y2942D02* X3603D01* X3628Y2967D01* X3597Y2942D02* X3359D01* X3331Y2914D01* X3310Y2939D02* X3299D01* X3278Y2960D01* Y2961D01* X3455Y3120D02* X3450Y3128D01* X3441Y3129D01* X3435Y3121D01* Y3120D01* Y3025D01* X3410Y3000D01* Y2980D01* Y2979D01* X3404Y2971D01* X3395Y2972D01* X3390Y2980D01* Y3105D01* X3387Y3114D01* X3377Y3116D01* X3370Y3109D01* Y3105D01* Y2980D01* Y2979D01* X3364Y2971D01* X3355Y2972D01* X3350Y2980D01* Y3070D01* X3340Y3080D01* Y3160D01* X3335Y3168D01* X3326Y3169D01* X3320Y3161D01* Y3160D01* Y3070D01* Y3069D01* X3314Y3061D01* X3305Y3062D01* X3300Y3070D01* Y3180D01* X3295Y3188D01* X3286Y3189D01* X3280Y3181D01* Y3180D01* Y3070D01* Y3069D01* X3274Y3061D01* X3265Y3062D01* X3260Y3070D01* Y3180D01* X3255Y3188D01* X3246Y3189D01* X3240Y3181D01* Y3180D01* Y3095D01* X3239Y3092D01* X3231Y3088D01* X3225Y3095D01* Y3180D01* X3220Y3188D01* X3211Y3189D01* X3205Y3181D01* Y3180D01* Y3095D01* Y3094D01* X3199Y3086D01* X3190Y3087D01* X3185Y3095D01* Y3145D01* X3160Y3170D01* Y3210D01* X3053Y3031D02* Y3010D01* X3045Y3002D01* Y2908D01* X3082Y2871D01* Y2828D01* X3100Y2810D02* X3082Y2828D01* X3070Y2810D02* Y2845D01* X3060Y2855D01* X3030Y2878D02* Y2780D01* X3050Y2760D01* X3062Y2786D02* X3050Y2798D01* Y2810D01* X3070D02* X3100Y2780D01* Y2760D01* X3150Y2810D02* X3140Y2820D01* Y2850D01* X3121Y2869D01* X3135Y2892D02* X3155Y2872D01* Y2840D01* X3175Y2820D01* Y2782D01* X3197Y2760D01* X3200D01* X3219Y2782D02* X3241Y2760D01* X3250D01* X3200Y2810D02* Y2814D01* X3171Y2843D01* Y2867D01* X3192Y2852D02* X3208D01* X3250Y2810D01* X3278Y2839D02* X3300Y2817D01* Y2810D01* X3319Y2791D02* Y2854D01* X3291Y2882D01* X3331Y2914D02* Y2798D01* X3319Y2791D02* X3350Y2760D01* X3354Y2737D02* X3342D01* X3329Y2724D01* X3300Y2760D02* X3272Y2788D01* Y2815D01* X3249Y2838D01* Y2891D01* X3235Y2905D01* X3171Y2867D02* X3202Y2898D01* Y2997D01* X3187Y3012D01* X3115D01* X3098Y3029D01* X3123Y3046D02* X3119Y3050D01* X3088D01* X3077Y3039D01* Y2908D01* X3093Y2892D01* X3135D01* X3103Y2845D02* X3128Y2820D01* Y2800D01* X3150Y2778D01* Y2760D01* X3175Y2726D02* X3184D01* X3200Y2710D01* X3229Y2682D02* X3251Y2661D01* X3250Y2660D01* X3200D02* X3169Y2629D01* X3150Y2610D02* X3131Y2591D01* Y2546D01* X3114D02* Y2484D01* X3138Y2460D01* X3161D01* X3176Y2516D02* X3169Y2523D01* Y2629D01* X3150Y2637D02* Y2660D01* Y2637D02* X3119Y2606D01* X3080Y2590D02* Y2583D01* X3025Y2585D02* X3050Y2610D01* X3080Y2590D02* X3100Y2610D01* X3119Y2606D02* Y2551D01* X3114Y2546D01* X3131D02* X3126Y2541D01* Y2525D01* X3150Y2501D01* X3176Y2486D02* X3197Y2507D01* Y2529D01* X3181Y2545D01* Y2591D01* X3200Y2610D01* X3279Y2639D02* X3300Y2660D01* X3276Y2684D02* X3250Y2710D01* X3277Y2733D02* X3300Y2710D01* X3329Y2724D02* Y2662D01* X3335Y2586D02* X3350Y2601D01* Y2610D01* X3324Y2627D02* X3350Y2653D01* Y2660D01* X3329Y2662D02* X3300Y2633D01* Y2610D01* Y2576D01* X3384Y2492D01* X3476D01* X3700Y2268D01* Y2260D01* X3712Y2298D02* X3700Y2310D01* X3714Y2346D02* X3700Y2360D01* X3750D02* X3764Y2346D01* X3750Y2310D02* X3764Y2297D01* X3763Y2296D01* X3750Y2260D02* X3769Y2279D01* X3842D01* X3813Y2296D02* X3814Y2297D01* X3800Y2310D01* Y2260D02* X3819Y2241D01* X3915D01* X3922Y2234D01* X3954D01* X4107Y2081D01* X4998D01* X5049Y2030D01* Y1871D01* X5026Y1845D02* Y2020D01* X4985Y2061D01* X4087D01* X3926Y2222D01* X3917D01* X3910Y2229D01* X3869D01* X3850Y2210D01* Y2160D02* X3876Y2134D01* X3910D01* X3962Y2082D01* Y2034D01* X4016Y2059D02* Y2025D01* Y2059D02* X3915Y2160D01* X3900D01* Y2110D02* X3918Y2092D01* X3900Y2060D02* X3925Y2036D01* X3924Y2035D01* X3900Y1960D02* X3912D01* X3925Y1947D01* X3900Y1910D02* X3965Y1845D01* Y1802D01* X3987Y1781D02* Y1853D01* X3945Y1825D02* X3910Y1860D01* X3900D01* X3850D02* X3873Y1837D01* X3900D01* X4018Y1719D01* Y1635D01* X4120Y1179D02* Y1237D01* D01* X4151D02* Y1179D01* X4152D01* X4183D02* X4184D01* Y1237D01* X4215Y1179D02* Y1248D01* X4147Y1316D01* X4105D01* X4079Y1314D02* X4078Y1305D01* X4070Y1300D01* X4100Y1340D02* X4108Y1345D01* X4109Y1354D01* X4229Y1320D02* X4278Y1271D01* Y1179D01* X4309D02* X4310D01* Y1235D01* X4340Y1233D02* Y1179D01* X4341D01* X4374Y1069D02* D01* X4372Y1179D02* X4373D01* Y1233D01* X4435D02* D01* Y1179D01* X4467D02* Y1247D01* X4439Y1275D01* X4424D01* X4479Y1268D02* X4505D01* X4526Y1247D01* Y1182D01* X4530Y1179D01* X4561D02* Y1267D01* X4536Y1292D01* X4624Y1179D02* Y1229D01* X4614Y1239D01* Y1256D01* X4580Y1290D01* Y1366D01* X4631Y1417D01* X4661Y1436D02* X4665Y1432D01* Y1240D01* X4656Y1231D01* Y1179D01* X4686Y1269D02* X4719Y1236D01* Y1179D01* X4750D02* D01* Y1207D01* X4782Y1179D02* Y1205D01* D01* X4813Y1207D02* Y1179D01* D01* X4482Y1481D02* Y1502D01* X4483Y1503D02* Y1501D01* Y1503D02* X4482Y1502D01* X4451Y1501D02* Y1441D01* X4426Y1416D01* X3851D01* X3839Y1394D02* X3838Y1385D01* X3830Y1380D01* X3839Y1394D02* X3831Y1400D01* X3830D01* X3720D01* X3719D01* X3711Y1406D01* X3712Y1415D01* X3720Y1420D01* X3790D01* X3798Y1425D01* X3799Y1434D01* X3760Y1460D02* X3768Y1465D01* X3769Y1474D01* X3760Y1500D02* X3768Y1505D01* X3769Y1514D01* X3790Y1501D02* Y1633D01* X3800Y1643D01* Y1710D01* X3850D02* Y1604D01* X3884Y1570D01* Y1501D01* X3853D02* X3854D01* Y1559D01* X3799Y1434D02* X3791Y1440D01* X3790D01* X3720D01* X3719D01* X3711Y1446D01* X3712Y1455D01* X3720Y1460D01* X3760D01* X3769Y1474D02* X3761Y1480D01* X3760D01* X3720D01* X3719D01* X3711Y1486D01* X3712Y1495D01* X3720Y1500D01* X3760D01* X3769Y1514D02* X3761Y1520D01* X3760D01* X3720D01* X3719D01* X3711Y1526D01* X3712Y1535D01* X3720Y1540D01* X3760D01* X3768Y1545D01* X3769Y1554D01* X3760Y1580D02* X3768Y1585D01* X3769Y1594D01* X3760Y1580D02* X3720D01* X3712Y1575D01* X3711Y1566D01* X3719Y1560D01* X3720D01* X3760D01* X3761D01* X3769Y1554D01* Y1594D02* X3761Y1600D01* X3760D01* X3710D01* X3709D01* X3701Y1606D01* X3702Y1615D01* X3680Y1620D02* X3688Y1625D01* X3689Y1634D01* X3702Y1615D02* X3710Y1620D01* X3750D01* X3781Y1651D01* Y1791D01* X3800Y1810D01* X3802Y1835D02* Y1860D01* X3800D01* X3821Y1882D02* X3800Y1903D01* Y1910D01* X3770Y1888D02* X3749Y1909D01* X3750Y1910D01* X3718Y1895D02* X3702Y1912D01* X3700Y1910D01* X3650D02* X3675Y1935D01* X3700Y1960D02* X3701Y1961D01* X3716Y1945D02* X3701Y1961D01* X3715Y1995D02* X3700Y2010D01* X3715Y2046D02* X3701Y2061D01* X3700Y2060D01* X3665Y2046D02* X3651Y2061D01* X3650Y2060D01* X3657Y1788D02* X3650Y1795D01* Y1810D01* X3664Y1845D02* X3665Y1846D01* X3650Y1860D01* X3700D02* X3715Y1845D01* X3700Y1810D02* X3701Y1811D01* X3723Y1788D01* X3750Y1810D02* X3769Y1791D01* Y1751D01* X3753Y1735D01* X3744D01* X3720Y1711D01* X3700Y1710D02* Y1685D01* X3710Y1660D02* X3720Y1670D01* Y1711D01* X3710Y1660D02* X3630D01* X3622Y1655D01* X3621Y1646D01* X3629Y1640D01* X3630D01* X3680D01* X3681D01* X3689Y1634D01* X3680Y1620D02* X3630D01* X3622Y1615D01* X3621Y1606D01* X3629Y1600D01* X3630D01* X3680D01* X3681D01* X3689Y1594D01* X3688Y1585D01* X3680Y1580D01* X3640D01* X3632Y1575D01* X3680Y1540D02* X3640D01* X3632Y1535D01* X3631Y1526D01* X3639Y1520D01* X3640D01* X3680D01* X3681D01* X3689Y1514D01* X3680Y1460D02* X3640D01* X3632Y1455D01* X3631Y1446D01* X3639Y1440D01* X3640D01* X3680D01* X3681D01* X3689Y1434D01* X3830Y1380D02* X3720D01* X3712Y1375D01* X3711Y1366D01* X3719Y1360D01* X3680D02* X3681D01* X3689Y1354D01* X3688Y1345D01* X3680Y1340D01* X3230D01* X3222Y1335D01* X3221Y1326D01* X3229Y1320D01* X3230D01* X3788D01* X3798Y1310D01* X3859D01* X3752Y1241D02* X3773Y1220D01* Y1179D01* X3774D01* X3837D02* Y1207D01* D01* X3868Y1179D02* X3867D01* Y1235D01* X3859Y1310D02* X3900Y1269D01* Y1179D01* X3931D02* Y1270D01* X3961Y1300D01* X4070D01* X4079Y1314D02* X4071Y1320D01* X4070D01* X3930D01* X3929D01* X3921Y1326D01* X3922Y1335D01* X3930Y1340D01* X4100D01* X4109Y1354D02* X4101Y1360D01* X4100D01* X3930D01* X3929D01* X3921Y1366D01* X3922Y1375D01* X3930Y1380D01* X4220D01* X4228Y1385D01* X4229Y1394D01* X4221Y1400D01* X4220D01* X3920D01* X3880Y1360D01* X3720D01* X3719D01* X3680D02* X3510D01* X3509D01* X3501Y1366D01* X3502Y1375D01* X3472Y1420D02* X3442Y1390D01* X3441Y1423D02* X3430Y1412D01* X3220D01* X3199Y1433D01* Y1501D01* X3121Y1398D02* Y1349D01* X3152Y1318D01* Y1179D01* X3120D02* Y1310D01* X3084Y1346D01* Y1424D01* X3076Y1472D02* Y1501D01* X3073D01* X3042D02* D01* Y1472D01* X3498Y1234D02* Y1179D01* Y1234D02* D01* X3467Y1242D02* Y1179D01* X3404Y1241D02* D01* Y1179D01* X3435D02* Y1241D01* D01* X3467Y1242D02* X3441Y1268D01* X3372D01* X3341Y1179D02* D01* Y1242D01* X3310D02* Y1179D01* X3309D01* X3278Y1239D02* D01* Y1179D01* X3246D02* Y1238D01* D01* X3183Y1179D02* Y1330D01* X3155Y1358D01* X3138Y1380D02* Y1501D01* X3136D01* X3168D02* Y1432D01* X3180Y1420D01* X3212Y1390D01* X3442D01* X3502Y1375D02* X3510Y1380D01* X3680D01* X3688Y1385D01* X3689Y1394D01* X3681Y1400D01* X3680D01* X3590D01* X3589D01* X3581Y1406D01* X3582Y1415D01* X3590Y1420D01* X3680D01* X3688Y1425D01* X3689Y1434D01* X3680Y1460D02* X3688Y1465D01* X3689Y1474D01* X3681Y1480D01* X3680D01* X3640D01* X3639D01* X3631Y1486D01* X3632Y1495D01* X3640Y1500D01* X3680D01* X3688Y1505D01* X3689Y1514D01* X3680Y1540D02* X3688Y1545D01* X3689Y1554D01* X3681Y1560D01* X3680D01* X3640D01* X3639D01* X3631Y1566D01* X3632Y1575D01* X3607Y1565D02* Y1597D01* X3600Y1604D01* Y1710D01* Y1760D02* X3581Y1741D01* X3580D01* Y1580D01* X3553Y1566D02* Y1707D01* X3550Y1710D01* Y1760D02* X3531Y1741D01* Y1598D01* X3522Y1589D01* Y1564D01* X3449Y1498D02* X3451D01* Y1501D01* X3486D02* X3483D01* X3514D02* Y1532D01* X3500Y1546D01* Y1570D01* X3470Y1600D01* Y1640D01* X3480Y1620D02* Y1680D01* X3475Y1688D01* X3466Y1689D01* X3460Y1681D01* X3470Y1640D02* X3460Y1650D01* Y1680D01* Y1681D01* X3450Y1690D02* Y1710D01* X3422Y1735D02* X3449Y1762D01* X3450Y1760D01* X3422Y1786D02* X3448Y1812D01* X3450Y1810D01* X3487Y1791D02* X3503Y1807D01* X3500Y1810D01* X3478Y1839D02* X3500Y1861D01* Y1860D01* X3450Y1910D02* X3463Y1923D01* X3500Y1910D02* X3510Y1920D01* X3520D01* X3550Y1911D02* X3534Y1895D01* X3550Y1910D02* Y1911D01* X3600Y1910D02* Y1911D01* X3576Y1887D01* X3550Y1860D02* X3560D01* X3575Y1845D01* Y1844D01* X3600Y1860D02* Y1841D01* X3577Y1818D01* Y1784D01* X3550Y1810D02* X3519Y1779D01* Y1619D01* X3510Y1610D01* X3490D01* X3480Y1620D01* X3497Y1632D02* Y1707D01* X3500Y1710D01* X3987Y1853D02* X3903Y1937D01* X3873D01* X3850Y1960D01* X3830Y1938D02* X3808Y1960D01* X3800D01* X3770Y1940D02* X3750Y1960D01* X3767Y1994D02* X3751Y2011D01* X3750Y2010D01* X3765Y2045D02* X3750Y2060D01* X3767Y2092D02* X3768Y2093D01* X3750Y2110D01* X3715Y2096D02* X3701Y2111D01* X3700Y2110D01* X3714Y2145D02* X3700Y2160D01* D01* X3715Y2192D02* X3699Y2209D01* X3700Y2210D01* X3750Y2160D02* X3768Y2142D01* X3800Y2160D02* X3818Y2142D01* X3800Y2110D02* D01* X3817Y2092D01* X3800Y2060D02* X3801Y2061D01* X3826Y2035D01* X3850Y2060D02* D01* X3874Y2035D01* X3850Y2010D02* X3853Y2013D01* X3872Y1993D01* X3900Y2010D02* X4008Y1902D01* Y1759D01* X3933Y1746D02* X3919Y1760D01* X3900D01* Y1810D02* X3993Y1717D01* Y1629D01* X4036Y1586D01* X4594D01* X4615Y1603D02* X4050D01* X4018Y1635D01* X3986Y1546D02* Y1519D01* X3979Y1512D01* Y1501D01* X4136Y1560D02* D01* Y1501D01* X4168D02* Y1561D01* D01* X4199D02* D01* Y1501D01* X4231D02* Y1502D01* Y1560D01* X4294Y1501D02* Y1563D01* D01* X4325D02* D01* Y1501D01* X4356Y1563D02* Y1502D01* X4357Y1501D01* X4388D02* Y1563D01* D01* X4544Y1525D02* X4546D01* Y1501D01* X4577D02* Y1500D01* X4574Y1497D01* Y1467D01* X4640Y1501D02* X4635Y1506D01* Y1545D01* X4594Y1586D01* X4615Y1603D02* X4671Y1547D01* Y1501D01* X4734Y1513D02* D01* Y1501D01* X4766D02* Y1512D01* D01* X4797D02* D01* Y1501D01* X4829D02* Y1514D01* X4831D01* X4892Y1501D02* Y1470D01* X4894D01* X4921D02* X4923D01* Y1501D01* X4957Y1533D02* X4955D01* Y1501D01* X4986D02* Y1513D01* X4989D01* X5049Y1501D02* Y1447D01* D01* X5034Y1179D02* Y1236D01* X5033D01* X4971Y1209D02* Y1179D01* D01* X4939D02* Y1225D01* X4977Y1263D01* X5094D01* X5162Y1331D01* X5075Y1310D02* Y1367D01* X5120Y1412D01* Y1547D01* X5136Y1563D01* Y1735D01* X5026Y1845D01* X5049Y1871D02* X5162Y1758D01* Y1331D01* X5410Y1289D02* X5459D01* Y1323D01* X5075Y1310D02* X5045Y1280D01* X4962D01* X4908Y1226D01* Y1179D01* X4876D02* Y1225D01* X4968Y1317D01* Y1373D01* X4997Y1402D01* X5081D01* X5108Y1429D01* Y1720D01* X5003Y1825D01* Y2011D01* X4972Y2042D01* X4068D01* X3900Y2210D01* Y2310D02* X3914D01* X4002Y2398D01* X4849D01* X4956Y2505D01* X5159D01* X5264Y2400D01* X5485D01* X5622Y2537D01* Y2612D01* X5758Y2748D01* X5839D01* X5935Y2844D01* X5985Y2994D02* X5934D01* X5901Y2961D01* Y2928D02* X5922Y2907D01* X5943Y2888D02* X5979Y2852D01* Y2827D01* X5844Y2692D01* X5921Y2336D02* Y2330D01* X5911Y2320D01* Y2316D01* X5921Y2290D02* Y2283D01* X5911Y2273D01* Y2266D01* X5921Y2236D02* Y2230D01* X5911Y2220D01* Y2216D01* X5921Y2190D02* Y2183D01* X5911Y2173D01* Y2166D01* X5921Y2136D02* Y2130D01* X5911Y2120D01* Y2116D01* X5961D02* Y2119D01* X5975Y2133D01* Y2136D01* X5961Y2166D02* Y2170D01* X5975Y2184D01* Y2190D01* X5961Y2216D02* Y2219D01* X5975Y2233D01* Y2236D01* X6021Y2290D02* Y2283D01* X6011Y2273D01* Y2266D01* X6021Y2236D02* Y2230D01* X6011Y2220D01* Y2216D01* X6021Y2190D02* Y2183D01* X6011Y2173D01* Y2166D01* X6061Y2216D02* Y2219D01* X6075Y2233D01* Y2236D01* Y2136D02* Y2133D01* X6061Y2119D01* Y2116D01* X6075Y2036D02* Y2033D01* X6061Y2019D01* Y2016D01* X6021Y1990D02* Y1983D01* X6011Y1973D01* Y1966D01* X6021Y1936D02* Y1930D01* X6011Y1920D01* Y1916D01* X6021Y1890D02* Y1883D01* X6011Y1873D01* Y1866D01* X6021Y1836D02* Y1830D01* X6011Y1820D01* Y1816D01* X6061D02* Y1819D01* X6075Y1833D01* Y1836D01* X6061Y1916D02* Y1919D01* X6075Y1933D01* Y1936D01* X5961Y1866D02* Y1870D01* X5975Y1884D01* Y1890D01* X5961Y1916D02* Y1919D01* X5975Y1933D01* Y1936D01* X5961Y1966D02* Y1970D01* X5975Y1984D01* Y1990D01* X5961Y2016D02* Y2019D01* X5975Y2033D01* Y2036D01* X5921D02* Y2030D01* X5911Y2020D01* Y2016D01* X5921Y1990D02* Y1983D01* X5911Y1973D01* Y1966D01* X5921Y1936D02* Y1930D01* X5911Y1920D01* Y1916D01* X5921Y1890D02* Y1883D01* X5911Y1873D01* Y1866D01* X5921Y1836D02* Y1830D01* X5911Y1820D01* Y1816D01* X5921Y1790D02* Y1783D01* X5911Y1773D01* Y1766D01* X5921Y1736D02* Y1730D01* X5911Y1720D01* Y1716D01* X5921Y1690D02* Y1683D01* X5911Y1673D01* Y1666D01* X5929D01* X5961Y1634D01* Y1616D01* X5975Y1590D02* Y1584D01* X5961Y1570D01* Y1566D01* X5975Y1536D02* Y1533D01* X5961Y1519D01* Y1516D01* X6011Y1616D02* Y1620D01* X6021Y1630D01* Y1636D01* X6011Y1666D02* Y1673D01* X6021Y1683D01* Y1690D01* X6061Y1716D02* Y1719D01* X6075Y1733D01* Y1736D01* X6021D02* Y1730D01* X6011Y1720D01* Y1716D01* X5975Y1736D02* Y1733D01* X5961Y1719D01* Y1716D01* X5921Y1636D02* Y1630D01* X5911Y1620D01* Y1616D01* X5921Y1590D02* Y1583D01* X5911Y1573D01* Y1566D01* X5921Y1536D02* Y1530D01* X5911Y1520D01* Y1516D01* X5921Y1490D02* Y1483D01* X5911Y1473D01* Y1466D01* X5961Y1416D02* Y1419D01* X5975Y1433D01* Y1436D01* X6011Y1466D02* Y1473D01* X6021Y1483D01* Y1490D01* X6011Y1516D02* Y1520D01* X6021Y1530D01* Y1536D01* X6061Y1516D02* Y1519D01* X6075Y1533D01* Y1536D01* X6144Y1527D02* Y1480D01* X6139Y1475D01* X6121Y1490D02* Y1483D01* X6111Y1473D01* Y1466D01* X6321Y1490D02* Y1483D01* X6311Y1473D01* Y1466D01* X6321Y1436D02* Y1430D01* X6311Y1420D01* Y1416D01* X6321Y1390D02* Y1383D01* X6311Y1373D01* Y1366D01* X6361Y1316D02* Y1319D01* X6375Y1333D01* Y1336D01* X6361Y1366D02* Y1370D01* X6375Y1384D01* Y1390D01* X6361Y1416D02* Y1419D01* X6375Y1433D01* Y1436D01* X6411Y1416D02* Y1420D01* X6421Y1430D01* Y1436D01* X6411Y1466D02* Y1473D01* X6421Y1483D01* Y1490D01* X6475Y1436D02* Y1433D01* X6461Y1419D01* Y1416D01* X6421Y1390D02* Y1383D01* X6411Y1373D01* Y1366D01* X6421Y1336D02* Y1330D01* X6411Y1320D01* Y1316D01* X6461D02* Y1319D01* X6475Y1333D01* Y1336D01* X6611Y1316D02* Y1320D01* X6625Y1334D01* Y1340D01* X6661Y1316D02* Y1323D01* X6671Y1333D01* Y1340D01* X6692Y1348D02* X6691Y1349D01* Y1373D01* X6692Y1374D01* Y1399D01* X6675Y1416D01* X6661D01* X6611Y1466D02* Y1469D01* X6625Y1483D01* Y1486D01* X6711Y1466D02* Y1469D01* X6725Y1483D01* Y1486D01* X6771Y1440D02* Y1433D01* X6761Y1423D01* Y1416D01* X6771Y1386D02* Y1380D01* X6761Y1370D01* Y1366D01* X6785Y1341D02* D01* X6761Y1316D01* X6811D02* Y1320D01* X6825Y1334D01* Y1340D01* X6840Y1325D02* X6848Y1333D01* Y1351D01* X6833Y1366D01* X6811D01* Y1416D02* Y1420D01* X6825Y1434D01* Y1440D01* X6811Y1466D02* Y1469D01* X6825Y1483D01* Y1486D01* X6861Y1466D02* Y1470D01* X6871Y1480D01* Y1486D01* X6861Y1516D02* Y1523D01* X6871Y1533D01* Y1540D01* X6911Y1566D02* Y1569D01* X6925Y1583D01* Y1586D01* X6961Y1566D02* Y1570D01* X6971Y1580D01* Y1586D01* Y1540D02* Y1533D01* X6961Y1523D01* Y1516D01* X6971Y1486D02* Y1480D01* X6961Y1470D01* Y1466D01* X6971Y1440D02* Y1433D01* X6961Y1423D01* Y1416D01* X6925Y1440D02* Y1434D01* X6911Y1420D01* Y1416D01* X6871Y1440D02* Y1433D01* X6861Y1423D01* Y1416D01* X6882Y1387D02* D01* X6861Y1366D01* X6911Y1316D02* Y1320D01* X6925Y1334D01* Y1340D01* X6961Y1316D02* Y1323D01* X6971Y1333D01* Y1340D01* X7011Y1416D02* Y1420D01* X7025Y1434D01* Y1440D01* X7011Y1466D02* Y1469D01* X7025Y1483D01* Y1486D01* X7011Y1516D02* Y1520D01* X7025Y1534D01* Y1540D01* X7011Y1566D02* Y1569D01* X7025Y1583D01* Y1586D01* X7011Y1616D02* Y1620D01* X7025Y1634D01* Y1640D01* X7011Y1666D02* Y1669D01* X7025Y1683D01* Y1686D01* X7011Y1716D02* Y1720D01* X7025Y1734D01* Y1740D01* X7011Y1766D02* Y1769D01* X7025Y1783D01* Y1786D01* X6961Y1916D02* X6960D01* Y1893D01* X6961Y1866D02* Y1865D01* X6989Y1893D01* X7025Y1940D02* Y1934D01* X7011Y1920D01* Y1916D01* X7025Y1886D02* Y1883D01* X7011Y1869D01* Y1866D01* X7025Y1840D02* Y1834D01* X7011Y1820D01* Y1816D01* X6971Y1786D02* Y1780D01* X6961Y1770D01* Y1766D01* X6971Y1740D02* Y1733D01* X6961Y1723D01* Y1716D01* X6925Y1686D02* Y1683D01* X6911Y1669D01* Y1666D01* X6925Y1640D02* Y1634D01* X6911Y1620D01* Y1616D01* X6871Y1640D02* Y1633D01* X6861Y1623D01* Y1616D01* Y1716D02* Y1723D01* X6871Y1733D01* Y1740D01* X6911Y1716D02* Y1720D01* X6925Y1734D01* Y1740D01* X6911Y1766D02* Y1769D01* X6925Y1783D01* Y1786D01* X6893Y1841D02* X6868Y1816D01* X6861D01* Y1916D02* Y1923D01* X6871Y1933D01* Y1940D01* X6897Y1951D02* X6911Y1965D01* Y1966D01* X6961D02* Y1968D01* X6986D01* X7011Y1966D02* Y1969D01* X7025Y1983D01* Y1986D01* Y2040D02* Y2034D01* X7011Y2020D01* Y2016D01* X6985Y2026D02* X6975Y2016D01* X6961D01* X6938Y2007D02* X6929Y2016D01* X6911D01* X6888Y2044D02* D01* X6861Y2016D01* Y2116D02* Y2123D01* X6871Y2133D01* Y2140D01* X6911Y2116D02* X6912Y2118D01* X6935D01* X6911Y2166D02* X6933D01* X6935Y2164D01* X6961Y2166D02* X6988Y2194D01* D01* X7025Y2140D02* Y2134D01* X7011Y2120D01* Y2116D01* X7025Y2086D02* Y2083D01* X7011Y2069D01* Y2066D01* X6989Y2087D02* X6981D01* X6961Y2066D01* X7230Y1874D02* X7247D01* X7263Y1890D01* X7247Y1906D01* X7230D01* Y1937D02* X7246D01* X7267Y1916D01* Y1890D01* X7263D01* D01* X7267D02* X7263D01* D01* X7267D02* Y1864D01* X7246Y1843D01* X7230D01* Y1728D02* X7248D01* X7254Y1722D01* X7288D01* X7314Y1748D01* X7622D01* X7661Y1787D01* X7651Y1750D02* X7622Y1721D01* Y1698D01* X7596Y1672D01* X7317D01* X7292Y1697D01* X7230D01* X7104Y1723D02* X7124D01* X7130Y1728D01* X7156D01* Y1760D02* X7130D01* X7119Y1749D01* X7104Y1775D02* X7121Y1791D01* X7156D01* X7119Y1842D02* Y1843D01* X7156D01* Y1874D02* X7130D01* X7124Y1868D01* X7104D01* X7119Y1894D02* X7130Y1906D01* X7156D01* Y1937D02* X7121D01* X7104Y1920D01* Y1868D02* X7056Y1820D01* Y1332D01* X7019Y1295D01* X6882D01* X6861Y1316D01* X6840Y1325D02* Y1309D01* X6872Y1277D01* X7031D01* X7079Y1325D01* Y1657D01* X7119Y1697D01* D01* X7156D01* Y1646D02* X7121D01* X7104Y1629D01* X7119Y1603D02* X7130Y1614D01* X7156D01* Y1583D02* X7130D01* X7124Y1577D01* X7104D01* X7119Y1551D02* D01* X7156D01* X7230Y1583D02* X7247D01* X7263Y1598D01* Y1599D02* X7247Y1614D01* X7230D01* Y1646D02* X7246D01* X7267Y1625D01* Y1599D01* X7263D02* D01* X7267D01* X7263D02* Y1598D01* X7267D01* Y1572D01* X7246Y1551D01* X7230D01* X7258Y1512D02* X7224D01* Y1496D01* X7230Y1315D02* X7246D01* X7255Y1306D01* X7280D01* X7328Y1354D01* X7355D01* X7386Y1385D01* Y1403D01* X7414Y1431D01* X7432D01* X7466Y1465D01* Y1485D01* X7494Y1513D01* X7514D01* X7544Y1543D01* Y1564D01* X7569Y1589D01* X7620D01* X7661Y1630D01* X7651Y1750D02* X7703D01* X7740Y1787D01* X7583D02* X7548Y1822D01* X7322D01* X7273Y1773D01* X7257D01* X7244Y1760D01* X7230D01* Y1791D02* X7259D01* X7303Y1835D01* X7396D01* Y1837D01* X7425Y1866D01* X7661Y1945D02* X7628Y1978D01* X7256D01* X7246Y1988D01* X7230D01* Y2020D02* X7245D01* X7271Y1994D01* X7691D01* X7740Y1945D01* X7622Y2405D02* X7595Y2378D01* X7572D01* X7544Y2350D01* Y2328D01* X7515Y2299D01* X7315D01* X7296Y2280D01* X7230D01* Y2311D02* X7246D01* X7253Y2304D01* X7283D01* X7304Y2325D01* Y2347D01* X7336Y2379D01* X7360D01* X7386Y2405D01* X7334Y2456D02* X7310Y2432D01* Y2409D01* X7244Y2343D01* X7230D01* Y2374D02* X7243D01* X7291Y2422D01* Y2491D01* X7336Y2536D01* X7230Y2488D02* X7247D01* X7263Y2473D01* Y2472D02* X7247Y2457D01* X7230D01* Y2425D02* X7246D01* X7267Y2446D01* Y2472D01* X7263D01* Y2473D01* X7267D02* X7263D01* D01* X7267D02* Y2499D01* X7246Y2520D01* X7230D01* X7156Y2571D02* X7119D01* D01* X7104Y2597D02* X7124D01* X7130Y2602D01* X7156D01* Y2634D02* X7130D01* X7119Y2623D01* X7104Y2649D02* X7121Y2665D01* X7156D01* X7119Y2716D02* Y2717D01* X7156D01* Y2748D02* X7130D01* X7124Y2742D01* X7104D01* X7119Y2768D02* X7130Y2780D01* X7156D01* Y2811D02* X7121D01* X7104Y2794D01* X7230Y2780D02* X7247D01* X7263Y2764D01* X7247Y2748D01* X7230D01* Y2717D02* X7246D01* X7267Y2738D01* Y2764D01* X7263D01* D01* X7267D02* X7263D01* D01* X7267D02* Y2790D01* X7246Y2811D01* X7230D01* X7119Y2984D02* D01* X7156D01* Y3016D02* X7130D01* X7124Y3010D01* X7104D01* X7119Y3036D02* X7130Y3047D01* X7156D01* Y3079D02* X7121D01* X7104Y3062D01* X7156Y3130D02* X7119D01* D01* X7104Y3156D02* X7124D01* X7130Y3161D01* X7156D01* X7104Y3208D02* X7121Y3224D01* X7156D01* Y3276D02* X7119D01* Y3275D01* X7104Y3301D02* X7124D01* X7130Y3307D01* X7156D01* Y3339D02* X7130D01* X7119Y3327D01* X7104Y3353D02* X7121Y3370D01* X7156D01* Y3421D02* X7153Y3424D01* X7124D01* X7120Y3428D01* X7097Y3459D02* X7103Y3453D01* X7156D01* Y3484D02* X7116D01* X7113Y3487D01* X7097Y3513D02* X7100Y3516D01* X7156D01* X7141Y3544D02* Y3567D01* X7156D01* Y3598D02* X7141D01* X7123Y3580D01* Y3562D01* X7104Y3543D01* X7119Y3644D02* X7125D01* X7139Y3630D01* X7156D01* Y3661D02* X7144D01* X7126Y3679D01* X7156Y3713D02* X7119D01* Y3712D01* X7104Y3738D02* X7124D01* X7130Y3744D01* X7156D01* Y3776D02* X7130D01* X7119Y3764D01* X7104Y3790D02* X7121Y3807D01* X7156D01* Y3858D02* X7119D01* D01* X7104Y3884D02* X7124D01* X7130Y3890D01* X7156D01* Y3921D02* X7130D01* X7119Y3910D01* X7094Y3927D02* X7105D01* X7131Y3953D01* X7156D01* X7230Y3807D02* X7246D01* X7267Y3786D01* Y3760D01* X7263D01* D01* X7267D02* X7263D01* D01* X7267D02* Y3734D01* X7246Y3713D01* X7230D01* Y3744D02* X7247D01* X7263Y3760D01* X7247Y3776D01* X7230D01* X7417Y3877D02* X7385Y3909D01* Y3926D01* X7358Y3953D01* X7230D01* Y3921D02* X7245D01* X7254Y3930D01* X7279D01* X7337Y3872D01* X7388D01* X7425Y3835D01* X7417Y3877D02* X7540D01* X7583Y3835D01* X7504Y3756D02* X7475Y3785D01* X7317D01* X7244Y3858D01* X7230D01* Y3890D02* X7242D01* X7335Y3797D01* X7699D01* X7740Y3756D01* Y3913D02* X7702Y3952D01* X7417D01* X7386Y3983D01* Y4000D01* X7363Y4023D01* X7321D01* X7332Y4038D02* X7379D01* X7425Y3992D01* X7385Y4084D02* Y4064D01* X7417Y4032D01* X7543D01* X7583Y3992D01* X7661D02* X7621Y4033D01* X7567D01* X7543Y4057D01* Y4082D01* X7515Y4110D01* X7415D01* X7387Y4138D01* Y4151D01* X7350Y4188D01* X7334D01* X7278Y4244D01* X7230D01* Y4295D02* X7246D01* X7267Y4316D01* Y4342D01* X7263D01* Y4343D01* X7267D02* X7263D01* D01* X7267D02* Y4369D01* X7246Y4390D01* X7230D01* Y4358D02* X7247D01* X7263Y4343D01* Y4342D02* X7247Y4327D01* X7230D01* X7156Y4358D02* X7130D01* X7119Y4347D01* X7104Y4373D02* X7121Y4390D01* X7156D01* X7119Y4441D02* D01* X7156D01* Y4472D02* X7130D01* X7124Y4467D01* X7104D01* X7119Y4493D02* X7130Y4504D01* X7156D01* Y4535D02* X7121D01* X7104Y4519D01* X7083Y4560D02* X7110Y4587D01* X7156D01* X7230Y4650D02* X7247D01* X7263Y4634D01* X7247Y4618D01* X7230D01* Y4587D02* X7246D01* X7267Y4608D01* Y4634D01* X7263D01* D01* X7267D02* X7263D01* D01* X7267D02* Y4660D01* X7246Y4681D01* X7230D01* X7156D02* X7110D01* D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5004D02* Y5031D01* X7465Y5038D02* X7458Y5031D01* X7452Y5038D01* X7445D01* X7438Y5031D01* Y5038D02* Y5004D01* X7392D02* X7385Y5011D01* Y5051D01* X7392Y5058D01* X7418D01* X7425Y5051D01* Y5011D01* X7418Y5004D01* X7392D01* X7385D02* X7425Y5058D01* X7372D02* X7332Y5004D01* X7338D02* X7365D01* X7372Y5011D01* Y5051D01* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7298Y5018D02* X7292Y5011D01* X7298Y5004D01* X7305Y5011D01* X7298Y5018D01* X7265Y5058D02* X7225Y5004D01* Y5011D02* X7232Y5004D01* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7138Y5004D02* Y5058D01* X7125Y5044D01* X7178Y5058D02* X7205D01* X7212Y5051D01* Y5011D01* X7205Y5004D01* X7178D01* X7172Y5011D01* Y5004D02* X7212Y5058D01* X7178D02* X7172Y5051D01* Y5011D01* X7158Y5004D02* X7118D01* X7105Y5024D02* X7072D01* X7105Y5038D02* X7072D01* X7045D02* Y4991D01* X7038Y4984D01* X7018D01* X7012Y4991D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y5094D02* X7045Y5128D01* X7012D02* X7045Y5094D01* X7072Y5114D02* X7105D01* X7072Y5128D02* X7105D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7232D02* X7258D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7212D02* X7172D01* Y5128D01* X7205D01* X7212Y5121D01* Y5101D01* X7232Y5121D02* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7298Y5094D02* X7292Y5101D01* X7298Y5108D01* X7305Y5101D01* X7298Y5094D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7418D02* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7418D01* X7425Y5101D01* Y5141D01* X7418Y5148D01* X7425D02* X7385Y5094D01* X7438D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7937Y4369D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4402D01* Y4375D01* X7950Y4369D01* X7910D01* X7903Y4375D01* Y4402D01* X7910Y4409D01* X7950Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4422D01* X7957D02* X7903Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7903D02* X7957Y4529D01* X7950D02* X7957Y4535D01* Y4562D01* X7950Y4569D01* X7957Y4589D02* Y4615D01* X7950Y4622D01* X7910D01* X7903D02* X7957Y4582D01* X7950D02* X7957Y4589D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7957Y4635D02* X7923D01* X7930D02* X7923Y4642D01* Y4649D01* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* X7923Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4709D02* X8013Y4715D01* Y4722D01* X8020Y4729D01* X8047D01* Y4709D02* X8020D01* X8013Y4702D01* Y4695D01* X8020Y4689D01* X8013D02* X8047D01* Y4635D02* X8013D01* X8020D02* X8013Y4642D01* Y4649D01* X8020Y4655D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8020Y4655D01* X8013Y4649D01* X7993Y4615D02* Y4589D01* X8000Y4582D01* X8040D01* X8047Y4589D01* X8020Y4569D02* X8013Y4562D01* Y4529D01* X7993D01* Y4569D01* X8020D02* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8000Y4462D02* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7923D02* X7957Y4242D01* Y4209D02* X7923Y4242D01* Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7937Y4302D02* Y4269D01* X7544Y4237D02* X7512Y4269D01* X7496D01* X7466Y4299D01* Y4314D01* X7434Y4346D01* X7415D01* X7386Y4375D01* Y4397D01* X7355Y4428D01* X7327D01* X7308Y4447D01* Y4484D01* X7280Y4512D01* X7255D01* X7247Y4504D01* X7230D01* Y4535D02* X7292D01* X7322Y4505D01* X7356D01* X7385Y4476D01* Y4455D01* X7411Y4429D01* X7433D01* X7464Y4398D01* Y4377D01* X7494Y4347D01* X7517D01* X7543Y4321D01* Y4299D01* X7574Y4268D01* X7590D01* X7622Y4236D01* X7740Y4150D02* X7700Y4190D01* X7650D01* X7622Y4236D02* Y4218D01* X7650Y4190D01* X7661Y4150D02* X7621Y4190D01* X7574D01* X7544Y4237D02* Y4220D01* X7574Y4190D01* X7583Y4150D02* X7541Y4191D01* X7491D01* X7465Y4217D01* Y4239D01* X7436Y4268D01* X7414D01* X7386Y4296D01* Y4319D01* X7356Y4349D01* X7331D01* X7310Y4370D01* Y4409D01* X7247Y4472D01* X7230D01* Y4441D02* X7246D01* X7291Y4396D01* Y4313D01* X7337Y4267D01* X7358D01* X7386Y4239D01* Y4189D01* X7425Y4150D01* X7385Y4084D02* X7357Y4112D01* X7336D01* X7303Y4145D01* Y4195D01* X7280Y4218D01* X7252D01* X7247Y4213D01* X7230D01* Y4181D02* X7246D01* X7308Y4119D01* Y4062D01* X7332Y4038D01* X7321Y4023D02* X7290Y4054D01* Y4104D01* X7244Y4150D01* X7230D01* Y4098D02* X7246D01* X7267Y4077D01* Y4051D01* X7263D02* D01* X7267D01* X7263D02* D01* X7267D01* Y4025D01* X7246Y4004D01* X7230D01* Y4035D02* X7247D01* X7263Y4051D01* X7247Y4067D01* X7230D01* X7156Y4004D02* X7141D01* X7115Y4030D01* X7104Y4058D02* X7117D01* X7140Y4035D01* X7156D01* Y4067D02* X7141D01* X7123Y4085D01* X7118D01* X7104Y4112D02* X7126D01* X7140Y4098D01* X7156D01* X7143Y4126D02* Y4150D01* X7156D01* Y4181D02* X7141D01* X7123Y4163D01* Y4149D01* X7115Y4141D01* X7119Y4212D02* Y4213D01* X7156D01* Y4244D02* X7117D01* D01* X7119Y4295D02* D01* X7156D01* Y4327D02* X7130D01* X7124Y4321D01* X7104D01* X6656Y4220D02* X6626Y4250D01* Y4248D01* X7230Y3453D02* X7247D01* X7263Y3468D01* Y3469D02* X7247Y3484D01* X7230D01* Y3516D02* X7246D01* X7267Y3495D01* Y3469D01* Y3468D02* X7263D01* Y3469D01* X7267D02* X7263D01* D01* X7267Y3468D02* Y3442D01* X7246Y3421D01* X7230D01* Y3307D02* X7247D01* X7254Y3300D01* X7291D01* X7313Y3322D01* X7515D01* X7544Y3351D01* Y3374D01* X7571Y3401D01* X7504Y3441D02* X7458Y3395D01* X7300D01* X7244Y3339D01* X7230D01* Y3370D02* X7244D01* X7281Y3407D01* X7391D01* X7425Y3441D01* Y3598D02* X7394Y3567D01* X7230D01* Y3598D02* X7246D01* X7252Y3592D01* X7279D01* X7317Y3630D01* X7472D01* X7504Y3598D01* X7425Y3677D02* X7392Y3710D01* X7293D01* X7244Y3661D01* X7230D01* Y3630D02* X7244D01* X7258Y3644D01* X7695D01* X7740Y3598D01* Y3441D02* X7700Y3401D01* X7571D01* X7583Y3362D02* X7544Y3324D01* Y3274D01* X7514Y3244D01* X7314D01* X7282Y3276D01* X7230D01* Y3224D02* X7246D01* X7267Y3203D01* Y3177D01* X7263D01* X7247Y3193D01* X7230D01* X7215D01* X7192Y3170D01* Y3152D01* X7214Y3130D01* X7230D01* Y3161D02* X7249D01* X7278Y3132D01* X7293D01* X7414Y3008D02* X7387Y3035D01* Y3055D01* X7363Y3079D01* X7230D01* Y3047D02* X7244D01* X7254Y3057D01* X7282D01* X7331Y3008D01* X7386D01* X7425Y2969D01* X7414Y3008D02* X7464D01* X7504Y2969D01* X7583Y2890D02* X7550Y2922D01* X7319D01* X7257Y2984D01* X7230D01* Y3016D02* X7246D01* X7327Y2935D01* X7616D01* X7661Y2890D01* X7740Y2654D02* X7696Y2609D01* X7318D01* X7280Y2571D01* X7230D01* Y2602D02* X7246D01* X7252Y2596D01* X7278D01* X7304Y2622D01* X7520D01* X7543Y2645D01* Y2667D01* X7571Y2695D01* X7425Y2732D02* X7394Y2701D01* X7280D01* X7244Y2665D01* X7230D01* Y2634D02* X7246D01* X7300Y2688D01* X7538D01* X7583Y2732D01* X7661D02* X7624Y2695D01* X7571D01* X7425Y2575D02* X7386Y2536D01* X7336D01* X7334Y2456D02* X7385D01* X7425Y2496D01* X7415Y2458D02* X7386Y2429D01* Y2405D01* X7415Y2458D02* X7466D01* X7504Y2496D01* X7740D02* X7701Y2457D01* X7650D01* X7622Y2429D01* Y2405D01* X7583Y2260D02* X7538Y2215D01* X7330D01* X7319Y2230D02* X7395D01* X7425Y2260D01* X7230Y2165D02* X7247D01* X7263Y2181D01* X7247Y2197D01* X7230D01* Y2228D02* X7246D01* X7267Y2207D01* Y2181D01* X7263D02* D01* X7267D01* X7263D02* D01* X7267D01* Y2155D01* X7246Y2134D01* X7230D01* Y2083D02* X7243D01* X7295Y2135D01* Y2206D01* X7319Y2230D01* X7330Y2215D02* X7312Y2197D01* Y2118D01* X7245Y2051D01* X7230D01* X7156Y1988D02* X7119D01* D01* X7104Y2014D02* X7124D01* X7130Y2020D01* X7156D01* Y2051D02* X7130D01* X7119Y2040D01* X7104Y2066D02* X7121Y2083D01* X7156D01* X7119Y2134D02* D01* X7156D01* Y2165D02* X7130D01* X7124Y2160D01* X7104D01* X7119Y2186D02* X7130Y2197D01* X7156D01* Y2228D02* X7121D01* X7104Y2212D01* X7119Y2279D02* Y2280D01* X7156D01* Y2311D02* X7130D01* X7124Y2305D01* X7104D01* X7119Y2331D02* X7130Y2343D01* X7156D01* Y2374D02* X7121D01* X7104Y2357D01* X7119Y2425D02* D01* X7156D01* Y2457D02* X7112D01* X7109Y2454D01* X7120Y2482D02* X7126Y2488D01* X7156D01* Y2520D02* X7119D01* X7109Y2510D01* X7025Y2440D02* Y2434D01* X7011Y2420D01* Y2416D01* X7025Y2386D02* Y2383D01* X7011Y2369D01* Y2366D01* X7025Y2340D02* Y2334D01* X7011Y2320D01* Y2316D01* X6961D02* Y2337D01* X6958D01* X6939Y2350D02* Y2308D01* X6961Y2286D01* Y2266D01* X6983Y2239D02* D01* X6961Y2216D01* X7011D02* Y2237D01* X6986Y2262D01* Y2277D01* X7011Y2266D02* Y2269D01* X7025Y2283D01* Y2286D01* X6925Y2386D02* Y2383D01* X6911Y2369D01* Y2366D01* X6909Y2341D02* X6911Y2339D01* Y2316D01* X6861D02* Y2323D01* X6871Y2333D01* Y2340D01* X6861Y2366D02* Y2370D01* X6871Y2380D01* Y2386D01* X6825Y2440D02* Y2434D01* X6811Y2420D01* Y2416D01* X6825Y2386D02* Y2383D01* X6811Y2369D01* Y2366D01* X6825Y2340D02* Y2334D01* X6811Y2320D01* Y2316D01* X6825Y2286D02* Y2283D01* X6811Y2269D01* Y2266D01* X6829Y2249D02* X6846Y2266D01* X6861D01* X6850Y2236D02* X6861Y2225D01* Y2216D01* X6711Y2266D02* Y2269D01* X6725Y2283D01* Y2286D01* X6711Y2316D02* Y2320D01* X6725Y2334D01* Y2340D01* X6761Y2316D02* Y2323D01* X6771Y2333D01* Y2340D01* X6761Y2366D02* Y2370D01* X6771Y2380D01* Y2386D01* Y2440D02* Y2433D01* X6761Y2423D01* Y2416D01* X6725Y2440D02* Y2434D01* X6711Y2420D01* Y2416D01* X6625Y2440D02* Y2434D01* X6611Y2420D01* Y2416D01* X6671Y2386D02* Y2380D01* X6661Y2370D01* Y2366D01* X6671Y2340D02* Y2333D01* X6661Y2323D01* Y2316D01* X6611Y2266D02* Y2155D01* X6120Y1664D01* X6126Y1791D02* Y1707D01* X6098Y1679D01* Y1573D01* X6144Y1527D01* X6139Y1475D02* Y1456D01* X6154Y1441D01* X6186D01* X6211Y1416D01* X6275Y1436D02* Y1433D01* X6261Y1419D01* Y1416D01* X6275Y1390D02* Y1384D01* X6261Y1370D01* Y1366D01* X6236Y1340D02* D01* X6261Y1316D01* X6515Y1145D02* X6528Y1158D01* X6563D01* X6561Y1316D02* Y1323D01* X6571Y1333D01* Y1340D01* X6561Y1366D02* Y1370D01* X6571Y1380D01* Y1386D01* X6625D02* Y1383D01* X6661Y1370D02* Y1366D01* Y1370D02* X6671Y1380D01* Y1386D01* X6725D02* Y1383D01* X6711Y1369D01* Y1366D01* X6725Y1340D02* Y1334D01* X6711Y1320D01* Y1316D01* X6692Y1348D02* Y1329D01* X6691Y1328D01* Y1305D01* X6736Y1260D01* X6958D01* X6993Y1225D01* Y1217D01* Y1208D01* X7055Y1217D02* Y1238D01* X7076Y1259D01* X7155D01* X7156Y1258D01* Y1232D02* X7142D01* X7132Y1242D01* X7109D01* X7105Y1238D01* X7089D01* X7119Y1378D02* D01* X7156D01* Y1346D02* X7130D01* X7124Y1352D01* X7104D01* X7119Y1326D02* X7130Y1315D01* X7156D01* X7104Y1300D02* X7121Y1283D01* X7156D01* Y1258D02* X7257D01* X7266Y1267D01* X7426D01* X7464Y1305D01* Y1322D01* X7497Y1355D01* X7514D01* X7544Y1385D01* Y1404D01* X7573Y1433D01* X7592D01* X7622Y1463D01* Y1482D01* X7653Y1513D01* X7702D01* X7740Y1551D01* Y1630D02* X7699Y1589D01* X7651D01* X7623Y1561D01* Y1543D01* X7590Y1510D01* X7571D01* X7425Y1630D02* X7386Y1591D01* Y1541D01* X7356Y1511D01* X7336D01* X7309Y1484D01* Y1429D01* X7258Y1378D01* X7230D01* Y1346D02* X7249D01* X7337Y1434D01* X7358D01* X7385Y1461D01* Y1485D01* X7411Y1511D01* X7428D01* X7465Y1548D01* X7583Y1630D02* X7542Y1589D01* X7489D01* X7465Y1565D01* Y1548D01* X7571Y1510D02* X7542Y1481D01* Y1463D01* X7511Y1432D01* X7493D01* X7464Y1403D01* Y1386D01* X7431Y1353D01* X7413D01* X7384Y1324D01* Y1305D01* X7362Y1283D01* X7230D01* X7274Y1234D02* Y1232D01* X7230D01* Y1201D02* X7247D01* X7263Y1185D01* X7267D02* X7263D01* X7267D02* Y1159D01* X7246Y1138D01* X7230D01* X7267Y1185D02* D01* X7263D01* X7247Y1169D01* X7230D01* X7156D02* X7143D01* X7114Y1198D01* X7103D01* X7094Y1207D01* X7090D01* X7118Y1219D02* X7124D01* X7142Y1201D01* X7156D01* Y1138D02* X7143D01* X7120Y1161D01* Y1172D01* X7106Y1186D01* X7076D01* X7072Y1182D01* X7019D01* X6993Y1208D02* X7019Y1182D01* X6972Y1069D02* D01* X7012Y876D02* X7045Y843D01* X7072Y863D02* X7105D01* Y876D02* X7072D01* X7045D02* X7012Y843D01* Y786D02* Y759D01* X7018Y753D01* X7038D01* X7045Y759D01* X7012Y739D02* X7018Y733D01* X7038D01* X7045Y739D01* Y786D01* X7072D02* X7105D01* X7072Y773D02* X7105D01* X7125Y883D02* X7138Y896D01* Y843D01* X7118D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7212Y849D01* Y869D01* X7205Y876D01* X7172D01* Y896D01* X7212D01* X7232Y753D02* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225D02* X7265Y806D01* X7258Y843D02* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* Y843D02* X7265Y849D01* Y863D01* X7258Y869D01* X7232D01* X7298Y843D02* X7292Y849D01* X7298Y856D01* X7305Y849D01* X7298Y843D01* X7332Y849D02* X7338Y843D01* X7365D01* X7372Y849D01* Y869D01* X7365Y876D01* X7332D01* Y896D01* X7372D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7518Y786D02* X7525D01* X7532Y779D01* Y753D01* X7512D02* Y779D01* X7518Y786D02* X7512Y779D01* X7505Y786D01* X7498D01* X7492Y779D01* Y786D02* Y753D01* X7458Y779D02* X7465Y786D01* X7472D01* X7478Y779D01* Y753D01* X7458D02* Y779D01* X7452Y786D01* X7445D01* X7438Y779D01* Y786D02* Y753D01* X7385D02* X7425Y806D01* X7418D02* X7425Y799D01* Y759D01* X7418Y753D01* X7392D01* X7385Y759D01* Y799D01* X7392Y806D01* X7418D01* X7438Y843D02* Y876D01* Y869D02* X7445Y876D01* X7452D01* X7458Y869D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y869D01* X7452Y876D01* X7425Y896D02* X7385Y843D01* Y849D02* X7392Y843D01* X7418D01* X7425Y849D01* Y889D01* X7418Y896D01* X7392D01* X7385Y889D01* Y849D01* X7372Y806D02* X7332Y753D01* Y759D02* X7338Y753D01* X7365D01* X7372Y759D01* Y799D01* X7365Y806D01* X7338D01* X7332Y799D01* Y759D01* X7298Y753D02* X7305Y759D01* X7298Y766D01* X7292Y759D01* X7298Y753D01* X7923Y1181D02* X7957Y1214D01* X7937Y1241D02* Y1274D01* X7923D02* Y1241D01* Y1214D02* X7957Y1181D01* X8013D02* X8040D01* X8047Y1188D01* Y1208D01* X8040Y1214D01* X8060Y1181D02* X8067Y1188D01* Y1208D01* X8060Y1214D01* X8013D01* Y1241D02* Y1274D01* X8027Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1288D02* Y1328D01* X7950Y1341D02* X7957Y1348D01* Y1374D01* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7950Y1394D02* X7910D01* X7903Y1401D01* Y1428D01* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* X7950Y1394D01* X7957D02* X7903Y1434D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* Y1501D02* X7910D01* X7903Y1508D01* Y1534D01* X7910Y1541D01* X7950D01* X7957Y1534D01* X7993Y1541D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8040D01* X8047Y1534D01* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X7903Y1541D02* X7957Y1501D01* X7950D02* X7957Y1508D01* Y1534D01* Y1561D02* Y1588D01* X7950Y1594D01* X7910D01* X7903D02* X7957Y1554D01* X7950D02* X7957Y1561D01* X7950Y1554D02* X7910D01* X7903Y1561D01* Y1588D01* X7910Y1594D01* X7957Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D01* X7923Y1634D01* X7930Y1628D02* X7957D01* X7923Y1634D02* Y1641D01* X7930Y1648D01* X7957D01* Y1661D02* X7923D01* Y1668D02* Y1674D01* X7930Y1661D02* X7923Y1668D01* Y1674D02* X7930Y1681D01* X7957D01* Y1701D02* X7930D01* X7923Y1694D01* Y1688D01* X7930Y1681D01* X8020Y1661D02* X8013Y1668D01* Y1674D02* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X8013Y1674D02* Y1668D01* Y1661D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* X8020Y1628D01* X8013Y1621D01* X8000Y1594D02* X7993Y1588D01* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1561D01* Y1588D01* X8040Y1594D01* X8000D01* X7993D02* X8047Y1554D01* Y1608D02* X8013D01* X8020D02* X8013Y1614D01* Y1621D01* X8020Y1628D02* X8047D01* D013* X3050Y1860D02* X3047D01* X3027Y1880D01* X2970Y3820D02* X2937D01* X2898Y3859D01* X2840D01* X3983Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X3983Y5933D02* X3994Y5944D01* X4039D01* X4050Y5933D01* Y5911D01* X4039Y5900D01* X3994D01* X3983Y5911D01* X3961Y5900D02* X3894D01* X3928D02* Y5989D01* X3906Y5967D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4261D02* X4250Y5911D01* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250D02* X4317Y5989D01* X4350Y5900D02* X4339Y5911D01* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339D02* X4406Y5989D01* X4450Y5956D02* X4461Y5944D01* X4472Y5956D01* X4483D01* X4494Y5944D01* Y5900D01* X4461D02* Y5944D01* X4450Y5956D02* X4439D01* X4428Y5944D01* Y5956D02* Y5900D01* X4517D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4550Y5944D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4872Y5900D02* X4939Y5989D01* X4928D02* X4939Y5978D01* X4928Y5989D02* X4883D01* X4872Y5978D01* X4850Y5944D02* X4783D01* X4817Y5911D02* Y5978D01* X4872D02* Y5911D01* X4883Y5900D01* X4928D01* X4939Y5911D01* Y5978D01* X4961Y5900D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5139Y5978D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* X5194Y5989D01* X5206D02* X5139Y5900D01* X5150D02* X5194D01* X5261Y5922D02* X5250Y5911D01* X5261Y5900D01* X5272Y5911D01* X5261Y5922D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* Y3617D02* X8839Y3550D01* X8761D02* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3517D02* X8761Y3528D01* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* Y3528D02* X8839Y3461D01* X8761Y3394D02* X8750Y3406D01* X8761Y3417D01* X8772Y3406D01* X8761Y3394D01* X8750Y3350D02* X8839Y3283D01* Y3294D02* X8828Y3283D01* X8761D01* X8750Y3294D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D01* Y3172D02* X8750D01* X8761Y3194D02* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8750D02* X8839Y3194D01* Y3250D02* X8828Y3261D01* X8761D01* X8750Y3294D02* Y3339D01* X8761Y3350D01* X8828D01* X8839Y3339D01* Y3294D01* Y3250D02* Y3206D01* X8828Y3194D01* X8761D01* X8794Y3172D02* X8806Y3161D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3083D02* X8806D01* Y3072D02* Y3061D01* X8794Y3050D01* X8750D01* X8794Y3083D02* X8806Y3072D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8839Y2672D02* Y2717D01* X8828Y2728D01* X8761D01* X8750Y2717D01* Y2672D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* X8750Y2728D02* X8839Y2661D01* Y2672D02* X8828Y2661D01* X8761D01* X8750Y2672D01* Y2639D02* X8839Y2572D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8750D02* X8839Y2394D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X2148Y4773D02* D03* X2092Y4767D02* D03* X2014Y4651D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1950Y4222D02* D03* Y4156D02* D03* X2018Y4045D02* D03* X2061Y4142D02* D03* X2124Y4218D02* D03* X2119Y4359D02* D03* X2223Y4425D02* D03* X2580Y4311D02* D03* X2511Y4345D02* D03* X2514Y4265D02* D03* X2581Y4227D02* D03* X2683Y4228D02* D03* X2684Y4304D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2786Y4848D02* D03* X2853Y4849D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3137D02* D03* X3199Y4847D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3361Y4671D02* D03* X3331Y4670D02* D03* X3286Y4659D02* D03* X3250Y4646D02* D03* X3236Y4673D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3034Y4657D02* D03* X3048Y4538D02* D03* Y4498D02* D03* X3050Y4328D02* D03* X3112Y4199D02* D03* X3109Y4165D02* D03* X3202D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3251Y4089D02* D03* X3297Y4095D02* D03* X3347Y3943D02* D03* X3286Y3939D02* D03* X3244Y3894D02* D03* X3246Y3815D02* D03* X3267Y3788D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X2930Y3929D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2997Y4044D02* D03* X2954Y4046D02* D03* X2952Y3996D02* D03* X2945Y4089D02* D03* X2969Y4108D02* D03* X3025Y4130D02* D03* X2934Y4231D02* D03* X2902Y4301D02* D03* X2871Y4302D02* D03* X2883Y4465D02* D03* X2940Y4479D02* D03* X2906Y4532D02* D03* X2873D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X2508Y4117D02* D03* X2608Y4118D02* D03* X2658Y4119D02* D03* X2689Y4063D02* D03* X2736Y4010D02* D03* X2804Y4013D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2743Y3892D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2778Y3579D02* D03* X2819Y3537D02* D03* X2818Y3477D02* D03* X2819Y3507D02* D03* X2745Y3506D02* D03* X2709Y3547D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2629Y3430D02* D03* Y3468D02* D03* X2664D02* D03* X2667Y3430D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2556Y3504D02* D03* X2592Y3505D02* D03* X2587Y3467D02* D03* X2556Y3464D02* D03* X2587Y3429D02* D03* X2556Y3425D02* D03* X2550Y3390D02* D03* X2514Y3387D02* D03* Y3424D02* D03* X2515Y3462D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2472Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2472D02* D03* X2357Y3308D02* D03* X2391Y3311D02* D03* Y3345D02* D03* X2357D02* D03* Y3424D02* D03* X2391Y3428D02* D03* Y3391D02* D03* X2356Y3388D02* D03* X2311Y3389D02* D03* X2277Y3349D02* D03* X2276Y3311D02* D03* X2312Y3272D02* D03* X2356Y3265D02* D03* X2354Y3231D02* D03* X2391Y3265D02* D03* X2435D02* D03* X2433Y3231D02* D03* X2390Y3193D02* D03* X2354Y3153D02* D03* Y3114D02* D03* X2391Y3115D02* D03* X2376Y3064D02* D03* X2311Y3114D02* D03* X2274Y3153D02* D03* X2119Y3364D02* D03* Y3431D02* D03* X2118Y3483D02* D03* X2117Y3518D02* D03* X2119Y3641D02* D03* X2272Y3631D02* D03* X2333Y3637D02* D03* X2318Y3578D02* D03* X2273Y3547D02* D03* X2278Y3463D02* D03* X2312Y3469D02* D03* X2357Y3466D02* D03* X2390Y3468D02* D03* Y3507D02* D03* X2357Y3502D02* D03* X2433Y3507D02* D03* X2472D02* D03* X2470Y3545D02* D03* X2512Y3547D02* D03* X2550Y3548D02* D03* X2551Y3582D02* D03* X2485Y3626D02* D03* X2454Y3638D02* D03* X2396D02* D03* X1729Y3706D02* D03* X1777Y3745D02* D03* X1809Y3776D02* D03* X1926Y3896D02* D03* X2036Y3887D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2481Y3776D02* D03* X2532D02* D03* X2555Y3742D02* D03* X2509Y3719D02* D03* X2612Y3651D02* D03* X2610Y3709D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2822Y3779D02* D03* X2855Y3758D02* D03* X2882Y3779D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3047D02* D03* X3093Y3747D02* D03* X3133Y3744D02* D03* X3095Y3684D02* D03* X3092Y3640D02* D03* X3047D02* D03* Y3684D02* D03* X2998D02* D03* X2992Y3640D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2896Y3658D02* D03* X2892Y3628D02* D03* X2965Y3492D02* D03* X3007Y3495D02* D03* X2994Y3531D02* D03* X3043Y3494D02* D03* X3051Y3443D02* D03* X3009D02* D03* X3097Y3485D02* D03* X3089Y3443D02* D03* X3140Y3442D02* D03* X3148Y3485D02* D03* X3196Y3487D02* D03* X3236Y3441D02* D03* X3248Y3486D02* D03* X3293D02* D03* X3288Y3442D02* D03* X3354D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3393Y3343D02* D03* X3351D02* D03* X3293Y3339D02* D03* X3247Y3340D02* D03* X3287Y3293D02* D03* X3245Y3292D02* D03* X3196Y3296D02* D03* X3146Y3286D02* D03* X3174Y3231D02* D03* X3202Y3217D02* D03* X3159Y3138D02* D03* X3119Y2969D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X2947Y2928D02* D03* X2875Y2885D02* D03* Y2834D02* D03* X2829Y2859D02* D03* X2875Y2785D02* D03* X2921Y2779D02* D03* X2925Y2735D02* D03* X2872Y2732D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X2875Y2636D02* D03* X2823Y2634D02* D03* X2824Y2685D02* D03* X2761Y2681D02* D03* X2699Y2671D02* D03* X2599Y2694D02* D03* X2600Y2658D02* D03* X2598Y2623D02* D03* X2599Y2534D02* D03* X2603Y2472D02* D03* X2601Y2427D02* D03* X2604Y2393D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2704Y2555D02* D03* X2501Y2225D02* D03* X2479Y2248D02* D03* X2386Y2243D02* D03* X2385Y2187D02* D03* X2332Y2184D02* D03* X2303Y2180D02* D03* X2280Y2212D02* D03* X2277Y2249D02* D03* X2212D02* D03* X2304Y2311D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2495Y2284D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2481Y2482D02* D03* X2482Y2531D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2093Y2676D02* D03* X2236Y2788D02* D03* X2178Y2786D02* D03* X2202Y2890D02* D03* X2261Y2894D02* D03* X2260Y2965D02* D03* X2224Y3044D02* D03* X2190Y3009D02* D03* X2131Y3010D02* D03* X2102Y2896D02* D03* X2104Y2818D02* D03* X2026Y2841D02* D03* X2039Y2790D02* D03* X1991Y2780D02* D03* X1861Y2625D02* D03* X1860Y2657D02* D03* X1832Y2771D02* D03* X1784Y2778D02* D03* X1788Y2820D02* D03* X1829Y2822D02* D03* X1857Y2939D02* D03* X1689Y2381D02* D03* X1738Y2507D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1901Y2550D02* D03* X1902Y2484D02* D03* X1904Y2445D02* D03* X1902Y2413D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1903Y2312D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1973Y2094D02* D03* X1902Y2092D02* D03* X2013Y2094D02* D03* X2032Y2183D02* D03* X2030Y2222D02* D03* X1999D02* D03* X1998Y2292D02* D03* X1990Y2335D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2213Y2184D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2280Y2095D02* D03* X2327Y2096D02* D03* X2377Y2061D02* D03* X2374Y2095D02* D03* X2413Y2093D02* D03* X2505Y2091D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2327Y1830D02* D03* X2265Y1915D02* D03* X2201Y1916D02* D03* X2188Y1812D02* D03* X2187Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* X2130Y1679D02* D03* X2188Y1612D02* D03* X2187Y1562D02* D03* Y1512D02* D03* X2168Y1466D02* D03* X2314Y1462D02* D03* X2315Y1413D02* D03* X2337Y1362D02* D03* X2314Y1312D02* D03* X2326Y1277D02* D03* X2315Y1193D02* D03* X2164Y1157D02* D03* X2188Y1243D02* D03* X2091Y1245D02* D03* X2186Y1283D02* D03* X2189Y1345D02* D03* X2187Y1381D02* D03* X2013Y1332D02* D03* X1970Y1398D02* D03* X2015Y1467D02* D03* X1978Y1562D02* D03* X2051Y1736D02* D03* X2091Y1756D02* D03* X2093Y1834D02* D03* X2027Y1915D02* D03* X1929Y1929D02* D03* X1877Y1915D02* D03* X1825Y1920D02* D03* X1854Y1876D02* D03* X1878Y1848D02* D03* X1646Y1817D02* D03* X1692Y1826D02* D03* X1698Y1788D02* D03* X1781Y1918D02* D03* X1677Y2025D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2876Y1831D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2767Y1679D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2910Y1671D02* D03* X2861Y1669D02* D03* X3083Y1892D02* D03* X3126Y1887D02* D03* X3121Y1938D02* D03* X3177Y1937D02* D03* X3173Y1983D02* D03* X3227D02* D03* X3226Y2040D02* D03* X3224Y2109D02* D03* X3268Y2142D02* D03* X3272Y2188D02* D03* X3322D02* D03* X3318Y2142D02* D03* X3316Y2244D02* D03* X3322Y2288D02* D03* X3318Y2342D02* D03* X3268D02* D03* X3272Y2288D02* D03* X3266Y2244D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3057Y2297D02* D03* X3067Y2343D02* D03* Y2393D02* D03* Y2443D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3064Y2544D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3132Y2728D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3232Y2592D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3278Y2839D02* D03* X3291Y2882D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3562Y2688D02* D03* X3379Y2685D02* D03* X3380Y2730D02* D03* X3425Y2736D02* D03* X3428Y2690D02* D03* X3421Y2640D02* D03* X3379Y2633D02* D03* X3475Y2645D02* D03* X3472Y2602D02* D03* X3533Y2539D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3413Y2467D02* D03* X3478Y2430D02* D03* X3422Y2188D02* D03* X3418Y2142D02* D03* X3368D02* D03* X3372Y2188D02* D03* Y2288D02* D03* X3366Y2244D02* D03* X3416D02* D03* X3422Y2288D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3472Y2188D02* D03* X3468Y2142D02* D03* X3544Y2137D02* D03* X3577Y2141D02* D03* X3633Y2143D02* D03* Y2093D02* D03* X3667Y1993D02* D03* X3675Y1935D02* D03* X3583Y1943D02* D03* X3633D02* D03* X3627Y1893D02* D03* X3623Y1831D02* D03* X3621Y1789D02* D03* X3717Y1743D02* D03* X3824Y1736D02* D03* X3867Y1743D02* D03* X3917Y1693D02* D03* X4008Y1759D02* D03* X3987Y1781D02* D03* X3965Y1802D02* D03* X3767Y1843D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3812Y1993D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X3866D02* D03* X3817D02* D03* X3767D02* D03* X3817Y2193D02* D03* X3767D02* D03* X3725Y2247D02* D03* X3817Y2348D02* D03* X3667Y2343D02* D03* X3571Y2342D02* D03* X3627Y2411D02* D03* X3632Y2439D02* D03* X3573Y2436D02* D03* X3552Y2459D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3583Y2539D02* D03* X3625Y2597D02* D03* X3623Y2635D02* D03* X3674Y2733D02* D03* X3767Y2727D02* D03* X3817Y2543D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4274Y4020D02* D03* X4266Y3852D02* D03* X4196Y3951D02* D03* X4126Y3848D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X3909Y3658D02* D03* X3941Y3623D02* D03* X3899Y3608D02* D03* X3955Y3558D02* D03* X3993Y3546D02* D03* X3995Y3605D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3798Y3772D02* D03* X3827Y3844D02* D03* X3794Y3846D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3693Y3993D02* D03* X3698Y4048D02* D03* X3751D02* D03* X3799Y4006D02* D03* X3831D02* D03* X3879Y3930D02* D03* X3909Y3933D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X4108Y4072D02* D03* X4081Y4187D02* D03* X3371Y3139D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3393D02* D03* X3350Y3387D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X3192Y3340D02* D03* X3144D02* D03* X3113Y3242D02* D03* X3092Y3220D02* D03* X3061Y3219D02* D03* X3003Y3163D02* D03* X2955Y3210D02* D03* X2994Y3286D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2899Y3410D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2898Y3505D02* D03* X2901Y3537D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* X3096D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3251Y3621D02* D03* X3282Y3622D02* D03* X3344Y3602D02* D03* X3392Y3604D02* D03* X3441D02* D03* X3445Y3670D02* D03* Y3719D02* D03* X3395D02* D03* X3394Y3670D02* D03* X3345Y3672D02* D03* X3342Y3719D02* D03* X3288D02* D03* X3206Y3720D02* D03* X3363Y3794D02* D03* X3425Y3798D02* D03* X3486Y3791D02* D03* X3523Y3765D02* D03* X3588Y3697D02* D03* X3647Y3640D02* D03* X3740Y3607D02* D03* X3703Y3553D02* D03* X3648Y3541D02* D03* Y3485D02* D03* X3647Y3441D02* D03* X3643Y3387D02* D03* X3646Y3341D02* D03* X3695D02* D03* X3747Y3340D02* D03* X3748Y3392D02* D03* X3698Y3396D02* D03* Y3441D02* D03* X3692Y3490D02* D03* X3748Y3486D02* D03* X3743Y3440D02* D03* X3792Y3445D02* D03* X3791Y3401D02* D03* X3855Y3367D02* D03* X3920Y3415D02* D03* X4001Y3383D02* D03* X3998Y3465D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4377Y3142D02* D03* X4369Y3218D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4701Y2806D02* D03* X4925Y2769D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X4634Y2494D02* D03* X4585D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4282D02* D03* X4234D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4223D02* D03* X4253D02* D03* X4281D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4835Y2014D02* D03* X4804D02* D03* X4771D02* D03* X4646D02* D03* X4615D02* D03* X4725Y1905D02* D03* X4680D02* D03* X4635D02* D03* X4491Y1871D02* D03* X4499Y1740D02* D03* X4390Y1625D02* D03* X4388Y1563D02* D03* X4356D02* D03* X4325D02* D03* X4294D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4420D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3310Y1242D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3215Y1235D02* D03* X3089Y1234D02* D03* X2994Y1233D02* D03* X2931Y1243D02* D03* X2868Y1238D02* D03* X2837Y1237D02* D03* X2774Y1240D02* D03* X2742Y1236D02* D03* X2711Y1237D02* D03* X2647Y1189D02* D03* X2596Y1288D02* D03* X2558Y1214D02* D03* X2476Y1210D02* D03* X2480Y1262D02* D03* X2472Y1312D02* D03* X2468Y1362D02* D03* X2471Y1412D02* D03* X2537Y1427D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2764Y1441D02* D03* X2853Y1443D02* D03* X3010D02* D03* X3105Y1446D02* D03* X3231D02* D03* X3205Y1582D02* D03* X3229Y1604D02* D03* X3151Y1667D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3275Y1735D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3390Y1579D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3423Y1697D02* D03* X3489Y1738D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3383Y1893D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3499Y2030D02* D03* X3434Y1990D02* D03* X3404Y1986D02* D03* X2463Y2790D02* D03* X2497D02* D03* X2522Y2857D02* D03* X2500Y2899D02* D03* X2473Y2873D02* D03* X2441Y2903D02* D03* X2411Y2885D02* D03* X2397Y2982D02* D03* X2445Y2980D02* D03* X2468Y3048D02* D03* X2530Y3047D02* D03* X2561Y3053D02* D03* X2546Y3079D02* D03* X2549Y3114D02* D03* X2470D02* D03* X2471Y3154D02* D03* X2587Y3152D02* D03* X2629D02* D03* Y3114D02* D03* X2617Y3067D02* D03* X2672Y3069D02* D03* Y3111D02* D03* X2673Y3147D02* D03* X2672Y3191D02* D03* Y3226D02* D03* X2629Y3192D02* D03* Y3227D02* D03* X2591D02* D03* X2589Y3194D02* D03* X2547Y3191D02* D03* X2514Y3236D02* D03* X2472Y3230D02* D03* Y3263D02* D03* Y3308D02* D03* X2438Y3307D02* D03* Y3344D02* D03* X2472Y3345D02* D03* X2514D02* D03* Y3308D02* D03* X2590Y3351D02* D03* X2589Y3308D02* D03* X2588Y3272D02* D03* X2630Y3271D02* D03* X2672Y3269D02* D03* X2714Y3268D02* D03* X2710Y3304D02* D03* X2746Y3310D02* D03* X2748Y3268D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* Y3109D02* D03* X2745Y3074D02* D03* X2718Y2979D02* D03* X2636Y2978D02* D03* X2585Y2979D02* D03* X2555Y2912D02* D03* X2570Y2867D02* D03* X2698Y2784D02* D03* X2757D02* D03* X2788D02* D03* X2825D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3413D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3688Y3027D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3590Y3440D02* D03* X3545D02* D03* Y3485D02* D03* X3591Y3497D02* D03* Y3548D02* D03* Y3589D02* D03* X3548Y3587D02* D03* X3542Y3554D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3551Y3799D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X6072Y3954D02* D03* X5974Y4010D02* D03* X5928Y3954D02* D03* X5838Y3847D02* D03* X5946Y3776D02* D03* X5975Y3810D02* D03* X6025D02* D03* X6079Y3732D02* D03* X6067Y3673D02* D03* X6019Y3664D02* D03* X5942Y3676D02* D03* X5879Y3689D02* D03* X5900Y3596D02* D03* X5948Y3565D02* D03* X5978Y3581D02* D03* X6123Y3420D02* D03* X6131Y3365D02* D03* X6099Y3154D02* D03* X6037Y3150D02* D03* X6054Y3359D02* D03* X6057Y3296D02* D03* X5947Y3258D02* D03* Y3300D02* D03* X5858Y3325D02* D03* X5827Y3128D02* D03* X5768Y3258D02* D03* Y3300D02* D03* X5770Y3389D02* D03* X5815Y3444D02* D03* X5763Y3498D02* D03* X5850Y3444D02* D03* X5881Y3442D02* D03* X5936Y3447D02* D03* X5979Y3472D02* D03* X6022Y3470D02* D03* X5692Y3231D02* D03* X5618D02* D03* X5542Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5378Y3300D02* D03* Y3258D02* D03* X5252Y3262D02* D03* X5175Y3207D02* D03* X5049Y3322D02* D03* X5091D02* D03* X5175Y3351D02* D03* X5252Y3336D02* D03* X5291Y3404D02* D03* X5275Y2769D02* D03* X5215Y2605D02* D03* X5450D02* D03* X5600D02* D03* X5690D02* D03* X5645D02* D03* X5625Y2769D02* D03* X5975D02* D03* X6182Y2787D02* D03* X6296Y2634D02* D03* X6363D02* D03* X6320Y2560D02* D03* X6280D02* D03* Y2520D02* D03* X6320D02* D03* Y2480D02* D03* X6280D02* D03* X6240D02* D03* Y2520D02* D03* Y2560D02* D03* X6195Y2480D02* D03* X6150D02* D03* X6100Y2560D02* D03* Y2520D02* D03* Y2480D02* D03* X6050D02* D03* Y2520D02* D03* Y2560D02* D03* X5975Y2436D02* D03* Y2390D02* D03* X5921D02* D03* Y2336D02* D03* Y2290D02* D03* X5975Y2336D02* D03* Y2290D02* D03* X6021D02* D03* Y2236D02* D03* Y2190D02* D03* X6075D02* D03* Y2236D02* D03* Y2336D02* D03* X6175D02* D03* Y2290D02* D03* X6221D02* D03* X6275D02* D03* X6321D02* D03* X6375D02* D03* Y2390D02* D03* X6370Y2480D02* D03* X6410D02* D03* X6475Y2436D02* D03* X6450Y2500D02* D03* Y2540D02* D03* X6500D02* D03* X6450Y2580D02* D03* Y2620D02* D03* X6760Y2877D02* D03* X6722D02* D03* X6671Y2876D02* D03* X6621Y2875D02* D03* Y2990D02* D03* Y3030D02* D03* X6671D02* D03* Y2991D02* D03* X6570Y3105D02* D03* X6620D02* D03* X6670D02* D03* X6725D02* D03* X6720Y2991D02* D03* X6719Y3030D02* D03* X6762D02* D03* X6761Y2991D02* D03* Y2955D02* D03* Y2917D02* D03* X6865Y2865D02* D03* X6970D02* D03* X6939Y2698D02* D03* X6885Y2696D02* D03* X6837Y2695D02* D03* X6781Y2693D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* X6781Y2565D02* D03* X6837D02* D03* X6885Y2564D02* D03* X6934D02* D03* X7018Y2569D02* D03* X7104Y2597D02* D03* Y2649D02* D03* X7119Y2623D02* D03* Y2571D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7118Y1219D02* D03* X7089Y1162D02* D03* Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X5018Y1446D02* D03* X5049Y1447D02* D03* X5081Y1439D02* D03* X5141Y1510D02* D03* X5253Y1622D02* D03* Y1697D02* D03* Y1772D02* D03* X5255Y1830D02* D03* X5220D02* D03* Y1865D02* D03* X5255D02* D03* X5270Y1910D02* D03* X5360D02* D03* Y1865D02* D03* X5150D02* D03* X5185D02* D03* Y1830D02* D03* X5150D02* D03* X5044Y1740D02* D03* X4945Y1905D02* D03* X4905D02* D03* X4860D02* D03* X4815D02* D03* X4770D02* D03* X4682Y1572D02* D03* X4771Y1564D02* D03* X4874Y1572D02* D03* X4929Y1565D02* D03* X4860Y1446D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5204Y1213D02* D03* X5211Y1277D02* D03* X5262Y1146D02* D03* X5344Y1139D02* D03* X5392D02* D03* X5344Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* X5736Y1263D02* D03* X5783D02* D03* Y1139D02* D03* X5736D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* Y1436D02* D03* X6275D02* D03* X6321Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121D02* D03* X6021Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X5921Y1390D02* D03* Y1436D02* D03* Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X6021D02* D03* Y1536D02* D03* X5975Y1590D02* D03* X6021D02* D03* Y1636D02* D03* Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* Y1740D02* D03* Y1786D02* D03* X6925D02* D03* X6971D02* D03* Y1740D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X7025D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X7025D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* X6971D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7025Y1340D02* D03* Y1386D02* D03* X6971D02* D03* Y1340D02* D03* X6925D02* D03* Y1386D02* D03* X6971Y1440D02* D03* X6925D02* D03* Y1486D02* D03* X6971D02* D03* X7025Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6571D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6214Y2109D02* D03* X6135Y2077D02* D03* Y2033D02* D03* X6021Y2090D02* D03* Y2136D02* D03* X6075D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975Y1790D02* D03* Y1836D02* D03* X6021D02* D03* Y1790D02* D03* X6075D02* D03* Y1836D02* D03* X6113D02* D03* X6126Y1791D02* D03* X6075Y1736D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6075Y1636D02* D03* Y1590D02* D03* Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5688Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5758Y1910D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X5876Y1590D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5921Y1890D02* D03* Y1936D02* D03* X5975D02* D03* Y1890D02* D03* X6021D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5975D02* D03* Y1990D02* D03* X5921D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2090D02* D03* Y2136D02* D03* X5921D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5832Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5803Y2324D02* D03* X5754Y2321D02* D03* X5704D02* D03* X5654D02* D03* X5625Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5654Y2189D02* D03* X5645Y2128D02* D03* X5681D02* D03* X5717D02* D03* X5704Y2189D02* D03* X5754D02* D03* X5415Y2321D02* D03* X5464Y2324D02* D03* X5493Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5473Y2128D02* D03* X5437D02* D03* X5401D02* D03* X5415Y2189D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5315Y2321D02* D03* X5365D02* D03* X5240Y2290D02* D03* Y2255D02* D03* Y2220D02* D03* X5162Y2128D02* D03* X5124D02* D03* X5087D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7119Y3130D02* D03* X7104Y3156D02* D03* X7119Y2984D02* D03* X7104Y3010D02* D03* X7119Y3036D02* D03* X7104Y3062D02* D03* X6920Y3105D02* D03* X6970Y3030D02* D03* Y2990D02* D03* X6865D02* D03* Y3030D02* D03* X6815Y3105D02* D03* X6775D02* D03* X6776Y3145D02* D03* Y3185D02* D03* X6815Y3230D02* D03* X6775D02* D03* X6776Y3270D02* D03* X6816D02* D03* X6921D02* D03* X6920Y3230D02* D03* X6726Y3270D02* D03* X6725Y3230D02* D03* X6670D02* D03* X6671Y3270D02* D03* X6621D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X7052Y2692D02* D03* X7051Y2722D02* D03* X7074Y2744D02* D03* X7104Y2742D02* D03* X7119Y2716D02* D03* Y2768D02* D03* X7104Y2794D02* D03* X7267Y2764D02* D03* X7258Y2850D02* D03* Y2882D02* D03* Y2913D02* D03* X7189Y2843D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7189Y2952D02* D03* X7258Y2945D02* D03* X7267Y3031D02* D03* X7293Y3132D02* D03* X7267Y3177D02* D03* Y3323D02* D03* Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* Y4051D02* D03* Y4197D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7143Y4126D02* D03* X7119Y4212D02* D03* X7117Y4244D02* D03* X7119Y4295D02* D03* X7104Y4321D02* D03* X7119Y4347D02* D03* X7104Y4373D02* D03* X7119Y4441D02* D03* X7104Y4467D02* D03* X7119Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X6992Y4433D02* D03* X6976Y4323D02* D03* X6906Y4217D02* D03* X6854Y4272D02* D03* X6850Y4213D02* D03* X6752Y4189D02* D03* X6656Y4220D02* D03* X6704Y4282D02* D03* X6574Y4365D02* D03* X6322Y4780D02* D03* X6440D02* D03* X6613Y4718D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6800D02* D03* X6850D02* D03* X6800Y4643D02* D03* X6850D02* D03* X6873Y4557D02* D03* X6750Y4643D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6700Y4850D02* D03* Y4888D02* D03* X6750D02* D03* Y4850D02* D03* X6800D02* D03* Y4888D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6903Y4718D02* D03* X6955Y4717D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7119Y4634D02* D03* X7110Y4681D02* D03* X7127Y4764D02* D03* X7244D02* D03* X7267Y4634D02* D03* Y4488D02* D03* Y4343D02* D03* D021* X1820Y4681D02* X1840D01* X1820Y4619D02* X1840D01* X1910D02* X1890D01* X1910Y4681D02* X1890D01* X1970D02* X1990D01* X1970Y4619D02* X1990D01* X2151Y3641D02* X2171D01* X2151Y3579D02* X2171D01* Y3519D02* X2151D01* X2171Y3457D02* X2151D01* Y3401D02* X2171D01* Y3339D02* X2151D01* Y3283D02* X2171D01* X2151Y3221D02* X2171D01* X2287Y3010D02* Y2990D01* Y2935D02* Y2915D01* Y2864D02* Y2844D01* X2225D02* Y2864D01* Y2915D02* Y2935D01* Y2990D02* Y3010D01* X2170Y2979D02* X2150D01* X2170Y3041D02* X2150D01* X2122Y2844D02* Y2864D01* X2060Y2844D02* Y2864D01* X1826Y2896D02* Y2876D01* X1764Y2896D02* Y2876D01* X1892Y2665D02* X1912D01* X1962D02* X1982D01* Y2603D02* X1962D01* X1912D02* X1892D01* X1939Y2452D02* X1959D01* X1939Y2390D02* X1959D01* X2037Y2394D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* Y2456D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2372Y1562D02* X2435D01* X2372Y1512D02* X2435D01* Y1462D02* X2372D01* X2435Y1412D02* X2372D01* X2435Y1362D02* X2372D01* X2435Y1312D02* X2372D01* X2435Y1262D02* X2372D01* X2435Y1212D02* X2372D01* X2219D02* X2282D01* X2219Y1262D02* X2282D01* X2219Y1312D02* X2282D01* X2219Y1362D02* X2282D01* X2219Y1412D02* X2282D01* X2219Y1462D02* X2282D01* Y1512D02* X2219D01* X2282Y1562D02* X2219D01* X2122Y1581D02* Y1561D01* X2060Y1581D02* Y1561D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* X3421Y1600D02* Y1620D01* X3359Y1600D02* Y1620D01* X2435Y1612D02* X2372D01* X2435Y1662D02* X2372D01* X2435Y1712D02* X2372D01* X2435Y1762D02* X2372D01* X2435Y1812D02* X2372D01* X2282Y1612D02* X2219D01* X2282Y1662D02* X2219D01* X2282Y1712D02* X2219D01* X2282Y1762D02* X2219D01* X2282Y1812D02* X2219D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984D02* Y1856D01* X1922Y1876D02* Y1856D01* X2185Y2128D02* Y2148D01* X2123Y2128D02* Y2148D01* X2125Y2203D02* Y2223D01* X2182D02* Y2203D01* X2244D02* Y2223D01* X2270Y2280D02* X2250D01* X2199D02* X2179D01* X2128D02* X2108D01* X2057D02* X2037D01* X2063Y2223D02* Y2203D01* X1982Y2123D02* X1962D01* X1912D02* X1892D01* Y2185D02* X1912D01* X1962D02* X1982D01* X1959Y2241D02* X1939D01* X1959Y2303D02* X1939D01* X2037Y2342D02* X2057D01* X2108D02* X2128D01* X2179D02* X2199D01* X2250D02* X2270D01* X2351Y2451D02* Y2431D01* X2413Y2451D02* Y2431D01* X2417Y2227D02* Y2207D01* Y2148D02* Y2128D01* X2355D02* Y2148D01* Y2207D02* Y2227D01* X2675Y2504D02* X2655D01* X2675Y2566D02* X2655D01* X2675Y2642D02* X2655D01* X2675Y2704D02* X2655D01* X3590Y3001D02* X3610D01* X3660D02* X3680D01* Y2939D02* X3660D01* X3610D02* X3590D01* X3320D02* X3300D01* X3320Y3001D02* X3300D01* X2850Y3489D02* X2870D01* X2850Y3551D02* X2870D01* X2850Y3609D02* X2870D01* X2850Y3671D02* X2870D01* X2850Y3859D02* X2830D01* X2780D02* X2760D01* Y3921D02* X2780D01* X2830D02* X2850D01* Y3979D02* X2830D01* X2777D02* X2757D01* Y4041D02* X2777D01* X2830D02* X2850D01* X3490Y4217D02* X3470D01* X3490Y4279D02* X3470D01* X4511Y3695D02* Y3675D01* X4449Y3695D02* Y3675D01* X4401D02* Y3695D01* X4339Y3675D02* Y3695D01* X3860Y3641D02* X3880D01* X3860Y3579D02* X3880D01* X3909Y3230D02* Y3210D01* X3971Y3230D02* Y3210D01* X3970Y3131D02* X3950D01* X3900D02* X3880D01* Y3069D02* X3900D01* X3950D02* X3970D01* Y3011D02* X3950D01* X3900D02* X3880D01* Y2949D02* X3900D01* X3950D02* X3970D01* X4154Y2640D02* Y2660D01* X4216Y2640D02* Y2660D01* X4312Y2640D02* Y2660D01* X4374Y2640D02* Y2660D01* X4414D02* Y2640D01* X4476Y2660D02* Y2640D01* X4970Y2472D02* X4990D01* X4970Y2410D02* X4990D01* X5799Y3379D02* Y3399D01* X5861Y3379D02* Y3399D01* X5838Y3801D02* Y3821D01* X5776Y3801D02* Y3821D01* X6626Y4258D02* Y4238D01* X6688Y4258D02* Y4238D01* X7154Y4774D02* Y4754D01* X7216Y4774D02* Y4754D01* X7162Y2856D02* Y2876D01* Y2919D02* Y2939D01* X7224D02* Y2919D01* Y2876D02* Y2856D01* Y1423D02* Y1443D01* Y1486D02* Y1506D01* X7162D02* Y1486D01* Y1443D02* Y1423D01* X6993Y1227D02* Y1207D01* X7055Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6993Y1156D02* Y1136D01* X6573Y1158D02* X6553D01* X6573Y1220D02* X6553D01* D381* X2049Y1699D02* X2053D01* D018* X1814Y4366D02* X1851D01* X1885Y4400D01* X1852Y4473D02* X1891D01* Y4510D01* X1852D02* X1891D01* Y4548D01* X1851D01* X2009Y4510D02* Y4462D01* X2035Y4436D01* Y4404D01* D01* Y4400D01* Y4404D02* Y4320D01* X2008Y4293D01* X1951D01* X1950Y4292D01* X1814Y4091D02* Y4011D01* X1885Y3940D01* X1950Y4048D02* X2018D01* Y4045D01* X2508Y3817D02* Y3865D01* X2558Y3817D02* Y3865D01* X2608Y3817D02* Y3865D01* X2658Y3817D02* Y3865D01* Y4041D02* Y4089D01* X2608Y4041D02* Y4089D01* X2558Y4041D02* Y4089D01* X2508Y4041D02* Y4089D01* D043* X2970Y4070D02* D03* X3020D02* D03* X3070D02* D03* X3120D02* D03* Y4020D02* D03* X3070D02* D03* Y3970D02* D03* X3120D02* D03* Y3920D02* D03* X3070D02* D03* Y3870D02* D03* X3020D02* D03* X2970D02* D03* Y3820D02* D03* Y3770D02* D03* X3020D02* D03* Y3820D02* D03* Y3920D02* D03* X2970D02* D03* Y3970D02* D03* Y4020D02* D03* X3020D02* D03* Y3970D02* D03* X3170Y4070D02* D03* X3220D02* D03* X3270D02* D03* X3320D02* D03* X3370D02* D03* X3470D02* D03* X3420D02* D03* Y4020D02* D03* Y3970D02* D03* Y3920D02* D03* X3370D02* D03* Y3870D02* D03* X3270D02* D03* Y3920D02* D03* X3320D02* D03* Y3970D02* D03* X3370D02* D03* Y4020D02* D03* X3320D02* D03* X3270D02* D03* Y3970D02* D03* X3220D02* D03* Y4020D02* D03* X3170D02* D03* Y3970D02* D03* Y3920D02* D03* X3220D02* D03* Y3870D02* D03* X3170D02* D03* Y3820D02* D03* Y3770D02* D03* X3120D02* D03* X3070D02* D03* Y3820D02* D03* X3120D02* D03* Y3870D02* D03* X2970Y3670D02* D03* Y3720D02* D03* X3020D02* D03* Y3670D02* D03* X3070D02* D03* Y3720D02* D03* X3120D02* D03* Y3670D02* D03* X3170D02* D03* X3320Y3720D02* D03* Y3670D02* D03* X3370D02* D03* Y3720D02* D03* X3420D02* D03* Y3670D02* D03* Y3620D02* D03* X3370D02* D03* X3320D02* D03* X3370Y3470D02* D03* Y3420D02* D03* X3320D02* D03* X3270D02* D03* Y3470D02* D03* X3220D02* D03* X3170D02* D03* Y3520D02* D03* Y3570D02* D03* X3120D02* D03* Y3620D02* D03* X3070D02* D03* Y3570D02* D03* X3020D02* D03* Y3620D02* D03* X2970D02* D03* Y3570D02* D03* Y3520D02* D03* X3020D02* D03* Y3470D02* D03* X2970D02* D03* X3070D02* D03* Y3520D02* D03* X3120D02* D03* Y3470D02* D03* Y3420D02* D03* X3070D02* D03* Y3370D02* D03* X3120D02* D03* Y3320D02* D03* X3070D02* D03* Y3270D02* D03* X3120D02* D03* X3020D02* D03* Y3320D02* D03* X2970D02* D03* Y3270D02* D03* Y3370D02* D03* Y3420D02* D03* X3020D02* D03* Y3370D02* D03* X3170D02* D03* Y3420D02* D03* X3220D02* D03* Y3370D02* D03* X3270D02* D03* X3320D02* D03* X3370D02* D03* X3420Y3420D02* D03* Y3370D02* D03* X3370Y3320D02* D03* X3420D02* D03* Y3270D02* D03* X3370D02* D03* X3320D02* D03* Y3320D02* D03* X3270D02* D03* Y3270D02* D03* X3220D02* D03* Y3320D02* D03* X3170D02* D03* Y3270D02* D03* D018* X3560Y4446D02* Y4237D01* X3670Y4127D01* Y4070D01* D043* D03* X3720D02* D03* X3570Y4020D02* D03* X3520D02* D03* X3470D02* D03* Y3970D02* D03* Y3920D02* D03* X3520D02* D03* Y3970D02* D03* X3570D02* D03* X3620D02* D03* Y4020D02* D03* Y4070D02* D03* X3570D02* D03* X3520D02* D03* X3470Y3870D02* D03* X3520D02* D03* X3570D02* D03* Y3820D02* D03* X3620D02* D03* Y3870D02* D03* X3570Y3920D02* D03* X3620D02* D03* X3670D02* D03* Y3970D02* D03* Y4020D02* D03* X3720D02* D03* Y3970D02* D03* Y3920D02* D03* Y3870D02* D03* X3670D02* D03* Y3820D02* D03* X3720D02* D03* Y3770D02* D03* X3670D02* D03* X3620D02* D03* X3570D02* D03* X3620Y3720D02* D03* X3670D02* D03* Y3670D02* D03* Y3620D02* D03* Y3570D02* D03* X3620D02* D03* Y3520D02* D03* X3570D02* D03* Y3570D02* D03* X3620Y3620D02* D03* Y3670D02* D03* X3570D02* D03* X3720Y3570D02* D03* Y3620D02* D03* Y3670D02* D03* Y3720D02* D03* X3770Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* Y3920D02* D03* Y3970D02* D03* Y4020D02* D03* Y4070D02* D03* Y3720D02* D03* Y3670D02* D03* Y3620D02* D03* Y3570D02* D03* Y3520D02* D03* Y3470D02* D03* X3720D02* D03* Y3520D02* D03* X3670D02* D03* Y3470D02* D03* X3620D02* D03* X3570D02* D03* X3520D02* D03* X3470D02* D03* Y3370D02* D03* Y3420D02* D03* X3520D02* D03* X3570D02* D03* X3620D02* D03* Y3370D02* D03* X3570D02* D03* X3520D02* D03* Y3320D02* D03* X3470D02* D03* Y3270D02* D03* X3520D02* D03* X3570D02* D03* X3620D02* D03* X3570Y3320D02* D03* X3620D02* D03* X3670D02* D03* Y3270D02* D03* X3720D02* D03* Y3320D02* D03* Y3370D02* D03* Y3420D02* D03* X3670D02* D03* Y3370D02* D03* X3770Y3270D02* D03* Y3320D02* D03* Y3370D02* D03* Y3420D02* D03* D018* X3920Y3415D02* D01* D043* X3600Y2810D02* D03* X3550D02* D03* Y2760D02* D03* X3500D02* D03* Y2810D02* D03* X3450D02* D03* Y2760D02* D03* Y2710D02* D03* X3500D02* D03* X3550D02* D03* X3600D02* D03* Y2760D02* D03* X3650D02* D03* Y2810D02* D03* X3700D02* D03* Y2760D02* D03* Y2710D02* D03* X3650D02* D03* X3750Y2810D02* D03* X3800D02* D03* Y2760D02* D03* X3750D02* D03* Y2710D02* D03* X3800D02* D03* Y2660D02* D03* X3850D02* D03* Y2610D02* D03* X3900D02* D03* Y2660D02* D03* Y2710D02* D03* X3850D02* D03* Y2760D02* D03* Y2810D02* D03* X3900D02* D03* Y2760D02* D03* Y2160D02* D03* Y2210D02* D03* Y2260D02* D03* X3850D02* D03* Y2210D02* D03* Y2160D02* D03* X3800D02* D03* Y2210D02* D03* X3750D02* D03* Y2160D02* D03* X3700Y2110D02* D03* Y2060D02* D03* X3650D02* D03* Y2110D02* D03* Y2160D02* D03* X3700D02* D03* Y2210D02* D03* Y2260D02* D03* Y2310D02* D03* X3750Y2260D02* D03* X3800D02* D03* X3850Y2310D02* D03* Y2360D02* D03* Y2410D02* D03* X3900D02* D03* Y2360D02* D03* Y2310D02* D03* X3850Y2460D02* D03* X3900D02* D03* Y2560D02* D03* Y2510D02* D03* X3850D02* D03* Y2560D02* D03* X3800Y2510D02* D03* Y2560D02* D03* X3750D02* D03* Y2510D02* D03* Y2460D02* D03* X3800D02* D03* Y2410D02* D03* Y2360D02* D03* Y2310D02* D03* X3750D02* D03* Y2360D02* D03* Y2410D02* D03* X3650D02* D03* Y2360D02* D03* X3700D02* D03* Y2410D02* D03* Y2460D02* D03* X3650D02* D03* Y2510D02* D03* Y2560D02* D03* X3700D02* D03* Y2510D02* D03* X3800Y2610D02* D03* X3750D02* D03* Y2660D02* D03* X3700D02* D03* Y2610D02* D03* X3650D02* D03* Y2660D02* D03* X3600D02* D03* Y2610D02* D03* X3550D02* D03* Y2660D02* D03* X3500D02* D03* Y2610D02* D03* X3600Y2560D02* D03* X3550D02* D03* X3500D02* D03* X3450D02* D03* Y2610D02* D03* Y2660D02* D03* X3400D02* D03* Y2610D02* D03* X3350D02* D03* Y2660D02* D03* X3300D02* D03* Y2610D02* D03* X3250D02* D03* Y2660D02* D03* X3200D02* D03* Y2710D02* D03* X3250D02* D03* X3300D02* D03* X3350Y2810D02* D03* X3400D02* D03* Y2760D02* D03* Y2710D02* D03* X3350D02* D03* Y2760D02* D03* X3300D02* D03* Y2810D02* D03* X3250D02* D03* Y2760D02* D03* X3200D02* D03* Y2810D02* D03* X3150D02* D03* Y2760D02* D03* X3250Y2560D02* D03* X3200D02* D03* Y2610D02* D03* X3150D02* D03* Y2560D02* D03* X3100D02* D03* X3050D02* D03* Y2510D02* D03* X3000D02* D03* Y2560D02* D03* X2950D02* D03* Y2510D02* D03* X2900D02* D03* Y2560D02* D03* X2800Y2510D02* D03* Y2560D02* D03* X2850D02* D03* Y2510D02* D03* X2900Y2460D02* D03* Y2410D02* D03* X2950D02* D03* Y2460D02* D03* X3000D02* D03* X3050D02* D03* Y2410D02* D03* X3000D02* D03* X3050Y2360D02* D03* X3000D02* D03* Y2310D02* D03* X2950Y2360D02* D03* Y2310D02* D03* X2900D02* D03* Y2360D02* D03* X2850Y2410D02* D03* Y2460D02* D03* X2800D02* D03* Y2410D02* D03* X3000Y2610D02* D03* X2950D02* D03* Y2660D02* D03* X2900D02* D03* Y2610D02* D03* X2850D02* D03* X2800D02* D03* Y2710D02* D03* Y2660D02* D03* X2850D02* D03* Y2710D02* D03* X2900D02* D03* X2950D02* D03* X3000D02* D03* Y2660D02* D03* X3050D02* D03* Y2610D02* D03* X3100D02* D03* Y2660D02* D03* X3150D02* D03* Y2710D02* D03* X3050D02* D03* X3100D02* D03* Y2760D02* D03* Y2810D02* D03* X3050D02* D03* Y2760D02* D03* X3000D02* D03* Y2810D02* D03* X2950D02* D03* Y2760D02* D03* X2900D02* D03* Y2810D02* D03* X2850D02* D03* Y2760D02* D03* X2800D02* D03* Y2810D02* D03* D018* X2252Y2734D02* X2087D01* Y2788D01* X2059Y2816D01* Y2854D01* X2026Y2841D02* X2039Y2854D01* X2059D01* X2060D01* X2059D02* D01* Y2901D01* X2083Y2925D01* X2225D01* X1857Y2939D02* X1830Y2912D01* Y2890D01* X1764Y2886D02* Y2845D01* X1788Y2821D01* Y2820D01* X1829Y2822D02* X1826Y2825D01* Y2886D01* X1830Y2890D01* X1921D01* Y2772D02* Y2771D01* X1832D01* X1825Y2540D02* X1854Y2511D01* Y2437D01* X1730Y2260D02* X1653Y2337D01* Y2389D01* X1736Y2437D02* X1689D01* X1653Y2389D02* X1605Y2437D01* X1539D01* X1781Y1918D02* X1799Y1900D01* Y1874D01* X1877Y1915D02* X1866Y1926D01* Y1969D01* X1730Y2142D02* Y2061D01* X1716Y2047D01* X1717Y1969D02* X1716Y1968D01* Y2047D01* X1677Y2025D02* X1628Y1976D01* X1622D01* Y1866D02* X1646D01* X1712D01* X1720Y1875D01* Y1874D01* Y1883D02* Y1875D01* Y1874D02* Y1854D01* X1692Y1826D01* X1646Y1866D02* Y1817D01* Y1627D01* X1786Y1487D01* Y1390D01* X1839Y1310D02* Y1354D01* X1826Y1367D01* X1809D01* X1786Y1390D01* X2041Y1632D02* X2061D01* X2120D02* X2140D01* X2120Y1707D02* X2140D01* X2098Y1167D02* X2031D01* X1995Y1131D01* X1944D01* X1913Y1162D01* X1839D01* D01* X2711Y1150D02* Y1208D01* X2679Y1150D02* Y1208D01* X2742D02* Y1150D01* X2774Y1208D02* Y1150D01* X2805Y1208D02* Y1150D01* X2837Y1208D02* Y1150D01* X2868Y1208D02* Y1150D01* X2931D02* Y1208D01* X2900Y1150D02* Y1208D01* X2994Y1150D02* Y1208D01* X2963Y1150D02* Y1208D01* X3026D02* Y1150D01* X3057Y1208D02* Y1150D01* X3089Y1208D02* Y1150D01* X3120Y1208D02* Y1150D01* X3152Y1208D02* Y1150D01* X3215D02* Y1208D01* X3183Y1150D02* Y1208D01* X3278Y1150D02* Y1208D01* X3246Y1150D02* Y1208D01* X3309D02* Y1150D01* X3341Y1208D02* Y1150D01* X3372Y1208D02* Y1150D01* X3404Y1208D02* Y1150D01* X3435Y1208D02* Y1150D01* X3498D02* Y1208D01* X3467Y1150D02* Y1208D01* X3530D02* Y1150D01* X3561Y1208D02* Y1150D01* X3593Y1208D02* Y1150D01* X3774Y1208D02* Y1150D01* X3805Y1208D02* Y1150D01* X3837Y1208D02* Y1150D01* X3900D02* Y1208D01* X3868Y1150D02* Y1208D01* X3963Y1150D02* Y1208D01* X3931Y1150D02* Y1208D01* X3994D02* Y1150D01* X4026Y1208D02* Y1150D01* X4057Y1208D02* Y1150D01* X4089Y1208D02* Y1150D01* X4120Y1208D02* Y1150D01* X4183D02* Y1208D01* X4152Y1150D02* Y1208D01* X4246Y1150D02* Y1208D01* X4215Y1150D02* Y1208D01* X4278D02* Y1150D01* X4309Y1208D02* Y1150D01* X4341Y1208D02* Y1150D01* X4372Y1208D02* Y1150D01* X4404Y1208D02* Y1150D01* X4467D02* Y1208D01* X4435Y1150D02* Y1208D01* X4530Y1150D02* Y1208D01* X4498Y1150D02* Y1208D01* X4561D02* Y1150D01* X4593Y1208D02* Y1150D01* X4624Y1208D02* Y1150D01* X4656Y1208D02* Y1150D01* X4687Y1208D02* Y1150D01* X4750D02* Y1208D01* X4719Y1150D02* Y1208D01* X4782D02* Y1150D01* X4813Y1208D02* Y1150D01* X4845Y1208D02* Y1150D01* X4908D02* Y1208D01* X4876Y1150D02* Y1208D01* X4971Y1150D02* Y1208D01* X4939Y1150D02* Y1208D01* X5002D02* Y1150D01* X5034Y1208D02* Y1150D01* X5065Y1208D02* Y1150D01* X5081Y1472D02* Y1530D01* X5049Y1472D02* Y1530D01* X5018Y1472D02* Y1530D01* X4986Y1472D02* Y1530D01* X4955Y1472D02* Y1530D01* X4923Y1472D02* Y1530D01* X4860D02* Y1472D01* X4892Y1530D02* Y1472D01* X4829D02* Y1530D01* X4797Y1472D02* Y1530D01* X4766Y1472D02* Y1530D01* X4734Y1472D02* Y1530D01* X4703Y1472D02* Y1530D01* X4640D02* Y1472D01* X4671Y1530D02* Y1472D01* X4577Y1530D02* Y1472D01* X4609Y1530D02* Y1472D01* X4546D02* Y1530D01* X4514Y1472D02* Y1530D01* X4483Y1472D02* Y1530D01* X4451Y1472D02* Y1530D01* X4420Y1472D02* Y1530D01* X4357D02* Y1472D01* X4388Y1530D02* Y1472D01* X4294Y1530D02* Y1472D01* X4325Y1530D02* Y1472D01* X4262D02* Y1530D01* X4231Y1472D02* Y1530D01* X4199Y1472D02* Y1530D01* X4168Y1472D02* Y1530D01* X4136Y1472D02* Y1530D01* X4073D02* Y1472D01* X4105Y1530D02* Y1472D01* X4010Y1530D02* Y1472D01* X4042Y1530D02* Y1472D01* X3979D02* Y1530D01* X3947Y1472D02* Y1530D01* X3916Y1472D02* Y1530D01* X3853D02* Y1472D01* X3884Y1530D02* Y1472D01* X3821D02* Y1530D01* X3790Y1472D02* Y1530D01* X3609Y1472D02* Y1530D01* X3577Y1472D02* Y1530D01* X3546Y1472D02* Y1530D01* X3514Y1472D02* Y1530D01* X3483Y1472D02* Y1530D01* X3451Y1472D02* Y1530D01* X3388D02* Y1472D01* X3420Y1530D02* Y1472D01* X3325Y1530D02* Y1472D01* X3357Y1530D02* Y1472D01* X3294D02* Y1530D01* X3262Y1472D02* Y1530D01* X3231Y1472D02* Y1530D01* X3199Y1472D02* Y1530D01* X3168Y1472D02* Y1530D01* X3105D02* Y1472D01* X3136Y1530D02* Y1472D01* X3042Y1530D02* Y1472D01* X3073Y1530D02* Y1472D01* X3010D02* Y1530D01* X2979Y1472D02* Y1530D01* X2947Y1472D02* Y1530D01* X2916Y1472D02* Y1530D01* X2884Y1472D02* Y1530D01* X2821D02* Y1472D01* X2853Y1530D02* Y1472D01* X2758Y1530D02* Y1472D01* X2790Y1530D02* Y1472D01* X2727D02* Y1530D01* X2695Y1472D02* Y1530D01* D043* X3600Y1760D02* D03* X3550D02* D03* X3500D02* D03* X3450D02* D03* Y1810D02* D03* X3400D02* D03* Y1760D02* D03* X3350D02* D03* Y1810D02* D03* X3300D02* D03* Y1860D02* D03* X3250D02* D03* X3200D02* D03* Y1960D02* D03* Y1910D02* D03* X3250D02* D03* Y1960D02* D03* X3300Y1910D02* D03* X3350D02* D03* Y1860D02* D03* X3400D02* D03* Y1910D02* D03* X3450D02* D03* Y1860D02* D03* X3500D02* D03* Y1810D02* D03* X3550D02* D03* Y1860D02* D03* X3600D02* D03* Y1810D02* D03* X3650D02* D03* Y1760D02* D03* X3700D02* D03* Y1810D02* D03* X3800D02* D03* Y1760D02* D03* X3750D02* D03* Y1810D02* D03* Y1860D02* D03* X3800D02* D03* Y1910D02* D03* X3750D02* D03* Y1960D02* D03* Y2010D02* D03* X3800D02* D03* Y1960D02* D03* X3850D02* D03* Y2010D02* D03* X3900D02* D03* Y2060D02* D03* Y2110D02* D03* X3850D02* D03* Y2060D02* D03* X3800D02* D03* Y2110D02* D03* X3750D02* D03* Y2060D02* D03* X3700Y2010D02* D03* X3650D02* D03* Y1960D02* D03* X3700D02* D03* Y1910D02* D03* Y1860D02* D03* X3650D02* D03* Y1910D02* D03* X3600D02* D03* Y1960D02* D03* X3550D02* D03* Y1910D02* D03* X3500D02* D03* Y1960D02* D03* X3450D02* D03* Y2160D02* D03* Y2210D02* D03* X3400D02* D03* Y2160D02* D03* X3350D02* D03* Y2210D02* D03* Y2260D02* D03* X3400D02* D03* X3450D02* D03* Y2310D02* D03* Y2360D02* D03* X3400Y2310D02* D03* Y2360D02* D03* X3350D02* D03* Y2310D02* D03* X3300D02* D03* Y2360D02* D03* X3250D02* D03* Y2310D02* D03* X3300Y2210D02* D03* Y2260D02* D03* X3250D02* D03* Y2210D02* D03* Y2160D02* D03* X3300D02* D03* X3050Y2060D02* D03* Y2110D02* D03* Y2160D02* D03* X3000Y2210D02* D03* Y2260D02* D03* X2950D02* D03* Y2210D02* D03* X2900D02* D03* Y2260D02* D03* X2800Y2310D02* D03* Y2360D02* D03* X2850D02* D03* Y2310D02* D03* Y2260D02* D03* X2800D02* D03* Y2210D02* D03* Y2160D02* D03* Y2110D02* D03* X2850D02* D03* Y2160D02* D03* Y2210D02* D03* X2900Y2160D02* D03* Y2110D02* D03* X2950D02* D03* Y2160D02* D03* X3000D02* D03* Y2110D02* D03* Y2060D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* X2800D02* D03* X2900Y1910D02* D03* X2950D02* D03* X3000D02* D03* Y1860D02* D03* X2950D02* D03* Y1810D02* D03* X2900D02* D03* Y1860D02* D03* X2850D02* D03* Y1910D02* D03* X2800D02* D03* Y1860D02* D03* Y1960D02* D03* Y2010D02* D03* X2850D02* D03* Y1960D02* D03* X2900D02* D03* Y2010D02* D03* X2950D02* D03* Y1960D02* D03* X3000D02* D03* Y2010D02* D03* X3050D02* D03* Y1960D02* D03* X3100D02* D03* X3150D02* D03* Y1910D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* Y1710D02* D03* X3100D02* D03* X3050D02* D03* X3000D02* D03* X2950D02* D03* X2900D02* D03* X2850D02* D03* X2800D02* D03* Y1760D02* D03* Y1810D02* D03* X2850D02* D03* Y1760D02* D03* X2900D02* D03* X2950D02* D03* X3000D02* D03* Y1810D02* D03* X3050D02* D03* Y1860D02* D03* Y1910D02* D03* X3100D02* D03* Y1860D02* D03* Y1810D02* D03* Y1760D02* D03* X3050D02* D03* X3300D02* D03* X3250D02* D03* Y1810D02* D03* X3200D02* D03* Y1760D02* D03* Y1710D02* D03* X3250D02* D03* X3300D02* D03* X3350D02* D03* X3400D02* D03* X3450D02* D03* X3500D02* D03* X3550D02* D03* X3600D02* D03* X3650D02* D03* X3700D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3900D02* D03* Y1760D02* D03* X3850D02* D03* Y1810D02* D03* X3900D02* D03* Y1860D02* D03* X3850D02* D03* Y1910D02* D03* X3900D02* D03* Y1960D02* D03* D018* X4998Y3999D02* X5031D01* X4998Y3909D02* X5031D01* X5027Y3804D02* Y3803D01* X4992D01* X5031Y3694D02* Y3671D01* X5049Y3652D01* X5091D02* X5109Y3671D01* Y3694D01* X5188Y3803D02* X5153D01* Y3804D01* X5109Y3909D02* X5142D01* X5109Y3999D02* X5142D01* X5155Y4066D02* X5133D01* X5109Y4090D01* X5105Y4164D02* X5133Y4192D01* X5155D01* X5206Y4230D02* X5224Y4249D01* X5245D01* Y4170D02* X5266D01* X5284Y4188D01* X5291Y4230D02* X5309Y4249D01* X5330D01* Y4170D02* X5351D01* X5369Y4188D01* X5390Y4226D02* X5416Y4252D01* X5430D01* X5470Y4152D02* X5444Y4126D01* X5430D01* X5590Y4249D02* X5614D01* X5629Y4233D01* Y4195D02* X5604Y4170D01* X5590D01* X5690D02* D01* X5713D01* X5730Y4187D01* X5729Y4232D02* X5713Y4249D01* X5690D01* X5830Y4126D02* X5852D01* X5876Y4150D01* X5830Y4252D02* X5852D01* X5880Y4224D01* X5941Y4235D02* X5953D01* X5966Y4249D01* X5985D01* X6016Y4132D02* X6043Y4105D01* Y4089D01* X6039Y3954D02* X6072D01* X6039Y3854D02* Y3830D01* X6025Y3815D01* Y3810D01* X6043Y3734D02* Y3732D01* X6079D01* X5917Y3734D02* Y3747D01* X5946Y3776D01* X5975Y3810D02* Y3815D01* X5961Y3830D01* Y3854D01* X5928Y3954D02* X5961D01* X6039Y3619D02* Y3644D01* X6019Y3664D01* X5961Y3619D02* Y3599D01* X5978Y3581D01* X5961Y3514D02* Y3491D01* X5979Y3472D01* X6022Y3470D02* X6039Y3488D01* Y3514D01* X6010Y3397D02* X6023D01* X6054Y3366D01* Y3359D01* X6057Y3296D02* X6032Y3271D01* X6010D01* X5905Y3240D02* X5929D01* X5947Y3258D01* Y3300D02* X5929Y3319D01* X5905D01* X5810D02* X5786D01* X5768Y3300D01* Y3258D02* X5786Y3240D01* X5810D01* X5718Y3274D02* Y3257D01* X5692Y3231D01* X5618D02* X5592Y3257D01* Y3274D01* X5500Y3240D02* X5524D01* X5542Y3258D01* Y3300D02* X5524Y3319D01* X5500D01* X5420D02* X5396D01* X5378Y3300D01* X5420Y3240D02* X5396D01* X5378Y3258D01* X5295Y3236D02* X5278D01* X5252Y3262D01* X5175Y3240D02* Y3207D01* X5295Y3362D02* X5278D01* X5252Y3336D01* X5175Y3319D02* Y3351D01* X5109Y3364D02* Y3341D01* X5091Y3322D01* X5049D02* X5031Y3341D01* Y3364D01* X4992Y3478D02* X5027D01* Y3479D01* X5049Y3557D02* X5031Y3576D01* Y3599D01* X5091Y3557D02* X5109Y3576D01* Y3599D01* X5153Y3479D02* Y3478D01* X5188D01* X5498Y1960D02* X5525D01* X5620D02* X5593D01* X5620D02* X5649D01* X5681Y1992D01* Y2059D01* D043* X5911Y2116D02* D03* Y2166D02* D03* X5961D02* D03* Y2216D02* D03* Y2266D02* D03* X5911D02* D03* Y2216D02* D03* X6011Y2066D02* D03* Y2016D02* D03* X5961D02* D03* X5911D02* D03* Y2066D02* D03* X5961D02* D03* Y2116D02* D03* X6011D02* D03* Y2166D02* D03* Y2216D02* D03* Y2266D02* D03* X5911Y2316D02* D03* X5961D02* D03* X6011D02* D03* Y2366D02* D03* Y2416D02* D03* X5961D02* D03* Y2366D02* D03* X5911D02* D03* Y2416D02* D03* X6161Y2266D02* D03* X6211D02* D03* X6261D02* D03* X6311D02* D03* X6361D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* Y2316D02* D03* X6511D02* D03* X6461D02* D03* X6411D02* D03* X6361D02* D03* X6311D02* D03* Y2366D02* D03* Y2416D02* D03* X6361D02* D03* Y2366D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* Y2416D02* D03* X6511D02* D03* X6461D02* D03* X6411D02* D03* X6261D02* D03* Y2366D02* D03* Y2316D02* D03* X6211D02* D03* X6161D02* D03* Y2366D02* D03* Y2416D02* D03* X6211D02* D03* Y2366D02* D03* X6111D02* D03* Y2416D02* D03* X6061D02* D03* Y2366D02* D03* Y2316D02* D03* X6111D02* D03* Y2266D02* D03* X6061D02* D03* Y2216D02* D03* Y2166D02* D03* Y2116D02* D03* Y2066D02* D03* Y2016D02* D03* Y1966D02* D03* Y1916D02* D03* Y1866D02* D03* Y1816D02* D03* Y1766D02* D03* Y1716D02* D03* X5961Y1816D02* D03* X5911D02* D03* Y1866D02* D03* X5961D02* D03* Y1916D02* D03* X5911D02* D03* Y1966D02* D03* X5961D02* D03* X6011D02* D03* Y1916D02* D03* Y1866D02* D03* Y1816D02* D03* Y1766D02* D03* Y1716D02* D03* X5961D02* D03* Y1766D02* D03* X5911D02* D03* Y1716D02* D03* Y1616D02* D03* Y1666D02* D03* X5961D02* D03* Y1616D02* D03* Y1566D02* D03* X5911D02* D03* Y1516D02* D03* X6011Y1466D02* D03* Y1416D02* D03* X5961D02* D03* X5911D02* D03* Y1466D02* D03* X5961D02* D03* Y1516D02* D03* X6011D02* D03* Y1566D02* D03* Y1616D02* D03* Y1666D02* D03* X6061D02* D03* Y1616D02* D03* Y1566D02* D03* Y1516D02* D03* Y1466D02* D03* Y1416D02* D03* X6111D02* D03* Y1466D02* D03* X6161Y1416D02* D03* Y1466D02* D03* X6211D02* D03* Y1416D02* D03* X6261D02* D03* Y1466D02* D03* X6311Y1416D02* D03* Y1466D02* D03* X6361D02* D03* Y1416D02* D03* X6411D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* Y1466D02* D03* X6511D02* D03* X6461D02* D03* X6411D02* D03* Y1366D02* D03* X6461D02* D03* X6511D02* D03* X6561D02* D03* Y1316D02* D03* X6511D02* D03* X6461D02* D03* X6411D02* D03* X6361D02* D03* Y1366D02* D03* X6311D02* D03* Y1316D02* D03* X6261D02* D03* Y1366D02* D03* X6211Y1316D02* D03* Y1366D02* D03* X6161D02* D03* Y1316D02* D03* X6111Y1366D02* D03* Y1316D02* D03* X6061D02* D03* Y1366D02* D03* X6011D02* D03* Y1316D02* D03* X5961D02* D03* Y1366D02* D03* X5911D02* D03* Y1316D02* D03* X6911Y1566D02* D03* X6961D02* D03* X7011D02* D03* Y1616D02* D03* Y1666D02* D03* X6961D02* D03* Y1616D02* D03* X6911D02* D03* Y1666D02* D03* X7011Y1716D02* D03* Y1766D02* D03* X6961D02* D03* Y1716D02* D03* X6911D02* D03* Y1766D02* D03* Y1816D02* D03* X6961D02* D03* X7011D02* D03* X6911Y1866D02* D03* Y1916D02* D03* X6961D02* D03* Y1866D02* D03* X7011D02* D03* Y1916D02* D03* Y1966D02* D03* X6961D02* D03* X6911D02* D03* X6961Y2066D02* D03* Y2116D02* D03* X6911D02* D03* Y2066D02* D03* Y2016D02* D03* X6961D02* D03* X7011D02* D03* Y2066D02* D03* Y2116D02* D03* Y2166D02* D03* X6961D02* D03* X6911D02* D03* X6961Y2366D02* D03* Y2316D02* D03* X6911D02* D03* Y2366D02* D03* Y2416D02* D03* X6961D02* D03* X7011D02* D03* Y2366D02* D03* Y2316D02* D03* Y2216D02* D03* Y2266D02* D03* X6961D02* D03* Y2216D02* D03* X6911D02* D03* Y2266D02* D03* X6861Y2316D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* X6661D02* D03* X6611D02* D03* Y2366D02* D03* Y2416D02* D03* X6661D02* D03* Y2366D02* D03* X6711D02* D03* X6761D02* D03* X6811D02* D03* X6861D02* D03* Y2416D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* X6611Y2266D02* D03* X6661D02* D03* X6711D02* D03* X6761D02* D03* X6811D02* D03* X6861D02* D03* Y2216D02* D03* Y2166D02* D03* Y2116D02* D03* Y2066D02* D03* Y2016D02* D03* Y1966D02* D03* Y1916D02* D03* Y1866D02* D03* Y1816D02* D03* Y1766D02* D03* Y1716D02* D03* Y1666D02* D03* Y1616D02* D03* Y1566D02* D03* Y1516D02* D03* Y1466D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* Y1366D02* D03* X6761D02* D03* X6811D02* D03* X6861D02* D03* Y1316D02* D03* X6811D02* D03* X6761D02* D03* X6711D02* D03* X6661D02* D03* Y1366D02* D03* X6611D02* D03* Y1316D02* D03* Y1416D02* D03* Y1466D02* D03* X6661D02* D03* Y1416D02* D03* X6711D02* D03* X6761D02* D03* X6811D02* D03* X6861D02* D03* X6911D02* D03* X6961D02* D03* X7011D02* D03* Y1516D02* D03* Y1466D02* D03* X6961D02* D03* Y1516D02* D03* X6911D02* D03* Y1466D02* D03* Y1366D02* D03* Y1316D02* D03* X6961D02* D03* Y1366D02* D03* X7011D02* D03* Y1316D02* D03* D370* X2764Y1402D02* D03* X2758Y1470D02* D03* X2726D02* D03* X2789Y1471D02* D03* X2820D02* D03* X2884D02* D03* X2916Y1472D02* D03* X2947D02* D03* X2950Y1421D02* D03* X2900Y1376D02* D03* X3032Y1427D02* D03* X3058Y1444D02* D03* X3042Y1472D02* D03* X3076D02* D03* X3084Y1424D02* D03* X3121Y1398D02* D03* X3138Y1380D02* D03* X3155Y1358D02* D03* X3324Y1562D02* D03* X3357Y1504D02* D03* X3415Y1536D02* D03* X3449Y1498D02* D03* X3486Y1501D02* D03* X3497Y1632D02* D03* X3401Y1674D02* D03* X3422Y1735D02* D03* Y1786D02* D03* X3435Y1849D02* D03* X3478Y1839D02* D03* X3487Y1791D02* D03* X3577Y1784D02* D03* X3575Y1844D02* D03* X3576Y1887D02* D03* X3534Y1895D02* D03* X3520Y1920D02* D03* X3463Y1923D02* D03* X3380Y1843D02* D03* X3331Y1841D02* D03* X3334Y1892D02* D03* X3282Y1894D02* D03* X3225Y1837D02* D03* X3233Y1895D02* D03* X3181Y1892D02* D03* X3088Y1850D02* D03* X3136Y1846D02* D03* X3151Y1736D02* D03* X3087Y1696D02* D03* X3700Y1685D02* D03* X3723Y1788D02* D03* X3657D02* D03* X3664Y1845D02* D03* X3802Y1835D02* D03* X3715Y1845D02* D03* X3718Y1895D02* D03* X3716Y1945D02* D03* X3715Y1995D02* D03* X3765Y2045D02* D03* X3715Y2046D02* D03* X3665D02* D03* X3864Y2274D02* D03* X3813Y2296D02* D03* X3763D02* D03* X3764Y2346D02* D03* Y2396D02* D03* X3716Y2394D02* D03* X3714Y2346D02* D03* X3712Y2298D02* D03* X3715Y2192D02* D03* X3714Y2145D02* D03* X3715Y2096D02* D03* X3768Y2142D02* D03* X3818D02* D03* X3962Y2034D02* D03* X4016Y2025D02* D03* X3945Y1825D02* D03* X3933Y1746D02* D03* X3986Y1546D02* D03* X3837Y1207D02* D03* X4229Y1320D02* D03* X4424Y1275D02* D03* X4479Y1268D02* D03* X4536Y1292D02* D03* X4631Y1417D02* D03* X4661Y1436D02* D03* X4574Y1467D02* D03* X4544Y1525D02* D03* X4482Y1481D02* D03* X4750Y1207D02* D03* X4782Y1205D02* D03* X4813Y1207D02* D03* X4971Y1209D02* D03* X4921Y1470D02* D03* X4894D02* D03* X4831Y1514D02* D03* X4797Y1512D02* D03* X4766D02* D03* X4734Y1513D02* D03* X4957Y1533D02* D03* X4989Y1513D02* D03* X4464Y2902D02* D03* X4476Y2806D02* D03* X4005Y2649D02* D03* X3983Y2722D02* D03* X3932Y2739D02* D03* X3865Y2640D02* D03* X3889Y2635D02* D03* X3872Y2608D02* D03* X3880Y2546D02* D03* X3821Y2488D02* D03* X3817Y2449D02* D03* X3680Y2538D02* D03* X3715Y2495D02* D03* Y2445D02* D03* X3765D02* D03* X3767Y2493D02* D03* X3765Y2546D02* D03* X3779Y2579D02* D03* X3815Y2595D02* D03* X3822Y2670D02* D03* X3833Y2692D02* D03* X3816Y2726D02* D03* X3817Y2777D02* D03* X3844Y2784D02* D03* X3871Y2774D02* D03* X3865Y2851D02* D03* X3839Y2864D02* D03* X3752Y2785D02* D03* X3729Y2791D02* D03* X3678Y2831D02* D03* X3680Y2857D02* D03* X3646Y2869D02* D03* X3600Y2852D02* D03* X3633Y2790D02* D03* Y2743D02* D03* X3623Y2703D02* D03* X3645Y2686D02* D03* X3680Y2690D02* D03* X3715Y2675D02* D03* X3766Y2676D02* D03* X3718Y2628D02* D03* X3675Y2629D02* D03* X3579Y2607D02* D03* X3571Y2630D02* D03* X3529Y2670D02* D03* X3360Y2564D02* D03* X2974Y2865D02* D03* X2766Y3094D02* D03* Y3133D02* D03* X2727D02* D03* Y3094D02* D03* X2687D02* D03* Y3133D02* D03* X2648D02* D03* Y3094D02* D03* X2608D02* D03* Y3133D02* D03* X2569D02* D03* Y3094D02* D03* X2490D02* D03* X2530D02* D03* Y3133D02* D03* X2490D02* D03* X2451D02* D03* Y3094D02* D03* X2426Y3068D02* D03* X2412Y3094D02* D03* Y3133D02* D03* X2372Y3094D02* D03* Y3133D02* D03* X2393Y3153D02* D03* X2372Y3173D02* D03* X2412D02* D03* Y3212D02* D03* Y3252D02* D03* X2372D02* D03* Y3212D02* D03* X2333D02* D03* Y3252D02* D03* X2293D02* D03* Y3212D02* D03* Y3173D02* D03* X2333D02* D03* Y3133D02* D03* X2293D02* D03* Y3094D02* D03* X2333D02* D03* X2316Y3053D02* D03* X2254Y3094D02* D03* Y3133D02* D03* Y3173D02* D03* Y3212D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* Y3370D02* D03* Y3409D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* X2293D02* D03* Y3488D02* D03* X2333D02* D03* Y3527D02* D03* X2372D02* D03* Y3488D02* D03* X2293Y3448D02* D03* Y3409D02* D03* X2333D02* D03* Y3448D02* D03* X2372D02* D03* Y3409D02* D03* X2412D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* Y3567D02* D03* Y3606D02* D03* X2372D02* D03* X2352Y3578D02* D03* X2333Y3606D02* D03* X2372Y3567D02* D03* X2333D02* D03* X2293D02* D03* Y3606D02* D03* X2254D02* D03* Y3567D02* D03* X2451Y3448D02* D03* Y3409D02* D03* X2490D02* D03* Y3448D02* D03* X2530D02* D03* Y3409D02* D03* X2569D02* D03* X2608D02* D03* X2648D02* D03* X2687D02* D03* Y3448D02* D03* X2648D02* D03* Y3488D02* D03* X2608D02* D03* Y3448D02* D03* X2569D02* D03* Y3488D02* D03* X2530D02* D03* Y3527D02* D03* X2490D02* D03* Y3488D02* D03* X2451D02* D03* Y3527D02* D03* Y3606D02* D03* Y3567D02* D03* X2490D02* D03* Y3606D02* D03* X2530D02* D03* Y3567D02* D03* X2569D02* D03* Y3606D02* D03* X2608D02* D03* Y3567D02* D03* X2648D02* D03* Y3606D02* D03* X2687D02* D03* Y3567D02* D03* X2727D02* D03* Y3606D02* D03* X2766D02* D03* Y3567D02* D03* Y3488D02* D03* Y3527D02* D03* X2727D02* D03* Y3488D02* D03* X2687D02* D03* Y3527D02* D03* X2648D02* D03* X2608D02* D03* X2569D02* D03* X2530Y3330D02* D03* Y3370D02* D03* X2490D02* D03* Y3330D02* D03* X2451D02* D03* Y3370D02* D03* X2412D02* D03* X2372D02* D03* X2333D02* D03* X2293D02* D03* Y3291D02* D03* Y3330D02* D03* X2333D02* D03* Y3291D02* D03* X2372D02* D03* Y3330D02* D03* X2412D02* D03* Y3291D02* D03* X2451D02* D03* X2490D02* D03* X2530D02* D03* Y3252D02* D03* X2490D02* D03* X2451D02* D03* Y3212D02* D03* Y3173D02* D03* X2490D02* D03* Y3212D02* D03* X2530D02* D03* Y3173D02* D03* X2569D02* D03* Y3212D02* D03* X2608D02* D03* Y3173D02* D03* X2648D02* D03* Y3212D02* D03* X2687D02* D03* Y3252D02* D03* X2648D02* D03* X2608D02* D03* X2569D02* D03* X2687Y3173D02* D03* X2727D02* D03* Y3212D02* D03* Y3252D02* D03* X2766D02* D03* X2778Y3233D02* D03* X2766Y3212D02* D03* Y3173D02* D03* Y3291D02* D03* X2727D02* D03* Y3330D02* D03* Y3370D02* D03* X2766D02* D03* Y3330D02* D03* X2687D02* D03* Y3291D02* D03* X2648D02* D03* Y3330D02* D03* X2608D02* D03* Y3291D02* D03* X2569D02* D03* Y3330D02* D03* Y3370D02* D03* X2608D02* D03* X2648D02* D03* X2687D02* D03* X2727Y3409D02* D03* Y3448D02* D03* X2766D02* D03* Y3409D02* D03* X2855Y3431D02* D03* X2908Y3377D02* D03* X3234Y3245D02* D03* X3231Y3219D02* D03* X3255Y3209D02* D03* X3355Y3196D02* D03* X3697D02* D03* X3827Y3317D02* D03* X3872Y3782D02* D03* X3738Y3788D02* D03* X3724Y3695D02* D03* X3747Y3693D02* D03* X3769Y3692D02* D03* X3827Y3633D02* D03* X3695Y3720D02* D03* X3599Y3770D02* D03* X3690Y3890D02* D03* X3637Y3887D02* D03* X3600Y4003D02* D03* X3519Y4051D02* D03* X5681Y4351D02* D03* X5732Y3810D02* D03* X5710Y3629D02* D03* X5736Y3590D02* D03* X6909Y2341D02* D03* X6939Y2350D02* D03* X6958Y2337D02* D03* X6986Y2277D02* D03* X6983Y2239D02* D03* X6988Y2194D02* D03* X6829Y2249D02* D03* X6850Y2236D02* D03* X6935Y2164D02* D03* Y2118D02* D03* X6989Y2087D02* D03* X6985Y2026D02* D03* X6986Y1968D02* D03* X6888Y2044D02* D03* X6938Y2007D02* D03* X6897Y1951D02* D03* X6960Y1893D02* D03* X6893Y1841D02* D03* X6882Y1387D02* D03* X6785Y1341D02* D03* X6989Y1893D02* D03* D023* X2035Y4418D02* Y4382D01* X2009Y4481D02* Y4540D01* X1891D02* Y4481D01* X1885Y4382D02* Y4418D01* Y3958D02* Y3922D01* X2035Y3958D02* Y3922D01* X2870Y2927D02* Y2947D01* X2791Y2927D02* Y2947D01* X1951Y2890D02* X1892D01* X1951Y2772D02* X1892D01* X1854Y2467D02* Y2408D01* X1736Y2467D02* Y2408D01* X1689Y2455D02* Y2419D01* X1539Y2455D02* Y2419D01* X2350Y1964D02* Y2004D01* X2224Y1964D02* Y2004D01* X2055D02* Y1964D01* X1929Y2004D02* Y1964D01* X1866Y1987D02* Y1951D01* X1799Y1884D02* Y1864D01* X1720Y1884D02* Y1864D01* X1717Y1951D02* Y1987D01* D048* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* D023* X4043Y2271D02* Y2311D01* X4169Y2271D02* Y2311D01* X3891Y3510D02* Y3490D01* X3969Y3510D02* Y3490D01* X5027Y3499D02* Y3459D01* X5031Y3374D02* Y3354D01* X5153Y3499D02* Y3459D01* X5109Y3374D02* Y3354D01* X5165Y3319D02* X5185D01* X5165Y3240D02* X5185D01* X5275Y3236D02* X5315D01* X5410Y3240D02* X5430D01* X5490D02* X5510D01* X5592Y3254D02* Y3294D01* X5510Y3319D02* X5490D01* X5430D02* X5410D01* X5315Y3362D02* X5275D01* X5915Y3319D02* X5895D01* X5820D02* X5800D01* X5718Y3294D02* Y3254D01* X5800Y3240D02* X5820D01* X5895D02* X5915D01* X6030Y3271D02* X5990D01* X6030Y3397D02* X5990D01* X5961Y3504D02* Y3524D01* X6039Y3504D02* Y3524D01* Y3609D02* Y3629D01* X5961Y3609D02* Y3629D01* X5917Y3714D02* Y3754D01* X6043Y3714D02* Y3754D01* X6039Y3844D02* Y3864D01* Y3944D02* Y3964D01* X6043Y4069D02* Y4109D01* X5975Y4170D02* X5995D01* X5975Y4249D02* X5995D01* X5961Y3844D02* Y3864D01* Y3944D02* Y3964D01* X5917Y4069D02* Y4109D01* X5850Y4126D02* X5810D01* X5700Y4170D02* X5680D01* X5600D02* X5580D01* Y4249D02* X5600D01* X5680D02* X5700D01* X5810Y4252D02* X5850D01* X5450D02* X5410D01* X5340Y4249D02* X5320D01* X5255D02* X5235D01* X5135Y4192D02* X5175D01* X5235Y4170D02* X5255D01* X5320D02* X5340D01* X5410Y4126D02* X5450D01* X5175Y4066D02* X5135D01* X5109Y4009D02* Y3989D01* Y3919D02* Y3899D01* X5153Y3824D02* Y3784D01* X5109Y3704D02* Y3684D01* Y3609D02* Y3589D01* X5031D02* Y3609D01* Y3684D02* Y3704D01* X5027Y3784D02* Y3824D01* X5031Y3899D02* Y3919D01* Y3989D02* Y4009D01* X6736Y4258D02* Y4238D01* X6815Y4258D02* Y4238D01* D048* X7346Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* X7425D02* D03* Y3677D02* D03* X7504D02* D03* Y3598D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3677D02* D03* X7661D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* X7740D02* D03* Y3756D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3756D02* D03* Y3913D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3992D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y4071D02* D03* Y4150D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4465D02* D03* X7661D02* D03* X7583D02* D03* X7425Y4543D02* D03* Y4622D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4543D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y4465D02* D03* X7425D02* D03* Y4386D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4307D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y4228D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4150D02* D03* X7661D02* D03* X7583D02* D03* X7346Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4780D02* D03* Y4701D02* D03* X7425D02* D03* Y4780D02* D03* X7504D02* D03* Y4701D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4780D02* D03* X7661D02* D03* X7583D02* D03* D023* X6764Y3408D02* Y3388D01* X6843Y3408D02* Y3388D01* D048* X7346Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* X7425Y3441D02* D03* Y3520D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3520D02* D03* X7661D02* D03* X7583D02* D03* X7740Y3205D02* D03* X7661D02* D03* X7583D02* D03* Y3362D02* D03* X7661D02* D03* X7740D02* D03* Y3283D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y3362D02* D03* X7425D02* D03* Y3283D02* D03* X7346Y3205D02* D03* Y3126D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* X7425D02* D03* Y2969D02* D03* X7504D02* D03* Y2890D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2811D02* D03* X7661D02* D03* X7583D02* D03* Y2969D02* D03* X7661D02* D03* X7740D02* D03* Y3047D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* Y3047D02* D03* X7504D02* D03* Y3126D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3047D02* D03* X7740Y2496D02* D03* X7661D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* X7740D02* D03* Y2417D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2417D02* D03* Y2575D02* D03* Y2654D02* D03* X7504D02* D03* Y2575D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2654D02* D03* X7661D02* D03* X7583D02* D03* X7740Y2732D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2732D02* D03* X7346Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* Y2417D02* D03* Y2339D02* D03* Y2260D02* D03* Y2181D02* D03* X7425Y2260D02* D03* Y2339D02* D03* X7504D02* D03* Y2260D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346Y2102D02* D03* Y2024D02* D03* Y1945D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* Y1157D02* D03* X7425D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740Y1236D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7583Y1315D02* D03* X7661D02* D03* X7740D02* D03* Y1394D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y1551D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1630D02* D03* X7504D02* D03* Y1709D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y1787D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1709D02* D03* X7583Y1630D02* D03* X7661D02* D03* X7740D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D028* X1607Y1866D02* X1638D01* X1607Y1976D02* X1638D01* X1587Y2059D02* X1516D01* X1809Y2165D02* Y2236D01* X1516Y2343D02* X1587D01* X1516Y2531D02* X1587D01* X1809Y2638D02* Y2709D01* X1587Y2815D02* X1516D01* X2365Y2996D02* Y2965D01* X2475Y2996D02* Y2965D01* X2555Y2996D02* Y2965D01* X2665Y2996D02* Y2965D01* X3796Y3005D02* X3765D01* X3796Y3115D02* X3765D01* X3936Y3305D02* X3905D01* X3936Y3415D02* X3905D01* X4571Y2272D02* Y2303D01* X4681Y2272D02* Y2303D01* X5335Y2271D02* Y2240D01* X5445Y2271D02* Y2240D01* X5673Y2271D02* Y2240D01* X5783Y2271D02* Y2240D01* X6728Y2614D02* Y2645D01* X6838Y2614D02* Y2645D01* X6929Y2614D02* Y2645D01* X7039Y2614D02* Y2645D01* X6783Y1162D02* Y1193D01* X6673Y1162D02* Y1193D01* X5760Y1185D02* Y1216D01* X5650Y1185D02* Y1216D01* X6827Y4055D02* X6796D01* X6827Y4165D02* X6796D01* D017* X2330Y2374D02* X2358D01* X2330Y2343D02* X2358D01* X2330Y2311D02* X2358D01* X2330Y2280D02* X2358D01* X2405D02* X2433D01* X2405Y2311D02* X2433D01* X2405Y2343D02* X2433D01* X2405Y2374D02* X2433D01* X2571Y2343D02* X2543D01* X2571Y2311D02* X2543D01* X2571Y2280D02* X2543D01* X2571Y2248D02* X2543D01* Y2197D02* X2571D01* X2543Y2165D02* X2571D01* X2543Y2134D02* X2571D01* X2543Y2102D02* X2571D01* X2618D02* X2646D01* X2618Y2134D02* X2646D01* X2618Y2165D02* X2646D01* X2618Y2197D02* X2646D01* Y2248D02* X2618D01* X2646Y2280D02* X2618D01* X2646Y2311D02* X2618D01* X2646Y2343D02* X2618D01* X5749Y3637D02* X5777D01* X5749Y3669D02* X5777D01* X5749Y3700D02* X5777D01* X5749Y3732D02* X5777D01* X5823D02* X5851D01* X5823Y3700D02* X5851D01* X5823Y3669D02* X5851D01* X5823Y3637D02* X5851D01* X5818Y3576D02* Y3548D01* X5849Y3576D02* Y3548D01* X5881Y3576D02* Y3548D01* X5912Y3576D02* Y3548D01* Y3501D02* Y3473D01* X5881D02* Y3501D01* X5849Y3473D02* Y3501D01* X5818Y3473D02* Y3501D01* X7142Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* X7142Y3130D02* X7170D01* X7142Y3161D02* X7170D01* X7142Y3193D02* X7170D01* X7142Y3224D02* X7170D01* X7216D02* X7244D01* X7216Y3193D02* X7244D01* X7216Y3161D02* X7244D01* X7216Y3130D02* X7244D01* Y3079D02* X7216D01* X7244Y3047D02* X7216D01* X7244Y3016D02* X7216D01* X7244Y2984D02* X7216D01* X7170D02* X7142D01* X7170Y3016D02* X7142D01* X7170Y3047D02* X7142D01* X7170Y3079D02* X7142D01* X7244Y2717D02* X7216D01* X7244Y2748D02* X7216D01* X7244Y2780D02* X7216D01* X7244Y2811D02* X7216D01* X7170D02* X7142D01* X7170Y2780D02* X7142D01* X7170Y2748D02* X7142D01* X7170Y2717D02* X7142D01* Y2665D02* X7170D01* X7142Y2634D02* X7170D01* X7142Y2602D02* X7170D01* X7142Y2571D02* X7170D01* X7216D02* X7244D01* X7216Y2602D02* X7244D01* X7216Y2634D02* X7244D01* X7216Y2665D02* X7244D01* X7142Y2425D02* X7170D01* X7142Y2457D02* X7170D01* X7142Y2488D02* X7170D01* X7142Y2520D02* X7170D01* X7216D02* X7244D01* X7216Y2488D02* X7244D01* X7216Y2457D02* X7244D01* X7216Y2425D02* X7244D01* Y2374D02* X7216D01* X7244Y2343D02* X7216D01* X7244Y2311D02* X7216D01* X7244Y2280D02* X7216D01* X7170D02* X7142D01* X7170Y2311D02* X7142D01* X7170Y2343D02* X7142D01* X7170Y2374D02* X7142D01* X7244Y2134D02* X7216D01* X7244Y2165D02* X7216D01* X7244Y2197D02* X7216D01* X7244Y2228D02* X7216D01* X7170D02* X7142D01* X7170Y2197D02* X7142D01* X7170Y2165D02* X7142D01* X7170Y2134D02* X7142D01* Y2083D02* X7170D01* X7142Y2051D02* X7170D01* X7142Y2020D02* X7170D01* X7142Y1988D02* X7170D01* X7216D02* X7244D01* X7216Y2020D02* X7244D01* X7216Y2051D02* X7244D01* X7216Y2083D02* X7244D01* Y1843D02* X7216D01* X7244Y1874D02* X7216D01* X7244Y1906D02* X7216D01* X7244Y1937D02* X7216D01* X7170D02* X7142D01* X7170Y1906D02* X7142D01* X7170Y1874D02* X7142D01* X7170Y1843D02* X7142D01* Y1791D02* X7170D01* X7142Y1760D02* X7170D01* X7142Y1728D02* X7170D01* X7142Y1697D02* X7170D01* X7216D02* X7244D01* X7216Y1728D02* X7244D01* X7216Y1760D02* X7244D01* X7216Y1791D02* X7244D01* X7142Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* X7142Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X7216Y4535D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7142Y4587D02* X7170D01* X7142Y4618D02* X7170D01* X7142Y4650D02* X7170D01* X7142Y4681D02* X7170D01* X7216D02* X7244D01* X7216Y4650D02* X7244D01* X7216Y4618D02* X7244D01* X7216Y4587D02* X7244D01* D056* X3940Y4522D02* D03* X2359D02* D03* D030* X2543Y2734D02* X2536D01* X2378D02* X2371D01* X2248D02* X2255D01* X2083D02* X2090D01* X2083Y2534D02* X2090D01* X2248D02* X2255D01* X2378D02* X2371D01* X2543D02* X2536D01* D053* X2081Y4644D02* D03* X1814Y4268D02* D03* Y4189D02* D03* Y4091D02* D03* X1511Y3526D02* D03* Y3426D02* D03* Y3141D02* D03* Y3041D02* D03* X1652Y2732D02* D03* X1573D02* D03* Y2614D02* D03* X1652D02* D03* X1730D02* D03* X1652Y2260D02* D03* X1573D02* D03* Y2142D02* D03* X1652D02* D03* X1730D02* D03* D027* X1606Y1069D02* X3047D01* X3344D02* X5405D01* X6252D02* X7693D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D047* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D041* X4026Y3593D02* X4100D01* X4026Y3618D02* X4100D01* Y3568D02* X4026D01* X4100Y3543D02* X4026D01* X4100Y3518D02* X4026D01* Y3468D02* X4100D01* X4026Y3493D02* X4100D01* X4026Y3418D02* X4100D01* X4026Y3443D02* X4100D01* Y3393D02* X4026D01* X4100Y3368D02* X4026D01* Y3318D02* X4100D01* X4026Y3343D02* X4100D01* Y3293D02* X4026D01* X4100Y3268D02* X4026D01* X4100Y3243D02* X4026D01* X4100Y3218D02* X4026D01* X4100Y3193D02* X4026D01* Y3143D02* X4100D01* X4026Y3168D02* X4100D01* X4026Y3093D02* X4100D01* X4026Y3118D02* X4100D01* Y3068D02* X4026D01* X4100Y3043D02* X4026D01* Y2993D02* X4100D01* X4026Y3018D02* X4100D01* Y2968D02* X4026D01* X4100Y2943D02* X4026D01* X4400D02* X4474D01* X4400Y2968D02* X4474D01* Y3018D02* X4400D01* X4474Y2993D02* X4400D01* Y3043D02* X4474D01* X4400Y3068D02* X4474D01* Y3118D02* X4400D01* X4474Y3093D02* X4400D01* X4474Y3168D02* X4400D01* X4474Y3143D02* X4400D01* Y3193D02* X4474D01* X4400Y3218D02* X4474D01* X4400Y3243D02* X4474D01* X4400Y3268D02* X4474D01* X4400Y3293D02* X4474D01* Y3343D02* X4400D01* X4474Y3318D02* X4400D01* Y3368D02* X4474D01* X4400Y3393D02* X4474D01* Y3443D02* X4400D01* X4474Y3418D02* X4400D01* X4474Y3493D02* X4400D01* X4474Y3468D02* X4400D01* Y3518D02* X4474D01* X4400Y3543D02* X4474D01* X4400Y3568D02* X4474D01* Y3618D02* X4400D01* X4474Y3593D02* X4400D01* D357* X5524Y1668D02* X5594D01* X4807Y1820D02* X4737D01* X4287D02* X4217D01* D025* X4275Y3702D02* X4251D01* X4149D02* X4125D01* Y3918D02* X4149D01* X4251D02* X4275D01* D060* Y4140D02* D03* X5346Y2524D02* D03* D034* X6760Y2791D02* X6909D01* X6760Y3232D02* X6909D01* D060* X6650Y4102D02* D03* D034* X6760Y4343D02* X6909D01* X6760Y4783D02* X6909D01* D061* X7425Y2102D02* D03* X7661D02* D03* D014* X2476Y1210D02* X2404D01* Y1212D01* X2250Y1271D02* Y1262D01* Y1252D01* X2197D01* X2188Y1243D01* X2172Y1227D01* Y1210D01* X2155Y1193D01* X2124D01* X2098Y1167D01* X2119Y1188D02* Y1244D01* X2158Y1283D01* X2186D01* X2199Y1271D02* X2198D01* X2186Y1283D02* X2198Y1271D01* X2250D01* X2189Y1345D02* X2196Y1352D01* X2250D01* Y1362D01* Y1371D01* X2197D01* X2187Y1381D01* X2250Y1562D02* X2187D01* D01* X2188Y1612D02* D01* X2250D01* Y1662D02* X2187D01* D01* Y1712D02* D01* X2250D01* Y1762D02* X2187D01* D01* X2188Y1812D02* D01* X2250D01* X6235Y3644D02* X6286D01* X2695Y1501D02* D01* Y1454D01* X2708Y1441D01* X2764D01* X2853Y1443D02* D01* Y1501D01* X3010Y1443D02* D01* Y1501D01* X3105D02* Y1446D01* D01* X3231Y1501D02* Y1446D01* D01* X3388Y1438D02* D01* Y1501D01* X3421Y1610D02* X3390Y1579D01* X3359Y1610D02* X3385Y1636D01* X3546Y1501D02* Y1419D01* X3556Y1409D01* X3555Y1408D01* X3529Y1234D02* X3530D01* Y1179D01* X3372D02* Y1234D01* D01* X3215Y1235D02* D01* Y1179D01* X3089Y1234D02* D01* Y1179D01* X2994D02* Y1233D01* D01* X2837Y1237D02* D01* Y1179D01* X2679D02* X2655D01* X2646Y1188D01* X2647Y1189D01* X2480Y1262D02* X2404D01* Y1362D02* D01* X2468D01* X2404D02* X2337D01* D01* X2250Y1512D02* X2187D01* D01* X2168Y1466D02* X2143Y1441D01* X2130D01* X2098Y1352D02* X2033D01* X2013Y1332D01* X2051Y1441D02* X2041D01* X2015Y1467D01* X2130Y1679D02* D01* Y1707D01* X2051Y1699D02* Y1736D01* D01* X2091Y1756D02* D01* X2122Y1787D01* Y1866D02* Y1863D01* X2093Y1834D01* X1929Y1929D02* D01* Y1984D01* X2030Y2222D02* X2039Y2213D01* X2063D01* X2125D02* X2154D01* Y2211D01* X2182Y2213D02* X2154D01* X2244D02* X2280D01* Y2212D01* X2332Y2184D02* X2355Y2161D01* Y2138D01* X2377Y2061D02* X2350Y2034D01* Y1984D01* X2355Y2217D02* X2354Y2216D01* Y2223D01* X2374Y2243D01* X2386D01* X2417Y2217D02* Y2219D01* X2385Y2187D01* X2417Y2155D01* Y2138D01* X2505Y2091D02* X2516Y2102D01* X2557D01* X2571D01* Y2134D01* X2557D02* X2571D01* Y2165D01* X2557D01* X2571D02* Y2197D01* X2557D01* Y2280D02* X2569D01* Y2248D01* X2557D01* X2521D01* X2513Y2256D01* X2487D01* X2479Y2248D01* X2495Y2284D02* X2516D01* Y2285D01* X2542Y2311D01* X2557D01* X2568D01* Y2343D01* X2557D01* X2665Y2566D02* X2693D01* X2704Y2555D01* X2703Y2522D02* X2685Y2504D01* X2665D01* X2599Y2534D02* D01* X2539D01* X2363Y2589D02* X2374Y2578D01* Y2534D01* X2381Y2474D02* X2351Y2444D01* Y2441D01* X2344Y2374D02* X2323D01* X2305Y2356D01* X2318Y2343D01* X2344D01* Y2311D02* X2304D01* D01* X2260Y2456D02* X2254D01* X2225Y2427D01* X2196Y2456D01* X2189D01* X2047D02* X2052D01* X2080Y2428D01* X2108Y2456D01* X2118D01* X2087Y2534D02* Y2585D01* D01* X2102Y2896D02* Y2894D01* X2122Y2874D01* Y2854D01* X2202Y2890D02* X2225Y2867D01* Y2854D01* X2287D02* Y2868D01* X2261Y2894D01* X2287Y2925D02* Y2933D01* X2255Y2965D01* X2260D01* X2225Y3000D02* Y3044D01* X2224D01* X2365Y2980D02* X2397D01* Y2982D01* X2475Y2980D02* X2445D01* X2555D02* X2585D01* Y2979D01* X2636Y2978D02* Y2980D01* X2665D01* X2687Y3094D02* X2672Y3109D01* X2671D01* Y3111D01* X2672D01* X2687Y3133D02* X2671Y3150D01* X2669Y3148D01* Y3147D01* X2673D01* X2766Y3252D02* X2749Y3268D01* X2748D01* X2727Y3252D02* X2714Y3264D01* Y3268D01* X2648Y3291D02* X2630Y3273D01* Y3271D01* Y3269D02* Y3271D01* X2648Y3252D02* X2630Y3269D01* X2608Y3252D02* X2589Y3271D01* X2588Y3272D02* X2589Y3271D01* X2569Y3252D01* Y3291D02* X2588Y3309D01* X2589Y3308D01* X2591D01* X2608Y3291D01* X2648Y3212D02* X2633Y3227D01* X2629D01* X2608Y3212D02* X2594Y3227D01* X2591D01* X2584D01* X2569Y3212D01* X2530Y3252D02* X2514Y3236D01* D01* Y3230D01* X2513Y3229D01* X2530Y3212D01* Y3133D02* X2549Y3114D01* D01* X2530Y3094D02* X2547Y3077D01* X2546D01* Y3079D01* X2490Y3212D02* X2473Y3230D01* X2472D01* X2490Y3252D02* X2474Y3268D01* X2472Y3266D01* Y3263D01* X2451Y3252D02* X2436Y3267D01* X2435Y3266D01* Y3265D01* D01* X2412Y3252D02* X2395Y3268D01* X2393Y3266D01* X2391D01* Y3265D01* X2372Y3252D02* X2369D01* X2356Y3265D01* X2333Y3252D02* X2351Y3233D01* D01* Y3231D01* X2354D01* X2372Y3212D02* X2391Y3194D01* X2390Y3193D01* X2392D01* Y3192D01* X2412Y3173D01* X2391Y3115D02* D01* X2393D01* X2372Y3094D01* X2497Y2790D02* Y2776D01* X2539Y2734D01* X2665Y2642D02* X2668D01* X2699Y2673D01* Y2671D01* X2761Y2681D02* X2779D01* X2800Y2660D01* X2823Y2634D02* X2824D01* X2850Y2660D01* Y2710D02* X2876Y2736D01* Y2732D01* X2872D01* X2788Y2784D02* Y2772D01* X2800Y2760D01* X2850D02* X2875Y2785D01* X2900Y2760D02* X2920Y2780D01* X3000Y2660D02* X2974Y2686D01* X3000Y2710D02* X2973Y2737D01* X2977D01* Y2732D01* X2920Y2780D02* X2921Y2779D01* X2950Y2810D02* Y2943D01* X2957Y2950D01* X2947D01* Y2928D01* X2957Y2950D02* Y2937D01* X2870D01* X2875Y2885D02* X2832D01* X2791Y2926D01* Y2937D01* X2850Y2310D02* X2873Y2287D01* Y2284D01* X2876D01* X2900Y2210D02* X2923Y2233D01* X2875Y2134D02* X2874D01* X2850Y2110D01* X2921Y2032D02* X2922D01* X2900Y2010D01* X2825Y1934D02* X2826Y1935D01* X2850Y1910D01* X2875Y1785D02* X2900Y1760D01* X2927Y1783D02* X2950Y1760D01* X2927Y1784D02* Y1783D01* X2973Y1838D02* Y1837D01* X3000Y1810D01* Y1910D02* X3021Y1931D01* X3050Y1910D02* X3071Y1931D01* X3050Y1960D02* X3074Y1984D01* X3073D01* X3050Y2010D02* X3024Y2036D01* X3025D01* X3050Y2110D02* X3025Y2135D01* X3050Y2160D02* X3026Y2184D01* X3067Y2343D02* X3050Y2360D01* X3067Y2393D02* X3050Y2410D01* X3067Y2443D02* X3050Y2460D01* X3067Y2493D02* X3050Y2510D01* X3064Y2544D02* X3049Y2559D01* X3050Y2560D01* X3093Y2535D02* Y2553D01* X3100Y2560D01* X3148Y2533D02* Y2560D01* X3150D01* X3200D02* X3221Y2539D01* Y2530D01* X3266Y2532D02* Y2544D01* X3250Y2560D01* Y2610D02* X3232Y2592D01* X3150Y2710D02* X3132Y2728D01* X3119Y2969D02* X3143D01* Y2950D01* X3310Y3001D02* X3309Y3003D01* X3326Y3020D01* Y3035D01* X3600Y3001D02* X3670D01* X3688Y3019D01* Y3027D01* X3780Y3005D02* X3813D01* X3845Y3037D01* X3847D01* Y3039D01* X3877D02* Y3011D01* X3890D01* X3974Y2918D02* Y2920D01* X3960Y2934D01* Y2949D01* X3999D01* X4006Y2943D01* X4063D01* X3907Y3069D02* Y3041D01* Y3069D02* X3890D01* X3907D02* X3960D01* X4063D01* Y3068D01* Y3018D02* X4001D01* X3994Y3011D01* X3960D01* X3890D01* Y2949D02* X3891D01* Y2920D01* X3900Y2811D02* X3932D01* X3900D02* Y2810D01* X3767Y2727D02* X3750Y2710D01* X3550D02* X3562Y2698D01* Y2688D01* X3625Y2597D02* X3637D01* X3650Y2610D01* X3600Y2560D02* X3598Y2558D01* Y2554D01* X3583Y2539D01* X3550Y2560D02* Y2556D01* X3533Y2539D01* X3433Y2537D02* X3450Y2554D01* Y2560D01* X3482Y2539D02* X3502Y2559D01* X3500Y2560D01* X3472Y2602D02* X3465Y2609D01* X3450D01* Y2610D01* X3379Y2685D02* X3354Y2710D01* X3350D01* X3250Y2360D02* X3268Y2342D01* X3250Y2310D02* X3272Y2288D01* X3250Y2260D02* X3266Y2244D01* X3250Y2210D02* X3272Y2188D01* X3250Y2160D02* X3268Y2142D01* X3318D02* X3300Y2160D01* X3322Y2188D02* X3300Y2210D01* X3316Y2244D02* X3300Y2260D01* X3322Y2288D02* X3300Y2310D01* X3318Y2342D02* X3300Y2360D01* X3350Y2310D02* X3372Y2288D01* X3350Y2260D02* X3366Y2244D01* X3350Y2210D02* X3372Y2188D01* X3350Y2160D02* X3368Y2142D01* X3418D02* X3400Y2160D01* X3422Y2188D02* X3400Y2210D01* X3416Y2244D02* X3400Y2260D01* X3422Y2288D02* X3400Y2310D01* X3418Y2342D02* X3400Y2360D01* X3368Y2378D02* X3350Y2360D01* X3450D02* X3468Y2342D01* X3450Y2310D02* X3472Y2288D01* X3450Y2260D02* X3466Y2244D01* X3450Y2210D02* X3472Y2188D01* X3450Y2160D02* X3468Y2142D01* X3227Y1983D02* X3250Y1960D01* X3177Y1937D02* X3200Y1960D01* X3173Y1983D02* X3150Y1960D01* X3121Y1938D02* X3122D01* X3100Y1960D01* X3150Y1910D02* X3127Y1887D01* X3126D01* X3075Y1735D02* X3100Y1760D01* X3173Y1785D02* X3175D01* X3200Y1810D01* X3275Y1735D02* X3300Y1760D01* X3401Y1810D02* X3400D01* X3489Y1738D02* X3500Y1749D01* Y1760D01* X3419Y1828D02* X3401Y1810D01* X3383Y1893D02* X3400Y1910D01* X3433Y1943D02* X3450Y1960D01* X3483Y1943D02* X3500Y1960D01* X3533Y1943D02* X3550Y1960D01* X3583Y1943D02* X3600Y1960D01* X3633Y1943D02* X3650Y1960D01* X3667Y1993D02* X3650Y2010D01* X3633Y2093D02* X3650Y2110D01* X3633Y2143D02* X3650Y2160D01* X3750Y2210D02* X3767Y2193D01* X3800Y2210D02* X3817Y2193D01* X3850Y2110D02* Y2108D01* X3866Y2092D01* X3800Y2010D02* Y2005D01* X3812Y1993D01* X3859Y1910D02* X3876Y1893D01* X3859Y1910D02* X3850D01* X3767Y1843D02* X3750Y1860D01* X3717Y1743D02* X3700Y1760D01* X3621Y1789D02* X3600Y1810D01* X3850Y1760D02* X3867Y1743D01* X3900Y1710D02* X3917Y1693D01* X3821Y1445D02* D01* Y1501D01* X4010D02* Y1446D01* D01* X4105Y1445D02* D01* Y1501D01* X4262D02* Y1446D01* X4263D01* X4420Y1501D02* Y1446D01* D01* X4514Y1445D02* D01* Y1501D01* X4609D02* Y1445D01* D01* X4704Y1446D02* X4703D01* Y1501D01* X4860Y1446D02* D01* Y1501D01* X5018D02* Y1446D01* D01* X5081Y1439D02* D01* Y1501D01* X5065Y1234D02* D01* Y1179D01* X5002D02* Y1234D01* X5001D01* X4845Y1233D02* D01* Y1179D01* X4687D02* Y1235D01* D01* X4593Y1233D02* D01* Y1179D01* X4514Y1121D02* Y1124D01* X4498Y1140D01* Y1179D01* X4404D02* Y1233D01* D01* X4246Y1179D02* Y1235D01* D01* X4089Y1234D02* D01* Y1179D01* X3994Y1234D02* D01* Y1179D01* X3805D02* Y1235D01* X3804D01* X4252Y1820D02* Y1975D01* D01* X4251Y2108D02* Y2165D01* X4252D02* X4253D01* X4281D02* Y2223D01* Y2291D01* X4258D01* X4281D02* X4282D01* Y2354D01* X4234D02* Y2291D01* X4258D01* X4253Y2286D01* Y2223D01* Y2165D01* X4281D01* Y2108D01* X4123Y2223D02* Y2165D01* X4151D02* X4152D01* X4151D02* X4123D01* Y2108D01* X4151D02* Y2165D01* X4152D02* X4153D01* X4181D02* X4153D01* Y2223D01* X4223D02* Y2165D01* X4251D02* X4252D01* X4251D02* X4223D01* Y2108D01* X4181D02* Y2165D01* Y2223D01* Y2254D01* X4169Y2266D01* Y2269D01* X4153Y2252D01* Y2223D01* X4169Y2269D02* Y2291D01* Y2315D01* X4192Y2337D01* Y2339D01* X4169Y2315D02* X4147Y2337D01* Y2339D01* X4021D02* Y2337D01* X4043Y2315D01* X4066Y2337D01* Y2339D01* X4043Y2315D02* Y2291D01* Y2268D01* X4066Y2244D02* Y2246D01* X4043Y2268D01* X4021Y2246D01* Y2244D01* X3924Y2260D02* D01* X3900D01* X3817Y2348D02* X3803Y2363D01* X3800Y2360D01* X3667Y2343D02* X3650Y2360D01* X3627Y2411D02* X3650D01* Y2410D01* X3632Y2439D02* Y2443D01* X3633D01* X3650Y2460D01* X3633Y2493D02* X3650Y2510D01* X3817Y2543D02* X3800Y2560D01* X2508Y4117D02* D01* Y4053D01* X2608D02* Y4118D01* D01* X2658Y4119D02* D01* Y4053D01* X2736Y4010D02* X2767Y3979D01* X2840D01* X2767Y4041D02* X2776D01* X2804Y4013D01* X2832Y4041D01* X2840D01* X2997Y4044D02* Y4043D01* X3020Y4020D01* X2970Y3920D02* X2961Y3929D01* X2930D01* X2870Y3892D02* Y3890D01* X2871Y3891D01* X2840Y3921D01* X2801Y3891D02* D01* X2770Y3921D01* X2743Y3892D02* Y3890D01* X2745D01* X2743Y3888D01* X2771Y3859D01* X2770D01* X2860Y3671D02* X2873D01* X2886Y3658D01* X2896D01* X2892Y3628D02* X2873Y3609D01* X2860D01* Y3489D02* X2871D01* X2887Y3505D01* X2898D01* X2901Y3537D02* X2887D01* X2873Y3551D01* X2860D01* X2778Y3579D02* X2780D01* Y3581D01* D01* X2766Y3567D01* X2727Y3606D02* Y3651D01* X2733Y3657D01* X2551Y3582D02* Y3581D01* D01* X2553Y3583D01* X2569Y3567D01* X2550Y3548D02* Y3544D01* X2551D01* Y3545D01* X2569Y3527D01* X2556Y3504D02* X2551D01* Y3502D01* X2553Y3504D01* X2569Y3488D01* X2556Y3464D02* Y3466D01* X2551D01* D01* X2569Y3448D01* X2587Y3467D02* X2593D01* Y3466D01* X2629Y3430D02* D01* X2648Y3448D01* X2664Y3468D02* X2668D01* D01* X2687Y3448D01* X2706Y3467D02* X2711D01* Y3463D01* D01* X2727Y3448D01* X2608Y3330D02* X2593Y3346D01* Y3345D01* Y3351D01* X2590D01* D01* X2569Y3330D01* Y3370D02* X2549Y3389D01* X2550Y3390D01* X2588D01* X2608Y3370D01* X2530D02* X2513Y3386D01* X2514Y3387D01* X2530Y3409D02* X2515Y3424D01* X2514D01* X2490Y3409D02* X2474Y3426D01* X2472Y3424D01* X2451Y3409D02* X2436Y3424D01* X2435D01* X2412Y3409D02* X2395Y3426D01* X2393Y3424D01* Y3428D01* X2391D01* X2357Y3424D02* D01* X2372Y3409D01* X2356Y3388D02* X2373Y3371D01* X2372Y3370D01* X2391Y3391D02* Y3387D01* X2393D01* X2394Y3388D01* X2412Y3370D01* X2435Y3387D02* X2434Y3386D01* X2451Y3370D01* X2472Y3387D02* X2473Y3388D01* X2490Y3370D01* X2357Y3308D02* X2356Y3307D01* X2372Y3291D01* X2393Y3308D02* X2391D01* Y3311D01* X2393Y3308D02* X2394Y3309D01* X2412Y3291D01* X2438Y3307D02* Y3308D01* X2435D01* X2434Y3307D01* X2451Y3291D01* X2472Y3308D02* X2473Y3309D01* X2490Y3291D01* X2530D02* X2513Y3307D01* X2514Y3308D01* X2530Y3330D02* X2515Y3346D01* X2514Y3345D01* X2490Y3330D02* X2474Y3347D01* X2472Y3345D01* X2451Y3330D02* X2436Y3346D01* X2435Y3345D01* Y3344D01* X2438D01* X2412Y3330D02* X2395Y3347D01* X2393Y3345D01* X2391D01* X2372Y3330D02* X2357Y3346D01* Y3345D01* X2277Y3349D02* X2276Y3348D01* X2293Y3330D01* X2276Y3311D02* X2273D01* X2254Y3330D01* X2278Y3463D02* D01* X2293Y3448D01* X2315Y3466D02* Y3469D01* X2312D01* X2315Y3466D02* D01* X2333Y3448D01* X2357Y3466D02* X2356Y3465D01* X2372Y3448D01* X2390Y3468D02* Y3466D01* X2393D01* X2394D01* X2412Y3448D01* X2435Y3464D02* D01* Y3466D01* X2434Y3465D01* X2451Y3448D01* X2471Y3463D02* Y3466D01* X2472D01* X2473D01* X2490Y3448D01* X2515Y3462D02* X2514D01* Y3466D01* X2513Y3465D01* X2530Y3448D01* X2556Y3425D02* X2551D01* Y3424D01* X2553Y3426D01* X2569Y3409D01* X2587Y3429D02* X2593D01* Y3424D01* X2608Y3409D02* X2593Y3424D01* D01* X2608Y3448D02* X2592Y3465D01* X2593Y3466D01* X2592Y3505D02* X2593D01* Y3502D01* Y3503D01* X2608Y3488D01* X2629Y3468D02* X2628D01* X2648Y3488D01* X2485Y3626D02* X2490Y3621D01* Y3606D01* Y3567D02* X2470Y3547D01* D01* Y3545D01* X2451Y3488D02* X2436Y3503D01* X2435Y3502D01* Y3507D01* X2433D01* X2412Y3488D02* X2395Y3504D01* X2393Y3502D01* X2390Y3507D02* X2393D01* Y3502D01* X2372Y3488D02* X2357Y3503D01* Y3502D01* X2333Y3567D02* X2320Y3580D01* X2318Y3578D01* X2333Y3606D02* Y3637D01* D01* X2161Y3641D02* X2119D01* D01* X2036Y3887D02* X2035D01* Y3940D01* X1830Y4619D02* X1835D01* X1864Y4648D01* X1830Y4681D02* X1900D01* Y4619D02* X1931Y4588D01* X1936Y4583D02* X1931Y4588D01* X1936Y4583D02* X2040D01* X2020Y4619D02* X1980D01* X2014Y4651D02* X1984Y4681D01* X1980D01* X2537Y4675D02* D01* Y4760D01* X2887D02* Y4838D01* X2896Y4847D01* X2937Y4760D02* Y4844D01* D01* X2987D02* D01* Y4760D01* X3037Y4844D02* D01* Y4760D01* X3062D02* Y4676D01* D01* X3087Y4844D02* D01* Y4760D01* X3137D02* Y4844D01* D01* X3212Y4760D02* Y4834D01* X3199Y4847D01* X3187Y4835D01* Y4760D01* X3162D02* Y4676D01* D01* X3236Y4673D02* Y4677D01* X3237D01* Y4760D01* X3287D02* Y4671D01* D01* X3286D01* Y4659D01* X3331Y4670D02* X3337Y4676D01* Y4760D01* X3462D02* Y4844D01* D01* X3763Y4848D02* Y4845D01* X3762D01* Y4760D01* X3480Y4308D02* D01* Y4279D01* X3493Y4043D02* X3470Y4020D01* X3520Y3911D02* Y3920D01* X3505Y3896D02* X3520Y3911D01* X3505Y3896D02* X3520Y3881D01* Y3870D01* X3570D02* X3596Y3896D01* X3620Y3920D02* X3596Y3896D01* X3670Y3970D02* X3693Y3993D01* X3695Y3995D02* X3693Y3993D01* X3720Y3970D02* X3695Y3995D01* X3752Y4045D02* X3751D01* Y4048D01* X3752Y4045D02* X3770Y4063D01* Y4070D01* Y3870D02* X3792Y3848D01* Y3846D01* X3794D01* X3798Y3772D02* X3795D01* X3793Y3770D01* X3770D01* X3670D02* X3671Y3771D01* X3645Y3797D01* X3720Y3620D02* X3724D01* X3737Y3607D01* X3740D01* X3770Y3570D02* X3840Y3500D01* X3891D01* X3969D02* Y3522D01* X3993Y3546D01* X3955Y3558D02* X3897Y3500D01* X3891D01* X3870Y3579D02* X3899Y3608D01* X3870Y3641D02* X3892D01* X3909Y3658D01* X4122Y3467D02* Y3468D01* X4063D01* Y3393D02* X4066Y3390D01* X4122D01* Y3385D01* Y3318D02* D01* X4063D01* Y3243D02* X4120D01* X4122Y3240D01* X4126Y3167D02* Y3168D01* X4063D01* Y3143D02* X4121D01* X4126Y3137D01* X3997Y3323D02* X3979Y3305D01* X3920D01* X3938Y3287D01* Y3189D01* X3951Y3176D01* X3981D01* X3960Y3131D02* X3959D01* X3938Y3110D01* X3890Y3131D02* X3887D01* X3868Y3112D01* X3788Y3128D02* Y3115D01* X3780D01* X3592Y3232D02* X3570Y3254D01* Y3270D01* Y3470D02* X3560D01* X3545Y3485D01* Y3484D02* Y3485D01* Y3484D02* X3531Y3470D01* X3520D01* X3441Y3604D02* X3425Y3620D01* X3420D01* X3392Y3604D02* X3376Y3620D01* X3370D01* X3344Y3602D02* X3343D01* Y3605D01* X3328Y3620D01* X3320D01* Y3670D02* Y3672D01* X3345D01* X3370Y3670D02* X3394D01* X3420D02* X3445D01* Y3719D02* X3420D01* Y3720D01* X3395Y3719D02* X3370D01* Y3720D01* X3342Y3719D02* X3320D01* Y3720D01* X3270Y3370D02* X3247Y3347D01* Y3340D01* X3270Y3320D02* X3250Y3340D01* X3247D01* X3220Y3320D02* X3200Y3340D01* X3192D01* X3009Y3443D02* X3020Y3432D01* Y3420D01* X3089Y3443D02* X3097D01* X3120Y3420D01* X3170Y3470D02* X3155Y3485D01* X3148D01* X3170Y3570D02* Y3579D01* X3186Y3595D01* X3185D01* Y3596D01* X3092Y3640D02* X3100D01* X3120Y3620D01* Y3570D02* X3110D01* X3095Y3585D01* X3096D01* X3070Y3570D02* X3055Y3585D01* X3047D01* X3020Y3620D02* X3000Y3640D01* X2992D01* X3020Y3670D02* X3006Y3684D01* X2998D01* X3047Y3740D02* X3067Y3720D01* X3070D01* X3093Y3747D02* X3070Y3770D01* X3133Y3744D02* Y3733D01* X3120Y3720D01* Y3820D02* X3129D01* X3145Y3836D01* Y3838D01* X3196Y3896D02* X3170Y3870D01* X3195Y3896D02* X3196D01* X3191Y3949D02* X3170Y3970D01* X3251Y4089D02* X3270Y4070D01* X3296Y4094D02* X3320Y4070D01* X3297Y4095D02* X3296Y4094D01* X4380Y3592D02* Y3593D01* X4437D01* Y3518D02* X4386D01* X4377Y3509D01* X4394Y3493D01* X4437D01* X4379Y3442D02* Y3443D01* X4437D01* Y3468D02* X4373D01* X4354Y3486D01* X4437Y3343D02* X4381D01* Y3342D01* X4380Y3270D02* X4383Y3268D01* X4437D01* X4359Y3169D02* X4437D01* Y3168D01* Y3143D02* Y3142D01* X4377D01* X4437Y3068D02* X4387D01* X4376Y3057D01* X4391Y3043D01* X4437D01* Y2968D02* X4382D01* X4354Y2940D01* X4355D01* Y2918D01* X4419Y2354D02* Y2291D01* X4443D02* X4467D01* X4443D02* X4419D01* Y2229D01* X4467D02* Y2291D01* Y2354D01* X4547Y2350D02* Y2287D01* X4571D02* X4595D01* X4571D02* X4547D01* Y2225D01* X4595D02* Y2287D01* Y2350D01* X4643Y2223D02* Y2165D01* X4671D02* X4672D01* X4671D02* X4643D01* Y2108D01* X4671D02* Y2165D01* X4672D02* D01* X4700D02* X4672D01* Y2223D01* D01* Y2287D01* X4700D02* X4681D01* X4672D01* X4657D01* Y2350D01* X4705D02* Y2287D01* X4700D01* Y2223D01* Y2165D01* Y2108D01* X4743Y2223D02* Y2165D01* Y2108D01* X4771D02* Y2165D01* X4743D01* X4771D02* X4772D01* D01* X4800D02* X4772D01* Y2223D01* D01* Y2291D01* X4800D02* X4778D01* X4772D01* X4755D01* Y2365D01* X4800D02* X4801D01* Y2291D01* X4800D01* Y2223D01* Y2165D01* Y2108D01* X4770Y1905D02* X4772D01* Y1820D01* X4939Y2229D02* Y2291D01* X4963D02* X4986D01* X4963D02* X4939D01* Y2354D01* X4986D02* Y2291D01* Y2229D01* X4980Y2410D02* X4985D01* X5009Y2434D01* X4980Y2472D02* X4972D01* X4948Y2448D01* X5437Y2063D02* X5473D01* Y2128D01* X5437D02* Y2063D01* D01* X5401D01* Y2128D01* X5287Y2223D02* X5335D01* Y2256D01* X5287D01* Y2289D02* X5335D01* Y2258D01* Y2256D01* X5333D01* X5335Y2258D01* X5445Y2256D02* D01* Y2223D01* X5493D01* Y2256D02* X5445D01* Y2289D01* X5493D01* X5625D02* X5673D01* Y2256D01* X5625D01* Y2223D02* X5673D01* Y2256D01* X5783D02* D01* Y2289D01* X5832D01* Y2256D02* X5783D01* Y2223D01* X5832D01* X5717Y2128D02* Y2063D01* X5681D01* Y2128D01* X5645D02* Y2063D01* X5681D01* D01* X5911Y2066D02* X5922D01* X5936Y2080D01* X5961Y2066D02* X5975Y2081D01* Y2090D01* X6075Y2190D02* Y2181D01* X6061Y2166D01* Y2066D02* X6075Y2081D01* Y2090D01* X6021Y2136D02* Y2127D01* X6011Y2116D01* X6021Y2090D02* Y2077D01* X6011Y2066D01* X6021Y2036D02* Y2027D01* X6011Y2016D01* X6075Y1990D02* Y1981D01* X6061Y1966D01* X6075Y1890D02* Y1881D01* X6061Y1866D01* X6075Y1790D02* Y1781D01* X6061Y1766D01* X6021Y1790D02* Y1777D01* X6011Y1766D01* X5975Y1836D02* Y1831D01* X5961Y1816D01* X5975Y1790D02* Y1781D01* X5961Y1766D01* X5975Y1690D02* Y1681D01* X5961Y1666D01* X6075Y1690D02* Y1681D01* X6061Y1666D01* X6075Y1636D02* Y1631D01* X6061Y1616D01* X6075Y1590D02* Y1581D01* X6061Y1566D01* X6021Y1590D02* Y1577D01* X6011Y1566D01* X5975Y1490D02* Y1481D01* X5961Y1466D01* X5921Y1436D02* Y1427D01* X5911Y1416D01* X5921Y1390D02* Y1377D01* X5911Y1366D01* X5921Y1336D02* Y1327D01* X5911Y1316D01* X5961D02* X5975Y1331D01* Y1336D01* X5961Y1366D02* X5975Y1381D01* Y1390D01* X6011Y1316D02* X6021Y1327D01* Y1336D01* X6011Y1366D02* X6021Y1377D01* Y1390D01* X6011Y1416D02* X6021Y1427D01* Y1436D01* X6061Y1416D02* X6075Y1431D01* Y1436D01* X6061Y1466D02* X6075Y1481D01* Y1490D01* X5344Y1139D02* Y1201D01* X5368D02* X5392D01* X5368D02* X5344D01* Y1263D01* X5392D02* Y1201D01* Y1139D01* X5558Y1201D02* Y1265D01* Y1323D01* X5560D02* X5588D01* Y1380D01* X5560D02* Y1323D01* X5559D01* X5558D01* X5530D01* Y1380D01* Y1323D02* Y1265D01* Y1201D01* X5553D01* X5558D01* X5588D01* Y1265D01* Y1323D01* X5630Y1380D02* Y1323D01* Y1265D01* Y1201D01* X5650D01* X5658D01* X5677D01* Y1255D01* X5688Y1265D01* Y1323D01* X5659D02* X5660D01* X5688D01* Y1380D01* X5660D02* Y1323D01* X5659D02* X5658D01* X5630D01* X5658D02* Y1265D01* Y1201D01* X5736Y1263D02* Y1201D01* X5760D01* X5736D02* Y1139D01* X5783D02* Y1201D01* Y1263D02* Y1201D01* X5760D01* X6111Y1316D02* X6121Y1327D01* Y1336D01* X6211Y1366D02* X6221Y1377D01* Y1390D01* X6161Y1466D02* X6175Y1481D01* Y1490D01* X6261Y1466D02* X6275Y1481D01* Y1490D01* X6361Y1466D02* X6375Y1481D01* Y1490D01* X6461Y1466D02* X6475Y1481D01* Y1490D01* X6571Y1486D02* Y1477D01* X6561Y1466D01* X6571Y1440D02* Y1427D01* X6561Y1416D01* X6611Y1366D02* X6625Y1381D01* D01* X6611Y1416D02* X6625Y1431D01* Y1440D01* X6661Y1466D02* X6671Y1477D01* Y1486D01* X6711Y1416D02* X6725Y1431D01* Y1440D01* X6761Y1466D02* X6771Y1477D01* Y1486D01* X6563Y1220D02* X6575D01* X6588Y1207D01* X6628D01* X6673D01* Y1177D01* D01* X6628D01* Y1147D02* X6673D01* Y1177D01* X6783D02* D01* Y1207D01* X6829D01* Y1177D02* X6783D01* Y1147D01* X6829D01* X6959Y1162D02* X6993D01* Y1146D01* X7055D02* Y1162D01* X7089D01* X7011Y1316D02* X7025Y1331D01* Y1340D01* X7011Y1366D02* X7025Y1381D01* Y1386D01* X6971D02* Y1377D01* X6961Y1366D01* X6925Y1386D02* Y1381D01* X6911Y1366D01* X7258Y1449D02* X7224D01* Y1433D01* X7190Y1411D02* X7181D01* X7162Y1430D01* Y1433D01* Y1441D01* X7136Y1407D02* X7162Y1433D01* D01* Y1441D02* X7186Y1465D01* X7162Y1489D01* Y1496D01* X6911Y1466D02* X6925Y1481D01* Y1486D01* X6911Y1516D02* X6925Y1531D01* Y1540D01* X6861Y1566D02* X6871Y1577D01* Y1586D01* X6861Y1666D02* X6871Y1677D01* Y1686D01* X6861Y1766D02* X6871Y1777D01* Y1786D01* X6911Y1816D02* X6925Y1831D01* Y1840D01* X6961Y1816D02* X6971Y1827D01* Y1840D01* Y1686D02* Y1677D01* X6961Y1666D01* X6971Y1640D02* Y1627D01* X6961Y1616D01* X6861Y1866D02* X6871Y1877D01* Y1886D01* X6911Y1866D02* X6925Y1881D01* Y1886D01* X6911Y1916D02* X6925Y1931D01* Y1940D01* X6861Y1966D02* X6871Y1977D01* Y1986D01* X6861Y2066D02* X6871Y2077D01* Y2086D01* X6911Y2066D02* X6925Y2081D01* Y2086D01* X6961Y2116D02* X6971Y2127D01* Y2140D01* X7011Y2166D02* X7025Y2181D01* Y2186D01* X6861Y2416D02* X6871Y2427D01* Y2440D01* X6911Y2416D02* X6925Y2431D01* Y2440D01* X6971D02* Y2427D01* X6961Y2416D01* X6971Y2386D02* Y2377D01* X6961Y2366D01* X6925Y2286D02* Y2281D01* X6911Y2266D01* X6925Y2240D02* Y2231D01* X6911Y2216D01* X6871Y2186D02* Y2177D01* X6861Y2166D01* X6761Y2266D02* X6771Y2277D01* Y2286D01* X6725Y2386D02* Y2381D01* X6711Y2366D01* X6671Y2286D02* Y2277D01* X6661Y2266D01* X6571Y2286D02* Y2277D01* X6561Y2266D01* X6461D02* X6475Y2281D01* Y2290D01* X6461Y2316D02* X6475Y2331D01* Y2336D01* X6461Y2416D02* X6475Y2431D01* Y2436D01* X6561Y2416D02* X6571Y2427D01* Y2440D01* X6375Y2390D02* Y2381D01* X6361Y2366D01* X6375Y2290D02* Y2281D01* X6361Y2266D01* X6321Y2290D02* Y2277D01* X6311Y2266D01* X6275Y2290D02* Y2281D01* X6261Y2266D01* X6161D02* X6175Y2281D01* Y2290D01* X6211Y2266D02* X6221Y2277D01* Y2290D01* X6175Y2336D02* Y2331D01* X6161Y2316D01* X6075Y2336D02* Y2331D01* X6061Y2316D01* X5961Y2266D02* X5975Y2281D01* Y2290D01* X5961Y2316D02* X5975Y2331D01* Y2336D01* X5911Y2366D02* X5921Y2377D01* Y2390D01* X5961Y2366D02* X5975Y2381D01* Y2390D01* X5961Y2416D02* X5975Y2431D01* Y2436D01* X5799Y3389D02* X5770D01* X5818Y3562D02* Y3582D01* X5833Y3597D01* X5849D01* Y3562D02* Y3597D01* X5881D01* X5897D02* X5881D01* Y3562D01* X5912D02* Y3582D01* X5897Y3597D01* Y3596D01* X5900D01* X5837Y3637D02* X5852D01* X5874Y3659D01* X5865Y3669D01* X5837D01* Y3700D02* X5865D01* X5879D01* Y3706D01* X5875Y3710D01* X5865Y3700D01* Y3669D02* X5879D01* Y3664D01* X5874Y3659D01* X5879Y3669D02* Y3689D01* Y3700D01* X5875Y3710D02* X5854Y3732D01* X5837D01* X5838Y3811D02* Y3847D01* D01* X5917Y4089D02* Y4104D01* X5943Y4130D01* X5944Y4185D02* X5953D01* X5968Y4170D01* X5985D01* X7244Y4764D02* D01* X7216D01* X7154D02* X7127D01* D01* X6854Y4272D02* X6838D01* X6832Y4266D01* X6815Y4248D01* X6850Y4213D01* D01* X6811Y4165D02* X6787Y4189D01* X6752D01* X6736Y4248D02* Y4250D01* X6704Y4282D01* X6689Y4267D01* Y4248D01* D01* X6688D01* X6657Y3549D02* X6481D01* X6486Y3490D02* X6440D01* X6286Y3644D01* X6235Y3744D02* X6286D01* X6481Y3549D01* X6486Y3490D02* X6612Y3364D01* X6657D01* X6730D01* X6764Y3398D01* X6843D02* X6850Y3405D01* Y3471D01* X7135Y2906D02* X7139D01* X7162Y2929D01* X7173Y2940D01* X7185Y2952D01* X7189D01* X7258Y2945D02* X7224D01* Y2929D01* X7189Y2889D02* X7185D01* X7173Y2877D01* X7162Y2866D01* X7185Y2843D01* X7189D01* X7052Y2692D02* X7044Y2684D01* Y2630D01* X7039D01* X7018D01* Y2569D01* X6885Y2564D02* X6933Y2612D01* X6934D01* Y2630D02* D01* Y2612D01* Y2564D01* X6929Y2630D02* X6934D01* Y2631D01* X6939Y2698D02* X6934Y2693D01* Y2631D01* X6929Y2636D01* Y2652D01* X6885Y2696D01* X6837Y2634D02* X6839Y2632D01* Y2623D01* X6781Y2565D01* X6837D02* Y2630D01* X6838D02* X6837D01* Y2634D01* Y2695D01* X6726Y2694D02* Y2648D01* X6728Y2630D02* X6726D01* Y2567D01* X6672Y2573D02* X6726Y2627D01* Y2648D01* X6672Y2702D01* X7224Y2866D02* Y2882D01* X7258D01* D383* X2049Y1699D02* D03* X2053D02* D03* D101* X2041Y1632D02* D03* X2061D02* D03* X2120D02* D03* X2140D02* D03* Y1707D02* D03* X2120D02* D03* X2695Y1530D02* D03* X2727D02* D03* X2758D02* D03* X2790D02* D03* X2821D02* D03* X2853D02* D03* X2884D02* D03* X2916D02* D03* X2947D02* D03* X2979D02* D03* X3010D02* D03* X3042D02* D03* X3073D02* D03* X3105D02* D03* X3136D02* D03* X3168D02* D03* X3199D02* D03* X3231D02* D03* X3262D02* D03* X3294D02* D03* X3325D02* D03* X3357D02* D03* X3388D02* D03* X3420D02* D03* X3451D02* D03* X3483D02* D03* X3514D02* D03* X3546D02* D03* X3577D02* D03* X3609D02* D03* Y1472D02* D03* X3577D02* D03* X3546D02* D03* X3514D02* D03* X3483D02* D03* X3451D02* D03* X3420D02* D03* X3388D02* D03* X3357D02* D03* X3325D02* D03* X3294D02* D03* X3262D02* D03* X3231D02* D03* X3199D02* D03* X3168D02* D03* X3136D02* D03* X3105D02* D03* X3073D02* D03* X3042D02* D03* X3010D02* D03* X2979D02* D03* X2947D02* D03* X2916D02* D03* X2884D02* D03* X2853D02* D03* X2821D02* D03* X2790D02* D03* X2758D02* D03* X2727D02* D03* X2695D02* D03* X3593Y1208D02* D03* X3561D02* D03* X3530D02* D03* X3498D02* D03* X3467D02* D03* X3435D02* D03* X3404D02* D03* X3372D02* D03* X3341D02* D03* X3309D02* D03* X3278D02* D03* X3246D02* D03* X3215D02* D03* X3183D02* D03* X3152D02* D03* X3120D02* D03* X3089D02* D03* X3057D02* D03* X3026D02* D03* X2994D02* D03* X2963D02* D03* X2931D02* D03* X2900D02* D03* X2868D02* D03* X2837D02* D03* X2805D02* D03* X2774D02* D03* X2742D02* D03* X2711D02* D03* X2679D02* D03* Y1150D02* D03* X2711D02* D03* X2742D02* D03* X2774D02* D03* X2805D02* D03* X2837D02* D03* X2868D02* D03* X2900D02* D03* X2931D02* D03* X2963D02* D03* X2994D02* D03* X3026D02* D03* X3057D02* D03* X3089D02* D03* X3120D02* D03* X3152D02* D03* X3183D02* D03* X3215D02* D03* X3246D02* D03* X3278D02* D03* X3309D02* D03* X3341D02* D03* X3372D02* D03* X3404D02* D03* X3435D02* D03* X3467D02* D03* X3498D02* D03* X3530D02* D03* X3561D02* D03* X3593D02* D03* X4971D02* D03* X4939D02* D03* X4908D02* D03* X4876D02* D03* X4845D02* D03* X4813D02* D03* X4782D02* D03* X4750D02* D03* X4719D02* D03* X4687D02* D03* X4656D02* D03* X4624D02* D03* X4593D02* D03* X4561D02* D03* X4530D02* D03* X4498D02* D03* X4467D02* D03* X4435D02* D03* X4404D02* D03* X4372D02* D03* X4341D02* D03* X4309D02* D03* X4278D02* D03* X4246D02* D03* X4215D02* D03* X4183D02* D03* X4152D02* D03* X4120D02* D03* X4089D02* D03* X4057D02* D03* X4026D02* D03* X3994D02* D03* X3963D02* D03* X3931D02* D03* X3900D02* D03* X3868D02* D03* X3837D02* D03* X3805D02* D03* X3774D02* D03* Y1208D02* D03* X3805D02* D03* X3837D02* D03* X3868D02* D03* X3900D02* D03* X3931D02* D03* X3963D02* D03* X3994D02* D03* X4026D02* D03* X4057D02* D03* X4089D02* D03* X4120D02* D03* X4152D02* D03* X4183D02* D03* X4215D02* D03* X4246D02* D03* X4278D02* D03* X4309D02* D03* X4341D02* D03* X4372D02* D03* X4404D02* D03* X4435D02* D03* X4467D02* D03* X4498D02* D03* X4530D02* D03* X4561D02* D03* X4593D02* D03* X4624D02* D03* X4656D02* D03* X4687D02* D03* X4719D02* D03* X4750D02* D03* X4782D02* D03* X4813D02* D03* X4845D02* D03* X4876D02* D03* X4908D02* D03* X4939D02* D03* X4971D02* D03* X5002D02* D03* X5034D02* D03* X5065D02* D03* Y1150D02* D03* X5034D02* D03* X5002D02* D03* X5081Y1472D02* D03* X5049D02* D03* X5018D02* D03* X4986D02* D03* X4955D02* D03* X4923D02* D03* X4892D02* D03* X4860D02* D03* X4829D02* D03* X4797D02* D03* X4766D02* D03* X4734D02* D03* X4703D02* D03* X4671D02* D03* X4640D02* D03* X4609D02* D03* X4577D02* D03* X4546D02* D03* X4514D02* D03* X4483D02* D03* X4451D02* D03* X4420D02* D03* X4388D02* D03* X4357D02* D03* X4325D02* D03* X4294D02* D03* X4262D02* D03* X4231D02* D03* X4199D02* D03* X4168D02* D03* X4136D02* D03* X4105D02* D03* X4073D02* D03* X4042D02* D03* X4010D02* D03* X3979D02* D03* X3947D02* D03* X3916D02* D03* X3884D02* D03* X3853D02* D03* X3821D02* D03* X3790D02* D03* Y1530D02* D03* X3821D02* D03* X3853D02* D03* X3884D02* D03* X3916D02* D03* X3947D02* D03* X3979D02* D03* X4010D02* D03* X4042D02* D03* X4073D02* D03* X4105D02* D03* X4136D02* D03* X4168D02* D03* X4199D02* D03* X4231D02* D03* X4262D02* D03* X4294D02* D03* X4325D02* D03* X4357D02* D03* X4388D02* D03* X4420D02* D03* X4451D02* D03* X4483D02* D03* X4514D02* D03* X4546D02* D03* X4577D02* D03* X4609D02* D03* X4640D02* D03* X4671D02* D03* X4703D02* D03* X4734D02* D03* X4766D02* D03* X4797D02* D03* X4829D02* D03* X4860D02* D03* X4892D02* D03* X4923D02* D03* X4955D02* D03* X4986D02* D03* X5018D02* D03* X5049D02* D03* X5081D02* D03* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D081* X1607Y1866D02* D03* X1638D02* D03* Y1976D02* D03* X1607D02* D03* X1587Y2059D02* D03* X1516D02* D03* X1809Y2165D02* D03* Y2236D02* D03* X1587Y2343D02* D03* X1516D02* D03* Y2531D02* D03* X1587D02* D03* X1809Y2638D02* D03* Y2709D02* D03* X1587Y2815D02* D03* X1516D02* D03* X2365Y2965D02* D03* Y2996D02* D03* X2475D02* D03* Y2965D02* D03* X2555D02* D03* Y2996D02* D03* X2665D02* D03* Y2965D02* D03* X3796Y3005D02* D03* X3765D02* D03* Y3115D02* D03* X3796D02* D03* X3936Y3305D02* D03* X3905D02* D03* Y3415D02* D03* X3936D02* D03* X4571Y2303D02* D03* Y2272D02* D03* X4681D02* D03* Y2303D02* D03* X5335Y2240D02* D03* Y2271D02* D03* X5445D02* D03* Y2240D02* D03* X5673D02* D03* Y2271D02* D03* X5783D02* D03* Y2240D02* D03* X6728Y2645D02* D03* Y2614D02* D03* X6838D02* D03* Y2645D02* D03* X6929D02* D03* Y2614D02* D03* X7039D02* D03* Y2645D02* D03* X6783Y1162D02* D03* Y1193D02* D03* X6673D02* D03* Y1162D02* D03* X5760Y1185D02* D03* Y1216D02* D03* X5650D02* D03* Y1185D02* D03* X6827Y4055D02* D03* X6796D02* D03* Y4165D02* D03* X6827D02* D03* D075* X1891Y4481D02* D03* Y4540D02* D03* X2009D02* D03* Y4481D02* D03* X1951Y2890D02* D03* X1892D02* D03* Y2772D02* D03* X1951D02* D03* X1736Y2408D02* D03* Y2467D02* D03* X1854D02* D03* Y2408D02* D03* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* D083* X2543Y2534D02* D03* X2536D02* D03* X2378D02* D03* X2371D02* D03* X2255D02* D03* X2248D02* D03* X2090D02* D03* X2083D02* D03* Y2734D02* D03* X2090D02* D03* X2248D02* D03* X2255D02* D03* X2371D02* D03* X2378D02* D03* X2536D02* D03* X2543D02* D03* D080* X2179Y4516D02* D03* X1814Y4366D02* D03* X1730Y2732D02* D03* Y2260D02* D03* X1606Y1069D02* D03* X3047D02* D03* X3344D02* D03* X5405D02* D03* X6252D02* D03* X7693D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D073* X2435Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2372D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2282D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2219D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* D086* X1839Y1162D02* D03* Y1310D02* D03* D088* X1950Y4292D02* D03* Y4048D02* D03* X5437Y2063D02* D03* X5681D02* D03* D359* X4217Y1820D02* D03* X4287D02* D03* X4737D02* D03* X4807D02* D03* X5524Y1668D02* D03* X5594D02* D03* D087* X6760Y2791D02* D03* X6909D02* D03* Y3232D02* D03* X6760D02* D03* Y4343D02* D03* X6909D02* D03* Y4783D02* D03* X6760D02* D03* M02*gerbv-2.7.0/example/ekf2/Makefile.in0000644000175000017500000003631713423533412017046 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/ekf2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt l0.grb l1.grb l2.grb l3.grb l4.grb l5.grb \ stp0.grb stp1.grb d1.grb resplan.grb gnd.grb pow.grb pow3.grb \ sieb0.grb sieb1.grb drill0.exc drill1.exc drill20.exc drill30.exc MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/ekf2/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/ekf2/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/ekf2/resplan.grb0000644000175000017500000060145513421555714017151 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X3550Y3152D02* X3529D01* X3550Y3156D02* X3529D01* Y3148D02* X3550D01* X3529Y3144D02* X3550D01* X3529Y3140D02* X3550D01* X3529Y3136D02* X3550D01* Y3132D02* X3529D01* X3550Y3128D02* X3529D01* X3550Y3124D02* X3529D01* X3550Y3120D02* X3529D01* X3550Y3116D02* X3529D01* Y3112D02* X3550D01* X3529Y3108D02* X3550D01* X3529Y3104D02* X3550D01* Y3096D02* X3529D01* X3550Y3100D02* X3529D01* Y3092D02* X3550D01* X3529Y3088D02* X3550D01* Y3080D02* X3529D01* X3550Y3084D02* X3529D01* Y3076D02* X3550D01* X3529Y3072D02* X3550D01* Y3068D02* X3529D01* X3550Y3064D02* X3529D01* X3550Y3060D02* X3529D01* X3550Y3056D02* X3529D01* X3550Y3052D02* X3529D01* Y3048D02* X3550D01* X3529Y3044D02* X3550D01* X3529Y3040D02* X3550D01* Y3032D02* X3529D01* X3550Y3036D02* X3529D01* Y3028D02* X3550D01* X3529Y3024D02* X3550D01* Y3000D02* X3529D01* X3550Y2996D02* X3529D01* Y2988D02* X3550D01* X3529Y2992D02* X3550D01* X3529Y3020D02* X3550D01* X3529Y3016D02* X3550D01* X3529Y3012D02* X3550D01* Y3008D02* X3529D01* X3550Y3004D02* X3529D01* Y2984D02* X3550D01* X3529Y2980D02* X3550D01* X3529Y2976D02* X3550D01* Y2968D02* X3529D01* X3550Y2972D02* X3529D01* Y2964D02* X3550D01* X3529Y2960D02* X3550D01* X3529Y2956D02* X3550D01* X3529Y2952D02* X3550D01* X3529Y2948D02* X3550D01* Y2944D02* X3529D01* X3550Y2940D02* X3529D01* Y2932D02* X3550D01* X3529Y2936D02* X3550D01* Y2928D02* X3529D01* X3550Y2924D02* X3529D01* Y2920D02* X3550D01* X3529Y2916D02* X3550D01* X3529Y2912D02* X3550D01* Y2904D02* X3529D01* X3550Y2908D02* X3529D01* Y2900D02* X3550D01* X3529Y2896D02* X3550D01* X3529Y2892D02* X3550D01* X3529Y2888D02* X3550D01* X3529Y2884D02* X3550D01* Y2880D02* X3529D01* X3550Y2876D02* X3529D01* X3555Y2854D02* X3551Y2858D01* X3550Y2864D02* X3529D01* X3550Y2860D02* X3529D01* Y2868D02* X3550D01* X3529Y2872D02* X3550D01* X3555Y2854D02* X3996D01* X4000Y2858D01* Y2882D01* X4001Y2868D02* X4558D01* Y2880D02* X4001D01* X4028Y2858D02* X4531D01* X4535Y2854D01* X4558Y2872D02* X4001D01* Y2864D02* X4558D01* X4536Y2852D02* X4558D01* Y2848D02* X4536D01* X4558Y2844D02* X4536D01* Y2836D02* X4558D01* X4536Y2832D02* X4558D01* X4536Y2828D02* X4558D01* Y2824D02* X4536D01* X4558Y2820D02* X4536D01* Y2812D02* X4558D01* X4536Y2816D02* X4558D01* Y2840D02* X4536D01* X4535Y2854D02* Y1748D01* X4531Y1744D01* X4028D01* X4023Y1764D02* X4001D01* Y1768D02* X4023D01* X4001Y1772D02* X4023D01* Y1780D02* X4001D01* X4023Y1776D02* X4001D01* Y1760D02* X4023D01* X4001Y1756D02* X4023D01* X4001Y1744D02* X4026D01* X4028D02* X4024Y1748D01* X4023D02* X4001D01* X4023Y1752D02* X4001D01* X4024Y1748D02* Y2854D01* X4023Y2836D02* X3529D01* Y2832D02* X4023D01* X4001Y2824D02* X4023D01* Y2828D02* X3999D01* X4023Y2840D02* X3529D01* X4023Y2772D02* X4001D01* X4023Y2768D02* X4001D01* Y2776D02* X4023D01* X4001Y2780D02* X4023D01* Y2804D02* X4001D01* X4023Y2808D02* X4001D01* Y2800D02* X4023D01* X4001Y2796D02* X4023D01* X4001Y2792D02* X4023D01* Y2788D02* X4001D01* X4023Y2784D02* X4001D01* Y2764D02* X4023D01* X4001Y2760D02* X4023D01* X4001Y2756D02* X4023D01* Y2748D02* X4001D01* X4023Y2752D02* X4001D01* X4023Y2740D02* X4001D01* X4023Y2744D02* X4001D01* Y2736D02* X4023D01* X4001Y2732D02* X4023D01* X4001Y2728D02* X4023D01* Y2724D02* X4001D01* X4023Y2720D02* X4001D01* Y2712D02* X4023D01* X4001Y2716D02* X4023D01* Y2708D02* X4001D01* X4023Y2704D02* X4001D01* Y2700D02* X4023D01* X4001Y2696D02* X4023D01* X4001Y2692D02* X4023D01* Y2684D02* X4001D01* X4023Y2688D02* X4001D01* Y2680D02* X4023D01* X4001Y2676D02* X4023D01* Y2672D02* X4001D01* X4023Y2668D02* X4001D01* X4023Y2664D02* X4001D01* X4023Y2660D02* X4001D01* X4023Y2656D02* X4001D01* Y2648D02* X4023D01* X4001Y2652D02* X4023D01* Y2644D02* X4001D01* X4023Y2640D02* X4001D01* Y2636D02* X4023D01* X4001Y2632D02* X4023D01* X4001Y2628D02* X4023D01* Y2620D02* X4001D01* X4023Y2624D02* X4001D01* Y2616D02* X4023D01* X4001Y2612D02* X4023D01* Y2608D02* X4001D01* X4023Y2604D02* X4001D01* X4023Y2600D02* X4001D01* X4023Y2596D02* X4001D01* X4023Y2592D02* X4001D01* Y2588D02* X4023D01* X4001Y2584D02* X4023D01* X4001Y2580D02* X4023D01* Y2572D02* X4001D01* X4023Y2576D02* X4001D01* Y2568D02* X4023D01* X4001Y2564D02* X4023D01* Y2556D02* X4001D01* X4023Y2560D02* X4001D01* Y2552D02* X4023D01* X4001Y2548D02* X4023D01* Y2544D02* X4001D01* X4023Y2540D02* X4001D01* X4023Y2536D02* X4001D01* X4023Y2532D02* X4001D01* X4023Y2528D02* X4001D01* Y2524D02* X4023D01* X4001Y2520D02* X4023D01* X4001Y2516D02* X4023D01* Y2508D02* X4001D01* X4023Y2512D02* X4001D01* Y2504D02* X4023D01* X4001Y2500D02* X4023D01* X4001Y2496D02* X4023D01* X4001Y2492D02* X4023D01* X4001Y2488D02* X4023D01* Y2484D02* X4001D01* X4023Y2480D02* X4001D01* Y2472D02* X4023D01* X4001Y2476D02* X4023D01* Y2468D02* X4001D01* X4023Y2464D02* X4001D01* Y2460D02* X4023D01* X4001Y2456D02* X4023D01* X4001Y2452D02* X4023D01* Y2444D02* X4001D01* X4023Y2448D02* X4001D01* Y2440D02* X4023D01* X4001Y2436D02* X4023D01* Y2412D02* X4001D01* X4023Y2408D02* X4001D01* Y2400D02* X4023D01* X4001Y2404D02* X4023D01* X4001Y2432D02* X4023D01* X4001Y2428D02* X4023D01* X4001Y2424D02* X4023D01* Y2420D02* X4001D01* X4023Y2416D02* X4001D01* Y2396D02* X4023D01* X4001Y2392D02* X4023D01* X4001Y2388D02* X4023D01* Y2380D02* X4001D01* X4023Y2384D02* X4001D01* X4023Y2372D02* X4001D01* X4023Y2376D02* X4001D01* Y2368D02* X4023D01* X4001Y2364D02* X4023D01* X4001Y2360D02* X4023D01* Y2356D02* X4001D01* X4023Y2352D02* X4001D01* Y2344D02* X4023D01* X4001Y2348D02* X4023D01* Y2340D02* X4001D01* X4023Y2336D02* X4001D01* X4023Y2332D02* X4001D01* Y2328D02* X4023D01* X4001Y2324D02* X4023D01* Y2316D02* X4001D01* X4023Y2320D02* X4001D01* Y2312D02* X4023D01* X4001Y2308D02* X4023D01* X4001Y2304D02* X4023D01* X4001Y2300D02* X4023D01* X4001Y2296D02* X4023D01* Y2292D02* X4001D01* X4023Y2288D02* X4001D01* Y2280D02* X4023D01* X4001Y2284D02* X4023D01* Y2276D02* X4001D01* X4023Y2272D02* X4001D01* X4023Y2268D02* X4001D01* Y2264D02* X4023D01* X4001Y2260D02* X4023D01* Y2252D02* X4001D01* X4023Y2256D02* X4001D01* Y2248D02* X4023D01* X4001Y2244D02* X4023D01* Y2240D02* X4001D01* X4023Y2236D02* X4001D01* X4023Y2232D02* X4001D01* X4023Y2228D02* X4001D01* X4023Y2224D02* X4001D01* Y2216D02* X4023D01* X4001Y2220D02* X4023D01* Y2212D02* X4001D01* X4023Y2208D02* X4001D01* X4023Y2204D02* X4001D01* Y2184D02* X4023D01* X4001Y2180D02* X4023D01* Y2176D02* X4001D01* X4023Y2172D02* X4001D01* X4023Y2168D02* X4001D01* X4023Y2196D02* X4001D01* X4023Y2200D02* X4001D01* Y2192D02* X4023D01* X4001Y2188D02* X4023D01* Y2164D02* X4001D01* X4023Y2160D02* X4001D01* Y2156D02* X4023D01* X4001Y2152D02* X4023D01* X4001Y2148D02* X4023D01* Y2140D02* X4001D01* X4023Y2144D02* X4001D01* Y2136D02* X4023D01* X4001Y2132D02* X4023D01* Y2124D02* X4001D01* X4023Y2128D02* X4001D01* Y2120D02* X4023D01* X4001Y2116D02* X4023D01* Y2112D02* X4001D01* X4023Y2108D02* X4001D01* X4023Y2104D02* X4001D01* X4023Y2100D02* X4001D01* X4023Y2096D02* X4001D01* Y2092D02* X4023D01* X4001Y2088D02* X4023D01* X4001Y2084D02* X4023D01* X4001Y2080D02* X4023D01* X4001Y2076D02* X4023D01* Y2068D02* X4001D01* X4023Y2072D02* X4001D01* Y2064D02* X4023D01* X4001Y2060D02* X4023D01* X4001Y2056D02* X4023D01* X4001Y2052D02* X4023D01* Y2048D02* X4001D01* X4023Y2044D02* X4001D01* X4023Y2040D02* X4001D01* X4023Y2036D02* X4001D01* X4023Y2032D02* X4001D01* Y2028D02* X4023D01* X4001Y2024D02* X4023D01* X4001Y2020D02* X4023D01* Y2012D02* X4001D01* X4023Y2016D02* X4001D01* Y2008D02* X4023D01* X4001Y2004D02* X4023D01* X4001Y2000D02* X4023D01* X4001Y1996D02* X4023D01* X4001Y1992D02* X4023D01* Y1988D02* X4001D01* X4023Y1984D02* X4001D01* Y1976D02* X4023D01* X4001Y1980D02* X4023D01* Y1972D02* X4001D01* X4023Y1968D02* X4001D01* Y1964D02* X4023D01* X4001Y1960D02* X4023D01* X4001Y1956D02* X4023D01* X4001Y1952D02* X4023D01* X4001Y1948D02* X4023D01* Y1940D02* X4001D01* X4023Y1944D02* X4001D01* Y1936D02* X4023D01* X4001Y1932D02* X4023D01* X4001Y1928D02* X4023D01* Y1924D02* X4001D01* X4023Y1920D02* X4001D01* Y1912D02* X4023D01* X4001Y1916D02* X4023D01* Y1908D02* X4001D01* X4023Y1904D02* X4001D01* Y1900D02* X4023D01* X4001Y1896D02* X4023D01* X4001Y1892D02* X4023D01* Y1884D02* X4001D01* X4023Y1888D02* X4001D01* Y1880D02* X4023D01* X4001Y1876D02* X4023D01* Y1852D02* X4001D01* X4023Y1848D02* X4001D01* Y1840D02* X4023D01* X4001Y1844D02* X4023D01* X4001Y1872D02* X4023D01* X4001Y1868D02* X4023D01* X4001Y1864D02* X4023D01* Y1860D02* X4001D01* X4023Y1856D02* X4001D01* Y1836D02* X4023D01* X4001Y1832D02* X4023D01* X4001Y1828D02* X4023D01* Y1820D02* X4001D01* X4023Y1824D02* X4001D01* Y1816D02* X4023D01* X4001Y1812D02* X4023D01* Y1808D02* X4001D01* X4023Y1804D02* X4001D01* X4023Y1800D02* X4001D01* X4023Y1796D02* X4001D01* X4023Y1792D02* X4001D01* Y1784D02* X4023D01* X4001Y1788D02* X4023D01* X4000Y1721D02* Y2827D01* X3996Y2831D01* X4001Y2820D02* X4023D01* Y2812D02* X4001D01* X4023Y2816D02* X4001D01* X3996Y2831D02* X3528D01* Y3209D01* X3529Y3200D02* X5314D01* Y3196D02* X3529D01* X3551Y3181D02* X3555Y3185D01* X3553Y3184D02* X3529D01* Y3180D02* X3550D01* X3529Y3188D02* X5314D01* X5315Y3185D02* Y4134D01* X5314Y4112D02* X5292D01* X5314Y4108D02* X5292D01* Y4100D02* X5314D01* X5292Y4104D02* X5314D01* Y4096D02* X5292D01* X5314Y4092D02* X5292D01* X5314Y4088D02* X5292D01* Y4084D02* X5314D01* X5292Y4080D02* X5314D01* Y4072D02* X5292D01* X5314Y4076D02* X5292D01* Y4068D02* X5314D01* X5292Y4064D02* X5314D01* Y4060D02* X5292D01* X5314Y4056D02* X5292D01* X5314Y4052D02* X5292D01* X5314Y4048D02* X5292D01* X5314Y4044D02* X5292D01* Y4040D02* X5314D01* X5292Y4036D02* X5314D01* X5292Y4032D02* X5314D01* Y4024D02* X5292D01* X5314Y4028D02* X5292D01* Y4020D02* X5314D01* X5292Y4016D02* X5314D01* Y4008D02* X5292D01* X5314Y4012D02* X5292D01* Y4004D02* X5314D01* X5292Y4000D02* X5314D01* Y3996D02* X5292D01* X5314Y3992D02* X5292D01* X5314Y3988D02* X5292D01* X5314Y3984D02* X5292D01* X5314Y3980D02* X5292D01* Y3976D02* X5314D01* X5292Y3972D02* X5314D01* X5292Y3968D02* X5314D01* Y3960D02* X5292D01* X5314Y3964D02* X5292D01* X5314Y3952D02* X5292D01* X5314Y3956D02* X5292D01* Y3948D02* X5314D01* X5292Y3944D02* X5314D01* X5292Y3940D02* X5314D01* X5292Y3936D02* X5314D01* Y3932D02* X5292D01* X5314Y3928D02* X5292D01* X5314Y3924D02* X5292D01* X5314Y3920D02* X5292D01* X5314Y3916D02* X5292D01* Y3912D02* X5314D01* X5292Y3908D02* X5314D01* X5292Y3904D02* X5314D01* Y3896D02* X5292D01* X5314Y3900D02* X5292D01* Y3892D02* X5314D01* X5292Y3888D02* X5314D01* Y3864D02* X5292D01* X5314Y3860D02* X5292D01* Y3852D02* X5314D01* X5292Y3856D02* X5314D01* X5292Y3884D02* X5314D01* X5292Y3880D02* X5314D01* X5292Y3876D02* X5314D01* Y3872D02* X5292D01* X5314Y3868D02* X5292D01* Y3848D02* X5314D01* X5292Y3844D02* X5314D01* X5292Y3840D02* X5314D01* Y3832D02* X5292D01* X5314Y3836D02* X5292D01* Y3828D02* X5314D01* X5292Y3824D02* X5314D01* X5292Y3820D02* X5314D01* X5292Y3816D02* X5314D01* X5292Y3812D02* X5314D01* Y3808D02* X5292D01* X5314Y3804D02* X5292D01* Y3796D02* X5314D01* X5292Y3800D02* X5314D01* Y3792D02* X5292D01* X5314Y3788D02* X5292D01* Y3784D02* X5314D01* X5292Y3780D02* X5314D01* X5292Y3776D02* X5314D01* Y3768D02* X5292D01* X5314Y3772D02* X5292D01* Y3764D02* X5314D01* X5292Y3760D02* X5314D01* X5292Y3756D02* X5314D01* X5292Y3752D02* X5314D01* X5292Y3748D02* X5314D01* Y3744D02* X5292D01* X5314Y3740D02* X5292D01* Y3732D02* X5314D01* X5292Y3736D02* X5314D01* Y3728D02* X5292D01* X5314Y3724D02* X5292D01* Y3720D02* X5314D01* X5292Y3716D02* X5314D01* X5292Y3712D02* X5314D01* Y3704D02* X5292D01* X5314Y3708D02* X5292D01* Y3700D02* X5314D01* X5292Y3696D02* X5314D01* Y3692D02* X5292D01* X5314Y3688D02* X5292D01* X5314Y3684D02* X5292D01* Y3676D02* X5314D01* X5292Y3680D02* X5314D01* Y3672D02* X5292D01* X5314Y3668D02* X5292D01* Y3660D02* X5314D01* X5292Y3664D02* X5314D01* X5292Y3656D02* X5314D01* X5292Y3652D02* X5314D01* X5292Y3648D02* X5314D01* Y3640D02* X5292D01* X5314Y3644D02* X5292D01* Y3636D02* X5314D01* X5292Y3632D02* X5314D01* Y3628D02* X5292D01* X5314Y3624D02* X5292D01* X5314Y3620D02* X5292D01* X5314Y3616D02* X5292D01* X5314Y3612D02* X5292D01* Y3608D02* X5314D01* X5292Y3604D02* X5314D01* X5292Y3600D02* X5314D01* Y3592D02* X5292D01* X5314Y3596D02* X5292D01* Y3588D02* X5314D01* X5292Y3584D02* X5314D01* Y3576D02* X5292D01* X5314Y3580D02* X5292D01* Y3572D02* X5314D01* X5292Y3568D02* X5314D01* Y3564D02* X5292D01* X5314Y3560D02* X5292D01* X5314Y3556D02* X5292D01* X5314Y3552D02* X5292D01* X5314Y3548D02* X5292D01* Y3544D02* X5314D01* X5292Y3540D02* X5314D01* X5292Y3536D02* X5314D01* Y3528D02* X5292D01* X5314Y3532D02* X5292D01* X5314Y3520D02* X5292D01* X5314Y3524D02* X5292D01* Y3516D02* X5314D01* X5292Y3512D02* X5314D01* X5292Y3508D02* X5314D01* X5292Y3504D02* X5314D01* Y3500D02* X5292D01* X5314Y3496D02* X5292D01* X5314Y3492D02* X5292D01* X5314Y3488D02* X5292D01* X5314Y3484D02* X5292D01* Y3480D02* X5314D01* X5292Y3476D02* X5314D01* X5292Y3472D02* X5314D01* Y3464D02* X5292D01* X5314Y3468D02* X5292D01* Y3460D02* X5314D01* X5292Y3456D02* X5314D01* X5292Y3452D02* X5314D01* X5292Y3448D02* X5314D01* X5292Y3444D02* X5314D01* Y3440D02* X5292D01* X5314Y3436D02* X5292D01* Y3428D02* X5314D01* X5292Y3432D02* X5314D01* Y3424D02* X5292D01* X5314Y3420D02* X5292D01* Y3416D02* X5314D01* X5292Y3412D02* X5314D01* X5292Y3408D02* X5314D01* Y3400D02* X5292D01* X5314Y3404D02* X5292D01* Y3396D02* X5314D01* X5292Y3392D02* X5314D01* X5292Y3388D02* X5314D01* X5292Y3384D02* X5314D01* X5292Y3380D02* X5314D01* Y3376D02* X5292D01* X5314Y3372D02* X5292D01* Y3364D02* X5314D01* X5292Y3368D02* X5314D01* Y3360D02* X5292D01* X5314Y3356D02* X5292D01* X5314Y3352D02* X5292D01* Y3348D02* X5314D01* X5292Y3344D02* X5314D01* Y3336D02* X5292D01* X5314Y3340D02* X5292D01* Y3332D02* X5314D01* X5292Y3328D02* X5314D01* X5292Y3324D02* X5314D01* X5292Y3320D02* X5314D01* X5292Y3316D02* X5314D01* Y3312D02* X5292D01* X5314Y3308D02* X5292D01* Y3300D02* X5314D01* X5292Y3304D02* X5314D01* Y3296D02* X5292D01* X5314Y3292D02* X5292D01* X5314Y3288D02* X5292D01* Y3268D02* X5314D01* X5292Y3264D02* X5314D01* Y3260D02* X5292D01* X5314Y3256D02* X5292D01* X5314Y3252D02* X5292D01* Y3244D02* X5314D01* X5292Y3248D02* X5314D01* Y3240D02* X5292D01* X5314Y3236D02* X5292D01* X5291Y3213D02* X5287Y3209D01* X3528D01* X3529Y3208D02* X5314D01* X5292Y3212D02* X5314D01* Y3216D02* X5292D01* X5314Y3220D02* X5292D01* Y3224D02* X5314D01* X5292Y3228D02* X5314D01* X5292Y3232D02* X5314D01* Y3272D02* X5292D01* X5314Y3276D02* X5292D01* Y3284D02* X5314D01* X5292Y3280D02* X5314D01* X5645Y2921D02* X5653Y2927D01* X5658Y2934D01* Y2954D02* X5653Y2963D01* X5645Y2968D01* X5625D02* X5617Y2962D01* X5612Y2954D01* Y2934D02* X5617Y2926D01* X5625Y2921D01* X5595Y3071D02* X5603Y3077D01* X5608Y3084D01* Y3104D02* X5603Y3113D01* X5595Y3118D01* X5575D02* X5567Y3112D01* X5562Y3104D01* Y3084D02* X5567Y3076D01* X5575Y3071D01* X5395Y2971D02* X5403Y2977D01* X5408Y2984D01* Y3004D02* X5403Y3013D01* X5395Y3018D01* X5375D02* X5367Y3012D01* X5362Y3004D01* Y2984D02* X5367Y2976D01* X5375Y2971D01* X5358Y2854D02* X5353Y2863D01* X5345Y2868D01* X5325D02* X5317Y2862D01* X5312Y2854D01* Y2834D02* X5317Y2826D01* X5325Y2821D01* X5345D02* X5353Y2827D01* X5358Y2834D01* X5245Y2921D02* X5253Y2927D01* X5258Y2934D01* Y2954D02* X5253Y2963D01* X5245Y2968D01* X5225D02* X5217Y2962D01* X5212Y2954D01* Y2934D02* X5217Y2926D01* X5225Y2921D01* X5145Y2821D02* X5153Y2827D01* X5158Y2834D01* Y2854D02* X5153Y2863D01* X5145Y2868D01* X5125D02* X5117Y2862D01* X5112Y2854D01* Y2834D02* X5117Y2826D01* X5125Y2821D01* X5292Y4132D02* X5314D01* X5292Y4136D02* X5316D01* X5292Y4148D02* X6149D01* Y4140D02* X5292D01* X5315Y4134D02* X5319Y4138D01* X5314Y4128D02* X5292D01* Y4116D02* X5314D01* X5292Y4120D02* X5314D01* X5292Y4124D02* X5314D01* X5319Y4138D02* X6150D01* X6149Y4144D02* X5292D01* Y4152D02* X6149D01* X6126Y4165D02* Y4421D01* X6127Y4412D02* X6534D01* X6510Y4396D02* X6534D01* Y4392D02* X6513D01* X6534Y4400D02* X6127D01* X6154Y4398D02* X6508D01* X6512Y4394D01* X6534Y4416D02* X6127D01* X6126Y4421D02* X6535D01* Y4346D01* X6534Y4292D02* X6513D01* X6534Y4296D02* X6513D01* Y4288D02* X6534D01* X6513Y4284D02* X6534D01* X6513Y4280D02* X6534D01* X6513Y4276D02* X6534D01* Y4272D02* X6513D01* X6534Y4268D02* X6513D01* X6534Y4264D02* X6513D01* X6534Y4260D02* X6513D01* X6534Y4256D02* X6513D01* Y4252D02* X6534D01* X6513Y4248D02* X6534D01* X6513Y4244D02* X6534D01* Y4236D02* X6513D01* X6534Y4240D02* X6513D01* X6534Y4228D02* X6513D01* X6534Y4232D02* X6513D01* Y4224D02* X6534D01* X6513Y4220D02* X6534D01* X6513Y4216D02* X6534D01* Y4212D02* X6513D01* X6534Y4208D02* X6513D01* Y4200D02* X6534D01* X6513Y4204D02* X6534D01* Y4196D02* X6513D01* X6534Y4192D02* X6513D01* Y4188D02* X6534D01* X6513Y4184D02* X6534D01* X6513Y4180D02* X6534D01* Y4172D02* X6513D01* X6534Y4176D02* X6513D01* Y4168D02* X6534D01* X6513Y4164D02* X6534D01* X6513Y4160D02* X6534D01* X6513Y4156D02* X6534D01* X6513Y4152D02* X6534D01* Y4148D02* X6513D01* X6534Y4144D02* X6513D01* Y4136D02* X6534D01* X6513Y4140D02* X6534D01* Y4132D02* X6513D01* X6534Y4128D02* X6513D01* X6534Y4124D02* X6513D01* Y4120D02* X6534D01* X6513Y4116D02* X6534D01* Y4108D02* X6513D01* X6534Y4112D02* X6513D01* Y4104D02* X6534D01* X6513Y4100D02* X6534D01* X6513Y4096D02* X6534D01* X6513Y4092D02* X6534D01* X6513Y4088D02* X6534D01* Y4084D02* X6513D01* X6534Y4080D02* X6513D01* Y4072D02* X6534D01* X6513Y4076D02* X6534D01* Y4068D02* X6513D01* X6534Y4064D02* X6513D01* X6534Y4060D02* X6513D01* Y4056D02* X6534D01* X6513Y4052D02* X6534D01* Y4044D02* X6513D01* X6534Y4048D02* X6513D01* Y4040D02* X6534D01* X6513Y4036D02* X6534D01* Y4032D02* X6513D01* X6534Y4028D02* X6513D01* X6534Y4024D02* X6513D01* X6534Y4020D02* X6513D01* X6534Y4016D02* X6513D01* Y4008D02* X6534D01* X6513Y4012D02* X6534D01* Y4004D02* X6513D01* X6534Y4000D02* X6513D01* X6534Y3996D02* X6513D01* Y3976D02* X6534D01* X6513Y3972D02* X6534D01* Y3968D02* X6513D01* X6534Y3964D02* X6513D01* X6534Y3960D02* X6513D01* X6534Y3988D02* X6513D01* X6534Y3992D02* X6513D01* Y3984D02* X6534D01* X6513Y3980D02* X6534D01* Y3956D02* X6513D01* X6534Y3952D02* X6513D01* Y3944D02* X6534D01* X6513Y3948D02* X6534D01* Y3940D02* X6513D01* X6534Y3936D02* X6513D01* X6534Y3932D02* X6513D01* Y3928D02* X6534D01* X6513Y3924D02* X6534D01* Y3916D02* X6513D01* X6534Y3920D02* X6513D01* Y3912D02* X6534D01* X6513Y3908D02* X6534D01* Y3904D02* X6513D01* X6534Y3900D02* X6513D01* X6534Y3896D02* X6513D01* X6534Y3892D02* X6513D01* X6534Y3888D02* X6513D01* Y3884D02* X6534D01* X6513Y3880D02* X6534D01* X6513Y3876D02* X6534D01* Y3868D02* X6513D01* X6534Y3872D02* X6513D01* Y3864D02* X6534D01* X6513Y3860D02* X6534D01* Y3852D02* X6513D01* X6534Y3856D02* X6513D01* Y3848D02* X6534D01* X6513Y3844D02* X6534D01* Y3840D02* X6513D01* X6534Y3836D02* X6513D01* X6534Y3832D02* X6513D01* X6534Y3828D02* X6513D01* X6534Y3824D02* X6513D01* Y3820D02* X6534D01* X6513Y3816D02* X6534D01* X6513Y3812D02* X6534D01* Y3804D02* X6513D01* X6534Y3808D02* X6513D01* Y3800D02* X6534D01* X6513Y3796D02* X6534D01* X6513Y3792D02* X6534D01* X6513Y3788D02* X6534D01* X6513Y3784D02* X6534D01* Y3780D02* X6513D01* X6534Y3776D02* X6513D01* Y3768D02* X6534D01* X6513Y3772D02* X6534D01* Y3764D02* X6513D01* X6534Y3760D02* X6513D01* Y3756D02* X6534D01* X6513Y3752D02* X6534D01* X6513Y3748D02* X6534D01* X6513Y3744D02* X6534D01* X6513Y3740D02* X6534D01* Y3732D02* X6513D01* X6534Y3736D02* X6513D01* Y3728D02* X6534D01* X6513Y3724D02* X6534D01* X6513Y3720D02* X6534D01* Y3716D02* X6513D01* X6534Y3712D02* X6513D01* Y3704D02* X6534D01* X6513Y3708D02* X6534D01* Y3700D02* X6513D01* X6534Y3696D02* X6513D01* Y3692D02* X6534D01* X6513Y3688D02* X6534D01* X6513Y3684D02* X6534D01* Y3676D02* X6513D01* X6534Y3680D02* X6513D01* Y3672D02* X6534D01* X6513Y3668D02* X6534D01* X6513Y3664D02* X6534D01* X6513Y3660D02* X6534D01* X6513Y3656D02* X6534D01* Y3652D02* X6513D01* X6534Y3648D02* X6513D01* Y3640D02* X6534D01* X6513Y3644D02* X6534D01* Y3636D02* X6513D01* X6534Y3632D02* X6513D01* Y3628D02* X6534D01* X6513Y3624D02* X6534D01* X6513Y3620D02* X6534D01* Y3612D02* X6513D01* X6534Y3616D02* X6513D01* Y3608D02* X6534D01* X6513Y3604D02* X6534D01* Y3600D02* X6513D01* X6534Y3596D02* X6513D01* X6534Y3592D02* X6513D01* X6534Y3588D02* X6513D01* X6534Y3584D02* X6513D01* Y3576D02* X6534D01* X6513Y3580D02* X6534D01* Y3572D02* X6513D01* X6534Y3568D02* X6513D01* Y3564D02* X6534D01* X6513Y3560D02* X6534D01* X6513Y3556D02* X6534D01* Y3548D02* X6513D01* X6534Y3552D02* X6513D01* Y3544D02* X6534D01* X6513Y3540D02* X6534D01* Y3536D02* X6513D01* X6534Y3532D02* X6513D01* X6534Y3528D02* X6513D01* X6534Y3524D02* X6513D01* X6534Y3520D02* X6513D01* Y3512D02* X6534D01* X6513Y3516D02* X6534D01* Y3508D02* X6513D01* X6534Y3504D02* X6513D01* Y3500D02* X6534D01* X6513Y3496D02* X6534D01* X6513Y3492D02* X6534D01* Y3484D02* X6513D01* X6534Y3488D02* X6513D01* Y3480D02* X6534D01* X6513Y3476D02* X6534D01* Y3472D02* X6513D01* X6534Y3468D02* X6513D01* X6534Y3464D02* X6513D01* X6534Y3460D02* X6513D01* X6534Y3456D02* X6513D01* Y3452D02* X6534D01* X6513Y3448D02* X6534D01* X6513Y3444D02* X6534D01* Y3436D02* X6513D01* X6534Y3440D02* X6513D01* Y3432D02* X6534D01* X6513Y3428D02* X6534D01* Y3420D02* X6513D01* X6534Y3424D02* X6513D01* Y3416D02* X6534D01* X6513Y3412D02* X6534D01* Y3408D02* X6513D01* X6534Y3404D02* X6513D01* X6534Y3400D02* X6513D01* X6534Y3396D02* X6513D01* X6534Y3392D02* X6513D01* Y3388D02* X6534D01* X6513Y3384D02* X6534D01* X6513Y3380D02* X6534D01* Y3372D02* X6513D01* X6534Y3376D02* X6513D01* Y3368D02* X6534D01* X6513Y3364D02* X6534D01* Y3340D02* X6513D01* X6534Y3336D02* X6513D01* Y3328D02* X6534D01* X6513Y3332D02* X6534D01* Y3300D02* X6513D01* X6534Y3304D02* X6513D01* Y3312D02* X6534D01* X6513Y3308D02* X6534D01* Y3316D02* X6513D01* X6534Y3320D02* X6513D01* X6534Y3324D02* X6513D01* Y3344D02* X6534D01* X6513Y3348D02* X6534D01* Y3352D02* X6513D01* X6534Y3356D02* X6513D01* X6534Y3360D02* X6513D01* X6375Y3271D02* X6367Y3276D01* X6362Y3284D01* Y3304D02* X6367Y3312D01* X6375Y3318D01* X6395D02* X6403Y3313D01* X6408Y3304D01* Y3284D02* X6403Y3277D01* X6395Y3271D01* X6513Y3296D02* X6534D01* X6513Y3292D02* X6534D01* X6513Y3288D02* X6534D01* Y3284D02* X6513D01* X6534Y3280D02* X6513D01* Y3272D02* X6534D01* X6513Y3276D02* X6534D01* Y3268D02* X6513D01* X6534Y3264D02* X6513D01* X6534Y3260D02* X6513D01* Y3256D02* X6534D01* X6513Y3252D02* X6534D01* Y3244D02* X6513D01* X6534Y3248D02* X6513D01* Y3240D02* X6534D01* X6513Y3236D02* X6534D01* X6513Y3232D02* X6534D01* X6513Y3228D02* X6534D01* X6513Y3224D02* X6534D01* Y3220D02* X6513D01* X6534Y3216D02* X6513D01* Y3208D02* X6534D01* X6513Y3212D02* X6534D01* Y3204D02* X6513D01* X6534Y3200D02* X6513D01* X6534Y3196D02* X6513D01* Y3192D02* X6534D01* X6513Y3188D02* X6534D01* Y3180D02* X6513D01* X6534Y3184D02* X6513D01* Y3176D02* X6534D01* X6513Y3172D02* X6534D01* X6513Y3168D02* X6534D01* X6513Y3164D02* X6534D01* X6513Y3160D02* X6534D01* Y3156D02* X6513D01* X6534Y3152D02* X6513D01* Y3144D02* X6534D01* X6513Y3148D02* X6534D01* Y3140D02* X6513D01* X6534Y3136D02* X6513D01* X6534Y3132D02* X6513D01* Y3128D02* X6534D01* X6513Y3124D02* X6534D01* Y3116D02* X6513D01* X6534Y3120D02* X6513D01* Y3112D02* X6534D01* X6513Y3108D02* X6534D01* Y3104D02* X6513D01* X6534Y3100D02* X6513D01* X6534Y3096D02* X6513D01* X6534Y3092D02* X6513D01* X6534Y3088D02* X6513D01* Y3080D02* X6534D01* X6513Y3084D02* X6534D01* Y3076D02* X6513D01* X6534Y3072D02* X6513D01* X6534Y3068D02* X6513D01* Y3064D02* X6534D01* X6513Y3060D02* X6534D01* Y3052D02* X6513D01* X6534Y3056D02* X6513D01* Y3048D02* X6534D01* X6513Y3044D02* X6534D01* Y3040D02* X6513D01* X6534Y3036D02* X6513D01* X6534Y3032D02* X6513D01* X6534Y3028D02* X6513D01* X6534Y3024D02* X6513D01* Y3020D02* X6534D01* X6513Y3016D02* X6534D01* X6513Y3012D02* X6534D01* X6513Y3008D02* X6534D01* X6513Y3004D02* X6534D01* Y2996D02* X6513D01* X6534Y3000D02* X6513D01* Y2992D02* X6534D01* X6513Y2988D02* X6534D01* X6513Y2984D02* X6534D01* X6513Y2980D02* X6534D01* Y2976D02* X6513D01* X6534Y2972D02* X6513D01* X6534Y2968D02* X6513D01* X6534Y2964D02* X6513D01* X6534Y2960D02* X6513D01* Y2956D02* X6534D01* X6513Y2952D02* X6534D01* X6513Y2948D02* X6534D01* Y2940D02* X6513D01* X6534Y2944D02* X6513D01* Y2936D02* X6534D01* X6513Y2932D02* X6534D01* X6513Y2928D02* X6534D01* X6513Y2924D02* X6534D01* X6513Y2920D02* X6534D01* Y2916D02* X6513D01* X6534Y2912D02* X6513D01* Y2904D02* X6534D01* X6513Y2908D02* X6534D01* Y2900D02* X6513D01* X6534Y2896D02* X6513D01* Y2892D02* X6534D01* X6513Y2888D02* X6534D01* X6513Y2884D02* X6534D01* Y2880D02* X6513D01* X6534Y2876D02* X6513D01* Y2868D02* X6534D01* X6513Y2872D02* X6534D01* Y2864D02* X6513D01* X6534Y2860D02* X6513D01* X6534Y2856D02* X6513D01* Y2848D02* X6534D01* X6513Y2852D02* X6534D01* Y2844D02* X6513D01* X6534Y2840D02* X6513D01* Y2836D02* X6534D01* X6513Y2832D02* X6534D01* X6513Y2828D02* X6534D01* X6513Y2824D02* X6534D01* X6513Y2820D02* X6534D01* Y2812D02* X6513D01* X6534Y2816D02* X6513D01* Y2808D02* X6534D01* X6513Y2804D02* X6534D01* X6513Y2800D02* X6534D01* X6513Y2796D02* X6534D01* Y2792D02* X6513D01* X6534Y2788D02* X6513D01* X6534Y2784D02* X6513D01* X6534Y2780D02* X6513D01* X6534Y2776D02* X6513D01* Y2772D02* X6534D01* X6513Y2768D02* X6534D01* X6513Y2764D02* X6534D01* Y2756D02* X6513D01* X6534Y2760D02* X6513D01* Y2752D02* X6534D01* X6513Y2748D02* X6534D01* Y2740D02* X6513D01* X6534Y2744D02* X6513D01* Y2736D02* X6534D01* X6513Y2732D02* X6534D01* Y2728D02* X6513D01* X6534Y2724D02* X6513D01* X6534Y2720D02* X6513D01* X6534Y2716D02* X6513D01* X6534Y2712D02* X6513D01* Y2708D02* X6534D01* X6513Y2704D02* X6534D01* X6513Y2700D02* X6534D01* Y2692D02* X6513D01* X6534Y2696D02* X6513D01* Y2688D02* X6534D01* X6513Y2684D02* X6534D01* X6513Y2680D02* X6534D01* X6513Y2676D02* X6534D01* X6513Y2672D02* X6534D01* Y2668D02* X6513D01* X6534Y2664D02* X6513D01* Y2656D02* X6534D01* X6513Y2660D02* X6534D01* Y2652D02* X6513D01* X6534Y2648D02* X6513D01* Y2644D02* X6534D01* X6513Y2640D02* X6534D01* X6513Y2636D02* X6534D01* Y2628D02* X6513D01* X6534Y2632D02* X6513D01* X6534Y2620D02* X6513D01* X6534Y2624D02* X6513D01* Y2616D02* X6534D01* X6513Y2612D02* X6534D01* X6513Y2608D02* X6534D01* Y2604D02* X6513D01* X6534Y2600D02* X6513D01* Y2592D02* X6534D01* X6513Y2596D02* X6534D01* Y2588D02* X6513D01* X6534Y2584D02* X6513D01* Y2580D02* X6534D01* X6513Y2576D02* X6534D01* X6513Y2572D02* X6534D01* Y2564D02* X6513D01* X6534Y2568D02* X6513D01* Y2560D02* X6534D01* X6513Y2556D02* X6534D01* X6513Y2552D02* X6534D01* X6513Y2548D02* X6534D01* X6513Y2544D02* X6534D01* Y2540D02* X6513D01* X6534Y2536D02* X6513D01* Y2528D02* X6534D01* X6513Y2532D02* X6534D01* Y2524D02* X6513D01* X6534Y2520D02* X6513D01* Y2516D02* X6534D01* X6513Y2512D02* X6534D01* X6513Y2508D02* X6534D01* Y2500D02* X6513D01* X6534Y2504D02* X6513D01* Y2496D02* X6534D01* X6513Y2492D02* X6534D01* Y2488D02* X6513D01* X6534Y2484D02* X6513D01* X6534Y2480D02* X6513D01* X6214Y2388D02* X6534D01* X6513Y2396D02* X6534D01* Y2392D02* X6512D01* X6534Y2384D02* X6214D01* X6235Y2356D02* X6214D01* X6235Y2352D02* X6214D01* Y2360D02* X6235D01* X6214Y2368D02* X6534D01* Y2372D02* X6214D01* X6236Y2362D02* X6240Y2366D01* X6235Y2348D02* X6214D01* X6235Y2344D02* X6214D01* Y2340D02* X6235D01* X6214Y2336D02* X6235D01* X6214Y2332D02* X6235D01* Y2324D02* X6214D01* X6235Y2328D02* X6214D01* X6235Y2316D02* X6214D01* X6235Y2320D02* X6214D01* Y2312D02* X6235D01* X6214Y2308D02* X6235D01* X6214Y2304D02* X6235D01* X6214Y2300D02* X6235D01* Y2296D02* X6214D01* X6235Y2292D02* X6214D01* X6235Y2288D02* X6214D01* X6235Y2284D02* X6214D01* X6235Y2280D02* X6214D01* Y2276D02* X6235D01* X6214Y2272D02* X6235D01* X6214Y2268D02* X6235D01* Y2260D02* X6214D01* X6235Y2264D02* X6214D01* Y2256D02* X6235D01* X6214Y2252D02* X6235D01* X6214Y2248D02* X6235D01* X6214Y2244D02* X6235D01* X6214Y2240D02* X6235D01* Y2236D02* X6214D01* X6235Y2232D02* X6214D01* Y2212D02* X6235D01* X6214Y2208D02* X6235D01* X6214Y2204D02* X6235D01* Y2196D02* X6214D01* X6235Y2200D02* X6214D01* X6235Y2220D02* X6214D01* X6235Y2216D02* X6214D01* Y2224D02* X6235D01* X6214Y2228D02* X6235D01* Y2188D02* X6214D01* X6235Y2192D02* X6214D01* Y2184D02* X6235D01* X6214Y2180D02* X6235D01* X6214Y2176D02* X6235D01* Y2172D02* X6214D01* X6235Y2168D02* X6214D01* Y2160D02* X6235D01* X6214Y2164D02* X6235D01* Y2156D02* X6214D01* X6235Y2152D02* X6214D01* X6235Y2148D02* X6214D01* X6235Y2140D02* X6214D01* X6235Y2144D02* X6214D01* Y2136D02* X6235D01* X6214Y2132D02* X6235D01* Y2124D02* X6214D01* X6235Y2128D02* X6214D01* Y2120D02* X6235D01* X6214Y2116D02* X6235D01* X6214Y2112D02* X6235D01* Y2108D02* X6214D01* X6235Y2104D02* X6214D01* Y2096D02* X6235D01* X6214Y2100D02* X6235D01* Y2092D02* X6214D01* X6235Y2088D02* X6214D01* X6235Y2084D02* X6214D01* Y2080D02* X6235D01* X6214Y2076D02* X6235D01* Y2068D02* X6214D01* X6235Y2072D02* X6214D01* Y2064D02* X6235D01* X6214Y2060D02* X6235D01* X6214Y2056D02* X6235D01* X6214Y2052D02* X6235D01* X6214Y2048D02* X6235D01* Y2044D02* X6214D01* X6235Y2040D02* X6214D01* Y2032D02* X6235D01* X6214Y2036D02* X6235D01* Y2028D02* X6214D01* X6235Y2024D02* X6214D01* X6235Y2020D02* X6214D01* Y2000D02* X6235D01* X6214Y1996D02* X6235D01* Y1992D02* X6214D01* X6235Y1988D02* X6214D01* X6235Y1984D02* X6214D01* X6235Y2012D02* X6214D01* X6235Y2016D02* X6214D01* Y2008D02* X6235D01* X6214Y2004D02* X6235D01* Y1980D02* X6214D01* X6235Y1976D02* X6214D01* Y1968D02* X6235D01* X6214Y1972D02* X6235D01* Y1964D02* X6214D01* X6235Y1960D02* X6214D01* X6235Y1956D02* X6214D01* Y1952D02* X6235D01* X6214Y1948D02* X6235D01* Y1940D02* X6214D01* X6235Y1944D02* X6214D01* Y1936D02* X6235D01* X6214Y1932D02* X6235D01* Y1928D02* X6214D01* X6235Y1924D02* X6214D01* X6235Y1920D02* X6214D01* X6235Y1916D02* X6214D01* X6235Y1912D02* X6214D01* Y1908D02* X6235D01* X6214Y1904D02* X6235D01* X6214Y1900D02* X6235D01* Y1892D02* X6214D01* X6235Y1896D02* X6214D01* Y1888D02* X6235D01* X6214Y1884D02* X6235D01* Y1876D02* X6214D01* X6235Y1880D02* X6214D01* Y1872D02* X6235D01* X6214Y1868D02* X6235D01* Y1864D02* X6214D01* X6235Y1860D02* X6214D01* X6235Y1856D02* X6214D01* X6235Y1852D02* X6214D01* X6235Y1848D02* X6214D01* Y1844D02* X6235D01* X6214Y1840D02* X6235D01* X6214Y1836D02* X6235D01* Y1828D02* X6214D01* X6235Y1832D02* X6214D01* Y1824D02* X6235D01* X6214Y1820D02* X6235D01* X6214Y1816D02* X6235D01* X6214Y1812D02* X6235D01* X6214Y1808D02* X6235D01* Y1804D02* X6214D01* X6235Y1800D02* X6214D01* Y1792D02* X6235D01* X6214Y1796D02* X6235D01* Y1788D02* X6214D01* X6235Y1784D02* X6214D01* Y1780D02* X6235D01* X6214Y1776D02* X6235D01* X6214Y1772D02* X6235D01* Y1764D02* X6214D01* X6235Y1768D02* X6214D01* Y1760D02* X6235D01* X6214Y1756D02* X6235D01* Y1744D02* X6210D01* X6235Y1736D02* X4001D01* Y1740D02* X6235D01* X6214Y1748D02* X6235D01* Y1752D02* X6214D01* X6213Y1748D02* X6209Y1744D01* X4563D01* X4562D02* X4533D01* X4536Y1748D02* X4558D01* X4536Y1752D02* X4558D01* X4559Y1748D02* Y2882D01* X4000D01* X4001Y2876D02* X4558D01* X4534Y2856D02* X4558D01* Y2860D02* X4001D01* X4025Y2856D02* X3999D01* X4024Y2854D02* X4028Y2858D01* X4023Y2852D02* X3529D01* Y2856D02* X3552D01* X3529Y2844D02* X4023D01* Y2848D02* X3529D01* X3551Y2858D02* Y3181D01* X3550Y3168D02* X3529D01* Y3164D02* X3550D01* X3529Y3160D02* X3550D01* X3529Y3172D02* X3550D01* X3529Y3176D02* X3550D01* X3555Y3185D02* X5315D01* X5314Y3192D02* X3529D01* Y3204D02* X5314D01* X5291Y3213D02* Y4161D01* X6122D01* X6126Y4165D01* X6425Y4621D02* X6417Y4626D01* X6412Y4634D01* Y4654D02* X6417Y4662D01* X6425Y4668D01* X6445D02* X6453Y4663D01* X6458Y4654D01* Y4634D02* X6453Y4627D01* X6445Y4621D01* Y4521D02* X6453Y4527D01* X6458Y4534D01* Y4554D02* X6453Y4563D01* X6445Y4568D01* X6425D02* X6417Y4562D01* X6412Y4554D01* Y4534D02* X6417Y4526D01* X6425Y4521D01* X6534Y4420D02* X6127D01* X6151Y4396D02* X6127D01* Y4392D02* X6149D01* X6127Y4404D02* X6534D01* Y4408D02* X6127D01* X6150Y4394D02* X6154Y4398D01* X6149Y4384D02* X6127D01* X6149Y4388D02* X6127D01* Y4380D02* X6149D01* X6127Y4376D02* X6149D01* X6150Y4394D02* Y4138D01* X6149Y4164D02* X6126D01* X6149Y4160D02* X5292D01* Y4156D02* X6149D01* X6127Y4168D02* X6149D01* X6127Y4172D02* X6149D01* X6127Y4176D02* X6149D01* Y4180D02* X6127D01* X6149Y4184D02* X6127D01* X6149Y4188D02* X6127D01* Y4196D02* X6149D01* X6127Y4192D02* X6149D01* Y4200D02* X6127D01* X6149Y4204D02* X6127D01* Y4212D02* X6149D01* X6127Y4208D02* X6149D01* X6127Y4216D02* X6149D01* X6127Y4220D02* X6149D01* X6127Y4224D02* X6149D01* Y4232D02* X6127D01* X6149Y4228D02* X6127D01* Y4236D02* X6149D01* X6127Y4240D02* X6149D01* Y4244D02* X6127D01* X6149Y4248D02* X6127D01* X6149Y4252D02* X6127D01* X6149Y4256D02* X6127D01* X6149Y4260D02* X6127D01* Y4268D02* X6149D01* X6127Y4264D02* X6149D01* Y4272D02* X6127D01* X6149Y4276D02* X6127D01* X6149Y4280D02* X6127D01* Y4284D02* X6149D01* X6127Y4288D02* X6149D01* Y4296D02* X6127D01* X6149Y4292D02* X6127D01* Y4300D02* X6149D01* X6127Y4304D02* X6149D01* Y4308D02* X6127D01* X6149Y4312D02* X6127D01* X6149Y4316D02* X6127D01* Y4320D02* X6149D01* X6127Y4324D02* X6149D01* Y4332D02* X6127D01* X6149Y4328D02* X6127D01* Y4336D02* X6149D01* X6127Y4340D02* X6149D01* X6127Y4344D02* X6149D01* Y4352D02* X6127D01* X6149Y4348D02* X6127D01* X6149Y4360D02* X6127D01* X6149Y4356D02* X6127D01* Y4364D02* X6149D01* X6127Y4368D02* X6149D01* X6127Y4372D02* X6149D01* X6345Y4321D02* X6353Y4327D01* X6358Y4334D01* Y4354D02* X6353Y4363D01* X6345Y4368D01* X6325D02* X6317Y4362D01* X6312Y4354D01* Y4334D02* X6317Y4326D01* X6325Y4321D01* X6295Y4471D02* X6303Y4477D01* X6308Y4484D01* Y4504D02* X6303Y4513D01* X6295Y4518D01* X6275D02* X6267Y4512D01* X6262Y4504D01* Y4484D02* X6267Y4476D01* X6275Y4471D01* X6195Y4571D02* X6203Y4577D01* X6208Y4584D01* Y4604D02* X6203Y4613D01* X6195Y4618D01* X6175D02* X6167Y4612D01* X6162Y4604D01* Y4584D02* X6167Y4576D01* X6175Y4571D01* X5975D02* X5967Y4576D01* X5962Y4584D01* Y4604D02* X5967Y4612D01* X5975Y4618D01* X5995D02* X6003Y4613D01* X6008Y4604D01* Y4584D02* X6003Y4577D01* X5995Y4571D01* X6075Y4471D02* X6067Y4476D01* X6062Y4484D01* Y4504D02* X6067Y4512D01* X6075Y4518D01* X6095D02* X6103Y4513D01* X6108Y4504D01* Y4484D02* X6103Y4477D01* X6095Y4471D01* X5995Y4371D02* X6003Y4377D01* X6008Y4384D01* Y4404D02* X6003Y4413D01* X5995Y4418D01* X5975D02* X5967Y4412D01* X5962Y4404D01* Y4384D02* X5967Y4376D01* X5975Y4371D01* X5895Y4471D02* X5903Y4477D01* X5908Y4484D01* Y4504D02* X5903Y4513D01* X5895Y4518D01* X5875D02* X5867Y4512D01* X5862Y4504D01* Y4484D02* X5867Y4476D01* X5875Y4471D01* X5808Y4404D02* X5803Y4413D01* X5795Y4418D01* X5775D02* X5767Y4412D01* X5762Y4404D01* Y4384D02* X5767Y4376D01* X5775Y4371D01* X5795D02* X5803Y4377D01* X5808Y4384D01* X5762Y4604D02* X5767Y4612D01* X5775Y4618D01* X5795D02* X5803Y4613D01* X5808Y4604D01* Y4584D02* X5803Y4577D01* X5795Y4571D01* X5775D02* X5767Y4576D01* X5762Y4584D01* X5695Y4471D02* X5703Y4477D01* X5708Y4484D01* Y4504D02* X5703Y4513D01* X5695Y4518D01* X5675D02* X5667Y4512D01* X5662Y4504D01* Y4484D02* X5667Y4476D01* X5675Y4471D01* X5595Y4571D02* X5603Y4577D01* X5608Y4584D01* Y4604D02* X5603Y4613D01* X5595Y4618D01* X5575D02* X5567Y4612D01* X5562Y4604D01* Y4584D02* X5567Y4576D01* X5575Y4571D01* X5475Y4471D02* X5467Y4476D01* X5462Y4484D01* Y4504D02* X5467Y4512D01* X5475Y4518D01* X5495D02* X5503Y4513D01* X5508Y4504D01* Y4484D02* X5503Y4477D01* X5495Y4471D01* X5525Y4421D02* X5517Y4426D01* X5512Y4434D01* Y4454D02* X5517Y4462D01* X5525Y4468D01* X5545D02* X5553Y4463D01* X5558Y4454D01* Y4434D02* X5553Y4427D01* X5545Y4421D01* X5575Y4371D02* X5567Y4376D01* X5562Y4384D01* Y4404D02* X5567Y4412D01* X5575Y4418D01* X5595D02* X5603Y4413D01* X5608Y4404D01* Y4384D02* X5603Y4377D01* X5595Y4371D01* X5358Y4434D02* X5353Y4427D01* X5345Y4421D01* X5325D02* X5317Y4426D01* X5312Y4434D01* Y4454D02* X5317Y4462D01* X5325Y4468D01* X5345D02* X5353Y4463D01* X5358Y4454D01* X5375Y4571D02* X5367Y4576D01* X5362Y4584D01* Y4604D02* X5367Y4612D01* X5375Y4618D01* X5395D02* X5403Y4613D01* X5408Y4604D01* Y4584D02* X5403Y4577D01* X5395Y4571D01* X5195D02* X5203Y4577D01* X5208Y4584D01* Y4604D02* X5203Y4613D01* X5195Y4618D01* X5175D02* X5167Y4612D01* X5162Y4604D01* Y4584D02* X5167Y4576D01* X5175Y4571D01* X5145Y4421D02* X5153Y4427D01* X5158Y4434D01* Y4454D02* X5153Y4463D01* X5145Y4468D01* X5125D02* X5117Y4462D01* X5112Y4454D01* Y4434D02* X5117Y4426D01* X5125Y4421D01* X4675Y4471D02* X4667Y4476D01* X4662Y4484D01* Y4504D02* X4667Y4512D01* X4675Y4518D01* X4695D02* X4703Y4513D01* X4708Y4504D01* Y4484D02* X4703Y4477D01* X4695Y4471D01* X4775D02* X4767Y4476D01* X4762Y4484D01* Y4504D02* X4767Y4512D01* X4775Y4518D01* X4795D02* X4803Y4513D01* X4808Y4504D01* Y4484D02* X4803Y4477D01* X4795Y4471D01* Y4571D02* X4803Y4577D01* X4808Y4584D01* Y4604D02* X4803Y4613D01* X4795Y4618D01* X4775D02* X4767Y4612D01* X4762Y4604D01* Y4584D02* X4767Y4576D01* X4775Y4571D01* X4962Y4604D02* X4967Y4612D01* X4975Y4618D01* X4995D02* X5003Y4613D01* X5008Y4604D01* Y4584D02* X5003Y4577D01* X4995Y4571D01* X4975D02* X4967Y4576D01* X4962Y4584D01* X4945Y4421D02* X4953Y4427D01* X4958Y4434D01* Y4454D02* X4953Y4463D01* X4945Y4468D01* X4925D02* X4917Y4462D01* X4912Y4454D01* Y4434D02* X4917Y4426D01* X4925Y4421D01* X4845Y4321D02* X4853Y4327D01* X4858Y4334D01* Y4354D02* X4853Y4363D01* X4845Y4368D01* X4825D02* X4817Y4362D01* X4812Y4354D01* Y4334D02* X4817Y4326D01* X4825Y4321D01* X4695Y4271D02* X4703Y4277D01* X4708Y4284D01* Y4304D02* X4703Y4313D01* X4695Y4318D01* X4675D02* X4667Y4312D01* X4662Y4304D01* Y4284D02* X4667Y4276D01* X4675Y4271D01* Y4071D02* X4667Y4076D01* X4662Y4084D01* Y4104D02* X4667Y4112D01* X4675Y4118D01* X4695D02* X4703Y4113D01* X4708Y4104D01* Y4084D02* X4703Y4077D01* X4695Y4071D01* X4825Y4121D02* X4817Y4126D01* X4812Y4134D01* Y4154D02* X4817Y4162D01* X4825Y4168D01* X4845D02* X4853Y4163D01* X4858Y4154D01* Y4134D02* X4853Y4127D01* X4845Y4121D01* X4825Y3921D02* X4817Y3926D01* X4812Y3934D01* Y3954D02* X4817Y3962D01* X4825Y3968D01* X4845D02* X4853Y3963D01* X4858Y3954D01* Y3934D02* X4853Y3927D01* X4845Y3921D01* Y3721D02* X4853Y3727D01* X4858Y3734D01* Y3754D02* X4853Y3763D01* X4845Y3768D01* X4825D02* X4817Y3762D01* X4812Y3754D01* Y3734D02* X4817Y3726D01* X4825Y3721D01* X4695Y3671D02* X4703Y3677D01* X4708Y3684D01* Y3704D02* X4703Y3713D01* X4695Y3718D01* X4675D02* X4667Y3712D01* X4662Y3704D01* Y3684D02* X4667Y3676D01* X4675Y3671D01* X4380Y3855D02* X4389Y3860D01* X4396Y3867D01* X4400Y3875D01* Y3895D02* X4395Y3904D01* X4388Y3911D01* X4380Y3915D01* X4360D02* X4351Y3910D01* X4344Y3903D01* X4340Y3895D01* Y3875D02* X4345Y3866D01* X4352Y3859D01* X4360Y3855D01* X4675Y3471D02* X4667Y3476D01* X4662Y3484D01* Y3504D02* X4667Y3512D01* X4675Y3518D01* X4695D02* X4703Y3513D01* X4708Y3504D01* Y3484D02* X4703Y3477D01* X4695Y3471D01* X4825Y3521D02* X4817Y3526D01* X4812Y3534D01* Y3554D02* X4817Y3562D01* X4825Y3568D01* X4845D02* X4853Y3563D01* X4858Y3554D01* Y3534D02* X4853Y3527D01* X4845Y3521D01* Y3321D02* X4853Y3327D01* X4858Y3334D01* Y3354D02* X4853Y3363D01* X4845Y3368D01* X4825D02* X4817Y3362D01* X4812Y3354D01* Y3334D02* X4817Y3326D01* X4825Y3321D01* X4695Y3271D02* X4703Y3277D01* X4708Y3284D01* Y3304D02* X4703Y3313D01* X4695Y3318D01* X4675D02* X4667Y3312D01* X4662Y3304D01* Y3284D02* X4667Y3276D01* X4675Y3271D01* X4558Y2808D02* X4536D01* X4558Y2804D02* X4536D01* Y2800D02* X4558D01* X4536Y2796D02* X4558D01* X4536Y2792D02* X4558D01* Y2784D02* X4536D01* X4558Y2788D02* X4536D01* Y2780D02* X4558D01* X4536Y2776D02* X4558D01* Y2752D02* X4536D01* X4558Y2748D02* X4536D01* Y2740D02* X4558D01* X4536Y2744D02* X4558D01* X4536Y2772D02* X4558D01* X4536Y2768D02* X4558D01* X4536Y2764D02* X4558D01* Y2760D02* X4536D01* X4558Y2756D02* X4536D01* Y2736D02* X4558D01* X4536Y2732D02* X4558D01* X4536Y2728D02* X4558D01* Y2720D02* X4536D01* X4558Y2724D02* X4536D01* X4558Y2712D02* X4536D01* X4558Y2716D02* X4536D01* Y2708D02* X4558D01* X4536Y2704D02* X4558D01* X4536Y2700D02* X4558D01* Y2696D02* X4536D01* X4558Y2692D02* X4536D01* Y2684D02* X4558D01* X4536Y2688D02* X4558D01* Y2680D02* X4536D01* X4558Y2676D02* X4536D01* X4558Y2672D02* X4536D01* Y2668D02* X4558D01* X4536Y2664D02* X4558D01* Y2656D02* X4536D01* X4558Y2660D02* X4536D01* X4558Y2648D02* X4536D01* X4558Y2652D02* X4536D01* Y2644D02* X4558D01* X4536Y2640D02* X4558D01* X4536Y2636D02* X4558D01* Y2632D02* X4536D01* X4558Y2628D02* X4536D01* Y2620D02* X4558D01* X4536Y2624D02* X4558D01* Y2616D02* X4536D01* X4558Y2612D02* X4536D01* X4558Y2608D02* X4536D01* Y2604D02* X4558D01* X4536Y2600D02* X4558D01* Y2592D02* X4536D01* X4558Y2596D02* X4536D01* Y2588D02* X4558D01* X4536Y2584D02* X4558D01* Y2580D02* X4536D01* X4558Y2576D02* X4536D01* X4558Y2572D02* X4536D01* X4558Y2528D02* X4536D01* X4558Y2532D02* X4536D01* Y2540D02* X4558D01* X4536Y2536D02* X4558D01* Y2568D02* X4536D01* X4558Y2564D02* X4536D01* Y2556D02* X4558D01* X4536Y2560D02* X4558D01* Y2552D02* X4536D01* X4558Y2548D02* X4536D01* X4558Y2544D02* X4536D01* Y2524D02* X4558D01* X4536Y2520D02* X4558D01* Y2516D02* X4536D01* X4558Y2512D02* X4536D01* X4558Y2508D02* X4536D01* X4558Y2504D02* X4536D01* X4558Y2500D02* X4536D01* Y2496D02* X4558D01* X4536Y2492D02* X4558D01* X4536Y2488D02* X4558D01* Y2480D02* X4536D01* X4558Y2484D02* X4536D01* X4558Y2472D02* X4536D01* X4558Y2476D02* X4536D01* Y2468D02* X4558D01* X4536Y2464D02* X4558D01* X4536Y2460D02* X4558D01* X4536Y2456D02* X4558D01* Y2452D02* X4536D01* X4558Y2448D02* X4536D01* X4558Y2444D02* X4536D01* X4558Y2440D02* X4536D01* X4558Y2436D02* X4536D01* Y2432D02* X4558D01* X4536Y2428D02* X4558D01* X4536Y2424D02* X4558D01* Y2416D02* X4536D01* X4558Y2420D02* X4536D01* Y2412D02* X4558D01* X4536Y2408D02* X4558D01* Y2400D02* X4536D01* X4558Y2404D02* X4536D01* Y2396D02* X4558D01* X4536Y2392D02* X4558D01* Y2388D02* X4536D01* X4558Y2384D02* X4536D01* X4558Y2380D02* X4536D01* X4558Y2376D02* X4536D01* X4558Y2372D02* X4536D01* Y2368D02* X4558D01* X4536Y2364D02* X4558D01* X4536Y2360D02* X4558D01* Y2352D02* X4536D01* X4558Y2356D02* X4536D01* Y2348D02* X4558D01* X4536Y2344D02* X4558D01* X4536Y2340D02* X4558D01* X4536Y2336D02* X4558D01* X4536Y2332D02* X4558D01* Y2328D02* X4536D01* X4558Y2324D02* X4536D01* Y2316D02* X4558D01* X4536Y2320D02* X4558D01* Y2312D02* X4536D01* X4558Y2308D02* X4536D01* Y2304D02* X4558D01* X4536Y2300D02* X4558D01* X4536Y2296D02* X4558D01* Y2288D02* X4536D01* X4558Y2292D02* X4536D01* X4558Y2280D02* X4536D01* X4558Y2284D02* X4536D01* Y2276D02* X4558D01* X4536Y2272D02* X4558D01* X4536Y2268D02* X4558D01* Y2264D02* X4536D01* X4558Y2260D02* X4536D01* Y2252D02* X4558D01* X4536Y2256D02* X4558D01* Y2248D02* X4536D01* X4558Y2244D02* X4536D01* Y2240D02* X4558D01* X4536Y2236D02* X4558D01* X4536Y2232D02* X4558D01* Y2224D02* X4536D01* X4558Y2228D02* X4536D01* Y2220D02* X4558D01* X4536Y2216D02* X4558D01* X4536Y2212D02* X4558D01* X4536Y2208D02* X4558D01* X4536Y2204D02* X4558D01* Y2200D02* X4536D01* X4558Y2196D02* X4536D01* Y2188D02* X4558D01* X4536Y2192D02* X4558D01* Y2184D02* X4536D01* X4558Y2180D02* X4536D01* Y2176D02* X4558D01* X4536Y2172D02* X4558D01* X4536Y2168D02* X4558D01* Y2160D02* X4536D01* X4558Y2164D02* X4536D01* Y2156D02* X4558D01* X4536Y2152D02* X4558D01* Y2148D02* X4536D01* X4558Y2144D02* X4536D01* X4558Y2140D02* X4536D01* X4558Y2136D02* X4536D01* X4558Y2132D02* X4536D01* Y2124D02* X4558D01* X4536Y2128D02* X4558D01* Y2120D02* X4536D01* X4558Y2116D02* X4536D01* Y2112D02* X4558D01* X4536Y2108D02* X4558D01* X4536Y2104D02* X4558D01* Y2096D02* X4536D01* X4558Y2100D02* X4536D01* Y2092D02* X4558D01* X4536Y2088D02* X4558D01* Y2084D02* X4536D01* X4558Y2080D02* X4536D01* X4558Y2076D02* X4536D01* X4558Y2072D02* X4536D01* X4558Y2068D02* X4536D01* Y2060D02* X4558D01* X4536Y2064D02* X4558D01* Y2056D02* X4536D01* X4558Y2052D02* X4536D01* Y2048D02* X4558D01* X4536Y2044D02* X4558D01* X4536Y2040D02* X4558D01* Y2032D02* X4536D01* X4558Y2036D02* X4536D01* Y2028D02* X4558D01* X4536Y2024D02* X4558D01* Y2020D02* X4536D01* X4558Y2016D02* X4536D01* X4558Y2012D02* X4536D01* X4558Y2008D02* X4536D01* X4558Y2004D02* X4536D01* Y2000D02* X4558D01* X4536Y1996D02* X4558D01* X4536Y1992D02* X4558D01* X4536Y1988D02* X4558D01* X4536Y1984D02* X4558D01* Y1976D02* X4536D01* X4558Y1980D02* X4536D01* Y1972D02* X4558D01* X4536Y1968D02* X4558D01* X4536Y1964D02* X4558D01* X4536Y1960D02* X4558D01* Y1956D02* X4536D01* X4558Y1952D02* X4536D01* X4558Y1948D02* X4536D01* X4558Y1944D02* X4536D01* X4558Y1940D02* X4536D01* Y1936D02* X4558D01* X4536Y1932D02* X4558D01* X4536Y1928D02* X4558D01* Y1920D02* X4536D01* X4558Y1924D02* X4536D01* Y1916D02* X4558D01* X4536Y1912D02* X4558D01* X4536Y1908D02* X4558D01* X4536Y1904D02* X4558D01* X4536Y1900D02* X4558D01* Y1896D02* X4536D01* X4558Y1892D02* X4536D01* Y1884D02* X4558D01* X4536Y1888D02* X4558D01* Y1880D02* X4536D01* X4558Y1876D02* X4536D01* Y1872D02* X4558D01* X4536Y1868D02* X4558D01* X4536Y1864D02* X4558D01* Y1856D02* X4536D01* X4558Y1860D02* X4536D01* Y1852D02* X4558D01* X4536Y1848D02* X4558D01* X4536Y1844D02* X4558D01* X4536Y1840D02* X4558D01* X4536Y1836D02* X4558D01* Y1832D02* X4536D01* X4558Y1828D02* X4536D01* Y1820D02* X4558D01* X4536Y1824D02* X4558D01* Y1816D02* X4536D01* X4558Y1812D02* X4536D01* X4558Y1808D02* X4536D01* Y1804D02* X4558D01* X4536Y1800D02* X4558D01* X4536Y1796D02* X4558D01* X4536Y1792D02* X4558D01* Y1784D02* X4536D01* X4558Y1788D02* X4536D01* Y1780D02* X4558D01* X4536Y1776D02* X4558D01* X4536Y1772D02* X4558D01* Y1760D02* X4536D01* X4558Y1756D02* X4536D01* Y1764D02* X4558D01* X4536Y1768D02* X4558D01* X4559Y1748D02* X4563Y1744D01* X4429Y1309D02* X4438Y1313D01* X4445Y1320D01* X4449Y1329D01* Y1349D02* X4444Y1357D01* X4437Y1364D01* X4429Y1368D01* X4409D02* X4400Y1364D01* X4393Y1357D01* X4389Y1349D01* Y1329D02* X4394Y1320D01* X4401Y1313D01* X4409Y1309D01* X7834Y1424D02* X7781D01* X7834Y1428D02* X7781D01* Y1420D02* X7834D01* X7781Y1416D02* X7834D01* Y1392D02* X7781D01* X7834Y1388D02* X7781D01* Y1380D02* X7834D01* X7781Y1384D02* X7834D01* Y1376D02* X7781D01* X7834Y1372D02* X7781D01* X7834Y1368D02* X7781D01* X7834Y1360D02* X7781D01* X7834Y1364D02* X7781D01* Y1356D02* X7834D01* X7781Y1352D02* X7834D01* Y1328D02* X7781D01* X7834Y1324D02* X7781D01* Y1332D02* X7834D01* X7781Y1336D02* X7834D01* X7781Y1340D02* X7834D01* Y1344D02* X7781D01* X7834Y1348D02* X7781D01* X7799Y1350D02* Y1197D01* X7834Y1092D02* X1426D01* Y1064D02* X7834D01* X7779Y1116D02* X7834D01* Y1112D02* X5836D01* X5862Y1114D02* X5858Y1118D01* X5857Y1124D02* X5836D01* X5857Y1128D02* X5836D01* Y1148D02* X5857D01* X5836Y1152D02* X5857D01* X5836Y1156D02* X5857D01* Y1164D02* X5836D01* X5857Y1160D02* X5836D01* X5857Y1172D02* X5836D01* X5857Y1168D02* X5836D01* Y1176D02* X5857D01* X5836Y1180D02* X5857D01* X5836Y1184D02* X5857D01* Y1188D02* X5836D01* X5857Y1192D02* X5836D01* Y1200D02* X5857D01* X5836Y1196D02* X5857D01* Y1204D02* X5836D01* X5857Y1208D02* X5836D01* Y1212D02* X5857D01* X5836Y1216D02* X5857D01* X5836Y1220D02* X5857D01* X5836Y1224D02* X5857D01* X5836Y1228D02* X5857D01* Y1236D02* X5836D01* X5857Y1232D02* X5836D01* Y1240D02* X5857D01* X5836Y1244D02* X5857D01* X5836Y1248D02* X5857D01* Y1252D02* X5836D01* X5857Y1256D02* X5836D01* Y1264D02* X5857D01* X5836Y1260D02* X5857D01* Y1268D02* X5836D01* X5857Y1272D02* X5836D01* X5857Y1276D02* X5836D01* Y1280D02* X5857D01* X5836Y1284D02* X5857D01* Y1292D02* X5836D01* X5857Y1288D02* X5836D01* Y1296D02* X5857D01* X5836Y1300D02* X5857D01* X5836Y1304D02* X5857D01* X5836Y1308D02* X5857D01* X5836Y1312D02* X5857D01* Y1316D02* X5836D01* X5857Y1320D02* X5836D01* Y1328D02* X5857D01* X5836Y1324D02* X5857D01* Y1332D02* X5836D01* X5857Y1336D02* X5836D01* X5857Y1340D02* X5836D01* X5857Y1348D02* X5836D01* X5857Y1344D02* X5836D01* Y1352D02* X5857D01* X5836Y1356D02* X5857D01* Y1364D02* X5836D01* X5857Y1360D02* X5836D01* Y1368D02* X5857D01* X5836Y1372D02* X5857D01* X5836Y1376D02* X5857D01* Y1380D02* X5836D01* X5857Y1384D02* X5836D01* Y1392D02* X5857D01* X5836Y1388D02* X5857D01* Y1396D02* X5836D01* X5857Y1400D02* X5836D01* X5857Y1404D02* X5836D01* Y1424D02* X5857D01* X5836Y1428D02* X5857D01* Y1432D02* X5836D01* X5857Y1436D02* X5836D01* X5857Y1440D02* X5836D01* X5857Y1412D02* X5836D01* X5857Y1408D02* X5836D01* Y1416D02* X5857D01* X5836Y1420D02* X5857D01* Y1444D02* X5836D01* X5857Y1448D02* X5836D01* Y1456D02* X5857D01* X5836Y1452D02* X5857D01* Y1460D02* X5836D01* X5857Y1464D02* X5836D01* X5857Y1468D02* X5836D01* Y1472D02* X5857D01* X5836Y1476D02* X5857D01* Y1484D02* X5836D01* X5857Y1480D02* X5836D01* Y1488D02* X5857D01* X5836Y1492D02* X5857D01* Y1496D02* X5836D01* X5857Y1500D02* X5836D01* X5857Y1504D02* X5836D01* X5857Y1508D02* X5836D01* X5857Y1512D02* X5836D01* Y1516D02* X5857D01* X5836Y1520D02* X5857D01* X5836Y1524D02* X5857D01* Y1532D02* X5836D01* X5857Y1528D02* X5836D01* X5857Y1540D02* X5836D01* X5857Y1536D02* X5836D01* Y1544D02* X5857D01* X5836Y1548D02* X5857D01* X5836Y1552D02* X5857D01* X5836Y1556D02* X5857D01* Y1560D02* X5836D01* X5857Y1564D02* X5836D01* X5857Y1568D02* X5836D01* X5857Y1572D02* X5836D01* X5857Y1576D02* X5836D01* Y1580D02* X5857D01* X5836Y1584D02* X5857D01* X5836Y1588D02* X5857D01* Y1596D02* X5836D01* X5857Y1592D02* X5836D01* Y1600D02* X5857D01* X5836Y1604D02* X5857D01* X5836Y1608D02* X5857D01* X5836Y1612D02* X5857D01* X5836Y1616D02* X5857D01* Y1620D02* X5836D01* X5857Y1624D02* X5836D01* Y1632D02* X5857D01* X5836Y1628D02* X5857D01* Y1636D02* X5836D01* X5857Y1640D02* X5836D01* Y1644D02* X5857D01* X5836Y1648D02* X5857D01* X5836Y1652D02* X5857D01* Y1660D02* X5836D01* X5857Y1656D02* X5836D01* Y1664D02* X5857D01* X5836Y1668D02* X5857D01* X5836Y1672D02* X5857D01* X5836Y1676D02* X5857D01* X5836Y1680D02* X5857D01* Y1684D02* X5836D01* X5857Y1688D02* X5836D01* Y1696D02* X5857D01* X5836Y1692D02* X5857D01* X5836Y1716D02* X5857D01* X5858Y1717D02* Y1118D01* X5836Y1104D02* X7834D01* Y1100D02* X5834D01* X5859Y1116D02* X5836D01* Y1120D02* X5857D01* X5836Y1108D02* X7834D01* Y1120D02* X7781D01* X7834Y1080D02* X1426D01* Y1076D02* X7834D01* X7781Y1180D02* X7834D01* Y1172D02* X7781D01* X7834Y1044D02* X1426D01* Y1040D02* X7834D01* X7781Y1124D02* X7834D01* Y1128D02* X7781D01* X7834Y1008D02* X1426D01* Y1004D02* X7834D01* X7781Y1152D02* X7834D01* Y1148D02* X7781D01* X7834Y1036D02* X1426D01* Y1028D02* X7834D01* X7781Y1188D02* X7834D01* Y1192D02* X7781D01* X7740Y1000D02* X7449D01* X7834Y1032D02* X1426D01* X1500Y1000D02* Y1394D01* X1578Y1496D02* X1426D01* Y1492D02* X1578D01* X1426Y1488D02* X1578D01* X1426Y1312D02* X1794D01* Y1272D02* X1426D01* X1441Y1394D02* Y1472D01* X1578Y1448D02* X1426D01* Y1444D02* X1578D01* X1426Y1200D02* X1794D01* Y1204D02* X1426D01* X1571Y886D02* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1651Y877D02* X1642Y868D01* Y859D01* X1651Y850D01* X1687D01* Y886D01* X1794Y1120D02* X1426D01* Y1124D02* X1794D01* X1784Y859D02* X1793Y850D01* X1784Y859D02* Y886D01* X1794Y1128D02* X1426D01* Y1136D02* X1794D01* X1678Y894D02* X1687Y886D01* X1678Y894D02* X1651D01* X1794Y1156D02* X1426D01* Y1292D02* X1794D01* X1746Y1651D02* X1754Y1646D01* X1746Y1651D02* X1740Y1659D01* Y1679D02* X1746Y1687D01* X1754Y1693D01* X1774D02* X1782Y1687D01* X1787Y1679D01* X1825Y1651D02* X1819Y1659D01* Y1679D02* X1824Y1687D01* X1833Y1693D01* X1853D02* X1860Y1687D01* X1866Y1679D01* Y1659D02* X1861Y1651D01* X1794Y1356D02* X1426D01* Y1352D02* X1794D01* X1853Y1496D02* X1860Y1503D01* X1853Y1496D02* X1844Y1491D01* X1794Y1320D02* X1426D01* Y1316D02* X1794D01* X1859Y1540D02* X1852Y1547D01* X1859Y1540D02* X1864Y1531D01* X1794Y1376D02* X1426D01* Y1360D02* X1794D01* X1804Y1511D02* X1809Y1502D01* X1816Y1495D02* X1809Y1502D01* X1794Y1384D02* X1426D01* Y1380D02* X1794D01* X1824Y1551D02* X1815Y1546D01* X1808Y1539D02* X1815Y1546D01* X1794Y1408D02* X1426D01* Y1412D02* X1794D01* X1852Y1547D02* X1844Y1551D01* X1794Y1364D02* X1426D01* X1578Y1536D02* X1426D01* X1578Y1540D02* X1426D01* Y1548D02* X1578D01* X1426Y1544D02* X1578D01* X1426Y1300D02* X1794D01* Y1296D02* X1426D01* X1578Y1440D02* X1426D01* Y1436D02* X1578D01* X1426Y1232D02* X1794D01* Y1236D02* X1426D01* X1578Y1532D02* X1426D01* Y1516D02* X1578D01* X1426Y1520D02* X1578D01* X1426Y1348D02* X1794D01* Y1344D02* X1426D01* X1578Y1468D02* X1426D01* Y1476D02* X1578D01* X1426Y1472D02* X1578D01* X1426Y1216D02* X1794D01* Y1220D02* X1426D01* X1578Y1524D02* X1426D01* Y1528D02* X1578D01* X1579Y1417D02* X1583Y1413D01* X1426Y1192D02* X1794D01* Y1184D02* X1426D01* X1544Y886D02* X1536Y894D01* Y877D02* X1509D01* X1426Y992D02* X7834D01* Y996D02* X1426D01* X1544Y859D02* X1536Y850D01* X1509D01* X1500Y859D02* X1509Y850D01* X1426Y988D02* X7834D01* Y984D02* X1426D01* X1509Y894D02* X1500Y886D01* X1509Y894D02* X1536D01* X1426Y1168D02* X1794D01* Y1172D02* X1426D01* X1580Y894D02* X1571Y886D01* X1580Y894D02* X1607D01* X1426Y1132D02* X1794D01* X1850Y1000D02* X1500D01* X1794Y1212D02* X1426D01* Y1208D02* X1794D01* X1799Y1098D02* X5831D01* X5835Y1102D01* Y1717D01* X5836Y1700D02* X5857D01* X5836Y1704D02* X5857D01* Y1708D02* X5836D01* X5857Y1712D02* X5836D01* X5857Y1140D02* X5836D01* X5857Y1144D02* X5836D01* Y1136D02* X5857D01* X5836Y1132D02* X5857D01* X5862Y1114D02* X7776D01* X7780Y1118D02* X7776Y1114D01* X7834Y1048D02* X1426D01* Y1052D02* X7834D01* X7781Y1160D02* X7834D01* Y1164D02* X7781D01* X7834Y1020D02* X1426D01* Y1024D02* X7834D01* X7781Y1140D02* X7834D01* Y1144D02* X7781D01* X7834Y1088D02* X1426D01* Y1084D02* X7834D01* X7781Y1168D02* X7834D01* X7799Y1197D02* Y1059D01* X7834Y1096D02* X1426D01* Y1100D02* X1796D01* X1829Y877D02* Y886D01* X1820Y894D02* X1829Y886D01* X1794Y1160D02* X1426D01* Y1164D02* X1794D01* X1607Y894D02* X1616Y886D01* X1509Y877D02* X1500Y886D01* X1426Y976D02* X7834D01* Y980D02* X1426D01* X1544Y868D02* Y859D01* Y868D02* X1536Y877D01* X1426Y972D02* X7834D01* X7835Y965D02* Y4972D01* X1425D01* X1426Y4968D02* X7834D01* X7740Y4937D02* X7449D01* X7356Y4758D02* X7364Y4764D01* X7368Y4770D01* Y4790D02* X7362Y4797D01* X7356Y4801D01* X7336D02* X7329Y4795D01* X7325Y4790D01* Y4770D02* X7331Y4762D01* X7336Y4758D01* Y4680D02* X7331Y4683D01* X7325Y4691D01* Y4711D02* X7329Y4716D01* X7336Y4722D01* X7356D02* X7362Y4719D01* X7368Y4711D01* Y4691D02* X7364Y4686D01* X7356Y4680D01* Y4601D02* X7364Y4607D01* X7368Y4612D01* Y4632D02* X7362Y4640D01* X7356Y4643D01* X7336D02* X7329Y4637D01* X7325Y4632D01* Y4612D02* X7331Y4604D01* X7336Y4601D01* X7356Y4522D02* X7364Y4528D01* X7368Y4533D01* Y4553D02* X7362Y4561D01* X7356Y4565D01* X7336D02* X7329Y4559D01* X7325Y4553D01* Y4533D02* X7331Y4525D01* X7336Y4522D01* Y4443D02* X7331Y4447D01* X7325Y4455D01* Y4475D02* X7329Y4480D01* X7336Y4486D01* X7356D02* X7362Y4482D01* X7368Y4475D01* Y4455D02* X7364Y4449D01* X7356Y4443D01* Y4365D02* X7364Y4371D01* X7368Y4376D01* Y4396D02* X7362Y4404D01* X7356Y4407D01* X7336D02* X7329Y4401D01* X7325Y4396D01* Y4376D02* X7331Y4368D01* X7336Y4365D01* X7494Y4601D02* X7489Y4604D01* X7483Y4612D01* Y4632D02* X7486Y4637D01* X7494Y4643D01* X7514D02* X7519Y4640D01* X7525Y4632D01* Y4612D02* X7522Y4607D01* X7514Y4601D01* Y4443D02* X7522Y4449D01* X7525Y4455D01* Y4475D02* X7519Y4482D01* X7514Y4486D01* X7494D02* X7486Y4480D01* X7483Y4475D01* Y4455D02* X7489Y4447D01* X7494Y4443D01* X7651Y4365D02* X7646Y4368D01* X7640Y4376D01* Y4396D02* X7644Y4401D01* X7651Y4407D01* X7671D02* X7677Y4404D01* X7683Y4396D01* Y4376D02* X7679Y4371D01* X7671Y4365D01* X7781Y4420D02* X7834D01* X7781Y4424D02* X7834D01* X7781Y4428D02* X7834D01* Y4436D02* X7781D01* X7834Y4432D02* X7781D01* Y4440D02* X7834D01* X7781Y4444D02* X7834D01* Y4452D02* X7781D01* X7834Y4448D02* X7781D01* Y4456D02* X7834D01* X7781Y4460D02* X7834D01* X7781Y4464D02* X7834D01* Y4468D02* X7781D01* X7834Y4472D02* X7781D01* Y4480D02* X7834D01* X7781Y4476D02* X7834D01* Y4484D02* X7781D01* X7834Y4488D02* X7781D01* X7834Y4492D02* X7781D01* Y4496D02* X7834D01* X7781Y4500D02* X7834D01* Y4508D02* X7781D01* X7834Y4504D02* X7781D01* Y4512D02* X7834D01* X7781Y4516D02* X7834D01* Y4520D02* X7781D01* X7834Y4524D02* X7781D01* X7834Y4528D02* X7781D01* Y4536D02* X7834D01* X7781Y4532D02* X7834D01* X7781Y4544D02* X7834D01* X7781Y4540D02* X7834D01* Y4548D02* X7781D01* X7834Y4552D02* X7781D01* X7834Y4556D02* X7781D01* Y4560D02* X7834D01* X7781Y4564D02* X7834D01* Y4572D02* X7781D01* X7834Y4568D02* X7781D01* Y4576D02* X7834D01* X7781Y4580D02* X7834D01* Y4584D02* X7781D01* X7834Y4588D02* X7781D01* X7834Y4592D02* X7781D01* Y4380D02* X7834D01* X7781Y4376D02* X7834D01* Y4372D02* X7781D01* X7834Y4368D02* X7781D01* X7834Y4364D02* X7781D01* Y4356D02* X7834D01* X7781Y4360D02* X7834D01* Y4328D02* X6513D01* X6536Y4316D02* X6513D01* Y4312D02* X6534D01* X6513Y4320D02* X7834D01* Y4324D02* X6513D01* X6535Y4315D02* X6539Y4319D01* X6534Y4300D02* X6513D01* X6534Y4304D02* X6513D01* Y4308D02* X6534D01* X6535Y4315D02* Y2366D01* X6534Y2376D02* X6214D01* X6240Y2366D02* X6535D01* X6534Y2380D02* X6214D01* Y2364D02* X6237D01* X6236Y2362D02* Y1721D01* X6235Y1724D02* X4001D01* X4000Y1721D02* X5831D01* X5835Y1717D01* X5832Y1720D02* X5861D01* X5862Y1721D02* X5858Y1717D01* X5862Y1721D02* X6236D01* X6235Y1732D02* X4001D01* Y1728D02* X6235D01* X6213Y1748D02* Y2390D01* X6508D01* X6512Y2394D01* X6534Y2476D02* X6513D01* X6534Y2472D02* X6513D01* Y2464D02* X6534D01* X6513Y2468D02* X6534D01* Y2460D02* X6513D01* X6534Y2456D02* X6513D01* Y2452D02* X6534D01* X6513Y2448D02* X6534D01* X6513Y2444D02* X6534D01* Y2436D02* X6513D01* X6534Y2440D02* X6513D01* Y2432D02* X6534D01* X6513Y2428D02* X6534D01* Y2424D02* X6513D01* X6534Y2420D02* X6513D01* X6534Y2416D02* X6513D01* Y2408D02* X6534D01* X6513Y2412D02* X6534D01* Y2404D02* X6513D01* X6534Y2400D02* X6513D01* X6512Y2394D02* Y4394D01* X6513Y4388D02* X6534D01* X6513Y4384D02* X6534D01* X6513Y4380D02* X6534D01* X6513Y4376D02* X6534D01* Y4372D02* X6513D01* X6534Y4368D02* X6513D01* X6534Y4364D02* X6513D01* Y4344D02* X6536D01* X6535Y4346D02* X6539Y4342D01* X6513Y4340D02* X7834D01* Y4336D02* X6513D01* X6534Y4348D02* X6513D01* X6534Y4352D02* X6513D01* Y4356D02* X6534D01* X6513Y4360D02* X6534D01* X6539Y4342D02* X7776D01* X7780Y4346D01* X7781Y4348D02* X7834D01* Y4352D02* X7781D01* X7834Y4344D02* X7779D01* X7780Y4346D02* Y4870D01* X7736Y4916D02* X7834D01* X8324Y4737D02* X8124Y4937D01* X8324Y5137D01* X8524Y4937D01* X8324Y4737D01* Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5662D02* X7999Y5462D01* X7799Y5262D01* X7599Y5462D01* X7799Y5662D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7089Y5370D02* X7107Y5397D01* Y5415D01* X7089Y5441D01* X7045Y5432D02* X7054Y5415D01* Y5397D01* X7045Y5379D01* X7036Y5370D01* X7000D01* Y5441D01* X7045Y5432D02* X7036Y5441D01* X7000D01* X6982D02* Y5370D01* X6929Y5441D01* Y5370D01* X6858Y5432D02* X6867Y5441D01* X6902D01* X6911Y5432D01* X6894Y5397D02* X6911D01* Y5379D01* X6902Y5370D01* X6867D01* X6858Y5379D01* Y5432D01* X6822Y5441D02* X6805Y5415D01* Y5397D01* X6822Y5370D01* X7748Y4904D02* X7834D01* X7781Y4864D02* X7834D01* Y4868D02* X7781D01* X7834Y4908D02* X7744D01* X7740Y4937D02* X7799Y4878D01* X7834Y4928D02* X1426D01* Y4932D02* X7834D01* X7776Y4876D02* X7834D01* Y4872D02* X7780D01* X7834Y4920D02* X1426D01* Y4916D02* X1805D01* X1807Y4917D02* X1803Y4913D01* X1802Y4908D02* X1426D01* X1802Y4912D02* X1426D01* Y4904D02* X1802D01* X1426Y4900D02* X1802D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5887D02* Y5037D01* X7834Y4952D02* X1426D01* Y4948D02* X7834D01* X7768Y4884D02* X7834D01* Y4880D02* X7772D01* X7834Y4936D02* X1426D01* Y4940D02* X7834D01* X7780Y4870D02* X7778Y4873D01* X7781Y4824D02* X7834D01* X7781Y4828D02* X7834D01* X7781Y4832D02* X7834D01* Y4836D02* X7781D01* X7834Y4840D02* X7781D01* Y4848D02* X7834D01* X7781Y4844D02* X7834D01* Y4852D02* X7781D01* X7834Y4856D02* X7781D01* X7834Y4896D02* X7756D01* X7752Y4900D02* X7834D01* X7781Y4860D02* X7834D01* Y4820D02* X7781D01* X7834Y4816D02* X7781D01* Y4812D02* X7834D01* X7781Y4808D02* X7834D01* X7781Y4804D02* X7834D01* Y4780D02* X7781D01* X7834Y4784D02* X7781D01* Y4776D02* X7834D01* X7781Y4772D02* X7834D01* Y4768D02* X7781D01* X7834Y4764D02* X7781D01* X7834Y4760D02* X7781D01* Y4800D02* X7834D01* X7781Y4796D02* X7834D01* Y4792D02* X7781D01* X7834Y4788D02* X7781D01* X7799Y4760D02* Y4587D01* X7834Y4596D02* X7781D01* X7834Y4600D02* X7781D01* Y4608D02* X7834D01* X7781Y4604D02* X7834D01* Y4612D02* X7781D01* X7834Y4616D02* X7781D01* X7834Y4620D02* X7781D01* Y4624D02* X7834D01* X7781Y4628D02* X7834D01* Y4636D02* X7781D01* X7834Y4632D02* X7781D01* Y4640D02* X7834D01* X7781Y4644D02* X7834D01* Y4648D02* X7781D01* X7834Y4652D02* X7781D01* X7834Y4656D02* X7781D01* Y4664D02* X7834D01* X7781Y4660D02* X7834D01* Y4668D02* X7781D01* X7834Y4672D02* X7781D01* Y4720D02* X7834D01* X7781Y4716D02* X7834D01* X7781Y4712D02* X7834D01* Y4708D02* X7781D01* X7834Y4704D02* X7781D01* Y4696D02* X7834D01* X7781Y4700D02* X7834D01* Y4692D02* X7781D01* X7834Y4688D02* X7781D01* Y4684D02* X7834D01* X7781Y4680D02* X7834D01* X7781Y4676D02* X7834D01* Y4756D02* X7781D01* X7834Y4752D02* X7781D01* Y4748D02* X7834D01* X7781Y4744D02* X7834D01* X7781Y4740D02* X7834D01* Y4732D02* X7781D01* X7834Y4736D02* X7781D01* Y4728D02* X7834D01* X7781Y4724D02* X7834D01* X7799Y4760D02* Y4878D01* X7740Y4912D02* X7834D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X8024D02* X8324Y1300D01* X8624Y1000D01* X8324Y700D01* X8024Y1000D01* X7799Y1059D02* X7740Y1000D01* X7834D02* X1426D01* Y1012D02* X7834D01* X7781Y1176D02* X7834D01* Y1184D02* X7781D01* X7834Y1060D02* X1426D01* Y1056D02* X7834D01* X7781Y1136D02* X7834D01* Y1132D02* X7781D01* X7834Y1072D02* X1426D01* Y1068D02* X7834D01* X7781Y1156D02* X7834D01* Y1264D02* X7781D01* X7834Y1260D02* X7781D01* Y1252D02* X7834D01* X7781Y1256D02* X7834D01* Y1248D02* X7781D01* X7834Y1244D02* X7781D01* X7834Y1240D02* X7781D01* Y1236D02* X7834D01* X7781Y1232D02* X7834D01* Y1208D02* X7781D01* X7834Y1204D02* X7781D01* Y1196D02* X7834D01* X7781Y1200D02* X7834D01* X7781Y1212D02* X7834D01* X7781Y1216D02* X7834D01* Y1220D02* X7781D01* X7834Y1224D02* X7781D01* X7834Y1228D02* X7781D01* Y1268D02* X7834D01* X7781Y1272D02* X7834D01* X7781Y1276D02* X7834D01* Y1280D02* X7781D01* X7834Y1284D02* X7781D01* Y1292D02* X7834D01* X7781Y1288D02* X7834D01* Y1296D02* X7781D01* X7834Y1300D02* X7781D01* Y1304D02* X7834D01* X7781Y1308D02* X7834D01* X7781Y1312D02* X7834D01* Y1320D02* X7781D01* X7834Y1316D02* X7781D01* Y1396D02* X7834D01* X7781Y1400D02* X7834D01* X7781Y1404D02* X7834D01* Y1408D02* X7781D01* X7834Y1412D02* X7781D01* Y1432D02* X7834D01* X7781Y1436D02* X7834D01* X7781Y1440D02* X7834D01* Y1448D02* X7781D01* X7834Y1444D02* X7781D01* X7834Y1488D02* X7781D01* X7834Y1492D02* X7781D01* Y1484D02* X7834D01* X7781Y1480D02* X7834D01* Y1456D02* X7781D01* X7834Y1452D02* X7781D01* Y1460D02* X7834D01* X7781Y1464D02* X7834D01* X7781Y1468D02* X7834D01* Y1472D02* X7781D01* X7834Y1476D02* X7781D01* Y1496D02* X7834D01* X7781Y1500D02* X7834D01* X7781Y1504D02* X7834D01* Y1512D02* X7781D01* X7834Y1508D02* X7781D01* Y1516D02* X7834D01* X7781Y1520D02* X7834D01* Y1524D02* X7781D01* X7834Y1528D02* X7781D01* X7834Y1532D02* X7781D01* Y1540D02* X7834D01* X7781Y1536D02* X7834D01* Y1544D02* X7781D01* X7834Y1548D02* X7781D01* Y1556D02* X7834D01* X7781Y1552D02* X7834D01* X7781Y1560D02* X7834D01* X7781Y1564D02* X7834D01* X7781Y1568D02* X7834D01* Y1576D02* X7781D01* X7834Y1572D02* X7781D01* Y1580D02* X7834D01* X7781Y1584D02* X7834D01* Y1588D02* X7781D01* X7834Y1592D02* X7781D01* X7834Y1596D02* X7781D01* X7834Y1600D02* X7781D01* X7834Y1604D02* X7781D01* Y1608D02* X7834D01* X7781Y1612D02* X7834D01* X7781Y1616D02* X7834D01* Y1624D02* X7781D01* X7834Y1620D02* X7781D01* Y1628D02* X7834D01* X7781Y1632D02* X7834D01* Y1640D02* X7781D01* X7834Y1636D02* X7781D01* Y1644D02* X7834D01* X7781Y1648D02* X7834D01* Y1652D02* X7781D01* X7834Y1656D02* X7781D01* X7834Y1660D02* X7781D01* X7593Y1687D02* X7601Y1693D01* X7604Y1699D01* Y1719D02* X7598Y1727D01* X7593Y1730D01* X7573D02* X7565Y1724D01* X7561Y1719D01* Y1699D02* X7567Y1691D01* X7573Y1687D01* X7834Y1792D02* X7781D01* X7834Y1796D02* X7781D01* Y1788D02* X7834D01* X7781Y1784D02* X7834D01* Y1760D02* X7781D01* X7834Y1756D02* X7781D01* Y1752D02* X7834D01* X7781Y1748D02* X7834D01* X7781Y1744D02* X7834D01* Y1736D02* X7781D01* X7834Y1740D02* X7781D01* Y1732D02* X7834D01* X7781Y1728D02* X7834D01* Y1704D02* X7781D01* X7834Y1700D02* X7781D01* Y1692D02* X7834D01* X7781Y1696D02* X7834D01* Y1664D02* X7781D01* X7834Y1668D02* X7781D01* Y1672D02* X7834D01* X7781Y1676D02* X7834D01* X7781Y1680D02* X7834D01* Y1688D02* X7781D01* X7834Y1684D02* X7781D01* Y1708D02* X7834D01* X7781Y1712D02* X7834D01* Y1716D02* X7781D01* X7834Y1720D02* X7781D01* X7834Y1724D02* X7781D01* Y1764D02* X7834D01* X7781Y1768D02* X7834D01* X7781Y1772D02* X7834D01* Y1776D02* X7781D01* X7834Y1780D02* X7781D01* Y1804D02* X7834D01* X7781Y1800D02* X7834D01* Y1808D02* X7781D01* X7834Y1812D02* X7781D01* X7834Y1816D02* X7781D01* Y1820D02* X7834D01* X7781Y1824D02* X7834D01* X7781Y1828D02* X7834D01* X7781Y1832D02* X7834D01* X7781Y1836D02* X7834D01* Y1840D02* X7781D01* X7834Y1844D02* X7781D01* Y1852D02* X7834D01* X7781Y1848D02* X7834D01* Y1856D02* X7781D01* X7834Y1860D02* X7781D01* X7834Y1864D02* X7781D01* Y1868D02* X7834D01* X7781Y1872D02* X7834D01* Y1880D02* X7781D01* X7834Y1876D02* X7781D01* Y1884D02* X7834D01* X7781Y1888D02* X7834D01* X7781Y1892D02* X7834D01* X7781Y1896D02* X7834D01* X7781Y1900D02* X7834D01* Y1904D02* X7781D01* X7834Y1908D02* X7781D01* Y1916D02* X7834D01* X7781Y1912D02* X7834D01* Y1920D02* X7781D01* X7834Y1924D02* X7781D01* X7834Y1928D02* X7781D01* Y1932D02* X7834D01* X7781Y1936D02* X7834D01* Y1944D02* X7781D01* X7834Y1940D02* X7781D01* Y1948D02* X7834D01* X7781Y1952D02* X7834D01* Y1956D02* X7781D01* X7834Y1960D02* X7781D01* X7834Y1964D02* X7781D01* X7834Y1968D02* X7781D01* X7834Y1972D02* X7781D01* Y1980D02* X7834D01* X7781Y1976D02* X7834D01* Y1984D02* X7781D01* X7834Y1988D02* X7781D01* X7834Y1992D02* X7781D01* Y1996D02* X7834D01* X7781Y2000D02* X7834D01* Y2008D02* X7781D01* X7834Y2004D02* X7781D01* Y2012D02* X7834D01* X7781Y2016D02* X7834D01* Y2020D02* X7781D01* X7834Y2024D02* X7781D01* X7834Y2028D02* X7781D01* Y2036D02* X7834D01* X7781Y2032D02* X7834D01* X7781Y2044D02* X7834D01* X7781Y2040D02* X7834D01* Y2048D02* X7781D01* X7834Y2052D02* X7781D01* X7834Y2056D02* X7781D01* Y2076D02* X7834D01* X7781Y2080D02* X7834D01* Y2084D02* X7781D01* X7834Y2088D02* X7781D01* X7834Y2092D02* X7781D01* X7834Y2064D02* X7781D01* X7834Y2060D02* X7781D01* Y2068D02* X7834D01* X7781Y2072D02* X7834D01* Y2096D02* X7781D01* X7834Y2100D02* X7781D01* Y2108D02* X7834D01* X7781Y2104D02* X7834D01* Y2112D02* X7781D01* X7834Y2116D02* X7781D01* X7834Y2120D02* X7781D01* Y2124D02* X7834D01* X7781Y2128D02* X7834D01* Y2136D02* X7781D01* X7834Y2132D02* X7781D01* Y2140D02* X7834D01* X7781Y2144D02* X7834D01* Y2148D02* X7781D01* X7834Y2152D02* X7781D01* X7834Y2156D02* X7781D01* X7834Y2160D02* X7781D01* X7834Y2164D02* X7781D01* Y2172D02* X7834D01* X7781Y2168D02* X7834D01* Y2176D02* X7781D01* X7834Y2180D02* X7781D01* X7834Y2184D02* X7781D01* Y2188D02* X7834D01* X7781Y2192D02* X7834D01* Y2216D02* X7781D01* X7834Y2220D02* X7781D01* Y2228D02* X7834D01* X7781Y2224D02* X7834D01* Y2256D02* X7781D01* X7834Y2252D02* X7781D01* Y2248D02* X7834D01* X7781Y2244D02* X7834D01* X7781Y2240D02* X7834D01* Y2232D02* X7781D01* X7834Y2236D02* X7781D01* Y2212D02* X7834D01* X7781Y2208D02* X7834D01* Y2204D02* X7781D01* X7834Y2200D02* X7781D01* X7834Y2196D02* X7781D01* Y2260D02* X7834D01* X7781Y2264D02* X7834D01* X7781Y2268D02* X7834D01* Y2272D02* X7781D01* X7834Y2276D02* X7781D01* Y2284D02* X7834D01* X7781Y2280D02* X7834D01* Y2288D02* X7781D01* X7834Y2292D02* X7781D01* Y2296D02* X7834D01* X7781Y2300D02* X7834D01* X7781Y2304D02* X7834D01* Y2312D02* X7781D01* X7834Y2308D02* X7781D01* Y2316D02* X7834D01* X7781Y2320D02* X7834D01* X7573Y2317D02* X7567Y2321D01* X7561Y2329D01* Y2349D02* X7565Y2354D01* X7573Y2360D01* X7593D02* X7598Y2356D01* X7604Y2349D01* Y2329D02* X7601Y2323D01* X7593Y2317D01* X7781Y2324D02* X7834D01* X7781Y2328D02* X7834D01* X7781Y2332D02* X7834D01* Y2336D02* X7781D01* X7834Y2340D02* X7781D01* Y2348D02* X7834D01* X7781Y2344D02* X7834D01* Y2352D02* X7781D01* X7834Y2356D02* X7781D01* Y2360D02* X7834D01* X7781Y2364D02* X7834D01* X7781Y2368D02* X7834D01* Y2376D02* X7781D01* X7834Y2372D02* X7781D01* Y2380D02* X7834D01* X7781Y2384D02* X7834D01* Y2388D02* X7781D01* X7834Y2392D02* X7781D01* X7834Y2396D02* X7781D01* X7834Y2400D02* X7781D01* X7834Y2404D02* X7781D01* Y2412D02* X7834D01* X7781Y2408D02* X7834D01* Y2416D02* X7781D01* X7834Y2420D02* X7781D01* Y2424D02* X7834D01* X7781Y2428D02* X7834D01* X7781Y2432D02* X7834D01* Y2440D02* X7781D01* X7834Y2436D02* X7781D01* Y2444D02* X7834D01* X7781Y2448D02* X7834D01* Y2452D02* X7781D01* X7834Y2456D02* X7781D01* X7834Y2460D02* X7781D01* X7834Y2464D02* X7781D01* X7834Y2468D02* X7781D01* Y2476D02* X7834D01* X7781Y2472D02* X7834D01* Y2480D02* X7781D01* X7834Y2484D02* X7781D01* Y2488D02* X7834D01* X7781Y2492D02* X7834D01* X7781Y2496D02* X7834D01* Y2504D02* X7781D01* X7834Y2500D02* X7781D01* Y2508D02* X7834D01* X7781Y2512D02* X7834D01* Y2516D02* X7781D01* X7834Y2520D02* X7781D01* X7834Y2524D02* X7781D01* Y2532D02* X7834D01* X7781Y2528D02* X7834D01* X7781Y2540D02* X7834D01* X7781Y2536D02* X7834D01* Y2544D02* X7781D01* X7834Y2548D02* X7781D01* X7834Y2552D02* X7781D01* Y2572D02* X7834D01* X7781Y2576D02* X7834D01* Y2580D02* X7781D01* X7834Y2584D02* X7781D01* X7834Y2588D02* X7781D01* Y2596D02* X7834D01* X7781Y2592D02* X7834D01* Y2600D02* X7781D01* X7834Y2604D02* X7781D01* X7834Y2664D02* X7781D01* X7834Y2668D02* X7781D01* Y2660D02* X7834D01* X7781Y2656D02* X7834D01* Y2648D02* X7781D01* X7834Y2652D02* X7781D01* Y2644D02* X7834D01* X7781Y2640D02* X7834D01* Y2636D02* X7781D01* X7834Y2632D02* X7781D01* X7834Y2628D02* X7781D01* X7593Y2632D02* X7601Y2638D01* X7604Y2644D01* Y2664D02* X7598Y2671D01* X7593Y2675D01* X7573D02* X7565Y2669D01* X7561Y2664D01* Y2644D02* X7567Y2636D01* X7573Y2632D01* X7834Y2560D02* X7781D01* X7834Y2556D02* X7781D01* Y2564D02* X7834D01* X7781Y2568D02* X7834D01* Y2608D02* X7781D01* X7834Y2612D02* X7781D01* X7834Y2616D02* X7781D01* Y2620D02* X7834D01* X7781Y2624D02* X7834D01* Y2672D02* X7781D01* X7834Y2676D02* X7781D01* X7834Y2680D02* X7781D01* Y2684D02* X7834D01* X7781Y2688D02* X7834D01* X7781Y2692D02* X7834D01* X7781Y2696D02* X7834D01* X7781Y2700D02* X7834D01* Y2704D02* X7781D01* X7834Y2708D02* X7781D01* Y2716D02* X7834D01* X7781Y2712D02* X7834D01* Y2720D02* X7781D01* X7834Y2724D02* X7781D01* X7834Y2728D02* X7781D01* Y2732D02* X7834D01* X7781Y2736D02* X7834D01* Y2744D02* X7781D01* X7834Y2740D02* X7781D01* X7834Y2752D02* X7781D01* X7834Y2748D02* X7781D01* Y2756D02* X7834D01* X7781Y2760D02* X7834D01* X7781Y2764D02* X7834D01* Y2768D02* X7781D01* X7834Y2772D02* X7781D01* Y2780D02* X7834D01* X7781Y2776D02* X7834D01* Y2784D02* X7781D01* X7834Y2788D02* X7781D01* X7834Y2792D02* X7781D01* Y2796D02* X7834D01* X7781Y2800D02* X7834D01* Y2808D02* X7781D01* X7834Y2804D02* X7781D01* Y2812D02* X7834D01* X7781Y2816D02* X7834D01* Y2840D02* X7781D01* X7834Y2844D02* X7781D01* Y2836D02* X7834D01* X7781Y2832D02* X7834D01* Y2828D02* X7781D01* X7834Y2824D02* X7781D01* X7834Y2820D02* X7781D01* Y2852D02* X7834D01* X7781Y2848D02* X7834D01* Y2856D02* X7781D01* X7834Y2860D02* X7781D01* X7834Y2864D02* X7781D01* X7834Y2868D02* X7781D01* X7834Y2872D02* X7781D01* Y2880D02* X7834D01* X7781Y2876D02* X7834D01* Y2884D02* X7781D01* X7834Y2888D02* X7781D01* X7834Y2892D02* X7781D01* Y2896D02* X7834D01* X7781Y2900D02* X7834D01* Y2908D02* X7781D01* X7834Y2904D02* X7781D01* Y2912D02* X7834D01* X7781Y2916D02* X7834D01* Y2920D02* X7781D01* X7834Y2924D02* X7781D01* X7834Y2928D02* X7781D01* Y2968D02* X7834D01* X7781Y2972D02* X7834D01* X7781Y2976D02* X7834D01* Y2980D02* X7781D01* X7834Y2984D02* X7781D01* Y3008D02* X7834D01* X7781Y3004D02* X7834D01* Y2996D02* X7781D01* X7834Y3000D02* X7781D01* Y2992D02* X7834D01* X7781Y2988D02* X7834D01* Y3028D02* X7781D01* X7834Y3024D02* X7781D01* Y3020D02* X7834D01* X7781Y3016D02* X7834D01* X7781Y3012D02* X7834D01* Y2964D02* X7781D01* X7834Y2960D02* X7781D01* Y2956D02* X7834D01* X7781Y2952D02* X7834D01* X7781Y2948D02* X7834D01* Y2940D02* X7781D01* X7834Y2944D02* X7781D01* Y2936D02* X7834D01* X7781Y2932D02* X7834D01* X7781Y3032D02* X7834D01* X7781Y3036D02* X7834D01* X7781Y3040D02* X7834D01* Y3044D02* X7781D01* X7834Y3048D02* X7781D01* Y3056D02* X7834D01* X7781Y3052D02* X7834D01* Y3060D02* X7781D01* X7834Y3064D02* X7781D01* Y3068D02* X7834D01* X7781Y3072D02* X7834D01* X7781Y3076D02* X7834D01* Y3084D02* X7781D01* X7834Y3080D02* X7781D01* Y3088D02* X7834D01* X7781Y3092D02* X7834D01* X7781Y3096D02* X7834D01* X7781Y3100D02* X7834D01* X7781Y3104D02* X7834D01* Y3108D02* X7781D01* X7834Y3112D02* X7781D01* Y3120D02* X7834D01* X7781Y3116D02* X7834D01* Y3124D02* X7781D01* X7834Y3128D02* X7781D01* Y3132D02* X7834D01* X7781Y3136D02* X7834D01* X7781Y3140D02* X7834D01* Y3148D02* X7781D01* X7834Y3144D02* X7781D01* Y3152D02* X7834D01* X7781Y3156D02* X7834D01* Y3160D02* X7781D01* X7834Y3164D02* X7781D01* X7834Y3168D02* X7781D01* X7834Y3172D02* X7781D01* X7834Y3176D02* X7781D01* Y3184D02* X7834D01* X7781Y3180D02* X7834D01* Y3188D02* X7781D01* X7834Y3192D02* X7781D01* Y3196D02* X7834D01* X7781Y3200D02* X7834D01* X7781Y3204D02* X7834D01* Y3212D02* X7781D01* X7834Y3208D02* X7781D01* Y3216D02* X7834D01* X7781Y3220D02* X7834D01* Y3224D02* X7781D01* X7834Y3228D02* X7781D01* X7834Y3232D02* X7781D01* X7834Y3236D02* X7781D01* X7834Y3240D02* X7781D01* Y3248D02* X7834D01* X7781Y3244D02* X7834D01* Y3252D02* X7781D01* X7834Y3256D02* X7781D01* Y3260D02* X7834D01* X7781Y3264D02* X7834D01* X7781Y3268D02* X7834D01* Y3300D02* X7781D01* X7834Y3304D02* X7781D01* Y3312D02* X7834D01* X7781Y3308D02* X7834D01* Y3276D02* X7781D01* X7834Y3272D02* X7781D01* Y3280D02* X7834D01* X7781Y3284D02* X7834D01* Y3288D02* X7781D01* X7834Y3292D02* X7781D01* X7834Y3296D02* X7781D01* Y3320D02* X7834D01* X7781Y3324D02* X7834D01* Y3316D02* X7781D01* X7761Y3352D02* X7758Y3347D01* X7750Y3341D01* X7781Y3384D02* X7834D01* X7781Y3388D02* X7834D01* Y3380D02* X7781D01* X7750Y3383D02* X7755Y3380D01* X7761Y3372D01* X7781Y3360D02* X7834D01* X7781Y3356D02* X7834D01* X7781Y3352D02* X7834D01* Y3340D02* X7781D01* X7834Y3336D02* X7781D01* Y3328D02* X7834D01* X7781Y3332D02* X7834D01* Y3344D02* X7781D01* X7834Y3348D02* X7781D01* X7730Y3341D02* X7725Y3344D01* X7719Y3352D01* Y3372D02* X7722Y3377D01* X7730Y3383D01* X7593Y3420D02* X7601Y3426D01* X7604Y3431D01* Y3451D02* X7598Y3459D01* X7593Y3462D01* X7573D02* X7565Y3456D01* X7561Y3451D01* Y3431D02* X7567Y3423D01* X7573Y3420D01* Y3577D02* X7567Y3581D01* X7561Y3588D01* Y3608D02* X7565Y3614D01* X7573Y3620D01* X7593D02* X7598Y3616D01* X7604Y3608D01* Y3588D02* X7601Y3583D01* X7593Y3577D01* Y3735D02* X7601Y3741D01* X7604Y3746D01* Y3766D02* X7598Y3774D01* X7593Y3777D01* X7573D02* X7565Y3771D01* X7561Y3766D01* Y3746D02* X7567Y3738D01* X7573Y3735D01* Y3892D02* X7567Y3895D01* X7561Y3903D01* Y3923D02* X7565Y3929D01* X7573Y3935D01* X7593D02* X7598Y3931D01* X7604Y3923D01* Y3903D02* X7601Y3898D01* X7593Y3892D01* Y4050D02* X7601Y4056D01* X7604Y4061D01* Y4081D02* X7598Y4089D01* X7593Y4092D01* X7573D02* X7565Y4086D01* X7561Y4081D01* Y4061D02* X7567Y4053D01* X7573Y4050D01* X7834Y3364D02* X7781D01* X7834Y3368D02* X7781D01* Y3376D02* X7834D01* X7781Y3372D02* X7834D01* Y3396D02* X7781D01* X7834Y3392D02* X7781D01* Y3400D02* X7834D01* X7781Y3404D02* X7834D01* X7781Y3408D02* X7834D01* Y3412D02* X7781D01* X7834Y3416D02* X7781D01* Y3440D02* X7834D01* X7781Y3436D02* X7834D01* Y3428D02* X7781D01* X7834Y3432D02* X7781D01* Y3424D02* X7834D01* X7781Y3420D02* X7834D01* Y3444D02* X7781D01* X7834Y3448D02* X7781D01* X7834Y3452D02* X7781D01* Y3456D02* X7834D01* X7781Y3460D02* X7834D01* X7781Y3464D02* X7834D01* X7781Y3468D02* X7834D01* X7781Y3472D02* X7834D01* Y3476D02* X7781D01* X7834Y3480D02* X7781D01* Y3488D02* X7834D01* X7781Y3484D02* X7834D01* Y3492D02* X7781D01* X7834Y3496D02* X7781D01* X7834Y3500D02* X7781D01* Y3504D02* X7834D01* X7781Y3508D02* X7834D01* Y3516D02* X7781D01* X7834Y3512D02* X7781D01* Y3520D02* X7834D01* X7781Y3524D02* X7834D01* X7781Y3528D02* X7834D01* X7781Y3532D02* X7834D01* X7781Y3536D02* X7834D01* Y3540D02* X7781D01* X7834Y3544D02* X7781D01* Y3552D02* X7834D01* X7781Y3548D02* X7834D01* Y3556D02* X7781D01* X7834Y3560D02* X7781D01* X7834Y3564D02* X7781D01* Y3568D02* X7834D01* X7781Y3572D02* X7834D01* Y3580D02* X7781D01* X7834Y3576D02* X7781D01* X7834Y3588D02* X7781D01* X7834Y3584D02* X7781D01* Y3592D02* X7834D01* X7781Y3596D02* X7834D01* X7781Y3600D02* X7834D01* Y3604D02* X7781D01* X7834Y3608D02* X7781D01* Y3616D02* X7834D01* X7781Y3612D02* X7834D01* Y3620D02* X7781D01* X7834Y3624D02* X7781D01* X7834Y3628D02* X7781D01* Y3632D02* X7834D01* X7781Y3636D02* X7834D01* Y3644D02* X7781D01* X7834Y3640D02* X7781D01* Y3648D02* X7834D01* X7781Y3652D02* X7834D01* Y3656D02* X7781D01* X7834Y3660D02* X7781D01* X7834Y3664D02* X7781D01* Y3672D02* X7834D01* X7781Y3668D02* X7834D01* X7781Y3680D02* X7834D01* X7781Y3676D02* X7834D01* Y3684D02* X7781D01* X7834Y3688D02* X7781D01* X7834Y3692D02* X7781D01* Y3712D02* X7834D01* X7781Y3716D02* X7834D01* Y3720D02* X7781D01* X7834Y3724D02* X7781D01* X7834Y3728D02* X7781D01* X7834Y3700D02* X7781D01* X7834Y3696D02* X7781D01* Y3704D02* X7834D01* X7781Y3708D02* X7834D01* Y3732D02* X7781D01* X7834Y3736D02* X7781D01* Y3744D02* X7834D01* X7781Y3740D02* X7834D01* Y3748D02* X7781D01* X7834Y3752D02* X7781D01* X7834Y3756D02* X7781D01* Y3760D02* X7834D01* X7781Y3764D02* X7834D01* Y3772D02* X7781D01* X7834Y3768D02* X7781D01* Y3776D02* X7834D01* X7781Y3780D02* X7834D01* Y3784D02* X7781D01* X7834Y3788D02* X7781D01* X7834Y3792D02* X7781D01* Y3832D02* X7834D01* X7781Y3836D02* X7834D01* X7781Y3840D02* X7834D01* Y3844D02* X7781D01* X7834Y3848D02* X7781D01* Y3856D02* X7834D01* X7781Y3852D02* X7834D01* Y3860D02* X7781D01* X7834Y3864D02* X7781D01* Y3872D02* X7834D01* X7781Y3868D02* X7834D01* Y3892D02* X7781D01* X7834Y3888D02* X7781D01* Y3884D02* X7834D01* X7781Y3880D02* X7834D01* X7781Y3876D02* X7834D01* Y3828D02* X7781D01* X7834Y3824D02* X7781D01* Y3820D02* X7834D01* X7781Y3816D02* X7834D01* X7781Y3812D02* X7834D01* Y3804D02* X7781D01* X7834Y3808D02* X7781D01* Y3800D02* X7834D01* X7781Y3796D02* X7834D01* X7781Y3896D02* X7834D01* X7781Y3900D02* X7834D01* X7781Y3904D02* X7834D01* Y3908D02* X7781D01* X7834Y3912D02* X7781D01* Y3920D02* X7834D01* X7781Y3916D02* X7834D01* Y3924D02* X7781D01* X7834Y3928D02* X7781D01* Y3932D02* X7834D01* X7781Y3936D02* X7834D01* X7781Y3940D02* X7834D01* Y3948D02* X7781D01* X7834Y3944D02* X7781D01* Y3952D02* X7834D01* X7781Y3956D02* X7834D01* Y4004D02* X7781D01* X7834Y4000D02* X7781D01* X7834Y3996D02* X7781D01* Y3992D02* X7834D01* X7781Y3988D02* X7834D01* Y3980D02* X7781D01* X7834Y3984D02* X7781D01* Y3976D02* X7834D01* X7781Y3972D02* X7834D01* Y3968D02* X7781D01* X7834Y3964D02* X7781D01* X7834Y3960D02* X7781D01* X7834Y4012D02* X7781D01* X7834Y4008D02* X7781D01* Y4016D02* X7834D01* X7781Y4020D02* X7834D01* X7781Y4024D02* X7834D01* X7781Y4028D02* X7834D01* X7781Y4032D02* X7834D01* Y4036D02* X7781D01* X7834Y4040D02* X7781D01* Y4048D02* X7834D01* X7781Y4044D02* X7834D01* Y4052D02* X7781D01* X7834Y4056D02* X7781D01* Y4060D02* X7834D01* X7781Y4064D02* X7834D01* X7781Y4068D02* X7834D01* Y4076D02* X7781D01* X7834Y4072D02* X7781D01* Y4080D02* X7834D01* X7781Y4084D02* X7834D01* Y4088D02* X7781D01* X7834Y4092D02* X7781D01* X7834Y4096D02* X7781D01* X7834Y4100D02* X7781D01* X7834Y4104D02* X7781D01* Y4112D02* X7834D01* X7781Y4108D02* X7834D01* Y4116D02* X7781D01* X7834Y4120D02* X7781D01* Y4124D02* X7834D01* X7781Y4128D02* X7834D01* X7781Y4132D02* X7834D01* Y4140D02* X7781D01* X7834Y4136D02* X7781D01* Y4144D02* X7834D01* X7781Y4148D02* X7834D01* Y4152D02* X7781D01* X7834Y4156D02* X7781D01* X7834Y4160D02* X7781D01* X7834Y4416D02* X7781D01* X7834Y4412D02* X7781D01* Y4408D02* X7834D01* X7781Y4404D02* X7834D01* X7781Y4400D02* X7834D01* Y4392D02* X7781D01* X7834Y4396D02* X7781D01* Y4388D02* X7834D01* X7781Y4384D02* X7834D01* Y4260D02* X7781D01* X7834Y4256D02* X7781D01* Y4252D02* X7834D01* X7781Y4248D02* X7834D01* X7781Y4244D02* X7834D01* Y4196D02* X7781D01* X7834Y4192D02* X7781D01* Y4188D02* X7834D01* X7781Y4184D02* X7834D01* X7781Y4180D02* X7834D01* Y4172D02* X7781D01* X7834Y4176D02* X7781D01* Y4168D02* X7834D01* X7781Y4164D02* X7834D01* Y4204D02* X7781D01* X7834Y4200D02* X7781D01* Y4208D02* X7834D01* X7781Y4212D02* X7834D01* Y4216D02* X7781D01* X7834Y4220D02* X7781D01* X7834Y4224D02* X7781D01* Y4232D02* X7834D01* X7781Y4228D02* X7834D01* Y4236D02* X7781D01* X7834Y4240D02* X7781D01* Y4264D02* X7834D01* X7781Y4268D02* X7834D01* X7781Y4272D02* X7834D01* Y4276D02* X7781D01* X7834Y4280D02* X7781D01* Y4304D02* X7834D01* X7781Y4300D02* X7834D01* Y4292D02* X7781D01* X7834Y4296D02* X7781D01* Y4288D02* X7834D01* X7781Y4284D02* X7834D01* Y4332D02* X6513D01* X6539Y4319D02* X7776D01* X7781Y4312D02* X7834D01* X7781Y4308D02* X7834D01* Y4316D02* X7779D01* X7776Y4319D02* X7780Y4315D01* Y1118D01* X7834Y1016D02* X1426D01* Y968D02* X7834D01* X7835Y965D02* X1425D01* Y4972D01* X1426Y4944D02* X7834D01* Y4960D02* X1426D01* X1500Y4937D02* X1850D01* X1802Y4820D02* X1426D01* X1802Y4816D02* X1426D01* Y4824D02* X1802D01* X1426Y4828D02* X1802D01* X1426Y4832D02* X1802D01* Y4844D02* X1426D01* X1802Y4848D02* X1426D01* Y4852D02* X1802D01* X1803Y4913D02* Y3854D01* X1802Y3860D02* X1426D01* X1802Y3864D02* X1426D01* X1676Y3768D02* X1426D01* X1676Y3772D02* X1426D01* Y3764D02* X1676D01* X1426Y3992D02* X1802D01* X1426Y3988D02* X1802D01* X1426Y3996D02* X1802D01* Y3944D02* X1426D01* X1802Y3948D02* X1426D01* Y3956D02* X1802D01* X1426Y3952D02* X1802D01* X1974Y3750D02* X1966Y3744D01* X1849Y3644D02* X1426D01* X1849Y3640D02* X1426D01* X1676Y3712D02* X1426D01* X1676Y3716D02* X1426D01* Y3720D02* X1676D01* X1426Y3384D02* X1849D01* X1426Y3380D02* X1849D01* X1426Y3388D02* X1849D01* Y3248D02* X1426D01* X1849Y3244D02* X1426D01* Y3236D02* X1849D01* X1426Y3240D02* X1849D01* Y3232D02* X1426D01* X1849Y3228D02* X1426D01* X1849Y3224D02* X1426D01* Y3220D02* X1849D01* X1426Y3216D02* X1849D01* Y3208D02* X1426D01* X1849Y3212D02* X1426D01* Y3204D02* X1849D01* X1426Y3200D02* X1849D01* Y3196D02* X1426D01* X1849Y3192D02* X1426D01* X1849Y3188D02* X1426D01* Y3172D02* X1849D01* X1426Y3176D02* X1849D01* Y3180D02* X1426D01* X1849Y3184D02* X1426D01* X1720Y2917D02* X1850D01* X1715Y2876D02* X1426D01* Y2872D02* X1715D01* X1426Y3168D02* X1849D01* X1426Y3164D02* X1849D01* Y3160D02* X1426D01* X1849Y3156D02* X1426D01* Y3148D02* X1849D01* X1426Y3144D02* X1849D01* Y3140D02* X1426D01* X1849Y3136D02* X1426D01* X1715Y2888D02* X1426D01* Y2884D02* X1715D01* X1426Y3072D02* X1849D01* Y3076D02* X1426D01* X1715Y2772D02* X1426D01* X1638Y2583D02* X1539D01* X1637Y2496D02* X1426D01* X1637Y2492D02* X1426D01* Y2460D02* X1637D01* X1426Y2456D02* X1637D01* X1426Y2452D02* X1637D01* Y2444D02* X1426D01* X1637Y2448D02* X1426D01* X1539Y2583D02* X1535Y2587D01* X1534Y2624D02* X1426D01* Y2620D02* X1534D01* X1426Y2568D02* X1637D01* X1426Y2564D02* X1637D01* Y2544D02* X1426D01* X1534Y2600D02* X1426D01* Y2604D02* X1534D01* X1426Y2480D02* X1637D01* Y2488D02* X1426D01* X1534Y2636D02* X1426D01* Y2628D02* X1534D01* X1426Y2632D02* X1534D01* X1426Y2504D02* X1637D01* X1426Y2500D02* X1637D01* Y2508D02* X1426D01* X1637Y2512D02* X1426D01* X1534Y2588D02* X1426D01* Y2584D02* X1537D01* X1426Y2464D02* X1637D01* X1426Y2468D02* X1637D01* Y2440D02* X1426D01* X1637Y2436D02* X1426D01* Y2428D02* X1637D01* X1426Y2432D02* X1637D01* X1539Y2291D02* X1535Y2287D01* X1426Y2400D02* X1637D01* X1426Y2404D02* X1637D01* Y2412D02* X1426D01* X1637Y2408D02* X1426D01* X1534Y2268D02* X1426D01* Y2284D02* X1534D01* X1426Y2320D02* X1637D01* X1426Y2316D02* X1637D01* Y2312D02* X1426D01* X1534Y2260D02* X1426D01* Y2264D02* X1534D01* X1426Y2344D02* X1637D01* X1426Y2348D02* X1637D01* Y2352D02* X1426D01* X1534Y2272D02* X1426D01* X1534Y2276D02* X1426D01* Y2280D02* X1534D01* X1426Y2416D02* X1637D01* Y2424D02* X1426D01* X1637Y2420D02* X1426D01* Y2364D02* X1637D01* X1426Y2368D02* X1637D01* X1535Y2287D02* Y2114D01* X1426Y2064D02* X1637D01* X1426Y2060D02* X1637D01* Y2068D02* X1426D01* X1534Y2148D02* X1426D01* Y2156D02* X1534D01* X1426Y2152D02* X1534D01* X1426Y2084D02* X1637D01* Y2092D02* X1426D01* X1637Y2088D02* X1426D01* X1534Y2120D02* X1426D01* Y2116D02* X1534D01* X1426Y2096D02* X1637D01* Y2100D02* X1426D01* X1534Y2144D02* X1426D01* X1534Y2140D02* X1426D01* Y2132D02* X1534D01* X1426Y2136D02* X1534D01* X1426Y2072D02* X1637D01* Y2076D02* X1426D01* X1534Y2160D02* X1426D01* X1534Y2164D02* X1426D01* X2336Y921D02* X2282Y850D01* Y859D02* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2264Y921D02* X2211Y850D01* X2220D02* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1687Y877D02* X1651D01* X1794Y1196D02* X1426D01* Y1188D02* X1794D01* X1936Y894D02* X1980D01* Y877D02* X1936D01* X1794Y1180D02* X1426D01* Y1176D02* X1794D01* X1793Y894D02* X1784Y886D01* X1793Y894D02* X1820D01* X1794Y1104D02* X1426D01* Y1108D02* X1794D01* X1820Y868D02* X1829Y877D01* X1820Y868D02* X1784D01* X1794Y1152D02* X1426D01* Y1148D02* X1794D01* X1740Y850D02* Y921D01* X1731D02* X1740D01* X1794Y1112D02* X1426D01* Y1116D02* X1794D01* X1731Y850D02* X1749D01* X1829D02* X1793D01* X1794Y1140D02* X1426D01* Y1144D02* X1794D01* X1795Y1102D02* X1799Y1098D01* X1795Y1102D02* Y1413D01* X1794Y1400D02* X1426D01* Y1404D02* X1794D01* X1774Y1646D02* X1782Y1651D01* X1787Y1659D02* X1782Y1651D01* X1794Y1372D02* X1426D01* Y1368D02* X1794D01* X1816Y1495D02* X1824Y1491D01* X1864Y1511D02* X1860Y1503D01* X1794Y1328D02* X1426D01* Y1324D02* X1794D01* X1853Y1646D02* X1861Y1651D01* X1833Y1646D02* X1825Y1651D01* X1794Y1388D02* X1426D01* Y1392D02* X1794D01* X1808Y1539D02* X1804Y1531D01* X1833Y1725D02* X1825Y1730D01* X1819Y1738D01* Y1758D02* X1824Y1766D01* X1833Y1771D01* X1853D02* X1860Y1766D01* X1866Y1758D01* Y1738D02* X1861Y1730D01* X1853Y1725D01* X1426Y1740D02* X1578D01* X1426Y1736D02* X1578D01* X1703Y1687D02* X1695Y1693D01* X1703Y1687D02* X1708Y1679D01* X1578Y1680D02* X1426D01* Y1676D02* X1578D01* X1426Y1672D02* X1578D01* X1675Y1693D02* X1667Y1687D01* X1662Y1679D02* X1667Y1687D01* X1578Y1704D02* X1426D01* X1578Y1700D02* X1426D01* Y1708D02* X1578D01* X1426Y1712D02* X1578D01* X1426Y1716D02* X1578D01* Y1728D02* X1426D01* X1578Y1732D02* X1426D01* Y1724D02* X1578D01* X1426Y1720D02* X1578D01* X1596Y1693D02* X1588Y1687D01* X1583Y1679D02* X1588Y1687D01* X1578Y1760D02* X1426D01* X1578Y1756D02* X1426D01* Y1796D02* X1578D01* X1426Y1792D02* X1578D01* X1579Y1846D02* Y1417D01* X1426Y1304D02* X1794D01* Y1308D02* X1426D01* X1578Y1612D02* X1426D01* Y1608D02* X1578D01* X1695Y1646D02* X1703Y1651D01* X1708Y1659D02* X1703Y1651D01* X1578Y1616D02* X1426D01* Y1604D02* X1578D01* X1426Y1600D02* X1578D01* X1426Y1340D02* X1794D01* Y1336D02* X1426D01* X1500Y1394D02* X1441D01* X1578Y1432D02* X1426D01* Y1580D02* X1578D01* X1426Y1584D02* X1578D01* X1426Y1588D02* X1578D01* X1426Y1396D02* X1794D01* X1795Y1413D02* X1583D01* X1578Y1464D02* X1426D01* Y1460D02* X1578D01* X1426Y1280D02* X1794D01* Y1284D02* X1426D01* X1578Y1512D02* X1426D01* X1578Y1508D02* X1426D01* Y1500D02* X1578D01* X1426Y1504D02* X1578D01* X1426Y1252D02* X1794D01* Y1248D02* X1426D01* X1578Y1480D02* X1426D01* X1578Y1484D02* X1426D01* Y1452D02* X1578D01* X1426Y1456D02* X1578D01* X1426Y1264D02* X1794D01* X1426Y1260D02* X1794D01* Y1256D02* X1426D01* X1578Y1420D02* X1426D01* Y1416D02* X1579D01* X1426Y1240D02* X1794D01* X1426Y1244D02* X1794D01* Y1228D02* X1426D01* X1794Y1224D02* X1426D01* X1578Y1428D02* X1426D01* Y1424D02* X1578D01* X1426Y1288D02* X1794D01* Y1332D02* X1426D01* X1578Y1552D02* X1426D01* X1578Y1556D02* X1426D01* Y1560D02* X1578D01* X1625Y1651D02* X1630Y1659D01* X1625Y1651D02* X1616Y1646D01* X1578Y1624D02* X1426D01* X1578Y1620D02* X1426D01* Y1628D02* X1578D01* X1426Y1632D02* X1578D01* Y1652D02* X1426D01* X1578Y1648D02* X1426D01* X1578Y1644D02* X1426D01* Y1636D02* X1578D01* X1426Y1640D02* X1578D01* X1662Y1659D02* X1667Y1651D01* X1675Y1646D02* X1667Y1651D01* X1578Y1576D02* X1426D01* X1578Y1572D02* X1426D01* Y1564D02* X1578D01* X1426Y1568D02* X1578D01* X1426Y1268D02* X1794D01* Y1276D02* X1426D01* X1578Y1596D02* X1426D01* Y1592D02* X1578D01* X1588Y1651D02* X1596Y1646D01* X1588Y1651D02* X1583Y1659D01* X1578Y1656D02* X1426D01* X1578Y1660D02* X1426D01* Y1668D02* X1578D01* X1426Y1664D02* X1578D01* Y1696D02* X1426D01* X1578Y1692D02* X1426D01* Y1684D02* X1578D01* X1426Y1688D02* X1578D01* X1624Y1687D02* X1616Y1693D01* X1624Y1687D02* X1630Y1679D01* X1578Y1744D02* X1426D01* Y1748D02* X1578D01* X1426Y1752D02* X1578D01* Y1788D02* X1426D01* X1578Y1784D02* X1426D01* X1538Y1876D02* X1426D01* X1538Y1880D02* X1426D01* Y1884D02* X1538D01* X1426Y1888D02* X1538D01* X1426Y1816D02* X1578D01* Y1812D02* X1426D01* X1538Y1900D02* X1426D01* Y1892D02* X1538D01* X1426Y1896D02* X1538D01* X1426Y1844D02* X1578D01* X1579Y1846D02* X1543D01* X1538Y1856D02* X1426D01* Y1860D02* X1538D01* X1426Y1840D02* X1578D01* X1426Y1908D02* X1538D01* X1426Y1904D02* X1538D01* X1426Y1828D02* X1578D01* Y1824D02* X1426D01* X1538Y1852D02* X1426D01* Y1848D02* X1540D01* X1426Y1776D02* X1578D01* X1426Y1780D02* X1578D01* X1426Y1772D02* X1578D01* Y1764D02* X1426D01* X1578Y1768D02* X1426D01* X1543Y1846D02* X1539Y1850D01* X1538Y1920D02* X1426D01* Y1916D02* X1538D01* X1426Y1912D02* X1538D01* X1426Y1820D02* X1578D01* Y1836D02* X1426D01* X1578Y1832D02* X1426D01* X1538Y1864D02* X1426D01* Y1868D02* X1538D01* X1426Y1872D02* X1538D01* X1426Y1800D02* X1578D01* X1426Y1804D02* X1578D01* Y1808D02* X1426D01* X1539Y1850D02* Y2000D01* X1538Y1984D02* X1426D01* Y1988D02* X1538D01* X1426Y1992D02* X1538D01* X1426Y2040D02* X1637D01* Y2044D02* X1426D01* X1538Y1928D02* X1426D01* X1538Y1924D02* X1426D01* Y1948D02* X1538D01* X1426Y2020D02* X1637D01* Y2016D02* X1426D01* X1539Y2000D02* X1426D01* Y1996D02* X1538D01* X1426Y2032D02* X1637D01* Y2028D02* X1426D01* X1637Y2024D02* X1426D01* X1539Y2000D02* X1543Y2004D01* X1538Y1952D02* X1426D01* X1538Y1956D02* X1426D01* Y1980D02* X1538D01* X1426Y1976D02* X1538D01* X1426Y2008D02* X1637D01* Y2012D02* X1426D01* X1538Y1944D02* X1426D01* X1538Y1940D02* X1426D01* Y1932D02* X1538D01* X1426Y1936D02* X1538D01* X1426Y2108D02* X1637D01* Y2104D02* X1426D01* X1534Y2128D02* X1426D01* X1534Y2124D02* X1426D01* Y2112D02* X1536D01* X1539Y2110D02* X1638D01* X1637Y2036D02* X1426D01* X1543Y2004D02* X1638D01* X1637Y2048D02* X1426D01* Y2080D02* X1637D01* X1638Y2110D02* Y2004D01* X1637D02* X1426D01* X1538Y1968D02* X1426D01* X1538Y1972D02* X1426D01* Y1964D02* X1538D01* X1426Y1960D02* X1538D01* X1426Y2052D02* X1637D01* Y2056D02* X1426D01* X1539Y2110D02* X1535Y2114D01* X1534Y2176D02* X1426D01* Y2172D02* X1534D01* X1426Y2168D02* X1534D01* X1426Y2332D02* X1637D01* Y2524D02* X1426D01* X1637Y2516D02* X1426D01* X1637Y2520D02* X1426D01* X1534Y2648D02* X1426D01* Y2652D02* X1534D01* X1426Y2484D02* X1637D01* Y2476D02* X1426D01* X1637Y2472D02* X1426D01* X1534Y2616D02* X1426D01* Y2612D02* X1534D01* X1426Y2608D02* X1534D01* X1426Y2536D02* X1637D01* X1426Y2540D02* X1637D01* X1426Y2596D02* X1534D01* X1426Y2592D02* X1534D01* X1426Y2576D02* X1637D01* X1426Y2580D02* X1637D01* X1426Y2940D02* X1849D01* Y2944D02* X1426D01* X1534Y2672D02* X1426D01* X1534Y2676D02* X1426D01* X1534Y2680D02* X1426D01* Y2692D02* X1534D01* X1426Y2696D02* X1534D01* X1426Y2896D02* X1715D01* X1426Y2960D02* X1849D01* Y2964D02* X1426D01* X1715Y2780D02* X1426D01* Y2788D02* X1715D01* X1426Y2932D02* X1849D01* Y2936D02* X1426D01* X1715Y2840D02* X1426D01* X1534Y2704D02* X1426D01* X1534Y2708D02* X1426D01* Y2700D02* X1534D01* X1426Y2928D02* X1849D01* Y2924D02* X1426D01* X1637Y2572D02* X1426D01* Y2556D02* X1637D01* X1426Y2560D02* X1637D01* X1638Y2583D02* Y2291D01* X1637Y2292D02* X1426D01* X1534Y2204D02* X1426D01* Y2196D02* X1534D01* X1426Y2200D02* X1534D01* X1426Y2324D02* X1637D01* Y2328D02* X1426D01* X1534Y2216D02* X1426D01* X1534Y2220D02* X1426D01* Y2212D02* X1534D01* X1426Y2208D02* X1534D01* X1426Y2356D02* X1637D01* Y2360D02* X1426D01* X1534Y2240D02* X1426D01* X1534Y2244D02* X1426D01* X1534Y2248D02* X1426D01* Y2252D02* X1534D01* X1426Y2256D02* X1534D01* X1426Y2376D02* X1637D01* X1426Y2372D02* X1637D01* Y2380D02* X1426D01* X1637Y2384D02* X1426D01* X1539Y2291D02* X1638D01* X1637Y2304D02* X1426D01* X1637Y2300D02* X1426D01* Y2288D02* X1535D01* X1426Y2336D02* X1637D01* Y2340D02* X1426D01* X1534Y2184D02* X1426D01* X1534Y2180D02* X1426D01* Y2188D02* X1534D01* X1426Y2192D02* X1534D01* X1426Y2308D02* X1637D01* Y2296D02* X1426D01* X1534Y2232D02* X1426D01* X1534Y2236D02* X1426D01* Y2228D02* X1534D01* X1426Y2224D02* X1534D01* X1426Y2392D02* X1637D01* X1426Y2388D02* X1637D01* X1426Y2396D02* X1637D01* Y2532D02* X1426D01* X1637Y2528D02* X1426D01* X1535Y2587D02* Y2756D01* X1534Y2688D02* X1426D01* Y2684D02* X1534D01* X1426Y2880D02* X1715D01* X1426Y3040D02* X1849D01* Y3036D02* X1426D01* X1849Y3032D02* X1426D01* X1715Y2836D02* X1426D01* Y2828D02* X1715D01* X1426Y2968D02* X1849D01* X1426Y2972D02* X1849D01* Y2976D02* X1426D01* X1715Y2864D02* X1426D01* Y2860D02* X1715D01* X1720Y2917D02* X1716Y2913D01* X1426Y3056D02* X1849D01* X1426Y3052D02* X1849D01* Y3028D02* X1426D01* X1715Y2784D02* X1426D01* X1535Y2756D02* X1426D01* Y2764D02* X1715D01* X1426Y3044D02* X1849D01* Y3048D02* X1426D01* X1715Y2808D02* X1426D01* X1534Y2716D02* X1426D01* Y2712D02* X1534D01* X1426Y2776D02* X1715D01* X1426Y3012D02* X1849D01* Y2988D02* X1426D01* X1849Y2992D02* X1426D01* X1715Y2912D02* X1426D01* Y2916D02* X1718D01* X1426Y3120D02* X1849D01* X1426Y3116D02* X1849D01* Y3112D02* X1426D01* X1849Y3108D02* X1426D01* Y3252D02* X1849D01* X1426Y3256D02* X1849D01* X1426Y3260D02* X1849D01* Y3264D02* X1426D01* X1849Y3268D02* X1426D01* Y3276D02* X1849D01* X1426Y3272D02* X1849D01* Y3280D02* X1426D01* X1849Y3284D02* X1426D01* Y3288D02* X1849D01* X1426Y3292D02* X1849D01* X1426Y3296D02* X1849D01* Y3304D02* X1426D01* X1849Y3300D02* X1426D01* Y3308D02* X1849D01* X1426Y3312D02* X1849D01* X1677Y3657D02* X1681Y3653D01* X1426Y3344D02* X1849D01* Y3336D02* X1426D01* X1849Y3340D02* X1426D01* Y3332D02* X1849D01* X1426Y3328D02* X1849D01* Y3316D02* X1426D01* X1849Y3320D02* X1426D01* X1849Y3324D02* X1426D01* Y2820D02* X1715D01* X1426Y3080D02* X1849D01* X1426Y3084D02* X1849D01* Y3092D02* X1426D01* X1849Y3088D02* X1426D01* X1715Y2900D02* X1426D01* Y2892D02* X1715D01* X1426Y3008D02* X1849D01* Y3004D02* X1426D01* X1716Y2760D02* Y2913D01* X1715Y2848D02* X1426D01* Y2844D02* X1715D01* X1426Y3064D02* X1849D01* X1426Y3068D02* X1849D01* Y3060D02* X1426D01* X1715Y2792D02* X1426D01* X1534Y2740D02* X1426D01* Y2744D02* X1534D01* X1426Y2868D02* X1715D01* X1426Y3104D02* X1849D01* Y3100D02* X1426D01* X1849Y3096D02* X1426D01* X1715Y2832D02* X1426D01* X1539Y2760D02* X1716D01* X1715Y2816D02* X1426D01* Y2812D02* X1715D01* X1426Y2952D02* X1849D01* X1426Y2956D02* X1849D01* Y2948D02* X1426D01* X1715Y2768D02* X1426D01* X1535Y2756D02* X1539Y2760D01* X1534Y2752D02* X1426D01* Y2748D02* X1534D01* X1426Y2800D02* X1715D01* X1426Y2984D02* X1849D01* Y2980D02* X1426D01* X1715Y2760D02* X1426D01* X1534Y2720D02* X1426D01* X1534Y2724D02* X1426D01* Y2728D02* X1534D01* X1426Y2732D02* X1534D01* X1426Y2736D02* X1534D01* X1426Y2824D02* X1715D01* X1426Y3016D02* X1849D01* X1426Y3020D02* X1849D01* Y3024D02* X1426D01* X1715Y2908D02* X1426D01* Y2904D02* X1715D01* X1426Y3152D02* X1849D01* Y3132D02* X1426D01* X1849Y3124D02* X1426D01* X1849Y3128D02* X1426D01* X1715Y2852D02* X1426D01* Y2856D02* X1715D01* X1426Y3000D02* X1849D01* Y2996D02* X1426D01* X1715Y2796D02* X1426D01* Y2644D02* X1534D01* X1426Y2640D02* X1534D01* X1426Y2552D02* X1637D01* Y2548D02* X1426D01* X1534Y2656D02* X1426D01* X1534Y2660D02* X1426D01* Y2668D02* X1534D01* X1426Y2664D02* X1534D01* X1426Y2804D02* X1715D01* X1426Y2920D02* X1849D01* X1850Y2917D02* Y3653D01* X1849Y3504D02* X1426D01* X1849Y3508D02* X1426D01* Y3492D02* X1849D01* X1426Y3496D02* X1849D01* X1426Y3500D02* X1849D01* Y3472D02* X1426D01* X1677Y3657D02* Y3850D01* X1676Y3760D02* X1426D01* Y3756D02* X1676D01* X1426Y3528D02* X1849D01* X1426Y3532D02* X1849D01* Y3524D02* X1426D01* X1849Y3520D02* X1426D01* X1676Y3664D02* X1426D01* X1676Y3660D02* X1426D01* Y3656D02* X1677D01* X1426Y3408D02* X1849D01* Y3412D02* X1426D01* X1849Y3416D02* X1426D01* X1676Y3744D02* X1426D01* X1676Y3740D02* X1426D01* Y3724D02* X1676D01* X1426Y3728D02* X1676D01* X1426Y3576D02* X1849D01* X1426Y3580D02* X1849D01* Y3564D02* X1426D01* X1849Y3560D02* X1426D01* X1849Y3556D02* X1426D01* Y3572D02* X1849D01* X1426Y3568D02* X1849D01* X1966Y3708D02* X1974Y3703D01* X1966Y3708D02* X1961Y3716D01* X1849Y3632D02* X1426D01* X1849Y3636D02* X1426D01* Y3620D02* X1849D01* X1426Y3624D02* X1849D01* X1426Y3628D02* X1849D01* Y3612D02* X1426D01* X1849Y3616D02* X1426D01* X1676Y3692D02* X1426D01* Y3700D02* X1676D01* X1426Y3696D02* X1676D01* X1426Y3360D02* X1849D01* X1426Y3356D02* X1849D01* Y3352D02* X1426D01* X1849Y3348D02* X1426D01* Y3404D02* X1849D01* X1426Y3400D02* X1849D01* Y3396D02* X1426D01* X1849Y3392D02* X1426D01* X1676Y3672D02* X1426D01* Y3668D02* X1676D01* X1426Y3648D02* X1849D01* X1426Y3652D02* X1849D01* X1850Y3653D02* X1681D01* X1849Y3376D02* X1426D01* X1849Y3372D02* X1426D01* Y3364D02* X1849D01* X1426Y3368D02* X1849D01* Y3452D02* X1426D01* X1849Y3444D02* X1426D01* X1849Y3448D02* X1426D01* X1676Y3732D02* X1426D01* Y3736D02* X1676D01* X1426Y3544D02* X1849D01* X1426Y3540D02* X1849D01* Y3516D02* X1426D01* X1849Y3512D02* X1426D01* X1676Y3708D02* X1426D01* Y3704D02* X1676D01* X1426Y3488D02* X1849D01* X1426Y3484D02* X1849D01* Y3476D02* X1426D01* X1849Y3480D02* X1426D01* X1676Y3752D02* X1426D01* Y3748D02* X1676D01* X1426Y3608D02* X1849D01* X1426Y3604D02* X1849D01* Y3548D02* X1426D01* X1849Y3552D02* X1426D01* X1676Y3684D02* X1426D01* Y3688D02* X1676D01* X1426Y3424D02* X1849D01* X1426Y3420D02* X1849D01* Y3432D02* X1426D01* X1849Y3428D02* X1426D01* Y3436D02* X1849D01* X1426Y3440D02* X1849D01* X1994Y3703D02* X2002Y3709D01* X2008Y3716D02* X2002Y3709D01* X1849Y3536D02* X1426D01* Y3468D02* X1849D01* X1426Y3464D02* X1849D01* Y3460D02* X1426D01* X1849Y3456D02* X1426D01* X1676Y3680D02* X1426D01* Y3676D02* X1676D01* X1426Y3584D02* X1849D01* X1426Y3588D02* X1849D01* Y3592D02* X1426D01* X1849Y3596D02* X1426D01* Y3600D02* X1849D01* X2008Y3736D02* X2002Y3745D01* X1994Y3750D02* X2002Y3745D01* X1802Y3856D02* X1426D01* Y3852D02* X1678D01* X1426Y4080D02* X1802D01* Y4060D02* X1426D01* X1802Y4052D02* X1426D01* X1802Y4056D02* X1426D01* X1676Y3784D02* X1426D01* Y3788D02* X1676D01* X1426Y3792D02* X1676D01* X1426Y3960D02* X1802D01* X1426Y3964D02* X1802D01* Y3968D02* X1426D01* X1676Y3824D02* X1426D01* X1676Y3828D02* X1426D01* Y3820D02* X1676D01* X1426Y4064D02* X1802D01* X1426Y4068D02* X1802D01* Y4072D02* X1426D01* X1802Y4076D02* X1426D01* Y4084D02* X1802D01* X1426Y4088D02* X1802D01* Y4092D02* X1426D01* X1802Y4096D02* X1426D01* X1676Y3832D02* X1426D01* Y3836D02* X1676D01* X1426Y3904D02* X1802D01* Y3900D02* X1426D01* X1802Y3896D02* X1426D01* X1676Y3796D02* X1426D01* Y3800D02* X1676D01* X1426Y4024D02* X1802D01* X1426Y4028D02* X1802D01* Y4032D02* X1426D01* X1676Y3840D02* X1426D01* Y3908D02* X1802D01* X1426Y3912D02* X1802D01* Y3916D02* X1426D01* X1802Y3920D02* X1426D01* X1676Y3848D02* X1426D01* Y3844D02* X1676D01* X1426Y3984D02* X1802D01* X1426Y3980D02* X1802D01* Y3976D02* X1426D01* X1802Y3972D02* X1426D01* Y4012D02* X1802D01* X1426Y4008D02* X1802D01* Y4004D02* X1426D01* X1802Y4000D02* X1426D01* X1676Y3808D02* X1426D01* X1676Y3804D02* X1426D01* Y3780D02* X1676D01* X1426Y3776D02* X1676D01* X1426Y3928D02* X1802D01* X1426Y3924D02* X1802D01* Y3932D02* X1426D01* X1802Y3940D02* X1426D01* X1802Y3936D02* X1426D01* X1676Y3816D02* X1426D01* Y3812D02* X1676D01* X1426Y3872D02* X1802D01* X1426Y3868D02* X1802D01* Y3876D02* X1426D01* X1802Y3880D02* X1426D01* X1802Y3884D02* X1426D01* Y3892D02* X1802D01* X1426Y3888D02* X1802D01* X1966Y3744D02* X1961Y3736D01* X1426Y4888D02* X1802D01* X1426Y4892D02* X1802D01* X1426Y4896D02* X1802D01* Y4876D02* X1426D01* X1802Y4872D02* X1426D01* Y4880D02* X1802D01* X1426Y4884D02* X1802D01* X1972Y4805D02* X1964Y4809D01* X1936Y4805D02* X1944Y4809D01* X1802Y4756D02* X1426D01* X1802Y4752D02* X1426D01* Y4760D02* X1802D01* X1426Y4764D02* X1802D01* X1426Y4768D02* X1802D01* Y4780D02* X1426D01* X1802Y4784D02* X1426D01* Y4776D02* X1802D01* X1426Y4772D02* X1802D01* X2108Y4663D02* X2102Y4670D01* X2108Y4663D02* X2113Y4654D01* X1802Y4644D02* X1426D01* X1802Y4640D02* X1426D01* Y4632D02* X1802D01* X1426Y4636D02* X1802D01* Y4648D02* X1426D01* X1802Y4652D02* X1426D01* X1802Y4656D02* X1426D01* Y4676D02* X1802D01* X1984Y4790D02* X1980Y4798D01* X1972Y4805D02* X1980Y4798D01* X1802Y4804D02* X1426D01* Y4808D02* X1802D01* X1426Y4812D02* X1802D01* Y4796D02* X1426D01* X1802Y4800D02* X1426D01* Y4792D02* X1802D01* X1426Y4788D02* X1802D01* X1924Y4770D02* X1929Y4761D01* X1936Y4754D02* X1929Y4761D01* X1802Y4660D02* X1426D01* X1802Y4664D02* X1426D01* Y4672D02* X1802D01* X1426Y4668D02* X1802D01* Y4684D02* X1426D01* X1802Y4680D02* X1426D01* Y4688D02* X1802D01* X1426Y4692D02* X1802D01* X1936Y4805D02* X1929Y4798D01* X1924Y4790D02* X1929Y4798D01* X1802Y4724D02* X1426D01* X1802Y4728D02* X1426D01* Y4720D02* X1802D01* X1426Y4716D02* X1802D01* X1426Y4712D02* X1802D01* Y4700D02* X1426D01* X1802Y4696D02* X1426D01* Y4704D02* X1802D01* X1426Y4708D02* X1802D01* X2093Y4675D02* X2091Y4676D01* X2093Y4675D02* X2102Y4670D01* X1802Y4836D02* X1426D01* X1802Y4840D02* X1426D01* Y4744D02* X1802D01* X1426Y4748D02* X1802D01* Y4732D02* X1426D01* X1802Y4736D02* X1426D01* Y4740D02* X1802D01* X2062Y4672D02* X2055Y4665D01* X2062Y4672D02* X2071Y4676D01* X1802Y4612D02* X1426D01* Y4608D02* X1802D01* X1426Y4604D02* X1802D01* Y4572D02* X1426D01* X1802Y4568D02* X1426D01* Y4560D02* X1802D01* X1426Y4564D02* X1802D01* X1973Y4754D02* X1980Y4761D01* X1973Y4754D02* X1964Y4750D01* X1802Y4596D02* X1426D01* X1802Y4600D02* X1426D01* Y4592D02* X1802D01* X1426Y4588D02* X1802D01* X1426Y4584D02* X1802D01* Y4620D02* X1426D01* X1802Y4616D02* X1426D01* Y4624D02* X1802D01* X1426Y4628D02* X1802D01* X1980Y4761D02* X1984Y4770D01* X1944Y4750D02* X1936Y4754D01* X1802Y4532D02* X1426D01* X1802Y4536D02* X1426D01* Y4528D02* X1802D01* X1426Y4524D02* X1802D01* X1426Y4520D02* X1802D01* Y4508D02* X1426D01* X1802Y4504D02* X1426D01* Y4512D02* X1802D01* X1426Y4516D02* X1802D01* X2112Y4632D02* X2113Y4634D01* X2112Y4632D02* X2107Y4623D01* X1802Y4580D02* X1426D01* X1802Y4576D02* X1426D01* Y4544D02* X1802D01* X1426Y4540D02* X1802D01* X1441Y4543D02* Y4465D01* X1426Y4408D02* X1802D01* X1426Y4404D02* X1802D01* Y4392D02* X1426D01* X1802Y4396D02* X1426D01* Y4388D02* X1802D01* X1426Y4384D02* X1802D01* Y4360D02* X1426D01* X1802Y4356D02* X1426D01* Y4364D02* X1802D01* X1426Y4368D02* X1802D01* X1426Y4372D02* X1802D01* Y4376D02* X1426D01* X1802Y4380D02* X1426D01* Y4252D02* X1802D01* X1426Y4248D02* X1802D01* X1426Y4244D02* X1802D01* Y4240D02* X1426D01* X1802Y4236D02* X1426D01* Y4228D02* X1802D01* X1426Y4232D02* X1802D01* Y4224D02* X1426D01* X1802Y4220D02* X1426D01* X1802Y4216D02* X1426D01* Y4212D02* X1802D01* X1426Y4208D02* X1802D01* Y4200D02* X1426D01* X1802Y4204D02* X1426D01* Y4196D02* X1802D01* X1426Y4192D02* X1802D01* Y4168D02* X1426D01* X1802Y4164D02* X1426D01* Y4172D02* X1802D01* X1426Y4176D02* X1802D01* Y4180D02* X1426D01* X1802Y4184D02* X1426D01* X1802Y4188D02* X1426D01* Y4156D02* X1802D01* X1426Y4160D02* X1802D01* Y4152D02* X1426D01* X1802Y4148D02* X1426D01* Y4144D02* X1802D01* X1681Y3854D02* X1677Y3850D01* X1426Y4048D02* X1802D01* X1426Y4044D02* X1802D01* Y4040D02* X1426D01* X1802Y4036D02* X1426D01* Y4020D02* X1802D01* X1426Y4016D02* X1802D01* X1803Y3854D02* X1681D01* X1426Y4112D02* X1802D01* X1426Y4108D02* X1802D01* Y4104D02* X1426D01* X1802Y4100D02* X1426D01* Y4116D02* X1802D01* X1426Y4120D02* X1802D01* X1426Y4124D02* X1802D01* Y4128D02* X1426D01* X1802Y4132D02* X1426D01* Y4140D02* X1802D01* X1426Y4136D02* X1802D01* Y4256D02* X1426D01* X1802Y4260D02* X1426D01* Y4268D02* X1802D01* X1426Y4264D02* X1802D01* Y4272D02* X1426D01* X1802Y4276D02* X1426D01* X1802Y4280D02* X1426D01* Y4284D02* X1802D01* X1426Y4288D02* X1802D01* Y4296D02* X1426D01* X1802Y4292D02* X1426D01* Y4300D02* X1802D01* X1426Y4304D02* X1802D01* Y4308D02* X1426D01* X1802Y4312D02* X1426D01* X1802Y4316D02* X1426D01* Y4332D02* X1802D01* X1426Y4328D02* X1802D01* Y4324D02* X1426D01* X1802Y4320D02* X1426D01* X1441Y4543D02* X1500D01* X1802Y4400D02* X1426D01* Y4412D02* X1802D01* X1426Y4416D02* X1802D01* X2053Y4625D02* X2060Y4618D01* X2053Y4625D02* X2049Y4634D01* X1802Y4468D02* X1426D01* X1802Y4472D02* X1426D01* Y4480D02* X1802D01* X1426Y4476D02* X1802D01* Y4464D02* X1426D01* X1802Y4460D02* X1426D01* X1802Y4456D02* X1426D01* Y4432D02* X1802D01* X1426Y4436D02* X1802D01* X2060Y4618D02* X2069Y4613D01* X2071Y4612D02* X2069Y4613D01* X1802Y4500D02* X1426D01* X1802Y4496D02* X1426D01* X1802Y4556D02* X1426D01* X1802Y4552D02* X1426D01* Y4548D02* X1802D01* X2055Y4665D02* X2050Y4656D01* X2049Y4654D02* X2050Y4656D01* X1802Y4420D02* X1426D01* Y4424D02* X1802D01* X1426Y4428D02* X1802D01* Y4444D02* X1426D01* X1802Y4440D02* X1426D01* Y4448D02* X1802D01* X1426Y4452D02* X1802D01* X2100Y4616D02* X2107Y4623D01* X2100Y4616D02* X2091Y4612D01* X1802Y4484D02* X1426D01* Y4488D02* X1802D01* X1426Y4492D02* X1802D01* Y4352D02* X1426D01* X1802Y4348D02* X1426D01* Y4340D02* X1802D01* X1426Y4344D02* X1802D01* Y4336D02* X1426D01* X1500Y4543D02* Y4937D01* X1802Y4868D02* X1426D01* X1802Y4864D02* X1426D01* Y4856D02* X1802D01* X1426Y4860D02* X1802D01* X1807Y4917D02* X7732D01* X7735Y4916D01* X7778Y4873D01* X7834Y4924D02* X1426D01* Y4956D02* X7834D01* X7760Y4892D02* X7834D01* Y4888D02* X7764D01* X7834Y4964D02* X1426D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3358Y5370D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* Y5370D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5406D01* X3429Y5370D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4256D02* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4221D01* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5415D02* Y5432D01* X4398Y5441D01* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D01* X4407Y5415D01* X4425Y5441D02* Y5370D01* X4478D01* X4505D02* X4496Y5379D01* Y5441D01* X4505Y5370D02* X4541D01* X4549Y5379D01* Y5441D01* X4567Y5406D02* X4603D01* X4638Y5415D02* Y5432D01* Y5415D02* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* X4621D01* X4638Y5432D02* X4647Y5441D01* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5441D02* X5836D01* X5845Y5432D01* Y5415D01* X5871D02* X5862Y5406D01* Y5379D01* X5871Y5370D02* X5907D01* X5934Y5379D02* X5942Y5370D01* X5969D01* X5978Y5379D01* Y5388D01* X5969Y5397D01* X5942D01* X5934Y5406D01* X5942Y5415D01* X5969D01* X5978Y5406D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6120Y5406D02* X6111Y5415D01* X6085D01* X6076Y5406D01* Y5415D02* Y5370D01* X6049D02* X6014D01* X6005Y5379D01* Y5406D01* X6014Y5415D01* X6040D01* X5818Y5406D02* X5845Y5370D01* X5862Y5379D02* X5871Y5370D01* X5862Y5388D02* X5898D01* X5907Y5397D01* Y5406D01* X5898Y5415D01* X5871D01* X5845D02* X5836Y5406D01* X5791D01* Y5370D02* Y5441D01* X6147Y5415D02* X6174Y5370D01* X6200Y5415D01* X6218Y5406D02* Y5379D01* X6227Y5370D01* X6262D01* Y5397D02* Y5406D01* X6254Y5415D01* X6227D01* X6218Y5406D01* Y5388D02* X6254D01* X6262Y5397D01* X6289Y5406D02* X6342D01* X6360D02* X6405D01* X6414Y5415D01* Y5432D01* X6405Y5441D01* X6360D01* Y5370D01* X6502Y5388D02* Y5379D01* X6511Y5370D01* X6547D01* Y5406D01* X6538Y5415D01* X6511D01* X6449Y5441D02* X6458D01* Y5370D01* X6467D02* X6449D01* X6502Y5388D02* X6511Y5397D01* X6547D01* X6574Y5370D02* Y5415D01* Y5406D02* X6582Y5415D01* X6609D01* X6618Y5406D01* Y5370D01* X6645Y5388D02* X6680D01* X6689Y5397D01* Y5406D01* X6680Y5415D01* X6654D01* X6645Y5406D01* Y5379D01* X6654Y5370D01* X6689D01* X8324Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1425D02* Y575D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* X2753D02* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* Y5384D02* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* X2913Y5384D02* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907D02* X2947Y5437D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* X2653Y5204D01* X2660Y5224D02* Y5211D01* X2653Y5204D02* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2273Y5384D02* X2267Y5391D01* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5611D02* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2120Y5211D02* X2127Y5204D01* X2133D01* X2140Y5211D01* X2120D02* Y5257D01* X2107Y5237D02* X2133D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2027Y5564D02* X2000D01* Y5617D01* X2027D01* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2053Y5591D02* X2093D01* X2107Y5597D02* Y5617D01* X2147D01* X2160Y5611D02* Y5597D01* X2167Y5591D01* X2193D01* X2200Y5597D01* Y5611D02* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2120Y5701D02* Y5694D01* X2127D01* Y5701D01* X2120D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2087D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2033Y5681D01* X2000D01* Y5654D02* Y5707D01* X2033D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2213Y5797D02* X2253D01* X2287D02* X2280D01* X2287D02* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5797D01* Y5771D02* X2240D01* X2233Y5701D02* X2227D01* Y5694D01* X2233D01* Y5701D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* X2513Y5674D02* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2467Y5687D02* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2513Y5674D02* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2727Y5681D02* X2700D01* X2693Y5687D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2653Y5791D02* Y5784D01* X2660D01* Y5791D01* X2653D01* Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2533Y5771D02* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2533Y5771D01* X2513D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2460D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640Y5507D02* Y5521D01* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2693D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2647Y5437D02* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5391D02* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D02* X2680Y5404D01* Y5391D01* X2693D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5437D02* X2467Y5431D01* Y5417D01* X2460Y5411D01* Y5384D02* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2433Y5411D02* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* X2853Y5114D02* Y5167D01* X2833Y5134D02* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3067Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X7012Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7265Y5058D02* X7225Y5004D01* X7232D02* X7258D01* X7265Y5011D01* Y5051D01* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7298D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332D02* X7372Y5058D01* X7365D02* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5051D01* X7338Y5058D01* X7365D01* X7392Y5094D02* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385D02* X7425Y5148D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7957Y4429D02* X7950Y4422D01* X7957D02* X7903Y4462D01* X7910D02* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4409D02* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* Y4529D02* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7957D02* X7903Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* X7930Y4635D02* X7923Y4642D01* Y4649D02* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* Y4635D02* X7923D01* Y4642D02* Y4649D01* Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4689D02* X8013Y4695D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* Y4695D01* Y4689D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8047Y4655D02* X8020D01* X8013Y4662D02* X8020Y4655D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8033Y4495D01* X8040Y4489D01* X8047Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X7993D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8047Y1561D02* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8013Y1621D02* X8020Y1628D01* X8013Y1634D01* Y1641D01* X8020Y1648D01* X8047D01* Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X7930D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7923Y1621D01* X7903Y1588D02* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* Y1554D02* X7903Y1594D01* Y1588D02* X7910Y1594D01* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7950D02* X7910D01* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1374D02* Y1348D01* X7950Y1341D01* X7957Y1328D02* Y1288D01* Y1308D02* X7903D01* X7917Y1294D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1241D02* Y1274D01* X7937D02* Y1241D01* X7957Y1214D02* X7923Y1181D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* X7392D02* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* X7258D02* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D382* X7274Y1234D02* D03* X6725Y1440D02* D03* Y1486D02* D03* X6771D02* D03* Y1440D02* D03* X6825D02* D03* X6871D02* D03* Y1486D02* D03* X6825D02* D03* X6871Y1540D02* D03* Y1586D02* D03* X6829Y1573D02* D03* Y1616D02* D03* X6871Y1640D02* D03* Y1686D02* D03* X6823Y1693D02* D03* X6753Y1775D02* D03* X6871Y1740D02* D03* Y1786D02* D03* X6925D02* D03* Y1740D02* D03* X6971D02* D03* Y1786D02* D03* X7025Y1740D02* D03* Y1786D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X6925Y1686D02* D03* Y1640D02* D03* X6971D02* D03* Y1686D02* D03* X7025D02* D03* Y1640D02* D03* Y1586D02* D03* Y1540D02* D03* X6971D02* D03* Y1586D02* D03* X6925D02* D03* Y1540D02* D03* Y1486D02* D03* Y1440D02* D03* X6971D02* D03* Y1486D02* D03* X7025D02* D03* Y1440D02* D03* Y1386D02* D03* Y1340D02* D03* X6971D02* D03* Y1386D02* D03* X6925D02* D03* Y1340D02* D03* X6825D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671D02* D03* Y1386D02* D03* X6625D02* D03* Y1340D02* D03* X6571D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6625Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X7119Y1842D02* D03* X7104Y1868D02* D03* X7119Y1894D02* D03* X7104Y1920D02* D03* X7119Y1988D02* D03* X7104Y2014D02* D03* X7119Y2040D02* D03* X7104Y2066D02* D03* X7119Y2134D02* D03* X7104Y2160D02* D03* X7119Y2186D02* D03* X7104Y2212D02* D03* X7025Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* X7025D02* D03* Y2040D02* D03* Y1986D02* D03* Y1940D02* D03* Y1886D02* D03* Y1840D02* D03* X6971D02* D03* X6925D02* D03* Y1886D02* D03* Y1940D02* D03* X6871Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X6175Y2336D02* D03* Y2290D02* D03* X6221D02* D03* X6275D02* D03* X6321D02* D03* X6375D02* D03* Y2390D02* D03* X6370Y2480D02* D03* X6410D02* D03* X6475Y2436D02* D03* X6450Y2500D02* D03* Y2540D02* D03* Y2580D02* D03* Y2620D02* D03* X6500Y2540D02* D03* X6571Y2440D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6725Y2440D02* D03* X6726Y2473D02* D03* X6771Y2475D02* D03* Y2440D02* D03* Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* X6871D02* D03* Y2386D02* D03* X6825D02* D03* Y2440D02* D03* X6871D02* D03* X6971Y2386D02* D03* X6925D02* D03* Y2440D02* D03* X6971D02* D03* X7025D02* D03* Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X7119Y2279D02* D03* X7104Y2305D02* D03* X7119Y2331D02* D03* X7104Y2357D02* D03* X6939Y2698D02* D03* X6885Y2696D02* D03* X6837Y2695D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* X6781Y2565D02* D03* X6837D02* D03* X6885Y2564D02* D03* X6934D02* D03* X7119Y2425D02* D03* X7109Y2454D02* D03* X7120Y2482D02* D03* X7109Y2510D02* D03* X7119Y2571D02* D03* X7104Y2597D02* D03* X7119Y2623D02* D03* X7104Y2649D02* D03* X7051Y2722D02* D03* X7074Y2744D02* D03* X7119Y2716D02* D03* X7104Y2742D02* D03* X7119Y2768D02* D03* X7104Y2794D02* D03* X6970Y2865D02* D03* X6865D02* D03* X6761Y2917D02* D03* Y2955D02* D03* Y2991D02* D03* X6762Y3030D02* D03* X6719D02* D03* X6720Y2991D02* D03* X6725Y3105D02* D03* X6670D02* D03* X6620D02* D03* X6570D02* D03* X6671Y2991D02* D03* Y3030D02* D03* X6621D02* D03* Y2990D02* D03* Y2875D02* D03* X6671Y2876D02* D03* X6722Y2877D02* D03* X6760D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7104Y3062D02* D03* X7119Y3036D02* D03* X7104Y3010D02* D03* X7119Y2984D02* D03* Y3130D02* D03* X7104Y3156D02* D03* X6920Y3105D02* D03* X6970Y3030D02* D03* Y2990D02* D03* X6865D02* D03* Y3030D02* D03* X6815Y3105D02* D03* X6775D02* D03* X6776Y3145D02* D03* Y3185D02* D03* X6815Y3230D02* D03* X6775D02* D03* X6776Y3270D02* D03* X6816D02* D03* X6921D02* D03* X6920Y3230D02* D03* X6725D02* D03* X6726Y3270D02* D03* X6671D02* D03* X6670Y3230D02* D03* X6621Y3270D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X6022Y3470D02* D03* X5979Y3472D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5850Y3444D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6037Y3150D02* D03* X6099Y3154D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X5827Y3128D02* D03* X5768Y3258D02* D03* Y3300D02* D03* X5770Y3389D02* D03* X5815Y3444D02* D03* X5763Y3498D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5941Y4235D02* D03* X5880Y4224D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* X5470Y4152D02* D03* X5390Y4226D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* Y3557D02* D03* X4992Y3478D02* D03* X5049Y3322D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5291Y3404D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5218Y3699D02* D03* X5305Y3819D02* D03* X4319Y4780D02* D03* X3816Y4490D02* D03* X3855Y4457D02* D03* X3843Y4422D02* D03* X3841Y4186D02* D03* X3831Y4134D02* D03* X3872Y4138D02* D03* X3831Y4006D02* D03* X3879Y3930D02* D03* X3794Y3846D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3698Y4048D02* D03* X3641Y4091D02* D03* X3597Y4043D02* D03* X3548Y4085D02* D03* X3547Y4040D02* D03* X3546Y3997D02* D03* X3506Y3991D02* D03* X3493Y4043D02* D03* X3505Y3896D02* D03* X3596D02* D03* X3591Y3796D02* D03* X3645Y3797D02* D03* X3542Y3554D02* D03* X3548Y3587D02* D03* X3591Y3589D02* D03* Y3548D02* D03* Y3497D02* D03* X3545Y3485D02* D03* Y3440D02* D03* X3590D02* D03* X3595Y3384D02* D03* X3590Y3341D02* D03* X3541Y3340D02* D03* X3545Y3386D02* D03* X3491Y3440D02* D03* X3442Y3442D02* D03* X3440Y3484D02* D03* X3387Y3489D02* D03* X3396Y3442D02* D03* X3354D02* D03* X3350Y3387D02* D03* X3393Y3386D02* D03* Y3343D02* D03* X3351D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3500Y3383D02* D03* X3491Y3340D02* D03* X3498Y3286D02* D03* X3443D02* D03* X3397Y3280D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3413Y3035D02* D03* X3326D02* D03* X3367Y2919D02* D03* X3394Y2886D02* D03* X3360Y2847D02* D03* X3291Y2882D02* D03* X3278Y2839D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3057Y2297D02* D03* X3067Y2393D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* X3123Y3046D02* D03* X3098Y3029D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X3121Y2869D02* D03* X3103Y2845D02* D03* X3062Y2786D02* D03* X3060Y2855D02* D03* X3030Y2878D02* D03* X3007Y2841D02* D03* X2975Y2835D02* D03* X2947Y2928D02* D03* X2875Y2885D02* D03* Y2834D02* D03* X2829Y2859D02* D03* X2825Y2784D02* D03* X2788D02* D03* X2824Y2685D02* D03* X2875Y2636D02* D03* X2922Y2682D02* D03* X2925Y2735D02* D03* X2921Y2779D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X3224Y2109D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3177Y1937D02* D03* X3073Y1984D02* D03* X3121Y1938D02* D03* X3083Y1892D02* D03* X3027Y1880D02* D03* X3021Y1931D02* D03* X2972Y1880D02* D03* X2919Y1883D02* D03* X2874Y1933D02* D03* X2873Y1983D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2977Y1986D02* D03* Y2086D02* D03* X3025Y2135D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2505Y2091D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2327Y1830D02* D03* X2265Y1915D02* D03* X2127Y2083D02* D03* X2166Y2082D02* D03* X2327Y2096D02* D03* X2385Y2187D02* D03* X2304Y2311D02* D03* X2277Y2249D02* D03* X2212D02* D03* X2154Y2211D02* D03* X2086Y2252D02* D03* X2084Y2309D02* D03* X1998Y2292D02* D03* X1999Y2222D02* D03* X1937Y2156D02* D03* X1896Y2219D02* D03* X1894Y2250D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1902Y2413D02* D03* Y2484D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1861Y2625D02* D03* X1832Y2771D02* D03* X1784Y2778D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2587Y3152D02* D03* X2629D02* D03* Y3192D02* D03* X2672Y3191D02* D03* Y3226D02* D03* Y3269D02* D03* X2710Y3304D02* D03* X2746Y3310D02* D03* X2748Y3268D02* D03* X2806Y3313D02* D03* X2805Y3229D02* D03* X2822Y3199D02* D03* X2786Y3158D02* D03* X2787Y3115D02* D03* X2745Y3074D02* D03* X2743Y3109D02* D03* Y3151D02* D03* X2742Y3188D02* D03* Y3226D02* D03* X2672Y3069D02* D03* Y3111D02* D03* X2629Y3114D02* D03* X2617Y3067D02* D03* X2546Y3079D02* D03* X2561Y3053D02* D03* X2530Y3047D02* D03* X2585Y2979D02* D03* X2555Y2912D02* D03* X2570Y2867D02* D03* X2522Y2857D02* D03* X2463Y2790D02* D03* X2473Y2873D02* D03* X2500Y2899D02* D03* X2441Y2903D02* D03* X2411Y2885D02* D03* X2397Y2982D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2470Y3114D02* D03* X2471Y3154D02* D03* X2433Y3231D02* D03* X2312Y3272D02* D03* X2354Y3231D02* D03* Y3153D02* D03* Y3114D02* D03* X2311D02* D03* X2274Y3153D02* D03* X2131Y3010D02* D03* X2260Y2965D02* D03* X2261Y2894D02* D03* X2236Y2788D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2093Y2676D02* D03* X2039Y2790D02* D03* X2026Y2841D02* D03* X2418Y2681D02* D03* X2427Y2639D02* D03* X2461Y2637D02* D03* X2494Y2639D02* D03* X2455Y2593D02* D03* X2447Y2564D02* D03* X2444Y2530D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2329Y2405D02* D03* X2481Y2482D02* D03* X2428D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2479Y2248D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2604Y2393D02* D03* X2601Y2427D02* D03* X2603Y2472D02* D03* X2599Y2534D02* D03* X2600Y2658D02* D03* X2599Y2694D02* D03* X2704Y2555D02* D03* X2691Y2462D02* D03* X2693Y2387D02* D03* X2673Y2342D02* D03* X2671Y2311D02* D03* X2670Y2280D02* D03* X2671Y2248D02* D03* X2735Y1752D02* D03* X2777Y1780D02* D03* X2822D02* D03* X2823Y1726D02* D03* X2861Y1669D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2973Y1726D02* D03* X2972Y1780D02* D03* X2927Y1784D02* D03* Y1824D02* D03* X2876Y1831D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3381Y1789D02* D03* X3419Y1828D02* D03* X3423Y1697D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3105Y1446D02* D03* X2853Y1443D02* D03* X2868Y1238D02* D03* X2837Y1237D02* D03* X2931Y1243D02* D03* X2774Y1240D02* D03* X2742Y1236D02* D03* X2711Y1237D02* D03* X2596Y1288D02* D03* X2558Y1214D02* D03* X2476Y1210D02* D03* X2480Y1262D02* D03* X2472Y1312D02* D03* X2468Y1362D02* D03* X2471Y1412D02* D03* X2537Y1427D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2555Y1589D02* D03* X2563Y1625D02* D03* X2469Y1661D02* D03* X2467Y1612D02* D03* X2468Y1562D02* D03* X2471Y1512D02* D03* X2473Y1462D02* D03* X2314D02* D03* X2315Y1413D02* D03* X2337Y1362D02* D03* X2314Y1312D02* D03* X2326Y1277D02* D03* X2315Y1193D02* D03* X2188Y1243D02* D03* X2186Y1283D02* D03* X2189Y1345D02* D03* X2187Y1381D02* D03* X1978Y1562D02* D03* X2130Y1679D02* D03* X2201Y1916D02* D03* X2027Y1915D02* D03* X1878Y1848D02* D03* X1825Y1920D02* D03* X1698Y1788D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X2662Y4666D02* D03* X2712Y4623D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2812Y4611D02* D03* X2813Y4568D02* D03* X2815Y4531D02* D03* X2725Y4434D02* D03* X2902Y4301D02* D03* X2883Y4465D02* D03* X2906Y4532D02* D03* X3012Y4627D02* D03* X2962D02* D03* X2929Y4657D02* D03* X2893Y4667D02* D03* X2853Y4849D02* D03* X3361Y4671D02* D03* X3250Y4646D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3137Y4844D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3712Y4638D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3612Y4616D02* D03* X3587Y4642D02* D03* X3537Y4595D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3560Y4446D02* D03* X3243Y4238D02* D03* X3202Y4213D02* D03* Y4165D02* D03* X3297Y4095D02* D03* X3347Y3943D02* D03* X3286Y3939D02* D03* X3244Y3894D02* D03* X3246Y3815D02* D03* X3267Y3788D02* D03* X3288Y3719D02* D03* X3251Y3621D02* D03* X3209Y3622D02* D03* X3185Y3596D02* D03* X3162Y3641D02* D03* X3092Y3640D02* D03* X3095Y3684D02* D03* X3093Y3747D02* D03* X3133Y3744D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2997Y4044D02* D03* X2954Y4046D02* D03* X2952Y3996D02* D03* X2945Y4089D02* D03* X2969Y4108D02* D03* X3025Y4130D02* D03* X3109Y4165D02* D03* X3112Y4199D02* D03* X3055Y3995D02* D03* Y3946D02* D03* X3105D02* D03* X3146Y3895D02* D03* X3195Y3896D02* D03* X3191Y3949D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X2992Y3740D02* D03* X2951Y3742D02* D03* X2882Y3779D02* D03* X2855Y3758D02* D03* X2822Y3779D02* D03* X2801Y3891D02* D03* X2870Y3892D02* D03* X2871Y3952D02* D03* X2804Y4013D02* D03* X2683Y4228D02* D03* X2689Y4063D02* D03* X2608Y4118D02* D03* X2508Y4117D02* D03* X2514Y4265D02* D03* X2511Y4345D02* D03* X2223Y4425D02* D03* X2040Y4583D02* D03* X2020Y4619D02* D03* X2092Y4767D02* D03* X1864Y4648D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1729Y3706D02* D03* X1777Y3745D02* D03* X1809Y3776D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2357Y3424D02* D03* X2391Y3428D02* D03* X2435Y3424D02* D03* X2472D02* D03* Y3387D02* D03* X2514D02* D03* Y3424D02* D03* X2515Y3462D02* D03* X2556Y3464D02* D03* X2587Y3467D02* D03* X2592Y3505D02* D03* X2631Y3510D02* D03* X2672Y3506D02* D03* X2664Y3468D02* D03* X2629D02* D03* X2667Y3430D02* D03* X2629D02* D03* X2587Y3429D02* D03* X2556Y3425D02* D03* X2550Y3390D02* D03* X2471Y3463D02* D03* X2435Y3464D02* D03* X2433Y3507D02* D03* X2472D02* D03* X2390D02* D03* Y3468D02* D03* X2357Y3466D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2333Y3637D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2454Y3638D02* D03* X2470Y3545D02* D03* X2512Y3547D02* D03* X2551Y3582D02* D03* X2612Y3651D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2709Y3547D02* D03* X2745Y3506D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2590Y3351D02* D03* X2994Y3286D02* D03* X3061Y3219D02* D03* X3003Y3163D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3202Y3217D02* D03* X3174Y3231D02* D03* X3146Y3286D02* D03* X3196Y3296D02* D03* X3245Y3292D02* D03* X3287Y3293D02* D03* X3293Y3339D02* D03* X3247Y3340D02* D03* X3144D02* D03* X3192D02* D03* X3197Y3386D02* D03* X3245Y3390D02* D03* X3290D02* D03* X3288Y3442D02* D03* X3248Y3486D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3009Y3443D02* D03* X3051D02* D03* X3043Y3494D02* D03* X2994Y3531D02* D03* X3007Y3495D02* D03* X2965Y3492D02* D03* X2899Y3410D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2901Y3537D02* D03* X2819D02* D03* X2818Y3477D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* Y3640D02* D03* Y3684D02* D03* X2998D02* D03* X2992Y3640D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2896Y3658D02* D03* X3363Y3794D02* D03* X3425Y3798D02* D03* X3486Y3791D02* D03* X3523Y3765D02* D03* X3588Y3697D02* D03* X3647Y3640D02* D03* X3740Y3607D02* D03* X3703Y3553D02* D03* X3648Y3541D02* D03* Y3485D02* D03* X3647Y3441D02* D03* X3743Y3440D02* D03* X3748Y3486D02* D03* X3692Y3490D02* D03* X3698Y3441D02* D03* Y3396D02* D03* X3643Y3387D02* D03* X3646Y3341D02* D03* X3695D02* D03* X3747Y3340D02* D03* X3748Y3392D02* D03* X3791Y3401D02* D03* X3792Y3445D02* D03* X3855Y3367D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3659Y3191D02* D03* X3601Y3154D02* D03* X3628Y2967D02* D03* X3674Y2733D02* D03* X3623Y2635D02* D03* X3583Y2539D02* D03* X3533D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3475Y2645D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3478Y2430D02* D03* X3573Y2436D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3725Y2247D02* D03* X3633Y2143D02* D03* X3577Y2141D02* D03* X3767Y2092D02* D03* X3817D02* D03* Y2193D02* D03* X3918Y2092D02* D03* X3924Y2035D02* D03* X3925Y1947D02* D03* X3872Y1993D02* D03* X3874Y2035D02* D03* X3826D02* D03* X3812Y1993D02* D03* X3767Y1994D02* D03* X3770Y1940D02* D03* Y1888D02* D03* X3767Y1843D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3434Y1990D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3583D02* D03* X3675Y1935D02* D03* X3633Y1943D02* D03* X3627Y1893D02* D03* X3621Y1789D02* D03* X3607Y1565D02* D03* X3580Y1580D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3472Y1420D02* D03* X3441Y1423D02* D03* X3388Y1438D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3404Y1241D02* D03* X3435D02* D03* X3498Y1234D02* D03* X3341Y1242D02* D03* X3310D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3089Y1234D02* D03* X3752Y1241D02* D03* X3804Y1235D02* D03* X3867D02* D03* X3851Y1416D02* D03* X3821Y1445D02* D03* X3854Y1559D02* D03* X3867Y1743D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4199Y1561D02* D03* X4168D02* D03* X4136Y1560D02* D03* X4105Y1445D02* D03* Y1316D02* D03* X4120Y1237D02* D03* X4089Y1234D02* D03* X4151Y1237D02* D03* X4184D02* D03* X4310Y1235D02* D03* X4340Y1233D02* D03* X4373D02* D03* X4404D02* D03* X4435D02* D03* X4593D02* D03* X4686Y1269D02* D03* X5049Y1447D02* D03* X5081Y1439D02* D03* X5211Y1277D02* D03* X5065Y1234D02* D03* X5033Y1236D02* D03* X4845Y1233D02* D03* X4869Y1387D02* D03* X4793Y1399D02* D03* X4860Y1446D02* D03* X4929Y1565D02* D03* X4874Y1572D02* D03* X4771Y1564D02* D03* X4682Y1572D02* D03* X4609Y1445D02* D03* X4420Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4359Y2014D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4700Y2223D02* D03* X4672D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4646Y2014D02* D03* X4615D02* D03* X4771D02* D03* X4804D02* D03* X4835D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* Y1865D02* D03* X5185D02* D03* Y1830D02* D03* X5220D02* D03* Y1865D02* D03* X5255D02* D03* X5270Y1910D02* D03* X5255Y1830D02* D03* X5253Y1772D02* D03* X5360Y1865D02* D03* Y1910D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5473Y2128D02* D03* X5437D02* D03* X5401D02* D03* X5415Y2189D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5315Y2321D02* D03* X5365D02* D03* X5415D02* D03* X5464Y2324D02* D03* X5493Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5654Y2321D02* D03* X5625Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5654Y2189D02* D03* X5645Y2128D02* D03* X5681D02* D03* X5717D02* D03* X5704Y2189D02* D03* X5754D02* D03* X5832Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5803Y2324D02* D03* X5754Y2321D02* D03* X5704D02* D03* X5625Y2769D02* D03* X5975D02* D03* X6182Y2787D02* D03* X6296Y2634D02* D03* X6363D02* D03* X6320Y2560D02* D03* Y2520D02* D03* X6280D02* D03* Y2560D02* D03* X6240D02* D03* Y2520D02* D03* X6320Y2480D02* D03* X6280D02* D03* X6240D02* D03* X6195D02* D03* X6150D02* D03* X6100D02* D03* Y2520D02* D03* Y2560D02* D03* X6050D02* D03* Y2520D02* D03* Y2480D02* D03* X5975Y2436D02* D03* Y2390D02* D03* X5921D02* D03* Y2336D02* D03* Y2290D02* D03* X5975Y2336D02* D03* Y2290D02* D03* X6021D02* D03* X6075Y2336D02* D03* Y2236D02* D03* Y2190D02* D03* Y2136D02* D03* Y2090D02* D03* X6214Y2109D02* D03* X6135Y2077D02* D03* Y2033D02* D03* X6075Y1990D02* D03* Y2036D02* D03* X6021D02* D03* Y1990D02* D03* X5975D02* D03* Y2036D02* D03* X6021Y2090D02* D03* Y2136D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5921Y2236D02* D03* Y2190D02* D03* Y2136D02* D03* X5975D02* D03* Y2090D02* D03* X5936Y2080D02* D03* X5921Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975Y1936D02* D03* Y1890D02* D03* X6021D02* D03* Y1936D02* D03* X6075D02* D03* Y1890D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* X6021Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5758D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X5240Y2290D02* D03* Y2255D02* D03* Y2220D02* D03* X5162Y2128D02* D03* X5124D02* D03* X5087D02* D03* X4924Y2201D02* D03* X4939Y2229D02* D03* X4986D02* D03* Y2354D02* D03* X4939D02* D03* X4948Y2448D02* D03* X5009Y2434D02* D03* X5173Y2566D02* D03* X5275Y2769D02* D03* X4925D02* D03* X4701Y2806D02* D03* X4559Y2950D02* D03* X4376Y3057D02* D03* X4305Y3046D02* D03* X4355Y2918D02* D03* X4299D02* D03* X4247Y2869D02* D03* X4241Y3112D02* D03* X4240Y3166D02* D03* X4304Y3196D02* D03* X4359Y3169D02* D03* X4369Y3218D02* D03* X4377Y3142D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4354Y3486D02* D03* X4303Y3665D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4266Y3852D02* D03* X4126Y3848D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X3798Y3772D02* D03* X3793Y3718D02* D03* X3820Y3684D02* D03* X3806Y3613D02* D03* X3816Y3584D02* D03* X3909Y3658D02* D03* X3941Y3623D02* D03* X3995Y3605D02* D03* X3955Y3558D02* D03* X3998Y3465D02* D03* X4122Y3531D02* D03* X3997Y3323D02* D03* X4122Y3385D02* D03* Y3240D02* D03* X4126Y3197D02* D03* Y3167D02* D03* Y3137D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X3875Y3169D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X3907Y3041D02* D03* X3877Y3039D02* D03* X3847D02* D03* X3819Y2920D02* D03* X3891D02* D03* X3974Y2918D02* D03* X4010Y2908D02* D03* X4069Y2917D02* D03* X4096Y2903D02* D03* X4079Y2688D02* D03* X4121D02* D03* X4172D02* D03* X4325Y2691D02* D03* X4356Y2688D02* D03* X4432D02* D03* X4634Y2494D02* D03* X4585D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4181Y2108D02* D03* X4151D02* D03* X4123D02* D03* X4058Y2161D02* D03* X4066Y2244D02* D03* X4021D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X5864Y1269D02* D03* X5921Y1336D02* D03* Y1390D02* D03* Y1436D02* D03* Y1536D02* D03* Y1490D02* D03* X5975D02* D03* Y1536D02* D03* X6021D02* D03* Y1490D02* D03* X6075Y1436D02* D03* X6021Y1390D02* D03* Y1436D02* D03* X5975D02* D03* Y1390D02* D03* Y1336D02* D03* X6021D02* D03* X6121D02* D03* X6221Y1390D02* D03* X6236Y1340D02* D03* X6321Y1390D02* D03* X6275D02* D03* Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6075D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421Y1390D02* D03* Y1436D02* D03* X6375D02* D03* Y1390D02* D03* Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6337Y1230D02* D03* X6341Y1141D02* D03* X6187D02* D03* X6145Y1216D02* D03* X6028D02* D03* X6037Y1066D02* D03* X6606Y1231D02* D03* X6628Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X6829D02* D03* Y1177D02* D03* Y1207D02* D03* X6850Y1231D02* D03* X6937D02* D03* X6959Y1162D02* D03* Y1130D02* D03* X7089D02* D03* X7090Y1207D02* D03* X7089Y1238D02* D03* X7118Y1219D02* D03* X7104Y1300D02* D03* X7119Y1326D02* D03* X7104Y1352D02* D03* X7119Y1378D02* D03* X7136Y1407D02* D03* X7190Y1411D02* D03* X7186Y1465D02* D03* X7267Y1331D02* D03* X7258Y1417D02* D03* Y1449D02* D03* Y1480D02* D03* Y1512D02* D03* X7267Y1599D02* D03* Y1744D02* D03* Y1890D02* D03* Y2035D02* D03* Y2181D02* D03* Y2327D02* D03* Y2473D02* D03* Y2618D02* D03* Y2764D02* D03* X7258Y2850D02* D03* X7189Y2843D02* D03* X7135Y2906D02* D03* X7189Y2889D02* D03* Y2952D02* D03* X7267Y3031D02* D03* X7258Y2913D02* D03* Y2882D02* D03* X7267Y3177D02* D03* Y3323D02* D03* Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* Y4051D02* D03* Y4197D02* D03* X7143Y4126D02* D03* X7115Y4141D02* D03* X7104Y4112D02* D03* X7118Y4085D02* D03* X7104Y4058D02* D03* X7115Y4030D02* D03* X6574Y4365D02* D03* X6704Y4282D02* D03* X6656Y4220D02* D03* X6752Y4189D02* D03* X6850Y4213D02* D03* X6854Y4272D02* D03* X6906Y4217D02* D03* X6976Y4323D02* D03* X6992Y4433D02* D03* X6991Y4592D02* D03* X7083Y4560D02* D03* X7104Y4519D02* D03* X7119Y4493D02* D03* X7104Y4467D02* D03* X7119Y4441D02* D03* X7104Y4373D02* D03* X7119Y4347D02* D03* X7104Y4321D02* D03* X7119Y4295D02* D03* X7117Y4244D02* D03* X7119Y4212D02* D03* X7267Y4343D02* D03* Y4488D02* D03* Y4634D02* D03* X7119D02* D03* X7110Y4681D02* D03* X7127Y4764D02* D03* X7042Y4718D02* D03* X7000D02* D03* X6955Y4717D02* D03* X6903Y4718D02* D03* X6850D02* D03* X6800D02* D03* X6750D02* D03* X6800Y4643D02* D03* X6850D02* D03* X6613D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6700Y4718D02* D03* X6657D02* D03* X6613D02* D03* X6440Y4780D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6700Y4888D02* D03* Y4850D02* D03* X6750D02* D03* Y4888D02* D03* X6800D02* D03* Y4850D02* D03* X6850Y4888D02* D03* Y4850D02* D03* X6900D02* D03* Y4888D02* D03* X6950Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X7049D02* D03* Y4888D02* D03* D052* X1984Y3825D02* D03* X1886Y3726D02* D03* D026* X1789Y3607D02* X1799Y3605D01* X1806Y3598D01* X1809Y3589D01* X1808Y3586D01* X1804Y3577D01* X1796Y3571D01* X1786D01* X1777Y3576D01* X1773Y3585D01* X1774Y3595D01* X1780Y3603D01* X1789Y3607D01* X1808Y2975D02* X1804Y2966D01* X1796Y2961D01* X1786D01* X1777Y2966D01* X1773Y2975D01* X1774Y2985D01* X1780Y2993D01* X1789Y2996D01* X1799Y2994D01* X1806Y2988D01* X1809Y2978D01* X1808Y2975D01* D052* X1528Y1787D02* D03* D026* X1518Y1732D02* X1510Y1727D01* X1504Y1719D01* X1502Y1709D01* X1504Y1699D01* X1509Y1691D01* X1518Y1685D01* X1527Y1683D01* X1537Y1685D01* D052* X1528Y1630D02* D03* D026* X1537Y1685D02* X1545Y1690D01* X1551Y1699D01* X1553Y1708D01* Y1709D01* X1551Y1718D01* X1518Y1732D02* X1528Y1734D01* X1537Y1732D01* X1546Y1727D01* X1551Y1718D01* D052* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* X1921D02* D03* X2327Y1069D02* D03* D026* X2627Y1328D02* X2622Y1337D01* X2623Y1346D01* X2629Y1354D01* X2638Y1358D01* X2648Y1356D01* X2655Y1349D01* X2658Y1340D01* Y1337D01* X2653Y1328D01* X2645Y1323D01* X2635D01* X2627Y1328D01* D052* X4374Y1069D02* D03* X5120Y1340D02* D03* D026* X5343Y2502D02* X5334Y2506D01* X5327Y2513D01* X5324Y2523D01* X5326Y2532D01* X5332Y2540D01* X5341Y2545D01* X5351D01* X5360Y2541D01* X5366Y2533D01* X5368Y2524D01* X5367Y2516D01* X5361Y2507D01* X5353Y2503D01* X5343Y2502D01* D052* X5585Y2994D02* D03* X5635Y3044D02* D03* X5685Y2994D02* D03* X5735Y3044D02* D03* X5685Y3094D02* D03* X5785D02* D03* X5835Y3044D02* D03* X5885Y3094D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5935Y2944D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y2844D02* D03* X6285Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6285Y3294D02* D03* X6235Y3344D02* D03* X6185Y3294D02* D03* Y3394D02* D03* X6235Y3444D02* D03* X6185Y3494D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* Y3694D02* D03* X6235Y3644D02* D03* X6285Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* X6235Y3844D02* D03* X6185Y3894D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6335Y4444D02* D03* X6385Y4394D02* D03* X6435Y4444D02* D03* X6385Y4494D02* D03* X6335Y4544D02* D03* X6385Y4594D02* D03* X6335Y4644D02* D03* X6235D02* D03* X6285Y4594D02* D03* X6235Y4544D02* D03* X6185Y4494D02* D03* X6135Y4544D02* D03* Y4644D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* Y4544D02* D03* X5985Y4494D02* D03* X5935Y4544D02* D03* Y4444D02* D03* X5885Y4394D02* D03* X5835Y4444D02* D03* Y4544D02* D03* X5885Y4594D02* D03* X5835Y4644D02* D03* X5935D02* D03* X6035Y4444D02* D03* X6085Y4394D02* D03* X6135Y4444D02* D03* X6185Y4394D02* D03* X6235Y4444D02* D03* X6285Y4394D02* D03* X6235Y4344D02* D03* X6185Y4294D02* D03* X6235Y4244D02* D03* X6185Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6285Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6285Y4194D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* D026* X6664Y4086D02* X6670Y4094D01* X6672Y4102D01* X6669Y4112D01* X6663Y4120D01* X6654Y4124D01* X6644D01* X6635Y4119D01* X6629Y4111D01* X6628Y4101D01* X6630Y4092D01* X6637Y4084D01* X6646Y4081D01* X6656D01* X6664Y4086D01* D052* X6435Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6435Y3544D02* D03* X6385Y3594D02* D03* X6435Y3644D02* D03* X6385Y3694D02* D03* X6435Y3744D02* D03* X6385Y3794D02* D03* X6435Y3844D02* D03* X6385Y3894D02* D03* X6335Y3944D02* D03* X6285Y3894D02* D03* X6335Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* Y3644D02* D03* X6285Y3594D02* D03* X6335Y3544D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* X6335Y3344D02* D03* Y3244D02* D03* X6285Y3194D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6335Y3044D02* D03* X6385Y3094D02* D03* X6435Y3144D02* D03* X6385Y3194D02* D03* X6435Y3244D02* D03* Y3044D02* D03* X6385Y2994D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6335Y2944D02* D03* X6085Y2994D02* D03* X6135Y3044D02* D03* X6085Y3094D02* D03* X5985D02* D03* X6035Y3044D02* D03* X5985Y2994D02* D03* X6035Y2944D02* D03* X5985Y2894D02* D03* X5935Y2844D02* D03* X5835D02* D03* X5885Y2894D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5735Y2944D02* D03* X5785Y2894D02* D03* X5735Y2844D02* D03* X5685Y2894D02* D03* X5635Y2844D02* D03* X5535D02* D03* X5585Y2894D02* D03* X5535Y2944D02* D03* X5485Y2894D02* D03* X5435Y2844D02* D03* Y2944D02* D03* X5385Y2894D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5185Y2894D02* D03* X5135Y2944D02* D03* X5085Y2994D02* D03* X5035Y3044D02* D03* X5085Y3094D02* D03* X5185D02* D03* X5135Y3044D02* D03* X5185Y2994D02* D03* X5235Y3044D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3594D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* Y3894D02* D03* Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4785Y3794D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4735Y3644D02* D03* X4785Y3594D02* D03* X4735Y3544D02* D03* X4785Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4835Y3444D02* D03* X4885Y3494D02* D03* Y3394D02* D03* Y3294D02* D03* X4835Y3244D02* D03* X4885Y3194D02* D03* X4835Y3144D02* D03* X4885Y3094D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4735Y3144D02* D03* X4785Y3194D02* D03* X4735Y3244D02* D03* X4785Y3294D02* D03* X4735Y3344D02* D03* X4985Y3094D02* D03* X4935Y3044D02* D03* X4885Y2994D02* D03* X4835Y2944D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935D02* D03* X4985Y2894D02* D03* X4935Y2944D02* D03* X4985Y2994D02* D03* X5035Y2944D02* D03* X5085Y2894D02* D03* X5035Y2844D02* D03* X4735Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4685Y2894D02* D03* X4635Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* X4685Y3094D02* D03* X4635Y3144D02* D03* X4685Y3194D02* D03* X4635Y3244D02* D03* Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* Y3744D02* D03* X4685Y3794D02* D03* X4635Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* Y4344D02* D03* X4685Y4394D02* D03* X4635Y4444D02* D03* D026* X4290Y4124D02* X4295Y4132D01* X4297Y4140D01* X4295Y4150D01* X4289Y4157D01* X4280Y4162D01* X4270Y4161D01* X4261Y4157D01* X4255Y4149D01* X4253Y4139D01* X4256Y4130D01* X4262Y4122D01* X4271Y4118D01* X4281Y4119D01* X4290Y4124D01* D052* X4885Y4294D02* D03* X4835Y4244D02* D03* X4885Y4194D02* D03* Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* X4735Y3944D02* D03* X4785Y3994D02* D03* X4735Y4044D02* D03* X4785Y4094D02* D03* X4735Y4144D02* D03* X4785Y4194D02* D03* X4735Y4244D02* D03* X4785Y4294D02* D03* X4735Y4344D02* D03* X4785Y4394D02* D03* X4735Y4444D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4835D02* D03* Y4644D02* D03* X4885Y4594D02* D03* X4935Y4644D02* D03* X5035D02* D03* X5085Y4594D02* D03* X5035Y4544D02* D03* X5085Y4494D02* D03* X4985D02* D03* X4935Y4544D02* D03* X4885Y4494D02* D03* X4835Y4444D02* D03* X4885Y4394D02* D03* X4985D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5185D02* D03* X5235Y4444D02* D03* X5285Y4394D02* D03* X5385D02* D03* X5435Y4444D02* D03* X5485Y4394D02* D03* X5635Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5685Y4394D02* D03* X5735Y4444D02* D03* X5785Y4494D02* D03* X5735Y4544D02* D03* Y4644D02* D03* X5685Y4594D02* D03* X5635Y4644D02* D03* X5535D02* D03* X5435D02* D03* X5485Y4594D02* D03* X5535Y4544D02* D03* X5435D02* D03* X5385Y4494D02* D03* X5335Y4644D02* D03* X5285Y4594D02* D03* X5335Y4544D02* D03* X5285Y4494D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5135Y4544D02* D03* Y4644D02* D03* X5235D02* D03* X6972Y1069D02* D03* D056* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* D031* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D051* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7583Y1630D02* D03* Y1551D02* D03* X7504D02* D03* X7425D02* D03* Y1630D02* D03* X7504D02* D03* Y1709D02* D03* X7425D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* X7740D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* Y1866D02* D03* Y1945D02* D03* X7661Y1866D02* D03* Y1945D02* D03* X7583D02* D03* Y1866D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* X7425Y3677D02* D03* Y3756D02* D03* X7504D02* D03* Y3677D02* D03* X7583D02* D03* X7661Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* X7583D02* D03* X7504D02* D03* Y3598D02* D03* X7425D02* D03* Y3520D02* D03* X7346D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7740Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* X7661Y2890D02* D03* Y2811D02* D03* X7583D02* D03* X7740Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* Y2417D02* D03* Y2339D02* D03* Y2260D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y1394D02* D03* X7583Y1315D02* D03* Y1394D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* Y1157D02* D03* X7504D02* D03* X7425D02* D03* Y2260D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y2339D02* D03* Y2417D02* D03* X7583D02* D03* X7504D02* D03* Y2339D02* D03* X7425D02* D03* Y2417D02* D03* Y2575D02* D03* Y2496D02* D03* X7504D02* D03* Y2575D02* D03* X7583D02* D03* Y2496D02* D03* X7661D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* X7583D02* D03* X7504D02* D03* Y2654D02* D03* X7425D02* D03* Y2732D02* D03* Y2890D02* D03* Y2811D02* D03* X7504D02* D03* Y2890D02* D03* X7583D02* D03* Y2969D02* D03* X7661D02* D03* Y3047D02* D03* X7583D02* D03* X7504D02* D03* Y2969D02* D03* X7425D02* D03* Y3047D02* D03* X7504Y3283D02* D03* X7425D02* D03* Y3205D02* D03* Y3126D02* D03* X7504D02* D03* Y3205D02* D03* X7583D02* D03* Y3126D02* D03* X7661D02* D03* Y3205D02* D03* X7740D02* D03* Y3283D02* D03* X7425Y3362D02* D03* Y3441D02* D03* X7504D02* D03* Y3362D02* D03* X7583D02* D03* Y3283D02* D03* X7661D02* D03* Y3362D02* D03* Y3441D02* D03* X7740D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425Y3992D02* D03* Y4071D02* D03* X7504D02* D03* Y3992D02* D03* X7583D02* D03* X7661Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* X7583D02* D03* X7504D02* D03* Y3913D02* D03* X7425D02* D03* Y3835D02* D03* X7346D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* Y4150D02* D03* Y4228D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* X7504D02* D03* Y4307D02* D03* X7583Y4386D02* D03* Y4307D02* D03* X7661D02* D03* X7740Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* X7661D02* D03* Y4228D02* D03* X7583D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7425D02* D03* Y4150D02* D03* X7661Y4701D02* D03* Y4622D02* D03* X7583D02* D03* Y4701D02* D03* X7504D02* D03* X7425D02* D03* Y4622D02* D03* Y4465D02* D03* Y4543D02* D03* X7504D02* D03* X7583D02* D03* Y4465D02* D03* X7661D02* D03* Y4543D02* D03* X7740Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7661D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* D050* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D035* X1596Y1177D02* X1603Y1170D01* X1611Y1165D01* X1621Y1160D01* X1630Y1158D01* X1640Y1157D01* X1650Y1158D01* X1660Y1160D01* X1669Y1164D01* X1677Y1170D01* X1685Y1177D01* X1691Y1184D01* X1695Y1193D01* X1698Y1203D01* X1700Y1213D01* Y1217D01* X1699Y1226D01* X1697Y1236D01* X1693Y1245D01* X1687Y1254D01* X1680Y1261D01* X1672Y1267D01* X1663Y1271D01* X1654Y1275D01* X1644Y1276D01* X1634D01* X1624Y1274D01* X1615Y1270D01* X1606Y1265D01* X1599Y1259D01* X1592Y1251D01* X1587Y1243D01* X1583Y1233D01* X1581Y1223D01* Y1213D01* X1582Y1204D01* X1585Y1194D01* X1590Y1185D01* X1596Y1177D01* X1598Y1188D02* X1683D01* X1730Y3957D02* X1723Y3949D01* X1714Y3945D01* X1705Y3944D01* X1695Y3947D01* X1687Y3953D01* X1682Y3962D01* X1681Y3971D01* X1684Y3981D01* X1690Y3989D01* X1698Y3994D01* X1708Y3996D01* X1718Y3993D01* X1726Y3988D01* X1731Y3979D01* X1733Y3970D01* Y3966D01* X1730Y3957D01* Y4474D02* X1723Y4467D01* X1714Y4462D01* X1705Y4461D01* X1695Y4464D01* X1687Y4470D01* X1682Y4479D01* X1681Y4489D01* X1684Y4498D01* X1690Y4506D01* X1698Y4511D01* X1708Y4513D01* X1718Y4511D01* X1726Y4505D01* X1731Y4497D01* X1733Y4487D01* Y4484D01* X1730Y4474D01* X2382Y4627D02* X2375Y4620D01* X2366Y4615D01* X2356Y4614D01* X2347Y4617D01* X2339Y4623D01* X2334Y4632D01* X2333Y4642D01* X2335Y4651D01* X2341Y4659D01* X2350Y4664D01* X2360Y4666D01* X2369Y4664D01* X2378Y4658D01* X2383Y4650D01* X2385Y4640D01* Y4637D01* X2382Y4627D01* X3917Y4651D02* X3923Y4659D01* X3931Y4664D01* X3941Y4666D01* X3951Y4664D01* X3959Y4658D01* X3964Y4650D01* X3966Y4640D01* Y4637D01* X3963Y4627D01* X3956Y4620D01* X3947Y4615D01* X3937Y4614D01* X3928Y4617D01* X3920Y4623D01* X3915Y4632D01* X3914Y4642D01* X3917Y4651D01* X1683Y4692D02* X1598D01* X1596Y4681D02* X1590Y4689D01* X1585Y4698D01* X1582Y4708D01* X1581Y4717D01* Y4727D01* X1583Y4737D01* X1587Y4746D01* X1592Y4755D01* X1599Y4763D01* X1606Y4769D01* X1615Y4774D01* X1624Y4778D01* X1634Y4780D01* X1644D01* X1654Y4778D01* X1663Y4775D01* X1672Y4771D01* X1680Y4765D01* X1687Y4758D01* X1693Y4749D01* X1697Y4740D01* X1699Y4730D01* X1700Y4720D01* Y4717D01* X1698Y4707D01* X1695Y4697D01* X1691Y4688D01* X1685Y4680D01* X1677Y4674D01* X1669Y4668D01* X1660Y4664D01* X1650Y4662D01* X1640Y4661D01* X1630Y4662D01* X1621Y4664D01* X1611Y4669D01* X1603Y4674D01* X1596Y4681D01* D055* X2020Y3209D02* D03* Y3109D02* D03* X1920Y3159D02* D03* Y3259D02* D03* Y3359D02* D03* X2020Y3309D02* D03* Y3409D02* D03* X2138Y4049D02* D03* X4370Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4319D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D065* X1670Y3058D02* D03* Y3509D02* D03* D063* X7425Y2102D02* D03* X7661D02* D03* D059* X2359Y4522D02* D03* X3940D02* D03* D079* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D083* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D084* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D082* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D078* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/l3.grb0000644000175000017500000040645513421555714016026 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1814Y4268D02* X2369D01* X2654Y4355D02* X3502D01* X3509Y5370D02* X3545D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* Y5397D02* X3509D01* X3501Y5388D01* Y5379D01* X3509Y5370D01* X3429Y5343D02* Y5415D01* X3465D01* X3474Y5406D01* Y5379D01* X3465Y5370D01* X3429D01* X3412D02* Y5406D01* X3403Y5415D01* X3394D01* X3385Y5370D02* Y5406D01* X3394Y5415D02* X3385Y5406D01* X3376Y5415D01* X3367D01* X3358Y5406D01* Y5415D02* Y5370D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X3296Y5370D02* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4265Y5397D01* Y5379D01* X4256Y5370D01* X4221D01* X4212Y5379D01* Y5397D01* X4221Y5406D01* X4256D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5415D01* X4398Y5406D01* X4407Y5397D01* X4425Y5441D02* Y5370D01* X4478D01* X4505D02* X4496Y5379D01* Y5441D01* X4505Y5370D02* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4647D02* X4638Y5432D01* Y5415D01* X4603Y5406D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5415D01* X4647Y5441D02* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5370D02* X5845D01* X5862D02* Y5415D01* Y5406D02* X5871Y5415D01* X5898D01* X5907Y5406D01* Y5370D01* X5818D02* Y5441D01* X5845D02* X5791D01* X5934Y5370D02* Y5415D01* Y5406D02* X5942Y5415D01* X5969D01* X5978Y5406D01* Y5370D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6218Y5432D02* X6227Y5441D01* X6262D01* X6271Y5432D01* Y5415D01* X6262Y5406D01* X6218Y5379D01* Y5370D01* X6271D01* X6396D02* X6378Y5397D01* Y5415D01* X6396Y5441D01* X6431D02* Y5370D01* X6485D01* X6502Y5379D02* X6511Y5370D01* X6547D01* X6556Y5379D01* Y5397D01* X6538Y5406D01* X6520D01* X6502Y5432D02* X6511Y5441D01* X6547D01* X6556Y5432D01* Y5415D01* X6538Y5406D01* X6591Y5370D02* X6609Y5397D01* Y5415D01* X6591Y5441D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4737D02* X8124Y4937D01* X8324Y5137D01* X8524Y4937D01* X8324Y4737D01* Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* Y4543D02* X1441D01* Y4465D01* Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1793Y894D02* X1784Y886D01* Y859D01* X1731Y850D02* X1749D01* X1740D02* Y921D01* X1731D01* X1651Y850D02* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1616Y886D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1651Y850D02* X1642Y859D01* Y868D01* X1651Y877D01* X1687D01* X1793Y894D02* X1820D01* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* Y859D02* X1793Y850D01* X1829D01* X1544Y886D02* X1536Y894D01* X1509D01* X1500Y886D01* X1509Y877D01* X1536D01* X1544Y868D01* Y859D01* X1536Y850D01* X1509D01* X1500Y859D01* X1936Y877D02* X1980D01* X1936Y894D02* X1980D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X2167Y868D02* X2176Y859D01* X2167Y850D01* X2158Y859D01* X2167Y868D01* X2211Y859D02* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y850D02* X2264Y921D01* X2336D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X8324Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2147Y5797D02* X2107D01* Y5744D01* X2133Y5771D02* X2107D01* X2093Y5797D02* X2067Y5777D01* X2053Y5771D01* X2093Y5744D02* X2067Y5777D01* X2053Y5797D02* Y5744D01* X2040D02* X2000D01* Y5771D02* X2027D01* X2040Y5797D02* X2000D01* Y5744D01* X2033Y5707D02* X2000D01* Y5654D01* Y5681D02* X2033D01* X2040Y5687D01* Y5701D01* X2033Y5707D01* X2053D02* Y5654D01* Y5681D02* X2060Y5687D01* X2080D01* X2087Y5681D01* Y5654D01* X2120D02* X2133D01* X2127D02* Y5687D01* X2120D01* X2127Y5694D02* Y5701D01* X2120D01* Y5694D01* X2127D01* X2173Y5707D02* X2180D01* Y5654D01* X2187D02* X2173D01* X2160Y5611D02* X2167Y5617D01* X2193D01* X2200Y5611D01* Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2033Y5611D02* X2027Y5617D01* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2040Y5584D01* Y5597D01* X2033Y5611D01* X2140Y5384D02* X2107Y5417D01* X2140D02* X2107Y5384D01* X2087Y5404D02* X2060D01* X2053Y5397D01* Y5391D01* X2027Y5411D02* X2000D01* Y5437D02* Y5384D01* Y5437D02* X2040D01* X2060Y5417D02* X2080D01* X2087Y5411D01* Y5384D01* X2060D01* X2053Y5391D01* Y5481D02* Y5501D01* X2060Y5507D01* X2080D01* X2087Y5501D01* Y5494D01* X2080Y5487D01* X2053D01* X2000Y5527D02* X2040D01* X2020D02* Y5474D01* X2053Y5481D02* X2060Y5474D01* X2087D01* X2120D02* X2133D01* X2127D02* Y5527D01* X2120D01* X2107Y5571D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2247Y5617D02* X2220D01* X2213Y5611D01* Y5571D01* X2220Y5564D01* X2180Y5474D02* X2173Y5481D01* X2180Y5487D01* X2187Y5481D01* X2180Y5474D01* X2267D02* X2307Y5527D01* X2300D02* X2307Y5521D01* Y5481D01* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5521D01* X2273Y5527D01* X2300D01* X2320Y5521D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* Y5474D01* X2360D01* X2373Y5481D02* X2380Y5474D01* X2407D01* X2413Y5481D01* Y5494D01* X2400Y5501D01* X2387D01* X2400D02* X2413Y5507D01* Y5521D01* X2407Y5527D01* X2380D01* X2373Y5521D01* X2360Y5617D02* X2320D01* Y5597D01* X2353D01* X2360Y5591D01* Y5571D01* X2353Y5564D01* X2327D01* X2320Y5571D01* X2307Y5611D02* X2300Y5617D01* X2273D01* X2267Y5611D01* Y5571D01* X2273Y5564D01* X2300D01* X2307Y5571D01* Y5584D01* X2300Y5591D01* X2273D01* X2267Y5584D01* X2247Y5617D02* X2253Y5611D01* Y5571D01* X2247Y5564D01* X2220D01* X2213D02* X2253Y5617D01* X2267Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2227D02* X2240D01* X2233D02* Y5687D01* X2227D01* X2233Y5701D02* Y5694D01* X2227D01* Y5701D01* X2233D01* X2213Y5771D02* X2240D01* X2253Y5744D02* X2213D01* Y5797D01* X2253D01* X2280D02* X2287D01* Y5744D01* X2293D02* X2280D01* X2320Y5751D02* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2373Y5797D02* Y5744D01* Y5757D02* X2400Y5777D01* X2407Y5744D02* X2373Y5757D01* X2353Y5764D02* X2347Y5757D01* X2320D01* Y5751D02* X2327Y5744D01* X2353D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2447Y5681D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5694D02* Y5701D01* X2553D01* Y5694D01* X2547D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2640D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2607Y5591D02* X2613Y5597D01* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5564D02* Y5591D01* X2560Y5597D02* X2553Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513Y5584D02* X2487D01* X2480Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D01* X2507Y5597D01* X2487D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2433Y5501D02* X2427Y5494D01* Y5481D01* X2433Y5474D01* X2460D01* X2467Y5481D01* Y5494D01* X2460Y5501D01* X2433D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5494D02* X2593Y5501D01* X2620D01* X2627Y5494D01* Y5481D01* X2620Y5474D01* X2593D01* X2587Y5481D01* Y5521D01* X2593Y5527D01* X2620D01* X2627Y5521D01* X2647Y5501D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* Y5494D01* X2673Y5501D01* X2680Y5507D01* Y5521D01* X2673Y5527D01* X2647D01* X2640Y5521D01* Y5507D01* X2647Y5501D01* X2673D01* X2693Y5481D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2747Y5474D02* X2787Y5527D01* Y5521D02* Y5481D01* X2780Y5474D01* X2753D01* X2747Y5481D01* Y5521D01* X2753Y5527D01* X2780D01* X2787Y5521D01* X2800Y5501D02* X2840D01* X2853Y5481D02* Y5521D01* X2860Y5527D01* X2887D01* X2993Y5654D02* Y5707D01* X3000Y5681D02* X2960D01* Y5707D01* Y5744D02* Y5797D01* Y5771D02* X3000D01* Y5797D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X2887Y5777D02* X2880D01* X2873Y5771D01* X2867Y5777D02* X2860D01* X2853D02* Y5744D01* X2873D02* Y5771D01* X2867Y5777D01* X2860D02* X2853Y5771D01* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2873Y5667D02* X2867Y5661D01* X2873Y5654D01* X2880Y5661D01* X2873Y5667D01* X2833Y5681D02* X2827Y5687D01* X2807D01* X2800Y5681D01* Y5687D02* Y5654D01* X2780Y5661D02* X2773Y5654D01* X2767D01* X2760Y5661D01* Y5707D01* X2773Y5687D02* X2747D01* X2727Y5681D02* X2733Y5674D01* Y5661D01* X2727Y5654D01* X2693Y5661D02* X2700Y5654D01* X2727D01* Y5681D02* X2700D01* X2693Y5687D01* Y5757D02* X2727Y5744D01* X2720Y5777D02* X2693Y5757D01* Y5744D02* Y5797D01* X2660Y5784D02* Y5791D01* X2653D01* Y5784D01* X2660D01* X2653Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D02* X2587Y5771D01* Y5744D02* Y5777D01* X2593D02* X2613D01* X2560D02* X2540D01* X2533Y5771D01* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2513Y5771D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2460Y5751D02* X2453Y5744D01* X2447D01* X2440Y5751D01* Y5797D01* X2427Y5777D02* X2453D01* X2853Y5391D02* X2860Y5384D01* X2887D01* X2893Y5391D01* Y5431D01* X2887Y5437D01* X2860D01* X2853Y5431D01* Y5417D01* Y5474D02* X2893Y5527D01* X2887D02* X2893Y5521D01* Y5481D01* X2887Y5474D01* X2860D01* X2853Y5481D01* X2947Y5437D02* X2907Y5384D01* Y5391D02* X2913Y5384D01* X2940D01* X2947Y5391D01* Y5431D01* X2940Y5437D01* X2913D01* X2907Y5431D01* Y5391D01* X2893Y5417D02* X2887Y5411D01* X2860D01* X2853Y5417D01* X2840Y5411D02* X2800D01* X2787Y5431D02* X2780Y5437D01* X2753D01* X2747Y5431D01* Y5391D01* X2753Y5384D01* X2780D01* X2787Y5391D01* Y5431D01* Y5437D02* X2747Y5384D01* X2733Y5417D02* X2727Y5411D01* X2700D01* X2693Y5417D01* Y5431D01* X2700Y5437D01* X2727D01* X2733Y5431D01* Y5391D01* X2727Y5384D01* X2700D01* X2693Y5391D01* X2673Y5411D02* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2640Y5431D01* Y5417D01* X2647Y5411D01* X2673D01* X2680Y5404D01* Y5391D01* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* Y5391D01* X2593Y5384D01* X2620D01* X2627Y5391D01* Y5404D01* X2620Y5411D01* X2593D01* X2587Y5404D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5411D02* X2467Y5417D01* Y5431D01* X2460Y5437D01* X2433D01* X2427Y5431D01* Y5417D01* X2433Y5411D01* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2433D01* X2373Y5431D02* X2380Y5437D01* X2407D01* X2413Y5431D01* Y5417D01* X2400Y5411D01* X2387D02* X2400D01* X2413Y5404D01* Y5391D01* X2407Y5384D01* X2380D01* X2373Y5391D01* X2360Y5384D02* X2320D01* Y5391D01* X2353Y5411D01* X2360Y5417D01* Y5431D01* X2353Y5437D01* X2327D01* X2320Y5431D01* X2300Y5437D02* X2273D01* X2267Y5431D01* Y5391D01* X2273Y5384D01* X2300D01* X2307Y5391D01* Y5431D01* X2300Y5437D01* X2307D02* X2267Y5384D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213D02* Y5204D01* X2193D02* X2167D01* X2160Y5211D01* Y5231D01* X2167Y5237D01* X2187D01* X2193Y5231D01* X2220Y5237D02* X2213Y5231D01* X2193D02* Y5224D01* X2187Y5217D01* X2160D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2140D02* X2133Y5204D01* X2127D01* X2120Y5211D01* X2087Y5204D02* Y5231D01* X2080Y5237D01* X2060D01* X2053Y5231D01* Y5237D02* Y5204D01* X2040D02* X2000D01* X2020D02* Y5257D01* X2040D02* X2000D01* Y5127D02* X2027D01* X2033Y5134D01* Y5141D01* X2027Y5147D01* X2007D01* X2000Y5141D01* Y5121D01* X2007Y5114D01* X2033D01* X2053D02* Y5147D01* Y5141D02* X2060Y5147D01* X2067D01* X2073Y5141D01* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2080Y5147D02* X2087D01* X2093Y5141D01* Y5114D01* X2107Y5127D02* X2113Y5134D01* X2140D01* X2113Y5147D02* X2133D01* X2140Y5141D01* Y5114D01* X2113D01* X2107Y5121D01* Y5127D01* X2173Y5114D02* X2187D01* X2180D02* Y5147D01* X2173D01* X2180Y5161D02* Y5154D01* X2173D01* Y5161D01* X2180D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* Y5141D02* X2280Y5147D01* X2287Y5154D01* X2293Y5147D01* X2287Y5141D01* X2267Y5204D02* Y5237D01* Y5231D02* X2273Y5237D01* X2293D01* X2300Y5231D01* Y5204D01* X2320Y5217D02* X2347D01* X2353Y5224D01* Y5231D01* X2347Y5237D01* X2327D01* X2320Y5231D01* Y5211D01* X2327Y5204D01* X2353D01* X2400Y5237D02* X2373D01* X2387Y5257D02* Y5211D01* X2393Y5204D01* X2400D01* X2407Y5211D01* X2447Y5204D02* X2453Y5211D01* X2447Y5217D01* X2440Y5211D01* X2447Y5204D01* Y5244D02* X2440Y5237D01* X2447Y5231D01* X2453Y5237D01* X2447Y5244D01* X2700Y5147D02* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D01* X2587Y5141D01* Y5147D02* Y5114D01* X2547D02* X2560D01* X2553D02* Y5147D01* X2547D01* Y5161D02* X2553D01* Y5154D01* X2547D01* Y5161D01* X2533Y5237D02* Y5224D01* X2547Y5204D01* X2553Y5211D01* Y5224D01* Y5211D02* X2560Y5204D01* X2573Y5224D01* Y5237D01* X2587D02* Y5224D01* X2600Y5204D01* X2607Y5211D01* X2613Y5204D01* X2607Y5211D02* Y5224D01* X2613Y5204D02* X2627Y5224D01* Y5237D01* X2640D02* Y5224D01* X2653Y5204D01* X2660Y5211D01* Y5224D01* Y5211D02* X2667Y5204D01* X2680Y5224D01* Y5237D01* X2713Y5217D02* X2720Y5211D01* X2713Y5204D01* X2707Y5211D01* X2713Y5217D01* X2747D02* X2773D01* X2780Y5224D01* Y5231D01* X2773Y5237D01* X2753D01* X2747Y5231D01* Y5211D01* X2753Y5204D01* X2780D01* Y5147D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2853D02* Y5167D01* X2880Y5147D02* X2853Y5127D01* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2933Y5211D01* X2927Y5204D01* X2920Y5211D01* X2927Y5217D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D02* X2800Y5217D01* Y5204D02* Y5257D01* X2993D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3013Y5217D02* X3040D01* X3047Y5224D01* Y5231D01* X3040Y5237D01* X3020D01* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5127D02* X2973Y5121D01* X2980Y5114D01* X2987Y5121D01* X2980Y5127D01* X3067D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X3146Y3286D02* X3134Y3274D01* Y3226D01* X3086Y3178D01* X3073Y3167D02* Y3182D01* X3092Y3201D01* Y3220D01* X2994Y3248D02* X3123Y3377D01* X3156D01* X3194Y3415D01* X3369D01* X3382Y3407D02* X3406D01* X3421Y3422D01* X3396Y3442D02* X3369Y3415D01* X3382Y3407D02* X3362Y3387D01* X3350D01* X3441Y3344D02* X3415Y3318D01* X3124D01* X2977Y3171D01* Y3148D01* X2953Y3176D02* X3114Y3337D01* Y3343D01* X3136Y3365D01* X3426D01* X3447Y3386D01* X3446D01* X3442Y3442D02* Y3449D01* X3419Y3472D01* X3421Y3422D02* Y3453D01* X3409Y3465D01* X3281D01* X3259Y3443D01* X3197D01* X3146Y3392D01* X3094D01* X3009Y3307D01* X2984D01* X2912Y3235D01* Y3181D01* X2765Y3034D01* X2753Y3048D02* X2660D01* X2644Y3064D01* Y3099D01* X2629Y3114D01* X2765Y3034D02* X2617D01* X2591Y3060D01* Y3110D01* X2566Y3135D01* Y3172D01* X2547Y3191D01* X2512Y3188D02* X2536Y3212D01* X2571D01* X2589Y3194D01* X2512Y3188D02* X2473D01* X2437Y3152D01* Y3042D01* X2498Y2981D01* X2549D01* X2574Y2956D01* X2785D01* X2977Y3148D01* X2953Y3176D02* Y3159D01* X2794Y3000D01* X2520D01* X2489Y3031D01* Y3062D01* X2449Y3102D01* Y3132D01* X2471Y3154D01* X2470Y3114D02* X2501Y3083D01* Y3044D01* X2527Y3018D01* X2774D01* X2928Y3172D01* Y3214D01* X2962Y3248D01* X2994D01* X3061Y3219D02* Y3184D01* X2677Y2800D01* Y2617D01* X2729Y2565D01* Y1860D01* X2744Y1847D02* Y2577D01* X2720Y2601D01* Y2814D01* X3073Y3167D01* X3086Y3178D02* Y3148D01* X3007Y3069D01* Y3026D01* X2984Y3003D01* X2940D01* X2735Y2798D01* Y2616D01* X2760Y2591D01* Y2043D01* X2771Y2032D01* X2873Y1983D02* X2898Y2008D01* Y2206D01* X2848Y2256D01* Y2668D01* X2900Y2720D01* Y2809D01* X2875Y2834D01* X2829Y2859D02* X2851Y2837D01* Y2744D01* X2802Y2695D01* Y2598D01* X2822Y2578D01* Y2236D01* X2850Y2208D01* Y2011D01* X2821Y1982D01* X2770Y1980D02* X2797Y2007D01* Y2565D01* X2784Y2578D01* Y2704D01* X2825Y2745D01* Y2784D01* X2925Y2735D02* Y2721D01* X2896Y2692D01* Y2591D01* X2878Y2573D01* Y2318D01* X2944Y2252D01* Y2008D01* X2923Y1987D01* X2977Y1986D02* X2998Y2007D01* Y2230D01* X2900Y2328D01* Y2536D01* X2908Y2544D01* Y2668D01* X2922Y2682D01* X3020Y2636D02* Y2588D01* X3004Y2572D01* Y2424D01* X3062Y2366D01* X3088D01* X3115Y2339D01* X3241D01* X3259Y2321D01* X3503D01* X3542Y2282D01* X3849D01* X3881Y2314D01* X4708D01* X4732Y2338D01* Y2377D01* X4780Y2425D01* X4799D01* X5068Y2694D01* X5345D01* X5476Y2825D01* Y2854D01* X5451Y2879D01* Y2914D01* X5470Y2933D01* Y2961D01* X5450Y2981D01* Y3014D01* X5471Y3035D01* Y3060D01* X5446Y3085D01* Y3129D01* X5606Y3289D01* Y4111D01* X5698Y4203D01* Y4259D01* X5871Y4432D01* Y4460D01* X5799Y4532D01* Y4559D01* X5835Y4595D01* Y4644D01* X5935D02* Y4598D01* X6024Y4509D01* Y4484D01* X5998Y4458D01* Y4430D01* X5969Y4464D02* X5935Y4498D01* Y4544D01* X5969Y4464D02* Y4428D01* X5946Y4405D01* Y4321D01* X5720Y4095D01* Y3296D01* X5544Y3120D01* Y3084D01* X5570Y3058D01* Y3030D01* X5519Y3013D02* X5499Y3033D01* Y3061D01* X5525Y3087D01* Y3171D01* X5697Y3343D01* Y4106D01* X5920Y4329D01* Y4413D01* X4940Y4739D02* X4545D01* X4038Y4232D01* Y4110D01* X4058Y4090D01* Y3890D01* X4060Y3888D01* Y3284D01* X4001Y3225D01* X3982D01* X3890Y3133D01* X3851D01* X3802Y3084D01* X3420D01* X3416Y3080D01* X3275D01* X3202Y3007D01* Y2890D01* X3234Y2858D01* Y2836D01* X3298Y2772D01* Y2658D01* X3279Y2639D02* X3298Y2658D01* X3276Y2684D02* X3256Y2704D01* Y2775D01* X3209Y2822D01* X3192D01* X3166Y2848D01* Y3024D01* X3258Y3116D01* X3381D01* X3385Y3120D01* X3725D01* X3818Y3213D01* X3873D01* X3956Y3296D01* Y3353D01* X3972Y3369D01* X3941Y3401D02* X3916Y3376D01* Y3330D01* X3862Y3276D01* X3841D01* X3734Y3169D01* X3631D01* X3624Y3176D01* X3592D01* X3565Y3149D01* X3409D01* X3385Y3173D01* X3281D01* X3142Y3034D01* Y2826D01* X3229Y2739D01* Y2682D01* X3277Y2733D02* Y2773D01* X3219Y2831D01* Y2856D01* X3190Y2885D01* Y3012D01* X3270Y3092D01* X3405D01* X3409Y3096D01* X3794D01* X3844Y3146D01* X3885D01* X3898Y3159D01* Y3189D01* X4046Y3337D01* Y3869D01* X4016Y3899D01* Y4236D01* X4531Y4751D01* X4519Y4764D02* X4001Y4246D01* Y3886D01* X4031Y3856D01* Y3381D01* X4001Y3351D01* X3990D01* X3973Y3334D01* Y3289D01* X3874Y3190D01* X3816D01* X3734Y3108D01* X3394D01* X3390Y3104D01* X3265D01* X3178Y3017D01* Y2866D01* X3192Y2852D01* X3235Y2905D02* X3231Y2909D01* Y2982D01* X3255Y3006D01* X3282D01* X3300Y3024D01* Y3042D01* X3314Y3056D01* X3434D01* X3438Y3060D01* X3818D01* X3832Y3074D01* X3941D01* X3961Y3094D01* Y3130D01* X3986Y3155D01* X3993D01* X4050Y3212D01* Y3226D01* X4089Y3265D01* Y4057D01* X4087Y4059D01* Y4104D01* X4102Y4119D01* Y4243D01* X4536Y4677D01* X4590D01* X4628Y4715D01* X4854D01* X4890Y4679D01* X4956D01* X4969Y4666D01* Y4630D01* X4951Y4612D01* X4935Y4598D02* Y4544D01* X4655Y4579D02* X4621D01* X4591Y4549D01* Y4532D01* X4443Y4384D01* Y3892D01* X4393Y3842D01* X4333D01* X4245Y3754D01* Y3211D01* X4219Y3185D01* Y3087D01* X4087Y2955D01* X3807D01* X3767Y2915D01* X3607D01* X3582Y2940D01* X3358D01* X3346Y2928D01* Y2909D01* X3360Y2895D01* Y2847D01* X3394Y2886D02* X3412Y2904D01* X3564D01* X3599Y2869D01* X4112D01* X4166Y2923D01* Y2942D01* X4333Y3109D01* Y3227D01* X4358Y3252D01* Y3392D01* X4333Y3417D01* Y3582D01* X4362Y3611D01* Y3694D01* X4484Y3816D01* Y4342D01* X4623Y4481D01* X4701Y4428D02* X4667D01* X4644Y4405D01* X4629D01* X4512Y4288D01* Y3797D01* X4422Y3707D01* Y3072D01* X4351Y3001D01* X4308D01* X4149Y2842D01* X3592D01* X3554Y2880D01* X3435D01* X3405Y2850D01* Y2811D01* X3475Y2741D01* X3525Y2697D02* X3497Y2725D01* X3530Y2737D02* X3509Y2758D01* Y2792D01* X3523Y2806D01* X3542D01* X3592Y2756D01* X3695D01* X3784Y2667D01* X4194D01* X4264Y2737D01* X4359D01* X4517Y2895D01* Y3691D01* X4577Y3751D01* Y3874D01* X4604Y3901D01* Y4213D01* X4635Y4244D01* X4735Y4144D02* X4787D01* X4825Y4106D01* X4885Y4194D02* X4836D01* X4699Y4331D01* X4677Y4354D02* X4725D01* X4735Y4344D01* X4699Y4331D02* X4674D01* X4644Y4301D01* X4617D01* X4580Y4264D01* Y3944D01* X4550Y3914D01* Y3768D01* X4479Y3697D01* Y3009D01* X4197Y2727D01* X3869D01* X3805Y2791D01* X3591D01* X3552Y2830D01* X3478D01* X3476Y2828D01* X3531Y2784D02* X3687Y2628D01* X4331D01* X4580Y2877D01* Y3644D01* X4589Y3653D01* X4568Y3669D02* X4535Y3636D01* Y2882D01* X4371Y2718D01* X4275D01* X4205Y2648D01* X3759D01* X3674Y2733D01* X3615Y2558D02* X3596Y2577D01* X3412D01* X3383Y2548D01* X3308D01* X3196Y2660D01* Y2736D01* X3103Y2829D01* Y2845D01* X3121Y2869D02* X3130Y2860D01* Y2819D01* X3208Y2741D01* Y2669D01* X3312Y2565D01* X3379D01* X3437Y2623D01* X3491D01* X3521Y2593D01* X3598D01* X3619Y2572D01* X3643D01* X3658Y2587D01* X4394D01* X4622Y2815D01* Y2882D01* X4932Y3192D01* Y4192D01* X5235Y4495D01* Y4544D01* X5224Y4585D02* X5185Y4546D01* Y4494D01* X5085D02* Y4546D01* X5121Y4582D01* X5135Y4544D02* Y4596D01* X5172Y4633D01* Y4661D01* X5045Y4788D01* X4495D01* X3971Y4264D01* Y3869D01* X4001Y3839D01* Y3650D01* X3974Y3623D01* X3920Y3598D02* Y3633D01* X3934Y3647D01* Y3672D01* X3903Y3703D01* Y3834D01* X3943Y3874D01* Y3960D01* X3941Y3962D01* Y4285D01* X4469Y4813D01* X5066D01* X5235Y4644D01* X5248Y4610D02* Y4582D01* X5285Y4545D01* Y4494D01* X5385D02* X5367Y4476D01* Y4425D01* X5385Y4394D02* Y4447D01* X5421Y4483D01* Y4509D01* X5401Y4529D01* Y4562D01* X5335Y4544D02* Y4596D01* X5296Y4635D01* Y4707D01* X5164Y4839D01* X4442D01* X3911Y4308D01* Y4001D01* X3857Y3947D01* Y3914D01* X3871Y3900D01* Y3640D01* X3866Y3635D01* Y3393D01* X3876Y3383D01* Y3356D01* X3855Y3335D01* X3826D01* X3744Y3253D01* X3576D01* X3549Y3226D01* X3279D01* X3132Y3079D01* X3096D01* X3074Y3057D01* Y2881D01* X3082Y2873D01* Y2819D01* X3175Y2726D01* X3219Y2782D02* X3218Y2783D01* X3214D01* X3154Y2843D01* Y3029D01* X3272Y3147D01* X3343D01* X3357Y3161D01* X3379D01* X3408Y3132D01* X3718D01* X3843Y3257D01* X3870D01* X3935Y3322D01* Y3364D01* X3957Y3386D01* Y3518D01* X3931Y3544D01* Y3565D01* X3974Y3608D01* Y3623D01* X3878Y3622D02* Y3398D01* X3888Y3388D01* Y3349D01* X3854Y3315D01* X3830D01* X3748Y3233D01* X3626D01* X3603Y3210D01* X3556D01* X3530Y3184D01* X3409D01* X3387Y3206D01* X3278D01* X3139Y3067D01* X3109D01* X3098Y3056D01* Y3029D01* X3053Y3031D02* Y3053D01* X3135Y3135D01* Y3145D01* X3149Y3159D01* X3194D01* X3277Y3242D01* X3527D01* X3550Y3265D01* X3705D01* X3722Y3282D01* Y3294D01* X3735Y3307D01* X3775D01* X3830Y3362D01* Y3376D01* X3854Y3400D01* X3698Y3396D02* Y3393D01* X3697D01* X3682Y3408D01* X3632D01* X3613Y3427D01* Y3509D01* X3601Y3521D01* X3535D01* X3514Y3482D02* X3533Y3463D01* X3556D01* X3569Y3450D02* X3556Y3463D01* X3545Y3440D02* X3527D01* X3569Y3450D02* Y3421D01* X3581Y3409D01* X3607D01* X3629Y3387D01* X3643D01* X3545Y3386D02* X3512Y3419D01* X3479D01* X3468Y3430D01* Y3493D01* X3419Y3542D01* X3267D01* X3245Y3520D01* X3102D01* X3076Y3494D01* Y3484D01* X3062Y3470D01* X3041D01* X3030Y3459D01* Y3431D01* X3011Y3412D01* X2988D01* X2805Y3229D01* X2786Y3158D02* X2811D01* X2853Y3200D01* Y3226D01* X3049Y3422D01* X3100D01* X3116Y3438D01* Y3470D01* X3127Y3481D01* Y3497D01* X3138Y3508D01* X3256D01* X3276Y3528D01* X3415D01* X3440Y3503D01* Y3484D01* X3419Y3472D02* Y3494D01* X3402Y3511D01* X3286D01* X3271Y3496D01* Y3479D01* X3256Y3464D01* X3196D01* X3139Y3407D01* X3060D01* X2896Y3243D01* Y3191D01* X2753Y3048D01* X2745Y3074D02* X2707Y3112D01* Y3223D01* X2682Y3248D01* X2544D01* X2535Y3257D01* X2502D01* X2493Y3248D01* Y3214D01* X2480Y3201D01* X2464D01* X2424Y3161D01* Y3093D01* X2395Y3064D01* X2376D01* X2440Y2658D02* Y2717D01* X2337Y2820D01* Y2947D01* X2269Y3015D01* Y3068D01* X2213Y3124D01* Y3539D01* X2288Y3614D01* X2408D01* X2430Y3636D01* Y3645D01* X2444Y3659D01* X2468D01* X2479Y3648D01* X2568D01* X2602Y3614D01* X2627D01* X2706Y3693D01* Y3773D01* X2697Y3797D02* X2674Y3774D01* Y3743D01* X2638Y3770D02* Y3707D01* X2605Y3674D01* X2488D01* X2479Y3683D01* X2268D01* X2189Y3604D01* Y3110D01* X2245Y3054D01* Y2982D01* X2237Y2974D01* Y2953D01* X2296Y2894D01* Y2791D01* X2381Y2706D01* Y2668D01* X2401Y2648D01* X2429Y2461D02* X2418D01* X2407Y2472D01* Y2478D01* X2441Y2503D02* X2462Y2482D01* X2481D01* X2494Y2639D02* X2465Y2668D01* X2461Y2637D02* X2440Y2658D01* X2465Y2668D02* Y2723D01* X2457Y2762D02* X2496D01* X2600Y2658D01* X2599Y2694D02* X2528Y2765D01* Y2799D01* X2491Y2836D01* X2427D01* X2390Y2873D01* Y2956D01* X2321Y3025D01* Y3073D01* X2249Y3145D01* Y3170D01* X2255Y3176D01* Y3472D01* X2276Y3493D01* X2288D01* X2361Y3566D01* X2327Y3553D02* X2312D01* X2237Y3478D01* Y3137D01* X2293Y3081D01* Y3035D01* X2372Y2956D01* Y2847D01* X2457Y2762D01* X2465Y2723D02* X2354Y2834D01* Y2952D01* X2281Y3025D01* Y3075D01* X2225Y3131D01* Y3533D01* X2292Y3600D01* X2489D01* X2484Y3714D02* X2244D01* X2164Y3634D01* Y2967D01* X2226Y2905D01* Y2881D01* X2257Y2850D01* Y2756D01* X2315Y2698D01* Y2668D01* X2337Y2646D01* X2352D01* X2378Y2620D01* Y2606D01* X2396Y2588D01* X2455Y2593D02* Y2594D01* X2437Y2612D01* X2424D01* X2401Y2648D02* Y2635D01* X2424Y2612D01* X2427Y2639D02* X2397Y2669D01* Y2725D01* X2317Y2805D01* Y2943D01* X2257Y3003D01* Y3060D01* X2201Y3116D01* Y3591D01* X2272Y3662D01* X2419D01* X2428Y3671D01* X2474D01* X2483Y3662D01* X2571D01* X2603Y3630D01* X2624D01* X2674Y3680D01* Y3743D01* X2480Y3485D02* X2424D01* X2412Y3473D01* Y3101D01* X2396Y3085D01* X2366D01* X2355Y3074D01* Y3055D01* X2376Y3034D01* X2422D01* X2508Y2948D01* X2552D01* X2643Y2857D01* Y2432D01* X2604Y2393D01* X2601Y2427D02* X2625Y2451D01* Y2719D01* X2545Y2799D01* Y2873D01* X2527Y2891D01* Y2906D01* X2501Y2932D01* X2459D01* X2419Y2972D01* Y2991D01* X2403Y3007D01* X2380D01* X2333Y3054D01* Y3513D01* X2349Y3529D01* X2450D01* X2472Y3507D01* X2480Y3485D02* X2512Y3517D01* Y3547D01* X2490Y3580D02* X2528Y3618D01* X2562D01* X2601Y3579D01* X2687D01* X2764Y3656D01* Y3721D01* X2799Y3686D01* X2918D01* X2939Y3707D01* X3135D01* X3194Y3648D01* X3291D01* X3289Y3673D02* X3318Y3644D01* X3502D01* X3542Y3622D02* X3467Y3697D01* X3261D01* X3190Y3768D01* X2946D01* X2890Y3712D01* X2822D01* X2737Y3797D01* X2697D01* X2828Y3724D02* X2738Y3814D01* X2682D01* X2638Y3770D01* X2615Y3742D02* X2609D01* X2553Y3686D01* X2493D01* X2480Y3699D01* X2256D01* X2177Y3620D01* Y3056D01* X2211Y3022D01* Y2946D01* X2238Y2919D01* Y2887D01* X2277Y2848D01* Y2776D01* X2327Y2726D01* Y2673D01* X2342Y2658D01* X2359D01* X2425Y2592D01* Y2549D01* X2444Y2530D01* X2441Y2503D02* X2427D01* X2391Y2539D01* X2381D01* X2303Y2617D01* Y2669D01* X2206Y2766D01* Y2848D01* X2181Y2873D01* Y2922D01* X2152Y2951D01* Y3024D01* X2142Y3034D01* Y3322D01* X2152Y3332D01* Y3651D01* X2230Y3729D01* X2273Y3962D02* Y3932D01* X2293Y3912D01* X2455D01* X2516Y3973D01* X2669D01* X2763Y4067D01* X3061D01* X3107Y4021D01* Y4064D02* X3523D01* X3547Y4040D01* X3546Y3997D02* X3522Y4021D01* X3506Y3991D02* X3093D01* X3066Y4018D01* X2870D01* X2790Y3938D01* X2525D01* X2532Y3776D02* X2511Y3755D01* X2481Y3776D02* X2198D01* X2215Y3742D02* X2140Y3667D01* Y3350D01* X2123Y3333D01* Y3035D01* X2108Y3020D01* Y2961D01* X2154Y2915D01* Y2743D01* X2385Y2512D01* X2398D01* X2428Y2482D01* X2429Y2461D02* X2449Y2441D01* X2478Y2422D02* X2480Y2420D01* X2431D01* X2407Y2444D01* X2378D01* X2356Y2466D01* Y2496D01* X2081Y2771D01* Y3659D01* X2198Y3776D01* X1984Y3825D02* X2066Y3743D01* Y3059D01* X2060Y3053D01* Y2662D01* X2153Y2569D01* Y2345D01* X2248Y2250D01* Y2162D01* X2304Y2106D01* Y2057D01* X2475Y1886D01* Y1816D01* X2563Y1728D01* Y1625D01* X2680Y1592D02* X2618Y1530D01* Y1435D01* X2471Y1412D02* X2603Y1544D01* Y2314D01* X2676Y2387D01* X2693D01* X3381Y1789D02* X3360Y1810D01* X3320D01* X3312Y1805D01* X3311Y1796D01* X3319Y1790D01* X3320D01* X3350D01* X3381Y1759D01* Y1687D01* X3453Y1615D01* Y1578D01* X3491Y1540D01* X3560D01* X3561D01* X3569Y1534D01* X3568Y1525D01* X3560Y1520D01* X3500D01* X3492Y1515D01* X3491Y1506D01* X3499Y1500D01* X3500D02* X3531D01* X3731Y1300D01* X3802D01* X3867Y1235D01* X4105Y1316D02* Y1381D01* X4008Y1478D01* Y1759D01* X3987Y1781D02* Y1401D01* X4151Y1237D01* X4160Y1213D02* X4079D01* X3940Y1352D01* Y1588D01* X3722Y1806D01* Y1966D01* X3750Y1994D01* X3767D01* X3770Y1940D02* X3793Y1917D01* X3886D01* X3896Y1907D01* X4013D01* X4102Y1818D01* Y1564D01* X4136Y1530D01* X4237D01* X4241Y1510D02* X4130D01* X4083Y1557D01* X4136Y1560D02* X4147Y1571D01* Y1803D01* X4168Y1812D02* Y1561D01* X4199D02* Y1811D01* X4030Y1980D01* X3885D01* X3872Y1993D01* X3812Y1961D02* X3761D01* X3749Y1949D01* Y1876D01* X3761Y1864D01* X3807D01* X3833Y1838D01* X3919D01* X3926Y1845D01* X3895Y2268D02* X3922Y2295D01* X4731D01* X4777Y2341D01* Y2384D01* X4798Y2405D01* X4827D01* X5101Y2679D01* X5353D01* X5496Y2822D01* Y2857D01* X5518Y2879D01* Y2915D01* X5500Y2933D01* Y2965D01* X5519Y2984D01* Y3013D01* X5570Y3030D02* X5548Y3008D01* Y2984D01* X5571Y2961D01* Y2933D01* X5549Y2911D01* Y2883D01* X5573Y2859D01* Y2830D01* X5405Y2662D01* X5129D01* X4739Y2272D01* X3992D01* X3946Y2226D01* X3525D01* X3485Y2266D01* X3057D01* X2971Y2352D01* Y2585D01* X3080Y2583D02* X3072D01* X3043Y2554D01* Y2534D01* X3056Y2521D01* X3075D01* X3103Y2493D01* Y2434D01* X3138Y2399D01* X3390D01* X3395Y2394D01* X3519D01* X3543Y2370D01* X3575D01* X3623Y2322D01* X3705D01* X3781Y2398D01* X4650D01* X4996Y2744D01* X5213D01* X5297Y2828D01* Y2858D01* X5325Y2886D01* Y2907D01* X5299Y2933D01* Y2960D01* X5323Y2984D01* Y3010D01* X5297Y3036D01* Y3058D01* X5326Y3087D01* Y3170D01* X5404Y3248D01* Y4051D01* X5491Y4138D01* Y4171D01* X5645Y4325D01* Y4399D01* X5671Y4425D01* Y4460D01* X5646Y4485D01* Y4533D01* X5635Y4544D01* X5603Y4462D02* Y4427D01* X5622Y4408D01* Y4337D01* X5327Y4042D01* Y3307D01* X5243Y3223D01* Y3085D01* X5274Y3054D01* Y3038D01* X5248Y3012D01* Y2982D01* X5271Y2959D01* Y2931D01* X5250Y2910D01* Y2880D01* X5271Y2859D01* Y2825D01* X5209Y2763D01* X4975D01* X4633Y2421D01* X3769D01* X3713Y2365D01* X3605D01* X3578Y2392D01* X3552D01* X3535Y2409D01* X3445D01* X3440Y2414D01* X3140D01* X3115Y2439D01* Y2606D01* X3122Y2613D01* Y2642D01* X3176Y2516D02* X3189Y2503D01* X3361D01* X3419Y2561D01* X3592D01* X3608Y2545D01* X3626D01* X3649Y2522D01* X3833D01* X3848Y2537D01* X4478D01* X5023Y3082D01* Y4184D01* X5369Y4530D01* Y4561D01* X5348Y4582D01* Y4631D01* X5335Y4644D01* X5401Y4562D02* X5472Y4633D01* X5435Y4644D02* X5228Y4851D01* X4428D01* X3896Y4319D01* Y4032D01* X3842Y3978D01* Y3872D01* X3854Y3860D01* Y3400D01* X3941Y3401D02* Y3430D01* X3919Y3452D01* Y3571D01* X3962Y3614D01* Y3693D01* X3917Y3738D01* Y3820D01* X3956Y3859D01* Y4275D01* X4481Y4800D01* X5058D01* X5185Y4673D01* Y4647D01* X5224Y4608D01* Y4585D01* X5248Y4610D02* X5272Y4634D01* Y4655D01* X5101Y4826D01* X4456D01* X3926Y4296D01* Y3952D01* X3931Y3947D01* Y3889D01* X3888Y3846D01* Y3632D01* X3878Y3622D01* X3920Y3598D02* X3898Y3576D01* Y3405D01* X3900Y3403D01* Y3339D01* X3853Y3292D01* X3832D01* X3752Y3212D01* X3627D01* X3608Y3193D01* X3572D01* X3545Y3166D01* X3409D01* X3388Y3187D01* X3276D01* X3135Y3046D01* X3123D01* X3367Y2919D02* X3376Y2928D01* X3576D01* X3605Y2899D01* X3918D01* X3958Y2939D01* X4100D01* X4262Y3101D01* Y3736D01* X4354Y3828D01* X4401D01* X4456Y3883D01* Y4365D01* X4470Y4354D02* X4621Y4505D01* X4644D01* X4671Y4532D01* X4701D01* X4703Y4563D02* X4671D01* X4655Y4579D01* X4635Y4544D02* X4456Y4365D01* X4470Y4354D02* Y3826D01* X4325Y3681D01* Y3612D01* X4318Y3605D01* Y3400D01* X4280Y3362D01* Y3089D01* X4123Y2932D01* Y2899D01* X4106Y2882D01* X3604D01* X3570Y2916D01* X3394D01* X3373Y2895D01* Y2876D01* X3381Y2868D01* Y2797D01* X3425Y2753D01* Y2736D01* X3380Y2730D02* Y2772D01* X3369Y2783D01* Y2807D01* X3339Y2837D01* Y2899D01* X3334Y2904D01* Y2934D01* X3352Y2952D01* X3589D01* X3609Y2932D01* X3749D01* X3786Y2969D01* X4073D01* X4207Y3103D01* Y3205D01* X4225Y3223D01* Y3776D01* X4075Y3891D02* Y3274D01* X4001Y3200D01* X3974D01* X3917Y3143D01* Y3129D01* X3874Y3086D01* X3822D01* X3808Y3072D01* X3432D01* X3428Y3068D01* X3280D01* X3218Y3006D01* Y2923D01* X3214Y2919D01* Y2895D01* X3246Y2863D01* Y2841D01* X3314Y2773D01* Y2663D01* X3324Y2653D01* Y2627D01* X3335Y2586D02* X3345Y2596D01* Y2652D01* X3333Y2664D01* Y2777D01* X3303Y2807D01* Y2845D01* X3288Y2860D01* X3282D01* X3270Y2872D01* Y2938D01* X3257Y2951D01* Y2970D01* X3269Y2982D01* X3313D01* X3331Y3000D01* X3432D01* X3468Y3036D01* X3638D01* X3669Y3005D01* X3703D01* X3715Y3017D01* X3934D01* X3985Y3068D01* X4002D01* X4092Y3158D01* Y3201D01* X4109Y3218D01* X4134D01* X4147Y3231D01* Y3877D01* X4141Y3883D01* Y4091D01* X4133Y4099D01* Y4225D01* X4549Y4641D01* X4590D01* X4640Y4691D01* X4842D01* X4935Y4598D01* X5023Y4609D02* X4994Y4638D01* Y4665D01* X4968Y4691D01* X4897D01* X4835Y4644D02* X4800D01* X4776Y4629D02* X4756Y4609D01* X4714D01* X4751Y4579D02* X4786Y4544D01* X4835D01* X4623Y4481D02* X4653D01* X4690Y4444D01* X4735D01* X4701Y4428D02* X4785Y4344D01* Y4294D01* X4735Y4244D02* X4686D01* X4650Y4280D01* X4623D01* X4592Y4249D01* Y3923D01* X4563Y3894D01* Y3760D01* X4498Y3695D01* Y2902D01* X4350Y2754D01* X4254D01* X4210Y2710D01* X3829D01* X3765Y2774D01* X3591D01* X3547Y2818D01* X3517D01* X3497Y2798D01* Y2725D01* X3475Y2741D02* Y2645D01* X3379Y2633D02* Y2655D01* X3357Y2677D01* Y2799D01* X3327Y2829D01* Y2893D01* X3322Y2898D01* Y2939D01* X3347Y2964D01* X3448D01* X3483Y2999D01* X3514D01* X3548Y2965D01* X3598D01* X3617Y2946D01* X3734D01* X3769Y2981D01* X3752Y2993D02* X3736Y2977D01* X3649D01* X3633Y2993D01* X3540D01* X3522Y3011D01* X3477D01* X3442Y2976D01* X3342D01* X3309Y2943D01* Y2894D01* X3315Y2888D01* Y2819D01* X3345Y2789D01* Y2670D01* X3358Y2657D01* Y2623D01* X3371Y2610D01* X3391D01* X3421Y2640D01* X3428Y2690D02* X3449Y2711D01* Y2748D01* X3393Y2804D01* Y2855D01* X3430Y2892D01* X3559D01* X3595Y2856D01* X4125D01* X4289Y3020D01* X4315D01* X4341Y3046D01* Y3071D01* X4402Y3132D01* Y3710D01* X4498Y3806D01* Y4295D01* X4594Y4391D01* X4635Y4444D02* X4594Y4403D01* Y4391D01* X4624Y4379D02* X4526Y4281D01* Y3790D01* X4441Y3705D01* Y3063D01* X4358Y2980D01* X4328D01* X4203Y2855D01* Y2781D01* X4179Y2757D01* X3944D01* X3876Y2825D01* X3591D01* X3548Y2868D01* X3440D01* X3426Y2854D01* Y2827D01* X3451Y2845D02* X3455Y2849D01* X3550D01* X3591Y2808D01* X3839D01* X3904Y2743D01* X4188D01* X4327Y2882D01* Y2922D01* X4459Y3054D01* Y3699D01* X4538Y3778D01* Y4063D01* X4554Y4079D01* Y4263D01* X4635Y4344D01* X4624Y4379D02* X4652D01* X4677Y4354D01* X4885Y4294D02* Y4348D01* X4701Y4532D01* X4703Y4563D02* X4719Y4579D01* X4751D01* X4735Y4644D02* X4631D01* X4585Y4598D01* X4569D01* X4555Y4624D02* X4591D01* X4646Y4679D01* X4765D01* X4800Y4644D01* X4776Y4629D02* X4801D01* X4871Y4559D01* Y4532D01* X4848Y4509D01* Y4483D01* X4885Y4446D01* Y4394D01* X4985D02* Y4446D01* X4950Y4481D01* Y4511D01* X4971Y4532D01* X4985Y4494D02* Y4545D01* X5023Y4583D01* Y4609D01* X5035Y4644D02* X4940Y4739D01* X4897Y4691D02* X4861Y4727D01* X4621D01* X4589Y4695D01* X4527D01* X4060Y4228D01* Y4116D01* X4073Y4103D01* Y3893D01* X4075Y3891D01* X4225Y3776D02* X4317Y3868D01* Y3899D01* X4341Y3923D01* X4404D01* X4430Y3949D01* Y4406D01* X4618Y4594D01* X4685D01* X4714Y4609D02* X4693Y4630D01* X4636D01* X4416Y4410D01* Y3955D01* X4396Y3935D01* X4315D01* X4206Y3826D01* Y3237D01* X4192Y3223D01* Y3115D01* X4058Y2981D01* X3769D01* X3752Y2993D02* X4042D01* X4179Y3130D01* Y3238D01* X4186Y3245D01* Y3870D01* X4403Y4087D01* Y4432D01* X4569Y4598D01* X4555Y4624D02* X4149Y4218D01* Y4104D01* X4153Y4100D01* Y3948D01* X4167Y3934D01* Y3145D01* X4135Y3113D01* X4104D01* X3996Y3005D01* X3734D01* X3721Y2992D01* X3657D01* X3626Y3023D01* X3472D01* X3437Y2988D01* X3337D01* X3291Y2942D01* Y2882D01* X3278Y2839D02* X3258Y2859D01* Y2918D01* X3245Y2931D01* Y2976D01* X3263Y2994D01* X3307D01* X3325Y3012D01* X3427D01* X3463Y3048D01* X3826D01* X3840Y3062D01* X3949D01* X3973Y3086D01* Y3121D01* X3995Y3143D01* X4011D01* X4066Y3198D01* Y3217D01* X4101Y3252D01* Y3924D01* X4129Y3952D01* Y4083D01* X4117Y4095D01* Y4233D01* X4542Y4658D01* X4588D01* X4633Y4703D01* X4848D01* X4907Y4644D01* X4935D01* X4951Y4612D02* Y4581D01* X4971Y4561D01* Y4532D01* X5035Y4544D02* Y4596D01* X5074Y4635D01* Y4659D01* X4982Y4751D01* X4531D01* X4519Y4764D02* X4993D01* X5094Y4663D01* Y4638D01* X5121Y4611D01* Y4582D02* Y4611D01* X5135Y4644D02* X5003Y4776D01* X4508D01* X3986Y4254D01* Y3880D01* X4016Y3850D01* Y3534D01* X3972Y3490D01* Y3369D01* X4589Y3653D02* Y3850D01* X4785Y4046D01* X4802Y4060D02* X4825Y4083D01* Y4106D01* X4785Y4094D02* Y4046D01* X4802Y4060D02* Y4030D01* X4822Y4010D01* Y3982D01* X4601Y3761D01* Y2826D01* X4385Y2610D01* X3648D01* X3623Y2635D01* X3615Y2558D02* X3666D01* X3673Y2565D01* X4406D01* X4959Y3118D01* X5048Y3083D02* X5075Y3056D01* Y3035D01* X4627Y2587D01* X4581D01* X4614Y2560D02* X4644D01* X4897Y2813D01* X4954D01* X5131Y2990D01* Y3002D01* X5099Y3034D01* Y3060D01* X5133Y3094D01* Y3842D01* X5202Y3911D01* Y4071D01* X5439Y4308D01* Y4396D01* X5185Y4394D02* X4959Y4168D01* Y3118D01* X5048Y3083D02* Y3124D01* X5113Y3189D01* Y4032D01* X5147Y4066D01* Y4205D01* X5367Y4425D01* X5439Y4396D02* X5472Y4429D01* Y4458D01* X5435Y4495D01* Y4544D01* X5500Y4532D02* X5522Y4510D01* Y4481D01* X5499Y4458D01* Y4434D01* X5516Y4417D01* Y4298D01* X5226Y4008D01* Y3897D01* X5153Y3824D01* Y3130D01* X5149Y3126D01* Y3082D01* X5172Y3059D01* Y3034D01* X5148Y3010D01* Y2982D01* X5173Y2957D01* Y2934D01* X5040Y2801D01* X4926D01* X4640Y2515D01* X4624D01* X4835Y2014D02* X4838Y2011D01* Y1381D01* X4746Y1448D02* Y1914D01* X4646Y2014D01* X4660Y2158D02* X4778D01* X4963Y2343D01* Y2362D01* X4989Y2388D01* X4995D01* X5173Y2566D01* X5181Y2643D02* X5416D01* X5597Y2824D01* Y2857D01* X5622Y2882D01* Y2910D01* X5599Y2933D01* X5423Y2909D02* X5398Y2934D01* Y2961D01* X5421Y2984D01* Y3010D01* X5400Y3031D01* Y3066D01* X5427Y3093D01* Y3221D01* X5584Y3378D01* Y4118D01* X5670Y4204D01* Y4273D01* X5745Y4348D01* Y4405D01* X5784Y4444D01* X5835D01* X5901Y3422D02* Y3162D01* X5698Y2959D01* Y2932D01* X5720Y2910D01* Y2880D01* X5697Y2857D01* Y2754D01* X5511Y2568D01* Y2465D01* X5403Y2357D01* X5273D01* X5022Y2106D01* Y1560D01* X4977Y1515D01* Y1292D01* X5033Y1236D01* X4866Y1319D02* Y1353D01* X4838Y1381D01* X4929Y1565D02* X4985Y1621D01* Y2122D01* X5248Y2385D01* X5401D01* X5479Y2463D01* Y2593D01* X5673Y2787D01* Y2856D01* X5651Y2878D01* Y2910D01* X5671Y2930D01* Y2960D01* X5651Y2980D01* Y3011D01* X5879Y3239D01* Y3348D01* X5790Y3437D01* X5881Y3442D02* X5901Y3422D01* X5922Y3433D02* Y3083D01* X5751Y2912D01* Y2880D01* X5768Y2863D01* Y2730D01* X5669Y2631D01* Y2588D01* X5436Y2355D01* Y2310D01* X5387Y2261D01* X5356D01* X5075Y1980D01* Y1513D01* X5049Y1487D01* Y1447D01* X4866Y1319D02* X4745Y1198D01* X4596D01* X4519Y1275D01* Y1339D01* X4548Y1382D02* X4569Y1361D01* Y1304D01* X4615Y1258D01* Y1236D01* X4637Y1214D01* X4700D01* X4772Y1286D01* Y1422D01* X4746Y1448D01* X4682Y1572D02* X4602D01* X4058Y2116D01* X3256D01* X3231Y2141D01* X3122D01* X2926Y2337D01* Y2629D01* X2952Y2655D01* Y2755D01* X2975Y2778D01* Y2835D01* X3007Y2841D02* X3038D01* X3101Y2778D01* Y2622D01* X3083Y2604D01* X3071D01* X3031Y2564D01* Y2492D01* X3052Y2471D01* X3072D01* X3091Y2452D01* Y2429D01* X3139Y2381D01* X3335D01* X3359Y2357D01* X3379D01* X3402Y2380D01* X3500D01* X3570Y2310D01* X3738D01* X3803Y2375D01* X4663D01* X5016Y2728D01* X5272D01* X5377Y2833D01* Y2853D01* X5347Y2883D01* Y2910D01* X5370Y2933D01* Y2962D01* X5348Y2984D01* Y3014D01* X5371Y3037D01* Y3061D01* X5347Y3085D01* Y3164D01* X5439Y3256D01* Y4033D01* X5508Y4102D01* Y4150D01* X5721Y4363D01* Y4402D01* X5698Y4425D01* Y4464D01* X5735Y4501D01* Y4544D01* X5835D02* X5884D01* X5918Y4510D01* Y4481D01* X5899Y4462D01* Y4434D01* X5920Y4413D01* X5998Y4430D02* X6019Y4409D01* Y4353D01* X5912Y4246D01* Y4217D01* X5742Y4047D01* Y3202D01* X5601Y3061D01* Y3034D01* X5621Y3014D01* Y2981D01* X5599Y2959D01* Y2933D01* X5885Y2994D02* X5935D01* X5970Y3029D01* Y3061D01* X5951Y3080D01* Y3134D01* X5977Y3160D01* Y3440D01* X5942Y3676D02* X5925Y3659D01* Y3492D01* X5977Y3440D01* X5936Y3447D02* X5922Y3433D01* X5858Y3325D02* Y3344D01* X5763Y3439D01* Y3498D01* X5790Y3437D02* Y3715D01* X5974Y3899D01* Y4010D01* X5570Y4462D02* Y4434D01* X5534Y4398D01* Y4283D01* X5253Y4002D01* Y3390D01* X5226Y3363D01* Y3087D01* X5201Y3062D01* Y3030D01* X5220Y3011D01* Y2983D01* X5197Y2960D01* Y2934D01* X5222Y2909D01* Y2883D01* X5119Y2780D01* X4969D01* X4935Y2746D01* X4920D01* X4619Y2445D01* X3750D01* X3682Y2377D01* X3614D01* X3580Y2411D01* X3563D01* X3521Y2453D01* X3461D01* X3434Y2426D01* X3145D01* X3128Y2443D01* Y2518D01* X3127Y2519D01* Y2589D01* X3150Y2612D01* Y2663D01* X3126Y2687D01* X3062Y2786D02* Y2723D01* X3089Y2696D01* Y2631D01* X3074Y2616D01* X3066D01* X3018Y2568D01* Y2462D01* X3061Y2419D01* X3077D01* X3130Y2366D01* X3333D01* X3355Y2344D01* X3383D01* X3405Y2366D01* X3484D01* X3552Y2298D01* X3800D01* X3862Y2360D01* X4204D01* X4213Y2351D01* Y2339D01* X4220Y2332D01* X4527D01* X4532Y2327D01* X4670D01* X4683Y2340D01* Y2359D01* X5035Y2711D01* X5281D01* X5396Y2826D01* Y2854D01* X5423Y2881D01* Y2909D01* X5181Y2643D02* X4789Y2251D01* X4104D01* X4067Y2214D01* X3078D01* X2947Y2345D01* Y2629D01* X3026Y2708D01* X3050D01* X3067Y2643D02* Y2691D01* X3050Y2708D01* X3041Y2687D02* X2992Y2638D01* Y2374D01* X3044Y2322D01* X3096D01* X3109Y2309D01* X3491D01* X3532Y2268D01* X3895D01* X3925Y1947D02* X4033D01* X4168Y1812D01* X4147Y1803D02* X4025Y1925D01* X3911D01* X3898Y1938D01* X3830D01* X3812Y1961D02* X3835Y1984D01* Y2001D01* X3822Y2014D01* X3816D01* X3801Y2029D01* Y2045D01* X3812Y2056D01* X3836D01* X3857Y2035D01* X3874D01* X3826D02* Y2034D01* X3846Y2014D01* X4024D01* X4242Y1796D01* Y1571D01* X4231Y1560D01* X4267Y1571D02* Y1560D01* X4237Y1530D01* X4241Y1510D02* X4294Y1563D01* X4267Y1571D02* X4282Y1586D01* X4333D01* X4491Y1871D02* Y1989D01* X4660Y2158D01* X4604Y2159D02* X4118D01* X4092Y2185D01* X4029D01* X4011Y2167D01* X3147D01* X3130Y2184D01* X3161Y2460D02* X3375D01* X3414Y2499D01* X3570D01* X3609Y2460D01* X3684D01* X3713Y2489D01* X4543D01* X4614Y2560D01* X4581Y2587D02* X4504Y2510D01* X3695D01* X3657Y2472D01* X3622D01* X3578Y2516D01* X3403D01* X3373Y2486D01* X3176D01* X3150Y2501D02* Y2480D01* X3140Y2470D01* Y2449D01* X3151Y2438D01* X3419D01* X3462Y2481D01* X3560D01* X3606Y2435D01* Y2402D01* X3619Y2389D01* X3646D01* X3724Y2467D01* X4594D01* X4607Y2480D01* Y2498D01* X4624Y2515D01* X2326Y1277D02* X2362Y1313D01* Y1857D01* X2267Y1952D01* X1981D01* X1861Y2072D01* Y2282D01* X1842Y2301D01* Y2370D01* X1865Y2393D01* Y2567D01* X1898Y2600D01* Y3072D01* X1857Y3113D01* Y3638D01* X1777Y3718D01* Y3745D01* X1809Y3776D02* Y3718D01* X1878Y3649D01* Y3127D01* X1927Y3078D01* Y2199D01* X1906Y2178D01* Y2126D01* X2019Y2013D01* X2237D01* X2384Y1866D01* Y1253D01* X2448Y1189D01* X2497D01* X2596Y1288D02* X2497Y1189D01* X2558Y1214D02* X2669D01* X2694Y1189D01* X3690D01* X3712Y1211D01* X3790D01* X3822Y1179D01* X4416D01* X4470Y1233D01* Y1359D01* X4493Y1382D01* X4548D01* X4686Y1269D02* X4669Y1286D01* Y1430D01* X4007Y2092D01* X3918D01* X3924Y2035D02* X3902Y2057D01* X3853D01* X3841Y2069D01* X3806D01* X3767Y2092D02* X3710Y2035D01* Y1785D01* X3750Y1745D01* Y1718D01* X3920Y1548D01* X4083Y1557D02* Y1804D01* X4000Y1887D01* X3904D01* X3886Y1869D01* X3865D01* X3831Y1903D01* X3785D01* X3770Y1888D01* X3821Y1882D02* X3850Y1853D01* X3902D01* X3915Y1866D01* X3991D01* X4064Y1793D01* Y1547D01* X4121Y1490D01* X4252D01* X4325Y1563D01* X4333Y1586D02* X4356Y1563D01* X4388D02* X4312Y1639D01* Y1756D01* X3999Y2069D01* X3859D01* X3836Y2092D01* X3817D01* X3806Y2069D02* X3789Y2052D01* Y1986D01* X3776Y1973D01* X3754D01* X3736Y1955D01* Y1843D01* X3757Y1822D01* X3941D01* X3965Y1802D02* Y1393D01* X4120Y1238D01* Y1237D02* Y1238D01* X4160Y1213D02* X4184Y1237D01* X4310Y1272D02* X4046Y1536D01* Y1781D01* X3982Y1845D01* X3926D01* X3941Y1822D02* X3942Y1823D01* X3977D01* X4029Y1771D01* Y1488D01* X4288Y1229D01* Y1225D01* X4299Y1214D01* X4321D01* X4310Y1272D02* Y1235D01* X4321Y1214D02* X4340Y1233D01* X4373D02* X4341Y1201D01* X4069D01* X3920Y1350D01* Y1548D01* X3854Y1559D02* X3773Y1640D01* X3759Y1674D02* X3758Y1665D01* X3750Y1660D01* X3773Y1640D02* X3470D01* X3469D01* X3461Y1646D01* X3462Y1655D01* X3470Y1660D01* X3750D01* X3759Y1674D02* X3751Y1680D01* X3750D01* X3440D01* X3423Y1697D01* X3350Y1684D02* Y1576D01* X3498Y1428D01* X3500Y1500D02* X3499D01* X3498Y1428D02* Y1234D01* X3435Y1241D02* Y1393D01* X3414Y1414D01* Y1467D01* X3329Y1552D01* Y1743D01* X3277Y1795D01* Y1838D02* X3256Y1817D01* Y1786D01* X3316Y1726D01* Y1480D01* X3404Y1392D01* Y1241D01* X3341Y1242D02* Y1411D01* X3278Y1429D02* X3229Y1478D01* Y1604D01* X3253Y1629D02* Y1477D01* X3310Y1420D01* X3278Y1429D02* Y1239D01* X3310Y1242D02* Y1420D01* X3341Y1411D02* X3277Y1475D01* Y1648D01* X3276Y1682D02* X3301Y1657D01* Y1473D01* X3372Y1402D01* Y1268D01* X3246Y1238D02* X3210Y1274D01* Y1520D01* X3205Y1528D01* X3196Y1529D01* X3190Y1521D01* Y1520D01* Y1280D01* Y1279D01* X3184Y1271D01* X3175Y1272D01* X3170Y1280D01* Y1547D01* X3205Y1582D01* X3151Y1667D02* Y1539D01* X2931Y1319D01* Y1243D01* X2868Y1238D02* X2843Y1213D01* X2774Y1240D02* Y1244D01* X3130Y1600D01* Y1676D01* X3151Y1697D01* Y1810D01* X3184Y1843D01* X3109Y1812D02* X3083Y1838D01* Y1892D01* X3084Y1794D02* X3054Y1764D01* Y1720D01* X2821Y1487D01* Y1416D01* X2711Y1237D02* Y1266D01* X3099Y1654D01* Y1690D01* X3109Y1700D01* Y1812D01* X3130Y1800D02* Y1701D01* X3115Y1686D01* Y1625D01* X2742Y1252D01* Y1236D01* X2843Y1213D02* X2704D01* X2690Y1227D01* Y1285D01* X2821Y1416D01* X2650Y1414D02* Y1530D01* X2697Y1577D01* Y1800D01* X2744Y1847D01* X2729Y1860D02* X2680Y1811D01* Y1592D01* X2446Y1961D02* Y1988D01* X2468Y2010D01* Y2180D01* X2413Y2235D01* Y2362D01* X2312Y2463D01* Y2507D01* X2407Y2478D02* X2387Y2498D01* X2375D01* X2125Y2748D01* Y2915D01* X2095Y2945D01* Y3034D01* X2101Y3040D01* Y3314D01* X2095Y3320D01* Y3647D01* X2203Y3755D01* X2511D01* X2555Y3742D02* X2215D01* X2230Y3729D02* X2499D01* X2509Y3719D02* X2499Y3729D01* X2484Y3714D02* X2500Y3698D01* X2543D01* X2584Y3739D01* Y3773D01* X2643Y3832D01* X2738D01* X2833Y3737D01* X2876D01* X2953Y3814D01* X3202D01* X3252Y3764D01* X3477D01* X3566Y3675D01* X3663D01* X3686Y3652D01* Y3622D01* X3748Y3560D01* Y3486D01* X3727Y3498D02* X3736Y3507D01* Y3551D01* X3672Y3615D01* Y3649D01* X3588Y3697D02* X3552Y3733D01* Y3767D01* X3497Y3822D01* X3279D01* X3241Y3860D01* X2902D01* X2822Y3780D01* Y3779D01* X2828Y3724D02* X2882D01* X2947Y3789D01* X3199D01* X3236Y3752D01* X3469D01* X3558Y3663D01* X3658D01* X3672Y3649D01* X3793Y3718D02* X3773Y3698D01* Y3499D01* X3813Y3459D01* Y3423D01* X3791Y3401D01* X3741Y3367D02* X3787D01* X3825Y3405D01* Y3487D01* X3785Y3527D01* Y3679D01* X3818Y3712D01* Y3729D01* X3801Y3746D01* X3794D01* X3756Y3784D01* Y3909D01* X3730Y3935D01* Y4203D01* X4270Y4743D01* Y4790D01* X4355Y4875D01* X5397D01* X5582Y4690D01* X5689D01* X5735Y4644D02* X5689Y4690D01* X5635Y4644D02* Y4593D01* X5596Y4554D01* Y4534D01* X5620Y4510D01* Y4479D01* X5603Y4462D01* X5570D02* X5535Y4497D01* Y4544D01* X5500Y4532D02* Y4560D01* X5535Y4595D01* Y4644D02* Y4595D01* X5472Y4633D02* Y4690D01* X5299Y4863D01* X4371D01* X4291Y4783D01* Y4739D01* X3773Y4221D01* Y3827D01* X3841Y3759D01* Y3404D01* X3756Y3319D01* X3726D01* X3714Y3307D01* X3553D01* X3505Y3259D01* X3276D01* X3188Y3171D01* X3143D01* X3120Y3148D01* Y3137D01* X3031Y3048D01* Y2909D01* X3060Y2880D01* Y2855D01* X3030Y2878D02* X3019Y2889D01* Y3053D01* X3098Y3132D01* Y3143D01* X3146Y3191D01* Y3233D01* X3184Y3271D01* X3297D01* X3328Y3302D01* X3423D01* X3440Y3319D01* X3708D01* X3719Y3330D01* Y3345D01* X3741Y3367D01* X3748Y3392D02* X3720Y3420D01* X3638D01* X3625Y3433D01* Y3585D01* X3600Y3610D01* X3536D01* X3502Y3644D01* X3542Y3622D02* X3608D01* X3669Y3561D01* Y3462D01* X3647Y3440D01* Y3441D01* X3727Y3498D02* Y3476D01* X3738Y3465D01* X3772D01* X3792Y3445D01* X3743Y3440D02* X3715Y3468D01* Y3502D01* X3701Y3516D01* X3691D01* X3681Y3526D01* Y3571D01* X3610Y3642D01* X3561D01* X3463Y3740D01* X3306D01* X3286Y3720D01* Y3719D01* X3288D01* X3289Y3673D02* X3218D01* X3172Y3719D01* X2930D01* X2911Y3700D01* X2817D01* X2769Y3748D01* X2734D01* X2732Y3750D01* Y3690D01* X2639Y3597D01* X2602D01* X2564Y3635D01* X2524D01* X2489Y3600D01* X2490Y3580D02* X2354D01* X2327Y3553D01* X2361Y3566D02* X2501D01* X2540Y3605D01* X2558D01* X2616Y3547D01* X2745Y3389D02* X2911D01* X2930Y3408D01* Y3520D01* X2967Y3557D01* X3427D01* X3487Y3497D01* Y3480D01* X3527Y3440D01* X3514Y3482D02* Y3496D01* X3441Y3569D01* X3148D01* X3111Y3606D01* X2933D01* X2903Y3576D01* X2815D01* X2745Y3506D01* X2693Y3527D02* X2648D01* X2631Y3510D01* X2616Y3547D02* X2709D01* X2693Y3527D02* X2697Y3523D01* X2719D01* X2743Y3547D01* Y3576D01* X2769Y3602D01* X2911D01* X2928Y3619D01* X3174D01* X3177Y3622D01* X3209D01* X3291Y3648D02* X3310Y3629D01* X3450D01* X3516Y3563D01* Y3540D01* X3535Y3521D01* X3522Y4021D02* X3107D01* Y4064D02* X3080Y4091D01* X3025D01* X2987Y4129D01* X2792D01* X2675Y4012D01* X2506D01* X2428Y3934D01* X2360D01* X2397Y3955D02* X2495Y4053D01* X2635D01* X2736Y4154D01* X3045D01* X3063Y4178D02* X2618D01* X2532Y4092D01* X2464D01* X2335Y3963D01* X2307Y3934D02* Y3976D01* X2533Y4202D01* X3058D01* X3080Y4224D01* X3144D01* X3178Y4190D01* X3542D01* X3641Y4091D01* X3539Y4144D02* X3097D01* X3063Y4178D01* X3045Y4154D02* X3083Y4116D01* X3517D01* X3548Y4085D02* X3517Y4116D01* X3539Y4144D02* X3597Y4086D01* Y4043D01* X3696Y3938D02* X3672Y3962D01* Y4170D01* X4249Y4747D01* Y4798D01* X4339Y4888D01* X5498D01* X5577Y4809D01* X6982D01* X7110Y4681D01* X7104Y4519D02* Y4515D01* X6984Y4253D02* Y3135D01* X6921Y3072D01* Y2843D01* X6804Y2726D01* Y2361D01* X6825Y2340D01* Y2386D02* X6848Y2409D01* Y2534D01* X6858Y2544D01* Y2722D01* X7034Y2898D01* Y4251D01* X7115Y4141D02* X7124Y4150D01* X7154D01* X7164Y4140D01* Y2998D01* X6911Y2745D01* Y2544D01* X6892Y2525D01* Y2407D01* X6871Y2386D01* X6925D02* X6904Y2407D01* Y2488D01* X6961Y2545D01* Y2764D01* X7185Y2988D01* Y4229D01* X7119Y4295D01* Y4347D02* X7100D01* X7093Y4396D02* X7137D01* X7160Y4419D01* X7104Y4467D02* X7131D01* X7142Y4456D01* Y4426D01* X7160Y4419D02* Y4470D01* X7137Y4493D01* X7119D01* X7104Y4515D02* X6894Y4305D01* Y4279D01* X6857Y4242D01* X6846D01* X6807Y4203D01* Y3446D01* X6693Y3332D01* Y2439D01* X6717Y2415D01* X6733D01* X6747Y2401D01* Y2364D01* X6771Y2340D01* Y2386D02* Y2405D01* X6747Y2429D01* Y2716D01* X6886Y2855D01* Y3290D01* X6934Y3338D01* Y4251D01* X7003Y4320D01* Y4333D01* X7082Y4412D01* X7128D01* X7142Y4426D01* X7119Y4441D02* X7059D01* X6943Y4325D01* Y4298D01* X6881Y4236D01* Y3910D01* X6829Y3858D01* Y3300D01* X6837Y3292D01* Y3043D01* X6833Y3039D01* Y2861D01* X6705Y2733D01* Y2460D01* X6725Y2440D01* X6771D02* X6792Y2461D01* Y2511D01* X6760Y2543D01* Y2706D01* X6899Y2845D01* Y3116D01* X6960Y3177D01* Y4252D01* X7027Y4319D01* Y4330D01* X7093Y4396D01* X7104Y4373D02* X6984Y4253D01* X7009Y4256D02* X7100Y4347D01* X7104Y4321D02* X7034Y4251D01* X7009Y4256D02* Y3112D01* X6945Y3048D01* Y2838D01* X6816Y2709D01* Y2543D01* X6825Y2534D01* Y2440D01* X7104Y1920D02* X7130D01* X7164Y1886D01* Y1544D01* X7035Y1415D01* X7015D01* X6997Y1397D01* Y1366D01* X6971Y1340D01* X6925D02* Y1334D01* X6958Y1301D01* X7021D01* X7062Y1342D01* Y1396D01* X7202Y1536D01* Y1943D01* X7222Y1975D02* Y1533D01* X7077Y1388D01* Y1336D01* X7027Y1286D01* X6945D01* X6900Y1331D01* Y1448D01* X6914Y1462D01* X6949D01* X6971Y1440D01* X6925D02* X6948Y1417D01* Y1332D01* X6964Y1316D01* X6986D01* X6998Y1328D01* Y1348D01* X7013Y1363D01* X7035D01* X7049Y1377D01* Y1405D01* X7183Y1539D01* Y1924D01* X7222Y1975D02* X7131Y2066D01* X7104D01* Y2014D02* X7131D01* X7202Y1943D01* X7183Y1924D02* X7119Y1988D01* Y2279D02* X7140Y2258D01* Y2119D01* X7122Y2101D01* X7098D01* X7083Y2086D01* Y1609D01* X7037Y1563D01* X6994D01* X6971Y1540D01* Y1586D02* X7004Y1619D01* Y2199D01* X7047Y2242D01* Y2335D01* X7059Y2347D01* Y2384D01* X7100Y2425D01* X7119D01* Y2331D02* X7097D01* X7083Y2317D01* X7071Y2323D02* X7083Y2335D01* Y2368D01* X7106Y2391D01* X7133D01* X7152Y2410D01* Y2501D01* X7122Y2531D01* X7097D01* X7088Y2522D01* Y2475D01* X7109Y2454D01* X7120Y2482D02* X7140Y2462D01* Y2415D01* X7128Y2403D01* X7099D01* X7071Y2375D01* Y2340D01* X7059Y2328D01* X7083Y2317D02* Y2127D01* X7071Y2115D01* Y1632D01* X7025Y1586D01* Y1640D02* X7059Y1674D01* Y2144D01* X7071Y2156D01* Y2323D01* X7059Y2328D02* Y2182D01* X7046Y2169D01* Y1707D01* X7025Y1686D01* X7104Y1723D02* X7126D01* X7143Y1706D01* Y1545D01* X7111Y1513D01* X6916D01* X6898Y1495D01* Y1476D01* X6886Y1464D01* X6860D01* X6847Y1451D01* Y1362D01* X6825Y1340D01* X6925Y1640D02* X6949Y1664D01* Y1700D01* X6962Y1713D01* X6977D01* X6992Y1728D01* Y2211D01* X7004Y2223D01* Y2351D01* X7014Y2361D01* X7037D01* X7047Y2371D01* Y2499D01* X7119Y2571D01* X7069Y2595D02* Y2548D01* X7004Y2483D01* Y2370D01* X6979Y2345D01* Y2226D01* X6950Y2197D01* Y1761D01* X6971Y1740D01* X6925D02* X6904Y1761D01* Y2182D01* X6954Y2232D01* Y2338D01* X6992Y2376D01* Y2506D01* X7052Y2566D01* Y2597D01* X7104D02* X7132D01* X7140Y2605D01* Y2643D01* X7112Y2671D01* X7104Y2649D02* X7052Y2597D01* X7069Y2595D02* X7097Y2623D01* X7119D01* X7112Y2671D02* X7064D01* X6986Y2593D01* Y2532D01* X6948Y2494D01* Y2370D01* X6892Y2314D01* Y1761D01* X6871Y1740D01* X6495Y1594D02* X6448Y1547D01* Y1382D01* X6429Y1363D01* X6375Y1336D02* X6402Y1363D01* X6429D01* X6421Y1390D02* X6397Y1414D01* Y1503D01* X6359Y1541D01* X7012Y876D02* X7045Y843D01* X7072Y863D02* X7105D01* Y876D02* X7072D01* X7045D02* X7012Y843D01* Y786D02* Y759D01* X7018Y753D01* X7038D01* X7045Y759D01* X7012Y739D02* X7018Y733D01* X7038D01* X7045Y739D01* Y786D01* X7072Y773D02* X7105D01* X7072Y786D02* X7105D01* X7125Y883D02* X7138Y896D01* Y843D01* X7118D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7212Y849D01* Y869D01* X7205Y876D01* X7172D01* Y896D01* X7212D01* X7258Y869D02* X7232D01* X7225Y863D01* Y849D01* X7232Y843D01* X7258D01* X7265Y849D01* Y863D01* X7258Y869D01* X7265Y876D01* Y889D01* X7258Y896D01* X7232D01* X7225Y889D01* Y876D01* X7232Y869D01* X7225Y759D02* Y799D01* X7232Y806D01* X7258D01* X7265Y799D01* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y753D02* X7265Y806D01* X7298Y843D02* X7292Y849D01* X7298Y856D01* X7305Y849D01* X7298Y843D01* X7332Y849D02* X7338Y843D01* X7365D01* X7372Y849D01* Y869D01* X7365Y876D01* X7332D01* Y896D01* X7372D01* X7298Y766D02* X7305Y759D01* X7298Y753D01* X7292Y759D01* X7298Y766D01* X7332Y753D02* X7372Y806D01* X7365D02* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7385Y843D02* X7425Y896D01* X7418D02* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7518Y876D02* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7518Y876D02* X7512Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7458Y869D02* X7465Y876D01* X7472D01* X7478Y869D01* Y843D01* X7458D02* Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y806D02* X7385Y753D01* Y759D02* X7392Y753D01* X7418D01* X7425Y759D01* Y799D01* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7438Y753D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* X7465Y786D01* X7458Y779D02* Y753D01* X7465Y786D02* X7472D01* X7478Y779D01* Y753D01* X7492D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7512Y779D01* X7923Y1181D02* X7957Y1214D01* X7937Y1241D02* Y1274D01* X7923D02* Y1241D01* Y1214D02* X7957Y1181D01* X8013D02* X8040D01* X8047Y1188D01* Y1208D01* X8040Y1214D01* X8060Y1181D02* X8067Y1188D01* Y1208D01* X8060Y1214D01* X8013D01* Y1241D02* Y1274D01* X8027Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1288D02* Y1328D01* Y1348D02* Y1374D01* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7957Y1348D02* X7950Y1341D01* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1394D02* X7903Y1434D01* X7910D02* X7950D01* X7957Y1428D01* Y1401D01* X7950Y1394D01* X7910D01* X7903Y1401D01* Y1428D01* X7910Y1434D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* X8040Y1541D01* X8020D01* X8013Y1534D01* Y1501D01* X7993D01* Y1541D01* X7957Y1534D02* X7950Y1541D01* X7910D01* X7903Y1534D01* Y1541D02* X7957Y1501D01* X7950Y1474D02* X7943Y1468D01* X7950Y1461D01* X7957Y1468D01* X7950Y1474D01* X7903Y1534D02* Y1508D01* X7910Y1501D01* X7950D01* X7957Y1508D01* Y1534D01* Y1561D02* Y1588D01* X7950Y1594D01* X7910D01* X7903Y1588D01* Y1594D02* X7957Y1554D01* X7950D02* X7957Y1561D01* X7950Y1554D02* X7910D01* X7903Y1561D01* Y1588D01* X7930Y1608D02* X7923Y1614D01* Y1621D02* X7930Y1628D01* X7923Y1634D01* X7930Y1628D02* X7957D01* Y1608D02* X7923D01* Y1614D02* Y1621D01* Y1634D02* Y1641D01* X7930Y1648D01* X7957D01* Y1661D02* X7923D01* X7930D02* X7923Y1668D01* Y1674D01* X7930Y1681D02* X7957D01* Y1701D02* X7930D01* X7923Y1694D01* Y1688D01* X7930Y1681D01* X7923Y1674D01* X8013D02* X8020Y1681D01* X8013Y1688D01* Y1694D01* X8020Y1701D01* X8047D01* Y1681D02* X8020D01* X8013Y1674D02* Y1668D01* X8020Y1661D01* X8013D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* Y1621D02* Y1614D01* Y1608D02* X8047D01* Y1628D02* X8020D01* X8013Y1634D02* X8020Y1628D01* X8013Y1621D01* Y1614D02* X8020Y1608D01* X7993Y1588D02* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1561D01* Y1588D01* X8040Y1594D01* X8000D01* X7993Y1588D01* Y1594D02* X8047Y1554D01* X7661Y3047D02* X7622Y3008D01* X7326D01* X7294Y2976D01* X7256D01* X7232Y2952D01* Y2797D01* X7128Y2693D01* X7101D01* X7072Y2722D01* X7051D01* X7074Y2744D02* Y2805D01* X7213Y2944D01* Y2959D01* X7253Y2999D01* X7268D01* X7304Y3035D01* Y3052D01* X7338Y3086D01* X7357D01* X7387Y3116D01* Y3139D01* X7413Y3165D01* X7435D01* X7465Y3195D01* Y3216D01* X7492Y3243D01* X7512D01* X7544Y3275D01* Y3293D01* X7574Y3323D01* X7590D01* X7624Y3357D01* Y3404D01* X7661Y3441D01* X7937Y4269D02* Y4302D01* X7957Y4315D02* Y4355D01* Y4335D02* X7903D01* X7917Y4322D01* X7923Y4302D02* Y4269D01* Y4242D02* X7957Y4209D01* Y4242D02* X7923Y4209D01* X8013D02* X8040D01* X8047Y4215D01* Y4235D01* X8040Y4242D01* X8060Y4209D02* X8067Y4215D01* Y4235D01* X8060Y4242D01* X8013D01* Y4269D02* Y4302D01* X8027Y4269D02* Y4302D01* X8040Y4369D02* X8047Y4375D01* Y4402D01* X8040Y4409D01* X8000D01* X7993Y4402D01* Y4375D01* X8000Y4369D01* X8013D01* X8020Y4375D01* Y4402D01* X8013Y4409D01* X8000Y4422D02* X7993Y4429D01* Y4455D01* X8000Y4462D01* X8013D01* X8020Y4455D01* Y4429D01* X8013Y4422D01* X8000D01* X8020Y4429D02* X8027Y4422D01* X8040D01* X8047Y4429D01* Y4455D01* X8040Y4462D01* X8027D01* X8020Y4455D01* X8040Y4502D02* X8047Y4495D01* X8040Y4489D01* X8033Y4495D01* X8040Y4502D01* Y4529D02* X8047Y4535D01* Y4562D01* X7993Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* X8040Y4582D02* X8047Y4589D01* X8040Y4582D02* X8000D01* X7993Y4589D01* Y4615D01* X8000Y4622D01* X8040D01* X8047Y4615D01* Y4589D01* Y4582D02* X7993Y4622D01* X7512Y5121D02* X7518Y5128D01* X7525D01* X7532Y5121D01* Y5094D01* X7512D02* Y5121D01* X7505Y5128D01* X7498D01* X7492Y5121D01* Y5128D02* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5094D02* Y5121D01* X7465Y5128D02* X7458Y5121D01* X7452Y5128D01* X7445D01* X7438Y5121D01* Y5128D02* Y5094D01* X7418Y5058D02* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7425D02* X7385Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D01* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7492Y5004D02* Y5038D01* Y5031D02* X7498Y5038D01* X7505D01* X7512Y5031D01* X7518Y5038D01* X7512Y5031D02* Y5004D01* X7532D02* Y5031D01* X7525Y5038D01* X7518D01* X7298Y5004D02* X7292Y5011D01* X7298Y5018D01* X7305Y5011D01* X7298Y5004D01* X7332Y5011D02* Y5051D01* X7338Y5058D01* X7365D01* X7372Y5051D01* Y5011D01* X7365Y5004D01* X7338D01* X7332Y5011D01* Y5004D02* X7372Y5058D01* X7385Y5094D02* X7425Y5148D01* X7418D02* X7425Y5141D01* Y5101D01* X7418Y5094D01* X7392D01* X7385Y5101D01* Y5141D01* X7392Y5148D01* X7418D01* X7372D02* X7332D01* Y5128D01* X7365D01* X7372Y5121D01* Y5101D01* X7365Y5094D01* X7338D01* X7332Y5101D01* X7298Y5094D02* X7305Y5101D01* X7298Y5108D01* X7292Y5101D01* X7298Y5094D01* X7258Y5121D02* X7232D01* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7265Y5141D01* Y5128D01* X7258Y5121D01* X7265Y5114D01* Y5101D01* X7258Y5094D01* X7232D01* X7225Y5101D01* Y5114D01* X7232Y5121D01* X7212Y5148D02* X7172D01* Y5128D01* X7205D01* X7212Y5121D01* Y5101D01* X7205Y5094D01* X7178D01* X7172Y5101D01* X7158Y5094D02* X7118D01* X7138D02* Y5148D01* X7125Y5134D01* X7012Y5128D02* X7045Y5094D01* X7072Y5114D02* X7105D01* Y5128D02* X7072D01* X7045D02* X7012Y5094D01* Y5038D02* Y5011D01* X7018Y5004D01* X7038D01* X7045Y5011D01* X7072Y5024D02* X7105D01* X7118Y5004D02* X7158D01* X7172Y5011D02* Y5051D01* X7178Y5058D01* X7205D01* X7212Y5051D01* Y5011D01* X7205Y5004D01* X7178D01* X7232D02* X7225Y5011D01* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225D02* X7265Y5058D01* X7212D02* X7172Y5004D01* Y5011D02* X7178Y5004D01* X7138D02* Y5058D01* X7125Y5044D01* X7105Y5038D02* X7072D01* X7045D02* Y4991D01* X7038Y4984D01* X7018D01* X7012Y4991D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* X7937Y4369D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4429D02* Y4455D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* X7957Y4455D02* X7950Y4462D01* X7910D01* X7903Y4455D01* Y4462D02* X7957Y4422D01* Y4429D02* X7950Y4422D01* X7910D01* X7903Y4429D01* Y4455D01* X7957Y4529D02* X7903Y4569D01* X7910D02* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7957Y4582D02* X7903Y4622D01* X7910D02* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7923Y4649D02* X7930Y4655D01* X7923Y4662D01* Y4669D01* X7930Y4675D01* X7957D01* Y4655D02* X7930D01* X7923Y4649D02* Y4642D01* X7930Y4635D01* X7923D02* X7957D01* X7930Y4689D02* X7923Y4695D01* Y4702D02* X7930Y4709D01* X7923Y4715D01* X7930Y4709D02* X7957D01* Y4689D02* X7923D01* Y4695D02* Y4702D01* Y4715D02* Y4722D01* X7930Y4729D01* X7957D01* X8047D02* X8020D01* X8013Y4722D01* Y4715D01* Y4702D02* X8020Y4709D01* X8013Y4715D01* X8020Y4709D02* X8047D01* X8013Y4702D02* Y4695D01* X8020Y4689D01* X8013D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8020Y4655D01* X8047D02* X8020D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X2148Y4773D02* D03* X2092Y4767D02* D03* X2014Y4651D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1950Y4222D02* D03* Y4156D02* D03* X2018Y4045D02* D03* X2061Y4142D02* D03* X2124Y4218D02* D03* X2119Y4359D02* D03* X2223Y4425D02* D03* X2580Y4311D02* D03* X2511Y4345D02* D03* X2514Y4265D02* D03* X2581Y4227D02* D03* X2683Y4228D02* D03* X2684Y4304D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2786Y4848D02* D03* X2853Y4849D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3137D02* D03* X3199Y4847D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3361Y4671D02* D03* X3331Y4670D02* D03* X3286Y4659D02* D03* X3250Y4646D02* D03* X3236Y4673D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3034Y4657D02* D03* X3048Y4538D02* D03* Y4498D02* D03* X3050Y4328D02* D03* X3112Y4199D02* D03* X3109Y4165D02* D03* X3202D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3251Y4089D02* D03* X3297Y4095D02* D03* X3347Y3943D02* D03* X3286Y3939D02* D03* X3244Y3894D02* D03* X3246Y3815D02* D03* X3267Y3788D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X2930Y3929D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2997Y4044D02* D03* X2954Y4046D02* D03* X2952Y3996D02* D03* X2945Y4089D02* D03* X2969Y4108D02* D03* X3025Y4130D02* D03* X2934Y4231D02* D03* X2902Y4301D02* D03* X2871Y4302D02* D03* X2883Y4465D02* D03* X2940Y4479D02* D03* X2906Y4532D02* D03* X2873D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X2508Y4117D02* D03* X2608Y4118D02* D03* X2658Y4119D02* D03* X2689Y4063D02* D03* X2736Y4010D02* D03* X2804Y4013D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2743Y3892D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2778Y3579D02* D03* X2819Y3537D02* D03* X2818Y3477D02* D03* X2819Y3507D02* D03* X2745Y3506D02* D03* X2709Y3547D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2629Y3430D02* D03* Y3468D02* D03* X2664D02* D03* X2667Y3430D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2556Y3504D02* D03* X2592Y3505D02* D03* X2587Y3467D02* D03* X2556Y3464D02* D03* X2515Y3462D02* D03* X2514Y3424D02* D03* Y3387D02* D03* X2550Y3390D02* D03* X2556Y3425D02* D03* X2587Y3429D02* D03* X2590Y3351D02* D03* X2589Y3308D02* D03* X2588Y3272D02* D03* X2630Y3271D02* D03* X2672Y3269D02* D03* X2714Y3268D02* D03* X2710Y3304D02* D03* X2746Y3310D02* D03* X2748Y3268D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* Y3109D02* D03* X2745Y3074D02* D03* X2718Y2979D02* D03* X2636Y2978D02* D03* X2585Y2979D02* D03* X2555Y2912D02* D03* X2570Y2867D02* D03* X2698Y2784D02* D03* X2757D02* D03* X2788D02* D03* X2825D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* Y2839D02* D03* X3291Y2882D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3562Y2688D02* D03* X3659Y3191D02* D03* X3601Y3154D02* D03* X3592Y3232D02* D03* X3594Y3286D02* D03* X3644D02* D03* X3696D02* D03* X3745Y3285D02* D03* X3864Y3235D02* D03* X3875Y3169D02* D03* X3981Y3176D02* D03* X4004Y3122D02* D03* X3868Y3112D02* D03* X3788Y3128D02* D03* X3688Y3027D02* D03* X3628Y2967D02* D03* X3492Y2978D02* D03* X3413Y3035D02* D03* X3326D02* D03* X3276Y3033D02* D03* X3371Y3139D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3542Y3554D02* D03* X3548Y3587D02* D03* X3591Y3589D02* D03* Y3548D02* D03* Y3497D02* D03* X3545Y3485D02* D03* Y3440D02* D03* X3590D02* D03* X3595Y3384D02* D03* X3590Y3341D02* D03* X3541Y3340D02* D03* X3545Y3386D02* D03* X3393Y3343D02* D03* X3351D02* D03* X3293Y3339D02* D03* X3247Y3340D02* D03* X3287Y3293D02* D03* X3245Y3292D02* D03* X3196Y3296D02* D03* X3146Y3286D02* D03* X3174Y3231D02* D03* X3202Y3217D02* D03* X3159Y3138D02* D03* X3119Y2969D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X2947Y2928D02* D03* X2875Y2885D02* D03* Y2834D02* D03* X2829Y2859D02* D03* X2875Y2785D02* D03* X2921Y2779D02* D03* X2925Y2735D02* D03* X2872Y2732D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X2875Y2636D02* D03* X2823Y2634D02* D03* X2824Y2685D02* D03* X2761Y2681D02* D03* X2699Y2671D02* D03* X2599Y2694D02* D03* X2600Y2658D02* D03* X2598Y2623D02* D03* X2599Y2534D02* D03* X2603Y2472D02* D03* X2601Y2427D02* D03* X2604Y2393D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2704Y2555D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2093Y2676D02* D03* X2236Y2788D02* D03* X2178Y2786D02* D03* X2202Y2890D02* D03* X2261Y2894D02* D03* X2260Y2965D02* D03* X2224Y3044D02* D03* X2190Y3009D02* D03* X2131Y3010D02* D03* X2102Y2896D02* D03* X2104Y2818D02* D03* X2026Y2841D02* D03* X2039Y2790D02* D03* X1991Y2780D02* D03* X1861Y2625D02* D03* X1860Y2657D02* D03* X1832Y2771D02* D03* X1784Y2778D02* D03* X1788Y2820D02* D03* X1689Y2381D02* D03* X1738Y2507D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1901Y2550D02* D03* X1902Y2484D02* D03* X1904Y2445D02* D03* X1902Y2413D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1903Y2312D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1973Y2094D02* D03* X1902Y2092D02* D03* X2013Y2094D02* D03* X2032Y2183D02* D03* X2030Y2222D02* D03* X1999D02* D03* X1998Y2292D02* D03* X1990Y2335D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2213Y2184D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2280Y2095D02* D03* X2327Y2096D02* D03* X2377Y2061D02* D03* X2374Y2095D02* D03* X2413Y2093D02* D03* X2505Y2091D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2327Y1830D02* D03* X2265Y1915D02* D03* X2201Y1916D02* D03* X2188Y1812D02* D03* X2187Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* X2130Y1679D02* D03* X2051Y1736D02* D03* X2091Y1756D02* D03* X2093Y1834D02* D03* X2027Y1915D02* D03* X1929Y1929D02* D03* X1877Y1915D02* D03* X1825Y1920D02* D03* X1854Y1876D02* D03* X1878Y1848D02* D03* X1646Y1817D02* D03* X1692Y1826D02* D03* X1698Y1788D02* D03* X1781Y1918D02* D03* X1677Y2025D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2280Y2212D02* D03* X2303Y2180D02* D03* X2332Y2184D02* D03* X2385Y2187D02* D03* X2386Y2243D02* D03* X2304Y2311D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2495Y2284D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2479Y2248D02* D03* X2501Y2225D02* D03* X2481Y2482D02* D03* X2482Y2531D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2463Y2790D02* D03* X2497D02* D03* X2522Y2857D02* D03* X2500Y2899D02* D03* X2473Y2873D02* D03* X2441Y2903D02* D03* X2411Y2885D02* D03* X2397Y2982D02* D03* X2445Y2980D02* D03* X2468Y3048D02* D03* X2530Y3047D02* D03* X2561Y3053D02* D03* X2546Y3079D02* D03* X2549Y3114D02* D03* X2470D02* D03* X2471Y3154D02* D03* X2274Y3153D02* D03* X2311Y3114D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2354Y3114D02* D03* Y3153D02* D03* X2390Y3193D02* D03* X2433Y3231D02* D03* X2435Y3265D02* D03* X2391D02* D03* X2354Y3231D02* D03* X2356Y3265D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2356Y3388D02* D03* X2391Y3391D02* D03* Y3428D02* D03* X2357Y3424D02* D03* Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2312Y3469D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2318Y3578D02* D03* X2333Y3637D02* D03* X2272Y3631D02* D03* X2119Y3641D02* D03* X2117Y3518D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* Y3364D02* D03* X2396Y3638D02* D03* X2454D02* D03* X2485Y3626D02* D03* X2551Y3582D02* D03* X2550Y3548D02* D03* X2512Y3547D02* D03* X2470Y3545D02* D03* X2472Y3507D02* D03* X2433D02* D03* X2390D02* D03* X2357Y3502D02* D03* Y3466D02* D03* X2390Y3468D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2472Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2472D02* D03* X2514Y3308D02* D03* Y3345D02* D03* X2472D02* D03* X2438Y3344D02* D03* Y3307D02* D03* X2472Y3308D02* D03* Y3263D02* D03* Y3230D02* D03* X2514Y3236D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2591Y3227D02* D03* X2629D02* D03* Y3192D02* D03* X2672Y3226D02* D03* Y3191D02* D03* X2673Y3147D02* D03* X2672Y3111D02* D03* Y3069D02* D03* X2617Y3067D02* D03* X2629Y3114D02* D03* Y3152D02* D03* X2587D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2899Y3410D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2898Y3505D02* D03* X2901Y3537D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* X3096D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3251Y3621D02* D03* X3282Y3622D02* D03* X3344Y3602D02* D03* X3392Y3604D02* D03* X3441D02* D03* X3445Y3670D02* D03* Y3719D02* D03* X3395D02* D03* X3394Y3670D02* D03* X3345Y3672D02* D03* X3342Y3719D02* D03* X3288D02* D03* X3206Y3720D02* D03* X3248Y3486D02* D03* X3293D02* D03* X3288Y3442D02* D03* X3354D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3500Y3383D02* D03* X3491Y3340D02* D03* X3498Y3286D02* D03* X3443D02* D03* X3397Y3280D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3393D02* D03* X3350Y3387D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X3192Y3340D02* D03* X3144D02* D03* X3113Y3242D02* D03* X3092Y3220D02* D03* X3061Y3219D02* D03* X3003Y3163D02* D03* X2955Y3210D02* D03* X2994Y3286D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3009Y3443D02* D03* X3051D02* D03* X3043Y3494D02* D03* X2994Y3531D02* D03* X3007Y3495D02* D03* X2965Y3492D02* D03* X2892Y3628D02* D03* X2896Y3658D02* D03* X2939Y3669D02* D03* X2954Y3643D02* D03* X2992Y3640D02* D03* X2998Y3684D02* D03* X3047D02* D03* Y3640D02* D03* X3092D02* D03* X3095Y3684D02* D03* X3133Y3744D02* D03* X3093Y3747D02* D03* X3047Y3740D02* D03* X2992D02* D03* X2951Y3742D02* D03* X2882Y3779D02* D03* X2855Y3758D02* D03* X2822Y3779D02* D03* X2674Y3743D02* D03* X2638Y3770D02* D03* X2584Y3773D02* D03* X2615Y3742D02* D03* X2610Y3709D02* D03* X2612Y3651D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2525Y3938D02* D03* X2397Y3955D02* D03* X2360Y3934D02* D03* X2335Y3963D02* D03* X2307Y3934D02* D03* X2273Y3962D02* D03* X2036Y3887D02* D03* X1926Y3896D02* D03* X1809Y3776D02* D03* X1777Y3745D02* D03* X1729Y3706D02* D03* X1978Y1562D02* D03* X2015Y1467D02* D03* X1970Y1398D02* D03* X2013Y1332D02* D03* X2187Y1381D02* D03* X2189Y1345D02* D03* X2186Y1283D02* D03* X2091Y1245D02* D03* X2188Y1243D02* D03* X2164Y1157D02* D03* X2315Y1193D02* D03* X2326Y1277D02* D03* X2314Y1312D02* D03* X2337Y1362D02* D03* X2315Y1413D02* D03* X2314Y1462D02* D03* X2168Y1466D02* D03* X2187Y1512D02* D03* Y1562D02* D03* X2188Y1612D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2876Y1831D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2767Y1679D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2910Y1671D02* D03* X2861Y1669D02* D03* X3083Y1892D02* D03* X3126Y1887D02* D03* X3121Y1938D02* D03* X3177Y1937D02* D03* X3173Y1983D02* D03* X3227D02* D03* X3226Y2040D02* D03* X3224Y2109D02* D03* X3268Y2142D02* D03* X3272Y2188D02* D03* X3322D02* D03* X3318Y2142D02* D03* X3316Y2244D02* D03* X3322Y2288D02* D03* X3318Y2342D02* D03* X3268D02* D03* X3272Y2288D02* D03* X3266Y2244D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3057Y2297D02* D03* X3067Y2343D02* D03* Y2393D02* D03* Y2443D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3064Y2544D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3132Y2728D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3232Y2592D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3379Y2685D02* D03* X3380Y2730D02* D03* X3425Y2736D02* D03* X3428Y2690D02* D03* X3421Y2640D02* D03* X3379Y2633D02* D03* X3475Y2645D02* D03* X3472Y2602D02* D03* X3533Y2539D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3413Y2467D02* D03* X3478Y2430D02* D03* X3667Y2343D02* D03* X3571Y2342D02* D03* X3627Y2411D02* D03* X3632Y2439D02* D03* X3573Y2436D02* D03* X3552Y2459D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3583Y2539D02* D03* X3625Y2597D02* D03* X3623Y2635D02* D03* X3674Y2733D02* D03* X3767Y2727D02* D03* X3817Y2543D02* D03* Y2348D02* D03* X3725Y2247D02* D03* X3767Y2193D02* D03* X3817D02* D03* X3767Y2092D02* D03* X3817D02* D03* X3866D02* D03* X3918D02* D03* X3924Y2035D02* D03* X3830Y1938D02* D03* X3821Y1882D02* D03* X3876Y1893D02* D03* X3925Y1947D02* D03* X3872Y1993D02* D03* X3874Y2035D02* D03* X3826D02* D03* X3812Y1993D02* D03* X3767Y1994D02* D03* X3770Y1940D02* D03* Y1888D02* D03* X3767Y1843D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X3917Y1693D02* D03* X3867Y1743D02* D03* X3824Y1736D02* D03* X3717Y1743D02* D03* X3621Y1789D02* D03* X3623Y1831D02* D03* X3627Y1893D02* D03* X3633Y1943D02* D03* X3583D02* D03* X3675Y1935D02* D03* X3667Y1993D02* D03* X3633Y2093D02* D03* Y2143D02* D03* X3577Y2141D02* D03* X3544Y2137D02* D03* X3468Y2142D02* D03* X3472Y2188D02* D03* X3466Y2244D02* D03* X3472Y2288D02* D03* X3468Y2342D02* D03* X3418D02* D03* X3368Y2378D02* D03* X3422Y2288D02* D03* X3416Y2244D02* D03* X3366D02* D03* X3372Y2288D02* D03* Y2188D02* D03* X3368Y2142D02* D03* X3418D02* D03* X3422Y2188D02* D03* X3404Y1986D02* D03* X3434Y1990D02* D03* X3499Y2030D02* D03* X3533Y1943D02* D03* X3483D02* D03* X3433D02* D03* X3383Y1893D02* D03* X3381Y1789D02* D03* X3419Y1828D02* D03* X3489Y1738D02* D03* X3423Y1697D02* D03* X3350Y1684D02* D03* X3385Y1636D02* D03* X3390Y1579D02* D03* X3253Y1629D02* D03* X3277Y1648D02* D03* X3276Y1682D02* D03* X3275Y1735D02* D03* X3277Y1795D02* D03* Y1838D02* D03* X3184Y1843D02* D03* X3173Y1785D02* D03* X3130Y1800D02* D03* X3084Y1794D02* D03* X3075Y1735D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3231Y1446D02* D03* X3105D02* D03* X3010Y1443D02* D03* X2853D02* D03* X2764Y1441D02* D03* X2650Y1414D02* D03* X2618Y1435D02* D03* X2537Y1427D02* D03* X2471Y1412D02* D03* X2468Y1362D02* D03* X2472Y1312D02* D03* X2480Y1262D02* D03* X2476Y1210D02* D03* X2558Y1214D02* D03* X2596Y1288D02* D03* X2647Y1189D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2837Y1237D02* D03* X2868Y1238D02* D03* X2931Y1243D02* D03* X2994Y1233D02* D03* X3089Y1234D02* D03* X3215Y1235D02* D03* X3246Y1238D02* D03* X3278Y1239D02* D03* X3310Y1242D02* D03* X5018Y1446D02* D03* X5049Y1447D02* D03* X5081Y1439D02* D03* X5141Y1510D02* D03* X5253Y1622D02* D03* Y1697D02* D03* Y1772D02* D03* X5255Y1830D02* D03* X5220D02* D03* Y1865D02* D03* X5255D02* D03* X5270Y1910D02* D03* X5360D02* D03* Y1865D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5758Y1910D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X6021Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X5921Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X6021D02* D03* Y1390D02* D03* X6075Y1436D02* D03* X6121Y1490D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* Y1736D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* X6925Y1486D02* D03* X6971D02* D03* Y1440D02* D03* X6925D02* D03* Y1386D02* D03* Y1340D02* D03* X6971D02* D03* Y1386D02* D03* X7025Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* X6925Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X7025D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* X6971D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X7267Y1185D02* D03* X7274Y1234D02* D03* X7267Y1331D02* D03* X7258Y1417D02* D03* Y1449D02* D03* Y1480D02* D03* Y1512D02* D03* X7267Y1599D02* D03* Y1744D02* D03* Y1890D02* D03* Y2035D02* D03* Y2181D02* D03* Y2327D02* D03* Y2473D02* D03* Y2618D02* D03* X6970Y2865D02* D03* X6865D02* D03* X6761Y2917D02* D03* Y2955D02* D03* Y2991D02* D03* X6762Y3030D02* D03* X6719D02* D03* X6720Y2991D02* D03* X6725Y3105D02* D03* X6670D02* D03* X6620D02* D03* X6570D02* D03* X6671Y2991D02* D03* Y3030D02* D03* X6621D02* D03* Y2990D02* D03* Y2875D02* D03* X6671Y2876D02* D03* X6722Y2877D02* D03* X6760D02* D03* X6571Y3270D02* D03* X6570Y3230D02* D03* X6620D02* D03* X6621Y3270D02* D03* X6671D02* D03* X6670Y3230D02* D03* X6725D02* D03* X6726Y3270D02* D03* X6920Y3230D02* D03* X6921Y3270D02* D03* X6816D02* D03* X6776D02* D03* X6775Y3230D02* D03* X6815D02* D03* X6776Y3185D02* D03* Y3145D02* D03* X6775Y3105D02* D03* X6815D02* D03* X6865Y3030D02* D03* Y2990D02* D03* X6970D02* D03* Y3030D02* D03* X6920Y3105D02* D03* X7104Y3062D02* D03* X7119Y3036D02* D03* X7104Y3010D02* D03* X7119Y2984D02* D03* X7104Y3156D02* D03* X7119Y3130D02* D03* X7060Y3105D02* D03* X7061Y3145D02* D03* Y3185D02* D03* X7104Y3208D02* D03* X7060Y3230D02* D03* X7061Y3270D02* D03* X7119Y3275D02* D03* X7104Y3301D02* D03* X7119Y3327D02* D03* X7104Y3353D02* D03* X7120Y3428D02* D03* X7097Y3459D02* D03* X7113Y3487D02* D03* X7097Y3513D02* D03* X7104Y3543D02* D03* X7141Y3544D02* D03* X7119Y3644D02* D03* X7126Y3679D02* D03* X7119Y3712D02* D03* X7104Y3738D02* D03* X7119Y3764D02* D03* X7104Y3790D02* D03* X7119Y3858D02* D03* X7104Y3884D02* D03* X7119Y3910D02* D03* X7094Y3927D02* D03* X6910Y4005D02* D03* X6723Y3981D02* D03* X6576Y3943D02* D03* X6591Y3769D02* D03* X6644Y3681D02* D03* Y3649D02* D03* Y3619D02* D03* X6690Y3681D02* D03* X6691Y3649D02* D03* Y3618D02* D03* X6736D02* D03* X6735Y3649D02* D03* X6734Y3681D02* D03* X6741Y3737D02* D03* X6899Y3621D02* D03* Y3651D02* D03* Y3681D02* D03* Y3711D02* D03* Y3741D02* D03* X6852D02* D03* Y3710D02* D03* Y3680D02* D03* Y3650D02* D03* X6851Y3621D02* D03* X6850Y3471D02* D03* X7267Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* Y4051D02* D03* Y4197D02* D03* Y4343D02* D03* Y4488D02* D03* Y4634D02* D03* X7244Y4764D02* D03* X7127D02* D03* X7110Y4681D02* D03* X7119Y4634D02* D03* X7042Y4718D02* D03* X7000D02* D03* X6955Y4717D02* D03* X6903Y4718D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6800D02* D03* Y4850D02* D03* X6750D02* D03* Y4888D02* D03* X6700D02* D03* Y4850D02* D03* X6656Y4849D02* D03* Y4889D02* D03* X6612Y4888D02* D03* Y4850D02* D03* X6613Y4643D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6873Y4557D02* D03* X6850Y4643D02* D03* X6800D02* D03* X6850Y4718D02* D03* X6800D02* D03* X6750D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6440Y4780D02* D03* X6322D02* D03* X6574Y4365D02* D03* X6704Y4282D02* D03* X6656Y4220D02* D03* X6752Y4189D02* D03* X6850Y4213D02* D03* X6854Y4272D02* D03* X6906Y4217D02* D03* X6976Y4323D02* D03* X6992Y4433D02* D03* X6991Y4592D02* D03* X7083Y4560D02* D03* X7104Y4519D02* D03* X7119Y4493D02* D03* X7104Y4467D02* D03* X7119Y4441D02* D03* X7104Y4373D02* D03* X7119Y4347D02* D03* X7104Y4321D02* D03* X7119Y4295D02* D03* X7117Y4244D02* D03* X7119Y4212D02* D03* X7143Y4126D02* D03* X7115Y4141D02* D03* X7104Y4112D02* D03* X7118Y4085D02* D03* X7104Y4058D02* D03* X7115Y4030D02* D03* X7267Y3323D02* D03* Y3177D02* D03* X7293Y3132D02* D03* X7267Y3031D02* D03* X7258Y2945D02* D03* X7189Y2952D02* D03* X7135Y2906D02* D03* X7189Y2889D02* D03* Y2843D02* D03* X7258Y2913D02* D03* Y2882D02* D03* Y2850D02* D03* X7267Y2764D02* D03* X7104Y2794D02* D03* X7119Y2768D02* D03* Y2716D02* D03* X7104Y2742D02* D03* X7074Y2744D02* D03* X7051Y2722D02* D03* X7052Y2692D02* D03* X6939Y2698D02* D03* X6885Y2696D02* D03* X6837Y2695D02* D03* X6781Y2693D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* X6781Y2565D02* D03* X6837D02* D03* X6885Y2564D02* D03* X6934D02* D03* X7018Y2569D02* D03* X7104Y2597D02* D03* Y2649D02* D03* X7119Y2623D02* D03* Y2571D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X6871Y1740D02* D03* Y1786D02* D03* X6925D02* D03* X6971D02* D03* Y1740D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X7025D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6571D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6450Y2620D02* D03* Y2580D02* D03* X6500Y2540D02* D03* X6450D02* D03* Y2500D02* D03* X6475Y2436D02* D03* X6410Y2480D02* D03* X6370D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6321D02* D03* X6275D02* D03* X6221D02* D03* X6175D02* D03* Y2336D02* D03* X6075D02* D03* X6021Y2290D02* D03* X5975D02* D03* Y2336D02* D03* X5921Y2290D02* D03* Y2336D02* D03* Y2390D02* D03* X5975D02* D03* Y2436D02* D03* X6050Y2480D02* D03* Y2520D02* D03* Y2560D02* D03* X6100D02* D03* Y2520D02* D03* Y2480D02* D03* X6150D02* D03* X6195D02* D03* X6240D02* D03* X6280D02* D03* X6320D02* D03* Y2520D02* D03* X6280D02* D03* X6240D02* D03* Y2560D02* D03* X6280D02* D03* X6320D02* D03* X6363Y2634D02* D03* X6296D02* D03* X6182Y2787D02* D03* X5975Y2769D02* D03* X5625D02* D03* X5645Y2605D02* D03* X5690D02* D03* X5600D02* D03* X5450D02* D03* X5275Y2769D02* D03* X5215Y2605D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4835Y2014D02* D03* X4804D02* D03* X4771D02* D03* X4646D02* D03* X4615D02* D03* X4770Y1905D02* D03* X4815D02* D03* X4860D02* D03* X4905D02* D03* X4945D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* X5185D02* D03* Y1865D02* D03* X5150D02* D03* X5087Y2128D02* D03* X5124D02* D03* X5162D02* D03* X5240Y2220D02* D03* Y2255D02* D03* Y2290D02* D03* X5365Y2321D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5754Y2189D02* D03* X5704D02* D03* X5717Y2128D02* D03* X5681D02* D03* X5645D02* D03* X5654Y2189D02* D03* X5625Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5654Y2321D02* D03* X5704D02* D03* X5754D02* D03* X5803Y2324D02* D03* X5832Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5921Y2236D02* D03* Y2190D02* D03* X5975D02* D03* Y2236D02* D03* X6021D02* D03* Y2190D02* D03* X6075D02* D03* Y2236D02* D03* X6214Y2109D02* D03* X6135Y2077D02* D03* Y2033D02* D03* X6075Y2136D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X6021Y1936D02* D03* Y1890D02* D03* Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5975Y1936D02* D03* Y1890D02* D03* X5921D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2090D02* D03* Y2136D02* D03* X5921D02* D03* X6021D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* X5975D02* D03* Y2036D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* X6275Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5783Y1263D02* D03* X5736D02* D03* Y1139D02* D03* X5783D02* D03* X5530Y1380D02* D03* X5560D02* D03* X5588D02* D03* X5630D02* D03* X5660D02* D03* X5688D02* D03* Y1265D02* D03* X5658D02* D03* X5630D02* D03* X5588D02* D03* X5558D02* D03* X5530D02* D03* X5410Y1289D02* D03* X5392Y1263D02* D03* X5344D02* D03* X5392Y1139D02* D03* X5344D02* D03* X5262Y1146D02* D03* X5211Y1277D02* D03* X5204Y1213D02* D03* X5065Y1234D02* D03* X5033Y1236D02* D03* X5001Y1234D02* D03* X4845Y1233D02* D03* X4869Y1387D02* D03* X4860Y1446D02* D03* X4929Y1565D02* D03* X4874Y1572D02* D03* X4771Y1564D02* D03* X4682Y1572D02* D03* X4420Y1446D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4725D02* D03* X4252Y1975D02* D03* X4359Y2014D02* D03* X4281Y2108D02* D03* X4251D02* D03* X4223D02* D03* X4181D02* D03* X4151D02* D03* X4123D02* D03* X4058Y2161D02* D03* X4066Y2244D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2339D02* D03* X4066D02* D03* X4147D02* D03* X4192D02* D03* X4234Y2354D02* D03* X4282D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4223D02* D03* X4253D02* D03* X4281D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4419Y2354D02* D03* X4467D02* D03* X4547Y2350D02* D03* X4595D02* D03* X4585Y2494D02* D03* X4634D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X4925Y2769D02* D03* X4701Y2806D02* D03* X4559Y2950D02* D03* X4376Y3057D02* D03* X4305Y3046D02* D03* X4241Y3112D02* D03* X4240Y3166D02* D03* X4304Y3196D02* D03* X4359Y3169D02* D03* X4369Y3218D02* D03* X4377Y3142D02* D03* X4380Y3270D02* D03* X4331Y3278D02* D03* X4302Y3265D02* D03* X4379Y3442D02* D03* X4365Y3415D02* D03* X4297Y3428D02* D03* X4334Y3386D02* D03* X4335Y3356D02* D03* X4381Y3342D02* D03* X4559Y3305D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X3998Y3465D02* D03* X4001Y3383D02* D03* X3920Y3415D02* D03* X3855Y3367D02* D03* X3791Y3401D02* D03* X3792Y3445D02* D03* X3743Y3440D02* D03* X3748Y3486D02* D03* X3692Y3490D02* D03* X3698Y3441D02* D03* Y3396D02* D03* X3748Y3392D02* D03* X3747Y3340D02* D03* X3695Y3341D02* D03* X3646D02* D03* X3643Y3387D02* D03* X3647Y3441D02* D03* X3648Y3485D02* D03* Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3363Y3794D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4081Y4187D02* D03* X4108Y4072D02* D03* X4037Y4068D02* D03* Y4027D02* D03* X3909Y3933D02* D03* X3879Y3930D02* D03* X3831Y4006D02* D03* X3799D02* D03* X3751Y4048D02* D03* X3698D02* D03* X3693Y3993D02* D03* X3696Y3938D02* D03* X3735Y3896D02* D03* X3796Y3912D02* D03* X3794Y3846D02* D03* X3827Y3844D02* D03* X3798Y3772D02* D03* X3793Y3718D02* D03* X3820Y3684D02* D03* X3806Y3613D02* D03* X3816Y3584D02* D03* X3995Y3605D02* D03* X3993Y3546D02* D03* X3955Y3558D02* D03* X3899Y3608D02* D03* X3941Y3623D02* D03* X3909Y3658D02* D03* X3938Y3771D02* D03* X3980Y3787D02* D03* X3979Y3830D02* D03* X3944Y3816D02* D03* X4126Y3848D02* D03* X4196Y3951D02* D03* X4266Y3852D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X5291Y3404D02* D03* X5252Y3336D02* D03* X5175Y3351D02* D03* X5091Y3322D02* D03* X5049D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X6022Y3470D02* D03* X5979Y3472D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5850Y3444D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5770Y3389D02* D03* X5768Y3300D02* D03* Y3258D02* D03* X5827Y3128D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6037Y3150D02* D03* X6099Y3154D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D053* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D028* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D048* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D047* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D060* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D061* X7425Y2102D02* D03* X7661D02* D03* D056* X2359Y4522D02* D03* X3940D02* D03* D012* X1814Y4189D02* X2463D01* X2514Y4240D01* Y4265D01* Y4293D01* X2576Y4355D01* X2654D01* X2369Y4268D02* X2434D01* X2511Y4345D01* X2553Y4387D01* X3560D01* X3663Y4490D01* X3816D01* X3855Y4457D02* X3677D01* X3575Y4355D01* X3502D01* D014* X2138Y4049D02* X1939Y3850D01* Y3603D01* X1972Y3570D01* Y2831D01* X1951Y2810D01* Y2203D01* X2020Y2134D01* X2167D01* X2418Y1883D01* Y1268D01* X2476Y1210D01* X1511Y3141D02* X1553D01* X1572Y3122D01* Y2990D01* X1784Y2778D01* X5464Y2324D02* X5508D01* X5543Y2289D01* Y1999D01* X5550Y1992D01* Y1944D01* X5522Y1916D01* X5597D02* X5569Y1944D01* Y1992D01* X5576Y1999D01* Y2312D01* X5624Y2360D01* X5767D01* X5803Y2324D01* X6182Y2787D02* Y2849D01* X6149Y2882D01* Y2908D01* X6170Y2929D01* Y2958D01* X6098Y3030D01* Y3058D01* X6123Y3083D01* Y3338D01* X6120Y3341D01* X6067Y3394D01* Y3673D01* X6120Y3341D02* X6181D01* X6334Y3494D01* X6385D01* D018* X2223Y4425D02* X2491D01* X2559Y4493D01* X2781D01* X2840Y4434D01* X3548D01* X3560Y4446D01* X6574Y4365D02* Y4364D01* X6505Y4295D01* Y2784D01* X6407Y2686D01* X6019D01* X5876Y2543D01* Y2198D01* X5806Y2128D01* X5717D01* X5681D01* X5645D01* X5654Y2119D01* Y1814D01* X5170Y1330D01* Y1261D01* X5062Y1153D01* X2278D01* X2188Y1243D01* X2327Y1069D02* X4294D01* X4336Y1111D01* X4411D01* X4455Y1067D01* X6038D01* X6037Y1066D01* X6937Y1231D02* X6950Y1244D01* X7045D01* X7071Y1270D01* X7125D01* X7258Y1403D01* Y1417D01* X7298D01* X7314Y1433D01* X7524D01* X7534Y1443D01* X7543Y1452D01* X7534Y1443D02* X7583Y1394D01* X7543Y1452D02* Y2910D01* X7534Y2919D01* X7583Y2969D01* X7534Y2919D02* X7524Y2929D01* X7314D01* X7298Y2913D01* X7258D01* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D080* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D081* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D075* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/l0.grb0000644000175000017500000106145513421555714016021 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X2336Y921D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2256Y921D02* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2264D02* X2211Y850D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1936Y877D02* X1980D01* X1688Y1025D02* Y1353D01* X1692Y1025D02* Y1353D01* X1684D02* Y1025D01* X1680Y1353D02* Y1025D01* X1980Y894D02* X1936D01* X1829Y886D02* X1820Y894D01* X1652Y1025D02* Y1353D01* X1656D02* Y1025D01* X1829Y886D02* Y877D01* X1820Y868D02* X1829Y877D01* X1668Y1025D02* Y1353D01* X1672D02* Y1025D01* X1829Y850D02* X1793D01* X1784Y859D02* X1793Y850D01* X1660Y1025D02* Y1353D01* X1664D02* Y1025D01* X1820Y868D02* X1784D01* X1793Y894D02* X1784Y886D01* X1632Y1025D02* Y1353D01* X1620D02* Y1025D01* X1651Y850D02* X1687D01* X1651D02* X1642Y859D01* X1616Y1025D02* Y1353D01* X1604D02* Y1025D01* X1687Y877D02* X1651D01* Y894D02* X1678D01* X1576Y1025D02* Y1353D01* X1584D02* Y1025D01* X1651Y877D02* X1642Y868D01* Y859D02* Y868D01* X1588Y1025D02* Y1353D01* X1592D02* Y1025D01* X1571Y859D02* X1580Y850D01* X1607D01* X1616Y859D01* X1607Y894D02* X1616Y886D01* X1564Y1025D02* Y1353D01* X1556D02* Y1025D01* X1607Y894D02* X1580D01* X1571Y886D02* X1580Y894D01* X1544Y1025D02* Y1353D01* X1536D02* Y1025D01* X1509Y894D02* X1500Y886D01* X1509Y877D01* Y894D02* X1536D01* X1544Y886D01* X1548Y1025D02* Y1353D01* X1552D02* Y1025D01* X1571Y886D02* Y859D01* X1544Y868D02* X1536Y877D01* X1509D01* X1572Y1025D02* Y1353D01* X1568D02* Y1025D01* X1544Y868D02* Y859D01* X1536Y850D01* X1500Y859D02* X1509Y850D01* X1536D01* X1628Y1025D02* Y1353D01* X1624D02* Y1025D01* X1687Y850D02* Y886D01* X1678Y894D02* X1687Y886D01* X1596Y1025D02* Y1353D01* X1600D02* Y1025D01* X1731Y921D02* X1740D01* Y1025D02* Y1353D01* X1736Y1025D02* Y1353D01* X1732Y1025D02* Y1353D01* X1724D02* Y1025D01* X1728Y1353D02* Y1025D01* X1603Y1510D02* X1681D01* X1656Y1535D02* Y1457D01* X1560Y1353D02* Y1025D01* X1580D02* Y1353D01* X1681Y1482D02* X1603D01* X1500Y1394D02* X1441D01* Y1472D01* X1676Y1353D02* Y1025D01* X1704D02* Y1353D01* X1700Y1025D02* Y1353D01* X1696Y1025D02* Y1353D01* X1708D02* Y1025D01* X1712Y1353D02* Y1025D01* X1720D02* Y1353D01* X1716Y1025D02* Y1353D01* X1744D02* Y1025D01* X1748Y1353D02* Y1025D01* X1756D02* Y1353D01* X1752Y1025D02* Y1353D01* X1760D02* Y1025D01* X1764Y1353D02* Y1025D01* X1768Y1353D02* Y1025D01* X1772Y1353D02* Y1025D01* X1776Y1024D02* X1524D01* Y1354D01* X1528Y1025D02* Y1353D01* X1524Y1354D02* X1776D01* Y1024D01* X1608Y1025D02* Y1353D01* X1612D02* Y1025D01* X1740Y921D02* Y850D01* X1731D02* X1749D01* X1640Y1025D02* Y1353D01* X1636D02* Y1025D01* X1793Y894D02* X1820D01* X1784Y886D02* Y859D01* X1648Y1025D02* Y1353D01* X1644D02* Y1025D01* X1850Y1000D02* X1500D01* Y1394D01* X1532Y1353D02* Y1025D01* X1540D02* Y1353D01* X1628Y1457D02* Y1535D01* X1523Y1901D02* Y1926D01* X1519Y1901D02* Y1926D01* X1515Y1901D02* Y1926D01* X1503D02* Y1901D01* X1500Y1900D02* X1527D01* Y1927D01* X1507Y1926D02* Y1901D01* X1511Y1926D02* Y1901D01* X1500Y1900D02* Y1927D01* X1527D01* X1896Y2219D02* X1906Y2209D01* X1948D01* Y2193D02* Y2167D01* X1937Y2156D01* X2004Y2137D02* Y2103D01* X2013Y2094D01* X2020Y2101D01* Y2137D01* X2035D02* Y2183D01* X2032D01* X2130Y2137D02* Y2166D01* X2154Y2190D01* Y2211D01* X2188Y2178D02* X2177Y2167D01* Y2137D01* X2188Y2178D02* X2207D01* X2213Y2184D01* X2272Y2137D02* Y2103D01* X2280Y2095D01* X2287Y2102D01* Y2137D01* X2303Y2180D02* D01* Y2137D01* X2319D02* Y2104D01* X2327Y2096D01* X2335Y2104D01* Y2137D01* X2366D02* Y2103D01* X2374Y2095D01* X2382Y2103D01* Y2137D01* X2385Y2187D02* X2395Y2177D01* X2437D01* X2445Y2169D01* Y2137D01* X2398D02* Y2108D01* X2413Y2093D01* D01* Y2137D01* X2429D02* Y2109D01* X2413Y2093D01* X2534Y2136D02* X2563D01* X2564Y2137D02* X2561Y2146D01* X2557Y2148D02* X2539D01* X2543Y2152D02* X2553D01* X2561Y2146D01* Y2144D02* X2536D01* X2535Y2146D02* X2533Y2136D01* X2536Y2127D01* X2537Y2128D02* X2560D01* X2562Y2129D02* X2554Y2122D01* X2555Y2124D02* X2542D01* X2554Y2122D02* X2544D01* X2536Y2127D01* X2535Y2132D02* X2562D01* Y2129D02* X2564Y2137D01* X2562Y2140D02* X2535D01* Y2146D02* X2543Y2152D01* X2501Y2225D02* X2517Y2209D01* X2548D01* Y2224D02* X2501D01* Y2225D01* X2516Y2240D01* X2548D01* X2503Y2314D02* Y2319D01* X2548D01* Y2398D02* X2504D01* Y2399D01* X2603Y2472D02* Y2476D01* X2548D01* X2482Y2531D02* Y2524D01* X2548D01* Y2571D02* X2628D01* X2632Y2566D01* X2665D01* X2598Y2623D02* Y2628D01* X2594D01* X2588Y2634D01* X2548D01* X2486Y2681D02* Y2696D01* X2492Y2702D01* Y2737D01* X2463Y2790D02* Y2782D01* X2461D01* D01* Y2737D01* X2413D02* Y2706D01* X2418Y2701D01* Y2681D01* X2351Y2680D02* X2350D01* Y2737D01* X2287D02* D01* X2240D02* Y2786D01* X2287Y2737D02* Y2848D01* X2178Y2786D02* X2177D01* Y2737D01* X2098D02* Y2683D01* X2093Y2678D01* Y2676D01* X1948Y2319D02* X1910D01* X1903Y2312D01* X1912Y2303D01* X1948D01* Y2287D02* X1998D01* Y2292D01* X1990Y2335D02* D01* X1948D01* Y2350D02* D01* X1906D01* X1902Y2413D02* D01* X1948D01* Y2445D02* X1904D01* D01* X1902Y2484D02* X1910Y2492D01* X1948D01* Y2539D02* X1912D01* X1901Y2550D01* X1948Y2602D02* X1884D01* X1861Y2625D01* X1860Y2657D02* X1867Y2650D01* X1948D01* X1933Y2736D02* X1962D01* X1964Y2737D02* X1960Y2747D01* X1957Y2748D02* X1939D01* X1943Y2752D02* X1952D01* X1960Y2747D01* Y2744D02* X1935D01* Y2746D02* X1932Y2736D01* X1936Y2727D01* Y2728D02* X1959D01* X1961Y2729D02* X1954Y2723D01* X1955Y2724D02* X1942D01* X1954Y2723D02* X1944Y2722D01* X1936Y2727D01* X1935Y2732D02* X1961D01* Y2729D02* X1964Y2737D01* X1962Y2740D02* X1934D01* X1935Y2746D02* X1943Y2752D01* X1991Y2780D02* X2004Y2767D01* Y2737D01* X2035D02* Y2790D01* X2039D01* X1523Y3763D02* Y3788D01* X1519Y3763D02* Y3788D01* X1515Y3763D02* Y3788D01* X1503D02* Y3763D01* X1500Y3762D02* X1527D01* Y3789D01* X1507Y3788D02* Y3763D01* X1511Y3788D02* Y3763D01* X1500Y3762D02* Y3789D01* X1527D01* X1441Y4465D02* Y4543D01* X1500D01* Y4937D01* X1850D01* X1998Y4823D02* Y4901D01* X2023Y4876D02* X1945D01* X1970Y4901D02* Y4823D01* X1945Y4848D02* X2023D01* X1925Y5462D02* X1075D01* X1200D02* X1500Y5762D01* X1800Y5462D01* X1500Y5162D01* X1200Y5462D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X6599Y3405D02* X6790D01* X6848Y3397D02* X7026D01* Y3393D02* X6848D01* X6790D02* X6599D01* Y3373D02* X6790D01* X6848D02* X7030D01* X7029Y3375D02* X7027Y3378D01* X7066Y3547D02* X6552D01* Y3551D02* X7066D01* X6848Y3429D02* X7026D01* Y3433D02* X6848D01* X7066Y3527D02* X6552D01* Y3531D02* X7066D01* X6848Y3445D02* X7026D01* Y3441D02* X6848D01* X7066Y3543D02* X6552D01* Y3539D02* X7066D01* X7067Y3567D02* Y3496D01* X7066Y3499D02* X6552D01* X6559Y3287D02* Y3087D01* X7075D01* X7074Y3181D02* X6560D01* Y3213D02* X7074D01* X6848Y3305D02* X7074D01* Y3309D02* X6848D01* X7074Y3277D02* X6560D01* Y3273D02* X7074D01* X6848Y3345D02* X7058D01* X7062Y3341D02* X6848D01* X7074Y3225D02* X6560D01* Y3229D02* X7074D01* X6848Y3313D02* X7074D01* Y3317D02* X6848D01* X7074Y3253D02* X6560D01* Y3281D02* X7074D01* X6848Y3329D02* X7074D01* X7075D02* X7029Y3375D01* X7066Y3515D02* X6552D01* Y3535D02* X7066D01* X6848Y3417D02* X7026D01* Y3413D02* X6848D01* X6790Y3417D02* X6599D01* Y3421D02* X6790D01* X6848Y3381D02* X7026D01* Y3385D02* X6848D01* X6790D02* X6599D01* Y3389D02* X6790D01* X6848D02* X7026D01* X7027Y3449D02* X6847D01* X7066Y3563D02* X6552D01* Y3559D02* X7066D01* X6848Y3437D02* X7026D01* Y3401D02* X6848D01* X6790D02* X6599D01* Y3397D02* X6790D01* X6848Y3349D02* X7054D01* X7034Y3369D02* X6848D01* X6790D02* X6599D01* Y3365D02* X6790D01* X6795Y3299D02* X6843D01* X6847Y3303D02* X6843Y3299D01* X7074Y3189D02* X6560D01* Y3197D02* X7074D01* X6847Y3303D02* Y3449D01* X7066Y3511D02* X6552D01* X6598Y3291D02* X6594Y3287D01* X6598Y3291D02* Y3449D01* X6552Y3523D02* X7066D01* Y3519D02* X6552D01* X6594Y3287D02* X6559D01* X6560Y3285D02* X7074D01* X6848Y3321D02* X7074D01* Y3325D02* X6848D01* X7074Y3269D02* X6560D01* Y3265D02* X7074D01* X6848Y3333D02* X7070D01* X7066Y3337D02* X6848D01* X7074Y3257D02* X6560D01* Y3261D02* X7074D01* X6845Y3301D02* X7074D01* Y3289D02* X6597D01* X6790Y3341D02* X6599D01* Y3345D02* X6790D01* X6599Y3293D02* X7074D01* Y3297D02* X6599D01* X6790Y3349D02* X6599D01* Y3353D02* X6790D01* X6791Y3303D02* X6795Y3299D01* X6560Y3185D02* X7074D01* Y3193D02* X6560D01* X6790Y3329D02* X6599D01* Y3325D02* X6790D01* X6560Y3233D02* X7074D01* Y3237D02* X6560D01* X6790Y3309D02* X6599D01* Y3305D02* X6790D01* X6560Y3221D02* X7074D01* Y3217D02* X6560D01* X6790Y3317D02* X6599D01* Y3313D02* X6790D01* X6560Y3249D02* X7074D01* Y3209D02* X6560D01* X6790Y3333D02* X6599D01* Y3337D02* X6790D01* X6560Y3241D02* X7074D01* Y3245D02* X6560D01* X6598Y3047D02* Y2854D01* X6599Y2859D02* X7070D01* X7009Y2774D02* X6963Y2728D01* X6692Y2811D02* X7070D01* Y2815D02* X6688D01* X6849Y3047D02* Y2883D01* X6790D02* X6599D01* Y2879D02* X6794D01* X6795D02* X6845D01* X6672Y2831D02* X7070D01* Y2827D02* X6676D01* X6849Y2883D02* X6845Y2879D01* X6790Y2895D02* X6599D01* Y2899D02* X6790D01* X6850D02* X7070D01* Y2895D02* X6850D01* X6790Y3003D02* X6599D01* Y3007D02* X6790D01* X6791Y3047D02* Y2883D01* X6660Y2843D02* X7070D01* Y2839D02* X6664D01* X6795Y2879D02* X6791Y2883D01* X6790Y2911D02* X6599D01* Y3011D02* X6790D01* X6850Y2995D02* X7070D01* Y2999D02* X6850D01* X6790D02* X6599D01* Y2995D02* X6790D01* X6850Y2987D02* X7070D01* Y2983D02* X6850D01* X6790D02* X6599D01* Y2979D02* X6790D01* X6850D02* X7070D01* Y2975D02* X6850D01* X6790D02* X6599D01* Y2947D02* X6790D01* X6850D02* X7070D01* Y2943D02* X6850D01* X6790D02* X6599D01* Y2939D02* X6790D01* X6850Y2911D02* X7070D01* Y2915D02* X6850D01* X6790D02* X6599D01* Y2919D02* X6790D01* X6850D02* X7070D01* Y2923D02* X6850D01* X6790D02* X6599D01* Y2927D02* X6790D01* X6850D02* X7070D01* Y2931D02* X6850D01* X6790D02* X6599D01* Y2935D02* X6790D01* X6850D02* X7070D01* Y2939D02* X6850D01* X6790Y2971D02* X6599D01* Y2967D02* X6790D01* X6850D02* X7070D01* Y2971D02* X6850D01* X6790Y2987D02* X6599D01* Y2991D02* X6790D01* X6850D02* X7070D01* Y2963D02* X6850D01* X6790D02* X6599D01* Y2959D02* X6790D01* X6850D02* X7070D01* Y2955D02* X6850D01* X6790D02* X6599D01* Y2951D02* X6790D01* X6850D02* X7070D01* Y3011D02* X6850D01* X7074Y3129D02* X6560D01* Y3133D02* X7074D01* X6850Y3043D02* X7070D01* X7071Y3047D02* X6849D01* X7074Y3149D02* X6560D01* Y3165D02* X7074D01* X6850Y3035D02* X7070D01* Y3031D02* X6850D01* X7074Y3125D02* X6560D01* Y3109D02* X7074D01* X6850Y3023D02* X7070D01* Y3027D02* X6850D01* X7074Y3093D02* X6560D01* Y3089D02* X7074D01* X6850Y3019D02* X7070D01* Y3015D02* X6850D01* X7074Y3105D02* X6560D01* Y3101D02* X7074D01* X6850Y3039D02* X7070D01* X7075Y3087D02* Y3329D01* X7105Y3579D02* X6552D01* Y3587D02* X7105D01* X7043Y3721D02* X6921D01* X6832Y3787D02* X6912D01* X6832Y3755D02* X7042D01* Y3751D02* X6832D01* X6912Y3795D02* X6832D01* X6912Y3799D02* X6832D01* Y3807D02* X6912D01* X6832Y3803D02* X6912D01* X6832Y3743D02* X7042D01* Y3739D02* X6832D01* X6912Y3783D02* X6832D01* Y3779D02* X6912D01* X6832Y3775D02* X6912D01* X6832Y3747D02* X7042D01* Y3727D02* X6832D01* X6916Y3715D02* X6832D01* X6916Y3647D02* X6552D01* Y3651D02* X6916D01* X6917Y3642D02* X6921Y3638D01* X6917Y3642D02* Y3717D01* X6916Y3683D02* X6552D01* X7042Y3759D02* X6832D01* X6913Y3815D02* X6831D01* X6912Y3811D02* X6832D01* X6831Y3815D02* Y3693D01* X6916Y3671D02* X6552D01* Y3663D02* X6916D01* X6832Y3723D02* X7042D01* X7043Y3721D02* Y3764D01* X7105Y3611D02* X6552D01* Y3627D02* X7099D01* X6917Y3764D02* X7043D01* X7042Y3763D02* X6832D01* X6912Y3771D02* X6832D01* Y3767D02* X6913D01* X6832Y3731D02* X7042D01* Y3735D02* X6832D01* X6912Y3791D02* X6832D01* X6916Y3667D02* X6552D01* X6551Y3689D02* Y3496D01* X7067D01* X7066Y3507D02* X6552D01* Y3503D02* X7066D01* X6848Y3425D02* X7026D01* Y3421D02* X6848D01* X7066Y3567D02* X6552D01* Y3571D02* X7070D01* X7071D02* X7067Y3567D01* X7071Y3571D02* X7106D01* X7105Y3619D02* X6552D01* Y3623D02* X7103D01* X6832Y3699D02* X6916D01* Y3695D02* X6832D01* X6916Y3659D02* X6552D01* Y3655D02* X6916D01* X6832Y3707D02* X6916D01* Y3703D02* X6832D01* X6916Y3687D02* X6552D01* X6551Y3689D02* X6827D01* X6831Y3693D01* X6552Y3615D02* X7105D01* X7089Y3638D02* X6921D01* X6916Y3675D02* X6552D01* Y3679D02* X6916D01* X6832Y3711D02* X6916D01* Y3691D02* X6830D01* X6919Y3639D02* X6552D01* Y3643D02* X6916D01* X6921Y3721D02* X6917Y3717D01* X6919Y3719D02* X6832D01* X7095Y3631D02* X6552D01* Y3635D02* X7091D01* X7089Y3638D02* X7106Y3620D01* X7105Y3599D02* X6552D01* X6790Y3437D02* X6599D01* Y3441D02* X6790D01* X6552Y3583D02* X7105D01* Y3591D02* X6552D01* X6790Y3445D02* X6599D01* X6598Y3449D02* X6791D01* X6552Y3575D02* X7105D01* X7106Y3571D02* Y3620D01* X7105Y3603D02* X6552D01* Y3607D02* X7105D01* X6913Y3815D02* Y3768D01* X6917Y3764D02* X6913Y3768D01* X7105Y3595D02* X6552D01* Y3555D02* X7066D01* X7027Y3449D02* Y3378D01* Y3377D02* X6848D01* X6790D02* X6599D01* Y3381D02* X6790D01* X6848Y3365D02* X7038D01* X7042Y3361D02* X6848D01* X6790D02* X6599D01* Y3357D02* X6790D01* X6848D02* X7046D01* X7050Y3353D02* X6848D01* X6790Y3413D02* X6599D01* Y3409D02* X6790D01* X6848D02* X7026D01* Y3405D02* X6848D01* X6790Y3425D02* X6599D01* X6790Y3429D02* X6599D01* Y3433D02* X6790D01* X6791Y3449D02* Y3303D01* X6560Y3205D02* X7074D01* Y3201D02* X6560D01* X6790Y3321D02* X6599D01* Y3301D02* X6793D01* X6560Y3173D02* X7074D01* Y3177D02* X6560D01* X6790Y3015D02* X6599D01* Y3019D02* X6790D01* X6560Y3145D02* X7074D01* Y3141D02* X6560D01* X6790Y3043D02* X6599D01* Y3039D02* X6790D01* X6560Y3121D02* X7074D01* Y3137D02* X6560D01* X6790Y3031D02* X6599D01* Y3035D02* X6790D01* X6560Y3153D02* X7074D01* Y3169D02* X6560D01* X6790Y3027D02* X6599D01* Y3023D02* X6790D01* X6560Y3161D02* X7074D01* Y3157D02* X6560D01* X6791Y3047D02* X6598D01* X6560Y3097D02* X7074D01* X6850Y3007D02* X7070D01* Y3003D02* X6850D01* X7074Y3113D02* X6560D01* Y3117D02* X7074D01* X7071Y3047D02* Y2776D01* X7070Y2779D02* X6698D01* X7010Y2775D02* X6698D01* X6993Y2759D02* X6698D01* X6985Y2751D02* X6698D01* X6969Y2735D02* X6698D01* Y2739D02* X6973D01* X6698Y2783D02* X7070D01* Y2787D02* X6698D01* X6997Y2763D02* X6698D01* Y2755D02* X6989D01* X6698Y2791D02* X7070D01* Y2799D02* X6698D01* X6981Y2747D02* X6698D01* Y2743D02* X6977D01* X6698Y2767D02* X7001D01* X6698Y2771D02* X7005D01* X6698Y2803D02* X7070D01* Y2807D02* X6696D01* X6965Y2731D02* X6698D01* X6697Y2728D02* Y2803D01* X6652Y2851D02* X7070D01* Y2847D02* X6656D01* X6697Y2728D02* X6963D01* X7070Y2835D02* X6668D01* X6680Y2823D02* X7070D01* X6850Y2883D02* X7070D01* Y2887D02* X6850D01* X7070Y2819D02* X6684D01* X6648Y2853D02* X6646Y2854D01* X6598D01* X6599Y2863D02* X7070D01* Y2855D02* X6599D01* X6648Y2853D02* X6696Y2806D01* X6697Y2803D02* X6696Y2806D01* X6599Y2875D02* X7070D01* Y2879D02* X6846D01* X6790Y2887D02* X6599D01* Y2891D02* X6790D01* X6850D02* X7070D01* Y2907D02* X6850D01* X6790D02* X6599D01* Y2903D02* X6790D01* X6850D02* X7070D01* Y2795D02* X6698D01* X7009Y2774D02* X7012Y2776D01* X7070Y2867D02* X6599D01* Y2871D02* X7070D01* X7071Y2776D02* X7012D01* X5547Y2496D02* X5443D01* X5359Y2424D02* Y2115D01* X5355D02* Y2423D01* X5443Y2495D02* Y2496D01* X5421Y2595D02* Y2705D01* X5425D02* Y2595D01* X5443Y2495D02* X5439Y2486D01* X5351Y2423D02* Y2115D01* X5347D02* Y2423D01* X5435Y2477D02* X5439Y2486D01* Y2485D02* Y2160D01* X5503Y2195D02* Y2160D01* X5511D02* Y2195D01* X5515Y2160D02* Y2195D01* X5519Y2200D02* X5515Y2196D01* X5445D01* X5441Y2200D02* X5445Y2196D01* X5379Y2160D02* Y2429D01* X5375Y2427D02* Y2160D01* X5443Y2197D02* Y2160D01* X5451D02* Y2195D01* X5387Y2160D02* Y2432D01* X5395Y2436D02* Y2160D01* X5459Y2195D02* Y2160D01* X5463D02* Y2195D01* X5399Y2160D02* Y2438D01* X5407Y2444D02* Y2160D01* X5471Y2195D02* Y2160D01* X5479D02* Y2195D01* X5415Y2160D02* Y2451D01* X5427Y2464D02* Y2160D01* X5491Y2195D02* Y2160D01* X5507D02* Y2195D01* X5519Y2200D02* Y2345D01* X5515Y2349D01* X5445D01* X5441Y2345D01* X5451Y2350D02* Y2495D01* X5437Y2595D02* Y2705D01* X5441D02* Y2595D01* X5455Y2495D02* Y2350D01* X5447D02* Y2495D01* X5433Y2595D02* Y2705D01* X5429D02* Y2595D01* X5443Y2495D02* Y2348D01* X5363Y2424D02* Y2115D01* X5367D02* Y2425D01* X5441Y2345D02* Y2200D01* X5371Y2156D02* Y2426D01* X5374Y2428D02* X5365Y2426D01* X5303Y2432D02* Y2115D01* X5299D02* Y2434D01* X5355Y2424D02* X5365Y2426D01* X5483Y2350D02* Y2495D01* X5469Y2595D02* Y2705D01* X5465D02* Y2595D01* X5479Y2495D02* Y2350D01* X5475D02* Y2495D01* X5461Y2595D02* Y2705D01* X5457D02* Y2595D01* X5471Y2495D02* Y2350D01* X5467D02* Y2495D01* X5453Y2595D02* Y2705D01* X5449D02* Y2595D01* X5463Y2495D02* Y2350D01* X5459D02* Y2495D01* X5445Y2595D02* Y2705D01* X5513D02* Y2595D01* X5527Y2495D02* Y2160D01* X5523D02* Y2495D01* X5509Y2595D02* Y2705D01* X5473D02* Y2595D01* X5487Y2495D02* Y2350D01* X5491D02* Y2495D01* X5477Y2595D02* Y2705D01* X5481D02* Y2595D01* X5495Y2495D02* Y2350D01* X5499D02* Y2495D01* X5485Y2595D02* Y2705D01* X5489D02* Y2595D01* X5503Y2495D02* Y2350D01* X5507D02* Y2495D01* X5493Y2595D02* Y2705D01* X5497D02* Y2595D01* X5511Y2495D02* Y2350D01* X5515D02* Y2495D01* X5501Y2595D02* Y2705D01* X5505D02* Y2595D01* X5519Y2495D02* Y2160D01* X5487D02* Y2195D01* X5423Y2160D02* Y2459D01* X5424Y2461D02* X5417Y2453D01* X5335Y2423D02* Y2115D01* X5331D02* Y2424D01* X5409Y2447D02* X5417Y2453D01* X5419Y2455D02* Y2160D01* X5483Y2195D02* Y2160D01* X5475D02* Y2195D01* X5411Y2160D02* Y2447D01* X5409D02* X5401Y2441D01* X5327Y2424D02* Y2115D01* X5323D02* Y2425D01* X5393Y2436D02* X5401Y2441D01* X5403D02* Y2160D01* X5467Y2195D02* Y2160D01* X5455D02* Y2195D01* X5391Y2160D02* Y2434D01* X5393Y2436D02* X5384Y2431D01* X5315Y2427D02* Y2115D01* X5307D02* Y2430D01* X5374Y2428D02* X5384Y2431D01* X5383Y2430D02* Y2160D01* X5447Y2195D02* Y2160D01* X5579D02* Y2495D01* X5545Y2595D02* Y2705D01* X5549D02* Y2595D01* X5583Y2495D02* Y2160D01* X5587D02* Y2495D01* X5553Y2595D02* Y2705D01* X5557D02* Y2595D01* X5591Y2495D02* Y2160D01* X5595D02* Y2495D01* X5561Y2595D02* Y2705D01* X5565D02* Y2595D01* X5599Y2495D02* Y2160D01* X5603D02* Y2495D01* X5569Y2595D02* Y2705D01* X5573D02* Y2595D01* X5607Y2495D02* Y2160D01* X5611D02* Y2495D01* X5577Y2595D02* Y2705D01* X5581D02* Y2595D01* X5615Y2495D02* Y2160D01* X5619D02* Y2495D01* X5585Y2595D02* Y2705D01* X5589D02* Y2595D01* X5623Y2495D02* Y2160D01* X5651D02* Y2495D01* X5617Y2595D02* Y2705D01* X5613D02* Y2595D01* X5647Y2495D02* Y2160D01* X5643D02* Y2495D01* X5609Y2595D02* Y2705D01* X5605D02* Y2595D01* X5639Y2495D02* Y2160D01* X5635D02* Y2495D01* X5601Y2595D02* Y2705D01* X5597D02* Y2595D01* X5631Y2495D02* Y2160D01* X5627D02* Y2495D01* X5593Y2595D02* Y2705D01* X5621D02* Y2595D01* X5655Y2495D02* Y2160D01* X5659D02* Y2495D01* X5625Y2595D02* Y2705D01* X5629D02* Y2595D01* X5663Y2495D02* Y2160D01* X5667D02* Y2495D01* X5633Y2595D02* Y2705D01* X5637D02* Y2595D01* X5671Y2495D02* Y2160D01* X5675D02* Y2495D01* X5641Y2595D02* Y2705D01* X5645D02* Y2595D01* X5679Y2495D02* Y2160D01* X5683D02* Y2495D01* X5649Y2595D02* Y2705D01* X5653D02* Y2595D01* X5687Y2495D02* Y2160D01* X5390Y1989D02* X5524D01* X5523Y2036D02* X5200D01* Y2040D02* X5523D01* X5596D02* X5890D01* Y2032D02* X5596D01* X5523D02* X5200D01* Y2028D02* X5523D01* X5596D02* X5890D01* Y2024D02* X5596D01* X5523D02* X5200D01* Y2020D02* X5523D01* X5596D02* X5890D01* Y1984D02* X5735D01* X5749Y1921D02* Y1817D01* X5750D02* X5890D01* X5754Y1813D02* X5890D01* Y1809D02* X5758D01* X5890Y1825D02* X5750D01* Y1821D02* X5890D01* X5778Y1789D02* X5890D01* Y1877D02* X5750D01* X5890Y1881D02* X5750D01* Y1889D02* X5890D01* X5750Y1885D02* X5890D01* Y1893D02* X5750D01* X5890Y1897D02* X5750D01* Y1901D02* X5890D01* X5891Y1784D02* X5782D01* X5750Y1837D02* X5890D01* X5750Y1833D02* X5890D01* X5750Y1829D02* X5890D01* X5766Y1801D02* X5890D01* Y1805D02* X5762D01* X5890Y1841D02* X5750D01* Y1845D02* X5890D01* X5774Y1793D02* X5890D01* Y1797D02* X5770D01* X5890Y1861D02* X5750D01* X5890Y1857D02* X5750D01* X5890Y1865D02* X5750D01* Y1849D02* X5890D01* X5750Y1853D02* X5890D01* X5782Y1784D02* X5749Y1817D01* X5735Y1960D02* X5890D01* Y1952D02* X5735D01* X5734Y1939D02* X5891D01* X5890Y2004D02* X5596D01* Y1996D02* X5890D01* X5891Y1921D02* Y1784D01* X5890Y1785D02* X5782D01* X5890Y1869D02* X5750D01* X5890Y1873D02* X5750D01* X5735Y1956D02* X5890D01* X5749Y1921D02* X5891D01* X5890Y1917D02* X5750D01* X5890Y1944D02* X5735D01* Y1948D02* X5890D01* X5750Y1905D02* X5890D01* Y1909D02* X5750D01* X5890Y1964D02* X5735D01* X5890Y1968D02* X5735D01* X5749Y2114D02* X5891D01* X5890Y2080D02* X5596D01* Y2076D02* X5890D01* X5867Y2115D02* Y2495D01* X5863D02* Y2115D01* X5890Y2044D02* X5596D01* Y2036D02* X5890D01* X5875Y2115D02* Y2495D01* X5879D02* Y2115D01* X5890Y2068D02* X5596D01* X5595Y2096D02* Y1989D01* X5523Y1996D02* X5200D01* X5254Y1920D02* Y1816D01* X5250D02* Y1920D01* X5200Y1992D02* X5523D01* X5596D02* X5890D01* Y1988D02* X5732D01* X5734Y1985D02* Y1939D01* X5735Y1940D02* X5890D01* X5750Y1913D02* X5890D01* X5891Y1939D02* Y2096D01* X5595D01* X5596Y2092D02* X5890D01* X5871Y2115D02* Y2495D01* X5883D02* Y2115D01* X5890Y2084D02* X5596D01* Y2088D02* X5890D01* X5887Y2115D02* Y2495D01* X5853Y2595D02* Y2705D01* X5849Y2595D02* Y2705D01* X5857D02* Y2595D01* X5861Y2705D02* Y2595D01* X5865Y2705D02* Y2595D01* X5889D02* Y2705D01* X5885Y2595D02* Y2705D01* X5893D02* Y2595D01* X5897Y2705D02* Y2595D01* X5901Y2705D02* Y2595D01* X5945D02* Y2705D01* X5941Y2595D02* Y2705D01* X5949D02* Y2595D01* X5953Y2705D02* Y2595D01* X5957Y2705D02* Y2595D01* X5981D02* Y2705D01* X5977Y2595D02* Y2705D01* X5985D02* Y2595D01* X5989Y2705D02* Y2595D01* X5993Y2705D02* Y2595D01* X6033D02* Y2705D01* X6141Y2706D02* Y2594D01* X6037Y2595D02* Y2705D01* X6041D02* Y2595D01* X6045Y2705D02* Y2595D01* X6049Y2705D02* Y2595D01* X6073D02* Y2705D01* X6069Y2595D02* Y2705D01* X6077D02* Y2595D01* X6081Y2705D02* Y2595D01* X6085Y2705D02* Y2595D01* X6129D02* Y2705D01* X6125Y2595D02* Y2705D01* X6117D02* Y2595D01* X6121Y2705D02* Y2595D01* X6113D02* Y2705D01* X6109Y2595D02* Y2705D01* X6105Y2595D02* Y2705D01* X6097D02* Y2595D01* X6101Y2705D02* Y2595D01* X6093D02* Y2705D01* X6089Y2595D02* Y2705D01* X6061D02* Y2595D01* X6065Y2705D02* Y2595D01* X6057D02* Y2705D01* X6053Y2595D02* Y2705D01* X6025D02* Y2595D01* X6029Y2705D02* Y2595D01* X6021D02* Y2705D01* X6017Y2595D02* Y2705D01* X6013Y2595D02* Y2705D01* X6005D02* Y2595D01* X6009Y2705D02* Y2595D01* X6001D02* Y2705D01* X5997Y2595D02* Y2705D01* X5969D02* Y2595D01* X5973Y2705D02* Y2595D01* X5965D02* Y2705D01* X5961Y2595D02* Y2705D01* X5933D02* Y2595D01* X5937Y2705D02* Y2595D01* X5929D02* Y2705D01* X5925Y2595D02* Y2705D01* X5921Y2595D02* Y2705D01* X5913D02* Y2595D01* X5917Y2705D02* Y2595D01* X5909D02* Y2705D01* X5905Y2595D02* Y2705D01* X5877D02* Y2595D01* X5881Y2705D02* Y2595D01* X5873D02* Y2705D01* X5869Y2595D02* Y2705D01* X5841D02* Y2595D01* X5845Y2705D02* Y2595D01* X5837D02* Y2705D01* X5833Y2595D02* Y2705D01* X5829Y2595D02* Y2705D01* X5813D02* Y2595D01* X5847Y2495D02* Y2350D01* X5851D02* Y2495D01* X5817Y2595D02* Y2705D01* X5821D02* Y2595D01* X5855Y2495D02* Y2350D01* Y2349D02* X5859Y2345D01* X5855Y2349D02* X5780D01* X5776Y2345D01* Y2200D01* X5780Y2196D01* X5799Y2195D02* Y2115D01* X5803Y2195D02* Y2115D01* X5807Y2195D02* Y2115D01* X5815D02* Y2195D01* X5811Y2115D02* Y2195D01* X5749Y2155D02* X5745Y2159D01* X5571D01* Y2160D02* Y2495D01* X5537Y2595D02* Y2705D01* X5541D02* Y2595D01* X5575Y2495D02* Y2160D01* X5571Y2159D02* Y2496D01* X5533Y2595D02* Y2705D01* X5529D02* Y2595D01* X5543Y2495D02* Y2160D01* X5547Y2159D02* Y2496D01* X5571D02* X5891D01* Y2114D01* X5859Y2200D02* X5855Y2196D01* X5787Y2195D02* Y2115D01* X5783D02* Y2195D01* X5743Y2160D02* Y2495D01* X5709Y2595D02* Y2705D01* X5713D02* Y2595D01* X5747Y2495D02* Y2158D01* X5749Y2155D02* Y2114D01* X5751Y2115D02* Y2495D01* X5717Y2595D02* Y2705D01* X5697D02* Y2595D01* X5731Y2495D02* Y2160D01* X5727D02* Y2495D01* X5693Y2595D02* Y2705D01* X5689D02* Y2595D01* X5723Y2495D02* Y2160D01* X5719D02* Y2495D01* X5685Y2595D02* Y2705D01* X5657D02* Y2595D01* X5691Y2495D02* Y2160D01* X5695D02* Y2495D01* X5661Y2595D02* Y2705D01* X5665D02* Y2595D01* X5699Y2495D02* Y2160D01* X5703D02* Y2495D01* X5669Y2595D02* Y2705D01* X5673D02* Y2595D01* X5707Y2495D02* Y2160D01* X5711D02* Y2495D01* X5677Y2595D02* Y2705D01* X5681D02* Y2595D01* X5715Y2495D02* Y2160D01* X5735D02* Y2495D01* X5701Y2595D02* Y2705D01* X5705D02* Y2595D01* X5739Y2495D02* Y2160D01* X5795Y2195D02* Y2115D01* X5823D02* Y2195D01* X5819Y2115D02* Y2195D01* X5827D02* Y2115D01* X5831Y2195D02* Y2115D01* X5835Y2195D02* Y2115D01* X5847D02* Y2195D01* X5843Y2115D02* Y2195D01* X5839Y2115D02* Y2195D01* X5855Y2196D02* X5780D01* X5779D02* Y2115D01* X5791D02* Y2195D01* X5859Y2200D02* Y2345D01* X5827Y2350D02* Y2495D01* X5793Y2595D02* Y2705D01* X5797D02* Y2595D01* X5831Y2495D02* Y2350D01* X5835D02* Y2495D01* X5801Y2595D02* Y2705D01* X5805D02* Y2595D01* X5839Y2495D02* Y2350D01* X5843D02* Y2495D01* X5809Y2595D02* Y2705D01* X5789D02* Y2595D01* X5823Y2495D02* Y2350D01* X5819D02* Y2495D01* X5785Y2595D02* Y2705D01* X5781D02* Y2595D01* X5815Y2495D02* Y2350D01* X5811D02* Y2495D01* X5777Y2595D02* Y2705D01* X5765D02* Y2595D01* X5799Y2495D02* Y2350D01* X5803D02* Y2495D01* X5769Y2595D02* Y2705D01* X5773D02* Y2595D01* X5807Y2495D02* Y2350D01* X5779Y2349D02* Y2495D01* X5745Y2595D02* Y2705D01* X5741D02* Y2595D01* X5775Y2495D02* Y2115D01* X5771D02* Y2495D01* X5737Y2595D02* Y2705D01* X5733D02* Y2595D01* X5767Y2495D02* Y2115D01* X5763D02* Y2495D01* X5729Y2595D02* Y2705D01* X5725D02* Y2595D01* X5759Y2495D02* Y2115D01* X5755D02* Y2495D01* X5721Y2595D02* Y2705D01* X5749D02* Y2595D01* X5783Y2495D02* Y2350D01* X5787D02* Y2495D01* X5753Y2595D02* Y2705D01* X5757D02* Y2595D01* X5791Y2495D02* Y2350D01* X5795D02* Y2495D01* X5761Y2595D02* Y2705D01* X5825D02* Y2595D01* X5859Y2495D02* Y2115D01* X5890Y1976D02* X5735D01* Y1972D02* X5890D01* X5855Y2115D02* Y2195D01* X5851D02* Y2115D01* X5890Y1980D02* X5735D01* X5734Y1985D02* X5730Y1989D01* X5595D01* X5596Y2052D02* X5890D01* Y2048D02* X5596D01* X5523D02* X5200D01* Y2056D02* X5523D01* X5596D02* X5890D01* Y2060D02* X5596D01* X5523D02* X5200D01* Y2064D02* X5523D01* X5596D02* X5890D01* Y2072D02* X5596D01* X5523D02* X5200D01* Y2068D02* X5523D01* X5524Y2096D02* Y1989D01* X5523Y2004D02* X5200D01* X5199Y1939D02* X5386D01* Y1985D01* X5385Y1972D02* X5200D01* X5242Y1920D02* Y1816D01* X5238D02* Y1920D01* X5200Y1964D02* X5385D01* X5370Y1921D02* Y1898D01* X5330Y1920D02* Y1816D01* X5334Y1920D02* Y1816D01* X5326D02* Y1920D01* X5322Y1816D02* Y1920D01* X5358D02* Y1816D01* X5362Y1920D02* Y1816D01* X5370D02* Y1920D01* X5366Y1816D02* Y1920D01* X5370Y1921D02* X5185D01* X5181Y1925D01* X5190Y1920D02* Y1816D01* X5186D02* Y1920D01* X5098Y1858D02* Y2152D01* X4902Y1541D02* Y1491D01* X4898D02* Y1541D01* X4902D02* X4895Y1544D01* X4893Y1541D02* X4895Y1544D01* X4893Y1541D02* Y1491D01* X4900Y1487D01* X4902Y1491D01* X4925D02* X4932Y1487D01* X4934Y1491D01* X4929D02* Y1541D01* X4934D02* Y1491D01* X4925D02* Y1541D01* X4926Y1544D01* X4934Y1541D01* X4971Y1578D02* X4967Y1580D01* X4971Y1587D01* Y1583D02* X5021D01* X5025Y1585D02* X5021Y1587D01* X4971D01* Y1578D02* X5021D01* X5025Y1585D01* X5021Y1610D02* X5025Y1617D01* X5021Y1641D02* X5025Y1648D01* X5021Y1673D02* X5025Y1680D01* X5021Y1682D02* X5025Y1680D01* X5021Y1682D02* X4971D01* X4967Y1674D01* X4971Y1673D01* X5021D01* Y1677D02* X4971D01* Y1641D02* X4967Y1643D01* X4971Y1650D01* X5021D01* X5025Y1648D02* X5021Y1650D01* Y1646D02* X4971D01* Y1641D02* X5021D01* Y1619D02* X5025Y1617D01* X5021Y1619D02* X4971D01* X4967Y1611D01* X4971Y1610D01* X5021D01* Y1614D02* X4971D01* Y1704D02* X4967Y1706D01* X4971Y1713D01* X5021D01* X5025Y1711D02* X5021Y1713D01* Y1709D02* X4971D01* Y1704D02* X5021D01* X5025Y1711D01* X5021Y1736D02* X5025Y1743D01* X5021Y1745D02* X5025Y1743D01* X5021Y1745D02* X4971D01* X4967Y1737D01* X4971Y1736D01* X5021D01* Y1740D02* X4971D01* Y1767D02* X4967Y1769D01* X4971Y1776D01* X5021D01* X5025Y1774D02* X5021Y1776D01* Y1772D02* X4971D01* Y1767D02* X5021D01* X5025Y1774D01* X5021Y1799D02* X5025Y1806D01* X5021Y1830D02* X5025Y1837D01* X5082Y1874D02* Y2152D01* X5078D02* Y1878D01* X5025Y1900D02* X5021Y1893D01* X5025Y1869D02* X5021Y1862D01* Y1871D02* X5025Y1869D01* X5021Y1871D02* X4971D01* X4967Y1863D01* X4971Y1862D01* X5021D01* Y1866D02* X4971D01* Y1893D02* X4967Y1895D01* X4971Y1902D01* X5021D01* X5025Y1900D02* X5021Y1902D01* Y1898D02* X4971D01* Y1893D02* X5021D01* X4971Y1830D02* X4967Y1832D01* X4971Y1839D01* X5021D01* X5025Y1837D02* X5021Y1839D01* Y1835D02* X4971D01* Y1830D02* X5021D01* Y1808D02* X5025Y1806D01* X5021Y1808D02* X4971D01* X4967Y1800D01* X4971Y1799D01* X5021D01* Y1803D02* X4971D01* X4934Y1990D02* X4926Y1993D01* X4925Y1990D01* Y1940D01* X4934D02* Y1990D01* X4929D02* Y1940D01* X4934D02* X4932Y1936D01* X4925Y1940D01* X4902D02* X4900Y1936D01* X4893Y1940D01* X4898D02* Y1990D01* X4902D02* Y1940D01* X4893D02* Y1990D01* X4895Y1993D01* X4902Y1990D01* X4871D02* Y1940D01* X4866D02* Y1990D01* X4871D02* X4863Y1993D01* X4862Y1990D02* X4863Y1993D01* X4862Y1990D02* Y1940D01* X4869Y1936D01* X4871Y1940D01* X4839D02* X4837Y1936D01* X4830Y1940D01* Y1990D01* X4832Y1993D02* X4830Y1990D01* X4832Y1993D02* X4839Y1990D01* X4835D02* Y1940D01* X4839D02* Y1990D01* X4799Y1940D02* X4806Y1936D01* X4799Y1940D02* Y1990D01* X4800Y1993D01* X4808Y1990D01* Y1940D01* X4806Y1936D02* X4808Y1940D01* X4803D02* Y1990D01* X4772D02* Y1940D01* X4776D02* X4774Y1936D01* X4776Y1940D02* Y1990D01* X4769Y1993D01* X4767Y1990D01* Y1940D01* X4774Y1936D02* X4767Y1940D01* X4745D02* X4743Y1936D01* X4736Y1940D01* Y1990D01* X4737Y1993D02* X4736Y1990D01* X4737Y1993D02* X4745Y1990D01* X4740D02* Y1940D01* X4745D02* Y1990D01* X4713Y1940D02* X4711Y1936D01* X4704Y1940D01* Y1990D01* X4706Y1993D02* X4704Y1990D01* X4706Y1993D02* X4713Y1990D01* X4709D02* Y1940D01* X4713D02* Y1990D01* X4682D02* X4674Y1993D01* X4673Y1990D01* Y1940D01* X4682D02* Y1990D01* X4677D02* Y1940D01* X4682D02* X4680Y1936D01* X4673Y1940D01* X4650Y1990D02* X4643Y1993D01* X4641Y1990D01* Y1940D01* X4650D02* Y1990D01* X4646D02* Y1940D01* X4650D02* X4648Y1936D01* X4641Y1940D01* X4619D02* X4617Y1936D01* X4610Y1940D01* Y1990D01* X4611Y1993D02* X4610Y1990D01* X4611Y1993D02* X4619Y1990D01* X4614D02* Y1940D01* X4619D02* Y1990D01* X4522Y1893D02* X4519Y1895D01* X4522Y1902D01* X4572D01* X4576Y1900D02* X4572Y1902D01* X4576Y1900D02* X4572Y1893D01* Y1898D02* X4522D01* Y1893D02* X4572D01* X4576Y1869D02* X4572Y1862D01* Y1871D02* X4576Y1869D01* X4572Y1871D02* X4522D01* X4519Y1863D01* X4522Y1862D01* X4572D01* Y1866D02* X4522D01* Y1830D02* X4519Y1832D01* X4522Y1839D01* X4572D01* X4576Y1837D02* X4572Y1839D01* Y1835D02* X4522D01* Y1830D02* X4572D01* X4576Y1837D02* X4572Y1830D01* X4576Y1806D02* X4572Y1799D01* Y1808D02* X4576Y1806D01* X4572Y1808D02* X4522D01* X4519Y1800D01* X4522Y1799D01* X4572D01* Y1803D02* X4522D01* Y1767D02* X4519Y1769D01* X4522Y1776D01* X4572D01* X4576Y1774D02* X4572Y1776D01* Y1767D02* X4522D01* Y1772D02* X4572D01* X4576Y1774D02* X4572Y1767D01* X4576Y1743D02* X4572Y1736D01* Y1745D02* X4576Y1743D01* X4572Y1745D02* X4522D01* X4519Y1737D01* X4522Y1736D01* X4572D01* Y1740D02* X4522D01* X4572Y1704D02* X4522D01* Y1709D02* X4572D01* X4576Y1711D02* X4572Y1704D01* Y1713D02* X4576Y1711D01* X4572Y1713D02* X4522D01* X4519Y1706D01* X4522Y1704D01* Y1677D02* X4572D01* Y1673D02* X4522D01* X4519Y1674D01* X4522Y1682D01* X4572D01* X4576Y1680D02* X4572Y1682D01* Y1673D02* X4576Y1680D01* X4572Y1641D02* X4576Y1648D01* X4572Y1646D02* X4522D01* Y1641D02* X4572D01* Y1650D02* X4576Y1648D01* X4572Y1650D02* X4522D01* X4519Y1643D01* X4522Y1641D01* Y1614D02* X4572D01* Y1610D02* X4522D01* X4519Y1611D01* X4522Y1619D01* X4572D01* X4576Y1617D02* X4572Y1619D01* Y1610D02* X4576Y1617D01* X4572Y1578D02* X4576Y1585D01* X4572Y1578D02* X4522D01* Y1587D02* X4572D01* X4576Y1585D01* X4572Y1583D02* X4522D01* Y1587D02* X4519Y1580D01* X4522Y1578D01* X4619Y1491D02* X4617Y1487D01* X4610Y1491D01* Y1541D01* X4611Y1544D02* X4610Y1541D01* X4611Y1544D02* X4619Y1541D01* X4614D02* Y1491D01* X4619D02* Y1541D01* X4650D02* Y1491D01* X4646D02* Y1541D01* X4650D02* X4643Y1544D01* X4641Y1541D02* X4643Y1544D01* X4641Y1541D02* Y1491D01* X4648Y1487D01* X4650Y1491D01* X4673D02* X4680Y1487D01* X4682Y1491D01* X4677D02* Y1541D01* X4682D02* Y1491D01* X4673D02* Y1541D01* X4674Y1544D01* X4682Y1541D01* X4713Y1491D02* X4711Y1487D01* X4704Y1491D01* X4709D02* Y1541D01* X4713D02* Y1491D01* X4704D02* Y1541D01* X4706Y1544D01* X4713Y1541D01* X4745D02* Y1491D01* X4740D02* Y1541D01* X4745D02* X4737Y1544D01* X4736Y1541D02* X4737Y1544D01* X4736Y1541D02* Y1491D01* X4743Y1487D01* X4745Y1491D01* X4871D02* X4869Y1487D01* X4862Y1491D01* Y1541D01* X4863Y1544D02* X4862Y1541D01* X4863Y1544D02* X4871Y1541D01* X4866D02* Y1491D01* X4871D02* Y1541D01* X4835D02* Y1491D01* X4839D02* X4837Y1487D01* X4839Y1491D02* Y1541D01* X4832Y1544D01* X4830Y1541D01* Y1491D01* X4837Y1487D02* X4830Y1491D01* X4803Y1541D02* Y1491D01* X4808D02* X4806Y1487D01* X4808Y1491D02* Y1541D01* X4800Y1544D01* X4799Y1541D01* Y1491D01* X4806Y1487D02* X4799Y1491D01* X4776D02* X4774Y1487D01* X4767Y1491D01* Y1541D01* X4769Y1544D02* X4767Y1541D01* X4776D02* Y1491D01* X4772D02* Y1541D01* X4776D02* X4769Y1544D01* X4772Y1720D02* Y1760D01* X4792Y1740D02* X4752D01* X5200Y2016D02* X5523D01* X5596D02* X5890D01* Y2012D02* X5596D01* X5523D02* X5200D01* Y2008D02* X5523D01* X5596D02* X5890D01* Y2000D02* X5596D01* X5523D02* X5200D01* X5258Y1920D02* Y1816D01* X5262Y1920D02* Y1816D01* X5270D02* Y1920D01* X5266Y1816D02* Y1920D01* X5318D02* Y1816D01* X5371Y1895D02* X5370Y1898D01* X5274Y1920D02* Y1816D01* X5278D02* Y1920D01* X5371Y1895D02* X5386Y1880D01* X5314Y1816D02* Y1920D01* X5310D02* Y1816D01* X5382Y1883D02* Y1816D01* X5386Y1815D02* X5139D01* X5086Y1870D02* Y2152D01* X5071Y2153D02* Y1884D01* X5139Y1815D01* X5142Y1816D02* Y2152D01* X5223Y2115D02* Y2495D01* X5205Y2595D02* Y2705D01* X5209D02* Y2595D01* X5227Y2495D02* Y2115D01* X5150Y2152D02* Y1816D01* X5146D02* Y2152D01* X5200Y2084D02* X5523D01* Y2088D02* X5200D01* X5134Y2152D02* Y1822D01* X5130Y1826D02* Y2152D01* X5215Y2115D02* Y2495D01* X5189Y2595D02* Y2705D01* X5193D02* Y2595D01* X5292Y2609D02* X5301Y2614D01* X5269Y2705D02* Y2595D01* X5359Y2623D02* X5369Y2621D01* X5379Y2618D02* X5369Y2621D01* X5281Y2602D02* Y2705D01* X5293D02* Y2610D01* X5379Y2618D02* X5388Y2614D01* X5409Y2602D02* Y2705D01* X5401Y2608D02* Y2705D01* X5397Y2611D02* Y2705D01* X5393Y2613D02* Y2705D01* X5389Y2615D02* Y2705D01* X5385Y2617D02* Y2705D01* X5381Y2618D02* Y2705D01* X5377Y2620D02* Y2705D01* X5373Y2621D02* Y2705D01* X5369Y2622D02* Y2705D01* X5365Y2623D02* Y2705D01* X5361Y2624D02* Y2705D01* X5357Y2624D02* Y2705D01* X5353Y2625D02* Y2705D01* X5349D02* Y2625D01* X5345Y2705D02* Y2625D01* X5417Y2594D02* X6141D01* Y2595D02* Y2705D01* X6137Y2595D02* Y2705D01* X6133Y2595D02* Y2705D01* X6141Y2706D02* X4737D01* X4673Y2685D02* Y2598D01* X4701Y2685D02* Y2570D01* X4737Y2705D02* Y2351D01* X4741D02* Y2705D01* X4621Y2635D02* Y2685D01* X4585Y2635D02* Y2719D01* X4581Y2723D02* Y2635D01* X4617Y2687D02* Y2635D01* X4613D02* Y2691D01* X4565Y2643D02* Y2739D01* X4553Y2751D02* Y2655D01* X4573Y2634D02* X4634D01* X4637Y2633D02* X4634Y2634D01* X4569Y2639D02* Y2735D01* X4573Y2731D02* Y2635D01* X4637Y2633D02* X4731Y2538D01* X4737Y2706D02* X4718Y2687D01* X4665Y2685D02* Y2606D01* X4697Y2685D02* Y2574D01* X4729Y2697D02* Y2542D01* X4769Y2705D02* Y2351D01* X4765D02* Y2705D01* X4725Y2546D02* Y2693D01* X4625Y2635D02* Y2685D01* X4593Y2635D02* Y2711D01* X4589Y2715D02* Y2635D01* X4620Y2686D02* X4617Y2687D01* X4538Y2766D01* X4549Y2755D02* Y2659D01* X4545Y2663D02* Y2759D01* X4493Y2715D02* Y4844D01* X4541Y4785D02* Y4877D01* X4545D02* Y4785D01* X4497Y4848D02* Y4751D01* X4496Y4748D02* X4497Y4751D01* X4529Y4782D01* X4531Y4784D02* X4529Y4782D01* X4501Y4755D02* Y4852D01* X4549Y4785D02* Y4877D01* X4561D02* Y4785D01* X4565Y4877D02* Y4785D01* X4569Y4877D02* Y4785D01* X4577D02* Y4877D01* X4573Y4785D02* Y4877D01* X4601D02* Y4785D01* X4605Y4877D02* Y4785D01* X4613D02* Y4877D01* X4609Y4785D02* Y4877D01* X4637D02* Y4785D01* X4641Y4877D02* Y4785D01* X4649D02* Y4877D01* X4645Y4785D02* Y4877D01* X4653D02* Y4785D01* X4657Y4877D02* Y4785D01* X4661Y4877D02* Y4785D01* X4669D02* Y4877D01* X4665Y4785D02* Y4877D01* X4673D02* Y4785D01* X4677Y4877D02* Y4785D01* X4685D02* Y4877D01* X4681Y4785D02* Y4877D01* X4689D02* Y4785D01* X4693Y4877D02* Y4785D01* X4697Y4877D02* Y4785D01* X4705D02* Y4877D01* X4701Y4785D02* Y4877D01* X4729D02* Y4785D01* X4733Y4877D02* Y4785D01* X4741D02* Y4877D01* X4737Y4785D02* Y4877D01* X4745D02* Y4785D01* X4749Y4877D02* Y4785D01* X4753Y4877D02* Y4785D01* X4761D02* Y4877D01* X4757Y4785D02* Y4877D01* X4765D02* Y4785D01* X4769Y4877D02* Y4785D01* X4777D02* Y4877D01* X4773Y4785D02* Y4877D01* X4781D02* Y4785D01* X4785Y4877D02* Y4785D01* X4789Y4877D02* Y4785D01* X4797D02* Y4877D01* X4793Y4785D02* Y4877D01* X4821D02* Y4785D01* X4825Y4877D02* Y4785D01* X4833D02* Y4877D01* X4829Y4785D02* Y4877D01* X4837D02* Y4785D01* X4841Y4877D02* Y4785D01* X4845Y4877D02* Y4785D01* X4853D02* Y4877D01* X4849Y4785D02* Y4877D01* X4857D02* Y4785D01* X4861Y4877D02* Y4785D01* X4869D02* Y4877D01* X4865Y4785D02* Y4877D01* X4873D02* Y4785D01* X4877Y4877D02* Y4785D01* X4881Y4877D02* Y4785D01* X4889D02* Y4877D01* X4885Y4785D02* Y4877D01* X4913D02* Y4785D01* X4917Y4877D02* Y4785D01* X4925D02* Y4877D01* X4921Y4785D02* Y4877D01* X4929D02* Y4785D01* X4933Y4877D02* Y4785D01* X4937Y4877D02* Y4785D01* X4945D02* Y4877D01* X4941Y4785D02* Y4877D01* X4949D02* Y4785D01* X4953Y4877D02* Y4785D01* X4961D02* Y4877D01* X4957Y4785D02* Y4877D01* X4965D02* Y4785D01* X4969Y4877D02* Y4785D01* X4973Y4877D02* Y4785D01* X4981D02* Y4877D01* X4977Y4785D02* Y4877D01* X5005D02* Y4785D01* X5009Y4877D02* Y4785D01* X5017D02* Y4877D01* X5013Y4785D02* Y4877D01* X5021D02* Y4785D01* X5025Y4877D02* Y4785D01* X5029Y4877D02* Y4785D01* X5037D02* Y4877D01* X5033Y4785D02* Y4877D01* X5041D02* Y4785D01* X5045Y4877D02* Y4785D01* X5053D02* Y4877D01* X5049Y4785D02* Y4877D01* X5057D02* Y4785D01* X5061Y4877D02* Y4785D01* X5065Y4877D02* Y4785D01* X5073D02* Y4877D01* X5069Y4785D02* Y4877D01* X5097D02* Y4785D01* X5101Y4877D02* Y4785D01* X5109D02* Y4877D01* X5105Y4785D02* Y4877D01* X5133D02* Y4785D01* X5137Y4877D02* Y4785D01* X5145D02* Y4877D01* X5141Y4785D02* Y4877D01* X5149D02* Y4785D01* X5153Y4877D02* Y4785D01* X5157Y4877D02* Y4785D01* X5165D02* Y4877D01* X5161Y4785D02* Y4877D01* X5189D02* Y4785D01* X5193Y4877D02* Y4785D01* X5201D02* Y4877D01* X5197Y4785D02* Y4877D01* X5225D02* Y4785D01* X5229Y4877D02* Y4785D01* X5237D02* Y4877D01* X5233Y4785D02* Y4877D01* X5241D02* Y4785D01* X5245Y4877D02* Y4785D01* X5249Y4877D02* Y4785D01* X5257D02* Y4877D01* X5253Y4785D02* Y4877D01* X5281D02* Y4785D01* X5285Y4877D02* Y4785D01* X5293D02* Y4877D01* X5289Y4785D02* Y4877D01* X5317D02* Y4785D01* X5321Y4877D02* Y4785D01* X5329D02* Y4877D01* X5325Y4785D02* Y4877D01* X5333D02* Y4785D01* X5337Y4877D02* Y4785D01* X5341Y4877D02* Y4785D01* X5349D02* Y4877D01* X5345Y4785D02* Y4877D01* X5373D02* Y4785D01* X5377Y4877D02* Y4785D01* X5385D02* Y4877D01* X5381Y4785D02* Y4877D01* X5409D02* Y4785D01* X5413Y4877D02* Y4785D01* X5421D02* Y4877D01* X5417Y4785D02* Y4877D01* X5425D02* Y4785D01* X5429Y4877D02* Y4785D01* X5433Y4877D02* Y4785D01* X5441D02* Y4877D01* X5437Y4785D02* Y4877D01* X5445D02* Y4785D01* X5449Y4877D02* Y4785D01* X5457D02* Y4877D01* X5453Y4785D02* Y4877D01* X5461D02* Y4785D01* X5465Y4877D02* Y4785D01* X5469Y4877D02* Y4785D01* X5477D02* Y4877D01* X5473Y4785D02* Y4877D01* X5501D02* Y4785D01* X5505Y4877D02* Y4785D01* X5513D02* Y4877D01* X5509Y4785D02* Y4877D01* X5517D02* Y4785D01* X5521Y4877D02* Y4785D01* X5525Y4877D02* Y4785D01* X5533D02* Y4877D01* X5529Y4785D02* Y4877D01* X5537D02* Y4785D01* X5541Y4877D02* Y4785D01* X5549D02* Y4877D01* X5545Y4785D02* Y4877D01* X5553D02* Y4785D01* X5557Y4877D02* Y4785D01* X5561Y4877D02* Y4785D01* X5569D02* Y4877D01* X5565Y4785D02* Y4877D01* X5593D02* Y4785D01* X5597Y4877D02* Y4785D01* X5605D02* Y4877D01* X5601Y4785D02* Y4877D01* X5609D02* Y4785D01* X5613Y4877D02* Y4785D01* X5617Y4877D02* Y4785D01* X5625D02* Y4877D01* X5621Y4785D02* Y4877D01* X5629D02* Y4785D01* X5633Y4877D02* Y4785D01* X5641D02* Y4877D01* X5637Y4785D02* Y4877D01* X5645D02* Y4785D01* X5649Y4877D02* Y4785D01* X5653Y4877D02* Y4785D01* X5661D02* Y4877D01* X5657Y4785D02* Y4877D01* X5685D02* Y4785D01* X5689Y4877D02* Y4785D01* X5697D02* Y4877D01* X5693Y4785D02* Y4877D01* X5701D02* Y4785D01* X5705Y4877D02* Y4785D01* X5709Y4877D02* Y4785D01* X5717D02* Y4877D01* X5713Y4785D02* Y4877D01* X5721D02* Y4785D01* X5725Y4877D02* Y4785D01* X5733D02* Y4877D01* X5729Y4785D02* Y4877D01* X5737D02* Y4785D01* X5741Y4877D02* Y4785D01* X5745Y4877D02* Y4785D01* X5753D02* Y4877D01* X5749Y4785D02* Y4877D01* X5791Y5379D02* X5800Y5370D01* X5836D01* X5845Y5379D01* Y5397D01* X5836Y5406D01* X5800D01* X5791Y5415D01* X5862Y5406D02* Y5379D01* X5871Y5370D01* X5898D01* X5907Y5379D01* Y5406D01* X5898Y5415D01* X5871D01* X5862Y5406D01* X5845Y5432D02* X5836Y5441D01* X5800D01* X5791Y5432D01* Y5415D01* X5616Y5406D02* X5563D01* X5323Y5441D02* X5287D01* X5278Y5432D01* Y5379D01* X5287Y5370D01* X5323D01* X5332Y5379D01* Y5432D01* X5323Y5441D01* X5332D02* X5278Y5370D01* X5234Y5388D02* X5225Y5379D01* X5234Y5370D01* X5243Y5379D01* X5234Y5388D01* X5189Y5415D02* X5163Y5370D01* X5136Y5415D01* X5109Y5406D02* Y5397D01* Y5406D02* X5101Y5415D01* X5074D01* X5065Y5406D01* Y5379D01* X5074Y5370D02* X5109D01* Y5397D02* X5101Y5388D01* X5065D01* X5074Y5370D02* X5065Y5379D01* X5047Y5370D02* X5021Y5406D01* X4994D02* X5038D01* X5047Y5415D01* Y5432D01* X5038Y5441D01* X4994D01* Y5370D01* X4683Y5441D02* X4647D01* X4638Y5432D01* Y5415D01* X4647Y5406D01* X4683D01* X4692Y5397D01* Y5432D02* X4683Y5441D01* X4692Y5397D02* Y5379D01* X4683Y5370D01* X4647D01* X4638Y5379D01* X4621Y5370D02* X4567D01* Y5441D01* Y5406D02* X4603D01* X4621Y5441D02* X4567D01* X4549D02* Y5379D01* X4541Y5370D01* X4505D01* X4496Y5379D01* Y5441D01* X4478Y5370D02* X4425D01* Y5441D01* X4398D02* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D01* X4407Y5415D01* X4398Y5441D02* X4407Y5432D01* Y5415D01* X4398Y5406D02* X4354D01* X4336D02* X4283D01* X4256D02* X4221D01* X4212Y5397D01* Y5379D01* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5397D01* X4256Y5406D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D01* X4194Y5432D02* X4185Y5441D01* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4123D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X3909Y5370D02* X3856D01* X3883D02* Y5441D01* X3909D02* X3856D01* X3838Y5432D02* X3829Y5441D01* X3794D01* X3785Y5432D01* Y5379D01* X3794Y5370D01* X3829D01* X3838Y5379D01* X3714Y5406D02* X3758D01* X3767Y5415D01* Y5432D01* X3758Y5441D01* X3714D01* Y5370D01* X3687Y5379D02* X3678Y5370D01* X3669D01* X3661Y5379D01* Y5441D01* X3678Y5415D02* X3643D01* X3616Y5406D02* X3607Y5415D01* X3581D01* X3572Y5406D01* Y5379D01* X3581Y5370D01* X3607D01* X3616Y5379D01* X3545Y5397D02* X3509D01* X3501Y5388D01* Y5379D01* X3509Y5370D01* X3545D01* Y5406D01* X3536Y5415D01* X3509D01* X3429Y5343D02* Y5415D01* X3465D01* X3474Y5406D01* Y5379D01* X3465Y5370D01* X3429D01* X3385Y5406D02* X3394Y5415D01* X3403D01* X3412Y5406D01* Y5370D01* X3385D02* Y5406D01* X3376Y5415D01* X3367D01* X3358Y5406D01* Y5415D02* Y5370D01* X3296D02* X3323D01* X3332Y5379D01* Y5406D01* X3323Y5415D01* X3296D01* X3287Y5406D01* Y5379D01* X3296Y5370D01* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X4417Y4770D02* Y2789D01* X4573Y2634D01* X4577Y2635D02* Y2727D01* X4620Y2686D02* X4715D01* X4718Y2687D02* X4715Y2686D01* X4661Y2685D02* Y2610D01* X4693Y2685D02* Y2578D01* X4717Y2686D02* Y2554D01* X4757Y2705D02* Y2351D01* X4761D02* Y2705D01* X4721Y2550D02* Y2689D01* X4669Y2602D02* Y2685D01* X4645Y2626D02* Y2685D01* X4633Y2635D02* Y2685D01* X4601Y2635D02* Y2703D01* X4605Y2699D02* Y2635D01* X4637Y2685D02* Y2634D01* X4649Y2685D02* Y2622D01* X4677Y2685D02* Y2594D01* X4705Y2685D02* Y2566D01* X4745Y2705D02* Y2351D01* X4732Y2350D02* Y2535D01* X4685Y2586D02* Y2685D01* X4681D02* Y2590D01* X4731Y2538D02* X4732Y2535D01* X4773Y2705D02* Y2351D01* X4809D02* Y2705D01* X4933Y2596D02* Y2705D01* X4937D02* Y2596D01* X4813Y2705D02* Y2351D01* X4817D02* Y2705D01* X4941Y2596D02* Y2705D01* X4945D02* Y2595D01* X4821Y2705D02* Y2351D01* X4825D02* Y2705D01* X4949Y2595D02* Y2705D01* X4953D02* Y2595D01* X4829Y2705D02* Y2351D01* X4833D02* Y2705D01* X4957Y2595D02* Y2705D01* X4961D02* Y2595D01* X4837Y2705D02* Y2351D01* X4905D02* Y2705D01* X5029Y2595D02* Y2705D01* X5025D02* Y2595D01* X4901Y2705D02* Y2351D01* X4873D02* Y2705D01* X4997Y2595D02* Y2705D01* X5001D02* Y2595D01* X4877Y2705D02* Y2351D01* X4881D02* Y2705D01* X5005Y2595D02* Y2705D01* X5009D02* Y2595D01* X4885Y2705D02* Y2351D01* X4889D02* Y2705D01* X5013Y2595D02* Y2705D01* X5017D02* Y2595D01* X4893Y2705D02* Y2351D01* X4897D02* Y2705D01* X5021Y2595D02* Y2705D01* X4917D02* Y2596D01* X4793Y2705D02* Y2351D01* X4797D02* Y2705D01* X4921Y2596D02* Y2705D01* X4925D02* Y2596D01* X4801Y2705D02* Y2351D01* X4805D02* Y2705D01* X4929Y2596D02* Y2705D01* X4965D02* Y2595D01* X4841Y2705D02* Y2351D01* X4845D02* Y2705D01* X4969Y2595D02* Y2705D01* X4973D02* Y2595D01* X4849Y2705D02* Y2351D01* X4853D02* Y2705D01* X4977Y2595D02* Y2705D01* X4981D02* Y2595D01* X4857Y2705D02* Y2351D01* X4861D02* Y2705D01* X4985Y2595D02* Y2705D01* X4989D02* Y2595D01* X4865Y2705D02* Y2351D01* X4869D02* Y2705D01* X4993Y2595D02* Y2705D01* X5033D02* Y2595D01* X5037Y2705D02* Y2595D01* X5045D02* Y2705D01* X5041Y2595D02* Y2705D01* X5069D02* Y2595D01* X5073Y2705D02* Y2595D01* X5081D02* Y2705D01* X5077Y2595D02* Y2705D01* X5085D02* Y2595D01* X5089Y2705D02* Y2595D01* X5093Y2705D02* Y2595D01* X5101D02* Y2705D01* X5097Y2595D02* Y2705D01* X5105D02* Y2595D01* X5109Y2705D02* Y2595D01* X5117D02* Y2705D01* X5113Y2595D02* Y2705D01* X5121D02* Y2595D01* X5125Y2705D02* Y2595D01* X5129Y2705D02* Y2595D01* X5137D02* Y2705D01* X5133Y2595D02* Y2705D01* X5053Y2595D02* Y2705D01* X5049Y2595D02* Y2705D01* X5057D02* Y2595D01* X5061Y2705D02* Y2595D01* X5065Y2705D02* Y2595D01* X5145D02* Y2705D01* X5141Y2595D02* Y2705D01* X5149D02* Y2595D01* X5153Y2705D02* Y2595D01* X5249D02* Y2705D01* X5301Y2615D02* Y2705D01* X5297D02* Y2613D01* X5261Y2705D02* Y2595D01* X5265D02* Y2705D01* X5309Y2618D02* Y2705D01* X5305D02* Y2617D01* X5257Y2705D02* Y2595D01* X5359Y2623D02* X5349Y2624D01* X5253Y2595D02* Y2705D01* X5245D02* Y2595D01* X5339Y2624D02* X5349D01* X5339D02* X5329Y2623D01* X5233Y2595D02* Y2705D01* X5225D02* Y2595D01* X5319Y2621D02* X5329Y2623D01* X5319Y2621D02* X5310Y2618D01* X5213Y2595D02* Y2705D01* X5241D02* Y2595D01* X5247Y2495D02* Y2115D01* X5178Y2152D02* Y1816D01* X5174D02* Y2152D01* X5243Y2115D02* Y2495D01* X5237Y2595D02* Y2705D01* X5229D02* Y2595D01* X5239Y2495D02* Y2115D01* X5166Y2152D02* Y1816D01* X5170D02* Y2152D01* X5200Y2076D02* X5523D01* Y2080D02* X5200D01* X5158Y2152D02* Y1816D01* X5154D02* Y2152D01* X5231Y2115D02* Y2495D01* X5217Y2595D02* Y2705D01* X5221D02* Y2595D01* X5235Y2495D02* Y2115D01* X5162Y2152D02* Y1816D01* X5182D02* Y1923D01* X5090Y1866D02* Y2152D01* X5094D02* Y1862D01* X5181Y1925D02* Y2153D01* X5071D01* X5074Y2152D02* Y1882D01* X5102Y1854D02* Y2152D01* X5199Y2115D02* Y2495D01* X5161Y2595D02* Y2705D01* X5165D02* Y2595D01* X5203Y2495D02* Y2115D01* X5110Y2152D02* Y1846D01* X5106Y1850D02* Y2152D01* X5199Y2114D02* Y2496D01* X5157Y2595D02* Y2705D01* X5177D02* Y2595D01* X5277Y2598D02* X5284Y2603D01* X5285Y2605D02* Y2705D01* X5317Y2621D02* Y2705D01* X5333D02* Y2624D01* X5405Y2604D02* X5413Y2598D01* Y2599D02* Y2705D01* X5405Y2605D02* Y2705D01* X5397Y2610D02* X5388Y2614D01* X5325Y2623D02* Y2705D01* X5329D02* Y2624D01* X5397Y2610D02* X5405Y2604D01* X5417Y2705D02* Y2595D01* Y2594D02* X5413Y2598D01* X5341Y2625D02* Y2705D01* X5337D02* Y2625D01* X5413Y2598D02* D01* X5517Y2705D02* Y2595D01* X5531Y2495D02* Y2160D01* X5535D02* Y2495D01* X5521Y2595D02* Y2705D01* X5525D02* Y2595D01* X5539Y2495D02* Y2160D01* X5547Y2159D02* X5375D01* X5319Y2115D02* Y2426D01* X5325D02* X5315Y2428D01* X5283Y2444D02* Y2115D01* X5287D02* Y2441D01* X5325Y2426D02* X5335Y2424D01* X5345D02* X5335D01* X5291Y2438D02* Y2115D01* X5295D02* Y2436D01* X5345Y2424D02* X5355D01* X5306Y2432D02* X5297Y2436D01* X5275Y2450D02* Y2115D01* X5271D02* Y2454D01* X5288Y2441D02* X5297Y2436D01* X5288Y2441D02* X5280Y2447D01* X5267Y2459D02* Y2115D01* X5263D02* Y2464D01* X5273Y2454D02* X5280Y2447D01* X5273Y2454D02* X5266Y2461D01* X5259Y2469D02* Y2115D01* X5255D02* Y2476D01* X5260Y2469D02* X5266Y2461D01* X5199Y2496D02* X5247D01* X5250Y2487D01* X5260Y2469D02* X5255Y2478D01* X5250Y2487D01* X5251Y2484D02* Y2115D01* X5279D02* Y2447D01* X5306Y2432D02* X5315Y2428D01* X5311Y2429D02* Y2115D01* X5371Y2155D02* X5375Y2159D01* X5339Y2115D02* Y2423D01* X5424Y2461D02* X5430Y2469D01* X5431Y2470D02* Y2160D01* X5495Y2195D02* Y2160D01* X5499D02* Y2195D01* X5435Y2160D02* Y2477D01* X5430Y2469D01* X5343Y2423D02* Y2115D01* X5371Y2155D02* Y2114D01* X5199D01* X5200Y2044D02* X5523D01* Y2052D02* X5200D01* X5199Y2096D02* Y1939D01* X5194Y1920D02* Y1816D01* X5198D02* Y1920D01* X5200Y1940D02* X5385D01* Y1944D02* X5200D01* X5218Y1920D02* Y1816D01* X5222D02* Y1920D01* X5200Y1960D02* X5385D01* Y1956D02* X5200D01* X5202Y1920D02* Y1816D01* X5206D02* Y1920D01* X5200Y1980D02* X5385D01* Y1976D02* X5200D01* X5214Y1920D02* Y1816D01* X5210D02* Y1920D01* X5200Y1948D02* X5385D01* Y1952D02* X5200D01* X5230Y1920D02* Y1816D01* X5234D02* Y1920D01* X5200Y1968D02* X5385D01* X5378Y1816D02* Y1887D01* X5306Y1816D02* Y1920D01* X5302D02* Y1816D01* X5374Y1891D02* Y1816D01* X5354D02* Y1920D01* X5350Y1816D02* Y1920D01* X5346Y1816D02* Y1920D01* X5338D02* Y1816D01* X5342Y1920D02* Y1816D01* X5298D02* Y1920D01* X5294Y1816D02* Y1920D01* X5386Y1880D02* Y1815D01* X5282Y1816D02* Y1920D01* X5286D02* Y1816D01* X5290Y1920D02* Y1816D01* X5246D02* Y1920D01* X5200Y1988D02* X5388D01* X5390Y1989D02* X5386Y1985D01* X5385Y1984D02* X5200D01* X5226Y1920D02* Y1816D01* X5138Y1818D02* Y2152D01* X5219Y2115D02* Y2495D01* X5197Y2595D02* Y2705D01* X5201D02* Y2595D01* X5301Y2614D02* X5310Y2618D01* X5277Y2705D02* Y2598D01* X5273Y2595D02* Y2705D01* X5313Y2620D02* Y2705D01* X5321D02* Y2622D01* X5289Y2705D02* Y2608D01* X5292Y2609D02* X5284Y2603D01* X5181Y2595D02* Y2705D01* X5185D02* Y2595D01* X5211Y2495D02* Y2115D01* X5122Y2152D02* Y1834D01* X5126Y1830D02* Y2152D01* X5200Y2092D02* X5523D01* X5524Y2096D02* X5199D01* X5118Y2152D02* Y1838D01* X5114Y1842D02* Y2152D01* X5207Y2115D02* Y2495D01* X5169Y2595D02* Y2705D01* X5173D02* Y2595D01* X5277Y2598D02* D01* X5273Y2594D01* X4909Y2595D01* X4905Y2591D02* X4909Y2595D01* X4785Y2705D02* Y2351D01* X4789D02* Y2705D01* X4913Y2596D02* Y2705D01* X4909D02* Y2595D01* X4777Y2705D02* Y2351D01* X4781D02* Y2705D01* X4905Y2591D02* Y2350D01* X4732D01* X4733Y2351D02* Y2701D01* X4597Y2707D02* Y2635D01* X4629Y2685D02* Y2635D01* X4653Y2685D02* Y2618D01* X4709Y2685D02* Y2562D01* X4749Y2705D02* Y2351D01* X4753D02* Y2705D01* X4713Y2558D02* Y2685D01* X4689Y2582D02* Y2685D01* X4657Y2614D02* Y2685D01* X4641Y2630D02* Y2685D01* X4609Y2635D02* Y2695D01* X4561Y2647D02* Y2743D01* X4527Y2767D02* X4530Y2766D01* X4473Y2735D02* Y4824D01* X4521Y4775D02* Y4872D01* X4517Y4868D02* Y4771D01* X4469Y4820D02* Y2739D01* X4529Y2766D02* Y2679D01* X4533Y2675D02* Y2765D01* X4477Y2731D02* Y4828D01* X4525Y4779D02* Y4876D01* X4529Y4877D02* Y4783D01* X4481Y4832D02* Y2727D01* X4537Y2765D02* Y2671D01* X4541Y2667D02* Y2763D01* X4485Y2723D02* Y4836D01* X4533Y4785D02* Y4877D01* X4537D02* Y4785D01* X4489Y4840D02* Y2719D01* X4538Y2766D02* X4530D01* X4557Y2747D02* Y2651D01* X4421Y2787D02* Y4772D01* X4417Y4770D02* X4525Y4878D01* X6197D01* X6189Y4877D02* Y4785D01* X6193Y4877D02* Y4785D01* X6197Y4784D02* X4531D01* X4505Y4759D02* Y4856D01* X4553Y4785D02* Y4877D01* X4557D02* Y4785D01* X4509Y4860D02* Y4763D01* X4461Y4812D02* Y2747D01* X4525Y2769D02* Y2683D01* X4497Y2711D02* Y2797D01* X4429Y2779D02* Y4780D01* X4425Y4776D02* Y2783D01* X4496Y2800D02* Y4748D01* X4445Y4796D02* Y2763D01* X4509Y2785D02* Y2699D01* X4513Y2695D02* Y2781D01* X4449Y2759D02* Y4800D01* X4453Y4804D02* Y2755D01* X4517Y2777D02* Y2691D01* X4521Y2687D02* Y2773D01* X4457Y2751D02* Y4808D01* X4441Y4792D02* Y2767D01* X4505Y2789D02* Y2703D01* X4501Y2707D02* Y2793D01* X4437Y2771D02* Y4788D01* X4433Y4784D02* Y2775D01* X4497Y2797D02* X4496Y2800D01* X4497Y2797D02* X4527Y2767D01* X4465Y2743D02* Y4816D01* X4513Y4767D02* Y4864D01* X4585Y4785D02* Y4877D01* X4581Y4785D02* Y4877D01* X4589D02* Y4785D01* X4593Y4877D02* Y4785D01* X4597Y4877D02* Y4785D01* X4621D02* Y4877D01* X4617Y4785D02* Y4877D01* X4625D02* Y4785D01* X4629Y4877D02* Y4785D01* X4633Y4877D02* Y4785D01* X4713D02* Y4877D01* X4709Y4785D02* Y4877D01* X4717D02* Y4785D01* X4721Y4877D02* Y4785D01* X4725Y4877D02* Y4785D01* X4805D02* Y4877D01* X4801Y4785D02* Y4877D01* X4809D02* Y4785D01* X4813Y4877D02* Y4785D01* X4817Y4877D02* Y4785D01* X4897D02* Y4877D01* X4893Y4785D02* Y4877D01* X4901D02* Y4785D01* X4905Y4877D02* Y4785D01* X4909Y4877D02* Y4785D01* X4989D02* Y4877D01* X4985Y4785D02* Y4877D01* X4993D02* Y4785D01* X4997Y4877D02* Y4785D01* X5001Y4877D02* Y4785D01* X5081D02* Y4877D01* X5077Y4785D02* Y4877D01* X5085D02* Y4785D01* X5089Y4877D02* Y4785D01* X5093Y4877D02* Y4785D01* X5117D02* Y4877D01* X5113Y4785D02* Y4877D01* X5121D02* Y4785D01* X5125Y4877D02* Y4785D01* X5129Y4877D02* Y4785D01* X5173D02* Y4877D01* X5169Y4785D02* Y4877D01* X5177D02* Y4785D01* X5181Y4877D02* Y4785D01* X5185Y4877D02* Y4785D01* X5209D02* Y4877D01* X5205Y4785D02* Y4877D01* X5213D02* Y4785D01* X5217Y4877D02* Y4785D01* X5221Y4877D02* Y4785D01* X5265D02* Y4877D01* X5261Y4785D02* Y4877D01* X5269D02* Y4785D01* X5273Y4877D02* Y4785D01* X5277Y4877D02* Y4785D01* X5301D02* Y4877D01* X5297Y4785D02* Y4877D01* X5305D02* Y4785D01* X5309Y4877D02* Y4785D01* X5313Y4877D02* Y4785D01* X5357D02* Y4877D01* X5353Y4785D02* Y4877D01* X5361D02* Y4785D01* X5365Y4877D02* Y4785D01* X5369Y4877D02* Y4785D01* X5393D02* Y4877D01* X5389Y4785D02* Y4877D01* X5397D02* Y4785D01* X5401Y4877D02* Y4785D01* X5405Y4877D02* Y4785D01* X5485D02* Y4877D01* X5481Y4785D02* Y4877D01* X5489D02* Y4785D01* X5493Y4877D02* Y4785D01* X5497Y4877D02* Y4785D01* X5577D02* Y4877D01* X5573Y4785D02* Y4877D01* X5581D02* Y4785D01* X5585Y4877D02* Y4785D01* X5589Y4877D02* Y4785D01* X5669D02* Y4877D01* X5665Y4785D02* Y4877D01* X5673D02* Y4785D01* X5677Y4877D02* Y4785D01* X5681Y4877D02* Y4785D01* X5761D02* Y4877D01* X5757Y4785D02* Y4877D01* X5765D02* Y4785D01* X5769Y4877D02* Y4785D01* X5773Y4877D02* Y4785D01* X5797D02* Y4877D01* X5793Y4785D02* Y4877D01* X5801D02* Y4785D01* X5805Y4877D02* Y4785D01* X5809Y4877D02* Y4785D01* X5853D02* Y4877D01* X5849Y4785D02* Y4877D01* X5857D02* Y4785D01* X5861Y4877D02* Y4785D01* X5865Y4877D02* Y4785D01* X5889D02* Y4877D01* X5885Y4785D02* Y4877D01* X5893D02* Y4785D01* X5897Y4877D02* Y4785D01* X5901Y4877D02* Y4785D01* X5945D02* Y4877D01* X5941Y4785D02* Y4877D01* X5949D02* Y4785D01* X5953Y4877D02* Y4785D01* X5957Y4877D02* Y4785D01* X5981D02* Y4877D01* X5977Y4785D02* Y4877D01* X5985D02* Y4785D01* X5989Y4877D02* Y4785D01* X5993Y4877D02* Y4785D01* X6037D02* Y4877D01* X6033Y4785D02* Y4877D01* X6041D02* Y4785D01* X6045Y4877D02* Y4785D01* X6049Y4877D02* Y4785D01* X6073D02* Y4877D01* X6069Y4785D02* Y4877D01* X6077D02* Y4785D01* X6081Y4877D02* Y4785D01* X6085Y4877D02* Y4785D01* X6105D02* Y4877D01* X6197Y4878D02* Y4784D01* X6109Y4785D02* Y4877D01* X6113Y4785D02* Y4877D01* X6117D02* Y4785D01* X6121Y4877D02* Y4785D01* X6129D02* Y4877D01* X6125Y4785D02* Y4877D01* X6133D02* Y4785D01* X6137Y4877D02* Y4785D01* X6141Y4877D02* Y4785D01* X6165D02* Y4877D01* X6161Y4785D02* Y4877D01* X6169D02* Y4785D01* X6173Y4877D02* Y4785D01* X6177Y4877D02* Y4785D01* X6185D02* Y4877D01* X6181Y4785D02* Y4877D01* X6153D02* Y4785D01* X6157Y4877D02* Y4785D01* X6149D02* Y4877D01* X6145Y4785D02* Y4877D01* X6097D02* Y4785D01* X6101Y4877D02* Y4785D01* X6093D02* Y4877D01* X6089Y4785D02* Y4877D01* X6061D02* Y4785D01* X6065Y4877D02* Y4785D01* X6057D02* Y4877D01* X6053Y4785D02* Y4877D01* X6025D02* Y4785D01* X6029Y4877D02* Y4785D01* X6021D02* Y4877D01* X6017Y4785D02* Y4877D01* X6013Y4785D02* Y4877D01* X6005D02* Y4785D01* X6009Y4877D02* Y4785D01* X6001D02* Y4877D01* X5997Y4785D02* Y4877D01* X5969D02* Y4785D01* X5973Y4877D02* Y4785D01* X5965D02* Y4877D01* X5961Y4785D02* Y4877D01* X5933D02* Y4785D01* X5937Y4877D02* Y4785D01* X5929D02* Y4877D01* X5925Y4785D02* Y4877D01* X5921Y4785D02* Y4877D01* X5913D02* Y4785D01* X5917Y4877D02* Y4785D01* X5909D02* Y4877D01* X5905Y4785D02* Y4877D01* X5877D02* Y4785D01* X5881Y4877D02* Y4785D01* X5873D02* Y4877D01* X5869Y4785D02* Y4877D01* X5841D02* Y4785D01* X5845Y4877D02* Y4785D01* X5837D02* Y4877D01* X5833Y4785D02* Y4877D01* X5829Y4785D02* Y4877D01* X5821D02* Y4785D01* X5825Y4877D02* Y4785D01* X5817D02* Y4877D01* X5813Y4785D02* Y4877D01* X5785D02* Y4785D01* X5789Y4877D02* Y4785D01* X5781D02* Y4877D01* X5777Y4785D02* Y4877D01* X5951Y5441D02* X5960D01* Y5370D01* X5969D02* X5951D01* X6014D02* X6005Y5379D01* Y5406D01* X6014Y5415D01* X6049D01* Y5441D02* Y5370D01* X6014D01* X6076Y5388D02* X6111D01* X6120Y5397D01* Y5406D01* X6147D02* X6156Y5415D01* X6191Y5406D02* X6182Y5415D01* X6156D01* X6147D02* Y5370D01* X6120D02* X6085D01* X6076Y5379D01* Y5406D01* X6085Y5415D01* X6111D01* X6120Y5406D01* X6289Y5379D02* X6298Y5370D01* X6334D01* X6342Y5379D01* Y5397D01* X6334Y5406D01* X6298D01* X6289Y5415D01* Y5432D01* X6298Y5441D01* X6334D01* X6342Y5432D01* X6387Y5423D02* Y5432D01* X6378D01* Y5423D01* X6387D01* X6378Y5415D02* X6387D01* Y5370D01* X6396D02* X6378D01* X6476Y5441D02* Y5370D01* X6440D01* X6431Y5379D01* Y5406D01* X6440Y5415D01* X6476D01* X6511D02* X6538D01* X6547Y5406D01* Y5397D01* X6538Y5388D01* X6502D01* X6511Y5415D02* X6502Y5406D01* Y5379D01* X6511Y5370D01* X6547D01* X6680D02* X6662Y5397D01* Y5415D01* X6680Y5441D01* X6716D02* Y5370D01* X6769D01* X6796D02* X6787Y5379D01* Y5432D01* X6796Y5441D01* X6831D01* X6840Y5432D01* Y5379D01* X6831Y5370D01* X6796D01* X6787D02* X6840Y5441D01* X6876D02* X6894Y5415D01* Y5397D01* X6876Y5370D01* X7103Y4872D02* X7181D01* X7156Y4897D02* Y4819D01* X7181Y4844D02* X7103D01* X7128Y4819D02* Y4897D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* Y5137D02* X8524Y4937D01* X8324Y4737D01* X8124Y4937D01* X8324Y5137D01* X7799Y5662D02* X7599Y5462D01* X7799Y5262D01* X7999Y5462D01* X7799Y5662D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* Y5887D02* Y5037D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X8324Y1100D02* X8224Y1000D01* X8324Y900D01* X8424Y1000D01* X8324Y1100D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2853Y5417D02* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* X2907Y5384D02* X2947Y5437D01* X2940D02* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2893Y5417D02* X2887Y5411D01* X2860D01* X2853Y5417D01* X2840Y5411D02* X2800D01* X2780Y5384D02* X2753D01* X2747D02* X2787Y5437D01* Y5431D02* Y5391D01* X2780Y5384D01* X2753D02* X2747Y5391D01* Y5431D01* X2787D02* X2780Y5437D01* X2753D01* X2747Y5431D01* X2733Y5417D02* X2727Y5411D01* X2700D01* X2693Y5417D01* Y5431D01* X2700Y5437D01* X2727D01* X2733Y5431D01* Y5391D01* X2727Y5384D01* X2700D01* X2693Y5391D01* X2753Y5474D02* X2747Y5481D01* Y5474D02* X2787Y5527D01* Y5521D02* Y5481D01* X2780Y5474D01* X2753D01* X2747Y5481D02* Y5521D01* X2787D02* X2780Y5527D01* X2753D01* X2747Y5521D01* X2733Y5507D02* X2727Y5501D01* X2700D01* X2693Y5507D01* Y5521D01* X2700Y5527D01* X2727D01* X2733Y5521D01* Y5481D01* X2727Y5474D01* X2700D01* X2693Y5481D01* X2673Y5501D02* X2680Y5494D01* Y5481D01* X2673Y5474D01* X2647D01* X2640Y5481D01* Y5494D01* X2647Y5501D01* X2640Y5521D02* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2647D01* X2640Y5507D01* Y5521D01* X2627D02* X2620Y5527D01* X2593D01* X2587Y5521D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2360Y5617D02* X2320D01* Y5597D02* X2353D01* X2360Y5591D01* Y5571D01* X2353Y5564D01* X2327D01* X2320Y5571D01* Y5597D02* Y5617D01* X2307Y5611D02* X2300Y5617D01* X2320Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2487Y5597D02* X2507D01* X2513Y5591D01* Y5564D02* X2487D01* X2480Y5571D01* Y5577D02* Y5571D01* X2467Y5564D02* Y5617D01* X2427Y5654D02* Y5707D01* X2460D01* X2467Y5701D01* Y5687D01* X2460Y5681D01* X2427D01* X2447D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* Y5701D02* X2553D01* Y5694D01* X2547D01* Y5701D01* X2587Y5661D02* X2593Y5654D01* X2613D01* X2620Y5661D01* Y5667D01* X2613Y5674D01* X2593D01* X2587Y5681D01* X2593Y5687D01* X2613D01* X2620Y5681D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2700D01* X2693Y5687D01* X2640Y5681D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2993Y5654D02* Y5707D01* X3000Y5681D02* X2960D01* Y5707D01* Y5744D02* Y5797D01* Y5771D02* X3000D01* Y5797D02* Y5744D01* X2907Y5797D02* Y5744D01* X2933D01* X2940Y5751D01* Y5771D01* X2933Y5777D01* X2907D01* X2880D02* X2887D01* X2893Y5771D01* Y5744D01* X2873D02* Y5771D01* X2880Y5777D02* X2873Y5771D01* X2867Y5777D01* X2860D01* X2853Y5771D01* Y5777D02* Y5744D01* X2827Y5764D02* X2840D01* Y5751D01* X2833Y5744D01* X2807D01* X2800Y5751D01* Y5791D01* X2807Y5797D01* X2833D01* X2840Y5791D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2693D02* Y5797D01* X2660Y5791D02* X2653D01* Y5784D01* X2660D01* Y5791D01* X2653Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2540Y5777D02* X2533Y5771D01* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2540D01* X2513Y5771D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2460Y5751D02* X2453Y5744D01* X2447D01* X2440Y5751D01* X2453Y5777D02* X2427D01* X2440Y5797D02* Y5751D01* X2407Y5744D02* X2373Y5757D01* X2400Y5777D01* X2373Y5797D02* Y5744D01* X2353D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2347D01* X2353Y5771D01* Y5764D01* X2347Y5757D01* X2320D01* X2240Y5771D02* X2213D01* Y5744D02* X2253D01* X2280D02* X2293D01* X2287D02* Y5797D01* X2280D01* X2253D02* X2213D01* Y5744D01* X2233Y5694D02* X2227D01* Y5701D01* X2233D01* Y5694D01* X2227Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2267D02* X2293D01* X2300Y5661D01* Y5681D01* X2293Y5687D01* X2267D01* Y5634D01* X2253Y5617D02* X2213Y5564D01* X2220D02* X2247D01* X2253Y5571D01* Y5611D01* X2247Y5617D01* X2220D01* X2213Y5611D02* Y5571D01* X2220Y5564D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2320Y5654D02* X2347D01* X2353Y5661D01* Y5681D01* X2347Y5687D01* X2220Y5617D02* X2213Y5611D01* X2200Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2027Y5617D02* X2033Y5611D01* X2040Y5597D01* Y5584D01* X2033Y5571D01* X2027Y5564D01* X2000D01* Y5617D01* X2027D01* X2000Y5654D02* Y5707D01* X2033D01* X2040Y5687D02* X2033Y5681D01* X2000D01* Y5771D02* X2027D01* X2040Y5744D02* X2000D01* Y5797D01* X2040D01* X2053Y5771D02* X2067Y5777D01* X2053Y5797D02* Y5744D01* X2107D02* Y5797D01* X2147D01* X2133Y5771D02* X2107D01* X2093Y5744D02* X2067Y5777D01* X2093Y5797D01* X2053Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2053Y5681D02* X2060Y5687D01* X2080D01* X2087Y5681D01* Y5654D01* X2120D02* X2133D01* X2127D02* Y5687D01* X2120D01* X2127Y5701D02* Y5694D01* X2120D01* Y5701D01* X2127D01* X2173Y5707D02* X2180D01* Y5654D01* X2187D02* X2173D01* X2160Y5611D02* X2167Y5617D01* X2193D01* X2200Y5611D01* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2107D02* X2113Y5564D01* X2140D01* X2147Y5571D01* Y5591D01* X2140Y5597D01* X2107D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2087D02* X2060D01* X2053Y5481D01* Y5501D01* X2060Y5507D01* X2080D01* X2087Y5501D01* Y5494D01* X2080Y5487D01* X2053D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* X2040Y5437D02* X2000D01* Y5384D01* Y5411D02* X2027D01* X2053Y5397D02* X2060Y5404D01* X2087D01* Y5411D02* Y5384D01* X2060D01* X2053Y5391D01* Y5397D01* X2060Y5417D02* X2080D01* X2087Y5411D01* X2107Y5417D02* X2140Y5384D01* X2107D02* X2140Y5417D01* X2180Y5474D02* X2173Y5481D01* X2180Y5487D01* X2187Y5481D01* X2180Y5474D01* X2267D02* X2307Y5527D01* Y5521D02* Y5481D01* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5521D01* X2273Y5527D01* X2300D01* X2307Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* X2433Y5411D02* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2467Y5431D01* Y5417D01* X2460Y5411D01* X2467Y5404D01* Y5391D01* X2460Y5384D01* X2433D01* X2427Y5391D01* Y5404D01* X2433Y5411D01* X2460D01* X2487Y5424D02* X2500Y5437D01* Y5384D01* X2480D02* X2520D01* X2533D02* X2573Y5437D01* X2587Y5431D02* X2593Y5437D01* X2620D01* X2627Y5431D01* X2640D02* Y5417D01* X2647Y5411D01* X2673D01* X2647D02* X2640Y5404D01* Y5391D01* X2647Y5384D01* X2673D01* X2680Y5391D01* Y5404D01* X2673Y5411D01* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2640Y5431D01* X2587D02* Y5391D01* X2593Y5384D01* X2620D01* X2627Y5391D01* Y5404D01* X2620Y5411D01* X2593D01* X2587Y5404D01* Y5494D02* X2593Y5501D01* X2620D01* X2627Y5494D01* Y5481D01* X2620Y5474D01* X2593D01* X2587Y5481D01* Y5521D01* X2573Y5527D02* X2533Y5474D01* X2520D02* X2480D01* X2500D02* Y5527D01* X2487Y5514D01* X2460Y5501D02* X2433D01* X2427Y5494D01* Y5481D01* X2433Y5474D01* X2460D01* X2467Y5481D01* Y5494D01* X2460Y5501D01* X2467Y5507D01* Y5521D01* X2460Y5527D01* X2433D01* X2427Y5521D01* Y5507D01* X2433Y5501D01* X2373Y5481D02* X2380Y5474D01* X2407D01* X2413Y5481D01* Y5494D01* X2400Y5501D01* X2387D01* X2400D02* X2413Y5507D01* Y5521D01* X2407Y5527D01* X2380D01* X2373Y5521D01* X2360D02* Y5507D01* X2353Y5501D01* X2320Y5481D01* Y5474D01* X2360D01* X2373Y5431D02* X2380Y5437D01* X2407D01* X2413Y5431D01* Y5417D01* X2400Y5411D01* X2387D02* X2400D01* X2413Y5404D01* Y5391D01* X2407Y5384D01* X2380D01* X2373Y5391D01* X2360Y5384D02* X2320D01* Y5391D01* X2307D02* Y5431D01* X2320D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* X2307D02* X2300Y5384D01* X2273D01* X2267Y5391D01* Y5384D02* X2307Y5437D01* Y5431D02* X2300Y5437D01* X2273D01* X2267Y5431D01* Y5391D01* X2000Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2127Y5204D01* X2133D01* X2140Y5211D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2173Y5161D02* Y5154D01* X2180D01* Y5161D01* X2173D01* Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5141D02* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2053D02* Y5147D01* X2060D02* X2067D01* X2073Y5141D02* X2067Y5147D01* X2060D02* X2053Y5141D01* X2033Y5114D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X2287Y5154D02* X2293Y5147D01* X2287Y5141D01* X2280Y5147D01* X2287Y5154D01* Y5114D02* X2280Y5121D01* X2287Y5127D01* X2293Y5121D01* X2287Y5114D01* X2227D02* X2240D01* X2233D02* Y5167D01* X2227D01* X2213Y5204D02* Y5237D01* Y5231D02* X2220Y5237D01* X2240D01* X2247Y5231D01* X2267Y5204D02* Y5237D01* Y5231D02* X2273Y5237D01* X2293D01* X2300Y5231D01* Y5204D01* X2320Y5217D02* X2347D01* X2353Y5224D01* Y5231D01* X2347Y5237D01* X2327D01* X2320Y5231D01* Y5211D01* X2327Y5204D01* X2353D01* X2400Y5237D02* X2373D01* X2387Y5257D02* Y5211D01* X2393Y5204D01* X2400D01* X2407Y5211D01* X2447Y5217D02* X2440Y5211D01* X2447Y5204D01* X2453Y5211D01* X2447Y5217D01* Y5231D02* X2453Y5237D01* X2447Y5244D01* X2440Y5237D01* X2447Y5231D01* X2533Y5237D02* Y5224D01* X2547Y5204D01* X2553Y5211D02* Y5224D01* X2547Y5204D02* X2553Y5211D01* X2560Y5204D01* X2573Y5224D01* Y5237D01* X2587D02* Y5224D01* X2600Y5204D01* X2607Y5211D01* Y5224D01* Y5211D02* X2613Y5204D01* X2627Y5224D01* Y5237D01* X2640D02* Y5224D01* X2653Y5204D01* X2660Y5211D01* X2667Y5204D01* X2660Y5211D02* Y5224D01* X2667Y5204D02* X2680Y5224D01* Y5237D01* X2713Y5204D02* X2707Y5211D01* X2713Y5217D01* X2720Y5211D01* X2713Y5204D01* X2720Y5147D02* X2727Y5141D01* Y5121D01* X2720Y5114D01* X2700D01* X2693Y5121D01* Y5141D01* X2700Y5147D01* X2720D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D02* X2587Y5141D01* Y5114D02* Y5147D01* X2593D02* X2613D01* X2547Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X3643Y3614D02* X3659D01* X3670Y3602D01* Y3555D01* X3694Y3531D01* X3738D02* X3760D01* X3770Y3541D01* X3790Y3530D02* Y3531D01* X3796Y3539D01* X3770Y3541D02* Y3616D01* X3757Y3629D01* X3741D01* X3620Y3750D01* Y3800D01* X3600Y3820D01* X3550D01* X3549D01* X3541Y3826D01* X3542Y3835D01* X3550Y3840D01* X3650D01* X3658Y3845D01* X3659Y3854D01* X3700Y3861D02* X3706Y3869D01* X3715Y3868D01* X3720Y3860D01* Y3720D01* X3725Y3712D01* X3734Y3711D01* X3740Y3719D01* Y3720D01* Y3860D01* Y3861D01* X3746Y3869D01* X3755Y3868D01* X3760Y3860D01* Y3700D01* X3659Y3854D02* X3651Y3860D01* X3650D01* X3550D01* X3549D01* X3541Y3866D01* X3542Y3875D01* X3550Y3880D01* X3560D01* X3570Y3890D01* Y3900D01* X3600Y3930D01* X3620D01* X3630Y3920D01* Y3910D01* X3635Y3902D01* X3644Y3901D01* X3650Y3909D01* Y3910D01* Y4010D01* X3670Y4030D01* Y4170D01* Y4171D01* X3676Y4179D01* X3685Y4178D01* X3690Y4170D01* Y4080D01* X3695Y4072D01* X3704Y4071D01* X3710Y4079D01* Y4080D01* Y4170D01* Y4171D01* X3716Y4179D01* X3725Y4178D01* X3730Y4170D01* Y4030D01* X3740Y4020D01* Y3990D01* X3750Y3980D01* X3810D01* X3811D01* X3819Y3974D01* X3818Y3965D01* X3810Y3960D01* X3750D01* X3740Y3950D01* Y3930D01* Y3929D01* X3734Y3921D01* X3725Y3922D01* X3720Y3930D01* Y4010D01* X3710Y4020D01* X3690D01* X3670Y4000D01* Y3910D01* X3680Y3900D01* Y3720D01* X3685Y3712D01* X3694Y3711D01* X3700Y3719D01* Y3720D01* Y3860D01* Y3861D01* X3735Y3896D02* X3743Y3888D01* X3804D01* X3829Y3913D01* Y3929D01* X3796Y3912D02* Y3919D01* X3871Y3994D01* Y4021D01* X3944Y4094D01* Y4203D01* X4002Y4261D01* X4033D01* X4040D02* X4033D01* Y4329D01* X4064D01* Y4313D01* X4033D02* Y4329D01* D01* X4096Y4313D02* Y4328D01* X4127D01* Y4313D01* Y4261D01* X4120D01* X4088D01* X4059Y4232D01* X4021D01* X3961Y4172D01* Y4091D01* X3883Y4013D01* Y3983D01* X3829Y3929D01* X3859Y3890D02* X3858Y3891D01* Y3909D01* X3879Y3930D01* X4069Y4110D02* Y4095D01* X4043Y4069D01* Y4068D01* X4037D01* Y4027D02* X4066D01* X4069Y4030D01* X4039Y3948D02* X4068D01* X4127Y3889D01* X4160D01* Y3882D01* X4126Y3848D01* X4154Y3820D01* X4169D01* X4231D02* X4234D01* X4266Y3852D01* X4240Y3878D01* Y3889D01* X4041Y3870D02* Y3838D01* X4020Y3817D01* Y3800D01* Y3771D02* Y3800D01* Y3771D02* X3998Y3749D01* X3958D01* X3933Y3724D01* Y3648D01* X3920Y3635D01* Y3589D01* X3911Y3580D01* X3869D01* X3806Y3613D02* X3835Y3642D01* X3869D01* Y3662D01* X3880Y3673D01* Y3697D01* X3760Y3700D02* X3780Y3680D01* Y3577D01* X3802Y3555D01* X3914D01* X3939Y3580D01* X4048D01* X4060Y3592D01* Y3642D01* X4091Y3620D02* Y3575D01* X4122Y3544D01* Y3531D01* X4111Y3520D01* X4091D01* X4150Y3490D02* X4140Y3500D01* X4120D01* X4100Y3480D01* Y3460D01* Y3459D01* X4094Y3451D01* X4085Y3452D01* X4080Y3460D01* Y3470D01* X4075Y3478D01* X4066Y3479D01* X4060Y3471D01* Y3470D01* Y3460D01* Y3459D01* X4054Y3451D01* X4045Y3452D01* X4040Y3460D01* Y3470D01* X4035Y3478D01* X4026Y3479D01* X4020Y3471D01* Y3470D01* X3998Y3465D02* X3999D01* X3971Y3493D01* Y3500D01* X4020Y3470D02* Y3454D01* X4010Y3444D01* X3968D01* X3941Y3471D01* Y3523D01* X3924Y3540D01* X3880D01* X3870Y3530D01* Y3529D01* X3864Y3521D01* X3855Y3522D01* X3850Y3530D01* X3845Y3538D01* X3836Y3539D01* X3830Y3531D01* Y3530D01* Y3529D01* X3824Y3521D01* X3815Y3522D01* X3810Y3530D01* X3796Y3539D02* X3805Y3538D01* X3810Y3530D01* X3787Y3507D02* X3794Y3500D01* X3909D01* X4117Y3107D02* X4192D01* D01* X4204Y3131D02* X4195Y3132D01* X4190Y3140D01* Y3160D01* X4185Y3168D01* X4176Y3169D01* X4170Y3161D01* Y3160D01* Y3130D01* Y3129D01* X4164Y3121D01* X4204Y3131D02* X4210Y3139D01* Y3140D01* Y3170D01* X4230Y3190D01* X4244D01* X4269Y3215D01* Y3230D01* X4304Y3196D02* X4331Y3223D01* Y3230D01* X4369Y3218D02* Y3250D01* X4359Y3260D01* Y3294D01* X4329Y3324D01* X4297D01* Y3293D02* X4316D01* X4331Y3278D01* X4302Y3265D02* X4245D01* X4220Y3240D01* Y3228D02* D01* Y3240D01* X4223Y3293D02* X4187D01* D01* X4297Y3356D02* X4335D01* D01* X4334Y3386D02* Y3387D01* X4297D01* X4365Y3415D02* X4322D01* Y3414D01* X4315Y3407D01* X4259D01* X4236Y3430D01* Y3494D01* X4171Y3559D01* X4170D01* Y3621D02* X4210D01* Y3620D01* X4220Y3610D01* Y3540D01* X4225Y3532D01* X4234Y3531D01* X4240Y3539D01* Y3540D01* Y3610D01* X4260Y3630D01* X4280D01* X4290Y3620D01* X4310D01* X4320Y3630D01* X4380D01* X4388Y3635D01* X4389Y3644D01* X4381Y3650D01* X4380D01* X4320D01* X4310Y3640D01* X4290D01* X4270Y3660D01* X4078D01* X4060Y3642D01* X4029Y3620D02* Y3605D01* X3995D01* X4160Y3500D02* Y3520D01* Y3521D01* X4166Y3529D01* X4175Y3528D01* X4180Y3520D01* Y3410D01* X4185Y3402D01* X4194Y3401D01* X4223Y3387D02* X4222Y3388D01* X4220D01* Y3480D01* X4215Y3488D01* X4206Y3489D01* X4200Y3481D01* Y3480D01* Y3410D01* Y3409D01* X4194Y3401D01* X4170Y3440D02* Y3439D01* X4164Y3431D01* X4155Y3432D01* X4150Y3440D01* Y3490D01* X4160Y3500D02* X4170Y3490D01* Y3440D01* X4185Y3356D02* D01* X4223D01* Y3324D02* X4176D01* X4155Y3345D01* Y3411D01* X4134Y3432D01* X3954D01* X3924Y3462D01* X3888D01* X3870Y3480D01* X3835D01* X3825Y3470D01* X3778D01* X3770Y3462D01* Y3463D01* X3283D01* X3222D02* X3210Y3451D01* Y3426D01* X3218Y3418D01* Y3376D01* X3207Y3365D01* X2981D01* X2898Y3282D01* X2837D01* X2806Y3313D01* X2860Y3311D02* Y3369D01* X2827D01* X2805Y3347D01* X2710D01* X2709Y3389D02* X2731Y3367D01* X2800D01* X2830Y3397D01* X2879D01* X2902Y3374D01* X2943D01* X2955Y3386D01* X3197D01* X3245Y3390D02* Y3373D01* X3222Y3350D01* Y3268D01* X3278Y3212D01* X3130Y3171D02* Y3225D01* X3113Y3242D01* X3021Y3250D02* Y3259D01* X2994Y3286D01* X2770Y3390D02* Y3443D01* X2673Y3540D01* X2590D01* X2589D01* X2581Y3546D01* X2582Y3555D01* X2590Y3560D01* X2680D01* X2688Y3565D01* X2689Y3574D01* X2680Y3600D02* X2700Y3620D01* Y3630D01* Y3631D01* X2706Y3639D01* X2715Y3638D01* X2720Y3630D01* Y3580D01* X2730Y3570D01* Y3560D01* X2740Y3550D01* Y3540D01* X2745Y3532D01* X2754Y3531D01* X2760Y3539D01* Y3540D01* Y3560D01* X2750Y3570D01* Y3580D01* X2740Y3590D01* Y3630D01* Y3631D01* X2746Y3639D01* X2755Y3638D01* X2760Y3630D01* Y3610D01* X2765Y3602D01* X2774Y3601D01* X2780Y3609D01* Y3610D01* Y3660D01* Y3661D01* X2786Y3669D01* X2795Y3668D01* X2800Y3660D01* Y3570D01* X2780Y3550D01* Y3520D01* X2784Y3511D01* X2794D01* X2818Y3477D02* X2790Y3449D01* Y3390D01* Y3389D01* X2784Y3381D01* X2775Y3382D01* X2770Y3390D01* X2794Y3511D02* X2798Y3520D01* D01* Y3550D01* X2820Y3572D01* Y3660D01* Y3661D01* X2826Y3669D01* X2835Y3668D01* X2840Y3660D01* Y3590D01* X2845Y3582D01* X2854Y3581D01* X2860Y3589D01* Y3590D01* Y3600D01* X2850Y3610D01* Y3660D01* Y3661D01* X2856Y3669D01* X2865Y3668D01* X2870Y3660D01* Y3593D01* X2880Y3583D01* X2887D01* X2930Y3540D01* X2960D01* X2968Y3545D02* X2960Y3540D01* X2968Y3545D02* X2969Y3554D01* X2961Y3560D01* X2960D02* X2961D01* X2960D02* X2940D01* X2920Y3580D01* Y3610D01* X2929Y3619D01* X3000D01* X3020Y3599D01* Y3580D01* X3040Y3560D01* X3110D01* X3120Y3570D01* Y3640D01* Y3641D01* X3126Y3649D01* X3153Y3663D02* X2985D01* X2958Y3690D01* X2730D01* X2660Y3620D01* X2680Y3600D02* X2590D01* X2582Y3595D01* X2581Y3586D01* X2589Y3580D01* X2590D01* X2680D01* X2681D01* X2689Y3574D01* X2660Y3620D02* X2550D01* X2526Y3596D01* X2449D01* X2382Y3529D01* X2298D01* X2255Y3486D01* Y3291D01* X2413Y3133D01* X2530Y3047D02* X2544Y3033D01* Y3003D01* X2555Y2912D02* Y2890D01* X2543Y2878D01* X2570Y2867D02* Y2849D01* X2543Y2847D02* Y2878D01* X2500Y2865D02* Y2899D01* X2570Y2849D02* X2537Y2816D01* X2449D01* X2429Y2796D01* Y2737D01* X2445D02* Y2701D01* X2440Y2696D01* X2459Y2679D02* Y2688D01* X2476Y2705D01* Y2737D01* X2599Y2694D02* X2586Y2681D01* X2548D01* Y2665D02* X2501D01* X2494Y2658D01* Y2639D01* X2461Y2637D02* X2480Y2618D01* X2548D01* D01* Y2650D02* X2592D01* X2600Y2658D01* X2665Y2752D02* X2666D01* X2705D01* X2717Y2764D01* X2744D01* X2751Y2757D01* X2787D01* X2793Y2763D01* X2804D01* X2825Y2784D01* X2801Y2940D02* Y2887D01* X2829Y2859D01* X2854Y2880D02* Y2855D01* X2875Y2834D01* X2854Y2880D02* X2827Y2907D01* Y2966D01* X2801Y2992D01* Y3020D01* X2860Y3129D02* X2956D01* X3090D01* X3132Y3171D01* X3130D02* X3132D01* X3156D01* X3187Y3140D01* X3207D01* X3152Y3079D02* X3162Y3069D01* X3337D01* X3394Y2951D02* X3400Y2959D01* Y2960D01* Y2990D01* Y2991D01* X3406Y2999D01* X3415Y2998D01* X3420Y2990D01* Y2930D01* X3440Y2910D01* X3622D01* X3654Y2942D01* Y2986D01* X3628Y2967D02* X3600Y2939D01* X3530D01* X3460D01* X3580Y2890D02* X3581D01* X3580D02* X3430D01* X3380Y2940D01* X3370D01* X3360Y2950D01* Y2990D01* Y2991D01* X3366Y2999D01* X3375Y2998D01* X3380Y2990D01* Y2960D01* X3385Y2952D01* X3394Y2951D01* X3337Y3069D02* X3392Y3014D01* X3425D01* X3443Y3032D01* X3506D01* X3527Y3053D01* Y3116D01* X3507Y3136D01* Y3167D01* Y3200D01* X3512Y3205D01* X3469D02* X3476Y3198D01* Y3167D01* X3311Y3222D02* X3370D01* X3392Y3200D01* Y3144D01* X3411Y3125D01* X3430D01* X3444Y3139D01* Y3167D01* X3413D02* X3412Y3168D01* Y3194D01* X3423Y3205D01* X3461Y3243D01* X3499D01* X3567Y3311D01* X3700D01* X3720Y3331D01* Y3348D01* X3738Y3366D01* X3756D01* X3791Y3401D01* X3800Y3380D02* Y3290D01* X3820Y3200D02* Y3230D01* X3815Y3238D01* X3806Y3239D01* X3800Y3231D01* Y3230D01* Y3220D01* X3790Y3210D01* X3750D01* X3740Y3220D01* X3690D01* X3682Y3215D01* X3681Y3206D01* X3689Y3200D01* X3690D01* X3730D01* X3731D01* X3739Y3194D01* X3738Y3185D01* X3730Y3180D01* X3700D01* X3669Y3149D01* Y3110D01* X3649Y3090D01* X3651Y3071D02* Y3009D01* X3668Y2992D01* Y2933D01* X3598Y2863D01* Y2695D01* X3674Y2733D02* X3690Y2749D01* Y2910D01* X3685Y2918D01* X3676Y2919D01* X3670Y2911D01* Y2910D01* Y2770D01* Y2769D01* X3664Y2761D01* X3655Y2762D01* X3650Y2770D01* Y2870D01* X3645Y2878D01* X3636Y2879D01* X3580Y2720D02* Y2830D01* X3560Y2850D01* X3480D01* X3479D01* X3471Y2856D01* X3472Y2865D01* X3480Y2870D01* X3580D01* X3581Y2890D02* X3589Y2884D01* X3588Y2875D01* X3580Y2870D01* X3630D02* Y2871D01* X3636Y2879D01* X3630Y2870D02* Y2689D01* X3608Y2667D01* X3523D01* X3500Y2690D01* X3580Y2720D02* Y2719D01* X3574Y2711D01* X3565Y2712D01* X3560Y2720D01* Y2790D01* X3540Y2810D01* X3494D01* X3490Y2806D01* X3470Y2750D02* Y2687D01* X3500Y2690D02* Y2770D01* X3480Y2790D01* X3250D01* X3242Y2785D01* X3241Y2776D01* X3249Y2770D01* X3250D01* X3450D01* X3470Y2750D01* X3490Y2806D02* X3414D01* X3390Y2830D01* X3330Y2826D02* Y2840D01* X3310Y2860D01* X3390Y2830D02* Y2860D01* X3340Y2910D01* X3310Y2939D02* X3300D01* X3278Y2961D01* X3256Y2939D01* X3240D01* X3105D01* X3083Y2961D01* X2963D01* X2953Y2971D01* Y3007D01* X2985Y3039D01* X3152Y3079D02* X3103D01* X3084Y3060D01* X2991D01* X2961Y3090D01* X2839D01* X2810Y3119D01* Y3172D01* X2774Y3208D01* Y3235D01* X2762Y3247D01* X2704D01* X2703Y3248D01* X2573D01* X2531Y3206D01* X2458D01* X2433Y3231D01* X2312Y3272D02* X2326Y3286D01* X2522D01* X2565Y3329D01* X2622D01* X2647Y3304D01* X2710D01* X2746Y3310D02* Y3309D01* X2747D01* X2730Y3326D01* X2652D01* X2606Y3372D01* X2576D01* X2570Y3366D01* X2334D01* X2311Y3389D01* X2161Y3401D02* X2160Y3402D01* X2128D01* X2119Y3411D01* Y3431D01* X2161Y3457D02* X2162D01* X2126D01* X2119Y3464D01* X2118D01* Y3483D01* X2161Y3579D02* X2124D01* X2089Y3544D01* Y3377D01* X2020Y3309D01* X2054Y3158D02* X2098Y3114D01* X2311D01* X2316Y3076D02* X2102D01* X2078Y3052D01* X2131Y3010D02* Y3003D01* X2155Y2979D01* X2160D01* X2316Y3076D02* X2354Y3114D01* X2413Y3101D02* X2376Y3064D01* X2437Y3080D02* X2473D01* X2566Y3173D01* X2610D01* X2629Y3192D01* X2672Y3191D02* X2702Y3161D01* Y3044D01* X2662Y3004D01* Y2919D01* X2609Y2866D01* Y2730D01* X2625Y2714D01* Y2673D01* X2730Y2568D01* Y2501D01* X2691Y2462D01* X2601Y2427D02* X2587Y2413D01* X2548D01* Y2429D02* X2485D01* X2478Y2422D01* X2449Y2441D02* X2453Y2445D01* X2548D01* Y2461D02* X2470D01* X2449Y2482D01* X2428D01* X2481D02* X2501D01* X2511Y2492D01* X2548D01* Y2508D02* X2436D01* X2396Y2548D01* Y2588D01* X2350Y2617D02* X2268Y2535D01* X2036D01* X2031Y2507D02* X2000Y2476D01* X1948D01* Y2461D02* X2008D01* X2028Y2481D01* X2135Y2676D02* X2130Y2681D01* Y2737D01* X2146D02* Y2690D01* X2161Y2675D01* X2193Y2694D02* D01* Y2737D01* X2209D02* Y2702D01* X2217Y2694D01* Y2674D01* X2253Y2638D01* X2233Y2629D02* D01* X2253Y2638D02* Y2609D01* X2233Y2629D02* X2161Y2701D01* Y2737D01* X2224D02* Y2708D01* X2272Y2660D01* X2281D01* X2278Y2682D02* X2292D01* X2306Y2668D01* Y2633D01* X2265Y2592D01* X2219D01* X2181D02* X2202Y2571D01* X2273D01* X2324Y2622D01* Y2673D01* X2303Y2694D01* X2284D01* X2272Y2737D02* Y2706D01* X2284Y2694D01* X2278Y2682D02* X2256Y2704D01* Y2737D01* X2303D02* Y2814D01* X2395Y2906D01* X2438D01* X2441Y2903D01* X2411Y2885D02* X2319Y2793D01* Y2737D01* X2335D02* Y2780D01* X2420Y2865D01* X2439D01* X2447Y2873D01* X2473D01* X2500Y2865D02* X2487Y2852D01* X2427D01* X2366Y2791D01* Y2737D01* X2382D02* Y2787D01* X2435Y2840D01* X2505D01* X2522Y2857D01* X2543Y2847D02* X2524Y2828D01* X2441D01* X2398Y2785D01* Y2737D01* X2427Y2639D02* X2450Y2616D01* X2464D01* X2478Y2602D01* X2548D01* Y2587D02* X2461D01* X2455Y2593D01* X2447Y2564D02* X2499D01* X2508Y2555D01* X2548D01* Y2539D02* X2504D01* X2491Y2552D01* X2466D01* X2444Y2530D01* X2875Y2636D02* X2879Y2640D01* X2990D01* X2998Y2645D01* X2999Y2654D01* X2991Y2660D01* X2990D01* X2960D01* X2950Y2670D01* Y2750D01* X2960Y2760D01* X3090D01* X3120Y2790D01* X3180D01* X3181D02* X3180D01* X3181D02* X3189Y2784D01* X3188Y2775D01* X3180Y2770D01* X3130D01* X3100Y2740D01* X3020D01* X3012Y2735D01* X3011Y2726D01* X3019Y2720D01* X3020D01* X3100D01* X3101D01* X3109Y2714D01* X3108Y2705D01* X3100Y2700D01* X3080D01* X3072Y2695D01* X3071Y2686D01* X3079Y2680D01* X3080D01* X3094D01* X3110Y2664D01* X3150D01* X3282Y2609D02* X3328Y2563D01* X3374D01* X3434Y2623D01* X3580D01* X3613Y2656D01* X3630D01* X3703Y2729D01* Y2979D01* X3665Y3017D01* Y3067D01* X3756Y3158D01* X3807D01* X3831Y3134D01* X3878D01* X3958Y3054D01* Y3025D01* X3989Y2994D01* X4145D01* X4184Y3033D01* X4181Y3057D02* X4168Y3044D01* X4117D01* Y3076D02* X4118D01* X4192D01* X4181Y3057D02* X4202D01* X4222Y3077D01* X4164Y3121D02* X4155Y3122D01* X4150Y3130D01* Y3180D01* X4160Y3190D01* X4158Y3228D02* Y3247D01* X4126Y3279D01* X3992D01* X3976Y3295D01* X3854D01* X3800Y3290D02* X3770Y3260D01* X3680D01* X3672Y3255D01* X3671Y3246D01* X3679Y3240D01* X3680D01* X3780D01* X3820Y3280D01* Y3370D01* X3850Y3400D01* X3854Y3295D02* X3840Y3281D01* Y3200D01* Y3199D01* X3834Y3191D01* X3825Y3192D01* X3820Y3200D01* X3812Y3183D02* X3848Y3147D01* X4006D01* X3812Y3183D02* X3763D01* X3651Y3071D01* X3629Y3064D02* X3628Y3055D01* X3620Y3050D01* X3550D01* X3542Y3045D01* X3541Y3036D01* X3549Y3030D01* X3550D01* X3626D01* X3636Y3020D01* Y3004D01* X3654Y2986D01* X3629Y3064D02* X3621Y3070D01* X3620D01* X3550D01* X3549D01* X3541Y3076D01* X3542Y3085D01* X3550Y3090D01* X3649D01* X3880Y2870D02* X3881D01* X3889Y2864D01* X3888Y2855D01* X3880Y2850D01* X3909Y2824D02* X3908Y2815D01* X3900Y2810D01* X3960Y2770D02* X3968Y2775D01* X3969Y2784D01* X4039Y2744D02* X4038Y2735D01* X4030Y2730D01* X4009Y2704D02* X4008Y2695D01* X4000Y2690D01* X3969Y2664D02* X3968Y2655D01* X3960Y2650D01* X3660D01* X3652Y2645D01* X3651Y2636D01* X3659Y2630D01* X3660D01* X3920D01* X3921D01* X3929Y2624D01* X3928Y2615D01* X3920Y2610D01* X3661D01* X3660Y2609D01* X3669Y2570D02* X3670D01* X3780D01* X3781D01* X3789Y2564D01* X3788Y2555D01* X3780Y2550D01* X3720D01* X3712Y2545D01* X3711Y2536D01* X3719Y2530D01* X3720D01* X3780D01* X3781D01* X3789Y2524D01* X3788Y2515D01* X3780Y2510D02* X3788Y2515D01* X3780Y2510D02* X3696D01* X3630Y2576D01* X3410D01* X3377Y2543D01* X3351D01* X3470Y2687D02* X3450Y2667D01* X3404D01* X3398Y2661D01* X3219D01* X3200Y2680D01* Y2690D01* X3195Y2698D01* X3186Y2699D01* X3180Y2691D01* Y2690D01* Y2640D01* Y2639D01* X3174Y2631D01* X3165Y2632D01* X3160Y2640D01* Y2654D01* X3150Y2664D01* X2999Y2809D02* X3077D01* X3080Y2806D01* X3310D01* X3330Y2826D01* X3310Y2860D02* X3240D01* X3210Y2830D01* X3180D01* X3160Y2850D01* Y2880D01* X3140Y2900D01* X3100D01* X3099D01* X3091Y2906D01* X3092Y2915D01* X3100Y2920D01* X3190D01* X3230Y2880D01* X3250D01* X3280Y2910D01* X3340D01* X1488Y1982D02* X1524D01* X1549Y1957D01* X1598D01* Y1956D01* X1620Y1924D02* X1606D01* X1598Y1916D01* Y1894D01* X1606Y1748D02* X1646Y1708D01* X1699D01* X1725Y1734D01* Y1769D01* X1901Y1809D02* X1815D01* D01* Y1767D01* X1796Y1748D01* X1764D01* X1725Y1769D02* X1736Y1780D01* Y1809D01* X1766D01* X1788Y1831D01* X1861D01* X1878Y1848D01* X1922Y1866D02* X1921Y1865D01* Y1829D01* Y1828D01* Y1829D02* X1901Y1809D01* X1921Y1828D02* X1962Y1787D01* X2060D01* X1984Y1866D02* X2060D01* Y1899D01* X2073Y1912D01* X2148D01* X2174Y1886D01* X2443D01* X2546Y1783D01* X2657D01* X2755Y1881D01* Y1916D01* X2783Y1944D01* X2805D01* X2834Y1958D02* X2859Y1983D01* X2873D01* X2862Y1959D02* X2851Y1948D01* Y1916D01* X2841Y1906D01* Y1849D01* X2825Y1833D01* X2735D01* X2671Y1769D01* X2542D01* X2539Y1755D02* X2435Y1859D01* X2201D01* X2162Y1820D01* Y1663D01* X2130Y1631D01* Y1571D01* Y1503D01* X2051Y1571D02* Y1504D01* Y1503D02* Y1504D01* X2015D01* X1989Y1478D01* X1964D01* X1926Y1516D01* X1904D01* Y1559D01* X1968Y1623D01* Y1682D01* X1921Y1729D01* Y1748D01* Y1669D02* Y1623D01* X1876Y1578D01* Y1496D01* X1904Y1468D01* Y1437D01* X1903Y1438D01* Y1402D01* X1931Y1374D01* X2051D01* X2101Y1415D02* X2123D01* X2130Y1408D01* Y1374D01* Y1307D01* X2167Y1196D02* X2106D01* X2067Y1157D01* X2000D01* X1976Y1181D01* X2051Y1307D02* Y1374D01* X2101Y1415D02* X2089Y1427D01* Y1699D01* X2150Y1760D01* Y1828D01* X2194Y1872D01* X2439D01* X2542Y1769D01* X2518Y1841D02* X2661D01* X2712Y1892D01* Y1922D01* X2770Y1980D01* X2772Y1956D02* X2795D01* X2821Y1982D01* X2834Y1958D02* X2819D01* X2805Y1944D01* X2871Y1879D02* X2915D01* X2919Y1883D01* X2934Y1854D02* X2911D01* X2903Y1846D01* Y1818D01* X2892Y1807D01* X2734D01* X2682Y1755D01* X2539D01* X2528Y1743D02* X2696D01* X2573Y1907D02* Y2025D01* X2620Y2072D01* Y2158D01* X2694Y2232D01* Y2256D01* X2671Y2248D02* X2600Y2177D01* Y2100D01* X2523Y2023D01* Y1907D01* X2461Y2137D02* Y2182D01* X2420Y2223D01* Y2340D01* X2458Y2378D01* X2459D01* X2458Y2345D02* X2437Y2324D01* Y2233D01* X2476Y2194D01* Y2137D01* X2492D02* Y2198D01* X2511Y2186D02* Y2178D01* X2548Y2193D02* X2518D01* X2511Y2186D01* X2492Y2198D02* X2458Y2232D01* Y2311D01* X2503Y2344D02* D01* X2511Y2335D01* X2548D01* Y2303D02* X2586D01* X2625Y2342D01* X2673D01* X2715Y2365D02* X2693Y2387D01* X2672Y2366D01* X2548D01* Y2382D02* X2593D01* X2604Y2393D01* X2671Y2311D02* D01* X2618D01* X2594Y2287D01* X2548D01* Y2272D02* X2549Y2271D01* X2599D01* X2608Y2280D01* X2670D01* X2694Y2256D01* X2671Y2248D02* X2605D01* X2597Y2256D01* X2548D01* X2730Y2151D02* X2786D01* X2795Y2160D01* X2897D01* X2923Y2134D01* X2949Y2107D02* X2927Y2085D01* X2876D01* X2823Y2087D02* X2776D01* X2774Y2089D01* X2730D01* X3000Y1691D02* Y1852D01* X2972Y1880D01* X2934Y1854D02* X2947Y1867D01* Y1963D01* X2923Y1987D01* X2911Y2011D02* X2952D01* X2977Y1986D01* X2911Y2011D02* X2900Y2000D01* Y1978D01* X2881Y1959D01* X2862D01* X2977Y2086D02* X2978Y2087D01* Y2187D01* X3014Y2223D01* X3103D01* Y2254D02* X2994D01* X2949Y2209D01* Y2107D01* X3120Y2365D02* X2715D01* X2693Y2387D02* X2749Y2443D01* Y2575D01* X2646Y2678D01* Y2717D01* X2625Y2738D01* Y2857D01* X2687Y2919D01* Y3001D01* X2714Y3028D01* Y3160D01* X2742Y3188D01* X2745Y3074D02* X2803D01* Y3072D01* X2896Y2979D01* Y2721D01* X2854Y2679D01* Y2622D01* X2870Y2606D01* X3153D01* X3189Y2570D01* X3295D01* X3340Y2525D01* X3384D01* X3419Y2560D01* X3624D01* X3699Y2485D01* Y2394D01* X3897Y2196D01* Y1929D01* X4066Y1760D01* Y1629D01* X4104Y1591D01* X4261D01* X4312Y1642D01* Y1661D01* Y1737D01* X4305D01* X4215Y1812D02* X4185Y1782D01* X4164D01* X4135Y1753D01* Y1737D01* Y1661D01* X4142D01* X4343Y1837D02* Y1998D01* X4359Y2014D01* X4276D01* X4202Y2088D01* Y2123D01* X4173Y2152D01* X4147D01* X4098Y2201D01* Y2254D01* X4109Y2265D01* Y2428D01* Y2481D01* X4093Y2497D01* X4083D01* Y2559D02* X4071D01* X3946Y2434D01* Y2087D01* X4173Y1860D01* Y1837D01* X4215Y1812D02* Y1904D01* X4058Y2061D01* Y2161D01* X4289Y2324D02* X4232D01* X4202Y2294D01* Y2184D01* X4254Y2132D01* X4312D01* X4469Y1975D01* Y1932D01* X4503Y1898D01* X4547D02* D01* X4503D01* X4491Y1871D02* X4496Y1866D01* X4547D01* Y1835D02* X4499D01* X4432Y1768D01* Y1563D01* X4467Y1543D02* Y1612D01* X4498Y1643D01* Y1646D01* X4547D01* X4617Y1719D02* Y1571D01* X4544Y1498D01* Y1435D01* X4509Y1400D01* X4380D01* X4319Y1339D01* X4270Y1268D02* X4400D01* X4435Y1233D01* X4270Y1268D02* X4185Y1353D01* X3642D01* X3576Y1419D01* X3544Y1428D02* Y1453D01* Y1428D02* X3514Y1398D01* X3448D01* X3441Y1405D01* Y1423D01* X3472Y1420D02* Y1438D01* X3486Y1452D01* X3513D01* Y1453D01* X3615Y1416D02* X3607Y1424D01* X3576Y1419D02* Y1453D01* X3607D02* Y1424D01* X3615Y1416D02* X3851D01* X3607Y1527D02* X3608Y1528D01* X3607D01* Y1565D01* X3580Y1580D02* Y1558D01* X3576Y1554D01* Y1527D01* X3544D02* Y1557D01* X3553Y1566D01* X3522Y1564D02* X3513Y1555D01* Y1527D01* X3675Y1935D02* X3690Y1950D01* X3720D01* X3728Y1955D01* X3729Y1964D01* X3721Y1970D01* X3720D01* X3500D01* X3499D01* X3491Y1976D01* X3492Y1985D01* X3500Y1990D01* X3560D01* X3590Y2021D01* Y2031D01* X3725Y2247D02* X3705Y2267D01* X3204D01* X3191Y2254D01* X3177D01* Y2317D02* X3212D01* X3220Y2309D01* X3588D01* X3597Y2318D01* X3754Y2394D02* X4048Y2688D01* X4079D01* X4060Y2743D02* X4080Y2763D01* X4197D01* X4230Y2730D01* Y2590D01* X4235Y2582D01* X4244Y2581D01* X4270Y2590D02* X4275Y2582D01* X4284Y2581D01* X4290Y2589D01* Y2590D01* X4319Y2628D02* Y2557D01* X4393Y2483D01* X4369Y2460D02* X4270Y2559D01* X4083D01* Y2591D01* X4059Y2615D01* Y2628D01* X4060Y2743D02* Y2720D01* X3930Y2590D01* X3670D01* X3662Y2585D01* X3661Y2576D01* X3669Y2570D01* X3614Y2524D02* X3593Y2503D01* Y2488D01* X3591Y2490D01* X3573Y2436D02* X3597Y2412D01* Y2318D01* X3550Y2321D02* X3571Y2342D01* X3550Y2321D02* X3242D01* X3216Y2347D01* X3138D01* X3120Y2365D01* X3103Y2317D02* Y2318D01* X3078D01* X3057Y2297D01* X3180Y2171D02* X3177Y2174D01* Y2223D01* X3215D01* X3231Y2239D01* X3130Y2184D02* X3129Y2185D01* X3058D01* X3033Y2160D01* X3015D01* X3001Y2146D01* Y2071D01* X2987Y2057D01* X2897D01* X2872Y2032D01* X2771D01* X2772Y1956D02* X2733Y1917D01* Y1886D01* X2663Y1816D01* X2564D01* X2528Y1743D02* X2459Y1812D01* X2387D01* X2404D02* X2387D01* D01* X2345D01* X2327Y1830D01* X2404Y1762D02* X2471D01* D01* X2470Y1712D02* D01* X2404D01* X2469Y1661D02* Y1662D01* X2404D01* Y1612D02* X2467D01* D01* X2468Y1562D02* D01* X2404D01* X2471Y1512D02* X2404D01* D01* D01* Y1462D02* D01* X2473D01* X2471Y1412D02* D01* X2404D01* X2596Y1288D02* X2662D01* X2759Y1385D01* X2856D01* X2969Y1498D01* X3444D01* X3453Y1489D01* X4413D01* X4467Y1543D01* X4432Y1563D02* X4390Y1521D01* X3736D01* X3649Y1608D01* X3337D01* X3272Y1543D01* X2740D01* X2658Y1625D01* X2563D01* X2118Y1949D02* Y1948D01* Y1963D01* X2089Y1992D01* Y2036D01* X2087Y2038D01* X2067Y2058D01* Y2137D01* X2051D02* Y2016D01* X2056Y2012D01* X2016Y1987D02* X1990D01* X1988Y1984D01* X2027Y1915D02* X2046D01* X2056Y1925D01* Y1949D01* Y2012D01* X2118D02* Y2011D01* Y2044D01* X2084Y2078D01* X2083Y2079D01* Y2137D01* X2127Y2083D02* X2146Y2102D01* Y2137D01* X2161D02* Y2087D01* X2166Y2082D01* X2193Y2137D02* Y2070D01* X2169Y2046D01* Y2011D01* X2170Y2012D01* Y1953D01* Y1949D02* Y1953D01* X2169Y1952D01* Y1923D01* X2176Y1916D01* X2201D01* X2446Y1961D02* X2372D01* D01* Y1929D02* Y1931D01* X2422D01* X2372Y1992D02* X2408D01* X2409Y1991D01* X2440Y2024D02* X2372D01* D01* X2349Y2077D02* X2350Y2078D01* Y2137D01* X2277Y2249D02* X2256Y2228D01* Y2137D01* X2209D02* Y2058D01* X2200Y2049D01* Y1994D01* X2232Y1962D01* Y1949D01* D01* Y2012D02* D01* Y2049D01* Y2051D02* Y2049D01* Y2051D02* X2224Y2059D01* Y2137D01* X2240D02* Y2221D01* X2212Y2249D01* X2084Y2309D02* Y2286D01* X2114Y2256D01* Y2137D01* X2098D02* Y2240D01* X2086Y2252D01* X1999Y2222D02* X1997Y2224D01* X1948D01* Y2240D02* X1904D01* X1894Y2250D01* X1948Y2256D02* X1918D01* X1891Y2283D01* Y2290D01* X1879Y2302D01* Y2317D01* X1868Y2328D01* Y2348D01* X1948Y2382D02* X2296D01* X2280Y2398D02* X2287Y2405D01* X2329D02* X2287D01* X2280Y2398D02* X1948D01* Y2429D02* X2000D01* X2028Y2481D02* X2334D01* X2312Y2507D02* X2031D01* X2036Y2535D02* X2009Y2508D01* X1948D01* Y2524D02* X1989D01* X1997Y2532D01* X2008Y2552D02* X2005Y2555D01* X1948D01* Y2571D02* X2022D01* D01* X1948Y2587D02* X2013D01* X2023Y2597D01* X2009Y2618D02* D01* X1948D01* Y2634D02* X1988D01* X1991Y2637D01* X2021D01* X2050Y2659D02* X2052Y2661D01* Y2686D01* X2067Y2701D01* Y2737D01* X2051D02* Y2771D01* X2062Y2782D01* X2103D01* X2114Y2771D01* Y2737D01* Y2646D01* X2124Y2636D01* X2088Y2635D02* X2071Y2652D01* Y2685D01* X2083Y2697D01* Y2737D01* X2034Y2687D02* X2010D01* X2017Y2665D02* X1948D01* Y2681D02* X2004D01* X2010Y2687D01* X2020Y2737D02* Y2781D01* X2017Y2784D01* Y2799D01* X2032Y2814D01* X2055D01* X2075Y2794D01* X2132D01* X2166Y2828D01* Y2905D01* X2296Y3035D01* X2392D01* X2437Y3080D01* X2413Y3101D02* Y3133D01* X2354Y3153D02* X2317Y3190D01* X2142D01* X2074Y3258D01* X1990D01* X1938Y3310D01* X1727D01* X1511Y3526D01* X1488Y3844D02* X1522D01* X1559Y3807D01* X1598D01* D01* Y3745D02* X1632D01* X1665Y3778D01* X1697Y3745D02* X1777D01* X1809Y3776D02* X1807Y3778D01* X1665D01* X1697Y3807D02* X1792D01* X1810Y3825D01* X1886D01* X1511Y3426D02* X1730Y3207D01* X1949D01* X1998Y3158D01* X2054D01* X2078Y3052D02* X1836D01* X1725Y3163D01* X1633D01* X1511Y3041D01* X2078Y4421D02* D01* X2113D01* X2142Y4392D01* X2412D01* X2459Y4345D01* Y4257D01* X2553Y4163D01* X3023D01* X2988Y4360D02* X3362D01* X3395Y4327D01* Y4235D01* X3381Y4200D02* X3389Y4194D01* X3388Y4185D01* X3380Y4180D01* X3240D01* X3232Y4175D01* X3231Y4166D01* X3239Y4160D01* X3240D01* X3380D01* X3381D01* X3389Y4154D01* X3388Y4145D01* X3380Y4140D01* X3210D01* X3023Y4163D02* X3098Y4238D01* X3243D01* X3202Y4213D02* X3084Y4095D01* Y3942D01* X3043Y3901D01* X2949D01* X2658Y3948D02* X2657D01* Y3982D01* X2626D02* Y3931D01* D01* X2594Y3949D02* D01* Y3982D01* X2563D02* Y3930D01* D01* X2763Y4264D02* Y4346D01* X2764Y4347D01* Y4377D01* X2774Y4387D01* X2791D01* X2817Y4413D01* Y4462D01* X2853Y4498D01* X2916Y4430D02* Y4417D01* X2933Y4400D01* X2988D01* Y4420D02* X3228D01* X3308Y4500D01* Y4502D02* Y4500D01* Y4502D02* Y4698D01* X3336Y4726D01* Y4750D01* X3263D02* X3262D01* Y4658D01* X3250Y4646D01* X3112Y4673D02* Y4720D01* X2991D02* X2989D01* Y4596D01* X2988Y4577D01* Y4518D02* X2935D01* X2915Y4498D01* X2853D01* X2893Y4667D02* X2861Y4699D01* Y4751D01* X2786D02* Y4669D01* X2787D01* X2833Y5114D02* X2807D01* X2800Y5121D01* Y5141D01* X2807Y5147D01* X2827D01* X2833Y5141D01* Y5134D01* X2827Y5127D01* X2800D01* X2773Y5121D02* X2760D01* X2753Y5127D01* Y5154D01* X2760Y5161D01* X2773D01* X2780Y5154D01* Y5134D01* X2767D01* Y5147D01* X2780D01* Y5204D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2747Y5217D02* X2773D01* X2780Y5224D01* Y5231D01* X2773Y5237D01* X2800Y5257D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2853Y5167D02* Y5114D01* Y5127D02* X2880Y5147D01* X2853Y5127D02* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X3020D02* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X3020Y5237D02* X3013Y5231D01* Y5211D01* X3020Y5204D01* X3047D01* X3100Y5114D02* X3073D01* X3067Y5121D01* Y5127D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3047Y5114D02* Y5167D01* Y5147D02* X3020D01* X3013Y5141D01* Y5121D01* X3020Y5114D01* X3047D01* X2980D02* X2973Y5121D01* X2980Y5127D01* X2987Y5121D01* X2980Y5114D01* X3322Y4849D02* X3336Y4835D01* Y4812D01* X3410Y4751D02* X3361Y4702D01* Y4671D01* X3308Y4502D02* X3443Y4367D01* Y4180D01* X3469Y4154D01* Y3825D01* X3463Y3819D01* Y3775D01* X3541Y3697D01* X3588D01* X3523Y3765D02* Y3880D01* X3620Y3977D01* Y4222D01* X3660Y4262D01* X3665Y4244D02* X3712D01* X3714Y4242D01* X3752D01* Y4262D02* X3660D01* X3665Y4244D02* X3641Y4220D01* Y4091D01* X3597Y4043D02* Y4349D01* X3687Y4439D01* X3678Y4479D02* X3752D01* X3687Y4439D02* X3752D01* Y4459D02* X3682D01* X3572Y4349D01* Y4065D01* X3547Y4040D01* X3548Y4085D02* Y4349D01* X3678Y4479D01* X3752Y4498D02* X3673D01* X3526Y4351D01* Y4011D01* X3506Y3991D01* X3381Y4200D02* X3380D01* X3320D01* X3319D01* X3311Y4206D01* X3312Y4215D01* X3320Y4220D01* X3380D01* X3395Y4235D01* X3268Y3976D02* Y3957D01* X3286Y3939D01* X3244Y3894D02* X3319Y3819D01* Y3760D01* X3320Y3670D02* X3321Y3669D01* Y3590D01* X3340Y3571D01* Y3490D01* X3345Y3482D01* X3354Y3481D01* X3360Y3489D01* Y3490D01* Y3570D01* Y3571D01* X3366Y3579D01* X3375Y3578D01* X3380Y3570D01* Y3520D01* X3385Y3512D01* X3394Y3511D01* X3400Y3519D01* Y3520D01* Y3570D01* Y3571D01* X3406Y3579D01* X3415Y3578D01* X3420Y3570D01* Y3520D01* X3425Y3512D01* X3434Y3511D01* X3440Y3519D01* Y3520D01* Y3570D01* Y3571D01* X3446Y3579D01* X3455Y3578D01* X3460Y3570D01* Y3500D01* X3465Y3492D01* X3474Y3491D01* X3498D02* X3525Y3518D01* X3698D01* X3709Y3507D01* X3787D01* X3790Y3530D02* X3779Y3519D01* X3726D01* X3714Y3531D01* X3694D01* X3738D02* X3729Y3540D01* Y3575D01* X3690Y3614D01* Y3627D01* X3642Y3675D01* X3535D01* X3448Y3762D01* Y3867D01* X3429Y3886D01* Y4096D01* X3405Y4120D01* X3210D01* X3209D01* X3201Y4126D01* X3202Y4135D01* X3210Y4140D01* X3202Y4165D02* X3170Y4133D01* Y3919D01* X3146Y3895D01* X3474Y3491D02* X3480Y3499D01* Y3500D01* Y3630D01* Y3631D01* X3486Y3639D01* X3495Y3638D01* X3500Y3630D01* Y3540D01* X3505Y3532D01* X3514Y3531D01* X3520Y3539D01* Y3540D01* Y3590D01* X3550Y3620D01* X3554D01* X3562Y3628D01* X3628D01* X3643Y3614D01* X3647Y3640D02* X3522D01* X3468Y3694D01* X3184D01* X3153Y3663D01* X3162Y3641D02* X3190Y3669D01* X3240D01* X3320Y3670D02* X3315Y3678D01* X3306Y3679D01* X3300Y3671D01* Y3670D01* Y3653D01* X3290Y3643D01* X3200D01* X3160Y3603D01* Y3530D01* X3150Y3520D01* X3030D01* X3029D01* X3021Y3526D01* X3022Y3535D01* X3030Y3540D01* X3130D01* X3140Y3550D01* Y3640D01* X3135Y3648D01* X3126Y3649D01* X3261Y3550D02* Y3505D01* X3271Y3495D01* Y3475D01* X3283Y3463D01* X3288Y3442D02* X3270D01* X3249Y3463D01* X3222D01* X3249Y3418D02* X3250Y3419D01* X3753D01* X3758Y3424D01* X3810D01* X3800Y3380D02* X3820Y3400D01* Y3414D01* X3810Y3424D01* X3850Y3400D02* X3892D01* X3904Y3388D01* X3961D01* X4001Y3348D01* X4020D01* X4028Y3340D01* X4090D01* X4091D01* X4099Y3334D01* X4098Y3325D01* X4090Y3320D01* X4030D01* X4022Y3315D01* X4021Y3306D01* X4029Y3300D01* X4030D01* X4101D01* X4107Y3294D01* X4149D01* X4190Y3253D01* Y3206D01* X4174Y3190D01* X4160D01* X4126Y3197D02* X4108D01* X4091Y3180D01* Y3170D01* X4029D02* X4006Y3147D01* X4043Y3107D02* X4019D01* X4004Y3122D01* X4043Y3076D02* X4013D01* X3996Y3093D01* Y3044D01* D01* X4043D01* X4101Y2950D02* X4126D01* X4229Y3053D01* X4251Y3048D02* X4176Y2973D01* Y2952D01* X4114Y2890D01* Y2859D01* X4091Y2836D01* Y2804D01* X4071Y2870D02* Y2878D01* X4096Y2903D01* X4069Y2917D02* X4063D01* X4039Y2941D01* Y2950D01* X4010Y2908D02* Y2872D01* X4011D01* X4009Y2870D01* X3969Y2784D02* X3961Y2790D01* X3960D01* X3730D01* X3729D01* X3721Y2796D01* X3722Y2805D01* X3730Y2810D01* X3900D01* X3909Y2824D02* X3901Y2830D01* X3900D01* X3730D01* X3729D01* X3721Y2836D01* X3722Y2845D01* X3730Y2850D01* X3880D01* Y2870D02* X3740D01* X3720Y2890D01* Y2980D01* Y2983D01* X3724Y2992D01* X3732Y2998D01* X3741Y3000D01* X3751Y2997D01* X3758Y2990D01* X3760Y2980D01* Y2920D01* X3790Y2890D01* X3890D01* X3990Y2790D01* X4077D01* X4091Y2804D01* X3960Y2770D02* X3730D01* X3722Y2765D01* X3721Y2756D01* X3729Y2750D01* X3730D01* X4030D01* X4031D01* X4039Y2744D01* X4030Y2730D02* X3800D01* X3792Y2725D01* X3791Y2716D01* X3799Y2710D01* X3800D01* X4000D01* X4001D01* X4009Y2704D01* X4000Y2690D02* X3690D01* X3682Y2685D01* X3681Y2676D01* X3689Y2670D01* X3690D01* X3960D01* X3961D01* X3969Y2664D01* X4250Y2771D02* Y2770D01* Y2590D01* Y2589D01* X4244Y2581D01* X4270Y2590D02* Y2770D01* X4265Y2778D01* X4256Y2779D01* X4250Y2771D01* X4332Y2800D02* Y2844D01* X4341Y2853D01* Y2870D01* X4331Y3020D02* X4305Y3046D01* X4229Y3053D02* Y3058D01* X4222Y3077D02* X4237D01* X4251Y3063D01* Y3048D01* X4269Y3020D02* X4170Y2921D01* Y2845D01* X4139Y2870D02* X4140Y2869D01* Y2800D01* X4170Y2845D02* X4195Y2820D01* X4260D01* X4290Y2790D01* Y2590D01* X4469Y2628D02* Y2615D01* X4490Y2594D01* X4548D01* Y2528D01* Y2461D01* X4469Y2428D02* X4488D01* X4521Y2395D01* Y2217D01* X4548Y2190D01* X4817D01* X4996Y2011D01* Y1898D01* Y1866D02* X5039D01* X5243Y1662D01* X5358D01* X5375Y1679D01* Y1725D01* X5405Y1755D01* X5445D01* Y1729D02* X5403D01* X5389Y1715D01* Y1675D01* X5346Y1632D01* Y1622D01* X5410Y1289D02* X5413Y1286D01* Y1242D01* X5405Y1234D01* Y1220D01* X5453D01* Y1209D01* X5445Y1704D02* X5505D01* X5595Y1614D01* X5766D01* X5796D01* X5820Y1590D01* X5876D01* X5841Y1614D02* X5856D01* X5877Y1635D01* Y1661D01* X5873Y1662D02* X5874D01* X5877D01* X5874D02* X5873Y1661D01* X5877D01* Y1662D02* Y1688D01* X5856Y1709D01* X5841D01* Y1677D02* X5858D01* X5873Y1662D01* Y1661D02* X5858Y1646D01* X5841D01* X5752Y1677D02* X5731Y1698D01* Y1736D01* X5712Y1755D01* X5673D01* Y1678D02* X5604D01* X5542Y1740D01* Y1850D01* X5530Y1862D01* X5315Y1965D02* X5357D01* X5387Y1935D01* Y1902D01* X5406Y1883D01* X5445D01* Y1857D02* X5383D01* X5365Y1839D01* X5315D01* Y1830D01* X5255D01* X5445Y1781D02* X5406D01* X5361Y1736D01* Y1726D01* X5346Y1711D01* Y1697D01* Y1772D02* X5373D01* X5407Y1806D01* X5445D01* Y1832D02* X5485D01* X5516Y1801D01* Y1727D01* X5597Y1646D01* X5766D01* Y1677D02* X5752D01* X5857Y1745D02* X5836Y1766D01* X5779D01* X5733Y1812D01* Y1821D01* X5722Y1832D01* X5673D01* Y1806D02* X5722D01* X5737Y1791D01* Y1764D01* X5756Y1745D01* X5790D01* X5766Y1721D01* Y1709D01* Y1677D02* X5796D01* X5805Y1686D01* Y1725D01* X5825Y1745D01* X5803Y1835D02* Y1839D01* X5750D01* X5732Y1857D01* X5673D01* Y1883D02* X5713D01* X5733Y1903D01* Y1935D01* X5763Y1965D01* X5803D01* X5921Y1890D02* X5944Y1913D01* X5984D01* X5998Y1927D01* Y1949D01* X6012Y1963D01* X6104D01* X6134Y1933D01* X6167D01* Y1965D02* X6151D01* Y1967D01* X6105Y2013D01* X6010D01* X5998Y2001D01* Y1977D01* X5975Y1954D01* Y1936D01* X6021D02* X6044Y1913D01* X6111D01* X6122Y1902D01* X6167D01* Y1870D02* X6122D01* X6120Y1868D01* X6043D01* X6021Y1890D01* X5975D02* X6003Y1862D01* X6027D01* X6052Y1837D01* Y1828D01* X6067Y1813D01* X6083D01* X6099Y1797D01* Y1787D01* X6116Y1770D01* X6144D01* X6154Y1780D01* X6167D01* Y1811D02* X6196D01* X6207Y1800D01* Y1711D01* X6192Y1696D01* X6106D01* X6089Y1713D01* X6064D01* X6045Y1732D01* Y1748D01* X6030Y1763D01* X6013D01* X6000Y1776D01* Y1798D01* X5987Y1811D01* X5946D01* X5921Y1836D01* X6021D02* X6047Y1810D01* Y1782D01* X6066Y1763D01* X6088D01* X6103Y1748D01* X6167D01* Y1717D02* X6130D01* D01* X6120Y1664D02* X6103Y1647D01* Y1583D01* X6084Y1564D01* X6129Y1550D02* X6164Y1515D01* X6383D01* X6359Y1541D02* X6337Y1563D01* X6331D01* D01* D01* X6322D01* X6295Y1536D01* X6210D01* X6183Y1563D01* X6167D01* X6242D02* X6257D01* X6279Y1584D01* Y1610D01* X6276D01* X6279D02* X6276D01* X6275D01* X6276D01* X6279D02* Y1636D01* X6257Y1657D01* X6242D01* Y1626D02* X6260D01* X6276Y1610D01* X6275D02* X6260Y1594D01* X6242D01* X6204Y1648D02* Y1663D01* X6217Y1676D01* X6294D01* X6355Y1737D01* Y2052D01* X6093Y2314D01* X5943D01* X5921Y2336D01* X6021Y2290D02* X6078D01* X6325Y2043D01* Y1740D01* X6373Y1695D02* X6422Y1744D01* X6459D01* X6491Y1694D02* X6459D01* X6491D02* X6520Y1665D01* Y1481D01* X6475Y1436D01* X6447Y1401D02* X6435Y1413D01* X6412D01* X6389Y1436D01* X6375D01* X6360Y1414D02* X6354Y1420D01* Y1451D01* X6366Y1463D01* X6394D01* X6421Y1490D01* X6321D02* X6342Y1469D01* Y1380D01* X6320Y1358D01* Y1278D01* X6307Y1265D01* Y1226D01* Y1152D02* Y1189D01* X6337Y1207D02* X6319Y1189D01* X6307D01* X6287D01* X6276Y1178D01* Y1152D01* Y1226D02* Y1289D01* X6298Y1311D01* Y1399D01* X6275Y1422D01* Y1436D01* X6300Y1425D02* Y1442D01* X6285Y1457D01* X6264D01* X6254Y1447D01* Y1373D01* X6257Y1370D01* Y1292D01* X6244Y1279D01* Y1226D01* X6213D02* Y1347D01* X6242Y1376D01* Y1452D01* X6259Y1469D01* X6307D01* X6321Y1455D01* Y1436D01* X6300Y1425D02* X6321Y1404D01* Y1390D01* X6495Y1594D02* D01* X6459D01* Y1644D02* X6422D01* X6395Y1617D01* Y1577D01* X6454Y1518D01* Y1418D01* X6475Y1397D01* Y1336D01* X6421D02* X6461Y1296D01* Y1226D01* X6491Y1230D02* Y1207D01* X6473Y1189D01* X6461D02* Y1152D01* X6429D02* Y1178D01* X6441Y1189D01* X6429Y1226D02* Y1290D01* X6398Y1277D02* X6352Y1323D01* Y1345D01* X6370Y1363D01* X6384D01* X6398Y1377D01* Y1401D01* X6385Y1414D01* X6360D01* X6375Y1390D02* X6340Y1355D01* Y1297D01* X6366Y1271D01* Y1226D01* X6337Y1207D02* Y1230D01* X6473Y1189D02* X6461D01* X6441D01* X6398Y1226D02* Y1277D01* X6429Y1290D02* X6398Y1321D01* Y1348D01* X6415Y1365D01* X6432D01* X6447Y1380D01* Y1401D01* X6421Y1436D02* X6442Y1457D01* Y1505D01* X6432Y1515D01* X6383D01* Y1558D01* X6373Y1568D01* Y1695D01* X6325Y1740D02* X6278Y1693D01* X6213D01* X6177Y1657D01* X6167D01* X6204Y1648D02* X6182Y1626D01* X6167D01* Y1594D02* X6154D01* X6129Y1569D01* Y1550D01* X6084Y1564D02* X5435D01* X5037Y1166D01* X4778D01* X4748Y1136D01* X4612D01* X4604Y1144D01* X2219D01* X2167Y1196D01* X2250Y1212D02* X2296D01* X2315Y1193D01* X2250Y1312D02* D01* X2314D01* X2339Y1337D01* X2520D01* X2472Y1312D02* D01* X2524D02* X2626Y1414D01* X2650D02* X2626D01* X2618Y1435D02* Y1474D01* X2587D02* Y1440D01* X2534Y1387D01* X2484Y1437D01* X2339D01* X2314Y1462D02* D01* X2339Y1437D02* X2315Y1413D01* X2251D01* X2250Y1412D01* Y1462D02* X2314D01* X2339Y1487D01* X2497D01* X2522Y1462D01* Y1442D01* X2537Y1427D01* X2555Y1445D01* Y1474D01* X2650D02* Y1414D01* D01* X2618Y1435D02* D01* X2520Y1337D01* X2524Y1312D02* X2472D01* X2404D01* X2326Y1277D02* X2336Y1287D01* X2541D01* X2571Y1257D01* X2677D01* X2709Y1289D01* X3884D01* X3977Y1196D01* X4592D01* X4615Y2014D02* X4614D01* Y1965D01* X4646D02* Y2014D01* D01* X4740Y1965D02* Y1941D01* X4741Y1940D01* X4794Y1930D02* Y1878D01* X4898Y1774D01* X5070Y1754D02* Y1552D01* X4870Y1352D01* X4869Y1387D02* X4996Y1514D01* Y1583D01* Y1677D02* X5045D01* D01* X5070Y1754D02* X5052Y1772D01* X4996D01* X4898Y1774D02* Y1516D01* X4929Y1565D02* Y1516D01* Y1565D02* D01* X4874Y1572D02* X4866D01* X4835Y1541D01* Y1516D01* X4870Y1352D02* Y1292D01* X4731Y1153D01* X4635D01* X4592Y1196D01* X4716Y1193D02* Y1336D01* X4719Y1339D01* X4678Y1379D01* Y1453D01* X4692Y1467D01* X4714D01* X4740Y1493D01* Y1516D01* X4709D02* Y1567D01* D01* X4682Y1572D02* D01* X4677D01* X4646Y1541D01* Y1516D01* X4614D02* Y1544D01* X4638Y1568D01* Y1572D01* X4475Y1446D02* Y1454D01* X4600Y1579D01* Y1761D01* X4589Y1772D01* X4547D01* X4617Y1719D02* X4749Y1851D01* Y1915D01* X4741Y1923D01* Y1940D01* X4794Y1930D02* X4803Y1939D01* Y1965D01* Y2012D01* D01* X4804D01* Y2014D01* X4835D02* D01* Y1965D01* X4930Y1966D02* X4929Y1965D01* D01* X4898D02* Y2040D01* X4875Y2063D01* X4651D01* X4503Y2211D01* Y2311D01* X4419Y2428D02* Y2382D01* X4423Y2378D01* X4432D01* X4442Y2368D01* Y2345D01* X4456Y2331D01* X4483D01* X4503Y2311D01* X4401Y2203D02* X4375Y2229D01* Y2272D01* X4326D01* X4289Y2324D02* X4319Y2354D01* Y2428D01* X4369D02* Y2460D01* X4393Y2483D02* Y2340D01* X4414Y2319D01* X4452D01* X4488Y2283D01* Y2201D01* X4646Y2043D01* X4843D01* X4866Y2020D01* Y1965D01* X4930Y1966D02* Y2040D01* X4838Y2132D01* X4631D01* X4604Y2159D01* X4764Y2322D02* X4827D01* Y2260D02* X4894D01* Y2272D01* Y2260D02* Y2231D01* X4924Y2201D01* X4872Y2747D02* Y2781D01* X4895Y2804D01* Y2855D01* X4916Y2876D01* Y2916D01* X4904Y2928D01* Y2962D01* X4936Y2994D01* X4985D01* Y3094D02* Y3048D01* X5021Y3012D01* Y2979D01* X5001Y2959D01* Y2930D01* X4935Y2944D02* Y2897D01* X4979Y2853D01* Y2825D01* X5009Y2795D01* Y2747D01* X4978D02* Y2802D01* X4935Y2844D01* X5035D02* X5072Y2807D01* Y2747D01* X5041D02* Y2794D01* X5001Y2834D01* Y2861D01* X5020Y2880D01* Y2911D01* X5001Y2930D01* X5035Y2944D02* Y2895D01* X5076Y2854D01* Y2837D01* X5103Y2810D01* Y2788D01* X5127Y2764D01* Y2748D01* X5128Y2747D01* X5222D02* Y2782D01* X5204Y2800D01* Y2864D01* X5216Y2876D01* Y2914D01* X5202Y2928D01* Y2964D01* X5221Y2983D01* Y3009D01* X5185Y3045D01* Y3094D01* X5085D02* Y3044D01* X5170Y2959D01* Y2930D01* X5151Y2911D01* Y2881D01* X5191Y2841D01* Y2747D01* X5159D02* Y2777D01* X5104Y2832D01* Y2863D01* X5127Y2886D01* Y2901D01* X5085Y2943D01* Y2994D01* X4885Y3047D02* X4641Y2803D01* X4537D01* Y2834D02* X4572D01* X4885Y3147D01* Y3194D02* Y3147D01* Y3094D02* Y3047D01* Y2994D02* Y2946D01* X4853Y2914D01* Y2871D01* X4874Y2850D01* Y2831D01* X4841Y2798D01* Y2747D01* X4809D02* Y2819D01* X4835Y2844D01* Y2944D02* Y2893D01* X4778Y2836D01* Y2748D01* Y2747D01* X4691Y2725D02* Y2796D01* X4701Y2806D01* X4692Y2832D02* X4700D01* X4692D02* X4629Y2769D01* Y2725D01* X5435Y2844D02* X5478Y2802D01* Y2747D01* X5509D02* Y2776D01* X5491Y2794D01* Y2836D01* X5435Y2892D01* Y2944D01* X5485Y2994D02* Y2948D01* X5518Y2915D01* Y2877D01* X5504Y2863D01* Y2808D01* X5541Y2771D01* Y2747D01* X5572D02* Y2807D01* X5535Y2844D01* X5735Y2944D02* Y2893D01* X5772Y2856D01* Y2747D01* X5741D02* Y2777D01* X5704Y2814D01* Y2862D01* X5718Y2876D01* Y2905D01* X5629Y2994D01* X5585D01* X5535Y2944D02* Y2894D01* X5642Y2787D01* X5667D01* X5678Y2776D01* Y2747D01* X5709D02* Y2782D01* X5686Y2805D01* Y2845D01* X5485Y3046D01* Y3094D01* X5385D02* Y3045D01* X5421Y3009D01* Y2979D01* X5398Y2956D01* Y2931D01* X5420Y2909D01* Y2881D01* X5391Y2852D01* Y2830D01* X5422Y2799D01* Y2747D01* X5391D02* Y2776D01* X5370Y2797D01* Y2861D01* X5335Y2896D01* Y2944D01* X5285Y2994D02* Y2945D01* X5253Y2913D01* Y2877D01* X5277Y2853D01* Y2814D01* X5327Y2764D01* Y2748D01* X5328Y2747D01* X5359D02* Y2773D01* X5300Y2832D01* Y2861D01* X5323Y2884D01* Y2910D01* X5304Y2929D01* Y2962D01* X5318Y2976D01* Y3012D01* X5285Y3045D01* Y3094D01* X5236Y3160D02* X5348Y3272D01* Y3321D01* X5386Y3359D01* Y3404D01* X5418D01* X5470Y3456D01* X5545D01* Y3506D02* X5455D01* X5423Y3474D01* X5386D01* X5324D02* X5284D01* X5324Y3544D02* X5284D01* X5286Y3546D01* X5386Y3544D02* X5457D01* X5469Y3556D01* X5545D01* Y3606D02* X5469D01* X5461Y3614D01* X5386D01* X5218Y3699D02* X5103D01* Y3694D01* X5101D01* X5154Y3599D02* X5101D01* X5039D02* X5012Y3626D01* Y3667D01* X5039Y3694D01* X4936D01* X4885Y3745D02* Y3794D01* X4936Y3694D02* X4836Y3594D01* X4785D01* X4769Y3528D02* X4754Y3513D01* X4718D01* X4735Y3494D02* X4785D01* X4769Y3528D02* X4805D01* X4839Y3494D01* X4885D01* X4735D02* X4700Y3459D01* X4672D01* X4653Y3478D01* X4620D01* X4598Y3456D01* Y3430D01* X4552Y3384D01* X4537D01* Y3353D02* X4552D01* X4635Y3436D01* Y3444D02* Y3436D01* X4628Y3406D02* X4590Y3368D01* Y3305D01* X4603Y3300D02* X4573Y3270D01* Y3237D01* X4552Y3216D01* X4537D01* Y3184D02* X4551D01* X4587Y3220D01* Y3265D01* X4627Y3305D01* X4590D02* X4558Y3273D01* Y3256D01* X4549Y3247D01* X4537D01* Y3153D02* X4552D01* X4571Y3172D01* Y3184D01* X4601Y3214D01* X4635Y3244D02* Y3223D01* X4591Y3179D01* Y3136D01* X4554Y3099D01* Y3097D01* X4537D01* X4635Y3044D02* X4583Y2992D01* Y2928D01* X4552Y2897D01* X4537D01* Y2866D02* X4563D01* X4600Y2903D01* Y2959D01* X4735Y3094D01* Y3144D01* X4685Y3244D02* X4735D01* X4785Y3246D02* Y3294D01* X4735Y3344D02* X4683D01* X4644Y3305D01* X4627D01* X4603Y3300D02* Y3359D01* X4627Y3383D01* X4646D01* X4669Y3360D01* X4628Y3406D02* X4646D01* X4684Y3444D01* X4735D01* Y3394D02* X4701Y3360D01* X4669D01* X4735Y3394D02* X4785D01* X4835D02* X4885D01* X4835D02* X4702Y3261D01* X4669D01* X4650Y3280D01* X4622D01* X4601Y3259D01* Y3214D01* X4685Y3244D02* X4604Y3163D01* Y3100D01* X4570Y3066D01* X4537D01* Y3034D02* X4573D01* X4785Y3246D01* X4589Y3485D02* X4551Y3447D01* X4537D01* Y3416D02* X4551D01* X4578Y3443D01* Y3456D01* X4622Y3500D01* X4641D01* X4669Y3528D01* X4703D01* X4718Y3513D01* X4735Y3544D02* X4687D01* X4653Y3578D01* X4616D01* X4589Y3551D01* Y3485D01* X4558Y3500D02* X4531D01* X4735Y3994D02* X4703Y3962D01* X4672D01* X4637Y3997D01* X4537D01* Y3966D02* X4614D01* X4635Y3944D01* X4622Y4013D02* X4603Y4032D01* Y4070D01* X4570Y4103D01* X4537D01* Y4134D02* X4571D01* X4635Y4070D01* Y4044D01* X4622Y4013D02* X4652D01* X4664Y4025D01* X4703D01* X4716Y4012D01* X4753D01* X4785Y3994D02* X4735D01* Y3944D02* X4689D01* X4658Y3913D01* X4605D01* X4584Y3934D01* X4537D01* Y3903D02* X4590D01* X4599Y3894D01* X4636D01* X4667Y3863D01* X4685Y3844D02* X4654Y3813D01* X4613D01* X4610Y3816D01* X4537D01* Y3847D02* X4632D01* X4635Y3844D01* X4785Y3794D02* Y3744D01* X4735D02* X4686D01* X4652Y3710D01* X4628D01* X4590Y3672D01* Y3660D01* X4577Y3647D01* X4537D01* Y3616D02* X4569D01* X4602Y3649D01* Y3659D01* X4624Y3681D01* X4647D01* X4665Y3663D01* X4704D01* X4785Y3744D01* X4885Y3745D02* X4753Y3613D01* X4718D01* X4703Y3628D01* X4668D01* X4641Y3601D01* X4616D01* X4568Y3553D01* X4537D01* Y3584D02* X4575D01* X4635Y3644D01* Y3744D02* X4627Y3753D01* X4537D01* Y3784D02* X4650D01* X4672Y3762D01* X4702D01* X4785Y3845D01* Y3894D02* Y3845D01* X4735Y3844D02* X4685D01* X4667Y3863D02* X4703D01* X4834Y3994D01* X4885D02* X4834D01* X4885Y4094D02* X4835D01* X4785D02* Y4145D01* X4705Y4225D01* X4666D01* X4654Y4213D01* X4617D01* X4623Y4188D02* X4641D01* X4685Y4144D01* X4735D01* Y4244D02* X4689D01* X4643Y4290D01* X4624D01* X4567Y4347D01* X4537D01* Y4316D02* X4564D01* X4635Y4244D01* X4667Y4327D02* X4703D01* X4835Y4195D01* X4884D01* X4885Y4194D01* X4835Y4094D02* X4753Y4012D01* X4735Y4044D02* X4686D01* X4604Y4126D01* Y4141D01* X4537Y4166D02* X4579D01* X4604Y4141D01* X4635Y4144D02* X4582Y4197D01* X4537D01* Y4253D02* X4576D01* X4592Y4237D01* Y4219D01* X4623Y4188D01* X4617Y4213D02* X4604Y4226D01* Y4252D01* X4572Y4284D01* X4537D01* X4667Y4327D02* X4652Y4312D01* X4623D01* X4601Y4334D01* Y4376D01* X4633Y4382D02* X4645D01* X4683Y4344D01* X4735D01* X4785Y4294D02* Y4348D01* X4707Y4426D01* X4666D01* X4686Y4444D02* X4604Y4526D01* Y4605D01* X4575Y4634D01* X4537D01* Y4603D02* X4553D01* X4592Y4564D01* Y4510D01* X4635Y4467D01* Y4444D01* X4601Y4376D02* X4563Y4414D01* Y4441D01* X4551Y4453D01* X4537D01* Y4484D02* X4554D01* X4575Y4463D01* Y4420D01* X4635Y4360D01* Y4344D02* Y4360D01* X4633Y4382D02* X4588Y4427D01* Y4477D01* X4549Y4516D01* X4537D01* Y4547D02* X4568D01* X4580Y4535D01* Y4503D01* X4601Y4482D01* Y4432D01* X4620Y4413D01* X4653D01* X4666Y4426D01* X4686Y4444D02* X4735D01* X4849Y4511D02* X4871Y4533D01* Y4559D01* X4789Y4641D01* Y4656D01* X4750Y4695D01* X4717D01* X4697Y4715D01* Y4743D01* X4666D02* Y4714D01* X4735Y4644D01* X4685Y4594D02* X4603Y4677D01* Y4743D01* X4634D02* Y4689D01* X4779Y4544D01* X4835D01* X4849Y4511D02* Y4483D01* X4885Y4447D01* Y4394D01* Y4347D02* Y4294D01* Y4347D02* X4643Y4589D01* Y4608D01* X4554Y4697D01* X4537D01* Y4666D02* X4562D01* X4631Y4597D01* Y4548D01* X4635Y4544D01* X4835Y4644D02* X4781Y4698D01* X4773D01* X4753Y4718D01* Y4743D01* X4784D02* Y4710D01* X4798D01* X4826Y4682D01* X4846D01* X4935Y4593D01* Y4544D01* X4967Y4558D02* X4950Y4575D01* Y4611D01* X4967Y4628D01* X4935Y4644D02* X4905D01* X4855Y4694D01* X4835D01* X4816Y4713D01* Y4743D01* X4847D02* Y4709D01* X4860D01* X4884Y4685D01* X4944D01* X4967Y4662D01* Y4628D01* X4989Y4670D02* X4953Y4706D01* Y4743D01* X5047D02* Y4706D01* X5085Y4668D01* Y4646D01* X5119Y4612D01* Y4578D01* X5085Y4544D01* Y4494D01* X5135Y4544D02* Y4593D01* X5169Y4627D01* Y4663D01* X5134Y4698D01* Y4743D01* X5103D02* Y4677D01* X5135Y4644D01* X5035Y4544D02* Y4596D01* X5068Y4629D01* Y4664D01* X5054Y4678D01* X5030D01* X5016Y4692D01* Y4743D01* X4984D02* Y4695D01* X5035Y4644D01* X4989Y4670D02* Y4641D01* X5017Y4613D01* Y4583D01* X4985Y4551D01* Y4494D01* X4967Y4558D02* Y4531D01* X4954Y4518D01* Y4476D01* X4985Y4445D01* Y4394D01* X5185D02* Y4444D01* X5323Y4582D01* Y4606D01* X5298Y4631D01* Y4673D01* X5235Y4644D02* X5197Y4682D01* Y4743D01* X5166D02* Y4689D01* X5193Y4662D01* Y4636D01* X5220Y4609D01* Y4584D01* X5185Y4549D01* Y4494D01* X5235Y4544D02* Y4596D01* X5271Y4632D01* Y4695D01* X5303Y4727D01* Y4743D01* X5298Y4673D02* X5334Y4709D01* Y4743D01* X5366D02* Y4675D01* X5335Y4644D01* X5397Y4743D02* Y4706D01* X5379Y4688D01* Y4639D01* X5335Y4595D01* Y4544D01* X5285Y4494D02* X5338D01* X5418Y4574D01* Y4613D01* X5399Y4632D01* Y4673D01* X5453Y4727D01* Y4743D02* Y4727D01* X5484Y4743D02* Y4694D01* X5435Y4644D01* X5535D02* X5590Y4699D01* X5632D01* X5653Y4720D01* Y4743D01* X5684D02* Y4726D01* X5645Y4687D01* X5610D01* X5571Y4648D01* Y4633D01* X5551Y4613D01* Y4560D01* X5535Y4544D01* X5435D02* Y4597D01* X5470Y4632D01* Y4662D01* X5516Y4708D01* Y4743D01* X5547D02* Y4716D01* X5494Y4663D01* Y4635D01* X5535Y4595D01* X5434Y4494D01* X5385D01* Y4394D02* X5431D01* X5616Y4579D01* Y4612D01* X5593Y4635D01* Y4651D01* X5617Y4675D01* X5665D01* X5716Y4726D01* X5735Y4644D02* X5789Y4698D01* X5820D01* X5834Y4712D01* Y4743D01* X5803D02* Y4710D01* X5763D01* X5835Y4644D02* X5897Y4707D01* Y4743D01* X5866Y4725D02* Y4743D01* Y4725D02* X5816Y4675D01* X5815D01* X5735Y4595D01* Y4544D01* X5635D02* Y4598D01* X5714Y4677D01* X5730D01* X5763Y4710D01* X5747Y4712D02* Y4743D01* X5716D02* Y4726D01* X5747Y4712D02* X5732Y4697D01* X5715D01* X5662Y4644D01* X5635D01* X5835Y4444D02* Y4495D01* X5920Y4580D01* Y4610D01* X5896Y4634D01* Y4661D01* X5917Y4682D01* X5988D01* X6034Y4728D01* Y4743D01* X6003Y4726D02* Y4743D01* Y4726D02* X5977Y4700D01* X5914D01* X5873Y4659D01* Y4635D01* X5835Y4597D01* Y4544D01* X5935Y4644D02* X5985D01* X6066Y4725D01* Y4743D02* Y4725D01* X6097Y4743D02* Y4657D01* X5984Y4544D01* X5935D01* Y4444D02* Y4359D01* X5985Y4309D01* Y4240D01* X5974Y4010D02* X6000Y3984D01* Y3964D01* X5962Y3864D02* X5954Y3856D01* Y3800D01* X5974Y3780D01* Y3724D01* Y3708D01* X5942Y3676D01* X6021Y3619D02* Y3524D01* Y3514D02* Y3524D01* X6084D01* X6137D01* X6158Y3544D01* X6235D01* X6335Y3344D02* Y3294D01* X6492Y3137D01* Y2828D01* X6521Y2799D01* X6541D01* Y2831D02* X6525D01* X6505Y2851D01* Y3174D01* X6435Y3244D01* Y3144D02* X6479Y3100D01* Y2806D01* X6517Y2768D01* X6541D01* Y2736D02* X6542D01* X6519D01* X6659Y2658D02* Y2661D01* X6705D01* Y2599D02* X6693D01* Y2362D01* X6671Y2340D01* X6725D02* X6749Y2364D01* Y2396D01* X6765Y2412D01* X6778D01* X6798Y2432D01* Y2460D01* X6816Y2478D01* Y2563D01* X6780Y2599D01* X6768D01* X6831D02* X6822D01* X6798Y2623D01* Y2640D01* X6777Y2661D01* X6768D01* D01* X6776D01* X6781Y2666D01* Y2693D01* X6831Y2661D02* X6902D01* X6916D01* D01* X6934D01* X7017Y2744D01* X7074D01* X7119Y2716D02* Y2717D01* X7156D01* Y2748D02* X7130D01* X7124Y2742D01* X7104D01* X7051Y2722D02* X7035D01* X7016Y2703D01* Y2680D01* X6902Y2599D02* X6978D01* Y2580D01* X6971D01* Y2527D01* X7019Y2538D02* X7054Y2573D01* Y2580D01* X7104Y2597D02* X7124D01* X7130Y2602D01* X7156D01* Y2571D02* X7119D01* D01* X7156Y2665D02* X7121D01* X7104Y2649D01* X7119Y2623D02* X7130Y2634D01* X7156D01* X7230D02* X7248D01* X7264Y2618D01* X7248Y2602D01* X7230D01* Y2571D02* X7246D01* X7267Y2592D01* Y2618D01* X7264D01* X7267D02* X7264D01* D01* D01* X7267D02* Y2644D01* X7246Y2665D01* X7230D01* X7012Y786D02* Y759D01* X7018Y753D01* X7038D01* X7045Y759D01* X7012Y739D02* X7018Y733D01* X7038D01* X7045Y739D01* Y786D01* X7072D02* X7105D01* X7072Y773D02* X7105D01* X7138Y843D02* Y896D01* X7125Y883D01* X7105Y876D02* X7072D01* X7045D02* X7012Y843D01* X7045D02* X7012Y876D01* X7072Y863D02* X7105D01* X7118Y843D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7212Y849D01* Y869D01* X7205Y876D01* X7172D01* Y896D01* X7212D01* X7232Y869D02* X7225Y863D01* Y849D01* X7232Y843D01* X7258D01* X7265Y806D02* X7225Y753D01* X7232D02* X7258D01* X7265Y759D01* Y799D01* X7258Y806D01* X7232D01* X7225Y799D01* Y759D01* X7232Y753D01* X7258Y896D02* X7265Y889D01* Y876D01* X7258Y869D01* Y843D02* X7265Y849D01* Y863D01* X7258Y869D01* X7232D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7298Y843D02* X7292Y849D01* X7298Y856D01* X7305Y849D01* X7298Y843D01* X7332Y849D02* X7338Y843D01* X7365D01* X7372Y849D01* Y869D01* X7365Y876D01* X7332D01* Y896D01* X7372D01* X7425D02* X7385Y843D01* Y849D02* X7392Y843D01* X7418D01* X7425Y849D01* Y889D01* X7418Y896D01* X7392D01* X7385Y889D01* Y849D01* X7372Y806D02* X7332Y753D01* X7338D02* X7365D01* X7372Y759D01* Y799D01* X7365Y806D01* X7338D01* X7332Y799D01* Y759D01* X7338Y753D01* X7298D02* X7305Y759D01* X7298Y766D01* X7292Y759D01* X7298Y753D01* X7505Y786D02* X7512Y779D01* X7518Y786D01* X7525D01* X7532Y779D01* Y753D01* X7512D02* Y779D01* X7505Y786D02* X7498D01* X7492Y779D01* Y786D02* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* Y753D02* Y779D01* X7452Y786D01* X7445D01* X7438Y779D01* Y786D02* Y753D01* X7385D02* X7425Y806D01* X7418D02* X7425Y799D01* Y759D01* X7418Y753D01* X7392D01* X7385Y759D01* Y799D01* X7392Y806D01* X7418D01* X7438Y843D02* Y876D01* Y869D02* X7445Y876D01* X7452D01* X7458Y869D01* X7465Y876D01* X7458Y869D02* Y843D01* X7465Y876D02* X7472D01* X7478Y869D01* Y843D01* X7492D02* Y876D01* X7498D02* X7505D01* X7492Y869D02* X7498Y876D01* X7505D02* X7512Y869D01* Y843D01* X7532D02* Y869D01* X7525Y876D01* X7518D01* X7512Y869D01* X7937Y1241D02* Y1274D01* X7957Y1288D02* Y1328D01* Y1308D02* X7903D01* X7917Y1294D01* X7923Y1274D02* Y1241D01* Y1214D02* X7957Y1181D01* Y1214D02* X7923Y1181D01* X8013D02* X8040D01* X8047Y1188D01* Y1208D01* X8040Y1214D01* X8060Y1181D02* X8067Y1188D01* Y1208D01* X8060Y1214D01* X8013D01* Y1241D02* Y1274D01* X8027Y1241D02* Y1274D01* X8007Y1401D02* X7993Y1414D01* X8047D01* Y1394D02* Y1434D01* X8040Y1461D02* X8033Y1468D01* X8040Y1474D01* X8047Y1468D01* X8040Y1461D01* Y1501D02* X8047Y1508D01* Y1534D01* X8040Y1541D01* X8020D01* X8013Y1534D01* Y1501D01* X7993D01* Y1541D01* X8020Y1661D02* X8013Y1668D01* Y1674D02* X8020Y1681D01* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X8013Y1674D02* Y1668D01* Y1661D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* X8047Y1628D02* X8020D01* X8013Y1634D02* X8020Y1628D01* X8013Y1621D01* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1554D02* X7993Y1594D01* X8000D02* X8040D01* X8047Y1588D01* Y1561D01* X8040Y1554D01* X8000D01* X7993Y1561D01* Y1588D01* X8000Y1594D01* X7957Y1608D02* X7923D01* X7930D02* X7923Y1614D01* Y1621D01* X7930Y1628D01* X7923Y1634D01* X7930Y1628D02* X7957D01* X7923Y1634D02* Y1641D01* X7930Y1648D01* X7957D01* Y1661D02* X7923D01* Y1668D02* Y1674D01* X7930Y1681D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D02* X7930Y1661D01* X7903Y1594D02* X7957Y1554D01* Y1561D02* Y1588D01* X7950Y1594D01* X7910D01* X7903Y1588D01* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D02* X7950Y1554D01* Y1541D02* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7957D02* X7903Y1541D01* X7910D02* X7950D01* X7910D02* X7903Y1534D01* Y1508D01* X7910Y1501D01* X7950D01* Y1461D02* X7957Y1468D01* X7950Y1474D01* X7943Y1468D01* X7950Y1461D01* X7903Y1428D02* Y1401D01* X7910Y1394D01* X7950D01* X7957Y1401D01* Y1394D02* X7903Y1434D01* Y1428D02* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* Y1374D02* X7950Y1381D01* X7937D01* X7930Y1374D01* Y1348D01* X7937Y1341D01* X7950D02* X7957Y1348D01* Y1374D01* X7950Y1341D02* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7740Y1315D02* X7702Y1277D01* X7418D01* X7387Y1307D02* Y1325D01* X7417Y1355D01* X7432D01* X7464Y1387D01* X7417Y1435D02* X7435D01* X7459Y1459D01* X7425Y1472D02* X7387Y1434D01* X7340D01* X7298Y1392D01* Y1308D01* X7248Y1258D01* X7156D01* Y1283D02* X7121D01* X7104Y1300D01* X7130Y1315D02* X7156D01* X7119Y1326D02* X7130Y1315D01* X7119Y1326D02* X7086D01* X7230Y1315D02* X7248D01* X7264Y1331D01* X7248Y1346D01* X7230D01* Y1378D02* X7246D01* X7267Y1357D01* Y1331D01* X7264D02* D01* D01* X7267D01* X7264D02* X7267D01* Y1305D01* X7246Y1283D01* X7230D01* X7156Y1346D02* X7130D01* X7124Y1352D01* X7104D01* X7119Y1378D02* D01* X7156D01* X7119D02* X7095D01* X7034Y1317D01* X6748D01* X6725Y1340D01* Y1386D02* X6699Y1360D01* Y1326D01* X6724Y1301D01* X7061D01* X7086Y1326D01* X7104Y1300D02* X7089Y1285D01* X6712D01* X6671Y1326D01* Y1340D01* X6625D02* X6696Y1269D01* X7013D01* X7055Y1227D01* Y1217D02* Y1227D01* Y1246D01* X7068Y1259D01* X7155D01* X7156Y1258D01* X7089Y1238D02* X7106D01* X7110Y1242D01* X7132D01* X7142Y1232D01* X7156D01* Y1201D02* X7142D01* X7124Y1219D01* X7118D01* X7090Y1207D02* X7094D01* X7103Y1198D01* X7114D01* X7143Y1169D01* X7156D01* X7230D02* X7248D01* X7254Y1163D01* X7294D01* X7329Y1198D01* X7355D01* X7385Y1228D01* Y1244D01* X7418Y1277D01* X7387Y1307D02* X7356Y1276D01* X7335D01* X7307Y1248D01* Y1231D01* X7287Y1211D01* X7255D01* X7245Y1201D01* X7230D01* Y1232D02* X7242D01* X7310Y1300D01* Y1326D01* X7339Y1355D01* X7356D01* X7385Y1384D01* Y1403D01* X7417Y1435D01* X7583Y1472D02* X7542Y1432D01* X7494D01* X7464Y1387D02* Y1402D01* X7494Y1432D01* X7459Y1459D02* Y1517D01* X7425Y1551D01* X7308Y1598D02* X7362D01* X7386Y1622D01* Y1640D01* X7415Y1669D01* X7464D01* X7504Y1709D01* X7493Y1670D02* X7465Y1642D01* Y1622D01* X7493Y1670D02* X7701D01* X7740Y1709D01* Y1866D02* X7707Y1899D01* X7320D01* X7288Y1867D01* X7252D01* X7245Y1874D01* X7230D01* Y1843D02* X7302D01* X7318Y1827D01* X7465D01* X7504Y1866D01* X7583Y1945D02* X7544Y1984D01* X7319D01* X7272Y1937D01* X7230D01* Y1906D02* X7244D01* X7251Y1913D01* X7393D01* X7425Y1945D01* Y1787D02* X7386Y1748D01* X7338D01* X7297Y1707D01* Y1698D01* X7245Y1646D01* X7230D01* Y1614D02* X7244D01* X7301Y1671D01* X7388D01* X7425Y1709D01* X7465Y1622D02* X7426Y1583D01* X7327D01* X7295Y1551D01* X7230D01* Y1583D02* X7246D01* X7256Y1573D01* X7283D01* X7308Y1598D01* X7230Y1760D02* X7248D01* X7264Y1744D01* X7248Y1728D01* X7230D01* Y1697D02* X7246D01* X7267Y1718D01* Y1744D01* X7264D01* X7267D02* X7264D01* D01* D01* X7267D02* Y1770D01* X7246Y1791D01* X7230D01* X7156D02* X7121D01* X7104Y1775D01* X7065Y1736D01* Y1616D01* X7059Y1610D01* Y1483D01* X7037Y1461D01* X6907D01* X6886Y1440D01* X6871D01* X6825D02* X6846Y1419D01* X7038D01* X7071Y1452D01* Y1599D01* X7083Y1588D02* Y1446D01* X7044Y1407D01* X6804D01* X6771Y1440D01* Y1386D02* X6792Y1365D01* X7039D01* X7104Y1430D01* Y1536D01* X7119Y1551D01* D01* X7156D01* Y1583D02* X7130D01* X7124Y1577D01* X7104D01* X7083Y1588D02* X7098Y1603D01* X7119D01* X7130Y1614D01* X7156D01* Y1646D02* X7121D01* X7104Y1629D01* X7071Y1599D02* X7083Y1611D01* Y1732D01* X7100Y1749D01* X7119D01* X7130Y1760D01* X7156D01* Y1728D02* X7130D01* X7124Y1723D01* X7104D01* X7119Y1697D02* D01* X7156D01* X7104Y1920D02* X7121Y1937D01* X7156D01* Y1988D02* X7119D01* D01* X7104Y2014D02* X7124D01* X7130Y2020D01* X7156D01* X7104Y2066D02* X7121Y2083D01* X7156D01* Y2051D02* X7130D01* X7119Y2040D01* X7096D01* X7068Y2012D01* Y1949D01* X7034Y1915D01* X7021D01* X6992Y1886D01* Y1576D01* X6979Y1563D01* X6894D01* X6871Y1540D01* X6925Y1586D02* X6950Y1611D01* Y2151D01* X7104Y2305D01* X7124D01* X7130Y2311D01* X7156D01* X7119Y2331D02* X7130Y2343D01* X7156D01* Y2374D02* X7121D01* X7104Y2357D01* X7048Y2301D01* Y2276D01* X6898Y2126D01* Y1682D01* X6871Y1655D01* Y1640D01* X6925Y1686D02* Y1682D01* X6899Y1656D01* Y1635D01* X6882Y1618D01* X6861D01* X6845Y1634D01* X6823Y1693D02* X6803Y1713D01* X6791D01* X6871Y1486D02* X6904Y1519D01* X6982D01* X7004Y1541D01* Y1801D01* X7018Y1815D01* X7032D01* X7068Y1851D01* Y1868D01* X7094Y1894D01* X7119D01* X7130Y1906D01* X7156D01* X7130Y1874D02* X7156D01* Y1843D02* X7119D01* X7130Y1874D02* X7124Y1868D01* X7104D01* X7119Y1842D02* Y1843D01* Y1842D02* X7047Y1770D01* Y1532D01* X7022Y1507D01* X6914D01* X6899Y1492D01* Y1479D01* X6884Y1464D01* X6847D01* X6825Y1486D01* X6845Y1634D02* Y2150D01* X6859Y2164D01* X6882D01* X6976Y2258D01* Y2272D01* X7020Y2316D01* X7032D01* X7065Y2349D01* Y2466D01* X7109Y2510D01* X7119Y2520D01* X7156D01* Y2488D02* X7126D01* X7120Y2482D01* X7109Y2454D02* X7112Y2457D01* X7156D01* Y2425D02* X7119D01* D01* Y2279D02* Y2280D01* X7156D01* Y2228D02* X7121D01* X7104Y2212D01* X7119Y2186D02* X7130Y2197D01* X7156D01* Y2165D02* X7130D01* X7124Y2160D01* X7104D01* X7119Y2134D02* D01* X7156D01* X7230Y2083D02* X7246D01* X7267Y2061D01* Y2035D01* X7264Y2036D02* Y2035D01* D01* X7267D01* X7264Y2036D02* X7267D01* Y2010D01* X7246Y1988D01* X7230D01* Y2020D02* X7248D01* X7264Y2035D01* X7248Y2051D01* X7230D01* X7292Y2163D02* X7285Y2156D01* X7254D01* X7245Y2165D01* X7230D01* Y2134D02* X7298D01* X7312Y2148D01* Y2193D01* X7331Y2212D01* X7335Y2300D02* X7313Y2278D01* Y2265D01* X7245Y2197D01* X7230D01* Y2228D02* X7245D01* X7297Y2280D01* Y2344D01* X7331Y2378D01* X7230Y2374D02* X7246D01* X7267Y2353D01* Y2327D01* X7264D02* D01* D01* X7267D01* X7264D02* X7267D01* Y2301D01* X7246Y2280D01* X7230D01* Y2311D02* X7248D01* X7264Y2327D01* X7248Y2343D01* X7230D01* X7425Y2417D02* X7386Y2378D01* X7331D01* X7335Y2300D02* X7465D01* X7504Y2339D01* X7543Y2248D02* X7520Y2225D01* X7319D01* X7292Y2198D01* Y2163D01* X7331Y2212D02* X7614D01* X7661Y2260D01* X7740Y2339D02* X7702Y2300D01* Y2299D01* X7570D01* X7543Y2272D01* Y2248D01* X7661Y2575D02* X7624Y2537D01* X7571D01* X7543Y2509D01* Y2482D01* X7518Y2457D01* X7327D01* X7295Y2425D01* X7230D01* Y2457D02* X7245D01* X7255Y2447D01* X7284D01* X7300Y2463D01* Y2506D01* X7324Y2530D01* X7538D01* X7583Y2575D01* X7395Y2623D02* Y2622D01* X7345D01* X7243Y2520D01* X7230D01* Y2488D02* X7246D01* X7301Y2543D01* X7366D01* X7386Y2563D01* Y2584D01* X7416Y2614D01* X7395Y2623D02* X7425Y2654D01* X7416Y2614D02* X7466D01* Y2616D01* X7504Y2654D01* Y2811D02* X7457Y2764D01* X7323D01* X7321Y2778D02* X7392D01* X7425Y2811D01* Y2890D02* X7384Y2849D01* X7321D01* X7283Y2811D01* X7230D01* X7156D02* X7121D01* X7104Y2794D01* X7119Y2768D02* X7130Y2780D01* X7156D01* X7230D02* X7247D01* X7254Y2787D01* X7312D01* X7321Y2778D01* X7323Y2764D02* X7299Y2740D01* X7253D01* X7245Y2748D01* X7230D01* Y2717D02* X7300D01* X7323Y2694D01* X7600D01* X7623Y2717D01* Y2748D01* X7647Y2772D01* X7701D01* X7740Y2811D01* Y2969D02* X7704Y3005D01* X7497D01* X7466Y3036D01* Y3059D01* X7502Y3084D02* X7546D01* X7583Y3047D01* X7502Y3084D02* X7464Y3122D01* Y3139D01* X7437Y3166D01* X7314D01* X7301Y3153D01* X7254D01* X7246Y3161D01* X7230D01* Y3130D02* X7260D01* X7303Y3087D01* X7438D01* X7466Y3059D01* X7230Y3567D02* X7246D01* X7267Y3588D01* Y3614D01* X7264D01* X7230Y3630D02* X7248D01* X7264Y3614D01* X7256Y3606D01* D01* X7230Y3598D02* X7248D01* X7256Y3606D01* X7264Y3614D01* X7267D01* Y3640D01* X7246Y3661D01* X7230D01* X7119Y3644D02* X7125D01* X7139Y3630D01* X7156D01* Y3661D02* X7144D01* X7126Y3679D01* X7156Y3713D02* X7119D01* Y3712D01* X7104Y3738D02* X7124D01* X7130Y3744D01* X7156D01* Y3776D02* X7130D01* X7119Y3764D01* X7104Y3790D02* X7121Y3807D01* X7156D01* Y3858D02* X7119D01* D01* X7104Y3884D02* X7124D01* X7130Y3890D01* X7156D01* Y3921D02* X7130D01* X7119Y3910D01* X7094Y3927D02* X7105D01* X7131Y3953D01* X7156D01* Y4004D02* X7141D01* X7115Y4030D01* X7104Y4058D02* X7117D01* X7140Y4035D01* X7156D01* Y4067D02* X7141D01* X7123Y4085D01* X7118D01* X7104Y4112D02* X7126D01* X7140Y4098D01* X7156D01* X7143Y4126D02* Y4150D01* X7156D01* Y4181D02* X7141D01* X7123Y4163D01* Y4149D01* X7115Y4141D01* X7230Y4150D02* X7246D01* X7267Y4171D01* Y4197D01* X7264D01* X7267D02* X7264D01* D01* D01* X7267D02* Y4223D01* X7246Y4244D01* X7230D01* Y4213D02* X7248D01* X7264Y4197D01* X7248Y4181D01* X7230D01* X7119Y4212D02* Y4213D01* X7156D01* Y4244D02* X7117D01* D01* X7156Y4295D02* X7119D01* D01* X7104Y4321D02* X7124D01* X7130Y4327D01* X7156D01* Y4358D02* X7130D01* X7119Y4347D01* X7104Y4373D02* X7121Y4390D01* X7156D01* Y4441D02* X7119D01* D01* X7104Y4467D02* X7124D01* X7130Y4472D01* X7156D01* Y4504D02* X7130D01* X7119Y4493D01* X7104Y4519D02* X7121Y4535D01* X7156D01* X7230Y4472D02* X7248D01* X7264Y4488D01* X7248Y4504D01* X7230D01* Y4535D02* X7246D01* X7267Y4514D01* Y4488D01* X7264D02* D01* D01* X7267D01* X7264D02* X7267D01* Y4462D01* X7246Y4441D01* X7230D01* X7038Y4469D02* X7058D01* X7112Y4415D01* X7368D01* X7386Y4397D01* Y4372D01* X7425Y4333D01* Y4307D01* X7417Y4269D02* X7387Y4299D01* Y4317D01* X7360Y4344D01* X7342D01* X7296Y4390D01* X7230D01* Y4358D02* X7247D01* X7252Y4364D01* X7279D01* X7301Y4342D01* Y4304D01* X7336Y4269D01* X7360D01* X7387Y4242D01* Y4216D01* X7412Y4191D01* X7437D01* X7465Y4163D01* X7494Y4190D02* X7466Y4218D01* Y4240D01* X7437Y4269D01* X7417D01* X7464Y4398D02* Y4376D01* X7493Y4347D01* X7622D01* X7661Y4307D01* X7464Y4398D02* X7433Y4429D01* X7411D01* X7385Y4455D01* Y4476D01* X7356Y4505D01* X7322D01* X7265Y4562D01* X7127D01* X7156Y4587D02* X7140D01* X7119Y4608D01* Y4634D01* X7122D02* X7119D01* D01* X7122D01* X7138Y4650D01* X7156D01* Y4618D02* X7138D01* X7122Y4634D01* X7119Y4660D02* X7140Y4681D01* X7156D01* X6938Y4668D02* X6993D01* X7006Y4681D01* X7110D01* X7119Y4660D02* Y4634D01* X7038Y4630D02* X7059D01* X7127Y4562D01* X7083Y4560D02* X7030Y4507D01* X6938D01* X6616Y4264D02* X6634D01* X6649Y4279D01* X6650D02* X6649D01* X6650Y4280D01* X6653D01* Y4254D01* X6631Y4232D01* X6616D01* X7012Y5094D02* X7045Y5128D01* X7012D02* X7045Y5094D01* X7072Y5114D02* X7105D01* X7072Y5128D02* X7105D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* X7205Y5058D02* X7178D01* X7172Y5051D01* Y5011D01* X7138Y5004D02* Y5058D01* X7125Y5044D01* X7105Y5038D02* X7072D01* X7045D02* Y4991D01* X7038Y4984D01* X7018D01* X7012Y4991D01* Y5038D02* Y5011D01* X7018Y5004D01* X7038D01* X7045Y5011D01* X7072Y5024D02* X7105D01* X7118Y5004D02* X7158D01* X7172D02* X7212Y5058D01* X7205D02* X7212Y5051D01* X7172Y5011D02* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* X7225Y5011D02* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225Y5011D01* Y5004D02* X7265Y5058D01* X7258Y5094D02* X7232D01* X7225Y5101D01* Y5114D01* X7232Y5121D01* X7212Y5101D02* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7258D02* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7265Y5128D01* Y5141D01* X7258Y5148D01* Y5121D02* X7265Y5114D01* Y5101D01* X7258Y5094D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7425Y5141D02* X7418Y5148D01* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7418D01* X7425Y5101D01* Y5141D01* Y5148D02* X7385Y5094D01* X7372Y5058D02* X7332Y5004D01* X7338D02* X7365D01* X7372Y5011D01* Y5051D01* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7298D02* X7305Y5011D01* X7298Y5018D01* X7292Y5011D01* X7298Y5004D01* X7505Y5128D02* X7512Y5121D01* X7518Y5128D01* X7525D01* X7532Y5121D01* Y5094D01* X7512D02* Y5121D01* X7505Y5128D02* X7498D01* X7492Y5121D01* Y5128D02* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* Y5094D02* Y5121D01* X7452Y5128D01* X7445D01* X7438Y5121D01* Y5128D02* Y5094D01* X7425Y5058D02* X7385Y5004D01* X7392D02* X7418D01* X7425Y5011D01* Y5051D01* X7418Y5058D01* X7392D01* X7385Y5051D01* Y5011D01* X7392Y5004D01* X7438D02* Y5038D01* Y5031D02* X7445Y5038D01* X7452D01* X7458Y5031D01* X7465Y5038D01* X7458Y5031D02* Y5004D01* X7465Y5038D02* X7472D01* X7478Y5031D01* Y5004D01* X7492D02* Y5038D01* X7498D02* X7505D01* X7492Y5031D02* X7498Y5038D01* X7505D02* X7512Y5031D01* Y5004D01* X7532D02* Y5031D01* X7525Y5038D01* X7518D01* X7512Y5031D01* X7583Y4780D02* X7543Y4740D01* Y4686D01* X7517Y4660D01* X7489D01* X7466Y4637D01* Y4607D01* X7441Y4582D01* X7283D01* X7247Y4618D01* X7230D01* Y4650D02* X7248D01* X7254Y4656D01* X7432D01* X7466Y4690D01* Y4742D01* X7504Y4780D01* X7425D02* X7387Y4741D01* Y4690D01* X7366Y4669D01* X7321D01* X7309Y4681D01* X7230D01* X7504Y4071D02* X7465Y4110D01* Y4163D01* X7494Y4190D02* X7516D01* X7544Y4162D01* Y4138D01* X7571Y4111D01* X7700D01* X7740Y4071D01* Y3992D02* X7700Y4032D01* X7414D01* X7387Y4009D02* Y3979D01* X7414Y3952D01* X7465D01* X7504Y3913D01* X7425D02* X7379Y3960D01* X7331D01* X7296Y3995D01* Y4056D01* X7276Y4076D01* X7255D01* X7246Y4067D01* X7230D01* Y4098D02* X7274D01* X7341Y4031D01* X7365D01* X7387Y4009D01* X7414Y4032D02* X7387Y4059D01* Y4079D01* X7357Y4109D01* X7336D01* X7289Y4156D01* Y4251D01* X7245Y4295D01* X7230D01* Y4327D02* X7247D01* X7310Y4264D01* Y4212D01* X7332Y4190D01* X7356D01* X7387Y4159D01* Y4109D01* X7425Y4071D01* X7230Y3953D02* X7246D01* X7267Y3931D01* Y3905D01* X7264Y3906D02* Y3905D01* D01* X7267D01* X7264Y3906D02* X7267D01* Y3880D01* X7246Y3858D01* X7230D01* Y3890D02* X7248D01* X7264Y3905D01* X7248Y3921D01* X7230D01* X7342Y3868D02* X7303Y3907D01* Y3946D01* X7245Y4004D01* X7230D01* Y4035D02* X7248D01* X7277Y4006D01* Y3993D01* X7325Y3945D01* X7364D01* X7386Y3923D01* Y3903D01* X7408Y3881D01* X7425Y3756D02* X7385Y3796D01* X7323D01* X7312Y3807D01* X7230D01* Y3776D02* X7251D01* X7268Y3793D01* X7306D01* X7313Y3786D01* Y3739D01* X7329Y3723D01* X7694D01* X7740Y3677D01* X7661D02* X7630Y3709D01* X7281D01* X7246Y3744D01* X7230D01* Y3713D02* X7246D01* X7321Y3638D01* X7544D01* X7583Y3677D01* Y3520D02* X7551Y3488D01* X7307D01* X7317Y3475D02* X7617D01* X7661Y3520D01* Y3835D02* X7628Y3868D01* X7342D01* X7408Y3881D02* X7694D01* X7740Y3835D01* Y3520D02* X7700Y3480D01* X7650D01* X7622Y3452D01* Y3431D01* X7592Y3401D01* X7311D01* X7291Y3421D01* X7230D01* Y3453D02* X7246D01* X7255Y3444D01* X7286D01* X7317Y3475D01* X7307Y3488D02* X7300Y3495D01* X7254D01* X7243Y3484D01* X7230D01* Y3516D02* X7244D01* X7286Y3558D01* X7387D01* X7425Y3520D01* Y3362D02* X7386Y3323D01* X7330D01* X7264D02* X7267D01* Y3297D01* X7246Y3276D01* X7230D01* Y3307D02* X7248D01* X7264Y3323D01* X7248Y3339D01* X7230D01* Y3370D02* X7246D01* X7267Y3349D01* Y3323D01* X7264D02* D01* D01* X7267D01* X7330D02* X7277Y3270D01* Y3257D01* X7244Y3224D01* X7230D01* Y3016D02* X7248D01* X7264Y3031D01* X7248Y3047D01* X7230D01* Y3079D02* X7246D01* X7267Y3057D01* Y3031D01* X7264Y3032D02* Y3031D01* D01* X7267D01* X7264Y3032D02* X7267D01* Y3006D01* X7246Y2984D01* X7230D01* X7156D02* X7119D01* D01* X7104Y3010D02* X7124D01* X7130Y3016D01* X7156D01* Y3047D02* X7130D01* X7119Y3036D01* X7104Y3062D02* X7121Y3079D01* X7156D01* Y3130D02* X7119D01* D01* X7104Y3156D02* X7124D01* X7130Y3161D01* X7156D01* X7104Y3208D02* X7121Y3224D01* X7156D01* Y3276D02* X7119D01* Y3275D01* X7104Y3301D02* X7124D01* X7130Y3307D01* X7156D01* Y3339D02* X7130D01* X7119Y3327D01* X7104Y3353D02* X7121Y3370D01* X7156D01* X7120Y3428D02* X7124Y3424D01* X7153D01* X7156Y3421D01* Y3453D02* X7139D01* X7133Y3459D01* X7097D01* X7156Y3484D02* X7113D01* Y3487D01* X7097Y3513D02* Y3516D01* X7156D01* X7141Y3544D02* Y3567D01* X7156D01* Y3598D02* X7141D01* X7123Y3580D01* Y3562D01* X7104Y3543D01* X6957Y3681D02* X6981Y3657D01* X6985D01* X7019Y3681D02* X7026D01* X7060Y3715D01* Y3935D01* X6966Y4029D01* Y4154D01* X6940D02* Y4037D01* X7041Y3936D01* Y3814D01* X7026Y3799D01* X7020D01* X6957D02* X6964D01* X6991Y3826D01* Y3878D01* X6966D02* Y3935D01* X6978D01* X7016D02* Y3878D01* X7017D01* X6915Y3935D02* X6914D01* Y3878D01* X6889D02* Y3935D01* D01* X6864D02* X6863D01* Y3878D01* X6838D02* Y3935D01* D01* X6813D02* X6812D01* Y3878D01* X6335Y3844D02* X6384D01* X6442Y3902D01* X6547D01* X6385Y4094D02* X6436D01* X6512Y4170D01* Y4216D01* X6528Y4232D01* X6541D01* Y4264D02* X6526D01* X6493Y4231D01* Y4203D01* X6435Y4144D01* X6335D02* X6384D01* X6473Y4233D01* Y4241D01* X6527Y4295D01* X6616D02* X6634D01* X6650Y4279D01* X6653D01* Y4305D01* X6631Y4327D01* X6616D01* X6541Y4295D02* X6527D01* X6541Y4327D02* X6467D01* X6384Y4244D01* X6335D01* X6272Y4456D02* X6251Y4477D01* Y4508D01* X6335Y4592D01* Y4644D01* X6230Y4749D01* X6150D01* X6272Y4456D02* Y4430D01* X6150Y4308D01* Y4223D01* X5872Y3945D01* Y3770D01* X5866Y3764D01* X5804D02* X5736D01* X5694Y3806D01* X5645D01* Y3606D02* X5703D01* X5745Y3564D01* X5804D01* X5916Y3484D02* X5929D01* X5965Y3448D01* Y3427D01* X5950Y3412D01* Y3381D01* Y3333D01* X5972Y3311D01* Y3251D01* X5971Y3250D01* X5858Y3325D02* X5850D01* Y3381D01* X5875D02* Y3437D01* X5881Y3442D01* X5936Y3447D02* X5912D01* Y3439D01* X5925Y3426D01* Y3381D01* X6028Y3244D02* Y3250D01* X5971D01* X5950Y3230D01* Y3186D01* X5925Y3147D02* Y3146D01* X5934Y3137D01* X5993D01* X6121Y3009D01* X6135Y2944D02* X6121Y2958D01* Y3009D01* X6135Y3044D02* Y2995D01* X6172Y2958D01* Y2930D01* X6151Y2909D01* Y2880D01* X6174Y2857D01* Y2825D01* X6326Y2673D01* X6331D01* D01* X6264D02* X6222D01* D01* X6122Y2747D02* Y2832D01* X6135Y2844D01* X6091Y2838D02* X5985Y2944D01* Y2994D01* X6035Y2944D02* Y2994D01* X5904Y3125D01* X5872D01* X5810Y3063D01* X5761D01* X5756Y3174D02* Y3137D01* X5768Y3125D01* X5798D01* X5819Y3104D01* X5833D01* X5866Y3137D01* X5915D01* X5925Y3147D01* Y3186D02* Y3147D01* X5900Y3186D02* Y3226D01* X5889Y3237D01* X5731D01* X5694Y3200D01* Y3174D01* Y3130D01* X5761Y3063D01* X5685Y3094D02* Y3045D01* X5816Y2914D01* Y2871D01* X5804Y2859D01* Y2812D01* X5827Y2789D01* Y2748D01* X5828Y2747D01* X5922D02* Y2806D01* X5895Y2833D01* Y2859D01* X5917Y2881D01* X5935Y2944D02* Y2895D01* X6059Y2771D01* X6091Y2838D02* Y2747D01* X6059Y2771D02* Y2747D01* X6028D02* Y2752D01* X5935Y2844D01* X5835Y2944D02* Y2895D01* X5876Y2854D01* Y2828D01* X5891Y2813D01* Y2747D01* X5859D02* Y2820D01* X5835Y2844D01* X5917Y2881D02* Y2916D01* X5848Y2985D01* Y3009D01* X5885Y3046D01* Y3094D01* X6085D02* X6136D01* X6170Y3060D01* X6200D01* X6221Y3081D01* X6248D01* X6270Y3059D01* Y3031D01* X6247Y3008D01* Y2984D01* X6269Y2962D01* Y2928D01* X6252Y2911D01* Y2880D01* X6271Y2861D01* Y2844D01* X6521Y2594D01* X6398Y2673D02* X6389D01* X6355Y2707D01* X6321D01* X6199Y2829D01* Y2858D01* X6219Y2878D01* Y2912D01* X6202Y2929D01* Y2962D01* X6225Y2985D01* Y3034D01* X6235Y3044D01* X6335D02* Y2993D01* X6370Y2958D01* Y2930D01* X6350Y2910D01* Y2879D01* X6318Y2912D02* Y2878D01* X6297Y2857D01* Y2835D01* X6321Y2811D01* X6341D01* X6526Y2626D01* X6521Y2594D02* X6542D01* X6541D01* X6526Y2626D02* X6541D01* X6528Y2689D02* X6400Y2817D01* Y2862D01* X6419Y2881D01* Y2909D01* X6398Y2930D01* Y2958D01* X6419Y2979D01* Y3009D01* X6335Y3093D01* Y3144D01* X6235D02* X6283D01* X6318Y3109D01* Y3081D01* X6298Y3061D01* Y3032D01* X6318Y3012D01* Y2974D01* X6298Y2954D01* Y2932D01* X6318Y2912D01* X6350Y2879D02* X6378Y2851D01* Y2805D01* X6526Y2657D01* X6541D01* Y2689D02* X6528D01* X6519Y2736D02* X6466Y2789D01* Y3059D01* X6281Y3244D01* X6235D01* X7923Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7923D02* Y4269D01* Y4242D02* X7957Y4209D01* X8013D02* X8040D01* X8047Y4215D01* Y4235D01* X8040Y4242D01* X8060Y4209D02* X8067Y4215D01* Y4235D01* X8060Y4242D01* X8013D01* Y4269D02* Y4302D01* X8027Y4269D02* Y4302D01* X8040Y4369D02* X8047Y4375D01* Y4402D01* X8040Y4409D01* X8000D01* X7993Y4402D01* Y4375D01* X8000Y4369D01* X8013D01* X8020Y4375D01* Y4402D01* X8013Y4409D01* Y4422D02* X8000D01* X7993Y4429D01* Y4455D01* X8000Y4462D01* X8013D01* X8020Y4455D01* Y4429D01* X8013Y4422D01* X8020Y4429D02* X8027Y4422D01* X8040D01* X8047Y4429D01* Y4455D01* X8040Y4462D01* X8027D01* X8020Y4455D01* X8040Y4502D02* X8047Y4495D01* X8040Y4489D01* X8033Y4495D01* X8040Y4502D01* Y4529D02* X8047Y4535D01* Y4562D01* X8040Y4569D01* X8020D01* X8013Y4562D01* Y4529D01* X7993D01* Y4569D01* X7950D02* X7910D01* X7903Y4562D01* Y4535D01* X7910Y4529D01* X7950D01* X7957Y4535D01* X7950Y4502D02* X7943Y4495D01* X7950Y4489D01* X7957Y4495D01* X7950Y4502D01* X7903Y4462D02* X7957Y4422D01* X7950D02* X7957Y4429D01* Y4455D01* X7950Y4462D01* X7910D01* X7903Y4455D01* Y4429D01* X7910Y4422D01* X7950D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7937D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4402D01* Y4375D01* X7950Y4369D01* X7957Y4355D02* Y4315D01* Y4335D02* X7903D01* X7917Y4322D01* X7903Y4569D02* X7957Y4529D01* Y4535D02* Y4562D01* X7950Y4569D01* Y4582D02* X7957Y4589D01* Y4615D01* X7950Y4622D01* X7957Y4655D02* X7930D01* X7923Y4662D02* X7930Y4655D01* X7923Y4649D01* Y4642D01* X7930Y4635D01* X7923D02* X7957D01* X7950Y4622D02* X7910D01* X7903D02* X7957Y4582D01* X7950D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7923Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* X7930Y4709D01* X7923Y4702D01* X8020Y4709D02* X8013Y4715D01* Y4722D01* X8020Y4729D01* X8047D01* Y4709D02* X8020D01* X8013Y4702D01* Y4695D01* X8020Y4689D01* X8013D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8020Y4655D01* X8013Y4649D01* X8000Y4622D02* X7993Y4615D01* Y4589D01* X8000Y4582D01* X8040D01* X8047Y4589D01* Y4615D01* X8040Y4622D01* X8000D01* X7993D02* X8047Y4582D01* Y4635D02* X8013D01* X8020D02* X8013Y4642D01* Y4649D01* X8020Y4655D02* X8047D01* D013* X3027Y1880D02* X3048Y1901D01* Y2142D01* X3072Y2166D01* X3109D01* X3130Y2145D01* Y2041D01* X3129Y2040D01* X3983Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4072Y5911D02* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072Y5911D01* Y5900D02* X4139Y5989D01* X3983Y5933D02* X3994Y5944D01* X4039D01* X4050Y5933D01* Y5911D01* X4039Y5900D01* X3994D01* X3983Y5911D01* X3961Y5900D02* X3894D01* X3928D02* Y5989D01* X3906Y5967D01* X4194Y5922D02* X4206Y5911D01* X4194Y5900D01* X4183Y5911D01* X4194Y5922D01* X4250Y5900D02* X4317Y5989D01* X4306D02* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5978D01* X4261Y5989D01* X4306D01* X4339Y5900D02* X4406Y5989D01* Y5978D02* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* X4472Y5956D01* X4461Y5944D02* Y5900D01* X4472Y5956D02* X4483D01* X4494Y5944D01* Y5900D01* X4517D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4550Y5944D01* X4639Y5900D02* X4628Y5911D01* X4639Y5922D01* X4650Y5911D01* X4639Y5900D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4817Y5978D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5911D02* Y5978D01* X4883Y5989D01* X4928D01* Y5900D02* X4883D01* X4872Y5911D01* Y5900D02* X4939Y5989D01* X4928D02* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5911D02* Y5978D01* X5150Y5989D01* X5194D01* X5206Y5978D01* Y5911D01* X5194Y5900D01* X5150D01* X5139Y5911D01* Y5900D02* X5206Y5989D01* X5261Y5922D02* X5250Y5911D01* X5261Y5900D01* X5272Y5911D01* X5261Y5922D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* Y3617D02* X8839Y3550D01* X8828D02* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* Y3528D02* X8839Y3517D01* Y3472D01* X8828Y3528D02* X8761D01* X8750Y3517D01* Y3472D01* X8761Y3461D01* X8828D01* X8839Y3472D01* Y3461D02* X8750Y3528D01* X8761Y3417D02* X8772Y3406D01* X8761Y3394D01* X8750Y3406D01* X8761Y3417D01* X8750Y3350D02* X8839Y3283D01* Y3294D02* X8828Y3283D01* X8761D01* X8750Y3294D01* Y3339D01* X8761Y3350D01* X8828D01* X8839Y3339D01* Y3294D01* X8750Y3250D02* X8761Y3261D01* X8828D01* X8839Y3250D01* Y3206D01* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* Y3261D02* X8839Y3194D01* X8750Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3083D02* X8806D01* Y3072D02* Y3061D01* X8794Y3050D01* X8750D01* X8794Y3083D02* X8806Y3072D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8772Y2961D01* X8761Y2972D01* X8750Y2961D01* X8761Y2950D01* X8839Y2672D02* Y2717D01* X8828Y2728D01* X8794Y2750D02* Y2817D01* X8761Y2783D02* X8828D01* Y2728D02* X8761D01* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8750Y2728D02* X8839Y2661D01* Y2672D02* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8794Y2550D02* Y2483D01* X8828Y2461D02* X8839Y2450D01* Y2406D01* X8828Y2461D02* X8761D01* X8750Y2450D01* Y2406D01* X8761Y2394D01* X8828D01* X8839Y2406D01* Y2394D02* X8750Y2461D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2261D02* Y2239D01* X8806Y2217D02* X8794Y2239D01* X8783Y2217D01* X8806D02* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D021* X1588Y1894D02* X1608D01* X1588Y1956D02* X1608D01* X1926Y1974D02* Y1994D01* X1988Y1974D02* Y1994D01* X2056Y2022D02* Y2002D01* Y1959D02* Y1939D01* X2118D02* Y1959D01* Y2002D02* Y2022D01* X2232Y1939D02* Y1959D01* Y2002D02* Y2022D01* X2170D02* Y2002D01* Y1959D02* Y1939D01* X2122Y1876D02* Y1856D01* Y1797D02* Y1777D01* X2060D02* Y1797D01* Y1856D02* Y1876D01* X1984Y1856D02* Y1876D01* X1922Y1856D02* Y1876D01* X2041Y1503D02* X2061D01* X2120D02* X2140D01* Y1441D02* X2120D01* X2061D02* X2041D01* Y1307D02* X2061D01* X2120D02* X2140D01* Y1245D02* X2120D01* X2061D02* X2041D01* X2067Y1147D02* Y1167D01* X2129Y1147D02* Y1167D01* X2219Y1212D02* X2282D01* X2219Y1262D02* X2282D01* X2219Y1312D02* X2282D01* X2219Y1362D02* X2282D01* X2219Y1412D02* X2282D01* X2219Y1462D02* X2282D01* X2219Y1512D02* X2282D01* X2219Y1562D02* X2282D01* X2219Y1612D02* X2282D01* X2219Y1662D02* X2282D01* X2219Y1712D02* X2282D01* Y1762D02* X2219D01* X2282Y1812D02* X2219D01* X2372D02* X2435D01* X2372Y1762D02* X2435D01* Y1712D02* X2372D01* X2435Y1662D02* X2372D01* X2435Y1612D02* X2372D01* X2435Y1562D02* X2372D01* X2435Y1512D02* X2372D01* X2435Y1462D02* X2372D01* X2435Y1412D02* X2372D01* X2435Y1362D02* X2372D01* X2435Y1312D02* X2372D01* X2435Y1262D02* X2372D01* X2435Y1212D02* X2372D01* X2787Y1180D02* Y1200D01* X2725Y1180D02* Y1200D01* X2854Y1498D02* Y1518D01* X2792Y1498D02* Y1518D01* X2756Y1648D02* Y1628D01* X2818Y1648D02* Y1628D01* X2875D02* Y1648D01* X2937Y1628D02* Y1648D01* X2990Y1629D02* X3010D01* X2990Y1691D02* X3010D01* X2871Y1869D02* Y1889D01* X2809Y1869D02* Y1889D01* X2615Y2022D02* Y2002D01* X2677Y2022D02* Y2002D01* X2720Y2089D02* X2740D01* X2720Y2151D02* X2740D01* X2655Y2504D02* X2675D01* X2655Y2566D02* X2675D01* X2737Y2733D02* Y2713D01* X2799Y2733D02* Y2713D01* X2655Y2752D02* X2675D01* X2655Y2814D02* X2675D01* X2737D02* Y2834D01* X2799Y2814D02* Y2834D01* X2801Y2930D02* Y2950D01* Y3010D02* Y3030D01* X2739D02* Y3010D01* Y2950D02* Y2930D01* X2620Y2948D02* X2600D01* X2620Y3010D02* X2600D01* X2544Y2993D02* Y3013D01* X2482Y2993D02* Y3013D01* X2431Y3011D02* X2411D01* X2431Y2949D02* X2411D01* X2170Y3041D02* X2150D01* X2170Y2979D02* X2150D01* X2225Y2864D02* Y2844D01* X2287Y2864D02* Y2844D01* X2122Y2864D02* Y2844D01* X2060Y2864D02* Y2844D01* X1800Y2451D02* Y2471D01* X1738Y2451D02* Y2471D01* X3129Y2030D02* Y2050D01* X3191Y2030D02* Y2050D01* X3170Y2109D02* X3190D01* X3170Y2171D02* X3190D01* X3390Y2104D02* Y2084D01* Y2041D02* Y2021D01* X3452D02* Y2041D01* Y2084D02* Y2104D01* X3528D02* Y2084D01* Y2041D02* Y2021D01* X3590D02* Y2041D01* Y2084D02* Y2104D01* X3591Y2480D02* Y2500D01* X3529Y2480D02* Y2500D01* X3451D02* Y2480D01* Y2440D02* Y2420D01* X3389D02* Y2440D01* Y2480D02* Y2500D01* X3790Y2949D02* X3810D01* X3790Y3011D02* X3810D01* X3900D02* X3880D01* X3900Y2949D02* X3880D01* X4009Y2860D02* Y2880D01* X4071Y2860D02* Y2880D01* X4101Y2940D02* Y2960D01* X4039Y2940D02* Y2960D01* X4269D02* Y2940D01* X4279Y2880D02* Y2860D01* X4201Y2880D02* Y2860D01* X4139Y2880D02* Y2860D01* X4165Y2738D02* Y2718D01* X4103Y2738D02* Y2718D01* X4093Y2559D02* X4073D01* X4093Y2497D02* X4073D01* X4264Y2262D02* Y2282D01* X4326Y2262D02* Y2282D01* X4375Y2262D02* Y2282D01* X4437Y2262D02* Y2282D01* X4610Y2451D02* Y2471D01* X4548Y2451D02* Y2471D01* Y2518D02* Y2538D01* Y2584D02* Y2604D01* X4610D02* Y2584D01* Y2538D02* Y2518D01* X4691Y2715D02* Y2735D01* X4629Y2715D02* Y2735D01* X4915Y2679D02* X4935D01* X4915Y2741D02* X4935D01* X4837Y2322D02* X4817D01* X4754D02* X4774D01* Y2260D02* X4754D01* X4817D02* X4837D01* X4894Y2262D02* Y2282D01* X4956Y2262D02* Y2282D01* X5346Y1612D02* Y1632D01* Y1687D02* Y1707D01* Y1762D02* Y1782D01* X5284D02* Y1762D01* Y1707D02* Y1687D01* Y1632D02* Y1612D01* X5121Y1534D02* X5101D01* X5121Y1472D02* X5101D01* X5174Y1155D02* Y1175D01* X5236Y1155D02* Y1175D01* X5240Y1234D02* Y1254D01* X5178Y1234D02* Y1254D01* X5343Y1230D02* Y1210D01* X5405Y1230D02* Y1210D01* X4654Y1203D02* Y1183D01* X4716Y1203D02* Y1183D01* X4803Y1427D02* Y1447D01* X4741Y1427D02* Y1447D01* X4374Y1651D02* Y1671D01* X4312Y1651D02* Y1671D01* X4204Y1651D02* Y1671D01* X4142Y1651D02* Y1671D01* X3881Y1683D02* Y1703D01* X3819Y1683D02* Y1703D01* X3657Y1852D02* Y1872D01* X3595Y1852D02* Y1872D01* X3400Y1531D02* X3380D01* X3400Y1469D02* X3380D01* X3779Y1200D02* Y1180D01* X3841Y1200D02* Y1180D01* X5265Y2679D02* X5285D01* X5265Y2741D02* X5285D01* X5615Y2679D02* X5635D01* X5615Y2741D02* X5635D01* X5985D02* X5965D01* X5985Y2679D02* X5965D01* X6254Y2611D02* X6274D01* X6254Y2673D02* X6274D01* X6408D02* X6388D01* X6341D02* X6321D01* Y2611D02* X6341D01* X6388D02* X6408D01* X6787Y2502D02* Y2522D01* X6725Y2502D02* Y2522D01* X6695Y2599D02* X6715D01* X6778D02* X6758D01* Y2661D02* X6778D01* X6715D02* X6695D01* X6841D02* X6821D01* X6841Y2599D02* X6821D01* X6892D02* X6912D01* X6892Y2661D02* X6912D01* X7224Y2939D02* Y2919D01* Y2876D02* Y2856D01* X7162D02* Y2876D01* Y2919D02* Y2939D01* X7019Y3671D02* Y3691D01* X6957Y3671D02* Y3691D01* X6947Y3737D02* X6967D01* X7010D02* X7030D01* Y3799D02* X7010D01* X6967D02* X6947D01* X6537Y3902D02* X6557D01* X6537Y3964D02* X6557D01* X6876Y4237D02* X6896D01* X6935D02* X6955D01* X6876Y4299D02* X6896D01* X6935D02* X6955D01* X6994D02* X7014D01* X7053D02* X7073D01* Y4237D02* X7053D01* X7014D02* X6994D01* X7062Y4344D02* Y4364D01* X7000Y4344D02* Y4364D01* X6413Y4770D02* Y4790D01* X6351Y4770D02* Y4790D01* X6160Y4811D02* X6140D01* X6160Y4749D02* X6140D01* X5960Y4811D02* X5940D01* X5960Y4749D02* X5940D01* X5995Y4240D02* X5975D01* X5995Y4178D02* X5975D01* X5850Y4240D02* X5830D01* X5850Y4178D02* X5830D01* X5804Y3754D02* Y3774D01* X5866Y3754D02* Y3774D01* X5974Y3734D02* Y3714D01* X6036Y3734D02* Y3714D01* X6021Y3629D02* Y3609D01* X5959Y3629D02* Y3609D01* X6021Y3524D02* Y3504D01* X5959Y3524D02* Y3504D01* X5916Y3494D02* Y3474D01* X5854D02* Y3494D01* X5866Y3554D02* Y3574D01* X5804Y3554D02* Y3574D01* X6108Y3346D02* X6088D01* X6108Y3284D02* X6088D01* X6038Y3244D02* X6018D01* X6038Y3182D02* X6018D01* X6088D02* X6108D01* X6088Y3244D02* X6108D01* X5756Y3164D02* Y3184D01* X5694Y3164D02* Y3184D01* X5450Y3248D02* X5470D01* X5450Y3310D02* X5470D01* X5324Y3394D02* Y3414D01* X5386Y3394D02* Y3414D01* Y3464D02* Y3484D01* Y3534D02* Y3554D01* Y3624D02* Y3604D01* X5324Y3554D02* Y3534D01* Y3484D02* Y3464D01* X5121Y3489D02* Y3469D01* X5059Y3489D02* Y3469D01* X5101Y3704D02* Y3684D01* X5039Y3704D02* Y3684D01* Y3589D02* Y3609D01* X5101Y3589D02* Y3609D01* X5154Y3589D02* Y3609D01* X5216Y3589D02* Y3609D01* X5324Y3604D02* Y3624D01* Y3764D02* Y3784D01* X5386Y3764D02* Y3784D01* Y3844D02* Y3864D01* X5324Y3844D02* Y3864D01* X5101Y4009D02* Y3989D01* X5039Y4009D02* Y3989D01* X5610Y4811D02* X5590D01* X5610Y4749D02* X5590D01* X5260Y4811D02* X5240D01* X5260Y4749D02* X5240D01* X4910Y4811D02* X4890D01* X4910Y4749D02* X4890D01* X4560Y4811D02* X4540D01* X4560Y4749D02* X4540D01* X4287Y4770D02* Y4790D01* X4225Y4770D02* Y4790D01* X4531Y4410D02* Y4390D01* X4469Y4410D02* Y4390D01* X4531Y4060D02* Y4040D01* X4469Y4060D02* Y4040D01* X4250Y3951D02* X4230D01* X4170D02* X4150D01* Y3889D02* X4170D01* X4169Y3830D02* Y3810D01* X4231D02* Y3830D01* X4250Y3889D02* X4230D01* X4291Y3720D02* Y3740D01* X4229Y3720D02* Y3740D01* X4171Y3720D02* Y3740D01* X4109Y3720D02* Y3740D01* X4029Y3630D02* Y3610D01* X4091Y3630D02* Y3610D01* X4160Y3559D02* X4180D01* X4160Y3621D02* X4180D01* X4269Y3600D02* Y3580D01* Y3530D02* Y3510D01* Y3460D02* Y3440D01* X4331D02* Y3460D01* Y3510D02* Y3530D01* Y3580D02* Y3600D01* X4469Y3490D02* Y3510D01* X4531Y3490D02* Y3510D01* X4469Y3690D02* Y3710D01* X4531Y3690D02* Y3710D01* Y3310D02* Y3290D01* X4469Y3310D02* Y3290D01* X4331Y3240D02* Y3220D01* X4269Y3240D02* Y3220D01* X4220Y3238D02* Y3218D01* X4158Y3238D02* Y3218D01* X4269Y3080D02* Y3100D01* Y3150D02* Y3170D01* X4331D02* Y3150D01* Y3100D02* Y3080D01* Y3030D02* Y3010D01* X4269Y3030D02* Y3010D01* X4331Y2960D02* Y2940D01* X4341Y2880D02* Y2860D01* X4363Y2718D02* Y2738D01* X4425Y2718D02* Y2738D01* X4469Y2940D02* Y2960D01* X4531Y2940D02* Y2960D01* X3889Y3270D02* Y3250D01* Y3210D02* Y3190D01* X3951D02* Y3210D01* Y3250D02* Y3270D01* X4029Y3160D02* Y3180D01* X4091Y3160D02* Y3180D01* Y3230D02* Y3250D01* X4029Y3230D02* Y3250D01* X4093Y3373D02* Y3393D01* X4031Y3373D02* Y3393D01* X4091Y3510D02* Y3530D01* X4029Y3510D02* Y3530D01* X3971Y3510D02* Y3490D01* X3909Y3510D02* Y3490D01* X3859Y3580D02* X3879D01* X3859Y3642D02* X3879D01* X3859Y3880D02* Y3900D01* X3921Y3880D02* Y3900D01* X3979Y3860D02* Y3880D01* X3977Y3938D02* Y3958D01* X4041Y3860D02* Y3880D01* X4039Y3938D02* Y3958D01* X4069Y4020D02* Y4040D01* Y4100D02* Y4120D01* X4131D02* Y4100D01* Y4040D02* Y4020D01* X4030Y4199D02* X4050D01* X4110D02* X4130D01* Y4261D02* X4110D01* X4050D02* X4030D01* X3891Y4390D02* Y4370D01* X3829Y4390D02* Y4370D01* X3891Y4240D02* Y4220D01* X3829Y4240D02* Y4220D01* X3846Y4110D02* Y4090D01* Y4050D02* Y4030D01* X3784D02* Y4050D01* Y4090D02* Y4110D01* X3268Y3966D02* Y3986D01* X3330Y3966D02* Y3986D01* X3381Y3750D02* Y3770D01* X3319Y3750D02* Y3770D01* X3250Y3731D02* X3230D01* X3250Y3669D02* X3230D01* X3229Y3515D02* Y3535D01* Y3575D02* Y3595D01* X3291D02* Y3575D01* Y3535D02* Y3515D01* X3569Y3120D02* Y3140D01* Y3180D02* Y3200D01* X3631D02* Y3180D01* Y3140D02* Y3120D01* X3610Y3001D02* X3590D01* X3610Y2939D02* X3590D01* X3540D02* X3520D01* X3470D02* X3450D01* Y3001D02* X3470D01* X3520D02* X3540D01* X3320D02* X3300D01* X3250D02* X3230D01* Y2939D02* X3250D01* X3300D02* X3320D01* X3070Y2929D02* X3050D01* X3000D02* X2980D01* Y2991D02* X3000D01* X3050D02* X3070D01* X3120Y3109D02* X3140D01* X3120Y3171D02* X3140D01* X3021Y3240D02* Y3260D01* X2959Y3240D02* Y3260D01* X2850Y3129D02* X2870D01* X2850Y3191D02* X2870D01* X2850Y3249D02* X2870D01* Y3311D02* X2850D01* X2870Y3369D02* X2850D01* X2870Y3431D02* X2850D01* X2870Y3489D02* X2850D01* X2870Y3551D02* X2850D01* X2641Y3670D02* Y3690D01* X2579Y3670D02* Y3690D01* X2451Y3670D02* Y3690D01* X2389Y3670D02* Y3690D01* X2318Y3671D02* Y3691D01* X2256Y3671D02* Y3691D01* X2171Y3641D02* X2151D01* X2171Y3579D02* X2151D01* X2171Y3519D02* X2151D01* Y3457D02* X2171D01* Y3401D02* X2151D01* X2171Y3339D02* X2151D01* X1588Y3745D02* X1608D01* X1588Y3807D02* X1608D01* X1707D02* X1687D01* X1707Y3745D02* X1687D01* X1889Y3930D02* Y3950D01* X1951Y3930D02* Y3950D01* X1980Y4104D02* Y4124D01* X1918Y4104D02* Y4124D01* Y4179D02* Y4199D01* Y4258D02* Y4278D01* X1980D02* Y4258D01* Y4199D02* Y4179D01* X2099Y4152D02* Y4132D01* X2161Y4152D02* Y4132D01* X2187Y4425D02* X2167D01* X2187Y4363D02* X2167D01* X1994Y4359D02* X2014D01* X2069D02* X2089D01* Y4421D02* X2069D01* X2014D02* X1994D01* X1939D02* X1919D01* X1939Y4359D02* X1919D01* X1910Y4681D02* X1890D01* X1910Y4619D02* X1890D01* X1960D02* X1980D01* X1960Y4681D02* X1980D01* X2110Y4739D02* X2130D01* X2110Y4801D02* X2130D01* X2548Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2610D02* Y4336D01* Y4274D02* Y4254D01* X2701D02* Y4274D01* X2763Y4254D02* Y4274D01* Y4336D02* Y4356D01* X2701Y4336D02* Y4356D01* X2670Y4419D02* X2690D01* X2670Y4481D02* X2690D01* X2780D02* X2760D01* X2780Y4419D02* X2760D01* X2916Y4335D02* Y4355D01* X2854Y4335D02* Y4355D01* Y4420D02* Y4440D01* X2916Y4420D02* Y4440D01* Y4565D02* Y4585D01* X2854Y4565D02* Y4585D01* X2796Y4813D02* X2776D01* X2796Y4751D02* X2776D01* X2851D02* X2871D01* X2851Y4813D02* X2871D01* X2929Y4710D02* Y4730D01* X2989Y4710D02* Y4730D01* X2991Y4710D02* Y4730D01* X3051Y4710D02* Y4730D01* X3112Y4710D02* Y4730D01* X3174Y4710D02* Y4730D01* X3143Y4792D02* Y4812D01* X3081Y4792D02* Y4812D01* X3253Y4750D02* X3273D01* X3253Y4812D02* X3273D01* X3346D02* X3326D01* X3346Y4750D02* X3326D01* X3400Y4751D02* X3420D01* X3400Y4813D02* X3420D01* X6056Y1227D02* Y1207D01* Y1156D02* Y1136D01* X6118D02* Y1156D01* Y1207D02* Y1227D01* X6321Y1563D02* X6341D01* X6321Y1625D02* X6341D01* X6163Y2024D02* X6183D01* X6163Y2086D02* X6183D01* X6449Y2183D02* Y2203D01* X6511Y2183D02* Y2203D01* X6801Y2086D02* X6781D01* X6801Y2024D02* X6781D01* X6801Y1775D02* X6781D01* X6801Y1713D02* X6781D01* X6801Y1625D02* X6781D01* X6801Y1563D02* X6781D01* X7162Y1506D02* Y1486D01* Y1443D02* Y1423D01* X7224D02* Y1443D01* Y1486D02* Y1506D01* X6993Y1156D02* Y1136D01* X7055Y1156D02* Y1136D01* Y1227D02* Y1207D01* X6993Y1227D02* Y1207D01* X6904Y1220D02* X6884D01* X6904Y1158D02* X6884D01* X6738Y1220D02* X6718D01* X6738Y1158D02* X6718D01* X6573Y1220D02* X6553D01* X6573Y1158D02* X6553D01* D044* X1677Y2025D02* D03* X1781Y1918D02* D03* X1698Y1788D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X1878Y1848D02* D03* X1854Y1876D02* D03* X1825Y1920D02* D03* X1877Y1915D02* D03* X1929Y1929D02* D03* X2027Y1915D02* D03* X2093Y1834D02* D03* X2091Y1756D02* D03* X2051Y1736D02* D03* X1978Y1562D02* D03* X2015Y1467D02* D03* X1970Y1398D02* D03* X2013Y1332D02* D03* X2187Y1381D02* D03* X2189Y1345D02* D03* X2186Y1283D02* D03* X2091Y1245D02* D03* X2188Y1243D02* D03* X2164Y1157D02* D03* X2315Y1193D02* D03* X2326Y1277D02* D03* X2314Y1312D02* D03* X2337Y1362D02* D03* X2315Y1413D02* D03* X2314Y1462D02* D03* X2168Y1466D02* D03* X2187Y1512D02* D03* Y1562D02* D03* X2188Y1612D02* D03* X2130Y1679D02* D03* X2187Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* X2188Y1812D02* D03* X2201Y1916D02* D03* X2265Y1915D02* D03* X2327Y1830D02* D03* X2446Y1961D02* D03* X2409Y1991D02* D03* X2440Y2024D02* D03* X2505Y2091D02* D03* X2413Y2093D02* D03* X2374Y2095D02* D03* X2377Y2061D02* D03* X2327Y2096D02* D03* X2280Y2095D02* D03* X2127Y2083D02* D03* X2166Y2082D02* D03* X2213Y2184D02* D03* X2154Y2211D02* D03* X2086Y2252D02* D03* X2084Y2309D02* D03* X2080Y2428D02* D03* X1990Y2335D02* D03* X1998Y2292D02* D03* X1999Y2222D02* D03* X2030D02* D03* X2032Y2183D02* D03* X2013Y2094D02* D03* X1902Y2092D02* D03* X1973Y2094D02* D03* X1937Y2156D02* D03* X1896Y2219D02* D03* X1894Y2250D02* D03* X1903Y2312D02* D03* X1906Y2350D02* D03* X1868Y2348D02* D03* X1902Y2413D02* D03* X1904Y2445D02* D03* X1902Y2484D02* D03* X1901Y2550D02* D03* X1825Y2540D02* D03* X1773Y2547D02* D03* X1738Y2507D02* D03* X1689Y2381D02* D03* X1788Y2820D02* D03* X1784Y2778D02* D03* X1832Y2771D02* D03* X1860Y2657D02* D03* X1861Y2625D02* D03* X1991Y2780D02* D03* X2039Y2790D02* D03* X2026Y2841D02* D03* X2104Y2818D02* D03* X2102Y2896D02* D03* X2131Y3010D02* D03* X2190Y3009D02* D03* X2224Y3044D02* D03* X2260Y2965D02* D03* X2261Y2894D02* D03* X2202Y2890D02* D03* X2178Y2786D02* D03* X2236Y2788D02* D03* X2093Y2676D02* D03* X2087Y2585D02* D03* X2181Y2592D02* D03* X2219D02* D03* X2281Y2660D02* D03* X2351Y2680D02* D03* X2350Y2617D02* D03* X2363Y2589D02* D03* X2396Y2588D02* D03* X2418Y2681D02* D03* X2427Y2639D02* D03* X2461Y2637D02* D03* X2494Y2639D02* D03* X2486Y2681D02* D03* X2455Y2593D02* D03* X2447Y2564D02* D03* X2444Y2530D02* D03* X2482Y2531D02* D03* X2481Y2482D02* D03* X2503Y2344D02* D03* Y2314D02* D03* X2495Y2284D02* D03* X2458Y2311D02* D03* Y2345D02* D03* X2459Y2378D02* D03* X2504Y2399D02* D03* X2478Y2422D02* D03* X2449Y2441D02* D03* X2428Y2482D02* D03* X2381Y2474D02* D03* X2312Y2507D02* D03* X2225Y2427D02* D03* X2329Y2405D02* D03* X2305Y2356D02* D03* X2304Y2311D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2280Y2212D02* D03* X2303Y2180D02* D03* X2332Y2184D02* D03* X2385Y2187D02* D03* X2386Y2243D02* D03* X2479Y2248D02* D03* X2501Y2225D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2537Y1427D02* D03* X2534Y1387D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2764Y1441D02* D03* X2853Y1443D02* D03* X3010D02* D03* X3105Y1446D02* D03* X3231D02* D03* X3205Y1582D02* D03* X3229Y1604D02* D03* X3151Y1667D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3275Y1735D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3130D02* D03* X3231Y2239D02* D03* X3266Y2244D02* D03* X3272Y2288D02* D03* X3268Y2342D02* D03* X3318D02* D03* X3322Y2288D02* D03* X3316Y2244D02* D03* X3318Y2142D02* D03* X3322Y2188D02* D03* X3272D02* D03* X3268Y2142D02* D03* X3224Y2109D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3177Y1937D02* D03* X3121Y1938D02* D03* X3126Y1887D02* D03* X3083Y1892D02* D03* X3161Y2460D02* D03* X3176Y2486D02* D03* Y2516D02* D03* X3150Y2501D02* D03* X3148Y2533D02* D03* X3232Y2592D02* D03* X3221Y2530D02* D03* X3266Y2532D02* D03* X3335Y2586D02* D03* X3324Y2627D02* D03* X3279Y2639D02* D03* X3229Y2682D02* D03* X3276Y2684D02* D03* X3277Y2733D02* D03* X3219Y2782D02* D03* X3175Y2726D02* D03* X3132Y2728D02* D03* X3126Y2687D02* D03* X3122Y2642D02* D03* X3080Y2583D02* D03* X3064Y2544D02* D03* X3093Y2535D02* D03* X3067Y2493D02* D03* Y2443D02* D03* Y2393D02* D03* Y2343D02* D03* X3057Y2297D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X2861Y1669D02* D03* X2910Y1671D02* D03* X2927Y1724D02* D03* X2874Y1727D02* D03* X2823Y1726D02* D03* X2767Y1679D02* D03* X2735Y1752D02* D03* X2777Y1780D02* D03* X2822D02* D03* X2875Y1785D02* D03* X2876Y1831D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2625Y1862D02* D03* X2564Y1816D02* D03* X2518Y1841D02* D03* X2471Y1762D02* D03* X2470Y1712D02* D03* X2469Y1661D02* D03* X2467Y1612D02* D03* X2468Y1562D02* D03* X2471Y1512D02* D03* X2473Y1462D02* D03* X2471Y1412D02* D03* X2468Y1362D02* D03* X2472Y1312D02* D03* X2480Y1262D02* D03* X2476Y1210D02* D03* X2558Y1214D02* D03* X2596Y1288D02* D03* X2647Y1189D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2837Y1237D02* D03* X2868Y1238D02* D03* X2931Y1243D02* D03* X2994Y1233D02* D03* X3089Y1234D02* D03* X3215Y1235D02* D03* X3246Y1238D02* D03* X3278Y1239D02* D03* X3310Y1242D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4725D02* D03* X4945D02* D03* X4905D02* D03* X4860D02* D03* X4815D02* D03* X4770D02* D03* X4615Y2014D02* D03* X4646D02* D03* X4771D02* D03* X4804D02* D03* X4835D02* D03* X4800Y2108D02* D03* X4771D02* D03* X4743D02* D03* X4700D02* D03* X4671D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2223D02* D03* X4672D02* D03* X4700D02* D03* X4743D02* D03* X4772D02* D03* X4800D02* D03* Y2365D02* D03* X4755D02* D03* X4705Y2350D02* D03* X4657D02* D03* X4634Y2494D02* D03* X4585D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4595Y2225D02* D03* X4547D02* D03* X4467Y2229D02* D03* X4419D02* D03* X4401Y2203D02* D03* X4281Y2223D02* D03* X4253D02* D03* X4223D02* D03* X4181D02* D03* X4153D02* D03* X4123D02* D03* X4282Y2354D02* D03* X4234D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4420Y1446D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3390Y1579D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3423Y1697D02* D03* X3489Y1738D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3383Y1893D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3499Y2030D02* D03* X3434Y1990D02* D03* X3404Y1986D02* D03* X3422Y2188D02* D03* X3418Y2142D02* D03* X3368D02* D03* X3372Y2188D02* D03* Y2288D02* D03* X3366Y2244D02* D03* X3416D02* D03* X3422Y2288D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3472Y2188D02* D03* X3468Y2142D02* D03* X3544Y2137D02* D03* X3577Y2141D02* D03* X3633Y2143D02* D03* Y2093D02* D03* X3667Y1993D02* D03* X3675Y1935D02* D03* X3583Y1943D02* D03* X3633D02* D03* X3627Y1893D02* D03* X3623Y1831D02* D03* X3621Y1789D02* D03* X3717Y1743D02* D03* X3824Y1736D02* D03* X3867Y1743D02* D03* X3917Y1693D02* D03* X4008Y1759D02* D03* X3987Y1781D02* D03* X3965Y1802D02* D03* X3767Y1843D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3812Y1993D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X3866D02* D03* X3817D02* D03* X3767D02* D03* X3817Y2193D02* D03* X3767D02* D03* X3725Y2247D02* D03* X3817Y2348D02* D03* Y2543D02* D03* X3767Y2727D02* D03* X3674Y2733D02* D03* X3623Y2635D02* D03* X3625Y2597D02* D03* X3583Y2539D02* D03* X3614Y2524D02* D03* X3633Y2493D02* D03* X3552Y2459D02* D03* X3573Y2436D02* D03* X3632Y2439D02* D03* X3627Y2411D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3478Y2430D02* D03* X3413Y2467D02* D03* X3433Y2537D02* D03* X3482Y2539D02* D03* X3533D02* D03* X3472Y2602D02* D03* X3475Y2645D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3379Y2685D02* D03* X3562Y2688D02* D03* X3525Y2697D02* D03* X3530Y2737D02* D03* X3531Y2784D02* D03* X3476Y2828D02* D03* X3451Y2845D02* D03* X3426Y2827D02* D03* X3367Y2919D02* D03* X3394Y2886D02* D03* X3360Y2847D02* D03* X3291Y2882D02* D03* X3278Y2839D02* D03* Y2961D02* D03* X3235Y2905D02* D03* X3192Y2852D02* D03* X3121Y2869D02* D03* X3103Y2845D02* D03* X3062Y2786D02* D03* X3060Y2855D02* D03* X3030Y2878D02* D03* X3007Y2841D02* D03* X2975Y2835D02* D03* X2825Y2784D02* D03* X2788D02* D03* X2757D02* D03* X2698D02* D03* X2570Y2867D02* D03* X2555Y2912D02* D03* X2585Y2979D02* D03* X2636Y2978D02* D03* X2718Y2979D02* D03* X2745Y3074D02* D03* X2743Y3109D02* D03* Y3151D02* D03* X2742Y3188D02* D03* Y3226D02* D03* X2748Y3268D02* D03* X2746Y3310D02* D03* X2710Y3304D02* D03* X2714Y3268D02* D03* X2672Y3269D02* D03* X2630Y3271D02* D03* X2588Y3272D02* D03* X2589Y3308D02* D03* X2590Y3351D02* D03* X2514Y3308D02* D03* Y3345D02* D03* X2472D02* D03* X2438Y3344D02* D03* Y3307D02* D03* X2472Y3308D02* D03* Y3263D02* D03* Y3230D02* D03* X2514Y3236D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2591Y3227D02* D03* X2629D02* D03* Y3192D02* D03* X2672Y3226D02* D03* Y3191D02* D03* X2673Y3147D02* D03* X2672Y3111D02* D03* Y3069D02* D03* X2617Y3067D02* D03* X2629Y3114D02* D03* Y3152D02* D03* X2587D02* D03* X2471Y3154D02* D03* X2470Y3114D02* D03* X2549D02* D03* X2546Y3079D02* D03* X2561Y3053D02* D03* X2530Y3047D02* D03* X2468Y3048D02* D03* X2445Y2980D02* D03* X2397Y2982D02* D03* X2411Y2885D02* D03* X2441Y2903D02* D03* X2473Y2873D02* D03* X2500Y2899D02* D03* X2522Y2857D02* D03* X2497Y2790D02* D03* X2463D02* D03* X2704Y2555D02* D03* X2703Y2522D02* D03* X2691Y2462D02* D03* X2693Y2387D02* D03* X2673Y2342D02* D03* X2671Y2311D02* D03* X2670Y2280D02* D03* X2671Y2248D02* D03* X2604Y2393D02* D03* X2601Y2427D02* D03* X2603Y2472D02* D03* X2599Y2534D02* D03* X2598Y2623D02* D03* X2600Y2658D02* D03* X2599Y2694D02* D03* X2699Y2671D02* D03* X2761Y2681D02* D03* X2824Y2685D02* D03* X2823Y2634D02* D03* X2875Y2636D02* D03* X2971Y2585D02* D03* X3020Y2636D02* D03* X3067Y2643D02* D03* X3041Y2687D02* D03* X2977Y2732D02* D03* X2974Y2686D02* D03* X2922Y2682D02* D03* X2872Y2732D02* D03* X2925Y2735D02* D03* X2921Y2779D02* D03* X2875Y2785D02* D03* X2829Y2859D02* D03* X2875Y2834D02* D03* Y2885D02* D03* X2947Y2928D02* D03* X2985Y3039D02* D03* X3053Y3031D02* D03* X3123Y3046D02* D03* X3098Y3029D02* D03* X3119Y2969D02* D03* X3159Y3138D02* D03* X3202Y3217D02* D03* X3174Y3231D02* D03* X3146Y3286D02* D03* X3196Y3296D02* D03* X3245Y3292D02* D03* X3287Y3293D02* D03* X3247Y3340D02* D03* X3293Y3339D02* D03* X3351Y3343D02* D03* X3393D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3590Y3440D02* D03* X3545D02* D03* Y3485D02* D03* X3591Y3497D02* D03* Y3548D02* D03* Y3589D02* D03* X3548Y3587D02* D03* X3542Y3554D02* D03* X3512Y3205D02* D03* X3469D02* D03* X3423D02* D03* X3371Y3139D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3413D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3688Y3027D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X3998Y3465D02* D03* X4001Y3383D02* D03* X3920Y3415D02* D03* X3855Y3367D02* D03* X3791Y3401D02* D03* X3792Y3445D02* D03* X3743Y3440D02* D03* X3748Y3486D02* D03* X3692Y3490D02* D03* X3698Y3441D02* D03* Y3396D02* D03* X3748Y3392D02* D03* X3747Y3340D02* D03* X3695Y3341D02* D03* X3646D02* D03* X3643Y3387D02* D03* X3647Y3441D02* D03* X3648Y3485D02* D03* Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3363Y3794D02* D03* X3206Y3720D02* D03* X3288Y3719D02* D03* X3342D02* D03* X3345Y3672D02* D03* X3394Y3670D02* D03* X3395Y3719D02* D03* X3445D02* D03* Y3670D02* D03* X3441Y3604D02* D03* X3392D02* D03* X3344Y3602D02* D03* X3282Y3622D02* D03* X3251Y3621D02* D03* X3209Y3622D02* D03* X3185Y3596D02* D03* X3162Y3641D02* D03* X3096Y3585D02* D03* X3047D02* D03* X2996D02* D03* X2947D02* D03* X2901Y3537D02* D03* X2898Y3505D02* D03* X2899Y3471D02* D03* X2905Y3440D02* D03* X2899Y3410D02* D03* X2806Y3313D02* D03* X2812Y3271D02* D03* X2805Y3229D02* D03* X2822Y3199D02* D03* X2786Y3158D02* D03* X2787Y3115D02* D03* X2994Y3286D02* D03* X2955Y3210D02* D03* X3003Y3163D02* D03* X3061Y3219D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3144Y3340D02* D03* X3192D02* D03* X3197Y3386D02* D03* X3245Y3390D02* D03* X3290D02* D03* X3350Y3387D02* D03* X3393Y3386D02* D03* X3446D02* D03* X3441Y3344D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3491Y3440D02* D03* X3442Y3442D02* D03* X3440Y3484D02* D03* X3387Y3489D02* D03* X3396Y3442D02* D03* X3354D02* D03* X3288D02* D03* X3293Y3486D02* D03* X3248D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3009Y3443D02* D03* X3051D02* D03* X3043Y3494D02* D03* X2994Y3531D02* D03* X3007Y3495D02* D03* X2965Y3492D02* D03* X2892Y3628D02* D03* X2896Y3658D02* D03* X2939Y3669D02* D03* X2954Y3643D02* D03* X2992Y3640D02* D03* X2998Y3684D02* D03* X3047D02* D03* Y3640D02* D03* X3092D02* D03* X3095Y3684D02* D03* X3133Y3744D02* D03* X3093Y3747D02* D03* X3047Y3740D02* D03* X2992D02* D03* X2951Y3742D02* D03* X2882Y3779D02* D03* X2855Y3758D02* D03* X2822Y3779D02* D03* X2674Y3743D02* D03* X2638Y3770D02* D03* X2584Y3773D02* D03* X2615Y3742D02* D03* X2610Y3709D02* D03* X2612Y3651D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2525Y3938D02* D03* X2397Y3955D02* D03* X2360Y3934D02* D03* X2335Y3963D02* D03* X2307Y3934D02* D03* X2273Y3962D02* D03* X2036Y3887D02* D03* X1926Y3896D02* D03* X1809Y3776D02* D03* X1777Y3745D02* D03* X1729Y3706D02* D03* X2396Y3638D02* D03* X2454D02* D03* X2485Y3626D02* D03* X2551Y3582D02* D03* X2550Y3548D02* D03* X2512Y3547D02* D03* X2470Y3545D02* D03* X2472Y3507D02* D03* X2433D02* D03* X2357Y3502D02* D03* X2390Y3507D02* D03* Y3468D02* D03* X2357Y3466D02* D03* X2312Y3469D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2318Y3578D02* D03* X2333Y3637D02* D03* X2272Y3631D02* D03* X2119Y3641D02* D03* X2117Y3518D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* Y3364D02* D03* X2274Y3153D02* D03* X2311Y3114D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2354Y3114D02* D03* Y3153D02* D03* X2390Y3193D02* D03* X2433Y3231D02* D03* X2435Y3265D02* D03* X2391D02* D03* X2354Y3231D02* D03* X2356Y3265D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2356Y3388D02* D03* X2391Y3391D02* D03* Y3428D02* D03* X2357Y3424D02* D03* Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2472Y3387D02* D03* X2435D02* D03* Y3424D02* D03* X2472D02* D03* X2471Y3463D02* D03* X2435Y3464D02* D03* X2515Y3462D02* D03* X2514Y3424D02* D03* Y3387D02* D03* X2550Y3390D02* D03* X2556Y3425D02* D03* X2587Y3429D02* D03* Y3467D02* D03* X2556Y3464D02* D03* Y3504D02* D03* X2592Y3505D02* D03* X2631Y3510D02* D03* X2672Y3506D02* D03* X2706Y3467D02* D03* X2667Y3430D02* D03* X2664Y3468D02* D03* X2629D02* D03* Y3430D02* D03* X2628Y3387D02* D03* X2667Y3388D02* D03* X2666Y3349D02* D03* X2710Y3347D02* D03* X2709Y3389D02* D03* X2745D02* D03* X2746Y3428D02* D03* X2709Y3547D02* D03* X2745Y3506D02* D03* X2819Y3507D02* D03* X2818Y3477D02* D03* X2819Y3537D02* D03* X2778Y3579D02* D03* X2733Y3657D02* D03* X2764Y3721D02* D03* X2732Y3750D02* D03* X2706Y3773D02* D03* X2743Y3892D02* D03* X2801Y3891D02* D03* X2870Y3892D02* D03* X2871Y3952D02* D03* X2804Y4013D02* D03* X2736Y4010D02* D03* X2689Y4063D02* D03* X2658Y4119D02* D03* X2608Y4118D02* D03* X2508Y4117D02* D03* X3012Y4627D02* D03* X2962D02* D03* X2929Y4657D02* D03* X2893Y4667D02* D03* X2873Y4532D02* D03* X2906D02* D03* X2940Y4479D02* D03* X2883Y4465D02* D03* X2871Y4302D02* D03* X2902Y4301D02* D03* X2934Y4231D02* D03* X3025Y4130D02* D03* X2969Y4108D02* D03* X2945Y4089D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X2997Y4044D02* D03* X3005Y3995D02* D03* X3003Y3945D02* D03* X2949Y3901D02* D03* X2930Y3929D02* D03* X3055Y3995D02* D03* Y3946D02* D03* X3105D02* D03* X3146Y3895D02* D03* X3195Y3896D02* D03* X3191Y3949D02* D03* X3045Y3838D02* D03* X3097D02* D03* X3145D02* D03* X3198Y3837D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3244Y3894D02* D03* X3286Y3939D02* D03* X3347Y3943D02* D03* X3297Y4095D02* D03* X3251Y4089D02* D03* X3243Y4238D02* D03* X3202Y4213D02* D03* Y4165D02* D03* X3109D02* D03* X3112Y4199D02* D03* X3050Y4328D02* D03* X3048Y4498D02* D03* Y4538D02* D03* X3034Y4657D02* D03* X3062Y4676D02* D03* X3112Y4673D02* D03* X3162Y4676D02* D03* X3236Y4673D02* D03* X3250Y4646D02* D03* X3286Y4659D02* D03* X3331Y4670D02* D03* X3361Y4671D02* D03* X3462Y4844D02* D03* X3410Y4848D02* D03* X3322Y4849D02* D03* X3263Y4848D02* D03* X3199Y4847D02* D03* X3137Y4844D02* D03* X3087D02* D03* X3037D02* D03* X2987D02* D03* X2937D02* D03* X2896Y4847D02* D03* X2853Y4849D02* D03* X2786Y4848D02* D03* X2537Y4675D02* D03* X2662Y4666D02* D03* X2712Y4623D02* D03* X2761D02* D03* X2787Y4669D02* D03* X2812Y4611D02* D03* X2813Y4568D02* D03* X2815Y4531D02* D03* X2727Y4465D02* D03* X2725Y4434D02* D03* X2684Y4304D02* D03* X2683Y4228D02* D03* X2581Y4227D02* D03* X2514Y4265D02* D03* X2511Y4345D02* D03* X2580Y4311D02* D03* X2223Y4425D02* D03* X2119Y4359D02* D03* X2124Y4218D02* D03* X2061Y4142D02* D03* X2018Y4045D02* D03* X1950Y4156D02* D03* Y4222D02* D03* X1852Y4473D02* D03* Y4510D02* D03* X1851Y4548D02* D03* X1931Y4588D02* D03* X1935Y4647D02* D03* X1864Y4648D02* D03* X2040Y4583D02* D03* X2020Y4619D02* D03* X2014Y4651D02* D03* X2092Y4767D02* D03* X2148Y4773D02* D03* X4560Y4387D02* D03* X4559Y4050D02* D03* Y3700D02* D03* X4568Y3669D02* D03* X4380Y3592D02* D03* X4377Y3509D02* D03* X4354Y3486D02* D03* X4296Y3494D02* D03* X4295Y3563D02* D03* X4303Y3665D02* D03* X4266Y3852D02* D03* X4196Y3951D02* D03* X4126Y3848D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X3909Y3658D02* D03* X3941Y3623D02* D03* X3899Y3608D02* D03* X3955Y3558D02* D03* X3993Y3546D02* D03* X3995Y3605D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3798Y3772D02* D03* X3827Y3844D02* D03* X3794Y3846D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3693Y3993D02* D03* X3698Y4048D02* D03* X3751D02* D03* X3799Y4006D02* D03* X3831D02* D03* X3879Y3930D02* D03* X3909Y3933D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X4108Y4072D02* D03* X4081Y4187D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4377Y3142D02* D03* X4369Y3218D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4701Y2806D02* D03* X4925Y2769D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X5087Y2128D02* D03* X5124D02* D03* X5162D02* D03* X5240Y2220D02* D03* Y2255D02* D03* Y2290D02* D03* X5704Y2321D02* D03* X5754D02* D03* X5803Y2324D02* D03* X5832Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5754Y2189D02* D03* X5704D02* D03* X5717Y2128D02* D03* X5681D02* D03* X5645D02* D03* X5654Y2189D02* D03* X5625Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5654Y2321D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5620Y1960D02* D03* X5593D02* D03* X5597Y1916D02* D03* X5605Y1862D02* D03* X5573D02* D03* X5530D02* D03* X5522Y1916D02* D03* X5525Y1960D02* D03* X5498D02* D03* X5360Y1865D02* D03* Y1910D02* D03* X5270D02* D03* X5255Y1865D02* D03* X5220D02* D03* X5185D02* D03* X5150D02* D03* X5045Y1677D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* X5185D02* D03* X5220D02* D03* X5255D02* D03* X5253Y1772D02* D03* Y1697D02* D03* Y1622D02* D03* X5141Y1510D02* D03* X5081Y1439D02* D03* X5049Y1447D02* D03* X5018Y1446D02* D03* X4638Y1572D02* D03* X4682D02* D03* X4771Y1564D02* D03* X4874Y1572D02* D03* X4929Y1565D02* D03* X4860Y1446D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5204Y1213D02* D03* X5211Y1277D02* D03* X5262Y1146D02* D03* X5344Y1139D02* D03* X5392D02* D03* X5344Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* X5736Y1263D02* D03* X5783D02* D03* Y1139D02* D03* X5736D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* X6275Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5688Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* Y1786D02* D03* Y1740D02* D03* X6925D02* D03* X6971D02* D03* Y1786D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X6925Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6475Y2336D02* D03* Y2290D02* D03* X6459Y2231D02* D03* X6502D02* D03* X6571Y2286D02* D03* X6671D02* D03* Y2340D02* D03* Y2386D02* D03* X6625Y2440D02* D03* X6571D02* D03* X6450Y2620D02* D03* Y2580D02* D03* X6500Y2540D02* D03* X6450D02* D03* Y2500D02* D03* X6475Y2436D02* D03* X6410Y2480D02* D03* X6370D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6321D02* D03* X6275D02* D03* X6221D02* D03* X6175D02* D03* Y2336D02* D03* X5975Y2036D02* D03* Y1990D02* D03* X6021D02* D03* Y2036D02* D03* Y2090D02* D03* Y2136D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5921D02* D03* Y2236D02* D03* Y2136D02* D03* X5975D02* D03* Y2090D02* D03* X5936Y2080D02* D03* X5921Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975D02* D03* Y1936D02* D03* X6021D02* D03* Y1890D02* D03* Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5758D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X6021Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X5921Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X6021D02* D03* Y1390D02* D03* X6075Y1436D02* D03* X6121Y1490D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6075D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* Y1890D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X6135Y2033D02* D03* Y2077D02* D03* X6214Y2109D02* D03* X6075Y2090D02* D03* Y2136D02* D03* Y2190D02* D03* Y2236D02* D03* Y2336D02* D03* X6021Y2290D02* D03* X5975D02* D03* Y2336D02* D03* X5921Y2290D02* D03* Y2336D02* D03* Y2390D02* D03* X5975D02* D03* Y2436D02* D03* X6050Y2480D02* D03* Y2520D02* D03* Y2560D02* D03* X6100D02* D03* Y2520D02* D03* Y2480D02* D03* X6150D02* D03* X6195D02* D03* X6240D02* D03* X6280D02* D03* X6320D02* D03* Y2520D02* D03* X6280D02* D03* X6240D02* D03* Y2560D02* D03* X6280D02* D03* X6320D02* D03* X6363Y2634D02* D03* X6296D02* D03* X6182Y2787D02* D03* X5975Y2769D02* D03* X5625D02* D03* X5645Y2605D02* D03* X5690D02* D03* X5600D02* D03* X5450D02* D03* X5215D02* D03* X5275Y2769D02* D03* X5291Y3404D02* D03* X5252Y3336D02* D03* X5175Y3351D02* D03* X5091Y3322D02* D03* X5049D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X6022Y3470D02* D03* X5979Y3472D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5850Y3444D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5770Y3389D02* D03* X5768Y3300D02* D03* Y3258D02* D03* X5827Y3128D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6037Y3150D02* D03* X6099Y3154D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7143Y4126D02* D03* X7119Y4212D02* D03* X7117Y4244D02* D03* X7119Y4295D02* D03* X7104Y4321D02* D03* X7119Y4347D02* D03* X7104Y4373D02* D03* X7119Y4441D02* D03* X7104Y4467D02* D03* X7119Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X6992Y4433D02* D03* X6976Y4323D02* D03* X6906Y4217D02* D03* X6854Y4272D02* D03* X6850Y4213D02* D03* X6752Y4189D02* D03* X6656Y4220D02* D03* X6704Y4282D02* D03* X6574Y4365D02* D03* X6322Y4780D02* D03* X6440D02* D03* X6613Y4718D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6800D02* D03* X6850D02* D03* X6800Y4643D02* D03* X6850D02* D03* X6873Y4557D02* D03* X6750Y4643D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6700Y4850D02* D03* Y4888D02* D03* X6750D02* D03* Y4850D02* D03* X6800D02* D03* Y4888D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6903Y4718D02* D03* X6955Y4717D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7119Y4634D02* D03* X7110Y4681D02* D03* X7127Y4764D02* D03* X7244D02* D03* X7267Y4634D02* D03* Y4488D02* D03* Y4343D02* D03* Y4197D02* D03* Y4051D02* D03* Y3905D02* D03* Y3760D02* D03* Y3614D02* D03* Y3469D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7119Y3130D02* D03* X7104Y3156D02* D03* X7119Y2984D02* D03* X7104Y3010D02* D03* X7119Y3036D02* D03* X7104Y3062D02* D03* X6920Y3105D02* D03* X6970Y3030D02* D03* Y2990D02* D03* X6865D02* D03* Y3030D02* D03* X6815Y3105D02* D03* X6775D02* D03* X6776Y3145D02* D03* Y3185D02* D03* X6815Y3230D02* D03* X6775D02* D03* X6776Y3270D02* D03* X6816D02* D03* X6921D02* D03* X6920Y3230D02* D03* X6726Y3270D02* D03* X6725Y3230D02* D03* X6670D02* D03* X6671Y3270D02* D03* X6621D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X6760Y2877D02* D03* X6722D02* D03* X6671Y2876D02* D03* X6621Y2875D02* D03* Y2990D02* D03* Y3030D02* D03* X6671D02* D03* Y2991D02* D03* X6570Y3105D02* D03* X6620D02* D03* X6670D02* D03* X6725D02* D03* X6720Y2991D02* D03* X6719Y3030D02* D03* X6762D02* D03* X6761Y2991D02* D03* Y2955D02* D03* Y2917D02* D03* X6865Y2865D02* D03* X6970D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* X7025Y1340D02* D03* Y1386D02* D03* X6971D02* D03* Y1340D02* D03* X6925D02* D03* Y1386D02* D03* X6971Y1440D02* D03* X6925D02* D03* Y1486D02* D03* X6971D02* D03* X7025Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* Y1840D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* X6925D02* D03* X6971Y2140D02* D03* X7025D02* D03* Y2186D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X6971Y2386D02* D03* X6925D02* D03* Y2440D02* D03* X6971D02* D03* X7025D02* D03* Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X7119Y2279D02* D03* X7104Y2305D02* D03* X7119Y2331D02* D03* X7104Y2357D02* D03* X7119Y2425D02* D03* X7109Y2454D02* D03* X7120Y2482D02* D03* X7109Y2510D02* D03* X7119Y2571D02* D03* Y2623D02* D03* X7104Y2649D02* D03* Y2597D02* D03* X7018Y2569D02* D03* X6934Y2564D02* D03* X6885D02* D03* X6837Y2565D02* D03* X6781D02* D03* X6726Y2567D02* D03* X6672Y2573D02* D03* X6659Y2658D02* D03* X6672Y2702D02* D03* X6726Y2694D02* D03* X6781Y2693D02* D03* X6837Y2695D02* D03* X6885Y2696D02* D03* X6939Y2698D02* D03* X7052Y2692D02* D03* X7051Y2722D02* D03* X7074Y2744D02* D03* X7104Y2742D02* D03* X7119Y2716D02* D03* Y2768D02* D03* X7104Y2794D02* D03* X7267Y2764D02* D03* X7258Y2850D02* D03* Y2882D02* D03* Y2913D02* D03* X7189Y2843D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7189Y2952D02* D03* X7258Y2945D02* D03* X7267Y3031D02* D03* X7293Y3132D02* D03* X7267Y3177D02* D03* Y3323D02* D03* D381* X1970Y1435D02* Y1439D01* X1817Y1876D02* X1813D01* D018* X1539Y2437D02* X1601D01* X1674Y2510D01* Y2558D01* X1730Y2614D01* X1800Y2520D02* X1773Y2547D01* X1738Y2507D02* Y2461D01* X1689Y2437D02* Y2381D01* D01* X2060Y2854D02* X2039D01* X2026Y2841D01* X1917Y2874D02* X1918Y2875D01* Y2857D01* X1832Y2771D01* X1730Y2732D02* Y2793D01* X1759Y2822D01* Y2865D01* X1768Y2874D01* X1800Y2515D02* X1825Y2540D01* X1800Y2520D02* Y2515D01* Y2461D01* Y2346D01* X1863Y2283D01* Y2072D01* X1925Y2010D01* Y1985D01* X1746Y1884D02* X1726D01* X1692Y1941D02* X1735Y1984D01* X1682D01* X1646Y1948D01* Y1817D01* X1925Y1985D02* X1926Y1984D01* X1735D01* X1692Y1941D02* Y1826D01* X1694Y1828D02* X1692Y1826D01* X1726Y1809D02* X1746D01* X1805D02* X1825D01* X1978Y1526D02* Y1506D01* X1904Y1526D02* Y1506D01* Y1447D02* Y1427D01* X2523Y1943D02* Y1895D01* X2573Y1943D02* Y1895D01* X2623Y1943D02* Y1895D01* X2673Y1943D02* Y1895D01* X2523Y1671D02* Y1719D01* X2573Y1671D02* Y1719D01* X2623Y1671D02* Y1719D01* X2673Y1671D02* Y1719D01* X3390Y1579D02* Y1531D01* X4469Y2440D02* Y2392D01* X4419Y2440D02* Y2392D01* X4369Y2440D02* Y2392D01* X4319Y2440D02* Y2392D01* X4209Y2440D02* Y2392D01* X4159Y2440D02* Y2392D01* X4109Y2440D02* Y2392D01* X4059Y2440D02* Y2392D01* X3631Y3130D02* Y3128D01* X3800Y2949D02* X3819D01* Y2920D01* X3891D02* Y2949D01* X3890D01* X4059Y2664D02* Y2616D01* X4109Y2664D02* Y2616D01* X4159Y2664D02* Y2616D01* X4209Y2664D02* Y2616D01* X4469D02* Y2664D01* X4419Y2616D02* Y2664D01* X4369Y2616D02* Y2664D01* X4319Y2616D02* Y2664D01* X4279Y2870D02* D01* X4269Y3090D02* X4263D01* X4241Y3112D01* X4240Y3951D02* X4196D01* X4160D02* X4196D01* X3796Y4014D02* X3784Y4026D01* Y4040D01* Y4100D02* Y4114D01* X3796Y4126D01* X3087Y4844D02* X3081Y4838D01* Y4802D01* X3051Y4720D02* X3040Y4709D01* X2786Y4813D02* Y4848D01* X2770Y4481D02* X2742D01* X2726Y4465D01* X2727D02* X2726D01* X2707Y4481D02* X2680D01* X2357Y4205D02* X2385D01* X2407Y4227D01* Y4276D01* X2384Y4299D01* X2357D01* X2355Y4268D02* X2341D01* Y4236D01* X2355D01* X2282Y4299D02* X2294D01* Y4268D01* X2282D01* X2280D02* X2234D01* X2222Y4256D01* X2076D01* X2004Y4359D02* X2079D01* X2119D01* D01* X2079Y4421D02* X2078D01* X2004D01* X1929D01* X1814Y4366D02* X1821Y4359D01* X1929D01* Y4333D01* X1947Y4315D01* X2002D01* X2020Y4297D01* Y4130D01* X2004Y4114D01* X1980D01* X1918D02* X1837D01* X1814Y4091D01* Y4015D01* X1889Y3940D01* X1926Y3896D02* X1951Y3921D01* Y3940D01* X2061Y4142D02* D01* X2099D01* X2124Y4218D02* D01* X2176D01* Y4294D02* Y4363D01* X2177D01* Y4425D02* X2223D01* D01* X5840Y4178D02* X5848D01* X5876Y4150D01* X5944Y4185D02* X5951Y4178D01* X5985D01* X6574Y4365D02* X6575Y4364D01* X6768D01* Y4316D01* X6736Y4284D01* Y4248D01* X6571Y3597D02* Y3549D01* X6621Y3597D02* Y3549D01* X6671Y3597D02* Y3549D01* X6721Y3597D02* Y3549D01* X6819Y3597D02* Y3549D01* X6869Y3597D02* Y3549D01* X6919Y3597D02* Y3549D01* X6969Y3597D02* Y3549D01* Y3373D02* Y3325D01* X6919Y3373D02* Y3325D01* X6869Y3373D02* Y3325D01* X6819Y3373D02* Y3325D01* X6721Y3373D02* Y3325D01* X6671Y3373D02* Y3325D01* X6621Y3373D02* Y3325D01* X6571Y3373D02* Y3325D01* X6123Y3420D02* X6101Y3398D01* X6084D01* X5315Y2293D02* Y2245D01* X5365Y2293D02* Y2245D01* X5415Y2293D02* Y2245D01* X5465Y2293D02* Y2245D01* Y2069D02* Y2021D01* X5415Y2069D02* Y2021D01* X5365Y2069D02* Y2021D01* X5315Y2069D02* Y2021D01* X5653D02* Y2069D01* X5703Y2021D02* Y2069D01* X5753Y2021D02* Y2069D01* X5803Y2021D02* Y2069D01* Y2245D02* Y2293D01* X5753Y2245D02* Y2293D01* X5703Y2245D02* Y2293D01* X5653Y2245D02* Y2293D01* X6471Y1594D02* X6423D01* X6471Y1644D02* X6423D01* X6471Y1694D02* X6423D01* X6471Y1744D02* X6423D01* X6647D02* X6695D01* X6647Y1694D02* X6695D01* X6647Y1644D02* X6695D01* X6647Y1594D02* X6695D01* X6972Y1069D02* X6130D01* X6118Y1083D01* Y1146D01* X6056D02* Y1083D01* X6037Y1066D01* X6571Y2911D02* Y2959D01* X6621Y2911D02* Y2959D01* X6671Y2911D02* Y2959D01* X6721Y2911D02* Y2959D01* X6819Y2911D02* Y2959D01* X6869Y2911D02* Y2959D01* X6919Y2911D02* Y2959D01* X6969Y2911D02* Y2959D01* Y3135D02* Y3183D01* X6919Y3135D02* Y3183D01* X6869Y3135D02* Y3183D01* X6819Y3135D02* Y3183D01* X6721Y3135D02* Y3183D01* X6671Y3135D02* Y3183D01* X6621Y3135D02* Y3183D01* X6571Y3135D02* Y3183D01* D023* X2051Y1581D02* Y1561D01* X2130Y1581D02* Y1561D01* Y1384D02* Y1364D01* D048* X1976Y1181D02* D03* Y1230D02* D03* D023* X2051Y1364D02* Y1384D01* D048* X1734Y1471D02* D03* D023* X1488Y1840D02* Y1849D01* Y1978D02* Y1987D01* X1539Y2455D02* Y2419D01* X1689Y2455D02* Y2419D01* X1917Y2856D02* Y2892D01* X1768Y2856D02* Y2892D01* X1488Y3702D02* Y3711D01* Y3840D02* Y3849D01* X3207Y3120D02* Y3160D01* X3333Y3120D02* Y3160D01* X3741Y3090D02* Y3070D01* X3819Y3090D02* Y3070D01* X3878Y3329D02* Y3349D01* X3957Y3329D02* Y3349D01* X3900Y3697D02* X3860D01* X3900Y3823D02* X3860D01* X4587Y2278D02* Y2258D01* X4665Y2278D02* Y2258D01* X5295Y1965D02* X5335D01* X5295Y1839D02* X5335D01* X5783Y1965D02* X5823D01* X5783Y1839D02* X5823D01* X5744Y1230D02* Y1210D01* X5665Y1230D02* Y1210D01* X5579Y1189D02* Y1229D01* X5453Y1189D02* Y1229D01* D048* X7346Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* X7504D02* D03* Y1630D02* D03* X7583D02* D03* Y1551D02* D03* X7661D02* D03* Y1630D02* D03* X7740D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7583Y1236D02* D03* X7504D02* D03* X7425D02* D03* Y1157D02* D03* X7346D02* D03* Y1236D02* D03* X7425Y1315D02* D03* X7346D02* D03* Y1394D02* D03* Y1472D02* D03* X7425D02* D03* Y1394D02* D03* X7504Y1472D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* Y1315D02* D03* X7583D02* D03* X7504D02* D03* Y1394D02* D03* X7583D02* D03* Y1709D02* D03* X7504D02* D03* Y1787D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7740D02* D03* Y1787D02* D03* Y1866D02* D03* Y1945D02* D03* X7661Y1866D02* D03* Y1945D02* D03* X7583D02* D03* Y1866D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* X7425D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y2339D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* X7346D02* D03* Y2339D02* D03* Y2496D02* D03* Y2575D02* D03* X7425D02* D03* Y2496D02* D03* X7504Y2575D02* D03* Y2496D02* D03* X7583D02* D03* Y2575D02* D03* X7661D02* D03* Y2496D02* D03* Y2417D02* D03* X7583D02* D03* X7504D02* D03* X7740Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* X7346Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* X7425D02* D03* Y3205D02* D03* X7346D02* D03* X7425Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* X7346D02* D03* Y2654D02* D03* X7425D02* D03* X7583Y2732D02* D03* X7504D02* D03* Y2654D02* D03* X7583D02* D03* X7661D02* D03* Y2732D02* D03* X7740D02* D03* Y2811D02* D03* Y2890D02* D03* X7661D02* D03* Y2811D02* D03* X7583D02* D03* X7504D02* D03* Y2890D02* D03* X7583D02* D03* X7740Y3047D02* D03* Y2969D02* D03* X7661D02* D03* Y3047D02* D03* X7583D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* Y3126D02* D03* X7583D02* D03* X7661D02* D03* X7740Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* X7425Y4071D02* D03* Y3992D02* D03* X7346D02* D03* Y4071D02* D03* Y4150D02* D03* X7425D02* D03* X7504Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7504Y3992D02* D03* X7583D02* D03* X7661D02* D03* Y4071D02* D03* X7740D02* D03* Y4150D02* D03* Y4228D02* D03* X7583Y4386D02* D03* Y4307D02* D03* X7504D02* D03* Y4386D02* D03* X7425D02* D03* Y4307D02* D03* Y4228D02* D03* X7346D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* X7425D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* Y4465D02* D03* X7661D02* D03* Y4386D02* D03* Y4307D02* D03* X7740D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7661Y4543D02* D03* Y4622D02* D03* X7583D02* D03* X7504D02* D03* Y4701D02* D03* X7583D02* D03* X7661D02* D03* Y4780D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7346D02* D03* Y4701D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* D023* X6858Y4588D02* X6678D01* X6858Y4364D02* X6678D01* X6736Y4238D02* Y4258D01* X6815Y4238D02* Y4258D01* X6793Y3657D02* X6773D01* X6793Y3736D02* X6773D01* X6581D02* X6601D01* X6581Y3657D02* X6601D01* X6064Y3524D02* X6104D01* X6064Y3398D02* X6104D01* D048* X7583Y3283D02* D03* X7504D02* D03* Y3205D02* D03* X7583D02* D03* X7661D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* X7583D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7425D02* D03* Y3362D02* D03* Y3283D02* D03* X7346D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* X7346D02* D03* Y3677D02* D03* X7425D02* D03* Y3756D02* D03* X7346D02* D03* Y3835D02* D03* Y3913D02* D03* X7425Y3835D02* D03* Y3913D02* D03* X7504D02* D03* Y3835D02* D03* X7583D02* D03* Y3913D02* D03* X7661D02* D03* Y3835D02* D03* Y3756D02* D03* X7583D02* D03* X7504D02* D03* Y3677D02* D03* X7583D02* D03* X7661D02* D03* Y3598D02* D03* Y3520D02* D03* X7583D02* D03* X7504D02* D03* Y3598D02* D03* X7583D02* D03* D017* X2283Y2024D02* X2311D01* X2283Y1992D02* X2311D01* X2283Y1961D02* X2311D01* X2283Y1929D02* X2311D01* X2358D02* X2386D01* X2358Y1961D02* X2386D01* X2358Y1992D02* X2386D01* X2358Y2024D02* X2386D01* X2555Y1563D02* Y1535D01* X2587Y1563D02* Y1535D01* X2618Y1563D02* Y1535D01* X2650Y1563D02* Y1535D01* Y1460D02* Y1488D01* X2618Y1460D02* Y1488D01* X2587Y1460D02* Y1488D01* X2555Y1460D02* Y1488D01* X3513Y1439D02* Y1467D01* X3544Y1439D02* Y1467D01* X3576Y1439D02* Y1467D01* X3607Y1439D02* Y1467D01* Y1541D02* Y1513D01* X3576Y1541D02* Y1513D01* X3544Y1541D02* Y1513D01* X3513Y1541D02* Y1513D01* X3089Y2317D02* X3117D01* X3089Y2286D02* X3117D01* X3089Y2254D02* X3117D01* X3089Y2223D02* X3117D01* X3163D02* X3191D01* X3163Y2254D02* X3191D01* X3163Y2286D02* X3191D01* X3163Y2317D02* X3191D01* X3507Y3107D02* Y3079D01* X3476Y3107D02* Y3079D01* X3444Y3107D02* Y3079D01* X3413Y3107D02* Y3079D01* Y3153D02* Y3181D01* X3444Y3153D02* Y3181D01* X3476Y3153D02* Y3181D01* X3507Y3153D02* Y3181D01* X2563Y3996D02* Y3968D01* X2594Y3996D02* Y3968D01* X2626Y3996D02* Y3968D01* X2657Y3996D02* Y3968D01* Y4043D02* Y4071D01* X2626Y4043D02* Y4071D01* X2594Y4043D02* Y4071D01* X2563Y4043D02* Y4071D01* X2370Y4299D02* X2342D01* X2370Y4268D02* X2342D01* X2370Y4236D02* X2342D01* X2370Y4205D02* X2342D01* X2295D02* X2267D01* X2295Y4236D02* X2267D01* X2295Y4268D02* X2267D01* X2295Y4299D02* X2267D01* X4127Y4327D02* Y4299D01* X4096Y4327D02* Y4299D01* X4064Y4327D02* Y4299D01* X4033Y4327D02* Y4299D01* Y4373D02* Y4401D01* X4064Y4373D02* Y4401D01* X4096Y4373D02* Y4401D01* X4127Y4373D02* Y4401D01* X4449Y4453D02* X4477D01* X4449Y4484D02* X4477D01* X4449Y4516D02* X4477D01* X4449Y4547D02* X4477D01* X4449Y4603D02* X4477D01* X4449Y4634D02* X4477D01* X4449Y4666D02* X4477D01* X4449Y4697D02* X4477D01* X4523D02* X4551D01* X4523Y4666D02* X4551D01* X4523Y4634D02* X4551D01* X4523Y4603D02* X4551D01* X4523Y4547D02* X4551D01* X4523Y4516D02* X4551D01* X4523Y4484D02* X4551D01* X4523Y4453D02* X4551D01* Y4253D02* X4523D01* X4551Y4284D02* X4523D01* X4551Y4316D02* X4523D01* X4551Y4347D02* X4523D01* X4477D02* X4449D01* X4477Y4316D02* X4449D01* X4477Y4284D02* X4449D01* X4477Y4253D02* X4449D01* Y4103D02* X4477D01* X4449Y4134D02* X4477D01* X4449Y4166D02* X4477D01* X4449Y4197D02* X4477D01* X4523D02* X4551D01* X4523Y4166D02* X4551D01* X4523Y4134D02* X4551D01* X4523Y4103D02* X4551D01* Y3903D02* X4523D01* X4551Y3934D02* X4523D01* X4551Y3966D02* X4523D01* X4551Y3997D02* X4523D01* X4477D02* X4449D01* X4477Y3966D02* X4449D01* X4477Y3934D02* X4449D01* X4477Y3903D02* X4449D01* Y3753D02* X4477D01* X4449Y3784D02* X4477D01* X4449Y3816D02* X4477D01* X4449Y3847D02* X4477D01* X4523D02* X4551D01* X4523Y3816D02* X4551D01* X4523Y3784D02* X4551D01* X4523Y3753D02* X4551D01* Y3553D02* X4523D01* X4551Y3584D02* X4523D01* X4551Y3616D02* X4523D01* X4551Y3647D02* X4523D01* X4477D02* X4449D01* X4477Y3616D02* X4449D01* X4477Y3584D02* X4449D01* X4477Y3553D02* X4449D01* Y3353D02* X4477D01* X4449Y3384D02* X4477D01* X4449Y3416D02* X4477D01* X4449Y3447D02* X4477D01* X4523D02* X4551D01* X4523Y3416D02* X4551D01* X4523Y3384D02* X4551D01* X4523Y3353D02* X4551D01* X4311Y3293D02* X4283D01* X4311Y3324D02* X4283D01* X4311Y3356D02* X4283D01* X4311Y3387D02* X4283D01* X4237D02* X4209D01* X4237Y3356D02* X4209D01* X4237Y3324D02* X4209D01* X4237Y3293D02* X4209D01* X4131Y3013D02* X4103D01* X4131Y3044D02* X4103D01* X4131Y3076D02* X4103D01* X4131Y3107D02* X4103D01* X4057D02* X4029D01* X4057Y3076D02* X4029D01* X4057Y3044D02* X4029D01* X4057Y3013D02* X4029D01* X4551Y3153D02* X4523D01* X4551Y3184D02* X4523D01* X4551Y3216D02* X4523D01* X4551Y3247D02* X4523D01* X4477D02* X4449D01* X4477Y3216D02* X4449D01* X4477Y3184D02* X4449D01* X4477Y3153D02* X4449D01* Y3003D02* X4477D01* X4449Y3034D02* X4477D01* X4449Y3066D02* X4477D01* X4449Y3097D02* X4477D01* X4523D02* X4551D01* X4523Y3066D02* X4551D01* X4523Y3034D02* X4551D01* X4523Y3003D02* X4551D01* Y2803D02* X4523D01* X4551Y2834D02* X4523D01* X4551Y2866D02* X4523D01* X4551Y2897D02* X4523D01* X4477D02* X4449D01* X4477Y2866D02* X4449D01* X4477Y2834D02* X4449D01* X4477Y2803D02* X4449D01* X4778Y2761D02* Y2733D01* X4809Y2761D02* Y2733D01* X4841Y2761D02* Y2733D01* X4872Y2761D02* Y2733D01* Y2659D02* Y2687D01* X4841Y2659D02* Y2687D01* X4809Y2659D02* Y2687D01* X4778Y2659D02* Y2687D01* X4978D02* Y2659D01* X5009Y2687D02* Y2659D01* X5041Y2687D02* Y2659D01* X5072Y2687D02* Y2659D01* X5128Y2687D02* Y2659D01* X5159Y2687D02* Y2659D01* X5191Y2687D02* Y2659D01* X5222Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5191Y2733D02* Y2761D01* X5159Y2733D02* Y2761D01* X5128Y2733D02* Y2761D01* X5072Y2733D02* Y2761D01* X5041Y2733D02* Y2761D01* X5009Y2733D02* Y2761D01* X4978Y2733D02* Y2761D01* X5328Y2687D02* Y2659D01* X5359Y2687D02* Y2659D01* X5391Y2687D02* Y2659D01* X5422Y2687D02* Y2659D01* X5478Y2687D02* Y2659D01* X5509Y2687D02* Y2659D01* X5541Y2687D02* Y2659D01* X5572Y2687D02* Y2659D01* Y2733D02* Y2761D01* X5541Y2733D02* Y2761D01* X5509Y2733D02* Y2761D01* X5478Y2733D02* Y2761D01* X5422Y2733D02* Y2761D01* X5391Y2733D02* Y2761D01* X5359Y2733D02* Y2761D01* X5328Y2733D02* Y2761D01* X5678D02* Y2733D01* X5709Y2761D02* Y2733D01* X5741Y2761D02* Y2733D01* X5772Y2761D02* Y2733D01* X5828Y2761D02* Y2733D01* X5859Y2761D02* Y2733D01* X5891Y2761D02* Y2733D01* X5922Y2761D02* Y2733D01* Y2659D02* Y2687D01* X5891Y2659D02* Y2687D01* X5859Y2659D02* Y2687D01* X5828Y2659D02* Y2687D01* X5772Y2659D02* Y2687D01* X5741Y2659D02* Y2687D01* X5709Y2659D02* Y2687D01* X5678Y2659D02* Y2687D01* X6028D02* Y2659D01* X6059Y2687D02* Y2659D01* X6091Y2687D02* Y2659D01* X6122Y2687D02* Y2659D01* Y2733D02* Y2761D01* X6091Y2733D02* Y2761D01* X6059Y2733D02* Y2761D01* X6028Y2733D02* Y2761D01* X6630Y2594D02* X6602D01* X6630Y2626D02* X6602D01* X6630Y2657D02* X6602D01* X6630Y2689D02* X6602D01* X6555D02* X6527D01* X6555Y2657D02* X6527D01* X6555Y2626D02* X6527D01* X6555Y2594D02* X6527D01* Y2736D02* X6555D01* X6527Y2768D02* X6555D01* X6527Y2799D02* X6555D01* X6527Y2831D02* X6555D01* X6602D02* X6630D01* X6602Y2799D02* X6630D01* X6602Y2768D02* X6630D01* X6602Y2736D02* X6630D01* X7142Y2717D02* X7170D01* X7142Y2748D02* X7170D01* X7142Y2780D02* X7170D01* X7142Y2811D02* X7170D01* X7216D02* X7244D01* X7216Y2780D02* X7244D01* X7216Y2748D02* X7244D01* X7216Y2717D02* X7244D01* Y2665D02* X7216D01* X7244Y2634D02* X7216D01* X7244Y2602D02* X7216D01* X7244Y2571D02* X7216D01* X7170D02* X7142D01* X7170Y2602D02* X7142D01* X7170Y2634D02* X7142D01* X7170Y2665D02* X7142D01* X7244Y2425D02* X7216D01* X7244Y2457D02* X7216D01* X7244Y2488D02* X7216D01* X7244Y2520D02* X7216D01* X7170D02* X7142D01* X7170Y2488D02* X7142D01* X7170Y2457D02* X7142D01* X7170Y2425D02* X7142D01* Y2374D02* X7170D01* X7142Y2343D02* X7170D01* X7142Y2311D02* X7170D01* X7142Y2280D02* X7170D01* X7216D02* X7244D01* X7216Y2311D02* X7244D01* X7216Y2343D02* X7244D01* X7216Y2374D02* X7244D01* X7142Y2134D02* X7170D01* X7142Y2165D02* X7170D01* X7142Y2197D02* X7170D01* X7142Y2228D02* X7170D01* X7216D02* X7244D01* X7216Y2197D02* X7244D01* X7216Y2165D02* X7244D01* X7216Y2134D02* X7244D01* Y2083D02* X7216D01* X7244Y2051D02* X7216D01* X7244Y2020D02* X7216D01* X7244Y1988D02* X7216D01* X7170D02* X7142D01* X7170Y2020D02* X7142D01* X7170Y2051D02* X7142D01* X7170Y2083D02* X7142D01* Y1843D02* X7170D01* X7142Y1874D02* X7170D01* X7142Y1906D02* X7170D01* X7142Y1937D02* X7170D01* X7216D02* X7244D01* X7216Y1906D02* X7244D01* X7216Y1874D02* X7244D01* X7216Y1843D02* X7244D01* Y1791D02* X7216D01* X7244Y1760D02* X7216D01* X7244Y1728D02* X7216D01* X7244Y1697D02* X7216D01* X7170D02* X7142D01* X7170Y1728D02* X7142D01* X7170Y1760D02* X7142D01* X7170Y1791D02* X7142D01* Y1551D02* X7170D01* X7142Y1583D02* X7170D01* X7142Y1614D02* X7170D01* X7142Y1646D02* X7170D01* X7216D02* X7244D01* X7216Y1614D02* X7244D01* X7216Y1583D02* X7244D01* X7216Y1551D02* X7244D01* Y1378D02* X7216D01* X7244Y1346D02* X7216D01* X7244Y1315D02* X7216D01* X7244Y1283D02* X7216D01* X7170D02* X7142D01* X7170Y1315D02* X7142D01* X7170Y1346D02* X7142D01* X7170Y1378D02* X7142D01* Y1138D02* X7170D01* X7142Y1169D02* X7170D01* X7142Y1201D02* X7170D01* X7142Y1232D02* X7170D01* X7216D02* X7244D01* X7216Y1201D02* X7244D01* X7216Y1169D02* X7244D01* X7216Y1138D02* X7244D01* X6213Y1166D02* Y1138D01* X6244Y1166D02* Y1138D01* X6276Y1166D02* Y1138D01* X6307Y1166D02* Y1138D01* X6366Y1166D02* Y1138D01* X6398Y1166D02* Y1138D01* X6429Y1166D02* Y1138D01* X6461Y1166D02* Y1138D01* Y1212D02* Y1240D01* X6429Y1212D02* Y1240D01* X6398Y1212D02* Y1240D01* X6366Y1212D02* Y1240D01* X6307Y1212D02* Y1240D01* X6276Y1212D02* Y1240D01* X6244Y1212D02* Y1240D01* X6213Y1212D02* Y1240D01* X6256Y1657D02* X6228D01* X6256Y1626D02* X6228D01* X6256Y1594D02* X6228D01* X6256Y1563D02* X6228D01* X6181D02* X6153D01* X6181Y1594D02* X6153D01* X6181Y1626D02* X6153D01* X6181Y1657D02* X6153D01* Y1870D02* X6181D01* X6153Y1902D02* X6181D01* X6153Y1933D02* X6181D01* X6153Y1965D02* X6181D01* X6228D02* X6256D01* X6228Y1933D02* X6256D01* X6228Y1902D02* X6256D01* X6228Y1870D02* X6256D01* Y1717D02* X6228D01* X6256Y1748D02* X6228D01* X6256Y1780D02* X6228D01* X6256Y1811D02* X6228D01* X6181D02* X6153D01* X6181Y1780D02* X6153D01* X6181Y1748D02* X6153D01* X6181Y1717D02* X6153D01* X5855Y1709D02* X5827D01* X5855Y1677D02* X5827D01* X5855Y1646D02* X5827D01* X5855Y1614D02* X5827D01* X5780D02* X5752D01* X5780Y1646D02* X5752D01* X5780Y1677D02* X5752D01* X5780Y1709D02* X5752D01* X7142Y3079D02* X7170D01* X7142Y3047D02* X7170D01* X7142Y3016D02* X7170D01* X7142Y2984D02* X7170D01* X7216D02* X7244D01* X7216Y3016D02* X7244D01* X7216Y3047D02* X7244D01* X7216Y3079D02* X7244D01* Y3130D02* X7216D01* X7244Y3161D02* X7216D01* X7244Y3193D02* X7216D01* X7244Y3224D02* X7216D01* X7170D02* X7142D01* X7170Y3193D02* X7142D01* X7170Y3161D02* X7142D01* X7170Y3130D02* X7142D01* Y3370D02* X7170D01* X7142Y3339D02* X7170D01* X7142Y3307D02* X7170D01* X7142Y3276D02* X7170D01* X7216D02* X7244D01* X7216Y3307D02* X7244D01* X7216Y3339D02* X7244D01* X7216Y3370D02* X7244D01* Y3516D02* X7216D01* X7244Y3484D02* X7216D01* X7244Y3453D02* X7216D01* X7244Y3421D02* X7216D01* X7170D02* X7142D01* X7170Y3453D02* X7142D01* X7170Y3484D02* X7142D01* X7170Y3516D02* X7142D01* Y3567D02* X7170D01* X7142Y3598D02* X7170D01* X7142Y3630D02* X7170D01* X7142Y3661D02* X7170D01* X7216D02* X7244D01* X7216Y3630D02* X7244D01* X7216Y3598D02* X7244D01* X7216Y3567D02* X7244D01* Y3807D02* X7216D01* X7244Y3776D02* X7216D01* X7244Y3744D02* X7216D01* X7244Y3713D02* X7216D01* X7170D02* X7142D01* X7170Y3744D02* X7142D01* X7170Y3776D02* X7142D01* X7170Y3807D02* X7142D01* Y3858D02* X7170D01* X7142Y3890D02* X7170D01* X7142Y3921D02* X7170D01* X7142Y3953D02* X7170D01* X7216D02* X7244D01* X7216Y3921D02* X7244D01* X7216Y3890D02* X7244D01* X7216Y3858D02* X7244D01* Y4681D02* X7216D01* X7244Y4650D02* X7216D01* X7244Y4618D02* X7216D01* X7244Y4587D02* X7216D01* X7170D02* X7142D01* X7170Y4618D02* X7142D01* X7170Y4650D02* X7142D01* X7170Y4681D02* X7142D01* Y4441D02* X7170D01* X7142Y4472D02* X7170D01* X7142Y4504D02* X7170D01* X7142Y4535D02* X7170D01* X7216D02* X7244D01* X7216Y4504D02* X7244D01* X7216Y4472D02* X7244D01* X7216Y4441D02* X7244D01* Y4390D02* X7216D01* X7244Y4358D02* X7216D01* X7244Y4327D02* X7216D01* X7244Y4295D02* X7216D01* X7170D02* X7142D01* X7170Y4327D02* X7142D01* X7170Y4358D02* X7142D01* X7170Y4390D02* X7142D01* Y4098D02* X7170D01* X7142Y4067D02* X7170D01* X7142Y4035D02* X7170D01* X7142Y4004D02* X7170D01* X7216D02* X7244D01* X7216Y4035D02* X7244D01* X7216Y4067D02* X7244D01* X7216Y4098D02* X7244D01* Y4150D02* X7216D01* X7244Y4181D02* X7216D01* X7244Y4213D02* X7216D01* X7244Y4244D02* X7216D01* X7170D02* X7142D01* X7170Y4213D02* X7142D01* X7170Y4181D02* X7142D01* X7170Y4150D02* X7142D01* X6630Y4232D02* X6602D01* X6630Y4264D02* X6602D01* X6630Y4295D02* X6602D01* X6630Y4327D02* X6602D01* X6555D02* X6527D01* X6555Y4295D02* X6527D01* X6555Y4264D02* X6527D01* X6555Y4232D02* X6527D01* X6003Y4803D02* Y4831D01* X6034Y4803D02* Y4831D01* X6066Y4803D02* Y4831D01* X6097Y4803D02* Y4831D01* Y4757D02* Y4729D01* X6066Y4757D02* Y4729D01* X6034Y4757D02* Y4729D01* X6003Y4757D02* Y4729D01* X5653D02* Y4757D01* X5684Y4729D02* Y4757D01* X5716Y4729D02* Y4757D01* X5747Y4729D02* Y4757D01* X5803Y4729D02* Y4757D01* X5834Y4729D02* Y4757D01* X5866Y4729D02* Y4757D01* X5897Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5866Y4831D02* Y4803D01* X5834Y4831D02* Y4803D01* X5803Y4831D02* Y4803D01* X5747Y4831D02* Y4803D01* X5716Y4831D02* Y4803D01* X5684Y4831D02* Y4803D01* X5653Y4831D02* Y4803D01* X5303D02* Y4831D01* X5334Y4803D02* Y4831D01* X5366Y4803D02* Y4831D01* X5397Y4803D02* Y4831D01* X5453Y4803D02* Y4831D01* X5484Y4803D02* Y4831D01* X5516Y4803D02* Y4831D01* X5547Y4803D02* Y4831D01* Y4757D02* Y4729D01* X5516Y4757D02* Y4729D01* X5484Y4757D02* Y4729D01* X5453Y4757D02* Y4729D01* X5397Y4757D02* Y4729D01* X5366Y4757D02* Y4729D01* X5334Y4757D02* Y4729D01* X5303Y4757D02* Y4729D01* X4953D02* Y4757D01* X4984Y4729D02* Y4757D01* X5016Y4729D02* Y4757D01* X5047Y4729D02* Y4757D01* X5103Y4729D02* Y4757D01* X5134Y4729D02* Y4757D01* X5166Y4729D02* Y4757D01* X5197Y4729D02* Y4757D01* Y4831D02* Y4803D01* X5166Y4831D02* Y4803D01* X5134Y4831D02* Y4803D01* X5103Y4831D02* Y4803D01* X5047Y4831D02* Y4803D01* X5016Y4831D02* Y4803D01* X4984Y4831D02* Y4803D01* X4953Y4831D02* Y4803D01* X4603D02* Y4831D01* X4634Y4803D02* Y4831D01* X4666Y4803D02* Y4831D01* X4697Y4803D02* Y4831D01* X4753Y4803D02* Y4831D01* X4784Y4803D02* Y4831D01* X4816Y4803D02* Y4831D01* X4847Y4803D02* Y4831D01* Y4757D02* Y4729D01* X4816Y4757D02* Y4729D01* X4784Y4757D02* Y4729D01* X4753Y4757D02* Y4729D01* X4697Y4757D02* Y4729D01* X4666Y4757D02* Y4729D01* X4634Y4757D02* Y4729D01* X4603Y4757D02* Y4729D01* D370* X2696Y1743D02* D03* X2511Y2178D02* D03* X2422Y1931D02* D03* X2349Y2077D02* D03* X2232Y2049D02* D03* X2200D02* D03* X2084Y2078D02* D03* X2087Y2038D02* D03* X2016Y1987D02* D03* X1620Y1924D02* D03* X2000Y2429D02* D03* X1997Y2532D02* D03* X2008Y2552D02* D03* X2022Y2571D02* D03* X2023Y2597D02* D03* X2009Y2618D02* D03* X2021Y2637D02* D03* X2017Y2665D02* D03* X2034Y2687D02* D03* X2050Y2659D02* D03* X2088Y2635D02* D03* X2124Y2636D02* D03* X2135Y2676D02* D03* X2161Y2675D02* D03* X2193Y2694D02* D03* X2233Y2629D02* D03* X2253Y2609D02* D03* X2334Y2481D02* D03* X2296Y2382D02* D03* X2459Y2679D02* D03* X2440Y2696D02* D03* X2563Y3930D02* D03* X2594Y3949D02* D03* X2626Y3931D02* D03* X2658Y3948D02* D03* X3498Y3491D02* D03* X3261Y3550D02* D03* X3249Y3418D02* D03* X3311Y3222D02* D03* X3278Y3212D02* D03* X2999Y2809D02* D03* X3282Y2609D02* D03* X3351Y2543D02* D03* X3598Y2695D02* D03* X3660Y2609D02* D03* X3754Y2394D02* D03* X4475Y1446D02* D03* X4709Y1567D02* D03* X5236Y3160D02* D03* X4700Y2832D02* D03* X4229Y3058D02* D03* X4184Y3033D02* D03* X4192Y3076D02* D03* Y3107D02* D03* X4187Y3293D02* D03* X4185Y3356D02* D03* X4558Y3500D02* D03* X6813Y3935D02* D03* X6838D02* D03* X6864D02* D03* X6889D02* D03* X6915D02* D03* X6978D02* D03* X7016D02* D03* X6985Y3657D02* D03* Y3443D02* D03* X7019Y2538D02* D03* X6971Y2527D02* D03* X6222Y2673D02* D03* X6130Y1717D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D053* X2081Y4644D02* D03* X1814Y4268D02* D03* Y4189D02* D03* Y4091D02* D03* X1511Y3526D02* D03* Y3426D02* D03* Y3141D02* D03* Y3041D02* D03* X1652Y2732D02* D03* X1573D02* D03* Y2614D02* D03* X1652D02* D03* X1730D02* D03* X1652Y2260D02* D03* X1573D02* D03* Y2142D02* D03* X1652D02* D03* X1730D02* D03* D027* X1606Y1069D02* X3047D01* X3344D02* X5405D01* X6252D02* X7693D01* D028* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D384* X1926Y2681D02* X1969D01* X1926Y2665D02* X1969D01* X1926Y2650D02* X1969D01* Y2618D02* X1926D01* X1969Y2634D02* X1926D01* Y2602D02* X1969D01* X1926Y2587D02* X1969D01* X1926Y2571D02* X1969D01* Y2539D02* X1926D01* X1969Y2555D02* X1926D01* X1969Y2508D02* X1926D01* X1969Y2524D02* X1926D01* Y2492D02* X1969D01* X1926Y2476D02* X1969D01* Y2445D02* X1926D01* X1969Y2461D02* X1926D01* Y2429D02* X1969D01* X1926Y2413D02* X1969D01* Y2382D02* X1926D01* X1969Y2398D02* X1926D01* Y2366D02* X1969D01* X1926Y2350D02* X1969D01* X1926Y2335D02* X1969D01* X1926Y2319D02* X1969D01* Y2287D02* X1926D01* X1969Y2303D02* X1926D01* Y2272D02* X1969D01* X1926Y2256D02* X1969D01* Y2224D02* X1926D01* X1969Y2240D02* X1926D01* Y2209D02* X1969D01* X1926Y2193D02* X1969D01* X2020Y2158D02* Y2115D01* X2004Y2158D02* Y2115D01* X2035D02* Y2158D01* X2051Y2115D02* Y2158D01* X2067Y2115D02* Y2158D01* X2083Y2115D02* Y2158D01* X2114D02* Y2115D01* X2098Y2158D02* Y2115D01* X2130D02* Y2158D01* X2146Y2115D02* Y2158D01* X2177D02* Y2115D01* X2161Y2158D02* Y2115D01* X2193D02* Y2158D01* X2209Y2115D02* Y2158D01* X2240D02* Y2115D01* X2224Y2158D02* Y2115D01* X2256D02* Y2158D01* X2272Y2115D02* Y2158D01* X2303D02* Y2115D01* X2287Y2158D02* Y2115D01* X2319D02* Y2158D01* X2335Y2115D02* Y2158D01* X2350Y2115D02* Y2158D01* X2366Y2115D02* Y2158D01* X2398D02* Y2115D01* X2382Y2158D02* Y2115D01* X2413D02* Y2158D01* X2429Y2115D02* Y2158D01* X2461D02* Y2115D01* X2445Y2158D02* Y2115D01* X2476D02* Y2158D01* X2492Y2115D02* Y2158D01* X2570Y2193D02* X2527D01* X2570Y2209D02* X2527D01* Y2240D02* X2570D01* X2527Y2224D02* X2570D01* Y2256D02* X2527D01* X2570Y2272D02* X2527D01* Y2303D02* X2570D01* X2527Y2287D02* X2570D01* Y2319D02* X2527D01* X2570Y2335D02* X2527D01* X2570Y2350D02* X2527D01* X2570Y2366D02* X2527D01* Y2398D02* X2570D01* X2527Y2382D02* X2570D01* Y2413D02* X2527D01* X2570Y2429D02* X2527D01* Y2461D02* X2570D01* X2527Y2445D02* X2570D01* Y2476D02* X2527D01* X2570Y2492D02* X2527D01* Y2524D02* X2570D01* X2527Y2508D02* X2570D01* X2527Y2555D02* X2570D01* X2527Y2539D02* X2570D01* Y2571D02* X2527D01* X2570Y2587D02* X2527D01* X2570Y2602D02* X2527D01* Y2634D02* X2570D01* X2527Y2618D02* X2570D01* Y2650D02* X2527D01* X2570Y2665D02* X2527D01* X2570Y2681D02* X2527D01* X2492Y2716D02* Y2759D01* X2476Y2716D02* Y2759D01* X2445D02* Y2716D01* X2461Y2759D02* Y2716D01* X2429D02* Y2759D01* X2413Y2716D02* Y2759D01* X2382D02* Y2716D01* X2398Y2759D02* Y2716D01* X2366D02* Y2759D01* X2350Y2716D02* Y2759D01* X2319D02* Y2716D01* X2335Y2759D02* Y2716D01* X2287Y2759D02* Y2716D01* X2303Y2759D02* Y2716D01* X2272D02* Y2759D01* X2256Y2716D02* Y2759D01* X2240Y2716D02* Y2759D01* X2224Y2716D02* Y2759D01* X2193D02* Y2716D01* X2209Y2759D02* Y2716D01* X2177D02* Y2759D01* X2161Y2716D02* Y2759D01* X2130D02* Y2716D01* X2146Y2759D02* Y2716D01* X2114D02* Y2759D01* X2098Y2716D02* Y2759D01* X2067D02* Y2716D01* X2083Y2759D02* Y2716D01* X2051D02* Y2759D01* X2035Y2716D02* Y2759D01* X2004D02* Y2716D01* X2020Y2759D02* Y2716D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D047* X2327Y1237D02* D03* D03* Y1787D02* D03* D03* D022* X4211Y1717D02* Y1757D01* X4135Y1717D02* Y1757D01* X4173Y1817D02* Y1857D01* X4343D02* Y1817D01* X4305Y1757D02* Y1717D01* X4381Y1757D02* Y1717D01* X3988Y4140D02* Y4100D01* X3912Y4140D02* Y4100D01* X3950Y4040D02* Y4000D01* X4020Y3820D02* Y3780D01* X3982Y3720D02* Y3680D01* X4058Y3720D02* Y3680D01* X3076Y3091D02* X3036D01* X3076Y3167D02* X3036D01* X2976Y3129D02* X2936D01* X2196Y4218D02* X2156D01* X2196Y4294D02* X2156D01* X2096Y4256D02* X2056D01* X1970Y4520D02* X2010D01* X2070Y4482D02* X2110D01* X2070Y4558D02* X2110D01* X6918Y4592D02* X6958D01* X6918Y4668D02* X6958D01* X7018Y4630D02* X7058D01* Y4469D02* X7018D01* X6958Y4431D02* X6918D01* X6958Y4507D02* X6918D01* X6000Y3984D02* Y3944D01* X5962Y3884D02* Y3844D01* X6038Y3884D02* Y3844D01* X7016Y2700D02* Y2660D01* X6978Y2600D02* Y2560D01* X7054Y2600D02* Y2560D01* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D014* X2164Y1157D02* D01* X2129D01* X2091Y1245D02* X2130D01* X2091D02* D01* X2051D01* X1970Y1398D02* D01* Y1437D01* X2015Y1467D02* X2041Y1441D01* X2051D01* X1978Y1516D02* Y1562D01* D01* X2250Y1512D02* X2187D01* D01* X2168Y1466D02* X2143Y1441D01* X2130D01* X2189Y1345D02* X2196Y1352D01* X2250D01* Y1362D01* X2404D02* X2468D01* X2404D02* D01* Y1262D02* X2480D01* X2647Y1189D02* Y1188D01* X2724D01* Y1190D01* X2725D01* X2787D02* X2810D01* X2837Y1217D01* Y1237D01* X3388Y1438D02* X3390D01* Y1469D01* X3051Y1666D02* X3014Y1629D01* X3000D01* X2937Y1638D02* Y1652D01* D01* Y1648D01* X2914Y1671D01* X2910D01* X2875Y1638D02* D01* X2874Y1639D01* Y1656D01* X2861Y1669D01* X2836D01* X2818Y1651D01* Y1638D01* X2756D02* Y1668D01* X2767Y1679D01* X2673Y1707D02* Y1716D01* X2623D01* Y1707D02* Y1716D01* X2573D01* Y1707D02* Y1716D01* X2523D01* Y1644D01* D01* Y1707D01* X2555Y1589D02* D01* Y1549D01* Y1537D01* X2587D01* Y1549D01* Y1537D02* X2618D01* Y1549D01* Y1537D02* X2650D01* Y1549D01* X2764Y1441D02* X2792Y1469D01* Y1508D01* X2854D02* Y1443D01* X2853D01* X2809Y1879D02* X2786D01* X2778Y1887D01* X2673Y1907D02* Y2009D01* X2677Y2012D01* X2707D01* D01* X2615D02* Y1980D01* X2623Y1972D01* Y1907D01* Y1862D01* X2625D01* X2297Y2024D02* X2313D01* Y1994D01* X2311Y1992D01* X2297D02* X2311D01* X2312D01* Y1961D01* X2297D02* X2312D01* Y1929D01* X2297D01* X2279D01* X2265Y1915D01* X2122Y1866D02* Y1863D01* X2093Y1834D01* X2122Y1787D02* D01* X2091Y1756D01* X1854Y1876D02* D01* X1815D01* X1825Y1920D02* X1797Y1948D01* X1764D01* X1736Y1920D01* Y1884D01* X1698Y1788D02* X1619D01* X1563Y1844D01* X1488D01* X2704Y2526D02* X2703D01* Y2522D01* X2665Y2504D02* X2682D01* X2704Y2526D01* Y2555D02* Y2556D01* X2694Y2566D01* X2665D01* X2737Y2723D02* Y2707D01* X2761Y2683D01* Y2681D01* X2799Y2723D02* Y2711D01* X2824Y2686D01* Y2685D01* X2665Y2814D02* X2667D01* X2696Y2785D01* Y2784D01* X2698D01* X2737Y2824D02* Y2804D01* X2757Y2784D01* X2788D02* X2799Y2795D01* Y2824D01* X2739Y3020D02* Y2997D01* X2719Y2977D01* X2718D01* Y2979D01* X2719Y2977D02* X2739Y2957D01* Y2940D01* X2636Y2978D02* X2611Y2953D01* X2615Y2948D01* X2610D01* X2585Y2979D02* X2612Y3006D01* X2608Y3010D01* X2610D01* X2468Y3048D02* X2482Y3034D01* Y3003D01* X2421Y2949D02* Y2956D01* X2445Y2980D01* X2421Y3011D02* X2419Y3009D01* Y3011D01* X2397Y2989D01* Y2982D01* X2104Y2818D02* X2122Y2836D01* Y2854D01* X2202Y2890D02* Y2892D01* X2203D01* X2202Y2891D01* X2261Y2894D02* X2287Y2868D01* Y2854D01* Y2850D01* X2240Y2788D02* D01* X2236D01* X2225Y2854D02* Y2868D01* X2202Y2891D01* X2190Y3009D02* X2158Y3041D01* X2160D01* X2161Y3339D02* X2133D01* X2119Y3353D01* Y3364D01* X2117Y3518D02* Y3519D01* X2161D01* X2318Y3681D02* Y3652D01* X2333Y3637D01* X2272Y3631D02* X2256Y3647D01* Y3681D01* X2161Y3641D02* X2119D01* D01* X1729Y3706D02* X1728Y3707D01* X1488D01* X1950Y4156D02* X1980Y4186D01* Y4189D01* X1950Y4222D02* X1980Y4252D01* Y4268D01* D01* X1900Y4619D02* X1931Y4588D01* X1963Y4619D02* X1935Y4647D01* X1900Y4681D02* X1970D01* Y4619D02* X1963D01* X2040Y4583D02* X2065Y4558D01* X2090D01* X1990Y4520D02* Y4516D01* X2179D01* Y4624D01* X2299Y4744D01* X2092Y4767D02* X2120Y4739D01* X2148Y4773D02* X2120Y4801D01* X2299Y4744D02* X2627D01* X2665Y4782D01* X2934D01* X2962Y4810D01* Y4857D01* X2987Y4882D01* X3137Y4844D02* X3143Y4838D01* Y4802D01* X3263Y4848D02* Y4812D01* X3174Y4720D02* Y4688D01* X3162Y4676D01* X3037Y4706D02* Y4693D01* X3034Y4690D01* Y4657D01* X3018Y4577D02* X2958D01* X2929Y4657D02* Y4720D01* X2861Y4813D02* Y4841D01* X2853Y4849D01* X2987Y4882D02* X3507D01* X3588Y4801D01* X3410Y4848D02* Y4813D01* X3588Y4801D02* X3953D01* X4165Y4589D01* Y4078D01* X4131Y4030D02* Y4049D01* X4108Y4072D01* X4131Y4095D01* Y4110D01* X4165Y4078D02* X4291Y3952D01* Y3730D01* X4559Y3305D02* X4531D01* Y3300D01* X4379Y3442D02* X4339D01* X4331Y3450D01* X4297Y3428D02* X4296D01* X4269Y3455D01* Y3450D01* X4354Y3486D02* X4331Y3509D01* Y3520D01* X4296Y3494D02* X4269Y3521D01* Y3520D01* Y3590D02* Y3589D01* X4295Y3563D01* X4331Y3590D02* X4333Y3592D01* X4380D01* X4531Y3700D02* X4559D01* X4531Y4050D02* X4559D01* X4785Y4194D02* X4800Y4179D01* X4850D01* X4881Y4148D01* X4899D01* X5039Y4008D01* Y3992D02* X5013Y3966D01* X4957D01* X4885Y3894D01* X4923Y3856D01* Y3732D01* X4885Y3694D01* X5034Y3479D02* X4885Y3330D01* Y3294D01* X5046Y3133D01* X5119D01* X5140Y3113D01* X5159Y3132D01* X5433D01* X5460Y3159D01* Y3154D01* X5480Y3134D01* X5460Y3159D02* Y3248D01* Y3310D02* Y3353D01* X5324Y3404D02* X5291D01* X5480Y3134D02* X5597D01* X5670Y3061D01* Y3009D01* X5685Y2994D01* X5625Y2769D02* Y2741D01* X5275D02* Y2769D01* X5185Y2994D02* X5170Y3009D01* Y3062D02* X5137Y3095D01* Y3110D01* X5140Y3113D01* X5170Y3062D02* Y3009D01* X4925Y2769D02* Y2741D01* X4585Y2494D02* X4610Y2470D01* Y2461D01* X4634Y2494D02* X4610Y2518D01* Y2528D01* Y2594D01* X4425Y2728D02* Y2695D01* X4432Y2688D01* X4419Y2675D01* Y2628D01* X4369D02* Y2675D01* X4356Y2688D01* X4363Y2695D01* Y2728D01* X4201Y2870D02* Y2869D01* X4247D01* X4278D02* X4247D01* X4296Y2921D02* X4269Y2948D01* Y2950D01* X4296Y2921D02* X4299D01* Y2918D01* X4331Y2950D02* Y2943D01* X4354Y2920D01* Y2918D01* X4355D01* X4531Y2950D02* X4559D01* X4331Y3090D02* Y3096D01* X4377Y3142D01* X4359Y3169D02* X4340D01* X4331Y3160D01* X4269D02* Y3166D01* X4240D01* X4091Y3240D02* X4122D01* X4029D02* X4009D01* X3997Y3252D01* X3981Y3176D02* X3957Y3200D01* X3951D01* Y3260D01* X3889D02* X3864Y3235D01* X3889Y3200D02* Y3183D01* X3875Y3169D01* X3819Y3080D02* X3848D01* X3863Y3065D01* X3917D01* X3931Y3051D01* Y2882D01* X3997Y2816D01* X4066D01* X4103Y2728D02* Y2706D01* X4121Y2688D01* X4109Y2676D01* Y2628D01* X4159D02* Y2675D01* X4172Y2688D01* X4165Y2695D01* Y2728D01* X4172Y2688D02* X4185D01* X4209Y2664D01* Y2628D01* X4264Y2272D02* Y2258D01* X4281Y2242D01* Y2223D01* X4419Y2229D02* Y2234D01* X4437Y2251D01* Y2272D01* X4587Y2268D02* Y2233D01* X4595Y2225D01* X4672Y2223D02* Y2268D01* X4665D01* X4764Y2260D02* X4772Y2252D01* Y2223D01* X4771Y2014D02* X4772D01* Y1965D01* X4939Y2229D02* Y2236D01* X4947Y2244D01* X4956Y2253D01* Y2272D01* X5315Y2321D02* D01* Y2257D01* Y2256D01* X5287D02* X5315D01* Y2189D01* D01* X5365D01* X5573Y1862D02* Y1752D01* X5621Y1704D01* X5627Y1729D02* X5673D01* Y1704D02* X5621D01* X5627Y1729D02* X5605Y1751D01* Y1862D01* X5597Y1916D02* X5615Y1934D01* X5673D01* Y1960D02* X5620D01* D01* X5593D01* D01* X5673Y1908D02* X5627D01* X5609Y1890D01* X5583D01* X5569Y1904D01* Y1976D01* X5572Y1979D01* Y2136D01* X5586Y2150D01* Y2189D01* X5653D01* X5654D01* X5703D02* X5704D01* X5753D01* X5754D01* X5753D02* Y2257D01* Y2321D01* X5754D01* X5803Y2324D02* D01* Y2257D01* X5704Y2321D02* X5703D01* Y2257D01* Y2189D01* X5654D01* X5653D02* Y2256D01* X5625D01* X5653D02* Y2257D01* Y2321D01* X5654D01* X5365D02* D01* Y2257D01* Y2189D01* D01* X5415D01* Y2257D01* Y2321D01* D01* X5464Y2324D02* X5465D01* Y2257D01* X5415Y2189D02* D01* X5533D01* Y2150D01* X5547Y2136D01* Y1979D01* X5550Y1976D01* Y1904D01* X5536Y1890D01* X5509D01* X5491Y1908D01* X5445D01* Y1934D02* X5504D01* X5522Y1916D01* X5498Y1960D02* D01* X5525D02* D01* X5498D01* X5445D01* X4996Y1740D02* X5044D01* D01* X5253Y1772D02* D01* X5284D01* X5253Y1697D02* D01* X5284D01* Y1622D02* X5253D01* D01* X5111Y1534D02* X5117D01* X5141Y1510D01* X5111Y1472D02* Y1469D01* X5081Y1439D01* X4654Y1193D02* Y1230D01* X4639Y1245D01* X4750Y1399D02* Y1406D01* X4741Y1415D01* Y1437D01* X4793Y1399D02* Y1406D01* X4803Y1415D01* Y1437D01* X4772Y1516D02* Y1564D01* X4771D01* X4547Y1740D02* X4499D01* D01* X4381Y1737D02* X4374D01* Y1661D01* Y1649D01* X4390Y1632D01* Y1625D01* X4221D02* Y1632D01* X4204Y1649D01* Y1661D01* Y1737D01* X4211D01* X5485Y4394D02* X5618Y4261D01* X5814D01* X5835Y4240D01* X5840D01* X5847D01* X5863Y4256D01* X5885D01* X5932Y4209D01* X6019D01* X6127Y4317D01* Y4387D01* X6184Y4444D02* X6235D01* X6127Y4387D02* X6184Y4444D01* X5950Y4721D02* Y4749D01* X6322Y4780D02* D01* X6351D01* X6413D02* X6440D01* D01* X6768Y4588D02* X6842D01* X6873Y4557D01* X6938Y4592D02* X6991D01* D01* X6940Y3878D02* Y3975D01* X6910Y4005D01* X6786Y4083D02* Y4154D01* X6812Y4197D02* Y4154D01* X6838D02* Y4201D01* X6850Y4213D01* X6889Y4154D02* Y4200D01* X6906Y4217D01* X6914Y4154D02* Y4082D01* X6824D01* X6723Y3981D01* X6547Y3964D02* X6555D01* X6576Y3943D01* X6647Y3905D02* Y3944D01* X6786Y4083D01* X6863Y4154D02* Y4200D01* X6850Y4213D01* X6847Y4216D02* Y4241D01* X6815D01* Y4248D01* X6847D01* Y4241D02* Y4248D01* Y4256D01* X6886Y4237D02* D01* X6906Y4217D01* X6945Y4237D02* Y4236D01* X6950D01* X6991Y4195D01* Y4154D01* X7017D02* Y4237D01* X7004D01* X7017D02* X7063D01* X7062Y4354D02* X7063D01* Y4299D01* X7004D02* X7000D01* X6976Y4323D01* X6952Y4299D01* X6945D01* X6976Y4323D02* X7000Y4347D01* Y4354D01* X6992Y4433D02* Y4431D01* X6938D01* X6886Y4299D02* X6876D01* X6854Y4277D01* Y4272D01* X6847Y4265D01* Y4256D01* X6815D01* Y4248D01* X6812Y4197D02* X6798Y4211D01* X6762D01* X6736Y4237D01* Y4248D01* X6616Y4232D02* X6611D01* X6528Y4149D01* Y4043D01* X6610Y3961D01* Y3911D01* X6478Y3779D01* Y3394D01* X6531Y3474D02* Y3747D01* X6662Y3878D01* X6786D01* X6783Y3736D02* X6741D01* Y3737D01* X6038Y3864D02* Y3839D01* X6049Y3828D01* Y3789D01* X6036Y3776D01* Y3724D01* Y3704D01* X6052Y3688D01* X6067Y3673D02* X6052Y3688D01* X6005D01* X5959Y3642D01* Y3619D01* X5948Y3565D02* X5959Y3554D01* Y3514D01* X5879Y3689D02* X5866Y3676D01* Y3564D01* X5854Y3484D02* Y3448D01* X5850Y3444D01* Y3411D02* Y3351D01* X5875Y3411D02* Y3351D01* X5900Y3411D02* Y3351D01* X5925Y3411D02* Y3351D01* X5950Y3411D02* Y3351D01* X5975Y3411D02* Y3351D01* Y3216D02* Y3156D01* X6028Y3181D02* Y3182D01* Y3181D02* X6037D01* Y3150D01* X6099Y3154D02* Y3181D01* X6098Y3180D01* Y3182D01* X5950Y3156D02* Y3216D01* X5925Y3156D02* Y3216D01* X5900Y3156D02* Y3216D01* X5875D02* Y3156D01* X5827Y3128D02* X5850Y3152D01* X5827Y3128D02* X5825D01* Y3186D01* X5800Y3156D02* Y3216D01* Y3186D02* Y3155D01* X5827Y3128D01* X5850Y3156D02* Y3216D01* Y3186D02* Y3152D01* X5825Y3156D02* Y3216D01* Y3351D02* Y3411D01* Y3381D02* Y3434D01* X5815Y3444D02* X5825Y3434D01* X5800Y3411D02* Y3351D01* X6131Y3365D02* X6112Y3346D01* X6098D01* Y3284D02* Y3244D01* X6183D01* X6333Y3394D01* X6385D01* X6478D01* Y3292D01* X6523Y3247D01* Y2900D01* X6592Y2831D01* X6616D01* X6635D01* X6657Y2809D01* X6818Y2947D02* X6819D01* X6818D02* Y3068D01* X6542D01* Y2976D01* X6571Y2947D01* X6542Y3068D02* Y3307D01* X6506Y3343D01* Y3764D01* X6647Y3905D01* X6591Y3769D02* D01* Y3736D01* X6571Y3361D02* X6531Y3400D01* Y3474D01* X6819D01* Y3361D01* X6616Y2799D02* X6657D01* Y2809D01* Y2799D02* Y2768D01* X6616D01* Y2736D02* X6657D01* Y2768D01* Y2736D02* Y2725D01* X6621Y2689D01* X6616D01* X6593D01* X6580Y2676D01* Y2657D01* X6616D01* Y2626D02* X6580D01* Y2613D02* Y2626D01* Y2657D01* X6725Y2512D02* X6726D01* Y2473D01* X6771Y2475D02* Y2478D01* X6787Y2494D01* Y2512D01* X6616Y2594D02* X6599D01* X6580Y2613D01* X6398Y2611D02* X6386D01* X6363Y2634D01* X6340Y2611D01* X6331D01* X6296Y2634D02* X6273Y2611D01* X6264D02* X6273D01* X5975Y2741D02* Y2769D01* X6331Y1625D02* D01* Y1654D01* X6242Y1717D02* X6264D01* X6290Y1743D01* Y1748D01* Y1780D02* Y1748D01* X6242D01* X6290Y1811D02* Y1780D01* X6242D01* Y1811D02* X6290D01* Y1870D01* Y1902D02* Y1870D01* X6242D01* Y1902D02* X6290D01* Y1933D01* X6173Y2024D02* X6151D01* X6142Y2033D01* X6135D01* Y2077D02* X6142D01* X6151Y2086D01* X6173D01* X6214Y2109D02* X6290Y2033D01* Y1965D01* X6242D01* Y1933D02* X6290D01* Y1965D01* X6449Y2193D02* Y2215D01* X6459Y2224D01* Y2231D01* X6502D02* Y2224D01* X6511Y2215D01* Y2193D01* X6791Y2086D02* X6792D01* D01* X6806D01* X6821Y2071D01* X6824D01* Y2039D02* X6821D01* X6806Y2024D01* X6792D01* D01* X6791D01* Y1775D02* X6753D01* D01* X6623Y1744D02* D01* X6659D01* Y1694D02* X6623D01* D01* Y1594D02* D01* X6659D01* X6791Y1563D02* X6813D01* X6823Y1573D01* X6829D01* Y1616D02* X6823D01* X6813Y1625D01* X6791D01* X6894Y1220D02* X6926D01* X6937Y1231D01* X6993Y1217D02* Y1200D01* X6959D01* X6951D02* X6959D01* X6951D02* X6909Y1158D01* X6894D01* X6959Y1130D02* X6993D01* Y1146D01* X7055D02* Y1130D01* X7089D01* X7258Y1417D02* X7224D01* Y1433D01* X7190Y1411D02* X7175D01* X7162Y1424D01* X7136Y1407D02* X7145D01* X7162Y1424D01* Y1433D01* Y1441D01* X7186Y1465D01* X7162Y1489D01* Y1496D01* X7224D02* Y1480D01* X7258D01* X6850Y1231D02* X6847Y1234D01* X6756D01* X6742Y1220D01* X6728D01* Y1158D02* X6692D01* X6673Y1177D01* X6628D01* X6606Y1231D02* X6595Y1220D01* X6563D01* X6525Y1188D02* Y1185D01* X6552Y1158D01* X6563D01* X6398Y1152D02* Y1182D01* X6391Y1189D01* X6357D01* X6341Y1173D01* Y1141D01* X6366D01* Y1152D01* X6244D02* Y1182D01* X6237Y1189D01* X6203D01* X6187Y1173D01* Y1141D01* X6213D01* Y1152D01* X6145Y1216D02* X6118D01* Y1217D01* X6056D02* Y1216D01* X6028D01* X5744Y1220D02* Y1255D01* X5736Y1263D01* X5658Y1265D02* X5661Y1263D01* Y1240D01* X5665Y1236D01* Y1220D01* X5579Y1209D02* Y1237D01* D01* X5558Y1258D01* Y1265D01* X5344Y1263D02* X5343Y1262D01* Y1220D01* X5262Y1146D02* X5243Y1165D01* X5236D01* X5240Y1244D02* Y1248D01* X5211Y1277D01* X5178Y1244D02* Y1239D01* X5204Y1213D01* X5174Y1165D02* X5173D01* Y1069D01* X4374D01* X3744Y1190D02* X3779D01* X3804Y1235D02* X3825D01* X3841Y1219D01* Y1190D01* X3881Y1693D02* Y1729D01* X3867Y1743D01* X3824Y1736D02* X3819Y1731D01* Y1693D01* X3657Y1862D02* Y1880D01* X3644Y1893D01* X3627D01* X3595Y1862D02* Y1859D01* X3623Y1831D01* X3180Y2109D02* X3224D01* X3191Y2040D02* X3226D01* X3390Y2000D02* X3405Y1984D01* Y1986D01* X3404D01* X3499Y2030D02* Y2031D01* X3528D01* Y2094D02* Y2121D01* X3544Y2137D01* X3577Y2141D02* X3590Y2128D01* Y2094D01* X3452D02* Y2031D01* Y2007D01* X3434Y1990D01* X3390Y2000D02* Y2031D01* Y2094D01* X3368Y2378D02* X3389Y2399D01* Y2430D01* Y2490D02* X3413Y2466D01* Y2467D01* X3451Y2430D02* X3478D01* X3451Y2490D02* Y2519D01* X3433Y2537D01* X3529Y2490D02* Y2482D01* X3552Y2459D01* X3476Y3055D02* X3489D01* X3507Y3073D01* Y3093D01* X3476D02* Y3055D01* X3444D01* X3460Y3001D02* X3469D01* X3492Y2978D01* X3515Y3001D01* X3530D01* X3600D01* X3659Y3191D02* X3633D01* Y3192D01* X3631Y3190D01* X3592Y3232D02* X3569Y3209D01* Y3190D01* Y3130D01* X3601Y3154D02* X3631Y3124D01* X3741Y3080D02* Y3050D01* X3780Y3011D01* X3800D01* X3819D01* X3845Y3037D01* X3847D01* Y3039D02* Y3037D01* X3845D02* X3871Y3011D01* X3890D01* X3855Y3367D02* D01* X3879Y3343D01* X3878Y3342D01* Y3339D01* X3957D02* X3981D01* X3997Y3323D01* X4001Y3383D02* X4031D01* X4093Y3385D02* Y3383D01* X4122Y3385D02* X4093D01* X4029Y3520D02* X4018D01* X3992Y3546D01* X3993D01* X3941Y3623D02* X3973D01* X4019Y3669D01* Y3728D01* X4085Y3794D01* X4058Y3700D02* X4080Y3678D01* X4276D01* X4291Y3693D01* Y3730D01* X4229D02* X4171D01* X4109D02* Y3772D01* X4085Y3796D01* Y3794D01* Y3796D02* Y3888D01* X4065Y3908D01* X3985D01* X3977Y3916D01* Y3948D01* X3799Y4006D02* Y4011D01* X3831D02* X3846Y4026D01* Y4040D02* Y4026D01* X3831Y4011D02* Y4006D01* X3909Y3933D02* X3921Y3921D01* Y3890D01* X3880Y3823D02* X3848D01* X3827Y3844D01* X3979Y3830D02* Y3870D01* Y3876D01* X3949Y3906D01* Y4021D01* X3950Y4020D01* X3912Y4120D02* X3890D01* X3872Y4138D01* X3831Y4134D02* Y4129D01* X3846Y4114D02* Y4100D01* Y4114D02* X3831Y4129D01* X3799D02* Y4134D01* X4040Y4199D02* X4069D01* X4081Y4187D01* X4093Y4199D01* X4120D01* X3891Y4230D02* Y4203D01* X3875Y4187D01* X3841Y4186D02* Y4192D01* X3829Y4204D01* Y4223D01* X3782D02* X3722D01* Y4203D02* X3782D01* X3752D02* X3693D01* X3675Y4221D01* X3722Y4242D02* X3782D01* X3752Y4223D02* X3829D01* Y4230D01* X3782Y4262D02* X3722D01* X3782Y4282D02* X3722D01* X3782Y4301D02* X3722D01* Y4341D02* X3782D01* X3722Y4321D02* X3782D01* X3829Y4380D02* X3752D01* X3782Y4360D02* X3722D01* Y4380D02* X3782D01* X3752Y4400D02* X3713D01* X3697Y4416D01* X3722Y4439D02* X3782D01* Y4400D02* X3722D01* X3697Y4416D02* X3701Y4420D01* X3752D01* X3782Y4459D02* X3722D01* Y4420D02* X3782D01* X3829Y4408D02* X3843Y4422D01* X3829Y4408D02* Y4380D01* D01* X3891D02* Y4408D01* X3875Y4424D01* X3752Y4557D02* X3688D01* X3678Y4567D01* X3688Y4577D01* X3752D01* X3782D02* X3722D01* Y4557D02* X3782D01* X3796Y4538D02* X3805Y4529D01* X3794Y4518D02* X3752D01* X3782Y4479D02* X3722D01* X3782Y4498D02* X3722D01* Y4518D02* X3782D01* X3794D02* X3805Y4529D01* X3796Y4538D02* X3752D01* X3782D02* X3722D01* X4193Y4780D02* D01* X4225D01* X4287D02* X4319D01* D01* X4560Y4387D02* X4531D01* Y4400D01* X4577Y4717D02* Y4723D01* X4551Y4749D01* X4550D01* X4900D02* X4907D01* Y4717D01* X5250Y4749D02* Y4721D01* X5600Y4749D02* Y4721D01* X5485Y4394D02* X5330Y4239D01* Y4148D01* X5226Y4044D01* X5224D01* X5142Y3999D02* X5101D01* X5075Y4044D02* X5039Y4008D01* Y3999D01* Y3992D01* X5075Y4044D02* X5224D01* X5386Y3882D01* X5324Y3614D02* Y3624D01* X5349Y3649D01* Y3650D01* Y3750D02* D01* X5324Y3774D01* X5305Y3819D02* X5324Y3838D01* Y3854D01* X5386Y3882D02* Y3854D01* Y3774D01* Y3743D01* X5269Y3626D01* X5216Y3599D02* Y3643D01* X5269Y3626D02* Y3596D01* X5190Y3517D01* X5085D01* X5059Y3491D01* Y3479D01* X5034D01* X5088Y3433D02* X5121Y3466D01* Y3479D01* X3330Y3976D02* Y3960D01* X3347Y3943D01* X3363Y3794D02* X3381Y3776D01* Y3760D01* X3293Y3486D02* Y3525D01* X3291D01* Y3585D02* Y3610D01* X3279Y3622D01* X3282D01* X3240Y3731D02* X3221D01* X3206Y3716D01* Y3720D01* X3251Y3621D02* X3249D01* X3229Y3601D01* Y3585D01* Y3525D02* X3188D01* X3148Y3485D01* X3130Y3109D02* X3138D01* X3160Y3131D01* Y3138D01* X3159D01* X3333Y3140D02* Y3139D01* X3371D01* X3413Y3093D02* Y3055D01* D01* Y3035D02* Y3055D01* X3444D01* Y3093D01* X3310Y3001D02* X3308D01* X3276Y3033D01* X3244Y3001D01* X3240D01* X3119Y2969D02* X3103D01* X3081Y2991D01* X3060D01* X2990D01* X2978Y2929D02* X2990D01* X3060D01* X3056Y3167D02* X3009D01* X3003Y3161D01* Y3163D01* X2955Y3210D02* Y3246D01* X2959Y3250D01* X2822Y3199D02* X2820D01* X2828Y3191D01* X2860D01* Y3249D02* X2844D01* X2822Y3271D01* X2812D01* X2899Y3410D02* X2894D01* Y3412D01* X2875Y3431D01* X2860D01* Y3489D02* X2847D01* X2829Y3507D01* X2819D01* Y3537D02* X2833D01* X2847Y3551D01* X2860D01* X2612Y3651D02* X2641Y3680D01* X2610Y3709D02* X2579Y3678D01* Y3680D01* X2454Y3638D02* X2453D01* Y3640D01* X2451Y3680D02* Y3642D01* X2453Y3640D01* X2396Y3638D02* X2389Y3645D01* Y3680D01* X2563Y4057D02* Y4042D01* X2594D01* Y4057D02* Y4042D01* X2626D01* Y4057D02* Y4042D01* X2657D01* Y4057D01* Y4063D01* X2689D01* X2683Y4228D02* X2701Y4246D01* Y4264D01* X2684Y4304D02* X2701Y4321D01* Y4346D01* X2610D02* Y4341D01* X2580Y4311D01* X2610Y4264D02* Y4256D01* X2581Y4227D01* X2711Y4481D02* X2727Y4465D01* X2726Y4434D02* X2725D01* X2726D02* X2711Y4419D01* X2680D01* X2725Y4434D02* X2740Y4419D01* X2770D01* X2854Y4430D02* Y4436D01* X2883Y4465D01* X2958Y4479D02* X3018D01* X2988Y4498D02* X3048D01* D01* X3018Y4360D02* X2958D01* X3018Y4380D02* X2958D01* X3018Y4400D02* X2958D01* Y4420D02* X3018D01* X2988Y4380D02* X2934D01* X2916Y4362D01* Y4345D01* Y4314D01* X2958Y4321D02* X3018D01* Y4262D02* X2958D01* X2934Y4231D02* X2942Y4223D01* X2988D01* X3018D02* X2958D01* X3018Y4242D02* X2958D01* X3018Y4203D02* X2958D01* X2854Y4345D02* Y4319D01* X2871Y4302D01* X2916Y4314D02* X2902Y4300D01* Y4301D01* X2958Y4282D02* X3018D01* X2958Y4301D02* X3018D01* X2988Y4321D02* X3043D01* X3050Y4328D02* X3043Y4321D01* X3018Y4341D02* X2958D01* Y4439D02* X3018D01* X2958Y4459D02* X3018D01* X2988Y4479D02* X2940D01* D01* X2958Y4498D02* X3018D01* X2958Y4518D02* X3018D01* X3048Y4538D02* D01* X2988D01* X3018D02* X2958D01* Y4557D02* X3018D01* X2988D02* X2939D01* X2916Y4575D01* X7258Y2913D02* X7224D01* Y2929D01* X7189Y2952D02* X7185D01* X7162Y2929D01* X7151Y2918D01* X7139Y2906D01* X7135D01* X7189Y2889D02* X7185D01* X7162Y2866D01* D01* X7173Y2855D01* X7185Y2843D01* X7189D01* X7224Y2866D02* Y2850D01* X7258D01* D041* X5408Y1934D02* X5482D01* X5408Y1960D02* X5482D01* Y1908D02* X5408D01* X5482Y1883D02* X5408D01* Y1832D02* X5482D01* X5408Y1857D02* X5482D01* Y1806D02* X5408D01* X5482Y1781D02* X5408D01* Y1729D02* X5482D01* X5408Y1755D02* X5482D01* Y1704D02* X5408D01* X5482Y1678D02* X5408D01* X5636D02* X5710D01* X5636Y1704D02* X5710D01* Y1755D02* X5636D01* X5710Y1729D02* X5636D01* Y1781D02* X5710D01* X5636Y1806D02* X5710D01* Y1857D02* X5636D01* X5710Y1832D02* X5636D01* Y1883D02* X5710D01* X5636Y1908D02* X5710D01* Y1960D02* X5636D01* X5710Y1934D02* X5636D01* X6786Y3841D02* Y3915D01* X6812Y3841D02* Y3915D01* X6863D02* Y3841D01* X6838Y3915D02* Y3841D01* X6889D02* Y3915D01* X6914Y3841D02* Y3915D01* X6966D02* Y3841D01* X6940Y3915D02* Y3841D01* X6991D02* Y3915D01* X7017Y3841D02* Y3915D01* Y4117D02* Y4191D01* X6991Y4117D02* Y4191D01* X6940D02* Y4117D01* X6966Y4191D02* Y4117D01* X6914D02* Y4191D01* X6889Y4117D02* Y4191D01* X6838D02* Y4117D01* X6863Y4191D02* Y4117D01* X6812D02* Y4191D01* X6786Y4117D02* Y4191D01* D060* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D061* X7425Y2102D02* D03* X7661D02* D03* D056* X2359Y4522D02* D03* X3940D02* D03* D014* X2476Y1210D02* X2474Y1212D01* X2404D01* Y1362D02* X2337D01* D01* X2250D02* Y1371D01* X2197D01* X2187Y1381D01* X2186Y1283D02* X2198Y1271D01* X2250D01* Y1262D01* Y1252D01* X2197D01* X2188Y1243D01* X2187Y1562D02* D01* X2250D01* Y1612D02* X2188D01* D01* X2187Y1662D02* D01* X2250D01* Y1712D02* X2187D01* D01* Y1762D02* D01* X2250D01* Y1812D02* X2188D01* D01* X2947Y2928D02* Y2929D01* X2978D01* X2138Y4049D02* X2161Y4072D01* Y4142D01* X2251D01* X2281Y4172D01* Y4205D01* Y4236D01* X2854Y4575D02* Y4551D01* X2873Y4532D01* X2906D02* X2916Y4542D01* Y4575D01* D012* X1814Y4189D02* X1918D01* X1814Y4268D02* X1918D01* X2514Y4265D02* X2548D01* Y4264D01* Y4346D02* Y4345D01* X2511D01* X3816Y4490D02* X3888D01* X3914Y4464D01* X4062D01* X4096Y4430D01* Y4387D01* Y4373D01* X4127D01* Y4387D01* X4033D02* Y4372D01* X4064D01* Y4387D01* Y4420D01* X4045Y4439D01* X3902D01* X3884Y4457D01* X3855D01* X2250Y4860D02* X2259Y4869D01* X2294D01* X2303Y4860D01* Y4808D01* X2294Y4799D01* X2259D01* X2250Y4808D01* Y4860D01* Y4869D02* X2303Y4799D01* X2320D02* X2346Y4834D01* X2329D02* X2320Y4843D01* X2373Y4799D02* Y4869D01* X2329D01* X2320Y4860D01* Y4843D01* X2329Y4834D02* X2373D01* X2399D02* X2390Y4843D01* Y4860D01* X2399Y4869D01* X2434D01* Y4834D02* X2443Y4825D01* Y4808D01* X2434Y4799D01* X2399D01* X2390Y4808D01* Y4825D01* X2399Y4834D01* X2434D01* X2443Y4843D01* Y4860D01* X2434Y4869D01* X2460Y4860D02* X2469Y4869D01* X2504D01* X2513Y4860D01* Y4808D01* X2504Y4799D01* X2469D01* X2460Y4808D01* X2530D02* X2539Y4799D01* X2574D01* X2583Y4808D01* Y4860D01* X2574Y4869D01* X2539D01* X2530Y4860D01* D383* X1970Y1435D02* D03* Y1439D02* D03* X1817Y1876D02* D03* X1813D02* D03* D101* X1904Y1427D02* D03* Y1447D02* D03* Y1506D02* D03* Y1526D02* D03* X1978D02* D03* Y1506D02* D03* X1825Y1809D02* D03* X1805D02* D03* X1746D02* D03* X1726D02* D03* Y1884D02* D03* X1746D02* D03* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D080* X2179Y4516D02* D03* X1814Y4366D02* D03* X1730Y2732D02* D03* Y2260D02* D03* X1606Y1069D02* D03* X3047D02* D03* X3344D02* D03* X5405D02* D03* X6252D02* D03* X7693D02* D03* D081* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D075* X1488Y3849D02* D03* Y3840D02* D03* Y3711D02* D03* Y3702D02* D03* Y1987D02* D03* Y1978D02* D03* Y1849D02* D03* Y1840D02* D03* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* D386* X2492Y2115D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2303D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* Y2158D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* X2570Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X2527D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2492Y2716D02* D03* X2476D02* D03* X2461D02* D03* X2445D02* D03* X2429D02* D03* X2413D02* D03* X2398D02* D03* X2382D02* D03* X2366D02* D03* X2350D02* D03* X2335D02* D03* X2319D02* D03* X2303D02* D03* X2287D02* D03* X2272D02* D03* X2256D02* D03* X2240D02* D03* X2224D02* D03* X2209D02* D03* X2193D02* D03* X2177D02* D03* X2161D02* D03* X2146D02* D03* X2130D02* D03* X2114D02* D03* X2098D02* D03* X2083D02* D03* X2067D02* D03* X2051D02* D03* X2035D02* D03* X2020D02* D03* X2004D02* D03* X1969Y2681D02* D03* Y2665D02* D03* Y2650D02* D03* Y2634D02* D03* Y2618D02* D03* Y2602D02* D03* Y2587D02* D03* Y2571D02* D03* Y2555D02* D03* Y2539D02* D03* Y2524D02* D03* Y2508D02* D03* Y2492D02* D03* Y2476D02* D03* Y2461D02* D03* Y2445D02* D03* Y2429D02* D03* Y2413D02* D03* Y2398D02* D03* Y2382D02* D03* Y2366D02* D03* Y2350D02* D03* Y2335D02* D03* Y2319D02* D03* Y2303D02* D03* Y2287D02* D03* Y2272D02* D03* Y2256D02* D03* Y2240D02* D03* Y2224D02* D03* Y2209D02* D03* Y2193D02* D03* X1926D02* D03* Y2209D02* D03* Y2224D02* D03* Y2240D02* D03* Y2256D02* D03* Y2272D02* D03* Y2287D02* D03* Y2303D02* D03* Y2319D02* D03* Y2335D02* D03* Y2350D02* D03* Y2366D02* D03* Y2382D02* D03* Y2398D02* D03* Y2413D02* D03* Y2429D02* D03* Y2445D02* D03* Y2461D02* D03* Y2476D02* D03* Y2492D02* D03* Y2508D02* D03* Y2524D02* D03* Y2539D02* D03* Y2555D02* D03* Y2571D02* D03* Y2587D02* D03* Y2602D02* D03* Y2618D02* D03* Y2634D02* D03* Y2650D02* D03* Y2665D02* D03* Y2681D02* D03* X2004Y2759D02* D03* X2020D02* D03* X2035D02* D03* X2051D02* D03* X2067D02* D03* X2083D02* D03* X2098D02* D03* X2114D02* D03* X2130D02* D03* X2146D02* D03* X2161D02* D03* X2177D02* D03* X2193D02* D03* X2209D02* D03* X2224D02* D03* X2240D02* D03* X2256D02* D03* X2272D02* D03* X2287D02* D03* X2303D02* D03* X2319D02* D03* X2335D02* D03* X2350D02* D03* X2366D02* D03* X2382D02* D03* X2398D02* D03* X2413D02* D03* X2429D02* D03* X2445D02* D03* X2461D02* D03* X2476D02* D03* X2492D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D073* X2219Y1812D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2282D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* X2372D02* D03* Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* Y1612D02* D03* Y1562D02* D03* Y1512D02* D03* Y1462D02* D03* Y1412D02* D03* Y1362D02* D03* Y1312D02* D03* Y1262D02* D03* Y1212D02* D03* X2435D02* D03* Y1262D02* D03* Y1312D02* D03* Y1362D02* D03* Y1412D02* D03* Y1462D02* D03* Y1512D02* D03* Y1562D02* D03* Y1612D02* D03* Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* Y1812D02* D03* M02*gerbv-2.7.0/example/ekf2/l2.grb0000644000175000017500000041645513421555714016026 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3358Y5370D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4256D01* X4265Y5397D01* Y5379D01* X4256Y5370D01* X4221D01* X4212Y5379D01* Y5397D01* X4221Y5406D01* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5415D01* X4398Y5406D01* X4407Y5397D01* X4425Y5441D02* Y5370D01* X4478D01* X4505D02* X4496Y5379D01* Y5441D01* X4505Y5370D02* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4638Y5432D02* Y5415D01* X4647Y5406D01* X4603D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5432D02* X4647Y5441D01* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5370D02* X5845D01* X5862D02* Y5415D01* Y5406D02* X5871Y5415D01* X5898D01* X5907Y5406D01* Y5370D01* X5818D02* Y5441D01* X5845D02* X5791D01* X5934Y5370D02* Y5415D01* Y5406D02* X5942Y5415D01* X5969D01* X5978Y5406D01* Y5370D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6218Y5370D02* X6271D01* X6245D02* Y5441D01* X6227Y5423D01* X6396Y5370D02* X6378Y5397D01* Y5415D01* X6396Y5441D01* X6431D02* Y5370D01* X6485D01* X6502Y5432D02* X6511Y5441D01* X6547D01* X6556Y5432D01* Y5415D01* X6547Y5406D01* X6502Y5379D01* Y5370D01* X6556D01* X6591D02* X6609Y5397D01* Y5415D01* X6591Y5441D01* X8324Y1425D02* Y575D01* Y700D02* X8624Y1000D01* X8324Y1300D01* X8024Y1000D01* X8324Y700D01* Y800D02* X8124Y1000D01* X8324Y1200D01* X8524Y1000D01* X8324Y800D01* Y1100D02* X8424Y1000D01* X8324Y900D01* X8224Y1000D01* X8324Y1100D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* Y5137D02* X8524Y4937D01* X8324Y4737D01* X8124Y4937D01* X8324Y5137D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1441D01* Y4465D01* Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1820Y894D02* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* X1829Y850D02* X1793D01* X1784Y859D01* Y886D01* X1793Y894D01* X1820D01* X1731Y921D02* X1740D01* Y850D01* X1749D02* X1731D01* X1687Y877D02* X1651D01* X1642Y868D01* Y859D01* X1651Y850D01* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1616Y886D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1544Y886D02* X1536Y894D01* X1509D01* X1500Y886D01* X1509Y877D01* X1536D01* X1544Y868D01* Y859D01* X1536Y850D01* X1509D01* X1500Y859D01* X1936Y877D02* X1980D01* X1936Y894D02* X1980D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X2167D02* X2158Y859D01* X2167Y868D01* X2176Y859D01* X2167Y850D01* X2211Y859D02* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y850D02* X2264Y921D01* X2327D02* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2336D02* X2282Y850D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X3100Y5114D02* X3073D01* X3067Y5121D01* Y5141D01* X3073Y5147D01* X3093D01* X3100Y5141D01* Y5134D01* X3093Y5127D01* X3067D01* X2980Y5114D02* X2973Y5121D01* X2980Y5127D01* X2987Y5121D01* X2980Y5114D01* X3047Y5147D02* X3020D01* X3013Y5141D01* Y5121D01* X3020Y5114D01* X3047D01* Y5167D01* Y5204D02* X3020D01* X3013Y5211D01* Y5231D01* X3020Y5237D01* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2940Y5167D02* X2920D01* X2913Y5161D01* X2927Y5141D02* X2907D01* X2913Y5161D02* Y5114D01* X2887D02* X2853Y5127D01* X2880Y5147D01* X2853Y5167D02* Y5114D01* X2833D02* X2807D01* X2800Y5121D01* Y5141D01* X2807Y5147D01* X2827D01* X2833Y5141D01* Y5134D01* X2827Y5127D01* X2800D01* X2720Y5114D02* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2700D01* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2773Y5121D02* X2760D01* X2753Y5127D01* Y5154D01* X2760Y5161D01* X2773D01* X2780Y5154D01* Y5134D01* X2767D01* Y5147D01* X2780D01* X2747Y5217D02* X2773D01* X2780Y5224D01* Y5231D01* X2773Y5237D01* X2753D01* X2747Y5231D01* Y5211D01* X2753Y5204D01* X2780D01* X2800Y5217D02* X2833Y5204D01* X2860D02* Y5251D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2827Y5237D02* X2800Y5217D01* Y5204D02* Y5257D01* X2547Y5161D02* Y5154D01* X2553D01* Y5161D01* X2547D01* Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2713Y5217D02* X2707Y5211D01* X2713Y5204D01* X2720Y5211D01* X2713Y5217D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5211D01* Y5224D02* Y5211D01* X2653Y5204D01* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5224D02* Y5211D01* X2613Y5204D02* X2607Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5211D01* Y5224D02* Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5231D02* X2440Y5237D01* X2447Y5244D01* X2453Y5237D01* X2447Y5231D01* Y5217D02* X2453Y5211D01* X2447Y5204D01* X2440Y5211D01* X2447Y5217D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2620Y5474D02* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* X2573Y5527D02* X2533Y5474D01* X2520D02* X2480D01* X2500D02* Y5527D01* X2487Y5514D01* X2460Y5474D02* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* Y5474D02* X2467Y5481D01* Y5494D01* X2460Y5501D01* X2433D01* X2373Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2353Y5501D01* X2360Y5507D01* Y5521D01* X2353Y5527D01* X2327D01* X2320Y5521D01* X2300Y5527D02* X2273D01* X2267Y5521D01* Y5481D01* X2273Y5474D01* X2300D01* X2307Y5481D01* Y5521D01* X2300Y5527D01* X2307D02* X2267Y5474D01* Y5391D02* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5391D01* X2300Y5384D01* X2273D01* X2267Y5391D01* Y5384D02* X2307Y5437D01* X2320Y5431D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* X2433Y5411D02* X2460D01* X2467Y5417D01* Y5431D01* X2460Y5437D01* X2433D01* X2427Y5431D01* Y5417D01* X2433Y5411D01* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2487Y5424D02* X2500Y5437D01* Y5384D01* X2480D02* X2520D01* X2533D02* X2573Y5437D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2593Y5437D01* X2620D01* X2627Y5431D01* X2647Y5411D02* X2640Y5417D01* Y5431D01* X2647Y5437D01* X2673D01* X2680Y5431D01* Y5417D01* X2673Y5411D01* X2680Y5404D01* Y5391D01* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2673D01* X2693Y5391D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2747Y5384D02* X2787Y5437D01* X2780D02* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747Y5391D01* Y5431D01* X2753Y5437D01* X2780D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* X2887Y5437D01* X2860D01* X2853Y5431D01* Y5417D01* Y5391D02* X2860Y5384D01* X2887D01* X2893Y5391D01* Y5431D01* X2860Y5474D02* X2887D01* X2893Y5481D01* Y5521D02* X2887Y5527D01* X2893D02* X2853Y5474D01* X2860D02* X2853Y5481D01* Y5521D01* X2947Y5437D02* X2907Y5384D01* Y5391D02* X2913Y5384D01* X2940D01* X2947Y5391D01* Y5431D01* X2940Y5437D01* X2913D01* X2907Y5431D01* Y5391D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* X2933D02* X2940Y5751D01* Y5771D01* X2933Y5777D01* X2907D01* Y5797D02* Y5744D01* X2933D01* X2960Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2873Y5771D01* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2833Y5681D02* X2827Y5687D01* X2807D01* X2800Y5681D01* Y5687D02* Y5654D01* X2780Y5661D02* X2773Y5654D01* X2767D01* X2760Y5661D01* Y5707D01* X2773Y5687D02* X2747D01* X2727Y5681D02* X2733Y5674D01* Y5661D01* X2727Y5654D01* X2700D01* X2693Y5661D01* Y5687D02* X2700Y5681D01* X2727D01* X2733Y5701D02* X2727Y5707D01* X2700D01* X2693Y5701D01* Y5687D01* X2680Y5681D02* X2640D01* X2620D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2547Y5694D02* X2553D01* Y5701D01* X2547D01* Y5694D01* Y5687D02* X2553D01* Y5654D01* X2560D02* X2547D01* X2513D02* X2487D01* X2480Y5661D02* Y5681D01* X2487Y5687D01* X2507D01* X2513Y5681D01* Y5674D01* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2693Y5757D02* X2727Y5744D01* X2720Y5777D02* X2693Y5757D01* Y5744D02* Y5797D01* X2660Y5784D02* Y5791D01* X2653D01* Y5784D01* X2660D01* X2653Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2620D02* Y5771D01* X2613Y5777D01* X2593D01* X2587Y5771D01* Y5777D02* Y5744D01* X2560Y5777D02* X2540D01* X2533Y5771D01* Y5751D01* X2540Y5744D01* X2560D01* X2567Y5751D01* Y5771D01* X2560Y5777D01* X2513Y5771D02* X2507Y5777D01* X2487D01* X2480Y5771D01* Y5777D02* Y5744D01* X2460Y5751D02* X2453Y5744D01* X2447D01* X2440Y5751D01* Y5797D01* X2427Y5777D02* X2453D01* X2373Y5797D02* Y5744D01* Y5757D02* X2400Y5777D01* X2407Y5744D02* X2373Y5757D01* X2353Y5764D02* X2347Y5757D01* X2320D01* X2327Y5777D02* X2347D01* X2353Y5771D01* Y5764D01* Y5744D02* X2327D01* X2320Y5751D01* Y5771D01* X2327Y5777D01* X2280Y5744D02* X2293D01* X2287D02* Y5797D01* X2280D01* X2253D02* X2213D01* Y5744D01* X2253D01* X2240Y5771D02* X2213D01* X2147Y5797D02* X2107D01* X2133Y5771D02* X2107D01* X2120Y5701D02* X2127D01* Y5694D01* X2120D01* Y5701D01* Y5687D02* X2127D01* Y5654D01* X2133D02* X2120D01* X2027Y5564D02* X2033Y5571D01* X2040Y5584D01* Y5597D01* X2033Y5611D01* X2027Y5617D01* X2000D01* Y5564D01* X2027D01* X2087Y5654D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* X2040Y5687D02* Y5701D01* X2033Y5707D01* X2053D02* Y5654D01* X2000D02* Y5707D01* X2033D01* X2040Y5687D02* X2033Y5681D01* X2000D01* X2027Y5771D02* X2000D01* Y5797D02* Y5744D01* X2040D01* X2053D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* X2093D02* X2067Y5777D01* X2053Y5771D02* X2067Y5777D01* X2040Y5797D02* X2000D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2247Y5617D02* X2220D01* X2213Y5611D01* Y5571D01* X2220Y5564D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2307Y5611D01* X2320Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D01* X2360D01* X2353Y5661D02* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2353Y5681D01* Y5661D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* Y5564D02* Y5617D01* Y5591D02* X2467D01* X2480Y5577D02* Y5571D01* X2467Y5564D02* Y5617D01* X2487Y5597D02* X2507D01* X2513Y5591D01* Y5564D01* X2487D01* X2480Y5571D01* Y5577D02* X2487Y5584D01* X2513D01* X2533Y5564D02* Y5597D01* Y5591D02* X2540Y5597D01* X2547D01* X2553Y5591D01* X2560Y5597D01* X2553Y5591D02* Y5564D01* X2560Y5597D02* X2567D01* X2573Y5591D01* Y5564D01* X2587D02* Y5597D01* Y5591D02* X2593Y5597D01* X2600D01* X2607Y5591D01* Y5564D01* Y5591D02* X2613Y5597D01* X2620D01* X2627Y5591D01* Y5564D01* X2647Y5527D02* X2640Y5521D01* Y5507D01* X2647Y5501D01* X2673D01* X2647D02* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* Y5494D01* X2673Y5501D01* X2680Y5507D01* Y5521D01* X2673Y5527D01* X2647D01* X2627Y5521D02* X2620Y5527D01* X2593D01* X2587Y5521D01* Y5481D01* X2593Y5474D01* X2620D01* X2693Y5481D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2747Y5474D02* X2787Y5527D01* X2780D02* X2787Y5521D01* Y5481D01* X2780Y5474D01* X2753D01* X2747Y5481D01* Y5521D01* X2753Y5527D01* X2780D01* X2800Y5501D02* X2840D01* X2853Y5521D02* X2860Y5527D01* X2887D01* X2893Y5521D02* Y5481D01* X2247Y5617D02* X2253Y5611D01* Y5571D01* X2247Y5564D01* X2220D01* X2213D02* X2253Y5617D01* X2267Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2227D02* X2240D01* X2233D02* Y5687D01* X2227D01* Y5694D02* X2233D01* Y5701D01* X2227D01* Y5694D01* X2173Y5707D02* X2180D01* Y5654D01* X2187D02* X2173D01* X2160Y5611D02* X2167Y5617D01* X2193D01* X2200Y5611D01* Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2107Y5597D02* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2113D01* X2107Y5571D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2180D02* X2187Y5481D01* X2180Y5487D01* X2173Y5481D01* X2180Y5474D01* X2087D02* X2060D01* X2053Y5481D01* Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* Y5437D02* X2040D01* X2060Y5417D02* X2080D01* X2087Y5411D01* Y5384D01* X2107D02* X2140Y5417D01* Y5384D02* X2107Y5417D01* X2087Y5404D02* X2060D01* X2053Y5397D01* Y5391D01* X2087Y5384D02* X2060D01* X2053Y5391D01* X2027Y5411D02* X2000D01* Y5437D02* Y5384D01* Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2127Y5204D01* X2133D01* X2140Y5211D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2287Y5114D02* X2293Y5121D01* X2287Y5127D01* X2280Y5121D01* X2287Y5114D01* Y5141D02* X2293Y5147D01* X2287Y5154D01* X2280Y5147D01* X2287Y5141D01* X2353Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2173D02* X2187D01* X2180D02* Y5147D01* X2173D01* Y5154D02* Y5161D01* X2180D01* Y5154D01* X2173D01* X2107Y5127D02* Y5121D01* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2140Y5134D02* X2113D01* X2107Y5127D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2073Y5114D02* Y5141D01* X2080Y5147D02* X2073Y5141D01* X2067Y5147D01* X2060D01* X2053Y5141D01* Y5147D02* Y5114D01* X2033D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* X1854Y4780D02* Y4733D01* X1900Y4687D01* Y3978D01* X2074Y3804D01* Y2767D01* X2246Y2595D01* Y2456D01* X2363Y2339D01* X2434Y2387D02* X2350Y2471D01* Y2558D01* X2320Y2588D01* Y2739D01* X2159Y2900D01* Y3031D01* X2140Y3050D01* Y3767D01* X2307Y3934D01* X2335Y3911D02* X2161Y3737D01* Y3073D01* X2239Y2995D01* Y2885D01* X2418Y2706D01* X2494D01* X2528Y2672D01* Y1952D01* X2467Y1948D02* Y2079D01* X2410Y2136D01* Y2369D01* X2283Y2496D01* Y2620D01* X2132Y2771D01* Y2898D01* X2096Y2934D01* Y3785D01* X2273Y3962D01* X2335Y3963D02* Y3911D01* X2360Y3934D02* Y3892D01* X2397Y3891D02* Y3955D01* Y3891D02* X2204Y3698D01* Y3118D01* X2312Y3010D01* Y2886D01* X2430Y2768D01* X2518D01* X2576Y2710D01* Y1936D01* X2552Y1945D02* Y2692D01* X2509Y2735D01* X2425D01* X2282Y2878D01* Y3018D01* X2184Y3116D01* Y3716D01* X2360Y3892D01* X2509Y3719D02* X2568D01* X2588Y3739D01* Y3747D01* X2612Y3771D01* Y3778D01* X2641Y3807D01* X2756D01* X2844Y3719D01* X3153D01* X3210Y3662D01* X3296D01* X3321Y3637D01* X3480D01* X3525Y3592D01* Y3571D01* X3542Y3554D01* X3591Y3548D02* X3570Y3569D01* Y3600D01* X3521Y3649D01* X3329D01* X3298Y3680D01* X3215D01* X3174Y3721D01* Y3740D01* X3146Y3768D01* X2929D01* X2894Y3803D01* X2790D01* X2771Y3822D01* X2601D01* X2555Y3776D01* Y3742D01* X2532Y3776D02* X2590Y3834D01* X2910D01* X2954Y3790D01* X3172D01* X3264Y3698D01* X3490D01* X3496Y3692D01* X3520D01* X3521Y3708D02* X3498D01* X3466Y3740D01* X3260D01* X3198Y3802D01* X2989D01* X2945Y3846D01* X2551D01* X2481Y3776D01* X2525Y3938D02* X2484D01* X2226Y3680D01* Y3117D01* X2343Y3000D01* X2375Y3029D02* X2333Y3071D01* Y3514D01* X2373Y3554D01* Y3797D01* X2493Y3917D01* X2556D01* X2617Y3978D01* X2847D01* X2890Y4021D01* X3430D01* X3480Y4071D01* X3528D01* X2974Y2865D02* X2949Y2840D01* Y2818D01* X3007Y2760D01* X3204D01* X3254Y2710D01* Y2604D01* X3294Y2564D01* X3360D01* X3529Y2670D02* X3516D01* X3497Y2689D01* Y2799D01* X3509Y2811D01* Y2940D01* X3530Y2961D01* Y2988D01* X3677Y3135D01* X3685Y3118D02* X3548Y2981D01* Y2957D01* X3521Y2930D01* Y2805D01* X3509Y2793D01* Y2773D01* X3523Y2759D01* X3562D01* X3579Y2742D01* Y2712D01* X3594Y2697D01* Y2678D01* X3554Y2638D01* Y2621D01* X3568Y2607D01* X3579D01* X3571Y2630D02* X3606Y2665D01* Y2702D01* X3591Y2717D01* Y2756D01* X3604Y2760D02* Y2722D01* X3623Y2703D01* X3715Y2675D02* X3719Y2679D01* Y2758D01* X3700Y2777D01* Y2807D01* X3758Y2865D01* Y2906D01* X3827Y2975D01* X3995D01* X4151Y3131D01* Y3218D01* X4275Y3342D01* Y3441D01* X4369Y3535D01* X4508D01* X4617Y3644D01* X4635D01* X4669Y3657D02* X4699D01* X4701Y3631D02* X4670D01* X4669Y3657D02* X4646Y3680D01* X4619D01* X4491Y3552D01* X4355D01* X4324Y3521D01* X4291D01* X4255Y3485D01* X4187Y3390D02* Y3552D01* X4279Y3644D01* X4382D01* X4546Y3808D01* X4646D01* X4682Y3844D01* X4735D01* X4675Y3857D02* X4656Y3876D01* X4564D01* X4463Y3927D02* X4556Y4020D01* X4611D01* X4635Y4044D01* X4687D02* X4646Y4085D01* X4563D01* X4419Y3941D01* X4325D01* X4035Y3651D01* X4007Y3729D02* X4126Y3848D01* X4035Y3651D02* Y3557D01* X3988Y3510D01* X3983D01* X3899Y3426D01* Y3338D01* X3799Y3238D01* Y3222D01* X3695Y3118D01* X3685D01* X3677Y3135D02* X3695D01* X3786Y3226D01* Y3242D01* X3887Y3343D01* Y3524D01* X3970Y3607D01* Y3623D01* X4301Y3954D01* X4463Y3927D02* X4353D01* X4327Y3901D01* Y3876D01* X4055Y3604D01* Y3554D01* X3960Y3459D01* Y3410D01* X3920Y3370D01* Y3342D01* X3812Y3234D01* Y3218D01* X3567Y2973D01* Y2952D01* X3533Y2918D01* Y2814D01* X3591Y2756D01* X3604Y2760D02* X3545Y2819D01* Y2909D01* X3587Y2951D01* Y2975D01* X3825Y3213D01* Y3230D01* X3932Y3337D01* Y3364D01* X4069Y3501D01* Y3591D01* X4323Y3845D01* X4415D01* X4571Y4001D01* X4638D01* X4669Y4032D01* X4702D01* X4687Y4044D02* X4735D01* X4649Y3982D02* X4587D01* X4433Y3828D01* X4330D01* X4084Y3582D01* Y3499D01* X3946Y3361D01* Y3334D01* X3885Y3273D01* Y3226D01* X3873Y3214D01* X3844D01* X3605Y2975D01* Y2947D01* X3557Y2899D01* Y2824D01* X3616Y2765D01* X3633Y2790D02* Y2794D01* X3583Y2844D01* Y2887D01* X3625Y2929D01* X3637D01* X3821Y3113D01* Y3145D01* X3866Y3190D01* X3883D01* X3909Y3216D01* Y3244D01* X3971Y3306D01* Y3335D01* X3983Y3347D01* X4017D01* X4065Y3395D01* Y3443D01* X4145Y3523D01* Y3591D01* X4280Y3726D01* X4390D01* X4574Y3910D01* X4655D01* X4684Y3939D01* X4696Y3957D02* X4674D01* X4649Y3982D01* X4635Y3944D02* X4581D01* X4385Y3748D01* X4276D01* X4099Y3571D01* Y3494D01* X4053Y3448D01* Y3405D01* X4010Y3362D01* X3971D01* X3958Y3349D01* Y3320D01* X3897Y3259D01* Y3221D01* X3878Y3202D01* X3861D01* X3809Y3150D01* Y3118D01* X3635Y2944D01* X3623D01* X3571Y2892D01* Y2828D01* X3633Y2765D01* Y2743D01* X3616Y2765D02* Y2735D01* X3641Y2710D01* Y2690D01* X3645Y2686D01* X3680Y2690D02* X3695Y2705D01* Y2744D01* X3663Y2776D01* Y2821D01* X3629Y2855D01* Y2881D01* X3635Y2887D01* X3648D01* X3835Y3074D01* X3866D01* X3960Y3168D01* Y3187D01* X3997Y3224D01* X4005D01* X4023Y3242D01* Y3252D01* X4116Y3345D01* X4142D01* X4187Y3390D01* X3816Y2726D02* Y2753D01* X3800Y2769D01* Y2790D01* X3831Y2821D01* X3884D01* X3914Y2851D01* X4111D01* X4284Y3024D01* Y3057D01* X4346Y3119D01* X4384D01* X4398Y3133D01* Y3175D01* X4607Y3384D01* X4647D01* X4675Y3356D01* X4697D01* X4682Y3336D02* X4655Y3309D01* X4593D01* X4379Y3095D01* X4358D01* X4330Y3067D01* Y3039D01* X4130Y2839D01* X3920D01* X3890Y2809D01* X3844D01* X3817Y2782D01* Y2777D01* X3844Y2784D02* X3853Y2793D01* X3879D01* X3882Y2790D01* X4042D01* X4075Y2757D01* X4175D01* X4188Y2770D01* Y2877D01* X4350Y3039D01* Y3064D01* X4364Y3078D01* X4385D01* X4586Y3279D01* X4646D01* X4668Y3257D01* X4680Y3235D02* X4726D01* X4735Y3244D01* X4699Y3257D02* X4668D01* X4635Y3244D02* X4595D01* X4383Y3032D01* X4362D01* X4207Y2877D01* Y2766D01* X4186Y2745D01* X4024D01* X3995Y2774D01* X3871D01* X3932Y2739D02* X3966Y2705D01* X3997D01* X4013Y2721D01* X4208D01* X4247Y2760D01* Y2833D01* X4326Y2912D01* Y2927D01* X4351Y2952D01* X4388D01* X4620Y3184D01* X4643D01* X4653Y3208D02* X4605D01* X4403Y3006D01* X4354D01* X4226Y2878D01* Y2762D01* X4197Y2733D01* X3994D01* X3983Y2722D01* X4005Y2649D02* X4018Y2636D01* X4212D01* X4314Y2738D01* X4435D01* X4531Y2834D01* Y2953D01* X4563Y2985D01* X4576D01* X4635Y3044D01* X4575Y2936D02* X4833Y3194D01* X4885D01* X4926Y2989D02* X4571Y2634D01* X4416D01* X4369Y2587D01* X3855D01* X3830Y2612D01* X3785D01* X3711Y2538D01* X3680D01* X3715Y2495D02* X3730Y2510D01* X3775D01* X3780Y2505D01* X4496D01* X4528Y2537D01* X4728D01* X4995Y2804D01* Y2856D01* X5122Y2909D02* Y2883D01* X5094Y2855D01* Y2803D01* X4764Y2473D01* X3829D01* X3825Y2469D01* X3791D01* X3767Y2493D01* X3765Y2445D02* X3790Y2420D01* X3866D01* X3879Y2433D01* X4837D01* X5213Y2809D01* X5248D01* X5335Y2896D01* Y2944D01* X5122Y2909D02* X5085Y2946D01* Y2994D01* X5035Y2944D02* Y2896D01* X5070Y2861D01* Y2829D01* X4757Y2516D01* X4562D01* X4534Y2488D01* X3821D01* X3817Y2449D02* X3834D01* X3844Y2459D01* X4794D01* X5171Y2836D01* X5199Y2861D02* Y2829D01* X4816Y2446D01* X3861D01* X3847Y2432D01* X3805D01* X3775Y2462D01* X3732D01* X3715Y2445D01* X3714Y2346D02* X3731Y2329D01* X3776D01* X3794Y2347D01* Y2356D01* X3807Y2369D01* X4203D01* X4209Y2375D01* X4711D01* X4744Y2342D01* X4840D01* X4873Y2375D01* X4985D01* X5050Y2440D01* Y2475D01* X5275Y2700D01* X5453D01* X5447Y2910D02* Y2882D01* X5471Y2858D01* Y2829D01* X5390Y2748D01* X5216D01* X4872Y2404D01* X3910D01* X3902Y2396D01* X3764D01* X3716Y2394D02* X3735Y2413D01* X3772D01* X3777Y2408D01* X3886D01* X3896Y2418D01* X4852D01* X5224Y2790D01* X5326D01* X5435Y2899D01* Y2944D01* X5447Y2910D02* X5485Y2948D01* Y2994D01* X5585D02* Y2949D01* X5549Y2913D01* Y2882D01* X5569Y2862D01* Y2816D01* X5453Y2700D01* X5667Y2676D02* X5835Y2844D01* X5867Y2863D02* X5844Y2886D01* X5847Y2983D02* Y3011D01* X5885Y3049D01* Y3094D01* X6153Y3175D02* X6167Y3161D01* X6202D01* X6220Y3179D01* X6251D01* X6279Y3151D01* X6328D01* X6335Y3144D01* X6153Y3175D02* X5014D01* X4899Y3060D01* Y3032D01* X4926Y3005D01* Y2989D01* X4885Y2994D02* X4836D01* X4803Y3027D01* X4768D01* X4455Y2714D01* X4501Y2658D02* X4405D01* X4346Y2599D01* X3881D01* X3872Y2608D01* X3889Y2635D02* X3913Y2611D01* X4317D01* X4420Y2714D01* X4455D01* X4422Y2860D02* X4330D01* X4290Y2820D01* X4322Y2881D02* X4388D01* X4616Y3109D01* X4649D01* X4672Y3132D01* X4723D01* X4735Y3144D01* X4785Y3294D02* Y3244D01* X4694Y3153D01* X4674D01* X4643Y3184D01* X4653Y3208D02* X4680Y3235D01* X4699Y3257D02* X4836Y3394D01* X4885D02* X4836D01* X4785D02* X4735D01* X4697Y3356D01* X4682Y3336D02* X4727D01* X4735Y3344D01* X4648Y3480D02* X4601D01* X4422Y3301D01* X4378D01* X4352Y3275D01* Y3268D01* X4332Y3248D01* X4323D01* X4275Y3200D01* Y3167D01* X4247Y3139D01* X4234D01* X4036Y2941D01* Y2899D01* X4024Y2887D01* X3862D01* X3839Y2864D01* X3865Y2851D02* X3889Y2875D01* X4031D01* X4048Y2892D01* Y2927D01* X4071Y2950D01* X4110D01* X4298Y3138D01* Y3160D01* X4335Y3197D01* Y3218D01* X4361Y3244D01* X4403D01* X4603Y3444D01* X4635D01* X4648Y3480D02* X4668Y3460D01* X4699D01* X4735Y3444D02* X4684D01* X4645Y3405D01* X4591D01* X4381Y3195D01* X4352D01* X4336Y3179D01* Y3142D01* X4262Y3068D01* Y3038D01* X4087Y2863D01* X3906D01* X3876Y2833D01* X3825D01* X3788Y2796D01* Y2761D01* X3799Y2750D01* Y2709D01* X3766Y2676D01* X3765Y2546D02* X3790Y2521D01* X4464D01* X4498Y2555D01* X4680D01* X4933Y2808D01* X4950D01* X4969Y2827D01* Y2858D01* X4995Y2856D02* X5018Y2879D01* Y2911D01* X4985Y2944D01* Y2994D01* Y3094D02* Y3046D01* X4948Y3009D01* Y2985D01* X4973Y2960D01* Y2931D01* X4948Y2906D01* Y2879D01* X4969Y2858D01* X4935Y2844D02* X4665Y2574D01* X4633Y2593D02* X4935Y2895D01* Y2944D01* X4835D02* X4787D01* X4501Y2658D01* X4435Y2612D02* X4603D01* X4835Y2844D01* X4575Y2936D02* Y2858D01* X4443Y2726D01* X4325D01* X4223Y2624D01* X3939D01* X3911Y2652D01* X3877D01* X3865Y2640D01* X3880Y2546D02* X3886Y2540D01* X4442D01* X4476Y2574D01* X4665D01* X4633Y2593D02* X4455D01* X4420Y2558D01* X3899D01* X3894Y2563D01* X3828D01* X3820Y2571D01* X3787D01* X3779Y2579D01* X3815Y2595D02* X3827D01* X3847Y2575D01* X4398D01* X4435Y2612D01* X4305Y1990D02* X4202Y2093D01* Y2124D01* X4191Y2135D01* X4052D01* X3973Y2214D01* X3755D01* X3733Y2192D01* X3715D01* X3714Y2145D02* X3741Y2172D01* X3832D01* X3845Y2185D01* X3982D01* X4080Y2087D01* X4175D01* X4301Y1961D01* X4660D01* X4783Y2035D02* X4380D01* X4359Y2014D01* X4305Y1990D02* X4689D01* X4748Y1931D01* X4660Y1961D02* X4702Y1919D01* Y1891D01* X4957Y1636D01* Y1533D01* X4908Y1553D02* Y1655D01* X4682Y1881D01* X4667D01* X4657Y1891D01* Y1918D01* X4644Y1931D01* X4265D01* X4135Y2061D01* X4085D01* X3986Y2160D01* X3786D01* X3768Y2142D01* X3818D02* X3984D01* X4089Y2037D01* X4121D01* X4259Y1899D01* X4596D01* X4631Y1864D01* X4668D01* X4896Y1636D01* X4783Y2035D02* X4804Y2014D01* X4748Y1931D02* Y1874D01* X4989Y1633D01* Y1513D01* X4921Y1470D02* Y1495D01* X4848Y1568D01* X4874Y1572D02* Y1629D01* X4656Y1847D01* X4258D01* X3980Y2125D01* X3708D01* X3507Y2326D01* Y2356D01* X3456Y2407D01* Y2568D01* X3449Y2575D01* Y2751D01* X3403Y2797D01* Y2838D01* X3449Y2884D01* Y2967D01* X3652Y3170D01* X3696D01* X3754Y3228D01* X3774Y3247D02* Y3231D01* X3696Y3153D01* X3697Y3196D02* X3681Y3212D01* X3647D01* X3620Y3185D01* X3583D01* X3510Y3112D01* Y3051D01* X3432Y2971D02* X3510Y3049D01* Y3051D01* X3432Y2973D01* Y2971D01* Y2888D01* X3389Y2845D01* Y2781D01* X3401Y2769D01* Y2664D01* X3400Y2663D01* Y2571D01* X3392Y2563D01* Y2449D01* X3493Y2348D01* Y2274D01* X3607Y2160D01* Y1935D01* X3624Y1918D01* X3656D01* X3710Y1864D01* X3803D01* X3807Y1860D01* X3576Y1887D02* X3558Y1869D01* Y1672D01* X3630Y1600D01* Y1507D01* X3601Y1530D02* X3609Y1524D01* X3608Y1515D01* X3601Y1530D02* X3600D01* X3510D01* X3501Y1539D01* Y1574D01* X3546Y1619D01* Y1883D01* X3534Y1895D01* X3520Y1920D02* X3540D01* X3560Y1940D01* Y1960D01* X3590Y1990D01* Y2100D01* X3585Y2108D01* X3576Y2109D01* X3570Y2101D01* Y2100D01* Y2000D01* Y1999D01* X3564Y1991D01* X3555Y1992D01* X3550Y2000D01* Y2100D01* X3545Y2108D01* X3536Y2109D01* X3530Y2101D01* Y2100D01* Y1990D01* X3510Y1970D01* Y1940D01* X3499Y1929D01* Y1880D01* X3506Y1873D01* Y1837D01* X3534Y1809D01* Y1701D01* X3467Y1634D01* Y1558D01* X3457Y1548D01* Y1506D01* X3449Y1498D01* X3486Y1501D02* Y1484D01* X3500Y1470D01* X3570D01* X3578Y1475D01* X3579Y1484D01* X3571Y1490D01* X3570D01* X3510D01* X3509D01* X3501Y1496D01* X3502Y1505D01* X3510Y1510D01* X3600D01* X3608Y1515D01* X3630Y1507D02* X3572Y1449D01* X3547D01* X3496Y1398D01* X3121D01* X3084Y1424D02* Y1455D01* X3098Y1469D01* X3394D01* X3445Y1520D01* Y1553D01* X3455Y1563D01* Y1642D01* X3510Y1697D01* Y1768D01* X3487Y1791D01* X3422Y1786D02* X3372Y1736D01* Y1674D01* X3343Y1645D01* Y1556D01* X3310Y1523D01* X3062D01* X3025Y1486D01* Y1463D01* X3032Y1456D01* Y1427D01* X3058Y1444D02* X3059D01* Y1483D01* X3075Y1499D01* X3323D01* X3369Y1545D01* Y1588D01* X3406Y1625D01* Y1653D01* X3418Y1661D02* Y1577D01* X3377Y1536D01* Y1524D01* X3357Y1504D01* X3324Y1562D02* Y1694D01* X3330Y1700D01* Y1810D01* Y1811D01* X3336Y1819D01* X3331Y1841D02* Y1840D01* X3310Y1819D01* Y1620D01* X3225Y1535D01* X3033D01* X2970Y1472D01* X2947D01* X2950Y1421D02* X2949Y1420D01* X2745D01* X2707Y1458D01* Y1482D01* X2854Y1629D01* X3064D01* X3151Y1716D01* Y1736D01* X3169Y1747D02* X3152Y1764D01* X3169Y1747D02* Y1715D01* X3068Y1614D01* X2870D01* X2726Y1470D01* X2737Y1376D02* X2673Y1440D01* Y1521D01* X2848Y1696D01* X3087D01* X3152Y1764D02* Y1830D01* X3136Y1846D01* X3194Y1823D02* X3206Y1835D01* Y1867D01* X3181Y1892D01* X3194Y1823D02* Y1674D01* X3120Y1600D01* X2888D01* X2758Y1470D01* X2789Y1471D02* X2904Y1586D01* X3126D01* X3225Y1685D01* Y1837D01* X3254Y1866D02* Y1674D01* X3139Y1559D01* X2972D01* X2884Y1471D01* X2916Y1472D02* X2991Y1547D01* X3209D01* X3298Y1636D01* Y1856D01* X3336Y1819D02* X3345Y1818D01* X3350Y1810D01* Y1780D01* X3340Y1770D01* Y1720D01* X3345Y1712D01* X3354Y1711D01* X3360Y1719D01* Y1720D01* Y1810D01* X3380Y1830D01* Y1843D01* X3715Y2096D02* X3732Y2113D01* X3972D01* X4054Y2031D01* Y2012D01* X4247Y1819D01* X4656D01* X4848Y1627D01* Y1568D01* X4836Y1556D02* Y1607D01* X4651Y1792D01* X4245D01* X4035Y2002D01* Y2031D01* X3998Y2068D01* X3687D01* X3665Y2046D01* X3715D02* X3746Y2015D01* X3789D01* X3790Y2014D01* X3915D01* X4237Y1692D01* X4458D01* X4599Y1551D01* X4752D01* X4748Y1530D02* X4592D01* X4453Y1669D01* X4233D01* X3930Y1972D01* X3795D01* X3794Y1973D01* X3737D01* X3715Y1995D01* X3716Y1945D02* X3732Y1961D01* X3781D01* X3783Y1959D01* X3858D01* X3891Y1926D01* X3949D01* X4229Y1646D01* X4449D01* X4582Y1513D01* X4734D01* X4766Y1512D02* X4748Y1530D01* X4752Y1551D02* X4770Y1533D01* X4776D01* X4797Y1512D01* X4814Y1520D02* Y1495D01* X4772Y1453D01* Y1382D01* X4759Y1369D01* Y1216D01* X4750Y1207D01* X4971Y1209D02* Y1490D01* X4908Y1553D01* X4896Y1636D02* Y1544D01* X4943Y1497D01* Y1427D01* X4870Y1354D01* Y1318D01* X4813Y1261D01* Y1207D01* X4782Y1205D02* Y1355D01* X4839Y1412D01* Y1471D01* X4849Y1481D01* Y1521D01* X4822Y1548D01* Y1591D01* X4836Y1556D02* X4894Y1498D01* Y1470D01* X4831Y1514D02* Y1521D01* X4808Y1544D01* Y1581D01* X4771Y1618D01* X4589D01* X4468Y1739D01* X4243D01* X3998Y1984D01* Y2027D01* X3969Y2056D01* X3776D01* X3765Y2045D01* X4058Y2161D02* X3985Y2234D01* X3751D01* X3743Y2226D01* X3631D01* X3634Y2247D02* X3725D01* X3712Y2298D02* X3736D01* X3755Y2279D01* X3771D01* X3805Y2313D01* X3963D01* X3985Y2291D01* X5081D01* X5168Y2378D01* X5505D01* X5867Y2740D01* Y2863D01* X5844Y2886D02* Y2908D01* X5870Y2934D01* X5847Y2983D02* X5870Y2960D01* Y2934D01* X6135Y2844D02* Y2805D01* X5680Y2350D01* X5254D01* X5170Y2266D01* X3963D01* X3933Y2296D01* X3813D01* X3864Y2274D02* X3857Y2267D01* X3750D01* X3736Y2281D01* X3632D01* X3571Y2342D01* X3573Y2436D02* X3589D01* X3625Y2472D01* X3645D01* X3663Y2490D01* Y2548D01* X3680Y2565D01* X3715D01* X3777Y2627D01* X3827D01* X3869Y2669D01* X4014D01* X4035Y2648D01* X4202D01* X4310Y2756D01* X4426D01* X4476Y2806D01* X4422Y2860D02* X4464Y2902D01* X5667Y2676D02* X5317D01* X5078Y2437D01* Y2410D01* X4983Y2315D01* X3994D01* X3983Y2326D01* X3793D01* X3763Y2296D01* X3764Y2346D02* X3799Y2381D01* X3916D01* X3925Y2390D01* X4926D01* X5261Y2725D01* X5403D01* X5492Y2814D01* Y2850D01* X5528Y2886D01* Y2903D01* X5497Y2934D01* Y2956D01* X5525Y2984D01* Y3008D01* X5485Y3048D01* Y3094D01* X5285D02* Y3044D01* Y2994D02* Y2947D01* X5199Y2861D01* X5171Y2836D02* Y2862D01* X5151Y2882D01* Y2910D01* X5285Y3044D01* X5318Y3641D02* Y3529D01* X5517Y3330D01* X5769D01* X5881Y3442D01* X5936Y3447D02* X5910Y3473D01* X5813D01* X5763Y3498D02* Y4269D01* X5681Y4351D01* X5635Y4444D02* X5584D01* X5482Y4342D01* X4888D01* X4852Y4378D01* X4819D01* X4803Y4362D01* X4768D01* X4754Y4376D01* X4873Y4133D02* X4849Y4109D01* X4821D01* X4642Y4288D01* X4242D01* X4236Y4312D02* X4652D01* X4672Y4332D01* X4698D01* X4873Y4157D01* X4933D01* X5235Y3855D01* Y3818D01* X5488Y3565D01* X5545Y3506D02* X5585Y3466D01* Y3392D01* X5616Y3361D01* X5671D01* X5736Y3426D01* Y3590D01* X5813Y3473D02* X5686Y3346D01* X5535D01* X5488Y3393D01* Y3565D01* X5545Y3556D02* X5605Y3496D01* Y3394D01* X5625Y3374D01* X5665D01* X5710Y3419D01* Y3629D01* X5645Y3656D02* X5732Y3743D01* Y3810D01* X5318Y3641D02* X5072Y3887D01* Y3970D01* X4909Y4133D01* X4873D01* X4885Y4094D02* X4876Y4085D01* X4821D01* X4746Y4010D01* X4724D01* X4702Y4032D01* X4675Y3857D02* X4698D01* X4835Y3994D01* X4885D02* X4835D01* X4785D02* X4778Y3987D01* X4726D01* X4696Y3957D01* X4684Y3939D02* X4730D01* X4735Y3944D01* X4785Y3894D02* Y3846D01* X4698Y3759D01* X4674D01* X4673Y3733D02* X4724D01* X4735Y3744D01* X4785Y3794D02* Y3743D01* X4699Y3657D01* X4701Y3631D02* X4726Y3606D01* X4747D01* X4885Y3744D01* Y3794D01* X4670Y3631D02* X4640Y3601D01* X4609D01* X4484Y3476D01* X4383D01* X4305Y3398D01* Y3347D01* X4171Y3213D01* Y3134D01* X4000Y2963D01* X3832D01* X3793Y2924D01* Y2880D01* X3712Y2799D01* Y2782D01* X3721Y2773D01* X3740D01* X3752Y2785D01* X3729Y2791D02* Y2799D01* X3881Y2951D01* X4010D01* X4192Y3133D01* Y3209D01* X4318Y3335D01* X4344D01* X4375Y3366D01* X4405D01* X4620Y3581D01* X4650D01* X4687Y3544D01* X4735D01* X4772Y3525D02* X4757Y3510D01* X4717D01* X4701Y3526D01* X4664D01* X4699Y3460D02* X4719Y3480D01* X4771D01* X4785Y3494D01* X4772Y3525D02* X4804D01* X4835Y3494D01* X4885D01* X4652Y3712D02* X4607D01* X4598Y3721D01* X4544D01* X4392Y3569D01* X4338D01* X4311Y3542D01* X4280D01* X4237Y3499D01* Y3347D01* X4151Y3261D01* X4110D01* X4074Y3225D01* Y3091D01* X3982Y2999D01* X3817D01* X3680Y2862D01* Y2857D01* X3678Y2831D02* X3663Y2846D01* Y2866D01* X3808Y3011D01* X3916D01* X3976Y3071D01* X4006D01* X4052Y3117D01* Y3224D01* X4106Y3278D01* X4144D01* X4220Y3354D01* Y3519D01* X4314Y3613D01* X4410D01* X4541Y3744D01* X4635D01* X4652Y3712D02* X4673Y3733D01* X4674Y3759D02* X4649Y3784D01* X4552D01* X4397Y3629D01* X4296D01* X4205Y3538D01* Y3364D01* X4135Y3294D01* X4101D01* X4031Y3224D01* Y3183D01* X3963Y3115D01* Y3101D01* X3924Y3062D01* X3840D01* X3647Y2869D01* X3646D01* X3600Y2852D02* Y2887D01* X3627Y2914D01* X3640D01* X3833Y3107D01* Y3130D01* X3851Y3148D01* X3884D01* X3924Y3188D01* Y3231D01* X3991Y3298D01* X4005D01* X4160Y3453D01* Y3579D01* X4289Y3708D01* X4396D01* X4564Y3876D01* X4635Y3844D02* X4556D01* X4398Y3686D01* X4291D01* X4174Y3569D01* Y3407D01* X4127Y3360D01* X4101D01* X4020Y3279D01* X3993D01* X3942Y3228D01* Y3179D01* X3898Y3135D01* X3859D01* X3847Y3123D01* Y3103D01* X3643Y2899D01* X3629D01* X3617Y2887D01* Y2850D01* X3651Y2816D01* Y2717D01* X3653Y2715D01* Y2703D01* X3662Y2694D01* Y2642D01* X3675Y2629D01* X3718Y2628D02* Y2644D01* X3698Y2664D01* Y2684D01* X3707Y2693D01* Y2752D01* X3686Y2773D01* Y2810D01* X3714Y2838D01* Y2879D01* X3822Y2987D01* X3988D01* X4094Y3093D01* Y3196D01* X4117Y3219D01* X4131D01* X4255Y3343D01* Y3485D01* X4664Y3526D02* X4645Y3507D01* X4591D01* X4403Y3319D01* X4326D01* X4212Y3205D01* Y3135D01* X4016Y2939D01* X3954D01* X3914Y2899D01* X3848D01* X3775Y2826D01* Y2765D01* X3746Y2736D01* Y2671D01* X3758Y2659D01* X3776D01* X3809Y2692D01* X3833D01* X3822Y2670D02* X3836D01* X3859Y2693D01* X4005D01* X4021Y2709D01* X4219D01* X4268Y2758D01* Y2827D01* X4322Y2881D01* X4290Y2820D02* Y2757D01* X4193Y2660D01* X4059D01* X4038Y2681D01* X3864D01* X3825Y2642D01* X3766D01* X3725Y2601D01* X3675D01* X3639Y2565D01* X3576D01* X3558Y2547D01* Y2525D01* X3531Y2498D01* Y2436D01* X3537Y2430D01* Y2344D01* X3634Y2247D01* X3631Y2226D02* X3523Y2334D01* Y2393D01* X3508Y2408D01* Y2647D01* X3485Y2670D01* Y2806D01* X3497Y2818D01* Y2951D01* X3513Y2967D01* Y2998D01* X3668Y3153D01* X3696D01* X3670Y3274D02* Y3294D01* X3683Y3307D01* X3768D01* X3783Y3322D01* X3758Y3319D02* X3634D01* X3618Y3303D01* X3616Y3330D02* X3596Y3310D01* Y3288D01* X3594Y3286D01* X3618Y3303D02* Y3277D01* X3606Y3265D01* X3542D01* X3518Y3241D01* X3490D01* X3469Y3220D01* Y3205D01* Y3059D01* X3421Y3011D01* X3393D01* X3308Y2926D01* X2983D01* X2956Y2953D01* X2527D01* X2426Y3054D01* Y3068D01* X2375Y3029D02* Y2890D01* X2430Y2835D01* X2523D01* X2646Y2712D01* Y1536D01* X2537Y1427D01* X2451Y1385D02* X2491D01* X2558Y1318D01* Y1214D01* X2451Y1385D02* X2299Y1537D01* Y1887D01* X2348Y1936D01* Y2123D01* X2363Y2138D01* Y2339D01* X2434Y2387D02* Y2243D01* X2484Y2193D01* Y1937D01* X2397Y1850D01* Y1633D01* X2468Y1562D01* X2467Y1612D02* X2416Y1663D01* Y1840D01* X2528Y1952D01* X2552Y1945D02* X2434Y1827D01* Y1696D01* X2469Y1661D01* X1652Y2732D02* Y2694D01* X1663Y2683D01* X1689D01* X1697Y2675D01* Y2643D01* X1691Y2637D01* Y2595D01* X1697Y2589D01* Y2562D01* X1691Y2556D01* Y2503D01* X1727Y2467D01* X1807D01* X1888Y2386D01* X1940D01* X1999Y2445D01* Y2480D01* X2043Y2524D01* X2158D01* X2204Y2478D01* Y2388D01* X2249Y2343D01* Y2277D01* X2237Y2274D02* X2212Y2249D01* X2249Y2277D02* X2277Y2249D01* X2237Y2274D02* Y2335D01* X2192Y2380D01* Y2472D01* X2155Y2509D01* X2046D01* X2011Y2474D01* Y2438D01* X1947Y2374D01* X1882D01* X1801Y2455D01* X1721D01* X1679Y2497D01* Y2557D01* X1666Y2570D01* X1634D01* X1612Y2592D01* Y2642D01* X1626Y2656D01* X1644D01* X1652Y2648D01* Y2614D01* Y2260D02* Y2309D01* X1640Y2321D01* Y2345D01* X1649Y2354D01* X1710D01* X1727Y2371D01* X1792D01* X1877Y2286D01* X1913D01* X1942Y2257D01* X2008D01* X2041Y2290D01* X2065D01* X2084Y2309D01* X2086Y2252D02* X2060Y2278D01* X2046D01* X2013Y2245D01* X1935D01* X1906Y2274D01* X1871D01* X1786Y2359D01* X1735D01* X1691Y2315D01* Y2218D01* X1652Y2179D01* Y2142D01* X2440Y2024D02* Y1988D01* X2359Y1907D01* Y1576D01* X2473Y1462D01* X2471Y1512D02* X2380Y1603D01* Y1861D01* X2467Y1948D01* X2576Y1936D02* X2450Y1810D01* Y1732D01* X2470Y1712D01* X2471Y1762D02* X2626Y1917D01* Y2702D01* X2514Y2814D01* X2416D01* X2343Y2887D01* Y3000D01* X2316Y3053D02* X2253Y3116D01* Y3479D01* X2352Y3578D01* X2472Y3507D02* X2491Y3526D01* Y3562D01* X2506Y3577D01* Y3651D01* X2442Y3715D01* Y3801D01* X2516Y3875D01* X2720D01* X2725Y3870D01* X3232D01* X3338Y3764D01* X3478D01* X3504Y3738D01* X3579D01* X3668Y3649D01* Y3620D01* X3648Y3541D02* Y3564D01* X3520Y3692D01* X3521Y3708D02* X3669Y3560D01* Y3532D01* X3692Y3509D01* Y3490D01* X3701Y3469D02* X3713Y3481D01* Y3533D01* X3599Y3770D02* X3549D01* X3507Y3812D01* X3551Y3799D02* X3569Y3817D01* X3605D01* X3616Y3806D01* Y3720D01* X3680Y3656D01* Y3626D01* X3736Y3570D01* Y3535D01* X3725Y3524D01* Y3452D01* X3722Y3449D01* X3701Y3469D02* X3680D01* X3669Y3480D01* Y3497D01* X3649Y3517D01* X3635D01* X3616Y3536D01* Y3564D01* X3591Y3589D01* X3668Y3620D02* X3724Y3564D01* Y3544D01* X3713Y3533D01* X3703Y3553D02* X3694D01* X3523Y3724D01* X3500D01* X3472Y3752D01* X3268D01* X3206Y3814D01* X3028D01* X2984Y3858D01* X2532D01* X2460Y3786D01* Y3737D01* X2530Y3667D01* Y3565D01* X2511Y3546D01* X2512D01* Y3547D01* X2615Y3742D02* X2642D01* X2694Y3794D01* X2731D01* X2820Y3705D01* X3144D01* X3205Y3644D01* X3295D01* X3314Y3625D01* X3469D01* X3510Y3584D01* Y3555D01* X3532Y3533D01* X3575D01* X3581Y3527D01* X3607D01* X3627Y3507D01* Y3470D01* X3635Y3462D01* X3659D01* X3680Y3441D01* X3698D01* X3722Y3449D02* Y3387D01* X3743Y3366D01* X3752D01* X3771Y3347D01* Y3332D01* X3758Y3319D01* X3747Y3340D02* X3712Y3375D01* X3688D01* X3695Y3341D02* X3664Y3372D01* Y3396D01* X3652Y3408D01* X3627D01* X3614Y3421D01* X3616Y3394D02* Y3330D01* X3590Y3341D02* X3565Y3316D01* Y3305D01* X3513Y3253D01* X3482D01* X3448Y3219D01* Y3100D01* X3288Y2940D01* X2997D01* X2961Y2976D01* X2755D01* X2731Y3000D01* X2541D01* X2509Y3032D01* Y3187D01* X2570Y3248D01* X2651D01* X2672Y3269D01* X2393Y3153D02* X2412Y3172D01* Y3527D01* X2427Y3542D01* Y3820D01* X2505Y3898D01* X2574D01* X2607Y3931D01* X2892D01* X2912Y3951D01* X2957D01* X2990Y3918D01* X3275D01* X3416Y3777D01* X3439D01* X3474Y3812D01* X3507D01* X3425Y3798D02* Y3825D01* X3476Y3876D01* Y3993D01* X3519Y4036D01* Y4051D01* X3537Y4062D02* X3558D01* X3572Y4048D02* X3558Y4062D01* X3537D02* X3528Y4071D01* X3572Y4048D02* Y4031D01* X3600Y4003D01* X3637Y3887D02* Y4017D01* X4456Y4836D01* X6579D01* X6587Y4828D01* X7075D01* X7083Y4836D01* X7098Y4742D02* X7081Y4759D01* X4544D01* X3875Y4090D01* Y4012D01* X3810Y3947D01* X3786D01* X3763Y3924D01* Y3884D01* X3738Y3859D01* Y3788D01* X3690Y3890D02* X3778Y3978D01* Y4015D01* X3811Y4048D01* X3813D01* X3903Y4138D01* Y4157D01* X4555Y4809D01* X7396D01* X7425Y4780D01* X7466Y4742D02* X7504Y4780D01* X7583D02* X7526Y4836D01* X7083D01* X7012Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7265Y5141D01* Y5128D01* X7258Y5121D01* X7232D01* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7212Y5058D02* X7172Y5004D01* X7178D02* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7178D01* X7172Y5051D01* Y5011D01* X7178Y5004D01* X7232D02* X7225Y5011D01* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225D02* X7265Y5058D01* X7298Y5094D02* X7292Y5101D01* X7298Y5108D01* X7305Y5101D01* X7298Y5094D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7418D02* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7418D01* X7425Y5101D01* Y5141D01* X7418Y5148D01* X7425D02* X7385Y5094D01* X7372Y5058D02* X7332Y5004D01* X7338D02* X7365D01* X7372Y5011D01* Y5051D01* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7298D02* X7305Y5011D01* X7298Y5018D01* X7292Y5011D01* X7298Y5004D01* X7385D02* X7425Y5058D01* X7418D02* X7425Y5051D01* Y5011D01* X7418Y5004D01* X7392D01* X7385Y5011D01* Y5051D01* X7392Y5058D01* X7418D01* X7438Y5031D02* X7445Y5038D01* X7452D02* X7458Y5031D01* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5031D01* X7452Y5038D02* X7445D01* X7438D02* Y5004D01* X7492D02* Y5038D01* Y5031D02* X7498Y5038D01* X7505D01* X7512Y5031D01* X7518Y5038D01* X7512Y5031D02* Y5004D01* X7532D02* Y5031D01* X7525Y5038D01* X7518D01* X7512Y5121D02* X7518Y5128D01* X7525D01* X7532Y5121D01* Y5094D01* X7512D02* Y5121D01* X7505Y5128D01* X7498D01* X7492Y5121D01* Y5128D02* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5094D02* Y5121D01* X7465Y5128D02* X7458Y5121D01* X7452Y5128D01* X7445D01* X7438Y5121D01* Y5128D02* Y5094D01* X7466Y4742D02* X7098D01* X7083Y4560D02* X6952Y4691D01* X4517D01* X3909Y4083D01* Y3991D01* X3755Y3837D01* Y3780D01* X3695Y3720D01* X3724Y3695D02* Y3684D01* X3733Y3675D01* X3780D01* X3872Y3767D01* Y3782D01* X3855Y3777D02* Y3790D01* X4081Y4016D01* Y4127D01* X4242Y4288D01* X4236Y4312D02* X3991Y4067D01* Y3956D01* X3843Y3808D01* Y3785D01* X3809Y3751D01* X3773D01* X3747Y3725D01* Y3693D01* X3769Y3692D02* X3767Y3694D01* Y3728D01* X3778Y3739D01* X3817D01* X3855Y3777D01* X4007Y3729D02* X3923D01* X3827Y3633D01* X3820Y3684D02* X3785Y3649D01* Y3583D01* X3814Y3554D01* Y3393D01* X3856Y3417D02* X3808Y3369D01* Y3299D01* X3754Y3245D01* Y3228D01* X3774Y3247D02* X3827Y3300D01* Y3317D01* X3783Y3322D02* Y3357D01* X3770Y3370D01* Y3610D01* X3705Y3675D01* Y3703D01* X3773Y3771D01* Y3777D01* X3812Y3816D01* X3829D01* X3938Y3925D01* Y4076D01* X4204Y4342D01* X4568D01* X4605Y4379D01* X4652D01* X4668Y4363D01* X4703D01* X4716Y4376D01* X4754D01* X4635Y4144D02* X4449D01* X4301Y3996D01* Y3954D01* X4274Y3960D02* Y4020D01* Y3960D02* X3964Y3650D01* X3934D01* X3920Y3636D01* Y3597D01* X3856Y3533D01* Y3417D01* X3814Y3393D02* X3796Y3375D01* Y3306D01* X3753Y3263D01* X3686D01* X3656Y3233D01* X3626D01* X3598Y3205D01* X3512D01* X3541Y3340D02* Y3298D01* X3508Y3265D01* X3486D02* X3471Y3280D01* Y3292D01* X3465Y3319D02* X3382D01* X3356Y3293D01* X3344Y3303D02* X3384Y3343D01* X3393D01* X3332Y3332D02* Y3237D01* X3254Y3159D01* X3141D01* X3124Y3142D01* X2832D01* X2795Y3179D01* X2771D01* X2743Y3151D01* Y3109D02* X2777Y3075D01* X2910D01* X2926Y3091D01* X3250D01* X3233Y3117D02* X2816D01* X2796Y3137D01* X2775D01* X2768Y3130D01* X2726D01* X2686Y3090D01* X2640D01* X2617Y3067D01* X2582Y3050D02* X2605Y3027D01* X2961D01* X2980Y3008D01* X3282D01* X3314Y2990D02* X2972D01* X2949Y3013D01* X2601D01* X2561Y3053D01* X2582Y3050D02* Y3115D01* X2566Y3131D01* Y3161D01* X2578Y3173D01* X2608D01* X2629Y3152D01* X2587D02* X2594Y3145D01* Y3059D01* X2613Y3040D01* X2941D01* X2968Y3067D01* X3269D01* X3387Y3185D01* Y3270D01* X3397Y3280D02* X3387Y3270D01* X3372Y3292D02* X3387Y3307D01* X3456D01* X3465Y3319D02* X3498Y3286D01* X3508Y3265D02* X3486D01* X3471Y3292D02* X3456Y3307D01* X3443Y3286D02* X3402Y3245D01* Y3137D01* X3323Y3058D01* X3315D01* X3302Y3045D01* Y3028D01* X3282Y3008D01* X3314Y2990D02* X3423Y3099D01* Y3205D01* X3231Y3206D02* X3221Y3196D01* X3053D01* X3001Y3248D01* X2874D01* X2830Y3292D01* X2792D01* X2774Y3310D01* X2746D01* X2710Y3304D02* X2713D01* X2728Y3289D01* X2770D01* X2775Y3284D01* Y3260D01* X2764Y3247D02* X2778Y3233D01* X2742Y3226D02* X2759Y3209D01* X2782D01* X2815Y3176D01* X2855D01* X2863Y3184D01* X3012D01* X3025Y3171D01* X3245D01* X3230Y3184D02* X3033D01* X2986Y3231D01* X2833D01* X2814Y3250D01* X2785D01* X2775Y3260D01* X2764Y3247D02* X2723D01* X2710Y3234D01* Y3187D01* X2692Y3169D01* X2652D01* X2629Y3192D01* X2672Y3191D02* X2693Y3212D01* Y3278D01* X2680Y3291D01* X2651D01* X2623Y3319D01* Y3351D01* X2607Y3367D01* Y3396D01* X2620Y3409D01* X2679D01* X2736Y3466D01* X2770D01* X2888Y3348D01* X2883Y3331D02* X2765Y3449D01* X2737D01* X2676Y3388D01* X2667D01* X2666Y3349D02* X2685Y3368D01* X2804D01* X2865Y3307D01* X3161D01* X3171Y3297D01* Y3283D01* X3183Y3271D01* X3298D01* X3287Y3293D02* X3261Y3319D01* X3272Y3327D02* X3284Y3315D01* X3300D01* X3308Y3307D01* Y3281D01* X3298Y3271D01* X3320Y3246D02* Y3323D01* X3316Y3327D01* Y3362D01* X3323Y3369D01* Y3396D01* X3335Y3408D01* X3458D01* X3483Y3383D01* X3480Y3405D02* X3465Y3420D01* X3328D01* X3330Y3442D02* X3354D01* X3362Y3464D02* X3387Y3489D01* X3412Y3495D02* X3392Y3515D01* X3412Y3495D02* Y3481D01* X3430Y3463D01* X3468D01* X3491Y3440D01* X3512Y3453D02* Y3422D01* X3527Y3407D01* X3603D01* X3616Y3394D01* X3595Y3384D02* X3575Y3364D01* X3534D01* X3522Y3376D01* Y3393D01* X3510Y3405D01* X3480D01* X3483Y3383D02* X3500D01* X3491Y3340D02* X3466Y3365D01* X3340D01* X3329Y3354D01* Y3335D01* X3332Y3332D01* X3344Y3303D02* Y3228D01* X3233Y3117D01* X3236Y3103D02* X2799D01* X2787Y3115D01* X2672Y3069D02* X2689Y3052D01* X2922D01* X2949Y3079D01* X3263D01* X3372Y3188D01* Y3292D01* X3356Y3293D02* Y3223D01* X3236Y3103D01* X3250Y3091D02* X3355Y3196D01* X3320Y3246D02* X3245Y3171D01* X3230Y3184D02* X3255Y3209D01* X3231Y3206D02* Y3219D01* X3234Y3245D02* X3224Y3255D01* X3137D01* X3127Y3265D01* X2980D01* X2965Y3280D01* X2872D01* X2803Y3349D01* X2751D01* X2728Y3326D01* X2652D01* X2638Y3340D01* Y3377D01* X2628Y3387D01* X2667Y3430D02* X2685Y3448D01* Y3481D01* X2693Y3489D01* X2724D01* X2731Y3482D01* X2777D01* X2899Y3360D01* X2919D01* X2899Y3471D02* X2935Y3507D01* Y3527D01* X2960Y3552D01* X3012D01* X3025Y3539D01* X3443D01* X3524Y3458D01* Y3427D01* X3512Y3453D02* X3438Y3527D01* X3091D01* X3064Y3500D01* Y3482D01* X3048Y3466D01* X2955D01* X2929Y3440D01* X2905D01* X2855Y3431D02* X2870Y3446D01* Y3530D01* X2865Y3538D01* X2856Y3539D01* X2850Y3530D02* Y3531D01* X2856Y3539D01* X2850Y3530D02* Y3490D01* X2837Y3477D01* X2818D01* X2746Y3428D02* X2765Y3409D01* X2781D01* X2871Y3319D01* X3261D01* X3272Y3327D02* Y3352D01* X3282Y3362D01* X3298D01* X3311Y3375D01* Y3403D01* X3328Y3420D01* X3330Y3442D02* X3305Y3417D01* X3190D01* X3236Y3441D02* X3194D01* X3101Y3348D01* X2888D01* X2883Y3331D02* X3104D01* X3190Y3417D01* X2706Y3773D02* Y3745D01* X2847Y3604D01* X2901D01* X2915Y3618D01* X3104D01* X3147Y3575D01* X3459D01* X3516Y3518D01* X3570D01* X3591Y3497D01* X3570Y3493D02* Y3485D01* X3582Y3473D01* X3570Y3493D02* X3557Y3506D01* X3511D01* X3454Y3563D01* X3086D01* X3072Y3577D01* Y3594D01* X3060Y3606D01* X2924D01* X2894Y3576D01* X2810D01* X2781Y3547D01* X2709D01* X2672Y3506D02* X2707D01* X2728Y3527D01* X2779D01* X2811Y3559D01* X2923D01* X2928Y3564D01* X3034D01* X3047Y3551D01* X3448D01* X3538Y3461D01* X3599D01* X3614Y3446D01* Y3421D02* Y3446D01* X3590Y3440D02* X3569Y3419D01* X3532D01* X3524Y3427D01* X3362Y3464D02* X3195D01* X3107Y3376D01* X2935D01* X2919Y3360D01* X2908Y3377D02* X2941Y3410D01* X3093D01* X3115Y3432D01* Y3455D01* X3120Y3460D01* Y3489D01* X3146Y3515D01* X3392D01* X3582Y3473D02* X3605D01* X3626Y3452D01* Y3431D01* X3637Y3420D01* X3659D01* X3677Y3402D01* Y3386D01* X3688Y3375D01* X3670Y3274D02* X3649Y3253D01* X3548D01* X3521Y3226D01* X3503D01* X3491Y3214D01* Y3056D01* X3424Y2989D01* X3402D01* X3339Y2926D01* Y2738D01* X3355Y2722D01* Y2601D01* X3378Y2578D01* Y2503D01* X3231Y2356D01* Y2239D01* X3088Y1850D02* X3109Y1829D01* Y1693D01* X3060Y1644D01* X2843D01* X2690Y1491D01* Y1449D01* X2737Y1402D01* X2764D01* X2737Y1376D02* X2900D01* X2820Y1471D02* X2920Y1571D01* X3131D01* X3242Y1682D01* Y1886D01* X3233Y1895D01* X3254Y1866D02* X3282Y1894D01* X3298Y1856D02* X3334Y1892D01* X3360Y1900D02* Y1880D01* X3370Y1870D01* X3390D01* X3400Y1860D01* Y1838D01* X3397Y1835D01* Y1816D01* X3408Y1805D01* X3429D01* X3444Y1790D01* Y1687D01* X3418Y1661D01* X3406Y1653D02* X3401Y1658D01* Y1674D01* X3422Y1735D02* X3384Y1697D01* Y1669D01* X3356Y1641D01* Y1549D01* X3318Y1511D01* X3067D01* X3042Y1486D01* Y1472D01* X3076D02* X3089Y1485D01* X3391D01* X3432Y1526D01* Y1557D01* X3442Y1567D01* Y1649D01* X3468Y1675D01* Y1829D01* X3478Y1839D01* X3435Y1849D02* X3410Y1874D01* Y1900D01* X3390Y1920D01* X3370D01* X3330Y1960D01* Y2100D01* X3325Y2108D01* X3316Y2109D01* X3310Y2101D01* Y2100D01* Y1950D01* X3360Y1900D01* X3463Y1923D02* X3460Y1926D01* Y2100D01* X3455Y2108D01* X3446Y2109D01* X3440Y2101D01* Y2100D01* Y2030D01* Y2029D01* X3434Y2021D01* X3425Y2022D01* X3420Y2030D01* Y2100D01* X3415Y2108D01* X3406Y2109D01* X3400Y2101D01* Y2100D01* Y2030D01* Y2029D01* X3394Y2021D01* X3385Y2022D01* X3380Y2030D01* Y2100D01* X3375Y2108D01* X3366Y2109D01* X3360Y2101D01* Y2100D01* Y1970D01* X3456Y1874D01* Y1682D01* X3430Y1656D01* Y1572D01* X3415Y1557D01* Y1536D01* X3497Y1632D02* X3479Y1614D01* Y1552D01* X3469Y1542D01* Y1484D01* X3402Y1417D01* X3111D01* X3102Y1408D01* Y1390D01* X3134Y1358D01* X3155D01* X3138Y1380D02* X3567D01* X3645Y1458D01* Y1605D01* X3669Y1621D02* X3646Y1644D01* X3658Y1652D02* X4033Y1277D01* X4424D01* Y1275D01* X4536Y1292D02* X4052D01* X3720Y1624D01* X3707D01* X3671Y1660D01* Y1758D01* X3694Y1781D01* Y1824D01* X3715Y1845D01* X3664D02* X3682Y1827D01* Y1786D01* X3658Y1762D01* Y1652D01* X3646Y1644D02* Y1777D01* X3657Y1788D01* X3700Y1685D02* X3764D01* X3969Y1480D01* Y1457D01* X4005Y1421D01* X4528D01* X4574Y1467D01* X4612Y1498D02* X4537D01* X4514Y1521D01* X4529Y1540D02* X4544Y1525D01* X4502Y1499D02* X4141D01* X4035Y1605D01* Y1644D01* X3933Y1746D01* X3945Y1825D02* X3939Y1819D01* Y1778D01* X4091Y1626D01* Y1574D01* X4144Y1521D01* X4514D01* X4529Y1540D02* X4285D01* X4238Y1587D01* X4223D01* X3896Y1914D01* X3737D01* X3718Y1895D01* X3807Y1860D02* X3850D01* X3851D01* X3859Y1854D01* X3858Y1845D01* X3850Y1840D01* X3830D01* X3822Y1835D01* X3821Y1826D01* X3829Y1820D01* X3830D01* X3850D01* X3890Y1780D01* Y1752D01* X3986Y1656D01* Y1546D01* X4110Y1481D02* X4482D01* X4502Y1499D02* X4517Y1484D01* X4600D01* X4631Y1453D01* Y1417D01* X4661Y1436D02* Y1449D01* X4612Y1498D01* X4585Y1593D02* X4772D01* X4793Y1572D01* Y1541D01* X4814Y1520D01* X4822Y1591D02* X4648Y1765D01* X4244D01* X4016Y1993D01* Y2025D01* X3962Y2034D02* Y1994D01* X4243Y1713D01* X4465D01* X4585Y1593D01* X4479Y1268D02* X4469Y1258D01* X3972D01* X3879Y1314D02* X3878Y1305D01* X3870Y1300D01* X3690D01* X3682Y1295D01* X3681Y1286D01* X3689Y1280D01* X3690D01* X3810D01* X3837Y1253D01* Y1207D01* X3879Y1314D02* X3871Y1320D01* X3870D01* X3816D01* X3657Y1479D01* Y1613D01* X3596Y1674D01* Y1823D01* X3575Y1844D01* X3577Y1784D02* Y1673D01* X3645Y1605D01* X3669Y1621D02* Y1561D01* X3972Y1258D01* X4159Y1390D02* X3986D01* X3725Y1651D01* X3699D01* X3683Y1667D01* Y1749D01* X3706Y1772D01* Y1800D01* X3721Y1815D01* X3782D01* X3802Y1835D01* X3723Y1788D02* X3750Y1761D01* Y1750D01* X3980Y1520D01* X4070D01* X4071D01* X4079Y1514D01* X4078Y1505D01* X4070Y1500D01* X4020D01* X4012Y1495D01* X4011Y1486D01* X4019Y1480D01* X4020D01* X4109D01* X4110Y1481D01* X4159Y1390D02* X4229Y1320D01* X7012Y876D02* X7045Y843D01* X7072Y863D02* X7105D01* Y876D02* X7072D01* X7045D02* X7012Y843D01* Y786D02* Y759D01* X7018Y753D01* X7038D01* X7045Y759D01* X7012Y739D02* X7018Y733D01* X7038D01* X7045Y739D01* Y786D01* X7072Y773D02* X7105D01* X7072Y786D02* X7105D01* X7125Y883D02* X7138Y896D01* Y843D01* X7118D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7212Y849D01* Y869D01* X7205Y876D01* X7172D01* Y896D01* X7212D01* X7232Y869D02* X7225Y863D01* Y849D01* X7232Y843D01* X7258D01* X7265Y849D01* Y863D01* X7258Y869D01* X7265Y876D01* Y889D01* X7258Y896D01* X7232D01* X7225Y889D01* Y876D01* X7232Y869D01* X7258D01* X7298Y856D02* X7305Y849D01* X7298Y843D01* X7292Y849D01* X7298Y856D01* X7332Y849D02* X7338Y843D01* X7365D01* X7372Y849D01* Y869D01* X7365Y876D01* X7332D01* Y896D01* X7372D01* X7418D02* X7392D01* X7385Y889D01* Y849D01* X7392Y843D01* X7418D01* X7425Y849D01* Y889D01* X7418Y896D01* X7425D02* X7385Y843D01* X7365Y806D02* X7338D01* X7332Y799D01* Y759D01* X7338Y753D01* X7365D01* X7372Y759D01* Y799D01* X7365Y806D01* X7372D02* X7332Y753D01* X7298Y766D02* X7292Y759D01* X7298Y753D01* X7305Y759D01* X7298Y766D01* X7265Y806D02* X7225Y753D01* X7232D02* X7258D01* X7265Y759D01* Y799D01* X7258Y806D01* X7232D01* X7225Y799D01* Y759D01* X7232Y753D01* X7512Y779D02* X7518Y786D01* X7525D01* X7532Y779D01* Y753D01* X7512D02* Y779D01* X7505Y786D01* X7498D01* X7492Y779D01* Y786D02* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y753D02* Y779D01* X7465Y786D02* X7458Y779D01* X7452Y786D01* X7445D01* X7438Y779D01* Y786D02* Y753D01* X7385D02* X7425Y806D01* X7418D02* X7425Y799D01* Y759D01* X7418Y753D01* X7392D01* X7385Y759D01* Y799D01* X7392Y806D01* X7418D01* X7438Y843D02* Y876D01* Y869D02* X7445Y876D01* X7452D01* X7458Y869D01* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y869D01* X7492Y843D02* Y876D01* Y869D02* X7498Y876D01* X7505D01* X7512Y869D01* X7518Y876D01* X7512Y869D02* Y843D01* X7532D02* Y869D01* X7525Y876D01* X7518D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7957D02* X7923Y1214D01* Y1181D02* X7957Y1214D01* X7937Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1328D02* Y1288D01* X7923Y1274D02* Y1241D01* X7937Y1341D02* X7930Y1348D01* Y1374D01* X7937Y1381D01* X7950D01* X7957Y1374D01* Y1348D01* X7950Y1341D01* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7957Y1394D02* X7903Y1434D01* X7910D02* X7950D01* X7957Y1428D01* Y1401D01* X7950Y1394D01* X7910D01* X7903Y1401D01* Y1428D01* X7910Y1434D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* X7957Y1501D02* X7903Y1541D01* Y1534D02* X7910Y1541D01* X7950D01* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7910D01* X7903Y1508D01* Y1534D01* X7993Y1588D02* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1561D01* Y1588D02* Y1561D01* Y1554D02* X7993Y1594D01* Y1588D02* X8000Y1594D01* X8040D01* X8047Y1588D01* Y1608D02* X8013D01* X8020D02* X8013Y1614D01* Y1621D01* X8020Y1628D01* X8013Y1634D01* X8020Y1628D02* X8047D01* X8013Y1634D02* Y1641D01* X8020Y1648D01* X8047D01* Y1661D02* X8013D01* X8020D02* X8013Y1668D01* Y1674D01* X8020Y1681D02* X8047D01* Y1701D02* X8020D01* X8013Y1694D01* Y1688D01* X8020Y1681D01* X8013Y1674D01* X7923D02* X7930Y1681D01* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D02* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7930Y1628D01* X7957D02* X7930D01* X7923Y1621D01* Y1614D01* X7930Y1608D01* X7923D02* X7957D01* Y1588D02* X7950Y1594D01* X7957Y1588D02* Y1561D01* Y1554D02* X7903Y1594D01* X7950D02* X7910D01* X7903Y1588D01* Y1561D01* X7910Y1554D01* X7950D01* X7957Y1561D01* X7993Y1541D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8040D01* X8047Y1534D01* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X7504Y2260D02* X7528Y2236D01* Y2033D01* X7465Y1970D01* X7464D01* Y1930D01* X7440Y1906D01* X7409D01* X7385Y1882D01* Y1849D01* X7363Y1827D01* X7302D01* X7150Y1675D01* X7106D01* X7068Y1713D01* Y1733D01* X7038Y1763D01* X7032Y1713D02* X7083Y1662D01* X7136D01* X7258Y1540D01* Y1512D01* X7118Y1219D02* X7161Y1262D01* Y1609D01* X7120Y1650D01* X7052D01* X7038Y1664D01* X6372D01* X6324Y1712D01* X5890D01* X5857Y1745D01* X5876Y1590D02* X5763Y1703D01* Y1802D01* X5780Y1819D01* X5886D01* X5892Y1813D01* X6801D01* X6851Y1763D01* X7038D01* X7032Y1713D02* X6842D01* X6836Y1719D01* X6567D01* X6522Y1764D01* X5890D01* X5888Y1766D01* X5846D01* X5825Y1745D01* X5790D02* X5839Y1696D01* X5879D01* X5912Y1663D01* X6083D01* X6228Y1518D01* X6490D01* X6526Y1482D01* Y1385D01* X6571Y1340D01* X6785Y1341D02* X6808Y1364D01* X6983D01* X6999Y1380D01* Y1391D01* X7025Y1417D01* X7033D01* X7059Y1443D01* Y1532D01* X7104Y1577D01* Y1629D02* X7038Y1563D01* X7014D01* X6998Y1547D01* Y1482D01* X6979Y1463D01* X6963D01* X6949Y1449D01* Y1431D01* X6931Y1413D01* X6908D01* X6882Y1387D01* X6893Y1841D02* X6915Y1819D01* X7066D01* X7077Y1808D01* X7134D01* X7174Y1848D01* Y1864D01* X7293Y1983D01* Y2779D01* X7225Y2847D01* Y2884D01* X7151Y2958D01* Y2987D01* X7128Y3010D01* X7104D01* Y3062D02* X7083Y3041D01* Y2917D01* X7246Y2754D01* Y1970D01* X7150Y1874D01* Y1843D01* X7128Y1821D01* X7100D01* X7058Y1863D01* X6990D01* X6960Y1893D01* X6989D02* X7003Y1907D01* X7044D01* X7079Y1942D01* X7148D01* X7138Y1954D02* X7079D01* X7068Y1965D01* X6989D01* X6986Y1968D01* X6938Y2007D02* X7058D01* X7099Y1966D01* X7130D01* X7193Y2029D01* X7228Y2022D02* Y2754D01* X7068Y2914D01* Y3059D01* X7119Y3110D01* Y3130D01* X7104Y3208D02* X7083Y3187D01* Y3094D01* X7052Y3063D01* Y2913D01* X7210Y2755D01* Y2026D01* X7138Y1954D01* X7148Y1942D02* X7228Y2022D01* X7193Y2029D02* Y2754D01* X7036Y2911D01* Y3279D01* X7084Y3327D01* X7119D01* Y3275D02* X7312Y3082D01* Y1966D01* X7142Y1796D01* X7052D01* X7041Y1807D01* X6897D01* X6871Y1833D01* Y1848D01* X6894Y1871D01* Y1948D01* X6897Y1951D01* X6888Y2044D02* X6907Y2063D01* X7037D01* X7074Y2100D01* X7138D01* X7129Y2112D02* X7058D01* X7053Y2107D01* X7009D01* X6989Y2087D01* X6985Y2026D02* X6992Y2019D01* X7040D01* X7067Y2046D01* Y2066D01* X7089Y2088D01* X7150D01* X7176Y2114D01* X7138Y2100D02* X7158Y2120D01* X7176Y2114D02* Y2754D01* X7021Y2909D01* Y3401D01* X7057Y3437D01* X7111D01* X7120Y3428D02* X7111Y3437D01* X7097Y3459D02* X7054D01* X7083Y3513D02* X7097D01* X7088Y3543D02* X7104D01* X7083Y3513D02* X6991Y3421D01* Y2830D01* X7008Y2813D01* Y2651D01* X7141Y2518D01* Y2124D01* X7129Y2112D02* X7141Y2124D01* X7158Y2120D02* Y2628D01* X7116Y2671D01* X7038D01* X7025Y2683D01* Y2846D01* X7006Y2865D01* Y3411D01* X7054Y3459D01* X7088Y3543D02* X6977Y3432D01* Y3076D01* X6949Y3048D01* Y2824D01* X6992Y2781D01* Y2646D01* X7083Y2555D01* Y2164D01* X7038Y2119D01* X6936D01* X6935Y2118D01* Y2164D02* X7035D01* X7063Y2192D01* Y2554D01* X6976Y2641D01* Y2777D01* X6935Y2818D01* Y3061D01* X6963Y3089D01* Y3450D01* X7034Y3521D01* Y3627D01* X7119Y3712D01* X7126Y3679D02* X7145Y3698D01* Y3783D01* X7116Y3812D01* X7091D01* X7129Y3831D02* X7144Y3846D01* Y3870D01* X7129Y3831D02* X7080D01* X6967Y3718D01* Y3567D01* X6908Y3508D01* Y3324D01* X6883Y3299D01* Y3054D01* X6894Y3043D01* Y2782D01* X6906Y2770D01* Y2561D01* X6992Y2475D01* Y2372D01* X6986Y2366D01* Y2277D01* X6983Y2239D02* X7004Y2260D01* Y2528D01* X6918Y2614D01* Y2780D01* X6907Y2791D01* Y3067D01* X6899Y3075D01* Y3292D01* X6924Y3317D01* Y3485D01* X6990Y3551D01* Y3711D01* X7091Y3812D01* X7104Y3738D02* X7012Y3646D01* Y3537D01* X6949Y3474D01* Y3101D01* X6921Y3073D01* Y2805D01* X6960Y2766D01* Y2595D01* X7046Y2509D01* Y2252D01* X6988Y2194D01* X6909Y2341D02* X6904Y2346D01* Y2466D01* X6892Y2452D02* Y2332D01* X6900Y2324D01* X6945D01* X6958Y2337D01* X6939Y2350D02* X6949Y2360D01* Y2466D01* X6862Y2553D01* Y2837D01* X6844Y2855D01* Y3044D01* X6868Y3068D01* Y3307D01* X6892Y3331D01* Y3530D01* X6944Y3582D01* Y3725D01* X7077Y3858D01* X7119D01* X7144Y3870D02* X7130Y3884D01* X7104D01* X7115Y3906D02* X7119Y3910D01* X7104Y4058D02* X7025D01* X7020Y4085D02* X7118D01* X7020D02* X6774Y3839D01* Y3590D01* X6698Y3514D01* Y2769D01* X6747Y2720D01* Y2535D01* X6799Y2483D01* Y2279D01* X6829Y2249D01* X6850Y2236D02* X6848Y2238D01* Y2458D01* X6760Y2546D01* Y2719D01* X6783Y2742D01* Y3057D01* X6753Y3087D01* Y3497D01* X6803Y3547D01* Y3836D01* X7025Y4058D01* X7115Y4030D02* X7027D01* X6829Y3832D01* Y3294D01* X6837Y3286D01* Y3091D01* X6803Y3057D01* Y2541D01* X6892Y2452D01* X6904Y2466D02* X6815Y2555D01* Y2712D01* X6824Y2721D01* Y3050D01* X6853Y3079D01* Y3315D01* X6871Y3333D01* Y3549D01* X6923Y3601D01* Y3735D01* X7094Y3906D01* X7115D01* X8000Y4422D02* X8013D01* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8040Y4489D02* X8047Y4495D01* X8040Y4502D01* X8033Y4495D01* X8040Y4489D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4269D02* Y4302D01* X7937D02* Y4269D01* X7957Y4242D02* X7923Y4209D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4315D02* Y4355D01* Y4375D02* Y4402D01* X7950Y4409D01* X7910D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* X7937Y4369D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4429D02* Y4455D01* X7950Y4489D02* X7943Y4495D01* X7950Y4502D01* X7957Y4495D01* X7950Y4489D01* X7957Y4455D02* X7950Y4462D01* X7910D01* X7903Y4455D01* Y4462D02* X7957Y4422D01* Y4429D02* X7950Y4422D01* X7910D01* X7903Y4429D01* Y4455D01* X7957Y4529D02* X7903Y4569D01* X7910D02* X7950D01* X7957Y4562D01* Y4535D01* X7950Y4529D01* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* Y4622D02* X7903Y4615D01* Y4589D01* X7910Y4582D01* X7950D01* X7957Y4589D01* Y4615D01* X7950Y4622D01* X7910D01* X7903D02* X7957Y4582D01* X7993Y4569D02* Y4529D01* X8013D01* Y4562D01* X8020Y4569D01* X8040D01* X8047Y4562D01* Y4535D01* X8040Y4529D01* X8013Y4702D02* X8020Y4709D01* X8013Y4715D01* Y4722D01* X8020Y4729D01* X8047D01* Y4709D02* X8020D01* X8013Y4702D02* Y4695D01* X8020Y4689D01* X8013D02* X8047D01* Y4675D02* X8020D01* X8013Y4669D01* Y4662D01* X8020Y4655D01* X8047D02* X8020D01* X8013Y4649D01* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4582D02* X7993Y4622D01* X8000D02* X8040D01* X8047Y4615D01* Y4589D01* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* X8000Y4622D01* X7957Y4635D02* X7923D01* X7930D02* X7923Y4642D01* Y4649D01* X7930Y4655D01* X7923Y4662D01* X7930Y4655D02* X7957D01* X7923Y4662D02* Y4669D01* X7930Y4675D01* X7957D01* Y4689D02* X7923D01* X7930D02* X7923Y4695D01* Y4702D01* X7930Y4709D01* X7923Y4715D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X2148Y4773D02* D03* X2092Y4767D02* D03* X2014Y4651D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X1950Y4222D02* D03* Y4156D02* D03* X2018Y4045D02* D03* X2061Y4142D02* D03* X2124Y4218D02* D03* X2119Y4359D02* D03* X2223Y4425D02* D03* X2580Y4311D02* D03* X2511Y4345D02* D03* X2514Y4265D02* D03* X2581Y4227D02* D03* X2683Y4228D02* D03* X2684Y4304D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2786Y4848D02* D03* X2853Y4849D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3137D02* D03* X3199Y4847D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3361Y4671D02* D03* X3331Y4670D02* D03* X3286Y4659D02* D03* X3250Y4646D02* D03* X3236Y4673D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3034Y4657D02* D03* X3048Y4538D02* D03* Y4498D02* D03* X3050Y4328D02* D03* X3112Y4199D02* D03* X3109Y4165D02* D03* X3202D02* D03* Y4213D02* D03* X3243Y4238D02* D03* X3251Y4089D02* D03* X3297Y4095D02* D03* X3347Y3943D02* D03* X3286Y3939D02* D03* X3244Y3894D02* D03* X3246Y3815D02* D03* X3267Y3788D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X3191Y3949D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X2930Y3929D02* D03* X2949Y3901D02* D03* X3003Y3945D02* D03* X3005Y3995D02* D03* X2997Y4044D02* D03* X2954Y4046D02* D03* X2952Y3996D02* D03* X2945Y4089D02* D03* X2969Y4108D02* D03* X3025Y4130D02* D03* X2934Y4231D02* D03* X2902Y4301D02* D03* X2871Y4302D02* D03* X2883Y4465D02* D03* X2940Y4479D02* D03* X2906Y4532D02* D03* X2873D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X2508Y4117D02* D03* X2608Y4118D02* D03* X2658Y4119D02* D03* X2689Y4063D02* D03* X2736Y4010D02* D03* X2804Y4013D02* D03* X2871Y3952D02* D03* X2870Y3892D02* D03* X2801Y3891D02* D03* X2743Y3892D02* D03* X2706Y3773D02* D03* X2732Y3750D02* D03* X2764Y3721D02* D03* X2733Y3657D02* D03* X2778Y3579D02* D03* X2819Y3537D02* D03* X2818Y3477D02* D03* X2819Y3507D02* D03* X2745Y3506D02* D03* X2709Y3547D02* D03* X2746Y3428D02* D03* X2745Y3389D02* D03* X2709D02* D03* X2710Y3347D02* D03* X2666Y3349D02* D03* X2667Y3388D02* D03* X2628Y3387D02* D03* X2629Y3430D02* D03* Y3468D02* D03* X2664D02* D03* X2667Y3430D02* D03* X2706Y3467D02* D03* X2672Y3506D02* D03* X2631Y3510D02* D03* X2556Y3504D02* D03* X2592Y3505D02* D03* X2587Y3467D02* D03* X2556Y3464D02* D03* X2587Y3429D02* D03* X2556Y3425D02* D03* X2550Y3390D02* D03* X2514Y3387D02* D03* Y3424D02* D03* X2515Y3462D02* D03* X2435Y3464D02* D03* X2471Y3463D02* D03* X2472Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2472D02* D03* X2357Y3308D02* D03* X2391Y3311D02* D03* Y3345D02* D03* X2357D02* D03* Y3424D02* D03* X2391Y3428D02* D03* Y3391D02* D03* X2356Y3388D02* D03* X2311Y3389D02* D03* X2277Y3349D02* D03* X2276Y3311D02* D03* X2312Y3272D02* D03* X2356Y3265D02* D03* X2354Y3231D02* D03* X2391Y3265D02* D03* X2435D02* D03* X2433Y3231D02* D03* X2390Y3193D02* D03* X2354Y3153D02* D03* Y3114D02* D03* X2391Y3115D02* D03* X2376Y3064D02* D03* X2311Y3114D02* D03* X2274Y3153D02* D03* X2119Y3364D02* D03* Y3431D02* D03* X2118Y3483D02* D03* X2117Y3518D02* D03* X2119Y3641D02* D03* X2272Y3631D02* D03* X2333Y3637D02* D03* X2318Y3578D02* D03* X2273Y3547D02* D03* X2278Y3463D02* D03* X2312Y3469D02* D03* X2357Y3466D02* D03* X2390Y3468D02* D03* Y3507D02* D03* X2357Y3502D02* D03* X2433Y3507D02* D03* X2472D02* D03* X2470Y3545D02* D03* X2512Y3547D02* D03* X2550Y3548D02* D03* X2551Y3582D02* D03* X2485Y3626D02* D03* X2454Y3638D02* D03* X2396D02* D03* X1729Y3706D02* D03* X1777Y3745D02* D03* X1809Y3776D02* D03* X1926Y3896D02* D03* X2036Y3887D02* D03* X2273Y3962D02* D03* X2307Y3934D02* D03* X2335Y3963D02* D03* X2360Y3934D02* D03* X2397Y3955D02* D03* X2525Y3938D02* D03* X2481Y3776D02* D03* X2532D02* D03* X2555Y3742D02* D03* X2509Y3719D02* D03* X2612Y3651D02* D03* X2610Y3709D02* D03* X2615Y3742D02* D03* X2584Y3773D02* D03* X2638Y3770D02* D03* X2674Y3743D02* D03* X2822Y3779D02* D03* X2855Y3758D02* D03* X2882Y3779D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3047D02* D03* X3093Y3747D02* D03* X3133Y3744D02* D03* X3095Y3684D02* D03* X3092Y3640D02* D03* X3047D02* D03* Y3684D02* D03* X2998D02* D03* X2992Y3640D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2896Y3658D02* D03* X2892Y3628D02* D03* X2965Y3492D02* D03* X3007Y3495D02* D03* X2994Y3531D02* D03* X3043Y3494D02* D03* X3051Y3443D02* D03* X3009D02* D03* X3097Y3485D02* D03* X3089Y3443D02* D03* X3140Y3442D02* D03* X3148Y3485D02* D03* X3196Y3487D02* D03* X3236Y3441D02* D03* X3248Y3486D02* D03* X3293D02* D03* X3288Y3442D02* D03* X3354D02* D03* X3396D02* D03* X3387Y3489D02* D03* X3440Y3484D02* D03* X3442Y3442D02* D03* X3491Y3440D02* D03* X3393Y3343D02* D03* X3351D02* D03* X3293Y3339D02* D03* X3247Y3340D02* D03* X3287Y3293D02* D03* X3245Y3292D02* D03* X3196Y3296D02* D03* X3146Y3286D02* D03* X3174Y3231D02* D03* X3202Y3217D02* D03* X3159Y3138D02* D03* X3119Y2969D02* D03* X3098Y3029D02* D03* X3123Y3046D02* D03* X3053Y3031D02* D03* X2985Y3039D02* D03* X2947Y2928D02* D03* X2875Y2885D02* D03* Y2834D02* D03* X2829Y2859D02* D03* X2875Y2785D02* D03* X2921Y2779D02* D03* X2925Y2735D02* D03* X2872Y2732D02* D03* X2922Y2682D02* D03* X2974Y2686D02* D03* X2977Y2732D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X2971Y2585D02* D03* X2875Y2636D02* D03* X2823Y2634D02* D03* X2824Y2685D02* D03* X2761Y2681D02* D03* X2699Y2671D02* D03* X2599Y2694D02* D03* X2600Y2658D02* D03* X2598Y2623D02* D03* X2599Y2534D02* D03* X2603Y2472D02* D03* X2601Y2427D02* D03* X2604Y2393D02* D03* X2671Y2248D02* D03* X2670Y2280D02* D03* X2671Y2311D02* D03* X2673Y2342D02* D03* X2693Y2387D02* D03* X2691Y2462D02* D03* X2703Y2522D02* D03* X2704Y2555D02* D03* X2501Y2225D02* D03* X2479Y2248D02* D03* X2386Y2243D02* D03* X2385Y2187D02* D03* X2332Y2184D02* D03* X2303Y2180D02* D03* X2280Y2212D02* D03* X2277Y2249D02* D03* X2212D02* D03* X2304Y2311D02* D03* X2305Y2356D02* D03* X2329Y2405D02* D03* X2225Y2427D02* D03* X2312Y2507D02* D03* X2381Y2474D02* D03* X2428Y2482D02* D03* X2449Y2441D02* D03* X2478Y2422D02* D03* X2504Y2399D02* D03* X2459Y2378D02* D03* X2458Y2345D02* D03* Y2311D02* D03* X2495Y2284D02* D03* X2503Y2314D02* D03* Y2344D02* D03* X2481Y2482D02* D03* X2482Y2531D02* D03* X2444Y2530D02* D03* X2447Y2564D02* D03* X2455Y2593D02* D03* X2486Y2681D02* D03* X2494Y2639D02* D03* X2461Y2637D02* D03* X2427Y2639D02* D03* X2418Y2681D02* D03* X2396Y2588D02* D03* X2363Y2589D02* D03* X2350Y2617D02* D03* X2351Y2680D02* D03* X2281Y2660D02* D03* X2219Y2592D02* D03* X2181D02* D03* X2087Y2585D02* D03* X2093Y2676D02* D03* X2236Y2788D02* D03* X2178Y2786D02* D03* X2202Y2890D02* D03* X2261Y2894D02* D03* X2260Y2965D02* D03* X2224Y3044D02* D03* X2190Y3009D02* D03* X2131Y3010D02* D03* X2102Y2896D02* D03* X2104Y2818D02* D03* X2026Y2841D02* D03* X2039Y2790D02* D03* X1991Y2780D02* D03* X1861Y2625D02* D03* X1860Y2657D02* D03* X1832Y2771D02* D03* X1784Y2778D02* D03* X1788Y2820D02* D03* X1829Y2822D02* D03* X1857Y2939D02* D03* X1689Y2381D02* D03* X1738Y2507D02* D03* X1773Y2547D02* D03* X1825Y2540D02* D03* X1901Y2550D02* D03* X1902Y2484D02* D03* X1904Y2445D02* D03* X1902Y2413D02* D03* X1868Y2348D02* D03* X1906Y2350D02* D03* X1903Y2312D02* D03* X1894Y2250D02* D03* X1896Y2219D02* D03* X1937Y2156D02* D03* X1973Y2094D02* D03* X1902Y2092D02* D03* X2013Y2094D02* D03* X2032Y2183D02* D03* X2030Y2222D02* D03* X1999D02* D03* X1998Y2292D02* D03* X1990Y2335D02* D03* X2080Y2428D02* D03* X2084Y2309D02* D03* X2086Y2252D02* D03* X2154Y2211D02* D03* X2213Y2184D02* D03* X2166Y2082D02* D03* X2127Y2083D02* D03* X2280Y2095D02* D03* X2327Y2096D02* D03* X2377Y2061D02* D03* X2374Y2095D02* D03* X2413Y2093D02* D03* X2505Y2091D02* D03* X2440Y2024D02* D03* X2409Y1991D02* D03* X2446Y1961D02* D03* X2327Y1830D02* D03* X2265Y1915D02* D03* X2201Y1916D02* D03* X2188Y1812D02* D03* X2187Y1762D02* D03* Y1712D02* D03* Y1662D02* D03* X2130Y1679D02* D03* X2188Y1612D02* D03* X2187Y1562D02* D03* Y1512D02* D03* X2168Y1466D02* D03* X2314Y1462D02* D03* X2315Y1413D02* D03* X2337Y1362D02* D03* X2314Y1312D02* D03* X2326Y1277D02* D03* X2315Y1193D02* D03* X2164Y1157D02* D03* X2188Y1243D02* D03* X2091Y1245D02* D03* X2186Y1283D02* D03* X2189Y1345D02* D03* X2187Y1381D02* D03* X2013Y1332D02* D03* X1970Y1398D02* D03* X2015Y1467D02* D03* X1978Y1562D02* D03* X2051Y1736D02* D03* X2091Y1756D02* D03* X2093Y1834D02* D03* X2027Y1915D02* D03* X1929Y1929D02* D03* X1877Y1915D02* D03* X1825Y1920D02* D03* X1854Y1876D02* D03* X1878Y1848D02* D03* X1646Y1817D02* D03* X1692Y1826D02* D03* X1698Y1788D02* D03* X1781Y1918D02* D03* X1677Y2025D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2473Y1462D02* D03* X2471Y1512D02* D03* X2468Y1562D02* D03* X2467Y1612D02* D03* X2469Y1661D02* D03* X2470Y1712D02* D03* X2471Y1762D02* D03* X2518Y1841D02* D03* X2564Y1816D02* D03* X2625Y1862D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2876Y1831D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2735Y1752D02* D03* X2767Y1679D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2910Y1671D02* D03* X2861Y1669D02* D03* X3083Y1892D02* D03* X3126Y1887D02* D03* X3121Y1938D02* D03* X3177Y1937D02* D03* X3173Y1983D02* D03* X3227D02* D03* X3226Y2040D02* D03* X3224Y2109D02* D03* X3268Y2142D02* D03* X3272Y2188D02* D03* X3322D02* D03* X3318Y2142D02* D03* X3316Y2244D02* D03* X3322Y2288D02* D03* X3318Y2342D02* D03* X3268D02* D03* X3272Y2288D02* D03* X3266Y2244D02* D03* X3231Y2239D02* D03* X3130Y2184D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3057Y2297D02* D03* X3067Y2343D02* D03* Y2393D02* D03* Y2443D02* D03* Y2493D02* D03* X3093Y2535D02* D03* X3064Y2544D02* D03* X3080Y2583D02* D03* X3122Y2642D02* D03* X3126Y2687D02* D03* X3132Y2728D02* D03* X3175Y2726D02* D03* X3219Y2782D02* D03* X3277Y2733D02* D03* X3276Y2684D02* D03* X3229Y2682D02* D03* X3279Y2639D02* D03* X3324Y2627D02* D03* X3335Y2586D02* D03* X3266Y2532D02* D03* X3221Y2530D02* D03* X3232Y2592D02* D03* X3148Y2533D02* D03* X3150Y2501D02* D03* X3176Y2516D02* D03* Y2486D02* D03* X3161Y2460D02* D03* X3278Y2839D02* D03* X3291Y2882D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3426Y2827D02* D03* X3451Y2845D02* D03* X3476Y2828D02* D03* X3531Y2784D02* D03* X3530Y2737D02* D03* X3525Y2697D02* D03* X3562Y2688D02* D03* X3379Y2685D02* D03* X3380Y2730D02* D03* X3425Y2736D02* D03* X3428Y2690D02* D03* X3421Y2640D02* D03* X3379Y2633D02* D03* X3475Y2645D02* D03* X3472Y2602D02* D03* X3533Y2539D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3413Y2467D02* D03* X3478Y2430D02* D03* X3422Y2188D02* D03* X3418Y2142D02* D03* X3368D02* D03* X3372Y2188D02* D03* Y2288D02* D03* X3366Y2244D02* D03* X3416D02* D03* X3422Y2288D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3472Y2188D02* D03* X3468Y2142D02* D03* X3544Y2137D02* D03* X3577Y2141D02* D03* X3633Y2143D02* D03* Y2093D02* D03* X3667Y1993D02* D03* X3675Y1935D02* D03* X3583Y1943D02* D03* X3633D02* D03* X3627Y1893D02* D03* X3623Y1831D02* D03* X3621Y1789D02* D03* X3717Y1743D02* D03* X3824Y1736D02* D03* X3867Y1743D02* D03* X3917Y1693D02* D03* X4008Y1759D02* D03* X3987Y1781D02* D03* X3965Y1802D02* D03* X3767Y1843D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3812Y1993D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X3866D02* D03* X3817D02* D03* X3767D02* D03* X3817Y2193D02* D03* X3767D02* D03* X3725Y2247D02* D03* X3817Y2348D02* D03* X3667Y2343D02* D03* X3571Y2342D02* D03* X3627Y2411D02* D03* X3632Y2439D02* D03* X3573Y2436D02* D03* X3552Y2459D02* D03* X3633Y2493D02* D03* X3614Y2524D02* D03* X3583Y2539D02* D03* X3625Y2597D02* D03* X3623Y2635D02* D03* X3674Y2733D02* D03* X3767Y2727D02* D03* X3817Y2543D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X4303Y3665D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4568Y3669D02* D03* X4559Y3700D02* D03* Y4050D02* D03* X4560Y4387D02* D03* X4274Y4020D02* D03* X4266Y3852D02* D03* X4196Y3951D02* D03* X4126Y3848D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X3909Y3658D02* D03* X3941Y3623D02* D03* X3899Y3608D02* D03* X3955Y3558D02* D03* X3993Y3546D02* D03* X3995Y3605D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3798Y3772D02* D03* X3827Y3844D02* D03* X3794Y3846D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3693Y3993D02* D03* X3698Y4048D02* D03* X3751D02* D03* X3799Y4006D02* D03* X3831D02* D03* X3879Y3930D02* D03* X3909Y3933D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X4108Y4072D02* D03* X4081Y4187D02* D03* X3371Y3139D02* D03* X3423Y3205D02* D03* X3469D02* D03* X3512D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3441Y3344D02* D03* X3446Y3386D02* D03* X3393D02* D03* X3350Y3387D02* D03* X3290Y3390D02* D03* X3245D02* D03* X3197Y3386D02* D03* X3192Y3340D02* D03* X3144D02* D03* X3113Y3242D02* D03* X3092Y3220D02* D03* X3061Y3219D02* D03* X3003Y3163D02* D03* X2955Y3210D02* D03* X2994Y3286D02* D03* X2787Y3115D02* D03* X2786Y3158D02* D03* X2822Y3199D02* D03* X2805Y3229D02* D03* X2812Y3271D02* D03* X2806Y3313D02* D03* X2899Y3410D02* D03* X2905Y3440D02* D03* X2899Y3471D02* D03* X2898Y3505D02* D03* X2901Y3537D02* D03* X2947Y3585D02* D03* X2996D02* D03* X3047D02* D03* X3096D02* D03* X3162Y3641D02* D03* X3185Y3596D02* D03* X3209Y3622D02* D03* X3251Y3621D02* D03* X3282Y3622D02* D03* X3344Y3602D02* D03* X3392Y3604D02* D03* X3441D02* D03* X3445Y3670D02* D03* Y3719D02* D03* X3395D02* D03* X3394Y3670D02* D03* X3345Y3672D02* D03* X3342Y3719D02* D03* X3288D02* D03* X3206Y3720D02* D03* X3363Y3794D02* D03* X3425Y3798D02* D03* X3486Y3791D02* D03* X3523Y3765D02* D03* X3588Y3697D02* D03* X3647Y3640D02* D03* X3740Y3607D02* D03* X3703Y3553D02* D03* X3648Y3541D02* D03* Y3485D02* D03* X3647Y3441D02* D03* X3643Y3387D02* D03* X3646Y3341D02* D03* X3695D02* D03* X3747Y3340D02* D03* X3748Y3392D02* D03* X3698Y3396D02* D03* Y3441D02* D03* X3692Y3490D02* D03* X3748Y3486D02* D03* X3743Y3440D02* D03* X3792Y3445D02* D03* X3791Y3401D02* D03* X3855Y3367D02* D03* X3920Y3415D02* D03* X4001Y3383D02* D03* X3998Y3465D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4377Y3142D02* D03* X4369Y3218D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4701Y2806D02* D03* X4925Y2769D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X4800Y2223D02* D03* X4772D02* D03* X4743D02* D03* X4700D02* D03* X4672D02* D03* X4643D02* D03* X4657Y2350D02* D03* X4705D02* D03* X4755Y2365D02* D03* X4800D02* D03* X4634Y2494D02* D03* X4585D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4282D02* D03* X4234D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4123Y2223D02* D03* X4153D02* D03* X4181D02* D03* X4223D02* D03* X4253D02* D03* X4281D02* D03* X4401Y2203D02* D03* X4419Y2229D02* D03* X4467D02* D03* X4547Y2225D02* D03* X4595D02* D03* X4604Y2159D02* D03* X4643Y2108D02* D03* X4671D02* D03* X4700D02* D03* X4743D02* D03* X4771D02* D03* X4800D02* D03* X4835Y2014D02* D03* X4804D02* D03* X4771D02* D03* X4646D02* D03* X4615D02* D03* X4725Y1905D02* D03* X4680D02* D03* X4635D02* D03* X4491Y1871D02* D03* X4499Y1740D02* D03* X4390Y1625D02* D03* X4388Y1563D02* D03* X4356D02* D03* X4325D02* D03* X4294D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4420D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3310Y1242D02* D03* X3278Y1239D02* D03* X3246Y1238D02* D03* X3215Y1235D02* D03* X3089Y1234D02* D03* X2994Y1233D02* D03* X2931Y1243D02* D03* X2868Y1238D02* D03* X2837Y1237D02* D03* X2774Y1240D02* D03* X2742Y1236D02* D03* X2711Y1237D02* D03* X2647Y1189D02* D03* X2596Y1288D02* D03* X2558Y1214D02* D03* X2476Y1210D02* D03* X2480Y1262D02* D03* X2472Y1312D02* D03* X2468Y1362D02* D03* X2471Y1412D02* D03* X2537Y1427D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2764Y1441D02* D03* X2853Y1443D02* D03* X3010D02* D03* X3105Y1446D02* D03* X3231D02* D03* X3205Y1582D02* D03* X3229Y1604D02* D03* X3151Y1667D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3275Y1735D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3390Y1579D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3423Y1697D02* D03* X3489Y1738D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3383Y1893D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3499Y2030D02* D03* X3434Y1990D02* D03* X3404Y1986D02* D03* X2463Y2790D02* D03* X2497D02* D03* X2522Y2857D02* D03* X2500Y2899D02* D03* X2473Y2873D02* D03* X2441Y2903D02* D03* X2411Y2885D02* D03* X2397Y2982D02* D03* X2445Y2980D02* D03* X2468Y3048D02* D03* X2530Y3047D02* D03* X2561Y3053D02* D03* X2546Y3079D02* D03* X2549Y3114D02* D03* X2470D02* D03* X2471Y3154D02* D03* X2587Y3152D02* D03* X2629D02* D03* Y3114D02* D03* X2617Y3067D02* D03* X2672Y3069D02* D03* Y3111D02* D03* X2673Y3147D02* D03* X2672Y3191D02* D03* Y3226D02* D03* X2629Y3192D02* D03* Y3227D02* D03* X2591D02* D03* X2589Y3194D02* D03* X2547Y3191D02* D03* X2514Y3236D02* D03* X2472Y3230D02* D03* Y3263D02* D03* Y3308D02* D03* X2438Y3307D02* D03* Y3344D02* D03* X2472Y3345D02* D03* X2514D02* D03* Y3308D02* D03* X2590Y3351D02* D03* X2589Y3308D02* D03* X2588Y3272D02* D03* X2630Y3271D02* D03* X2672Y3269D02* D03* X2714Y3268D02* D03* X2710Y3304D02* D03* X2746Y3310D02* D03* X2748Y3268D02* D03* X2742Y3226D02* D03* Y3188D02* D03* X2743Y3151D02* D03* Y3109D02* D03* X2745Y3074D02* D03* X2718Y2979D02* D03* X2636Y2978D02* D03* X2585Y2979D02* D03* X2555Y2912D02* D03* X2570Y2867D02* D03* X2698Y2784D02* D03* X2757D02* D03* X2788D02* D03* X2825D02* D03* X2975Y2835D02* D03* X3007Y2841D02* D03* X3030Y2878D02* D03* X3060Y2855D02* D03* X3062Y2786D02* D03* X3103Y2845D02* D03* X3121Y2869D02* D03* X3192Y2852D02* D03* X3235Y2905D02* D03* X3278Y2961D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3413D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3688Y3027D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3590Y3440D02* D03* X3545D02* D03* Y3485D02* D03* X3591Y3497D02* D03* Y3548D02* D03* Y3589D02* D03* X3548Y3587D02* D03* X3542Y3554D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3551Y3799D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X6072Y3954D02* D03* X5974Y4010D02* D03* X5928Y3954D02* D03* X5838Y3847D02* D03* X5946Y3776D02* D03* X5975Y3810D02* D03* X6025D02* D03* X6079Y3732D02* D03* X6067Y3673D02* D03* X6019Y3664D02* D03* X5942Y3676D02* D03* X5879Y3689D02* D03* X5900Y3596D02* D03* X5948Y3565D02* D03* X5978Y3581D02* D03* X6123Y3420D02* D03* X6131Y3365D02* D03* X6099Y3154D02* D03* X6037Y3150D02* D03* X6054Y3359D02* D03* X6057Y3296D02* D03* X5947Y3258D02* D03* Y3300D02* D03* X5858Y3325D02* D03* X5827Y3128D02* D03* X5768Y3258D02* D03* Y3300D02* D03* X5770Y3389D02* D03* X5815Y3444D02* D03* X5763Y3498D02* D03* X5850Y3444D02* D03* X5881Y3442D02* D03* X5936Y3447D02* D03* X5979Y3472D02* D03* X6022Y3470D02* D03* X5692Y3231D02* D03* X5618D02* D03* X5542Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5378Y3300D02* D03* Y3258D02* D03* X5252Y3262D02* D03* X5175Y3207D02* D03* X5049Y3322D02* D03* X5091D02* D03* X5175Y3351D02* D03* X5252Y3336D02* D03* X5291Y3404D02* D03* X5275Y2769D02* D03* X5215Y2605D02* D03* X5450D02* D03* X5600D02* D03* X5690D02* D03* X5645D02* D03* X5625Y2769D02* D03* X5975D02* D03* X6182Y2787D02* D03* X6296Y2634D02* D03* X6363D02* D03* X6320Y2560D02* D03* X6280D02* D03* Y2520D02* D03* X6320D02* D03* Y2480D02* D03* X6280D02* D03* X6240D02* D03* Y2520D02* D03* Y2560D02* D03* X6195Y2480D02* D03* X6150D02* D03* X6100Y2560D02* D03* Y2520D02* D03* Y2480D02* D03* X6050D02* D03* Y2520D02* D03* Y2560D02* D03* X5975Y2436D02* D03* Y2390D02* D03* X5921D02* D03* Y2336D02* D03* Y2290D02* D03* X5975Y2336D02* D03* Y2290D02* D03* X6021D02* D03* Y2236D02* D03* Y2190D02* D03* X6075D02* D03* Y2236D02* D03* Y2336D02* D03* X6175D02* D03* Y2290D02* D03* X6221D02* D03* X6275D02* D03* X6321D02* D03* X6375D02* D03* Y2390D02* D03* X6370Y2480D02* D03* X6410D02* D03* X6475Y2436D02* D03* X6450Y2500D02* D03* Y2540D02* D03* X6500D02* D03* X6450Y2580D02* D03* Y2620D02* D03* X6760Y2877D02* D03* X6722D02* D03* X6671Y2876D02* D03* X6621Y2875D02* D03* Y2990D02* D03* Y3030D02* D03* X6671D02* D03* Y2991D02* D03* X6570Y3105D02* D03* X6620D02* D03* X6670D02* D03* X6725D02* D03* X6720Y2991D02* D03* X6719Y3030D02* D03* X6762D02* D03* X6761Y2991D02* D03* Y2955D02* D03* Y2917D02* D03* X6865Y2865D02* D03* X6970D02* D03* X6939Y2698D02* D03* X6885Y2696D02* D03* X6837Y2695D02* D03* X6781Y2693D02* D03* X6726Y2694D02* D03* X6672Y2702D02* D03* X6659Y2658D02* D03* X6672Y2573D02* D03* X6726Y2567D02* D03* X6781Y2565D02* D03* X6837D02* D03* X6885Y2564D02* D03* X6934D02* D03* X7018Y2569D02* D03* X7104Y2597D02* D03* Y2649D02* D03* X7119Y2623D02* D03* Y2571D02* D03* X7109Y2510D02* D03* X7120Y2482D02* D03* X7109Y2454D02* D03* X7119Y2425D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7118Y1219D02* D03* X7089Y1162D02* D03* Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X5018Y1446D02* D03* X5049Y1447D02* D03* X5081Y1439D02* D03* X5141Y1510D02* D03* X5253Y1622D02* D03* Y1697D02* D03* Y1772D02* D03* X5255Y1830D02* D03* X5220D02* D03* Y1865D02* D03* X5255D02* D03* X5270Y1910D02* D03* X5360D02* D03* Y1865D02* D03* X5150D02* D03* X5185D02* D03* Y1830D02* D03* X5150D02* D03* X5044Y1740D02* D03* X4945Y1905D02* D03* X4905D02* D03* X4860D02* D03* X4815D02* D03* X4770D02* D03* X4682Y1572D02* D03* X4771Y1564D02* D03* X4874Y1572D02* D03* X4929Y1565D02* D03* X4860Y1446D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5204Y1213D02* D03* X5211Y1277D02* D03* X5262Y1146D02* D03* X5344Y1139D02* D03* X5392D02* D03* X5344Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* X5736Y1263D02* D03* X5783D02* D03* Y1139D02* D03* X5736D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* Y1436D02* D03* X6275D02* D03* X6321Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121D02* D03* X6021Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X5921Y1390D02* D03* Y1436D02* D03* Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X6021D02* D03* Y1536D02* D03* X5975Y1590D02* D03* X6021D02* D03* Y1636D02* D03* Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* Y1740D02* D03* Y1786D02* D03* X6925D02* D03* X6971D02* D03* Y1740D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X7025D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* Y2186D02* D03* Y2140D02* D03* X6971D02* D03* X6925Y2086D02* D03* Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X7025D02* D03* Y2340D02* D03* Y2386D02* D03* Y2440D02* D03* X6971D02* D03* X6925D02* D03* Y2386D02* D03* X6971D02* D03* X7104Y2357D02* D03* X7119Y2331D02* D03* X7104Y2305D02* D03* X7119Y2279D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7025Y1340D02* D03* Y1386D02* D03* X6971D02* D03* Y1340D02* D03* X6925D02* D03* Y1386D02* D03* X6971Y1440D02* D03* X6925D02* D03* Y1486D02* D03* X6971D02* D03* X7025Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6571D02* D03* X6625D02* D03* X6671Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X6571D02* D03* X6502Y2231D02* D03* X6459D02* D03* X6475Y2290D02* D03* Y2336D02* D03* X6214Y2109D02* D03* X6135Y2077D02* D03* Y2033D02* D03* X6021Y2090D02* D03* Y2136D02* D03* X6075D02* D03* Y2090D02* D03* Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975Y1790D02* D03* Y1836D02* D03* X6021D02* D03* Y1790D02* D03* X6075D02* D03* Y1836D02* D03* X6113D02* D03* X6126Y1791D02* D03* X6075Y1736D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6075Y1636D02* D03* Y1590D02* D03* Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5688Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X5498Y1960D02* D03* X5525D02* D03* X5522Y1916D02* D03* X5530Y1862D02* D03* X5573D02* D03* X5605D02* D03* X5597Y1916D02* D03* X5593Y1960D02* D03* X5620D02* D03* X5758Y1910D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X5876Y1590D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5921Y1890D02* D03* Y1936D02* D03* X5975D02* D03* Y1890D02* D03* X6021D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X5975D02* D03* Y1990D02* D03* X5921D02* D03* Y2036D02* D03* X5936Y2080D02* D03* X5975Y2090D02* D03* Y2136D02* D03* X5921D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5832Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5803Y2324D02* D03* X5754Y2321D02* D03* X5704D02* D03* X5654D02* D03* X5625Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5654Y2189D02* D03* X5645Y2128D02* D03* X5681D02* D03* X5717D02* D03* X5704Y2189D02* D03* X5754D02* D03* X5415Y2321D02* D03* X5464Y2324D02* D03* X5493Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5473Y2128D02* D03* X5437D02* D03* X5401D02* D03* X5415Y2189D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5315Y2321D02* D03* X5365D02* D03* X5240Y2290D02* D03* Y2255D02* D03* Y2220D02* D03* X5162Y2128D02* D03* X5124D02* D03* X5087D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7119Y3130D02* D03* X7104Y3156D02* D03* X7119Y2984D02* D03* X7104Y3010D02* D03* X7119Y3036D02* D03* X7104Y3062D02* D03* X6920Y3105D02* D03* X6970Y3030D02* D03* Y2990D02* D03* X6865D02* D03* Y3030D02* D03* X6815Y3105D02* D03* X6775D02* D03* X6776Y3145D02* D03* Y3185D02* D03* X6815Y3230D02* D03* X6775D02* D03* X6776Y3270D02* D03* X6816D02* D03* X6921D02* D03* X6920Y3230D02* D03* X6726Y3270D02* D03* X6725Y3230D02* D03* X6670D02* D03* X6671Y3270D02* D03* X6621D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X7052Y2692D02* D03* X7051Y2722D02* D03* X7074Y2744D02* D03* X7104Y2742D02* D03* X7119Y2716D02* D03* Y2768D02* D03* X7104Y2794D02* D03* X7267Y2764D02* D03* X7258Y2850D02* D03* Y2882D02* D03* Y2913D02* D03* X7189Y2843D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7189Y2952D02* D03* X7258Y2945D02* D03* X7267Y3031D02* D03* X7293Y3132D02* D03* X7267Y3177D02* D03* Y3323D02* D03* Y3469D02* D03* Y3614D02* D03* Y3760D02* D03* Y3905D02* D03* Y4051D02* D03* Y4197D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7143Y4126D02* D03* X7119Y4212D02* D03* X7117Y4244D02* D03* X7119Y4295D02* D03* X7104Y4321D02* D03* X7119Y4347D02* D03* X7104Y4373D02* D03* X7119Y4441D02* D03* X7104Y4467D02* D03* X7119Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X6992Y4433D02* D03* X6976Y4323D02* D03* X6906Y4217D02* D03* X6854Y4272D02* D03* X6850Y4213D02* D03* X6752Y4189D02* D03* X6656Y4220D02* D03* X6704Y4282D02* D03* X6574Y4365D02* D03* X6322Y4780D02* D03* X6440D02* D03* X6613Y4718D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6800D02* D03* X6850D02* D03* X6800Y4643D02* D03* X6850D02* D03* X6873Y4557D02* D03* X6750Y4643D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6700Y4850D02* D03* Y4888D02* D03* X6750D02* D03* Y4850D02* D03* X6800D02* D03* Y4888D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6903Y4718D02* D03* X6955Y4717D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7119Y4634D02* D03* X7110Y4681D02* D03* X7127Y4764D02* D03* X7244D02* D03* X7267Y4634D02* D03* Y4488D02* D03* Y4343D02* D03* D370* X6989Y1893D02* D03* X6988Y2194D02* D03* X6983Y2239D02* D03* X6986Y2277D02* D03* X6958Y2337D02* D03* X6939Y2350D02* D03* X6909Y2341D02* D03* X6829Y2249D02* D03* X6850Y2236D02* D03* X6935Y2164D02* D03* Y2118D02* D03* X6989Y2087D02* D03* X6985Y2026D02* D03* X6986Y1968D02* D03* X6888Y2044D02* D03* X6938Y2007D02* D03* X6897Y1951D02* D03* X6960Y1893D02* D03* X6893Y1841D02* D03* X6882Y1387D02* D03* X6785Y1341D02* D03* X4989Y1513D02* D03* X4957Y1533D02* D03* X4734Y1513D02* D03* X4766Y1512D02* D03* X4797D02* D03* X4831Y1514D02* D03* X4894Y1470D02* D03* X4921D02* D03* X4971Y1209D02* D03* X4813Y1207D02* D03* X4782Y1205D02* D03* X4750Y1207D02* D03* X4482Y1481D02* D03* X4544Y1525D02* D03* X4574Y1467D02* D03* X4661Y1436D02* D03* X4631Y1417D02* D03* X4536Y1292D02* D03* X4479Y1268D02* D03* X4424Y1275D02* D03* X4229Y1320D02* D03* X3837Y1207D02* D03* X3986Y1546D02* D03* X3933Y1746D02* D03* X3945Y1825D02* D03* X4016Y2025D02* D03* X3962Y2034D02* D03* X3818Y2142D02* D03* X3768D02* D03* X3715Y2192D02* D03* X3714Y2145D02* D03* X3715Y2096D02* D03* Y2046D02* D03* X3665D02* D03* X3765Y2045D02* D03* X3715Y1995D02* D03* X3716Y1945D02* D03* X3718Y1895D02* D03* X3715Y1845D02* D03* X3802Y1835D02* D03* X3664Y1845D02* D03* X3657Y1788D02* D03* X3723D02* D03* X3700Y1685D02* D03* X3087Y1696D02* D03* X3151Y1736D02* D03* X3136Y1846D02* D03* X3088Y1850D02* D03* X3181Y1892D02* D03* X3233Y1895D02* D03* X3225Y1837D02* D03* X3282Y1894D02* D03* X3334Y1892D02* D03* X3331Y1841D02* D03* X3380Y1843D02* D03* X3463Y1923D02* D03* X3520Y1920D02* D03* X3534Y1895D02* D03* X3576Y1887D02* D03* X3575Y1844D02* D03* X3577Y1784D02* D03* X3487Y1791D02* D03* X3478Y1839D02* D03* X3435Y1849D02* D03* X3422Y1786D02* D03* Y1735D02* D03* X3401Y1674D02* D03* X3497Y1632D02* D03* X3486Y1501D02* D03* X3449Y1498D02* D03* X3415Y1536D02* D03* X3357Y1504D02* D03* X3324Y1562D02* D03* X3155Y1358D02* D03* X3138Y1380D02* D03* X3121Y1398D02* D03* X3084Y1424D02* D03* X3076Y1472D02* D03* X3042D02* D03* X3058Y1444D02* D03* X3032Y1427D02* D03* X2900Y1376D02* D03* X2950Y1421D02* D03* X2947Y1472D02* D03* X2916D02* D03* X2884Y1471D02* D03* X2820D02* D03* X2789D02* D03* X2726Y1470D02* D03* X2758D02* D03* X2764Y1402D02* D03* X3519Y4051D02* D03* X3600Y4003D02* D03* X3637Y3887D02* D03* X3690Y3890D02* D03* X3599Y3770D02* D03* X3695Y3720D02* D03* X3872Y3782D02* D03* X3738Y3788D02* D03* X3724Y3695D02* D03* X3747Y3693D02* D03* X3769Y3692D02* D03* X3827Y3633D02* D03* Y3317D02* D03* X3697Y3196D02* D03* X3355D02* D03* X3255Y3209D02* D03* X3231Y3219D02* D03* X3234Y3245D02* D03* X2855Y3431D02* D03* X2908Y3377D02* D03* X2778Y3233D02* D03* X2974Y2865D02* D03* X2316Y3053D02* D03* X2426Y3068D02* D03* X2393Y3153D02* D03* X2352Y3578D02* D03* X3360Y2564D02* D03* X3529Y2670D02* D03* X3571Y2630D02* D03* X3579Y2607D02* D03* X3675Y2629D02* D03* X3718Y2628D02* D03* X3766Y2676D02* D03* X3715Y2675D02* D03* X3680Y2690D02* D03* X3645Y2686D02* D03* X3623Y2703D02* D03* X3633Y2743D02* D03* Y2790D02* D03* X3600Y2852D02* D03* X3646Y2869D02* D03* X3680Y2857D02* D03* X3678Y2831D02* D03* X3729Y2791D02* D03* X3752Y2785D02* D03* X3839Y2864D02* D03* X3865Y2851D02* D03* X3871Y2774D02* D03* X3844Y2784D02* D03* X3817Y2777D02* D03* X3816Y2726D02* D03* X3833Y2692D02* D03* X3822Y2670D02* D03* X3815Y2595D02* D03* X3779Y2579D02* D03* X3765Y2546D02* D03* X3767Y2493D02* D03* X3765Y2445D02* D03* X3715D02* D03* Y2495D02* D03* X3680Y2538D02* D03* X3712Y2298D02* D03* X3714Y2346D02* D03* X3716Y2394D02* D03* X3764Y2396D02* D03* Y2346D02* D03* X3763Y2296D02* D03* X3813D02* D03* X3864Y2274D02* D03* X3817Y2449D02* D03* X3821Y2488D02* D03* X3880Y2546D02* D03* X3872Y2608D02* D03* X3889Y2635D02* D03* X3865Y2640D02* D03* X3932Y2739D02* D03* X3983Y2722D02* D03* X4005Y2649D02* D03* X4476Y2806D02* D03* X4464Y2902D02* D03* X5736Y3590D02* D03* X5710Y3629D02* D03* X5732Y3810D02* D03* X5681Y4351D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D053* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D028* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D048* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D047* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D060* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D061* X7425Y2102D02* D03* X7661D02* D03* D056* X2359Y4522D02* D03* X3940D02* D03* D018* X1857Y2939D02* X1951Y2845D01* Y2543D01* X1926Y2518D01* X1847D01* X1825Y2540D01* X1773Y2547D02* X1802Y2576D01* X1873D01* X1896Y2599D01* Y2755D01* X1829Y2822D01* X2186Y1283D02* X2213D01* X2244Y1252D01* Y1187D01* X2278Y1153D01* X5062D01* X5170Y1261D01* Y1331D01* X5317Y1478D01* Y1947D01* X5431Y2061D01* X5537D01* X5604Y2128D01* X5645D01* X5681D01* X5717D02* X5681D01* X5817Y1377D02* Y1335D01* X5864Y1288D01* Y1269D01* X5827D01* X5782Y1314D01* Y1357D01* X5439Y1700D01* Y1960D01* X5472Y1993D01* X5525D01* Y1960D01* X5498D01* X5494D01* X5478Y1944D01* Y1716D01* X5817Y1377D01* X5864Y1269D02* X5868Y1265D01* X6969D01* X7005Y1229D01* Y1170D01* X7045Y1130D01* X7089D01* X7259D01* X7326Y1197D01* X7464D01* X7504Y1157D01* D014* X7661D02* X7621Y1198D01* Y1256D01* X7601Y1276D01* X7227D01* X7113Y1162D01* X7089D01* X7267Y1331D02* X7293Y1357D01* Y1573D01* X7267Y1599D01* X7089Y1162D02* X7055Y1195D01* Y1251D01* X7002Y1304D01* X5904D01* X5865Y1343D01* Y1485D01* X5530Y1820D01* Y1862D01* X5605D02* X5704Y1961D01* X6091D01* X6113Y1939D01* Y1836D01* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D080* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D081* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D075* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/ekf2/d1.grb0000644000175000017500000022745513421555714016015 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D010* X3607Y1624D02* X3589D01* X3585Y1619D01* Y1592D01* X3589Y1588D01* X3607D01* X3612Y1592D01* Y1601D01* X3607Y1606D01* X3589D01* X3585Y1601D01* X3620Y1588D02* X3647Y1624D01* Y1619D02* Y1592D01* X3643Y1588D01* X3625D01* X3620Y1592D01* Y1619D01* X3612D02* X3607Y1624D01* X3620Y1619D02* X3625Y1624D01* X3643D01* X3647Y1619D01* X3770Y1601D02* X3774Y1606D01* X3792D01* X3797Y1601D01* Y1592D01* X3792Y1588D01* X3774D01* X3770Y1592D01* Y1619D01* X3774Y1624D01* X3792D01* X3797Y1619D01* X3805D02* X3810Y1624D01* X3828D01* X3832Y1619D01* Y1610D01* X3828Y1606D01* X3805Y1592D01* Y1588D01* X3832D01* X3786Y1079D02* X3795Y1088D01* Y1053D01* X3809D02* X3782D01* X3769D02* X3751D01* X3746Y1057D01* Y1084D01* X3751Y1088D01* X3769D01* X3773Y1084D01* X3769Y1053D02* X3773Y1057D01* Y1066D01* X3769Y1070D01* X3751D01* X3746Y1066D01* X3627Y1070D02* X3609D01* X3605Y1075D01* Y1084D01* X3609Y1088D01* X3627D01* X3631Y1084D01* Y1075D02* X3627Y1070D01* X3631Y1084D02* Y1057D01* X3627Y1053D01* X3609D01* X3605Y1057D01* X3596Y1088D02* X3569D01* Y1075D01* X3591D01* X3596Y1070D01* Y1057D01* X3591Y1053D01* X3574D01* X3569Y1057D01* X2668D02* X2694D01* X2681D02* Y1092D01* X2672Y1083D01* X2745Y1588D02* X2719D01* Y1592D01* X2741Y1606D01* X2745Y1610D01* Y1619D01* X2741Y1624D01* X2723D01* X2719Y1619D01* X2161Y1823D02* X2170Y1832D01* Y1797D01* X2183D02* X2157D01* X1936Y1776D02* X1932Y1789D01* X1914D02* X1932D01* X1923Y1811D01* X1914Y1789D01* X1910Y1776D01* X1892Y1789D02* X1901D01* Y1780D01* X1896Y1776D01* X1878D01* X1874Y1780D01* Y1807D01* X1878Y1811D01* X1896D01* X1901Y1807D01* X1865Y1811D02* X1861Y1793D01* X1852Y1776D01* X1843Y1793D01* X1838Y1811D01* X1830D02* Y1780D01* X1825Y1776D01* X1807D01* X1803Y1780D01* Y1789D01* X1667Y1807D02* X1640D01* X1653Y1820D02* Y1793D01* X1572Y1606D02* Y1571D01* X1599D01* X1608Y1589D02* X1626D01* X1635Y1571D02* X1608D01* Y1606D01* X1635D01* X1661D02* X1644D01* Y1571D01* X1661D01* X1666Y1575D01* X1670Y1584D01* Y1593D01* X1666Y1602D01* X1661Y1606D01* X1679Y1575D02* X1684Y1571D01* X1701D01* X1706Y1575D01* Y1584D01* X1701Y1589D01* X1684D01* X1679Y1593D01* Y1602D01* X1684Y1606D01* X1701D01* X1706Y1602D01* X1715Y1606D02* X1719Y1571D01* X1728Y1589D01* X1737Y1571D01* X1741Y1606D01* X1750Y1571D02* X1755Y1584D01* X1764Y1606D01* X1772Y1584D01* X1755D01* X1772D02* X1777Y1571D01* X1786D02* Y1606D01* X1808D01* X1812Y1602D01* Y1593D01* X1808Y1589D01* X1786D01* X1946Y1522D02* X1938D01* X1933Y1518D01* Y1500D01* X1938Y1495D01* X1969D01* X1938Y1486D02* X1933Y1482D01* Y1464D01* X1938Y1460D01* X1946D01* X1951Y1464D01* Y1482D01* X1955Y1486D01* X1964D01* X1969Y1482D01* Y1464D01* X1964Y1460D01* X1969Y1451D02* X1933Y1446D01* X1951Y1438D01* X1933Y1429D01* X1969Y1424D01* X1946Y1411D02* Y1393D01* X1933Y1389D02* X1946Y1393D01* X1969Y1402D01* X1946Y1411D01* X1933Y1415D01* Y1380D02* X1969D01* Y1358D01* X1964Y1353D01* X1955D01* X1951Y1358D01* Y1380D01* X2150Y2706D02* X2177D01* X2181Y2710D01* Y2728D01* X2177Y2733D01* X2150D01* X2146Y2728D01* Y2710D01* X2150Y2706D01* Y2697D02* X2146Y2693D01* Y2675D01* X2150Y2670D01* X2159D01* X2163Y2675D01* Y2693D01* X2168Y2697D01* X2177D01* X2181Y2693D01* Y2675D01* X2177Y2670D01* Y2635D02* X2181Y2639D01* Y2657D01* X2177Y2662D01* X2150D01* X2146Y2657D01* Y2639D01* X2150Y2635D01* X2141Y2626D02* Y2595D01* X2146Y2590D02* X2181D01* X2163D02* Y2573D01* X2181Y2555D02* X2146Y2550D01* X2163Y2542D01* X2181Y2528D02* X2146Y2533D01* X2163Y2542D01* X2181Y2564D02* Y2590D01* X2446Y2599D02* X2472D01* X2477Y2595D01* Y2577D01* X2472Y2573D01* X2446D01* X2441Y2577D01* Y2595D01* X2446Y2599D01* X2472Y2608D02* X2477Y2613D01* Y2631D01* X2472Y2635D01* X2463D01* X2459Y2631D01* Y2613D01* X2454Y2608D01* X2446D01* X2441Y2613D01* Y2631D01* X2446Y2635D01* X2477Y2679D02* X2441D01* Y2706D01* X2459Y2697D02* Y2679D01* X2446Y2671D02* X2441Y2666D01* Y2648D01* X2446Y2644D01* X2472D01* X2477Y2648D01* Y2666D01* X2472Y2671D01* X2477Y2679D02* Y2706D01* X2509Y2949D02* X2482D01* X2495Y2935D02* Y2962D01* X2319Y2949D02* X2292D01* X2305Y2935D02* Y2962D01* X2708Y3969D02* Y3933D01* X2681Y3969D01* Y3933D01* X2672D02* X2668Y3946D01* X2659Y3969D01* X2650Y3946D01* X2668D01* X2650D02* X2646Y3933D01* X2610D02* Y3969D01* X2637Y3933D02* X2610D01* X2606Y3929D02* X2575D01* X2566Y3933D02* X2539D01* Y3969D01* X2566D01* X2557Y3951D02* X2539D01* X2526D02* X2530Y3946D01* Y3938D01* X2526Y3933D01* X2508D01* X2504Y3938D01* X2526Y3951D02* X2508D01* X2504Y3955D01* Y3964D01* X2508Y3969D01* X2526D01* X2530Y3964D01* X2136Y4114D02* X2145D01* X2150Y4118D01* Y4136D01* X2145Y4141D01* X2114D01* X2127Y4149D02* X2118D01* X2114Y4154D01* Y4172D01* X2118Y4176D01* X2127Y4149D02* X2132Y4154D01* Y4172D01* X2136Y4176D01* X2145D01* X2150Y4172D01* Y4154D01* X2145Y4149D01* X2150Y4221D02* X2114D01* X2118Y4212D02* X2127D01* X2118D02* X2114Y4207D01* Y4185D01* X2150D01* X2132D02* Y4207D01* X2127Y4212D01* X2132Y4221D02* X2127Y4229D01* X2114Y4247D02* X2127Y4229D01* X2150Y4247D01* X1862Y4827D02* Y4862D01* X1889D01* X1880Y4845D02* X1862D01* X1853Y4862D02* Y4827D01* X1827Y4862D01* Y4827D01* X1818Y4831D02* X1813Y4827D01* X1796D01* X1791Y4831D01* Y4858D01* X1796Y4862D01* X1813D01* X1818Y4858D01* X1782Y4862D02* Y4831D01* X1778Y4827D01* X1760D01* X1756Y4831D01* Y4840D01* X2538Y4897D02* X2529Y4888D01* Y4923D01* X2516D02* X2542D01* X2571Y4919D02* X2575Y4923D01* X2593D01* X2597Y4919D01* Y4892D01* X2593Y4888D01* X2575D01* X2571Y4892D01* Y4919D02* Y4910D01* X2575Y4906D01* X2593D01* X2597Y4910D01* X2606Y4923D02* X2633D01* Y4919D01* X2611Y4906D01* X2606Y4901D01* Y4892D01* X2611Y4888D01* X2628D01* X2633Y4892D01* X3693D02* X3719D01* Y4905D01* X3697D01* X3693Y4910D01* Y4923D01* X3697Y4927D01* X3715D01* X3719Y4923D01* X3728Y4927D02* X3755D01* Y4923D01* X3733Y4910D01* X3728Y4905D01* Y4896D01* X3733Y4892D01* X3751D01* X3755Y4896D01* X3780Y4892D02* X3798D01* X3802Y4896D01* Y4923D01* X3811D02* X3815Y4927D01* X3833D01* X3838Y4923D01* X3802Y4927D02* X3775Y4892D01* X3780D02* X3775Y4896D01* Y4923D01* X3780Y4927D01* X3798D01* X3802Y4923D01* X3811D02* Y4910D01* X3815Y4905D01* X3838D01* Y4892D01* X3811D01* X4507Y4001D02* X4502Y3983D01* X4493Y3965D01* X4484Y3983D01* X4480Y4001D01* X4471D02* X4444D01* Y3987D01* X4467D01* X4471Y3983D01* Y3969D01* X4467Y3965D01* X4449D01* X4444Y3969D01* X4470Y3896D02* X4466Y3901D01* X4448D01* X4443Y3896D01* Y3869D01* X4448Y3865D01* X4466D01* X4470Y3869D01* Y3878D01* X4461D01* X4479Y3865D02* Y3901D01* X4506Y3865D01* X4514D02* Y3901D01* X4532D01* X4537Y3896D01* X4541Y3887D01* Y3878D01* X4537Y3869D01* X4532Y3865D01* X4514D01* X4506D02* Y3901D01* X4539Y3801D02* X4535Y3783D01* X4526Y3765D01* X4517Y3783D01* X4513Y3801D01* X4477Y3796D02* X4482Y3801D01* X4499D01* X4504Y3796D01* Y3787D01* X4499Y3783D01* X4477Y3769D01* Y3765D01* X4504D02* X4477D01* X4468D02* X4442D01* X4455D02* Y3801D01* X4446Y3792D01* X3965Y3245D02* X3938D01* X3951Y3259D02* Y3232D01* X3825Y2945D02* X3798D01* X3811Y2959D02* Y2932D01* X4172Y2030D02* X4199D01* Y2043D01* X4176D01* X4172Y2048D01* Y2061D01* X4176Y2065D01* X4194D01* X4199Y2061D01* X4221Y2056D02* X4225Y2061D01* X4221Y2065D01* X4216Y2061D01* X4221Y2056D01* X4305Y2065D02* Y2030D01* X4283D01* X4279Y2034D01* Y2043D01* X4283Y2048D01* X4292D02* X4279Y2065D01* X4243D02* X4270D01* Y2061D01* X4248Y2048D01* X4243Y2043D01* Y2034D01* X4248Y2030D01* X4265D01* X4270Y2034D01* X4283Y2048D02* X4305D01* X4319D02* X4314Y2030D01* X4319Y2048D02* X4328Y2065D01* X4336Y2048D01* X4341Y2030D01* X4727Y2319D02* X4754D01* X4741Y2332D02* Y2306D01* Y2065D02* X4736Y2061D01* X4741Y2056D01* X4745Y2061D01* X4741Y2065D01* X4718Y2061D02* X4714Y2065D01* X4696D01* X4692Y2061D01* Y2048D01* X4696Y2043D01* X4718D01* Y2030D01* X4692D01* X4785Y2039D02* X4776Y2030D01* Y2065D01* X4763D02* X4789D01* X4798D02* X4812Y2048D01* X4825D02* X4803D01* X4798Y2043D01* Y2034D01* X4803Y2030D01* X4825D01* Y2065D01* X4834Y2030D02* X4838Y2048D01* X4847Y2065D01* X4856Y2048D01* X4861Y2030D01* X5022Y1624D02* Y1606D01* X5049D01* X5044Y1624D02* Y1588D01* X5009D02* Y1624D01* X5013Y1606D02* X4987D01* Y1624D01* X4955Y1615D02* X4964Y1624D01* Y1588D01* X4978D02* X4951D01* X5068Y1088D02* Y1053D01* X5086D02* X5081Y1057D01* X5086Y1053D02* X5103D01* X5108Y1057D01* Y1066D01* X5099Y1070D01* X5090D01* X5099D02* X5108Y1075D01* Y1084D01* X5103Y1088D01* X5086D01* X5081Y1084D01* X5072Y1070D02* X5046D01* Y1088D01* X5015Y1079D02* X5023Y1088D01* Y1053D01* X5037D02* X5010D01* X5603Y1169D02* X5577D01* X5590Y1156D02* Y1183D01* Y1423D02* X5595Y1427D01* X5590Y1432D01* X5586Y1427D01* X5590Y1423D01* X5617D02* X5635D01* X5639Y1427D01* Y1436D01* X5635Y1441D01* X5617Y1423D02* X5612Y1427D01* Y1436D01* X5617Y1441D01* X5635D01* X5639Y1445D01* Y1454D01* X5635Y1458D01* X5617D01* X5612Y1454D01* Y1445D01* X5617Y1441D01* X5546Y1450D02* X5555Y1458D01* Y1423D01* X5568D02* X5541D01* X5532D02* X5519Y1441D01* X5506Y1423D02* Y1458D01* X5528D01* X5532Y1454D01* Y1445D01* X5528Y1441D01* X5506D01* X5497Y1458D02* X5492Y1441D01* X5483Y1423D01* X5475Y1441D01* X5470Y1458D01* X5189Y2311D02* X5185Y2307D01* Y2289D01* X5189Y2284D01* X5198D01* X5203Y2289D01* Y2307D01* X5207Y2311D01* X5216D01* X5221Y2307D01* Y2289D01* X5216Y2284D01* Y2249D02* X5221Y2253D01* Y2271D01* X5216Y2275D01* X5189D01* X5185Y2271D01* Y2253D01* X5189Y2249D01* X5216D01* X5288Y2224D02* X5262D01* X5275Y2211D02* Y2238D01* X5221Y2240D02* Y2222D01* X5216Y2218D01* X5207Y2213D01* X5198D01* X5189Y2218D01* X5185Y2222D01* Y2240D01* X5221D01* Y2204D02* Y2178D01* Y2191D02* X5185D01* Y2204D02* Y2178D01* Y2169D02* X5221D01* X5207Y2155D01* X5221Y2142D01* X5185D01* Y2133D02* X5221D01* X5207Y2120D01* X5221Y2107D01* X5185D01* Y2098D02* Y2071D01* Y2084D02* X5221D01* X5212Y2093D01* X5627Y2224D02* X5600D01* X5614Y2211D02* Y2238D01* X5797Y2529D02* Y2556D01* X5784Y2543D02* X5811D01* X5698Y2591D02* X5702Y2586D01* X5720D01* X5725Y2591D01* Y2618D01* X5720Y2622D01* X5702D01* X5698Y2618D01* X5689Y2586D02* X5685Y2604D01* X5676Y2622D01* X5667Y2604D01* X5662Y2586D01* X5654Y2591D02* X5649Y2586D01* X5631D01* X5627Y2591D01* Y2600D01* X5631Y2604D01* X5654Y2618D01* Y2622D01* X5627D01* X5618Y2618D02* X5614Y2622D01* X5596D01* X5591Y2618D01* Y2609D01* X5600Y2604D02* X5609D01* X5618Y2591D02* X5614Y2586D01* X5596D01* X5591Y2591D01* Y2600D01* X5600Y2604D01* X5591Y2609D01* X6019Y2595D02* X6010Y2586D01* Y2622D01* X5997D02* X6024D01* X6032D02* X6059D01* Y2618D01* X6037Y2604D01* X6032Y2600D01* Y2591D01* X6037Y2586D01* X6055D01* X6059Y2591D01* X6068Y2586D02* X6072Y2604D01* X6081Y2622D01* X6090Y2604D01* X6095Y2586D01* X6104Y2618D02* X6108Y2622D01* X6126D01* X6130Y2618D01* Y2591D01* X6126Y2586D01* X6108D01* X6104Y2591D01* X6211Y2529D02* Y2556D01* X6197Y2543D02* X6224D01* X6410Y2622D02* X6437D01* Y2618D01* X6415Y2604D01* X6410Y2600D01* Y2591D01* X6415Y2586D01* X6432D01* X6437Y2591D01* X6446Y2622D02* X6472D01* Y2618D01* X6450Y2604D01* X6446Y2600D01* Y2591D01* X6450Y2586D01* X6468D01* X6472Y2591D01* X6481Y2586D02* X6486Y2604D01* X6495Y2622D01* X6504Y2604D01* X6508Y2586D01* X6517Y2618D02* X6521Y2622D01* X6539D01* X6544Y2618D01* Y2591D01* X6539Y2586D01* X6521D01* X6517Y2591D01* X6628Y2529D02* Y2556D01* X6615Y2543D02* X6641D01* X6885Y2661D02* X6911D01* X6898Y2675D02* Y2648D01* X7086Y2661D02* X7112D01* X7099Y2675D02* Y2648D01* X7295Y3017D02* Y3043D01* X7282D01* Y3021D01* X7278Y3017D01* X7264D01* X7260Y3021D01* Y3039D01* X7264Y3043D01* X7260Y3052D02* Y3079D01* X7264D01* X7278Y3057D01* X7282Y3052D01* X7291D01* X7295Y3057D01* Y3074D01* X7291Y3079D01* X7287Y3133D02* X7295Y3124D01* X7260D01* Y3111D02* Y3138D01* X5879Y4080D02* X5679D01* Y3865D01* X5879D01* Y4080D01* X5864Y4075D02* X5829D01* X5842Y4061D01* X5829Y4048D01* X5864D01* X5829D01* X5842Y4061D01* X5829Y4075D01* X5864D01* X5846Y4030D02* Y4012D01* Y4030D02* Y4012D01* X5864D02* Y4039D01* Y4012D01* X5829D01* Y3990D02* X5864D01* X5829D01* Y4003D02* Y3977D01* Y4003D01* Y4012D02* Y4039D01* Y4012D01* X5864D01* X5842Y3941D02* X5833D01* X5829Y3946D01* Y3963D01* X5833Y3968D01* X5829Y3963D01* Y3946D01* X5833Y3941D01* X5842D01* X5846Y3946D01* Y3963D01* X5851Y3968D01* X5860D01* X5864Y3963D01* Y3946D01* X5860Y3941D01* X5864Y3946D01* Y3963D01* X5860Y3968D01* X5851D01* X5846Y3963D01* Y3946D01* X5842Y3941D01* X5864Y3919D02* X5842D01* X5829Y3932D02* X5842Y3919D01* X5829Y3906D01* X5842Y3919D01* X5829Y3932D01* X5842Y3919D02* X5864D01* X5846Y3875D02* X5842Y3870D01* X5833D01* X5829Y3875D01* Y3892D01* X5833Y3897D01* X5829Y3892D01* Y3875D01* X5833Y3870D01* X5842D01* X5846Y3875D01* Y3892D01* X5851Y3897D01* X5860D01* X5864Y3892D01* Y3875D01* X5860Y3870D01* X5864Y3875D01* Y3892D01* X5860Y3897D01* X5851D01* X5846Y3892D01* Y3875D01* X7044Y3544D02* X7017D01* X7013Y3540D01* Y3522D01* X7017Y3518D01* Y3473D02* X7013Y3469D01* Y3451D01* X7017Y3447D01* X7044D01* X7048Y3451D01* Y3469D01* X7044Y3473D01* X7035D01* X7030Y3469D01* Y3451D01* X7035Y3447D01* X7048Y3482D02* X7030Y3487D01* X7013Y3496D01* X7030Y3504D01* X7048Y3509D01* X7044Y3518D02* X7048Y3522D01* Y3540D01* X7044Y3544D01* X7083Y3626D02* Y3653D01* X7097Y3640D02* X7070D01* X6720Y3712D02* X6747Y3747D01* X6742D02* X6725D01* X6720Y3743D01* Y3716D01* X6725Y3712D01* X6742D01* X6747Y3716D01* Y3743D01* X6742Y3747D01* X6782D02* X6756D01* X6769D02* Y3712D01* X6778Y3721D01* X6791Y3712D02* X6796Y3730D01* X6805Y3747D01* X6814Y3730D01* X6818Y3712D01* X6827Y3716D02* X6831Y3712D01* X6849D01* X6854Y3716D01* Y3743D01* X6849Y3747D01* X6831D01* X6827Y3743D01* X6931Y3774D02* Y3800D01* X6918Y3787D02* X6944D01* X7096Y3935D02* X7069D01* X7082Y3922D02* Y3948D01* X7007Y4022D02* X7012Y4018D01* X7038D01* X7043Y4022D01* Y4040D01* X7038Y4044D01* X7016Y4129D02* X7007Y4138D01* X7043D01* Y4151D02* Y4124D01* Y4115D02* Y4089D01* Y4102D02* X7007D01* X7016Y4093D01* X7007Y4080D02* X7025Y4075D01* X7043Y4067D01* X7025Y4058D01* X7007Y4053D01* X7012Y4044D02* X7007Y4040D01* Y4022D01* X6856Y3996D02* X6829D01* X6842Y4009D02* Y3982D01* X7260Y4749D02* Y4775D01* X7264D01* X7278Y4753D01* X7282Y4749D01* X7291D01* X7295Y4753D01* Y4771D01* X7291Y4775D01* X7260Y4784D02* Y4811D01* X7264D01* X7278Y4789D01* X7282Y4784D01* X7291D01* X7295Y4789D01* Y4807D01* X7291Y4811D01* X7295Y2229D02* Y2256D01* X7287Y2287D02* X7295Y2278D01* X7260D01* Y2291D02* Y2265D01* X7264Y2256D02* X7260Y2251D01* Y2234D01* X7264Y2229D01* X7278D01* X7282Y2234D01* Y2256D01* X7295D01* X7287Y1968D02* X7295Y1959D01* X7260D01* Y1972D02* Y1946D01* Y1937D02* Y1910D01* Y1924D02* X7295D01* X7287Y1932D01* Y1165D02* X7295Y1156D01* X7260D01* Y1143D02* Y1169D01* X6627Y1146D02* X6600D01* X6614Y1132D02* Y1159D01* D012* X2087Y2488D02* X2252D01* X2433Y2504D02* X2436Y2507D01* X2433Y2488D02* Y2504D01* X2374Y2488D02* X2539D01* X2480D02* Y2504D01* X2473Y2511D02* X2480Y2504D01* X2473Y2511D02* X2464Y2515D01* X2454Y2516D01* X2444Y2513D01* X2436Y2507D01* X2539Y2780D02* X2374D01* X2182Y2755D02* X2172Y2752D01* X2162Y2753D01* X2153Y2757D01* X2146Y2764D01* Y2780D02* Y2764D01* X2193Y2780D02* Y2764D01* X2182Y2755D02* X2190Y2760D01* X2193Y2764D01* X2252Y2780D02* X2087D01* X1984Y2921D02* X2110D01* Y3039D01* Y3520D02* Y3646D01* X1992D01* X1961Y3677D02* X2012D01* Y3728D01* X1500D02* Y3677D01* X1551D01* X1626Y3646D02* X1500D01* Y3528D01* Y3047D02* Y2921D01* X1618D01* X1500Y859D02* X1509Y850D01* X1536D01* X1544Y859D01* Y868D01* X1536Y877D01* X1509D01* X1500Y886D01* X1509Y894D01* X1536D01* X1544Y886D01* X1651Y850D02* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1616Y886D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1651Y850D02* X1642Y859D01* Y868D01* X1651Y877D01* X1687D01* X1731Y921D02* X1740D01* Y850D01* X1749D02* X1731D01* X1784Y859D02* X1793Y850D01* X1829D01* X1784Y859D02* Y886D01* X1793Y894D01* X1820D01* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* X2336Y921D02* X2282Y850D01* Y859D02* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2264Y921D02* X2211Y850D01* X2220D02* X2256D01* X2264Y859D01* Y912D01* X2256Y921D01* X2220D01* X2211Y912D01* Y859D01* X2220Y850D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X1980Y877D02* X1936D01* X1980Y894D02* X1936D01* X1850Y1000D02* X1500D01* Y1394D01* X1441D01* Y1472D01* X1500Y1521D02* Y1571D01* X1550D01* X1500Y1421D02* Y1371D01* X1550D01* X1807D02* X1858D01* Y1426D01* Y1520D02* Y1571D01* X1803D01* X1303Y2024D02* X1854D01* Y2378D01* X1303D01* Y2024D01* X2199Y1837D02* Y1187D01* X2455D01* Y1837D01* X2199D01* X2502Y2324D02* X2699D01* Y1576D01* X5061D01* Y2324D01* X5258D01* Y1104D01* X2502D01* Y2324D01* X2740Y2457D02* Y2063D01* X3153Y1650D02* X3547D01* X3921Y1674D02* X3923Y1684D01* X3926Y1685D02* X3940D01* Y1686D02* X3931Y1689D01* X3923Y1684D01* Y1681D02* X3942D01* X3944Y1677D02* Y1674D01* X3942Y1673D02* X3923D01* X3921Y1674D02* X3928Y1667D01* X3937Y1666D01* X3944Y1674D02* X3937Y1666D01* X3939Y1669D02* X3927D01* X3923Y1677D02* X3943D01* X3944D02* X3940Y1686D01* X3960Y2063D02* Y2457D01* X4200Y2940D02* Y2915D01* X4300D01* Y2940D01* X4284Y2952D02* X4292Y2946D01* X4300Y2940D01* X4767Y2760D02* X4661D01* X4551Y2870D01* Y2973D01* X4500Y2965D02* Y2915D01* X4450D01* X4284Y2952D02* X4275Y2956D01* X4265Y2958D01* X4255Y2960D01* X4245D01* X4235Y2958D01* X4226Y2956D01* X4216Y2952D01* X4208Y2947D01* X4200Y2940D01* D01* X4050Y2915D02* X4000D01* Y2965D01* X3810Y3237D02* X3804Y3230D01* X3805Y3233D02* X3793D01* X3789Y3241D02* X3810D01* X3811D02* X3807Y3250D01* X3804Y3230D02* X3794D01* X3788Y3238D01* X3790Y3237D02* X3809D01* X3810D02* X3811Y3241D01* X3808Y3245D02* X3790D01* X3789Y3247D02* X3798Y3253D01* X3807Y3250D01* X3806Y3249D02* X3792D01* X3789Y3247D02* X3788Y3238D01* X3567Y3217D02* X3173D01* X2852Y3019D02* Y3016D01* X2850Y3015D02* X2831D01* Y3019D02* X2851D01* X2852D02* X2848Y3028D01* X2834Y3027D02* X2848D01* X2839Y3031D02* X2831Y3026D01* X2829Y3016D01* X2836Y3009D01* X2835Y3011D02* X2847D01* X2852Y3016D02* X2845Y3008D01* X2836Y3009D01* X3153Y2870D02* X3547D01* X1854Y2850D02* X1303D01* Y2496D01* X1854D01* Y2850D01* X2215Y3547D02* Y3153D01* X2313Y3055D02* X2707D01* X2831Y3023D02* X2850D01* X2848Y3028D02* X2839Y3031D01* X2805Y3153D02* Y3547D01* X2917Y3473D02* Y3867D01* X2708Y3853D02* Y3793D01* X2653D01* X2513D02* X2458D01* Y3853D01* X2478Y3903D02* X2484Y3910D01* X2489Y3919D01* X2478Y3903D02* X2458D01* Y4003D01* Y4053D02* Y4113D01* X2513D01* X2653D02* X2708D01* Y4053D01* X2458Y4003D02* X2478D01* D01* X2484Y3995D01* X2489Y3986D01* X2493Y3977D01* X2496Y3967D01* X2498Y3958D01* X2497Y3948D01* X2496Y3938D01* X2493Y3928D01* X2489Y3919D01* X2707Y3645D02* X2313D01* X2205Y3715D02* X2443D01* Y4160D01* X3856D01* Y3715D01* X4050Y3645D02* X4000D01* Y3595D01* X3823Y3473D02* Y3867D01* X3567Y4123D02* X3173D01* X4100Y3928D02* Y3967D01* X4139D01* X4184D02* Y3956D01* X4194Y3952D01* X4184Y3967D02* X4216D01* Y3956D01* X4213Y3954D01* X4204Y3952D01* X4194D01* X4261Y3967D02* X4300D01* Y3928D01* X4500Y3595D02* Y3645D01* X4450D01* X4300Y3692D02* Y3653D01* X4261D01* X4139D02* X4100D01* Y3692D01* X3856Y3715D02* X4094D01* Y4837D01* X2205D01* Y3715D01* X2012Y3823D02* Y3874D01* X1957D01* X1501Y3824D02* Y3874D01* X1551D01* X1496Y3898D02* Y4559D01* X1854D01* Y3898D01* X1496D01* X1441Y4465D02* Y4543D01* X1500D01* Y4937D01* X1850D01* X2051Y4836D02* X2209D01* Y4324D01* X2051D01* Y4836D01* X1925Y5462D02* X1075D01* X1200D02* X1500Y5762D01* X1800Y5462D01* X1500Y5162D01* X1200Y5462D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X8324Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8024Y4937D01* X8324Y4637D01* Y4737D02* X8524Y4937D01* X8324Y5137D01* X8124Y4937D01* X8324Y4737D01* X7799Y4587D02* Y4760D01* Y4878D01* X7740Y4937D01* X7449D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X7307Y1120D02* X7799D01* Y3085D01* X7307D01* Y3089D02* X7799D01* Y4817D01* X7307D01* Y3089D01* X7091Y3189D02* Y3268D01* X7012D01* Y2756D02* X7091D01* Y2835D01* X7307Y3085D02* Y1120D01* X7075Y1669D02* Y2063D01* X6657Y1252D02* X6264D01* X5882Y1276D02* X5881Y1272D01* X5880Y1271D02* X5861D01* X5865Y1265D02* X5875D01* X5881Y1272D01* X5876Y1267D02* X5864D01* X5865Y1265D02* X5859Y1273D01* X5860Y1282D01* X5869Y1287D01* X5877Y1283D02* X5863D01* X5878Y1284D02* X5882Y1276D01* X5881Y1275D02* X5860D01* X5861Y1279D02* X5879D01* X5878Y1284D02* X5869Y1287D01* X5846Y1669D02* Y2063D01* X6264Y2480D02* X6657D01* X6579Y2756D02* X6657D01* X6579D02* Y2835D01* X6519Y2914D02* Y2760D01* X6370D01* X6612Y3215D02* X6625D01* X6624Y3214D02* X6632Y3220D01* X6630Y3219D02* X6607D01* X6606Y3218D02* X6602Y3228D01* X6605Y3237D01* X6606Y3235D02* X6630D01* X6631Y3238D02* X6623Y3243D01* X6613D02* X6605Y3237D01* X6604Y3231D02* X6632D01* X6634Y3228D02* X6632Y3220D01* X6631Y3223D02* X6605D01* X6604Y3227D02* X6633D01* X6634Y3228D02* X6631Y3238D01* X6627Y3239D02* X6609D01* X6613Y3243D02* X6623D01* X6624Y3214D02* X6614Y3213D01* X6606Y3218D01* X6579Y3189D02* Y3268D01* X6657D01* X5778Y3890D02* Y3930D01* X5774Y3937D02* Y3978D01* X5778Y3985D02* Y4005D01* X5771Y4008D01* X5774Y4032D02* Y4075D01* X5786D02* Y3870D01* X5778Y3890D02* X5777Y3887D01* X5774Y3883D02* Y3870D01* X5754D02* Y3883D01* X5751Y3887D02* X5761Y3877D01* X5767D01* X5766Y3870D02* Y3876D01* X5770Y3870D02* Y3879D01* X5778Y3870D02* Y4075D01* X5782D02* Y3870D01* X5777Y3887D02* X5767Y3877D01* X5762Y3876D02* Y3870D01* X5758D02* Y3879D01* X5750Y3870D02* Y3954D01* X5762Y3944D02* Y3966D01* X5758Y3962D02* Y3941D01* X5767Y3943D02* X5777Y3933D01* X5778Y3930D02* X5777Y3933D01* X5766Y3944D02* Y3970D01* X5754Y3958D02* Y3937D01* X5751Y3933D02* X5761Y3943D01* X5767D01* X5770Y3941D02* Y3974D01* X5777Y3982D02* X5778Y3985D01* X5777Y3982D02* X5737Y3942D01* X5730D02* Y3928D01* X5731D02* X5721Y3918D01* X5720Y3915D01* X5722Y3920D02* Y3940D01* X5726Y3945D02* Y3924D01* X5731Y3928D02* X5737D01* Y3942D02* X5731D01* X5691Y3982D01* X5690Y3985D01* Y4005D01* X5697Y4008D01* X5734Y3971D01* Y3972D02* Y4001D01* X5747Y4012D02* X5748Y4015D01* X5750D02* Y4025D01* X5751Y4028D01* X5761Y4038D01* X5802Y4075D02* Y3870D01* X5806D02* Y4075D01* X5778Y4025D02* X5777Y4028D01* X5758Y4036D02* Y4075D01* X5762D02* Y4039D01* X5778Y4025D02* Y4015D01* X5777Y4012D02* X5778Y4015D01* X5766Y4039D02* Y4075D01* X5738D02* Y4053D01* X5747Y4043D02* X5748Y4040D01* X5747Y4043D02* X5737Y4053D01* X5730D02* Y4075D01* X5734D02* Y4054D01* X5718Y4055D02* Y4015D01* X5717Y4012D01* X5714Y4008D02* Y3992D01* X5710Y3996D02* Y4004D01* X5701Y4002D02* X5707D01* X5717Y4012D01* X5721D02* X5720Y4015D01* Y4040D01* X5731Y4053D02* X5721Y4043D01* X5720Y4040D01* X5722Y4045D02* Y4075D01* X5726D02* Y4049D01* X5731Y4053D02* X5737D01* X5714Y4075D02* Y4062D01* X5717Y4058D02* X5718Y4055D01* X5717Y4058D02* X5707Y4068D01* X5706Y4069D02* Y4075D01* X5702D02* Y4069D01* X5698Y4075D02* Y4066D01* X5691Y4058D02* X5690Y4055D01* Y4015D01* X5691Y4012D01* X5701Y4002D01* X5718Y3988D02* Y4075D01* X5710Y4066D02* Y4075D01* X5707Y4068D02* X5701D01* X5691Y4058D01* X5694Y4062D02* Y4075D01* X5690D02* Y3870D01* X5698Y3879D02* Y3870D01* X5694D02* Y3883D01* X5690Y3890D02* X5691Y3887D01* X5701Y3877D01* X5686Y3870D02* Y4075D01* X5683Y4076D02* X5810D01* Y3869D01* X5683D01* Y4076D01* X4986Y4134D02* Y3195D01* X6084D01* Y4294D01* X5790Y4075D02* Y3870D01* X5751Y3887D02* X5750Y3890D01* Y3930D01* X5751Y3933D02* X5750Y3930D01* X5738Y3928D02* Y3942D01* X5734Y3941D02* Y3929D01* X5737Y3928D02* X5747Y3918D01* X5748Y3915D02* X5747Y3918D01* X5742Y3924D02* Y3946D01* X5746Y3950D02* Y3920D01* X5748Y3915D02* Y3890D01* X5746Y3885D02* Y3870D01* X5742D02* Y3881D01* X5747Y3887D02* X5748Y3890D01* X5747Y3887D02* X5737Y3877D01* X5734Y3876D02* Y3870D01* X5730D02* Y3877D01* X5726Y3870D02* Y3881D01* X5721Y3887D02* X5720Y3890D01* Y3915D01* X5690Y3890D02* Y3930D01* X5691Y3933D01* X5701Y3943D01* X5707D01* X5717Y3933D01* X5718Y3930D01* Y3890D01* X5717Y3887D01* X5707Y3877D01* X5701D01* X5702Y3876D02* Y3870D01* X5706Y3876D02* Y3870D01* X5710D02* Y3879D01* X5714Y3870D02* Y3883D01* X5738Y3877D02* Y3870D01* X5737Y3877D02* X5731D01* X5721Y3887D01* X5722Y3885D02* Y3870D01* X5718D02* Y3940D01* X5714Y3937D02* Y3940D01* X5694Y3941D02* X5690Y3945D01* Y3975D01* X5697Y3978D01* X5727Y3948D01* X5724Y3941D01* X5694D01* Y3940D02* Y3937D01* X5738Y3976D02* Y4002D01* X5748Y4015D02* Y4040D01* X5742Y4049D02* Y4075D01* X5746D02* Y4045D01* X5761Y4038D02* X5767D01* X5794Y4075D02* Y3870D01* X5798D02* Y4075D01* X5777Y4028D02* X5767Y4038D01* X5754Y4032D02* Y4075D01* X5750D02* Y3988D01* X5761Y4002D02* X5751Y4012D01* X5742Y4006D02* Y3980D01* X5746Y3984D02* Y4010D01* X5750Y4015D02* X5751Y4012D01* X5747D02* X5737Y4002D01* X5726Y4006D02* Y3980D01* X5722Y3984D02* Y4010D01* X5721Y4012D02* X5731Y4002D01* X5737D01* X5730D02* Y3976D01* X5734Y3971D02* X5771Y4008D01* X5767Y4002D02* X5761D01* X5754Y4008D02* Y3992D01* X5758Y3996D02* Y4004D01* X5767Y4002D02* X5777Y4012D01* X5770Y4036D02* Y4075D01* X6084Y4294D02* X5145D01* X4986Y4134D01* X4551Y4512D02* Y4619D01* X4661Y4729D01* X4763D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5415D02* Y5432D01* X5800Y5441D01* X5836D01* X5845Y5432D01* X5880D02* Y5423D01* X5889D01* Y5432D01* X5880D01* Y5415D02* X5889D01* Y5370D01* X5898D02* X5880D01* X5791Y5379D02* X5800Y5370D01* X5836D01* X5845Y5379D01* Y5397D01* X5836Y5406D01* X5800D01* X5791Y5415D01* X5951Y5370D02* X5969D01* X5960D02* Y5441D01* X5951D01* X6005D02* Y5370D01* Y5388D02* X6040Y5415D01* X6005Y5388D02* X6049Y5370D01* X6076Y5379D02* X6085Y5370D01* X6111D01* X6120Y5379D01* Y5388D01* X6111Y5397D01* X6085D01* X6076Y5406D01* X6085Y5415D01* X6111D01* X6120Y5406D01* X6191D02* X6182Y5415D01* X6156D01* X6147Y5406D01* Y5379D01* X6156Y5370D01* X6182D01* X6191Y5379D01* X6218Y5370D02* Y5415D01* Y5406D02* X6227Y5415D01* X6254D01* X6262Y5406D01* X6289Y5388D02* X6325D01* X6334Y5397D01* Y5406D01* X6325Y5415D01* X6298D01* X6289Y5406D01* Y5379D01* X6298Y5370D01* X6334D01* X6360Y5388D02* X6396D01* X6405Y5397D01* Y5406D01* X6396Y5415D01* X6369D01* X6360Y5406D01* Y5379D01* X6369Y5370D01* X6405D01* X6431D02* Y5415D01* Y5406D02* X6440Y5415D01* X6467D01* X6476Y5406D01* Y5370D01* X6627Y5379D02* X6618Y5370D01* X6582D01* X6574Y5379D01* Y5432D01* X6582Y5441D01* X6618D01* X6627Y5432D01* X6654Y5415D02* X6645Y5406D01* Y5379D01* X6654Y5370D01* X6680D01* X6689Y5379D01* Y5406D01* X6680Y5415D01* X6654D01* X6716Y5370D02* Y5415D01* Y5406D02* X6725Y5415D01* X6734D01* X6742Y5406D01* Y5370D01* X6769D02* Y5406D01* X6760Y5415D01* X6751D01* X6742Y5406D01* X6787Y5370D02* X6822D01* X6831Y5379D01* Y5406D01* X6822Y5415D01* X6787D01* Y5343D01* X7178Y5415D02* X7142D01* X7160Y5441D02* Y5379D01* X7169Y5370D01* X7178D01* X7187Y5379D01* X7116Y5370D02* Y5406D01* X7107Y5415D01* X7080D01* X7071Y5406D01* Y5415D02* Y5370D01* X7045D02* X7009D01* X7000Y5379D01* Y5406D01* X7009Y5415D01* X7036D01* X7045Y5406D01* Y5397D01* X7036Y5388D01* X7000D01* X6974Y5370D02* Y5406D01* X6965Y5415D01* X6938D01* X6929Y5406D01* Y5415D02* Y5370D01* X6867D02* X6894D01* X6902Y5379D01* Y5406D01* X6894Y5415D01* X6867D01* X6858Y5406D01* Y5379D01* X6867Y5370D01* X7012Y4819D02* X7091D01* Y4740D01* Y4386D02* Y4307D01* X7012D01* X6657D02* X6579D01* Y4386D01* X6624Y4765D02* X6614Y4764D01* X6606Y4770D01* X6605Y4775D02* X6631D01* X6632Y4771D02* X6634Y4780D01* X6632Y4783D02* X6604D01* X6605Y4788D02* X6613Y4794D01* X6623Y4795D02* X6631Y4789D01* X6630Y4787D02* X6606D01* X6605Y4788D02* X6602Y4779D01* X6606Y4770D01* X6607Y4771D02* X6630D01* X6632D02* X6624Y4765D01* X6625Y4767D02* X6612D01* X6604Y4779D02* X6633D01* X6634Y4780D02* X6631Y4789D01* X6627Y4791D02* X6609D01* X6613Y4794D02* X6623Y4795D01* X6657Y4819D02* X6579D01* Y4740D01* X6519Y4579D02* Y4729D01* X6366D01* X4621Y5441D02* X4567D01* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5415D01* X4692Y5432D02* X4683Y5441D01* X4647D01* X4638Y5432D01* Y5415D01* X4603Y5406D02* X4567D01* X4549Y5441D02* Y5379D01* X4541Y5370D01* X4505D01* X4496Y5379D01* Y5441D01* X4478Y5370D02* X4425D01* Y5441D01* X4398D02* X4354D01* Y5370D01* X4398D01* X4407Y5379D01* Y5397D01* X4398Y5406D01* X4407Y5415D01* X4398Y5441D02* X4407Y5432D01* Y5415D01* X4398Y5406D02* X4354D01* X4336D02* X4283D01* X4256D02* X4265Y5397D01* Y5379D01* X4256Y5370D01* X4221D01* X4212Y5379D01* Y5397D01* X4221Y5406D01* X4194Y5432D02* X4185Y5441D01* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4123D02* X4114Y5370D01* X4078D01* X4069Y5379D01* Y5432D01* X4078Y5441D01* X4114D01* X4123Y5432D01* X4256Y5441D02* X4221D01* X4212Y5432D01* Y5415D01* X4221Y5406D01* X4256D01* X4265Y5415D01* Y5432D01* X4256Y5441D01* X3909Y5370D02* X3856D01* X3883D02* Y5441D01* X3909D02* X3856D01* X3838Y5432D02* X3829Y5441D01* X3794D01* X3785Y5432D01* Y5379D01* X3794Y5370D01* X3829D01* X3838Y5379D01* X3714Y5406D02* X3758D01* X3767Y5415D01* Y5432D01* X3758Y5441D01* X3714D01* Y5370D01* X3687Y5379D02* X3678Y5370D01* X3669D01* X3661Y5379D01* Y5441D01* X3678Y5415D02* X3643D01* X3616Y5406D02* X3607Y5415D01* X3581D01* X3572Y5406D01* Y5379D01* X3581Y5370D01* X3607D01* X3616Y5379D01* X3545Y5397D02* X3509D01* X3501Y5388D01* Y5379D01* X3509Y5370D01* X3545D01* Y5406D01* X3536Y5415D01* X3509D01* X3429Y5343D02* Y5415D01* X3465D01* X3474Y5406D01* Y5379D01* X3465Y5370D01* X3429D01* X3385Y5406D02* X3394Y5415D01* X3403D01* X3412Y5406D01* Y5370D01* X3385D02* Y5406D01* X3376Y5415D01* X3367D01* X3358Y5406D01* Y5415D02* Y5370D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3269Y5432D02* X3261Y5441D01* X3225D01* X3216Y5432D01* Y5379D01* X3225Y5370D01* X3261D01* X3269Y5379D01* X8324Y900D02* X8424Y1000D01* X8324Y1100D01* X8224Y1000D01* X8324Y900D01* Y1200D02* X8124Y1000D01* X8324Y800D01* X8524Y1000D01* X8324Y1200D01* Y1300D02* X8024Y1000D01* X8324Y700D01* X8624Y1000D01* X8324Y1300D01* Y1425D02* Y575D01* D011* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* Y5634D02* Y5687D01* X2347D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2447Y5681D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D02* X2507Y5597D01* X2487D01* X2427Y5564D02* Y5617D01* Y5591D02* X2467D01* X2480Y5577D02* X2487Y5584D01* X2513D01* Y5591D02* Y5564D01* X2533D02* Y5597D01* Y5591D02* X2540Y5597D01* X2547D01* X2553Y5591D01* Y5564D01* Y5591D02* X2560Y5597D01* X2567D01* X2573Y5591D01* Y5564D01* X2587D02* Y5597D01* Y5591D02* X2593Y5597D01* X2600D01* X2607Y5591D01* X2613Y5597D01* X2607Y5591D02* Y5564D01* X2627D02* Y5591D01* X2620Y5597D01* X2613D01* X2693Y5687D02* X2700Y5681D01* X2727D01* Y5654D02* X2700D01* X2693Y5661D01* X2727Y5654D02* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5654D02* X2880Y5661D01* X2873Y5667D01* X2867Y5661D01* X2873Y5654D01* X2893Y5744D02* Y5771D01* X2887Y5777D01* X2880D01* X2867D02* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2853D02* Y5777D01* X2860D02* X2867D01* X2860D02* X2853Y5771D01* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2907Y5777D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2853Y5521D02* Y5481D01* X2860Y5474D02* X2887D01* X2893Y5481D01* Y5521D01* Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2893Y5431D02* X2887Y5437D01* X2860D01* X2853Y5431D01* Y5417D01* Y5391D02* X2860Y5384D01* X2887D01* X2893Y5391D01* Y5431D01* Y5417D02* X2887Y5411D01* X2860D01* X2853Y5417D01* X2840Y5411D02* X2800D01* X2780Y5437D02* X2753D01* X2747Y5431D01* Y5391D01* X2753Y5384D01* X2780D01* X2787Y5391D01* Y5431D01* X2780Y5437D01* X2787D02* X2747Y5384D01* X2733Y5417D02* X2727Y5411D01* X2700D01* X2693Y5417D01* Y5431D01* X2700Y5437D01* X2727D01* X2733Y5431D01* Y5391D01* X2727Y5384D01* X2700D01* X2693Y5391D01* X2673Y5411D02* X2680Y5404D01* Y5391D01* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2640Y5417D02* X2647Y5411D01* X2673D01* X2680Y5417D01* Y5431D01* X2673Y5437D01* X2647D01* X2640Y5431D01* Y5417D01* X2627Y5431D02* X2620Y5437D01* X2593D01* X2587Y5431D01* Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2433Y5411D02* X2460D01* X2467Y5404D01* Y5391D01* X2460Y5384D01* X2433D01* X2427Y5391D01* Y5404D01* X2433Y5411D01* X2460D02* X2467Y5417D01* Y5431D01* X2460Y5437D01* X2433D01* X2427Y5431D01* Y5417D01* X2433Y5411D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* X2387Y5411D02* X2400D01* X2413Y5404D01* Y5391D01* X2407Y5384D01* X2380D01* X2373Y5391D01* X2360Y5384D02* X2320D01* Y5391D01* X2307D02* Y5431D01* X2300Y5437D01* X2307D02* X2267Y5384D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2087Y5474D02* X2060D01* X2053Y5481D01* Y5501D01* X2060Y5507D01* X2080D01* X2087Y5501D01* Y5494D01* X2080Y5487D01* X2053D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* X2033Y5611D02* X2027Y5617D01* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2040Y5584D01* Y5597D01* X2033Y5611D01* X2087Y5654D02* Y5681D01* X2080Y5687D01* X2060D01* X2053Y5681D01* X2040Y5687D02* Y5701D01* X2033Y5707D01* X2053D02* Y5654D01* X2000D02* Y5707D01* X2033D01* X2040Y5687D02* X2033Y5681D01* X2000D01* X2053Y5744D02* Y5797D01* X2067Y5777D02* X2093Y5744D01* X2107D02* Y5797D01* Y5771D02* X2133D01* X2107Y5797D02* X2147D01* X2093D02* X2067Y5777D01* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* X2120Y5654D02* X2133D01* X2127D02* Y5687D01* X2120D01* X2127Y5694D02* X2120D01* Y5701D01* X2127D01* Y5694D01* X2173Y5707D02* X2180D01* Y5654D01* X2187D02* X2173D01* X2160Y5611D02* X2167Y5617D01* X2193D01* X2200Y5611D01* Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2107Y5597D02* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2113D01* X2107Y5571D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2247Y5617D02* X2220D01* X2213Y5611D01* Y5571D01* X2220Y5564D01* X2360Y5617D02* X2320D01* Y5597D01* X2353D01* X2360Y5591D01* Y5571D01* X2353Y5564D01* X2327D01* X2320Y5571D01* X2307Y5611D02* X2300Y5617D01* X2273D01* X2267Y5611D01* X2253D02* Y5571D01* X2247Y5564D01* X2220D01* X2213D02* X2253Y5617D01* X2247D02* X2253Y5611D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2227D02* X2240D01* X2233D02* Y5687D01* X2227D01* Y5694D02* Y5701D01* X2233D01* Y5694D01* X2227D01* X2240Y5771D02* X2213D01* Y5797D02* Y5744D01* X2253D01* X2280D02* X2293D01* X2287D02* Y5797D01* X2280D02* X2287D01* X2253D02* X2213D01* X2320Y5757D02* X2347D01* X2353Y5764D01* Y5771D01* X2347Y5777D01* X2327D01* X2320Y5771D01* Y5751D01* X2327Y5744D01* X2353D01* X2373D02* Y5797D01* X2400Y5777D02* X2373Y5757D01* X2407Y5744D01* X2440Y5751D02* Y5797D01* X2427Y5777D02* X2453D01* X2440Y5751D02* X2447Y5744D01* X2453D01* X2460Y5751D01* X2480Y5744D02* Y5777D01* Y5771D02* X2487Y5777D01* X2507D01* X2513Y5771D01* X2560Y5777D02* X2567Y5771D01* Y5751D01* X2560Y5744D01* X2540D01* X2533Y5751D01* Y5771D01* X2540Y5777D01* X2560D01* X2587Y5744D02* Y5777D01* Y5771D02* X2593Y5777D01* X2613D01* X2620Y5771D01* Y5744D01* X2660Y5784D02* Y5791D01* X2653D01* Y5784D01* X2660D01* X2653Y5777D02* X2660D01* Y5744D01* X2667D02* X2653D01* X2693D02* Y5797D01* X2720Y5777D02* X2693Y5757D01* X2727Y5744D01* X2733Y5701D02* X2727Y5707D01* X2700D01* X2693Y5701D01* Y5687D01* X2680Y5681D02* X2640D01* X2620D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2547Y5654D02* X2560D01* X2553D02* Y5687D01* X2547D01* X2553Y5701D02* Y5694D01* X2547D01* Y5701D01* X2553D01* X3100Y5114D02* X3073D01* X3067Y5121D01* Y5141D01* X3073Y5147D01* X3093D01* X3100Y5141D01* Y5134D01* X3093Y5127D01* X3067D01* X2980Y5114D02* X2973Y5121D01* X2980Y5127D01* X2987Y5121D01* X2980Y5114D01* X3047Y5147D02* X3020D01* X3013Y5141D01* Y5121D01* X3020Y5114D01* X3047D01* Y5167D01* Y5204D02* X3020D01* X3013Y5211D01* Y5231D01* X3020Y5237D01* X3013Y5217D02* X3040D01* X3047Y5224D01* Y5231D01* X3040Y5237D01* X3020D01* X2993D02* X2967D01* X2960Y5231D01* Y5211D01* X2967Y5204D01* X2993D01* Y5257D01* X2927Y5204D02* X2933Y5211D01* X2927Y5217D01* X2920Y5211D01* X2927Y5204D01* X2940Y5167D02* X2920D01* X2913Y5161D01* X2927Y5141D02* X2907D01* X2913Y5161D02* Y5114D01* X2887D02* X2853Y5127D01* X2880Y5147D01* X2853Y5167D02* Y5114D01* X2833Y5134D02* X2827Y5127D01* X2800D01* Y5141D02* X2807Y5147D01* X2827D01* X2833Y5141D01* Y5134D01* Y5114D02* X2807D01* X2800Y5121D01* Y5141D01* X2780Y5147D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2700Y5147D02* X2720D01* X2727Y5141D01* Y5121D01* X2720Y5114D01* X2700D01* X2693Y5121D01* Y5141D01* X2700Y5147D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D01* X2587Y5141D01* Y5147D02* Y5114D01* X2547D02* X2560D01* X2553D02* Y5147D01* X2547D01* Y5154D02* X2553D01* Y5161D01* X2547D01* Y5154D01* X2287D02* X2293Y5147D01* X2287Y5141D01* X2280Y5147D01* X2287Y5154D01* Y5127D02* X2293Y5121D01* X2287Y5114D01* X2280Y5121D01* X2287Y5127D01* X2227Y5114D02* X2240D01* X2233D02* Y5167D01* X2227D01* X2213Y5204D02* Y5237D01* X2220D02* X2240D01* X2247Y5231D01* X2273Y5237D02* X2267Y5231D01* Y5237D02* Y5204D01* X2273Y5237D02* X2293D01* X2300Y5231D01* Y5204D01* X2320Y5217D02* X2347D01* X2353Y5224D01* Y5204D02* X2327D01* X2320Y5211D01* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* X2400Y5237D02* X2373D01* X2387Y5257D02* Y5211D01* X2393Y5204D01* X2400D01* X2407Y5211D01* X2447Y5217D02* X2440Y5211D01* X2447Y5204D01* X2453Y5211D01* X2447Y5217D01* Y5231D02* X2453Y5237D01* X2447Y5244D01* X2440Y5237D01* X2447Y5231D01* X2533Y5237D02* Y5224D01* X2547Y5204D01* X2553Y5211D01* X2560Y5204D01* X2553Y5211D02* Y5224D01* X2560Y5204D02* X2573Y5224D01* Y5237D01* X2587D02* Y5224D01* X2600Y5204D01* X2607Y5211D01* Y5224D01* Y5211D02* X2613Y5204D01* X2627Y5224D01* Y5237D01* X2640D02* Y5224D01* X2653Y5204D01* X2660Y5211D01* X2667Y5204D01* X2660Y5211D02* Y5224D01* X2667Y5204D02* X2680Y5224D01* Y5237D01* X2713Y5217D02* X2720Y5211D01* X2713Y5204D01* X2707Y5211D01* X2713Y5217D01* X2747D02* X2773D01* X2780Y5224D01* Y5231D01* X2773Y5237D01* X2753D01* X2747Y5231D01* Y5211D01* X2753Y5204D01* X2780D01* X2800D02* Y5257D01* X2827Y5237D02* X2800Y5217D01* X2833Y5204D01* X2860D02* Y5251D01* X2853Y5231D02* X2873D01* X2860Y5251D02* X2867Y5257D01* X2887D01* X2907Y5384D02* X2947Y5437D01* X2940D02* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907Y5391D01* Y5431D01* X2913Y5437D01* X2940D01* X2893Y5521D02* X2887Y5527D01* X2860D01* X2853Y5521D01* X2840Y5501D02* X2800D01* X2780Y5527D02* X2753D01* X2747Y5521D01* Y5481D01* X2753Y5474D01* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2787D02* X2747Y5474D01* X2733Y5507D02* X2727Y5501D01* X2700D01* X2693Y5507D01* Y5521D01* X2700Y5527D01* X2727D01* X2733Y5521D01* Y5481D01* X2727Y5474D01* X2700D01* X2693Y5481D01* X2640Y5507D02* X2647Y5501D01* X2673D01* X2680Y5494D01* Y5481D01* X2673Y5474D01* X2647D01* X2640Y5481D01* Y5494D01* X2647Y5501D01* X2673D02* X2680Y5507D01* Y5521D01* X2673Y5527D01* X2647D01* X2640Y5521D01* Y5507D01* X2627Y5521D02* X2620Y5527D01* X2593D01* X2587Y5521D01* Y5494D02* X2593Y5501D01* X2620D01* X2627Y5494D01* Y5481D01* X2620Y5474D01* X2593D01* X2587Y5481D01* Y5521D01* X2573Y5527D02* X2533Y5474D01* X2520D02* X2480D01* X2500D02* Y5527D01* X2487Y5514D01* X2460Y5501D02* X2467Y5507D01* Y5521D01* X2460Y5527D01* X2433D01* X2427Y5521D01* Y5507D01* X2433Y5501D01* X2460D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2373Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* X2300Y5437D02* X2273D01* X2267Y5431D01* Y5391D01* X2273Y5384D01* X2300D01* X2307Y5391D01* X2320D02* X2353Y5411D01* X2360Y5417D01* Y5431D01* X2353Y5437D01* X2327D01* X2320Y5431D01* X2000Y5127D02* X2027D01* X2033Y5134D01* Y5141D01* X2027Y5147D01* X2007D01* X2000Y5141D01* Y5121D01* X2007Y5114D01* X2033D01* X2053D02* Y5147D01* Y5141D02* X2060Y5147D01* X2067D01* X2073Y5141D01* X2080Y5147D01* X2073Y5141D02* Y5114D01* X2107Y5121D02* X2113Y5114D01* X2140D01* Y5141D01* X2133Y5147D01* X2113D01* X2140Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2087Y5204D02* Y5231D01* X2080Y5237D01* X2060D01* X2053Y5231D01* Y5237D02* Y5204D01* X2040D02* X2000D01* X2020D02* Y5257D01* X2040D02* X2000D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2127Y5204D01* X2133D01* X2140Y5211D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2213D02* X2220Y5237D01* X2193Y5231D02* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* X2173D01* Y5161D01* X2180D01* Y5154D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2162Y4813D02* Y4780D01* X2155Y4773D01* X2142D01* X2135Y4780D01* Y4813D01* X2188D01* Y4780D01* X2182Y4773D01* X2168D01* X2162Y4780D01* X1761Y4795D02* X1774Y4808D01* Y4755D01* X1794D02* X1754D01* X2074Y4718D02* Y4678D01* X2135Y4687D02* X2188D01* Y4740D02* X2155Y4727D01* X2135Y4720D01* X2155Y4727D02* Y4753D01* X2135Y4760D02* X2155Y4753D01* X2188Y4740D01* Y4707D02* Y4667D01* Y4653D02* Y4613D01* Y4633D02* X2135D01* Y4600D02* Y4560D01* Y4580D02* X2188D01* X2175Y4593D01* X2192Y4462D02* X2152D01* X2172Y4482D02* Y4442D01* X1908Y4396D02* Y4356D01* X1928Y4376D02* X1888D01* X1733Y4317D02* X1687D01* X1680Y4310D01* Y4283D01* X1687Y4277D01* X1733D01* X1687Y4263D02* X1680Y4257D01* Y4230D01* X1687Y4223D01* X1700D01* X1707Y4230D01* Y4257D01* X1713Y4263D01* X1727D01* X1733Y4257D01* Y4230D01* X1727Y4223D01* X1707Y4210D02* Y4177D01* X1700Y4170D01* X1687D01* X1680Y4157D02* Y4117D01* Y4137D02* X1733D01* X1720Y4150D01* X1707Y4177D02* X1713Y4170D01* X1727D01* X1733Y4177D01* Y4210D01* X1680D01* Y4177D01* X1687Y4170D01* X1521Y3748D02* Y3801D01* X1554D01* X1561Y3795D01* Y3781D01* X1574Y3775D02* X1601D01* X1614Y3801D02* X1574D01* Y3748D01* X1561D02* X1541Y3775D01* X1521D02* X1554D01* X1561Y3781D01* X1574Y3748D02* X1614D01* X1634D02* X1628Y3755D01* X1634Y3748D02* X1661D01* X1668Y3755D01* Y3768D01* X1661Y3775D01* X1634D01* X1628Y3781D01* Y3795D01* X1634Y3801D01* X1661D01* X1668Y3795D01* X1681Y3775D02* X1714D01* X1721Y3768D01* Y3755D02* Y3768D01* X1714Y3775D02* X1721Y3781D01* Y3795D01* X1714Y3801D01* X1734D02* X1774D01* X1788D02* X1828Y3748D01* Y3801D01* X1788Y3748D02* Y3801D01* X1754D02* Y3748D01* X1721Y3755D02* X1714Y3748D01* X1681D01* Y3801D01* X1714D01* X1870Y3567D02* Y3620D01* X1903D01* X1910Y3614D01* Y3600D01* X1903Y3594D01* X1870D01* X1890D02* X1910Y3567D01* X1923Y3574D02* Y3587D01* Y3574D02* X1930Y3567D01* X1957D01* X1963Y3574D01* Y3620D01* X1977D02* Y3594D01* X2017D01* X2030Y3600D02* Y3620D01* X2010D02* Y3567D01* X2030Y3574D02* X2037Y3567D01* X2063D01* X2070Y3574D01* Y3594D01* X2063Y3600D01* X2030D01* Y3620D02* X2070D01* X2123Y3855D02* X2109Y3869D01* X2163D01* Y3889D02* Y3849D01* X1797Y2787D02* X1837D01* X1817D02* Y2841D01* X1804Y2827D01* X1784Y2841D02* X1777Y2787D01* X1764Y2814D01* X1751Y2787D01* X1744Y2841D01* X1731D02* X1691D01* X1717Y2814D02* X1691D01* Y2841D02* Y2787D01* X1677Y2841D02* Y2794D01* X1671Y2787D01* X1644D01* X1637Y2794D01* Y2807D01* Y2331D02* Y2318D01* X1644Y2311D01* X1671D01* X1677Y2318D01* Y2364D01* X1731D02* X1691D01* Y2311D01* Y2338D02* X1717D01* X1744Y2364D02* X1751Y2311D01* X1764Y2338D01* X1777Y2311D01* X1784Y2364D01* X1797Y2358D02* X1804Y2364D01* X1831D01* X1837Y2358D01* Y2344D01* X1831Y2338D01* X1797Y2318D01* Y2311D01* X1837D01* X2435Y1858D02* Y1912D01* X2455D02* X2415D01* X2401Y1905D02* X2395Y1912D01* X2368D01* X2361Y1905D01* Y1865D01* X2368Y1858D01* X2395D01* X2401Y1865D01* X2308Y1885D02* X2341D01* X2348Y1892D01* Y1905D01* X2341Y1912D01* X2308D01* Y1858D01* X2295D02* X2255D01* Y1912D01* X2201Y1885D02* X2235D01* X2241Y1892D01* Y1905D01* X2235Y1912D01* X2201D01* Y1858D01* X1620Y1431D02* Y1391D01* Y1411D02* X1673D01* X1660Y1424D01* X2075Y1095D02* X2115D01* X2095Y1075D02* Y1115D01* X3380Y2032D02* Y2085D01* X3367D02* Y2032D01* X3333D01* X3327Y2038D01* Y2052D01* Y2078D02* X3333Y2085D01* X3367D01* X3420D02* Y2032D01* Y2058D02* X3380D01* X3367D02* X3333D01* X3327Y2052D02* X3333Y2058D01* X3327Y2065D01* Y2078D01* X3313Y2085D02* X3273D01* X3293D02* Y2032D01* X3307Y2045D01* X2905Y2953D02* X2865D01* X2885Y2933D02* Y2973D01* X2875Y3085D02* X2888Y3071D01* X2835D01* Y3051D02* Y3091D01* X2841Y3105D02* X2835Y3111D01* Y3138D01* X2841Y3145D01* X2881D01* Y3105D02* X2888Y3111D01* Y3138D01* X2881Y3145D01* X2888Y3158D02* X2835D01* X2888Y3198D01* X2835D01* X3347Y3568D02* X3353Y3575D01* X3387D01* Y3522D01* X3353D01* X3347Y3528D01* Y3542D01* X3327Y3535D02* X3313Y3522D01* Y3575D01* X3293D02* X3333D01* X3347Y3568D02* Y3555D01* X3353Y3548D01* X3347Y3542D01* X3353Y3548D02* X3387D01* X3400Y3528D02* X3407Y3522D01* X3433D01* X3440Y3528D01* Y3542D01* X3433Y3548D01* X3407D01* X3400Y3555D01* Y3568D01* X3407Y3575D01* X3433D01* X3440Y3568D01* X4170Y3770D02* Y3810D01* X4177D01* X4197Y3777D01* X4203Y3770D01* X4217D01* X4223Y3777D01* Y3803D01* X4217Y3810D01* X4223Y3857D02* Y3830D01* X4217Y3823D01* X4177D01* X4170Y3830D01* X4183Y3837D02* X4170Y3823D01* Y3830D02* Y3857D01* X4177Y3863D01* X4217D01* X4223Y3857D01* X4260Y3960D02* X4300D01* X4280D02* Y4013D01* X4267Y4000D01* X4358Y4070D02* Y4057D01* X4365Y4050D01* X4392D01* X4398Y4057D01* Y4103D01* X4412D02* X4452D01* X4485D02* X4498Y4070D01* X4472D01* X4438Y4077D02* X4412D01* Y4103D02* Y4050D01* X4465D02* X4472Y4070D01* X4485Y4103D01* X4518D02* Y4050D01* X4505D02* X4498Y4070D01* X4518Y4103D02* X4558Y4050D01* Y4103D01* X5247Y3896D02* X5253Y3889D01* X5247Y3863D02* Y3836D01* X5227Y3849D02* X5273D01* X5280Y3856D01* Y3863D01* X5273Y3869D01* X5280Y3889D02* X5247D01* Y3896D02* Y3916D01* X5253Y3923D01* X5273Y3943D02* X5253D01* X5247Y3949D01* Y3969D01* X5253Y3976D01* X5273Y3943D02* X5280Y3949D01* Y3969D01* X5273Y3976D01* X5253D01* X5247Y4023D02* Y4003D01* Y3996D02* X5280D01* X5253D02* X5247Y4003D01* Y4023D02* X5253Y4029D01* X5280D01* X5247Y4129D02* X5267Y4103D01* X5280D02* X5227D01* X5233Y4069D02* Y4063D01* X5240D01* Y4069D01* X5233D01* X5247Y4063D02* Y4069D01* X5280D01* Y4063D02* Y4076D01* X5267Y4103D02* X5280Y4136D01* X5337Y4009D02* X5343Y4016D01* X5337Y4023D01* Y4029D01* X5343Y4036D01* X5370D01* Y4016D02* X5343D01* X5337Y4009D02* Y4003D01* X5343Y3996D01* X5337D02* X5370D01* Y3983D02* X5343D01* X5337Y3976D01* Y3969D01* X5343Y3963D01* X5370D02* X5343D01* X5337Y3956D01* Y3949D01* X5343Y3943D01* X5337D02* X5370D01* X5350Y3923D02* Y3896D01* X5357Y3889D01* X5363D01* X5370Y3876D02* X5317D01* X5370Y3836D02* X5317D01* X5343D02* Y3876D01* X5337Y3896D02* Y3916D01* X5343Y3923D01* X5370D01* Y3896D01* X5363Y3889D01* X5407Y3869D02* X5460D01* Y3843D01* X5453Y3836D01* X5433D01* X5427Y3843D01* Y3869D01* X5447Y3889D02* Y3916D01* X5440Y3923D01* X5433D01* X5427Y3916D01* Y3896D01* X5433Y3889D01* X5453D01* X5460Y3896D01* Y3923D01* X5453Y3809D02* X5460Y3803D01* X5453Y3796D01* X5447Y3803D01* X5453Y3809D01* X5407Y3763D02* Y3743D01* X5413Y3736D01* X5460D01* X5433Y3749D02* Y3729D01* X5427Y3703D02* X5447Y3676D01* X5460D02* X5407D01* X5433Y3656D02* X5427Y3649D01* Y3629D01* X5433Y3623D01* X5453D01* X5433Y3656D02* X5440D01* X5447Y3649D01* Y3623D01* X5453D02* X5460Y3629D01* Y3656D01* X5447Y3676D02* X5460Y3709D01* X5453Y3583D02* X5460Y3589D01* X5453Y3596D01* X5447Y3589D01* X5453Y3583D01* X5427Y3556D02* X5440D01* X5460Y3543D01* X5453Y3536D01* X5460Y3529D02* X5440Y3516D01* X5427D01* X5440Y3536D02* X5453D01* X5460Y3529D01* X5427Y3503D02* X5440D01* X5460Y3489D01* X5453Y3483D01* X5460Y3476D02* X5440Y3463D01* X5427D01* X5440Y3483D02* X5453D01* X5460Y3476D01* X5427Y3449D02* X5440D01* X5460Y3436D01* X5453Y3429D01* X5440D02* X5453D01* X5460Y3423D01* X5440Y3409D01* X5427D01* X5253Y3463D02* X5247Y3476D01* X5227Y3463D02* X5280D01* Y3449D02* Y3409D01* X5253D02* Y3436D01* X5227Y3449D02* Y3409D01* X5280D01* X5337Y3449D02* X5350D01* X5363Y3443D01* X5370Y3436D01* Y3409D01* X5317D01* Y3436D01* X5323Y3443D01* X5337Y3449D01* X5343Y3463D02* Y3503D01* X5363Y3516D02* X5370Y3523D01* Y3549D01* X5363Y3556D01* X5343D01* X5337Y3549D01* Y3516D01* X5317D01* Y3556D01* X5363Y3569D02* X5370Y3576D01* Y3603D01* X5363Y3609D01* X5323D01* X5317Y3603D01* Y3576D01* X5323Y3569D01* X5337D01* X5343Y3576D01* Y3603D01* X5337Y3609D01* X5363Y3623D02* X5323D01* X5317Y3629D01* Y3656D01* X5323Y3663D01* X5363D01* X5370Y3656D01* Y3629D01* X5363Y3623D01* X5370D02* X5317Y3663D01* X5350Y3676D02* X5343Y3683D01* Y3709D01* X5350Y3716D01* X5363D01* X5370Y3709D01* Y3683D01* X5363Y3676D01* X5323D01* X5317Y3683D01* Y3709D01* X5323Y3716D01* X5363Y3729D02* X5370Y3736D01* Y3763D01* X5363Y3769D01* X5343D01* X5337Y3763D01* Y3729D01* X5317D01* Y3769D01* X5247Y3756D02* X5253Y3763D01* X5260D01* X5280D02* Y3736D01* X5273Y3729D01* X5253D01* X5247Y3736D01* Y3756D01* X5227Y3783D02* X5280D01* X5267D02* X5247Y3809D01* X5280Y3816D02* X5267Y3783D01* X5260Y3763D02* X5267Y3756D01* Y3729D01* X5280Y3703D02* Y3689D01* Y3696D02* X5227D01* Y3689D01* Y3663D02* Y3623D01* X5280D01* Y3663D01* X5253Y3649D02* Y3623D01* Y3609D02* Y3569D01* Y3543D02* Y3516D01* X5227Y3503D02* X5247Y3476D01* X5280Y3503D01* Y3516D02* X5227D01* Y3556D01* X4232Y3409D02* X4218Y3422D01* X4272D01* Y3442D02* Y3402D01* Y3389D02* X4238Y3362D01* X4245Y3349D02* X4238Y3362D01* X4218Y3389D01* X4272Y3349D02* X4218D01* Y3329D02* X4225Y3335D01* X4218Y3329D02* Y3302D01* X4225Y3295D01* X4265D01* X4272Y3302D01* Y3329D01* X4265Y3335D01* Y3282D02* X4272Y3275D01* Y3249D01* X4265Y3242D01* X4225D01* X4218Y3249D01* Y3275D01* X4225Y3282D01* X4265D01* X4272Y3229D02* Y3189D01* X4218D01* X4225Y3175D02* X4218Y3169D01* Y3142D01* X4225Y3135D01* X4265D01* X4272Y3142D01* Y3169D01* X4265Y3175D01* X4257Y2815D02* X4270Y2828D01* Y2775D01* X4290D02* X4250D01* X4223Y2788D02* X4237Y2775D01* Y2782D02* X4230Y2775D01* X4237Y2782D02* Y2822D01* X4230Y2828D01* X4203D01* X4197Y2822D01* Y2782D01* X4203Y2775D01* X4230D01* X4185Y2314D02* Y2274D01* X4165Y2294D02* X4205D01* X4705Y2314D02* Y2274D01* X4685Y2294D02* X4725D01* X5646Y1198D02* X5606D01* X5626Y1178D02* Y1218D01* X5765Y2085D02* Y2125D01* X5785Y2105D02* X5745D01* X6427Y1959D02* X6414D01* X6407Y1953D01* Y1919D01* X6461D01* Y1953D01* X6454Y1959D01* X6441D01* X6434Y1953D01* X6427Y1959D01* X6434Y1953D02* Y1919D01* X6461Y1906D02* Y1866D01* Y1886D02* X6407D01* Y1906D02* Y1866D01* X6414Y1853D02* X6407Y1846D01* Y1819D01* X6414Y1813D01* X6454D01* X6461Y1819D01* Y1846D01* X6454Y1853D01* X6461Y1759D02* X6407D01* Y1793D01* X6414Y1799D01* X6427D01* X6434Y1793D01* Y1759D01* X7209Y1059D02* Y1046D01* X7215Y1039D01* X7242D01* X7249Y1046D01* X7269Y1079D02* X7282Y1093D01* Y1039D01* X7302D02* X7262D01* X7249Y1046D02* Y1093D01* X7333Y1039D02* Y1086D01* X7327Y1066D02* X7347D01* X7333Y1086D02* X7340Y1093D01* X7360D01* X7412Y1073D02* X7432D01* X7439Y1066D01* Y1059D01* X7432Y1053D01* X7406D01* X7412Y1073D02* X7406Y1066D01* Y1046D01* X7412Y1039D01* X7439D01* X7518Y1093D02* Y1039D01* X7491D01* X7484Y1046D01* Y1066D01* X7491Y1073D01* X7518D01* X7596Y1066D02* X7590Y1073D01* X7570D01* X7563Y1066D01* Y1046D01* X7570Y1039D01* X7590D01* X7596Y1046D01* X7642Y1073D02* X7668D01* X7675Y1066D01* Y1046D01* X7668Y1039D01* X7642D01* Y1093D01* X7727Y1073D02* X7747D01* X7754Y1066D01* Y1039D01* X7727D01* X7720Y1046D01* Y1053D01* X7727Y1059D01* X7754D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7923D02* X7957Y1214D01* Y1181D02* X7923Y1214D01* Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1328D02* Y1288D01* X7937Y1274D02* Y1241D01* Y1341D02* X7930Y1348D01* Y1374D01* X7937Y1381D01* X7950D01* X7957Y1374D01* Y1348D01* X7950Y1341D01* X7910D01* X7903Y1348D01* Y1374D01* X7910Y1381D01* X7950Y1394D02* X7910D01* X7903Y1401D01* Y1428D01* X7910Y1434D01* X7950D01* X7957Y1428D01* Y1401D01* X7950Y1394D01* X7957D02* X7903Y1434D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* Y1501D02* X7910D01* X7903Y1508D01* Y1534D01* X7910Y1541D01* X7950D01* X7903D02* X7957Y1501D01* X7950D02* X7957Y1508D01* Y1534D01* X7950Y1541D01* X7957Y1561D02* Y1588D01* X7950Y1594D01* X7910D01* X7903D02* X7957Y1554D01* X7950D02* X7957Y1561D01* X7950Y1554D02* X7910D01* X7903Y1561D01* Y1588D01* X7910Y1594D01* X7923Y1621D02* X7930Y1628D01* X7923Y1634D01* Y1641D01* X7930Y1648D01* X7957D01* Y1628D02* X7930D01* X7923Y1621D02* Y1614D01* X7930Y1608D01* X7923D02* X7957D01* Y1661D02* X7923D01* X7930D02* X7923Y1668D01* Y1674D01* X7930Y1681D01* X7957D01* Y1701D02* X7930D01* X7923Y1694D01* Y1688D01* X7930Y1681D01* X8020D02* X8013Y1688D01* Y1694D01* X8020Y1701D01* X8047D01* Y1681D02* X8020D01* X8013Y1674D01* Y1668D01* X8020Y1661D01* X8013D02* X8047D01* Y1608D02* X8013D01* X8020D02* X8013Y1614D01* Y1621D01* X8020Y1628D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* X8020Y1628D01* X8013Y1621D01* X8000Y1594D02* X7993Y1588D01* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1561D01* Y1588D01* X8040Y1594D01* X8000D01* X7993D02* X8047Y1554D01* X7993Y1541D02* Y1501D01* X8013D01* Y1534D01* X8020Y1541D01* X8040D01* X8047Y1534D01* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X7225Y753D02* X7265Y806D01* Y799D02* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7265Y799D01* X7298Y753D02* X7292Y759D01* X7298Y766D01* X7305Y759D01* X7298Y753D01* X7338D02* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7372Y799D01* Y759D01* X7365Y753D01* X7338D01* X7332D02* X7372Y806D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D02* X7492Y869D01* X7505Y876D02* X7498D01* X7492D02* Y843D01* X7505Y786D02* X7512Y779D01* X7518Y786D01* X7525D01* X7532Y779D01* Y753D01* X7512D02* Y779D01* X7505Y786D02* X7498D01* X7492Y779D01* Y786D02* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* Y753D02* Y779D01* X7452Y786D01* X7445D02* X7438Y779D01* X7452Y786D02* X7445D01* X7438D02* Y753D01* X7392D02* X7385Y759D01* Y799D01* X7392Y806D01* X7418D01* X7425Y799D01* Y759D01* X7418Y753D01* X7392D01* X7385D02* X7425Y806D01* X7438Y843D02* Y876D01* Y869D02* X7445Y876D01* X7452D01* X7458Y869D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y869D01* X7452Y876D01* X7425Y896D02* X7385Y843D01* X7392D02* X7418D01* X7425Y849D01* Y889D01* X7418Y896D01* X7392D01* X7385Y889D01* Y849D01* X7392Y843D01* X7372Y896D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7232D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7105Y863D02* X7072D01* X7012Y876D02* X7045Y843D01* X7012D02* X7045Y876D01* X7072D02* X7105D01* X7125Y883D02* X7138Y896D01* Y843D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* X6921Y3002D02* X6881D01* Y3008D01* X6915Y3028D01* X6921Y3035D01* Y3048D01* X6915Y3055D01* X6888D01* X6881Y3048D01* X6868Y3055D02* X6861Y3028D01* X6848Y3002D01* X6835Y3028D01* X6828Y3055D01* X6815Y3002D02* X6775D01* Y3055D01* X6634Y3292D02* X6674D01* X6654Y3272D02* Y3312D01* X6755Y4541D02* Y4488D01* X6795D01* X6828D02* X6815Y4515D01* X6808Y4541D01* X6828Y4488D02* X6841Y4515D01* X6848Y4541D01* X6868Y4528D02* X6881Y4541D01* Y4488D01* X6901D02* X6861D01* X7209Y4859D02* Y4845D01* X7215Y4839D01* X7242D01* X7249Y4845D01* X7262D02* X7295Y4865D01* X7302Y4872D01* Y4885D01* X7295Y4892D01* X7269D01* X7262Y4885D01* X7249Y4892D02* Y4845D01* X7262D02* Y4839D01* X7302D01* X7333D02* Y4885D01* X7327Y4865D02* X7347D01* X7333Y4885D02* X7340Y4892D01* X7360D01* X7406Y4852D02* X7432D01* X7439Y4859D01* Y4865D01* X7432Y4872D01* X7412D01* X7406Y4865D01* Y4845D01* X7412Y4839D01* X7439D01* X7518Y4892D02* Y4839D01* X7491D01* X7484Y4845D01* Y4865D01* X7491Y4872D01* X7518D01* X7596Y4865D02* X7590Y4872D01* X7570D01* X7563Y4865D01* Y4845D01* X7570Y4839D01* X7590D01* X7596Y4845D01* X7642Y4872D02* X7668D01* X7675Y4865D01* Y4845D01* X7668Y4839D01* X7642D01* Y4892D01* X7727Y4872D02* X7747D01* X7754Y4865D01* Y4839D01* X7727D01* X7720Y4845D01* Y4852D01* X7727Y4859D01* X7754D01* X7923Y4702D02* X7930Y4709D01* X7923Y4715D01* X7930Y4709D02* X7957D01* Y4729D02* X7930D01* X7923Y4722D01* Y4715D01* Y4702D02* Y4695D01* X7930Y4689D01* X7923D02* X7957D01* Y4675D02* X7930D01* X7923Y4669D01* Y4662D01* X7930Y4655D01* X7957D02* X7930D01* X7923Y4649D01* Y4642D01* X7930Y4635D01* X7923D02* X7957D01* X7993Y4615D02* Y4589D01* X8000Y4582D01* X8040D01* X8047Y4589D01* Y4635D02* X8013D01* X8020D02* X8013Y4642D01* Y4649D01* X8020Y4655D01* X8013Y4662D01* X8020Y4655D02* X8047D01* X8013Y4662D02* Y4669D01* X8020Y4675D01* X8047D01* Y4689D02* X8013D01* Y4695D02* Y4702D01* Y4715D02* Y4722D01* X8020Y4729D01* X8047D01* Y4709D02* X8020D01* X8013Y4715D02* X8020Y4709D01* X8013Y4702D01* Y4695D02* X8020Y4689D01* X8040Y4529D02* X8047Y4535D01* Y4562D01* Y4582D02* X7993Y4622D01* Y4615D02* X8000Y4622D01* X8040D01* X8047Y4615D01* Y4589D01* Y4562D02* X8040Y4569D01* X8020D01* X8013Y4562D01* Y4529D01* X7993D01* Y4569D01* X7950Y4582D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X7950D01* X7957Y4615D01* Y4589D01* X7950Y4582D01* X7957D02* X7903Y4622D01* Y4569D02* X7957Y4529D01* X7950D02* X7957Y4535D01* Y4562D01* X7950Y4569D01* X7910D01* X7903Y4562D01* Y4535D01* X7910Y4529D01* X7950D01* Y4489D02* X7957Y4495D01* X7950Y4502D01* X7943Y4495D01* X7950Y4489D01* X7910Y4462D02* X7903Y4455D01* Y4429D01* X7910Y4422D01* X7950D01* Y4409D02* X7957Y4402D01* Y4375D01* X7950Y4369D01* X7910D01* X7903Y4375D01* Y4402D01* X7910Y4409D01* X7937Y4369D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4429D02* Y4455D01* X7950Y4462D01* X7910D01* X7903D02* X7957Y4422D01* X7950D02* X7957Y4429D01* X8040Y4489D02* X8047Y4495D01* X8040Y4502D01* X8033Y4495D01* X8040Y4489D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7957D02* X7923Y4242D01* Y4209D02* X7957Y4242D01* X7937Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7923Y4302D02* Y4269D01* X7392Y5004D02* X7385Y5011D01* Y5051D01* X7392Y5058D01* X7418D01* X7425Y5051D01* Y5011D01* X7418Y5004D01* X7392D01* X7385D02* X7425Y5058D01* X7452Y5038D02* X7458Y5031D01* X7465Y5038D01* X7472D01* X7478Y5031D01* Y5004D01* X7458D02* Y5031D01* X7452Y5038D02* X7445D01* X7438Y5031D01* Y5038D02* Y5004D01* X7492D02* Y5038D01* X7498D02* X7505D01* X7492Y5031D02* X7498Y5038D01* X7505D02* X7512Y5031D01* Y5004D01* X7532D02* Y5031D01* X7525Y5038D01* X7518D01* X7512Y5031D01* X7505Y5128D02* X7512Y5121D01* X7518Y5128D01* X7525D01* X7532Y5121D01* Y5094D01* X7512D02* Y5121D01* X7505Y5128D02* X7498D01* X7492Y5121D01* Y5128D02* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7452Y5128D02* X7445D01* X7438D02* Y5094D01* X7458D02* Y5121D01* X7452Y5128D01* X7445D02* X7438Y5121D01* X7425Y5148D02* X7385Y5094D01* X7392D02* X7418D01* X7425Y5101D01* Y5141D01* X7418Y5148D01* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7372Y5051D02* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7365D01* X7372Y5011D01* Y5051D01* Y5058D02* X7332Y5004D01* X7298D02* X7305Y5011D01* X7298Y5018D01* X7292Y5011D01* X7298Y5004D01* X7232D02* X7225Y5011D01* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225D02* X7265Y5058D01* X7298Y5094D02* X7292Y5101D01* X7298Y5108D01* X7305Y5101D01* X7298Y5094D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7258Y5121D02* X7265Y5128D01* Y5141D01* X7258Y5148D01* X7232D01* X7225Y5141D01* Y5128D01* X7232Y5121D01* X7258D01* X7265Y5114D01* Y5101D01* X7258Y5094D01* X7232D01* X7225Y5101D01* Y5114D01* X7232Y5121D01* X7212Y5148D02* X7172D01* Y5128D01* X7205D01* X7212Y5121D01* Y5101D01* X7205Y5094D01* X7178D01* X7172Y5101D01* X7158Y5094D02* X7118D01* X7138D02* Y5148D01* X7125Y5134D01* X7105Y5128D02* X7072D01* X7105Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7045D02* X7012Y5094D01* Y5038D02* Y5011D01* X7018Y5004D01* X7038D01* X7045Y5011D01* X7012Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7072Y5024D02* X7105D01* X7118Y5004D02* X7158D01* X7178D02* X7172Y5011D01* Y5051D01* X7212Y5058D02* X7172Y5004D01* X7178D02* X7205D01* X7212Y5011D01* Y5051D01* X7205Y5058D01* X7178D01* X7172Y5051D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X5862Y4833D02* Y4806D01* X5869Y4799D01* X5889D01* X5896Y4806D01* Y4833D02* Y4786D01* X5889Y4779D01* X5869D01* X5862Y4786D01* X5842Y4799D02* Y4826D01* X5836Y4833D01* X5816D01* X5809Y4826D01* Y4833D02* Y4799D01* X5789Y4819D02* X5762D01* X5756Y4813D01* Y4806D01* X5762Y4799D01* X5789D01* Y4826D01* X5782Y4833D01* X5762D01* X5722Y4826D02* X5729Y4833D01* X5736D01* X5742Y4826D01* Y4799D01* X5722D02* Y4826D01* X5716Y4833D01* X5709D01* X5702Y4826D01* Y4833D02* Y4799D01* X5682Y4826D02* X5676Y4833D01* X5656D01* X5649Y4826D01* Y4833D02* Y4799D01* X5629D02* X5602D01* X5596Y4806D01* Y4826D01* X5602Y4833D01* X5622D01* X5629Y4826D01* Y4819D01* X5622Y4813D01* X5596D01* X5569Y4819D02* X5582D01* Y4806D01* X5576Y4799D01* X5549D01* X5542Y4806D01* Y4846D01* X5549Y4853D01* X5576D01* X5582Y4846D01* X5538Y4694D02* X5578D01* X5558D02* Y4748D01* X5545Y4734D01* X5525Y4748D02* Y4701D01* X5518Y4694D01* X5492D01* X5485Y4701D01* Y4748D01* X5469Y4799D02* Y4826D01* X5462Y4833D01* X5442D01* X5436Y4826D01* Y4833D02* Y4799D01* X5396D02* X5409D01* X5402D02* Y4833D01* X5396D01* Y4839D02* X5402D01* Y4846D01* X5396D01* Y4839D01* X5418Y4741D02* X5412Y4748D01* X5385D01* X5378Y4741D01* Y4701D01* X5385Y4694D01* X5412D01* X5418Y4701D01* X5432Y4694D02* Y4748D01* X5465D01* X5472Y4741D01* Y4728D01* X5465Y4721D01* X5432D01* X5309Y4799D02* X5282D01* X5276Y4806D01* Y4826D01* X5282Y4833D01* X5276Y4813D02* X5302D01* X5309Y4819D01* Y4826D01* X5302Y4833D01* X5282D01* X5256D02* X5229D01* X5222Y4826D01* Y4806D01* X5229Y4799D01* X5256D01* Y4853D01* X5202Y4819D02* X5176D01* X5169Y4813D01* Y4806D01* X5176Y4799D01* X5202D01* Y4826D01* X5196Y4833D01* X5176D01* X5156Y4799D02* Y4853D01* X5136Y4833D01* X5116Y4853D01* Y4799D01* D016* X1772Y1260D02* X1906D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D013* X4204Y4561D02* X4227Y4539D01* X4138D01* Y4506D02* Y4573D01* Y4595D02* X4171Y4606D01* X4227Y4628D01* X4171Y4650D01* X4138Y4661D01* X4171Y4650D02* Y4606D01* X4227Y4684D02* Y4750D01* X4138D01* X4149Y4773D02* X4138Y4784D01* Y4828D01* X4149Y4839D01* X4216D01* X4227Y4828D01* Y4784D01* X4216Y4773D01* X4182Y4750D02* Y4706D01* X4072Y5900D02* X4139Y5989D01* X4128D02* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4050Y5978D02* X4039Y5989D01* X3994D01* X3983Y5978D01* Y5911D01* Y5933D02* X3994Y5944D01* X4039D01* X4050Y5933D01* Y5911D01* X4039Y5900D01* X3994D01* X3983Y5911D01* X3961Y5900D02* X3894D01* X3928D02* Y5989D01* X3906Y5967D01* X4194Y5922D02* X4206Y5911D01* X4194Y5900D01* X4183Y5911D01* X4194Y5922D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4406D02* X4339Y5900D01* X4350D02* X4394D01* X4406Y5911D01* Y5978D01* X4394Y5989D01* X4350D01* X4339Y5978D01* Y5911D01* X4350Y5900D01* X4428D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8750Y3528D02* X8839Y3461D01* X8828D02* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* Y3250D02* Y3206D01* Y3250D02* X8828Y3261D01* X8761D01* X8750Y3250D01* Y3206D01* X8761Y3194D01* X8828D01* X8839Y3206D01* Y3194D02* X8750Y3261D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3150D02* X8794Y3139D01* X8750D01* Y3172D02* X8806D01* X8794D02* X8806Y3161D01* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D02* X8794Y3050D01* X8750D01* X8806Y3072D02* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8772Y2961D01* X8761Y2972D01* X8750Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* X8750Y2717D02* X8761Y2728D01* X8828D01* X8839Y2717D01* Y2672D01* X8828Y2661D01* X8761D02* X8750Y2672D01* Y2717D01* Y2728D02* X8839Y2661D01* X8828D02* X8761D01* X8750Y2639D02* X8839Y2572D01* X8794Y2550D02* Y2483D01* X8828Y2461D02* X8839Y2450D01* Y2406D01* X8828Y2461D02* X8761D01* X8750Y2450D01* Y2406D01* X8761Y2394D01* X8828D01* X8839Y2406D01* Y2394D02* X8750Y2461D01* X8761Y2350D02* X8750Y2339D01* X8761Y2328D01* X8772Y2339D01* X8761Y2350D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* M02*gerbv-2.7.0/example/ekf2/l5.grb0000644000175000017500000035545513421555714016033 0ustar carstencarsten%FSLAX13Y13*% %ADD010C,0.004*% %ADD011C,0.006*% %ADD012C,0.008*% %ADD013C,0.010*% %ADD014C,0.012*% %ADD015C,0.014*% %ADD016C,0.016X0.006*% %ADD017C,0.018*% %ADD018C,0.020*% %ADD019C,0.024*% %ADD020C,0.028*% %ADD021C,0.031*% %ADD022C,0.035*% %ADD023C,0.039*% %ADD024C,0.047*% %ADD025C,0.051*% %ADD026C,0.055*% %ADD027C,0.059*% %ADD028C,0.063*% %ADD029C,0.067*% %ADD030C,0.071*% %ADD030C,0.071*% %ADD031C,0.075*% %ADD032C,0.079*% %ADD033C,0.083*% %ADD034C,0.087*% %ADD035C,0.098*% %ADD036C,0.118*% %ADD037C,0.138*% %ADD038C,0.157*% %ADD039C,0.177*% %ADD040C,0.205*% %ADD041C,0.015*% %ADD042C,0.018*% %ADD043C,0.020*% %ADD044C,0.024X0.012*% %ADD045C,0.028*% %ADD046C,0.031*% %ADD047C,0.035*% %ADD048C,0.039*% %ADD049C,0.043X0.028*% %ADD050C,0.047*% %ADD051C,0.051*% %ADD052C,0.055*% %ADD053C,0.059*% %ADD054C,0.063*% %ADD055C,0.067*% %ADD056C,0.071*% %ADD057C,0.075*% %ADD058C,0.079*% %ADD059C,0.083*% %ADD060C,0.087*% %ADD061C,0.098*% %ADD062C,0.102*% %ADD063C,0.110*% %ADD064C,0.118*% %ADD065C,0.138*% %ADD066C,0.157*% %ADD067C,0.177*% %ADD068C,0.205*% %ADD069C,0.221*% %ADD070C,0.004*% %ADD071R,0.024X0.024*% %ADD072R,0.028X0.028*% %ADD073R,0.031X0.031*% %ADD074R,0.035*% %ADD075R,0.039X0.039*% %ADD076R,0.043X0.043X0.028*% %ADD077R,0.047X0.047*% %ADD078R,0.051X0.051*% %ADD079R,0.055X0.055*% %ADD080R,0.059X0.059*% %ADD081R,0.063X0.063*% %ADD082R,0.067X0.067*% %ADD083R,0.071X0.071*% %ADD084R,0.075X0.075*% %ADD085R,0.079X0.079*% %ADD086R,0.083X0.083*% %ADD087R,0.087X0.087*% %ADD088R,0.098X0.098*% %ADD089R,0.102X0.102*% %ADD090R,0.110X0.110*% %ADD091R,0.118X0.118*% %ADD092R,0.138X0.138*% %ADD093R,0.157X0.157*% %ADD094R,0.177X0.177*% %ADD095R,0.205X0.205*% %ADD096R,0.221X0.221*% %ADD097R,0.256X0.256*% %ADD098R,0.315X0.315*% %ADD099R,0.394X0.394*% %ADD090R,0.110X0.110*% %ADD100R,0.018X0.018*% %ADD101R,0.020X0.020*% %ADD110C,0.005*% %ADD120C,0.022*% %ADD125R,0.03260.326*% %ADD126R,0.362X0.362*% %ADD135C,0.095*% %ADD169C,0.237*% %ADD188R,0.095X0.095*% %ADD300C,0.019*% %ADD302R,0.019X0.019*% %ADD306C,0.032*% %ADD308R,0.032X0.032*% %ADD309C,0.041*% %ADD315C,0.045*% %ADD317R,0.045X0.045*% %ADD318C,0.090*% %ADD319C,0.090*% %ADD320R,0.090X0.090*% %ADD322C,0.094*% %ADD325C,0.114*% %ADD326R,0.114X0.114*% %ADD328C,0.122*% %ADD329R,0.122X0.122*% %ADD331C,0.126*% %ADD334C,0.130*% %ADD337C,0.142*% %ADD338R,0.142X0.142*% %ADD340C,0.161*% %ADD346C,0.209*% %ADD352C,0.241*% %ADD356C,0.260*% %ADD357C,0.350*% %ADD359R,0.350X0.350*% %ADD362R,0.354X0.354*% %ADD367C,0.014*% %ADD360C,0.354*% %ADD364C,0.012*% %ADD370C,0.016*% %ADD380R,0.219X0.219*% %ADD381C,0.036*% %ADD382C,0.036*% %ADD383R,0.036X0.036*% %ADD384C,0.009*% %ADD385C,0.009*% %ADD386R,0.009X0.009*% %ADD387C,0.040*% %ADD388C,0.040*% %ADD389R,0.040X0.040*% D012* X3269Y5379D02* X3261Y5370D01* X3225D01* X3216Y5379D01* Y5432D01* X3225Y5441D01* X3261D01* X3269Y5432D01* X3296Y5415D02* X3323D01* X3332Y5406D01* Y5379D01* X3323Y5370D01* X3296D01* X3287Y5379D01* Y5406D01* X3296Y5415D01* X3358Y5370D02* Y5415D01* Y5406D02* X3367Y5415D01* X3376D01* X3385Y5406D01* X3394Y5415D01* X3385Y5406D02* Y5370D01* X3394Y5415D02* X3403D01* X3412Y5406D01* Y5370D01* X3429D02* X3465D01* X3474Y5379D01* Y5406D01* X3465Y5415D01* X3429D01* Y5343D01* X3509Y5415D02* X3536D01* X3545Y5406D01* Y5370D01* X3509D01* X3501Y5379D01* Y5388D01* X3509Y5397D01* X3545D01* X3616Y5379D02* X3607Y5370D01* X3581D01* X3572Y5379D01* Y5406D01* X3581Y5415D01* X3607D01* X3616Y5406D01* X3643Y5415D02* X3678D01* X3661Y5441D02* Y5379D01* X3669Y5370D01* X3678D01* X3687Y5379D01* X3714Y5370D02* Y5441D01* X3758D01* X3767Y5432D01* Y5415D01* X3758Y5406D01* X3714D01* X3838Y5379D02* X3829Y5370D01* X3794D01* X3785Y5379D01* Y5432D01* X3794Y5441D01* X3829D01* X3838Y5432D01* X3856Y5441D02* X3909D01* X3883D02* Y5370D01* X3856D02* X3909D01* X4123Y5432D02* X4114Y5441D01* X4078D01* X4069Y5432D01* Y5379D01* X4078Y5370D01* X4114D01* X4123Y5379D01* X4194D02* X4185Y5370D01* X4149D01* X4141Y5379D01* Y5432D01* X4149Y5441D01* X4185D01* X4194Y5432D01* X4221Y5406D02* X4256D01* X4265Y5397D01* Y5379D01* X4256Y5370D01* X4221D01* X4212Y5379D01* Y5397D01* X4221Y5406D01* X4212Y5415D01* Y5432D01* X4221Y5441D01* X4256D01* X4265Y5432D01* Y5415D01* X4256Y5406D01* X4283D02* X4336D01* X4354D02* X4398D01* X4407Y5397D02* Y5379D01* X4398Y5370D01* X4354D01* Y5441D01* X4398D01* X4407Y5432D01* Y5415D01* X4398Y5406D01* X4407Y5397D01* X4425Y5441D02* Y5370D01* X4478D01* X4505D02* X4496Y5379D01* Y5441D01* X4505Y5370D02* X4541D01* X4549Y5379D01* Y5441D01* X4567D02* X4621D01* X4638Y5432D02* Y5415D01* X4647Y5406D01* X4603D02* X4567D01* Y5441D02* Y5370D01* X4621D01* X4638Y5379D02* X4647Y5370D01* X4683D01* X4692Y5379D01* Y5397D01* X4683Y5406D01* X4647D01* X4638Y5432D02* X4647Y5441D01* X4683D01* X4692Y5432D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5388D02* X5243Y5379D01* X5234Y5370D01* X5225Y5379D01* X5234Y5388D01* X5287Y5370D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5370D02* X5845D01* X5862D02* Y5415D01* Y5406D02* X5871Y5415D01* X5898D01* X5907Y5406D01* Y5370D01* X5818D02* Y5441D01* X5845D02* X5791D01* X5934Y5370D02* Y5415D01* Y5406D02* X5942Y5415D01* X5969D01* X5978Y5406D01* Y5370D01* X6005Y5388D02* X6040D01* X6049Y5397D01* Y5406D01* X6040Y5415D01* X6014D01* X6005Y5406D01* Y5379D01* X6014Y5370D01* X6049D01* X6076D02* Y5415D01* Y5406D02* X6085Y5415D01* X6111D01* X6120Y5406D01* X6218Y5441D02* Y5406D01* X6271D01* X6262Y5441D02* Y5370D01* X6396D02* X6378Y5397D01* Y5415D01* X6396Y5441D01* X6431D02* Y5370D01* X6485D01* X6502Y5379D02* X6511Y5370D01* X6547D01* X6556Y5379D01* Y5406D01* X6547Y5415D01* X6502D01* Y5441D01* X6556D01* X6591D02* X6609Y5415D01* Y5397D01* X6591Y5370D01* X8324Y1425D02* Y575D01* Y700D02* X8624Y1000D01* X8324Y1300D01* X8024Y1000D01* X8324Y700D01* Y800D02* X8124Y1000D01* X8324Y1200D01* X8524Y1000D01* X8324Y800D01* Y1100D02* X8424Y1000D01* X8324Y900D01* X8224Y1000D01* X8324Y1100D01* X7449Y1000D02* X7740D01* X7799Y1059D01* Y1350D02* Y1197D01* Y1059D01* X7899Y1000D02* X8749D01* X8700D02* Y4937D01* X8750D02* X7900D01* X7799Y5037D02* Y5887D01* Y5762D02* X8099Y5462D01* X7799Y5162D01* X7499Y5462D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y4637D02* X8024Y4937D01* X8324Y5237D01* X8624Y4937D01* X8324Y4637D01* Y4512D02* Y5362D01* Y5137D02* X8524Y4937D01* X8324Y4737D01* X8124Y4937D01* X8324Y5137D01* X8224Y5462D02* X7374D01* X7499D02* X7799Y5762D01* Y5850D02* X1500D01* Y5887D02* Y5037D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1850Y4937D02* X1500D01* Y4543D01* X1441D01* Y4465D01* Y1472D02* Y1394D01* X1500D01* Y1000D01* X1850D01* X1820Y894D02* X1829Y886D01* Y877D01* X1820Y868D01* X1784D01* X1829Y850D02* X1793D01* X1784Y859D01* Y886D01* X1793Y894D01* X1820D01* X1731Y921D02* X1740D01* Y850D01* X1749D02* X1731D01* X1687Y877D02* X1651D01* X1642Y868D01* Y859D01* X1651Y850D01* X1687D01* Y886D01* X1678Y894D01* X1651D01* X1616Y886D02* X1607Y894D01* X1580D01* X1571Y886D01* Y859D01* X1580Y850D01* X1607D01* X1616Y859D01* X1544Y886D02* X1536Y894D01* X1509D01* X1500Y886D01* X1509Y877D01* X1536D01* X1544Y868D01* Y859D01* X1536Y850D01* X1509D01* X1500Y859D01* X1936Y877D02* X1980D01* X1936Y894D02* X1980D01* X2078Y903D02* X2096Y921D01* Y850D01* X2122D02* X2069D01* X2167D02* X2158Y859D01* X2167Y868D01* X2176Y859D01* X2167Y850D01* X2211Y859D02* Y912D01* X2220Y921D01* X2256D01* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y850D02* X2264Y921D01* X2327D02* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2336D02* X2282Y850D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2093Y5797D02* X2067Y5777D01* X2093Y5744D01* X2107Y5771D02* X2133D01* X2147Y5797D02* X2107D01* Y5744D01* X2053D02* Y5797D01* X2067Y5777D02* X2053Y5771D01* X2040Y5797D02* X2000D01* Y5744D01* X2040D01* X2027Y5771D02* X2000D01* Y5681D02* X2033D01* X2040Y5687D01* X2033Y5707D02* X2000D01* Y5654D01* X2027Y5617D02* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2040Y5584D01* Y5597D01* X2027Y5617D02* X2033Y5611D01* X2040Y5597D01* X2053Y5591D02* X2093D01* X2107Y5597D02* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2113D01* X2107Y5571D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2087D02* X2060D01* X2053Y5481D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* X2053Y5487D02* X2080D01* X2087Y5494D01* Y5501D01* X2080Y5507D01* X2060D01* X2053Y5501D01* Y5481D01* X2040Y5437D02* X2000D01* Y5384D01* Y5411D02* X2027D01* X2053Y5397D02* X2060Y5404D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* Y5417D02* X2080D01* X2087Y5411D01* X2107Y5417D02* X2140Y5384D01* X2107D02* X2140Y5417D01* X2180Y5487D02* X2187Y5481D01* X2180Y5474D01* X2173Y5481D01* X2180Y5487D01* X2213Y5564D02* X2253Y5617D01* X2247D02* X2253Y5611D01* Y5571D01* X2247Y5564D01* X2220D01* X2213Y5571D01* Y5611D01* X2220Y5617D01* X2247D01* X2200Y5597D02* X2193Y5591D01* X2167D01* X2160Y5611D02* X2167Y5617D01* X2193D01* X2200Y5611D01* Y5571D01* X2193Y5564D01* X2167D01* X2160Y5571D01* X2167Y5591D02* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2053Y5654D02* Y5707D01* X2033D02* X2040Y5701D01* Y5687D01* X2053Y5681D02* X2060Y5687D01* X2080D01* X2087Y5681D01* Y5654D01* X2120D02* X2133D01* X2127D02* Y5687D01* X2120D01* X2127Y5701D02* Y5694D01* X2120D01* Y5701D01* X2127D01* X2173Y5707D02* X2180D01* Y5654D01* X2187D02* X2173D01* X2227D02* X2240D01* X2233D02* Y5687D01* X2227D01* X2233Y5694D02* X2227D01* Y5701D01* X2233D01* Y5694D01* X2240Y5771D02* X2213D01* Y5797D02* Y5744D01* X2253D01* X2280D02* X2293D01* X2287D02* Y5797D01* X2280D02* X2287D01* X2253D02* X2213D01* X2267Y5584D02* X2273Y5591D01* X2300D01* X2307Y5584D01* Y5571D01* X2300Y5564D01* X2273D01* X2267Y5571D01* Y5611D01* X2273Y5617D01* X2300D01* X2267Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2320D02* X2347D01* X2353Y5661D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2373Y5681D02* X2413D01* X2427D02* X2460D01* X2467Y5687D01* Y5701D01* X2460Y5707D01* X2427D01* Y5654D01* X2447Y5681D02* X2467Y5654D01* X2480Y5661D02* X2487Y5654D01* X2480Y5667D02* X2507D01* X2513Y5674D01* Y5681D01* X2507Y5687D01* X2487D01* X2480Y5681D01* Y5661D01* X2487Y5654D02* X2513D01* X2547D02* X2560D01* X2553D02* Y5687D01* X2547D01* X2553Y5694D02* Y5701D01* X2547D01* Y5694D01* X2553D01* X2620Y5681D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2553Y5591D02* X2560Y5597D01* X2567D01* X2573Y5591D01* Y5564D01* X2553D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513Y5584D02* X2487D01* X2480Y5577D01* Y5571D02* X2487Y5564D01* X2513D01* Y5591D01* X2507Y5597D01* X2487D01* X2467Y5617D02* Y5564D01* X2480Y5571D02* Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2360Y5617D02* X2320D01* Y5597D02* X2353D01* X2360Y5591D01* Y5571D01* X2353Y5564D01* X2327D01* X2320Y5571D01* Y5597D02* Y5617D01* X2307Y5611D02* X2300Y5617D01* X2320Y5634D02* Y5687D01* X2347D01* X2320Y5757D02* X2347D01* X2353Y5764D01* Y5771D01* X2347Y5777D01* X2327D01* X2320Y5771D01* Y5751D01* X2327Y5744D01* X2353D01* X2373D02* Y5797D01* X2400Y5777D02* X2373Y5757D01* X2407Y5744D01* X2440Y5751D02* Y5797D01* X2427Y5777D02* X2453D01* X2440Y5751D02* X2447Y5744D01* X2453D01* X2460Y5751D01* X2480Y5744D02* Y5777D01* Y5771D02* X2487Y5777D01* X2507D01* X2513Y5771D01* X2540Y5777D02* X2560D01* X2567Y5771D01* Y5751D01* X2560Y5744D01* X2540D01* X2533Y5751D01* Y5771D01* X2540Y5777D01* X2587Y5744D02* Y5777D01* Y5771D02* X2593Y5777D01* X2613D01* X2620Y5771D01* Y5744D01* X2653D02* X2667D01* X2660D02* Y5777D01* X2653D01* X2660Y5791D02* Y5784D01* X2653D01* Y5791D01* X2660D01* X2693Y5797D02* Y5744D01* X2727D02* X2693Y5757D01* X2720Y5777D01* X2693Y5661D02* X2700Y5654D01* X2727D01* X2733Y5661D01* Y5674D01* X2727Y5681D01* X2700D01* X2693Y5687D01* X2640Y5681D02* X2680D01* X2693Y5687D02* Y5701D01* X2700Y5707D01* X2727D01* X2733Y5701D01* X2747Y5687D02* X2773D01* X2760Y5707D02* Y5661D01* X2767Y5654D01* X2773D01* X2780Y5661D01* X2800Y5654D02* Y5687D01* Y5681D02* X2807Y5687D01* X2827D01* X2833Y5681D01* X2873Y5667D02* X2880Y5661D01* X2873Y5654D01* X2867Y5661D01* X2873Y5667D01* X2993Y5654D02* Y5707D01* X3000Y5681D02* X2960D01* Y5707D01* Y5744D02* Y5797D01* Y5771D02* X3000D01* Y5797D02* Y5744D01* X2907Y5797D02* Y5744D01* X2933D01* X2940Y5751D01* Y5771D01* X2933Y5777D01* X2907D01* X2880D02* X2887D01* X2893Y5771D01* Y5744D01* X2873D02* Y5771D01* X2880Y5777D02* X2873Y5771D01* X2867Y5777D01* X2860D01* X2853Y5771D01* Y5777D02* Y5744D01* X2827Y5764D02* X2840D01* Y5751D01* X2833Y5744D01* X2807D01* X2800Y5751D01* Y5791D01* X2807Y5797D01* X2833D01* X2840Y5791D01* X2893Y5527D02* X2853Y5474D01* Y5481D02* X2860Y5474D01* X2887D01* X2893Y5481D01* Y5521D01* X2887Y5527D01* X2860D01* X2853Y5521D01* Y5481D01* X2840Y5501D02* X2800D01* X2787Y5527D02* X2747Y5474D01* Y5481D02* X2753Y5474D01* X2780D01* X2787Y5481D01* Y5521D01* X2780Y5527D01* X2753D01* X2747Y5521D01* Y5481D01* X2733Y5507D02* X2727Y5501D01* X2700D01* X2693Y5507D01* Y5521D01* X2700Y5527D01* X2727D01* X2733Y5521D01* Y5481D01* X2727Y5474D01* X2700D01* X2693Y5481D01* X2673Y5501D02* X2680Y5507D01* Y5521D01* X2673Y5527D01* X2647D01* X2640Y5521D01* Y5507D01* X2647Y5501D01* X2640Y5494D01* Y5481D01* X2647Y5474D01* X2673D01* X2680Y5481D01* Y5494D01* X2673Y5501D01* X2647D01* X2627Y5521D02* X2620Y5527D01* X2593D01* X2587Y5521D01* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* X2573Y5527D02* X2533Y5474D01* X2520D02* X2480D01* X2500D02* Y5527D01* X2487Y5514D01* X2460Y5501D02* X2433D01* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2373Y5521D02* X2380Y5527D01* X2407D01* X2413Y5521D01* Y5507D01* X2400Y5501D01* X2387D02* X2400D01* X2413Y5494D01* Y5481D01* X2407Y5474D01* X2380D01* X2373Y5481D01* X2360Y5474D02* X2320D01* Y5481D01* X2307D02* Y5521D01* X2320D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* X2307D02* X2300Y5474D01* X2273D01* X2267Y5481D01* Y5474D02* X2307Y5527D01* Y5521D02* X2300Y5527D01* X2273D01* X2267Y5521D01* Y5481D01* Y5391D02* Y5431D01* X2273Y5437D01* X2300D01* X2307Y5431D01* Y5437D02* X2267Y5384D01* Y5391D02* X2273Y5384D01* X2300D01* X2307Y5391D01* X2320D02* X2353Y5411D01* X2360Y5417D01* Y5431D01* X2353Y5437D01* X2327D01* X2320Y5431D01* X2307D02* Y5391D01* X2320D02* Y5384D01* X2360D01* X2373Y5391D02* X2380Y5384D01* X2407D01* X2413Y5391D01* Y5404D01* X2400Y5411D01* X2387D01* X2400D02* X2413Y5417D01* Y5431D01* X2407Y5437D01* X2380D01* X2373Y5431D01* X2433Y5411D02* X2427Y5417D01* Y5431D01* X2433Y5437D01* X2460D01* X2467Y5431D01* Y5417D01* X2460Y5411D01* X2467Y5404D01* Y5391D01* X2460Y5384D01* X2433D01* X2427Y5391D01* Y5404D01* X2433Y5411D01* X2460D01* X2487Y5424D02* X2500Y5437D01* Y5384D01* X2480D02* X2520D01* X2533D02* X2573Y5437D01* X2587Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2593Y5437D01* X2620D01* X2627Y5431D01* X2647Y5411D02* X2673D01* X2680Y5404D01* Y5391D01* X2673Y5384D01* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2640Y5417D01* Y5431D01* X2647Y5437D01* X2673D01* X2680Y5431D01* Y5417D01* X2673Y5411D01* X2693Y5391D02* X2700Y5384D01* X2727D01* X2733Y5391D01* Y5431D01* X2727Y5437D01* X2700D01* X2693Y5431D01* Y5417D01* X2700Y5411D01* X2727D01* X2733Y5417D01* X2747Y5391D02* Y5431D01* X2753Y5437D01* X2780D01* X2787Y5431D01* Y5391D01* X2780Y5384D01* X2753D01* X2747Y5391D01* Y5384D02* X2787Y5437D01* X2800Y5411D02* X2840D01* X2853Y5417D02* X2860Y5411D01* X2887D01* X2893Y5417D01* Y5431D02* X2887Y5437D01* X2860D01* X2853Y5431D01* Y5417D01* Y5391D02* X2860Y5384D01* X2887D01* X2893Y5391D01* Y5431D01* X2907Y5391D02* Y5431D01* X2913Y5437D01* X2940D01* X2947Y5431D01* Y5391D01* X2940Y5384D01* X2913D01* X2907Y5391D01* Y5384D02* X2947Y5437D01* X2553Y5154D02* Y5161D01* X2547D01* Y5154D01* X2553D01* X2547Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2587D02* Y5147D01* Y5141D02* X2593Y5147D01* X2613D01* X2620Y5141D01* Y5114D01* X2647D02* Y5161D01* X2640Y5141D02* X2660D01* X2647Y5161D02* X2653Y5167D01* X2673D01* X2720Y5147D02* X2727Y5141D01* Y5121D01* X2720Y5114D01* X2700D01* X2693Y5121D01* Y5141D01* X2700Y5147D01* X2720D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* X2760D01* X2753Y5154D01* Y5127D01* X2760Y5121D01* X2773D01* X2800Y5127D02* X2827D01* X2833Y5134D01* Y5141D01* X2827Y5147D01* X2807D01* X2800Y5141D01* Y5121D01* X2807Y5114D01* X2833D01* X2853Y5167D02* Y5114D01* Y5127D02* X2880Y5147D01* X2853Y5127D02* X2887Y5114D01* X2913D02* Y5161D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2993Y5204D02* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* Y5257D02* Y5204D01* X3013Y5211D02* Y5231D01* X3020Y5237D01* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* Y5211D02* X3020Y5204D01* X3047D01* Y5167D02* Y5114D01* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* X2980Y5127D02* X2973Y5121D01* X2980Y5114D01* X2987Y5121D01* X2980Y5127D01* X3067D02* X3093D01* X3100Y5134D01* Y5141D01* X3093Y5147D01* X3073D01* X3067Y5141D01* Y5121D01* X3073Y5114D01* X3100D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2800Y5257D02* Y5204D01* X2780D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2780Y5231D01* Y5224D01* X2773Y5217D01* X2747D01* X2713Y5204D02* X2720Y5211D01* X2713Y5217D01* X2707Y5211D01* X2713Y5204D01* X2680Y5237D02* Y5224D01* X2667Y5204D01* X2660Y5224D02* Y5211D01* X2667Y5204D02* X2660Y5211D01* X2653Y5204D01* X2640Y5224D01* Y5237D01* X2627D02* Y5224D01* X2613Y5204D01* X2607Y5211D01* Y5224D02* Y5211D01* X2600Y5204D01* X2587Y5224D01* Y5237D01* X2573D02* Y5224D01* X2560Y5204D01* X2553Y5224D02* Y5211D01* X2560Y5204D02* X2553Y5211D01* X2547Y5204D01* X2533Y5224D01* Y5237D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5204D02* X2440Y5211D01* X2447Y5217D01* X2453Y5211D01* X2447Y5204D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2400Y5237D02* X2373D01* X2353Y5224D02* X2347Y5217D01* X2320D01* Y5211D02* Y5231D01* X2327Y5237D01* X2347D01* X2353Y5231D01* Y5224D01* Y5204D02* X2327D01* X2320Y5211D01* X2300Y5204D02* Y5231D01* X2293Y5237D01* X2273D01* X2267Y5231D01* Y5237D02* Y5204D01* X2247Y5231D02* X2240Y5237D01* X2220D01* X2213Y5231D01* Y5237D02* Y5204D01* X2227Y5167D02* X2233D01* Y5114D01* X2240D02* X2227D01* X2287D02* X2280Y5121D01* X2287Y5127D01* X2293Y5121D01* X2287Y5114D01* Y5154D02* X2293Y5147D01* X2287Y5141D01* X2280Y5147D01* X2287Y5154D01* X2000Y5127D02* X2027D01* X2033Y5134D01* Y5141D01* X2027Y5147D01* X2007D01* X2000Y5141D01* Y5121D01* X2007Y5114D01* X2033D01* X2073Y5141D02* X2067Y5147D01* X2060D01* X2053Y5141D01* Y5147D02* Y5114D01* X2073D02* Y5141D01* X2080Y5147D02* X2073Y5141D01* X2080Y5147D02* X2087D01* X2093Y5141D01* Y5114D01* X2113Y5147D02* X2133D01* X2140Y5141D01* Y5114D01* X2113D01* X2107Y5121D01* Y5127D01* X2113Y5134D01* X2140D01* X2173Y5114D02* X2187D01* X2180D02* Y5147D01* X2173D01* Y5154D02* X2180D01* Y5161D01* X2173D01* Y5154D01* X2193Y5204D02* X2167D01* X2160Y5211D01* Y5231D01* X2167Y5237D01* X2187D01* X2193Y5231D01* Y5224D01* X2187Y5217D01* X2160D01* X2140Y5211D02* X2133Y5204D01* X2127D01* X2120Y5211D01* Y5257D01* X2107Y5237D02* X2133D01* X2087Y5204D02* Y5231D01* X2080Y5237D01* X2060D01* X2053Y5231D01* Y5237D02* Y5204D01* X2040D02* X2000D01* X2020D02* Y5257D01* X2040D02* X2000D01* X2830Y3820D02* X2170D01* X2162Y3815D01* X2161Y3806D01* X2169Y3800D01* X2170D01* X2917D01* X2937Y3780D01* X3150D01* X3180Y3750D01* Y3690D01* X3120Y3630D01* Y3464D01* X3138Y3446D01* X3140D01* Y3442D01* X3229Y3418D02* X3249D01* X3263Y3430D02* Y3451D01* X3252Y3462D01* X3237D01* X3221Y3478D01* Y3503D01* X3250Y3532D01* X3271D01* X3261Y3550D02* X3230Y3581D01* Y3740D01* X3160Y3810D01* X2950D01* X2900Y3860D01* X2730D01* X2690Y3900D01* X2679Y3874D02* X2678Y3865D01* X2670Y3860D01* X2170D01* X2162Y3855D01* X2161Y3846D01* X2169Y3840D01* X2170D01* X2830D01* X2831D01* X2839Y3834D01* X2838Y3825D01* X2830Y3820D01* X2822Y3779D02* Y3698D01* X2732Y3608D01* Y3529D01* X2720Y3517D01* Y3493D01* X2773Y3440D01* Y3219D01* X2742Y3188D01* Y3226D02* X2709Y3193D01* Y3038D01* X2672Y3069D02* X2651Y3090D01* Y3205D01* X2672Y3226D01* Y3269D02* X2695Y3246D01* Y3060D01* X2657Y3022D01* Y2969D01* X2624Y2936D01* X2694Y2961D02* Y2986D01* X2722Y3014D01* Y3130D01* X2743Y3151D01* X2786Y3158D02* X2787D01* X2766Y3137D01* Y2997D01* X2538Y2769D01* X2410D01* X2355Y2714D01* X2274D01* X2196Y2636D01* X2124D01* X2088Y2635D02* X2105Y2618D01* X2195D01* X2278Y2701D01* X2370D01* X2422Y2753D01* X2545D01* X2787Y2995D01* Y3115D01* X2547Y3191D02* Y3188D01* X2491Y3132D01* Y3105D01* X2477Y3091D01* X2461D01* X2470Y3114D02* X2459D01* X2388Y3043D01* X2262D01* X2205Y2986D01* X2104D01* X1932Y2814D01* Y2621D01* X2001Y2552D01* X2008D01* X1997Y2532D02* X1915Y2614D01* Y2829D01* X2177Y3091D01* X2408D01* X2471Y3154D01* X2544Y2970D02* X2516D01* X2470Y2924D01* X2419D01* X2304Y2809D01* X2171D01* X2061Y2699D01* X2046D01* X2034Y2687D01* X2017Y2665D02* Y2696D01* X2033Y2712D01* X2052D01* X2170Y2830D01* X2295D01* X2402Y2937D01* X2460D01* X2519Y2996D01* X2553D01* X2617Y3061D01* X2621Y3035D02* X2609D01* X2544Y2970D01* X2560Y2890D02* X2599D01* X2676Y2967D01* Y3005D01* X2709Y3038D01* X2560Y2890D02* X2545Y2875D01* Y2848D01* X2531Y2834D01* X2418D01* X2322Y2738D01* X2262D01* X2199Y2675D01* X2161D01* X2135Y2676D02* X2221Y2762D01* X2288D01* X2390Y2864D01* X2433D01* X2523Y2954D01* X2592D01* X2611Y2973D01* Y3008D01* X2672Y3069D01* X2621Y3035D02* X2638Y3052D01* X2617Y3067D02* Y3061D01* X2638Y3052D02* Y3105D01* X2629Y3114D01* Y3152D02* Y3151D01* X2628D01* X2585Y3108D01* Y3047D01* X2564Y3026D01* X2523D01* X2446Y2949D01* X2383D01* X2284Y2850D01* X2168D01* X2115Y2797D01* X2099D01* X2000Y2698D01* Y2658D01* X2021Y2637D01* X2050Y2659D02* X2069D01* X2073Y2655D01* X2197D01* X2268Y2726D01* X2338D01* X2427Y2815D01* X2548D01* X2694Y2961D01* X2624Y2936D02* X2548D01* X2528Y2916D01* Y2896D01* X2481Y2849D01* X2405D01* X2306Y2750D01* X2249D01* X2193Y2694D01* X2461Y3091D02* X2392Y3022D01* X2282D01* X2203Y2943D01* X2094D01* X1949Y2798D01* Y2629D01* X2007Y2571D01* X2022D01* X2023Y2597D02* X2005D01* X1966Y2636D01* Y2721D01* X2014Y2769D01* Y2799D01* X2087Y2872D01* X2108D01* X2153Y2917D01* X2246D01* X2332Y3003D01* X2409D01* X2446Y3040D01* Y3056D01* X2459Y3069D01* X2481D01* X2503Y3091D01* Y3123D01* X2550Y3170D01* X2565D01* X2589Y3194D01* X2587Y3152D02* X2555D01* X2519Y3116D01* Y3068D01* X2467Y3016D01* X2449D01* X2424Y2991D01* Y2978D01* X2407Y2961D01* X2359D01* X2267Y2869D01* X2125D01* X2076Y2820D01* Y2794D01* X1983Y2701D01* Y2648D01* X2009Y2622D01* Y2618D01* X2000Y2429D02* X2045D01* X2104Y2370D01* X2270D01* X2271D01* X2278Y2355D02* X2270Y2350D01* X2160D01* X2152Y2345D01* X2151Y2336D01* X2159Y2330D01* X2160D01* X2270D01* X2271D01* X2279Y2324D01* X2278Y2315D01* X2270Y2310D01* X2120D01* X2112Y2305D01* X2111Y2296D01* X2119Y2290D01* X2120D01* X2468D01* X2481Y2303D01* Y2352D01* X2495Y2366D01* X2511Y2178D02* Y2153D01* X2319Y1961D01* X1657D01* X1620Y1924D01* X1729Y2052D02* X2073D01* X2087Y2038D01* X2084Y2078D02* X2070Y2064D01* X1734D01* X1691Y2107D01* Y2168D01* X1706Y2183D01* Y2209D01* X1696Y2219D01* X1662D01* X1573Y2260D02* Y2221D01* X1583Y2211D01* X1598D01* X1606Y2219D01* X1625D01* X1633Y2211D01* X1654D01* X1662Y2219D01* X1573Y2142D02* Y2177D01* X1581Y2185D01* X1604D01* X1612Y2177D01* Y2122D01* X1631Y2103D01* X1678D01* X1729Y2052D01* X2016Y1987D02* X2259D01* X2349Y2077D01* X2232Y2049D02* X2223Y2058D01* Y2108D01* X2211Y2102D02* Y2060D01* X2200Y2049D01* X2211Y2102D02* X2179Y2134D01* X2015D01* X1950Y2199D01* Y2356D01* X1926Y2380D01* X1744D01* X1679Y2445D01* Y2546D01* X1659Y2566D01* X1634D01* X1613Y2587D01* Y2640D01* X1600Y2653D01* X1578D01* X1573Y2648D01* Y2614D01* Y2732D02* Y2693D01* X1588Y2678D01* X1603D01* X1611Y2670D01* X1642D01* X1650Y2678D01* X1680D01* X1691Y2667D01* Y2451D01* X1750Y2392D01* X1931D01* X1962Y2361D01* Y2205D01* X2021Y2146D01* X2185D01* X2223Y2108D01* X2422Y1931D02* X2451D01* X2758Y2238D01* Y2425D01* X3009Y2676D01* Y2768D01* X3081Y2840D01* Y2994D01* X3077Y2998D01* Y3088D01* X3174Y3185D01* Y3231D01* X3184Y3308D02* X3089D01* X2903Y3122D01* Y2997D01* X2721Y2815D01* Y2735D01* X2637Y2651D01* Y2632D01* X2607Y2602D01* X2532D01* X2520Y2614D01* X2444D01* X2426Y2596D01* Y2584D01* X2399Y2557D01* X2362D01* X2312Y2507D01* X2334Y2481D02* X2360Y2507D01* X2499D01* X2555Y2563D01* X2625D01* X2736Y2674D01* Y2799D01* X2930Y2993D01* Y3120D01* X3074Y3264D01* X3199D01* X3224Y3289D01* X3196Y3296D02* X3184Y3308D01* X3168Y3375D02* X3160Y3370D01* X2940D01* X2932Y3365D01* X2931Y3356D01* X2939Y3350D01* X2940D01* X2905Y3440D02* X2897D01* X2878Y3421D01* Y3003D01* X2535Y2660D01* X2417D01* X2395Y2638D01* X2336D01* X2307Y2609D01* X2253D01* X2233Y2629D02* X2282D01* X2312Y2659D01* X2360D01* X2438Y2737D01* X2550D01* X2809Y2996D01* Y3174D01* X2801Y3182D01* Y3225D01* X2805Y3229D01* X2745Y3506D02* X2833Y3418D01* Y3225D01* X2843Y3215D01* Y3185D01* X2831Y3173D01* Y2997D01* X2554Y2720D01* X2464D01* X2440Y2696D01* X2459Y2679D02* Y2688D01* X2475Y2704D01* X2559D01* X2855Y3000D01* Y3427D01* X2899Y3471D01* X2940Y3410D02* X3221D01* X3229Y3418D01* X3269Y3508D02* X3319Y3558D01* Y3789D01* X3235Y3873D01* X2946D01* X2888Y3931D01* X2837D01* X2820Y3948D01* X2658D01* X2626Y3931D02* X2705D01* X2722Y3914D01* X2880D01* X2935Y3859D01* X3160D01* X3177Y3842D01* Y3824D01* X3254Y3747D01* Y3690D01* X3303Y3641D01* Y3564D01* X3271Y3532D01* X3269Y3508D02* Y3474D01* X3288Y3455D01* Y3442D01* X3263Y3430D02* X3269Y3424D01* Y3316D01* X3245Y3292D02* Y3268D01* X3229Y3252D01* X3159D01* X2955Y3048D01* Y2975D01* X2907Y2927D01* Y2828D01* X2888Y2809D01* X2859D01* X2850Y2800D01* Y2755D01* X2793Y2698D01* Y2677D01* X2618Y2502D01* X2595D01* X2554Y2461D01* X2466D01* X2463Y2464D01* X2441D01* X2436Y2459D01* X2425D01* X2348Y2382D01* X2296D01* X2271Y2370D02* X2279Y2364D01* X2278Y2355D01* X2495Y2366D02* X2631D01* X2850Y2585D01* Y2656D01* X2901Y2707D01* X2933D01* X2954Y2728D01* Y2786D01* X2930Y2810D01* Y2870D01* X2970Y2910D01* Y3000D01* Y3001D01* X2976Y3009D01* X2985Y3008D01* X2990Y3000D01* Y2900D01* X2950Y2860D01* Y2820D01* X2961Y2809D01* X2999D01* X2696Y1743D02* X2809Y1856D01* X2924D01* X2944Y1876D01* Y1888D01* X2972Y1916D01* Y1948D01* X3004Y1980D01* Y2205D01* X3242Y2443D01* Y2569D01* X3282Y2609D01* X3303Y2584D02* Y2830D01* X3312Y2839D01* Y2952D01* X3278Y2961D02* Y2907D01* X3252Y2881D01* Y2667D01* X3121Y2536D01* Y2412D01* X3078Y2369D01* X3061D01* X2946Y2254D01* Y1910D01* X2919Y1883D01* X2972Y1880D02* X3000Y1908D01* Y1946D01* X3077Y2023D01* Y2185D01* X3351Y2459D01* Y2543D01* X3366Y2565D02* X3322D01* X3303Y2584D01* X3366Y2565D02* X3392Y2539D01* Y2413D01* X3445Y2360D01* Y2335D01* X3460Y2320D01* X3695D01* X3696D01* X3704Y2314D01* Y2234D02* X3696Y2240D01* X3695D01* X3510D01* X3509D01* X3501Y2246D01* X3502Y2255D01* X3510Y2260D01* X3695D01* X3704Y2274D02* X3696Y2280D01* X3695D01* X3510D01* X3506D01* X3499Y2287D01* X3501Y2297D01* X3510Y2300D01* X3695D01* X3640Y2570D02* X3610D01* X3500Y2680D01* X3478Y2765D02* X3479Y2774D01* X3471Y2780D01* X3470D02* X3471D01* X3470D02* X3350D01* X3330Y2800D01* Y2960D01* X3340Y2970D01* X3360D01* X3430Y2900D01* Y2870D01* X3400Y2840D01* Y2820D01* X3420Y2800D01* X3480D01* X3510Y2830D01* Y2850D01* X3370Y2990D01* X3330D01* X3329D01* X3321Y2996D01* X3322Y3005D01* X3330Y3010D01* X3380D01* X3530Y2860D01* Y2820D01* X3500Y2790D01* Y2680D01* X3470Y2760D02* X3478Y2765D01* X3470Y2760D02* X3340D01* X3320Y2740D01* Y2670D01* X3350Y2640D01* Y2610D01* X3410Y2550D01* Y2530D01* X3430Y2510D01* X3560D01* X3561D01* X3569Y2504D01* X3568Y2495D01* X3560Y2490D01* X3460D01* X3440Y2470D01* Y2400D01* X3470Y2370D01* X3720D01* X3721Y2390D02* X3720D01* X3490D01* X3489D01* X3481Y2396D01* X3482Y2405D01* X3490Y2410D01* X3580D01* X3600Y2430D01* Y2510D01* X3614Y2524D01* X3685Y2537D02* Y2615D01* X3606Y2694D01* X3599D01* X3598Y2695D01* X3660Y2609D02* X3649Y2598D01* Y2579D01* X3640Y2570D01* X3685Y2537D02* X3791Y2431D01* Y1280D01* X3752Y1241D01* X3675Y1935D02* X3695Y1955D01* Y2180D01* X3675Y2200D01* X3510D01* X3509D01* X3501Y2206D01* X3502Y2215D01* X3510Y2220D01* X3695D01* X3703Y2225D01* X3704Y2234D01* X3695Y2260D02* X3703Y2265D01* X3704Y2274D01* X3695Y2300D02* X3703Y2305D01* X3704Y2314D01* X3720Y2370D02* X3728Y2375D01* X3729Y2384D01* X3721Y2390D01* X3754Y2394D02* Y2230D01* X3731Y2207D01* Y1860D01* X3211Y1340D01* X2737D01* X2637Y1240D01* X2416D01* X2369Y1193D01* X2315D01* X2534Y1387D02* X2592Y1445D01* Y1939D01* X2825Y2172D01* Y2363D01* X3097Y2635D01* Y2756D01* X3155Y2814D01* Y3021D01* X3278Y3144D01* Y3212D01* X3311Y3222D02* Y3239D01* X3316Y3244D01* Y3361D01* X3327Y3372D01* Y3399D01* X3333Y3405D01* X3290Y3390D02* Y3411D01* X3309Y3430D01* Y3470D01* X3314Y3475D01* Y3533D01* X3371Y3590D01* Y3743D01* X3340Y3774D01* Y3828D01* X3249Y3919D01* X2979D01* X2948Y3950D01* X2916D01* X2893Y3973D01* X2643D01* X2600Y3930D01* X2563D01* X2679Y3874D02* X2671Y3880D01* X2670D01* X2170D01* X2169D01* X2161Y3886D01* X2162Y3895D01* X2170Y3900D01* X2690D01* X2594Y3949D02* X2633Y3988D01* X2919D01* X2937Y3970D01* X3225D01* X3398Y3797D01* Y3771D01* X3416Y3753D01* Y3594D01* X3328Y3506D01* Y3472D01* X3321Y3465D01* Y3416D01* X3311Y3406D01* Y3374D01* X3293Y3356D01* Y3339D01* X3269Y3316D02* X3245Y3292D01* X3224Y3289D02* Y3343D01* X3202Y3365D01* X3180D01* X3155Y3340D01* X3144D01* X3168Y3375D02* X3169Y3384D01* X3161Y3390D01* X3160D01* X2940D01* X2939D01* X2931Y3396D01* X2932Y3405D01* X2940Y3410D01* Y3350D02* X3110D01* X3111D01* X3119Y3344D01* X3118Y3335D01* X3110Y3330D01* X2940D01* X2932Y3325D01* X2931Y3316D01* X2939Y3310D01* X2940D01* X2970D01* X2994Y3286D01* X3312Y2952D02* X3305Y2959D01* Y3140D01* X3334Y3169D01* Y3330D01* X3330Y3334D01* Y3355D01* X3339Y3364D01* X3361D01* X3371Y3374D01* Y3408D01* X3375Y3412D01* Y3452D01* X3388Y3465D01* X3406D01* X3413Y3472D01* Y3490D01* X3428Y3505D01* X3484D01* X3498Y3491D01* X3440Y3484D02* X3468Y3456D01* Y3423D01* X3479Y3412D01* Y3372D01* X3490Y3361D01* X3500D01* X3519Y3342D01* Y3326D01* X3550Y3295D01* Y3242D01* X3746Y3046D01* Y2901D01* X4039Y2608D01* X4124D01* X4491Y2241D01* Y2180D01* X4615D02* X4560D01* X4522Y2218D01* Y2293D01* X4497Y2318D01* Y2357D01* X4188Y2666D01* X4041D01* X3789Y2918D01* Y3092D01* X3619Y3262D01* Y3292D01* X3611Y3300D01* Y3353D01* X3602Y3362D01* X3521D01* X3500Y3383D01* X3446Y3386D02* X3447D01* X3420Y3359D01* Y3336D01* X3374Y3290D01* Y3221D01* X3596Y2999D01* Y2848D01* X4090Y2355D01* Y2225D01* X4151Y2163D01* X4264D01* X4732Y1695D01* X4831D01* X4995Y1531D01* X5173D01* X5206Y1498D01* X5879D01* X5894Y1513D01* X6042Y1769D02* X5765D01* X5693Y1841D01* X5476D01* X5385Y1932D01* X5367Y1803D02* X5459Y1711D01* X6000D01* X6021Y1690D02* X6000Y1711D01* X6021Y1736D02* X6000Y1757D01* X5903D01* X5870Y1724D01* X5758D01* X5689Y1793D01* X5475D01* X5381Y1887D01* X5016D01* X4850Y2053D01* X4678D01* X4652Y2079D01* X4623D01* X4507Y2195D01* Y2270D01* X4445Y2332D01* Y2364D01* X4172Y2637D01* X4039D01* X3768Y2908D01* Y3051D01* X3620Y3199D01* Y3235D01* X3594Y3261D01* X3588D01* X3571Y3278D01* Y3322D01* X3590Y3341D01* X3491Y3340D02* Y3324D01* X3528Y3287D01* Y3241D01* X3566Y3203D01* Y3159D01* X3631Y3094D01* X3652D01* X3724Y3022D01* Y2894D01* X4039Y2579D01* X4100D01* X4441Y2238D01* Y2155D01* X4635Y1961D01* X4802D01* X4838Y1925D01* Y1892D01* X4965Y1765D01* X5222D01* X5304Y1683D01* Y1684D01* X5894D01* Y1683D01* X5914Y1663D01* X5994D01* X6021Y1636D01* X6030Y1613D02* X6048Y1631D01* Y1645D01* X6030Y1613D02* X5870D01* X5838Y1645D01* X5078D01* X5045Y1677D01* X5067Y1572D02* X4781Y1858D01* X4651D01* X4325Y2184D01* Y2218D01* X4213Y2330D01* Y2352D01* X4199Y2366D01* X4190D01* X3677Y2879D01* Y2981D01* X3491Y3167D01* Y3226D01* X3464Y3253D01* Y3297D01* X3441Y3320D01* Y3344D01* X3397Y3280D02* X3448Y3229D01* Y3181D01* X3651Y2978D01* Y2873D01* X3791Y2733D01* Y2710D01* X4125Y2376D01* Y2319D01* X4202Y2242D01* Y2207D01* X4222Y2187D01* X4281D01* X4693Y1775D01* X4808D01* X5031Y1552D01* X5213D01* X5367Y1803D02* X4971D01* X4883Y1891D01* Y1926D01* X4827Y1982D01* X4719D01* X4642Y2059D01* X4612D01* X4491Y2180D01* X4615D02* X4653Y2142D01* X4700D01* X4722Y2120D01* Y2096D01* X4742Y2076D01* X4853D01* X4997Y1932D01* X5385D01* X4965Y2175D02* Y2233D01* X4812Y2386D01* X4805D01* X4349Y2842D01* X4242D01* X4196Y2888D01* X4164D01* X4025Y3027D01* Y3162D01* X3986Y3201D01* X3960D01* X3770Y3391D01* Y3402D01* X3753Y3419D01* X3721D01* X3698Y3396D01* X3695Y3341D02* X3712D01* X3734Y3319D01* X3765D01* X3837Y3247D01* Y3230D01* X3863Y3204D01* X3872D01* X3912Y3164D01* Y3093D01* X3947Y3058D01* Y3004D01* X4100Y2851D01* X4176D01* X4313Y2714D01* X4360D01* X4379Y2695D01* Y2666D01* X4682Y2363D01* Y2339D01* X4761Y2260D01* X4793D01* X5024Y2029D01* X5830D01* X5890Y1969D01* X6042D01* X6075Y1936D01* X6093Y1914D02* X6103Y1924D01* Y2241D01* X6029Y2315D01* X5908D01* X5847Y2376D01* Y2200D02* X5804D01* X5787Y2217D01* X5650D01* X5630Y2197D01* X5459D01* X5402Y2254D01* X5352D01* X5286Y2320D01* X5058D01* X4962Y2416D01* X4908D01* X4378Y2946D01* X4176D01* X4080Y3042D01* Y3270D01* X4003Y3347D01* X3957D01* X3797Y3507D01* X3709D01* X3692Y3490D01* X3703Y3553D02* X3736Y3520D01* X3848D01* X3959Y3409D01* Y3394D01* X3992Y3361D01* X4016D01* X4099Y3278D01* Y3046D01* X4176Y2969D01* X4400D01* X4893Y2476D01* X4952D01* X4979Y2449D01* Y2432D01* X5004Y2407D01* X5028D01* X4944Y2385D02* X4895D01* X4388Y2892D01* X4291D01* X4257Y2926D01* X4172D01* X4061Y3037D01* Y3218D01* X3808Y3471D01* X3780D01* X3771Y3462D01* X3636D01* X3617Y3481D01* Y3507D01* X3601Y3523D01* X3573D01* X3542Y3554D01* X3545Y3440D02* X3578Y3407D01* X3605D01* X3622Y3390D01* Y3364D01* X3623Y3363D01* Y3334D01* X3637Y3320D01* X3712D01* X3726Y3306D01* X3757D01* X3766Y3297D01* Y3245D01* X3892Y3119D01* Y3093D01* X3933Y3052D01* Y2909D01* X4090Y2752D01* X4216D01* X4590Y2378D01* X4598D01* X4722Y2254D01* Y2212D01* X4736Y2198D01* X4823D01* X4965Y2175D02* X5060Y2080D01* X5849D01* X5872Y2057D01* X6054D01* X5998Y2013D02* X5881D01* X5840Y2054D01* X5035D01* X4607Y2482D01* Y2504D01* X4592Y2519D01* X4570D01* X4400Y2689D01* Y2708D01* X4372Y2736D01* X4318D01* X4184Y2870D01* X4159D01* X4015Y3014D01* X3991D01* X3959Y3046D01* Y3171D01* X3759Y3371D01* X3659D01* X3643Y3387D01* X3792Y3445D02* X3807D01* X3879Y3373D01* Y3336D01* X4043Y3172D01* Y3032D01* X4168Y2907D01* X4243D01* X4283Y2867D01* X4389D01* X4416Y2840D01* Y2820D01* X4978Y2258D01* X4995D01* X5013Y2240D01* Y2167D01* X5075Y2105D01* X5941D01* X5949Y2113D01* X6052D01* X6075Y2136D01* X5993Y2162D02* X5141D01* X4963Y2340D01* Y2366D01* X4944Y2385D01* X5028Y2407D02* X5083Y2352D01* X5828D01* X5917Y2263D01* X6048D01* X6075Y2236D01* X6021D02* X5998Y2213D01* X6021Y2190D02* X5993Y2162D01* X5998Y2213D02* X5860D01* X5847Y2200D01* X6054Y2057D02* X6075Y2036D01* X6021Y1990D02* X5998Y2013D01* X6021Y1936D02* X6043Y1914D01* X5998Y1913D02* X6021Y1890D01* X6043Y1914D02* X6093D01* X6042Y1869D02* X5908D01* X5884Y1893D01* Y1913D01* X5814Y1983D01* X5006D01* X4808Y2181D01* X4823Y2198D02* X5015Y2006D01* X5819D01* X5912Y1913D01* X5998D01* X6042Y1869D02* X6075Y1836D01* X6021D02* X5998Y1813D01* X5903D01* X5898Y1818D01* X5773D01* X5708Y1883D01* X5486D01* X5414Y1955D01* X5001D01* X4975Y1981D01* X4973D01* X4794Y2160D01* X4657D01* X4617Y2200D01* X4584D01* X4572Y2212D01* Y2279D01* X4518Y2333D01* Y2378D01* X4181Y2715D01* X4065D01* X3809Y2971D01* Y3138D01* X3696Y3251D01* Y3286D01* X3644D02* X3665Y3307D01* X3706D01* X3723Y3290D01* Y3259D01* X3826Y3156D01* Y3024D01* X3917Y2933D01* Y2895D01* X4077Y2735D01* X4199D01* X4570Y2364D01* Y2337D01* X4618Y2289D01* Y2218D01* X4655Y2181D01* X4808D01* X5173Y2566D02* Y2619D01* X5204Y2650D01* Y2865D01* X5220Y2881D01* Y2911D01* X5199Y2932D01* Y2961D01* X5221Y2983D01* Y3012D01* X5199Y3034D01* Y3059D01* X5236Y3096D01* Y3160D01* X5214Y3291D02* X5205Y3292D01* X5200Y3300D01* Y3420D01* X5230Y3450D01* Y3580D01* X5240Y3590D01* Y3710D01* X5200Y3750D01* Y3770D01* X5195Y3778D01* X5186Y3779D01* X5180Y3771D01* Y3770D01* Y3580D01* X5210Y3550D01* Y3460D01* X5180Y3430D01* Y3400D01* Y3399D01* X5174Y3391D01* X5165Y3392D01* X5160Y3400D01* Y3810D01* X5155Y3818D01* X5146Y3819D01* X5140Y3811D01* Y3810D01* Y3270D01* Y3269D01* X5134Y3261D01* X5125Y3262D01* X5120Y3270D01* Y3660D01* X5110Y3670D01* Y3760D01* X5105Y3768D01* X5096Y3769D01* X5090Y3761D01* Y3760D01* Y3690D01* Y3689D01* X5084Y3681D01* X5075Y3682D01* X5070Y3690D01* Y3760D01* X5065Y3768D01* X5056Y3769D01* X5050Y3761D01* Y3760D01* Y3690D01* Y3689D01* X5044Y3681D01* X5035Y3682D01* X5030Y3690D01* Y3720D01* X5025Y3728D01* X5016Y3729D01* X5010Y3721D01* Y3720D01* Y3540D01* X5040Y3510D01* Y3450D01* X5010Y3420D01* Y3270D01* Y3269D01* X5004Y3261D01* X4995Y3262D01* X4990Y3270D01* Y3430D01* X5020Y3460D01* Y3500D01* X4990Y3530D01* Y3680D01* X4985Y3688D01* X4976Y3689D01* X4970Y3681D01* Y3680D01* Y3270D01* Y3269D01* X4964Y3261D01* X4955Y3262D01* X4950Y3270D01* Y3650D01* X4945Y3658D01* X4936Y3659D01* X4930Y3651D01* Y3650D01* Y3589D01* X4445Y3104D01* X4311D01* X4268Y3061D01* Y3052D01* X4257Y3041D01* X4221D01* X4209Y3053D01* Y3090D01* X4192Y3107D01* X4184Y3033D02* X4175Y3042D01* Y3141D01* X4230Y3196D01* Y3530D01* X4280Y3580D01* Y3620D01* X4260Y3640D01* X4210D01* X4231Y3610D02* X4239Y3604D01* X4238Y3595D01* X4210Y3640D02* X4100Y3750D01* X3820D01* X3812Y3745D01* X3811Y3736D01* X3819Y3730D01* X3820D01* X4090D01* X4091D01* X4099Y3724D01* X4098Y3715D01* X4090Y3710D01* X3860D01* X3852Y3705D01* X3851Y3696D01* X3859Y3690D01* X3860D01* X3820Y3684D02* X3703D01* X3591Y3796D01* X3860Y3690D02* X4130D01* X4131D01* X4139Y3684D01* X4138Y3675D01* X4130Y3670D01* X3950D01* X3942Y3665D01* X3941Y3656D01* X3949Y3650D01* X3950D01* X4150D01* X4151D01* X4159Y3644D01* X4158Y3635D01* X4150Y3630D01* X4040D01* X4032Y3625D01* X4031Y3616D01* X4039Y3610D01* X4040D01* X4230D01* X4231D01* X4303Y3665D02* X4210D01* X4002Y3873D01* X3873D01* X3698Y4048D01* X3546Y3997D02* Y3985D01* X3455Y3894D01* Y3759D01* X3474Y3740D01* Y3597D01* X3421Y3544D01* X3400D01* X3344Y3488D01* Y3469D01* X3333Y3458D01* Y3405D01* X3351Y3343D02* X3350Y3342D01* Y3210D01* X3562Y2998D01* Y2814D01* X3809Y2567D01* X3824D01* X4044Y2347D01* Y2229D01* X4137Y2136D01* X4187D01* X4202Y2121D01* Y2088D01* X4650Y1640D01* X4768D01* X4937Y1471D01* X5093D01* X5101Y1463D01* X6026D01* X6048Y1485D01* Y1493D01* X6069Y1514D01* X6079Y1463D02* X6067D01* X6048Y1444D01* Y1429D01* X6034Y1415D01* X4958D01* X4780Y1593D01* X4659D01* X4638Y1572D01* X4709Y1567D02* X4819Y1457D01* Y1339D01* X4875Y1295D02* X4919Y1339D01* X4875Y1295D02* X4591D01* X4570Y1316D01* Y1351D01* X4475Y1446D01* X7543Y1459D02* X7568Y1434D01* X7621D01* X7661Y1394D01* X7903Y1401D02* X7910Y1394D01* X7950D01* X7957Y1401D02* X7950Y1394D01* X7957D02* X7903Y1434D01* X7910D02* X7903Y1428D01* Y1401D01* X7910Y1381D02* X7903Y1374D01* Y1348D01* X7910Y1341D01* X7950D01* X7957Y1348D01* Y1374D01* X7950Y1381D01* X7937Y1341D02* X7930Y1348D01* Y1374D01* X7937Y1381D01* X7950D01* X7957Y1401D02* Y1428D01* X7950Y1434D01* X7910D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* Y1501D02* X7910D01* X7903Y1508D01* Y1534D01* X7910Y1541D01* X7950D01* X7957Y1534D01* X7903Y1541D02* X7957Y1501D01* X7950D02* X7957Y1508D01* Y1534D01* Y1561D02* Y1588D01* X7950Y1594D01* X7910D01* X7903Y1588D01* Y1594D02* X7957Y1554D01* Y1561D02* X7950Y1554D01* X7910D01* X7903Y1561D01* Y1588D01* X7923Y1621D02* X7930Y1628D01* X7923Y1634D01* Y1641D01* X7930Y1648D01* X7957D01* Y1628D02* X7930D01* X7923Y1621D02* Y1614D01* X7930Y1608D01* X7923D02* X7957D01* Y1661D02* X7923D01* Y1668D02* Y1674D01* X7930Y1681D02* X7957D01* Y1701D02* X7930D01* X7923Y1694D01* Y1688D01* X7930Y1681D01* X7923Y1674D01* Y1668D02* X7930Y1661D01* X8020D02* X8013Y1668D01* Y1674D02* X8020Y1681D01* X8013Y1688D01* Y1694D01* X8020Y1701D01* X8047D01* Y1681D02* X8020D01* X8013Y1674D02* Y1668D01* Y1661D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* X8020Y1628D01* X8013Y1621D01* X8047Y1628D02* X8020D01* X8013Y1621D02* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* X7993Y1588D02* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1561D01* X8020Y1541D02* X8013Y1534D01* Y1501D01* X7993D01* Y1541D01* X8020D02* X8040D01* X8047Y1534D01* Y1561D02* Y1588D01* X8040Y1594D01* X8000D01* X7993Y1588D01* Y1594D02* X8047Y1554D01* Y1534D02* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7923D02* X7957Y1214D01* Y1181D02* X7923Y1214D01* Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1328D02* Y1288D01* X7937Y1274D02* Y1241D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7478D02* Y869D01* X7472Y876D01* X7465D01* X7458Y843D02* Y869D01* X7465Y876D02* X7458Y869D01* X7452Y876D01* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y799D02* X7418Y806D01* X7392D01* X7385Y799D01* Y759D01* X7392Y753D01* X7418D01* X7425Y759D01* Y799D01* Y806D02* X7385Y753D01* X7438D02* Y786D01* Y779D02* X7445Y786D01* X7452D01* X7458Y779D01* Y753D01* X7478D02* Y779D01* X7472Y786D01* X7465D01* X7458Y779D01* X7492Y753D02* Y786D01* Y779D02* X7498Y786D01* X7505D01* X7512Y779D01* X7518Y786D01* X7512Y779D02* Y753D01* X7532D02* Y779D01* X7525Y786D01* X7518D01* X7225Y753D02* X7265Y806D01* Y799D02* Y759D01* X7258Y753D01* X7232D01* X7225Y759D01* Y799D01* X7232Y806D01* X7258D01* X7265Y799D01* X7298Y753D02* X7292Y759D01* X7298Y766D01* X7305Y759D01* X7298Y753D01* X7332D02* X7372Y806D01* Y799D02* Y759D01* X7365Y753D01* X7338D01* X7332Y759D01* Y799D01* X7338Y806D01* X7365D01* X7372Y799D01* X7392Y843D02* X7385Y849D01* Y889D01* X7392Y896D01* X7418D01* X7425Y889D01* Y849D01* X7418Y843D01* X7392D01* X7385D02* X7425Y896D01* X7372D02* X7332D01* Y876D01* X7365D01* X7372Y869D01* Y849D01* X7365Y843D01* X7338D01* X7332Y849D01* X7298Y856D02* X7292Y849D01* X7298Y843D01* X7305Y849D01* X7298Y856D01* X7258Y869D02* X7232D01* X7225Y876D01* Y889D01* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7265Y863D01* Y849D01* X7258Y843D01* X7232D01* X7225Y849D01* Y863D01* X7232Y869D01* X7212Y896D02* X7172D01* Y876D01* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7178D01* X7172Y849D01* X7158Y843D02* X7118D01* X7138D02* Y896D01* X7125Y883D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* Y843D02* X7045Y876D01* X7072D02* X7105D01* Y863D02* X7072D01* X7045Y843D02* X7012Y876D01* X7090Y1207D02* X6996Y1301D01* X7089Y1238D02* X7008Y1319D01* X6897Y1430D02* X6914Y1413D01* X7071D01* X7025Y1440D02* X7039D01* X7144Y1545D01* Y2109D01* X7119Y2134D01* X7104Y2160D02* X7091Y2147D01* Y2088D01* X7083Y2080D01* Y1544D01* X7025Y1486D01* X7258Y1512D02* X7520D01* X7543Y1489D01* Y1459D02* Y1489D01* X7504Y1551D02* X7467Y1588D01* X7313D01* X7233Y1668D01* Y2577D01* X7225Y2585D01* X7215D01* X7207Y2577D01* Y2248D01* X7182Y2223D01* Y1524D01* X7071Y1413D01* X7104Y1352D02* X7093Y1363D01* X6863D01* X6799Y1427D01* Y1447D01* X6782Y1464D01* X6747D01* X6725Y1486D01* X6625D02* X6802Y1663D01* X6886D01* X6897Y1652D01* Y1430D01* X6971Y1486D02* X6999Y1514D01* X7032D01* X7065Y1547D01* Y2093D01* X7078Y2106D01* Y2166D01* X7098Y2186D01* X7119D01* X7104Y2212D02* X7064Y2172D01* Y2121D01* X7048Y2105D01* Y1563D01* X7025Y1540D01* X6671Y1386D02* X6694Y1363D01* X6835D01* X6879Y1319D01* X7008D01* X6996Y1301D02* X6574D01* X6549Y1326D01* Y1364D01* X6571Y1386D01* Y1340D02* X6599Y1368D01* Y1507D01* X6857Y1765D01* X6934D01* X6947Y1778D01* Y2103D01* X6934Y2116D01* Y2193D01* X6947Y2206D01* Y2455D01* X7019Y2527D01* X6971D02* X6904Y2460D01* Y2220D01* X6917Y2207D01* Y2123D01* X6904Y2110D01* Y1973D01* X6871Y1940D01* X7025Y1886D02* X7004Y1907D01* Y2202D01* X7082Y2280D01* Y2373D01* X7100Y2391D01* X7122D01* X7142Y2411D01* Y2780D01* X7128Y2794D01* X7104D01* X7119Y2768D02* X7045D01* X6991Y2714D01* Y2675D01* X6913Y2597D01* Y2537D01* X6850Y2474D01* Y2248D01* X6892Y2206D01* X6725Y2286D02* X6749Y2310D01* Y2499D01* X6809Y2559D01* Y2599D01* X6863Y2653D01* Y2721D01* X7071Y2929D01* Y3062D01* X7091Y3104D02* X7026Y3039D01* Y2977D01* X6809Y2760D01* Y2664D01* X6751Y2606D01* Y2547D01* X6671Y2467D01* Y2386D01* X6425Y2437D02* Y1824D01* X6099Y1498D01* Y1483D01* X6079Y1463D01* X6021Y1490D02* X5998Y1513D01* X5894D01* X5921Y1536D02* X5229D01* X5213Y1552D01* X5067Y1572D02* X5812D01* X5827Y1557D01* X6000D01* X6021Y1536D01* X6042Y1569D02* X6075Y1536D01* X6069Y1514D02* X6085D01* X6142Y1571D01* Y1705D01* X6130Y1717D01* X6126Y1791D02* X6157Y1822D01* Y2221D01* X6014Y2364D01* X5897D01* X5862Y2399D01* X5129D01* X5080Y2448D01* Y2600D01* X5020Y2660D01* X4960D01* X4959D01* X4951Y2666D01* X4952Y2675D01* X4960Y2680D01* X5150D01* X5159Y2694D02* X5151Y2700D01* X5150D01* X4780D01* X4779D01* X4771Y2706D01* X4772Y2715D01* X4780Y2720D01* X5150D01* Y2680D02* X5158Y2685D01* X5159Y2694D01* X5150Y2720D02* X5158Y2725D01* X5159Y2734D01* X5151Y2740D01* X5150D01* X4720D01* X4719D01* X4700Y2832D02* Y2859D01* X4723Y2882D01* Y2908D01* X4698Y2933D01* Y2963D01* X4718Y2983D01* Y3012D01* X4635Y3095D01* Y3144D01* X4719Y2740D02* X4711Y2746D01* X4712Y2755D01* X4720Y2760D01* X4890D01* X4898Y2765D01* X4899Y2774D01* X4891Y2780D01* X4890D01* X4688D01* X4457Y3011D01* X4181D01* X4163Y3029D01* Y3320D01* X4143Y3340D01* X4100D01* X4040Y3400D01* Y3490D01* X4030Y3500D01* X3950D01* X3890Y3560D01* X3850D01* X3849D01* X3841Y3566D01* X3842Y3575D01* X3850Y3580D01* X3900D01* X3960Y3520D01* X4030D01* X4040Y3530D01* Y3540D01* Y3541D01* X4046Y3549D01* X4055Y3548D01* X4060Y3540D01* Y3410D01* X4065Y3402D01* X4074Y3401D01* X4080Y3409D01* Y3410D01* Y3540D01* Y3541D01* X4086Y3549D01* X4095Y3548D01* X4100Y3540D01* Y3441D01* X4185Y3356D01* X4210Y3370D02* Y3316D01* X4187Y3293D01* X4210Y3370D02* X4150Y3430D01* Y3550D01* X4130Y3570D01* X4040D01* X4039D01* X4031Y3576D01* X4032Y3585D01* X4040Y3590D01* X4230D01* X4238Y3595D01* X5545Y4106D02* X5260Y3821D01* Y3580D01* X5250Y3570D01* Y3440D01* X5220Y3410D01* Y3300D01* Y3299D01* X5214Y3291D01* X5389Y3353D02* X5399Y3350D01* X5408Y3352D01* X5416Y3358D01* X5420Y3367D01* Y3370D01* Y3780D01* Y3783D01* X5424Y3792D01* X5432Y3798D01* X5441Y3800D01* X5451Y3797D01* X5458Y3790D01* X5460Y3780D01* Y3402D01* X5530Y3332D01* X5650D01* X5710Y3392D01* Y4120D01* Y4123D01* X5714Y4132D01* X5722Y4138D01* X5731Y4140D01* X5741Y4137D01* X5748Y4130D01* X5750Y4120D01* Y3560D01* X5752Y3550D01* X5759Y3543D01* X5769Y3540D01* X5778Y3542D01* X5786Y3548D01* X5790Y3557D01* Y3560D01* Y4120D01* Y4123D01* X5794Y4132D01* X5802Y4138D01* X5811Y4140D01* X5821Y4137D01* X5980Y4281D02* X5537D01* X5269Y4013D01* Y4000D01* X5125Y3856D01* X5097D01* X4624Y3383D01* X4558Y3500D02* X4642D01* X4736Y3594D01* X4785D01* X4624Y3383D02* X4602D01* X4466Y3247D01* Y3225D01* X4398Y3157D01* Y3131D01* X4385Y3118D01* X4289D01* X4229Y3058D01* X4192Y3076D02* Y3051D01* X4214Y3029D01* X4265D01* X4280Y3044D01* Y3054D01* X4304Y3078D01* X4503D01* X4610Y3185D01* X4649D01* X4678Y3156D01* X4701D01* X4724Y3179D01* X4754D01* X4774Y3159D01* X4798D01* X4879Y3240D01* X5197D01* X5320Y3363D01* Y3780D01* Y3784D01* X5323Y3794D01* X5329Y3802D01* X5338Y3807D01* X5347Y3810D01* X5357Y3809D01* X5366Y3805D01* X5374Y3799D01* X5378Y3790D01* X5380Y3780D01* Y3370D01* X5382Y3360D01* X5389Y3353D01* X5847Y2376D02* X5112D01* X4970Y2518D01* X4900D01* X4430Y2988D01* X4180D01* X4147Y3021D01* Y3258D01* X4093Y3312D01* Y3322D01* X3875Y3540D01* X3751D01* X3681Y3610D01* X3531D01* X3443Y3522D01* X3420D01* X3387Y3489D01* X3396Y3442D02* X3430Y3408D01* X3454D01* X3467Y3395D01* Y3313D01* X3477Y3303D01* Y3270D01* X3542Y3205D01* Y3143D01* X3700Y2985D01* Y2888D01* X4039Y2549D01* X4076D01* X4258Y2367D01* Y2334D01* X4359Y2233D01* Y2202D01* X4631Y1930D01* X4783D01* X4791Y1922D01* Y1893D01* X5083Y1601D01* X5827D01* X5859Y1569D01* X6042D01* X6048Y1645D02* X6066Y1663D01* X6082D01* X6103Y1684D01* Y1717D01* X6075Y1736D02* X6042Y1769D01* X6103Y1717D02* X6248Y1862D01* Y2317D01* X6342Y2411D01* Y2567D01* X6222Y2673D02* X6206D01* X6035Y2844D01* X6335Y2944D02* Y2995D01* X6478Y3138D01* Y3328D01* X6764Y3614D01* Y3861D01* X6838Y3935D01* X6864D02* X6897Y3968D01* X6929D01* X6947Y3950D01* Y3908D01* X6890Y3851D01* X6862D01* X6826Y3815D01* Y3563D01* X6541Y3278D01* Y3002D01* X6433Y2894D01* X6385D01* X6435Y2944D02* X6520Y3029D01* Y3295D01* X6805Y3580D01* Y3833D01* X6851Y3879D01* X6890D01* X6933Y3922D01* Y3944D01* X6889Y3935D02* X6908Y3954D01* X6923D01* X6933Y3944D01* X6915Y3935D02* X6887Y3907D01* X6846D01* X6785Y3846D01* Y3598D01* X6499Y3312D01* Y3108D01* X6435Y3044D01* Y3644D02* X6386D01* X6249Y3781D01* X6221D01* X6151Y3711D01* X5950D01* X5880Y3781D01* Y3870D01* X5830Y3920D01* Y4120D01* X5828Y4130D01* X5821Y4137D01* X5980Y4281D02* X6017Y4244D01* X6235D01* X6656Y4220D02* X6784D01* X7016Y3988D01* Y3935D02* Y3988D01* X6978Y3935D02* Y3697D01* X6960Y3679D01* X6985Y3657D02* Y3443D01* X7104Y3353D02* X7132D01* X7147Y3338D01* Y3125D01* X7119Y3097D01* X7106D01* X7071Y3062D01* X7091Y3104D02* Y3143D01* X7104Y3156D01* X7141Y3544D02* X7175Y3510D01* Y2993D01* X6913Y2731D01* Y2654D01* X6860Y2601D01* Y2535D01* X6802Y2477D01* Y2209D01* X6871Y2140D01* X6892Y2206D02* Y2124D01* X6878Y2110D01* X6864D01* X6845Y2091D01* Y1982D01* X6844Y1981D01* Y1867D01* X6925Y1786D01* X6971D02* X6992Y1807D01* Y1853D01* X6967Y1878D01* Y2107D01* X6949Y2125D01* Y2164D01* X6969Y2184D01* Y2226D01* X6998Y2255D01* Y2462D01* X7049Y2513D01* X7019Y2538D02* Y2527D01* X7049Y2513D02* Y2648D01* X7094Y2693D01* Y2732D01* X7104Y2742D01* X7119Y2716D02* Y2695D01* X7083Y2659D01* Y2490D01* X7054Y2461D01* Y2281D01* X6992Y2219D01* Y2114D01* X6986Y2108D01* Y1893D01* X7004Y1875D01* Y1831D01* X7025Y1810D01* Y1786D01* Y2086D02* Y2108D01* X7046Y2129D01* Y2187D01* X7105Y2246D01* X7123D01* X7177Y2300D01* Y2780D01* X7212Y2815D01* Y3551D01* X7119Y3644D01* X6960Y3679D02* Y3550D01* X6698Y3288D01* Y2785D01* X6476Y2563D01* Y2488D01* X6425Y2437D01* X6342Y2567D02* X6597Y2822D01* Y3282D01* X6939Y3624D01* Y3824D01* X6960Y3845D01* Y3956D01* X6934Y3982D01* X6860D01* X6813Y3935D01* X7012Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7172Y5011D02* X7178Y5004D01* X7205D01* X7172Y5011D02* Y5051D01* X7178Y5058D01* X7205D01* X7212Y5051D02* Y5011D01* X7205Y5004D01* X7225Y5011D02* Y5051D01* X7232Y5058D01* X7258D01* X7265Y5051D01* Y5011D01* X7258Y5004D01* X7232D01* X7225Y5011D01* Y5004D02* X7265Y5058D01* X7212Y5051D02* X7205Y5058D01* X7212D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y5094D02* X7045Y5128D01* X7072D02* X7105D01* Y5114D02* X7072D01* X7045Y5094D02* X7012Y5128D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* Y5121D01* X7205Y5128D01* X7172D01* Y5148D01* X7212D01* X7232Y5121D02* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7265Y5141D01* Y5128D01* X7258Y5121D01* Y5094D02* X7265Y5101D01* Y5114D01* X7258Y5121D01* X7232D01* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7298D02* X7292Y5101D01* X7298Y5108D01* X7305Y5101D01* X7298Y5094D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7418D02* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7418D01* X7425Y5101D01* Y5141D01* X7418Y5148D01* X7425D02* X7385Y5094D01* X7372Y5058D02* X7332Y5004D01* X7338D02* X7365D01* X7372Y5011D01* Y5051D01* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7298D02* X7305Y5011D01* X7298Y5018D01* X7292Y5011D01* X7298Y5004D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5004D02* Y5031D01* X7465Y5038D02* X7458Y5031D01* X7452Y5038D01* X7445D01* X7438Y5031D01* Y5038D02* Y5004D01* X7385Y5011D02* Y5051D01* X7392Y5058D01* X7418D01* X7425Y5051D01* Y5011D01* X7418Y5004D01* X7392D01* X7385Y5011D01* Y5004D02* X7425Y5058D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7923Y4702D02* X7930Y4709D01* X7923Y4715D01* Y4722D01* X7930Y4729D01* X7957D01* Y4709D02* X7930D01* X7923Y4702D02* Y4695D01* X7930Y4689D01* X7923D02* X7957D01* Y4675D02* X7930D01* X7923Y4669D01* Y4662D01* X7930Y4655D01* X7910Y4622D02* X7903Y4615D01* Y4589D01* X7910Y4582D01* X7950D01* X7957Y4589D02* X7950Y4582D01* X7957D02* X7903Y4622D01* X7910D02* X7950D01* X7957Y4615D01* Y4635D02* X7923D01* X7930D02* X7923Y4642D01* Y4649D01* X7930Y4655D01* X7957D01* Y4615D02* Y4589D01* Y4562D02* Y4535D01* Y4529D02* X7903Y4569D01* Y4562D02* X7910Y4569D01* X7950D01* X7957Y4562D01* Y4535D02* X7950Y4529D01* X7910D01* X7903Y4535D01* Y4562D01* X7950Y4502D02* X7943Y4495D01* X7950Y4489D01* X7957Y4495D01* X7950Y4502D01* X7903Y4462D02* X7957Y4422D01* X7950D02* X7957Y4429D01* Y4455D01* X7950Y4462D01* X7910D01* X7903Y4455D01* Y4429D01* X7910Y4422D01* X7950D01* X7910Y4409D02* X7903Y4402D01* Y4375D01* X7910Y4369D01* X7950D01* X7957Y4375D01* Y4402D01* X7950Y4409D01* X7937D01* X7930Y4402D01* Y4375D01* X7937Y4369D01* Y4269D02* Y4302D01* X7957Y4315D02* Y4355D01* Y4335D02* X7903D01* X7917Y4322D01* X7923Y4302D02* Y4269D01* Y4242D02* X7957Y4209D01* Y4242D02* X7923Y4209D01* X8013D02* X8040D01* X8047Y4215D01* Y4235D01* X8040Y4242D01* X8060Y4209D02* X8067Y4215D01* Y4235D01* X8060Y4242D01* X8013D01* Y4269D02* Y4302D01* X8027Y4269D02* Y4302D01* X8040Y4369D02* X8047Y4375D01* Y4402D01* X8040Y4409D01* X8000D01* X7993Y4402D01* Y4375D01* X8000Y4369D01* X8013D01* X8020Y4375D01* Y4402D01* X8013Y4409D01* X8000Y4422D02* X7993Y4429D01* Y4455D01* X8000Y4462D01* X8013D01* X8020Y4455D01* Y4429D01* X8013Y4422D01* X8000D01* X8020Y4429D02* X8027Y4422D01* X8040D01* X8047Y4429D01* Y4455D01* X8040Y4462D01* X8027D01* X8020Y4455D01* X8040Y4489D02* X8033Y4495D01* X8040Y4502D01* X8047Y4495D01* X8040Y4489D01* Y4529D02* X8047Y4535D01* Y4562D01* Y4582D02* X7993Y4622D01* Y4615D02* X8000Y4622D01* X8040D01* X8047Y4615D01* Y4589D01* Y4562D02* X8040Y4569D01* X8020D01* X8013Y4562D01* Y4529D01* X7993D01* Y4569D01* X8047Y4655D02* X8020D01* X8013Y4649D02* Y4642D01* X8020Y4635D01* X8013D02* X8047D01* Y4589D02* X8040Y4582D01* X8000D01* X7993Y4589D01* Y4615D01* X8013Y4649D02* X8020Y4655D01* X8013Y4662D01* Y4669D01* X8020Y4675D01* X8047D01* Y4689D02* X8013D01* X8020D02* X8013Y4695D01* Y4702D01* X8020Y4709D01* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* X8020Y4709D01* D013* X3906Y5967D02* X3928Y5989D01* Y5900D01* X3894D02* X3961D01* X3983Y5911D02* X3994Y5900D01* X4039D01* X4050Y5911D01* Y5933D01* X4039Y5944D01* X3994D01* X3983Y5933D01* Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4250Y5911D02* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250Y5911D01* Y5900D02* X4317Y5989D01* X4339Y5911D02* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339Y5911D01* Y5900D02* X4406Y5989D01* X4428Y5900D02* Y5956D01* Y5944D02* X4439Y5956D01* X4450D01* X4461Y5944D01* Y5900D01* X4494D02* Y5944D01* X4483Y5956D01* X4472D01* X4461Y5944D01* X4517Y5900D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* X4561Y5956D01* X4550Y5944D02* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4939Y5989D02* X4872Y5900D01* Y5911D02* X4883Y5900D01* X4928D02* X4883D01* X4872Y5911D02* Y5978D01* X4817D02* Y5911D01* X4783Y5944D02* X4850D01* X4872Y5978D02* X4883Y5989D01* X4928D01* X4939Y5978D01* Y5911D01* X4928Y5900D01* X4961D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5206Y5978D01* X5139D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* Y5989D02* X5139Y5900D01* X5150D02* X5194D01* X5261D02* X5272Y5911D01* X5261Y5922D01* X5250Y5911D01* X5261Y5900D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* X8761Y3617D02* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8750D02* X8839Y3550D01* X8761Y3528D02* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* X8761Y3528D01* X8750D02* X8839Y3461D01* X8761Y3417D02* X8750Y3406D01* X8761Y3394D01* X8772Y3406D01* X8761Y3417D01* Y3350D02* X8828D01* X8839Y3339D01* Y3294D01* X8828Y3261D02* X8839Y3250D01* Y3206D01* X8806Y3161D02* Y3150D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D02* X8794Y3172D01* X8806D02* X8750D01* Y3261D02* X8839Y3194D01* Y3206D02* X8828Y3194D01* X8761D01* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8828D01* X8839Y3283D02* X8750Y3350D01* X8761D02* X8750Y3339D01* Y3294D01* X8761Y3283D01* X8828D01* X8839Y3294D01* X8806Y3061D02* X8794Y3050D01* X8750D01* Y3083D02* X8806D01* X8794D02* X8806Y3072D01* Y3061D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* Y2728D02* X8828D01* X8839Y2717D01* Y2661D02* X8750Y2728D01* X8761D02* X8750Y2717D01* Y2672D01* X8761Y2661D01* X8839Y2717D02* Y2672D01* X8828Y2661D01* X8761D01* X8750Y2639D02* X8839Y2572D01* X8750Y2461D02* X8839Y2394D01* Y2406D02* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X1677Y2025D02* D03* X1781Y1918D02* D03* X1698Y1788D02* D03* X1692Y1826D02* D03* X1646Y1817D02* D03* X1878Y1848D02* D03* X1854Y1876D02* D03* X1825Y1920D02* D03* X1877Y1915D02* D03* X1929Y1929D02* D03* X2027Y1915D02* D03* X2093Y1834D02* D03* X2091Y1756D02* D03* X2051Y1736D02* D03* X1978Y1562D02* D03* X2015Y1467D02* D03* X1970Y1398D02* D03* X2013Y1332D02* D03* X2187Y1381D02* D03* X2189Y1345D02* D03* X2186Y1283D02* D03* X2091Y1245D02* D03* X2188Y1243D02* D03* X2164Y1157D02* D03* X2315Y1193D02* D03* X2326Y1277D02* D03* X2314Y1312D02* D03* X2337Y1362D02* D03* X2315Y1413D02* D03* X2314Y1462D02* D03* X2168Y1466D02* D03* X2187Y1512D02* D03* Y1562D02* D03* X2188Y1612D02* D03* X2130Y1679D02* D03* X2187Y1662D02* D03* Y1712D02* D03* Y1762D02* D03* X2188Y1812D02* D03* X2201Y1916D02* D03* X2265Y1915D02* D03* X2327Y1830D02* D03* X2446Y1961D02* D03* X2409Y1991D02* D03* X2440Y2024D02* D03* X2505Y2091D02* D03* X2413Y2093D02* D03* X2374Y2095D02* D03* X2377Y2061D02* D03* X2327Y2096D02* D03* X2280Y2095D02* D03* X2127Y2083D02* D03* X2166Y2082D02* D03* X2213Y2184D02* D03* X2154Y2211D02* D03* X2086Y2252D02* D03* X2084Y2309D02* D03* X2080Y2428D02* D03* X1990Y2335D02* D03* X1998Y2292D02* D03* X1999Y2222D02* D03* X2030D02* D03* X2032Y2183D02* D03* X2013Y2094D02* D03* X1902Y2092D02* D03* X1973Y2094D02* D03* X1937Y2156D02* D03* X1896Y2219D02* D03* X1894Y2250D02* D03* X1903Y2312D02* D03* X1906Y2350D02* D03* X1868Y2348D02* D03* X1902Y2413D02* D03* X1904Y2445D02* D03* X1902Y2484D02* D03* X1901Y2550D02* D03* X1825Y2540D02* D03* X1773Y2547D02* D03* X1738Y2507D02* D03* X1689Y2381D02* D03* X1788Y2820D02* D03* X1784Y2778D02* D03* X1832Y2771D02* D03* X1860Y2657D02* D03* X1861Y2625D02* D03* X1991Y2780D02* D03* X2039Y2790D02* D03* X2026Y2841D02* D03* X2104Y2818D02* D03* X2102Y2896D02* D03* X2131Y3010D02* D03* X2190Y3009D02* D03* X2224Y3044D02* D03* X2260Y2965D02* D03* X2261Y2894D02* D03* X2202Y2890D02* D03* X2178Y2786D02* D03* X2236Y2788D02* D03* X2093Y2676D02* D03* X2087Y2585D02* D03* X2181Y2592D02* D03* X2219D02* D03* X2281Y2660D02* D03* X2351Y2680D02* D03* X2350Y2617D02* D03* X2363Y2589D02* D03* X2396Y2588D02* D03* X2418Y2681D02* D03* X2427Y2639D02* D03* X2461Y2637D02* D03* X2494Y2639D02* D03* X2486Y2681D02* D03* X2455Y2593D02* D03* X2447Y2564D02* D03* X2444Y2530D02* D03* X2482Y2531D02* D03* X2481Y2482D02* D03* X2503Y2344D02* D03* Y2314D02* D03* X2495Y2284D02* D03* X2458Y2311D02* D03* Y2345D02* D03* X2459Y2378D02* D03* X2504Y2399D02* D03* X2478Y2422D02* D03* X2449Y2441D02* D03* X2428Y2482D02* D03* X2381Y2474D02* D03* X2312Y2507D02* D03* X2225Y2427D02* D03* X2329Y2405D02* D03* X2305Y2356D02* D03* X2304Y2311D02* D03* X2212Y2249D02* D03* X2277D02* D03* X2280Y2212D02* D03* X2303Y2180D02* D03* X2332Y2184D02* D03* X2385Y2187D02* D03* X2386Y2243D02* D03* X2479Y2248D02* D03* X2501Y2225D02* D03* X2523Y1644D02* D03* X2563Y1625D02* D03* X2555Y1589D02* D03* X2537Y1427D02* D03* X2534Y1387D02* D03* X2618Y1435D02* D03* X2650Y1414D02* D03* X2764Y1441D02* D03* X2853Y1443D02* D03* X3010D02* D03* X3105Y1446D02* D03* X3231D02* D03* X3205Y1582D02* D03* X3229Y1604D02* D03* X3151Y1667D02* D03* X3075Y1735D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3173Y1785D02* D03* X3184Y1843D02* D03* X3277Y1838D02* D03* Y1795D02* D03* X3275Y1735D02* D03* X3276Y1682D02* D03* X3277Y1648D02* D03* X3253Y1629D02* D03* X3051Y1666D02* D03* X3029Y1735D02* D03* X3027Y1780D02* D03* Y1824D02* D03* Y1880D02* D03* X3021Y1931D02* D03* X3071D02* D03* X3073Y1984D02* D03* X2977Y1986D02* D03* X3025Y2036D02* D03* X2977Y2086D02* D03* X3025Y2135D02* D03* X3026Y2184D02* D03* X3130D02* D03* X3231Y2239D02* D03* X3266Y2244D02* D03* X3272Y2288D02* D03* X3268Y2342D02* D03* X3318D02* D03* X3322Y2288D02* D03* X3316Y2244D02* D03* X3318Y2142D02* D03* X3322Y2188D02* D03* X3272D02* D03* X3268Y2142D02* D03* X3224Y2109D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3177Y1937D02* D03* X3121Y1938D02* D03* X3126Y1887D02* D03* X3083Y1892D02* D03* X3161Y2460D02* D03* X3176Y2486D02* D03* Y2516D02* D03* X3150Y2501D02* D03* X3148Y2533D02* D03* X3232Y2592D02* D03* X3221Y2530D02* D03* X3266Y2532D02* D03* X3335Y2586D02* D03* X3324Y2627D02* D03* X3279Y2639D02* D03* X3229Y2682D02* D03* X3276Y2684D02* D03* X3277Y2733D02* D03* X3219Y2782D02* D03* X3175Y2726D02* D03* X3132Y2728D02* D03* X3126Y2687D02* D03* X3122Y2642D02* D03* X3080Y2583D02* D03* X3064Y2544D02* D03* X3093Y2535D02* D03* X3067Y2493D02* D03* Y2443D02* D03* Y2393D02* D03* Y2343D02* D03* X3057Y2297D02* D03* X2876Y2284D02* D03* X2923Y2233D02* D03* Y2134D02* D03* X2875D02* D03* X2876Y2085D02* D03* X2823Y2087D02* D03* X2921Y2032D02* D03* X2923Y1987D02* D03* X2873Y1983D02* D03* X2874Y1933D02* D03* X2919Y1883D02* D03* X2972Y1880D02* D03* X2973Y1838D02* D03* X2927Y1824D02* D03* Y1784D02* D03* X2972Y1780D02* D03* X2973Y1726D02* D03* X2861Y1669D02* D03* X2910Y1671D02* D03* X2927Y1724D02* D03* X2874Y1727D02* D03* X2823Y1726D02* D03* X2767Y1679D02* D03* X2735Y1752D02* D03* X2777Y1780D02* D03* X2822D02* D03* X2875Y1785D02* D03* X2876Y1831D02* D03* X2778Y1887D02* D03* X2825Y1934D02* D03* X2821Y1982D02* D03* X2770Y1980D02* D03* X2771Y2032D02* D03* X2707Y2012D02* D03* X2625Y1862D02* D03* X2564Y1816D02* D03* X2518Y1841D02* D03* X2471Y1762D02* D03* X2470Y1712D02* D03* X2469Y1661D02* D03* X2467Y1612D02* D03* X2468Y1562D02* D03* X2471Y1512D02* D03* X2473Y1462D02* D03* X2471Y1412D02* D03* X2468Y1362D02* D03* X2472Y1312D02* D03* X2480Y1262D02* D03* X2476Y1210D02* D03* X2558Y1214D02* D03* X2596Y1288D02* D03* X2647Y1189D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2837Y1237D02* D03* X2868Y1238D02* D03* X2931Y1243D02* D03* X2994Y1233D02* D03* X3089Y1234D02* D03* X3215Y1235D02* D03* X3246Y1238D02* D03* X3278Y1239D02* D03* X3310Y1242D02* D03* X3854Y1559D02* D03* X3821Y1445D02* D03* X3851Y1416D02* D03* X4010Y1446D02* D03* X4105Y1445D02* D03* X4136Y1560D02* D03* X4168Y1561D02* D03* X4199D02* D03* X4221Y1625D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4294Y1563D02* D03* X4325D02* D03* X4356D02* D03* X4388D02* D03* X4390Y1625D02* D03* X4499Y1740D02* D03* X4491Y1871D02* D03* X4635Y1905D02* D03* X4680D02* D03* X4725D02* D03* X4945D02* D03* X4905D02* D03* X4860D02* D03* X4815D02* D03* X4770D02* D03* X4615Y2014D02* D03* X4646D02* D03* X4771D02* D03* X4804D02* D03* X4835D02* D03* X4800Y2108D02* D03* X4771D02* D03* X4743D02* D03* X4700D02* D03* X4671D02* D03* X4643D02* D03* X4604Y2159D02* D03* X4643Y2223D02* D03* X4672D02* D03* X4700D02* D03* X4743D02* D03* X4772D02* D03* X4800D02* D03* Y2365D02* D03* X4755D02* D03* X4705Y2350D02* D03* X4657D02* D03* X4634Y2494D02* D03* X4585D02* D03* X4595Y2350D02* D03* X4547D02* D03* X4467Y2354D02* D03* X4419D02* D03* X4595Y2225D02* D03* X4547D02* D03* X4467Y2229D02* D03* X4419D02* D03* X4401Y2203D02* D03* X4281Y2223D02* D03* X4253D02* D03* X4223D02* D03* X4181D02* D03* X4153D02* D03* X4123D02* D03* X4282Y2354D02* D03* X4234D02* D03* X4192Y2339D02* D03* X4147D02* D03* X4066D02* D03* X4021D02* D03* X3924Y2260D02* D03* X4021Y2244D02* D03* X4066D02* D03* X4058Y2161D02* D03* X4123Y2108D02* D03* X4151D02* D03* X4181D02* D03* X4223D02* D03* X4251D02* D03* X4281D02* D03* X4359Y2014D02* D03* X4252Y1975D02* D03* X4420Y1446D02* D03* X4514Y1445D02* D03* X4609D02* D03* X4704Y1446D02* D03* X4750Y1399D02* D03* X4793D02* D03* X4686Y1269D02* D03* X4687Y1235D02* D03* X4639Y1245D02* D03* X4593Y1233D02* D03* X4514Y1121D02* D03* X4502Y1238D02* D03* X4435Y1233D02* D03* X4404D02* D03* X4373D02* D03* X4340D02* D03* X4310Y1235D02* D03* X4246D02* D03* X4184Y1237D02* D03* X4151D02* D03* X4120D02* D03* X4105Y1316D02* D03* X4089Y1234D02* D03* X3994D02* D03* X3867Y1235D02* D03* X3804D02* D03* X3752Y1241D02* D03* X3744Y1190D02* D03* X3529Y1234D02* D03* X3498D02* D03* X3435Y1241D02* D03* X3404D02* D03* X3372Y1268D02* D03* Y1234D02* D03* X3341Y1242D02* D03* X3388Y1438D02* D03* X3441Y1423D02* D03* X3472Y1420D02* D03* X3555Y1408D02* D03* X3553Y1566D02* D03* X3522Y1564D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3390Y1579D02* D03* X3385Y1636D02* D03* X3350Y1684D02* D03* X3423Y1697D02* D03* X3489Y1738D02* D03* X3419Y1828D02* D03* X3381Y1789D02* D03* X3383Y1893D02* D03* X3433Y1943D02* D03* X3483D02* D03* X3533D02* D03* X3499Y2030D02* D03* X3434Y1990D02* D03* X3404Y1986D02* D03* X3422Y2188D02* D03* X3418Y2142D02* D03* X3368D02* D03* X3372Y2188D02* D03* Y2288D02* D03* X3366Y2244D02* D03* X3416D02* D03* X3422Y2288D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3472Y2188D02* D03* X3468Y2142D02* D03* X3544Y2137D02* D03* X3577Y2141D02* D03* X3633Y2143D02* D03* Y2093D02* D03* X3667Y1993D02* D03* X3675Y1935D02* D03* X3583Y1943D02* D03* X3633D02* D03* X3627Y1893D02* D03* X3623Y1831D02* D03* X3621Y1789D02* D03* X3717Y1743D02* D03* X3824Y1736D02* D03* X3867Y1743D02* D03* X3917Y1693D02* D03* X4008Y1759D02* D03* X3987Y1781D02* D03* X3965Y1802D02* D03* X3767Y1843D02* D03* X3770Y1888D02* D03* Y1940D02* D03* X3767Y1994D02* D03* X3812Y1993D02* D03* X3826Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X3924Y2035D02* D03* X3918Y2092D02* D03* X3866D02* D03* X3817D02* D03* X3767D02* D03* X3817Y2193D02* D03* X3767D02* D03* X3725Y2247D02* D03* X3817Y2348D02* D03* Y2543D02* D03* X3767Y2727D02* D03* X3674Y2733D02* D03* X3623Y2635D02* D03* X3625Y2597D02* D03* X3583Y2539D02* D03* X3614Y2524D02* D03* X3633Y2493D02* D03* X3552Y2459D02* D03* X3573Y2436D02* D03* X3632Y2439D02* D03* X3627Y2411D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3478Y2430D02* D03* X3413Y2467D02* D03* X3433Y2537D02* D03* X3482Y2539D02* D03* X3533D02* D03* X3472Y2602D02* D03* X3475Y2645D02* D03* X3379Y2633D02* D03* X3421Y2640D02* D03* X3428Y2690D02* D03* X3425Y2736D02* D03* X3380Y2730D02* D03* X3379Y2685D02* D03* X3562Y2688D02* D03* X3525Y2697D02* D03* X3530Y2737D02* D03* X3531Y2784D02* D03* X3476Y2828D02* D03* X3451Y2845D02* D03* X3426Y2827D02* D03* X3367Y2919D02* D03* X3394Y2886D02* D03* X3360Y2847D02* D03* X3291Y2882D02* D03* X3278Y2839D02* D03* Y2961D02* D03* X3235Y2905D02* D03* X3192Y2852D02* D03* X3121Y2869D02* D03* X3103Y2845D02* D03* X3062Y2786D02* D03* X3060Y2855D02* D03* X3030Y2878D02* D03* X3007Y2841D02* D03* X2975Y2835D02* D03* X2825Y2784D02* D03* X2788D02* D03* X2757D02* D03* X2698D02* D03* X2570Y2867D02* D03* X2555Y2912D02* D03* X2585Y2979D02* D03* X2636Y2978D02* D03* X2718Y2979D02* D03* X2745Y3074D02* D03* X2743Y3109D02* D03* Y3151D02* D03* X2742Y3188D02* D03* Y3226D02* D03* X2748Y3268D02* D03* X2746Y3310D02* D03* X2710Y3304D02* D03* X2714Y3268D02* D03* X2672Y3269D02* D03* X2630Y3271D02* D03* X2588Y3272D02* D03* X2589Y3308D02* D03* X2590Y3351D02* D03* X2514Y3308D02* D03* Y3345D02* D03* X2472D02* D03* X2438Y3344D02* D03* Y3307D02* D03* X2472Y3308D02* D03* Y3263D02* D03* Y3230D02* D03* X2514Y3236D02* D03* X2547Y3191D02* D03* X2589Y3194D02* D03* X2591Y3227D02* D03* X2629D02* D03* Y3192D02* D03* X2672Y3226D02* D03* Y3191D02* D03* X2673Y3147D02* D03* X2672Y3111D02* D03* Y3069D02* D03* X2617Y3067D02* D03* X2629Y3114D02* D03* Y3152D02* D03* X2587D02* D03* X2471Y3154D02* D03* X2470Y3114D02* D03* X2549D02* D03* X2546Y3079D02* D03* X2561Y3053D02* D03* X2530Y3047D02* D03* X2468Y3048D02* D03* X2445Y2980D02* D03* X2397Y2982D02* D03* X2411Y2885D02* D03* X2441Y2903D02* D03* X2473Y2873D02* D03* X2500Y2899D02* D03* X2522Y2857D02* D03* X2497Y2790D02* D03* X2463D02* D03* X2704Y2555D02* D03* X2703Y2522D02* D03* X2691Y2462D02* D03* X2693Y2387D02* D03* X2673Y2342D02* D03* X2671Y2311D02* D03* X2670Y2280D02* D03* X2671Y2248D02* D03* X2604Y2393D02* D03* X2601Y2427D02* D03* X2603Y2472D02* D03* X2599Y2534D02* D03* X2598Y2623D02* D03* X2600Y2658D02* D03* X2599Y2694D02* D03* X2699Y2671D02* D03* X2761Y2681D02* D03* X2824Y2685D02* D03* X2823Y2634D02* D03* X2875Y2636D02* D03* X2971Y2585D02* D03* X3020Y2636D02* D03* X3067Y2643D02* D03* X3041Y2687D02* D03* X2977Y2732D02* D03* X2974Y2686D02* D03* X2922Y2682D02* D03* X2872Y2732D02* D03* X2925Y2735D02* D03* X2921Y2779D02* D03* X2875Y2785D02* D03* X2829Y2859D02* D03* X2875Y2834D02* D03* Y2885D02* D03* X2947Y2928D02* D03* X2985Y3039D02* D03* X3053Y3031D02* D03* X3123Y3046D02* D03* X3098Y3029D02* D03* X3119Y2969D02* D03* X3159Y3138D02* D03* X3202Y3217D02* D03* X3174Y3231D02* D03* X3146Y3286D02* D03* X3196Y3296D02* D03* X3245Y3292D02* D03* X3287Y3293D02* D03* X3247Y3340D02* D03* X3293Y3339D02* D03* X3351Y3343D02* D03* X3393D02* D03* X3545Y3386D02* D03* X3541Y3340D02* D03* X3590Y3341D02* D03* X3595Y3384D02* D03* X3590Y3440D02* D03* X3545D02* D03* Y3485D02* D03* X3591Y3497D02* D03* Y3548D02* D03* Y3589D02* D03* X3548Y3587D02* D03* X3542Y3554D02* D03* X3512Y3205D02* D03* X3469D02* D03* X3423D02* D03* X3371Y3139D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3413D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3688Y3027D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3745Y3285D02* D03* X3696Y3286D02* D03* X3644D02* D03* X3594D02* D03* X3592Y3232D02* D03* X3601Y3154D02* D03* X3659Y3191D02* D03* X4247Y2869D02* D03* X4299Y2918D02* D03* X4355D02* D03* X4389Y2835D02* D03* X4432Y2688D02* D03* X4356D02* D03* X4325Y2691D02* D03* X4172Y2688D02* D03* X4121D02* D03* X4079D02* D03* X4066Y2816D02* D03* X4096Y2903D02* D03* X4069Y2917D02* D03* X4010Y2908D02* D03* X3974Y2918D02* D03* X3932Y2811D02* D03* X3891Y2920D02* D03* X3819D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* X3997Y3252D02* D03* Y3323D02* D03* X4122Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X3998Y3465D02* D03* X4001Y3383D02* D03* X3920Y3415D02* D03* X3855Y3367D02* D03* X3791Y3401D02* D03* X3792Y3445D02* D03* X3743Y3440D02* D03* X3748Y3486D02* D03* X3692Y3490D02* D03* X3698Y3441D02* D03* Y3396D02* D03* X3748Y3392D02* D03* X3747Y3340D02* D03* X3695Y3341D02* D03* X3646D02* D03* X3643Y3387D02* D03* X3647Y3441D02* D03* X3648Y3485D02* D03* Y3541D02* D03* X3703Y3553D02* D03* X3740Y3607D02* D03* X3647Y3640D02* D03* X3588Y3697D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3363Y3794D02* D03* X3206Y3720D02* D03* X3288Y3719D02* D03* X3342D02* D03* X3345Y3672D02* D03* X3394Y3670D02* D03* X3395Y3719D02* D03* X3445D02* D03* Y3670D02* D03* X3441Y3604D02* D03* X3392D02* D03* X3344Y3602D02* D03* X3282Y3622D02* D03* X3251Y3621D02* D03* X3209Y3622D02* D03* X3185Y3596D02* D03* X3162Y3641D02* D03* X3096Y3585D02* D03* X3047D02* D03* X2996D02* D03* X2947D02* D03* X2901Y3537D02* D03* X2898Y3505D02* D03* X2899Y3471D02* D03* X2905Y3440D02* D03* X2899Y3410D02* D03* X2806Y3313D02* D03* X2812Y3271D02* D03* X2805Y3229D02* D03* X2822Y3199D02* D03* X2786Y3158D02* D03* X2787Y3115D02* D03* X2994Y3286D02* D03* X2955Y3210D02* D03* X3003Y3163D02* D03* X3061Y3219D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3144Y3340D02* D03* X3192D02* D03* X3197Y3386D02* D03* X3245Y3390D02* D03* X3290D02* D03* X3350Y3387D02* D03* X3393Y3386D02* D03* X3446D02* D03* X3441Y3344D02* D03* X3397Y3280D02* D03* X3443Y3286D02* D03* X3498D02* D03* X3491Y3340D02* D03* X3500Y3383D02* D03* X3491Y3440D02* D03* X3442Y3442D02* D03* X3440Y3484D02* D03* X3387Y3489D02* D03* X3396Y3442D02* D03* X3354D02* D03* X3288D02* D03* X3293Y3486D02* D03* X3248D02* D03* X3196Y3487D02* D03* X3148Y3485D02* D03* X3140Y3442D02* D03* X3089Y3443D02* D03* X3097Y3485D02* D03* X3009Y3443D02* D03* X3051D02* D03* X3043Y3494D02* D03* X2994Y3531D02* D03* X3007Y3495D02* D03* X2965Y3492D02* D03* X2892Y3628D02* D03* X2896Y3658D02* D03* X2939Y3669D02* D03* X2954Y3643D02* D03* X2992Y3640D02* D03* X2998Y3684D02* D03* X3047D02* D03* Y3640D02* D03* X3092D02* D03* X3095Y3684D02* D03* X3133Y3744D02* D03* X3093Y3747D02* D03* X3047Y3740D02* D03* X2992D02* D03* X2951Y3742D02* D03* X2882Y3779D02* D03* X2855Y3758D02* D03* X2822Y3779D02* D03* X2674Y3743D02* D03* X2638Y3770D02* D03* X2584Y3773D02* D03* X2615Y3742D02* D03* X2610Y3709D02* D03* X2612Y3651D02* D03* X2509Y3719D02* D03* X2555Y3742D02* D03* X2532Y3776D02* D03* X2481D02* D03* X2525Y3938D02* D03* X2397Y3955D02* D03* X2360Y3934D02* D03* X2335Y3963D02* D03* X2307Y3934D02* D03* X2273Y3962D02* D03* X2036Y3887D02* D03* X1926Y3896D02* D03* X1809Y3776D02* D03* X1777Y3745D02* D03* X1729Y3706D02* D03* X2396Y3638D02* D03* X2454D02* D03* X2485Y3626D02* D03* X2551Y3582D02* D03* X2550Y3548D02* D03* X2512Y3547D02* D03* X2470Y3545D02* D03* X2472Y3507D02* D03* X2433D02* D03* X2357Y3502D02* D03* X2390Y3507D02* D03* Y3468D02* D03* X2357Y3466D02* D03* X2312Y3469D02* D03* X2278Y3463D02* D03* X2273Y3547D02* D03* X2318Y3578D02* D03* X2333Y3637D02* D03* X2272Y3631D02* D03* X2119Y3641D02* D03* X2117Y3518D02* D03* X2118Y3483D02* D03* X2119Y3431D02* D03* Y3364D02* D03* X2274Y3153D02* D03* X2311Y3114D02* D03* X2376Y3064D02* D03* X2391Y3115D02* D03* X2354Y3114D02* D03* Y3153D02* D03* X2390Y3193D02* D03* X2433Y3231D02* D03* X2435Y3265D02* D03* X2391D02* D03* X2354Y3231D02* D03* X2356Y3265D02* D03* X2312Y3272D02* D03* X2276Y3311D02* D03* X2277Y3349D02* D03* X2311Y3389D02* D03* X2356Y3388D02* D03* X2391Y3391D02* D03* Y3428D02* D03* X2357Y3424D02* D03* Y3345D02* D03* X2391D02* D03* Y3311D02* D03* X2357Y3308D02* D03* X2472Y3387D02* D03* X2435D02* D03* Y3424D02* D03* X2472D02* D03* X2471Y3463D02* D03* X2435Y3464D02* D03* X2515Y3462D02* D03* X2514Y3424D02* D03* Y3387D02* D03* X2550Y3390D02* D03* X2556Y3425D02* D03* X2587Y3429D02* D03* Y3467D02* D03* X2556Y3464D02* D03* Y3504D02* D03* X2592Y3505D02* D03* X2631Y3510D02* D03* X2672Y3506D02* D03* X2706Y3467D02* D03* X2667Y3430D02* D03* X2664Y3468D02* D03* X2629D02* D03* Y3430D02* D03* X2628Y3387D02* D03* X2667Y3388D02* D03* X2666Y3349D02* D03* X2710Y3347D02* D03* X2709Y3389D02* D03* X2745D02* D03* X2746Y3428D02* D03* X2709Y3547D02* D03* X2745Y3506D02* D03* X2819Y3507D02* D03* X2818Y3477D02* D03* X2819Y3537D02* D03* X2778Y3579D02* D03* X2733Y3657D02* D03* X2764Y3721D02* D03* X2732Y3750D02* D03* X2706Y3773D02* D03* X2743Y3892D02* D03* X2801Y3891D02* D03* X2870Y3892D02* D03* X2871Y3952D02* D03* X2804Y4013D02* D03* X2736Y4010D02* D03* X2689Y4063D02* D03* X2658Y4119D02* D03* X2608Y4118D02* D03* X2508Y4117D02* D03* X3012Y4627D02* D03* X2962D02* D03* X2929Y4657D02* D03* X2893Y4667D02* D03* X2873Y4532D02* D03* X2906D02* D03* X2940Y4479D02* D03* X2883Y4465D02* D03* X2871Y4302D02* D03* X2902Y4301D02* D03* X2934Y4231D02* D03* X3025Y4130D02* D03* X2969Y4108D02* D03* X2945Y4089D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X2997Y4044D02* D03* X3005Y3995D02* D03* X3003Y3945D02* D03* X2949Y3901D02* D03* X2930Y3929D02* D03* X3055Y3995D02* D03* Y3946D02* D03* X3105D02* D03* X3146Y3895D02* D03* X3195Y3896D02* D03* X3191Y3949D02* D03* X3045Y3838D02* D03* X3097D02* D03* X3145D02* D03* X3198Y3837D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3244Y3894D02* D03* X3286Y3939D02* D03* X3347Y3943D02* D03* X3297Y4095D02* D03* X3251Y4089D02* D03* X3243Y4238D02* D03* X3202Y4213D02* D03* Y4165D02* D03* X3109D02* D03* X3112Y4199D02* D03* X3050Y4328D02* D03* X3048Y4498D02* D03* Y4538D02* D03* X3034Y4657D02* D03* X3062Y4676D02* D03* X3112Y4673D02* D03* X3162Y4676D02* D03* X3236Y4673D02* D03* X3250Y4646D02* D03* X3286Y4659D02* D03* X3331Y4670D02* D03* X3361Y4671D02* D03* X3462Y4844D02* D03* X3410Y4848D02* D03* X3322Y4849D02* D03* X3263Y4848D02* D03* X3199Y4847D02* D03* X3137Y4844D02* D03* X3087D02* D03* X3037D02* D03* X2987D02* D03* X2937D02* D03* X2896Y4847D02* D03* X2853Y4849D02* D03* X2786Y4848D02* D03* X2537Y4675D02* D03* X2662Y4666D02* D03* X2712Y4623D02* D03* X2761D02* D03* X2787Y4669D02* D03* X2812Y4611D02* D03* X2813Y4568D02* D03* X2815Y4531D02* D03* X2727Y4465D02* D03* X2725Y4434D02* D03* X2684Y4304D02* D03* X2683Y4228D02* D03* X2581Y4227D02* D03* X2514Y4265D02* D03* X2511Y4345D02* D03* X2580Y4311D02* D03* X2223Y4425D02* D03* X2119Y4359D02* D03* X2124Y4218D02* D03* X2061Y4142D02* D03* X2018Y4045D02* D03* X1950Y4156D02* D03* Y4222D02* D03* X1852Y4473D02* D03* Y4510D02* D03* X1851Y4548D02* D03* X1931Y4588D02* D03* X1935Y4647D02* D03* X1864Y4648D02* D03* X2040Y4583D02* D03* X2020Y4619D02* D03* X2014Y4651D02* D03* X2092Y4767D02* D03* X2148Y4773D02* D03* X4560Y4387D02* D03* X4559Y4050D02* D03* Y3700D02* D03* X4568Y3669D02* D03* X4380Y3592D02* D03* X4377Y3509D02* D03* X4354Y3486D02* D03* X4296Y3494D02* D03* X4295Y3563D02* D03* X4303Y3665D02* D03* X4266Y3852D02* D03* X4196Y3951D02* D03* X4126Y3848D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3980Y3787D02* D03* X3938Y3771D02* D03* X3909Y3658D02* D03* X3941Y3623D02* D03* X3899Y3608D02* D03* X3955Y3558D02* D03* X3993Y3546D02* D03* X3995Y3605D02* D03* X3816Y3584D02* D03* X3806Y3613D02* D03* X3820Y3684D02* D03* X3793Y3718D02* D03* X3798Y3772D02* D03* X3827Y3844D02* D03* X3794Y3846D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3693Y3993D02* D03* X3698Y4048D02* D03* X3751D02* D03* X3799Y4006D02* D03* X3831D02* D03* X3879Y3930D02* D03* X3909Y3933D02* D03* X4037Y4027D02* D03* Y4068D02* D03* X4108Y4072D02* D03* X4081Y4187D02* D03* X3645Y3797D02* D03* X3591Y3796D02* D03* X3596Y3896D02* D03* X3505D02* D03* X3493Y4043D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3875Y4187D02* D03* X3841Y4186D02* D03* X3875Y4424D02* D03* X3843Y4422D02* D03* X3855Y4457D02* D03* X3805Y4529D02* D03* X3816Y4490D02* D03* X3697Y4416D02* D03* X3560Y4446D02* D03* X3480Y4308D02* D03* X3416Y4538D02* D03* X3438Y4561D02* D03* X3487Y4562D02* D03* X3537Y4595D02* D03* X3587Y4642D02* D03* X3612Y4616D02* D03* X3637Y4665D02* D03* X3662Y4629D02* D03* X3678Y4567D02* D03* X3712Y4638D02* D03* X3763Y4848D02* D03* X4193Y4780D02* D03* X4319D02* D03* X4577Y4717D02* D03* X4907D02* D03* X5250Y4721D02* D03* X5600D02* D03* X5950D02* D03* X5971Y4360D02* D03* X5880Y4224D02* D03* X5941Y4235D02* D03* X5944Y4185D02* D03* X6016Y4132D02* D03* X5943Y4130D02* D03* X5876Y4150D02* D03* X5730Y4187D02* D03* X5729Y4232D02* D03* X5629Y4233D02* D03* Y4195D02* D03* X5470Y4152D02* D03* X5369Y4188D02* D03* X5390Y4226D02* D03* X5284Y4188D02* D03* X5291Y4230D02* D03* X5206D02* D03* X5105Y4164D02* D03* X5109Y4090D02* D03* X4998Y3999D02* D03* Y3909D02* D03* X4992Y3803D02* D03* X5049Y3652D02* D03* X5091D02* D03* Y3557D02* D03* X5049D02* D03* X4992Y3478D02* D03* X5088Y3433D02* D03* X5188Y3478D02* D03* X5284Y3474D02* D03* X5286Y3546D02* D03* X5349Y3650D02* D03* Y3750D02* D03* X5305Y3819D02* D03* X5216Y3643D02* D03* X5218Y3699D02* D03* X5188Y3803D02* D03* X5142Y3909D02* D03* Y3999D02* D03* X4559Y3305D02* D03* X4381Y3342D02* D03* X4335Y3356D02* D03* X4334Y3386D02* D03* X4297Y3428D02* D03* X4365Y3415D02* D03* X4379Y3442D02* D03* X4302Y3265D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4377Y3142D02* D03* X4369Y3218D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4559Y2950D02* D03* X4701Y2806D02* D03* X4925Y2769D02* D03* X5173Y2566D02* D03* X5009Y2434D02* D03* X4948Y2448D02* D03* X4939Y2354D02* D03* X4986D02* D03* Y2229D02* D03* X4939D02* D03* X4924Y2201D02* D03* X5087Y2128D02* D03* X5124D02* D03* X5162D02* D03* X5240Y2220D02* D03* Y2255D02* D03* Y2290D02* D03* X5704Y2321D02* D03* X5754D02* D03* X5803Y2324D02* D03* X5832Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5754Y2189D02* D03* X5704D02* D03* X5717Y2128D02* D03* X5681D02* D03* X5645D02* D03* X5654Y2189D02* D03* X5625Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5654Y2321D02* D03* X5493Y2223D02* D03* Y2256D02* D03* Y2289D02* D03* X5464Y2324D02* D03* X5415Y2321D02* D03* X5365D02* D03* X5315D02* D03* X5287Y2289D02* D03* Y2256D02* D03* Y2223D02* D03* X5315Y2189D02* D03* X5365D02* D03* X5415D02* D03* X5401Y2128D02* D03* X5437D02* D03* X5473D02* D03* X5620Y1960D02* D03* X5593D02* D03* X5597Y1916D02* D03* X5605Y1862D02* D03* X5573D02* D03* X5530D02* D03* X5522Y1916D02* D03* X5525Y1960D02* D03* X5498D02* D03* X5360Y1865D02* D03* Y1910D02* D03* X5270D02* D03* X5255Y1865D02* D03* X5220D02* D03* X5185D02* D03* X5150D02* D03* X5045Y1677D02* D03* X5044Y1740D02* D03* X5150Y1830D02* D03* X5185D02* D03* X5220D02* D03* X5255D02* D03* X5253Y1772D02* D03* Y1697D02* D03* Y1622D02* D03* X5141Y1510D02* D03* X5081Y1439D02* D03* X5049Y1447D02* D03* X5018Y1446D02* D03* X4638Y1572D02* D03* X4682D02* D03* X4771Y1564D02* D03* X4874Y1572D02* D03* X4929Y1565D02* D03* X4860Y1446D02* D03* X4869Y1387D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1236D02* D03* X5065Y1234D02* D03* X5204Y1213D02* D03* X5211Y1277D02* D03* X5262Y1146D02* D03* X5344Y1139D02* D03* X5392D02* D03* X5344Y1263D02* D03* X5392D02* D03* X5410Y1289D02* D03* X5530Y1265D02* D03* X5558D02* D03* X5588D02* D03* X5630D02* D03* X5658D02* D03* X5688D02* D03* X5736Y1263D02* D03* X5783D02* D03* Y1139D02* D03* X5736D02* D03* X6037Y1066D02* D03* X6028Y1216D02* D03* X6145D02* D03* X6187Y1141D02* D03* X6341D02* D03* X6337Y1230D02* D03* X6236Y1340D02* D03* X6221Y1390D02* D03* X6275D02* D03* X6321D02* D03* X6275Y1436D02* D03* X6321D02* D03* Y1490D02* D03* X6275D02* D03* X6175D02* D03* X6121Y1336D02* D03* X6021D02* D03* X5975D02* D03* X5921D02* D03* X5864Y1269D02* D03* X5688Y1380D02* D03* X5660D02* D03* X5630D02* D03* X5588D02* D03* X5560D02* D03* X5530D02* D03* X6331Y1654D02* D03* X6279Y1610D02* D03* X6359Y1541D02* D03* X6375Y1490D02* D03* X6421D02* D03* X6495Y1594D02* D03* X6475Y1490D02* D03* Y1436D02* D03* X6421D02* D03* X6375D02* D03* Y1390D02* D03* X6421D02* D03* X6375Y1336D02* D03* X6421D02* D03* X6475D02* D03* X6491Y1230D02* D03* X6525Y1188D02* D03* X6515Y1145D02* D03* X6628Y1147D02* D03* Y1177D02* D03* Y1207D02* D03* X6606Y1231D02* D03* X6571Y1340D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6725D02* D03* Y1440D02* D03* X6771D02* D03* Y1486D02* D03* X6825Y1440D02* D03* Y1486D02* D03* X6871D02* D03* Y1440D02* D03* X6825Y1340D02* D03* X6771Y1386D02* D03* X6725D02* D03* Y1340D02* D03* X6671Y1386D02* D03* Y1340D02* D03* X6625D02* D03* Y1386D02* D03* Y1440D02* D03* Y1486D02* D03* X6671D02* D03* X6623Y1594D02* D03* Y1694D02* D03* Y1744D02* D03* X6753Y1775D02* D03* X6823Y1693D02* D03* X6871Y1686D02* D03* Y1640D02* D03* X6829Y1616D02* D03* Y1573D02* D03* X6871Y1586D02* D03* Y1540D02* D03* Y1786D02* D03* Y1740D02* D03* X6925D02* D03* X6971D02* D03* Y1786D02* D03* X6925D02* D03* Y1840D02* D03* X6971D02* D03* X6925Y1940D02* D03* Y1886D02* D03* X6871D02* D03* Y1940D02* D03* Y1986D02* D03* X6824Y2039D02* D03* Y2071D02* D03* X6871Y2086D02* D03* Y2140D02* D03* Y2186D02* D03* X6925Y2240D02* D03* Y2286D02* D03* X6771Y2340D02* D03* Y2386D02* D03* X6725D02* D03* Y2340D02* D03* Y2286D02* D03* X6771D02* D03* X6825D02* D03* Y2340D02* D03* Y2386D02* D03* X6871D02* D03* Y2340D02* D03* Y2440D02* D03* X6825D02* D03* X6771D02* D03* Y2475D02* D03* X6726Y2473D02* D03* X6725Y2440D02* D03* X6475Y2336D02* D03* Y2290D02* D03* X6459Y2231D02* D03* X6502D02* D03* X6571Y2286D02* D03* X6671D02* D03* Y2340D02* D03* Y2386D02* D03* X6625Y2440D02* D03* X6571D02* D03* X6450Y2620D02* D03* Y2580D02* D03* X6500Y2540D02* D03* X6450D02* D03* Y2500D02* D03* X6475Y2436D02* D03* X6410Y2480D02* D03* X6370D02* D03* X6375Y2390D02* D03* Y2290D02* D03* X6321D02* D03* X6275D02* D03* X6221D02* D03* X6175D02* D03* Y2336D02* D03* X5975Y2036D02* D03* Y1990D02* D03* X6021D02* D03* Y2036D02* D03* Y2090D02* D03* Y2136D02* D03* Y2190D02* D03* Y2236D02* D03* X5975D02* D03* Y2190D02* D03* X5921D02* D03* Y2236D02* D03* Y2136D02* D03* X5975D02* D03* Y2090D02* D03* X5936Y2080D02* D03* X5921Y2036D02* D03* Y1990D02* D03* Y1936D02* D03* Y1890D02* D03* X5975D02* D03* Y1936D02* D03* X6021D02* D03* Y1890D02* D03* Y1836D02* D03* Y1790D02* D03* X5975D02* D03* Y1836D02* D03* X5921Y1790D02* D03* Y1836D02* D03* X5870Y1840D02* D03* X5855Y1875D02* D03* Y1910D02* D03* X5758D02* D03* Y1875D02* D03* X5790Y1795D02* D03* X5830D02* D03* X5870D02* D03* X5857Y1745D02* D03* X5825D02* D03* X5790D02* D03* X6021Y1490D02* D03* Y1536D02* D03* X5975D02* D03* Y1490D02* D03* X5921Y1536D02* D03* Y1490D02* D03* Y1436D02* D03* Y1390D02* D03* X5975D02* D03* Y1436D02* D03* X6021D02* D03* Y1390D02* D03* X6075Y1436D02* D03* X6121Y1490D02* D03* X6075D02* D03* Y1536D02* D03* Y1590D02* D03* Y1636D02* D03* X6021D02* D03* Y1590D02* D03* X5975D02* D03* X5876D02* D03* X5921D02* D03* Y1636D02* D03* X5877Y1662D02* D03* X5921Y1690D02* D03* Y1736D02* D03* X5975D02* D03* Y1690D02* D03* X6021D02* D03* Y1736D02* D03* X6075D02* D03* Y1690D02* D03* X6120Y1664D02* D03* X6126Y1791D02* D03* X6113Y1836D02* D03* X6075D02* D03* Y1790D02* D03* Y1890D02* D03* Y1936D02* D03* Y1990D02* D03* Y2036D02* D03* X6135Y2033D02* D03* Y2077D02* D03* X6214Y2109D02* D03* X6075Y2090D02* D03* Y2136D02* D03* Y2190D02* D03* Y2236D02* D03* Y2336D02* D03* X6021Y2290D02* D03* X5975D02* D03* Y2336D02* D03* X5921Y2290D02* D03* Y2336D02* D03* Y2390D02* D03* X5975D02* D03* Y2436D02* D03* X6050Y2480D02* D03* Y2520D02* D03* Y2560D02* D03* X6100D02* D03* Y2520D02* D03* Y2480D02* D03* X6150D02* D03* X6195D02* D03* X6240D02* D03* X6280D02* D03* X6320D02* D03* Y2520D02* D03* X6280D02* D03* X6240D02* D03* Y2560D02* D03* X6280D02* D03* X6320D02* D03* X6363Y2634D02* D03* X6296D02* D03* X6182Y2787D02* D03* X5975Y2769D02* D03* X5625D02* D03* X5645Y2605D02* D03* X5690D02* D03* X5600D02* D03* X5450D02* D03* X5215D02* D03* X5275Y2769D02* D03* X5291Y3404D02* D03* X5252Y3336D02* D03* X5175Y3351D02* D03* X5091Y3322D02* D03* X5049D02* D03* X5175Y3207D02* D03* X5252Y3262D02* D03* X5378Y3258D02* D03* Y3300D02* D03* X5460Y3353D02* D03* X5542Y3300D02* D03* Y3258D02* D03* X5618Y3231D02* D03* X5692D02* D03* X6022Y3470D02* D03* X5979Y3472D02* D03* X5936Y3447D02* D03* X5881Y3442D02* D03* X5850Y3444D02* D03* X5763Y3498D02* D03* X5815Y3444D02* D03* X5770Y3389D02* D03* X5768Y3300D02* D03* Y3258D02* D03* X5827Y3128D02* D03* X5858Y3325D02* D03* X5947Y3300D02* D03* Y3258D02* D03* X6057Y3296D02* D03* X6054Y3359D02* D03* X6037Y3150D02* D03* X6099Y3154D02* D03* X6131Y3365D02* D03* X6123Y3420D02* D03* X5978Y3581D02* D03* X5948Y3565D02* D03* X5900Y3596D02* D03* X5879Y3689D02* D03* X5942Y3676D02* D03* X6019Y3664D02* D03* X6067Y3673D02* D03* X6079Y3732D02* D03* X6025Y3810D02* D03* X5975D02* D03* X5946Y3776D02* D03* X5838Y3847D02* D03* X5928Y3954D02* D03* X5974Y4010D02* D03* X6072Y3954D02* D03* X7115Y4030D02* D03* X7104Y4058D02* D03* X7118Y4085D02* D03* X7104Y4112D02* D03* X7115Y4141D02* D03* X7143Y4126D02* D03* X7119Y4212D02* D03* X7117Y4244D02* D03* X7119Y4295D02* D03* X7104Y4321D02* D03* X7119Y4347D02* D03* X7104Y4373D02* D03* X7119Y4441D02* D03* X7104Y4467D02* D03* X7119Y4493D02* D03* X7104Y4519D02* D03* X7083Y4560D02* D03* X6991Y4592D02* D03* X6992Y4433D02* D03* X6976Y4323D02* D03* X6906Y4217D02* D03* X6854Y4272D02* D03* X6850Y4213D02* D03* X6752Y4189D02* D03* X6656Y4220D02* D03* X6704Y4282D02* D03* X6574Y4365D02* D03* X6322Y4780D02* D03* X6440D02* D03* X6613Y4718D02* D03* X6657D02* D03* X6700D02* D03* X6750D02* D03* X6800D02* D03* X6850D02* D03* X6800Y4643D02* D03* X6850D02* D03* X6873Y4557D02* D03* X6750Y4643D02* D03* X6700D02* D03* X6657D02* D03* X6613D02* D03* X6612Y4850D02* D03* Y4888D02* D03* X6656Y4889D02* D03* Y4849D02* D03* X6700Y4850D02* D03* Y4888D02* D03* X6750D02* D03* Y4850D02* D03* X6800D02* D03* Y4888D02* D03* X7049Y4850D02* D03* Y4888D02* D03* X7000D02* D03* Y4850D02* D03* X6950D02* D03* Y4888D02* D03* X6900D02* D03* Y4850D02* D03* X6850D02* D03* Y4888D02* D03* X6903Y4718D02* D03* X6955Y4717D02* D03* X7000Y4718D02* D03* X7042D02* D03* X7119Y4634D02* D03* X7110Y4681D02* D03* X7127Y4764D02* D03* X7244D02* D03* X7267Y4634D02* D03* Y4488D02* D03* Y4343D02* D03* Y4197D02* D03* Y4051D02* D03* Y3905D02* D03* Y3760D02* D03* Y3614D02* D03* Y3469D02* D03* X6850Y3471D02* D03* X6851Y3621D02* D03* X6852Y3650D02* D03* Y3680D02* D03* Y3710D02* D03* Y3741D02* D03* X6899D02* D03* Y3711D02* D03* Y3681D02* D03* Y3651D02* D03* Y3621D02* D03* X6741Y3737D02* D03* X6734Y3681D02* D03* X6735Y3649D02* D03* X6736Y3618D02* D03* X6691D02* D03* Y3649D02* D03* X6690Y3681D02* D03* X6644Y3619D02* D03* Y3649D02* D03* Y3681D02* D03* X6591Y3769D02* D03* X6576Y3943D02* D03* X6723Y3981D02* D03* X6910Y4005D02* D03* X7094Y3927D02* D03* X7119Y3910D02* D03* X7104Y3884D02* D03* X7119Y3858D02* D03* X7104Y3790D02* D03* X7119Y3764D02* D03* X7104Y3738D02* D03* X7119Y3712D02* D03* X7126Y3679D02* D03* X7119Y3644D02* D03* X7141Y3544D02* D03* X7104Y3543D02* D03* X7097Y3513D02* D03* X7113Y3487D02* D03* X7097Y3459D02* D03* X7120Y3428D02* D03* X7104Y3353D02* D03* X7119Y3327D02* D03* X7104Y3301D02* D03* X7119Y3275D02* D03* X7061Y3270D02* D03* X7060Y3230D02* D03* X7104Y3208D02* D03* X7061Y3185D02* D03* Y3145D02* D03* X7060Y3105D02* D03* X7119Y3130D02* D03* X7104Y3156D02* D03* X7119Y2984D02* D03* X7104Y3010D02* D03* X7119Y3036D02* D03* X7104Y3062D02* D03* X6920Y3105D02* D03* X6970Y3030D02* D03* Y2990D02* D03* X6865D02* D03* Y3030D02* D03* X6815Y3105D02* D03* X6775D02* D03* X6776Y3145D02* D03* Y3185D02* D03* X6815Y3230D02* D03* X6775D02* D03* X6776Y3270D02* D03* X6816D02* D03* X6921D02* D03* X6920Y3230D02* D03* X6726Y3270D02* D03* X6725Y3230D02* D03* X6670D02* D03* X6671Y3270D02* D03* X6621D02* D03* X6620Y3230D02* D03* X6570D02* D03* X6571Y3270D02* D03* X6760Y2877D02* D03* X6722D02* D03* X6671Y2876D02* D03* X6621Y2875D02* D03* Y2990D02* D03* Y3030D02* D03* X6671D02* D03* Y2991D02* D03* X6570Y3105D02* D03* X6620D02* D03* X6670D02* D03* X6725D02* D03* X6720Y2991D02* D03* X6719Y3030D02* D03* X6762D02* D03* X6761Y2991D02* D03* Y2955D02* D03* Y2917D02* D03* X6865Y2865D02* D03* X6970D02* D03* X7267Y2618D02* D03* Y2473D02* D03* Y2327D02* D03* Y2181D02* D03* Y2035D02* D03* Y1890D02* D03* Y1744D02* D03* Y1599D02* D03* X7258Y1512D02* D03* Y1480D02* D03* Y1449D02* D03* Y1417D02* D03* X7267Y1331D02* D03* X7274Y1234D02* D03* X7267Y1185D02* D03* X7025Y1340D02* D03* Y1386D02* D03* X6971D02* D03* Y1340D02* D03* X6925D02* D03* Y1386D02* D03* X6971Y1440D02* D03* X6925D02* D03* Y1486D02* D03* X6971D02* D03* X7025Y1440D02* D03* Y1486D02* D03* Y1540D02* D03* Y1586D02* D03* X6971D02* D03* Y1540D02* D03* X6925D02* D03* Y1586D02* D03* Y1640D02* D03* Y1686D02* D03* X6971D02* D03* Y1640D02* D03* X7025D02* D03* Y1686D02* D03* Y1740D02* D03* Y1786D02* D03* Y1840D02* D03* Y1886D02* D03* Y1940D02* D03* Y1986D02* D03* Y2040D02* D03* Y2086D02* D03* X6925D02* D03* X6971Y2140D02* D03* X7025D02* D03* Y2186D02* D03* X7104Y2212D02* D03* X7119Y2186D02* D03* X7104Y2160D02* D03* X7119Y2134D02* D03* X7104Y2066D02* D03* X7119Y2040D02* D03* X7104Y2014D02* D03* X7119Y1988D02* D03* X7104Y1920D02* D03* X7119Y1894D02* D03* X7104Y1868D02* D03* X7119Y1842D02* D03* X7104Y1775D02* D03* X7119Y1749D02* D03* X7104Y1723D02* D03* X7119Y1697D02* D03* X7104Y1629D02* D03* X7119Y1603D02* D03* X7104Y1577D02* D03* X7119Y1551D02* D03* X7186Y1465D02* D03* X7190Y1411D02* D03* X7136Y1407D02* D03* X7119Y1378D02* D03* X7104Y1352D02* D03* X7119Y1326D02* D03* X7104Y1300D02* D03* X7118Y1219D02* D03* X7089Y1238D02* D03* X7090Y1207D02* D03* X7089Y1130D02* D03* X6959D02* D03* Y1162D02* D03* Y1200D02* D03* X6937Y1231D02* D03* X6850D02* D03* X6829Y1207D02* D03* Y1177D02* D03* Y1147D02* D03* X6971Y2386D02* D03* X6925D02* D03* Y2440D02* D03* X6971D02* D03* X7025D02* D03* Y2386D02* D03* Y2340D02* D03* Y2286D02* D03* X7119Y2279D02* D03* X7104Y2305D02* D03* X7119Y2331D02* D03* X7104Y2357D02* D03* X7119Y2425D02* D03* X7109Y2454D02* D03* X7120Y2482D02* D03* X7109Y2510D02* D03* X7119Y2571D02* D03* Y2623D02* D03* X7104Y2649D02* D03* Y2597D02* D03* X7018Y2569D02* D03* X6934Y2564D02* D03* X6885D02* D03* X6837Y2565D02* D03* X6781D02* D03* X6726Y2567D02* D03* X6672Y2573D02* D03* X6659Y2658D02* D03* X6672Y2702D02* D03* X6726Y2694D02* D03* X6781Y2693D02* D03* X6837Y2695D02* D03* X6885Y2696D02* D03* X6939Y2698D02* D03* X7052Y2692D02* D03* X7051Y2722D02* D03* X7074Y2744D02* D03* X7104Y2742D02* D03* X7119Y2716D02* D03* Y2768D02* D03* X7104Y2794D02* D03* X7267Y2764D02* D03* X7258Y2850D02* D03* Y2882D02* D03* Y2913D02* D03* X7189Y2843D02* D03* Y2889D02* D03* X7135Y2906D02* D03* X7189Y2952D02* D03* X7258Y2945D02* D03* X7267Y3031D02* D03* X7293Y3132D02* D03* X7267Y3177D02* D03* Y3323D02* D03* D370* X2696Y1743D02* D03* X2511Y2178D02* D03* X2422Y1931D02* D03* X2349Y2077D02* D03* X2232Y2049D02* D03* X2200D02* D03* X2084Y2078D02* D03* X2087Y2038D02* D03* X2016Y1987D02* D03* X1620Y1924D02* D03* X2000Y2429D02* D03* X1997Y2532D02* D03* X2008Y2552D02* D03* X2022Y2571D02* D03* X2023Y2597D02* D03* X2009Y2618D02* D03* X2021Y2637D02* D03* X2017Y2665D02* D03* X2034Y2687D02* D03* X2050Y2659D02* D03* X2088Y2635D02* D03* X2124Y2636D02* D03* X2135Y2676D02* D03* X2161Y2675D02* D03* X2193Y2694D02* D03* X2233Y2629D02* D03* X2253Y2609D02* D03* X2334Y2481D02* D03* X2296Y2382D02* D03* X2459Y2679D02* D03* X2440Y2696D02* D03* X2563Y3930D02* D03* X2594Y3949D02* D03* X2626Y3931D02* D03* X2658Y3948D02* D03* X3498Y3491D02* D03* X3261Y3550D02* D03* X3249Y3418D02* D03* X3311Y3222D02* D03* X3278Y3212D02* D03* X2999Y2809D02* D03* X3282Y2609D02* D03* X3351Y2543D02* D03* X3598Y2695D02* D03* X3660Y2609D02* D03* X3754Y2394D02* D03* X4475Y1446D02* D03* X4709Y1567D02* D03* X5236Y3160D02* D03* X4700Y2832D02* D03* X4229Y3058D02* D03* X4184Y3033D02* D03* X4192Y3076D02* D03* Y3107D02* D03* X4187Y3293D02* D03* X4185Y3356D02* D03* X4558Y3500D02* D03* X6813Y3935D02* D03* X6838D02* D03* X6864D02* D03* X6889D02* D03* X6915D02* D03* X6978D02* D03* X7016D02* D03* X6985Y3657D02* D03* Y3443D02* D03* X7019Y2538D02* D03* X6971Y2527D02* D03* X6222Y2673D02* D03* X6130Y1717D02* D03* D049* X1984Y3825D02* D03* Y3726D02* D03* X1886D02* D03* X1528Y1787D02* D03* X1606Y1748D02* D03* X1685D02* D03* X1764D02* D03* Y1669D02* D03* X1685D02* D03* X1606D02* D03* X1528Y1630D02* D03* X1921Y1748D02* D03* X1843D02* D03* Y1669D02* D03* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5135Y2844D02* D03* X5085Y2894D02* D03* X5135Y2944D02* D03* X5185Y2894D02* D03* Y3094D02* D03* X5235Y3044D02* D03* X5185Y2994D02* D03* X5235Y2944D02* D03* X5285Y2994D02* D03* X5335Y3044D02* D03* X5285Y3094D02* D03* X5385D02* D03* X5435Y3044D02* D03* X5385Y2994D02* D03* X5335Y2944D02* D03* X5285Y2894D02* D03* X5235Y2844D02* D03* X5335D02* D03* X5385Y2894D02* D03* X5435Y2944D02* D03* X5485Y2994D02* D03* X5535Y3044D02* D03* X5485Y3094D02* D03* X5435Y2844D02* D03* X5485Y2894D02* D03* X5535Y2944D02* D03* X5585Y2894D02* D03* X5535Y2844D02* D03* X5635D02* D03* X5685Y2894D02* D03* X5635Y2944D02* D03* X5585Y2994D02* D03* X5635Y3044D02* D03* X5585Y3094D02* D03* X5685D02* D03* X5735Y3044D02* D03* X5685Y2994D02* D03* X5735Y2944D02* D03* Y2844D02* D03* X5785Y2894D02* D03* X5835Y2844D02* D03* X5935D02* D03* X5885Y2894D02* D03* X5935Y2944D02* D03* X5985Y2894D02* D03* X6035Y2844D02* D03* X6085Y2894D02* D03* X6135Y2944D02* D03* X6185Y2994D02* D03* X6235Y3044D02* D03* X6185Y3094D02* D03* X6085D02* D03* X6135Y3044D02* D03* X6085Y2994D02* D03* X6035Y2944D02* D03* X5985Y2994D02* D03* X6035Y3044D02* D03* X5985Y3094D02* D03* X5885D02* D03* X5935Y3044D02* D03* X5885Y2994D02* D03* X5835Y2944D02* D03* X5785Y2994D02* D03* X5835Y3044D02* D03* X5785Y3094D02* D03* X6135Y2844D02* D03* X6185Y2894D02* D03* X6235Y2944D02* D03* X6285Y2994D02* D03* X6335Y3044D02* D03* X6285Y3194D02* D03* X6335Y3244D02* D03* X6385Y3194D02* D03* X6435Y3144D02* D03* X6385Y3094D02* D03* X6435Y3044D02* D03* X6385Y2994D02* D03* X6335Y2944D02* D03* X6285Y2894D02* D03* X6235Y2844D02* D03* X6335D02* D03* X6385Y2894D02* D03* X6435Y2944D02* D03* Y2844D02* D03* X5645Y3406D02* D03* Y3456D02* D03* Y3506D02* D03* Y3556D02* D03* Y3606D02* D03* Y3656D02* D03* Y3706D02* D03* Y3756D02* D03* Y3806D02* D03* Y3856D02* D03* Y3906D02* D03* Y3956D02* D03* Y4006D02* D03* Y4056D02* D03* Y4106D02* D03* X5545D02* D03* Y4056D02* D03* Y4006D02* D03* Y3956D02* D03* Y3906D02* D03* Y3856D02* D03* Y3806D02* D03* Y3756D02* D03* Y3706D02* D03* Y3656D02* D03* Y3606D02* D03* Y3556D02* D03* Y3506D02* D03* Y3456D02* D03* X4885Y3094D02* D03* X4935Y3044D02* D03* X4985Y2994D02* D03* X5035Y3044D02* D03* X4985Y3094D02* D03* X5085D02* D03* X5135Y3044D02* D03* X5085Y2994D02* D03* X5035Y2944D02* D03* X4985Y2894D02* D03* X5035Y2844D02* D03* X4935D02* D03* X4885Y2894D02* D03* X4835Y2844D02* D03* X4935Y2944D02* D03* X4885Y2994D02* D03* X4835Y3044D02* D03* X4785Y2994D02* D03* X4835Y2944D02* D03* X4785Y2894D02* D03* X4735Y2844D02* D03* X4635Y2944D02* D03* X4685Y2894D02* D03* X4735Y2944D02* D03* X4685Y2994D02* D03* X4635Y3044D02* D03* Y3244D02* D03* X4685Y3194D02* D03* X4635Y3144D02* D03* X4735D02* D03* X4685Y3094D02* D03* X4735Y3044D02* D03* X4785Y3094D02* D03* X4835Y3144D02* D03* X4885Y3194D02* D03* X4785D02* D03* X4735Y3244D02* D03* X4685Y3294D02* D03* X4635Y3344D02* D03* X4685Y3394D02* D03* X4635Y3444D02* D03* Y3544D02* D03* X4685Y3594D02* D03* X4635Y3644D02* D03* X4735D02* D03* X4685Y3694D02* D03* X4735Y3744D02* D03* X4785Y3694D02* D03* X4835Y3644D02* D03* X4885Y3694D02* D03* X4785Y3594D02* D03* X4835Y3544D02* D03* X4885Y3594D02* D03* Y3494D02* D03* Y3394D02* D03* X4835Y3444D02* D03* X4785Y3494D02* D03* X4735Y3544D02* D03* X4685Y3494D02* D03* X4735Y3444D02* D03* X4785Y3394D02* D03* X4735Y3344D02* D03* X4785Y3294D02* D03* X4835Y3244D02* D03* X4885Y3294D02* D03* X4835Y3344D02* D03* X4785Y3794D02* D03* X4835Y3744D02* D03* X4885Y3794D02* D03* X4835Y3844D02* D03* X4785Y3894D02* D03* X4735Y3844D02* D03* X4685Y3794D02* D03* X4635Y3744D02* D03* Y3844D02* D03* X4685Y3894D02* D03* X4635Y3944D02* D03* X4685Y3994D02* D03* X4635Y4044D02* D03* X4735D02* D03* X4685Y4094D02* D03* X4735Y4144D02* D03* X4785Y4094D02* D03* X4835Y4044D02* D03* X4885Y3994D02* D03* Y3894D02* D03* X4835Y3944D02* D03* X4785Y3994D02* D03* X4735Y3944D02* D03* X4635Y4144D02* D03* X4685Y4194D02* D03* X4635Y4244D02* D03* X4735D02* D03* X4685Y4294D02* D03* X4735Y4344D02* D03* X4785Y4294D02* D03* X4835Y4244D02* D03* X4885Y4094D02* D03* Y4194D02* D03* X4835Y4144D02* D03* X4785Y4194D02* D03* X4885Y4294D02* D03* X4835Y4344D02* D03* X4885Y4394D02* D03* X4785D02* D03* X4735Y4444D02* D03* X4685Y4394D02* D03* X4635Y4344D02* D03* Y4444D02* D03* X4685Y4494D02* D03* X4635Y4544D02* D03* X4685Y4594D02* D03* X4735Y4544D02* D03* X4785Y4594D02* D03* X4835Y4644D02* D03* X4885Y4594D02* D03* X4835Y4544D02* D03* X4785Y4494D02* D03* X4835Y4444D02* D03* X4885Y4494D02* D03* X4935Y4544D02* D03* X5035D02* D03* X4985Y4494D02* D03* X4935Y4444D02* D03* X4985Y4394D02* D03* X5035Y4444D02* D03* X5085Y4394D02* D03* X5135Y4444D02* D03* X5085Y4494D02* D03* X5135Y4544D02* D03* X5185Y4594D02* D03* X5235Y4544D02* D03* X5185Y4494D02* D03* X5235Y4444D02* D03* X5185Y4394D02* D03* X5335Y4644D02* D03* X5385Y4594D02* D03* X5435Y4644D02* D03* X5485Y4594D02* D03* X5535Y4644D02* D03* X5435Y4544D02* D03* X5385Y4494D02* D03* X5435Y4444D02* D03* X5385Y4394D02* D03* X5285D02* D03* X5335Y4444D02* D03* X5285Y4494D02* D03* X5335Y4544D02* D03* X5285Y4594D02* D03* X5235Y4644D02* D03* X5135D02* D03* X5085Y4594D02* D03* X5035Y4644D02* D03* X4985Y4594D02* D03* X4935Y4644D02* D03* X5485Y4394D02* D03* X5535Y4444D02* D03* X5485Y4494D02* D03* X5535Y4544D02* D03* X5585Y4494D02* D03* X5635Y4444D02* D03* X5585Y4394D02* D03* X5685D02* D03* X5735Y4444D02* D03* X5685Y4494D02* D03* X5735Y4544D02* D03* X5685Y4594D02* D03* X5635Y4544D02* D03* X5585Y4594D02* D03* X5635Y4644D02* D03* X5735D02* D03* X5785Y4594D02* D03* X5835Y4644D02* D03* X5885Y4594D02* D03* X5935Y4644D02* D03* X5985Y4594D02* D03* X5935Y4544D02* D03* X5885Y4494D02* D03* X5935Y4444D02* D03* X5885Y4394D02* D03* X5785D02* D03* X5835Y4444D02* D03* X5785Y4494D02* D03* X5835Y4544D02* D03* X5985Y4394D02* D03* X6035Y4444D02* D03* X5985Y4494D02* D03* X6035Y4544D02* D03* X6085Y4494D02* D03* X6135Y4444D02* D03* X6085Y4394D02* D03* X6185D02* D03* X6235Y4444D02* D03* X6185Y4494D02* D03* X6235Y4544D02* D03* X6135D02* D03* X6085Y4594D02* D03* X6035Y4644D02* D03* X6135D02* D03* X6185Y4594D02* D03* X6235Y4644D02* D03* X6285Y4594D02* D03* X6335Y4644D02* D03* X6385Y4594D02* D03* X6435Y4644D02* D03* X6335Y4444D02* D03* X6285Y4494D02* D03* X6335Y4544D02* D03* X6435D02* D03* X6385Y4494D02* D03* X6435Y4444D02* D03* X6385Y4394D02* D03* X6435Y4344D02* D03* X6385Y4294D02* D03* X6335Y4244D02* D03* X6285Y4294D02* D03* Y4194D02* D03* X6335Y4144D02* D03* X6285Y4094D02* D03* X6335Y4044D02* D03* X6385Y3994D02* D03* X6435Y3944D02* D03* X6385Y3894D02* D03* X6435Y3844D02* D03* Y3744D02* D03* X6385Y3694D02* D03* X6335Y3644D02* D03* X6285Y3694D02* D03* Y3594D02* D03* X6335Y3544D02* D03* X6385Y3594D02* D03* X6435Y3544D02* D03* Y3644D02* D03* Y3344D02* D03* X6385Y3294D02* D03* X6435Y3244D02* D03* X6335Y3144D02* D03* X6285Y3094D02* D03* X6235Y3144D02* D03* X6185Y3194D02* D03* X6235Y3244D02* D03* X6185Y3294D02* D03* X6235Y3344D02* D03* X6185Y3394D02* D03* X6235Y3444D02* D03* X6285Y3494D02* D03* X6335Y3444D02* D03* X6285Y3394D02* D03* Y3294D02* D03* X6335Y3344D02* D03* X6385Y3394D02* D03* X6435Y3444D02* D03* X6385Y3494D02* D03* X6185D02* D03* X6235Y3544D02* D03* X6185Y3594D02* D03* X6235Y3644D02* D03* X6185Y3694D02* D03* X6235Y3744D02* D03* X6185Y3794D02* D03* Y3894D02* D03* X6235Y3844D02* D03* X6285Y3794D02* D03* X6335Y3744D02* D03* X6385Y3794D02* D03* X6335Y3844D02* D03* X6285Y3894D02* D03* X6335Y3944D02* D03* X6285Y3994D02* D03* X6235Y3944D02* D03* X6185Y3994D02* D03* X6235Y4044D02* D03* X6185Y4094D02* D03* X6235Y4144D02* D03* X6185Y4194D02* D03* X6235Y4244D02* D03* X6185Y4294D02* D03* X6235Y4344D02* D03* X6285Y4394D02* D03* X6335Y4344D02* D03* X6435Y4244D02* D03* X6385Y4194D02* D03* X6435Y4144D02* D03* X6385Y4094D02* D03* X6435Y4044D02* D03* X6972Y1069D02* D03* D322* X1528Y1709D02* D03* D053* X1730Y2142D02* D03* X1652D02* D03* X1573D02* D03* Y2260D02* D03* X1652D02* D03* X1730Y2614D02* D03* X1652D02* D03* X1573D02* D03* Y2732D02* D03* X1652D02* D03* X1511Y3041D02* D03* Y3141D02* D03* Y3426D02* D03* Y3526D02* D03* X1814Y4091D02* D03* Y4189D02* D03* Y4268D02* D03* X2081Y4644D02* D03* D028* X1516Y2059D02* X1587D01* X1809Y2236D02* Y2165D01* X1587Y2343D02* X1516D01* X1587Y2531D02* X1516D01* Y2815D02* X1587D01* X1809Y2709D02* Y2638D01* D052* X4919Y1339D02* D03* X4819D02* D03* X4719D02* D03* X4619D02* D03* X4519D02* D03* X4419D02* D03* X4319D02* D03* X1834Y1521D02* D03* X2020Y3109D02* D03* Y3209D02* D03* Y3309D02* D03* Y3409D02* D03* X1920Y3359D02* D03* Y3259D02* D03* Y3159D02* D03* X2138Y4049D02* D03* X1954Y4780D02* D03* X4370Y3885D02* D03* Y3785D02* D03* X4332Y2800D02* D03* X5555Y2543D02* D03* X5969D02* D03* X6386D02* D03* X7083Y3398D02* D03* X6689Y3787D02* D03* X7083Y4177D02* D03* D048* X1734Y1471D02* D03* X1976Y1230D02* D03* Y1181D02* D03* X7346Y1157D02* D03* Y1236D02* D03* Y1315D02* D03* Y1394D02* D03* Y1472D02* D03* Y1551D02* D03* Y1630D02* D03* Y1709D02* D03* Y1787D02* D03* X7425Y1709D02* D03* Y1787D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1709D02* D03* X7583D02* D03* X7504D02* D03* Y1630D02* D03* X7425D02* D03* Y1551D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1630D02* D03* X7583D02* D03* X7661Y1866D02* D03* X7583D02* D03* X7504D02* D03* Y1945D02* D03* X7425D02* D03* Y1866D02* D03* X7346D02* D03* Y1945D02* D03* Y2024D02* D03* Y2102D02* D03* Y2181D02* D03* Y2260D02* D03* Y2339D02* D03* Y2417D02* D03* Y2496D02* D03* Y2575D02* D03* Y2654D02* D03* Y2732D02* D03* Y2811D02* D03* Y2890D02* D03* Y2969D02* D03* Y3047D02* D03* Y3126D02* D03* Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* Y3756D02* D03* X7425Y3441D02* D03* Y3362D02* D03* X7504D02* D03* Y3441D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y3362D02* D03* Y3283D02* D03* Y3205D02* D03* Y3047D02* D03* Y2969D02* D03* Y2890D02* D03* Y2811D02* D03* Y2732D02* D03* Y2654D02* D03* Y2575D02* D03* Y2496D02* D03* X7583D02* D03* X7661D02* D03* Y2575D02* D03* X7583D02* D03* X7504D02* D03* Y2496D02* D03* X7425D02* D03* Y2575D02* D03* Y2732D02* D03* Y2654D02* D03* X7504D02* D03* Y2732D02* D03* X7583D02* D03* X7661D02* D03* Y2654D02* D03* X7583D02* D03* Y2811D02* D03* X7661D02* D03* Y2890D02* D03* X7583D02* D03* X7504D02* D03* Y2811D02* D03* X7425D02* D03* Y2890D02* D03* Y3047D02* D03* Y2969D02* D03* X7504D02* D03* Y3047D02* D03* X7583D02* D03* X7661D02* D03* Y2969D02* D03* X7583D02* D03* Y2339D02* D03* X7661D02* D03* Y2260D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* Y2417D02* D03* Y2339D02* D03* X7504D02* D03* Y2417D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y2339D02* D03* Y2260D02* D03* X7583Y1945D02* D03* X7661D02* D03* X7740D02* D03* Y1866D02* D03* Y1787D02* D03* Y1709D02* D03* Y1630D02* D03* Y1551D02* D03* Y1472D02* D03* Y1394D02* D03* Y1315D02* D03* Y1236D02* D03* X7661Y1315D02* D03* X7583D02* D03* X7425Y1394D02* D03* Y1472D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1394D02* D03* X7583D02* D03* X7504D02* D03* Y1315D02* D03* X7425D02* D03* Y1236D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y1157D02* D03* X7583D02* D03* X7504D02* D03* X7425D02* D03* X7583Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7583D02* D03* X7504D02* D03* Y3205D02* D03* X7425D02* D03* Y3126D02* D03* Y3283D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* Y3362D02* D03* X7583D02* D03* Y3520D02* D03* X7661D02* D03* Y3598D02* D03* X7583D02* D03* X7504D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3756D02* D03* Y3677D02* D03* X7504D02* D03* Y3756D02* D03* X7583D02* D03* X7661D02* D03* Y3677D02* D03* X7583D02* D03* Y3835D02* D03* X7661D02* D03* Y3913D02* D03* X7583D02* D03* X7504D02* D03* Y3835D02* D03* X7425D02* D03* Y3913D02* D03* X7346Y3835D02* D03* Y3913D02* D03* Y3992D02* D03* Y4071D02* D03* X7425D02* D03* Y3992D02* D03* X7504D02* D03* Y4071D02* D03* X7583D02* D03* X7661D02* D03* Y3992D02* D03* X7583D02* D03* Y4307D02* D03* X7661D02* D03* Y4386D02* D03* X7583D02* D03* X7504D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* Y4228D02* D03* Y4150D02* D03* X7504D02* D03* Y4228D02* D03* X7583D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* X7346D02* D03* Y4228D02* D03* Y4307D02* D03* Y4386D02* D03* Y4465D02* D03* Y4543D02* D03* Y4622D02* D03* Y4701D02* D03* Y4780D02* D03* X7425Y4543D02* D03* Y4465D02* D03* X7504D02* D03* Y4543D02* D03* X7583D02* D03* X7661D02* D03* Y4465D02* D03* X7583D02* D03* Y4622D02* D03* X7661D02* D03* Y4701D02* D03* X7583D02* D03* X7504D02* D03* Y4622D02* D03* X7425D02* D03* Y4701D02* D03* Y4780D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4701D02* D03* Y4622D02* D03* Y4543D02* D03* Y4465D02* D03* Y4386D02* D03* Y4307D02* D03* Y4228D02* D03* Y4150D02* D03* Y4071D02* D03* Y3992D02* D03* Y3913D02* D03* Y3835D02* D03* Y3756D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* D047* X2327Y1787D02* D03* D03* Y1237D02* D03* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D065* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1791Y2978D02* D03* Y3589D02* D03* D331* X1670Y3058D02* D03* Y3509D02* D03* D060* X4275Y4140D02* D03* X5346Y2524D02* D03* X6650Y4102D02* D03* D061* X7425Y2102D02* D03* X7661D02* D03* D056* X2359Y4522D02* D03* X3940D02* D03* D018* X7504Y1157D02* X7464Y1197D01* X7326D01* X7259Y1130D01* X7089D01* X7045D01* X7005Y1170D01* Y1229D01* X6969Y1265D01* X5868D01* X5864Y1269D01* X4370Y3785D02* X4454Y3869D01* Y4646D01* X4565Y4757D01* X6274D01* X6315Y4716D01* X6473D01* X6574Y4615D01* Y4365D01* D014* X6385Y3394D02* X6336D01* X6125Y3605D01* X5974D01* X5890Y3689D01* X5879D01* D076* X1921Y1669D02* D03* X1886Y3825D02* D03* X4735Y4644D02* D03* X5545Y3406D02* D03* D080* X1730Y2260D02* D03* Y2732D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D081* X1809Y2236D02* D03* Y2165D02* D03* X1587Y2059D02* D03* X1516D02* D03* Y2343D02* D03* X1587D02* D03* Y2531D02* D03* X1516D02* D03* Y2815D02* D03* X1587D02* D03* X1809Y2709D02* D03* Y2638D02* D03* D079* X1834Y1421D02* D03* X1920Y3459D02* D03* X2138Y3949D02* D03* X1854Y4780D02* D03* X4370Y3985D02* D03* X4140Y2800D02* D03* X5019Y1339D02* D03* X5752Y2543D02* D03* X6165D02* D03* X6583D02* D03* X7083Y3594D02* D03* X6886Y3787D02* D03* X7083Y3980D02* D03* D075* X1976Y1280D02* D03* X7740Y1157D02* D03* Y3126D02* D03* M02*gerbv-2.7.0/example/Makefile.am0000644000175000017500000000204613421555713016204 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA SUBDIRS = am-test cslk dan eaglecad1 ekf2 exposure jj Mentor-BoardStation nollezappare \ numpres orcad pick-and-place polarity thermal trailing MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/pick-and-place/0000755000175000017500000000000013423533413016711 5ustar carstencarstengerbv-2.7.0/example/pick-and-place/LED.frontsilk.gbr0000644000175000017500000006305013421555714022035 0ustar carstencarstenG04 start of page 8 for group -4079 idx -4079 G04 Title: (unknown), topsilk * G04 Creator: pcb 1.99w * G04 CreationDate: Wed Jan 2 23:41:37 2008 UTC * G04 For: dan * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 350000 330000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNFRONTSILK*% %ADD29C,0.0080*% %ADD30C,0.0118*% %ADD31C,0.0112*% %ADD32C,0.0100*% %ADD33C,0.0300*% G54D29*X4350Y4850D02*Y4190D01* X4680D01* X4878Y4520D02*X5125D01* X4878Y4190D02*X5208D01* X4878Y4850D02*Y4190D01* Y4850D02*X5208D01* X5488D02*Y4190D01* X5736Y4850D02*X5818Y4767D01* Y4272D01* X5736Y4190D02*X5818Y4272D01* X5406Y4190D02*X5736D01* X5406Y4850D02*X5736D01* X6313D02*X6478D01* X6396D02*Y4190D01* X6313D02*X6478D01* X6759Y4437D02*Y4190D01* Y4437D02*X6842Y4520D01* X6924D01* X7007Y4437D01* Y4190D01* X6677Y4520D02*X6759Y4437D01* X7287Y4850D02*Y4272D01* X7370Y4190D01* X7205Y4602D02*X7370D01* X7617Y4190D02*X7865D01* X7535Y4272D02*X7617Y4190D01* X7535Y4437D02*Y4272D01* Y4437D02*X7617Y4520D01* X7782D01* X7865Y4437D01* X7535Y4355D02*X7865D01* Y4437D02*Y4355D01* X8146Y4437D02*Y4190D01* Y4437D02*X8228Y4520D01* X8393D01* X8063D02*X8146Y4437D01* X8674Y4767D02*Y4190D01* Y4767D02*X8756Y4850D01* X8839D01* X8591Y4520D02*X8756D01* X9251D02*X9334Y4437D01* X9086Y4520D02*X9251D01* X9004Y4437D02*X9086Y4520D01* X9004Y4437D02*Y4272D01* X9086Y4190D01* X9334Y4520D02*Y4272D01* X9416Y4190D01* X9086D02*X9251D01* X9334Y4272D01* X9697Y4520D02*X9945D01* X9615Y4437D02*X9697Y4520D01* X9615Y4437D02*Y4272D01* X9697Y4190D01* X9945D01* X10225D02*X10473D01* X10143Y4272D02*X10225Y4190D01* X10143Y4437D02*Y4272D01* Y4437D02*X10225Y4520D01* X10390D01* X10473Y4437D01* X10143Y4355D02*X10473D01* Y4437D02*Y4355D01* X14550Y1520D02*X14780D01* X14665Y1635D02*Y1405D01* X14918Y1750D02*Y1692D01* X15205Y1405D01* Y1290D01* X14918Y1405D02*Y1290D01* Y1405D02*X15205Y1692D01* Y1750D02*Y1692D01* X12550Y1520D02*X12780D01* X12918Y1750D02*Y1692D01* X13205Y1405D01* Y1290D01* X12918Y1405D02*Y1290D01* Y1405D02*X13205Y1692D01* Y1750D02*Y1692D01* X20450Y1470D02*X20680D01* X20565Y1585D02*Y1355D01* X20818Y1700D02*Y1642D01* X20933Y1527D01* X21048Y1642D01* Y1700D02*Y1642D01* X20933Y1527D02*Y1240D01* X18550Y1520D02*X18780D01* X18918Y1750D02*Y1692D01* X19033Y1577D01* X19148Y1692D01* Y1750D02*Y1692D01* X19033Y1577D02*Y1290D01* G54D30*X18850Y30150D02*Y28970D01* Y29412D02*X18997Y29560D01* X19292D01* X19440Y29412D01* Y28970D01* X20236Y29560D02*X20384Y29412D01* X19941Y29560D02*X20236D01* X19794Y29412D02*X19941Y29560D01* X19794Y29412D02*Y29117D01* X19941Y28970D01* X20384Y29560D02*Y29117D01* X20531Y28970D01* X19941D02*X20236D01* X20384Y29117D01* X21033Y29412D02*Y28970D01* Y29412D02*X21181Y29560D01* X21476D01* X20886D02*X21033Y29412D01* X21977D02*Y28970D01* Y29412D02*X22125Y29560D01* X22420D01* X21830D02*X21977Y29412D01* X22774Y29560D02*Y29117D01* X22922Y28970D01* X23364Y29560D02*Y28675D01* X23217Y28527D02*X23364Y28675D01* X22922Y28527D02*X23217D01* X22774Y28675D02*X22922Y28527D01* Y28970D02*X23217D01* X23364Y29117D01* X24397Y28970D02*X24839D01* X24249Y29117D02*X24397Y28970D01* X24249Y29412D02*Y29117D01* Y29412D02*X24397Y29560D01* X24692D01* X24839Y29412D01* X24249Y29265D02*X24839D01* Y29412D02*Y29265D01* X25636Y29560D02*X25784Y29412D01* X25341Y29560D02*X25636D01* X25194Y29412D02*X25341Y29560D01* X25194Y29412D02*Y29117D01* X25341Y28970D01* X25784Y29560D02*Y29117D01* X25931Y28970D01* X25341D02*X25636D01* X25784Y29117D01* X26433Y30150D02*Y29117D01* X26581Y28970D01* X26286Y29707D02*X26581D01* X26876Y29412D02*Y29117D01* Y29412D02*X27023Y29560D01* X27318D01* X27466Y29412D01* Y29117D01* X27318Y28970D02*X27466Y29117D01* X27023Y28970D02*X27318D01* X26876Y29117D02*X27023Y28970D01* X27968Y29412D02*Y28970D01* Y29412D02*X28115Y29560D01* X28263D01* X28410Y29412D01* Y28970D01* X27820Y29560D02*X27968Y29412D01* G54D31*X5250Y30050D02*Y28930D01* Y30050D02*X5810D01* X5250Y29490D02*X5670D01* X6146Y30050D02*Y28930D01* X6706D01* X7042Y29910D02*Y28930D01* Y29910D02*X7182Y30050D01* X7602D01* X7742Y29910D01* Y28930D01* X7042Y29490D02*X7742D01* X8078Y30050D02*X8638D01* X8778Y29910D01* Y29630D01* X8638Y29490D02*X8778Y29630D01* X8218Y29490D02*X8638D01* X8218Y30050D02*Y28930D01* Y29490D02*X8778Y28930D01* X9115Y29490D02*X9535D01* X9115Y28930D02*X9675D01* X9115Y30050D02*Y28930D01* Y30050D02*X9675D01* X11075D02*X11215Y29910D01* X10655Y30050D02*X11075D01* X10515Y29910D02*X10655Y30050D01* X10515Y29910D02*Y29070D01* X10655Y28930D01* X11075D01* X11215Y29070D01* Y29350D02*Y29070D01* X11075Y29490D02*X11215Y29350D01* X10795Y29490D02*X11075D01* X11551D02*X11971D01* X11551Y28930D02*X12111D01* X11551Y30050D02*Y28930D01* Y30050D02*X12111D01* X12447D02*Y28930D01* Y30050D02*Y29910D01* X13147Y29210D01* Y30050D02*Y28930D01* X13484Y29490D02*X13904D01* X13484Y28930D02*X14044D01* X13484Y30050D02*Y28930D01* Y30050D02*X14044D01* X14940D02*X15080Y29910D01* X14520Y30050D02*X14940D01* X14380Y29910D02*X14520Y30050D01* X14380Y29910D02*Y29630D01* X14520Y29490D01* X14940D01* X15080Y29350D01* Y29070D01* X14940Y28930D02*X15080Y29070D01* X14520Y28930D02*X14940D01* X14380Y29070D02*X14520Y28930D01* X15416Y30050D02*X15696D01* X15556D02*Y28930D01* X15416D02*X15696D01* X16593Y30050D02*X16733Y29910D01* X16173Y30050D02*X16593D01* X16033Y29910D02*X16173Y30050D01* X16033Y29910D02*Y29630D01* X16173Y29490D01* X16593D01* X16733Y29350D01* Y29070D01* X16593Y28930D02*X16733Y29070D01* X16173Y28930D02*X16593D01* X16033Y29070D02*X16173Y28930D01* G54D29*X22100Y1742D02*Y1340D01* Y1742D02*X22157Y1800D01* X22330D01* X22387Y1742D01* Y1340D01* X22100Y1570D02*X22387D01* X22525Y1800D02*Y1340D01* Y1800D02*Y1742D01* X22813Y1455D01* Y1800D02*Y1340D01* X22951Y1742D02*Y1397D01* Y1742D02*X23008Y1800D01* X23123D01* X23181Y1742D01* Y1397D01* X23123Y1340D02*X23181Y1397D01* X23008Y1340D02*X23123D01* X22951Y1397D02*X23008Y1340D01* X23376Y1800D02*Y1340D01* X23549Y1800D02*X23606Y1742D01* Y1397D01* X23549Y1340D02*X23606Y1397D01* X23319Y1340D02*X23549D01* X23319Y1800D02*X23549D01* X23744Y1570D02*X23917D01* X23744Y1340D02*X23974D01* X23744Y1800D02*Y1340D01* Y1800D02*X23974D01* G54D32*X10350Y13050D02*Y12500D01* X11500D02*X9200D01* Y6800D01* X11500D01* Y12500D01* X10350Y6800D02*Y6150D01* X5030Y20800D02*X8780D01* X5030Y18280D02*Y20800D01* X3870Y12350D02*X3860Y17120D01* X5030Y8670D02*Y11190D01* X8780Y8670D02*X5030D01* X8780Y20800D02*Y8670D01* X4450Y17700D02*G75*G03X5030Y18280I0J580D01*G01* X4450Y17700D02*G75*G03X3870Y17120I0J-580D01*G01* Y12350D02*G75*G03X4450Y11770I580J0D01*G01* X5030Y11190D02*G75*G03X4450Y11770I-580J0D01*G01* X11800Y16880D02*Y16760D01* X10480D01* Y16880D01* X11800Y18060D02*Y18180D01* X10480D01* Y18060D01* X11670Y16860D02*X10610D01* X10050Y21750D02*X8050D01* Y22750D01* X10050D01* Y21750D01* X10650Y22250D02*X10050D01* X8050D02*X7450D01* X15300Y21600D02*Y21650D01* X13300D01* Y21600D01* Y20700D02*Y20650D01* X15300D01* Y20700D01* X15800Y21750D02*Y22750D01* X12800D01* Y21750D01* X15800D01* X13700Y19500D02*X15300D01* X13700Y20200D02*Y19500D01* X15300Y20200D02*X13700D01* X15300Y19500D02*Y20200D01* X12300Y19150D02*X14300D01* Y18150D01* X12300D01* Y19150D01* X11700Y18650D02*X12300D01* X14300D02*X14900D01* X12300Y14650D02*X13300D01* Y17650D01* X12300D01* Y14650D01* X12100Y14850D02*Y16450D01* X11400Y14850D02*X12100D01* X11400Y16450D02*Y14850D01* X12100Y16450D02*X11400D01* X12050Y19800D02*X10450D01* X12050Y19100D02*Y19800D01* X10450Y19100D02*X12050D01* X10450Y19800D02*Y19100D01* X25250Y14250D02*Y10250D01* X29250D01* Y14250D01* X25250D02*X26750D01* X27750D02*X29250D01* X26750D02*G75*G03X27750Y14250I500J0D01*G01* X27900Y15350D02*X26300D01* X27900Y14650D02*Y15350D01* X26300Y14650D02*X27900D01* X26300Y15350D02*Y14650D01* X29100Y9600D02*X27500D01* X29100Y8900D02*Y9600D01* X27500Y8900D02*X29100D01* X27500Y9600D02*Y8900D01* X25400D02*X27000D01* X25400Y9600D02*Y8900D01* X27000Y9600D02*X25400D01* X27000Y8900D02*Y9600D01* X18970Y2150D02*Y2350D01* X20910Y2150D02*Y2350D01* X22850Y2150D02*Y2350D01* X23660Y5450D02*X23860D01* X23660Y5650D02*Y5450D01* X23860Y5650D02*X23660D01* X17760Y5450D02*X17960D01* X17760Y5650D02*Y5450D01* X17960Y5650D02*X17760D01* X23860Y5750D02*Y2150D01* X17960Y5750D02*X23860D01* X17960Y2150D02*Y5750D01* X23860Y2150D02*X17960D01* X21100Y6650D02*Y8250D01* X20400Y6650D02*X21100D01* X20400Y8250D02*Y6650D01* X21100Y8250D02*X20400D01* X22400Y7750D02*Y9750D01* X23400D01* Y7750D01* X22400D01* X22900Y7150D02*Y7750D01* Y9750D02*Y10350D01* X23500Y7750D02*Y9750D01* X24500D01* Y7750D01* X23500D01* X24000Y7150D02*Y7750D01* Y9750D02*Y10350D01* X21300Y7750D02*Y9750D01* X22300D01* Y7750D01* X21300D01* X21800Y7150D02*Y7750D01* Y9750D02*Y10350D01* X20350D02*Y8750D01* X21050Y10350D02*X20350D01* X21050Y8750D02*Y10350D01* X20350Y8750D02*X21050D01* X26150Y21800D02*Y22800D01* X23150D01* Y21800D01* X26150D01* X19800Y22750D02*Y21750D01* X22800D01* Y22750D01* X19800D01* X20300Y20700D02*Y20650D01* X22300D01* Y20700D01* Y21600D02*Y21650D01* X20300D01* Y21600D01* X22200Y23400D02*Y28000D01* X22700Y28500D02*X26800D01* X27300Y28000D02*Y23900D01* X26800Y23400D02*X22200D01* X22700Y28500D02*G75*G03X22200Y28000I0J-500D01*G01* X27300D02*G75*G03X26800Y28500I-500J0D01*G01* Y23400D02*G75*G03X27300Y23900I0J500D01*G01* X28150Y16600D02*Y17150D01* X27000D02*X29300D01* Y22850D01* X27000D01* Y17150D01* X28150Y22850D02*Y23500D01* X22950Y20300D02*Y19300D01* X25950D01* Y20300D01* X22950D01* X24900Y19150D02*Y17550D01* X25600Y19150D02*X24900D01* X25600Y17550D02*Y19150D01* X24900Y17550D02*X25600D01* X17150Y13950D02*X19150D01* Y12950D01* X17150D01* Y13950D01* X16550Y13450D02*X17150D01* X19150D02*X19750D01* G54D33*X16300Y16800D03* G54D32*X16180Y16640D02*X15930D01* Y18760D01* X16180D01* X19730Y16640D02*X20000D01* Y18760D01* X19730D01* X22100Y15250D02*Y13250D01* X21100D01* Y15250D01* X22100D01* X21600Y15850D02*Y15250D01* Y13250D02*Y12650D01* X23200Y15200D02*Y13200D01* X22200D01* Y15200D01* X23200D01* X22700Y15800D02*Y15200D01* Y13200D02*Y12600D01* X21450Y18450D02*X23050D01* X21450Y19150D02*Y18450D01* X23050Y19150D02*X21450D01* X23050Y18450D02*Y19150D01* X22350Y18120D02*Y18240D01* X23670D01* Y18120D01* X22350Y16940D02*Y16820D01* X23670D01* Y16940D01* X22480Y18140D02*X23540D01* X24250Y15200D02*Y13200D01* X23250D01* Y15200D01* X24250D01* X23750Y15800D02*Y15200D01* Y13200D02*Y12600D01* X22200Y20250D02*X20600D01* X22200Y19550D02*Y20250D01* X20600Y19550D02*X22200D01* X20600Y20250D02*Y19550D01* X21050Y24350D02*X22050D01* Y27350D01* X21050D01* Y24350D01* X11450Y23900D02*X20450D01* Y27900D01* X11450D01* Y23900D02*Y25400D01* Y26400D02*Y27900D01* Y25400D02*G75*G03X11450Y26400I0J500D01*G01* X10550Y23550D02*Y27550D01* X6550D01* Y23550D01* X10550D02*X9050D01* X8050D02*X6550D01* X9050D02*G75*G03X8050Y23550I-500J0D01*G01* X20050Y10650D02*X12050D01* Y6650D01* X20050D01* Y10650D02*Y9150D01* Y8150D02*Y6650D01* Y9150D02*G75*G03X20050Y8150I0J-500D01*G01* X17550Y11800D02*X19550D01* Y10800D01* X17550D01* Y11800D01* X16950Y11300D02*X17550D01* X19550D02*X20150D01* X14250Y14500D02*Y12500D01* X13250D01* Y14500D01* X14250D01* X13750Y15100D02*Y14500D01* Y12500D02*Y11900D01* X14400Y13000D02*X15400D01* Y16000D01* X14400D01* Y13000D01* X19950Y14050D02*Y15050D01* X16950D01* Y14050D01* X19950D01* X17550Y12850D02*X19550D01* Y11850D01* X17550D01* Y12850D01* X16950Y12350D02*X17550D01* X19550D02*X20150D01* X13070Y2150D02*Y2350D01* X15010Y2150D02*Y2350D01* X16950Y2150D02*Y2350D01* X17760Y5450D02*X17960D01* X17760Y5650D02*Y5450D01* X17960Y5650D02*X17760D01* X11860Y5450D02*X12060D01* X11860Y5650D02*Y5450D01* X12060Y5650D02*X11860D01* X17960Y5750D02*Y2150D01* X12060Y5750D02*X17960D01* X12060Y2150D02*Y5750D01* X17960Y2150D02*X12060D01* G54D29*X8300Y6650D02*X8600D01* X8675Y6575D01* Y6425D01* X8600Y6350D02*X8675Y6425D01* X8375Y6350D02*X8600D01* X8375Y6650D02*Y6050D01* Y6350D02*X8675Y6050D01* X8930D02*X9080D01* X9005Y6650D02*Y6050D01* X8855Y6500D02*X9005Y6650D01* X9260Y6575D02*X9335Y6650D01* X9560D01* X9635Y6575D01* Y6425D01* X9260Y6050D02*X9635Y6425D01* X9260Y6050D02*X9635D01* X6950Y8530D02*X7175D01* Y8005D01* X7100Y7930D02*X7175Y8005D01* X7025Y7930D02*X7100D01* X6950Y8005D02*X7025Y7930D01* X7355Y8455D02*X7430Y8530D01* X7580D01* X7655Y8455D01* Y8005D01* X7580Y7930D02*X7655Y8005D01* X7430Y7930D02*X7580D01* X7355Y8005D02*X7430Y7930D01* Y8230D02*X7655D01* X11050Y2990D02*X11275D01* Y2465D01* X11200Y2390D02*X11275Y2465D01* X11125Y2390D02*X11200D01* X11050Y2465D02*X11125Y2390D01* X11455Y2915D02*X11530Y2990D01* X11755D01* X11830Y2915D01* Y2765D01* X11455Y2390D02*X11830Y2765D01* X11455Y2390D02*X11830D01* X24250Y3240D02*X24475D01* Y2715D01* X24400Y2640D02*X24475Y2715D01* X24325Y2640D02*X24400D01* X24250Y2715D02*X24325Y2640D01* X24730D02*X24880D01* X24805Y3240D02*Y2640D01* X24655Y3090D02*X24805Y3240D01* X27725Y8100D02*X27950D01* X27650Y8175D02*X27725Y8100D01* X27650Y8625D02*Y8175D01* Y8625D02*X27725Y8700D01* X27950D01* X28205Y8100D02*X28355D01* X28280Y8700D02*Y8100D01* X28130Y8550D02*X28280Y8700D01* X28535Y8100D02*X28835Y8400D01* Y8625D02*Y8400D01* X28760Y8700D02*X28835Y8625D01* X28610Y8700D02*X28760D01* X28535Y8625D02*X28610Y8700D01* X28535Y8625D02*Y8475D01* X28610Y8400D01* X28835D01* X25575Y8100D02*X25800D01* X25500Y8175D02*X25575Y8100D01* X25500Y8625D02*Y8175D01* Y8625D02*X25575Y8700D01* X25800D01* X25980Y8625D02*X26055Y8700D01* X26280D01* X26355Y8625D01* Y8475D01* X25980Y8100D02*X26355Y8475D01* X25980Y8100D02*X26355D01* X26535Y8175D02*X26610Y8100D01* X26535Y8625D02*Y8175D01* Y8625D02*X26610Y8700D01* X26760D01* X26835Y8625D01* Y8175D01* X26760Y8100D02*X26835Y8175D01* X26610Y8100D02*X26760D01* X26535Y8250D02*X26835Y8550D01* X24600Y7750D02*X24900D01* X24975Y7675D01* Y7525D01* X24900Y7450D02*X24975Y7525D01* X24675Y7450D02*X24900D01* X24675Y7750D02*Y7150D01* Y7450D02*X24975Y7150D01* X25155Y7675D02*X25230Y7750D01* X25455D01* X25530Y7675D01* Y7525D01* X25155Y7150D02*X25530Y7525D01* X25155Y7150D02*X25530D01* X20425Y5900D02*X20650D01* X20350Y5975D02*X20425Y5900D01* X20350Y6425D02*Y5975D01* Y6425D02*X20425Y6500D01* X20650D01* X20830Y6425D02*X20905Y6500D01* X21055D01* X21130Y6425D01* Y5975D01* X21055Y5900D02*X21130Y5975D01* X20905Y5900D02*X21055D01* X20830Y5975D02*X20905Y5900D01* Y6200D02*X21130D01* X22600Y8400D02*Y8100D01* Y8400D02*X22675Y8475D01* X22825D01* X22900Y8400D02*X22825Y8475D01* X22900Y8400D02*Y8175D01* X22600D02*X23200D01* X22900D02*X23200Y8475D01* X22675Y8655D02*X22600Y8730D01* Y8880D02*Y8730D01* Y8880D02*X22675Y8955D01* X23125D01* X23200Y8880D02*X23125Y8955D01* X23200Y8880D02*Y8730D01* X23125Y8655D02*X23200Y8730D01* X22900Y8955D02*Y8730D01* X21450Y8500D02*Y8200D01* Y8500D02*X21525Y8575D01* X21675D01* X21750Y8500D02*X21675Y8575D01* X21750Y8500D02*Y8275D01* X21450D02*X22050D01* X21750D02*X22050Y8575D01* Y8980D02*Y8830D01* X21450Y8905D02*X22050D01* X21600Y8755D02*X21450Y8905D01* X25225Y21090D02*X25450D01* X25150Y21165D02*X25225Y21090D01* X25150Y21615D02*Y21165D01* Y21615D02*X25225Y21690D01* X25450D01* X25630Y21615D02*X25705Y21690D01* X25930D01* X26005Y21615D01* Y21465D01* X25630Y21090D02*X26005Y21465D01* X25630Y21090D02*X26005D01* X26260D02*X26410D01* X26335Y21690D02*Y21090D01* X26185Y21540D02*X26335Y21690D01* X17350Y20590D02*Y20065D01* X17425Y19990D01* X17575D01* X17650Y20065D01* Y20590D02*Y20065D01* X17830Y20515D02*X17905Y20590D01* X18130D01* X18205Y20515D01* Y20365D01* X17830Y19990D02*X18205Y20365D01* X17830Y19990D02*X18205D01* X18925Y20950D02*X19150D01* X18850Y21025D02*X18925Y20950D01* X18850Y21475D02*Y21025D01* Y21475D02*X18925Y21550D01* X19150D01* X19330Y20950D02*X19630Y21250D01* Y21475D02*Y21250D01* X19555Y21550D02*X19630Y21475D01* X19405Y21550D02*X19555D01* X19330Y21475D02*X19405Y21550D01* X19330Y21475D02*Y21325D01* X19405Y21250D01* X19630D01* X23175Y20490D02*X23400D01* X23100Y20565D02*X23175Y20490D01* X23100Y21015D02*Y20565D01* Y21015D02*X23175Y21090D01* X23400D01* X23655Y20490D02*X23805D01* X23730Y21090D02*Y20490D01* X23580Y20940D02*X23730Y21090D01* X23985Y21015D02*X24060Y21090D01* X24285D01* X24360Y21015D01* Y20865D01* X23985Y20490D02*X24360Y20865D01* X23985Y20490D02*X24360D01* X22400Y14050D02*Y13750D01* Y14050D02*X22475Y14125D01* X22625D01* X22700Y14050D02*X22625Y14125D01* X22700Y14050D02*Y13825D01* X22400D02*X23000D01* X22700D02*X23000Y14125D01* X22925Y14305D02*X23000Y14380D01* X22775Y14305D02*X22925D01* X22775D02*X22700Y14380D01* Y14530D02*Y14380D01* Y14530D02*X22775Y14605D01* X22925D01* X23000Y14530D02*X22925Y14605D01* X23000Y14530D02*Y14380D01* X22625Y14305D02*X22700Y14380D01* X22475Y14305D02*X22625D01* X22475D02*X22400Y14380D01* Y14530D02*Y14380D01* Y14530D02*X22475Y14605D01* X22625D01* X22700Y14530D02*X22625Y14605D01* X24400Y15050D02*X24700D01* X24775Y14975D01* Y14825D01* X24700Y14750D02*X24775Y14825D01* X24475Y14750D02*X24700D01* X24475Y15050D02*Y14450D01* Y14750D02*X24775Y14450D01* X25180Y15050D02*X25255Y14975D01* X25030Y15050D02*X25180D01* X24955Y14975D02*X25030Y15050D01* X24955Y14975D02*Y14525D01* X25030Y14450D01* X25180Y14750D02*X25255Y14675D01* X24955Y14750D02*X25180D01* X25030Y14450D02*X25180D01* X25255Y14525D01* Y14675D02*Y14525D01* X17450Y13800D02*X17750D01* X17825Y13725D01* Y13575D01* X17750Y13500D02*X17825Y13575D01* X17525Y13500D02*X17750D01* X17525Y13800D02*Y13200D01* Y13500D02*X17825Y13200D01* X18005Y13500D02*X18305Y13800D01* X18005Y13500D02*X18380D01* X18305Y13800D02*Y13200D01* X21300Y13800D02*Y13500D01* Y13800D02*X21375Y13875D01* X21525D01* X21600Y13800D02*X21525Y13875D01* X21600Y13800D02*Y13575D01* X21300D02*X21900D01* X21600D02*X21900Y13875D01* Y14280D02*Y14130D01* X21300Y14205D02*X21900D01* X21450Y14055D02*X21300Y14205D01* X21825Y14460D02*X21900Y14535D01* X21375Y14460D02*X21825D01* X21375D02*X21300Y14535D01* Y14685D02*Y14535D01* Y14685D02*X21375Y14760D01* X21825D01* X21900Y14685D02*X21825Y14760D01* X21900Y14685D02*Y14535D01* X21750Y14460D02*X21450Y14760D01* X20175Y14140D02*X20400D01* X20100Y14215D02*X20175Y14140D01* X20100Y14665D02*Y14215D01* Y14665D02*X20175Y14740D01* X20400D01* X20580Y14665D02*X20655Y14740D01* X20880D01* X20955Y14665D01* Y14515D01* X20580Y14140D02*X20955Y14515D01* X20580Y14140D02*X20955D01* X18050Y12650D02*X18350D01* X18425Y12575D01* Y12425D01* X18350Y12350D02*X18425Y12425D01* X18125Y12350D02*X18350D01* X18125Y12650D02*Y12050D01* Y12350D02*X18425Y12050D01* X18605D02*X18980Y12425D01* Y12650D02*Y12425D01* X18605Y12650D02*X18980D01* X25025Y16850D02*X25250D01* X24950Y16925D02*X25025Y16850D01* X24950Y17375D02*Y16925D01* Y17375D02*X25025Y17450D01* X25250D01* X25505Y16850D02*X25655D01* X25580Y17450D02*Y16850D01* X25430Y17300D02*X25580Y17450D01* X25835Y17375D02*X25910Y17450D01* X26060D01* X26135Y17375D01* Y16925D01* X26060Y16850D02*X26135Y16925D01* X25910Y16850D02*X26060D01* X25835Y16925D02*X25910Y16850D01* Y17150D02*X26135D01* X27550Y26050D02*Y25975D01* X27925Y25600D01* Y25450D01* X27550Y25600D02*Y25450D01* Y25600D02*X27925Y25975D01* Y26050D02*Y25975D01* X28180Y25450D02*X28330D01* X28255Y26050D02*Y25450D01* X28105Y25900D02*X28255Y26050D01* X21025Y22890D02*X21250D01* X20950Y22965D02*X21025Y22890D01* X20950Y23415D02*Y22965D01* Y23415D02*X21025Y23490D01* X21250D01* X21430Y22965D02*X21505Y22890D01* X21430Y23115D02*Y22965D01* Y23115D02*X21505Y23190D01* X21655D01* X21730Y23115D01* Y22965D01* X21655Y22890D02*X21730Y22965D01* X21505Y22890D02*X21655D01* X21430Y23265D02*X21505Y23190D01* X21430Y23415D02*Y23265D01* Y23415D02*X21505Y23490D01* X21655D01* X21730Y23415D01* Y23265D01* X21655Y23190D02*X21730Y23265D01* X20960Y17920D02*Y17395D01* X21035Y17320D01* X21185D01* X21260Y17395D01* Y17920D02*Y17395D01* X21440Y17845D02*X21515Y17920D01* X21665D01* X21740Y17845D01* Y17395D01* X21665Y17320D02*X21740Y17395D01* X21515Y17320D02*X21665D01* X21440Y17395D02*X21515Y17320D01* Y17620D02*X21740D01* X29550Y11750D02*Y11225D01* X29625Y11150D01* X29775D01* X29850Y11225D01* Y11750D02*Y11225D01* X30030Y11150D02*X30405Y11525D01* Y11750D02*Y11525D01* X30030Y11750D02*X30405D01* X28275Y14600D02*X28500D01* X28200Y14675D02*X28275Y14600D01* X28200Y15125D02*Y14675D01* Y15125D02*X28275Y15200D01* X28500D01* X28755Y14600D02*X28905D01* X28830Y15200D02*Y14600D01* X28680Y15050D02*X28830Y15200D01* X29085Y14675D02*X29160Y14600D01* X29085Y14825D02*Y14675D01* Y14825D02*X29160Y14900D01* X29310D01* X29385Y14825D01* Y14675D01* X29310Y14600D02*X29385Y14675D01* X29160Y14600D02*X29310D01* X29085Y14975D02*X29160Y14900D01* X29085Y15125D02*Y14975D01* Y15125D02*X29160Y15200D01* X29310D01* X29385Y15125D01* Y14975D01* X29310Y14900D02*X29385Y14975D01* X28750Y16900D02*X29050D01* X29125Y16825D01* Y16675D01* X29050Y16600D02*X29125Y16675D01* X28825Y16600D02*X29050D01* X28825Y16900D02*Y16300D01* Y16600D02*X29125Y16300D01* X29380D02*X29530D01* X29455Y16900D02*Y16300D01* X29305Y16750D02*X29455Y16900D01* X29785Y16300D02*X29935D01* X29860Y16900D02*Y16300D01* X29710Y16750D02*X29860Y16900D01* X20725Y27540D02*X20950D01* X20650Y27615D02*X20725Y27540D01* X20650Y28065D02*Y27615D01* Y28065D02*X20725Y28140D01* X20950D01* X21205Y27540D02*X21355D01* X21280Y28140D02*Y27540D01* X21130Y27990D02*X21280Y28140D01* X21535Y27540D02*X21910Y27915D01* Y28140D02*Y27915D01* X21535Y28140D02*X21910D01* X14800Y11450D02*Y10925D01* X14875Y10850D01* X15025D01* X15100Y10925D01* Y11450D02*Y10925D01* X15355Y10850D02*X15505D01* X15430Y11450D02*Y10850D01* X15280Y11300D02*X15430Y11450D01* X17800Y11550D02*X18100D01* X18175Y11475D01* Y11325D01* X18100Y11250D02*X18175Y11325D01* X17875Y11250D02*X18100D01* X17875Y11550D02*Y10950D01* Y11250D02*X18175Y10950D01* X18355D02*X18655Y11250D01* Y11475D02*Y11250D01* X18580Y11550D02*X18655Y11475D01* X18430Y11550D02*X18580D01* X18355Y11475D02*X18430Y11550D01* X18355Y11475D02*Y11325D01* X18430Y11250D01* X18655D01* X14575Y12190D02*X14800D01* X14500Y12265D02*X14575Y12190D01* X14500Y12715D02*Y12265D01* Y12715D02*X14575Y12790D01* X14800D01* X15055Y12190D02*X15205D01* X15130Y12790D02*Y12190D01* X14980Y12640D02*X15130Y12790D01* X12050Y13750D02*X12350D01* X12425Y13675D01* Y13525D01* X12350Y13450D02*X12425Y13525D01* X12125Y13450D02*X12350D01* X12125Y13750D02*Y13150D01* Y13450D02*X12425Y13150D01* X12605Y13750D02*X12905D01* X12605D02*Y13450D01* X12680Y13525D01* X12830D01* X12905Y13450D01* Y13225D01* X12830Y13150D02*X12905Y13225D01* X12680Y13150D02*X12830D01* X12605Y13225D02*X12680Y13150D01* X9260Y18420D02*Y17895D01* X9335Y17820D01* X9485D01* X9560Y17895D01* Y18420D02*Y17895D01* X9740Y18120D02*X10040Y18420D01* X9740Y18120D02*X10115D01* X10040Y18420D02*Y17820D01* X13600Y18000D02*X13900D01* X13975Y17925D01* Y17775D01* X13900Y17700D02*X13975Y17775D01* X13675Y17700D02*X13900D01* X13675Y18000D02*Y17400D01* Y17700D02*X13975Y17400D01* X14230D02*X14380D01* X14305Y18000D02*Y17400D01* X14155Y17850D02*X14305Y18000D01* X14560Y17925D02*X14635Y18000D01* X14785D01* X14860Y17925D01* Y17475D01* X14785Y17400D02*X14860Y17475D01* X14635Y17400D02*X14785D01* X14560Y17475D02*X14635Y17400D01* Y17700D02*X14860D01* X13525Y16290D02*X13750D01* X13450Y16365D02*X13525Y16290D01* X13450Y16815D02*Y16365D01* Y16815D02*X13525Y16890D01* X13750D01* X14005Y16290D02*X14155D01* X14080Y16890D02*Y16290D01* X13930Y16740D02*X14080Y16890D01* X14335D02*X14635D01* X14335D02*Y16590D01* X14410Y16665D01* X14560D01* X14635Y16590D01* Y16365D01* X14560Y16290D02*X14635Y16365D01* X14410Y16290D02*X14560D01* X14335Y16365D02*X14410Y16290D01* X9875Y15300D02*X10100D01* X9800Y15375D02*X9875Y15300D01* X9800Y15825D02*Y15375D01* Y15825D02*X9875Y15900D01* X10100D01* X10355Y15300D02*X10505D01* X10430Y15900D02*Y15300D01* X10280Y15750D02*X10430Y15900D01* X10685Y15600D02*X10985Y15900D01* X10685Y15600D02*X11060D01* X10985Y15900D02*Y15300D01* X12025Y20850D02*X12250D01* X11950Y20925D02*X12025Y20850D01* X11950Y21375D02*Y20925D01* Y21375D02*X12025Y21450D01* X12250D01* X12655D02*X12730Y21375D01* X12505Y21450D02*X12655D01* X12430Y21375D02*X12505Y21450D01* X12430Y21375D02*Y20925D01* X12505Y20850D01* X12655Y21150D02*X12730Y21075D01* X12430Y21150D02*X12655D01* X12505Y20850D02*X12655D01* X12730Y20925D01* Y21075D02*Y20925D01* X11675Y23090D02*X11900D01* X11600Y23165D02*X11675Y23090D01* X11600Y23615D02*Y23165D01* Y23615D02*X11675Y23690D01* X11900D01* X12080Y23090D02*X12455Y23465D01* Y23690D02*Y23465D01* X12080Y23690D02*X12455D01* X12775Y19550D02*X13000D01* X12700Y19625D02*X12775Y19550D01* X12700Y20075D02*Y19625D01* Y20075D02*X12775Y20150D01* X13000D01* X13180D02*X13480D01* X13180D02*Y19850D01* X13255Y19925D01* X13405D01* X13480Y19850D01* Y19625D01* X13405Y19550D02*X13480Y19625D01* X13255Y19550D02*X13405D01* X13180Y19625D02*X13255Y19550D01* X8400Y21650D02*X8700D01* X8775Y21575D01* Y21425D01* X8700Y21350D02*X8775Y21425D01* X8475Y21350D02*X8700D01* X8475Y21650D02*Y21050D01* Y21350D02*X8775Y21050D01* X9030D02*X9180D01* X9105Y21650D02*Y21050D01* X8955Y21500D02*X9105Y21650D01* X9360Y21350D02*X9660Y21650D01* X9360Y21350D02*X9735D01* X9660Y21650D02*Y21050D01* X16600Y23600D02*Y23075D01* X16675Y23000D01* X16825D01* X16900Y23075D01* Y23600D02*Y23075D01* X17080Y23600D02*X17380D01* X17080D02*Y23300D01* X17155Y23375D01* X17305D01* X17380Y23300D01* Y23075D01* X17305Y23000D02*X17380Y23075D01* X17155Y23000D02*X17305D01* X17080Y23075D02*X17155Y23000D01* X5000Y24600D02*Y24075D01* X5075Y24000D01* X5225D01* X5300Y24075D01* Y24600D02*Y24075D01* X5705Y24600D02*X5780Y24525D01* X5555Y24600D02*X5705D01* X5480Y24525D02*X5555Y24600D01* X5480Y24525D02*Y24075D01* X5555Y24000D01* X5705Y24300D02*X5780Y24225D01* X5480Y24300D02*X5705D01* X5555Y24000D02*X5705D01* X5780Y24075D01* Y24225D02*Y24075D01* M02* gerbv-2.7.0/example/pick-and-place/Makefile.am0000644000175000017500000000011213421555714020745 0ustar carstencarsten## $Id$ ## EXTRA_DIST=LED.xy \ LED.frontsilk.gbr MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/pick-and-place/LED.xy0000644000175000017500000000457413421555714017717 0ustar carstencarsten# $Id$ # PcbXY Version 1.0 # Date: Wed Jan 2 23:41:23 2008 UTC # Author: Dan McMahill # Title: (unknown) - PCB X-Y # RefDes, Description, Value, X, Y, rotation, top/bottom # X,Y in mils. rotation in degrees. # -------------------------------------------- J2,"3 TERM BLOCK","DK ED1602-ND",1501.00,375.00,180,top U6,"RS422 Transciever","LTC490",855.00,2555.00,270,top U5,"PIC16C54A","PIC16C54",1595.00,2590.00,0,top C17,"SMD Cap","(unknown)",2155.00,2585.00,270,top C13,"SMD 0805","(unknown)",2525.00,1835.00,270,top C16,"SMD 0805","(unknown)",1125.00,1945.00,0,top C14,"SMD 0805","(unknown)",1175.00,1565.00,90,top C15,"SMD Cap","(unknown)",1280.00,1615.00,270,top C10,"SMD 0805","(unknown)",2140.00,1990.00,0,top C12,"SMD Cap","(unknown)",2445.00,1980.00,0,top R13,"R 0.25W","100",1330.00,1865.00,0,top R14,"R 0.25W","100",905.00,2225.00,180,top R11,"R 0.5W","(unknown)",2815.00,2000.00,270,top U3,"TK11950","5.0V",2298.50,1752.67,90,top U4,"TK11950","5.0V",1116.50,1747.33,270,top C5,"SMD 0805","(unknown)",1450.00,1985.00,180,top C11,"SMD 0805","(unknown)",2225.00,1880.00,180,top C9,"SMD Cap","(unknown)",2130.00,2115.00,0,top R7,"R 0.25W","100",1855.00,1235.00,0,top C8,"SMD Cap","(unknown)",2130.00,2225.00,0,top C7,"SMD Cap","(unknown)",1430.00,2225.00,180,top C2,"SMD Cap","(unknown)",1845.00,1455.00,180,top C6,"SMD Cap","(unknown)",1430.00,2115.00,180,top C1,"SMD Cap","(unknown)",1490.00,1450.00,270,top R6,"R 0.25W","100",2375.00,1420.00,90,top R8,"R 0.25W","100",2270.00,1420.00,90,top R5,"R 0.25W","100",1375.00,1350.00,90,top R9,"R 0.25W","100",1855.00,1130.00,0,top R10,"R 0.25W","100",2160.00,1425.00,90,top U2,"ADC12138CIMSA","ADC12138",1796.36,1770.00,0,top R4,"R 0.25W","100",1815.00,1345.00,0,top C4,"SMD 0805","(unknown)",2070.00,955.00,270,top R1,"R 0.25W","100",2180.00,875.00,270,top R2,"R 0.25W","100",2400.00,875.00,270,top U1,"LM13700","LM13700",1605.00,865.00,180,top R3,"R 0.25W","100",2290.00,875.00,270,top C3,"SMD 0805","(unknown)",2075.00,745.00,90,top X1,"CTX169","20 MHz",2480.00,2600.00,0,top C21,"SMD Cap","(unknown)",2465.00,2230.00,180,top C20,"SMD 0805","(unknown)",2620.00,925.00,180,top C19,"SMD 0805","(unknown)",2830.00,925.00,0,top C18,"SMD 0805","(unknown)",2710.00,1500.00,0,top J3,"AMP 745781-4","A2100-ND",769.09,1474.00,270,top J1,"3 TERM BLOCK","DK ED1602-ND",2091.00,375.00,180,top U7,"OP-AMP","LTC1152",2725.00,1225.00,90,top R12,"R 0.5W","(unknown)",1035.00,965.00,90,top gerbv-2.7.0/example/pick-and-place/Makefile.in0000644000175000017500000003611513423533413020764 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/pick-and-place ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = LED.xy \ LED.frontsilk.gbr MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/pick-and-place/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/pick-and-place/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/protel-pnp/0000755000175000017500000000000013421555714016247 5ustar carstencarstengerbv-2.7.0/example/protel-pnp/README.txt0000644000175000017500000000154313421555714017750 0ustar carstencarsten These examples of GERBER files with matching "pick and place".csv file are intented to demonstrate possible usage of gerbv in PCB assembly and any other work which requires efficient searching of elements on PCB. They were donated by Karl Schmittschneider to gerbv project on 2005-04-19. I have converted all text files from DOS (CRLF) end of line to UNIX (LF) before checkin. To test you may load in gerbv SE_SG_IF_V2.{GBO,GTO} files. Then import Pick_Place_for_SE_SG_IF_V2.csv (main File menu). Then you may select parts by double click, or with entering the whole names or partial names and pressing Enter. Once single component is selected you may go to the next one by pressing Space. See README-Pick-and-Place-search_parts.txt in the main gerbv source directory. Please email if you have any questions. gerbv-2.7.0/example/protel-pnp/Assembly_Drawings.pdf0000644000175000017500000026054613421555714022374 0ustar carstencarsten%PDF-1.4 % 9 0 obj <> endobj xref 9 16 0000000016 00000 n 0000000792 00000 n 0000000616 00000 n 0000000869 00000 n 0000001048 00000 n 0000001133 00000 n 0000001167 00000 n 0000001243 00000 n 0000010653 00000 n 0000019968 00000 n 0000029407 00000 n 0000038831 00000 n 0000048419 00000 n 0000058990 00000 n 0000069403 00000 n 0000079715 00000 n trailer <<6498b8e13a167c4c9a547925d84f875b>]>> startxref 0 %%EOF 11 0 obj<>stream xb```f`` Ȁ L@Qӵ>0004pH\ &5Hꧬ5i 5M4 cfb _ endstream endobj 10 0 obj<> endobj 12 0 obj<> endobj 13 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 14 0 obj[/ICCBased 24 0 R] endobj 15 0 obj<> endobj 16 0 obj<>stream HW% + jV)`v2̀ah}QUwƳ@wꈤ(t˯oG?~WW|-łO( m`@&g2fC[M fϸop1pf9( mm RhWn$M}U\>FݕbWI'X r$9g: ]^B %37u7/q3KCqKXY}RR| /Xi>CkϚo.X98~_w0f5PN{̏໗cO^Tj /L6aa^H h>e w.uښR;թJH, MUP!~K˝&d5li%Xxʖ5e`Cl4gnق?9x.uqs,5 חa9tC%rW@3}ft#\\4Y02TC%. uHB0*BGeR y5#HGM#EUU߶/2Ӧ.c@h6|p[-;Zgt\hZVG$&xF1b)S\`8pT0%+3jQ3m2N*skĐ,2j·`Ws_ ٖy2C 3ojƳ>1Hg:e2 ŠmxpzLn^`ij($@1.a!|17n19g vo{ '~CSyW }⪉š/Bյ1RS`цv9[,X!غA7~İF$V#Y+eRrZ[)`qyv9u1qL|\sKtT95su 1Ccou[Cy]?= a{K|KR5KR!NGg ҩS9`{RyİWRxxnOѲ9}F*صn$׋CJ hE` jrv.7yII>WİPs:g4G'XHgA:jyj~L"_'k %CL;!xA ૿|FH*])`UtdWa#|0x2EO0H m0 ƞ؊2!>cwA PO]SoJ +=&e`bgùT}`>` DSMS, ?Ԁ$2,ȀS)d@S }㸭eڶb|Ku[և 1 ^f)YguQEB~MYVlߑn-^X5;ϷuG"U1)HY W z06RljE !)B퀌ޯ(LBSLCvhp4êHh:7h(ë8xl%*2U 6^H IR+^9mJ hwc2ܘZ*U9ȩKP{IK[X'Kb|kߣ ^Ϗ\s|jH왹{qLGc`x{.)f|U{3Qd+O\fX??WR ͕ WnUr^\Yb ww%ԁWbƍ Й,2$8?*r1)"N/U:+@%}C6Q[`!0T= w%#@{JQr۰UoRh,WZ.`Z)4 k6x8/8꬙c06U.'4 _ KH/ ON^1n5':ڟiߥK8/<9u0Md .N8jPnq&\{1g~\gؖ* زfM*,U$"mtgt/1WTA~RhCy|J< Ywӝ•j3@)d+[/_e,L-$CV2O%PC8 hZECBa(;MV>WE'V ɷ~V:`jQQ-"M U0VKaVfӫ5[3tu ਾ/C;-T1ĀHO/c>{wJsI"7&썃3uv`)`7!%k]U*7Ww)صߗvk]~ Sap6_ylpwir i ޝ7m!äǡG0#cJO>TP lNdo~ɖA`4>0U!SVE<#p7qUF 9a2p}yiɛ#aF[ L40Zp-twV$ AcVCLJRE쁊*"6RNl!37Y+C?z+ArIe|xLff#!ԗzyM8n=RC-[;kAfɚ k}p#r@(LeRʥ]*¢?88fc Kc{ƺT{l{G6Q`N0jGRA$RZjTlC¼ .RѮ:C2Q䐵e>(·Q6JfX@T)p2梺Φv 2jT{ ҉[^`Xr]#two2L'_9I\m7uQ)H?$NGU۠`/a8ޱi)Wp#W\qm<_k|A03d4g&)cʈh,#48yPΥVa ;>`Y-ObenٱVafmkbZp:zѽ'`8jMdj Gctx OJW(eJʎA/rh% 1PO##>HR## 2:--aM6X_hhk L}05 \xeD/Bo_pXiOyyUƨΪO0{vOHe9T]^:'eJW*7P~xꝅJ%PMPh`7_w 4NV y/F&$u-PCFˍ sFaJi#ď]63/GSeاJ)q}so)aKmU3U2&:ԳN2VΦpci"Za:!TX~p~,Y`le~ mq G:N}n!/VxB鋍1nOPY'z|%Y̘ ܇OC%u&I?OMlR˘ߟ/=#'G035;s/sF`H Ϣ%;IKIC$63/{u/7CM.?N|BN|4r f.pXzxěpT_ NhTTUר0kv^V~:}cfZu4},,mN[% >,ApAQIދğI uoi:)hcq5}irɿN F[^{:M1q9c8RGgrFP:JS:z T?zaP e߼ Jk,+!ouGS8eg1bl3OnQ5G4'N8,a!8@F vGQe)- (Դ0| Ogk?!]1Xkn;̓ Vb S9=ƈ[Mu[DB+ðMs7{MkV+<tq`&SDAAGmv:G5"G 8~b2#,ƐO̓ʼn#8#Jӫ.6pKR6-WFu N3wC3ݮ̡k85;Jw&|_\QX_\ @Bx;Xn&7~ZT\ 3_3Ժ-Y䁒 ?ktJ?s@YJq #KB9|Q4s-H {+e[+LIƼ~Gw0Bs(AΗYSڣԴ y0$ dRh$c; kZFwI"˚2zzw }AkS낄U" 9z>8l yGޗ/vx-$$ KmǖfeXJ V%d^D$ Jo]Pm$np1X*F!_IZ4bԟ%gȡ"Xۺ%p2#FdSPj/ux8NFcu!ZXW8vBpt9/Ѱt-2䑭w384,[M8v{'!t.7\1J{0-"-vJ-Rf)b#q;b"V V';_P^Gp+3O;CvuJA8C"N6%CQ(5o2(SҠCrA2Mh$oTݵUu^w!rM7;YwkGK$/-Le|8d-}B+b+H `u$N#k*B{&4/e??;?㎼|> 4GZ:gn!jV:BXJsfDI8O_4cq[YuNϱu(h l Ja]S3jw9LFP3cV&(o-*(,&J 4S_d`"mj4'56~{%m\%RHH~0RAʱ(U hݱ{-Jk}4`7bzok)/]ZKإKK"韻S0e=>cEFDm/G&/2u$aK3q%v#G%%V£`W"=s L LztG9^q(kID[k p%؋< U-v1\`ǧWlFW.zsF| y^6?AU 4u}ɧv}FzԅΘ ecIBʑpS 0? L[FX W:M# ; ;kaܷr+ݍh|']9Ά;ay0`|B$JU oIpt(!8JzpP1W#>5Ɇ_c)7val}(gFBrG=wкE ? j[Uۃ悴c\.dBYC,r}CERf~B U>*9$S*N~qqL6deoJ_be^== ˿xkvvEI$Lة4ͺ]r,):2h:c R> b:y= H\ס<7]&9eǐT7rp8h>j= Ȕ٣$17SiBp$t 48Uai1z&MrX r|sK}}g-]rUeUSQ~2eX=n‘G{sffPH`go{_%%$/ؘ匯$(ԁJ@%l]6蠤q0^Q,4i4&SmxȄPb|g8v&XY87@9&!k/.0(1f3Gt ~ѮԤS|;Nv%s9 zJױzs\ei2LKXe?>̃_p~?-_803A u)bl !]W bsq}Y)&A"ұ=PufJ "&1Ö.bYpo9IEP[#bWzD07$ n9F߯F{$܏)ss~hPCզm0 b&GA8m縘Fs9ԩ%W2VX=}x˺]Jr_] #|w#%1H elTB\ؑd~t%PE@h,d(@N“M!\Ɇ\S)` a`Pὑ3N`?X>A_&p>JQ`lS0s g endstream endobj 17 0 obj<>stream HWɵ( (^>f8: uW^U"KB3+gO x%ɭ^*@J2H]HFFW?1-*?኱z 1^}c aT(I ar0Uvu'hGF21PZĠ"wO20GrD2׀7Jxvfǡ /W'--_> mpq%]q&D-\}I$s% 9C.j"1Scq.[2Ɵ,t!k]+ɑXcWCq sXO8|l`b̀ڻLjv}b/_ ~3Ilf+6L[0U5~q:uخ4|Anw .- \=AkĎU#j=fy>ZDj;ml`%StWT-u+Ѹ ~ئ"C5a.9ɥ\K>TO:Mq0<< ?9`b& jcGftHg1`V_p\J0&& O>W . %uw?Yo$@W- t?|Sss ().A_NuijԩNVv*{da{!:rDZ|;͍E@/qYZ߽_ w/ (t`j,Ln>)RY<6˽jYz֡Sa%f$8T?gzmf .t֜$# Cݸ"@J|+]p@P;Z(a|[$֡ztHՎSr^ e!=TZx4ut5*aUΕEU%X 14gLhelZ`ZgyƑ4Wh i4>x$j;%0t;\s!L1fೊ!u]w;t%Ty*pDZtCSdTɱ0)*cەÐ! K[֡b+`@[BǦ7/مm cwݺ2㠮bql>y1?+WU k.  xRv> К^Tx@E}!]@cb sĄ8<.r,!frly|d/yQ2"eH~v~Wzo^32z,[,Dw$DŽ[0kM#de(*qM{,<_;YL?BE*6@4n5 AQ/zX&`#:y&޳Y4*ǡ _ s3 )X\33a=yVni ӛLBCY8Ɗ^4+9`9}r-{si+|7N'9kxZ K1ϽWt,r4$յǒ>90at=*a%p] wp:]A ,oBgZ z =|FZ;TU[LQ<G O0C:@ƍQ,uw8pJf;'9XbI`:33:̷2%`Bʀ_]$ kU 0RĪ懹:G@=fU&tnhë *ۆ XgHz c!$(W2hEӣQlp±פ @"?K/̈o">prJX."5tp2-'Nr)9g9&(\R !ɖBn/kEy5 ]Mo?iY>2́XL-8hO>qe/.cq YѠ{>i`?';&ROFQ52A#,|y20n5KQ%Tmmkږ6MG ]y/VsO0[p2ls 9iuN78:Fȕ:8I=wTZMcYZUH'Έg?er̅Y[9uW[Mshq4xOZK]Redal -^89xm ǑqK*12,"QKJN8AZ $ԃR&/ѵPP0GGp)lny:&fq0PrEtqc:NT A> U|pD-qwLR" OЖ7A=q_Bb _q"n pǀ9mVNa,j3`'|Q z|XT7OO*\Z.'|T 5F` h˅iK3fTsj*s0i "D\qٞA\@- Ɓ"e -yxw? fPͺ_uPoczie^ |,3ai׻1:,Į:UK,0R&%rj@Y̝/(F19Xo@W5<0 0%ЏF `ʘPYS')p%/s'd>A5,DUq*#AN}ݏ8[GߒV#l~Kj\R3@r%0Q4^e+'1px4Z~&͡׀n< Wwu N5Cib3+¢0fL {J"[~4_9|ƛ$ـ*qPt~.^u v^:L{к'U<*XM4&v|o oYac/u5M$TL!U'CcP@86N%K"KaڤJay.1,fQy`p)v@I,rQe=e0~8eg44T"~I3LkkfL(aӶrth7EƋ-i|.yCkȖ@6g\aW+8ƕgXt e7dB.YIع`iQy淮)=la?nJ :} T~x0XD,vdAJl69lEB̉`ϐ "(aʴwDffiQ`f{T/-֯ibCmgZ\TbzL~^$RSd]m×$,PSV13KEA0WEכG1_iJ\T8 \BIS$@Wq5AZbªT7\~o}Nqh[7>`VZ3fp !H2|k?@wɏ%%xXVm͏>mmAof<+=)ٍdgZ]?{+D/V7Tn:ztMy"GRS!k:Nh&w&B-p*TBzz0de@fmZ!d),C"|{D c}?o| 1x&Du*'e^jT֗ 9]"ޠD[(U>UbMn9pfѻ^LHMt3]~8KPoIJi@a"mmnk^hJf, $1hӵSJp`Fi"xO{q!X8(C@8`$5=Yh1DLv[|TƋi 9Lͨ~i)2èkKx\K@Wڂ|=eǸQ؂#!@Bu:}y%C@^)ҽ^V &&u7 a ֗uƉ9 1i,0?"!TBRS?.}4>S^bVU# lvP #;Ou}onndýLoѩ0@vR8k-\ l+L]}_J3qSqKIN {|XxaGQqS󵬢q`/$66+)`G嚸mIGa+jkAuTaZ gyHCpKi)!cW[t4Mn/kI5[6kE.)Զ8>%بf:*f["*?ș- j[~f1j+-iE15ź^Ս\U1n٘,זt$r%ӝWPhxZKNפZ;~dS]WD k-knZޑ5r{eN*>&}o)W*>5 /4 ekݺdDoqFߝ(u&:Vi[.83yT : Q쵞;Ci4:,u<`Zǜ Go=0 dwvϓ~kml\gcOy]G 7P.LgS8̓)SŸ6 >w, >ўM}>r~l:ϯzSR;^u(|:4VDwi1ޝ﫯CBj\7 rŬCwZ:-wcn'q<%KTVh k6\kUj zωSh !UZ' ^ wS۸ިG @Oh tuJ@w Δn*@74ǚ/8]~ ̫dNYZKM&fA`S PiHΥ45X(ND~`wӻך]qz 0m{H/z6Z(>]iy(!O}'|;vh8/Vv$\jv ,r6/A ĘůXK1O5APF :F5rS`] shRԬh(碴AhƣR%`kn씁Y5%aG8(Z12@0`8д+@Vc ;{&V ̙S0q@.O|r X }c"\kW/ړ,k w@3;Cۗ_j̕&©DXOy>͹vTPtqE`I,Ǔ\*]$X<:uF;V4p@%Q4gdr i@+a& Od,_8T@Z< #Sr:qm*<}Ѥ_FG͕DenJXp 0F{hLQ 3c+o4$ffhPɁ̤gn0D %q9+"HVh4g:Y$4"Gm:N&y!b׶"eAu@7 LHN+|( _WИ6Q|vByڷ ¥Ġ˽lʑ<_]sϬԆU#H$@k\atPmQN!(ʟ 5(6CLfP=JDlUP.iP|c" ڗ]d@5da*;QokzSV((]V]MO P]̀OuEC^GE*?x_ʵ=/ɳ1nLn@t@%!G|{GYO՗/a@G0fCO8A՟SO]gmS>@(p0lA MrШ:8VXjSDH;BZ ˀ/ SKH Hq@8qr#0s'#oY4}5s@A#guZ?XDg&zsF2>):ӓlik7 wi#$܃f:N>P>vo4bkUM y'],y\~tv'ƅBGEe" 0 f0}4[('Wi-Y\Ki4 5YW & ]{sہ!~_>njviZ:Pl82 D&jgJ",+n9fϽPuQtmL;XK:B^z>Dc^oyw4Pz"O{U֑ (C䘅T}؄;J7'g$J65Gy6h*W{̠ڛ9 9SM$h ,D?054`:H2N<&$?'q|J鯆Vu^M"pxumPDéC̫dKRM(0Q Ю]yDN^2Є&J,*1̃RAǃUh'*xX|b5\BCE|&y?9?hXTZ1jbo§xye`RJ(>X]*OAd~JH 0VHp#(f"󁮂å`!W endstream endobj 18 0 obj<>stream HlWɑ-) +q^SEf)!D9Ӟr?NDx+8?iTG@h$&O`Ps(t DM%X.ړd5mJ0v5b ,+I@OHx?Q?~-:ESw}ӦM]vZ|\Ț[j1°C}8ܔ~MR5A4=$M23`z]|9 QAgbw> cБ L5Dc0c|sNK(T;F 9PL}&˖N 2$k$ `PcFF @5wj3̀uj3/*BAd_p6׈J3䝣.q7\4N+$**Aa.!>eaT4\気KgjaHsXT#f:>V9UL>UdKJbR\3qG=X-:Cpq}Uy< F4a6Bly8&E_5?_Ôq=kXOQn-b{K쉘Õ|wpHacnaRbpX}C <5tz^Y]`(1Bs Nn|ϊ]EnR#ž"ٿ8mt(=l@Q̋?׿6(tP!4{~:%uJt%Ͱ&NAmnkJM.( A<:< p~%5ӯ5Bj^tt"#P^m/!.z/j9gyz qV<!@#Cg p(X#?MR;KL5eiꢀXnsMtDjk.T""d#Ǿ}3Cxs!FE`}xz zxҾ.8%xbOA[x*df6mf-ᐋWF79N/LG̷'/) yF/;CT׎y|ek{lָ^l, /}qAb5bʫbĊ 7$<,Ա04ͳhŠsnsB.D})\bR%L8wԚCеp>,3`Baa:~VweWŤ,*7';o#]Ԓ_߈'`aDܕ,܈f*zgKMT黄GLs_YZ9Pb&x`I9bKOČ7e7̃;ps #'V+Hqᰢl{a@9͕iAeS^}\ 0U"ĐGHl:t̛U 9 ǾIX[ <`̅W(g)Up4B]u)(kq>dYp6KG{( NAσ%EOA/I,CwqO{1)vy@1z7wB]{b^SL9dBPbJmU"9d;7%;tȩm'V+sy}޲Gm . $6K푎,M3,4X'MFi b KpK[-rB:,ZKo2{kwR<1pA<}M0 qRy(h wEӫU儐Nz/R5lo-c~݅B0ɨE6ֈ_kDALH4׹RphrDѤJ\tD9Q(Wϧ a%ZzVr.SDG+ =WAUkeU͵#x;E`A>D|v &=SPGυoѧ1+R%yp@IrjkXKx4cT]͜1jC 9뉡^`"X(< =o#0{]a|5TH,M#Cܳ! PU{2F6Ll{ԎgÓ՝;]w!+nIgX!!zb/ 8U`KbrcĠ!ģށ1ؘ.&l4<(] Ik.9&Ftf Yx=KMkr9Vz<% a[wz4cʂ#yA_OЛ+ NMIJ*ʻ1#(KDav-]I׃[5f=26u8z{耷ą$fEGr*ƈbOܐlo>}fSnݗ8#`RE\ZpbZ7„؟Ba|s-;N [

T!L Ra;1L'MHP/XNbG^ Áɿ+TjH21@FFV+iEes{^d7K˧ F5fe{q( ;(5<-KWH1lA] C㤝W]MRed?{K9ڱvy.\71^ gb(hLWkʙK}%IB5౸ǔu%ALEُ~ug,<+ ghbׇY xV D0N'CIi酻NHxpD@|Ilf8#<WX{ꘇ./hzs]1AU_B-#T0M^FC nLW{@熉` CW6R!`g`m#yENYf=\u3"69#q8^O[Hƞes^Щ/!8Y3\5Ƀ0G+vH\:aD^/C&ܕ? 6=Ÿ$N 2X$f"NXGFL ϩ`;ܒ,HI"}@Eh<4D{~ISE:J7= xpKn&н~jUrFMm#`G|x1k;-NOR>׊\\mƣSF8xL9؋@n ;-h؂{Y􊙀HC6.Zĝq " Ɉ_K1wY xmt =g=5kl#}sı{TFm*ud &V֯glz?Ʋmccy+ALܘ`sC|]cPTl}(Po] sIާ1M^9b$f"ՂC' >\1h(_6 (u!1ܻ3 H 3|dwohq{eBԢvVf(pHt^DJpW3b+uawĴv.:w$bf f^R\ _1-ث 48(wܗ@\wrmT\>5O 7/? KEL#89]`E^(Pmא6xhdߨI]$]bP0Έmq<9wb/NP а|.̳'B:sPե_BBVpf  ޡCYL`:Tf3%i(vuO%7O3G>J w2#F!ֲ5@ E& U~M@AɅ ,b;5C9t4~sN'HDT]rl$۾rkWU%Ԥ9`pC7”PA=3u?6 :Vg*?Pg[]d4Ov!nv83U8aL|6*BҁOq@F4] JcE#* 0J H^!@Po(6=@KTӚ0r#inkb7@q`1(0VR^I't8y[f)6n2(.L@aچw; AWcxt!s;lʰ7`cmm-m;$pHж)B 6&ڽEF$L!>ř@mVc2=D&vѳWUh@#n-|>f?/[Nij0KHR^`hFnlF$1c$o!S@xΡd03 sDF[:"0&FMѮ#-Qvݏ"De?Z2Fen |$&(~laH;$Iu\zY>UD`8r|d_)Ez!|tad) .`\ݩH eaJ&98h?% 8x#A0p>Qɽ}xok2m"obi[ʼˍK \|r{32E_8N"B"B[Yn˔M;1o\\e[qYW&uCWz62ѻ11E3%ӹJۋ:l Rcš|.(Mܟ.װB<-ۭ%eQDB˛ꞕ[*\04<➖ #`b!#Pgd:(aQ-[%E U@L2Ƴ1U"_@k̀hB#l{@wj`y,RI+!u]e|g '^ֵNIg-5x$ܣ`(e}eL 3D(@P>c8kG3l%QWj4c* UEʱǕAkܞPN 3tÃ.*3ZV=]q_wWR<=%m[ԗ2 I4Z kuPZ{#ONZkKָXkK `bi창ä0#Ee?ߌv\?Qe5*:ɖ',\@9j"]Uw;E8c|z;c鳿#WK(m Vld4d5?Z tEݷf́'`O\3$Lj_G 2ʾ*0Ԅb%xA@3!ZMA_ZzcH4@HB>|e">͞@)}][glre-t-"fG!ZI >קu859(_@msDB~K( <;j̐H)l4z#Rl ꀦ br)T@Xul"G^^@k)R:4hLIu,@ivv)!H+gC+vBUF vKf}N. -?P{/,9ڻ%jP!C[k <}纈`iNnޙ9?,YT!ZWX@i[ln[*AO"ѫh\@qwbJA X5>b(]-.9,JN%Uݏ`eIe \-0E;SbV'Ó(ZX3}7<sM/1l}:/

ِo#S6iqXb3=R ui}Sz+S! +fƢ8poeWGZ3J MKL+Gp'xZ^(H4_gwB^=4ʯ gl^=vs)oZf?/c!-ef9vzx.b_X8=TEC0Ap"Q'[/u D|(1"`z=\5@xPH1Bd )&|dqOX '? bF v,Ov9~j+PwA`隂"@,U,je` xx*cT#fp['E@ ˣC^𲚾X{L)X:4EQ>80 @_cEa+ȸ$vZץΗqM}:0AY4Xyޥ73 p9$gޣ-~&Ua"Pw?-[rneVc1wP(vWyhJF( %}'6@Ory0/VaX7M ̛7ڕg9H !P*Fzjvs%!dc(LTn~R5uK)[K(`8ˠЇE:lK[ogBT\BZ@L]IkYo?e֣D&Gk=BL a!Zr)/Z w:p~YHP:qXq6 qQ .V֒>\T#ei-/~B8eD^+SKm+.:tM%mIbpD%ipI(j)SY1wR$8}aZAL%qM"{[S>stream Ht˙)EGW5IoA9,b3=Z?*@)K^ 9K`W:Sے(Q FYX`,1WڶI{5I-s)vX~isǭxE)K 7 `[Z'º D ` _=()cƕPPӈq5WO50j+Ҍ`(TT˜ "ɃM*i\PPmK(/7!3HxW}g=*8L`y$zq36v F[\04} 3[lʋo{XܒuXҟtn*F%A+zszf ptLGq-jv(D>뼇;&J`TZOPP6# 3c:ѫޤf֯."K h,L9E2`"nQMMq|I$GSX# /HPH%E Mq^2сF(G<U|h%ZeVZ?~_wuENc) :-VZ"F[(V  s_C죅i}o"@^$ZqoLPiMZ*]NyVy23 '(@ރ|pL7XP޷ jh"m5\Ca 4yU>Vk c448LSS(dCآdj( j8)zn @ 's;2s5!gDN=6^#p}M`,4)xN6a[sX@"(s>~Dw5굏-1RP"(/풝dHʦD |V!c4#"X}bR\p2 ¤)z \QgԬsyD0V4OAmZ aԃQ$qs. rRo3, Fqc{Z߸go܏.GYWl_ (ӈ~y9͕@,ఄx0Y"> @5^aѧ/+5!q4 3G3ZΥmc])&>iזXn=Sy(R6([' M)0XbxNw7\*]<1+\7_l 9Ah٤]Ay%ܰąqm1"DA>;&r~9M|æ&>}Q%7VC%YϬ,ՍiWGPMWVPLBy&1GG-tw Α/eJ{$+Pvm)YXAc5)`_Qӕ)xhEFë)sgbfW=h!LUI\RQ%.7p*?z^V փXB@A%jT@[\G$CW@FFEҤmq8 ;ƀ6n-߮ޘ F@ӹt:o0D󞚘1%"r/{T`D?^k*F.:P7I"op;PQHGw!&~$Cdκ(xfl,y%H,RMJjޥ*~;@ɗ(Z@|DشLT٥r߽fdt ,Z|jA"os-p7kQw MSd\k-Ϡ-͇96wKp `^ @c [E|y1p};im-;P: 0kUo7H#ic--Da:AN׭-8VwLr [*זKi -VϠ&0yO]gQ.X)P[-$g׭Hj^m՞|[T2qV8OF/ 0S/0klN`h܏e3\<8+4*&/H*_XkP("M|7E ɔwu{$\pWⓥ:ps<6Sˍr'PgM8ZFhut꡼+?@yJf@S)Q3е>h@ T$:D#@L%׌DF.EfD 3Pfjq%u3b*@N$VU1HafẫO Z~ &ϋ)%൤蔿OQ ;3+h&qB^ŨC%Qb[Ghq bdm*> kG%ǟ+_+@R / ."c]kf\7yǤ`SО 2^S'QP̈" $X,2,좽[pN"pZ^6NrnU -`НBu"3Nℵ8 R-Z)"F/Jnm$XK;TŌb1gvn^_2aj =v/ M+?7m9=DDxFgRgd~!g讒lu#um<ZykDtAoqV*hSY/V#D <u00aFEu|)&('E(5kʅX[ 򻨁!FThd?>X2WBN׺J֠~`R .5-Z,Xj43Sse|  ޠ,j@@WK;r^4 (V>as`Dz p.N)%eA[Fsu`:ɷ;D&ނMT:S8AС'?O!< sb[L Fv=g sŃQڷP[ʛ?/ijyJt†]3G&t=$ <2ըg ۘʔNqLexsI&x,A=p$`' hM6oI&/8 L)vx h3zhXrpw)M#K @` "$ --yq`*RR51j& q=fjt x\ tFesje(͟PP)9:P,b4yhŕ#8rX<d-:}>J%!͏\j$@`I2im:ħPs5nqӧ\A\vד3YpqRzCȧ]E(]YcuxzL;(xfXkİNYBǘS4wD /OpۛQAك8{wqzAIqL9!wMiIMK1qXN zkڋXYeㆸy"VV1qJtˁ.OŠ _1@HAňz`CL*HMs=z=RC v 7x{mQDP4E?$& - E}U$:# nVh F_}dB*m D^osoKQ8(D#DDt#]5ܬ(?<>FtPĦt !Nĥ'Y>"MmoeFߣ;@`f*0H^Ήa飢0a%ŠGa*Jo;?D<4OD]AU;!U)k5zRFҴWRÈH1 !HpV@`*nҢUM3Qq0 uuO%U@QlRɋLfCU/]qqFjH <0,Q'īk ,H5qaG.viğVTdb5M}[iA#e{C U+IF0utGUL*!jnhvL}Ci $lWQlQ/VC? SVX5((L U'k8UŪTDC+s)ǖDť*]UO6@Ln,D]""U31tTōX YY&8{7m@PД$W/Tw_mvo ._4DF @7 ^-ND7q>{>L kƌ3Z!L)oNTòggy[+021TB{h-)n"mBu[ˆnL=I,/a}m6;13 WߍBUl :F?uUQ…hĽU3^-:=%lUeaX5FKg <0"˪U?4$5_( {#Goq5%_.J/qu / (&gH0 7F.µwdzQ$WɑDȶK}jƁArIFJ |vi@2'7@l9vq T3@5 F3`J\mF(نhEQ\@2"f[$1h uۓCE+eR|خڈq<2W@Q+2. c?0 0M6kjqHB!$uARVe%! Jh(Q();lu9^ !@py#+$I_P&F`f8j`.^(6 C&cYqy?{#cS+4[$1_QuHa:u 3aw߿9s endstream endobj 20 0 obj<>stream HtI)Du:ϙuo[ 䑽|rFԝ~is#,` fS5ɗ@KmYINu=f3Hf=D (̑7S(SH[DXbk$߿RI%MS| 4t= &1k Zz )P+%JT#^yjwA,bL=ɾKLic(՛pM,Cx"fYw ݖbU֘HBЋIݮ~=vCxa)~ܦ!o;*S#2aui^йfPGfR@Ny;I}[1Ńm@c]v,xSHtbª!)ǥ$ljŃI'?sԼsd܍}"|siՒSN˟>buZ(" qX^,q],B;\3;tG j0<SepN i.$q#R9()@$\]KB P2L]"zA}ߘ&"n- ۡ`=$''}ӆt;T2=\ĐKV ZH\ =G@)@F@{Q$qtGNYXCW-80޴X',aaiv9ijݝ3?U"c \xb<τ{A^B%}(devT,$<&pz`:sIؤ>+gC1]w^"IB/ YL [~P| @9yX-@ohi-QI %IcNKLuH2 >=2N[Dh*m\b_ _w㇜)z$]BZGt`_i zEľE )\ȗVmSaȜn:=Trt)BZ$98ia| ,|=äq!Hʁ7\=Տ?^ԧ]Cb+$A\_: 0 ޴[VPp,!N9LG:I$eU03@`N94MVPp,!Np`- E[9tɶgRK+(-q|Ӧݷ-» | 8+:lN$f7P nӨ~ׇ诖4-fXU9"RPHwzpWwϾs@ $UhO$h9i_,#kNZtdHyƵHY";pN G`E~[g" Kpnvg@8. x_WK" VSuKϕ)g~. 8<(Nm܋h/S|ڭx V)$`BYIkRnFK"t< M KALEJ#nY>"U̻ܵ8I)5T0b.b 1)U9S~ M`1ZFHRyzp(-i^^t88I?sH;g{| Ty[RFGX]/Bx*yIQQ#8ZL58Ig;x`OPŹNv' Ͼc'Z k/E5I8SSyrKQakA#zzp3-RΊDfV̬<-j5Ո}/kB( *O>JD("EX|{LU"@׋HtςROJ@P٢rtIGY(B`jɲ]a3'qQ53X'^ӊ-X͚1^<Ȍ0J؋KET8!XSu[FXTgfO521r0f `mCf8tnc]DD<"AFpsJt{ hR~e@#Cv{+1`E`̔@O ́!ZF`䐶[.=Z1m/l-7j!CJU /.ձ9=#R{fg gU!pTxs b-b?pHj8'>MTxLI YaFzH;)PL(xQЮ8Gc >e'EHmn\%6aŵ2xh "{s70rDȀUa@a {yY{JO .{'AVUֹ@}/o./a-^e͢}j @BI~#ꐧsn<~"έ'#>kUn !E pi?Ji]Dv:|;: qOճqM1Юu8y~p˻0P:[CTCavG9*Zx,-ہ;zi*"_h61o{GU8hj> v þ@l ✚cQC/ n_1`d3B Mi2$MOEVz䫞*e@ǣwGJ v"vJ~zHXG:\r6UE4j⤚EvvYΑE~#N+Ӯ\) ;<"Ґph<~ <+XpRPWd 2Z.E+^^y>WwM!=6 w޼]Ueu6BT:ö #ye5Nyͳۺ'  pspNZѴ:Y܊RiπBx^@=Fr'dm"RNl)"eW/:1?ןm5"><8x5SDbUr_k9"/p#/F~ui4h ̚P0p(;!:e4zOy cC^ȁETa5Zև ecߋ}{^s1Oѡ: 61mOG'f#6>kw2UЈ zݿ]r >Ong~~=itO]LF[*?+B[a?n7Ӿ_Fx]aw<_bzzv\{֢5)[dmҜogm"o[R</={]E-ѾŻٲ&gI79#o g9w{@.1\yLϳN~a\;#VMbU*]a%.4ml>Q+?<w{,&ڏ{Ф0 wT `?#&9]VNV^Kmk"Dm ~ - n߼|y\j? "*+z~Ofripz⨟Gz\6*,s'UqC?<9"#-N~I~ΆgBS%[|5>掯SN;-:^BYtP  W֦Ydm`EH!AoqHGI=4cTZXjϔJeàhy9~0 3%OB!^9dHx AGf Jn.ĺj?AQv9J 5 6&ă-~=8D}T^=`FRՌxycwAm S'ZJ8b΁&ē>SaDoa 9(fzrA_a'u5),g ;@"W^QLnCPª>ԙICK IKrn0rN K-N'@aZ`[Rf 1)ajs5$aEMU)xXCgJ"sS;Eu%| \R<$; RG6- o(!bN@x4Ӝޛ?ﶓz_xA/j(:Wq 1)8iu͉Satr:+F-A(4L ltͣk&y~ V yة+ # `[ݝ2yFVBB\TZ-DP Z0(,+aa^ b닸`{ P5'uS^)+QB>jp(z&VO.K;Mw-<@H&4VI(VmΕO aA bA N2j ;.Y,*+L(Y.'N =~FMď_^|NAPrDy@5YKY|()QcqKj GPej!uBґn>aݯӴp,MmS=ôSc&=ԥco՝Fo:ko1[:]Kρ5=!kڹ;lw^x<ޒ^+͗ز!\bA2.0تtTH.zRbbq8quAMJY 8e 2@pp\y`A1 \R<6.tBʗyy\z%ohJӈVko!4Sy ?V:?p3ssM).KjЎj\#ܸF}sԠcf4b`TID/zp͡@7k.ouGۅljam D'DTmbԥhgHGw +u?X_زv6}-j0Mհ0U_4(4KF^Ex%l{.)) W/%tl\؍"g0YAĽ?cybbh:W&$/6窋M/*D=M1a'\|Fj @X}tOD/GV<߮@SEm=< Qxrr'$QpU Yw&bIء?b_ĮɥЯ}N|k;Na$~,(粵URB2CK4DZ./ؓu{}3z'wPagqG$)Q]B".)ΦqcTpEDo UF> ?g%^݋bEqnZݟcwtӧ ̐4X!Z=g?D-ªZKkgL?-rnWJFBJO(:e ƴ.@Gܖ؅6 ``qeQ{13 h='΢8ub207=poG!X!KDD A2DkZ0w{4 `݄R5R+OPDm:V =U ;{9,k p#__KYs[o媟2kl@ׯ~ʬQ3C:ں>d +ʜ(\D(Q,{>]&<X<[ټD]&*s/UjG'[XpJ9_yF,Q}^L,‡ ~9b P-o$A/9ŘoA/ԫ @pYW2(41>stream HlWǕ+1 o[r㷱SfW}4F)ɩoJa]S],i@)Ik{kEd "-&Ai 1R-j`NrBљ MjၛL3ήI2pRm~a4^pJjam8L犊~pUjj\AܝNH艹`J1% MXmFGT_)c(Öv܍_V/LN:w0J(fKu ]%TC\Q\JeK'?z %&%?@>^Z 9&4aKzt3t MqYx8O#??%V=۱Sr !K,rLWAQ9:2 EϻsU_<|(Ǔ_=35;o>"m]= >}t?ߓ;%dtZlWֱV0vπo 1l@^^R/+Vpc%ErqWЅRXn$~pN W"Nux5_eóLO8Ki;{ȓUiL Kh thӧ\jz}~c:ƸL z #3Kj55?x@]՛j+x;`@0CMOuQy=4 @^I ,1VW+Z2ޛ>Oh&Ksנ#6IVPɂ |0_@ E]TU^Esq_ JG^ǀ?hI䀏 `旀z!WB8$cu$@>|3TEw%Q1xxtAo40[L_8Au E)`@{k 0' l| tml LRP]n!ܢ%bB|TƂ˜5撛2 f8YX(3g8`'ȷ}t`fzCWg13qߣPO+8hF3KE\b݃mnAX oi}X򩈤ZҊd9/0_z#g ZA0D0 ,*n+'~fL19.*g 7V~,(q9JS]W[z*gC{'6Ylv\n|i8Wk'[PhckQlZ`7Ԓ _ҡ9.)Nv{ZVKv]w -{|n"聐OXJ~f$ԓL1h,t 8p&HTQ [(7T\ y^K$MKk1 ~t51?-6*;\ 1;~g4YsHm߿9枪 >l50P*IӘ Z~p *1],&HNAk}A3{c5~rl'c N7ZFOG6+8ގǙ_{ З'@[r JP9+П4Nhh9`EdXEo;n]8I>, 7` #ސӔ۳WK^,!Z32P keqnHEYcO. bV;a+ֺjih^@^x2/xf'I .2 ?:4זXn &WE4)Zu-EgËuYkLю=G=ƫN%C; -> h@:0 XڰŧЅ286IfH\#g$lLo߰EXt%G(z /@ys#O,Uۤ(i"5`!G^b鮒,u)$"s޺}*M ALL|t :eg@ܷoS8TRl}(1CNf%)GzIxwv\?PBP:je1RtNaaLfr?ZI^%|#\7~O%cUS9Al9v5 ĸp㚄$p<éE5cs=F?~IPF q9U2 b.,Ep]pdi0+NU%pt? Ûh;}࿉'X턗I," `~>}I~ăIJSzSU$-iU'9ֵ=;tB$'HmN DgU4KՉՇ\h^ /]Le*H|ޖ<&i$^N@"pč]qAfsp0𾃁oHu\va%;Nn85zW/ࣸ=q ĎSfڛ` D-OGs10#Y( &a/"*aHҋJjJ?D:.KnDKD_U s՛wK+~P`CU?'mZr&KBP]Rx{$.N^S4a%|#Mv*;g HIlԍ76{ L!,2 na{(> [.^p>Fي(1w~GƵ{P7˕. 5ɶBu6 So!~'uʰYs]fNn ^ VWAE9KDwI69p9q, $f/kXE3˹E@h݋buCX0fMH^Z+P&!9ִ磏9٘-_ȋ$D͹)l;p/e&eMQqU~QÕӷ ++Y,'k6pwZ+5_ׯ&9~alS:Spfu[H^K7U Nu,ev$V (bIBre(D]wrENo^SzTpaYv"[dCԳk*79]Sح tv<ܧ&KT:@~/ևzr*k_=='e9~.ݹp;z\<_ENI3':SKLgyzͤy.Dfzǰyٚk[ވO4| S}?ҖוeZw?lK>@O~S6Qk62´D (&ơ #Cw-G-ϯ.#-Xyui5++dXR׊~/e_vC"EO槊{ժv]~+NvK3~> TTsS/Q}vH8F~cM ;cʵi@,b[j+Xnzf <Ѽ0~SVVc>Lb+l~h:&y2uf>/͏@]="胀SAG nCɫZ}G«.& ~矕O﬷v.,׮:;T@:wJC'?.CЁu4()>ǣ-P44 KC#yopݗ߲za8Vt[<8.Y{AHⷖ{~r7t^*8!K% qWz6L^RbZ<cHn܏^4LB3.Y/̴b7`2_jy8( ZdIa཭ &?ر&uoJJ VIR_FvA",?Ctմ~k)CҮk[K dR$bv/jgsۺ.<;$eNj烈ɴ~MrzDZeL}}10iDac2`Gr.:rU Ch\@ʩkǽhY|/ +j\rvGawFQ-2PQT+nK :ߎo(y73{tAj>~7U< zh־֊(tvLKɛ^tQ-r^ e,67J|L.%5zk cJC#Ĥg=MNtL{Jo/Ѧ'n52+\8ۧÌ ;N;^'J^:,c|H~()$eqOn#2=D?K]vëOu7h`hoc;i6x/pL2ꉂzǤg=4){.vy 1um|=JٻvuN~;u)ysϛI>rtfp&*dh9 (u){3«1*F:/^HwpjSBNm;4D4-ca$Z`[ۆfk;ieN9i٠`m ҬO{g(盍P? ^IQ߯g#R⣌dʖIW4>|rm_^(Mjf7l6O}8)2(Av!,"߾6tb@5_)+*N:<*.. 挅vq}kz,Xh&qCF%%icAG X6ԅ+ Tо>7ƙk.\T~*t?`k"ï/C=π=7.ʥ# lXmEX!A?_9Qp|QSh'/ ?]]ezUwaJLCã; $;Ϻpfh+]O< Yt֥\8/]Eͅ/ B|c ]vz [[tKF@Ⱥ5aBoD>M0=&|aUhr ?^9Lٞfmv'3tjaˆFDA!:&;]{ܴk~ܙ& 3[v98"Knaˀ ±HQlyrH-}<@69aᬪG{ZnWDcd/5'4t--En>oulH/:_ 0P(I~W=-()$tYS .:Ley]wcfN>ƄVvOA'1 >*NhɥWL"1ΒPk=hCU9n9]:0#e6Qw^6fsK}+i3a]0^G+" 3$h5٠Qg.ʍh٧xԎF&Ћf69yAdxة8af>989G(Ⱥ"2tl|oye DŽ +'\Sc%B=JlnnHx~r#AidB'Z1JBcrLH^VGؽl"Zo<E˜mYac̠5HO" GO>MmpkR6{F1l9ÖX_lX,}h##Kh

endstream endobj 22 0 obj<>stream HtW1- *N쀚f?s%rtoR $?~_e_zem>~k ~?22ʽh?7%6Ӏ`S۩?[>~s>՜|SPi"#v/jy7c`n:[=8{Akj8$T@ T ߑJOd+ْv(ٴ;%ӾKoiMdp5 pc۠&h;;86=) d]ki'2:dH0P3x۴=ІaZ7|l8~Ʒ1vzn`wli;|6d|4m3߶v # 5 %I MQ` YP9:F]mulB9SxJt03Mo 3tTfJc}!6`S)ӽCbe[b〴vPy(p^NM'(1ũRuLƳnh5j#4rs]ns9c T9zv)4k1񕙟zXxd֭n+Ӏ`S۩=WWj/Uf`;lV3GхG*U\])/qF wdDp9x ; +SЛ+O]=s0@ G 6`S۩=ό-_>KR̡k=0e3lB9ɆSE Z:R<`!bZɠ}p䘻*U9tղᵒ9tٓ# D_ۛW: i.}s2FZl+G'K;*OKVR6!Tk%BѺـJFnчp"߳m}0%˾;];򝶯޻p4mX=0_a \Ȫ7BVS &8Q8v̠Rϡh(-t.Oۚ rQZ\{[.7fM;UǵC_~~0aΒmw ."6ӀdC۩8 `O l_$9ƙDGLԩsř|e78oD^E\W|Z5+Ƕc2>I`.8]7wM뽼Ag &51JxfM|C3Őo]uЏKGǎXqvNCDpK:N(ů=gκNJJi* 2·G6Qj$~i@\J!3 gO Z +gSnVW֍JD$c<.ԔzV{q\CY[҆9vcCX/  .5we4eá zHv2i8v(2v=U{"뻵L Hc1*8f3s+ .5|MޮuwBT4Eóz!mg&`x7bƽǚ\$.B)B'<+JZ! g셨Oj>Ko϶N*?Ȟ\3:zj.DѸ5bVmAXW2 .$hzujs,zkM(4 :vh|rǷ(w]* dƾPgv?c/c``pgKڡ^ڑ=[P^!ANZl;zzW0ΖC9'vdsB, 2 fS!nz=-?kPi@dМ[f;24%kmE Ze;1Zf"?5ZFb; sˤ|vՋ-!r2wdEr;[eR6ECH9j;A nPpgKڡEN05Z󸒕y_<H*/y@5HP?5l8Ydms%ioI&g̣֙b6?RNv#a%3|KMGl'Cg_Ge؆Ϧ-}-aC@/5nh(6FscG+ 0dK۩mbZ[M4Hx!q䃭cةw']o ; vh?ٲ ҋƊ J[Y|XplHĸ 6azAѝ ɑ@P>zo99syrpn,&̓v6D& ׆#SCթ+w޵Ӧl/[ ;.%D_rZ ~ NVxknS^G$F5N[N0lvvi_;WH=rP_klo/H ]A䂭'YF.20]y%4e91f0g$vh|3lyQ0"@EbS/8y|?0Ӡ1קv ocWJwDZӀ:%b- ;{bhspkNJUevצ%e#'T %|+λ8DXICumK&;(e56{$Mo[KlN-mv?Nwa)iϷ'2@"q? 20vj|U_Gn.ͷy2P+:R,shl-mvn)g@Y=TGQ0N ڱ";5t=ح1rcz ƶި<t{o[h-?z+ xZ F4(ElkJY؋P`xŦS]q|(S+ב øz)9S4h&,YlKIJGϗwt)-&b÷rhEZ/o 9 Ny4[YV}K s)-:g_Ol.-mv/A3JQ'DjHV* Q` G#*>} ;x2PRK vL/֖.6azAѝ,ȧ垹x{ϝ-|3GC9{Snԛ!9wtWNPHGdȦdk5p3Xuf*͒ςQ*"[z=*^dw١^ʼn°ێzS|to?7*6Q"q-ePl%´2w-@~&"wc-* 6azAɖC{6}]9A# $6yd6ѧ.NYª(]sUr׊?'MeݰB 20]6̩jW޹N C,6W~-R_s Iڮ1N6axɖS;U ҋzJzVבO Ui[!|b0ӠdK۩o>h[uce \_v-Ovcٴ݆stߍdQfhs~ek:'l̽qfYvf2k60#@EdK/g>s}a l!f١n4}_bܖOCdh+t\;b@Lm0xD~fwA|WXe`w١\_/3Xgܟ^< FD١w)\}ߘ1~-Ef9ׇvmԷ[>]+R^ĩi8=S6[&Zw8scW2n^&L20:vj^h+på׭~V[WJ&.DŽ) `AɖSwvvlxAˎfr$|+ ϵ5^ AAcaKjh:[kYOvi"^aokta%f3EuzD([?oes.4S>\dZ@YV> iMC3L4>pS'&F#NfnNgC,s5qKHNT [׿щCVjnrLw+vϟyl倀r] ӁZ[lp2<ExO4=̈i۫um9wc/bFlFަ=uo!5~N!ʴ?:D8q /e"O#N،iw{I9mSKdžfgZ +R B?eʔ?_ ҄BYOs+itFڞz2?~($~[I]x~bJMjfOB^^`_EJa "t=K|v= ].®&WͲ2=XDu$6Cē#4*a"Ҥ_g[?IApƿnsH>'a7*<0߄'9G^9Dk35;k99Q$!o+J@+I@WI"%d$jѯʌz^Q%mVP!J!a޼EZHr{sQaWI"T g (:!E=tO;~XHqqb+atqK@r0NF9@%i`*OɌwI#/A#D#vKk{}4Q6`s*.bE0Oҕ?uHr*-h*̛S|٧ø uko|3SeuFtxC,{/4m7/?3Ʉ<-v)}(t*`7/~+_ M }j!:θ鰶xyGd~ߤypn܁?(ۛ{hv{;xe s1~yKM2zpc"X$.Cڏ^<^aӅ|?s|% 0)i^Of}%]1E&ax16Ws(yD6&Pm\m2z]tuʄnpLSu9ONg}8&8mzvҺ[ <TKՊweEIV~:~z]1MZφ֫k~.e'%e "~g$L=[NJ2 /xyJ߇w(T '!˻{7m.гVxٯ0)ЇkgU  LC>v(@EQ,x@zKXMT~&!PW:-<2NQ<th)gMgU|%-ӎqQɗgM,o70 ܼ%4<=o ɳz yDrkb9x*G<<>ٓ Ie!+~)&p߽ ghGׂt6ɾ&1Bupxc]akkhO_3 cB9e۳d19&I%ɇo>m;ᴰ5wd9m+v6V3# :nR;ַEsXV$զ2n1CqCr$X/zC6>~%; -r]Q>%(1΀a u8UdXz2M|%\|JB a ܋#L6AY4$MXiyI *c!IBQvTz˝?[4EۓӪN 'o M<f)|4W6}%gwa(x$_U`Y'GN3*$))xi̹3M f ,Y}k5YO-OrjO Q1p4 lIfR![J+UK>"+ˤ6q}<'Q]axA{Zvqš\l@F@*(L"|c+t,RxGs:Ŵ0+L"@i,V->+I&Ud}nύdad|m'ʓU Ȧk|jN$Ϊb@" z#iT9tuOwf3DgJ߾L;P n^CcEbQ^z¡Ż.NIh7./eoHJFs kNU7>00r 0877f~`+V1X[ -1[9 N*,df (S)`vtV7SrYҽ?%LͧBgSЙx9b cوӇ\ťC4 WsU\j;U,J`jõK:UmҘm꽫NGjHط꫽H9?wJ7_mR/ŭY[Yb?ݮZbnӕMwwu/KCB!{L2_؅7ץ݀N=񈳵-Wƪ\M1n]zm|yi^Lt$KE|T}:TWݻ? D[g i }}Ii72oN/ۘKL_%}`_s endstream endobj 23 0 obj<>stream H|W$1 +>CQzK3qk:%/Auu1ӑPB$B|PԕVLR9wvwEwe)<,l+U ROrvIa0Ai8Fe:jH.Uǖ7A5-_#둊} Lbl )`9!"3ec*5mXץZ=%=*Р̹eicHw34 !T5 Yl~mR㆟;7ij xVvVqOk;WRB窂վ7.j͠l7.Pg՚ y=o}5(Ydʎ :VBZHԬ9sqy1g՚կH^FgǢc^_1/J9Ś\Ry~o\ԚA,o~`Cވf IUi\kMq;MtGRrmn7mICSc*W0mS̜?4ǫЌ)'Z4jNDZgq)} 㠉--é{5srhyߣs~|>]7L;愕Gjl^:P'*}T{1*>_t[+Iݸrk422Kr^Z XZϿffݪ|.|}J1k6[i5g՚p.+VB:n Biu\* E{ryg!"\ky8}4ܫ>#yL=<S &0{ fxۄ!֔m&0-K U[ j{A] EnSUN{YC0{ξ85N5ZS"[̗֔ɫ@KCNǬ1kP.wFa /'fP6 'oΊ5#)|)w^򂺽^U'_@'C޾7.jẝzȏSoʗɫ@Qo/n};.z8yN^}\̚C Jxʩ`۬S. E`t)!/xj8y#@^N^7.j͠lȋ7>ODlo;oe1N<(Z-EظC U)kQn,Oh?;E[X:;])KgcЛV'h#+r?ir/ ?X>=ڕQGVeĝ?Q˕$AV!jyɾlk]VVCoKqxz^Ó25.r42yj" +&_ d5jlbu<3?-`gYՌ)KrqS;&N|tAʵIJ}?rz$}"uՃ|<E1~Mw0[u^D\S2(GcqwoballkQ Wa`O{a-UqyzSxQG KiZ}~Тk<%$9zgQ8Z$$v/gbm5m,*j[m% Ҝ*HSکݎ2좩vʼnjΔ>\4ew\P*7cʞ&Uъc \fPvYDl34Yhއu -7"ϐe:~]pU5YDKd*(Aǎ&]t[}efq5F-EYvʟtxѮ vLU|ۨrju+-Ο(\^BS.уTzleN*M}c|YQEdθ?iXx*j%#*``M_A0d5,b INju#?B`Š3x,TH6ņɓ߃Q34t'AeZ_4yS](2Ho1(Yf(ܣEžfBP$H xP < T3$zA`Q`ٸDb4,|Q+'_^&R61`j N6R;wc5:@ip.fP6:꬚;Ld;z L \4^8{N__v 衟@0C<0 _1wv0e6}󸄝-I9S[y|ޔ4yB xDžgyb|jQ6]wnˢ5%ۍh ӂn4)O KT FÒ̵45\U?1u@F (崆^޸yeyt*^INW}T /o-FkĶ/zC\ڏ̜6+47=bwÐ>Cw(;X5SJŶ MJ˛Uo)k Cp&89ǚmwz]NLX3cpBpOwd }O'j_i< Uלջ=X>UmE'LĴD}Zzk#M޼-$ۅJp*jsߟ:aq[+3߯0!}@>tm F'n>!jաʡpa7.ԕ y.) u)7q1,(AU'SglbB7ϧ :m=æ)Ja#a  DHceRT¦1<*FZ`MȝyȒ) x)K EHמ5sf]k(j&0( U=w70Bpɢ4Od(̻E%nqd܉E#B ,P)q4۪BpB -,܊PGVk~4 6X2.G r8k굋E?ֶ ~.?-bNooF9+4=?p<9,)uw&Xwa]qiAn\\YK%|au5<^7ſoQ=*ME`Iܚ~Ȥ{ľQO@uD؍#TGP,|C0YL6$8$>tPЕt.@&xx >ddJ/x? %|lߟXX__W H~*hؔnq fi;dFyK ;E*Lv˾Nڒ[F@z^[zqۀpW5jpw[[Bzeќye~Dqn =0A_)h"t@ pПk3+tXtBq tS 4ǹX"B9+8N.{+>wC]C݃VXBľ\th0sxT #Yuv+۫!C Rw) 2#K$1AGwΡ@-5tyZ:HP(#E'~-mC6Pao5 u堸%?;@!@Q|@"(7O;$b 3js"92̯kÁDr~Il/&t@Q8y&>[l/q Q}9x$_KB:Vgw@=kC_Tjrϣɽ=J)ɹ{ԅܡ0!sH-$0"S Dc1஑{ou F D xQ]1H:Csw,A{$Nk~ОoRɃ\l:n.HCÁ9*1*p@jϮu<7*h!\kiim]*ԅ}3jCs.)Exa`8{nIta-?QZzt]<܂.GwKcFFt%D(V>ac80Kk9}J$'>%wwo#߫գp }94_KBCO?0 PDr|c)KݥgGxx]*Mw /_(8x^Lnxb*xR(Tvu AZI_ӝ,cQ܍N6,l|ϧ7=VF 5R+ Gtb\OX6h yRyxvG?mr#'ٗҲx7蚬$^h49Cm1hX<kCN( TTnfkڿ:XW*,vN~Vޘ \BJ\O8eܵ}#ed/la|ޏ; ;~'!Qx&T\ɮ>S XS @T @kڿ GH#U XpK`ii=swߔ?Ҋgn>nAm!oY~"g΄N_Q_?PE /,x,P@qhgme %v%fOs.H#: R`=⓹)xwCK)p@]IH LKXiRg`DPGq H:Cs.z Dwkчq:kbIZ5bsԈޕMFO/Յ5"AtA<8 6sμ VzV1 [Qs[ :s.5{[ĪTjV\e?v{@~:y?sŞ*vVL{7mcop ແUK (6#6~>yX4|(*sEO`_<"К <8ԭ9v~ժ㽣kZagr >B#p u=wJA;^Űű;T Z@IA[4D 9kFT`%tI]GN惯T>. 8Է\Eۿ콋>|Qݷ? r^O_4QzV݅L⾦⮵vz|ZhkEGF/+Q\EP2l,+=+\;<8Ş{Ly mw{^l݌xl:֔KB!ֵs}K,9^R{lvMc&X;i(+9K6H.4Dbώs J\^;?ܧ( ޷cC5?!%\\?=Hfw m"I O@\8.4UDԇ@.&#C][>%C# DހlCL۟UiO~_6~~T_+h6ޞj kS=gp~FL6 Iuƒ'/3X}zO4t\O2Ek12[醧K](;  . ዧ m~`Xxȶ"@OEh@:t4puȖ฼/SV&X|er sɐ_24ѳj<~\OJpkrdmU"0OAڣtJijq},*GDDDDC|vF&L2|լ!H}iHAE4rA!~rw\bm-/0whAHڝ~%`@/" ۗ|%GHzcÓ~O|^bU^㡵xxK\ b񉶀 ̊wB?خ=g+`jt,"3IDW A0d o:܅ш  WF#d[S/H3,5"\DHiG'8wUFLѴٟ@# =)3:Hg u˧2Βg% 2\UCpO0U\˱GܢՎ-߿X'Zܮ.  `.,*,~0X@  l#K 4/.fHB'bO;f4a6ѿF%GAhчaч}򇼶I,Af`h< y2b~-lo[OL1x#6TnN.4Dr}j1FFlzb(t󯥟 0 endstream endobj 24 0 obj<>stream HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 N')].uJr  wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km endstream endobj 1 0 obj<> endobj 2 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 3 0 obj<>stream HWnm W:[o @Ҹ R9 =E\: ^&?Ͽ<+^b~}|?_#;t]q;zR!QrhCAFCl0~2#}qCKt2AƖf*wR7fyq~OS/vjȇgd}3!+R"P1FXyM[1謏qB;1kqnBQÈ>zG'=*]<0۟Q o S 7mߦljaO9^ðw򧻆T^gWb/%d+'wPaBj Pݷ0΋TΦ`o'IWg)YZ+x}.cg(S0''&؜U(fy8;YjԢ~>g 3|VnRi%wN1W~g8`qGchc}Wz7fK8N/8JEUk>;/i ;f,v4fItSF{dC^1=4ƟLWo[lA<ې?ۄ$+ 'lEWiM!91R GJU R`k(PߞCzZmuvԇȗ`b?~||KMik99~`booYsܘ{w٫.S|v,AC!ċ*)ދTdZZ(RDZʘpf ]0کEƎKn~Kt[Z҅Z^ vȩ4zs1kp6 f!oվ/U,_qH(h{D@0G!Ұ\=~jr}f*M6fۍxrlTkeyY2We@TQBsBQ-Xiqpq1R"@Y[#c7 % ;ލI1\=;_Uǚ۴-:lˠq$c)Sp>e +᫨A$bFC_G~5rD۔  :Dk.p {} YI܆9ph@`Fl.ltQ֞$zIȆ9b#bŅ;SWjcy,Ibne[:wx.{Xb4'BQ3^^Q)A! o?mOf)vrl2\U3,8bG5~齮WܔB(@{mw쮷{fA>zkFif Sdj魰,U:qĆq#X°AݲU7#ͼ`^bd3 E YZ:qnB2׷*f?7(`8bh֠h(ՅP;dz49e'EH2,)j"տQ/k/U )<y:kg 63."݄ؖ&i3,nҀElkZHR@^{)jxd7Aܵm"7((rm)~f)mʜHAX$qٷ% d9-W(R_PVTZ·vZgnϓ +kqpp >tF?p"ۀvڴ%vkL2l.-q\ZgQm@GimZ RrLol/wWW=\5ɹ*=Qil)~9(Mb)@>0V n{&7kSs"ZιځsC)NPVTZ—WY!\-)tMB7F Sn;h ^ h;Dy@mGwv3uSF>r a#mĉ͕ i?Jo3Ql쌍q:2}FYҽp=% >xmy9_cKl'Ў$|#3r^ :]AUdz 3ƒ{>yWOo~h\a9nPvLYkǛ;w-; endstream endobj 4 0 obj<> endobj 5 0 obj<> endobj 6 0 obj<> endobj 7 0 obj<>stream Assembly DrawingsAdministrator endstream endobj 8 0 obj<> endobj xref 0 9 0000000000 65535 f 0000082384 00000 n 0000082510 00000 n 0000082594 00000 n 0000086502 00000 n 0000086535 00000 n 0000086558 00000 n 0000086615 00000 n 0000090017 00000 n trailer <> startxref 116 %%EOF gerbv-2.7.0/example/protel-pnp/Final_Artwork_Prints.pdf0000644000175000017500000122400313421555714023045 0ustar carstencarsten%PDF-1.5 % 10 0 obj<> endobj 11 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 12 0 obj<>stream HWnm  4z?[  Ӹ $𭦘Ϣu ^$EjSˏ?oۓ<1T??#>+R-=?M0c%=_0 %E-O_ZLKJQjI}h): (V+JƼD߰S'PxPy} > JlCj#⣱3>8La%}P/}Zye[?__;eo0la&e?f/xH<({9JN%D;%܁>M_ 7B=ϱNg7w5^5SNNVK4$VV36)~p=E_v6|B_ڿp?کVf[_!jrx3Tosr؛ >QdYt _ոwo[Vx;ٝaٽ3P\Q1n]z|oF>E?øvtoQ9 VrzByüCv8j ^:x7]ǹ7,gB]>nI%݆# P G '9 ٿi[Mۢ!Wc^ *B+a6Hx[ZWLCu|5>4ސ|)F_-( VjHm%ޤD Vl6Ef&Hn*#X7ե#kc_t/o,PR̋lɒ=C%_N1pB3s{vR"2G]p,u1“j#ٗHkY>JNASi@. u;-oO e%ڹx5 "wQ=ˮQtzp/A2HL[@l!iS%[`p16D`G[!v >' :xo ^Ґ~Zoz㸫Aжg$-}U~0AA+Ŷ.Β.-#P{(Jn!f(E {\3 a/Ak㛽bQHěT;Ad~.CE񐗧OyYj|ò?t%Rv$ao~ tAʍ\҃W/.}x=] ,^Sz^;}P*t{.`o՟gqSpxG<ΐ5Юi#mmm}…cvyme]Yz4"svc1wѢHq=f5,fJ w {w,"e:b' F,JWM06p˺ h>R> }CVF$ *%Vp(BK\pNWc\u׫cd4&DΜ"I8cG. 4T@%.b@\t9q39u]MU{H5 -5P-f lq&U Ta ІB}?r9?A 9͆z$aUW5ANdF̱U[3kPc+Yont08U3;#T q6/ȩ.J>킜 rniOE,d5ZVΠA(jgCiU,fOtd GcaS7fg.62Eve-&\Rw"p,ꐹ("z]B>rAPb "\+_мDҊ(DxW@ڳ?~qj(Pt#80\AArq1{`~~p-Fm˂Qj ﻠưr]ˤ˅Ùj3) Bo\ABLcOǠ%SL`ho#gOTJSn~9Qyec1/[$(i1"EY5|+@k71i2-xQ3uK~͉&8os I_ ?쬊PzhGuv5ۂ~jt *pfn*8 IC(*9`|YZ">gQR3G,>+xæ鴖L͔X`"2}Ev*QŰv(ø h2Lzd?CnL~^SWf"p5l1fXTOjQm<?x+C\p*ʭZ&~T'ZM T w OE?لA E}" =?7KEpPJݵg;ZGu!oe"ۆ,c8E42W]-i(l?ԗs5 Mҽjd~6 ??e+]\׌˻TYr}!%lY1Rzu"ȩ\zrT:Ѳ3%Ů;- լ--j-& A.u¼_'>f٘vxx%D60TOxGhMǎtD(Jjm@}Fzk+`kwqt`;ڻ(`@(̹ 5]foT0ˁ ;(Hm`eFT;f*mcyVSfiG)U6<-G]fmLVԣ=F\zСj#8pp׶6;BIPp@4>ˌ-7֙ۉܦc+&ݒاG}Fˆd(4F]v}T@h8i8z~Rɣ_)f ՎάZ7:%WK3yvy<tRq-z1Pg75i^.Pl@HؿaՅQ5qx\r@o*0$5vǣNk8hwEIVf{9=nPÀ`z 418&g3bTGy5Pm>L?!간@}mQ^3cK;gqVzr5c4_Rv^ʲ3zy=.a@O@;TV '! {+%)U F=촎KiPEP#JPhH]ķdxoDžۢ@ ]I8tN6>bȫKry>Mecיy#}Ќ>lWGi}q(H8㞢;4̴\}x>u1~́Jےe`쌯G{k'Gװf?/L*6sRc\Fzp<Hؓ@vZ A+%eA+̠߰ .m mei^mqcE(@akb W:ˡFgOW^/И؀# `9-W8] \xxG#rf F gf^n?+/% *v/~fX1=BZbwr/xzv׹m izEKBm^B2!zl5Іf>ǫIs} 'zU-EvPkk-}ѩ+8~E)!8^?Aq;.QKI.]bOvy,1vbTHEr j9 R>厠8+8*#$ā30^@Qv.lppY /d#LʲcqVz95)o꾯D0K(+k|Ԙ ]x-伸m5T4F'T#T'R>IP˴jr14 9๤ǐRtc՝ZhD*Y_T+*+ـW+{-G=ٚ ϵt]&M߭mFz[cjY:x{mZ6 bFL8=u 8t7M½C.C86u`t!}fkN_чo_Pɵ%Y-E3*{OijO1,tXf :, az@bО*GXd3Ǹ<`Q#KaY h~J{>^{@Z_{ @pHHg:->N5,i H S j%,{XЎ@(<,Qx~g1 -D]ihSZ=iJp.-$V фlߪ%w<G0$WL3/~]$adiheHXҞJ}9+^|\fW4Ol&9R1 &ix!R"2:(67bX4^*6?(XEYDE[ģJܾ~#瞊ߝs1"d*-r ?_*ʹ@96=h^ƱP,豖B0w yTYg?-!zXl-ތB`XXb~/$7(ُ 5EasYm 3KF<֌\ZaB3, P ,!/I{MiMiIF::"uq3_&C6S8C "Y_J}N yS'ˮ4á@#o [ۏhxnf~ο#!YxYG9@QfPٶsXCdq}as(^ĭ%hK>G;h,[#}rbj`8 {0viOM}iO$-Ik{0 E軥 $ ^'k 8Z68nMRT% 0]f:jvTfU{}fdOh82 nvQ4 PO?ʞJaf@>"e5 GAw2Ttn~:MWP2[l wTb3$BY Psm3g@c=t݇N:XtZHȴ:^'OLRZ4 Jde<6PiWstLw+bVEgxpH⑜\L3MAM[#=*'-!:}i #޽lIof{8VftfInQt7YtPB;@#R15(O˷وlϰf`Dy! Fniz h=N~PvNaYrjU9},I3 nDi b&SXF'?< j@*W˙T@DJm7 Rjrm[ o(o뼩=Q_J^6oj@2,oj@TS^SZkˌkJHk_dZ\\H#d0#"#jIϮ8tփv'm+?%x|ƸPE22dspal?6,F̍/bI Z?'|KR#X>KӠ<ұխ{,3&0P %(:C_)ECw@i?"N" }w'y?YN NB'9?y68g )13ֳնgg5*Tŕ\Y @(wTgt z&gQxqztC&VU9iߝR'{?e0g=_UL/P0!& n-/6ύ lV |2MIlWI$ )5}7ٛb9B,$k?Dz"[$rGi5-c=ƒT"';s |CwhT miبHFEH$%$>ƛso\VQ孨NdDQWTH|*7P,n}6b;$ &K淋񏮉QבyVVƏ[jWyEP Gf53Le橛QuhDx7U6"/E(zlFqD"ڵ }~;gLcqv\Sq?kr~]F!KѬ'5Lg9zޕ+o| @y֯{ЩW=Ht*{J/^$}L7k UuF,lkB<^oٰUԅ(MQGQŝ}}?Cmr YG[}]i`16{'3h.'y2S1bf 4{'7ܗ>Kze|ngv6&|j8ɗ'Y%:-?^QyòzcRS񅽱XHp#(P&V8-d值+pm(T8LqP{Ư>X.YZZ٭M1oꦐH+vBM p9޳Z.V->l6묗Q3~Q3o anjUxhKJut޿)<3Af@[ajNxqGv*s;L뀧;8<}&1I8WcK\/Z% 5A9[֗CàDEe`AE8`NMckV( roMVnn;oruߑ[c߷ᙘV>>W¨ E!bv#d)3' MⓊ)o&=1!] B*Am|PɁYq]IοUg,X~ +.gOJ,e 7G&ml% "%UNl F9v;⧜vKw~tqb$31H:A[cf#9!;Pgc&#|$371=㸍f.e%H e9{*K$#wT%Ѻ!{,u]t<v,s4Ѩ[tD2ACRC{i/"- @VDHnAo.AC8?e P|\W,pۥIC')Tyxv!&:.[ItX>xzm*>*?;ݎ7*> (L7" qIL ';ԉ \H).jub Em?~$sdqE{d1qߔ ru}Z .)Îxjý(:_"ĸjPk`c(thv&4 Fivqh@K\KDԂ&;FW/X.L]9pVe$ i=t˓p.hjxQX䯋՞bFϏt |[ hc@t9dHW.T#ek3jZRj6<9TyuK$ szW*syʠBXG5Y>l +H) Cx]ֵLQ=.Ed+S1a! }զXptM>}"ʨ -;@|$W)x0j]GGy"\I50= -OcqMs7ykBb e s *>00zCd*ΦS,10`$,QܳKdy)[nRT|T,s*^-bO C? WH}j`F9UT!ewB2s~l"-M߮'ݴmrqQDmɺuKHf hˊO|ȷjQ`m'x,M,=wv%w4)M3Ncy~H%T^Jk0W9L!eb<@Vs['E: ]>l};g`Px6Y// }{{}BhBK@.%2 c(]bi7Q̷ vZʂc<)0y=,Ck #ovrf 9؜캙fLI1{+ _;Jlqޛr40-kQ&&;oG%XzMk/~ %!.Ҟ"uCڵ C"&.JiGgSm#p CCheeH\J܃lZNl[< YJ ?WT!?, (aaNvA 8oa~qi71)֦A[q *%y (Z" |Yh+(??/<@To]O>яV.0By$~偟P,6*B-Kb'7|%&q2W%&QO;sZ___=pW;|mJ q)r}e e뫜 kZodClryg|6eq,tdلSnt+60Y'2,&q>rXȔ .]TXw't:]?ws:Nq7:SAv'D%ˆaAM)q/Ns * qT=J˒ƏO5S!]r#Hq= )`^aHF ϖ|iZ],KXH|WXql|OmN8 |\i ?tѢ+@}N>m1ԦO[%Tǒ2ƞ:4KdTEc)9?ɨw4DܤGs\1 BWyw< (UdT1' *o26m2bCjve'n_$Ԣu扒ڲIkY֮mi PFe ;}`7[[ JZq ) Jq IIWlXe鰦V#oYuZĈ1YsB>a8srlry\ǝٴTۊ>b@G ;#n8Ą2HڅK_OZ?bd,H'Yo5;լrȼ{RKh)b $ц3G+00Zu18ˁ^p ]NtvfR-}wNr6(%zqu0 3~`K֢2AH426: В(4/2φXgt9Ezck( 6|aShX,cC-=qMxy޴^B蔿?4F*F\ܧFM2"I.#=&:7F(wi=z< rF*tEr`y.Fz;z?8Ps;댑 gboNA)K[U86@Ϡ]u3 -ie[0d//o"CwQg, @F__'DUigq'8=;;3+ {~1 Tl!dr"ᦋB㜂:'NV57 l3QTJqWAdmgGDf)s+Q}Jt,f;k<Q/w/CT܏fMa0|afeFy'el G'N`|f;d ׎}P3eӑL!J]SrJTI{JNO2l4;\ڷQu3O7^_>cj;k9U IEVn.nYFؖEaے@ylB;#0}?t.wp-WN9%>\`3)N:dIݑt$b3:M ôy4wP%M{)ߚ|9@ p>J2oy)o #c1RXĥņ2"T\w={}u2 LNX.ѸY g_=k|u<ۨ˃Z Huy 91@Y~Xe6Gf/ g{T<~ )(9Qxtw :d4jFFFD.{⸀ďiN!Cv-Sdd!ê/y>DeAI+3}9C^(}d<Ly#XeqH⌷ӯe 1Ͽb(+DԌA={w ce@OkY֬mUEmOFGxdI}&kר3<~o*K```Au@`oħ~A.QI;S[ h4_HeJÊ+t>D^KzD bt97dt m'tq8?h;#ml4"j1zR##umH'>nbS_ kLq;v,h41L~ 0Bx٣iVF挢/x á:g&T&FΣ.N4 Z:b '1 юE /F˳5j+4:,^F:Sue)clM!`GAfnG_4Ҙ4J;6!7ի |"Z`~]c5ƙ7anWҁyU,(8ny7p~N6>TYF=}4{@YCV4-) S|)@N ~_3cm 0|zxI``Ij9dL|xaP@/ H*x;[A<d9ϥvSzN*DndιƐgWԵ&*]f~;pCLrҾ_wNj1(2&@!`tzwM¸ WXLNv O "$u+n3ckX u/%ٶ>QX! @*,Y>-4.C\i_p=eBdM@hR*ܖLSV &Z9/ eZhO-Jyci QT>T3 xdThٮ^My9%|rNq(@C8JuMԝ.S3J5!kBԲ\QgBך;> oLA4»zTEum E8OfmQ`G:FRsTbUcH4}RC@ͼ ,% f r6(49y1?yБe'I84}d2YfQNB(*? &Imi>:=H(_wO,ILqy6pdrI \,YNY3}VA8Ab!W80$S)Y0RL4Ii7Um ~Y+fؙ2Ƙ-yG| 5omq^TШfn&nZsJEtBܙಁqm s2C\lc afwC|K1J$4X2R$Z (D0BLFSd4 O=iKԻGX\r܄yU NLq$x* *: U:SPVG+}Bs6dq VMkxIB8VB06qRCH Ks_X@YBKXBi;=M1 {3a]Sh?\ *PԏѻMCA)M\XI/]lW`tƱ icP6 L]' vRNzJoSn`6}.e \ݸD.YClXL+z?EZ~NMiaS0 5Dn)& m}96 5 87Lѕ dP@Z}D(8Kgay"Aqeߝ%DwBɈ<;?4졕O<Ȗ30UrhK͍;Gif0pZ){~5V> c eBP$a 9S.I'J?`\##i|VcFAX+oЍm #rp}]5APw4/d itaS.hӦ`mN꠯CS<>j㼻{4i9"kBi/q1SPO%;GQ<4S˷"|]ȃ mKfLz1K}I6ȭsb!l7cs=s)H^lRcVe'6gب i,aIcj8[j7}O 6h^ OF#+$U۔qPTZČ/cTO XǦ/!syZY3<"#_RW^s L.F!FZG7>b6:%#K4"87ri5WEյG&v y}c5o`e8!HGPkwTז+ 4?eɵԋQFv+Z_>. Us?Cgb_ܑ9<`;].i61-_Zʕީ}OgOrp;jUqмT2 VrN/ޗdyS^㜞o^Dmc BԴ恨|?O]:Z]Ѱ6q 4u4֧5#̀qyPMb_BM,4\Y*n<OgMpE4Em& /bs; rwW8%Le8 x" R /;F?Gr}P!ڗ;xt-z,X}F{_Nbq*|2MfH abs<O=ySX/%LZMEOj3 _f@^oǵt$245/K} ֜{?dXa ~z~%6*.\ ]Cu)) GT%W7N(|\Ÿmp_ZѿF>@fإ| ZWCIuS zNAҌ[lFZz ڌfiF+̃-0 @pB$FU["㖏K|K3@3MLl}|ޓtKN;ɚb7SP(NtC.? ] a9{_:8 OCY1?ӛ=x@D&@W0/caTQRGXf8*$7 6Bg04骧X+YfٚNtH8 wzoiRL)t&L7Wg*~+n@zh| FvTnEs׭O3 IƻǛa9.<^wHSsLo^X6Ff1')Kc#qQaxb!9eǖD5u42ȄѰ~}ŧV-WFk-SZʯT -sF{UF_<<4RD!_e9\_o kqT:{#9[w9TDoCIȭԦoLcԐr)KC"yHƈ})c&ìטgvHuЩ)r|Tj ;?.^m (bjg]3$/3:ܴN-St@ gz pQe1j&&bӂMw>z,#j)Sץ9Ӑp)gr;1mc~$TM"Ѹ]L9Q #," qMa@]Ł3)ׇoxlt1W~H&ͦ-3\ 7Rr KrjuPgi5YhQr2rEM[]~a8-m *I S 2Xk9[O~ava_a(ʎ(/dI$ĕ̂'[s][2EG+P[Cؒ,ވ"T}RNi"b < WlE,cڥaP853j>cX3@"Q c]=U/ ij=x#̐g ߍJ[;M_fL5K1q(iL;p$HZ ik((65 $27 p3*tQ˓,'KB΍ghX]c5PB9J3l%FАy@{s3$0FPl x)ܐCߢYwa bj"FZ@ mwY mf#hHhN vԒ@j{=~|E䕺tv[|KP .% Rcl{ʎ !";*'ph@9,c[_ إK/50ܜ[%e̗[:;F˶#|=בrn$d zNgiv(̹ӟ p~k%7o mIWJނ٢jG e-x1H&= dY1I/Uќ<ǔX.Z4|wv!S4ȳ.cpy@E|Mp# 0GU<*h@4~ f:x-WZh*\ zPa ]-Y l?1ȾvjVU&6 Ԏ$JuP]_5ǎǻsJV2J} FJz%uN٣: )T8fn8a,m)O?sCC __W.hb3݄'ʠr0j ,+u[ؾxw.ű.|TEqԒaݎ $b _k.m歙yY]Evɖ#*k kGGW[2'{NNXWFܚ}D8wrxa"Z| zw=얢 ȆTl{ʧLAmY*2;vF(p"ڠ  }pxEwySҁZuKs-3kbҨ/^|6<+7d2L`d*b/ 8om4O,@'-3ڳkI\= Ÿ(_g~3t&mU=#8"^gIV]H~Dx4 ;%Lc9f~93z4KJ [ [&g,6oV AAhJ&w @C (  1mT;H4ϖ㲃) Nj43l*Jt:(zho%۝Y4=XLzVҵİQ$A6xʯNI-lZGϻۗqKAZwbuvb!*MN %!$7 Җ \u-zbI%Cg49ƶu0bܵISP ߩXuW8;\|<寧IȾU0 86YXvݹݢ x\5Al oa="]>Hu hI}=ѵmQtn>P'  2q|#|Z5}"EIJnd,c7pN*?nv0R4׌ۣ)DpvP"|DϽǰ фY(9&߃áiGDabxr? h8LSuxw6K[ʳuGog_)JﳥW:WZ+fn*xݝ_)RuᓼEG!BO`&J` ظd7:dD&-Ǻ!R(DD;٨!Ψ97$UCy ~=qji剕|][ '೯sUί Hگ-s'UjgD1IT53pcgXm]^wtqT2b[ȗ)ABXf FW|%SSg(#vTϕ:0!`ַeˊܤ}ŝڦ i2nBJzT$j 9V&'* F}?)! 6fI|Xp4Fn/ 2ʬ'f=5h B"G mbYѼ4bjI̯ShY5Tv-!XRnf0 wpWc\Jq4b€[ k*?А_ cH(" &n4)4XXCBtrCBT|䆏fCL%DJdt7 ZCg(7\{,X @9R( QU.h:.X$EgA7CtH ^3Dj{^Ǔ A]ٺ@!m~r PCA|)Gj( n?˲63S$.fOץ5t{5D(i# VI "^")xWG봅7pZr=#B'_'@!vLs!!&۬ 1|475H)oCFKp"cnI9(G(o/rIɏ|_c)lu #UK3 fEC@+ P8nߡ}Bt^?`v>%Zi0Mˏ "Cgŕ+dJdG% }DB'iJd`7H[Rk X䇳 gL<1) i&w{F!!6>i݁݁_ѹ.Oi84ryJCB4j@4j@Lj@LjG!E/D9Þp2xBj 㭉8A ?᷂d[ 5nPMN F\%X$v&s_!7猔9r&;IzywgW\ L: H$N9F4r@d41P>/9t p3@pOOf*=#5 G44=pdK[[@BȖ60dp] %/i ,<]=DK\Dvc"z$x<ƎGD(ɐ8Sm4DH3}8#_Ӂ%>l9wow.v_B"m4Z]gKTPDr}*DpA׸b EB'4'+L .I4($ITD]Zj|l󃜀v<'at `tJdAއ闚sk5Sʪ]gT4B!` r+14:6;"\˝8]y5'kLQސ jW=*K8QΆ6+yTչTzC{?>3Q] sr_Z{/1!jt ^D;٘WKY E`:9{1M-4\@=  T6  w]".wMDP jY~BK>Tyցadn* Rh@H'X \"A -Xr 7/]L1fuᨌ g@:cacYV;{0 1k0 1kXʼn˽l ja@bײa@bW H2VNzcf'}3qij5ݚ f7#{} 0餅Dᓎ!kd1<{$#{`ӻ7Rs dFx6組xuv0H :|4/xA+Àhh`{7ZκcC}=`Mtɜ_R~ˍ8 Q) !}F>5'/H1Y@m# ;mэlwX]zGOZx&*Y+/^-/=|TlXi(+ Z20|\QOV ?b8 :^bUaԴw0]p5;uF$qHNo  C1 9 n.JKy>!ܫ4!ߌA:غ\0(SqEvyE;~TJAVZ^kX+PloW-;FvHn2hXl)Ѱƣ^@$|.{.;Iq]HjulAwANRY)NJl,rR%0W\%3(,@V$j2pjQ7z3i7(bP𣎶P]A<&RXZ3 9T?zLŅ2ۀ @Qu1lwLQC9Ft{eK5D^ӧvvд ?=iC~ <P)يB%vo~v!)g̱; H6(W@}^󲱨,Z3`F(0 g2Ф&S4/FÖ^*OS h[t+O)3668m|΀ގtJ}rg/FEt:H~.M|wa_R*UjϖЇc@ {,@sj.k;JjZrw"4I 4K1?16/g!1\hH?7Y*&ra kN@2thԆf~Fսά#|0IpS0`Uwj0I|F66Y 9by59X-=e4ج$?0g(~Pdz x/S@x>-_sv!>m2HwƑio~ov`$l k(-~ es,,T:˖,R0`ڕI9"*Õ}#VIF'1O/On;7;xXR仮؝<∢ QQ NɳgƈAb$` =A J-]Da wMp QIq?} g8>"5g\6|P 0|PŒSm| ~Xx$ G~W̭]Ǣj&QQnx0!$GH בu36 }E5558CSK$´^ΧDQ0/] Br8 m=*j㪯_}iS *2CD2?%PY(2ƸLjQ1b@f<,2C(MϲE1:rdw{3`S4 (3c儑,OLbZ4[]kz,`Cx[~[͞_ hh<4\ +rd\9FSM]1w7J~F0l1̑6"X;*Dzn91 HXE&F5eH-Jm]'c=_ϖsX6R2<. _)ag/9*m"Uwmoq݌ Dxc4 1&J\'1NrX[ɖ@0QP!L@0WK6gYA[K^G޸$${T%($O!ƺ[IQ,2:mΈCS1,yA4\IwU,+## $G}O 1ĝ6@KG%ߟYl s'h\¥8,38^F6Ao=O~XO ¾ydWԬ>> 5c-K$_%ivB ãMpغ+L.Ų$9ӸZ]S<́ssDpp:\")aEA~u: ?;=s<bQRU Vs#/Vebܟvy#lwV=>ryf(̓n% !ݳ@1^1@1^qɈ&oj1%w`W2KRz-o!C>@1ϻc] @1.# կ$C;v `B3wx#Ope ȟ1|]lGlź_& r&Ft8ҋ>kMK~q;CR@ =VKҒiN`xwZ 6 g1dvZ*CQ[&bP{DR "",(A(A7OŽy[5h" R(&ilW?X8m^kwJh-:d(m g“딽2`k(著Xo;%D*) S a`:_zX3Dm*n,hD\']D C+qE h 7h)!"lH]AWXYC6ejtN};iܼQ]zӷ Yl\gU:uR*P-1>&lP)t~}6I@ /4IM\K:'"ZxL9R\5D@rHV-R@BS XMd.9֏EZ@s6Yj̘l@1UPKMfH؟@1OME59L4Es Ҷ@O8 w LoB6 QLM MDР~3G! Ȑ&If}$@&g<|0Ԡxf?@# =g!J+/7l5^%5  MFc>?!1ţp!/+l,겆U6 \ug粑N,7J.Ky"|DPVE 8^]ˆ,Q/lAt]ѧ o%Q] lÁQm)vYũƴH i4ضh}l,& TM:fʶ؀* `MYM&߆ZaXlb#<%A5@={0D'ѨiqmP`=\?Ztn"F}yɭրvw>R:wCgk/k#NFUm0aI=v-SsEJxxPRƋA Y 2ybtɳGÃ]{,N` ENnvc^@t ;.m5PfՂ& ɥCK lrOjd^X"tb,ߴ~#o$QP b9h(/b9d%ˤ)80(`ʇGo{Tp-͛лk̇޽IOyfU?tSN<~S 蛇dEtCq}+`ݷH90»H軫"D@2Ty!m:BEIt٪\9\hރaF^5x> se}sK[="@V-kLb~_7׿s=XX-#g{WzwH0==cO+1Q =X40 od[z!m̓o_]%v]V@]o@tQj> -fi҈ t>K31`L1 Qj( v m ֥ UarTk-GR5Ƒ#WT6`5 c 6 )h/dn?3+$Cn(^]w4S <~Jf;B9G( K",Yϲٮ" ,a<G\1jY%,?}Cto+6&7zMqf:)uRaqAQ(FoT88H^Z,o#@1\e*}-5)S|]!9bY6dqHHȕ@2$#bLS.b(F#dHCs%9H ͻ`B, Xڔp?qUX@n3 <+btSPb8@K"ؚ9tS1+c2<'1\f1\f Nv,YK#á}$YK<ֿ2AߨHjnR4" K1 1t2Q 0${*b\WP ]6kGÁB"A ?y`7fC@Kx\ё㰻JkIqtyP{O OIPc#kfˑk o%yUKY /H^&:]'8O*$H| ڽ՞L<-@T11myfE>|vqHk}7K-~blybZQBgI ѣz&k!GMdg>g@Brx{>+kc\3qkgo~%gu|s7L1? @ba:}/I (rĘ܃1yBLB>ilC0>M S " uL]*B@bϛH؟7#teeè.(ݓ 7/{fmFI J4e\ka+ aXCY` h"b %@" ӭ* q{L@dI2lЛRϩ6ўfMr[`~:b∞ΉC]*79hE]q |"8`'АO `ȧplè0٘}zz9U2AHAsZ@Ht U@n'"p}l9&G1͞98b49(I374s&:- q$rfp0 Gf`>]#31(!/ /ԗ0e?b=|;| ?:ujɺHڧ&$K ~Nhl(>e@#"Z'EنNy SnȻOV 3ʧz+pz5US^>Ϫ !Ix*"3KCWc7)U^+,Eλ2](c<28嘜}WХ,,pH!TK.J@-l МqڥrU"7+g$L:S68x@2ڏi|E` 8KE ˲H͵L #C@P-!Qgxf Z3u_?pe2Q~BcMp wr^s/$4&- ` [\63Z1?sֻMĤ$SILZBtpΛ&Y%VNIs`7޼/._A5v9,^Y\M(@cd #Naݎ߽:n̾[#oϞ(rWU_4\GtOtibG8YO;;rǴf+ߏIsGo=оxJO/}NڿwW>Ϲn1!B(XZ'cCd*j 65]Lo,10t-3HZ[-vRY7g4eW ۆVDt;ӣ 1mIq62NuXaO?F9bbN/*p+|#OB{rg3=ɠM)i*^g xO;wťe95;c2bg:hY)Yl$c%)[Ζ"8 _I5 O̘OB)64_AИ'S$F; 1O-M5Y\C QcDb3]Mn~'eNB°FRVZhiLޗvmB@l,ecY֠I[sY/f w؃<{l u姧xzAS>:* dN'#aZǫ|9^${0>AAxr`H]PLƃ;:x]oLLR1 d#L3WTo#'4pD:d?=[xV24zhWVeP֩.JK-$w$)S\v"ү߻GG/ vmǰ@u/q;OrNϖ7z`?Jz!=P da\\00`h 2?+c^fQNaԌbׇvc0@J)Q? 4tn> hFO3cH id;(? ͡/=[eIr5 nw:*^dԿ'~&ZcK`!'$F¬JFM#E.SuY& [+o}naZVnUgY@ɾU]oryH.>L4zc)u^ | 8ޠj"\+9›o&#٦W%(YmznӸmIPYk0/&maA,+Mɹ | 7Àc2!4MC lvt(#LB]rg%Tk ,mGBA5_B$*`FWG5xV Ȕ2x!楗E^k߾gM\G0o3(0 |17 3$C{ *@2 .N B0qu,gߨ* ɰ * ;)VϺz؀ѤTM 7с-RsmS2 0OaB; $c@2/$i[cx3 0Gn-XiQa+ rz,pt/*^3ЋCr)@ܘI/20; kn[,]sjE[4YlT9UOL{xv{'辴o=R#鵂4G G 't$qwֿG4Snŕh7ng-m0bGS\a^[9]` /# wd0@g|l,F8#찮6( +UU= j㫝Tvgl9LU۟mN=q͉f0PV.X%j,Zv!DWZ 4Oן ĩ؁.9eՆ:gFzz}lv5쥰ra ]4tCSf*æ0[ƒzʥү_#uLϝCgJL̓8eک{\ Yʫ&ReETlNa߇i\ _s2bfBGBȞBHsBI&! /DG>k!= v<}cNuċΞ*sA@5ZAGcXu]ճ|V@7ǓȲeF[^ ha3<$lL-cdw ?j up)d9ݕ m Rv|e167eVR" R}^,p2(u4Ц,u^!q ~ Mqko?9A0c9Ҍb@"i9 !F>m0O*ɟ&1'0ox%w|e~ݧ\  ҿݖ#ǫ{HǖҝY~\0[i$c4/N@@jΝ%Q2~H۪"MZ6?O$yZ'݆M'pZ7Y.O̍ {&G&_Ь^dM2Ν6ɾ]tB N3/ՒeG^W(_BUewϮB| 2LyFLaMY_y:T_ۏH"o*,_OǘˍYB R*Z$Ͻ=_ ]ߏ/`"uaPd ;Img@@ 󞱄gNV|=l<&/O !R~TF祖߭*y5GoS!;V2xJ&͘X{Q #prY?[MF9d= ̞ϱ9Ie.ݏ/]#ڶ/7WTEP{Ui.l:XQ{]TofGoGxu(N-;v7ή}?һ<dzxI:|/җ-$X_^@c+? ϳtS;{< {*ӰPށ]ۡ{A E6Ff'I4-U'pBf5q[*-m?:~+LeQ ޶sSW9N&x\\<,i\b^`!Ԟ;u.g$feGm*= /h33L;V47NUs"YsƲDL m<`Ii$ELN1S9yE=T`Xbv&!PA(IX_Po26y5W.N)N`Cw_LrYx>1̡U2؆z,#3:?q+4 =H%Oό6m5ξy:-w ZΔDO}^y6xm $˫d\#ՎSv<=z-|\ug8IIcbA}%%i!ĆCliK0b T8n8~lhd( "(WxrDH$ XpdXY d[qn=(]+/YP VK??X?>>Zcז V燀Μ %Ղ;.μܕYٝ<@ dAXO.0 idaUA`2ԫ]p2xW "wO >qC F.bjjb\WOxk\S^{ BoT &Xzmq zWЛu|Ci~,.8Z>kPKS,olk;W#!,oS97 ݏZ>oS @t#L5dO*KKZb9C\ +LJ)f0u|<̵|}ӹy_c3Wc>V -,J']n-э0a XLj5 À~*SGB 0).!p_T}-K?k/uOo퐧XYdzC𑻝MZNdXJe$UўyW[e*6Ha4x?zDDia"`dh;g+DN$Ys(YkX+wGYN~ډ5 O$1H̡dӃ:/ȺkM2by a*vz+ .{f\}o0I]{Q? Y,Lʢ?K &(0 "Ӈ:#H 6>lnzo?a[Sq3]a\A]&lWɵ$9cAԮcܨuGTJ,A?w(>5;G(ו|2k~+@ [CAs j!daXt6 ЀtS[u@ "oN67BwZ{"˨jъ {VܶDfig^ g\쒦}XNMMs4PN5};5ThL>veV= ,ujCZ:PC ?b :S0_ɳn|Dji{W2Ӽr+\pSaz(僈m73Q(c 5uG#gˠvhx#@뮁%cïnE WLnycoXCU1>o!v#n9B>.{. 䎅CQZ;CR'όw.a_ſ9"ygD2k%aqaw1\CÊF1} 7 !7Y.P紤2-QS}NTnb,[wmv5cXsusR.^Ֆˍ S7ĆOܜ(8CL#1L-WJPZS[X"K\4guXMNfngS2AӛE񻷭_#.kZZkˋmLlX^@gYp58,j&# ؅p i$VtWL?a [rS$vhG9dX}f^t!'F5nw1(ͺXV݉E)bSuYviqc5n*r,P>'a:R 3񿷧2{b5Bh@I>N]9]TZ.~g) D@hy8czJNjI O R<ɯz9{Q$;ePu")oŅ?ح((IZ%5(WMfYEDOTzjUbxFT%i' ڏc)s^<~֍|+74hխ+Pe2*k*6V~ ~ɰ㔁pT ]qc4yeLż[M9|2䷳_U>?+8:ʰSNE)D 6QnUL }<٣3y#cN~BXs c,R{3)5q2)O9Qj?:mAc٣Wըxz]W7>`<}g<<6ZF'aPi 8 \4xHϤu{|uh9ZW„Gr+mk|& {LrsUΣno 0f3CDypiť\/o׾n'k`+~n*M3pCKqRFUCWLyp R[vBqq:b ohB>iL׀c9O?|6߱7$[YXC<<ȻG;> ^$7pא*8Kc~Q*ԌĉO]`=wFMSF][ODE:$jWB0#Hn_):ɄW#L(қŏet{ެދkpbw]%? s<)O,~UqPhh%^HQ1'܇Gd=<1+Wq=#pEE,s5}14@,#yl:qEXM EkK1477RUbKJCOeZj(E!i|\?^6C aFd5Ep .lTtY?3bUq, J^8.gBaKDK;x'P-"QOhP!&DM.T!syPPEZ@e >8Ԅv03URpOk˧Pr9Kwv5\, o[ْO?-r^fb<\zX<>t1,e-¿zG_+e. %_rE2H c(C>5Kߧh8P3\|?KI{'."ʻ`=8G&^RAwZQd@7Ď!YH[0`/Ӆa( @I5pdByq<"槚rM>2~ա򼟉jZ6{v ;P:0zs-h.#\X q \  2U1]Fb0FhrȨXPqY Х&$ K}+^Eʼna/R)Qn/D ة*"-N% m0K`nPq!OZ*5XT{Т dEW5̕XHZfPOBjEEmBXU(E+-hv׻["ӊl wi)8^r2xFuT$KHR*~{dUdAR`*Ͷzה؜p:Rp\>-'./:xqXI|Pl L<fLAdtQOlX) u e#'MG(k@9̏"Y<G(|RÔOhvco=F~o!StQDPd) jZիGLԕ`&vJvAK }ҟs}^dJÄ/մˍ#OX]~('o=GozW#\#7ev4#&d:-ec8\q̮'X4m-D>/bhr# Bccl@9/BxOC|79?B7&2kqԄ~h 4@sGSv %RSxrpgG_b?v yb(P^IPz,ĝlY,1q;76|-K35)wxK}q̟g<<:e@@V.O֙sX-byĶؐwDn0,*~^΄-c0R`$KF*-K 'slĻ֔=G]S& yQQɱZf"@PB=lC}!j!EWܠPQW IҍT,;V]W$*bqG}}:KQqPr\ˮF̘u[(=JDήbIyby8bqȹ{ SE"{XLQw+oDat4#ez>|$r9lNV+Edm"YTw#dcu\wM7P0uef4.W(H=CN/A-(dIgN>^#)hꖢV5IT9}ȑ+O0a>\ʅez#^` W@^[.|7Ɠq svSF 8%6)H T hm*C iYI"bs2=?}w)G$žIB} `FNq^GٟǙ+x%b2 \X1 gOyw_+%=)fZ)~}(`H 99>jOd#{Rc'5vIGjcUZb6<pVS+8jZF^Bs&Ws@$+eyU\V%] lF9٪P"GbyTc3O6~<1~쉱?]7?[=x<'w~9Sq$INHGQe=%ο_ `j )y*~EXE`⨯2UBAљfAzkY[!o5(]W :SRM,bB0EXz@0iݱHO-B3%y0Ӑ_^Ҁ Z:Jh"opA#]*R< ޢP t޸absatGj0I9E^_XH?'sa`lSb!nTsW`|W C0}ch&Wre ,,`|%y1H\qݐN+SY:Nzq:ҹ죽fQǦ;gϠP^ 0#bc [[lhA *E-~n1|s ӱ*k15s^^o @pw]&7(`@8L\(E*?Qs֓Ʈ(c,+ܾB6:QI&R6aW6ɷgcyۗ;۔yyz=~CÁeAx@.g(e9v HY ^%#cClCvY{OnxeWx\ɂXӾ1n?@ u#I,vtG!p^p3( G ԯxFއ)dKFcDK'j2~lDŲ] vЄm4]Z]}p.=f:(#XN+6e\v`k%iPZ;g^Q]:0g0_ KXRb RHb l-7 j{!e`c[aӔ۹џXJkcAg߁T˷$^M| THĭyWw0fH.yT}0Jn12~#=<$\m4xy.cH+1K//;L|hr)^@@`(:L/t>6@ϕ` ū3 w-N 2^^eDr}jQaۏrX 6]/DG}D*qqƕQ Q NɀF ޮȶ|LAgPI,?y?Oz`7,΀WuҡZnZ_<(97oGEbp7Ĺôjd:(̽ӿo."0.CMJ (a U1C~ 3mV_0Z^o!G}윟 \T#h[ K vmq!LWbi1o+O!J#D Q+ɴa43 PBgx?=Dzxli~X0*IB92 i}2' 4OfgΛhqƵ4z)`T6[׽cQ}E "WxrIaѕN RQCcA98Ck[<ΊƐ'Vie("°ѹ-%F=тLaNV hwb\;E_>z\w>,˟o}ڵ`i#ڽ2ufZC"-!)ר(y!ԲXDI{VJZKt/:'6S#K<4B)]~=gy`rJEU_+zX#ᘋgV]yq7G빝u;`sH$T;XS 7c%Bipv,y< ]50")- tp)I9FE@? zP8Pqw8W25Fߢ.u:l)+vmQT t8uuc D#Q*V.(:AQ$6g"l̗+W@i9ZQj?O^zL0: 66DfFjFQ@i92^v $11K[L@W6TVU@(Pe{6 ?(UI6%dAC(|U48˿2y\QrnK3~ss'_ '[,Io>G_A]ˍ~u{Ua,ny S!tp\%a{#D眸\X1ͶK%DlfT_Suf)̡'c3&8U JzI?6e&i RlHZI0(7bX@c>u⬀ך&;r^"e8s"m6M󰰒!w00dEA5*pDӥln#ʋapY h3KRzIN꤭NFHW45TW>E 2>T0b(7D ^]c|Z8{5w+5(`t^3i= %|h]#5Qb*t1B~W/桯S2*zx`^O:4'Q{V f}B~=(taFh3f5'H"-)7* R~m%}L$r  gy/?:cq}A yJ$?\[;4: LE#`'wIBy,d?Ur%YmL>c\N>e>Bх,o8(|AC l)>w!(u(tmP6䒢ah_mmЏ*9e}T50rQv*{ QDJ,GRۤVO'/U 4zi*:e'tUHoa~ SQ Q]TH,DZ(HA^Ei$҂}ԈF<' i㛞:rɨ!cye`2n@U!W6ճ͎Idtpvp{9 bQѭ(TjY8[<|{(Q]$pDK>)*FtvP83b? R:sdUnZnA+̬ f'8|L4@f |G<ݡE3l0b=Qm5;Ӿov#d?6-J3Ɖ:VZc?J?Q9jy2dyi | Vh>FF 7[*$3[%)x1݊JF M0fBO*̖7fЬFf_ܪAůV;K3#q Y^PưT~XpURԑOcEB?FPPnQF폢}N YBTj:/)u6EЙPn{/ /󋽙b'}ߟgnfsSE_kRE/ꋯX:|?WO/93Ţv~Ny&Y"Ā2+UD>ј,or*( d_aNGZ 1I(X0Lx *gFSG(@[6/35ވsdӄpNn"Sޙ#(v,#7LfF}!iҶ[re$*.TeK!dq+D͚TE7M*4(jŖWL ty dnWt@)V(j`S0Zaݙ1)}JFe"$v"l9qz]ۂzG,%B|o]f@oWz 8B/ZqREz=Ä#j S]bR<3:U)mD (I(` Ty0@!3)BqN.(hcRs*l&cB{wKͫE%FI U91j;1E<3r'R=Zx3g+}kR@|?"[%riOgq9?|[ܗ,Q9EHGe !vOR[_Sbʴ 8:6W W۹ 3ZjX ; Rշ/Gkc$(}i0E|h pfe='ݱ7gv6+|"+O;#6tBKMo WDQ<Ա20 R*ҺףLUWzKЬr \Ѹpdc>rЍ~?|c}h?) 5qzr)ӆ#yGS"]~pGC1x('Z) k莫ECS%*xP5Z ("u ,aOivR)Ώl`TK0BPd^!;۬z6%;f?{c Y;1<[czgq\_)ŎsSP<ݧP)+3<`܋rzQ"?vVHx\'e5' ,0o!f4S'GkV;y~rS?nKVqkͶ͝DVNT~':*b4¡0<_L+C/o+*vMHo(~\Px˄#3QY"oaC hӊ" dGU Vbܻo:ov tU/059C\ŵ {d[pyVTu2~ IS=eB/v4^]mG?)dacgIpq¾8U0ܨLonQq s#-M0NwE|uli^ܞ#_5 3dfc ^nm_h%]| D\7!y0Mxm̀ @(7f5Fv5*.Vnm3rLx?07}l`  lS L&/,V#LufOl՚֠*ƗSfbA_{ 3dcj1˭ l#OBсaoJ&^O9tE/9D)0ȴW}JI5^7k8)q@r2\yv Gez\dcw.Üqe^6e\_w{\e+mo-GE&gPLZrpp4!rΞwHEn[57QKgk̲n%R-4SzEjڃnӡXҞ8<:O/tlA$tBV>Wy~f@Ǭsl:l5eçJ/5:bA`D,&]o݈kH`8WU]\eH3_*3 }Xl\+bE XO\E9*s|D̹dWAnJMJs? =W*^f󨗶&GNt;Gou(I-7O`N&ioϠ` sSCE!?ߴPY8oR&>'\h=.ucf r3cӌZCCR 2 /SƮyO[A3Y=Lֽ svPڹS k$()K>4yb_f;m,TW-fw$3̰a-ITyc.>فq4#y1,:ϺI@۹rNhP>㉽K̾+G$L̔$}@ Bw%-PI}  8D E˜.H('G$yS<')ϡh~ kVJ\ 7Cjc=x Krh:ۄO34mtaO%S靄f# ;Xx9FBrpA ?\xZ:Gkzl9Mfߩ3ooB¿wx##%ʸ.)mAWvcMMMM]7i79i7kh7kh7kn"n$אf"$DwM䚤55I7k(7k(H*7 Pn $r`&~$WKY֒,_S- 5Qi4Ќ-xZ꾧 )/`$vޑNkH+<.] sy%U2d- A/"ё$"<{vʓ IDyD<7OOZǔ1Nܘc>0Tl?neҷh, fܪO4_nMr*&ԚYO;ta%sLv@ ̣_a`5i3\X}{`.G0P#>qG&/id z ~v?`lcnq%cXYk݊6s{f1EUR?l,U^0쀩2[WIy۸f~k?~f_"o EׅY=yFQ>+ ߞW\i~TKgg- RK1 Z%8}Tt(U 쳂JNZ7ζvD]7]t55rbsn0[ϥx[Ζyr'Ӯpo>#g˄Vz&LWyZq)~239 USd&zIv񃯩ƒ$gYDki:vtt/:Ap^t|D?8Xs[uآvwV7GURdO2 l^.kV@ӌ#Ua~t=9:ndgSbBEIXDg*:GtD&'Y wNWiZ<%cq"e\OG}{On񢲋WݖAJ5e>?2P-2c*8<Y0W2ܕh qˎEBzpH(A8E*]nsm>us]OQ79߅]]OJH8IPOݯ"Z^UX2R-ZE7һmIU"SA>tdb{GNJI;E~|ߨrcЁ0}8dS¦L\C3N3z#5PK򤁨Gzk}$):ax( 얝_>j݌zу~W&y1N#IaOzQzU%3-8#!]!bģ*2gHGf*2f!y T&Yj3VzSԩ1ӢNKTg,2z.A FLYxnDмK;SGUw?m)SLsbc N9pַ3Ф+ʾLͰ\ :3d̶eH/o9 Y <!HSf+u+JmS_ݸ$70S9th{h c&fEW^UЅLdB~I6N4溬M>QP$3C 1N+p+ $ԙQ bQPm+zөHx*P;/>S}f.gy9)%FPl'P+#jY2 zHgf̯j:Þj7D`F*D;?F{ `T'GPZC Av dNa}' kO؛cRrH*PJxGdzIjlwFp]!f݌o+@tH<=H Bze_RYQFIXNZ V.svg9ιI\9ޢY=fyKHx NdbSa0&$2@ib+*B¤+5X:m%›"4 {k`g9J.jҍ>ۛ`z2hIwB8CM(~_[ߑ^'ktNy_5x͙JP3lgk^w3B^0k+Sjf)^:2[& ^bx)ohrrA5W/ ^d'||ǟׅ\qܮ} @di'1 -9Dv*f 0nݟvA2jӟ$}'1Vb-0}8c]oQ!x.5I"vKrya5B]ԉ? AKvu.h$_ƞJH&aQ'YL- u0٣nW-굸MZ39!bNNo7A?VCg=]үcx쾱J[Wk,UN|]?Bbɤ^:0qk 6{W1%B"J;4YT0ܾYt_$$I1/{\nj̹ɑWY+ZJE^MK,o#.k>)6b3* 3;BA+BDhHGe-J{&&P|YK (QMe(0hlLt8Bm[{CsK6z]38_V6}TuHp7t ĥxt)H7)nO3D@^{Տ?Z$lf7ќSWМXxlm*Ⓕhjužu R5;*j㉼^Ғy ɟF)z ٫N-K;tJ]$%@ a-Űd&@1PrH4PoL,B^K+ fM`a(v0fq  4 9D76EDKE-zyk˨zz\Lu6JHS2u(]:OQ"N7rܖ!,N=WS:xJR\__?40wVQ(k2k~&L#1m $moK C@2nh]`%K6/f#OMnj&,L:AđFP.% zzjVn$8өPIMp࢏XX3IԚ&X85ށ~wJFҿyk0Vhr~6ۯ,  L;= ӄ*+gg_-_(G Ny9E}QHr%KKV!(BWګ^^Qe6)cc'0͢`jrWtAaQhJZ68:$h W[6dqjRhSi8V|mB8< ;^+h!v,p bRsRWg{#4]A*z8?qH|N_L]"kQt[ԟޜ>(۩vj.HCV"tg-SǾtj^NMͧSsaGfSv&vj.z-eom{kl̔鳖؞.e-ȏeh|8].K/E/1\B `L7-iiSL:0͢$2%23%F񒍀U QRBON%9VuD<84yn 9ϻO۷(T'6F9\61r|暵Tomͳ6{R7Yd}`Tp /\Kpbb8ڶVz RM{HB/hp_ޡ'9Ɉl $@:UH/-qZ2s+wɶRgW;- =zhyjp6? ۺmσ$CeاŲLogwj-)bޖp)ۅ5muvQ[ċW.p!q ]1n8=9O*^rF ;ku FPǗ kfGcA2y4dσxݮZB2HdksFA5*_ /HO뽟sTm׏[ߞJV2.FKvj$>Z^ZW}@?$bCBZzēb^LzVhP4D\T3 Ut*li[-+ʋ[PGt+7[|||QԻݒH4ʅv.#{u|zi>n`Ǯ} ޙb{ +!oE@cB*Hv!IUw}P  pIw'Qς1yh9C#?&ixs4C .Óe#UrDD*&[s@6侸InNIE6ZxI/xp&"3#D@?1kz RuLQ|` ۊ$K8Pau~PVq*[9haHЇIh:8ZPA5(Sj\(eR%wHMw+&-GVaY%G~hCf8;k"]%vNDrY94R)7 >jU\e/ M~ ]*tIH;sTC2C>G϶5fבxFòۥ.l1/y7˼Ч\ 4+d ?%bnDˌ^nY.l b6͇.=Cmc50C]}'ӬBCޭ7F&¶g臛̂j6x{;M 3kXIW30*V0ԁPOއ1!C0O4ڳ4.%".E7ϳP, p'`Gh `rn!qxn[ Ě۽h(yh$寳~=ݟQ̏ElUBH_T-yJ|QGG[2L<7@Pvq0KJxh &X!զPrΝKo12,=}[%x&]iaoK@!gUNwqI±8MFYKpǔB> [ji%)80=_g;m_sB̅5B]s߁\Jyy5ޡ|$' 1;~6~}nh!|̗P TRR c!=NuHEcZvR u ,KI#ED ߠq!4RLz^KI0ڗ{~|ٻT'c+810JF25H*RH~jx}o/>Ǜb J$7 )B<3F`)'ᅬX(]~(iǸ-O1zQV|3ic?Z#ZtxɐGEoOsZVuAE-?/ҭ]j"zg<4IlDG|`RJd7<ќU2;FhmBo|AIXcwPcqɅݸo=ոG(ʅyk2 k(jاNoٍ_W0vPtzE.2r G~$`8^Ï >i_TgHeoJt&t.m]y6UG TPEyU}m*|8`\ʜqg'!Do9U.H= @m/ˮ}xg9A-`)W(5d8S]wPqx%`k6];ߎh#QW({RWɕ%7ˊ纎 'Fs -]3>WyFRѵsN׹4;Ylё#jV 2(X)P0-zGZRC>m 8N:?&eK!}X+VLe1a䗇֋(DUdyo~׀Fv!oPsxӕR3I zmOM]]P="YӗQ}-ЙWiptΏ_rv^9{f)TW31P. Id]90p$eZqyv8??Jhʔ;hi̘LR=" ]5(؜ qvk2p;6_lGh֦m;X$ꌛ n=\c~'"Z/d%*EYW@`68Pɰ Qg`{k84@i]*KY>¿XI̼JnM3Y= ~(.Ywz "UJp <8L~.Tkt28uoaɠ+3]ֽJҪ)4,q>,QS}ck'h;g@zkvޓ?g &8D0nq !٠(h{׹緪 60kqBMyHehEKӅɰ@+]HfO^ y/}\K׽}2=+ hh V+#"]{S?z>6׿[D?8$줠&/_j,a.xl]aZF9zk,6Õh=*IG:5gU6u~^.$s#.h;u{Pu%aR Sy>w_@S #i jXMDR !QEޛ\#A{u+u`8YzWG0,Q"dU,5g u2`SFK|tWH y؝(Bmh Kjd߆~u:A΁>`yf՜$Y,1PӔ9; Q:R-ٕH٬|F`3dqqjp6+ hw>+f̡ G,B+tt6kJ@7!:/+)A5H5z~_5)eB Xv|=瓻~{">[CFڛDD "褤zӾZ`јkQ`4DJ =j@yNnqbaΌv6e52Xf0?`:Ezgu|;h@T%CQn 9x erNJMUVɭ4EsSmG綕zgŒ&<1nYzH8k'Vn @_wo4su)|owtM | 9^Mjؼ|Ku.UY2LzX9jD ]E|{E9PV}IÒpM2hKSb CU:ͥso߰ գ4&SSN(PEQWg=h٣l[ 3 (c^Doo_Zx*sY4<,hAzSAE\pXH0^b@eT ⭙":eP-g,v[9XQq1=PŃg}Ϛ5L_۬YtTDmrd=+B&՞>M co,Yҟࣥ%>..U.7r@Pk ;ӱxJ>U29<-?]G}_j^`(߻%߂Z{h%|!oq āqVQc$zA5Q>ю~,Ϊ mMꥆ@KgFXZ]ocCRK{HF1!./| sA FvU/ t6FiKΤUV)+g+Z)v9bk{q<# (jf,4M d~ZG0c+! PPL /&{mY[ȱ|%-HWP/gq` և,Uv<!A>OZ=4̰Op;?/,< ǧkSΡRqUF [`'2M d_eLL̋ ^%8pS s5ۛAJz{2(Aq"٬?heTDҲ`Ÿy'5PqfZ&S yP;C@K '[`e] [8 _AHg7FEQZRm^x4?=,v۫'DG'ea1W,m9<7[vc zj Xq+dh7ZE8Ly`gyZTZض&HqJONeEj;;X7-?vXTUlsQ=}%rR#jaOa]/vygm^V;'flm' j">/kE%MviksN+1gqgd&&xy, dZ3<{اD0p~yczwz7Ga`%Y;*Gb c-^ILiz>xb <p:ڹWHnu,v*/*>eg}2pS}w&xBhZs юfC^ȅ zTmqXyZ?`0u3mQx9jN4! zF8uu䘄Ɂ!X0mP.gEH5P_j}*up@]U#H x&'YT%xǿzh6$p`BXH@7|?{7|znKV{aH )h / 858")^-0H=ծ#g3/]vOںW[U!ˊ=3 O_ @VԊXavpj x\\uxOv;f7MD\ 1@f}e/6S,i \~t4,*QJbACSYP2AmFOCǠl?}*ϧ7߂V4xo0(eIVC*h:oDA,@;_cJ-w <;.;a浚o*^wVjpj]gRX-9V]p:vvn_A(95eWvAw4i#JQH*g,mqrLb p=9;1(n,է`nO=⣜*Ws0ÿ ŇrTy$fElP65J++|%UC4ad PU"`*!,a?a1*M&-lNp7'uBxH5Z 4q4Lrl8< ṯ2F_2O#t.L>I"X9C7]d"$5f[PC,.L4Pg(cqQՀv)SW#'7}Pꅦ-B%g~"f$͸$Y D ?OR.Ezj8 YҽKnoLPvk2tJ99KDQ̗C40Uk7805Ru[xhS+KF^K(VJm3cMFbl-MwՆg<_Hwylg̙`wW:8ϐq2vǣte0_Ic,Mp<ڙ8NK jgL =< D_t~4G/^MC٫O*ǘ?LEGTN$>-crǔ)}`p|Uk:ku]Ê\pp~ר\|ݻY0 t[^׭es?ɓ cݘsrgݘEq[]Yq]T]á1˻)l433xgQ{3m{Y}'pzO ,4IB6̧F7mН2Vc\>r^E~c IO#v:Bʈ\.3_ {Fٯ}+Z(I5pd&2 >cc[N} I߆5[pa:z+wק3V8yHzM 4f7{&ysXg7'y˂nC s7Վ2{P!dF+s*g5)/뒽^aĽ; JV^W/<db>ajL5DXEK_sib&D^I#!Z&zOiD6tLAaQml`|JA^ ]Rb 9=54]#25TqݜIA^ 'Mƙнh 9bs$h7`گOM`A]PB}_& y?% _!] _A$@AH, YGčhj/k r8.^#Hwo%uX/#Sc_.0E|b% Yax&`V#gXn1-4/ MY[ qWLC\RJ\*Zg =\;Fګ%7Dp#o]h*sV_;>,k5d8p(܁pz6IřxVDUCN9?щ7f8 շgnJf}*e .d!`r: ĂrOMDE]:- d UI5wG 7 xoxӷrq1Vm ۂYVI-{]BLtf| = 8/s.4|6e;o'LuHQ/x4ұd+> _‰w9 AC ArW%C[(̃}(#)WL2(0\`W>mlll4arn4a}t4U|^3Us(;=:;_Y6uDmn]wyjgHb?q>4rD\];^U5L#_j>"u/]ÄӐ\5H1 ݧ)" 6C$nuLeT}L4sj!W')嬓cdc$?E3R~Tj[H<]Ͷgaӏ5-Nû:2c=Ф>7|5U0] ؟ z}M촿deK?[r9(n~f/ayÀV oHp|7ݘ,=g燖nij)zUE4FEYKU`p:&J^j'+E,$Mğ‹yaĪyb _[U U,|+lZ31#&LsY,p/[w%I\@Yh=9i5`Ea-\J{۳Jha ~ w.XQhdsƳ=Rۘeyozax1~sܼزmURkɮ\W3Zrژb:ژϲ'wWk~7?/猖DOvY';P˅ 侕*n *]n lV aZ/a?p=W{;rk/<$Qbӓp7GiICi8"Q8.8<Cg$lD֠}MM5\،]1'"6]APd5/cz&[#?}z޿f+c 3rI<- E>z՟1poT|H={tJa&T &&n]XGC+2 -&pL1`,"+$۝{+$23ɤ zڿpPP5 | *n x̜ MdeSo(vzЈI˄°t ne|P \UH- n CbSņDe//ekDb8-C:(F#0aU2_iw)_jMp-~,8b*M`;Ӛ2GP܀8D _z]n{pD4u6૒QwqP{sQ42X* hנ"^-=wk)43 ]n7L.0qSOA2a IKdɇ?L_`^6J%ަ $gl7r+@JoR 9*ɱ%a:E y8O߶}dGUh&A%227:V-[7tϦek<W?2`[:ls{. _2td( SOϋࢩ%BDf[\)\5}f}tۃ+j{k+[-25 EDK,f*a?B\v?t3JmM=6XofwAr5Lj*}w=d.}~(낒1>.kv}>{Mݤj,:ssxo?O 88WV j HQH5bJuF>ɖ9 lm޼X]fЏ_1P)4WWBt0 [5ӎE],ՑeR;,"|4!#HHaeH `"uP PYD;{@.'XmQӉ($ A:ri-Ď,+m-UI\d$(J8 ҃5M?DҼg@'Gԩg"t>|hʲ!J}Gq;@ߟz-_g[2˱I(d"*$^UJwߔdZ:D~^ImX9utK!r-MЎqi)l,L b}AcZsg*cuD(5M3yT[( <6#_3Qɪz%ԕ8UMΐ.L琭=3;i .U`ֽ`C̻*kPجQgO~slNdp*ܦ2?e۰"?#% DjfxV:#<8T5~ WɱG7kr?Ȏ2q' B?*ܔ yaQ,FMKYeUJIjV D +hp&VmLM~3${fCͤXdc`w݄g074͘΁)q! qhX/lZM$3ql\8/JT6cu6h8| V4S`Rz!}n̞F`_]9" l LӗE;W}-{`n 4h _`=!C(Ct^R 16;!FL+M6SE@[Wczу? C0ƺ/ ,1=D!LЃj}6w.ںeσXdp,y^82L_Īþe* ( $g1Ȝ?Bt ;|g/QFRH>$Pv ve'h{6#ߌŔf+";Pw =K c[F- V.ÜCܸ|()>Q oQ8oc[aXe_ƆVChbf'E:\=GEu)[3ZpjKl?nCEhŠHQl@E Xי΁A<#*bI1gi &MQŬqӨU717YVI -X\Գ[ez;v>^Լ`ћMD1,nR46Bc|& AK9HȀáVh&=R(UVBp>ӽfJ1f`H4gd*caU~E3۽Jx]]MET@Y;j< #)[ W/OEDݖPl.Tۛ/Q *1 EؔS^nUߗ_̧W^E'KwBZOp9#:qaMH+v˻Rnq@徃tA4Wս B]zoV^ՔClpT?؀4P`xzÿ`v39{€ȷ8.Mm+zdGHc6CǢpu#RY U9~gz}0=vwQ\tXp6V 14ˬme0z w_.]1hR}E:{Q8v xu@W!6։2^nzǴDpg.®'X؊w'@ͯWRo ?_QdX}]x 1njTxzzu X ϓ݁-/[c]sWx$UWR;/{Zv1Ž% ѱZFðlBDž^EwGg(mT>e'fVPyoY Qo4gA,jtIdR/OمMb xK 7A 4 9C=.^~~.X]*Ep<[2˭6k~m%G{d-7LxV"5xÌ5V61 ϛ Y1-a_" זOUDCQIJWŜU ;)i҅rD%s#0綠2bmao?ZRΡ3<F,t]/ioR2Pw }Xʝ=^)j4W ]߶!KY>amwQdʢJQvWN+j*TӲG@^'~KXmwlQsLd7YwZ j7$.rJ׵-=Rt!4xqЏqtTbmςǴjbT-jhP,5gj@!Y-NQڛ}-GHBHM=}pz*ƖM(utzHֽ 3J(y-ēB8˳m ޝfːfn4 &kDQ,i粓ɐP^P?.\`J̴4w`?oDX|Z`#Y65Gpпj}%£HXAf7b׏OHT)>~0g1 NʗPaLfsrCz rwf; * GlGoCCl/aaʟ@kb/DFiXm8b}gcȘK}Wf̺=ή|W*XQ 8AEOUQ$1 :a=>JR._Z@X zA?>wxZ0x\$DveiEHC͟( (.3~հ:.J*Y۹+RBi2PKBX"it1NO22sv;i\NJ$#MBRpROEaVdOw4+FqBoz]&mENCK0Кcta4:M#s8mѨxZ:mV.ٰIc2)ju5|Ws> rkN&/%JŶB`iՅwAeUNN;dFQ@Q4?:]_@`;FP\O7⯫=\Ut/9 6{C tޤ5F;,t)G`C_AosawJf),o|/lDceA ftv?Yk'y\:&v OihNbkF9u*86Ӭ H;ZQǥ>(zWg߸+,Fye4r}R)XjӢ,~&xXo'>WLe"nRy F<.=^K'G|Nur!`ɂn"z᦬AO%U]aloF8s5s܊x׫q6?|fŖE?-]rU_‚mv!|NB)xߘ#`J g]8gK '̂4;)O|oȃˏAeY G22hP?4t/TM V,5y() !bfzn (-@K?܆"P#ڼF>&Fw&Ud\OZvD70W<@MZޞQRYh0 >)/ʚ^F(Ʊ4)]=ʶ~XXp oCeGˎ^X\4sP@ ث`MQZV|+#?˃e]u`H$8\x dS`tGU|Uʐp ұdAt . #Od:, Ȗ)YV1CI sx(S?O4 xpDD@+Qt=X1]Bҷ *>:-}߫ѶR7zyvû1^h an@2Xv2L+ܐz `)8}_+;(j$kC\#hz= !J!tW;,Bj[otܾ{mz{nCIt=mv"7k!Șѩ&mLվ\g& 8 'BJ>6ў;x&ke²KSER%zWKLlޅi¯_76Ѽr"Z>4^zQ@T; ?Cg%a#[>FjbYLABfڹ ́Q;s 8}|( WC{e9,#sc<{kw札#ܝaԁRH^9ؙږmG~ܼ3iD cg:-iEQTv(2əsff3^Ǚ0+9ѭE@_+s`Aъf׿|q2+sU[dԶBܙHNQ}ٳʜ"sBF%k[4$kc [zЂ0MIVsL ap/(]T~LݎgpZ]P%@y q88Y,iDSۃk_qY>"֬SYhAIHB6hWXkeJR.˕УY0mڪ0,ԃRP٢O&^7WU@!6$<Ŷ=;RF Ķ%x>]?{7R -bw䬦.rVy ejĨ2lB?Y<99IYea;><ˎ}TK |<Æ<)1Fќ4n8$`J/ |KyyNaA\;2H u]TB=ӸL9?9??&lX*l8#[Nثsuo7aBrU~B %@D86~jn(vnU/ؽ _,:n`M QZw7|p 1JnV`9So/ÛfRh r ^7d4?%`6#C RAei(Pr~SH|/3O¢ gS~4Xg-JvOof23ozyfc 5f2<'90ͳ;tIKuˬ]N2+1ʌCFHqSDIz3.wsd&oNl -bsQ $$:=7ŕ{:9s N?C.?S9l|C= -GJUucR+SWn,9 Czk|;,_LYT 4[A`R]F fXNy6"D8 awxwe;z$i^m&?KY"@O1/=LӪx́33OW2|k%r@%Y)w9w(q>!+Ym&^?{>|8̿ܢ36۞7i!U: Um (j|tS^dkhU@|zoô`!hxV'8yR3AgB4F9 BQrh7b@z w7^))!dgoBJa9q+% P0b1T P(ڐxK] ,/Oʵ?/Գ]}yQ:0߆R7ުQn@6/rz{gY۲ȏ>\F |J(-8:~Wo4Q53lx:銚@ m?x":q}* #JH jv~Q.UاdIG@)Ԯj}a1#,(8[GĹ;¨׀w+5b[<ܶOo[M#}(g;Ģ(SF_$)!S@SK!әN& uQ< \{e (*RTGYa eXwJJ,MkSt[=0hۺo%]CG}4I>=Ƴty:=RHӈ.Ow+%/~oxHJ׳Al\Vޗ'֯=̞>eXѶ5pĞK AdzӸ{ǭ駴]25\XFkMóH+]`v& ݌}ly^5I6lN1'j8G0oGdCTVd%hUd>J&U`tA >E^_SDlHzeapO#.B6U ٗ/c`As(Ӌw7dKf౱-SJy{$5i݉܂1Z:Rv pפ|1`]xIMXJ§:|^d,?#Dt2b o"d_Oh)~ x~j{:w*pKMmҶc?>0b5X x/@:| :I )XkmRCF먌"xL6&j}~ڸ!yݻcylOc*^4'gX& I?kՁ:Pk64Ќ,cnWT~^A_  Mщw\efN(8CLwkSV ~OD2efg GgȆ*/Vl{ˁ .?{#ru25_xΛ8|_)*1_ LZ͎30=dצ%`v5Bd?Us5Pv6~̒JZ Ao10>O`)iB 7OTtÖr{<| ~gzkiE%kZ{-jZvye Y4޻tiw\*|,͆cw,V/& ۺ% n=XyxDgrwѹ`_\ſ=%  5Yn>L1613a+q)礹\aZ޾\3O/L=Si(['gH ߧ/fbTNfL`(e!6\T˽rL~Q}דSƂ$cۗ['<5Tre*{l"M-$K>ZJt,v[4b$DoO? ݈ܽ@96dzSV7K3_M`X;\.O#_ܼZD*o:b}bulǡi p+mty?6lK'{fuٻJ&MAWX:FbXVm, m45BٸBlsrSvziqjp[ړEl|ckH t°R{=Ӏ*oyzcOVc b.WMp˞J-k%?ؕkium]as ^Q KZ,wm~agCVXD~hNGSjMa>-G9Tyi?h\v+KҎ,]GjiС]AӹAkd{1@XF.² C_pIݩD~~-NaW/2hy]5<ɳfJYYF^.ӹeѐ3tve寬¿L-r̻ٳs"ʨY(l'֗Q,/Adwfi<]L iWLԱr1=xj`྘F:؃1^8t!.UO}[`:t,#ӹ։R [2-'tR 2} ^ D8C&ja_@iw*~;􇖆_4L64'0 -9QZlWP:w _R&4\Z2LU yAtn o*A9Q{SL!`6fB/ƞU<Q"ßeayg[k eُߑ1pE$abM(-K eӿxrJr:[r}5NY}TX~&,z.~8Βf|1 Q#H*ݵ 掴sТGE`ZvW4X,j ǝ2/膦 ̼ xXzx䖡9:ޏڎjd7-(و\ o:j%L; kj}̖OنjA0" #2ۓҶ}};j0ohUֽ/}=4~z !!JKKFd[[μɫQ?$gzMy:h7 f<9iwhe%@o-miMkFP(}'ΣaeWTj_y3˅7,и!DZ}̕ucMO2?> :vgv;5gvjUkW>8.=bZCkٜ76kqub^I4pHÃ@ۮa<B X]Ćp~*T#|ƸF-XII Ǡ =$lE!)~Xi>-Ί4RQhQ#,A-NҢR#E6S6`dX!S f zYc“CcDNYZ.Pb)Y|ޣ!>!c9ӭ(|c`3d@20qԨZ Dq>QoAЧ#*,(*01Z%6H iM càLY2Z!׺.٬04b M|:}1v@}+ns(i{ +#>X&E|~2eOڿ`3v1"Gڣym KmEV lU ᘑ٩Gf49hOM!2N>"=n9˖v- fȗĩ$? ڒT(z++=w{?/s@*C(/ fxwiFͼV\eb{~f7_rMINw^mW^gVizˑ$k9eմFO?ܴ´OWIc~4ϪHAє[MGW֔o4`45sd>#IHӑ֌,Ͷ~eo?~SL3Q҄i ,-'-T*[ݑn˾uXt,N9946 + =Cel)H}5̺ G/,ef>v:8N"p|Aq 7O9 ┨pO.2ݶ >A:d`,2Q+OkIKe8[Eq=-1մ$]rmt%OkpqR{ul%H#qm̊O[HM#5m_[Hm,̭ 18Q9h ǼY %N✴ZO[l5;jf_Z돊ZÝ1nVㄗrU="UL!9=zrf;=i컁AoӜͣ;9|c<ݵ2 ~WYpq%~T޺XfR9|ܤ# ) bp Lf}cbja7<&rPբr-XOYf[$ Ώ9.И?wL}mQIMs&3 JRx膹oc ܾQ 5b8/m\rj|=}ᶥhogAHvxE㖆 V*COd8?Ufn]UmeJKJ-<#u5谷wX;NC0%?M+9VM\^d Բ$j.B[G/uu.r`g.U]sa v~`K_>MQH}<{L93m6r'׸]'b.lh UIS 0ȓyG䙉"ECĴOLyZ"Of"Fq#FՑ~5Z1G}A^Ft 9dl FM%⭜a}#^A}{Ж)څlv"obmOUBU #|v27?a|eݔ-h1}D;DSfb} ѰoOڐ2Q;V=oXU4}EOE ,~XsXƾy5d 11Ӓ @AZԣd-Zm;Fcv3^_\uq>i AL.vaeWˢ![ұN(T+ u=p&+l:127S㡖﹞6[$+kJ1u޼s@ԓmWMyq>Ex\r=]: SH8*Q'G@vM u=aEa ē^0LF(aU`0 ^Z€.za\]1K[;Q@w@ E%!@pC TsNT /II; Ta P :wBf\GO @5 6&p ]wdpIr׆2I?бK2+6>R(m\LGE$vm e܂ZKAS5DYC+زO+k_YY3ȑ|v EGcS"{!y5{Rw2Xض: FQ~雐.nQg!TUjG0.7o ޳`QSk۟(W|x\*ɎsU=}VI7-)}d]FByKXR(_=?hؿq]Ȗ8,Sx_.&%O(mӱ4_,`Ov8oM7<~]ĉFQ)zt؄; ڝli(ܿhhZ7vG Nlu!e]!ݚ$Lڗ\G ۼexhG%CwL3oɰⶉ=.{@{|]y2±$}$8=j CHk $T~w8F!]㘩Y^L$ sbor)q( EjKD!i"dCn6W1\L7g[91MPoE.IV4׃N%܉a2 ž/4h`[9Wm.d0hǔi rv CaӠ݃>x ~P$|.@vkl\]rG笻&<Ð;}GԌF _jlPaJ[AUhsټdt.7Ҿ=j[8:f1V&llP<&/;{Ȅ9 ڜlIQ1]kuՁCũFch2Xl9; 󬖨&k3Ux1C;QA{ 7lL:?Npg}b'MA-m?7XLCE:z;%Q(-\7$z !'G̍Ejn=l^Q lEpL F4Miպt7h1-1$rnq74o½{'`=P%W<|Px d.;z;TtXUnگ|YFx$9#ʭTʤ AoI$i$,q2Um_-҇k6azgu;'gZ^D^kOd]ySڭ<.:d䶉0Ef7h>^a"HS2螜3o\nڳۢ>E}5 ܙdh80mk 3*eb\+|Xh,^r2*LM=AD"xH[bI|pxlUfj؉@ vbF^l ]}82loAV aW.} 0NNeq%) !MgCBؔ+xݳ>E$ZT ?z&`FqlGL1J)]Hf׼Ѱ_@ǵ8꣚ڲWDx_fx+PFܖdG]YZ0IHhm zַ%_fk |FfN;,5\"wQF=Ò!sؔUfG6hvGIإOKF,|VRPdt.7ҾYW_ѫs`sm jY'5oHEE~/D+ jjHڂtLnַeBz68ۊU:QӻJZoV`E&JZT `fɊ2c8 c7^^d*qj.WV9qu@ЩhWGAd 0NppHg jIC.1:kjY2Ue|7vfH"NotC{?䖰z' Bq-m7iz,edKWyD/ih7&ժT;rKk'@gs"{z%=Ӫ!a̓n b )Ap[^5B#rQn[:G\}'(sS2#8/>oz5 NLo& Ȗ߃=8LC&L2ps'r`{?QB0T4cLU~,)k N ǖh( k(8"k`uWۈH1Ӏti$7+_r]֛ua$4h_r͔ !},n-ea1}ߦy ׄQyoxyYnLofvW<"d8hljN~x&֤X?5F ӷ ܚlf$?{.4X ӄpPT8@dc7d-&[nIǷG>bĬ]Ÿ(C7l' _(e;IY0ˠ̓,e]pi5G;bq]o4١߶'mFUQ-kx+Mɟ0aS)O4D#2 0,k^[0r=tK-3~zw%{4|۬<ͳk's8*&(} s`JGf(_1]~ȞqƑ:Yt2MZC4|WsJMzw2VSr>b]?mIt{4x!z5"Ddm,VtPa_QKTWK( [A@ ڲ%2+COcƈydž켣)O+˫ ||f ]0>QLE\eptKG;b?o<Z{"az (piv9.{ kGRlnmm_OḦ{YqyΜ" #Gbl(~yia9Ŷ]ym`gޫ cws 6l dZܣ/n]>ڵҎʈ&R q{;'bXmC?٭nGzoXOZ(#\ n}k'=ۛu! CcPjC-;@t1"h&vd2-#>3`Gqk+]h{v 彫ZN%ZL`uEY/'-(0r l=x>ƄϹ#_l]G>Ƹ \eЉɬ#4~~iТ"WP +7[l-b[G8[Gؐ4FLM,J6to@v)ad)6J@By'ϣY[wE\epp죜Apj}fh>̡9޺ eTkzj}f*.mmjh ajΧ x0 F5gEf@qbY\cX띟mhŽ-}Wma?Tx(XGd8؂圸b\>y^GtqFˀ`5+EPGk[YhE]6wҲScчI`h6`e.{r}m=[" -28 ÿ7q1˱ŠjMɹvn#^c Ýzt/C:kW g֟,|"K.;Dnun0Ղj1WBQ}e@\r`hkmcG{CVR V0\ aFʷ m2}ds'7Չx wJ6 Th^ьg^⎸:Q|SR-]+ VQteʿHLN1|u'O&4ٞ !3!] pnOԓ- DksxCwtO| E)g .x=P:&O,]SDkkQb%Zƌ$N/3/0"yᕇ['+ّNһ2趜~s*xKG9wQBYFobb 01"̀"[bIHD'F\epp-mWqFAH:g5mYx\ϼf1! ZGld[ۺ>x|F;̳+nmh٫爷Z؆Dmmmۉ0f>l ޿'R <k (ѡ^c ˹ nʕG~$3zΘYoLl/._zL&Z/ehRKG8abï£9(}Hb96<\-_ϼ8~EFZd\'}]*˿fYÆ /p!ԂR s-ĎLe}dsG#aG=OFH<11*ǂqkoiyjܽ EXО;Sѕ2R✼NN 7oסE5,68Vmde{S g4#g;æT\Fk8]0>#*\лjd24沋;AJ H 1΍g^d3GVr򝕱@cCe 7/(\__^x{L\mPpKڮ\Y Ii@$pǹY!6; ;w_{-#,b[ڮmYn`z:-js(~7pƛÔwA|DKHyE&* -}3!~e 쇙І- qV)vxz۰b[G;f?#O+L;l9! JLvߛ0(}׶>Zl]GO`L>F15vxe=_7H#%Fnn]>xPІ l: @ߙcCME G1xd׏G,[6,60ΝLxY``)D^wݘW )mTP;r K\;2%^7/ 8g@G ]-v(lޫ >86BvuO"|eԝ.;_1P89~\j˵ ,sx3m82Kzw{/+ E^Cڬ B3 d'go_y-Zt/}Ը)߾Tul sG ܘU^߼\&l3u! `ХWɩ8|'b#k1F$Z~S 7zjs S:I*bk~s9YȆ7۩s33h'g8 Zȏ_W, \ ͎t&wA<^ٶZn2\Oreɜo(vii&:`Tȋ&[AzE&7-VNs']K{1>3$/sˋ3.<'oZ:EZ^epԹٳDZ_f?/ACRc꼳˱PcF,*=enPhQ޳6BApkA`$丵WB:/ԝ~*-`9'$Wf4z}7-n\+:N͐D6}}r_& k LreI:7r:jŒB׳V8 ƅB(^S'şK>.p9:)dId%N‹sƉh>gP< '㑧ebDnO3a^:f c\͘zsg ^*e peiky {-a9Ivf%P^By[!5)5D)6`z@OXu^U~{T|h O]leYm`<21:E4_j MKm ۔%<64 TmL̾2ݹ-Ǖ6`VdR'kV84 nٌ!ZSjg Ѱ^l?*v_bMS}yX 7ϧ EqCqG.U2TErPM$X,"K9OE 7IOpD94='+s5H(ׄH@Z9۰۠f;O$s O1+\;N#L<ε:cQkZl'6oYQn$ު N uqůwZ1\zdvclxL|'ФVbĹgCEfBn!7}I MŎO(@+.rMC;eZl-ο4Dٳxm(#B\)0$ > ~m%؄s;+O̙D60YAkZ7ד}*R-E*߅ZT'I\U,JlQ:؁rjC}8[;K}w+`XĞyS wmA/vGURE7[}sgkwm?-.m_?jq<~6Ñb3lx{A .s~ߓoˆ~zojxmCxݩ}9N.h4Tp+O΁)lxO ͐>xr~*9Z>R۠f+O|y3]fBAW)ѹfܳIu[Yב_MTr,d:Oƃ 1r£й[lrf^y]1ߌuzEA2(뛶7''>l<Ov5Cy3o2YE5ߜ֣ld#&vhR+OYiq/?̱h}Qelҹ;jk# zR-t(a9AVjg*Selـqo?} G=#-}R7" .e`$Wf̵;s+V.i̊zoŖNbkn&ɬ>򥄠9TYC⥄iWz裋a2Y}d+x}[pyvnܥHy !i YI̼9qΖ[N$E,6(v Vl΂hx-SlYmBi|&6DTS/ !O}RM0ژD1)}R6t6&UB7յ)!۞#cR#XkN^v.>KOz1fx3'@;&ď @GjYpv^aDMGN#2PkoK%7vxH2u._)j>Ylͻ Nvɝ^3xfOk0+`[^P{mv訄N_Ekt؂{]lɝ9jb;Q%g[0$opBi붍#Z~SYp9vj{|7qCܴl0qoSaC#=yVq 0MkA:Z2b/(686ٕ'qnb+=&k dA2]{Ȕٖ߽\߽+۩홫c#e4 2mY=:#NgX3bjɮeWa; OgHk%[1= ؝lvŞ_~T-ߑ: XlW2S?@7&U]0{Z1PwM@L!i$Ǚf&'<֫$ o،;S|A1l K֧YS),2X `r^=Pr٤\,η9tWsNh3Q{76\',STN+0g/[9ӠAVdWȲXBQS!hhu(6&|=dX}VBHsp&iޱ]yJI[M)Q[P̡%k4NؘY-l6~7d @_}&_5^n2a:߆؜lvG~8e< z&M2(s}qǦ$)+da %\|(08l z$ `D N݃"K7ckQ4D';iaA'4) eq`}ր^$m8lq7Ʉ8 |rCdWWsaͅW8 **LO5EhI&ܾi`g\Wc<ӯe}48-!F ==Bz+`z߆]lvNQf/ɾ DY,Ȁ5h $h([y4HQr4K mNB;#au13Pu]S_?_০W .΍5H' OZ8;@rN6'[UwV Fj]덵}o?T]rӏumNB;#i2S8|leX[b~@a`E&id9ȡ͓.\4[DzNNy =PR RDn?r ?A@_alDt !a۱Ǜ?W>2}W41q)NHU%6a:'*+n܇UעqgqTp~!i2~ĝ{jbf0˳ľ-x25w3\ͥ#҂]lh a/ڜ'~#'Ή7 jfF].~荴nX2zGؙV2-q5 By7G\)K,|E.jU*a:NmUHg'.  YM8a"{Ŷ^mmXU-YדI4 %)u@2EQZ; 6m#Ӿuy; ޕ0q>(=a>C?oP,0 =rٴmڑ`\489;;' O!?l38 x[õ8+?~7{Q3 6Umُ~öc<m?--U_TEyw XӠɖW밆>0YBa]p6xp N'?Zթ 5  6{du=6?zCY+{,w 'hZ}+2`M6:=|sf?O[aq 詏~o>/L#ph.<' $_\D#C{OirZڳ~r7'K -+y0_Ѩ -qwlj۵g>vO}8CBL]m/E2`9-ify)5~}˞H$ʄJc=>}ֺ]L'fФJϦ7srq݉ce #T@lJ;ZKv&lU=Vmfw{6HM^xonnvCfCתPi$S-|W66:<=# Om1Px(o&C *­IU&sR k#3'm`۳PzPa`tm׎|nJkդ4C?*A]4TnlqnڣgN>򒗠#(+Fe;r1%|BO] v%Sڕ87'Z~o'c7nuez9ucnжue|gՕy uC6ӀdCۮ=¸pN4q(oqHrZq&>]H&7!C)5'_o6k>сo{yӆ]dSF 3|^+B;.uk>D Xi@tmӞ_$4ߓOMS]v|Mɂ բ*zY&sl ۅDeZNꐑgh5uTZ둇؄rcMaV 0Mθq@W`l;(p] 0L_j=؀Mmޣ}OIFva"@T1Ȑ15j={0لrNb aU28 9C R! h'>%.JUᵒxb:l(1ixhXd{az昿q =;CF'_KVOR6!Tk%BzـJFneћp}/'E<۷> < gd|C׉rU3 LA8 YQ5:0,M_Nꨠj=ڱȉqbz6ۡc JUZ8\c T̚NTmk.Zѻލ0`gƶӻ> ."6ӀdCۮ}2(At lO N뛠D#r& T|oq߈㍢.Vm8_2ʁLus^m}"sBv^o}Kژb(78/ߡ?d^M28EkWhiTni@ԤRѮٳo}NJhi* 2·wE(W%T~i@ܤJ&̴!&&okgYO717p罓Tǩ6{F 嘆 .55޻}֡ێic;Vñ5s/T~i@XpiyoVKcXٝUvYCrjuwd|L*x;L߭Wd}~,oJL*ΰ+ .5킳z8bi@ga3B-ZL b3ښInVV EP4@ JhM%A(4dBӦ8Փw%?r+ "RNxV6_=}ɥ;L^r&X2rS(=3 ?GaO` \37f3S_%Az8z{=TLr BRns}glR&A&z ?ZЇ]@W.PîŞB$¥j@唆]ٶ&lUdrj=$$$pN#bPz\u^IQ XVdOu_$  Bϡ6%JLl( !nAyZ dƮrDj#*xߨa/MC(XEtreUD\Q^7~*لRLkwۥg[J~r$̰?wnϿم(ҀR!]=hW_LþGz^Y7X BS= >>@&wli;G>|||}!AAZl셺j>^^C97llPI{)  2wfcqlwh9 lI;c<˭$c !ܲ&h2B(*=,}$Pi@d\[g h=6UZl"?5ZFb; k˔|EC Hj;l%r/s CymW(ri S-|g6Q-dtKd2Fh2B(*}.{K$Pa`d|͙24%n{ el:ZmF2\GKM(4 :vh?Z&'-A H lP6ZB{{Mie2zRtH4@PKEh 9 6k({  2 &!n^b3 L6t2~nc6n{?Dhe~ ٷ~@l0=w?ޝѺO2=T`Jӡ⏳.Nr}#C Ȕ 癊T} (;Rv(lN M[ni̷Qfou-ɹh?x\S؀DNϘlӶ53/?gUH7 '-E&s"8ِ=ik حb_rZ 6ֵhzZ<`ӶRMΦu@wISu|o)3m[솢Eӣ zd]oYlMm#;Iۑ ;xhZiX)h= a``KۡgZ5?(j>/V`ֶ+#f>Zbw=vh3f+CCư)nty(o{o $׎8RuƗYir/ߝW ;>J"~jW)Ago||cg#$^x8qeJ]w?>൧Oup8"a\;dR*Vl6(+Ž̅PЀ\dl(cݶΝ̝; 6#5]Yÿ9 ("zgu仾9ـF_^1O?/x{ S>*-"4i'ab- ?8_sٞ(]fJW]>?4D+ <5 םW\LZXd f`PP]I̼D, H[KJ&\8ـFNOIg|Wi'B< h.vz9glByɆS{cS}wBBH |?Ǻ}QK-`Sۡw-Ͷ^lEBu* hd%?Pi@tԎz{=&#>#"E`S/g>\^=~͂d);G6yXg * dźzog 3rP؈jߌi?ʚSpѽ޷+? 쯧-Gh4@ PI¾[!H(4 :vj|7M ~3)0 tdJl7R/ a S!SwR6eݦ{#x2C|3nHedtMir/Ϳ]v==WrTr/i@ۂ͞;^|Zs DNhwLfQf:R8`ZsbV9=89NRUEGMqOZ~b* 6{&cwkol[8sʧ=R}sQz=F3~| lsjSrޔs T:4 C-}+Őu;3zي@SAC6Ri|h6Tg]_ӡBCJdȢwisoH D'N푏 66S]bH@  5B+<+Fƭn`n HʎL{Tl~ AdC.+ϹL00:vh|]kV]ن*mP`-z¼޲L00zЎJ;5R4wJ@ 9R,\g2_syƯA&o:ȔuʎT֎^W989* 6{fc9ʧʼqH[w2vho(#6cX?m"Xݺ~'0SԞ*\xVp=$mwO_u;lPi``Kۡoйg}wɇPi"3_%&ـF1+,3빿2vzW"G\Nr*\ܿ溍&sl ;0Q2~ #dDBءWޙoY؀F:هp-ؗڝ$4@ِ f=6G0}qH[\쯷b\+!j]0PGoINȧ Ui*f>Zb; 6P׾Ւ,I }w$q)a fF<Ax.!@I龍4b;^;׳}҂ :N{we\n\n D//?õc6\҂9joBvWTw 'kX.LN^ǭ4Tiiv܎}(#K .^6;m*ϔkSJPi爇7Ssӻk!:P'TLu:0ǜo<"R:æc[Bւ Kqycs`~ɸ$QV,ȫo6LZђ66Mh~{4WFL8 V".׵1m2&A\ DSuC BH0 1%#K'a,ٸ~;[Cgt˵tFeb=Ex|adOӏwn!Hzy*%;Mz#PXfkX-Kٽjo¼ZƼ īc|pǽ]žn/¼S(ES ,Tm BW:[_ƜC3GP5h5qL-SX'JRl +fFAix(BXu#9 3512>a9eGCc^f9ń LZ^glAˁ<|cйc' 5?%&' v?Z0Q ؆xa˨ Proީ(x/hHlB=ěAzuf 4O=Fb$zh<%Ъsi;M mRoѲ.1YmBeWuhr$RN|i51MITx ad[xp/%1ν+&+IZR(TJwONd +Њ5dt˳JrV?,Zp*I6U£ BXξ+0xYfw^me(ζP֩4*,g`L[߿K Jz);S vdZu.l!mZݎը)6bZWMFO+[UbZzh<%Ъs';~!1b/PJ8C-5EKV^L)eXR( TIw7ĵ(a^ #N }p/%{^J$-)z}*%gΏ &IXcexEx̣%XmWhe-Mh^ɖ6 LwB!,gczW6a {6gǏ59T_lK ^aJI3:&VvEZźBYW(MWP֩4MHgueU*br^Ug|E :Sڴӎ:?P܀tK ۫ ׂ쟟ٲDK5Oy4̜uٍ󆁬_ Jƽ+{v q&\xҦu.GxEڙLX{/x?̽V{Dy9oIN FLeв *l/xd" $-)zu*%g{=/ unehe-MC :ҦuCJ!`vnˢUdv6/ e(ζP֩44B&"`\.jA{jX3*#.lp!$;2+&"tanHbo6槄QaQ-M傱}yx na=eչH0􋻵ԇ"X\%lK|#PA]ZЖR ԓLR7k z}߬(lcZyZSВ{>&m')~>}*fyྌ{T6W۸Zϵv풞ʅVϳ3,R=qL+5fJ+ZzA]CVZ{U_U1$ZV MhչеҦu+-8{~YGm<ΐYY?h1r Y1v~+tH"\i#uBdP8u DIs/ Ubu{3mp _], KoI+S)iF_ʙ!+)tMB5F<>?Ʋ _1_'|8Z f Jϩ6@AG7fO|*H aJG[:߳tN"t-&t.ZJ Q& s 7Tʳr KWW'Jթaba`1t:X2P JϙXa:~C40:*[su14sogBKj!B9@OGh?5 ܏iݻԨ*Y@h`} .K=gajh7n#yWb%Qފyg9[ᄑX!Q L-dR9>w-?^3)%xv }?"X!ĐN%I0TO#ybI6+!" y)܄vH#y{)GyAn2n2I6Զқ,קԸՖGzk wli;sdrg64H-`9!v:Ncgc{lw6jMŐE'[Ng6ufC"L9 udCPlE'[Ng6 sVˬۗAc: ew.ZM0^_FݞIpYS %״З ܟÀ[yw6~@ \#Ymj_M&Z]BW"YL&;:³0&@N #"YsJ V썤x#WTe|/xǷa6 Պ!;_p28mb8}@۱pdneώe8ڽ *; (O!]2M`:!bKYǧFS&a rw c5*F)ٹÒ(M/͑G}o㫤BԨ% rPw1.™Ȟf.Q̃pN;ʹp7` ocmvLe| C] 8C޽$;Evj{i?0uB k:iq3z7p{CFvj{i1Ns _잊XlP||fJ7ۍ`:Edt.MioMDп58Z-{5a`ۋlpȞsy+Ʉ9 Nca5:poC`hD }G|O9; (}EMH402 9c 4 ګLx`d_NYJg̓pV=E'[^ڙ Օ_nIrQKlW8r]UP|6H=0*U/lfzG'5}$xbN+6SG\>FInL9Ɖo>Иk[k6[Ifx .J0:xȞru8TtXQ*AҎ |YF+IrFTʤL7ǕII$4xtʍ  8^~(v_-ʇ{нڈ=Ήw -(d"յ+ v* #MNITfԯa0n)jLOĞm.iYeYo*vM#,Y/͞vƾ ٪ 1>,J W6L8 fS/t'%t0䖘1ɔظ\U⹼fnU湬 b'Hܪ$= Zbe쉹ɂX*Q/q4lG` fmFY+Oc0}Xy'rI&Ð^cO!C<6u[1HM w@Bؔ+s5;{HZT Mx$cu`Ȩ;w; S RJ;яu 9v85UT3D\iWZ(PFlɎ)kdcRɄ\'ʣ۠5}.h1+ܖ\~m0; >@ s2c;|ߪh#8{"Ʉ\_̨& Ψ= P>lPz'7;zM2a:Ŧr6wѻs`sm Ш$=HEóvg$W.=BW jjzIނ =9kV eMkT3NC4dG+Oj~-z+2Q&fhQ)-<'kKY/;a"=ѡW߱I-qaO|>  ȠvE=:b2bI*6z@xP}Kv\õz^ĥo &n20vf("8N+!d}6gqxW/?_ileS MO֛dt.-io lxX *i&źTrbKc'5@gs"{CuM&ÐN lq:?^O-ΨJ89loM4[s=/4w;_G^zҭ>|4ivbv~V 7i@Nֲ?82ZvY0Aʾ}76SpG \PC4A3gb/͒ZmLqe^Khߤ r-o]F$D:K[Y eY.?&+C7Tݢ![kG[+lY@u7a_Jŷi-Z5akl˻ Nre3AO_f#oxԅ"վ|z֤X?˕#wZ#?\VeID0(pNg"6Yx'9`C;tݲ}'vb  + }pĬٮb\ C7l'Š rNEIe.ӚǎX$\cL ;Ta$yl3mtAֻ 2(#E6'MDmXּB m:uW( GXqCG2gޗP6#JS{x|u ڬ<ͳM綵qTJMP dL*ޯ.?Fx䝉qƑZtd[ixTs*Mh nkwdX׏/h1^Xz=tP -& kW`ҥÈw}ejf= =e#.0{{mMMBZ^^l! jY(قǻ ԇm0g0϶R^K1$,Fix| 9.k1gZے= .vhj~ 1˲BJi_7>Y@DnlȞ1c=10!n幙uݺ3 mu4aAlT:м r;BO=l= ѮVTF4:56ac|#}wvދV;=:ȼ؂kʠvxz{Sd>;f(7lq]P=Jv!56]kن%:#2!#:<RvV*dW{U!AbKt\Gd2CGiIf?P(憙s)ٝ/:w6!qv[x!>i EOBBfF`v<V:kB{zfss"!##lHݦ &ӋR*>6Ȯ#!<4t/ F p(5kgyY>]QkpEa5KXX>CyC:e"K-;)› zwb{OX=!Z0d` .{t-nEϻ-}o"v }߳z<0$WzV@; d etɻb5N7"@x%o6韼 <\~WXAg~sik=͇"-^yc,+jlC:K<͎aO +ȡ\гw5 P<< ,ɮ~/3y,)E? Yu4;i`*b^4,E"=ѵ=XZOzdz ܣ}, 04E4a9x}.iԻ_WSPz]0^m%L̋+n\ox,oD3QQꇕ8[U^`>AOWTAJZ=~S0 +#ٷёU=Y=:2\;#ad4xH.Ca]ksSo"vN0k#8+ WQM@-Py}`ز cD7LNnXޞBC3Ḗ_'%:؉VMٞRtOp`{W c{t{gEZ$Ja䆨K-cFD{bo3/0X,m+_n^tAe,xӐ>ʹ"eͯ߉)4 ߾TMIu8s"{7}E6zp4`Ήu?6:20AnN}EBoɸYof3 7obΔ }u4y~Od{J.C>epl*,R"% 鱓-߂2! 2DpSGڕj_84a`7DD:م75Ԏp_6.qM YvnqwvrS:RFLo>ʱ=:d[Mvִ9Dwy 4=S@Jw TLq9rl;X;{xA=! ߑ1ߏwr㰂hE9'8 7d𛍨m+1d󥘐m;gE\%im?پ36s,h]iᡊafHʅcRn]힫"=MZnl}MYS=BlNV"{,K`b۵sa]rE4q1 =ii<7u7);.#:QLTeZT;u 嬅+'T0T?D8p@lko'7؆[۾}|g<yn1&_9Tek,Zpd SagR-K`^}|g<1Ӂq%ur;<| Cv)R(1-[`dox0 ic MW SMGcȪoK UQmX-qvF21z"~2YASd])PQ>CC{oDZ..RMldڭ\\Վ?zx`l= :a$TN`d+FNiN~\bQj dY\y?NP/ke/Np]yo^=|W^TQk#hίxZ)($۩c~ |3r|dZ%-(/~ԑe֔n'Ո:{G ܘ͕__\f&ȹǂ1pυ.uLnE&ҝC̒h%UcEq?~FOs0l9GOPlW:'s64֋M6I?ŝjA{oς[*٘/PPǘюlX-q˵sK@㜬O%8(w3gnL\%ݫ%L]7* x5] 8B]0ϓ-PiQqӲSN`;<=Xpd%2Er* H-K`do&l+4"嘿Iy,(SéI0s{ޟڳK2n\x &xgb/=wdw<$ 8A[w]o>"r dl{`Y9>5C{dj.KK f1 ]0WL)Ɠ\}}\0ΘZμ׋(11`W-A^^\츁9QwS4U[˟[Oy14 WfXҐpSX;}#Q\#kaq2xgLh(ـn$81ȵ nDUvg2JH+:*-`)'.$g4:MCƵ¨1IV '2YTa˫iԄB׳ źrBbj'. =^$OGfBVKh$ڟ\QpW;w(1-ٯ(S˓2PXm")ig1S[@ʥ|1tތD[O Α K% Rlt0Vcٰ[`$۳PX/rj9^rQw%ºDtdClb>)U˲7cy_`CQ9CG9ڐO VVFG]D#5Nɡ]|r^j1Eh{v6:fMݹ#e,XeT{UMM%.l1+P а^N{'xX5Q:QHl0 /3Xb<09bt`$Qd|3 "QuE$Zze<{Q`Oh?9KLK|xIGB& ׎_#br dl;q\d] .sD2qÜ3UpŶc25v$xصD_ZQoߓa.H.2ҝLZ}g0w`܌'Aq޷>JظNs;KTPtBy/({;^[#0\Z(oԀ]ofϟ,y&ܔ[`^}g0g m`|!{ql5r -A>s*72E*݅iZT;q\U "d(GUrjA|8e\b̔>8*)-߾?"αӐ}!4t3٢b ojxmCxݩ|'r 8usS-lJhO @ -}: 7[}s6012RCAsC_̼2]J1ߴ[~" ȴ'27TJ.<jyo2YE܋b6u4q,H? \k,6%_tdȬV[.ѓ8G"r dl\~DO:UudYyV$qI~`{ :\7\KC'x;|>Ǜ&ni@ gfW|'^є--S9-ט_Lv6p f&tebUEb4tG Ej4dth9{dn4(:ʝ,*O+e_d/ WN"惍CV[B%p;AVjg7Vy~Mܴ(67]{݆v$ƻN/ST׺M[km7sLJh6ҵ^ 2g^+dJ} Vjg朘= sX}@۠UVLa9=b/Ih|"l= Nrr_~T=Op3u^&; DO/$m MØYjWDY Ĭ2YFrefryM`f^wξaX2?φJ`dmƼ&dt NR;33\9W0Fipߢ]{eU>ٱrB9AAVfW樲DAr1QmM m!J{zG"??+6N{vSmJ?zJ؊UjXyIC ioLߟyZ͕&s\lveRɗ8͆ihv X">뺊8c;\InL%tfK,p=H8m(1#SLDWNZ$ +1ClTMF-2tMThI\9Alx[tzn{ Df,B":{ <#$Y0b3;s<:pkh2Dnmhw} Oh.X4<)$Δ6.7|qɄ\'ݙc~UrV@@5xGdk{2`>>t7hVhRؕ8:@s >Z &Sㄕc/ %*7(9W8v3H slvfF\`-,i48XG.4t.dFѾiłlE'[]yƈhZ6_r[Ɓ&Dٞe}uI&ܾiPhו6eZ㲔6&~{QQD /=>yPwAIRJWg ;*LV~1W0=kz QAMӠd++wL/ݴ2[9tVh+zDLvF8$hFd0֕6>8lՄwCMKnwCV 7v 6Dpڝu_Lèi}0~doaH7'?J?Ay%I)])1 [h7*CawX1K*4@jme8ZvM4-J77$FhQ6$oHÊ1NhR eqlJr؏n p|qCfWp9 1hp@T՘K EI&ܾiPh3+m1%*ey(we$!F =åh 5؂}"Νn/3UPY28<#QU-9îOP/P}m{lgW2%#MV 7ejGcXwrlJ}1Gմ{HR_bKHr -@n˸ddv8CG;ֳtb9vMXW 5Ȅ&px鿏Ic7iprg9,lF/l~q|n-{ kG)Ȁ<UG:<@zuZY]XAP![Yux9 9 #V-Vx U@6E*Ó[NN6U\(ŽA,ve"pbIproiSf$nMjcI'Vw alnRHz.ڑYntʅ(DC%/OkDJA䑰%4e덀.vOAmp&F. s7:y{YƱ_dFr`L .u}t߶ <3ZE.uH}Yn"2QagAāuZ煤dxNg{=fZ`ERĞJ}f o\|oq?dv.5?҉0sڱ_(3 N^מ1.wenQRG8Vo.,z7Slf(qp?2ҽǴGGʉ Υ*?H? \PnH^eÛCmzs}l̎g>m=MTنMʣ&fvB)8xW"C32~@%0#0fюZLBbD$(L~Q-ÐG2`&O6U~ad_U! V@30 v5)ÌB39lJbsyk(V>< =sb>\L ;,#;;U徘kF+k2dQs)s /s[KÒ9>CGp5]LMQa_c"؏~&w&?0#%R*xL馉ϴ^pEnn.rw>-Ryr\.dL'>a*6̀BrGlàgݖ˕a)03ɝ>qw6 [Xj_\pP:ΞŤ'>koՏ[`'Ǻ(TT%w0{ &wvH,!}Y>kah/h>~4L6vm,-9.7Rfj05U =Oב7n`Iî$gx{sabiE4Ɨo `SG-& endstream endobj 13 0 obj<> endobj 14 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 15 0 obj<>stream HW% + jV);pfqoŇ;Y4݇:")ER}߾a|xpX?g8_߿+ptP6ΐ93Gb|5x8ˈ0#~A[I/#[3LUޡOdM=K9q`ywO8 g*GD"Y2~^[cm+#:W>˶ζcoі /-zW;{t_?aG!zvlf#j83Hmy/}~͞ B=S]Rho .[ʙW:e[!|Zش0?Yݷ簬;MvNl#~J+[?ճx}e3\P ,o3n98O,~9jy²^gJ!c.,/𦭄%n4D[؉w{3} 3£XݱeuUZm,>F~}v^7쮬Z.8ZGy2wyemyMv. ]2EW5Z?eh(ӄ⤧7r⿬oxZeղ(i|<Ԥ}v,|_}kb_WBlD/s׵  :5M|`j.'*K~.R=F,ΗY V}wCתs؇0o_cڛ-":waȍz+9Ѹպců/>/ Ee?]cPG37wOXB֎RJZ.gwS}3)6dot]mz:ZY4Tp,3~Ze[*pŌhKfYj癣I1դ̌mi&#o0TM} W[2T>wW|–JmF!< 4 ؤl0L}yw .!JYhF(;3$ %f/D=8EٕbGI7 r Ħ>g*OI%Bqܤuq>>3n4ag)K_S~!a]TwBHc M./O_T? og5x<0M?!3 R.Zvi^᏿Wbէ_>B`} ao|ŪOr]})j¡0+Ճ&k3Cݺ{p!98#^bF&DŽ7Ôh٘e۔?K@^tR;ԌۮRnX"|PKUgYm: ]w_,w-WR*1ׂ9 S} V@a0hM4^JpnTj1b10?驙!oJTАePR #Z+D[@v yg-Py+HGMx"EUU&A%0]E_0 O[!ELi,Y4#bv.eK͚/*sL|4 3F BBsT~iQ3m2w|8y5"HΊ1jN 4`Ws_FmXy2Cseb[ PBwqQLRF>0T gt fsޣ`eڇ0 A%,d2'_Ft7@}ADtO{ ET0"Q1|!/Bճ1T))c"0Bbr|H[ƺea[8ֺ o'`9aNDOR|4ڷPrU석ne[RE\s*9"0ƇކƷh]?= xsޠ]o(%)NGg# Ѩ0^=QtDWɑ :zeS 0Tpku$]ơ8B)^E2V[n y1$%/S\+B vhhGU'8HgA2*u 0HZ_Vz k|uެ+ز1;&#ty ~%뽋.F0rȄFo'~ H>cwlYY+0 Сl|Zmzgmy=n}eF`:SM}mX<6H&74uRŌ,H*r>npҶ뼼f}~ݎGAVzu.̦R YNعD,~~=}YL:19"d\Q/rm6l-,p e0?ieLwH8`E$ʌb44m*n|S<a&*'0U~Lm <'ْsᾮx}*)0."?, 5 +);*Í#̯R_R|ܞ9ϔKAu1j/h^Kc{Ilo}x?U%KO Ξ9dzy z%ş,o|A#Q1L|:: bSaa7Gx]xPz~ rjͣ@,. W(F~Ý2] u 3X"7*Tj:Θ4FXgK0 /ɼwtl&|4**%DR mF6?0/̫b)[z3$EY;i\k|jYdL. o.[lag@K)N,êv@%/j/x契O%W5BgX&tb4UvZEpI!rC2KqT FBkq6JKrpG O>B}ͥ8`%lFG78 C)1CFQ?KS|&inr~:q2B|Lc+ J\jfɭO2m!Vafۦv(ᚬ篣g|͍}R,֔HJv ~T?F Aq5R,VOI ѱpe42Ⳉ$=2x? sVHdP>0 !ֽ DSXM΅nYF"+$PNםU' L[o 9z 3(ٻW`TCյ8.{R[|uru迋ǡYT 4:ٛ fu/!Hd* `*bJiBRG;?jtܨ0_j;nTAnyᱚ:BXnQ9r~^0U}Z2WXW:![5S!s?ZjC= t-cl: >&%>BIUȖYpa Ap;ةbu'CD .kuW]^}4ԁZ9YZg$?OS?y4.&93br<3C-_3wn2g.,*Q* /4IRh32P7@Yr3 >/'ėpH#Y`fN8KINGiᄯ.]@HUE8y VkeN lxg;&ɱhUKׇYrOۖTUb e4]Hy,!J4_{Cn696zWl ڗ/!͑`QkXaY%'.nWx36xc/_*JqpF,gL 3tn<3O eP Һ[zT̓&o#ܟMzhܕhRq 5Xz{uSS5h2}?c(]V5bT".VϣAf "7?8Y0xpd2#Bh~yIG,*g!pErs>͕92,} N3 mU8N\w~3Bm!bȧS`ׯ/ gb 2C0hL!p/8Q3홻TF@2/~Gjʝ~ )WaBq́8rF&mWl8/'&C9A1%{fFh8feN2#,МiP+(^ p ⳦ɲ6Qp4\vf#`,6QZ3?pD ~B^MBɉd`p]®~:BMy 3-tV!"EpCQ*[;<`%):%CcHP+dXOt9. : d8gqj&lˋA|LGf(:5_Ot9qd{fs$]#rTߝ'&8X0’9 o d0+<_88yH34*2a#?JQ$eyeZ;\4s74szcs!^C%U$NA{)Y\|,uS I"Eso'@xJw"&Õɸ] P'ɃѷKfIv٩WX< 돾=m,FkM5Bcr^s)V9pf<9H1|x`G{ֲaCoΛ[1y0uxf"s[1pQ:`d[wږdǧw93&*"A7*I|?4pgM݄lu´t|YW&6*jgN㽜sqB a{H`Yq.E3FiU%F%ĈJ0ǯ2RysE8/.cosѤyybhE0*mSeBb篞am}!/nRB@F/.(Q/.ClC~W!Fdiu1y$L0 K`Bm5{lua!|=Z2坟qG^>gcr``-3hBq5+ht,%S9W$/nC-:XxP:6}i.n? )~}5 &#Amh`̱D V|+cz``Bj%Ce}/ 2065MP~TE6}[g$$u ?C) uy}g{=Pg>ŏ w}1ޗ.-e%ҥ%e])^L 1@@|N"itB"K¿(V {#:[h8В\q}d +vQ0u+ݞ9RFYy&pz g=ќS/8k5L$"խ5E Ί.S+Ykz6ݫ A9#><M^U|*C nLS>#V=MBJakgL2$B!~Z݌Q)t nq ŸR` qV#p+HH_@ם5rv0ۈ?9Up}N߮gCzU0phx IM% Mv֪7$t8:G q%=8NT[odï106ƾI3B#~ c|;Hh] W-sAZ瀌1.pM2!KR,sJsܾ }"j?p\ )a3?!*yxI~X'88&d22vk7C%/Z12jMw_S H(B%d&+%KA+QaǀQD_7 ~ |b^ݤPv3ГTɤl0puGyft^*u5a,Q1A7b*rWq:pTfU0rh-M/̗K\n50 gK{>iSd52`,Y~7~hIF#ga@3E"s#g*\`fSyQdk%T\L p-3n;?z.PLM,-z UFj0t%p T%?P`nҝxg\IVɰndO3n,(ӕߡn)B Ժ:ـl7f̐mO`3v wYwYFv9f)klvl]$]$GrCEe=WvMH:ve,tW\0>L"Iv;?/Efm9L燑rz*eo>8]Q][%+hiy*SWKɹ˘K H2rzIY?Ћњ4*Z^=0W^iR(m~7>0xl>)6+` %r(8՜vG0׼~iSD(:Qyð,~JM^x-x&7߬Ю4 #$#ə M <sfkLZP'ȠG^eҔ#ޥg3?)vۥui{(xwLzg!󘅺Lz7Y\s޳he%"8&flfm@br fͭ[4 %<=^"5P󮜜&^$ag/J.%߹ְUe+T3?=Zxs̵ed h(@n$" 9,V¬\2w ҷQ:LBy&7re<^$-QTHNA#U5e@"pUL0A185UbijzӸ;iAS!O/'oOm q6[,5p>s,ȊVF0MǒV_:!Dpp A^us A7Y34^,hLyɋR,!_ I.(5UsBjQy佶= +b4<#0\1Zjy .TS,]1_mMi| UZpvI4% ޴&`ɤ޴Y+_w(`ߝ"tU6 <ӄ67 б%fr.Fb{;ƚQ}gpE8o9߸ AZ'ވNgF ksS 6\~Z;( h @.wAbGK7" ]QY(ehSd;A2f' P@YDE-c] @p '_ 0wRE`33L":݋X+Q@#V&p!+f @P ;,Ɣ b-ZlE+uQFK"4UB*~X9! ӭP,0ņk3J8 ,?s7(`3E!L(6JasHQݴy)T="^I +Kp"Ϻ;؟fNK') /(XŊ#Jp)c~ uDCs?ۅ?7=ZC'9RYhT窵p1!;W+msZ`vC-ÐzvTO;? "~Y1ѦYxq@Z08XN̽u}UGxϚ*n&i?h5k&Ղn")3U9>_91P=3տiswr\,r\A#g+\>!ӇD g?S=w |nx{~'/W4v4~oIwPxc曞-/s}3vyEo3b,)y`)'x@煇N13u)+ԬR0x[E )b <'bPOl+_9|0U^'<<)I Ph )UQ$ Wyl>|IsjN+#P4ǕLLM5ILS͒BW suswruL4PPh("?Y.x0-c:MT .hy/)HFnB[ ؍wx ;!|8)rnkcu xaJX1~QF">%ߠJ/޴Mu!ӢT{o#wbx6rPx@,Ud]GIR( j>`~X&XGlmJCA8b"sp>k8A^1vfpMT'8 u'Y]/#g`fq;|"ˉ0DƊʺuXbA"NLԁ!af<u:Z?82L$|z;GV?{VRdr`GG 6 XqGwg 2&qP}A .Z2HOMi0!  = <)4q3eHgmZy@)Uou !U"$@9d>g }J4 J.GT(*ҥsW\gk]=p0,A6M@9e6wMXz Xoτ֧?ߍg!v-թE\bHUo,WSbb|C1 ߯`f` )@aJV`?`Xu@2g cx^_LA!NR5%:O"܏MJg3ŏ Puc:ַb[0{[O9bIMKj * sHn)y_Ƅ GGx`=*3@5-֕|k#eZZj440\180RkŢкfLxDū^梒~Ӛ£4 7喸^l/YUVUBZ`+` a~^{06l[&c$ h,P:+nyZ^.gt]{!z@* 0.ԑgZW"C"XRrq`z*JBK(gҝ*gT' 'qE+0+YAfΏ5?EU-a8?&LEE0ww!Yfk0ؗ+]rL.!M U6KWp^=/3oQ4ʨtz^]sΒmxQy'qhGUs* d'i,9kf-_{,`>gu{ lPS8isNwEbǻ,srMx8G[ "֎sjpao1` Vk2Ԏ 06~q}vxgo1RQFu<̭I sh"-mLصz`R1aתHn.C3-ݏlB5$;GTX- ``,]9|nFC)]Q]8/8Pack D=ugA(nu<ĥ%MNԈR5i?̀q ?y'+oSS|4Le6v1/e6M$B#Nlp,BKDbڤ0? Phy0 )wQmE]sG\vcFc~vC{>!IZftyTwI!m$o У=P[$yS㩻 lR z90G;R QvS5v)9s5itn86-Տ[Wu {A%΅N_*;վc VG Et.GLfg/\91rL!FTC%J6`KL]oۛP!ںЪfZވS?z? G3 .} n/>?(Lb9EM2Z?w9FQ4r(끔4-KUC>WP\9c**.&ND?Gz1MaVW4uNqh-@hu'&ΣZ23fp !HE@nZ @uɏ%%<,=GNnEcЛ#G}'%LKgo(ÊfMutJ'%5u""${QqI]k uh[O &9n0GP3给~A+DbalG4 c;j&A%(":M^TA{~~S[1DsE F#q߉P|v+Hz3ޅgȷսojט%U[zq4 0ꈌmR=PYH$c>Ѧk5A9 P%i"xOkq*TŴs~j2ceE0y:W?gl DGj]\ĻƆWhͳaD?uY:5NoN.:F S@OxWSd #<Bx zxM]jX8&`2_gVb<';>aūJ|qX0iJ.N' 6 ! *nɘFOi/ ^4a%YB#룸95ŤKOigxK/ ٚ~[oJ8=eg:tޒI8 4 &r~Sx3\Rr(u2A.axP5 0Ӿ+ @8ⱁk+]5o'i>"//1ُg C>EHCy 6uL%S`tWS%ACRPpTjm$1gI-eIiH҆Tww mJU}g ̚LSx/ CFpbIcfJ220h ӊ.8&T78w2eq؅|Z'f>؞ϱ1b"\]yhW^Pvd\# Yh_z$wM&)L"'w=HL~P9CV c+ :,)=_p帒Ku !öYs2a[.D 5/Vr/)sN&W nN&Z( 2>={`!]e)mH[kO# tyܭNxZ gڒgVu`k4@̭S;nDSոþ"oLQ3WVdHHͬ,ɠP̤gn0 tmAIJP1sV"HVh4g:Y$2"Kmj@D-yYP D it%iÞD ^ cw.=; \j 9ܫ@Lo5Z:LmA"]7՞f`.{1w[K T^| ɪ up!&3Y@vQ>rC % q\3&u=AM7B,ݩzë O9^PR7t9\'@~p  ]We8tȲ,=:@Wو]`wCӦSHikblB_e dgy)'2^ҵR t@|+7b4*pꀅ6/ LrGrޡ0"x ^a` c-/=8&8'?Efpkoe I_ ,5_p~fS_3]zO3= hCm⽇Iwi$܃{zk; A;-m$!ݼf1^Eb[}N\Ab!-.yVrZ$n b ddLb8BNiͺuF@ഁwπzՙZݵWهt014/]݁K-XuHpd.D&0 Z3djofϽHuQ0m|Am },\~GΡ䪵ưރhS;@vc6b(c#WYK(EX 4ov!I >;lSxD\qh؍ڍ` LH&'L4hIɓ,T{ҶKS<[\*J9p#&,.0ߣ"Ǡ?ws%b҉FUATyӱGC!ȩ pH`ޢŲG 09n{Kd S4 }^arihzc^U0U1Nu' ȧF]]jkUu4(*WG+p@n&N #7},/I, 0Na2<еLdi'.M՝<)yeq{P8,䝄))~FKh\g]; d3x[8$@WfA&׹ (URK4 ;˭-/o&B0q!9$x', +sA}h0W/^0O)$§  !jixvM!.6 uO!B-}=4VP<4AP@:*d1<uF*ܾm?n3ph .}^}=5N U9HL}ZҸiżP\c }POII={t`4:§ZT?G]q^*^lkc}p&(jliy;}9NBBTNMͺ7".d'6eon(6vR֏>ppK ^#:2=#'PǂC]~/Jw(b1|~DxPo+_BZ(9C@ȁaCD;.GVʊs,l_D bk :ቶOyiq?F6yP,Xrb j&KF K m1|?řfFj2}1.% "!O #4l8)I |'|y`;:z ֳvUb4~:|vC %\h\AhBn80XR| !x$c l5@/Yj@ N833b+Ho"C)#rFPgO ׿( xq{p}߿u z\I#ɾzPͽ㘊iIXTf xdAa\K1#|B㴅=v#z\7ㅄlE& Ie VʽG.l_`= HU'v(UV8W>J$as0D'q~s8 3LCao^\ϲbI$ubC1Sc31 v_/u>mc`9g>`#ǜ?I N]zQQ%Jrˣ3R N;uԽ=<]jg[:Vuwc׈kâ|L WM*Xһ":/b C̓п۲' Ȭ͝S/QT} @xBEB&R=t+K^+{,7ڈo 6o*,d/BfY5'1jsJ&7K<+c$,86,`a5ecl/Fx\P1m~/+($$:xI*w.>ΪR1>dYdIle mN|B`.Eȅ br Nh5EPOm~z*)ȩ9djKZVÉSє3+,8ri|j76CBzfOΈE,I-:V@hV$=wLy}Jh} ] AQXtHv u-!j]LhG<\XBCLj7F (hS֕zhZqhp (,%p?;u&#!s #$$<)$=X)QF¦;+8uJĘQa}lLU;~؋_hHGڡ?0MLHe_z$`,,V%b3E\xiSQ"6E @ppg&5+fG<^1c2VpY;<pD@Ng.ܱ$&!N'O}jOSͅ_+\`zmT#AWG݋rք{VʯOgP(`eѿN8uQpŲwxyݩHtK FHh@nTc[>twM[ iݔ}ni>-|(+F x0EhBll?dx 1\pK 5}xǙl]]`F *ށ_5x.BMhW~Pl.5:Ug岽vIk,ay\O"1ضZ䀣/u@9>{s@AmBX`xN.V5xgѓB W}m0 ¨ [* 9@ ш $4/vbw5$+e߸U{$> d ׌Ff3,FcUQ-1U 4ԁ[d5zMn y1ql1>aY-Ǭ> /. \4䉚E+/>]ҽ>"E= ҾBȉL']LNh, aǾFW85{^kayd>kӱJh؜~xd7^O?"H&ogl{}Xo' z$3IÏ~#+Iq"ѓ)w$LqQ"Z6pMiB ҷEvVЁe|RpJe#G{6a;ȍUD;[e͏V<-l.}XV#DlDPz(c$p`eJ,4]JRm"a[O۷K:Dǔ_R菉e:#mG|3axGgW6nĈUgpnp ,'x|=*Ƈ23:VaG7lR~{8/-LR|> C__R>d?+W=v.2]K1M,L[_ w:qMDn9%'|GI0IQB`$ŀW@x!>TM1LAQУN'd@>]yVHx d@|YlFu9cz#etlꀀ2!ӄ,%[gH;I@ ntWA熉a Mo46!`g`eE^#,=9ë-%^%6\z4Cq)hlEG%WxP?ﴊʶZΠcB2_7Bnh-Vu ďrI.'u5'كpE)_K%Z>)L3 "bE~@ MdiB)!~XsI7{K? Opd~v'y;d ͈'&>[2DԪw-s&̑+(כ\1 iĭh&:k'!QbҘbHKXV?EF/F_#n@S~aF`ك.Voh;&0ۻyL$dЕ $. \."^y7z.!IxeW/ou|vʺ7$0w/  zaJN@k]EHved5W쐨.{1EȐ/$k*pI߰ Pȅ&Ⓛ;0wFbNmf0p묟Ά;X%L6tуSHqMcۯ>Y5r?; :F@)LP]i&Lll`WJ?Ψb<ӣ}BBf,y%Ǖ =:XϦE:qE(t0 ʼn]] ƮE3NfQ,ڲ$HUdc^"M$X V@:G.302wa)7vګۚ$@| c,(SYO:8#喵=m8Ky#S Qα\'Q8E{3mǣ撄#;8vp 7㶍̥ۚ6l0$`s1c"<)s1Ç0  I`gI՟yLT&.zWUUꐄqϗB-=xe-M-2F\p `W iLIlwq& 0 1 @?]1^l9X?Q< )[N@)ekfXR"m#zkEvʑ1*1]ߕ`p6\\vICb.-KOgX9G2QWJx ]`Pl)Ч1nVw":RCZxd".=ګ$܃em?/$\{0YJZQI߾K3 ?S;)E-%-IW/ܟ;2̦? ėƉ f kypۓDbAJxǢ2bj'xwAa 3la?iI@dEcڈi̐L>*lO/gJkZtEi4(k}s|vZ[Ô <QѴX.ogVpK`yĭ #i.#Pgd\:(uN.9K:M4d)B+|1~rcD!L˙2:IΓ*8vfJZqϘ.qib/";uJM:;,д{[ x Ja1 a>|8{7P1GL Oe@H1θb{FBlDm`f=e>#7kJ n7NeoCYf R]ʀ\=%Z=XP:,umW1XX*>"Z,u,uPXX%lb;5 k;¢J4FV~nFpyʎ`eU^G"`Z'ٲ6͐OMr~n4 g.qbsv'상m[>I_sRr&l`cH"r3gh+|pO\@ =̀0`T)Vfӡl _098#K{Oݑ\6t1t@]`~̥>B~xe$>iO4#~pѮ-Gl2}+S Š%`~  qddhD1jX+#OL.ӳ,:Xs>׈WxqY1vcQ۷]8=x7%ڟ┏zԴ@ⲏ 6 cף/P`wXc6kc#LLjc% gazߌ "GH'!}g!wGPi.|pRU9 t~ήJc_іJF$?1${^Ҋڅ8 Npg$[{S4l㔽gHy ͩ/:P)r|(2UJC&ɔf,). B^Y&2Cʓ/܎:}l @>nQjO0ܥz$`c'n[JA"ޫԯhn_Ҁn|e7z0JGaN 6\J>DIɭgmC'ӕ e%Bs;wK. )-p"g2@ +Q(4Qm'θOo y))מ?߬fѡu@%7=k^!FL oFaayŎV;@qmbw\W<)ѐW?lZl Aw-NNZggl1_NOœ:`aSzǪ& KcSxK>H9v^bX'Q053=7xx_K36;Ǔާ lx|!-3K!ޱ;>nľb XqA{"7dW+K]zAu˯~[z+vc[ڡxEXl؂AN[j9]x. __݊=OzfdTt(w9ab+!PǶ,'3lac@_vlw>S?*Zo@2s "E9/CE:W;vHgrŕ08pfyy^厇s&' FF;n*qbȴ^@;+).\mNT,*:#d$f k  2g%°9k lhp*&);I(&m2.QP~r3P$2sF ~yY@[at[w@J n08N?g9qp2$ߗ/?ƴ|ΐ_)U~Ydf"D W.?Hr SMp;HSVlHzߔS h.64v4KPZﯤ>ڏQEIIve(j*@pY lHl-I\{O%`G%-@/6ߨSiDyxH7`@ˀu ؘuJv~JF >¾H@g L a˔htpWI`5(EMnfR_:"o7f6S 9ҥL$ Q>*ɟ_UqѕD-l:vPf*T<ό@r-6N\ǝma4&Jұs=1u=vx< tcG-ʽu?uϸnrmJV@OC򲀚|;VXÚ`sOW~iwǯ"I9\oZtU8q_ 7 э6z 8^`4Dw~%ju19vR8@堠 Oxj2pj QmX"3Aך]De7ۤQWlܩH>ǎ6im]=rObh9O@&xldla H*wD [9D.@Ulj`)G\h /Qլs5V{b0f^Q"0Cn e"OJh[_P;4lWɏ-ֆT+-#1tm& uȀ p* 2^}-z֛!3Dͺzx0V!@lo`5J5c'SF[ao P\ |W ;la Q(p-_l QRۖ#PUIqNh:d0.uiu\@gEϮqfIK;83afhԤÏ-Jߘ(-o`wNFA9yYG2gX/V bШ'#& WjBJ=Ðg⾙sw n 驏(@aH6}=v'&.҃euw݀>Z hQoH ~Ԫݬ:6Q ~^'1 eݯC^ꚜpElM˭")_^>;Yn /ޚ(<pJcM_kn܂ O K{<;p];pͭޱs+0Q5 MMg `;I \rwd0>W` nAqa nIXU;n ,uK"pULkF?5V@U.hxܗ;Tm'5c#Dxvgz6`b#[o`"WUp ]b0Fx+Rر ]Iԩ&z@`>֙jɳi|-Xu/2iC}3SzIn'˥v5f#9閟,AIF7` J=R,() E)͗7BVxP,q 6d X52R)8ˮ֋w<Z8ܯeR0+;,OإzZPPjB2ht)%k/gILQn66*=FMaOwdˮXլoyBt[$ϣL6vJߌњ+o *C?@nYQw?HgfLF AAoqV*hSYI\:Yߌ0u":>nNJӚu,]X IY]z#rvЎrK>%ӵ5>0{|VJ)MDnGKE)rrGj"Ov\#SObkdVn5HMAH!IcU j?@ф(~dlр ;v,rXhHcct)y(L@A?-]!;Jj w)@=7^Y:ʹcQY$3'SQP-4EntaߒDL<wq`alޑoJގH g|AYԔ7&گx}Þ`@G 0AS @&pQYER* 3;Sk_#nhgBMm5?eZvnJ@yx/ZkRuY b":Uo (-F锗\BհH\Ul1Y2QXA S, ɩ\~f`@dOZ,F9*E yCh(Io-5^U\ JH'LȔnstއn&$ ?> aOʌqyfv >`@}V XJ 8: :pnNC.EfPbC@$ |Ux6(ӯ 0{Ha"`-04(dK_X$@F?qKO nߚF/)^UmZO}.)ɲg\ ZtV,H@y.DEZ/r XTtGja?ʔ 4[ZkW\}# e6k$`f U.Gd>蚜^k8E,j,fR)v̰&,{pOɯWkEa:Aqq"{Psg V,_7]~P}5psMCl _+O[TMg^G>¯@U).qtpM dhpqz5J*Rr* %o4aLƍıd,tN1q R x*7m oS'x=a_ի}gzFo-DQnN/ P(.`b98JÙ3ZO/[Mn+(h FB[HxP6/7j̀GC櫔u^'<ل 7ٓp#9"@c'wD;(GBIulQ̄iL::5 jB>|tҨxX'f\ Frqg6x`X}xh́YH#8m9z 0&եu9o1O=D&op *) A'T^B9d1-pU~\~9Aè[-<%  HaÍ.zGzMT:!h8'oo4#Q .*OvxȉdY`lbHKG6x٨C#Js 4RfMS'Qhlɋ-HILO q=fjt x\[ l:j9^-=Àp <:*#Qg?`1x?k'@ t 'kTH*tmGr wIsbAچ^VҠ*$K C[7Th9lxeDqZ(: 6dˋ2x0B5;BI5èpd$!OPURqUۤRR4N 7k*eg+=p3 EUzМQiTzA<1E! 5¼IlnQu|4'nS(vyE-*j:iK ۉ/ā)~<3S*EWb\ρv-P*OWt:4O ؙF{mFm\#ƉcF>sy.F˾~y=l2$4FFwh6h}Hmj32FȻGd(+NTϋBLWc7ϫQn젶 Lsk5 S:ų6O?WHD$=0hC"d8|xt[ˊ|]?P%X0hЊ+!Fp#x<58=Zt|JBH"דd8TsBEg?} 2-3b̀[B>PXO?޵!5Vsxg r$#J+`{9‡ 'wFBCO)}H=QM0'd J <(?ޜjtz>I^#EM=& }Et? jFkU:eq`F}DOҸv@v, xkĞ;:V*xL쨁YOE7P(DjPgyЩakEDxPoM5b3 _'N;(x 3ڍI 5bX,a{U!cLو)L;LZM A8aqc^'--hOޗʸNyN`^O6sz\|ڑ'l`_UMml N18ze> G{,èqV(.>[nkK%АّKR4M}ğwr#bhUJĠ)c[tG4q 었*L)1[Hz$['ULtI%eb#/ظۦ1Y]#H~|=& 3,T6;KPFkL#AziTu*]][t Z ['g$neQE D(ވ۽!HT-a[R0FINK z1A=c_&ucD 6ANh ;''%&i -yAk3\M(P1X8zR6M-(7)L ^,_ByYGOh Yh$՘Č K./AyE$^d62 B"B^ P=Mm:L+ՌOݔ.է_4E$C(\4|"jm v`hCVVp9 z BX#^Y!pMn~=("J bݖz 0qfϚPUt!CAS^I?Hӹ:o} ψx8!2WLoqxO$M}#'Ô00zQZ"lU% `+hz!< QhO2\+>uD}TaB-õ8'lUTsŻJJkAia}wAvO)I9•AXA}0%<.mğǽ+zgT $Yt :_ JO cOűKG=AA`|Z̟. H/bB+-DHX21q`:#' )HuQh2%]9ި&]!hD4" Dhpy}i=@HDLؾjn]/tg[H1Q{] 'gj)aۯ* ê4]<#71VyPiD)I`kT(<( R 6߸:KH 17Yse )EhWAކ%.01])! 0Xgu#?'tDL%DN$`UB[Hh"Fi(,<8=YVېK$8[WFnEbLKK $["hz給[IIFܞ+&U@Qh#w2`TwrҾov"N*oGFe' 7֎ 0?g]D'ƧΤmv2ū9OX2v 4[֢*< 7)S`[o0(e@{-px-#6^hհ{99\ۄx}Gq7y :SU!/u`a؉ 0ק7dLqJ?SE5%uQBLsɐ%WL?~Q$'=E :"JPUǛEDҽq*Q_s1f iPQ{/j*nUr%;lWq4 ԾɁ%V*eĹָ 09O*3s鈣kF:#E@1U9109\؃_PbG4gY8Txoj8F?1UDo%Qn2&j]jw.ooNx@O' G o%dF[Q*)pQP|Y:e_qP0 K: 7=r:@3ByT\fJS)Ӽ tLeU~VKk Qrem۝\tmL;S3PmzD#uH:@a5 B̞1~) x Ĩ(4hPMa$\d1vERcNn=ׄ}<fx#&* / ,E ]aԓ/n1FLz w-Jie)31?-]=! QPVHF2/ X 4(`dWa:#`%s@p&Y+~sNEX 5K{ 1s8ڋQ>WE5Eѭ_=)_ϳwO>)ka' VqsY*lA#$L 90\Q/,[d0 "Gp jG=<QE@(aFeGP+0쓂2lV|,8q| Q;G5tʲaD. 5*gV62jE{35ѮVEG0 ZSeX53Qª<.`+VW|g qF4{ h!Rz>>QddHQP补J.ql+}_j?̓,0@I -%X$y5ҝJ(OeB+)0R1*EuweN )H`v& uq:@鴢S:HP nA  .Qͦ]y] 쮁+aع]eǚ|MB`Mp?dg8 {+tA ͭ-Qn*u {bL/ >IIwipы(cj3Qp*|C>OhpZM_Gg92XtM}jBV,w FJX \nK+Za$`40bnSB}ld4͘`t(̙l.)]z!n s4W6ڝw1?{B_E}R7܀?c gv:pG,>~]]Q0Z3Vh`& }4n106;]^λ4(wQSt/̸b fR>;6?6% g|itKjZ b[ZYdTu"A@c4{6#Z$QoQ@)  ؙ`vj~Z bp]$ QLN٥~ص?3Lc~yVDV }c9tqVQPB`/ Rfjہ ͷ|+ZkQN'KNNࢠXiC`֯SGR=#Ks07'dD(@G!/)s~-Pw:ZOAT]#CcK=8]:kc?7nOi|tgަ`65v+~Иj@HP$RwF6y%aO0 `tw?fnR%5l5tJZ)y W Z 鯍riE@.J۲%AEš̾-4`׎IմS`~;}{ P;?" 3+1vIdWIe=i#pn(BP硙8 [2xJ4iڶ_~>x(D1Edj l˸4qo9`L'Cِ{* A@zj,ϒ }#iJmaR .*=doSp[5˒[4yD` LR)8~6FD]ʌ\;Rx*GߓH5"NLR%ƫfZ8It} 9#0v=)__/=Augec։i R<®%M3Fũed,QC77}H4]aWr_ m5m!/+yp9E{짞ƥ USRг%RB",Zjmݔ{``@*synǗXCV=@ KjP(h`ǮkU :PJ4HiyZlWuX f_`w}K5ز!`P.Ȯ{1@(eCJ PJ/*$\:&m2 Z-z~:3hQr32~v|Rh"zVZ m9)8N vP4XX0Pc׀av:=u_XϽ6'킴 w!Ȣc%$GwCZ78kǁ':Tl/MZX/`i\Le8!b,-*x'N}oH-r:Ja{+='_/rY ݀g/Es$@gQQ  P ~̣TiNr!@Fך:ڷ~mP|HD "NoX;0Et>0"UU9fC-nuБ7$² bmÚ1^<Ȍ0J؋KETvc|!ⶡ V;Pj>e4ʍJ1)C6NDG=sv".O8r2b9%\)DIe@O}+1`E`̔@O m!ZF`䐺G.=Zʖ1n/Z nеB-h~!^H@Z_\cs Fa x~WQS!1W\݈JEڭwB0q'-dH!3JBƧsϔ8EA攩#L6zK+;%5^[>$irюf+\Juf2tʶi1x]Rnx~b=r(zg1ELɛf߮FDqh]Q[վO>g~kI{`z2۞g^;пϔl;_厯;Գ UHu+ۚa/Lݜ vG<?vrRм}=b<51V+sl"oKsBumIǖ7*jvv=gj-1M;zl7= _t0OZgZgM4鶆_#侣ٖnݼ@X(\JӦ Ċ"]Vu:*GN 4hQDF@ȗ+) Cӣ9N{(ǪBǴC$|ļDQ \~q(Wyo=.EٌϔYt6׵BɁ\diwҸq&@#Lkӣ&|'ռZ{w`  MQ~zܰS\EA'e01([sP㍰s M\H(w]+S(vLINV]H(]8Bs&᫕Bj/Q8a!)bfS"1JlWdLP1ŭqE*t;R|U͋&";$pWbfkxZ>u ` ՉGe-B[l)Pa<%gh" 1s4 9Kcu ae.!-DK8!< A\bǰ3orHĕ^xV+'mWo,3= t٢_bxgFx`0CKa/״xez(W1ғa_3[V j@G1̓u>K#Z5o p90>iN ?oZ.#kc/\7Oq١ͯI_wsh'\[' Y˗:o-ٲ`)cX4^ޢC/ctKX ct6־5Fi{;p)0ǽs^2VAUt"R^ ~4Cgfs#VolpA,bTOޡC_&[PWA'1rdzN76m]؏BHjKNґ?& ([!z-8D}WT]=`c#I5#OB>o aAmOq#T!݄xk* 7 L  r Cr"zOckR x#쀈y;R|Aª>ԙ!ʋccXb_& X;[979K'%(, =M,N0-9q)/q"F=QUi \&_6U%Z. / +Rkw?E\pQV͑K(Z=yFVy{-Bs!.Z-DP Z-' .. $`<ړ:LԲV^ĝ<6׀Tse)]د+!?jp(M̖\&;bg 7]JG v&B4RwQ-lIاv Fqya aח.Hw9jsv\Ytz"KO3"-QZų|y:yJ _zNAH-_ioԣma٩f1 d&=c -۾[Ur|btKFĐjf)O Ұݣ' 9vhP{Y!^+1R ^BP * A2 3e@®D#hVM$Bg0snN|\BJo !4zI 2꧷(NwfQ(0вD?G)Q)!fMuJgs(~lj}gvEDaߨ4jasFrLo[+(]TK |_ ~C7}:l-? VVOo9Sv3u&t}LAZ% x'1i\&hH3@;A[ʯ"R$#{ DRvIo'L\ns.gE阀n ]I+ ;)؍`?^o' t|k 3hqfqx\C+ 3X1>wIVNCLsnO/ۢ[ZQ/DUE'<逸8 wQ(IBḻ۫NQ{!KF[E^@0M{?G]Ѣl0kTMBJE%VЗ5+<H[FK{D݉KNNjN`';E%$| ~P`ҕW`|<ץ~zI3F<`~|J8.*}qwlP@Lٯ]t8|Wes uTASC'׎̴mx6`خ(*@ q '2R ͡ ^tAa s!,6,BZtU N(堰v9NQ5AHuruƓ$NIkԸ"P# .pqׄG΂[19ȏ{%}KRzt;pM#"xDZ{TdxvTwZ޴$kPhPP`O=%w~a/%`r f9}@mC. p2iud @F@&hm/EpL1qƊB?gXH XHi?SDqr.iZYpQv fJنfg"튝%c +hhݴR;=u- gɀ>vFѧɀW)[#b-M(lYbP4LZIg"튲*c `Ok(DV詬F @ӜQJ+T[Жr>0;Vè@eH h:p^߀j{C˚3&?W;\cK!^BjeMJ2z4Zf8kTx6jb_{DM;3̽[HFԈ] *I. # -KdLtILJ=Ne{ h<9mzk4(79WN?lԺ06mj}'hwU/ilΥhbˤ'f 3b'c'>ܻlӧϕ.c@D]j讑y6lkE瘵兛V%{zqynib[,RGs6V,hay<[w7᪼4v8wM>ن3gϒKL{,۞|t}ϝPX5;0D`g ʊviAUҲH¶l+5 GA+)ןBwGxhQS3E$8tqgf^È(vӼom4h,Aa@g`8%CÎ Cf#bJOm?l |jUs ~ F #$͆O[b8}j >_l^!Q9ÂdwZb8>hq֚p LUD"f/<%ۚs x7wNrU^/5!K⚧I: ֗P0}쇇Y#L ,N\): ^<,hT:!nҥ(_+mw2!ׂ a;5H򕸂OA.=d<xB=o4xXhIB l(rSЩSͦO :w${5 k}4QqZd<8McL:,h6\.]t`>!vꔋ3V>(vb\lcPQr>Wb[ Gc@3S)EɮYcp\yƲ "X!G0COE% NErhj) qE)j?g FI@R .#`i}~J7a+^Ԡ/6fK,6}T}j+h֕=kk?,mvD:6NT1Ǫ0E챿 f;sZW:!-]0 mN]%E!_?Ċq_' 5l:vrzM޻Z@)oFH+`6k&QMXL:4,9ܱUE|W-jXG: 6YPt1-b4H=4FXK2|E@{S`գqw)w Bjc!2c7[nubulB"G6,Bގ+o{M&/ }np L!<#?cОB, ; yCCAXZ~n-oC2f7e{ddQG[fc{'U#Ge,ƣ^\+N8=֩!ytT=fU_3<3_D0p$n?# N FC21,xPTȿiIh4Cp98LI,d4yK$Ham~3 ZQ|msze/ѝp+2tKQP'S{2 & 7Noȧt{>B(-~پOǰvbkY CSMX?7QYXsb޻IwS7 ^Ia\><@ &nb0yt]݂ (IA`R5S:8 Na3N''IS- c*Xf8Q;v!\Kl36lq:xH,2S#}m':mҳܟWRA~^EPBF#"?U@j!wGe% L,⳽ LR|l3L&s5 $8TOziആMV`N^h~ڧG74#)'Qe0iU>b9٫3s+ M9Y81GUozM Sе.&lm?K i_Y nNi_XT/mh"(gp>>.1kv?>1d@g&pPi؆^qr]bi0tX9@i\\/h/KQhs!eOM\"dŷ{&0TQ?QG pS Jĥc'xԘܽTH b^e.2{TZAƓ`1aqWvC>%lqIW8FW "w.*b 7 +߮c`$~S;< e$=#aA@ðƃ]1 XM#$]Sa m̷ohX-wtg̮QX!MAkl]7 'q"m.3.}գ Uy&%63b*vi.L! DriDF v/²]!FX k+9Y.x@]و[5F%,(^ظrxx]B\#l+zGY^1QaK!ua3s]f N "~zĹWA 5XEܛO5Js-O]\7`=){pZ\ pI Z^M-6_DvUf˻:"EO.aW]mvěۉq ?ᗛ⼌vYC87f vSA.7uB1xnv9pmzz:JxXz3?6_I4sLԙfHFLBV68ufb%ѹwBc|.ĚIyR(1D-0-plR-u+1H/+qES鯷Q0tƙ Ez\KDwqqX\NbFp= +h4D92(LmRjs͍FׇCbQcqށx;j/dd5!~>Qf Q'fE;VEXBfYB^BNbB 4VB/ 3V PrO,K GF,BAXޯs[?V;N%\0*ɩ.ģ ޒ5@ꍱoDD(?Hb0Ipn^bhHBvգ];/{žH\z{+TO+v<G4u,&!up =9:q$5A}3lPn:+VV:QH[NJ`' {=+K ztGEH|u|gaHמs6\ejj}Wkq' D_"+,}]u k ;"\ 2A<'֮c \ 3!ƍ'*{N\ȴOdYR6u7+x7c ZۛLmB ڗhmWC/1Y793Λ__#IX̼Vк|Ϣ9'Zcc[Fo* Y o&AGkYl{Ů7yIUB҆-GrTb%flt5.bCo_YKcBM>*\JtnKI>dm)f͚m>VجV yJjDa/XakM*|{w?f+ZaH>^NnGχc-S->hɔ4-wN [ W鸂S!'(K(vno]]:6Zk^* sݱU?2S'aw[qXu()?q}>%s%Uk ZGfς! &Ebo6AnnX?ѡtWT TCǾ~05 M>.GAC7|s0ٸLE1"P)8ᯰ8_ҁN.^ ]:lu44m!P_~i'Y珔aYcՉi{ p!ҜB;)F<*M(V  QΌ.\4FkW S:g^tͤ"d %x$NBߟ_|@Tރl}goZ af-C'C/3,B<Dg,>Q}mk-KѮYk[KuL)b}[;s«cV詪MaCw 1óNjKz*Y_lvxuk!z kjjd" (u);)Y1%(e+ƄsdcfG#2 a@}oItVǞ(F2J c?Z`ɌxۖRVFǻ7:xTWä8op0]^*7X@\ Ղ.-ӪyK2PB.7xA `Ō5g֪Uɲu+$vj˴2t[)8Ε)E_$õ<- ח /̟.ౕm+u(.map̔ Hzpjr>mR"oYӬѻ럹(Yw0eyue9ݴEF>[R)wɘE$ N"x/"/"~^':D˭R??$ݵb\TC˒Y5DRu,u(DgY^Z~F}?/6rc ]D>/[94BZ,REZq f˾zzԺ[M۫T-׾L飙T)I\整h*cgqī8@P @ϥð%V&.;,h6/7`aT8zұ.7Jj w|>zƂnp owTdzTGKmv9#95u-p3^U&hyzpX[j}4 r!mq]fba^گzOUX:^y|KUеx>Yie4uQzCC>i|_ SE:21mk>lqk\б?a]ϡB+`)ʢYn#N"| Ƶ?Jˊ_ju'I2ȮU-KǢ˟/QtN ?ıC6վ!ulctzPϟoFHJ(^%^f/'xxl({پOO3Uk X5;b Rcl>dwMՀ#o\px{޴Ѵ %_<4 Fc/_#rR0H G@8 %]rOK+4oԖ9ڋ#&H.Rvd Հ2a}u8㤍ʜTesNS=$tvӲAYwvg(P_loW ~+7F VQcwjŲHeI,Qs69đ6BL*nJuYs}YKd`޺;% sV]m7\iNM+NOIɤuaX(C [6e)z}Cbz~4 20T PNc3#I:)=PdVt?2eoF/V T եп Z.:?mO1~:cbvK ]WfMAC;ېi 0xx d2MD*uF)e~] ;p-H,ulڄ\'ÌX I?cv؉{ARr:W ]cC`w':( SPA2UO8q>:aDzy)I[(luL"%AM Rp*F-]ER[` ]JCBﱐ0VL,XRH:tYS .: xT*?a.7: 63N]˔+|0}^tr(xGN.aH 5d?m?!y*^9M:t7#kب]-W[{4Cc+V͎\to)uAM"2O9(%CR‹<\B/DANj;obM)-ޜ{uE^lԜ~bBË+o.7RǓsT/!Y֐;þm.L Ju-t#zIh kF0F,m!44BbNsVse6HV}5(ZͶoȼ%&1 j#$hehhS͞eL{K4K?s'k,>4#:Kh<:-~ jܻ:Q`tV9X<ԡ{tR1$$U#G endstream endobj 16 0 obj<> endobj 17 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 18 0 obj<>stream HWm7 W/p~Էfʐ.f[ߏd= ,YZeoI~}+]\犡zR~~#^~#]}W^1|BlR!t}Ra+JBZB?_/pZLJUjJ} 3 qS1NOsHc6Z(;a*ٗ Ws~xof:ac#o3YB=sf׿nٛ=-wQ}ƋX $K/0\06otS}گawBn/.8Bs^XC 5{$nٚ?t949UnΦ`O'za5U?P=_!N6uoK1%'&;ϣ,IMyd?BFU5|ϸ9WxK8,@MY}ҳalއlgGK10\YɭYPZ gAvٰewwc޻GtilϢ݄4M?$bt!g| Yv8zN|?ݰ5)lߤ,2_6i; ~M,y0<+/c&| :6Ńo}xx5~ ux}&~g,|"+1Ux5%ԺsDsxsߞn!P& .4Qe_k6 |o)xр+Es,* #: ƀ37woXc[a)n G蜶ه:[WHkG 3Cvl:̓R$3=wuXacHs JP5かGa/B5Ȃ& V `f4f> &`jc@ .1706 [7PՂFb (/U>T5P^|`a/.HXbқ|8!t&`jUu@kp ]^l`hg@CJO1.X*\J* SN3›!ợ&Q ~c~,|yH8/K2~g(a_߹/KS}M }E*Ў5|<0+gNHszՋK {,|_ӧP}<0 =7LU_Ifvq5>BZC㛪+|(! +,Y<%+*a\Jo֓v| dL&D,Qޓ(WpDeG#t}ωOS7EU?N O/ @y#kJM[YʡAѤ ˜&OJ' 5 BXZ;g- Z=`q0e z툪Uf2!j*?4+sp& ,P6<} endstream endobj 57 0 obj<> endobj 58 0 obj<> endobj 61 0 obj<> endobj 63 0 obj<> endobj 65 0 obj<> endobj 66 0 obj<>/ProcSet[/PDF]/ExtGState<>>> endobj 67 0 obj[/ICCBased 77 0 R] endobj 68 0 obj<> endobj 69 0 obj<>stream HW- + z?  6΍6wQ|=3SEIHoϏ_^COJ__GDs}CWo)Ė0c%]TbmHЧ׏/ -x u%*5y>BYtT1 qucc>p"/lT> >k;}-'a>+T>_BWBP6fXmlm>Ky|#}a$la&{ l=Ml% >F wླi#k썐nL`wϱ܎gUyc 唓fh_+E?8ò_v4|}vrjo:<9vUח{H: U?,Bd^u܃E nOyOV L464vas(x;wۢͶE|\YnC?^g7oz-J/p[\pZ Gv8 c ^؛\\EWϻ=iDБ7L~Ͽpl󁏾(Ң&羜&Ǽ0/<`Ӈ&sAUi'jf*ㆋ!n,W(ۂh9p\; nM"wA[u[xxld/!$Ozq] hKDY{vUu5D@WWƋm4{􀹠*ςشBTQL&f(E qy\3n4a/Bk훼bէQcoRE4C^*?e &/iyKBH.,o_o7^0dpa\ƒW/.|x= ,U^SzO >B`{.`oU$]wKϢwÐ;›;ZUs)Jet2B蠫mBm4% A(Z K0ΦOOO}vk(kc?n} R\fyAtq9/=nFc Nƫ$ C_NQJc>)RB?!lw\S8ٵ3$4UyFudͤb0'K-ӛ1p3QEV21FK \e!c n}.d%ڵ2ۨpTRDoj$H"ӷ邓cx: HP%s*@T]ҬGud 򚒑y2S.y:Y`|n03}]d ڎĠ< "*ώ62HԷX eirⴅ##%+ܲ#"qthseRF Svڊg[[ 2M,]/HTW4jO»*kF;= {AU&?uH|zfzeLk 03znH7Uig 4Q /u:dBn6#,E%hp Fs$[S5^~/ƾw*J-4˂nO=MIMv>"dN-RhL}PlL84 9mᑿ3 9GwT Uc;c`F`wx딸%fAKn .G)竐PM~S6^z>x!(JNς35h +_[M^`{7A?8=8ok"Ǘ\Ǥ3z\ASMS:-'AGYbRNYN>À;/XĆ_)"Xh _@xShx¾1a*-0j[ecކA}\3I ΍?'pZ5ح[-|N1[DO>T ~2%_c² TfYݯoU|g5Yla,6SE+OTvM ֜EAی,8 l}HQڞixq 1j^`evLj ovFmncgG1p2 =!@2͘1^I8*sݝ; KPULh` 2qC ^Vo7Cgg\U2] G&L!55:NbP 4!:ۑ \;I 5 ߴQx^e.'7hRBڗ 5̓ ͹V s;V݆Zr~a rj qBƀo&㒭K}". zI:!G`Y`@cHM{ +¦ahMpiw?CscKk˜ρD@5cwYнGx (R$BNbN ci,QG;p[HC6(؀Cװu3\e] V!]&R } 4!Cr eI϶h&\ ʨJ4g?bh;sw[J۴t'- R[/3W.8,!$ xsaS$4/r7}$wy3)A(Zi<E^<ʃ0 =A!@Z;7)[E:)fa[Ε"uh|BH67WEq\1k/8Nn2ֺ4I͒E-?.LLq($_T-VJx\k5!\^;GXoc/hĈ.[nE՞0D̡M&V[Knz2Ff[V(pNa{,n/q ]sZ]xvP%^Zo(Ȼ}1H Lfb(pJ=20^~&imA~bD&B6Gl-tG6䌰3J+9#}8('Q GJ5eMkeH¤@K|I]Iwt 1*H}JZAwt 1HjJ$À0 1+ 8sȂ'zLb@bvŀ@%ba`Ri[ H M Rݽ(tFD3{ {S)Zp`k~%}D:AOʑ `D#"'ҝN}pO4--!a^;R 3+ 5p2^vP 1Z@0Zk $rk⵨ sY0IGtA  aSN:#ΈuF$3"a k8 _!`A+S)90~/ 1j^UA/v5-f i_b(x(Jt:٣:!wi~ Md)Cfܜ;M!ZM5*6|2Vf0ݣSp5>l}%HPb1_ynV`Rf|M@+G+OI6:ʏ-0#/Bd侶+oq] Dgvg:p”$gYّ/[IS #Mw(Yj7yҡgZ2 9mjVLEP8mlC}C/iC:glns '^-Dz*px(%;ƍs߾䏪{bVP$j֟0&‘L)׮b]B۫Õ9ѕ 7 j %!HIʹ#aTxҫNt \xn)3)CHpL75!"kvpDLH%rI3ɢlԚ85TeX=su@_r%j8|˂eS)Cr)u QdBQr}+\^"1. q ʥ("~.7ECnjWKC\lȉx|4 ZpfhՙŸ jiЙs1դ gkXYIg"P@ U$.{,Y_c&`)*W̉q8A!=bUE*wyx4QNpLCk>ʽb5tPfp[TuP/bZ[x\_r)i3z< ܯpȸ14]V}Э ITiF4< 44k s^w< Xk#*wڭcKGSȳKTᑌ{\ ϕ@]^#K+bJ xBɢ~,.Ln15[BbiVP3`+ZU|;:+V7?<T?9~ GD,@,2F{(Ȩ(`*(0dt湣Fi9qU,UHC+-<:uɂxbĢ:Y0͉P̠Y!7![Y +6T,rYe8 SEzZO9;S#X0q3T1-~@b3MxȘYx4#cZ1 F´}_ /f`BXЅ_RPB+*c'fPG؍ /Bf5vn)0M[$2h+Lpt#7!hj͉bmǯ.5xzaXϟ%֒S}heK͏ `8X,=)pB(%5m/8/3(Ar^@q0V&S$ ̮";fl[P*Lk%  q1gy*6[:F{p[>BqϠ D#2 Tfwmm"#*!}^ HnH_D,i".vY>5:0_^XIb5[bGlHfm&Ht:qSU@v+õQ&+DY\Ņ!EaigsG%5A XOcF_3ZE9F[HEY|t "Y%DjuERˍI1t$H9i5Йګ@gљX ꏫFRG f ՉT^+#4ӓh7Kw&0܋|58pT+"ĸfREXtd 0Ҡh0g& U87K*˭@ddɫi  aљ$ UEaN&VH͆^,u4%*L'ne,gJ ]d 3^+{}xJ WzZqϚAp[;gL=\ݫk%P-5WKWJ(<%Cz(\.Qg6 [a_S\>tņN<.SxYD3+i|v TQ/%5 dȿ<Kg%t\ ҎKU6Ҋ2'׫])SVJ܃o|~~-bs49Ą~pODKgďy/-id E"uBUi{ \c=*ɂ ! {%<6Kl_;yS`]2n$VK[~%٢d`,jLc@ uwgqWE@eBɢ6\_x}u 0'?PU$A-ljB[*:uAnKΦ@kж8پŝharnuɯJ$eiVh!{Ew nn,)%B_\b]\mڂ 'nHa㲦PbXQ QPuM|G@ Tv Fa (| f n >a "5TE_^/I/C]q5F..kG:v$95aRnkSʽH@Qȵ+}'H ?=ˎ_C;]J\r"'zb :+ Xw 1GdSP?h''Xpi#E3UKT*9/Y>v.r\p@rv`] Rwච"Ytnu.Ŕs)пJ78 f:sW*~"`pdY68u_ݭ9[ >^%Y(pߧ5ٺSo D ۿj|\$3@a|Ru7 %Iu6g|.#o wvWv/=k#I l T9c!?jFѲD he:ctq8ӱ4Дnp y,@mDfRT eS-%rFo:DwBF$ Hn?\'g$ cmzc *xDЅRrmw+%qh?Ϙ ޡ1d795Eǵ;\]!ʱGQ[ސurmy}2>i{m]"s  ϕ_aS91޼"ՁVeεm?(ƜUH:E"tpA$eFtzK#WZ0!U\=XFOcR;vWBBT`KQښ18Ϳ[Ψh||0w)ڎ"v0 khuxGۻZ@pG GpXzr^A}_EWSoqͽ#K!x)ESW{~ܚaJqBC]!*ɰb5ǥĆb3} 8\8]G RR ҥG =:R;!`}OvN N="äK…@33iҘ'?(Zo]kKb2ԏ@7VIIv+IXJ H ,:oE`pF =/p͹ K"pmkN8dO/#?OlYO놬bxI;(8/@ 1V=۞OGQ8 }h[Pƫ b[slo5Jt=;,KU5x`Gy fYq>ؠq-~&<:b ,,₹ZrsךZrܗR`}$ L 7FBw4-G~hFf/:mvqvy즷>*Ivۊ`p)1\vg;?.6"Ӵ^S"2燄eE#׾ΨO<;Ut }*NvfܟSDgSbčbD9P 0:Wvy}߿:Rε\/FE2B'&~{T8H"g9 l9ܶԳ=m.!$:S>Fa0fE%!KRd N.zK`GSLLo/`9W9ܖj]P#-h?׵iHFItY&IVP4\R8Z /kjTmYB]"N׸_xJ29ws50BI5NtR. 3Ũ2~Az5gUnZD։wwOg3۫Ƣ̿n0$+Wܭá>idȆN:[IDYaB541 ۄ51$ԣFF"H3G l] P W QO> \`fd@RkL@CWcڛڎ~h?KauL&,$$(X! sH_;1saҰ.953=/Ϸ X-%%X}0QV\'Md"-Mo!DpUΒ˶VRm oVlf`+)@v?!P4z#ԺnE ]ڊ.b/*дwIiP.cC@(HV rnv^ %I'7HgkgsvH,]`-.I[bZ`V?hmǰz[iCχUw;umEzc\b?ZLsѨzo;_(O**y :WFus:b]*0v2ӭX2 EZ[:Fv&Ci* 3Z擼ƁOqe ڪ->0Oku&9!q9dٜ$* ,0PzZd͞@u2 P~Ii˯?}Hxcx6L1{u jKU˴~U9`K%[ۖ_gA6+j ˵sxQFvqoZSk%ghπ^cDo#gXЍpj?es#8ZJ=`nJaٓQ㒇^BPK4 ,qiԚ{AeknTxf/>ss8x5\=wyʌ0u!WIp~2XT ,ޞ a:r~@$zĢacح/(T`$XqZ Rmn9Z,9`׵}e k9!:}x-.⬌n=Y~XA3oXM!f YWU8ٷxݟt ӿTԵ&-(Z0o=l>؝ë`VR%YA\@hXq{*C@$'!3\ j]A32Π3ë;_jZA`f ~p#BsA9W`bV1Vm*e#sEօ0E*Dn3Ly-~nB0)cѣڢ|F:'AeAHqHKxd:P$bfͥZ<|6Gvޕ,SƦܣL궴X)lB MJܲ  `]#rjG#5_/Qϡ_JGx%? c*Ga82vhp[il 8Beam<1LB1AeLoЧCdHw0 4 WAHo;\-sxK)qʦA=4v.'=D{nN}ͅ4"hv 3&AZZB\&.+6 Iw p?T@3*_g,j0a^S5vii:`fhMiT53`߮);^o j@^ŋS8ˣF 2GA7 ~Q1KPkPB/y10z2dˡDdtGM 'Z|b \B0s`4 ]iOw AH|R1qNyb|)HT*T?ahPR박̀Q ڏjGDpC:MV%[a/?7}.~Cu}%x.`΍r a{k`M.{tGAoVY' I@JTC;TZ XM0L"zH2VU&WTߡwE/LυFA'T̬6[Df[C0vR!cWjngGSZϭ UЂ%X1Xۖ tKK(NDkz&2],  ˆϛ0^N ^ۍ!5C %gg8 @A`#=>L0~ȇnQF痢A(UsTRvcC 䑭AԨ_iHrJ_pf޵B[$A_l|5 xyT_S_}skFkA^c*a3oLuI@H.罄x}6[Fxc-@W baŅl΍s}zf=ܞFlxi q^5=X>YoTynl tK1Ч%0 9n~sLF'zJ,o·D ȣT*_RVdAʀ| H%ΟJ e%٠ԀK^BV[׾xha0e$@IAh+x[ 6rNh>XK P} _ Z;t.gXX¨MOz;W+;P513L"n|X@0s@۳G:q63ܖ m`F62yqdkes^W׳pe: OIfՎо졶(jט 'CBFm _5= 5nGȒ! ;Olsd F/ٞڹ rc,F6\ vIFFQ*TvP/z2NSO}ʴީz ]s! wG/a̤A$ȺOr1iJEΉ1^3PT ` 1&{mt+oX])$аźMUiQ1K<[!| Fِc(Rx=cxm )X3Jd@QzxӄkLsQiLI8u{L[L@#X*)C7dEQ…XV)DGO``{̰ehBcWC5gIh7z7[Tpi` k}$ 01daKێ)<@ 50Ө1WFlyU}C,> I*!t.{c坾p`v7 f:utmZ'JeQVj,)s z;f Pi=~-k~~\ XO&?>2ɕf LgrwP{=R\ .(d "Eӯ(t( fmvt+Q~.tW)M?6g蹠_u˗Q4uFKj%$]0Rt-927CJTɢn)RO3@#u$1.@IMFЯSH;OÁc 36SW` X3N>$F?<jSJ Z[}m eIFVmʘ Ƥ-iC$hSӟSea>Kra@í4[nbj1neO} ҍa4f ƣV yqt0}ͱ׺0Í0x~CEq(2KL-]ƈUf j\NѼTA/.`v9B,D{8HZ_v/)h"K ÷FV驋l6,׎VG]ƷlGBbZ]ynWwE]_uahp%mㅷQb4|ұrIߍ! 5u 珥S/ϧSk|-U&-cNƕ9+ڱG7#o <2JB7_-mƻ! >']𐞕a^昻T!|i_oFi^zbIu8$Ȉ6 a|lT4]Åv7vnq FY0 $ME Q/K(QDbț^*5R@{zzu)Ɛ[]inʮQPv&o2-[LO# TmɄcŸR*\Kڛke0& cF-*q4&ܳ"_.Al)]@vIPMe@@:|Bi v5K<НH5)2d |ouky@-{иuyCqEZhXHI,a(86?@VhH)9a]>ɂ+o%!1?uWn+UPk[ľFyބE^)m^pZa2\Gi p(0](YD- F-=ukaO AP<7ǽ-t}"4ߡhL&eJPO ٻ֣b+ vO諼KmjIVo'n?:DNȐZ7tz\'k>#qEhKR٦+ ћAIv8c샦pHG¤asp G=y/P &#9twY;!C|R/rs1B2\3)畇? 9m*#}m>vh77,3N7͂'dX8=6J;)o#8P<13:!ü2Bk 8 2zqfש#zأeM/[8O,Sl5I-dB,[lG%+V(:~ 6jù5rq׃l.ȉ1.H2=Ԁ. ~Zaac %7*GS*Lﲃ9HJi dשVh0RX-zt%vRkKU~, >`ŽMH'+ͧyey endstream endobj 70 0 obj<>stream Hǵ#7U CnC:}#iw}bc+3{N~UR nϯ6Zjgf!ښ9m$mވ`TLe4`i>+5&@@Bn;`Ի!FF FwZ@=}mek}(6kK+/0b"^` Ş~ya6 liSF0wQve@Ȉon=+()ܣc'DNpd 'zMܚs{;^H+0FȟJr4a] uBǠJ `t De jN 8lN!xb!YZ2B uC oa5Rx(|k>qSZu^^eѣ^ Gf13WQ՛{*!OrC.P}v r5Z3Cc:k_ȊԬg5i.vz N\p!YIJ2egpHy|g=\_g=DD ku^lAd<`{Ѵ?; mBRYں* hO0Xކ00}vZΨï|_& AF n%3HuR4"`@_#LC-;åXDT"*Q8'@z>jF220(9Ge?ChV@mLUę߲ ܊!eKHcvyϰF~iPzt_F;/̈́a[D"LG}ns7ԚuS4)gQtdk)nYS\921a$2t= ָy_rn+vp%n<|]2l@mFؠs2Roy}% $hn~K<9uS\ EUaO,pBaS%ϡD!8Im+>B{ܷ[v/ݶLDm(??7^G ^O~|6жjZWEbq]- {ƱyZy%r=H\b[62Gi'xN/0.SܞXqoa%sl.?t\S⎕vT+̠*ÃMgś>9MdɶdC(e@sqw,0Ӄ!R@$@7;PbrQ6l Ft3d|%)cVRcyČeiˬsJpfyAІBѾ a; ghf 8Ezc `S9b ,:YX0"PT TDm P,߷#[,`w|6e4eDt)bEw'"wY$ܴ`-;maA 2B8NPԬ3' өba!K(n=L}|c@o!TDb#cr IEpY?(:sA =_o_y d<5&g^BP>O&.pk ^akE'%fm&>8'fWqZ Ï]U,-;J++M%#٦ludaWGi6y$_5xS4 G=Se{}ԁA6h al~y8*DA{ -DAU!q"zE@(oɳIhN jMc<ցyE8AK{ vQ ;,F 'Z'Wl{UM@O(?C6 AH; WczC]zQM`nPqpPHb]ЃDi}T}U_!Wa1P@?ߧ @܄yy&7<@2b(C͠ݨv V[\[U&CllGaݗa^AGߎPVsnsx"j7=B7M)#R`x )`eiz=19S(å BkLA3Wغ/|b!U+w-H&͑$mH(\o~2RǒVj=̀W.J&aK\ !KTL*EA Ԓ <$B.i( ,8ABN I(`vjj HvH ;M{3ɿ&?8I%tc(V@U#vĀ}Q9/ oK:DpU֭L@`XdR|ޮkd]O8y/ : t]Z G<!. xu ý4?:@Kw@G4,z?Jqj`B?X?U7rAkpln@{VLzx:hY\@U]@Ȼ6li A`Q":7eսp(T]@ֳmݑ5h)[kGvPv].C[,IB V>MO´AIǝj@߅f`]5'?;}p#>G8Bi4_8t'a8V(1(C|7o2S& oI˪fסڦ_ MNj~NzԐ'@e'bw?)|l UY\*ДO~”87a00!U@vm `ܺ6(P5.Uj{' ™jrj \ |Ns_u{_B 2f{a:0?*ݱ "q\zؿ‡pn!#Gc6S+vFU146{=b:JIQnP:pM3#IG[*.U$z!7^ڲH8 !}0JFV`"q?Ց:Cs9J2Jq`9<ti âoK4 "uAB4"4 wA5d2t]qlc ڨ~i{: u]+ۣk9ēW9qZg{i{`?4%93 ; |~U}sjv3Q aN\)cYbۇGtSé׈89; CO;_YXVVۍbvwF CdQ$?$ttW5e>TC8+]9l¥oeУ6unMvbD`qE{ Zk 8CIeH G0nNCEX}p~2c9qy.L|a8 İRy pL#|H5~Yz(:/6B l 2 ʒM {O A13!v{U(Q]0"5w< "0 NJXi״ωNЪIi0î]&x9}>^Z_e=ص,`QCگ6hmAŋWM#%U s6y8TA|TxUMۣB@m%r*|7?$)cX#<rkӽ2=S@B gG6wzqF/ `AܝiNXL̂iίt==R ŲcS^ż&6 )E7q' z=sTeSx8v)*JU iZ:+L]aK >Av_Md+ q:fݰy L&yQP&8;&0>o!B"|_Q-}o[ CtBZu=BX?trkwUP}xl8B stGcQ {cVC/M +U Ǡ om|Se;V&@n9ia, +ͭC(okx kf]ư]QP\ U~V68YNjKv0bSg>2 aJcӜRN\`u?$(o)"1SBlgZ0 i X]f\iFn ⸙@g^ KvgP&߆std^j ;P #˃ƞiAZ@{Bmw8+Հe܀[V:8&8q08 vWd#J J8<!6i3䜃ύoVsT1>G7Cr?2ㆋԐ0SmA3b:vpJS!YTW5e4;ˀypO#|NlX&_< nA(-a:ڴ>NuZ^UHx@Ww&|ႄ MAP-S!\es>yr΀6qHZ_io4:Q\fM ^ÍۢOLPvX$;.Shw\rZ$Òei X37un$%h X`8Հ5vfB\*7}TU7X`@|s!Eӂ`&m=h4%8 8S)s١9&@ӣN\,Iԋ *BcǞ|3W'sd 4v"'\co2#eaCss uZ0'AX&eHr|'9Y(urX;K̅Ĩ/1od( k솢x>(>B/!͖!-Cp^wT_zeO'p Ѓ* >^ʡir,wn}(4MUG "m4ʃGi BLP-q#7MCa줖yu?|;녰mt­"@t9W5`0u3«GE-}Z׬BB5 !8'`F V!-¿_{}ߕxŕQxc'9 x`m' fxwāPe2t5-Ȑ:`?DU}lR}qemG;ZT&%Mpp\ݯJ]V' nU-o2B(9#nf Mg,=0UVVԩEIɪa.`f-"7ӏ ڕ`б=|o 29 >p:z19j;>g(}l PNAd_8-2((;q2 ׈J𑖞[J~z& l4a:duR(ƀVnw5RDÈzAJ!%d5׍As7 h"@x,-L;΀a7>ٶܒyMb M_6&R 7ux~jZƱu{90!+D} )*sz#I+櫂}%Na# Th. F:RЅ#v2zgMubmW{]} =5y# WI 5>]":A %Dp|oeBL4h1GlVQa.M 79nyx{#TWwf4)N4[cx,iV TKҢXZ#0AZZ1oNtmIq7^j qZzcD/2פ.*v:w2,Í$.pc篝3c-=)aT>ŵe<'&8RڼYC:/:o]c"t6"MzGʙ}So&$}o^>flzh<77 #7Fe 0BZ3(!$7W)P`7'#1$ y-Y4 iw3Ma0&ZKTkc +e+#iS?] M#;:mMص_mZW{%c|ꎐ+g0J>ۊ`'B'QW T P{:&P3 LV(y[Er zW9QM u5+uh!Ujy)cĚ:]&lW!pbO D|>7zM03냟."| b?12ػ䜴xPBGҠ-Jr]WhSGnCՇ*$mѿ!ZUwbhyG0z&cq)5+s)S#0Oψ`o;+ⴁ\L#AUiJ?;ݘ2p%rï)T_{2u=4>ά„:8e/ZXp) )\|@W/!pEhu7#|ϕXY ʧ{09)2"rTV+E8&6V0h'L8Z@-fSfP&0Z!vp L!J"PU#xDeLa R[ d 2|e@.aO(=92a y@dZx:96YakvJdT;XNg{ZLl.w;Tw;MvۤA|I= χ(PǶw\*i kTxhVdO`BٕzzSġLo3onԌy`ȍyuV@CS^%W:>Vĝc:TE0֍:n-ľ}셥 K'AE$]1]>XX˶F6y3 ÚZ: n\G3D;!p|OWFc #$ *}lNsg՚ז"QE*xR"+eCêwKi9~Ɲf$M2r Ux >3"B>R*oS9-3 6p yCGZnbrWb^Q#eAêT<q}EZ{bhl);Bҡ{ͰW^J0D$tիKg{s]͒`?[\K[ej`tO1;TV (7 ^ J0seI&-ŔԹ*n 0RIBǓiUӟO-!?GDCIbM;xhqlυG`qh)&a] 9ե`4cМjjpɥ{NߎJ앿 #h럔fA*sY{?PU7nØhvL)MɿJ8̀}Rθ ]k`J5>P&wՍPAn"6#r>O.(0FƩED=p\ ^rzt) 9,G3 |~ (~9͊Z=_Oюdh%3_q:mq &9;2Tt(ՌB.[}T >œiPEy˓"f/B4&*q$XZ0LWvDeߏE@l4DdrdpO.bHJ|f?2t$|&f4U m_5OM#'bXLAS1iqzOW+7}3= `+s /Y+ װ`>?Yd(9a~ ty>wOm.uda9#Nw =yp lW_4"qpw+R'Vp u+Tgh᳾R GTQ{#%دw A(*P~ŜPJ}'Kܱ6~Ȃ.7w#F"$i7zGz6@kٺCgj0Uh#]*(ArrT0uʇ,kKb}Ղ- D&3Tg4l0k2{9'31S2tp@##>a;@^~Qy/5f~8ҭUŨA kA0_+Xbٟ> Ƽ"@ E)<6 RKktJ7*lևښ_@k&zӄ}0aP $Ep"BBN.f ,1§Unܞl NM@~ o8e*UީBrG"x>W̋6 ŋ6Ơ\ k|Яm|ɵ.Q/6ڦ\M}E(6z\c_i_KgfnnI%%-$|+ ~č4!d÷V׎=@5˽5cmkCe_;©GɮS[4.#H&Q~zF Ql h+GR;I&8)"T* E j:ZbT5İvaekuKߖu4 V航[#n:bሥe;]6[ <vc,~e ) t*i:TuQla$agҎo}?g$NP@v?7dPr]1?'UNG-z4k%x[3YX,j ufQCF"А(gDԐgܴLFNgCËjx3ODAư4_ c򨲃дbHlzLj/C܉C:EHnKo|,|X1GFNnX[Mcg59m;~GwcC3!bn"it-|8C֙i6;O1g#ru:QTr~}ZƧN-!%ĉ[( Kǣ {FykY@5_ _P9C YS#+ZӛP^ɛp;C1PpkI#9dǑ*$K~_V`Mv/$Vd͸l̘ ;0=lJb 0c['Y-B X81 [qmE|AZܨصZ&= N=ۚ!؏ 2DDɏfAFS~!D@~i5BPB! BPBճVIcհ4_}=FL-wCsثSס!u ; ~XWF֯2dX-IM8_WPumadyJM5RN TSB)!ĐRM !@EP/L/6zk Y]N?Nm\ endstream endobj 71 0 obj<>stream HWɱ$ +,{uQ(tkfe $gOc}ʟ?}Ta]R.Ϗ PS%=ʹ N:5K>=Ou]5(2IZjbF 1aj 6A8e6 9 (b9}b֐=kLڒ ){2V=`lPPj,sM Xq$k_t(cdx2%V7Dr3@\33Hۻ )*e8x]cIѹѹ19cq A1vDV31$GMc1!q 8F6U]ܼVw(`11Sفq'Aӡ`4]+ʊ& v=rlcF`;`1ZZ-0ܳJ|V'%MjY>Ј A# "J Qp zx(.J:M(.>^]@հּw *_]KxwU~ZꯪyT]Q_r᪩^ ONg{tÖUCEZ0)_n=yhkuە)i=v>r]8TR۪P-h 0Թ1F_0b=]TOdf0C 4 U!6Tpc`?7R[u+jۧF818߻2ّ{^,zZɾPy T*8VudQZ&=z%\9Xfa<<~[BrVP# 4heŪJ9PR_b 5"|ux lah!JsZm,BVae֯IVvudękqTtبtCnlJh n3cڐil8FiMԏ]:m!axIJ4^!O&G ߫v uȏ;TZwc- -uNJMh fX0C;^_nZ7ٯflڵg҈N Kas{c1 A!H0W5dFjwcD׃ l0N8Bʛ @z r(`MW9ZI%ua ïD\w`,87/[ȜU99(B@x\r ɿطϰN_!"P0-sieqezqr /::CwaŽ 7!fYY'\O=WC m*8^@/'2ؕA$o])a`lYK2tۉa]Њ]c+h2ύ7jnkBʂZ 8Xr2tgp/ޗܺ|xӅ%#k$:MrO^$$mQk)_\W ,RDAԪCqJ ϕQs'` ӚY`@,3Z8*`cގ$Bcd;`vL1ʀ*G]ʤPB;4xKL?l"ǧ1݃jv񾞓ou]a^S slLaqy9H$oa9brrnβE+v5 QIE]r7ſ8(ê{;e7A7Wpm\)G֪ø΃ y0ƀihn_=0hpi)&W xnj9ۋܶЭqƬV4IIPz49X pt (va٠D{8Mgᕊx gʈ~"` [kBAت>Kw?rx 0|؊kr Ubw |*ߺ yKWc V" Ԭu*k +O^j D4p]*rETsC Teaj}.P [6.Psq@7?{mކ11N+`0EKp6Pھz 0 JVI0ƸYq  @k;Ƙa`-D\Zؔ[+֗*A;QŭK-曤L<>h]Qwa#Fs  sUz z#!7Y=0T[B 7 ) Dnzzpج%$0X*ph~Q@s  gtJ:Ęw<{dcޑYhw0Fy@珮@Q׹ ~›`"%JJ ePڸ@ag. қl%@\fE6'?qU&A0zwo0gVFRA [x TUDzqA'P M5I+KufW޿ܞ7ѵ(V]ީ,;@DPK6픳c#D 80AT}Sy2UP/]x_q~K)}wq0l)o"CNMЧߗ|*RfԌ(J4Dygu)E[6/& ,eГ"C>~VzF*.]tH1/ED_Dn4@ȿriX^;/߱H/*eUNghd 蝦jo(yߵvwB~ݹxsXŚ{ lCV'!ZWR"YRsy54͍EU"\2*_nFg?3I"h0r% 7f#aЬJ[?p_tbX ه+ia7墳؅2q@,ʄS؁3թ-"d2I8́ǗE-;QN4ĢNF|RisϿGV;6޿S h%R^Hysp*(^z#,wCvc‒;*`5R[[6gv9Cu!(-掹Ӂ =@)ޏz9Woك;`ZYL&K)O1@^5.wN1@ҥ\4#?=8k]qba}#$sO8ˏxV~E]Tk {δ_I~IݭdK#L _ɵ4mv*6~e'R$[B ?\Wœɯ=̽͠g=qz"N@}N\>ۀ0qۙŘtMSE4jOBOU :z~q#Qq5R %3|]|szo+H),h*H@o-A,ޑY!?Woy^|Hn|'2DJ !AnqW=ϫQ2Gບ~5Iil!?``Rwu)>Hjx da0~涎#U.%$) @~O D1,8SƝ-r 3* PsfVg?pC,rSaÐ{OO/:uхmGIx.k_] y,{Uc}GlqN&PPCtcbo)c!e~wˆ ؛8%;\:O}*%)+01hzla̐BRdY -e0,m=te=%')[/480v1p`!)bd@J>XY[vITH0VˢF"$<¿:$$ b1Ζ$:p'0,&[@Y- 8b[JRȢȯ$ub/"A,ȗ lN}9[d-*rA:p,8$1uFu2?NJJI3'Nk idQHݏ]d(i6p@FBE<9[[-Rϧl  rǫ SSG953M GuyקmUqx⥼:WDcq rI[~$pQYXJ:Ae0B.~֟X5ϦEE)^| _T|;2ͧlGG_K Y_OuthK/xsQhcgƍA7j&azϭWȢ:Y8PQG\װ}0έK@O)xҭ.EBgMF4uƣj1%<ꦻ̗,C"ap:E?Sc8-&LPvG= ZU+WϠɴHm|bA3k5,4;7X^|"Ky^U^p^-W6p(q8.}ܞ7>^!RO$D;(]ۙ=$EtrR;vx)9qf,R@lzy{j|#&by2w佅7?}T_ܞ=a\Wv04l;?HuJFh# F\㢢Ĉ kD !sPǨUt9b@N>?d6pW;#S~1 3h_9K#ÌԀӈ8!J[<ݴ5"0֞1Ĕ:s#b*=~Q4-(z3~$Pjz(N֩:z jbIO!b@2eG Qz 1ד/MDY,mj]5rGx6aGx65bCF^SNCxŬ~(b!0G]}Xg ?sҫ:bzA# C؃i%^蠊cr*=qU6BT1 "эwS"f}spR9D@ ^o=#2yoc_*Wnvqje`=jؾpE>PC7]Z0ػfe%kTWĚT;S^W^<M]EPdȼhL!ٵVb~ רlIPC@4n!ȬB q sI &*R];eżPOİ :86_[>!~sݧ}^O l؆hg cܰ9Vꑰ6Dz|z?*̬O9]fJN|^[Ƨ'/R_šD W.!y{߱Sɒ #2+o{ 1`%cge>}&=J(gD-eh^)wen;*ig?I0E"!OlllΘH^bD  7%wwq\0gϼ F?e5MaRm=ȊH/Q2+k^3_E%S{hP=s?-RzrOOrwvFn<_d&$eMCt8![MK;І@]GtՉ@f!xs uvT.S=ñҮSvnv㣲ho)Ȏ3>v6-@3Ě|-0MWq嚲4L:mp}AdWC'7I }8TMOtڴ&s i}-MkFXZ L5d X- !hn!:=#JL>My&Eb@y "{:9lH|dm1Ф^7urX:-k Ne U'vY@ vfHS El_Y iŐi,[)D4&:ָ""B !A m*&Wi+S'ʔ-$?6}^vvbcpEr}~&`XK{4| c3||]O ]2%p(L[6i^m-jd w 7#A=;9Y5=xp=)Y)+&j 34UnrF\%eP;_f2HCs[pN;BŌ}76T0$g7(Z1}-Dgf9TbrAW78U} ` @gH6:H+1C NJ!.f9 vJl[J k1킍Mzuw0Oeiԉ zW>xzWm1E} C >Y|X/Xc0";30>8JH[2=gFY%a7tkVu1-A:%2eē|yйϏ୒!^vkYeV&W޺~ZAlOP-ĽN# xl @ |"/ A.!X4ez$:Yyw+Qip?F q?N<α||<POeF#S3Mb|%Cn؇,)٢w7HvI̐MuW왟QN]@N;n 5" &ćnVCg__t>(TF#PJPo+<F4,|i,1g)ZjJd=5n7 :[ݵ5rT{7Tb>pKVW3֚ru"ףŚag1zYI1!yj1HEY K%JA]mƉabz`6)vI5L6 Ν1B7vBSjDen;0eκͅdׁx\$^-aC~:e{&wKy\n}H>L֑6 &tNKep>i :SBp?Ef:)p 5 os8Z),4U؂^fx$L_=fzxliuumrMՋգilSW#.A *] 7 v q  B ^zs"P։^o@@w+p/E`U[&@_؈ "E׶^}MW]PW9n$ .#b$YjMvV?wභ_' ҀHـx hGh5"(K M_RNfpK_?6R(,<;"r)\/z)zctppoZ$hCIyW]y1 Xſ8M&.%Eysv-8z0NKW'~QEYűvYCrwFn`PY8CW_Ԗo;ؖ\4gF+}Sv $ :Z h96e O O:07s|@G,& и: Q TmMs}kaUXx0[c,gc ɸ퇞>X<?X#ܰ¹ibG]ŕR+=V/|㨎r"@D*31 h1QdA&!E5x*$}&S17?z1c 1KUYΰ~O>N}n9K:L_.w"`Mg;?kY݁Y9AVvqS  mM(D0`9['kXvk|Eƕb$+7LmU* :[( Mjp9G@OKkBP׭Ěe9TRRKpgE`=C/3mu5 33n1Ƽ`KpT`I\ ,vرirIg aDCx͊Sx2Nxbo#[kZTyD$X+0ť&:oorNׁjE6]Sϋ sh$1Gʲ!  N>wHGLc!G`K8|d QNL'6"pDV"pD"0$&/Ty s-*PD9'G9&pD6#kk&p¾"pDǎ"pD^,@..#hNn2[~ =G["-"&ba"Kz1] uH=N K;VD qb>o)֬m5$\:2O`kY&zDHiH \"P{ .a FZyf?IEKy ]"ẀCwM*A`1c5maR*2ǤD | sJry=M>B#7gȶC2{ @ Ǧx75L&fJa7 ܏RWŔ3"Dssu`jhnt(<;?8& rQS݄8z0QR,P JmL"cPέ[Lt3D0(I6(gc'w/z)G>wP[E02( *},=M]AENuX&T&EhJ)eEd42KEa9 )9bPeGIȨR*d%+4`;+̮8A<'pD.mo-bZW>*o jpHqic(-%vmk,nIjS+V ]V i[)p* nki7QA@0 ꊜ- / xD9q HfT]uA^rU6ns5;Qyv,DtqF9nSٍ߯[oƍs= xo'ҵ_.p ]٫u(V7  Gߗ`˛uFZKi-Qa Oa O OjEXaV[pic#:=y Eoթ17D($nbRI1']FVP:cS^|xSf[+ldCO1ױVa#iBвGxW&8+jɮ$W^O/m?WH !KۂX31>PP:E`fQ1j̐|4JYhq.}r2ߤ .cNL1SO >O7ˑqGf.t^Q!.\"! {*?LOUsF᳎c2 PMDG\|܅w\5߼n6-ü(?>^I ƓLQ>?mn.o6I!*'in&pWqJiNG>p?Vw5B ¢ 61f2^,d)e!Y U=zVH:p-XN; J(@* fU./iOE[& Qk= Ŷ\5{ XAIA/AgYAݏ XTNy-Һ:PuW+rxXR@1Ō8o^-y M~\QP\Ћăs"4t1c-LdST7 ~l8 *(m]knax DЃ>Fܢ]s?a>+=Cb]m/NW0eLWu?US#F6 }׸Jy,*ym]ޝK(QZD HH7`4K;5'cm_ӟnW|;\ʸQzULRLƑJb% a \ *hҮ!/t?2&,X!TB,TB蓅*V%Nn˅o"*ʨ*5#Ssq1AeDŽƟ&e Mnu=S!xjgTg2'e_é8 KhPE֢ Ԭ%^]8\ "Ywdqi*ߛ\5س-_(A D/C8x a} }J]z W ^ i>#ςYoP{*mK[cZh6qceGG"spM"",bOUTN@=h4yUЏ]*/{G:*űٮ V] ER=(TK XPթmG$`i)ɣ[g6h{n7JFQmscUKsԙ*:'97|: !T(RPU SթBFSfa 2HCҢXPբ0FG=k㩮SΏUHX/G{#FCOQŰ~ăܐ|F=!ݭx慈,!9h~$bb,G+Z".4rS-v>5rpHSDtV}h*NzYA4U3vi }fDjj`urEoҺK9^ҥMXTK_fS*RsgE֟#b677_RuXTE\lt#f7-;" G{ Ϯ/Jdxۂ;tv@E]㰁Wy;#5:3lY;>Hi~m|C)ͷ8AeNrQ4 pm`jBnj~hMӪ'~ăi==tMD8Oc'{Q3MI!dτ#rikPz+w[uI}&?n(MC'.R`|2a_GPvHþ }Fˤ ԾgU_/1 R2@JCl2Et#C}:m I 䕒Cl)v*zrm,qjڿ\\Q$>qӑSP[hr0 텼L*>a=zhuP]/9-2/Ur. / G 4[Nc&T gXEZJX:2`ƭ47nފ6gur Z?G4VҸ3\K/wj|6PeCuxr&nȺC|;nYW9F 먧%ҲnHV J 2" mH@LT6dDC iG`aQ- iyڦ+o%bJuJ^%;rXГ;BOF4hpF0K.05=#?%J*g??@խ_2%ϗtNyd<" d {{x0maQcqrI9^z}}{NkBL.$` &m)-tCw`5Hu *x$DIe0ژ#XU =1^P:yĩO'RvJM-73,F{6a$'3|]c-"֬TT?P6%ܝg|1.?#%I<⣥2jK*8>sk bE Xx^}nsn ,FU,/mKڴ*0ށ)业E p"[pBnˁүGL?RJ[:Sԙ9܈XRWuqCP'YO߅CN?E!Ų芡dQ= 3GtWſ^rMU7'$FFCN!Zqg9pu}mrҗ%}yIGCxL# ߌoi2Ńi[kn7Wz\Z%v)1 Fo_G,U![0Ds= b(٣ f%߯1ψr+)]bNe@1.t hzzZ? /p,ǧaz#yzm8Q o>ÐCW*d!M+arRzWU6qɪc=Va_Iu/J^s_Rp&0.J7{%aT? 'qg'O軛E)mVbiEw MW ċFXelDR+|nn(V%~KP],5K7Hh=?}QzwE PxƔ`] %KAX.Ta:÷k!m•M&- (b`nuCJ* CɈq}v@+(*而qY!fk!b701:=<Ճ${'gv9kiSKkyDh[P3Z2w F7[<ء[ 787 K,g W|-,'1]??&.p[YayV*RMyKlŠk) a5,J7y&<{uŨ/iף`T( },$K(@M:\$GQOfR?Sѭ8>fI7O,'EN_Tzp8JJ4OWvDK[I:SUJ%S58Ӟs\#);iX> 'ȼ3zKmO endstream endobj 72 0 obj<>stream HWɑ:eBI;Yq' b_ZO)J)|ҮVjW m+F? OmF0 Ѯtnc]x.hs޼y+O*?н}f" ]kmrW}%{kf5}[$s/i]5 Yٷ%j {bB7'z;:ٞu;ɔ;>ܼumקrE.W';JZ@`ruGTC` &5w#Nwg]5lz8M֛fTd_OvWUOℳի™M68;&ks݉3>u]Wo>y[:eFHVtuNjn6Bsmd `$ϛϟ|U$~$wZ{? !J%yS= s%:'si$bXwLk]enz!Yu9 WNжkp}BWyZq4g2؄K~Ar ̃kRϤlȠbg2+.Gw|o3 k1mH,/v5ME9B@&6LMN2z-P/rr#z4f{^g(lNkG'J8*W%s_k7o]c7]F3^O}ArD .3CeSۚ~BpB8#HW„ʷB إ#33e+0Lng1\WjF")!_|20FJp 3N~9`'nȖ>O{ɟec(Z3//B7+m5||ƐQ_-,%DH<0gN1baBȂPcoj jVDR*͡ P˄%O9}2}K,Ni׫[:6!&jC=bqYcgw Lx!!=Iz劮*&»OJfʩPfLwt& d)R r?KQBZէp9~9~q4np:$l ';D4| 8I7bI'ê֨U۹/!J~Xab*ŋa'´96s,h/1#DU~S#i*KJ[+d>'"#2~!S;|nK9#2!X EBELQ,7.CTٸhR5Å蕂ZOdS&DDCFH@iΟĢTxܧ)LC2tl9i˿id“ 9YFqՠ|!mHŗCB$"<#LL>IVt8~JX6 °]$ klSaTOWhˠC@R|,,l<&&7]z$mm"EР $J΍<۳Ĕ'pݳ`RΔ8B bꤡF!U@6`:ݰr')3Rw=Ӕ:5;g JDu]Kh<\ l+ܔ*S uB[A'Z R)x\K}[,'Wܨ;ʪ;=<!>R) k͜n0dkS69{Zp+{rՁ! ]BzB}ԛ_$!k!P@`JPB6 D| zp ~Xfx.[%x_KiŰNLOS]dȉkM3Y4=Nzb bpxŵ^ԓ)yטDv@ށmB(~=^t$U:|0N?|9ˢ8ր)v2‰ѧN׺fN^ 9(Eq`iy#wgN;_ǵfɲ,g.:c{B`y<Ɉf 9-h^2^OÂ;&d4[x$HcHx,_ Fw@6NgSkO) =Ox'Nkכ_lS[,hv-Yi!xQE"jȭO)%RH@9S/8@/ :bݛ1p Z*1XzEk:O(0}03phVGMct x[Y [mh-l}ZB61mM\=ib9ĎK(8BDS N=N~?҈wMiސbn88%!oqr}Ĝ/qf703iM Pcq ]{witJ"vb&?_wmC2夑uެ3uO]6&6AM:Xr.p,5$fіw j,zZ1;z߫ΛiUBȡLܘW+Sק+ 8j@EP 4ڟNO!큐t@8+>Do+;mHW<%orR?_Wz_uq.WۡB|1M f 8cak/Eqa كR̃{ƤW3)WG*y,Ta"߷`Joy,d̈.$Guxyoޙ3mv%tMy&ﻻ7)LVXFKY Z,˨ e3^`k͕'*WLb >A,1Fb'x= Ea\2EY9b" #X2ح3Bmn=3f؟Ҵ62R( T6_]XQǡ zuuvKt-f6g. ,Lq:%sGyp/,&19cdӓX]†AlGn"iTQ:dR2^OVB -:,'>|?ϋZs!{z>O'ŎR8*j-/AOFnic 4~-/g1o2 A3Jk[^3- rwo`m;Ɨ7czQK}u&GpRىz\,_N-?WIĸ a*YS@vUr0B1h?Gn^@ zH =>vށX7 0>Q3AI, })ubQ7[X s/E*0әE`x0DY$p%K" t 툏i#uq}_nM]mWiU'X˘{x ?Y\33 kאNKm°D$@//CJȔ|y3|h?Ң<0iZXpf$Zbe;0e U*Pq!Dߌnn~QW6!oLQxMJZ5]7Qfq+~ T)E? *Q4b@9#j w\Gpw2E| .5$4.]3_At p0eBz+y+8_pTYFdd,~\v+NyCl5ǻ40viq@kfK yc[J5@/s!R}GYtKǦh=?KDY!^r^\VV$˳]Q \ؔ3b!l>itt@{]›ILvKA.Y As w;H` 킆w˅ bg L/JN0$w p^,s87O0环v0\XZPd=?IuƬ\"H`K̯(c|6 k*-z7X $W/PfЕHg_gPric{}I(}meFp{wQL?Haxx',+i(aywyg j$oP "C@[/ ̒(偠S.[-\ex2|x=ˎlL`ĺ}_FV,C~TmUHШrWnpC1|&ZjҭĩlƱDw]j޲MMusg'!~@"P%A@[]pQiQGJ\3aD<[آtSctxQ_<GXmY~XG_;X0 .|U*ҝ5Q 0M@֘s4 Iucl"Vn4sp1M;8Y(SI$SlUx{ v^puR4>NSr9 VGi*?ذ$E}VBfWR J u*kmFPCml$ǐֿ$s.I rz0sH=tzpct}?t%Kj(es:c3!Z;LVGkn*@ H?jjLq7ŏz&nnc|Q-\\O٣c<5Cs?eaIh(Y ChbRh 43aPg-hNRg' =Sm*uO=feghЛSlTLjeDZ-[.kAEk!_1Ⱥ>4˜E[s3W[OFau*6RUETn uD++aF>CQQaGRK?@NYAC s}#+/_.APrEA ?[E8>쨮zEd̈,W$ D `$CyB:@G+ ʅhWqܬBc.9wRF}rm߇&ib7i5uv8 \نiaySKk<%ySmK7/Z^@ӹ,M@QWԚé<'cv-ۋIœˇ֒bYǏK@cԳG ޙ&6U.S+*Ӄ+\/Z7$s 9NkdfOV_SRgE'rI;ޑtw:$rXݰR105q*zٕPiڵr!>( JyT٪|ٌ' 2*)ś1>  WL0(}`-^[pK)ҭGKM[J{N>L'`%(jJ^H%u(>\XA#BԀlrԡa1 H wY#b8x8cǵ_ጅ;?5{eȀ4K$02*dGP$4U#(lx m I aыXeRjn1oN\CEU^i3ܷ` fwȈzcK 3ZvF=F#Yባ|4**qPQaJVƞ 0AcFvx0s1$(+ [л3XS)m]UP<ɬڻ3rNB> =9 TrPzX,Op2 O/*>;/^bX-K$_}h Ox}ÖC3΂0mNTxFt7dOp+=]C:Nؖqx, Iq::/Au9\'12&* $Jݲh+\4Gƛ\y5oW G4?X2>D8z-ixЧ!2Z|`{2jq )m4H}WtK^ZRRo>V mx7i_ʫ$˶s#1nRl=DrvM[b-נrψKl2 eڨjZ𛣚v#l7XwՐFE:Xl]72Di.Kgz(uⓇ :cŴZ> J[ XM?;?g:Za8J`)Ѻ@PkA?P K߾弄R2N践9˩AtEK1 c0ɗRU7i2+:^x 1ې昺YAml-nď+>XM7BN6BR0}!Ô)BdUU?{ i4pyCǴ z?4;!,ze'I JKԣʸޔKPtqsvқ?~Pʨ MC[Uq6Zo_ H6+!tl;.00]bY2IJBЃ8WFF &zD_BO6WJv}|v惾lv (R^S]UMn^n\,)gR7P,/mlPvZVA@+4`:d&Ѓ-aS%pq-)+hY*@j>]$~m~`C]'"uHGYڰudUd *6ߧ&ퟚ Xz41,k>HaD-A ,{9 ?-MA@Ǻ pA)C|%. =`۳c4+9|qNqA\<(bT\#,|_fڟ3Gt 7cG\qga!׷~dyUױ֐GL@Ko=ӱTv&[4+z؉@ /4YQ4 iC7H2+*MЀ)  S^}[iCLp1U@"}IiӠutήRx4Y8')W,>RӔ. ZȰ4m!@e)EkuZ:t'xfd0R0FN2&#Ha0Bwz4Z<1ۢˌ \Ëuh\`;4>p؆k(qy17lCƭG<@6q~i\9R׽ p3BBM6eى|` "QRx,ڂCe6.ۢ-X4jl3oP3}C[JO:p:{:t_lhMۂGA- G]/(LO2^2lz@yJ (*Cqxi*DZN a8)/h4-pπ3W>]$wҤfRx3L}1i;m۷$~uF*>UR_ΉA|ȅG- 4ΟB`Bfx!I(@@ H;L% .79 tXLWR[E<%+[~P`$^؞|(g {ШC-F _j(%J8MP`K:%KPFʖ8tJIͺ\ĘyYPXl{@nGYn VV׉5c]4#Z(G@)A` ۃ;lZ . lGU^G#rjSH8 `SKQӡT7 q?J;kK LWIO!/=/([en:zfفL |א{D]ƒCf)8ie*7,8]/`F}"oQs6-% sHEJw$z8\ᯪ[`<-0]%Gqu0(v}46}k@ "?]!njja8}ꑇ^nwls VhJE -Q DCD]Ugw=. RG8~@;8aƔ0?¢{m'̹եRXr|"顢<+X#'?`1XՏ`"e 'c^֑V}*gFP@/ h]@T)ӄ_TY$Y!u/]u~5ڗg}{ڔLDb~Eqc[54.$`Kp'QA #"{`9aQ cCn Ӵ 45hR`zv;xY* Hs뵇刞sbaR١0[ 4հԚ,Zv`nl>=emDugnИZ[ͼ;V~{EU̡%X5kJeD"jӑ|:^Ήj 3#CϬ骣\k軾4sُԲ oK©ap# VڗQu"E2*t=3Vŷ!ӣ0Y-+qFQM ƛ 'AЕ[Ei!BDtQi}k zb6lUvTrQ`ǐ'ވibW+ti\@LS2E4'aƎ6oeڼn^EھoAx!I 0TN?l1(=Sھ՚~0T\_?-lޡ^}$kpz'\S[ׅR]ܯEJV\dk t}|;x`pbʐ*rP,:6&碴91U Q5x+q 92YǠE #4.9J-LܭCl5K3%&UL\ID'p5B\\<'2@S>7pTJxr$>/ƥ* @3[ztIfb8q]9oYyDqяnN>"<FgUחTN%>;|iv&"h*=`UTL5BO{;rf#ᏏӕqXIG::A( 6J?9EK€/ 7dyz[t C]uq('~p ̋oqvgj;'G ːŻD}HPTċ95vqן{*|z.~,˧zFYZYS0f9K t~i @܅Ex:"K70E8,\2=H 9oq!?V.҅u>Q>szfn^J;-'j&eUq2`UcG9bKNZ[30'O9?閐6*ik6jEiIQS`A*j%-g@ĠCN E8CP48'@t$6Yr& ώqqV;$W^Px~Za1y'0*S.@=G J_¿\f"`wE#Poa@yfp;Ek]}<..h"aHŊpG+g`"aJE!exUꤙEL,UPu`b(6}/ۀLfV'LjXzdӻ߿BqCSQ]HCᗒi*CTC8C('@ Dz6"HzQ}>g+A2-F A5-\6ϩXb\R\ErSKqn)UU L,<VDZM~0` rUNy(|A/zJzS_3wq䤚{"uu\C Ukh9A{Ne3a]KBm•%wL{ p[7bz-0 K vqٍ%o&'j֞t$M#T_=qZtGaADonX@89CM/O"7[ZWl֢NV4M]Dl'Qy Br{@j_`@ާK>woG1Cu>}sm¢J ĒHF)pS %$6-jSUr| c% ՙNJʜCQQ%ʭ$zb-[(p`8S_r#X\%ohy+6Ok: LFkm5v} rJ̊E GhE~U Gވ^t5PAۃB!-ސ zא'7?gy㌬k]9>f ͕A1h+V;],5t&\פya?otrI h3+ªq@TWUSP5D)Ѥ䀿`Id cQVd5 [?ІA~ ]cE9jROBPU;BdOYMvF;u񨲖}ؗ D_ްS.sJ|\`5'||HgL)otz'Ja_Q/p;=}R`!@ Y}^:Jk?vXW|A 7U5%Ujث]W`Nor|"+v6N2=-YۜBԊR{=*ȎZUfCA \YM$L]6UաO 3y3a+t^%OާJW5+V5&}bIHnZD[-;,Tv;j sZDaT%r!WD Du<쑖|_b\dX¡CŲ XHupQD(wZ@!IvsIMx&3 k נN=a؍{;40sewt77޳4f§aki.aIm"&mZi(9 T`wWeBbXe-Hd%(nZd5][e5#3-E.&>o-n*7jzkt/q1*],{#dzM$ط߹^}Wz+1@ݮ36Zc iōL d羈Ls]랱9 x|H_}z#"Oge-UPq뛠YRUB%Dڼyg;n# "zYOGOCb*p+䛚:tIRBz2!fGʷ_dvPMw6S*Α۴dA)I"R@uP2*)sbRK#'CVP8+yMʂRTw)%1rȣ+BYiɲAe|ҕ C;s΂Xm @\\]PK SqϴDi ߔ5-E ?ִ-'HtNCwVJg6h4D#f.JϤgZ" )xʦ~`ja endstream endobj 73 0 obj<>stream HWI;uEjs#xo}pSIZܯ%zb$ ΚI1c)Oa=}8fanN,4rufv?lC p]:'{Wtu0|='38h%!Pܯ.| J=Lah{Ƚ2I+{mմ>Qux^XP3vq~C?,&|fT2[U6VĴxa˼f-{YP?!K?Scf ]:n幟eK}'4*}*F5=*ݪ|%i0تZOXx3!6l0y}pýZ5,k]Q08kL8|("/?n=`N8.3U Gԇ˰Ϻ]u\vx\eR4oԺ]f㸌-$H]2`Dn'yB'Wd 󺒑"4|Bp,cKfb݈duvF)t No2 ePx~`(Dz|w%=fspQEކY,7NCm*NWϚA^s`aH7 .[z14p/9uLI@Ё" tF^=W!R=WYگwZWeWBi] }_ZxzЦ4<и"&8Wx^iF*w\Vq;.1v4j|o8nueww9/aq hI#1KVm3FM9>4蚊ն9b0zɡj@~vov[1vggݽx`x%KXIE&`] *0yUIVTYy;%GX!ױ% S/'^J+4+zvP>iPD]z; l|oWPa(tw0ʰokW<|\u>]q튗g|\wӮxviW|\u^>.V4]9B!nqiȮ]QtZtqsዸ𝸹E\".N7݄/ws9[O\7E0ԋ2c:6rlC,E(˸soxPz]YvX^R&6aZ<6YH6X'i.Xe{Ac![,L{[,{`b!{$~-fq!q!q!CCcCǽ߭ǽ8{{{q""gjn^,Vl2601x:RBPӪB,w?ԜwyF)^vׄ=bߐ?  -X~E6IJ[}E>G(RZ:W\^ѠQZ ف@f̓ab|!n!Vr`FPt9܂"!j+h ܂޶Y/j(o$>C.8p -h5k0L&#Aizsgk X#(}C#nk ͭ3z,5T0qM'4q߇ ~fdlGn!o ~ yO/v muԆco6o(b~yHW_ {FFuxrȩ#:9bMhb e, Wy`^*ɋ7炶82-@j yr#Yr?+ƂMڱ&< UE8MQ6jYoʹd>URPkU1yxt"3uc&2 tZBˌR@+KoSN߫D}#gSly_pohUB_L۷Uߢd?ke'\eJ7(BLl|n j|ڪj4!Z}#U K$ZxWt L7 4,xX7v@rQ?ZN6~?̐ 9*6.0-Vqz9TRKx;`NW?UؖEɂoUP{ 'J&Olǁx QC}uTag|b˄-|w$ $6<9Bzg*^ .$hS|J(B ԉ i'^{IneE׋el̢67NPp^ ? _y@HـY ؟椊S~mٱR1B6 .QX=ns9|Op妴+|z7y?b*ECt#+y(Wz;,Ղw\ 3s0pՠơN# jF 2p SI-[s{a_0F$h/ugs(x.C% 1Լ)cM!+ٿO|pH=s bZڔJR[}Fl/\ j(Ȏ%O1~e˰9X=| B콳,qc'rA-:^Vtν*T{|JUgIZ dDXD8füZGU/wUgVa ^Th΍W"b;IjK/ ^*|jǑA *> %K+ʅ- hJYcEN2B9 E1G1:+?QLN[ 2:PVڇ++KlYX5}3q=`≯[ Qh1FVH)`\xi>5ChD!Z֌L:R%j Q_;0[Y(Q^] d0WQC  d8ۏ"L@.NB,~E4Fsa*putp")X|ROzO,KRCUALLMWTyBg[Sy8U{ W%.CKo׷$f9BF1+-1l*ӓ1o61rP?m.ҟS@|3{K+(_9E}453K]0О!bPlT|XG'y .ҩD@d}nXЊ8V~8nwǒXꙝ S>ӭ7lyi8S0h#=`4ؼIWЄzTFڰ0kq il (2CV~ iYwS^it칫O_f81qW# 3s͠'L{BKPsAon/Hp*b^GǻNeU,4xC9J `fHv N2QW-m#t6'р*К국䷓MCԴ9Oə\U?q!o`8^pȯ趌ۯI>Bz#h$$+]M(nonf]ssHFo2Wr7B<:{wPB 6Q_fρ^~k= \Fg¦IxWb΅fu0e8Gr,x:oc!OO@CJGDQIлa#8)N.Cl tF񞾏ɍ$ ;q(. 7BB/m_Y D^7&R,xMeF4 ̘xhtxm̹n =bQV?<ǖwtyGs ?.EI{ cktͳf 7R\Qi"dDlNōą#m_^(SMxkƎ ~Coޠg)Q2ĪBC!qf=HwD)n/Z|'2/z^Q nN$}mq>枯|̐#Dmgxj\5jBFw77`eHB/?jz?=]&4'ʗ*B`.J pZur$n{Tz "W :s&aJqig Ks]7F͵qЯ9 _!ɗQ8PM*]o#ed n+z[ roL4U Fl_s{@.ɉ]]2g+?>?ǎ;'T k.cy޾BT_ U^(VCy*7V p¡2cga~|ak{.T'˜-k:}CKWne7?!+2.V4pKJ$šPnCl~dSmGz#_'5а ~-~^{8nP a7e7^ Rw:=B7O aJ>>x0pƅDlx.Eȁ,J,Xo/l*?d|=0$ (g]M3M< 2[b}FY<s{J]M}6:W\藼!! bj([l#W[y m2#RELeDnf1M,W9m, )lY`ؤx, &[\%-x0R|LVA݋ VM'Ҩr&O\F¼?qx)~h&3nXۥ2#/ą a=jޡ=ޡSsv[C7]TK+sXɼ vˆ\<'%-5OjhbEKKՒu)C2WGUw }C֓+ ;fUtǚq0/۱9Ъ2d W' 4Э&2[PK%_v{62dɱ7;R|G~)fݾՀ|FqUe=$^eb:6EVV@ G Y8%iXSFh+NvNFKuXJsk]rw%&;?s2jCtu g4 U8A1d,r9Oߢ_{; [9qZ3kL[=ijLLόjZ\- )u L(3X^6Rg10EKBeh06d-aq&kt7<9ʨhl>܆fKQ7̠UAlrr qw?O ;KwiDM 9,[71^o%<7'\ McCG[H.4OJ ]<9+r`_o#!keHٺ5.e,?W@TX3L U̪Yd`1ސhR}umn>耮Ù'lsڴqcb[Z~%G_x, o\s. -] =dAe@poPg],WDr;F'Q8Yld UTAW j?^o˳ 㞇1 8)'Ӗlc4b(fO hkV1Ӭį僑OhplA s*eJs#;Kj‹Z\T{ U r/1׼ Β00˒k_6L߫V3AewdQR@|0H`8k \[ ;b |* e'| rU9v顏 &X_s^:'+ePF. G#*SN)K|%İZUu 6e^<cD*ߣ>2&n3ys(~43Au:I7(ܬbE"Z>. i pa+#>U_P(Ey U)*gؾHϯm=QMk3{ewnYfᆠz"6ݏC$J4}=va:5mo>#6/蓰 ??p[% VռmAU²(~yM,Kjُ`sK@U$ym~HYoI@pTq nA{DZnڟ_o_MIx|fz"v7ΘĎ`n{2蒻LM &SIL-Mp_o2uL-MHדL-G&S1Z#ӚA XyJ|Zd^)ɶXy_rޞ$d^jV/u~N: 6&({™s( Eg4q:Y <[ܰ1zzoD1n5m9B Go}#z?=8&k-z_,M@Y?V4ԛ^L\ћMmUD0xD^u z2+̨hW1@t$dk6P-O/nX"^Tol빺kJHHO˿WMIL6S:4ʑmX>l>3M'vy7qAn̋]wuB5_0}XKލ] m6_]#oX1ЯvYpJ!g`b$m;j9# `A@kͪ<~gv2yk2`^<[VCˊY0LИ-R,^4EM~ShL@Ζa3;8\2S ң2?ig\lt=NUt8f> 0>N0ج${ Ppk !p„Q4/HFd i zAxݗ+$cRa"a4TZ ׅؾyBNTKha|94یIm9zBE l/\*×k4#5+R6dC͗/=ǯ?k8<6ew,:*R0Mw1ou7@=ʓ`mOrf$*n5 Pɛi08$t>Q-Emcb;-3O-_$(RjecC23iF!S]05M/̟%'˔˰L uP D@,(>y~gVߧb2,SϻKA3a珲/OT-~#{*ky@Mfo@TX/[-7T, 5KSee\L˂!`r}P~eC͌tm~"`$^B!R{m\ۏuhs3J ǟ7Ko>[3=olZM;-v;@/̟y=jB|λru:mPE̚&G\ !Vl.P*3%D`te}G.NMZlز"`V[6y=l,/rI lؼϤHBGtBۨ=s 66sX*( H,hT7Ku9C x.݋8}яy\U=H1{!؞O+ͻtEv55MLm khwz;S{6d§~$_?Bb HHd~<&aB٩9iFN񄍳o2bqXhgwDn[ud3OnλmVURjpcX('PQJrdmO<׵5з7#^ګ@q 4-9<$P<;[zI|=uBzHv1|sٴ2ʎkukLfD46+t .?+8 ^t~rk_5_r[l wu-ez9!䨂^,Q0}tC*(@{="8}M3mkLcHB?}l0Uh?Ō2T(4v>^g0߿zP Ky~-(Ũ#MFZ^vCV=.ȑzIN|vbU4T}b4<Z[9r`JÕ!u28*\}^71Q~N_=|qX5E!S*Fh{ uEuAq%ӏo-!2 bB(Y "Z]\eU]` f:Vkc?oF3c`GGcbLsQ+3ZblbqK-(Ɔ>[2ϞS/ b}.EMj^B{1MQSnVݦrż mʻ?t[4l}IP(eTcZD.ؿzlx@ "Ol½[/4 7T+H QKUV`B f| "K U#oqG 8 |~o͉aܚLQь+fD9p.qwk )b/CU#z7SfsnKCX~u5Y@G4ɫ%:x6X]?x!Up8<a&J)$Fl0jƎgFJNсsF)ɲ5 2r:+  gk F&DMp;bJӓw(;OeK-Wj519 .{쯘4#Yx߫ݵk'tvPn/”VZ퉪g _X0,ٔu* xvXS:b (X* 0g&Z< }~Ȥ+`Taf. =3m4gRY<t"uO>0jEM;H8J k6m@/˛0K֙5!G;a{GgT. *ueڎ@^n544 R6|w+k.FŖ&SN Ӯ)rM]L M뾹 hz1U i|M]Hh[e=IwU  PuzrΕ8>Aw4Σ WThl~DfKHNL<%7;˃Xb܎ht4d)6L 1qs{ywNw8kEVX4l/؝x2sϯ*\_`dt&ǔn*e#sЛ$Ŭ0\`l߼WG$9+mA']ȚXAáaڣFpvXIq7?>?fٝ*sm\H-lBO$Ojڝ~ݓݏ4GJ]†1.1鄨33$ܶ1W9&̀ Bj@PRf]&Lw8]ʍPW :7JU Ă#{15yȣ<ūg#,E8^RZNdی"R"ǻHQL!ܰ )sضH$Rh? &wfy 9KP*)zLT Q16!sey3gCI5.{]m =Z[Yv{\ 'wmL$s ՌdS{<<˱C8rϓE~ɏ bE6\kv60L'!/Q|oHt,6c`F<@zDv@PmX hgrv4X#٘6/8x4rZ9gm %(|D<+: ʸ~:.*|Y< ;BV~iƦbj)ޮΑXB1()JWfG\qEpaB0XNǀ.$gViq->-?r:-Ix)iaeU5lZ킬 LGix!LȻؕ1) }ngar]N=\5sCԳc`8*+|V^Xv'kb~T'5y]rl"lJ̥,i.2싘oCErlGjv-\V < E%cA~qgB7(>RY!H咻&.L7DUt=Bd)af~}1R ZQ4|ȰG+`a:ů")pe 4pV 0w4q$/(d6NWKkHԩɈ"RsZT7aDaR^W!}7wjQx;2>A]ԍyW1ӘԠv[FZpy3UAyW'b<Ԥ_YRp┧n$Gq+n>6rb'MII|/\J"c6p(_|tI endstream endobj 74 0 obj<>stream HWI$ +a|L\R3) bu+n_6Us>[~fvО.fNk}Jq>sndk/б'}'S7'WK_@(g [yDUSyx_[ާfQS&7ǀ+Q~Ҵ b#H&Rj1iP }{q1M Zڜp4HEJ'{ghZQ d)o 1pa: _ǟwϕׅ la9\3/JČW:Ry)ɡK!+xp+('rRq]rmQ`^[|/o= ׎-9m1"6$@ۆ]; `oLj3.(f[DS} bpjw$[V^cEYPKz3tUw8Ү֪VP5|,݄`3AyOC>tN8{ޔ @Z6?$46*8Dp:׵JM8!1 y4)?ey&Q>CR ]qjǑhGe.9zT!+3 kJl&kIYÚ^8[5 ?~6y!ln_^p=5*G(PeQЭ)_7{<H;i,hzAˆ{-\^{.ӘxpӅX憈,𖲪:hIp>)(B7cEU.ּWD|4Zs<߄@##P(>@笯0aǮM0h;N,z…rI&AůR? ⫤w]\>IQ\l;eM4l P#FǀWСhz"^=xcߋy҃0x4i]1䰟dqݨ_U^"**ÊZ),pF+~W㝕RF+˜]Q.r;QY[%x{4.gp%^@Gj ]7ѼW9.vb1 76ba2u8q3r +QDQN=G GVT (me4 |a#bK[݄'}ylIR#S 3CGu+zinBF6a9{kPŨ4O?0q,C!:甝a8I ݻe'Lmx{{lp0Qsy`N ʐ ?͖"@.7I))1μ5VvxZWͣ'JyX ]S2k!wVFΨj}!EPƔhIK̷"J^H"[vҮ"Q$k"5 FZ+MGL1J"BLԾf5*S%G 'tuM95qXIN׆mxlQ :IpaE'3&l:aI2>[ե2v{ lt(K7{G t/NKΙT kOMZfk>8o-DžvlF/cbG1a_1BḀmomWޞq ?$!2d|)cJNт%e/m?9JSOOYX'uYB&םt+v8&Ra4TcO^^(+pvMnEUgReL,oC##(^zd@$˽o6Q<bmүm_3/5I $lIin-cFHޗŒzt40?hWF C~@^q฻V\6U _"Č-y<8uc!X ~^TCYF.5&vSB$I_e@BIM ̹é'Dozǯ4>Pb U.rY83E}ueQȌiݬvܭ)scz.HuJ]mY7&@(kxT' 4섰ݗe@NU\[%"Qk v% B^铣[rVo_; ǤGx ?܆P|:IHd; M$B*;u%,ͩVIkzYXAZiZ_n~뒏e^oVNߛuE ZL$DECt*H.d|,. FƠC ]'4g\ى@=#jh|̪:a;8UjDZebb׭OK-K8U,RlSRSOdQ+ ިAF++܉z \D8${YΣ4CVW14,eγM|0!֓2DIoAf S؟ʃrNo~iQ!x~.]vK* z&B=)loL%tuKZiD0EԶvV|~, Li@~숑iO_ w}PͲ&]q5p>w߰V^z`T.Pu~b7w\֣дǰ҄=D>$G7{{\@@=Ge͇Q!onjzƐ *4(< <1N9G2wC/( .p5ք 4jE6@xvS"ď;{]VzhYz:KP2qə. S(a, n-†.¥y-F}CuXQ* A^@ dfQ0s]&\hi^9߭cg:v.40az8,.ϣX&mbc0|幕@}̅q0o<;p\A;pͯ&Dc7cnfX]a}f3k6e۲ }17{Y>m ZVѬm6 a[ vmW;L`'yB&?>$~i>*\p&pZ}p?rLm*ɀ "UmԀCp2/&&"trPSJSn[khPoaU VըJ,n髩Zޤg͊PY;1)lw%nGZR;-ߏStyڮ󴉝Dm5A3Oᘶ7Y N|MdR5yQaKCT9 ei&wST,ͧ=aw`o. #ʃargR-X f=Z#  _8J/=Obc Z (`5G s0iǂvYWTZv45f Wpd9Ht l)9نqپ~C2Г߮} N/e&/|oWͅ JZϮ%qaf6:}!.tvjɅM`v+ؼeQ~iěҀ/ ҂K:u{~@0<:(\_s+ +4*ycg[>] ySY(vO]-t ~=z؝DB ˒)Ͼ< 1*ܬH@t2|Boۊj.ٔF:\_Osvn/N[[>rN͕jHӉF֡*Đ?X`9l!|P-!ЏeC2Vх m/jC/!]Dž{`J_ܾQ`M*2m:`Ser8#>/,>>d U[wU9x|ZIon%[qnZ)18iK?ܠ'#U{P",ynȴrlZa 9"p}9GBq#mZ`+.a)@Ŷk_ N^bG6&=Թ aW'QʅbGgTE\)(dk mѠ_\ W\n3{֛(]k^DR+,bڣL8Ag1Wq v 7%@N6?b;̹-,X-$g_3P4\эj(HY)ILqmnKh֟Y1MS:H Gg FTdQ0H,˪;zZ|~阈BK+ڝVBj#}Y;x‘%wCݍgpq6gfKdMxd].6]'َn3Aٚu܉BUFw[8,I⿖;G K2-Hp7{D$:BCibh* \RMX(E6,شkw;#p_l8Bpg?1+ٮb\.6ƓP c j9nF6,89vFs+= E1Uv$mFu#m7m,k>.˜w~ CXD#4 D#fJpQ\R,lڧ˜yC=@ww/фxO̪wfxy{=W Nc$Ӿ|ܤow^#lyfaqd&]L[HT>}idƊLq6 aLO־gee#A0%LbNzwHEP*r&v;NJlcżcAWv>>.ۯYk}G\%u˷l9Enk4Ƭ7'-( aa\ <⇶K-mLH'b .غ㻎fPt]3п "`~~iТ"WP c`kr l[l;q#dHWLMf% : Ȯ 4%% hpr ld{ yDRZ9Y4shv.C t9.OG&b .غ;4lA>UCGw>%hhS`TsVa4_, b;*܏޹]lC+msj3J ēK`4?"[)_E-ږb rMryw }H"=SY!×iK[܎zEZ%m6oNyV$ _ yJ[A[+A:S\5VHڛVF6Yn\1ɷp7Ϸ<9hH˱)XzetO;Ww/84-bGtt F?k2HH~kk؄²-=zh8SC/Aj8dORw^b| e"e1]K`"ۯ Ks'w6w w J6tTh^h#.kq;/vď9%形%J>Jfy01grj1u'LNa=5BFt-72ؖ֓&Z+piW➯K} oς2v5pYh]SDk&ע6J O_d^ta60y['*L'ӻ2~4T F7ԗa`DT-MwDIe$s\lKەx\,( I犿 yxĵ0HfA_,|b[G'p@/rk[{8R gj{Q[ @[lCxDmmm$|2G֟h ޿3N x;D<C-㟝} ˹ nʕ;o}CBd|7̒;|~Μ)C*0ڛ}& T/>Cɉ):%#<a#Cg Ak;D˛cÑd$7[Sis<%\Jc.Nf OP "C./OԎݖ9-n:#'Ӳ>s;0b0sS{#AwbzcA~kZd[Nvִyjܽ 1,hhF@xdq^NN7nסljXmp`#Yۈ6NN6\l:{̚mRp9쉍2wqʻ ?{F2UpwUչ1 R]B_)T:7qQyqW!FF#" olέ.jUB!ou83mqsjEZGE7ٰ|۠f[Gvxfs`8mQ2Q wA~+-})ADds[Qچ.]yc!#gr0{m=w_d[ۺ>s+(#wTƆ} #ьs2 ld& 93gs\쒶+W98 zd@_le8U#NWveྑs\lKەfme6 XFw><.&0] )ȉʷBja_0q"Al{on'7σl ˻ .}~ܙl ׌*ц'  9J[\ep`/m̘!{8 sqb˻ ?yEj)=ق˻ ўemH=f97t9>9i : rp ˻ \d eNZO:!O yB*j|{[`ĎL܂,Lt%Н.C;_\L?L2[,r-"+Ufη;Ӑ/p]qnO{;qPL*Z|ZPlQ/=߼Լ[S}: kbڹq6WU\mܝ눾džȃhBS #"qfן( ѵKnDobEM}kY_fqDW-Zsd=!25KqMe6\taˣ1<=ڐ]HDQ9}qC" oa¾µ_*P 0Cl8" ɛyg1X=[pyѓ]>s?QP2)f9p)2[m'h߯g[~Ȃ7[>ʳCCNo0=2&OvكO!;bk~Dc8YȆ7vڙ%΁9Cs̫Y6 x.lc:wA~W-+ps.}nPբnPn(O#q8wDƌ/yHot+ȏl<yv_ +nrKGrldע/vqzcjnkyq1s ~;)*gW_~B_6?fACRc긣˱>㾯elȞX\%& = ݍ 'F!8:O;qkgt.'Z['I.e4.}7 7F.d'BfZDP>r_& 8ɥ#:6v9a ]QcHxl*">djlj/W{36c&z>jsDiN;f( s\`hx2qZ&"" O7q^2)XmȰJWq6-7vq gJ@xp* xeFkk 9JZf;ٰIr5(/?ޢk}1h;a".Nb^dȮ\νoʭ`bI|!sf:ڐO~p MFXW<ʋv6Jq I6tB6\08#!~y6JzKvøx>Ѭ (_v6@'ή>HLI}evvpMgRUJm>>y0QȞ)i}*ql{ơo7;*Iأ?ZqYfP9dGi]=x{8O lv~ߝaoz<%`,M!(ԯS>^O=PC΃]8O[،<V@=]:iTRVW"oHй <3飝fbnRQ=`gČ UJ6 8fcIGz΄791Kn}d$~N]͸ȸެjT|j|ʗWQ.c%Co- v`jvΝo L_k$6Oh%>]zx#mmXwAOJILй 튜~DjtM: P:0 F_KA'xa?_ORo26p슜y2eoeMttLᨨQlQ_\c?" ɬt 6^ 4O5jJAh,'l4 ]Z/&xN} O6Nخ9yiAao;]R'9S d++rNO [Ŀɍ>ðN/R0lv:=cf`♞vk{k+߈!=Zlz@|yMvلz ;ي=S0j޳XmeaqJ?`BxgV>%p@Vhgn,milQБ>acFz,2EŬKӄ/62foHw3+8 0wH.{6oȄ)쨽2mLΪpήlvFΎ=1G(*PNv=3{%i= ~eb/"&SVlWy=9)@#`?a٨]ŶЭL~"h,פ*+8|=Sm`eioM@L!i$Ùf6NumӶt-6rXE%S X(1ή/d{D}Jr}l`߂pNB;#30́k0F)l;|NXidn+^rԳ;AN(yydY{Z¡ DAo D5g WO|`6BT$BSEbnȻwlW~mS;TT3h:v&O &n~c2xf &q \lvEfM KfMy4{v!nl\E$p@΃ǗGjV F@Pe$ ã _ϡ?Ҹ-6gMdbo 3Z#'J`E ?_+76Xdci6=6=&ȑ/Ova^кPM&) ++r36x *=.O+Lw,&ڡet q lv8Nh31F,Q: O۶$oT%seD#G=5{_2ݔ4> I#ʤcJ2)'B熩mhO>kj{NhiZ{x%_/{8& hr%T3ewxgg 2u R30SHʔ' 1\dL''nxWsC<`Um3sgY[DP.X7g,_< 8Z3@ϙJW@=l skjR%~.ٟoQbhr1kQmm挂=r7hԤJ%yuxvl݆{n',|2M68v=H wr49ْv*g!.A P4@4 - ^6d[GQ}9^L6΀f'[.XOkQY@M\ܚvk'¶gF[_[ Ʉ;7ldc)=wn~گ$I$cKh/.f"uX6 >L2uq=(9n$y#!1X7Kl{^ˀÂЬ&Tzǎ X2{=GI&4 ]ʯǥYy<.|>ZED Mx\4#Ʉ;7uf3pY΀C kBmJv]h%؂}bvNSf7ɾ LY,؀h`ʔ1Pi׻/xhm9JMNʱiU{XV.q$4 uBN?װa7;3NmvgxVtr9#6;,o?rN& A`,/J俞ѓ=i hrSکhKM2 yv 4&ƃ A^=8JI&3zJ?_Ò^YʇWNpo<A=P|תfv9pDN hr%T~V/ !bw׾D pӧ;9lI;_Y$gюQ,'g{wt,F+2N΀&'{eO5[&ۻ:i^rbGgsݐƖ&EOv]+i(I`n5 BMϿ-e97>q#&.͉r9J;&Ĝ\tc?zwOˀ{sОfK;"*PnϒJ।K2=sݽΰ[bGY6˜'FK7gAon>8NĚd ;ecC͌8=j{sű\78 x{qh^ ]infm;ݞ` C8_dOiӭGډ0'ƴJ)RmX(%k~tN"8b/Ͽxs&dKۥ=Sl WN@ 3'þ8O6c|yl7mvǾ`>stream HtW;% m`y&8!|2rW2:| $H-[VJu8[^ޡ`Z@_0j~0)]SzAU69}ev9bpv*dWڕ^e&ctIe82sػs}Pt $ګym9=mv\`;a-+ h`?鯛i,w slJ;[2}2X6}XQ{'leYA\6_ K|;_>˞0`Sڥ܏e?M6;+_W.g0,` l;\\}f 9 Pv)՗ .w +"+^eŵ+.9u?ec}=.ɖFڍ#X ¦)m%ma삒'eМ鯿ҿcyk}&0!;;-UeJCov_~oA=fo屴ݴMܬ0]Ӏ`Sحګk5u݋յRۂ]?2 cnM4֥ a`h뒍W_߿եn6z p^e ^r5FJ*mг#^)vSJ"Pq Uh)*ߦ#Yv)-EmaXziozᛆIX6 4 #]R5RP~_kұUe 9 6>^H/9Z.(C י4?hr'>9.:5T];gH]ǹF@lLF8!vdCi@tw3<=0ANZlYz???)9 v)l/Yd3[霹܉YDpi̥gˇ ;Jǎԩ9Z}#ݥFi)3hGF6a/ ogG_=i0|G>x0"E`S/g>|dznn|tk|+L}TaLl +!RHL |Zz hap5FP]&s\ +-M@ӟ65vD$|r0`Sۭ 8?IA/ƪh \\GO:t%AzFP)V,~ڰ{{S>hٻQu {\$/cÛk|'0ÀFCUWuX7|eYW̮YWJ&̺u ; N6=-g =!KX_:lbO}GQ DPs <&<佧Mu_$z7|q4Ș{F_KC!lN.~"U>i7Mvi=oII,9Ҡ'|S: k["[#-P曧9NjG'VlCKב %ֽdtvl%<g<_}ݎQh@dlе#iypZPٱ{`r!of}Ȫ IUӸ*踱n8Ȏұcz.ץ Ei9fqҁ,-\4̚vjT_< |8矕x,vzc#lN mdP(?Nź$9晠Db'ȆLԩҋ3ew':-ma+/ ޱs_NLsUπn{%2,tkFnlF;.{2 "e~u~|L2?tHۢ\sAJ4 SVRܥ3 =79Rdϑaz@VD0bQ:ʛ_ש!zaBĄzrqXVaqTRu>ۨUDpLwE]:"k)cGbc;Vq}뱺J4 ,tk<ڞei4)edp0 zHvz}](3zD̝=F0 e"xtH^i@TpUդbG]P(`P9F!L NŸZ$!\$u(B)B'y($_\#LZ]'53HK%`W.q6pJ4 bPz\u^IQ XVdOu_$  Bϡ6%JLl( !nAyZ dƮrDj#*xߨa/MC(XEtreUD\Q^7~*لRLkwۥg[J~r$̰?wnϿم(ҀR!]=hW_LþGz^Y7X BS= >>@&wli;G>|||}!AAZl셺j>^^C97llPI{)  2wfcqlwh9 lI;c<˭$c !ܲ&h2B(*=,}$Pi@d\[g h=6UZl"?5ZFb; k˔|EC Hj;l%r/s CymW(ri S-|g6Q-dtKd2Fh2B(*}.{K$Pa`d|͙24%n{ el:ZmF2\GKM(4 :vh?Z&'-A H lP6ZB{{Mie2zRtH4@PKEh 9 6k({  2 &!n^b3 L6t2~nc6n{?Dhe~ ٷ~@l0=w?ޝѺO2=T`Jӡ⏳.Nr}#C Ȕ 癊T} (;Rv(lN M[ni̷Qfou-ɹh?x\S؀DNϘlӶ53/?gUH7 '-E&s"8ِ=ik حb_rZ 6ֵhzZ<`ӶRMΦu@wISu|o)3m[솢Eӣ zd]oYlMm#;Iۑ ;xhZiX)h= a``KۡgZ5?(j>/V`ֶ+#f>Zbw=vh3f+CCư)nty(o{o $׎8RuƗYir/ߝW ;>J"~jW)Ago||cg#$^x8qeJ]w?>൧Oup8"a\;dR*Vl6(+Ž̅PЀ\dl(cݶΝ̝; 6#5]Yÿ9 ("zgu仾9ـF_^1O?/x{ S>*-"4i'ab- ?8_sٞ(]fJW]>?4D+ <5 םW\LZXd f`PP]I̼D, H[KJ&\8ـFNOIg|Wi'B< h.vz9glByɆS{cS}wBBH |?Ǻ}QK-`Sۡw-Ͷ^lEBu* hd%?Pi@tԎz{=&#>#"E`S/g>\^=~͂d);G6yXg * dźzog 3rP؈jߌi?ʚSpѽ޷+? 쯧-Gh4@ PI¾[!H(4 :vj|7M ~3)0 tdJl7R/ a S!SwR6eݦ{#x2C|3nHedtMir/Ϳ]v==WrTr/i@ۂ͞;^|Zs DNhwLfQf:R8`ZsbV9=89NRUEGMqOZ~b* 6{&cwkol[8sʧ=R}sQz=F3~| lsjSrޔs T:4 C-}+Őu;3zي@SAC6Ri|h6Tg]_ӡBCJdȢwisoH D'N푏 66S]bH@  5B+<+Fƭn`n HʎL{Tl~ AdC.+ϹL00:vh|]kV]ن*mP`-z¼޲L00zЎJ;5R4wJ@ 9R,\g2_syƯA&o:ȔuʎT֎^W989* 6{fc9ʧʼqH[w2vho(#6cX?m"Xݺ~'0SԞ*\xVp=$mwO_u;lPi``Kۡoйg}wɇPi"3_%&ـF1+,3빿2vzW"G\Nr*\ܿ溍&sl ;0Q2~ #dDBءWޙoY؀F:هp-ؗڝ$4@ِ f=6G0}qH[\쯷b\+!j]ܗ?qf5ຒo|s-5ɵ+_ {̂vtnB@;[۴> 0}03Y fF<AD.! -`B )9`Z@S;}ӟq{Pşb0w@|qw.چ;Z8K{Ý`<ڠP3%hV} b_x8F-X1w:nv}WL9?5HNF<'݂ق(9dgvK M4 E98ƒ%W'D۰ V'PS0mK୥m^_t%TɾՐ/' #e8R1ݝxZR$v+5w0oڍ\`Zrn^Yͮs|62i%mヅ_`Ō}|62&G"}R^kQNW~L4yU1gP@i8fZF))6LݍuD S+׹EYܘY4fm>N.x58=NˁYL$ dEGIb]8`8qĤ_>|?U #U0a/1=~Q-N]vr@Cuڴx!޴>c9!x1fyP71I<ЦS0ڦ!]6*̸N{% F:H87Be>Vulhr4Үv}?1]Itx ad[Zjb]kiW(]WP%4Zj]RV1*אѥ\+εRHRnBN YR!`(ܝ8[`Ch#wK(2UDƷH[zUmA{j,OlW*f^igS17ceJ}΢mv$q042Q+xϽS˸оSh^8wjk=ը P{7ĐZk vT m:S˩mZҵ"WKG[:N{rq\8tWRk ]bJM3𭩘jԙ awbYG1kO9B;8Mh)6iSџ}PiYIϱ,s*ov l"1TNZtM A[O Z&?n@ 5rc-en=̭ CE#AR|#vз~GΐUcN0y'xVDӃ#pӋϸ9Jw@ޫ Gu2Ma(M-aK9XX~5cwkL8eKWzk ]aJM3e[9/R3;d ]y fL)uw̵:Os/^,; ,P\SuqvE6v\iɎmhU܎N?nؘ!.w/4{ ėfT2prE*vl2ش~qGè{~9ڮ>dAuz2`i+c>:?MC7b*) [ I+-^wf;[L- !+mەLۓ_) [MZ,{M"<#Zm~N1'DJ[9Y$JA$f2 x\Cg'u4Ò^GiM%$7)WD}]ȻӲ^q`}H`F>`-Eea6}{[MkF$JtGIdUs :_0f%a:S#cqmR$*/u+h 0P9jjP&TdH{/ aJ(I8B!ٌҘ3h* P;e vF(q9Q7PzPa`c[q@ܝEbt'Ӯ#oֵ{F.{x?*&D`\9폿fTe{f 6Ӧ1liBg;@}6kC Eol PDSS :x`{i OAКP8+ +\Y#y{m% tPjhRv5R/\}U\֞=Fe*܏o ˸}lRkU bxn=-Yh+89=φ,ۈl8`.Ԇ480>nرo e)|E5i}t2LCt#.8Ô8Q(wk`W{l8-f&}f) hS6.6trkB 6ڊ-'?m-N" |z7)@mEOz8߂#[_&-gjvp2Q$ O#z% f$h$dHEI"-IZkWApTIRSH0O^"-K9s9d,*3J`IQ!dǓdu] I,|%|3a<4iװ8z3K^2i2qYIc@_[8iばm%mb&dLGNGh5ڂ-%Puti㭻ߕ npMŎ\nZES?q5u߫Ǵ۳M@-5|p-uw+./'ZZqvz6a_pp"T.?|.Ǧ/H!w/fz[Vei7- .n ՂIlލoM}` =kǟ}6l8S|_ŸI>>  @>Kq)q#(< E{x%xobcB_I|m#Lחq"sb.# [IcuZ'~\?#11@}5|s>дfݼڒ-a RTdNvi!u6d(XxUG<\~*! '0ahEJ woj? ӧp +x=;ݑ]ԛi7ٗ$ehv6oO! v&|@1s]pp2+mL۶!*2IhGhHsmx4+T۴Xa)<(|X+lސ]{RAB3]@2S2FO}|#P wc#φ=H(^J$}x Q "-Xe,xȗH_!z#(I,Nz{tVAڌGG ,EϰݻN p<a)}9pWvKP)H>-O3@ V I3 I~P[7ެWۏuBړ3_fjjlԘ[鴒kwM`p:[ +M#Qؐ)a.Hɡ=@Jn9砃lm퓓5#x&f8,)Sm+cm;g2iF Fh+Nnha6qk-.dn][`&B.# .S<5W$ S۾iu1t)OqH-"E1RM*E0)I\J!kW!s>"&֑OvF?:GXťn7U}e8;N>wq) e=fҧv`@F~5 iy7KD;]LQ?}Q8da2!6sj2£2D}tP*aHaO<U5QqXYKH6R朦% h{PmNncΠ/dx|; XVZ`Ni]6&: ?tuU>T|>6'ȷR1#ciK3 PI_J+ do?j@̘wKkMo wFE]ǟ #y'7xg8c6'Xo>a6qcFy&+ߓ;%kPIM  EFv@57dd'pdksFe;KmƌeMN(x2'_|9YrBր!kH8c6'Xois 4F~ ߼|F56=K+|Z)#x26xޱP!Mw3}<7ZRؽt7͓<{bqmd䝑*G:7@X*/]yxc8ŝ(ey)<Ɵnn7O27 9ix&_{e[楳G,o<y^(u?xR2jJ\GPCY|q(EV MeVsI/CaPR12yh~uve`Gs#ͷ:T.ړ$~c}nw!YmڢNba/? ޗSpSv]ЧC^Cn'Hl^70i}yc1|(J/uxy .k6 U83Zs.O"#mSqj5^ʹކQ?guzUB)S9P}DP)@]Gұ@~>NoBgZ_]bKP<Ŷ߁L^ߍumJ)c/]ٱ0pS A"uo;UԶ7~.#e${W1oHP8&eB%o%EgP ,r\X) )3Z C) n@#2ze~ \ug>JqVzWBcPf `8߻A%w ݀&GX"0 ]oa&NJ -,͚%L|c@3Xy[9m[_΀w`$H3OEߦ-dvJ#te_ApkI:@ـ)KCϋ0!0iWVGJtFH@{]\xǥȹ(u}k0Mg/O$qǧ}6'/z_m7Zw)v_|;e-,_|K> VX@p,-BIИPy~ii(씫CrM{7=[>!s> l/f9o{a-'/VNk6 I;\ْFaYQ],7Ul&cHs-00(BUe!*R6j\ H VåEu`qn9x nH#kpr%8tk^3aOܪv"R&KD}> ct?k#M޼BB%w y*jsOSݯ[f0!+< @$n)N|/;CeV*=m4]+10SRn~:cXJQpzy5O Ho\u_uFH@Չ b<|oS3Fa#! 4ceRT¦1|TkBf! Kfi4/P5#]c=jصff#BPUؓyws /7 ,JDȼ[T2G͝02S2OU%:gc25, S41̈v .~FI8J8,.`@@#v-.Tz bjXX o@ƥ<0QM j0@`e`#0 D10P kbPj EL$WG೎PUFP &Ȁ,Cʚp[&`)E r":8B8SRy&#g<2 W"t>stream HtW;-' g;z}X*!쬫GI,IY?_S)S6E}^g"Ypk/4St/ 'kxr$[ږEt3|ˌ?ޱ# xj4DЫnK$>o({0$`3$e C.K#%FXXK>jlCRAntmAː7f|zsb3,kNK7Ȋ2kG)?M02 Ӝ7M}WUjh|__}<߿$>`t5dG֦6mZh01ڋ-%9n{-WgR]!OY͈WPz`CSR<ǺXW['iX}QJ>GLɋxް[>mmoNeuMJyL-KڊuE߽I~VI5oqAb3aGS-Ɋ`F388sێ ;Lwf|Ő9\ ieP`r Z2q1rñt)5Ӻ#w-vmBH6|ʻK|9v\|7zLQ?e8] {a&Ee>I[ܱh?QfnS]2KXUБjn|Z~jUJXzg%VO 1lȊoGW>_\lPCoʖl}C &ΰòϗyTߝf;?;HSJqn -0A)h":;Xpp.ݳAA#@ #AslkqB-ϯ2W~ }#_-5XNXuqu?\'@!a^}  qt ^0 ^_=QgHiN xCI(UBI8!xDq"g40FviT_-ĂRO@4;N1k'&Y9(6Gw{y=r% {vyh`#B` q_ :nswLVMlD*PS yTSB܁*~yw ^ %T"BuE!vm hjY4v @# WK(~ P3n3!3| V\%1n36cCH\9+"Ul뭒m|Y{liρsVT! ;$X9-:v&")l1….'u$[d$'$ݘٙ0c Ļ*Enzk5'Mi!ߐlTnKLp48h r;8uN\nu&r9@q즱Mm-3 Ml_N'lo\>Y}׉6B Uk{wuO@P 8j  Sܡx{`>wb#go6=JZX_;jY'V/jDž-Fp>tD^T&U/VNXe; !fIoR#sRzÃh9M/^|vP0f9|5؛*a;WW9rʨ8`g; G jms] !$#}s=B}T!F`=8‰tu0Ĺ;vzxTbAkA1~΂{=$<흰y:v{mƆr5y E}w/cpɍ<8U#3.9#% :K  8Cu胤]<z0N>"$ѮQGO$08!xDqkԁA'4ե 7Wgwi^m^.Gޙ ԅ9-Gw]#-B܁:0C3x@W/ \> t g];_I4WJ=+#tu(XJ7x:-UAvnjSJv׳۝9S܀8cvvn03x_s~/ᷖO~oW~wQ\^6/ǻ@@tv 5h.g~O!4x\]B_wp*' ^PΓW!TC XGhBO^ `:;*#<&|"!]%I6>{ڤS̈́kNV m:ԱǵXpm`HM\\^"U^vN/y& 75t0ayxI-<`#^жʒe׿*S"Cy~iRIF]_'H.}_x;[XzlB}~8!)Tcav\vZ c'$lx"ӝYBsjN$}lD`.Eâx僂K{9;,qMr͖&w:ik_vؿv`<=uLB8lTWYbec߷#ela@f#EhpRǧu{?7Ɉ0y'ɹ` |i2| CVllpdG#%By|h;r_)oT`O)o)|wJ-`IQpZ%R6R<G*'%sV1ݔiC#~:{JMo< F ?Ix,G~/ȀC!q KJ A']&/gWb'T0y1vKЃ<nG8!x30 ,xMP@N]h%,b:c5ѥP>}`,2~Bjl-VIPX\HCk"47ӀUAkVy߷#JC207lz~]No{N*9u%9-ip8߷# vv34lx 2<'#ʺ\-6H>AzcSm皙f%'cC{yX]sqwck_c4m>]WAŻ ^3vq"eȘ|%S> n<7p`J\6GG{y3}C|orX?3KqNCiMJD.we[贈l"\2ɤ4l=Kr|tKvfg! U(w҆:u7B } Y3 L |Ht?LYK_B6BL?o.O$L)#H$"ҐP9$לCI9$Q C$ZH/ЖrWN~;~~PWqM߿0 Z i~(H_HGq>vWJ(ғ8 ؽdĜ /6/eݘ|c]>#XMN,$?udfro/e?Gb#J%qK咠m^B5w' -9`y1K{7e=eXhᐘeozSxnmpKMh7m˦go^! V`P]w=n>M x@m썌}RǴUP:ߌ|3Z-WuXFWx]>ɖ ysdKb .2ܟ_6@aJc(<. cn!n3I"c-rn7[Ҿ3k܃c>`DmCby)Q]fOND$f9(2K7l[n58̞q3so-veYP}nRiW 3jZs^ beX+v{فxjh:ܔ?k a"YSJqC+9Y'b ca+Dm3&3/43@Cm`2uGwly w6|m=/f8Ͻ7IɺN/Tۯ_ABB.;a( >|+MlXmȳŕ]tƁ3((8- otPhޔ ,EF!@<2l߳1cEcL>z822ljJkCݳ+¬"'ܜÓ]v\'&v v6B-&Hoޯ47ـyһ +JLne.m{< ~Td@l<ՉZ-NOvih6 q`lB,qg` j゘|f߇.[CU`>8jٰ͖۠DmW 輽C-8ؕE-6'GtصF\eb[ڮ<鍺Ʈ# m:n5CBpFUX#Ln{NxZ-렩Z,e}eg(cQah1",آǁAG|~R~[}6vgx{|Ѯx([2 ;e: |9 uۗ^B`SZEd4>{!0+y{oށZ}-`9NSjA܌]?X$)΄(c)U2市VPc17Mr3udtmTB|Aq4e)v{F_F˵ :Ydh80=l2*30~XhUX4N=!BCEWgN L1-#6;9U=)<͛^'*;rfIy61b2ijȆ'բ>iFFx>ƆD'Aymx57X{߳4A.ey&hLy㒖Cu )lɵf'Z~m#'oam y+w9LQTW$HaȉupRKG"!3# L~c͌V;2޶?bm[LE,Xm"KWy&`6ZOg #3 d3gCMF[fYn(#xk}2I-`9A-i_h&>{ gCAξ*z-`9A-i_*w_M1sbfw:te !Z=QQ8qq,w'bиhT~mбI-MY[0N5~3 =]ːźY˻K} }[,& oam}g0׈?br8KX{Ơ:Taܙl3ʭtз3޴B˳ :W\kHq!* a)sFhf3D1v SBXNJkM9>h1pk x18ޑ {=ejzфʧL|d7U\;3~d3yPlhaPs]{ٶ۰۠Ŷve4~3+:ns^{33(#QG6CrTWK( [AIi˖dȬd"[PO|?drnmin=佳 cws 6l dZܣ-n]>ڵ҆ʈ&R q{;'bXmC?gݎ~j`ۃ>i̍-MlijOZ7gONN ^~6l}fPO51]m9%ZLl,k+2X*Þ}JcZ]Cyoj"$SlqkbG&Ӳ>5XHdVI 9ʆ]?1r lyƄϹ#_l]G>׌zم@ft"}0ߵ_U&kzfks[l gF̢dCdQR`zb$w<|G>\d\'>ʹ$H Uk#'5F`e(`n6ǥ^W#Vw]lkhUCOUCGw=e8S`TsVa4']9*܏؆v."[Wz%h ēˣ`4Vnmg-XΉ+6ɥ죜w LmNǸ{)l\-nCm=[" -28 ÿ[ZZ.6a8kaʾʵzv顕!='՝-|20kYLA28ֵΝ\#wr+<ϼZQ\$xgkt-, Z|']LYNR>Prn }6\ȃ7Ctxeq| 5ӷu+q sfJW6Ѷ~!̳,̇+^\כpZ|7ڻ|W ,%~D?8:Hg05ƺxPj, +5}$6:RڵUhZU wQ YP]=+m[bn*-c,almVT V0\ Fٖ'ˀBt`hkmcn?`6Pj׵$cod Nn6wl:2Ƚ+qu8Z7ڽW4TifʟG$f&GA`Г'SlOͅL8'IqkbN5특 Żt E'` .n-P:&O,]SDkkQb%Zƌ$N/3/0"yc + OV`#$wAem9+" .4T$rDYFob` 00"T-Mu$s^H}# .28ؖ+W񸢠4$+6*U\ Mp#8DrLB=YpŶl%7he97:^䎨m [@Պ{Q s[ @[lCxgAͶv _Die#_sOߙ'R <;9QC-㟝} ˹ nʕ{~$+zYnLlk/._zLA&-Srw(eįlysPxsl8x$#!q[0yqj}FFZd\'}]i*˿3 _CYKS/c |h&vd2-#.6#. GA}jo65@*|ш-W9u|],|dlML?S](‚ܙzffHs:;;%O߼-^-ayŶdm#{,ϗ8cኦvx*/==Qx.L\ep]G5w2sNBLqҹȋlfS 5֯Y|۠fKW6j{R^uW g!qcf3mqsjEZGnaAͶlQit=xy.qh )D[XEpf0gv `~ mqD"a;.*NoCG6,68幙SkfSsgyh{&L9JGR-^>ڹ̘){bb syb˻`|u\mptKG;ڐ{XC;szoT,Ñr}8i : rp ˻ .s''~0a Ļ>W )mTP;r K\;2%^m7惋s p#Z 2ňSOZ}#[,r-"+Ufow0^л{cu GV"C_@3X#,.]}r~BaGFĢ j'9KpJ!AG-+Dٖ=Y۠f+O`!Bi \ C{x;N ؚ_Gqֵ+a9Avj{L <>25Ct,KC<n1 ]?W-L9\}2n5ED{ZE{A 3G?`V?~(IFBNGMQz GøRTEbjaiDž>.WG31It>l9i^xw81@ d rٷ>@T8N߹-t-ĎSHwBM" -$*(GU@9>- \bϼ)}Ƕ *)ܾ?Ƶ;ǶU z?uoy~`xu SG۹}rWɈ|eC? =ex756á_wF|'s*8ٕ'umS6uXeTu6t@d_+Ñmq » ~~A"Ȃy<ɕ's܊򽕽 jbd[ӭ?8Z~hd+h2+O|)!h{_y\ept'wix=RmCqH|wV3oNv|;I˷ mo1c& a T!f1qpdz=1|۠f+o,ag> f'  (Cb9C86&rL{J+>s -~upfȶ'HX8ZSb;OR73@D0r3cףF,|b;O0}#F;<$m:{Bzϯe~A,6]G'rDP<3i'5o-/`C6;tTBy'ϯ좵~aZl .sP{-x\78t!4V~ruƑv-)ފ,b;=syx!nZ^6d踷<܅qB µ ~MGkmsJ87U^]gX^k=dl^ .1{^?FS]6xTNìsIy'ϳLH20{>~J2 AwuW靐A_dءEubĹ|ٯX3P[ZnFv\,dz[dmBiW9{N"6a٠tTY-l6~7d @_}&_5^n2a:߆؜lvG~8e< z&M2(s}qǦ$)+da %\|(08l z$ `D N݃"K7ckQ4D';iaA'4) eq`}ր^$m8lq7Ʉ8 |rCdWWsaͅW8 **LO5EhI&ܾi`g\Wc<ӯe}48-!F ==Bz+`z߆]lvNQf/ɾ DY,Ȁ5h $h([y4HQr4K mNB;#au13Pu]S_?_০W .΍5H' OZ8;@rN6'[UwV Fj]덵}o?T]rӏumNB;#i2S8|leX[b~@a`E&id9ȡ͓.\4[DzNNy =PR RDn?r ?A@_alDt !a۱Ǜ?W>2}W41q)NHU%6a:'*+n܇UעqgqTp~!i2~ĝ{jbf0˳ľ-x25w3\ͥ#҂]lh a/ڜ'~#'Ή7 jfF].~荴nX2zGؙV2-q5 By7G\)K,|E.jU*a:NmUHg'.  YM8a"{Ŷ^͹ndn4hw{=Y>W.@2_ XOhs% %^qH1cل; -ҏخy1d|08l 1baO/@e'2vlNB;#ǃb? lu slA9] !п N0Z%Hh i+בּ{9l(L.iS\;0Pbu%luj>^!Vd\LMX̛N7V3*F5Ok2Ȭ[>gygx6bf!ua4"vrjrKTǶjwƁv _T ٝyOS+O{3P]>TC=)'jwaȯ[*7_!`;N헫ú)\P+Ar^} [hyM(.ۑVo^qq%ng8{S ;351٥#yzKަ0PawCߏbXi|OޢaxȄMM,WXyA7v=8Xxp֏L¶WU^2~&SWS]¾qn{qt?@8j,'L%?YD5~Vd@MMvΥ 0' endstream endobj 77 0 obj<>stream HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 N')].uJr  wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km endstream endobj 78 0 obj<>/Font<>>>/DA(/Helv 0 Tf 0 g )>> endobj 79 0 obj<> endobj 80 0 obj<> endobj 81 0 obj<> endobj 82 0 obj<>stream Final Artwork PrintsAdministrator endstream endobj xref 0 83 0000000001 65535 f 0000000002 00001 f 0000000003 00001 f 0000000004 00001 f 0000000005 00001 f 0000000006 00001 f 0000000007 00001 f 0000000008 00001 f 0000000009 00001 f 0000000019 00001 f 0000000016 00000 n 0000000146 00000 n 0000000231 00000 n 0000123453 00000 n 0000123583 00000 n 0000123668 00000 n 0000180381 00000 n 0000180511 00000 n 0000180596 00000 n 0000000020 00001 f 0000000021 00001 f 0000000022 00001 f 0000000023 00001 f 0000000024 00001 f 0000000025 00001 f 0000000026 00001 f 0000000027 00001 f 0000000028 00001 f 0000000029 00001 f 0000000030 00001 f 0000000031 00001 f 0000000032 00001 f 0000000033 00001 f 0000000034 00001 f 0000000035 00001 f 0000000036 00001 f 0000000037 00001 f 0000000038 00001 f 0000000039 00001 f 0000000040 00001 f 0000000041 00001 f 0000000042 00001 f 0000000043 00001 f 0000000044 00001 f 0000000045 00001 f 0000000046 00001 f 0000000047 00001 f 0000000048 00001 f 0000000049 00001 f 0000000050 00001 f 0000000051 00001 f 0000000052 00001 f 0000000053 00001 f 0000000054 00001 f 0000000055 00001 f 0000000056 00001 f 0000000059 00001 f 0000182554 00000 n 0000182606 00000 n 0000000060 00001 f 0000000062 00001 f 0000182693 00000 n 0000000064 00001 f 0000182914 00000 n 0000000000 00001 f 0000182992 00000 n 0000183172 00000 n 0000183257 00000 n 0000183291 00000 n 0000183367 00000 n 0000201180 00000 n 0000218031 00000 n 0000235596 00000 n 0000253004 00000 n 0000272989 00000 n 0000292604 00000 n 0000310132 00000 n 0000328505 00000 n 0000331174 00000 n 0000331298 00000 n 0000331374 00000 n 0000331463 00000 n 0000332654 00000 n trailer <]>> startxref 336105 %%EOF gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GBL0000644000175000017500000054161013421555714020431 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Physical_Order=5* G04 Layer_Color=16711680* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% D10* X4043Y3447D02* G03* X4012Y3494I-52J0D01* G01* X3852Y3937D02* G03* X3852Y3937I-72J0D01* G01* Y3740D02* G03* X3852Y3740I-72J0D01* G01* Y3543D02* G03* X3852Y3543I-72J0D01* G01* X3707Y3480D02* G03* X3694Y3514I-47J0D01* G01* X3707Y3480D02* G03* X3694Y3514I-47J0D01* G01* X4006Y3397D02* G03* X4043Y3447I-16J50D01* G01* X3968Y3494D02* G03* X3974Y3397I22J-47D01* G01* X4043Y3347D02* G03* X4006Y3397I-52J0D01* G01* Y3297D02* G03* X4043Y3347I-16J50D01* G01* X3974Y3397D02* G03* X3974Y3297I16J-50D01* G01* X4043Y3247D02* G03* X4006Y3297I-52J0D01* G01* X3974D02* G03* X3974Y3197I16J-50D01* G01* X4006D02* G03* X4043Y3247I-16J50D01* G01* Y3147D02* G03* X4006Y3197I-52J0D01* G01* Y3097D02* G03* X4043Y3147I-16J50D01* G01* Y3047D02* G03* X4006Y3097I-52J0D01* G01* X3974Y3197D02* G03* X3974Y3097I16J-50D01* G01* G03* X3974Y2997I16J-50D01* G01* X3852Y3346D02* G03* X3707Y3355I-72J0D01* G01* Y3338D02* G03* X3852Y3346I72J8D01* G01* Y3150D02* G03* X3707Y3158I-72J0D01* G01* Y3141D02* G03* X3852Y3150I72J8D01* G01* X3428Y3937D02* G03* X3428Y3937I-82J0D01* G01* X3529Y3679D02* G03* X3495Y3693I-34J-34D01* G01* X3529Y3679D02* G03* X3495Y3693I-34J-34D01* G01* X3406Y3138D02* G03* X3457Y3185I4J47D01* G01* X3463Y3061D02* G03* X3382Y3096I-47J0D01* G01* X3457Y3185D02* G03* X3363Y3192I-47J0D01* G01* X3356Y3611D02* G03* X3390Y3598I34J34D01* G01* X3356Y3611D02* G03* X3390Y3598I34J34D01* G01* X4006Y2997D02* G03* X4043Y3047I-16J50D01* G01* Y2947D02* G03* X4006Y2997I-52J0D01* G01* Y2897D02* G03* X4043Y2947I-16J50D01* G01* X3974Y2997D02* G03* X3974Y2897I16J-50D01* G01* X4043Y2847D02* G03* X4006Y2897I-52J0D01* G01* X3974D02* G03* X3974Y2797I16J-50D01* G01* X4006D02* G03* X4043Y2847I-16J50D01* G01* Y2747D02* G03* X4006Y2797I-52J0D01* G01* Y2697D02* G03* X4043Y2747I-16J50D01* G01* X3974Y2797D02* G03* X3974Y2697I16J-50D01* G01* X3852Y2953D02* G03* X3707Y2961I-72J0D01* G01* Y2944D02* G03* X3852Y2953I72J8D01* G01* X3382Y3027D02* G03* X3463Y3061I33J34D01* G01* X3852Y2756D02* G03* X3707Y2764I-72J0D01* G01* X4043Y2647D02* G03* X4006Y2697I-52J0D01* G01* X3974D02* G03* X4043Y2647I16J-50D01* G01* X3707Y2748D02* G03* X3852Y2756I72J8D01* G01* Y2559D02* G03* X3707Y2567I-72J0D01* G01* Y2551D02* G03* X3852Y2559I72J8D01* G01* Y2362D02* G03* X3707Y2370I-72J0D01* G01* Y2354D02* G03* X3852Y2362I72J8D01* G01* X3694Y2216D02* G03* X3707Y2250I-34J34D01* G01* X3694Y2216D02* G03* X3707Y2250I-34J34D01* G01* X3374Y2325D02* G03* X3366Y2346I-29J0D01* G01* X3230Y2901D02* G03* X3254Y2911I0J34D01* G01* X3230Y2901D02* G03* X3254Y2911I0J34D01* G01* X3159Y2585D02* G03* X3151Y2606I-29J0D01* G01* X3159Y2585D02* G03* X3151Y2606I-29J0D01* G01* X3091Y2665D02* G03* X3050Y2624I-31J-10D01* G01* X2867Y3034D02* G03* X2867Y3038I-52J4D01* G01* X2867Y2931D02* G03* X2867Y2938I-52J7D01* G01* X2799Y2988D02* G03* X2789Y2984I16J-50D01* G01* X2867Y3038D02* G03* X2799Y2988I-52J0D01* G01* X2789Y2984D02* G03* X2743Y2997I-29J-14D01* G01* X2867Y2938D02* G03* X2862Y2961I-52J0D01* G01* X2762Y2938D02* G03* X2799Y2888I52J0D01* G01* G03* X2799Y2788I16J-50D01* G01* X2837Y2690D02* G03* X2867Y2738I-22J47D01* G01* X2901Y2530D02* G03* X2857Y2557I-31J0D01* G01* X2831Y2788D02* G03* X2867Y2833I-16J50D01* G01* X2867Y2738D02* G03* X2831Y2788I-52J0D01* G01* X2799D02* G03* X2793Y2690I16J-50D01* G01* X3276Y2436D02* G03* X3255Y2444I-21J-21D01* G01* X3276Y2436D02* G03* X3255Y2444I-21J-21D01* G01* X3195D02* G03* X3159Y2440I-15J-29D01* G01* X3374Y2325D02* G03* X3366Y2346I-29J0D01* G01* X3279Y2270D02* G03* X3223Y2305I-38J0D01* G01* Y2236D02* G03* X3279Y2270I17J34D01* G01* X2857Y2503D02* G03* X2901Y2530I13J27D01* G01* X2832Y2480D02* G03* X2823Y2503I-32J0D01* G01* X2783Y2453D02* G03* X2832Y2480I17J27D01* G01* X3129Y2359D02* G03* X3150Y2351I21J21D01* G01* X3101Y2400D02* G03* X3109Y2379I29J0D01* G01* X3101Y2400D02* G03* X3109Y2379I29J0D01* G01* X3129Y2359D02* G03* X3150Y2351I21J21D01* G01* X2858Y2370D02* G03* X2808Y2398I-32J0D01* G01* Y2342D02* G03* X2858Y2370I17J27D01* G01* X2753Y3890D02* G03* X2769Y3928I-36J38D01* G01* Y3852D02* G03* X2753Y3890I-52J0D01* G01* X2769Y3946D02* G03* X2664Y3946I-52J0D01* G01* Y3928D02* G03* X2680Y3890I52J0D01* G01* G03* X2664Y3852I36J-38D01* G01* Y3833D02* G03* X2769Y3833I52J0D01* G01* Y3651D02* G03* X2683Y3691I-52J0D01* G01* G03* X2696Y3740I-84J49D01* G01* X2669Y3672D02* G03* X2664Y3651I48J-21D01* G01* X2381Y3795D02* G03* X2381Y3795I-54J0D01* G01* X2272D02* G03* X2272Y3795I-54J0D01* G01* X2751Y3593D02* G03* X2769Y3632I-34J40D01* G01* Y3553D02* G03* X2751Y3593I-52J0D01* G01* X2664Y3632D02* G03* X2682Y3593I52J0D01* G01* G03* X2664Y3553I34J-40D01* G01* X2696Y3740D02* G03* X2669Y3672I-97J0D01* G01* X2743Y2943D02* G03* X2762Y2938I17J27D01* G01* X2712Y2997D02* G03* X2713Y3005I-32J7D01* G01* X2664Y3534D02* G03* X2769Y3534I52J0D01* G01* X2713Y3005D02* G03* X2663Y3033I-32J0D01* G01* X2607D02* G03* X2563Y2987I-17J-27D01* G01* G03* X2590Y2938I27J-18D01* G01* X2260Y3394D02* G03* X2283Y3425I-10J31D01* G01* X2327Y3685D02* G03* X2327Y3685I-54J0D01* G01* X2283Y3425D02* G03* X2219Y3435I-32J0D01* G01* X2297Y3005D02* G03* X2248Y3033I-32J0D01* G01* X2205Y3351D02* G03* X2226Y3359I0J29D01* G01* X2248Y2977D02* G03* X2297Y3005I17J27D01* G01* X2205Y3351D02* G03* X2226Y3359I0J29D01* G01* X2159Y3275D02* G03* X2173Y3308I-32J33D01* G01* X2148Y3174D02* G03* X2159Y3198I-21J25D01* G01* X2148Y3174D02* G03* X2159Y3198I-21J25D01* G01* X2163Y3795D02* G03* X2163Y3795I-54J0D01* G01* X2054D02* G03* X2054Y3795I-54J0D01* G01* X2218Y3685D02* G03* X2218Y3685I-54J0D01* G01* X2109D02* G03* X2109Y3685I-54J0D01* G01* X2000D02* G03* X2000Y3685I-54J0D01* G01* X1945Y3795D02* G03* X1945Y3795I-54J0D01* G01* X1933Y3430D02* G03* X1885Y3459I-32J0D01* G01* X1875D02* G03* X1854Y3451I0J-29D01* G01* X1891Y3685D02* G03* X1891Y3685I-54J0D01* G01* X1875Y3459D02* G03* X1854Y3451I0J-29D01* G01* X2173Y3308D02* G03* X2142Y3351I-46J0D01* G01* X2111D02* G03* X2094Y3275I16J-43D01* G01* X1980Y3308D02* G03* X1950Y3351I-46J0D01* G01* X2084Y3205D02* G03* X2127Y3156I6J-38D01* G01* X2087Y3033D02* G03* X2087Y2977I-17J-27D01* G01* X1925Y3409D02* G03* X1933Y3430I-25J21D01* G01* X1952Y3265D02* G03* X1980Y3308I-18J42D01* G01* X1890Y3319D02* G03* X1889Y3302I45J-11D01* G01* G03* X1887Y3293I31J-8D01* G01* X1889Y3302D02* G03* X1887Y3293I31J-8D01* G01* X1760Y3286D02* G03* X1781Y3294I0J29D01* G01* X1760Y3286D02* G03* X1781Y3294I0J29D01* G01* X1959Y3167D02* G03* X1952Y3187I-38J0D01* G01* X1887Y3187D02* G03* X1959Y3167I33J-21D01* G01* X1765Y3206D02* G03* X1786Y3214I0J29D01* G01* X1765Y3206D02* G03* X1786Y3214I0J29D01* G01* X2710Y2943D02* G03* X2693Y2938I0J-32D01* G01* X2743Y2910D02* G03* X2710Y2943I-32J0D01* G01* X2693Y2882D02* G03* X2743Y2910I17J27D01* G01* X2590Y2938D02* G03* X2607Y2943I0J32D01* G01* X2322Y2670D02* G03* X2318Y2687I-32J0D01* G01* X2449Y2659D02* G03* X2430Y2668I-19J-19D01* G01* X2449Y2659D02* G03* X2430Y2668I-19J-19D01* G01* X2707Y2435D02* G03* X2702Y2453I-32J0D01* G01* X2658Y2408D02* G03* X2707Y2435I17J27D01* G01* X2536Y2416D02* G03* X2555Y2408I19J19D01* G01* X2536Y2416D02* G03* X2555Y2408I19J19D01* G01* X2708Y2312D02* G03* X2757Y2340I17J27D01* G01* X2782Y2305D02* G03* X2782Y2236I-17J-34D01* G01* X2672Y2295D02* G03* X2667Y2312I-32J0D01* G01* X2553Y2342D02* G03* X2567Y2301I37J-11D01* G01* X2650Y2264D02* G03* X2672Y2295I-10J31D01* G01* X2465Y2398D02* G03* X2478Y2427I-25J29D01* G01* X2465Y2398D02* G03* X2478Y2427I-25J29D01* G01* X2401D02* G03* X2431Y2390I38J0D01* G01* X2401Y2427D02* G03* X2431Y2390I38J0D01* G01* X2415Y2307D02* G03* X2434Y2316I0J27D01* G01* X2415Y2307D02* G03* X2434Y2316I0J27D01* G01* X2318Y2750D02* G03* X2309Y2769I-27J0D01* G01* X2318Y2750D02* G03* X2309Y2769I-27J0D01* G01* X2257Y2478D02* G03* X2263Y2495I-27J17D01* G01* X2192Y2463D02* G03* X2203Y2468I-7J32D01* G01* X2089Y2797D02* G03* X2057Y2748I-4J-32D01* G01* X2165Y2447D02* G03* X2184Y2456I0J27D01* G01* X2165Y2447D02* G03* X2184Y2456I0J27D01* G01* X2249Y2421D02* G03* X2257Y2440I-19J19D01* G01* X2249Y2421D02* G03* X2257Y2440I-19J19D01* G01* X2021Y2855D02* G03* X2038Y2848I21J25D01* G01* X2020Y2938D02* G03* X2001Y2929I0J-27D01* G01* X2020Y2938D02* G03* X2001Y2929I0J-27D01* G01* X1976Y2904D02* G03* X1969Y2895I19J-19D01* G01* G03* X2021Y2855I26J-20D01* G01* X1976Y2904D02* G03* X1969Y2895I19J-19D01* G01* X1755Y2703D02* G03* X1738Y2697I0J-27D01* G01* X1755Y2703D02* G03* X1738Y2697I0J-27D01* G01* X1838Y2550D02* G03* X1821Y2546I0J-38D01* G01* X1838Y2550D02* G03* X1821Y2546I0J-38D01* G01* X2141Y2389D02* G03* X2132Y2370I19J-19D01* G01* X2141Y2389D02* G03* X2132Y2370I19J-19D01* G01* X2242Y2362D02* G03* X2242Y2307I-17J-27D01* G01* X2179Y2316D02* G03* X2188Y2335I-19J19D01* G01* X2179Y2316D02* G03* X2188Y2335I-19J19D01* G01* X2277Y2230D02* G03* X2213Y2237I-32J0D01* G01* X2252Y2198D02* G03* X2277Y2230I-7J32D01* G01* X2201Y2224D02* G03* X2193Y2205I19J-19D01* G01* X2135Y2283D02* G03* X2154Y2291I0J27D01* G01* X2135Y2283D02* G03* X2154Y2291I0J27D01* G01* X2201Y2224D02* G03* X2193Y2205I19J-19D01* G01* X2128Y2360D02* G03* X2068Y2378I-32J0D01* G01* X2118Y2338D02* G03* X2128Y2360I-23J23D01* G01* X2068Y2199D02* G03* X2076Y2219I-19J19D01* G01* X2068Y2199D02* G03* X2076Y2219I-19J19D01* G01* X2035Y2178D02* G03* X2054Y2186I0J27D01* G01* X2035Y2178D02* G03* X2054Y2186I0J27D01* G01* X1838Y2207D02* G03* X1887Y2178I32J-2D01* G01* X3852Y2047D02* G03* X3852Y2047I-72J0D01* G01* Y1850D02* G03* X3852Y1850I-72J0D01* G01* X3531Y2189D02* G03* X3599Y2121I34J-34D01* G01* X3531Y2189D02* G03* X3599Y2121I34J-34D01* G01* X3466Y2074D02* G03* X3492Y2110I-12J36D01* G01* X3454Y1670D02* G03* X3450Y1687I-38J0D01* G01* X4043Y1557D02* G03* X4012Y1604I-52J0D01* G01* X4006Y1507D02* G03* X4043Y1557I-16J50D01* G01* X3968Y1604D02* G03* X3974Y1507I22J-47D01* G01* X4043Y1457D02* G03* X4006Y1507I-52J0D01* G01* Y1407D02* G03* X4043Y1457I-16J50D01* G01* X3974Y1507D02* G03* X3974Y1407I16J-50D01* G01* X4043Y1357D02* G03* X4006Y1407I-52J0D01* G01* X3974D02* G03* X3974Y1307I16J-50D01* G01* X4006D02* G03* X4043Y1357I-16J50D01* G01* X3852Y1654D02* G03* X3852Y1654I-72J0D01* G01* Y1457D02* G03* X3852Y1457I-72J0D01* G01* Y1260D02* G03* X3852Y1260I-72J0D01* G01* X3492Y2110D02* G03* X3417Y2122I-38J0D01* G01* X3391Y2096D02* G03* X3381Y2072I24J-24D01* G01* X3391Y2096D02* G03* X3381Y2072I24J-24D01* G01* X3162Y1865D02* G03* X3115Y1894I-32J0D01* G01* Y1836D02* G03* X3162Y1865I15J29D01* G01* X2959Y1844D02* G03* X2980Y1836I21J21D01* G01* X2959Y1844D02* G03* X2980Y1836I21J21D01* G01* X3381Y1687D02* G03* X3454Y1670I34J-17D01* G01* X3366Y1614D02* G03* X3374Y1635I-21J21D01* G01* X3366Y1614D02* G03* X3374Y1635I-21J21D01* G01* X3285Y1631D02* G03* X3306Y1639I0J29D01* G01* X3285Y1631D02* G03* X3306Y1639I0J29D01* G01* X3448Y1315D02* G03* X3378Y1294I-38J0D01* G01* X3260Y1591D02* G03* X3301Y1550I10J-31D01* G01* X3239Y1487D02* G03* X3247Y1515I-38J28D01* G01* X3050Y1689D02* G03* X3050Y1631I-15J-29D01* G01* X3247Y1515D02* G03* X3161Y1487I-47J0D01* G01* X3226Y1377D02* G03* X3239Y1405I-26J28D01* G01* X3226Y1377D02* G03* X3239Y1405I-26J28D01* G01* X4043Y1257D02* G03* X4006Y1307I-52J0D01* G01* Y1207D02* G03* X4043Y1257I-16J50D01* G01* Y1157D02* G03* X4006Y1207I-52J0D01* G01* X3974Y1307D02* G03* X3974Y1207I16J-50D01* G01* X4006Y1107D02* G03* X4043Y1157I-16J50D01* G01* X3974Y1207D02* G03* X3974Y1107I16J-50D01* G01* X4043Y1057D02* G03* X4006Y1107I-52J0D01* G01* Y1007D02* G03* X4043Y1057I-16J50D01* G01* X3974Y1107D02* G03* X3974Y1007I16J-50D01* G01* X4043Y957D02* G03* X4006Y1007I-52J0D01* G01* X3443Y1294D02* G03* X3448Y1315I-32J21D01* G01* X3497Y1214D02* G03* X3503Y1235I-32J21D01* G01* G03* X3443Y1266I-38J0D01* G01* X3488Y1152D02* G03* X3497Y1175I-23J23D01* G01* X3488Y1152D02* G03* X3497Y1175I-23J23D01* G01* X3852Y1063D02* G03* X3852Y1063I-72J0D01* G01* X4006Y907D02* G03* X4043Y957I-16J50D01* G01* Y857D02* G03* X4006Y907I-52J0D01* G01* Y807D02* G03* X4043Y857I-16J50D01* G01* X3974Y1007D02* G03* X3974Y907I16J-50D01* G01* X4043Y757D02* G03* X4006Y807I-52J0D01* G01* X3974D02* G03* X4043Y757I16J-50D01* G01* X3974Y907D02* G03* X3974Y807I16J-50D01* G01* X3852Y866D02* G03* X3852Y866I-72J0D01* G01* Y669D02* G03* X3852Y669I-72J0D01* G01* Y472D02* G03* X3852Y472I-72J0D01* G01* X3297Y1084D02* G03* X3320Y1094I0J32D01* G01* X3297Y1084D02* G03* X3320Y1094I0J32D01* G01* X3207Y884D02* G03* X3230Y894I0J32D01* G01* X3207Y884D02* G03* X3230Y894I0J32D01* G01* X2991Y1149D02* G03* X2993Y1156I-45J16D01* G01* X2940Y1212D02* G03* X2901Y1150I6J-47D01* G01* G03* X2844Y1067I-41J-33D01* G01* X2912Y1017D02* G03* X2876Y1067I-52J0D01* G01* Y967D02* G03* X2912Y1017I-16J50D01* G01* X2876Y1067D02* G03* X2901Y1084I-16J50D01* G01* Y949D02* G03* X2876Y967I-41J-32D01* G01* X3194Y695D02* G03* X3134Y728I-38J0D01* G01* Y663D02* G03* X3194Y695I21J32D01* G01* X3025Y728D02* G03* X3002Y718I0J-32D01* G01* X3025Y728D02* G03* X3002Y718I0J-32D01* G01* X2993Y856D02* G03* X2984Y884I-47J0D01* G01* X2984Y828D02* G03* X2993Y856I-38J28D01* G01* X2994Y710D02* G03* X2987Y700I23J-23D01* G01* X3030Y657D02* G03* X3038Y663I-14J30D01* G01* X2900Y539D02* G03* X2922Y548I0J31D01* G01* X2900Y539D02* G03* X2922Y548I0J31D01* G01* X2916Y394D02* G03* X2916Y394I-82J0D01* G01* X2856Y2030D02* G03* X2815Y1989I-31J-10D01* G01* X2638Y1948D02* G03* X2642Y1965I-27J17D01* G01* G03* X2582Y1948I-32J0D01* G01* Y1735D02* G03* X2591Y1716I27J0D01* G01* X2697Y1675D02* G03* X2689Y1694I-27J0D01* G01* X2582Y1735D02* G03* X2591Y1716I27J0D01* G01* X2703Y1560D02* G03* X2697Y1577I-32J0D01* G01* Y1675D02* G03* X2689Y1694I-27J0D01* G01* X2642Y1577D02* G03* X2703Y1560I27J-17D01* G01* X2445Y2112D02* G03* X2464Y2121I0J27D01* G01* X2445Y2112D02* G03* X2464Y2121I0J27D01* G01* X2377Y2168D02* G03* X2377Y2112I-17J-27D01* G01* X2395Y1820D02* G03* X2326Y1820I-34J0D01* G01* X2322Y1875D02* G03* X2258Y1882I-32J0D01* G01* X2297Y1843D02* G03* X2322Y1875I-7J32D01* G01* X2562Y1345D02* G03* X2559Y1360I-32J0D01* G01* X2501D02* G03* X2562Y1345I29J-15D01* G01* X2844Y1067D02* G03* X2844Y967I16J-50D01* G01* X2448Y1047D02* G03* X2439Y1072I-38J0D01* G01* X2381D02* G03* X2448Y1047I29J-25D01* G01* X2384Y1216D02* G03* X2395Y1240I-24J24D01* G01* X2384Y1216D02* G03* X2395Y1240I-24J24D01* G01* X2276Y1247D02* G03* X2312Y1297I-16J50D01* G01* X2300Y1231D02* G03* X2276Y1247I-40J-34D01* G01* X2381Y1171D02* G03* X2360Y1179I-21J-21D01* G01* X2381Y1171D02* G03* X2360Y1179I-21J-21D01* G01* X2439Y1100D02* G03* X2431Y1121I-29J0D01* G01* X2439Y1100D02* G03* X2431Y1121I-29J0D01* G01* X2312Y1097D02* G03* X2307Y1121I-52J0D01* G01* X2276Y1047D02* G03* X2312Y1097I-16J50D01* G01* X2253Y2060D02* G03* X2247Y2077I-32J0D01* G01* X2193D02* G03* X2253Y2060I27J-17D01* G01* X2244Y1635D02* G03* X2243Y1644I-29J0D01* G01* X2196Y1819D02* G03* X2188Y1800I19J-19D01* G01* X2196Y1819D02* G03* X2188Y1800I19J-19D01* G01* X2236Y1539D02* G03* X2244Y1560I-21J21D01* G01* X2236Y1539D02* G03* X2244Y1560I-21J21D01* G01* X1969Y2128D02* G03* X1972Y2140I-34J12D01* G01* X1945Y2101D02* G03* X1969Y2128I-10J33D01* G01* X1972Y2140D02* G03* X1902Y2156I-36J0D01* G01* X1910Y2080D02* G03* X1934Y2091I0J34D01* G01* X1910Y2080D02* G03* X1934Y2091I0J34D01* G01* X2057Y1950D02* G03* X2008Y1977I-32J0D01* G01* Y1923D02* G03* X2057Y1950I17J27D01* G01* X2188Y1644D02* G03* X2186Y1635I27J-9D01* G01* X2124Y1511D02* G03* X2116Y1490I21J-21D01* G01* X2124Y1511D02* G03* X2116Y1490I21J-21D01* G01* X1842Y1675D02* G03* X1795Y1704I-32J0D01* G01* Y1646D02* G03* X1842Y1675I15J29D01* G01* X2166Y1379D02* G03* X2174Y1400I-21J21D01* G01* X2166Y1379D02* G03* X2174Y1400I-21J21D01* G01* X2312Y1297D02* G03* X2244Y1247I-52J0D01* G01* G03* X2220Y1230I16J-50D01* G01* X2105Y1331D02* G03* X2126Y1339I0J29D01* G01* X2105Y1331D02* G03* X2126Y1339I0J29D01* G01* X1933Y1405D02* G03* X1885Y1434I-32J0D01* G01* X1928Y1389D02* G03* X1933Y1405I-28J16D01* G01* X1831Y1460D02* G03* X1790Y1419I-31J-10D01* G01* X2023Y1297D02* G03* X2010Y1331I-52J0D01* G01* X1986Y1247D02* G03* X2023Y1297I-16J50D01* G01* X1930Y1331D02* G03* X1954Y1247I40J-34D01* G01* X2010Y1230D02* G03* X1986Y1247I-40J-34D01* G01* X1954D02* G03* X1921Y1179I16J-50D01* G01* X2844Y967D02* G03* X2844Y867I16J-50D01* G01* G03* X2838Y769I16J-50D01* G01* X2828Y664D02* G03* X2814Y600I27J-39D01* G01* X2645D02* G03* X2623Y592I0J-31D01* G01* X2645Y600D02* G03* X2623Y592I0J-31D01* G01* X2612Y697D02* G03* X2582Y744I-52J0D01* G01* X2538D02* G03* X2544Y647I22J-47D01* G01* X2312Y997D02* G03* X2276Y1047I-52J0D01* G01* Y947D02* G03* X2312Y997I-16J50D01* G01* X2576Y647D02* G03* X2612Y697I-16J50D01* G01* X2544Y647D02* G03* X2517Y627I16J-50D01* G01* X2612Y597D02* G03* X2576Y647I-52J0D01* G01* X2608Y577D02* G03* X2612Y597I-48J20D01* G01* X2357Y708D02* G03* X2335Y717I-22J-22D01* G01* X2357Y708D02* G03* X2335Y717I-22J-22D01* G01* X2576Y447D02* G03* X2612Y494I-16J50D01* G01* X2517Y466D02* G03* X2544Y447I43J31D01* G01* X2612Y397D02* G03* X2576Y447I-52J0D01* G01* X2544D02* G03* X2612Y397I16J-50D01* G01* X2413Y475D02* G03* X2435Y466I22J22D01* G01* X2413Y475D02* G03* X2435Y466I22J22D01* G01* X2282Y449D02* G03* X2312Y497I-22J47D01* G01* X2445Y356D02* G03* X2499Y392I15J36D01* G01* G03* X2431Y417I-38J0D01* G01* X2312Y897D02* G03* X2276Y947I-52J0D01* G01* X2209Y1007D02* G03* X2244Y947I51J-10D01* G01* X2276Y847D02* G03* X2312Y897I-16J50D01* G01* X2244Y947D02* G03* X2244Y847I16J-50D01* G01* X2312Y797D02* G03* X2276Y847I-52J0D01* G01* X2244D02* G03* X2214Y822I16J-50D01* G01* X2276Y747D02* G03* X2312Y797I-16J50D01* G01* X2221Y761D02* G03* X2244Y747I39J35D01* G01* X2308Y717D02* G03* X2276Y747I-48J-21D01* G01* X2244D02* G03* X2244Y647I16J-50D01* G01* X2118Y770D02* G03* X2140Y761I22J22D01* G01* X2118Y770D02* G03* X2140Y761I22J22D01* G01* X2023Y997D02* G03* X2017Y1021I-52J0D01* G01* X1986Y947D02* G03* X2023Y997I-16J50D01* G01* Y897D02* G03* X1986Y947I-52J0D01* G01* X1923Y1021D02* G03* X1954Y947I47J-24D01* G01* X2107Y868D02* G03* X2085Y877I-22J-22D01* G01* X2107Y868D02* G03* X2085Y877I-22J-22D01* G01* X2019D02* G03* X2023Y897I-49J19D01* G01* Y797D02* G03* X2019Y816I-52J0D01* G01* X1986Y747D02* G03* X2023Y797I-16J50D01* G01* X1954Y947D02* G03* X1921Y877I16J-50D01* G01* X1921Y816D02* G03* X1954Y747I49J-20D01* G01* X2023Y697D02* G03* X1986Y747I-52J0D01* G01* X1748Y825D02* G03* X1770Y816I22J22D01* G01* X1748Y825D02* G03* X1770Y816I22J22D01* G01* X2276Y547D02* G03* X2293Y556I-16J50D01* G01* X2244Y647D02* G03* X2244Y547I16J-50D01* G01* X2312Y497D02* G03* X2276Y547I-52J0D01* G01* X1986Y647D02* G03* X2023Y697I-16J50D01* G01* Y597D02* G03* X1986Y647I-52J0D01* G01* Y547D02* G03* X2023Y597I-16J50D01* G01* X2244Y547D02* G03* X2238Y449I16J-50D01* G01* X2023Y497D02* G03* X1986Y547I-52J0D01* G01* X1954Y747D02* G03* X1954Y647I16J-50D01* G01* G03* X1954Y547I16J-50D01* G01* X1992Y449D02* G03* X2023Y497I-22J47D01* G01* X1954Y547D02* G03* X1948Y449I16J-50D01* G01* X2004Y295D02* G03* X2017Y329I-34J34D01* G01* X2004Y295D02* G03* X2017Y329I-34J34D01* G01* X1946Y257D02* G03* X1980Y271I0J47D01* G01* X1946Y257D02* G03* X1980Y271I0J47D01* G01* X1836Y3795D02* G03* X1836Y3795I-54J0D01* G01* X1727D02* G03* X1727Y3795I-54J0D01* G01* X1618D02* G03* X1618Y3795I-54J0D01* G01* X1357Y3943D02* G03* X1362Y3960I-27J17D01* G01* X1509Y3795D02* G03* X1509Y3795I-54J0D01* G01* X1349Y3911D02* G03* X1357Y3930I-19J19D01* G01* X1362Y3960D02* G03* X1303Y3943I-32J0D01* G01* X1349Y3911D02* G03* X1357Y3930I-19J19D01* G01* X1400Y3795D02* G03* X1400Y3795I-54J0D01* G01* X1782Y3685D02* G03* X1782Y3685I-54J0D01* G01* X1699Y3350D02* G03* X1689Y3374I-34J0D01* G01* X1699Y3344D02* G03* X1699Y3350I-34J6D01* G01* X1673Y3685D02* G03* X1673Y3685I-54J0D01* G01* X1684Y3379D02* G03* X1660Y3389I-24J-24D01* G01* X1684Y3379D02* G03* X1660Y3389I-24J-24D01* G01* X1564Y3685D02* G03* X1564Y3685I-54J0D01* G01* X1455D02* G03* X1455Y3685I-54J0D01* G01* X1405Y3389D02* G03* X1381Y3379I0J-34D01* G01* X1405Y3389D02* G03* X1381Y3379I0J-34D01* G01* X1430Y3264D02* G03* X1417Y3261I0J-29D01* G01* X1430Y3264D02* G03* X1417Y3261I0J-29D01* G01* X1275Y3848D02* G03* X1294Y3856I0J27D01* G01* X1275Y3914D02* G03* X1278Y3930I-35J16D01* G01* X1275Y3914D02* G03* X1278Y3930I-35J16D01* G01* Y4000D02* G03* X1261Y4032I-38J0D01* G01* X1219D02* G03* X1202Y4000I21J-32D01* G01* X1275Y3848D02* G03* X1294Y3856I0J27D01* G01* X1291Y3795D02* G03* X1248Y3848I-54J0D01* G01* X1226D02* G03* X1291Y3795I11J-52D01* G01* X1182D02* G03* X1139Y3848I-54J0D01* G01* X1117D02* G03* X1182Y3795I11J-52D01* G01* X920Y3948D02* G03* X893Y3937I0J-38D01* G01* X920Y3948D02* G03* X893Y3937I0J-38D01* G01* X1346Y3685D02* G03* X1346Y3685I-54J0D01* G01* X1312Y3385D02* G03* X1265Y3414I-32J0D01* G01* X1237Y3685D02* G03* X1237Y3685I-54J0D01* G01* X1265Y3356D02* G03* X1312Y3385I15J29D01* G01* X1205Y3299D02* G03* X1181Y3289I0J-34D01* G01* X1205Y3299D02* G03* X1181Y3289I0J-34D01* G01* X1185Y3414D02* G03* X1164Y3406I0J-29D01* G01* X1185Y3414D02* G03* X1164Y3406I0J-29D01* G01* X1128Y3685D02* G03* X1128Y3685I-54J0D01* G01* X954Y3526D02* G03* X962Y3545I-19J19D01* G01* X954Y3526D02* G03* X962Y3545I-19J19D01* G01* X967Y3248D02* G03* X967Y3248I-82J0D01* G01* X1617Y2840D02* G03* X1609Y2859I-26J0D01* G01* X1617Y2840D02* G03* X1609Y2859I-26J0D01* G01* X1622Y2735D02* G03* X1617Y2754I-32J0D01* G01* X1607Y2860D02* G03* X1564Y2825I-32J-5D01* G01* Y2754D02* G03* X1622Y2735I26J-19D01* G01* X1738Y2697D02* G03* X1728Y2638I7J-32D01* G01* X1677D02* G03* X1677Y2582I-17J-27D01* G01* X1508Y2749D02* G03* X1443Y2756I-32J0D01* G01* X1375Y3151D02* G03* X1396Y3159I0J29D01* G01* X1375Y3151D02* G03* X1396Y3159I0J29D01* G01* X1310Y2878D02* G03* X1286Y2889I-24J-24D01* G01* X1310Y2878D02* G03* X1286Y2889I-24J-24D01* G01* X1344Y2830D02* G03* X1334Y2854I-34J0D01* G01* X1344Y2830D02* G03* X1334Y2854I-34J0D01* G01* X1482Y2717D02* G03* X1508Y2749I-7J32D01* G01* X1376Y2688D02* G03* X1367Y2669I19J-19D01* G01* X1376Y2688D02* G03* X1367Y2669I19J-19D01* G01* X1428Y2620D02* G03* X1423Y2637I-32J0D01* G01* X1349Y2727D02* G03* X1344Y2744I-38J-0D01* G01* X1349Y2727D02* G03* X1344Y2744I-38J0D01* G01* X1367Y2637D02* G03* X1428Y2620I27J-17D01* G01* X1577Y2425D02* G03* X1568Y2447I-32J0D01* G01* X1528Y2398D02* G03* X1577Y2425I17J27D01* G01* X1637Y2368D02* G03* X1582Y2338I-32J-7D01* G01* X1758Y2340D02* G03* X1708Y2368I-32J0D01* G01* X1537Y2283D02* G03* X1553Y2228I23J-23D01* G01* X1566Y2216D02* G03* X1585Y2207I19J19D01* G01* X1566Y2216D02* G03* X1585Y2207I19J19D01* G01* X1327Y2359D02* G03* X1346Y2367I0J27D01* G01* X1327Y2359D02* G03* X1346Y2367I0J27D01* G01* X1480Y2338D02* G03* X1461Y2329I0J-27D01* G01* X1480Y2338D02* G03* X1461Y2329I0J-27D01* G01* X1357Y2159D02* G03* X1376Y2167I0J27D01* G01* X1368Y2109D02* G03* X1372Y2125I-28J16D01* G01* X1357Y2159D02* G03* X1376Y2167I0J27D01* G01* X1372Y2125D02* G03* X1325Y2154I-32J0D01* G01* X1276Y2744D02* G03* X1271Y2727I34J-17D01* G01* X1276Y2744D02* G03* X1271Y2727I34J-17D01* G01* X900Y3071D02* G03* X921Y3079I0J29D01* G01* X900Y3071D02* G03* X921Y3079I0J29D01* G01* X1040Y2926D02* G03* X1061Y2934I0J29D01* G01* X1040Y2926D02* G03* X1061Y2934I0J29D01* G01* X1271Y2479D02* G03* X1284Y2450I38J0D01* G01* G03* X1273Y2426I21J-25D01* G01* X1258Y2337D02* G03* X1280Y2359I-28J50D01* G01* X1288Y2287D02* G03* X1258Y2337I-58J0D01* G01* X1277Y2154D02* G03* X1280Y2159I-47J33D01* G01* X1258Y2237D02* G03* X1288Y2287I-28J50D01* G01* X1273Y2426D02* G03* X1188Y2426I-43J-39D01* G01* X1280Y2214D02* G03* X1258Y2237I-50J-27D01* G01* X1074Y2276D02* G03* X1102Y2237I56J11D01* G01* G03* X1077Y2164I28J-50D01* G01* X868Y3912D02* G03* X857Y3885I27J-27D01* G01* X868Y3912D02* G03* X857Y3885I27J-27D01* G01* X682Y3946D02* G03* X613Y3996I-52J0D01* G01* X666Y3890D02* G03* X682Y3928I-36J38D01* G01* Y3852D02* G03* X666Y3890I-52J0D01* G01* X846Y3740D02* G03* X664Y3691I-97J0D01* G01* X678Y3672D02* G03* X846Y3740I70J68D01* G01* X577Y3833D02* G03* X682Y3833I52J0D01* G01* X521Y4039D02* G03* X515Y4031I34J-34D01* G01* X521Y4039D02* G03* X515Y4031I34J-34D01* G01* X682Y3651D02* G03* X678Y3672I-52J0D01* G01* X664Y3593D02* G03* X682Y3632I-34J40D01* G01* X525Y3768D02* G03* X523Y3781I-54J0D01* G01* X664Y3691D02* G03* X577Y3651I-34J-40D01* G01* Y3632D02* G03* X596Y3593I52J0D01* G01* X682Y3553D02* G03* X664Y3593I-52J0D01* G01* X656Y3489D02* G03* X682Y3534I-26J45D01* G01* X596Y3593D02* G03* X577Y3553I34J-40D01* G01* Y3534D02* G03* X604Y3489I52J0D01* G01* X550Y3132D02* G03* X569Y3141I0J27D01* G01* X550Y3132D02* G03* X569Y3141I0J27D01* G01* X525Y3129D02* G03* X532Y3132I-10J31D01* G01* Y3188D02* G03* X505Y3129I-17J-27D01* G01* X436Y3829D02* G03* X423Y3795I34J-34D01* G01* G03* X525Y3768I47J-27D01* G01* X387Y3826D02* G03* X387Y3826I-72J0D01* G01* Y3676D02* G03* X387Y3676I-72J0D01* G01* X343Y3350D02* G03* X312Y3398I-52J0D01* G01* X306Y3300D02* G03* X343Y3350I-16J50D01* G01* Y3250D02* G03* X306Y3300I-52J0D01* G01* X274D02* G03* X343Y3250I16J-50D01* G01* X268Y3398D02* G03* X274Y3300I22J-47D01* G01* X135Y3129D02* G03* X114Y3121I0J-29D01* G01* X135Y3129D02* G03* X114Y3121I0J-29D01* G01* X79Y3086D02* G03* X71Y3065I21J-21D01* G01* X79Y3086D02* G03* X71Y3065I21J-21D01* G01* X797Y2416D02* G03* X781Y2411I0J-29D01* G01* X797Y2416D02* G03* X781Y2411I0J-29D01* G01* G03* X772Y2407I9J-31D01* G01* G03* X768Y2404I18J-27D01* G01* G03* X760Y2391I22J-24D01* G01* G03* X742Y2404I-40J-35D01* G01* X546Y2469D02* G03* X546Y2469I-54J0D01* G01* X698Y2404D02* G03* X673Y2334I22J-47D01* G01* X610D02* G03* X589Y2326I0J-29D01* G01* X610Y2334D02* G03* X589Y2326I0J-29D01* G01* X559Y2296D02* G03* X551Y2275I21J-21D01* G01* X559Y2296D02* G03* X551Y2275I21J-21D01* G01* X772Y2257D02* G03* X769Y2276I-52J0D01* G01* X671D02* G03* X772Y2257I49J-19D01* G01* X825Y2164D02* G03* X803Y2103I-15J-29D01* G01* X546Y2360D02* G03* X546Y2360I-54J0D01* G01* Y2251D02* G03* X546Y2251I-54J0D01* G01* Y2142D02* G03* X546Y2142I-54J0D01* G01* X446Y2088D02* G03* X351Y2123I-54J0D01* G01* X200Y3065D02* G03* X176Y3054I0J-34D01* G01* X200Y3065D02* G03* X176Y3054I0J-34D01* G01* X151Y3029D02* G03* X140Y3005I24J-24D01* G01* X151Y3029D02* G03* X140Y3005I24J-24D01* G01* X555Y2744D02* G03* X555Y2744I-112J0D01* G01* X298Y2420D02* G03* X294Y2435I-32J0D01* G01* X446Y2415D02* G03* X446Y2415I-54J0D01* G01* Y2306D02* G03* X346Y2334I-54J0D01* G01* X268Y2388D02* G03* X298Y2420I-3J32D01* G01* X278Y2365D02* G03* X268Y2388I-32J0D01* G01* X140Y2370D02* G03* X151Y2346I34J0D01* G01* X140Y2370D02* G03* X151Y2346I34J0D01* G01* X255Y2334D02* G03* X278Y2365I-10J31D01* G01* X348Y2276D02* G03* X446Y2306I44J30D01* G01* Y2197D02* G03* X446Y2197I-54J0D01* G01* X121Y2339D02* G03* X129Y2360I-21J21D01* G01* X121Y2339D02* G03* X129Y2360I-21J21D01* G01* X54Y2356D02* G03* X46Y2335I21J-21D01* G01* X54Y2356D02* G03* X46Y2335I21J-21D01* G01* X130Y2334D02* G03* X118Y2337I-15J-29D01* G01* X104Y2274D02* G03* X130Y2276I11J31D01* G01* X144Y2220D02* G03* X136Y2241I-29J0D01* G01* X144Y2220D02* G03* X136Y2241I-29J0D01* G01* X46Y2260D02* G03* X54Y2239I29J0D01* G01* X46Y2260D02* G03* X54Y2239I29J0D01* G01* X1762Y2149D02* G03* X1762Y2080I-17J-34D01* G01* X1538Y2030D02* G03* X1490Y2059I-32J0D01* G01* X1650Y1977D02* G03* X1613Y1933I-30J-13D01* G01* X1490Y2001D02* G03* X1538Y2030I15J29D01* G01* X1616Y1931D02* G03* X1635Y1923I19J19D01* G01* X1616Y1931D02* G03* X1635Y1923I19J19D01* G01* X1440Y2059D02* G03* X1447Y2080I-25J21D01* G01* G03* X1400Y2109I-32J0D01* G01* X1487Y1935D02* G03* X1436Y1962I-32J0D01* G01* X1439Y1907D02* G03* X1487Y1935I16J28D01* G01* X1389Y1654D02* G03* X1410Y1646I21J21D01* G01* X1389Y1654D02* G03* X1410Y1646I21J21D01* G01* X1294Y1700D02* G03* X1286Y1721I-29J0D01* G01* X1294Y1700D02* G03* X1286Y1721I-29J0D01* G01* Y1644D02* G03* X1294Y1665I-21J21D01* G01* X1286Y1644D02* G03* X1294Y1665I-21J21D01* G01* X1556Y1437D02* G03* X1515Y1396I-31J-10D01* G01* X1722Y1297D02* G03* X1710Y1331I-52J0D01* G01* X1686Y1247D02* G03* X1722Y1297I-16J50D01* G01* X1572Y1339D02* G03* X1592Y1331I21J21D01* G01* X1572Y1339D02* G03* X1592Y1331I21J21D01* G01* X1630D02* G03* X1654Y1247I40J-34D01* G01* X1416Y1442D02* G03* X1389Y1454I-27J-27D01* G01* X1416Y1442D02* G03* X1389Y1454I-27J-27D01* G01* X1473Y1277D02* G03* X1465Y1278I-8J-32D01* G01* X1433Y1297D02* G03* X1424Y1325I-52J0D01* G01* X1473Y1277D02* G03* X1465Y1278I-8J-32D01* G01* X1429D02* G03* X1433Y1297I-49J19D01* G01* X1408Y1341D02* G03* X1331Y1278I-28J-44D01* G01* X1286Y1841D02* G03* X1265Y1849I-21J-21D01* G01* X1286Y1841D02* G03* X1265Y1849I-21J-21D01* G01* X1181Y1965D02* G03* X1135Y1984I-31J-10D01* G01* X1208Y1962D02* G03* X1181Y1965I-17J-27D01* G01* X1160Y1924D02* G03* X1208Y1907I31J10D01* G01* X1261Y1746D02* G03* X1246Y1753I-21J-21D01* G01* G03* X1207Y1702I-16J-28D01* G01* X1261Y1746D02* G03* X1246Y1753I-21J-21D01* G01* X1207Y1702D02* G03* X1198Y1679I23J-23D01* G01* X1135Y1926D02* G03* X1160Y1924I15J29D01* G01* X1059Y2009D02* G03* X1080Y2001I21J21D01* G01* X1059Y2009D02* G03* X1080Y2001I21J21D01* G01* X1044Y2017D02* G03* X1044Y2025I-47J0D01* G01* X1031Y1984D02* G03* X1044Y2017I-34J33D01* G01* X1036Y1916D02* G03* X1015Y1924I-21J-21D01* G01* X1036Y1916D02* G03* X1015Y1924I-21J-21D01* G01* X1069Y1799D02* G03* X1090Y1791I21J21D01* G01* X1069Y1799D02* G03* X1090Y1791I21J21D01* G01* X1039Y1733D02* G03* X962Y1733I-38J0D01* G01* X1039D02* G03* X962Y1733I-38J0D01* G01* X1313Y1515D02* G03* X1224Y1553I-52J0D01* G01* X1276Y1465D02* G03* X1313Y1515I-16J50D01* G01* X1149Y1631D02* G03* X1141Y1610I21J-21D01* G01* X1149Y1631D02* G03* X1141Y1610I21J-21D01* G01* X1296Y1454D02* G03* X1276Y1465I-36J-38D01* G01* X1224Y1377D02* G03* X1296Y1377I36J38D01* G01* X1250Y1278D02* G03* X1224Y1265I0J-32D01* G01* X1250Y1278D02* G03* X1224Y1265I0J-32D01* G01* X1135Y1573D02* G03* X1124Y1600I-38J0D01* G01* X1135Y1573D02* G03* X1124Y1600I-38J0D01* G01* X962Y1669D02* G03* X974Y1642I38J0D01* G01* X962Y1669D02* G03* X974Y1642I38J0D01* G01* X1124Y1502D02* G03* X1135Y1529I-27J27D01* G01* X1124Y1502D02* G03* X1135Y1529I-27J27D01* G01* X1109Y1270D02* G03* X1101Y1291I-29J0D01* G01* X1109Y1270D02* G03* X1101Y1291I-29J0D01* G01* X1059Y1537D02* G03* X1123Y1501I38J-9D01* G01* X1059Y1537D02* G03* X1123Y1501I38J-9D01* G01* X1719Y1179D02* G03* X1722Y1197I-49J18D01* G01* X1723Y1179D02* G03* X1719Y1179I0J-29D01* G01* X1723Y1179D02* G03* X1719Y1179I0J-29D01* G01* X1722Y997D02* G03* X1717Y1021I-52J0D01* G01* X1722Y1197D02* G03* X1686Y1247I-52J0D01* G01* X1654D02* G03* X1634Y1235I16J-50D01* G01* X1686Y947D02* G03* X1722Y997I-16J50D01* G01* X1623Y1021D02* G03* X1654Y947I47J-24D01* G01* X1742Y918D02* G03* X1720Y927I-22J-22D01* G01* X1742Y918D02* G03* X1720Y927I-22J-22D01* G01* X1713D02* G03* X1686Y947I-43J-31D01* G01* Y847D02* G03* X1710Y863I-16J50D01* G01* X1654Y947D02* G03* X1654Y847I16J-50D01* G01* X1722Y797D02* G03* X1686Y847I-52J0D01* G01* Y747D02* G03* X1722Y797I-16J50D01* G01* X1654Y847D02* G03* X1654Y747I16J-50D01* G01* X1581Y897D02* G03* X1533Y926I-32J0D01* G01* X1433Y997D02* G03* X1427Y1021I-52J0D01* G01* X1533Y868D02* G03* X1581Y897I15J29D01* G01* X1409Y853D02* G03* X1424Y868I-29J44D01* G01* X1462Y755D02* G03* X1432Y791I-36J0D01* G01* X1428Y719D02* G03* X1462Y755I-2J36D01* G01* X1433Y797D02* G03* X1409Y841I-52J0D01* G01* X1432Y791D02* G03* X1433Y797I-52J6D01* G01* X1722Y697D02* G03* X1686Y747I-52J0D01* G01* Y647D02* G03* X1722Y697I-16J50D01* G01* Y597D02* G03* X1686Y647I-52J0D01* G01* X1654Y747D02* G03* X1654Y647I16J-50D01* G01* X1686Y547D02* G03* X1722Y597I-16J50D01* G01* Y497D02* G03* X1686Y547I-52J0D01* G01* X1654Y647D02* G03* X1654Y547I16J-50D01* G01* G03* X1618Y496I16J-50D01* G01* X1742Y197D02* G03* X1710Y257I-72J0D01* G01* X1692Y449D02* G03* X1722Y497I-22J47D01* G01* X1630Y257D02* G03* X1742Y197I40J-61D01* G01* X1544Y569D02* G03* X1508Y577I-24J-24D01* G01* X1433Y697D02* G03* X1428Y719I-52J0D01* G01* X1429Y577D02* G03* X1433Y597I-49J19D01* G01* X1438Y271D02* G03* X1472Y257I34J34D01* G01* X1438Y271D02* G03* X1472Y257I34J34D01* G01* X1396Y947D02* G03* X1433Y997I-16J50D01* G01* X1336Y968D02* G03* X1364Y947I44J29D01* G01* X1233Y976D02* G03* X1253Y968I21J21D01* G01* X1233Y976D02* G03* X1253Y968I21J21D01* G01* X1141Y1080D02* G03* X1149Y1059I29J0D01* G01* X1141Y1080D02* G03* X1149Y1059I29J0D01* G01* X1424Y926D02* G03* X1396Y947I-44J-29D01* G01* X1364D02* G03* X1351Y853I16J-50D01* G01* X1396Y647D02* G03* X1433Y697I-16J50D01* G01* Y597D02* G03* X1396Y647I-52J0D01* G01* X1351Y841D02* G03* X1333Y774I29J-44D01* G01* X1226Y796D02* G03* X1205Y804I-21J-21D01* G01* X1226Y796D02* G03* X1205Y804I-21J-21D01* G01* X1021Y973D02* G03* X973Y945I-16J-28D01* G01* X1132Y804D02* G03* X1109Y812I-22J-24D01* G01* X1021Y973D02* G03* X973Y945I-16J-28D01* G01* Y675D02* G03* X982Y652I32J0D01* G01* X973Y675D02* G03* X982Y652I32J0D01* G01* X1135Y340D02* G03* X1157Y348I0J31D01* G01* X1135Y340D02* G03* X1157Y348I0J31D01* G01* X1122Y468D02* G03* X1133Y466I11J29D01* G01* X1122Y468D02* G03* X1133Y466I11J29D01* G01* X925Y495D02* G03* X1018Y444I45J-28D01* G01* X1122Y167D02* G03* X1122Y167I-52J0D01* G01* X954Y2036D02* G03* X963Y1984I43J-19D01* G01* X890D02* G03* X865Y1924I-15J-29D01* G01* X803Y2103D02* G03* X808Y2082I32J-3D01* G01* G03* X850Y2036I27J-18D01* G01* X736Y2037D02* G03* X772Y2087I-16J50D01* G01* G03* X704Y2037I-52J0D01* G01* X772Y1987D02* G03* X736Y2037I-52J0D01* G01* X885Y1924D02* G03* X890Y1926I-10J31D01* G01* X742Y1939D02* G03* X772Y1987I-22J47D01* G01* X795Y1924D02* G03* X772Y1927I-15J-29D01* G01* Y1863D02* G03* X795Y1866I7J32D01* G01* X704Y2037D02* G03* X698Y1939I16J-50D01* G01* X959Y1785D02* G03* X951Y1806I-29J0D01* G01* X941Y1816D02* G03* X920Y1824I-21J-21D01* G01* X941Y1816D02* G03* X920Y1824I-21J-21D01* G01* X959Y1785D02* G03* X951Y1806I-29J0D01* G01* X871Y1766D02* G03* X859Y1729I20J-26D01* G01* X825Y1824D02* G03* X825Y1766I-15J-29D01* G01* X775Y1419D02* G03* X731Y1375I-30J-14D01* G01* X546Y1815D02* G03* X447Y1844I-54J0D01* G01* Y1786D02* G03* X546Y1815I45J29D01* G01* X448Y1567D02* G03* X546Y1597I44J30D01* G01* Y2033D02* G03* X546Y2033I-54J0D01* G01* Y1924D02* G03* X546Y1924I-54J0D01* G01* X351Y2054D02* G03* X446Y2088I41J34D01* G01* Y1979D02* G03* X446Y1979I-54J0D01* G01* X439Y1844D02* G03* X446Y1870I-47J26D01* G01* Y1761D02* G03* X439Y1786I-54J0D01* G01* X446Y1870D02* G03* X345Y1844I-54J0D01* G01* X345Y1786D02* G03* X446Y1761I47J-25D01* G01* X177Y2064D02* G03* X202Y2054I24J24D01* G01* X210Y2123D02* G03* X176Y2066I-10J-33D01* G01* X177Y2064D02* G03* X202Y2054I24J24D01* G01* X251Y1788D02* G03* X260Y1786I9J28D01* G01* X276Y1844D02* G03* X251Y1788I-21J-24D01* G01* G03* X260Y1786I9J28D01* G01* X546Y1706D02* G03* X546Y1706I-54J0D01* G01* X436Y1622D02* G03* X446Y1652I-44J30D01* G01* X546Y1597D02* G03* X445Y1622I-54J0D01* G01* X446Y1652D02* G03* X348Y1622I-54J0D01* G01* X446Y1543D02* G03* X440Y1567I-54J0D01* G01* X344D02* G03* X345Y1519I48J-24D01* G01* X546Y1488D02* G03* X448Y1519I-54J0D01* G01* X440D02* G03* X446Y1543I-48J24D01* G01* X448Y1458D02* G03* X546Y1488I44J31D01* G01* X446Y1433D02* G03* X440Y1458I-54J0D01* G01* X345D02* G03* X345Y1408I48J-24D01* G01* X147Y1635D02* G03* X144Y1650I-32J0D01* G01* X145Y1622D02* G03* X147Y1635I-30J13D01* G01* X86Y1650D02* G03* X85Y1622I29J-15D01* G01* X52D02* G03* X39Y1627I-17J-27D01* G01* X130Y1519D02* G03* X120Y1458I-15J-29D01* G01* X39Y1563D02* G03* X52Y1567I-4J32D01* G01* X859Y1415D02* G03* X868Y1393I31J0D01* G01* X859Y1415D02* G03* X868Y1393I31J0D01* G01* X811Y1370D02* G03* X802Y1392I-31J0D01* G01* X811Y1370D02* G03* X802Y1392I-31J0D01* G01* X749Y1160D02* G03* X704Y1067I-30J-43D01* G01* G03* X698Y969I16J-50D01* G01* X863Y503D02* G03* X885Y495I22J22D01* G01* X863Y503D02* G03* X885Y495I22J22D01* G01* X749Y630D02* G03* X758Y608I31J0D01* G01* X749Y630D02* G03* X758Y608I31J0D01* G01* X613Y740D02* G03* X609Y755I-32J0D01* G01* X551D02* G03* X613Y740I29J-15D01* G01* X623Y467D02* G03* X520Y483I-52J0D01* G01* X565Y415D02* G03* X623Y467I5J52D01* G01* X545Y348D02* G03* X567Y340I22J22D01* G01* X545Y348D02* G03* X567Y340I22J22D01* G01* X546Y1379D02* G03* X447Y1408I-54J0D01* G01* Y1350D02* G03* X546Y1379I45J29D01* G01* X439Y1408D02* G03* X446Y1433I-47J25D01* G01* Y1325D02* G03* X439Y1350I-54J0D01* G01* X345D02* G03* X446Y1325I47J-25D01* G01* X546Y1270D02* G03* X546Y1270I-54J0D01* G01* X446Y1216D02* G03* X349Y1247I-54J0D01* G01* X428Y1100D02* G03* X397Y1132I-32J0D01* G01* X384Y1069D02* G03* X428Y1100I11J31D01* G01* X393Y1132D02* G03* X384Y1130I2J-32D01* G01* X269Y1408D02* G03* X269Y1350I0J-29D01* G01* X70Y1247D02* G03* X39Y1226I0J-32D01* G01* X70Y1247D02* G03* X39Y1226I0J-32D01* G01* Y1204D02* G03* X70Y1183I31J11D01* G01* X39Y1204D02* G03* X70Y1183I31J11D01* G01* X187D02* G03* X196Y1130I23J-23D01* G01* X224D02* G03* X227Y1132I-14J30D01* G01* X118Y1078D02* G03* X140Y1069I22J22D01* G01* X118Y1078D02* G03* X140Y1069I22J22D01* G01* X145Y1139D02* G03* X101Y1095I-30J-14D01* G01* X551Y915D02* G03* X551Y858I-109J-28D01* G01* X520Y483D02* G03* X479Y415I-50J-16D01* G01* X522Y167D02* G03* X522Y167I-52J0D01* G01* X278Y394D02* G03* X278Y394I-82J0D01* G01* X211Y1161D02* X492D01* X210Y1160D02* X211Y1161D01* X1875Y3430D02* X1900D01* X220Y2390D02* X245Y2365D01* X260Y1815D02* X492D01* X255Y1820D02* X260Y1815D01* X1410Y1675D02* X1810D01* X1845Y1405D02* X1900D01* X1800Y1450D02* X1845Y1405D01* X797Y2387D02* X1130D01* X780Y1895D02* X1015D01* X790Y2380D02* X797Y2387D01* X1253Y997D02* X1380D01* X1230Y1670D02* Y1680D01* Y1725D02* X1240D01* X2257Y997D02* X2260D01* X1380Y1097D02* X1427Y1050D01* X2207D02* X2260Y997D01* X1223Y1097D02* X1380D01* X875Y1955D02* X1150D01* X1185Y3385D02* X1280D01* X115Y1635D02* Y2220D01* X2205Y3380D02* X2250Y3425D01* X265Y2420D02* Y2915D01* X269Y1379D02* X492D01* X391Y2305D02* X392Y2306D01* X115Y2305D02* X391D01* X3270Y1560D02* X3345Y1635D01* X3180Y2415D02* X3255D01* X3060Y2655D02* Y2655D01* X3035Y1660D02* X3285D01* X1144Y597D02* X1380D01* X835Y2100D02* X1070D01* X1090Y2080D02* X1415D01* X1380Y897D02* X1548D01* X1380Y797D02* Y897D01* X1080Y2030D02* X1505D01* X835Y2065D02* X1045D01* X2825Y2020D02* X2980Y1865D01* X3130D01* X2530Y2185D02* X2640Y2295D01* X2530Y1345D02* Y2185D01* X2410Y1047D02* Y1100D01* X1670Y1097D02* X1723Y1150D01* X1525Y1427D02* X1592Y1360D01* X1110Y780D02* X1115Y775D01* X1415Y745D02* X1425Y755D01* X1112Y2305D02* X1130Y2287D01* X580Y740D02* Y2275D01* X1100Y2125D02* X1340D01* X810Y2135D02* X1090D01* X810Y1795D02* X920D01* X1128Y697D02* X1380D01* X3851Y3946D02* X4094D01* X3851Y3926D02* X4094D01* X3852Y3746D02* X4094D01* X4031Y3599D02* Y4096D01* X4011Y3599D02* Y4096D01* X3851Y3726D02* X4094D01* X3991Y3599D02* Y4096D01* X3938Y3599D02* X4043D01* Y3494D02* Y3599D01* X3971D02* Y4096D01* X3951Y3599D02* Y4096D01* X3990Y3547D02* Y3593D01* X3833Y3986D02* X4094D01* X3801Y4006D02* X4094D01* X3846Y3966D02* X4094D01* X3845Y3906D02* X4094D01* X3831Y3886D02* X4094D01* X3795Y3866D02* X4094D01* X3836Y3786D02* X4094D01* X3810Y3806D02* X4094D01* X3847Y3766D02* X4094D01* X3844Y3706D02* X4094D01* X3828Y3686D02* X4094D01* X3816Y3606D02* X4094D01* X4043Y3586D02* X4094D01* X4043Y3566D02* X4094D01* X4043Y3546D02* X4094D01* X4043Y3526D02* X4094D01* X4043Y3506D02* X4094D01* X4012Y3494D02* X4043D01* X4039Y3466D02* X4094D01* X4025Y3486D02* X4094D01* X4042Y3446D02* X4094D01* X4031Y3479D02* Y3494D01* X4038Y3426D02* X4094D01* X3990Y3547D02* X4036D01* X3838Y3586D02* X3938D01* X3944Y3547D02* X3990D01* X3852Y3546D02* X3938D01* X3848Y3566D02* X3938D01* X3850Y3526D02* X3938D01* X3951Y3483D02* Y3494D01* X3938D02* X3968D01* X3824Y3486D02* X3955D01* X3707Y3466D02* X3941D01* X3707Y3426D02* X3942D01* X3851Y3946D02* Y4096D01* X3831Y3988D02* Y4096D01* X3811Y4002D02* Y4096D01* X3791Y4009D02* Y4096D01* X3771Y4009D02* Y4096D01* X3751Y4004D02* Y4096D01* X3851Y3749D02* Y3928D01* X3780Y3937D02* X3846D01* X3831Y3791D02* Y3886D01* X3780Y3937D02* Y4003D01* Y3871D02* Y3937D01* X3811Y3805D02* Y3872D01* X3714Y3937D02* X3780D01* X3751Y3807D02* Y3870D01* X3731Y3991D02* Y4096D01* X3711Y3962D02* Y4096D01* X3731Y3794D02* Y3883D01* X3691Y3516D02* Y4096D01* X3671Y3536D02* Y4096D01* X3711Y3765D02* Y3912D01* X3651Y3556D02* Y4096D01* X3631Y3576D02* Y4096D01* X3611Y3596D02* Y4096D01* X3811Y3608D02* Y3675D01* X3791Y3812D02* Y3866D01* Y3615D02* Y3669D01* X3771Y3812D02* Y3865D01* X3751Y3610D02* Y3673D01* X3771Y3615D02* Y3668D01* X3938Y3494D02* Y3599D01* X3851Y3552D02* Y3731D01* X3842Y3506D02* X3938D01* X3831Y3594D02* Y3690D01* X3711Y3568D02* Y3715D01* X3731Y3598D02* Y3686D01* X3621Y3586D02* X3721D01* X3700Y3506D02* X3717D01* X3661Y3546D02* X3707D01* X3641Y3566D02* X3711D01* X3681Y3526D02* X3709D01* X3707Y3486D02* X3735D01* X3707Y3446D02* X3938D01* X4025Y3386D02* X4094D01* X4023Y3406D02* X4094D01* X4039Y3366D02* X4094D01* X4031Y3379D02* Y3415D01* X4011Y3395D02* Y3399D01* X4042Y3346D02* X4094D01* X4038Y3326D02* X4094D01* X4023Y3306D02* X4094D01* X4031Y3279D02* Y3315D01* X4011Y3295D02* Y3299D01* X4025Y3286D02* X4094D01* X3821Y3406D02* X3957D01* X3951Y3383D02* Y3411D01* X3840Y3386D02* X3955D01* X3840Y3306D02* X3957D01* X3951Y3283D02* Y3311D01* X3820Y3286D02* X3955D01* X4042Y3246D02* X4094D01* X4039Y3266D02* X4094D01* X4038Y3226D02* X4094D01* X4023Y3206D02* X4094D01* X4011Y3195D02* Y3199D01* X4025Y3186D02* X4094D01* X4042Y3146D02* X4094D01* X4039Y3166D02* X4094D01* X4038Y3126D02* X4094D01* X4031Y3179D02* Y3215D01* Y3079D02* Y3115D01* X4023Y3106D02* X4094D01* X3825Y3206D02* X3957D01* X3951Y3183D02* Y3211D01* X3842Y3186D02* X3955D01* X3838Y3106D02* X3957D01* X4011Y3095D02* Y3099D01* X3831Y3397D02* Y3493D01* X3811Y3412D02* Y3478D01* X3791Y3418D02* Y3472D01* X3751Y3413D02* Y3476D01* X3731Y3401D02* Y3489D01* X3771Y3419D02* Y3471D01* X3852Y3346D02* X3938D01* X3849Y3366D02* X3941D01* X3849Y3326D02* X3942D01* X3851Y3355D02* Y3535D01* Y3158D02* Y3338D01* X3831Y3200D02* Y3296D01* X3707Y3406D02* X3738D01* X3707Y3386D02* X3719D01* X3711Y3372D02* Y3518D01* X3707Y3355D02* Y3480D01* Y3306D02* X3719D01* X3711Y3175D02* Y3321D01* X3731Y3204D02* Y3292D01* X3612Y2270D02* Y3460D01* X3707Y3158D02* Y3338D01* X3850Y3166D02* X3941D01* X3811Y3215D02* Y3281D01* X3852Y3146D02* X3938D01* X3791Y3221D02* Y3275D01* X3751Y3216D02* Y3280D01* X3771Y3222D02* Y3274D01* X3851Y2962D02* Y3141D01* X3848Y3126D02* X3942D01* X3951Y3083D02* Y3111D01* X3831Y3003D02* Y3099D01* X3711Y2978D02* Y3125D01* X3731Y3007D02* Y3095D01* X3707Y3266D02* X3941D01* X3707Y3246D02* X3938D01* X3707Y3226D02* X3942D01* X3707Y3286D02* X3739D01* X3707Y3206D02* X3734D01* X3707Y3186D02* X3717D01* X3707Y3106D02* X3722D01* X3707Y2961D02* Y3141D01* Y3126D02* X3711D01* X3423Y3966D02* X3713D01* X3412Y3986D02* X3726D01* X3427Y3946D02* X3708D01* X3491Y3693D02* Y4096D01* X3411Y3986D02* Y4096D01* X3391Y4005D02* Y4096D01* X3551Y3656D02* Y4096D01* X3531Y3676D02* Y4096D01* X3511Y3690D02* Y4096D01* X3471Y3693D02* Y4096D01* X3451Y3693D02* Y4096D01* X3431Y3693D02* Y4096D01* X3016Y4086D02* X4094D01* X3006Y4096D02* X4094D01* X3036Y4066D02* X4094D01* X3351Y4018D02* Y4096D01* X3056Y4046D02* X4094D01* X3076Y4026D02* X4094D01* X3390Y4006D02* X3758D01* X3346Y3937D02* X3422D01* X3371Y4015D02* Y4096D01* X3006D02* X3410Y3693D01* X3346Y3937D02* Y4012D01* X3422Y3906D02* X3714D01* X3410Y3886D02* X3728D01* X3396Y3706D02* X3716D01* X3427Y3926D02* X3708D01* X3411Y3693D02* Y3888D01* X3391Y3711D02* Y3869D01* X3541Y3666D02* X4094D01* X3519Y3686D02* X3731D01* X3561Y3646D02* X4094D01* X3410Y3693D02* X3495D01* X3387Y3866D02* X3764D01* X3256Y3846D02* X4094D01* X3276Y3826D02* X4094D01* X3296Y3806D02* X3749D01* X3271Y3937D02* X3346D01* X3316Y3786D02* X3723D01* X3356Y3746D02* X3707D01* X3336Y3766D02* X3712D01* X3376Y3726D02* X3708D01* X3371Y3731D02* Y3859D01* X3351Y3751D02* Y3856D01* X3331Y4017D02* Y4096D01* X3311Y4011D02* Y4096D01* X3291Y3997D02* Y4096D01* X3271Y3969D02* Y4096D01* X3151Y3951D02* Y4096D01* X3136Y3966D02* X3270D01* X3251Y3851D02* Y4096D01* X3231Y3871D02* Y4096D01* X3156Y3946D02* X3265D01* X3211Y3891D02* Y4096D01* X3191Y3911D02* Y4096D01* X3171Y3931D02* Y4096D01* X3091Y4011D02* Y4096D01* X3071Y4031D02* Y4096D01* X3096Y4006D02* X3303D01* X3051Y4051D02* Y4096D01* X3031Y4071D02* Y4096D01* X3011Y4091D02* Y4096D01* X3131Y3971D02* Y4096D01* X3111Y3991D02* Y4096D01* X3116Y3986D02* X3281D01* X2765Y3966D02* X3002D01* X2751Y3986D02* X2982D01* X2769Y3946D02* X3022D01* X3216Y3886D02* X3283D01* X3196Y3906D02* X3271D01* X3236Y3866D02* X3306D01* X3176Y3926D02* X3266D01* X2769D02* X3042D01* X2767Y3866D02* X3102D01* X3346Y3862D02* Y3937D01* X3311Y3791D02* Y3863D01* X3331Y3771D02* Y3857D01* X3291Y3811D02* Y3877D01* X3271Y3831D02* Y3905D01* X2769Y3846D02* X3122D01* X2762Y3806D02* X3162D01* X2740Y3786D02* X3182D01* X2692Y3766D02* X3202D01* X2764Y3906D02* X3062D01* X2756Y3886D02* X3082D01* X2769Y3826D02* X3142D01* X2756Y3686D02* X3282D01* X2690Y3706D02* X3262D01* X2767Y3666D02* X3302D01* X2696Y3746D02* X3222D01* X2695Y3726D02* X3242D01* X3581Y3626D02* X4094D01* X3529Y3679D02* X3694Y3514D01* X3601Y3606D02* X3743D01* X3591Y3616D02* Y4096D01* X3571Y3636D02* Y4096D01* X3475Y3598D02* X3612Y3460D01* X3591Y2249D02* Y3481D01* X3571Y2229D02* Y3501D01* X3611Y2269D02* Y3461D01* X3531Y2189D02* Y3541D01* X3451Y3208D02* Y3598D01* X3551Y2209D02* Y3521D01* X2769Y3546D02* X3527D01* X2768Y3526D02* X3547D01* X2761Y3506D02* X3567D01* X3390Y3598D02* X3475D01* X2757Y3586D02* X3487D01* X2767Y3566D02* X3507D01* X2282Y3426D02* X3612D01* X2275Y3446D02* X3612D01* X2276Y3406D02* X3612D01* X3431Y3227D02* Y3598D01* X3411Y3232D02* Y3598D01* X2738Y3486D02* X3587D01* X3453Y3206D02* X3612D01* X3434Y3226D02* X3612D01* X3457Y3186D02* X3612D01* X3454Y3166D02* X3612D01* X3437Y3146D02* X3612D01* X3395Y3126D02* X3612D01* X3430Y3106D02* X3612D01* X3451Y3091D02* Y3162D01* X3431Y3106D02* Y3143D01* X3411Y3108D02* Y3138D01* X2252Y3386D02* X3612D01* X2232Y3366D02* X3612D01* X2152Y3346D02* X3612D01* X2173Y3306D02* X3612D01* X2169Y3326D02* X3612D01* X2167Y3286D02* X3612D01* X2159Y3266D02* X3612D01* X2159Y3246D02* X3612D01* X3364Y3096D02* X3406Y3138D01* X3375Y3106D02* X3400D01* X3191Y3030D02* Y3776D01* X3171Y3030D02* Y3796D01* X3211Y3040D02* Y3756D01* X3131Y3030D02* Y3836D01* X3111Y3030D02* Y3856D01* X3151Y3030D02* Y3816D01* X3071Y3030D02* Y3896D01* X3051Y3030D02* Y3916D01* X3091Y3030D02* Y3876D01* X3011Y3030D02* Y3956D01* X2991Y3030D02* Y3976D01* X3031Y3030D02* Y3936D01* X2935Y4032D02* X3356Y3611D01* X2851Y3075D02* Y4032D01* X2971Y3030D02* Y3996D01* X2831Y3088D02* Y4032D01* X2811Y3090D02* Y4032D01* X2791Y3085D02* Y4032D01* X2931Y3030D02* Y4032D01* X2911Y3030D02* Y4032D01* X2951Y3030D02* Y4016D01* X2891Y3030D02* Y4032D01* X2871Y3030D02* Y4032D01* X3391Y3229D02* Y3598D01* X3351Y3180D02* Y3616D01* X3331Y3160D02* Y3636D01* X3371Y3213D02* Y3601D01* X3391Y3102D02* Y3123D01* X3371Y3096D02* Y3103D01* X3364Y3096D02* X3382D01* X3291Y3120D02* Y3676D01* X3271Y3100D02* Y3696D01* X3311Y3140D02* Y3656D01* X2762Y3606D02* X3363D01* X2159Y3226D02* X3386D01* X2159Y3206D02* X3367D01* X2769Y3646D02* X3322D01* X2769Y3626D02* X3342D01* X2157Y3186D02* X3357D01* X3201Y3030D02* X3363Y3192D01* X2139Y3166D02* X3337D01* X2122Y3146D02* X3317D01* X3231Y3060D02* Y3736D01* X3251Y3080D02* Y3716D01* X4039Y3066D02* X4094D01* X4025Y3086D02* X4094D01* X4042Y3046D02* X4094D01* X4038Y3026D02* X4094D01* X4023Y3006D02* X4094D01* X4025Y2986D02* X4094D01* X4042Y2946D02* X4094D01* X4039Y2966D02* X4094D01* X4038Y2926D02* X4094D01* X4031Y2979D02* Y3015D01* Y2879D02* Y2915D01* X4023Y2906D02* X4094D01* X3829Y3006D02* X3957D01* X4011Y2995D02* Y2999D01* X3951Y2983D02* Y3011D01* X3815Y3086D02* X3955D01* X3844Y2986D02* X3955D01* X4011Y2895D02* Y2899D01* X3951Y2883D02* Y2911D01* X3835Y2906D02* X3957D01* X4039Y2866D02* X4094D01* X4025Y2886D02* X4094D01* X4042Y2846D02* X4094D01* X4038Y2826D02* X4094D01* X4023Y2806D02* X4094D01* X4011Y2795D02* Y2799D01* X4039Y2766D02* X4094D01* X4025Y2786D02* X4094D01* X4042Y2746D02* X4094D01* X4038Y2726D02* X4094D01* X4031Y2779D02* Y2815D01* X4023Y2706D02* X4094D01* X3832Y2806D02* X3957D01* X3808Y2886D02* X3955D01* X3845Y2786D02* X3955D01* X4011Y2695D02* Y2699D01* X3832Y2706D02* X3957D01* X3707Y3066D02* X3941D01* X3707Y3046D02* X3938D01* X3707Y3026D02* X3942D01* X3791Y3024D02* Y3078D01* X3707Y3086D02* X3744D01* X3771Y3025D02* Y3078D01* X3852Y2946D02* X3938D01* X3851Y2966D02* X3941D01* X3847Y2926D02* X3942D01* X3811Y3018D02* Y3085D01* X3751Y3020D02* Y3083D01* X3851Y2765D02* Y2944D01* X3462Y3066D02* X3612D01* X3455Y3086D02* X3612D01* X3460Y3046D02* X3612D01* X3447Y3026D02* X3612D01* X3370D02* X3383D01* X3370Y3027D02* X3382D01* X3707Y3006D02* X3730D01* X3707Y2986D02* X3715D01* X3707Y2764D02* Y2944D01* X3811Y2821D02* Y2888D01* X3791Y2827D02* Y2881D01* X3798Y2826D02* X3942D01* X3751Y2823D02* Y2886D01* X3731Y2810D02* Y2898D01* X3771Y2828D02* Y2881D01* X3951Y2783D02* Y2811D01* X3851Y2766D02* X3941D01* X3846Y2726D02* X3942D01* X3831Y2806D02* Y2902D01* X3711Y2781D02* Y2928D01* X3851Y2746D02* X3938D01* X3707Y2866D02* X3941D01* X3707Y2846D02* X3938D01* X3707Y2826D02* X3762D01* X3707Y2926D02* X3712D01* X3707Y2906D02* X3724D01* X3707Y2886D02* X3751D01* X3707Y2806D02* X3727D01* X3707Y2706D02* X3727D01* X3707Y2786D02* X3714D01* X3707Y2726D02* X3713D01* X4039Y2666D02* X4094D01* X4025Y2686D02* X4094D01* X4042Y2646D02* X4094D01* X4031Y2679D02* Y2715D01* X3951Y2683D02* Y2711D01* X4038Y2626D02* X4094D01* X4023Y2606D02* X4094D01* X3990Y2647D02* X4036D01* X3944D02* X3990D01* Y2601D02* Y2647D01* X3799Y2686D02* X3955D01* X3707Y2666D02* X3941D01* X3835Y2606D02* X3957D01* X3707Y2646D02* X3938D01* X3807Y2626D02* X3942D01* X3851Y2568D02* Y2747D01* X3847Y2586D02* X4094D01* X3852Y2566D02* X4094D01* X3851Y2371D02* Y2550D01* X3851Y2546D02* X4094D01* X3844Y2526D02* X4094D01* X3829Y2506D02* X4094D01* X3707Y2486D02* X4094D01* X3707Y2466D02* X4094D01* X3814Y2426D02* X4094D01* X3848Y2386D02* X4094D01* X3837Y2406D02* X4094D01* X3852Y2366D02* X4094D01* X3850Y2346D02* X4094D01* X3842Y2326D02* X4094D01* X3825Y2306D02* X4094D01* X3707Y2446D02* X4094D01* X3707Y2286D02* X4094D01* X3707Y2266D02* X4094D01* X3707Y2246D02* X4094D01* X3701Y2226D02* X4094D01* X3683Y2206D02* X4094D01* X3663Y2186D02* X4094D01* X3643Y2166D02* X4094D01* X3623Y2146D02* X4094D01* X3831Y2610D02* Y2705D01* X3811Y2624D02* Y2691D01* X3791Y2631D02* Y2684D01* X3751Y2626D02* Y2689D01* X3731Y2613D02* Y2702D01* X3771Y2631D02* Y2684D01* X3831Y2413D02* Y2509D01* X3811Y2427D02* Y2494D01* X3791Y2434D02* Y2488D01* X3731Y2417D02* Y2505D01* X3711Y2584D02* Y2731D01* X3751Y2429D02* Y2492D01* X3707Y2686D02* X3760D01* X3707Y2626D02* X3752D01* X3707Y2606D02* X3724D01* X3707Y2567D02* Y2748D01* Y2586D02* X3712D01* X3707Y2526D02* X3715D01* X3711Y2387D02* Y2534D01* X3707Y2370D02* Y2551D01* Y2506D02* X3730D01* X3451Y2148D02* Y3031D01* X3371Y2337D02* Y3027D01* X3771Y2434D02* Y2487D01* X3707Y2426D02* X3745D01* X3707Y2406D02* X3722D01* X3707Y2386D02* X3711D01* X3707Y2326D02* X3717D01* X3374D02* X3612D01* X3707Y2250D02* Y2354D01* Y2306D02* X3734D01* X3531Y2189D02* X3612Y2270D01* X3467Y2146D02* X3518D01* X3374Y2306D02* X3612D01* X3365Y2346D02* X3612D01* X3374Y2286D02* X3612D01* X3374Y2266D02* X3609D01* X3374Y2246D02* X3589D01* X3374Y2226D02* X3569D01* X3374Y2206D02* X3549D01* X3374Y2186D02* X3529D01* X3374Y2166D02* X3519D01* X3374Y2146D02* X3440D01* X3350Y3006D02* X3612D01* X3330Y2986D02* X3612D01* X3310Y2966D02* X3612D01* X3290Y2946D02* X3612D01* X3254Y2911D02* X3370Y3027D01* X3270Y2926D02* X3612D01* X3249Y2906D02* X3612D01* X3151Y2604D02* Y2901D01* X3131Y2625D02* Y2901D01* X3111Y2645D02* Y2901D01* X2859Y3066D02* X3237D01* X2835Y3086D02* X3257D01* X2920Y2886D02* X3612D01* X2872Y3030D02* X3201D01* X2867Y3046D02* X3217D01* X2934Y2901D02* X3230D01* X2900Y2866D02* X3612D01* X2880Y2846D02* X3612D01* X2866Y2826D02* X3612D01* X3091Y2665D02* Y2901D01* X2857Y2806D02* X3612D01* X2835Y2786D02* X3612D01* X3110Y2646D02* X3612D01* X3091Y2666D02* X3612D01* X3130Y2626D02* X3612D01* X3150Y2606D02* X3612D01* X3091Y2665D02* X3151Y2606D01* X3159Y2586D02* X3612D01* X3159Y2566D02* X3612D01* X3159Y2546D02* X3612D01* X3159Y2526D02* X3612D01* X3159Y2506D02* X3612D01* X2867Y2746D02* X3612D01* X2859Y2766D02* X3612D01* X2866Y2726D02* X3612D01* X3069Y2686D02* X3612D01* X2857Y2706D02* X3612D01* X3050Y2624D02* X3101Y2573D01* X2628Y2566D02* X3101D01* X2896Y2546D02* X3101D01* X2867Y2586D02* X3088D01* X2900Y2526D02* X3101D01* X2891Y2955D02* Y2961D01* X2867Y2931D02* X2896Y2959D01* X2867Y2946D02* X2882D01* X2867Y3034D02* X2872Y3030D01* X2871Y2935D02* Y2961D01* X3071Y2685D02* Y2901D01* X3051Y2686D02* Y2901D01* X3031Y2671D02* Y2901D01* X2867Y2833D02* X2934Y2901D01* X2891Y2552D02* Y2858D01* X2862Y2961D02* X2897D01* X2791Y2985D02* Y2991D01* X2788Y2986D02* X2794D01* X2815Y2938D02* X2861D01* X2769D02* X2815D01* X2732Y2886D02* X2794D01* X2867Y2686D02* X3051D01* X2867Y2666D02* X3029D01* X2867Y2646D02* X3029D01* X2851Y2775D02* Y2800D01* Y2690D02* Y2700D01* X2867Y2626D02* X3045D01* X2867Y2606D02* X3068D01* X2871Y2560D02* Y2838D01* X2867Y2585D02* Y2690D01* X2851Y2557D02* Y2585D01* X2837Y2690D02* X2867D01* X2815Y2738D02* X2861D01* X2628Y2786D02* X2794D01* X2769Y2738D02* X2815D01* X2831Y2557D02* Y2585D01* X2762D02* X2867D01* X2628Y2557D02* X2857D01* X2811D02* Y2585D01* X3291Y2420D02* Y2948D01* X3285Y2426D02* X3612D01* X3305Y2406D02* X3612D01* X3271Y2439D02* Y2928D01* X3325Y2386D02* X3612D01* X3276Y2436D02* X3366Y2346D01* X3345Y2366D02* X3612D01* X3351Y2360D02* Y3008D01* X3331Y2380D02* Y2988D01* X3311Y2400D02* Y2968D01* X3159Y2486D02* X3612D01* X3159Y2466D02* X3612D01* X3189Y2446D02* X3612D01* X3251Y2444D02* Y2908D01* X3171Y2446D02* Y2901D01* X3159Y2446D02* X3171D01* X3231Y2444D02* Y2901D01* X3195Y2444D02* X3255D01* X3243Y2351D02* X3291Y2303D01* X3211Y2444D02* Y2901D01* X3191Y2445D02* Y2901D01* X3251Y2307D02* Y2342D01* X3253Y2306D02* X3288D01* X3231Y2308D02* Y2351D01* X3211Y2305D02* Y2351D01* X3191Y2305D02* Y2351D01* X3278Y2266D02* X3291D01* X3275Y2286D02* X3291D01* X3270Y2246D02* X3291D01* X3271Y2292D02* Y2322D01* X3150Y2351D02* X3243D01* X2847Y2346D02* X3248D01* X2754Y2326D02* X3268D01* X2782Y2305D02* X3223D01* X2778Y2306D02* X3227D01* X2782Y2236D02* X3223D01* X2612Y2226D02* X3291D01* X2592Y2206D02* X3291D01* X2572Y2186D02* X3291D01* X2559Y2166D02* X3291D01* X2559Y2146D02* X3291D01* X3159Y2440D02* Y2585D01* X3091Y2305D02* Y2582D01* X3101Y2400D02* Y2573D01* X3051Y2305D02* Y2622D01* X3031Y2305D02* Y2639D01* X3071Y2305D02* Y2602D01* X3011Y2305D02* Y2901D01* X2991Y2305D02* Y2901D01* X2971Y2305D02* Y2901D01* X2951Y2305D02* Y2901D01* X2931Y2305D02* Y2898D01* X2911Y2305D02* Y2878D01* X2889Y2506D02* X3101D01* X2832Y2486D02* X3101D01* X2823Y2503D02* X2857D01* X2831Y2488D02* Y2503D01* X2891Y2305D02* Y2508D01* X2851Y2389D02* Y2503D01* X2871Y2305D02* Y2500D01* X2831Y2402D02* Y2472D01* X3109Y2379D02* X3129Y2359D01* X2857Y2366D02* X3123D01* X2853Y2386D02* X3105D01* X3171Y2305D02* Y2351D01* X3151Y2305D02* Y2351D01* X3131Y2305D02* Y2358D01* X3111Y2305D02* Y2377D01* X2851Y2305D02* Y2351D01* X2829Y2466D02* X3101D01* X2706Y2446D02* X3101D01* X2706Y2426D02* X3101D01* X2811Y2400D02* Y2450D01* X2690Y2406D02* X3101D01* X2465Y2398D02* X2808D01* X2831Y2305D02* Y2338D01* X2757Y2342D02* X2808D01* X2811Y2305D02* Y2340D01* X2751Y3986D02* Y4032D01* X2731Y3997D02* Y4032D01* X2717Y3937D02* Y3992D01* X2711Y3999D02* Y4032D01* X2691Y3993D02* Y4032D01* X2671Y3973D02* Y4032D01* X2769Y3928D02* Y3946D01* X2717Y3937D02* X2763D01* X2671Y3879D02* Y3901D01* X2769Y3833D02* Y3852D01* X2671Y3937D02* X2717D01* X2664Y3928D02* Y3946D01* X2611Y3837D02* Y4032D01* X2651Y3822D02* Y4032D01* X2631Y3832D02* Y4032D01* X2664Y3833D02* Y3852D01* X2591Y3837D02* Y4032D01* X2571Y3834D02* Y4032D01* X2551Y3826D02* Y4032D01* X2717Y3843D02* X2763D01* X2671D02* X2717D01* Y3787D02* Y3843D01* X2691Y3769D02* Y3787D01* X2684Y3786D02* X2693D01* X2751Y3690D02* Y3794D01* X2731Y3701D02* Y3783D01* X2711Y3703D02* Y3781D01* X2691Y3697D02* Y3711D01* X2644Y3826D02* X2665D01* X2343Y3846D02* X2664D01* X2598Y3740D02* X2689D01* X2598D02* Y3831D01* X2371Y3826D02* X2552D01* X2507Y3740D02* X2598D01* X2662Y3666D02* X2666D01* X2624Y3646D02* X2664D01* X2598Y3649D02* Y3740D01* X2310Y3646D02* X2573D01* X2531Y3811D02* Y4032D01* X2371Y3825D02* Y4032D01* X2351Y3843D02* Y4032D01* X2331Y3848D02* Y4032D01* X2311Y3846D02* Y4032D01* X2291Y3835D02* Y4032D01* X2511Y3784D02* Y4032D01* X2380Y3806D02* X2527D01* X2380Y3786D02* X2512D01* X2271Y3800D02* Y4032D01* X2271Y3806D02* X2275D01* X2251Y3837D02* Y4032D01* X2234Y3846D02* X2311D01* X2262Y3826D02* X2284D01* X2231Y3847D02* Y4032D01* X2211Y3848D02* Y4032D01* X2191Y3841D02* Y4032D01* X2153Y3826D02* X2175D01* X2271Y3739D02* Y3790D01* X2171Y3821D02* Y4032D01* X2151Y3828D02* Y4032D01* X2162Y3806D02* X2166D01* X2372Y3766D02* X2504D01* X2349Y3746D02* X2501D01* X2240D02* X2306D01* X2271Y3786D02* X2275D01* X2263Y3766D02* X2282D01* X2291Y3735D02* Y3755D01* X2327Y3686D02* X2517D01* X2322Y3706D02* X2507D01* X2323Y3666D02* X2535D01* X2311Y3723D02* Y3744D01* X2251Y3734D02* Y3753D01* X2308Y3726D02* X2502D01* X2191Y3731D02* Y3749D01* X2154Y3766D02* X2173D01* X2199Y3726D02* X2239D01* X2171Y3738D02* Y3769D01* X2162Y3786D02* X2166D01* X2151Y3737D02* Y3762D01* X2231Y3719D02* Y3743D01* X2213Y3706D02* X2224D01* X2201Y3646D02* X2237D01* X2211Y3710D02* Y3742D01* X2214Y3666D02* X2223D01* X2769Y3632D02* Y3651D01* X2717Y3642D02* X2763D01* X2717D02* Y3697D01* X2664Y3632D02* Y3651D01* X2671Y3642D02* X2717D01* X2771Y3067D02* Y4032D01* X2769Y3534D02* Y3553D01* X2671Y3580D02* Y3605D01* X2651Y3033D02* Y3658D01* X2631Y3033D02* Y3648D01* X2611Y3033D02* Y3644D01* X2571Y3032D02* Y3646D01* X2591Y3037D02* Y3643D01* X2531Y2938D02* Y3669D01* X2511Y2938D02* Y3696D01* X2551Y2938D02* Y3655D01* X2491Y2938D02* Y4032D01* X2471Y2938D02* Y4032D01* X2451Y2938D02* Y4032D01* X2717Y3543D02* X2763D01* X2705Y3026D02* X2764D01* X2712Y3006D02* X2773D01* X2717Y3488D02* Y3543D01* X2691Y3035D02* Y3488D01* X2711Y3013D02* Y3482D01* X2771Y3000D02* Y3008D01* X2751Y3001D02* Y3495D01* X2731Y2997D02* Y3484D01* X2712Y2997D02* X2743D01* X2671Y3543D02* X2717D01* X2671Y3036D02* Y3507D01* X2664Y3534D02* Y3553D01* X2607Y3033D02* X2663D01* X2290Y3026D02* X2565D01* X2297Y3006D02* X2558D01* X2291Y2986D02* X2562D01* X2431Y2938D02* Y4032D01* X2291Y3024D02* Y3635D01* X2271Y3449D02* Y3632D01* X2251Y3457D02* Y3636D01* X2271Y3037D02* Y3401D01* X2411Y2938D02* Y4032D01* X2391Y2938D02* Y4032D01* X2371Y2938D02* Y3765D01* X2351Y2938D02* Y3747D01* X2331Y2938D02* Y3742D01* X2311Y2938D02* Y3648D01* X2231Y3452D02* Y3652D01* X2211Y3428D02* Y3660D01* X2191Y3409D02* Y3639D01* X2193Y3409D02* X2219Y3435D01* X2251Y3035D02* Y3385D01* X2226Y3359D02* X2260Y3394D01* X2231Y3033D02* Y3365D01* X2151Y3409D02* Y3633D01* X2171Y3409D02* Y3632D01* X2211Y3033D02* Y3352D01* X2191Y3033D02* Y3351D01* X2291Y2938D02* Y2986D01* X2251Y2938D02* Y2975D01* X2271Y2938D02* Y2973D01* X2231Y2938D02* Y2977D01* X2211Y2938D02* Y2977D01* X2191Y2938D02* Y2977D01* X2171Y3318D02* Y3351D01* X2142D02* X2205D01* X2159Y3198D02* Y3275D01* X2151Y3346D02* Y3351D01* X2171Y3033D02* Y3298D01* Y2938D02* Y2977D01* X2151Y3033D02* Y3178D01* Y2938D02* Y2977D01* X2131Y3844D02* Y4032D01* X2111Y3849D02* Y4032D01* X2125Y3846D02* X2202D01* X2091Y3846D02* Y4032D01* X2071Y3833D02* Y4032D01* X2044Y3826D02* X2066D01* X2053Y3806D02* X2057D01* X2071Y3736D02* Y3757D01* X2053Y3786D02* X2057D01* X2051Y3811D02* Y4032D01* Y3739D02* Y3780D01* X2031Y3839D02* Y4032D01* X2011Y3847D02* Y4032D01* X2016Y3846D02* X2093D01* X1991Y3848D02* Y4032D01* X1971Y3840D02* Y4032D01* X1907Y3846D02* X1984D01* X1935Y3826D02* X1957D01* X2045Y3766D02* X2064D01* X1951Y3817D02* Y4032D01* Y3738D02* Y3773D01* X1936Y3766D02* X1955D01* X2131Y3727D02* Y3746D01* X2131Y3746D02* X2197D01* X2090Y3726D02* X2130D01* X2091Y3725D02* Y3745D01* X2031Y3733D02* Y3752D01* X2022Y3746D02* X2088D01* X2104Y3706D02* X2115D01* X2092Y3646D02* X2128D01* X2111Y3694D02* Y3742D01* X2011Y3716D02* Y3743D01* X2105Y3666D02* X2114D01* X1995Y3706D02* X2006D01* X1981Y3726D02* X2021D01* X1996Y3666D02* X2005D01* X1971Y3732D02* Y3750D01* X1913Y3746D02* X1979D01* X1991Y3714D02* Y3742D01* X1928Y3446D02* X2225D01* X1932Y3426D02* X2210D01* X1983Y3646D02* X2019D01* X1931Y3830D02* Y4032D01* X1911Y3845D02* Y4032D01* X1944Y3806D02* X1948D01* X1891Y3849D02* Y4032D01* X1871Y3845D02* Y4032D01* X1851Y3831D02* Y4032D01* X1944Y3786D02* X1948D01* X1931Y3737D02* Y3760D01* X1851Y3737D02* Y3759D01* X1835Y3806D02* X1839D01* X1911Y3726D02* Y3746D01* X1811Y3840D02* Y4032D01* X1798Y3846D02* X1875D01* X1826Y3826D02* X1848D01* X1791Y3848D02* Y4032D01* X1771Y3848D02* Y4032D01* X1751Y3839D02* Y4032D01* X1835Y3786D02* X1839D01* X1831Y3816D02* Y4032D01* X1827Y3766D02* X1846D01* X1831Y3738D02* Y3774D01* X1811Y3732D02* Y3750D01* X1751Y3733D02* Y3751D01* X1874Y3646D02* X1910D01* X1872Y3726D02* X1912D01* X1911Y3460D02* Y3644D01* X1886Y3706D02* X1897D01* X1871Y3726D02* Y3745D01* X1887Y3666D02* X1896D01* X1931Y3438D02* Y3634D01* X1891Y3461D02* Y3742D01* X1875Y3459D02* X1885D01* X1871Y3459D02* Y3644D01* X1804Y3746D02* X1870D01* X1791Y3713D02* Y3742D01* X1763Y3726D02* X1803D01* X1777Y3706D02* X1788D01* X1771Y3717D02* Y3743D01* X1778Y3666D02* X1787D01* X1851Y3448D02* Y3634D01* X1765Y3646D02* X1801D01* X1831Y3428D02* Y3632D01* X2111Y3409D02* Y3676D01* X2091Y3409D02* Y3646D01* X2131Y3409D02* Y3643D01* X2071Y3409D02* Y3634D01* X2031Y3409D02* Y3637D01* X2051Y3409D02* Y3632D01* X2091Y3338D02* Y3351D01* X2071Y3201D02* Y3351D01* X2051Y3032D02* Y3351D01* X2091Y3211D02* Y3278D01* X1950Y3351D02* X2111D01* X1925Y3409D02* X2193D01* X1960Y3346D02* X2101D01* X2011Y3409D02* Y3654D01* X1991Y3409D02* Y3657D01* X1977Y3326D02* X2084D01* X2031Y2938D02* Y3351D01* X1980Y3306D02* X2080D01* X1975Y3286D02* X2086D01* X2011Y2936D02* Y3351D01* X1991Y2920D02* Y3351D01* X2131Y3033D02* Y3160D01* X2127Y3156D02* X2148Y3174D01* X2111Y3033D02* Y3135D01* X2094Y3213D02* Y3275D01* X2084Y3205D02* X2094Y3213D01* X2071Y3037D02* Y3133D01* X2087Y3033D02* X2248D01* X2087Y2977D02* X2248D01* X2131Y2938D02* Y2977D01* X2111Y2938D02* Y2977D01* X2091Y3033D02* Y3128D01* Y2938D02* Y2977D01* X1955Y3266D02* X2094D01* X1952Y3246D02* X2094D01* X1952Y3226D02* X2094D01* X1952Y3206D02* X2086D01* X1953Y3186D02* X2057D01* X1958Y3166D02* X2052D01* X2071Y2938D02* Y2973D01* X1952Y3146D02* X2058D01* X2051Y2938D02* Y2978D01* X1971Y3409D02* Y3638D01* X1951Y3409D02* Y3632D01* X1971Y3335D02* Y3351D01* X1931Y3409D02* Y3422D01* X1877Y3306D02* X1888D01* X1871Y2703D02* Y3300D01* X1887Y3293D02* X1887Y3187D01* X1811Y3408D02* Y3638D01* X1748Y3344D02* X1854Y3451D01* X1781Y3294D02* X1886Y3400D01* X1791Y3388D02* Y3657D01* X1771Y3368D02* Y3654D01* X1751Y3348D02* Y3637D01* X1786Y3214D02* X1890Y3319D01* X1753Y3264D02* X1889Y3400D01* X1771Y3283D02* Y3288D01* X1971Y2899D02* Y3280D01* X1857Y3286D02* X1887D01* X1837Y3266D02* X1887D01* X1952Y3265D02* X1952Y3187D01* X1951Y2703D02* Y3145D01* X1931Y2703D02* Y3130D01* X1911Y2703D02* Y3129D01* X1851Y2703D02* Y3280D01* X1831Y2703D02* Y3260D01* X1891Y2703D02* Y3141D01* X1817Y3246D02* X1887D01* X1797Y3226D02* X1887D01* X1768Y3206D02* X1887D01* X1763Y3286D02* X1775D01* X1751Y3264D02* Y3286D01* X1811Y2703D02* Y3240D01* X1791Y2703D02* Y3220D01* X1771Y2703D02* Y3207D01* X1751Y2702D02* Y3206D01* X2731Y2934D02* Y2943D01* X2710D02* X2743D01* X2738Y2926D02* X2764D01* X2691Y2938D02* Y2943D01* X2671Y2938D02* Y2943D01* X2771Y2867D02* Y2908D01* X2742Y2906D02* X2773D01* X2791Y2885D02* Y2891D01* X2771Y2767D02* Y2808D01* X2607Y2943D02* X2710D01* X2590Y2938D02* X2693D01* X2628Y2866D02* X2771D01* X2651Y2938D02* Y2943D01* X2631Y2938D02* Y2943D01* X2628Y2882D02* X2693D01* X2628Y2847D02* Y2882D01* Y2846D02* X2763D01* X2628Y2826D02* X2764D01* X2628Y2822D02* Y2847D01* Y2822D02* Y2847D01* Y2788D02* Y2822D01* X2791Y2785D02* Y2791D01* X2628Y2806D02* X2773D01* X2628Y2766D02* X2771D01* X2628Y2762D02* Y2788D01* Y2762D02* Y2788D01* Y2746D02* X2763D01* X2771Y2690D02* Y2708D01* X2762Y2690D02* X2793D01* X2762Y2585D02* Y2690D01* X2628Y2729D02* Y2762D01* Y2703D02* Y2729D01* Y2703D02* Y2729D01* Y2726D02* X2764D01* X2628Y2706D02* X2773D01* X2628Y2686D02* X2762D01* X2628Y2670D02* Y2703D01* Y2666D02* X2762D01* X2628Y2646D02* X2762D01* X2628Y2626D02* X2762D01* X2628Y2606D02* X2762D01* X2628Y2586D02* X2762D01* X2628Y2644D02* Y2670D01* Y2644D02* Y2670D01* X2611Y2938D02* Y2943D01* X2571Y2938D02* Y2943D01* X2533Y2847D02* Y2882D01* Y2822D02* Y2847D01* Y2822D02* Y2847D01* Y2788D02* Y2822D01* Y2762D02* Y2788D01* X2580Y2746D02* X2621D01* X2533Y2762D02* Y2788D01* X2511Y2597D02* Y2882D01* X2533Y2729D02* Y2762D01* X2431Y2667D02* Y2882D01* X2411Y2668D02* Y2882D01* X2312Y2766D02* X2533D01* X2391Y2668D02* Y2882D01* X2311Y2767D02* Y2882D01* X2318Y2687D02* Y2750D01* X2491Y2617D02* Y2882D01* X2471Y2637D02* Y2882D01* X2451Y2657D02* Y2882D01* X2371Y2668D02* Y2882D01* X2351Y2668D02* Y2882D01* X2331Y2668D02* Y2882D01* X2539Y2746D02* X2580D01* X2533Y2703D02* Y2729D01* Y2703D02* Y2729D01* Y2670D02* Y2703D01* Y2644D02* Y2670D01* Y2644D02* Y2670D01* X2628Y2611D02* Y2644D01* Y2585D02* Y2611D01* Y2585D02* Y2611D01* X2533D02* Y2644D01* Y2585D02* Y2611D01* X2503Y2606D02* X2533D01* X2318Y2746D02* X2533D01* X2318Y2726D02* X2533D01* X2318Y2706D02* X2533D01* X2318Y2686D02* X2533D01* X2439Y2666D02* X2533D01* X2463Y2646D02* X2533D01* X2483Y2626D02* X2533D01* X2322Y2668D02* X2430D01* X2791Y2557D02* Y2585D01* X2771Y2557D02* Y2585D01* X2702Y2453D02* X2783D01* X2751Y2557D02* Y2939D01* X2731Y2557D02* Y2886D01* X2711Y2557D02* Y2878D01* X2771Y2398D02* Y2453D01* X2751Y2398D02* Y2453D01* X2791Y2398D02* Y2449D01* X2731Y2398D02* Y2453D01* X2711Y2398D02* Y2453D01* X2691Y2557D02* Y2882D01* X2671Y2557D02* Y2882D01* X2555Y2408D02* X2658D01* X2651Y2557D02* Y2882D01* X2631Y2557D02* Y2882D01* X2628Y2557D02* Y2585D01* X2691Y2398D02* Y2407D01* X2651Y2398D02* Y2408D01* X2631Y2398D02* Y2408D01* X2771Y2308D02* Y2342D01* X2751Y2306D02* Y2321D01* X2671Y2398D02* Y2403D01* X2667Y2312D02* X2708D01* X2671Y2306D02* X2752D01* X2791Y2305D02* Y2342D01* X2731Y2289D02* Y2308D01* X2671Y2303D02* Y2312D01* X2671Y2286D02* X2730D01* X2611Y2398D02* Y2408D01* X2591Y2398D02* Y2408D01* X2472Y2406D02* X2660D01* X2571Y2398D02* Y2408D01* X2551Y2398D02* Y2408D01* X2655Y2266D02* X2727D01* X2632Y2246D02* X2735D01* X2434Y2168D02* X2567Y2301D01* X2559Y2173D02* X2650Y2264D01* X2531Y2577D02* Y2882D01* X2533Y2585D02* Y2611D01* X2523Y2586D02* X2533D01* Y2576D02* Y2585D01* X2478Y2473D02* X2500Y2451D01* X2478Y2466D02* X2485D01* X2511Y2398D02* Y2440D01* X2500Y2451D02* X2536Y2416D01* X2478Y2426D02* X2525D01* X2491Y2398D02* Y2460D01* X2478Y2427D02* Y2470D01* Y2446D02* X2505D01* X2449Y2659D02* X2533Y2576D01* X2401Y2427D02* Y2454D01* X2359Y2497D02* X2401Y2454D01* X2391Y2362D02* Y2464D01* X2371Y2362D02* Y2484D01* X2351Y2362D02* Y2497D01* X2331Y2362D02* Y2497D01* X2551Y2285D02* Y2342D01* X2461D02* X2553D01* X2445Y2326D02* X2552D01* X2531Y2398D02* Y2420D01* X2471Y2398D02* Y2405D01* X2434Y2316D02* X2461Y2342D01* X2531Y2265D02* Y2342D01* X2511Y2245D02* Y2342D01* X2490Y2146D02* X2501D01* X2491Y2225D02* Y2342D01* X2471Y2205D02* Y2342D01* X2451Y2185D02* Y2333D01* X2404Y2362D02* X2431Y2389D01* X2431Y2168D02* Y2313D01* X2411Y2370D02* Y2401D01* X2351Y2171D02* Y2307D01* X2411Y2168D02* Y2307D01* X2391Y2168D02* Y2307D01* X2377Y2168D02* X2434D01* X2371Y2170D02* Y2307D01* X2331Y2156D02* Y2307D01* X2273Y2806D02* X2533D01* X2253Y2826D02* X2533D01* X2293Y2786D02* X2533D01* X2291Y2787D02* Y2882D01* X2271Y2807D02* Y2882D01* X2262Y2497D02* X2359D01* X2261Y2486D02* X2369D01* X2257Y2466D02* X2389D01* X2257Y2440D02* Y2478D01* X2196Y2882D02* X2533D01* X2020Y2938D02* X2590D01* X2213Y2866D02* X2533D01* X2231Y2847D02* Y2882D01* X2211Y2867D02* Y2882D01* X2233Y2846D02* X2533D01* X2251Y2827D02* Y2882D01* X2196D02* X2309Y2769D01* X2071Y2795D02* Y2815D01* X2038Y2848D02* X2089Y2797D01* X2203Y2451D02* Y2468D01* X2184Y2456D02* X2192Y2463D01* X2257Y2446D02* X2401D01* X2191Y2440D02* Y2463D01* X2254Y2426D02* X2402D01* X2235Y2406D02* X2408D01* X2215Y2386D02* X2427D01* X2171Y2420D02* Y2448D01* X1988Y2446D02* X2197D01* X1988Y2447D02* X2165D01* X1988Y2426D02* X2177D01* X2151Y2400D02* Y2447D01* X2091Y2392D02* Y2447D01* X1988Y2406D02* X2157D01* X2141Y2389D02* X2203Y2451D01* X2111Y2388D02* Y2447D01* X2114Y2386D02* X2138D01* X2071Y2382D02* Y2447D01* X1988Y2386D02* X2076D01* X2010Y2846D02* X2040D01* X2057Y2726D02* Y2748D01* X1976Y2904D02* X2001Y2929D01* X2051Y2720D02* Y2835D01* X2031Y2703D02* Y2849D01* X2034Y2703D02* X2057Y2726D01* X2011Y2703D02* Y2847D01* X1971Y2703D02* Y2853D01* X1991Y2703D02* Y2843D01* X1755Y2703D02* X2034D01* X1872Y2550D02* Y2582D01* X1871Y2550D02* Y2582D01* X1851Y2550D02* Y2582D01* X1831Y2550D02* Y2582D01* X1811Y2546D02* Y2582D01* X1930Y2424D02* X1981D01* X1838Y2550D02* X1872D01* X1878Y2424D02* X1930D01* X1811Y2546D02* Y2555D01* X2051Y2378D02* Y2447D01* X2031Y2378D02* Y2447D01* X1988Y2378D02* X2068D01* X2011D02* Y2447D01* X1991Y2378D02* Y2447D01* X1988Y2378D02* Y2447D01* X1811Y2546D02* X1821D01* X1811Y2446D02* X1872D01* X1811Y2447D02* X1872D01* X1791Y2555D02* Y2582D01* X1771Y2555D02* Y2582D01* X1751Y2555D02* Y2582D01* X1811Y2399D02* Y2447D01* Y2426D02* X1872D01* X1811Y2406D02* X1872D01* X1760Y2439D02* X1805D01* X1760Y2405D02* Y2439D01* X2311Y2362D02* Y2497D01* X2291Y2362D02* Y2497D01* X2234Y2366D02* X2407D01* X2271Y2362D02* Y2497D01* X2231Y2367D02* Y2403D01* X2211Y2365D02* Y2383D01* X2242Y2362D02* X2404D01* X2240Y2306D02* X2561D01* X2242Y2307D02* X2415D01* X2271Y2249D02* Y2307D01* X2251Y2362D02* Y2423D01* Y2262D02* Y2307D01* X2195Y2366D02* X2216D01* X2188Y2359D02* X2249Y2421D01* X2188Y2346D02* X2194D01* X2188Y2335D02* Y2359D01* X2186Y2326D02* X2194D01* X2170Y2306D02* X2210D01* X2154Y2291D02* X2179Y2316D01* X2273Y2246D02* X2512D01* X2277Y2226D02* X2492D01* X2231Y2260D02* Y2303D01* X2211Y2235D02* Y2305D01* X2201Y2224D02* X2213Y2237D01* X2267Y2206D02* X2472D01* X2247Y2186D02* X2452D01* X2247Y2166D02* X2341D01* X2247Y2194D02* X2252Y2198D01* X2149Y2286D02* X2552D01* X2076Y2266D02* X2532D01* X2076Y2246D02* X2217D01* X2091Y2283D02* X2135D01* X2076Y2226D02* X2202D01* X2073Y2206D02* X2193D01* X2055Y2186D02* X2193D01* X1960Y2166D02* X2193D01* X2131Y2345D02* Y2447D01* X2132Y2346D02* Y2370D01* X2127Y2366D02* X2132D01* X1930Y2376D02* Y2424D01* X1931Y2360D02* Y2370D01* X2124Y2346D02* X2132D01* X2124Y2338D02* X2132Y2346D01* X1911Y2340D02* Y2370D01* X1909Y2338D02* X1941Y2369D01* X1891Y2338D02* Y2370D01* X1872D02* X1941D01* X1744Y2366D02* X1937D01* X1757Y2346D02* X1917D01* X1872Y2370D02* Y2447D01* X1871Y2338D02* Y2447D01* X1751Y2359D02* Y2399D01* X1851Y2338D02* Y2447D01* X1831Y2338D02* Y2447D01* X1811Y2338D02* Y2447D01* X1791Y2338D02* Y2399D01* X1771Y2338D02* Y2399D01* X2118Y2338D02* X2124D01* X2076Y2268D02* X2091Y2283D01* X2076Y2219D02* Y2268D01* X2054Y2186D02* X2068Y2199D01* X1951Y2173D02* Y2178D01* X1911Y2168D02* Y2178D01* X1891Y2149D02* Y2178D01* X1896Y2149D02* X1902Y2156D01* X1757Y2338D02* X1909D01* X1887Y2178D02* X2035D01* X1851Y2149D02* Y2178D01* X1751Y2153D02* Y2207D01* X1871Y2149D02* Y2173D01* X1831Y2149D02* Y2207D01* X1811Y2149D02* Y2207D01* X1762Y2149D02* X1896D01* X1791D02* Y2207D01* X1771Y2149D02* Y2207D01* X3850Y2066D02* X4094D01* X3841Y2086D02* X4094D01* X3852Y2046D02* X4094D01* X3851Y2056D02* Y2353D01* X3849Y2026D02* X4094D01* X3839Y2006D02* X4094D01* X4031Y1709D02* Y2615D01* X4011Y1709D02* Y2599D01* X3991Y1709D02* Y2594D01* X3971Y1709D02* Y2598D01* X3951Y1709D02* Y2611D01* X3851Y1859D02* Y2038D01* X3822Y2106D02* X4094D01* X3603Y2126D02* X4094D01* X3819Y1986D02* X4094D01* X3831Y2098D02* Y2312D01* X3811Y2112D02* Y2297D01* X3780Y2047D02* X3846D01* X3450Y1966D02* X4094D01* X3450Y1946D02* X4094D01* X3450Y1926D02* X4094D01* X3831Y1901D02* Y1997D01* X3811Y1915D02* Y1982D01* X3852Y1846D02* X4094D01* X3850Y1866D02* X4094D01* X3848Y1826D02* X4094D01* X4043Y1706D02* X4094D01* X3938Y1709D02* X4043D01* Y1686D02* X4094D01* X4043Y1666D02* X4094D01* X3990Y1657D02* Y1703D01* Y1657D02* X4036D01* X3851Y1662D02* Y1842D01* X3851Y1666D02* X3938D01* X3944Y1657D02* X3990D01* X3843Y1886D02* X4094D01* X3826Y1906D02* X4094D01* X3837Y1806D02* X4094D01* X3813Y1786D02* X4094D01* X3450Y1766D02* X4094D01* X3450Y1746D02* X4094D01* X3450Y1726D02* X4094D01* X3829Y1706D02* X3938D01* X3831Y1704D02* Y1800D01* X3844Y1686D02* X3938D01* X3791Y2119D02* Y2291D01* X3751Y2114D02* Y2295D01* X3771Y2119D02* Y2290D01* X3599Y2121D02* X3694Y2216D01* X3780Y2047D02* Y2113D01* X3714Y2047D02* X3780D01* Y1981D02* Y2047D01* X3731Y2102D02* Y2308D01* X3711Y2072D02* Y2337D01* Y1875D02* Y2022D01* X3492Y2106D02* X3737D01* X3488Y2126D02* X3527D01* X3484Y2086D02* X3718D01* X3491Y2115D02* Y3581D01* X3471Y2144D02* Y3598D01* X3458Y2066D02* X3710D01* X3450Y2046D02* X3707D01* X3450Y2026D02* X3710D01* X3451Y1682D02* Y2059D01* X3450Y2057D02* X3466Y2074D01* X3450Y1687D02* Y2057D01* X3791Y1922D02* Y1976D01* X3771Y1922D02* Y1975D01* X3791Y1725D02* Y1779D01* X3731Y1905D02* Y1993D01* X3450Y2006D02* X3720D01* X3751Y1917D02* Y1980D01* X3811Y1719D02* Y1785D01* X3751Y1720D02* Y1784D01* X3771Y1726D02* Y1778D01* X3731Y1708D02* Y1796D01* X3711Y1679D02* Y1825D01* X3453Y1666D02* X3708D01* X3450Y1986D02* X3741D01* X3450Y1906D02* X3733D01* X3450Y1886D02* X3716D01* X3450Y1866D02* X3709D01* X3450Y1846D02* X3707D01* X3450Y1826D02* X3711D01* X3450Y1806D02* X3722D01* X3450Y1786D02* X3746D01* X3450Y1706D02* X3730D01* X3450Y1686D02* X3715D01* X4043Y1646D02* X4094D01* X4043Y1626D02* X4094D01* X4043Y1606D02* X4094D01* X4043Y1604D02* Y1709D01* X4031Y1589D02* Y1604D01* X4034Y1586D02* X4094D01* Y41D02* Y4096D01* X4042Y1566D02* X4094D01* X4041Y1546D02* X4094D01* X4091Y41D02* Y4096D01* X4071Y41D02* Y4096D01* X4051Y41D02* Y4096D01* X4012Y1604D02* X4043D01* X4033Y1526D02* X4094D01* X3951Y1593D02* Y1604D01* X3938D02* X3968D01* X3806Y1586D02* X3946D01* X4031Y1489D02* Y1525D01* X4011Y1505D02* Y1509D01* X3800Y1526D02* X3947D01* X3951Y1493D02* Y1521D01* X4034Y1486D02* X4094D01* X4008Y1506D02* X4094D01* X4042Y1466D02* X4094D01* X4041Y1446D02* X4094D01* X4033Y1426D02* X4094D01* X4042Y1366D02* X4094D01* X4034Y1386D02* X4094D01* X4041Y1346D02* X4094D01* X4031Y1389D02* Y1425D01* X4011Y1405D02* Y1409D01* X4033Y1326D02* X4094D01* X4008Y1406D02* X4094D01* X3846Y1486D02* X3946D01* X3833Y1506D02* X3972D01* X3845Y1426D02* X3947D01* X3951Y1393D02* Y1421D01* X3831Y1406D02* X3972D01* X3938Y1604D02* Y1709D01* X3931Y41D02* Y4096D01* X3852Y1646D02* X3938D01* X3851Y1465D02* Y1645D01* X3711Y1482D02* Y1628D01* X3911Y41D02* Y4096D01* X3891Y41D02* Y4096D01* X3871Y41D02* Y4096D01* X3691Y41D02* Y2214D01* X3671Y41D02* Y2194D01* X3651Y41D02* Y2174D01* X3631Y41D02* Y2154D01* X3611Y41D02* Y2134D01* X3445Y1646D02* X3707D01* X3491Y1263D02* Y2105D01* X3471Y1273D02* Y2076D01* X3451Y1271D02* Y1658D01* X3591Y41D02* Y2116D01* X3551Y41D02* Y2109D01* X3571Y41D02* Y2108D01* X3511Y41D02* Y3561D01* X3531Y41D02* Y2121D01* X3847Y1626D02* X3938D01* X3834Y1606D02* X3938D01* X3851Y1466D02* X3938D01* X3831Y1507D02* Y1603D01* X3811Y1522D02* Y1588D01* X3791Y1528D02* Y1582D01* X3851Y1446D02* X3939D01* X3796Y1386D02* X3946D01* X3809Y1326D02* X3947D01* X3851Y1269D02* Y1448D01* X3831Y1310D02* Y1406D01* X3811Y1325D02* Y1392D01* X3771Y1529D02* Y1581D01* X3791Y1331D02* Y1385D01* X3751Y1524D02* Y1587D01* X3731Y1511D02* Y1599D01* X3771Y1332D02* Y1385D01* X3751Y1327D02* Y1390D01* X3447Y1326D02* X3750D01* X3711Y1285D02* Y1432D01* X3731Y1314D02* Y1402D01* X3431Y2142D02* Y3016D01* X3374Y2126D02* X3418D01* X3411Y2117D02* Y3014D01* X3391Y2097D02* Y3020D01* X3374Y2106D02* X3401D01* X3391Y2096D02* X3417Y2122D01* X3381Y1687D02* Y2072D01* X3374Y2086D02* X3384D01* X3374Y2066D02* X3381D01* X2559Y2126D02* X3291D01* X2559Y2106D02* X3291D01* X3374Y2046D02* X3381D01* X2559Y2086D02* X3291D01* X2559Y2066D02* X3291D01* X2844Y2046D02* X3291D01* X3374Y2026D02* X3381D01* X3374Y2006D02* X3381D01* X3374Y1986D02* X3381D01* X2880Y2006D02* X3291D01* X2860Y2026D02* X3291D01* X2900Y1986D02* X3291D01* X3374Y1966D02* X3381D01* X3374Y1946D02* X3381D01* X3374Y1926D02* X3381D01* X3374Y1906D02* X3381D01* X3374Y1886D02* X3381D01* X3374Y1866D02* X3381D01* X3374Y1846D02* X3381D01* X3374Y1826D02* X3381D01* X3374Y1806D02* X3381D01* X3374Y1786D02* X3381D01* X3374Y1766D02* X3381D01* X3374Y1746D02* X3381D01* X2940Y1946D02* X3291D01* X2920Y1966D02* X3291D01* X2960Y1926D02* X3291D01* X3155Y1886D02* X3291D01* X2980Y1906D02* X3291D01* X3162Y1866D02* X3291D01* X3374Y1726D02* X3381D01* X3156Y1846D02* X3291D01* X3374Y1706D02* X3381D01* X2638Y1826D02* X3291D01* X2638Y1806D02* X3291D01* Y1707D02* Y2303D01* X3151Y1889D02* Y2236D01* X3131Y1897D02* Y2236D01* X3111Y1894D02* Y2236D01* X3091Y1894D02* Y2236D01* X3071Y1894D02* Y2236D01* X3271Y1689D02* Y2248D01* X3251Y1689D02* Y2233D01* X3231Y1689D02* Y2232D01* X3211Y1689D02* Y2236D01* X3191Y1689D02* Y2236D01* X3171Y1689D02* Y2236D01* X2971Y1915D02* Y2236D01* X2951Y1935D02* Y2236D01* X2931Y1955D02* Y2236D01* X2911Y1975D02* Y2236D01* X2891Y1995D02* Y2236D01* X2638Y1906D02* X2898D01* X3051Y1894D02* Y2236D01* X3031Y1894D02* Y2236D01* X3011Y1894D02* Y2236D01* X2991Y1895D02* Y2236D01* X2856Y2030D02* X2992Y1894D01* X2815Y1989D02* X2959Y1844D01* X3273Y1689D02* X3291Y1707D01* X3151Y1689D02* Y1841D01* X2992Y1894D02* X3115D01* X3031Y1692D02* Y1836D01* X3131Y1689D02* Y1833D01* X3111Y1689D02* Y1836D01* X3050Y1689D02* X3273D01* X3091D02* Y1836D01* X3071Y1689D02* Y1836D01* X3051Y1689D02* Y1836D01* X2980D02* X3115D01* X2638Y1886D02* X2918D01* X2638Y1866D02* X2938D01* X2638Y1846D02* X2958D01* X2638Y1786D02* X3291D01* X2638Y1766D02* X3291D01* X2638Y1746D02* X3291D01* X2658Y1726D02* X3291D01* X2678Y1706D02* X3290D01* X3374Y1646D02* X3385D01* X3373Y1626D02* X3712D01* X3374Y1635D02* Y2325D01* Y1686D02* X3380D01* X3431Y1347D02* Y1635D01* X3411Y1353D02* Y1632D01* X3357Y1606D02* X3725D01* X3391Y1349D02* Y1640D01* X3371Y1237D02* Y1623D01* X3306Y1639D02* X3316Y1650D01* X3291Y1623D02* Y1632D01* X3050Y1631D02* X3285D01* X2697Y1626D02* X3295D01* X3301Y1550D02* X3366Y1614D01* X3260Y1591D02* X3316Y1647D01* X3351Y1217D02* Y1600D01* X3271Y1603D02* Y1631D01* X3251Y1587D02* Y1631D01* X2697Y1606D02* X3275D01* X3317Y1566D02* X3938D01* X3299Y1546D02* X3939D01* X3433Y1346D02* X3939D01* X3337Y1586D02* X3753D01* X3246Y1526D02* X3759D01* X3247Y1506D02* X3727D01* X3331Y1197D02* Y1580D01* X3311Y1177D02* Y1560D01* X3291Y1157D02* Y1536D01* X3251Y1149D02* Y1533D01* X3271Y1149D02* Y1528D01* X3239Y1486D02* X3713D01* X3239Y1466D02* X3708D01* X3239Y1446D02* X3708D01* X2697Y1586D02* X3251D01* X3239Y1406D02* X3728D01* X3234Y1386D02* X3763D01* X3215Y1366D02* X3938D01* X3239Y1426D02* X3714D01* X3194Y1346D02* X3387D01* X3231Y1551D02* Y1631D01* X3211Y1561D02* Y1631D01* X3191Y1562D02* Y1631D01* X3171Y1553D02* Y1631D01* X3011Y1682D02* Y1836D01* X3151Y1412D02* Y1631D01* X3131Y1393D02* Y1631D01* X3111Y1374D02* Y1631D01* X3091Y1355D02* Y1631D01* X3071Y1337D02* Y1631D01* X3051Y1318D02* Y1631D01* X3031Y1299D02* Y1628D01* X2695Y1686D02* X3016D01* X3011Y1280D02* Y1638D01* X2991Y1261D02* Y1836D01* X2697Y1666D02* X3003D01* X2697Y1646D02* X3006D01* X2951Y1223D02* Y1852D01* X2931Y1210D02* Y1872D01* X2971Y1242D02* Y1837D01* X2891Y1159D02* Y1912D01* X2911Y1198D02* Y1892D01* X3236Y1546D02* X3241D01* X3239Y1405D02* Y1487D01* X3161Y1422D02* Y1487D01* X2702Y1566D02* X3238D01* X3231Y1149D02* Y1383D01* X2993Y1156D02* X3226Y1377D01* X3211Y1149D02* Y1363D01* X2940Y1212D02* X3161Y1422D01* X3191Y1149D02* Y1344D01* X2699Y1546D02* X3164D01* X2559Y1486D02* X3161D01* X2559Y1466D02* X3161D01* X2559Y1526D02* X3154D01* X2559Y1506D02* X3153D01* X2559Y1446D02* X3161D01* X2559Y1426D02* X3161D01* X2559Y1406D02* X3145D01* X2559Y1386D02* X3124D01* X2559Y1366D02* X3103D01* X2562Y1346D02* X3082D01* X4034Y1286D02* X4094D01* X4008Y1306D02* X4094D01* X4042Y1266D02* X4094D01* X4031Y1289D02* Y1325D01* X4011Y1305D02* Y1309D01* X4041Y1246D02* X4094D01* X4033Y1226D02* X4094D01* X4034Y1186D02* X4094D01* X4031Y1189D02* Y1225D01* X4011Y1205D02* Y1209D01* X4042Y1166D02* X4094D01* X3835Y1306D02* X3972D01* X4008Y1206D02* X4094D01* X3951Y1293D02* Y1321D01* X3847Y1286D02* X3946D01* X3844Y1226D02* X3947D01* X3951Y1193D02* Y1221D01* X3828Y1206D02* X3972D01* X4041Y1146D02* X4094D01* X4033Y1126D02* X4094D01* X4034Y1086D02* X4094D01* X4031Y1089D02* Y1125D01* X4011Y1105D02* Y1109D01* X4042Y1066D02* X4094D01* X4041Y1046D02* X4094D01* X4033Y1026D02* X4094D01* X4034Y986D02* X4094D01* X4042Y966D02* X4094D01* X4031Y989D02* Y1025D01* X4041Y946D02* X4094D01* X4008Y1106D02* X4094D01* X3951Y1093D02* Y1121D01* X3838Y1106D02* X3972D01* X4011Y1005D02* Y1009D01* X4008Y1006D02* X4094D01* X3951Y993D02* Y1021D01* X3825Y1006D02* X3972D01* X3852Y1266D02* X3938D01* X3851Y1246D02* X3939D01* X3791Y1134D02* Y1188D01* X3502Y1246D02* X3708D01* X3502Y1226D02* X3715D01* X3771Y1135D02* Y1188D01* X3851Y1072D02* Y1251D01* X3831Y1114D02* Y1209D01* X3811Y1128D02* Y1195D01* X3731Y1117D02* Y1206D01* X3711Y1088D02* Y1235D01* X3751Y1130D02* Y1193D01* X3447Y1306D02* X3724D01* X3443Y1286D02* X3712D01* X3488Y1266D02* X3707D01* X3443Y1266D02* Y1294D01* X3378Y1243D02* Y1294D01* X3497Y1206D02* X3731D01* X3497Y1175D02* Y1214D01* X3432Y1188D02* Y1207D01* X3431Y1187D02* Y1206D01* X3815Y1126D02* X3947D01* X3497Y1186D02* X3946D01* X3848Y1086D02* X3946D01* X3496Y1166D02* X3938D01* X3852Y1066D02* X3938D01* X3850Y1046D02* X3939D01* X3842Y1026D02* X3947D01* X3791Y938D02* Y991D01* X3771Y938D02* Y991D01* X3412Y1186D02* X3430D01* X3411Y1167D02* Y1186D01* X3482Y1146D02* X3939D01* X3392Y1166D02* X3410D01* X3391Y1147D02* Y1166D01* X3372Y1146D02* X3390D01* X3462Y1126D02* X3744D01* X3442Y1106D02* X3721D01* X3422Y1086D02* X3711D01* X3402Y1066D02* X3707D01* X3382Y1046D02* X3709D01* X4033Y926D02* X4094D01* X4034Y886D02* X4094D01* X4042Y866D02* X4094D01* X4031Y889D02* Y925D01* X4011Y905D02* Y909D01* X4041Y846D02* X4094D01* X4033Y826D02* X4094D01* X4034Y786D02* X4094D01* X4031Y789D02* Y825D01* X4011Y805D02* Y809D01* X4042Y766D02* X4094D01* X4008Y906D02* X4094D01* X3951Y893D02* Y921D01* X3840Y906D02* X3972D01* X4008Y806D02* X4094D01* X3951Y793D02* Y821D01* X3820Y806D02* X3972D01* X4041Y746D02* X4094D01* X4033Y726D02* X4094D01* X4004Y706D02* X4094D01* X3990Y757D02* X4036D01* X3944D02* X3990D01* Y711D02* Y757D01* X4031Y41D02* Y725D01* X3852Y666D02* X4094D01* X3852Y466D02* X4094D01* X4011Y41D02* Y709D01* X3971Y41D02* Y708D01* X3991Y41D02* Y704D01* X3850Y686D02* X4094D01* X3848Y646D02* X4094D01* X3838Y626D02* X4094D01* X3842Y706D02* X3976D01* X3815Y606D02* X4094D01* X3828Y526D02* X4094D01* X3851Y486D02* X4094D01* X3844Y506D02* X4094D01* X3847Y446D02* X4094D01* X3835Y426D02* X4094D01* X3809Y406D02* X4094D01* X3851Y875D02* Y1054D01* X3820Y926D02* X3947D01* X3849Y886D02* X3946D01* X3831Y917D02* Y1012D01* X3811Y931D02* Y998D01* X3751Y933D02* Y996D01* X3852Y866D02* X3938D01* X3849Y846D02* X3939D01* X3840Y826D02* X3947D01* X3851Y678D02* Y857D01* X3831Y720D02* Y816D01* X3811Y734D02* Y801D01* X3731Y920D02* Y1009D01* Y724D02* Y812D01* X3711Y891D02* Y1038D01* X3491Y41D02* Y1156D01* X3711Y694D02* Y841D01* X3471Y41D02* Y1136D01* X3451Y41D02* Y1116D01* X3431Y41D02* Y1096D01* X3411Y41D02* Y1076D01* X3391Y41D02* Y1056D01* X3831Y523D02* Y619D01* X3825Y726D02* X3947D01* X3811Y538D02* Y604D01* X3791Y741D02* Y795D01* X3771Y741D02* Y794D01* X3791Y544D02* Y598D01* X3951Y41D02* Y721D01* X3851Y481D02* Y661D01* Y41D02* Y464D01* X3831Y41D02* Y422D01* X3811Y41D02* Y407D01* X3791Y41D02* Y401D01* X3751Y736D02* Y799D01* X3771Y544D02* Y597D01* X3731Y527D02* Y615D01* X3711Y498D02* Y644D01* X3751Y539D02* Y602D01* Y41D02* Y406D01* X3771Y41D02* Y400D01* X3711Y41D02* Y447D01* X3731Y41D02* Y418D01* X3320Y1094D02* X3432Y1207D01* X3283Y1149D02* X3378Y1243D01* X3371Y1127D02* Y1146D01* X3352Y1126D02* X3370D01* X3351Y1107D02* Y1126D01* X3332Y1106D02* X3350D01* X3331Y1087D02* Y1106D01* X3230Y894D02* X3488Y1152D01* X3307Y1086D02* X3330D01* X3311Y1067D02* Y1088D01* X3130Y1286D02* X3378D01* X3109Y1266D02* X3378D01* X3088Y1246D02* X3378D01* X3173Y1326D02* X3373D01* X3151Y1306D02* X3373D01* X3067Y1226D02* X3360D01* X3193Y949D02* X3432Y1188D01* X3046Y1206D02* X3340D01* X3024Y1186D02* X3320D01* X3003Y1166D02* X3300D01* X2991Y1149D02* X3283D01* X2901Y1084D02* X3297D01* X3362Y1026D02* X3717D01* X3342Y1006D02* X3735D01* X3322Y986D02* X3946D01* X3291Y1047D02* Y1084D01* X3271Y1027D02* Y1084D01* X3251Y1007D02* Y1084D01* X3302Y966D02* X3938D01* X3282Y946D02* X3939D01* X3262Y926D02* X3739D01* X3242Y906D02* X3719D01* X3231Y987D02* Y1084D01* X3217Y886D02* X3710D01* X2904Y1046D02* X3290D01* X2878Y1066D02* X3310D01* X2912Y1026D02* X3270D01* X3211Y967D02* Y1084D01* X2911Y1006D02* X3250D01* X2903Y986D02* X3230D01* X2992Y866D02* X3707D01* X2878Y966D02* X3210D01* X2984Y884D02* X3207D01* X3171Y1149D02* Y1325D01* X3151Y1149D02* Y1306D01* X3131Y1149D02* Y1287D01* X3111Y1149D02* Y1268D01* X3091Y1149D02* Y1250D01* X3071Y1149D02* Y1231D01* X3191Y949D02* Y1084D01* X3051Y1149D02* Y1212D01* X3171Y949D02* Y1084D01* X3031Y1149D02* Y1193D01* X3011Y1149D02* Y1174D01* X2556Y1326D02* X3060D01* X2395Y1306D02* X3039D01* X2395Y1286D02* X3018D01* X2395Y1266D02* X2997D01* X2395Y1246D02* X2976D01* X2392Y1226D02* X2955D01* X2375Y1206D02* X2922D01* X2355Y1186D02* X2903D01* X2878Y1166D02* X2898D01* X3151Y949D02* Y1084D01* X3131Y949D02* Y1084D01* X3111Y949D02* Y1084D01* X3091Y949D02* Y1084D01* X3071Y949D02* Y1084D01* X3051Y949D02* Y1084D01* X3031Y949D02* Y1084D01* X3011Y949D02* Y1084D01* X2991Y949D02* Y1084D01* X2971Y949D02* Y1084D01* X2951Y949D02* Y1084D01* X2991Y869D02* Y884D01* X2911Y1027D02* Y1084D01* X2891Y1059D02* Y1075D01* X2860Y1017D02* X2906D01* X2931Y949D02* Y1084D01* X2911Y949D02* Y1007D01* X2901Y949D02* X3193D01* X2891Y959D02* Y975D01* X3371Y41D02* Y1036D01* X3192Y706D02* X3717D01* X3192Y686D02* X3709D01* X3351Y41D02* Y1016D01* X3331Y41D02* Y996D01* X3191Y707D02* Y884D01* X3311Y41D02* Y976D01* X3291Y41D02* Y956D01* X3271Y41D02* Y936D01* X3251Y41D02* Y916D01* X3231Y41D02* Y896D01* X3211Y41D02* Y885D01* X2984Y786D02* X3946D01* X2984Y766D02* X3938D01* X2984Y746D02* X3939D01* X2992Y846D02* X3710D01* X2984Y826D02* X3719D01* X2984Y806D02* X3739D01* X3180Y666D02* X3707D01* X3178Y726D02* X3735D01* X3019Y646D02* X3711D01* X3191Y41D02* Y683D01* X2959Y586D02* X4094D01* X2939Y566D02* X4094D01* X2919Y546D02* X4094D01* X2999Y626D02* X3721D01* X2979Y606D02* X3744D01* X2897Y446D02* X3712D01* X2916Y386D02* X4094D01* X2911Y366D02* X4094D01* X2901Y346D02* X4094D01* X2915Y406D02* X3750D01* X2909Y426D02* X3724D01* X2880Y326D02* X4094D01* X2644Y526D02* X3731D01* X2012Y306D02* X4094D01* X1994Y286D02* X4094D01* X2624Y506D02* X3715D01* X2611Y486D02* X3708D01* X2872Y466D02* X3707D01* X1974Y266D02* X4094D01* X1736Y226D02* X4094D01* X1742Y206D02* X4094D01* X1742Y186D02* X4094D01* X1736Y166D02* X4094D01* X3171Y730D02* Y884D01* X3151Y733D02* Y884D01* X3131Y728D02* Y884D01* X3111Y728D02* Y884D01* X3091Y728D02* Y884D01* X3071Y728D02* Y884D01* X3171Y41D02* Y660D01* X3025Y728D02* X3134D01* X3038Y663D02* X3134D01* X3051Y728D02* Y884D01* X3031Y728D02* Y884D01* X3011Y725D02* Y884D01* X2984Y726D02* X3016D01* X2994Y710D02* X3002Y718D01* X2991Y707D02* Y842D01* X2984Y706D02* X2991D01* X2984Y698D02* Y828D01* Y698D02* X2987Y700D01* X3131Y41D02* Y663D01* X3111Y41D02* Y663D01* X3151Y41D02* Y657D01* X3091Y41D02* Y663D01* X3071Y41D02* Y663D01* X3051Y41D02* Y663D01* X3031Y41D02* Y658D01* X3011Y41D02* Y638D01* X2991Y41D02* Y618D01* X2971Y41D02* Y598D01* X2951Y41D02* Y578D01* X2922Y548D02* X3030Y657D01* X2911Y421D02* Y542D01* X2658Y539D02* X2900D01* X2891Y452D02* Y539D01* X2931Y41D02* Y558D01* X2911Y41D02* Y366D01* X2835Y394D02* X2910D01* X2891Y41D02* Y335D01* X2871Y2015D02* Y2236D01* X2851Y2039D02* Y2236D01* X2831Y2052D02* Y2236D01* X2811Y2050D02* Y2236D01* X2642Y1966D02* X2838D01* X2691Y1692D02* Y2312D01* X2671Y1712D02* Y2287D01* X2638Y1946D02* X2858D01* X2651Y1732D02* Y2265D01* X2638Y1746D02* Y1948D01* X2559Y2046D02* X2806D01* X2559Y2026D02* X2793D01* X2559Y2006D02* X2796D01* X2631Y1989D02* Y2245D01* X2611Y1997D02* Y2225D01* X2591Y1992D02* Y2205D01* X2635Y1986D02* X2818D01* X2638Y1926D02* X2878D01* X2559Y1986D02* X2585D01* X2559Y1946D02* X2582D01* X2559Y1926D02* X2582D01* X2638Y1746D02* X2689Y1694D01* X2559Y1906D02* X2582D01* X2559Y1886D02* X2582D01* X2697Y1577D02* Y1675D01* X2591Y1716D02* X2642Y1664D01* Y1577D02* Y1664D01* X2559Y1686D02* X2620D01* X2559Y1666D02* X2640D01* X2559Y1646D02* X2642D01* X2559Y1866D02* X2582D01* X2559Y1726D02* X2584D01* X2559Y1706D02* X2600D01* X2559Y1626D02* X2642D01* X2559Y1606D02* X2642D01* X2559Y1586D02* X2642D01* X2559Y1566D02* X2638D01* X2559Y1546D02* X2641D01* X2470Y2126D02* X2501D01* X2464Y2121D02* X2501Y2157D01* X2559Y1966D02* X2578D01* X2377Y2112D02* X2445D01* X2582Y1735D02* Y1948D01* X2559Y1846D02* X2582D01* X2383D02* X2501D01* X2391Y1834D02* Y2112D01* X2371Y1853D02* Y2110D01* X2351Y1853D02* Y2109D01* X2299Y1906D02* X2501D01* X2321Y1886D02* X2501D01* X2311Y1899D02* Y2307D01* X2291Y1907D02* Y2307D01* X2271Y1902D02* Y2211D01* X2321Y1866D02* X2501D01* X2305Y1846D02* X2337D01* X2331Y1839D02* Y2124D01* X2559Y1826D02* X2582D01* X2559Y1806D02* X2582D01* X2559Y1786D02* X2582D01* X2394Y1826D02* X2501D01* X2395Y1806D02* X2501D01* X2395Y1786D02* X2501D01* X2559Y1766D02* X2582D01* X2395D02* X2501D01* X2559Y1746D02* X2582D01* X2395D02* X2501D01* X2395Y1726D02* X2501D01* X2395Y1706D02* X2501D01* X2395Y1686D02* X2501D01* X2395Y1666D02* X2501D01* X2395Y1646D02* X2501D01* X2280Y1826D02* X2326D01* X2260Y1806D02* X2326D01* X2395Y1626D02* X2501D01* X2395Y1606D02* X2501D01* X2395Y1586D02* X2501D01* X2395Y1566D02* X2501D01* X2395Y1546D02* X2501D01* X2395Y1526D02* X2501D01* X2851Y1169D02* Y1952D01* X2831Y1161D02* Y1972D01* X2871Y1168D02* Y1932D01* X2791Y600D02* Y2236D01* X2771Y600D02* Y2232D01* X2811Y1137D02* Y1990D01* X2731Y600D02* Y2251D01* X2711Y600D02* Y2310D01* X2751Y600D02* Y2234D01* X2691Y600D02* Y1536D01* X2651Y600D02* Y1533D01* X2671Y600D02* Y1528D01* X2611Y849D02* Y1695D01* X2559Y1360D02* Y2173D01* X2395Y1506D02* X2501D01* Y1360D02* Y2157D01* X2395Y1486D02* X2501D01* X2395Y1466D02* X2501D01* X2591Y849D02* Y1715D01* X2571Y849D02* Y2185D01* X2631Y597D02* Y1675D01* X2491Y627D02* Y2148D01* X2471Y627D02* Y2128D01* X2451Y627D02* Y2113D01* X2831Y1061D02* Y1073D01* X2439Y1086D02* X2817D01* X2443Y1066D02* X2842D01* X2438Y1106D02* X2809D01* X2811Y1037D02* Y1097D01* X2551Y849D02* Y1321D01* X2531Y849D02* Y1313D01* X2511Y849D02* Y1318D01* X2395Y1446D02* X2501D01* X2395Y1426D02* X2501D01* X2395Y1406D02* X2501D01* X2395Y1386D02* X2501D01* X2395Y1366D02* X2501D01* X2395Y1346D02* X2498D01* X2405Y1146D02* X2816D01* X2385Y1166D02* X2842D01* X2425Y1126D02* X2808D01* X2395Y1326D02* X2504D01* X2312Y1306D02* X2326D01* X2304Y1326D02* X2326D01* X2311Y1286D02* X2326D01* Y1254D02* Y1820D01* X2311Y1307D02* Y1851D01* Y1240D02* Y1287D01* X2431Y1119D02* Y2112D01* X2411Y1140D02* Y2112D01* X2395Y1240D02* Y1820D01* X2391Y1160D02* Y1226D01* X2278Y1346D02* X2326D01* X2260Y1297D02* X2306D01* X2303Y1266D02* X2326D01* X2291Y1339D02* Y1838D01* X2271Y1348D02* Y1818D01* X2260Y1297D02* Y1343D01* X2303Y1231D02* X2326Y1254D01* X2278Y1246D02* X2317D01* X2291Y1239D02* Y1255D01* X2348Y1179D02* X2384Y1216D01* X2381Y1171D02* X2431Y1121D01* X2371Y1177D02* Y1203D01* X2351Y1179D02* Y1183D01* X2439Y1072D02* Y1100D01* X2371Y693D02* Y1097D01* X2351Y713D02* Y1117D01* X2381Y1072D02* Y1088D01* X2348Y1179D02* X2360D01* X2348Y1121D02* X2381Y1088D01* X2312Y1106D02* X2363D01* X2311Y1107D02* Y1121D01* X2307D02* X2348D01* X2331Y717D02* Y1121D01* X2311Y1086D02* X2381D01* X2303Y1066D02* X2377D01* X2311Y1007D02* Y1087D01* X2247Y2146D02* X2328D01* X2247Y2106D02* X2501D01* X2247Y2086D02* X2501D01* X2251Y2068D02* Y2198D01* X2247Y2077D02* Y2194D01* Y2126D02* X2331D01* X2252Y2066D02* X2501D01* X2249Y2046D02* X2501D01* X2243Y1789D02* X2297Y1843D01* X2251Y1875D02* Y2052D01* X2231Y1855D02* Y2030D01* X1971Y2146D02* X2193D01* X1969Y2126D02* X2193D01* X1955Y2106D02* X2193D01* X2191Y2076D02* Y2363D01* X2193Y2077D02* Y2205D01* X1929Y2086D02* X2193D01* X2057Y1946D02* X2501D01* X2053Y1966D02* X2501D01* X2047Y1926D02* X2501D01* X2211Y1835D02* Y2029D01* X2196Y1819D02* X2258Y1882D01* X2243Y1786D02* X2326D01* X2243Y1766D02* X2326D01* X2243Y1746D02* X2326D01* X2243Y1726D02* X2326D01* X2243Y1706D02* X2326D01* X2243Y1686D02* X2326D01* X2243Y1666D02* X2326D01* X2243Y1646D02* X2326D01* X2244Y1626D02* X2326D01* X2243Y1644D02* Y1789D01* X2244Y1560D02* Y1635D01* Y1606D02* X2326D01* X2244Y1586D02* X2326D01* X2244Y1566D02* X2326D01* X2240Y1546D02* X2326D01* X2222Y1526D02* X2326D01* X2202Y1506D02* X2326D01* X2182Y1486D02* X2326D01* X2031Y1982D02* Y2178D01* X2011Y1980D02* Y2178D01* X1991Y1977D02* Y2178D01* X1971Y2141D02* Y2178D01* X2171Y1558D02* Y2308D01* X2151Y1538D02* Y2288D01* X2131Y1518D02* Y2283D01* X2051Y1969D02* Y2183D01* X1971Y1977D02* Y2139D01* X1951Y1977D02* Y2104D01* X1934Y2091D02* X1945Y2101D01* X1931Y1977D02* Y2088D01* X1762Y2080D02* X1910D01* X1911Y1977D02* Y2081D01* X1891Y1977D02* Y2080D01* X1871Y1977D02* Y2080D01* X1851Y1977D02* Y2080D01* X1831Y1977D02* Y2080D01* X1811Y1977D02* Y2080D01* X2191Y1814D02* Y2044D01* X1841Y1686D02* X2188D01* X1841Y1666D02* X2188D01* X1831Y1699D02* Y1923D01* X2188Y1644D02* Y1800D01* X2186Y1572D02* Y1635D01* X2124Y1511D02* X2186Y1572D01* X1811Y1707D02* Y1923D01* X1791Y1977D02* Y2080D01* X1819Y1706D02* X2188D01* X1771Y1977D02* Y2080D01* X1751Y1977D02* Y2077D01* X1791Y1704D02* Y1923D01* X1825Y1646D02* X2188D01* X1771Y1704D02* Y1923D01* X1751Y1704D02* Y1923D01* X2174Y1466D02* X2326D01* X2174Y1446D02* X2326D01* X2174Y1426D02* X2326D01* X2174Y1478D02* X2236Y1539D01* X2174Y1400D02* Y1478D01* Y1406D02* X2326D01* X2251Y1349D02* Y1798D01* X2231Y1341D02* Y1535D01* X2211Y1317D02* Y1515D01* X2191Y1230D02* Y1495D01* X2171Y1230D02* Y1388D01* X1845Y1446D02* X2116D01* X1828Y1466D02* X2116D01* X1925Y1426D02* X2116D01* Y1412D02* Y1490D01* X2111Y1408D02* Y2283D01* X1932Y1406D02* X2110D01* X2093Y1389D02* X2116Y1412D01* X1928Y1389D02* X2093D01* X2091D02* Y2283D01* X2071Y1389D02* Y2203D01* X2051Y1389D02* Y1931D01* X2170Y1386D02* X2326D01* X2152Y1366D02* X2326D01* X2132Y1346D02* X2242D01* X2126Y1339D02* X2166Y1379D01* X2214Y1297D02* X2260D01* X2231Y1241D02* Y1253D01* X2211Y1230D02* Y1277D01* X2151Y1230D02* Y1365D01* X2131Y1230D02* Y1345D01* X2111Y1230D02* Y1332D01* X2022Y1306D02* X2208D01* X2014Y1326D02* X2216D01* X2021Y1286D02* X2209D01* X2010Y1331D02* X2105D01* X2013Y1266D02* X2217D01* X1988Y1246D02* X2242D01* X2010Y1230D02* X2220D01* X2091D02* Y1331D01* X2071Y1230D02* Y1331D01* X1931Y1413D02* Y1923D01* X1911Y1435D02* Y1923D01* X1891Y1436D02* Y1923D01* X1871Y1434D02* Y1923D01* X1857Y1434D02* X1885D01* X2011Y1389D02* Y1920D01* X1991Y1389D02* Y1923D01* X2031Y1389D02* Y1918D01* X1971Y1389D02* Y1923D01* X1951Y1389D02* Y1923D01* X1851Y1440D02* Y1923D01* X1831Y1460D02* Y1651D01* X1831Y1460D02* X1857Y1434D01* X1791Y1481D02* Y1646D01* X1771Y1466D02* Y1646D01* X1811Y1480D02* Y1643D01* X1790Y1419D02* X1820Y1389D01* X1791D02* Y1417D01* X1751Y1389D02* Y1646D01* X1771Y1389D02* Y1434D01* X1970Y1297D02* X2016D01* X1931Y1389D02* Y1397D01* X1924Y1297D02* X1970D01* X2051Y1230D02* Y1331D01* X2031Y1230D02* Y1331D01* X2011Y1230D02* Y1265D01* X1931Y1233D02* Y1261D01* X1991Y1245D02* Y1249D01* X1911Y1179D02* Y1331D01* X1891Y1179D02* Y1331D01* X1871Y1179D02* Y1331D01* X1811Y1389D02* Y1397D01* X1851Y1179D02* Y1331D01* X1831Y1179D02* Y1331D01* X1811Y1179D02* Y1331D01* X1791Y1179D02* Y1331D01* X1771Y1179D02* Y1331D01* X1751Y1179D02* Y1331D01* X2831Y961D02* Y973D01* X2814Y1017D02* X2860D01* X2831Y861D02* Y873D01* X2811Y937D02* Y997D01* X2612Y846D02* X2816D01* X2811Y837D02* Y897D01* X2814Y817D02* X2860D01* X2612Y744D02* Y849D01* Y826D02* X2808D01* X2811Y769D02* Y797D01* X2448Y1046D02* X2816D01* X2311Y986D02* X2817D01* X2303Y966D02* X2842D01* X2442Y1026D02* X2808D01* X2312Y1006D02* X2809D01* X2278Y946D02* X2816D01* X2311Y886D02* X2817D01* X2304Y926D02* X2808D01* X2303Y866D02* X2842D01* X2507Y849D02* X2612D01* X2312Y906D02* X2809D01* X2612Y806D02* X2809D01* X2831Y769D02* Y773D01* X2807Y769D02* X2838D01* X2807Y664D02* X2828D01* X2807D02* Y769D01* X2612Y786D02* X2817D01* X2612Y766D02* X2807D01* X2811Y644D02* Y664D01* X2645Y600D02* X2814D01* X2811D02* Y606D01* X2612Y746D02* X2807D01* X2604Y726D02* X2807D01* X2612Y706D02* X2807D01* X2611Y686D02* X2807D01* X2582Y744D02* X2612D01* X2603Y666D02* X2807D01* X2604Y626D02* X2808D01* X2578Y646D02* X2812D01* X2612Y606D02* X2811D01* X2608Y577D02* X2623Y592D01* X2611Y586D02* X2618D01* X2591Y739D02* Y744D01* X2312Y806D02* X2507D01* Y744D02* X2538D01* X2311Y907D02* Y987D01* Y807D02* Y887D01* X2507Y744D02* Y849D01* X2611Y707D02* Y744D01* X2431Y633D02* Y1015D01* X2391Y673D02* Y1013D01* X2411Y653D02* Y1008D01* X2278Y1046D02* X2372D01* X2304Y1026D02* X2378D01* X2291Y1039D02* Y1055D01* Y939D02* Y955D01* X2311Y786D02* X2507D01* X2304Y826D02* X2507D01* X2303Y766D02* X2507D01* X2311Y717D02* Y787D01* X2291Y839D02* Y855D01* Y739D02* Y755D01* X2591Y639D02* Y655D01* X2531Y741D02* Y744D01* X2511Y717D02* Y744D01* X2531Y641D02* Y653D01* X2611Y607D02* Y687D01* Y580D02* Y587D01* X2511Y627D02* Y677D01* X2438Y627D02* X2517D01* X2359Y706D02* X2508D01* X2304Y726D02* X2516D01* X2379Y686D02* X2509D01* X2308Y717D02* X2335D01* X2399Y666D02* X2517D01* X2357Y708D02* X2438Y627D01* X2419Y646D02* X2542D01* X2293Y556D02* X2332D01* X2291Y539D02* Y555D01* X2871Y466D02* Y539D01* X2851Y473D02* Y539D01* X2831Y475D02* Y539D01* X2811Y472D02* Y539D01* X2791Y463D02* Y539D01* X2771Y445D02* Y539D01* X2751Y41D02* Y539D01* X2731Y41D02* Y539D01* X2835Y394D02* Y469D01* X2711Y41D02* Y539D01* X2691Y41D02* Y539D01* X2671Y41D02* Y539D01* X2612Y494D02* X2658Y539D01* X2603Y466D02* X2797D01* X2578Y446D02* X2772D01* X2531Y441D02* Y453D01* X2651Y41D02* Y533D01* X2631Y41D02* Y513D01* X2611Y407D02* Y487D01* X2591Y439D02* Y455D01* X2835Y319D02* Y394D01* X2760D02* X2835D01* X2871Y41D02* Y321D01* X2612Y406D02* X2754D01* X2604Y426D02* X2760D01* X2611Y386D02* X2753D01* X2851Y41D02* Y314D01* X2811Y41D02* Y315D01* X2831Y41D02* Y312D01* X2771Y41D02* Y342D01* X2611Y41D02* Y387D01* X2791Y41D02* Y324D01* X2603Y366D02* X2758D01* X2560Y397D02* X2606D01* X2574Y346D02* X2768D01* X2514Y397D02* X2560D01* X2312Y446D02* X2542D01* X2560Y351D02* Y397D01* X2591Y41D02* Y355D01* X2571Y41D02* Y346D01* X2551Y41D02* Y345D01* X2531Y41D02* Y353D01* X2312Y346D02* X2546D01* X2471Y429D02* Y466D01* X2435D02* X2517D01* X2451Y429D02* Y466D01* X2431Y418D02* Y467D01* X2511Y417D02* Y466D01* X2411Y417D02* Y477D01* X2491Y414D02* Y466D01* X2371Y417D02* Y517D01* X2351Y417D02* Y537D01* X2391Y417D02* Y497D01* X2332Y556D02* X2413Y475D01* X2311Y486D02* X2403D01* X2303Y466D02* X2517D01* X2311Y507D02* Y556D01* X2304Y526D02* X2363D01* X2312Y506D02* X2383D01* X2331Y417D02* Y556D01* X2311Y449D02* Y487D01* X2291Y449D02* Y455D01* X2282Y449D02* X2312D01* X2496Y406D02* X2508D01* X2478Y426D02* X2516D01* X2489Y366D02* X2517D01* X2498Y386D02* X2509D01* X2511Y41D02* Y377D01* X2491Y41D02* Y370D01* X2471Y41D02* Y355D01* X2431Y41D02* Y356D01* X2411Y41D02* Y356D01* X2451Y41D02* Y354D01* X2312Y426D02* X2442D01* X2312Y417D02* X2431D01* X2312Y356D02* X2445D01* X2391Y41D02* Y356D01* X2312Y417D02* Y449D01* Y344D02* Y356D01* X2371Y41D02* Y356D01* X2351Y41D02* Y356D01* X2331Y41D02* Y356D01* X2311Y41D02* Y344D01* X2291Y41D02* Y344D01* X2211Y917D02* Y977D01* X2195Y1021D02* X2209Y1007D01* X2231Y941D02* Y953D01* Y841D02* Y853D01* X2278Y846D02* X2507D01* X2191Y822D02* Y1021D01* X2171Y822D02* Y1021D01* X2211Y822D02* Y877D01* X2013Y966D02* X2217D01* X1988Y946D02* X2242D01* X2014Y926D02* X2216D01* X2022Y1006D02* X2208D01* X2017Y1021D02* X2195D01* X2021Y986D02* X2209D01* X2022Y906D02* X2208D01* X2021Y886D02* X2209D01* X2109Y866D02* X2217D01* X2151Y823D02* Y1021D01* X2131Y843D02* Y1021D01* X2107Y868D02* X2153Y822D01* X2214D01* X2149Y826D02* X2216D01* X2140Y761D02* X2221D01* X2278Y746D02* X2507D01* X2231Y741D02* Y753D01* X2211Y717D02* Y761D01* X2129Y846D02* X2242D01* X1988Y746D02* X2242D01* X2072Y816D02* X2118Y770D01* X2013Y766D02* X2124D01* X2014Y726D02* X2216D01* X2013Y666D02* X2217D01* X1988Y646D02* X2242D01* X2022Y706D02* X2208D01* X2021Y686D02* X2209D01* X1970Y997D02* X2016D01* X2011Y929D02* Y965D01* X1931Y933D02* Y961D01* X1991Y945D02* Y949D01* X2111Y863D02* Y1021D01* X2091Y877D02* Y1021D01* X2071Y877D02* Y1021D01* X2051Y877D02* Y1021D01* X2031Y877D02* Y1021D01* X1911Y877D02* Y1021D01* X1924Y997D02* X1970D01* X1891Y877D02* Y1021D01* X1771Y888D02* Y1021D01* X1751Y908D02* Y1021D01* X1871Y877D02* Y1021D01* X1851Y877D02* Y1021D01* X1831Y877D02* Y1021D01* X1811Y877D02* Y1021D01* X1791Y877D02* Y1021D01* X2019Y877D02* X2085D01* X2019Y816D02* X2072D01* X2022Y806D02* X2083D01* X2021Y786D02* X2103D01* X2011Y729D02* Y765D01* X1991Y745D02* Y749D01* Y645D02* Y649D01* X1783Y877D02* X1921D01* X1770Y816D02* X1921D01* X1754Y906D02* X1918D01* X1742Y918D02* X1783Y877D01* X1774Y886D02* X1919D01* X1931Y733D02* Y761D01* X2278Y546D02* X2343D01* X2231Y641D02* Y653D01* X2211Y617D02* Y677D01* X2231Y541D02* Y553D01* X2211Y517D02* Y577D01* X2191Y41D02* Y761D01* X2171Y41D02* Y761D01* X2131Y41D02* Y763D01* X2151Y41D02* Y761D01* X2022Y606D02* X2208D01* X2014Y626D02* X2216D01* X2013Y566D02* X2217D01* X2021Y586D02* X2209D01* X2091Y41D02* Y797D01* X2071Y41D02* Y816D01* X2111Y41D02* Y777D01* X2051Y41D02* Y816D01* X2031Y41D02* Y816D01* X2231Y449D02* Y453D01* X2207Y449D02* X2238D01* X2022Y506D02* X2208D01* X2021Y486D02* X2209D01* X2211Y449D02* Y477D01* X2271Y41D02* Y344D01* X2207D02* X2312D01* X2251Y41D02* Y344D01* X2231Y41D02* Y344D01* X2207D02* Y449D01* X2211Y41D02* Y344D01* X2014Y526D02* X2216D01* X1988Y546D02* X2242D01* X2013Y466D02* X2217D01* X2023Y446D02* X2207D01* X2023Y426D02* X2207D01* X2023Y406D02* X2207D01* X2023Y386D02* X2207D01* X2017Y326D02* X2789D01* X2023Y366D02* X2207D01* X2023Y346D02* X2207D01* X2011Y629D02* Y665D01* X1991Y545D02* Y549D01* X1931Y633D02* Y661D01* Y533D02* Y561D01* X1992Y449D02* X2023D01* Y344D02* Y449D01* X2011Y529D02* Y565D01* Y449D02* Y465D01* X1931Y449D02* Y461D01* X1911Y352D02* Y816D01* X1918Y449D02* X1948D01* X1891Y352D02* Y816D01* X1871Y352D02* Y816D01* X1851Y352D02* Y816D01* X1831Y352D02* Y816D01* X1811Y352D02* Y816D01* X1791Y352D02* Y816D01* X1751Y352D02* Y823D01* X1771Y352D02* Y816D01* X2017Y344D02* X2023D01* X2017Y329D02* Y344D01* X1980Y271D02* X2004Y295D01* X2011Y41D02* Y306D01* X1991Y41D02* Y283D01* X1971Y41D02* Y265D01* X1951Y41D02* Y258D01* X1931Y41D02* Y257D01* X1918Y352D02* Y449D01* Y352D02* X1923D01* X1911Y41D02* Y257D01* X1891Y41D02* Y257D01* X1871Y41D02* Y257D01* X1851Y41D02* Y257D01* X1831Y41D02* Y257D01* X1811Y41D02* Y257D01* X1791Y41D02* Y257D01* X1771Y41D02* Y257D01* X1751Y41D02* Y257D01* X1691Y3845D02* Y4032D01* X1671Y3849D02* Y4032D01* X1689Y3846D02* X1766D01* X1651Y3844D02* Y4032D01* X1591Y3841D02* Y4032D01* X1580Y3846D02* X1657D01* X1731Y3812D02* Y4032D01* X1711Y3833D02* Y4032D01* X1631Y3829D02* Y4032D01* X1611Y3820D02* Y4032D01* X1349Y3986D02* X2682D01* X1345Y3906D02* X2669D01* X1325Y3886D02* X2677D01* X1362Y3966D02* X2668D01* X1359Y3946D02* X2664D01* X1357Y3926D02* X2664D01* X1571Y3848D02* Y4032D01* X1305Y3866D02* X2666D01* X1551Y3847D02* Y4032D01* X1531Y3837D02* Y4032D01* X1471Y3846D02* X1548D01* X1718Y3766D02* X1737D01* X1717Y3826D02* X1739D01* X1695Y3746D02* X1761D01* X1726Y3806D02* X1730D01* X1726Y3786D02* X1730D01* X1731Y3739D02* Y3778D01* X1711Y3736D02* Y3758D01* X1691Y3724D02* Y3745D01* X1654Y3726D02* X1694D01* X1651Y3728D02* Y3746D01* X1631Y3737D02* Y3762D01* X1668Y3706D02* X1679D01* X1608Y3826D02* X1630D01* X1609Y3766D02* X1628D01* X1586Y3746D02* X1652D01* X1617Y3806D02* X1621D01* X1617Y3786D02* X1621D01* X1477Y3746D02* X1543D01* X1611Y3738D02* Y3770D01* X1591Y3731D02* Y3749D01* X1545Y3726D02* X1585D01* X1571Y3709D02* Y3742D01* X1551Y3719D02* Y3743D01* X1471Y3846D02* Y4032D01* X1451Y3849D02* Y4032D01* X1431Y3843D02* Y4032D01* X1351Y3984D02* Y4032D01* X1357Y3930D02* Y3943D01* X1511Y3804D02* Y4032D01* X1491Y3835D02* Y4032D01* X1411Y3826D02* Y4032D01* X1391Y3824D02* Y4032D01* X1371Y3842D02* Y4032D01* X1331Y3992D02* Y4032D01* X1311Y3987D02* Y4032D01* X1291Y3930D02* Y4032D01* X1351Y3848D02* Y3913D01* X1294Y3856D02* X1349Y3911D01* X1331Y3847D02* Y3893D01* X1311Y3836D02* Y3873D01* X1291Y3739D02* Y3853D01* X1508Y3806D02* X1512D01* X1499Y3826D02* X1521D01* X1500Y3766D02* X1519D01* X1511Y3739D02* Y3786D01* X1399Y3806D02* X1403D01* X1508Y3786D02* X1512D01* X1531Y3734D02* Y3753D01* X1491Y3735D02* Y3756D01* X1436Y3726D02* X1476D01* X1431Y3729D02* Y3747D01* X1411Y3738D02* Y3764D01* X1471Y3722D02* Y3744D01* X1390Y3826D02* X1412D01* X1362Y3846D02* X1439D01* X1368Y3746D02* X1434D01* X1399Y3786D02* X1403D01* X1290Y3806D02* X1294D01* X1391Y3766D02* X1410D01* X1391Y3738D02* Y3767D01* X1371Y3730D02* Y3748D01* X1327Y3726D02* X1367D01* X1311Y3735D02* Y3754D01* X1331Y3722D02* Y3744D01* X1675Y3386D02* X1790D01* X1684Y3379D02* X1689Y3374D01* X1671Y3697D02* Y3742D01* Y3388D02* Y3674D01* X1669Y3666D02* X1678D01* X1731Y3344D02* Y3632D01* X1711Y3344D02* Y3634D01* X1695Y3366D02* X1770D01* X1691Y3372D02* Y3646D01* X1656Y3646D02* X1692D01* X1305Y3406D02* X1810D01* X1651Y3389D02* Y3642D01* X1547Y3646D02* X1583D01* X1631Y3389D02* Y3633D01* X1405Y3389D02* X1660D01* X1591D02* Y3639D01* X1571Y3389D02* Y3661D01* X1611Y3389D02* Y3632D01* X1699Y3346D02* X1750D01* X1699Y3344D02* X1748D01* X1731Y3264D02* Y3286D01* X1711Y3264D02* Y3286D01* X1691Y3264D02* Y3286D01* X1671Y3264D02* Y3286D01* X1731Y2695D02* Y3206D01* X1711Y2638D02* Y3206D01* X1691Y2638D02* Y3206D01* X1671Y2640D02* Y3206D01* X1651Y3264D02* Y3286D01* Y2641D02* Y3206D01* X1631Y3264D02* Y3286D01* X1442D02* X1760D01* X1422Y3266D02* X1755D01* X1611Y3264D02* Y3286D01* X1591Y3264D02* Y3286D01* X1571Y3264D02* Y3286D01* X1442Y3206D02* X1765D01* X1430Y3264D02* X1753D01* X1631Y2626D02* Y3206D01* X1611Y2855D02* Y3206D01* X1591Y2883D02* Y3206D01* X1559Y3706D02* X1570D01* X1560Y3666D02* X1569D01* X1438Y3646D02* X1474D01* X1451Y3704D02* Y3742D01* X1450Y3706D02* X1461D01* X1451Y3666D02* X1460D01* X1551Y3389D02* Y3651D01* X1531Y3389D02* Y3636D01* X1471Y3389D02* Y3648D01* X1451Y3389D02* Y3667D01* X1491Y3389D02* Y3635D01* X1329Y3646D02* X1365D01* X1431Y3389D02* Y3641D01* X1351Y3705D02* Y3742D01* X1341Y3706D02* X1352D01* X1342Y3666D02* X1351D01* X1411Y3389D02* Y3633D01* X1371Y3370D02* Y3641D01* X1391Y3387D02* Y3633D01* X1351Y3350D02* Y3666D01* X1331Y3330D02* Y3649D01* X1551Y3264D02* Y3286D01* X1511Y3389D02* Y3632D01* X1531Y3264D02* Y3286D01* X1511Y3264D02* Y3286D01* X1491Y3264D02* Y3286D01* X1471Y3264D02* Y3286D01* X1571Y2887D02* Y3206D01* X1551Y2877D02* Y3206D01* X1531Y2550D02* Y3206D01* X1511Y2550D02* Y3206D01* X1451Y3264D02* Y3286D01* X1491Y2777D02* Y3206D01* X1312Y3386D02* X1390D01* X1311Y3393D02* Y3635D01* Y3310D02* Y3377D01* X1306Y3366D02* X1367D01* X1431Y3264D02* Y3275D01* X1417Y3261D02* X1442Y3286D01* X1301Y3299D02* X1381Y3379D01* X1278Y4006D02* X2962D01* X1268Y4026D02* X2942D01* X1278Y3986D02* X1311D01* X1278Y3966D02* X1298D01* X1271Y4022D02* Y4032D01* X1278Y3946D02* X1301D01* X1278Y3926D02* X1287D01* X1275Y3914D02* X1303Y3941D01* X1278Y3930D02* Y4000D01* X1261Y4032D02* X2935D01* X650D02* X1219D01* X1211Y4026D02* Y4032D01* X643Y4026D02* X1212D01* X623Y4006D02* X1202D01* X664Y3986D02* X1202D01* X679Y3966D02* X1202D01* Y3948D02* Y4000D01* X1191Y3948D02* Y4032D01* X920Y3948D02* X1202D01* X1253Y3846D02* X1330D01* X1281Y3826D02* X1303D01* X1248Y3848D02* X1275D01* X1271Y3836D02* Y3848D01* X1290Y3786D02* X1294D01* X1282Y3766D02* X1301D01* X1259Y3746D02* X1325D01* X1271Y3734D02* Y3754D01* X1251Y3720D02* Y3744D01* X1231Y3708D02* Y3742D01* X1144Y3846D02* X1221D01* X1139Y3848D02* X1226D01* X1211Y3842D02* Y3848D01* X1191Y3823D02* Y3848D01* X1172Y3826D02* X1194D01* X1173Y3766D02* X1192D01* X1150Y3746D02* X1216D01* X1218Y3726D02* X1258D01* X1191Y3738D02* Y3767D01* X1211Y3731D02* Y3748D01* X1171Y3948D02* Y4032D01* X1151Y3948D02* Y4032D01* X1131Y3948D02* Y4032D01* X1111Y3948D02* Y4032D01* X1091Y3948D02* Y4032D01* X1073Y3848D02* X1117D01* X1171Y3827D02* Y3848D01* X1151Y3843D02* Y3848D01* X1073Y3846D02* X1112D01* X1091Y3834D02* Y3848D01* X1071Y3948D02* Y4032D01* X1051Y3948D02* Y4032D01* X1031Y3948D02* Y4032D01* X1011Y3948D02* Y4032D01* X991Y3948D02* Y4032D01* X971Y3948D02* Y4032D01* X951Y3948D02* Y4032D01* X931Y3948D02* Y4032D01* X1073Y3742D02* Y3848D01* X911Y3948D02* Y4032D01* X1181Y3806D02* X1185D01* X1181Y3786D02* X1185D01* X1073Y3746D02* X1107D01* X1073Y3826D02* X1085D01* X1073Y3806D02* X1076D01* X1073Y3766D02* X1083D01* X1171Y3737D02* Y3764D01* X1151Y3728D02* Y3747D01* X1109Y3726D02* X1149D01* X1111Y3724D02* Y3744D01* X1091Y3736D02* Y3756D01* X1071Y3739D02* Y3742D01* X962Y3829D02* X966Y3832D01* X962Y3826D02* X966D01* X962Y3806D02* X966D01* X962Y3786D02* X966D01* X962Y3766D02* X966D01* X962Y3746D02* X966D01* X1051Y3734D02* Y3742D01* X966D02* X1073D01* X962Y3726D02* X1040D01* X966Y3742D02* Y3832D01* X1031Y3717D02* Y3742D01* X1271Y3416D02* Y3636D01* X1291Y3415D02* Y3632D01* X1233Y3666D02* X1242D01* X1232Y3706D02* X1243D01* X1220Y3646D02* X1256D01* X1251Y3414D02* Y3651D01* X1231Y3414D02* Y3662D01* X1211Y3414D02* Y3640D01* X1191Y3414D02* Y3632D01* X1171Y3411D02* Y3633D01* X962Y3606D02* X2671D01* X962Y3586D02* X2676D01* X962Y3566D02* X2666D01* X962Y3626D02* X2664D01* X962Y3546D02* X2664D01* X935Y3506D02* X2672D01* X915Y3486D02* X2695D01* X895Y3466D02* X3607D01* X955Y3526D02* X2665D01* X875Y3446D02* X1850D01* X855Y3426D02* X1830D01* X1291Y3299D02* Y3355D01* X1187Y3346D02* X1347D01* X1197Y3356D02* X1265D01* X1185Y3414D02* X1265D01* X1271Y3299D02* Y3354D01* X1251Y3299D02* Y3356D01* X1231Y3299D02* Y3356D01* X1205Y3299D02* X1301D01* X1211D02* Y3356D01* X1191Y3297D02* Y3350D01* X1167Y3326D02* X1327D01* X1147Y3306D02* X1307D01* X835Y3406D02* X1165D01* X956Y3065D02* X1181Y3289D01* X921Y3079D02* X1197Y3356D01* X1127Y3286D02* X1177D01* X888Y3129D02* X1164Y3406D01* X1171Y3280D02* Y3330D01* X1123Y3706D02* X1134D01* X1111Y3646D02* X1147D01* X1151Y3393D02* Y3642D01* X1131Y3699D02* Y3742D01* X1124Y3666D02* X1133D01* X1131Y3373D02* Y3672D01* X1111Y3353D02* Y3647D01* X1091Y3333D02* Y3635D01* X1051Y3293D02* Y3637D01* X1031Y3273D02* Y3653D01* X1071Y3313D02* Y3632D01* X962Y3706D02* X1025D01* X962Y3666D02* X1024D01* X962Y3646D02* X1038D01* X962Y3545D02* Y3829D01* Y3686D02* X1021D01* X1011Y3253D02* Y3742D01* X991Y3233D02* Y3742D01* X971Y3213D02* Y3742D01* X569Y3141D02* X954Y3526D01* X1151Y3260D02* Y3310D01* X1107Y3266D02* X1157D01* X1087Y3246D02* X1137D01* X1131Y3240D02* Y3290D01* X965Y3266D02* X1025D01* X967Y3246D02* X1005D01* X1111Y3220D02* Y3270D01* X1091Y3200D02* Y3250D01* X1067Y3226D02* X1117D01* X1071Y3180D02* Y3230D01* X964Y3226D02* X985D01* X1051Y3160D02* Y3210D01* X815Y3386D02* X1145D01* X795Y3366D02* X1125D01* X775Y3346D02* X1105D01* X931Y3316D02* Y3503D01* X911Y3325D02* Y3483D01* X909Y3326D02* X1085D01* X943Y3306D02* X1065D01* X958Y3286D02* X1045D01* X951Y3296D02* Y3523D01* X886Y3248D02* X961D01* X1617Y2826D02* X2060D01* X1617Y2806D02* X2080D01* X1617Y2786D02* X2060D01* X1616Y2846D02* X1980D01* X1621Y2746D02* X2057D01* X1617Y2766D02* X2053D01* X1621Y2726D02* X2057D01* X1617Y2754D02* Y2840D01* X1611Y2550D02* Y2711D01* X1584Y2886D02* X1964D01* X1422Y3186D02* X1887D01* X1606Y2866D02* X1964D01* X1402Y3166D02* X1882D01* X1299Y2886D02* X1566D01* X1344Y2826D02* X1560D01* X1344Y2806D02* X1564D01* Y2754D02* Y2825D01* X1344Y2786D02* X1564D01* X1503Y2766D02* X1564D01* X1677Y2582D02* X1872D01* X1731Y2555D02* Y2582D01* X1677Y2638D02* X1728D01* X1711Y2555D02* Y2582D01* X1709Y2555D02* X1811D01* X1691Y2550D02* Y2582D01* X1709Y2550D02* Y2555D01* X1671Y2550D02* Y2580D01* X1631Y2550D02* Y2594D01* X1651Y2550D02* Y2579D01* X1605Y2706D02* X2037D01* X1451Y2686D02* X1720D01* X1423Y2646D02* X1719D01* X1471Y2706D02* X1575D01* X1431Y2666D02* X1713D01* X1427Y2626D02* X1632D01* X1424Y2606D02* X1628D01* X1349Y2586D02* X1638D01* X1349Y2566D02* X1872D01* X1571Y2550D02* Y2708D01* X1591Y2550D02* Y2703D01* X1471Y2781D02* Y3206D01* X1451Y2771D02* Y3206D01* X1396Y3159D02* X1442Y3206D01* X1551Y2550D02* Y2833D01* X1431Y2744D02* Y3195D01* X1376Y2688D02* X1443Y2756D01* X1411Y2724D02* Y3175D01* X1391Y2704D02* Y3156D01* X1371Y2683D02* Y3151D01* X1331Y2857D02* Y3151D01* X1311Y2877D02* Y3151D01* X1323Y2866D02* X1544D01* X1291Y2888D02* Y3151D01* X1340Y2846D02* X1544D01* X1344Y2766D02* X1447D01* X1310Y2878D02* X1334Y2854D01* X1344Y2744D02* Y2830D01* X1507Y2746D02* X1559D01* X1498Y2726D02* X1559D01* X1423Y2657D02* X1482Y2717D01* X1491Y2550D02* Y2721D01* X1471Y2550D02* Y2706D01* X1451Y2550D02* Y2686D01* X1423Y2637D02* Y2657D01* X1367Y2637D02* Y2669D01* X1349Y2726D02* X1413D01* X1344Y2746D02* X1433D01* X1349Y2706D02* X1393D01* X1349Y2686D02* X1374D01* X1349Y2666D02* X1367D01* X1349Y2646D02* X1367D01* X1349Y2626D02* X1363D01* X1349Y2606D02* X1366D01* X1715Y2439D02* X1760D01* X1709Y2399D02* X1811D01* X1624Y2386D02* X1872D01* X1709Y2399D02* Y2447D01* X1611Y2392D02* Y2447D01* X1591Y2390D02* Y2447D01* X1731Y2372D02* Y2399D01* X1691Y2368D02* Y2447D01* X1711Y2370D02* Y2399D01* X1671Y2368D02* Y2447D01* X1651Y2368D02* Y2447D01* X1631Y2379D02* Y2447D01* X1570Y2446D02* X1709D01* X1349Y2550D02* X1709D01* X1568Y2447D02* X1709D01* X1571Y2444D02* Y2447D01* X1577Y2426D02* X1709D01* X1571Y2406D02* X1709D01* X1571Y2338D02* Y2406D01* X1531Y2338D02* Y2395D01* X1551Y2338D02* Y2393D01* X1637Y2368D02* X1708D01* X1480Y2338D02* X1582D01* X1491Y2283D02* X1537D01* X1531Y2276D02* Y2283D01* X1731Y2151D02* Y2207D01* X1585D02* X1838D01* X1711Y2134D02* Y2207D01* X1553Y2228D02* X1566Y2216D01* X1415Y2206D02* X1838D01* X1365Y2386D02* X1586D01* X1395Y2186D02* X1844D01* X1475Y2266D02* X1528D01* X1345Y2366D02* X1573D01* X1435Y2226D02* X1555D01* X1375Y2166D02* X1910D01* X1365Y2146D02* X1722D01* X1447Y2086D02* X1720D01* X1372Y2126D02* X1708D01* X1434Y2106D02* X1708D01* X1431Y2550D02* Y2666D01* X1376Y2398D02* X1528D01* X1511Y2338D02* Y2398D01* X1411Y2550D02* Y2592D01* X1371Y2550D02* Y2598D01* X1391Y2550D02* Y2588D01* X1491Y2338D02* Y2398D01* X1471Y2336D02* Y2398D01* X1451Y2320D02* Y2398D01* X1431Y2300D02* Y2398D01* X1411Y2280D02* Y2398D01* X1391Y2260D02* Y2398D01* X1351Y2550D02* Y3151D01* X1349Y2550D02* Y2727D01* X1346Y2367D02* X1376Y2398D01* X1280Y2359D02* X1327D01* X1371Y2240D02* Y2393D01* X1351Y2220D02* Y2373D01* X1331Y2214D02* Y2360D01* X1311Y2214D02* Y2359D01* X1291Y2214D02* Y2359D01* X1376Y2167D02* X1491Y2283D01* X1455Y2246D02* X1531D01* X1371Y2133D02* Y2164D01* X1431Y2108D02* Y2223D01* X1411Y2112D02* Y2203D01* X1368Y2109D02* X1400D01* X1391D02* Y2183D01* X1371Y2109D02* Y2117D01* X1345Y2214D02* X1461Y2329D01* X1284Y2306D02* X1437D01* X1287Y2286D02* X1417D01* X1284Y2266D02* X1397D01* X1280Y2214D02* X1345D01* X1351Y2155D02* Y2159D01* X1280D02* X1357D01* X1311Y2154D02* Y2159D01* X1291Y2154D02* Y2159D01* X1252Y3126D02* X3297D01* X1232Y3106D02* X3277D01* X1212Y3086D02* X2794D01* X1277Y3151D02* X1375D01* X1272Y3146D02* X1888D01* X1192Y3066D02* X2771D01* X1271Y2889D02* Y3145D01* X1268Y2889D02* Y2897D01* Y2889D02* X1286D01* X1251Y2897D02* Y3125D01* X1231Y2897D02* Y3105D01* X1211Y2897D02* Y3085D01* X1172Y3046D02* X2763D01* X1092Y2966D02* X2558D01* X1072Y2946D02* X2568D01* X1152Y3026D02* X2045D01* X1132Y3006D02* X2038D01* X1112Y2986D02* X2044D01* X1061Y2934D02* X1277Y3151D01* X1043Y2926D02* X1997D01* X297Y2906D02* X1977D01* X1191Y2897D02* Y3065D01* X1173Y2897D02* X1268D01* X294Y2886D02* X1173D01* X1272Y2820D02* X1276Y2816D01* X1268Y2806D02* X1276D01* X1268Y2786D02* X1276D01* X1268Y2820D02* X1272D01* X1268Y2812D02* Y2820D01* Y2812D02* Y2820D01* X1276Y2744D02* Y2816D01* X1268Y2778D02* Y2812D01* Y2752D02* Y2778D01* Y2752D02* Y2778D01* Y2766D02* X1276D01* X1268Y2746D02* X1276D01* X1268Y2726D02* X1271D01* X1268Y2719D02* Y2752D01* X294Y2866D02* X1173D01* X1268Y2706D02* X1271D01* X1268Y2693D02* Y2719D01* Y2686D02* X1271D01* X1268Y2666D02* X1271D01* X1268Y2693D02* Y2719D01* Y2660D02* Y2693D01* X1047Y3206D02* X1097D01* X1027Y3186D02* X1077D01* X1007Y3166D02* X1057D01* X956Y3206D02* X965D01* X951Y3193D02* Y3200D01* X987Y3146D02* X1037D01* X1031Y3140D02* Y3190D01* X1011Y3120D02* Y3170D01* X967Y3126D02* X1017D01* X991Y3100D02* Y3150D01* X971Y3080D02* Y3130D01* X951Y3065D02* Y3110D01* X947Y3106D02* X997D01* X939Y3186D02* X945D01* X927Y3086D02* X977D01* X931Y3173D02* Y3180D01* X911Y3153D02* Y3171D01* X595Y3166D02* X925D01* X931Y3065D02* Y3090D01* X142Y3066D02* X957D01* X911Y3065D02* Y3073D01* X1173Y2837D02* Y2897D01* Y2812D02* Y2837D01* Y2812D02* Y2837D01* Y2778D02* Y2812D01* Y2752D02* Y2778D01* Y2752D02* Y2778D01* X555Y2746D02* X1173D01* Y2719D02* Y2752D01* Y2693D02* Y2719D01* Y2693D02* Y2719D01* X519Y2826D02* X1173D01* X490Y2846D02* X1173D01* X536Y2806D02* X1173D01* X317Y2926D02* X1040D01* X200Y3065D02* X956D01* X547Y2786D02* X1173D01* X553Y2766D02* X1173D01* X553Y2726D02* X1173D01* X548Y2706D02* X1173D01* X538Y2686D02* X1173D01* X523Y2666D02* X1173D01* X1268Y2646D02* X1271D01* X1268Y2626D02* X1271D01* X1268Y2606D02* X1271D01* X1268Y2634D02* Y2660D01* Y2634D02* Y2660D01* Y2601D02* Y2634D01* X1271Y2427D02* Y2820D01* X1271Y2479D02* Y2727D01* X1268Y2586D02* X1271D01* X1268Y2575D02* Y2601D01* Y2575D02* Y2601D01* Y2516D02* Y2575D01* Y2566D02* X1271D01* X1220Y2559D02* X1261D01* X1179D02* X1220D01* X1173Y2660D02* Y2693D01* Y2634D02* Y2660D01* X497Y2646D02* X1173D01* X1268Y2546D02* X1271D01* X1268Y2526D02* X1271D01* X1173Y2516D02* X1268D01* X1251Y2440D02* Y2516D01* X1220Y2523D02* Y2559D01* X1231Y2444D02* Y2516D01* X1271Y2346D02* X1576D01* X1272Y2326D02* X1457D01* X1271Y2327D02* Y2347D01* X1271Y2246D02* X1377D01* X1272Y2226D02* X1357D01* X1277Y2154D02* X1325D01* X1271Y2227D02* Y2247D01* X772Y2506D02* X1271D01* X772Y2466D02* X1274D01* X772Y2446D02* X1280D01* X1211Y2441D02* Y2516D01* X772Y2486D02* X1271D01* X1072Y2444D02* X1188D01* X1191Y2430D02* Y2516D01* X1188Y2426D02* Y2444D01* X1173Y2634D02* Y2660D01* Y2601D02* Y2634D01* Y2575D02* Y2601D01* X1171Y2444D02* Y3045D01* X1173Y2575D02* Y2601D01* Y2516D02* Y2575D01* X1151Y2444D02* Y3025D01* X1131Y2444D02* Y3005D01* X1111Y2444D02* Y2985D01* X1091Y2444D02* Y2965D01* X1071Y2416D02* Y2945D01* X1051Y2416D02* Y2928D01* X294Y2626D02* X1173D01* X294Y2606D02* X1173D01* X294Y2586D02* X1173D01* X1031Y2416D02* Y2926D01* X294Y2566D02* X1173D01* X294Y2546D02* X1173D01* X1011Y2416D02* Y2926D01* X991Y2416D02* Y2926D01* X971Y2416D02* Y2926D01* X951Y2416D02* Y2926D01* X931Y2416D02* Y2926D01* X1091Y2230D02* Y2244D01* X1072Y2416D02* Y2444D01* X1071Y2164D02* Y2276D01* X1051Y2164D02* Y2276D01* X1031Y2164D02* Y2276D01* X1011Y2164D02* Y2276D01* X991Y2164D02* Y2276D01* X971Y2164D02* Y2276D01* X951Y2164D02* Y2276D01* X931Y2164D02* Y2276D01* X772Y2266D02* X1076D01* X294Y2526D02* X1173D01* X771Y2246D02* X1089D01* X797Y2416D02* X1072D01* X772Y2426D02* X1072D01* X769Y2276D02* X1074D01* X763Y2226D02* X1088D01* X734Y2206D02* X1076D01* X819Y2166D02* X1076D01* X609Y2186D02* X1073D01* X825Y2164D02* X1077D01* X891Y3936D02* Y4032D01* X871Y3916D02* Y4032D01* X868Y3912D02* X893Y3937D01* X751Y3838D02* Y4032D01* X851Y3591D02* Y4032D01* X831Y3791D02* Y4032D01* X857Y3596D02* Y3885D01* X811Y3814D02* Y4032D01* X791Y3827D02* Y4032D01* X771Y3835D02* Y4032D01* X682Y3946D02* X907D01* X682Y3926D02* X882D01* X678Y3906D02* X863D01* X682Y3928D02* Y3946D01* X731Y3836D02* Y4032D01* X670Y3886D02* X857D01* X680Y3866D02* X857D01* X711Y3831D02* Y4032D01* X691Y3820D02* Y4032D01* X820Y3806D02* X857D01* X794Y3826D02* X857D01* X834Y3786D02* X857D01* X842Y3766D02* X857D01* X748Y3740D02* Y3831D01* X845Y3746D02* X857D01* X845Y3726D02* X857D01* X839Y3706D02* X857D01* X829Y3686D02* X857D01* X811Y3666D02* X857D01* X748Y3740D02* X839D01* X774Y3646D02* X857D01* X682Y3846D02* X857D01* X657Y3740D02* X748D01* Y3649D02* Y3740D01* X682Y3826D02* X702D01* X680Y3666D02* X685D01* X682Y3626D02* X857D01* X675Y3606D02* X857D01* X670Y3586D02* X847D01* X682Y3646D02* X722D01* X671Y3978D02* Y4032D01* X651Y3994D02* Y4032D01* X613Y3996D02* X650Y4032D01* X631Y3999D02* Y4014D01* X571Y4089D02* Y4096D01* X630Y3937D02* Y3992D01* X682Y3833D02* Y3852D01* X630Y3937D02* X676D01* X671Y3884D02* Y3896D01* X630Y3843D02* X676D01* X630Y3787D02* Y3843D01* X551Y4069D02* Y4096D01* X521Y4039D02* X579Y4096D01* X531Y4049D02* Y4096D01* X511Y4031D02* Y4096D01* X523Y3781D02* X577Y3835D01* X507Y3900D02* Y3922D01* X568Y3826D02* X578D01* X491Y4031D02* Y4096D01* X471Y4031D02* Y4096D01* X491Y3884D02* Y3922D01* X653Y3786D02* X662D01* X651Y3754D02* Y3785D01* Y3699D02* Y3726D01* X611Y3700D02* Y3784D01* X591Y3687D02* Y3797D01* X631Y3704D02* Y3781D01* X682Y3632D02* Y3651D01* X630Y3642D02* Y3697D01* Y3642D02* X676D01* X671Y3585D02* Y3600D01* X524Y3766D02* X654D01* X520Y3746D02* X651D01* X505Y3726D02* X652D01* X548Y3806D02* X585D01* X528Y3786D02* X607D01* X584Y3642D02* X630D01* X577Y3632D02* Y3651D01* X591Y3588D02* Y3597D01* X891Y3329D02* Y3463D01* X831Y3571D02* Y3690D01* X871Y3328D02* Y3443D01* X811Y3551D02* Y3666D01* X791Y3531D02* Y3653D01* X771Y3511D02* Y3646D01* X851Y3322D02* Y3423D01* X831Y3309D02* Y3403D01* X886Y3248D02* Y3323D01* X811Y3282D02* Y3383D01* X791Y3129D02* Y3363D01* X771Y3129D02* Y3343D01* X749Y3489D02* X857Y3596D01* X681Y3566D02* X827D01* X682Y3546D02* X807D01* X751Y3491D02* Y3643D01* X682Y3526D02* X787D01* X674Y3506D02* X767D01* X751Y3400D02* Y3411D01* X539Y3188D02* X763Y3411D01* X755Y3326D02* X862D01* X731Y3489D02* Y3644D01* X656Y3489D02* X749D01* X731Y3380D02* Y3411D01* X886Y3173D02* Y3248D01* X811D02* X886D01* X891Y3133D02* Y3167D01* X851Y3129D02* Y3174D01* X831Y3129D02* Y3187D01* X871Y3129D02* Y3168D01* X891Y3065D02* Y3071D01* X871Y3065D02* Y3071D01* X851Y3065D02* Y3071D01* X831Y3065D02* Y3071D01* X811Y3129D02* Y3214D01* Y3065D02* Y3071D01* X735Y3306D02* X829D01* X715Y3286D02* X814D01* X635Y3206D02* X816D01* X695Y3266D02* X806D01* X675Y3246D02* X804D01* X655Y3226D02* X807D01* X615Y3186D02* X833D01* X575Y3146D02* X905D01* X525Y3129D02* X888D01* X751D02* Y3323D01* X791Y3065D02* Y3071D01* X711Y3489D02* Y3650D01* X691Y3489D02* Y3661D01* X682Y3534D02* Y3553D01* X630Y3543D02* X676D01* X671Y3489D02* Y3502D01* X711Y3360D02* Y3411D01* X691Y3340D02* Y3411D01* X671Y3320D02* Y3411D01* X651Y3300D02* Y3411D01* X631Y3280D02* Y3411D01* X584Y3543D02* X630D01* X577Y3534D02* Y3553D01* X571Y3489D02* Y3829D01* X591Y3489D02* Y3498D01* X551Y3489D02* Y3809D01* X531Y3489D02* Y3789D01* X611Y3260D02* Y3411D01* X511Y3489D02* Y3733D01* X491Y3489D02* Y3718D01* X731Y3129D02* Y3303D01* X711Y3129D02* Y3283D01* X691Y3129D02* Y3263D01* X591Y3240D02* Y3411D01* X571Y3220D02* Y3411D01* X551Y3200D02* Y3411D01* X671Y3129D02* Y3243D01* X651Y3129D02* Y3223D01* X631Y3129D02* Y3203D01* X611Y3129D02* Y3183D01* X591Y3129D02* Y3163D01* X571Y3129D02* Y3143D01* X532Y3188D02* X539D01* X531Y3188D02* Y3411D01* X511Y3192D02* Y3411D01* X491Y3182D02* Y3411D01* X551Y3129D02* Y3133D01* X532Y3132D02* X550D01* X491Y3129D02* Y3138D01* X451Y4031D02* Y4096D01* X387Y4046D02* X529D01* X415Y4031D02* X515D01* X431D02* Y4096D01* X415Y3922D02* Y4031D01* X387Y4026D02* X415D01* X471Y3864D02* Y3922D01* X415D02* X507D01* X436Y3829D02* X507Y3900D01* X451Y3844D02* Y3922D01* X387Y3904D02* Y4049D01* X431Y3823D02* Y3922D01* X39Y4096D02* X579D01* X39Y4086D02* X569D01* X39Y4066D02* X549D01* X371Y4049D02* Y4096D01* X242Y4049D02* X387D01* Y4006D02* X415D01* X387Y3986D02* X415D01* X387Y3966D02* X415D01* X387Y3906D02* X507D01* X387Y3946D02* X415D01* X387Y3926D02* X415D01* X242Y3904D02* X387D01* X385Y3846D02* X454D01* X376Y3866D02* X474D01* X387Y3826D02* X434D01* X385Y3806D02* X424D01* X375Y3786D02* X419D01* X387Y3686D02* X591D01* X381Y3706D02* X657D01* X387Y3666D02* X580D01* X368Y3726D02* X435D01* X381Y3646D02* X577D01* X356Y3886D02* X494D01* X335Y3746D02* X420D01* X367Y3626D02* X578D01* X355Y3766D02* X416D01* X315Y3676D02* X381D01* X333Y3606D02* X584D01* X39Y3586D02* X589D01* X39Y3566D02* X579D01* X39Y3546D02* X577D01* X351Y4049D02* Y4096D01* X331Y4049D02* Y4096D01* X311Y4049D02* Y4096D01* X291Y4049D02* Y4096D01* X271Y4049D02* Y4096D01* X251Y4049D02* Y4096D01* X371Y3872D02* Y3904D01* X351Y3889D02* Y3904D01* X331Y3897D02* Y3904D01* X311Y3899D02* Y3904D01* X291Y3895D02* Y3904D01* X271Y3884D02* Y3904D01* X39Y4046D02* X242D01* X39Y4026D02* X242D01* X39Y4006D02* X242D01* X39Y3986D02* X242D01* X39Y3966D02* X242D01* X39Y3946D02* X242D01* X251Y3861D02* Y3904D01* X39Y3886D02* X274D01* X39Y3866D02* X254D01* X242Y3904D02* Y4049D01* X39Y3926D02* X242D01* X39Y3906D02* X242D01* X351Y3739D02* Y3764D01* X331Y3747D02* Y3756D01* X311Y3749D02* Y3754D01* X39Y3846D02* X245D01* X39Y3826D02* X242D01* X291Y3745D02* Y3758D01* X371Y3722D02* Y3781D01* X315Y3676D02* Y3742D01* X249Y3676D02* X315D01* X271Y3734D02* Y3768D01* X251Y3711D02* Y3791D01* X315Y3610D02* Y3676D01* X39Y3766D02* X275D01* X39Y3746D02* X295D01* X39Y3726D02* X262D01* X39Y3806D02* X245D01* X39Y3786D02* X255D01* X39Y3706D02* X249D01* X39Y3646D02* X249D01* X39Y3626D02* X263D01* X39Y3606D02* X297D01* X39Y3686D02* X243D01* X39Y3666D02* X243D01* X451Y3489D02* Y3717D01* X431Y3489D02* Y3730D01* X471Y3489D02* Y3714D01* X411Y3489D02* Y4096D01* X391Y3489D02* Y4096D01* X371Y3489D02* Y3631D01* X471Y3129D02* Y3411D01* X451Y3129D02* Y3411D01* X431Y3129D02* Y3411D01* X411Y3129D02* Y3411D01* X391Y3129D02* Y3411D01* X371Y3129D02* Y3411D01* X351Y3489D02* Y3614D01* X39Y3526D02* X578D01* X39Y3506D02* X585D01* X331Y3503D02* Y3606D01* X311Y3503D02* Y3604D01* X237Y3503D02* X343D01* Y3489D02* X604D01* X343Y3411D02* X763D01* X343Y3406D02* X757D01* X351Y3129D02* Y3411D01* X343Y3489D02* Y3503D01* Y3398D02* Y3411D01* X340Y3366D02* X717D01* X328Y3386D02* X737D01* X342Y3346D02* X697D01* X337Y3326D02* X677D01* X331Y3382D02* Y3398D01* X319Y3306D02* X657D01* X340Y3266D02* X617D01* X328Y3286D02* X637D01* X342Y3246D02* X597D01* X337Y3226D02* X577D01* X331Y3282D02* Y3318D01* Y3129D02* Y3218D01* X312Y3398D02* X343D01* X319Y3206D02* X557D01* X135Y3129D02* X505D01* X39Y3186D02* X496D01* X147Y3071D02* X900D01* X39Y3166D02* X483D01* X39Y3146D02* X486D01* X291Y3503D02* Y3608D01* X271Y3503D02* Y3618D01* X237Y3398D02* X268D01* X251Y3503D02* Y3641D01* X237Y3398D02* Y3503D01* X251Y3386D02* Y3398D01* X231Y3129D02* Y4096D01* X211Y3129D02* Y4096D01* X191Y3129D02* Y4096D01* X171Y3129D02* Y4096D01* X151Y3129D02* Y4096D01* X39Y3486D02* X237D01* X39Y3466D02* X237D01* X39Y3386D02* X252D01* X39Y3446D02* X237D01* X39Y3426D02* X237D01* X39Y3406D02* X237D01* X131Y3129D02* Y4096D01* X111Y3118D02* Y4096D01* X91Y3098D02* Y4096D01* X71Y3070D02* Y4096D01* X51Y2352D02* Y4096D01* X311Y3298D02* Y3302D01* Y3129D02* Y3202D01* X291Y3129D02* Y3198D01* X251Y3286D02* Y3314D01* X39Y3366D02* X240D01* X271Y3129D02* Y3201D01* X251Y3129D02* Y3214D01* X79Y3086D02* X114Y3121D01* X39Y3326D02* X243D01* X39Y3306D02* X261D01* X39Y3286D02* X252D01* X39Y3346D02* X238D01* X39Y3266D02* X240D01* X39Y3246D02* X238D01* X39Y3226D02* X243D01* X39Y3206D02* X261D01* X39Y3126D02* X122D01* X39Y3106D02* X100D01* X39Y3086D02* X80D01* X911Y2416D02* Y2926D01* X771Y3065D02* Y3071D01* Y2509D02* Y2926D01* X751Y3065D02* Y3071D01* X731Y3065D02* Y3071D01* X751Y2509D02* Y2926D01* X891Y2416D02* Y2926D01* X871Y2416D02* Y2926D01* X851Y2416D02* Y2926D01* X831Y2416D02* Y2926D01* X811Y2416D02* Y2926D01* X791Y2415D02* Y2926D01* X711Y3065D02* Y3071D01* X691Y3065D02* Y3071D01* X671Y3065D02* Y3071D01* X651Y3065D02* Y3071D01* X631Y3065D02* Y3071D01* X611Y3065D02* Y3071D01* X731Y2509D02* Y2926D01* X711Y2509D02* Y2926D01* X691Y2509D02* Y2926D01* X591Y3065D02* Y3071D01* X571Y3065D02* Y3071D01* X551Y3065D02* Y3071D01* X772Y2407D02* Y2509D01* X671D02* Y2926D01* X742Y2404D02* X768D01* X751Y2399D02* Y2404D01* X691Y2401D02* Y2404D01* X671Y2377D02* Y2404D01* X668Y2509D02* X772D01* X531Y2506D02* X668D01* X543Y2486D02* X668D01* X546Y2466D02* X668D01* X540Y2446D02* X668D01* X524Y2426D02* X668D01* Y2404D02* Y2509D01* Y2404D02* X698D01* X539Y2386D02* X676D01* X520Y2406D02* X668D01* X545Y2366D02* X668D01* X531Y3065D02* Y3071D01* X511Y3065D02* Y3071D01* X491Y3065D02* Y3071D01* X471Y3065D02* Y3071D01* X451Y3065D02* Y3071D01* Y2857D02* Y2926D01* X551Y2771D02* Y2926D01* X531Y2813D02* Y2926D01* X511Y2833D02* Y2926D01* X491Y2846D02* Y2926D01* X471Y2853D02* Y2926D01* X442Y2744D02* Y2850D01* X431Y3065D02* Y3071D01* X411Y3065D02* Y3071D01* X431Y2856D02* Y2926D01* X391Y3065D02* Y3071D01* X371Y3065D02* Y3071D01* X351Y3065D02* Y3071D01* X442Y2744D02* X548D01* X411Y2853D02* Y2926D01* X442Y2638D02* Y2744D01* X391Y2845D02* Y2926D01* X371Y2832D02* Y2926D01* X351Y2811D02* Y2926D01* X531Y2506D02* Y2676D01* X511Y2519D02* Y2656D01* X491Y2523D02* Y2643D01* X471Y2519D02* Y2636D01* X451Y2504D02* Y2632D01* X445Y2426D02* X461D01* X531Y2397D02* Y2433D01* X511Y2410D02* Y2420D01* X471Y2410D02* Y2420D01* X451Y2395D02* Y2435D01* X445Y2406D02* X464D01* X431Y2452D02* Y2632D01* X411Y2465D02* Y2636D01* X409Y2466D02* X439D01* X371Y2465D02* Y2657D01* X351Y2450D02* Y2678D01* X391Y2469D02* Y2644D01* X437Y2386D02* X445D01* X436Y2446D02* X444D01* X413Y2366D02* X439D01* X411Y2356D02* Y2366D01* X371Y2356D02* Y2366D01* X811Y2167D02* Y2276D01* X771Y2267D02* Y2276D01* X651Y2334D02* Y2926D01* X631Y2334D02* Y2926D01* X611Y2334D02* Y2926D01* X911Y2164D02* Y2276D01* X891Y2164D02* Y2276D01* X871Y2164D02* Y2276D01* X851Y2164D02* Y2276D01* X831Y2164D02* Y2276D01* X791Y2162D02* Y2276D01* X610Y2334D02* X673D01* X544Y2346D02* X669D01* X591Y2327D02* Y2926D01* X533Y2326D02* X590D01* X571Y2308D02* Y2926D01* X559Y2296D02* X589Y2326D01* X446Y2306D02* X570D01* X533Y2286D02* X553D01* X751Y2129D02* Y2215D01* X731Y2138D02* Y2206D01* X691Y2131D02* Y2213D01* X711Y2139D02* Y2205D01* X769Y2106D02* X795D01* X772Y2086D02* X806D01* X771Y2097D02* Y2247D01* X671Y2107D02* Y2237D01* X755Y2126D02* X779D01* X622Y2276D02* X671D01* X609Y2226D02* X677D01* X609Y2206D02* X706D01* X612Y2266D02* X668D01* X609Y2263D02* X622Y2276D01* X609Y2246D02* X669D01* X609Y2166D02* X801D01* X609Y2146D02* X779D01* X609Y2126D02* X685D01* X609Y2106D02* X671D01* X609Y2086D02* X668D01* X531Y2288D02* Y2324D01* X511Y2301D02* Y2311D01* X451Y2286D02* Y2326D01* X442Y2326D02* X451D01* X471Y2301D02* Y2311D01* X551Y2280D02* Y2718D01* X544Y2266D02* X551D01* X545Y2246D02* X551D01* X539Y2226D02* X551D01* X442Y2286D02* X451D01* X531Y2179D02* Y2215D01* X428Y2346D02* X441D01* X427Y2266D02* X441D01* X414Y2246D02* X439D01* X431Y2343D02* Y2379D01* X351Y2341D02* Y2381D01* X411Y2247D02* Y2257D01* X431Y2234D02* Y2270D01* X437Y2226D02* X445D01* X351Y2232D02* Y2272D01* X371Y2247D02* Y2257D01* X521Y2206D02* X551D01* X511Y2192D02* Y2202D01* X523Y2186D02* X551D01* X471Y2192D02* Y2202D01* X445Y2206D02* X464D01* X444Y2186D02* X461D01* X545Y2146D02* X551D01* X540Y2166D02* X551D01* X543Y2126D02* X551D01* X531Y2106D02* X551D01* X451Y2177D02* Y2217D01* X501Y2086D02* X551D01* X436Y2166D02* X444D01* X407Y2146D02* X439D01* X430Y2126D02* X441D01* X431Y2125D02* Y2161D01* X371Y2138D02* Y2148D01* X411Y2138D02* Y2148D01* X443Y2106D02* X453D01* X446Y2086D02* X483D01* X351Y2123D02* Y2163D01* X331Y3065D02* Y3071D01* X311Y3065D02* Y3071D01* X291Y3065D02* Y3071D01* X271Y3065D02* Y3071D01* X251Y3065D02* Y3071D01* X231Y3065D02* Y3071D01* X331Y2765D02* Y2926D01* X211Y3065D02* Y3071D01* X294Y2903D02* X317Y2926D01* X191Y3063D02* Y3071D01* X171Y3050D02* Y3071D01* X151Y3029D02* X176Y3054D01* X129Y3046D02* X167D01* X151Y3030D02* Y3071D01* X129Y3053D02* X147Y3071D01* X129Y3026D02* X148D01* X129Y3006D02* X141D01* X129Y2986D02* X140D01* X129Y2966D02* X140D01* X129Y2946D02* X140D01* X294Y2846D02* X394D01* X294Y2826D02* X365D01* X336Y2744D02* X442D01* X294Y2806D02* X348D01* X294Y2786D02* X338D01* X294Y2766D02* X332D01* X294Y2686D02* X346D01* X294Y2666D02* X361D01* X294Y2746D02* X330D01* X294Y2726D02* X331D01* X294Y2706D02* X336D01* X129Y2926D02* X140D01* X129Y2906D02* X140D01* X129Y2886D02* X140D01* X129Y2866D02* X140D01* X129Y2846D02* X140D01* X129Y2826D02* X140D01* X294Y2646D02* X387D01* X294Y2506D02* X453D01* X294Y2486D02* X441D01* X129Y2806D02* X140D01* X294Y2466D02* X375D01* X39Y3066D02* X71D01* X39Y3046D02* X71D01* X39Y3026D02* X71D01* X39Y3006D02* X71D01* X39Y2986D02* X71D01* X39Y2966D02* X71D01* X129Y2786D02* X140D01* X129Y2766D02* X140D01* X129Y2746D02* X140D01* X129Y2726D02* X140D01* X39Y2946D02* X71D01* X129Y2706D02* X140D01* X39Y2926D02* X71D01* X39Y2906D02* X71D01* X39Y2886D02* X71D01* X39Y2866D02* X71D01* X39Y2846D02* X71D01* X39Y2826D02* X71D01* X39Y2806D02* X71D01* X39Y2786D02* X71D01* X39Y2766D02* X71D01* X39Y2746D02* X71D01* X39Y2726D02* X71D01* X129Y2686D02* X140D01* X129Y2666D02* X140D01* X129Y2646D02* X140D01* X129Y2626D02* X140D01* X39Y2706D02* X71D01* X129Y2606D02* X140D01* X129Y2586D02* X140D01* X129Y2566D02* X140D01* X129Y2546D02* X140D01* X129Y2526D02* X140D01* X129Y2506D02* X140D01* X129Y2486D02* X140D01* X39Y2686D02* X71D01* X39Y2666D02* X71D01* X39Y2646D02* X71D01* X39Y2626D02* X71D01* X39Y2606D02* X71D01* X39Y2586D02* X71D01* X39Y2566D02* X71D01* X39Y2546D02* X71D01* X39Y2526D02* X71D01* X39Y2506D02* X71D01* X39Y2486D02* X71D01* X297Y2426D02* X340D01* X294Y2446D02* X348D01* X294Y2406D02* X339D01* X294Y2435D02* Y2903D01* X271Y2384D02* Y2388D01* X277Y2366D02* X371D01* X331Y2334D02* Y2724D01* X311Y2334D02* Y2920D01* X291Y2334D02* Y2401D01* X270Y2386D02* X347D01* X271Y2346D02* X356D01* X271Y2334D02* Y2346D01* X255Y2334D02* X346D01* X151Y2346D02* X162Y2334D01* X125Y2346D02* X150D01* X151Y2334D02* Y2345D01* X331Y2123D02* Y2276D01* X311Y2123D02* Y2276D01* X291Y2123D02* Y2276D01* X271Y2123D02* Y2276D01* X251Y2123D02* Y2276D01* X231Y2123D02* Y2276D01* X210Y2123D02* X351D01* X211D02* Y2276D01* X191Y2123D02* Y2276D01* X171Y2109D02* Y2276D01* X130D02* X348D01* X110Y2266D02* X357D01* X130Y2246D02* X370D01* X143Y2226D02* X347D01* X130Y2334D02* X162D01* X144Y2206D02* X339D01* X144Y2166D02* X349D01* X144Y2146D02* X377D01* X144Y2126D02* X354D01* X144Y2186D02* X340D01* X144Y2106D02* X170D01* X129Y2466D02* X140D01* X129Y2446D02* X140D01* X129Y2426D02* X140D01* Y2370D02* Y3005D01* X129Y2406D02* X140D01* X129Y2386D02* X140D01* X129Y2360D02* Y3053D01* Y2366D02* X141D01* X131Y2334D02* Y3055D01* X118Y2337D02* X121Y2339D01* X39Y2466D02* X71D01* X39Y2446D02* X71D01* X39Y2426D02* X71D01* Y2372D02* Y3065D01* X39Y2406D02* X71D01* X39Y2386D02* X71D01* X54Y2356D02* X71Y2372D01* X39Y2366D02* X65D01* X39Y2346D02* X48D01* X131Y2245D02* Y2276D01* X46Y2260D02* Y2335D01* X39Y2326D02* X46D01* X111Y2265D02* Y2273D01* X104Y2272D02* X136Y2241D01* X54Y2239D02* X86Y2208D01* X39Y2246D02* X50D01* X39Y2226D02* X68D01* X39Y2206D02* X86D01* X39Y2306D02* X46D01* X39Y2286D02* X46D01* X39Y2266D02* X46D01* X39Y2186D02* X86D01* X39Y2166D02* X86D01* X39Y2146D02* X86D01* X39Y2126D02* X86D01* X39Y2106D02* X86D01* X1731Y1977D02* Y2079D01* X1645Y1986D02* X2501D01* X1631Y1995D02* Y2207D01* X1611Y1996D02* Y2207D01* X1591Y1981D02* Y2207D01* X1711Y1977D02* Y2096D01* X1691Y1977D02* Y2207D01* X1650Y1977D02* X2008D01* X1671D02* Y2207D01* X1651Y1977D02* Y2207D01* X1591Y1704D02* Y1949D01* X1537Y2026D02* X2501D01* X1533Y2046D02* X2191D01* X1527Y2006D02* X2501D01* X1531Y2049D02* Y2244D01* X1444Y2066D02* X2188D01* X1464Y1966D02* X1588D01* X1486Y1946D02* X1594D01* X1571Y1704D02* Y2211D01* X1551Y1704D02* Y2229D01* X1635Y1923D02* X2008D01* X1731Y1704D02* Y1923D01* X1613Y1933D02* X1616Y1931D01* X1486Y1926D02* X1621D01* X1711Y1704D02* Y1923D01* X1691Y1704D02* Y1923D01* X1671Y1704D02* Y1923D01* X1651Y1704D02* Y1923D01* X1611Y1704D02* Y1934D01* X1631Y1704D02* Y1923D01* X1470Y1906D02* X2281D01* X1300Y1826D02* X2202D01* X1320Y1806D02* X2188D01* X1360Y1766D02* X2188D01* X1340Y1786D02* X2188D01* X1380Y1746D02* X2188D01* X1420Y1706D02* X1801D01* X1400Y1726D02* X2188D01* X1302Y1546D02* X2160D01* X1422Y1704D02* X1795D01* X1410Y1646D02* X1795D01* X1511Y2062D02* Y2283D01* X1491Y2060D02* Y2283D01* X1440Y2059D02* X1490D01* X1471D02* Y2263D01* X1451Y2059D02* Y2243D01* X1531Y1704D02* Y2011D01* X1491Y1704D02* Y2000D01* X1511Y1704D02* Y1998D01* X1471Y1963D02* Y2001D01* X1451Y1967D02* Y2001D01* X1471Y1704D02* Y1907D01* X1431Y1962D02* Y2001D01* X1411Y1962D02* Y2001D01* X1391Y1962D02* Y2001D01* X1371Y1962D02* Y2001D01* X1351Y1962D02* Y2001D01* X1431Y1704D02* Y1907D01* X1331Y1962D02* Y2001D01* X1311Y1962D02* Y2001D01* X1291Y1962D02* Y2001D01* X1411Y1715D02* Y1907D01* X1391Y1735D02* Y1907D01* X1371Y1755D02* Y1907D01* X1351Y1775D02* Y1907D01* X1331Y1795D02* Y1907D01* X1311Y1815D02* Y1907D01* X1451Y1704D02* Y1903D01* X1311Y1526D02* Y1732D01* X1293Y1706D02* X1338D01* X1294Y1665D02* Y1700D01* X1286Y1841D02* X1422Y1704D01* X1294Y1686D02* X1358D01* X1291Y1835D02* Y1907D01* Y1712D02* Y1752D01* X1294Y1666D02* X1378D01* X1287Y1646D02* X1407D01* X1291Y1557D02* Y1653D01* X1731Y1389D02* Y1646D01* X1567Y1426D02* X1778D01* X1587Y1406D02* X1803D01* X1711Y1389D02* Y1646D01* X1591Y1402D02* Y1646D01* X1571Y1422D02* Y1646D01* X1691Y1389D02* Y1646D01* X1671Y1389D02* Y1646D01* X1604Y1389D02* X1820D01* X1651D02* Y1646D01* X1631Y1389D02* Y1646D01* X1611Y1389D02* Y1646D01* X1312Y1506D02* X2121D01* X1311Y1526D02* X2140D01* X1304Y1486D02* X2116D01* X1551Y1446D02* Y1646D01* X1552Y1446D02* X1768D01* X1556Y1437D02* X1604Y1389D01* X1416Y1442D02* X1623Y1235D01* X1515Y1396D02* X1572Y1339D01* X1551Y1307D02* Y1360D01* X1492Y1366D02* X1545D01* X1512Y1346D02* X1565D01* X1714Y1326D02* X1926D01* X1710Y1331D02* X1930D01* X1722Y1306D02* X1918D01* X1670Y1297D02* X1716D01* X1624D02* X1670D01* X1731Y1179D02* Y1331D01* X1721Y1286D02* X1919D01* X1713Y1266D02* X1927D01* X1711Y1229D02* Y1265D01* X1631Y1235D02* Y1261D01* X1592Y1331D02* X1630D01* X1532Y1326D02* X1626D01* X1552Y1306D02* X1618D01* X1571Y1287D02* Y1340D01* X1572Y1286D02* X1619D01* X1592Y1266D02* X1627D01* X1611Y1247D02* Y1331D01* X1591Y1267D02* Y1331D01* X1531Y1459D02* Y1646D01* X1511Y1457D02* Y1646D01* X1432Y1426D02* X1493D01* X1451Y1407D02* Y1646D01* X1431Y1427D02* Y1646D01* X1411Y1446D02* Y1646D01* X1511Y1347D02* Y1398D01* X1472Y1386D02* X1525D01* X1531Y1327D02* Y1380D01* X1491Y1367D02* Y1646D01* X1471Y1387D02* Y1646D01* X1452Y1406D02* X1500D01* X1371Y1454D02* Y1672D01* X1351Y1454D02* Y1692D01* X1391Y1454D02* Y1653D01* X1331Y1454D02* Y1712D01* X1311Y1454D02* Y1505D01* X1291Y1457D02* Y1473D01* X1412Y1446D02* X1498D01* X1296Y1454D02* X1389D01* X1373Y1377D02* X1408Y1341D01* X1432Y1306D02* X1443D01* X1431Y1286D02* X1463D01* X1398Y1346D02* X1403D01* X1431Y1307D02* Y1318D01* X1424Y1325D02* X1473Y1277D01* X1429Y1278D02* X1465D01* X1451D02* Y1298D01* X1431Y1278D02* Y1287D01* X1391Y1348D02* Y1358D01* X1296Y1377D02* X1373D01* X1380Y1297D02* Y1343D01* X1371Y1349D02* Y1377D01* X1351Y1341D02* Y1377D01* X1331Y1317D02* Y1377D01* X1380Y1297D02* X1426D01* X1334D02* X1380D01* X1311Y1278D02* Y1377D01* X1291Y1278D02* Y1373D01* X1271Y1962D02* Y2001D01* X1208Y1962D02* X1436D01* X1208Y1906D02* X1440D01* X1251Y1962D02* Y2001D01* X1231Y1962D02* Y2001D01* X1211Y1962D02* Y2001D01* X1271Y1848D02* Y1907D01* X1251Y1849D02* Y1907D01* X1231Y1849D02* Y1907D01* X1211Y1849D02* Y1907D01* X1159Y1986D02* X1595D01* X1080Y2001D02* X1490D01* X1196Y1966D02* X1446D01* X1191Y1967D02* Y2001D01* X1181Y1966D02* X1186D01* X1208Y1907D02* X1439D01* X1065Y1886D02* X2259D01* X1085Y1866D02* X2242D01* X1191Y1849D02* Y1902D01* X1278Y1846D02* X2222D01* X1260Y1746D02* X1298D01* X1251Y1752D02* Y1791D01* X1231Y1757D02* Y1791D01* X1211Y1752D02* Y1791D01* X1261Y1746D02* X1286Y1721D01* X1253Y1791D02* X1389Y1654D01* X1280Y1726D02* X1318D01* X1271Y1735D02* Y1772D01* X1102Y1849D02* X1265D01* X959Y1786D02* X1258D01* X1020Y1766D02* X1278D01* X1090Y1791D02* X1253D01* X1037Y1746D02* X1205D01* X1039Y1726D02* X1198D01* X1039Y1706D02* X1204D01* X1039Y1686D02* X1198D01* X1191Y1673D02* Y1791D01* X1058Y1666D02* X1185D01* X1171Y1979D02* Y2001D01* X1151Y1987D02* Y2001D01* X1131Y1984D02* Y2001D01* X1111Y1984D02* Y2001D01* X1091Y1984D02* Y2001D01* X1071Y1984D02* Y2002D01* X1131Y1849D02* Y1926D01* X1151Y1849D02* Y1923D01* X1111Y1849D02* Y1926D01* X1091Y1860D02* Y1926D01* X1071Y1880D02* Y1926D01* X1043Y2006D02* X1064D01* X1044Y2025D02* X1059Y2009D01* X1051Y1984D02* Y2017D01* X1033Y1986D02* X1141D01* X1031Y1984D02* X1135D01* X890Y1926D02* X1135D01* X1051Y1900D02* Y1926D01* X1031Y1919D02* Y1926D01* X1045Y1906D02* X1174D01* X1036Y1916D02* X1102Y1849D01* X1171D02* Y1908D01* X1051Y1673D02* Y1817D01* X1171Y1653D02* Y1791D01* X1031Y1756D02* Y1837D01* X1011Y1770D02* Y1857D01* X1039Y1685D02* Y1733D01* X1003Y1866D02* X1069Y1799D01* X819Y1826D02* X1043D01* X950Y1806D02* X1063D01* X885Y1924D02* X1015D01* X795Y1866D02* X1003D01* X772Y1846D02* X1023D01* X991Y1770D02* Y1866D01* X971Y1758D02* Y1866D01* X959Y1766D02* X982D01* X1267Y1626D02* X2186D01* X1247Y1606D02* X2186D01* X1227Y1586D02* X2186D01* X1271Y1566D02* Y1630D01* X1224Y1583D02* X1286Y1644D01* X1273Y1566D02* X2180D01* X1251Y1567D02* Y1610D01* X1231Y1559D02* Y1590D01* X1224Y1553D02* Y1583D01* Y1566D02* X1247D01* X1151Y1633D02* Y1791D01* X1149Y1631D02* X1198Y1679D01* X1078Y1646D02* X1165D01* X1098Y1626D02* X1146D01* X1133Y1586D02* X1141D01* X1118Y1606D02* X1141D01* X1135Y1566D02* X1141D01* X1135Y1546D02* X1141D01* X1135Y1526D02* X1141D01* X1128Y1506D02* X1141D01* X1279Y1466D02* X1772D01* X1279Y1366D02* X1383D01* X1224Y1346D02* X1362D01* X1224Y1366D02* X1241D01* X1271Y1278D02* Y1364D01* X1224Y1326D02* X1336D01* X1250Y1278D02* X1331D01* X1231Y1272D02* Y1371D01* X1224Y1265D02* Y1377D01* X1251Y1278D02* Y1363D01* X959Y1486D02* X1141D01* X959Y1466D02* X1141D01* X959Y1446D02* X1141D01* X985Y1406D02* X1141D01* X965Y1426D02* X1141D01* X1005Y1386D02* X1141D01* X1224Y1306D02* X1328D01* X1224Y1286D02* X1329D01* X1025Y1366D02* X1141D01* X1131Y1590D02* Y1791D01* X1039Y1685D02* X1124Y1600D01* X1111Y1613D02* Y1791D01* X1071Y1653D02* Y1798D01* X1091Y1633D02* Y1791D01* X1141Y1080D02* Y1610D01* X1135Y1529D02* Y1573D01* X1051Y1340D02* Y1564D01* X1031Y1360D02* Y1584D01* X1059Y1537D02* Y1557D01* X959Y1606D02* X1009D01* X959Y1586D02* X1029D01* X959Y1566D02* X1049D01* X959Y1626D02* X989D01* X1011Y1380D02* Y1604D01* X974Y1642D02* X1059Y1557D01* X959Y1546D02* X1059D01* X971Y1420D02* Y1644D01* X991Y1400D02* Y1624D01* X1085Y1306D02* X1141D01* X1104Y1286D02* X1141D01* X1071Y1320D02* Y1498D01* X1091Y1300D02* Y1490D01* X1131Y804D02* Y1512D01* X1109Y1266D02* X1141D01* X1111Y812D02* Y1493D01* X1109Y812D02* Y1270D01* X1045Y1346D02* X1141D01* X1065Y1326D02* X1141D01* X959Y1526D02* X1058D01* X959Y1506D02* X1064D01* X959Y1432D02* X1101Y1291D01* X868Y1393D02* X1021Y1241D01* X811Y1266D02* X996D01* X811Y1286D02* X976D01* X991Y975D02* Y1270D01* X1722Y1206D02* X1918D01* X1714Y1226D02* X1926D01* X1721Y1186D02* X1919D01* X1723Y1179D02* X1921D01* X1722Y1006D02* X1918D01* X1717Y1021D02* X1923D01* X1721Y986D02* X1919D01* X1731Y925D02* Y1021D01* X1688Y1246D02* X1952D01* X1670Y997D02* X1716D01* X1691Y1245D02* Y1249D01* X1624Y997D02* X1670D01* X1713Y966D02* X1927D01* X1688Y946D02* X1952D01* X1711Y929D02* Y965D01* X1691Y945D02* Y949D01* X1728Y926D02* X1926D01* X1714Y826D02* X1748D01* X1713Y927D02* X1720D01* X1711Y829D02* Y862D01* X1722Y806D02* X1918D01* X1713Y766D02* X1927D01* X1714Y726D02* X1926D01* X1721Y786D02* X1919D01* X1711Y729D02* Y765D01* X1722Y706D02* X1918D01* X1710Y863D02* X1748Y825D01* X1688Y846D02* X1728D01* X1691Y845D02* Y849D01* X1688Y746D02* X1952D01* X1691Y745D02* Y749D01* X1623Y1235D02* X1634D01* X1612Y1246D02* X1652D01* X1631Y933D02* Y961D01* X1551Y929D02* Y1021D01* X1531Y926D02* Y1021D01* X1562Y926D02* X1626D01* X1571Y919D02* Y1021D01* X1579Y906D02* X1618D01* X1511Y926D02* Y1021D01* X1491Y926D02* Y1021D01* X1471Y926D02* Y1021D01* X1432Y1006D02* X1618D01* X1427Y1021D02* X1623D01* X1423Y966D02* X1627D01* X1431Y1007D02* Y1021D01* X1431Y986D02* X1619D01* X1424Y926D02* X1534D01* X1398Y946D02* X1652D01* X1424Y926D02* X1533D01* X1451D02* Y1021D01* X1431Y926D02* Y987D01* X1411Y939D02* Y955D01* X1579Y886D02* X1619D01* X1559Y866D02* X1627D01* X1631Y833D02* Y861D01* X1431Y807D02* Y868D01* X1432Y806D02* X1618D01* X1631Y733D02* Y761D01* X1460Y766D02* X1627D01* X1461Y746D02* X1652D01* X1451Y781D02* Y868D01* X1445Y786D02* X1619D01* X1447Y726D02* X1626D01* X1424Y868D02* X1533D01* X1423Y866D02* X1538D01* X1409Y846D02* X1652D01* X1411Y839D02* Y855D01* X1409Y841D02* Y853D01* X1424Y826D02* X1626D01* X1721Y686D02* X1919D01* X1713Y666D02* X1927D01* X1714Y626D02* X1926D01* X1711Y629D02* Y665D01* X1691Y645D02* Y649D01* X1722Y606D02* X1918D01* X1721Y586D02* X1919D01* X1713Y566D02* X1927D01* X1714Y526D02* X1926D01* X1731Y352D02* Y842D01* X1711Y529D02* Y565D01* X1722Y506D02* X1918D01* X1688Y646D02* X1952D01* X1691Y545D02* Y549D01* X1688Y546D02* X1952D01* X1568D02* X1652D01* X1721Y486D02* X1919D01* X1722Y446D02* X1918D01* X1722Y426D02* X1918D01* X1722Y406D02* X1918D01* X1722Y386D02* X1918D01* X1722Y366D02* X1918D01* X1722Y352D02* X1918D01* X1723Y246D02* X4094D01* X1722Y146D02* X4094D01* X1731Y235D02* Y257D01* X1722Y352D02* Y449D01* X1731Y41D02* Y158D01* X1713Y466D02* X1927D01* X1710Y257D02* X1946D01* X1711Y449D02* Y465D01* X1692Y449D02* X1722D01* X1711Y41D02* Y137D01* X1686Y126D02* X4094D01* X1691Y41D02* Y128D01* X1671Y41D02* Y124D01* X1531Y578D02* Y868D01* X1511Y578D02* Y868D01* X1631Y633D02* Y661D01* X1491Y577D02* Y868D01* X1471Y577D02* Y868D01* X1431Y707D02* Y719D01* X1611Y502D02* Y1021D01* X1591Y522D02* Y1021D01* X1571Y542D02* Y874D01* X1551Y562D02* Y865D01* X1451Y577D02* Y730D01* X1432Y706D02* X1618D01* X1423Y666D02* X1627D01* X1424Y626D02* X1626D01* X1431Y686D02* X1619D01* X1411Y639D02* Y655D01* X1431Y607D02* Y687D01* X1432Y606D02* X1618D01* X1431Y586D02* X1619D01* X1431Y577D02* Y587D01* X1631Y533D02* Y561D01* X1548Y566D02* X1627D01* X1588Y526D02* X1626D01* X1608Y506D02* X1618D01* X1544Y569D02* X1618Y496D01* X1611Y240D02* Y257D01* X1631Y41D02* Y135D01* X1611Y41D02* Y154D01* X1651Y41D02* Y127D01* X1591Y41D02* Y257D01* X1571Y41D02* Y257D01* X1551Y41D02* Y257D01* X1472D02* X1630D01* X1429Y577D02* X1508D01* X1531Y41D02* Y257D01* X1511Y41D02* Y257D01* X1491Y41D02* Y257D01* X1451Y41D02* Y262D01* X1471Y41D02* Y257D01* X1411Y41D02* Y298D01* X1431Y41D02* Y278D01* X1253Y968D02* X1336D01* X1331Y917D02* Y968D01* X1311Y774D02* Y968D01* X1291Y774D02* Y968D01* X1271Y774D02* Y968D01* X1231Y790D02* Y977D01* X1211Y803D02* Y997D01* X1251Y774D02* Y968D01* X1109Y1046D02* X1163D01* X1109Y1026D02* X1183D01* X1109Y1006D02* X1203D01* X1109Y1066D02* X1145D01* X1149Y1059D02* X1233Y976D01* X1109Y986D02* X1223D01* X1109Y966D02* X1337D01* X1171Y804D02* Y1037D01* X1151Y804D02* Y1057D01* X1191Y804D02* Y1017D01* X1351Y941D02* Y953D01* X1351Y841D02* Y853D01* X1331Y817D02* Y877D01* X1235Y786D02* X1329D01* X1398Y646D02* X1652D01* X1226Y796D02* X1247Y774D01* X1333D01* X1109Y946D02* X1362D01* X1109Y926D02* X1336D01* X1109Y846D02* X1351D01* X1109Y906D02* X1328D01* X1109Y886D02* X1329D01* X1109Y866D02* X1337D01* X1129Y806D02* X1328D01* X1109Y826D02* X1336D01* X1132Y804D02* X1205D01* X1109Y1246D02* X1141D01* X1109Y1226D02* X1141D01* X1109Y1206D02* X1141D01* X1109Y1186D02* X1141D01* X811Y1246D02* X1016D01* X1109Y1166D02* X1141D01* X1109Y1146D02* X1141D01* X1109Y1126D02* X1141D01* X1109Y1106D02* X1141D01* X1021Y973D02* Y1241D01* X1011Y977D02* Y1250D01* X1109Y1086D02* X1141D01* X811Y1226D02* X1021D01* X811Y1206D02* X1021D01* X811Y1186D02* X1021D01* X811Y1166D02* X1021D01* X811Y1146D02* X1021D01* X811Y1126D02* X1021D01* X811Y1106D02* X1021D01* X811Y1086D02* X1021D01* X811Y1066D02* X1021D01* X811Y1046D02* X1021D01* X811Y1026D02* X1021D01* X811Y1006D02* X1021D01* X1051Y555D02* Y583D01* X887Y566D02* X1068D01* X1071Y555D02* Y563D01* X847Y606D02* X1028D01* X827Y626D02* X1008D01* X867Y586D02* X1048D01* X811Y986D02* X1021D01* X811Y966D02* X980D01* X811Y946D02* X973D01* X811Y926D02* X973D01* X811Y906D02* X973D01* X811Y886D02* X973D01* X811Y866D02* X973D01* X811Y846D02* X973D01* X811Y646D02* X988D01* X811Y826D02* X973D01* X811Y806D02* X973D01* X1228Y419D02* X1327D01* X1214Y406D02* X1327D01* X1194Y386D02* X1327D01* Y344D02* Y419D01* X1311Y41D02* Y419D01* X1174Y366D02* X1327D01* X1291Y41D02* Y419D01* X1271Y41D02* Y419D01* X1251Y41D02* Y419D01* X1231Y41D02* Y419D01* X1211Y41D02* Y403D01* X1191Y41D02* Y383D01* X1133Y466D02* X1188D01* X1122Y466D02* X1188D01* X1171Y450D02* Y466D01* X1151Y430D02* Y466D01* X1122Y446D02* X1168D01* X1108Y426D02* X1148D01* X1157Y348D02* X1228Y419D01* X1122Y400D02* X1188Y466D01* X1154Y346D02* X1327D01* X1171Y41D02* Y363D01* X1122Y166D02* X1604D01* X1105Y206D02* X1598D01* X1118Y146D02* X1618D01* X1365Y344D02* X1438Y271D01* X1327Y344D02* X1365D01* X1119Y186D02* X1598D01* X1391Y41D02* Y318D01* X1371Y41D02* Y338D01* X1103Y126D02* X1654D01* X1351Y41D02* Y344D01* X1331Y41D02* Y344D01* X1151Y41D02* Y344D01* X39Y266D02* X1444D01* X39Y246D02* X1617D01* X39Y226D02* X1604D01* X243Y326D02* X1384D01* X39Y306D02* X1404D01* X39Y286D02* X1424D01* X39Y106D02* X4094D01* X39Y86D02* X4094D01* X39Y66D02* X4094D01* X39Y46D02* X4094D01* X39Y41D02* X4094D01* X1122Y441D02* Y468D01* X1070Y467D02* X1116D01* X1031Y555D02* Y603D01* X1070Y421D02* Y467D01* X1131Y410D02* Y466D01* X1096Y414D02* X1122Y441D01* X1111Y400D02* Y430D01* X1091Y400D02* Y414D01* X1044D02* X1096D01* X1071Y400D02* Y414D01* X982Y652D02* X1079Y555D01* X898D02* X1079D01* X1003Y426D02* X1032D01* X1011Y555D02* Y623D01* X991Y555D02* Y643D01* X1018Y441D02* Y444D01* Y441D02* X1044Y414D01* X1031Y400D02* Y427D01* X1011Y400D02* Y435D01* X991Y400D02* Y419D01* X1111Y199D02* Y340D01* X1091Y215D02* Y340D01* X1071Y219D02* Y340D01* X1051Y400D02* Y414D01* Y216D02* Y340D01* X1031Y203D02* Y340D01* X1131Y41D02* Y340D01* X1111Y41D02* Y135D01* X1091Y41D02* Y119D01* X1051Y41D02* Y118D01* X1031Y41D02* Y131D01* X1071Y41D02* Y114D01* X579Y400D02* X1122D01* X574Y406D02* X1128D01* X567Y340D02* X1135D01* X519Y186D02* X1021D01* X505Y206D02* X1035D01* X522Y166D02* X1018D01* X518Y146D02* X1022D01* X503Y126D02* X1037D01* X1011Y41D02* Y340D01* X991Y41D02* Y340D01* X850Y2036D02* X954D01* X951Y2030D02* Y2036D01* X931Y1984D02* Y2036D01* X871Y1987D02* Y2036D01* X951Y1984D02* Y2003D01* X911Y1984D02* Y2036D01* X891Y1984D02* Y2036D01* X890Y1984D02* X963D01* X851Y1977D02* Y2036D01* X831Y1924D02* Y2033D01* X753Y2046D02* X809D01* X768Y2066D02* X803D01* X811Y1924D02* Y2043D01* X755Y2026D02* X950D01* X769Y2006D02* X951D01* X791Y1925D02* Y2108D01* X771Y1997D02* Y2077D01* X884Y1986D02* X961D01* X795Y1924D02* X865D01* X851D02* Y1933D01* X789Y1926D02* X860D01* X811Y1827D02* Y1866D01* X911Y1824D02* Y1866D01* X891Y1824D02* Y1866D01* X825Y1824D02* X920D01* X871D02* Y1866D01* X851Y1824D02* Y1866D01* X831Y1824D02* Y1866D01* X772Y1986D02* X866D01* X768Y1966D02* X844D01* X753Y1946D02* X844D01* X771Y1939D02* Y1977D01* X742Y1939D02* X772D01* X609Y1826D02* X801D01* X772Y1927D02* Y1939D01* Y1834D02* Y1863D01* X751Y2029D02* Y2045D01* X609Y2046D02* X687D01* X691Y2031D02* Y2043D01* X609Y2066D02* X672D01* X609Y2026D02* X685D01* X545D02* X551D01* X671Y2007D02* Y2067D01* X609Y2006D02* X671D01* X609Y1986D02* X668D01* X609Y1966D02* X672D01* X671Y1939D02* Y1967D01* X534Y2066D02* X551D01* X531Y2070D02* Y2106D01* X544Y2046D02* X551D01* X511Y2083D02* Y2093D01* X451Y2068D02* Y2108D01* X471Y2083D02* Y2093D01* X538Y2006D02* X551D01* X531Y1961D02* Y1997D01* X517Y1986D02* X551D01* X471Y1974D02* Y1984D01* X451Y1959D02* Y1999D01* X511Y1974D02* Y1984D01* X751Y1939D02* Y1945D01* X691Y1939D02* Y1943D01* X668Y1939D02* X698D01* X609Y1946D02* X687D01* X609Y1926D02* X668D01* X546D02* X551D01* X609Y1906D02* X668D01* X609Y1886D02* X668D01* Y1834D02* X772D01* X668D02* Y1939D01* X609Y1866D02* X668D01* X609Y1846D02* X668D01* X541Y1946D02* X551D01* X526Y1966D02* X551D01* X542Y1906D02* X551D01* X530Y1886D02* X551D01* X511Y1865D02* Y1875D01* X509Y1866D02* X551D01* X536Y1846D02* X551D01* X531Y1852D02* Y1888D01* X545Y1826D02* X551D01* X451Y1850D02* Y1890D01* X471Y1865D02* Y1875D01* X951Y1804D02* Y1866D01* X941Y1816D02* X951Y1806D01* X931Y1822D02* Y1866D01* X959Y1432D02* Y1785D01* Y1746D02* X965D01* X851Y602D02* Y1766D01* X831Y622D02* Y1766D01* X825D02* X871D01* X609Y1766D02* X795D01* X791Y1822D02* Y1865D01* X609Y1806D02* X779D01* X609Y1786D02* X779D01* X811Y642D02* Y1763D01* X791Y1402D02* Y1768D01* X609Y1746D02* X858D01* X771Y1424D02* Y1834D01* X751Y1437D02* Y1834D01* X731Y1435D02* Y1834D01* X959Y1726D02* X962D01* X959Y1706D02* X962D01* X959Y1686D02* X962D01* X609Y1726D02* X859D01* X609Y1706D02* X859D01* X609Y1686D02* X859D01* X962Y1669D02* Y1733D01* X959Y1666D02* X963D01* X959Y1646D02* X970D01* X859Y1415D02* Y1729D01* X609Y1666D02* X859D01* X609Y1646D02* X859D01* X609Y1626D02* X859D01* X609Y1606D02* X859D01* X609Y1586D02* X859D01* X609Y1566D02* X859D01* X609Y1546D02* X859D01* X609Y1526D02* X859D01* X609Y1506D02* X859D01* X609Y1486D02* X859D01* X609Y1466D02* X859D01* X609Y1446D02* X859D01* X711Y1169D02* Y1834D01* X691Y1161D02* Y1834D01* X545Y1806D02* X551D01* X546Y1706D02* X551D01* X542Y1726D02* X551D01* X542Y1686D02* X551D01* X651Y400D02* Y2276D01* X631Y400D02* Y2276D01* X671Y1137D02* Y1834D01* X611Y748D02* Y2265D01* X551Y915D02* Y2275D01* X609Y755D02* Y2263D01* X537Y1786D02* X551D01* X513Y1766D02* X551D01* X511Y1756D02* Y1766D01* X471Y1756D02* Y1766D01* X531Y1743D02* Y1779D01* X528Y1746D02* X551D01* X531Y1634D02* Y1670D01* X451Y1741D02* Y1781D01* Y1632D02* Y1672D01* X537Y1626D02* X551D01* X527Y1666D02* X551D01* X545Y1606D02* X551D01* X544Y1586D02* X551D01* X536Y1566D02* X551D01* X530Y1526D02* X551D01* X546Y1486D02* X551D01* X543Y1506D02* X551D01* X541Y1466D02* X551D01* X531Y1525D02* Y1561D01* Y1416D02* Y1452D01* X525Y1446D02* X551D01* X514Y1646D02* X551D01* X507Y1546D02* X551D01* X511Y1647D02* Y1657D01* X471Y1647D02* Y1657D01* X511Y1538D02* Y1548D01* Y1429D02* Y1439D01* X471Y1538D02* Y1548D01* Y1429D02* Y1439D01* X451Y1523D02* Y1563D01* Y1414D02* Y1454D01* X441Y2066D02* X450D01* X425Y2046D02* X440D01* X438Y2006D02* X446D01* X431Y2016D02* Y2052D01* X411Y2029D02* Y2039D01* X418Y2026D02* X439D01* X445Y1986D02* X467D01* X444Y1966D02* X459D01* X434Y1946D02* X443D01* X431Y1907D02* Y1943D01* X371Y2029D02* Y2039D01* X144Y2026D02* X366D01* X351Y2014D02* Y2054D01* X202Y2054D02* X351D01* X144Y2046D02* X359D01* X411Y1920D02* Y1930D01* X371Y1920D02* Y1930D01* X144Y2006D02* X346D01* X144Y1946D02* X350D01* X351Y1905D02* Y1945D01* X443Y1886D02* X455D01* X445Y1866D02* X475D01* X440Y1846D02* X448D01* X432Y1906D02* X442D01* X439Y1844D02* X447D01* X445Y1766D02* X471D01* X440Y1786D02* X447D01* X443Y1746D02* X456D01* X439Y1786D02* X447D01* X434Y1686D02* X443D01* X397Y1926D02* X439D01* X432Y1726D02* X442D01* X144Y1926D02* X387D01* X144Y1906D02* X352D01* X144Y1726D02* X352D01* X431Y1689D02* Y1725D01* X144Y1706D02* X439D01* X371Y1702D02* Y1712D01* X411Y1702D02* Y1712D01* X144Y1986D02* X339D01* X144Y2086D02* X166D01* X144Y2066D02* X175D01* X331Y1844D02* Y2054D01* X311Y1844D02* Y2054D01* X291Y1844D02* Y2054D01* X271Y1848D02* Y2054D01* X251Y1852D02* Y2054D01* X231Y1842D02* Y2054D01* X39Y2086D02* X86D01* X39Y2066D02* X86D01* X39Y2046D02* X86D01* X39Y2026D02* X86D01* X39Y2006D02* X86D01* X39Y1986D02* X86D01* X144Y1966D02* X340D01* X39D02* X86D01* X144Y1886D02* X341D01* X39Y1946D02* X86D01* X39Y1926D02* X86D01* X39Y1906D02* X86D01* X276Y1844D02* X345D01* X144Y1866D02* X339D01* X274Y1846D02* X344D01* X144D02* X236D01* X144Y1826D02* X223D01* X144Y1806D02* X226D01* X260Y1786D02* X345D01* X144Y1786D02* X345D01* X144Y1766D02* X339D01* X39Y1886D02* X86D01* X39Y1866D02* X86D01* X39Y1846D02* X86D01* X39Y1826D02* X86D01* X39Y1806D02* X86D01* X39Y1786D02* X86D01* X144Y1746D02* X341D01* X39Y1766D02* X86D01* X39Y1746D02* X86D01* X39Y1726D02* X86D01* X39Y1706D02* X86D01* X444Y1666D02* X457D01* X445Y1646D02* X470D01* X351Y1687D02* Y1727D01* X439Y1626D02* X447D01* X441Y1566D02* X449D01* X440Y1567D02* X448D01* X436Y1622D02* X445D01* X144Y1686D02* X351D01* X144Y1666D02* X340D01* X146Y1626D02* X346D01* X331Y1622D02* Y1786D01* X311Y1622D02* Y1786D01* X146Y1646D02* X339D01* X145Y1622D02* X348D01* X52Y1567D02* X344D01* X50Y1566D02* X344D01* X291Y1622D02* Y1786D01* X271Y1622D02* Y1786D01* X446Y1546D02* X477D01* X443Y1526D02* X454D01* X331Y1519D02* Y1567D01* X440Y1519D02* X448D01* X440Y1458D02* X448D01* X444Y1446D02* X459D01* X331Y1408D02* Y1458D01* X39Y1546D02* X339D01* X39Y1526D02* X341D01* X130Y1519D02* X345D01* X311D02* Y1567D01* X291Y1519D02* Y1567D01* X271Y1519D02* Y1567D01* X311Y1408D02* Y1458D01* X120D02* X345D01* X39Y1446D02* X340D01* X291Y1408D02* Y1458D01* X271Y1408D02* Y1458D01* X231Y1622D02* Y1798D01* X211Y1622D02* Y2054D01* X251Y1622D02* Y1788D01* X191Y1622D02* Y2055D01* X144Y1650D02* Y2220D01* X251Y1519D02* Y1567D01* X231Y1519D02* Y1567D01* X211Y1519D02* Y1567D01* X171Y1622D02* Y2071D01* X151Y1622D02* Y2276D01* X86Y1650D02* Y2208D01* X39Y1686D02* X86D01* X39Y1666D02* X86D01* X39Y1627D02* Y4096D01* Y1646D02* X84D01* X44Y1626D02* X84D01* X71Y1622D02* Y2222D01* X52Y1622D02* X85D01* X51Y1623D02* Y2243D01* X191Y1519D02* Y1567D01* X171Y1519D02* Y1567D01* X251Y1402D02* Y1458D01* X151Y1519D02* Y1567D01* X131Y1519D02* Y1567D01* X111Y1522D02* Y1567D01* X231Y1247D02* Y1458D01* X211Y1247D02* Y1458D01* X191Y1247D02* Y1458D01* X171Y1247D02* Y1458D01* X151Y1247D02* Y1458D01* X131Y1247D02* Y1458D01* X91Y1512D02* Y1567D01* X39Y1466D02* X93D01* X39Y1506D02* X87D01* X39Y1486D02* X83D01* X91Y1247D02* Y1468D01* X71Y1247D02* Y1567D01* X111Y1247D02* Y1458D01* X51Y1242D02* Y1567D01* X39Y1226D02* Y1563D01* X806Y1386D02* X876D01* X775Y1419D02* X802Y1392D01* X770Y1426D02* X859D01* X787Y1406D02* X861D01* X811Y1346D02* X916D01* X811Y1326D02* X936D01* X811Y1306D02* X956D01* X811Y1366D02* X896D01* X731Y1375D02* X749Y1357D01* X609Y1366D02* X741D01* X609Y1346D02* X749D01* X609Y1426D02* X720D01* X609Y1406D02* X713D01* X609Y1386D02* X719D01* X609Y1326D02* X749D01* X609Y1306D02* X749D01* X609Y1286D02* X749D01* Y1160D02* Y1357D01* X731Y1168D02* Y1375D01* X609Y1266D02* X749D01* X609Y1246D02* X749D01* X609Y1226D02* X749D01* X609Y1206D02* X749D01* X738Y1166D02* X749D01* X691Y1061D02* Y1073D01* X668Y864D02* X749D01* X811Y786D02* X973D01* X691Y969D02* Y973D01* X671Y1037D02* Y1097D01* X668Y969D02* X698D01* X609Y1186D02* X749D01* X609Y1166D02* X702D01* X609Y1066D02* X702D01* X609Y1146D02* X676D01* X609Y1086D02* X677D01* X609Y1046D02* X676D01* X609Y846D02* X749D01* X609Y826D02* X749D01* X609Y806D02* X749D01* X609Y986D02* X677D01* X609Y786D02* X749D01* X545Y1386D02* X551D01* X538Y1406D02* X551D01* X544Y1366D02* X551D01* X545Y1266D02* X551D01* X543Y1286D02* X551D01* X546Y1206D02* X551D01* X546Y1186D02* X551D01* X546Y1166D02* X551D01* X609Y1126D02* X668D01* X546Y1108D02* Y1215D01* Y1146D02* X551D01* X546Y1126D02* X551D01* X534Y1346D02* X551D01* X518Y1426D02* X551D01* X497Y1326D02* X551D01* X511Y1320D02* Y1330D01* X471Y1320D02* Y1330D01* X532Y1306D02* X551D01* X540Y1246D02* X551D01* X531Y1307D02* Y1343D01* X522Y1226D02* X551D01* X531Y1215D02* Y1234D01* X511Y1215D02* Y1221D01* X471Y1215D02* Y1221D01* X609Y1106D02* X669D01* X609Y1026D02* X668D01* X671Y969D02* Y997D01* X609Y1006D02* X669D01* X609Y966D02* X668D01* X609Y946D02* X668D01* X609Y926D02* X668D01* X609Y906D02* X668D01* X609Y886D02* X668D01* Y864D02* Y969D01* X547Y926D02* X551D01* X609Y866D02* X668D01* X531Y955D02* Y1108D01* X494Y986D02* X551D01* X522Y966D02* X551D01* X511Y975D02* Y1108D01* X491Y988D02* Y1108D01* X471Y995D02* Y1108D01* X547Y846D02* X551D01* X537Y946D02* X551D01* X537Y826D02* X551D01* X521Y806D02* X551D01* X493Y786D02* X551D01* X971Y555D02* Y1290D01* X951Y555D02* Y1310D01* X973Y675D02* Y945D01* X891Y562D02* Y1370D01* X871Y582D02* Y1390D01* X811Y643D02* Y1370D01* X931Y555D02* Y1330D01* X911Y555D02* Y1350D01* X851Y400D02* Y515D01* X831Y400D02* Y535D01* X811Y766D02* X973D01* X811Y746D02* X973D01* X811Y726D02* X973D01* X811Y706D02* X973D01* X811Y686D02* X973D01* X811Y666D02* X974D01* X811Y643D02* X898Y555D01* X758Y608D02* X863Y503D01* X811Y400D02* Y555D01* X771Y400D02* Y595D01* X791Y400D02* Y575D01* X951Y400D02* Y418D01* X931Y400D02* Y431D01* X971Y400D02* Y414D01* X911Y400D02* Y495D01* X885D02* X925D01* X891Y400D02* Y495D01* X971Y41D02* Y340D01* X951Y41D02* Y340D01* X931Y41D02* Y340D01* X911Y41D02* Y340D01* X871Y400D02* Y498D01* X891Y41D02* Y340D01* X619Y486D02* X921D01* X618Y446D02* X922D01* X603Y426D02* X937D01* X622Y466D02* X918D01* X605Y506D02* X861D01* X871Y41D02* Y340D01* X851Y41D02* Y340D01* X831Y41D02* Y340D01* X811Y41D02* Y340D01* X791Y41D02* Y340D01* X771Y41D02* Y340D01* X612Y746D02* X749D01* X609Y766D02* X749D01* Y630D02* Y864D01* X609Y726D02* X749D01* X731Y400D02* Y864D01* X711Y400D02* Y864D01* X751Y400D02* Y619D01* X691Y400D02* Y864D01* X671Y400D02* Y864D01* X611Y499D02* Y732D01* X591Y515D02* Y710D01* X571Y519D02* Y709D01* X551Y755D02* Y858D01* X491Y515D02* Y785D01* X551Y516D02* Y724D01* X505Y506D02* X535D01* X531Y503D02* Y818D01* X511Y499D02* Y798D01* X751Y41D02* Y340D01* X731Y41D02* Y340D01* X711Y41D02* Y340D01* X611Y400D02* Y435D01* X591Y400D02* Y419D01* X571Y408D02* Y414D01* X691Y41D02* Y340D01* X671Y41D02* Y340D01* X651Y41D02* Y340D01* X631Y41D02* Y340D01* X611Y41D02* Y340D01* X591Y41D02* Y340D01* X565Y415D02* X579Y400D01* X491Y215D02* Y402D01* X479Y415D02* X545Y348D01* X511Y199D02* Y382D01* X551Y41D02* Y344D01* X531Y41D02* Y362D01* X571Y41D02* Y340D01* X511Y41D02* Y135D01* X491Y41D02* Y119D01* X445Y1426D02* X466D01* X439Y1408D02* X447D01* X441Y1346D02* X450D01* X446Y1326D02* X487D01* X445Y1226D02* X462D01* X446Y1215D02* X546D01* X451Y1305D02* Y1345D01* X442Y1306D02* X452D01* X451Y1215D02* Y1236D01* X439Y1350D02* X447D01* X428Y1286D02* X441D01* X411Y1266D02* Y1276D01* X412Y1266D02* X439D01* X437Y1246D02* X444D01* X431Y1253D02* Y1289D01* X371Y1266D02* Y1276D01* X39Y1266D02* X372D01* X427Y1106D02* X551D01* X397Y1132D02* X439D01* Y1108D02* X546D01* X439D02* Y1132D01* X411Y1128D02* Y1132D01* X414Y1126D02* X439D01* X451Y999D02* Y1108D01* X431Y998D02* Y1132D01* X424Y1086D02* X551D01* X411Y995D02* Y1072D01* X391Y987D02* Y1068D01* X227Y1132D02* X393D01* X39Y1066D02* X551D01* X224Y1130D02* X384D01* X140Y1069D02* X384D01* X39Y1046D02* X551D01* X39Y1026D02* X551D01* X39Y1006D02* X551D01* X371Y974D02* Y1069D01* X39Y986D02* X390D01* X269Y1408D02* X345D01* X269Y1350D02* X345D01* X351Y1251D02* Y1291D01* X39Y1426D02* X339D01* X39Y1406D02* X258D01* X331Y1247D02* Y1350D01* X311Y1247D02* Y1350D01* X70Y1247D02* X349D01* X291D02* Y1350D01* X251Y1247D02* Y1357D01* X271Y1247D02* Y1350D01* X39Y1346D02* X343D01* X39Y1306D02* X342D01* X39Y1286D02* X356D01* X39Y1386D02* X241D01* X39Y1366D02* X244D01* X39Y1326D02* X339D01* X39Y1246D02* X61D01* X140Y1146D02* X181D01* X171Y1130D02* Y1183D01* X131Y1153D02* Y1183D01* X111Y1157D02* Y1183D01* X153Y1130D02* X196D01* X145Y1139D02* X153Y1130D01* X351Y953D02* Y1069D01* X151Y1132D02* Y1183D01* X91Y1147D02* Y1183D01* X70D02* X187D01* X39Y1166D02* X178D01* X39Y1186D02* X55D01* X39Y1146D02* X90D01* X39Y1126D02* X83D01* X101Y1095D02* X118Y1078D01* X39Y966D02* X363D01* X39Y1106D02* X89D01* X39Y1086D02* X111D01* X442Y886D02* Y992D01* X336Y886D02* X442D01* Y780D02* Y886D01* X39Y806D02* X363D01* X39Y786D02* X391D01* X471Y519D02* Y778D01* X451Y516D02* Y774D01* X431Y503D02* Y774D01* X391Y41D02* Y786D01* X371Y41D02* Y799D01* X411Y41D02* Y778D01* X39Y706D02* X749D01* X39Y686D02* X749D01* X39Y666D02* X749D01* X39Y766D02* X551D01* X39Y746D02* X548D01* X39Y726D02* X551D01* X39Y586D02* X781D01* X39Y566D02* X801D01* X39Y546D02* X821D01* X39Y646D02* X749D01* X39Y626D02* X750D01* X39Y606D02* X761D01* X278Y386D02* X508D01* X274Y366D02* X528D01* X471Y219D02* Y414D01* X272Y426D02* X437D01* X277Y406D02* X488D01* X451Y216D02* Y418D01* X471Y41D02* Y114D01* X431Y203D02* Y431D01* Y41D02* Y131D01* X451Y41D02* Y118D01* X39Y526D02* X841D01* X39Y506D02* X435D01* X263Y346D02* X548D01* X234Y466D02* X418D01* X39Y486D02* X421D01* X259Y446D02* X422D01* X39Y206D02* X435D01* X39Y186D02* X421D01* X39Y126D02* X437D01* X39Y166D02* X418D01* X39Y146D02* X422D01* X331Y907D02* Y1069D01* X231Y468D02* Y1069D01* X211Y474D02* Y1069D01* X191Y475D02* Y1069D01* X171Y471D02* Y1069D01* X151Y461D02* Y1069D01* X311Y41D02* Y1069D01* X291Y41D02* Y1069D01* X331Y41D02* Y866D01* X271Y427D02* Y1069D01* X131Y442D02* Y1071D01* X251Y454D02* Y1069D01* X39Y946D02* X347D01* X39Y926D02* X337D01* X39Y846D02* X337D01* X39Y906D02* X331D01* X39Y886D02* X330D01* X39Y866D02* X331D01* X91Y41D02* Y1103D01* X71Y41D02* Y1183D01* X111Y41D02* Y1085D01* X39Y41D02* Y1204D01* X51Y41D02* Y1188D01* X351Y41D02* Y820D01* X197Y394D02* X272D01* X271Y41D02* Y361D01* X197Y394D02* Y469D01* Y319D02* Y394D01* X251Y41D02* Y333D01* X231Y41D02* Y320D01* X211Y41D02* Y313D01* X191Y41D02* Y312D01* X151Y41D02* Y326D01* X131Y41D02* Y345D01* X171Y41D02* Y316D01* X39Y826D02* X347D01* X39Y466D02* X159D01* X122Y394D02* X197D01* X39Y446D02* X134D01* X39Y426D02* X122D01* X39Y406D02* X116D01* X39Y346D02* X131D01* X39Y326D02* X151D01* X39Y386D02* X116D01* X39Y366D02* X120D01* X1115Y775D02* X1205D01* X1235Y745D01* X1415D01* X1050Y690D02* X1144Y597D01* X1050Y690D02* Y1255D01* X1080Y745D02* Y1270D01* Y745D02* X1128Y697D01* X3060Y2655D02* X3130Y2585D01* Y2400D02* Y2585D01* X3255Y2415D02* X3345Y2325D01* X3130Y2400D02* X3150Y2380D01* X3255D01* X3320Y2315D01* X3345Y1635D02* Y2325D01* X3285Y1660D02* X3320Y1695D01* Y2315D01* X2360Y1150D02* X2410Y1100D01* X1723Y1150D02* X2360D01* X1427Y1050D02* X2207D01* X900Y3100D02* X1185Y3385D01* X135Y3100D02* X900D01* X100Y3065D02* X135Y3100D01* X1760Y3315D02* X1875Y3430D01* X1430Y3315D02* X1760D01* X1005Y2995D02* X1240Y3230D01* X255Y2995D02* X1005D01* X220Y2960D02* X255Y2995D01* X220Y2390D02* Y2960D01* X265Y2915D02* X305Y2955D01* X1040D01* X1240Y3230D02* X1345D01* X1430Y3315D01* X1040Y2955D02* X1265Y3180D01* X1375D01* X1430Y3235D01* X1765D01* X1910Y3380D01* X2205D01* X75Y2335D02* X100Y2360D01* Y3065D01* X75Y2260D02* X115Y2220D01* X75Y2260D02* Y2335D01* X1045Y2065D02* X1080Y2030D01* X580Y2275D02* X610Y2305D01* X1112D01* X930Y1420D02* X1080Y1270D01* X1070Y2100D02* X1090Y2080D01* Y2135D02* X1100Y2125D01* X920Y1795D02* X930Y1785D01* Y1420D02* Y1785D01* X1592Y1360D02* X2105D01* X2145Y1400D01* Y1490D02* X2215Y1560D01* Y1635D01* X2145Y1400D02* Y1490D01* X1170Y1080D02* X1253Y997D01* X1170Y1080D02* Y1610D01* X1195Y1125D02* X1223Y1097D01* X1170Y1610D02* X1230Y1670D01* X1195Y1125D02* Y1595D01* X1265Y1665D02* Y1700D01* X1240Y1725D02* X1265Y1700D01* X1195Y1595D02* X1265Y1665D01* X1015Y1895D02* X1090Y1820D01* X1265D01* X1410Y1675D01* D14* X1760Y2515D02* D03* Y2439D02* D03* D44* X1520Y3186D02* D03* X1190Y945D02* D03* X2995Y2415D02* D03* X2946Y856D02* D03* Y1165D02* D03* X2855Y625D02* D03* X3565Y2155D02* D03* X2047Y4003D02* D03* X2700Y1790D02* D03* X1811Y551D02* D03* Y394D02* D03* Y206D02* D03* X2251Y236D02* D03* X709Y2756D02* D03* X951D02* D03* X2765Y2150D02* D03* X2588Y1635D02* D03* X2750Y1530D02* D03* X1528Y1558D02* D03* X1020Y1549D02* D03* X997Y2017D02* D03* X3570Y1427D02* D03* X3540Y2352D02* D03* X3410Y3185D02* D03* X3415Y3061D02* D03* X3200Y1515D02* D03* X1245Y1300D02* D03* D45* X720Y1887D02* D03* X2560Y797D02* D03* X1670Y397D02* D03* X2260D02* D03* X1380D02* D03* X1970D02* D03* X3990Y1657D02* D03* X290Y3450D02* D03* X720Y2457D02* D03* Y917D02* D03* X2815Y2638D02* D03* X2860Y717D02* D03* X3990Y3547D02* D03* D48* X1670Y897D02* X1720D01* X1493Y1197D02* X1525Y1165D01* X1380Y1197D02* X1493D01* X1515Y450D02* X1520Y455D01* X470Y467D02* X567Y370D01* X2260Y587D02* X2345D01* X2560Y497D02* X2572D01* X2435D02* X2560D01* X2260Y687D02* X2335D01* X2425Y597D02* X2560D01* X117Y1488D02* X492D01* X140Y1100D02* X395D01* X115Y1125D02* X140Y1100D01* X115Y1490D02* X117Y1488D01* X2455Y387D02* X2460Y392D01* X2260Y387D02* X2455D01* X890Y1415D02* Y1740D01* X1382Y498D02* X1385Y495D01* X1133Y497D02* X1380D01* X745Y1405D02* X780Y1370D01* X885Y525D02* X1105D01* X1133Y497D01* X890Y1415D02* X1050Y1255D01* X2140Y792D02* X2255D01* X2085Y847D02* X2140Y792D01* X1770Y847D02* X2085D01* X1720Y897D02* X1770Y847D01* X2345Y587D02* X2435Y497D01* X2335Y687D02* X2425Y597D01* X2900Y570D02* X3017Y687D01* X2572Y497D02* X2645Y570D01* X2900D01* X780Y630D02* Y1370D01* Y630D02* X885Y525D01* X1215Y450D02* X1515D01* X1135Y370D02* X1215Y450D01* X567Y370D02* X1135D01* D49* X3356Y3061D02* X3415D01* X2815Y2838D02* X2823D01* X3405Y3185D02* X3410D01* X2815Y3038D02* X2858Y2995D01* X2360Y1240D02* Y1820D01* X2765Y2270D02* X3240D01* X1660Y3355D02* X1665Y3350D01* X720Y2090D02* X725D01* X200D02* X202Y2088D01* X175Y2370D02* X195Y2350D01* X202Y2088D02* X392D01* X3415Y2072D02* X3453Y2110D01* X3415Y1670D02* Y2072D01* X1520Y545D02* X1669Y396D01* X1675Y390D01* X1760Y2512D02* X1838D01* X1929Y2134D02* X1935Y2140D01* X1910Y2115D02* X1929Y2134D01* X1936Y2135D01* X1745Y2115D02* X1910D01* X1310Y2727D02* Y2830D01* X1220Y2854D02* X1286D01* X1311Y2479D02* X1344Y2512D01* X3275Y2590D02* Y2595D01* X2230Y1450D02* Y1453D01* X1181Y275D02* X1185D01* X2011Y650D02* X2015Y646D01* X1724Y745D02* X1729Y750D01* X2310Y746D02* X2311Y745D01* X3215Y2995D02* X3405Y3185D01* X2858Y2995D02* X3215D01* X2823Y2838D02* X2920Y2935D01* X3230D01* X3356Y3061D01* X2317Y1197D02* X2360Y1240D01* X2268Y1197D02* X2317D01* X1405Y3355D02* X1660D01* X200Y3030D02* X970D01* X1205Y3265D01* X175Y3005D02* X200Y3030D01* X175Y2370D02* Y3005D01* X1205Y3265D02* X1315D01* X1405Y3355D01* X1286Y2854D02* X1310Y2830D01* X895Y3580D02* Y3585D01* D50* X2450Y2370D02* X2825D01* X2225Y2335D02* X2415D01* X2540Y2530D02* X2870D01* X1990Y2650D02* X2040D01* X2550Y2480D02* X2800D01* X2015Y2620D02* X2410D01* X2590Y2970D02* X2760D01* X2085Y2350D02* X2095Y2360D01* X1230Y2187D02* X1357D01* X2290Y2670D02* Y2750D01* X2135Y2880D02* X2160D01* X2220Y2765D02* X2255Y2730D01* Y2670D02* Y2730D01* X2220Y2205D02* X2245Y2230D01* X2220Y2060D02* Y2205D01* X2165Y2475D02* X2185Y2495D01* X1305Y2425D02* X1355Y2475D01* X1230Y2287D02* Y2290D01* X1585Y2235D02* X1980D01* X1560Y2260D02* X1585Y2235D01* X1454Y1934D02* X1455Y1935D01* X1191Y1934D02* X1454D01* X2039Y2594D02* X2040D01* X1660Y2610D02* X1965D01* X1365Y2425D02* X1545D01* X1230Y2387D02* X1327D01* X2555Y2435D02* X2675D01* X2142Y2570D02* X2295D01* X1635Y1950D02* X2025D01* X1620Y1965D02* X1635Y1950D01* X2020Y2910D02* X2710D01* X2645Y2340D02* X2725D01* X1995Y2875D02* Y2885D01* X2360Y2140D02* X2445D01* X2215Y1800D02* X2290Y1875D01* X1330Y3930D02* Y3960D01* X515Y3160D02* X550D01* X492Y1595D02* X495D01* X35D02* X492D01* X1395Y2669D02* X1475Y2749D01* X1395Y2620D02* Y2669D01* X2195Y2670D02* Y2730D01* X2230Y2440D02* Y2495D01* X2042Y2880D02* X2045D01* X1870Y2205D02* X2035D01* X2135Y2310D02* X2160Y2335D01* Y2370D01* X2080Y2310D02* X2135D01* X2049Y2219D02* Y2279D01* Y2279D02* X2080Y2310D01* X2035Y2205D02* X2049Y2219D01* X2160Y2370D02* X2230Y2440D01* X2430Y2640D02* X2540Y2530D01* X2425Y2565D02* X2519Y2471D01* X2415Y2335D02* X2450Y2370D01* X2040Y2650D02* X2050Y2640D01* X2430D01* X2295Y2570D02* X2300Y2565D01* X2425D01* X2030Y2585D02* X2039Y2594D01* X1990Y2585D02* X2030D01* X1965Y2610D02* X1990Y2585D01* X1920Y2310D02* X1960Y2350D01* X2085D01* X1355Y2475D02* X2165D01* X1755Y2675D02* X2045D01* X2085Y2715D01* X1995Y2885D02* X2020Y2910D01* X2610Y1735D02* X2670Y1675D01* X2519Y2471D02* X2555Y2435D01* X2410Y2620D02* X2550Y2480D01* X2445Y2140D02* X2645Y2340D01* X1275Y3875D02* X1330Y3930D01* X970Y3875D02* X1275D01* X935Y3840D02* X970Y3875D01* X935Y3545D02* Y3840D01* X550Y3160D02* X935Y3545D01* X2215Y1635D02* Y1800D01* X2045Y2880D02* X2195Y2730D01* X2160Y2880D02* X2290Y2750D01* X1327Y2387D02* X1365Y2425D01* X1357Y2187D02* X1480Y2310D01* X1920D01* X1605Y2360D02* X1620Y2335D01* X1725D01* X1745Y2665D02* X1755Y2675D01* X2085Y2715D02* Y2765D01* X2610Y1735D02* Y1965D01* X2070Y3005D02* X2265D01* X2590D02* X2680D01* X2670Y1560D02* Y1675D01* X-390Y6180D02* Y6110D01* X-355D01* X-343Y6122D01* Y6133D01* X-355Y6145D01* X-390D01* X-355D01* X-343Y6157D01* Y6168D01* X-355Y6180D01* X-390D01* X-308Y6110D02* X-285D01* X-273Y6122D01* Y6145D01* X-285Y6157D01* X-308D01* X-320Y6145D01* Y6122D01* X-308Y6110D01* X-238Y6168D02* Y6157D01* X-250D01* X-227D01* X-238D01* Y6122D01* X-227Y6110D01* X-180Y6168D02* Y6157D01* X-192D01* X-168D01* X-180D01* Y6122D01* X-168Y6110D01* X-122D02* X-98D01* X-87Y6122D01* Y6145D01* X-98Y6157D01* X-122D01* X-133Y6145D01* Y6122D01* X-122Y6110D01* X-63D02* Y6157D01* X-52D01* X-40Y6145D01* Y6110D01* Y6145D01* X-28Y6157D01* X-17Y6145D01* Y6110D01* X77Y6180D02* Y6110D01* X123D01* X158Y6157D02* X181D01* X193Y6145D01* Y6110D01* X158D01* X146Y6122D01* X158Y6133D01* X193D01* X216Y6157D02* Y6122D01* X228Y6110D01* X263D01* Y6098D01* X251Y6087D01* X240D01* X263Y6110D02* Y6157D01* X321Y6110D02* X298D01* X286Y6122D01* Y6145D01* X298Y6157D01* X321D01* X333Y6145D01* Y6133D01* X286D01* X356Y6157D02* Y6110D01* Y6133D01* X368Y6145D01* X380Y6157D01* X391D01* D51* X1970Y1192D02* X2255D01* X1965D02* X1970D01* X2255D02* X2255Y1192D01* X2260Y1187D01* X1240Y3930D02* Y4000D01* X290Y3450D02* X765D01* X290D02* X290D01* X290Y3450D02* X290Y3450D01* X3200Y1405D02* Y1515D01* X2946Y1165D02* X3200Y1405D01* X2946Y691D02* Y856D01* X2855Y625D02* X2880D01* X2440Y2427D02* Y2470D01* X1930Y2550D02* X1950Y2530D01* X1930Y2550D02* X1930Y2550D01* X1838Y2512D02* X1892D01* X1310Y2479D02* Y2727D01* X1344Y2512D02* X1760D01* X1001Y1669D02* Y1733D01* X1607Y1197D02* X1670D01* X1260Y1415D02* X1389D01* X1096Y1528D02* X1097Y1529D01* X3445Y2277D02* Y2282D01* X3510Y1827D02* Y1832D01* X1883Y2377D02* X1930Y2424D01* X1817Y2377D02* X1883D01* X1760Y2434D02* X1817Y2377D01* X1760Y2434D02* Y2439D01* X315Y3675D02* X411D01* X311D02* X315D01* X205D02* X311D01* Y3676D02* Y3750D01* Y3675D02* Y3676D01* Y3580D02* Y3675D01* X650Y747D02* X655D01* X411Y3675D02* X420Y3666D01* X1389Y1415D02* X1607Y1197D01* X1097Y1529D02* Y1573D01* X2880Y625D02* X2946Y691D01* X1892Y2512D02* X1920Y2527D01* X2168Y2535D02* X2375D01* X1950Y2530D02* X2163D01* X2168Y2535D01* X2375D02* X2440Y2470D01* X895Y3885D02* X920Y3910D01* X1220D01* X1240Y3930D01* X1001Y1669D02* X1097Y1573D01* X765Y3450D02* X895Y3580D01* Y3585D02* Y3885D01* D52* X3025Y695D02* X3155D01* X3465Y1175D02* Y1235D01* X2860Y917D02* X3207D01* X3410Y1230D02* Y1315D01* X2860Y1117D02* X3297D01* X1920Y3293D02* X1934Y3308D01* X1920Y3293D02* X1920Y3167D01* X2126Y3198D02* Y3308D01* X2090Y3167D02* X2126Y3198D01* X391Y1215D02* X392Y1216D01* X70Y1215D02* X391D01* X1250Y1245D02* X1465D01* X1005Y675D02* Y945D01* X2260Y1297D02* X2313D01* X2560Y395D02* X2620D01* X2505D02* X2560D01* X2260Y1297D02* Y1370D01* Y1250D02* Y1297D01* X1820Y2206D02* X1823D01* X2191Y1297D02* Y1330D01* Y1255D02* Y1297D01* X2260D01* X2157D02* X2191D01* X1970D02* X2021D01* X1895D02* X1970D01* X1670Y1300D02* X1740D01* X1596D02* X1670D01* X1970Y1000D02* X2045D01* X1891D02* X1970D01* X1380Y1295D02* X1435D01* X1320D02* X1380D01* X1670Y995D02* X1736D01* X1595D02* X1670D01* X1070Y399D02* Y467D01* X440Y886D02* Y1006D01* Y751D02* Y886D01* X2319Y1265D02* Y1340D01* X2313Y1297D02* X2315Y1295D01* X440Y751D02* X451Y740D01* X2014Y946D02* X2020Y940D01* X1925Y946D02* X2014D01* X1925Y646D02* X2015D01* X1631Y745D02* X1724D01* X2200Y746D02* X2310D01* X2205Y846D02* X2300D01* X2215Y946D02* X2325D01* X1315Y1300D02* X1320Y1295D01* X1615Y1246D02* X1705D01* X1591Y1295D02* X1596Y1300D01* X1925Y1246D02* X1983D01* X1891Y1300D02* X1895Y1297D01* X1620Y946D02* X1740D01* X1135Y545D02* X1520D01* X1005Y675D02* X1135Y545D01* X3207Y917D02* X3465Y1175D01* X3297Y1117D02* X3410Y1230D01* X3017Y687D02* X3025Y695D01* D53* X1575Y2855D02* X1590Y2840D01* Y2735D02* Y2840D01* X2040Y2594D02* X2316D01* D55* X3565Y2155D02* X3660Y2250D01* X470Y3765D02* Y3768D01* X1970Y329D02* Y397D01* X1380D02* X1472Y305D01* X1946D02* X1970Y329D01* X1472Y305D02* X1946D01* X470Y3795D02* X555Y3880D01* Y4005D01* X630Y4080D01* X2955D02* X3390Y3645D01* X3495D01* X3660Y3480D01* X630Y4080D02* X2955D01* X3660Y2250D02* Y3480D01* D59* X886Y3248D02* D03* X3346Y3937D02* D03* X197Y394D02* D03* X2835D02* D03* D60* X748Y3740D02* D03* X2598D02* D03* D61* X1670Y497D02* D03* X1380Y997D02* D03* Y1097D02* D03* Y897D02* D03* X1670Y1297D02* D03* Y1197D02* D03* Y997D02* D03* X720Y1987D02* D03* Y2087D02* D03* X2560Y597D02* D03* Y697D02* D03* Y397D02* D03* Y497D02* D03* X1670Y1097D02* D03* Y697D02* D03* Y797D02* D03* X2260Y1197D02* D03* Y1297D02* D03* Y1097D02* D03* Y897D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1380Y1297D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1670Y897D02* D03* X1970Y597D02* D03* Y497D02* D03* Y797D02* D03* Y697D02* D03* Y897D02* D03* Y997D02* D03* Y1297D02* D03* Y1197D02* D03* X2260Y997D02* D03* X1970Y1097D02* D03* X1380Y1197D02* D03* X1670Y597D02* D03* X290Y3250D02* D03* Y3350D02* D03* X720Y2257D02* D03* Y2357D02* D03* Y1117D02* D03* Y1017D02* D03* X970Y467D02* D03* X1260Y1515D02* D03* Y1415D02* D03* X2815Y2938D02* D03* Y3038D02* D03* Y2738D02* D03* Y2838D02* D03* X2860Y1017D02* D03* Y1117D02* D03* Y817D02* D03* Y917D02* D03* X3990Y1457D02* D03* Y1557D02* D03* Y1257D02* D03* Y1357D02* D03* Y1157D02* D03* Y957D02* D03* Y1057D02* D03* Y757D02* D03* Y857D02* D03* Y3347D02* D03* Y3447D02* D03* Y3147D02* D03* Y3247D02* D03* Y3047D02* D03* Y2847D02* D03* Y2947D02* D03* Y2647D02* D03* Y2747D02* D03* X1070Y467D02* D03* X570Y467D02* D03* X470D02* D03* Y167D02* D03* X1070D02* D03* D62* X1019Y3795D02* D03* X492Y1161D02* D03* D63* X1128Y3795D02* D03* X1237D02* D03* X1346D02* D03* X1455D02* D03* X1564D02* D03* X1673D02* D03* X1782D02* D03* X1891D02* D03* X2000D02* D03* X2109D02* D03* X2218D02* D03* X2327D02* D03* X1074Y3685D02* D03* X1183D02* D03* X1292D02* D03* X1401D02* D03* X1510D02* D03* X1619D02* D03* X1728D02* D03* X1837D02* D03* X1946D02* D03* X2055D02* D03* X2164D02* D03* X2273D02* D03* X392Y2415D02* D03* Y2306D02* D03* Y2197D02* D03* Y1979D02* D03* Y1870D02* D03* Y1761D02* D03* Y1652D02* D03* Y1543D02* D03* Y1325D02* D03* Y1216D02* D03* X492Y2469D02* D03* Y2360D02* D03* Y2251D02* D03* Y2142D02* D03* Y2033D02* D03* Y1815D02* D03* Y1706D02* D03* Y1597D02* D03* Y1488D02* D03* Y1379D02* D03* Y1270D02* D03* Y1924D02* D03* X392Y1433D02* D03* Y2088D02* D03* D64* X470Y3977D02* D03* D65* Y3768D02* D03* D66* X1220Y2677D02* D03* Y2559D02* D03* Y2618D02* D03* Y2795D02* D03* Y2854D02* D03* Y2736D02* D03* X2580Y2805D02* D03* Y2746D02* D03* Y2864D02* D03* Y2628D02* D03* Y2569D02* D03* Y2687D02* D03* D67* X315Y3976D02* D03* D68* Y3826D02* D03* Y3676D02* D03* X1670Y197D02* D03* X3780Y2047D02* D03* Y3937D02* D03* Y3740D02* D03* Y1850D02* D03* Y3543D02* D03* Y1654D02* D03* Y3346D02* D03* Y1457D02* D03* Y3150D02* D03* Y1260D02* D03* Y2953D02* D03* Y1063D02* D03* Y2756D02* D03* Y866D02* D03* Y2559D02* D03* Y669D02* D03* Y2362D02* D03* Y472D02* D03* D69* X1934Y3308D02* D03* X2126D02* D03* D70* X2717Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* X630Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* D71* X1130Y2387D02* D03* D72* X1230D02* D03* X1130Y2287D02* D03* X1230D02* D03* X1130Y2187D02* D03* X1230D02* D03* D73* X442Y886D02* D03* Y2744D02* D03* D74* X2070Y3005D02* D03* X2265D02* D03* X2590D02* D03* X2680D02* D03* X2610Y1965D02* D03* X2670Y1560D02* D03* X3130Y1865D02* D03* X2825Y2370D02* D03* Y2020D02* D03* X2530Y1345D02* D03* X2640Y2295D02* D03* X2675Y2435D02* D03* X2142Y2570D02* D03* X2225Y2335D02* D03* X1725D02* D03* X1230Y1725D02* D03* Y1680D02* D03* X1810Y1675D02* D03* X1800Y1450D02* D03* X1900Y1405D02* D03* X780Y1895D02* D03* X810Y1795D02* D03* Y2135D02* D03* X835Y2100D02* D03* X1340Y2125D02* D03* X790Y2380D02* D03* X1548Y897D02* D03* X1250Y1245D02* D03* X580Y740D02* D03* X1415Y2080D02* D03* X835Y2065D02* D03* X1505Y2030D02* D03* X1150Y1955D02* D03* X875D02* D03* X115Y1125D02* D03* X395Y1100D02* D03* X890Y1740D02* D03* X1005Y945D02* D03* X1520Y455D02* D03* X1525Y1165D02* D03* X745Y1405D02* D03* X115Y1490D02* D03* X1455Y1935D02* D03* X1191Y1934D02* D03* X115Y1635D02* D03* X210Y1160D02* D03* X200Y2090D02* D03* X255Y1820D02* D03* X2250Y3425D02* D03* X265Y2420D02* D03* X245Y2365D02* D03* X1900Y3430D02* D03* X195Y2350D02* D03* X1665Y3350D02* D03* X1280Y3385D02* D03* X115Y2305D02* D03* X70Y1215D02* D03* X35Y1595D02* D03* X515Y3160D02* D03* X1330Y3960D02* D03* X1240Y4000D02* D03* X2025Y1950D02* D03* X1620Y1965D02* D03* X1525Y1427D02* D03* X2725Y2340D02* D03* X2360Y2140D02* D03* X2290Y1875D02* D03* X2710Y2910D02* D03* X2760Y2970D02* D03* X2590D02* D03* X1745Y2665D02* D03* X1605Y2360D02* D03* X2185Y2495D02* D03* X1305Y2425D02* D03* X2095Y2360D02* D03* X1765Y1770D02* D03* X1660Y2610D02* D03* X1545Y2425D02* D03* X1575Y2855D02* D03* X1590Y2735D02* D03* X2230Y2495D02* D03* X1870Y2205D02* D03* X2195Y2670D02* D03* X1560Y2260D02* D03* X1980Y2235D02* D03* X2245Y2230D02* D03* X2040Y2594D02* D03* X2255Y2670D02* D03* X2290D02* D03* X3035Y1660D02* D03* X3060Y2655D02* D03* X3270Y1560D02* D03* X3180Y2415D02* D03* X1465Y1245D02* D03* X2800Y2480D02* D03* X2360Y1820D02* D03* X1995Y2875D02* D03* X2042Y2880D02* D03* X2085Y2765D02* D03* X2220D02* D03* Y2060D02* D03* X2316Y2594D02* D03* X1110Y780D02* D03* X1395Y2620D02* D03* X1475Y2749D02* D03* X2135Y2880D02* D03* D75* X2870Y2530D02* D03* X1990Y2650D02* D03* X2015Y2620D02* D03* D76* X1823Y2206D02* D03* X1935Y2140D02* D03* X1425Y755D02* D03* D77* X2765Y2270D02* D03* X3240D02* D03* X925Y4017D02* D03* X1395Y4003D02* D03* X1160Y3962D02* D03* X1554Y3563D02* D03* X1010Y3507D02* D03* X1370Y3442D02* D03* X1815Y3447D02* D03* X2330Y3502D02* D03* X1920Y3167D02* D03* X2090D02* D03* X2025Y3050D02* D03* X2255Y3142D02* D03* X2590Y2332D02* D03* X2440Y2427D02* D03* X3436Y3346D02* D03* X3435Y3545D02* D03* X3542Y2559D02* D03* X3540Y2757D02* D03* Y2952D02* D03* X3535Y3147D02* D03* X3445Y2277D02* D03* X3720Y2252D02* D03* X3510Y1832D02* D03* X3505Y1707D02* D03* X3535Y1257D02* D03* X3584Y398D02* D03* X3540Y692D02* D03* Y867D02* D03* Y1062D02* D03* X3170Y622D02* D03* X3185Y1262D02* D03* X3125Y1487D02* D03* X2460Y392D02* D03* X1380Y112D02* D03* X400Y717D02* D03* X1020Y587D02* D03* X650Y747D02* D03* X659Y1277D02* D03* X845Y1117D02* D03* X2410Y1047D02* D03* X1310Y2727D02* D03* X970Y1818D02* D03* X1415Y1860D02* D03* X1134Y1625D02* D03* X1115Y1400D02* D03* X1311Y2479D02* D03* X1838Y2512D02* D03* X1817Y2377D02* D03* X1913Y2753D02* D03* X1745Y2115D02* D03* X1685Y1980D02* D03* X1096Y1528D02* D03* X1001Y1733D02* D03* X2637Y2218D02* D03* X1181Y275D02* D03* X3245Y1175D02* D03* X2870Y1520D02* D03* X2645Y1150D02* D03* X2925Y2005D02* D03* X2400Y2040D02* D03* X2290Y1815D02* D03* X1988Y1860D02* D03* X2070Y1470D02* D03* X2230Y1453D02* D03* X2425Y1385D02* D03* X1450Y2130D02* D03* X2465Y2310D02* D03* X2960Y2800D02* D03* X2820Y3155D02* D03* X3190Y3100D02* D03* X3275Y2900D02* D03* Y2590D02* D03* X3435Y3735D02* D03* X3000Y975D02* D03* X1625Y3280D02* D03* X3410Y1315D02* D03* X3465Y1235D02* D03* X3155Y695D02* D03* X3453Y2110D02* D03* X3415Y1670D02* D03* X2120Y2265D02* D03* D78* X1930Y2550D02* D03* Y2424D02* D03* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.REP0000644000175000017500000001034213421555714020444 0ustar carstencarsten************************************************************* FileName = SE_SG_IF_V2.GBR AutoAperture = True ************************************************************* Generating : Top Layer File : SE_SG_IF_V2.GTL Adding Layer : Top Layer Adding Layer : Multi-Layer Used DCodes : D10 D11 D12 D13 D14 D15 D16 D17 D18 D19 D20 D21 D22 D23 D24 D25 D26 D27 D28 D29 D30 D31 D32 D33 D34 D35 D36 D37 D38 D39 D40 D41 D42 D43 D44 D45 D46 D47 D48 D49 D50 D51 D52 D53 D54 D55 D56 D57 D58 D59 D60 D61 D62 D63 D64 D65 D66 D67 D68 D69 D70 D71 D72 D73 D74 D75 D76 D77 ************************************************************* ************************************************************* Generating : Bottom Layer File : SE_SG_IF_V2.GBL Adding Layer : Bottom Layer Adding Layer : Multi-Layer Used DCodes : D10 D14 D44 D45 D48 D49 D50 D51 D52 D53 D55 D59 D60 D61 D62 D63 D64 D65 D66 D67 D68 D69 D70 D71 D72 D73 D74 D75 D76 D77 D78 ************************************************************* ************************************************************* Generating : Top Overlay File : SE_SG_IF_V2.GTO Adding Layer : Top Overlay Used DCodes : D50 D53 D58 D79 D80 D81 D82 ************************************************************* ************************************************************* Generating : Bottom Overlay File : SE_SG_IF_V2.GBO Adding Layer : Bottom Overlay Used DCodes : D50 D58 D79 D81 D82 ************************************************************* ************************************************************* Generating : Top Solder File : SE_SG_IF_V2.GTS Adding Layer : Top Solder Adding Layer : Top Layer Adding Layer : Multi-Layer Used DCodes : D50 D64 D65 D83 D84 D85 D86 D87 D88 D89 D90 D91 D92 D93 D94 D95 D96 D97 D98 D99 D100 D101 D102 D103 D104 D105 D106 D107 D108 D109 D110 D111 D112 D113 D114 D115 D116 D117 D118 D119 D120 D121 D122 D123 D124 D125 D126 D127 D128 D129 D130 D131 D132 ************************************************************* ************************************************************* Generating : Bottom Solder File : SE_SG_IF_V2.GBS Adding Layer : Bottom Solder Adding Layer : Bottom Layer Adding Layer : Multi-Layer Used DCodes : D50 D64 D65 D86 D119 D120 D121 D122 D123 D124 D125 D126 D127 D128 D129 D130 D131 D132 D133 ************************************************************* ************************************************************* Generating : M1 NC File : SE_SG_IF_V2.GM1 Adding Layer : M1 NC Used DCodes : D50 D58 ************************************************************* ************************************************************* Generating : M2 BEM File : SE_SG_IF_V2.GM2 Adding Layer : M2 BEM Used DCodes : D80 D134 ************************************************************* ************************************************************* Generating : Drill Drawing File : SE_SG_IF_V2.GD1 Adding Layer : Drill Drawing Adding Drill Pair : Top Layer-Bottom Layer Used DCodes : D50 D82 D134 D135 ************************************************************* ************************************************************* Generating : Drill Guide File : SE_SG_IF_V2.GG1 Adding Layer : Drill Guide Adding Drill Pair : Top Layer-Bottom Layer Used DCodes : D134 ************************************************************* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.DRL0000644000175000017500000001043413421555714020441 0ustar carstencarstenTT#v 2 s k #v 2 s k #v 2 s k #v 2 s k #v 2 s k #v 2 s k #v 2 s k #v 2 s k #v 2 s k# v 2 s k # 7 8 7  8 7 8 7 8 7 8  7 8 7 8 7 8 7 8  7  8 7 8 7  8  7 8  7 8 7 8 7 8 8 7 8 7 7 8 8 7 8 7 8  7 8 7 8 7 8 7 8 7 8 7 8 7 7 8  8 7 8 7 8 7 8 7 8  7 8 7 8 7 8 7 8 7 8 8 7 8 7 8 7 8  7 8 7 8 7  8 7 8 7 8 7 8 7 8 7 8  7 8 7 8 7 8 7 8 7 8 7 8 7 8  7  7  8 7 8 7 8 7  8 7 7 8 7 7 7 8 7 8 7 8 7 8 7  8 7  8 7 8 7 8 7 8 7 8 7 8 7 8 7 8  7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7  8 7 8 7 8 7 8 7  8 7 8  7 8 7 8 7 8 7 8 7  8 7 8 7 8 7 8 7 8 # 7 8 7 8 7 8 7 8 7 8 8 8  7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8  7 8 7 8 7  8  7 8 7 8 7 8 7 8 7 8 7 8  7 8 7 8 7  8 7 8 7 8 7 8  7 8 7 8 7 8 7 8 7  8 7 8 7 8 7 8 7 8 7 8 7  8 7 8 7  8 7 8 7  8  7 8 7 8 7 8 7 8 7 8 7  7  8  7 8 7 8  7 8 7 8 7 8 7 8  7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 8 7 8  7 8 7 8  # 7 8  8 8 7 8 7 8 7 8 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7  8 7 8  7 8 7  7 8 7 8 7  8 7 8 7 8 7 8 7 8 7 8 7 8  7 8 7  8  # 7 8 8 7 8  7 7 8 8 8 8 7 8 # 7 8 8 7 7 7  8 7  8 7 8 8 7 8 8 8  8 8 8  7 8 8 8 8 8 8 8 8 7 8 8 8 7 8  8 8  8 7 8 8 8 8 7 8 8 8 8 8 8 7 8 8  8 8 8 8 7 8 7 7  7 7 7 7 7 7  7 7 7 8 7 7 7 7 7 7 7 7  7 7 7 7  7  8 7 8 8 # 7 8 8 7 8 7 8 7 8 7 8 7 8 8 8 8  8 7 8 8 8 8 8 8 8  8 8 8 7 8 8 8 7 8 8 8 8 8  8 8 7 8 8  8 8 8 8 8 7 8 8 8 8 8  8 8 7 8 8  8 8 8 8 8 7 8 8  8 8 8 8  8 8 8 7 8 8 8 7 8  8 8 8 8 7 8 8 8 8 8  8 8 8 8 8 # 7 8 7 8 8 8 8  8 8 8 8 8  7 8 8 8 7 8 8 7 8 8 8 8 8 8 8 8 8 # 7 8 8 8 # 7 8 7 7 8 7 8 7 8 7 # 7 8 8 T gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.DRR0000644000175000017500000000260413421555714020447 0ustar carstencarsten--------------------------------------------------------------------------- NCDrill File Report For: SE_SG_IF_V2.PCBDOC 18.04.2005 21:37:32 --------------------------------------------------------------------------- Layer Pair : Top Layer to Bottom Layer ASCII File : NCDrillOutput.TXT EIA File : NCDrillOutput.DRL Tool Hole Size Hole Count Plated Tool Travel --------------------------------------------------------------------------- T1 12mil (0.3048mm) 106 34.32 Inch (871.65 mm) T2 16mil (0.4064mm) 86 34.13 Inch (866.93 mm) T3 24mil (0.6096mm) 30 16.92 Inch (429.83 mm) T4 28mil (0.7112mm) 10 8.45 Inch (214.53 mm) T5 31mil (0.7874mm) 72 15.89 Inch (403.64 mm) T6 35mil (0.889mm) 87 20.44 Inch (519.13 mm) T7 39mil (0.9906mm) 25 12.67 Inch (321.75 mm) T8 51mil (1.2954mm) 3 3.99 Inch (101.34 mm) T9 118mil (2.9972mm) 6 11.71 Inch (297.52 mm) T10 126mil (3.2004mm) 2 2.85 Inch (72.35 mm) --------------------------------------------------------------------------- Totals 427 161.36 Inch (4098.67 mm) Total Processing Time (hh:mm:ss) : 00:00:01 gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GBS0000644000175000017500000001664413421555714020444 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=13486297* G04 Layer_Color=13486297* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% %ADD133R,0.075X0.067*% D50* X-390Y5080D02* Y5010D01* X-355D01* X-343Y5022D01* Y5033D01* X-355Y5045D01* X-390D01* X-355D01* X-343Y5057D01* Y5068D01* X-355Y5080D01* X-390D01* X-308Y5010D02* X-285D01* X-273Y5022D01* Y5045D01* X-285Y5057D01* X-308D01* X-320Y5045D01* Y5022D01* X-308Y5010D01* X-238Y5068D02* Y5057D01* X-250D01* X-227D01* X-238D01* Y5022D01* X-227Y5010D01* X-180Y5068D02* Y5057D01* X-192D01* X-168D01* X-180D01* Y5022D01* X-168Y5010D01* X-122D02* X-98D01* X-87Y5022D01* Y5045D01* X-98Y5057D01* X-122D01* X-133Y5045D01* Y5022D01* X-122Y5010D01* X-63D02* Y5057D01* X-52D01* X-40Y5045D01* Y5010D01* Y5045D01* X-28Y5057D01* X-17Y5045D01* Y5010D01* X123Y5068D02* X112Y5080D01* X88D01* X77Y5068D01* Y5057D01* X88Y5045D01* X112D01* X123Y5033D01* Y5022D01* X112Y5010D01* X88D01* X77Y5022D01* X158Y5010D02* X181D01* X193Y5022D01* Y5045D01* X181Y5057D01* X158D01* X146Y5045D01* Y5022D01* X158Y5010D01* X216D02* X240D01* X228D01* Y5080D01* X216D01* X321D02* Y5010D01* X286D01* X275Y5022D01* Y5045D01* X286Y5057D01* X321D01* X380Y5010D02* X356D01* X345Y5022D01* Y5045D01* X356Y5057D01* X380D01* X391Y5045D01* Y5033D01* X345D01* X415Y5057D02* Y5010D01* Y5033D01* X426Y5045D01* X438Y5057D01* X450D01* X555Y5010D02* Y5080D01* X578Y5057D01* X601Y5080D01* Y5010D01* X636Y5057D02* X660D01* X671Y5045D01* Y5010D01* X636D01* X625Y5022D01* X636Y5033D01* X671D01* X695Y5010D02* X730D01* X741Y5022D01* X730Y5033D01* X706D01* X695Y5045D01* X706Y5057D01* X741D01* X765Y5010D02* Y5080D01* Y5033D02* X800Y5057D01* X765Y5033D02* X800Y5010D01* D64* X720Y1887D02* D03* X2560Y797D02* D03* X1670Y397D02* D03* X2260D02* D03* X1380D02* D03* X1970D02* D03* X3990Y1657D02* D03* X290Y3450D02* D03* X720Y2457D02* D03* Y917D02* D03* X2815Y2638D02* D03* X2860Y717D02* D03* X3990Y3547D02* D03* D65* X1670Y497D02* D03* X1380Y997D02* D03* Y1097D02* D03* Y897D02* D03* X1670Y1297D02* D03* Y1197D02* D03* Y997D02* D03* X720Y1987D02* D03* Y2087D02* D03* X2560Y597D02* D03* Y697D02* D03* Y397D02* D03* Y497D02* D03* X1670Y1097D02* D03* Y697D02* D03* Y797D02* D03* X2260Y1197D02* D03* Y1297D02* D03* Y1097D02* D03* Y897D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1380Y1297D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1670Y897D02* D03* X1970Y597D02* D03* Y497D02* D03* Y797D02* D03* Y697D02* D03* Y897D02* D03* Y997D02* D03* Y1297D02* D03* Y1197D02* D03* X2260Y997D02* D03* X1970Y1097D02* D03* X1380Y1197D02* D03* X1670Y597D02* D03* X290Y3250D02* D03* Y3350D02* D03* X720Y2257D02* D03* Y2357D02* D03* Y1117D02* D03* Y1017D02* D03* X970Y467D02* D03* X1260Y1515D02* D03* Y1415D02* D03* X2815Y2938D02* D03* Y3038D02* D03* Y2738D02* D03* Y2838D02* D03* X2860Y1017D02* D03* Y1117D02* D03* Y817D02* D03* Y917D02* D03* X3990Y1457D02* D03* Y1557D02* D03* Y1257D02* D03* Y1357D02* D03* Y1157D02* D03* Y957D02* D03* Y1057D02* D03* Y757D02* D03* Y857D02* D03* Y3347D02* D03* Y3447D02* D03* Y3147D02* D03* Y3247D02* D03* Y3047D02* D03* Y2847D02* D03* Y2947D02* D03* Y2647D02* D03* Y2747D02* D03* X1070Y467D02* D03* X570Y467D02* D03* X470D02* D03* Y167D02* D03* X1070D02* D03* D86* X1760Y2515D02* D03* Y2439D02* D03* D119* X886Y3248D02* D03* X3346Y3937D02* D03* X197Y394D02* D03* X2835D02* D03* D120* X748Y3740D02* D03* X2598D02* D03* D121* X1019Y3795D02* D03* X492Y1161D02* D03* D122* X1128Y3795D02* D03* X1237D02* D03* X1346D02* D03* X1455D02* D03* X1564D02* D03* X1673D02* D03* X1782D02* D03* X1891D02* D03* X2000D02* D03* X2109D02* D03* X2218D02* D03* X2327D02* D03* X1074Y3685D02* D03* X1183D02* D03* X1292D02* D03* X1401D02* D03* X1510D02* D03* X1619D02* D03* X1728D02* D03* X1837D02* D03* X1946D02* D03* X2055D02* D03* X2164D02* D03* X2273D02* D03* X392Y2415D02* D03* Y2306D02* D03* Y2197D02* D03* Y1979D02* D03* Y1870D02* D03* Y1761D02* D03* Y1652D02* D03* Y1543D02* D03* Y1325D02* D03* Y1216D02* D03* X492Y2469D02* D03* Y2360D02* D03* Y2251D02* D03* Y2142D02* D03* Y2033D02* D03* Y1815D02* D03* Y1706D02* D03* Y1597D02* D03* Y1488D02* D03* Y1379D02* D03* Y1270D02* D03* Y1924D02* D03* X392Y1433D02* D03* Y2088D02* D03* D123* X470Y3977D02* D03* D124* Y3768D02* D03* D125* X1220Y2677D02* D03* Y2559D02* D03* Y2618D02* D03* Y2795D02* D03* Y2854D02* D03* Y2736D02* D03* X2580Y2805D02* D03* Y2746D02* D03* Y2864D02* D03* Y2628D02* D03* Y2569D02* D03* Y2687D02* D03* D126* X315Y3976D02* D03* D127* Y3826D02* D03* Y3676D02* D03* X1670Y197D02* D03* X3780Y2047D02* D03* Y3937D02* D03* Y3740D02* D03* Y1850D02* D03* Y3543D02* D03* Y1654D02* D03* Y3346D02* D03* Y1457D02* D03* Y3150D02* D03* Y1260D02* D03* Y2953D02* D03* Y1063D02* D03* Y2756D02* D03* Y866D02* D03* Y2559D02* D03* Y669D02* D03* Y2362D02* D03* Y472D02* D03* D128* X1934Y3308D02* D03* X2126D02* D03* D129* X2717Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* X630Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* D130* X1130Y2387D02* D03* D131* X1230D02* D03* X1130Y2287D02* D03* X1230D02* D03* X1130Y2187D02* D03* X1230D02* D03* D132* X442Y886D02* D03* Y2744D02* D03* D133* X1930Y2550D02* D03* Y2424D02* D03* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.LDP0000644000175000017500000000021113421555714020427 0ustar carstencarstenLayer Pairs Export File for PCB: C:\test\Gerbertest\SE_SG_IF_V2.PCBDOC LayersSetName=Top_Bot_Thru_Holes|DrillFile=txt|LayerPairs=gtl,gbl gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GM10000644000175000017500000000754713421555714020417 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=16776960* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% %ADD133R,0.075X0.067*% D50* X1790Y5010D02* Y5080D01* X1813Y5057D01* X1837Y5080D01* Y5010D01* X1895D02* X1872D01* X1860Y5022D01* Y5045D01* X1872Y5057D01* X1895D01* X1907Y5045D01* Y5033D01* X1860D01* X1977Y5057D02* X1942D01* X1930Y5045D01* Y5022D01* X1942Y5010D01* X1977D01* X2000Y5080D02* Y5010D01* Y5045D01* X2012Y5057D01* X2035D01* X2047Y5045D01* Y5010D01* X2082Y5057D02* X2105D01* X2117Y5045D01* Y5010D01* X2082D01* X2070Y5022D01* X2082Y5033D01* X2117D01* X2140Y5010D02* Y5057D01* X2175D01* X2187Y5045D01* Y5010D01* X2210D02* X2233D01* X2222D01* Y5057D01* X2210D01* X2315D02* X2280D01* X2268Y5045D01* Y5022D01* X2280Y5010D01* X2315D01* X2350Y5057D02* X2373D01* X2385Y5045D01* Y5010D01* X2350D01* X2338Y5022D01* X2350Y5033D01* X2385D01* X2408Y5010D02* X2431D01* X2420D01* Y5080D01* X2408D01* X2536D02* Y5010D01* X2583D01* X2618Y5057D02* X2641D01* X2653Y5045D01* Y5010D01* X2618D01* X2606Y5022D01* X2618Y5033D01* X2653D01* X2676Y5057D02* Y5022D01* X2688Y5010D01* X2723D01* Y4998D01* X2711Y4987D01* X2700D01* X2723Y5010D02* Y5057D01* X2781Y5010D02* X2758D01* X2746Y5022D01* Y5045D01* X2758Y5057D01* X2781D01* X2793Y5045D01* Y5033D01* X2746D01* X2816Y5057D02* Y5010D01* Y5033D01* X2828Y5045D01* X2840Y5057D01* X2851D01* X2956Y5010D02* X2980D01* X2968D01* Y5080D01* X2956Y5068D01* D58* X0Y-0D02* Y4134D01* Y-0D02* X4134D01* Y4134D01* X0D02* X4134D01* X0Y2953D02* Y3504D01* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.TXT0000644000175000017500000001052413421555714020477 0ustar carstencarsten;Layer_Color=12632256 M48 ;FILE_FORMAT=2:3 INCH,LZ ;TYPE=PLATED T1F00S00C0.012 T2F00S00C0.016 T3F00S00C0.024 T4F00S00C0.028 T5F00S00C0.031 T6F00S00C0.035 T7F00S00C0.039 T8F00S00C0.051 T9F00S00C0.118 T10F00S00C0.126 % T01 X0152Y00455 X03035Y0166 X0313Y01865 X0327Y0156 X02825Y0202 X0261Y01965 X0236Y0182 X0229Y01875 X0222Y0206 X02025Y0195 X0162Y01965 X01505Y0203 X01415Y0208 X01455Y01935 X01191Y01934 X0123Y01725 Y0168 X0125Y01245 X01465 X01525Y01165 Y01427 X018Y0145 X019Y01405 X0181Y01675 X01765Y0177 X01548Y00897 X0253Y01345 X0267Y0156 X0115Y01955 X00875 X00835Y02065 Y021 X0078Y01895 X0081Y01795 X0089Y0174 X00745Y01405 X00395Y011 X0021Y0116 X00115Y01125 X0007Y01215 X00115Y0149 Y01635 X00035Y01595 X00255Y0182 X002Y0209 X0058Y0074 X0111Y0078 X01005Y00945 X0081Y02135 X0079Y0238 X00245Y02365 X00195Y0235 X00115Y02305 X00265Y0242 X00515Y0316 X0128Y03385 X01665Y0335 X019Y0343 X0225Y03425 X02265Y03005 X0207 X02042Y0288 X01995Y02875 X02135Y0288 X02085Y02765 X0222 X02195Y0267 X02255 X0229 X02316Y02594 X0223Y02495 X02185Y02495 X02142Y0257 X0204Y02594 X02095Y0236 X02225Y02335 X02245Y0223 X0236Y0214 X0264Y02295 X02675Y02435 X0271Y0291 X0268Y03005 X0259 Y0297 X01575Y02855 X0159Y02735 X01475Y02749 X01395Y0262 X0166Y0261 X01745Y02665 X01725Y02335 X01605Y0236 X01545Y02425 X0156Y0226 X0134Y02125 X01305Y02425 X0187Y02205 X0198Y02235 X02725Y0234 X02825Y0237 X028Y0248 X0306Y02655 X0318Y02415 X0276Y0297 X0133Y0396 X0124Y04 T02 X01181Y00275 X0138Y00112 X0246Y00392 X03584Y00398 X0354Y00692 Y00867 Y01062 X03535Y01257 X03465Y01235 X0341Y01315 X03185Y01262 X03245Y01175 X03125Y01487 X0287Y0152 X02925Y02005 X03453Y0211 X0351Y01832 X03505Y01707 X03415Y0167 X03Y00975 X03155Y00695 X0317Y00622 X02645Y0115 X0241Y01047 X02425Y01385 X0223Y01453 X0207Y0147 X01988Y0186 X0229Y01815 X024Y0204 X01745Y02115 X01685Y0198 X01415Y0186 X01425Y00755 X0102Y00587 X0065Y00747 X004Y00717 X00659Y01277 X00845Y01117 X01115Y014 X01096Y01528 X01134Y01625 X01001Y01733 X0097Y01818 X0101Y03507 X0137Y03442 X01554Y03563 X01625Y0328 X01815Y03447 X0192Y03167 X0209 X02025Y0305 X02255Y03142 X0233Y03502 X01913Y02753 X01838Y02512 X01817Y02377 X01823Y02206 X01935Y0214 X0212Y02265 X02465Y0231 X0244Y02427 X0259Y02332 X02637Y02218 X0145Y0213 X01311Y02479 X0131Y02727 X0296Y028 X03275Y029 X0319Y031 X03535Y03147 X0354Y02952 Y02757 X03542Y02559 X03275Y0259 X0324Y0227 X03445Y02277 X0372Y02252 X02765Y0227 X0282Y03155 X03436Y03346 X03435Y03545 Y03735 X01395Y04003 X0116Y03962 X00925Y04017 T03 X01811Y00206 Y00394 Y00551 X02251Y00236 X02855Y00625 X02946Y00856 Y01165 X0275Y0153 X032Y01515 X0357Y01427 X02588Y01635 X027Y0179 X01528Y01558 X01245Y013 X0119Y00945 X0102Y01549 X00997Y02017 X00951Y02756 X00709 X0152Y03186 X0199Y0265 X02015Y0262 X0287Y0253 X02995Y02415 X02765Y0215 X03565Y02155 X0354Y02352 X03415Y03061 X0341Y03185 X02047Y04003 T04 X0063Y03543 Y03642 X01934Y03308 X02126 X02717Y03543 Y03642 Y03843 Y03937 X0063 Y03843 T05 X0047Y00167 Y00467 X0057 X0097 X0107Y00467 X0107Y00167 X0126Y01415 Y01515 X00492Y01488 Y01597 Y01706 Y01815 Y01924 Y02033 X00392Y01979 Y0187 Y01761 Y01652 Y01543 Y01433 Y01325 Y01216 X00492Y0127 Y01379 Y01161 X00392Y02088 Y02197 Y02306 Y02415 X00492Y02469 Y0236 Y02251 Y02142 X0122Y02559 Y02618 Y02677 Y02736 Y02795 Y02854 X0258Y02864 Y02805 Y02746 Y02687 Y02628 Y02569 X02273Y03685 X02164 X02055 X01946 X01837 X01728 X01619 X0151 X01401 X01292 X01183 X01237Y03795 X01346 X01455 X01564 X01673 X01782 X01891 X02 X02109 X02218 X02327 X01128 X01019 X01074Y03685 X0047Y03768 Y03977 T06 X0138Y00397 Y00497 X0167 Y00397 X0197 Y00497 X0226 Y00397 X0256 Y00497 X0286Y00717 Y00817 Y00917 Y01017 Y01117 X0399Y01157 Y01257 Y01357 Y01457 Y01557 Y01657 Y01057 Y00957 Y00857 Y00757 X0256Y00797 Y00697 Y00597 X0226 Y00697 Y00797 Y00897 Y00997 Y01097 Y01197 Y01297 X0197 Y01197 Y01097 Y00997 Y00897 Y00797 Y00697 Y00597 X0167 Y00697 Y00797 Y00897 Y00997 Y01097 Y01197 Y01297 X0138 Y01197 Y01097 Y00997 Y00897 Y00797 Y00697 Y00597 X0072Y00917 Y01017 Y01117 Y01887 Y01987 Y02087 Y02257 Y02357 Y02457 X0029Y0325 Y0335 Y0345 X02815Y03038 Y02938 Y02838 Y02738 Y02638 X0399Y02647 Y02747 Y02847 Y02947 Y03047 Y03147 Y03247 Y03347 Y03447 Y03547 T07 X0167Y00197 X0378Y00472 Y00669 Y00866 Y01063 Y0126 Y01457 Y01654 Y0185 Y02047 X0113Y02187 Y02287 Y02387 X0123 Y02287 Y02187 X0378Y02362 Y02559 Y02756 Y02953 Y0315 Y03346 Y03543 Y0374 Y03937 T08 X00315Y03676 Y03826 Y03976 T09 X00197Y00394 X02835 X00886Y03248 X03346Y03937 X02598Y0374 X00748 T10 X00442Y00886 Y02744 M30 gerbv-2.7.0/example/protel-pnp/Status_Report.txt0000644000175000017500000000044313421555714021627 0ustar carstencarstenOutput: Generates pick and place files Type : Pick Place From : Project [Free Documents] Generated File[Pick Place for SE_SG_IF_V2.txt] Generated File[Pick Place for SE_SG_IF_V2.csv] Files Generated : 2 Documents Printed : 0 Finished Output Generation At 21:39:29 On 18.04.2005 gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GTO0000644000175000017500000047013613421555714020462 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=65535* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% D50* X2281Y2655D02* G03* X2281Y2605I0J-25D01* G01* X1040Y1885D02* G03* X1040Y1935I0J25D01* G01* X3611Y1313D02* G03* X3611Y1313I0J0D01* G01* X3527Y1523D02* G03* X3527Y1523I0J0D01* G01* X3840Y2047D02* G03* X3840Y2047I-60J0D01* G01* Y3937D02* G03* X3840Y3937I-60J0D01* G01* Y3740D02* G03* X3840Y3740I-60J0D01* G01* Y1850D02* G03* X3840Y1850I-60J0D01* G01* Y3543D02* G03* X3840Y3543I-60J0D01* G01* Y1654D02* G03* X3840Y1654I-60J0D01* G01* Y3346D02* G03* X3840Y3346I-60J0D01* G01* Y1457D02* G03* X3840Y1457I-60J0D01* G01* Y3150D02* G03* X3840Y3150I-60J0D01* G01* Y1260D02* G03* X3840Y1260I-60J0D01* G01* Y2953D02* G03* X3840Y2953I-60J0D01* G01* Y1063D02* G03* X3840Y1063I-60J0D01* G01* Y2756D02* G03* X3840Y2756I-60J0D01* G01* Y866D02* G03* X3840Y866I-60J0D01* G01* Y2559D02* G03* X3840Y2559I-60J0D01* G01* Y669D02* G03* X3840Y669I-60J0D01* G01* Y2362D02* G03* X3840Y2362I-60J0D01* G01* Y472D02* G03* X3840Y472I-60J0D01* G01* X3105Y694D02* G03* X3105Y694I-35J0D01* G01* X3135D02* G03* X3135Y694I-65J0D01* G01* X1330Y1465D02* G03* X1330Y1465I-70J0D01* G01* X3612Y528D02* G03* X3612Y528I0J0D01* G01* Y733D02* G03* X3612Y733I0J0D01* G01* Y928D02* G03* X3612Y928I0J0D01* G01* X3611Y1133D02* G03* X3611Y1133I0J0D01* G01* X865Y1294D02* G03* X865Y1294I-35J0D01* G01* X895D02* G03* X895Y1294I-65J0D01* G01* X2287Y3530D02* G03* X2287Y3530I0J0D01* G01* X3607Y2423D02* G03* X3607Y2423I0J0D01* G01* X1992Y3530D02* G03* X1992Y3530I0J0D01* G01* X3607Y2623D02* G03* X3607Y2623I0J0D01* G01* X1630Y3399D02* G03* X1630Y3399I0J0D01* G01* X1500Y3452D02* G03* X1500Y3452I0J0D01* G01* X3607Y2823D02* G03* X3607Y2823I0J0D01* G01* X1236Y3477D02* G03* X1236Y3477I0J0D01* G01* X3607Y3023D02* G03* X3607Y3023I0J0D01* G01* Y3213D02* G03* X3607Y3213I0J0D01* G01* X3527Y3413D02* G03* X3527Y3413I0J0D01* G01* X2159Y2900D02* G03* X2159Y2900I-11J0D01* G01* X3425Y2134D02* G03* X3475Y2134I25J0D01* G01* X1171Y2854D02* G03* X1171Y2854I-4J0D01* G01* X2531Y2864D02* G03* X2531Y2864I-4J0D01* G01* X1730Y197D02* G03* X1730Y197I-60J0D01* G01* X1147Y3480D02* G03* X1147Y3480I0J0D01* G01* X633Y1382D02* G03* X633Y1382I0J0D01* G01* X1057Y3480D02* G03* X1057Y3480I0J0D01* G01* X1207Y3900D02* G03* X1207Y3900I0J0D01* G01* X645Y467D02* G03* X695Y467I25J0D01* G01* G03* X745Y467I25J0D01* G01* G03* X795Y467I25J0D01* G01* G03* X845Y467I25J0D01* G01* X1080Y342D02* G03* X1080Y342I-10J0D01* G01* Y242D02* G03* X1080Y242I-10J0D01* G01* X845Y467D02* G03* X895Y467I25J0D01* G01* X3092Y2537D02* G03* X3092Y2537I-65J0D01* G01* X3062D02* G03* X3062Y2537I-35J0D01* G01* X2281Y2655D02* Y2760D01* Y2500D02* Y2605D01* X1581Y2500D02* Y2760D01* Y2500D02* X2281D01* X1581Y2760D02* X2281D01* X1040Y1860D02* X1440D01* X1040Y1960D02* X1440D01* Y1860D02* Y1960D01* X1040Y1935D02* Y1960D01* Y1860D02* Y1885D01* X3070Y664D02* Y729D01* X3035Y694D02* X3105D01* X2980Y604D02* Y784D01* X3163D01* Y604D02* Y784D01* X2980Y604D02* X3163D01* X1210Y1515D02* X1310D01* X1260Y1505D02* Y1515D01* Y1505D02* X1320Y1445D01* X1200D02* X1320D01* X1200D02* X1260Y1505D01* X2980Y969D02* Y1104D01* X3120Y969D02* Y1104D01* X3100D02* Y1174D01* X3000Y1104D02* Y1174D01* Y899D02* Y969D01* X3100Y899D02* Y969D01* X2980Y1104D02* X3120D01* X2980Y969D02* X3120D01* X3080Y1104D02* X3120Y1064D01* X3070Y1104D02* X3120Y1054D01* X830Y1264D02* Y1329D01* X795Y1294D02* X865D01* X740Y1204D02* Y1384D01* X923D01* Y1204D02* Y1384D01* X740Y1204D02* X923D01* X2940Y2789D02* Y2924D01* X3080Y2789D02* Y2924D01* X3060D02* Y2994D01* X2960Y2924D02* Y2994D01* Y2719D02* Y2789D01* X3060Y2719D02* Y2789D01* X2940Y2924D02* X3080D01* X2940Y2789D02* X3080D01* X3040Y2924D02* X3080Y2884D01* X3030Y2924D02* X3080Y2874D01* X3400Y1934D02* Y2134D01* X3500Y1934D02* Y2134D01* X3400Y1934D02* X3500D01* X3475Y2134D02* X3500D01* X3400D02* X3425D01* X5Y4001D02* X190D01* X5Y3951D02* X190D01* X5Y4071D02* X365D01* X366Y3583D01* X4D02* X5Y4071D01* X190Y3951D02* Y4001D01* X5Y3801D02* X190D01* X5Y3851D02* X190D01* Y3801D02* Y3851D01* X5Y3651D02* X190D01* X5Y3701D02* X190D01* X5Y3581D02* X365D01* X190Y3651D02* Y3701D01* X-255Y1064D02* X-19D01* X-255D02* Y2566D01* X-19D01* X-219Y787D02* X-19D01* X-219D02* Y987D01* X-19D01* X-219Y2641D02* X-19D01* X-219D02* Y2841D01* X-19D01* X-220Y822D02* X-19D01* X-220Y952D02* X-20D01* X-220Y2676D02* X-19D01* X-220Y2806D02* X-20D01* X-17Y761D02* X-16Y2869D01* X24Y761D02* X567D01* X24D02* Y2869D01* X-1Y2868D02* X567D01* X1090Y909D02* Y1044D01* X1230Y909D02* Y1044D01* X1210D02* Y1114D01* X1110Y1044D02* Y1114D01* Y839D02* Y909D01* X1210Y839D02* Y909D01* X1090Y1044D02* X1230D01* X1090Y909D02* X1230D01* X1190Y1044D02* X1230Y1004D01* X1180Y1044D02* X1230Y994D01* X595Y467D02* X645D01* X1070Y342D02* Y442D01* X1020Y317D02* X1070Y267D01* X970Y317D02* X1020D01* X1070Y192D02* Y242D01* X895Y467D02* X945D01* X470Y317D02* X970D01* X470Y217D02* Y417D01* X1170Y117D02* Y517D01* X370Y117D02* X1170D01* X370D02* Y517D01* X1170D01* X2938Y2444D02* Y2627D01* Y2444D02* X3118D01* Y2627D01* X2938D02* X3118D01* X3027Y2502D02* Y2572D01* X2997Y2537D02* X3062D01* X-390Y6020D02* X-343D01* X-367D01* Y5950D01* X-308D02* X-285D01* X-273Y5962D01* Y5985D01* X-285Y5997D01* X-308D01* X-320Y5985D01* Y5962D01* X-308Y5950D01* X-250Y5927D02* Y5997D01* X-215D01* X-203Y5985D01* Y5962D01* X-215Y5950D01* X-250D01* X-75Y6020D02* X-98D01* X-110Y6008D01* Y5962D01* X-98Y5950D01* X-75D01* X-63Y5962D01* Y6008D01* X-75Y6020D01* X-40Y5997D02* X-17Y5950D01* X7Y5997D01* X65Y5950D02* X42D01* X30Y5962D01* Y5985D01* X42Y5997D01* X65D01* X77Y5985D01* Y5973D01* X30D01* X100Y5997D02* Y5950D01* Y5973D01* X112Y5985D01* X123Y5997D01* X135D01* X170Y5950D02* X193D01* X181D01* Y6020D01* X170D01* X240Y5997D02* X263D01* X275Y5985D01* Y5950D01* X240D01* X228Y5962D01* X240Y5973D01* X275D01* X298Y5997D02* Y5962D01* X310Y5950D01* X345D01* Y5938D01* X333Y5927D01* X321D01* X345Y5950D02* Y5997D01* D53* X3548Y3301D02* Y3391D01* Y1412D02* Y1502D01* Y1609D02* Y1699D01* X3555Y1730D02* Y1820D01* X2101Y3549D02* X2191D01* X1955Y3940D02* X2045D01* X1540Y3518D02* Y3608D01* X1717Y3489D02* X1807D01* X1305Y4000D02* X1395D01* X865Y3702D02* X955D01* X3548Y3498D02* Y3588D01* Y3695D02* Y3785D01* X-17Y761D02* X567D01* Y2324D01* X24Y2869D02* X567D01* Y761D02* Y2869D01* X433Y3717D02* Y4032D01* Y3717D02* X570D01* Y4032D01* X433D02* X570D01* D58* X3493Y3291D02* G03* X3493Y3291I0J0D01* G01* G03* X3493Y3291I0J0D01* G01* Y3301D02* G03* X3493Y3301I0J0D01* G01* G03* X3493Y3301I0J0D01* G01* X3668Y3306D02* G03* X3668Y3306I0J0D01* G01* G03* X3668Y3306I0J0D01* G01* Y1417D02* G03* X3668Y1417I0J0D01* G01* G03* X3668Y1417I0J0D01* G01* X3493Y1412D02* G03* X3493Y1412I0J0D01* G01* G03* X3493Y1412I0J0D01* G01* Y1402D02* G03* X3493Y1402I0J0D01* G01* G03* X3493Y1402I0J0D01* G01* X3668Y1614D02* G03* X3668Y1614I0J0D01* G01* G03* X3668Y1614I0J0D01* G01* X3493Y1609D02* G03* X3493Y1609I0J0D01* G01* G03* X3493Y1609I0J0D01* G01* Y1599D02* G03* X3493Y1599I0J0D01* G01* G03* X3493Y1599I0J0D01* G01* X3675Y1735D02* G03* X3675Y1735I0J0D01* G01* G03* X3675Y1735I0J0D01* G01* X3500Y1730D02* G03* X3500Y1730I0J0D01* G01* G03* X3500Y1730I0J0D01* G01* Y1720D02* G03* X3500Y1720I0J0D01* G01* G03* X3500Y1720I0J0D01* G01* X2106Y3429D02* G03* X2106Y3429I0J0D01* G01* G03* X2106Y3429I0J0D01* G01* X2101Y3604D02* G03* X2101Y3604I0J0D01* G01* G03* X2101Y3604I0J0D01* G01* X2091D02* G03* X2091Y3604I0J0D01* G01* G03* X2091Y3604I0J0D01* G01* X2040Y4060D02* G03* X2040Y4060I0J0D01* G01* G03* X2040Y4060I0J0D01* G01* X2045Y3885D02* G03* X2045Y3885I0J0D01* G01* G03* X2045Y3885I0J0D01* G01* X2055D02* G03* X2055Y3885I0J0D01* G01* G03* X2055Y3885I0J0D01* G01* X1660Y3523D02* G03* X1660Y3523I0J0D01* G01* G03* X1660Y3523I0J0D01* G01* X1485Y3518D02* G03* X1485Y3518I0J0D01* G01* G03* X1485Y3518I0J0D01* G01* Y3508D02* G03* X1485Y3508I0J0D01* G01* G03* X1485Y3508I0J0D01* G01* X1802Y3609D02* G03* X1802Y3609I0J0D01* G01* G03* X1802Y3609I0J0D01* G01* X1807Y3434D02* G03* X1807Y3434I0J0D01* G01* G03* X1807Y3434I0J0D01* G01* X1817D02* G03* X1817Y3434I0J0D01* G01* G03* X1817Y3434I0J0D01* G01* X1310Y3880D02* G03* X1310Y3880I0J0D01* G01* G03* X1310Y3880I0J0D01* G01* X1305Y4055D02* G03* X1305Y4055I0J0D01* G01* G03* X1305Y4055I0J0D01* G01* X1295D02* G03* X1295Y4055I0J0D01* G01* G03* X1295Y4055I0J0D01* G01* X950Y3822D02* G03* X950Y3822I0J0D01* G01* G03* X950Y3822I0J0D01* G01* X955Y3647D02* G03* X955Y3647I0J0D01* G01* G03* X955Y3647I0J0D01* G01* X965D02* G03* X965Y3647I0J0D01* G01* G03* X965Y3647I0J0D01* G01* X3668Y3503D02* G03* X3668Y3503I0J0D01* G01* G03* X3668Y3503I0J0D01* G01* X3493Y3498D02* G03* X3493Y3498I0J0D01* G01* G03* X3493Y3498I0J0D01* G01* Y3488D02* G03* X3493Y3488I0J0D01* G01* G03* X3493Y3488I0J0D01* G01* X3668Y3700D02* G03* X3668Y3700I0J0D01* G01* G03* X3668Y3700I0J0D01* G01* X3493Y3695D02* G03* X3493Y3695I0J0D01* G01* G03* X3493Y3695I0J0D01* G01* Y3685D02* G03* X3493Y3685I0J0D01* G01* G03* X3493Y3685I0J0D01* G01* X2174Y2848D02* G03* X2174Y2801I24J-24D01* G01* X3622Y1321D02* Y1372D01* X3544Y1321D02* X3622D01* X3544D02* Y1372D01* X3622D01* X3610Y1321D02* Y1372D01* X3558Y1321D02* Y1372D01* X3605Y1338D02* X3610Y1333D01* X3563Y1338D02* X3605D01* X3559Y1334D02* X3563Y1338D01* X3605Y1355D02* X3610Y1360D01* X3563Y1355D02* X3605D01* X3559Y1359D02* X3563Y1355D01* X3493Y3401D02* X3668D01* X3493Y3376D02* Y3401D01* X3668Y3376D02* Y3401D01* X3493Y3291D02* X3668D01* X3493D02* Y3316D01* X3668Y3291D02* Y3316D01* X3538Y1531D02* Y1582D01* X3460Y1531D02* X3538D01* X3460D02* Y1582D01* X3538D01* X3526Y1531D02* Y1582D01* X3474Y1531D02* Y1582D01* X3521Y1548D02* X3526Y1543D01* X3479Y1548D02* X3521D01* X3475Y1544D02* X3479Y1548D01* X3521Y1565D02* X3526Y1570D01* X3479Y1565D02* X3521D01* X3475Y1569D02* X3479Y1565D01* X3560Y574D02* X3564Y570D01* X3606D01* X3611Y575D01* X3560Y549D02* X3564Y553D01* X3606D01* X3611Y548D01* X3559Y536D02* Y587D01* X3611Y536D02* Y587D01* X3545D02* X3623D01* X3545Y536D02* Y587D01* Y536D02* X3623D01* Y587D01* X3039Y502D02* Y518D01* X3056Y400D02* Y526D01* X3016Y400D02* Y526D01* X3245Y400D02* Y526D01* X3031Y510D02* X3047D01* X3017Y526D02* X3245D01* X3016Y400D02* X3245D01* X3461Y552D02* Y568D01* X3444Y544D02* Y670D01* X3484Y544D02* Y670D01* X3255Y544D02* Y670D01* X3453Y560D02* X3469D01* X3255Y544D02* X3483D01* X3255Y670D02* X3484D01* X3560Y779D02* X3564Y775D01* X3606D01* X3611Y780D01* X3560Y754D02* X3564Y758D01* X3606D01* X3611Y753D01* X3559Y741D02* Y792D01* X3611Y741D02* Y792D01* X3545D02* X3623D01* X3545Y741D02* Y792D01* Y741D02* X3623D01* Y792D01* X3560Y974D02* X3564Y970D01* X3606D01* X3611Y975D01* X3560Y949D02* X3564Y953D01* X3606D01* X3611Y948D01* X3559Y936D02* Y987D01* X3611Y936D02* Y987D01* X3545D02* X3623D01* X3545Y936D02* Y987D01* Y936D02* X3623D01* Y987D01* X3559Y1179D02* X3563Y1175D01* X3605D01* X3610Y1180D01* X3559Y1154D02* X3563Y1158D01* X3605D01* X3610Y1153D01* X3558Y1141D02* Y1192D01* X3610Y1141D02* Y1192D01* X3544D02* X3622D01* X3544Y1141D02* Y1192D01* Y1141D02* X3622D01* Y1192D01* X3668Y1402D02* Y1427D01* X3493Y1402D02* Y1427D01* Y1402D02* X3668D01* Y1487D02* Y1512D01* X3493Y1487D02* Y1512D01* X3668D01* Y1599D02* Y1624D01* X3493Y1599D02* Y1624D01* Y1599D02* X3668D01* Y1684D02* Y1709D01* X3493Y1684D02* Y1709D01* X3668D01* X3675Y1720D02* Y1745D01* X3500Y1720D02* Y1745D01* Y1720D02* X3675D01* Y1805D02* Y1830D01* X3500Y1805D02* Y1830D01* X3675D01* X2091Y3429D02* X2116D01* X2091Y3604D02* X2116D01* X2091Y3429D02* Y3604D01* X2176Y3429D02* X2201D01* X2176Y3604D02* X2201D01* Y3429D02* Y3604D01* X2030Y4060D02* X2055D01* X2030Y3885D02* X2055D01* Y4060D01* X1945D02* X1970D01* X1945Y3885D02* X1970D01* X1945D02* Y4060D01* X2242Y3479D02* X2246Y3483D01* Y3525D01* X2241Y3530D02* X2246Y3525D01* X2263Y3483D02* X2267Y3479D01* X2263Y3483D02* Y3525D01* X2268Y3530D01* X2228Y3478D02* X2280D01* X2228Y3530D02* X2280D01* X2228Y3464D02* Y3542D01* Y3464D02* X2280D01* Y3542D01* X2228D02* X2280D01* X3555Y2469D02* X3559Y2465D01* X3601D01* X3606Y2470D01* X3555Y2444D02* X3559Y2448D01* X3601D01* X3606Y2443D01* X3554Y2431D02* Y2482D01* X3606Y2431D02* Y2482D01* X3540D02* X3618D01* X3540Y2431D02* Y2482D01* Y2431D02* X3618D01* Y2482D01* X1947Y3479D02* X1951Y3483D01* Y3525D01* X1946Y3530D02* X1951Y3525D01* X1968Y3483D02* X1971Y3479D01* X1968Y3483D02* Y3525D01* X1972Y3530D01* X1933Y3478D02* X1984D01* X1933Y3530D02* X1984D01* X1933Y3464D02* Y3542D01* Y3464D02* X1984D01* Y3542D01* X1933D02* X1984D01* X3079Y2386D02* Y2402D01* X3096Y2284D02* Y2410D01* X3056Y2284D02* Y2410D01* X3285Y2284D02* Y2410D01* X3071Y2394D02* X3087D01* X3057Y2410D02* X3285D01* X3056Y2284D02* X3285D01* X3441Y2442D02* Y2458D01* X3424Y2434D02* Y2560D01* X3464Y2434D02* Y2560D01* X3235Y2434D02* Y2560D01* X3433Y2450D02* X3449D01* X3235Y2434D02* X3463D01* X3235Y2560D02* X3464D01* X3555Y2669D02* X3559Y2665D01* X3601D01* X3606Y2670D01* X3555Y2644D02* X3559Y2648D01* X3601D01* X3606Y2643D01* X3554Y2631D02* Y2682D01* X3606Y2631D02* Y2682D01* X3540D02* X3618D01* X3540Y2631D02* Y2682D01* Y2631D02* X3618D01* Y2682D01* X1671Y3446D02* X1675Y3450D01* X1671Y3405D02* Y3446D01* Y3405D02* X1676Y3400D01* X1651Y3450D02* X1655Y3446D01* Y3405D02* Y3446D01* X1650Y3400D02* X1655Y3405D01* X1638Y3451D02* X1689D01* X1638Y3400D02* X1689D01* Y3387D02* Y3466D01* X1638D02* X1689D01* X1638Y3387D02* Y3466D01* Y3387D02* X1689D01* X1455Y3401D02* X1459Y3405D01* Y3446D01* X1454Y3451D02* X1459Y3446D01* X1475Y3405D02* X1479Y3401D01* X1475Y3405D02* Y3446D01* X1480Y3451D01* X1441Y3400D02* X1492D01* X1441Y3451D02* X1492D01* X1441Y3385D02* Y3464D01* Y3385D02* X1492D01* Y3464D01* X1441D02* X1492D01* X3555Y2869D02* X3559Y2865D01* X3601D01* X3606Y2870D01* X3555Y2844D02* X3559Y2848D01* X3601D01* X3606Y2843D01* X3554Y2831D02* Y2882D01* X3606Y2831D02* Y2882D01* X3540D02* X3618D01* X3540Y2831D02* Y2882D01* Y2831D02* X3618D01* Y2882D01* X1278Y3525D02* X1281Y3529D01* X1278Y3483D02* Y3525D01* Y3483D02* X1282Y3478D01* X1257Y3529D02* X1261Y3525D01* Y3483D02* Y3525D01* X1256Y3478D02* X1261Y3483D01* X1244Y3530D02* X1295D01* X1244Y3478D02* X1295D01* Y3466D02* Y3544D01* X1244D02* X1295D01* X1244Y3466D02* Y3544D01* Y3466D02* X1295D01* X3555Y3069D02* X3559Y3065D01* X3601D01* X3606Y3070D01* X3555Y3044D02* X3559Y3048D01* X3601D01* X3606Y3043D01* X3554Y3031D02* Y3082D01* X3606Y3031D02* Y3082D01* X3540D02* X3618D01* X3540Y3031D02* Y3082D01* Y3031D02* X3618D01* Y3082D01* X1660Y3508D02* Y3533D01* X1485Y3508D02* Y3533D01* Y3508D02* X1660D01* Y3593D02* Y3618D01* X1485Y3593D02* Y3618D01* X1660D01* X1792Y3609D02* X1817D01* X1792Y3434D02* X1817D01* Y3609D01* X1707D02* X1732D01* X1707Y3434D02* X1732D01* X1707D02* Y3609D01* X1295Y3880D02* X1320D01* X1295Y4055D02* X1320D01* X1295Y3880D02* Y4055D01* X1380Y3880D02* X1405D01* X1380Y4055D02* X1405D01* Y3880D02* Y4055D01* X3555Y3259D02* X3559Y3255D01* X3601D01* X3606Y3260D01* X3555Y3234D02* X3559Y3238D01* X3601D01* X3606Y3233D01* X3554Y3221D02* Y3272D01* X3606Y3221D02* Y3272D01* X3540D02* X3618D01* X3540Y3221D02* Y3272D01* Y3221D02* X3618D01* Y3272D01* X3475Y3459D02* X3479Y3455D01* X3521D01* X3526Y3460D01* X3475Y3434D02* X3479Y3438D01* X3521D01* X3526Y3433D01* X3474Y3421D02* Y3472D01* X3526Y3421D02* Y3472D01* X3460D02* X3538D01* X3460Y3421D02* Y3472D01* Y3421D02* X3538D01* Y3472D01* X940Y3822D02* X965D01* X940Y3647D02* X965D01* Y3822D01* X855D02* X880D01* X855Y3647D02* X880D01* X855D02* Y3822D01* X3668Y3488D02* Y3513D01* X3493Y3488D02* Y3513D01* Y3488D02* X3668D01* Y3573D02* Y3598D01* X3493Y3573D02* Y3598D01* X3668D01* Y3685D02* Y3710D01* X3493Y3685D02* Y3710D01* Y3685D02* X3668D01* Y3770D02* Y3795D01* X3493Y3770D02* Y3795D01* X3668D01* X1423Y2370D02* X1557D01* X1423Y2260D02* X1557D01* X1539Y2275D02* X1551D01* X1423Y2260D02* Y2370D01* X1557Y2260D02* Y2370D01* X1533Y2260D02* Y2370D01* X1545Y2268D02* Y2282D01* X2063Y2330D02* X2197D01* X2063Y2220D02* X2197D01* X2179Y2235D02* X2191D01* X2063Y2220D02* Y2330D01* X2197Y2220D02* Y2330D01* X2173Y2220D02* Y2330D01* X2185Y2228D02* Y2242D01* X2174Y2844D02* X2179Y2849D01* Y2925D01* X2174Y2805D02* X2179Y2801D01* Y2725D02* Y2801D01* X1774Y2925D02* X2179D01* X1774Y2725D02* Y2925D01* Y2725D02* X2179D01* X2473Y2070D02* X2607D01* X2473Y2180D02* X2607D01* X2479Y2165D02* X2491D01* X2607Y2070D02* Y2180D01* X2473Y2070D02* Y2180D01* X2497Y2070D02* Y2180D01* X2485Y2158D02* Y2172D01* X2617Y1723D02* Y2010D01* X2785Y1723D02* Y2010D01* X2760Y1975D02* Y1995D01* X2617Y1723D02* X2785D01* X2617Y2010D02* X2785D01* X2617Y1960D02* X2785D01* X2749Y1985D02* X2770D01* X3551Y2170D02* Y2186D01* X3534Y2162D02* Y2288D01* X3574Y2162D02* Y2288D01* X3345Y2162D02* Y2288D01* X3543Y2178D02* X3559D01* X3345Y2162D02* X3573D01* X3345Y2288D02* X3574D01* X2458Y1640D02* X2592D01* X2458Y1750D02* X2592D01* X2464Y1735D02* X2476D01* X2592Y1640D02* Y1750D01* X2458Y1640D02* Y1750D01* X2482Y1640D02* Y1750D01* X2470Y1728D02* Y1742D01* X1153Y2657D02* X1181D01* X1153D02* Y2697D01* X1181D01* Y2511D02* X1259D01* X1133Y2500D02* X1271D01* X1153Y2598D02* X1181D01* X1153D02* Y2637D01* X1181D01* X1153Y2539D02* X1181D01* X1153D02* Y2578D01* X1181D01* Y2511D02* Y2665D01* X1259Y2511D02* Y2689D01* X1271Y2500D02* Y2677D01* X1133Y2500D02* Y2677D01* X1153Y2834D02* X1181D01* X1153D02* Y2874D01* X1181D01* X1153Y2775D02* X1181D01* X1153D02* Y2815D01* X1181D01* Y2901D02* X1259D01* X1181Y2665D02* Y2901D01* X1259Y2689D02* Y2901D01* X1200Y2905D02* Y2913D01* Y2905D02* X1240D01* Y2913D01* X1220D02* X1271D01* Y2677D02* Y2913D01* X1133Y2677D02* Y2913D01* X1220D01* X1153Y2716D02* X1181D01* X1153D02* Y2756D01* X1181D01* X2513Y2667D02* X2541D01* X2513D02* Y2707D01* X2541D01* Y2521D02* X2619D01* X2493Y2510D02* X2631D01* X2513Y2608D02* X2541D01* X2513D02* Y2647D01* X2541D01* X2513Y2549D02* X2541D01* X2513D02* Y2588D01* X2541D01* Y2521D02* Y2675D01* X2619Y2521D02* Y2699D01* X2631Y2510D02* Y2687D01* X2493Y2510D02* Y2687D01* X2513Y2844D02* X2541D01* X2513D02* Y2884D01* X2541D01* X2513Y2785D02* X2541D01* X2513D02* Y2825D01* X2541D01* Y2911D02* X2619D01* X2541Y2675D02* Y2911D01* X2619Y2699D02* Y2911D01* X2560Y2915D02* Y2923D01* Y2915D02* X2600D01* Y2923D01* X2580D02* X2631D01* Y2687D02* Y2923D01* X2493Y2687D02* Y2923D01* X2580D01* X2513Y2726D02* X2541D01* X2513D02* Y2766D01* X2541D01* X883Y3536D02* Y3567D01* X937Y3536D02* Y3567D01* X879Y3454D02* X941D01* Y3467D01* X937D02* X941D01* X937D02* Y3496D01* X941D01* Y3516D01* X879Y3580D02* X941D01* Y3567D02* Y3580D01* X937Y3567D02* X941D01* X937Y3536D02* X941D01* Y3516D02* Y3536D01* X879Y3454D02* Y3467D01* X883D01* Y3496D01* X879D02* X883D01* X879D02* Y3516D01* Y3567D02* Y3580D01* Y3567D02* X883D01* X879Y3536D02* X883D01* X879Y3516D02* Y3536D01* X883Y3467D02* X941D01* X882Y3567D02* X939D01* X883Y3536D02* X938D01* X882Y3496D02* X937D01* X810Y3880D02* X841D01* X810Y3933D02* X841D01* X923Y3875D02* Y3938D01* X910D02* X923D01* X910Y3933D02* Y3938D01* X881Y3933D02* X910D01* X881D02* Y3938D01* X861D02* X881D01* X797Y3875D02* Y3938D01* X810D01* X810Y3933D02* X810Y3938D01* X841Y3933D02* Y3938D01* X861D01* X910Y3875D02* X923D01* X910D02* Y3880D01* X881D02* X910D01* X881Y3875D02* Y3880D01* X861Y3875D02* X881D01* X797D02* X810D01* X810Y3880D02* X810Y3875D01* X841D02* Y3880D01* Y3875D02* X861D01* X910Y3880D02* Y3938D01* X810Y3879D02* Y3935D01* X841Y3880D02* Y3934D01* X881Y3879D02* Y3933D01* X1188Y3528D02* X1192Y3531D01* X1188Y3486D02* Y3528D01* Y3486D02* X1193Y3481D01* X1167Y3531D02* X1171Y3528D01* Y3486D02* Y3528D01* X1166Y3481D02* X1171Y3486D01* X1154Y3532D02* X1206D01* X1154Y3481D02* X1206D01* Y3468D02* Y3547D01* X1154D02* X1206D01* X1154Y3468D02* Y3547D01* Y3468D02* X1206D01* X621Y1323D02* Y1374D01* X700D01* Y1323D02* Y1374D01* X621Y1323D02* X700D01* X634D02* Y1374D01* X685Y1323D02* Y1374D01* X634Y1362D02* X639Y1357D01* X680D01* X684Y1361D01* X634Y1336D02* X639Y1341D01* X680D01* X684Y1337D01* X1098Y3528D02* X1102Y3531D01* X1098Y3486D02* Y3528D01* Y3486D02* X1103Y3481D01* X1077Y3531D02* X1081Y3528D01* Y3486D02* Y3528D01* X1076Y3481D02* X1081Y3486D01* X1064Y3532D02* X1116D01* X1064Y3481D02* X1116D01* Y3468D02* Y3547D01* X1064D02* X1116D01* X1064Y3468D02* Y3547D01* Y3468D02* X1116D01* X1248Y3948D02* X1252Y3951D01* X1248Y3906D02* Y3948D01* Y3906D02* X1253Y3901D01* X1227Y3951D02* X1231Y3948D01* Y3906D02* Y3948D01* X1226Y3901D02* X1231Y3906D01* X1214Y3952D02* X1266D01* X1214Y3901D02* X1266D01* Y3888D02* Y3967D01* X1214D02* X1266D01* X1214Y3888D02* Y3967D01* Y3888D02* X1266D01* X1104Y2074D02* Y2137D01* Y2074D02* X1167D01* Y2137D01* X1104D02* X1167D01* D79* X1902Y3406D02* G03* X1902Y3209I0J-98D01* G01* X2158D02* G03* X2158Y3406I0J98D01* G01* X1902Y3406D02* X2158D01* X1902Y3209D02* X2158D01* X1011Y747D02* Y845D01* X649D02* X1011D01* X649Y648D02* Y845D01* Y648D02* X1011D01* Y747D01* D80* X1004Y3248D02* G03* X1004Y3248I-118J0D01* G01* X3465Y3937D02* G03* X3465Y3937I-118J0D01* G01* X2953Y394D02* G03* X2953Y394I-118J0D01* G01* X315D02* G03* X315Y394I-118J0D01* G01* X768Y3248D02* X1004D01* X886Y3130D02* Y3366D01* X3228Y3937D02* X3465D01* X3346Y3819D02* Y4055D01* X2717Y394D02* X2953D01* X2835Y276D02* Y512D01* X79Y394D02* X315D01* X197Y276D02* Y512D01* X3083Y1335D02* Y1435D01* X3088Y1335D02* Y1435D01* X3143Y3208D02* Y3308D01* X3148Y3208D02* Y3308D01* X3167Y1127D02* Y1227D01* X3162Y1127D02* Y1227D01* X3018Y3011D02* Y3111D01* X3013Y3011D02* Y3111D01* X1013Y1067D02* Y1167D01* X1018Y1067D02* Y1167D01* X676Y1426D02* Y1526D01* X671Y1426D02* Y1526D01* X646Y1554D02* Y1654D01* X641Y1554D02* Y1654D01* X3189Y754D02* X3289D01* X3189Y749D02* X3289D01* X3129Y2634D02* X3229D01* X3129Y2629D02* X3229D01* X1573Y2155D02* Y2255D01* X1578Y2155D02* Y2255D01* X1510Y1982D02* X1610D01* X1510Y1977D02* X1610D01* X2277Y2045D02* Y2145D01* X2272Y2045D02* Y2145D01* X1910Y1512D02* X2010D01* X1910Y1507D02* X2010D01* X2287Y2235D02* Y2335D01* X2282Y2235D02* Y2335D01* X2030Y2052D02* X2130D01* X2030Y2047D02* X2130D01* X2020Y1637D02* X2120D01* X2020Y1642D02* X2120D01* X3210Y1707D02* X3310D01* X3210Y1702D02* X3310D01* X2310Y1652D02* X2410D01* X2310Y1647D02* X2410D01* X2700Y1262D02* X2800D01* X2700Y1257D02* X2800D01* X2540Y982D02* X2640D01* X2540Y977D02* X2640D01* X1770Y1847D02* X1870D01* X1770Y1852D02* X1870D01* X1810Y1512D02* X1910D01* X1810Y1507D02* X1910D01* X1620Y1892D02* X1720D01* X1620Y1887D02* X1720D01* X1710Y1512D02* X1810D01* X1710Y1507D02* X1810D01* X2467Y1525D02* Y1625D01* X2462Y1525D02* Y1625D01* X3333Y1565D02* Y1665D01* X3338Y1565D02* Y1665D01* X2593Y1425D02* Y1525D01* X2598Y1425D02* Y1525D01* X1930Y2082D02* X2030D01* X1930Y2077D02* X2030D01* X620Y2137D02* X820D01* X620Y1837D02* X820D01* X620Y1887D02* X665D01* Y2087D01* X620D02* X665D01* X620Y1837D02* Y2137D01* X820Y1837D02* Y2137D01* X2960Y667D02* Y1167D01* X2760Y667D02* Y1167D01* X2805Y717D02* Y1117D01* X2760Y717D02* X2805D01* X2760Y667D02* X2960D01* X2760Y1117D02* X2805D01* X2760Y1167D02* X2960D01* X2460Y347D02* Y847D01* X2660Y347D02* Y847D01* X2615Y397D02* Y797D01* X2660D01* X2460Y847D02* X2660D01* X2615Y397D02* X2660D01* X2460Y347D02* X2660D01* X2915Y2588D02* Y3088D01* X2715Y2588D02* Y3088D01* X2760Y2638D02* Y3038D01* X2715Y2638D02* X2760D01* X2715Y2588D02* X2915D01* X2715Y3038D02* X2760D01* X2715Y3088D02* X2915D01* X1570Y1347D02* X1770D01* X1570Y1297D02* X1615D01* Y897D02* Y1297D01* X1570Y847D02* Y1347D01* X1770Y847D02* Y1347D01* X1570Y347D02* X1770D01* X1570Y397D02* X1615D01* Y892D01* X1570Y347D02* Y847D01* X1770Y347D02* Y847D01* X2160Y1347D02* X2360D01* X2160Y1297D02* X2205D01* Y897D02* Y1297D01* X2160Y847D02* Y1347D01* X2360Y847D02* Y1347D01* X2160Y347D02* X2360D01* X2160Y397D02* X2205D01* Y892D01* X2160Y347D02* Y847D01* X2360Y347D02* Y847D01* X1280Y1347D02* X1480D01* X1280Y1297D02* X1325D01* Y897D02* Y1297D01* X1280Y847D02* Y1347D01* X1480Y847D02* Y1347D01* X1280Y347D02* X1480D01* X1280Y397D02* X1325D01* Y892D01* X1280Y347D02* Y847D01* X1480Y347D02* Y847D01* X2070Y347D02* Y847D01* X1870Y347D02* Y847D01* X1915Y397D02* Y892D01* X1870Y397D02* X1915D01* X1870Y347D02* X2070D01* Y847D02* Y1347D01* X1870Y847D02* Y1347D01* X1915Y897D02* Y1297D01* X1870D02* X1915D01* X1870Y1347D02* X2070D01* X3890Y1207D02* Y1707D01* X4090Y1207D02* Y1707D01* X4045Y1162D02* Y1657D01* X4090D01* X3890Y1707D02* X4090D01* X3890Y707D02* Y1207D01* X4090Y707D02* Y1207D01* X4045Y757D02* Y1157D01* Y757D02* X4090D01* X3890Y707D02* X4090D01* X190Y3200D02* Y3500D01* X390Y3200D02* Y3500D01* X345Y3250D02* X390D01* X345D02* Y3450D01* X390D01* X190Y3500D02* X390D01* X190Y3200D02* X390D01* X620Y2207D02* Y2507D01* X820Y2207D02* Y2507D01* X775Y2257D02* X820D01* X775D02* Y2457D01* X820D01* X620Y2507D02* X820D01* X620Y2207D02* X820D01* X3890Y3097D02* Y3597D01* X4090Y3097D02* Y3597D01* X4045Y3052D02* Y3547D01* X4090D01* X3890Y3597D02* X4090D01* X3890Y2597D02* Y3097D01* X4090Y2597D02* Y3097D01* X4045Y2647D02* Y3047D01* Y2647D02* X4090D01* X3890Y2597D02* X4090D01* X803Y537D02* Y637D01* X808Y537D02* Y637D01* X1200Y154D02* X1300D01* X1200Y149D02* X1300D01* X2357Y1350D02* Y1450D01* X2362Y1350D02* Y1450D01* X820Y867D02* Y1167D01* X620Y867D02* Y1167D01* Y1117D02* X665D01* Y917D02* Y1117D01* X620Y917D02* X665D01* X620Y867D02* X820D01* X620Y1167D02* X820D01* D81* X2918Y1335D02* Y1435D01* X3123Y1335D02* Y1435D01* X2918D02* X2993D01* X2918Y1335D02* X2993D01* X3048D02* X3123D01* X3048Y1435D02* X3123D01* X2978Y3208D02* Y3308D01* X3183Y3208D02* Y3308D01* X2978D02* X3053D01* X2978Y3208D02* X3053D01* X3108D02* X3183D01* X3108Y3308D02* X3183D01* X3332Y1127D02* Y1227D01* X3127Y1127D02* Y1227D01* X3257Y1127D02* X3332D01* X3257Y1227D02* X3332D01* X3127D02* X3202D01* X3127Y1127D02* X3202D01* X3183Y3011D02* Y3111D01* X2978Y3011D02* Y3111D01* X3108Y3011D02* X3183D01* X3108Y3111D02* X3183D01* X2978D02* X3053D01* X2978Y3011D02* X3053D01* X925Y1985D02* X1015D01* X925Y1825D02* X1015D01* Y1925D02* Y1985D01* X925Y1925D02* Y1985D01* Y1825D02* Y1885D01* X1015Y1825D02* Y1885D01* X1715Y2175D02* X1805D01* X1715Y2335D02* X1805D01* X1715Y2175D02* Y2235D01* X1805Y2175D02* Y2235D01* Y2275D02* Y2335D01* X1715Y2275D02* Y2335D01* X1625Y2175D02* X1715D01* X1625Y2335D02* X1715D01* X1625Y2175D02* Y2235D01* X1715Y2175D02* Y2235D01* Y2275D02* Y2335D01* X1625Y2275D02* Y2335D01* X2795Y1675D02* X2885D01* X2795Y1835D02* X2885D01* X2795Y1675D02* Y1735D01* X2885Y1675D02* Y1735D01* Y1775D02* Y1835D01* X2795Y1775D02* Y1835D01* X2955Y2160D02* X3045D01* X2955Y2000D02* X3045D01* Y2100D02* Y2160D01* X2955Y2100D02* Y2160D01* Y2000D02* Y2060D01* X3045Y2000D02* Y2060D01* X3160Y1540D02* Y1630D01* X3000Y1540D02* Y1630D01* X3100Y1540D02* X3160D01* X3100Y1630D02* X3160D01* X3000D02* X3060D01* X3000Y1540D02* X3060D01* X2830Y2025D02* X2920D01* X2830Y2185D02* X2920D01* X2830Y2025D02* Y2085D01* X2920Y2025D02* Y2085D01* Y2125D02* Y2185D01* X2830Y2125D02* Y2185D01* X1255Y620D02* Y680D01* X1165Y620D02* Y680D01* Y720D02* Y780D01* X1255Y720D02* Y780D01* X1165Y620D02* X1255D01* X1165Y780D02* X1255D01* X848Y1067D02* Y1167D01* X1053Y1067D02* Y1167D01* X848D02* X923D01* X848Y1067D02* X923D01* X978D02* X1053D01* X978Y1167D02* X1053D01* X770Y3972D02* X830D01* X770Y4062D02* X830D01* X870D02* X930D01* X870Y3972D02* X930D01* X770D02* Y4062D01* X930Y3972D02* Y4062D01* X1075Y717D02* Y777D01* X1165Y717D02* Y777D01* Y617D02* Y677D01* X1075Y617D02* Y677D01* Y777D02* X1165D01* X1075Y617D02* X1165D01* X1548Y1422D02* Y1467D01* X1433Y1422D02* Y1467D01* X1528Y1422D02* X1548D01* X1488Y1512D02* X1493D01* X1433Y1422D02* X1453D01* X1088Y1277D02* X1163D01* X1088Y1177D02* X1163D01* X958D02* X1033D01* X958Y1277D02* X1033D01* X1163Y1177D02* Y1277D01* X958Y1177D02* Y1277D01* X1060Y1370D02* X1120D01* X1060Y1280D02* X1120D01* X960D02* X1020D01* X960Y1370D02* X1020D01* X1120Y1280D02* Y1370D01* X960Y1280D02* Y1370D01* X1260Y1580D02* X1320D01* X1260Y1670D02* X1320D01* X1360D02* X1420D01* X1360Y1580D02* X1420D01* X1260D02* Y1670D01* X1420Y1580D02* Y1670D01* X955Y1610D02* X1015D01* X955Y1520D02* X1015D01* X855D02* X915D01* X855Y1610D02* X915D01* X1015Y1520D02* Y1610D01* X855Y1520D02* Y1610D01* X1108Y1544D02* Y1604D01* X1018Y1544D02* Y1604D01* Y1644D02* Y1704D01* X1108Y1644D02* Y1704D01* X1018Y1544D02* X1108D01* X1018Y1704D02* X1108D01* X1068Y1399D02* X1113D01* X1068Y1514D02* X1113D01* X1068Y1399D02* Y1419D01* X1158Y1454D02* Y1459D01* X1068Y1494D02* Y1514D01* X841Y1426D02* Y1526D01* X636Y1426D02* Y1526D01* X766Y1426D02* X841D01* X766Y1526D02* X841D01* X636D02* X711D01* X636Y1426D02* X711D01* X811Y1554D02* Y1654D01* X606Y1554D02* Y1654D01* X736Y1554D02* X811D01* X736Y1654D02* X811D01* X606D02* X681D01* X606Y1554D02* X681D01* X3293Y422D02* X3368D01* X3293Y522D02* X3368D01* X3423D02* X3498D01* X3423Y422D02* X3498D01* X3293D02* Y522D01* X3498Y422D02* Y522D01* X955Y1521D02* X1015D01* X955Y1431D02* X1015D01* X855D02* X915D01* X855Y1521D02* X915D01* X1015Y1431D02* Y1521D01* X855Y1431D02* Y1521D01* X955Y1708D02* X1015D01* X955Y1618D02* X1015D01* X855D02* X915D01* X855Y1708D02* X915D01* X1015Y1618D02* Y1708D01* X855Y1618D02* Y1708D01* X3476Y714D02* Y789D01* X3376Y714D02* Y789D01* Y844D02* Y919D01* X3476Y844D02* Y919D01* X3376Y714D02* X3476D01* X3376Y919D02* X3476D01* Y921D02* Y996D01* X3376Y921D02* Y996D01* Y1051D02* Y1126D01* X3476Y1051D02* Y1126D01* X3376Y921D02* X3476D01* X3376Y1126D02* X3476D01* X3378Y921D02* Y996D01* X3278Y921D02* Y996D01* Y1051D02* Y1126D01* X3378Y1051D02* Y1126D01* X3278Y921D02* X3378D01* X3278Y1126D02* X3378D01* X3327Y1127D02* X3402D01* X3327Y1227D02* X3402D01* X3457D02* X3532D01* X3457Y1127D02* X3532D01* X3327D02* Y1227D01* X3532Y1127D02* Y1227D01* X3186Y1229D02* X3261D01* X3186Y1329D02* X3261D01* X3316D02* X3391D01* X3316Y1229D02* X3391D01* X3186D02* Y1329D01* X3391Y1229D02* Y1329D01* X3278Y844D02* Y919D01* X3378Y844D02* Y919D01* Y714D02* Y789D01* X3278Y714D02* Y789D01* Y919D02* X3378D01* X3278Y714D02* X3378D01* X3189Y919D02* X3289D01* X3189Y714D02* X3289D01* Y844D02* Y919D01* X3189Y844D02* Y919D01* Y714D02* Y789D01* X3289Y714D02* Y789D01* X3127Y1335D02* X3202D01* X3127Y1435D02* X3202D01* X3257D02* X3332D01* X3257Y1335D02* X3332D01* X3127D02* Y1435D01* X3332Y1335D02* Y1435D01* X3180Y1054D02* Y1129D01* X3280Y1054D02* Y1129D01* Y924D02* Y999D01* X3180Y924D02* Y999D01* Y1129D02* X3280D01* X3180Y924D02* X3280D01* X3048Y1337D02* X3123D01* X3048Y1237D02* X3123D01* X2918D02* X2993D01* X2918Y1337D02* X2993D01* X3123Y1237D02* Y1337D01* X2918Y1237D02* Y1337D01* X3048Y1535D02* X3123D01* X3048Y1435D02* X3123D01* X2918D02* X2993D01* X2918Y1535D02* X2993D01* X3123Y1435D02* Y1535D01* X2918Y1435D02* Y1535D01* X3333Y2302D02* X3408D01* X3333Y2402D02* X3408D01* X3463D02* X3538D01* X3463Y2302D02* X3538D01* X3333D02* Y2402D01* X3538Y2302D02* Y2402D01* X3426Y2594D02* Y2669D01* X3326Y2594D02* Y2669D01* Y2724D02* Y2799D01* X3426Y2724D02* Y2799D01* X3326Y2594D02* X3426D01* X3326Y2799D02* X3426D01* Y2801D02* Y2876D01* X3326Y2801D02* Y2876D01* Y2931D02* Y3006D01* X3426Y2931D02* Y3006D01* X3326Y2801D02* X3426D01* X3326Y3006D02* X3426D01* X3328Y2801D02* Y2876D01* X3228Y2801D02* Y2876D01* Y2931D02* Y3006D01* X3328Y2931D02* Y3006D01* X3228Y2801D02* X3328D01* X3228Y3006D02* X3328D01* X3195Y3011D02* X3270D01* X3195Y3111D02* X3270D01* X3325D02* X3400D01* X3325Y3011D02* X3400D01* X3195D02* Y3111D01* X3400Y3011D02* Y3111D01* X3195Y3109D02* X3270D01* X3195Y3209D02* X3270D01* X3325D02* X3400D01* X3325Y3109D02* X3400D01* X3195D02* Y3209D01* X3400Y3109D02* Y3209D01* X3328Y2594D02* Y2669D01* X3228Y2594D02* Y2669D01* Y2724D02* Y2799D01* X3328Y2724D02* Y2799D01* X3228Y2594D02* X3328D01* X3228Y2799D02* X3328D01* X3129D02* X3229D01* X3129Y2594D02* X3229D01* Y2724D02* Y2799D01* X3129Y2724D02* Y2799D01* Y2594D02* Y2669D01* X3229Y2594D02* Y2669D01* X3328Y3307D02* X3403D01* X3328Y3207D02* X3403D01* X3198D02* X3273D01* X3198Y3307D02* X3273D01* X3403Y3207D02* Y3307D01* X3198Y3207D02* Y3307D01* X3129Y2931D02* Y3006D01* X3229Y2931D02* Y3006D01* Y2801D02* Y2876D01* X3129Y2801D02* Y2876D01* Y3006D02* X3229D01* X3129Y2801D02* X3229D01* X2959Y3109D02* X3034D01* X2959Y3209D02* X3034D01* X3089D02* X3164D01* X3089Y3109D02* X3164D01* X2959D02* Y3209D01* X3164Y3109D02* Y3209D01* X2963Y3106D02* Y3181D01* X2863Y3106D02* Y3181D01* Y3236D02* Y3311D01* X2963Y3236D02* Y3311D01* X2863Y3106D02* X2963D01* X2863Y3311D02* X2963D01* X2385Y2714D02* Y2774D01* X2475Y2714D02* Y2774D01* Y2614D02* Y2674D01* X2385Y2614D02* Y2674D01* Y2774D02* X2475D01* X2385Y2614D02* X2475D01* X1408Y2155D02* Y2255D01* X1613Y2155D02* Y2255D01* X1408D02* X1483D01* X1408Y2155D02* X1483D01* X1538D02* X1613D01* X1538Y2255D02* X1613D01* X1315Y2799D02* X1375D01* X1315Y2889D02* X1375D01* X1415D02* X1475D01* X1415Y2799D02* X1475D01* X1315D02* Y2889D01* X1475Y2799D02* Y2889D01* X1315Y2434D02* X1375D01* X1315Y2524D02* X1375D01* X1415D02* X1475D01* X1415Y2434D02* X1475D01* X1315D02* Y2524D01* X1475Y2434D02* Y2524D01* X1315Y2889D02* X1375D01* X1315Y2979D02* X1375D01* X1415D02* X1475D01* X1415Y2889D02* X1475D01* X1315D02* Y2979D01* X1475Y2889D02* Y2979D01* X1315Y2709D02* X1375D01* X1315Y2799D02* X1375D01* X1415D02* X1475D01* X1415Y2709D02* X1475D01* X1315D02* Y2799D01* X1475Y2709D02* Y2799D01* Y2650D02* Y2710D01* X1565Y2650D02* Y2710D01* Y2550D02* Y2610D01* X1475Y2550D02* Y2610D01* Y2710D02* X1565D01* X1475Y2550D02* X1565D01* X2310Y2789D02* X2370D01* X2310Y2879D02* X2370D01* X2410D02* X2470D01* X2410Y2789D02* X2470D01* X2310D02* Y2879D01* X2470Y2789D02* Y2879D01* X1510Y2147D02* X1610D01* X1510Y1942D02* X1610D01* Y2072D02* Y2147D01* X1510Y2072D02* Y2147D01* Y1942D02* Y2017D01* X1610Y1942D02* Y2017D01* X2230Y2040D02* X2290D01* X2230Y1950D02* X2290D01* X2130D02* X2190D01* X2130Y2040D02* X2190D01* X2290Y1950D02* Y2040D01* X2130Y1950D02* Y2040D01* X2380Y2230D02* X2440D01* X2380Y2140D02* X2440D01* X2280D02* X2340D01* X2280Y2230D02* X2340D01* X2440Y2140D02* Y2230D01* X2280Y2140D02* Y2230D01* X2230Y1950D02* X2290D01* X2230Y1860D02* X2290D01* X2130D02* X2190D01* X2130Y1950D02* X2190D01* X2290Y1860D02* Y1950D01* X2130Y1860D02* Y1950D01* X2442Y2045D02* Y2145D01* X2237Y2045D02* Y2145D01* X2367Y2045D02* X2442D01* X2367Y2145D02* X2442D01* X2237D02* X2312D01* X2237Y2045D02* X2312D01* X2505Y2197D02* X2550D01* X2505Y2312D02* X2550D01* X2505Y2197D02* Y2217D01* X2595Y2252D02* Y2257D01* X2505Y2292D02* Y2312D01* X2035Y1785D02* Y1845D01* X2125Y1785D02* Y1845D01* Y1685D02* Y1745D01* X2035Y1685D02* Y1745D01* Y1845D02* X2125D01* X2035Y1685D02* X2125D01* Y2155D02* Y2215D01* X2215Y2155D02* Y2215D01* Y2055D02* Y2115D01* X2125Y2055D02* Y2115D01* Y2215D02* X2215D01* X2125Y2055D02* X2215D01* X1910Y1677D02* X2010D01* X1910Y1472D02* X2010D01* Y1602D02* Y1677D01* X1910Y1602D02* Y1677D01* Y1472D02* Y1547D01* X2010Y1472D02* Y1547D01* X1640Y2982D02* X1700D01* X1640Y2892D02* X1700D01* X1540D02* X1600D01* X1540Y2982D02* X1600D01* X1700Y2892D02* Y2982D01* X1540Y2892D02* Y2982D01* X1680Y3079D02* X1740D01* X1680Y2989D02* X1740D01* X1580D02* X1640D01* X1580Y3079D02* X1640D01* X1740Y2989D02* Y3079D01* X1580Y2989D02* Y3079D01* X2035Y1955D02* Y2015D01* X2125Y1955D02* Y2015D01* Y1855D02* Y1915D01* X2035Y1855D02* Y1915D01* Y2015D02* X2125D01* X2035Y1855D02* X2125D01* X1680Y3172D02* X1740D01* X1680Y3082D02* X1740D01* X1580D02* X1640D01* X1580Y3172D02* X1640D01* X1740Y3082D02* Y3172D01* X1580Y3082D02* Y3172D01* X2452Y2235D02* Y2335D01* X2247Y2235D02* Y2335D01* X2377Y2235D02* X2452D01* X2377Y2335D02* X2452D01* X2247D02* X2322D01* X2247Y2235D02* X2322D01* X2380Y2469D02* X2440D01* X2380Y2379D02* X2440D01* X2280D02* X2340D01* X2280Y2469D02* X2340D01* X2440Y2379D02* Y2469D01* X2280Y2379D02* Y2469D01* X2310Y2879D02* X2370D01* X2310Y2969D02* X2370D01* X2410D02* X2470D01* X2410Y2879D02* X2470D01* X2310D02* Y2969D01* X2470Y2879D02* Y2969D01* X2030Y2217D02* X2130D01* X2030Y2012D02* X2130D01* Y2142D02* Y2217D01* X2030Y2142D02* Y2217D01* Y2012D02* Y2087D01* X2130Y2012D02* Y2087D01* X1875Y3104D02* Y3164D01* X1965Y3104D02* Y3164D01* Y3004D02* Y3064D01* X1875Y3004D02* Y3064D01* Y3164D02* X1965D01* X1875Y3004D02* X1965D01* X1582Y3173D02* X1642D01* X1582Y3263D02* X1642D01* X1682D02* X1742D01* X1682Y3173D02* X1742D01* X1582D02* Y3263D01* X1742Y3173D02* Y3263D01* X2135Y3007D02* Y3067D01* X2045Y3007D02* Y3067D01* Y3107D02* Y3167D01* X2135Y3107D02* Y3167D01* X2045Y3007D02* X2135D01* X2045Y3167D02* X2135D01* X2305Y1445D02* Y1505D01* X2215Y1445D02* Y1505D01* Y1545D02* Y1605D01* X2305Y1545D02* Y1605D01* X2215Y1445D02* X2305D01* X2215Y1605D02* X2305D01* X2230Y1860D02* X2290D01* X2230Y1770D02* X2290D01* X2130D02* X2190D01* X2130Y1860D02* X2190D01* X2290Y1770D02* Y1860D01* X2130Y1770D02* Y1860D01* X2020Y1472D02* X2120D01* X2020Y1677D02* X2120D01* X2020Y1472D02* Y1547D01* X2120Y1472D02* Y1547D01* Y1602D02* Y1677D01* X2020Y1602D02* Y1677D01* X2305Y1545D02* Y1605D01* X2395Y1545D02* Y1605D01* Y1445D02* Y1505D01* X2305Y1445D02* Y1505D01* Y1605D02* X2395D01* X2305Y1445D02* X2395D01* X2278Y3012D02* Y3057D01* X2163Y3012D02* Y3057D01* X2258Y3012D02* X2278D01* X2218Y3102D02* X2223D01* X2163Y3012D02* X2183D01* X2125Y1545D02* Y1605D01* X2215Y1545D02* Y1605D01* Y1445D02* Y1505D01* X2125Y1445D02* Y1505D01* Y1605D02* X2215D01* X2125Y1445D02* X2215D01* X2125Y1705D02* Y1765D01* X2215Y1705D02* Y1765D01* Y1605D02* Y1665D01* X2125Y1605D02* Y1665D01* Y1765D02* X2215D01* X2125Y1605D02* X2215D01* Y1705D02* Y1765D01* X2305Y1705D02* Y1765D01* Y1605D02* Y1665D01* X2215Y1605D02* Y1665D01* Y1765D02* X2305D01* X2215Y1605D02* X2305D01* X3210Y1872D02* X3310D01* X3210Y1667D02* X3310D01* Y1797D02* Y1872D01* X3210Y1797D02* Y1872D01* Y1667D02* Y1742D01* X3310Y1667D02* Y1742D01* X2550Y2060D02* X2610D01* X2550Y1970D02* X2610D01* X2450D02* X2510D01* X2450Y2060D02* X2510D01* X2610Y1970D02* Y2060D01* X2450Y1970D02* Y2060D01* X2310Y1817D02* X2410D01* X2310Y1612D02* X2410D01* Y1742D02* Y1817D01* X2310Y1742D02* Y1817D01* Y1612D02* Y1687D01* X2410Y1612D02* Y1687D01* X2782Y1890D02* X2802D01* X2837Y1980D02* X2842D01* X2877Y1890D02* X2897D01* X2782D02* Y1935D01* X2897Y1890D02* Y1935D01* X2955Y1547D02* Y1567D01* X2865Y1602D02* Y1607D01* X2955Y1642D02* Y1662D01* X2910Y1547D02* X2955D01* X2910Y1662D02* X2955D01* X3447Y1890D02* X3467D01* X3408Y1800D02* X3412D01* X3352Y1890D02* X3372D01* X3467Y1845D02* Y1890D01* X3352Y1845D02* Y1890D01* X2407Y1865D02* X2482D01* X2407Y1965D02* X2482D01* X2537D02* X2612D01* X2537Y1865D02* X2612D01* X2407D02* Y1965D01* X2612Y1865D02* Y1965D01* X2990Y1770D02* X3050D01* X2990Y1680D02* X3050D01* X2890D02* X2950D01* X2890Y1770D02* X2950D01* X3050Y1680D02* Y1770D01* X2890Y1680D02* Y1770D01* X2990Y1860D02* X3050D01* X2990Y1770D02* X3050D01* X2890D02* X2950D01* X2890Y1860D02* X2950D01* X3050Y1770D02* Y1860D01* X2890Y1770D02* Y1860D01* X3150Y1970D02* X3210D01* X3150Y1880D02* X3210D01* X3050D02* X3110D01* X3050Y1970D02* X3110D01* X3210Y1880D02* Y1970D01* X3050Y1880D02* Y1970D01* X3080Y2250D02* X3140D01* X3080Y2160D02* X3140D01* X2980D02* X3040D01* X2980Y2250D02* X3040D01* X3140Y2160D02* Y2250D01* X2980Y2160D02* Y2250D01* X3150Y1860D02* X3210D01* X3150Y1770D02* X3210D01* X3050D02* X3110D01* X3050Y1860D02* X3110D01* X3210Y1770D02* Y1860D01* X3050Y1770D02* Y1860D01* X3150Y2060D02* X3210D01* X3150Y1970D02* X3210D01* X3050D02* X3110D01* X3050Y2060D02* X3110D01* X3210Y1970D02* Y2060D01* X3050Y1970D02* Y2060D01* X3615Y2015D02* Y2075D01* X3705Y2015D02* Y2075D01* Y1915D02* Y1975D01* X3615Y1915D02* Y1975D01* Y2075D02* X3705D01* X3615Y1915D02* X3705D01* X3410Y1765D02* X3470D01* X3410Y1675D02* X3470D01* X3310D02* X3370D01* X3310Y1765D02* X3370D01* X3470Y1675D02* Y1765D01* X3310Y1675D02* Y1765D01* X3250Y2252D02* X3310D01* X3250Y2162D02* X3310D01* X3150D02* X3210D01* X3150Y2252D02* X3210D01* X3310Y2162D02* Y2252D01* X3150Y2162D02* Y2252D01* X2630Y1250D02* X2690D01* X2630Y1160D02* X2690D01* X2530D02* X2590D01* X2530Y1250D02* X2590D01* X2690Y1160D02* Y1250D01* X2530Y1160D02* Y1250D01* X1970Y1950D02* X2030D01* X1970Y1860D02* X2030D01* X1870D02* X1930D01* X1870Y1950D02* X1930D01* X2030Y1860D02* Y1950D01* X1870Y1860D02* Y1950D01* X1710Y1770D02* X1770D01* X1710Y1680D02* X1770D01* X1610D02* X1670D01* X1610Y1770D02* X1670D01* X1770Y1680D02* Y1770D01* X1610Y1680D02* Y1770D01* X2525Y1105D02* Y1165D01* X2435Y1105D02* Y1165D01* Y1205D02* Y1265D01* X2525Y1205D02* Y1265D01* X2435Y1105D02* X2525D01* X2435Y1265D02* X2525D01* X2525Y1365D02* Y1425D01* X2615Y1365D02* Y1425D01* Y1265D02* Y1325D01* X2525Y1265D02* Y1325D01* Y1425D02* X2615D01* X2525Y1265D02* X2615D01* X1870Y1680D02* X1930D01* X1870Y1770D02* X1930D01* X1970D02* X2030D01* X1970Y1680D02* X2030D01* X1870D02* Y1770D01* X2030Y1680D02* Y1770D01* X1970Y2040D02* X2030D01* X1970Y1950D02* X2030D01* X1870D02* X1930D01* X1870Y2040D02* X1930D01* X2030Y1950D02* Y2040D01* X1870Y1950D02* Y2040D01* X1705Y1515D02* Y1575D01* X1615Y1515D02* Y1575D01* Y1615D02* Y1675D01* X1705Y1615D02* Y1675D01* X1615Y1515D02* X1705D01* X1615Y1675D02* X1705D01* X1515Y1875D02* Y1935D01* X1605Y1875D02* Y1935D01* Y1775D02* Y1835D01* X1515Y1775D02* Y1835D01* Y1935D02* X1605D01* X1515Y1775D02* X1605D01* X2310Y2519D02* X2370D01* X2310Y2609D02* X2370D01* X2410D02* X2470D01* X2410Y2519D02* X2470D01* X2310D02* Y2609D01* X2470Y2519D02* Y2609D01* X1315Y2524D02* X1375D01* X1315Y2614D02* X1375D01* X1415D02* X1475D01* X1415Y2524D02* X1475D01* X1315D02* Y2614D01* X1475Y2524D02* Y2614D01* X1315Y2619D02* X1375D01* X1315Y2709D02* X1375D01* X1415D02* X1475D01* X1415Y2619D02* X1475D01* X1315D02* Y2709D01* X1475Y2619D02* Y2709D01* X2305Y2714D02* Y2774D01* X2395Y2714D02* Y2774D01* Y2614D02* Y2674D01* X2305Y2614D02* Y2674D01* Y2774D02* X2395D01* X2305Y2614D02* X2395D01* X2550Y1850D02* X2610D01* X2550Y1760D02* X2610D01* X2450D02* X2510D01* X2450Y1850D02* X2510D01* X2610Y1760D02* Y1850D01* X2450Y1760D02* Y1850D01* X3150Y2150D02* X3210D01* X3150Y2060D02* X3210D01* X3050D02* X3110D01* X3050Y2150D02* X3110D01* X3210Y2060D02* Y2150D01* X3050Y2060D02* Y2150D01* X3150Y1770D02* X3210D01* X3150Y1680D02* X3210D01* X3050D02* X3110D01* X3050Y1770D02* X3110D01* X3210Y1680D02* Y1770D01* X3050Y1680D02* Y1770D01* X2615Y1365D02* Y1425D01* X2705Y1365D02* Y1425D01* Y1265D02* Y1325D01* X2615Y1265D02* Y1325D01* Y1425D02* X2705D01* X2615Y1265D02* X2705D01* X1770Y2050D02* X1830D01* X1770Y2140D02* X1830D01* X1870D02* X1930D01* X1870Y2050D02* X1930D01* X1770D02* Y2140D01* X1930Y2050D02* Y2140D01* X1450Y1685D02* X1510D01* X1450Y1775D02* X1510D01* X1550D02* X1610D01* X1550Y1685D02* X1610D01* X1450D02* Y1775D01* X1610Y1685D02* Y1775D01* X2700Y1427D02* X2800D01* X2700Y1222D02* X2800D01* Y1352D02* Y1427D01* X2700Y1352D02* Y1427D01* Y1222D02* Y1297D01* X2800Y1222D02* Y1297D01* X2540Y1147D02* X2640D01* X2540Y942D02* X2640D01* Y1072D02* Y1147D01* X2540Y1072D02* Y1147D01* Y942D02* Y1017D01* X2640Y942D02* Y1017D01* X1770Y1682D02* X1870D01* X1770Y1887D02* X1870D01* X1770Y1682D02* Y1757D01* X1870Y1682D02* Y1757D01* Y1812D02* Y1887D01* X1770Y1812D02* Y1887D01* X1810Y1677D02* X1910D01* X1810Y1472D02* X1910D01* Y1602D02* Y1677D01* X1810Y1602D02* Y1677D01* Y1472D02* Y1547D01* X1910Y1472D02* Y1547D01* X1620Y2057D02* X1720D01* X1620Y1852D02* X1720D01* Y1982D02* Y2057D01* X1620Y1982D02* Y2057D01* Y1852D02* Y1927D01* X1720Y1852D02* Y1927D01* X1710Y1677D02* X1810D01* X1710Y1472D02* X1810D01* Y1602D02* Y1677D01* X1710Y1602D02* Y1677D01* Y1472D02* Y1547D01* X1810Y1472D02* Y1547D01* X2632Y1525D02* Y1625D01* X2427Y1525D02* Y1625D01* X2557Y1525D02* X2632D01* X2557Y1625D02* X2632D01* X2427D02* X2502D01* X2427Y1525D02* X2502D01* X3168Y1565D02* Y1665D01* X3373Y1565D02* Y1665D01* X3168D02* X3243D01* X3168Y1565D02* X3243D01* X3298D02* X3373D01* X3298Y1665D02* X3373D01* X2665Y1557D02* X2710D01* X2665Y1672D02* X2710D01* X2665Y1557D02* Y1577D01* X2755Y1612D02* Y1617D01* X2665Y1652D02* Y1672D01* X1812Y2214D02* Y2259D01* X1927Y2214D02* Y2259D01* X1812D02* X1832D01* X1867Y2169D02* X1872D01* X1907Y2259D02* X1927D01* X1642Y2120D02* Y2165D01* X1757Y2120D02* Y2165D01* X1642D02* X1662D01* X1697Y2075D02* X1702D01* X1737Y2165D02* X1757D01* X2428Y1425D02* Y1525D01* X2633Y1425D02* Y1525D01* X2428D02* X2503D01* X2428Y1425D02* X2503D01* X2558D02* X2633D01* X2558Y1525D02* X2633D01* X1930Y2247D02* X2030D01* X1930Y2042D02* X2030D01* Y2172D02* Y2247D01* X1930Y2172D02* Y2247D01* Y2042D02* Y2117D01* X2030Y2042D02* Y2117D01* X3295Y1985D02* Y2045D01* X3205Y1985D02* Y2045D01* Y2085D02* Y2145D01* X3295Y2085D02* Y2145D01* X3205Y1985D02* X3295D01* X3205Y2145D02* X3295D01* X2750Y2140D02* X2810D01* X2750Y2050D02* X2810D01* X2650D02* X2710D01* X2650Y2140D02* X2710D01* X2810Y2050D02* Y2140D01* X2650Y2050D02* Y2140D01* X2730Y1520D02* X2790D01* X2730Y1430D02* X2790D01* X2630D02* X2690D01* X2630Y1520D02* X2690D01* X2790Y1430D02* Y1520D01* X2630Y1430D02* Y1520D01* X1550Y1685D02* X1610D01* X1550Y1595D02* X1610D01* X1450D02* X1510D01* X1450Y1685D02* X1510D01* X1610Y1595D02* Y1685D01* X1450Y1595D02* Y1685D01* X2435Y1365D02* Y1425D01* X2525Y1365D02* Y1425D01* Y1265D02* Y1325D01* X2435Y1265D02* Y1325D01* Y1425D02* X2525D01* X2435Y1265D02* X2525D01* X1970Y1860D02* X2030D01* X1970Y1770D02* X2030D01* X1870D02* X1930D01* X1870Y1860D02* X1930D01* X2030Y1770D02* Y1860D01* X1870Y1770D02* Y1860D01* X3615Y2235D02* Y2295D01* X3705Y2235D02* Y2295D01* Y2135D02* Y2195D01* X3615Y2135D02* Y2195D01* Y2295D02* X3705D01* X3615Y2135D02* X3705D01* X1710Y1860D02* X1770D01* X1710Y1770D02* X1770D01* X1610D02* X1670D01* X1610Y1860D02* X1670D01* X1770Y1770D02* Y1860D01* X1610Y1770D02* Y1860D01* X1228Y1669D02* X1248D01* X1188Y1579D02* X1193D01* X1133Y1669D02* X1153D01* X1248Y1624D02* Y1669D01* X1133Y1624D02* Y1669D01* X3702Y427D02* Y517D01* X3542Y427D02* Y517D01* X3642Y427D02* X3702D01* X3642Y517D02* X3702D01* X3542D02* X3602D01* X3542Y427D02* X3602D01* X3702Y624D02* Y714D01* X3542Y624D02* Y714D01* X3642Y624D02* X3702D01* X3642Y714D02* X3702D01* X3542D02* X3602D01* X3542Y624D02* X3602D01* X3702Y821D02* Y911D01* X3542Y821D02* Y911D01* X3642Y821D02* X3702D01* X3642Y911D02* X3702D01* X3542D02* X3602D01* X3542Y821D02* X3602D01* X3702Y1018D02* Y1108D01* X3542Y1018D02* Y1108D01* X3642Y1018D02* X3702D01* X3642Y1108D02* X3702D01* X3542D02* X3602D01* X3542Y1018D02* X3602D01* X3702Y1215D02* Y1305D01* X3542Y1215D02* Y1305D01* X3642Y1215D02* X3702D01* X3642Y1305D02* X3702D01* X3542D02* X3602D01* X3542Y1215D02* X3602D01* X3702Y2307D02* Y2397D01* X3542Y2307D02* Y2397D01* X3642Y2307D02* X3702D01* X3642Y2397D02* X3702D01* X3542D02* X3602D01* X3542Y2307D02* X3602D01* X3702Y2514D02* Y2604D01* X3542Y2514D02* Y2604D01* X3642Y2514D02* X3702D01* X3642Y2604D02* X3702D01* X3542D02* X3602D01* X3542Y2514D02* X3602D01* X3702Y2711D02* Y2801D01* X3542Y2711D02* Y2801D01* X3642Y2711D02* X3702D01* X3642Y2801D02* X3702D01* X3542D02* X3602D01* X3542Y2711D02* X3602D01* X3702Y2908D02* Y2998D01* X3542Y2908D02* Y2998D01* X3642Y2908D02* X3702D01* X3642Y2998D02* X3702D01* X3542D02* X3602D01* X3542Y2908D02* X3602D01* X3702Y3105D02* Y3195D01* X3542Y3105D02* Y3195D01* X3642Y3105D02* X3702D01* X3642Y3195D02* X3702D01* X3542D02* X3602D01* X3542Y3105D02* X3602D01* X1825Y3604D02* X1915D01* X1825Y3444D02* X1915D01* Y3544D02* Y3604D01* X1825Y3544D02* Y3604D01* Y3444D02* Y3504D01* X1915Y3444D02* Y3504D01* X2065Y3885D02* X2155D01* X2065Y4045D02* X2155D01* X2065Y3885D02* Y3945D01* X2155Y3885D02* Y3945D01* Y3985D02* Y4045D01* X2065Y3985D02* Y4045D01* X1325Y3447D02* X1415D01* X1325Y3607D02* X1415D01* X1325Y3447D02* Y3507D01* X1415Y3447D02* Y3507D01* Y3547D02* Y3607D01* X1325Y3547D02* Y3607D01* X1415Y4045D02* X1505D01* X1415Y3885D02* X1505D01* Y3985D02* Y4045D01* X1415Y3985D02* Y4045D01* Y3885D02* Y3945D01* X1505Y3885D02* Y3945D01* X609Y1668D02* X669D01* X609Y1758D02* X669D01* X709D02* X769D01* X709Y1668D02* X769D01* X609D02* Y1758D01* X769Y1668D02* Y1758D01* X2435Y1034D02* Y1094D01* X2525Y1034D02* Y1094D01* Y934D02* Y994D01* X2435Y934D02* Y994D01* Y1094D02* X2525D01* X2435Y934D02* X2525D01* X445Y3640D02* Y3700D01* X535Y3640D02* Y3700D01* Y3540D02* Y3600D01* X445Y3540D02* Y3600D01* Y3700D02* X535D01* X445Y3540D02* X535D01* X535Y547D02* Y607D01* X445Y547D02* Y607D01* Y647D02* Y707D01* X535Y647D02* Y707D01* X445Y547D02* X535D01* X445Y707D02* X535D01* X625Y547D02* Y607D01* X535Y547D02* Y607D01* Y647D02* Y707D01* X625Y647D02* Y707D01* X535Y547D02* X625D01* X535Y707D02* X625D01* X315Y664D02* Y684D01* X405Y624D02* Y629D01* X315Y569D02* Y589D01* Y684D02* X360D01* X315Y569D02* X360D01* X638Y537D02* Y637D01* X843Y537D02* Y637D01* X638D02* X713D01* X638Y537D02* X713D01* X768D02* X843D01* X768Y637D02* X843D01* X960Y632D02* X1020D01* X960Y542D02* X1020D01* X860D02* X920D01* X860Y632D02* X920D01* X1020Y542D02* Y632D01* X860Y542D02* Y632D01* X1200Y319D02* X1300D01* X1200Y114D02* X1300D01* Y244D02* Y319D01* X1200Y244D02* Y319D01* Y114D02* Y189D01* X1300Y114D02* Y189D01* X1515Y117D02* Y177D01* X1425Y117D02* Y177D01* Y217D02* Y277D01* X1515Y217D02* Y277D01* X1425Y117D02* X1515D01* X1425Y277D02* X1515D01* X990Y1062D02* X1050D01* X990Y972D02* X1050D01* X890D02* X950D01* X890Y1062D02* X950D01* X1050Y972D02* Y1062D01* X890Y972D02* Y1062D01* X1425Y117D02* Y177D01* X1335Y117D02* Y177D01* Y217D02* Y277D01* X1425Y217D02* Y277D01* X1335Y117D02* X1425D01* X1335Y277D02* X1425D01* X2162Y1350D02* Y1450D01* X2397Y1350D02* Y1450D01* X2162D02* X2237D01* X2162Y1350D02* X2237D01* X2322D02* X2397D01* X2322Y1450D02* X2397D01* X1865Y3842D02* X1955D01* X1865Y4032D02* X1955D01* X1865Y3842D02* Y3917D01* X1955Y3842D02* Y3917D01* Y3957D02* Y4032D01* X1865Y3957D02* Y4032D01* X1995Y3602D02* X2085D01* X1995Y3412D02* X2085D01* Y3527D02* Y3602D01* X1995Y3527D02* Y3602D01* Y3412D02* Y3487D01* X2085Y3412D02* Y3487D01* X1525Y3515D02* X1615D01* X1525Y3325D02* X1615D01* Y3440D02* Y3515D01* X1525Y3440D02* Y3515D01* Y3325D02* Y3400D01* X1615Y3325D02* Y3400D01* X1080Y2137D02* X1280D01* Y2437D01* X1080Y2137D02* Y2437D01* X1280D01* X1080Y2337D02* X1180D01* Y2437D01* X1475Y2707D02* X1565D01* X1475Y2867D02* X1565D01* X1475Y2707D02* Y2767D01* X1565Y2707D02* Y2767D01* Y2807D02* Y2867D01* X1475Y2807D02* Y2867D01* X3037Y1885D02* Y1930D01* X2922Y1885D02* Y1930D01* X3017Y1885D02* X3037D01* X2977Y1975D02* X2982D01* X2922Y1885D02* X2942D01* X1775Y2045D02* X1865D01* X1775Y1885D02* X1865D01* Y1985D02* Y2045D01* X1775Y1985D02* Y2045D01* Y1885D02* Y1945D01* X1865Y1885D02* Y1945D01* D82* X-396Y6436D02* Y6411D01* Y6423D01* X-379D01* Y6436D01* Y6411D01* X-354Y6436D02* X-371D01* Y6411D01* X-354D01* X-371Y6423D02* X-363D01* X-346Y6411D02* Y6428D01* X-338Y6436D01* X-329Y6428D01* Y6411D01* Y6423D01* X-346D01* X-321Y6436D02* Y6411D01* X-309D01* X-304Y6415D01* Y6432D01* X-309Y6436D01* X-321D01* X767Y3420D02* X784D01* Y3416D01* X767Y3399D01* Y3395D01* X784D01* X792Y3420D02* Y3395D01* X804D01* X809Y3399D01* Y3403D01* X804Y3408D01* X792D01* X804D01* X809Y3412D01* Y3416D01* X804Y3420D01* X792D01* X829Y3395D02* Y3420D01* X817Y3408D01* X834D01* X3228Y4109D02* X3244D01* Y4105D01* X3228Y4088D01* Y4084D01* X3244D01* X3253Y4109D02* Y4084D01* X3265D01* X3269Y4088D01* Y4093D01* X3265Y4097D01* X3253D01* X3265D01* X3269Y4101D01* Y4105D01* X3265Y4109D01* X3253D01* X3278Y4105D02* X3282Y4109D01* X3290D01* X3294Y4105D01* Y4101D01* X3290Y4097D01* X3286D01* X3290D01* X3294Y4093D01* Y4088D01* X3290Y4084D01* X3282D01* X3278Y4088D01* X2799Y491D02* X2816D01* Y487D01* X2799Y471D01* Y466D01* X2816D01* X2824Y491D02* Y466D01* X2837D01* X2841Y471D01* Y475D01* X2837Y479D01* X2824D01* X2837D01* X2841Y483D01* Y487D01* X2837Y491D01* X2824D01* X2866Y466D02* X2849D01* X2866Y483D01* Y487D01* X2862Y491D01* X2854D01* X2849Y487D01* X78Y566D02* X95D01* Y562D01* X78Y545D01* Y541D01* X95D01* X103Y566D02* Y541D01* X115D01* X120Y545D01* Y549D01* X115Y553D01* X103D01* X115D01* X120Y557D01* Y562D01* X115Y566D01* X103D01* X128Y541D02* X136D01* X132D01* Y566D01* X128Y562D01* X1093Y1900D02* Y1880D01* X1097Y1875D01* X1105D01* X1109Y1880D01* Y1900D01* X1134Y1875D02* X1118D01* X1134Y1892D01* Y1896D01* X1130Y1900D01* X1122D01* X1118Y1896D01* X1143D02* X1147Y1900D01* X1155D01* X1159Y1896D01* Y1880D01* X1155Y1875D01* X1147D01* X1143Y1880D01* Y1896D01* X1184Y1875D02* X1168D01* X1184Y1892D01* Y1896D01* X1180Y1900D01* X1172D01* X1168Y1896D01* X2883Y2060D02* X2858D01* Y2073D01* X2862Y2077D01* X2870D01* X2874Y2073D01* Y2060D01* Y2069D02* X2883Y2077D01* Y2102D02* Y2085D01* X2866Y2102D01* X2862D01* X2858Y2098D01* Y2089D01* X2862Y2085D01* X2858Y2127D02* X2862Y2119D01* X2870Y2110D01* X2879D01* X2883Y2114D01* Y2123D01* X2879Y2127D01* X2874D01* X2870Y2123D01* Y2110D01* X2862Y2135D02* X2858Y2139D01* Y2148D01* X2862Y2152D01* X2879D01* X2883Y2148D01* Y2139D01* X2879Y2135D01* X2862D01* X3045Y1575D02* Y1600D01* X3057D01* X3062Y1595D01* Y1587D01* X3057Y1583D01* X3045D01* X3053D02* X3062Y1575D01* X3087D02* X3070D01* X3087Y1591D01* Y1595D01* X3082Y1600D01* X3074D01* X3070Y1595D01* X3112Y1600D02* X3095D01* Y1587D01* X3103Y1591D01* X3107D01* X3112Y1587D01* Y1579D01* X3107Y1575D01* X3099D01* X3095Y1579D01* X3120D02* X3124Y1575D01* X3132D01* X3137Y1579D01* Y1595D01* X3132Y1600D01* X3124D01* X3120Y1595D01* Y1591D01* X3124Y1587D01* X3137D01* X3005Y2035D02* X2980D01* Y2047D01* X2984Y2052D01* X2993D01* X2997Y2047D01* Y2035D01* Y2043D02* X3005Y2052D01* Y2077D02* Y2060D01* X2988Y2077D01* X2984D01* X2980Y2072D01* Y2064D01* X2984Y2060D01* X2980Y2102D02* Y2085D01* X2993D01* X2988Y2093D01* Y2097D01* X2993Y2102D01* X3001D01* X3005Y2097D01* Y2089D01* X3001Y2085D01* X2984Y2110D02* X2980Y2114D01* Y2122D01* X2984Y2127D01* X2988D01* X2993Y2122D01* X2997Y2127D01* X3001D01* X3005Y2122D01* Y2114D01* X3001Y2110D01* X2997D01* X2993Y2114D01* X2988Y2110D01* X2984D01* X2993Y2114D02* Y2122D01* X2859Y1715D02* X2834D01* Y1727D01* X2838Y1732D01* X2847D01* X2851Y1727D01* Y1715D01* Y1723D02* X2859Y1732D01* Y1757D02* Y1740D01* X2843Y1757D01* X2838D01* X2834Y1752D01* Y1744D01* X2838Y1740D01* X2834Y1782D02* Y1765D01* X2847D01* X2843Y1773D01* Y1777D01* X2847Y1782D01* X2855D01* X2859Y1777D01* Y1769D01* X2855Y1765D01* X2834Y1790D02* Y1807D01* X2838D01* X2855Y1790D01* X2859D01* X1678Y2210D02* X1653D01* Y2222D01* X1657Y2226D01* X1666D01* X1670Y2222D01* Y2210D01* Y2218D02* X1678Y2226D01* Y2251D02* Y2235D01* X1661Y2251D01* X1657D01* X1653Y2247D01* Y2239D01* X1657Y2235D01* X1653Y2276D02* Y2260D01* X1666D01* X1661Y2268D01* Y2272D01* X1666Y2276D01* X1674D01* X1678Y2272D01* Y2264D01* X1674Y2260D01* X1653Y2301D02* X1657Y2293D01* X1666Y2285D01* X1674D01* X1678Y2289D01* Y2297D01* X1674Y2301D01* X1670D01* X1666Y2297D01* Y2285D01* X1774Y2210D02* X1749D01* Y2222D01* X1754Y2226D01* X1762D01* X1766Y2222D01* Y2210D01* Y2218D02* X1774Y2226D01* Y2251D02* Y2235D01* X1758Y2251D01* X1754D01* X1749Y2247D01* Y2239D01* X1754Y2235D01* X1749Y2276D02* Y2260D01* X1762D01* X1758Y2268D01* Y2272D01* X1762Y2276D01* X1770D01* X1774Y2272D01* Y2264D01* X1770Y2260D01* X1749Y2301D02* Y2285D01* X1762D01* X1758Y2293D01* Y2297D01* X1762Y2301D01* X1770D01* X1774Y2297D01* Y2289D01* X1770Y2285D01* X969Y1886D02* X965Y1882D01* Y1874D01* X969Y1870D01* X986D01* X990Y1874D01* Y1882D01* X986Y1886D01* X990Y1911D02* Y1895D01* X973Y1911D01* X969D01* X965Y1907D01* Y1899D01* X969Y1895D01* X990Y1920D02* Y1928D01* Y1924D01* X965D01* X969Y1920D01* X990Y1953D02* X965D01* X978Y1940D01* Y1957D01* X1918Y2590D02* Y2570D01* X1922Y2565D01* X1930D01* X1934Y2570D01* Y2590D01* X1959Y2565D02* X1943D01* X1959Y2582D01* Y2586D01* X1955Y2590D01* X1947D01* X1943Y2586D01* X1968D02* X1972Y2590D01* X1980D01* X1984Y2586D01* Y2570D01* X1980Y2565D01* X1972D01* X1968Y2570D01* Y2586D01* X1993D02* X1997Y2590D01* X2005D01* X2009Y2586D01* Y2570D01* X2005Y2565D01* X1997D01* X1993Y2570D01* Y2586D01* X2905Y3182D02* X2901Y3178D01* Y3169D01* X2905Y3165D01* X2921D01* X2926Y3169D01* Y3178D01* X2921Y3182D01* X2926Y3190D02* Y3199D01* Y3194D01* X2901D01* X2905Y3190D01* Y3211D02* X2901Y3215D01* Y3224D01* X2905Y3228D01* X2921D01* X2926Y3224D01* Y3215D01* X2921Y3211D01* X2905D01* Y3236D02* X2901Y3240D01* Y3249D01* X2905Y3253D01* X2921D01* X2926Y3249D01* Y3240D01* X2921Y3236D01* X2905D01* X3269Y2674D02* X3265Y2670D01* Y2662D01* X3269Y2657D01* X3286D01* X3290Y2662D01* Y2670D01* X3286Y2674D01* X3290Y2682D02* Y2691D01* Y2687D01* X3265D01* X3269Y2682D01* Y2703D02* X3265Y2707D01* Y2716D01* X3269Y2720D01* X3286D01* X3290Y2716D01* Y2707D01* X3286Y2703D01* X3269D01* X3290Y2728D02* Y2737D01* Y2732D01* X3265D01* X3269Y2728D01* X3269Y2877D02* X3265Y2873D01* Y2864D01* X3269Y2860D01* X3286D01* X3290Y2864D01* Y2873D01* X3286Y2877D01* X3290Y2885D02* Y2893D01* Y2889D01* X3265D01* X3269Y2885D01* Y2906D02* X3265Y2910D01* Y2918D01* X3269Y2923D01* X3286D01* X3290Y2918D01* Y2910D01* X3286Y2906D01* X3269D01* X3290Y2948D02* Y2931D01* X3273Y2948D01* X3269D01* X3265Y2943D01* Y2935D01* X3269Y2931D01* X2977Y1495D02* X2972Y1500D01* X2964D01* X2960Y1495D01* Y1479D01* X2964Y1475D01* X2972D01* X2977Y1479D01* X2985Y1475D02* X2993D01* X2989D01* Y1500D01* X2985Y1495D01* X3006D02* X3010Y1500D01* X3018D01* X3022Y1495D01* Y1479D01* X3018Y1475D01* X3010D01* X3006Y1479D01* Y1495D01* X3031D02* X3035Y1500D01* X3043D01* X3047Y1495D01* Y1491D01* X3043Y1487D01* X3039D01* X3043D01* X3047Y1483D01* Y1479D01* X3043Y1475D01* X3035D01* X3031Y1479D01* X3320Y790D02* X3316Y786D01* Y777D01* X3320Y773D01* X3336D01* X3340Y777D01* Y786D01* X3336Y790D01* X3340Y798D02* Y806D01* Y802D01* X3316D01* X3320Y798D01* Y819D02* X3316Y823D01* Y831D01* X3320Y836D01* X3336D01* X3340Y831D01* Y823D01* X3336Y819D01* X3320D01* X3340Y856D02* X3316D01* X3328Y844D01* Y861D01* X3320Y997D02* X3315Y993D01* Y984D01* X3320Y980D01* X3336D01* X3340Y984D01* Y993D01* X3336Y997D01* X3340Y1005D02* Y1014D01* Y1009D01* X3315D01* X3320Y1005D01* Y1026D02* X3315Y1030D01* Y1039D01* X3320Y1043D01* X3336D01* X3340Y1039D01* Y1030D01* X3336Y1026D01* X3320D01* X3315Y1068D02* Y1051D01* X3328D01* X3324Y1059D01* Y1064D01* X3328Y1068D01* X3336D01* X3340Y1064D01* Y1055D01* X3336Y1051D01* X3284Y3161D02* X3280Y3165D01* X3272D01* X3268Y3161D01* Y3144D01* X3272Y3140D01* X3280D01* X3284Y3144D01* X3293Y3140D02* X3301D01* X3297D01* Y3165D01* X3293Y3161D01* X3314D02* X3318Y3165D01* X3326D01* X3330Y3161D01* Y3144D01* X3326Y3140D01* X3318D01* X3314Y3144D01* Y3161D01* X3355Y3165D02* X3347Y3161D01* X3339Y3152D01* Y3144D01* X3343Y3140D01* X3351D01* X3355Y3144D01* Y3148D01* X3351Y3152D01* X3339D01* X3284Y3072D02* X3280Y3076D01* X3272D01* X3268Y3072D01* Y3055D01* X3272Y3051D01* X3280D01* X3284Y3055D01* X3293Y3051D02* X3301D01* X3297D01* Y3076D01* X3293Y3072D01* X3314D02* X3318Y3076D01* X3326D01* X3330Y3072D01* Y3055D01* X3326Y3051D01* X3318D01* X3314Y3055D01* Y3072D01* X3339Y3076D02* X3355D01* Y3072D01* X3339Y3055D01* Y3051D01* X3412Y2363D02* X3408Y2368D01* X3400D01* X3396Y2363D01* Y2347D01* X3400Y2343D01* X3408D01* X3412Y2347D01* X3421Y2343D02* X3429D01* X3425D01* Y2368D01* X3421Y2363D01* X3441D02* X3446Y2368D01* X3454D01* X3458Y2363D01* Y2347D01* X3454Y2343D01* X3446D01* X3441Y2347D01* Y2363D01* X3466D02* X3471Y2368D01* X3479D01* X3483Y2363D01* Y2359D01* X3479Y2355D01* X3483Y2351D01* Y2347D01* X3479Y2343D01* X3471D01* X3466Y2347D01* Y2351D01* X3471Y2355D01* X3466Y2359D01* Y2363D01* X3471Y2355D02* X3479D01* X3275Y1281D02* X3271Y1285D01* X3263D01* X3259Y1281D01* Y1264D01* X3263Y1260D01* X3271D01* X3275Y1264D01* X3284Y1260D02* X3292D01* X3288D01* Y1285D01* X3284Y1281D01* X3305D02* X3309Y1285D01* X3317D01* X3321Y1281D01* Y1264D01* X3317Y1260D01* X3309D01* X3305Y1264D01* Y1281D01* X3330Y1264D02* X3334Y1260D01* X3342D01* X3346Y1264D01* Y1281D01* X3342Y1285D01* X3334D01* X3330Y1281D01* Y1276D01* X3334Y1272D01* X3346D01* X3427Y1188D02* X3423Y1192D01* X3414D01* X3410Y1188D01* Y1171D01* X3414Y1167D01* X3423D01* X3427Y1171D01* X3435Y1167D02* X3444D01* X3439D01* Y1192D01* X3435Y1188D01* X3456Y1167D02* X3464D01* X3460D01* Y1192D01* X3456Y1188D01* X3477D02* X3481Y1192D01* X3489D01* X3494Y1188D01* Y1171D01* X3489Y1167D01* X3481D01* X3477Y1171D01* Y1188D01* X3375Y481D02* X3371Y485D01* X3363D01* X3359Y481D01* Y464D01* X3363Y460D01* X3371D01* X3375Y464D01* X3384Y460D02* X3392D01* X3388D01* Y485D01* X3384Y481D01* X3404Y460D02* X3413D01* X3409D01* Y485D01* X3404Y481D01* X3425Y460D02* X3434D01* X3429D01* Y485D01* X3425Y481D01* X912Y1576D02* X908Y1580D01* X900D01* X896Y1576D01* Y1559D01* X900Y1555D01* X908D01* X912Y1559D01* X921Y1555D02* X929D01* X925D01* Y1580D01* X921Y1576D01* X941Y1555D02* X950D01* X946D01* Y1580D01* X941Y1576D01* X979Y1555D02* X962D01* X979Y1572D01* Y1576D01* X975Y1580D01* X966D01* X962Y1576D01* X1055Y1599D02* X1051Y1595D01* Y1586D01* X1055Y1582D01* X1072D01* X1076Y1586D01* Y1595D01* X1072Y1599D01* X1076Y1607D02* Y1616D01* Y1611D01* X1051D01* X1055Y1607D01* X1076Y1628D02* Y1636D01* Y1632D01* X1051D01* X1055Y1628D01* Y1649D02* X1051Y1653D01* Y1661D01* X1055Y1665D01* X1059D01* X1063Y1661D01* Y1657D01* Y1661D01* X1067Y1665D01* X1072D01* X1076Y1661D01* Y1653D01* X1072Y1649D01* X827Y4028D02* X822Y4032D01* X814D01* X810Y4028D01* Y4011D01* X814Y4007D01* X822D01* X827Y4011D01* X835Y4007D02* X843D01* X839D01* Y4032D01* X835Y4028D01* X856Y4007D02* X864D01* X860D01* Y4032D01* X856Y4028D01* X889Y4007D02* Y4032D01* X877Y4019D01* X893D01* X1202Y675D02* X1197Y670D01* Y662D01* X1202Y658D01* X1218D01* X1222Y662D01* Y670D01* X1218Y675D01* X1222Y683D02* Y691D01* Y687D01* X1197D01* X1202Y683D01* X1222Y704D02* Y712D01* Y708D01* X1197D01* X1202Y704D01* X1197Y741D02* Y725D01* X1210D01* X1206Y733D01* Y737D01* X1210Y741D01* X1218D01* X1222Y737D01* Y729D01* X1218Y725D01* X2264Y1496D02* X2260Y1492D01* Y1484D01* X2264Y1480D01* X2281D01* X2285Y1484D01* Y1492D01* X2281Y1496D01* X2285Y1521D02* Y1505D01* X2268Y1521D01* X2264D01* X2260Y1517D01* Y1509D01* X2264Y1505D01* Y1530D02* X2260Y1534D01* Y1542D01* X2264Y1546D01* X2281D01* X2285Y1542D01* Y1534D01* X2281Y1530D01* X2264D01* X2285Y1555D02* Y1563D01* Y1559D01* X2260D01* X2264Y1555D01* X2181Y2003D02* X2177Y2007D01* X2169D01* X2164Y2003D01* Y1986D01* X2169Y1982D01* X2177D01* X2181Y1986D01* X2206Y1982D02* X2189D01* X2206Y1999D01* Y2003D01* X2202Y2007D01* X2194D01* X2189Y2003D01* X2214D02* X2219Y2007D01* X2227D01* X2231Y2003D01* Y1986D01* X2227Y1982D01* X2219D01* X2214Y1986D01* Y2003D01* X2256Y1982D02* X2239D01* X2256Y1999D01* Y2003D01* X2252Y2007D01* X2244D01* X2239Y2003D01* X2181Y1823D02* X2177Y1827D01* X2169D01* X2164Y1823D01* Y1806D01* X2169Y1802D01* X2177D01* X2181Y1806D01* X2206Y1802D02* X2189D01* X2206Y1819D01* Y1823D01* X2202Y1827D01* X2194D01* X2189Y1823D01* X2214D02* X2219Y1827D01* X2227D01* X2231Y1823D01* Y1806D01* X2227Y1802D01* X2219D01* X2214Y1806D01* Y1823D01* X2239Y1827D02* X2256D01* Y1823D01* X2239Y1806D01* Y1802D01* X2333Y2195D02* X2328Y2199D01* X2320D01* X2316Y2195D01* Y2178D01* X2320Y2174D01* X2328D01* X2333Y2178D01* X2358Y2174D02* X2341D01* X2358Y2191D01* Y2195D01* X2353Y2199D01* X2345D01* X2341Y2195D01* X2366D02* X2370Y2199D01* X2378D01* X2383Y2195D01* Y2178D01* X2378Y2174D01* X2370D01* X2366Y2178D01* Y2195D01* X2391D02* X2395Y2199D01* X2403D01* X2408Y2195D01* Y2191D01* X2403Y2186D01* X2408Y2182D01* Y2178D01* X2403Y2174D01* X2395D01* X2391Y2178D01* Y2182D01* X2395Y2186D01* X2391Y2191D01* Y2195D01* X2395Y2186D02* X2403D01* X2077Y3062D02* X2073Y3057D01* Y3049D01* X2077Y3045D01* X2094D01* X2098Y3049D01* Y3057D01* X2094Y3062D01* X2098Y3087D02* Y3070D01* X2081Y3087D01* X2077D01* X2073Y3082D01* Y3074D01* X2077Y3070D01* X2098Y3095D02* Y3103D01* Y3099D01* X2073D01* X2077Y3095D01* X2098Y3132D02* Y3116D01* X2081Y3132D01* X2077D01* X2073Y3128D01* Y3120D01* X2077Y3116D01* X1635Y3226D02* X1631Y3230D01* X1623D01* X1618Y3226D01* Y3210D01* X1623Y3205D01* X1631D01* X1635Y3210D01* X1660Y3205D02* X1643D01* X1660Y3222D01* Y3226D01* X1656Y3230D01* X1648D01* X1643Y3226D01* X1668Y3205D02* X1677D01* X1673D01* Y3230D01* X1668Y3226D01* X1689D02* X1693Y3230D01* X1702D01* X1706Y3226D01* Y3222D01* X1702Y3218D01* X1698D01* X1702D01* X1706Y3214D01* Y3210D01* X1702Y3205D01* X1693D01* X1689Y3210D01* X3167Y2641D02* X3192D01* Y2653D01* X3188Y2657D01* X3171D01* X3167Y2653D01* Y2641D01* X3171Y2682D02* X3167Y2678D01* Y2670D01* X3171Y2666D01* X3175D01* X3180Y2670D01* Y2678D01* X3184Y2682D01* X3188D01* X3192Y2678D01* Y2670D01* X3188Y2666D01* X3192Y2691D02* Y2699D01* Y2695D01* X3167D01* X3171Y2691D01* Y2712D02* X3167Y2716D01* Y2724D01* X3171Y2728D01* X3188D01* X3192Y2724D01* Y2716D01* X3188Y2712D01* X3171D01* Y2737D02* X3167Y2741D01* Y2749D01* X3171Y2753D01* X3188D01* X3192Y2749D01* Y2741D01* X3188Y2737D01* X3171D01* X3227Y764D02* X3252D01* Y777D01* X3248Y781D01* X3231D01* X3227Y777D01* Y764D01* X3231Y806D02* X3227Y802D01* Y794D01* X3231Y789D01* X3235D01* X3240Y794D01* Y802D01* X3244Y806D01* X3248D01* X3252Y802D01* Y794D01* X3248Y789D01* X3252Y814D02* Y823D01* Y819D01* X3227D01* X3231Y814D01* Y835D02* X3227Y839D01* Y848D01* X3231Y852D01* X3248D01* X3252Y848D01* Y839D01* X3248Y835D01* X3231D01* X3252Y860D02* Y869D01* Y864D01* X3227D01* X3231Y860D01* X699Y1482D02* Y1457D01* X711D01* X715Y1461D01* Y1478D01* X711Y1482D01* X699D01* X740Y1478D02* X736Y1482D01* X728D01* X724Y1478D01* Y1473D01* X728Y1469D01* X736D01* X740Y1465D01* Y1461D01* X736Y1457D01* X728D01* X724Y1461D01* X749Y1457D02* X757D01* X753D01* Y1482D01* X749Y1478D01* X770D02* X774Y1482D01* X782D01* X786Y1478D01* Y1461D01* X782Y1457D01* X774D01* X770Y1461D01* Y1478D01* X811Y1457D02* X795D01* X811Y1473D01* Y1478D01* X807Y1482D01* X799D01* X795Y1478D01* X652Y1617D02* Y1592D01* X665D01* X669Y1596D01* Y1613D01* X665Y1617D01* X652D01* X694Y1613D02* X690Y1617D01* X681D01* X677Y1613D01* Y1608D01* X681Y1604D01* X690D01* X694Y1600D01* Y1596D01* X690Y1592D01* X681D01* X677Y1596D01* X702Y1592D02* X710D01* X706D01* Y1617D01* X702Y1613D01* X723D02* X727Y1617D01* X735D01* X740Y1613D01* Y1596D01* X735Y1592D01* X727D01* X723Y1596D01* Y1613D01* X748D02* X752Y1617D01* X760D01* X765Y1613D01* Y1608D01* X760Y1604D01* X756D01* X760D01* X765Y1600D01* Y1596D01* X760Y1592D01* X752D01* X748Y1596D01* X1132Y1619D02* Y1594D01* X1144D01* X1149Y1599D01* Y1615D01* X1144Y1619D01* X1132D01* X1174Y1615D02* X1169Y1619D01* X1161D01* X1157Y1615D01* Y1611D01* X1161Y1607D01* X1169D01* X1174Y1603D01* Y1599D01* X1169Y1594D01* X1161D01* X1157Y1599D01* X1182Y1594D02* X1190D01* X1186D01* Y1619D01* X1182Y1615D01* X1203D02* X1207Y1619D01* X1215D01* X1219Y1615D01* Y1599D01* X1215Y1594D01* X1207D01* X1203Y1599D01* Y1615D01* X1244Y1619D02* X1228D01* Y1607D01* X1236Y1611D01* X1240D01* X1244Y1607D01* Y1599D01* X1240Y1594D01* X1232D01* X1228Y1599D01* X1107Y1398D02* X1132D01* Y1410D01* X1128Y1414D01* X1111D01* X1107Y1410D01* Y1398D01* X1111Y1439D02* X1107Y1435D01* Y1427D01* X1111Y1423D01* X1115D01* X1119Y1427D01* Y1435D01* X1124Y1439D01* X1128D01* X1132Y1435D01* Y1427D01* X1128Y1423D01* X1132Y1448D02* Y1456D01* Y1452D01* X1107D01* X1111Y1448D01* Y1468D02* X1107Y1473D01* Y1481D01* X1111Y1485D01* X1128D01* X1132Y1481D01* Y1473D01* X1128Y1468D01* X1111D01* X1107Y1510D02* X1111Y1502D01* X1119Y1493D01* X1128D01* X1132Y1498D01* Y1506D01* X1128Y1510D01* X1124D01* X1119Y1506D01* Y1493D01* X1475Y1459D02* X1500D01* Y1471D01* X1496Y1475D01* X1479D01* X1475Y1471D01* Y1459D01* X1479Y1500D02* X1475Y1496D01* Y1488D01* X1479Y1484D01* X1483D01* X1488Y1488D01* Y1496D01* X1492Y1500D01* X1496D01* X1500Y1496D01* Y1488D01* X1496Y1484D01* X1500Y1509D02* Y1517D01* Y1513D01* X1475D01* X1479Y1509D01* Y1529D02* X1475Y1534D01* Y1542D01* X1479Y1546D01* X1496D01* X1500Y1542D01* Y1534D01* X1496Y1529D01* X1479D01* X1475Y1554D02* Y1571D01* X1479D01* X1496Y1554D01* X1500D01* X2345Y1685D02* X2370D01* Y1697D01* X2366Y1701D01* X2349D01* X2345Y1697D01* Y1685D01* X2349Y1726D02* X2345Y1722D01* Y1714D01* X2349Y1710D01* X2353D01* X2358Y1714D01* Y1722D01* X2362Y1726D01* X2366D01* X2370Y1722D01* Y1714D01* X2366Y1710D01* X2370Y1751D02* Y1735D01* X2353Y1751D01* X2349D01* X2345Y1747D01* Y1739D01* X2349Y1735D01* Y1760D02* X2345Y1764D01* Y1772D01* X2349Y1776D01* X2366D01* X2370Y1772D01* Y1764D01* X2366Y1760D01* X2349D01* Y1785D02* X2345Y1789D01* Y1797D01* X2349Y1801D01* X2366D01* X2370Y1797D01* Y1789D01* X2366Y1785D01* X2349D01* X2060Y2080D02* X2085D01* Y2092D01* X2081Y2096D01* X2064D01* X2060Y2092D01* Y2080D01* X2064Y2121D02* X2060Y2117D01* Y2109D01* X2064Y2105D01* X2068D01* X2073Y2109D01* Y2117D01* X2077Y2121D01* X2081D01* X2085Y2117D01* Y2109D01* X2081Y2105D01* X2085Y2146D02* Y2130D01* X2068Y2146D01* X2064D01* X2060Y2142D01* Y2134D01* X2064Y2130D01* Y2155D02* X2060Y2159D01* Y2167D01* X2064Y2171D01* X2081D01* X2085Y2167D01* Y2159D01* X2081Y2155D01* X2064D01* X2085Y2180D02* Y2188D01* Y2184D01* X2060D01* X2064Y2180D01* X1542Y2008D02* X1567D01* Y2020D01* X1563Y2024D01* X1546D01* X1542Y2020D01* Y2008D01* X1546Y2049D02* X1542Y2045D01* Y2037D01* X1546Y2033D01* X1550D01* X1555Y2037D01* Y2045D01* X1559Y2049D01* X1563D01* X1567Y2045D01* Y2037D01* X1563Y2033D01* X1567Y2074D02* Y2058D01* X1550Y2074D01* X1546D01* X1542Y2070D01* Y2062D01* X1546Y2058D01* Y2083D02* X1542Y2087D01* Y2095D01* X1546Y2099D01* X1563D01* X1567Y2095D01* Y2087D01* X1563Y2083D01* X1546D01* X1567Y2124D02* Y2108D01* X1550Y2124D01* X1546D01* X1542Y2120D01* Y2112D01* X1546Y2108D01* X2159Y3155D02* Y3130D01* X2172D01* X2176Y3134D01* Y3151D01* X2172Y3155D01* X2159D01* X2201Y3151D02* X2197Y3155D01* X2189D01* X2184Y3151D01* Y3147D01* X2189Y3142D01* X2197D01* X2201Y3138D01* Y3134D01* X2197Y3130D01* X2189D01* X2184Y3134D01* X2226Y3130D02* X2209D01* X2226Y3147D01* Y3151D01* X2222Y3155D01* X2214D01* X2209Y3151D01* X2234D02* X2239Y3155D01* X2247D01* X2251Y3151D01* Y3134D01* X2247Y3130D01* X2239D01* X2234Y3134D01* Y3151D01* X2276Y3155D02* X2259D01* Y3142D01* X2268Y3147D01* X2272D01* X2276Y3142D01* Y3134D01* X2272Y3130D01* X2264D01* X2259Y3134D01* X2501Y2349D02* Y2324D01* X2513D01* X2518Y2328D01* Y2344D01* X2513Y2349D01* X2501D01* X2543Y2344D02* X2538Y2349D01* X2530D01* X2526Y2344D01* Y2340D01* X2530Y2336D01* X2538D01* X2543Y2332D01* Y2328D01* X2538Y2324D01* X2530D01* X2526Y2328D01* X2568Y2324D02* X2551D01* X2568Y2340D01* Y2344D01* X2563Y2349D01* X2555D01* X2551Y2344D01* X2576D02* X2580Y2349D01* X2588D01* X2593Y2344D01* Y2328D01* X2588Y2324D01* X2580D01* X2576Y2328D01* Y2344D01* X2618Y2349D02* X2609Y2344D01* X2601Y2336D01* Y2328D01* X2605Y2324D01* X2613D01* X2618Y2328D01* Y2332D01* X2613Y2336D01* X2601D01* X3553Y3352D02* Y3327D01* X3566D01* X3570Y3331D01* Y3348D01* X3566Y3352D01* X3553D01* X3578D02* X3595D01* X3586D01* Y3327D01* X3603D02* X3611D01* X3607D01* Y3352D01* X3603Y3348D01* X3624D02* X3628Y3352D01* X3636D01* X3641Y3348D01* Y3331D01* X3636Y3327D01* X3628D01* X3624Y3331D01* Y3348D01* X3649D02* X3653Y3352D01* X3661D01* X3666Y3348D01* Y3331D01* X3661Y3327D01* X3653D01* X3649Y3331D01* Y3348D01* X3553Y3549D02* Y3524D01* X3566D01* X3570Y3528D01* Y3544D01* X3566Y3549D01* X3553D01* X3578D02* X3595D01* X3586D01* Y3524D01* X3603D02* X3611D01* X3607D01* Y3549D01* X3603Y3544D01* X3624D02* X3628Y3549D01* X3636D01* X3641Y3544D01* Y3528D01* X3636Y3524D01* X3628D01* X3624Y3528D01* Y3544D01* X3649Y3524D02* X3657D01* X3653D01* Y3549D01* X3649Y3544D01* X3543Y3745D02* Y3720D01* X3556D01* X3560Y3725D01* Y3741D01* X3556Y3745D01* X3543D01* X3568D02* X3585D01* X3577D01* Y3720D01* X3593D02* X3602D01* X3597D01* Y3745D01* X3593Y3741D01* X3614D02* X3618Y3745D01* X3627D01* X3631Y3741D01* Y3725D01* X3627Y3720D01* X3618D01* X3614Y3725D01* Y3741D01* X3656Y3720D02* X3639D01* X3656Y3737D01* Y3741D01* X3652Y3745D01* X3643D01* X3639Y3741D01* X853Y3749D02* Y3724D01* X866D01* X870Y3728D01* Y3745D01* X866Y3749D01* X853D01* X878D02* X895D01* X887D01* Y3724D01* X903D02* X912D01* X908D01* Y3749D01* X903Y3745D01* X924D02* X928Y3749D01* X937D01* X941Y3745D01* Y3728D01* X937Y3724D01* X928D01* X924Y3728D01* Y3745D01* X949D02* X953Y3749D01* X962D01* X966Y3745D01* Y3741D01* X962Y3737D01* X958D01* X962D01* X966Y3732D01* Y3728D01* X962Y3724D01* X953D01* X949Y3728D01* X1338Y3908D02* X1362D01* Y3921D01* X1358Y3925D01* X1342D01* X1338Y3921D01* Y3908D01* Y3933D02* Y3950D01* Y3941D01* X1362D01* Y3958D02* Y3966D01* Y3962D01* X1338D01* X1342Y3958D01* Y3979D02* X1338Y3983D01* Y3991D01* X1342Y3996D01* X1358D01* X1362Y3991D01* Y3983D01* X1358Y3979D01* X1342D01* X1362Y4016D02* X1338D01* X1350Y4004D01* Y4021D01* X1747Y3465D02* X1772D01* Y3477D01* X1767Y3481D01* X1751D01* X1747Y3477D01* Y3465D01* Y3490D02* Y3506D01* Y3498D01* X1772D01* Y3515D02* Y3523D01* Y3519D01* X1747D01* X1751Y3515D01* Y3535D02* X1747Y3540D01* Y3548D01* X1751Y3552D01* X1767D01* X1772Y3548D01* Y3540D01* X1767Y3535D01* X1751D01* X1747Y3577D02* Y3560D01* X1759D01* X1755Y3569D01* Y3573D01* X1759Y3577D01* X1767D01* X1772Y3573D01* Y3565D01* X1767Y3560D01* X3553Y1462D02* Y1437D01* X3566D01* X3570Y1441D01* Y1458D01* X3566Y1462D01* X3553D01* X3578D02* X3595D01* X3586D01* Y1437D01* X3603D02* X3611D01* X3607D01* Y1462D01* X3603Y1458D01* X3624D02* X3628Y1462D01* X3636D01* X3641Y1458D01* Y1441D01* X3636Y1437D01* X3628D01* X3624Y1441D01* Y1458D01* X3666Y1462D02* X3657Y1458D01* X3649Y1450D01* Y1441D01* X3653Y1437D01* X3661D01* X3666Y1441D01* Y1445D01* X3661Y1450D01* X3649D01* X3553Y1659D02* Y1634D01* X3566D01* X3570Y1638D01* Y1655D01* X3566Y1659D01* X3553D01* X3578D02* X3595D01* X3586D01* Y1634D01* X3603D02* X3611D01* X3607D01* Y1659D01* X3603Y1655D01* X3624D02* X3628Y1659D01* X3636D01* X3641Y1655D01* Y1638D01* X3636Y1634D01* X3628D01* X3624Y1638D01* Y1655D01* X3649Y1659D02* X3666D01* Y1655D01* X3649Y1638D01* Y1634D01* X3560Y1780D02* Y1755D01* X3573D01* X3577Y1759D01* Y1776D01* X3573Y1780D01* X3560D01* X3585D02* X3602D01* X3594D01* Y1755D01* X3610D02* X3619D01* X3615D01* Y1780D01* X3610Y1776D01* X3631D02* X3635Y1780D01* X3644D01* X3648Y1776D01* Y1759D01* X3644Y1755D01* X3635D01* X3631Y1759D01* Y1776D01* X3656D02* X3660Y1780D01* X3669D01* X3673Y1776D01* Y1772D01* X3669Y1767D01* X3673Y1763D01* Y1759D01* X3669Y1755D01* X3660D01* X3656Y1759D01* Y1763D01* X3660Y1767D01* X3656Y1772D01* Y1776D01* X3660Y1767D02* X3669D01* X1519Y3580D02* Y3555D01* X1532D01* X1536Y3559D01* Y3576D01* X1532Y3580D01* X1519D01* X1544D02* X1561D01* X1553D01* Y3555D01* X1569D02* X1578D01* X1574D01* Y3580D01* X1569Y3576D01* X1590D02* X1594Y3580D01* X1603D01* X1607Y3576D01* Y3559D01* X1603Y3555D01* X1594D01* X1590Y3559D01* Y3576D01* X1615Y3559D02* X1619Y3555D01* X1628D01* X1632Y3559D01* Y3576D01* X1628Y3580D01* X1619D01* X1615Y3576D01* Y3572D01* X1619Y3567D01* X1632D01* X2140Y3435D02* X2165D01* Y3448D01* X2161Y3452D01* X2145D01* X2140Y3448D01* Y3435D01* Y3460D02* Y3477D01* Y3468D01* X2165D01* Y3485D02* Y3493D01* Y3489D01* X2140D01* X2145Y3485D01* X2165Y3506D02* Y3514D01* Y3510D01* X2140D01* X2145Y3506D01* Y3527D02* X2140Y3531D01* Y3539D01* X2145Y3543D01* X2161D01* X2165Y3539D01* Y3531D01* X2161Y3527D01* X2145D01* X1991Y3945D02* X2015D01* Y3957D01* X2011Y3962D01* X1995D01* X1991Y3957D01* Y3945D01* Y3970D02* Y3987D01* Y3978D01* X2015D01* Y3995D02* Y4003D01* Y3999D01* X1991D01* X1995Y3995D01* X2015Y4016D02* Y4024D01* Y4020D01* X1991D01* X1995Y4016D01* X2015Y4037D02* Y4045D01* Y4041D01* X1991D01* X1995Y4037D01* X3041Y3056D02* Y3031D01* X3054D01* X3058Y3036D01* Y3052D01* X3054Y3056D01* X3041D01* X3066D02* X3083D01* Y3052D01* X3066Y3036D01* Y3031D01* X3083D01* X3091D02* X3100D01* X3095D01* Y3056D01* X3091Y3052D01* X3112D02* X3116Y3056D01* X3125D01* X3129Y3052D01* Y3036D01* X3125Y3031D01* X3116D01* X3112Y3036D01* Y3052D01* X3137D02* X3141Y3056D01* X3150D01* X3154Y3052D01* Y3036D01* X3150Y3031D01* X3141D01* X3137Y3036D01* Y3052D01* X3191Y1182D02* Y1157D01* X3203D01* X3207Y1161D01* Y1178D01* X3203Y1182D01* X3191D01* X3216D02* X3232D01* Y1178D01* X3216Y1161D01* Y1157D01* X3232D01* X3241D02* X3249D01* X3245D01* Y1182D01* X3241Y1178D01* X3261D02* X3266Y1182D01* X3274D01* X3278Y1178D01* Y1161D01* X3274Y1157D01* X3266D01* X3261Y1161D01* Y1178D01* X3286Y1157D02* X3295D01* X3291D01* Y1182D01* X3286Y1178D01* X3031Y3273D02* Y3248D01* X3044D01* X3048Y3252D01* Y3269D01* X3044Y3273D01* X3031D01* X3056D02* X3073D01* Y3269D01* X3056Y3252D01* Y3248D01* X3073D01* X3081D02* X3090D01* X3086D01* Y3273D01* X3081Y3269D01* X3102D02* X3106Y3273D01* X3115D01* X3119Y3269D01* Y3252D01* X3115Y3248D01* X3106D01* X3102Y3252D01* Y3269D01* X3144Y3248D02* X3127D01* X3144Y3265D01* Y3269D01* X3140Y3273D01* X3131D01* X3127Y3269D01* X2951Y1400D02* Y1375D01* X2964D01* X2968Y1379D01* Y1396D01* X2964Y1400D01* X2951D01* X2976D02* X2993D01* Y1396D01* X2976Y1379D01* Y1375D01* X2993D01* X3001D02* X3009D01* X3005D01* Y1400D01* X3001Y1396D01* X3022D02* X3026Y1400D01* X3034D01* X3039Y1396D01* Y1379D01* X3034Y1375D01* X3026D01* X3022Y1379D01* Y1396D01* X3047D02* X3051Y1400D01* X3059D01* X3064Y1396D01* Y1391D01* X3059Y1387D01* X3055D01* X3059D01* X3064Y1383D01* Y1379D01* X3059Y1375D01* X3051D01* X3047Y1379D01* X875Y1130D02* Y1105D01* X887D01* X892Y1109D01* Y1126D01* X887Y1130D01* X875D01* X900D02* X917D01* Y1126D01* X900Y1109D01* Y1105D01* X917D01* X925D02* X933D01* X929D01* Y1130D01* X925Y1126D01* X946D02* X950Y1130D01* X958D01* X962Y1126D01* Y1109D01* X958Y1105D01* X950D01* X946Y1109D01* Y1126D01* X983Y1105D02* Y1130D01* X971Y1117D01* X987D01* X3240Y1735D02* X3265D01* Y1747D01* X3261Y1752D01* X3244D01* X3240Y1747D01* Y1735D01* Y1760D02* Y1777D01* X3244D01* X3261Y1760D01* X3265D01* Y1777D01* Y1802D02* Y1785D01* X3248Y1802D01* X3244D01* X3240Y1797D01* Y1789D01* X3244Y1785D01* Y1810D02* X3240Y1814D01* Y1822D01* X3244Y1827D01* X3261D01* X3265Y1822D01* Y1814D01* X3261Y1810D01* X3244D01* Y1835D02* X3240Y1839D01* Y1847D01* X3244Y1852D01* X3261D01* X3265Y1847D01* Y1839D01* X3261Y1835D01* X3244D01* X2304Y2298D02* Y2273D01* X2316D01* X2321Y2277D01* Y2294D01* X2316Y2298D01* X2304D01* X2329D02* X2346D01* Y2294D01* X2329Y2277D01* Y2273D01* X2346D01* X2371D02* X2354D01* X2371Y2290D01* Y2294D01* X2366Y2298D01* X2358D01* X2354Y2294D01* X2379D02* X2383Y2298D01* X2391D01* X2396Y2294D01* Y2277D01* X2391Y2273D01* X2383D01* X2379Y2277D01* Y2294D01* X2404D02* X2408Y2298D01* X2416D01* X2421Y2294D01* Y2290D01* X2416Y2285D01* X2412D01* X2416D01* X2421Y2281D01* Y2277D01* X2416Y2273D01* X2408D01* X2404Y2277D01* X1451Y2217D02* Y2192D01* X1464D01* X1468Y2196D01* Y2213D01* X1464Y2217D01* X1451D01* X1476D02* X1493D01* Y2213D01* X1476Y2196D01* Y2192D01* X1493D01* X1518D02* X1501D01* X1518Y2209D01* Y2213D01* X1514Y2217D01* X1506D01* X1501Y2213D01* X1526D02* X1531Y2217D01* X1539D01* X1543Y2213D01* Y2196D01* X1539Y2192D01* X1531D01* X1526Y2196D01* Y2213D01* X1564Y2192D02* Y2217D01* X1551Y2205D01* X1568D01* X2052Y1500D02* X2077D01* Y1512D01* X2073Y1517D01* X2056D01* X2052Y1512D01* Y1500D01* Y1525D02* Y1542D01* X2056D01* X2073Y1525D01* X2077D01* Y1542D01* Y1566D02* Y1550D01* X2060Y1566D01* X2056D01* X2052Y1562D01* Y1554D01* X2056Y1550D01* Y1575D02* X2052Y1579D01* Y1587D01* X2056Y1591D01* X2073D01* X2077Y1587D01* Y1579D01* X2073Y1575D01* X2056D01* X2052Y1600D02* Y1616D01* X2056D01* X2073Y1600D01* X2077D01* X1945Y1530D02* X1970D01* Y1542D01* X1966Y1546D01* X1949D01* X1945Y1542D01* Y1530D01* Y1555D02* Y1571D01* X1949D01* X1966Y1555D01* X1970D01* Y1571D01* Y1596D02* Y1580D01* X1953Y1596D01* X1949D01* X1945Y1592D01* Y1584D01* X1949Y1580D01* Y1605D02* X1945Y1609D01* Y1617D01* X1949Y1621D01* X1966D01* X1970Y1617D01* Y1609D01* X1966Y1605D01* X1949D01* Y1630D02* X1945Y1634D01* Y1642D01* X1949Y1646D01* X1953D01* X1958Y1642D01* X1962Y1646D01* X1966D01* X1970Y1642D01* Y1634D01* X1966Y1630D01* X1962D01* X1958Y1634D01* X1953Y1630D01* X1949D01* X1958Y1634D02* Y1642D01* X2281Y2107D02* Y2082D01* X2294D01* X2298Y2086D01* Y2103D01* X2294Y2107D01* X2281D01* X2306D02* X2323D01* Y2103D01* X2306Y2086D01* Y2082D01* X2323D01* X2348D02* X2331D01* X2348Y2099D01* Y2103D01* X2344Y2107D01* X2336D01* X2331Y2103D01* X2356D02* X2361Y2107D01* X2369D01* X2373Y2103D01* Y2086D01* X2369Y2082D01* X2361D01* X2356Y2086D01* Y2103D01* X2381Y2086D02* X2386Y2082D01* X2394D01* X2398Y2086D01* Y2103D01* X2394Y2107D01* X2386D01* X2381Y2103D01* Y2099D01* X2386Y2095D01* X2398D01* X3157Y2352D02* X3140D01* Y2327D01* X3157D01* X3140Y2340D02* X3149D01* X3165Y2327D02* X3174D01* X3170D01* Y2352D01* X3165Y2348D01* X3186D02* X3190Y2352D01* X3199D01* X3203Y2348D01* Y2331D01* X3199Y2327D01* X3190D01* X3186Y2331D01* Y2348D01* X3211D02* X3215Y2352D01* X3224D01* X3228Y2348D01* Y2331D01* X3224Y2327D01* X3215D01* X3211Y2331D01* Y2348D01* X3327Y2512D02* X3311D01* Y2487D01* X3327D01* X3311Y2500D02* X3319D01* X3336Y2487D02* X3344D01* X3340D01* Y2512D01* X3336Y2508D01* X3356D02* X3361Y2512D01* X3369D01* X3373Y2508D01* Y2491D01* X3369Y2487D01* X3361D01* X3356Y2491D01* Y2508D01* X3381Y2487D02* X3390D01* X3386D01* Y2512D01* X3381Y2508D01* X3117Y478D02* X3100D01* Y453D01* X3117D01* X3100Y465D02* X3109D01* X3125Y453D02* X3134D01* X3130D01* Y478D01* X3125Y474D01* X3146D02* X3150Y478D01* X3159D01* X3163Y474D01* Y457D01* X3159Y453D01* X3150D01* X3146Y457D01* Y474D01* X3188Y453D02* X3171D01* X3188Y469D01* Y474D01* X3184Y478D01* X3175D01* X3171Y474D01* X3328Y632D02* X3311D01* Y607D01* X3328D01* X3311Y619D02* X3319D01* X3336Y607D02* X3344D01* X3340D01* Y632D01* X3336Y628D01* X3357D02* X3361Y632D01* X3369D01* X3373Y628D01* Y611D01* X3369Y607D01* X3361D01* X3357Y611D01* Y628D01* X3382D02* X3386Y632D01* X3394D01* X3398Y628D01* Y624D01* X3394Y619D01* X3390D01* X3394D01* X3398Y615D01* Y611D01* X3394Y607D01* X3386D01* X3382Y611D01* X2511Y2137D02* X2494D01* Y2112D01* X2511D01* X2494Y2125D02* X2503D01* X2536Y2112D02* X2519D01* X2536Y2129D01* Y2133D01* X2532Y2137D01* X2524D01* X2519Y2133D01* X2544D02* X2549Y2137D01* X2557D01* X2561Y2133D01* Y2116D01* X2557Y2112D01* X2549D01* X2544Y2116D01* Y2133D01* X2569D02* X2574Y2137D01* X2582D01* X2586Y2133D01* Y2116D01* X2582Y2112D01* X2574D01* X2569Y2116D01* Y2133D01* X2101Y2283D02* X2084D01* Y2258D01* X2101D01* X2084Y2270D02* X2092D01* X2126Y2258D02* X2109D01* X2126Y2275D01* Y2279D01* X2121Y2283D01* X2113D01* X2109Y2279D01* X2134D02* X2138Y2283D01* X2146D01* X2151Y2279D01* Y2262D01* X2146Y2258D01* X2138D01* X2134Y2262D01* Y2279D01* X2176Y2258D02* X2159D01* X2176Y2275D01* Y2279D01* X2171Y2283D01* X2163D01* X2159Y2279D01* X1461Y2327D02* X1445D01* Y2302D01* X1461D01* X1445Y2314D02* X1453D01* X1486Y2302D02* X1470D01* X1486Y2319D01* Y2323D01* X1482Y2327D01* X1474D01* X1470Y2323D01* X1495D02* X1499Y2327D01* X1507D01* X1511Y2323D01* Y2306D01* X1507Y2302D01* X1499D01* X1495Y2306D01* Y2323D01* X1520D02* X1524Y2327D01* X1532D01* X1536Y2323D01* Y2319D01* X1532Y2314D01* X1528D01* X1532D01* X1536Y2310D01* Y2306D01* X1532Y2302D01* X1524D01* X1520Y2306D01* X833Y3919D02* X816D01* Y3907D01* X825D01* X816D01* Y3894D01* X841D02* X850D01* X846D01* Y3919D01* X841Y3915D01* X862D02* X866Y3919D01* X875D01* X879Y3915D01* Y3898D01* X875Y3894D01* X866D01* X862Y3898D01* Y3915D01* X887D02* X891Y3919D01* X900D01* X904Y3915D01* Y3898D01* X900Y3894D01* X891D01* X887Y3898D01* Y3915D01* X964Y3510D02* Y3493D01* X977D01* Y3501D01* Y3493D01* X989D01* Y3518D02* Y3526D01* Y3522D01* X964D01* X968Y3518D01* Y3539D02* X964Y3543D01* Y3551D01* X968Y3555D01* X985D01* X989Y3551D01* Y3543D01* X985Y3539D01* X968D01* X989Y3564D02* Y3572D01* Y3568D01* X964D01* X968Y3564D01* X3576Y3452D02* X3559D01* Y3440D01* X3567D01* X3559D01* Y3427D01* X3584D02* X3592D01* X3588D01* Y3452D01* X3584Y3448D01* X3605D02* X3609Y3452D01* X3617D01* X3622Y3448D01* Y3431D01* X3617Y3427D01* X3609D01* X3605Y3431D01* Y3448D01* X3647Y3427D02* X3630D01* X3647Y3444D01* Y3448D01* X3642Y3452D01* X3634D01* X3630Y3448D01* X3457Y3251D02* X3440D01* Y3239D01* X3448D01* X3440D01* Y3226D01* X3465D02* X3473D01* X3469D01* Y3251D01* X3465Y3247D01* X3486D02* X3490Y3251D01* X3498D01* X3502Y3247D01* Y3230D01* X3498Y3226D01* X3490D01* X3486Y3230D01* Y3247D01* X3511D02* X3515Y3251D01* X3523D01* X3527Y3247D01* Y3243D01* X3523Y3239D01* X3519D01* X3523D01* X3527Y3234D01* Y3230D01* X3523Y3226D01* X3515D01* X3511Y3230D01* X637Y1413D02* X620D01* Y1400D01* X628D01* X620D01* Y1388D01* X645D02* X653D01* X649D01* Y1413D01* X645Y1409D01* X666D02* X670Y1413D01* X678D01* X683Y1409D01* Y1392D01* X678Y1388D01* X670D01* X666Y1392D01* Y1409D01* X703Y1388D02* Y1413D01* X691Y1400D01* X708D01* X3457Y3065D02* X3440D01* Y3052D01* X3448D01* X3440D01* Y3040D01* X3465D02* X3473D01* X3469D01* Y3065D01* X3465Y3061D01* X3486D02* X3490Y3065D01* X3498D01* X3502Y3061D01* Y3044D01* X3498Y3040D01* X3490D01* X3486Y3044D01* Y3061D01* X3527Y3065D02* X3511D01* Y3052D01* X3519Y3057D01* X3523D01* X3527Y3052D01* Y3044D01* X3523Y3040D01* X3515D01* X3511Y3044D01* X3456Y2870D02* X3439D01* Y2857D01* X3448D01* X3439D01* Y2845D01* X3464D02* X3473D01* X3469D01* Y2870D01* X3464Y2866D01* X3485D02* X3489Y2870D01* X3498D01* X3502Y2866D01* Y2849D01* X3498Y2845D01* X3489D01* X3485Y2849D01* Y2866D01* X3527Y2870D02* X3519Y2866D01* X3510Y2857D01* Y2849D01* X3514Y2845D01* X3523D01* X3527Y2849D01* Y2853D01* X3523Y2857D01* X3510D01* X3456Y2665D02* X3439D01* Y2652D01* X3448D01* X3439D01* Y2640D01* X3464D02* X3473D01* X3469D01* Y2665D01* X3464Y2661D01* X3485D02* X3489Y2665D01* X3498D01* X3502Y2661D01* Y2644D01* X3498Y2640D01* X3489D01* X3485Y2644D01* Y2661D01* X3510Y2665D02* X3527D01* Y2661D01* X3510Y2644D01* Y2640D01* X3662Y2445D02* X3645D01* Y2432D01* X3653D01* X3645D01* Y2420D01* X3670D02* X3678D01* X3674D01* Y2445D01* X3670Y2441D01* X3691D02* X3695Y2445D01* X3703D01* X3707Y2441D01* Y2424D01* X3703Y2420D01* X3695D01* X3691Y2424D01* Y2441D01* X3716D02* X3720Y2445D01* X3728D01* X3732Y2441D01* Y2437D01* X3728Y2432D01* X3732Y2428D01* Y2424D01* X3728Y2420D01* X3720D01* X3716Y2424D01* Y2428D01* X3720Y2432D01* X3716Y2437D01* Y2441D01* X3720Y2432D02* X3728D01* X3576Y1562D02* X3559D01* Y1550D01* X3567D01* X3559D01* Y1537D01* X3584D02* X3592D01* X3588D01* Y1562D01* X3584Y1558D01* X3605D02* X3609Y1562D01* X3617D01* X3622Y1558D01* Y1541D01* X3617Y1537D01* X3609D01* X3605Y1541D01* Y1558D01* X3630Y1541D02* X3634Y1537D01* X3642D01* X3647Y1541D01* Y1558D01* X3642Y1562D01* X3634D01* X3630Y1558D01* Y1554D01* X3634Y1550D01* X3647D01* X3462Y1360D02* X3445D01* Y1347D01* X3453D01* X3445D01* Y1335D01* X3470D02* X3478D01* X3474D01* Y1360D01* X3470Y1356D01* X3491Y1335D02* X3499D01* X3495D01* Y1360D01* X3491Y1356D01* X3512D02* X3516Y1360D01* X3524D01* X3528Y1356D01* Y1339D01* X3524Y1335D01* X3516D01* X3512Y1339D01* Y1356D01* X3664Y1150D02* X3647D01* Y1137D01* X3656D01* X3647D01* Y1125D01* X3672D02* X3681D01* X3677D01* Y1150D01* X3672Y1146D01* X3693Y1125D02* X3702D01* X3697D01* Y1150D01* X3693Y1146D01* X3714Y1125D02* X3722D01* X3718D01* Y1150D01* X3714Y1146D01* X3652Y955D02* X3635D01* Y942D01* X3643D01* X3635D01* Y930D01* X3660D02* X3668D01* X3664D01* Y955D01* X3660Y951D01* X3681Y930D02* X3689D01* X3685D01* Y955D01* X3681Y951D01* X3718Y930D02* X3702D01* X3718Y947D01* Y951D01* X3714Y955D01* X3706D01* X3702Y951D01* X3662Y757D02* X3645D01* Y744D01* X3653D01* X3645D01* Y732D01* X3670D02* X3678D01* X3674D01* Y757D01* X3670Y753D01* X3691Y732D02* X3699D01* X3695D01* Y757D01* X3691Y753D01* X3712D02* X3716Y757D01* X3724D01* X3728Y753D01* Y749D01* X3724Y744D01* X3720D01* X3724D01* X3728Y740D01* Y736D01* X3724Y732D01* X3716D01* X3712Y736D01* X3662Y560D02* X3645D01* Y547D01* X3653D01* X3645D01* Y535D01* X3670D02* X3678D01* X3674D01* Y560D01* X3670Y556D01* X3691Y535D02* X3699D01* X3695D01* Y560D01* X3691Y556D01* X3724Y535D02* Y560D01* X3712Y547D01* X3728D01* X1257Y3431D02* X1240D01* Y3418D01* X1248D01* X1240D01* Y3406D01* X1265D02* X1273D01* X1269D01* Y3431D01* X1265Y3426D01* X1286Y3406D02* X1294D01* X1290D01* Y3431D01* X1286Y3426D01* X1323Y3431D02* X1315Y3426D01* X1307Y3418D01* Y3410D01* X1311Y3406D01* X1319D01* X1323Y3410D01* Y3414D01* X1319Y3418D01* X1307D01* X1435Y3501D02* Y3484D01* X1448D01* Y3492D01* Y3484D01* X1460D01* Y3509D02* Y3517D01* Y3513D01* X1435D01* X1439Y3509D01* X1460Y3530D02* Y3538D01* Y3534D01* X1435D01* X1439Y3530D01* X1435Y3551D02* Y3567D01* X1439D01* X1456Y3551D01* X1460D01* X1671Y3497D02* Y3480D01* X1683D01* Y3488D01* Y3480D01* X1695D01* Y3505D02* Y3513D01* Y3509D01* X1671D01* X1675Y3505D01* X1695Y3526D02* Y3534D01* Y3530D01* X1671D01* X1675Y3526D01* Y3547D02* X1671Y3551D01* Y3559D01* X1675Y3563D01* X1679D01* X1683Y3559D01* X1687Y3563D01* X1691D01* X1695Y3559D01* Y3551D01* X1691Y3547D01* X1687D01* X1683Y3551D01* X1679Y3547D01* X1675D01* X1683Y3551D02* Y3559D01* X1550Y3397D02* Y3380D01* X1563D01* Y3388D01* Y3380D01* X1575D01* Y3405D02* Y3413D01* Y3409D01* X1550D01* X1554Y3405D01* X1575Y3426D02* Y3434D01* Y3430D01* X1550D01* X1554Y3426D01* X1571Y3447D02* X1575Y3451D01* Y3459D01* X1571Y3463D01* X1554D01* X1550Y3459D01* Y3451D01* X1554Y3447D01* X1558D01* X1563Y3451D01* Y3463D01* X1950Y3565D02* Y3548D01* X1963D01* Y3556D01* Y3548D01* X1975D01* Y3573D02* Y3581D01* Y3577D01* X1950D01* X1954Y3573D01* X1975Y3610D02* Y3594D01* X1958Y3610D01* X1954D01* X1950Y3606D01* Y3598D01* X1954Y3594D01* Y3619D02* X1950Y3623D01* Y3631D01* X1954Y3635D01* X1971D01* X1975Y3631D01* Y3623D01* X1971Y3619D01* X1954D01* X2030Y3484D02* Y3467D01* X2043D01* Y3475D01* Y3467D01* X2055D01* Y3492D02* Y3500D01* Y3496D01* X2030D01* X2034Y3492D01* X2055Y3529D02* Y3513D01* X2038Y3529D01* X2034D01* X2030Y3525D01* Y3517D01* X2034Y3513D01* X2055Y3538D02* Y3546D01* Y3542D01* X2030D01* X2034Y3538D01* X1900Y3924D02* Y3907D01* X1913D01* Y3915D01* Y3907D01* X1925D01* Y3932D02* Y3940D01* Y3936D01* X1900D01* X1904Y3932D01* X1925Y3969D02* Y3953D01* X1908Y3969D01* X1904D01* X1900Y3965D01* Y3957D01* X1904Y3953D01* X1925Y3994D02* Y3978D01* X1908Y3994D01* X1904D01* X1900Y3990D01* Y3982D01* X1904Y3978D01* X2288Y3481D02* Y3465D01* X2300D01* Y3473D01* Y3465D01* X2313D01* Y3490D02* Y3498D01* Y3494D01* X2288D01* X2292Y3490D01* X2313Y3527D02* Y3510D01* X2296Y3527D01* X2292D01* X2288Y3523D01* Y3515D01* X2292Y3510D01* Y3535D02* X2288Y3540D01* Y3548D01* X2292Y3552D01* X2296D01* X2300Y3548D01* Y3544D01* Y3548D01* X2305Y3552D01* X2309D01* X2313Y3548D01* Y3540D01* X2309Y3535D01* X1355Y1397D02* X1380D01* Y1414D01* X1355Y1439D02* Y1422D01* X1380D01* Y1439D01* X1368Y1422D02* Y1430D01* X1355Y1447D02* X1380D01* Y1459D01* X1376Y1463D01* X1359D01* X1355Y1459D01* Y1447D01* X1380Y1488D02* Y1472D01* X1363Y1488D01* X1359D01* X1355Y1484D01* Y1476D01* X1359Y1472D01* Y1497D02* X1355Y1501D01* Y1509D01* X1359Y1513D01* X1376D01* X1380Y1509D01* Y1501D01* X1376Y1497D01* X1359D01* Y1522D02* X1355Y1526D01* Y1534D01* X1359Y1538D01* X1376D01* X1380Y1534D01* Y1526D01* X1376Y1522D01* X1359D01* X2940Y2636D02* Y2661D01* X2952D01* X2957Y2657D01* Y2648D01* X2952Y2644D01* X2940D01* X2965Y2636D02* X2973D01* X2969D01* Y2661D01* X2965Y2657D01* X2986D02* X2990Y2661D01* X2998D01* X3002Y2657D01* Y2640D01* X2998Y2636D01* X2990D01* X2986Y2640D01* Y2657D01* X3011D02* X3015Y2661D01* X3023D01* X3027Y2657D01* Y2640D01* X3023Y2636D01* X3015D01* X3011Y2640D01* Y2657D01* X3020Y828D02* Y853D01* X3032D01* X3037Y849D01* Y840D01* X3032Y836D01* X3020D01* X3045Y828D02* X3053D01* X3049D01* Y853D01* X3045Y849D01* X3066D02* X3070Y853D01* X3078D01* X3082Y849D01* Y832D01* X3078Y828D01* X3070D01* X3066Y832D01* Y849D01* X3091Y828D02* X3099D01* X3095D01* Y853D01* X3091Y849D01* X646Y1207D02* Y1232D01* X658D01* X663Y1228D01* Y1219D01* X658Y1215D01* X646D01* X671Y1207D02* X679D01* X675D01* Y1232D01* X671Y1228D01* X692D02* X696Y1232D01* X704D01* X708Y1228D01* Y1211D01* X704Y1207D01* X696D01* X692Y1211D01* Y1228D01* X733Y1207D02* X717D01* X733Y1224D01* Y1228D01* X729Y1232D01* X721D01* X717Y1228D01* X2000Y3300D02* Y3316D01* X1996Y3321D01* X1988D01* X1983Y3316D01* Y3300D01* X1988Y3296D01* X1996D01* X1992Y3304D02* X2000Y3296D01* X1996D02* X2000Y3300D01* X2025Y3296D02* X2008D01* X2025Y3312D01* Y3316D01* X2021Y3321D01* X2013D01* X2008Y3316D01* X2033D02* X2038Y3321D01* X2046D01* X2050Y3316D01* Y3300D01* X2046Y3296D01* X2038D01* X2033Y3300D01* Y3316D01* X2058D02* X2063Y3321D01* X2071D01* X2075Y3316D01* Y3300D01* X2071Y3296D01* X2063D01* X2058Y3300D01* Y3316D01* X3041Y3150D02* Y3175D01* X3054D01* X3058Y3170D01* Y3162D01* X3054Y3158D01* X3041D01* X3050D02* X3058Y3150D01* X3066D02* X3075D01* X3070D01* Y3175D01* X3066Y3170D01* X3087D02* X3091Y3175D01* X3100D01* X3104Y3170D01* Y3154D01* X3100Y3150D01* X3091D01* X3087Y3154D01* Y3170D01* X3112D02* X3116Y3175D01* X3125D01* X3129Y3170D01* Y3154D01* X3125Y3150D01* X3116D01* X3112Y3154D01* Y3170D01* X3059Y1307D02* Y1282D01* X3047D01* X3043Y1286D01* Y1294D01* X3047Y1298D01* X3059D01* X3051D02* X3043Y1307D01* X3034D02* X3026D01* X3030D01* Y1282D01* X3034Y1286D01* X3014D02* X3009Y1282D01* X3001D01* X2997Y1286D01* Y1302D01* X3001Y1307D01* X3009D01* X3014Y1302D01* Y1286D01* X2989Y1307D02* X2980D01* X2984D01* Y1282D01* X2989Y1286D01* X3192Y2860D02* X3167D01* Y2872D01* X3171Y2877D01* X3180D01* X3184Y2872D01* Y2860D01* Y2868D02* X3192Y2877D01* Y2885D02* Y2893D01* Y2889D01* X3167D01* X3171Y2885D01* Y2906D02* X3167Y2910D01* Y2918D01* X3171Y2922D01* X3188D01* X3192Y2918D01* Y2910D01* X3188Y2906D01* X3171D01* X3192Y2947D02* Y2931D01* X3175Y2947D01* X3171D01* X3167Y2943D01* Y2935D01* X3171Y2931D01* X3242Y983D02* X3218D01* Y996D01* X3222Y1000D01* X3230D01* X3234Y996D01* Y983D01* Y991D02* X3242Y1000D01* Y1008D02* Y1016D01* Y1012D01* X3218D01* X3222Y1008D01* Y1029D02* X3218Y1033D01* Y1041D01* X3222Y1046D01* X3238D01* X3242Y1041D01* Y1033D01* X3238Y1029D01* X3222D01* Y1054D02* X3218Y1058D01* Y1066D01* X3222Y1071D01* X3226D01* X3230Y1066D01* Y1062D01* Y1066D01* X3234Y1071D01* X3238D01* X3242Y1066D01* Y1058D01* X3238Y1054D01* X3255Y3244D02* Y3269D01* X3267D01* X3272Y3265D01* Y3256D01* X3267Y3252D01* X3255D01* X3263D02* X3272Y3244D01* X3280D02* X3288D01* X3284D01* Y3269D01* X3280Y3265D01* X3301D02* X3305Y3269D01* X3313D01* X3317Y3265D01* Y3248D01* X3313Y3244D01* X3305D01* X3301Y3248D01* Y3265D01* X3338Y3244D02* Y3269D01* X3326Y3256D01* X3342D01* X3191Y1375D02* Y1400D01* X3203D01* X3207Y1396D01* Y1387D01* X3203Y1383D01* X3191D01* X3199D02* X3207Y1375D01* X3216D02* X3224D01* X3220D01* Y1400D01* X3216Y1396D01* X3236D02* X3241Y1400D01* X3249D01* X3253Y1396D01* Y1379D01* X3249Y1375D01* X3241D01* X3236Y1379D01* Y1396D01* X3278Y1400D02* X3261D01* Y1387D01* X3270Y1391D01* X3274D01* X3278Y1387D01* Y1379D01* X3274Y1375D01* X3266D01* X3261Y1379D01* X3388Y2860D02* X3363D01* Y2873D01* X3368Y2877D01* X3376D01* X3380Y2873D01* Y2860D01* Y2869D02* X3388Y2877D01* Y2885D02* Y2894D01* Y2889D01* X3363D01* X3368Y2885D01* Y2906D02* X3363Y2910D01* Y2919D01* X3368Y2923D01* X3384D01* X3388Y2919D01* Y2910D01* X3384Y2906D01* X3368D01* X3363Y2948D02* X3368Y2939D01* X3376Y2931D01* X3384D01* X3388Y2935D01* Y2944D01* X3384Y2948D01* X3380D01* X3376Y2944D01* Y2931D01* X3386Y2657D02* X3361D01* Y2670D01* X3365Y2674D01* X3373D01* X3377Y2670D01* Y2657D01* Y2666D02* X3386Y2674D01* Y2682D02* Y2691D01* Y2687D01* X3361D01* X3365Y2682D01* Y2703D02* X3361Y2707D01* Y2716D01* X3365Y2720D01* X3382D01* X3386Y2716D01* Y2707D01* X3382Y2703D01* X3365D01* X3361Y2728D02* Y2745D01* X3365D01* X3382Y2728D01* X3386D01* X3438Y980D02* X3413D01* Y992D01* X3418Y997D01* X3426D01* X3430Y992D01* Y980D01* Y988D02* X3438Y997D01* Y1005D02* Y1013D01* Y1009D01* X3413D01* X3418Y1005D01* Y1026D02* X3413Y1030D01* Y1038D01* X3418Y1042D01* X3434D01* X3438Y1038D01* Y1030D01* X3434Y1026D01* X3418D01* Y1051D02* X3413Y1055D01* Y1063D01* X3418Y1067D01* X3422D01* X3426Y1063D01* X3430Y1067D01* X3434D01* X3438Y1063D01* Y1055D01* X3434Y1051D01* X3430D01* X3426Y1055D01* X3422Y1051D01* X3418D01* X3426Y1055D02* Y1063D01* X3438Y773D02* X3414D01* Y786D01* X3418Y790D01* X3426D01* X3430Y786D01* Y773D01* Y782D02* X3438Y790D01* Y798D02* Y807D01* Y803D01* X3414D01* X3418Y798D01* Y819D02* X3414Y823D01* Y832D01* X3418Y836D01* X3434D01* X3438Y832D01* Y823D01* X3434Y819D01* X3418D01* X3434Y844D02* X3438Y848D01* Y857D01* X3434Y861D01* X3418D01* X3414Y857D01* Y848D01* X3418Y844D01* X3422D01* X3426Y848D01* Y861D01* X896Y1457D02* Y1482D01* X908D01* X912Y1478D01* Y1469D01* X908Y1465D01* X896D01* X904D02* X912Y1457D01* X921D02* X929D01* X925D01* Y1482D01* X921Y1478D01* X941Y1457D02* X950D01* X946D01* Y1482D01* X941Y1478D01* X962D02* X966Y1482D01* X975D01* X979Y1478D01* Y1461D01* X975Y1457D01* X966D01* X962Y1461D01* Y1478D01* X898Y1655D02* Y1680D01* X910D01* X915Y1676D01* Y1667D01* X910Y1663D01* X898D01* X906D02* X915Y1655D01* X923D02* X931D01* X927D01* Y1680D01* X923Y1676D01* X944Y1655D02* X952D01* X948D01* Y1680D01* X944Y1676D01* X965Y1655D02* X973D01* X969D01* Y1680D01* X965Y1676D01* X1133Y655D02* X1108D01* Y667D01* X1112Y671D01* X1120D01* X1124Y667D01* Y655D01* Y663D02* X1133Y671D01* Y680D02* Y688D01* Y684D01* X1108D01* X1112Y680D01* X1133Y701D02* Y709D01* Y705D01* X1108D01* X1112Y701D01* X1133Y738D02* Y721D01* X1116Y738D01* X1112D01* X1108Y734D01* Y726D01* X1112Y721D01* X1300Y1610D02* Y1635D01* X1312D01* X1317Y1630D01* Y1622D01* X1312Y1618D01* X1300D01* X1308D02* X1317Y1610D01* X1325D02* X1333D01* X1329D01* Y1635D01* X1325Y1630D01* X1346Y1610D02* X1354D01* X1350D01* Y1635D01* X1346Y1630D01* X1367D02* X1371Y1635D01* X1379D01* X1383Y1630D01* Y1626D01* X1379Y1622D01* X1375D01* X1379D01* X1383Y1618D01* Y1614D01* X1379Y1610D01* X1371D01* X1367Y1614D01* X1011Y1217D02* Y1242D01* X1023D01* X1027Y1238D01* Y1230D01* X1023Y1225D01* X1011D01* X1019D02* X1027Y1217D01* X1036D02* X1044D01* X1040D01* Y1242D01* X1036Y1238D01* X1057Y1217D02* X1065D01* X1061D01* Y1242D01* X1057Y1238D01* X1090Y1217D02* Y1242D01* X1077Y1230D01* X1094D01* X990Y1310D02* Y1335D01* X1003D01* X1007Y1331D01* Y1323D01* X1003Y1319D01* X990D01* X998D02* X1007Y1310D01* X1015D02* X1023D01* X1019D01* Y1335D01* X1015Y1331D01* X1036Y1310D02* X1044D01* X1040D01* Y1335D01* X1036Y1331D01* X1073Y1335D02* X1057D01* Y1323D01* X1065Y1327D01* X1069D01* X1073Y1323D01* Y1315D01* X1069Y1310D01* X1061D01* X1057Y1315D01* X787Y748D02* Y773D01* X800D01* X804Y769D01* Y761D01* X800Y756D01* X787D01* X796D02* X804Y748D01* X812D02* X821D01* X817D01* Y773D01* X812Y769D01* X833Y748D02* X842D01* X837D01* Y773D01* X833Y769D01* X871Y773D02* X862Y769D01* X854Y761D01* Y752D01* X858Y748D01* X867D01* X871Y752D01* Y756D01* X867Y761D01* X854D01* X2270Y1655D02* X2245D01* Y1667D01* X2249Y1671D01* X2258D01* X2262Y1667D01* Y1655D01* Y1663D02* X2270Y1671D01* Y1696D02* Y1680D01* X2253Y1696D01* X2249D01* X2245Y1692D01* Y1684D01* X2249Y1680D01* Y1705D02* X2245Y1709D01* Y1717D01* X2249Y1721D01* X2266D01* X2270Y1717D01* Y1709D01* X2266Y1705D01* X2249D01* Y1730D02* X2245Y1734D01* Y1742D01* X2249Y1746D01* X2266D01* X2270Y1742D01* Y1734D01* X2266Y1730D01* X2249D01* X2180Y1645D02* X2155D01* Y1657D01* X2159Y1661D01* X2168D01* X2172Y1657D01* Y1645D01* Y1653D02* X2180Y1661D01* Y1686D02* Y1670D01* X2163Y1686D01* X2159D01* X2155Y1682D01* Y1674D01* X2159Y1670D01* Y1695D02* X2155Y1699D01* Y1707D01* X2159Y1711D01* X2176D01* X2180Y1707D01* Y1699D01* X2176Y1695D01* X2159D01* X2180Y1720D02* Y1728D01* Y1724D01* X2155D01* X2159Y1720D01* X2180Y2105D02* X2155D01* Y2117D01* X2159Y2121D01* X2168D01* X2172Y2117D01* Y2105D01* Y2113D02* X2180Y2121D01* Y2146D02* Y2130D01* X2163Y2146D01* X2159D01* X2155Y2142D01* Y2134D01* X2159Y2130D01* Y2155D02* X2155Y2159D01* Y2167D01* X2159Y2171D01* X2176D01* X2180Y2167D01* Y2159D01* X2176Y2155D01* X2159D01* X2180Y2196D02* Y2180D01* X2163Y2196D01* X2159D01* X2155Y2192D01* Y2184D01* X2159Y2180D01* X2484Y2002D02* Y2027D01* X2497D01* X2501Y2023D01* Y2015D01* X2497Y2010D01* X2484D01* X2493D02* X2501Y2002D01* X2526D02* X2509D01* X2526Y2019D01* Y2023D01* X2522Y2027D01* X2514D01* X2509Y2023D01* X2534D02* X2539Y2027D01* X2547D01* X2551Y2023D01* Y2006D01* X2547Y2002D01* X2539D01* X2534Y2006D01* Y2023D01* X2559Y2027D02* X2576D01* Y2023D01* X2559Y2006D01* Y2002D01* X2314Y2412D02* Y2437D01* X2327D01* X2331Y2432D01* Y2424D01* X2327Y2420D01* X2314D01* X2323D02* X2331Y2412D01* X2356D02* X2339D01* X2356Y2428D01* Y2432D01* X2352Y2437D01* X2344D01* X2339Y2432D01* X2364D02* X2369Y2437D01* X2377D01* X2381Y2432D01* Y2416D01* X2377Y2412D01* X2369D01* X2364Y2416D01* Y2432D01* X2389D02* X2394Y2437D01* X2402D01* X2406Y2432D01* Y2428D01* X2402Y2424D01* X2406Y2420D01* Y2416D01* X2402Y2412D01* X2394D01* X2389Y2416D01* Y2420D01* X2394Y2424D01* X2389Y2428D01* Y2432D01* X2394Y2424D02* X2402D01* X1535Y2580D02* X1510D01* Y2592D01* X1514Y2597D01* X1523D01* X1527Y2592D01* Y2580D01* Y2588D02* X1535Y2597D01* Y2622D02* Y2605D01* X1518Y2622D01* X1514D01* X1510Y2617D01* Y2609D01* X1514Y2605D01* Y2630D02* X1510Y2634D01* Y2642D01* X1514Y2647D01* X1531D01* X1535Y2642D01* Y2634D01* X1531Y2630D01* X1514D01* X1531Y2655D02* X1535Y2659D01* Y2667D01* X1531Y2672D01* X1514D01* X1510Y2667D01* Y2659D01* X1514Y2655D01* X1518D01* X1523Y2659D01* Y2672D01* X2180Y1490D02* X2155D01* Y1502D01* X2159Y1506D01* X2168D01* X2172Y1502D01* Y1490D01* Y1498D02* X2180Y1506D01* Y1531D02* Y1515D01* X2163Y1531D01* X2159D01* X2155Y1527D01* Y1519D01* X2159Y1515D01* X2180Y1540D02* Y1548D01* Y1544D01* X2155D01* X2159Y1540D01* Y1560D02* X2155Y1565D01* Y1573D01* X2159Y1577D01* X2163D01* X2168Y1573D01* Y1569D01* Y1573D01* X2172Y1577D01* X2176D01* X2180Y1573D01* Y1565D01* X2176Y1560D01* X1933Y3041D02* X1908D01* Y3053D01* X1912Y3058D01* X1921D01* X1925Y3053D01* Y3041D01* Y3049D02* X1933Y3058D01* Y3083D02* Y3066D01* X1916Y3083D01* X1912D01* X1908Y3078D01* Y3070D01* X1912Y3066D01* X1933Y3091D02* Y3099D01* Y3095D01* X1908D01* X1912Y3091D01* X1933Y3124D02* X1908D01* X1921Y3112D01* Y3128D01* X2346Y2822D02* Y2847D01* X2358D01* X2363Y2843D01* Y2834D01* X2358Y2830D01* X2346D01* X2354D02* X2363Y2822D01* X2388D02* X2371D01* X2388Y2838D01* Y2843D01* X2383Y2847D01* X2375D01* X2371Y2843D01* X2396Y2822D02* X2404D01* X2400D01* Y2847D01* X2396Y2843D01* X2433Y2847D02* X2417D01* Y2834D01* X2425Y2838D01* X2429D01* X2433Y2834D01* Y2826D01* X2429Y2822D01* X2421D01* X2417Y2826D01* X1351Y2921D02* Y2946D01* X1363D01* X1368Y2942D01* Y2934D01* X1363Y2930D01* X1351D01* X1359D02* X1368Y2921D01* X1393D02* X1376D01* X1393Y2938D01* Y2942D01* X1388Y2946D01* X1380D01* X1376Y2942D01* X1401Y2921D02* X1409D01* X1405D01* Y2946D01* X1401Y2942D01* X1438Y2946D02* X1430Y2942D01* X1422Y2934D01* Y2926D01* X1426Y2921D01* X1434D01* X1438Y2926D01* Y2930D01* X1434Y2934D01* X1422D01* X1351Y2831D02* Y2856D01* X1363D01* X1368Y2852D01* Y2844D01* X1363Y2839D01* X1351D01* X1359D02* X1368Y2831D01* X1393D02* X1376D01* X1393Y2848D01* Y2852D01* X1388Y2856D01* X1380D01* X1376Y2852D01* X1401Y2831D02* X1409D01* X1405D01* Y2856D01* X1401Y2852D01* X1422Y2856D02* X1438D01* Y2852D01* X1422Y2835D01* Y2831D01* X2450Y2651D02* X2425D01* Y2664D01* X2429Y2668D01* X2438D01* X2442Y2664D01* Y2651D01* Y2659D02* X2450Y2668D01* Y2693D02* Y2676D01* X2433Y2693D01* X2429D01* X2425Y2689D01* Y2680D01* X2429Y2676D01* X2450Y2701D02* Y2709D01* Y2705D01* X2425D01* X2429Y2701D01* Y2722D02* X2425Y2726D01* Y2734D01* X2429Y2738D01* X2433D01* X2438Y2734D01* X2442Y2738D01* X2446D01* X2450Y2734D01* Y2726D01* X2446Y2722D01* X2442D01* X2438Y2726D01* X2433Y2722D01* X2429D01* X2438Y2726D02* Y2734D01* X2360Y1485D02* X2335D01* Y1497D01* X2339Y1501D01* X2348D01* X2352Y1497D01* Y1485D01* Y1493D02* X2360Y1501D01* Y1526D02* Y1510D01* X2343Y1526D01* X2339D01* X2335Y1522D01* Y1514D01* X2339Y1510D01* X2360Y1551D02* Y1535D01* X2343Y1551D01* X2339D01* X2335Y1547D01* Y1539D01* X2339Y1535D01* Y1560D02* X2335Y1564D01* Y1572D01* X2339Y1576D01* X2343D01* X2348Y1572D01* Y1568D01* Y1572D01* X2352Y1576D01* X2356D01* X2360Y1572D01* Y1564D01* X2356Y1560D01* X2344Y2912D02* Y2937D01* X2357D01* X2361Y2932D01* Y2924D01* X2357Y2920D01* X2344D01* X2353D02* X2361Y2912D01* X2386D02* X2369D01* X2386Y2928D01* Y2932D01* X2382Y2937D01* X2374D01* X2369Y2932D01* X2411Y2912D02* X2394D01* X2411Y2928D01* Y2932D01* X2407Y2937D01* X2399D01* X2394Y2932D01* X2432Y2912D02* Y2937D01* X2419Y2924D01* X2436D01* X1614Y3114D02* Y3139D01* X1627D01* X1631Y3135D01* Y3127D01* X1627Y3123D01* X1614D01* X1623D02* X1631Y3114D01* X1656D02* X1639D01* X1656Y3131D01* Y3135D01* X1652Y3139D01* X1644D01* X1639Y3135D01* X1681Y3114D02* X1664D01* X1681Y3131D01* Y3135D01* X1677Y3139D01* X1669D01* X1664Y3135D01* X1706Y3139D02* X1689D01* Y3127D01* X1698Y3131D01* X1702D01* X1706Y3127D01* Y3119D01* X1702Y3114D01* X1694D01* X1689Y3119D01* X1614Y3022D02* Y3047D01* X1627D01* X1631Y3042D01* Y3034D01* X1627Y3030D01* X1614D01* X1623D02* X1631Y3022D01* X1656D02* X1639D01* X1656Y3038D01* Y3042D01* X1652Y3047D01* X1644D01* X1639Y3042D01* X1681Y3022D02* X1664D01* X1681Y3038D01* Y3042D01* X1677Y3047D01* X1669D01* X1664Y3042D01* X1706Y3047D02* X1698Y3042D01* X1689Y3034D01* Y3026D01* X1694Y3022D01* X1702D01* X1706Y3026D01* Y3030D01* X1702Y3034D01* X1689D01* X1574Y2924D02* Y2949D01* X1587D01* X1591Y2945D01* Y2937D01* X1587Y2933D01* X1574D01* X1583D02* X1591Y2924D01* X1616D02* X1599D01* X1616Y2941D01* Y2945D01* X1612Y2949D01* X1604D01* X1599Y2945D01* X1641Y2924D02* X1624D01* X1641Y2941D01* Y2945D01* X1637Y2949D01* X1629D01* X1624Y2945D01* X1649Y2949D02* X1666D01* Y2945D01* X1649Y2929D01* Y2924D01* X2095Y1895D02* X2070D01* Y1907D01* X2074Y1911D01* X2083D01* X2087Y1907D01* Y1895D01* Y1903D02* X2095Y1911D01* Y1936D02* Y1920D01* X2078Y1936D01* X2074D01* X2070Y1932D01* Y1924D01* X2074Y1920D01* X2095Y1961D02* Y1945D01* X2078Y1961D01* X2074D01* X2070Y1957D01* Y1949D01* X2074Y1945D01* X2091Y1970D02* X2095Y1974D01* Y1982D01* X2091Y1986D01* X2074D01* X2070Y1982D01* Y1974D01* X2074Y1970D01* X2078D01* X2083Y1974D01* Y1986D01* X2091Y1707D02* X2066D01* Y1719D01* X2070Y1724D01* X2079D01* X2083Y1719D01* Y1707D01* Y1715D02* X2091Y1724D01* Y1749D02* Y1732D01* X2074Y1749D01* X2070D01* X2066Y1744D01* Y1736D01* X2070Y1732D01* Y1757D02* X2066Y1761D01* Y1769D01* X2070Y1773D01* X2074D01* X2079Y1769D01* Y1765D01* Y1769D01* X2083Y1773D01* X2087D01* X2091Y1769D01* Y1761D01* X2087Y1757D01* X2066Y1798D02* X2070Y1790D01* X2079Y1782D01* X2087D01* X2091Y1786D01* Y1794D01* X2087Y1798D01* X2083D01* X2079Y1794D01* Y1782D01* X2164Y1892D02* Y1917D01* X2177D01* X2181Y1913D01* Y1905D01* X2177Y1900D01* X2164D01* X2173D02* X2181Y1892D01* X2206D02* X2189D01* X2206Y1909D01* Y1913D01* X2202Y1917D01* X2194D01* X2189Y1913D01* X2214D02* X2219Y1917D01* X2227D01* X2231Y1913D01* Y1909D01* X2227Y1905D01* X2223D01* X2227D01* X2231Y1900D01* Y1896D01* X2227Y1892D01* X2219D01* X2214Y1896D01* X2239Y1917D02* X2256D01* Y1913D01* X2239Y1896D01* Y1892D01* X1353Y2741D02* Y2766D01* X1365D01* X1370Y2762D01* Y2754D01* X1365Y2749D01* X1353D01* X1361D02* X1370Y2741D01* X1395D02* X1378D01* X1395Y2758D01* Y2762D01* X1390Y2766D01* X1382D01* X1378Y2762D01* X1415Y2741D02* Y2766D01* X1403Y2754D01* X1420D01* X1428Y2741D02* X1436D01* X1432D01* Y2766D01* X1428Y2762D01* X1349Y2466D02* Y2491D01* X1361D01* X1366Y2487D01* Y2479D01* X1361Y2475D01* X1349D01* X1357D02* X1366Y2466D01* X1391D02* X1374D01* X1391Y2483D01* Y2487D01* X1386Y2491D01* X1378D01* X1374Y2487D01* X1411Y2466D02* Y2491D01* X1399Y2479D01* X1416D01* X1441Y2466D02* X1424D01* X1441Y2483D01* Y2487D01* X1436Y2491D01* X1428D01* X1424Y2487D01* X1472Y3908D02* X1448D01* Y3921D01* X1452Y3925D01* X1460D01* X1464Y3921D01* Y3908D01* Y3916D02* X1472Y3925D01* X1448Y3933D02* X1464D01* X1472Y3941D01* X1464Y3950D01* X1448D01* X1472Y3958D02* Y3966D01* Y3962D01* X1448D01* X1452Y3958D01* Y3979D02* X1448Y3983D01* Y3991D01* X1452Y3996D01* X1468D01* X1472Y3991D01* Y3983D01* X1468Y3979D01* X1452D01* Y4004D02* X1448Y4008D01* Y4016D01* X1452Y4021D01* X1468D01* X1472Y4016D01* Y4008D01* X1468Y4004D01* X1452D01* X1382Y3474D02* X1358D01* Y3487D01* X1362Y3491D01* X1370D01* X1374Y3487D01* Y3474D01* Y3483D02* X1382Y3491D01* X1358Y3499D02* X1374D01* X1382Y3508D01* X1374Y3516D01* X1358D01* X1382Y3524D02* Y3533D01* Y3528D01* X1358D01* X1362Y3524D01* Y3545D02* X1358Y3549D01* Y3558D01* X1362Y3562D01* X1378D01* X1382Y3558D01* Y3549D01* X1378Y3545D01* X1362D01* X1382Y3570D02* Y3578D01* Y3574D01* X1358D01* X1362Y3570D01* X2122Y3908D02* X2098D01* Y3921D01* X2102Y3925D01* X2110D01* X2114Y3921D01* Y3908D01* Y3916D02* X2122Y3925D01* X2098Y3933D02* X2114D01* X2122Y3941D01* X2114Y3950D01* X2098D01* X2122Y3958D02* Y3966D01* Y3962D01* X2098D01* X2102Y3958D01* Y3979D02* X2098Y3983D01* Y3991D01* X2102Y3996D01* X2118D01* X2122Y3991D01* Y3983D01* X2118Y3979D01* X2102D01* X2122Y4021D02* Y4004D01* X2106Y4021D01* X2102D01* X2098Y4016D01* Y4008D01* X2102Y4004D01* X1883Y3467D02* X1858D01* Y3480D01* X1862Y3484D01* X1870D01* X1874Y3480D01* Y3467D01* Y3475D02* X1883Y3484D01* X1858Y3492D02* X1874D01* X1883Y3500D01* X1874Y3509D01* X1858D01* X1883Y3517D02* Y3525D01* Y3521D01* X1858D01* X1862Y3517D01* Y3538D02* X1858Y3542D01* Y3550D01* X1862Y3555D01* X1878D01* X1883Y3550D01* Y3542D01* X1878Y3538D01* X1862D01* Y3563D02* X1858Y3567D01* Y3575D01* X1862Y3580D01* X1866D01* X1870Y3575D01* Y3571D01* Y3575D01* X1874Y3580D01* X1878D01* X1883Y3575D01* Y3567D01* X1878Y3563D01* X3573Y3130D02* Y3155D01* X3585D01* X3589Y3151D01* Y3142D01* X3585Y3138D01* X3573D01* X3581D02* X3589Y3130D01* X3598Y3155D02* Y3138D01* X3606Y3130D01* X3614Y3138D01* Y3155D01* X3623Y3130D02* X3631D01* X3627D01* Y3155D01* X3623Y3151D01* X3644D02* X3648Y3155D01* X3656D01* X3660Y3151D01* Y3134D01* X3656Y3130D01* X3648D01* X3644Y3134D01* Y3151D01* X3681Y3130D02* Y3155D01* X3669Y3142D01* X3685D01* X3563Y2933D02* Y2958D01* X3575D01* X3580Y2954D01* Y2946D01* X3575Y2941D01* X3563D01* X3571D02* X3580Y2933D01* X3588Y2958D02* Y2941D01* X3596Y2933D01* X3605Y2941D01* Y2958D01* X3613Y2933D02* X3621D01* X3617D01* Y2958D01* X3613Y2954D01* X3634D02* X3638Y2958D01* X3646D01* X3650Y2954D01* Y2937D01* X3646Y2933D01* X3638D01* X3634Y2937D01* Y2954D01* X3675Y2958D02* X3659D01* Y2946D01* X3667Y2950D01* X3671D01* X3675Y2946D01* Y2937D01* X3671Y2933D01* X3663D01* X3659Y2937D01* X3573Y2736D02* Y2761D01* X3585D01* X3589Y2757D01* Y2749D01* X3585Y2745D01* X3573D01* X3581D02* X3589Y2736D01* X3598Y2761D02* Y2745D01* X3606Y2736D01* X3614Y2745D01* Y2761D01* X3623Y2736D02* X3631D01* X3627D01* Y2761D01* X3623Y2757D01* X3644D02* X3648Y2761D01* X3656D01* X3660Y2757D01* Y2740D01* X3656Y2736D01* X3648D01* X3644Y2740D01* Y2757D01* X3685Y2761D02* X3677Y2757D01* X3669Y2749D01* Y2740D01* X3673Y2736D01* X3681D01* X3685Y2740D01* Y2745D01* X3681Y2749D01* X3669D01* X3573Y2539D02* Y2564D01* X3585D01* X3589Y2560D01* Y2552D01* X3585Y2548D01* X3573D01* X3581D02* X3589Y2539D01* X3598Y2564D02* Y2548D01* X3606Y2539D01* X3614Y2548D01* Y2564D01* X3623Y2539D02* X3631D01* X3627D01* Y2564D01* X3623Y2560D01* X3644D02* X3648Y2564D01* X3656D01* X3660Y2560D01* Y2544D01* X3656Y2539D01* X3648D01* X3644Y2544D01* Y2560D01* X3669Y2564D02* X3685D01* Y2560D01* X3669Y2544D01* Y2539D01* X3573Y2333D02* Y2358D01* X3585D01* X3589Y2354D01* Y2345D01* X3585Y2341D01* X3573D01* X3581D02* X3589Y2333D01* X3598Y2358D02* Y2341D01* X3606Y2333D01* X3614Y2341D01* Y2358D01* X3623Y2333D02* X3631D01* X3627D01* Y2358D01* X3623Y2354D01* X3644D02* X3648Y2358D01* X3656D01* X3660Y2354D01* Y2337D01* X3656Y2333D01* X3648D01* X3644Y2337D01* Y2354D01* X3669D02* X3673Y2358D01* X3681D01* X3685Y2354D01* Y2349D01* X3681Y2345D01* X3685Y2341D01* Y2337D01* X3681Y2333D01* X3673D01* X3669Y2337D01* Y2341D01* X3673Y2345D01* X3669Y2349D01* Y2354D01* X3673Y2345D02* X3681D01* X3566Y1248D02* Y1273D01* X3578D01* X3582Y1268D01* Y1260D01* X3578Y1256D01* X3566D01* X3574D02* X3582Y1248D01* X3591Y1273D02* Y1256D01* X3599Y1248D01* X3607Y1256D01* Y1273D01* X3616Y1248D02* X3624D01* X3620D01* Y1273D01* X3616Y1268D01* X3637D02* X3641Y1273D01* X3649D01* X3653Y1268D01* Y1252D01* X3649Y1248D01* X3641D01* X3637Y1252D01* Y1268D01* X3662Y1252D02* X3666Y1248D01* X3674D01* X3678Y1252D01* Y1268D01* X3674Y1273D01* X3666D01* X3662Y1268D01* Y1264D01* X3666Y1260D01* X3678D01* X3568Y1051D02* Y1076D01* X3580D01* X3584Y1071D01* Y1063D01* X3580Y1059D01* X3568D01* X3576D02* X3584Y1051D01* X3593Y1076D02* Y1059D01* X3601Y1051D01* X3609Y1059D01* Y1076D01* X3618Y1051D02* X3626D01* X3622D01* Y1076D01* X3618Y1071D01* X3638Y1051D02* X3647D01* X3643D01* Y1076D01* X3638Y1071D01* X3659D02* X3663Y1076D01* X3672D01* X3676Y1071D01* Y1055D01* X3672Y1051D01* X3663D01* X3659Y1055D01* Y1071D01* X3572Y853D02* Y878D01* X3584D01* X3588Y874D01* Y866D01* X3584Y861D01* X3572D01* X3580D02* X3588Y853D01* X3597Y878D02* Y861D01* X3605Y853D01* X3613Y861D01* Y878D01* X3622Y853D02* X3630D01* X3626D01* Y878D01* X3622Y874D01* X3643Y853D02* X3651D01* X3647D01* Y878D01* X3643Y874D01* X3663Y853D02* X3672D01* X3668D01* Y878D01* X3663Y874D01* X3568Y657D02* Y682D01* X3581D01* X3585Y678D01* Y670D01* X3581Y665D01* X3568D01* X3577D02* X3585Y657D01* X3593Y682D02* Y665D01* X3602Y657D01* X3610Y665D01* Y682D01* X3618Y657D02* X3627D01* X3622D01* Y682D01* X3618Y678D01* X3639Y657D02* X3647D01* X3643D01* Y682D01* X3639Y678D01* X3677Y657D02* X3660D01* X3677Y674D01* Y678D01* X3672Y682D01* X3664D01* X3660Y678D01* X3568Y460D02* Y485D01* X3580D01* X3585Y481D01* Y472D01* X3580Y468D01* X3568D01* X3576D02* X3585Y460D01* X3593Y485D02* Y468D01* X3601Y460D01* X3610Y468D01* Y485D01* X3618Y460D02* X3626D01* X3622D01* Y485D01* X3618Y481D01* X3639Y460D02* X3647D01* X3643D01* Y485D01* X3639Y481D01* X3660D02* X3664Y485D01* X3672D01* X3676Y481D01* Y476D01* X3672Y472D01* X3668D01* X3672D01* X3676Y468D01* Y464D01* X3672Y460D01* X3664D01* X3660Y464D01* X2998Y2814D02* X3018D01* X3023Y2818D01* Y2826D01* X3018Y2830D01* X2998D01* X3023Y2838D02* Y2847D01* Y2843D01* X2998D01* X3002Y2838D01* Y2859D02* X2998Y2863D01* Y2872D01* X3002Y2876D01* X3018D01* X3023Y2872D01* Y2863D01* X3018Y2859D01* X3002D01* Y2884D02* X2998Y2888D01* Y2897D01* X3002Y2901D01* X3018D01* X3023Y2897D01* Y2888D01* X3018Y2884D01* X3002D01* X3038Y998D02* X3058D01* X3063Y1002D01* Y1010D01* X3058Y1014D01* X3038D01* X3063Y1023D02* Y1031D01* Y1027D01* X3038D01* X3042Y1023D01* Y1043D02* X3038Y1048D01* Y1056D01* X3042Y1060D01* X3058D01* X3063Y1056D01* Y1048D01* X3058Y1043D01* X3042D01* X3063Y1068D02* Y1077D01* Y1073D01* X3038D01* X3042Y1068D01* X1930Y2837D02* Y2816D01* X1935Y2812D01* X1943D01* X1947Y2816D01* Y2837D01* X1972Y2812D02* X1955D01* X1972Y2829D01* Y2833D01* X1968Y2837D01* X1960D01* X1955Y2833D01* X1980D02* X1985Y2837D01* X1993D01* X1997Y2833D01* Y2816D01* X1993Y2812D01* X1985D01* X1980Y2816D01* Y2833D01* X2005D02* X2010Y2837D01* X2018D01* X2022Y2833D01* Y2816D01* X2018Y2812D01* X2010D01* X2005Y2816D01* Y2833D01* X234Y4112D02* X251Y4087D01* Y4112D02* X234Y4087D01* X259D02* X267D01* X263D01* Y4112D01* X259Y4108D01* X280D02* X284Y4112D01* X292D01* X296Y4108D01* Y4091D01* X292Y4087D01* X284D01* X280Y4091D01* Y4108D01* X305D02* X309Y4112D01* X317D01* X321Y4108D01* Y4091D01* X317Y4087D01* X309D01* X305Y4091D01* Y4108D01* X1922Y324D02* X1939Y299D01* Y324D02* X1922Y299D01* X1947D02* X1956D01* X1952D01* Y324D01* X1947Y320D01* X1968D02* X1972Y324D01* X1981D01* X1985Y320D01* Y303D01* X1981Y299D01* X1972D01* X1968Y303D01* Y320D01* X1993Y299D02* X2002D01* X1997D01* Y324D01* X1993Y320D01* X90Y730D02* X107Y705D01* Y730D02* X90Y705D01* X115D02* X123D01* X119D01* Y730D01* X115Y726D01* X136D02* X140Y730D01* X148D01* X152Y726D01* Y709D01* X148Y705D01* X140D01* X136Y709D01* Y726D01* X173Y705D02* Y730D01* X161Y717D01* X177D01* X2720Y3125D02* X2737Y3100D01* Y3125D02* X2720Y3100D01* X2745D02* X2753D01* X2749D01* Y3125D01* X2745Y3121D01* X2766D02* X2770Y3125D01* X2778D01* X2782Y3121D01* Y3104D01* X2778Y3100D01* X2770D01* X2766Y3104D01* Y3121D01* X2807Y3125D02* X2791D01* Y3112D01* X2799Y3117D01* X2803D01* X2807Y3112D01* Y3104D01* X2803Y3100D01* X2795D01* X2791Y3104D01* X2521Y335D02* X2538Y310D01* Y335D02* X2521Y310D01* X2546D02* X2554D01* X2550D01* Y335D01* X2546Y331D01* X2567D02* X2571Y335D01* X2579D01* X2583Y331D01* Y315D01* X2579Y310D01* X2571D01* X2567Y315D01* Y331D01* X2608Y335D02* X2600Y331D01* X2592Y323D01* Y315D01* X2596Y310D01* X2604D01* X2608Y315D01* Y319D01* X2604Y323D01* X2592D01* X2825Y1205D02* X2842Y1180D01* Y1205D02* X2825Y1180D01* X2850D02* X2858D01* X2854D01* Y1205D01* X2850Y1201D01* X2871D02* X2875Y1205D01* X2883D01* X2887Y1201D01* Y1184D01* X2883Y1180D01* X2875D01* X2871Y1184D01* Y1201D01* X2896Y1205D02* X2912D01* Y1201D01* X2896Y1184D01* Y1180D01* X1339Y319D02* X1356Y294D01* Y319D02* X1339Y294D01* X1381D02* X1364D01* X1381Y311D01* Y315D01* X1376Y319D01* X1368D01* X1364Y315D01* X1389D02* X1393Y319D01* X1401D01* X1406Y315D01* Y298D01* X1401Y294D01* X1393D01* X1389Y298D01* Y315D01* X1414D02* X1418Y319D01* X1426D01* X1431Y315D01* Y298D01* X1426Y294D01* X1418D01* X1414Y298D01* Y315D01* X835Y897D02* X860Y914D01* X835D02* X860Y897D01* X835Y922D02* Y930D01* Y926D01* X860D01* Y922D01* Y930D01* Y943D02* X843D01* X835Y951D01* X843Y959D01* X860D01* X848D01* Y943D01* X860Y968D02* Y976D01* Y972D01* X835D01* X839Y968D01* Y988D02* X835Y993D01* Y1001D01* X839Y1005D01* X856D01* X860Y1001D01* Y993D01* X856Y988D01* X839D01* Y1013D02* X835Y1018D01* Y1026D01* X839Y1030D01* X856D01* X860Y1026D01* Y1018D01* X856Y1013D01* X839D01* X833Y1927D02* X858Y1944D01* X833D02* X858Y1927D01* X833Y1952D02* Y1960D01* Y1956D01* X858D01* Y1952D01* Y1960D01* Y1973D02* X841D01* X833Y1981D01* X841Y1989D01* X858D01* X846D01* Y1973D01* X858Y1998D02* Y2006D01* Y2002D01* X833D01* X837Y1998D01* Y2018D02* X833Y2023D01* Y2031D01* X837Y2035D01* X854D01* X858Y2031D01* Y2023D01* X854Y2018D01* X837D01* X858Y2043D02* Y2052D01* Y2048D01* X833D01* X837Y2043D01* X2500Y2965D02* X2517Y2940D01* Y2965D02* X2500Y2940D01* X2525Y2965D02* X2533D01* X2529D01* Y2940D01* X2525D01* X2533D01* X2562Y2961D02* X2558Y2965D01* X2550D01* X2546Y2961D01* Y2944D01* X2550Y2940D01* X2558D01* X2562Y2944D01* X2571Y2965D02* Y2940D01* X2583D01* X2587Y2944D01* Y2961D01* X2583Y2965D01* X2571D01* X2612Y2940D02* X2596D01* X2612Y2957D01* Y2961D01* X2608Y2965D01* X2600D01* X2596Y2961D01* X2621D02* X2625Y2965D01* X2633D01* X2637Y2961D01* Y2944D01* X2633Y2940D01* X2625D01* X2621Y2944D01* Y2961D01* X2646D02* X2650Y2965D01* X2658D01* X2662Y2961D01* Y2944D01* X2658Y2940D01* X2650D01* X2646Y2944D01* Y2961D01* X3720Y1973D02* X3737Y1948D01* Y1973D02* X3720Y1948D01* X3745D02* Y1973D01* X3757D01* X3762Y1969D01* Y1960D01* X3757Y1956D01* X3745D01* X3770Y1948D02* X3778D01* X3774D01* Y1973D01* X3770Y1969D01* X3791D02* X3795Y1973D01* X3803D01* X3807Y1969D01* Y1952D01* X3803Y1948D01* X3795D01* X3791Y1952D01* Y1969D01* X3816D02* X3820Y1973D01* X3828D01* X3832Y1969D01* Y1952D01* X3828Y1948D01* X3820D01* X3816Y1952D01* Y1969D01* X3727Y3865D02* X3744Y3840D01* Y3865D02* X3727Y3840D01* X3752D02* Y3865D01* X3765D01* X3769Y3861D01* Y3852D01* X3765Y3848D01* X3752D01* X3777Y3840D02* X3786D01* X3782D01* Y3865D01* X3777Y3861D01* X3798D02* X3802Y3865D01* X3811D01* X3815Y3861D01* Y3844D01* X3811Y3840D01* X3802D01* X3798Y3844D01* Y3861D01* X3823Y3840D02* X3832D01* X3827D01* Y3865D01* X3823Y3861D01* X3720Y3667D02* X3737Y3642D01* Y3667D02* X3720Y3642D01* X3745D02* Y3667D01* X3757D01* X3762Y3663D01* Y3655D01* X3757Y3650D01* X3745D01* X3770Y3642D02* X3778D01* X3774D01* Y3667D01* X3770Y3663D01* X3791D02* X3795Y3667D01* X3803D01* X3807Y3663D01* Y3646D01* X3803Y3642D01* X3795D01* X3791Y3646D01* Y3663D01* X3832Y3642D02* X3816D01* X3832Y3659D01* Y3663D01* X3828Y3667D01* X3820D01* X3816Y3663D01* X3711Y1775D02* X3728Y1750D01* Y1775D02* X3711Y1750D01* X3736D02* Y1775D01* X3749D01* X3753Y1771D01* Y1762D01* X3749Y1758D01* X3736D01* X3761Y1750D02* X3770D01* X3766D01* Y1775D01* X3761Y1771D01* X3782D02* X3786Y1775D01* X3795D01* X3799Y1771D01* Y1754D01* X3795Y1750D01* X3786D01* X3782Y1754D01* Y1771D01* X3807D02* X3811Y1775D01* X3820D01* X3824Y1771D01* Y1767D01* X3820Y1762D01* X3816D01* X3820D01* X3824Y1758D01* Y1754D01* X3820Y1750D01* X3811D01* X3807Y1754D01* X3715Y3475D02* X3732Y3450D01* Y3475D02* X3715Y3450D01* X3740D02* Y3475D01* X3752D01* X3757Y3471D01* Y3463D01* X3752Y3458D01* X3740D01* X3765Y3450D02* X3773D01* X3769D01* Y3475D01* X3765Y3471D01* X3786D02* X3790Y3475D01* X3798D01* X3802Y3471D01* Y3454D01* X3798Y3450D01* X3790D01* X3786Y3454D01* Y3471D01* X3823Y3450D02* Y3475D01* X3811Y3463D01* X3827D01* X3720Y1585D02* X3737Y1560D01* Y1585D02* X3720Y1560D01* X3745D02* Y1585D01* X3757D01* X3762Y1581D01* Y1572D01* X3757Y1568D01* X3745D01* X3770Y1560D02* X3778D01* X3774D01* Y1585D01* X3770Y1581D01* X3791D02* X3795Y1585D01* X3803D01* X3807Y1581D01* Y1564D01* X3803Y1560D01* X3795D01* X3791Y1564D01* Y1581D01* X3832Y1585D02* X3816D01* Y1572D01* X3824Y1577D01* X3828D01* X3832Y1572D01* Y1564D01* X3828Y1560D01* X3820D01* X3816Y1564D01* X3715Y3275D02* X3732Y3250D01* Y3275D02* X3715Y3250D01* X3740D02* Y3275D01* X3752D01* X3757Y3271D01* Y3262D01* X3752Y3258D01* X3740D01* X3765Y3250D02* X3773D01* X3769D01* Y3275D01* X3765Y3271D01* X3786D02* X3790Y3275D01* X3798D01* X3802Y3271D01* Y3254D01* X3798Y3250D01* X3790D01* X3786Y3254D01* Y3271D01* X3827Y3275D02* X3819Y3271D01* X3811Y3262D01* Y3254D01* X3815Y3250D01* X3823D01* X3827Y3254D01* Y3258D01* X3823Y3262D01* X3811D01* X3727Y1385D02* X3744Y1360D01* Y1385D02* X3727Y1360D01* X3752D02* Y1385D01* X3765D01* X3769Y1381D01* Y1372D01* X3765Y1368D01* X3752D01* X3777Y1360D02* X3786D01* X3782D01* Y1385D01* X3777Y1381D01* X3798D02* X3802Y1385D01* X3811D01* X3815Y1381D01* Y1364D01* X3811Y1360D01* X3802D01* X3798Y1364D01* Y1381D01* X3823Y1385D02* X3840D01* Y1381D01* X3823Y1364D01* Y1360D01* X3720Y3075D02* X3737Y3050D01* Y3075D02* X3720Y3050D01* X3745D02* Y3075D01* X3757D01* X3762Y3071D01* Y3063D01* X3757Y3058D01* X3745D01* X3770Y3050D02* X3778D01* X3774D01* Y3075D01* X3770Y3071D01* X3791D02* X3795Y3075D01* X3803D01* X3807Y3071D01* Y3054D01* X3803Y3050D01* X3795D01* X3791Y3054D01* Y3071D01* X3816D02* X3820Y3075D01* X3828D01* X3832Y3071D01* Y3067D01* X3828Y3063D01* X3832Y3058D01* Y3054D01* X3828Y3050D01* X3820D01* X3816Y3054D01* Y3058D01* X3820Y3063D01* X3816Y3067D01* Y3071D01* X3820Y3063D02* X3828D01* X3720Y1189D02* X3737Y1164D01* Y1189D02* X3720Y1164D01* X3745D02* Y1189D01* X3757D01* X3762Y1185D01* Y1176D01* X3757Y1172D01* X3745D01* X3770Y1164D02* X3778D01* X3774D01* Y1189D01* X3770Y1185D01* X3791D02* X3795Y1189D01* X3803D01* X3807Y1185D01* Y1168D01* X3803Y1164D01* X3795D01* X3791Y1168D01* Y1185D01* X3816Y1168D02* X3820Y1164D01* X3828D01* X3832Y1168D01* Y1185D01* X3828Y1189D01* X3820D01* X3816Y1185D01* Y1181D01* X3820Y1176D01* X3832D01* X3720Y2883D02* X3737Y2858D01* Y2883D02* X3720Y2858D01* X3745D02* Y2883D01* X3757D01* X3762Y2879D01* Y2871D01* X3757Y2866D01* X3745D01* X3770Y2858D02* X3778D01* X3774D01* Y2883D01* X3770Y2879D01* X3791Y2858D02* X3799D01* X3795D01* Y2883D01* X3791Y2879D01* X3812D02* X3816Y2883D01* X3824D01* X3828Y2879D01* Y2862D01* X3824Y2858D01* X3816D01* X3812Y2862D01* Y2879D01* X3720Y990D02* X3737Y965D01* Y990D02* X3720Y965D01* X3745D02* Y990D01* X3757D01* X3762Y986D01* Y977D01* X3757Y973D01* X3745D01* X3770Y965D02* X3778D01* X3774D01* Y990D01* X3770Y986D01* X3791Y965D02* X3799D01* X3795D01* Y990D01* X3791Y986D01* X3812Y965D02* X3820D01* X3816D01* Y990D01* X3812Y986D01* X3727Y2685D02* X3744Y2660D01* Y2685D02* X3727Y2660D01* X3752D02* Y2685D01* X3765D01* X3769Y2681D01* Y2672D01* X3765Y2668D01* X3752D01* X3777Y2660D02* X3786D01* X3782D01* Y2685D01* X3777Y2681D01* X3798Y2660D02* X3807D01* X3802D01* Y2685D01* X3798Y2681D01* X3836Y2660D02* X3819D01* X3836Y2677D01* Y2681D01* X3832Y2685D01* X3823D01* X3819Y2681D01* X3720Y789D02* X3737Y764D01* Y789D02* X3720Y764D01* X3745D02* Y789D01* X3757D01* X3762Y785D01* Y776D01* X3757Y772D01* X3745D01* X3770Y764D02* X3778D01* X3774D01* Y789D01* X3770Y785D01* X3791Y764D02* X3799D01* X3795D01* Y789D01* X3791Y785D01* X3812D02* X3816Y789D01* X3824D01* X3828Y785D01* Y781D01* X3824Y776D01* X3820D01* X3824D01* X3828Y772D01* Y768D01* X3824Y764D01* X3816D01* X3812Y768D01* X3720Y2485D02* X3737Y2460D01* Y2485D02* X3720Y2460D01* X3745D02* Y2485D01* X3757D01* X3762Y2481D01* Y2472D01* X3757Y2468D01* X3745D01* X3770Y2460D02* X3778D01* X3774D01* Y2485D01* X3770Y2481D01* X3791Y2460D02* X3799D01* X3795D01* Y2485D01* X3791Y2481D01* X3824Y2460D02* Y2485D01* X3812Y2472D01* X3828D01* X3725Y597D02* X3742Y572D01* Y597D02* X3725Y572D01* X3750D02* Y597D01* X3762D01* X3767Y593D01* Y584D01* X3762Y580D01* X3750D01* X3775Y572D02* X3783D01* X3779D01* Y597D01* X3775Y593D01* X3796Y572D02* X3804D01* X3800D01* Y597D01* X3796Y593D01* X3833Y597D02* X3817D01* Y584D01* X3825Y589D01* X3829D01* X3833Y584D01* Y576D01* X3829Y572D01* X3821D01* X3817Y576D01* X3727Y2285D02* X3744Y2260D01* Y2285D02* X3727Y2260D01* X3752D02* Y2285D01* X3765D01* X3769Y2281D01* Y2272D01* X3765Y2268D01* X3752D01* X3777Y2260D02* X3786D01* X3782D01* Y2285D01* X3777Y2281D01* X3798Y2260D02* X3807D01* X3802D01* Y2285D01* X3798Y2281D01* X3836Y2285D02* X3827Y2281D01* X3819Y2272D01* Y2264D01* X3823Y2260D01* X3832D01* X3836Y2264D01* Y2268D01* X3832Y2272D01* X3819D01* X3730Y405D02* X3747Y380D01* Y405D02* X3730Y380D01* X3755D02* Y405D01* X3767D01* X3772Y401D01* Y392D01* X3767Y388D01* X3755D01* X3780Y380D02* X3788D01* X3784D01* Y405D01* X3780Y401D01* X3801Y380D02* X3809D01* X3805D01* Y405D01* X3801Y401D01* X3822Y405D02* X3838D01* Y401D01* X3822Y384D01* Y380D01* X1128Y2960D02* X1145Y2935D01* Y2960D02* X1128Y2935D01* X1170Y2956D02* X1165Y2960D01* X1157D01* X1153Y2956D01* Y2952D01* X1157Y2947D01* X1165D01* X1170Y2943D01* Y2939D01* X1165Y2935D01* X1157D01* X1153Y2939D01* X1178Y2960D02* X1195D01* X1186D01* Y2935D01* X1220D02* X1203D01* X1220Y2952D01* Y2956D01* X1215Y2960D01* X1207D01* X1203Y2956D01* X1228D02* X1232Y2960D01* X1240D01* X1245Y2956D01* Y2939D01* X1240Y2935D01* X1232D01* X1228Y2939D01* Y2956D01* X1253D02* X1257Y2960D01* X1265D01* X1270Y2956D01* Y2939D01* X1265Y2935D01* X1257D01* X1253Y2939D01* Y2956D01* X2227Y329D02* X2244Y304D01* Y329D02* X2227Y304D01* X2269D02* X2252D01* X2269Y321D01* Y325D01* X2264Y329D01* X2256D01* X2252Y325D01* X2277D02* X2281Y329D01* X2289D01* X2293Y325D01* Y308D01* X2289Y304D01* X2281D01* X2277Y308D01* Y325D01* X2302Y304D02* X2310D01* X2306D01* Y329D01* X2302Y325D01* X1628Y324D02* X1645Y299D01* Y324D02* X1628Y299D01* X1653D02* X1662D01* X1657D01* Y324D01* X1653Y320D01* X1674D02* X1678Y324D01* X1687D01* X1691Y320D01* Y303D01* X1687Y299D01* X1678D01* X1674Y303D01* Y320D01* X1716Y299D02* X1699D01* X1716Y316D01* Y320D01* X1711Y324D01* X1703D01* X1699Y320D01* X3405Y2050D02* Y2029D01* X3409Y2025D01* X3417D01* X3422Y2029D01* Y2050D01* X3447Y2025D02* X3430D01* X3447Y2041D01* Y2045D01* X3442Y2050D01* X3434D01* X3430Y2045D01* X3455D02* X3459Y2050D01* X3467D01* X3472Y2045D01* Y2029D01* X3467Y2025D01* X3459D01* X3455Y2029D01* Y2045D01* X3480Y2025D02* X3488D01* X3484D01* Y2050D01* X3480Y2045D01* X2794Y1943D02* X2811D01* X2803D01* Y1918D01* X2836D02* X2819D01* X2836Y1935D01* Y1939D01* X2832Y1943D01* X2824D01* X2819Y1939D01* X2844D02* X2849Y1943D01* X2857D01* X2861Y1939D01* Y1922D01* X2857Y1918D01* X2849D01* X2844Y1922D01* Y1939D01* X2869D02* X2874Y1943D01* X2882D01* X2886Y1939D01* Y1935D01* X2882Y1931D01* X2878D01* X2882D01* X2886Y1926D01* Y1922D01* X2882Y1918D01* X2874D01* X2869Y1922D01* X2934Y1938D02* X2951D01* X2943D01* Y1913D01* X2976D02* X2959D01* X2976Y1930D01* Y1934D01* X2972Y1938D01* X2964D01* X2959Y1934D01* X2984D02* X2989Y1938D01* X2997D01* X3001Y1934D01* Y1918D01* X2997Y1913D01* X2989D01* X2984Y1918D01* Y1934D01* X3026Y1913D02* X3009D01* X3026Y1930D01* Y1934D01* X3022Y1938D01* X3014D01* X3009Y1934D01* X2871Y1617D02* X2888D01* X2880D01* Y1592D01* X2913D02* X2896D01* X2913Y1609D01* Y1613D01* X2909Y1617D01* X2901D01* X2896Y1613D01* X2921D02* X2926Y1617D01* X2934D01* X2938Y1613D01* Y1596D01* X2934Y1592D01* X2926D01* X2921Y1596D01* Y1613D01* X2946Y1592D02* X2955D01* X2951D01* Y1617D01* X2946Y1613D01* X3364Y1857D02* X3381D01* X3372D01* Y1832D01* X3406D02* X3389D01* X3406Y1849D01* Y1853D01* X3401Y1857D01* X3393D01* X3389Y1853D01* X3414D02* X3418Y1857D01* X3426D01* X3431Y1853D01* Y1836D01* X3426Y1832D01* X3418D01* X3414Y1836D01* Y1853D01* X3439D02* X3443Y1857D01* X3451D01* X3456Y1853D01* Y1836D01* X3451Y1832D01* X3443D01* X3439Y1836D01* Y1853D01* X2464Y1902D02* Y1927D01* X2477D01* X2481Y1923D01* Y1915D01* X2477Y1910D01* X2464D01* X2473D02* X2481Y1902D01* X2506D02* X2489D01* X2506Y1919D01* Y1923D01* X2502Y1927D01* X2494D01* X2489Y1923D01* X2531Y1927D02* X2514D01* Y1915D01* X2523Y1919D01* X2527D01* X2531Y1915D01* Y1906D01* X2527Y1902D01* X2519D01* X2514Y1906D01* X2539Y1923D02* X2544Y1927D01* X2552D01* X2556Y1923D01* Y1919D01* X2552Y1915D01* X2548D01* X2552D01* X2556Y1910D01* Y1906D01* X2552Y1902D01* X2544D01* X2539Y1906D01* X2928Y1712D02* Y1737D01* X2941D01* X2945Y1733D01* Y1725D01* X2941Y1720D01* X2928D01* X2937D02* X2945Y1712D01* X2970D02* X2953D01* X2970Y1729D01* Y1733D01* X2966Y1737D01* X2958D01* X2953Y1733D01* X2995Y1737D02* X2978D01* Y1725D01* X2987Y1729D01* X2991D01* X2995Y1725D01* Y1716D01* X2991Y1712D01* X2983D01* X2978Y1716D01* X3003Y1712D02* X3012D01* X3008D01* Y1737D01* X3003Y1733D01* X2924Y1802D02* Y1827D01* X2937D01* X2941Y1823D01* Y1815D01* X2937Y1810D01* X2924D01* X2933D02* X2941Y1802D01* X2966D02* X2949D01* X2966Y1819D01* Y1823D01* X2962Y1827D01* X2954D01* X2949Y1823D01* X2991Y1827D02* X2974D01* Y1815D01* X2983Y1819D01* X2987D01* X2991Y1815D01* Y1806D01* X2987Y1802D01* X2979D01* X2974Y1806D01* X2999Y1823D02* X3004Y1827D01* X3012D01* X3016Y1823D01* Y1806D01* X3012Y1802D01* X3004D01* X2999Y1806D01* Y1823D01* X3084Y1912D02* Y1937D01* X3097D01* X3101Y1933D01* Y1925D01* X3097Y1920D01* X3084D01* X3093D02* X3101Y1912D01* X3126D02* X3109D01* X3126Y1929D01* Y1933D01* X3122Y1937D01* X3114D01* X3109Y1933D01* X3147Y1912D02* Y1937D01* X3134Y1925D01* X3151D01* X3159Y1916D02* X3164Y1912D01* X3172D01* X3176Y1916D01* Y1933D01* X3172Y1937D01* X3164D01* X3159Y1933D01* Y1929D01* X3164Y1925D01* X3176D01* X3014Y2192D02* Y2217D01* X3027D01* X3031Y2213D01* Y2205D01* X3027Y2200D01* X3014D01* X3023D02* X3031Y2192D01* X3056D02* X3039D01* X3056Y2209D01* Y2213D01* X3052Y2217D01* X3044D01* X3039Y2213D01* X3077Y2192D02* Y2217D01* X3064Y2205D01* X3081D01* X3089Y2213D02* X3094Y2217D01* X3102D01* X3106Y2213D01* Y2209D01* X3102Y2205D01* X3106Y2200D01* Y2196D01* X3102Y2192D01* X3094D01* X3089Y2196D01* Y2200D01* X3094Y2205D01* X3089Y2209D01* Y2213D01* X3094Y2205D02* X3102D01* X3084Y1802D02* Y1827D01* X3097D01* X3101Y1823D01* Y1815D01* X3097Y1810D01* X3084D01* X3093D02* X3101Y1802D01* X3126D02* X3109D01* X3126Y1819D01* Y1823D01* X3122Y1827D01* X3114D01* X3109Y1823D01* X3147Y1802D02* Y1827D01* X3134Y1815D01* X3151D01* X3159Y1827D02* X3176D01* Y1823D01* X3159Y1806D01* Y1802D01* X3084Y2002D02* Y2027D01* X3097D01* X3101Y2023D01* Y2015D01* X3097Y2010D01* X3084D01* X3093D02* X3101Y2002D01* X3126D02* X3109D01* X3126Y2019D01* Y2023D01* X3122Y2027D01* X3114D01* X3109Y2023D01* X3147Y2002D02* Y2027D01* X3134Y2015D01* X3151D01* X3176Y2027D02* X3168Y2023D01* X3159Y2015D01* Y2006D01* X3164Y2002D01* X3172D01* X3176Y2006D01* Y2010D01* X3172Y2015D01* X3159D01* X3670Y1960D02* X3645D01* Y1972D01* X3649Y1976D01* X3658D01* X3662Y1972D01* Y1960D01* Y1968D02* X3670Y1976D01* Y2001D02* Y1985D01* X3653Y2001D01* X3649D01* X3645Y1997D01* Y1989D01* X3649Y1985D01* X3670Y2022D02* X3645D01* X3658Y2010D01* Y2026D01* X3645Y2051D02* Y2035D01* X3658D01* X3653Y2043D01* Y2047D01* X3658Y2051D01* X3666D01* X3670Y2047D01* Y2039D01* X3666Y2035D01* X3344Y1707D02* Y1732D01* X3357D01* X3361Y1728D01* Y1720D01* X3357Y1716D01* X3344D01* X3353D02* X3361Y1707D01* X3386D02* X3369D01* X3386Y1724D01* Y1728D01* X3382Y1732D01* X3374D01* X3369Y1728D01* X3407Y1707D02* Y1732D01* X3394Y1720D01* X3411D01* X3432Y1707D02* Y1732D01* X3419Y1720D01* X3436D01* X3184Y2194D02* Y2219D01* X3197D01* X3201Y2215D01* Y2207D01* X3197Y2202D01* X3184D01* X3193D02* X3201Y2194D01* X3226D02* X3209D01* X3226Y2211D01* Y2215D01* X3222Y2219D01* X3214D01* X3209Y2215D01* X3247Y2194D02* Y2219D01* X3234Y2207D01* X3251D01* X3259Y2215D02* X3264Y2219D01* X3272D01* X3276Y2215D01* Y2211D01* X3272Y2207D01* X3268D01* X3272D01* X3276Y2202D01* Y2198D01* X3272Y2194D01* X3264D01* X3259Y2198D01* X2564Y1192D02* Y1217D01* X2577D01* X2581Y1213D01* Y1205D01* X2577Y1200D01* X2564D01* X2573D02* X2581Y1192D01* X2606D02* X2589D01* X2606Y1209D01* Y1213D01* X2602Y1217D01* X2594D01* X2589Y1213D01* X2627Y1192D02* Y1217D01* X2614Y1205D01* X2631D01* X2639Y1213D02* X2644Y1217D01* X2652D01* X2656Y1213D01* Y1196D01* X2652Y1192D01* X2644D01* X2639Y1196D01* Y1213D01* X1904Y1892D02* Y1917D01* X1917D01* X1921Y1913D01* Y1905D01* X1917Y1900D01* X1904D01* X1913D02* X1921Y1892D01* X1946D02* X1929D01* X1946Y1909D01* Y1913D01* X1942Y1917D01* X1934D01* X1929Y1913D01* X1954D02* X1959Y1917D01* X1967D01* X1971Y1913D01* Y1909D01* X1967Y1905D01* X1963D01* X1967D01* X1971Y1900D01* Y1896D01* X1967Y1892D01* X1959D01* X1954Y1896D01* X1979D02* X1984Y1892D01* X1992D01* X1996Y1896D01* Y1913D01* X1992Y1917D01* X1984D01* X1979Y1913D01* Y1909D01* X1984Y1905D01* X1996D01* X1644Y1712D02* Y1737D01* X1657D01* X1661Y1733D01* Y1725D01* X1657Y1720D01* X1644D01* X1653D02* X1661Y1712D01* X1686D02* X1669D01* X1686Y1729D01* Y1733D01* X1682Y1737D01* X1674D01* X1669Y1733D01* X1694D02* X1699Y1737D01* X1707D01* X1711Y1733D01* Y1729D01* X1707Y1725D01* X1703D01* X1707D01* X1711Y1720D01* Y1716D01* X1707Y1712D01* X1699D01* X1694Y1716D01* X1719Y1733D02* X1724Y1737D01* X1732D01* X1736Y1733D01* Y1729D01* X1732Y1725D01* X1736Y1720D01* Y1716D01* X1732Y1712D01* X1724D01* X1719Y1716D01* Y1720D01* X1724Y1725D01* X1719Y1729D01* Y1733D01* X1724Y1725D02* X1732D01* X2490Y1140D02* X2465D01* Y1152D01* X2469Y1156D01* X2478D01* X2482Y1152D01* Y1140D01* Y1148D02* X2490Y1156D01* Y1181D02* Y1165D01* X2473Y1181D01* X2469D01* X2465Y1177D01* Y1169D01* X2469Y1165D01* Y1190D02* X2465Y1194D01* Y1202D01* X2469Y1206D01* X2473D01* X2478Y1202D01* Y1198D01* Y1202D01* X2482Y1206D01* X2486D01* X2490Y1202D01* Y1194D01* X2486Y1190D01* X2465Y1231D02* Y1215D01* X2478D01* X2473Y1223D01* Y1227D01* X2478Y1231D01* X2486D01* X2490Y1227D01* Y1219D01* X2486Y1215D01* X2580Y1300D02* X2555D01* Y1312D01* X2559Y1316D01* X2568D01* X2572Y1312D01* Y1300D01* Y1308D02* X2580Y1316D01* Y1341D02* Y1325D01* X2563Y1341D01* X2559D01* X2555Y1337D01* Y1329D01* X2559Y1325D01* Y1350D02* X2555Y1354D01* Y1362D01* X2559Y1366D01* X2563D01* X2568Y1362D01* Y1358D01* Y1362D01* X2572Y1366D01* X2576D01* X2580Y1362D01* Y1354D01* X2576Y1350D01* X2580Y1387D02* X2555D01* X2568Y1375D01* Y1391D01* X1904Y1712D02* Y1737D01* X1917D01* X1921Y1733D01* Y1725D01* X1917Y1720D01* X1904D01* X1913D02* X1921Y1712D01* X1946D02* X1929D01* X1946Y1729D01* Y1733D01* X1942Y1737D01* X1934D01* X1929Y1733D01* X1954D02* X1959Y1737D01* X1967D01* X1971Y1733D01* Y1729D01* X1967Y1725D01* X1963D01* X1967D01* X1971Y1720D01* Y1716D01* X1967Y1712D01* X1959D01* X1954Y1716D01* X1979Y1733D02* X1984Y1737D01* X1992D01* X1996Y1733D01* Y1729D01* X1992Y1725D01* X1988D01* X1992D01* X1996Y1720D01* Y1716D01* X1992Y1712D01* X1984D01* X1979Y1716D01* X1904Y1982D02* Y2007D01* X1917D01* X1921Y2003D01* Y1995D01* X1917Y1990D01* X1904D01* X1913D02* X1921Y1982D01* X1946D02* X1929D01* X1946Y1999D01* Y2003D01* X1942Y2007D01* X1934D01* X1929Y2003D01* X1954D02* X1959Y2007D01* X1967D01* X1971Y2003D01* Y1999D01* X1967Y1995D01* X1963D01* X1967D01* X1971Y1990D01* Y1986D01* X1967Y1982D01* X1959D01* X1954Y1986D01* X1996Y1982D02* X1979D01* X1996Y1999D01* Y2003D01* X1992Y2007D01* X1984D01* X1979Y2003D01* X1679Y1555D02* X1655D01* Y1567D01* X1659Y1572D01* X1667D01* X1671Y1567D01* Y1555D01* Y1563D02* X1679Y1572D01* Y1597D02* Y1580D01* X1663Y1597D01* X1659D01* X1655Y1592D01* Y1584D01* X1659Y1580D01* Y1605D02* X1655Y1609D01* Y1617D01* X1659Y1622D01* X1663D01* X1667Y1617D01* Y1613D01* Y1617D01* X1671Y1622D01* X1675D01* X1679Y1617D01* Y1609D01* X1675Y1605D01* X1679Y1630D02* Y1638D01* Y1634D01* X1655D01* X1659Y1630D01* X1578Y1812D02* X1553D01* Y1824D01* X1557Y1828D01* X1566D01* X1570Y1824D01* Y1812D01* Y1820D02* X1578Y1828D01* Y1853D02* Y1837D01* X1561Y1853D01* X1557D01* X1553Y1849D01* Y1841D01* X1557Y1837D01* Y1862D02* X1553Y1866D01* Y1874D01* X1557Y1878D01* X1561D01* X1566Y1874D01* Y1870D01* Y1874D01* X1570Y1878D01* X1574D01* X1578Y1874D01* Y1866D01* X1574Y1862D01* X1557Y1887D02* X1553Y1891D01* Y1899D01* X1557Y1903D01* X1574D01* X1578Y1899D01* Y1891D01* X1574Y1887D01* X1557D01* X2344Y2552D02* Y2577D01* X2356D01* X2361Y2572D01* Y2564D01* X2356Y2560D01* X2344D01* X2352D02* X2361Y2552D01* X2386D02* X2369D01* X2386Y2568D01* Y2572D01* X2381Y2577D01* X2373D01* X2369Y2572D01* X2411Y2552D02* X2394D01* X2411Y2568D01* Y2572D01* X2406Y2577D01* X2398D01* X2394Y2572D01* X2436Y2552D02* X2419D01* X2436Y2568D01* Y2572D01* X2431Y2577D01* X2423D01* X2419Y2572D01* X1353Y2557D02* Y2582D01* X1365D01* X1370Y2578D01* Y2569D01* X1365Y2565D01* X1353D01* X1361D02* X1370Y2557D01* X1395D02* X1378D01* X1395Y2573D01* Y2578D01* X1390Y2582D01* X1382D01* X1378Y2578D01* X1420Y2557D02* X1403D01* X1420Y2573D01* Y2578D01* X1415Y2582D01* X1407D01* X1403Y2578D01* X1428Y2557D02* X1436D01* X1432D01* Y2582D01* X1428Y2578D01* X1350Y2654D02* Y2679D01* X1362D01* X1367Y2675D01* Y2667D01* X1362Y2662D01* X1350D01* X1358D02* X1367Y2654D01* X1392D02* X1375D01* X1392Y2671D01* Y2675D01* X1387Y2679D01* X1379D01* X1375Y2675D01* X1417Y2654D02* X1400D01* X1417Y2671D01* Y2675D01* X1412Y2679D01* X1404D01* X1400Y2675D01* X1425D02* X1429Y2679D01* X1437D01* X1442Y2675D01* Y2658D01* X1437Y2654D01* X1429D01* X1425Y2658D01* Y2675D01* X2350Y2656D02* X2325D01* Y2669D01* X2329Y2673D01* X2337D01* X2342Y2669D01* Y2656D01* Y2664D02* X2350Y2673D01* Y2698D02* Y2681D01* X2333Y2698D01* X2329D01* X2325Y2694D01* Y2685D01* X2329Y2681D01* X2350Y2706D02* Y2714D01* Y2710D01* X2325D01* X2329Y2706D01* X2346Y2727D02* X2350Y2731D01* Y2739D01* X2346Y2743D01* X2329D01* X2325Y2739D01* Y2731D01* X2329Y2727D01* X2333D01* X2337Y2731D01* Y2743D01* X2486Y1792D02* Y1817D01* X2499D01* X2503Y1813D01* Y1805D01* X2499Y1800D01* X2486D01* X2495D02* X2503Y1792D01* X2528D02* X2511D01* X2528Y1809D01* Y1813D01* X2524Y1817D01* X2516D01* X2511Y1813D01* X2536Y1792D02* X2545D01* X2541D01* Y1817D01* X2536Y1813D01* X2574Y1792D02* X2557D01* X2574Y1809D01* Y1813D01* X2570Y1817D01* X2561D01* X2557Y1813D01* X3090Y2092D02* Y2117D01* X3103D01* X3107Y2113D01* Y2105D01* X3103Y2100D01* X3090D01* X3099D02* X3107Y2092D01* X3132D02* X3115D01* X3132Y2109D01* Y2113D01* X3128Y2117D01* X3120D01* X3115Y2113D01* X3140Y2092D02* X3149D01* X3145D01* Y2117D01* X3140Y2113D01* X3161Y2092D02* X3170D01* X3165D01* Y2117D01* X3161Y2113D01* X3084Y1712D02* Y1737D01* X3097D01* X3101Y1733D01* Y1725D01* X3097Y1720D01* X3084D01* X3093D02* X3101Y1712D01* X3126D02* X3109D01* X3126Y1729D01* Y1733D01* X3122Y1737D01* X3114D01* X3109Y1733D01* X3134D02* X3139Y1737D01* X3147D01* X3151Y1733D01* Y1716D01* X3147Y1712D01* X3139D01* X3134Y1716D01* Y1733D01* X3176Y1737D02* X3168Y1733D01* X3159Y1725D01* Y1716D01* X3164Y1712D01* X3172D01* X3176Y1716D01* Y1720D01* X3172Y1725D01* X3159D01* X2665Y1295D02* X2640D01* Y1307D01* X2644Y1311D01* X2653D01* X2657Y1307D01* Y1295D01* Y1303D02* X2665Y1311D01* Y1336D02* Y1320D01* X2648Y1336D01* X2644D01* X2640Y1332D01* Y1324D01* X2644Y1320D01* Y1345D02* X2640Y1349D01* Y1357D01* X2644Y1361D01* X2661D01* X2665Y1357D01* Y1349D01* X2661Y1345D01* X2644D01* X2640Y1386D02* Y1370D01* X2653D01* X2648Y1378D01* Y1382D01* X2653Y1386D01* X2661D01* X2665Y1382D01* Y1374D01* X2661Y1370D01* X1805Y2081D02* Y2106D01* X1817D01* X1822Y2101D01* Y2093D01* X1817Y2089D01* X1805D01* X1813D02* X1822Y2081D01* X1847D02* X1830D01* X1847Y2097D01* Y2101D01* X1842Y2106D01* X1834D01* X1830Y2101D01* X1855D02* X1859Y2106D01* X1867D01* X1872Y2101D01* Y2085D01* X1867Y2081D01* X1859D01* X1855Y2085D01* Y2101D01* X1892Y2081D02* Y2106D01* X1880Y2093D01* X1897D01* X1484Y1717D02* Y1742D01* X1497D01* X1501Y1738D01* Y1730D01* X1497Y1725D01* X1484D01* X1493D02* X1501Y1717D01* X1526D02* X1509D01* X1526Y1734D01* Y1738D01* X1522Y1742D01* X1514D01* X1509Y1738D01* X1534D02* X1539Y1742D01* X1547D01* X1551Y1738D01* Y1721D01* X1547Y1717D01* X1539D01* X1534Y1721D01* Y1738D01* X1559D02* X1564Y1742D01* X1572D01* X1576Y1738D01* Y1734D01* X1572Y1730D01* X1568D01* X1572D01* X1576Y1725D01* Y1721D01* X1572Y1717D01* X1564D01* X1559Y1721D01* X2700Y1836D02* Y1820D01* X2725D01* Y1836D01* X2713Y1820D02* Y1828D01* X2700Y1861D02* X2704Y1853D01* X2713Y1845D01* X2721D01* X2725Y1849D01* Y1857D01* X2721Y1861D01* X2717D01* X2713Y1857D01* Y1845D01* X2704Y1870D02* X2700Y1874D01* Y1882D01* X2704Y1886D01* X2721D01* X2725Y1882D01* Y1874D01* X2721Y1870D01* X2704D01* Y1895D02* X2700Y1899D01* Y1907D01* X2704Y1911D01* X2708D01* X2713Y1907D01* Y1903D01* Y1907D01* X2717Y1911D01* X2721D01* X2725Y1907D01* Y1899D01* X2721Y1895D01* X3431Y2237D02* X3414D01* Y2212D01* X3431D01* X3414Y2225D02* X3423D01* X3456Y2212D02* X3439D01* X3456Y2229D01* Y2233D01* X3452Y2237D01* X3444D01* X3439Y2233D01* X3464D02* X3469Y2237D01* X3477D01* X3481Y2233D01* Y2216D01* X3477Y2212D01* X3469D01* X3464Y2216D01* Y2233D01* X3506Y2237D02* X3498Y2233D01* X3489Y2225D01* Y2216D01* X3494Y2212D01* X3502D01* X3506Y2216D01* Y2220D01* X3502Y2225D01* X3489D01* X2496Y1707D02* X2479D01* Y1682D01* X2496D01* X2479Y1695D02* X2488D01* X2521Y1682D02* X2504D01* X2521Y1699D01* Y1703D01* X2517Y1707D01* X2509D01* X2504Y1703D01* X2529D02* X2534Y1707D01* X2542D01* X2546Y1703D01* Y1687D01* X2542Y1682D01* X2534D01* X2529Y1687D01* Y1703D01* X2571Y1707D02* X2554D01* Y1695D01* X2563Y1699D01* X2567D01* X2571Y1695D01* Y1687D01* X2567Y1682D01* X2559D01* X2554Y1687D01* X2735Y1285D02* X2760D01* Y1297D01* X2756Y1301D01* X2739D01* X2735Y1297D01* Y1285D01* Y1310D02* Y1326D01* X2739D01* X2756Y1310D01* X2760D01* Y1326D01* Y1351D02* Y1335D01* X2743Y1351D01* X2739D01* X2735Y1347D01* Y1339D01* X2739Y1335D01* X2760Y1360D02* Y1368D01* Y1364D01* X2735D01* X2739Y1360D01* X2735Y1397D02* Y1380D01* X2748D01* X2743Y1389D01* Y1393D01* X2748Y1397D01* X2756D01* X2760Y1393D01* Y1385D01* X2756Y1380D01* X2580Y1010D02* X2605D01* Y1022D01* X2601Y1026D01* X2584D01* X2580Y1022D01* Y1010D01* Y1035D02* Y1051D01* X2584D01* X2601Y1035D01* X2605D01* Y1051D01* Y1076D02* Y1060D01* X2588Y1076D01* X2584D01* X2580Y1072D01* Y1064D01* X2584Y1060D01* X2605Y1085D02* Y1093D01* Y1089D01* X2580D01* X2584Y1085D01* X2605Y1118D02* X2580D01* X2593Y1105D01* Y1122D01* X1809Y1715D02* X1834D01* Y1727D01* X1830Y1732D01* X1813D01* X1809Y1727D01* Y1715D01* Y1740D02* Y1757D01* X1813D01* X1830Y1740D01* X1834D01* Y1757D01* Y1781D02* Y1765D01* X1817Y1781D01* X1813D01* X1809Y1777D01* Y1769D01* X1813Y1765D01* X1834Y1790D02* Y1798D01* Y1794D01* X1809D01* X1813Y1790D01* Y1811D02* X1809Y1815D01* Y1823D01* X1813Y1827D01* X1817D01* X1822Y1823D01* Y1819D01* Y1823D01* X1826Y1827D01* X1830D01* X1834Y1823D01* Y1815D01* X1830Y1811D01* X1840Y1545D02* X1865D01* Y1557D01* X1861Y1561D01* X1844D01* X1840Y1557D01* Y1545D01* Y1570D02* Y1586D01* X1844D01* X1861Y1570D01* X1865D01* Y1586D01* Y1611D02* Y1595D01* X1848Y1611D01* X1844D01* X1840Y1607D01* Y1599D01* X1844Y1595D01* X1865Y1620D02* Y1628D01* Y1624D01* X1840D01* X1844Y1620D01* X1865Y1657D02* Y1640D01* X1848Y1657D01* X1844D01* X1840Y1653D01* Y1645D01* X1844Y1640D01* X1666Y1924D02* X1691D01* Y1936D01* X1687Y1941D01* X1670D01* X1666Y1936D01* Y1924D01* Y1949D02* Y1966D01* X1670D01* X1687Y1949D01* X1691D01* Y1966D01* Y1990D02* Y1974D01* X1674Y1990D01* X1670D01* X1666Y1986D01* Y1978D01* X1670Y1974D01* X1691Y1999D02* Y2007D01* Y2003D01* X1666D01* X1670Y1999D01* X1691Y2020D02* Y2028D01* Y2024D01* X1666D01* X1670Y2020D01* X1740Y1535D02* X1765D01* Y1547D01* X1761Y1551D01* X1744D01* X1740Y1547D01* Y1535D01* Y1560D02* Y1576D01* X1744D01* X1761Y1560D01* X1765D01* Y1576D01* Y1601D02* Y1585D01* X1748Y1601D01* X1744D01* X1740Y1597D01* Y1589D01* X1744Y1585D01* X1765Y1610D02* Y1618D01* Y1614D01* X1740D01* X1744Y1610D01* Y1630D02* X1740Y1635D01* Y1643D01* X1744Y1647D01* X1761D01* X1765Y1643D01* Y1635D01* X1761Y1630D01* X1744D01* X2471Y1587D02* Y1562D01* X2484D01* X2488Y1566D01* Y1583D01* X2484Y1587D01* X2471D01* X2496D02* X2513D01* Y1583D01* X2496Y1566D01* Y1562D01* X2513D01* X2538D02* X2521D01* X2538Y1579D01* Y1583D01* X2534Y1587D01* X2526D01* X2521Y1583D01* X2546D02* X2551Y1587D01* X2559D01* X2563Y1583D01* Y1566D01* X2559Y1562D01* X2551D01* X2546Y1566D01* Y1583D01* X2588Y1587D02* X2580Y1583D01* X2571Y1575D01* Y1566D01* X2576Y1562D01* X2584D01* X2588Y1566D01* Y1570D01* X2584Y1575D01* X2571D01* X3215Y1627D02* Y1602D01* X3228D01* X3232Y1606D01* Y1623D01* X3228Y1627D01* X3215D01* X3240D02* X3257D01* Y1623D01* X3240Y1606D01* Y1602D01* X3257D01* X3282D02* X3265D01* X3282Y1619D01* Y1623D01* X3278Y1627D01* X3270D01* X3265Y1623D01* X3290D02* X3295Y1627D01* X3303D01* X3307Y1623D01* Y1606D01* X3303Y1602D01* X3295D01* X3290Y1606D01* Y1623D01* X3315Y1602D02* X3324D01* X3320D01* Y1627D01* X3315Y1623D01* X2670Y1710D02* Y1685D01* X2682D01* X2687Y1689D01* Y1705D01* X2682Y1710D01* X2670D01* X2712Y1705D02* X2707Y1710D01* X2699D01* X2695Y1705D01* Y1701D01* X2699Y1697D01* X2707D01* X2712Y1693D01* Y1689D01* X2707Y1685D01* X2699D01* X2695Y1689D01* X2737Y1685D02* X2720D01* X2737Y1701D01* Y1705D01* X2732Y1710D01* X2724D01* X2720Y1705D01* X2745D02* X2749Y1710D01* X2757D01* X2762Y1705D01* Y1689D01* X2757Y1685D01* X2749D01* X2745Y1689D01* Y1705D01* X2770Y1689D02* X2774Y1685D01* X2782D01* X2787Y1689D01* Y1705D01* X2782Y1710D01* X2774D01* X2770Y1705D01* Y1701D01* X2774Y1697D01* X2787D01* X1815Y2295D02* Y2270D01* X1827D01* X1832Y2274D01* Y2291D01* X1827Y2295D01* X1815D01* X1857Y2291D02* X1852Y2295D01* X1844D01* X1840Y2291D01* Y2287D01* X1844Y2282D01* X1852D01* X1857Y2278D01* Y2274D01* X1852Y2270D01* X1844D01* X1840Y2274D01* X1882Y2270D02* X1865D01* X1882Y2287D01* Y2291D01* X1877Y2295D01* X1869D01* X1865Y2291D01* X1890D02* X1894Y2295D01* X1902D01* X1907Y2291D01* Y2274D01* X1902Y2270D01* X1894D01* X1890Y2274D01* Y2291D01* X1915D02* X1919Y2295D01* X1927D01* X1932Y2291D01* Y2287D01* X1927Y2282D01* X1932Y2278D01* Y2274D01* X1927Y2270D01* X1919D01* X1915Y2274D01* Y2278D01* X1919Y2282D01* X1915Y2287D01* Y2291D01* X1919Y2282D02* X1927D01* X1640Y2130D02* Y2105D01* X1652D01* X1657Y2109D01* Y2126D01* X1652Y2130D01* X1640D01* X1682Y2126D02* X1677Y2130D01* X1669D01* X1665Y2126D01* Y2122D01* X1669Y2117D01* X1677D01* X1682Y2113D01* Y2109D01* X1677Y2105D01* X1669D01* X1665Y2109D01* X1707Y2105D02* X1690D01* X1707Y2122D01* Y2126D01* X1702Y2130D01* X1694D01* X1690Y2126D01* X1715D02* X1719Y2130D01* X1727D01* X1732Y2126D01* Y2109D01* X1727Y2105D01* X1719D01* X1715Y2109D01* Y2126D01* X1740Y2130D02* X1757D01* Y2126D01* X1740Y2109D01* Y2105D01* X2471Y1487D02* Y1462D01* X2484D01* X2488Y1466D01* Y1483D01* X2484Y1487D01* X2471D01* X2513Y1483D02* X2509Y1487D01* X2501D01* X2496Y1483D01* Y1479D01* X2501Y1475D01* X2509D01* X2513Y1470D01* Y1466D01* X2509Y1462D01* X2501D01* X2496Y1466D01* X2538Y1462D02* X2521D01* X2538Y1479D01* Y1483D01* X2534Y1487D01* X2526D01* X2521Y1483D01* X2546D02* X2551Y1487D01* X2559D01* X2563Y1483D01* Y1466D01* X2559Y1462D01* X2551D01* X2546Y1466D01* Y1483D01* X2584Y1462D02* Y1487D01* X2571Y1475D01* X2588D01* X1974Y2106D02* X1999D01* Y2118D01* X1995Y2122D01* X1978D01* X1974Y2118D01* Y2106D01* X1978Y2147D02* X1974Y2143D01* Y2135D01* X1978Y2131D01* X1982D01* X1987Y2135D01* Y2143D01* X1991Y2147D01* X1995D01* X1999Y2143D01* Y2135D01* X1995Y2131D01* X1999Y2172D02* Y2156D01* X1982Y2172D01* X1978D01* X1974Y2168D01* Y2160D01* X1978Y2156D01* Y2181D02* X1974Y2185D01* Y2193D01* X1978Y2197D01* X1995D01* X1999Y2193D01* Y2185D01* X1995Y2181D01* X1978D01* Y2206D02* X1974Y2210D01* Y2218D01* X1978Y2222D01* X1982D01* X1987Y2218D01* Y2214D01* Y2218D01* X1991Y2222D01* X1995D01* X1999Y2218D01* Y2210D01* X1995Y2206D01* X3239Y2031D02* X3235Y2027D01* Y2019D01* X3239Y2015D01* X3256D01* X3260Y2019D01* Y2027D01* X3256Y2031D01* X3235Y2056D02* X3239Y2048D01* X3248Y2040D01* X3256D01* X3260Y2044D01* Y2052D01* X3256Y2056D01* X3252D01* X3248Y2052D01* Y2040D01* X3260Y2065D02* Y2073D01* Y2069D01* X3235D01* X3239Y2065D01* X3256Y2085D02* X3260Y2090D01* Y2098D01* X3256Y2102D01* X3239D01* X3235Y2098D01* Y2090D01* X3239Y2085D01* X3243D01* X3248Y2090D01* Y2102D01* X2712Y2105D02* X2707Y2110D01* X2699D01* X2695Y2105D01* Y2089D01* X2699Y2085D01* X2707D01* X2712Y2089D01* X2737Y2110D02* X2728Y2105D01* X2720Y2097D01* Y2089D01* X2724Y2085D01* X2732D01* X2737Y2089D01* Y2093D01* X2732Y2097D01* X2720D01* X2745Y2085D02* X2753D01* X2749D01* Y2110D01* X2745Y2105D01* X2766D02* X2770Y2110D01* X2778D01* X2782Y2105D01* Y2089D01* X2778Y2085D01* X2770D01* X2766Y2089D01* Y2105D01* X2687Y1483D02* X2683Y1487D01* X2675D01* X2670Y1483D01* Y1466D01* X2675Y1462D01* X2683D01* X2687Y1466D01* X2712Y1462D02* X2695D01* X2712Y1479D01* Y1483D01* X2708Y1487D01* X2700D01* X2695Y1483D01* X2720Y1462D02* X2729D01* X2725D01* Y1487D01* X2720Y1483D01* X2741Y1462D02* X2750D01* X2745D01* Y1487D01* X2741Y1483D01* X1816Y1942D02* X1812Y1937D01* Y1929D01* X1816Y1925D01* X1833D01* X1837Y1929D01* Y1937D01* X1833Y1942D01* X1837Y1967D02* Y1950D01* X1820Y1967D01* X1816D01* X1812Y1962D01* Y1954D01* X1816Y1950D01* X1837Y1975D02* Y1983D01* Y1979D01* X1812D01* X1816Y1975D01* Y1996D02* X1812Y2000D01* Y2008D01* X1816Y2012D01* X1833D01* X1837Y2008D01* Y2000D01* X1833Y1996D01* X1816D01* X1501Y1648D02* X1497Y1652D01* X1489D01* X1484Y1648D01* Y1631D01* X1489Y1627D01* X1497D01* X1501Y1631D01* X1526Y1627D02* X1509D01* X1526Y1644D01* Y1648D01* X1522Y1652D01* X1514D01* X1509Y1648D01* X1534D02* X1539Y1652D01* X1547D01* X1551Y1648D01* Y1631D01* X1547Y1627D01* X1539D01* X1534Y1631D01* Y1648D01* X1559Y1631D02* X1564Y1627D01* X1572D01* X1576Y1631D01* Y1648D01* X1572Y1652D01* X1564D01* X1559Y1648D01* Y1644D01* X1564Y1640D01* X1576D01* X2464Y1326D02* X2460Y1322D01* Y1314D01* X2464Y1310D01* X2481D01* X2485Y1314D01* Y1322D01* X2481Y1326D01* X2485Y1351D02* Y1335D01* X2468Y1351D01* X2464D01* X2460Y1347D01* Y1339D01* X2464Y1335D01* Y1360D02* X2460Y1364D01* Y1372D01* X2464Y1376D01* X2481D01* X2485Y1372D01* Y1364D01* X2481Y1360D01* X2464D01* X2460Y1401D02* X2464Y1393D01* X2473Y1385D01* X2481D01* X2485Y1389D01* Y1397D01* X2481Y1401D01* X2477D01* X2473Y1397D01* Y1385D01* X1921Y1823D02* X1917Y1827D01* X1909D01* X1904Y1823D01* Y1806D01* X1909Y1802D01* X1917D01* X1921Y1806D01* X1946Y1802D02* X1929D01* X1946Y1819D01* Y1823D01* X1942Y1827D01* X1934D01* X1929Y1823D01* X1954D02* X1959Y1827D01* X1967D01* X1971Y1823D01* Y1806D01* X1967Y1802D01* X1959D01* X1954Y1806D01* Y1823D01* X1996Y1827D02* X1979D01* Y1815D01* X1988Y1819D01* X1992D01* X1996Y1815D01* Y1806D01* X1992Y1802D01* X1984D01* X1979Y1806D01* X3654Y2182D02* X3650Y2177D01* Y2169D01* X3654Y2165D01* X3671D01* X3675Y2169D01* Y2177D01* X3671Y2182D01* X3675Y2207D02* Y2190D01* X3658Y2207D01* X3654D01* X3650Y2202D01* Y2194D01* X3654Y2190D01* Y2215D02* X3650Y2219D01* Y2227D01* X3654Y2232D01* X3671D01* X3675Y2227D01* Y2219D01* X3671Y2215D01* X3654D01* X3675Y2252D02* X3650D01* X3663Y2240D01* Y2257D01* X1661Y1823D02* X1657Y1827D01* X1649D01* X1644Y1823D01* Y1806D01* X1649Y1802D01* X1657D01* X1661Y1806D01* X1686Y1802D02* X1669D01* X1686Y1819D01* Y1823D01* X1682Y1827D01* X1674D01* X1669Y1823D01* X1694D02* X1699Y1827D01* X1707D01* X1711Y1823D01* Y1806D01* X1707Y1802D01* X1699D01* X1694Y1806D01* Y1823D01* X1719D02* X1724Y1827D01* X1732D01* X1736Y1823D01* Y1819D01* X1732Y1815D01* X1728D01* X1732D01* X1736Y1810D01* Y1806D01* X1732Y1802D01* X1724D01* X1719Y1806D01* X1157Y3591D02* X1141D01* Y3578D01* X1149D01* X1141D01* Y3566D01* X1166D02* X1174D01* X1170D01* Y3591D01* X1166Y3587D01* X1186Y3566D02* X1195D01* X1191D01* Y3591D01* X1186Y3587D01* X1224Y3591D02* X1207D01* Y3578D01* X1216Y3583D01* X1220D01* X1224Y3578D01* Y3570D01* X1220Y3566D01* X1211D01* X1207Y3570D01* X651Y1713D02* Y1738D01* X663D01* X668Y1733D01* Y1725D01* X663Y1721D01* X651D01* X659D02* X668Y1713D01* X693D02* X676D01* X693Y1729D01* Y1733D01* X688Y1738D01* X680D01* X676Y1733D01* X718Y1738D02* X701D01* Y1725D01* X709Y1729D01* X713D01* X718Y1725D01* Y1717D01* X713Y1713D01* X705D01* X701Y1717D01* X743Y1713D02* X726D01* X743Y1729D01* Y1733D01* X738Y1738D01* X730D01* X726Y1733D01* X2490Y965D02* X2465D01* Y977D01* X2469Y981D01* X2478D01* X2482Y977D01* Y965D01* Y973D02* X2490Y981D01* Y1006D02* Y990D01* X2473Y1006D01* X2469D01* X2465Y1002D01* Y994D01* X2469Y990D01* X2465Y1031D02* Y1015D01* X2478D01* X2473Y1023D01* Y1027D01* X2478Y1031D01* X2486D01* X2490Y1027D01* Y1019D01* X2486Y1015D01* X2490Y1052D02* X2465D01* X2478Y1040D01* Y1056D01* X1620Y122D02* X1637Y97D01* Y122D02* X1620Y97D01* X1645D02* Y122D01* X1657D01* X1662Y118D01* Y109D01* X1657Y105D01* X1645D01* X1687Y97D02* X1670D01* X1687Y114D01* Y118D01* X1682Y122D01* X1674D01* X1670Y118D01* X1695D02* X1699Y122D01* X1707D01* X1712Y118D01* Y101D01* X1707Y97D01* X1699D01* X1695Y101D01* Y118D01* X1720D02* X1724Y122D01* X1732D01* X1737Y118D01* Y101D01* X1732Y97D01* X1724D01* X1720Y101D01* Y118D01* X937Y1028D02* X932Y1032D01* X924D01* X920Y1028D01* Y1011D01* X924Y1007D01* X932D01* X937Y1011D01* X945Y1007D02* X953D01* X949D01* Y1032D01* X945Y1028D01* X966Y1007D02* X974D01* X970D01* Y1032D01* X966Y1028D01* X1003Y1032D02* X995Y1028D01* X987Y1019D01* Y1011D01* X991Y1007D01* X999D01* X1003Y1011D01* Y1015D01* X999Y1019D01* X987D01* X917Y593D02* X912Y597D01* X904D01* X900Y593D01* Y576D01* X904Y572D01* X912D01* X917Y576D01* X925Y572D02* X933D01* X929D01* Y597D01* X925Y593D01* X946Y572D02* X954D01* X950D01* Y597D01* X946Y593D01* X967Y597D02* X983D01* Y593D01* X967Y576D01* Y572D01* X1360Y173D02* X1356Y169D01* Y160D01* X1360Y156D01* X1376D01* X1381Y160D01* Y169D01* X1376Y173D01* X1381Y181D02* Y189D01* Y185D01* X1356D01* X1360Y181D01* X1381Y202D02* Y210D01* Y206D01* X1356D01* X1360Y202D01* Y223D02* X1356Y227D01* Y235D01* X1360Y239D01* X1364D01* X1368Y235D01* X1372Y239D01* X1376D01* X1381Y235D01* Y227D01* X1376Y223D01* X1372D01* X1368Y227D01* X1364Y223D01* X1360D01* X1368Y227D02* Y235D01* X489Y3592D02* X485Y3587D01* Y3579D01* X489Y3575D01* X506D01* X510Y3579D01* Y3587D01* X506Y3592D01* X510Y3617D02* Y3600D01* X493Y3617D01* X489D01* X485Y3612D01* Y3604D01* X489Y3600D01* X510Y3625D02* Y3633D01* Y3629D01* X485D01* X489Y3625D01* X485Y3662D02* Y3646D01* X498D01* X493Y3654D01* Y3658D01* X498Y3662D01* X506D01* X510Y3658D01* Y3650D01* X506Y3646D01* X695Y597D02* Y572D01* X707D01* X712Y576D01* Y593D01* X707Y597D01* X695D01* X720Y572D02* X728D01* X724D01* Y597D01* X720Y593D01* X741D02* X745Y597D01* X753D01* X757Y593D01* Y576D01* X753Y572D01* X745D01* X741Y576D01* Y593D01* X766D02* X770Y597D01* X778D01* X782Y593D01* Y576D01* X778Y572D01* X770D01* X766Y576D01* Y593D01* X1235Y157D02* X1260D01* Y170D01* X1256Y174D01* X1239D01* X1235Y170D01* Y157D01* Y182D02* Y199D01* X1239D01* X1256Y182D01* X1260D01* Y199D01* Y207D02* Y216D01* Y212D01* X1235D01* X1239Y207D01* Y228D02* X1235Y232D01* Y241D01* X1239Y245D01* X1256D01* X1260Y241D01* Y232D01* X1256Y228D01* X1239D01* X1235Y270D02* Y253D01* X1247D01* X1243Y262D01* Y266D01* X1247Y270D01* X1256D01* X1260Y266D01* Y257D01* X1256Y253D01* X2210Y1405D02* Y1380D01* X2222D01* X2227Y1384D01* Y1401D01* X2222Y1405D01* X2210D01* X2235D02* X2252D01* Y1401D01* X2235Y1384D01* Y1380D01* X2252D01* X2277D02* X2260D01* X2277Y1397D01* Y1401D01* X2272Y1405D01* X2264D01* X2260Y1401D01* X2285D02* X2289Y1405D01* X2297D01* X2302Y1401D01* Y1384D01* X2297Y1380D01* X2289D01* X2285Y1384D01* Y1401D01* X2327Y1380D02* X2310D01* X2327Y1397D01* Y1401D01* X2322Y1405D01* X2314D01* X2310Y1401D01* X1165Y3894D02* Y3877D01* X1178D01* Y3885D01* Y3877D01* X1190D01* Y3902D02* Y3910D01* Y3906D01* X1165D01* X1169Y3902D01* X1190Y3939D02* Y3923D01* X1173Y3939D01* X1169D01* X1165Y3935D01* Y3927D01* X1169Y3923D01* X1165Y3964D02* Y3948D01* X1178D01* X1173Y3956D01* Y3960D01* X1178Y3964D01* X1186D01* X1190Y3960D01* Y3952D01* X1186Y3948D01* X997Y3467D02* Y3450D01* X1009D01* Y3459D01* Y3450D01* X1021D01* Y3475D02* Y3484D01* Y3480D01* X997D01* X1001Y3475D01* X1021Y3513D02* Y3496D01* X1005Y3513D01* X1001D01* X997Y3509D01* Y3500D01* X1001Y3496D01* X997Y3538D02* X1001Y3529D01* X1009Y3521D01* X1017D01* X1021Y3525D01* Y3534D01* X1017Y3538D01* X1013D01* X1009Y3534D01* Y3521D01* X515Y3810D02* X540D01* Y3827D01* Y3852D02* Y3835D01* X523Y3852D01* X519D01* X515Y3847D01* Y3839D01* X519Y3835D01* Y3860D02* X515Y3864D01* Y3872D01* X519Y3877D01* X536D01* X540Y3872D01* Y3864D01* X536Y3860D01* X519D01* Y3885D02* X515Y3889D01* Y3897D01* X519Y3902D01* X536D01* X540Y3897D01* Y3889D01* X536Y3885D01* X519D01* X985Y2090D02* Y2115D01* X993Y2107D01* X1002Y2115D01* Y2090D01* X1010D02* Y2115D01* X1022D01* X1027Y2111D01* Y2102D01* X1022Y2098D01* X1010D01* X1035Y2090D02* X1043D01* X1039D01* Y2115D01* X1035Y2111D01* X1056D02* X1060Y2115D01* X1068D01* X1072Y2111D01* Y2094D01* X1068Y2090D01* X1060D01* X1056Y2094D01* Y2111D01* X1081D02* X1085Y2115D01* X1093D01* X1097Y2111D01* Y2094D01* X1093Y2090D01* X1085D01* X1081Y2094D01* Y2111D01* X1496Y157D02* X1471D01* Y170D01* X1475Y174D01* X1484D01* X1488Y170D01* Y157D01* Y166D02* X1496Y174D01* Y182D02* Y191D01* Y187D01* X1471D01* X1475Y182D01* X1496Y203D02* Y212D01* Y207D01* X1471D01* X1475Y203D01* X1471Y224D02* Y241D01* X1475D01* X1492Y224D01* X1496D01* X585Y572D02* X560D01* Y584D01* X564Y589D01* X573D01* X577Y584D01* Y572D01* Y580D02* X585Y589D01* Y597D02* Y605D01* Y601D01* X560D01* X564Y597D01* X585Y618D02* Y626D01* Y622D01* X560D01* X564Y618D01* Y638D02* X560Y643D01* Y651D01* X564Y655D01* X568D01* X573Y651D01* X577Y655D01* X581D01* X585Y651D01* Y643D01* X581Y638D01* X577D01* X573Y643D01* X568Y638D01* X564D01* X573Y643D02* Y651D01* X500Y577D02* X475D01* Y589D01* X479Y594D01* X488D01* X492Y589D01* Y577D01* Y585D02* X500Y594D01* Y602D02* Y610D01* Y606D01* X475D01* X479Y602D01* X500Y623D02* Y631D01* Y627D01* X475D01* X479Y623D01* X496Y643D02* X500Y648D01* Y656D01* X496Y660D01* X479D01* X475Y656D01* Y648D01* X479Y643D01* X483D01* X488Y648D01* Y660D01* X1040Y532D02* Y557D01* X1052D01* X1057Y553D01* Y544D01* X1052Y540D01* X1040D01* X1048D02* X1057Y532D01* X1065Y557D02* Y532D01* X1082D01* X1090D02* X1098D01* X1094D01* Y557D01* X1090Y553D01* X1111D02* X1115Y557D01* X1123D01* X1127Y553D01* Y536D01* X1123Y532D01* X1115D01* X1111Y536D01* Y553D01* X1136D02* X1140Y557D01* X1148D01* X1152Y553D01* Y536D01* X1148Y532D01* X1140D01* X1136Y536D01* Y553D01* X242Y567D02* Y584D01* Y576D01* X266D01* Y592D02* Y601D01* Y597D01* X242D01* X246Y592D01* Y613D02* X242Y617D01* Y626D01* X246Y630D01* X262D01* X266Y626D01* Y617D01* X262Y613D01* X246D01* Y638D02* X242Y642D01* Y651D01* X246Y655D01* X262D01* X266Y651D01* Y642D01* X262Y638D01* X246D01* X1110Y995D02* Y974D01* X1114Y970D01* X1123D01* X1127Y974D01* Y995D01* X1152Y970D02* X1135D01* X1152Y987D01* Y991D01* X1147Y995D01* X1139D01* X1135Y991D01* X1160D02* X1164Y995D01* X1172D01* X1177Y991D01* Y974D01* X1172Y970D01* X1164D01* X1160Y974D01* Y991D01* X1185D02* X1189Y995D01* X1197D01* X1202Y991D01* Y987D01* X1197Y983D01* X1193D01* X1197D01* X1202Y978D01* Y974D01* X1197Y970D01* X1189D01* X1185Y974D01* X3935Y2563D02* X3952Y2538D01* Y2563D02* X3935Y2538D01* X3977D02* X3960D01* X3977Y2555D01* Y2559D01* X3972Y2563D01* X3964D01* X3960Y2559D01* X3985D02* X3989Y2563D01* X3997D01* X4002Y2559D01* Y2542D01* X3997Y2538D01* X3989D01* X3985Y2542D01* Y2559D01* X4027Y2538D02* X4010D01* X4027Y2555D01* Y2559D01* X4022Y2563D01* X4014D01* X4010Y2559D01* X3935Y685D02* X3952Y660D01* Y685D02* X3935Y660D01* X3977D02* X3960D01* X3977Y677D01* Y681D01* X3973Y685D01* X3965D01* X3960Y681D01* X3985D02* X3990Y685D01* X3998D01* X4002Y681D01* Y664D01* X3998Y660D01* X3990D01* X3985Y664D01* Y681D01* X4010D02* X4015Y685D01* X4023D01* X4027Y681D01* Y677D01* X4023Y672D01* X4019D01* X4023D01* X4027Y668D01* Y664D01* X4023Y660D01* X4015D01* X4010Y664D01* X835Y2277D02* X860Y2294D01* X835D02* X860Y2277D01* X835Y2302D02* Y2310D01* Y2306D01* X860D01* Y2302D01* Y2310D01* Y2323D02* X843D01* X835Y2331D01* X843Y2339D01* X860D01* X848D01* Y2323D01* X860Y2348D02* Y2356D01* Y2352D01* X835D01* X839Y2348D01* Y2368D02* X835Y2373D01* Y2381D01* X839Y2385D01* X856D01* X860Y2381D01* Y2373D01* X856Y2368D01* X839D01* X860Y2410D02* Y2393D01* X843Y2410D01* X839D01* X835Y2406D01* Y2398D01* X839Y2393D01* X205Y3540D02* X222Y3515D01* Y3540D02* X205Y3515D01* X230Y3540D02* X238D01* X234D01* Y3515D01* X230D01* X238D01* X251D02* Y3532D01* X259Y3540D01* X267Y3532D01* Y3515D01* Y3527D01* X251D01* X276Y3515D02* X284D01* X280D01* Y3540D01* X276Y3536D01* X297D02* X301Y3540D01* X309D01* X313Y3536D01* Y3519D01* X309Y3515D01* X301D01* X297Y3519D01* Y3536D01* X322D02* X326Y3540D01* X334D01* X338Y3536D01* Y3532D01* X334Y3527D01* X338Y3523D01* Y3519D01* X334Y3515D01* X326D01* X322Y3519D01* Y3523D01* X326Y3527D01* X322Y3532D01* Y3536D01* X326Y3527D02* X334D01* X1125Y2475D02* X1142Y2450D01* Y2475D02* X1125Y2450D01* X1150D02* X1158D01* X1154D01* Y2475D01* X1150Y2471D01* X1171D02* X1175Y2475D01* X1183D01* X1187Y2471D01* Y2454D01* X1183Y2450D01* X1175D01* X1171Y2454D01* Y2471D01* X1196D02* X1200Y2475D01* X1208D01* X1212Y2471D01* Y2467D01* X1208Y2462D01* X1212Y2458D01* Y2454D01* X1208Y2450D01* X1200D01* X1196Y2454D01* Y2458D01* X1200Y2462D01* X1196Y2467D01* Y2471D01* X1200Y2462D02* X1208D01* X1536Y2741D02* X1511D01* Y2753D01* X1515Y2758D01* X1524D01* X1528Y2753D01* Y2741D01* Y2749D02* X1536Y2758D01* Y2783D02* Y2766D01* X1519Y2783D01* X1515D01* X1511Y2778D01* Y2770D01* X1515Y2766D01* X1536Y2807D02* Y2791D01* X1519Y2807D01* X1515D01* X1511Y2803D01* Y2795D01* X1515Y2791D01* Y2816D02* X1511Y2820D01* Y2828D01* X1515Y2832D01* X1519D01* X1524Y2828D01* X1528Y2832D01* X1532D01* X1536Y2828D01* Y2820D01* X1532Y2816D01* X1528D01* X1524Y2820D01* X1519Y2816D01* X1515D01* X1524Y2820D02* Y2828D01* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GBO0000644000175000017500000001025313421555714020426 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=16751055* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% D50* X-390Y5860D02* Y5790D01* X-355D01* X-343Y5802D01* Y5813D01* X-355Y5825D01* X-390D01* X-355D01* X-343Y5837D01* Y5848D01* X-355Y5860D01* X-390D01* X-308Y5790D02* X-285D01* X-273Y5802D01* Y5825D01* X-285Y5837D01* X-308D01* X-320Y5825D01* Y5802D01* X-308Y5790D01* X-238Y5848D02* Y5837D01* X-250D01* X-227D01* X-238D01* Y5802D01* X-227Y5790D01* X-180Y5848D02* Y5837D01* X-192D01* X-168D01* X-180D01* Y5802D01* X-168Y5790D01* X-122D02* X-98D01* X-87Y5802D01* Y5825D01* X-98Y5837D01* X-122D01* X-133Y5825D01* Y5802D01* X-122Y5790D01* X-63D02* Y5837D01* X-52D01* X-40Y5825D01* Y5790D01* Y5825D01* X-28Y5837D01* X-17Y5825D01* Y5790D01* X112Y5860D02* X88D01* X77Y5848D01* Y5802D01* X88Y5790D01* X112D01* X123Y5802D01* Y5848D01* X112Y5860D01* X146Y5837D02* X170Y5790D01* X193Y5837D01* X251Y5790D02* X228D01* X216Y5802D01* Y5825D01* X228Y5837D01* X251D01* X263Y5825D01* Y5813D01* X216D01* X286Y5837D02* Y5790D01* Y5813D01* X298Y5825D01* X310Y5837D01* X321D01* X356Y5790D02* X380D01* X368D01* Y5860D01* X356D01* X426Y5837D02* X450D01* X461Y5825D01* Y5790D01* X426D01* X415Y5802D01* X426Y5813D01* X461D01* X485Y5837D02* Y5802D01* X496Y5790D01* X531D01* Y5778D01* X520Y5767D01* X508D01* X531Y5790D02* Y5837D01* D58* X1985Y2420D02* Y2554D01* X1875Y2420D02* Y2554D01* X1890Y2536D02* Y2548D01* X1875Y2420D02* X1985D01* X1875Y2554D02* X1985D01* X1875Y2530D02* X1985D01* X1883Y2542D02* X1897D01* D79* X630Y3976D02* X2717D01* Y3504D02* Y3976D01* X630Y3504D02* X2717D01* X630D02* Y3976D01* Y3504D02* Y3976D01* D81* X1715Y2557D02* X1805D01* X1715Y2397D02* X1805D01* X1715Y2497D02* Y2557D01* X1805Y2497D02* Y2557D01* Y2397D02* Y2457D01* X1715Y2397D02* Y2457D01* D82* X1776Y2447D02* X1780Y2442D01* Y2434D01* X1776Y2430D01* X1760D01* X1756Y2434D01* Y2442D01* X1760Y2447D01* X1756Y2472D02* Y2455D01* X1772Y2472D01* X1776D01* X1780Y2467D01* Y2459D01* X1776Y2455D01* Y2480D02* X1780Y2484D01* Y2492D01* X1776Y2497D01* X1760D01* X1756Y2492D01* Y2484D01* X1760Y2480D01* X1776D01* Y2505D02* X1780Y2509D01* Y2517D01* X1776Y2522D01* X1760D01* X1756Y2517D01* Y2509D01* X1760Y2505D01* X1776D01* X1950Y2472D02* Y2455D01* X1925D01* Y2472D01* X1937Y2455D02* Y2463D01* X1925Y2497D02* Y2480D01* X1942Y2497D01* X1946D01* X1950Y2492D01* Y2484D01* X1946Y2480D01* Y2505D02* X1950Y2509D01* Y2517D01* X1946Y2522D01* X1929D01* X1925Y2517D01* Y2509D01* X1929Y2505D01* X1946D01* X1925Y2530D02* Y2538D01* Y2534D01* X1950D01* X1946Y2530D01* X1775Y3480D02* X1758Y3455D01* Y3480D02* X1775Y3455D01* X1750D02* X1742D01* X1746D01* Y3480D01* X1750Y3476D01* X1729D02* X1725Y3480D01* X1717D01* X1713Y3476D01* Y3459D01* X1717Y3455D01* X1725D01* X1729Y3459D01* Y3476D01* X1704D02* X1700Y3480D01* X1692D01* X1688Y3476D01* Y3472D01* X1692Y3467D01* X1696D01* X1692D01* X1688Y3463D01* Y3459D01* X1692Y3455D01* X1700D01* X1704Y3459D01* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GTL0000644000175000017500000073255113421555714020461 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Physical_Order=1* G04 Layer_Color=255* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% D10* X3852Y3937D02* G03* X3852Y3937I-72J0D01* G01* X3850Y3724D02* G03* X3852Y3740I-71J16D01* G01* G03* X3718Y3779I-72J0D01* G01* X3924Y3635D02* G03* X3912Y3662I-38J0D01* G01* X3924Y3635D02* G03* X3912Y3662I-38J0D01* G01* X3718Y3702D02* G03* X3796Y3669I61J39D01* G01* X3846Y3571D02* G03* X3718Y3582I-67J-28D01* G01* X4043Y3447D02* G03* X4012Y3494I-52J0D01* G01* X4006Y3397D02* G03* X4043Y3447I-16J50D01* G01* Y3347D02* G03* X4006Y3397I-52J0D01* G01* X3928Y3320D02* G03* X3954Y3308I27J27D01* G01* X3928Y3320D02* G03* X3954Y3308I27J27D01* G01* X4006Y3297D02* G03* X4043Y3347I-16J50D01* G01* Y3247D02* G03* X4006Y3297I-52J0D01* G01* X3954Y3308D02* G03* X3974Y3297I36J38D01* G01* X4006Y3197D02* G03* X4043Y3247I-16J50D01* G01* Y3147D02* G03* X4006Y3197I-52J0D01* G01* X3974Y3297D02* G03* X3954Y3285I16J-50D01* G01* X4006Y3097D02* G03* X4043Y3147I-16J50D01* G01* Y3047D02* G03* X4006Y3097I-52J0D01* G01* Y2997D02* G03* X4043Y3047I-16J50D01* G01* X3718Y3505D02* G03* X3777Y3471I61J38D01* G01* X3852Y3346D02* G03* X3718Y3385I-72J0D01* G01* X3574Y3409D02* G03* X3593Y3420I-8J38D01* G01* X3574Y3409D02* G03* X3593Y3420I-8J38D01* G01* X3850Y3330D02* G03* X3852Y3346I-71J16D01* G01* X3609Y3299D02* G03* X3585Y3310I-24J-22D01* G01* X3428Y3937D02* G03* X3428Y3937I-82J0D01* G01* X3390Y3485D02* G03* X3363Y3474I0J-38D01* G01* X3390Y3485D02* G03* X3363Y3474I0J-38D01* G01* X3331Y3443D02* G03* X3320Y3415I27J-27D01* G01* X3331Y3443D02* G03* X3320Y3415I27J-27D01* G01* X3575Y3310D02* G03* X3555Y3303I0J-32D01* G01* G03* X3551Y3299I20J-26D01* G01* X3470Y3285D02* G03* X3443Y3274I0J-38D01* G01* X3470Y3285D02* G03* X3443Y3274I0J-38D01* G01* X3415Y3138D02* G03* X3457Y3180I-5J47D01* G01* X3298Y3363D02* G03* X3275Y3372I-23J-23D01* G01* X3298Y3363D02* G03* X3275Y3372I-23J-23D01* G01* X3398Y3124D02* G03* X3410Y3132I-15J35D01* G01* X3398Y3124D02* G03* X3410Y3132I-15J35D01* G01* X3443Y3100D02* G03* X3398Y3105I-28J-38D01* G01* Y3017D02* G03* X3443Y3023I17J44D01* G01* X3298Y3136D02* G03* X3314Y3128I23J23D01* G01* X3298Y3136D02* G03* X3314Y3128I23J23D01* G01* X4043Y2947D02* G03* X4006Y2997I-52J0D01* G01* Y2897D02* G03* X4043Y2947I-16J50D01* G01* Y2847D02* G03* X4006Y2897I-52J0D01* G01* Y2797D02* G03* X4043Y2847I-16J50D01* G01* Y2747D02* G03* X4006Y2797I-52J0D01* G01* Y2697D02* G03* X4043Y2747I-16J50D01* G01* Y2647D02* G03* X4006Y2697I-52J0D01* G01* X3938Y2654D02* G03* X4043Y2647I52J-7D01* G01* X3918Y2455D02* G03* X3928Y2478I-23J23D01* G01* X3918Y2455D02* G03* X3928Y2478I-23J23D01* G01* X3852Y2362D02* G03* X3848Y2385I-72J0D01* G01* X3715Y2330D02* G03* X3852Y2362I65J32D01* G01* Y2047D02* G03* X3711Y2071I-72J0D01* G01* Y2023D02* G03* X3852Y2047I68J24D01* G01* X3518Y2157D02* G03* X3519Y2144I47J-2D01* G01* X3622Y2109D02* G03* X3609Y2136I-34J0D01* G01* X3611Y2084D02* G03* X3622Y2109I-24J25D01* G01* X3619Y2073D02* G03* X3611Y2084I-32J-14D01* G01* X3501Y2075D02* G03* X3508Y2034I31J-15D01* G01* G03* X3502Y1992I24J-25D01* G01* X3556Y1925D02* G03* X3562Y1924I6J32D01* G01* X3556Y1925D02* G03* X3562Y1924I6J32D01* G01* X3520Y1927D02* G03* X3532Y1925I12J32D01* G01* X3468Y2429D02* G03* X3485Y2424I16J28D01* G01* X3468Y2429D02* G03* X3485Y2424I16J28D01* G01* X3485Y1992D02* G03* X3462Y1982I0J-32D01* G01* X3485Y1992D02* G03* X3462Y1982I0J-32D01* G01* X3472Y2144D02* G03* X3469Y2075I-19J-34D01* G01* X3354Y2451D02* G03* X3344Y2428I23J-23D01* G01* X3354Y2451D02* G03* X3344Y2428I23J-23D01* G01* X3391Y2084D02* G03* X3402Y2109I-24J25D01* G01* Y2059D02* G03* X3391Y2084I-34J0D01* G01* Y2034D02* G03* X3402Y2059I-24J25D01* G01* Y2009D02* G03* X3391Y2034I-34J0D01* G01* Y1984D02* G03* X3402Y2009I-24J25D01* G01* Y1959D02* G03* X3391Y1984I-34J0D01* G01* X3402Y2109D02* G03* X3368Y2144I-34J0D01* G01* X3374Y1925D02* G03* X3402Y1959I-7J34D01* G01* X3357Y2144D02* G03* X3340Y2148I-17J-34D01* G01* X3369Y1925D02* G03* X3374Y1925I-1J34D01* G01* X3288Y1984D02* G03* X3312Y1925I24J-25D01* G01* X2769Y3946D02* G03* X2664Y3946I-52J0D01* G01* X2753Y3890D02* G03* X2769Y3928I-36J38D01* G01* Y3852D02* G03* X2753Y3890I-52J0D01* G01* X2664Y3833D02* G03* X2769Y3833I52J0D01* G01* X2775Y3372D02* G03* X2752Y3363I0J-32D01* G01* X2769Y3651D02* G03* X2683Y3691I-52J0D01* G01* X2775Y3372D02* G03* X2752Y3363I0J-32D01* G01* X2751Y3593D02* G03* X2769Y3632I-34J40D01* G01* Y3553D02* G03* X2751Y3593I-52J0D01* G01* X2664Y3534D02* G03* X2769Y3534I52J0D01* G01* X2664Y3928D02* G03* X2680Y3890I52J0D01* G01* G03* X2664Y3852I36J-38D01* G01* X2727Y3338D02* G03* X2717Y3315I23J-23D01* G01* X2727Y3338D02* G03* X2717Y3315I23J-23D01* G01* X2683Y3691D02* G03* X2696Y3740I-84J49D01* G01* X2669Y3672D02* G03* X2664Y3651I48J-21D01* G01* Y3632D02* G03* X2682Y3593I52J0D01* G01* G03* X2664Y3553I34J-40D01* G01* X2867Y3038D02* G03* X2816Y3090I-52J0D01* G01* X2614Y3089D02* G03* X2587Y3100I-27J-27D01* G01* X2717Y3110D02* G03* X2727Y3087I32J0D01* G01* X2717Y3110D02* G03* X2727Y3087I32J0D01* G01* X2614Y3089D02* G03* X2587Y3100I-27J-27D01* G01* X2696Y3740D02* G03* X2669Y3672I-97J0D01* G01* X2381Y3795D02* G03* X2381Y3795I-54J0D01* G01* X2317Y3509D02* G03* X2306Y3533I-32J0D01* G01* X2271Y3632D02* G03* X2327Y3685I2J53D01* G01* G03* X2246Y3731I-54J0D01* G01* X2286Y3603D02* G03* X2277Y3626I-32J0D01* G01* X2286Y3603D02* G03* X2277Y3626I-32J0D01* G01* X2272Y3795D02* G03* X2166Y3785I-54J0D01* G01* X2238Y3745D02* G03* X2272Y3795I-19J50D01* G01* X2163D02* G03* X2142Y3838I-54J0D01* G01* X2162Y3788D02* G03* X2163Y3795I-53J7D01* G01* X2246Y3731D02* G03* X2238Y3745I-31J-9D01* G01* X2246Y3731D02* G03* X2238Y3745I-31J-9D01* G01* X2131Y3727D02* G03* X2127Y3646I33J-42D01* G01* X2202Y3533D02* G03* X2191Y3509I22J-24D01* G01* X2306Y3475D02* G03* X2317Y3499I-22J24D01* G01* X2218Y3429D02* G03* X2283Y3425I32J-4D01* G01* X2303Y3100D02* G03* X2298Y3100I0J-38D01* G01* X2194Y3485D02* G03* X2202Y3475I29J14D01* G01* X2191Y3499D02* G03* X2194Y3486I32J0D01* G01* X3095Y3022D02* G03* X3077Y3053I-34J0D01* G01* X3094Y2959D02* G03* X3095Y2966I-34J7D01* G01* X3089Y2891D02* G03* X3081Y2870I21J-21D01* G01* X3089Y2891D02* G03* X3081Y2870I21J-21D01* G01* Y2615D02* G03* X3086Y2599I29J0D01* G01* X3081Y2615D02* G03* X3086Y2599I29J0D01* G01* X3204Y2580D02* G03* X3199Y2596I-29J0D01* G01* X3204Y2580D02* G03* X3199Y2596I-29J0D01* G01* X2970Y3081D02* G03* X2980Y3058I32J0D01* G01* X2970Y3081D02* G03* X2980Y3058I32J0D01* G01* X3081Y2775D02* G03* X3026Y2747I-21J-27D01* G01* X2928Y2955D02* G03* X2937Y2934I32J2D01* G01* X2980Y3050D02* G03* X2926Y3022I-20J-28D01* G01* X2967Y2904D02* G03* X2990Y2894I23J23D01* G01* X2926Y2966D02* G03* X2928Y2955I34J0D01* G01* G03* X2937Y2934I32J2D01* G01* X2967Y2904D02* G03* X2990Y2894I23J23D01* G01* X2995Y2747D02* G03* X2926Y2747I-34J0D01* G01* X3026Y2691D02* G03* X3031Y2673I34J0D01* G01* Y2670D02* G03* X3081Y2630I29J-15D01* G01* X2926Y2691D02* G03* X2995Y2691I34J0D01* G01* X3146Y2420D02* G03* X3148Y2409I29J0D01* G01* G03* X3195Y2386I32J6D01* G01* X3146Y2420D02* G03* X3148Y2409I29J0D01* G01* X3201Y2279D02* G03* X3199Y2258I32J-14D01* G01* X3286Y1986D02* G03* X3288Y1984I26J23D01* G01* X3201Y2279D02* G03* X3199Y2258I32J-14D01* G01* X3247Y1972D02* G03* X3244Y1986I-32J0D01* G01* X3247Y1972D02* G03* X3244Y1986I-32J0D01* G01* X3145Y2206D02* G03* X3138Y2196I23J-23D01* G01* X3145Y2206D02* G03* X3138Y2196I23J-23D01* G01* X2987Y2375D02* G03* X2979Y2394I-27J0D01* G01* X2987Y2375D02* G03* X2979Y2394I-27J0D01* G01* X2911Y2027D02* G03* X2916Y2021I24J13D01* G01* X2911Y2027D02* G03* X2916Y2021I24J13D01* G01* X2831Y2988D02* G03* X2867Y3038I-16J50D01* G01* Y2938D02* G03* X2831Y2988I-52J0D01* G01* X2764Y3050D02* G03* X2799Y2988I51J-12D01* G01* X2831Y2888D02* G03* X2867Y2938I-16J50D01* G01* X2799Y2988D02* G03* X2789Y2984I16J-50D01* G01* G03* X2737Y2947I-29J-14D01* G01* X2867Y2838D02* G03* X2831Y2888I-52J0D01* G01* Y2788D02* G03* X2867Y2838I-16J50D01* G01* X2837Y2690D02* G03* X2867Y2738I-22J47D01* G01* G03* X2831Y2788I-52J0D01* G01* X2707Y2988D02* G03* X2713Y3005I-27J17D01* G01* G03* X2668Y3035I-32J0D01* G01* X2737Y2927D02* G03* X2707Y2942I-27J-17D01* G01* X2495Y2714D02* G03* X2481Y2711I0J-27D01* G01* X2495Y2714D02* G03* X2481Y2711I0J-27D01* G01* X2414Y2772D02* G03* X2417Y2783I-24J13D01* G01* X2414Y2772D02* G03* X2417Y2783I-24J13D01* G01* X2631Y2264D02* G03* X2652Y2265I9J31D01* G01* X2783Y2236D02* G03* X2796Y2247I-18J34D01* G01* X2488Y2201D02* G03* X2506Y2207I0J31D01* G01* X2796Y2035D02* G03* X2793Y2015I29J-15D01* G01* X2488Y2201D02* G03* X2506Y2207I0J31D01* G01* X2641Y2204D02* G03* X2632Y2185I19J-19D01* G01* X2641Y2204D02* G03* X2632Y2185I19J-19D01* G01* X3908Y1752D02* G03* X3898Y1775I-32J0D01* G01* X3908Y1752D02* G03* X3898Y1775I-32J0D01* G01* X4043Y1557D02* G03* X4012Y1604I-52J0D01* G01* X4006Y1507D02* G03* X4043Y1557I-16J50D01* G01* X3968Y1604D02* G03* X3949Y1589I22J-47D01* G01* X3848Y1825D02* G03* X3852Y1850I-68J25D01* G01* X3755Y1782D02* G03* X3800Y1781I25J68D01* G01* X3852Y1850D02* G03* X3707Y1844I-72J0D01* G01* X3842Y1689D02* G03* X3718Y1692I-63J-36D01* G01* X3718Y1615D02* G03* X3763Y1583I61J39D01* G01* X4043Y1457D02* G03* X4006Y1507I-52J0D01* G01* Y1407D02* G03* X4043Y1457I-16J50D01* G01* X3949Y1424D02* G03* X3974Y1407I41J32D01* G01* X3912Y1434D02* G03* X3935Y1424I23J23D01* G01* X3912Y1434D02* G03* X3935Y1424I23J23D01* G01* X4043Y1357D02* G03* X4006Y1407I-52J0D01* G01* X3974D02* G03* X3949Y1389I16J-50D01* G01* X4006Y1307D02* G03* X4043Y1357I-16J50D01* G01* X3949Y1324D02* G03* X3974Y1307I41J32D01* G01* G03* X3949Y1289I16J-50D01* G01* X4043Y1257D02* G03* X4006Y1307I-52J0D01* G01* Y1207D02* G03* X4043Y1257I-16J50D01* G01* Y1157D02* G03* X4006Y1207I-52J0D01* G01* X3848Y1434D02* G03* X3852Y1457I-69J23D01* G01* G03* X3715Y1490I-72J0D01* G01* Y1423D02* G03* X3802Y1388I64J33D01* G01* X3856Y1334D02* G03* X3879Y1324I23J23D01* G01* X3856Y1334D02* G03* X3879Y1324I23J23D01* G01* X3693Y1312D02* G03* X3683Y1335I-32J0D01* G01* X3846Y1289D02* G03* X3715Y1292I-66J-30D01* G01* X3693Y1312D02* G03* X3683Y1335I-32J0D01* G01* X3579Y1524D02* G03* X3598Y1535I-8J38D01* G01* X3579Y1524D02* G03* X3598Y1535I-8J38D01* G01* X3324Y1790D02* G03* X3318Y1771I26J-20D01* G01* X3324Y1790D02* G03* X3318Y1771I26J-20D01* G01* X3380Y1429D02* G03* X3403Y1439I0J32D01* G01* X3153Y1511D02* G03* X3195Y1468I47J4D01* G01* X3613Y1399D02* G03* X3589Y1410I-24J-22D01* G01* X3579D02* G03* X3555Y1399I0J-32D01* G01* X3445Y1379D02* G03* X3422Y1370I0J-32D01* G01* X3445Y1379D02* G03* X3422Y1370I0J-32D01* G01* X3503Y1243D02* G03* X3446Y1201I-38J-8D01* G01* X3423Y1279D02* G03* X3446Y1302I-13J36D01* G01* X3380Y1429D02* G03* X3403Y1439I0J32D01* G01* X3405Y1353D02* G03* X3379Y1337I5J-38D01* G01* X3389Y1251D02* G03* X3403Y1259I-9J31D01* G01* X3389Y1251D02* G03* X3403Y1259I-9J31D01* G01* X4006Y1107D02* G03* X4043Y1157I-16J50D01* G01* Y1057D02* G03* X4006Y1107I-52J0D01* G01* Y1007D02* G03* X4043Y1057I-16J50D01* G01* Y957D02* G03* X4006Y1007I-52J0D01* G01* Y907D02* G03* X4043Y957I-16J50D01* G01* Y857D02* G03* X4006Y907I-52J0D01* G01* Y807D02* G03* X4043Y857I-16J50D01* G01* Y757D02* G03* X4006Y807I-52J0D01* G01* X3963Y812D02* G03* X3974Y807I27J45D01* G01* G03* X3963Y802I16J-50D01* G01* Y712D02* G03* X4043Y757I27J45D01* G01* X3852Y669D02* G03* X3846Y697I-72J0D01* G01* X3953Y624D02* G03* X3963Y647I-23J23D01* G01* X3953Y624D02* G03* X3963Y647I-23J23D01* G01* X3715Y637D02* G03* X3852Y669I65J33D01* G01* Y472D02* G03* X3841Y511I-72J0D01* G01* X3782Y545D02* G03* X3715Y505I-3J-72D01* G01* X3715Y440D02* G03* X3852Y472I65J33D01* G01* X3693Y528D02* G03* X3683Y551I-32J0D01* G01* X3693Y528D02* G03* X3683Y551I-32J0D01* G01* X3614Y614D02* G03* X3609Y618I-24J-22D01* G01* X3561D02* G03* X3556Y614I19J-26D01* G01* X3443Y828D02* G03* X3447Y833I-23J23D01* G01* X3443Y828D02* G03* X3447Y833I-23J23D01* G01* X3351Y1035D02* G03* X3355Y1040I-23J23D01* G01* X3351Y1035D02* G03* X3355Y1040I-23J23D01* G01* X3487Y539D02* G03* X3507Y529I23J23D01* G01* X3487Y539D02* G03* X3507Y529I23J23D01* G01* X3194Y695D02* G03* X3188Y716I-38J0D01* G01* X3163Y657D02* G03* X3194Y695I-8J38D01* G01* X2809Y1662D02* G03* X2817Y1649I31J11D01* G01* X2809Y1662D02* G03* X2817Y1649I31J11D01* G01* X2703Y1560D02* G03* X2701Y1570I-32J0D01* G01* Y1550D02* G03* X2703Y1560I-31J10D01* G01* X2640Y1572D02* G03* X2640Y1548I30J-12D01* G01* X3121Y1291D02* G03* X3140Y1284I19J26D01* G01* X3121Y1291D02* G03* X3140Y1284I19J26D01* G01* X3129Y1221D02* G03* X3121Y1230I-29J-18D01* G01* X2984Y1116D02* G03* X3012Y1114I16J31D01* G01* X2808Y1116D02* G03* X2844Y1067I52J0D01* G01* X2731Y1328D02* G03* X2711Y1337I-22J-22D01* G01* X2731Y1328D02* G03* X2711Y1337I-22J-22D01* G01* X2396Y1889D02* G03* X2385Y1865I24J-24D01* G01* X2396Y1889D02* G03* X2385Y1865I24J-24D01* G01* X2360Y1855D02* G03* X2326Y1815I0J-34D01* G01* X2322Y1875D02* G03* X2318Y1892I-32J0D01* G01* X2288Y1843D02* G03* X2322Y1875I2J32D01* G01* X2111Y1464D02* G03* X2101Y1440I24J-24D01* G01* X2111Y1464D02* G03* X2101Y1440I24J-24D01* G01* X2425Y1374D02* G03* X2404Y1366I0J-29D01* G01* X2425Y1374D02* G03* X2404Y1366I0J-29D01* G01* X2379Y1341D02* G03* X2371Y1320I21J-21D01* G01* X2379Y1341D02* G03* X2371Y1320I21J-21D01* G01* X2312Y1297D02* G03* X2265Y1349I-52J0D01* G01* X2276Y1247D02* G03* X2312Y1297I-16J50D01* G01* X2244Y1347D02* G03* X2244Y1247I16J-50D01* G01* X2312Y1197D02* G03* X2276Y1247I-52J0D01* G01* Y1147D02* G03* X2312Y1197I-16J50D01* G01* X2304Y1126D02* G03* X2276Y1147I-44J-29D01* G01* X2244Y1247D02* G03* X2244Y1147I16J-50D01* G01* G03* X2244Y1047I16J-50D01* G01* X3163Y1053D02* G03* X3157Y1048I17J-28D01* G01* X3163Y1053D02* G03* X3157Y1048I17J-28D01* G01* X3132Y1023D02* G03* X3122Y1000I23J-23D01* G01* X3132Y1023D02* G03* X3122Y1000I23J-23D01* G01* Y954D02* G03* X3066Y927I-22J-26D01* G01* X3064Y1062D02* G03* X3086Y1053I23J23D01* G01* X3064Y1062D02* G03* X3086Y1053I23J23D01* G01* X3035Y927D02* G03* X2984Y958I-34J0D01* G01* X3122Y716D02* G03* X3121Y712I32J-21D01* G01* G03* X3119Y681I34J-17D01* G01* X2912Y823D02* G03* X2949Y809I34J33D01* G01* X2935Y596D02* G03* X2957Y587I23J23D01* G01* X2935Y596D02* G03* X2957Y587I23J23D01* G01* X2844Y1067D02* G03* X2844Y967I16J-50D01* G01* G03* X2844Y867I16J-50D01* G01* G03* X2811Y797I16J-50D01* G01* X2912Y817D02* G03* X2912Y823I-52J0D01* G01* X2909Y797D02* G03* X2912Y817I-49J19D01* G01* X2902Y625D02* G03* X2902Y629I-47J0D01* G01* X2808Y664D02* G03* X2788Y633I27J-39D01* G01* X2902Y625D02* G03* X2902Y629I-47J0D01* G01* X2718Y797D02* G03* X2719Y805I-28J8D01* G01* X2718Y797D02* G03* X2719Y805I-28J8D01* G01* X2612Y597D02* G03* X2610Y614I-52J0D01* G01* X2916Y394D02* G03* X2916Y394I-82J0D01* G01* X2855Y577D02* G03* X2902Y625I0J47D01* G01* X2855Y577D02* G03* X2902Y625I0J47D01* G01* X2653Y497D02* G03* X2641Y470I27J-27D01* G01* X2653Y497D02* G03* X2641Y470I27J-27D01* G01* X2707Y233D02* G03* X2718Y260I-27J27D01* G01* X2707Y233D02* G03* X2718Y260I-27J27D01* G01* X2538Y744D02* G03* X2517Y727I22J-47D01* G01* Y666D02* G03* X2544Y647I43J31D01* G01* X2490Y727D02* G03* X2468Y718I0J-31D01* G01* X2490Y727D02* G03* X2468Y718I0J-31D01* G01* X2438Y688D02* G03* X2430Y667I22J-22D01* G01* X2438Y688D02* G03* X2430Y667I22J-22D01* G01* X2576Y547D02* G03* X2612Y597I-16J50D01* G01* X2544Y647D02* G03* X2544Y547I16J-50D01* G01* X2612Y497D02* G03* X2576Y547I-52J0D01* G01* X2244Y1047D02* G03* X2244Y947I16J-50D01* G01* G03* X2244Y847I16J-50D01* G01* G03* X2244Y747I16J-50D01* G01* X2159Y836D02* G03* X2170Y860I-24J24D01* G01* X2159Y836D02* G03* X2170Y860I-24J24D01* G01* X2397Y505D02* G03* X2405Y527I-22J22D01* G01* X2397Y505D02* G03* X2405Y527I-22J22D01* G01* X2244Y747D02* G03* X2244Y647I16J-50D01* G01* G03* X2244Y547I16J-50D01* G01* X2335Y456D02* G03* X2357Y465I0J31D01* G01* X2335Y456D02* G03* X2357Y465I0J31D01* G01* X2576Y447D02* G03* X2612Y497I-16J50D01* G01* Y397D02* G03* X2576Y447I-52J0D01* G01* X2544Y547D02* G03* X2544Y447I16J-50D01* G01* G03* X2612Y397I16J-50D01* G01* X2499Y392D02* G03* X2490Y415I-38J0D01* G01* X2430D02* G03* X2499Y392I31J-23D01* G01* X2520Y62D02* G03* X2547Y73I0J38D01* G01* X2520Y62D02* G03* X2547Y73I0J38D01* G01* X2282Y449D02* G03* X2293Y456I-22J47D01* G01* X2244Y547D02* G03* X2238Y449I16J-50D01* G01* X2077Y3838D02* G03* X2116Y3742I32J-42D01* G01* X2054Y3795D02* G03* X2033Y3838I-54J0D01* G01* X1968D02* G03* X2054Y3795I32J-42D01* G01* X1945D02* G03* X1922Y3839I-54J0D01* G01* X1862Y3840D02* G03* X1945Y3795I29J-45D01* G01* X1836D02* G03* X1730Y3784I-54J0D01* G01* X1771Y3743D02* G03* X1836Y3795I11J52D01* G01* X1724Y3778D02* G03* X1727Y3795I-51J17D01* G01* X2109Y3685D02* G03* X2008Y3659I-54J0D01* G01* X2030Y3638D02* G03* X2109Y3685I26J47D01* G01* X1998Y3670D02* G03* X2000Y3685I-51J15D01* G01* G03* X1944Y3632I-54J0D01* G01* X2061Y3626D02* G03* X2046Y3622I0J-32D01* G01* X2061Y3626D02* G03* X2046Y3622I0J-32D01* G01* X1965Y3585D02* G03* X1942Y3594I-23J-23D01* G01* X1965Y3585D02* G03* X1942Y3594I-23J-23D01* G01* X1870Y3643D02* G03* X1891Y3685I-32J42D01* G01* X1810Y3576D02* G03* X1814Y3571I27J18D01* G01* X1782Y3685D02* G03* X1758Y3730I-54J0D01* G01* X1810Y3576D02* G03* X1814Y3571I27J18D01* G01* X1891Y3685D02* G03* X1792Y3656I-54J0D01* G01* X1773D02* G03* X1782Y3685I-45J29D01* G01* X1871Y3445D02* G03* X1872Y3414I29J-15D01* G01* X1786Y3529D02* G03* X1796Y3551I-24J24D01* G01* X1786Y3529D02* G03* X1796Y3551I-24J24D01* G01* X1572Y4009D02* G03* X1552Y4001I0J-27D01* G01* X1572Y4009D02* G03* X1552Y4001I0J-27D01* G01* X1555Y3938D02* G03* X1574Y3946I0J27D01* G01* X1555Y3938D02* G03* X1574Y3946I0J27D01* G01* X1325Y3992D02* G03* X1307Y3937I5J-32D01* G01* X1278Y4000D02* G03* X1213Y4027I-38J0D01* G01* X1213Y4027D02* G03* X1201Y4000I27J-27D01* G01* X1213Y4027D02* G03* X1201Y4000I27J-27D01* G01* X1302Y3937D02* G03* X1292Y3956I-32J-5D01* G01* X1303Y3932D02* G03* X1302Y3937I-32J0D01* G01* X1184Y3902D02* G03* X1188Y3898I26J20D01* G01* Y3892D02* G03* X1184Y3902I-60J-18D01* G01* X1188Y3892D02* G03* X1184Y3902I-60J-18D01* G01* X1188Y3956D02* G03* X1177Y3932I22J-24D01* G01* X1149Y3941D02* G03* X1105Y3959I-44J-44D01* G01* X1149Y3941D02* G03* X1105Y3959I-44J-44D01* G01* X1177Y3922D02* G03* X1180Y3909I32J0D01* G01* G03* X1172Y3918I-52J-35D01* G01* X1180Y3909D02* G03* X1172Y3918I-52J-35D01* G01* X1727Y3795D02* G03* X1654Y3745I-54J0D01* G01* X1649Y3741D02* G03* X1644Y3733I21J-21D01* G01* X1618Y3795D02* G03* X1618Y3795I-54J0D01* G01* X1649Y3741D02* G03* X1644Y3733I21J-21D01* G01* G03* X1641Y3636I-25J-47D01* G01* X1564Y3685D02* G03* X1488Y3734I-54J0D01* G01* X1483Y3639D02* G03* X1564Y3685I28J46D01* G01* X1509Y3795D02* G03* X1488Y3838I-54J0D01* G01* Y3753D02* G03* X1509Y3795I-32J42D01* G01* X1478Y3634D02* G03* X1483Y3639I-23J23D01* G01* X1478Y3634D02* G03* X1483Y3639I-23J23D01* G01* X1522Y3451D02* G03* X1519Y3454I-25J-21D01* G01* X1415D02* G03* X1410Y3449I22J-24D01* G01* G03* X1404Y3430I26J-19D01* G01* X1995Y3356D02* G03* X2016Y3364I0J29D01* G01* X2173Y3308D02* G03* X2173Y3308I-46J0D01* G01* X2105Y3202D02* G03* X2052Y3165I-15J-35D01* G01* X1995Y3356D02* G03* X2016Y3364I0J29D01* G01* X1980Y3308D02* G03* X1896Y3281I-46J0D01* G01* X1908Y3270D02* G03* X1980Y3308I26J38D01* G01* X2039Y3151D02* G03* X2029Y3144I9J-26D01* G01* X2039Y3151D02* G03* X2029Y3144I9J-26D01* G01* X2031Y2768D02* G03* X2053Y2757I25J24D01* G01* X2013Y3032D02* G03* X2017Y3047I-23J14D01* G01* X1981Y2768D02* G03* X2031Y2768I25J24D01* G01* X2013Y3032D02* G03* X2017Y3047I-23J14D01* G01* X1931Y2768D02* G03* X1981Y2768I25J24D01* G01* X1695Y3286D02* G03* X1716Y3294I0J29D01* G01* X1695Y3286D02* G03* X1716Y3294I0J29D01* G01* X1952Y3212D02* G03* X1943Y3235I-32J0D01* G01* X1959Y3167D02* G03* X1952Y3187I-38J0D01* G01* Y3212D02* G03* X1943Y3235I-32J0D01* G01* X1970Y3086D02* G03* X1967Y3082I20J-19D01* G01* X1958Y3162D02* G03* X1959Y3167I-38J5D01* G01* X1970Y3086D02* G03* X1967Y3082I20J-19D01* G01* X1906Y2757D02* G03* X1931Y2768I-0J34D01* G01* X2053Y2757D02* G03* X2056Y2750I32J8D01* G01* X2050Y2744D02* G03* X2029Y2742I-8J-28D01* G01* G03* X2003Y2742I-13J-26D01* G01* G03* X1978Y2742I-13J-26D01* G01* X1957Y2311D02* G03* X1970Y2307I14J24D01* G01* X1957Y2311D02* G03* X1970Y2307I14J24D01* G01* X1978Y2742D02* G03* X1952Y2742I-13J-26D01* G01* X1913Y2745D02* G03* X1909Y2753I-25J-8D01* G01* X1913Y2745D02* G03* X1909Y2753I-25J-8D01* G01* X1952Y2742D02* G03* X1926Y2742I-13J-26D01* G01* G03* X1913Y2745I-13J-26D01* G01* X2011Y2245D02* G03* X1957Y2257I-31J-10D01* G01* X1845Y2370D02* G03* X1856Y2345I34J0D01* G01* X1845Y2370D02* G03* X1856Y2345I34J0D01* G01* X1786Y2383D02* G03* X1829Y2387I20J28D01* G01* X1790Y2362D02* G03* X1786Y2378I-31J0D01* G01* X1790Y2362D02* G03* X1786Y2378I-31J0D01* G01* X1652Y1967D02* G03* X1652Y1971I-32J-2D01* G01* X1560Y3276D02* G03* X1581Y3284I0J29D01* G01* X1560Y3276D02* G03* X1581Y3284I0J29D01* G01* X1404Y3420D02* G03* X1405Y3413I32J0D01* G01* X1297D02* G03* X1273Y3417I-17J-28D01* G01* X1317Y2526D02* G03* X1311Y2526I-6J-47D01* G01* X1044Y2896D02* G03* X1036Y2875I21J-21D01* G01* X1044Y2896D02* G03* X1036Y2875I21J-21D01* G01* X1162Y2603D02* G03* X1171Y2625I-22J22D01* G01* X1162Y2603D02* G03* X1171Y2625I-22J22D01* G01* X1414Y2426D02* G03* X1417Y2428I-19J19D01* G01* X1414Y2426D02* G03* X1417Y2428I-19J19D01* G01* X1446Y2090D02* G03* X1383Y2077I-31J-10D01* G01* X1386Y1935D02* G03* X1395Y1914I29J0D01* G01* X1386Y1935D02* G03* X1395Y1914I29J0D01* G01* X1383Y2077D02* G03* X1340Y2071I-17J-30D01* G01* Y1968D02* G03* X1386Y1964I25J24D01* G01* X1288Y2287D02* G03* X1285Y2303I-58J0D01* G01* X1258Y2237D02* G03* X1288Y2287I-28J50D01* G01* Y2187D02* G03* X1258Y2237I-58J0D01* G01* X1372Y2125D02* G03* X1367Y2142I-32J0D01* G01* X1312D02* G03* X1372Y2125I27J-17D01* G01* X1316Y2083D02* G03* X1317Y2090I-26J7D01* G01* G03* X1309Y2109I-27J0D01* G01* X1340Y2071D02* G03* X1316Y2082I-25J-24D01* G01* Y1957D02* G03* X1340Y1968I-1J34D01* G01* X1180Y2158D02* G03* X1288Y2187I50J28D01* G01* X1165Y2142D02* G03* X1180Y2158I-35J45D01* G01* X1299Y2119D02* G03* X1280Y2128I-19J-19D01* G01* X1299Y2119D02* G03* X1280Y2128I-19J-19D01* G01* X1177D02* G03* X1165Y2142I-42J-23D01* G01* X841Y4068D02* G03* X826Y4088I-66J-31D01* G01* X841Y4068D02* G03* X826Y4088I-66J-31D01* G01* X952Y3737D02* G03* X971Y3693I62J0D01* G01* X952Y3737D02* G03* X971Y3693I62J0D01* G01* X846Y3740D02* G03* X664Y3691I-97J0D01* G01* X702Y3938D02* G03* X809Y3851I68J-26D01* G01* X682Y3946D02* G03* X668Y3983I-52J0D01* G01* X666Y3890D02* G03* X682Y3928I-36J38D01* G01* X592Y3983D02* G03* X577Y3946I38J-36D01* G01* X682Y3852D02* G03* X666Y3890I-52J0D01* G01* X577Y3928D02* G03* X594Y3890I52J0D01* G01* G03* X577Y3852I36J-38D01* G01* Y3833D02* G03* X682Y3833I52J0D01* G01* X1000Y3549D02* G03* X1038Y3562I0J62D01* G01* X1000Y3549D02* G03* X1038Y3562I0J62D01* G01* Y3536D02* G03* X1027Y3512I22J-24D01* G01* Y3502D02* G03* X1038Y3478I32J0D01* G01* X862Y3651D02* G03* X854Y3584I48J-39D01* G01* X967Y3248D02* G03* X967Y3248I-82J0D01* G01* X678Y3672D02* G03* X846Y3740I70J68D01* G01* X664Y3691D02* G03* X577Y3651I-34J-40D01* G01* X682D02* G03* X678Y3672I-52J0D01* G01* X664Y3593D02* G03* X682Y3632I-34J40D01* G01* X577D02* G03* X596Y3593I52J0D01* G01* X682Y3553D02* G03* X664Y3593I-52J0D01* G01* X577Y3534D02* G03* X682Y3534I52J0D01* G01* X596Y3593D02* G03* X577Y3553I34J-40D01* G01* X543Y3977D02* G03* X542Y3983I-72J0D01* G01* X543Y3977D02* G03* X542Y3983I-72J0D01* G01* X525Y3929D02* G03* X543Y3977I-54J48D01* G01* X525Y3929D02* G03* X543Y3977I-54J48D01* G01* X518Y3922D02* G03* X525Y3929I-48J54D01* G01* X518Y3922D02* G03* X525Y3929I-48J54D01* G01* X470Y3904D02* G03* X518Y3922I-0J72D01* G01* X470Y3904D02* G03* X518Y3922I-0J72D01* G01* X537Y3748D02* G03* X524Y3782I-47J0D01* G01* X537Y3748D02* G03* X524Y3782I-47J0D01* G01* X522Y3783D02* G03* X442Y3721I-52J-15D01* G01* X387Y3826D02* G03* X387Y3826I-72J0D01* G01* Y3676D02* G03* X387Y3676I-72J0D01* G01* X562Y3277D02* G03* X535Y3289I-27J-27D01* G01* X562Y3277D02* G03* X535Y3289I-27J-27D01* G01* X343Y3350D02* G03* X312Y3398I-52J0D01* G01* X306Y3300D02* G03* X343Y3350I-16J50D01* G01* X326Y3289D02* G03* X306Y3300I-36J-38D01* G01* X274D02* G03* X326Y3212I16J-50D01* G01* X268Y3398D02* G03* X274Y3300I22J-47D01* G01* X814Y2496D02* G03* X806Y2475I21J-21D01* G01* X814Y2496D02* G03* X806Y2475I21J-21D01* G01* X632Y3099D02* G03* X636Y3088I38J7D01* G01* X548Y3160D02* G03* X498Y3188I-32J0D01* G01* Y3132D02* G03* X548Y3160I17J27D01* G01* X622Y2487D02* G03* X600Y2478I0J-31D01* G01* X622Y2487D02* G03* X600Y2478I0J-31D01* G01* X546Y2469D02* G03* X546Y2469I-54J0D01* G01* X806Y2408D02* G03* X772Y2407I-16J-28D01* G01* G03* X768Y2404I18J-27D01* G01* G03* X760Y2391I22J-24D01* G01* G03* X742Y2404I-40J-35D01* G01* X704Y2307D02* G03* X674Y2282I16J-50D01* G01* X682Y2221D02* G03* X752Y2216I38J36D01* G01* X698Y2404D02* G03* X704Y2307I22J-47D01* G01* X752Y2128D02* G03* X682Y2123I-32J-41D01* G01* X679Y2054D02* G03* X704Y2037I41J33D01* G01* G03* X698Y1939I16J-50D01* G01* X538Y2333D02* G03* X547Y2339I-12J28D01* G01* X538Y2333D02* G03* X547Y2339I-12J28D01* G01* X525Y2403D02* G03* X538Y2333I-33J-42D01* G01* X536Y2282D02* G03* X536Y2221I-44J-31D01* G01* X542Y2123D02* G03* X546Y2142I-50J20D01* G01* Y2033D02* G03* X542Y2054I-54J0D01* G01* X555Y2744D02* G03* X555Y2744I-112J0D01* G01* X359Y2565D02* G03* X351Y2586I-29J0D01* G01* X359Y2565D02* G03* X351Y2586I-29J0D01* G01* X200Y3088D02* G03* X177Y3078I0J-32D01* G01* X200Y3088D02* G03* X177Y3078I0J-32D01* G01* X80Y3188D02* G03* X61Y3179I0J-27D01* G01* X80Y3188D02* G03* X61Y3179I0J-27D01* G01* X112Y3013D02* G03* X102Y2990I23J-23D01* G01* X112Y3013D02* G03* X102Y2990I23J-23D01* G01* X446Y2415D02* G03* X359Y2457I-54J0D01* G01* Y2373D02* G03* X446Y2415I33J42D01* G01* Y2306D02* G03* X359Y2348I-54J0D01* G01* Y2264D02* G03* X446Y2306I33J42D01* G01* Y2197D02* G03* X370Y2246I-54J0D01* G01* X546Y2142D02* G03* X442Y2123I-54J0D01* G01* X443Y2054D02* G03* X546Y2033I49J-21D01* G01* X339Y2195D02* G03* X446Y2197I53J2D01* G01* X433Y2123D02* G03* X433Y2054I-41J-34D01* G01* X446Y1979D02* G03* X446Y1979I-54J0D01* G01* X102Y2275D02* G03* X121Y2273I13J30D01* G01* X2089Y1365D02* G03* X2079Y1389I-34J0D01* G01* X2089Y1365D02* G03* X2079Y1389I-34J0D01* G01* X1931Y1442D02* G03* X1936Y1436I29J18D01* G01* X1931Y1442D02* G03* X1936Y1436I29J18D01* G01* X1933Y1405D02* G03* X1920Y1431I-32J0D01* G01* X1910Y1374D02* G03* X1933Y1405I-10J31D01* G01* X1751Y1866D02* G03* X1753Y1875I-26J9D01* G01* X1751Y1866D02* G03* X1753Y1875I-26J9D01* G01* X1583Y1589D02* G03* X1582Y1585I27J-4D01* G01* X1986Y1247D02* G03* X2020Y1282I-16J50D01* G01* Y1311D02* G03* X1954Y1247I-51J-14D01* G01* X2020Y1211D02* G03* X1986Y1247I-51J-14D01* G01* X1954D02* G03* X1918Y1198I16J-50D01* G01* X1986Y1047D02* G03* X2020Y1082I-16J50D01* G01* X1920Y1114D02* G03* X1954Y1047I50J-17D01* G01* X2020Y1011D02* G03* X1986Y1047I-51J-14D01* G01* X1954D02* G03* X1954Y947I16J-50D01* G01* X1686Y1247D02* G03* X1722Y1297I-16J50D01* G01* G03* X1638Y1338I-52J0D01* G01* Y1256D02* G03* X1654Y1247I32J41D01* G01* X1722Y1197D02* G03* X1686Y1247I-52J0D01* G01* Y1147D02* G03* X1722Y1197I-16J50D01* G01* X1654Y1247D02* G03* X1638Y1238I16J-50D01* G01* X1722Y1097D02* G03* X1686Y1147I-52J0D01* G01* Y1047D02* G03* X1722Y1097I-16J50D01* G01* Y997D02* G03* X1686Y1047I-52J0D01* G01* X1638Y1056D02* G03* X1654Y1047I32J41D01* G01* G03* X1638Y1038I16J-50D01* G01* X1583Y1589D02* G03* X1582Y1585I27J-4D01* G01* X1421Y1862D02* G03* X1390Y1851I-6J-34D01* G01* Y1748D02* G03* X1421Y1737I25J24D01* G01* X1516Y1548D02* G03* X1511Y1556I-26J-13D01* G01* X1516Y1548D02* G03* X1511Y1556I-26J-13D01* G01* X1421Y1575D02* G03* X1429Y1554I29J0D01* G01* X1421Y1575D02* G03* X1429Y1554I29J0D01* G01* X1390Y1851D02* G03* X1340Y1851I-25J-24D01* G01* Y1748D02* G03* X1390Y1748I25J24D01* G01* X1325Y1738D02* G03* X1340Y1748I-10J33D01* G01* Y1851D02* G03* X1316Y1862I-25J-24D01* G01* X1324Y1536D02* G03* X1332Y1557I-22J22D01* G01* X1378Y1546D02* G03* X1351Y1535I0J-38D01* G01* X1378Y1546D02* G03* X1351Y1535I0J-38D01* G01* X1324Y1536D02* G03* X1332Y1557I-22J22D01* G01* X1133Y1537D02* G03* X1131Y1543I-37J-9D01* G01* X1062Y1546D02* G03* X1059Y1537I34J-18D01* G01* X1133D02* G03* X1131Y1543I-37J-9D01* G01* X1313Y1515D02* G03* X1312Y1524I-52J0D01* G01* X1305Y1488D02* G03* X1313Y1515I-45J27D01* G01* X1414Y1401D02* G03* X1406Y1380I21J-21D01* G01* X1414Y1401D02* G03* X1406Y1380I21J-21D01* G01* X1334Y1379D02* G03* X1327Y1402I-38J0D01* G01* X1334Y1379D02* G03* X1327Y1402I-38J0D01* G01* X1406Y1342D02* G03* X1334Y1323I-26J-46D01* G01* X1217Y1384D02* G03* X1258Y1363I43J31D01* G01* X1396Y1247D02* G03* X1406Y1251I-16J50D01* G01* Y1242D02* G03* X1396Y1247I-26J-46D01* G01* X1334Y1271D02* G03* X1364Y1247I45J26D01* G01* G03* X1334Y1223I16J-50D01* G01* X1232Y1192D02* G03* X1256Y1202I0J34D01* G01* X1258Y1279D02* G03* X1226Y1269I-7J-34D01* G01* X1232Y1192D02* G03* X1256Y1202I0J34D01* G01* X1213Y1388D02* G03* X1217Y1384I27J27D01* G01* X1213Y1388D02* G03* X1217Y1384I27J27D01* G01* X1245Y1142D02* G03* X1221Y1175I-34J0D01* G01* X1176Y1086D02* G03* X1245Y1086I34J0D01* G01* X1139Y1068D02* G03* X1145Y1086I-29J19D01* G01* X2079Y916D02* G03* X2089Y940I-24J24D01* G01* X2079Y916D02* G03* X2089Y940I-24J24D01* G01* X1986Y947D02* G03* X2020Y982I-16J50D01* G01* X2012Y862D02* G03* X2036Y872I0J34D01* G01* X2012Y862D02* G03* X2036Y872I0J34D01* G01* X2003Y937D02* G03* X1986Y947I-33J-40D01* G01* X2072Y762D02* G03* X2096Y772I0J34D01* G01* X2072Y762D02* G03* X2096Y772I0J34D01* G01* X1986Y847D02* G03* X2010Y862I-16J50D01* G01* Y831D02* G03* X1986Y847I-40J-34D01* G01* Y747D02* G03* X2010Y762I-16J50D01* G01* X2023Y697D02* G03* X1986Y747I-52J0D01* G01* Y647D02* G03* X2023Y697I-16J50D01* G01* Y597D02* G03* X1986Y647I-52J0D01* G01* X1954Y947D02* G03* X1954Y847I16J-50D01* G01* X1686Y947D02* G03* X1722Y997I-16J50D01* G01* X1720Y911D02* G03* X1686Y947I-50J-15D01* G01* X1638Y956D02* G03* X1654Y947I32J41D01* G01* X1954Y847D02* G03* X1954Y747I16J-50D01* G01* G03* X1954Y647I16J-50D01* G01* X1859Y706D02* G03* X1867Y725I-19J19D01* G01* X1859Y706D02* G03* X1867Y725I-19J19D01* G01* X1992Y449D02* G03* X2023Y497I-22J47D01* G01* X1986Y547D02* G03* X2023Y597I-16J50D01* G01* X1954Y647D02* G03* X1954Y547I16J-50D01* G01* X2023Y497D02* G03* X1986Y547I-52J0D01* G01* X1954D02* G03* X1948Y449I16J-50D01* G01* X1710Y563D02* G03* X1724Y571I-5J27D01* G01* X1710Y563D02* G03* X1724Y571I-5J27D01* G01* X1722Y497D02* G03* X1686Y547I-52J0D01* G01* G03* X1710Y563I-16J50D01* G01* X1692Y449D02* G03* X1722Y497I-22J47D01* G01* X1713Y139D02* G03* X1742Y197I-43J58D01* G01* G03* X1709Y258I-72J0D01* G01* X1654Y947D02* G03* X1638Y938I16J-50D01* G01* X1258Y953D02* G03* X1249Y933I38J-28D01* G01* X1217Y901D02* G03* X1176Y867I-7J-34D01* G01* Y811D02* G03* X1200Y778I34J0D01* G01* X1224Y442D02* G03* X1196Y442I-14J-46D01* G01* X1131Y950D02* G03* X1139Y970I-21J21D01* G01* X1131Y950D02* G03* X1139Y970I-21J21D01* G01* X1141Y795D02* G03* X1145Y811I-31J16D01* G01* X1143Y780D02* G03* X1141Y791I-32J0D01* G01* X1142Y775D02* G03* X1143Y780I-32J5D01* G01* X1145Y867D02* G03* X1076Y867I-34J0D01* G01* Y811D02* G03* X1080Y795I34J0D01* G01* Y791D02* G03* X1078Y775I31J-11D01* G01* X1521Y165D02* G03* X1533Y138I38J0D01* G01* X1521Y165D02* G03* X1533Y138I38J0D01* G01* X1598Y73D02* G03* X1625Y62I27J27D01* G01* X1598Y73D02* G03* X1625Y62I27J27D01* G01* X1289Y231D02* G03* X1264Y221I0J-34D01* G01* X1289Y231D02* G03* X1264Y221I0J-34D01* G01* X1110Y201D02* G03* X1110Y132I-40J-34D01* G01* X937Y1743D02* G03* X946Y1765I-22J22D01* G01* X937Y1743D02* G03* X946Y1765I-22J22D01* G01* X748Y1834D02* G03* X780Y1808I27J1D01* G01* G03* X812Y1763I30J-13D01* G01* X946Y1741D02* G03* X935Y1714I27J-27D01* G01* X1062Y1546D02* G03* X1059Y1537I34J-18D01* G01* X946Y1741D02* G03* X935Y1714I27J-27D01* G01* X1035Y1537D02* G03* X1013Y1531I0J-38D01* G01* X1035Y1537D02* G03* X1013Y1531I0J-38D01* G01* X910Y1714D02* G03* X920Y1726I-20J26D01* G01* X717Y1422D02* G03* X715Y1418I27J-17D01* G01* X653Y1789D02* G03* X675Y1798I0J31D01* G01* X653Y1789D02* G03* X675Y1798I0J31D01* G01* X664Y1546D02* G03* X671Y1536I26J9D01* G01* X664Y1546D02* G03* X671Y1536I26J9D01* G01* X610Y1507D02* G03* X588Y1498I0J-31D01* G01* X610Y1507D02* G03* X588Y1498I0J-31D01* G01* X1036Y1391D02* G03* X1057Y1399I0J29D01* G01* X1036Y1391D02* G03* X1057Y1399I0J29D01* G01* X962Y1355D02* G03* X946Y1347I5J-29D01* G01* X962Y1355D02* G03* X946Y1347I5J-29D01* G01* X904Y1399D02* G03* X925Y1391I21J21D01* G01* X904Y1399D02* G03* X925Y1391I21J21D01* G01* X950Y1281D02* G03* X959Y1283I0J29D01* G01* X950Y1281D02* G03* X959Y1283I0J29D01* G01* X715Y1418D02* G03* X713Y1400I30J-13D01* G01* X689D02* G03* X664Y1411I-24J-22D01* G01* X655D02* G03* X630Y1400I0J-32D01* G01* Y1296D02* G03* X655Y1286I24J22D01* G01* X567Y1403D02* G03* X588Y1412I0J31D01* G01* X567Y1403D02* G03* X588Y1412I0J31D01* G01* X595Y1295D02* G03* X605Y1296I0J31D01* G01* X595Y1295D02* G03* X605Y1296I0J31D01* G01* X672Y1286D02* G03* X671Y1280I28J-6D01* G01* X664Y1286D02* G03* X672Y1286I0J32D01* G01* G03* X671Y1280I28J-6D01* G01* X546Y1924D02* G03* X546Y1924I-54J0D01* G01* X446Y1870D02* G03* X446Y1870I-54J0D01* G01* X533Y1850D02* G03* X539Y1789I-40J-35D01* G01* X536Y1737D02* G03* X536Y1676I-44J-31D01* G01* X446Y1761D02* G03* X446Y1761I-54J0D01* G01* Y1652D02* G03* X446Y1652I-54J0D01* G01* X121Y1790D02* G03* X129Y1769I29J0D01* G01* X121Y1790D02* G03* X129Y1769I29J0D01* G01* X147Y1635D02* G03* X102Y1665I-32J0D01* G01* X144Y1620D02* G03* X147Y1635I-29J15D01* G01* X546Y1597D02* G03* X546Y1597I-54J0D01* G01* Y1488D02* G03* X445Y1464I-54J0D01* G01* X540D02* G03* X546Y1488I-48J24D01* G01* X446Y1543D02* G03* X446Y1543I-54J0D01* G01* X436Y1464D02* G03* X345Y1408I-44J-31D01* G01* X546Y1379D02* G03* X540Y1403I-54J0D01* G01* Y1356D02* G03* X546Y1379I-48J23D01* G01* Y1270D02* G03* X540Y1295I-54J0D01* G01* X539Y1244D02* G03* X546Y1270I-47J26D01* G01* X146Y1479D02* G03* X147Y1490I-31J11D01* G01* G03* X144Y1505I-32J0D01* G01* X39Y1204D02* G03* X84Y1186I31J11D01* G01* X181Y1175D02* G03* X225Y1131I29J-15D01* G01* G03* X232Y1122I30J14D01* G01* X147Y1125D02* G03* X146Y1136I-32J0D01* G01* X225Y1131D02* G03* X232Y1122I30J14D01* G01* X39Y1204D02* G03* X84Y1186I31J11D01* G01* Y1136D02* G03* X147Y1125I31J-11D01* G01* X970Y945D02* G03* X1010Y911I34J0D01* G01* X866Y869D02* G03* X842Y879I-24J-24D01* G01* X866Y869D02* G03* X842Y879I-24J-24D01* G01* X826Y899D02* G03* X834Y920I-21J21D01* G01* X826Y899D02* G03* X834Y920I-21J21D01* G01* X800Y886D02* G03* X821Y894I0J29D01* G01* X800Y886D02* G03* X821Y894I0J29D01* G01* X636Y821D02* G03* X660Y811I24J24D01* G01* X586Y885D02* G03* X596Y861I34J0D01* G01* X586Y885D02* G03* X596Y861I34J0D01* G01* X636Y821D02* G03* X660Y811I24J24D01* G01* X609Y725D02* G03* X613Y740I-29J15D01* G01* X1018Y489D02* G03* X972Y519I-47J-22D01* G01* X864Y535D02* G03* X875Y508I38J0D01* G01* X864Y535D02* G03* X875Y508I38J0D01* G01* X918Y465D02* G03* X923Y444I52J2D01* G01* Y395D02* G03* X970Y347I47J0D01* G01* X923Y395D02* G03* X970Y347I47J0D01* G01* X706Y499D02* G03* X716Y523I-24J24D01* G01* X706Y499D02* G03* X716Y523I-24J24D01* G01* X625Y432D02* G03* X649Y442I0J34D01* G01* X625Y432D02* G03* X649Y442I0J34D01* G01* X555Y886D02* G03* X555Y886I-112J0D01* G01* X613Y740D02* G03* X551Y725I-32J0D01* G01* X610Y501D02* G03* X561Y519I-40J-34D01* G01* X531Y549D02* G03* X529Y551I-21J-22D01* G01* X531Y549D02* G03* X529Y551I-21J-22D01* G01* X332Y1022D02* G03* X355Y1013I23J23D01* G01* X332Y1022D02* G03* X355Y1013I23J23D01* G01* X333Y505D02* G03* X355Y496I22J22D01* G01* X333Y505D02* G03* X355Y496I22J22D01* G01* X289Y562D02* G03* X298Y541I31J0D01* G01* X289Y562D02* G03* X298Y541I31J0D01* G01* X520Y451D02* G03* X610Y432I50J16D01* G01* X504Y427D02* G03* X520Y451I-34J40D01* G01* X427Y496D02* G03* X435Y427I43J-30D01* G01* X522Y167D02* G03* X504Y206I-52J0D01* G01* X435D02* G03* X522Y167I34J-40D01* G01* X278Y394D02* G03* X278Y394I-82J0D01* G01* X210Y1160D02* Y1730D01* X1933Y3463D02* X1959D01* X1900Y3430D02* X1933Y3463D01* X245Y1830D02* Y2365D01* Y1830D02* X255Y1820D01* X1727Y3740D02* X1782Y3795D01* X1570Y3478D02* X1655Y3563D01* X1570Y3465D02* Y3478D01* X1810Y1460D02* Y1675D01* X1800Y1450D02* X1810Y1460D01* X1970Y1097D02* Y1105D01* X1875Y1380D02* X1900Y1405D01* X1265Y1800D02* Y1800D01* X1265Y1715D02* Y1800D01* X1230Y1680D02* X1265Y1715D01* X1215Y1740D02* X1230Y1725D01* X1215Y1800D02* X1215Y1800D01* X1274Y3034D02* X1622D01* X1165Y1800D02* Y1805D01* X875Y1955D02* Y2440D01* X875Y1210D02* Y1219D01* X720Y915D02* X800D01* X715D02* X720D01* X1281Y3384D02* X1467D01* X1280Y3385D02* X1281Y3384D01* X783Y1219D02* Y1222D01* Y1172D02* Y1219D01* X720Y1117D02* X727D01* X115Y1490D02* Y1635D01* X2250Y3459D02* X2254Y3463D01* X2250Y3425D02* Y3459D01* X265Y2420D02* X295Y2390D01* X326Y1379D02* X492D01* X1270Y3455D02* Y3463D01* X115Y2305D02* Y2455D01* X3278Y2958D02* Y2962D01* X3175Y1560D02* X3270D01* X3175Y2420D02* X3180Y2415D01* X2560Y697D02* X2582D01* X3060Y2655D02* Y2719D01* X3000Y1625D02* X3035Y1660D01* X2555Y797D02* Y835D01* X1582Y2937D02* Y2963D01* X2172Y1905D02* Y1995D01* X2164Y1897D02* X2172Y1905D01* X2080Y1897D02* X2164D01* X2080Y1803D02* Y1897D01* X1415Y2080D02* X1415Y2080D01* Y2020D02* Y2080D01* Y1935D02* Y2020D01* X1548Y897D02* Y1113D01* X1656Y2371D02* Y2440D01* X1036Y1420D02* X1073Y1457D01* X897Y1448D02* Y1476D01* X2825Y2020D02* Y2370D01* X3130Y1690D02* Y1865D01* X3042Y1585D02* Y1602D01* X1905Y2440D02* Y2445D01* X2170Y1815D02* Y1820D01* Y1723D02* Y1815D01* X1860Y1465D02* Y1516D01* X1670Y797D02* X1732D01* X1760Y1500D02* Y1516D01* X1623Y697D02* X1670D01* X1912Y1995D02* Y2040D01* Y1905D02* Y1995D01* Y1815D02* Y1905D01* X1888Y2064D02* Y2095D01* X1884Y1843D02* X1912Y1815D01* X1820Y1843D02* X1884D01* X1065Y1664D02* X1191D01* X1063Y1662D02* X1065Y1664D01* X1016Y1615D02* X1063Y1662D01* X897Y1648D02* Y1663D01* X2675Y2330D02* Y2435D01* X2640Y2295D02* X2675Y2330D01* X2425Y1345D02* X2530D01* X2260Y1097D02* X2327D01* X3260Y1815D02* Y1828D01* X3118Y1585D02* Y1643D01* X3211Y1616D02* X3255Y1660D01* X967Y1327D02* X1002Y1325D01* X392Y1216D02* X394Y1215D01* X1210Y1114D02* Y1145D01* X1078Y1187D02* Y1325D01* X718Y2088D02* X720Y2087D01* X1110Y970D02* Y1114D01* X940Y747D02* Y800D01* X1425Y755D02* X1435Y765D01* X1415Y745D02* X1425Y755D01* X580Y670D02* Y740D01* X1357Y2753D02* Y2754D01* X1520Y2668D02* Y2690D01* X2040Y3462D02* Y3465D01* Y3430D02* Y3462D01* X378Y2197D02* X392D01* X2195Y2590D02* Y2670D01* X2210Y2510D02* X2230Y2495D01* X2765Y2150D02* Y2155D01* Y2098D02* Y2150D01* Y2098D02* X2768Y2095D01* X1123Y662D02* X1210D01* X1120Y659D02* X1123Y662D01* X3891Y3683D02* Y4094D01* X3851Y3946D02* X4094D01* X3851Y3926D02* X4094D01* X3852Y3746D02* X4094D01* X3871Y3703D02* Y4094D01* X3851Y3946D02* Y4094D01* Y3749D02* Y3928D01* X4031Y3599D02* Y4094D01* X4011Y3599D02* Y4094D01* X3991Y3599D02* Y4094D01* X3971Y3599D02* Y4094D01* X3951Y3599D02* Y4094D01* X3931Y3520D02* Y4094D01* X3911Y3663D02* Y4094D01* X3833Y3986D02* X4094D01* X3801Y4006D02* X4094D01* X3846Y3966D02* X4094D01* X3845Y3906D02* X4094D01* X3831Y3886D02* X4094D01* X3795Y3866D02* X4094D01* X3836Y3786D02* X4094D01* X3810Y3806D02* X4094D01* X3847Y3766D02* X4094D01* X3851Y3723D02* Y3731D01* X3924Y3626D02* X4094D01* X3924Y3606D02* X4094D01* X4043Y3586D02* X4094D01* X4043Y3566D02* X4094D01* X3990Y3547D02* Y3593D01* X3938Y3599D02* X4043D01* Y3546D02* X4094D01* X4043Y3526D02* X4094D01* X3990Y3547D02* X4036D01* X4043Y3506D02* X4094D01* X3938Y3514D02* Y3599D01* X3924Y3528D02* Y3635D01* X3944Y3547D02* X3990D01* X3868Y3706D02* X4094D01* X3851Y3726D02* X4094D01* X3908Y3666D02* X4094D01* X3888Y3686D02* X4094D01* X3850Y3724D02* X3912Y3662D01* X3922Y3646D02* X4094D01* X3924Y3586D02* X3938D01* X3924Y3566D02* X3938D01* X3924Y3546D02* X3938D01* X3924Y3528D02* X3938Y3514D01* X3925Y3526D02* X3938D01* X3831Y3988D02* Y4094D01* X3811Y4002D02* Y4094D01* X3791Y4009D02* Y4094D01* X3780Y3937D02* X3846D01* X3771Y4009D02* Y4094D01* X3751Y4004D02* Y4094D01* X3780Y3937D02* Y4003D01* X3831Y3791D02* Y3886D01* X3811Y3805D02* Y3872D01* X3791Y3812D02* Y3866D01* X3780Y3871D02* Y3937D01* X3751Y3807D02* Y3870D01* X3771Y3812D02* Y3865D01* X3731Y3991D02* Y4094D01* X3711Y3962D02* Y4094D01* X3731Y3794D02* Y3883D01* X3714Y3937D02* X3780D01* X3691Y3789D02* Y4094D01* X3671Y3789D02* Y4094D01* X3711Y3789D02* Y3912D01* X3651Y3789D02* Y4094D01* X3610Y3789D02* X3715D01* Y3779D02* Y3789D01* X3631D02* Y4094D01* X3611Y3789D02* Y4094D01* X3591Y3527D02* Y4094D01* X3796Y3669D02* X3846Y3619D01* X3816Y3606D02* X3846D01* X3791Y3615D02* Y3669D01* X3751Y3610D02* Y3673D01* X3715Y3786D02* X3723D01* X3771Y3615D02* Y3668D01* X3846Y3571D02* Y3619D01* X3838Y3586D02* X3846D01* X3811Y3608D02* Y3654D01* X3731Y3598D02* Y3686D01* X3831Y3594D02* Y3634D01* X3715Y3692D02* Y3702D01* X3610Y3692D02* X3715D01* X3711Y3592D02* Y3692D01* X3691Y3592D02* Y3692D01* X3671Y3592D02* Y3692D01* X3610D02* Y3789D01* X3651Y3592D02* Y3692D01* X3715Y3582D02* Y3592D01* X3610D02* X3715D01* Y3586D02* X3721D01* X3631Y3592D02* Y3692D01* X3611Y3592D02* Y3692D01* X3610Y3545D02* Y3592D01* X4039Y3466D02* X4094D01* X4025Y3486D02* X4094D01* X4042Y3446D02* X4094D01* X4038Y3426D02* X4094D01* X4043Y3494D02* Y3599D01* X4031Y3479D02* Y3494D01* X4023Y3406D02* X4094D01* X4039Y3366D02* X4094D01* X4025Y3386D02* X4094D01* X4042Y3346D02* X4094D01* X4038Y3326D02* X4094D01* X4031Y3379D02* Y3415D01* Y3279D02* Y3315D01* X4012Y3494D02* X4043D01* X4011Y3395D02* Y3399D01* X4023Y3306D02* X4094D01* X3874D02* X3957D01* X4011Y3295D02* Y3299D01* X4039Y3266D02* X4094D01* X4025Y3286D02* X4094D01* X4042Y3246D02* X4094D01* X4038Y3226D02* X4094D01* X4039Y3166D02* X4094D01* X4031Y3179D02* Y3215D01* X4042Y3146D02* X4094D01* X4038Y3126D02* X4094D01* X4039Y3066D02* X4094D01* X4042Y3046D02* X4094D01* X4038Y3026D02* X4094D01* X4031Y3079D02* Y3115D01* Y2979D02* Y3015D01* X4023Y3206D02* X4094D01* X4025Y3186D02* X4094D01* X4023Y3106D02* X4094D01* X4011Y3195D02* Y3199D01* X4025Y3086D02* X4094D01* X4023Y3006D02* X4094D01* X4011Y3095D02* Y3099D01* X3771Y3419D02* Y3471D01* X3811Y3412D02* Y3436D01* X3791Y3418D02* Y3456D01* X3731Y3401D02* Y3489D01* X3715Y3495D02* Y3505D01* X3751Y3413D02* Y3476D01* X3777Y3471D02* X3928Y3320D01* X3831Y3397D02* Y3416D01* X3711Y3395D02* Y3495D01* X3691Y3395D02* Y3495D01* X3671Y3395D02* Y3495D01* X3660Y3486D02* X3735D01* X3640Y3466D02* X3781D01* X3620Y3446D02* X3801D01* X3600Y3426D02* X3821D01* X3669Y3495D02* X3715D01* X3571Y3507D02* Y4094D01* X3593Y3420D02* X3669Y3495D01* X3651Y3395D02* Y3478D01* X3631Y3395D02* Y3458D01* X3611Y3395D02* Y3438D01* X3591Y3309D02* Y3418D01* X3871Y3309D02* Y3376D01* X3849Y3366D02* X3881D01* X3852Y3346D02* X3901D01* X3854Y3326D02* X3921D01* X3851Y3355D02* Y3396D01* Y3329D02* Y3338D01* X3951Y3285D02* Y3309D01* X3894Y3286D02* X3955D01* X3895Y3285D02* X3954D01* X3911D02* Y3336D01* X3891Y3289D02* Y3356D01* X3931Y3285D02* Y3316D01* X3821Y3406D02* X3841D01* X3571D02* X3738D01* X3840Y3386D02* X3861D01* X3715D02* X3719D01* X3715Y3385D02* Y3395D01* X3610D02* X3715D01* X3575Y3310D02* X3585D01* X3850Y3330D02* X3895Y3285D01* X3610Y3299D02* Y3395D01* X3600Y3306D02* X3610D01* X3571Y3309D02* Y3406D01* X3580Y3277D02* Y3303D01* X3551Y3789D02* Y4094D01* X3531Y3789D02* Y4094D01* X3555Y3786D02* X3610D01* X3555Y3766D02* X3610D01* X3511Y3789D02* Y4094D01* X3491Y3789D02* Y4094D01* X3471Y3789D02* Y4094D01* X3555Y3692D02* Y3789D01* Y3746D02* X3610D01* X3555Y3726D02* X3610D01* X3503Y3740D02* X3549D01* X3503D02* Y3782D01* X3457Y3740D02* X3503D01* Y3698D02* Y3740D01* X3390Y4006D02* X3758D01* X2161Y4026D02* X4094D01* X3422Y3906D02* X3714D01* X3412Y3986D02* X3726D01* X3427Y3946D02* X3708D01* X3423Y3966D02* X3713D01* X3427Y3926D02* X3708D01* X3387Y3866D02* X3764D01* X2769Y3846D02* X4094D01* X2769Y3826D02* X4094D01* X3410Y3886D02* X3728D01* X2762Y3806D02* X3749D01* X3450Y3789D02* X3555D01* Y3706D02* X3610D01* X3555Y3586D02* X3610D01* X3555Y3566D02* X3610D01* X3555Y3546D02* X3610D01* X3555Y3526D02* X3591D01* X3551Y3592D02* Y3692D01* X3555Y3506D02* X3571D01* X3562Y3497D02* X3610Y3545D01* X3560Y3395D02* X3574Y3409D01* X3555Y3386D02* X3610D01* X3555Y3499D02* Y3592D01* Y3499D02* X3560D01* X3555Y3395D02* X3560D01* X2767Y3666D02* X3799D01* X2769Y3646D02* X3819D01* X2769Y3626D02* X3839D01* X2762Y3606D02* X3743D01* X3531Y3592D02* Y3692D01* X3450D02* X3555D01* X2756Y3686D02* X3731D01* X3511Y3592D02* Y3692D01* X3450Y3592D02* X3555D01* X3503Y3543D02* X3549D01* X3503D02* Y3585D01* X3491Y3592D02* Y3692D01* X3457Y3543D02* X3503D01* X3451Y3789D02* Y4094D01* X3411Y3986D02* Y4094D01* X3391Y4005D02* Y4094D01* X3346Y3937D02* X3422D01* X3371Y4015D02* Y4094D01* X3351Y4018D02* Y4094D01* X3346Y3937D02* Y4012D01* X3431Y3490D02* Y4094D01* X3411Y3485D02* Y3888D01* X3450Y3692D02* Y3789D01* X3391Y3485D02* Y3869D01* X3371Y3481D02* Y3859D01* X3351Y3463D02* Y3856D01* X3331Y4017D02* Y4094D01* X3311Y4011D02* Y4094D01* X3346Y3862D02* Y3937D01* X3271D02* X3346D01* X3291Y3997D02* Y4094D01* X2161Y4006D02* X3303D01* X2767Y3866D02* X3306D01* X2740Y3786D02* X3450D01* X2692Y3766D02* X3450D01* X2696Y3746D02* X3450D01* X3331Y3443D02* Y3857D01* X2695Y3726D02* X3450D01* X3471Y3592D02* Y3692D01* X3451Y3592D02* Y3692D01* X3450Y3499D02* Y3592D01* X3440Y3499D02* X3450D01* X3427Y3485D02* X3440Y3499D01* X3390Y3485D02* X3427D01* X3427Y3408D02* X3440Y3395D01* X3404Y3406D02* X3429D01* X3440Y3395D02* X3450D01* X3406Y3408D02* X3427D01* X3397Y3399D02* X3406Y3408D01* X2757Y3586D02* X3450D01* X2690Y3706D02* X3450D01* X2767Y3566D02* X3450D01* X2769Y3546D02* X3450D01* X2768Y3526D02* X3450D01* X2761Y3506D02* X3450D01* X2738Y3486D02* X3428D01* X3331Y3443D02* X3363Y3474D01* X2306Y3466D02* X3355D01* X2306Y3446D02* X3335D01* X2276Y3406D02* X3320D01* X3555Y3366D02* X3610D01* X3555Y3346D02* X3610D01* X3555Y3326D02* X3610D01* X3555Y3306D02* X3560D01* X3555Y3303D02* Y3395D01* X3503Y3346D02* X3549D01* X3503Y3304D02* Y3346D01* X3507Y3208D02* X3520Y3195D01* X3511Y3290D02* Y3298D01* X3507Y3285D02* X3520Y3298D01* X3511Y3100D02* Y3204D01* X3457Y3346D02* X3503D01* X3450Y3298D02* X3520D01* X3470Y3285D02* X3507D01* X3401Y3286D02* X3508D01* X3491Y3285D02* Y3298D01* X3471Y3285D02* Y3298D01* X3451Y3281D02* Y3298D01* X3491Y3100D02* Y3208D01* X3486D02* X3507D01* X3484Y3206D02* X3509D01* X3457Y3180D02* X3486Y3208D01* X3544Y3195D02* X3551D01* X3520D02* X3544D01* X3550Y3150D02* X3584D01* X3544Y3109D02* Y3195D01* X3531Y3109D02* Y3195D01* X3520Y3109D02* X3544D01* X3511Y3100D02* X3520Y3109D01* X3544Y3004D02* X3552D01* X3520Y3005D02* X3551D01* X3544Y2909D02* Y3004D01* X3511Y2900D02* Y3014D01* X3503Y3023D02* X3520Y3005D01* X3531Y2909D02* Y3005D01* X3464Y3186D02* X3544D01* X3454Y3166D02* X3544D01* X3437Y3146D02* X3544D01* X3402Y3126D02* X3544D01* X3471Y3100D02* Y3194D01* X3430Y3106D02* X3518D01* X3443Y3100D02* X3511D01* X3443Y3023D02* X3503D01* X3398Y3006D02* X3519D01* X3491Y2879D02* Y3023D01* X3451Y3100D02* Y3162D01* X3471Y2879D02* Y3023D01* X3397Y3386D02* X3450D01* X3397Y3366D02* X3450D01* X3401Y3306D02* X3450D01* X3397Y3346D02* X3450D01* Y3298D02* Y3395D01* X3397Y3315D02* Y3399D01* X3401Y3266D02* X3435D01* X3431Y3263D02* Y3404D01* X3401Y3232D02* X3443Y3274D01* X3431Y3106D02* Y3143D01* X3411Y3243D02* Y3408D01* X3401Y3232D02* Y3315D01* Y3246D02* X3415D01* X3311Y3349D02* Y3863D01* X2194Y3386D02* X3320D01* X3315Y3346D02* X3320D01* X3294Y3366D02* X3320D01* X3291Y3368D02* Y3877D01* X3397Y3326D02* X3450D01* X3320Y3341D02* Y3415D01* X3397Y3315D02* X3401D01* X3298Y3363D02* X3320Y3341D01* X3281Y3153D02* X3298Y3136D01* X3291Y3004D02* Y3143D01* X3410Y3132D02* X3415Y3138D01* X3411Y3108D02* Y3134D01* X3398Y3119D02* Y3124D01* Y3105D02* Y3119D01* Y3105D02* Y3119D01* X3451Y2879D02* Y3023D01* X3431Y3004D02* Y3016D01* X3398Y3004D02* Y3017D01* X3411Y3004D02* Y3014D01* X3314Y3119D02* Y3128D01* X3281Y3126D02* X3314D01* Y3102D02* Y3119D01* Y3102D02* Y3119D01* X3281Y3106D02* X3314D01* X3281Y3086D02* X3314D01* X3281Y3066D02* X3314D01* X3281Y3046D02* X3314D01* X3311Y3004D02* Y3128D01* X3314Y3004D02* Y3102D01* X3281Y3026D02* X3314D01* X4039Y2966D02* X4094D01* X4025Y2986D02* X4094D01* X4042Y2946D02* X4094D01* X4038Y2926D02* X4094D01* X4031Y2879D02* Y2915D01* X4025Y2886D02* X4094D01* X4039Y2866D02* X4094D01* X4042Y2846D02* X4094D01* X4038Y2826D02* X4094D01* X4042Y2746D02* X4094D01* X4039Y2766D02* X4094D01* X4038Y2726D02* X4094D01* X4031Y2779D02* Y2815D01* Y2679D02* Y2715D01* X4023Y2906D02* X4094D01* X4023Y2806D02* X4094D01* X4011Y2995D02* Y2999D01* Y2895D02* Y2899D01* X4025Y2786D02* X4094D01* X4023Y2706D02* X4094D01* X4011Y2795D02* Y2799D01* X4025Y2686D02* X4094D01* X4042Y2646D02* X4094D01* X4039Y2666D02* X4094D01* X4011Y2695D02* Y2699D01* X3990Y2647D02* X4036D01* X3944D02* X3990D01* X4038Y2626D02* X4094D01* X4023Y2606D02* X4094D01* X3928Y2586D02* X4094D01* X3990Y2601D02* Y2647D01* X3928Y2606D02* X3957D01* X3928Y2566D02* X4094D01* X3928Y2546D02* X4094D01* X3928Y2526D02* X4094D01* X3928Y2506D02* X4094D01* X3928Y2486D02* X4094D01* X3925Y2466D02* X4094D01* X3909Y2446D02* X4094D01* X3889Y2426D02* X4094D01* X3869Y2406D02* X4094D01* X3849Y2386D02* X4094D01* X3852Y2366D02* X4094D01* X3850Y2346D02* X4094D01* X3842Y2326D02* X4094D01* X3550Y2953D02* X3584D01* X3544Y2805D02* X3551D01* X3550Y2756D02* X3584D01* X3544Y2709D02* X3551D01* X3544D02* Y2805D01* X3520Y2909D02* X3544D01* X3531Y2709D02* Y2805D01* X3930Y2646D02* X3938D01* X3928Y2643D02* X3938Y2654D01* X3928Y2626D02* X3942D01* X3928Y2478D02* Y2643D01* X3544Y2605D02* X3551D01* X3544Y2509D02* Y2605D01* X3511Y2814D02* X3520Y2805D01* X3502Y2891D02* X3520Y2909D01* Y2805D02* X3544D01* X3520Y2709D02* X3544D01* X3511Y2700D02* Y2814D01* X3502Y2879D02* Y2891D01* Y2691D02* X3520Y2709D01* X3516Y2609D02* X3520Y2605D01* X3511Y2565D02* Y2609D01* X3520Y2605D02* X3544D01* X3502Y2674D02* Y2691D01* X3491Y2674D02* Y2814D01* Y2565D02* Y2609D01* X3550Y2559D02* X3584D01* X3848Y2385D02* X3918Y2455D01* X3544Y2509D02* X3551D01* X3536Y2405D02* X3551D01* X3544Y2403D02* X3552D01* X3851Y2371D02* Y2388D01* X3700Y2330D02* X3715D01* X3536Y2386D02* X3544D01* X3536Y2366D02* X3544D01* X3550Y2352D02* X3584D01* X3531Y2509D02* Y2605D01* X3515Y2546D02* X3544D01* X3520Y2509D02* X3544D01* X3515Y2526D02* X3544D01* X3515Y2503D02* Y2565D01* Y2503D02* X3520Y2509D01* X3485Y2424D02* X3502D01* Y2423D02* X3515Y2410D01* X3494Y2352D02* X3529D01* X3536Y2346D02* X3544D01* X3511Y2410D02* Y2414D01* X3491Y2410D02* Y2424D01* X3494Y2352D02* Y2404D01* X3825Y2306D02* X4094D01* X3711Y2286D02* X4094D01* X3711Y2266D02* X4094D01* X3791Y2119D02* Y2291D01* X3711Y2217D02* Y2293D01* X3771Y2119D02* Y2290D01* X3851Y2056D02* Y2353D01* X3831Y2098D02* Y2312D01* X3811Y2112D02* Y2297D01* X3731Y2102D02* Y2308D01* X3711Y2072D02* Y2330D01* X3751Y2114D02* Y2295D01* X3700Y2326D02* X3717D01* X3700Y2306D02* X3734D01* X3711Y2246D02* X4094D01* X3711Y2226D02* X4094D01* X3711Y2212D02* Y2217D01* X3609Y2293D02* X3711D01* Y2212D02* Y2217D01* Y2206D02* X4094D01* X3711Y2186D02* X4094D01* X3711Y2166D02* X4094D01* X3711Y2136D02* Y2212D01* Y2146D02* X4094D01* X3609Y2136D02* X3711D01* X3841Y2086D02* X4094D01* X3822Y2106D02* X4094D01* X3852Y2046D02* X4094D01* X3850Y2066D02* X4094D01* X3780Y2047D02* Y2113D01* Y2047D02* X3846D01* X3849Y2026D02* X4094D01* X3839Y2006D02* X4094D01* X3819Y1986D02* X4094D01* X3826Y1906D02* X4094D01* X3811Y1915D02* Y1982D01* X3780Y1981D02* Y2047D01* X3791Y1922D02* Y1976D01* X3618Y2126D02* X4094D01* X3711Y1986D02* X3741D01* X3622Y2106D02* X3737D01* X3619Y2073D02* X3711D01* X3613Y2086D02* X3718D01* X3711Y2006D02* X3720D01* X3711Y1966D02* X4094D01* X3711Y1946D02* X4094D01* X3711Y1926D02* X4094D01* X3751Y1917D02* Y1980D01* X3771Y1922D02* Y1975D01* X3700Y2301D02* Y2330D01* X3624Y2301D02* X3700D01* X3691Y2293D02* Y2301D01* X3671Y2293D02* Y2301D01* X3651Y2293D02* Y2301D01* X3620D02* X3624D01* X3620D02* X3624D01* X3660Y2253D02* Y2286D01* Y2253D02* X3705D01* X3691Y2073D02* Y2136D01* X3631Y2293D02* Y2301D01* X3611Y2293D02* Y2301D01* X3609Y2293D02* X3625D01* X3584Y2308D02* Y2352D01* X3536Y2326D02* X3544D01* X3591Y2293D02* Y2301D01* X3544D02* X3620D01* X3544D02* Y2403D01* X3494Y2301D02* Y2352D01* X3536Y2306D02* X3544D01* X3571Y2293D02* Y2301D01* X3536Y2294D02* Y2405D01* X3551Y2293D02* Y2301D01* X3511Y2144D02* Y2157D01* X3491Y2144D02* Y2157D01* X3671Y2073D02* Y2136D01* X3651Y2073D02* Y2136D01* X3660Y2033D02* Y2066D01* X3631Y2073D02* Y2136D01* X3711Y1997D02* Y2023D01* Y1992D02* Y1997D01* Y1992D02* Y1997D01* Y1916D02* Y1992D01* X3660Y2033D02* X3705D01* X3609Y1916D02* Y1924D01* X3504Y2059D02* X3560D01* X3504Y2009D02* X3560D01* X3498Y1926D02* X3521D01* X3498Y1927D02* X3520D01* X3491Y1992D02* Y2075D01* X3562Y1924D02* X3609D01* Y1916D02* X3711D01* X3532Y1925D02* X3556D01* X3434Y2986D02* X3544D01* X3434Y2966D02* X3544D01* X3434Y2946D02* X3544D01* X3434Y2926D02* X3544D01* X3434Y2920D02* Y3004D01* Y2886D02* X3502D01* X3434Y2879D02* Y2887D01* Y2879D02* X3502D01* X3434Y2814D02* X3511D01* X3434Y2806D02* X3519D01* X3471Y2674D02* Y2814D01* X3451Y2674D02* Y2814D01* X3434Y2803D02* Y2814D01* X3398Y3004D02* X3434D01* X3335Y2920D02* X3434D01* X3335Y2887D02* X3434D01* X3267Y2906D02* X3518D01* X3431Y2887D02* Y2920D01* X3411Y2887D02* Y2920D01* X3391Y2887D02* Y2920D01* X3335Y2803D02* X3434D01* X3335Y2798D02* X3434D01* Y2713D02* Y2798D01* X3431D02* Y2803D01* X3411Y2798D02* Y2803D01* X3391Y2798D02* Y2803D01* X3434Y2786D02* X3544D01* X3434Y2766D02* X3544D01* X3434Y2746D02* X3544D01* X3434Y2726D02* X3544D01* X3434Y2674D02* Y2681D01* X3431D02* Y2713D01* X3434Y2674D02* X3502D01* X3471Y2565D02* Y2609D01* X3434D02* X3516D01* X3434Y2606D02* X3519D01* X3451Y2565D02* Y2609D01* X3434Y2596D02* Y2609D01* X3431Y2565D02* Y2596D01* X3335Y2713D02* X3434D01* X3290Y2706D02* X3518D01* X3335Y2681D02* X3434D01* X3270Y2686D02* X3502D01* X3411Y2681D02* Y2713D01* X3391Y2681D02* Y2713D01* X3335Y2596D02* X3434D01* X3203Y2586D02* X3544D01* X3204Y2566D02* X3544D01* X3375Y2565D02* X3515D01* X3411D02* Y2596D01* X3391Y2565D02* Y2596D01* X3325Y2546D02* X3375D01* X3371Y2887D02* Y2920D01* X3351Y2887D02* Y2920D01* X3318D02* X3335D01* X3318D02* X3335D01* X3331Y2887D02* Y2920D01* X3318Y2887D02* X3335D01* X3318D02* X3335D01* X3371Y2798D02* Y2803D01* X3351Y2798D02* Y2803D01* X3371Y2681D02* Y2713D01* X3318Y2803D02* X3335D01* X3318D02* X3335D01* X3331Y2798D02* Y2803D01* X3314Y3004D02* X3318D01* X3281Y3006D02* X3314D01* X3281Y2920D02* X3318D01* X3248Y2887D02* X3318D01* X3311D02* Y2920D01* X3281Y3004D02* X3314D01* X3291Y2887D02* Y2920D01* X3318Y2798D02* X3335D01* X3220Y2803D02* X3318D01* Y2798D02* X3335D01* X3311D02* Y2803D01* X3291Y2798D02* Y2803D01* X3237Y2798D02* X3318D01* X3351Y2681D02* Y2713D01* X3325Y2526D02* X3375D01* X3325Y2506D02* X3375D01* X3325Y2486D02* X3375D01* X3318Y2713D02* X3335D01* X3318D02* X3335D01* X3331Y2681D02* Y2713D01* X3375Y2473D02* Y2565D01* X3371Y2469D02* Y2596D01* X3354Y2451D02* X3375Y2473D01* X3351Y2449D02* Y2596D01* X3325Y2466D02* X3368D01* X3325Y2446D02* X3349D01* X3318Y2681D02* X3335D01* X3297Y2713D02* X3318D01* Y2681D02* X3335D01* X3265D02* X3318D01* X3311D02* Y2713D01* X3265Y2681D02* X3297Y2713D01* X3291Y2681D02* Y2707D01* X3318Y2596D02* X3335D01* X3318D02* X3335D01* X3204Y2565D02* X3325D01* X3311D02* Y2596D01* X3237D02* X3318D01* X3291Y2565D02* Y2596D01* X3451Y2410D02* X3515D01* X3485Y2293D02* X3609D01* X3458Y2352D02* X3494D01* X3471Y2410D02* Y2427D01* X3451Y2410D02* Y2429D01* X3485Y2157D02* Y2293D01* X3451Y2294D02* X3536D01* X3471Y2144D02* Y2294D01* X3451D02* Y2410D01* X3451Y2148D02* Y2294D01* X3435Y2157D02* Y2293D01* X3423Y2429D02* X3468D01* X3420Y2426D02* X3474D01* X3419Y2406D02* X3451D01* X3419Y2386D02* X3451D01* X3419Y2366D02* X3451D01* X3419Y2346D02* X3451D01* X3419Y2326D02* X3451D01* X3435Y2286D02* X3485D01* X3435Y2266D02* X3485D01* X3435Y2246D02* X3485D01* X3431Y2293D02* Y2429D01* X3419Y2306D02* X3451D01* X3335Y2293D02* X3435D01* X3485Y2157D02* X3518D01* X3467Y2146D02* X3518D01* X3472Y2144D02* X3519D01* X3469Y2075D02* X3501D01* X3435Y2226D02* X3485D01* X3435Y2206D02* X3485D01* X3435Y2186D02* X3485D01* X3485Y1992D02* X3502D01* X3478Y1906D02* X3733D01* X3471Y1989D02* Y2075D01* X3451Y1972D02* Y2072D01* X3435Y2166D02* X3485D01* X3401Y2066D02* X3498D01* X3350Y2146D02* X3440D01* X3365Y2225D02* X3428D01* X3308Y2157D02* X3435D01* X3431Y2142D02* Y2157D01* X3399Y2046D02* X3500D01* X3398Y2026D02* X3501D01* X3402Y2006D02* X3497D01* X3405Y1925D02* X3462Y1982D01* X3393Y1986D02* X3467D01* X3401Y1966D02* X3446D01* X3409Y2415D02* X3423Y2429D01* X3411Y2410D02* Y2417D01* X3419Y2294D02* Y2410D01* X3409D02* X3419D01* X3409D02* Y2415D01* X3411Y1932D02* Y2157D01* X3391Y2134D02* Y2157D01* X3371Y2143D02* Y2157D01* X3365Y2225D02* Y2286D01* Y2163D02* Y2225D01* X3351Y2146D02* Y2157D01* X3331Y2415D02* Y2596D01* X3325Y2429D02* Y2565D01* X3287Y2426D02* X3344D01* X3287Y2415D02* X3335D01* X3311D02* Y2429D01* X3287D02* X3325D01* X3291Y2415D02* Y2429D01* X3344Y2410D02* Y2428D01* X3335Y2410D02* X3344D01* X3335Y2294D02* X3419D01* X3335Y2410D02* Y2415D01* X3331Y2148D02* Y2157D01* X3311Y2148D02* Y2157D01* X3398Y2126D02* X3418D01* X3402Y2106D02* X3415D01* X3393Y2086D02* X3423D01* X3431Y1952D02* Y2078D01* X3399Y1946D02* X3426D01* X3378Y1926D02* X3406D01* X3391Y1925D02* Y1934D01* X3357Y2144D02* X3368D01* X3340Y2009D02* X3396D01* X3307Y2148D02* Y2156D01* Y2148D02* X3340D01* X3374Y1925D02* X3405D01* X3312Y1925D02* X3368D01* X3247Y1926D02* X3301D01* X3247Y1906D02* X3369D01* X3271Y3969D02* Y4094D01* X3251Y3372D02* Y4094D01* X3231Y3372D02* Y4094D01* X3211Y3372D02* Y4094D01* X3191Y3372D02* Y4094D01* X3171Y3372D02* Y4094D01* X3151Y3372D02* Y4094D01* X3131Y3372D02* Y4094D01* X3111Y3372D02* Y4094D01* X3091Y3372D02* Y4094D01* X3071Y3372D02* Y4094D01* X3051Y3372D02* Y4094D01* X3031Y3372D02* Y4094D01* X3011Y3372D02* Y4094D01* X2991Y3372D02* Y4094D01* X2971Y3372D02* Y4094D01* X2951Y3372D02* Y4094D01* X2931Y3372D02* Y4094D01* X2911Y3372D02* Y4094D01* X2891Y3372D02* Y4094D01* X2871Y3372D02* Y4094D01* X2851Y3372D02* Y4094D01* X2831Y3372D02* Y4094D01* X2811Y3372D02* Y4094D01* X2791Y3372D02* Y4094D01* X2771Y3372D02* Y4094D01* X2769Y3946D02* X3265D01* X2769Y3928D02* Y3946D01* X3271Y3372D02* Y3905D01* X2769Y3926D02* X3266D01* X2769Y3833D02* Y3852D01* Y3632D02* Y3651D01* Y3534D02* Y3553D01* X2787Y3306D02* X2855D01* X2775Y3372D02* X3275D01* X2788Y3307D02* X2855D01* X2783Y3302D02* X2788Y3307D01* X2783Y3286D02* X2855D01* X2783Y3266D02* X2855D01* X2765Y3966D02* X3270D01* X2751Y3986D02* X3281D01* X2764Y3906D02* X3271D01* X2756Y3886D02* X3283D01* X2751Y3986D02* Y4094D01* X2731Y3997D02* Y4094D01* X2717Y3937D02* Y3992D01* Y3937D02* X2763D01* X2711Y3999D02* Y4094D01* X2691Y3993D02* Y4094D01* X2671Y3973D02* Y4094D01* X2717Y3843D02* X2763D01* X2671Y3937D02* X2717D01* X2751Y3690D02* Y3794D01* X2717Y3787D02* Y3843D01* X2671Y3879D02* Y3901D01* X2691Y3769D02* Y3787D01* X2664Y3928D02* Y3946D01* X2671Y3843D02* X2717D01* X2611Y3837D02* Y4094D01* X2591Y3837D02* Y4094D01* X2664Y3833D02* Y3852D01* X2651Y3822D02* Y4094D01* X2631Y3832D02* Y4094D01* X2644Y3826D02* X2665D01* X2571Y3834D02* Y4094D01* X2551Y3826D02* Y4094D01* X2598Y3740D02* Y3831D01* X2731Y3701D02* Y3783D01* X2717Y3642D02* Y3697D01* Y3642D02* X2763D01* X2717Y3543D02* X2763D01* X2711Y3703D02* Y3781D01* X2684Y3786D02* X2693D01* X2691Y3697D02* Y3711D01* X2751Y3362D02* Y3495D01* X2731Y3342D02* Y3484D01* X2727Y3338D02* X2752Y3363D01* X2717Y3488D02* Y3543D01* X2598Y3740D02* X2689D01* X2671Y3642D02* X2717D01* X2662Y3666D02* X2666D01* X2598Y3649D02* Y3740D01* X2624Y3646D02* X2664D01* X2671Y3543D02* X2717D01* X2671Y3580D02* Y3605D01* X2664Y3632D02* Y3651D01* Y3534D02* Y3553D01* X3199Y3217D02* Y3223D01* X3181D02* X3199D01* X3181Y3206D02* X3197D01* X3162Y3186D02* X3197D01* X3181Y3200D02* Y3223D01* X3162Y3200D02* X3181D01* X3162Y3166D02* X3197D01* X3239Y3159D02* X3274D01* X3197Y3119D02* Y3217D01* X3203Y3159D02* X3239D01* X3191Y3004D02* Y3223D01* X3171Y3119D02* Y3200D01* X3162Y3119D02* Y3200D01* X2980Y3217D02* Y3235D01* X2971D02* X2980D01* X2971Y3226D02* X2980D01* X2960Y3217D02* X2980D01* X2971Y3225D02* Y3235D01* X2971Y3217D02* Y3235D01* X2855Y3225D02* X2971D01* X3045Y3189D02* X3077Y3157D01* X3045Y3166D02* X3068D01* X3071Y3058D02* Y3163D01* X3045Y3119D02* Y3189D01* Y3186D02* X3048D01* X3051Y3119D02* Y3183D01* X3281Y3119D02* Y3153D01* Y3146D02* X3288D01* X3281Y3102D02* Y3119D01* Y3102D02* Y3119D01* X3162Y3146D02* X3197D01* X3162Y3126D02* X3197D01* X3181Y3106D02* X3197D01* Y3102D02* Y3119D01* Y3102D02* Y3119D01* X3281Y3004D02* Y3102D01* X3197Y3004D02* Y3102D01* X3181Y3004D02* Y3119D01* Y3086D02* X3197D01* X3045Y3146D02* X3077D01* X3045Y3126D02* X3077D01* X3162Y3119D02* X3181D01* X3077Y3102D02* X3097D01* X3077D02* Y3157D01* X3045Y3119D02* X3064D01* Y3106D02* X3077D01* X3097Y3003D02* Y3102D01* X3091Y3036D02* Y3102D01* X3064Y3086D02* X3097D01* X3064Y3065D02* Y3119D01* X2960Y3102D02* X2970D01* X2835Y3086D02* X2970D01* X2951Y3192D02* Y3225D01* X2931Y3192D02* Y3225D01* X2960Y3192D02* Y3217D01* X2911Y3192D02* Y3225D01* X2891Y3192D02* Y3225D01* X2855D02* Y3307D01* X2871Y3192D02* Y3225D01* X2851Y3075D02* Y3307D01* X2831Y3088D02* Y3307D01* X2855Y3192D02* X2960D01* X2811Y3094D02* Y3307D01* X2791Y3114D02* Y3307D01* X2783Y3123D02* Y3302D01* Y3246D02* X2855D01* X2717Y3110D02* Y3315D01* X2783Y3226D02* X2855D01* X2783Y3206D02* X2960D01* X2571Y3100D02* Y3646D01* X2551Y3100D02* Y3655D01* X2591Y3100D02* Y3643D01* X2691Y3035D02* Y3488D01* X2671Y3036D02* Y3507D01* X2711Y3013D02* Y3482D01* X2651Y3052D02* Y3658D01* X2631Y3072D02* Y3648D01* X2611Y3092D02* Y3644D01* X2913Y3150D02* Y3186D01* X2855Y3108D02* X2960D01* X2970Y3081D02* Y3102D01* X2960D02* Y3108D01* X2862Y3150D02* X2913D01* X2855Y3108D02* Y3192D01* X2913Y3114D02* Y3150D01* X2951Y3056D02* Y3108D01* X2931Y3042D02* Y3108D01* X2911Y2630D02* Y3108D01* X2891Y2630D02* Y3108D01* X2871Y2631D02* Y3108D01* X2783Y3186D02* X2855D01* X2783Y3166D02* X2855D01* X2800Y3106D02* X2960D01* X2783Y3146D02* X2855D01* X2783Y3126D02* X2855D01* X2783Y3123D02* X2816Y3090D01* X2727Y3087D02* X2764Y3050D01* X2617Y3086D02* X2728D01* X2614Y3089D02* X2667Y3036D01* X2371Y3825D02* Y4094D01* X2351Y3843D02* Y4094D01* X2371Y3826D02* X2552D01* X2343Y3846D02* X2664D01* X2331Y3848D02* Y4094D01* X2311Y3846D02* Y4094D01* X2291Y3835D02* Y4094D01* X2531Y3811D02* Y4094D01* X2380Y3786D02* X2512D01* X2380Y3806D02* X2527D01* X2511Y3784D02* Y4094D01* X2372Y3766D02* X2504D01* X2291Y3735D02* Y3755D01* X2161Y3986D02* X2682D01* X2161Y3966D02* X2668D01* X2161Y3906D02* X2669D01* X2142Y3886D02* X2677D01* X2161Y3946D02* X2664D01* X2161Y3926D02* X2664D01* X2142Y3866D02* X2666D01* X2234Y3846D02* X2311D01* X2262Y3826D02* X2284D01* X2271Y3806D02* X2275D01* X2271Y3786D02* X2275D01* X2263Y3766D02* X2282D01* X2507Y3740D02* X2598D01* X2322Y3706D02* X2507D01* X2327Y3686D02* X2517D01* X2323Y3666D02* X2535D01* X2349Y3746D02* X2501D01* X2311Y3723D02* Y3744D01* X2308Y3726D02* X2502D01* X2310Y3646D02* X2573D01* X2306Y3546D02* X2664D01* X2312Y3526D02* X2665D01* X2311Y3527D02* Y3648D01* X2306Y3533D02* Y3564D01* X2286Y3606D02* X2671D01* X2277Y3626D02* X2664D01* X2271Y3632D02* X2277Y3626D01* X2240Y3746D02* X2306D01* X2286Y3586D02* X2676D01* X2287Y3583D02* X2306Y3564D01* X2304Y3566D02* X2666D01* X2291Y3578D02* Y3635D01* X2286Y3583D02* Y3603D01* X2231Y3847D02* Y4094D01* X2211Y3848D02* Y4094D01* X2191Y3841D02* Y4094D01* X2161Y3967D02* Y4043D01* Y3962D02* Y3967D01* Y3962D02* Y3967D01* Y3886D02* Y3962D01* X2271Y3800D02* Y4094D01* X2251Y3837D02* Y4094D01* X2171Y3821D02* Y4094D01* X2271Y3739D02* Y3790D01* X2151Y4043D02* Y4094D01* X2110Y4003D02* X2155D01* X2142Y3886D02* X2161D01* X2142Y3846D02* X2202D01* X2131Y4043D02* Y4094D01* X2111Y4043D02* Y4094D01* X2110Y4003D02* Y4036D01* X2153Y3826D02* X2175D01* X2162Y3806D02* X2166D01* X2151Y3828D02* Y3886D01* X2142Y3838D02* Y3886D01* X2251Y3734D02* Y3753D01* X2194Y3617D02* X2221Y3589D01* Y3583D02* Y3589D01* X2194Y3606D02* X2205D01* X2194Y3586D02* X2221D01* X2211Y3573D02* Y3599D01* X2202Y3564D02* X2221Y3583D01* X2194Y3566D02* X2204D01* X2202Y3533D02* Y3564D01* X2194Y3541D02* Y3617D01* Y3546D02* X2202D01* X2162Y3788D02* X2166Y3785D01* X2116Y3742D02* X2130Y3729D01* X2104Y3706D02* X2115D01* X2111Y3694D02* Y3742D01* Y3646D02* Y3676D01* X2105Y3666D02* X2114D01* X2191Y3514D02* Y3541D01* X2097D02* X2194D01* X2097Y3646D02* X2127D01* X2097Y3626D02* Y3646D01* Y3541D02* Y3561D01* X2511Y3100D02* Y3696D01* X2491Y3100D02* Y4094D01* X2531Y3100D02* Y3669D01* X2317Y3506D02* X2672D01* X2471Y3100D02* Y4094D01* X2451Y3100D02* Y4094D01* X2317Y3499D02* Y3509D01* X2431Y3100D02* Y4094D01* X2411Y3100D02* Y4094D01* X2391Y3100D02* Y4094D01* X2371Y3100D02* Y3765D01* X2351Y3100D02* Y3747D01* X2331Y3100D02* Y3742D01* X2284Y3504D02* X2310D01* X2314Y3486D02* X2695D01* X2306Y3444D02* Y3475D01* X2288Y3426D02* X2306Y3444D01* X2282Y3426D02* X2288D01* X2311Y3100D02* Y3481D01* X2291Y3380D02* Y3430D01* X2204Y3380D02* X2309D01* X2271D02* Y3401D01* X2231Y3380D02* Y3398D01* X2251Y3380D02* Y3393D01* X2309Y3366D02* X2756D01* X2309Y3346D02* X2735D01* X2309Y3326D02* X2719D01* X2309Y3306D02* X2717D01* X2309Y3286D02* X2717D01* X2309Y3266D02* X2717D01* X2309Y3246D02* X2717D01* X2298Y3126D02* X2717D01* X2298Y3106D02* X2718D01* X2303Y3100D02* X2587D01* X2309Y3235D02* Y3380D01* X2298Y3100D02* Y3138D01* X2221Y3226D02* X2717D01* X2201Y3206D02* X2717D01* X2181Y3186D02* X2717D01* X2161Y3166D02* X2717D01* X2230Y3235D02* X2309D01* X2141Y3146D02* X2230Y3235D01* X2141Y3146D02* X2717D01* X2291Y3138D02* Y3235D01* X2271Y3138D02* Y3235D01* X2223Y3138D02* X2298D01* X2251D02* Y3235D01* X2231Y3138D02* Y3235D01* X2258Y3097D02* Y3131D01* X2198Y3504D02* X2223D01* X2194Y3466D02* X2202D01* X2194Y3446D02* X2202D01* X2191Y3499D02* Y3509D01* X2202Y3444D02* Y3475D01* Y3444D02* X2218Y3429D01* X2194Y3426D02* X2218D01* X2194Y3406D02* X2224D01* X2211Y3380D02* Y3435D01* X2194Y3381D02* Y3485D01* X2204Y3301D02* Y3380D01* X2171Y3486D02* Y3541D01* X2151Y3486D02* Y3541D01* X2191Y3486D02* Y3494D01* X2097Y3486D02* X2194D01* X2131D02* Y3541D01* X2111Y3486D02* Y3541D01* X2146Y3434D02* Y3480D01* Y3434D02* X2188D01* X2097Y3381D02* X2194D01* X2191Y3289D02* Y3381D01* X2104Y3434D02* X2146D01* X2097Y3381D02* Y3486D01* X2146Y3388D02* Y3434D01* X2169Y3326D02* X2204D01* X2152Y3346D02* X2204D01* X2173Y3306D02* X2204D01* X2167Y3286D02* X2189D01* X2171Y3318D02* Y3381D01* X2151Y3346D02* Y3381D01* X2171Y3269D02* Y3298D01* X2217Y3138D02* X2223D01* X2211D02* Y3217D01* X2217Y3138D02* X2223D01* X2191D02* Y3197D01* X2151Y3249D02* Y3269D01* X2171Y3138D02* Y3177D01* X2131Y3353D02* Y3381D01* X2105Y3202D02* X2204Y3301D01* X2147Y3266D02* X2169D01* X2131Y3229D02* Y3262D01* X2111Y3351D02* Y3381D01* X2091Y3205D02* Y3278D01* X2111Y3209D02* Y3264D01* X2151Y3138D02* Y3157D01* X2141Y3089D02* Y3146D01* X2142Y3138D02* X2217D01* X2142Y3057D02* Y3138D01* X2141Y3085D02* Y3089D01* Y3085D02* Y3089D01* X3239Y3061D02* X3274D01* X3181Y3066D02* X3197D01* X3203Y3061D02* X3239D01* X3181Y3046D02* X3197D01* X3139Y3061D02* X3175D01* X3104D02* X3139D01* X3181Y3026D02* X3197D01* X3248Y2887D02* X3281Y2920D01* X3181Y3006D02* X3197D01* X3271Y2887D02* Y2910D01* X3251Y2887D02* Y2890D01* X3181Y3004D02* X3197D01* X3121Y2959D02* Y3003D01* X3111Y2959D02* Y3003D01* X3097D02* X3121D01* X3064Y3066D02* X3097D01* X3095Y2986D02* X3121D01* X3095Y2966D02* X3121D01* X3085Y3046D02* X3097D01* X3095Y2966D02* Y3022D01* X3094Y2959D02* X3121D01* X2990Y2894D02* X3093D01* X3089Y2891D02* X3093Y2894D01* X3278Y2845D02* Y2881D01* Y2809D02* Y2845D01* X3271Y2798D02* Y2803D01* X3251Y2798D02* Y2803D01* X3231Y2798D02* Y2803D01* X3220Y2803D02* X3237D01* X3220Y2798D02* X3237D01* X3278Y2638D02* Y2674D01* X3271Y2681D02* Y2687D01* X3278Y2603D02* Y2638D01* X3271Y2565D02* Y2596D01* X3251Y2565D02* Y2596D01* X3231Y2565D02* Y2596D01* X3220Y2798D02* X3237D01* X3212Y2803D02* X3220D01* Y2596D02* X3237D01* X3212Y2798D02* X3220D01* X3212D02* Y2803D01* X3220Y2596D02* X3237D01* X3199D02* X3220D01* X3211Y2565D02* Y2596D01* X3204Y2565D02* Y2580D01* X3064Y3065D02* X3077Y3053D01* X3071Y2780D02* Y2894D01* X3051Y2781D02* Y2894D01* X2971Y3055D02* Y3071D01* X2980Y3050D02* Y3057D01* X3081Y2775D02* Y2870D01* X3031Y2767D02* Y2894D01* X3011Y2630D02* Y2894D01* X2991Y2761D02* Y2894D01* X2989Y2766D02* X3031D01* X2937Y2934D02* X2967Y2904D01* X2926Y2966D02* Y3022D01* X2971Y2780D02* Y2900D01* X2951Y2781D02* Y2919D01* X2931Y2767D02* Y2941D01* X2960Y2719D02* Y2775D01* X3075Y2626D02* X3081D01* X3014D02* X3045D01* X3026Y2691D02* Y2747D01* X2995Y2746D02* X3026D01* X2995Y2691D02* Y2747D01* X3081Y2615D02* Y2630D01* X3014Y2606D02* X3082D01* X3046Y2599D02* X3086D01* X3071D02* Y2625D01* X3051Y2599D02* Y2624D01* X3014Y2586D02* X3046D01* X2995Y2726D02* X3026D01* X2995Y2706D02* X3026D01* X2994Y2686D02* X3026D01* X2984Y2666D02* X3029D01* X2960Y2719D02* X2988D01* X2926Y2691D02* Y2747D01* X2932Y2719D02* X2960D01* X2991Y2630D02* Y2677D01* X2971Y2630D02* Y2659D01* X2960Y2663D02* Y2719D01* X2931Y2630D02* Y2672D01* X2951Y2630D02* Y2658D01* X3287Y2415D02* Y2429D01* X3145Y2386D02* X3165D01* X3146Y2420D02* Y2475D01* X3145Y2406D02* X3149D01* X3195Y2279D02* Y2386D01* X3191Y2258D02* Y2385D01* X3145Y2366D02* X3195D01* X3151Y2212D02* Y2399D01* X3145Y2279D02* Y2415D01* X3171Y2258D02* Y2384D01* X3140Y2475D02* X3146D01* X3140Y2466D02* X3146D01* X3140Y2446D02* X3146D01* X3140Y2426D02* X3146D01* X3046Y2475D02* X3075D01* X3014Y2466D02* X3075D01* X3014Y2446D02* X3075D01* X3145Y2346D02* X3195D01* X3145Y2326D02* X3195D01* X3145Y2306D02* X3195D01* X3140Y2415D02* Y2475D01* Y2415D02* X3145D01* Y2286D02* X3195D01* Y2279D02* X3201D01* X3250Y1993D02* Y2027D01* X3152Y2258D02* X3199D01* X3152Y2213D02* Y2258D01* X3244Y1986D02* X3286D01* X3244Y1986D02* X3286D01* X3247Y1966D02* X3278D01* X3247Y1946D02* X3280D01* X3005Y2279D02* X3145D01* X2987Y2266D02* X3199D01* X3138Y2246D02* X3152D01* X3062Y2256D02* X3138D01* X3131D02* Y2279D01* X3111Y2256D02* Y2279D01* X3091Y2256D02* Y2279D01* X3145Y2206D02* X3152Y2213D01* X3138Y2226D02* X3152D01* X3138Y2206D02* X3145D01* X3138Y2196D02* Y2256D01* X3014Y2566D02* X3046D01* X3014Y2546D02* X3046D01* X3014Y2526D02* X3046D01* X3014Y2506D02* X3046D01* X3014Y2540D02* Y2630D01* Y2534D02* Y2540D01* Y2534D02* Y2540D01* X3075Y2415D02* Y2475D01* X3071Y2415D02* Y2475D01* X3051Y2415D02* Y2475D01* X3046D02* Y2599D01* X3031Y2415D02* Y2639D01* X3014Y2444D02* Y2534D01* Y2486D02* X3046D01* X2930Y2444D02* X3014D01* X3011Y2415D02* Y2444D01* X2948Y2426D02* X3075D01* X2953Y2492D02* X3008D01* X2953Y2450D02* Y2492D01* X2951Y2422D02* Y2444D01* X3005Y2415D02* X3075D01* X3005Y2279D02* Y2415D01* X2968Y2406D02* X3005D01* X2991Y2256D02* Y2444D01* X2930D02* X2979Y2394D01* X2971Y2402D02* Y2444D01* X2987Y2366D02* X3005D01* X2987Y2346D02* X3005D01* X3071Y2256D02* Y2279D01* X3058Y2256D02* X3062D01* X2987Y2326D02* X3005D01* X2987Y2306D02* X3005D01* X2987Y2286D02* X3005D01* X3051Y2256D02* Y2279D01* X3031Y2256D02* Y2279D01* X3058Y2256D02* X3062D01* X3011D02* Y2279D01* X2987Y2256D02* Y2375D01* X3022Y2205D02* Y2249D01* X2987Y2256D02* X3058D01* X2985Y2386D02* X3005D01* X2902Y2027D02* X2911D01* X2902Y2026D02* X2911D01* X2918Y2010D02* Y2015D01* X2916Y2021D02* X2926Y2010D01* X2918D02* X2926D01* X2902Y2015D02* X2902Y2027D01* X2911Y2015D02* Y2026D01* X2867Y3046D02* X2935D01* X2859Y3066D02* X2973D01* X2866Y3026D02* X2926D01* X2857Y3006D02* X2926D01* X2851Y2975D02* Y3000D01* X2835Y2986D02* X2926D01* X2867Y2946D02* X2929D01* X2866Y2926D02* X2945D01* X2857Y2906D02* X2965D01* X2859Y2966D02* X2926D01* X2851Y2875D02* Y2900D01* X2705Y3026D02* X2764D01* X2771Y3000D02* Y3008D01* X2712Y3006D02* X2773D01* X2751Y3001D02* Y3063D01* X2637Y3066D02* X2748D01* X2657Y3046D02* X2763D01* X2815Y2938D02* X2861D01* X2791Y2985D02* Y2991D01* X2788Y2986D02* X2794D01* X2867Y2846D02* X3081D01* X2859Y2866D02* X3081D01* X2866Y2826D02* X3081D01* X2867Y2666D02* X2936D01* X2867Y2746D02* X2926D01* X2866Y2726D02* X2926D01* X2867Y2686D02* X2926D01* X2891Y2630D02* X3014D01* X2867Y2646D02* X3029D01* X2877Y2626D02* X2891D01* X2867Y2635D02* Y2690D01* Y2635D02* X2888Y2614D01* X2891D02* Y2630D01* X2857Y2806D02* X3081D01* X2835Y2886D02* X3086D01* X2859Y2766D02* X2931D01* X2835Y2786D02* X3081D01* X2851Y2775D02* Y2800D01* X2857Y2706D02* X2926D01* X2851Y2690D02* Y2700D01* X2815Y2738D02* X2861D01* X2837Y2690D02* X2867D01* X2731Y2986D02* Y3083D01* X2707Y2986D02* X2732D01* X2707Y2966D02* X2728D01* X2707Y2946D02* X2737D01* X2711Y2942D02* Y2997D01* X2737Y2927D02* Y2947D01* X2731Y2934D02* Y2954D01* X2707Y2942D02* Y2988D01* X2533Y2822D02* Y2837D01* Y2822D02* Y2837D01* X2179Y3045D02* Y3057D01* X2142D02* X2179D01* X2141Y3046D02* X2179D01* X2141Y3045D02* X2179D01* X2171D02* Y3057D01* X2141Y3045D02* Y3085D01* X2151Y3045D02* Y3057D01* X2531Y2714D02* Y2837D01* X2479D02* X2533D01* X2511Y2714D02* Y2837D01* X2491Y2714D02* Y2837D01* X2468Y2826D02* X2479Y2837D01* X2471Y2772D02* Y2829D01* X2533Y2788D02* Y2822D01* Y2762D02* Y2788D01* X2539Y2746D02* X2580D01* X2481Y2766D02* X2533D01* Y2762D02* Y2788D01* Y2729D02* Y2762D01* X2481Y2746D02* X2533D01* Y2714D02* Y2729D01* Y2714D02* Y2729D01* X2481Y2726D02* X2533D01* X2495Y2714D02* X2533D01* X2481Y2711D02* Y2772D01* X2468Y2826D02* X2533D01* X2468Y2783D02* Y2826D01* Y2806D02* X2533D01* X2468Y2786D02* X2533D01* X2451Y2772D02* Y2783D01* X2417D02* X2468D01* X2431Y2772D02* Y2783D01* X2414Y2772D02* X2481D01* X2440Y2388D02* X2479D01* X2438Y2386D02* X2481D01* X2652Y2216D02* Y2265D01* X2776Y2226D02* X2796D01* X2631Y2257D02* Y2264D01* Y2251D02* Y2257D01* Y2251D02* Y2257D01* X2796Y2146D02* Y2247D01* X2791Y2146D02* Y2242D01* X2727Y2156D02* X2783Y2236D01* X2771Y2146D02* Y2220D01* X2651Y2215D02* Y2265D01* X2641Y2204D02* X2652Y2216D01* X2479Y2388D02* X2550Y2317D01* X2451Y2326D02* X2541D01* X2550Y2295D02* Y2317D01* X2451Y2306D02* X2550D01* X2511Y2295D02* Y2356D01* X2389Y2346D02* X2521D01* X2531Y2295D02* Y2336D01* X2631Y2183D02* Y2251D01* Y2246D02* X2652D01* X2631Y2226D02* X2652D01* X2590Y2217D02* X2624D01* X2463Y2295D02* X2550D01* X2762Y2206D02* X2796D01* X2748Y2186D02* X2796D01* X2780Y2044D02* X2796D01* X2734Y2166D02* X2796D01* X2768Y2095D02* Y2139D01* X2751Y2146D02* Y2191D01* X2796Y2035D02* Y2044D01* X2780Y2026D02* X2793D01* X2902Y2015D02* X2918D01* X2791D02* Y2044D01* X2780Y2015D02* Y2044D01* Y2015D02* X2793D01* X2631Y2206D02* X2642D01* X2506Y2183D02* Y2205D01* X2438Y2186D02* X2506D01* X2438Y2183D02* X2506D01* X2731Y2146D02* Y2163D01* X2732Y2146D02* X2796D01* X2727Y2146D02* X2796D01* X2728Y2146D02* X2732D01* X2727D02* Y2156D01* X2728Y2146D02* X2732D01* X2471Y2295D02* Y2388D01* X2438Y2373D02* Y2388D01* X2491Y2295D02* Y2376D01* X2451Y2286D02* X2463D01* X2431Y2343D02* Y2373D01* X2411Y2343D02* Y2373D01* X2408Y2285D02* Y2336D01* X2463Y2262D02* Y2295D01* X2451Y2266D02* X2463D01* X2451Y2262D02* X2463D01* X2451D02* Y2388D01* X2451Y2262D02* Y2343D01* X2408Y2285D02* X2444D01* X2391Y2343D02* Y2373D01* X2389D02* X2438D01* X2389Y2366D02* X2501D01* X2389Y2343D02* X2451D01* X2389D02* Y2373D01* X2121Y2306D02* X2139D01* X2121Y2307D02* X2139D01* X2121Y2286D02* X2139D01* X2121Y2266D02* X2139D01* X2121Y2246D02* X2139D01* Y2233D02* Y2307D01* X2131Y2233D02* Y2307D01* X2121Y2233D02* Y2307D01* X2491Y2183D02* Y2202D01* X2438Y2201D02* X2488D01* X2471Y2183D02* Y2201D01* X2441Y2067D02* X2465D01* X2451Y2183D02* Y2201D01* X2438Y2183D02* Y2201D01* X2452Y2066D02* X2465D01* X2451Y1973D02* Y2067D01* X2452Y1973D02* Y2066D01* X2441Y2046D02* X2452D01* X2441Y2037D02* Y2067D01* X2431Y1973D02* Y2037D01* X2411Y1973D02* Y2037D01* X2398Y2185D02* X2432D01* X2356Y2037D02* X2441D01* X2345Y2026D02* X2452D01* X2325Y2006D02* X2452D01* X2398Y2043D02* Y2095D01* X2121Y2233D02* X2139D01* X2318Y1999D02* X2356Y2037D01* X2409Y1973D02* X2452D01* X2318Y1986D02* X2452D01* X2318Y1966D02* X2409D01* X2318Y1946D02* X2409D01* X2318Y1926D02* X2409D01* X2318Y1906D02* X2409D01* X4031Y1709D02* Y2615D01* X4011Y1709D02* Y2599D01* X3938Y1709D02* X4043D01* X3908Y1746D02* X4094D01* X3971Y1709D02* Y2598D01* X3951Y1709D02* Y2611D01* X3991Y1709D02* Y2594D01* X4043Y1604D02* Y1709D01* X3938Y1604D02* Y1709D01* X4043Y1706D02* X4094D01* X3990Y1657D02* Y1703D01* X3931Y1606D02* Y2647D01* X3911Y1626D02* Y2448D01* X3908Y1630D02* Y1752D01* X3850Y1866D02* X4094D01* X3843Y1886D02* X4094D01* X3852Y1846D02* X4094D01* X3848Y1826D02* X4094D01* X3891Y1781D02* Y2428D01* X3867Y1806D02* X4094D01* X3887Y1786D02* X4094D01* X3908Y1726D02* X4094D01* X3904Y1766D02* X4094D01* X3908Y1706D02* X3938D01* X3848Y1825D02* X3898Y1775D01* X4043Y1686D02* X4094D01* X4043Y1666D02* X4094D01* X4043Y1646D02* X4094D01* X4043Y1626D02* X4094D01* X4043Y1606D02* X4094D01* X4012Y1604D02* X4043D01* X4031Y1589D02* Y1604D01* X4042Y1566D02* X4094D01* X4034Y1586D02* X4094D01* X4041Y1546D02* X4094D01* X4033Y1526D02* X4094D01* X4011Y1505D02* Y1509D01* X3990Y1657D02* X4036D01* X3908Y1686D02* X3938D01* X3944Y1657D02* X3990D01* X3938Y1604D02* X3968D01* X3908Y1666D02* X3938D01* X3908Y1646D02* X3938D01* X3912Y1626D02* X3938D01* X4008Y1506D02* X4094D01* X3951Y1593D02* Y1604D01* X3908Y1630D02* X3948Y1589D01* X3932Y1606D02* X3938D01* X3871Y1801D02* Y2408D01* X3851Y1859D02* Y2038D01* Y1821D02* Y1842D01* X3831Y1901D02* Y1997D01* X3739Y1766D02* X3815D01* X3811Y1719D02* Y1769D01* X3800Y1781D02* X3842Y1738D01* X3831Y1704D02* Y1749D01* X3791Y1725D02* Y1779D01* X3771Y1726D02* Y1778D01* X3751Y1720D02* Y1779D01* X3731Y1905D02* Y1993D01* X3711Y1875D02* Y2022D01* X3687Y1823D02* X3707Y1844D01* X3691Y1828D02* Y1916D01* X3671Y1823D02* Y1916D01* X3651Y1823D02* Y1916D01* X3731Y1708D02* Y1759D01* X3722Y1750D02* X3755Y1782D01* X3722Y1726D02* Y1750D01* X3631Y1823D02* Y1916D01* X3617Y1823D02* X3687D01* X3617Y1726D02* Y1823D01* X3842Y1689D02* Y1738D01* X3722Y1726D02* X3842D01* X3829Y1706D02* X3842D01* X3771Y1529D02* Y1574D01* X3722Y1746D02* X3835D01* X3800Y1526D02* X3820D01* X3831Y1507D02* Y1514D01* X3811Y1522D02* Y1534D01* X3833Y1506D02* X3840D01* X3751Y1524D02* Y1587D01* X3731Y1511D02* Y1599D01* X3791Y1528D02* Y1554D01* X3711Y1702D02* Y1726D01* X3691Y1702D02* Y1726D01* X3715Y1692D02* Y1702D01* Y1605D02* Y1615D01* X3671Y1702D02* Y1726D01* X3651Y1702D02* Y1726D01* X3631Y1702D02* Y1726D01* X3650Y1586D02* X3753D01* X3630Y1566D02* X3780D01* X3715Y1606D02* X3725D01* X3669Y1605D02* X3715D01* X3711Y1505D02* Y1605D01* X4042Y1466D02* X4094D01* X4034Y1486D02* X4094D01* X4041Y1446D02* X4094D01* X4033Y1426D02* X4094D01* X4031Y1489D02* Y1525D01* X4011Y1405D02* Y1409D01* X4094Y39D02* Y4094D01* X4091Y39D02* Y4094D01* X4071Y39D02* Y4094D01* X4051Y39D02* Y4094D01* X4031Y1389D02* Y1425D01* X4008Y1406D02* X4094D01* X3935Y1424D02* X3949D01* X3763Y1583D02* X3912Y1434D01* X3856Y1426D02* X3924D01* X3876Y1406D02* X3972D01* X3951Y1393D02* Y1421D01* X3931Y1389D02* Y1425D01* X3893Y1389D02* X3949D01* X4042Y1366D02* X4094D01* X4034Y1386D02* X4094D01* X4041Y1346D02* X4094D01* X4033Y1326D02* X4094D01* X4031Y1289D02* Y1325D01* X4011Y1305D02* Y1309D01* X4034Y1286D02* X4094D01* X4042Y1266D02* X4094D01* X4041Y1246D02* X4094D01* X4033Y1226D02* X4094D01* X4031Y1189D02* Y1225D01* X4011Y1205D02* Y1209D01* X4034Y1186D02* X4094D01* X4008Y1306D02* X4094D01* X3951Y1293D02* Y1321D01* X3879Y1324D02* X3949D01* X3835Y1306D02* X3972D01* X4008Y1206D02* X4094D01* X3931Y1289D02* Y1324D01* X3846Y1289D02* X3949D01* X3851Y1465D02* Y1494D01* X3846Y1486D02* X3860D01* X3851Y1466D02* X3880D01* X3851Y1446D02* X3900D01* X3851Y1431D02* Y1448D01* X3911Y1389D02* Y1434D01* X3891Y1391D02* Y1454D01* X3848Y1434D02* X3893Y1389D01* X3871Y1411D02* Y1474D01* X3731Y1314D02* Y1402D01* X3802Y1388D02* X3856Y1334D01* X3691Y1505D02* Y1605D01* X3671Y1505D02* Y1605D01* X3715Y1490D02* Y1505D01* Y1408D02* Y1423D01* X3651Y1505D02* Y1588D01* X3631Y1505D02* Y1568D01* Y1399D02* Y1408D01* X3711Y1292D02* Y1408D01* X3691Y1320D02* Y1408D01* X3671Y1347D02* Y1408D01* X3651Y1391D02* Y1408D01* X3644Y1399D02* X3663Y1380D01* X3796Y1386D02* X3804D01* X3809Y1326D02* X3869D01* X3791Y1331D02* Y1385D01* X3751Y1327D02* Y1390D01* X3771Y1332D02* Y1385D01* X3911Y1289D02* Y1324D01* X3891Y1289D02* Y1324D01* X3871Y1289D02* Y1325D01* X3831Y1310D02* Y1359D01* X3811Y1325D02* Y1379D01* X3851Y1289D02* Y1339D01* X3663Y1366D02* X3824D01* X3657Y1386D02* X3763D01* X3689Y1326D02* X3750D01* X3672Y1346D02* X3844D01* X3663Y1356D02* Y1380D01* Y1356D02* X3683Y1335D01* X3700Y1306D02* X3724D01* X3700Y1292D02* X3715D01* X3693Y1311D02* X3700D01* Y1292D02* Y1311D01* X3562Y1806D02* X3617D01* X3562Y1786D02* X3617D01* Y1726D02* X3722D01* X3562Y1766D02* X3617D01* X3551Y1823D02* Y1925D01* X3531Y1823D02* Y1925D01* X3562Y1746D02* X3617D01* X3611Y1702D02* Y1916D01* X3591Y1637D02* Y1924D01* X3610Y1702D02* X3715D01* X3562Y1726D02* X3617D01* X3571Y1617D02* Y1924D01* X3562Y1726D02* Y1823D01* X3551Y1702D02* Y1726D01* X3458Y1886D02* X3716D01* X3451Y1866D02* X3709D01* X3486Y1846D02* X3707D01* X3486Y1826D02* X3690D01* X3511Y1823D02* Y1927D01* X3486Y1823D02* X3562D01* X3510Y1775D02* Y1817D01* Y1775D02* X3556D01* X3468Y1726D02* X3562D01* X3468Y1706D02* X3730D01* X3531Y1702D02* Y1726D01* X3510Y1733D02* Y1775D01* X3511Y1702D02* Y1726D01* X3598Y1535D02* X3669Y1605D01* X3555Y1686D02* X3610D01* X3610Y1546D02* X3800D01* X3585Y1526D02* X3759D01* X3610Y1655D02* Y1702D01* X3555Y1609D02* Y1702D01* X3562Y1607D02* X3610Y1655D01* X3611Y1505D02* Y1548D01* X3561Y1506D02* X3727D01* X3610Y1505D02* X3715D01* X3560Y1505D02* X3579Y1523D01* X3555Y1666D02* X3610D01* X3468Y1702D02* X3555D01* Y1646D02* X3601D01* X3555Y1626D02* X3581D01* X3503Y1654D02* Y1696D01* Y1654D02* X3549D01* X3457D02* X3503D01* X3555Y1486D02* X3610D01* X3555Y1466D02* X3610D01* X3555Y1446D02* X3610D01* X3555Y1609D02* X3560D01* X3555Y1505D02* X3560D01* X3503Y1457D02* X3549D01* X3471Y1847D02* Y1900D01* X3451Y1879D02* X3498Y1927D01* X3451Y1847D02* Y1880D01* X3451Y1847D02* X3486D01* X3369D02* Y1925D01* X3351Y1847D02* Y1925D01* X3451Y1847D02* Y1879D01* X3491Y1823D02* Y1920D01* X3486Y1823D02* Y1847D01* X3334D02* X3369D01* X3334Y1803D02* Y1847D01* X3331Y1799D02* Y1925D01* X3324Y1790D02* X3334Y1803D01* X3311Y1871D02* Y1925D01* X3291Y1871D02* Y1931D01* X3247Y1886D02* X3369D01* X3247Y1871D02* X3318D01* X3271D02* Y1986D01* X3251Y1871D02* Y1986D01* X3247Y1871D02* Y1972D01* X3318Y1866D02* X3369D01* X3318Y1846D02* X3334D01* X3318Y1826D02* X3334D01* X3318Y1786D02* Y1871D01* Y1806D02* X3334D01* X3491Y1702D02* Y1726D01* X3471Y1702D02* Y1726D01* X3468Y1702D02* Y1726D01* X3450Y1609D02* Y1654D01* X3311Y1754D02* Y1786D01* X3312Y1771D02* X3318D01* X3450Y1609D02* Y1653D01* X3430Y1466D02* X3450D01* X3457Y1457D02* X3503D01* X3410Y1446D02* X3450D01* X3403Y1439D02* X3450Y1486D01* X3272Y1786D02* X3322D01* X3272Y1786D02* X3318D01* X3312Y1754D02* Y1771D01* X3252Y1766D02* X3312D01* X3291Y1754D02* Y1786D01* X3271Y1754D02* Y1785D01* X3251Y1754D02* Y1765D01* X3240Y1754D02* X3272Y1786D01* X3240Y1754D02* X3312D01* X3191Y1464D02* Y1468D01* X3170Y1443D02* X3195Y1468D01* X3121Y1466D02* X3193D01* X3610Y1408D02* Y1505D01* X3591Y1410D02* Y1529D01* X3610Y1408D02* X3715D01* X3555Y1426D02* X3610D01* X3571Y1409D02* Y1516D01* X3555Y1408D02* Y1505D01* X3579Y1410D02* X3589D01* X3604Y1406D02* X3728D01* X3613Y1399D02* X3644D01* X3611Y1401D02* Y1408D01* X3584Y1377D02* Y1403D01* X3551Y1399D02* Y1408D01* X3450D02* X3555D01* X3531Y1399D02* Y1408D01* X3331Y1406D02* X3564D01* X3503Y1415D02* Y1457D01* X3450Y1408D02* Y1486D01* X3331Y1426D02* X3450D01* X3525Y1399D02* X3555D01* X3511Y1386D02* Y1408D01* X3506Y1381D02* X3525Y1399D01* X3491Y1379D02* Y1408D01* X3471Y1379D02* Y1408D01* X3451Y1379D02* Y1408D01* X3550Y1260D02* X3584D01* X3525Y1295D02* X3544D01* X3511Y1235D02* X3531D01* X3502Y1246D02* X3544D01* X3506Y1313D02* X3525Y1295D01* X3491Y1263D02* Y1314D01* X3511Y1235D02* Y1308D01* X3544Y1219D02* Y1295D01* X3531Y1226D02* X3544D01* X3531Y1219D02* X3544D01* X3531D02* Y1295D01* X3503Y1243D02* X3511Y1235D01* X3531Y1219D02* Y1235D01* X3445Y1379D02* X3506D01* X3331Y1386D02* X3512D01* X3458Y1314D02* X3506D01* X3450Y1306D02* X3513D01* X3446Y1302D02* X3458Y1314D01* X3435Y1286D02* X3544D01* X3488Y1266D02* X3544D01* X3471Y1273D02* Y1314D01* X3451Y1271D02* Y1307D01* X3431Y1376D02* Y1467D01* X3411Y1359D02* Y1447D01* X3405Y1353D02* X3422Y1370D01* X3391Y1349D02* Y1431D01* X3331Y1429D02* X3380D01* X3431Y1254D02* Y1283D01* X3371Y1337D02* Y1429D01* X3403Y1259D02* X3423Y1279D01* X3351Y1337D02* Y1429D01* X3331Y1337D02* Y1429D01* X3331Y1337D02* Y1429D01* Y1366D02* X3418D01* X3331Y1346D02* X3387D01* X3331Y1337D02* X3379D01* X3272Y1326D02* X3305D01* X3272Y1327D02* X3305D01* X3272Y1306D02* X3305D01* X3272Y1286D02* X3305D01* Y1235D02* Y1327D01* X3291Y1235D02* Y1327D01* X3272Y1235D02* Y1327D01* X3230Y1279D02* X3266D01* X3188Y1235D02* Y1284D01* X3194Y1279D02* X3230D01* X3411Y1235D02* Y1267D01* X3410Y1266D02* X3442D01* X3389Y1246D02* X3428D01* X3391Y1235D02* Y1251D01* X3389Y1235D02* Y1251D01* X3446Y1124D02* Y1201D01* X3414Y1206D02* X3440D01* X3414Y1186D02* X3446D01* X3414Y1124D02* Y1235D01* Y1226D02* X3428D01* X3431Y1124D02* Y1216D01* X3272Y1266D02* X3305D01* X3272Y1246D02* X3305D01* X3389Y1235D02* X3414D01* X3272D02* X3305D01* X3230Y1228D02* Y1279D01* X3121Y1266D02* X3188D01* X3121Y1246D02* X3188D01* X3288Y1177D02* Y1228D01* X3214Y1221D02* X3246D01* X3214Y1206D02* X3246D01* Y1128D02* Y1221D01* X3231Y1128D02* Y1221D01* X3214Y1128D02* Y1221D01* X4042Y1166D02* X4094D01* X4041Y1146D02* X4094D01* X4033Y1126D02* X4094D01* X4034Y1086D02* X4094D01* X4042Y1066D02* X4094D01* X4031Y1089D02* Y1125D01* X4041Y1046D02* X4094D01* X4033Y1026D02* X4094D01* X4034Y986D02* X4094D01* X4042Y966D02* X4094D01* X4041Y946D02* X4094D01* X4031Y989D02* Y1025D01* X4033Y926D02* X4094D01* X4031Y889D02* Y925D01* X4008Y1106D02* X4094D01* X4008Y1006D02* X4094D01* X4011Y1105D02* Y1109D01* Y1005D02* Y1009D01* X4008Y906D02* X4094D01* X4034Y886D02* X4094D01* X4011Y905D02* Y909D01* X4042Y866D02* X4094D01* X4041Y846D02* X4094D01* X4033Y826D02* X4094D01* X4008Y806D02* X4094D01* X4031Y789D02* Y825D01* X4011Y805D02* Y809D01* X4042Y766D02* X4094D01* X4034Y786D02* X4094D01* X4041Y746D02* X4094D01* X4033Y726D02* X4094D01* X4004Y706D02* X4094D01* X3990Y757D02* X4036D01* X3990Y711D02* Y757D01* X3963Y706D02* X3976D01* X3963Y802D02* Y812D01* Y806D02* X3972D01* X3963Y686D02* X4094D01* X3963Y666D02* X4094D01* X3962Y646D02* X4094D01* X3963Y647D02* Y712D01* X3955Y626D02* X4094D01* X3544Y1114D02* X3556D01* X3525Y1115D02* X3555D01* X3550Y1063D02* X3584D01* X3544Y1014D02* X3556D01* X3544D02* Y1114D01* X3531Y1014D02* Y1115D01* X3525Y1014D02* X3544D01* X3846Y697D02* X3898Y748D01* X3550Y866D02* X3584D01* X3898Y660D02* Y748D01* X3544Y819D02* Y910D01* X3525D02* X3544D01* X3531Y819D02* Y910D01* X3520Y1119D02* X3525Y1115D01* X3484Y1119D02* X3520D01* X3511Y1000D02* Y1119D01* X3509Y997D02* X3525Y1014D01* X3491Y997D02* Y1119D01* X3484Y1040D02* Y1119D01* X3507Y928D02* Y932D01* X3525Y819D02* X3544D01* X3507Y928D02* X3525Y910D01* X3507Y801D02* X3525Y819D01* X3511Y805D02* Y924D01* X3491Y791D02* Y932D01* X3507Y791D02* Y801D01* X3875Y726D02* X3898D01* X3855Y706D02* X3898D01* X3852Y666D02* X3898D01* X3850Y686D02* X3898D01* X3891Y654D02* Y742D01* X3851Y678D02* Y702D01* X3848Y646D02* X3883D01* X3871Y634D02* Y722D01* X3700Y637D02* X3715D01* X3838Y626D02* X3863D01* X3531Y675D02* Y715D01* X3525D02* X3544D01* X3550Y669D02* X3584D01* X3535Y666D02* X3544D01* X3515Y726D02* X3525Y715D01* X3511Y675D02* Y726D01* X3491Y675D02* Y726D01* X3700Y618D02* Y637D01* Y626D02* X3721D01* X3624Y618D02* X3700D01* X3535Y646D02* X3544D01* X3535Y626D02* X3544D01* X3620Y618D02* X3624D01* X4031Y39D02* Y725D01* X3935Y606D02* X4094D01* X3915Y586D02* X4094D01* X3895Y566D02* X4094D01* X4011Y39D02* Y709D01* X3851Y614D02* Y661D01* X3841Y511D02* X3953Y624D01* X3991Y39D02* Y704D01* X3971Y39D02* Y708D01* X3951Y39D02* Y622D01* X3931Y39D02* Y602D01* X3911Y39D02* Y582D01* X3891Y39D02* Y562D01* X3831Y594D02* Y619D01* X3815Y606D02* X3843D01* X3664Y586D02* X3823D01* X3811Y574D02* Y604D01* X3653Y606D02* X3744D01* X3668Y566D02* X3803D01* X3791Y554D02* Y598D01* X3782Y545D02* X3898Y660D01* X3771Y544D02* Y597D01* X3731Y527D02* Y615D01* X3711Y505D02* Y637D01* X3751Y539D02* Y602D01* X3875Y546D02* X4094D01* X3855Y526D02* X4094D01* X3851Y486D02* X4094D01* X3844Y506D02* X4094D01* X3851Y481D02* Y522D01* X3852Y466D02* X4094D01* X3847Y446D02* X4094D01* X3835Y426D02* X4094D01* X3809Y406D02* X4094D01* X3871Y39D02* Y542D01* X3851Y39D02* Y464D01* X3831Y39D02* Y422D01* X3687Y546D02* X3783D01* X3700Y426D02* X3724D01* X3693Y526D02* X3731D01* X3700Y506D02* X3715D01* X3700Y505D02* X3715D01* X3700Y440D02* X3715D01* X3811Y39D02* Y407D01* X3791Y39D02* Y401D01* X3751Y39D02* Y406D01* X3731Y39D02* Y418D01* X3771Y39D02* Y400D01* X3671Y563D02* Y618D01* X3645Y614D02* X3664Y595D01* Y571D02* Y595D01* Y571D02* X3683Y551D01* X3651Y607D02* Y618D01* X3631Y614D02* Y618D01* X3620D02* X3624D01* X3691Y536D02* Y618D01* X3693Y523D02* X3700D01* Y505D02* Y523D01* X3693D02* Y528D01* X3609Y618D02* X3620D01* X3614Y614D02* X3645D01* X3544Y618D02* X3561D01* X3544D02* Y715D01* X3551Y614D02* Y618D01* X3535Y614D02* Y675D01* Y614D02* X3556D01* X3507Y528D02* X3525Y510D01* X3496Y415D02* Y530D01* X3491D02* Y535D01* X3496Y526D02* X3509D01* X3711Y39D02* Y440D01* X3700Y421D02* Y440D01* X3691Y39D02* Y421D01* X3624D02* X3700D01* X3620D02* X3624D01* X3584Y428D02* Y472D01* X3620Y421D02* X3624D01* X3671Y39D02* Y421D01* X3651Y39D02* Y421D01* X3631Y39D02* Y421D01* X3611Y39D02* Y421D01* X3591Y39D02* Y421D01* X3571Y39D02* Y421D01* X3525Y510D02* X3544D01* X3496Y506D02* X3544D01* X3550Y472D02* X3584D01* X3496Y486D02* X3544D01* X3496Y466D02* X3544D01* X3496Y446D02* X3544D01* X3496Y426D02* X3544D01* Y421D02* Y510D01* Y421D02* X3620D01* X3551Y39D02* Y421D01* X3531Y39D02* Y510D01* X3511Y39D02* Y524D01* X3491Y39D02* Y415D01* X3484Y1106D02* X3544D01* X3484Y1086D02* X3544D01* X3484Y1066D02* X3544D01* X3484Y1046D02* X3544D01* X3471Y1007D02* Y1040D01* X3451Y1007D02* Y1040D01* X3484Y1006D02* X3518D01* X3484Y997D02* X3509D01* X3484Y932D02* X3507D01* X3484Y926D02* X3509D01* X3484Y997D02* Y1007D01* Y923D02* Y932D01* X3471Y917D02* Y923D01* X3414Y1166D02* X3446D01* X3414Y1146D02* X3446D01* X3414Y1126D02* X3446D01* X3386Y1040D02* X3484D01* X3414Y1124D02* X3446D01* X3371Y1177D02* X3407D01* X3368Y1040D02* X3386D01* Y1007D02* X3484D01* X3342Y1026D02* X3544D01* X3386Y923D02* X3484D01* X3431Y1007D02* Y1040D01* X3411Y1007D02* Y1040D01* X3391Y1007D02* Y1040D01* X3484Y906D02* X3544D01* X3484Y886D02* X3544D01* X3484Y866D02* X3544D01* X3484Y846D02* X3544D01* X3484Y833D02* Y917D01* X3451D02* Y923D01* X3447Y833D02* X3484D01* Y791D02* Y800D01* Y791D02* X3507D01* X3484Y726D02* X3515D01* X3471Y800D02* Y833D01* X3451Y800D02* Y833D01* X3484Y716D02* Y726D01* X3386Y917D02* X3484D01* X3442Y826D02* X3544D01* X3431Y917D02* Y923D01* X3411Y917D02* Y923D01* X3391Y917D02* Y923D01* X3422Y806D02* X3513D01* X3416Y800D02* X3484D01* X3192Y706D02* X3544D01* X3431Y800D02* Y816D01* X3416Y800D02* X3443Y828D01* X3368Y716D02* X3484D01* X3371Y1007D02* Y1040D01* X3368D02* X3386D01* X3368Y1007D02* X3386D01* X3368D02* X3386D01* X3355Y1040D02* X3368D01* Y923D02* X3386D01* X3368D02* X3386D01* X3371Y917D02* Y923D01* X3351Y1007D02* Y1036D01* X3331Y1007D02* Y1016D01* X3351Y917D02* Y923D01* X3253Y1177D02* X3288D01* X3214Y1186D02* X3246D01* X3323Y1007D02* X3351Y1035D01* X3323Y1007D02* X3368D01* X3214Y1166D02* X3246D01* X3214Y1146D02* X3246D01* X3214Y1128D02* X3246D01* X3328Y965D02* Y1001D01* X3272Y923D02* X3368D01* X3331Y917D02* Y923D01* X3328Y929D02* Y965D01* X3272Y923D02* Y926D01* X3311Y917D02* Y923D01* X3368Y917D02* X3386D01* X3328Y875D02* Y911D01* X3351Y828D02* Y833D01* X3297D02* X3357D01* X3291Y917D02* Y923D01* X3272Y917D02* Y923D01* X3328Y840D02* Y875D01* X3368Y716D02* X3386D01* X3324Y800D02* X3357Y833D01* X3297Y716D02* X3368D01* X3331Y808D02* Y833D01* X3311Y800D02* Y833D01* X3291Y800D02* Y833D01* X3272Y917D02* X3386D01* X3188Y826D02* X3350D01* X3270Y800D02* X3324D01* X3188Y806D02* X3330D01* X3271Y800D02* Y833D01* X3188D02* X3297D01* X3251Y800D02* Y833D01* X3231Y800D02* Y833D01* X3188Y800D02* X3270D01* X3188Y716D02* X3297D01* X3211Y800D02* Y833D01* X3191Y800D02* Y833D01* Y707D02* Y716D01* X3471Y675D02* Y716D01* X3448Y539D02* X3487D01* X3451Y675D02* Y716D01* X3431Y675D02* Y716D01* X3471Y530D02* Y539D01* X3451Y530D02* Y539D01* X3439Y530D02* X3496D01* X3454Y472D02* X3490D01* X3454D02* Y524D01* X3439Y530D02* X3448Y539D01* X3418Y472D02* X3454D01* X3411Y675D02* Y716D01* X3192Y686D02* X3544D01* X3395Y675D02* X3535D01* X3345Y666D02* X3395D01* X3345Y646D02* X3395D01* X3345Y626D02* X3395D01* X3345Y606D02* X3395D01* X3412Y415D02* Y503D01* X3379Y470D02* X3412Y503D01* X3395Y486D02* X3412D01* X3395Y578D02* Y675D01* X3345Y586D02* X3395D01* X3411Y39D02* Y502D01* X3454Y421D02* Y472D01* X3412Y415D02* X3496D01* X3295Y406D02* X3750D01* X2916Y386D02* X4094D01* X3379Y466D02* X3412D01* X3379Y446D02* X3412D01* X3379Y426D02* X3412D01* X2911Y366D02* X4094D01* X2901Y346D02* X4094D01* X2880Y326D02* X4094D01* X3471Y39D02* Y415D01* X3451Y39D02* Y415D01* X3431Y39D02* Y415D01* X2718Y306D02* X4094D01* X2718Y286D02* X4094D01* X2718Y266D02* X4094D01* X2716Y246D02* X4094D01* X2701Y226D02* X4094D01* X2681Y206D02* X4094D01* X2661Y186D02* X4094D01* X2641Y166D02* X4094D01* X2621Y146D02* X4094D01* X2601Y126D02* X4094D01* X2581Y106D02* X4094D01* X2561Y86D02* X4094D01* X2538Y66D02* X4094D01* X3391Y574D02* Y716D01* X3331Y675D02* Y716D01* X3311Y675D02* Y716D01* X3291Y675D02* Y716D01* X3271Y675D02* Y716D01* X3251Y675D02* Y716D01* X3231Y675D02* Y716D01* X3371Y554D02* Y716D01* X3348Y530D02* X3395Y578D01* X3345Y566D02* X3383D01* X3351Y534D02* Y716D01* X3345Y539D02* Y675D01* Y546D02* X3363D01* X3211Y675D02* Y716D01* X3205Y675D02* X3345D01* X3180Y666D02* X3205D01* X3163Y646D02* X3205D01* X3163Y626D02* X3205D01* X3163Y606D02* X3205D01* X3163Y586D02* X3205D01* X3163Y566D02* X3205D01* Y539D02* Y675D01* X3191Y531D02* Y683D01* X3102Y546D02* X3205D01* X3331Y530D02* Y539D01* X3307D02* X3345D01* X3379Y415D02* Y470D01* X3307Y530D02* X3348D01* X3311D02* Y539D01* X3307Y530D02* Y539D01* X3295Y415D02* Y487D01* X3391Y39D02* Y482D01* X3371Y39D02* Y415D01* X3351Y39D02* Y415D01* X3331Y39D02* Y415D01* X3295Y395D02* Y487D01* X3311Y39D02* Y415D01* X3242Y531D02* Y539D01* X3205D02* X3242D01* X3295Y415D02* X3379D01* X3155Y395D02* X3295D01* X3231Y531D02* Y539D01* X3211Y531D02* Y539D01* X3155Y531D02* X3242D01* X3291Y39D02* Y395D01* X3271Y39D02* Y395D01* X3251Y39D02* Y395D01* X3231Y39D02* Y395D01* X3211Y39D02* Y395D01* X3191Y39D02* Y395D01* X2817Y1649D02* X2830Y1637D01* X2794Y1646D02* X2820D01* X2791Y1626D02* X2830D01* X2791Y1643D02* X2808Y1661D01* X2791Y1617D02* Y1643D01* X2830Y1608D02* Y1637D01* Y1602D02* Y1608D01* X2870Y1533D02* Y1567D01* X2836D02* X2870D01* X2830Y1602D02* Y1608D01* X2791Y1425D02* Y1644D01* X2830Y1527D02* Y1602D01* X2791Y1611D02* Y1617D01* Y1611D02* Y1617D01* Y1606D02* X2830D01* X2791Y1586D02* X2830D01* X2750Y1814D02* Y1818D01* X2608Y1819D02* X2748D01* X2750Y1577D02* X2784D01* X2791Y1536D02* Y1611D01* Y1566D02* X2830D01* X2791Y1546D02* X2830D01* X2750Y1543D02* Y1577D01* X2716D02* X2750D01* X2710Y1536D02* X2791D01* X3121Y1506D02* X3153D01* X3121Y1486D02* X3162D01* X3171Y1444D02* Y1477D01* X3121Y1446D02* X3173D01* X3151Y1443D02* Y1511D01* X3121D02* X3153D01* X3079Y1485D02* X3114D01* X3131Y1443D02* Y1511D01* X3129Y1443D02* X3170D01* X3121Y1426D02* X3129D01* X3121Y1443D02* Y1511D01* Y1427D02* Y1443D01* Y1427D02* Y1443D01* X2830Y1527D02* X2886D01* X2701Y1526D02* X2886D01* X2788Y1506D02* X2886D01* X2788Y1486D02* X2886D01* X2771Y1526D02* Y1536D01* X2751Y1526D02* Y1536D01* X2712Y1526D02* X2788D01* Y1466D02* X2886D01* X2788Y1446D02* X2886D01* X2788Y1426D02* X2886D01* X2788Y1425D02* Y1526D01* X2748Y1475D02* X2782D01* X2788Y1425D02* X2808D01* X2731Y1814D02* Y1819D01* X2711Y1814D02* Y1819D01* X2700Y1744D02* Y1808D01* Y1681D02* Y1744D01* X2691Y1814D02* Y1819D01* X2671Y1814D02* Y1819D01* X2651Y1814D02* Y1819D01* X2710Y1655D02* Y1674D01* X2642D02* X2710D01* X2691Y1655D02* Y1674D01* X2671Y1655D02* Y1674D01* X2651Y1655D02* Y1674D01* X2642Y1655D02* Y1674D01* X2631Y1814D02* Y1819D01* X2621Y1814D02* X2750D01* X2608Y1806D02* X2621D01* X2608Y1786D02* X2621D01* Y1753D02* Y1814D01* X2611Y1753D02* Y1819D01* X2608Y1766D02* X2621D01* X2642Y1666D02* X2710D01* X2627Y1744D02* X2700D01* X2642Y1655D02* X2710D01* X2623Y1633D02* Y1637D01* X2608Y1754D02* Y1819D01* X2611Y1633D02* Y1637D01* X2710Y1536D02* Y1574D01* X2701D02* X2710D01* X2702Y1566D02* X2710D01* X2701Y1546D02* X2710D01* X2701Y1570D02* Y1574D01* X2731Y1526D02* Y1536D01* X2711Y1526D02* Y1536D01* X2748Y1475D02* Y1519D01* X2708Y1526D02* X2712D01* X2701D02* Y1550D01* X2708Y1526D02* X2712D01* X2631Y1574D02* X2640D01* X2701Y1526D02* X2708D01* X2631Y1546D02* X2640D01* X2631Y1533D02* Y1574D01* X2591Y1633D02* Y1637D01* X2631Y1566D02* X2638D01* X2640Y1526D02* Y1548D01* X2631Y1526D02* X2640D01* X2632Y1526D02* X2640D01* X2631Y1517D02* Y1533D01* X2632Y1424D02* Y1526D01* Y1424D02* X2642D01* X3129Y1374D02* Y1443D01* X3121Y1406D02* X3129D01* X3121Y1386D02* X3129D01* X3121Y1382D02* X3129Y1374D01* X3121Y1382D02* Y1427D01* X2886Y1352D02* Y1527D01* X2808Y1341D02* Y1425D01* X2871Y1338D02* Y1527D01* X2851Y1318D02* Y1527D01* X2811Y1278D02* Y1657D01* X2831Y1298D02* Y1527D01* X2808Y1406D02* X2886D01* X2808Y1386D02* X2886D01* X2808Y1366D02* X2886D01* X2808Y1346D02* X2880D01* X2750Y1383D02* X2801D01* X2711Y1341D02* X2808D01* X2733Y1326D02* X2860D01* X2808Y1274D02* X2886Y1352D01* X2808Y1306D02* X2840D01* X2751Y1308D02* X2808D01* X2791D02* Y1341D01* X2771Y1308D02* Y1341D01* X2808Y1274D02* Y1308D01* X3171Y1235D02* Y1284D01* X3140D02* X3185D01* X3151Y1235D02* Y1284D01* X3129Y1235D02* X3188D01* X3121Y1230D02* Y1291D01* Y1286D02* X3129D01* X3131Y1235D02* Y1285D01* X3129Y1221D02* Y1235D01* X3125Y1226D02* X3129D01* X3012Y1114D02* X3064Y1062D01* X3011Y960D02* Y1114D01* X3031Y941D02* Y1094D01* X2984Y1106D02* X3020D01* X2984Y1086D02* X3040D01* X2808Y1286D02* X2820D01* X2797Y1106D02* X2809D01* X2777Y1086D02* X2817D01* X2991Y961D02* Y1113D01* X2984Y958D02* Y1116D01* X2811Y1037D02* Y1097D01* X2791Y797D02* Y1100D01* X2719Y1028D02* X2808Y1116D01* X2771Y797D02* Y1080D01* X2751Y1308D02* Y1341D01* X2750Y1347D02* Y1383D01* X2731Y1328D02* Y1341D01* X2711Y1337D02* Y1341D01* X2711Y1337D02* Y1341D01* X2731Y1328D02* X2751Y1308D01* X2692Y1224D02* Y1266D01* X2691Y1158D02* Y1266D01* X2671Y1256D02* Y1266D01* X2651Y1256D02* Y1266D01* X2688Y1154D02* Y1256D01* X2631Y1423D02* Y1574D01* X2631Y1423D02* Y1533D01* Y1423D02* X2642D01* X2621Y1266D02* X2692D01* X2609D02* X2621D01* X2609D02* X2621D01* X2603D02* X2609D01* X2631Y1256D02* Y1266D01* X2603Y1266D02* X2692D01* X2612Y1256D02* X2688D01* X2611D02* Y1266D01* X2603Y1256D02* Y1266D01* X2608Y1256D02* X2612D01* X2751Y1218D02* Y1224D01* X2692D02* X2758D01* X2731Y1198D02* Y1224D01* X2688Y1206D02* X2740D01* X2688Y1246D02* X2692D01* X2648Y1205D02* Y1249D01* X2688Y1226D02* X2692D01* X2711Y1178D02* Y1224D01* X2688Y1154D02* X2758Y1224D01* X2688Y1186D02* X2720D01* X2688Y1166D02* X2700D01* X2671Y1138D02* Y1154D01* X2651Y1118D02* Y1154D01* X2648Y1205D02* X2682D01* X2608Y1256D02* X2612D01* X2648Y1160D02* Y1205D01* X2612Y1154D02* X2688D01* X2608D02* X2612D01* X2603Y1256D02* X2608D01* Y1154D02* X2612D01* X2648Y1114D02* X2688Y1154D01* X2648Y1114D02* Y1145D01* Y1126D02* X2660D01* X2631Y1145D02* Y1154D01* X2611Y1145D02* Y1154D01* X2591Y1145D02* Y1154D01* X2534Y1753D02* X2621D01* X2532Y1754D02* X2608D01* X2588Y1695D02* Y1747D01* X2541Y1695D02* X2588D01* X2534Y1637D02* Y1753D01* X2528Y1754D02* X2532D01* X2588Y1644D02* Y1695D01* X2571Y1633D02* Y1637D01* X2534D02* X2623D01* X2546Y1633D02* X2623D01* X2551D02* Y1637D01* X2531Y1423D02* Y1754D01* X2546Y1517D02* Y1633D01* X2516Y1746D02* X2534D01* X2516Y1726D02* X2534D01* X2516Y1706D02* X2534D01* X2516Y1686D02* X2534D01* X2528Y1754D02* X2532D01* X2496D02* X2528D01* X2496Y1753D02* X2516D01* Y1637D02* Y1753D01* Y1666D02* X2534D01* X2516Y1646D02* X2534D01* X2511Y1633D02* Y1637D01* X2495D02* X2516D01* X2495D02* X2495Y1633D01* X2588Y1575D02* Y1626D01* X2514Y1626D02* X2546D01* X2588Y1575D02* X2624D01* X2553D02* X2588D01* X2514Y1606D02* X2546D01* X2514Y1586D02* X2546D01* X2514Y1566D02* X2546D01* X2546Y1517D02* Y1533D01* Y1423D02* Y1517D01* X2531Y1423D02* X2546D01* X2519D02* X2531D01* X2514Y1533D02* Y1633D01* X2519Y1423D02* X2531D01* X2514Y1546D02* X2546D01* X2514Y1526D02* X2546D01* X2514Y1506D02* X2546D01* X2514Y1486D02* X2546D01* X2514Y1517D02* Y1533D01* X2495Y1633D02* X2514D01* X2514Y1466D02* X2546D01* X2514Y1446D02* X2546D01* X2514Y1426D02* X2546D01* X2514Y1423D02* X2519D01* X2514D02* Y1533D01* X2429Y1423D02* Y1445D01* X2410Y1426D02* X2429D01* X2409Y1903D02* Y1973D01* X2396Y1889D02* X2409Y1903D01* X2391Y1884D02* Y2037D01* X2318Y1892D02* Y1999D01* X2321Y1866D02* X2386D01* X2385Y1855D02* Y1865D01* X2371Y1855D02* Y2037D01* X2360Y1855D02* X2385D01* X2351Y1853D02* Y2033D01* X2331Y1839D02* Y2013D01* X2321Y1886D02* X2393D01* X2305Y1846D02* X2337D01* X2302Y1815D02* X2326D01* X2288Y1826D02* X2326D01* X2311Y1815D02* Y1851D01* X2302Y1763D02* Y1815D01* X2291Y1763D02* Y1843D01* X2288Y1806D02* X2302D01* X2288Y1764D02* Y1843D01* X2248Y1815D02* X2282D01* X2248Y1770D02* Y1815D01* X2288Y1786D02* X2302D01* X2288Y1766D02* X2302D01* X2265Y1446D02* X2295D01* X2221Y1763D02* X2302D01* X2212Y1764D02* X2288D01* X2209Y1763D02* X2221D01* X2260Y1453D02* Y1487D01* X2429Y1417D02* Y1423D01* X2400Y1416D02* X2429Y1445D01* X2400Y1406D02* X2429D01* X2265Y1446D02* X2295D01* X2265Y1426D02* X2295D01* X2265Y1406D02* X2295D01* X2209Y1763D02* X2221D01* X2208Y1764D02* X2212D01* X2208D02* X2212D01* X2199D02* X2208D01* X2199Y1763D02* X2209D01* X2119Y1558D02* Y1591D01* X2111Y1558D02* Y1591D01* X2128Y1522D02* Y1527D01* X2111Y1465D02* Y1474D01* X2111Y1464D02* X2119Y1473D01* X2091Y1558D02* Y1591D01* X2429Y1374D02* Y1423D01* X2400Y1386D02* X2429D01* X2435Y1383D02* X2480D01* X2425Y1374D02* X2429D01* X2411Y1371D02* Y1428D01* X2542Y1256D02* Y1266D01* X2531D02* X2542D01* X2519D02* X2531D01* X2400Y1361D02* Y1416D01* Y1366D02* X2405D01* X2519Y1266D02* X2531D01* X2400Y1361D02* X2404Y1366D01* X2295Y1347D02* X2386D01* X2379Y1341D02* X2386Y1347D01* X2278Y1346D02* X2385D01* X2371Y1325D02* Y1347D01* X2304Y1326D02* X2372D01* X2312Y1306D02* X2371D01* X2311Y1286D02* X2371D01* X2351Y1163D02* Y1347D01* X2331Y1143D02* Y1347D01* X2371Y1182D02* Y1320D01* X2531Y1187D02* Y1263D01* X2532Y1256D02* X2542D01* X2531Y1182D02* Y1187D01* X2532Y1154D02* X2608D01* X2532D02* Y1256D01* X2511Y1263D02* Y1266D01* X2531Y1182D02* Y1187D01* X2571Y1145D02* Y1154D01* X2531Y1146D02* X2680D01* X2532Y1145D02* X2648D01* X2551D02* Y1154D01* X2531Y1139D02* Y1182D01* X2532Y1138D02* Y1145D01* X2510Y1266D02* X2519D01* X2510Y1263D02* Y1266D01* Y1266D02* X2542D01* X2510Y1263D02* X2531D01* X2303Y1266D02* X2371D01* X2278Y1246D02* X2371D01* X2304Y1226D02* X2371D01* X2312Y1206D02* X2371D01* X2311Y1186D02* X2371D01* X2315Y1126D02* X2371Y1182D01* X2303Y1166D02* X2355D01* X2278Y1146D02* X2335D01* X2304Y1126D02* X2315D01* X2295Y1347D02* Y1446D01* X2291Y1339D02* Y1446D01* X2265Y1386D02* X2295D01* X2265Y1366D02* X2295D01* X2271Y1348D02* Y1446D01* X2265Y1349D02* Y1446D01* X2231Y1341D02* Y1347D01* X2311Y1307D02* Y1347D01* X2260Y1297D02* Y1343D01* Y1297D02* X2306D01* X2214D02* X2260D01* X2212Y1400D02* X2258D01* X2170Y1347D02* X2244D01* X2170Y1346D02* X2242D01* X2170Y1326D02* X2216D01* X2212Y1354D02* Y1400D01* X2211Y1317D02* Y1347D01* X2170Y1306D02* X2208D01* X2191Y217D02* Y1347D01* X2171Y217D02* Y1347D01* X2101Y874D02* Y1440D01* X2091Y865D02* Y1474D01* X2170Y860D02* Y1347D01* X2311Y1207D02* Y1287D01* X2291Y1239D02* Y1255D01* X2231Y1241D02* Y1253D01* X2211Y1217D02* Y1277D01* X2291Y1139D02* Y1155D01* X2311Y1126D02* Y1187D01* X2304Y1126D02* X2315D01* X2231Y1141D02* Y1153D01* X2211Y1117D02* Y1177D01* Y1017D02* Y1077D01* X2170Y1266D02* X2217D01* X2170Y1246D02* X2242D01* X2170Y1226D02* X2216D01* X2170Y1166D02* X2217D01* X2170Y1286D02* X2209D01* X2170Y1206D02* X2208D01* X2170Y1186D02* X2209D01* X2170Y1146D02* X2242D01* X2170Y1126D02* X2216D01* X2170Y1106D02* X2208D01* X2170Y1086D02* X2209D01* X3086Y1053D02* X3163D01* X3132Y1023D02* X3157Y1048D01* X3151Y1042D02* Y1053D01* X3131Y1022D02* Y1053D01* X3111Y960D02* Y1053D01* X3122Y954D02* Y1000D01* X3091Y961D02* Y1053D01* X3071Y947D02* Y1057D01* X3066Y908D02* Y927D01* X2984Y1046D02* X3155D01* X2984Y1026D02* X3135D01* X2984Y1006D02* X3123D01* X2984Y986D02* X3122D01* X2984Y1066D02* X3060D01* X3029Y946D02* X3071D01* X2984Y966D02* X3122D01* X3035Y926D02* X3066D01* X3051Y894D02* Y1074D01* X3000Y899D02* Y955D01* X3188Y800D02* Y833D01* X3102Y712D02* X3121D01* X3102Y706D02* X3118D01* X3035Y877D02* Y927D01* X3035Y877D02* X3066Y908D01* X3102Y686D02* X3118D01* X3102Y681D02* X3119D01* X3115Y619D02* X3157D01* X3111Y681D02* Y712D01* X3102Y681D02* Y712D01* X3115Y619D02* Y675D01* X3035Y906D02* X3064D01* X3000Y899D02* X3028D01* X3035Y886D02* X3044D01* X2937Y797D02* X2949Y809D01* X2931Y797D02* Y811D01* X2911Y806D02* X2946D01* X2957Y587D02* X2977D01* X2909Y797D02* X2937D01* X2902Y629D02* X2935Y596D01* X2899Y606D02* X2925D01* X2831Y1061D02* Y1073D01* X2814Y1017D02* X2860D01* X2757Y1066D02* X2842D01* X2811Y937D02* Y997D01* X2737Y1046D02* X2816D01* X2831Y961D02* Y973D01* X2811Y837D02* Y897D01* X2751Y797D02* Y1060D01* X2831Y861D02* Y873D01* X2719Y1026D02* X2808D01* X2719Y986D02* X2817D01* X2719Y966D02* X2842D01* X2719Y946D02* X2816D01* X2719Y1006D02* X2809D01* X2719Y926D02* X2808D01* X2719Y906D02* X2809D01* X2719Y886D02* X2817D01* X2719Y866D02* X2842D01* X2719Y846D02* X2816D01* X2731Y797D02* Y1040D01* X2719Y805D02* Y1028D01* Y826D02* X2808D01* X2860Y817D02* X2906D01* X2911Y797D02* Y807D01* X2814Y817D02* X2860D01* X2807Y664D02* Y736D01* X2733D02* X2807D01* X2722Y726D02* X2807D01* X2791Y644D02* Y736D01* X2771Y616D02* Y736D01* X2751Y596D02* Y736D01* X2719Y806D02* X2809D01* X2720Y797D02* X2811D01* X2702Y706D02* X2807D01* X2682Y686D02* X2807D01* X2662Y666D02* X2807D01* X2642Y646D02* X2792D01* X2622Y626D02* X2782D01* X2612Y606D02* X2762D01* X2610Y614D02* X2733Y736D01* X2611Y607D02* Y615D01* X3171Y531D02* Y660D01* X3163Y557D02* Y657D01* X3115Y564D02* Y619D01* X3102Y557D02* X3163D01* X3102Y531D02* Y557D01* X3037Y540D02* Y557D01* X3031Y534D02* Y557D01* X3151Y39D02* Y557D01* X3131Y39D02* Y557D01* X3155Y395D02* Y531D01* X3111Y39D02* Y557D01* X3105Y395D02* Y531D01* X3102Y527D02* Y531D01* X3011D02* Y557D01* X2977D02* X3037D01* X3028Y531D02* X3037Y540D01* X2811Y546D02* X3037D01* X2977Y557D02* Y587D01* X2882Y586D02* X2977D01* X2831Y566D02* X2977D01* X2991Y531D02* Y557D01* X2971Y531D02* Y587D01* X2965Y531D02* X3028D01* X2931Y39D02* Y599D01* X2911Y421D02* Y619D01* X2951Y39D02* Y587D01* X3105Y526D02* X3155D01* X3105Y506D02* X3155D01* X3105Y486D02* X3155D01* X3105Y466D02* X3155D01* X3105Y446D02* X3155D01* X3105Y426D02* X3155D01* X3105Y406D02* X3155D01* X3171Y39D02* Y395D01* X3091Y39D02* Y395D01* X3071Y39D02* Y395D01* X3051Y39D02* Y395D01* X3031Y39D02* Y395D01* X3011Y39D02* Y395D01* X2791Y526D02* X2965D01* X2771Y506D02* X2965D01* X2872Y466D02* X2965D01* X2751Y486D02* X2965D01* X2909Y426D02* X2965D01* X2897Y446D02* X2965D01* X2915Y406D02* X2965D01* X2991Y39D02* Y395D01* X2965D02* X3105D01* X2971Y39D02* Y395D01* X2965D02* Y531D01* X2911Y39D02* Y366D01* X2851Y473D02* Y577D01* X2842D02* X2855D01* X2831Y475D02* Y567D01* X2731Y576D02* Y735D01* X2811Y472D02* Y547D01* X2891Y452D02* Y595D01* X2871Y466D02* Y580D01* X2835Y394D02* Y469D01* X2791Y463D02* Y527D01* X2771Y445D02* Y507D01* X2751Y39D02* Y487D01* X2711Y556D02* Y715D01* X2691Y536D02* Y695D01* X2653Y497D02* X2788Y633D01* X2611Y586D02* X2742D01* X2671Y516D02* Y675D01* X2651Y496D02* Y655D01* X2611Y507D02* Y587D01* X2718Y454D02* X2842Y577D01* X2731Y39D02* Y467D01* X2631Y266D02* Y635D01* X2641Y276D02* Y470D01* X2835Y394D02* X2910D01* X2760D02* X2835D01* X2891Y39D02* Y335D01* X2835Y319D02* Y394D01* X2731Y466D02* X2797D01* X2718Y260D02* Y454D01* Y446D02* X2772D01* X2871Y39D02* Y321D01* X2851Y39D02* Y314D01* X2831Y39D02* Y312D01* X2791Y39D02* Y324D01* X2771Y39D02* Y342D01* X2811Y39D02* Y315D01* X2718Y426D02* X2760D01* X2718Y366D02* X2758D01* X2718Y346D02* X2768D01* X2718Y326D02* X2789D01* X2718Y406D02* X2754D01* X2718Y386D02* X2753D01* X2711Y39D02* Y238D01* X2691Y39D02* Y217D01* X2671Y39D02* Y197D01* X2651Y39D02* Y177D01* X2631Y39D02* Y157D01* X2507Y744D02* X2538D01* X2531Y741D02* Y744D01* X2511Y727D02* Y744D01* X2477Y766D02* X2507D01* X2478Y766D02* X2507D01* Y744D02* Y766D01* X2490Y727D02* X2517D01* X2502Y666D02* X2517D01* X2503Y666D02* X2517D01* X2491Y727D02* Y766D01* X2511Y617D02* Y666D01* X2457Y746D02* X2507D01* X2437Y726D02* X2482D01* X2471Y721D02* Y760D01* X2451Y701D02* Y740D01* X2417Y706D02* X2456D01* X2438Y688D02* X2468Y718D01* X2405Y694D02* X2478Y766D01* X2405Y686D02* X2436D01* X2431Y678D02* Y720D01* X2603Y566D02* X2722D01* X2591Y539D02* Y555D01* X2578Y546D02* X2702D01* X2531Y641D02* Y653D01* Y541D02* Y553D01* X2612Y506D02* X2662D01* X2604Y526D02* X2682D01* X2611Y486D02* X2645D01* X2511Y517D02* Y577D01* X2603Y466D02* X2641D01* X2490Y646D02* X2542D01* X2490Y626D02* X2516D01* X2490Y606D02* X2508D01* X2490Y586D02* X2509D01* X2490Y654D02* X2503Y666D01* X2405Y666D02* X2430D01* X2405Y646D02* X2430D01* X2490Y566D02* X2517D01* X2490Y546D02* X2542D01* X2490Y526D02* X2516D01* X2490Y506D02* X2508D01* X2490Y486D02* X2509D01* X2490Y466D02* X2517D01* X2231Y1041D02* Y1053D01* X2170Y1066D02* X2217D01* X2170Y1046D02* X2242D01* X2170Y1026D02* X2216D01* X2170Y1006D02* X2208D01* X2170Y986D02* X2209D01* X2231Y941D02* Y953D01* X2211Y917D02* Y977D01* Y817D02* Y877D01* X2231Y841D02* Y853D01* X2170Y966D02* X2217D01* X2170Y946D02* X2242D01* X2170Y926D02* X2216D01* X2167Y846D02* X2242D01* X2170Y906D02* X2208D01* X2170Y886D02* X2209D01* X2170Y866D02* X2217D01* X2150Y826D02* X2216D01* X2130Y806D02* X2208D01* X2110Y786D02* X2209D01* X2096Y772D02* X2159Y836D01* X2405Y626D02* X2430D01* X2405Y606D02* X2430D01* X2405Y586D02* X2430D01* X2405Y566D02* X2430D01* X2405Y527D02* Y694D01* Y546D02* X2430D01* X2405Y526D02* X2430D01* X2397Y506D02* X2430D01* X2377Y486D02* X2430D01* X2357Y466D02* X2430D01* X2357Y465D02* X2397Y505D01* X2231Y741D02* Y753D01* Y641D02* Y653D01* X2211Y717D02* Y777D01* Y617D02* Y677D01* X2231Y541D02* Y553D01* X2293Y456D02* X2335D01* X2311Y449D02* Y456D01* X2211Y517D02* Y577D01* X2291Y449D02* Y455D01* X2611Y407D02* Y487D01* X2604Y426D02* X2641D01* X2578Y446D02* X2641D01* X2591Y439D02* Y455D01* X2511Y417D02* Y477D01* X2531Y441D02* Y453D01* X2612Y406D02* X2641D01* X2611Y386D02* X2641D01* X2560Y397D02* X2606D01* X2560Y351D02* Y397D01* X2611Y246D02* Y387D01* X2490Y446D02* X2542D01* X2514Y397D02* X2560D01* X2490Y426D02* X2516D01* X2491Y414D02* Y655D01* X2490Y415D02* Y654D01* X2496Y406D02* X2508D01* X2498Y386D02* X2509D01* X2511Y146D02* Y377D01* X2491Y139D02* Y370D01* X2603Y366D02* X2641D01* X2591Y226D02* Y355D01* X2574Y346D02* X2641D01* X2547Y73D02* X2707Y233D01* X2571Y206D02* Y346D01* X2531Y166D02* Y353D01* X2551Y186D02* Y345D01* X2611Y39D02* Y137D01* X2591Y39D02* Y117D01* X2571Y39D02* Y97D01* X2551Y39D02* Y77D01* X2531Y39D02* Y63D01* X2504Y139D02* X2641Y276D01* X2312Y346D02* X2546D01* X2392Y206D02* X2572D01* X2392Y186D02* X2552D01* X2489Y366D02* X2517D01* X2392Y166D02* X2532D01* X2392Y146D02* X2512D01* X2392Y139D02* X2504D01* X2511Y39D02* Y62D01* X2491Y39D02* Y62D01* X2471Y139D02* Y355D01* Y39D02* Y62D01* X2430Y415D02* Y667D01* X2312Y446D02* X2430D01* X2312Y426D02* X2430D01* X2312Y406D02* X2424D01* X2391Y217D02* Y500D01* X2312Y344D02* Y449D01* Y386D02* X2422D01* X2431Y139D02* Y366D01* X2411Y139D02* Y700D01* X2451Y139D02* Y354D01* X2371Y217D02* Y480D01* X2351Y217D02* Y461D01* X2331Y217D02* Y456D01* X2312Y366D02* X2431D01* X2282Y449D02* X2312D01* X2231D02* Y453D01* X2211Y449D02* Y477D01* X2207Y449D02* X2238D01* X2207Y344D02* Y449D01* X2151Y217D02* Y828D01* X2207Y344D02* X2312D01* X2131Y217D02* Y808D01* X2111Y217D02* Y788D01* X2091Y217D02* Y768D01* X2451Y39D02* Y62D01* X2392Y139D02* Y217D01* X2431Y39D02* Y62D01* X2411Y39D02* Y62D01* X2311Y217D02* Y344D01* X2291Y217D02* Y344D01* X2271Y217D02* Y344D01* X2391Y39D02* Y62D01* X2371Y39D02* Y62D01* X2351Y39D02* Y62D01* X2331Y39D02* Y62D01* X2311Y39D02* Y62D01* X2291Y39D02* Y62D01* X2251Y217D02* Y344D01* X2231Y217D02* Y344D01* X2271Y39D02* Y62D01* X2251Y39D02* Y62D01* X2231Y39D02* Y62D01* X2211Y217D02* Y344D01* Y39D02* Y62D01* X2191Y39D02* Y62D01* X2171Y39D02* Y62D01* X2151Y39D02* Y62D01* X2131Y39D02* Y62D01* X2111Y39D02* Y62D01* X2091Y39D02* Y62D01* X2049Y4094D02* X4094D01* X2049Y4086D02* X4094D01* X2049Y4066D02* X4094D01* X2049Y4046D02* X4094D01* X2091Y4043D02* Y4094D01* X2071Y4043D02* Y4094D01* X2059Y4043D02* X2161D01* X2065Y4003D02* X2110D01* X2059Y3967D02* Y4043D01* Y3962D02* Y3967D01* Y3962D02* Y3967D01* X2051Y3811D02* Y4094D01* X2049Y4002D02* Y4094D01* X2059Y3886D02* Y3962D01* X2049Y4026D02* X2059D01* X2049Y4006D02* X2059D01* X1957Y4002D02* X2049D01* X1957Y3986D02* X2059D01* X2000Y4055D02* X2042D01* X1958D02* X2000D01* Y4009D02* Y4055D01* X2031Y3947D02* Y4002D01* X2011Y3947D02* Y4002D01* X1957Y3966D02* X2059D01* X1991Y3947D02* Y4002D01* X1971Y3947D02* Y4002D01* X1957Y3947D02* Y4002D01* X2059Y3886D02* X2077D01* X2049Y3946D02* X2059D01* X2049Y3886D02* X2077D01* X2049Y3866D02* X2077D01* X2049Y3842D02* Y3947D01* Y3926D02* X2059D01* X2049Y3906D02* X2059D01* X2077Y3838D02* Y3886D01* X2071Y3833D02* Y3886D01* X2053Y3806D02* X2057D01* X2053Y3786D02* X2057D01* X2051Y3739D02* Y3780D01* X2049Y3846D02* X2077D01* X1957Y3947D02* X2049D01* X2033Y3842D02* X2049D01* X2033Y3838D02* Y3842D01* X1957Y3944D02* Y3947D01* Y3842D02* X1968D01* Y3838D02* Y3842D01* X2044Y3826D02* X2066D01* X2045Y3766D02* X2064D01* X2022Y3746D02* X2088D01* X1913D02* X1979D01* X1951Y4034D02* Y4094D01* X1952Y4034D02* Y4094D01* X1931Y4034D02* Y4094D01* X1862Y4034D02* X1952D01* X1911D02* Y4094D01* X1891Y4034D02* Y4094D01* X1871Y4034D02* Y4094D01* X1862Y4009D02* Y4034D01* Y3944D02* Y3954D01* Y3929D02* Y3944D01* Y3929D02* Y3944D01* X1851Y4009D02* Y4094D01* X1862Y3840D02* Y3929D01* X1831Y4009D02* Y4094D01* X1811Y4009D02* Y4094D01* X1791Y4009D02* Y4094D01* Y3848D02* Y3954D01* X1771Y4009D02* Y4094D01* X1751Y4009D02* Y4094D01* X1731Y4009D02* Y4094D01* X1851Y3831D02* Y3954D01* X1831Y3816D02* Y3954D01* X1811Y3840D02* Y3954D01* X1771Y3848D02* Y3954D01* X1751Y3839D02* Y3954D01* X1731Y3812D02* Y3954D01* X1957Y3839D02* Y3842D01* X1952D02* X1957D01* X1935Y3826D02* X1957D01* X1922Y3839D02* X1957D01* X1951Y3817D02* Y3839D01* X1931Y3830D02* Y3839D01* X1944Y3806D02* X1948D01* X1951Y3738D02* Y3773D01* X1944Y3786D02* X1948D01* X1936Y3766D02* X1955D01* X1835Y3806D02* X1839D01* X1798Y3846D02* X1862D01* X1835Y3786D02* X1839D01* X1826Y3826D02* X1848D01* X1726Y3806D02* X1730D01* X1717Y3826D02* X1739D01* X1726Y3786D02* X1730D01* X1827Y3766D02* X1846D01* X1804Y3746D02* X1870D01* X1724Y3778D02* X1730Y3784D01* X1831Y3738D02* Y3774D01* X2091Y3725D02* Y3745D01* X2092Y3646D02* X2097D01* X2090Y3726D02* X2130D01* X2071Y3736D02* Y3757D01* X2031Y3733D02* Y3752D01* X2011Y3716D02* Y3743D01* X2091Y3626D02* Y3646D01* X2061Y3626D02* X2097D01* X2071D02* Y3634D01* X2030Y3638D02* X2046Y3622D01* X2051Y3625D02* Y3632D01* X1991Y3714D02* Y3742D01* X1971Y3732D02* Y3750D01* X1995Y3706D02* X2006D01* X1981Y3726D02* X2021D01* X1931Y3737D02* Y3760D01* X1911Y3726D02* Y3746D01* X1872Y3726D02* X1912D01* X1998Y3670D02* X2008Y3659D01* X2002Y3666D02* X2005D01* X1931Y3594D02* Y3634D01* X1944Y3632D02* X1992Y3584D01* X2087Y3561D02* X2097D01* X2087Y3546D02* X2097D01* X2087Y3526D02* X2196D01* X2087Y3506D02* X2191D01* X2087Y3515D02* Y3561D01* Y3500D02* Y3515D01* Y3486D02* X2097D01* X2087Y3466D02* X2097D01* X2087Y3446D02* X2097D01* X2091Y3338D02* Y3561D01* X2087Y3500D02* Y3515D01* Y3410D02* Y3500D01* X2042Y3626D02* X2058D01* X1951Y3593D02* Y3624D01* X1872Y3606D02* X1970D01* X1876Y3602D02* X1921D01* X1870Y3626D02* X1950D01* X1921Y3594D02* Y3602D01* X1971Y3583D02* Y3604D01* X1964Y3586D02* X1990D01* X1967Y3583D02* X1992D01* X1921Y3594D02* X1942D01* X1886Y3706D02* X1897D01* X1887Y3666D02* X1896D01* X1874Y3646D02* X1910D01* X1851Y3737D02* Y3759D01* X1811Y3732D02* Y3750D01* X1871Y3726D02* Y3745D01* X1911Y3602D02* Y3644D01* X1891Y3602D02* Y3742D01* X1870Y3608D02* X1876Y3602D01* X1871Y3606D02* Y3644D01* X1870Y3608D02* Y3643D01* X1791Y3713D02* Y3742D01* X1763Y3726D02* X1803D01* X1777Y3706D02* X1788D01* X1778Y3666D02* X1787D01* X1771Y3717D02* Y3743D01* X1758Y3730D02* X1771Y3743D01* X1810Y3551D02* Y3576D01* X1773Y3656D02* X1792D01* X1811Y3414D02* Y3575D01* X1819Y3526D02* Y3567D01* X1814Y3571D02* X1819Y3567D01* X1826Y3486D02* X1870D01* X1810Y3566D02* X1819D01* Y3521D02* Y3526D01* Y3521D02* Y3526D01* X1810Y3486D02* X1819D01* X1870Y3452D02* Y3486D01* X1819Y3445D02* X1871D01* X1819D02* Y3521D01* X1810Y3414D02* Y3496D01* X1851Y3414D02* Y3445D01* X1796Y3551D02* X1810D01* X1795Y3546D02* X1819D01* X1783Y3526D02* X1819D01* X1763Y3506D02* X1819D01* X1791Y3496D02* Y3536D01* X1810Y3466D02* X1819D01* X1753Y3496D02* X1810D01* Y3446D02* X1819D01* X1771Y3496D02* Y3515D01* X1753Y3496D02* X1786Y3529D01* X1762Y3444D02* Y3490D01* X1711Y4009D02* Y4094D01* X1691Y4009D02* Y4094D01* X1671Y4009D02* Y4094D01* X1651Y4009D02* Y4094D01* X1631Y4009D02* Y4094D01* X1491Y4043D02* Y4094D01* X1471Y4043D02* Y4094D01* X1611Y4009D02* Y4094D01* X1591Y4009D02* Y4094D01* X1571Y4009D02* Y4094D01* X1551Y4000D02* Y4094D01* X1531Y3993D02* Y4094D01* X1511Y3993D02* Y4094D01* X1511Y3993D02* Y4043D01* X1398Y4094D02* X1952D01* X1398Y4086D02* X1952D01* X1398Y4066D02* X1952D01* X1398Y4046D02* X1952D01* X1451Y4043D02* Y4094D01* X1431Y4043D02* Y4094D01* X1411Y4043D02* Y4094D01* X1409Y4043D02* X1511D01* X1409Y3993D02* Y4043D01* X1460Y4003D02* Y4036D01* X1398Y3993D02* Y4094D01* X1350Y4045D02* X1392D01* X1308D02* X1350D01* X1572Y4009D02* X1862D01* X1511Y4026D02* X1862D01* X1544Y3993D02* X1552Y4001D01* X1511Y4006D02* X1559D01* X1511Y3993D02* X1544D01* X1583Y3954D02* X1862D01* X1574Y3946D02* X1583Y3954D01* X1575Y3946D02* X1862D01* X1511Y3938D02* X1555D01* X1398Y4026D02* X1409D01* X1398Y4006D02* X1409D01* X1460Y4003D02* X1505D01* X1415D02* X1460D01* X1398Y3993D02* X1409D01* X1301Y3992D02* X1325D01* X1311Y3987D02* Y3992D01* X1511Y3926D02* X1862D01* X1511Y3906D02* X1862D01* X1488Y3886D02* X1862D01* X1292Y3986D02* X1311D01* X1511Y3886D02* Y3938D01* X1271Y4022D02* Y4094D01* X1278Y4006D02* X1301D01* X1268Y4026D02* X1301D01* X1251Y4037D02* Y4094D01* X1231Y4038D02* Y4094D01* X1211Y4026D02* Y4094D01* X1301Y3992D02* Y4094D01* X1291Y3987D02* Y4094D01* X1278Y4000D02* X1292Y3986D01* X1191Y3990D02* Y4094D01* X828Y4086D02* X1301D01* X820Y4094D02* X1301D01* X928Y4066D02* X1301D01* X928Y4046D02* X1301D01* X1111Y3959D02* Y4094D01* X928Y4026D02* X1212D01* X928Y4006D02* X1202D01* X1171Y3919D02* Y4094D01* X1151Y3939D02* Y4094D01* X1131Y3953D02* Y4094D01* X1091Y3959D02* Y4094D01* X1071Y3959D02* Y4094D01* X1051Y3959D02* Y4094D01* X1292Y3966D02* X1298D01* X1302Y3937D02* X1307D01* X1292Y3956D02* Y3986D01* X1188D02* X1201Y4000D01* X1188Y3956D02* Y3986D01* X1271Y3927D02* X1296D01* X1184D02* X1209D01* X1188Y3892D02* Y3898D01* X928Y3986D02* X1188D01* X928Y3966D02* X1188D01* X1143Y3946D02* X1180D01* X946Y3959D02* X1105D01* X1177Y3922D02* Y3932D01* X1149Y3941D02* X1172Y3918D01* X1164Y3926D02* X1177D01* X1711Y3833D02* Y3954D01* X1691Y3845D02* Y3954D01* X1689Y3846D02* X1766D01* X1671Y3849D02* Y3954D01* X1651Y3844D02* Y3954D01* X1631Y3829D02* Y3954D01* X1617Y3806D02* X1621D01* X1649Y3741D02* X1654Y3745D01* X1651Y3743D02* Y3746D01* X1631Y3737D02* Y3762D01* X1617Y3786D02* X1621D01* X1591Y3841D02* Y3954D01* X1488Y3866D02* X1862D01* X1608Y3826D02* X1630D01* X1580Y3846D02* X1657D01* X1571Y3848D02* Y3943D01* X1551Y3847D02* Y3938D01* X1488Y3846D02* X1548D01* X1609Y3766D02* X1628D01* X1586Y3746D02* X1652D01* X1611Y3820D02* Y3954D01* Y3738D02* Y3770D01* X1591Y3731D02* Y3749D01* X1641Y3611D02* Y3636D01* X1631Y3611D02* Y3633D01* X1571Y3709D02* Y3742D01* X1559Y3706D02* X1570D01* X1560Y3666D02* X1569D01* X1611Y3611D02* Y3632D01* X1602Y3611D02* X1641D01* X1602Y3551D02* Y3611D01* X1591Y3541D02* Y3639D01* X1571Y3521D02* Y3661D01* X1569Y3518D02* X1602Y3551D01* X1545Y3726D02* X1585D01* X1547Y3646D02* X1583D01* X1547Y3606D02* X1602D01* X1472Y3626D02* X1641D01* X1551Y3719D02* Y3743D01* X1547Y3586D02* X1602D01* X1547Y3566D02* X1602D01* X1547Y3546D02* X1597D01* X1551Y3518D02* Y3651D01* X1547Y3526D02* X1577D01* X1547Y3518D02* X1569D01* X1531Y3837D02* Y3938D01* X1499Y3826D02* X1521D01* X1508Y3806D02* X1512D01* X1500Y3766D02* X1519D01* X1511Y3804D02* Y3938D01* X1491Y3835D02* Y3886D01* X1508Y3786D02* X1512D01* X1531Y3734D02* Y3753D01* Y3611D02* Y3636D01* X1547Y3518D02* Y3611D01* X1511Y3739D02* Y3786D01* Y3611D02* Y3632D01* X1495Y3563D02* Y3605D01* X1488Y3886D02* X1511D01* X1488Y3746D02* X1543D01* X1491Y3735D02* Y3756D01* X1488Y3838D02* Y3886D01* Y3734D02* Y3753D01* X1491Y3611D02* Y3635D01* X1472Y3611D02* X1547D01* X1472Y3628D02* X1478Y3634D01* X1472Y3611D02* Y3628D01* X1495Y3563D02* X1541D01* X1472Y3514D02* X1522D01* X1511Y3492D02* Y3514D01* X1472Y3506D02* X1522D01* X1495Y3521D02* Y3563D01* X1491Y3504D02* Y3514D01* X1472Y3504D02* Y3514D01* X1522Y3451D02* Y3514D01* X1518Y3486D02* X1522D01* X1519Y3466D02* X1522D01* X1519Y3454D02* Y3485D01* X1500Y3504D02* X1519Y3485D01* X1472Y3504D02* X1500D01* X1322Y3449D02* X1410D01* X1322Y3446D02* X1408D01* X1370Y3455D02* Y3489D01* X1034Y3507D02* X1059D01* X1322Y3444D02* Y3449D01* X1391Y3413D02* Y3449D01* X1371Y3413D02* Y3449D01* X1351Y3413D02* Y3449D01* X1331Y3413D02* Y3449D01* X1038Y3447D02* X1051Y3433D01* X2087Y3426D02* X2097D01* X2057Y3406D02* X2097D01* X2037Y3386D02* X2097D01* X2017Y3366D02* X2204D01* X2061Y3410D02* X2087D01* X2016Y3364D02* X2061Y3409D01* X2071Y3201D02* Y3410D01* X2051Y3165D02* Y3400D01* X2031Y3147D02* Y3380D01* X2011Y3127D02* Y3361D01* X1977Y3326D02* X2084D01* X1960Y3346D02* X2101D01* X1975Y3286D02* X2086D01* X1955Y3266D02* X2106D01* X1854Y3356D02* X1995D01* X1980Y3306D02* X2080D01* X1949Y3226D02* X2129D01* X1932Y3246D02* X2149D01* X1952Y3206D02* X2109D01* X1991Y3107D02* Y3356D01* X1953Y3186D02* X2057D01* X2039Y3165D02* X2052D01* X2039Y3151D02* Y3165D01* Y3077D02* X2047Y3085D01* X2017Y3055D02* X2039Y3077D01* X2028Y3066D02* X2039D01* X2090Y3049D02* X2135D01* X2045D02* X2090D01* X2039Y3033D02* Y3077D01* X2031Y3033D02* Y3069D01* X2029Y2766D02* X2032D01* X1971Y3146D02* X2031D01* X1958Y3166D02* X2052D01* X2017Y3046D02* X2039D01* X1971Y3087D02* X2029Y3144D01* X1971Y3126D02* X2010D01* X1971Y3106D02* X1990D01* X2017Y3047D02* Y3055D01* X2015Y3033D02* X2039D01* X1979Y2766D02* X1982D01* X1971Y3335D02* Y3356D01* X1951Y3350D02* Y3356D01* X1911Y3348D02* Y3356D01* X1854Y3346D02* X1909D01* X1831Y3414D02* Y3445D01* X1810Y3426D02* X1868D01* X1891Y3325D02* Y3356D01* X1854Y3326D02* X1892D01* X1854Y3324D02* X1896Y3281D01* X1891Y3286D02* Y3291D01* X1871Y3306D02* Y3356D01* X1854Y3324D02* Y3356D01* X1872Y3306D02* X1888D01* X1810Y3414D02* X1872D01* X1762Y3444D02* X1804D01* X1727Y3306D02* X1749D01* X1716Y3294D02* X1749Y3328D01* X1698Y3286D02* X1749D01* Y3250D02* Y3328D01* X1731Y3269D02* Y3310D01* X1711Y3269D02* Y3291D01* X1691Y3269D02* Y3286D01* X1671Y3269D02* Y3286D01* X1651Y3269D02* Y3286D01* X1951Y3220D02* Y3265D01* X1937Y3241D02* X1943Y3235D01* X1931Y3246D02* Y3262D01* X1952Y3187D02* Y3212D01* X1971Y3087D02* Y3280D01* X1958Y3162D02* X1971D01* Y3087D02* Y3162D01* X1740Y3250D02* Y3269D01* X1664D02* X1740D01* Y3266D02* X1749D01* X1660Y3269D02* X1664D01* X1631D02* Y3286D01* X1611Y3269D02* Y3286D01* X1660Y3269D02* X1664D01* X1908Y3270D02* X1937Y3241D01* X1929Y2766D02* X1932D01* X1740Y3250D02* X1749D01* X1624Y3218D02* Y3262D01* X1906Y2764D02* Y2820D01* X2051Y2745D02* Y2757D01* X2050Y2744D02* X2056Y2750D01* X2031Y2743D02* Y2767D01* X2011Y2744D02* Y2758D01* X1991Y2745D02* Y2760D01* X1971Y2744D02* Y2761D01* X1951Y2742D02* Y2757D01* X1931Y2744D02* Y2767D01* X1911Y2749D02* Y2758D01* X1913Y2746D02* X2052D01* X1906Y2757D02* X1909Y2753D01* X1856Y2345D02* X1888Y2314D01* X1871Y2302D02* Y2330D01* X1811Y2326D02* X1875D01* X1888Y2302D02* Y2314D01* X1970Y2307D02* X2013D01* X1957Y2306D02* X2013D01* X2067Y2275D02* X2114D01* X2019D02* X2067D01* X1971Y2266D02* Y2307D01* X1957Y2286D02* X2013D01* X1989Y2266D02* X2013D01* X2067Y2223D02* Y2275D01* X2038Y2217D02* X2081D01* X2038Y2215D02* X2080D01* X2013Y2245D02* Y2307D01* X1957Y2257D02* Y2311D01* X1991Y2265D02* Y2307D01* X1830Y2302D02* X1888D01* X1811Y2306D02* X1888D01* X1957Y2266D02* X1971D01* X1871Y1967D02* Y2040D01* X1868Y2043D02* X1871Y2040D01* Y1962D02* Y1967D01* X1872Y1956D02* Y2039D01* X1871Y1962D02* Y1967D01* X1872Y1944D02* Y1956D01* X1871Y1886D02* Y1962D01* X1872Y1944D02* Y1956D01* X1769Y1886D02* X1871D01* X1831Y2385D02* X1845Y2371D01* X1851Y2302D02* Y2350D01* X1831Y2302D02* Y2385D01* X1811Y2286D02* X1830D01* X1811Y2266D02* X1830D01* Y2215D02* Y2302D01* X1811Y2257D02* Y2333D01* Y2252D02* Y2257D01* X1811Y2215D02* Y2378D01* X1811Y2252D02* Y2257D01* Y2215D02* Y2252D01* X1806Y2384D02* Y2440D01* X1790Y2366D02* X1846D01* X1790Y2346D02* X1855D01* X1786Y2378D02* Y2383D01* X1811Y2246D02* X1830D01* X1811Y2226D02* X1830D01* X1811Y2215D02* X1830D01* X1791Y2333D02* Y2380D01* X1790Y2333D02* Y2362D01* Y2333D02* X1811D01* X1832Y2174D02* Y2208D01* X1798Y2174D02* X1832D01* X1787Y2176D02* X1792D01* X1788Y2166D02* X1792D01* X1791Y2162D02* Y2176D01* X1792Y2162D02* Y2176D01* X1787Y2166D02* Y2176D01* X1852Y2044D02* X1867D01* X1851Y2043D02* X1868D01* X1820Y1927D02* X1865D01* X1820Y1893D02* Y1927D01* X1787Y2166D02* X1792Y2162D01* X1769Y1886D02* Y1915D01* X1670Y1977D02* Y2013D01* X1652Y1971D02* X1707D01* Y1967D02* Y1971D01* X1691Y1967D02* Y1971D01* X1660Y2120D02* Y2161D01* X1658Y2120D02* Y2159D01* X1662Y2080D02* Y2114D01* X1760Y1906D02* X1769D01* X1753Y1899D02* X1769Y1915D01* X1753Y1886D02* X1872D01* X1671Y1967D02* Y1971D01* X1652Y1967D02* X1707D01* X1591Y3269D02* Y3286D01* X1582D02* X1695D01* X1571Y3154D02* Y3278D01* X1410Y3425D02* X1436D01* X1551Y3154D02* Y3276D01* X1531Y3154D02* Y3276D01* X1511Y3154D02* Y3276D01* X1491Y3154D02* Y3276D01* X1471Y3154D02* Y3276D01* X1451Y3154D02* Y3276D01* X1431Y3154D02* Y3276D01* X1404Y3420D02* Y3430D01* X1304Y3426D02* X1404D01* X1297Y3413D02* X1405D01* X1311D02* Y3434D01* X1303Y3425D02* X1322Y3444D01* X1281Y3425D02* X1303D01* X1411Y3154D02* Y3276D01* X1319D02* X1560D01* X1391Y3154D02* Y3276D01* X1291Y3415D02* Y3425D01* X1371Y3154D02* Y3276D01* X1584Y3269D02* X1660D01* X1319Y3266D02* X1584D01* X1590Y3218D02* X1624D01* X1319Y3246D02* X1584D01* X1319Y3226D02* X1584D01* X1319Y3206D02* X1584D01* X1319Y3186D02* X1584D01* Y3178D02* Y3269D01* Y3167D02* Y3178D01* X1582Y3154D02* Y3178D01* X1351Y3154D02* Y3276D01* X1331Y3154D02* Y3276D01* X1319Y3155D02* Y3276D01* Y3166D02* X1582D01* X1319Y3154D02* X1582D01* X1283Y2590D02* X1317Y2556D01* X1268Y2546D02* X1317D01* X1268Y2586D02* X1287D01* X1268Y2566D02* X1307D01* X1317Y2530D02* Y2556D01* Y2526D02* Y2530D01* Y2526D02* Y2530D01* X1311Y2526D02* Y2561D01* X1291Y2526D02* Y2581D01* X1268Y2526D02* X1311D01* X1273Y3417D02* X1281Y3425D01* X965Y3266D02* X1051D01* X1071Y2923D02* Y2926D01* X1044Y2896D02* X1075Y2926D01* X1051Y3216D02* Y3433D01* X979Y3144D02* X1051Y3216D01* X1051Y2903D02* Y2926D01* X1173Y2837D02* Y2846D01* Y2812D02* Y2837D01* Y2812D02* Y2837D01* X1171Y2625D02* Y2844D01* X957Y3426D02* X1051D01* X343Y3406D02* X1051D01* X340Y3366D02* X1051D01* X328Y3386D02* X1051D01* X909Y3326D02* X1051D01* X342Y3346D02* X1051D01* X943Y3306D02* X1051D01* X958Y3286D02* X1051D01* X342Y2926D02* X1075D01* X322Y2906D02* X1055D01* X967Y3246D02* X1051D01* X964Y3226D02* X1051D01* X956Y3206D02* X1042D01* X1173Y2778D02* Y2812D01* Y2752D02* Y2778D01* X1268Y2590D02* X1283D01* X1173Y2752D02* Y2778D01* Y2719D02* Y2752D01* Y2693D02* Y2719D01* Y2693D02* Y2719D01* X1271Y2526D02* Y2590D01* X1268Y2575D02* Y2590D01* Y2575D02* Y2590D01* Y2526D02* Y2575D01* X1220Y2559D02* X1261D01* X1179D02* X1220D01* X1173Y2660D02* Y2693D01* Y2634D02* Y2660D01* Y2634D02* Y2660D01* X1164Y2606D02* X1173D01* Y2601D02* Y2634D01* Y2575D02* Y2601D01* Y2575D02* Y2601D01* X1144Y2586D02* X1173D01* Y2526D02* Y2575D01* X1124Y2566D02* X1173D01* X1104Y2546D02* X1173D01* X1418Y2428D02* X1457Y2389D01* X1395Y2406D02* X1440D01* X1457Y2373D02* Y2389D01* X1451Y2373D02* Y2395D01* X1415Y2426D02* X1420D01* X1431Y2373D02* Y2415D01* X1427Y2315D02* Y2366D01* X1416Y2205D02* X1452D01* X1411Y2373D02* Y2423D01* X1391Y2373D02* Y2403D01* X1409Y2147D02* Y2257D01* X1375Y2386D02* X1457D01* X1367Y2379D02* X1414Y2426D01* X1379Y2315D02* X1427D01* X1373Y2373D02* X1457D01* X1367Y2366D02* X1373D01* X1367Y2346D02* X1373D01* X1367Y2326D02* X1373D01* Y2257D02* X1409D01* X1367Y2246D02* X1409D01* X1367Y2226D02* X1409D01* X1367Y2306D02* X1373D01* X1367Y2286D02* X1373D01* X1391Y2102D02* Y2257D01* X1452Y2153D02* Y2205D01* X1409Y2147D02* X1457D01* Y2101D02* Y2147D01* X1434Y2106D02* X1457D01* X1451Y2095D02* Y2147D01* X1431Y2108D02* Y2147D01* X1411Y2112D02* Y2147D01* X1446Y2090D02* X1457Y2101D01* X1395Y1914D02* X1421Y1888D01* X1386Y1935D02* Y1964D01* X1367Y2206D02* X1409D01* X1367Y2186D02* X1409D01* X1372Y2126D02* X1457D01* X1367Y2146D02* X1457D01* X1367Y2166D02* X1409D01* X1366Y2106D02* X1396D01* X1317Y2086D02* X1383D01* X1316Y1926D02* X1388D01* X1316Y1906D02* X1403D01* X1316Y1886D02* X1421D01* X1316Y1946D02* X1386D01* X1373Y2257D02* Y2373D01* X1308Y2326D02* X1312D01* X1367Y2266D02* X1373D01* X1288Y2306D02* X1312D01* X1285Y2303D02* X1312Y2330D01* X1287Y2286D02* X1312D01* X1371Y2133D02* Y2383D01* X1367Y2142D02* Y2379D01* X1287Y2186D02* X1312D01* Y2142D02* Y2330D01* X1311Y2141D02* Y2329D01* X1291Y2125D02* Y2309D01* X1151Y2526D02* Y2593D01* X1084Y2526D02* X1162Y2603D01* X1284Y2266D02* X1312D01* X1084Y2526D02* X1173D01* X1131D02* Y2573D01* X1111Y2526D02* Y2553D01* X1091Y2526D02* Y2533D01* X1271Y2246D02* X1312D01* X1272Y2226D02* X1312D01* X1284Y2206D02* X1312D01* X1271Y2227D02* Y2247D01* X1289Y2126D02* X1308D01* X1284Y2166D02* X1312D01* X1299Y2119D02* X1309Y2109D01* X1371Y2081D02* Y2117D01* X1351Y2079D02* Y2095D01* X1339Y1966D02* X1342D01* X1331Y2078D02* Y2094D01* X1271Y2146D02* X1312D01* X1271Y2128D02* Y2147D01* X1251Y2128D02* Y2134D01* X1171Y2146D02* X1189D01* X1171Y2135D02* Y2147D01* X1177Y2128D02* X1280D01* X1191D02* Y2144D01* X1211Y2128D02* Y2132D01* X931Y3963D02* Y4094D01* X928Y3966D02* Y4068D01* X898Y3963D02* X942D01* X895Y3966D02* X928D01* X911Y4068D02* Y4094D01* X891Y4068D02* Y4094D01* X888Y4017D02* Y4061D01* X1031Y3959D02* Y4094D01* X1011Y3959D02* Y4094D01* X991Y3959D02* Y4094D01* X971Y3959D02* Y4094D01* X951Y3959D02* Y4094D01* X895Y3966D02* X898Y3963D01* X942D02* X946Y3959D01* X871Y4068D02* Y4094D01* X851Y4068D02* Y4094D01* X852Y4068D02* X928D01* X848D02* X852D01* X848D02* X852D01* X841D02* X848D01* X888Y4017D02* X922D01* X888Y3972D02* Y4017D01* X861Y3936D02* Y3968D01* X848Y3975D02* X852D01* X861Y3846D02* Y3877D01* X952Y3737D02* Y3764D01* X951Y3709D02* Y3764D01* X931Y3709D02* Y3764D01* X911Y3709D02* Y3764D01* X891Y3709D02* Y3764D01* X871Y3709D02* Y3764D01* X971Y3693D02* X982Y3682D01* X959Y3686D02* X977D01* X974Y3674D02* X982Y3682D01* X959Y3674D02* Y3709D01* X971Y3674D02* Y3692D01* X836Y3839D02* X862D01* X794Y3826D02* X862D01* Y3764D02* X952D01* X820Y3806D02* X862D01* Y3764D02* Y3839D01* X834Y3786D02* X862D01* X842Y3766D02* X862D01* X845Y3746D02* X952D01* X845Y3726D02* X953D01* X862Y3709D02* X959D01* X839Y3706D02* X862D01* X829Y3686D02* X862D01* X831Y4082D02* Y4094D01* X820D02* X826Y4088D01* X682Y3946D02* X702D01* X679Y3966D02* X702D01* Y3938D02* Y3983D01* X671Y3978D02* Y3983D01* X682Y3928D02* Y3946D01* X711Y3831D02* Y3869D01* X680Y3866D02* X714D01* X691Y3820D02* Y3983D01* X682Y3926D02* X699D01* X678Y3906D02* X698D01* X668Y3983D02* X702D01* X630Y3937D02* X676D01* X577Y3928D02* Y3946D01* X584Y3937D02* X630D01* X671Y3884D02* Y3896D01* X670Y3886D02* X702D01* X591Y3888D02* Y3892D01* X824Y3851D02* X836Y3839D01* X809Y3851D02* X824D01* X801Y3846D02* X829D01* X771Y3835D02* Y3839D01* X731Y3836D02* Y3850D01* X682Y3846D02* X739D01* X751Y3838D02* Y3842D01* X831Y3791D02* Y3844D01* X811Y3814D02* Y3851D01* X748Y3740D02* X839D01* X791Y3827D02* Y3843D01* X682Y3833D02* Y3852D01* X748Y3740D02* Y3831D01* X630Y3843D02* X676D01* X682Y3826D02* X702D01* X653Y3786D02* X662D01* X584Y3843D02* X630D01* X577Y3833D02* Y3852D01* X630Y3787D02* Y3843D01* X657Y3740D02* X748D01* X651Y3754D02* Y3785D01* Y3699D02* Y3726D01* X611Y3700D02* Y3784D01* X591Y3687D02* Y3797D01* X631Y3704D02* Y3781D01* X1038Y3536D02* Y3562D01* X973Y3546D02* X1038D01* X1031Y3528D02* Y3558D01* X978Y3526D02* X1030D01* X1027Y3502D02* Y3512D01* X978Y3506D02* X1027D01* X1011Y3176D02* Y3550D01* X991Y3156D02* Y3549D01* X978Y3491D02* Y3541D01* X959Y3674D02* X974D01* X862Y3651D02* Y3709D01* X811Y3666D02* X862D01* X774Y3646D02* X858D01* X670Y3586D02* X853D01* X681Y3566D02* X854D01* X969Y3549D02* X1000D01* X969D02* X978Y3541D01* X940Y3516D02* X971D01* X854Y3553D02* Y3584D01* X842Y3541D02* X854Y3553D01* X849Y3516D02* X880D01* X1038Y3447D02* Y3478D01* X973Y3486D02* X1031D01* X966Y3466D02* X1038D01* X966Y3446D02* X1039D01* X966Y3479D02* X978Y3491D01* X966Y3435D02* Y3479D01* X910Y3458D02* X959D01* X1031Y3196D02* Y3486D01* X971Y3144D02* Y3485D01* X943Y3412D02* X966Y3435D01* X951Y3296D02* Y3420D01* X910Y3418D02* Y3458D01* X931Y3316D02* Y3412D01* X861Y3458D02* X910D01* X854Y3435D02* X877Y3412D01* X891Y3329D02* Y3412D01* X877D02* X943D01* X854Y3435D02* Y3479D01* X842Y3491D02* X854Y3479D01* X871Y3328D02* Y3417D01* X911Y3325D02* Y3412D01* X886Y3248D02* X961D01* X886D02* Y3323D01* X811Y3248D02* X886D01* Y3173D02* Y3248D01* X851Y3634D02* Y3839D01* X748Y3649D02* Y3740D01* X831Y3309D02* Y3690D01* X811Y3282D02* Y3666D01* X682Y3632D02* Y3651D01* X680Y3666D02* X685D01* X682Y3646D02* X722D01* X791Y3144D02* Y3653D01* X771Y3144D02* Y3646D01* X751Y3144D02* Y3643D01* X711Y3144D02* Y3650D01* X691Y3148D02* Y3661D01* X731Y3144D02* Y3644D01* X630Y3642D02* X676D01* X630D02* Y3697D01* X577Y3632D02* Y3651D01* X584Y3642D02* X630D01* X682Y3626D02* X849D01* X675Y3606D02* X848D01* X571Y3268D02* Y3983D01* X671Y3585D02* Y3600D01* X851Y3550D02* Y3590D01* X682Y3546D02* X847D01* X682Y3526D02* X842D01* X674Y3506D02* X842D01* X682Y3534D02* Y3553D01* X842Y3491D02* Y3541D01* X851Y3322D02* Y3482D01* X652Y3486D02* X847D01* X811Y3144D02* Y3214D01* X671Y3168D02* Y3502D01* X651Y3188D02* Y3486D01* X631Y3208D02* Y3481D01* X630Y3543D02* X676D01* X584D02* X630D01* Y3488D02* Y3543D01* X591Y3588D02* Y3597D01* X577Y3534D02* Y3553D01* X593Y3246D02* X804D01* X573Y3266D02* X806D01* X613Y3226D02* X807D01* X611Y3228D02* Y3485D01* X591Y3248D02* Y3498D01* X562Y3277D02* X696Y3144D01* X542Y3983D02* X592D01* X542Y3966D02* X581D01* X536Y3946D02* X577D01* X531Y3771D02* Y3938D01* X525Y3922D02* Y3929D01* Y3926D02* X577D01* X518Y3922D02* X525D01* X403Y4049D02* X449Y4094D01* X39D02* X449D01* X486Y3906D02* X582D01* X431Y4077D02* Y4094D01* X39Y4086D02* X440D01* X39Y4066D02* X420D01* X511Y3804D02* Y3917D01* X491Y3818D02* Y3908D01* X471Y3823D02* Y3904D01* X387Y3904D02* X470Y3904D01* X451Y3819D02* Y3904D01* X534Y3766D02* X654D01* X521Y3786D02* X607D01* X537Y3746D02* X651D01* X537Y3726D02* X652D01* X509Y3806D02* X585D01* X537Y3706D02* X657D01* X537Y3698D02* X541D01* Y3686D02* X591D01* X537Y3698D02* Y3748D01* X442Y3698D02* Y3721D01* X439Y3698D02* X442D01* X376Y3866D02* X579D01* X356Y3886D02* X590D01* X385Y3846D02* X577D01* X387Y3826D02* X578D01* X431Y3807D02* Y3904D01* X385Y3806D02* X431D01* X375Y3786D02* X419D01* X381Y3706D02* X442D01* X387Y3686D02* X439D01* X355Y3766D02* X416D01* X335Y3746D02* X420D01* X368Y3726D02* X435D01* X411Y4057D02* Y4094D01* X391Y4049D02* Y4094D01* X371Y4049D02* Y4094D01* X315Y4049D02* X403Y4049D01* X351Y4049D02* Y4094D01* X331Y4049D02* Y4094D01* X311Y4049D02* Y4094D01* X371Y3872D02* Y3904D01* X315D02* X387D01* X351Y3889D02* Y3904D01* X291Y4049D02* Y4094D01* X271Y4049D02* Y4094D01* X331Y3897D02* Y3904D01* X251Y4049D02* Y4094D01* X242Y4049D02* X315D01* X39Y4046D02* X242D01* X39Y4026D02* X242D01* Y3976D02* Y4049D01* X39Y4006D02* X242D01* X39Y3986D02* X242D01* X39Y3966D02* X242D01* X39Y3946D02* X242D01* Y3904D02* X315D01* X242D02* Y3976D01* X39Y3926D02* X242D01* X39Y3906D02* X242D01* X311Y3899D02* Y3904D01* X291Y3895D02* Y3904D01* X331Y3747D02* Y3756D01* X311Y3749D02* Y3754D01* X271Y3884D02* Y3904D01* X251Y3861D02* Y3904D01* X291Y3745D02* Y3758D01* X371Y3722D02* Y3781D01* X351Y3739D02* Y3764D01* X315Y3676D02* X381D01* X271Y3734D02* Y3768D01* X251Y3711D02* Y3791D01* X315Y3676D02* Y3742D01* X39Y3886D02* X274D01* X39Y3866D02* X254D01* X39Y3786D02* X255D01* X39Y3766D02* X275D01* X39Y3846D02* X245D01* X39Y3826D02* X242D01* X39Y3806D02* X245D01* X39Y3746D02* X295D01* X249Y3676D02* X315D01* X39Y3726D02* X262D01* X39Y3706D02* X249D01* X39Y3686D02* X243D01* X541Y3622D02* Y3698D01* Y3666D02* X580D01* X541Y3646D02* X577D01* X541Y3626D02* X578D01* X541Y3618D02* Y3622D01* X439D02* Y3698D01* X541Y3618D02* Y3622D01* X551Y3285D02* Y3983D01* X541Y3606D02* X584D01* X541Y3586D02* X589D01* X541Y3542D02* Y3618D01* X490Y3582D02* X535D01* X445D02* X490D01* X387Y3666D02* X439D01* X381Y3646D02* X439D01* Y3618D02* Y3622D01* X367Y3626D02* X439D01* Y3618D02* Y3622D01* X333Y3606D02* X439D01* Y3542D02* Y3618D01* X431Y3289D02* Y3730D01* X39Y3586D02* X439D01* X411Y3289D02* Y3904D01* X391Y3289D02* Y3904D01* X371Y3289D02* Y3631D01* X541Y3566D02* X579D01* X541Y3546D02* X577D01* X531Y3289D02* Y3542D01* X511Y3289D02* Y3542D01* X490Y3548D02* Y3582D01* X491Y3289D02* Y3542D01* X471Y3289D02* Y3542D01* X548Y3286D02* X814D01* X519Y3212D02* X632Y3099D01* X451Y3289D02* Y3542D01* X511Y3192D02* Y3212D01* X39Y3526D02* X578D01* X39Y3506D02* X585D01* X343Y3486D02* X608D01* X343Y3466D02* X854D01* X39Y3566D02* X439D01* X39Y3546D02* X439D01* Y3542D02* X541D01* X343Y3446D02* X854D01* X343Y3426D02* X863D01* X337Y3326D02* X862D01* X326Y3289D02* X535D01* X319Y3306D02* X829D01* X326Y3212D02* X519D01* X331Y3503D02* Y3606D01* X315Y3610D02* Y3676D01* X311Y3503D02* Y3604D01* X237Y3503D02* X343D01* X271D02* Y3618D01* X251Y3503D02* Y3641D01* X291Y3503D02* Y3608D01* X351Y3289D02* Y3614D01* X343Y3398D02* Y3503D01* X237Y3398D02* Y3503D01* X231Y3188D02* Y4094D01* X211Y3188D02* Y4094D01* X191Y3188D02* Y4094D01* X39Y3666D02* X243D01* X39Y3646D02* X249D01* X39Y3626D02* X263D01* X39Y3606D02* X297D01* X171Y3188D02* Y4094D01* X151Y3188D02* Y4094D01* X39Y3486D02* X237D01* X131Y3188D02* Y4094D01* X111Y3188D02* Y4094D01* X91Y3188D02* Y4094D01* X71Y3186D02* Y4094D01* X51Y3170D02* Y4094D01* X39Y3158D02* Y4094D01* X312Y3398D02* X343D01* X331Y3382D02* Y3398D01* X251Y3386D02* Y3398D01* X237D02* X268D01* X311Y3298D02* Y3302D01* X331Y3289D02* Y3318D01* X251Y3286D02* Y3314D01* Y3188D02* Y3214D01* X39Y3466D02* X237D01* X39Y3446D02* X237D01* X39Y3426D02* X237D01* X39Y3386D02* X252D01* X39Y3406D02* X237D01* X39Y3366D02* X240D01* X39Y3346D02* X238D01* X39Y3326D02* X243D01* X39Y3306D02* X261D01* X39Y3286D02* X252D01* X39Y3266D02* X240D01* X39Y3246D02* X238D01* X39Y3226D02* X243D01* X951Y3144D02* Y3200D01* X939Y3186D02* X1022D01* X1031Y2713D02* Y2926D01* X931Y3144D02* Y3180D01* X911Y3144D02* Y3171D01* X871Y3144D02* Y3168D01* X891Y3144D02* Y3167D01* X1011Y2693D02* Y2926D01* X991Y2673D02* Y2926D01* X971Y2653D02* Y2926D01* X951Y2633D02* Y2926D01* X931Y2613D02* Y2926D01* X911Y2593D02* Y2926D01* X891Y2573D02* Y2926D01* X851Y3144D02* Y3174D01* X673Y3166D02* X1002D01* X696Y3144D02* X979D01* X693Y3146D02* X982D01* X831Y3144D02* Y3187D01* X633Y3206D02* X816D01* X653Y3186D02* X833D01* X871Y2553D02* Y2926D01* X851Y2533D02* Y2926D01* X831Y2513D02* Y2926D01* X811Y2492D02* Y2926D01* X771Y2509D02* Y2926D01* X751Y2509D02* Y2926D01* X1036Y2717D02* Y2875D01* X731Y2509D02* Y2926D01* X814Y2496D02* X1036Y2717D01* X772Y2506D02* X825D01* X711Y2509D02* Y2926D01* X691Y2509D02* Y2926D01* X671Y2509D02* Y2926D01* X772Y2486D02* X808D01* X772Y2466D02* X806D01* X772Y2446D02* X806D01* X772Y2426D02* X806D01* X519Y2826D02* X1036D01* X490Y2846D02* X1036D01* X547Y2786D02* X1036D01* X536Y2806D02* X1036D01* X555Y2746D02* X1036D01* X553Y2766D02* X1036D01* X553Y2726D02* X1036D01* X548Y2706D02* X1025D01* X538Y2686D02* X1005D01* X523Y2666D02* X985D01* X668Y2509D02* X772D01* X497Y2646D02* X965D01* X531Y2506D02* X668D01* X611Y3088D02* Y3119D01* X591Y3088D02* Y3139D01* X631Y3088D02* Y3099D01* X551Y3088D02* Y3179D01* X547Y3166D02* X564D01* X571Y3088D02* Y3159D01* X651Y2487D02* Y2926D01* X631Y2487D02* Y2926D01* X611Y2486D02* Y2926D01* X591Y2470D02* Y2926D01* X571Y2450D02* Y2926D01* X551Y2771D02* Y2926D01* X531Y3188D02* Y3199D01* X544Y3146D02* X584D01* X534Y3186D02* X544D01* X491Y3188D02* Y3212D01* X471Y3188D02* Y3212D01* X451Y3188D02* Y3212D01* X531Y3088D02* Y3132D01* X511Y3088D02* Y3128D01* X491Y3088D02* Y3132D01* X471Y3088D02* Y3132D01* X451Y3088D02* Y3132D01* X668Y2487D02* Y2509D01* X622Y2487D02* X668D01* X531Y2813D02* Y2926D01* Y2506D02* Y2676D01* X543Y2486D02* X613D01* X634Y2426D02* X668D01* X546Y2466D02* X588D01* X634Y2426D02* X668D01* X551Y2430D02* Y2718D01* X540Y2446D02* X568D01* X524Y2426D02* X548D01* X511Y2833D02* Y2926D01* X491Y2846D02* Y2926D01* X471Y2853D02* Y2926D01* X442Y2744D02* X548D01* X451Y2857D02* Y2926D01* X442Y2744D02* Y2850D01* Y2638D02* Y2744D01* X511Y2519D02* Y2656D01* X491Y2523D02* Y2643D01* X471Y2519D02* Y2636D01* X451Y2504D02* Y2632D01* X445Y2426D02* X461D01* X791Y2412D02* Y2926D01* X772Y2407D02* Y2509D01* X806Y2408D02* Y2475D01* X742Y2404D02* X768D01* X691Y2401D02* Y2404D01* X751Y2399D02* Y2404D01* X691Y2301D02* Y2313D01* X668Y2404D02* X698D01* X594Y2386D02* X676D01* X533Y2326D02* X677D01* X671Y2377D02* Y2404D01* X668D02* Y2426D01* X614Y2406D02* X668D01* X533Y2286D02* X676D01* X446Y2306D02* X702D01* X536Y2221D02* X682D01* X671Y2282D02* Y2337D01* X536Y2282D02* X674D01* X671Y2123D02* Y2221D01* X751Y2129D02* Y2215D01* X752Y2128D02* Y2216D01* X734Y2206D02* X752D01* X731Y2138D02* Y2206D01* X691Y2131D02* Y2213D01* X711Y2139D02* Y2205D01* X691Y2031D02* Y2043D01* X671Y2007D02* Y2054D01* Y1939D02* Y1967D01* X691Y1939D02* Y1943D01* X523Y2186D02* X752D01* X521Y2206D02* X706D01* X545Y2146D02* X752D01* X540Y2166D02* X752D01* X543Y2126D02* X685D01* X542Y2123D02* X682D01* X542Y2054D02* X679D01* X544Y2046D02* X687D01* X541Y1946D02* X687D01* X668Y1939D02* X698D01* X545Y2026D02* X685D01* X538Y2006D02* X671D01* X526Y1966D02* X672D01* X574Y2366D02* X668D01* X547Y2339D02* X634Y2426D01* X554Y2346D02* X669D01* X531Y2410D02* Y2433D01* Y2288D02* Y2324D01* X651Y2282D02* Y2426D01* X631Y2282D02* Y2423D01* X611Y2282D02* Y2403D01* X591Y2282D02* Y2383D01* X571Y2282D02* Y2363D01* X551Y2282D02* Y2343D01* X525Y2403D02* X600Y2478D01* X471Y2410D02* Y2420D01* X520Y2406D02* X528D01* X511Y2410D02* Y2420D01* X451Y2395D02* Y2435D01* X445Y2406D02* X464D01* X437Y2386D02* X445D01* X511Y2301D02* Y2311D01* X451Y2286D02* Y2326D01* X442Y2326D02* X451D01* X471Y2301D02* Y2311D01* X651Y2123D02* Y2221D01* X631Y2123D02* Y2221D01* X611Y2123D02* Y2221D01* X591Y2123D02* Y2221D01* X571Y2123D02* Y2221D01* X551Y2123D02* Y2221D01* X531Y2179D02* Y2215D01* X546Y1926D02* X668D01* X542Y1906D02* X668D01* X530Y1886D02* X668D01* X531Y1961D02* Y1997D01* X511Y2192D02* Y2202D01* X445Y2206D02* X464D01* X517Y1986D02* X668D01* X471Y2192D02* Y2202D01* X451Y2177D02* Y2217D01* X442Y2286D02* X451D01* X444Y2186D02* X461D01* X471Y1974D02* Y1984D01* X445Y1986D02* X467D01* X511Y1974D02* Y1984D01* X451Y1959D02* Y1999D01* X444Y1966D02* X459D01* X443Y1886D02* X455D01* X431Y3188D02* Y3212D01* X411Y3188D02* Y3212D01* X431Y3088D02* Y3132D01* X411Y3088D02* Y3132D01* X391Y3188D02* Y3212D01* X371Y3188D02* Y3212D01* X351Y3188D02* Y3212D01* X431Y2856D02* Y2926D01* X391Y3088D02* Y3132D01* X411Y2853D02* Y2926D01* X391Y2845D02* Y2926D01* X371Y3088D02* Y3132D01* Y2832D02* Y2926D01* X319Y3206D02* X524D01* X80Y3188D02* X498D01* X85Y3126D02* X604D01* X65Y3106D02* X624D01* X331Y3188D02* Y3212D01* X311Y3188D02* Y3202D01* X91Y3132D02* X498D01* X351Y3088D02* Y3132D01* X200Y3088D02* X636D01* X351Y2811D02* Y2926D01* X331Y3088D02* Y3132D01* X311Y3088D02* Y3132D01* X299Y2883D02* X342Y2926D01* X302Y2886D02* X1038D01* X336Y2744D02* X442D01* X310Y2626D02* X945D01* X331Y2765D02* Y2915D01* X311Y2625D02* Y2895D01* X331Y2605D02* Y2724D01* X350Y2586D02* X905D01* X330Y2606D02* X925D01* X359Y2566D02* X885D01* X351Y2584D02* Y2678D01* X299Y2866D02* X1036D01* X299Y2846D02* X394D01* X299Y2826D02* X365D01* X299Y2806D02* X348D01* X299Y2786D02* X338D01* X299Y2766D02* X332D01* X299Y2746D02* X330D01* X299Y2666D02* X361D01* X299Y2646D02* X387D01* X299Y2637D02* X351Y2586D01* X299Y2726D02* X331D01* X299Y2706D02* X336D01* X299Y2686D02* X346D01* X291Y3188D02* Y3198D01* X271Y3188D02* Y3201D01* X291Y3088D02* Y3132D01* X271Y3088D02* Y3132D01* X251Y3088D02* Y3132D01* X231Y3088D02* Y3132D01* X211Y3088D02* Y3132D01* X191Y3086D02* Y3132D01* X171Y3072D02* Y3132D01* X151Y3052D02* Y3132D01* X131Y3032D02* Y3132D01* X39Y3206D02* X261D01* X62Y3104D02* X91Y3132D01* X39Y3186D02* X71D01* X39Y3158D02* X61Y3179D01* X39Y3166D02* X47D01* X112Y3013D02* X177Y3078D01* X62Y3086D02* X191D01* X62Y3066D02* X165D01* X111Y3012D02* Y3132D01* X62Y3046D02* X145D01* X62Y3026D02* X125D01* X62Y3006D02* X107D01* X62Y2986D02* X102D01* X62Y2966D02* X102D01* X62Y2946D02* X102D01* X62Y2926D02* X102D01* X62Y2906D02* X102D01* X62Y2886D02* X102D01* X299Y2637D02* Y2883D01* X62Y2866D02* X102D01* X62Y2846D02* X102D01* X62Y2826D02* X102D01* X62Y2806D02* X102D01* X62Y2786D02* X102D01* X62Y2766D02* X102D01* X62Y2746D02* X102D01* X62Y2726D02* X102D01* X62Y2706D02* X102D01* X62Y2686D02* X102D01* X62Y2666D02* X102D01* X62Y2646D02* X102D01* X62Y2626D02* X102D01* X62Y2606D02* X102D01* X62Y2586D02* X102D01* X62Y2566D02* X102D01* X431Y2452D02* Y2632D01* X409Y2466D02* X439D01* X436Y2446D02* X444D01* X413Y2366D02* X439D01* X391Y2469D02* Y2644D01* X371Y2465D02* Y2657D01* X411Y2465D02* Y2636D01* X431Y2343D02* Y2379D01* X428Y2346D02* X441D01* X427Y2266D02* X441D01* X431Y2234D02* Y2270D01* X411Y2356D02* Y2366D01* Y2247D02* Y2257D01* X359Y2546D02* X865D01* X359Y2526D02* X845D01* X359Y2506D02* X453D01* X359Y2486D02* X441D01* X359Y2466D02* X375D01* X359Y2366D02* X371D01* X371Y2356D02* Y2366D01* Y2247D02* Y2257D01* X437Y2226D02* X445D01* X436Y2166D02* X444D01* X430Y2126D02* X441D01* X431Y2125D02* Y2161D01* X433Y2123D02* X442D01* X433Y2054D02* X443D01* X438Y2006D02* X446D01* X434Y1946D02* X443D01* X431Y2016D02* Y2052D01* Y1907D02* Y1943D01* X432Y1906D02* X442D01* X414Y2246D02* X439D01* X425Y2046D02* X440D01* X407Y2146D02* X439D01* X411Y2138D02* Y2148D01* X324Y2146D02* X377D01* X418Y2026D02* X439D01* X397Y1926D02* X439D01* X411Y2029D02* Y2039D01* Y1920D02* Y1930D01* X324Y1926D02* X387D01* X359Y2457D02* Y2565D01* Y2348D02* Y2373D01* Y2257D02* Y2264D01* Y2257D02* X370Y2246D01* X102Y2548D02* Y2990D01* X324Y2206D02* X328D01* X371Y2138D02* Y2148D01* X324Y2166D02* X349D01* X324Y2126D02* X354D01* X324Y2210D02* X339Y2195D01* X324Y2186D02* X340D01* X351Y2123D02* Y2163D01* X91Y2537D02* Y3132D01* X62Y2508D02* X102Y2548D01* Y2266D02* X121D01* X62Y2546D02* X100D01* X71Y2517D02* Y3113D01* X62Y2508D02* Y3104D01* Y2526D02* X80D01* X102Y2246D02* X121D01* X102Y2226D02* X121D01* X102Y2206D02* X121D01* X102Y2186D02* X121D01* X102Y2166D02* X121D01* X102Y2146D02* X121D01* X351Y2014D02* Y2054D01* X324Y2046D02* X359D01* X371Y2029D02* Y2039D01* X324Y2026D02* X366D01* X324Y2106D02* X342D01* X324Y2086D02* X339D01* X324Y2066D02* X343D01* X351Y1905D02* Y1945D01* X324Y1946D02* X350D01* X371Y1920D02* Y1930D01* X324Y2006D02* X346D01* X324Y1986D02* X339D01* X324Y1966D02* X340D01* X102Y2126D02* X121D01* X102Y2106D02* X121D01* X102Y2086D02* X121D01* X102Y2066D02* X121D01* X102Y2046D02* X121D01* X102Y2026D02* X121D01* X102Y2006D02* X121D01* X102Y1986D02* X121D01* X102Y1966D02* X121D01* X324Y1906D02* X352D01* X102Y1946D02* X121D01* X102Y1926D02* X121D01* X102Y1906D02* X121D01* X2071Y1558D02* Y1591D01* X2018D02* X2119D01* X2051Y1558D02* Y1591D01* X2012Y1558D02* X2119D01* X2031D02* Y1591D01* X2012D02* X2018D01* X2011Y1558D02* Y1591D01* X2070Y1516D02* Y1552D01* Y1516D02* X2121D01* X2070Y1480D02* Y1516D01* X2018Y1474D02* X2119D01* X2071Y1397D02* Y1474D01* X2051Y1417D02* Y1474D01* X2031Y1437D02* Y1474D01* X1938Y1591D02* X2018D01* X1938Y1586D02* X2119D01* X2012Y1558D02* X2018D01* X1938Y1566D02* X2119D01* X1991Y1558D02* Y1591D01* X1872Y1885D02* Y1944D01* X1971Y1558D02* Y1591D01* X2012Y1474D02* X2018D01* X1995Y1474D02* X2079Y1389D01* X1995Y1474D02* X2018D01* X1951Y1558D02* Y1591D01* X1938Y1558D02* Y1591D01* Y1558D02* X2012D01* X2023Y1446D02* X2101D01* X2003Y1466D02* X2112D01* X2063Y1406D02* X2101D01* X2043Y1426D02* X2101D01* X2082Y1386D02* X2101D01* X2011Y1457D02* Y1474D01* X2089Y1366D02* X2101D01* X2089Y1346D02* X2101D01* X1971Y1349D02* Y1400D01* X1951Y1346D02* Y1420D01* X1988Y1346D02* X2020D01* X1932Y1406D02* X1965D01* X1925Y1426D02* X1945D01* X1931Y1413D02* Y1441D01* X1920Y1431D02* X1929Y1441D01* X1936Y1436D02* X2020Y1351D01* X1926Y1386D02* X1985D01* X1904Y1366D02* X2005D01* X1904Y1368D02* X1910Y1374D01* X1904Y1346D02* X1952D01* X1872Y1776D02* Y1801D01* X1768D02* X1872D01* X1871Y1768D02* Y1801D01* X1872Y1768D02* Y1776D01* X1851Y1768D02* Y1801D01* X1768Y1776D02* Y1801D01* X1872Y1768D02* Y1776D01* X1872Y1764D02* Y1768D01* X1831D02* Y1801D01* X1820Y1726D02* Y1762D01* X1811Y1768D02* Y1801D01* X1791Y1768D02* Y1801D01* X1771Y1768D02* Y1801D01* X1762Y1885D02* X1872D01* X1762Y1866D02* Y1885D01* X1751Y1866D02* X1762D01* X1751Y1866D02* X1762D01* X1753Y1875D02* Y1899D01* X1768Y1786D02* X1872D01* X1768Y1768D02* Y1776D01* Y1768D02* X1872D01* X1768D02* Y1776D01* Y1764D02* Y1768D01* Y1764D02* Y1768D01* X1702Y1474D02* X1731D01* X1638Y1516D02* X1702D01* X1638Y1466D02* X1731D01* X1638Y1446D02* X1731D01* X1702Y1474D02* Y1516D01* X1638Y1506D02* X1702D01* X1638Y1486D02* X1702D01* X1638Y1426D02* X1731D01* X1638Y1406D02* X1731D01* X1638Y1386D02* X1731D01* X1671Y1349D02* Y1516D01* X1651Y1346D02* Y1516D01* X1688Y1346D02* X1731D01* X1611Y1673D02* Y1702D01* X1608D02* X1612D01* Y1674D02* X1620D01* X1608Y1686D02* X1612D01* Y1674D02* Y1702D01* X1608Y1691D02* Y1702D01* Y1679D02* Y1691D01* X1638Y1366D02* X1731D01* X1609Y1673D02* X1620D01* X1638Y1346D02* X1652D01* X1608Y1620D02* Y1691D01* X1609Y1620D02* Y1673D01* X2089Y1326D02* X2101D01* X2014D02* X2020D01* X2089Y1306D02* X2101D01* X2089Y1286D02* X2101D01* X2011Y1329D02* Y1360D01* X1991Y1345D02* Y1380D01* X2020Y1311D02* Y1351D01* X2089Y940D02* Y1365D01* Y1266D02* X2101D01* X2089Y1246D02* X2101D01* X2020Y1211D02* Y1282D01* X2013Y1266D02* X2020D01* X2011Y1229D02* Y1265D01* X1970Y1297D02* Y1343D01* X1931Y1333D02* Y1397D01* X1924Y1297D02* X1970D01* X1904Y1326D02* X1926D01* X1904Y1306D02* X1918D01* X1904Y1286D02* X1919D01* X1904Y1266D02* X1927D01* X1991Y1245D02* Y1249D01* X1931Y1233D02* Y1261D01* X2089Y1226D02* X2101D01* X2089Y1206D02* X2101D01* X2089Y1186D02* X2101D01* X2089Y1166D02* X2101D01* X2089Y1146D02* X2101D01* X2014Y1226D02* X2020D01* X2089Y1126D02* X2101D01* X2089Y1106D02* X2101D01* X2089Y1086D02* X2101D01* X2089Y1066D02* X2101D01* X2020Y1011D02* Y1082D01* X2013Y1066D02* X2020D01* X2089Y1046D02* X2101D01* X1988Y1246D02* X2020D01* X1904D02* X1952D01* X1910Y1206D02* X1918D01* X1904Y1226D02* X1926D01* X1867Y1066D02* X1927D01* X2011Y1029D02* Y1065D01* X1988Y1046D02* X2020D01* X1991Y1045D02* Y1049D01* X1931Y1033D02* Y1061D01* X1722Y1306D02* X1731D01* X1714Y1326D02* X1731D01* X1721Y1286D02* X1731D01* X1713Y1266D02* X1731D01* X1711Y1329D02* Y1474D01* X1691Y1345D02* Y1516D01* X1711Y1229D02* Y1265D01* X1911Y1205D02* Y1375D01* X1904Y1212D02* Y1368D01* Y1212D02* X1918Y1198D01* X1731Y922D02* Y1474D01* X1714Y1226D02* X1731D01* X1722Y1206D02* X1731D01* X1691Y1245D02* Y1249D01* X1670Y1297D02* X1716D01* X1670D02* Y1343D01* X1638Y1338D02* Y1516D01* X1688Y1246D02* X1731D01* X1638Y1238D02* Y1256D01* Y1246D02* X1652D01* X1867Y1166D02* X1920Y1114D01* X1867Y1146D02* X1888D01* X1867Y1126D02* X1908D01* X1867Y1106D02* X1918D01* X1721Y1186D02* X1731D01* X1713Y1166D02* X1731D01* X1722Y1106D02* X1731D01* X1911Y217D02* Y1122D01* X1891Y217D02* Y1142D01* X1867Y1086D02* X1919D01* X1871Y217D02* Y1162D01* X1867Y725D02* Y1166D01* X1721Y1086D02* X1731D01* X1688Y1146D02* X1731D01* X1714Y1126D02* X1731D01* X1713Y1066D02* X1731D01* X1711Y1129D02* Y1165D01* X1691Y1145D02* Y1149D01* X1711Y1029D02* Y1065D01* X1691Y1045D02* Y1049D01* X1638Y1038D02* Y1056D01* X1568Y1640D02* X1602D01* X1568Y1595D02* Y1640D01* X1532Y1589D02* X1583D01* X1528D02* X1532D01* X1528D02* X1532D01* X1421Y1862D02* Y1888D01* X1479Y1589D02* X1528D01* X1571Y1480D02* Y1589D01* X1551Y1548D02* Y1589D01* X1480Y1586D02* X1583D01* X1531Y1548D02* Y1589D01* X1511Y1554D02* Y1589D01* X1491Y1575D02* Y1589D01* X1316Y1866D02* X1421D01* X1338Y1726D02* X1421D01* X1415Y1800D02* Y1856D01* X1411Y1862D02* Y1897D01* X1415Y1744D02* Y1800D01* X1421Y1575D02* Y1737D01* X1358Y1706D02* X1421D01* X1378Y1686D02* X1421D01* X1411Y1676D02* Y1737D01* X1388Y1676D02* X1418D01* Y1574D02* Y1676D01* X1568Y1546D02* X1582D01* X1500Y1566D02* X1582D01* X1568Y1526D02* X1582D01* X1568Y1506D02* X1582D01* X1516Y1548D02* X1568D01* X1582Y1469D02* Y1585D01* X1568Y1486D02* X1582D01* X1568Y1483D02* X1582Y1469D01* X1568Y1483D02* Y1548D01* X1528Y1507D02* Y1541D01* Y1507D02* X1562D01* X1479Y1587D02* X1511Y1556D01* X1429Y1554D02* X1436Y1548D01* X1431D02* Y1552D01* X1342Y1574D02* X1418D01* X1332Y1566D02* X1422D01* X1412Y1548D02* X1436D01* X1412Y1467D02* X1449D01* X1392Y1466D02* X1449D01* X1411Y1546D02* Y1574D01* X1378Y1546D02* X1412D01* X1394Y1469D02* X1412D01* X1391Y1852D02* Y1918D01* X1371Y1861D02* Y1958D01* X1389Y1746D02* X1392D01* X1351Y1859D02* Y1960D01* X1331Y1858D02* Y1961D01* X1365Y1800D02* Y1856D01* X1391Y1676D02* Y1747D01* X1371Y1692D02* Y1738D01* X1365Y1744D02* Y1800D01* X1339Y1746D02* X1342D01* X1351Y1712D02* Y1740D01* X1331Y1732D02* Y1741D01* X1325Y1738D02* X1388Y1676D01* X1316Y1862D02* Y1957D01* X1114Y1635D02* X1150D01* Y1624D02* Y1635D01* X1153Y1584D02* Y1618D01* X1114Y1624D02* X1150D01* X1153Y1550D02* Y1584D01* X1131Y1624D02* Y1635D01* X1114Y1626D02* Y1635D01* X1063Y1552D02* Y1586D01* X1391Y1546D02* Y1574D01* X1371Y1545D02* Y1574D01* X1338D02* X1342D01* X1338D02* X1342D01* X1332D02* X1338D01* X1332Y1557D02* Y1574D01* X1351Y1535D02* Y1574D01* X1331Y1515D02* Y1550D01* X1312Y1524D02* X1324Y1536D01* X1142Y1537D02* X1148Y1543D01* X1131D02* X1148D01* X1133Y1537D02* X1142D01* X1013Y1546D02* X1062D01* X1314Y1526D02* X1343D01* X1305Y1488D02* X1351Y1535D01* X1312Y1506D02* X1323D01* X1311Y1495D02* Y1505D01* X1449Y1436D02* Y1467D01* X1372Y1446D02* X1449D01* X1414Y1401D02* X1449Y1436D01* X1352Y1426D02* X1440D01* X1431Y1418D02* Y1467D01* X1411Y1397D02* Y1469D01* X1406Y1342D02* Y1380D01* X1398Y1346D02* X1406D01* X1391Y1348D02* Y1466D01* X1371Y1349D02* Y1446D01* X1351Y1341D02* Y1426D01* X1332Y1406D02* X1420D01* X1327Y1402D02* X1394Y1469D01* X1334Y1366D02* X1406D01* X1334Y1386D02* X1407D01* X1331Y1394D02* Y1406D01* X1334Y1323D02* Y1379D01* Y1346D02* X1362D01* X1258Y1279D02* Y1363D01* X1251Y1279D02* Y1363D01* X1406Y1242D02* Y1251D01* X1398Y1246D02* X1406D01* X1380Y1297D02* Y1343D01* X1334Y1246D02* X1362D01* X1351Y1241D02* Y1253D01* X1334Y1223D02* Y1271D01* X1258Y953D02* Y1204D01* X1251Y942D02* Y1198D01* X1244Y1146D02* X1258D01* X1118Y1346D02* X1258D01* X1118Y1326D02* X1258D01* X1118Y1306D02* X1258D01* X1118Y1286D02* X1258D01* X1235Y1166D02* X1258D01* X1210Y1186D02* X1258D01* X1245Y1126D02* X1258D01* X1245Y1106D02* X1258D01* X1245Y1086D02* X1258D01* X1238Y1066D02* X1258D01* X1193Y1408D02* X1213Y1388D01* X1193Y1386D02* X1215D01* X1153Y1385D02* Y1419D01* X1119D02* X1153D01* X1193Y1378D02* Y1408D01* X1211Y1261D02* Y1390D01* X1191Y1261D02* Y1378D01* X1231Y1274D02* Y1371D01* X1171Y1261D02* Y1378D01* X1151Y1285D02* Y1378D01* X1131Y1285D02* Y1378D01* X1073Y1416D02* X1112D01* X1063Y1406D02* X1112D01* Y1378D02* X1193D01* X892Y1386D02* X1112D01* Y1378D02* Y1416D01* X1111Y1376D02* Y1416D01* X1057Y1399D02* X1073Y1416D01* X1118Y1366D02* X1241D01* X1042Y1376D02* X1118D01* Y1285D02* X1161D01* X1091Y1376D02* Y1416D01* X1071Y1376D02* Y1414D01* X1118Y1285D02* Y1376D01* X1218Y1261D02* X1226Y1269D01* X1203Y1192D02* X1232D01* X1231Y1169D02* Y1192D01* X1211Y1185D02* Y1192D01* X1206Y1191D02* X1221Y1175D01* X1173Y1141D02* X1176Y1138D01* X1245Y1086D02* Y1142D01* X1231Y915D02* Y1059D01* X1191Y896D02* Y1057D01* X1176Y1086D02* Y1138D01* X1211Y902D02* Y1052D01* X1161Y1266D02* X1222D01* X1161Y1261D02* X1218D01* X1145Y1126D02* X1176D01* X1145Y1106D02* X1176D01* X1161Y1261D02* Y1285D01* X1145Y1141D02* X1173D01* X1145Y1086D02* Y1141D01* X1171Y778D02* Y1141D01* X1145Y1086D02* X1176D01* X1139Y1066D02* X1182D01* X1151Y775D02* Y1141D01* X1139Y970D02* Y1068D01* X2089Y1026D02* X2101D01* X2089Y1006D02* X2101D01* X2089Y986D02* X2101D01* X2089Y966D02* X2101D01* X2089Y946D02* X2101D01* X2087Y926D02* X2101D01* X2070Y906D02* X2101D01* X2058Y831D02* X2101Y874D01* X2050Y886D02* X2101D01* X2071Y845D02* Y908D01* X2036Y872D02* X2079Y916D01* X2051Y831D02* Y888D01* X2020Y954D02* Y982D01* X2014Y1026D02* X2020D01* X2013Y966D02* X2020D01* X2011Y945D02* Y965D01* X1991Y945D02* Y949D01* X1988Y946D02* X2012D01* X2028Y866D02* X2092D01* X2003Y937D02* X2020Y954D01* X2031Y831D02* Y868D01* X2088Y766D02* X2217D01* X2014Y726D02* X2216D01* X2010Y831D02* X2058D01* X2010Y762D02* X2072D01* X2011Y729D02* Y762D01* X2022Y706D02* X2208D01* X2013Y666D02* X2217D01* X2014Y626D02* X2216D01* X2021Y686D02* X2209D01* X2022Y606D02* X2208D01* X2021Y586D02* X2209D01* X1988Y846D02* X2072D01* X1988Y746D02* X2242D01* X1991Y845D02* Y849D01* Y745D02* Y749D01* X1988Y646D02* X2242D01* X2013Y566D02* X2217D01* X2011Y629D02* Y665D01* X1867Y1046D02* X1952D01* X1867Y1026D02* X1926D01* X1924Y997D02* X1970D01* X1867Y1006D02* X1918D01* X1867Y986D02* X1919D01* X1722Y1006D02* X1731D01* X1721Y986D02* X1731D01* X1931Y933D02* Y961D01* X1867Y946D02* X1952D01* X1867Y966D02* X1927D01* X1867Y926D02* X1926D01* X1720Y911D02* X1731Y922D01* X1714Y1026D02* X1731D01* X1688Y1046D02* X1731D01* X1713Y966D02* X1731D01* X1688Y946D02* X1731D01* X1638Y1046D02* X1652D01* X1670Y997D02* X1716D01* X1711Y929D02* Y965D01* X1714Y926D02* X1731D01* X1638Y938D02* Y956D01* X1691Y945D02* Y949D01* X1931Y833D02* Y861D01* X1867Y866D02* X1927D01* X1867Y846D02* X1952D01* X1867Y826D02* X1926D01* X1867Y906D02* X1918D01* X1867Y886D02* X1919D01* X1867Y806D02* X1918D01* X1991Y645D02* Y649D01* X1931Y733D02* Y761D01* X1867Y786D02* X1919D01* X1931Y633D02* Y661D01* X1867Y766D02* X1927D01* X1867Y746D02* X1952D01* X1867Y726D02* X1926D01* X1860Y706D02* X1918D01* X1840Y686D02* X1919D01* X1820Y666D02* X1927D01* X1800Y646D02* X1952D01* X1780Y626D02* X1926D01* X1760Y606D02* X1918D01* X1724Y571D02* X1859Y706D01* X1740Y586D02* X1919D01* X2022Y506D02* X2208D01* X2014Y526D02* X2216D01* X2021Y486D02* X2209D01* X2013Y466D02* X2217D01* X2011Y529D02* Y565D01* X1991Y545D02* Y549D01* X2011Y449D02* Y465D01* X2071Y217D02* Y762D01* X2051Y217D02* Y762D01* X2023Y446D02* X2207D01* X2031Y217D02* Y762D01* X2023Y344D02* Y449D01* X1988Y546D02* X2242D01* X1688D02* X1952D01* X1931Y533D02* Y561D01* X1719Y566D02* X1927D01* X1714Y526D02* X1926D01* X1992Y449D02* X2023D01* X1931D02* Y461D01* X1713Y466D02* X1927D01* X1918Y449D02* X1948D01* X2023Y426D02* X2207D01* X2023Y406D02* X2207D01* X2023Y386D02* X2207D01* X2023Y366D02* X2207D01* X2023Y346D02* X2207D01* X2011Y217D02* Y344D01* X1991Y217D02* Y344D01* X2071Y39D02* Y62D01* X2051Y39D02* Y62D01* X2031Y39D02* Y62D01* X2011Y39D02* Y62D01* X1971Y217D02* Y344D01* X1991Y39D02* Y62D01* X1709Y326D02* X2641D01* X1709Y306D02* X2641D01* X1709Y286D02* X2641D01* X1709Y266D02* X2632D01* X1918Y344D02* X2023D01* X1723Y246D02* X2612D01* X1736Y226D02* X2592D01* X1951Y217D02* Y344D01* X1852Y217D02* X2392D01* X1971Y39D02* Y62D01* X1951Y39D02* Y62D01* X1931Y217D02* Y344D01* Y39D02* Y62D01* X1722Y506D02* X1918D01* X1721Y486D02* X1919D01* X1722Y446D02* X1918D01* X1722Y426D02* X1918D01* Y344D02* Y449D01* X1731Y235D02* Y578D01* X1722Y344D02* Y449D01* X1851Y139D02* Y698D01* X1831Y139D02* Y678D01* X1811Y139D02* Y658D01* X1791Y139D02* Y638D01* X1771Y139D02* Y618D01* X1751Y139D02* Y598D01* X1711Y529D02* Y563D01* X1691Y545D02* Y549D01* X1711Y449D02* Y465D01* X1722Y406D02* X1918D01* X1722Y386D02* X1918D01* X1722Y366D02* X1918D01* X1692Y449D02* X1722D01* Y346D02* X1918D01* X1911Y39D02* Y62D01* X1742Y206D02* X1852D01* X1891Y39D02* Y62D01* X1871Y39D02* Y62D01* X1852Y139D02* Y217D01* X1742Y186D02* X1852D01* X1736Y166D02* X1852D01* X1851Y39D02* Y62D01* X1831Y39D02* Y62D01* X1811Y39D02* Y62D01* X1791Y39D02* Y62D01* X1771Y39D02* Y62D01* X1751Y39D02* Y62D01* X1731Y139D02* Y158D01* X1722Y146D02* X1852D01* X1711Y256D02* Y344D01* X1709D02* X1722D01* X1709Y258D02* Y344D01* X1731Y39D02* Y62D01* X1713Y139D02* X1852D01* X1711Y39D02* Y62D01* X1691Y39D02* Y62D01* X1671Y39D02* Y62D01* X1651Y39D02* Y62D01* X1638Y946D02* X1652D01* X1217Y901D02* X1249Y933D01* X1176Y811D02* Y867D01* X1145Y866D02* X1176D01* X1210Y628D02* Y662D01* X1171Y622D02* X1248D01* Y442D02* Y622D01* X1191Y778D02* Y782D01* X1159Y778D02* X1200D01* X1139Y1046D02* X1258D01* X1139Y1026D02* X1258D01* X1139Y1006D02* X1258D01* X1139Y986D02* X1258D01* X1139Y966D02* X1258D01* X1127Y946D02* X1253D01* X1107Y926D02* X1242D01* X1139Y886D02* X1181D01* X1087Y906D02* X1222D01* X1142Y786D02* X1186D01* X1145Y846D02* X1176D01* X1145Y826D02* X1176D01* X1144Y806D02* X1176D01* X1231Y442D02* Y622D01* X1327Y346D02* X1332D01* X1224Y442D02* X1248D01* X1211Y444D02* Y622D01* X1191Y442D02* Y622D01* X1171Y619D02* Y622D01* X1331Y344D02* Y347D01* X1327D02* X1332D01* Y344D02* Y347D01* X1327Y344D02* Y347D01* X1296D02* X1327D01* Y344D02* X1332D01* X1018Y606D02* X1248D01* X1018Y586D02* X1248D01* X1018Y566D02* X1248D01* X1018Y546D02* X1248D01* X1109Y506D02* X1248D01* X965Y526D02* X1248D01* X1122Y486D02* X1248D01* X970Y347D02* X1296D01* X504Y346D02* X1327D01* X504Y326D02* X1332D01* X1122Y466D02* X1248D01* X1122Y446D02* X1248D01* X1122Y442D02* X1196D01* X1145Y811D02* Y867D01* X1131Y894D02* Y951D01* X1111Y902D02* Y930D01* X1091Y896D02* Y910D01* X1159Y775D02* Y778D01* X1142Y775D02* X1159D01* X1141Y791D02* Y795D01* X1080Y791D02* Y795D01* X998Y817D02* X1131Y950D01* X1067Y886D02* X1081D01* X1047Y866D02* X1076D01* Y811D02* Y867D01* X1027Y846D02* X1076D01* X1007Y826D02* X1076D01* X998Y806D02* X1076D01* X1071Y775D02* Y890D01* X998Y786D02* X1078D01* X1069Y775D02* X1078D01* X1120Y625D02* Y659D01* X1075D02* X1120D01* X1111Y504D02* Y619D01* X1096Y519D02* X1122Y493D01* X1091Y519D02* Y619D01* X1069Y699D02* Y775D01* X1071Y519D02* Y619D01* X1171Y442D02* Y622D01* X1151Y442D02* Y619D01* X1131Y442D02* Y619D01* X1122Y442D02* Y493D01* X1070Y467D02* Y513D01* Y467D02* X1116D01* X998Y766D02* X1069D01* X998Y746D02* X1069D01* X998Y726D02* X1069D01* X998Y706D02* X1069D01* Y695D02* Y699D01* Y695D02* Y699D01* X998Y686D02* X1069D01* Y619D02* X1171D01* X998Y666D02* X1069D01* X1044Y519D02* X1096D01* X1069Y619D02* Y695D01* X631Y646D02* X1069D01* X1018Y626D02* X1069D01* X1521Y165D02* Y184D01* X1521Y146D02* X1526D01* X1331Y275D02* Y344D01* X1332Y275D02* Y344D01* X1335Y159D02* X1380D01* X1533Y138D02* X1598Y73D01* X1521Y126D02* X1544D01* X1551Y39D02* Y119D01* X1521Y119D02* Y185D01* X1380Y125D02* Y159D01* X1531Y39D02* Y139D01* X1308Y306D02* X1332D01* X1308Y286D02* X1332D01* X1329Y275D02* X1332D01* X1308Y266D02* X1329D01* Y231D02* Y275D01* X1311Y231D02* Y347D01* X1308Y246D02* X1329D01* X1308Y162D02* X1329D01* X1289Y231D02* X1329D01* X1308Y146D02* X1329D01* Y119D02* Y162D01* X1311Y39D02* Y162D01* X1308Y126D02* X1329D01* X1631Y39D02* Y62D01* X1625D02* X2520D01* X1591Y39D02* Y79D01* X1431Y119D02* X1521D01* X1611Y39D02* Y64D01* X1511Y39D02* Y119D01* X1491Y39D02* Y119D01* X1571Y39D02* Y99D01* X1471Y39D02* Y119D01* X1451Y39D02* Y119D01* X1431Y39D02* Y119D01* X39Y106D02* X1564D01* X39Y86D02* X1584D01* X39Y66D02* X1607D01* X39Y46D02* X4094D01* X1419Y119D02* X1431D01* X1419D02* X1431D01* X1329D02* X1419D01* X1411Y39D02* Y119D01* X1391Y39D02* Y119D01* X39Y39D02* X4094D01* X1371D02* Y119D01* X1351Y39D02* Y119D01* X1331Y39D02* Y119D01* X1291Y318D02* Y347D01* X1271Y318D02* Y347D01* X1251Y318D02* Y347D01* X1250Y275D02* X1301D01* X1231Y318D02* Y347D01* X1211Y318D02* Y347D01* X1250Y275D02* Y311D01* X1308Y233D02* Y318D01* X1199Y275D02* X1250D01* X1191Y201D02* Y347D01* X1250Y240D02* Y275D01* X1192Y318D02* X1308D01* X504Y306D02* X1192D01* Y233D02* X1308D01* X942Y286D02* X1192D01* Y233D02* Y318D01* X942Y266D02* X1192D01* X942Y246D02* X1192D01* X1171Y201D02* Y347D01* X1151Y201D02* Y347D01* X1131Y201D02* Y347D01* X1111Y201D02* Y347D01* X1091Y215D02* Y347D01* X1071Y219D02* Y347D01* X1271Y227D02* Y233D01* X1251Y209D02* Y233D01* X1308Y116D02* Y162D01* X1244Y201D02* X1264Y221D01* X1231Y201D02* Y233D01* X1211Y201D02* Y233D01* X1192Y116D02* Y132D01* X1291Y39D02* Y116D01* X1271Y39D02* Y116D01* X1251Y39D02* Y116D01* X1231Y39D02* Y116D01* X1191Y39D02* Y132D01* X1211Y39D02* Y116D01* X1105Y206D02* X1249D01* X942Y226D02* X1270D01* X1192Y116D02* X1308D01* X1110Y201D02* X1242D01* X1110Y132D02* X1192D01* X1103Y126D02* X1192D01* X1171Y39D02* Y132D01* X1151Y39D02* Y132D01* X1131Y39D02* Y132D01* X1111Y39D02* Y132D01* X1091Y39D02* Y119D01* X1071Y39D02* Y114D01* X946Y1826D02* X987D01* X946Y1826D02* X987D01* X946Y1806D02* X987D01* X946Y1786D02* X987D01* Y1782D02* Y1826D01* X970Y1833D02* Y1867D01* X971Y1767D02* Y1826D01* X969Y1765D02* X987Y1782D01* X951Y1747D02* Y1826D01* X946Y1766D02* X971D01* X946Y1741D02* X969Y1765D01* X946Y1765D02* Y1826D01* X751Y1764D02* Y1821D01* X682Y1806D02* X779D01* X711Y1834D02* X748D01* X675Y1798D02* X711Y1834D01* X702Y1826D02* X749D01* X791Y1720D02* Y1768D01* X771Y1700D02* Y1808D01* X812Y1741D02* Y1763D01* X731Y1764D02* Y1834D01* X711Y1764D02* Y1834D01* X691Y1764D02* Y1815D01* X939Y1746D02* X951D01* X931Y1714D02* Y1738D01* X920Y1726D02* X937Y1743D01* X919Y1726D02* X937D01* X1051Y1537D02* Y1546D01* X1035Y1537D02* X1059D01* X1031Y1537D02* Y1546D01* X1013Y1531D02* Y1546D01* X811Y1740D02* Y1763D01* X767Y1746D02* X812D01* X910Y1714D02* X933D01* X767Y1726D02* X797D01* X691Y1764D02* X767D01* Y1706D02* X777D01* X767Y1696D02* Y1764D01* Y1696D02* X812Y1741D01* X892Y1406D02* X898D01* X637Y1418D02* X715D01* X682Y1406D02* X713D01* X668Y1877D02* Y1939D01* X641Y1850D02* X668Y1877D01* X651Y1861D02* Y2054D01* X631Y1850D02* Y2054D01* X611Y1850D02* Y2054D01* X687Y1764D02* X691D01* X671D02* Y1796D01* X687Y1764D02* X691D01* X651D02* Y1789D01* X631Y1764D02* Y1789D01* X611Y1764D02* Y1789D01* X591Y1850D02* Y2054D01* Y1737D02* Y1789D01* X611Y1764D02* X687D01* X611Y1737D02* Y1764D01* X571Y1850D02* Y2054D01* X551Y1850D02* Y2054D01* X571Y1737D02* Y1789D01* X611Y1662D02* Y1676D01* X591Y1501D02* Y1676D01* X611Y1662D02* X620D01* X571Y1481D02* Y1676D01* X551Y1737D02* Y1789D01* Y1464D02* Y1676D01* X651Y1534D02* Y1546D01* X637Y1534D02* X672D01* X631Y1507D02* Y1546D01* X611Y1662D02* X620D01* X637Y1507D02* Y1534D01* X671Y1410D02* Y1418D01* X651Y1411D02* Y1418D01* X655Y1411D02* X664D01* X637Y1418D02* Y1446D01* X622D02* X637D01* X631Y1402D02* Y1446D01* X608Y1546D02* X664D01* X545Y1606D02* X608D01* X611Y1507D02* Y1546D01* X610Y1507D02* X637D01* X608Y1546D02* Y1662D01* X544Y1586D02* X608D01* X602Y1426D02* X637D01* X588Y1412D02* X622Y1446D01* X580Y1406D02* X637D01* X554Y1464D02* X588Y1498D01* X546Y1486D02* X576D01* X1051Y1376D02* Y1395D01* X1038Y1376D02* X1042D01* X1031D02* Y1391D01* X1011Y1376D02* Y1391D01* X1038Y1376D02* X1042D01* X991D02* Y1391D01* X971Y1376D02* Y1391D01* X962Y1376D02* X1038D01* X962Y1355D02* Y1376D01* X951Y1351D02* Y1391D01* X962Y1274D02* Y1284D01* X925Y1391D02* X1036D01* X892Y1366D02* X962D01* X892Y1346D02* X945D01* X938Y1339D02* X946Y1347D01* X931Y1339D02* Y1391D01* X911Y1339D02* Y1394D01* X892Y1339D02* X938D01* X966Y1169D02* Y1175D01* Y1169D02* X970D01* X959D02* X966D01* X934Y1166D02* X966D01* X959Y1169D02* Y1283D01* X931Y1175D02* Y1281D01* X934Y1146D02* X966D01* X970Y1059D02* Y1068D01* X934Y1126D02* X966D01* X968Y1059D02* Y1068D01* X951D02* Y1281D01* X934Y1068D02* Y1175D01* X966Y1068D02* Y1169D01* X923Y1266D02* X959D01* X923Y1246D02* X959D01* X923Y1226D02* X959D01* X923Y1206D02* X959D01* X923Y1281D02* X950D01* X923Y1175D02* Y1281D01* Y1186D02* X959D01* X934Y1106D02* X966D01* X934Y1086D02* X966D01* X934Y1068D02* X966D01* X923Y1175D02* X934D01* X892Y1117D02* X927D01* X932Y1017D02* Y1061D01* X711Y1400D02* Y1418D01* X892Y1412D02* X904Y1399D01* X689Y1400D02* X713D01* X691D02* Y1418D01* X892Y1339D02* Y1412D01* X659Y1379D02* Y1405D01* Y1292D02* Y1318D01* X611Y1400D02* Y1435D01* X631Y1244D02* Y1295D01* X591Y1392D02* Y1415D01* X600Y1400D02* X630D01* X581Y1382D02* X600Y1400D01* X545Y1386D02* X585D01* X581Y1356D02* Y1382D01* X611Y1244D02* Y1296D01* X605D02* X630D01* X571Y1356D02* Y1403D01* X551Y1356D02* Y1403D01* X834Y1128D02* X849Y1143D01* X834Y1126D02* X849D01* X892Y1065D02* Y1117D01* X856D02* X892D01* X849Y1059D02* Y1143D01* X834Y1106D02* X849D01* X834Y1086D02* X849D01* X892Y966D02* Y1059D01* X849D02* X892D01* X891Y844D02* Y1059D01* X871Y864D02* Y1059D01* X834Y920D02* Y1128D01* X851Y878D02* Y1059D01* X671Y1272D02* Y1280D01* X655Y1286D02* X664D01* X651Y1253D02* Y1286D01* X545Y1266D02* X665D01* X834Y1066D02* X849D01* X643Y1244D02* X671Y1272D01* X834Y1046D02* X892D01* X591Y1244D02* Y1295D01* X571Y1244D02* Y1295D01* X551Y1244D02* Y1295D01* X531Y1852D02* Y1888D01* X509Y1866D02* X656D01* X539Y1789D02* X653D01* X533Y1850D02* X641D01* X511Y1865D02* Y1875D01* X451Y1850D02* Y1890D01* X471Y1865D02* Y1875D01* X537Y1786D02* X779D01* X531Y1743D02* Y1779D01* X513Y1766D02* X795D01* X511Y1756D02* Y1766D01* X451Y1741D02* Y1781D01* X471Y1756D02* Y1766D01* X445Y1866D02* X475D01* X440Y1846D02* X448D01* X422Y1826D02* X440D01* X411Y1811D02* Y1821D01* X421Y1806D02* X439D01* X445Y1766D02* X471D01* X431Y1798D02* Y1834D01* X440Y1786D02* X447D01* X536Y1737D02* X611D01* X528Y1746D02* X611D01* X536Y1676D02* X611D01* X527Y1666D02* X611D01* X511Y1647D02* Y1657D01* X443Y1746D02* X456D01* X471Y1647D02* Y1657D01* X537Y1626D02* X608D01* X514Y1646D02* X608D01* X507Y1546D02* X664D01* X531Y1634D02* Y1670D01* X451Y1632D02* Y1672D01* X536Y1566D02* X608D01* X444Y1666D02* X457D01* X432Y1726D02* X442D01* X445Y1646D02* X470D01* X439Y1626D02* X447D01* X431Y1689D02* Y1725D01* X324Y1706D02* X439D01* X434Y1686D02* X443D01* X441Y1566D02* X449D01* X446Y1546D02* X477D01* X431Y1580D02* Y1616D01* X419Y1606D02* X439D01* X424Y1586D02* X440D01* X351Y1796D02* Y1836D01* X324Y1826D02* X362D01* X371Y1811D02* Y1821D01* X324Y1806D02* X363D01* X324Y1886D02* X341D01* X324Y1866D02* X339D01* X324Y1846D02* X344D01* X324Y1786D02* X345D01* X324Y1766D02* X339D01* X324Y1726D02* X352D01* X129Y1769D02* X181Y1718D01* X131Y1663D02* Y1767D01* X324Y1746D02* X341D01* X102Y1886D02* X121D01* X102Y1866D02* X121D01* X102Y1846D02* X121D01* X102Y1826D02* X121D01* Y1790D02* Y2273D01* X102Y1806D02* X121D01* X102Y1786D02* X121D01* X102Y1766D02* X133D01* X102Y1746D02* X153D01* X111Y1667D02* Y2273D01* X102Y1665D02* Y2275D01* X371Y1702D02* Y1712D01* X351Y1687D02* Y1727D01* X411Y1702D02* Y1712D01* X324Y1686D02* X351D01* X324Y1666D02* X340D01* X324Y1646D02* X339D01* X324Y1626D02* X346D01* X411Y1593D02* Y1603D01* X324Y1606D02* X365D01* X371Y1593D02* Y1603D01* X351Y1578D02* Y1618D01* X324Y1586D02* X360D01* X324Y1566D02* X344D01* X102Y1706D02* X181D01* X102Y1686D02* X181D01* X146Y1646D02* X181D01* X124Y1666D02* X181D01* X102Y1726D02* X173D01* X102Y1666D02* X106D01* X146Y1626D02* X181D01* X144Y1606D02* X181D01* X324Y1546D02* X339D01* X144Y1586D02* X181D01* X144Y1566D02* X181D01* X531Y1525D02* Y1561D01* X530Y1526D02* X637D01* X511Y1538D02* Y1548D01* X471Y1538D02* Y1548D01* X451Y1523D02* Y1563D01* X443Y1526D02* X454D01* X543Y1506D02* X603D01* X541Y1466D02* X556D01* X540Y1464D02* X554D01* X431Y1506D02* X442D01* X411Y1483D02* Y1494D01* X401Y1486D02* X439D01* X391Y1487D02* Y1490D01* X324Y1526D02* X341D01* X324Y1506D02* X354D01* X324Y1486D02* X383D01* X431Y1470D02* Y1507D01* X371Y1483D02* Y1494D01* X331Y1415D02* Y2202D01* X324Y1422D02* Y2210D01* X351Y1468D02* Y1509D01* X540Y1403D02* X567D01* X544Y1366D02* X581D01* X540Y1356D02* X581D01* X434Y1466D02* X443D01* X436Y1464D02* X445D01* X543Y1286D02* X649D01* X540Y1246D02* X645D01* X539Y1244D02* X643D01* X540Y1295D02* X595D01* X324Y1466D02* X350D01* X324Y1446D02* X340D01* X338Y1408D02* X345D01* X324Y1426D02* X339D01* X324Y1422D02* X338Y1408D01* X39Y1086D02* X268D01* X39Y1066D02* X288D01* X232Y1122D02* X332Y1022D01* X39Y1046D02* X308D01* X311Y668D02* Y1043D01* X271Y427D02* Y1083D01* X251Y454D02* Y1103D01* X291Y668D02* Y1063D01* X147Y1486D02* X181D01* X146Y1466D02* X181D01* X146Y1446D02* X181D01* X146Y1426D02* X181D01* X146Y1406D02* X181D01* X146Y1386D02* X181D01* Y1175D02* Y1718D01* X146Y1366D02* X181D01* X146Y1346D02* X181D01* X171Y471D02* Y1727D01* X151Y461D02* Y1747D01* X146Y1136D02* Y1479D01* X144Y1546D02* X181D01* X144Y1526D02* X181D01* X146Y1326D02* X181D01* X144Y1506D02* X181D01* X144Y1505D02* Y1620D01* X146Y1306D02* X181D01* X146Y1286D02* X181D01* X146Y1266D02* X181D01* X146Y1246D02* X181D01* X146Y1226D02* X181D01* X146Y1206D02* X181D01* X146Y1186D02* X181D01* X147Y1126D02* X229D01* X146Y1166D02* X178D01* X146Y1146D02* X181D01* X231Y468D02* Y1123D01* X141Y1106D02* X248D01* X211Y474D02* Y1128D01* X191Y475D02* Y1133D01* X131Y442D02* Y1097D01* X39Y1166D02* X84D01* X39Y1146D02* X84D01* X39Y1106D02* X89D01* X84Y1136D02* Y1186D01* X39Y1186D02* X55D01* X39Y1126D02* X83D01* X91Y304D02* Y1103D01* X111Y304D02* Y1093D01* X51Y304D02* Y1188D01* X39Y39D02* Y1204D01* X71Y304D02* Y1183D01* X892Y966D02* X968D01* X991Y893D02* Y913D01* X971Y873D02* Y937D01* X932Y972D02* Y1017D01* X898D02* X932D01* X970Y945D02* Y966D01* X951Y853D02* Y966D01* X931Y832D02* X1010Y911D01* X1011Y638D02* Y830D01* X890Y846D02* X945D01* X931Y833D02* Y966D01* X911Y832D02* Y966D01* X904Y832D02* X931D01* X834Y1026D02* X892D01* X834Y946D02* X970D01* X834Y926D02* X976D01* X830Y906D02* X1005D01* X834Y1006D02* X892D01* X834Y986D02* X892D01* X834Y966D02* X892D01* X866Y869D02* X904Y832D01* X803Y886D02* X985D01* X870Y866D02* X965D01* X772Y879D02* X842D01* X998Y661D02* Y817D01* X882Y661D02* X998D01* X991Y638D02* Y661D01* X942Y638D02* X1018D01* X971D02* Y661D01* X882D02* Y756D01* X951Y638D02* Y661D01* X938Y638D02* X942D01* X931D02* Y661D01* X938Y638D02* X942D01* X911D02* Y661D01* X871Y638D02* Y767D01* X891Y638D02* Y661D01* X828Y811D02* X882Y756D01* X778Y746D02* X882D01* X778Y726D02* X882D01* X778Y706D02* X882D01* X778Y786D02* X852D01* X778Y766D02* X872D01* X778Y686D02* X882D01* X862Y638D02* X938D01* X778Y666D02* X882D01* X862Y625D02* Y638D01* X851Y625D02* Y787D01* X841Y626D02* X862D01* X841Y625D02* X862D01* X831Y879D02* Y908D01* X821Y894D02* X826Y899D01* X811Y879D02* Y888D01* Y645D02* Y811D01* X778D02* X828D01* X778Y806D02* X832D01* X791Y879D02* Y886D01* Y645D02* Y811D01* X778Y661D02* Y811D01* X772Y886D02* X800D01* X772Y879D02* Y886D01* X596Y861D02* X636Y821D01* X586Y885D02* Y966D01* X651Y645D02* Y812D01* X662Y661D02* Y811D01* X591Y770D02* Y866D01* X571Y771D02* Y980D01* X611Y748D02* Y845D01* X831Y645D02* Y807D01* X720Y747D02* X771D01* X756Y645D02* X841D01* X662Y661D02* X778D01* X720Y668D02* Y747D01* X668D02* X720D01* X771Y645D02* Y661D01* X841Y625D02* Y645D01* X639D02* X724D01* Y626D02* X756D01* X711Y645D02* Y661D01* X691Y645D02* Y661D01* X671Y645D02* Y661D01* X612Y746D02* X662D01* X599Y766D02* X662D01* X609Y726D02* X662D01* X609Y706D02* X662D01* X611Y705D02* Y732D01* X609Y705D02* Y725D01* X631Y686D02* X662D01* X609Y705D02* X631D01* Y666D02* X662D01* X631Y629D02* Y705D01* Y625D02* Y629D01* Y625D02* Y629D01* X1051Y519D02* Y870D01* X1018Y536D02* Y638D01* X978Y587D02* X1012D01* X955Y536D02* X1018D01* X978Y587D02* Y631D01* Y542D02* Y587D01* X971Y520D02* Y536D01* X1031Y507D02* Y850D01* X1018Y493D02* X1044Y519D01* X1005Y506D02* X1031D01* X1011Y499D02* Y536D01* X991Y515D02* Y536D01* X864D02* Y548D01* X841Y546D02* X862D01* X955Y536D02* X972Y519D01* X716Y526D02* X865D01* X862Y536D02* Y548D01* X841D02* X862D01* X841Y529D02* Y548D01* X875Y508D02* X918Y465D01* X711Y506D02* X876D01* X851Y297D02* Y548D01* X871Y297D02* Y511D01* X1051Y216D02* Y347D01* X1018Y489D02* Y493D01* X1051Y39D02* Y118D01* X1031Y203D02* Y347D01* X931Y297D02* Y367D01* X923Y395D02* Y444D01* X942Y208D02* Y297D01* X1011Y39D02* Y347D01* X991Y39D02* Y347D01* X1031Y39D02* Y131D01* X971Y39D02* Y347D01* X951Y39D02* Y351D01* X931Y39D02* Y208D01* X653Y446D02* X922D01* X693Y486D02* X896D01* X673Y466D02* X916D01* X603Y426D02* X923D01* X911Y297D02* Y471D01* X891Y297D02* Y491D01* X911Y39D02* Y208D01* X891Y39D02* Y208D01* X871Y39D02* Y208D01* X851Y39D02* Y208D01* X724Y606D02* X756D01* X724Y586D02* X756D01* Y529D02* X841D01* X724Y566D02* X756D01* Y529D02* Y645D01* X724Y529D02* Y645D01* Y546D02* X756D01* X831Y297D02* Y529D01* X811Y297D02* Y529D01* X791Y297D02* Y529D01* X751Y297D02* Y661D01* X731Y297D02* Y661D01* X771Y297D02* Y529D01* X631Y626D02* X639D01* X631Y606D02* X639D01* X716Y529D02* X724D01* X631Y586D02* X639D01* Y530D02* Y645D01* X631Y549D02* Y625D01* Y566D02* X639D01* X716Y523D02* Y529D01* X611Y501D02* X639Y530D01* X631Y522D02* Y825D01* X611Y502D02* Y549D01* X591Y515D02* Y549D01* X831Y39D02* Y208D01* X811Y39D02* Y208D01* X791Y39D02* Y208D01* X711Y297D02* Y506D01* X691Y297D02* Y485D01* X671Y297D02* Y465D01* X771Y39D02* Y208D01* X751Y39D02* Y208D01* X731Y39D02* Y208D01* X711Y39D02* Y208D01* X691Y39D02* Y208D01* X671Y39D02* Y208D01* X651Y297D02* Y445D01* X649Y442D02* X706Y499D01* X631Y297D02* Y433D01* X605Y506D02* X616D01* X610Y432D02* X625D01* X651Y39D02* Y208D01* X611Y297D02* Y432D01* X631Y39D02* Y208D01* X611Y39D02* Y208D01* X591Y297D02* Y419D01* Y39D02* Y208D01* X539Y1013D02* X586Y966D01* X522Y966D02* X585D01* X547Y926D02* X586D01* X537Y946D02* X586D01* X551Y913D02* Y1000D01* X531Y955D02* Y1013D01* X553Y906D02* X586D01* X553Y866D02* X591D01* X547Y846D02* X610D01* X537Y826D02* X630D01* X555Y886D02* X586D01* X551Y756D02* Y860D01* X531Y705D02* Y818D01* X511Y975D02* Y1013D01* X355D02* X539D01* X494Y986D02* X565D01* X39Y1006D02* X545D01* X491Y988D02* Y1013D01* X471Y995D02* Y1013D01* X451Y999D02* Y1013D01* X442Y886D02* X548D01* X521Y806D02* X662D01* X442Y886D02* Y992D01* X336Y886D02* X442D01* X511Y705D02* Y798D01* X551Y705D02* Y725D01* X541Y549D02* X631D01* X534Y546D02* X639D01* X541Y705D02* X551D01* X529D02* X541D01* X529D02* X541D01* X571Y519D02* Y549D01* X554Y526D02* X636D01* X551Y528D02* Y549D01* X493Y786D02* X662D01* X39Y766D02* X561D01* X39Y726D02* X551D01* X39Y706D02* X551D01* X491Y705D02* Y785D01* X471Y705D02* Y778D01* X39Y746D02* X548D01* X532Y548D02* X561Y519D01* X531Y549D02* X541D01* X531D02* X541D01* X451Y705D02* Y774D01* X439Y705D02* X529D01* X490Y665D02* Y699D01* X431Y998D02* Y1013D01* X411Y995D02* Y1013D01* X391Y987D02* Y1013D01* X371Y974D02* Y1013D01* X351Y953D02* Y1013D01* X442Y780D02* Y886D01* X391Y705D02* Y786D01* X411Y705D02* Y778D01* X351Y668D02* Y820D01* X331Y907D02* Y1023D01* X371Y705D02* Y799D01* X39Y986D02* X390D01* X39Y966D02* X363D01* X39Y946D02* X347D01* X39Y926D02* X337D01* X39Y1026D02* X328D01* X39Y906D02* X331D01* X39Y886D02* X330D01* X39Y826D02* X347D01* X39Y806D02* X363D01* X39Y786D02* X391D01* X331Y668D02* Y866D01* X39Y866D02* X331D01* X39Y846D02* X337D01* X431Y705D02* Y774D01* X359Y705D02* X439D01* X400Y664D02* Y698D01* X366Y664D02* X400D01* X359Y668D02* Y705D01* X272Y668D02* X359D01* X289Y562D02* Y587D01* X355Y496D02* X427D01* X298Y541D02* X333Y505D01* X39Y686D02* X359D01* X39Y666D02* X272D01* Y587D02* X289D01* X39Y646D02* X272D01* Y587D02* Y668D01* X39Y626D02* X272D01* X39Y606D02* X272D01* X39Y526D02* X313D01* X39Y506D02* X333D01* X39Y486D02* X421D01* X39Y586D02* X289D01* X39Y566D02* X289D01* X39Y546D02* X294D01* X504Y406D02* X923D01* X572Y297D02* X942D01* X504Y386D02* X923D01* X518Y446D02* X522D01* X504Y426D02* X537D01* X571Y39D02* Y414D01* X551Y39D02* Y418D01* X572Y208D02* Y297D01* X531Y39D02* Y431D01* X511Y199D02* Y435D01* X504Y206D02* Y427D01* X272Y426D02* X435D01* X504Y366D02* X932D01* X277Y406D02* X435D01* X259Y446D02* X422D01* X234Y466D02* X418D01* X278Y386D02* X435D01* X274Y366D02* X435D01* X263Y346D02* X435D01* X243Y326D02* X435D01* Y206D02* Y427D01* X431Y203D02* Y431D01* X39Y306D02* X435D01* X504Y286D02* X572D01* X505Y206D02* X1035D01* X572Y208D02* X942D01* X519Y186D02* X1021D01* X504Y266D02* X572D01* X504Y246D02* X572D01* X504Y226D02* X572D01* X522Y166D02* X1018D01* X518Y146D02* X1022D01* X503Y126D02* X1037D01* X511Y39D02* Y135D01* X491Y39D02* Y119D01* X357Y286D02* X435D01* X357Y266D02* X435D01* X357Y246D02* X435D01* X357Y226D02* X435D01* X39Y206D02* X435D01* X39Y186D02* X421D01* X39Y166D02* X418D01* X451Y39D02* Y118D01* X471Y39D02* Y114D01* X431Y39D02* Y131D01* X39Y146D02* X422D01* X39Y126D02* X437D01* X311Y304D02* Y527D01* X291Y304D02* Y551D01* X351Y304D02* Y497D01* X331Y304D02* Y507D01* X197Y394D02* Y469D01* Y394D02* X272D01* X197Y319D02* Y394D01* X411Y39D02* Y496D01* X391Y39D02* Y496D01* X371Y39D02* Y496D01* X271Y304D02* Y361D01* X251Y304D02* Y333D01* X231Y304D02* Y320D01* X39Y466D02* X159D01* X39Y446D02* X134D01* X122Y394D02* X197D01* X39Y426D02* X122D01* X39Y406D02* X116D01* X39Y386D02* X116D01* X39Y366D02* X120D01* X39Y326D02* X151D01* X171Y304D02* Y316D01* X131Y304D02* Y345D01* X39Y346D02* X131D01* X151Y304D02* Y326D01* X357Y214D02* Y304D01* X351Y39D02* Y214D01* X331Y39D02* Y214D01* X311Y39D02* Y214D01* X211Y304D02* Y313D01* X191Y304D02* Y312D01* X291Y39D02* Y214D01* X271Y39D02* Y214D01* X251Y39D02* Y214D01* X231Y39D02* Y214D01* X211Y39D02* Y214D01* X191Y39D02* Y214D01* X171Y39D02* Y214D01* X47Y304D02* X357D01* X39Y286D02* X47D01* Y214D02* X357D01* X39Y266D02* X47D01* Y214D02* Y304D01* X39Y246D02* X47D01* X39Y226D02* X47D01* X151Y39D02* Y214D01* X131Y39D02* Y214D01* X111Y39D02* Y214D01* X91Y39D02* Y214D01* X71Y39D02* Y214D01* X51Y39D02* Y214D01* X1435Y765D02* Y1380D01* X4017Y2693D02* X4020Y2690D01* X3990Y2693D02* X4017D01* X1888Y2064D02* X1912Y2040D01* X2170Y1820D02* X2170Y1820D01* X1595Y725D02* X1623Y697D01* X1695Y845D02* X1760Y910D01* X1732Y797D02* X1805Y870D01* X1500Y2710D02* X1520Y2690D01* X1357Y2753D02* X1400Y2710D01* X1500D01* X897Y1448D02* X925Y1420D01* X1036D01* X897Y1648D02* X930Y1615D01* X1016D01* X1078Y1187D02* X1095Y1170D01* X1185D02* X1210Y1145D01* X1095Y1170D02* X1185D01* X805Y1140D02* X875Y1210D01* X805Y920D02* Y1140D01* X800Y915D02* X805Y920D01* X727Y1117D02* X783Y1172D01* X950Y1310D02* X967Y1327D01* X730Y1310D02* X950D01* X2555Y835D02* X2650Y930D01* Y1075D01* X2582Y697D02* X2690Y805D01* Y1040D01* X3215Y2895D02* X3278Y2958D01* X3135Y2895D02* X3215D01* X3110Y2870D02* X3135Y2895D01* X3110Y2615D02* Y2870D01* Y2615D02* X3130Y2595D01* X3160D01* X3175Y2580D01* Y2420D02* Y2580D01* X3155Y1540D02* X3175Y1560D01* X3040Y1540D02* X3155D01* X3025Y1525D02* X3040Y1540D01* X3025Y1255D02* Y1525D01* X3005Y1235D02* X3025Y1255D01* X2885Y1235D02* X3005D01* X2690Y1040D02* X2845Y1195D01* X2885Y1235D01* X3025Y1585D02* X3040D01* X3255Y1660D02* Y1706D01* X3210Y1615D02* X3211Y1616D01* X3205Y1760D02* X3260Y1815D01* X3118Y1643D02* X3145Y1670D01* X3190D01* X3205Y1685D01* Y1760D01* X3042Y1602D02* X3130Y1690D01* X2915Y1340D02* Y1535D01* X2940Y1560D01* X2970D01* X3000Y1590D01* Y1625D01* X2650Y1075D02* X2915Y1340D01* X2327Y1097D02* X2400Y1170D01* Y1320D01* X2425Y1345D01* X2195Y2590D02* X2210Y2575D01* Y2510D02* Y2575D01* X2290Y2535D02* X2360Y2465D01* Y2235D02* Y2465D01* X1605Y2320D02* X1656Y2371D01* X1435Y1380D02* X1485Y1430D01* X1805Y870D02* Y1410D01* X1760Y910D02* Y1500D01* X1805Y1410D02* X1860Y1465D01* X1595Y725D02* Y815D01* X1625Y845D01* X1695D01* X1875Y1200D02* X1970Y1105D01* X1690Y3740D02* X1727D01* X1670Y3720D02* X1690Y3740D01* X1670Y3580D02* Y3720D01* X1655Y3565D02* X1670Y3580D01* X1225Y3410D02* X1270Y3455D01* X1285Y3340D02* X1535D01* X1255Y3310D02* X1285Y3340D01* X1535D02* X1565Y3370D01* X1995Y3385D02* X2040Y3430D01* X1765Y3385D02* X1995D01* X1695Y3315D02* X1765Y3385D01* X1560Y3305D02* X1570Y3315D01* X1305Y3305D02* X1560D01* X1290Y3290D02* X1305Y3305D01* X1570Y3315D02* X1695D01* X330Y2245D02* Y2565D01* X270Y2625D02* X330Y2565D01* Y2245D02* X378Y2197D01* X150Y2430D02* X225Y2505D01* Y2925D01* X290Y2990D01* X115Y2455D02* X185Y2525D01* Y2950D01* X255Y3020D01* X270Y2895D02* X330Y2955D01* X270Y2625D02* Y2895D01* X295Y1410D02* X326Y1379D01* X150Y1790D02* X210Y1730D01* X150Y1790D02* Y2430D01* X1315Y3125D02* X1620D01* X1545Y3000D02* X1582Y2963D01* X1285Y3000D02* X1545D01* X1605Y2150D02* Y2320D01* X700Y1280D02* X730Y1310D01* X700Y1260D02* Y1280D01* X655Y1215D02* X700Y1260D01* X394Y1215D02* X655D01* X295Y1410D02* Y2390D01* X940Y800D02* X1110Y970D01* X1548Y1113D02* X1565Y1130D01* X1415Y1935D02* X1450Y1900D01* Y1575D02* Y1900D01* Y1575D02* X1490Y1535D01* Y1475D02* Y1535D01* Y1475D02* X1495Y1470D01* X1540D01* X1565Y1445D01* Y1130D02* Y1445D01* X1100Y2860D02* X1274Y3034D01* X1140Y2855D02* X1285Y3000D01* X330Y2955D02* X1090D01* X1290Y3155D01* Y3290D01* X290Y2990D02* X1075D01* X1255Y3170D01* Y3310D01* X255Y3020D02* X1050D01* X1225Y3195D01* Y3410D01* X1100Y2665D02* Y2860D01* X875Y2440D02* X1100Y2665D01* X835Y2475D02* X1065Y2705D01* Y2875D01* X1315Y3125D01* X1875Y1200D02* Y1380D01* X1215Y1740D02* Y1799D01* D11* X2256Y2820D02* D03* D12* X2206D02* D03* X2156D02* D03* X2106D02* D03* X2056D02* D03* X2006D02* D03* X1956D02* D03* X1906D02* D03* X1856D02* D03* X1806D02* D03* X1756D02* D03* X1706D02* D03* X1656D02* D03* X1606D02* D03* Y2440D02* D03* X1656D02* D03* X1706D02* D03* X1756D02* D03* X1806D02* D03* X1856D02* D03* X1906D02* D03* X1956D02* D03* X2006D02* D03* X2056D02* D03* X2106D02* D03* X2156D02* D03* X2206D02* D03* X2256D02* D03* X1065Y2020D02* D03* X1115D02* D03* X1165D02* D03* X1215D02* D03* X1265D02* D03* X1315D02* D03* X1365D02* D03* X1415D02* D03* Y1800D02* D03* X1365D02* D03* X1315D02* D03* X1265D02* D03* X1215D02* D03* X1165D02* D03* X1115D02* D03* X1065D02* D03* X3100Y1174D02* D03* X3000D02* D03* X3100Y899D02* D03* X3000D02* D03* X3060Y2994D02* D03* X2960D02* D03* X3060Y2719D02* D03* X2960D02* D03* X1210Y1114D02* D03* X1110D02* D03* X1210Y839D02* D03* X1110D02* D03* D13* X3079Y1385D02* D03* X2962D02* D03* X3139Y3258D02* D03* X3022D02* D03* X3171Y1177D02* D03* X3288D02* D03* X3022Y3061D02* D03* X3139D02* D03* X3212Y1615D02* D03* X1009Y1117D02* D03* X1119Y1227D02* D03* X680Y1476D02* D03* X797D02* D03* X650Y1604D02* D03* X767D02* D03* X3337Y472D02* D03* X3454D02* D03* X3371Y1177D02* D03* X3488D02* D03* X3230Y1279D02* D03* X3347D02* D03* X3079Y1287D02* D03* X2962D02* D03* X3079Y1485D02* D03* X2962D02* D03* X3377Y2352D02* D03* X3494D02* D03* X3239Y3061D02* D03* X3356D02* D03* X3239Y3159D02* D03* X3356D02* D03* X3003D02* D03* X3120D02* D03* X1569Y2205D02* D03* X1452D02* D03* X2281Y2095D02* D03* X2398D02* D03* X2291Y2285D02* D03* X2408D02* D03* X2451Y1915D02* D03* X2568D02* D03* X2471Y1575D02* D03* X2588D02* D03* X3329Y1615D02* D03* X2589Y1475D02* D03* X2472D02* D03* X892Y1117D02* D03* X3288Y1385D02* D03* X3171D02* D03* X1002Y1227D02* D03* X799Y587D02* D03* X682D02* D03* X3359Y3257D02* D03* X3242D02* D03* D14* X970Y1943D02* D03* Y1867D02* D03* X1760Y2217D02* D03* Y2293D02* D03* X1670D02* D03* X2840Y1717D02* D03* Y1793D02* D03* X3000Y2118D02* D03* Y2042D02* D03* X2875Y2067D02* D03* Y2143D02* D03* X1120Y735D02* D03* Y659D02* D03* X1063Y1586D02* D03* Y1662D02* D03* X2430Y2732D02* D03* Y2656D02* D03* X1520Y2668D02* D03* Y2592D02* D03* X2080Y1803D02* D03* Y1727D02* D03* X2170Y2173D02* D03* Y2097D02* D03* X2080Y1973D02* D03* Y1897D02* D03* X1920Y3122D02* D03* Y3046D02* D03* X2090Y3049D02* D03* Y3125D02* D03* X2260Y1487D02* D03* Y1563D02* D03* X2350Y1563D02* D03* Y1487D02* D03* X2170Y1563D02* D03* Y1487D02* D03* Y1723D02* D03* Y1647D02* D03* X2260Y1723D02* D03* Y1647D02* D03* X3660Y2033D02* D03* Y1957D02* D03* X2480Y1147D02* D03* Y1223D02* D03* X2570Y1383D02* D03* Y1307D02* D03* X1560Y1893D02* D03* Y1817D02* D03* X2350Y2732D02* D03* Y2656D02* D03* X2660Y1383D02* D03* Y1307D02* D03* X3250Y2027D02* D03* Y2103D02* D03* X2480Y1383D02* D03* Y1307D02* D03* X1870Y3562D02* D03* Y3486D02* D03* X2110Y3927D02* D03* Y4003D02* D03* X1370Y3489D02* D03* Y3565D02* D03* X1460Y4003D02* D03* Y3927D02* D03* X2480Y1052D02* D03* Y976D02* D03* X1670Y2217D02* D03* X490Y3658D02* D03* Y3582D02* D03* X490Y589D02* D03* Y665D02* D03* X580Y589D02* D03* Y665D02* D03* X1470Y159D02* D03* Y235D02* D03* X1380Y159D02* D03* Y235D02* D03* X1520Y2749D02* D03* Y2825D02* D03* X1820Y2003D02* D03* Y1927D02* D03* X3660Y2177D02* D03* Y2253D02* D03* X1660Y1633D02* D03* Y1557D02* D03* X1210Y738D02* D03* Y662D02* D03* D15* X3118Y1585D02* D03* X3042D02* D03* X1378Y1625D02* D03* X1622Y3034D02* D03* X1302Y1625D02* D03* X973Y1565D02* D03* X897D02* D03* X973Y1476D02* D03* X897D02* D03* X973Y1663D02* D03* X897D02* D03* X1357Y2844D02* D03* X1433D02* D03* X1357Y2479D02* D03* X1433D02* D03* X1357Y2934D02* D03* X1433D02* D03* X1357Y2754D02* D03* X1433D02* D03* X2352Y2834D02* D03* X2428D02* D03* X2248Y1995D02* D03* X2172D02* D03* X2398Y2185D02* D03* X2322D02* D03* X2248Y1905D02* D03* X2172D02* D03* X1658Y2937D02* D03* X1582D02* D03* X1698Y3034D02* D03* Y3127D02* D03* X1622D02* D03* X2398Y2424D02* D03* X2322D02* D03* X2352Y2924D02* D03* X2428D02* D03* X1624Y3218D02* D03* X1700D02* D03* X2248Y1815D02* D03* X2172D02* D03* X2568Y2015D02* D03* X2492D02* D03* X3008Y1725D02* D03* X2932D02* D03* X3008Y1815D02* D03* X2932D02* D03* X3168Y1925D02* D03* X3092D02* D03* X3098Y2205D02* D03* X3022D02* D03* X3168Y1815D02* D03* X3092D02* D03* X3168Y2015D02* D03* X3092D02* D03* X3428Y1720D02* D03* X3352D02* D03* X3268Y2207D02* D03* X3192D02* D03* X2648Y1205D02* D03* X2572D02* D03* X1988Y1905D02* D03* X1912D02* D03* X1728Y1725D02* D03* X1652D02* D03* X1912Y1725D02* D03* X1988D02* D03* X1988Y1995D02* D03* X1912D02* D03* X2428Y2564D02* D03* X1357Y2569D02* D03* X1433D02* D03* X1357Y2664D02* D03* X1433D02* D03* X2568Y1805D02* D03* X2492D02* D03* X3168Y2105D02* D03* X3092D02* D03* X3168Y1725D02* D03* X3092D02* D03* X1812Y2095D02* D03* X1888D02* D03* X1492Y1730D02* D03* X1568D02* D03* X2768Y2095D02* D03* X2692D02* D03* X2748Y1475D02* D03* X2672D02* D03* X1568Y1640D02* D03* X1492D02* D03* X1988Y1815D02* D03* X1912D02* D03* X1728D02* D03* X1652D02* D03* X3660Y472D02* D03* X3584D02* D03* X3660Y669D02* D03* X3584D02* D03* X3660Y866D02* D03* X3584D02* D03* X3660Y1063D02* D03* X3584D02* D03* X3660Y1260D02* D03* X3584D02* D03* X3660Y2352D02* D03* X3584D02* D03* X3660Y2559D02* D03* X3584D02* D03* X3660Y2756D02* D03* X3584D02* D03* X3660Y2953D02* D03* X3584D02* D03* X3660Y3150D02* D03* X3584D02* D03* X2352Y2564D02* D03* X651Y1713D02* D03* X727D02* D03* X1078Y1325D02* D03* X1002D02* D03* X888Y4017D02* D03* X812D02* D03* X978Y587D02* D03* X902D02* D03* X1008Y1017D02* D03* X932D02* D03* D16* X2877Y1975D02* D03* X2870Y1642D02* D03* X1528Y1507D02* D03* X1453D02* D03* X1153Y1419D02* D03* Y1494D02* D03* X2590Y2217D02* D03* Y2292D02* D03* X2183Y3097D02* D03* X2802Y1975D02* D03* X2870Y1567D02* D03* X2750Y1577D02* D03* Y1652D02* D03* X1907Y2174D02* D03* X1737Y2080D02* D03* X1228Y1584D02* D03* X1153D02* D03* X400Y589D02* D03* Y664D02* D03* X2942Y1970D02* D03* X3017D02* D03* X1662Y2080D02* D03* X1832Y2174D02* D03* X2258Y3097D02* D03* D17* X3663Y3346D02* D03* X3503D02* D03* Y1457D02* D03* X3663D02* D03* X3503Y1654D02* D03* X3663D02* D03* X3510Y1775D02* D03* X3670D02* D03* X3503Y3543D02* D03* X3663D02* D03* X3503Y3740D02* D03* X3663D02* D03* X1655Y3563D02* D03* X1495D02* D03* D18* X3500Y1526D02* D03* Y1587D02* D03* Y3477D02* D03* Y3416D02* D03* X659Y1379D02* D03* Y1318D02* D03* X3584Y1316D02* D03* Y1377D02* D03* X3585Y592D02* D03* Y531D02* D03* Y797D02* D03* Y736D02* D03* Y992D02* D03* Y931D02* D03* X3584Y1197D02* D03* Y1136D02* D03* X3580Y2487D02* D03* Y2426D02* D03* Y2687D02* D03* Y2626D02* D03* Y2887D02* D03* Y2826D02* D03* Y3087D02* D03* Y3026D02* D03* Y3277D02* D03* Y3216D02* D03* D19* X3541Y1557D02* D03* Y3447D02* D03* X618Y1348D02* D03* X3625Y1347D02* D03* X3626Y562D02* D03* Y767D02* D03* Y962D02* D03* X3625Y1167D02* D03* X3621Y2457D02* D03* Y2657D02* D03* Y2857D02* D03* Y3057D02* D03* Y3247D02* D03* D20* X3459Y1557D02* D03* Y3447D02* D03* X701Y1348D02* D03* X3543Y1347D02* D03* X3544Y562D02* D03* Y767D02* D03* Y962D02* D03* X3543Y1167D02* D03* X3539Y2457D02* D03* Y2657D02* D03* Y2857D02* D03* Y3057D02* D03* Y3247D02* D03* D21* X720Y747D02* D03* X940D02* D03* D22* X1490Y1427D02* D03* X2839Y1895D02* D03* X1191Y1664D02* D03* X2979Y1890D02* D03* X1700Y2160D02* D03* X1870Y2254D02* D03* X2220Y3017D02* D03* D23* X1073Y1457D02* D03* X2510Y2255D02* D03* X2950Y1604D02* D03* X2670Y1615D02* D03* X320Y627D02* D03* D24* X3225Y463D02* D03* X3035D02* D03* X3275Y607D02* D03* X3465D02* D03* X3265Y2347D02* D03* X3075D02* D03* X3255Y2497D02* D03* X3445D02* D03* X3365Y2225D02* D03* X3555D02* D03* D25* X3426Y758D02* D03* Y875D02* D03* Y965D02* D03* Y1082D02* D03* X3328Y965D02* D03* Y1082D02* D03* X3328Y875D02* D03* Y758D02* D03* X3239Y758D02* D03* X3230Y1085D02* D03* X3376Y2638D02* D03* Y2755D02* D03* Y2845D02* D03* Y2962D02* D03* X3278Y2845D02* D03* Y2962D02* D03* Y2638D02* D03* Y2755D02* D03* X3179Y2638D02* D03* Y2755D02* D03* X3179Y2962D02* D03* Y2845D02* D03* X2913Y3150D02* D03* Y3267D02* D03* X1560Y1986D02* D03* Y2103D02* D03* X1960Y1516D02* D03* Y1633D02* D03* X2080Y2056D02* D03* Y2173D02* D03* X2070Y1633D02* D03* Y1516D02* D03* X2360Y1656D02* D03* Y1773D02* D03* X2750Y1266D02* D03* Y1383D02* D03* X2590Y986D02* D03* Y1103D02* D03* X1820Y1843D02* D03* Y1726D02* D03* X1860Y1516D02* D03* Y1633D02* D03* X1670Y1896D02* D03* Y2013D02* D03* X1760Y1516D02* D03* Y1633D02* D03* X1980Y2086D02* D03* Y2203D02* D03* X3239Y875D02* D03* X3230Y968D02* D03* X3260Y1828D02* D03* Y1711D02* D03* X1250Y158D02* D03* Y275D02* D03* D26* X830Y1374D02* D03* X3108Y2537D02* D03* X3070Y774D02* D03* D27* X875Y1219D02* D03* X785D02* D03* X3025Y619D02* D03* X3115D02* D03* D28* X2146Y3594D02* D03* Y3434D02* D03* X1762Y3444D02* D03* Y3604D02* D03* X1350Y4045D02* D03* Y3885D02* D03* X910Y3657D02* D03* Y3817D02* D03* X2000Y4055D02* D03* Y3895D02* D03* D29* X2254Y3463D02* D03* X1270Y3545D02* D03* X1180Y3548D02* D03* X1090D02* D03* X1240Y3968D02* D03* X1467Y3384D02* D03* X1663Y3467D02* D03* X1959Y3463D02* D03* D30* X2254Y3545D02* D03* X1270Y3463D02* D03* X1180Y3466D02* D03* X1090D02* D03* X1240Y3886D02* D03* X1663Y3384D02* D03* X1467Y3467D02* D03* X1959Y3545D02* D03* D31* X2223Y3504D02* D03* X2284D02* D03* X1300Y3504D02* D03* X1239D02* D03* X1211Y3507D02* D03* X1149D02* D03* X1121D02* D03* X1059D02* D03* X1271Y3927D02* D03* X1209D02* D03* X1497Y3425D02* D03* X1436D02* D03* X1633Y3425D02* D03* X1694D02* D03* X1989Y3504D02* D03* X1928D02* D03* D32* X1553Y2315D02* D03* X1427D02* D03* X2193Y2275D02* D03* X2067D02* D03* X2477Y2125D02* D03* X2603D02* D03* X2462Y1695D02* D03* X2588D02* D03* D33* X1811Y2695D02* D03* X1837D02* D03* X1862D02* D03* X1888D02* D03* X1914D02* D03* X1939D02* D03* X1965D02* D03* X1990D02* D03* X2016D02* D03* X2067D02* D03* X2118D02* D03* X2144D02* D03* X1811Y2955D02* D03* X1837D02* D03* X1862D02* D03* X1888D02* D03* X1914D02* D03* X1939D02* D03* X1965D02* D03* X1990D02* D03* X2016D02* D03* X2042D02* D03* X2067D02* D03* X2093D02* D03* X2118D02* D03* X2042Y2695D02* D03* X2093D02* D03* D34* X2144Y2955D02* D03* D35* X3560Y2109D02* D03* Y2059D02* D03* Y2009D02* D03* Y1959D02* D03* X3340D02* D03* Y2009D02* D03* Y2059D02* D03* Y2109D02* D03* D36* X3410Y1884D02* D03* D37* X3447Y1806D02* D03* X3374D02* D03* D38* X2700Y1985D02* D03* Y1744D02* D03* D39* X910Y3576D02* D03* Y3458D02* D03* D40* X880Y3516D02* D03* X940D02* D03* D41* X919Y3907D02* D03* X801D02* D03* D42* X861Y3877D02* D03* Y3936D02* D03* D43* X1801Y3308D02* D03* X2256D02* D03* D44* X1135Y2105D02* D03* X1520Y3186D02* D03* X1190Y945D02* D03* X2995Y2415D02* D03* X2946Y856D02* D03* Y1165D02* D03* X2855Y625D02* D03* X3565Y2155D02* D03* X2047Y4003D02* D03* X2700Y1790D02* D03* X1811Y551D02* D03* Y394D02* D03* Y206D02* D03* X2251Y236D02* D03* X709Y2756D02* D03* X951D02* D03* X2765Y2150D02* D03* X2588Y1635D02* D03* X2750Y1530D02* D03* X1528Y1558D02* D03* X1020Y1549D02* D03* X997Y2017D02* D03* X3570Y1427D02* D03* X3540Y2352D02* D03* X3410Y3185D02* D03* X3415Y3061D02* D03* X3200Y1515D02* D03* X1245Y1300D02* D03* D45* X2347Y1400D02* D03* X2212D02* D03* X720Y1887D02* D03* X2560Y797D02* D03* X1670Y397D02* D03* X2260D02* D03* X1380D02* D03* X1970D02* D03* X3990Y1657D02* D03* X290Y3450D02* D03* X720Y2457D02* D03* Y917D02* D03* X2815Y2638D02* D03* X2860Y717D02* D03* X3990Y3547D02* D03* D46* X1910Y3892D02* D03* Y3982D02* D03* X2040Y3552D02* D03* Y3462D02* D03* X1570Y3375D02* D03* Y3465D02* D03* D47* X2953Y2492D02* D03* Y2582D02* D03* D48* X1510Y1150D02* X1525Y1165D01* X1515Y455D02* X1520D01* X492Y1820D02* X653D01* X490D02* X492D01* X715Y2251D02* X720Y2257D01* X492Y2251D02* X715D01* X622Y2457D02* X720D01* X492Y2360D02* X525D01* X1302Y1557D02* Y1625D01* X1260Y1515D02* X1302Y1557D01* X610Y1476D02* X680D01* X392Y1433D02* X567D01* X3048Y847D02* X3100Y899D01* X2555Y602D02* X2720Y767D01* X783Y1222D02* X785Y1219D01* X703Y1100D02* X720Y1117D01* X395Y1100D02* X703D01* X115Y1125D02* Y1490D01* X2490Y697D02* X2560D01* X2460Y392D02* Y667D01* X2555Y797D02* X2560D01* X2465D02* X2555D01* X2260Y487D02* X2335D01* X2075Y1727D02* X2080D01* X890Y1740D02* X915Y1765D01* X2172Y2095D02* X2281D01* X2170Y2097D02* X2172Y2095D01* X2170Y1997D02* Y2097D01* Y1997D02* X2172Y1995D01* X897Y1476D02* Y1565D01* X897Y1476D02* X897Y1476D01* X797Y1476D02* X897D01* X1706Y2357D02* Y2440D01* X1670Y2293D02* Y2322D01* X1760Y2293D02* Y2362D01* X1756Y2366D02* Y2440D01* X2488Y2232D02* X2510Y2255D01* X2322Y2185D02* Y2194D01* X2310Y2173D02* X2322Y2185D01* X2170Y2173D02* X2310D01* X2291Y2285D02* X2320Y2313D01* X2281Y2275D02* X2291Y2285D01* X2190Y2272D02* X2193Y2275D01* X2350Y1563D02* X2350Y1563D01* X2260Y1563D02* X2350D01* X2260Y1563D02* X2260Y1563D01* X2260Y1563D02* Y1647D01* X2170Y1563D02* X2260D01* X2170Y1647D02* X2260D01* X2156Y1633D02* X2170Y1647D01* X2070Y1633D02* X2156D01* X2170Y1563D02* Y1647D01* X2293Y1723D02* X2360Y1656D01* X2260Y1723D02* X2293D01* X1560Y1986D02* X1560Y1986D01* X1560Y1893D02* Y1986D01* X2524Y1103D02* X2590D01* X2480Y1147D02* X2524Y1103D01* X2589Y1401D02* Y1475D01* X2570Y1383D02* X2589Y1401D01* X2467Y1780D02* X2492Y1805D01* X2467Y1579D02* X2471Y1575D01* Y1475D02* X2472Y1475D01* X2471Y1475D02* Y1575D01* X2462Y1695D02* X2467Y1780D01* X2462Y1695D02* X2467Y1579D01* X1560Y2260D02* Y2308D01* Y2205D02* Y2260D01* Y2103D02* Y2205D01* X1553Y2315D02* X1560Y2308D01* X2570Y1307D02* X2572Y1305D01* Y1205D02* Y1305D01* X2660Y1307D02* X2709D01* X2570D02* X2660D01* X2480D02* X2570D01* X2480Y1227D02* Y1307D01* X1912Y1815D02* X1988Y1739D01* Y1725D02* Y1739D01* X1650Y1876D02* X1670Y1896D01* X1648Y1817D02* X1650Y1815D01* Y1643D02* X1660Y1633D01* X1650Y1815D02* Y1876D01* Y1727D02* Y1815D01* Y1725D02* Y1727D01* Y1643D02* Y1725D01* X1560Y1817D02* X1648D01* X822Y1663D02* X897D01* X767Y1604D02* Y1609D01* X650Y1712D02* X651Y1713D01* X645Y1706D02* X650Y1712D01* Y1604D02* Y1712D01* X492Y1706D02* X645D01* X2480Y1052D02* X2524D01* X2475Y1047D02* X2480Y1052D01* X2524D02* X2590Y986D01* X2410Y1047D02* X2475D01* X2480Y952D02* Y976D01* X2260Y887D02* X2415D01* X595Y1325D02* X618Y1348D01* X392Y1325D02* X595D01* X803Y1347D02* X830Y1374D01* X701Y1347D02* X803D01* X700D02* X701D01* X1110Y780D02* Y839D01* Y747D02* Y780D01* Y747D02* X1119Y738D01* X1120Y737D01* X320Y562D02* Y627D01* X510Y527D02* X570Y467D01* X2632Y2910D02* X2640Y2902D01* X2400Y2427D02* X2440D01* X2183Y3097D02* X2185D01* X1939Y2566D02* Y2695D01* X1838Y2512D02* X1885D01* X2590Y2332D02* X2590Y2331D01* Y2292D02* Y2331D01* X2554Y2255D02* X2590Y2292D01* X2492Y2020D02* X2495Y2017D01* X2495Y2017D01* Y2015D02* Y2017D01* X1870Y2254D02* X1870Y2254D01* X1870Y2205D02* Y2254D01* Y2152D02* Y2205D01* X1812Y2095D02* X1820Y2087D01* Y2003D02* Y2087D01* X1812Y2095D02* X1813D01* X2255Y3142D02* X2258Y3139D01* Y3097D02* Y3139D01* X2942Y1970D02* Y1975D01* Y1962D02* Y1970D01* X2940Y1969D02* X2942Y1962D01* X2925Y2005D02* X2940Y1969D01* X2248Y1905D02* Y1995D01* Y1815D02* Y1905D01* X2052Y3049D02* X2090D01* X2025Y3050D02* X2052Y3049D01* X1980Y3002D02* X2025Y3050D01* X1965Y2955D02* Y2987D01* Y2914D02* Y2955D01* X1906Y2820D02* Y2854D01* Y2760D02* Y2820D01* Y2760D02* X1913Y2753D01* X1914Y2752D01* Y2695D02* Y2752D01* X1988Y1860D02* Y1905D01* Y1815D02* Y1860D01* X2638Y2805D02* X2640Y2807D01* X2220Y3062D02* X2303D01* X2554Y2219D02* Y2255D01* X2542Y2207D02* X2554Y2219D01* X1906Y2854D02* X1965Y2914D01* X1813Y2095D02* X1870Y2152D01* X1756Y2366D02* X1760Y2362D01* X2320Y2313D02* Y2417D01* X2175Y2272D02* X2190D01* X567Y1433D02* X610Y1476D01* X355Y527D02* X510D01* X320Y562D02* X355Y527D01* X2375Y707D02* X2465Y797D01* X2375Y527D02* Y707D01* X2335Y487D02* X2375Y527D01* X2460Y667D02* X2490Y697D01* X3030Y847D02* X3048D01* X2950Y767D02* X3030Y847D01* X2415Y887D02* X2480Y952D01* X2480Y1227D02* X2480Y1227D01* X2709Y1307D02* X2745Y1271D01* X2185Y3097D02* X2220Y3062D01* X1965Y2987D02* X1980Y3002D01* X2322Y2194D02* X2360Y2232D01* Y2235D01* Y2232D02* X2488D01* X653Y1820D02* X715Y1882D01* X525Y2360D02* X622Y2457D01* X1885Y2512D02* X1939Y2566D01* X2720Y767D02* X2950D01* X1670Y2322D02* X1706Y2357D01* X1510Y460D02* Y1150D01* Y460D02* X1515Y455D01* X767Y1609D02* X822Y1663D01* X915Y1765D02* Y2400D01* X1140Y2625D01* Y2855D01* X2660Y1383D02* X2672Y1395D01* Y1475D01* X2670Y1476D02* Y1560D01* Y1615D01* Y1476D02* X2672Y1475D01* D49* X470Y167D02* Y467D01* X1728Y3637D02* X1762Y3604D01* X1728Y3637D02* Y3685D01* X1762Y3554D02* Y3604D01* X1663Y3467D02* X1675D01* X1970Y897D02* X2012D01* X1960Y1460D02* Y1516D01* X2170Y1475D02* Y1487D01* X1970Y797D02* X2072D01* X2451Y1896D02* Y1915D01* X2360Y1820D02* X2405D01* X3233Y2265D02* X3234Y2264D01* X3268Y2230D01* X3233Y2265D02* X3240Y2270D01* X3268Y2207D02* Y2230D01* X2692Y2167D02* X2765Y2270D01* X2692Y2095D02* Y2167D01* X1346Y3881D02* X1350Y3885D01* X1346Y3795D02* Y3881D01* Y3638D02* Y3795D01* X1180Y3548D02* X1196D01* X1660Y3384D02* Y3385D01* Y3355D02* Y3384D01* Y3355D02* X1665Y3350D01* X842Y845D02* X940Y747D01* X392Y2088D02* X718D01* X579Y589D02* X580Y589D01* X490Y589D02* X579D01* X400D02* X490D01* X682Y523D02* Y587D01* X570Y467D02* X625D01* X1432Y197D02* X1470Y159D01* X1250Y158D02* X1289Y197D01* X1242Y167D02* X1250Y158D01* X1070Y167D02* X1242D01* X3454Y2109D02* X3560D01* X3453Y2110D02* X3454Y2109D01* X3418Y1673D02* X3428Y1720D01* X3415Y1670D02* X3418Y1673D01* X3415Y1575D02* Y1670D01* X3200Y1515D02* X3355D01* X2946Y856D02* X2950Y860D01* X2945Y855D02* X2946Y856D01* X1465Y1245D02* X1470Y1240D01* X1232Y1227D02* X1250Y1245D01* X1119Y1227D02* X1232D01* X1005Y945D02* Y1015D01* X1856Y2409D02* Y2440D01* X2568Y2015D02* Y2038D01* Y1805D02* X2571Y1802D01* X2750Y1652D02* X2784Y1685D01* X2528Y1844D02* X2568Y1805D01* X1907Y2174D02* X1922Y2189D01* X1907Y2168D02* Y2174D01* Y2168D02* X1935Y2140D01* X1745Y2082D02* Y2115D01* X3435Y3735D02* X3440Y3740D01* X3239Y3061D02* Y3159D01* X3238Y3060D02* X3239Y3061D01* X3229D02* X3239D01* X3190Y3100D02* X3229Y3061D01* X3139Y3060D02* X3238D01* X3135D02* X3139D01* X3275Y2850D02* Y2900D01* Y2638D02* Y2640D01* Y2590D02* Y2638D01* X2960Y2719D02* Y2800D01* X2825Y3150D02* X2913D01* X2328Y3504D02* X2330Y3502D01* X2820Y3155D02* X2825Y3150D01* X2955Y2495D02* X2995Y2455D01* Y2232D02* X3022Y2205D01* X2995Y2415D02* Y2455D01* Y2232D02* Y2415D01* X2636Y2217D02* X2637Y2218D01* X2768Y2095D02* X2780Y2083D01* X2613Y2194D02* X2636Y2217D01* X2590D02* X2636D01* X2440Y2310D02* X2465D01* X2398Y2095D02* Y2185D01* Y2095D02* X2398Y2095D01* X2400Y2093D01* Y2040D02* Y2093D01* X3247Y1177D02* X3288D01* X3245Y1175D02* X3247Y1177D01* X3579Y470D02* X3580Y469D01* X3584Y465D01* X3487Y920D02* X3540Y867D01* X3328Y965D02* X3330Y963D01* Y915D02* Y963D01* Y875D02* Y915D01* Y875D02* Y875D01* Y915D02* X3335Y920D01* X2780Y1997D02* X2802Y1975D01* X2870Y1530D02* Y1567D01* Y1530D02* Y1530D01* X2750Y1530D02* Y1577D01* Y1475D02* Y1530D01* Y1465D02* Y1475D01* X2870Y1520D02* X2870Y1530D01* X2248Y1995D02* X2260D01* X2248Y1815D02* X2290D01* X2248Y1815D02* X2248Y1815D01* X2651Y1695D02* X2700Y1744D01* X2588Y1635D02* Y1690D01* Y1575D02* Y1635D01* X2588Y1695D02* X2588Y1690D01* X2750Y1383D02* Y1465D01* X2648Y1153D02* Y1205D01* X2645Y1150D02* X2648Y1153D01* X3000Y975D02* X3000Y975D01* X3000Y899D02* Y975D01* X2350Y1485D02* X2350D01* X2262D02* X2350D01* X2480Y1385D02* X2480D01* X2425D02* X2480D01* X2284Y3504D02* X2328D01* X2223D02* X2284D01* X2187D02* X2223D01* X2000Y4055D02* X2010D01* X1928Y3504D02* X1989D01* X1888D02* X1928D01* X2145Y3434D02* Y3462D01* Y3432D02* Y3434D01* X1870Y3486D02* X1888Y3504D01* X1815Y3447D02* X1855Y3487D01* X1812Y3444D02* X1815Y3447D01* X1762Y3444D02* X1812D01* X1743Y3425D02* X1762Y3444D01* X1694Y3425D02* X1743D01* X1633D02* X1694D01* X1624Y3279D02* X1625Y3280D01* X1624Y3218D02* Y3279D01* X2067Y2271D02* X2120Y2265D01* X1830Y2206D02* Y2364D01* Y2176D02* Y2206D01* Y2176D02* X1832Y2174D01* X1817Y2377D02* X1830Y2364D01* X1662Y2021D02* Y2080D01* Y2021D02* X1670Y2013D01* X1684Y1999D01* X1370Y3442D02* X1387Y3425D01* X1436D02* X1497D01* X1387D02* X1436D01* X1352Y3507D02* X1370Y3489D01* X1370Y3442D02* Y3487D01* X1452Y2203D02* X1455Y2200D01* X1427Y2228D02* X1451Y2204D01* X1452Y2203D01* X1427Y2228D02* Y2315D01* X1452Y2203D02* Y2205D01* Y2132D02* Y2203D01* X1450Y2130D02* X1452Y2132D01* X1300Y3507D02* X1352D01* X1239D02* X1300D01* X1211D02* X1239D01* X1149D02* X1211D01* X1121D02* X1149D01* X1059D02* X1121D01* X1010D02* X1059D01* X2230Y1453D02* X2262Y1485D01* X2212Y1435D02* X2230Y1453D01* X2212Y1400D02* Y1435D01* Y1396D02* Y1400D01* X2070Y1470D02* Y1515D01* X1728Y1725D02* Y1815D01* X1684Y1999D02* X1685Y1980D01* X1820Y1725D02* X1820D01* X1728D02* X1820D01* X1728Y1725D02* X1728Y1725D01* X1528Y1558D02* X1565Y1595D01* X1120Y660D02* X1120D01* X1093D02* X1120D01* X1020Y587D02* X1093Y660D01* X1181Y275D02* X1250D01* X1180D02* X1181D01* X1180D02* X1181Y275D01* X3455Y470D02* X3579D01* X3335Y920D02* X3487D01* X3440Y3740D02* X3500D01* X2410Y2285D02* X2415D01* X2440Y2310D01* X2600Y2181D02* X2613Y2194D01* X2600Y2125D02* Y2181D01* X2595Y1695D02* X2651D01* X2750Y1465D02* X2750Y1465D01* X3290Y1175D02* X3365D01* X3285Y1170D02* X3290Y1175D01* X2528Y1844D02* Y1965D01* X2530Y1854D02* X2762D01* X2540Y2066D02* Y2205D01* X2542Y2207D01* X2540Y2066D02* X2568Y2038D01* X2528Y1965D02* X2568Y2004D01* X1856Y2409D02* X1880Y2385D01* Y2370D02* Y2385D01* X625Y467D02* X682Y523D01* X1289Y197D02* X1432D01* X2145Y3462D02* X2187Y3504D01* X1675Y3467D02* X1762Y3554D01* X1855Y3487D02* X1870D01* X1310Y3602D02* X1346Y3638D01* X1250Y3602D02* X1310D01* X1196Y3548D02* X1250Y3602D01* X3355Y1515D02* X3415Y1575D01* X2135Y1440D02* X2170Y1475D01* X2135Y860D02* Y1440D01* X2072Y797D02* X2135Y860D01* X2055Y940D02* Y1365D01* X2012Y897D02* X2055Y940D01* X2780Y1997D02* Y2083D01* X2420Y1865D02* X2451Y1896D01* X2420Y1835D02* Y1865D01* X2405Y1820D02* X2420Y1835D01* X2955Y2495D02* X2955Y2495D01* X2938Y1975D02* X2938Y1974D01* X2938Y1975D02* X2942Y1975D01* X2784Y1685D02* Y1832D01* X2762Y1854D02* X2784Y1832D01* X1880Y2370D02* X1922Y2328D01* Y2189D02* Y2328D01* X1755Y1837D02* Y1885D01* X1735Y1817D02* X1755Y1837D01* Y1885D02* X1797Y1927D01* X1802D01* X1565Y1595D02* Y1640D01* X1470Y235D02* Y1240D01* X1960Y1460D02* X2055Y1365D01* X660Y845D02* X842D01* X620Y885D02* X660Y845D01* X620Y885D02* Y980D01* X555Y1045D02* X620Y980D01* D50* X780Y2370D02* X790Y2380D01* X780Y1895D02* Y2370D01* Y1840D02* Y1895D01* X1760Y2155D02* Y2217D01* X1608Y497D02* X1670D01* X1150Y1920D02* Y1955D01* X2495Y2687D02* X2580D01* X2430Y2656D02* X2464D01* X1322Y2844D02* X1357D01* X1220Y2736D02* X1259D01* X1317Y2934D02* X1357D01* X1220Y2795D02* X1243D01* X2467Y2864D02* X2580D01* X2428Y2834D02* X2437D01* X2080Y1720D02* Y1727D01* X2025Y1665D02* X2080Y1720D01* X2025Y1665D02* X2025Y1665D01* Y1665D02* Y1665D01* X1960Y1633D02* X1993D01* X835Y2100D02* Y2475D01* X1837Y2654D02* Y2695D01* X1656Y2440D02* Y2472D01* X1505Y2030D02* X1570D01* X835Y2065D02* X840Y2060D01* X797Y1476D02* Y1493D01* X1862Y2639D02* Y2695D01* X1706Y2440D02* Y2482D01* X1888Y2625D02* Y2695D01* X1756Y2440D02* Y2492D01* X1965Y2550D02* Y2695D01* X1906Y2440D02* Y2491D01* Y2399D02* Y2440D01* X1970Y2335D02* X2225D01* X2870Y2465D02* Y2530D01* X3000Y2118D02* Y2150D01* X1990Y2650D02* Y2695D01* Y2537D02* Y2650D01* X1956Y2440D02* Y2502D01* X2800Y2465D02* Y2480D01* X2875Y2143D02* Y2390D01* X2016Y2620D02* Y2695D01* Y2498D02* Y2620D01* X2006Y2440D02* Y2487D01* X2760Y2970D02* X2765Y2965D01* X2840Y1793D02* Y1825D01* X2400Y2970D02* X2590D01* X2067Y2695D02* Y2722D01* Y2590D02* Y2695D01* X2106Y2440D02* Y2551D01* X2430Y2707D02* Y2732D01* X2235Y2695D02* X2237Y2697D01* X2225Y2685D02* X2235Y2695D01* X2145D02* X2235D01* X2144D02* X2145D01* X2256Y2440D02* Y2509D01* Y2376D02* Y2440D01* X2145Y2695D02* Y2695D01* X2095Y2360D02* X2100Y2365D01* X1862Y2955D02* Y2999D01* X1698Y3034D02* X1716Y3052D01* X1888Y2955D02* Y3004D01* X1698Y3127D02* X1805D01* X2290Y2535D02* Y2670D01* X2093Y2919D02* X2133Y2878D01* X2156Y2856D01* Y2820D02* Y2856D01* X2093Y2919D02* Y2955D01* X2321D02* X2352Y2924D01* X2337Y2820D02* X2352Y2834D01* X2256Y2820D02* X2337D01* X2157Y2955D02* X2321D01* X2144D02* X2157D01* X2256Y2856D01* Y2820D02* Y2856D01* X2080Y1973D02* X2080Y1973D01* Y2056D01* X2291Y2221D02* Y2285D01* X2193Y2223D02* Y2275D01* X2175Y2205D02* X2275D01* X2108D02* X2175D01* X2193Y2223D01* X2080Y2173D02* Y2177D01* X1914Y3040D02* X1920Y3046D01* X1914Y2955D02* Y3040D01* X2255Y2535D02* Y2670D01* X2245Y2230D02* X2255Y2240D01* X2220Y2040D02* Y2060D01* X2125Y3017D02* X2220D01* X2118Y2923D02* Y2955D01* X2206Y2820D02* Y2859D01* Y2779D02* Y2820D01* Y2779D02* X2220Y2765D01* X2172Y1815D02* X2175D01* X2932D02* Y1878D01* X2839Y1895D02* X2915D01* X2578Y2567D02* X2580Y2569D01* X2428Y2567D02* X2578D01* X2425D02* X2428D01* X1343Y2569D02* X1357D01* X1220Y2618D02* X1294D01* X1344Y2677D02* X1357Y2664D01* X1220Y2677D02* X1344D01* X2338Y2720D02* X2350Y2732D01* X2168Y2728D02* X2169D01* X2160Y2737D02* X2169Y2728D01* X2177Y2720D01* X2180Y2501D02* X2185Y2495D01* X2186Y2495D01* X2206Y2475D01* Y2440D02* Y2475D01* X2185Y2495D02* X2186D01* X2118Y2695D02* Y2720D01* Y2637D02* Y2695D01* X1305Y2362D02* Y2425D01* X1230Y2287D02* X1305Y2362D01* X2350Y2642D02* Y2656D01* X1860Y1633D02* Y1673D01* X1912Y1725D01* X1760Y1610D02* Y1633D01* X1660Y1557D02* X1692D01* X1980Y2086D02* X1988Y2078D01* Y1995D02* Y2078D01* X1980Y2235D02* X1980Y2235D01* Y2203D02* Y2235D01* X1520Y2348D02* X1553Y2315D01* X1520Y2348D02* Y2592D01* X1647Y1730D02* X1650Y1727D01* X1652Y1725D01* X1811Y2688D02* Y2695D01* X1606Y2440D02* Y2482D01* X1598Y2447D02* X1606Y2440D01* X1455Y1935D02* Y2060D01* X1433Y2479D02* Y2569D01* X2316Y2594D02* X2352Y2564D01* X2042Y2594D02* Y2695D01* Y2555D02* Y2594D01* X2056Y2440D02* Y2541D01* X2093Y2619D02* Y2695D01* X2156Y2440D02* Y2556D01* X2093Y2619D02* X2142Y2570D01* X2156Y2556D01* X745Y1405D02* Y1500D01* X727Y1707D02* Y1713D01* X3118Y1585D02* Y1602D01* X2048Y3125D02* X2090D01* X1939Y2955D02* Y2996D01* X2025Y1695D02* Y1950D01* X1670Y2210D02* Y2217D01* X1670Y590D02* X1705D01* X1615Y1965D02* X1620D01* X1615D02* Y2040D01* X2710Y2910D02* X2725Y2895D01* Y2340D02* Y2895D01* X2016Y2893D02* Y2955D01* X2006Y2875D02* Y2882D01* Y2820D02* Y2875D01* X2360Y2080D02* Y2140D01* X2290Y1875D02* Y2010D01* X1995Y2875D02* X2005Y2860D01* X1490Y1427D02* X1525D01* X1120Y738D02* X1210D01* X1119D02* X1120D01* X1378Y1625D02* Y1647D01* X1130Y2187D02* X1130Y2187D01* X1135Y2105D02* X1140Y2100D01* X1130Y2187D02* X1135Y2105D01* X2477Y2125D02* X2492Y2110D01* Y2020D02* Y2110D01* Y2015D02* Y2020D01* Y1877D02* Y2015D01* X2415Y1773D02* X2423D01* X2360D02* X2415D01* Y1470D02* Y1773D01* X2347Y1400D02* Y1402D01* X1572Y3982D02* X1910D01* X1330Y3960D02* X1335Y3965D01* X80Y3160D02* X515D01* X35Y1595D02* Y3115D01* X1475Y2749D02* X1520D01* X1438D02* X1475D01* X1433Y2754D02* X1438Y2749D01* X1433Y2652D02* Y2664D01* X1424D02* X1433D01* X1395Y2620D02* Y2635D01* Y2445D02* Y2620D01* X1340Y2125D02* Y2390D01* X810Y1795D02* Y2135D01* X1600Y2825D02* X1606Y2820D01* X1520Y2825D02* X1600D01* X3000Y2042D02* X3017Y2019D01* X2056Y2820D02* Y2820D01* X2042Y2880D02* X2055Y2867D01* X2042Y2880D02* Y2955D01* X2700Y2225D02* Y2371D01* X2660Y2095D02* Y2185D01* X2700Y2225D01* X2680Y2885D02* X2705Y2860D01* X2700Y2371D02* X2705Y2375D01* Y2860D01* X1116Y740D02* X1119Y738D01* X2800Y2465D02* X2875Y2390D01* X2830Y2470D02* X2935Y2365D01* X2830Y2470D02* Y2530D01* X2870Y2465D02* X2960Y2375D01* X1265Y2882D02* X1317Y2934D01* X1265Y2817D02* Y2882D01* X1243Y2795D02* X1265Y2817D01* X1295D02* X1322Y2844D01* X1295Y2772D02* Y2817D01* X1259Y2736D02* X1295Y2772D01* X1294Y2618D02* X1343Y2569D01* X2420Y2697D02* X2430Y2707D01* X2370Y2622D02* X2574D01* X2350Y2642D02* X2370Y2622D01* X2464Y2656D02* X2495Y2687D01* X1956Y2502D02* X1990Y2537D01* X2006Y2487D02* X2016Y2498D01* X2067Y2590D02* X2106Y2551D01* X2437Y2834D02* X2467Y2864D01* X2120Y2957D02* Y3012D01* X2125Y3017D01* X1990Y3067D02* X2048Y3125D01* X1990Y3047D02* Y3067D01* X1939Y2996D02* X1990Y3047D01* X2067Y2905D02* X2106Y2866D01* X2006Y2882D02* X2016Y2893D01* X1956Y2872D02* X1990Y2907D01* X1850Y3012D02* Y3037D01* X1716Y3052D02* X1835D01* X1850Y3037D01* Y3012D02* X1862Y2999D01* X1805Y3127D02* X1870Y3062D01* Y3022D02* Y3062D01* Y3022D02* X1888Y3004D01* X2118Y2923D02* X2129Y2913D01* X2152D01* X1395Y2635D02* X1424Y2664D01* X2175Y1815D02* X2210Y1850D01* Y2030D01* X2220Y2040D01* X2175Y2755D02* X2190Y2740D01* X2285D02* X2315Y2770D01* X2067Y2722D02* X2085Y2740D01* X2110D01* X2125Y2755D01* X2175D01* X2055Y2820D02* Y2867D01* X2005Y2820D02* Y2860D01* X1906Y2491D02* X1965Y2550D01* X1990Y2980D02* X2015Y3005D01* X2423Y1773D02* X2448Y1798D01* Y1840D01* X2465Y1857D02* X2472D01* X2448Y1840D02* X2465Y1857D01* X2472D02* X2492Y1877D01* X2347Y1402D02* X2415Y1470D01* X2960Y2190D02* Y2375D01* Y2190D02* X3000Y2150D01* X2765Y2595D02* X2830Y2530D01* X2610Y2045D02* X2660Y2095D01* X2935Y2040D02* X2975Y2000D01* X2935Y2040D02* Y2365D01* X3017Y1975D02* Y2019D01* X2800Y1930D02* X2805Y1935D01* X2800Y1865D02* Y1930D01* X2970Y1935D02* X2975Y1940D01* Y2000D01* X2805Y1935D02* X2970D01* X2800Y1865D02* X2840Y1825D01* X2915Y1895D02* X2932Y1878D01* X2152Y2913D02* X2206Y2859D01* X2190Y2740D02* X2285D01* X2042Y2555D02* X2056Y2541D01* X2138Y2574D02* X2141Y2571D01* X2080Y2177D02* X2108Y2205D01* X2275D02* X2291Y2221D01* X2255Y2330D02* X2285Y2360D01* X2255Y2240D02* Y2330D01* X1906Y2399D02* X1970Y2335D01* X2237Y2697D02* X2420D01* X2285Y2360D02* Y2505D01* X2255Y2535D02* X2285Y2505D01* X2118Y2637D02* X2180Y2575D01* Y2501D02* Y2575D01* X2225Y2645D02* X2237Y2633D01* X2225Y2645D02* Y2685D01* X2237Y2528D02* X2256Y2509D01* X2237Y2528D02* Y2633D01* X1575Y1730D02* X1647D01* X1605Y1855D02* X1615Y1865D01* X1760Y2155D02* X1775Y2140D01* X1715Y2169D02* Y2325D01* X2245Y2365D02* X2256Y2376D01* X2100Y2365D02* X2245D01* X2177Y2720D02* X2338D01* X2135Y2737D02* X2160D01* X2118Y2720D02* X2135Y2737D01* X1656Y2472D02* X1837Y2654D01* X1706Y2482D02* X1862Y2639D01* X1756Y2492D02* X1888Y2625D01* X1606Y2482D02* X1811Y2688D01* X1575Y2390D02* Y2485D01* X1745Y2655D01* X2390Y2785D02* Y2960D01* X2400Y2970D01* X2375Y2770D02* X2390Y2785D01* X2315Y2770D02* X2375D01* X2765Y2595D02* Y2965D01* X2290Y2010D02* X2360Y2080D01* X1735Y1585D02* X1760Y1610D01* X1725Y1910D02* X1775Y1960D01* X1725Y1875D02* Y1910D01* X1710Y1860D02* X1725Y1875D01* X1695Y1860D02* X1710D01* X1690Y1855D02* X1695Y1860D01* X1690Y1680D02* Y1855D01* Y1680D02* X1705Y1665D01* X1692Y1557D02* X1720Y1585D01* X1735D01* X1695Y1595D02* X1705Y1605D01* X1620Y1595D02* X1695D01* X1705Y1605D02* Y1665D01* X1775Y1960D02* Y2140D01* X1560Y545D02* X1608Y497D01* X1705Y590D02* X1840Y725D01* Y1390D01* X1910Y1460D01* X1700Y2055D02* X1710Y2045D01* X1720D01* X1735Y2030D01* Y1955D02* Y2030D01* X1720Y1940D02* X1735Y1955D01* X1615Y1865D02* Y1920D01* Y2040D02* X1630Y2055D01* X1615Y1920D02* X1635Y1940D01* X1720D01* X1560Y835D02* X1610Y885D01* Y1585D02* X1620Y1595D01* X1560Y545D02* Y835D01* X1610Y885D02* Y1585D01* X1910Y1660D02* X1925Y1675D01* X1910Y1460D02* Y1660D01* X1925Y1675D02* X2005D01* X2025Y1695D01* X1993Y1633D02* X2025Y1665D01* X1630Y2170D02* X1670Y2210D01* X1555Y3965D02* X1572Y3982D01* X1335Y3965D02* X1555D01* X35Y3115D02* X80Y3160D01* X1340Y2390D02* X1395Y2445D01* X1435Y2450D02* X1485Y2400D01* Y2090D02* Y2400D01* X1455Y2060D02* X1485Y2090D01* X1435Y2450D02* Y2475D01* X1630Y2055D02* Y2170D01* X1610Y2070D02* Y2145D01* X1570Y2030D02* X1610Y2070D01* X1605Y2150D02* X1610Y2145D01* X1510Y1775D02* Y1840D01* X1492Y1757D02* X1510Y1775D01* Y1840D02* X1525Y1855D01* X1605D01* X1140Y2100D02* X1280D01* X1290Y2090D01* Y1735D02* X1378Y1647D01* X1130Y2187D02* X1130Y2187D01* X690Y1555D02* Y1670D01* Y1555D02* X745Y1500D01* X690Y1670D02* X727Y1707D01* X720Y1570D02* Y1640D01* Y1570D02* X797Y1493D01* X720Y1640D02* X740Y1660D01* X770D01* X840Y1730D01* X1150Y1920D02* X1165Y1905D01* Y1805D02* Y1905D01* X775Y1835D02* X780Y1840D01* X840Y1730D02* Y2060D01* X1492Y1640D02* Y1730D01* Y1757D01* X1700Y2055D02* Y2160D01* Y2160D01* X1575Y2390D02* X1605Y2360D01* X1715Y2325D02* X1725Y2335D01* X1745Y2655D02* Y2665D01* X2067Y2905D02* Y2955D01* X2085Y2765D02* X2106Y2786D01* Y2820D01* Y2866D01* X1956Y2794D02* Y2820D01* Y2872D01* X1990Y2907D02* Y2955D01* Y2980D01* X2610Y1965D02* Y2045D01* X2015Y3005D02* X2070D01* X2265D02* X2590D01* X2680Y2885D02* Y3005D01* X-390Y6320D02* X-343D01* X-367D01* Y6250D01* X-308D02* X-285D01* X-273Y6262D01* Y6285D01* X-285Y6297D01* X-308D01* X-320Y6285D01* Y6262D01* X-308Y6250D01* X-250Y6227D02* Y6297D01* X-215D01* X-203Y6285D01* Y6262D01* X-215Y6250D01* X-250D01* X-110Y6320D02* Y6250D01* X-63D01* X-28Y6297D02* X-5D01* X7Y6285D01* Y6250D01* X-28D01* X-40Y6262D01* X-28Y6273D01* X7D01* X30Y6297D02* Y6262D01* X42Y6250D01* X77D01* Y6238D01* X65Y6227D01* X53D01* X77Y6250D02* Y6297D01* X135Y6250D02* X112D01* X100Y6262D01* Y6285D01* X112Y6297D01* X135D01* X146Y6285D01* Y6273D01* X100D01* X170Y6297D02* Y6250D01* Y6273D01* X181Y6285D01* X193Y6297D01* X205D01* D51* X3139Y3258D02* X3143Y3262D01* X3879Y3247D02* X3990D01* X3780Y3346D02* X3780Y3346D01* X3879Y3247D01* X3663Y3346D02* X3780D01* X3780Y1654D02* X3780Y1654D01* X3663Y1654D02* X3780D01* X3571Y1562D02* X3663Y1654D01* X3774Y1856D02* X3775Y1857D01* X3693Y1775D02* X3774Y1856D01* X3670Y1775D02* X3693D01* X3415Y3061D02* X3526D01* X3356D02* X3415D01* X3534Y3053D02* X3535Y3052D01* X3526Y3061D02* X3534Y3053D01* X3470Y3247D02* X3539D01* X3409Y3186D02* X3470Y3247D01* X3383Y3159D02* X3409Y3186D01* X3356Y3159D02* X3383D01* X3359Y3257D02* Y3415D01* X3775Y3527D02* Y3543D01* X3780D01* X3663D02* X3775D01* X3663D02* X3663D01* X3663Y3543D02* X3663Y3543D01* X3566Y3447D02* X3663Y3543D01* X3541Y3447D02* X3566D01* X3950Y3447D02* X3990D01* X3780Y3740D02* X3780D01* X3663D02* X3780D01* X3268Y2121D02* Y2207D01* X3257Y2109D02* X3340D01* X3252D02* X3257D01* X3268Y2121D01* X3250Y2103D02* X3257Y2109D01* X2692Y2095D02* X2700Y2087D01* Y1985D02* Y2087D01* X2568Y1915D02* X2623D01* X3621Y2657D02* X3660Y2618D01* Y2559D02* Y2618D01* Y2559D02* X3777D01* X3780Y2756D02* X3780Y2756D01* X3621Y2857D02* X3660Y2818D01* Y2756D02* Y2818D01* Y2756D02* X3780D01* X3870Y3047D02* X3990D01* X3660Y2953D02* Y3018D01* Y2953D02* Y2953D01* X3621Y3057D02* X3660Y3018D01* Y2953D02* X3660Y2953D01* X3780D01* X3660D02* X3660D01* X3780Y3150D02* X3988D01* X3776Y3153D02* X3780Y3157D01* X3773Y3150D02* X3776Y3153D01* X3621Y3247D02* X3635D01* X3660Y3150D02* X3773D01* X3660D02* Y3222D01* X1090Y3200D02* Y3466D01* X290Y3250D02* X535D01* X1240Y4000D02* X1240Y4000D01* X1240Y3968D02* Y4000D01* X3555Y2222D02* X3560Y2217D01* X3593Y2183D01* X3600Y2177D01* X3660D01* X3560Y2155D02* Y2217D01* Y2109D02* Y2155D01* X3425Y1775D02* X3447Y1806D01* X3425Y1775D02* X3428Y1720D01* X2946Y856D02* Y1165D01* X1470Y235D02* X1525D01* X1470D02* X1470D01* X1670Y197D02* Y397D01* X1002Y1227D02* X1008Y1220D01* Y1117D02* Y1220D01* Y1017D02* Y1117D01* X2635Y2924D02* X2640Y2919D01* X2428Y2924D02* X2635D01* X2640Y2919D02* Y3009D01* Y2902D02* Y2919D01* Y2807D02* Y2902D01* X2580Y2805D02* X2638D01* X2440Y2427D02* X2495D01* X1856Y2440D02* Y2494D01* X1838Y2512D02* X1856Y2494D01* X2584Y2337D02* X2638Y2391D01* X2584Y2337D02* X2590Y2332D01* X2568Y2004D02* Y2015D01* X1337Y2754D02* X1357D01* X1310Y2727D02* X1337Y2754D01* X1311Y2479D02* X1357D01* X997Y2017D02* X998Y2015D01* X1025Y1989D01* X998Y2015D02* X1003Y2020D01* X970Y1987D02* X998Y2015D01* X970Y1943D02* Y1987D01* X1228Y1569D02* Y1584D01* X997Y1737D02* X1025Y1766D01* X973Y1714D02* X997Y1737D01* X973Y1663D02* Y1714D01* X1378Y1507D02* X1453D01* X1260Y1415D02* X1286D01* X1241D02* X1260D01* X1296Y1379D01* Y391D02* Y395D01* X1153Y1494D02* X1162D01* X1096Y1506D02* Y1528D01* X1153Y1499D02* X1158D01* X1096D02* X1153D01* X1035D02* X1096D01* X973Y1476D02* X1013D01* X799Y587D02* X902D01* X902Y535D02* Y587D01* X3584Y3147D02* X3585D01* X3580D02* X3584D01* X3535D02* X3580D01* X3584Y2952D02* X3585D01* X3580D02* X3584D01* X3580Y2953D02* X3584D01* X3541D02* X3580D01* Y3216D02* Y3277D01* Y3150D02* Y3216D01* Y3147D02* Y3150D01* Y3087D02* Y3147D01* Y3026D02* Y3087D01* Y2953D02* Y3026D01* Y2952D02* Y2953D01* Y2887D02* Y2952D01* Y2826D02* Y2887D01* Y2757D02* Y2826D01* Y2756D02* Y2757D01* Y2687D02* Y2756D01* Y2626D02* Y2687D01* Y2559D02* Y2626D01* Y2487D02* Y2559D01* Y2426D02* Y2487D01* Y2356D02* Y2426D01* X3540Y2952D02* X3541Y2953D01* X3498Y3539D02* X3503Y3543D01* X3437D02* X3503D01* X3435Y3545D02* X3437Y3543D01* X3498Y3351D02* X3503Y3346D01* X3545D01* X3436D02* X3503D01* X3498Y3477D02* Y3539D01* Y3416D02* Y3477D01* Y3351D02* Y3416D01* X3660Y2253D02* X3719D01* X3720Y2252D01* X3764Y2032D02* X3780Y2047D01* X3660Y2032D02* X3764D01* X3659D02* X3660D01* X3655D02* X3659D01* X3633Y2059D02* X3660Y2033D01* X3660Y2033D01* X3659Y2032D02* X3660Y2033D01* X3636Y2009D02* X3659Y2032D01* X3580Y2757D02* X3580D01* X3540D02* X3580D01* Y2559D02* X3584D01* X3542D02* X3580D01* Y2356D02* X3584Y2352D01* X3540D02* X3584D01* X3494D02* X3540D01* X3560Y2059D02* X3633D01* X3560Y2009D02* X3636D01* X3340D02* X3560D01* X3267D02* X3340D01* X3393Y2225D02* X3445Y2277D01* X3365Y2225D02* X3393D01* X3250Y2027D02* X3267Y2009D01* X3503Y1457D02* X3540D01* X3570Y1427D02* Y1427D01* X3510Y1832D02* X3510Y1832D01* X3510D02* Y1832D01* Y1775D02* Y1832D01* X3570Y1427D02* X3584Y1413D01* X3535Y1257D02* X3584D01* Y1377D02* Y1413D01* Y1316D02* Y1377D01* Y1260D02* Y1316D01* Y1257D02* Y1260D01* Y1197D02* Y1257D01* Y1136D02* Y1197D01* Y1063D02* Y1136D01* Y992D02* Y1063D01* Y931D02* Y992D01* Y866D02* Y931D01* Y797D02* Y866D01* Y736D02* Y797D01* Y692D02* Y736D01* Y669D02* Y692D01* Y620D02* Y669D01* Y592D02* Y620D01* Y531D02* Y592D01* Y472D02* Y531D01* Y465D02* Y472D01* Y398D02* Y465D01* X3535Y1257D02* X3538Y1260D01* X3500Y1702D02* X3505Y1707D01* X3500Y1459D02* X3503Y1457D01* X3500Y1654D02* Y1702D01* Y1587D02* Y1654D01* Y1526D02* Y1587D01* Y1459D02* Y1526D01* X3203Y1279D02* X3230D01* X3185Y1262D02* X3203Y1279D01* X3540Y1062D02* X3545Y1067D01* X3541Y866D02* X3584D01* X3540Y867D02* X3541Y866D01* X3584Y692D02* X3585D01* X3540D02* X3584D01* X3168Y619D02* X3170Y622D01* X3123Y1485D02* X3125Y1487D01* X3079Y1485D02* X3123D01* X3115Y619D02* X3168D01* X1495Y3563D02* X1554D01* X1806Y2388D02* X1817Y2377D01* X1806Y2388D02* Y2440D01* X1160Y3962D02* X1195Y3927D01* X1209D02* X1271D01* X1195D02* X1209D01* X1728Y1815D02* X1735D01* X1735Y1770D02* X1765D01* X1415Y1860D02* X1415Y1800D01* X1365D02* X1415D01* X1528Y1507D02* Y1558D01* X1134Y1616D02* Y1625D01* X1153Y1584D02* Y1597D01* X1115Y1400D02* X1153Y1419D01* X1042Y1565D02* X1063Y1586D01* X1020Y1565D02* X1042D01* X973D02* X1020D01* X970Y1818D02* Y1867D01* Y1818D02* Y1818D01* X970Y1818D02* X970Y1818D01* X845Y1117D02* X892D01* X845D02* X845D01* X845Y1117D02* X845Y1117D01* X659Y1379D02* X660Y1379D01* X659Y1318D02* Y1379D01* Y1277D02* Y1318D01* X1380Y112D02* Y159D01* X930Y1017D02* Y1067D01* Y1017D02* Y1017D01* X650Y747D02* X715D01* X978Y587D02* X1020Y587D01* X400Y672D02* Y717D01* Y664D02* Y672D01* X403Y668D01* X410Y662D01* X2638Y2391D02* Y2805D01* X1215Y844D02* X1296Y925D01* Y1379D01* X1295Y390D02* X1296Y391D01* X2303Y3062D02* X2587D01* X2495Y2427D02* X2584Y2337D01* X1134Y1616D02* X1153Y1597D01* X1286Y1415D02* X1378Y1507D01* X1162Y1494D02* X1241Y1415D01* X1025Y1766D02* Y1989D01* X1013Y1476D02* X1035Y1499D01* X1158D02* X1228Y1569D01* X890Y1107D02* X930Y1067D01* X902Y535D02* X970Y467D01* X410Y662D02* X490D01* X2623Y1915D02* X2693Y1985D01* X3250Y2107D02* X3252Y2109D01* X3545Y1067D02* X3580D01* X3545Y1562D02* X3571D01* X3540Y1457D02* X3570Y1427D01* X3580Y3282D02* Y3312D01* X3545Y3346D02* X3580Y3312D01* X3143Y3262D02* X3240D01* X3390Y3447D02* X3450D01* X3359Y3415D02* X3390Y3447D01* X3777Y2559D02* X3777Y2559D01* X3780Y2957D02* X3870Y3047D01* X3988Y3150D02* X3990Y3152D01* X3635Y3247D02* X3660Y3222D01* X3955Y3347D02* X3980D01* X3775Y3527D02* X3955Y3347D01* X3885Y3512D02* X3950Y3447D01* X3885Y3512D02* Y3635D01* X3780Y3740D02* X3885Y3635D01* X2587Y3062D02* X2640Y3009D01* X1525Y235D02* X1560Y200D01* Y165D02* Y200D01* Y165D02* X1625Y100D01* X2680Y470D02* X2835Y625D01* X2680Y260D02* Y470D01* X2520Y100D02* X2680Y260D01* X1625Y100D02* X2520D01* X995Y3105D02* X1090Y3200D01* X535Y3250D02* X675Y3110D01* X670Y3105D02* X995D01* D52* X2870Y2055D02* X2875Y2067D01* X2840Y1672D02* X2870Y1642D01* X2840Y1672D02* Y1717D01* X3070Y774D02* Y782D01* Y527D02* Y774D01* X3035Y463D02* Y492D01* X3275Y513D02* Y607D01* X3225Y463D02* X3275Y513D01* X3510Y562D02* X3544D01* X3465Y602D02* Y607D01* X3510Y562D01* X3535Y758D02* X3544Y767D01* X3426Y758D02* X3535D01* X3541Y965D02* X3544Y962D01* X3426Y965D02* X3541D01* X3426Y1082D02* X3426Y1082D01* X3328Y1082D02* X3426D01* X3328Y1058D02* Y1082D01* X3155Y695D02* Y1000D01* X3488Y1177D02* Y1212D01* Y1177D02* X3533D01* X3543Y1167D01* X3465Y1235D02* X3488Y1212D01* X3445Y1347D02* X3543D01* X3412Y1313D02* X3445Y1347D01* X3380Y1282D02* X3412Y1313D01* X3347Y1282D02* X3380D01* X3345D02* X3347D01* X3420Y875D02* Y877D01* Y851D02* Y875D01* X3328Y758D02* X3420Y851D01* X3328Y758D02* X3328Y758D01* X3239Y758D02* X3328D01* X3105Y1174D02* X3169D01* X3100D02* X3105D01* X3103Y1177D02* X3105Y1174D01* X3079Y1201D02* Y1287D01* Y1201D02* X3103Y1177D01* X3086Y1085D02* X3230D01* X2960Y1483D02* X2962Y1485D01* X2960Y1385D02* Y1483D01* Y1292D02* Y1385D01* X3775Y1462D02* X3775Y1462D01* X3879Y1357D02* X3990D01* X3775Y1462D02* X3775Y1462D01* X3780Y1457D02* X3879Y1357D01* X3770Y1457D02* X3775Y1462D01* X3663Y1457D02* X3770D01* X3780Y1612D02* Y1654D01* X3935Y1457D02* X3990D01* X3780Y1847D02* Y1850D01* X3935Y1557D02* X3990D01* X3108Y2379D02* Y2537D01* X3075Y2347D02* X3108Y2379D01* X3255Y2357D02* Y2497D01* Y2357D02* X3265Y2347D01* X3485Y2457D02* X3539D01* X3445Y2497D02* X3485Y2457D01* X3377Y2428D02* X3445Y2497D01* X3377Y2352D02* Y2428D01* X3524Y2642D02* X3539Y2657D01* X3376Y2642D02* X3524D01* X3370D02* X3376D01* X3529Y2847D02* X3539Y2857D01* X3376Y2847D02* X3529D01* X3370D02* X3376D01* X3278Y2962D02* X3376D01* X3321Y3159D02* X3356D01* X2815Y3038D02* Y3045D01* X3278Y2755D02* X3376D01* X3278Y2739D02* Y2755D01* X3179Y2638D02* Y2641D01* X3179Y2755D02* X3179Y2755D01* X3179Y2755D02* Y2845D01* X3060Y2994D02* Y3023D01* X3003Y3081D02* Y3159D01* Y3081D02* X3022Y3061D01* X3060Y3023D01* X3180Y2962D02* X3185Y2967D01* X2960Y2957D02* Y2994D01* X3013Y3267D02* X3022Y3258D01* X3120Y3161D01* Y3159D02* Y3161D01* Y3152D02* Y3159D01* X2913Y3267D02* X3013D01* X2954Y1608D02* X2955Y1607D01* X2932Y1630D02* Y1725D01* X3008Y1815D02* X3092D01* X3168Y1925D02* Y1934D01* X3092Y2010D02* Y2015D01* X3562Y1957D02* X3660D01* X3560Y1959D02* X3562Y1957D01* X3485Y1959D02* X3560D01* X3410Y1884D02* X3485Y1959D01* X3098Y2111D02* Y2205D01* X3092Y2105D02* X3098Y2111D01* X3332Y2067D02* X3340Y2059D01* X3168Y2183D02* X3192Y2207D01* X3168Y2015D02* X3172D01* X3168Y2105D02* Y2183D01* Y2015D02* Y2105D01* Y1815D02* Y1819D01* Y1725D02* Y1815D01* X3008Y1725D02* X3092D01* X3350Y1770D02* X3352Y1720D01* X3342Y1719D02* X3352Y1720D01* X3329Y1615D02* Y1705D01* X3960Y857D02* X3990D01* X3778Y474D02* X3780Y477D01* X3776Y472D02* X3778Y474D01* X3660Y472D02* X3776D01* X3626Y562D02* X3660Y528D01* Y472D02* Y528D01* X3985Y962D02* X3990Y957D01* X3776Y673D02* X3880Y777D01* X3772Y669D02* X3776Y673D01* X3626Y767D02* X3660Y733D01* Y669D02* X3772D01* X3660D02* Y733D01* X3935Y1057D02* X3990D01* X3774Y866D02* Y896D01* Y866D02* Y866D01* X3626Y962D02* X3660Y928D01* Y866D02* X3774D01* X3866Y1157D02* X3990D01* X3776Y1067D02* X3866Y1157D01* X3625Y1167D02* X3660Y1132D01* Y1063D02* X3664Y1067D01* X3660Y1063D02* Y1132D01* X3780Y1260D02* X3783Y1257D01* X3660Y1260D02* X3780D01* X3625Y1347D02* X3660Y1312D01* Y1260D02* Y1312D01* X3780Y2362D02* X3895Y2478D01* X3670Y2362D02* X3780D01* X3621Y2457D02* X3660Y2418D01* Y2352D02* X3670Y2362D01* X3660Y2352D02* Y2418D01* X3780Y2559D02* Y2631D01* X3965Y2947D02* X3990D01* X1870Y3562D02* X1942D01* X1959Y3545D01* X1837Y3594D02* Y3685D01* Y3594D02* X1870Y3562D01* X2254Y3545D02* Y3603D01* X2109Y3926D02* X2110Y3927D01* X2109Y3795D02* Y3926D01* Y3795D02* X2153Y3752D01* X1401Y3596D02* Y3685D01* X1370Y3565D02* X1401Y3596D01* X1289Y3565D02* X1370D01* X1270Y3545D02* X1289Y3565D01* X1455Y3922D02* X1460Y3927D01* X1455Y3795D02* Y3922D01* Y3657D02* Y3795D01* X1455Y3467D02* X1467D01* X3230Y968D02* X3239Y959D01* Y875D02* Y959D01* X1920Y3167D02* Y3212D01* X1920Y3122D02* X1920Y3167D01* X1801Y3308D02* X1824D01* X1700Y3218D02* X1914D01* X1824Y3308D02* X1914Y3218D01* X1920Y3212D01* X2103Y3154D02* X2256Y3308D01* X2090Y3141D02* X2103Y3154D01* X2090Y3167D02* X2090Y3141D01* Y3125D02* Y3141D01* X3079Y1378D02* Y1385D01* X3459Y1540D02* Y1557D01* X3171Y1385D02* Y1398D01* X1180Y3205D02* Y3466D01* X70Y1215D02* Y2470D01* X195Y2095D02* Y2350D01* Y2095D02* X200Y2090D01* Y1805D02* Y2090D01* X1292Y3654D02* Y3685D01* X1090Y3548D02* X1101D01* X1237Y3883D02* X1240Y3886D01* X1237Y3795D02* Y3883D01* X1997Y3892D02* X2000Y3888D01* Y3795D02* Y3888D01* X1910Y3892D02* X1997D01* X2061Y3594D02* X2146D01* X2040Y3572D02* X2061Y3594D01* X2040Y3572D02* Y3582D01* Y3552D02* Y3572D01* X1946Y3676D02* Y3685D01* X3062Y1895D02* X3092Y1925D01* X2979Y1895D02* X3062D01* X3584Y620D02* X3635D01* X3545D02* X3584D01* X1823Y2206D02* X1825Y2208D01* Y2206D02* Y2208D01* Y2174D02* Y2206D01* X1315Y1800D02* X1365D01* X1380Y1297D02* Y1370D01* Y1251D02* Y1297D01* X2875Y2582D02* X2953D01* X2817Y2640D02* X2875Y2582D01* X2957Y619D02* X3025D01* X2860Y717D02* X2957Y619D01* X3970Y806D02* X4020D01* X1355Y1246D02* X1393D01* X1380Y1370D02* X1385Y1375D01* X1691Y1246D02* X1700Y1255D01* X1650Y1246D02* X1691D01* X1651Y1044D02* X1703D01* X1651Y949D02* X1699D01* X1935Y846D02* X1990D01* X1940Y946D02* X1995D01* X2230Y1146D02* X2300D01* X2296Y1246D02* X2305Y1255D01* X2225Y1246D02* X2296D01* X1994Y1046D02* X2000Y1040D01* X1940Y1046D02* X1994D01* X1940Y1246D02* X2000D01* X3155Y1000D02* X3180Y1025D01* X3295D01* X3328Y1058D01* X3145Y2927D02* X3180Y2962D01* X2990Y2927D02* X3145D01* X2960Y2957D02* X2990Y2927D01* X3179Y2641D02* X3278Y2739D01* X2815Y2642D02* X2817Y2640D01* X3780Y2762D02* X3965Y2947D01* X3780Y2631D02* X3990Y2842D01* X3895Y2657D02* X3985Y2747D01* X3895Y2478D02* Y2657D01* X2870Y1992D02* X2880Y1982D01* X2932Y1630D02* X2954Y1608D01* X3092Y2010D02* X3168Y1934D01* X3170Y2067D02* X3332D01* X3168Y1819D02* X3215Y1866D01* X3172Y2015D02* X3215Y1972D01* Y1866D02* Y1972D01* X3350Y1770D02* X3375Y1802D01* X3329Y1705D02* X3342Y1719D01* X3380Y1462D02* X3459Y1540D01* X3235Y1462D02* X3380D01* X3171Y1398D02* X3235Y1462D01* X3000Y1172D02* X3086Y1085D01* X3253Y1385D02* X3287D01* X3185Y1317D02* X3253Y1385D01* X3140Y1317D02* X3185D01* X3079Y1378D02* X3140Y1317D01* X3035Y492D02* X3070Y527D01* X3340Y477D02* X3465Y602D01* X3930Y827D02* X3960Y857D01* X3930Y647D02* Y827D01* X3780Y497D02* X3930Y647D01* X3780Y477D02* Y497D01* X3980Y962D02* X3985D01* X3880Y862D02* X3980Y962D01* X3880Y777D02* Y862D01* X3774Y896D02* X3935Y1057D01* X3660Y872D02* Y928D01* X3664Y1067D02* X3776D01* X3780Y1847D02* X3875Y1752D01* Y1617D02* Y1752D01* Y1617D02* X3935Y1557D01* X3780Y1612D02* X3935Y1457D01* X3783Y1257D02* X3985D01* X2153Y3752D02* X2185D01* X2215Y3722D01* Y3642D02* Y3722D01* Y3642D02* X2254Y3603D01* X1946Y3676D02* X2040Y3582D01* X1280Y3642D02* X1292Y3654D01* X1240Y3642D02* X1280D01* X1185Y3587D02* X1240Y3642D01* X1140Y3587D02* X1185D01* X1101Y3548D02* X1140Y3587D01* X1440Y3482D02* X1455Y3467D01* X1440Y3482D02* Y3642D01* X1455Y3657D01* X2750Y3110D02* X2815Y3045D01* X2750Y3110D02* Y3315D01* X2775Y3340D01* X3275D01* X3300Y3315D01* Y3180D02* Y3315D01* Y3180D02* X3321Y3159D01* X2870Y1992D02* X2870Y2055D01* X135Y2535D02* Y2990D01* X70Y2470D02* X135Y2535D01* Y2990D02* X200Y3055D01* X1030D01* X1180Y3205D01* X1003Y2020D02* X1065D01* X200Y1805D02* X255Y1750D01* Y1145D02* Y1750D01* X355Y1045D02* X555D01* X255Y1145D02* X355Y1045D01* D53* X1862Y2695D02* Y2728D01* X1433Y2822D02* Y2844D01* X1888Y2695D02* Y2737D01* X1505Y2855D02* X1575D01* X1433Y2927D02* Y2934D01* X1590Y2735D02* X1750D01* X1837Y2955D02* Y2990D01* X1658Y2937D02* X1703Y2982D01* X1656Y2934D02* X1658Y2937D01* X1670D01* X1656Y2820D02* Y2934D01* X1862Y2925D02* Y2955D01* X1706Y2820D02* Y2861D01* X1888Y2925D02* Y2955D01* X1756Y2820D02* Y2848D01* X1914Y2924D02* Y2955D01* X1806Y2820D02* Y2845D01* X1806Y2690D02* X1811Y2695D01* X1433Y2569D02* Y2578D01* X1191Y1664D02* Y1934D01* X1655Y2610D02* X1660D01* X1545Y2425D02* Y2500D01* X1939Y2922D02* Y2955D01* X1856Y2820D02* Y2838D01* X1765Y2955D02* X1811D01* X1606Y2777D02* Y2820D01* X1681Y2871D02* X1765Y2955D01* X1681Y2773D02* Y2871D01* X1847Y2910D02* X1862Y2925D01* X1754Y2910D02* X1847D01* X1706Y2861D02* X1754Y2910D01* X1826Y3001D02* X1837Y2990D01* X1760Y3001D02* X1826D01* X1741Y2982D02* X1760Y3001D01* X1703Y2982D02* X1741D01* X1854Y2890D02* X1888Y2925D01* X1813Y2890D02* X1854D01* X1790Y2868D02* X1813Y2890D01* X1862Y2873D02* X1914Y2924D01* X1775Y2868D02* X1790D01* X1756Y2848D02* X1775Y2868D01* X1833Y2873D02* X1862D01* X1806Y2845D02* X1833Y2873D01* X1856Y2838D02* X1939Y2922D01* X1475Y2780D02* X1555D01* X1565Y2770D01* X1433Y2822D02* X1475Y2780D01* X1780Y2735D02* X1855D01* X1862Y2728D01* X1565Y2720D02* X1575Y2710D01* X1565Y2720D02* Y2770D01* X1870Y2760D02* X1888Y2737D01* X1606Y2777D02* X1627Y2756D01* X1664D01* X1681Y2773D01* X1433Y2927D02* X1505Y2855D01* X1770Y2760D02* X1870D01* X1433Y2578D02* X1490Y2635D01* X1560D01* X1615Y2690D01* X1545Y2500D02* X1655Y2610D01* X1615Y2690D02* X1806D01* X1575Y2710D02* X1755D01* X1780Y2735D01* X1750D02* X1770Y2760D01* X1290Y1735D02* Y2090D01* D54* X910Y3612D02* X1000D01* X910D02* X910D01* X1128Y3795D02* Y3874D01* Y3764D02* Y3795D01* X1183Y3685D02* Y3709D01* X940Y3897D02* X1105D01* X1128Y3874D01* Y3764D02* X1183Y3709D01* X1015Y3737D02* Y3792D01* Y3737D02* X1070Y3682D01* X1000Y3612D02* X1070Y3682D01* D55* X910Y3612D02* Y3657D01* Y3576D02* Y3612D01* Y3576D02* Y3576D01* X910Y3576D02* X910Y3576D01* X920Y3907D02* Y3912D01* Y3827D02* Y3907D01* X910Y3817D02* X920Y3827D01* X490Y3658D02* Y3748D01* X470Y3768D02* X490Y3748D01* X2835Y625D02* X2855D01* X1080Y2479D02* X1311D01* X997Y2017D02* Y2396D01* X1378Y395D02* X1380Y397D01* Y249D02* Y397D01* X1296Y395D02* X1378D01* X970D02* X1296D01* X970D02* Y467D01* X2047Y4003D02* X2110D01* X2010Y4040D02* X2047Y4003D01* X1296Y395D02* Y925D01* X1210Y397D02* X1211Y396D01* X997Y2396D02* X1080Y2479D01* D56* X775Y4017D02* Y4037D01* Y3917D02* Y4017D01* X452Y3995D02* X512Y4055D01* X452Y3995D02* X470Y3977D01* X315Y3976D02* X470Y3977D01* X212Y3676D02* X315D01* X452Y3544D02* X590Y3407D01* X315Y3676D02* X399Y3592D01* X898Y3470D02* X910Y3482D01* X835Y3407D02* X898Y3470D01* X590Y3407D02* X835D01* X399Y3592D02* X405D01* X770Y3912D02* X775Y3917D01* X757Y4055D02* X775Y4037D01* X512Y4055D02* X757D01* X405Y3592D02* X452Y3544D01* D57* X1350Y4045D02* X1392Y4003D01* X1395D02* X1460D01* X1392D02* X1395D01* X925Y4017D02* X925Y4017D01* X888Y4017D02* X925D01* X925D02* Y4017D01* Y4012D02* Y4017D01* X909Y3996D02* X925Y4012D01* X861Y3936D02* Y3948D01* X860Y3936D02* Y3937D01* Y3878D02* Y3936D01* Y3878D02* X861Y3877D01* Y3948D02* X909Y3996D01* D58* X620Y265D02* X615Y270D01* X605D01* X600Y265D01* Y260D01* X605Y255D01* X615D01* X620Y250D01* Y245D01* X615Y240D01* X605D01* X600Y245D01* X650Y270D02* X630D01* Y240D01* X650D01* X630Y255D02* X640D01* X660Y235D02* X680D01* X710Y265D02* X705Y270D01* X695D01* X690Y265D01* Y260D01* X695Y255D01* X705D01* X710Y250D01* Y245D01* X705Y240D01* X695D01* X690Y245D01* X740Y265D02* X735Y270D01* X725D01* X720Y265D01* Y245D01* X725Y240D01* X735D01* X740Y245D01* Y255D01* X730D01* X750Y235D02* X770D01* X780Y270D02* X790D01* X785D01* Y240D01* X780D01* X790D01* X825Y270D02* X805D01* Y255D01* X815D01* X805D01* Y240D01* X835Y235D02* X855D01* X865Y270D02* Y250D01* X875Y240D01* X885Y250D01* Y270D01* X915Y240D02* X895D01* X915Y260D01* Y265D01* X910Y270D01* X900D01* X895Y265D01* X1880Y160D02* Y190D01* X1890Y180D01* X1900Y190D01* Y160D01* X1930Y190D02* X1910D01* Y175D01* X1920D01* X1910D01* Y160D01* X1960Y185D02* X1955Y190D01* X1945D01* X1940Y185D01* Y165D01* X1945Y160D01* X1955D01* X1960Y165D01* X1990Y185D02* X1985Y190D01* X1975D01* X1970Y185D01* Y165D01* X1975Y160D01* X1985D01* X1990Y165D01* X2030Y190D02* X2040D01* X2035D01* Y160D01* X2030D01* X2040D01* X2055Y190D02* X2065D01* X2060D01* Y160D01* X2055D01* X2065D01* X2110Y190D02* Y160D01* Y170D01* X2130Y190D01* X2115Y175D01* X2130Y160D01* X2160Y185D02* X2155Y190D01* X2145D01* X2140Y185D01* Y180D01* X2145Y175D01* X2155D01* X2160Y170D01* Y165D01* X2155Y160D01* X2145D01* X2140Y165D01* X2215Y160D02* X2205D01* X2200Y165D01* Y175D01* X2205Y180D01* X2215D01* X2220Y175D01* Y170D01* X2200D01* X2230Y160D02* X2240D01* X2235D01* Y190D01* X2230D01* X2270Y160D02* X2260D01* X2255Y165D01* Y175D01* X2260Y180D01* X2270D01* X2275Y175D01* Y170D01* X2255D01* X2305Y180D02* X2290D01* X2285Y175D01* Y165D01* X2290Y160D01* X2305D01* X2315Y185D02* X2320Y190D01* X2330D01* X2335Y185D01* Y165D01* X2330Y160D01* X2320D01* X2315Y165D01* Y185D01* X2360Y160D02* Y190D01* X2345Y175D01* X2365D01* X75Y246D02* Y276D01* X90D01* X95Y271D01* Y261D01* X90Y256D01* X75D01* X85D02* X95Y246D01* X120D02* X110D01* X105Y251D01* Y261D01* X110Y266D01* X120D01* X125Y261D01* Y256D01* X105D01* X135Y246D02* X145D01* X140D01* Y276D01* X135D01* X160Y241D02* X180D01* X210Y246D02* X190D01* X210Y266D01* Y271D01* X205Y276D01* X195D01* X190Y271D01* X220Y241D02* X240D01* X270Y246D02* X250D01* X270Y266D01* Y271D01* X265Y276D01* X255D01* X250Y271D01* X280Y241D02* X300D01* X310Y271D02* X315Y276D01* X325D01* X330Y271D01* Y251D01* X325Y246D01* X315D01* X310Y251D01* Y271D01* D59* X886Y3248D02* D03* X3346Y3937D02* D03* X197Y394D02* D03* X2835D02* D03* D60* X748Y3740D02* D03* X2598D02* D03* D61* X1670Y497D02* D03* X1380Y997D02* D03* Y1097D02* D03* Y897D02* D03* X1670Y1297D02* D03* Y1197D02* D03* Y997D02* D03* X720Y1987D02* D03* Y2087D02* D03* X2560Y597D02* D03* Y697D02* D03* Y397D02* D03* Y497D02* D03* X1670Y1097D02* D03* Y697D02* D03* Y797D02* D03* X2260Y1197D02* D03* Y1297D02* D03* Y1097D02* D03* Y897D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1380Y1297D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1670Y897D02* D03* X1970Y597D02* D03* Y497D02* D03* Y797D02* D03* Y697D02* D03* Y897D02* D03* Y997D02* D03* Y1297D02* D03* Y1197D02* D03* X2260Y997D02* D03* X1970Y1097D02* D03* X1380Y1197D02* D03* X1670Y597D02* D03* X290Y3250D02* D03* Y3350D02* D03* X720Y2257D02* D03* Y2357D02* D03* Y1117D02* D03* Y1017D02* D03* X970Y467D02* D03* X1260Y1515D02* D03* Y1415D02* D03* X2815Y2938D02* D03* Y3038D02* D03* Y2738D02* D03* Y2838D02* D03* X2860Y1017D02* D03* Y1117D02* D03* Y817D02* D03* Y917D02* D03* X3990Y1457D02* D03* Y1557D02* D03* Y1257D02* D03* Y1357D02* D03* Y1157D02* D03* Y957D02* D03* Y1057D02* D03* Y757D02* D03* Y857D02* D03* Y3347D02* D03* Y3447D02* D03* Y3147D02* D03* Y3247D02* D03* Y3047D02* D03* Y2847D02* D03* Y2947D02* D03* Y2647D02* D03* Y2747D02* D03* X1070Y467D02* D03* X570Y467D02* D03* X470D02* D03* Y167D02* D03* X1070D02* D03* D62* X1019Y3795D02* D03* X492Y1161D02* D03* D63* X1128Y3795D02* D03* X1237D02* D03* X1346D02* D03* X1455D02* D03* X1564D02* D03* X1673D02* D03* X1782D02* D03* X1891D02* D03* X2000D02* D03* X2109D02* D03* X2218D02* D03* X2327D02* D03* X1074Y3685D02* D03* X1183D02* D03* X1292D02* D03* X1401D02* D03* X1510D02* D03* X1619D02* D03* X1728D02* D03* X1837D02* D03* X1946D02* D03* X2055D02* D03* X2164D02* D03* X2273D02* D03* X392Y2415D02* D03* Y2306D02* D03* Y2197D02* D03* Y1979D02* D03* Y1870D02* D03* Y1761D02* D03* Y1652D02* D03* Y1543D02* D03* Y1325D02* D03* Y1216D02* D03* X492Y2469D02* D03* Y2360D02* D03* Y2251D02* D03* Y2142D02* D03* Y2033D02* D03* Y1815D02* D03* Y1706D02* D03* Y1597D02* D03* Y1488D02* D03* Y1379D02* D03* Y1270D02* D03* Y1924D02* D03* X392Y1433D02* D03* Y2088D02* D03* D64* X470Y3977D02* D03* D65* Y3768D02* D03* D66* X1220Y2677D02* D03* Y2559D02* D03* Y2618D02* D03* Y2795D02* D03* Y2854D02* D03* Y2736D02* D03* X2580Y2805D02* D03* Y2746D02* D03* Y2864D02* D03* Y2628D02* D03* Y2569D02* D03* Y2687D02* D03* D67* X315Y3976D02* D03* D68* Y3826D02* D03* Y3676D02* D03* X1670Y197D02* D03* X3780Y2047D02* D03* Y3937D02* D03* Y3740D02* D03* Y1850D02* D03* Y3543D02* D03* Y1654D02* D03* Y3346D02* D03* Y1457D02* D03* Y3150D02* D03* Y1260D02* D03* Y2953D02* D03* Y1063D02* D03* Y2756D02* D03* Y866D02* D03* Y2559D02* D03* Y669D02* D03* Y2362D02* D03* Y472D02* D03* D69* X1934Y3308D02* D03* X2126D02* D03* D70* X2717Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* X630Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* D71* X1130Y2387D02* D03* D72* X1230D02* D03* X1130Y2287D02* D03* X1230D02* D03* X1130Y2187D02* D03* X1230D02* D03* D73* X442Y886D02* D03* Y2744D02* D03* D74* X2070Y3005D02* D03* X2265D02* D03* X2590D02* D03* X2680D02* D03* X2610Y1965D02* D03* X2670Y1560D02* D03* X3130Y1865D02* D03* X2825Y2370D02* D03* Y2020D02* D03* X2530Y1345D02* D03* X2640Y2295D02* D03* X2675Y2435D02* D03* X2142Y2570D02* D03* X2225Y2335D02* D03* X1725D02* D03* X1230Y1725D02* D03* Y1680D02* D03* X1810Y1675D02* D03* X1800Y1450D02* D03* X1900Y1405D02* D03* X780Y1895D02* D03* X810Y1795D02* D03* Y2135D02* D03* X835Y2100D02* D03* X1340Y2125D02* D03* X790Y2380D02* D03* X1548Y897D02* D03* X1250Y1245D02* D03* X580Y740D02* D03* X1415Y2080D02* D03* X835Y2065D02* D03* X1505Y2030D02* D03* X1150Y1955D02* D03* X875D02* D03* X115Y1125D02* D03* X395Y1100D02* D03* X890Y1740D02* D03* X1005Y945D02* D03* X1520Y455D02* D03* X1525Y1165D02* D03* X745Y1405D02* D03* X115Y1490D02* D03* X1455Y1935D02* D03* X1191Y1934D02* D03* X115Y1635D02* D03* X210Y1160D02* D03* X200Y2090D02* D03* X255Y1820D02* D03* X2250Y3425D02* D03* X265Y2420D02* D03* X245Y2365D02* D03* X1900Y3430D02* D03* X195Y2350D02* D03* X1665Y3350D02* D03* X1280Y3385D02* D03* X115Y2305D02* D03* X70Y1215D02* D03* X35Y1595D02* D03* X515Y3160D02* D03* X1330Y3960D02* D03* X1240Y4000D02* D03* X2025Y1950D02* D03* X1620Y1965D02* D03* X1525Y1427D02* D03* X2725Y2340D02* D03* X2360Y2140D02* D03* X2290Y1875D02* D03* X2710Y2910D02* D03* X2760Y2970D02* D03* X2590D02* D03* X1745Y2665D02* D03* X1605Y2360D02* D03* X2185Y2495D02* D03* X1305Y2425D02* D03* X2095Y2360D02* D03* X1765Y1770D02* D03* X1660Y2610D02* D03* X1545Y2425D02* D03* X1575Y2855D02* D03* X1590Y2735D02* D03* X2230Y2495D02* D03* X1870Y2205D02* D03* X2195Y2670D02* D03* X1560Y2260D02* D03* X1980Y2235D02* D03* X2245Y2230D02* D03* X2040Y2594D02* D03* X2255Y2670D02* D03* X2290D02* D03* X3035Y1660D02* D03* X3060Y2655D02* D03* X3270Y1560D02* D03* X3180Y2415D02* D03* X1465Y1245D02* D03* X2800Y2480D02* D03* X2360Y1820D02* D03* X1995Y2875D02* D03* X2042Y2880D02* D03* X2085Y2765D02* D03* X2220D02* D03* Y2060D02* D03* X2316Y2594D02* D03* X1110Y780D02* D03* X1395Y2620D02* D03* X1475Y2749D02* D03* X2135Y2880D02* D03* D75* X2870Y2530D02* D03* X1990Y2650D02* D03* X2015Y2620D02* D03* D76* X1823Y2206D02* D03* X1935Y2140D02* D03* X1425Y755D02* D03* D77* X2765Y2270D02* D03* X3240D02* D03* X925Y4017D02* D03* X1395Y4003D02* D03* X1160Y3962D02* D03* X1554Y3563D02* D03* X1010Y3507D02* D03* X1370Y3442D02* D03* X1815Y3447D02* D03* X2330Y3502D02* D03* X1920Y3167D02* D03* X2090D02* D03* X2025Y3050D02* D03* X2255Y3142D02* D03* X2590Y2332D02* D03* X2440Y2427D02* D03* X3436Y3346D02* D03* X3435Y3545D02* D03* X3542Y2559D02* D03* X3540Y2757D02* D03* Y2952D02* D03* X3535Y3147D02* D03* X3445Y2277D02* D03* X3720Y2252D02* D03* X3510Y1832D02* D03* X3505Y1707D02* D03* X3535Y1257D02* D03* X3584Y398D02* D03* X3540Y692D02* D03* Y867D02* D03* Y1062D02* D03* X3170Y622D02* D03* X3185Y1262D02* D03* X3125Y1487D02* D03* X2460Y392D02* D03* X1380Y112D02* D03* X400Y717D02* D03* X1020Y587D02* D03* X650Y747D02* D03* X659Y1277D02* D03* X845Y1117D02* D03* X2410Y1047D02* D03* X1310Y2727D02* D03* X970Y1818D02* D03* X1415Y1860D02* D03* X1134Y1625D02* D03* X1115Y1400D02* D03* X1311Y2479D02* D03* X1838Y2512D02* D03* X1817Y2377D02* D03* X1913Y2753D02* D03* X1745Y2115D02* D03* X1685Y1980D02* D03* X1096Y1528D02* D03* X1001Y1733D02* D03* X2637Y2218D02* D03* X1181Y275D02* D03* X3245Y1175D02* D03* X2870Y1520D02* D03* X2645Y1150D02* D03* X2925Y2005D02* D03* X2400Y2040D02* D03* X2290Y1815D02* D03* X1988Y1860D02* D03* X2070Y1470D02* D03* X2230Y1453D02* D03* X2425Y1385D02* D03* X1450Y2130D02* D03* X2465Y2310D02* D03* X2960Y2800D02* D03* X2820Y3155D02* D03* X3190Y3100D02* D03* X3275Y2900D02* D03* Y2590D02* D03* X3435Y3735D02* D03* X3000Y975D02* D03* X1625Y3280D02* D03* X3410Y1315D02* D03* X3465Y1235D02* D03* X3155Y695D02* D03* X3453Y2110D02* D03* X3415Y1670D02* D03* X2120Y2265D02* D03* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GTS0000644000175000017500000004245613421555714020466 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=13488067* G04 Layer_Color=13488067* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% D50* X-390Y5220D02* X-343D01* X-367D01* Y5150D01* X-308D02* X-285D01* X-273Y5162D01* Y5185D01* X-285Y5197D01* X-308D01* X-320Y5185D01* Y5162D01* X-308Y5150D01* X-250Y5127D02* Y5197D01* X-215D01* X-203Y5185D01* Y5162D01* X-215Y5150D01* X-250D01* X-63Y5208D02* X-75Y5220D01* X-98D01* X-110Y5208D01* Y5197D01* X-98Y5185D01* X-75D01* X-63Y5173D01* Y5162D01* X-75Y5150D01* X-98D01* X-110Y5162D01* X-28Y5150D02* X-5D01* X7Y5162D01* Y5185D01* X-5Y5197D01* X-28D01* X-40Y5185D01* Y5162D01* X-28Y5150D01* X30D02* X53D01* X42D01* Y5220D01* X30D01* X135D02* Y5150D01* X100D01* X88Y5162D01* Y5185D01* X100Y5197D01* X135D01* X193Y5150D02* X170D01* X158Y5162D01* Y5185D01* X170Y5197D01* X193D01* X205Y5185D01* Y5173D01* X158D01* X228Y5197D02* Y5150D01* Y5173D01* X240Y5185D01* X251Y5197D01* X263D01* X368Y5150D02* Y5220D01* X391Y5197D01* X415Y5220D01* Y5150D01* X450Y5197D02* X473D01* X485Y5185D01* Y5150D01* X450D01* X438Y5162D01* X450Y5173D01* X485D01* X508Y5150D02* X543D01* X555Y5162D01* X543Y5173D01* X520D01* X508Y5185D01* X520Y5197D01* X555D01* X578Y5150D02* Y5220D01* Y5173D02* X613Y5197D01* X578Y5173D02* X613Y5150D01* D64* X2347Y1400D02* D03* X2212D02* D03* X720Y1887D02* D03* X2560Y797D02* D03* X1670Y397D02* D03* X2260D02* D03* X1380D02* D03* X1970D02* D03* X3990Y1657D02* D03* X290Y3450D02* D03* X720Y2457D02* D03* Y917D02* D03* X2815Y2638D02* D03* X2860Y717D02* D03* X3990Y3547D02* D03* D65* X1670Y497D02* D03* X1380Y997D02* D03* Y1097D02* D03* Y897D02* D03* X1670Y1297D02* D03* Y1197D02* D03* Y997D02* D03* X720Y1987D02* D03* Y2087D02* D03* X2560Y597D02* D03* Y697D02* D03* Y397D02* D03* Y497D02* D03* X1670Y1097D02* D03* Y697D02* D03* Y797D02* D03* X2260Y1197D02* D03* Y1297D02* D03* Y1097D02* D03* Y897D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1380Y1297D02* D03* Y697D02* D03* Y797D02* D03* Y497D02* D03* Y597D02* D03* X1670Y897D02* D03* X1970Y597D02* D03* Y497D02* D03* Y797D02* D03* Y697D02* D03* Y897D02* D03* Y997D02* D03* Y1297D02* D03* Y1197D02* D03* X2260Y997D02* D03* X1970Y1097D02* D03* X1380Y1197D02* D03* X1670Y597D02* D03* X290Y3250D02* D03* Y3350D02* D03* X720Y2257D02* D03* Y2357D02* D03* Y1117D02* D03* Y1017D02* D03* X970Y467D02* D03* X1260Y1515D02* D03* Y1415D02* D03* X2815Y2938D02* D03* Y3038D02* D03* Y2738D02* D03* Y2838D02* D03* X2860Y1017D02* D03* Y1117D02* D03* Y817D02* D03* Y917D02* D03* X3990Y1457D02* D03* Y1557D02* D03* Y1257D02* D03* Y1357D02* D03* Y1157D02* D03* Y957D02* D03* Y1057D02* D03* Y757D02* D03* Y857D02* D03* Y3347D02* D03* Y3447D02* D03* Y3147D02* D03* Y3247D02* D03* Y3047D02* D03* Y2847D02* D03* Y2947D02* D03* Y2647D02* D03* Y2747D02* D03* X1070Y467D02* D03* X570Y467D02* D03* X470D02* D03* Y167D02* D03* X1070D02* D03* D83* X2256Y2820D02* D03* D84* X2206D02* D03* X2156D02* D03* X2106D02* D03* X2056D02* D03* X2006D02* D03* X1956D02* D03* X1906D02* D03* X1856D02* D03* X1806D02* D03* X1756D02* D03* X1706D02* D03* X1656D02* D03* X1606D02* D03* Y2440D02* D03* X1656D02* D03* X1706D02* D03* X1756D02* D03* X1806D02* D03* X1856D02* D03* X1906D02* D03* X1956D02* D03* X2006D02* D03* X2056D02* D03* X2106D02* D03* X2156D02* D03* X2206D02* D03* X2256D02* D03* X1065Y2020D02* D03* X1115D02* D03* X1165D02* D03* X1215D02* D03* X1265D02* D03* X1315D02* D03* X1365D02* D03* X1415D02* D03* Y1800D02* D03* X1365D02* D03* X1315D02* D03* X1265D02* D03* X1215D02* D03* X1165D02* D03* X1115D02* D03* X1065D02* D03* X3100Y1174D02* D03* X3000D02* D03* X3100Y899D02* D03* X3000D02* D03* X3060Y2994D02* D03* X2960D02* D03* X3060Y2719D02* D03* X2960D02* D03* X1210Y1114D02* D03* X1110D02* D03* X1210Y839D02* D03* X1110D02* D03* D85* X3079Y1385D02* D03* X2962D02* D03* X3139Y3258D02* D03* X3022D02* D03* X3171Y1177D02* D03* X3288D02* D03* X3022Y3061D02* D03* X3139D02* D03* X3212Y1615D02* D03* X1009Y1117D02* D03* X1119Y1227D02* D03* X680Y1476D02* D03* X797D02* D03* X650Y1604D02* D03* X767D02* D03* X3337Y472D02* D03* X3454D02* D03* X3371Y1177D02* D03* X3488D02* D03* X3230Y1279D02* D03* X3347D02* D03* X3079Y1287D02* D03* X2962D02* D03* X3079Y1485D02* D03* X2962D02* D03* X3377Y2352D02* D03* X3494D02* D03* X3239Y3061D02* D03* X3356D02* D03* X3239Y3159D02* D03* X3356D02* D03* X3003D02* D03* X3120D02* D03* X1569Y2205D02* D03* X1452D02* D03* X2281Y2095D02* D03* X2398D02* D03* X2291Y2285D02* D03* X2408D02* D03* X2451Y1915D02* D03* X2568D02* D03* X2471Y1575D02* D03* X2588D02* D03* X3329Y1615D02* D03* X2589Y1475D02* D03* X2472D02* D03* X892Y1117D02* D03* X3288Y1385D02* D03* X3171D02* D03* X1002Y1227D02* D03* X799Y587D02* D03* X682D02* D03* X3359Y3257D02* D03* X3242D02* D03* D86* X970Y1943D02* D03* Y1867D02* D03* X1760Y2217D02* D03* Y2293D02* D03* X1670D02* D03* X2840Y1717D02* D03* Y1793D02* D03* X3000Y2118D02* D03* Y2042D02* D03* X2875Y2067D02* D03* Y2143D02* D03* X1120Y735D02* D03* Y659D02* D03* X1063Y1586D02* D03* Y1662D02* D03* X2430Y2732D02* D03* Y2656D02* D03* X1520Y2668D02* D03* Y2592D02* D03* X2080Y1803D02* D03* Y1727D02* D03* X2170Y2173D02* D03* Y2097D02* D03* X2080Y1973D02* D03* Y1897D02* D03* X1920Y3122D02* D03* Y3046D02* D03* X2090Y3049D02* D03* Y3125D02* D03* X2260Y1487D02* D03* Y1563D02* D03* X2350Y1563D02* D03* Y1487D02* D03* X2170Y1563D02* D03* Y1487D02* D03* Y1723D02* D03* Y1647D02* D03* X2260Y1723D02* D03* Y1647D02* D03* X3660Y2033D02* D03* Y1957D02* D03* X2480Y1147D02* D03* Y1223D02* D03* X2570Y1383D02* D03* Y1307D02* D03* X1560Y1893D02* D03* Y1817D02* D03* X2350Y2732D02* D03* Y2656D02* D03* X2660Y1383D02* D03* Y1307D02* D03* X3250Y2027D02* D03* Y2103D02* D03* X2480Y1383D02* D03* Y1307D02* D03* X1870Y3562D02* D03* Y3486D02* D03* X2110Y3927D02* D03* Y4003D02* D03* X1370Y3489D02* D03* Y3565D02* D03* X1460Y4003D02* D03* Y3927D02* D03* X2480Y1052D02* D03* Y976D02* D03* X1670Y2217D02* D03* X490Y3658D02* D03* Y3582D02* D03* X490Y589D02* D03* Y665D02* D03* X580Y589D02* D03* Y665D02* D03* X1470Y159D02* D03* Y235D02* D03* X1380Y159D02* D03* Y235D02* D03* X1520Y2749D02* D03* Y2825D02* D03* X1820Y2003D02* D03* Y1927D02* D03* X3660Y2177D02* D03* Y2253D02* D03* X1660Y1633D02* D03* Y1557D02* D03* X1210Y738D02* D03* Y662D02* D03* D87* X3118Y1585D02* D03* X3042D02* D03* X1378Y1625D02* D03* X1622Y3034D02* D03* X1302Y1625D02* D03* X973Y1565D02* D03* X897D02* D03* X973Y1476D02* D03* X897D02* D03* X973Y1663D02* D03* X897D02* D03* X1357Y2844D02* D03* X1433D02* D03* X1357Y2479D02* D03* X1433D02* D03* X1357Y2934D02* D03* X1433D02* D03* X1357Y2754D02* D03* X1433D02* D03* X2352Y2834D02* D03* X2428D02* D03* X2248Y1995D02* D03* X2172D02* D03* X2398Y2185D02* D03* X2322D02* D03* X2248Y1905D02* D03* X2172D02* D03* X1658Y2937D02* D03* X1582D02* D03* X1698Y3034D02* D03* Y3127D02* D03* X1622D02* D03* X2398Y2424D02* D03* X2322D02* D03* X2352Y2924D02* D03* X2428D02* D03* X1624Y3218D02* D03* X1700D02* D03* X2248Y1815D02* D03* X2172D02* D03* X2568Y2015D02* D03* X2492D02* D03* X3008Y1725D02* D03* X2932D02* D03* X3008Y1815D02* D03* X2932D02* D03* X3168Y1925D02* D03* X3092D02* D03* X3098Y2205D02* D03* X3022D02* D03* X3168Y1815D02* D03* X3092D02* D03* X3168Y2015D02* D03* X3092D02* D03* X3428Y1720D02* D03* X3352D02* D03* X3268Y2207D02* D03* X3192D02* D03* X2648Y1205D02* D03* X2572D02* D03* X1988Y1905D02* D03* X1912D02* D03* X1728Y1725D02* D03* X1652D02* D03* X1912Y1725D02* D03* X1988D02* D03* X1988Y1995D02* D03* X1912D02* D03* X2428Y2564D02* D03* X1357Y2569D02* D03* X1433D02* D03* X1357Y2664D02* D03* X1433D02* D03* X2568Y1805D02* D03* X2492D02* D03* X3168Y2105D02* D03* X3092D02* D03* X3168Y1725D02* D03* X3092D02* D03* X1812Y2095D02* D03* X1888D02* D03* X1492Y1730D02* D03* X1568D02* D03* X2768Y2095D02* D03* X2692D02* D03* X2748Y1475D02* D03* X2672D02* D03* X1568Y1640D02* D03* X1492D02* D03* X1988Y1815D02* D03* X1912D02* D03* X1728D02* D03* X1652D02* D03* X3660Y472D02* D03* X3584D02* D03* X3660Y669D02* D03* X3584D02* D03* X3660Y866D02* D03* X3584D02* D03* X3660Y1063D02* D03* X3584D02* D03* X3660Y1260D02* D03* X3584D02* D03* X3660Y2352D02* D03* X3584D02* D03* X3660Y2559D02* D03* X3584D02* D03* X3660Y2756D02* D03* X3584D02* D03* X3660Y2953D02* D03* X3584D02* D03* X3660Y3150D02* D03* X3584D02* D03* X2352Y2564D02* D03* X651Y1713D02* D03* X727D02* D03* X1078Y1325D02* D03* X1002D02* D03* X888Y4017D02* D03* X812D02* D03* X978Y587D02* D03* X902D02* D03* X1008Y1017D02* D03* X932D02* D03* D88* X2877Y1975D02* D03* X2870Y1642D02* D03* X1528Y1507D02* D03* X1453D02* D03* X1153Y1419D02* D03* Y1494D02* D03* X2590Y2217D02* D03* Y2292D02* D03* X2183Y3097D02* D03* X2802Y1975D02* D03* X2870Y1567D02* D03* X2750Y1577D02* D03* Y1652D02* D03* X1907Y2174D02* D03* X1737Y2080D02* D03* X1228Y1584D02* D03* X1153D02* D03* X400Y589D02* D03* Y664D02* D03* X2942Y1970D02* D03* X3017D02* D03* X1662Y2080D02* D03* X1832Y2174D02* D03* X2258Y3097D02* D03* D89* X3663Y3346D02* D03* X3503D02* D03* Y1457D02* D03* X3663D02* D03* X3503Y1654D02* D03* X3663D02* D03* X3510Y1775D02* D03* X3670D02* D03* X3503Y3543D02* D03* X3663D02* D03* X3503Y3740D02* D03* X3663D02* D03* X1655Y3563D02* D03* X1495D02* D03* D90* X3500Y1526D02* D03* Y1587D02* D03* Y3477D02* D03* Y3416D02* D03* X659Y1379D02* D03* Y1318D02* D03* X3584Y1316D02* D03* Y1377D02* D03* X3585Y592D02* D03* Y531D02* D03* Y797D02* D03* Y736D02* D03* Y992D02* D03* Y931D02* D03* X3584Y1197D02* D03* Y1136D02* D03* X3580Y2487D02* D03* Y2426D02* D03* Y2687D02* D03* Y2626D02* D03* Y2887D02* D03* Y2826D02* D03* Y3087D02* D03* Y3026D02* D03* Y3277D02* D03* Y3216D02* D03* D91* X3541Y1557D02* D03* Y3447D02* D03* X618Y1348D02* D03* X3625Y1347D02* D03* X3626Y562D02* D03* Y767D02* D03* Y962D02* D03* X3625Y1167D02* D03* X3621Y2457D02* D03* Y2657D02* D03* Y2857D02* D03* Y3057D02* D03* Y3247D02* D03* D92* X3459Y1557D02* D03* Y3447D02* D03* X701Y1348D02* D03* X3543Y1347D02* D03* X3544Y562D02* D03* Y767D02* D03* Y962D02* D03* X3543Y1167D02* D03* X3539Y2457D02* D03* Y2657D02* D03* Y2857D02* D03* Y3057D02* D03* Y3247D02* D03* D93* X720Y747D02* D03* X940D02* D03* D94* X1490Y1427D02* D03* X2839Y1895D02* D03* X1191Y1664D02* D03* X2979Y1890D02* D03* X1700Y2160D02* D03* X1870Y2254D02* D03* X2220Y3017D02* D03* D95* X1073Y1457D02* D03* X2510Y2255D02* D03* X2950Y1604D02* D03* X2670Y1615D02* D03* X320Y627D02* D03* D96* X3225Y463D02* D03* X3035D02* D03* X3275Y607D02* D03* X3465D02* D03* X3265Y2347D02* D03* X3075D02* D03* X3255Y2497D02* D03* X3445D02* D03* X3365Y2225D02* D03* X3555D02* D03* D97* X3426Y758D02* D03* Y875D02* D03* Y965D02* D03* Y1082D02* D03* X3328Y965D02* D03* Y1082D02* D03* X3328Y875D02* D03* Y758D02* D03* X3239Y758D02* D03* X3230Y1085D02* D03* X3376Y2638D02* D03* Y2755D02* D03* Y2845D02* D03* Y2962D02* D03* X3278Y2845D02* D03* Y2962D02* D03* Y2638D02* D03* Y2755D02* D03* X3179Y2638D02* D03* Y2755D02* D03* X3179Y2962D02* D03* Y2845D02* D03* X2913Y3150D02* D03* Y3267D02* D03* X1560Y1986D02* D03* Y2103D02* D03* X1960Y1516D02* D03* Y1633D02* D03* X2080Y2056D02* D03* Y2173D02* D03* X2070Y1633D02* D03* Y1516D02* D03* X2360Y1656D02* D03* Y1773D02* D03* X2750Y1266D02* D03* Y1383D02* D03* X2590Y986D02* D03* Y1103D02* D03* X1820Y1843D02* D03* Y1726D02* D03* X1860Y1516D02* D03* Y1633D02* D03* X1670Y1896D02* D03* Y2013D02* D03* X1760Y1516D02* D03* Y1633D02* D03* X1980Y2086D02* D03* Y2203D02* D03* X3239Y875D02* D03* X3230Y968D02* D03* X3260Y1828D02* D03* Y1711D02* D03* X1250Y158D02* D03* Y275D02* D03* D98* X830Y1374D02* D03* X3108Y2537D02* D03* X3070Y774D02* D03* D99* X875Y1219D02* D03* X785D02* D03* X3025Y619D02* D03* X3115D02* D03* D100* X2146Y3594D02* D03* Y3434D02* D03* X1762Y3444D02* D03* Y3604D02* D03* X1350Y4045D02* D03* Y3885D02* D03* X910Y3657D02* D03* Y3817D02* D03* X2000Y4055D02* D03* Y3895D02* D03* D101* X2254Y3463D02* D03* X1270Y3545D02* D03* X1180Y3548D02* D03* X1090D02* D03* X1240Y3968D02* D03* X1467Y3384D02* D03* X1663Y3467D02* D03* X1959Y3463D02* D03* D102* X2254Y3545D02* D03* X1270Y3463D02* D03* X1180Y3466D02* D03* X1090D02* D03* X1240Y3886D02* D03* X1663Y3384D02* D03* X1467Y3467D02* D03* X1959Y3545D02* D03* D103* X2223Y3504D02* D03* X2284D02* D03* X1300Y3504D02* D03* X1239D02* D03* X1211Y3507D02* D03* X1149D02* D03* X1121D02* D03* X1059D02* D03* X1271Y3927D02* D03* X1209D02* D03* X1497Y3425D02* D03* X1436D02* D03* X1633Y3425D02* D03* X1694D02* D03* X1989Y3504D02* D03* X1928D02* D03* D104* X1553Y2315D02* D03* X1427D02* D03* X2193Y2275D02* D03* X2067D02* D03* X2477Y2125D02* D03* X2603D02* D03* X2462Y1695D02* D03* X2588D02* D03* D105* X1811Y2695D02* D03* X1837D02* D03* X1862D02* D03* X1888D02* D03* X1914D02* D03* X1939D02* D03* X1965D02* D03* X1990D02* D03* X2016D02* D03* X2067D02* D03* X2118D02* D03* X2144D02* D03* X1811Y2955D02* D03* X1837D02* D03* X1862D02* D03* X1888D02* D03* X1914D02* D03* X1939D02* D03* X1965D02* D03* X1990D02* D03* X2016D02* D03* X2042D02* D03* X2067D02* D03* X2093D02* D03* X2118D02* D03* X2042Y2695D02* D03* X2093D02* D03* D106* X2144Y2955D02* D03* D107* X3560Y2109D02* D03* Y2059D02* D03* Y2009D02* D03* Y1959D02* D03* X3340D02* D03* Y2009D02* D03* Y2059D02* D03* Y2109D02* D03* D108* X3410Y1884D02* D03* D109* X3447Y1806D02* D03* X3374D02* D03* D110* X2700Y1985D02* D03* Y1744D02* D03* D111* X910Y3576D02* D03* Y3458D02* D03* D112* X880Y3516D02* D03* X940D02* D03* D113* X919Y3907D02* D03* X801D02* D03* D114* X861Y3877D02* D03* Y3936D02* D03* D115* X1801Y3308D02* D03* X2256D02* D03* D116* X1135Y2105D02* D03* D117* X1910Y3892D02* D03* Y3982D02* D03* X2040Y3552D02* D03* Y3462D02* D03* X1570Y3375D02* D03* Y3465D02* D03* D118* X2953Y2492D02* D03* Y2582D02* D03* D119* X886Y3248D02* D03* X3346Y3937D02* D03* X197Y394D02* D03* X2835D02* D03* D120* X748Y3740D02* D03* X2598D02* D03* D121* X1019Y3795D02* D03* X492Y1161D02* D03* D122* X1128Y3795D02* D03* X1237D02* D03* X1346D02* D03* X1455D02* D03* X1564D02* D03* X1673D02* D03* X1782D02* D03* X1891D02* D03* X2000D02* D03* X2109D02* D03* X2218D02* D03* X2327D02* D03* X1074Y3685D02* D03* X1183D02* D03* X1292D02* D03* X1401D02* D03* X1510D02* D03* X1619D02* D03* X1728D02* D03* X1837D02* D03* X1946D02* D03* X2055D02* D03* X2164D02* D03* X2273D02* D03* X392Y2415D02* D03* Y2306D02* D03* Y2197D02* D03* Y1979D02* D03* Y1870D02* D03* Y1761D02* D03* Y1652D02* D03* Y1543D02* D03* Y1325D02* D03* Y1216D02* D03* X492Y2469D02* D03* Y2360D02* D03* Y2251D02* D03* Y2142D02* D03* Y2033D02* D03* Y1815D02* D03* Y1706D02* D03* Y1597D02* D03* Y1488D02* D03* Y1379D02* D03* Y1270D02* D03* Y1924D02* D03* X392Y1433D02* D03* Y2088D02* D03* D123* X470Y3977D02* D03* D124* Y3768D02* D03* D125* X1220Y2677D02* D03* Y2559D02* D03* Y2618D02* D03* Y2795D02* D03* Y2854D02* D03* Y2736D02* D03* X2580Y2805D02* D03* Y2746D02* D03* Y2864D02* D03* Y2628D02* D03* Y2569D02* D03* Y2687D02* D03* D126* X315Y3976D02* D03* D127* Y3826D02* D03* Y3676D02* D03* X1670Y197D02* D03* X3780Y2047D02* D03* Y3937D02* D03* Y3740D02* D03* Y1850D02* D03* Y3543D02* D03* Y1654D02* D03* Y3346D02* D03* Y1457D02* D03* Y3150D02* D03* Y1260D02* D03* Y2953D02* D03* Y1063D02* D03* Y2756D02* D03* Y866D02* D03* Y2559D02* D03* Y669D02* D03* Y2362D02* D03* Y472D02* D03* D128* X1934Y3308D02* D03* X2126D02* D03* D129* X2717Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* X630Y3642D02* D03* Y3843D02* D03* Y3543D02* D03* Y3937D02* D03* D130* X1130Y2387D02* D03* D131* X1230D02* D03* X1130Y2287D02* D03* X1230D02* D03* X1130Y2187D02* D03* X1230D02* D03* D132* X442Y886D02* D03* Y2744D02* D03* M02* gerbv-2.7.0/example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.txt0000644000175000017500000011247513421555714023567 0ustar carstencarstenDesignator Footprint Mid X Mid Y Ref X Ref Y Pad X Pad Y TB Rotation Comment HEAD KEY-98KSC -1968.504mil -4133.858mil 890mil 5190mil -1968.504mil -4133.858mil T 0.00 ZB4 BOHR-3.0 885.826mil 3248.032mil 885.827mil 3248.031mil 885.826mil 3248.032mil T 0.00 ZB3 BOHR-3.0 3346.456mil 3937.008mil 3346.457mil 3937.007mil 3346.456mil 3937.008mil T 0.00 ZB2 BOHR-3.0 2834.646mil 393.7mil 2834.646mil 393.7mil 2834.646mil 393.7mil T 0.00 ZB1 BOHR-3.0 196.85mil 393.7mil 196.85mil 393.7mil 196.85mil 393.7mil T 0.00 U202 SO-16 1240.496mil 1909.504mil 1240mil 1910mil 1065.496mil 1799.504mil T 90.00 M74HC4053 R260 0805_REFL 2874.992mil 2105.008mil 2875mil 2105mil 2874.992mil 2067.008mil T 90.00 1K 1% R259 0805_REFL 3079.992mil 1584.638mil 3080mil 1584.646mil 3117.992mil 1584.638mil T 180.00 1K 1% R258 0805_REFL 3000.008mil 2079.992mil 3000mil 2080mil 3000.008mil 2117.992mil T 270.00 1K 1% R257 0805_REFL 2839.992mil 1754.654mil 2840mil 1754.646mil 2839.992mil 1716.654mil T 90.00 1K 1% R256 0805_REFL 1669.992mil 2254.654mil 1670mil 2254.646mil 1669.992mil 2216.654mil T 90.00 100R 1% R255 0805_REFL 1759.992mil 2254.654mil 1760mil 2254.646mil 1759.992mil 2216.654mil T 90.00 100R 1% C214 0805_REFL 970.008mil 1904.638mil 970mil 1904.646mil 970.008mil 1942.638mil T 270.00 100NF/50V U200 SOL-28 1930.504mil 2629.512mil 1931mil 2629.016mil 2255.504mil 2819.512mil T 270.00 Comment C100 1206_REFL 2913.394mil 3208.654mil 2913.386mil 3208.661mil 2913.394mil 3267.154mil T 270.00 10NF/500V C101 1206_REFL 3277.566mil 2696.842mil 3277.559mil 2696.85mil 3277.566mil 2755.342mil T 270.00 10NF/500V C102 1206_REFL 3277.566mil 2903.536mil 3277.559mil 2903.543mil 3277.566mil 2962.036mil T 270.00 10NF/500V C103 1206_REFL 3020.008mil 1484.654mil 3020mil 1484.646mil 2961.508mil 1484.654mil T 360.00 10NF/500V C104 1206_REFL 3327.708mil 816.78mil 3327.716mil 816.772mil 3327.708mil 758.28mil T 90.00 10NF/500V C105 1206_REFL 3327.724mil 1023.456mil 3327.716mil 1023.465mil 3327.724mil 1081.956mil T 270.00 10NF/500V C106 1206_REFL 3297.236mil 3159.442mil 3297.244mil 3159.449mil 3355.736mil 3159.442mil T 180.00 1NF/500V C107 1206_REFL 3297.236mil 3061.016mil 3297.244mil 3061.024mil 3355.736mil 3061.016mil T 180.00 1NF/500V C108 1206_REFL 3435.032mil 2352.354mil 3435.039mil 2352.362mil 3493.532mil 2352.354mil T 180.00 1NF/500V C109 1206_REFL 3288.338mil 1279.362mil 3288.346mil 1279.37mil 3346.838mil 1279.362mil T 180.00 1NF/500V C110 1206_REFL 3429.992mil 1176.842mil 3430mil 1176.85mil 3488.492mil 1176.842mil T 180.00 1NF/500V C111 1206_REFL 3395.662mil 472.434mil 3395.669mil 472.441mil 3454.162mil 472.434mil T 180.00 1NF/500V C112 0805_REFL 935.048mil 1564.968mil 935.039mil 1564.961mil 897.048mil 1564.968mil T 360.00 100NF/50V C113 0805_REFL 1063mil 1624.008mil 1062.992mil 1624.016mil 1063mil 1662.008mil T 270.00 100NF/50V C114 0805_REFL 849.992mil 4016.842mil 850mil 4016.85mil 887.992mil 4016.842mil T 180.00 100NF/50V C115 0805_REFL 1210.008mil 699.991mil 1210mil 700mil 1210.008mil 737.991mil T 270.00 100NF/50V C201 0805_REFL 2260.008mil 1524.638mil 2260mil 1524.646mil 2260.008mil 1562.638mil T 270.00 100NF/50V C202 0805_REFL 2210.008mil 1994.654mil 2210mil 1994.646mil 2172.008mil 1994.654mil T 360.00 100NF/50V C207 0805_REFL 2210.008mil 1814.654mil 2210mil 1814.646mil 2172.008mil 1814.654mil T 360.00 10NF/50V C208 0805_REFL 2360.008mil 2184.654mil 2360mil 2184.646mil 2322.008mil 2184.654mil T 360.00 10NF/50V C212 0805_REFL 2090.008mil 3086.842mil 2090mil 3086.85mil 2090.008mil 3124.842mil T 270.00 15PF/50V C213 0805_REFL 1661.992mil 3217.842mil 1662mil 3217.85mil 1699.992mil 3217.842mil T 180.00 15PF/50V DS100 1206-D_REFL 3179.142mil 2696.842mil 3179.134mil 2696.85mil 3179.142mil 2755.342mil T 270.00 BAS85 DS101 1206-D_REFL 3239.142mil 816.764mil 3239.134mil 816.772mil 3239.142mil 875.264mil T 270.00 BAS85 DS102 1206-D_REFL 738.182mil 1476.37mil 738.189mil 1476.378mil 796.682mil 1476.37mil T 180.00 BAS85 DS103 1206-D_REFL 708.654mil 1604.324mil 708.661mil 1604.331mil 767.154mil 1604.324mil T 180.00 BAS85 DS105 SOT-23 1190.448mil 1623.52mil 1190.945mil 1624.016mil 1152.948mil 1583.52mil T 360.00 BAS70-04 DS106 SOT-23 1112.7mil 1456.198mil 1112.205mil 1456.693mil 1152.7mil 1418.698mil T 90.00 BAS70-04 DS107 SOT-23 1490.496mil 1467.346mil 1490mil 1466.85mil 1527.996mil 1507.346mil T 180.00 BAS70-04 DS200 1206-D_REFL 2360.008mil 1714.638mil 2360mil 1714.646mil 2360.008mil 1773.138mil T 270.00 BAS85 DS201 1206-D_REFL 2080.008mil 2114.638mil 2080mil 2114.646mil 2080.008mil 2173.138mil T 270.00 BAS85 DS202 1206-D_REFL 1560.008mil 2044.638mil 1560mil 2044.646mil 1560.008mil 2103.138mil T 270.00 BAS85 DS205 SOT-23 2220.496mil 3057.346mil 2220mil 3056.85mil 2257.996mil 3097.346mil T 180.00 BAS70-04 DS206 SOT-23 2550.496mil 2254.15mil 2550mil 2254.646mil 2590.496mil 2216.65mil T 90.00 BAS70-04 DT100 SMA 3582.67mil 3346.45mil 3582.677mil 3346.457mil 3662.67mil 3346.45mil T 180.00 SMAJ15CA DT101 SMA 3582.67mil 3543.3mil 3582.677mil 3543.307mil 3662.67mil 3543.3mil T 180.00 SMAJ15CA DT102 SMA 3582.67mil 3740.15mil 3582.677mil 3740.157mil 3662.67mil 3740.15mil T 180.00 SMAJ15CA DT103 SMA 910.008mil 3736.842mil 910mil 3736.85mil 910.008mil 3816.842mil T 270.00 SMAJ15CA DT104 SMA 1349.992mil 3964.654mil 1350mil 3964.646mil 1349.992mil 3884.654mil T 90.00 SMAJ15CA DT105 SMA 1761.818mil 3523.614mil 1761.811mil 3523.622mil 1761.818mil 3603.614mil T 270.00 SMAJ15CA DT106 SMA 3582.67mil 1456.686mil 3582.677mil 1456.693mil 3662.67mil 1456.686mil T 180.00 SMAJ15CA DT107 SMA 3582.67mil 1653.536mil 3582.677mil 1653.543mil 3662.67mil 1653.536mil T 180.00 SMAJ15CA DT108 SMA 3589.992mil 1774.638mil 3590mil 1774.646mil 3669.992mil 1774.638mil T 180.00 SMAJ15CA DT109 SMA 1574.796mil 3562.984mil 1574.803mil 3562.992mil 1654.796mil 3562.984mil T 180.00 *SMAJ5.0CA DT110 SMA 2145.662mil 3513.788mil 2145.669mil 3513.78mil 2145.662mil 3433.788mil T 90.00 *SMAJ5.0CA DT111 SMA 2000.008mil 3974.638mil 2000mil 3974.646mil 2000.008mil 4054.638mil T 270.00 *SMAJ5.0CA DZ100 1206-D_REFL 3080.7mil 3061.016mil 3080.709mil 3061.024mil 3139.2mil 3061.016mil T 180.00 ZMM3.3 DZ101 1206-D_REFL 3229.992mil 1176.842mil 3230mil 1176.85mil 3288.492mil 1176.842mil T 180.00 ZMM3.3 DZ102 1206-D_REFL 3080.716mil 3257.882mil 3080.709mil 3257.874mil 3022.216mil 3257.882mil T 360.00 ZMM18 DZ103 1206-D_REFL 3020.008mil 1384.654mil 3020mil 1384.646mil 2961.508mil 1384.654mil T 360.00 ZMM18 DZ104 1206-D_REFL 950.008mil 1116.858mil 950mil 1116.85mil 891.508mil 1116.858mil T 360.00 ZMM7.5 DZ200 1206-D_REFL 3260.008mil 1769.992mil 3260mil 1770mil 3260.008mil 1828.492mil T 270.00 ZMM3.3 DZ203 1206-D_REFL 2349.992mil 2284.638mil 2350mil 2284.646mil 2408.492mil 2284.638mil T 180.00 ZMM4.7 DZ204 1206-D_REFL 1510.008mil 2204.654mil 1510mil 2204.646mil 1451.508mil 2204.654mil T 360.00 ZMM4.7 DZ207 1206-D_REFL 2069.992mil 1574.654mil 2070mil 1574.646mil 2069.992mil 1516.154mil T 90.00 ZMM4.7 DZ208 1206-D_REFL 1960.008mil 1574.638mil 1960mil 1574.646mil 1960.008mil 1633.138mil T 270.00 ZMM2.4 DZ209 1206-D_REFL 2339.992mil 2094.638mil 2340mil 2094.646mil 2398.492mil 2094.638mil T 180.00 ZMM4.7 E100 C 3170.008mil 2346.858mil 3170mil 2346.85mil 3075.008mil 2346.858mil T 360.00 10UF/25V(C) E101 C 3349.992mil 2496.842mil 3350mil 2496.85mil 3444.992mil 2496.842mil T 180.00 10UF/25V(C) E102 C 3129.93mil 462.606mil 3129.921mil 462.599mil 3034.93mil 462.606mil T 360.00 10UF/25V(C) E103 C 3369.992mil 606.842mil 3370mil 606.85mil 3464.992mil 606.842mil T 180.00 10UF/25V(C) E200 B 2540.008mil 2124.654mil 2540mil 2124.646mil 2477.008mil 2124.654mil T 360.00 4.7UF/10V E202 B 2129.992mil 2274.638mil 2130mil 2274.646mil 2192.992mil 2274.638mil T 180.00 4.7UF/10V E203 B 1489.992mil 2314.638mil 1490mil 2314.646mil 1552.992mil 2314.638mil T 180.00 4.7UF/10V F100 NFE31P 860mil 3906.851mil 860mil 3906.85mil 919.056mil 3906.85mil T 180.00 NFE31PT222Z1E9_6A F101 NFE31P 910mil 3516.851mil 910mil 3516.85mil 910mil 3457.796mil T 90.00 NFE31PT222Z1E9_6A F102 NFM21C 3499.977mil 3446.842mil 3500mil 3446.85mil 3541.316mil 3446.842mil T 180.00 NFM21CC223R1H3_1A1 F103 NFM21C 3579.977mil 3246.842mil 3580mil 3246.85mil 3621.316mil 3246.842mil T 180.00 NFM21CC223R1H3_1A1 F104 NFM21C 659.472mil 1348.434mil 659.449mil 1348.425mil 618.134mil 1348.434mil T 360.00 NFM21CC223R1H3_1A1 F105 NFM21C 3579.977mil 3056.842mil 3580mil 3056.85mil 3621.316mil 3056.842mil T 180.00 NFM21CC223R1H3_1A1 F106 NFM21C 3579.977mil 2856.842mil 3580mil 2856.85mil 3621.316mil 2856.842mil T 180.00 NFM21CC223R1H3_1A1 F107 NFM21C 3579.977mil 2656.842mil 3580mil 2656.85mil 3621.316mil 2656.842mil T 180.00 NFM21CC223R1H3_1A1 F108 NFM21C 3579.977mil 2456.842mil 3580mil 2456.85mil 3621.316mil 2456.842mil T 180.00 NFM21CC223R1H3_1A1 F109 NFM21C 3499.977mil 1556.842mil 3500mil 1556.85mil 3541.316mil 1556.842mil T 180.00 NFM21CC223R1H3_1A1 F110 NFM21C 3584.017mil 1346.842mil 3584.04mil 1346.85mil 3625.356mil 1346.842mil T 180.00 NFM21CC223R1H3_1A1 F111 NFM21C 3584.017mil 1166.842mil 3584.04mil 1166.85mil 3625.356mil 1166.842mil T 180.00 NFM21CC223R1H3_1A1 F112 NFM21C 3584.977mil 961.842mil 3585mil 961.85mil 3626.316mil 961.842mil T 180.00 NFM21CC223R1H3_1A1 F113 NFM21C 3584.977mil 766.842mil 3585mil 766.85mil 3626.316mil 766.842mil T 180.00 NFM21CC223R1H3_1A1 F114 NFM21C 3584.977mil 561.842mil 3585mil 561.85mil 3626.316mil 561.842mil T 180.00 NFM21CC223R1H3_1A1 F116 NFM21C 1269.677mil 3503.961mil 1269.685mil 3503.937mil 1269.678mil 3462.622mil T 90.00 * F117 NFM21C 1466.544mil 3425.174mil 1466.535mil 3425.197mil 1466.544mil 3466.512mil T 270.00 * F118 NFM21C 1663.378mil 3425.221mil 1663.386mil 3425.197mil 1663.378mil 3383.882mil T 90.00 * F119 0805 1569.505mil 3420.495mil 1570mil 3420mil 1569.505mil 3465.495mil T 270.00 BK2125HS601-T 600R@100MHZ F120 NFM21C 1958.67mil 3503.914mil 1958.661mil 3503.937mil 1958.67mil 3545.252mil T 270.00 * F121 0805 2039.504mil 3507.346mil 2040mil 3506.85mil 2039.504mil 3552.346mil T 270.00 BK2125HS601-T 600R@100MHZ F122 0805 1909.944mil 3936.512mil 1909.449mil 3937.008mil 1909.944mil 3891.512mil T 90.00 BK2125HS601-T 600R@100MHZ F123 NFM21C 2253.945mil 3503.914mil 2253.937mil 3503.937mil 2253.944mil 3545.252mil T 270.00 * LED200 LED_3M 1260.008mil 1465.26mil 1259.842mil 1515.748mil 1260.008mil 1415.26mil T 270.00 LED GRN 3MM P100 BOURNS3314J 3030mil 2536.85mil 3030mil 2536.85mil 2952.5mil 2491.85mil T 270.00 5K 20% 0.25W P101 BOURNS3314J 3070mil 696.85mil 3070mil 696.85mil 3115mil 619.35mil T 360.00 5K 20% 0.25W P102 BOURNS3314J 830mil 1296.85mil 830mil 1296.85mil 875mil 1219.35mil T 360.00 10K 20% 0.25W Q200 XTAL-SS3 2028.98mil 3307.582mil 2125.984mil 3307.087mil 2126.48mil 3307.582mil T 180.00 SMT4.0MHz R100 1206_REFL 3061.016mil 3159.442mil 3061.024mil 3159.449mil 3119.516mil 3159.442mil T 180.00 390R 1% R101 1206_REFL 3020.007mil 1286.859mil 3020mil 1286.85mil 2961.507mil 1286.859mil T 360.00 390R 1% R102 1206_REFL 3179.126mil 2903.552mil 3179.134mil 2903.543mil 3179.126mil 2845.052mil T 90.00 220R 1% R103 1206_REFL 3229.991mil 1026.858mil 3230mil 1026.85mil 3229.991mil 968.358mil T 90.00 220R 1% R104 1206_REFL 3300.008mil 3256.859mil 3300mil 3256.85mil 3241.508mil 3256.859mil T 360.00 0R0 R105 1206_REFL 3229.992mil 1384.638mil 3230mil 1384.646mil 3288.492mil 1384.638mil T 180.00 0R0 R106 1206_REFL 3375.992mil 2903.536mil 3375.984mil 2903.543mil 3375.992mil 2962.036mil T 270.00 6R8 5% R107 1206_REFL 3375.992mil 2696.842mil 3375.984mil 2696.85mil 3375.992mil 2755.342mil T 270.00 6R8 5% R108 1206_REFL 3426.15mil 1023.456mil 3426.142mil 1023.465mil 3426.15mil 1081.956mil T 270.00 6R8 5% R109 1206_REFL 3426.15mil 816.764mil 3426.142mil 816.772mil 3426.15mil 875.264mil T 270.00 6R8 5% R110 0805_REFL 935.048mil 1476.386mil 935.039mil 1476.378mil 897.048mil 1476.386mil T 360.00 10K 1% R111 0805_REFL 935.048mil 1663.394mil 935.039mil 1663.386mil 897.048mil 1663.394mil T 360.00 10K 1% R112 0805_REFL 1119.992mil 696.858mil 1120mil 696.85mil 1119.992mil 658.858mil T 90.00 10K 1% R113 0805_REFL 1339.992mil 1624.638mil 1340mil 1624.646mil 1377.992mil 1624.638mil T 180.00 680R 1% R114 1206_REFL 1060.008mil 1226.858mil 1060mil 1226.85mil 1001.508mil 1226.858mil T 360.00 680R 1% R115 0805_REFL 1040.008mil 1325.007mil 1040mil 1325mil 1002.008mil 1325.007mil T 360.00 2K2 1% R116 2512 829.992mil 746.844mil 830mil 746.85mil 940.228mil 746.844mil T 180.00 0R0 5% R200 0805_REFL 2259.992mil 1684.654mil 2260mil 1684.646mil 2259.992mil 1646.654mil T 90.00 10K 1% R201 0805_REFL 2169.992mil 1684.654mil 2170mil 1684.646mil 2169.992mil 1646.654mil T 90.00 10K 1% R202 0805_REFL 2169.992mil 2134.654mil 2170mil 2134.646mil 2169.992mil 2096.654mil T 90.00 10K 1% R207 0805_REFL 2530.008mil 2014.654mil 2530mil 2014.646mil 2492.008mil 2014.654mil T 360.00 470R 1% R208 0805_REFL 2360.008mil 2424.024mil 2360mil 2424.016mil 2322.008mil 2424.024mil T 360.00 470R 1% R209 0805_REFL 1519.992mil 2630.007mil 1520mil 2630mil 1519.992mil 2592.007mil T 90.00 470R 1% R213 0805_REFL 2169.992mil 1524.654mil 2170mil 1524.646mil 2169.992mil 1486.654mil T 90.00 100R 1% R214 0805_REFL 1919.992mil 3084.024mil 1920mil 3084.016mil 1919.992mil 3046.024mil T 90.00 100R 1% R215 0805_REFL 2389.992mil 2834.008mil 2390mil 2834.016mil 2427.992mil 2834.008mil T 180.00 100R 1% R216 0805_REFL 1394.992mil 2934.008mil 1395mil 2934.016mil 1432.992mil 2934.008mil T 180.00 100R 1% R217 0805_REFL 1394.992mil 2844.008mil 1395mil 2844.016mil 1432.992mil 2844.008mil T 180.00 100R 1% R218 0805_REFL 2429.992mil 2694.024mil 2430mil 2694.016mil 2429.992mil 2656.024mil T 90.00 100R 1% R223 0805_REFL 2349.992mil 1524.654mil 2350mil 1524.646mil 2349.992mil 1486.654mil T 90.00 100K 1% R224 0805_REFL 2389.992mil 2924.008mil 2390mil 2924.016mil 2427.992mil 2924.008mil T 180.00 22K 1% R225 0805_REFL 1660.008mil 3126.858mil 1660mil 3126.85mil 1622.008mil 3126.858mil T 360.00 100R R226 0805_REFL 1660.008mil 3034.024mil 1660mil 3034.016mil 1622.008mil 3034.024mil T 360.00 100R R227 0805_REFL 1620.008mil 2936.858mil 1620mil 2936.85mil 1582.008mil 2936.858mil T 360.00 100R R229 0805_REFL 2079.992mil 1934.654mil 2080mil 1934.646mil 2079.992mil 1896.654mil T 90.00 1K2 1% R236 0805_REFL 2079.992mil 1764.654mil 2080mil 1764.646mil 2079.992mil 1726.654mil T 90.00 2K4 5% R237 0805_REFL 2210.008mil 1904.654mil 2210mil 1904.646mil 2172.008mil 1904.654mil T 360.00 2K4 5% R241 0805_REFL 1394.992mil 2754.008mil 1395mil 2754.016mil 1432.992mil 2754.008mil T 180.00 *3K3 1% R242 0805_REFL 1394.992mil 2479.008mil 1395mil 2479.016mil 1432.992mil 2479.008mil T 180.00 *3K3 1% RV100 0805_REFL 1460.008mil 3964.638mil 1460mil 3964.646mil 1460.008mil 4002.638mil T 270.00 VC080514A300 RV101 0805_REFL 1369.992mil 3526.858mil 1370mil 3526.85mil 1369.992mil 3488.858mil T 90.00 VC080514A300 RV102 0805_REFL 2109.992mil 3964.654mil 2110mil 3964.646mil 2109.992mil 3926.654mil T 90.00 VC080514A300 RV103 0805_REFL 1870.086mil 3523.614mil 1870.079mil 3523.622mil 1870.086mil 3561.614mil T 270.00 VC080514A300 RV104 0805_REFL 3622.04mil 3149.598mil 3622.047mil 3149.606mil 3660.04mil 3149.598mil T 180.00 VC080514A300 RV105 0805_REFL 3622.04mil 2952.748mil 3622.047mil 2952.756mil 3660.04mil 2952.748mil T 180.00 VC080514A300 RV106 0805_REFL 3622.04mil 2755.898mil 3622.047mil 2755.905mil 3660.04mil 2755.898mil T 180.00 VC080514A300 RV107 0805_REFL 3622.04mil 2559.048mil 3622.047mil 2559.055mil 3660.04mil 2559.048mil T 180.00 VC080514A300 RV108 0805_REFL 3622.04mil 2352.354mil 3622.047mil 2352.362mil 3660.04mil 2352.354mil T 180.00 VC080514A300 RV109 0805_REFL 3622.04mil 1259.834mil 3622.047mil 1259.843mil 3660.04mil 1259.834mil T 180.00 VC080514A300 RV110 0805_REFL 3622.04mil 1062.984mil 3622.047mil 1062.992mil 3660.04mil 1062.984mil T 180.00 VC080514A300 RV111 0805_REFL 3622.04mil 866.134mil 3622.047mil 866.142mil 3660.04mil 866.134mil T 180.00 VC080514A300 RV112 0805_REFL 3622.04mil 669.284mil 3622.047mil 669.291mil 3660.04mil 669.284mil T 180.00 VC080514A300 RV113 0805_REFL 3622.04mil 472.434mil 3622.047mil 472.441mil 3660.04mil 472.434mil T 180.00 VC080514A300 U100 OPTO1 3010.008mil 2856.842mil 3010mil 2856.85mil 3060.008mil 2994.342mil T 270.00 PC357NT U101 OPTO1 3050.008mil 1036.842mil 3050mil 1036.85mil 3100.008mil 1174.342mil T 270.00 PC357NT U200 SSOP-28 1977.566mil 2824.796mil 1977.559mil 2824.803mil 2143.966mil 2954.796mil T 270.00 PIC16F872 X100 MC1,5/3-G-3,81 314.96mil 3826.378mil 314.961mil 3976.378mil 314.96mil 3976.378mil T 270.00 MC1.5/3-G1-3.81 X101 KK6410-10A 1970mil 846.85mil 1970mil 396.85mil 1970mil 396.85mil T 90.00 KK6410-10A X104 DB25RA/F 442.126mil 1815.418mil 492.126mil 1161.417mil 492.126mil 1161.418mil T 90.00 DB25F-XXX X105 KK6410-05A 2814.96mil 2837.796mil 2814.961mil 2637.795mil 2814.96mil 2637.796mil T 90.00 KK6410-05A X106 KK6410-05A 2560mil 596.85mil 2560mil 796.85mil 2560mil 796.85mil T 270.00 KK6410-05A X107 KK6410-05A 2860mil 916.85mil 2860mil 716.85mil 2860mil 716.85mil T 90.00 KK6410-05A X200 KK6410-10A 1380mil 846.85mil 1380mil 396.85mil 1380mil 396.85mil T 90.00 KK6410-10A XIA100 KK6410-03A 720mil 1016.85mil 720mil 916.85mil 720mil 916.85mil T 90.00 KK-3POL XIA101 KK6410-03A 720mil 1986.85mil 720mil 1886.85mil 720mil 1886.85mil T 90.00 KK-3POL XICD200 B6B-ZR 2580mil 2716.378mil 2580mil 2864.016mil 2580mil 2864.016mil T 270.00 CONS-ICD-B6B-ZR XP100 BIGPAD 3779.528mil 2047.244mil 3779.528mil 2047.244mil 3779.528mil 2047.244mil T 180.00 A1 XP101 BIGPAD 3779.528mil 3937.008mil 3779.528mil 3937.008mil 3779.528mil 3937.008mil T 180.00 A1 XP102 BIGPAD 3779.528mil 3740.158mil 3779.528mil 3740.157mil 3779.528mil 3740.158mil T 180.00 B1 XP103 BIGPAD 3779.528mil 1850.394mil 3779.528mil 1850.394mil 3779.528mil 1850.394mil T 180.00 B1 XP104 BIGPAD 3779.528mil 3543.308mil 3779.528mil 3543.307mil 3779.528mil 3543.308mil T 180.00 C1 XP105 BIGPAD 3779.528mil 1653.544mil 3779.528mil 1653.543mil 3779.528mil 1653.544mil T 180.00 C1 XP106 BIGPAD 3779.528mil 3346.456mil 3779.528mil 3346.457mil 3779.528mil 3346.456mil T 180.00 D1 XP107 BIGPAD 3779.528mil 1456.694mil 3779.528mil 1456.693mil 3779.528mil 1456.694mil T 180.00 D1 XP108 BIGPAD 3779.528mil 3149.606mil 3779.528mil 3149.606mil 3779.528mil 3149.606mil T 180.00 H1 XP109 BIGPAD 3779.528mil 1259.842mil 3779.528mil 1259.843mil 3779.528mil 1259.842mil T 180.00 H1 XP110 BIGPAD 3779.528mil 2952.756mil 3779.528mil 2952.756mil 3779.528mil 2952.756mil T 180.00 K1 XP111 BIGPAD 3779.528mil 1062.992mil 3779.528mil 1062.992mil 3779.528mil 1062.992mil T 180.00 K1 XP112 BIGPAD 3779.528mil 2755.906mil 3779.528mil 2755.905mil 3779.528mil 2755.906mil T 180.00 S1 XP113 BIGPAD 3779.528mil 866.142mil 3779.528mil 866.142mil 3779.528mil 866.142mil T 180.00 S1 XP114 BIGPAD 3779.528mil 2559.056mil 3779.528mil 2559.055mil 3779.528mil 2559.056mil T 180.00 T1 XP115 BIGPAD 3779.528mil 669.292mil 3779.528mil 669.291mil 3779.528mil 669.292mil T 180.00 T1 XP116 BIGPAD 3779.528mil 2362.206mil 3779.528mil 2362.205mil 3779.528mil 2362.206mil T 90.00 U1 XP117 BIGPAD 3779.528mil 472.442mil 3779.528mil 472.441mil 3779.528mil 472.442mil T 270.00 U1 XST200 B6B-ZR 1220mil 2706.378mil 1220mil 2854.016mil 1220mil 2854.016mil T 270.00 B6B-ZR X201 KK6410-10A 2260mil 846.85mil 2260mil 396.85mil 2260mil 396.85mil T 90.00 KK6410-10A X102 KK6410-10A 1670mil 846.85mil 1670mil 396.85mil 1670mil 396.85mil T 90.00 KK6410-10A U201 SO-8 3449.504mil 2034.15mil 3450mil 2034.646mil 3339.504mil 2109.15mil T 360.00 LT1763CS8-ADJ T203 SOT-23_MOS 2839.992mil 1934.638mil 2840mil 1934.646mil 2877.492mil 1974.638mil T 180.00 BSS138 T202 SOT-23_MOS 2979.992mil 1929.992mil 2980mil 1930mil 2942.492mil 1969.992mil T 180.00 BSS138 T201 SOT-23_MOS 2910.008mil 1604.638mil 2910mil 1604.646mil 2870.008mil 1642.138mil T 270.00 BSS138 T200 SOT-23_MOS_REFL 3410mil 1844.896mil 3410mil 1844.646mil 3410mil 1884.146mil T 0.00 FDV304P R253 1206_REFL 2509.992mil 1914.638mil 2510mil 1914.646mil 2568.492mil 1914.638mil T 180.00 0R0 R251 0805_REFL 2970.008mil 1724.654mil 2970mil 1724.646mil 2932.008mil 1724.654mil T 360.00 43R 5% R250 0805_REFL 2970.008mil 1814.654mil 2970mil 1814.646mil 2932.008mil 1814.654mil T 360.00 27R 1% R249 0805_REFL 3130.008mil 1924.654mil 3130mil 1924.646mil 3092.008mil 1924.654mil T 360.00 22R 1% R248 0805_REFL 3060.008mil 2204.654mil 3060mil 2204.646mil 3022.008mil 2204.654mil T 360.00 15R 5% R247 0805_REFL 3130.008mil 1814.654mil 3130mil 1814.646mil 3092.008mil 1814.654mil T 360.00 430R 1% R246 0805_REFL 3130.008mil 2014.654mil 3130mil 2014.646mil 3092.008mil 2014.654mil T 360.00 240R 1% R245 0805_REFL 3659.992mil 1994.654mil 3660mil 1994.646mil 3659.992mil 1956.654mil T 90.00 1K 1% R244 0805_REFL 3390.008mil 1720.008mil 3390mil 1720mil 3352.008mil 1720.008mil T 360.00 2K2 1% R243 0805_REFL 3230.008mil 2206.858mil 3230mil 2206.85mil 3192.008mil 2206.858mil T 360.00 1K5 1% R240 0805_REFL 2610.008mil 1204.654mil 2610mil 1204.646mil 2572.008mil 1204.654mil T 360.00 2K4 5% R239 0805_REFL 1950.008mil 1904.654mil 1950mil 1904.646mil 1912.008mil 1904.654mil T 360.00 2K4 5% R238 0805_REFL 1690.008mil 1724.654mil 1690mil 1724.646mil 1652.008mil 1724.654mil T 360.00 2K4 5% R235 0805_REFL 2480.008mil 1184.638mil 2480mil 1184.646mil 2480.008mil 1222.638mil T 270.00 1K2 1% R234 0805_REFL 2569.992mil 1344.654mil 2570mil 1344.646mil 2569.992mil 1306.654mil T 90.00 1K2 1% R233 0805_REFL 1949.992mil 1724.638mil 1950mil 1724.646mil 1987.992mil 1724.638mil T 180.00 1K2 1% R232 0805_REFL 1950.008mil 1994.654mil 1950mil 1994.646mil 1912.008mil 1994.654mil T 360.00 1K2 1% R231 0805_REFL 1660.008mil 1594.638mil 1660mil 1594.646mil 1660.008mil 1632.638mil T 270.00 1K2 1% R230 0805_REFL 1559.992mil 1854.654mil 1560mil 1854.646mil 1559.992mil 1816.654mil T 90.00 1K2 1% R222 0805_REFL 2389.992mil 2564.008mil 2390mil 2564.016mil 2427.992mil 2564.008mil T 180.00 100R 1% R221 0805_REFL 1394.992mil 2569.008mil 1395mil 2569.016mil 1432.992mil 2569.008mil T 180.00 100R 1% R220 0805_REFL 1394.992mil 2664.008mil 1395mil 2664.016mil 1432.992mil 2664.008mil T 180.00 100R 1% R219 0805_REFL 2349.992mil 2694.024mil 2350mil 2694.016mil 2349.992mil 2656.024mil T 90.00 100R 1% R212 0805_REFL 2530.008mil 1804.654mil 2530mil 1804.646mil 2492.008mil 1804.654mil T 360.00 470R 1% R211 0805_REFL 3130.008mil 2104.654mil 3130mil 2104.646mil 3092.008mil 2104.654mil T 360.00 470R 1% R206 0805_REFL 3130.008mil 1724.654mil 3130mil 1724.646mil 3092.008mil 1724.654mil T 360.00 680R 1% R205 0805_REFL 2659.992mil 1344.654mil 2660mil 1344.646mil 2659.992mil 1306.654mil T 90.00 10K 1% R204 0805_REFL 1849.992mil 2094.638mil 1850mil 2094.646mil 1887.992mil 2094.638mil T 180.00 10K 1% R203 0805_REFL 1529.992mil 1729.992mil 1530mil 1730mil 1567.992mil 1729.992mil T 180.00 10K 1% E603 D 2700.008mil 1864.638mil 2700mil 1864.646mil 2700.008mil 1985.138mil T 270.00 100UF/16V( L ESR ) E206 C 3459.992mil 2224.638mil 3460mil 2224.646mil 3554.992mil 2224.638mil T 180.00 10UF/25V(LESR) E205 B 2525.008mil 1695.008mil 2525mil 1695mil 2462.008mil 1695.008mil T 360.00 4.7UF/10V DZ215 1206-D_REFL 2750.008mil 1324.638mil 2750mil 1324.646mil 2750.008mil 1383.138mil T 270.00 ZMM2.4 DZ214 1206-D_REFL 2590.008mil 1044.638mil 2590mil 1044.646mil 2590.008mil 1103.138mil T 270.00 ZMM2.4 DZ213 1206-D_REFL 1819.992mil 1784.654mil 1820mil 1784.646mil 1819.992mil 1726.154mil T 90.00 ZMM2.4 DZ212 1206-D_REFL 1860.008mil 1574.638mil 1860mil 1574.646mil 1860.008mil 1633.138mil T 270.00 ZMM2.4 DZ211 1206-D_REFL 1670.008mil 1954.638mil 1670mil 1954.646mil 1670.008mil 2013.138mil T 270.00 ZMM2.4 DZ210 1206-D_REFL 1760.008mil 1574.638mil 1760mil 1574.646mil 1760.008mil 1633.138mil T 270.00 ZMM2.4 DZ206 1206-D_REFL 2529.992mil 1574.638mil 2530mil 1574.646mil 2588.492mil 1574.638mil T 180.00 ZMM3.3 DZ201 1206-D_REFL 3270.008mil 1614.654mil 3270mil 1614.646mil 3211.508mil 1614.654mil T 360.00 ZMM5.1 DS209 SOT-23 2710.496mil 1614.15mil 2710mil 1614.646mil 2750.496mil 1576.65mil T 90.00 BAS70-04 DS208 SOT-23 1869.504mil 2214.15mil 1870mil 2214.646mil 1832.004mil 2174.15mil T 0.00 BAS70-04 DS207 SOT-23 1699.504mil 2119.504mil 1700mil 2120mil 1662.004mil 2079.504mil T 0.00 BAS70-04 DS204 1206-D_REFL 2530.008mil 1474.654mil 2530mil 1474.646mil 2471.508mil 1474.654mil T 360.00 BAS85 DS203 1206-D_REFL 1980.008mil 2144.638mil 1980mil 2144.646mil 1980.008mil 2203.138mil T 270.00 BAS85 C619 0805_REFL 3250.008mil 2064.638mil 3250mil 2064.646mil 3250.008mil 2102.638mil T 270.00 100NF/50V C610 0805_REFL 2730.008mil 2094.654mil 2730mil 2094.646mil 2692.008mil 2094.654mil T 360.00 10NF/50V C211 0805_REFL 2710.008mil 1474.654mil 2710mil 1474.646mil 2672.008mil 1474.654mil T 360.00 10NF/50V C210 0805_REFL 1820.008mil 1964.638mil 1820mil 1964.646mil 1820.008mil 2002.638mil T 270.00 10NF/50V C209 0805_REFL 1530.008mil 1640.008mil 1530mil 1640mil 1492.008mil 1640.008mil T 360.00 10NF/50V C206 0805_REFL 2479.992mil 1344.654mil 2480mil 1344.646mil 2479.992mil 1306.654mil T 90.00 100NF/50V C205 0805_REFL 1950.008mil 1814.654mil 1950mil 1814.646mil 1912.008mil 1814.654mil T 360.00 100NF/50V C204 0805_REFL 3659.992mil 2214.654mil 3660mil 2214.646mil 3659.992mil 2176.654mil T 90.00 100NF/50V C203 0805_REFL 1690.008mil 1814.654mil 1690mil 1814.646mil 1652.008mil 1814.654mil T 360.00 100NF/50V F115 NFM21C 1179.992mil 3506.874mil 1180mil 3506.85mil 1179.992mil 3465.536mil T 90.00 * R252 0805_REFL 688.968mil 1712.59mil 688.976mil 1712.599mil 726.968mil 1712.59mil T 180.00 0R00 1% R254 0805_REFL 2480.308mil 1013.788mil 2480.315mil 1013.78mil 2480.308mil 975.788mil T 90.00 0R00 1% XP200 BIGPAD 1670mil 196.85mil 1670mil 196.85mil 1670mil 196.85mil T 0.00 BAT_UB+ C116 0805_REFL 970.008mil 1016.858mil 970mil 1016.85mil 932.008mil 1016.858mil T 360.00 100NF/50V C117 0805_REFL 940.008mil 586.858mil 940mil 586.85mil 902.008mil 586.858mil T 360.00 100NF/50V C118 0805_REFL 1380.008mil 196.842mil 1380mil 196.85mil 1380.008mil 234.842mil T 270.00 100NF/50V C215 0805_REFL 489.992mil 3620.009mil 490mil 3620mil 489.992mil 3582.009mil T 90.00 100NF/50V D100 1206-D_REFL 740.008mil 586.858mil 740mil 586.85mil 681.508mil 586.858mil T 360.00 LL4148 DZ105 1206-D_REFL 1250.008mil 216.842mil 1250mil 216.85mil 1250.008mil 275.342mil T 270.00 ZMM5.1 DZ202 1206-D 2279.504mil 1399.503mil 2280mil 1400mil 2212.004mil 1399.503mil T 360.00 ZMM4.7 F125 NFM21C 1239.992mil 3926.874mil 1240mil 3926.85mil 1239.992mil 3885.536mil T 90.00 * F126 NFM21C 1089.992mil 3506.874mil 1090mil 3506.85mil 1089.992mil 3465.536mil T 90.00 * L200 L-WEZB 470mil 3872.52mil 470mil 3976.85mil 470mil 3976.85mil T 270.00 100UH/0.5AWE MP100 LPT50X50 1135.008mil 2105.007mil 1135mil 2105mil 1135.008mil 2105.007mil T 0.00 MP50 R117 0805_REFL 1470.008mil 196.842mil 1470mil 196.85mil 1470.008mil 234.842mil T 270.00 680R 1% R118 0805_REFL 580.008mil 626.842mil 580mil 626.85mil 580.008mil 664.842mil T 270.00 2K2 1% R119 0805_REFL 490.008mil 626.842mil 490mil 626.85mil 490.008mil 664.842mil T 270.00 3K3 1% RL100 REL-DIL51 770mil 316.85mil 1070mil 466.85mil 1070mil 466.85mil T 180.00 REL-DIL05-1C90-51D T100 SOT-23A 359.734mil 626.866mil 360mil 626.85mil 319.734mil 627.366mil T 90.00 BC846 U203 OPTO1 1160.008mil 976.842mil 1160mil 976.85mil 1210.008mil 1114.342mil T 270.00 PC357NT X202 KK6410-10A 3990mil 3096.85mil 3990mil 3546.85mil 3990mil 3546.85mil T 270.00 KK6410-10A X203 KK6410-10A 3990mil 1206.85mil 3990mil 1656.85mil 3990mil 1656.85mil T 270.00 KK6410-10A XIA102 KK6410-03A 720mil 2356.85mil 720mil 2456.85mil 720mil 2456.85mil T 270.00 KK-3POL XIA108 KK6410-03A 290mil 3350.001mil 290mil 3450mil 290mil 3450.001mil T 270.00 KK-3POL X108 IDC6 1180mil 2286.85mil 1130mil 2386.85mil 1130mil 2386.85mil T 270.00 JUM3X2 R228 0805_REFL 1519.992mil 2786.857mil 1520mil 2786.85mil 1519.992mil 2748.857mil T 90.00 100R C200 0805_REFL 1759.992mil 2476.843mil 1760mil 2476.85mil 1759.992mil 2514.843mil B 270.00 100NF/50V E201 B 1929.992mil 2486.843mil 1930mil 2486.85mil 1929.992mil 2549.843mil B 270.00 4.7UF/10V X103 DB25/FSS 1673.229mil 3740.158mil 1673.228mil 3740.157mil 1019.26mil 3795.158mil B 360.00 DB25/FSS gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.apr0000644000175000017500000001716213421555714020607 0ustar carstencarstenD10 ROUNDED 13,000 13,000 0,000 LINE D11 RECTANGULAR 24,000 80,000 0,000 FLASH D12 ROUNDED 24,000 80,000 0,000 FLASH D13 RECTANGULAR 39,370 70,866 0,000 FLASH D14 RECTANGULAR 57,087 35,433 0,000 FLASH D15 RECTANGULAR 35,433 57,087 0,000 FLASH D16 RECTANGULAR 36,000 36,000 0,000 FLASH D17 RECTANGULAR 60,000 52,000 0,000 FLASH D18 ROUNDED 29,528 19,685 0,000 FLASH D19 ROUNDED 29,528 59,055 0,000 FLASH D20 ROUNDED 27,559 59,055 0,000 FLASH D21 RECTANGULAR 70,866 125,984 0,000 FLASH D22 RECTANGULAR 36,000 50,000 0,000 FLASH D23 RECTANGULAR 50,000 36,000 0,000 FLASH D24 RECTANGULAR 95,000 91,000 0,000 FLASH D25 RECTANGULAR 70,866 39,370 0,000 FLASH D26 RECTANGULAR 78,740 78,740 0,000 FLASH D27 RECTANGULAR 51,181 78,740 0,000 FLASH D28 RECTANGULAR 52,000 60,000 0,000 FLASH D29 ROUNDED 59,055 27,559 0,000 FLASH D30 ROUNDED 59,055 29,528 0,000 FLASH D31 ROUNDED 19,685 29,528 0,000 FLASH D32 RECTANGULAR 63,000 71,000 0,000 FLASH D33 ROUNDED 13,000 55,000 0,000 FLASH D34 RECTANGULAR 13,000 55,000 0,000 FLASH D35 ROUNDED 80,000 24,000 0,000 FLASH D36 RECTANGULAR 37,402 37,402 0,000 FLASH D37 RECTANGULAR 33,465 37,402 0,000 FLASH D38 RECTANGULAR 114,000 95,000 0,000 FLASH D39 ROUNDED 66,929 47,244 0,000 FLASH D40 ROUNDED 31,496 43,307 0,000 FLASH D41 ROUNDED 47,244 66,929 0,000 FLASH D42 ROUNDED 43,307 31,496 0,000 FLASH D43 RECTANGULAR 60,000 100,000 0,000 FLASH D44 ROUNDED 50,000 50,000 0,000 FLASH D45 RECTANGULAR 60,000 60,000 0,000 FLASH D46 RECTANGULAR 50,000 60,000 0,000 FLASH D47 RECTANGULAR 78,740 51,181 0,000 FLASH D48 ROUNDED 16,000 16,000 0,000 LINE D49 ROUNDED 24,000 24,000 0,000 LINE D50 ROUNDED 10,000 10,000 0,000 LINE D51 ROUNDED 32,000 32,000 0,000 LINE D52 ROUNDED 20,000 20,000 0,000 LINE D53 ROUNDED 8,000 8,000 0,000 LINE D54 ROUNDED 80,000 80,000 0,000 LINE D55 ROUNDED 50,000 50,000 0,000 LINE D56 ROUNDED 100,000 100,000 0,000 LINE D57 ROUNDED 40,000 40,000 0,000 LINE D58 ROUNDED 5,000 5,000 0,000 LINE D59 ROUNDED 118,110 118,110 0,000 FLASH D60 ROUNDED 150,000 150,000 0,000 FLASH D61 ROUNDED 60,000 60,000 0,000 FLASH D62 RECTANGULAR 62,000 62,000 0,000 FLASH D63 ROUNDED 62,000 62,000 0,000 FLASH D64 RECTANGULAR 64,000 64,000 0,000 FLASH D65 ROUNDED 64,000 64,000 0,000 FLASH D66 RECTANGULAR 50,000 40,000 0,000 FLASH D67 RECTANGULAR 100,000 100,000 0,000 FLASH D68 ROUNDED 100,000 100,000 0,000 FLASH D69 ROUNDED 47,244 47,244 0,000 FLASH D70 ROUNDED 60,000 78,740 0,000 FLASH D71 RECTANGULAR 70,000 70,000 0,000 FLASH D72 ROUNDED 70,000 70,000 0,000 FLASH D73 ROUNDED 180,000 180,000 0,000 FLASH D74 ROUNDED 22,000 22,000 0,000 FLASH D75 ROUNDED 16,000 16,000 0,000 FLASH D76 ROUNDED 28,000 28,000 0,000 FLASH D77 ROUNDED 32,000 32,000 0,000 FLASH D78 RECTANGULAR 71,000 63,000 0,000 FLASH D79 ROUNDED 7,874 7,874 0,000 LINE D80 ROUNDED 9,842 9,842 0,000 LINE D81 ROUNDED 12,000 12,000 0,000 LINE D82 ROUNDED 4,000 4,000 0,000 LINE D83 RECTANGULAR 28,000 84,000 0,000 FLASH D84 ROUNDED 28,000 84,000 0,000 FLASH D85 RECTANGULAR 43,370 74,866 0,000 FLASH D86 RECTANGULAR 61,087 39,433 0,000 FLASH D87 RECTANGULAR 39,433 61,087 0,000 FLASH D88 RECTANGULAR 40,000 40,000 0,000 FLASH D89 RECTANGULAR 64,000 56,000 0,000 FLASH D90 ROUNDED 33,528 23,685 0,000 FLASH D91 ROUNDED 33,528 63,055 0,000 FLASH D92 ROUNDED 31,559 63,055 0,000 FLASH D93 RECTANGULAR 74,866 129,984 0,000 FLASH D94 RECTANGULAR 40,000 54,000 0,000 FLASH D95 RECTANGULAR 54,000 40,000 0,000 FLASH D96 RECTANGULAR 99,000 95,000 0,000 FLASH D97 RECTANGULAR 74,866 43,370 0,000 FLASH D98 RECTANGULAR 82,740 82,740 0,000 FLASH D99 RECTANGULAR 55,181 82,740 0,000 FLASH D100 RECTANGULAR 56,000 64,000 0,000 FLASH D101 ROUNDED 63,055 31,559 0,000 FLASH D102 ROUNDED 63,055 33,528 0,000 FLASH D103 ROUNDED 23,685 33,528 0,000 FLASH D104 RECTANGULAR 67,000 75,000 0,000 FLASH D105 ROUNDED 17,000 59,000 0,000 FLASH D106 RECTANGULAR 17,000 59,000 0,000 FLASH D107 ROUNDED 84,000 28,000 0,000 FLASH D108 RECTANGULAR 41,402 41,402 0,000 FLASH D109 RECTANGULAR 37,465 41,402 0,000 FLASH D110 RECTANGULAR 118,000 99,000 0,000 FLASH D111 ROUNDED 70,929 51,244 0,000 FLASH D112 ROUNDED 35,496 47,307 0,000 FLASH D113 ROUNDED 51,244 70,929 0,000 FLASH D114 ROUNDED 47,307 35,496 0,000 FLASH D115 RECTANGULAR 64,000 104,000 0,000 FLASH D116 ROUNDED 54,000 54,000 0,000 FLASH D117 RECTANGULAR 54,000 64,000 0,000 FLASH D118 RECTANGULAR 82,740 55,181 0,000 FLASH D119 ROUNDED 122,110 122,110 0,000 FLASH D120 ROUNDED 154,000 154,000 0,000 FLASH D121 RECTANGULAR 66,000 66,000 0,000 FLASH D122 ROUNDED 66,000 66,000 0,000 FLASH D123 RECTANGULAR 68,000 68,000 0,000 FLASH D124 ROUNDED 68,000 68,000 0,000 FLASH D125 RECTANGULAR 54,000 44,000 0,000 FLASH D126 RECTANGULAR 104,000 104,000 0,000 FLASH D127 ROUNDED 104,000 104,000 0,000 FLASH D128 ROUNDED 51,244 51,244 0,000 FLASH D129 ROUNDED 64,000 82,740 0,000 FLASH D130 RECTANGULAR 74,000 74,000 0,000 FLASH D131 ROUNDED 74,000 74,000 0,000 FLASH D132 ROUNDED 184,000 184,000 0,000 FLASH D133 RECTANGULAR 75,000 67,000 0,000 FLASH D134 ROUNDED 3,937 3,937 0,000 LINE D135 ROUNDED 6,667 6,667 0,000 LINE gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.RUL0000644000175000017500000000115513421555714020462 0ustar carstencarstenDRC Rules Export File for PCB: C:\test\Gerbertest\SE_SG_IF_V2.PCBDOC RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion_VIA|Scope=Board|Minimum=-60,00 RuleKind=Clearance|RuleName=Clearance_GND|Scope=Board|Minimum=16,00 RuleKind=Width|RuleName=Width_pwr|Scope=Board|Minimum=13,00 RuleKind=Width|RuleName=Width|Scope=Board|Minimum=8,00 RuleKind=Clearance|RuleName=Clearance|Scope=Board|Minimum=8,00 RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion|Scope=Board|Minimum=2,00 RuleKind=Clearance|RuleName=Clearance_U200|Scope=Board|Minimum=4,00 RuleKind=ShortCircuit|RuleName=ShortCircuit|Scope=Board|Allowed=0 gerbv-2.7.0/example/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv0000644000175000017500000010250413421555714023533 0ustar carstencarsten"Designator","Footprint","Mid X","Mid Y","Ref X","Ref Y","Pad X","Pad Y","Layer","Rotation","Comment" "" "HEAD","KEY-98KSC","-1968.504mil","-4133.858mil","890mil","5190mil","-1968.504mil","-4133.858mil","T","0.00","" "ZB4","BOHR-3.0","885.826mil","3248.032mil","885.827mil","3248.031mil","885.826mil","3248.032mil","T","0.00","" "ZB3","BOHR-3.0","3346.456mil","3937.008mil","3346.457mil","3937.007mil","3346.456mil","3937.008mil","T","0.00","" "ZB2","BOHR-3.0","2834.646mil","393.7mil","2834.646mil","393.7mil","2834.646mil","393.7mil","T","0.00","" "ZB1","BOHR-3.0","196.85mil","393.7mil","196.85mil","393.7mil","196.85mil","393.7mil","T","0.00","" "U202","SO-16","1240.496mil","1909.504mil","1240mil","1910mil","1065.496mil","1799.504mil","T","90.00","M74HC4053" "R260","0805_REFL","2874.992mil","2105.008mil","2875mil","2105mil","2874.992mil","2067.008mil","T","90.00","1K 1%" "R259","0805_REFL","3079.992mil","1584.638mil","3080mil","1584.646mil","3117.992mil","1584.638mil","T","180.00","1K 1%" "R258","0805_REFL","3000.008mil","2079.992mil","3000mil","2080mil","3000.008mil","2117.992mil","T","270.00","1K 1%" "R257","0805_REFL","2839.992mil","1754.654mil","2840mil","1754.646mil","2839.992mil","1716.654mil","T","90.00","1K 1%" "R256","0805_REFL","1669.992mil","2254.654mil","1670mil","2254.646mil","1669.992mil","2216.654mil","T","90.00","100R 1%" "R255","0805_REFL","1759.992mil","2254.654mil","1760mil","2254.646mil","1759.992mil","2216.654mil","T","90.00","100R 1%" "C214","0805_REFL","970.008mil","1904.638mil","970mil","1904.646mil","970.008mil","1942.638mil","T","270.00","100NF/50V" "U200","SOL-28","1930.504mil","2629.512mil","1931mil","2629.016mil","2255.504mil","2819.512mil","T","270.00","Comment" "C100","1206_REFL","2913.394mil","3208.654mil","2913.386mil","3208.661mil","2913.394mil","3267.154mil","T","270.00","10NF/500V" "C101","1206_REFL","3277.566mil","2696.842mil","3277.559mil","2696.85mil","3277.566mil","2755.342mil","T","270.00","10NF/500V" "C102","1206_REFL","3277.566mil","2903.536mil","3277.559mil","2903.543mil","3277.566mil","2962.036mil","T","270.00","10NF/500V" "C103","1206_REFL","3020.008mil","1484.654mil","3020mil","1484.646mil","2961.508mil","1484.654mil","T","360.00","10NF/500V" "C104","1206_REFL","3327.708mil","816.78mil","3327.716mil","816.772mil","3327.708mil","758.28mil","T","90.00","10NF/500V" "C105","1206_REFL","3327.724mil","1023.456mil","3327.716mil","1023.465mil","3327.724mil","1081.956mil","T","270.00","10NF/500V" "C106","1206_REFL","3297.236mil","3159.442mil","3297.244mil","3159.449mil","3355.736mil","3159.442mil","T","180.00","1NF/500V" "C107","1206_REFL","3297.236mil","3061.016mil","3297.244mil","3061.024mil","3355.736mil","3061.016mil","T","180.00","1NF/500V" "C108","1206_REFL","3435.032mil","2352.354mil","3435.039mil","2352.362mil","3493.532mil","2352.354mil","T","180.00","1NF/500V" "C109","1206_REFL","3288.338mil","1279.362mil","3288.346mil","1279.37mil","3346.838mil","1279.362mil","T","180.00","1NF/500V" "C110","1206_REFL","3429.992mil","1176.842mil","3430mil","1176.85mil","3488.492mil","1176.842mil","T","180.00","1NF/500V" "C111","1206_REFL","3395.662mil","472.434mil","3395.669mil","472.441mil","3454.162mil","472.434mil","T","180.00","1NF/500V" "C112","0805_REFL","935.048mil","1564.968mil","935.039mil","1564.961mil","897.048mil","1564.968mil","T","360.00","100NF/50V" "C113","0805_REFL","1063mil","1624.008mil","1062.992mil","1624.016mil","1063mil","1662.008mil","T","270.00","100NF/50V" "C114","0805_REFL","849.992mil","4016.842mil","850mil","4016.85mil","887.992mil","4016.842mil","T","180.00","100NF/50V" "C115","0805_REFL","1210.008mil","699.991mil","1210mil","700mil","1210.008mil","737.991mil","T","270.00","100NF/50V" "C201","0805_REFL","2260.008mil","1524.638mil","2260mil","1524.646mil","2260.008mil","1562.638mil","T","270.00","100NF/50V" "C202","0805_REFL","2210.008mil","1994.654mil","2210mil","1994.646mil","2172.008mil","1994.654mil","T","360.00","100NF/50V" "C207","0805_REFL","2210.008mil","1814.654mil","2210mil","1814.646mil","2172.008mil","1814.654mil","T","360.00","10NF/50V" "C208","0805_REFL","2360.008mil","2184.654mil","2360mil","2184.646mil","2322.008mil","2184.654mil","T","360.00","10NF/50V" "C212","0805_REFL","2090.008mil","3086.842mil","2090mil","3086.85mil","2090.008mil","3124.842mil","T","270.00","15PF/50V" "C213","0805_REFL","1661.992mil","3217.842mil","1662mil","3217.85mil","1699.992mil","3217.842mil","T","180.00","15PF/50V" "DS100","1206-D_REFL","3179.142mil","2696.842mil","3179.134mil","2696.85mil","3179.142mil","2755.342mil","T","270.00","BAS85" "DS101","1206-D_REFL","3239.142mil","816.764mil","3239.134mil","816.772mil","3239.142mil","875.264mil","T","270.00","BAS85" "DS102","1206-D_REFL","738.182mil","1476.37mil","738.189mil","1476.378mil","796.682mil","1476.37mil","T","180.00","BAS85" "DS103","1206-D_REFL","708.654mil","1604.324mil","708.661mil","1604.331mil","767.154mil","1604.324mil","T","180.00","BAS85" "DS105","SOT-23","1190.448mil","1623.52mil","1190.945mil","1624.016mil","1152.948mil","1583.52mil","T","360.00","BAS70-04" "DS106","SOT-23","1112.7mil","1456.198mil","1112.205mil","1456.693mil","1152.7mil","1418.698mil","T","90.00","BAS70-04" "DS107","SOT-23","1490.496mil","1467.346mil","1490mil","1466.85mil","1527.996mil","1507.346mil","T","180.00","BAS70-04" "DS200","1206-D_REFL","2360.008mil","1714.638mil","2360mil","1714.646mil","2360.008mil","1773.138mil","T","270.00","BAS85" "DS201","1206-D_REFL","2080.008mil","2114.638mil","2080mil","2114.646mil","2080.008mil","2173.138mil","T","270.00","BAS85" "DS202","1206-D_REFL","1560.008mil","2044.638mil","1560mil","2044.646mil","1560.008mil","2103.138mil","T","270.00","BAS85" "DS205","SOT-23","2220.496mil","3057.346mil","2220mil","3056.85mil","2257.996mil","3097.346mil","T","180.00","BAS70-04" "DS206","SOT-23","2550.496mil","2254.15mil","2550mil","2254.646mil","2590.496mil","2216.65mil","T","90.00","BAS70-04" "DT100","SMA","3582.67mil","3346.45mil","3582.677mil","3346.457mil","3662.67mil","3346.45mil","T","180.00","SMAJ15CA" "DT101","SMA","3582.67mil","3543.3mil","3582.677mil","3543.307mil","3662.67mil","3543.3mil","T","180.00","SMAJ15CA" "DT102","SMA","3582.67mil","3740.15mil","3582.677mil","3740.157mil","3662.67mil","3740.15mil","T","180.00","SMAJ15CA" "DT103","SMA","910.008mil","3736.842mil","910mil","3736.85mil","910.008mil","3816.842mil","T","270.00","SMAJ15CA" "DT104","SMA","1349.992mil","3964.654mil","1350mil","3964.646mil","1349.992mil","3884.654mil","T","90.00","SMAJ15CA" "DT105","SMA","1761.818mil","3523.614mil","1761.811mil","3523.622mil","1761.818mil","3603.614mil","T","270.00","SMAJ15CA" "DT106","SMA","3582.67mil","1456.686mil","3582.677mil","1456.693mil","3662.67mil","1456.686mil","T","180.00","SMAJ15CA" "DT107","SMA","3582.67mil","1653.536mil","3582.677mil","1653.543mil","3662.67mil","1653.536mil","T","180.00","SMAJ15CA" "DT108","SMA","3589.992mil","1774.638mil","3590mil","1774.646mil","3669.992mil","1774.638mil","T","180.00","SMAJ15CA" "DT109","SMA","1574.796mil","3562.984mil","1574.803mil","3562.992mil","1654.796mil","3562.984mil","T","180.00","*SMAJ5.0CA" "DT110","SMA","2145.662mil","3513.788mil","2145.669mil","3513.78mil","2145.662mil","3433.788mil","T","90.00","*SMAJ5.0CA" "DT111","SMA","2000.008mil","3974.638mil","2000mil","3974.646mil","2000.008mil","4054.638mil","T","270.00","*SMAJ5.0CA" "DZ100","1206-D_REFL","3080.7mil","3061.016mil","3080.709mil","3061.024mil","3139.2mil","3061.016mil","T","180.00","ZMM3.3" "DZ101","1206-D_REFL","3229.992mil","1176.842mil","3230mil","1176.85mil","3288.492mil","1176.842mil","T","180.00","ZMM3.3" "DZ102","1206-D_REFL","3080.716mil","3257.882mil","3080.709mil","3257.874mil","3022.216mil","3257.882mil","T","360.00","ZMM18" "DZ103","1206-D_REFL","3020.008mil","1384.654mil","3020mil","1384.646mil","2961.508mil","1384.654mil","T","360.00","ZMM18" "DZ104","1206-D_REFL","950.008mil","1116.858mil","950mil","1116.85mil","891.508mil","1116.858mil","T","360.00","ZMM7.5" "DZ200","1206-D_REFL","3260.008mil","1769.992mil","3260mil","1770mil","3260.008mil","1828.492mil","T","270.00","ZMM3.3" "DZ203","1206-D_REFL","2349.992mil","2284.638mil","2350mil","2284.646mil","2408.492mil","2284.638mil","T","180.00","ZMM4.7" "DZ204","1206-D_REFL","1510.008mil","2204.654mil","1510mil","2204.646mil","1451.508mil","2204.654mil","T","360.00","ZMM4.7" "DZ207","1206-D_REFL","2069.992mil","1574.654mil","2070mil","1574.646mil","2069.992mil","1516.154mil","T","90.00","ZMM4.7" "DZ208","1206-D_REFL","1960.008mil","1574.638mil","1960mil","1574.646mil","1960.008mil","1633.138mil","T","270.00","ZMM2.4" "DZ209","1206-D_REFL","2339.992mil","2094.638mil","2340mil","2094.646mil","2398.492mil","2094.638mil","T","180.00","ZMM4.7" "E100","C","3170.008mil","2346.858mil","3170mil","2346.85mil","3075.008mil","2346.858mil","T","360.00","10UF/25V(C)" "E101","C","3349.992mil","2496.842mil","3350mil","2496.85mil","3444.992mil","2496.842mil","T","180.00","10UF/25V(C)" "E102","C","3129.93mil","462.606mil","3129.921mil","462.599mil","3034.93mil","462.606mil","T","360.00","10UF/25V(C)" "E103","C","3369.992mil","606.842mil","3370mil","606.85mil","3464.992mil","606.842mil","T","180.00","10UF/25V(C)" "E200","B","2540.008mil","2124.654mil","2540mil","2124.646mil","2477.008mil","2124.654mil","T","360.00","4.7UF/10V" "E202","B","2129.992mil","2274.638mil","2130mil","2274.646mil","2192.992mil","2274.638mil","T","180.00","4.7UF/10V" "E203","B","1489.992mil","2314.638mil","1490mil","2314.646mil","1552.992mil","2314.638mil","T","180.00","4.7UF/10V" "F100","NFE31P","860mil","3906.851mil","860mil","3906.85mil","919.056mil","3906.85mil","T","180.00","NFE31PT222Z1E9_6A" "F101","NFE31P","910mil","3516.851mil","910mil","3516.85mil","910mil","3457.796mil","T","90.00","NFE31PT222Z1E9_6A" "F102","NFM21C","3499.977mil","3446.842mil","3500mil","3446.85mil","3541.316mil","3446.842mil","T","180.00","NFM21CC223R1H3_1A1" "F103","NFM21C","3579.977mil","3246.842mil","3580mil","3246.85mil","3621.316mil","3246.842mil","T","180.00","NFM21CC223R1H3_1A1" "F104","NFM21C","659.472mil","1348.434mil","659.449mil","1348.425mil","618.134mil","1348.434mil","T","360.00","NFM21CC223R1H3_1A1" "F105","NFM21C","3579.977mil","3056.842mil","3580mil","3056.85mil","3621.316mil","3056.842mil","T","180.00","NFM21CC223R1H3_1A1" "F106","NFM21C","3579.977mil","2856.842mil","3580mil","2856.85mil","3621.316mil","2856.842mil","T","180.00","NFM21CC223R1H3_1A1" "F107","NFM21C","3579.977mil","2656.842mil","3580mil","2656.85mil","3621.316mil","2656.842mil","T","180.00","NFM21CC223R1H3_1A1" "F108","NFM21C","3579.977mil","2456.842mil","3580mil","2456.85mil","3621.316mil","2456.842mil","T","180.00","NFM21CC223R1H3_1A1" "F109","NFM21C","3499.977mil","1556.842mil","3500mil","1556.85mil","3541.316mil","1556.842mil","T","180.00","NFM21CC223R1H3_1A1" "F110","NFM21C","3584.017mil","1346.842mil","3584.04mil","1346.85mil","3625.356mil","1346.842mil","T","180.00","NFM21CC223R1H3_1A1" "F111","NFM21C","3584.017mil","1166.842mil","3584.04mil","1166.85mil","3625.356mil","1166.842mil","T","180.00","NFM21CC223R1H3_1A1" "F112","NFM21C","3584.977mil","961.842mil","3585mil","961.85mil","3626.316mil","961.842mil","T","180.00","NFM21CC223R1H3_1A1" "F113","NFM21C","3584.977mil","766.842mil","3585mil","766.85mil","3626.316mil","766.842mil","T","180.00","NFM21CC223R1H3_1A1" "F114","NFM21C","3584.977mil","561.842mil","3585mil","561.85mil","3626.316mil","561.842mil","T","180.00","NFM21CC223R1H3_1A1" "F116","NFM21C","1269.677mil","3503.961mil","1269.685mil","3503.937mil","1269.678mil","3462.622mil","T","90.00","*" "F117","NFM21C","1466.544mil","3425.174mil","1466.535mil","3425.197mil","1466.544mil","3466.512mil","T","270.00","*" "F118","NFM21C","1663.378mil","3425.221mil","1663.386mil","3425.197mil","1663.378mil","3383.882mil","T","90.00","*" "F119","0805","1569.505mil","3420.495mil","1570mil","3420mil","1569.505mil","3465.495mil","T","270.00","BK2125HS601-T 600R@100MHZ" "F120","NFM21C","1958.67mil","3503.914mil","1958.661mil","3503.937mil","1958.67mil","3545.252mil","T","270.00","*" "F121","0805","2039.504mil","3507.346mil","2040mil","3506.85mil","2039.504mil","3552.346mil","T","270.00","BK2125HS601-T 600R@100MHZ" "F122","0805","1909.944mil","3936.512mil","1909.449mil","3937.008mil","1909.944mil","3891.512mil","T","90.00","BK2125HS601-T 600R@100MHZ" "F123","NFM21C","2253.945mil","3503.914mil","2253.937mil","3503.937mil","2253.944mil","3545.252mil","T","270.00","*" "LED200","LED_3M","1260.008mil","1465.26mil","1259.842mil","1515.748mil","1260.008mil","1415.26mil","T","270.00","LED GRN 3MM" "P100","BOURNS3314J","3030mil","2536.85mil","3030mil","2536.85mil","2952.5mil","2491.85mil","T","270.00","5K 20% 0.25W" "P101","BOURNS3314J","3070mil","696.85mil","3070mil","696.85mil","3115mil","619.35mil","T","360.00","5K 20% 0.25W" "P102","BOURNS3314J","830mil","1296.85mil","830mil","1296.85mil","875mil","1219.35mil","T","360.00","10K 20% 0.25W" "Q200","XTAL-SS3","2028.98mil","3307.582mil","2125.984mil","3307.087mil","2126.48mil","3307.582mil","T","180.00","SMT4.0MHz" "R100","1206_REFL","3061.016mil","3159.442mil","3061.024mil","3159.449mil","3119.516mil","3159.442mil","T","180.00","390R 1%" "R101","1206_REFL","3020.007mil","1286.859mil","3020mil","1286.85mil","2961.507mil","1286.859mil","T","360.00","390R 1%" "R102","1206_REFL","3179.126mil","2903.552mil","3179.134mil","2903.543mil","3179.126mil","2845.052mil","T","90.00","220R 1%" "R103","1206_REFL","3229.991mil","1026.858mil","3230mil","1026.85mil","3229.991mil","968.358mil","T","90.00","220R 1%" "R104","1206_REFL","3300.008mil","3256.859mil","3300mil","3256.85mil","3241.508mil","3256.859mil","T","360.00","0R0" "R105","1206_REFL","3229.992mil","1384.638mil","3230mil","1384.646mil","3288.492mil","1384.638mil","T","180.00","0R0" "R106","1206_REFL","3375.992mil","2903.536mil","3375.984mil","2903.543mil","3375.992mil","2962.036mil","T","270.00","6R8 5%" "R107","1206_REFL","3375.992mil","2696.842mil","3375.984mil","2696.85mil","3375.992mil","2755.342mil","T","270.00","6R8 5%" "R108","1206_REFL","3426.15mil","1023.456mil","3426.142mil","1023.465mil","3426.15mil","1081.956mil","T","270.00","6R8 5%" "R109","1206_REFL","3426.15mil","816.764mil","3426.142mil","816.772mil","3426.15mil","875.264mil","T","270.00","6R8 5%" "R110","0805_REFL","935.048mil","1476.386mil","935.039mil","1476.378mil","897.048mil","1476.386mil","T","360.00","10K 1%" "R111","0805_REFL","935.048mil","1663.394mil","935.039mil","1663.386mil","897.048mil","1663.394mil","T","360.00","10K 1%" "R112","0805_REFL","1119.992mil","696.858mil","1120mil","696.85mil","1119.992mil","658.858mil","T","90.00","10K 1%" "R113","0805_REFL","1339.992mil","1624.638mil","1340mil","1624.646mil","1377.992mil","1624.638mil","T","180.00","680R 1%" "R114","1206_REFL","1060.008mil","1226.858mil","1060mil","1226.85mil","1001.508mil","1226.858mil","T","360.00","680R 1%" "R115","0805_REFL","1040.008mil","1325.007mil","1040mil","1325mil","1002.008mil","1325.007mil","T","360.00","2K2 1%" "R116","2512","829.992mil","746.844mil","830mil","746.85mil","940.228mil","746.844mil","T","180.00","0R0 5%" "R200","0805_REFL","2259.992mil","1684.654mil","2260mil","1684.646mil","2259.992mil","1646.654mil","T","90.00","10K 1%" "R201","0805_REFL","2169.992mil","1684.654mil","2170mil","1684.646mil","2169.992mil","1646.654mil","T","90.00","10K 1%" "R202","0805_REFL","2169.992mil","2134.654mil","2170mil","2134.646mil","2169.992mil","2096.654mil","T","90.00","10K 1%" "R207","0805_REFL","2530.008mil","2014.654mil","2530mil","2014.646mil","2492.008mil","2014.654mil","T","360.00","470R 1%" "R208","0805_REFL","2360.008mil","2424.024mil","2360mil","2424.016mil","2322.008mil","2424.024mil","T","360.00","470R 1%" "R209","0805_REFL","1519.992mil","2630.007mil","1520mil","2630mil","1519.992mil","2592.007mil","T","90.00","470R 1%" "R213","0805_REFL","2169.992mil","1524.654mil","2170mil","1524.646mil","2169.992mil","1486.654mil","T","90.00","100R 1%" "R214","0805_REFL","1919.992mil","3084.024mil","1920mil","3084.016mil","1919.992mil","3046.024mil","T","90.00","100R 1%" "R215","0805_REFL","2389.992mil","2834.008mil","2390mil","2834.016mil","2427.992mil","2834.008mil","T","180.00","100R 1%" "R216","0805_REFL","1394.992mil","2934.008mil","1395mil","2934.016mil","1432.992mil","2934.008mil","T","180.00","100R 1%" "R217","0805_REFL","1394.992mil","2844.008mil","1395mil","2844.016mil","1432.992mil","2844.008mil","T","180.00","100R 1%" "R218","0805_REFL","2429.992mil","2694.024mil","2430mil","2694.016mil","2429.992mil","2656.024mil","T","90.00","100R 1%" "R223","0805_REFL","2349.992mil","1524.654mil","2350mil","1524.646mil","2349.992mil","1486.654mil","T","90.00","100K 1%" "R224","0805_REFL","2389.992mil","2924.008mil","2390mil","2924.016mil","2427.992mil","2924.008mil","T","180.00","22K 1%" "R225","0805_REFL","1660.008mil","3126.858mil","1660mil","3126.85mil","1622.008mil","3126.858mil","T","360.00","100R" "R226","0805_REFL","1660.008mil","3034.024mil","1660mil","3034.016mil","1622.008mil","3034.024mil","T","360.00","100R" "R227","0805_REFL","1620.008mil","2936.858mil","1620mil","2936.85mil","1582.008mil","2936.858mil","T","360.00","100R" "R229","0805_REFL","2079.992mil","1934.654mil","2080mil","1934.646mil","2079.992mil","1896.654mil","T","90.00","1K2 1%" "R236","0805_REFL","2079.992mil","1764.654mil","2080mil","1764.646mil","2079.992mil","1726.654mil","T","90.00","2K4 5%" "R237","0805_REFL","2210.008mil","1904.654mil","2210mil","1904.646mil","2172.008mil","1904.654mil","T","360.00","2K4 5%" "R241","0805_REFL","1394.992mil","2754.008mil","1395mil","2754.016mil","1432.992mil","2754.008mil","T","180.00","*3K3 1%" "R242","0805_REFL","1394.992mil","2479.008mil","1395mil","2479.016mil","1432.992mil","2479.008mil","T","180.00","*3K3 1%" "RV100","0805_REFL","1460.008mil","3964.638mil","1460mil","3964.646mil","1460.008mil","4002.638mil","T","270.00","VC080514A300" "RV101","0805_REFL","1369.992mil","3526.858mil","1370mil","3526.85mil","1369.992mil","3488.858mil","T","90.00","VC080514A300" "RV102","0805_REFL","2109.992mil","3964.654mil","2110mil","3964.646mil","2109.992mil","3926.654mil","T","90.00","VC080514A300" "RV103","0805_REFL","1870.086mil","3523.614mil","1870.079mil","3523.622mil","1870.086mil","3561.614mil","T","270.00","VC080514A300" "RV104","0805_REFL","3622.04mil","3149.598mil","3622.047mil","3149.606mil","3660.04mil","3149.598mil","T","180.00","VC080514A300" "RV105","0805_REFL","3622.04mil","2952.748mil","3622.047mil","2952.756mil","3660.04mil","2952.748mil","T","180.00","VC080514A300" "RV106","0805_REFL","3622.04mil","2755.898mil","3622.047mil","2755.905mil","3660.04mil","2755.898mil","T","180.00","VC080514A300" "RV107","0805_REFL","3622.04mil","2559.048mil","3622.047mil","2559.055mil","3660.04mil","2559.048mil","T","180.00","VC080514A300" "RV108","0805_REFL","3622.04mil","2352.354mil","3622.047mil","2352.362mil","3660.04mil","2352.354mil","T","180.00","VC080514A300" "RV109","0805_REFL","3622.04mil","1259.834mil","3622.047mil","1259.843mil","3660.04mil","1259.834mil","T","180.00","VC080514A300" "RV110","0805_REFL","3622.04mil","1062.984mil","3622.047mil","1062.992mil","3660.04mil","1062.984mil","T","180.00","VC080514A300" "RV111","0805_REFL","3622.04mil","866.134mil","3622.047mil","866.142mil","3660.04mil","866.134mil","T","180.00","VC080514A300" "RV112","0805_REFL","3622.04mil","669.284mil","3622.047mil","669.291mil","3660.04mil","669.284mil","T","180.00","VC080514A300" "RV113","0805_REFL","3622.04mil","472.434mil","3622.047mil","472.441mil","3660.04mil","472.434mil","T","180.00","VC080514A300" "U100","OPTO1","3010.008mil","2856.842mil","3010mil","2856.85mil","3060.008mil","2994.342mil","T","270.00","PC357NT" "U101","OPTO1","3050.008mil","1036.842mil","3050mil","1036.85mil","3100.008mil","1174.342mil","T","270.00","PC357NT" "U200","SSOP-28","1977.566mil","2824.796mil","1977.559mil","2824.803mil","2143.966mil","2954.796mil","T","270.00","PIC16F872" "X100","MC1,5/3-G-3,81","314.96mil","3826.378mil","314.961mil","3976.378mil","314.96mil","3976.378mil","T","270.00","MC1.5/3-G1-3.81" "X101","KK6410-10A","1970mil","846.85mil","1970mil","396.85mil","1970mil","396.85mil","T","90.00","KK6410-10A" "X104","DB25RA/F","442.126mil","1815.418mil","492.126mil","1161.417mil","492.126mil","1161.418mil","T","90.00","DB25F-XXX" "X105","KK6410-05A","2814.96mil","2837.796mil","2814.961mil","2637.795mil","2814.96mil","2637.796mil","T","90.00","KK6410-05A" "X106","KK6410-05A","2560mil","596.85mil","2560mil","796.85mil","2560mil","796.85mil","T","270.00","KK6410-05A" "X107","KK6410-05A","2860mil","916.85mil","2860mil","716.85mil","2860mil","716.85mil","T","90.00","KK6410-05A" "X200","KK6410-10A","1380mil","846.85mil","1380mil","396.85mil","1380mil","396.85mil","T","90.00","KK6410-10A" "XIA100","KK6410-03A","720mil","1016.85mil","720mil","916.85mil","720mil","916.85mil","T","90.00","KK-3POL" "XIA101","KK6410-03A","720mil","1986.85mil","720mil","1886.85mil","720mil","1886.85mil","T","90.00","KK-3POL" "XICD200","B6B-ZR","2580mil","2716.378mil","2580mil","2864.016mil","2580mil","2864.016mil","T","270.00","CONS-ICD-B6B-ZR" "XP100","BIGPAD","3779.528mil","2047.244mil","3779.528mil","2047.244mil","3779.528mil","2047.244mil","T","180.00","A1" "XP101","BIGPAD","3779.528mil","3937.008mil","3779.528mil","3937.008mil","3779.528mil","3937.008mil","T","180.00","A1" "XP102","BIGPAD","3779.528mil","3740.158mil","3779.528mil","3740.157mil","3779.528mil","3740.158mil","T","180.00","B1" "XP103","BIGPAD","3779.528mil","1850.394mil","3779.528mil","1850.394mil","3779.528mil","1850.394mil","T","180.00","B1" "XP104","BIGPAD","3779.528mil","3543.308mil","3779.528mil","3543.307mil","3779.528mil","3543.308mil","T","180.00","C1" "XP105","BIGPAD","3779.528mil","1653.544mil","3779.528mil","1653.543mil","3779.528mil","1653.544mil","T","180.00","C1" "XP106","BIGPAD","3779.528mil","3346.456mil","3779.528mil","3346.457mil","3779.528mil","3346.456mil","T","180.00","D1" "XP107","BIGPAD","3779.528mil","1456.694mil","3779.528mil","1456.693mil","3779.528mil","1456.694mil","T","180.00","D1" "XP108","BIGPAD","3779.528mil","3149.606mil","3779.528mil","3149.606mil","3779.528mil","3149.606mil","T","180.00","H1" "XP109","BIGPAD","3779.528mil","1259.842mil","3779.528mil","1259.843mil","3779.528mil","1259.842mil","T","180.00","H1" "XP110","BIGPAD","3779.528mil","2952.756mil","3779.528mil","2952.756mil","3779.528mil","2952.756mil","T","180.00","K1" "XP111","BIGPAD","3779.528mil","1062.992mil","3779.528mil","1062.992mil","3779.528mil","1062.992mil","T","180.00","K1" "XP112","BIGPAD","3779.528mil","2755.906mil","3779.528mil","2755.905mil","3779.528mil","2755.906mil","T","180.00","S1" "XP113","BIGPAD","3779.528mil","866.142mil","3779.528mil","866.142mil","3779.528mil","866.142mil","T","180.00","S1" "XP114","BIGPAD","3779.528mil","2559.056mil","3779.528mil","2559.055mil","3779.528mil","2559.056mil","T","180.00","T1" "XP115","BIGPAD","3779.528mil","669.292mil","3779.528mil","669.291mil","3779.528mil","669.292mil","T","180.00","T1" "XP116","BIGPAD","3779.528mil","2362.206mil","3779.528mil","2362.205mil","3779.528mil","2362.206mil","T","90.00","U1" "XP117","BIGPAD","3779.528mil","472.442mil","3779.528mil","472.441mil","3779.528mil","472.442mil","T","270.00","U1" "XST200","B6B-ZR","1220mil","2706.378mil","1220mil","2854.016mil","1220mil","2854.016mil","T","270.00","B6B-ZR" "X201","KK6410-10A","2260mil","846.85mil","2260mil","396.85mil","2260mil","396.85mil","T","90.00","KK6410-10A" "X102","KK6410-10A","1670mil","846.85mil","1670mil","396.85mil","1670mil","396.85mil","T","90.00","KK6410-10A" "U201","SO-8","3449.504mil","2034.15mil","3450mil","2034.646mil","3339.504mil","2109.15mil","T","360.00","LT1763CS8-ADJ" "T203","SOT-23_MOS","2839.992mil","1934.638mil","2840mil","1934.646mil","2877.492mil","1974.638mil","T","180.00","BSS138" "T202","SOT-23_MOS","2979.992mil","1929.992mil","2980mil","1930mil","2942.492mil","1969.992mil","T","180.00","BSS138" "T201","SOT-23_MOS","2910.008mil","1604.638mil","2910mil","1604.646mil","2870.008mil","1642.138mil","T","270.00","BSS138" "T200","SOT-23_MOS_REFL","3410mil","1844.896mil","3410mil","1844.646mil","3410mil","1884.146mil","T","0.00","FDV304P" "R253","1206_REFL","2509.992mil","1914.638mil","2510mil","1914.646mil","2568.492mil","1914.638mil","T","180.00","0R0" "R251","0805_REFL","2970.008mil","1724.654mil","2970mil","1724.646mil","2932.008mil","1724.654mil","T","360.00","43R 5%" "R250","0805_REFL","2970.008mil","1814.654mil","2970mil","1814.646mil","2932.008mil","1814.654mil","T","360.00","27R 1%" "R249","0805_REFL","3130.008mil","1924.654mil","3130mil","1924.646mil","3092.008mil","1924.654mil","T","360.00","22R 1%" "R248","0805_REFL","3060.008mil","2204.654mil","3060mil","2204.646mil","3022.008mil","2204.654mil","T","360.00","15R 5%" "R247","0805_REFL","3130.008mil","1814.654mil","3130mil","1814.646mil","3092.008mil","1814.654mil","T","360.00","430R 1%" "R246","0805_REFL","3130.008mil","2014.654mil","3130mil","2014.646mil","3092.008mil","2014.654mil","T","360.00","240R 1%" "R245","0805_REFL","3659.992mil","1994.654mil","3660mil","1994.646mil","3659.992mil","1956.654mil","T","90.00","1K 1%" "R244","0805_REFL","3390.008mil","1720.008mil","3390mil","1720mil","3352.008mil","1720.008mil","T","360.00","2K2 1%" "R243","0805_REFL","3230.008mil","2206.858mil","3230mil","2206.85mil","3192.008mil","2206.858mil","T","360.00","1K5 1%" "R240","0805_REFL","2610.008mil","1204.654mil","2610mil","1204.646mil","2572.008mil","1204.654mil","T","360.00","2K4 5%" "R239","0805_REFL","1950.008mil","1904.654mil","1950mil","1904.646mil","1912.008mil","1904.654mil","T","360.00","2K4 5%" "R238","0805_REFL","1690.008mil","1724.654mil","1690mil","1724.646mil","1652.008mil","1724.654mil","T","360.00","2K4 5%" "R235","0805_REFL","2480.008mil","1184.638mil","2480mil","1184.646mil","2480.008mil","1222.638mil","T","270.00","1K2 1%" "R234","0805_REFL","2569.992mil","1344.654mil","2570mil","1344.646mil","2569.992mil","1306.654mil","T","90.00","1K2 1%" "R233","0805_REFL","1949.992mil","1724.638mil","1950mil","1724.646mil","1987.992mil","1724.638mil","T","180.00","1K2 1%" "R232","0805_REFL","1950.008mil","1994.654mil","1950mil","1994.646mil","1912.008mil","1994.654mil","T","360.00","1K2 1%" "R231","0805_REFL","1660.008mil","1594.638mil","1660mil","1594.646mil","1660.008mil","1632.638mil","T","270.00","1K2 1%" "R230","0805_REFL","1559.992mil","1854.654mil","1560mil","1854.646mil","1559.992mil","1816.654mil","T","90.00","1K2 1%" "R222","0805_REFL","2389.992mil","2564.008mil","2390mil","2564.016mil","2427.992mil","2564.008mil","T","180.00","100R 1%" "R221","0805_REFL","1394.992mil","2569.008mil","1395mil","2569.016mil","1432.992mil","2569.008mil","T","180.00","100R 1%" "R220","0805_REFL","1394.992mil","2664.008mil","1395mil","2664.016mil","1432.992mil","2664.008mil","T","180.00","100R 1%" "R219","0805_REFL","2349.992mil","2694.024mil","2350mil","2694.016mil","2349.992mil","2656.024mil","T","90.00","100R 1%" "R212","0805_REFL","2530.008mil","1804.654mil","2530mil","1804.646mil","2492.008mil","1804.654mil","T","360.00","470R 1%" "R211","0805_REFL","3130.008mil","2104.654mil","3130mil","2104.646mil","3092.008mil","2104.654mil","T","360.00","470R 1%" "R206","0805_REFL","3130.008mil","1724.654mil","3130mil","1724.646mil","3092.008mil","1724.654mil","T","360.00","680R 1%" "R205","0805_REFL","2659.992mil","1344.654mil","2660mil","1344.646mil","2659.992mil","1306.654mil","T","90.00","10K 1%" "R204","0805_REFL","1849.992mil","2094.638mil","1850mil","2094.646mil","1887.992mil","2094.638mil","T","180.00","10K 1%" "R203","0805_REFL","1529.992mil","1729.992mil","1530mil","1730mil","1567.992mil","1729.992mil","T","180.00","10K 1%" "E603","D","2700.008mil","1864.638mil","2700mil","1864.646mil","2700.008mil","1985.138mil","T","270.00","100UF/16V( L ESR )" "E206","C","3459.992mil","2224.638mil","3460mil","2224.646mil","3554.992mil","2224.638mil","T","180.00","10UF/25V(LESR)" "E205","B","2525.008mil","1695.008mil","2525mil","1695mil","2462.008mil","1695.008mil","T","360.00","4.7UF/10V" "DZ215","1206-D_REFL","2750.008mil","1324.638mil","2750mil","1324.646mil","2750.008mil","1383.138mil","T","270.00","ZMM2.4" "DZ214","1206-D_REFL","2590.008mil","1044.638mil","2590mil","1044.646mil","2590.008mil","1103.138mil","T","270.00","ZMM2.4" "DZ213","1206-D_REFL","1819.992mil","1784.654mil","1820mil","1784.646mil","1819.992mil","1726.154mil","T","90.00","ZMM2.4" "DZ212","1206-D_REFL","1860.008mil","1574.638mil","1860mil","1574.646mil","1860.008mil","1633.138mil","T","270.00","ZMM2.4" "DZ211","1206-D_REFL","1670.008mil","1954.638mil","1670mil","1954.646mil","1670.008mil","2013.138mil","T","270.00","ZMM2.4" "DZ210","1206-D_REFL","1760.008mil","1574.638mil","1760mil","1574.646mil","1760.008mil","1633.138mil","T","270.00","ZMM2.4" "DZ206","1206-D_REFL","2529.992mil","1574.638mil","2530mil","1574.646mil","2588.492mil","1574.638mil","T","180.00","ZMM3.3" "DZ201","1206-D_REFL","3270.008mil","1614.654mil","3270mil","1614.646mil","3211.508mil","1614.654mil","T","360.00","ZMM5.1" "DS209","SOT-23","2710.496mil","1614.15mil","2710mil","1614.646mil","2750.496mil","1576.65mil","T","90.00","BAS70-04" "DS208","SOT-23","1869.504mil","2214.15mil","1870mil","2214.646mil","1832.004mil","2174.15mil","T","0.00","BAS70-04" "DS207","SOT-23","1699.504mil","2119.504mil","1700mil","2120mil","1662.004mil","2079.504mil","T","0.00","BAS70-04" "DS204","1206-D_REFL","2530.008mil","1474.654mil","2530mil","1474.646mil","2471.508mil","1474.654mil","T","360.00","BAS85" "DS203","1206-D_REFL","1980.008mil","2144.638mil","1980mil","2144.646mil","1980.008mil","2203.138mil","T","270.00","BAS85" "C619","0805_REFL","3250.008mil","2064.638mil","3250mil","2064.646mil","3250.008mil","2102.638mil","T","270.00","100NF/50V" "C610","0805_REFL","2730.008mil","2094.654mil","2730mil","2094.646mil","2692.008mil","2094.654mil","T","360.00","10NF/50V" "C211","0805_REFL","2710.008mil","1474.654mil","2710mil","1474.646mil","2672.008mil","1474.654mil","T","360.00","10NF/50V" "C210","0805_REFL","1820.008mil","1964.638mil","1820mil","1964.646mil","1820.008mil","2002.638mil","T","270.00","10NF/50V" "C209","0805_REFL","1530.008mil","1640.008mil","1530mil","1640mil","1492.008mil","1640.008mil","T","360.00","10NF/50V" "C206","0805_REFL","2479.992mil","1344.654mil","2480mil","1344.646mil","2479.992mil","1306.654mil","T","90.00","100NF/50V" "C205","0805_REFL","1950.008mil","1814.654mil","1950mil","1814.646mil","1912.008mil","1814.654mil","T","360.00","100NF/50V" "C204","0805_REFL","3659.992mil","2214.654mil","3660mil","2214.646mil","3659.992mil","2176.654mil","T","90.00","100NF/50V" "C203","0805_REFL","1690.008mil","1814.654mil","1690mil","1814.646mil","1652.008mil","1814.654mil","T","360.00","100NF/50V" "F115","NFM21C","1179.992mil","3506.874mil","1180mil","3506.85mil","1179.992mil","3465.536mil","T","90.00","*" "R252","0805_REFL","688.968mil","1712.59mil","688.976mil","1712.599mil","726.968mil","1712.59mil","T","180.00","0R00 1%" "R254","0805_REFL","2480.308mil","1013.788mil","2480.315mil","1013.78mil","2480.308mil","975.788mil","T","90.00","0R00 1%" "XP200","BIGPAD","1670mil","196.85mil","1670mil","196.85mil","1670mil","196.85mil","T","0.00","BAT_UB+" "C116","0805_REFL","970.008mil","1016.858mil","970mil","1016.85mil","932.008mil","1016.858mil","T","360.00","100NF/50V" "C117","0805_REFL","940.008mil","586.858mil","940mil","586.85mil","902.008mil","586.858mil","T","360.00","100NF/50V" "C118","0805_REFL","1380.008mil","196.842mil","1380mil","196.85mil","1380.008mil","234.842mil","T","270.00","100NF/50V" "C215","0805_REFL","489.992mil","3620.009mil","490mil","3620mil","489.992mil","3582.009mil","T","90.00","100NF/50V" "D100","1206-D_REFL","740.008mil","586.858mil","740mil","586.85mil","681.508mil","586.858mil","T","360.00","LL4148" "DZ105","1206-D_REFL","1250.008mil","216.842mil","1250mil","216.85mil","1250.008mil","275.342mil","T","270.00","ZMM5.1" "DZ202","1206-D","2279.504mil","1399.503mil","2280mil","1400mil","2212.004mil","1399.503mil","T","360.00","ZMM4.7" "F125","NFM21C","1239.992mil","3926.874mil","1240mil","3926.85mil","1239.992mil","3885.536mil","T","90.00","*" "F126","NFM21C","1089.992mil","3506.874mil","1090mil","3506.85mil","1089.992mil","3465.536mil","T","90.00","*" "L200","L-WEZB","470mil","3872.52mil","470mil","3976.85mil","470mil","3976.85mil","T","270.00","100UH/0.5AWE" "MP100","LPT50X50","1135.008mil","2105.007mil","1135mil","2105mil","1135.008mil","2105.007mil","T","0.00","MP50" "R117","0805_REFL","1470.008mil","196.842mil","1470mil","196.85mil","1470.008mil","234.842mil","T","270.00","680R 1%" "R118","0805_REFL","580.008mil","626.842mil","580mil","626.85mil","580.008mil","664.842mil","T","270.00","2K2 1%" "R119","0805_REFL","490.008mil","626.842mil","490mil","626.85mil","490.008mil","664.842mil","T","270.00","3K3 1%" "RL100","REL-DIL51","770mil","316.85mil","1070mil","466.85mil","1070mil","466.85mil","T","180.00","REL-DIL05-1C90-51D" "T100","SOT-23A","359.734mil","626.866mil","360mil","626.85mil","319.734mil","627.366mil","T","90.00","BC846" "U203","OPTO1","1160.008mil","976.842mil","1160mil","976.85mil","1210.008mil","1114.342mil","T","270.00","PC357NT" "X202","KK6410-10A","3990mil","3096.85mil","3990mil","3546.85mil","3990mil","3546.85mil","T","270.00","KK6410-10A" "X203","KK6410-10A","3990mil","1206.85mil","3990mil","1656.85mil","3990mil","1656.85mil","T","270.00","KK6410-10A" "XIA102","KK6410-03A","720mil","2356.85mil","720mil","2456.85mil","720mil","2456.85mil","T","270.00","KK-3POL" "XIA108","KK6410-03A","290mil","3350.001mil","290mil","3450mil","290mil","3450.001mil","T","270.00","KK-3POL" "X108","IDC6","1180mil","2286.85mil","1130mil","2386.85mil","1130mil","2386.85mil","T","270.00","JUM3X2" "R228","0805_REFL","1519.992mil","2786.857mil","1520mil","2786.85mil","1519.992mil","2748.857mil","T","90.00","100R" "C200","0805_REFL","1759.992mil","2476.843mil","1760mil","2476.85mil","1759.992mil","2514.843mil","B","270.00","100NF/50V" "E201","B","1929.992mil","2486.843mil","1930mil","2486.85mil","1929.992mil","2549.843mil","B","270.00","4.7UF/10V" "X103","DB25/FSS","1673.229mil","3740.158mil","1673.228mil","3740.157mil","1019.26mil","3795.158mil","B","360.00","DB25/FSS" gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GM20000644000175000017500000001201713421555714020404 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=65535* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% %ADD133R,0.075X0.067*% %ADD134C,0.004*% D80* X1070Y5077D02* Y5010D01* X1103D01* X1115Y5021D01* Y5032D01* X1103Y5043D01* X1070D01* X1103D01* X1115Y5055D01* Y5066D01* X1103Y5077D01* X1070D01* X1170Y5010D02* X1148D01* X1137Y5021D01* Y5043D01* X1148Y5055D01* X1170D01* X1182Y5043D01* Y5032D01* X1137D01* X1204Y5010D02* Y5055D01* X1215D01* X1226Y5043D01* Y5010D01* Y5043D01* X1237Y5055D01* X1248Y5043D01* Y5010D01* X1282Y5055D02* X1304D01* X1315Y5043D01* Y5010D01* X1282D01* X1271Y5021D01* X1282Y5032D01* X1315D01* X1338Y5010D02* X1371D01* X1382Y5021D01* X1371Y5032D01* X1349D01* X1338Y5043D01* X1349Y5055D01* X1382D01* X1405Y5010D02* X1438D01* X1449Y5021D01* X1438Y5032D01* X1416D01* X1405Y5043D01* X1416Y5055D01* X1449D01* X1471D02* Y5021D01* X1483Y5010D01* X1516D01* Y5055D01* X1538Y5010D02* Y5055D01* X1572D01* X1583Y5043D01* Y5010D01* X1628Y4988D02* X1639D01* X1650Y4999D01* Y5055D01* X1616D01* X1605Y5043D01* Y5021D01* X1616Y5010D01* X1650D01* D134* X4146Y-0D02* X4331D01* X4146Y4134D02* X4331D01* X4291Y-0D02* Y1931D01* Y2175D02* Y4134D01* Y-0D02* X4304Y39D01* X4278D02* X4291Y-0D01* X4278Y4094D02* X4291Y4134D01* X4304Y4094D01* X4134Y4146D02* Y4370D01* X0Y4146D02* Y4370D01* X2175Y4331D02* X4134D01* X0D02* X1931D01* X4094Y4344D02* X4134Y4331D01* X4094Y4318D02* X4134Y4331D01* X0D02* X39Y4318D01* X0Y4331D02* X39Y4344D01* X4322Y1945D02* Y1958D01* Y1951D01* X4282D01* X4289Y1945D01* Y1978D02* X4282Y1984D01* Y1997D01* X4289Y2004D01* X4315D01* X4322Y1997D01* Y1984D01* X4315Y1978D01* X4289D01* X4282Y2043D02* Y2017D01* X4302D01* X4295Y2030D01* Y2037D01* X4302Y2043D01* X4315D01* X4322Y2037D01* Y2023D01* X4315Y2017D01* X4328Y2063D02* X4322Y2069D01* X4315D01* Y2063D01* X4322D01* Y2069D01* X4328Y2063D01* X4335Y2056D01* X4289Y2096D02* X4282Y2102D01* Y2115D01* X4289Y2122D01* X4315D01* X4322Y2115D01* Y2102D01* X4315Y2096D01* X4289D01* Y2135D02* X4282Y2142D01* Y2155D01* X4289Y2161D01* X4315D01* X4322Y2155D01* Y2142D01* X4315Y2135D01* X4289D01* X1945Y4301D02* X1958D01* X1951D01* Y4340D01* X1945Y4333D01* X1978D02* X1984Y4340D01* X1997D01* X2004Y4333D01* Y4307D01* X1997Y4301D01* X1984D01* X1978Y4307D01* Y4333D01* X2043Y4340D02* X2017D01* Y4320D01* X2030Y4327D01* X2037D01* X2043Y4320D01* Y4307D01* X2037Y4301D01* X2023D01* X2017Y4307D01* X2063Y4294D02* X2069Y4301D01* Y4307D01* X2063D01* Y4301D01* X2069D01* X2063Y4294D01* X2056Y4287D01* X2096Y4333D02* X2102Y4340D01* X2115D01* X2122Y4333D01* Y4307D01* X2115Y4301D01* X2102D01* X2096Y4307D01* Y4333D01* X2135D02* X2142Y4340D01* X2155D01* X2161Y4333D01* Y4307D01* X2155Y4301D01* X2142D01* X2135Y4307D01* Y4333D01* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GG10000644000175000017500000005567013421555714020411 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=32768* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% %ADD133R,0.075X0.067*% %ADD134C,0.004*% %ADD135C,0.007*% D134* X827Y3248D02* X945D01* X886Y3189D02* Y3307D01* X3287Y3937D02* X3406D01* X3346Y3878D02* Y3996D01* X138Y394D02* X256D01* X197Y335D02* Y453D01* X689Y3740D02* X807D01* X748Y3681D02* Y3799D01* X2539Y3740D02* X2657D01* X2598Y3681D02* Y3799D01* X1652Y497D02* X1688D01* X1670Y479D02* Y515D01* X1362Y997D02* X1398D01* X1380Y979D02* Y1015D01* X1362Y1097D02* X1398D01* X1380Y1079D02* Y1115D01* X1362Y897D02* X1398D01* X1380Y879D02* Y915D01* X1652Y1297D02* X1688D01* X1670Y1279D02* Y1315D01* X1652Y1197D02* X1688D01* X1670Y1179D02* Y1215D01* X1652Y997D02* X1688D01* X1670Y979D02* Y1015D01* X702Y1887D02* X738D01* X720Y1869D02* Y1905D01* X702Y1987D02* X738D01* X720Y1969D02* Y2005D01* X702Y2087D02* X738D01* X720Y2069D02* Y2105D01* X2542Y797D02* X2578D01* X2560Y779D02* Y815D01* X2542Y597D02* X2578D01* X2560Y579D02* Y615D01* X2542Y697D02* X2578D01* X2560Y679D02* Y715D01* X2542Y397D02* X2578D01* X2560Y379D02* Y415D01* X2542Y497D02* X2578D01* X2560Y479D02* Y515D01* X1652Y1097D02* X1688D01* X1670Y1079D02* Y1115D01* X1652Y697D02* X1688D01* X1670Y679D02* Y715D01* X1652Y797D02* X1688D01* X1670Y779D02* Y815D01* X1652Y397D02* X1688D01* X1670Y379D02* Y415D01* X2242Y1197D02* X2278D01* X2260Y1179D02* Y1215D01* X2242Y1297D02* X2278D01* X2260Y1279D02* Y1315D01* X2242Y1097D02* X2278D01* X2260Y1079D02* Y1115D01* X2242Y897D02* X2278D01* X2260Y879D02* Y915D01* X2242Y697D02* X2278D01* X2260Y679D02* Y715D01* X2242Y797D02* X2278D01* X2260Y779D02* Y815D01* X2242Y497D02* X2278D01* X2260Y479D02* Y515D01* X2242Y597D02* X2278D01* X2260Y579D02* Y615D01* X2242Y397D02* X2278D01* X2260Y379D02* Y415D01* X1362Y1297D02* X1398D01* X1380Y1279D02* Y1315D01* X1362Y697D02* X1398D01* X1380Y679D02* Y715D01* X1362Y797D02* X1398D01* X1380Y779D02* Y815D01* X1362Y497D02* X1398D01* X1380Y479D02* Y515D01* X1362Y597D02* X1398D01* X1380Y579D02* Y615D01* X1362Y397D02* X1398D01* X1380Y379D02* Y415D01* X1652Y897D02* X1688D01* X1670Y879D02* Y915D01* X1952Y597D02* X1988D01* X1970Y579D02* Y615D01* X1952Y497D02* X1988D01* X1970Y479D02* Y515D01* X1952Y797D02* X1988D01* X1970Y779D02* Y815D01* X1952Y697D02* X1988D01* X1970Y679D02* Y715D01* X1952Y897D02* X1988D01* X1970Y879D02* Y915D01* X1952Y997D02* X1988D01* X1970Y979D02* Y1015D01* X1952Y1297D02* X1988D01* X1970Y1279D02* Y1315D01* X1952Y1197D02* X1988D01* X1970Y1179D02* Y1215D01* X1952Y397D02* X1988D01* X1970Y379D02* Y415D01* X2242Y997D02* X2278D01* X2260Y979D02* Y1015D01* X1952Y1097D02* X1988D01* X1970Y1079D02* Y1115D01* X1362Y1197D02* X1398D01* X1380Y1179D02* Y1215D01* X1652Y597D02* X1688D01* X1670Y579D02* Y615D01* X3972Y1657D02* X4008D01* X3990Y1639D02* Y1675D01* X272Y3250D02* X308D01* X290Y3232D02* Y3268D01* X272Y3350D02* X308D01* X290Y3332D02* Y3368D01* X272Y3450D02* X308D01* X290Y3432D02* Y3468D01* X702Y2257D02* X738D01* X720Y2239D02* Y2275D01* X702Y2357D02* X738D01* X720Y2339D02* Y2375D01* X702Y2457D02* X738D01* X720Y2439D02* Y2475D01* X702Y1117D02* X738D01* X720Y1099D02* Y1135D01* X702Y1017D02* X738D01* X720Y999D02* Y1035D01* X702Y917D02* X738D01* X720Y899D02* Y935D01* X954Y467D02* X986D01* X970Y451D02* Y483D01* X1244Y1515D02* X1276D01* X1260Y1500D02* Y1531D01* X1244Y1415D02* X1276D01* X1260Y1400D02* Y1431D01* X1004Y3795D02* X1035D01* X1019Y3779D02* Y3811D01* X1113Y3795D02* X1144D01* X1128Y3779D02* Y3811D01* X1222Y3795D02* X1253D01* X1237Y3779D02* Y3811D01* X1331Y3795D02* X1362D01* X1346Y3779D02* Y3811D01* X1440Y3795D02* X1471D01* X1455Y3779D02* Y3811D01* X1549Y3795D02* X1580D01* X1564Y3779D02* Y3811D01* X1658Y3795D02* X1689D01* X1673Y3779D02* Y3811D01* X1767Y3795D02* X1798D01* X1782Y3779D02* Y3811D01* X1876Y3795D02* X1907D01* X1891Y3779D02* Y3811D01* X1985Y3795D02* X2016D01* X2000Y3779D02* Y3811D01* X2094Y3795D02* X2125D01* X2109Y3779D02* Y3811D01* X2203Y3795D02* X2234D01* X2218Y3779D02* Y3811D01* X2312Y3795D02* X2343D01* X2327Y3779D02* Y3811D01* X1059Y3685D02* X1090D01* X1074Y3669D02* Y3701D01* X1168Y3685D02* X1199D01* X1183Y3669D02* Y3701D01* X1277Y3685D02* X1308D01* X1292Y3669D02* Y3701D01* X1386Y3685D02* X1417D01* X1401Y3669D02* Y3701D01* X1495Y3685D02* X1526D01* X1510Y3669D02* Y3701D01* X1604Y3685D02* X1635D01* X1619Y3669D02* Y3701D01* X1713Y3685D02* X1744D01* X1728Y3669D02* Y3701D01* X1822Y3685D02* X1853D01* X1837Y3669D02* Y3701D01* X1931Y3685D02* X1962D01* X1946Y3669D02* Y3701D01* X2040Y3685D02* X2071D01* X2055Y3669D02* Y3701D01* X2149Y3685D02* X2180D01* X2164Y3669D02* Y3701D01* X2258Y3685D02* X2289D01* X2273Y3669D02* Y3701D01* X454Y3977D02* X486D01* X470Y3961D02* Y3993D01* X454Y3768D02* X486D01* X470Y3752D02* Y3784D01* X1204Y2677D02* X1236D01* X1220Y2661D02* Y2693D01* X1204Y2559D02* X1236D01* X1220Y2543D02* Y2574D01* X1204Y2618D02* X1236D01* X1220Y2602D02* Y2634D01* X1204Y2795D02* X1236D01* X1220Y2779D02* Y2811D01* X1204Y2854D02* X1236D01* X1220Y2838D02* Y2870D01* X1204Y2736D02* X1236D01* X1220Y2720D02* Y2752D01* X2564Y2805D02* X2596D01* X2580Y2789D02* Y2821D01* X289Y3976D02* X341D01* X315Y3951D02* Y4002D01* X289Y3826D02* X341D01* X315Y3801D02* Y3852D01* X289Y3676D02* X341D01* X315Y3651D02* Y3702D01* X1921Y3308D02* X1948D01* X1934Y3294D02* Y3321D01* X2113Y3308D02* X2140D01* X2126Y3294D02* Y3321D01* X2703Y3642D02* X2730D01* X2717Y3628D02* Y3656D01* X2703Y3843D02* X2730D01* X2717Y3829D02* Y3856D01* X2703Y3543D02* X2730D01* X2717Y3530D02* Y3557D01* X2703Y3937D02* X2730D01* X2717Y3923D02* Y3951D01* X616Y3642D02* X644D01* X630Y3628D02* Y3656D01* X616Y3843D02* X644D01* X630Y3829D02* Y3856D01* X616Y3543D02* X644D01* X630Y3530D02* Y3557D01* X616Y3937D02* X644D01* X630Y3923D02* Y3951D01* X1650Y197D02* X1690D01* X1670Y177D02* Y217D01* X1110Y2387D02* X1150D01* X1130Y2367D02* Y2407D01* X1210Y2387D02* X1250D01* X1230Y2367D02* Y2407D01* X1110Y2287D02* X1150D01* X1130Y2267D02* Y2307D01* X1210Y2287D02* X1250D01* X1230Y2267D02* Y2307D01* X1110Y2187D02* X1150D01* X1130Y2167D02* Y2207D01* X1210Y2187D02* X1250D01* X1230Y2167D02* Y2207D01* X2564Y2746D02* X2596D01* X2580Y2730D02* Y2762D01* X2564Y2864D02* X2596D01* X2580Y2848D02* Y2880D01* X2564Y2628D02* X2596D01* X2580Y2612D02* Y2644D01* X2564Y2569D02* X2596D01* X2580Y2553D02* Y2584D01* X2564Y2687D02* X2596D01* X2580Y2671D02* Y2703D01* X2797Y2938D02* X2833D01* X2815Y2920D02* Y2956D01* X2797Y3038D02* X2833D01* X2815Y3020D02* Y3056D01* X2797Y2738D02* X2833D01* X2815Y2720D02* Y2756D01* X2797Y2838D02* X2833D01* X2815Y2820D02* Y2856D01* X2797Y2638D02* X2833D01* X2815Y2620D02* Y2656D01* X2842Y1017D02* X2878D01* X2860Y999D02* Y1035D01* X2842Y1117D02* X2878D01* X2860Y1099D02* Y1135D01* X2842Y817D02* X2878D01* X2860Y799D02* Y835D01* X2842Y917D02* X2878D01* X2860Y899D02* Y935D01* X2842Y717D02* X2878D01* X2860Y699D02* Y735D01* X2776Y394D02* X2894D01* X2835Y335D02* Y453D01* X3972Y1457D02* X4008D01* X3990Y1439D02* Y1475D01* X3972Y1557D02* X4008D01* X3990Y1539D02* Y1575D01* X3972Y1257D02* X4008D01* X3990Y1239D02* Y1275D01* X3972Y1357D02* X4008D01* X3990Y1339D02* Y1375D01* X3972Y1157D02* X4008D01* X3990Y1139D02* Y1175D01* X3972Y957D02* X4008D01* X3990Y939D02* Y975D01* X3972Y1057D02* X4008D01* X3990Y1039D02* Y1075D01* X3972Y757D02* X4008D01* X3990Y739D02* Y775D01* X3972Y857D02* X4008D01* X3990Y839D02* Y875D01* X3972Y3547D02* X4008D01* X3990Y3529D02* Y3565D01* X3972Y3347D02* X4008D01* X3990Y3329D02* Y3365D01* X3972Y3447D02* X4008D01* X3990Y3429D02* Y3465D01* X3972Y3147D02* X4008D01* X3990Y3129D02* Y3165D01* X3972Y3247D02* X4008D01* X3990Y3229D02* Y3265D01* X3972Y3047D02* X4008D01* X3990Y3029D02* Y3065D01* X3972Y2847D02* X4008D01* X3990Y2829D02* Y2865D01* X3972Y2947D02* X4008D01* X3990Y2929D02* Y2965D01* X3972Y2647D02* X4008D01* X3990Y2629D02* Y2665D01* X3972Y2747D02* X4008D01* X3990Y2729D02* Y2765D01* X3760Y2047D02* X3799D01* X3780Y2028D02* Y2067D01* X3760Y3937D02* X3799D01* X3780Y3917D02* Y3957D01* X3760Y3740D02* X3799D01* X3780Y3720D02* Y3760D01* X3760Y1850D02* X3799D01* X3780Y1831D02* Y1870D01* X3760Y3543D02* X3799D01* X3780Y3524D02* Y3563D01* X3760Y1654D02* X3799D01* X3780Y1634D02* Y1673D01* X3760Y3346D02* X3799D01* X3780Y3327D02* Y3366D01* X3760Y1457D02* X3799D01* X3780Y1437D02* Y1476D01* X3760Y3150D02* X3799D01* X3780Y3130D02* Y3169D01* X3760Y1260D02* X3799D01* X3780Y1240D02* Y1280D01* X3760Y2953D02* X3799D01* X3780Y2933D02* Y2972D01* X3760Y1063D02* X3799D01* X3780Y1043D02* Y1083D01* X3760Y2756D02* X3799D01* X3780Y2736D02* Y2776D01* X3760Y866D02* X3799D01* X3780Y846D02* Y886D01* X3760Y2559D02* X3799D01* X3780Y2539D02* Y2579D01* X3760Y669D02* X3799D01* X3780Y650D02* Y689D01* X3760Y2362D02* X3799D01* X3780Y2343D02* Y2382D01* X3760Y472D02* X3799D01* X3780Y453D02* Y492D01* X376Y2415D02* X408D01* X392Y2400D02* Y2431D01* X376Y2306D02* X408D01* X392Y2291D02* Y2322D01* X376Y2197D02* X408D01* X392Y2182D02* Y2213D01* X376Y1979D02* X408D01* X392Y1964D02* Y1995D01* X376Y1870D02* X408D01* X392Y1855D02* Y1886D01* X376Y1761D02* X408D01* X392Y1746D02* Y1777D01* X376Y1652D02* X408D01* X392Y1637D02* Y1668D01* X376Y1543D02* X408D01* X392Y1528D02* Y1559D01* X376Y1325D02* X408D01* X392Y1310D02* Y1341D01* X376Y1216D02* X408D01* X392Y1201D02* Y1232D01* X476Y2469D02* X508D01* X492Y2454D02* Y2485D01* X476Y2360D02* X508D01* X492Y2345D02* Y2376D01* X476Y2251D02* X508D01* X492Y2236D02* Y2267D01* X476Y2142D02* X508D01* X492Y2127D02* Y2158D01* X476Y2033D02* X508D01* X492Y2018D02* Y2049D01* X476Y1815D02* X508D01* X492Y1800D02* Y1831D01* X476Y1706D02* X508D01* X492Y1691D02* Y1722D01* X476Y1597D02* X508D01* X492Y1582D02* Y1613D01* X476Y1488D02* X508D01* X492Y1473D02* Y1504D01* X476Y1379D02* X508D01* X492Y1364D02* Y1395D01* X476Y1270D02* X508D01* X492Y1255D02* Y1286D01* X476Y1161D02* X508D01* X492Y1146D02* Y1177D01* X476Y1924D02* X508D01* X492Y1909D02* Y1940D01* X376Y1433D02* X408D01* X392Y1418D02* Y1449D01* X376Y2088D02* X408D01* X392Y2073D02* Y2104D01* X379Y886D02* X505D01* X442Y823D02* Y949D01* X379Y2744D02* X505D01* X442Y2681D02* Y2807D01* X1054Y467D02* X1086D01* X1070Y451D02* Y483D01* X554Y467D02* X586D01* X570Y451D02* Y483D01* X454Y467D02* X486D01* X470Y451D02* Y483D01* X454Y167D02* X486D01* X470Y151D02* Y183D01* X1054Y167D02* X1086D01* X1070Y151D02* Y183D01* X2064Y3005D02* X2076D01* X2070Y2999D02* Y3011D01* X2259Y3005D02* X2271D01* X2265Y2999D02* Y3011D01* X2584Y3005D02* X2596D01* X2590Y2999D02* Y3011D01* X2674Y3005D02* X2686D01* X2680Y2999D02* Y3011D01* X2604Y1965D02* X2616D01* X2610Y1959D02* Y1971D01* X2664Y1560D02* X2676D01* X2670Y1554D02* Y1566D01* X3124Y1865D02* X3136D01* X3130Y1859D02* Y1871D01* X2819Y2370D02* X2831D01* X2825Y2364D02* Y2376D01* X2819Y2020D02* X2831D01* X2825Y2014D02* Y2026D01* X2524Y1345D02* X2536D01* X2530Y1339D02* Y1351D01* X2634Y2295D02* X2646D01* X2640Y2289D02* Y2301D01* X2669Y2435D02* X2681D01* X2675Y2429D02* Y2441D01* X2136Y2570D02* X2148D01* X2142Y2564D02* Y2576D01* X2219Y2335D02* X2231D01* X2225Y2329D02* Y2341D01* X1719Y2335D02* X1731D01* X1725Y2329D02* Y2341D01* X1508Y3186D02* X1532D01* X1520Y3174D02* Y3198D01* X1178Y945D02* X1202D01* X1190Y933D02* Y957D01* X2858Y2530D02* X2882D01* X2870Y2518D02* Y2542D01* X1978Y2650D02* X2002D01* X1990Y2638D02* Y2662D01* X2003Y2620D02* X2027D01* X2015Y2608D02* Y2632D01* X2983Y2415D02* X3007D01* X2995Y2403D02* Y2427D01* X2934Y856D02* X2958D01* X2946Y844D02* Y868D01* X2934Y1165D02* X2958D01* X2946Y1153D02* Y1177D01* X2843Y625D02* X2867D01* X2855Y613D02* Y637D01* X3553Y2155D02* X3577D01* X3565Y2143D02* Y2167D01* X2035Y4003D02* X2059D01* X2047Y3991D02* Y4015D01* X2688Y1790D02* X2712D01* X2700Y1778D02* Y1802D01* X1799Y551D02* X1823D01* X1811Y539D02* Y563D01* X1799Y394D02* X1823D01* X1811Y382D02* Y406D01* X1799Y206D02* X1823D01* X1811Y194D02* Y218D01* X2239Y236D02* X2263D01* X2251Y224D02* Y248D01* X697Y2756D02* X721D01* X709Y2744D02* Y2768D01* X939Y2756D02* X963D01* X951Y2744D02* Y2768D01* X2753Y2150D02* X2777D01* X2765Y2138D02* Y2162D01* X2576Y1635D02* X2600D01* X2588Y1623D02* Y1647D01* X2738Y1530D02* X2762D01* X2750Y1518D02* Y1542D01* X1516Y1558D02* X1540D01* X1528Y1546D02* Y1570D01* X1008Y1549D02* X1032D01* X1020Y1537D02* Y1561D01* X985Y2017D02* X1009D01* X997Y2005D02* Y2029D01* X3558Y1427D02* X3582D01* X3570Y1415D02* Y1439D01* X3528Y2352D02* X3552D01* X3540Y2340D02* Y2364D01* X3398Y3185D02* X3422D01* X3410Y3173D02* Y3197D01* X3403Y3061D02* X3427D01* X3415Y3049D02* Y3073D01* X3188Y1515D02* X3212D01* X3200Y1503D02* Y1527D01* X1815Y2206D02* X1831D01* X1823Y2198D02* Y2214D01* X1927Y2140D02* X1943D01* X1935Y2132D02* Y2148D01* X1417Y755D02* X1433D01* X1425Y747D02* Y763D01* X2757Y2270D02* X2773D01* X2765Y2262D02* Y2278D01* X3232Y2270D02* X3248D01* X3240Y2262D02* Y2278D01* X917Y4017D02* X933D01* X925Y4009D02* Y4025D01* X1387Y4003D02* X1403D01* X1395Y3995D02* Y4011D01* X1152Y3962D02* X1168D01* X1160Y3954D02* Y3970D01* X1546Y3563D02* X1562D01* X1554Y3555D02* Y3571D01* X1002Y3507D02* X1018D01* X1010Y3499D02* Y3515D01* X1362Y3442D02* X1378D01* X1370Y3434D02* Y3450D01* X1807Y3447D02* X1823D01* X1815Y3439D02* Y3455D01* X2322Y3502D02* X2338D01* X2330Y3494D02* Y3510D01* X1912Y3167D02* X1928D01* X1920Y3159D02* Y3175D01* X2082Y3167D02* X2098D01* X2090Y3159D02* Y3175D01* X2017Y3050D02* X2033D01* X2025Y3042D02* Y3058D01* X2247Y3142D02* X2263D01* X2255Y3134D02* Y3150D01* X2582Y2332D02* X2598D01* X2590Y2324D02* Y2340D01* X2432Y2427D02* X2448D01* X2440Y2419D02* Y2435D01* X3428Y3346D02* X3444D01* X3436Y3338D02* Y3354D01* X3427Y3545D02* X3443D01* X3435Y3537D02* Y3553D01* X3534Y2559D02* X3550D01* X3542Y2551D02* Y2567D01* X3532Y2757D02* X3548D01* X3540Y2749D02* Y2765D01* X3532Y2952D02* X3548D01* X3540Y2944D02* Y2960D01* X3527Y3147D02* X3543D01* X3535Y3139D02* Y3155D01* X3437Y2277D02* X3453D01* X3445Y2269D02* Y2285D01* X3712Y2252D02* X3728D01* X3720Y2244D02* Y2260D01* X3502Y1832D02* X3518D01* X3510Y1824D02* Y1840D01* X3497Y1707D02* X3513D01* X3505Y1699D02* Y1715D01* X3527Y1257D02* X3543D01* X3535Y1249D02* Y1265D01* X3576Y398D02* X3592D01* X3584Y390D02* Y406D01* X3532Y692D02* X3548D01* X3540Y684D02* Y700D01* X3532Y867D02* X3548D01* X3540Y859D02* Y875D01* X3532Y1062D02* X3548D01* X3540Y1054D02* Y1070D01* X3162Y622D02* X3178D01* X3170Y614D02* Y630D01* X3177Y1262D02* X3193D01* X3185Y1254D02* Y1270D01* X3117Y1487D02* X3133D01* X3125Y1479D02* Y1495D01* X2452Y392D02* X2468D01* X2460Y384D02* Y400D01* X1372Y112D02* X1388D01* X1380Y104D02* Y120D01* X392Y717D02* X408D01* X400Y709D02* Y725D01* X1012Y587D02* X1028D01* X1020Y579D02* Y595D01* X642Y747D02* X658D01* X650Y739D02* Y755D01* X651Y1277D02* X667D01* X659Y1269D02* Y1285D01* X837Y1117D02* X853D01* X845Y1109D02* Y1125D01* X2402Y1047D02* X2418D01* X2410Y1039D02* Y1055D01* X1302Y2727D02* X1318D01* X1310Y2719D02* Y2735D01* X962Y1818D02* X978D01* X970Y1810D02* Y1826D01* X1407Y1860D02* X1423D01* X1415Y1852D02* Y1868D01* X1126Y1625D02* X1142D01* X1134Y1617D02* Y1633D01* X1107Y1400D02* X1123D01* X1115Y1392D02* Y1408D01* X1303Y2479D02* X1319D01* X1311Y2471D02* Y2487D01* X1830Y2512D02* X1846D01* X1838Y2504D02* Y2520D01* X1809Y2377D02* X1825D01* X1817Y2369D02* Y2385D01* X1905Y2753D02* X1921D01* X1913Y2745D02* Y2761D01* X1737Y2115D02* X1753D01* X1745Y2107D02* Y2123D01* X1677Y1980D02* X1693D01* X1685Y1972D02* Y1988D01* X1088Y1528D02* X1104D01* X1096Y1520D02* Y1536D01* X993Y1733D02* X1009D01* X1001Y1725D02* Y1741D01* X2629Y2218D02* X2645D01* X2637Y2210D02* Y2226D01* X1173Y275D02* X1189D01* X1181Y267D02* Y283D01* X3237Y1175D02* X3253D01* X3245Y1167D02* Y1183D01* X2862Y1520D02* X2878D01* X2870Y1512D02* Y1528D01* X2637Y1150D02* X2653D01* X2645Y1142D02* Y1158D01* X2917Y2005D02* X2933D01* X2925Y1997D02* Y2013D01* X2392Y2040D02* X2408D01* X2400Y2032D02* Y2048D01* X2282Y1815D02* X2298D01* X2290Y1807D02* Y1823D01* X1980Y1860D02* X1996D01* X1988Y1852D02* Y1868D01* X2062Y1470D02* X2078D01* X2070Y1462D02* Y1478D01* X2222Y1453D02* X2238D01* X2230Y1445D02* Y1461D01* X2417Y1385D02* X2433D01* X2425Y1377D02* Y1393D01* X1442Y2130D02* X1458D01* X1450Y2122D02* Y2138D01* X2457Y2310D02* X2473D01* X2465Y2302D02* Y2318D01* X2952Y2800D02* X2968D01* X2960Y2792D02* Y2808D01* X2812Y3155D02* X2828D01* X2820Y3147D02* Y3163D01* X3182Y3100D02* X3198D01* X3190Y3092D02* Y3108D01* X3267Y2900D02* X3283D01* X3275Y2892D02* Y2908D01* X3267Y2590D02* X3283D01* X3275Y2582D02* Y2598D01* X3427Y3735D02* X3443D01* X3435Y3727D02* Y3743D01* X2992Y975D02* X3008D01* X3000Y967D02* Y983D01* X1617Y3280D02* X1633D01* X1625Y3272D02* Y3288D01* X3402Y1315D02* X3418D01* X3410Y1307D02* Y1323D01* X3457Y1235D02* X3473D01* X3465Y1227D02* Y1243D01* X3147Y695D02* X3163D01* X3155Y687D02* Y703D01* X3445Y2110D02* X3461D01* X3453Y2102D02* Y2118D01* X3407Y1670D02* X3423D01* X3415Y1662D02* Y1678D01* X1224Y1725D02* X1236D01* X1230Y1719D02* Y1731D01* X1224Y1680D02* X1236D01* X1230Y1674D02* Y1686D01* X1804Y1675D02* X1816D01* X1810Y1669D02* Y1681D01* X1794Y1450D02* X1806D01* X1800Y1444D02* Y1456D01* X1894Y1405D02* X1906D01* X1900Y1399D02* Y1411D01* X774Y1895D02* X786D01* X780Y1889D02* Y1901D01* X804Y1795D02* X816D01* X810Y1789D02* Y1801D01* X804Y2135D02* X816D01* X810Y2129D02* Y2141D01* X829Y2100D02* X841D01* X835Y2094D02* Y2106D01* X1334Y2125D02* X1346D01* X1340Y2119D02* Y2131D01* X784Y2380D02* X796D01* X790Y2374D02* Y2386D01* X1542Y897D02* X1554D01* X1548Y891D02* Y903D01* X1244Y1245D02* X1256D01* X1250Y1239D02* Y1251D01* X574Y740D02* X586D01* X580Y734D02* Y746D01* X1409Y2080D02* X1421D01* X1415Y2074D02* Y2086D01* X829Y2065D02* X841D01* X835Y2059D02* Y2071D01* X1499Y2030D02* X1511D01* X1505Y2024D02* Y2036D01* X1144Y1955D02* X1156D01* X1150Y1949D02* Y1961D01* X869Y1955D02* X881D01* X875Y1949D02* Y1961D01* X109Y1125D02* X121D01* X115Y1119D02* Y1131D01* X389Y1100D02* X401D01* X395Y1094D02* Y1106D01* X884Y1740D02* X896D01* X890Y1734D02* Y1746D01* X999Y945D02* X1011D01* X1005Y939D02* Y951D01* X1514Y455D02* X1526D01* X1520Y449D02* Y461D01* X1519Y1165D02* X1531D01* X1525Y1159D02* Y1171D01* X739Y1405D02* X751D01* X745Y1399D02* Y1411D01* X109Y1490D02* X121D01* X115Y1484D02* Y1496D01* X1449Y1935D02* X1461D01* X1455Y1929D02* Y1941D01* X1185Y1934D02* X1197D01* X1191Y1928D02* Y1940D01* X109Y1635D02* X121D01* X115Y1629D02* Y1641D01* X204Y1160D02* X216D01* X210Y1154D02* Y1166D01* X194Y2090D02* X206D01* X200Y2084D02* Y2096D01* X249Y1820D02* X261D01* X255Y1814D02* Y1826D01* X2244Y3425D02* X2256D01* X2250Y3419D02* Y3431D01* X259Y2420D02* X271D01* X265Y2414D02* Y2426D01* X239Y2365D02* X251D01* X245Y2359D02* Y2371D01* X1894Y3430D02* X1906D01* X1900Y3424D02* Y3436D01* X189Y2350D02* X201D01* X195Y2344D02* Y2356D01* X1659Y3350D02* X1671D01* X1665Y3344D02* Y3356D01* X1274Y3385D02* X1286D01* X1280Y3379D02* Y3391D01* X109Y2305D02* X121D01* X115Y2299D02* Y2311D01* X64Y1215D02* X76D01* X70Y1209D02* Y1221D01* X29Y1595D02* X41D01* X35Y1589D02* Y1601D01* X509Y3160D02* X521D01* X515Y3154D02* Y3166D01* X1324Y3960D02* X1336D01* X1330Y3954D02* Y3966D01* X1234Y4000D02* X1246D01* X1240Y3994D02* Y4006D01* X2019Y1950D02* X2031D01* X2025Y1944D02* Y1956D01* X1614Y1965D02* X1626D01* X1620Y1959D02* Y1971D01* X1519Y1427D02* X1531D01* X1525Y1421D02* Y1433D01* X2719Y2340D02* X2731D01* X2725Y2334D02* Y2346D01* X2354Y2140D02* X2366D01* X2360Y2134D02* Y2146D01* X2284Y1875D02* X2296D01* X2290Y1869D02* Y1881D01* X2704Y2910D02* X2716D01* X2710Y2904D02* Y2916D01* X2754Y2970D02* X2766D01* X2760Y2964D02* Y2976D01* X2584Y2970D02* X2596D01* X2590Y2964D02* Y2976D01* X1739Y2665D02* X1751D01* X1745Y2659D02* Y2671D01* X1599Y2360D02* X1611D01* X1605Y2354D02* Y2366D01* X2179Y2495D02* X2191D01* X2185Y2489D02* Y2501D01* X1299Y2425D02* X1311D01* X1305Y2419D02* Y2431D01* X2089Y2360D02* X2101D01* X2095Y2354D02* Y2366D01* X1759Y1770D02* X1771D01* X1765Y1764D02* Y1776D01* X1654Y2610D02* X1666D01* X1660Y2604D02* Y2616D01* X1539Y2425D02* X1551D01* X1545Y2419D02* Y2431D01* X1569Y2855D02* X1581D01* X1575Y2849D02* Y2861D01* X1584Y2735D02* X1596D01* X1590Y2729D02* Y2741D01* X2224Y2495D02* X2236D01* X2230Y2489D02* Y2501D01* X1864Y2205D02* X1876D01* X1870Y2199D02* Y2211D01* X2189Y2670D02* X2201D01* X2195Y2664D02* Y2676D01* X1554Y2260D02* X1566D01* X1560Y2254D02* Y2266D01* X1974Y2235D02* X1986D01* X1980Y2229D02* Y2241D01* X2239Y2230D02* X2251D01* X2245Y2224D02* Y2236D01* X2034Y2594D02* X2046D01* X2040Y2588D02* Y2600D01* X2249Y2670D02* X2261D01* X2255Y2664D02* Y2676D01* X2284Y2670D02* X2296D01* X2290Y2664D02* Y2676D01* X3029Y1660D02* X3041D01* X3035Y1654D02* Y1666D01* X3054Y2655D02* X3066D01* X3060Y2649D02* Y2661D01* X3264Y1560D02* X3276D01* X3270Y1554D02* Y1566D01* X3174Y2415D02* X3186D01* X3180Y2409D02* Y2421D01* X1459Y1245D02* X1471D01* X1465Y1239D02* Y1251D01* X2794Y2480D02* X2806D01* X2800Y2474D02* Y2486D01* X2354Y1820D02* X2366D01* X2360Y1814D02* Y1826D01* X1989Y2875D02* X2001D01* X1995Y2869D02* Y2881D01* X2036Y2880D02* X2048D01* X2042Y2874D02* Y2886D01* X2079Y2765D02* X2091D01* X2085Y2759D02* Y2771D01* X2214Y2765D02* X2226D01* X2220Y2759D02* Y2771D01* X2214Y2060D02* X2226D01* X2220Y2054D02* Y2066D01* X2310Y2594D02* X2322D01* X2316Y2588D02* Y2600D01* X1104Y780D02* X1116D01* X1110Y774D02* Y786D01* X1389Y2620D02* X1401D01* X1395Y2614D02* Y2626D01* X1469Y2749D02* X1481D01* X1475Y2743D02* Y2755D01* X2129Y2880D02* X2141D01* X2135Y2874D02* Y2886D01* X1233Y1300D02* X1257D01* X1245Y1288D02* Y1312D01* X2112Y2265D02* X2128D01* X2120Y2257D02* Y2273D01* M02* gerbv-2.7.0/example/protel-pnp/SE_SG_IF_V2.GD10000644000175000017500000010522013421555714020371 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* G04 Layer_Color=61183* %ADD10C,0.013*% %ADD11R,0.024X0.080*% %ADD12O,0.024X0.080*% %ADD13R,0.039X0.071*% %ADD14R,0.057X0.035*% %ADD15R,0.035X0.057*% %ADD16R,0.036X0.036*% %ADD17R,0.060X0.052*% %ADD18O,0.030X0.020*% %ADD19O,0.030X0.059*% %ADD20O,0.028X0.059*% %ADD21R,0.071X0.126*% %ADD22R,0.036X0.050*% %ADD23R,0.050X0.036*% %ADD24R,0.095X0.091*% %ADD25R,0.071X0.039*% %ADD26R,0.079X0.079*% %ADD27R,0.051X0.079*% %ADD28R,0.052X0.060*% %ADD29O,0.059X0.028*% %ADD30O,0.059X0.030*% %ADD31O,0.020X0.030*% %ADD32R,0.063X0.071*% %ADD33O,0.013X0.055*% %ADD34R,0.013X0.055*% %ADD35O,0.080X0.024*% %ADD36R,0.037X0.037*% %ADD37R,0.033X0.037*% %ADD38R,0.114X0.095*% %ADD39O,0.067X0.047*% %ADD40O,0.031X0.043*% %ADD41O,0.047X0.067*% %ADD42O,0.043X0.031*% %ADD43R,0.060X0.100*% %ADD44C,0.050*% %ADD45R,0.060X0.060*% %ADD46R,0.050X0.060*% %ADD47R,0.079X0.051*% %ADD48C,0.016*% %ADD49C,0.024*% %ADD50C,0.010*% %ADD51C,0.032*% %ADD52C,0.020*% %ADD53C,0.008*% %ADD54C,0.080*% %ADD55C,0.050*% %ADD56C,0.100*% %ADD57C,0.040*% %ADD58C,0.005*% %ADD59C,0.118*% %ADD60C,0.150*% %ADD61C,0.060*% %ADD62R,0.062X0.062*% %ADD63C,0.062*% %ADD64R,0.064X0.064*% %ADD65C,0.064*% %ADD66R,0.050X0.040*% %ADD67R,0.100X0.100*% %ADD68C,0.100*% %ADD69C,0.047*% %ADD70O,0.060X0.079*% %ADD71R,0.070X0.070*% %ADD72C,0.070*% %ADD73C,0.180*% %ADD74C,0.022*% %ADD75C,0.016*% %ADD76C,0.028*% %ADD77C,0.032*% %ADD78R,0.071X0.063*% %ADD79C,0.008*% %ADD80C,0.010*% %ADD81C,0.012*% %ADD82C,0.004*% %ADD83R,0.028X0.084*% %ADD84O,0.028X0.084*% %ADD85R,0.043X0.075*% %ADD86R,0.061X0.039*% %ADD87R,0.039X0.061*% %ADD88R,0.040X0.040*% %ADD89R,0.064X0.056*% %ADD90O,0.034X0.024*% %ADD91O,0.034X0.063*% %ADD92O,0.032X0.063*% %ADD93R,0.075X0.130*% %ADD94R,0.040X0.054*% %ADD95R,0.054X0.040*% %ADD96R,0.099X0.095*% %ADD97R,0.075X0.043*% %ADD98R,0.083X0.083*% %ADD99R,0.055X0.083*% %ADD100R,0.056X0.064*% %ADD101O,0.063X0.032*% %ADD102O,0.063X0.034*% %ADD103O,0.024X0.034*% %ADD104R,0.067X0.075*% %ADD105O,0.017X0.059*% %ADD106R,0.017X0.059*% %ADD107O,0.084X0.028*% %ADD108R,0.041X0.041*% %ADD109R,0.037X0.041*% %ADD110R,0.118X0.099*% %ADD111O,0.071X0.051*% %ADD112O,0.035X0.047*% %ADD113O,0.051X0.071*% %ADD114O,0.047X0.035*% %ADD115R,0.064X0.104*% %ADD116C,0.054*% %ADD117R,0.054X0.064*% %ADD118R,0.083X0.055*% %ADD119C,0.122*% %ADD120C,0.154*% %ADD121R,0.066X0.066*% %ADD122C,0.066*% %ADD123R,0.068X0.068*% %ADD124C,0.068*% %ADD125R,0.054X0.044*% %ADD126R,0.104X0.104*% %ADD127C,0.104*% %ADD128C,0.051*% %ADD129O,0.064X0.083*% %ADD130R,0.074X0.074*% %ADD131C,0.074*% %ADD132C,0.184*% %ADD133R,0.075X0.067*% %ADD134C,0.004*% %ADD135C,0.007*% D50* X1084Y4792D02* Y4722D01* X1119D01* X1131Y4734D01* Y4781D01* X1119Y4792D01* X1084D01* X1154Y4769D02* Y4722D01* Y4746D01* X1166Y4757D01* X1178Y4769D01* X1189D01* X1224Y4722D02* X1248D01* X1236D01* Y4769D01* X1224D01* X1283Y4722D02* X1306D01* X1294D01* Y4792D01* X1283D01* X1341Y4722D02* X1364D01* X1353D01* Y4792D01* X1341D01* X1469D02* Y4722D01* X1504D01* X1516Y4734D01* Y4781D01* X1504Y4792D01* X1469D01* X1539Y4769D02* Y4722D01* Y4746D01* X1551Y4757D01* X1563Y4769D01* X1574D01* X1621D02* X1644D01* X1656Y4757D01* Y4722D01* X1621D01* X1609Y4734D01* X1621Y4746D01* X1656D01* X1679Y4769D02* Y4734D01* X1691Y4722D01* X1703Y4734D01* X1714Y4722D01* X1726Y4734D01* Y4769D01* X1749Y4722D02* X1773D01* X1761D01* Y4769D01* X1749D01* X1808Y4722D02* Y4769D01* X1843D01* X1854Y4757D01* Y4722D01* X1901Y4699D02* X1913D01* X1924Y4711D01* Y4769D01* X1889D01* X1878Y4757D01* Y4734D01* X1889Y4722D01* X1924D01* X2017D02* X2064Y4769D01* X2157Y4792D02* Y4722D01* Y4757D01* X2204D01* Y4792D01* Y4722D01* X2239D02* X2262D01* X2274Y4734D01* Y4757D01* X2262Y4769D01* X2239D01* X2227Y4757D01* Y4734D01* X2239Y4722D01* X2297D02* X2321D01* X2309D01* Y4792D01* X2297D01* X2391Y4722D02* X2367D01* X2356Y4734D01* Y4757D01* X2367Y4769D01* X2391D01* X2402Y4757D01* Y4746D01* X2356D01* D82* X1835Y2206D02* G03* X1835Y2206I-12J0D01* G01* X1947Y2140D02* G03* X1947Y2140I-12J0D01* G01* X1437Y755D02* G03* X1437Y755I-12J0D01* G01* X2777Y2270D02* G03* X2777Y2270I-12J0D01* G01* X3252D02* G03* X3252Y2270I-12J0D01* G01* X937Y4017D02* G03* X937Y4017I-12J0D01* G01* X1407Y4003D02* G03* X1407Y4003I-12J0D01* G01* X1172Y3962D02* G03* X1172Y3962I-12J0D01* G01* X1566Y3563D02* G03* X1566Y3563I-12J0D01* G01* X1022Y3507D02* G03* X1022Y3507I-12J0D01* G01* X1382Y3442D02* G03* X1382Y3442I-12J0D01* G01* X1827Y3447D02* G03* X1827Y3447I-12J0D01* G01* X2342Y3502D02* G03* X2342Y3502I-12J0D01* G01* X1932Y3167D02* G03* X1932Y3167I-12J0D01* G01* X2102D02* G03* X2102Y3167I-12J0D01* G01* X2037Y3050D02* G03* X2037Y3050I-12J0D01* G01* X2267Y3142D02* G03* X2267Y3142I-12J0D01* G01* X2602Y2332D02* G03* X2602Y2332I-12J0D01* G01* X2452Y2427D02* G03* X2452Y2427I-12J0D01* G01* X3448Y3346D02* G03* X3448Y3346I-12J0D01* G01* X3447Y3545D02* G03* X3447Y3545I-12J0D01* G01* X3554Y2559D02* G03* X3554Y2559I-12J0D01* G01* X3552Y2757D02* G03* X3552Y2757I-12J0D01* G01* Y2952D02* G03* X3552Y2952I-12J0D01* G01* X3547Y3147D02* G03* X3547Y3147I-12J0D01* G01* X3457Y2277D02* G03* X3457Y2277I-12J0D01* G01* X3732Y2252D02* G03* X3732Y2252I-12J0D01* G01* X3522Y1832D02* G03* X3522Y1832I-12J0D01* G01* X3517Y1707D02* G03* X3517Y1707I-12J0D01* G01* X3547Y1257D02* G03* X3547Y1257I-12J0D01* G01* X3596Y398D02* G03* X3596Y398I-12J0D01* G01* X3552Y692D02* G03* X3552Y692I-12J0D01* G01* Y867D02* G03* X3552Y867I-12J0D01* G01* Y1062D02* G03* X3552Y1062I-12J0D01* G01* X3182Y622D02* G03* X3182Y622I-12J0D01* G01* X3197Y1262D02* G03* X3197Y1262I-12J0D01* G01* X3137Y1487D02* G03* X3137Y1487I-12J0D01* G01* X2472Y392D02* G03* X2472Y392I-12J0D01* G01* X1392Y112D02* G03* X1392Y112I-12J0D01* G01* X412Y717D02* G03* X412Y717I-12J0D01* G01* X1032Y587D02* G03* X1032Y587I-12J0D01* G01* X662Y747D02* G03* X662Y747I-12J0D01* G01* X671Y1277D02* G03* X671Y1277I-12J0D01* G01* X857Y1117D02* G03* X857Y1117I-12J0D01* G01* X2422Y1047D02* G03* X2422Y1047I-12J0D01* G01* X1322Y2727D02* G03* X1322Y2727I-12J0D01* G01* X982Y1818D02* G03* X982Y1818I-12J0D01* G01* X1427Y1860D02* G03* X1427Y1860I-12J0D01* G01* X1146Y1625D02* G03* X1146Y1625I-12J0D01* G01* X1127Y1400D02* G03* X1127Y1400I-12J0D01* G01* X1323Y2479D02* G03* X1323Y2479I-12J0D01* G01* X1850Y2512D02* G03* X1850Y2512I-12J0D01* G01* X1829Y2377D02* G03* X1829Y2377I-12J0D01* G01* X1925Y2753D02* G03* X1925Y2753I-12J0D01* G01* X1757Y2115D02* G03* X1757Y2115I-12J0D01* G01* X1697Y1980D02* G03* X1697Y1980I-12J0D01* G01* X1108Y1528D02* G03* X1108Y1528I-12J0D01* G01* X1013Y1733D02* G03* X1013Y1733I-12J0D01* G01* X2649Y2218D02* G03* X2649Y2218I-12J0D01* G01* X1193Y275D02* G03* X1193Y275I-12J0D01* G01* X3257Y1175D02* G03* X3257Y1175I-12J0D01* G01* X2882Y1520D02* G03* X2882Y1520I-12J0D01* G01* X2657Y1150D02* G03* X2657Y1150I-12J0D01* G01* X2937Y2005D02* G03* X2937Y2005I-12J0D01* G01* X2412Y2040D02* G03* X2412Y2040I-12J0D01* G01* X2302Y1815D02* G03* X2302Y1815I-12J0D01* G01* X2000Y1860D02* G03* X2000Y1860I-12J0D01* G01* X2082Y1470D02* G03* X2082Y1470I-12J0D01* G01* X2242Y1453D02* G03* X2242Y1453I-12J0D01* G01* X2437Y1385D02* G03* X2437Y1385I-12J0D01* G01* X1462Y2130D02* G03* X1462Y2130I-12J0D01* G01* X2477Y2310D02* G03* X2477Y2310I-12J0D01* G01* X2972Y2800D02* G03* X2972Y2800I-12J0D01* G01* X2832Y3155D02* G03* X2832Y3155I-12J0D01* G01* X3202Y3100D02* G03* X3202Y3100I-12J0D01* G01* X3287Y2900D02* G03* X3287Y2900I-12J0D01* G01* Y2590D02* G03* X3287Y2590I-12J0D01* G01* X3447Y3735D02* G03* X3447Y3735I-12J0D01* G01* X3012Y975D02* G03* X3012Y975I-12J0D01* G01* X1637Y3280D02* G03* X1637Y3280I-12J0D01* G01* X3422Y1315D02* G03* X3422Y1315I-12J0D01* G01* X3477Y1235D02* G03* X3477Y1235I-12J0D01* G01* X3167Y695D02* G03* X3167Y695I-12J0D01* G01* X3465Y2110D02* G03* X3465Y2110I-12J0D01* G01* X3427Y1670D02* G03* X3427Y1670I-12J0D01* G01* X2132Y2265D02* G03* X2132Y2265I-12J0D01* G01* D134* X866Y3228D02* Y3268D01* X906D01* Y3228D01* X866D01* X3326Y3917D02* Y3957D01* X3366D01* Y3917D01* X3326D01* X177Y374D02* Y414D01* X217D01* Y374D01* X177D01* X728Y3720D02* Y3760D01* X768D01* Y3720D01* X728D01* X2578D02* Y3760D01* X2618D01* Y3720D01* X2578D01* X970Y447D02* X950Y487D01* X990D01* X970Y447D01* X1260Y1495D02* X1240Y1535D01* X1280D01* X1260Y1495D01* Y1395D02* X1240Y1435D01* X1280D01* X1260Y1395D01* X1019Y3775D02* X999Y3815D01* X1039D01* X1019Y3775D01* X1128D02* X1108Y3815D01* X1148D01* X1128Y3775D01* X1237D02* X1217Y3815D01* X1257D01* X1237Y3775D01* X1346D02* X1326Y3815D01* X1366D01* X1346Y3775D01* X1455D02* X1435Y3815D01* X1475D01* X1455Y3775D01* X1564D02* X1544Y3815D01* X1584D01* X1564Y3775D01* X1673D02* X1653Y3815D01* X1693D01* X1673Y3775D01* X1782D02* X1762Y3815D01* X1802D01* X1782Y3775D01* X1891D02* X1871Y3815D01* X1911D01* X1891Y3775D01* X2000D02* X1980Y3815D01* X2020D01* X2000Y3775D01* X2109D02* X2089Y3815D01* X2129D01* X2109Y3775D01* X2218D02* X2198Y3815D01* X2238D01* X2218Y3775D01* X2327D02* X2307Y3815D01* X2347D01* X2327Y3775D01* X1074Y3665D02* X1054Y3705D01* X1094D01* X1074Y3665D01* X1183D02* X1163Y3705D01* X1203D01* X1183Y3665D01* X1292D02* X1272Y3705D01* X1312D01* X1292Y3665D01* X1401D02* X1381Y3705D01* X1421D01* X1401Y3665D01* X1510D02* X1490Y3705D01* X1530D01* X1510Y3665D01* X1619D02* X1599Y3705D01* X1639D01* X1619Y3665D01* X1728D02* X1708Y3705D01* X1748D01* X1728Y3665D01* X1837D02* X1817Y3705D01* X1857D01* X1837Y3665D01* X1946D02* X1926Y3705D01* X1966D01* X1946Y3665D01* X2055D02* X2035Y3705D01* X2075D01* X2055Y3665D01* X2164D02* X2144Y3705D01* X2184D01* X2164Y3665D01* X2273D02* X2253Y3705D01* X2293D01* X2273Y3665D01* X470Y3957D02* X450Y3997D01* X490D01* X470Y3957D01* Y3748D02* X450Y3788D01* X490D01* X470Y3748D01* X1220Y2657D02* X1200Y2697D01* X1240D01* X1220Y2657D01* Y2539D02* X1200Y2579D01* X1240D01* X1220Y2539D01* Y2598D02* X1200Y2638D01* X1240D01* X1220Y2598D01* Y2775D02* X1200Y2815D01* X1240D01* X1220Y2775D01* Y2834D02* X1200Y2874D01* X1240D01* X1220Y2834D01* Y2716D02* X1200Y2756D01* X1240D01* X1220Y2716D01* X2580Y2785D02* X2560Y2825D01* X2600D01* X2580Y2785D01* X315Y3956D02* X325Y3966D01* X335D01* X325Y3976D01* X335Y3986D01* X325D01* X315Y3996D01* X305Y3986D01* X295D01* X305Y3976D01* X295Y3966D01* X305D01* X315Y3956D01* Y3806D02* X325Y3816D01* X335D01* X325Y3826D01* X335Y3836D01* X325D01* X315Y3846D01* X305Y3836D01* X295D01* X305Y3826D01* X295Y3816D01* X305D01* X315Y3806D01* Y3656D02* X325Y3666D01* X335D01* X325Y3676D01* X335Y3686D01* X325D01* X315Y3696D01* X305Y3686D01* X295D01* X305Y3676D01* X295Y3666D01* X305D01* X315Y3656D01* X1914Y3288D02* X1924Y3308D01* X1914Y3328D01* X1934Y3318D01* X1954Y3328D01* X1944Y3308D01* X1954Y3288D01* X1934Y3298D01* X1914Y3288D01* X2106D02* X2116Y3308D01* X2106Y3328D01* X2126Y3318D01* X2146Y3328D01* X2136Y3308D01* X2146Y3288D01* X2126Y3298D01* X2106Y3288D01* X2697Y3622D02* X2707Y3642D01* X2697Y3662D01* X2717Y3652D01* X2737Y3662D01* X2727Y3642D01* X2737Y3622D01* X2717Y3632D01* X2697Y3622D01* Y3823D02* X2707Y3843D01* X2697Y3863D01* X2717Y3853D01* X2737Y3863D01* X2727Y3843D01* X2737Y3823D01* X2717Y3833D01* X2697Y3823D01* Y3523D02* X2707Y3543D01* X2697Y3563D01* X2717Y3553D01* X2737Y3563D01* X2727Y3543D01* X2737Y3523D01* X2717Y3533D01* X2697Y3523D01* Y3917D02* X2707Y3937D01* X2697Y3957D01* X2717Y3947D01* X2737Y3957D01* X2727Y3937D01* X2737Y3917D01* X2717Y3927D01* X2697Y3917D01* X610Y3622D02* X620Y3642D01* X610Y3662D01* X630Y3652D01* X650Y3662D01* X640Y3642D01* X650Y3622D01* X630Y3632D01* X610Y3622D01* Y3823D02* X620Y3843D01* X610Y3863D01* X630Y3853D01* X650Y3863D01* X640Y3843D01* X650Y3823D01* X630Y3833D01* X610Y3823D01* Y3523D02* X620Y3543D01* X610Y3563D01* X630Y3553D01* X650Y3563D01* X640Y3543D01* X650Y3523D01* X630Y3533D01* X610Y3523D01* Y3917D02* X620Y3937D01* X610Y3957D01* X630Y3947D01* X650Y3957D01* X640Y3937D01* X650Y3917D01* X630Y3927D01* X610Y3917D01* X1660Y187D02* Y177D01* X1680D01* Y187D01* X1690D01* Y207D01* X1680D01* Y217D01* X1660D01* Y207D01* X1650D01* Y187D01* X1660D01* X1120Y2377D02* Y2367D01* X1140D01* Y2377D01* X1150D01* Y2397D01* X1140D01* Y2407D01* X1120D01* Y2397D01* X1110D01* Y2377D01* X1120D01* X1220D02* Y2367D01* X1240D01* Y2377D01* X1250D01* Y2397D01* X1240D01* Y2407D01* X1220D01* Y2397D01* X1210D01* Y2377D01* X1220D01* X1120Y2277D02* Y2267D01* X1140D01* Y2277D01* X1150D01* Y2297D01* X1140D01* Y2307D01* X1120D01* Y2297D01* X1110D01* Y2277D01* X1120D01* X1220D02* Y2267D01* X1240D01* Y2277D01* X1250D01* Y2297D01* X1240D01* Y2307D01* X1220D01* Y2297D01* X1210D01* Y2277D01* X1220D01* X1120Y2177D02* Y2167D01* X1140D01* Y2177D01* X1150D01* Y2197D01* X1140D01* Y2207D01* X1120D01* Y2197D01* X1110D01* Y2177D01* X1120D01* X1220D02* Y2167D01* X1240D01* Y2177D01* X1250D01* Y2197D01* X1240D01* Y2207D01* X1220D01* Y2197D01* X1210D01* Y2177D01* X1220D01* X2580Y2726D02* X2560Y2766D01* X2600D01* X2580Y2726D01* Y2844D02* X2560Y2884D01* X2600D01* X2580Y2844D01* Y2608D02* X2560Y2648D01* X2600D01* X2580Y2608D01* Y2549D02* X2560Y2589D01* X2600D01* X2580Y2549D01* Y2667D02* X2560Y2707D01* X2600D01* X2580Y2667D01* X2815Y374D02* Y414D01* X2855D01* Y374D01* X2815D01* X3770Y2037D02* Y2027D01* X3790D01* Y2037D01* X3800D01* Y2057D01* X3790D01* Y2067D01* X3770D01* Y2057D01* X3760D01* Y2037D01* X3770D01* Y3927D02* Y3917D01* X3790D01* Y3927D01* X3800D01* Y3947D01* X3790D01* Y3957D01* X3770D01* Y3947D01* X3760D01* Y3927D01* X3770D01* Y3730D02* Y3720D01* X3790D01* Y3730D01* X3800D01* Y3750D01* X3790D01* Y3760D01* X3770D01* Y3750D01* X3760D01* Y3730D01* X3770D01* Y1840D02* Y1830D01* X3790D01* Y1840D01* X3800D01* Y1860D01* X3790D01* Y1870D01* X3770D01* Y1860D01* X3760D01* Y1840D01* X3770D01* Y3533D02* Y3523D01* X3790D01* Y3533D01* X3800D01* Y3553D01* X3790D01* Y3563D01* X3770D01* Y3553D01* X3760D01* Y3533D01* X3770D01* Y1644D02* Y1634D01* X3790D01* Y1644D01* X3800D01* Y1664D01* X3790D01* Y1674D01* X3770D01* Y1664D01* X3760D01* Y1644D01* X3770D01* Y3336D02* Y3326D01* X3790D01* Y3336D01* X3800D01* Y3356D01* X3790D01* Y3366D01* X3770D01* Y3356D01* X3760D01* Y3336D01* X3770D01* Y1447D02* Y1437D01* X3790D01* Y1447D01* X3800D01* Y1467D01* X3790D01* Y1477D01* X3770D01* Y1467D01* X3760D01* Y1447D01* X3770D01* Y3140D02* Y3130D01* X3790D01* Y3140D01* X3800D01* Y3160D01* X3790D01* Y3170D01* X3770D01* Y3160D01* X3760D01* Y3140D01* X3770D01* Y1250D02* Y1240D01* X3790D01* Y1250D01* X3800D01* Y1270D01* X3790D01* Y1280D01* X3770D01* Y1270D01* X3760D01* Y1250D01* X3770D01* Y2943D02* Y2933D01* X3790D01* Y2943D01* X3800D01* Y2963D01* X3790D01* Y2973D01* X3770D01* Y2963D01* X3760D01* Y2943D01* X3770D01* Y1053D02* Y1043D01* X3790D01* Y1053D01* X3800D01* Y1073D01* X3790D01* Y1083D01* X3770D01* Y1073D01* X3760D01* Y1053D01* X3770D01* Y2746D02* Y2736D01* X3790D01* Y2746D01* X3800D01* Y2766D01* X3790D01* Y2776D01* X3770D01* Y2766D01* X3760D01* Y2746D01* X3770D01* Y856D02* Y846D01* X3790D01* Y856D01* X3800D01* Y876D01* X3790D01* Y886D01* X3770D01* Y876D01* X3760D01* Y856D01* X3770D01* Y2549D02* Y2539D01* X3790D01* Y2549D01* X3800D01* Y2569D01* X3790D01* Y2579D01* X3770D01* Y2569D01* X3760D01* Y2549D01* X3770D01* Y659D02* Y649D01* X3790D01* Y659D01* X3800D01* Y679D01* X3790D01* Y689D01* X3770D01* Y679D01* X3760D01* Y659D01* X3770D01* Y2352D02* Y2342D01* X3790D01* Y2352D01* X3800D01* Y2372D01* X3790D01* Y2382D01* X3770D01* Y2372D01* X3760D01* Y2352D01* X3770D01* Y462D02* Y452D01* X3790D01* Y462D01* X3800D01* Y482D01* X3790D01* Y492D01* X3770D01* Y482D01* X3760D01* Y462D01* X3770D01* X392Y2395D02* X372Y2435D01* X412D01* X392Y2395D01* Y2286D02* X372Y2326D01* X412D01* X392Y2286D01* Y2177D02* X372Y2217D01* X412D01* X392Y2177D01* Y1959D02* X372Y1999D01* X412D01* X392Y1959D01* Y1850D02* X372Y1890D01* X412D01* X392Y1850D01* Y1741D02* X372Y1781D01* X412D01* X392Y1741D01* Y1632D02* X372Y1672D01* X412D01* X392Y1632D01* Y1523D02* X372Y1563D01* X412D01* X392Y1523D01* Y1305D02* X372Y1345D01* X412D01* X392Y1305D01* Y1196D02* X372Y1236D01* X412D01* X392Y1196D01* X492Y2449D02* X472Y2489D01* X512D01* X492Y2449D01* Y2340D02* X472Y2380D01* X512D01* X492Y2340D01* Y2231D02* X472Y2271D01* X512D01* X492Y2231D01* Y2122D02* X472Y2162D01* X512D01* X492Y2122D01* Y2013D02* X472Y2053D01* X512D01* X492Y2013D01* Y1795D02* X472Y1835D01* X512D01* X492Y1795D01* Y1686D02* X472Y1726D01* X512D01* X492Y1686D01* Y1577D02* X472Y1617D01* X512D01* X492Y1577D01* Y1468D02* X472Y1508D01* X512D01* X492Y1468D01* Y1359D02* X472Y1399D01* X512D01* X492Y1359D01* Y1250D02* X472Y1290D01* X512D01* X492Y1250D01* Y1141D02* X472Y1181D01* X512D01* X492Y1141D01* Y1904D02* X472Y1944D01* X512D01* X492Y1904D01* X392Y1413D02* X372Y1453D01* X412D01* X392Y1413D01* Y2068D02* X372Y2108D01* X412D01* X392Y2068D01* X422Y866D02* X432D01* X442Y876D01* X452Y866D01* X462D01* Y876D01* X452Y886D01* X462Y896D01* Y906D01* X452D01* X442Y896D01* X432Y906D01* X422D01* Y896D01* X432Y886D01* X422Y876D01* Y866D01* Y2724D02* X432D01* X442Y2734D01* X452Y2724D01* X462D01* Y2734D01* X452Y2744D01* X462Y2754D01* Y2764D01* X452D01* X442Y2754D01* X432Y2764D01* X422D01* Y2754D01* X432Y2744D01* X422Y2734D01* Y2724D01* X1070Y447D02* X1050Y487D01* X1090D01* X1070Y447D01* X570Y447D02* X550Y487D01* X590D01* X570Y447D01* X470D02* X450Y487D01* X490D01* X470Y447D01* Y147D02* X450Y187D01* X490D01* X470Y147D01* X1070D02* X1050Y187D01* X1090D01* X1070Y147D01* X2050Y3005D02* X2070Y3025D01* X2090Y3005D01* X2070Y2985D01* X2050Y3005D01* X2245D02* X2265Y3025D01* X2285Y3005D01* X2265Y2985D01* X2245Y3005D01* X2570D02* X2590Y3025D01* X2610Y3005D01* X2590Y2985D01* X2570Y3005D01* X2660D02* X2680Y3025D01* X2700Y3005D01* X2680Y2985D01* X2660Y3005D01* X2590Y1965D02* X2610Y1985D01* X2630Y1965D01* X2610Y1945D01* X2590Y1965D01* X2650Y1560D02* X2670Y1580D01* X2690Y1560D01* X2670Y1540D01* X2650Y1560D01* X3110Y1865D02* X3130Y1885D01* X3150Y1865D01* X3130Y1845D01* X3110Y1865D01* X2805Y2370D02* X2825Y2390D01* X2845Y2370D01* X2825Y2350D01* X2805Y2370D01* Y2020D02* X2825Y2040D01* X2845Y2020D01* X2825Y2000D01* X2805Y2020D01* X2510Y1345D02* X2530Y1365D01* X2550Y1345D01* X2530Y1325D01* X2510Y1345D01* X2620Y2295D02* X2640Y2315D01* X2660Y2295D01* X2640Y2275D01* X2620Y2295D01* X2655Y2435D02* X2675Y2455D01* X2695Y2435D01* X2675Y2415D01* X2655Y2435D01* X2122Y2570D02* X2142Y2590D01* X2162Y2570D01* X2142Y2550D01* X2122Y2570D01* X2205Y2335D02* X2225Y2355D01* X2245Y2335D01* X2225Y2315D01* X2205Y2335D01* X1705D02* X1725Y2355D01* X1745Y2335D01* X1725Y2315D01* X1705Y2335D01* X1500Y3166D02* Y3206D01* X1540D01* Y3166D01* X1500D01* X1508Y3174D02* Y3198D01* X1532D01* Y3174D01* X1508D01* X1170Y925D02* Y965D01* X1210D01* Y925D01* X1170D01* X1178Y933D02* Y957D01* X1202D01* Y933D01* X1178D01* X2850Y2510D02* Y2550D01* X2890D01* Y2510D01* X2850D01* X2858Y2518D02* Y2542D01* X2882D01* Y2518D01* X2858D01* X1970Y2630D02* Y2670D01* X2010D01* Y2630D01* X1970D01* X1978Y2638D02* Y2662D01* X2002D01* Y2638D01* X1978D01* X1995Y2600D02* Y2640D01* X2035D01* Y2600D01* X1995D01* X2003Y2608D02* Y2632D01* X2027D01* Y2608D01* X2003D01* X2975Y2395D02* Y2435D01* X3015D01* Y2395D01* X2975D01* X2983Y2403D02* Y2427D01* X3007D01* Y2403D01* X2983D01* X2926Y836D02* Y876D01* X2966D01* Y836D01* X2926D01* X2934Y844D02* Y868D01* X2958D01* Y844D01* X2934D01* X2926Y1145D02* Y1185D01* X2966D01* Y1145D01* X2926D01* X2934Y1153D02* Y1177D01* X2958D01* Y1153D01* X2934D01* X2835Y605D02* Y645D01* X2875D01* Y605D01* X2835D01* X2843Y613D02* Y637D01* X2867D01* Y613D01* X2843D01* X3545Y2135D02* Y2175D01* X3585D01* Y2135D01* X3545D01* X3553Y2143D02* Y2167D01* X3577D01* Y2143D01* X3553D01* X2027Y3983D02* Y4023D01* X2067D01* Y3983D01* X2027D01* X2035Y3991D02* Y4015D01* X2059D01* Y3991D01* X2035D01* X2680Y1770D02* Y1810D01* X2720D01* Y1770D01* X2680D01* X2688Y1778D02* Y1802D01* X2712D01* Y1778D01* X2688D01* X1791Y531D02* Y571D01* X1831D01* Y531D01* X1791D01* X1799Y539D02* Y563D01* X1823D01* Y539D01* X1799D01* X1791Y374D02* Y414D01* X1831D01* Y374D01* X1791D01* X1799Y382D02* Y406D01* X1823D01* Y382D01* X1799D01* X1791Y186D02* Y226D01* X1831D01* Y186D01* X1791D01* X1799Y194D02* Y218D01* X1823D01* Y194D01* X1799D01* X2231Y216D02* Y256D01* X2271D01* Y216D01* X2231D01* X2239Y224D02* Y248D01* X2263D01* Y224D01* X2239D01* X689Y2736D02* Y2776D01* X729D01* Y2736D01* X689D01* X697Y2744D02* Y2768D01* X721D01* Y2744D01* X697D01* X931Y2736D02* Y2776D01* X971D01* Y2736D01* X931D01* X939Y2744D02* Y2768D01* X963D01* Y2744D01* X939D01* X2745Y2130D02* Y2170D01* X2785D01* Y2130D01* X2745D01* X2753Y2138D02* Y2162D01* X2777D01* Y2138D01* X2753D01* X2568Y1615D02* Y1655D01* X2608D01* Y1615D01* X2568D01* X2576Y1623D02* Y1647D01* X2600D01* Y1623D01* X2576D01* X2730Y1510D02* Y1550D01* X2770D01* Y1510D01* X2730D01* X2738Y1518D02* Y1542D01* X2762D01* Y1518D01* X2738D01* X1508Y1538D02* Y1578D01* X1548D01* Y1538D01* X1508D01* X1516Y1546D02* Y1570D01* X1540D01* Y1546D01* X1516D01* X1000Y1529D02* Y1569D01* X1040D01* Y1529D01* X1000D01* X1008Y1537D02* Y1561D01* X1032D01* Y1537D01* X1008D01* X977Y1997D02* Y2037D01* X1017D01* Y1997D01* X977D01* X985Y2005D02* Y2029D01* X1009D01* Y2005D01* X985D01* X3550Y1407D02* Y1447D01* X3590D01* Y1407D01* X3550D01* X3558Y1415D02* Y1439D01* X3582D01* Y1415D01* X3558D01* X3520Y2332D02* Y2372D01* X3560D01* Y2332D01* X3520D01* X3528Y2340D02* Y2364D01* X3552D01* Y2340D01* X3528D01* X3390Y3165D02* Y3205D01* X3430D01* Y3165D01* X3390D01* X3398Y3173D02* Y3197D01* X3422D01* Y3173D01* X3398D01* X3395Y3041D02* Y3081D01* X3435D01* Y3041D01* X3395D01* X3403Y3049D02* Y3073D01* X3427D01* Y3049D01* X3403D01* X3180Y1495D02* Y1535D01* X3220D01* Y1495D01* X3180D01* X3188Y1503D02* Y1527D01* X3212D01* Y1503D01* X3188D01* X1210Y1725D02* X1230Y1745D01* X1250Y1725D01* X1230Y1705D01* X1210Y1725D01* Y1680D02* X1230Y1700D01* X1250Y1680D01* X1230Y1660D01* X1210Y1680D01* X1790Y1675D02* X1810Y1695D01* X1830Y1675D01* X1810Y1655D01* X1790Y1675D01* X1780Y1450D02* X1800Y1470D01* X1820Y1450D01* X1800Y1430D01* X1780Y1450D01* X1880Y1405D02* X1900Y1425D01* X1920Y1405D01* X1900Y1385D01* X1880Y1405D01* X760Y1895D02* X780Y1915D01* X800Y1895D01* X780Y1875D01* X760Y1895D01* X790Y1795D02* X810Y1815D01* X830Y1795D01* X810Y1775D01* X790Y1795D01* Y2135D02* X810Y2155D01* X830Y2135D01* X810Y2115D01* X790Y2135D01* X815Y2100D02* X835Y2120D01* X855Y2100D01* X835Y2080D01* X815Y2100D01* X1320Y2125D02* X1340Y2145D01* X1360Y2125D01* X1340Y2105D01* X1320Y2125D01* X770Y2380D02* X790Y2400D01* X810Y2380D01* X790Y2360D01* X770Y2380D01* X1528Y897D02* X1548Y917D01* X1568Y897D01* X1548Y877D01* X1528Y897D01* X1230Y1245D02* X1250Y1265D01* X1270Y1245D01* X1250Y1225D01* X1230Y1245D01* X560Y740D02* X580Y760D01* X600Y740D01* X580Y720D01* X560Y740D01* X1395Y2080D02* X1415Y2100D01* X1435Y2080D01* X1415Y2060D01* X1395Y2080D01* X815Y2065D02* X835Y2085D01* X855Y2065D01* X835Y2045D01* X815Y2065D01* X1485Y2030D02* X1505Y2050D01* X1525Y2030D01* X1505Y2010D01* X1485Y2030D01* X1130Y1955D02* X1150Y1975D01* X1170Y1955D01* X1150Y1935D01* X1130Y1955D01* X855D02* X875Y1975D01* X895Y1955D01* X875Y1935D01* X855Y1955D01* X95Y1125D02* X115Y1145D01* X135Y1125D01* X115Y1105D01* X95Y1125D01* X375Y1100D02* X395Y1120D01* X415Y1100D01* X395Y1080D01* X375Y1100D01* X870Y1740D02* X890Y1760D01* X910Y1740D01* X890Y1720D01* X870Y1740D01* X985Y945D02* X1005Y965D01* X1025Y945D01* X1005Y925D01* X985Y945D01* X1500Y455D02* X1520Y475D01* X1540Y455D01* X1520Y435D01* X1500Y455D01* X1505Y1165D02* X1525Y1185D01* X1545Y1165D01* X1525Y1145D01* X1505Y1165D01* X725Y1405D02* X745Y1425D01* X765Y1405D01* X745Y1385D01* X725Y1405D01* X95Y1490D02* X115Y1510D01* X135Y1490D01* X115Y1470D01* X95Y1490D01* X1435Y1935D02* X1455Y1955D01* X1475Y1935D01* X1455Y1915D01* X1435Y1935D01* X1171Y1934D02* X1191Y1954D01* X1211Y1934D01* X1191Y1914D01* X1171Y1934D01* X95Y1635D02* X115Y1655D01* X135Y1635D01* X115Y1615D01* X95Y1635D01* X190Y1160D02* X210Y1180D01* X230Y1160D01* X210Y1140D01* X190Y1160D01* X180Y2090D02* X200Y2110D01* X220Y2090D01* X200Y2070D01* X180Y2090D01* X235Y1820D02* X255Y1840D01* X275Y1820D01* X255Y1800D01* X235Y1820D01* X2230Y3425D02* X2250Y3445D01* X2270Y3425D01* X2250Y3405D01* X2230Y3425D01* X245Y2420D02* X265Y2440D01* X285Y2420D01* X265Y2400D01* X245Y2420D01* X225Y2365D02* X245Y2385D01* X265Y2365D01* X245Y2345D01* X225Y2365D01* X1880Y3430D02* X1900Y3450D01* X1920Y3430D01* X1900Y3410D01* X1880Y3430D01* X175Y2350D02* X195Y2370D01* X215Y2350D01* X195Y2330D01* X175Y2350D01* X1645Y3350D02* X1665Y3370D01* X1685Y3350D01* X1665Y3330D01* X1645Y3350D01* X1260Y3385D02* X1280Y3405D01* X1300Y3385D01* X1280Y3365D01* X1260Y3385D01* X95Y2305D02* X115Y2325D01* X135Y2305D01* X115Y2285D01* X95Y2305D01* X50Y1215D02* X70Y1235D01* X90Y1215D01* X70Y1195D01* X50Y1215D01* X15Y1595D02* X35Y1615D01* X55Y1595D01* X35Y1575D01* X15Y1595D01* X495Y3160D02* X515Y3180D01* X535Y3160D01* X515Y3140D01* X495Y3160D01* X1310Y3960D02* X1330Y3980D01* X1350Y3960D01* X1330Y3940D01* X1310Y3960D01* X1220Y4000D02* X1240Y4020D01* X1260Y4000D01* X1240Y3980D01* X1220Y4000D01* X2005Y1950D02* X2025Y1970D01* X2045Y1950D01* X2025Y1930D01* X2005Y1950D01* X1600Y1965D02* X1620Y1985D01* X1640Y1965D01* X1620Y1945D01* X1600Y1965D01* X1505Y1427D02* X1525Y1447D01* X1545Y1427D01* X1525Y1407D01* X1505Y1427D01* X2705Y2340D02* X2725Y2360D01* X2745Y2340D01* X2725Y2320D01* X2705Y2340D01* X2340Y2140D02* X2360Y2160D01* X2380Y2140D01* X2360Y2120D01* X2340Y2140D01* X2270Y1875D02* X2290Y1895D01* X2310Y1875D01* X2290Y1855D01* X2270Y1875D01* X2690Y2910D02* X2710Y2930D01* X2730Y2910D01* X2710Y2890D01* X2690Y2910D01* X2740Y2970D02* X2760Y2990D01* X2780Y2970D01* X2760Y2950D01* X2740Y2970D01* X2570D02* X2590Y2990D01* X2610Y2970D01* X2590Y2950D01* X2570Y2970D01* X1725Y2665D02* X1745Y2685D01* X1765Y2665D01* X1745Y2645D01* X1725Y2665D01* X1585Y2360D02* X1605Y2380D01* X1625Y2360D01* X1605Y2340D01* X1585Y2360D01* X2165Y2495D02* X2185Y2515D01* X2205Y2495D01* X2185Y2475D01* X2165Y2495D01* X1285Y2425D02* X1305Y2445D01* X1325Y2425D01* X1305Y2405D01* X1285Y2425D01* X2075Y2360D02* X2095Y2380D01* X2115Y2360D01* X2095Y2340D01* X2075Y2360D01* X1745Y1770D02* X1765Y1790D01* X1785Y1770D01* X1765Y1750D01* X1745Y1770D01* X1640Y2610D02* X1660Y2630D01* X1680Y2610D01* X1660Y2590D01* X1640Y2610D01* X1525Y2425D02* X1545Y2445D01* X1565Y2425D01* X1545Y2405D01* X1525Y2425D01* X1555Y2855D02* X1575Y2875D01* X1595Y2855D01* X1575Y2835D01* X1555Y2855D01* X1570Y2735D02* X1590Y2755D01* X1610Y2735D01* X1590Y2715D01* X1570Y2735D01* X2210Y2495D02* X2230Y2515D01* X2250Y2495D01* X2230Y2475D01* X2210Y2495D01* X1850Y2205D02* X1870Y2225D01* X1890Y2205D01* X1870Y2185D01* X1850Y2205D01* X2175Y2670D02* X2195Y2690D01* X2215Y2670D01* X2195Y2650D01* X2175Y2670D01* X1540Y2260D02* X1560Y2280D01* X1580Y2260D01* X1560Y2240D01* X1540Y2260D01* X1960Y2235D02* X1980Y2255D01* X2000Y2235D01* X1980Y2215D01* X1960Y2235D01* X2225Y2230D02* X2245Y2250D01* X2265Y2230D01* X2245Y2210D01* X2225Y2230D01* X2020Y2594D02* X2040Y2614D01* X2060Y2594D01* X2040Y2574D01* X2020Y2594D01* X2235Y2670D02* X2255Y2690D01* X2275Y2670D01* X2255Y2650D01* X2235Y2670D01* X2270D02* X2290Y2690D01* X2310Y2670D01* X2290Y2650D01* X2270Y2670D01* X3015Y1660D02* X3035Y1680D01* X3055Y1660D01* X3035Y1640D01* X3015Y1660D01* X3040Y2655D02* X3060Y2675D01* X3080Y2655D01* X3060Y2635D01* X3040Y2655D01* X3250Y1560D02* X3270Y1580D01* X3290Y1560D01* X3270Y1540D01* X3250Y1560D01* X3160Y2415D02* X3180Y2435D01* X3200Y2415D01* X3180Y2395D01* X3160Y2415D01* X1445Y1245D02* X1465Y1265D01* X1485Y1245D01* X1465Y1225D01* X1445Y1245D01* X2780Y2480D02* X2800Y2500D01* X2820Y2480D01* X2800Y2460D01* X2780Y2480D01* X2340Y1820D02* X2360Y1840D01* X2380Y1820D01* X2360Y1800D01* X2340Y1820D01* X1975Y2875D02* X1995Y2895D01* X2015Y2875D01* X1995Y2855D01* X1975Y2875D01* X2022Y2880D02* X2042Y2900D01* X2062Y2880D01* X2042Y2860D01* X2022Y2880D01* X2065Y2765D02* X2085Y2785D01* X2105Y2765D01* X2085Y2745D01* X2065Y2765D01* X2200D02* X2220Y2785D01* X2240Y2765D01* X2220Y2745D01* X2200Y2765D01* Y2060D02* X2220Y2080D01* X2240Y2060D01* X2220Y2040D01* X2200Y2060D01* X2296Y2594D02* X2316Y2614D01* X2336Y2594D01* X2316Y2574D01* X2296Y2594D01* X1090Y780D02* X1110Y800D01* X1130Y780D01* X1110Y760D01* X1090Y780D01* X1375Y2620D02* X1395Y2640D01* X1415Y2620D01* X1395Y2600D01* X1375Y2620D01* X1455Y2749D02* X1475Y2769D01* X1495Y2749D01* X1475Y2729D01* X1455Y2749D01* X2115Y2880D02* X2135Y2900D01* X2155Y2880D01* X2135Y2860D01* X2115Y2880D01* X1225Y1280D02* Y1320D01* X1265D01* Y1280D01* X1225D01* X1233Y1288D02* Y1312D01* X1257D01* Y1288D01* X1233D01* D135* X1690Y497D02* G03* X1690Y497I-20J0D01* G01* X1400Y997D02* G03* X1400Y997I-20J0D01* G01* Y1097D02* G03* X1400Y1097I-20J0D01* G01* Y897D02* G03* X1400Y897I-20J0D01* G01* X1690Y1297D02* G03* X1690Y1297I-20J0D01* G01* Y1197D02* G03* X1690Y1197I-20J0D01* G01* Y997D02* G03* X1690Y997I-20J0D01* G01* X740Y1887D02* G03* X740Y1887I-20J0D01* G01* Y1987D02* G03* X740Y1987I-20J0D01* G01* Y2087D02* G03* X740Y2087I-20J0D01* G01* X2580Y797D02* G03* X2580Y797I-20J0D01* G01* Y597D02* G03* X2580Y597I-20J0D01* G01* Y697D02* G03* X2580Y697I-20J0D01* G01* Y397D02* G03* X2580Y397I-20J0D01* G01* Y497D02* G03* X2580Y497I-20J0D01* G01* X1690Y1097D02* G03* X1690Y1097I-20J0D01* G01* Y697D02* G03* X1690Y697I-20J0D01* G01* Y797D02* G03* X1690Y797I-20J0D01* G01* Y397D02* G03* X1690Y397I-20J0D01* G01* X2280Y1197D02* G03* X2280Y1197I-20J0D01* G01* Y1297D02* G03* X2280Y1297I-20J0D01* G01* Y1097D02* G03* X2280Y1097I-20J0D01* G01* Y897D02* G03* X2280Y897I-20J0D01* G01* Y697D02* G03* X2280Y697I-20J0D01* G01* Y797D02* G03* X2280Y797I-20J0D01* G01* Y497D02* G03* X2280Y497I-20J0D01* G01* Y597D02* G03* X2280Y597I-20J0D01* G01* Y397D02* G03* X2280Y397I-20J0D01* G01* X1400Y1297D02* G03* X1400Y1297I-20J0D01* G01* Y697D02* G03* X1400Y697I-20J0D01* G01* Y797D02* G03* X1400Y797I-20J0D01* G01* Y497D02* G03* X1400Y497I-20J0D01* G01* Y597D02* G03* X1400Y597I-20J0D01* G01* Y397D02* G03* X1400Y397I-20J0D01* G01* X1690Y897D02* G03* X1690Y897I-20J0D01* G01* X1990Y597D02* G03* X1990Y597I-20J0D01* G01* Y497D02* G03* X1990Y497I-20J0D01* G01* Y797D02* G03* X1990Y797I-20J0D01* G01* Y697D02* G03* X1990Y697I-20J0D01* G01* Y897D02* G03* X1990Y897I-20J0D01* G01* Y997D02* G03* X1990Y997I-20J0D01* G01* Y1297D02* G03* X1990Y1297I-20J0D01* G01* Y1197D02* G03* X1990Y1197I-20J0D01* G01* Y397D02* G03* X1990Y397I-20J0D01* G01* X2280Y997D02* G03* X2280Y997I-20J0D01* G01* X1990Y1097D02* G03* X1990Y1097I-20J0D01* G01* X1400Y1197D02* G03* X1400Y1197I-20J0D01* G01* X1690Y597D02* G03* X1690Y597I-20J0D01* G01* X4010Y1657D02* G03* X4010Y1657I-20J0D01* G01* X310Y3250D02* G03* X310Y3250I-20J0D01* G01* Y3350D02* G03* X310Y3350I-20J0D01* G01* Y3450D02* G03* X310Y3450I-20J0D01* G01* X740Y2257D02* G03* X740Y2257I-20J0D01* G01* Y2357D02* G03* X740Y2357I-20J0D01* G01* Y2457D02* G03* X740Y2457I-20J0D01* G01* Y1117D02* G03* X740Y1117I-20J0D01* G01* Y1017D02* G03* X740Y1017I-20J0D01* G01* Y917D02* G03* X740Y917I-20J0D01* G01* X2835Y2938D02* G03* X2835Y2938I-20J0D01* G01* Y3038D02* G03* X2835Y3038I-20J0D01* G01* Y2738D02* G03* X2835Y2738I-20J0D01* G01* Y2838D02* G03* X2835Y2838I-20J0D01* G01* Y2638D02* G03* X2835Y2638I-20J0D01* G01* X2880Y1017D02* G03* X2880Y1017I-20J0D01* G01* Y1117D02* G03* X2880Y1117I-20J0D01* G01* Y817D02* G03* X2880Y817I-20J0D01* G01* Y917D02* G03* X2880Y917I-20J0D01* G01* Y717D02* G03* X2880Y717I-20J0D01* G01* X4010Y1457D02* G03* X4010Y1457I-20J0D01* G01* Y1557D02* G03* X4010Y1557I-20J0D01* G01* Y1257D02* G03* X4010Y1257I-20J0D01* G01* Y1357D02* G03* X4010Y1357I-20J0D01* G01* Y1157D02* G03* X4010Y1157I-20J0D01* G01* Y957D02* G03* X4010Y957I-20J0D01* G01* Y1057D02* G03* X4010Y1057I-20J0D01* G01* Y757D02* G03* X4010Y757I-20J0D01* G01* Y857D02* G03* X4010Y857I-20J0D01* G01* Y3547D02* G03* X4010Y3547I-20J0D01* G01* Y3347D02* G03* X4010Y3347I-20J0D01* G01* Y3447D02* G03* X4010Y3447I-20J0D01* G01* Y3147D02* G03* X4010Y3147I-20J0D01* G01* Y3247D02* G03* X4010Y3247I-20J0D01* G01* Y3047D02* G03* X4010Y3047I-20J0D01* G01* Y2847D02* G03* X4010Y2847I-20J0D01* G01* Y2947D02* G03* X4010Y2947I-20J0D01* G01* Y2647D02* G03* X4010Y2647I-20J0D01* G01* Y2747D02* G03* X4010Y2747I-20J0D01* G01* X1843Y2206D02* G03* X1843Y2206I-20J0D01* G01* X1955Y2140D02* G03* X1955Y2140I-20J0D01* G01* X1445Y755D02* G03* X1445Y755I-20J0D01* G01* X2785Y2270D02* G03* X2785Y2270I-20J0D01* G01* X3260D02* G03* X3260Y2270I-20J0D01* G01* X945Y4017D02* G03* X945Y4017I-20J0D01* G01* X1415Y4003D02* G03* X1415Y4003I-20J0D01* G01* X1180Y3962D02* G03* X1180Y3962I-20J0D01* G01* X1574Y3563D02* G03* X1574Y3563I-20J0D01* G01* X1030Y3507D02* G03* X1030Y3507I-20J0D01* G01* X1390Y3442D02* G03* X1390Y3442I-20J0D01* G01* X1835Y3447D02* G03* X1835Y3447I-20J0D01* G01* X2350Y3502D02* G03* X2350Y3502I-20J0D01* G01* X1940Y3167D02* G03* X1940Y3167I-20J0D01* G01* X2110D02* G03* X2110Y3167I-20J0D01* G01* X2045Y3050D02* G03* X2045Y3050I-20J0D01* G01* X2275Y3142D02* G03* X2275Y3142I-20J0D01* G01* X2610Y2332D02* G03* X2610Y2332I-20J0D01* G01* X2460Y2427D02* G03* X2460Y2427I-20J0D01* G01* X3456Y3346D02* G03* X3456Y3346I-20J0D01* G01* X3455Y3545D02* G03* X3455Y3545I-20J0D01* G01* X3562Y2559D02* G03* X3562Y2559I-20J0D01* G01* X3560Y2757D02* G03* X3560Y2757I-20J0D01* G01* Y2952D02* G03* X3560Y2952I-20J0D01* G01* X3555Y3147D02* G03* X3555Y3147I-20J0D01* G01* X3465Y2277D02* G03* X3465Y2277I-20J0D01* G01* X3740Y2252D02* G03* X3740Y2252I-20J0D01* G01* X3530Y1832D02* G03* X3530Y1832I-20J0D01* G01* X3525Y1707D02* G03* X3525Y1707I-20J0D01* G01* X3555Y1257D02* G03* X3555Y1257I-20J0D01* G01* X3604Y398D02* G03* X3604Y398I-20J0D01* G01* X3560Y692D02* G03* X3560Y692I-20J0D01* G01* Y867D02* G03* X3560Y867I-20J0D01* G01* Y1062D02* G03* X3560Y1062I-20J0D01* G01* X3190Y622D02* G03* X3190Y622I-20J0D01* G01* X3205Y1262D02* G03* X3205Y1262I-20J0D01* G01* X3145Y1487D02* G03* X3145Y1487I-20J0D01* G01* X2480Y392D02* G03* X2480Y392I-20J0D01* G01* X1400Y112D02* G03* X1400Y112I-20J0D01* G01* X420Y717D02* G03* X420Y717I-20J0D01* G01* X1040Y587D02* G03* X1040Y587I-20J0D01* G01* X670Y747D02* G03* X670Y747I-20J0D01* G01* X679Y1277D02* G03* X679Y1277I-20J0D01* G01* X865Y1117D02* G03* X865Y1117I-20J0D01* G01* X2430Y1047D02* G03* X2430Y1047I-20J0D01* G01* X1330Y2727D02* G03* X1330Y2727I-20J0D01* G01* X990Y1818D02* G03* X990Y1818I-20J0D01* G01* X1435Y1860D02* G03* X1435Y1860I-20J0D01* G01* X1154Y1625D02* G03* X1154Y1625I-20J0D01* G01* X1135Y1400D02* G03* X1135Y1400I-20J0D01* G01* X1331Y2479D02* G03* X1331Y2479I-20J0D01* G01* X1858Y2512D02* G03* X1858Y2512I-20J0D01* G01* X1837Y2377D02* G03* X1837Y2377I-20J0D01* G01* X1933Y2753D02* G03* X1933Y2753I-20J0D01* G01* X1765Y2115D02* G03* X1765Y2115I-20J0D01* G01* X1705Y1980D02* G03* X1705Y1980I-20J0D01* G01* X1116Y1528D02* G03* X1116Y1528I-20J0D01* G01* X1021Y1733D02* G03* X1021Y1733I-20J0D01* G01* X2657Y2218D02* G03* X2657Y2218I-20J0D01* G01* X1201Y275D02* G03* X1201Y275I-20J0D01* G01* X3265Y1175D02* G03* X3265Y1175I-20J0D01* G01* X2890Y1520D02* G03* X2890Y1520I-20J0D01* G01* X2665Y1150D02* G03* X2665Y1150I-20J0D01* G01* X2945Y2005D02* G03* X2945Y2005I-20J0D01* G01* X2420Y2040D02* G03* X2420Y2040I-20J0D01* G01* X2310Y1815D02* G03* X2310Y1815I-20J0D01* G01* X2008Y1860D02* G03* X2008Y1860I-20J0D01* G01* X2090Y1470D02* G03* X2090Y1470I-20J0D01* G01* X2250Y1453D02* G03* X2250Y1453I-20J0D01* G01* X2445Y1385D02* G03* X2445Y1385I-20J0D01* G01* X1470Y2130D02* G03* X1470Y2130I-20J0D01* G01* X2485Y2310D02* G03* X2485Y2310I-20J0D01* G01* X2980Y2800D02* G03* X2980Y2800I-20J0D01* G01* X2840Y3155D02* G03* X2840Y3155I-20J0D01* G01* X3210Y3100D02* G03* X3210Y3100I-20J0D01* G01* X3295Y2900D02* G03* X3295Y2900I-20J0D01* G01* Y2590D02* G03* X3295Y2590I-20J0D01* G01* X3455Y3735D02* G03* X3455Y3735I-20J0D01* G01* X3020Y975D02* G03* X3020Y975I-20J0D01* G01* X1645Y3280D02* G03* X1645Y3280I-20J0D01* G01* X3430Y1315D02* G03* X3430Y1315I-20J0D01* G01* X3485Y1235D02* G03* X3485Y1235I-20J0D01* G01* X3175Y695D02* G03* X3175Y695I-20J0D01* G01* X3473Y2110D02* G03* X3473Y2110I-20J0D01* G01* X3435Y1670D02* G03* X3435Y1670I-20J0D01* G01* X2140Y2265D02* G03* X2140Y2265I-20J0D01* G01* M02* gerbv-2.7.0/example/orcad/0000755000175000017500000000000013423533413015231 5ustar carstencarstengerbv-2.7.0/example/orcad/README.txt0000644000175000017500000000030313421555714016731 0ustar carstencarstenThis is a design from Dino Ghilardi who kindly sent this files to debug gerbv. It has examples on negative coordinates and oval apertures. ast.ps is a postscript version of rs232_cm.ast. $Id$ gerbv-2.7.0/example/orcad/Makefile.am0000644000175000017500000000207113421555714017273 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=ast.ps README.txt rs232_cm.bot rs232_cm.smt rs232_cm.top \ rs232_cm.asb rs232_cm.drd rs232_cm.ssb rs232_cm.ast rs232_cm.smb \ rs232_cm.sst thruhole.tap MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/orcad/rs232_cm.sst0000644000175000017500000001643113421555714017331 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.SST*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D24* G01X0013908Y0004342D02* X0013658D01* X0013950Y0004008D02* X0013783D01* X0013741Y0004091D01* Y0004508D01* X0013375Y0004342D02* Y0004008D01* X0013416D02* X0013125D01* X0013083Y0004091D01* Y0004342D01* X0012550Y0004008D02* X0012508Y0004091D01* Y0004425D01* X0012550Y0004508D01* X0012800D01* X0012841Y0004425D01* Y0004091D01* X0012800Y0004008D01* X0012550D01* X0012266Y0004342D02* X0012225Y0004258D01* X0012058Y0004091D01* X0012017Y0004008D01* X0012266D02* X0012225Y0004091D01* X0012058Y0004258D01* X0012017Y0004342D01* X0011650Y0004258D02* X0011775Y0004008D01* X0011441Y0004258D02* X0011691D01* X0011775Y0004342D01* Y0004425D01* X0011691Y0004508D01* X0011442D01* X0011441D02* X0011442Y0004008D01* X0012875Y0003408D02* Y0003242D01* X0012708Y0002908D01* X0012542Y0003242D01* X0012541D02* X0012542Y0003408D01* X0011966Y0002991D02* X0012008Y0002908D01* X0012258D01* X0012300Y0002991D01* Y0003158D01* X0012216Y0003242D01* X0011967D01* X0011966D02* X0011967Y0003408D01* X0011966D02* X0012300D01* X0011558Y0003325D02* Y0002991D01* X0011725Y0003158D02* X0011392D01* X0012400Y0002358D02* Y0002192D01* X0012233Y0001858D01* X0012067Y0002192D01* X0012066D02* X0012067Y0002358D01* X0011616Y0001858D02* X0011533Y0001941D01* X0011492Y0002025D01* X0011491D02* X0011492Y0002192D01* X0011491D02* X0011533Y0002275D01* X0011617Y0002358D01* X0011616D02* X0011700D01* X0011783Y0002275D01* X0011825Y0002192D01* Y0002025D01* X0011783Y0001941D01* X0011700Y0001858D01* X0011617D01* X0010403Y-0000367D02* X0010320Y-0000283D01* X0010278Y-0000200D01* Y-0000033D01* X0010320Y0000050D01* X0010403Y0000133D01* X0010486D01* X0010570Y0000050D01* X0010611Y-0000033D01* Y-0000200D01* X0010570Y-0000283D01* X0010486Y-0000367D01* X0010403D01* X0010036D02* X0009870D01* X0009953D02* Y0000133D01* X0009870Y0000050D01* X0009545Y-0000283D02* X0009503Y-0000367D01* X0009253D01* X0009212Y-0000283D01* X0009211D02* X0009212Y0000050D01* X0009211D02* X0009253Y0000133D01* X0009503D01* X0009545Y0000050D01* X0013200Y0005058D02* Y0005308D01* X0013158Y0005392D01* X0012908D01* Y0005058D01* X0012583Y0005558D02* Y0005559D01* Y0005558D01* X0012666Y0005058D02* X0012500D01* X0012583D02* Y0005392D01* X0012500D01* X0012216D02* X0012175Y0005308D01* X0012008Y0005141D01* X0011967Y0005058D01* X0012216D02* X0012175Y0005141D01* X0012008Y0005308D01* X0011967Y0005392D01* X0011558Y0005058D02* Y0005558D01* X0011725D02* X0011392D01* X0007933Y0000462D02* Y0000628D01* Y0000545D02* X0008433D01* X0008350Y0000628D01* X0007933Y0000953D02* Y0001120D01* Y0001037D02* X0008433D01* X0008350Y0001120D01* X0008016Y0001445D02* X0007933Y0001487D01* Y0001737D01* X0008016Y0001778D01* X0008350D01* X0008433Y0001737D01* Y0001487D01* X0008350Y0001445D01* X0006983Y0000378D02* Y0000712D01* X0007317Y0000378D01* X0007400D01* X0007483Y0000420D01* Y0000670D01* X0007400Y0000712D01* X0006983Y0000953D02* Y0001120D01* Y0001037D02* X0007483D01* X0007400Y0001120D01* X0007066Y0001445D02* X0006983Y0001487D01* Y0001737D01* X0007066Y0001778D01* X0007400D01* X0007483Y0001737D01* Y0001487D01* X0007400Y0001445D01* X-0000108Y0006296D02* X-0000275Y0006379D01* X-0000442D01* X-0000608Y0006296D01* X-0000358Y0005929D02* Y0005679D01* X-0000442Y0005637D01* X-0000525D01* X-0000608Y0005679D01* Y0005929D01* X-0000525Y0005971D01* X-0000442D01* X-0000108Y0005804D01* X-0000442Y0005104D02* Y0005354D01* X-0000358Y0005396D01* Y0005395D02* X-0000191Y0005396D01* Y0005395D02* X-0000108Y0005354D01* Y0005104D01* X-0000608D01* Y0004862D02* X-0000108D01* Y0004612D01* X-0000191Y0004571D01* Y0004570D02* X-0000358Y0004571D01* Y0004570D02* X-0000442Y0004612D01* Y0004862D01* X-0000108Y0004329D02* X-0000275Y0004246D01* X-0000442D01* X-0000608Y0004329D01* X-0000108Y0003075D02* Y0002742D01* Y0002741D02* X-0000442Y0003075D01* X-0000525D01* X-0000608Y0003033D01* Y0002783D01* X-0000525Y0002742D01* X-0000191Y0002166D02* X-0000108Y0002250D01* Y0002416D01* X-0000191Y0002500D01* X-0000275D01* X-0000442Y0002333D01* X-0000608Y0002500D01* Y0002167D01* X-0000108Y0001925D02* Y0001592D01* Y0001591D02* X-0000442Y0001925D01* X-0000525D01* X-0000608Y0001883D01* Y0001633D01* X-0000525Y0001592D01* Y0001350D02* X-0000608Y0001308D01* Y0001058D01* X-0000525Y0001017D01* Y0001016D02* X-0000442Y0001017D01* Y0001016D02* X-0000358Y0001058D01* Y0001308D01* X-0000275Y0001350D01* X-0000191D01* X-0000108Y0001308D01* Y0001058D01* X-0000191Y0001017D01* X-0000358Y0000650D02* X-0000108Y0000775D01* X-0000358Y0000441D02* Y0000691D01* X-0000442Y0000775D01* X-0000525D01* X-0000608Y0000691D01* Y0000442D01* Y0000441D02* X-0000108Y0000442D01* X0005891Y0006858D02* X0005850Y0006941D01* Y0007108D01* X0005892Y0007192D01* X0005891D02* X0006142D01* X0006141D02* X0006183Y0007108D01* Y0006941D01* X0006142Y0006858D01* X0006141D02* X0005892D01* X0005316Y0006691D02* X0005317Y0007192D01* X0005316D02* X0005566D01* X0005608Y0007108D01* Y0006941D01* X0005566Y0006858D01* X0005317D01* X0004908D02* Y0007108D01* X0005075Y0006858D02* Y0007108D01* X0005033Y0007192D01* X0004950D01* X0004908Y0007108D01* X0004867Y0007192D01* X0004866D02* X0004783D01* X0004742Y0007108D01* X0004741D02* X0004742Y0006858D01* X0004208D02* X0004167Y0006941D01* X0004166D02* X0004167Y0007108D01* X0004166D02* X0004208Y0007192D01* X0004458D01* X0004500Y0007108D01* Y0006941D01* X0004458Y0006858D01* X0004208D01* X0003925Y0006941D02* X0003883Y0006858D01* X0003633D01* X0003592Y0006941D01* X0003591D02* X0003592Y0007275D01* X0003591D02* X0003633Y0007358D01* X0003883D01* X0003925Y0007275D01* X0010820Y0000910D02* Y0001480D01* X0009380D01* Y0000910D01* X0010810D01* X0007490Y0003770D02* X0006920D01* Y0002330D01* X0007490D01* Y0003760D01* X0008490Y0003770D02* X0007920D01* Y0002330D01* X0008490D01* Y0003760D01* G54D30* G01X0001282Y0000785D02* Y0000674D01* Y0000730D02* X0000949D01* X0001005Y0000674D01* X0005564Y0003803D02* X0005592Y0003748D01* X0005759D01* X0005786Y0003803D01* Y0003914D01* X0005731Y0003970D01* X0005564D01* Y0004081D01* X0005786D01* X0005376D02* Y0003803D01* X0005349Y0003748D01* X0005182D01* X0005154Y0003803D01* Y0004081D01* X0001277Y0006119D02* X0001332Y0006147D01* Y0006313D01* X0001277Y0006341D01* X0001166D01* X0001110Y0006285D01* Y0006119D01* X0000999D01* Y0006341D01* X0006050Y0004475D02* X0002050D01* Y0001975D01* X0006050D01* Y0004475D01* X0002300Y0001975D02* Y0004475D01* X0009250Y0005950D02* Y0001450D01* X0010750D01* Y0005950D01* X0009250D01* M02* gerbv-2.7.0/example/orcad/rs232_cm.smb0000644000175000017500000000242013421555714017272 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.SMB*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D13* X0010000Y0005200D03* G54D14* X0001050Y0001795D03* Y0002885D03* Y0003975D03* Y0005065D03* G54D19* X0002550Y0005000D03* X0003900D03* G54D20* X0003150Y0003000D03* X0002310D03* G54D26* X0004430Y0001150D03* X0005370D03* X0002530D03* X0003470D03* G54D28* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D29* X0002400Y0003850D03* X0003100Y0004100D03* X0004500Y0006000D03* X0004550Y0003950D03* X0005150Y0002600D03* X0004200D03* X0002250Y0002300D03* X0006350Y0004350D03* X0003400Y0002350D03* M02* gerbv-2.7.0/example/orcad/thruhole.tap0000644000175000017500000000041613421555714017600 0ustar carstencarsten% T1C0.028F200S100 X002250Y002300 X002400Y003850 X003100Y004100 X003400Y002350 X004200Y002600 X004500Y006000 X004550Y003950 X005150Y002600 X006350Y004350 T2C0.034F200S100 X010000Y002200 X010000Y003200 X010000Y004200 T3C0.039F200S100 X010000Y005200 M30 gerbv-2.7.0/example/orcad/rs232_cm.ssb0000644000175000017500000000755513421555714017316 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.SSB*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D24* G01X0000522Y-0000142D02* X0000772D01* Y-0000392D02* Y0000108D01* X0000438D01* X0001013D02* Y-0000392D01* X0001097Y-0000308D01* X0001263Y0000025D01* X0001347Y0000108D01* Y-0000392D01* X0001797D02* X0001880Y-0000308D01* X0001922Y-0000225D01* Y-0000058D01* X0001880Y0000025D01* X0001797Y0000108D01* X0001713D01* X0001630Y0000025D01* X0001588Y-0000058D01* Y-0000225D01* X0001630Y-0000308D01* X0001713Y-0000392D01* X0001797D01* X0002372D02* X0002455Y-0000308D01* X0002497Y-0000225D01* Y-0000058D01* X0002455Y0000025D01* X0002372Y0000108D01* X0002288D01* X0002205Y0000025D01* X0002163Y-0000058D01* Y-0000225D01* X0002205Y-0000308D01* X0002288Y-0000392D01* X0002372D01* X0002738D02* X0002905D01* X0002822D02* Y0000108D01* X0002905Y0000025D01* X0001672Y-0000967D02* X0001630Y-0000883D01* Y-0000800D01* X0001672Y-0000717D01* X0001922D01* X0001963Y-0000800D01* Y-0000883D01* X0001922Y-0000967D01* X0001672D01* X0001630Y-0001050D01* Y-0001133D01* X0001672Y-0001217D01* X0001922D01* X0001963Y-0001133D01* Y-0001050D01* X0001922Y-0000967D01* X0002205Y-0001133D02* X0002247Y-0001217D01* X0002497D01* X0002538Y-0001133D01* Y-0000800D01* X0002497Y-0000717D01* X0002247D01* X0002205Y-0000800D01* X0003822Y-0000242D02* X0004072D01* Y-0000492D02* Y0000008D01* X0003738D01* X0004313D02* Y-0000492D01* X0004397Y-0000408D01* X0004563Y-0000075D01* X0004647Y0000008D01* Y-0000492D01* X0005097D02* X0005180Y-0000408D01* X0005222Y-0000325D01* Y-0000158D01* X0005180Y-0000075D01* X0005097Y0000008D01* X0005013D01* X0004930Y-0000075D01* X0004888Y-0000158D01* Y-0000325D01* X0004930Y-0000408D01* X0005013Y-0000492D01* X0005097D01* X0005672D02* X0005755Y-0000408D01* X0005797Y-0000325D01* Y-0000158D01* X0005755Y-0000075D01* X0005672Y0000008D01* X0005588D01* X0005505Y-0000075D01* X0005463Y-0000158D01* Y-0000325D01* X0005505Y-0000408D01* X0005588Y-0000492D01* X0005672D01* X0006038D02* X0006205D01* X0006122D02* Y0000008D01* X0006205Y-0000075D01* X0004472Y-0001167D02* X0004722D01* X0004763Y-0001083D01* Y-0001000D01* X0004722Y-0000917D01* X0004472D01* X0004430Y-0001000D01* Y-0001083D01* X0004597Y-0001417D01* X0005005Y-0001333D02* X0005047Y-0001417D01* X0005297D01* X0005338Y-0001333D01* Y-0001000D01* X0005297Y-0000917D01* X0005047D01* X0005005Y-0001000D01* X0004180Y0000860D02* Y0001430D01* X0005620D01* Y0000860D01* X0004190D01* X0002280D02* Y0001430D01* X0003720D01* Y0000860D01* X0002290D01* G54D31* G01X0002950Y0005367D02* X0002839D01* X0002894D02* Y0005034D01* X0002839Y0005089D01* X0002441Y0005367D02* Y0005034D01* X0002413Y0005367D02* X0002580D01* X0002635Y0005256D01* Y0005145D01* X0002580Y0005034D01* X0002413D01* X0003810Y0002833D02* X0003921D01* X0003866D02* Y0003166D01* X0003921Y0003110D01* X0004208Y0002999D02* X0004124Y0002833D01* X0004347Y0002999D02* X0004180D01* X0004124Y0003055D01* Y0003110D01* X0004180Y0003166D01* X0004347D01* Y0002833D01* X0001930Y0002625D02* Y0003375D01* X0003530D01* Y0002625D01* X0001930D01* X0004355Y0005650D02* Y0004350D01* X0002105D01* Y0005650D01* X0002080D01* X0004355D01* M02* gerbv-2.7.0/example/orcad/rs232_cm.top0000644000175000017500000000666113421555714017326 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.TOP*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D18* G01X0002300Y0005100D02* Y0003950D01* X0002400Y0003850D01* X0010000Y0003200D02* X0009800D01* X0009750Y0003250D01* X0010900D01* Y0001650D01* X0010570D01* Y0001200D01* X0005800Y0001350D02* Y0001400D01* X0006930Y0002530D01* X0007200D01* Y0002580D01* X0009630Y0001200D02* Y0002150D01* X0009697Y0002200D01* X0010000D01* X0008200Y0002580D02* Y0002500D01* X0009200D01* X0009500Y0002200D01* X0010000D01* X0005300Y0005100D02* Y0005900D01* X0005200Y0006000D01* X0004500D01* X0003100Y0004100D02* X0003050D01* X0002800Y0004350D01* Y0005100D01* X0001050Y0005610D02* X0001175Y0005735D01* X0001400D01* Y0006050D01* X0001575Y0006200D01* X0004300D01* X0004500Y0006000D01* X0007200Y0002580D02* X0007280Y0002500D01* X0008120D01* X0008200Y0002580D01* X0004300Y0005100D02* Y0004050D01* X0004400Y0003950D01* X0004550D01* X0010000Y0002200D02* X0009800D01* X0009750Y0002250D01* X0009697Y0002200D01* X0010000D01* X0003800Y0005100D02* Y0005700D01* X0003650Y0005850D01* X0001900D01* Y0003800D01* X0001500Y0003430D01* X0001050D01* X0004300Y0001350D02* Y0002000D01* X0004750Y0002450D01* X0005050D01* X0005150Y0002550D01* Y0002600D01* X0001050Y0002340D02* X0001200Y0002500D01* X0001600D01* X0002250Y0003150D01* X0002900D01* X0003600Y0003850D01* Y0004350D01* X0003300Y0004650D01* Y0005100D01* X0003800Y0001350D02* Y0002000D01* X0004200Y0002400D01* Y0002600D01* X0008200Y0003520D02* X0007700D01* Y0003900D01* X0007600Y0004000D01* X0006700D01* X0005900Y0003200D01* X0004200D01* X0004050Y0003050D01* X0003350D01* X0002800Y0002500D01* Y0001350D01* X0009630Y0001200D02* Y0002150D01* X0009697Y0002200D01* X0010000D01* X0002300Y0001350D02* Y0002200D01* X0002250Y0002250D01* Y0002300D01* X0007200Y0003520D02* X0006700D01* Y0003250D01* X0005500Y0002050D01* X0004850D01* X0004800Y0002000D01* Y0001350D01* Y0005100D02* Y0004600D01* X0005050Y0004350D01* X0006350D01* X0003300Y0001350D02* Y0002350D01* X0003400D01* G54D10* X0010570Y0001200D03* X0009630D03* G54D11* X0007200Y0003520D03* Y0002580D03* X0008200Y0003520D03* Y0002580D03* G54D12* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D13* Y0005200D03* G54D14* X0001050Y0001250D03* Y0002340D03* Y0003430D03* Y0004520D03* Y0005610D03* G54D15* X0002800Y0001350D03* X0003300D03* X0003800D03* X0004300D03* X0004800D03* X0005300D03* X0005800D03* Y0005100D03* X0005300D03* X0004800D03* X0004300D03* X0003800D03* X0003300D03* X0002800D03* X0002300D03* G54D16* Y0001350D03* G54D17* X0002400Y0003850D03* X0003100Y0004100D03* X0004500Y0006000D03* X0004550Y0003950D03* X0005150Y0002600D03* X0004200D03* X0002250Y0002300D03* X0006350Y0004350D03* X0003400Y0002350D03* M02* gerbv-2.7.0/example/orcad/rs232_cm.ast0000644000175000017500000000652413421555714017311 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.AST*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D24* G01X0000250Y0000300D02* X0006250D01* Y0001200D01* X0007100Y0002050D01* X0008500D01* X0009100Y0001450D01* Y0000350D01* X0009150Y0000300D01* X0010650D01* X0011200Y0000850D01* Y0005950D01* X0010650Y0006500D01* X0009100D01* Y0005000D01* X0008500Y0004400D01* X0007150D01* X0006250Y0005300D01* Y0006500D01* X0000200D01* Y0000350D01* X0000250Y0000300D01* G54D30* G01X0001282Y0000735D02* Y0000624D01* Y0000680D02* X0000949D01* X0001005Y0000624D01* X0000366Y0001722D02* Y0001888D01* X0000421Y0001916D01* X0000477D01* X0000532Y0001888D01* Y0001722D01* X0000477Y0001694D01* X0000421D01* X0000199Y0001805D01* X0001969Y0001348D02* Y0001237D01* Y0001292D02* X0001636D01* X0001692Y0001237D01* X0001803Y0000771D02* Y0000938D01* X0001747Y0000993D01* X0001692D01* X0001636Y0000938D01* Y0000771D01* X0001969D01* X0004064Y0003053D02* X0004092Y0002998D01* X0004259D01* X0004286Y0003053D01* Y0003164D01* X0004231Y0003220D01* X0004064D01* Y0003331D01* X0004286D01* X0003876D02* Y0003053D01* X0003849Y0002998D01* X0003682D01* X0003654Y0003053D01* Y0003331D01* X0008683Y0002128D02* Y0002239D01* Y0002183D02* X0009016D01* X0008960Y0002239D01* X0008849Y0002705D02* Y0002538D01* X0008905Y0002482D01* X0008960D01* X0009016Y0002538D01* Y0002705D01* X0008683D01* X0008794Y0003087D02* X0008738D01* X0008683Y0003059D01* Y0002948D01* X0008738Y0002920D01* X0009016D01* Y0002892D02* Y0003003D01* X0000366Y0005138D02* Y0004972D01* X0000310Y0004944D01* X0000254D01* X0000199Y0004972D01* Y0005138D01* X0000254Y0005166D01* X0000310D01* X0000532Y0005055D01* X0001727Y0006069D02* X0001782Y0006097D01* Y0006263D01* X0001727Y0006291D01* X0001616D01* X0001560Y0006235D01* Y0006069D01* X0001449D01* Y0006291D01* X0002300Y0001975D02* Y0004475D01* X0006050D02* X0002050D01* Y0001975D01* X0006050D01* Y0004475D01* X0009250Y0005950D02* Y0001450D01* X0010750D01* Y0005950D01* X0009250D01* G54D33* G01X0010570Y0000920D02* X0009610D01* Y0001480D01* X0010580D01* X0010570Y0000920D01* X0007480Y0003520D02* Y0002560D01* X0006920D01* Y0003530D01* X0007480Y0003520D01* X0008480D02* Y0002560D01* X0007920D01* Y0003530D01* X0008480Y0003520D01* G54D12* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D13* Y0005200D03* G54D15* X0002800Y0001350D03* X0003300D03* X0003800D03* X0004300D03* X0004800D03* X0005300D03* X0005800D03* Y0005100D03* X0005300D03* X0004800D03* X0004300D03* X0003800D03* X0003300D03* X0002800D03* X0002300D03* G54D16* Y0001350D03* G54D32* X0001050Y0001250D03* Y0002340D03* Y0003430D03* Y0004520D03* Y0005610D03* M02* gerbv-2.7.0/example/orcad/ast.ps0000644000175000017500000001323013421555714016371 0ustar carstencarsten%!PS-Adobe-3.0 %%Title: RS232~CM %%Creator: Windows NT 4.0 %%CreationDate: 0:17 4/21/2002 %%Pages: (atend) %%BoundingBox: 14 13 581 829 %%LanguageLevel: 2 %%DocumentNeededFonts: (atend) %%DocumentSuppliedFonts: (atend) %%EndComments %%BeginProlog %%BeginResource: procset NTPSOct95 /NTPSOct95 100 dict dup begin/bd{bind def}bind def/ld{load def}bd/ed{exch def} bd/a{currentpoint}bd/c/curveto ld/d/dup ld/e/eofill ld/f/fill ld/tr/translate ld/gr/grestore ld/gs/gsave ld/j/setlinejoin ld/L/lineto ld/M/moveto ld/n /newpath ld/cp/closepath ld/rm/rmoveto ld/sl/setlinewidth ld/sd/setdash ld/g /setgray ld/r/setrgbcolor ld/s/stroke ld/t/show ld/aw/awidthshow ld/im /imagemask ld/MS{moveto show}bd/SF{findfont exch scalefont setfont}bd/SM{cmtx setmatrix}bd/MF{findfont exch makefont setfont}bd/CM{/cmtx matrix currentmatrix def}bd/B{M exch dup 0 rlt exch 0 exch rlt neg 0 rlt}bd/CB{B cp eoclip}bd/EA{1 index 0/G0 put 4 string 1 1 4 -1 roll{3 copy neg exch cvs dup 0 71 put cvn 3 -1 roll exch put}for pop}bd/rlt/rlineto ld/L2?/languagelevel where{pop languagelevel 2 ge}{false}ifelse def end def %%EndResource %%EndProlog %%BeginSetup [{0 /languagelevel where{pop languagelevel 2 ge}{false}ifelse {1 dict dup/JobTimeout 4 -1 roll put setuserparams} {statusdict/setjobtimeout get exec}ifelse }stopped cleartomark [{240 /languagelevel where{pop languagelevel 2 ge}{false}ifelse {1 dict dup/WaitTimeout 4 -1 roll put setuserparams} {statusdict/waittimeout 3 -1 roll put}ifelse }stopped cleartomark /#copies 1 def [{ %%BeginFeature: *PageSize A4 1 dict dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put setpagedevice 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice %%EndFeature } stopped cleartomark [{ %%BeginFeature: *Duplex None 1 dict dup /Duplex false put setpagedevice 1 dict dup /Tumble false put setpagedevice %%EndFeature } stopped cleartomark [{ %%BeginFeature: *OutputBin Upper 1 dict dup /OutputFaceUp false put setpagedevice %%EndFeature } stopped cleartomark [{ %%BeginFeature: *Smoothing PrinterDefault %%EndFeature } stopped cleartomark %%EndSetup NTPSOct95 begin %%Page: 1 1 NTPSOct95 /PageSV save put 14.441 829.738 translate 72 600 div dup neg scale 0 0 transform .25 add round .25 sub exch .25 add round .25 sub exch itransform translate 1 j 1 setlinecap 47 sl 0.605 g n 2622 3478 M 2647 3478 L s n 2622 3418 M 2647 3418 L s n 2622 3358 M 2647 3358 L s n 69 42 2600 3276 B f 1 sl n 71 44 2599 3275 B cp s n 34 35 2080 3255 B f n 36 37 2079 3254 B cp s n 34 34 2080 3321 B f n 36 36 2079 3320 B cp s n 34 34 2080 3386 B f n 36 36 2079 3385 B cp s n 34 34 2080 3452 B f n 36 36 2079 3451 B cp s n 34 34 2080 3517 B f n 36 36 2079 3516 B cp s 14 sl n 2173 3322 M 2173 3285 L s n 2203 3322 M 2203 3285 L s n 2233 3322 M 2233 3285 L s n 2263 3322 M 2263 3285 L s n 2293 3322 M 2293 3285 L s n 2323 3322 M 2323 3285 L s n 2353 3322 M 2353 3285 L s n 2383 3322 M 2383 3285 L s n 2383 3547 M 2383 3510 L s n 2353 3547 M 2353 3510 L s n 2323 3547 M 2323 3510 L s n 2293 3547 M 2293 3510 L s n 2263 3547 M 2263 3510 L s n 2233 3547 M 2233 3510 L s n 2203 3547 M 2203 3510 L s n 11 48 2167 3504 B f 1 sl n 13 50 2166 3503 B cp s n 2544 3398 M 2510 3398 L s n 2510 3398 M 2510 3456 L s n 2510 3456 M 2544 3456 L s n 2544 3456 M 2544 3398 L s 4 sl n 2590 3253 M 2680 3253 L s n 2680 3253 M 2680 3523 L s n 2680 3523 M 2590 3523 L s n 2590 3523 M 2590 3253 L s n 2398 3341 M 2398 3491 L s n 2398 3491 M 2398 3491 L s n 2398 3491 M 2158 3491 L s n 2158 3491 M 2158 3341 L s n 2158 3341 M 2398 3341 L s 1 sl n 2484 3398 M 2450 3398 L s n 2450 3398 M 2450 3456 L s n 2450 3456 M 2484 3456 L s n 2484 3456 M 2484 3398 L s n 2669 3554 M 2670 3521 L s n 2670 3521 M 2611 3521 L s n 2611 3521 M 2611 3554 L s n 2611 3554 M 2669 3554 L s 4 sl n 2173 3341 M 2173 3491 L s n 2122 3232 M 2122 3245 L s n 2122 3245 M 2128 3245 L s n 2128 3245 M 2128 3235 L s n 2128 3235 M 2131 3232 L s n 2131 3232 M 2138 3232 L s n 2138 3232 M 2142 3234 L s n 2142 3234 M 2142 3244 L s n 2142 3244 M 2138 3245 L s n 2067 3306 M 2053 3299 L s n 2053 3299 M 2050 3299 L s n 2050 3299 M 2047 3301 L s n 2047 3301 M 2047 3311 L s n 2047 3311 M 2050 3313 L s n 2050 3313 M 2053 3313 L s n 2053 3313 M 2056 3311 L s n 2056 3311 M 2056 3301 L s n 2575 3430 M 2575 3436 L s n 2575 3434 M 2559 3434 L s n 2559 3434 M 2556 3433 L s n 2556 3433 M 2556 3426 L s n 2556 3426 M 2559 3424 L s n 2559 3424 M 2562 3424 L s n 2556 3448 M 2575 3448 L s n 2575 3448 M 2575 3457 L s n 2575 3457 M 2572 3461 L s n 2572 3461 M 2569 3461 L s n 2569 3461 M 2566 3457 L s n 2566 3457 M 2566 3448 L s n 2572 3475 M 2575 3479 L s n 2575 3479 M 2556 3479 L s n 2556 3475 M 2556 3482 L s n 2254 3410 M 2254 3427 L s n 2254 3427 M 2256 3430 L s n 2256 3430 M 2266 3430 L s n 2266 3430 M 2267 3427 L s n 2267 3427 M 2267 3410 L s n 2292 3410 M 2278 3410 L s n 2278 3410 M 2278 3416 L s n 2278 3416 M 2289 3416 L s n 2289 3416 M 2292 3420 L s n 2292 3420 M 2292 3427 L s n 2292 3427 M 2290 3430 L s n 2290 3430 M 2280 3430 L s n 2280 3430 M 2278 3427 L s n 2153 3563 M 2133 3563 L s n 2133 3563 M 2133 3553 L s n 2133 3553 M 2136 3550 L s n 2136 3550 M 2139 3550 L s n 2139 3550 M 2143 3553 L s n 2143 3553 M 2143 3563 L s n 2136 3535 M 2133 3532 L s n 2133 3532 M 2153 3532 L s n 2153 3535 M 2153 3529 L s n 2047 3501 M 2060 3508 L s n 2060 3508 M 2063 3508 L s n 2063 3508 M 2067 3506 L s n 2067 3506 M 2067 3496 L s n 2067 3496 M 2063 3494 L s n 2063 3494 M 2060 3494 L s n 2060 3494 M 2056 3496 L s n 2056 3496 M 2056 3506 L s n 2095 3572 M 2092 3569 L s n 2092 3569 M 2112 3569 L s n 2112 3572 M 2112 3565 L s showpage PageSV restore %%Trailer %%DocumentNeededFonts: %%DocumentSuppliedFonts: end %%Pages: 1 %%EOF %-12345X@PJL EOJ %-12345Xgerbv-2.7.0/example/orcad/Makefile.in0000644000175000017500000003626013423533413017305 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/orcad ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = ast.ps README.txt rs232_cm.bot rs232_cm.smt rs232_cm.top \ rs232_cm.asb rs232_cm.drd rs232_cm.ssb rs232_cm.ast rs232_cm.smb \ rs232_cm.sst thruhole.tap MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/orcad/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/orcad/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/orcad/rs232_cm.asb0000644000175000017500000000427213421555714017265 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.ASB*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D24* G01X0000250Y0000300D02* X0006250D01* Y0001200D01* X0007100Y0002050D01* X0008500D01* X0009100Y0001450D01* Y0000350D01* X0009150Y0000300D01* X0010650D01* X0011200Y0000850D01* Y0005950D01* X0010650Y0006500D01* X0009100D01* Y0005000D01* X0008500Y0004400D01* X0007150D01* X0006250Y0005300D01* Y0006500D01* X0000200D01* Y0000350D01* X0000250Y0000300D01* G54D31* G01X0005150Y0005067D02* X0005039D01* X0005094D02* Y0004734D01* X0005039Y0004789D01* X0004641Y0005067D02* Y0004734D01* X0004613Y0005067D02* X0004780D01* X0004835Y0004956D01* Y0004845D01* X0004780Y0004734D01* X0004613D01* X0003860Y0002833D02* X0003971D01* X0003916D02* Y0003166D01* X0003971Y0003110D01* X0004258Y0002999D02* X0004174Y0002833D01* X0004397Y0002999D02* X0004230D01* X0004174Y0003055D01* Y0003110D01* X0004230Y0003166D01* X0004397D01* Y0002833D01* X0004355Y0005650D02* Y0004350D01* X0002105D01* Y0005650D01* X0002080D01* X0004355D01* X0001930Y0002625D02* Y0003375D01* X0003530D01* Y0002625D01* X0001930D01* G54D33* G01X0004430Y0000870D02* X0005390D01* Y0001430D01* X0004420D01* X0004430Y0000870D01* X0002530D02* X0003490D01* Y0001430D01* X0002520D01* X0002530Y0000870D01* G54D12* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D13* Y0005200D03* G54D14* X0001050Y0001795D03* Y0002885D03* Y0003975D03* Y0005065D03* G54D19* X0002550Y0005000D03* X0003900D03* G54D20* X0003150Y0003000D03* X0002310D03* M02* gerbv-2.7.0/example/orcad/rs232_cm.smt0000644000175000017500000000276313421555714017326 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.SMT*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D13* X0010000Y0005200D03* G54D14* X0001050Y0001250D03* Y0002340D03* Y0003430D03* Y0004520D03* Y0005610D03* G54D15* X0002800Y0001350D03* X0003300D03* X0003800D03* X0004300D03* X0004800D03* X0005300D03* X0005800D03* Y0005100D03* X0005300D03* X0004800D03* X0004300D03* X0003800D03* X0003300D03* X0002800D03* X0002300D03* G54D16* Y0001350D03* G54D26* X0010570Y0001200D03* X0009630D03* G54D27* X0007200Y0003520D03* Y0002580D03* X0008200Y0003520D03* Y0002580D03* G54D28* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D29* X0002400Y0003850D03* X0003100Y0004100D03* X0004500Y0006000D03* X0004550Y0003950D03* X0005150Y0002600D03* X0004200D03* X0002250Y0002300D03* X0006350Y0004350D03* X0003400Y0002350D03* M02* gerbv-2.7.0/example/orcad/rs232_cm.drd0000644000175000017500000002653713421555714017301 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.DRD*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D24* G01X0089541Y-0028167D02* X0089708Y-0028333D01* X0090041D01* X0090208Y-0028167D01* Y-0028000D01* X0089875Y-0027667D01* X0090208Y-0027333D01* X0089542D01* X0089258Y-0028333D02* X0088925D01* X0089092D02* Y-0027333D01* X0088925Y-0027500D01* X0077812Y-0028333D02* X0077229D01* Y-0027333D01* X0076946Y-0028000D02* X0076279D01* X0076946Y-0028333D02* Y-0027833D01* X0076696Y-0027333D01* X0076529D01* X0076279Y-0027833D01* Y-0028333D01* X0075662D02* Y-0027333D01* X0075996D02* X0075329D01* X0074462Y-0028333D02* X0074379Y-0028167D01* Y-0027500D01* X0074462Y-0027333D01* X0074962D01* X0075046Y-0027500D01* Y-0028167D01* X0074962Y-0028333D01* X0074462D01* X0073762D02* Y-0027333D01* X0074096D02* X0073429D01* X0090208Y-0026472D02* X0089986D01* X0090097D02* Y-0025806D01* X0089986Y-0025917D01* X0076369Y-0026472D02* Y-0026139D01* X0076592Y-0026472D02* Y-0026139D01* X0076536Y-0026028D01* X0076425D01* X0076369Y-0026139D01* X0076314Y-0026028D01* X0076203D01* X0076147Y-0026139D01* Y-0026472D01* X0075669D02* Y-0026139D01* X0075892Y-0026472D02* Y-0026139D01* X0075836Y-0026028D01* X0075725D01* X0075669Y-0026139D01* X0075614Y-0026028D01* X0075503D01* X0075447Y-0026139D01* Y-0026472D01* X0073964D02* X0073853Y-0026361D01* X0073797Y-0026250D01* Y-0026028D01* X0073853Y-0025917D01* X0073964Y-0025806D01* X0074075D01* X0074186Y-0025917D01* X0074242Y-0026028D01* Y-0026250D01* X0074186Y-0026361D01* X0074075Y-0026472D01* X0073964D01* X0073264D02* X0073153Y-0026361D01* X0073097Y-0026250D01* Y-0026028D01* X0073153Y-0025917D01* X0073264Y-0025806D01* X0073375D01* X0073486Y-0025917D01* X0073542Y-0026028D01* Y-0026250D01* X0073486Y-0026361D01* X0073375Y-0026472D01* X0073264D01* X0072564D02* X0072453Y-0026361D01* X0072397Y-0026250D01* Y-0026028D01* X0072453Y-0025917D01* X0072564Y-0025806D01* X0072675D01* X0072786Y-0025917D01* X0072842Y-0026028D01* Y-0026250D01* X0072786Y-0026361D01* X0072675Y-0026472D01* X0072564D01* X0072030D02* X0072142D01* Y-0026361D01* X0072031D01* X0072030D02* X0072031Y-0026472D01* X0071664D02* X0071442D01* X0071553D02* Y-0025806D01* X0071442Y-0025917D01* X0089764Y-0024861D02* X0089875Y-0024972D01* X0090097D01* X0090208Y-0024861D01* Y-0024750D01* X0089986Y-0024528D01* X0090208Y-0024306D01* X0089764D01* X0076369Y-0024972D02* Y-0024639D01* X0076592Y-0024972D02* Y-0024639D01* X0076536Y-0024528D01* X0076425D01* X0076369Y-0024639D01* X0076314Y-0024528D01* X0076203D01* X0076147Y-0024639D01* Y-0024972D01* X0075669D02* Y-0024639D01* X0075892Y-0024972D02* Y-0024639D01* X0075836Y-0024528D01* X0075725D01* X0075669Y-0024639D01* X0075614Y-0024528D01* X0075503D01* X0075447Y-0024639D01* Y-0024972D01* X0074242Y-0024750D02* X0073797D01* X0074019Y-0024306D01* X0074130D01* Y-0024972D01* X0073153Y-0024639D02* X0073486D01* X0073542Y-0024750D01* Y-0024861D01* X0073486Y-0024972D01* X0073153D01* X0073097Y-0024861D01* Y-0024750D01* X0073319Y-0024306D01* X0072786Y-0024639D02* X0072842Y-0024528D01* Y-0024417D01* X0072786Y-0024306D01* X0072453D01* X0072397Y-0024417D01* Y-0024528D01* X0072453Y-0024639D01* X0072786D01* X0072842Y-0024750D01* Y-0024861D01* X0072786Y-0024972D01* X0072453D01* X0072397Y-0024861D01* Y-0024750D01* X0072453Y-0024639D01* X0072030Y-0024972D02* X0072142D01* Y-0024861D01* X0072031D01* X0072030D02* X0072031Y-0024972D01* X0071386D02* X0071275Y-0024861D01* X0071219Y-0024750D01* Y-0024528D01* X0071275Y-0024417D01* X0071386Y-0024306D01* X0071497D01* X0071608Y-0024417D01* X0071664Y-0024528D01* Y-0024750D01* X0071608Y-0024861D01* X0071497Y-0024972D01* X0071386D01* X0090153Y-0023139D02* X0089819D01* X0089764Y-0023028D01* Y-0022917D01* X0089819Y-0022806D01* X0090153D01* X0090208Y-0022917D01* Y-0023028D01* X0089986Y-0023472D01* X0076369D02* Y-0023139D01* X0076592Y-0023472D02* Y-0023139D01* X0076536Y-0023028D01* X0076425D01* X0076369Y-0023139D01* X0076314Y-0023028D01* X0076203D01* X0076147Y-0023139D01* Y-0023472D01* X0075669D02* Y-0023139D01* X0075892Y-0023472D02* Y-0023139D01* X0075836Y-0023028D01* X0075725D01* X0075669Y-0023139D01* X0075614Y-0023028D01* X0075503D01* X0075447Y-0023139D01* Y-0023472D01* X0074242D02* X0074019D01* X0074130D02* Y-0022806D01* X0074019Y-0022917D01* X0073653Y-0023472D02* X0073431D01* X0073542D02* Y-0022806D01* X0073431Y-0022917D01* X0072730Y-0023472D02* X0073064Y-0022806D01* X0072619D01* X0072253Y-0023472D02* X0072364D01* Y-0023361D01* X0072253D01* Y-0023472D01* X0071608D02* X0071497Y-0023361D01* X0071442Y-0023250D01* Y-0023028D01* X0071497Y-0022917D01* X0071608Y-0022806D01* X0071720D01* X0071719D02* X0071831Y-0022917D01* X0071886Y-0023028D01* Y-0023250D01* X0071831Y-0023361D01* X0071720Y-0023472D01* X0071719D02* X0071608D01* X0098612Y-0021333D02* X0098112D01* X0098779Y-0021833D02* X0098112D01* Y-0020833D01* X0098779D01* X0097496Y-0021833D02* Y-0020833D01* X0097829D02* X0097162D01* X0096295Y-0021833D02* X0096212Y-0021667D01* Y-0021000D01* X0096296Y-0020833D01* X0096295D02* X0096796D01* X0096795D02* X0096879Y-0021000D01* Y-0021667D01* X0096796Y-0021833D01* X0096795D02* X0096296D01* X0095929Y-0020833D02* Y-0021833D01* X0095762Y-0021667D01* X0095429Y-0021000D01* X0095262Y-0020833D01* Y-0021833D01* X0089425D02* Y-0021333D01* X0089758Y-0020833D02* X0089508Y-0021333D01* X0089342D01* X0089341D02* X0089092Y-0020833D01* X0088475Y-0021833D02* Y-0020833D01* X0088808D02* X0088142D01* X0087525Y-0021500D02* X0087858Y-0021833D01* X0087191Y-0021667D02* X0087275Y-0021833D01* X0087608D01* X0087691Y-0021667D01* X0087858Y-0021500D01* Y-0021000D01* X0087775Y-0020833D01* X0087275D01* X0087192Y-0021000D01* X0087191D02* X0087192Y-0021667D01* X0082908Y-0021833D02* X0082325D01* Y-0020833D01* X0081458Y-0021833D02* X0081375Y-0021667D01* Y-0021000D01* X0081458Y-0020833D01* X0081958D01* X0082042Y-0021000D01* Y-0021667D01* X0081958Y-0021833D01* X0081458D01* X0080758D02* Y-0020833D01* X0081092D02* X0080425D01* X0075087Y-0021833D02* Y-0020833D01* X0074920Y-0021000D01* X0074754Y-0021333D01* X0074587Y-0021000D01* X0074421Y-0020833D01* X0074420D02* X0074421Y-0021833D01* X0074137Y-0021500D02* X0073471D01* X0074137Y-0021833D02* Y-0021333D01* X0073887Y-0020833D01* X0073721D01* X0073720D02* X0073471Y-0021333D01* X0073470D02* X0073471Y-0021833D01* X0073187D02* X0072854D01* X0073021D02* Y-0020833D01* X0073187D02* X0072854D01* X0071821Y-0021833D02* Y-0020833D01* X0071737Y-0021833D02* X0072237D01* X0072404Y-0021500D01* Y-0021167D01* X0072237Y-0020833D01* X0071737D01* X0068650Y-0021833D02* Y-0020833D01* X0068483Y-0021000D01* X0068317Y-0021333D01* X0068150Y-0021000D01* X0067983Y-0020833D01* Y-0021833D01* X0067367D02* Y-0021333D01* X0067700Y-0020833D02* X0067450Y-0021333D01* X0067283D01* X0067033Y-0020833D01* X0066750Y-0021000D02* X0066667Y-0020833D01* X0066666D02* X0066167D01* X0066166D02* X0066083Y-0021000D01* Y-0021167D01* X0066167Y-0021333D01* X0066166D02* X0066667D01* X0066666D02* X0066750Y-0021500D01* Y-0021667D01* X0066667Y-0021833D01* X0066666D02* X0066167D01* X0066166D02* X0066083Y-0021667D01* X0088937Y-0019833D02* Y-0018833D01* X0089270D02* X0088604D01* X0088070Y-0019333D02* X0088320Y-0019833D01* X0087654Y-0019333D02* X0088154D01* X0088320Y-0019167D01* Y-0019000D01* X0088154Y-0018833D01* X0087654D01* Y-0019833D01* X0087370Y-0019500D02* X0086704D01* X0087370Y-0019833D02* Y-0019333D01* X0087120Y-0018833D01* X0086954D01* X0086704Y-0019333D01* Y-0019833D01* X0086420Y-0019333D02* X0085754D01* X0086420Y-0019833D02* Y-0018833D01* X0085754Y-0019833D02* Y-0018833D01* X0085470Y-0019667D02* X0085387Y-0019833D01* X0084887D01* X0084804Y-0019667D01* Y-0019000D01* X0084887Y-0018833D01* X0085387D01* X0085470Y-0019000D01* X0083195Y-0019833D02* X0082612D01* Y-0018833D01* X0082329Y-0019833D02* X0081746D01* Y-0018833D01* X0081462Y-0019833D02* X0081129D01* X0081296D02* Y-0018833D01* X0081462D02* X0081129D01* X0080429Y-0019333D02* X0080679Y-0019833D01* X0080012Y-0019333D02* X0080512D01* X0080679Y-0019167D01* Y-0019000D01* X0080512Y-0018833D01* X0080013D01* X0080012D02* X0080013Y-0019833D01* X0079146D02* Y-0018833D01* X0079062Y-0019833D02* X0079562D01* X0079729Y-0019500D01* Y-0019167D01* X0079562Y-0018833D01* X0079063D01* X0002650Y0003850D02* X0002150D01* X0002400Y0004100D02* Y0003600D01* X0004750Y0006000D02* X0004250D01* X0004500Y0006250D02* Y0005750D01* X0003350Y0004100D02* X0002850D01* X0003100Y0004350D02* Y0003850D01* X0004750Y0006000D02* X0004250D01* X0004500Y0006250D02* Y0005750D01* X0004800Y0003950D02* X0004300D01* X0004550Y0004200D02* Y0003700D01* X0005400Y0002600D02* X0004900D01* X0005150Y0002850D02* Y0002350D01* X0004450Y0002600D02* X0003950D01* X0004200Y0002850D02* Y0002350D01* X0002500Y0002300D02* X0002000D01* X0002250Y0002550D02* Y0002050D01* X0006600Y0004350D02* X0006100D01* X0006350Y0004600D02* Y0004100D01* X0003650Y0002350D02* X0003150D01* X0003400Y0002600D02* Y0002100D01* X0067575Y-0026250D02* X0067075D01* X0067325Y-0026000D02* Y-0026500D01* X0067575Y-0024500D02* X0067075Y-0025000D01* X0067575D02* X0067075Y-0024500D01* X0067575Y-0023250D02* X0067075D01* X0067325Y-0023000D02* Y-0023500D01* X0102800Y-0029050D02* X0065450D01* X0102750Y-0029000D02* X0065500D01* X0102750Y-0027000D02* X0065500D01* X0102750Y-0025500D02* X0065500D01* X0102750Y-0024000D02* X0065500D01* X0102750Y-0022500D02* X0065500D01* X0102750Y-0022450D02* X0065500D01* X0102750Y-0020500D02* X0065500D01* X0102750Y-0020450D02* X0065500D01* X0102750Y-0018500D02* X0065500D01* X0102800Y-0018450D02* X0065450D01* X0102800Y-0029000D02* Y-0018500D01* X0102750Y-0029000D02* Y-0018500D01* X0091208Y-0029000D02* Y-0020500D01* X0085658Y-0029000D02* Y-0020500D01* X0077592Y-0027000D02* Y-0020500D01* X0069200Y-0027000D02* Y-0020500D01* X0069150Y-0027000D02* Y-0020500D01* X0065450Y-0029000D02* Y-0018500D01* X0065500Y-0029000D02* Y-0018500D01* X0000250Y0000300D02* X0006250D01* Y0001200D01* X0007100Y0002050D01* X0008500D01* X0009100Y0001450D01* Y0000350D01* X0009150Y0000300D01* X0010650D01* X0011200Y0000850D01* Y0005950D01* X0010650Y0006500D01* X0009100D01* Y0005000D01* X0008500Y0004400D01* X0007150D01* X0006250Y0005300D01* Y0006500D01* X0000200D01* Y0000350D01* X0000250Y0000300D01* X0010250Y0005200D02* X0009750D01* X0010000Y0005450D02* Y0004950D01* X0010250Y0004450D02* X0009750Y0003950D01* X0010250D02* X0009750Y0004450D01* X0010250Y0003450D02* X0009750Y0002950D01* X0010250D02* X0009750Y0003450D01* X0010250Y0002450D02* X0009750Y0001950D01* X0010250D02* X0009750Y0002450D01* M02* gerbv-2.7.0/example/orcad/rs232_cm.bot0000644000175000017500000000466213421555714017307 0ustar carstencarsten* G04 Mass Parameters *** * G04 Image *** * %IN\\NCC1701LEONARDO\DINO\PANNE~DQ\RS232~CM.BOT*% %ICAS*% %MOIN*% %IPPOS*% %ASAXBY*% G74*%FSLAN2X34Y34*% * G04 Aperture Definitions *** * %ADD10R,0.0480X0.0560*% %ADD11R,0.0560X0.0480*% %ADD12O,0.1213X0.0787*% %ADD13R,0.1213X0.0748*% %ADD14R,0.1230X0.0630*% %ADD15O,0.0240X0.0860*% %ADD16R,0.0240X0.0860*% %ADD17C,0.0500*% %ADD18C,0.0197*% %ADD19R,0.0640X0.1000*% %ADD20R,0.0500X0.0500*% %ADD21O,0.1338X0.0945*% %ADD22R,0.1299X0.0900*% %ADD23R,0.1430X0.0830*% %ADD24C,0.0100*% %ADD25C,0.0750*% %ADD26R,0.0530X0.0610*% %ADD27R,0.0610X0.0530*% %ADD28O,0.1291X0.0866*% %ADD29C,0.0550*% %ADD30C,0.0080*% %ADD31C,0.0060*% %ADD32R,0.0630X0.0630*% %ADD33C,0.0020*% * G04 Plot Data *** * G54D18* G01X0002400Y0003850D02* Y0003750D01* X0003150Y0003000D01* Y0003100D01* X0005500D01* X0005750Y0002850D01* X0008250D01* X0009700Y0001400D01* X0010450D01* X0010900Y0001850D01* Y0003250D01* X0009750D01* X0009800Y0003200D01* X0010000D01* X0004500Y0006000D02* Y0005000D01* X0003900D01* Y0004200D01* X0003800Y0004100D01* X0003100D01* X0004500Y0006000D02* Y0005000D01* X0003900D01* Y0003700D01* X0004150Y0003450D01* X0005700D01* X0005900Y0003250D01* X0008800D01* X0009750Y0002300D01* Y0002250D01* X0009800Y0002200D01* X0010000D01* X0004550Y0003950D02* X0005900D01* X0006250Y0003600D01* X0008900D01* X0009500Y0004200D01* X0010000D01* X0005150Y0002600D02* Y0001750D01* X0005250Y0001650D01* X0005370D01* Y0001150D01* X0002310Y0003000D02* Y0003200D01* X0001900D01* Y0005000D01* X0002550D01* X0004200Y0002600D02* X0004300D01* X0004400Y0002500D01* Y0001650D01* X0004430D01* Y0001150D01* X0002250Y0002300D02* Y0001400D01* X0002530Y0001150D01* X0006350Y0004350D02* X0006750Y0003950D01* X0008550D01* X0009350Y0004750D01* Y0004900D01* X0009450Y0005000D01* Y0005200D01* X0010000D01* X0003400Y0002350D02* Y0001650D01* X0003470D01* Y0001150D01* G54D10* X0004430D03* X0005370D03* X0002530D03* X0003470D03* G54D12* X0010000Y0004200D03* Y0003200D03* Y0002200D03* G54D13* Y0005200D03* G54D14* X0001050Y0001795D03* Y0002885D03* Y0003975D03* Y0005065D03* G54D17* X0002400Y0003850D03* X0003100Y0004100D03* X0004500Y0006000D03* X0004550Y0003950D03* X0005150Y0002600D03* X0004200D03* X0002250Y0002300D03* X0006350Y0004350D03* X0003400Y0002350D03* G54D19* X0002550Y0005000D03* X0003900D03* G54D20* X0003150Y0003000D03* X0002310D03* M02* gerbv-2.7.0/example/thermal/0000755000175000017500000000000013423533413015575 5ustar carstencarstengerbv-2.7.0/example/thermal/README.txt0000644000175000017500000000011613421555714017277 0ustar carstencarstenA file used to test aperture macro number 7. Sent to spe by Drew Moore. $Id$ gerbv-2.7.0/example/thermal/dsp.GP10000644000175000017500000004571013421555714016711 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% G70* G01* G75* %ADD10R,0.060X0.060*% %ADD11O,0.071X0.014*% %ADD12R,0.071X0.063*% %ADD13O,0.014X0.071*% %ADD14O,0.012X0.063*% %ADD15R,0.018X0.053*% %ADD16O,0.063X0.012*% %ADD17R,0.024X0.079*% %ADD18R,0.063X0.091*% %ADD19R,0.022X0.053*% %ADD20R,0.053X0.018*% %ADD21R,0.018X0.053*% %ADD22R,0.053X0.018*% %ADD23R,0.071X0.063*% %ADD24R,0.091X0.063*% %ADD25R,0.059X0.051*% %ADD26R,0.059X0.051*% %ADD27R,0.106X0.063*% %ADD28R,0.091X0.063*% %ADD29R,0.079X0.024*% %ADD30R,0.079X0.024*% %ADD31R,0.100X0.070*% %ADD32R,0.090X0.060*% %ADD33R,0.100X0.100*% %ADD34R,0.071X0.014*% %ADD35R,0.070X0.060*% %ADD36R,0.070X0.080*% %ADD37R,0.120X0.090*% %ADD38R,0.090X0.120*% %ADD39R,0.080X0.025*% %ADD40O,0.080X0.025*% %ADD41R,0.040X0.050*% %ADD42R,0.040X0.040*% %ADD43R,0.063X0.012*% %ADD44R,0.063X0.071*% %ADD45R,0.050X0.060*% %ADD46C,0.008*% %ADD47C,0.030*% %ADD48C,0.020*% %ADD49C,0.012*% %ADD50C,0.062*% %ADD51R,0.062X0.062*% %ADD52C,0.030*% %ADD53C,0.050*% %ADD54R,0.050X0.050*% %ADD55C,0.036*% %ADD56C,0.055*% %ADD57C,0.150*% %ADD58R,0.055X0.055*% %ADD59C,0.065*% %ADD60C,0.075*% %ADD61C,0.015*% %ADD62R,0.051X0.059*% %ADD63R,0.051X0.059*% %ADD64R,0.060X0.050*% %ADD65C,0.010*% %ADD66C,0.008*% %ADD67C,0.010*% %ADD68R,0.016X0.020*% %ADD69C,0.006*% %ADD70R,0.020X0.016*% %ADD71R,0.064X0.064*% %ADD72O,0.075X0.018*% %ADD73R,0.075X0.067*% %ADD74O,0.018X0.075*% %ADD75O,0.016X0.067*% %ADD76R,0.022X0.057*% %ADD77O,0.067X0.016*% %ADD78R,0.028X0.083*% %ADD79R,0.067X0.095*% %ADD80R,0.026X0.057*% %ADD81R,0.057X0.022*% %ADD82R,0.022X0.057*% %ADD83R,0.057X0.022*% %ADD84R,0.075X0.067*% %ADD85R,0.095X0.067*% %ADD86R,0.063X0.055*% %ADD87R,0.063X0.055*% %ADD88R,0.110X0.067*% %ADD89R,0.095X0.067*% %ADD90R,0.083X0.028*% %ADD91R,0.083X0.028*% %ADD92R,0.104X0.074*% %ADD93R,0.094X0.064*% %ADD94R,0.104X0.104*% %ADD95R,0.075X0.018*% %ADD96R,0.074X0.064*% %ADD97R,0.074X0.084*% %ADD98R,0.124X0.094*% %ADD99R,0.094X0.124*% %ADD100R,0.084X0.029*% %ADD101O,0.084X0.029*% %ADD102R,0.044X0.054*% %ADD103R,0.044X0.044*% %ADD104R,0.067X0.016*% %ADD105R,0.067X0.075*% %ADD106R,0.054X0.064*% %ADD107C,0.066*% %ADD108R,0.066X0.066*% %ADD109C,0.034*% %ADD110C,0.054*% %ADD111R,0.054X0.054*% %ADD112C,0.040*% %ADD113C,0.059*% %ADD114C,0.154*% %ADD115R,0.059X0.059*% %ADD116C,0.069*% %ADD117C,0.079*% %ADD118R,0.055X0.063*% %ADD119R,0.055X0.063*% %ADD120R,0.064X0.054*% %AMTHD121* 7,0,0,0.079,0.059,0.015,45* % %ADD121THD121*% %ADD122C,0.045*% %ADD123C,0.058*% %AMTHD124* 7,0,0,0.068,0.048,0.015,45* % %ADD124THD124*% %AMTHD125* 7,0,0,0.060,0.040,0.015,45* % %ADD125THD125*% %AMTHD126* 7,0,0,0.055,0.035,0.015,45* % %ADD126THD126*% %ADD127C,0.140*% %ADD128C,0.155*% %AMTHD129* 7,0,0,0.075,0.055,0.015,45* % %ADD129THD129*% %ADD130C,0.072*% %AMTHD131* 7,0,0,0.082,0.062,0.015,45* % %ADD131THD131*% %AMTHD132* 7,0,0,0.065,0.045,0.015,45* % %ADD132THD132*% %ADD133C,0.080*% %ADD134C,0.048*% %AMTHD135* 7,0,0,0.058,0.038,0.015,45* % %ADD135THD135*% %ADD136C,0.046*% D46* X3954Y-1717D02* X3950Y-1721D01* X3954Y-1725D01* X3958Y-1721D01* X3954Y-1717D01* X4032Y-1664D02* X4028Y-1656D01* X4021Y-1649D01* X4013Y-1645D01* X3998D01* X3990Y-1649D01* X3983Y-1656D01* X3979Y-1664D01* X3975Y-1675D01* Y-1695D01* X3979Y-1706D01* X3983Y-1714D01* X3990Y-1721D01* X3998Y-1725D01* X4013D01* X4021Y-1721D01* X4028Y-1714D01* X4032Y-1706D01* Y-1695D01* X4013D02* X4032D01* X4051Y-1687D02* X4085D01* X4096Y-1683D01* X4100Y-1679D01* X4104Y-1672D01* Y-1660D01* X4100Y-1653D01* X4096Y-1649D01* X4085Y-1645D01* X4051D01* Y-1725D01* X4122Y-1660D02* X4129Y-1656D01* X4141Y-1645D01* Y-1725D01* D50* X1640Y2040D02* D03* X1540D02* D03* D53* X4810Y1015D02* D03* Y1115D02* D03* X4570Y1065D02* D03* X750Y800D02* D03* X5280Y2665D02* D03* X1550Y3750D02* D03* X2900D02* D03* X1500Y600D02* D03* X1900Y480D02* D03* X2450D02* D03* D56* X3650Y2125D02* D03* Y2025D02* D03* Y1925D02* D03* Y1825D02* D03* Y1725D02* D03* X3750Y2225D02* D03* Y2125D02* D03* Y2025D02* D03* Y1925D02* D03* Y1825D02* D03* Y1725D02* D03* Y1625D02* D03* X3850Y2225D02* D03* Y2125D02* D03* Y1725D02* D03* X3950Y2225D02* D03* Y2125D02* D03* Y1725D02* D03* Y1625D02* D03* X4050Y2225D02* D03* Y2125D02* D03* Y2025D02* D03* Y1925D02* D03* Y1825D02* D03* Y1725D02* D03* Y1625D02* D03* X4150Y2125D02* D03* Y2025D02* D03* Y1925D02* D03* Y1825D02* D03* Y1725D02* D03* D59* X400Y1450D02* D03* X300D02* D03* X400Y1150D02* D03* X300D02* D03* X200D02* D03* X300Y3250D02* D03* X400Y850D02* D03* X300Y450D02* D03* X200D02* D03* Y550D02* D03* Y750D02* D03* Y850D02* D03* Y1050D02* D03* Y1250D02* D03* Y1450D02* D03* Y1550D02* D03* Y1650D02* D03* Y1750D02* D03* Y1950D02* D03* Y2150D02* D03* Y2250D02* D03* Y2450D02* D03* Y2550D02* D03* Y2650D02* D03* Y2750D02* D03* Y2950D02* D03* Y3050D02* D03* Y3150D02* D03* Y3250D02* D03* Y3450D02* D03* X300Y550D02* D03* Y750D02* D03* Y850D02* D03* Y1050D02* D03* Y1250D02* D03* Y1550D02* D03* Y1650D02* D03* Y1750D02* D03* Y1950D02* D03* Y2050D02* D03* Y2150D02* D03* Y2250D02* D03* Y2450D02* D03* Y2550D02* D03* Y2650D02* D03* Y2750D02* D03* Y3050D02* D03* Y3150D02* D03* Y3450D02* D03* X400Y450D02* D03* Y550D02* D03* Y750D02* D03* Y1050D02* D03* Y1250D02* D03* Y1550D02* D03* Y1650D02* D03* Y1750D02* D03* Y1950D02* D03* Y2050D02* D03* Y2150D02* D03* Y2250D02* D03* Y2450D02* D03* Y2550D02* D03* Y2650D02* D03* Y2750D02* D03* Y2950D02* D03* Y3050D02* D03* Y3150D02* D03* Y3250D02* D03* Y3450D02* D03* X200Y2050D02* D03* X300Y2950D02* D03* X200Y3550D02* D03* Y3650D02* D03* Y3750D02* D03* Y3950D02* D03* Y4050D02* D03* Y4150D02* D03* Y4250D02* D03* X300Y3550D02* D03* Y3650D02* D03* Y3750D02* D03* Y3950D02* D03* Y4050D02* D03* Y4150D02* D03* Y4250D02* D03* X400Y3550D02* D03* Y3650D02* D03* Y3750D02* D03* Y3950D02* D03* Y4050D02* D03* Y4150D02* D03* Y4250D02* D03* X700Y350D02* D03* Y150D02* D03* D116* X1440Y2470D02* D03* X1840D02* D03* X1740D02* D03* X1640D02* D03* X1540D02* D03* Y2370D02* D03* X1440D02* D03* X1340Y2470D02* D03* Y2370D02* D03* X1240Y2470D02* D03* Y2370D02* D03* X3670Y1115D02* D03* Y1015D02* D03* X5950Y2400D02* D03* Y2310D02* D03* Y2220D02* D03* Y2130D02* D03* Y2040D02* D03* X6050Y2445D02* D03* Y2355D02* D03* Y2175D02* D03* Y2085D02* D03* X6150Y2400D02* D03* Y2310D02* D03* Y2220D02* D03* Y2130D02* D03* Y2040D02* D03* X1700Y600D02* D03* Y500D02* D03* Y400D02* D03* Y300D02* D03* Y200D02* D03* X750Y1300D02* D03* Y1400D02* D03* Y1500D02* D03* Y1700D02* D03* X700Y4400D02* D03* X800D02* D03* Y4500D02* D03* X900Y4400D02* D03* Y4500D02* D03* X1000Y4400D02* D03* Y4500D02* D03* X1100Y4400D02* D03* D121* X1840Y2370D02* D03* X1740D02* D03* X1640D02* D03* X6050Y2265D02* D03* X750Y1600D02* D03* X700Y4500D02* D03* X1100D02* D03* D122* X1130Y2465D02* D03* X3460Y3780D02* D03* X3280Y2840D02* D03* X3930Y1040D02* D03* Y990D02* D03* X4810Y745D02* D03* X1680Y1250D02* D03* X900Y2385D02* D03* X1130Y2315D02* D03* X1200Y2235D02* D03* X1300D02* D03* X900Y2145D02* D03* X1350Y2235D02* D03* X4650Y531D02* D03* X5370Y425D02* D03* X4650Y415D02* D03* X5670Y425D02* D03* X4650Y465D02* D03* X5520Y425D02* D03* X4610Y499D02* D03* X4520Y565D02* D03* X4650Y594D02* D03* X4760Y745D02* D03* X5520Y685D02* D03* X4570Y562D02* D03* X4949Y745D02* D03* X5220Y685D02* D03* X4760Y295D02* D03* X4970Y295D02* D03* X4770Y80D02* D03* X4970D02* D03* X3820Y465D02* D03* X5110Y485D02* D03* X3820Y665D02* D03* X5110Y594D02* D03* X3920Y465D02* D03* X5110Y531D02* D03* X3920Y665D02* D03* X5110Y645D02* D03* X3930Y1090D02* D03* Y1140D02* D03* X4370Y665D02* D03* Y1165D02* D03* X5220Y405D02* D03* X5370Y195D02* D03* X5670D02* D03* X4960Y525D02* D03* X4870Y605D02* D03* X5500Y2405D02* D03* X5580Y1905D02* D03* X3500Y3810D02* D03* Y3750D02* D03* X3440Y3040D02* D03* X3500Y3390D02* D03* X2600Y3040D02* D03* X2074Y1906D02* D03* X1570Y2840D02* D03* X940Y3450D02* D03* X980Y3420D02* D03* X1590Y3790D02* D03* X1600Y3960D02* D03* X1640D02* D03* X1680D02* D03* X1830Y3160D02* D03* Y3120D02* D03* X1320Y3990D02* D03* X1290Y3960D02* D03* X1220D02* D03* X1160D02* D03* X1260Y3990D02* D03* X1190D02* D03* X980Y3800D02* D03* Y3740D02* D03* X940Y3770D02* D03* X1320Y1335D02* D03* X620Y1880D02* D03* X1670Y1980D02* D03* X580Y1880D02* D03* X1765Y2080D02* D03* X1600Y1590D02* D03* X940Y3710D02* D03* X5060Y1855D02* D03* Y1805D02* D03* Y2105D02* D03* Y2055D02* D03* X5100Y2355D02* D03* Y2405D02* D03* Y2505D02* D03* Y2555D02* D03* X1090Y1535D02* D03* X1130Y1435D02* D03* X1070Y2145D02* D03* X1320Y1385D02* D03* Y1635D02* D03* X1350Y1955D02* D03* X1130Y2215D02* D03* X1200Y3340D02* D03* Y3720D02* D03* X1300Y3100D02* D03* Y3750D02* D03* X1340Y3780D02* D03* X1550Y3100D02* D03* X1640Y3140D02* D03* X5280Y2155D02* D03* X3040Y3100D02* D03* X3150D02* D03* X1640Y3520D02* D03* X950Y3965D02* D03* X1280Y2880D02* D03* X1250Y2840D02* D03* X980Y3240D02* D03* X940Y3270D02* D03* X1370Y2840D02* D03* X1340Y2880D02* D03* X1190Y2840D02* D03* X1160Y2880D02* D03* X980Y3060D02* D03* X940Y3090D02* D03* X980Y3300D02* D03* X940Y3330D02* D03* X980Y3360D02* D03* X940Y3390D02* D03* X1310Y2840D02* D03* X1220Y2880D02* D03* X3130Y2840D02* D03* X1540Y2880D02* D03* X3100D02* D03* X2780D02* D03* X2810Y2840D02* D03* X2840Y2880D02* D03* X2870Y2840D02* D03* X2900Y2880D02* D03* X2930Y2840D02* D03* X2960Y2880D02* D03* X3010Y2840D02* D03* X3040Y2880D02* D03* X3070Y2840D02* D03* X1320Y1285D02* D03* X1400Y2160D02* D03* X3190Y2880D02* D03* X2150Y740D02* D03* X1900Y1260D02* D03* X2350Y740D02* D03* X2250Y1220D02* D03* X2400D02* D03* X2560D02* D03* Y1340D02* D03* X1900Y1460D02* D03* Y1580D02* D03* Y1780D02* D03* X2000Y1860D02* D03* X2450Y1460D02* D03* Y1860D02* D03* X2560Y1460D02* D03* Y1580D02* D03* Y1640D02* D03* Y1780D02* D03* X2230Y1900D02* D03* X2400D02* D03* X2560D02* D03* X2770Y220D02* D03* X2700Y460D02* D03* X3900Y2030D02* D03* X2900Y3100D02* D03* X4390Y1560D02* D03* X3240Y3140D02* D03* X2800Y3340D02* D03* X3240Y3520D02* D03* X4400Y3600D02* D03* X2800Y3720D02* D03* X3150Y3750D02* D03* X6270Y3550D02* D03* X5200Y3600D02* D03* X5900Y4480D02* D03* X6000Y3600D02* D03* X6100Y4480D02* D03* X2000Y250D02* D03* X2770Y460D02* D03* X2700Y1140D02* D03* Y2420D02* D03* X3220Y2840D02* D03* X1725Y1795D02* D03* X880Y3480D02* D03* X1400Y3980D02* D03* X2850Y460D02* D03* X2000Y1030D02* D03* X1835Y2005D02* D03* X3000Y3960D02* D03* X2060Y1220D02* D03* X2000D02* D03* X2050Y1000D02* D03* X2080Y1400D02* D03* X2231Y1040D02* D03* X2300Y480D02* D03* X1480Y3960D02* D03* X3080D02* D03* X2040Y2120D02* D03* X1640Y1820D02* D03* X1740Y2240D02* D03* X1780Y2200D02* D03* X1820Y2240D02* D03* X1560Y1340D02* D03* Y1390D02* D03* Y1440D02* D03* X750Y1840D02* D03* X1600Y1750D02* D03* X1640Y840D02* D03* X1930Y980D02* D03* X1900Y760D02* D03* Y940D02* D03* X1870Y725D02* D03* Y980D02* D03* X540Y1810D02* D03* X1610Y1940D02* D03* X1680Y1910D02* D03* X3500Y3450D02* D03* X3460Y3420D02* D03* X4310Y1055D02* D03* X3460Y3480D02* D03* X4310Y1105D02* D03* X1700Y810D02* D03* X1960Y940D02* D03* X1600Y870D02* D03* X1840Y940D02* D03* X1680Y1190D02* D03* X1640Y1220D02* D03* Y1280D02* D03* X1965Y1540D02* D03* X1780Y2880D02* D03* X1640Y1500D02* D03* X1680Y1530D02* D03* X1640Y1340D02* D03* Y1440D02* D03* X1680Y1470D02* D03* X2300Y980D02* D03* X2450Y1040D02* D03* X1440Y3960D02* D03* X4270Y2075D02* D03* X3040Y3960D02* D03* X5710Y3400D02* D03* X6340Y3425D02* D03* X2450Y980D02* D03* X1360Y3940D02* D03* X4295Y1925D02* D03* X2960Y3960D02* D03* X6270Y3750D02* D03* X3490Y2660D02* D03* X1600Y2880D02* D03* X3500Y1825D02* D03* X4910Y4000D02* D03* X3520Y2695D02* D03* X1630Y2840D02* D03* X3560Y1875D02* D03* X4910Y3950D02* D03* X3500Y1925D02* D03* X3550Y2660D02* D03* X1660Y2880D02* D03* X4910Y3900D02* D03* X3560Y1975D02* D03* X3580Y2695D02* D03* X1690Y2840D02* D03* X4910Y3850D02* D03* X3500Y2025D02* D03* X1725Y2880D02* D03* X3610Y2660D02* D03* X4910Y3800D02* D03* X3560Y2075D02* D03* X1750Y2840D02* D03* X3640Y2695D02* D03* X4110Y3350D02* D03* X4910D02* D03* X3500Y2125D02* D03* X3670Y2660D02* D03* X4110Y3300D02* D03* X4910D02* D03* X3560Y2180D02* D03* X3700Y2695D02* D03* X4110Y3250D02* D03* X4910D02* D03* X3730Y2660D02* D03* X4110Y3200D02* D03* X4910D02* D03* X3760Y2695D02* D03* X4110Y3150D02* D03* X4910D02* D03* X4235Y2340D02* D03* X6270Y3200D02* D03* X4120Y2365D02* D03* X6270Y3250D02* D03* X4190Y2390D02* D03* X6270Y3300D02* D03* Y3350D02* D03* X4160Y2440D02* D03* X6270Y3400D02* D03* X5710Y3775D02* D03* X6270Y3800D02* D03* X4130Y2490D02* D03* X5710Y3825D02* D03* X6270Y3850D02* D03* X5710Y3875D02* D03* X6270Y3900D02* D03* X2550Y3160D02* D03* X3010Y1760D02* D03* X4110Y3700D02* D03* X2520Y3190D02* D03* X2980Y1790D02* D03* X4110Y3650D02* D03* X2490Y3220D02* D03* X2950Y1820D02* D03* X4110Y3500D02* D03* X2460Y3250D02* D03* X2920Y1850D02* D03* X4110Y3450D02* D03* X2430Y3280D02* D03* X2890Y1880D02* D03* X4670Y3450D02* D03* X2400Y3320D02* D03* X2860Y1910D02* D03* X4670Y3500D02* D03* X2370Y3350D02* D03* X2830Y1940D02* D03* X4670Y3650D02* D03* X2340Y3390D02* D03* X2800Y1970D02* D03* X4670Y3700D02* D03* X2310Y3420D02* D03* X2550Y2160D02* D03* X4910Y3700D02* D03* X2280Y3450D02* D03* X2520Y2120D02* D03* X4910Y3650D02* D03* X2250Y3490D02* D03* X2490Y2160D02* D03* X4910Y3500D02* D03* X2220Y3520D02* D03* X2460Y2120D02* D03* X4910Y3450D02* D03* X2190Y3550D02* D03* X2430Y2160D02* D03* X5470Y3450D02* D03* X2160Y3580D02* D03* X2400Y2120D02* D03* X5470Y3500D02* D03* X2130Y3610D02* D03* X2370Y2160D02* D03* X5470Y3650D02* D03* X2100Y3640D02* D03* X2340Y2120D02* D03* X5470Y3700D02* D03* X2070Y3690D02* D03* X2310Y2160D02* D03* X5710Y3700D02* D03* X2040Y3720D02* D03* X2280Y2120D02* D03* X5710Y3650D02* D03* X2010Y3750D02* D03* X2250Y2160D02* D03* X5710Y3500D02* D03* X1980Y3780D02* D03* X2220Y2120D02* D03* X5710Y3450D02* D03* X2190Y2160D02* D03* X6270Y3450D02* D03* X2160Y2120D02* D03* X6270Y3500D02* D03* X2130Y2160D02* D03* X6270Y3650D02* D03* X2100Y2120D02* D03* X6270Y3700D02* D03* X2500Y980D02* D03* X2620Y1020D02* D03* X2350Y980D02* D03* X2640D02* D03* X6340Y3780D02* D03* X2660Y940D02* D03* X4355Y1825D02* D03* X2680Y900D02* D03* X6270Y3950D02* D03* X2150Y980D02* D03* X1510Y2840D02* D03* X2450Y1550D02* D03* X2660Y2380D02* D03* X3250Y2880D02* D03* X980Y3120D02* D03* X940Y3150D02* D03* Y3210D02* D03* X980Y3180D02* D03* X940Y3540D02* D03* Y3600D02* D03* X980Y3510D02* D03* Y3570D02* D03* Y3630D02* D03* X940Y3660D02* D03* X1220Y3640D02* D03* Y3420D02* D03* X1580Y3380D02* D03* X2820Y3420D02* D03* X1260Y3390D02* D03* X1620Y3420D02* D03* X3220D02* D03* X2820Y3480D02* D03* X2185Y4450D02* D03* X3220Y3640D02* D03* X1620D02* D03* X2820D02* D03* X1640Y1560D02* D03* X5100Y2305D02* D03* X1660Y1750D02* D03* X5100Y2605D02* D03* X1250Y1875D02* D03* X1320Y1435D02* D03* X1425Y1665D02* D03* X2310Y1065D02* D03* X1320Y1535D02* D03* X1070Y2385D02* D03* X1320Y1485D02* D03* X1520Y1720D02* D03* X3395Y2590D02* D03* X4585Y1905D02* D03* X4760D02* D03* X1520Y1780D02* D03* X4560Y2005D02* D03* X3345Y2565D02* D03* X4760Y2005D02* D03* X5500Y1805D02* D03* Y1755D02* D03* Y2005D02* D03* Y2055D02* D03* X1090Y1635D02* D03* X1130Y1485D02* D03* Y1585D02* D03* X1090Y1385D02* D03* X1600Y1880D02* D03* X5500Y2255D02* D03* X3460Y3720D02* D03* X5500Y2305D02* D03* Y2355D02* D03* X1640Y1160D02* D03* X900Y1965D02* D03* X5370Y685D02* D03* X3520Y965D02* D03* X3560Y3500D02* D03* X3580Y3540D02* D03* X5000Y1805D02* D03* X5500Y1855D02* D03* X1520Y1850D02* D03* X3430Y2540D02* D03* X4535Y1805D02* D03* X4760D02* D03* X5000Y1905D02* D03* Y2005D02* D03* X5280Y1955D02* D03* X5500Y2105D02* D03* X5280Y2455D02* D03* X5500Y2605D02* D03* X3560Y3620D02* D03* Y3700D02* D03* X2070Y2160D02* D03* X1830Y3010D02* D03* X5630Y1425D02* D03* X3470Y565D02* D03* X3770D02* D03* X1660Y2135D02* D03* X5615Y1925D02* D03* X5580Y2155D02* D03* X510Y3480D02* D03* X580Y1710D02* D03* X540Y2580D02* D03* Y2480D02* D03* Y2680D02* D03* Y3080D02* D03* Y3180D02* D03* Y2310D02* D03* Y2210D02* D03* Y2110D02* D03* Y2010D02* D03* Y3710D02* D03* Y3810D02* D03* Y4110D02* D03* Y4010D02* D03* Y2780D02* D03* Y2980D02* D03* Y3610D02* D03* Y3510D02* D03* Y4210D02* D03* D123* X2000Y4500D02* D03* X1900D02* D03* X1800D02* D03* X1600D02* D03* X1500D02* D03* X1400D02* D03* X2000Y4400D02* D03* X1900D02* D03* X1800D02* D03* X1600D02* D03* X1500D02* D03* X1400D02* D03* X1700Y4500D02* D03* Y4400D02* D03* X3670Y465D02* D03* Y665D02* D03* X1100Y3000D02* D03* X4770Y1300D02* D03* X4840D02* D03* X4910Y1300D02* D03* X4980D02* D03* X4770Y900D02* D03* X4910D02* D03* X4980D02* D03* X5050D02* D03* D124* X2100Y4500D02* D03* Y4400D02* D03* X5050Y1300D02* D03* X4840Y900D02* D03* D125* X750Y500D02* D03* X1500Y150D02* D03* X1900Y200D02* D03* X2450Y220D02* D03* X5010Y1065D02* D03* D126* X1090Y1285D02* D03* X1320Y1585D02* D03* X1140Y1635D02* D03* X1900Y1400D02* D03* Y1520D02* D03* Y1720D02* D03* X2050Y480D02* D03* X2300Y160D02* D03* X2500Y740D02* D03* X1940Y1220D02* D03* X2120D02* D03* X2200D02* D03* X2300D02* D03* X2000Y1640D02* D03* X2450Y1220D02* D03* X2560Y1280D02* D03* X2450Y1640D02* D03* X2560Y1400D02* D03* Y1520D02* D03* Y1700D02* D03* X1010Y2145D02* D03* X880Y2420D02* D03* X1160Y1955D02* D03* X1130Y2065D02* D03* X1200Y3140D02* D03* Y3523D02* D03* X1350Y3080D02* D03* X1300Y3310D02* D03* X1230Y3780D02* D03* X1300Y3540D02* D03* X2150Y1900D02* D03* X2210Y2050D02* D03* X2310Y1900D02* D03* X2500D02* D03* X2560Y1840D02* D03* X1510Y3080D02* D03* X1550Y3310D02* D03* Y3540D02* D03* X1360Y3720D02* D03* X1640Y3340D02* D03* X540Y3905D02* D03* X1640Y3720D02* D03* X2700Y220D02* D03* X2850D02* D03* X3100Y300D02* D03* X3670Y195D02* D03* X4370Y465D02* D03* X3870Y925D02* D03* X4370Y965D02* D03* X4870Y425D02* D03* X5220Y225D02* D03* X5520Y195D02* D03* X4930Y425D02* D03* X5220Y455D02* D03* X5440Y465D02* D03* X5170Y1185D02* D03* X2800Y3140D02* D03* X2900Y3310D02* D03* X2980Y3080D02* D03* X3100D02* D03* X2800Y3520D02* D03* X2900Y3540D02* D03* X2830Y3780D02* D03* X3060D02* D03* X3150Y3310D02* D03* Y3540D02* D03* X3240Y3340D02* D03* Y3720D02* D03* X3750Y3900D02* D03* X5060Y1755D02* D03* X3900Y1810D02* D03* X5060Y1955D02* D03* X5100Y2255D02* D03* Y2455D02* D03* X5280Y1755D02* D03* Y2255D02* D03* X5500Y2555D02* D03* X4110Y3550D02* D03* X4910D02* D03* X4670Y3600D02* D03* X4400Y3820D02* D03* X5200D02* D03* X5470Y3600D02* D03* X5710Y3550D02* D03* X6270Y3600D02* D03* X6000Y3820D02* D03* X4520Y195D02* D03* D127* X6400Y4450D02* D03* Y150D02* D03* X100D02* D03* Y4450D02* D03* D128* X6050Y2722D02* D03* Y1738D02* D03* X1100Y883D02* D03* D129* X200Y350D02* D03* Y650D02* D03* Y950D02* D03* Y1350D02* D03* Y1850D02* D03* Y2350D02* D03* Y2850D02* D03* Y3350D02* D03* X300Y350D02* D03* Y950D02* D03* Y1350D02* D03* Y1850D02* D03* Y2350D02* D03* Y2850D02* D03* Y3350D02* D03* X400Y350D02* D03* Y650D02* D03* Y950D02* D03* Y1350D02* D03* Y1850D02* D03* Y2350D02* D03* Y2850D02* D03* Y3350D02* D03* X300Y650D02* D03* X200Y3850D02* D03* X300D02* D03* X400D02* D03* D130* X1200Y150D02* D03* X1000D02* D03* D131* X1100D02* D03* D132* X3850Y1625D02* D03* D133* X5570Y1360D02* D03* X5750Y900D02* D03* X4630Y1300D02* D03* X5750D02* D03* X5470Y840D02* D03* X4630Y900D02* D03* D134* X2725Y2845D02* D03* X2840Y1045D02* D03* X2595Y2240D02* D03* X3290Y1140D02* D03* X2815Y1130D02* D03* X2500Y1490D02* D03* X4700Y1565D02* D03* X4620Y1550D02* D03* X1830Y3065D02* D03* X5775Y2185D02* D03* X5695Y2330D02* D03* X5865Y2420D02* D03* X5725Y1935D02* D03* X5820Y2355D02* D03* X4037Y3103D02* D03* X5575Y1645D02* D03* X1405Y2800D02* D03* X2695Y2990D02* D03* X5155Y2725D02* D03* X5170Y2675D02* D03* X1600Y3690D02* D03* X1540Y3960D02* D03* D135* X3870Y195D02* D03* D136* X3730Y2290D02* D03* X3760Y2315D02* D03* X4000D02* D03* X3900Y2390D02* D03* X4050Y2415D02* D03* X3850Y2440D02* D03* X885Y2030D02* D03* X4040Y2515D02* D03* X4070Y2465D02* D03* M02* gerbv-2.7.0/example/thermal/Makefile.am0000644000175000017500000000013113421555714017632 0ustar carstencarsten## $Id$ ## EXTRA_DIST=README.txt bpB.GP1 bpB.png dsp.GP1 dsp.png MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/thermal/dsp.png0000644000175000017500000002447613421555714017114 0ustar carstencarstenPNG  IHDRNg&@tEXtTitle/usr/home/spe/projects/gerbv-patch/example/thermal/dsp.pngtEXtGeneratorgerbvvȮ IDATxˑ:(мmD[q#IV'#ډ6'Jý"u %Aͯ/ `Bswn ~Ҕ')I\N<;P| yn+o"8=O|;y| } nzZ=ב_8Ht]l0Kml<1ALתԌ%8pj=wƔ'&RampDHy`f[~rmyNoOr1df-I@.X#z:Џ@?f[~rmr=l Џ'WcЏ@?mɽE SEtDֿo|\׿waǰvJw=Xy;eK @;WQec7?i^SY9?a#We,_&Z1u2tQ`o_XDbГu}'ΒLhpZv`AλjġEʮ='ޖiW ^h" ˳Pvf[^= Mϻ3p_˿ce nsw^Bc)OB ]^Xa y6viwש$b!Fg{[!/ү0Qa'E9,(ЏID+Cӊv~}肕'Y,\>qBCW^ajΥ[^yR^jI9q)ʡCSޖ2򠪨[|zP=ˡy'XDsMե!`튐NE͞R˷哇ՐKڬ}l*OMg 3b3mC .lKPN biciUj0}yغr9FO~?҅iI9A_F8w uC9aCIesO&{~]P7ʡŧ(v$oaj)y<ܻ>^K{ t<({[f'z:pTy̔-7F!\WÁΪ<^ | ^ | f)͹rhi=5y1s."^m)I12*5+6<*cn@ib~*yT'n4y5Jc jco_0tg;_f<!;{[ 90 +LK58>ms!/@=k{Xnl Ѝ^!Kј`!zz8*bHqgGuCtxyq͙[S&0:=YhCה <~<ϵ Fr{f;޳ 0o z0-l̶UIL=[ Ei=ysN]yx;P܌'RM6ė{Rguzc {o ݼ1.I"[-xY$=|eyhSr|KP~G@Z{!. E!z:?o~n+vK :8@?L=PKH#4GB1n:Nt{[\DO q"a<Yh=m"z:p[Q< JR1x9x6:^GwyݟFPQh1 7 f!JJpv' ѤE7,<\e_އG"Θ1F:DIR;|^BU%Q[} ΅vq4ަ.#7ܳ-HW/u+)J")KPEO?ṝf^ZبW HwoA$6ݑ hǘGg T<|Wkj0rZ;t()Gߖ4< ݔmϘێ(܁Է8"U<,iGOg0okS +LJ"c myzVN*B& YGDF8rCvwuHSh⎋{gypzogvߞJT[&Q,0# k}Q:†6!-rU}`\Ͻ97jp?fwP]p?P%1bVyx&:h\éARth;v yݵ~?ŭծ/cM-%Z n0R Sjo0 VLO jK|r'~4M~s_~sWf(uoKfxZƸݘ viIQ"f ʦT$gYzbBC) ߦ}K^ZǷw72p{ޘV}w#/mpHO1i1iaM^/6zc*)Nn |k{U-dW<0 ,yHUҢflVje{=yy ?|y9aΥeu{Yl;O3 ko 0yV]o)Ռ$֟발jQ`wx$,V8{W'Xhȥd()z~R\㽜Wpd<-nv:4j<:O'{zrh֡Wl|z#0APȕxJ^ !M3gnA+.ouCb NNÀYa.Ӂ(~Y~$, "HTl=fiCDO!W_b# k8=ʴ5OH)yǽO?{)^xDҒY*ryV{g^S1cg8nh<փOە 2j$ylˇﵓKZTgE$3{qujd|>7l`M 9g\` xRy81L0gڟ8 > DO#icnN&䅷U*̶p{kGNUF=yOʫPJiZRcEtH`C=FMa\34==-Z_ *Fh $̍<(.?,?wDfoKC4sLrF扞> Չ~Eɻ_.ry<Ĝ&&QoՎ]cruj& [DDz \RR3?yΖgSwcM~#[+ZT.9o8u f1n,~M{r;koǼW/G6,Xahq9`0*>zoBg"BԌa4Ef TlL-u; E8!0i0nW>r S6Anpl>Znf>Cw'8Y؝(O5z|d|bxA;Gpfk %DuX!$6uvrCY=5bU#߬˼ oM %>َ\Ÿ3HאdiX8K]4rxsߞE %dO  I쬷-1;%z _7z0=4 hH.8:`Ƨn0%a'0 =}@ 8!OZ9T?6_NAH}! x};8d+@^\fͽo[ZdjCt>hJTe>`֐LMn4~Jٖ?uT$zz<ɊC*=Tz\}d/2b]ⅳ 6ޖ]^s 9:ZHA۲{;/Oэ}3su]}l5yF"/OP]< ]0Ͳ2<z =Ȭ 8<;SW֭֮WC:JTCuvP 0:=Di ?K:[㫣 p3x{9Fv]RwLHUmWıULR2{{m(4{[8'S[.`?WëI|[kG(@9`j<=׈@Z `2as1jc.k -5+L! ָSy{gDJE_<]4*SGx-"yLH4.|rvvtl $_"z:$Zx+rllJ"A8@_eBrwBZ!)= tmV*g.ح bFOHt7 ]UQ类Ϋ<4A-亁t5Ij9,R\)2 <:9xG_R\})2 j0m t>iPׯSt*hB!ٖ)1}jkc5[\+!Uyzya T_nGb/] 3IDATg XU ^qwyN.'H$|ܝ @#v\ަ]a  O{[0}fǢf /?Uk ba]E?$09o{>+<(UgʹEv~}q9ޙ`lmݎ9ע+L͹l{!v@Sm鿬 I^"s{ۃLH?5ӹ+L56xMy y@-+CXSc8YP[k%8HtniY칧 Kt(gnn<󀃬59c$va K< =7Hrc?] !Gٕ+8rC``C_'`*Gy.#P]"XaJR NUaGF%_^R!Cp1@o_`W]_W66]vΨe ]1J2 e{ j0]X8,j0>?C 1JԌaͧ}-850s،Q::=k;# -Ü,-y {[Ht.c}yMyvv9 cy.ke1wq락(>5X;>{9ńaXB]f_z2/Y~[*yikCt}OVSQƴViijp=1TP_7rYtJc~7AypkE^Ω=.uozxd9.9]ǐx z:ELAe q!:[a}l N_ZGِm*@.sz DOFiY= jEOH}N9YiFOsæSp[TmYz =% s2-/,Od7:D=*-pJ]ˆFt.kX;$:h}<yptc=}<}^(Jjg[skԢyJ@z\~,<'f1`̶%JyPd Q9K2 . 6lKn'MF<\d<9II^pv8=JxaWۏyd,,:gxl=ؙm9; j]EI_6&^ OC6bfjQot&ҡ*ͩ!O(f[6e9Î#_inW%3 HG뙯F:.&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/thermal ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt bpB.GP1 bpB.png dsp.GP1 dsp.png MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/thermal/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/thermal/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/thermal/bpB.png0000644000175000017500000001267113421555714017023 0ustar carstencarstenPNG  IHDR?+@tEXtTitle/usr/home/spe/projects/gerbv-patch/example/thermal/bpB.pngܺtEXtGeneratorgerbvvȮIDATxK뺕PQ|ЪSq*H_bղ Pa\g%НYz8?o> m-Zqߝt|,t7Smn<ӳOg7#$~L93=+Y{ wI7Y򅳛~W3Sౖ+QjTjڒ,OBWJf?|НR НR ݊b ncb=B:Y 6,11wúOZ1cL >yNY=٫WƘ|SJMs{^-~xL?lyLR{X L]Rg?xНR НR НR НR %uLf<35Y&3uI 6g13uI g6{ttttt7BIL yjL]Rga~YL]Rg^))))߁PRd.3Spi2Sy_j3{3Syf@wJ-@wJ-@wJ-@wJ-@ww }0KjWVX<_3:9%5xfjγV;Mf<35Kmfbf<35lNNNNn&3uI NLRٳL3SjSjSjSjL]Rg%8y7yeKmL]ROI-А5 )!볫QjaC Sjה㆔ZB'w JH]R7\H` Nטn~թl%5\l^ӘېR >61w5J-rܐR {Ҙ;?%.Zc.$kjL]Rk 7|w\c.6{imH Y]R ҘxM9nH=i]RM1kd.KpFZN] >s xMcnCJ-ljZؐ(kqCJ-IcR@(K 3uY2И 0FZmÎC})"q mEǬt56b0Ѯ=,f{z\d=ݢ7;eW НR RpYۋ>z\d=+7;eZtc6JϏ<\Cl5לnO t`?_kIa]| =_n}wQlu M[cnKm~Ar$:>$}INqA C-s߆JmUlL{5q6C&6x&ӽRI73uPb'kLR4;ʒ13uY2И !&6x&ӽеZg6)*S;s_j5<ˮ 6;<$n!qԇ)yAlJmUlL{5q6a16x&ӽRIwԪ;{H,s߽1a1w)w Uw\1w]nST bbg2+]՘n|fcQԘVc˳ک`c3N7zlaL6Wjc׭bg2ݫ+lM&6x&ӽRI73uPb՘;ј;ʒј.ޗ4sf<^AZw5v:}[cnKܗgٵSScStyHCf cf淡Rn<^M\mX t&vL6Xj5{EcN4.ek4.˭% 8\U6;Po|woI>]fjia"qS .SĕంR;FH# 1@b;ؘc6e}0;I]]s7{;Zeꚩ8#vSl ]՘n|fcÂi~՘,s/hrImo˂,q!!1^\] q6vkzlƈ+c|ĄzVcW2sg}2Bw/u_L ؍>?s['tVcs_Mc.Z/Ϣ1&17{ ұŕ-Wjc1c0F\#3$&K,s߽1+s7Bw/u_L ؍>?s['tVcs_Mc.Z/Ϣ1&17{ ұŕ-Wjc1c0F\#3$&K,s߽1+s7Bw/u_L }1jȬ9T߽e@c9~qgL9~ZlS(7{5< Wj5b], Q}[8գcN= >cJZځG^cf u!ucN= >c,b7~YZl|-VF9z=,[>Np>Y&l~}P S{KB֙o&l/$f,P\] ++k VWjP6Xj~r8a/Nk@(SFyԿ4|]e^Oaе1ϫ՘{~ZNz&Z/Ϣ13ݟB?h 6Wjc)c Jĕ1BVHX淡R;?yӘK={e?sǿ|]e^IjL]RoVM^RSީKjp$nИېR НR НR fU!{RlvNZmرwxϸ€ǜr {k#15;3=+Y>yv=O®KW4n9ӳOnǘIA^ϟt|,_8m'aou}5;}1<3u kR O֯- 2$tZN`'+ ))ݭ-1&#d [E`O|7=d1d_ܓ[y >\n'>t07 ?/G|GI}ߓpwY}(Jp)z]@V\9bcmJ-~3_|?ͧMo<IENDB`gerbv-2.7.0/example/thermal/bpB.GP10000644000175000017500000003122513421555714016622 0ustar carstencarsten%FSLAX24Y24*% %MOIN*% G70* G01* G75* %ADD10R,0.1200X0.0900*% %ADD11C,0.0080*% %ADD12C,0.0120*% %ADD13C,0.0200*% %ADD14C,0.0100*% %ADD15C,0.0060*% %ADD16C,0.0500*% %ADD17C,0.0550*% %ADD18R,0.0550X0.0550*% %ADD19C,0.0360*% %ADD20C,0.0300*% %ADD21R,0.1240X0.0940*% %ADD22C,0.0540*% %ADD23C,0.0590*% %ADD24R,0.0590X0.0590*% %ADD25C,0.0400*% %ADD26C,0.0720*% %ADD27C,0.0750*% %AMTHD28* 7,0,0,0.0830,0.0590,0.0150,45* % %ADD28THD28*% %ADD29C,0.1500*% %AMTHD30* 7,0,0,0.0800,0.0560,0.0150,45* % %ADD30THD30*% %ADD31C,0.1600*% %AMTHD32* 7,0,0,0.0680,0.0440,0.0150,45* % %ADD32THD32*% %ADD33C,0.0760*% D11* X115238Y54647D02* X115200Y54609D01* X115238Y54571D01* X115276Y54609D01* X115238Y54647D01* X116023Y55180D02* X115985Y55256D01* X115908Y55333D01* X115832Y55371D01* X115680D01* X115604Y55333D01* X115527Y55256D01* X115489Y55180D01* X115451Y55066D01* Y54875D01* X115489Y54761D01* X115527Y54685D01* X115604Y54609D01* X115680Y54571D01* X115832D01* X115908Y54609D01* X115985Y54685D01* X116023Y54761D01* Y54875D01* X115832D02* X116023D01* X116205Y54952D02* X116548D01* X116662Y54990D01* X116701Y55028D01* X116739Y55104D01* Y55218D01* X116701Y55294D01* X116662Y55333D01* X116548Y55371D01* X116205D01* Y54571D01* X116918Y55218D02* X116994Y55256D01* X117108Y55371D01* Y54571D01* D26* X83700Y85321D02* D03* X99700Y86321D02* D03* X98700D02* D03* X83700Y94321D02* D03* X82700D02* D03* X83700Y93321D02* D03* X82700D02* D03* X83700Y92321D02* D03* X82700D02* D03* X83700Y91321D02* D03* X82700D02* D03* X83700Y89321D02* D03* X82700D02* D03* X83700Y88321D02* D03* X82700D02* D03* X83700Y87321D02* D03* X82700D02* D03* X83700Y86321D02* D03* X82700D02* D03* Y85321D02* D03* X83700Y84321D02* D03* X82700D02* D03* X83700Y83321D02* D03* X82700D02* D03* X91200D02* D03* X90200D02* D03* X91200Y84321D02* D03* X90200D02* D03* X91200Y86321D02* D03* X90200D02* D03* X91200Y87321D02* D03* X90200D02* D03* X91200Y88321D02* D03* X90200D02* D03* X91200Y89321D02* D03* X90200D02* D03* X91200Y91321D02* D03* X90200D02* D03* X91200Y92321D02* D03* X90200D02* D03* X91200Y93321D02* D03* X90200D02* D03* X91200Y94321D02* D03* X90200D02* D03* X106200Y91321D02* D03* X105200D02* D03* X106200Y92321D02* D03* X105200D02* D03* X106200Y93321D02* D03* X105200D02* D03* X106200Y94321D02* D03* X105200D02* D03* X106200Y96321D02* D03* X105200D02* D03* X106200Y97321D02* D03* X105200D02* D03* X106200Y98321D02* D03* X105200D02* D03* X106200Y99321D02* D03* X105200D02* D03* X99700Y88321D02* D03* X98700D02* D03* X99700Y87321D02* D03* X98700D02* D03* D27* X88700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X87700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X86700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X87700Y83321D02* D03* Y82321D02* D03* Y88321D02* D03* Y106321D02* D03* X88700D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X87700Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X86700Y106321D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X81200Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X80200Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X79200Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X80200Y83321D02* D03* Y82321D02* D03* Y88321D02* D03* Y106321D02* D03* X81200D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X80200Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X79200Y106321D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X105200Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* Y80321D02* D03* Y82321D02* D03* Y84321D02* D03* Y83321D02* D03* X80200Y104321D02* D03* X103700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X102700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X101700Y114321D02* D03* Y113321D02* D03* Y112321D02* D03* Y111321D02* D03* Y109321D02* D03* Y108321D02* D03* Y107321D02* D03* X102700Y83321D02* D03* Y82321D02* D03* Y88321D02* D03* Y106321D02* D03* X103700D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X102700Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X101700Y106321D02* D03* Y104321D02* D03* Y103321D02* D03* Y102321D02* D03* Y101321D02* D03* Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y79321D02* D03* Y77321D02* D03* Y76321D02* D03* X94200D02* D03* Y77321D02* D03* Y79321D02* D03* Y80321D02* D03* Y82321D02* D03* Y83321D02* D03* Y84321D02* D03* Y86321D02* D03* Y87321D02* D03* Y88321D02* D03* Y89321D02* D03* Y91321D02* D03* Y92321D02* D03* Y93321D02* D03* Y94321D02* D03* Y96321D02* D03* Y97321D02* D03* Y98321D02* D03* Y99321D02* D03* Y101321D02* D03* Y102321D02* D03* Y103321D02* D03* Y104321D02* D03* Y106321D02* D03* X95200Y76321D02* D03* Y77321D02* D03* Y79321D02* D03* Y80321D02* D03* Y84321D02* D03* Y87321D02* D03* Y89321D02* D03* Y91321D02* D03* Y92321D02* D03* Y93321D02* D03* Y94321D02* D03* Y96321D02* D03* Y97321D02* D03* Y98321D02* D03* Y99321D02* D03* Y101321D02* D03* Y102321D02* D03* Y103321D02* D03* Y104321D02* D03* X96200Y76321D02* D03* Y77321D02* D03* Y79321D02* D03* Y80321D02* D03* Y82321D02* D03* Y83321D02* D03* Y84321D02* D03* Y87321D02* D03* Y88321D02* D03* Y89321D02* D03* Y91321D02* D03* Y92321D02* D03* Y93321D02* D03* Y94321D02* D03* Y96321D02* D03* Y97321D02* D03* Y98321D02* D03* Y99321D02* D03* Y101321D02* D03* Y102321D02* D03* Y103321D02* D03* Y104321D02* D03* Y106321D02* D03* X95200D02* D03* Y88321D02* D03* Y82321D02* D03* Y83321D02* D03* X94200Y107321D02* D03* Y108321D02* D03* Y109321D02* D03* Y111321D02* D03* Y112321D02* D03* Y113321D02* D03* Y114321D02* D03* X95200Y107321D02* D03* Y108321D02* D03* Y109321D02* D03* Y111321D02* D03* Y112321D02* D03* Y113321D02* D03* Y114321D02* D03* X96200Y107321D02* D03* Y108321D02* D03* Y109321D02* D03* Y111321D02* D03* Y112321D02* D03* Y113321D02* D03* Y114321D02* D03* X95200Y86321D02* D03* X96200D02* D03* D28* X88700Y110321D02* D03* X87700D02* D03* X86700D02* D03* X88700Y100321D02* D03* X86700Y75321D02* D03* X88700Y105321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X87700Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X86700Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* X81200Y110321D02* D03* X80200D02* D03* X79200D02* D03* X81200Y100321D02* D03* X79200Y75321D02* D03* X81200Y105321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X80200Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X79200Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* X103700Y110321D02* D03* X102700D02* D03* X101700D02* D03* X103700Y100321D02* D03* X101700Y75321D02* D03* X103700Y105321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X102700Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* Y75321D02* D03* X101700Y105321D02* D03* Y100321D02* D03* Y95321D02* D03* Y90321D02* D03* Y85321D02* D03* Y81321D02* D03* Y78321D02* D03* X94200D02* D03* Y81321D02* D03* Y85321D02* D03* Y90321D02* D03* Y95321D02* D03* Y100321D02* D03* Y105321D02* D03* X95200Y75321D02* D03* Y78321D02* D03* Y81321D02* D03* Y85321D02* D03* Y90321D02* D03* Y95321D02* D03* Y100321D02* D03* Y105321D02* D03* X96200Y75321D02* D03* Y78321D02* D03* Y81321D02* D03* Y85321D02* D03* Y90321D02* D03* Y95321D02* D03* Y105321D02* D03* X94200Y75321D02* D03* X96200Y100321D02* D03* X94200Y110321D02* D03* X95200D02* D03* X96200D02* D03* D29* X87580Y116541D02* D03* Y73101D02* D03* X80080Y116541D02* D03* Y73101D02* D03* X102580Y116541D02* D03* Y73101D02* D03* X95080D02* D03* Y116541D02* D03* D30* X76950Y75321D02* D03* Y78321D02* D03* Y81321D02* D03* Y85321D02* D03* Y90321D02* D03* Y95321D02* D03* Y100321D02* D03* Y105321D02* D03* Y110321D02* D03* X107200Y85321D02* D03* Y78321D02* D03* Y75321D02* D03* X106200Y95321D02* D03* X107200Y84321D02* D03* Y83321D02* D03* Y82321D02* D03* Y80321D02* D03* Y76321D02* D03* Y79321D02* D03* Y77321D02* D03* Y81321D02* D03* Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y90321D02* D03* X106200D02* D03* X105200D02* D03* Y95321D02* D03* X107200Y99321D02* D03* Y98321D02* D03* Y97321D02* D03* Y96321D02* D03* X106200Y100321D02* D03* X105200D02* D03* X107200D02* D03* Y95321D02* D03* X99700Y89321D02* D03* X85200Y95321D02* D03* X83700D02* D03* X85200Y91321D02* D03* Y92321D02* D03* Y93321D02* D03* Y94321D02* D03* X92700Y83321D02* D03* Y95321D02* D03* X91200D02* D03* X92700Y94321D02* D03* Y93321D02* D03* Y92321D02* D03* Y91321D02* D03* Y90321D02* D03* X91200D02* D03* X90200D02* D03* Y95321D02* D03* X92700Y85321D02* D03* X90200D02* D03* X91200D02* D03* X92700Y86321D02* D03* Y87321D02* D03* Y84321D02* D03* X98700Y85321D02* D03* X99700D02* D03* X100200Y81321D02* D03* X98700D02* D03* X97700D02* D03* X99700Y93321D02* D03* X92700Y81321D02* D03* X91200D02* D03* X90200D02* D03* X85700D02* D03* X84700D02* D03* X83700D02* D03* X82700D02* D03* X85700Y89321D02* D03* Y88321D02* D03* Y87321D02* D03* Y86321D02* D03* X82700Y90321D02* D03* X85700D02* D03* X84700Y84321D02* D03* X85700D02* D03* Y85321D02* D03* X92700Y89321D02* D03* Y88321D02* D03* X85700Y83321D02* D03* X84700Y90321D02* D03* X83700D02* D03* X82700Y95321D02* D03* X98700Y93321D02* D03* Y89321D02* D03* D31* X91450Y73071D02* D03* Y116571D02* D03* X76700Y73071D02* D03* Y116571D02* D03* X107200Y73071D02* D03* Y116571D02* D03* D32* X98950Y74321D02* D03* X83950D02* D03* D33* X98700Y90321D02* D03* Y91321D02* D03* X99700D02* D03* X98700Y92321D02* D03* X99700D02* D03* X98700Y94321D02* D03* X99700D02* D03* X98700Y95321D02* D03* X99700D02* D03* Y90321D02* D03* Y96321D02* D03* X98700D02* D03* M02* gerbv-2.7.0/example/polarity/0000755000175000017500000000000013423533413016004 5ustar carstencarstengerbv-2.7.0/example/polarity/README.txt0000644000175000017500000000021413421555714017505 0ustar carstencarstenThis example is submitted by Richard Lightman and demonstrates a combination of image polarity and layer polarity that caused errors. $Id$gerbv-2.7.0/example/polarity/Makefile.am0000644000175000017500000000010413421555714020041 0ustar carstencarsten## $Id$ ## EXTRA_DIST=README.txt 6_vbat.gbr MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/polarity/6_vbat.gbr0000644000175000017500000033363313421555714017702 0ustar carstencarsten%IN6 vbat*% %FSLAX23Y23*% %MOIN*% %ADD10C,.002*% %ADD11C,.008*% %ADD12C,.010*% %ADD13C,.012*% %ADD14C,.015*% %ADD15C,.020*% %ADD16C,.025*% %ADD17C,.030*% %ADD18C,.035*% %ADD19C,.040*% %ADD20C,.045*% %ADD21C,.050*% %ADD22C,.055*% %ADD23C,.060*% %ADD24C,.064*% %ADD25C,.065*% %ADD26C,.070*% %ADD27C,.075*% %ADD28C,.080*% %ADD29C,.085*% %ADD30C,.090*% %ADD31C,.095*% %ADD32C,.100*% %ADD33C,.105*% %ADD34C,.110*% %ADD35C,.115*% %ADD36C,.120*% %ADD37C,.125*% %ADD38C,.130*% %ADD39C,.135*% %ADD40C,.140*% %ADD41C,.145*% %ADD42C,.150*% %ADD43C,.155*% %ADD44C,.160*% %ADD45C,.165*% %ADD46C,.170*% %ADD47C,.175*% %ADD48C,.180*% %ADD49C,.185*% %ADD50C,.190*% %ADD51C,.195*% %ADD52C,.200*% %ADD53C,.205*% %ADD54C,.210*% %ADD55C,.215*% %ADD56C,.220*% %ADD57C,.225*% %ADD58C,.230*% %ADD59C,.235*% %ADD60C,.240*% %ADD61C,.245*% %ADD62C,.250*% %ADD63C,.275*% %ADD64C,.300*% %ADD65C,.325*% %ADD66C,.350*% %ADD67R,.020X.020*% %ADD68R,.025X.025*% %ADD69R,.030X.030*% %ADD70R,.035X.035*% %ADD71R,.040X.040*% %ADD72R,.045X.045*% %ADD73R,.050X.050*% %ADD74R,.055X.055*% %ADD75R,.060X.060*% %ADD76R,.064X.064*% %ADD77R,.065X.065*% %ADD78R,.070X.070*% %ADD79R,.075X.075*% %ADD80R,.080X.080*% %ADD81R,.085X.085*% %ADD82R,.090X.090*% %ADD83R,.095X.095*% %ADD84R,.100X.100*% %ADD85R,.125X.125*% %ADD86R,.150X.150*% %ADD87R,.160X.160*% %ADD88R,.170X.170*% %ADD89R,.180X.180*% %ADD90R,.190X.190*% %ADD91R,.200X.200*% %ADD92C,.040*% %ADD93C,.050*% %ADD94C,.055*% %ADD95C,.060*% %ADD96C,.062*% %ADD97C,.070*% %ADD98C,.075*% %ADD99C,.080*% %ADD100C,.090*% %ADD101C,.004*% %ADD102R,.018X.018*% %ADD103R,.031X.031*% %ADD104C,.031*% %ADD105C,.270*% %ADD106R,.115X.115*% %ADD107C,.006*% %ADD108R,.015X.015*% %ADD109P,.084X4*% %ADD110P,.106X4*% %ADD111P,.059X4*% %ADD112R,.105X.105*% %ADD113C,.400*% %ADD114C,.042*% %ADD115R,.275X.275*% %ADD116R,.027X.027*% %ADD117C,.027*% %ADD118C,.062*% %ADD119R,.062X.062*% %ADD120C,.023*% %ADD121R,.023X.023*% %ADD122R,.012X.012*% %ADD123P,.120X4*% %ADD124P,.141X4*% %ADD125R,.110X.110*% %ADD126C,.052*% %ADD127R,.052X.052*% %ADD128R,.120X.120*% %ADD129C,.056*% %ADD130C,.074*% %ADD131R,.010X.010*% %ADD132R,.205X.205*% %ADD133C,.054*% %ADD134P,.176X4*% %ADD135C,.018*% %ADD136C,.067*% %ADD137R,.067X.067*% %ADD138C,.049*% %ADD139R,.049X.049*% %ADD140C,.046*% %ADD141R,.046X.046*% %ADD142R,.056X.056*% %ADD143C,.058*% %ADD144R,.058X.058*% %ADD145C,.066*% %ADD146R,.066X.066*% %ADD147C,.086*% %ADD148R,.086X.086*% %ADD149C,.280*% %ADD150C,.081*% %ADD151R,.081X.081*% %ADD152C,.061*% %ADD153R,.061X.061*% %ADD154C,.037*% %ADD155R,.037X.037*% %ADD156C,.041*% %ADD157R,.041X.041*% %ADD158C,.021*% %ADD159R,.021X.021*% %ADD160C,.106*% %ADD161C,.306*% %ADD162C,.076*% %ADD163R,.076X.076*% %ADD164C,.131*% %ADD165C,.096*% %ADD166C,.091*% %ADD167C,.146*% %ADD168C,.069*% %ADD169C,.068*% %ADD170R,.068X.068*% %ADD171C,.011*% %ADD172C,.082*% %ADD173C,.097*% %ADD174C,.122*% %ADD175C,.072*% %ADD176C,.272*% %ADD177C,.077*% %ADD178R,.077X.077*% %ADD179C,.072*% %ADD180C,.034*% %ADD181C,.031*X.015% %ADD182C,.051*% %ADD183R,.051X.051*% %ADD184C,.415*% %ADD185R,.082X.082*% %ADD186R,.350X.350*% %ADD187C,.318*% %ADD188R,.318X.318*% %ADD189R,.236X.236*% %ADD190C,.048*% %ADD191R,.048X.048*% %ADD192R,.054X.054*% %ADD193C,.042*% %ADD194R,.042X.042*% %ADD195C,.028*% %ADD196R,.028X.028*% %ADD197C,.005*% %ADD198C,.440*% %ADD199C,.680*% %ADD200C,.640*% %ADD201C,.260*% %ADD202C,.020*% %ADD203C,.016*% %ADD204C,.044*% %ADD205R,.044X.044*% %ADD206C,.092*% %ADD207R,.092X.092*% %ADD208C,.360*% %ADD209R,.360X.360*% %ADD210R,.330X.330*% %ADD211R,.074X.074*% %ADD212R,.246X.246*% %ADD213C,.246*% %ADD214P,.098X4*% %ADD215C,.017*% %ADD216R,.017X.017*% %ADD217R,.280X.280*% %ADD218C,.255*% %ADD219C,.108*% %ADD220R,.108X.108*% %ADD221R,.235X.235*% %ADD222R,.072X.072*% %ADD223R,.340X.340*% %ADD224R,.320X.320*% %ADD225R,.225X.225*% %ADD226C,.045*% %ADD227R,.130X.130*% %ADD228R,.140X.140*% %ADD229C,.109*% %ADD230C,.047*% %ADD231R,.047X.047*% %ADD232C,.026*% %ADD233R,.026X.026*% %ADD234R,.078X.078*% %ADD235C,.032*% %ADD236R,.032X.032*% %ADD237C,.475*% %ADD238C,.500*% %ADD239C,.265*% %ADD240P,.079X4*% %ADD241C,.024*% %ADD242C,.036*% %ADD243R,.036X.036*% %ADD244R,.118X.118*% %ADD245C,.094*% %ADD246R,.094X.094*% %ADD247C,.035*% %ADD248C,.022*% %ADD249R,.022X.022*% %ADD250C,.410*% %ADD251R,.410X.410*% %ADD252C,.420*% %ADD253R,.420X.420*% %ADD254C,.315*% %ADD255C,.430*% %ADD256R,.165X.165*% %ADD257C,.236*% %ADD258C,.019*% %ADD259R,.019X.019*% %ADD260R,.450X.450*% %ADD261R,.460X.460*% %ADD262P,.190X4*% %ADD263R,.008X.008*% %ADD264C,.038*% %IPNEG*% %LPD*% * X0Y0D02* D21* X11846Y9774D02* X11902Y9774D01* X11902Y9727* X13838Y9727* X13838Y9861* X14123Y9861* X14123Y9885* X14610Y9885* X14610Y10993* X14550Y10993* X14550Y11053* X14610Y11053* X14610Y12670* X14550Y12670* X14550Y12730* X14610Y12730* X14610Y13737* X14139Y13737* X14139Y13647* X13745Y13647* X13745Y13737* X12301Y13737* X12301Y13647* X11846Y13647* X11846Y13029* X14086Y13029* X14086Y11949* X12903Y11949* X12903Y11727* X11846Y11727* X11846Y9774* X12979Y13432D02* X12979Y13487D01* X13017Y13487* X13017Y13432* X12979Y13432* X14181Y13518D02* X14143Y13518D01* X14143Y13298* X14181Y13298* X14193Y13283* X14206Y13270* X14221Y13257* X14237Y13247* X14255Y13238* X14273Y13231* X14292Y13226* X14311Y13223* X14330Y13222* X14349Y13223* X14368Y13226* X14387Y13231* X14405Y13238* X14423Y13247* X14439Y13257* X14454Y13270* X14467Y13283* X14480Y13298* X14518Y13298* X14518Y13518* X14480Y13518* X14467Y13533* X14454Y13546* X14439Y13559* X14423Y13569* X14405Y13578* X14387Y13585* X14368Y13590* X14349Y13593* X14330Y13594* X14311Y13593* X14292Y13590* X14273Y13585* X14255Y13578* X14237Y13569* X14221Y13559* X14206Y13546* X14193Y13533* X14181Y13518* X13999Y13275D02* X13999Y13330D01* X14037Y13330* X14037Y13275* X13999Y13275* X12380Y13601D02* X12380Y13508D01* X12452Y13508* X12452Y13601* X12380Y13601* X12380Y13168D02* X12452Y13168D01* X12452Y13083* X12380Y13083* X12380Y13168* X13595Y13168D02* X13595Y13083D01* X13667Y13083* X13667Y13168* X13595Y13168* X13595Y13601D02* X13595Y13508D01* X13667Y13508* X13667Y13601* X13595Y13601* X12979Y13275D02* X12979Y13330D01* X13017Y13330* X13017Y13275* X12979Y13275* X13999Y13432D02* X13999Y13487D01* X14037Y13487* X14037Y13432* X13999Y13432* X13178Y13073D02* X13298Y13073D01* X13298Y13193* X13178Y13193* X13178Y13073* X13485Y13562D02* X13485Y13584D01* X13579Y13584* X13579Y13562* X13485Y13562* X13485Y13178D02* X13485Y13200D01* X13579Y13200* X13579Y13178* X13485Y13178* D12* X12038Y11625D02* X12063Y11650D01* X12838Y11650* X12863Y11625* X13113Y11625* X13188Y11700* X13338Y11700* X13388Y11650* X13388Y11575* X13413Y11550* X13738Y11550* X13763Y11575* X13763Y11750* X13838Y11825* X13913Y11825* X13963Y11775* X13963Y11725* X13938Y11700* X13888Y11700* X13863Y11675* X13863Y11450* X13963Y11350* X13963Y11225* X13938Y11200* X13413Y11200* X13363Y11150* X12363Y11150* X12313Y11200* X12113Y11200* X12038Y11275* X12038Y11625* X12355Y11160D02* X13371Y11160D01* X12346Y11169D02* X13380Y11169D01* X12337Y11178D02* X13389Y11178D01* X12328Y11187D02* X13398Y11187D01* X12319Y11196D02* X13407Y11196D01* X12110Y11205D02* X13941Y11205D01* X12101Y11214D02* X13950Y11214D01* X12092Y11223D02* X13959Y11223D01* X12083Y11232D02* X13961Y11232D01* X12074Y11241D02* X13961Y11241D01* X12065Y11250D02* X13961Y11250D01* X12056Y11259D02* X13961Y11259D01* X12047Y11268D02* X13961Y11268D01* X12040Y11277D02* X13961Y11277D01* X12040Y11286D02* X13961Y11286D01* X12040Y11295D02* X13961Y11295D01* X12040Y11304D02* X13961Y11304D01* X12040Y11313D02* X13961Y11313D01* X12040Y11322D02* X13961Y11322D01* X12040Y11331D02* X13961Y11331D01* X12040Y11340D02* X13961Y11340D01* X12040Y11349D02* X13961Y11349D01* X12040Y11358D02* X13953Y11358D01* X12040Y11367D02* X13944Y11367D01* X12040Y11376D02* X13935Y11376D01* X12040Y11385D02* X13926Y11385D01* X12040Y11394D02* X13917Y11394D01* X12040Y11403D02* X13908Y11403D01* X12040Y11412D02* X13899Y11412D01* X12040Y11421D02* X13890Y11421D01* X12040Y11430D02* X13881Y11430D01* X12040Y11439D02* X13872Y11439D01* X12040Y11448D02* X13863Y11448D01* X12040Y11457D02* X13861Y11457D01* X12040Y11466D02* X13861Y11466D01* X12040Y11475D02* X13861Y11475D01* X12040Y11484D02* X13861Y11484D01* X12040Y11493D02* X13861Y11493D01* X12040Y11502D02* X13861Y11502D01* X12040Y11511D02* X13861Y11511D01* X12040Y11520D02* X13861Y11520D01* X12040Y11529D02* X13861Y11529D01* X12040Y11538D02* X13861Y11538D01* X12040Y11547D02* X13861Y11547D01* X12040Y11556D02* X13405Y11556D01* X13746Y11556D02* X13861Y11556D01* X12040Y11565D02* X13396Y11565D01* X13755Y11565D02* X13861Y11565D01* X12040Y11574D02* X13387Y11574D01* X13764Y11574D02* X13861Y11574D01* X12040Y11583D02* X13386Y11583D01* X13765Y11583D02* X13861Y11583D01* X12040Y11592D02* X13386Y11592D01* X13765Y11592D02* X13861Y11592D01* X12040Y11601D02* X13386Y11601D01* X13765Y11601D02* X13861Y11601D01* X12040Y11610D02* X13386Y11610D01* X13765Y11610D02* X13861Y11610D01* X12040Y11619D02* X13386Y11619D01* X13765Y11619D02* X13861Y11619D01* X12043Y11628D02* X12858Y11628D01* X13118Y11628D02* X13386Y11628D01* X13765Y11628D02* X13861Y11628D01* X12052Y11637D02* X12849Y11637D01* X13127Y11637D02* X13386Y11637D01* X13765Y11637D02* X13861Y11637D01* X12061Y11646D02* X12840Y11646D01* X13136Y11646D02* X13386Y11646D01* X13765Y11646D02* X13861Y11646D01* X13145Y11655D02* X13381Y11655D01* X13765Y11655D02* X13861Y11655D01* X13154Y11664D02* X13372Y11664D01* X13765Y11664D02* X13861Y11664D01* X13163Y11673D02* X13363Y11673D01* X13765Y11673D02* X13861Y11673D01* X13172Y11682D02* X13354Y11682D01* X13765Y11682D02* X13868Y11682D01* X13181Y11691D02* X13345Y11691D01* X13765Y11691D02* X13877Y11691D01* X13765Y11700D02* X13936Y11700D01* X13765Y11709D02* X13945Y11709D01* X13765Y11718D02* X13954Y11718D01* X13765Y11727D02* X13961Y11727D01* X13765Y11736D02* X13961Y11736D01* X13765Y11745D02* X13961Y11745D01* X13769Y11754D02* X13961Y11754D01* X13778Y11763D02* X13961Y11763D01* X13787Y11772D02* X13961Y11772D01* X13796Y11781D02* X13955Y11781D01* X13805Y11790D02* X13946Y11790D01* X13814Y11799D02* X13937Y11799D01* X13823Y11808D02* X13928Y11808D01* X13832Y11817D02* X13919Y11817D01* X12388Y10865D02* X12388Y10945D01* X13163Y10945* X13163Y10865* X12388Y10865* X12390Y10875D02* X13161Y10875D01* X12390Y10884D02* X13161Y10884D01* X12390Y10893D02* X13161Y10893D01* X12390Y10902D02* X13161Y10902D01* X12390Y10911D02* X13161Y10911D01* X12390Y10920D02* X13161Y10920D01* X12390Y10929D02* X13161Y10929D01* X12390Y10938D02* X13161Y10938D01* D162* X12089Y13383D03* D165* X11928Y13383D03* X12408Y13383D03* D25* X12453Y11015D03* D29* X13073Y10543D03* D162* X12010Y13383D03* D166* X11998Y13133D03* D145* X12578Y9990D03* X12678Y9990D03* X13443Y9990D03* D162* X12325Y13383D03* X12168Y13383D03* D166* X12278Y13133D03* D145* X13543Y9990D03* D140* X13638Y9742D02* X13598Y9742D01* X13985Y9876D02* X13945Y9876D01* X13863Y10075D02* X13863Y10035D01* X13863Y10450D02* X13863Y10410D01* X13863Y10800D02* X13863Y10760D01* X13863Y11155D02* X13863Y11115D01* X14595Y10939D02* X14595Y10899D01* X14595Y10198D02* X14595Y10158D01* X14568Y9900D02* X14528Y9900D01* X14253Y9900D02* X14213Y9900D01* X12518Y9742D02* X12478Y9742D01* X12005Y9742D02* X11965Y9742D01* X11861Y9950D02* X11861Y9910D01* X11988Y10180D02* X11988Y10140D01* X12248Y10005D02* X12288Y10005D01* X11861Y10620D02* X11861Y10580D01* X11861Y11250D02* X11861Y11290D01* X11988Y11155D02* X11988Y11115D01* X11949Y11712D02* X11909Y11712D01* X12747Y11712D02* X12707Y11712D01* X12918Y11858D02* X12918Y11818D01* X13292Y11934D02* X13252Y11934D01* X14019Y11934D02* X13979Y11934D01* X14101Y12173D02* X14101Y12133D01* X14595Y12362D02* X14595Y12322D01* X14595Y13092D02* X14595Y13052D01* X14595Y13652D02* X14595Y13612D01* X14397Y13722D02* X14357Y13722D01* X13951Y13632D02* X13991Y13632D01* X13583Y13722D02* X13543Y13722D01* X12605Y13722D02* X12565Y13722D01* X12122Y13632D02* X12082Y13632D01* X11861Y13355D02* X11861Y13395D01* X12135Y13044D02* X12095Y13044D01* X12949Y13044D02* X12989Y13044D01* X13838Y13044D02* X13798Y13044D01* X14101Y12943D02* X14101Y12983D01* D23* X13238Y13705D03* X12812Y13705D03* D242* X12890Y13605D03* X13050Y13605D03* X13168Y13605D03* X13099Y13605D03* X12951Y13605D03* X13000Y13605D03* X13283Y13514D03* X13418Y13498D03* X13838Y13575D03* X14453Y13173D03* X14423Y13073D03* X14500Y12962D03* X14493Y12850D03* X14498Y12925D03* X14497Y12888D03* X14438Y12855D03* X14347Y12772D03* X14347Y12802D03* X14346Y12702D03* X14346Y12642D03* X14363Y12525D03* X14262Y12441D03* X14262Y12413D03* X14209Y12296D03* X14209Y12267D03* X14209Y12327D03* X14231Y12463D03* X14216Y12492D03* X14173Y12535D03* X14228Y12692D03* X14303Y12764D03* X14303Y12736D03* X14228Y12725D03* X14218Y12870D03* X14303Y12820D03* X14303Y12659D03* X14303Y12620D03* X14543Y12610D03* X14505Y12522D03* X14450Y12388D03* X14362Y12210D03* X14263Y12201D03* X14213Y12151D03* X14213Y11992D03* X14213Y11892D03* X14188Y11917D03* X14188Y11967D03* X14213Y12042D03* X14188Y12067D03* X14437Y12076D03* X14437Y11908D03* X14437Y11964D03* X14437Y12020D03* X14437Y11880D03* X14437Y11936D03* X14437Y11992D03* X14437Y12048D03* X14323Y11779D03* X14187Y11792D03* X14152Y11755D03* X14150Y11818D03* X14151Y11707D03* X14222Y11719D03* X14222Y11687D03* X14325Y11662D03* X14392Y11554D03* X14446Y11485D03* X14416Y11497D03* X14400Y11523D03* X14377Y11497D03* X14386Y11447D03* X14386Y11418D03* X14391Y11390D03* X14392Y11355D03* X14302Y11361D03* X14372Y11331D03* X14268Y11320D03* X14379Y11301D03* X14391Y11272D03* X14372Y11252D03* X14306Y11147D03* X14268Y11245D03* X14117Y11178D03* X14040Y11127D03* X14064Y11153D03* X14009Y11159D03* X13993Y11325D03* X14003Y11407D03* X14037Y11556D03* X13881Y11549D03* X13847Y11687D03* X13774Y11765D03* X13743Y11849D03* X13600Y11853D03* X13629Y11853D03* X13513Y11858D03* X13658Y11850D03* X13772Y11854D03* X13911Y11819D03* X13930Y11764D03* X13911Y11791D03* X13913Y11735D03* X13918Y11895D03* X13958Y11781D03* X13961Y11657D03* X13961Y11624D03* X14219Y11631D03* X14219Y11589D03* X14274Y11769D03* X14270Y10939D03* X14368Y10893D03* X14417Y10781D03* X14418Y10812D03* X14514Y10823D03* X14518Y10718D03* X14337Y10700D03* X14274Y10700D03* X14306Y10700D03* X14149Y10700D03* X14068Y10781D03* X14065Y10718D03* X14065Y10749D03* X13973Y10842D03* X13956Y10956D03* X13921Y10808D03* X13973Y10765D03* X14002Y10671D03* X14096Y10595D03* X14035Y10683D03* X14125Y10595D03* X14158Y10595D03* X14234Y10534D03* X14223Y10365D03* X14183Y10221D03* X14290Y10141D03* X14285Y10004D03* X14175Y9999D03* X14018Y10002D03* X13903Y10070D03* X13893Y10139D03* X13910Y10272D03* X13929Y10397D03* X13929Y10427D03* X13953Y10300D03* X13910Y10242D03* X13891Y10201D03* X13951Y10244D03* X14041Y10309D03* X14043Y10461D03* X14138Y10457D03* X13901Y10444D03* X13953Y10360D03* X13956Y10573D03* X13926Y10612D03* X13926Y10779D03* X13770Y10768D03* X13928Y10750D03* X13956Y10729D03* X13950Y10700D03* X13713Y10717D03* X13702Y10542D03* X13751Y10462D03* X13728Y10390D03* X13699Y10429D03* X13684Y10400D03* X13558Y10405D03* X13553Y10242D03* X13684Y10292D03* X13558Y10345D03* X13684Y10234D03* X13702Y10471D03* X13683Y10517D03* X13713Y10587D03* X13683Y10617D03* X13683Y10647D03* X13739Y10607D03* X13548Y10607D03* X13588Y10750D03* X13553Y10805D03* X13531Y10917D03* X13503Y10967D03* X13559Y10992D03* X13541Y11042D03* X13588Y11160D03* X13557Y10942D03* X13413Y10885D03* X13433Y10845D03* X13452Y10766D03* X13328Y10625D03* X13378Y10030D03* X13128Y9975D03* X13058Y10045D03* X12964Y9961D03* X12928Y9825D03* X13008Y9960D03* X13148Y9915D03* X13048Y9960D03* X13658Y9902D03* X13943Y10010D03* X14102Y10004D03* X14222Y10004D03* X14205Y10141D03* X14298Y10195D03* X14339Y10014D03* X14498Y10141D03* X14088Y10153D03* X14058Y10041D03* X14053Y9915D03* X14054Y10068D03* X13903Y10938D03* X13777Y10992D03* X13891Y11015D03* X14026Y11079D03* X13943Y11240D03* X14498Y11144D03* X14420Y11001D03* X14368Y10964D03* X13418Y11856D03* X13033Y11873D03* X13068Y13135D03* X13023Y13172D03* X12666Y13155D03* X12736Y13260D03* X12661Y13375D03* X12711Y13429D03* X12661Y13469D03* X12611Y13597D03* X12636Y13486D03* X12686Y13450D03* X12611Y13375D03* X12636Y13260D03* X12711Y13375D03* X12535Y13411D03* X12532Y13242D03* X12481Y13314D03* X12343Y13174D03* X12586Y13613D03* X12173Y10635D03* X12173Y10595D03* X12173Y10555D03* X12128Y10480D03* X12128Y10320D03* X12228Y10250D03* X12228Y10210D03* X12228Y10295D03* X12128Y10280D03* X11938Y10280D03* X12053Y10280D03* X12093Y10280D03* X12128Y10210D03* X12128Y10250D03* X12213Y10400D03* X12173Y10480D03* X12293Y9905D03* X12335Y9805D03* X12258Y9835D03* D11* X12150Y9858D02* X12153Y9858D01* X12156Y9858* X12166Y9848D02* X12166Y9845D01* X12166Y9842* X12156Y9832D02* X12153Y9832D01* X12150Y9832* X12140Y9842D02* X12140Y9845D01* X12140Y9848* X12000Y9798D02* X12003Y9798D01* X12006Y9798* X12016Y9788D02* X12016Y9785D01* X12016Y9782* X12006Y9772D02* X12003Y9772D01* X12000Y9772* X11990Y9782D02* X11990Y9785D01* X11990Y9788* X12485Y10083D02* X12488Y10083D01* X12491Y10083* X12501Y10073D02* X12501Y10070D01* X12501Y10067* X12491Y10057D02* X12488Y10057D01* X12485Y10057* X12475Y10067D02* X12475Y10070D01* X12475Y10073* X12560Y10083D02* X12563Y10083D01* X12566Y10083* X12576Y10073D02* X12576Y10070D01* X12576Y10067* X12566Y10057D02* X12563Y10057D01* X12560Y10057* X12550Y10067D02* X12550Y10070D01* X12550Y10073* X12560Y10208D02* X12563Y10208D01* X12566Y10208* X12576Y10198D02* X12576Y10195D01* X12576Y10192* X12566Y10182D02* X12563Y10182D01* X12560Y10182* X12550Y10192D02* X12550Y10195D01* X12550Y10198* X12635Y10208D02* X12638Y10208D01* X12641Y10208* X12651Y10198D02* X12651Y10195D01* X12651Y10192* X12641Y10182D02* X12638Y10182D01* X12635Y10182* X12625Y10192D02* X12625Y10195D01* X12625Y10198* X12750Y10208D02* X12753Y10208D01* X12756Y10208* X12766Y10198D02* X12766Y10195D01* X12766Y10192* X12756Y10182D02* X12753Y10182D01* X12750Y10182* X12740Y10192D02* X12740Y10195D01* X12740Y10198* X12835Y10208D02* X12838Y10208D01* X12841Y10208* X12851Y10198D02* X12851Y10195D01* X12851Y10192* X12841Y10182D02* X12838Y10182D01* X12835Y10182* X12825Y10192D02* X12825Y10195D01* X12825Y10198* X12835Y10083D02* X12838Y10083D01* X12841Y10083* X12851Y10073D02* X12851Y10070D01* X12851Y10067* X12841Y10057D02* X12838Y10057D01* X12835Y10057* X12825Y10067D02* X12825Y10070D01* X12825Y10073* X12960Y10058D02* X12963Y10058D01* X12966Y10058* X12976Y10048D02* X12976Y10045D01* X12976Y10042* X12966Y10032D02* X12963Y10032D01* X12960Y10032* X12950Y10042D02* X12950Y10045D01* X12950Y10048* X13110Y10083D02* X13113Y10083D01* X13116Y10083* X13126Y10073D02* X13126Y10070D01* X13126Y10067* X13116Y10057D02* X13113Y10057D01* X13110Y10057* X13100Y10067D02* X13100Y10070D01* X13100Y10073* X13160Y9988D02* X13163Y9988D01* X13166Y9988* X13176Y9978D02* X13176Y9975D01* X13176Y9972* X13166Y9962D02* X13163Y9962D01* X13160Y9962* X13150Y9972D02* X13150Y9975D01* X13150Y9978* X12955Y10008D02* X12958Y10008D01* X12961Y10008* X12971Y9998D02* X12971Y9995D01* X12971Y9992* X12961Y9982D02* X12958Y9982D01* X12955Y9982* X12945Y9992D02* X12945Y9995D01* X12945Y9998* X12910Y10083D02* X12913Y10083D01* X12916Y10083* X12926Y10073D02* X12926Y10070D01* X12926Y10067* X12916Y10057D02* X12913Y10057D01* X12910Y10057* X12900Y10067D02* X12900Y10070D01* X12900Y10073* X12910Y10208D02* X12913Y10208D01* X12916Y10208* X12926Y10198D02* X12926Y10195D01* X12926Y10192* X12916Y10182D02* X12913Y10182D01* X12910Y10182* X12900Y10192D02* X12900Y10195D01* X12900Y10198* X13060Y10208D02* X13063Y10208D01* X13066Y10208* X13076Y10198D02* X13076Y10195D01* X13076Y10192* X13066Y10182D02* X13063Y10182D01* X13060Y10182* X13050Y10192D02* X13050Y10195D01* X13050Y10198* X13110Y10208D02* X13113Y10208D01* X13116Y10208* X13126Y10198D02* X13126Y10195D01* X13126Y10192* X13116Y10182D02* X13113Y10182D01* X13110Y10182* X13100Y10192D02* X13100Y10195D01* X13100Y10198* X13160Y10208D02* X13163Y10208D01* X13166Y10208* X13176Y10198D02* X13176Y10195D01* X13176Y10192* X13166Y10182D02* X13163Y10182D01* X13160Y10182* X13150Y10192D02* X13150Y10195D01* X13150Y10198* X13305Y10208D02* X13308Y10208D01* X13311Y10208* X13321Y10198D02* X13321Y10195D01* X13321Y10192* X13311Y10182D02* X13308Y10182D01* X13305Y10182* X13295Y10192D02* X13295Y10195D01* X13295Y10198* X13465Y10208D02* X13468Y10208D01* X13471Y10208* X13481Y10198D02* X13481Y10195D01* X13481Y10192* X13471Y10182D02* X13468Y10182D01* X13465Y10182* X13455Y10192D02* X13455Y10195D01* X13455Y10198* X13550Y10218D02* X13553Y10218D01* X13556Y10218* X13566Y10208D02* X13566Y10205D01* X13566Y10202* X13556Y10192D02* X13553Y10192D01* X13550Y10192* X13540Y10202D02* X13540Y10205D01* X13540Y10208* X13385Y10208D02* X13388Y10208D01* X13391Y10208* X13401Y10198D02* X13401Y10195D01* X13401Y10192* X13391Y10182D02* X13388Y10182D01* X13385Y10182* X13375Y10192D02* X13375Y10195D01* X13375Y10198* X13385Y10083D02* X13388Y10083D01* X13391Y10083* X13401Y10073D02* X13401Y10070D01* X13401Y10067* X13391Y10057D02* X13388Y10057D01* X13385Y10057* X13375Y10067D02* X13375Y10070D01* X13375Y10073* X13465Y10083D02* X13468Y10083D01* X13471Y10083* X13481Y10073D02* X13481Y10070D01* X13481Y10067* X13471Y10057D02* X13468Y10057D01* X13465Y10057* X13455Y10067D02* X13455Y10070D01* X13455Y10073* X13305Y10083D02* X13308Y10083D01* X13311Y10083* X13321Y10073D02* X13321Y10070D01* X13321Y10067* X13311Y10057D02* X13308Y10057D01* X13305Y10057* X13295Y10067D02* X13295Y10070D01* X13295Y10073* X13210Y10208D02* X13213Y10208D01* X13216Y10208* X13226Y10198D02* X13226Y10195D01* X13226Y10192* X13216Y10182D02* X13213Y10182D01* X13210Y10182* X13200Y10192D02* X13200Y10195D01* X13200Y10198* X13010Y10208D02* X13013Y10208D01* X13016Y10208* X13026Y10198D02* X13026Y10195D01* X13026Y10192* X13016Y10182D02* X13013Y10182D01* X13010Y10182* X13000Y10192D02* X13000Y10195D01* X13000Y10198* X12750Y10083D02* X12753Y10083D01* X12756Y10083* X12766Y10073D02* X12766Y10070D01* X12766Y10067* X12756Y10057D02* X12753Y10057D01* X12750Y10057* X12740Y10067D02* X12740Y10070D01* X12740Y10073* X12635Y10083D02* X12638Y10083D01* X12641Y10083* X12651Y10073D02* X12651Y10070D01* X12651Y10067* X12641Y10057D02* X12638Y10057D01* X12635Y10057* X12625Y10067D02* X12625Y10070D01* X12625Y10073* X12685Y9913D02* X12688Y9913D01* X12691Y9913* X12701Y9903D02* X12701Y9900D01* X12701Y9897* X12691Y9887D02* X12688Y9887D01* X12685Y9887* X12675Y9897D02* X12675Y9900D01* X12675Y9903* X12760Y9883D02* X12763Y9883D01* X12766Y9883* X12776Y9873D02* X12776Y9870D01* X12776Y9867* X12766Y9857D02* X12763Y9857D01* X12760Y9857* X12750Y9867D02* X12750Y9870D01* X12750Y9873* X12760Y9835D02* X12763Y9835D01* X12766Y9835* X12776Y9825D02* X12776Y9822D01* X12776Y9819* X12766Y9809D02* X12763Y9809D01* X12760Y9809* X12750Y9819D02* X12750Y9822D01* X12750Y9825* X12485Y10208D02* X12488Y10208D01* X12491Y10208* X12501Y10198D02* X12501Y10195D01* X12501Y10192* X12491Y10182D02* X12488Y10182D01* X12485Y10182* X12475Y10192D02* X12475Y10195D01* X12475Y10198* X12175Y10723D02* X12178Y10723D01* X12181Y10723* X12191Y10713D02* X12191Y10710D01* X12191Y10707* X12181Y10697D02* X12178Y10697D01* X12175Y10697* X12165Y10707D02* X12165Y10710D01* X12165Y10713* X12130Y10723D02* X12133Y10723D01* X12136Y10723* X12146Y10713D02* X12146Y10710D01* X12146Y10707* X12136Y10697D02* X12133Y10697D01* X12130Y10697* X12120Y10707D02* X12120Y10710D01* X12120Y10713* X12075Y10678D02* X12078Y10678D01* X12081Y10678* X12091Y10668D02* X12091Y10665D01* X12091Y10662* X12081Y10652D02* X12078Y10652D01* X12075Y10652* X12065Y10662D02* X12065Y10665D01* X12065Y10668* X12025Y10678D02* X12028Y10678D01* X12031Y10678* X12041Y10668D02* X12041Y10665D01* X12041Y10662* X12031Y10652D02* X12028Y10652D01* X12025Y10652* X12015Y10662D02* X12015Y10665D01* X12015Y10668* X12035Y10923D02* X12038Y10923D01* X12041Y10923* X12051Y10913D02* X12051Y10910D01* X12051Y10907* X12041Y10897D02* X12038Y10897D01* X12035Y10897* X12025Y10907D02* X12025Y10910D01* X12025Y10913* X11935Y10923D02* X11938Y10923D01* X11941Y10923* X11951Y10913D02* X11951Y10910D01* X11951Y10907* X11941Y10897D02* X11938Y10897D01* X11935Y10897* X11925Y10907D02* X11925Y10910D01* X11925Y10913* X11985Y10923D02* X11988Y10923D01* X11991Y10923* X12001Y10913D02* X12001Y10910D01* X12001Y10907* X11991Y10897D02* X11988Y10897D01* X11985Y10897* X11975Y10907D02* X11975Y10910D01* X11975Y10913* X12085Y10923D02* X12088Y10923D01* X12091Y10923* X12101Y10913D02* X12101Y10910D01* X12101Y10907* X12091Y10897D02* X12088Y10897D01* X12085Y10897* X12075Y10907D02* X12075Y10910D01* X12075Y10913* X12130Y10878D02* X12133Y10878D01* X12136Y10878* X12146Y10868D02* X12146Y10865D01* X12146Y10862* X12136Y10852D02* X12133Y10852D01* X12130Y10852* X12120Y10862D02* X12120Y10865D01* X12120Y10868* X13690Y10139D02* X13693Y10139D01* X13696Y10139* X13706Y10129D02* X13706Y10126D01* X13706Y10123* X13696Y10113D02* X13693Y10113D01* X13690Y10113* X13680Y10123D02* X13680Y10126D01* X13680Y10129* X13750Y10143D02* X13753Y10143D01* X13756Y10143* X13766Y10133D02* X13766Y10130D01* X13766Y10127* X13756Y10117D02* X13753Y10117D01* X13750Y10117* X13740Y10127D02* X13740Y10130D01* X13740Y10133* X13910Y11568D02* X13913Y11568D01* X13916Y11568* X13926Y11558D02* X13926Y11555D01* X13926Y11552* X13916Y11542D02* X13913Y11542D01* X13910Y11542* X13900Y11552D02* X13900Y11555D01* X13900Y11558* X14375Y12892D02* X14378Y12892D01* X14381Y12892* X14391Y12882D02* X14391Y12879D01* X14391Y12876* X14381Y12866D02* X14378Y12866D01* X14375Y12866* X14365Y12876D02* X14365Y12879D01* X14365Y12882* X12345Y13233D02* X12348Y13233D01* X12351Y13233* X12361Y13223D02* X12361Y13220D01* X12361Y13217* X12351Y13207D02* X12348Y13207D01* X12345Y13207* X12335Y13217D02* X12335Y13220D01* X12335Y13223* X12345Y13283D02* X12348Y13283D01* X12351Y13283* X12361Y13273D02* X12361Y13270D01* X12361Y13267* X12351Y13257D02* X12348Y13257D01* X12345Y13257* X12335Y13267D02* X12335Y13270D01* X12335Y13273* X12125Y13258D02* X12128Y13258D01* X12131Y13258* X12141Y13248D02* X12141Y13245D01* X12141Y13242* X12131Y13232D02* X12128Y13232D01* X12125Y13232* X12115Y13242D02* X12115Y13245D01* X12115Y13248* X12125Y13533D02* X12128Y13533D01* X12131Y13533* X12141Y13523D02* X12141Y13520D01* X12141Y13517* X12131Y13507D02* X12128Y13507D01* X12125Y13507* X12115Y13517D02* X12115Y13520D01* X12115Y13523* D242* X12086Y13195D03* X11936Y13195D03* X12558Y13265D03* X12686Y13260D03* X12798Y13265D03* X12761Y13377D03* X12576Y13375D03* X12558Y13485D03* X12798Y13485D03* X12853Y13605D03* X12918Y13650D03* X13063Y13650D03* X13208Y13650D03* X12843Y13650D03* X12813Y13200D03* X12873Y13110D03* X12928Y13110D03* X12703Y13200D03* X13398Y13135D03* X13563Y13681D03* X13600Y13680D03* X14033Y13535D03* X14310Y13110D03* X14428Y13010D03* X14446Y12820D03* X14446Y12660D03* X14443Y12575D03* X14536Y12465D03* X14543Y12295D03* X14468Y12180D03* X14543Y12092D03* X14543Y12205D03* X14279Y12225D03* X14243Y12300D03* X14217Y12182D03* X14209Y12358D03* X14232Y12415D03* X14203Y12570D03* X14303Y12708D03* X14303Y12848D03* X14248Y12895D03* X14303Y12792D03* X14361Y12308D03* X14323Y12092D03* X14188Y12017D03* X14213Y11942D03* X14323Y11867D03* X14323Y11737D03* X14325Y11613D03* X14198Y11667D03* X14103Y11685D03* X14106Y11533D03* X14060Y11511D03* X13938Y11443D03* X13849Y11543D03* X13913Y11518D03* X13938Y11405D03* X13911Y11295D03* X14065Y11271D03* X14148Y11266D03* X14212Y11147D03* X14274Y11147D03* X14243Y11147D03* X14148Y11229D03* X14148Y11306D03* X14153Y11369D03* X14268Y11407D03* X14223Y11512D03* X14198Y11565D03* X14188Y11365D03* X14193Y11290D03* X14194Y11220D03* X14438Y11220D03* X14528Y11220D03* X14543Y11512D03* X14543Y11737D03* X14543Y11867D03* X14068Y11860D03* X14003Y11882D03* X13990Y11693D03* X14023Y11685D03* X13913Y11625D03* X13939Y11532D03* X14008Y11480D03* X14034Y11382D03* X13947Y11320D03* X13908Y11240D03* X13831Y11190D03* X13703Y11170D03* X13663Y11180D03* X13796Y11225D03* X13808Y11397D03* X13918Y11323D03* X13938Y11280D03* X14008Y11365D03* X14008Y11436D03* X13913Y11468D03* X13883Y11067D03* X13663Y11067D03* X13433Y11080D03* X13308Y11140D03* X13248Y11140D03* X13215Y11179D03* X13190Y11179D03* X13165Y11179D03* X13363Y11140D03* X13418Y11140D03* X13438Y10720D03* X13373Y10740D03* X13388Y10435D03* X13468Y10435D03* X13558Y10528D03* X13683Y10587D03* X13683Y10717D03* X13683Y10842D03* X13773Y10842D03* X13778Y10720D03* X13957Y10660D03* X14020Y10637D03* X14065Y10600D03* X13958Y10545D03* X13887Y10483D03* X13753Y10432D03* X13684Y10320D03* X13558Y10375D03* X13558Y10492D03* X13753Y10405D03* X13744Y10252D03* X13684Y10262D03* X13693Y10170D03* X13553Y10135D03* X13573Y9950D03* X13538Y9940D03* X13518Y9775D03* X13623Y9790D03* X13573Y9790D03* X13713Y9780D03* X13733Y9905D03* X13753Y9870D03* X13783Y9932D03* X13921Y9920D03* X14025Y9910D03* X13970Y9910D03* X13988Y10010D03* X13973Y10135D03* X13863Y10114D03* X13713Y10085D03* X13747Y10164D03* X13751Y10208D03* X13744Y10290D03* X13744Y10320D03* X13941Y10272D03* X14003Y10365D03* X14088Y10365D03* X14108Y10225D03* X14113Y10136D03* X14133Y10004D03* X14053Y9999D03* X14257Y10004D03* X14353Y10135D03* X14438Y10080D03* X14498Y9990D03* X14528Y9990D03* X14488Y10555D03* X14428Y10555D03* X14335Y10581D03* X14219Y10600D03* X14375Y10592D03* X14381Y10561D03* X14417Y10749D03* X14419Y10875D03* X14398Y11027D03* X14513Y10905D03* X14513Y10855D03* X14368Y10795D03* X14205Y10906D03* X14066Y10938D03* X14091Y10906D03* X13974Y10927D03* X14068Y10844D03* X13948Y10905D03* X13973Y10875D03* X14066Y10983D03* X14083Y10460D03* X14003Y10395D03* X14139Y10406D03* X14183Y10365D03* X14124Y10379D03* X13901Y10173D03* X13468Y10300D03* X13308Y10300D03* X13193Y10300D03* X13113Y10300D03* X13033Y10300D03* X12918Y10300D03* X12918Y10435D03* X12838Y10435D03* X12758Y10435D03* X12758Y10300D03* X12643Y10300D03* X12563Y10300D03* X12563Y10435D03* X12483Y10435D03* X12483Y10300D03* X12448Y10060D03* X12413Y10060D03* X12378Y10060D03* X12333Y9905D03* X12438Y9790D03* X12591Y9805D03* X12763Y9780D03* X12828Y9780D03* X12853Y10035D03* X12783Y10035D03* X12838Y10300D03* X13033Y10435D03* X13193Y10435D03* X13308Y10435D03* X13113Y10435D03* X13388Y10300D03* X13273Y10060D03* X13288Y9895D03* X13223Y9895D03* X13373Y9895D03* X13423Y9840D03* X13373Y9745D03* X13331Y9745D03* X13331Y9895D03* X13378Y9930D03* X13323Y9930D03* X13238Y10060D03* X13203Y10060D03* X13288Y9745D03* X12643Y10435D03* X12318Y10825D03* X12203Y10865D03* X12200Y11215D03* X12105Y11220D03* X12260Y11205D03* X12353Y11250D03* X12413Y11320D03* X12443Y11320D03* X12383Y11320D03* X12335Y11327D03* X12138Y11250D03* X12043Y11250D03* X11983Y10665D03* X12048Y10570D03* X11983Y10630D03* X12128Y10155D03* X12128Y10110D03* X12128Y10065D03* X12003Y9910D03* X12338Y11640D03* X12371Y11671D03* X12465Y11669D03* X13123Y11822D03* X13298Y11870D03* X13388Y11835D03* X13513Y11815D03* X13658Y11820D03* D235* X13510Y11787D03* X13428Y11796D03* X13423Y11659D03* X13441Y11500D03* X13560Y11522D03* X13583Y11555D03* X13721Y11544D03* X13842Y11581D03* X13741Y11570D03* X13689Y11629D03* X13547Y11655D03* X13463Y11570D03* X13463Y11540D03* X13578Y11465D03* X13603Y11403D03* X13538Y11465D03* X13398Y11500D03* X13343Y11349D03* X13285Y11360D03* X13336Y11262D03* X13335Y11186D03* X13363Y11225D03* X13683Y11336D03* X13769Y11285D03* X13746Y11410D03* X13776Y11352D03* X13694Y11411D03* X13780Y11329D03* X13741Y11359D03* X13778Y11505D03* X13721Y11615D03* X13680Y11753D03* X13643Y11693D03* X13587Y11803D03* X13571Y11655D03* X13613Y11698D03* X13741Y11641D03* X13774Y11621D03* X13778Y11529D03* X13715Y11570D03* X13720Y11411D03* X13721Y11518D03* X13632Y11615D03* X13588Y11600D03* X13536Y11718D03* X13541Y11846D03* X13366Y11857D03* X13338Y11860D03* X13344Y11817D03* X13243Y11873D03* X13121Y11878D03* X13123Y11760D03* X13185Y11530D03* X13939Y11367D03* D11* X13122Y11701D02* X13123Y11701D01* X13124Y11701* X13134Y11691D02* X13134Y11690D01* X13134Y11689* X13124Y11679D02* X13123Y11679D01* X13122Y11679* X13112Y11689D02* X13112Y11690D01* X13112Y11691* D235* X13226Y11720D03* X13362Y11747D03* X13382Y11697D03* X13372Y11665D03* X13336Y11747D03* X13311Y11747D03* X13331Y11697D03* X13307Y11645D03* X13285Y11641D03* X13306Y11595D03* X13343Y11631D03* X13254Y11570D03* X13165Y11482D03* X13165Y11325D03* X13133Y11293D03* X13133Y11325D03* X13165Y11357D03* X13133Y11357D03* X13165Y11388D03* X13133Y11388D03* X13165Y11451D03* X13285Y11513D03* X13343Y11580D03* X13343Y11557D03* X13357Y11697D03* X13346Y11665D03* X13343Y11534D03* X13253Y11467D03* X13133Y11482D03* X13102Y11482D03* X12998Y11545D03* X12913Y11451D03* X12881Y11451D03* X12913Y11388D03* X12881Y11388D03* X12913Y11357D03* X12881Y11357D03* X12913Y11325D03* X12881Y11325D03* X12913Y11293D03* X12913Y11482D03* X12790Y11482D03* X12758Y11482D03* X12727Y11482D03* X12881Y11513D03* X12945Y11545D03* X12913Y11545D03* X12913Y11577D03* X12945Y11577D03* X12920Y11646D03* X12913Y11513D03* X12790Y11451D03* X12758Y11293D03* X12790Y11325D03* X12758Y11325D03* X12790Y11357D03* X12758Y11357D03* X12743Y11255D03* X12790Y11388D03* X12848Y11260D03* X12833Y11240D03* X12938Y11285D03* X12998Y11194D03* X13026Y11339D03* X12998Y11220D03* X12945Y11357D03* X12945Y11513D03* X13133Y11513D03* X13238Y11431D03* X13376Y11474D03* X13285Y11462D03* X13343Y11402D03* X13343Y11379D03* X13408Y11262D03* X13592Y11262D03* X13583Y11325D03* X13645Y11403D03* X13776Y11375D03* X13776Y11410D03* X13911Y11434D03* X13911Y11408D03* X13911Y11367D03* X13927Y11348D03* X13780Y11306D03* X13778Y11481D03* X13628Y11465D03* X13740Y11461D03* X13658Y11490D03* X13538Y11510D03* X13613Y11510D03* X13583Y11357D03* X13628Y11225D03* X13618Y11262D03* X13663Y11370D03* X13639Y11370D03* X13458Y11375D03* X13458Y11350D03* X13423Y11225D03* X13459Y11262D03* X13475Y11225D03* X13510Y11262D03* X13484Y11282D03* X13449Y11225D03* X13458Y11320D03* X13434Y11283D03* X13398Y11225D03* X13408Y11320D03* X13280Y11313D03* X13285Y11385D03* X13245Y11399D03* X13343Y11425D03* X13343Y11449D03* X13212Y11432D03* X13229Y11467D03* X13249Y11528D03* X13306Y11539D03* X13165Y11545D03* X13102Y11513D03* X13133Y11545D03* X13102Y11545D03* X13088Y11635D03* X13028Y11740D03* X13113Y11645D03* X13133Y11635D03* X13133Y11577D03* X13306Y11569D03* X13343Y11605D03* X13280Y11723D03* X13358Y11790D03* X13473Y11808D03* X13587Y11778D03* X13658Y11790D03* X13690Y11718D03* X13770Y11695D03* X13777Y11576D03* X13808Y11488D03* X13683Y11465D03* X13717Y11310D03* X13644Y11262D03* X13654Y11225D03* X13746Y11313D03* X13741Y11262D03* X13536Y11319D03* X13372Y11320D03* X13360Y11259D03* X13448Y11190D03* X13295Y11226D03* X13307Y11311D03* X13193Y11333D03* X13102Y11357D03* X13040Y11404D03* X12945Y11482D03* X12881Y11545D03* X12758Y11513D03* X12758Y11388D03* X12727Y11513D03* X12569Y11545D03* X12506Y11513D03* X12538Y11482D03* X12538Y11451D03* X12538Y11545D03* X12538Y11577D03* X12570Y11577D03* X12506Y11451D03* X12538Y11388D03* X12506Y11388D03* X12538Y11357D03* X12506Y11357D03* X12538Y11325D03* X12506Y11325D03* X12538Y11293D03* X12570Y11357D03* X12538Y11513D03* X12570Y11513D03* X12506Y11545D03* X12570Y11482D03* X12506Y11482D03* X12335Y11485D03* X12296Y11563D03* X12257Y11485D03* X12296Y11485D03* X12257Y11445D03* X12296Y11406D03* X12257Y11406D03* X12296Y11366D03* X12257Y11366D03* X12218Y11485D03* X12218Y11445D03* X12335Y11445D03* X12335Y11406D03* X12218Y11406D03* X12059Y11406D03* X12138Y11326D03* X12218Y11366D03* X12335Y11366D03* X12218Y11326D03* X12178Y11326D03* X12059Y11326D03* X12099Y11326D03* X12178Y11366D03* X12138Y11366D03* X12059Y11366D03* X12099Y11485D03* X12059Y11485D03* X12138Y11485D03* X12178Y11485D03* X12099Y11563D03* X12059Y11563D03* X12020Y11563D03* X12138Y11563D03* X12218Y11563D03* X12178Y11445D03* X12178Y11285D03* X12099Y11366D03* X12138Y11406D03* X12178Y11406D03* X12138Y11445D03* X12059Y11445D03* X12099Y11406D03* X12099Y11445D03* X12099Y11603D03* X12178Y11563D03* X12257Y11563D03* X12296Y11445D03* X12257Y11326D03* X12296Y11326D03* X12257Y11287D03* X12098Y11285D03* X12096Y11680D03* X12165Y11675D03* X12253Y11640D03* X12335Y11563D03* X12506Y11577D03* X12588Y11605D03* X12727Y11577D03* X12790Y11545D03* X12758Y11545D03* X12727Y11545D03* X12758Y11577D03* X12881Y11577D03* X12881Y11482D03* X13006Y11465D03* X12995Y11640D03* X13102Y11577D03* X13033Y11690D03* X13018Y11848D03* X13028Y11765D03* X13018Y11810D03* X13051Y11640D03* X13165Y11577D03* X13205Y11467D03* X13343Y11502D03* X13332Y11311D03* X13162Y11296D03* X12976Y11293D03* X12881Y11293D03* X13070Y11293D03* X13070Y11451D03* X13070Y11357D03* X12976Y11388D03* X12976Y11357D03* X12727Y11357D03* X12695Y11357D03* X12695Y11388D03* X12631Y11465D03* X12695Y11420D03* X12695Y11293D03* X12601Y11293D03* X12506Y11293D03* X12601Y11357D03* X12601Y11388D03* X12790Y11293D03* X12790Y11577D03* X12703Y11605D03* X13223Y11630D03* X13308Y11695D03* X13298Y11808D03* X13223Y11755D03* X13223Y11391D03* X13500Y11225D03* X13522Y11655D03* X13631Y11655D03* X13770Y11644D03* X13851Y11619D03* X13743Y11695D03* X13698Y11808D03* X13808Y11825D03* X13743Y11720D03* X13718Y11720D03* X13718Y11695D03* X13835Y11712D03* X13564Y11720D03* X13678Y11569D03* X12040Y11680D03* D15* X12059Y11563D02* X12092Y11530D01* X12433Y11530* X12521Y11529D02* X12506Y11513D01* X12521Y11529D02* X12842Y11529D01* X12858Y11513* X12881Y11513* X12750Y11447D02* X12613Y11447D01* X12594Y11466* X12554Y11466D02* X12538Y11482D01* X12554Y11466D02* X12594Y11466D01* X12750Y11447D02* X12762Y11435D01* X12828Y11435* X12859Y11466* X12897Y11466* X12913Y11482* X13102Y11482D02* X13118Y11466D01* X13173Y11466* X13141Y11482D02* X13133Y11482D01* X13141Y11482D02* X13157Y11498D01* X13272Y11498* X13273Y11497* X13319Y11497* X13331Y11485* X13348Y11485* X13379Y11516* X13407Y11516* X13575Y11493D02* X13622Y11446D01* X13639Y11446* X13815Y11464D02* X13827Y11476D01* X13827Y11504* X13806Y11352D02* X13776Y11352D01* X13806Y11352D02* X13894Y11264D01* X13919Y11264* X13943Y11240* X13911Y11367D02* X13910Y11368D01* X13810Y11368* X13808Y11523D02* X13808Y11728D01* X13844Y11764* X13930Y11764* X13796Y11731D02* X13796Y11523D01* X13778Y11505* X13808Y11523D02* X13827Y11504D01* X13815Y11464D02* X13773Y11464D01* X13761Y11452* X13761Y11402* X13741Y11382* X13741Y11359* X13776Y11410D02* X13849Y11483D01* X13849Y11543* X13785Y11393D02* X13810Y11368D01* X13785Y11393D02* X13768Y11393D01* X13757Y11382* X13757Y11350* X13748Y11341* X13731Y11341* X13673Y11399* X13673Y11412* X13639Y11446* X13575Y11493D02* X13555Y11493D01* X13538Y11510* X13419Y11504D02* X13407Y11516D01* X13419Y11504D02* X13419Y11493D01* X13456Y11456* X13483Y11456* X13583Y11357* X13530Y11343D02* X13380Y11493D01* X13371Y11493* X13192Y11485D02* X13173Y11466D01* X13192Y11485D02* X13306Y11485D01* X13316Y11475* X13353Y11475* X13371Y11493* X13334Y11465D02* X13241Y11372D01* X13059Y11372* X12993Y11341D02* X12853Y11341D01* X12837Y11325* X12790Y11325* X12774Y11341D02* X12758Y11325D01* X12774Y11341D02* X12827Y11341D01* X12858Y11372* X13011Y11359D02* X12993Y11341D01* X13011Y11359D02* X13046Y11359D01* X13059Y11372* X13040Y11372D02* X12858Y11372D01* X13040Y11372D02* X13072Y11404D01* X13208Y11404* X13334Y11465D02* X13367Y11465D01* X13376Y11474* X13250Y11415D02* X13219Y11415D01* X13208Y11404* X13250Y11415D02* X13285Y11450D01* X13285Y11462* X13163Y11423D02* X13030Y11423D01* X13011Y11404* X12678Y11404* X12807Y11374D02* X12790Y11357D01* X12807Y11374D02* X12807Y11404D01* X12678Y11404D02* X12657Y11425D01* X12416Y11425* X12376Y11465* X12277Y11465* X12257Y11445* X12257Y11406D02* X12277Y11386D01* X12476Y11386* X12490Y11372* X12774Y11372* X12790Y11388* X12821Y11274D02* X12386Y11274D01* X12380Y11280* X12369Y11425D02* X12250Y11425D01* X12230Y11445* X12237Y11504D02* X12378Y11504D01* X12431Y11451* X12506Y11451* X12388Y11406D02* X12369Y11425D01* X12230Y11445D02* X12218Y11445D01* X12218Y11485D02* X12237Y11504D01* X12218Y11406D02* X12198Y11386D01* X12198Y11315* X12242Y11271* X12319Y11271* X12328Y11280* X12380Y11280* X12388Y11406D02* X12488Y11406D01* X12506Y11388* X12556Y11307D02* X12556Y11274D01* X12556Y11307D02* X12538Y11325D01* X12481Y11300D02* X12362Y11299D01* X12355Y11306* X12218Y11355D02* X12218Y11366D01* X12218Y11355D02* X12238Y11335D01* X12238Y11318* X12250Y11306* X12355Y11306* X12481Y11300D02* X12490Y11309D01* X12522Y11309* X12538Y11293* X12693Y11262D02* X12734Y11221D01* X12951Y11221* X12828Y11281D02* X12821Y11274D01* X12828Y11281D02* X12861Y11281D01* X12875Y11267* X13236Y11267* X13260Y11291* X13219Y11450D02* X13190Y11450D01* X13163Y11423* X13238Y11431D02* X13219Y11450D01* X13260Y11291D02* X13411Y11291D01* X13434Y11314* X13530Y11343D02* X13537Y11343D01* X13618Y11262* X13458Y11286D02* X13458Y11320D01* X13434Y11314D02* X13434Y11351D01* X13458Y11375* X13432Y11242D02* X13449Y11225D01* X13432Y11242D02* X13285Y11242D01* X13281Y11238* X12968Y11238* X12951Y11221* X13076Y11176D02* X12383Y11176D01* X12311Y11248* X12376Y11262D02* X12693Y11262D01* X12672Y11309D02* X13004Y11309D01* X13036Y11277* X13106Y11206D02* X13076Y11176D01* X13238Y11168D02* X13366Y11168D01* X13405Y11207* X13498Y11246D02* X13458Y11286D01* X13498Y11246D02* X13506Y11246D01* X13517Y11235* X13517Y11217* X13507Y11207* X13405Y11207* X13379Y11206D02* X13106Y11206D01* X13231Y11161D02* X13238Y11168D01* X13231Y11161D02* X12378Y11161D01* X12303Y11236* X12368Y11270D02* X12376Y11262D01* X12368Y11270D02* X12336Y11270D01* X12326Y11260* X12234Y11260* X12178Y11316* X12178Y11326* X12178Y11236D02* X12303Y11236D01* X12178Y11236D02* X12170Y11228D01* X12128Y11228* X12079Y11277* X12079Y11336* X12089Y11346* X12118Y11346* X12138Y11326* X12099Y11326D02* X12177Y11248D01* X12311Y11248* X12363Y11341D02* X12640Y11341D01* X12672Y11309* X12686Y11484D02* X12603Y11484D01* X12589Y11498* X12465Y11498D02* X12433Y11530D01* X12465Y11498D02* X12514Y11498D01* X12529Y11513* X12538Y11513* X12477Y11613D02* X12235Y11613D01* X12226Y11622* X12079Y11583D02* X12099Y11563D01* X12079Y11583D02* X12079Y11610D01* X12091Y11622* X12226Y11622* X12237Y11544D02* X12379Y11544D01* X12380Y11545* X12477Y11613D02* X12500Y11636D01* X12738Y11636* X12760Y11614* X13149Y11614* X13197Y11662* X13318Y11662* X13332Y11648* X13352Y11648* X13361Y11639* X13361Y11547* X13348Y11534* X13343Y11534* X13289Y11545D02* X13165Y11545D01* X13023Y11529D02* X12992Y11498D01* X12843Y11498* X12828Y11513D02* X12758Y11513D01* X12828Y11513D02* X12843Y11498D01* X12847Y11561D02* X12522Y11561D01* X12506Y11545* X12380Y11545* X12237Y11544D02* X12218Y11563D01* X12099Y11603D02* X12488Y11603D01* X12510Y11625* X12623Y11625D02* X12671Y11577D01* X12727Y11577* X12847Y11561D02* X12863Y11545D01* X12881Y11545* X13023Y11529D02* X13109Y11529D01* X13125Y11513* X13133Y11513* X13289Y11545D02* X13298Y11554D01* X13317Y11554* X13323Y11560* X13323Y11585* X13343Y11605* X13285Y11590D02* X13306Y11569D01* X13165Y11545D02* X13149Y11529D01* X13124Y11529* X13117Y11536* X13117Y11554* X13110Y11561* X13040Y11561* X13008Y11529* X12861Y11529* X12845Y11545* X12790Y11545* X12753Y11603D02* X12727Y11577D01* X12753Y11603D02* X12982Y11603D01* X13008Y11577* X13156Y11594D02* X13249Y11594D01* X13253Y11590* X13285Y11590* X13156Y11594D02* X13149Y11587D01* X13149Y11561* X13133Y11545* X13102Y11577D02* X13008Y11577D01* X13084Y11498D02* X13142Y11498D01* X13155Y11511* X13305Y11518D02* X13358Y11518D01* X13368Y11528* X13445Y11528D02* X13604Y11369D01* X13604Y11340* X13644Y11300D02* X13644Y11262D01* X13644Y11300D02* X13604Y11340D01* X13680Y11247D02* X13746Y11313D01* X13680Y11247D02* X13575Y11247D01* X13483Y11339* X13398Y11225D02* X13379Y11206D01* X13392Y11339D02* X13445Y11392D01* X13466Y11392* X13445Y11528D02* X13368Y11528D01* X13305Y11518D02* X13294Y11529D01* X13273Y11529* X13255Y11511* X13155Y11511* X13084Y11498D02* X13068Y11482D01* X12945Y11482* X12844Y11466D02* X12704Y11466D01* X12686Y11484* X12514Y11482D02* X12454Y11482D01* X12510Y11625D02* X12623Y11625D01* X12589Y11498D02* X12530Y11498D01* X12514Y11482* X12420Y11516D02* X12100Y11516D01* X12079Y11495* X12079Y11465D02* X12059Y11445D01* X12079Y11465D02* X12079Y11495D01* X12118Y11425D02* X12229Y11425D01* X12237Y11417* X12357Y11347D02* X12363Y11341D01* X12357Y11347D02* X12248Y11347D01* X12237Y11358* X12237Y11417* X12118Y11425D02* X12099Y11406D01* X12454Y11482D02* X12420Y11516D01* X12860Y11482D02* X12844Y11466D01* X12860Y11482D02* X12881Y11482D01* X13036Y11277D02* X13185Y11277D01* X13237Y11329* X13363Y11339D02* X13392Y11339D01* X13483Y11339D02* X13483Y11375D01* X13466Y11392* X13363Y11339D02* X13353Y11329D01* X13237Y11329* X13796Y11731D02* X13856Y11791D01* X13911Y11791* X10763Y4875D02* X10846Y4911* X10835Y4901D01* X10773Y4901* X10763Y4911* X10763Y4989* X10773Y5000* X10835Y5000* X10846Y4989* X10888Y4875D02* X10924Y4901* X10924Y5000D01* X10903Y4979* X11013Y4875D02* X11049Y4901* X11049Y5000D01* X11028Y4979* X11138Y4875D02* X11190Y4901* X11190Y5000D01* X11138Y4937* X11210Y4937* X11263Y4875D02* X11263Y4989* X11273Y5000D01* X11325Y5000* X11335Y4989* X11335Y4963* X11325Y4953* X11294Y4953* X11325Y4953* X11335Y4942* X11335Y4911* X11325Y4901* X11273Y4901* X11263Y4911* X11388Y4875D02* X11460Y4911* X11450Y4901D01* X11398Y4901* X11388Y4911* X11388Y4989* X11398Y5000* X11450Y5000* X11460Y4989* X11460Y4911* X11388Y4911D02* X11460Y4989D01* X11513Y4875D02* X11763Y4875* X11763Y4989* X11773Y5000D01* X11825Y5000* X11835Y4989* X11835Y4968* X11825Y4958* X11763Y4901* X11835Y4901* X11888Y4875D02* X11888Y4911* X11898Y4901D01* X11950Y4901* X11960Y4911* X11960Y4947* X11950Y4958* X11898Y4958* X11888Y4947* X11888Y5000* X11960Y5000* X12013Y4875D02* X12023Y4953* X12085Y4953D01* X12138Y4875D02* X12210Y4911* X12200Y4901D01* X12148Y4901* X12138Y4911* X12138Y4989* X12148Y5000* X12200Y5000* X12210Y4989* X12210Y4911* X12138Y4911D02* X12210Y4989D01* X12263Y4875D02* X12263Y4989* X12273Y5000D01* X12325Y5000* X12335Y4989* X12335Y4963* X12325Y4953* X12294Y4953* X12325Y4953* X12335Y4942* X12335Y4911* X12325Y4901* X12273Y4901* X12263Y4911* X12388Y4875D02* X12398Y4953* X12460Y4953D01* X12513Y4875D02* X12585Y4911* X12575Y4901D01* X12523Y4901* X12513Y4911* X12513Y4989* X12523Y5000* X12575Y5000* X12585Y4989* X12585Y4911* X12513Y4911D02* X12585Y4989D01* X12638Y4875D02* X12690Y4901* X12690Y5000D01* X12638Y4937* X12710Y4937* X12763Y4875D02* D16* X16063Y6175* X16121Y6216* X16121Y6375D01* X16088Y6341* X16263Y6175D02* X15863Y5525* X15921Y5566* X15921Y5725D01* X15888Y5691* X16063Y5525D02* X16113Y5566* X16104Y5566D01* X16104Y5575* X16113Y5575* X16113Y5566* X16113Y5650D02* X16104Y5650D01* X16104Y5658* X16113Y5658* X16113Y5650* X16263Y5525D02* X16321Y5566* X16321Y5725D01* X16288Y5691* X16463Y5525D02* X10913Y6875* X10913Y6947* X10933Y6927D01* X11038Y6927* X11058Y6947* X11058Y7010* X11038Y7031* X10933Y7031* X10913Y7052* X10913Y7104* X10933Y7125* X11038Y7125* X11058Y7104* X11163Y6875D02* X11163Y6927* X11163Y7125D01* X11163Y7031D02* X11173Y7031D01* X11308Y7125* X11173Y7031D02* X11308Y6927D01* X11413Y6875D02* X11413Y7125* X11496Y7031D01* X11579Y7125* X11496Y7031D02* X11496Y6927D01* X11663Y6875D02* X11746Y7010* X11829Y7010D01* X11829Y6947* X11808Y6927* X11683Y6927* X11663Y6947* X11663Y7104* X11683Y7125* X11808Y7125* X11829Y7104* X11913Y6875D02* X11913Y7125* X11913Y6947D01* X11933Y6927* X12058Y6927* X12079Y6947* X12079Y7125* X12163Y6875D02* X12163Y6927* X12246Y7125D01* X12329Y6927* X12194Y7000D02* X12298Y7000D01* X12413Y6875D02* X12413Y6927* X12413Y7125D01* X12558Y7125* X12579Y7104* X12579Y7052* X12558Y7031* X12413Y7031* X12538Y7031D02* X12558Y7031D01* X12579Y6927* X12663Y6875D02* X12663Y6927* X12663Y7125D01* X12808Y7125* X12829Y7093* X12829Y6958* X12808Y6927* X12663Y6927* X12913Y6875D02* X13079Y6875* X13163Y6875* X13308Y6927* X13163Y6927D01* X13163Y7125* X13413Y6875D02* X13496Y6927* X13496Y7125D01* X13454Y6927D02* X13538Y6927D01* X13454Y7125D02* X13538Y7125D01* X13663Y6875D02* X13663Y6927* X13663Y7125D01* X13756Y6927* X13850Y7125* X13850Y6927* X13913Y6875D02* X13996Y6927* X13996Y7125D01* X13954Y6927D02* X14038Y6927D01* X13954Y7125D02* X14038Y7125D01* X14163Y6875D02* X14163Y7125* X14329Y7125D01* X14246Y7125D02* X14246Y6927D01* X14413Y6875D02* X14558Y6927* X14413Y6927D01* X14413Y7125* X14558Y7125* X14558Y7031D02* X14413Y7031D01* X14663Y6875D02* X14663Y6927* X14663Y7125D01* X14808Y7125* X14829Y7093* X14829Y6958* X14808Y6927* X14663Y6927* X14913Y6875D02* X11163Y6225* X11163Y6297* X11183Y6277D01* X11288Y6277* X11308Y6297* X11308Y6360* X11288Y6381* X11183Y6381* X11163Y6402* X11163Y6454* X11183Y6475* X11288Y6475* X11308Y6454* X11413Y6225D02* X11413Y6277* X11413Y6475D01* X11413Y6381D02* X11423Y6381D01* X11558Y6475* X11423Y6381D02* X11558Y6277D01* X11663Y6225D02* X11663Y6475* X11746Y6381D01* X11829Y6475* X11746Y6381D02* X11746Y6277D01* X11913Y6225D02* X11913Y6277* X11913Y6475D01* X12006Y6277* X12100Y6475* X12100Y6277* X12163Y6225D02* X12246Y6277* X12246Y6475D01* X12204Y6277D02* X12288Y6277D01* X12204Y6475D02* X12288Y6475D01* X12413Y6225D02* X12413Y6277* X12413Y6475D01* X12579Y6277* X12579Y6475* X12663Y6225D02* X12663Y6277* X12663Y6475D01* X12808Y6475* X12829Y6443* X12829Y6308* X12808Y6277* X12663Y6277* X12913Y6225D02* X13058Y6277* X12913Y6277D01* X12913Y6475* X13058Y6475* X13058Y6381D02* X12913Y6381D01* X13163Y6225D02* X13163Y6277* X13163Y6475D01* X13308Y6475* X13329Y6454* X13329Y6402* X13308Y6381* X13163Y6381* X13288Y6381D02* X13308Y6381D01* X13329Y6277* X13413Y6225D02* X13579Y6225* X13663Y6225* X13663Y6277* X13663Y6475D01* X13808Y6475* X13829Y6454* X13829Y6402* X13808Y6381* X13663Y6381* X13913Y6225D02* X14079Y6297* X14058Y6277D01* X13933Y6277* X13913Y6297* X13913Y6454* X13933Y6475* X14058Y6475* X14079Y6454* X14163Y6225D02* X14163Y6277* X14163Y6475D01* X14308Y6475* X14329Y6454* X14329Y6402* X14308Y6381* X14163Y6381D02* X14308Y6381D01* X14329Y6360* X14329Y6297* X14308Y6277* X14163Y6277* X14413Y6225D02* X13013Y4825* X13013Y4897* X13033Y4877D01* X13138Y4877* X13158Y4897* X13158Y4960* X13138Y4981* X13033Y4981* X13013Y5002* X13013Y5054* X13033Y5075* X13138Y5075* X13158Y5054* X13263Y4825D02* X13263Y4877* X13263Y5075D01* X13263Y4981D02* X13273Y4981D01* X13408Y5075* X13273Y4981D02* X13408Y4877D01* X13513Y4825D02* X13658Y4897* X13638Y4877D01* X13533Y4877* X13513Y4897* X13513Y5054* X13533Y5075* X13638Y5075* X13658Y5054* X13658Y4897* X13513Y4897D02* X13658Y5054D01* X13763Y4825D02* X13908Y4897* X13888Y4877D01* X13783Y4877* X13763Y4897* X13763Y5054* X13783Y5075* X13888Y5075* X13908Y5054* X13908Y4897* X13763Y4897D02* X13908Y5054D01* X14013Y4825D02* X14117Y4877* X14117Y5075D01* X14013Y4950* X14158Y4950* X14263Y4825D02* X14325Y4877* X14315Y4877D01* X14315Y4887* X14325Y4887* X14325Y4877* X14513Y4825D02* X14658Y4897* X14638Y4877D01* X14533Y4877* X14513Y4897* X14513Y5054* X14533Y5075* X14638Y5075* X14658Y5054* X14658Y4897* X14513Y4897D02* X14658Y5054D01* X14763Y4825D02* X14835Y4877* X14835Y5075D01* X14794Y5033* X15013Y4825D02* X15075Y4877* X15065Y4877D01* X15065Y4887* X15075Y4887* X15075Y4877* X15263Y4825D02* X15408Y4877* X15263Y4877D01* X15263Y5075* X15408Y5075* X15408Y4981D02* X15263Y4981D01* X15513Y4825D02* D107* X12683Y10730* X12683Y10770* X12696Y10738D01* X12709Y10770* X12723Y10730D02* X12723Y10738* X12723Y10770D01* X12723Y10755D02* X12726Y10758D01* X12739Y10758* X12743Y10755* X12743Y10741* X12739Y10738* X12726Y10738* X12723Y10741* X12763Y10730D02* X12763Y10755* X12766Y10758D01* X12779Y10758* X12783Y10755* X12783Y10738* X12783Y10741D02* X12783Y10738D01* X12766Y10738* X12763Y10741* X12763Y10745* X12766Y10748* X12783Y10748* X12803Y10730D02* X12814Y10770* X12814Y10741D01* X12818Y10738* X12821Y10738* X12809Y10758D02* X12819Y10758D01* X12843Y10730D02* X0Y0* %LPC*% * X0Y0D02* D11* X9263Y4550D02* X16738Y4550D01* X16738Y15450* X9263Y15450* X9263Y4550* D101* X8863Y4250D02* X8863Y4150D01* X8963Y4150* X17038Y4150D02* X17138Y4150D01* X17138Y4250* X17138Y15750D02* X17138Y15850D01* X17038Y15850* X8963Y15850D02* X8863Y15850D01* X8863Y15750* D11* X9463Y15250D02* X9463Y4750D01* X16538Y4750* X16538Y15250* D101* X16538Y13150D02* X16738Y13150D01* X16738Y11050D02* X16538Y11050D01* X16538Y8950D02* X16738Y8950D01* X16738Y6850D02* X16538Y6850D01* X9463Y6850D02* X9263Y6850D01* X9263Y8950D02* X9463Y8950D01* X9463Y11050D02* X9263Y11050D01* D11* X9463Y7375D02* X9463Y6725D01* X9463Y6075D02* X16538Y6075D01* X16538Y5425D02* X9463Y5425D01* X9463Y6075D02* X9463Y4750D01* X11613Y4750D02* X11613Y5425D01* X12788Y5425D02* X12788Y4750D01* X15713Y4750D02* X15713Y5450D01* X16538Y7375D02* X9463Y7375D01* D101* X9463Y4750D02* X9263Y4750D01* X9463Y4750D02* X9463Y4550D01* X10663Y4750D02* X10663Y5425D01* X16538Y4750D02* X16738Y4750D01* X16538Y4750D02* X16538Y4550D01* X16538Y15250D02* X16538Y15450D01* X16538Y15250D02* X16738Y15250D01* X9463Y15250D02* X9263Y15250D01* X9463Y15250D02* X9463Y15450D01* D11* X15713Y6075D02* X15713Y5450D01* D101* X13003Y4750D02* X13003Y4550D01* X9463Y13150D02* X9263Y13150D01* D11* X9463Y6725D02* X9463Y6075D01* X9463Y6725D02* X16538Y6725D01* X15713Y6725D02* X15713Y6075D01* D101* X14773Y4750D02* X14773Y4550D01* X11233Y4550D02* X11233Y4750D01* D11* X9463Y15250D02* X16538Y15250D01* D101* X16013Y15200D02* X16013Y15050D01* X16013Y15125D02* X15838Y15075D01* X15838Y15175* X16013Y15125* X14773Y15250D02* X14773Y15450D01* X14998Y14405D02* X14998Y14305D01* X14973Y14275D02* X14958Y14273D01* X14942Y14269* X14924Y14261* X14904Y14250* X14882Y14231* X14868Y14215* X14857Y14199* X14845Y14172* X14840Y14149* X14838Y14125* X14840Y14101* X14843Y14086* X14848Y14071* X14858Y14049* X14868Y14035* X14882Y14019* X14896Y14006* X14910Y13996* X14921Y13990* X14942Y13981* X14959Y13977* X14973Y13975* X14877Y14079D02* X14871Y14100D01* X14868Y14125* X14949Y14239D02* X14973Y14245D01* X14949Y14239D02* X14928Y14230D01* X14913Y14219* X14898Y14205* X14886Y14189* X14877Y14171* X14871Y14151* X14868Y14125* X14877Y14079D02* X14886Y14061D01* X14898Y14045* X14913Y14031* X14928Y14020* X14940Y14014* X14952Y14010* X14973Y14005* X15038Y14005D02* X15057Y14007D01* X15079Y14012* X15100Y14022* X15116Y14034* X15135Y14054* X15149Y14078* X15155Y14101* X15158Y14125* X15155Y14151* X15148Y14174* X15134Y14197* X15118Y14214* X15103Y14226* X15084Y14236* X15063Y14242* X15038Y14245* X15169Y14198D02* X15179Y14176D01* X15185Y14155* X15132Y14009D02* X15119Y13999D01* X15099Y13988* X15038Y14005D02* X15028Y14005D01* X15038Y13975D02* X15053Y13976D01* X15069Y13978* X15084Y13982* X15099Y13988* X15132Y14009D02* X15144Y14020D01* X15158Y14036* X15169Y14052* X15179Y14074* X15184Y14090* X15187Y14107* X15188Y14125* X15187Y14141* X15185Y14155* X15169Y14198D02* X15158Y14214D01* X15144Y14230* X15126Y14246* X15111Y14256* X15094Y14264* X15076Y14270* X15061Y14273* X15038Y14275* X14998Y14275D02* X14998Y13975D01* X15038Y13975* X15028Y14005D02* X15028Y14245D01* X15038Y14245* X15038Y14275D02* X14998Y14275D01* X14973Y14275D02* X14973Y14245D01* X15028Y14110D02* X15128Y14110D01* X15128Y14140D02* X15028Y14140D01* X14973Y14005D02* X14973Y13975D01* X14998Y13945D02* X14998Y13845D01* X15028Y13845D02* X15028Y13945D01* X14998Y14110D02* X14898Y14110D01* X14898Y14140D02* X14998Y14140D01* X14808Y14140D02* X14708Y14140D01* X14708Y14110D02* X14808Y14110D01* X15218Y14110D02* X15318Y14110D01* X15318Y14140D02* X15218Y14140D01* X15028Y14305D02* X15028Y14405D01* X13003Y15250D02* X13003Y15450D01* X11233Y15450D02* X11233Y15250D01* X10188Y15175D02* X10013Y15125D01* X10013Y15050D02* X10013Y15200D01* X10188Y15175D02* X10188Y15075D01* X10013Y15125* X9663Y14625D02* X9513Y14625D01* X9588Y14625D02* X9638Y14450D01* X9538Y14450* X9588Y14625* X11258Y14140D02* X11358Y14140D01* X11432Y14231D02* X11454Y14250D01* X11474Y14261* X11508Y14273D02* X11523Y14275D01* X11508Y14273D02* X11492Y14269D01* X11474Y14261* X11432Y14231D02* X11418Y14215D01* X11407Y14199* X11395Y14172* X11390Y14149* X11388Y14125* X11390Y14101* X11393Y14086* X11398Y14071* X11408Y14049* X11418Y14035* X11432Y14019* X11446Y14006* X11460Y13996* X11471Y13990* X11492Y13981* X11509Y13977* X11523Y13975* X11427Y14079D02* X11421Y14100D01* X11418Y14125* X11499Y14239D02* X11523Y14245D01* X11499Y14239D02* X11478Y14230D01* X11463Y14219* X11448Y14205* X11436Y14189* X11427Y14171* X11421Y14151* X11418Y14125* X11427Y14079D02* X11436Y14061D01* X11448Y14045* X11463Y14031* X11478Y14020* X11490Y14014* X11502Y14010* X11523Y14005* X11588Y14005D02* X11607Y14007D01* X11629Y14012* X11650Y14022* X11666Y14034* X11685Y14054* X11699Y14078* X11705Y14101* X11708Y14125* X11705Y14151* X11698Y14174* X11684Y14197* X11668Y14214* X11653Y14226* X11634Y14236* X11613Y14242* X11588Y14245* X11719Y14198D02* X11729Y14176D01* X11735Y14155* X11682Y14009D02* X11669Y13999D01* X11649Y13988* X11588Y14005D02* X11578Y14005D01* X11588Y13975D02* X11603Y13976D01* X11619Y13978* X11634Y13982* X11649Y13988* X11682Y14009D02* X11694Y14020D01* X11708Y14036* X11719Y14052* X11729Y14074* X11734Y14090* X11737Y14107* X11738Y14125* X11737Y14141* X11735Y14155* X11719Y14198D02* X11708Y14214D01* X11694Y14230* X11676Y14246* X11661Y14256* X11644Y14264* X11626Y14270* X11611Y14273* X11588Y14275* X11548Y14275D02* X11548Y13975D01* X11588Y13975* X11578Y14005D02* X11578Y14245D01* X11588Y14245* X11588Y14275D02* X11548Y14275D01* X11523Y14275D02* X11523Y14245D01* X11578Y14110D02* X11678Y14110D01* X11678Y14140D02* X11578Y14140D01* X11523Y14005D02* X11523Y13975D01* X11548Y13945D02* X11548Y13845D01* X11578Y13845D02* X11578Y13945D01* X11548Y14110D02* X11448Y14110D01* X11448Y14140D02* X11548Y14140D01* X11548Y14305D02* X11548Y14405D01* X11578Y14405D02* X11578Y14305D01* X11768Y14140D02* X11868Y14140D01* X11868Y14110D02* X11768Y14110D01* X11358Y14110D02* X11258Y14110D01* X9638Y7800D02* X9538Y7800D01* X9588Y7625* X9638Y7800* X9663Y7625D02* X9513Y7625D01* X14708Y9360D02* X14808Y9360D01* X14882Y9481D02* X14904Y9500D01* X14924Y9511* X14958Y9523D02* X14973Y9525D01* X14958Y9523D02* X14942Y9519D01* X14924Y9511* X14882Y9481D02* X14868Y9465D01* X14857Y9449* X14845Y9422* X14840Y9399* X14838Y9375* X14840Y9351* X14843Y9336* X14848Y9321* X14858Y9299* X14868Y9285* X14882Y9269* X14896Y9256* X14910Y9246* X14921Y9240* X14942Y9231* X14959Y9227* X14973Y9225* X14877Y9329D02* X14871Y9350D01* X14868Y9375* X14949Y9489D02* X14973Y9495D01* X14949Y9489D02* X14928Y9480D01* X14913Y9469* X14898Y9455* X14886Y9439* X14877Y9421* X14871Y9401* X14868Y9375* X14877Y9329D02* X14886Y9311D01* X14898Y9295* X14913Y9281* X14928Y9270* X14940Y9264* X14952Y9260* X14973Y9255* X15038Y9255D02* X15057Y9257D01* X15079Y9262* X15100Y9272* X15116Y9284* X15135Y9304* X15149Y9328* X15155Y9351* X15158Y9375* X15155Y9401* X15148Y9424* X15134Y9447* X15118Y9464* X15103Y9476* X15084Y9486* X15063Y9492* X15038Y9495* X15169Y9448D02* X15179Y9426D01* X15185Y9405* X15132Y9259D02* X15119Y9249D01* X15099Y9238* X15038Y9255D02* X15028Y9255D01* X15038Y9225D02* X15053Y9226D01* X15069Y9228* X15084Y9232* X15099Y9238* X15132Y9259D02* X15144Y9270D01* X15158Y9286* X15169Y9302* X15179Y9324* X15184Y9340* X15187Y9357* X15188Y9375* X15187Y9391* X15185Y9405* X15169Y9448D02* X15158Y9464D01* X15144Y9480* X15126Y9496* X15111Y9506* X15094Y9514* X15076Y9520* X15061Y9523* X15038Y9525* X14998Y9525D02* X14998Y9225D01* X15038Y9225* X15028Y9255D02* X15028Y9495D01* X15038Y9495* X15038Y9525D02* X14998Y9525D01* X14973Y9525D02* X14973Y9495D01* X15028Y9360D02* X15128Y9360D01* X15128Y9390D02* X15028Y9390D01* X14973Y9255D02* X14973Y9225D01* X14998Y9195D02* X14998Y9095D01* X15028Y9095D02* X15028Y9195D01* X14998Y9360D02* X14898Y9360D01* X14898Y9390D02* X14998Y9390D01* X14808Y9390D02* X14708Y9390D01* X14998Y9555D02* X14998Y9655D01* X15028Y9655D02* X15028Y9555D01* X15218Y9390D02* X15318Y9390D01* X15318Y9360D02* X15218Y9360D01* D15* X9323Y14125D02* X9323Y14151* X9364Y14250D01* X9406Y14151* X9338Y14187D02* X9390Y14187D01* X9448Y14125D02* X9323Y12020* X9323Y12046* X9323Y12145D01* X9395Y12145* X9406Y12134* X9406Y12108* X9395Y12098* X9323Y12098D02* X9395Y12098D01* X9406Y12087* X9406Y12056* X9395Y12046* X9323Y12046* X9448Y12020D02* X9323Y9920* X9406Y9956* X9395Y9946D01* X9333Y9946* X9323Y9956* X9323Y10034* X9333Y10045* X9395Y10045* X9406Y10034* X9448Y9920D02* X9323Y7820* X9323Y7846* X9323Y7945D01* X9395Y7945* X9406Y7929* X9406Y7861* X9395Y7846* X9323Y7846* X9448Y7820D02* X9323Y5720* X9395Y5746* X9323Y5746D01* X9323Y5845* X9395Y5845* X9395Y5798D02* X9323Y5798D01* X9448Y5720D02* X12913Y5200* X12913Y5226* X12913Y5325D01* X12985Y5325* X12996Y5309* X12996Y5241* X12985Y5226* X12913Y5226* X13038Y5200D02* X13038Y5226* X13038Y5325D01* X13110Y5325* X13121Y5314* X13121Y5288* X13110Y5278* X13038Y5278* X13100Y5278D02* X13110Y5278D01* X13121Y5226* X13163Y5200D02* X13204Y5267* X13246Y5267D01* X13246Y5236* X13235Y5226* X13173Y5226* X13163Y5236* X13163Y5314* X13173Y5325* X13235Y5325* X13246Y5314* X13288Y5200D02* X13371Y5200* X13413Y5200* X13413Y5226* X13413Y5325D01* X13496Y5226* X13496Y5325* X13538Y5200D02* X13600Y5278* X13590Y5288D01* X13548Y5288* X13538Y5278* X13538Y5236* X13548Y5226* X13590Y5226* X13600Y5236* X13600Y5278* X13663Y5200D02* X15813Y5150* X15813Y5186* X15823Y5176D01* X15875Y5176* X15885Y5186* X15885Y5217* X15875Y5228* X15823Y5228* X15813Y5238* X15813Y5264* X15823Y5275* X15875Y5275* X15885Y5264* X15938Y5150D02* X15938Y5176* X15938Y5275D01* X15938Y5228D02* X16021Y5228D01* X16021Y5275D02* X16021Y5176D01* X16063Y5150D02* X16063Y5275* X16146Y5275D01* X16104Y5275D02* X16104Y5176D01* X16188Y5150D02* X15863Y4875* X15946Y4911* X15935Y4901D01* X15873Y4901* X15863Y4911* X15863Y4989* X15873Y5000* X15935Y5000* X15946Y4989* X15946Y4911* X15988Y4875D02* X15988Y4901* X15988Y5000D01* X16060Y5000* X16060Y4953D02* X15988Y4953D01* X16113Y4875D02* X9588Y6500* X9588Y6625* X9671Y6625D01* X9629Y6625D02* X9629Y6526D01* X9713Y6500D02* X9754Y6526* X9754Y6625D01* X9733Y6526D02* X9775Y6526D01* X9733Y6625D02* X9775Y6625D01* X9838Y6500D02* X9838Y6625* X9921Y6625D01* X9879Y6625D02* X9879Y6526D01* X9963Y6500D02* X10035Y6526* X9963Y6526D01* X9963Y6625* X10088Y6500D02* X10160Y6526* X10088Y6526D01* X10088Y6625* X10160Y6625* X10160Y6578D02* X10088Y6578D01* X10213Y6500D02* X15838Y5850* X15838Y5886* X15848Y5876D01* X15900Y5876* X15910Y5886* X15910Y5917* X15900Y5928* X15848Y5928* X15838Y5938* X15838Y5964* X15848Y5975* X15900Y5975* X15910Y5964* X15963Y5850D02* X16046Y5886* X16035Y5876D01* X15973Y5876* X15963Y5886* X15963Y5964* X15973Y5975* X16035Y5975* X16046Y5964* X16088Y5850D02* X16088Y5876* X16129Y5975D01* X16171Y5876* X16103Y5912D02* X16155Y5912D01* X16213Y5850D02* X16285Y5876* X16213Y5876D01* X16213Y5975* X16338Y5850D02* X16410Y5876* X16338Y5876D01* X16338Y5975* X16410Y5975* X16410Y5928D02* X16338Y5928D01* X16463Y5850D02* X9588Y5850* X9660Y5876* X9588Y5876D01* X9588Y5975* X9713Y5850D02* X9713Y5876* X9754Y5975D01* X9796Y5876* X9728Y5912D02* X9780Y5912D01* X9838Y5850D02* X9838Y5975* X9879Y5928D01* X9921Y5975* X9879Y5928D02* X9879Y5876D01* X9963Y5850D02* X10035Y5876* X9963Y5876D01* X9963Y5975* X10035Y5975* X10035Y5928D02* X9963Y5928D01* X10088Y5850D02* X10088Y5876* X10088Y5975D01* X10160Y5975* X10171Y5964* X10171Y5938* X10160Y5928* X10088Y5928* X10150Y5928D02* X10160Y5928D01* X10171Y5876* X10213Y5850D02* X9588Y5200* X9588Y5226* X9588Y5325D01* X9660Y5325* X9671Y5314* X9671Y5288* X9660Y5278* X9588Y5278* X9713Y5200D02* X9713Y5226* X9713Y5325D01* X9785Y5325* X9796Y5314* X9796Y5288* X9785Y5278* X9713Y5278* X9775Y5278D02* X9785Y5278D01* X9796Y5226* X9838Y5200D02* X9910Y5226* X9838Y5226D01* X9838Y5325* X9910Y5325* X9910Y5278D02* X9838Y5278D01* X9963Y5200D02* X9963Y5226* X9963Y5325D01* X10035Y5325* X10046Y5314* X10046Y5288* X10035Y5278* X9963Y5278* X10088Y5200D02* X10088Y5226* X10129Y5325D01* X10171Y5226* X10103Y5262D02* X10155Y5262D01* X10213Y5200D02* X10213Y5226* X10213Y5325D01* X10285Y5325* X10296Y5314* X10296Y5288* X10285Y5278* X10213Y5278* X10275Y5278D02* X10285Y5278D01* X10296Y5226* X10338Y5200D02* X10410Y5226* X10338Y5226D01* X10338Y5325* X10410Y5325* X10410Y5278D02* X10338Y5278D01* X10463Y5200D02* X10463Y5226* X10463Y5325D01* X10535Y5325* X10546Y5309* X10546Y5241* X10535Y5226* X10463Y5226* X10588Y5200D02* X12013Y5200* X12013Y5226* X12013Y5325D01* X12085Y5325* X12096Y5309* X12096Y5241* X12085Y5226* X12013Y5226* X12138Y5200D02* X12138Y5226* X12179Y5325D01* X12221Y5226* X12153Y5262D02* X12205Y5262D01* X12263Y5200D02* X12263Y5325* X12346Y5325D01* X12304Y5325D02* X12304Y5226D01* X12388Y5200D02* X12460Y5226* X12388Y5226D01* X12388Y5325* X12460Y5325* X12460Y5278D02* X12388Y5278D01* X12513Y5200D02* X9588Y4825* X9671Y4861* X9660Y4851D01* X9598Y4851* X9588Y4861* X9588Y4939* X9598Y4950* X9660Y4950* X9671Y4939* X9713Y4825D02* X9713Y4851* X9754Y4950D01* X9796Y4851* X9728Y4887D02* X9780Y4887D01* X9838Y4825D02* X9838Y4851* X9838Y4950D01* X9910Y4950* X9921Y4934* X9921Y4866* X9910Y4851* X9838Y4851* X9963Y4825D02* X10046Y4825* X10088Y4825* X10088Y4851* X10088Y4950D01* X10160Y4950* X10171Y4934* X10171Y4866* X10160Y4851* X10088Y4851* X10213Y4825D02* X10213Y4903* X10223Y4913D01* X10265Y4913* X10275Y4903* X10275Y4851* X10275Y4861D02* X10275Y4851D01* X10223Y4851* X10213Y4861* X10213Y4871* X10223Y4882* X10275Y4882* X10338Y4825D02* X10374Y4950* X10374Y4861D01* X10384Y4851* X10395Y4851* X10358Y4913D02* X10390Y4913D01* X10463Y4825D02* X10463Y4903* X10473Y4913D01* X10515Y4913* X10525Y4903* X10525Y4851* X10525Y4861D02* X10525Y4851D01* X10473Y4851* X10463Y4861* X10463Y4871* X10473Y4882* X10525Y4882* X10588Y4825D02* X9663Y14800* X9663Y14925* X9704Y14826D01* X9746Y14925* X9788Y14800D02* X9829Y14826* X9829Y14925D01* X9808Y14826D02* X9850Y14826D01* X9808Y14925D02* X9850Y14925D01* X9913Y14800D02* X9985Y14826* X9913Y14826D01* X9913Y14925* X9985Y14925* X9985Y14878D02* X9913Y14878D01* X10038Y14800D02* X10038Y14925* X10064Y14826D01* X10090Y14925* X10116Y14826* X10142Y14925* X10163Y14800D02* X10235Y14826* X10163Y14826D01* X10163Y14925* X10235Y14925* X10235Y14878D02* X10163Y14878D01* X10288Y14800D02* X10288Y14826* X10288Y14925D01* X10360Y14925* X10371Y14909* X10371Y14841* X10360Y14826* X10288Y14826* X10413Y14800D02* X10496Y14800* X10538Y14800* X10621Y14836* X10610Y14826D01* X10548Y14826* X10538Y14836* X10538Y14914* X10548Y14925* X10610Y14925* X10621Y14914* X10621Y14836* X10663Y14800D02* X10663Y14826* X10663Y14925D01* X10746Y14826* X10746Y14925* X10788Y14800D02* X10871Y14800* X10913Y14800* X10996Y14836* X10985Y14826D01* X10923Y14826* X10913Y14836* X10913Y14914* X10923Y14925* X10985Y14925* X10996Y14914* X11038Y14800D02* X11121Y14836* X11110Y14826D01* X11048Y14826* X11038Y14836* X11038Y14914* X11048Y14925* X11110Y14925* X11121Y14914* X11121Y14836* X11163Y14800D02* X11163Y14826* X11163Y14925D01* X11209Y14826* X11256Y14925* X11256Y14826* X11288Y14800D02* X11288Y14826* X11288Y14925D01* X11360Y14925* X11371Y14914* X11371Y14888* X11360Y14878* X11288Y14878* X11413Y14800D02* X11496Y14836* X11485Y14826D01* X11423Y14826* X11413Y14836* X11413Y14914* X11423Y14925* X11485Y14925* X11496Y14914* X11496Y14836* X11538Y14800D02* X11538Y14826* X11538Y14925D01* X11621Y14826* X11621Y14925* X11663Y14800D02* X11735Y14826* X11663Y14826D01* X11663Y14925* X11735Y14925* X11735Y14878D02* X11663Y14878D01* X11788Y14800D02* X11788Y14826* X11788Y14925D01* X11871Y14826* X11871Y14925* X11913Y14800D02* X11913Y14925* X11996Y14925D01* X11954Y14925D02* X11954Y14826D01* X12038Y14800D02* X12121Y14800* X12163Y14800* X12163Y14836* X12173Y14826D01* X12225Y14826* X12235Y14836* X12235Y14867* X12225Y14878* X12173Y14878* X12163Y14888* X12163Y14914* X12173Y14925* X12225Y14925* X12235Y14914* X12288Y14800D02* X12329Y14826* X12329Y14925D01* X12308Y14826D02* X12350Y14826D01* X12308Y14925D02* X12350Y14925D01* X12413Y14800D02* X12413Y14826* X12413Y14925D01* X12485Y14925* X12496Y14909* X12496Y14841* X12485Y14826* X12413Y14826* X12538Y14800D02* X12610Y14826* X12538Y14826D01* X12538Y14925* X12610Y14925* X12610Y14878D02* X12538Y14878D01* X12663Y14800D02* X10763Y5200* X10763Y5236* X10773Y5226D01* X10804Y5226* X10815Y5236* X10815Y5325* X10888Y5200D02* X10971Y5236* X10960Y5226D01* X10898Y5226* X10888Y5236* X10888Y5314* X10898Y5325* X10960Y5325* X10971Y5314* X10971Y5236* X11013Y5200D02* X11013Y5226* X11013Y5325D01* X11085Y5325* X11096Y5314* X11096Y5288* X11085Y5278* X11013Y5278D02* X11085Y5278D01* X11096Y5267* X11096Y5236* X11085Y5226* X11013Y5226* X11138Y5200D02* X11221Y5200* X11263Y5200* X11263Y5226* X11263Y5325D01* X11346Y5226* X11346Y5325* X11388Y5200D02* X11471Y5236* X11460Y5226D01* X11398Y5226* X11388Y5236* X11388Y5314* X11398Y5325* X11460Y5325* X11471Y5314* X11471Y5236* X11513Y5200D02* X9963Y5025* X9963Y5051* X9963Y5150D01* X10035Y5150* X10046Y5139* X10046Y5113* X10035Y5103* X9963Y5103D02* X10035Y5103D01* X10046Y5092* X10046Y5061* X10035Y5051* X9963Y5051* X10088Y5025D02* X10088Y5150* X10129Y5103D01* X10171Y5150* X10129Y5103D02* X10129Y5051D01* X10213Y5025D02* X15838Y6500* X15879Y6526* X15879Y6625D01* X15858Y6526D02* X15900Y6526D01* X15858Y6625D02* X15900Y6625D01* X15963Y6500D02* X15963Y6536* X15973Y6526D01* X16025Y6526* X16035Y6536* X16035Y6567* X16025Y6578* X15973Y6578* X15963Y6588* X15963Y6614* X15973Y6625* X16025Y6625* X16035Y6614* X16088Y6500D02* X16088Y6536* X16098Y6526D01* X16150Y6526* X16160Y6536* X16160Y6567* X16150Y6578* X16098Y6578* X16088Y6588* X16088Y6614* X16098Y6625* X16150Y6625* X16160Y6614* X16213Y6500D02* X16213Y6625* X16213Y6536D01* X16223Y6526* X16285Y6526* X16296Y6536* X16296Y6625* X16338Y6500D02* X16410Y6526* X16338Y6526D01* X16338Y6625* X16410Y6625* X16410Y6578D02* X16338Y6578D01* X16463Y6500D02* X16593Y14125* X16593Y14151* X16634Y14250D01* X16676Y14151* X16608Y14187D02* X16660Y14187D01* X16718Y14125D02* X16593Y12020* X16593Y12046* X16593Y12145D01* X16665Y12145* X16676Y12134* X16676Y12108* X16665Y12098* X16593Y12098D02* X16665Y12098D01* X16676Y12087* X16676Y12056* X16665Y12046* X16593Y12046* X16718Y12020D02* X16593Y9920* X16676Y9956* X16665Y9946D01* X16603Y9946* X16593Y9956* X16593Y10034* X16603Y10045* X16665Y10045* X16676Y10034* X16718Y9920D02* X16593Y7820* X16593Y7846* X16593Y7945D01* X16665Y7945* X16676Y7929* X16676Y7861* X16665Y7846* X16593Y7846* X16718Y7820D02* X16593Y5720* X16665Y5746* X16593Y5746D01* X16593Y5845* X16665Y5845* X16665Y5798D02* X16593Y5798D01* X16718Y5720D02* X10318Y4575* X10354Y4601* X10354Y4700D01* X10333Y4679* X10443Y4575D02* X12078Y4575* X12078Y4689* X12088Y4700D01* X12140Y4700* X12150Y4689* X12150Y4668* X12140Y4658* X12078Y4601* X12150Y4601* X12203Y4575D02* X13848Y4575* X13848Y4689* X13858Y4700D01* X13910Y4700* X13920Y4689* X13920Y4663* X13910Y4653* X13879Y4653* X13910Y4653* X13920Y4642* X13920Y4611* X13910Y4601* X13858Y4601* X13848Y4611* X13973Y4575D02* X15613Y4575* X15665Y4601* X15665Y4700D01* X15613Y4637* X15685Y4637* X15738Y4575D02* X10318Y15275* X10354Y15301* X10354Y15400D01* X10333Y15379* X10443Y15275D02* X12078Y15275* X12078Y15389* X12088Y15400D01* X12140Y15400* X12150Y15389* X12150Y15368* X12140Y15358* X12078Y15301* X12150Y15301* X12203Y15275D02* X13848Y15275* X13848Y15389* X13858Y15400D01* X13910Y15400* X13920Y15389* X13920Y15363* X13910Y15353* X13879Y15353* X13910Y15353* X13920Y15342* X13920Y15311* X13910Y15301* X13858Y15301* X13848Y15311* X13973Y15275D02* X15613Y15275* X15665Y15301* X15665Y15400D01* X15613Y15337* X15685Y15337* X15738Y15275D02* X13763Y14800* X13763Y14826* X13763Y14925D01* X13835Y14925* X13846Y14909* X13846Y14841* X13835Y14826* X13763Y14826* X13888Y14800D02* X13971Y14836* X13960Y14826D01* X13898Y14826* X13888Y14836* X13888Y14914* X13898Y14925* X13960Y14925* X13971Y14914* X13971Y14836* X14013Y14800D02* X14096Y14800* X14138Y14800* X14138Y14826* X14138Y14925D01* X14221Y14826* X14221Y14925* X14263Y14800D02* X14346Y14836* X14335Y14826D01* X14273Y14826* X14263Y14836* X14263Y14914* X14273Y14925* X14335Y14925* X14346Y14914* X14346Y14836* X14388Y14800D02* X14388Y14925* X14471Y14925D01* X14429Y14925D02* X14429Y14826D01* X14513Y14800D02* X14596Y14800* X14638Y14800* X14638Y14836* X14648Y14826D01* X14700Y14826* X14710Y14836* X14710Y14867* X14700Y14878* X14648Y14878* X14638Y14888* X14638Y14914* X14648Y14925* X14700Y14925* X14710Y14914* X14763Y14800D02* X14846Y14836* X14835Y14826D01* X14773Y14826* X14763Y14836* X14763Y14914* X14773Y14925* X14835Y14925* X14846Y14914* X14888Y14800D02* X14888Y14826* X14929Y14925D01* X14971Y14826* X14903Y14862D02* X14955Y14862D01* X15013Y14800D02* X15085Y14826* X15013Y14826D01* X15013Y14925* X15138Y14800D02* X15210Y14826* X15138Y14826D01* X15138Y14925* X15210Y14925* X15210Y14878D02* X15138Y14878D01* X15263Y14800D02* X15346Y14800* X15388Y14800* X15388Y14826* X15388Y14925D01* X15460Y14925* X15471Y14914* X15471Y14888* X15460Y14878* X15388Y14878* X15513Y14800D02* X15585Y14826* X15513Y14826D01* X15513Y14925* X15585Y14925* X15585Y14878D02* X15513Y14878D01* X15638Y14800D02* X15638Y14826* X15638Y14925D01* X15721Y14826* X15721Y14925* X15763Y14800D02* X15763Y14826* X15763Y14925D01* X15835Y14925* X15846Y14914* X15846Y14888* X15835Y14878* X15763Y14878* X15888Y14800D02* X15960Y14826* X15888Y14826D01* X15888Y14925* X16013Y14800D02* X16096Y14836* X16085Y14826D01* X16023Y14826* X16013Y14836* X16013Y14914* X16023Y14925* X16085Y14925* X16096Y14914* X16096Y14836* X16138Y14800D02* X16138Y14925* X16221Y14925D01* X16179Y14925D02* X16179Y14826D01* X16263Y14800D02* X16263Y14836* X16273Y14826D01* X16325Y14826* X16335Y14836* X16335Y14867* X16325Y14878* X16273Y14878* X16263Y14888* X16263Y14914* X16273Y14925* X16325Y14925* X16335Y14914* X16388Y14800D02* D197* X9898Y15090* X9909Y15095* X9908Y15094D01* X9899Y15094* X9898Y15095* X9898Y15108* X9899Y15110* X9908Y15110* X9909Y15108* X9909Y15095* X9898Y15095D02* X9909Y15108D01* X9918Y15090D02* X16113Y15095* X16113Y15106* X16114Y15108D01* X16123Y15108* X16124Y15106* X16124Y15100* X16123Y15099* X16114Y15099* X16113Y15100* X16113Y15113* X16114Y15115* X16123Y15115* X16124Y15113* X16133Y15095D02* X16136Y15115* X16136Y15111D01* X16143Y15115D02* X16143Y15111D01* X16153Y15095D02* X9563Y14675* X9563Y14695* X9574Y14695D01* X9564Y14679* X9583Y14675D02* X9586Y14695* X9586Y14691D01* X9593Y14695D02* X9593Y14691D01* X9603Y14675D02* X9573Y7510* X9584Y7515* X9583Y7514D01* X9574Y7514* X9573Y7515* X9573Y7528* X9574Y7530* X9583Y7530* X9584Y7528* X9584Y7515* X9573Y7515D02* X9584Y7528D01* X9593Y7510D02* D23* X12010Y13383D03* X12168Y13383D03* X12089Y13383D03* X12325Y13383D03* D27* X12278Y13133D03* X11998Y13133D03* D138* X12453Y11015D03* D168* X13073Y10543D03* D28* X12408Y13383D03* X11928Y13383D03* D204* X12812Y13705D03* X13238Y13705D03* D17* X13583Y13722D02* X13543Y13722D01* X13951Y13632D02* X13991Y13632D01* X14397Y13722D02* X14357Y13722D01* X14595Y13652D02* X14595Y13612D01* X14595Y13092D02* X14595Y13052D01* X14101Y12943D02* X14101Y12983D01* X13838Y13044D02* X13798Y13044D01* X12949Y13044D02* X12989Y13044D01* X12135Y13044D02* X12095Y13044D01* X11861Y13355D02* X11861Y13395D01* X12122Y13632D02* X12082Y13632D01* X12605Y13722D02* X12565Y13722D01* X12747Y11712D02* X12707Y11712D01* X12918Y11858D02* X12918Y11818D01* X13292Y11934D02* X13252Y11934D01* X14019Y11934D02* X13979Y11934D01* X14101Y12173D02* X14101Y12133D01* X14595Y12362D02* X14595Y12322D01* X14595Y10939D02* X14595Y10899D01* X14595Y10198D02* X14595Y10158D01* X14568Y9900D02* X14528Y9900D01* X14253Y9900D02* X14213Y9900D01* X13985Y9876D02* X13945Y9876D01* X13863Y10075D02* X13863Y10035D01* X13863Y10450D02* X13863Y10410D01* X13863Y10800D02* X13863Y10760D01* X13863Y11155D02* X13863Y11115D01* X13638Y9742D02* X13598Y9742D01* X12518Y9742D02* X12478Y9742D01* X12005Y9742D02* X11965Y9742D01* X11861Y9950D02* X11861Y9910D01* X11988Y10180D02* X11988Y10140D01* X12248Y10005D02* X12288Y10005D01* X11861Y10620D02* X11861Y10580D01* X11861Y11250D02* X11861Y11290D01* X11988Y11155D02* X11988Y11115D01* X11949Y11712D02* X11909Y11712D01* D21* X12578Y9990D03* X12678Y9990D03* X13443Y9990D03* X13543Y9990D03* D15* X13468Y10070D03* X13378Y10030D03* X13308Y10070D03* X13308Y10195D03* X13468Y10195D03* X13553Y10242D03* X13558Y10405D03* X13728Y10390D03* X13751Y10462D03* X13901Y10444D03* X13910Y10272D03* X13893Y10139D03* X13910Y10242D03* X13929Y10397D03* X13929Y10427D03* X13953Y10300D03* X13891Y10201D03* X13903Y10070D03* X14018Y10002D03* X14175Y9999D03* X14285Y10004D03* X14102Y10004D03* X14222Y10004D03* X14205Y10141D03* X14290Y10141D03* X14183Y10221D03* X14223Y10365D03* X14138Y10457D03* X14096Y10595D03* X14065Y10718D03* X14068Y10781D03* X14065Y10749D03* X13973Y10842D03* X13956Y10956D03* X13921Y10808D03* X13973Y10765D03* X14002Y10671D03* X14035Y10683D03* X14125Y10595D03* X14158Y10595D03* X14149Y10700D03* X14274Y10700D03* X14337Y10700D03* X14417Y10781D03* X14418Y10812D03* X14514Y10823D03* X14518Y10718D03* X14513Y10855D03* X14368Y10893D03* X14270Y10939D03* X14368Y10964D03* X14420Y11001D03* X14419Y10875D03* X14398Y11027D03* X14306Y11147D03* X14372Y11252D03* X14386Y11418D03* X14446Y11485D03* X14416Y11497D03* X14400Y11523D03* X14392Y11554D03* X14377Y11497D03* X14386Y11447D03* X14391Y11390D03* X14392Y11355D03* X14302Y11361D03* X14372Y11331D03* X14268Y11320D03* X14379Y11301D03* X14391Y11272D03* X14268Y11245D03* X14148Y11266D03* X14117Y11178D03* X14040Y11127D03* X14064Y11153D03* X14009Y11159D03* X13993Y11325D03* X14003Y11407D03* X14037Y11556D03* X13881Y11549D03* X13847Y11687D03* X13774Y11765D03* X13743Y11849D03* X13600Y11853D03* X13629Y11853D03* X13513Y11858D03* X13658Y11850D03* X13772Y11854D03* X13911Y11819D03* X13930Y11764D03* X13911Y11791D03* X13913Y11735D03* X13918Y11895D03* X13958Y11781D03* X13961Y11657D03* X13961Y11624D03* X13913Y11555D03* X13938Y11443D03* X14060Y11511D03* X13913Y11518D03* X13849Y11543D03* X13939Y11532D03* X13938Y11405D03* X13943Y11240D03* X14065Y11271D03* X14148Y11306D03* X14153Y11369D03* X14268Y11407D03* X14223Y11512D03* X14222Y11687D03* X14152Y11755D03* X14150Y11818D03* X14213Y11892D03* X14188Y11917D03* X14188Y11967D03* X14213Y11992D03* X14213Y12042D03* X14188Y12067D03* X14213Y12151D03* X14209Y12296D03* X14209Y12267D03* X14209Y12327D03* X14262Y12441D03* X14262Y12413D03* X14231Y12463D03* X14216Y12492D03* X14363Y12525D03* X14346Y12642D03* X14347Y12772D03* X14347Y12802D03* X14346Y12702D03* X14303Y12764D03* X14303Y12736D03* X14228Y12725D03* X14218Y12870D03* X14228Y12692D03* X14303Y12659D03* X14303Y12620D03* X14443Y12575D03* X14505Y12522D03* X14450Y12388D03* X14361Y12308D03* X14362Y12210D03* X14263Y12201D03* X14243Y12300D03* X14217Y12182D03* X14209Y12358D03* X14232Y12415D03* X14173Y12535D03* X14203Y12570D03* X14303Y12708D03* X14303Y12820D03* X14438Y12855D03* X14493Y12850D03* X14498Y12925D03* X14500Y12962D03* X14423Y13073D03* X14453Y13173D03* X14428Y13010D03* X14378Y12879D03* X14497Y12888D03* X14446Y12820D03* X14446Y12660D03* X14543Y12610D03* X14536Y12465D03* X14543Y12295D03* X14468Y12180D03* X14437Y12076D03* X14437Y11908D03* X14437Y11964D03* X14437Y12020D03* X14437Y11880D03* X14437Y11936D03* X14437Y11992D03* X14437Y12048D03* X14323Y12092D03* X14279Y12225D03* X14543Y12205D03* X14543Y12092D03* X14543Y11867D03* X14543Y11737D03* X14323Y11737D03* X14323Y11779D03* X14187Y11792D03* X14151Y11707D03* X14222Y11719D03* X14325Y11662D03* X14219Y11631D03* X14219Y11589D03* X14106Y11533D03* X14008Y11480D03* X14034Y11382D03* X13947Y11320D03* X13911Y11295D03* X13831Y11190D03* X13703Y11170D03* X13588Y11160D03* X13541Y11042D03* X13503Y10967D03* X13559Y10992D03* X13531Y10917D03* X13413Y10885D03* X13433Y10845D03* X13553Y10805D03* X13557Y10942D03* X13588Y10750D03* X13713Y10717D03* X13770Y10768D03* X13926Y10779D03* X13928Y10750D03* X13926Y10612D03* X13956Y10573D03* X13956Y10729D03* X13950Y10700D03* X14020Y10637D03* X14065Y10600D03* X14043Y10461D03* X14041Y10309D03* X13951Y10244D03* X13953Y10360D03* X13887Y10483D03* X13753Y10432D03* X13699Y10429D03* X13684Y10400D03* X13684Y10292D03* X13558Y10345D03* X13553Y10205D03* X13684Y10234D03* X13693Y10126D03* X13753Y10130D03* X13693Y10170D03* X13684Y10320D03* X13702Y10471D03* X13683Y10517D03* X13702Y10542D03* X13713Y10587D03* X13683Y10617D03* X13683Y10647D03* X13739Y10607D03* X13683Y10717D03* X13683Y10587D03* X13548Y10607D03* X13558Y10528D03* X13558Y10492D03* X13558Y10375D03* X13468Y10435D03* X13388Y10435D03* X13308Y10435D03* X13193Y10435D03* X13193Y10300D03* X13113Y10195D03* X13113Y10070D03* X13058Y10045D03* X12964Y9961D03* X12928Y9825D03* X12763Y9822D03* X12763Y9870D03* X12688Y9900D03* X12591Y9805D03* X12438Y9790D03* X12335Y9805D03* X12293Y9905D03* X12258Y9835D03* X12153Y9845D03* X12003Y9785D03* X12003Y9910D03* X12128Y10065D03* X12128Y10210D03* X12228Y10210D03* X12228Y10250D03* X12228Y10295D03* X12128Y10280D03* X11938Y10280D03* X12053Y10280D03* X12093Y10280D03* X12128Y10320D03* X12128Y10250D03* X12128Y10110D03* X12128Y10155D03* X12128Y10480D03* X12173Y10595D03* X12173Y10635D03* X12173Y10555D03* X12173Y10480D03* X12213Y10400D03* X12483Y10435D03* X12563Y10435D03* X12563Y10300D03* X12563Y10195D03* X12753Y10195D03* X12838Y10195D03* X13013Y10195D03* X13163Y10195D03* X13213Y10195D03* X13388Y10195D03* X13388Y10070D03* X13373Y9895D03* X13223Y9895D03* X13148Y9915D03* X13128Y9975D03* X13008Y9960D03* X13048Y9960D03* X13163Y9975D03* X13238Y10060D03* X13273Y10060D03* X13288Y9895D03* X13423Y9840D03* X13518Y9775D03* X13623Y9790D03* X13658Y9902D03* X13733Y9905D03* X13753Y9870D03* X13783Y9932D03* X13921Y9920D03* X14053Y9915D03* X14058Y10041D03* X14088Y10153D03* X14054Y10068D03* X13943Y10010D03* X14025Y9910D03* X13970Y9910D03* X13988Y10010D03* X13973Y10135D03* X13863Y10114D03* X13713Y10085D03* X13747Y10164D03* X13684Y10262D03* X13751Y10208D03* X13744Y10252D03* X13744Y10290D03* X13744Y10320D03* X13753Y10405D03* X14003Y10395D03* X13941Y10272D03* X14003Y10365D03* X14088Y10365D03* X14108Y10225D03* X14113Y10136D03* X14133Y10004D03* X14053Y9999D03* X14257Y10004D03* X14339Y10014D03* X14353Y10135D03* X14498Y10141D03* X14438Y10080D03* X14498Y9990D03* X14528Y9990D03* X14298Y10195D03* X14183Y10365D03* X14139Y10406D03* X14083Y10460D03* X14124Y10379D03* X14234Y10534D03* X14219Y10600D03* X14306Y10700D03* X14368Y10795D03* X14417Y10749D03* X14375Y10592D03* X14428Y10555D03* X14488Y10555D03* X14335Y10581D03* X14381Y10561D03* X13958Y10545D03* X13957Y10660D03* X13973Y10875D03* X13903Y10938D03* X13777Y10992D03* X13891Y11015D03* X13974Y10927D03* X14066Y10938D03* X14026Y11079D03* X14066Y10983D03* X14091Y10906D03* X14205Y10906D03* X14068Y10844D03* X13948Y10905D03* X13883Y11067D03* X13908Y11240D03* X13796Y11225D03* X13663Y11180D03* X13663Y11067D03* X13433Y11080D03* X13308Y11140D03* X13248Y11140D03* X13215Y11179D03* X13190Y11179D03* X13165Y11179D03* X13363Y11140D03* X13418Y11140D03* X13452Y10766D03* X13438Y10720D03* X13373Y10740D03* X13328Y10625D03* X13308Y10300D03* X13468Y10300D03* X13388Y10300D03* X13113Y10300D03* X13063Y10195D03* X12913Y10195D03* X12913Y10070D03* X12963Y10045D03* X12958Y9995D03* X12853Y10035D03* X12838Y10070D03* X12753Y10070D03* X12563Y10070D03* X12638Y10070D03* X12638Y10195D03* X12488Y10195D03* X12488Y10070D03* X12413Y10060D03* X12448Y10060D03* X12378Y10060D03* X12333Y9905D03* X12483Y10300D03* X12643Y10300D03* X12758Y10300D03* X12918Y10300D03* X12918Y10435D03* X12838Y10435D03* X12758Y10435D03* X12643Y10435D03* X12838Y10300D03* X13033Y10300D03* X13033Y10435D03* X13113Y10435D03* X13203Y10060D03* X13323Y9930D03* X13331Y9895D03* X13331Y9745D03* X13373Y9745D03* X13288Y9745D03* X13378Y9930D03* X13538Y9940D03* X13573Y9950D03* X13573Y9790D03* X13713Y9780D03* X13553Y10135D03* X13901Y10173D03* X13778Y10720D03* X13773Y10842D03* X13683Y10842D03* X13808Y11397D03* X13918Y11323D03* X13938Y11280D03* X14008Y11365D03* X14008Y11436D03* X13913Y11468D03* X13913Y11625D03* X14023Y11685D03* X14103Y11685D03* X14198Y11667D03* X14274Y11769D03* X14323Y11867D03* X14213Y11942D03* X14188Y12017D03* X14068Y11860D03* X14003Y11882D03* X13990Y11693D03* X14198Y11565D03* X14325Y11613D03* X14543Y11512D03* X14528Y11220D03* X14498Y11144D03* X14438Y11220D03* X14274Y11147D03* X14243Y11147D03* X14212Y11147D03* X14193Y11290D03* X14148Y11229D03* X14194Y11220D03* X14188Y11365D03* X14513Y10905D03* X13658Y11820D03* X13513Y11815D03* X13418Y11856D03* X13388Y11835D03* X13298Y11870D03* X13123Y11822D03* X13033Y11873D03* X12465Y11669D03* X12371Y11671D03* X12338Y11640D03* X12335Y11327D03* X12413Y11320D03* X12443Y11320D03* X12383Y11320D03* X12353Y11250D03* X12260Y11205D03* X12105Y11220D03* X12200Y11215D03* X12138Y11250D03* X12043Y11250D03* X12038Y10910D03* X11938Y10910D03* X11988Y10910D03* X12088Y10910D03* X12133Y10865D03* X12133Y10710D03* X12078Y10665D03* X12028Y10665D03* X12048Y10570D03* X11983Y10665D03* X11983Y10630D03* X12178Y10710D03* X12203Y10865D03* X12318Y10825D03* X12783Y10035D03* X12763Y9780D03* X12828Y9780D03* X12873Y13110D03* X12813Y13200D03* X12736Y13260D03* X12661Y13375D03* X12711Y13429D03* X12661Y13469D03* X12611Y13597D03* X12636Y13486D03* X12686Y13450D03* X12611Y13375D03* X12636Y13260D03* X12711Y13375D03* X12761Y13377D03* X12576Y13375D03* X12532Y13242D03* X12481Y13314D03* X12535Y13411D03* X12558Y13265D03* X12686Y13260D03* X12666Y13155D03* X12703Y13200D03* X12798Y13265D03* X12798Y13485D03* X12853Y13605D03* X12951Y13605D03* X13050Y13605D03* X13168Y13605D03* X13099Y13605D03* X13000Y13605D03* X12890Y13605D03* X12918Y13650D03* X13063Y13650D03* X13208Y13650D03* X13283Y13514D03* X13418Y13498D03* X13563Y13681D03* X13600Y13680D03* X13838Y13575D03* X14033Y13535D03* X14310Y13110D03* X14303Y12848D03* X14248Y12895D03* X14303Y12792D03* X13398Y13135D03* X13068Y13135D03* X13023Y13172D03* X12928Y13110D03* X12843Y13650D03* X12586Y13613D03* X12558Y13485D03* X12348Y13270D03* X12343Y13174D03* X12348Y13220D03* X12128Y13245D03* X12086Y13195D03* X11936Y13195D03* X12128Y13520D03* D203* X12096Y11680D03* X12059Y11563D03* X12059Y11406D03* X12218Y11406D03* X12257Y11485D03* X12296Y11563D03* X12296Y11485D03* X12257Y11445D03* X12296Y11406D03* X12257Y11406D03* X12296Y11366D03* X12257Y11366D03* X12218Y11485D03* X12335Y11485D03* X12218Y11445D03* X12335Y11445D03* X12506Y11451D03* X12506Y11513D03* X12538Y11482D03* X12727Y11482D03* X12881Y11451D03* X12913Y11388D03* X12881Y11388D03* X12913Y11357D03* X12881Y11357D03* X12913Y11325D03* X12881Y11325D03* X12913Y11293D03* X12913Y11451D03* X12998Y11545D03* X13102Y11482D03* X13185Y11530D03* X13165Y11482D03* X13165Y11325D03* X13285Y11360D03* X13343Y11349D03* X13336Y11262D03* X13335Y11186D03* X13363Y11225D03* X13343Y11379D03* X13398Y11500D03* X13560Y11522D03* X13583Y11555D03* X13721Y11544D03* X13842Y11581D03* X13741Y11570D03* X13689Y11629D03* X13547Y11655D03* X13423Y11659D03* X13441Y11500D03* X13578Y11465D03* X13603Y11403D03* X13538Y11465D03* X13463Y11540D03* X13463Y11570D03* X13588Y11600D03* X13643Y11693D03* X13680Y11753D03* X13587Y11803D03* X13428Y11796D03* X13338Y11860D03* X13366Y11857D03* X13344Y11817D03* X13243Y11873D03* X13121Y11878D03* X13123Y11760D03* X13123Y11690D03* X13226Y11720D03* X13362Y11747D03* X13510Y11787D03* X13541Y11846D03* X13536Y11718D03* X13571Y11655D03* X13613Y11698D03* X13741Y11641D03* X13721Y11615D03* X13774Y11621D03* X13778Y11505D03* X13746Y11410D03* X13769Y11285D03* X13776Y11352D03* X13694Y11411D03* X13780Y11329D03* X13741Y11359D03* X13683Y11336D03* X13720Y11411D03* X13778Y11529D03* X13715Y11570D03* X13721Y11518D03* X13632Y11615D03* X13628Y11465D03* X13645Y11403D03* X13776Y11375D03* X13939Y11367D03* X13911Y11434D03* X13776Y11410D03* X13740Y11461D03* X13658Y11490D03* X13538Y11510D03* X13613Y11510D03* X13583Y11357D03* X13583Y11325D03* X13628Y11225D03* X13618Y11262D03* X13592Y11262D03* X13663Y11370D03* X13639Y11370D03* X13458Y11375D03* X13376Y11474D03* X13343Y11631D03* X13382Y11697D03* X13372Y11665D03* X13336Y11747D03* X13311Y11747D03* X13331Y11697D03* X13307Y11645D03* X13285Y11641D03* X13306Y11595D03* X13254Y11570D03* X13343Y11580D03* X13343Y11557D03* X13285Y11513D03* X13165Y11451D03* X13133Y11293D03* X13133Y11325D03* X13165Y11357D03* X13133Y11357D03* X13165Y11388D03* X13133Y11388D03* X13133Y11482D03* X13253Y11467D03* X13285Y11462D03* X13238Y11431D03* X13343Y11402D03* X13458Y11350D03* X13408Y11262D03* X13423Y11225D03* X13459Y11262D03* X13475Y11225D03* X13510Y11262D03* X13484Y11282D03* X13449Y11225D03* X13458Y11320D03* X13434Y11283D03* X13398Y11225D03* X13408Y11320D03* X13280Y11313D03* X13285Y11385D03* X13245Y11399D03* X13343Y11425D03* X13343Y11449D03* X13212Y11432D03* X13229Y11467D03* X13343Y11534D03* X13357Y11697D03* X13346Y11665D03* X13306Y11539D03* X13249Y11528D03* X13133Y11513D03* X12945Y11513D03* X12790Y11482D03* X12758Y11482D03* X12881Y11513D03* X12913Y11482D03* X12945Y11545D03* X12913Y11545D03* X12913Y11577D03* X12945Y11577D03* X12920Y11646D03* X12913Y11513D03* X12790Y11451D03* X12758Y11293D03* X12790Y11325D03* X12758Y11325D03* X12790Y11357D03* X12758Y11357D03* X12743Y11255D03* X12790Y11388D03* X12848Y11260D03* X12833Y11240D03* X12938Y11285D03* X12998Y11194D03* X13026Y11339D03* X12998Y11220D03* X12945Y11357D03* X12945Y11482D03* X12881Y11545D03* X12758Y11513D03* X12758Y11388D03* X12727Y11513D03* X12569Y11545D03* X12538Y11451D03* X12538Y11545D03* X12538Y11577D03* X12570Y11577D03* X12538Y11513D03* X12538Y11388D03* X12506Y11388D03* X12538Y11357D03* X12506Y11357D03* X12538Y11325D03* X12506Y11325D03* X12538Y11293D03* X12570Y11357D03* X12570Y11513D03* X12506Y11545D03* X12570Y11482D03* X12506Y11482D03* X12631Y11465D03* X12727Y11545D03* X12790Y11545D03* X12758Y11545D03* X12758Y11577D03* X12727Y11577D03* X12881Y11577D03* X12881Y11482D03* X13006Y11465D03* X13102Y11513D03* X13165Y11545D03* X13306Y11569D03* X13343Y11605D03* X13280Y11723D03* X13358Y11790D03* X13473Y11808D03* X13587Y11778D03* X13658Y11790D03* X13690Y11718D03* X13770Y11695D03* X13777Y11576D03* X13778Y11481D03* X13808Y11488D03* X13911Y11408D03* X13911Y11367D03* X13927Y11348D03* X13780Y11306D03* X13644Y11262D03* X13654Y11225D03* X13746Y11313D03* X13741Y11262D03* X13717Y11310D03* X13683Y11465D03* X13678Y11569D03* X13770Y11644D03* X13851Y11619D03* X13743Y11695D03* X13698Y11808D03* X13808Y11825D03* X13743Y11720D03* X13718Y11720D03* X13718Y11695D03* X13631Y11655D03* X13522Y11655D03* X13564Y11720D03* X13835Y11712D03* X13308Y11695D03* X13298Y11808D03* X13223Y11755D03* X13223Y11630D03* X13133Y11545D03* X13102Y11545D03* X13088Y11635D03* X13028Y11740D03* X13113Y11645D03* X13133Y11635D03* X13133Y11577D03* X13102Y11577D03* X12995Y11640D03* X13028Y11765D03* X13018Y11848D03* X13018Y11810D03* X13033Y11690D03* X13051Y11640D03* X13165Y11577D03* X13205Y11467D03* X13193Y11333D03* X13307Y11311D03* X13360Y11259D03* X13448Y11190D03* X13295Y11226D03* X13332Y11311D03* X13162Y11296D03* X13102Y11357D03* X13040Y11404D03* X12976Y11293D03* X12881Y11293D03* X13070Y11293D03* X13070Y11451D03* X13070Y11357D03* X12976Y11388D03* X12976Y11357D03* X12727Y11357D03* X12695Y11357D03* X12695Y11388D03* X12601Y11293D03* X12506Y11293D03* X12695Y11293D03* X12790Y11293D03* X12695Y11420D03* X12601Y11357D03* X12601Y11388D03* X12588Y11605D03* X12506Y11577D03* X12335Y11563D03* X12335Y11406D03* X12335Y11366D03* X12218Y11366D03* X12218Y11326D03* X12178Y11326D03* X12138Y11326D03* X12059Y11326D03* X12099Y11326D03* X12178Y11366D03* X12138Y11366D03* X12059Y11366D03* X12099Y11485D03* X12059Y11485D03* X12138Y11485D03* X12178Y11485D03* X12099Y11563D03* X12020Y11563D03* X12138Y11563D03* X12218Y11563D03* X12178Y11445D03* X12178Y11285D03* X12099Y11366D03* X12138Y11406D03* X12178Y11406D03* X12138Y11445D03* X12059Y11445D03* X12099Y11406D03* X12099Y11445D03* X12099Y11603D03* X12178Y11563D03* X12257Y11563D03* X12296Y11445D03* X12257Y11326D03* X12296Y11326D03* X12257Y11287D03* X12098Y11285D03* X12040Y11680D03* X12165Y11675D03* X12253Y11640D03* X12703Y11605D03* X12790Y11577D03* X13223Y11391D03* X13372Y11320D03* X13536Y11319D03* X13500Y11225D03* X13343Y11502D03* D101* X13157Y11498D02* X13141Y11482D01* X13133Y11482* X13157Y11498D02* X13272Y11498D01* X13273Y11497* X13319Y11497* X13331Y11485* X13348Y11485* X13379Y11516* X13555Y11493D02* X13575Y11493D01* X13622Y11446* X13773Y11464D02* X13815Y11464D01* X13827Y11476* X13806Y11352D02* X13776Y11352D01* X13806Y11352D02* X13894Y11264D01* X13919Y11264* X13943Y11240* X13911Y11367D02* X13910Y11368D01* X13810Y11368* X13808Y11523D02* X13808Y11728D01* X13844Y11764* X13930Y11764* X13796Y11731D02* X13796Y11523D01* X13778Y11505* X13808Y11523D02* X13827Y11504D01* X13827Y11476* X13773Y11464D02* X13761Y11452D01* X13761Y11402* X13741Y11382* X13741Y11359* X13776Y11410D02* X13849Y11483D01* X13849Y11543* X13785Y11393D02* X13810Y11368D01* X13785Y11393D02* X13768Y11393D01* X13757Y11382* X13757Y11350* X13748Y11341* X13731Y11341* X13673Y11399* X13673Y11412* X13639Y11446* X13622Y11446* X13555Y11493D02* X13538Y11510D01* X13407Y11516D02* X13379Y11516D01* X13407Y11516D02* X13419Y11504D01* X13419Y11493* X13456Y11456* X13483Y11456* X13583Y11357* X13530Y11343D02* X13380Y11493D01* X13371Y11493* X13192Y11485D02* X13173Y11466D01* X13118Y11466* X13102Y11482* X13192Y11485D02* X13306Y11485D01* X13316Y11475* X13353Y11475* X13371Y11493* X13334Y11465D02* X13241Y11372D01* X13059Y11372* X12993Y11341D02* X12853Y11341D01* X12837Y11325* X12762Y11435D02* X12750Y11447D01* X12613Y11447* X12506Y11513D02* X12521Y11529D01* X12842Y11529* X12858Y11513* X12881Y11513* X12828Y11435D02* X12762Y11435D01* X12594Y11466D02* X12554Y11466D01* X12538Y11482* X12594Y11466D02* X12613Y11447D01* X12678Y11404D02* X13011Y11404D01* X13030Y11423* X12897Y11466D02* X12859Y11466D01* X12828Y11435* X12897Y11466D02* X12913Y11482D01* X12858Y11372D02* X12827Y11341D01* X12774Y11341* X12790Y11325D02* X12837Y11325D01* X12993Y11341D02* X13011Y11359D01* X13046Y11359* X13059Y11372* X13040Y11372D02* X12858Y11372D01* X12774Y11341D02* X12758Y11325D01* X12790Y11357D02* X12807Y11374D01* X12807Y11404* X12678Y11404D02* X12657Y11425D01* X12416Y11425* X12376Y11465* X12277Y11465* X12257Y11445* X12257Y11406D02* X12277Y11386D01* X12476Y11386* X12490Y11372* X12774Y11372* X12790Y11388* X12821Y11274D02* X12386Y11274D01* X12380Y11280* X12369Y11425D02* X12250Y11425D01* X12230Y11445* X12237Y11504D02* X12378Y11504D01* X12431Y11451* X12506Y11451* X12388Y11406D02* X12369Y11425D01* X12230Y11445D02* X12218Y11445D01* X12218Y11485D02* X12237Y11504D01* X12218Y11406D02* X12198Y11386D01* X12198Y11315* X12242Y11271* X12319Y11271* X12328Y11280* X12380Y11280* X12388Y11406D02* X12488Y11406D01* X12506Y11388* X12556Y11307D02* X12556Y11274D01* X12556Y11307D02* X12538Y11325D01* X12481Y11300D02* X12362Y11299D01* X12355Y11306* X12218Y11355D02* X12218Y11366D01* X12218Y11355D02* X12238Y11335D01* X12238Y11318* X12250Y11306* X12355Y11306* X12481Y11300D02* X12490Y11309D01* X12522Y11309* X12538Y11293* X12693Y11262D02* X12734Y11221D01* X12951Y11221* X12828Y11281D02* X12821Y11274D01* X12828Y11281D02* X12861Y11281D01* X12875Y11267* X13236Y11267* X13260Y11291* X13208Y11404D02* X13072Y11404D01* X13040Y11372* X13208Y11404D02* X13219Y11415D01* X13250Y11415* X13334Y11465D02* X13367Y11465D01* X13376Y11474* X13285Y11450D02* X13250Y11415D01* X13285Y11450D02* X13285Y11462D01* X13163Y11423D02* X13030Y11423D01* X13163Y11423D02* X13190Y11450D01* X13219Y11450* X13238Y11431* X13260Y11291D02* X13411Y11291D01* X13434Y11314* X13530Y11343D02* X13537Y11343D01* X13618Y11262* X13458Y11286D02* X13458Y11320D01* X13434Y11314D02* X13434Y11351D01* X13458Y11375* X13432Y11242D02* X13449Y11225D01* X13432Y11242D02* X13285Y11242D01* X13281Y11238* X12968Y11238* X12951Y11221* X13076Y11176D02* X12383Y11176D01* X12311Y11248* X12376Y11262D02* X12693Y11262D01* X12672Y11309D02* X13004Y11309D01* X13036Y11277* X13106Y11206D02* X13076Y11176D01* X13238Y11168D02* X13366Y11168D01* X13405Y11207* X13498Y11246D02* X13458Y11286D01* X13498Y11246D02* X13506Y11246D01* X13517Y11235* X13517Y11217* X13507Y11207* X13405Y11207* X13379Y11206D02* X13106Y11206D01* X13231Y11161D02* X13238Y11168D01* X13231Y11161D02* X12378Y11161D01* X12303Y11236* X12368Y11270D02* X12376Y11262D01* X12368Y11270D02* X12336Y11270D01* X12326Y11260* X12234Y11260* X12178Y11316* X12178Y11326* X12178Y11236D02* X12303Y11236D01* X12178Y11236D02* X12170Y11228D01* X12128Y11228* X12079Y11277* X12079Y11336* X12089Y11346* X12118Y11346* X12138Y11326* X12099Y11326D02* X12177Y11248D01* X12311Y11248* X12363Y11341D02* X12640Y11341D01* X12672Y11309* X12686Y11484D02* X12603Y11484D01* X12589Y11498* X12433Y11530D02* X12092Y11530D01* X12059Y11563* X12079Y11583D02* X12099Y11563D01* X12079Y11583D02* X12079Y11610D01* X12091Y11622* X12226Y11622* X12235Y11613* X12477Y11613* X12500Y11636* X12465Y11498D02* X12433Y11530D01* X12465Y11498D02* X12514Y11498D01* X12529Y11513* X12538Y11513* X12500Y11636D02* X12738Y11636D01* X12760Y11614* X13149Y11614* X13197Y11662* X13318Y11662* X13332Y11648* X13352Y11648* X13361Y11639* X13361Y11547* X13348Y11534* X13343Y11534* X13289Y11545D02* X13165Y11545D01* X13023Y11529D02* X12992Y11498D01* X12843Y11498* X12828Y11513D02* X12758Y11513D01* X12828Y11513D02* X12843Y11498D01* X12847Y11561D02* X12522Y11561D01* X12506Y11545* X12380Y11545* X12379Y11544* X12237Y11544* X12218Y11563* X12099Y11603D02* X12488Y11603D01* X12510Y11625* X12623Y11625D02* X12671Y11577D01* X12727Y11577* X12847Y11561D02* X12863Y11545D01* X12881Y11545* X13023Y11529D02* X13109Y11529D01* X13125Y11513* X13133Y11513* X13289Y11545D02* X13298Y11554D01* X13317Y11554* X13323Y11560* X13323Y11585* X13343Y11605* X13285Y11590D02* X13306Y11569D01* X13165Y11545D02* X13149Y11529D01* X13124Y11529* X13117Y11536* X13117Y11554* X13110Y11561* X13040Y11561* X13008Y11529* X12861Y11529* X12845Y11545* X12790Y11545* X12753Y11603D02* X12727Y11577D01* X12753Y11603D02* X12982Y11603D01* X13008Y11577* X13156Y11594D02* X13249Y11594D01* X13253Y11590* X13285Y11590* X13156Y11594D02* X13149Y11587D01* X13149Y11561* X13133Y11545* X13102Y11577D02* X13008Y11577D01* X13084Y11498D02* X13142Y11498D01* X13155Y11511* X13305Y11518D02* X13358Y11518D01* X13368Y11528* X13445Y11528D02* X13604Y11369D01* X13604Y11340* X13644Y11300D02* X13644Y11262D01* X13644Y11300D02* X13604Y11340D01* X13680Y11247D02* X13746Y11313D01* X13680Y11247D02* X13575Y11247D01* X13483Y11339* X13398Y11225D02* X13379Y11206D01* X13392Y11339D02* X13445Y11392D01* X13466Y11392* X13445Y11528D02* X13368Y11528D01* X13305Y11518D02* X13294Y11529D01* X13273Y11529* X13255Y11511* X13155Y11511* X13084Y11498D02* X13068Y11482D01* X12945Y11482* X12844Y11466D02* X12704Y11466D01* X12686Y11484* X12514Y11482D02* X12454Y11482D01* X12510Y11625D02* X12623Y11625D01* X12589Y11498D02* X12530Y11498D01* X12514Y11482* X12420Y11516D02* X12100Y11516D01* X12079Y11495* X12079Y11465D02* X12059Y11445D01* X12079Y11465D02* X12079Y11495D01* X12118Y11425D02* X12229Y11425D01* X12237Y11417* X12357Y11347D02* X12363Y11341D01* X12357Y11347D02* X12248Y11347D01* X12237Y11358* X12237Y11417* X12118Y11425D02* X12099Y11406D01* X12454Y11482D02* X12420Y11516D01* X12860Y11482D02* X12844Y11466D01* X12860Y11482D02* X12881Y11482D01* X13036Y11277D02* X13185Y11277D01* X13237Y11329* X13363Y11339D02* X13392Y11339D01* X13483Y11339D02* X13483Y11375D01* X13466Y11392* X13363Y11339D02* X13353Y11329D01* X13237Y11329* X13796Y11731D02* X13856Y11791D01* X13911Y11791* D15* X10763Y4875D02* X10846Y4911* X10835Y4901D01* X10773Y4901* X10763Y4911* X10763Y4989* X10773Y5000* X10835Y5000* X10846Y4989* X10888Y4875D02* X10924Y4901* X10924Y5000D01* X10903Y4979* X11013Y4875D02* X11049Y4901* X11049Y5000D01* X11028Y4979* X11138Y4875D02* X11190Y4901* X11190Y5000D01* X11138Y4937* X11210Y4937* X11263Y4875D02* X11263Y4989* X11273Y5000D01* X11325Y5000* X11335Y4989* X11335Y4963* X11325Y4953* X11294Y4953* X11325Y4953* X11335Y4942* X11335Y4911* X11325Y4901* X11273Y4901* X11263Y4911* X11388Y4875D02* X11460Y4911* X11450Y4901D01* X11398Y4901* X11388Y4911* X11388Y4989* X11398Y5000* X11450Y5000* X11460Y4989* X11460Y4911* X11388Y4911D02* X11460Y4989D01* X11513Y4875D02* X11763Y4875* X11763Y4989* X11773Y5000D01* X11825Y5000* X11835Y4989* X11835Y4968* X11825Y4958* X11763Y4901* X11835Y4901* X11888Y4875D02* X11888Y4911* X11898Y4901D01* X11950Y4901* X11960Y4911* X11960Y4947* X11950Y4958* X11898Y4958* X11888Y4947* X11888Y5000* X11960Y5000* X12013Y4875D02* X12023Y4953* X12085Y4953D01* X12138Y4875D02* X12210Y4911* X12200Y4901D01* X12148Y4901* X12138Y4911* X12138Y4989* X12148Y5000* X12200Y5000* X12210Y4989* X12210Y4911* X12138Y4911D02* X12210Y4989D01* X12263Y4875D02* X12263Y4989* X12273Y5000D01* X12325Y5000* X12335Y4989* X12335Y4963* X12325Y4953* X12294Y4953* X12325Y4953* X12335Y4942* X12335Y4911* X12325Y4901* X12273Y4901* X12263Y4911* X12388Y4875D02* X12398Y4953* X12460Y4953D01* X12513Y4875D02* X12585Y4911* X12575Y4901D01* X12523Y4901* X12513Y4911* X12513Y4989* X12523Y5000* X12575Y5000* X12585Y4989* X12585Y4911* X12513Y4911D02* X12585Y4989D01* X12638Y4875D02* X12690Y4901* X12690Y5000D01* X12638Y4937* X12710Y4937* X12763Y4875D02* D16* X15863Y5525* X15921Y5566* X15921Y5725D01* X15888Y5691* X16063Y5525D02* X16113Y5566* X16104Y5566D01* X16104Y5575* X16113Y5575* X16113Y5566* X16113Y5650D02* X16104Y5650D01* X16104Y5658* X16113Y5658* X16113Y5650* X16263Y5525D02* X16321Y5566* X16321Y5725D01* X16288Y5691* X16463Y5525D02* X16063Y6175* X16121Y6216* X16121Y6375D01* X16088Y6341* X16263Y6175D02* X10263Y5525* X10379Y5566* X10263Y5566D01* X10263Y5725* X10463Y5525D02* X10463Y5566* X10529Y5725D01* X10596Y5566* X10488Y5625D02* X10571Y5625D01* X10663Y5525D02* X10663Y5725* X10729Y5650D01* X10796Y5725* X10729Y5650D02* X10729Y5566D01* X10863Y5525D02* X10979Y5566* X10863Y5566D01* X10863Y5725* X10979Y5725* X10979Y5650D02* X10863Y5650D01* X11063Y5525D02* X11063Y5566* X11063Y5725D01* X11179Y5725* X11196Y5708* X11196Y5666* X11179Y5650* X11063Y5650* X11163Y5650D02* X11179Y5650D01* X11196Y5566* X11263Y5525D02* X11396Y5525* X11463Y5525* X11463Y5641* X11479Y5658D01* X11563Y5658* X11579Y5641* X11579Y5583* X11563Y5566* X11479Y5566* X11463Y5583* X11463Y5708* X11479Y5725* X11563Y5725* X11579Y5708* X11663Y5525D02* X11796Y5525* X11863Y5525* X11863Y5725* X11929Y5566D01* X11996Y5725* X12063Y5525D02* X12063Y5566* X12063Y5725D01* X12179Y5725* X12196Y5708* X12196Y5666* X12179Y5650* X12063Y5650D02* X12179Y5650D01* X12196Y5633* X12196Y5583* X12179Y5566* X12063Y5566* X12263Y5525D02* X12263Y5566* X12329Y5725D01* X12396Y5566* X12288Y5625D02* X12371Y5625D01* X12463Y5525D02* X12463Y5725* X12596Y5725D01* X12529Y5725D02* X12529Y5566D01* X12663Y5525D02* X12796Y5525* X12863Y5525* X12863Y5566* X12863Y5725D01* X12979Y5725* X12996Y5708* X12996Y5666* X12979Y5650* X12863Y5650* X13063Y5525D02* X13179Y5566* X13063Y5566D01* X13063Y5725* X13263Y5525D02* X13263Y5566* X13329Y5725D01* X13396Y5566* X13288Y5625D02* X13371Y5625D01* X13463Y5525D02* X13463Y5566* X13463Y5725D01* X13596Y5566* X13596Y5725* X13663Y5525D02* X13779Y5566* X13663Y5566D01* X13663Y5725* X13779Y5725* X13779Y5650D02* X13663Y5650D01* X13863Y5525D02* X13996Y5525* X14063Y5525* X14079Y5650* X14179Y5650D01* X14129Y5600D02* X14129Y5700D01* X14263Y5525D02* X14396Y5525* X14463Y5525* X14463Y5583* X14479Y5566D01* X14563Y5566* X14579Y5583* X14579Y5633* X14563Y5650* X14479Y5650* X14463Y5666* X14463Y5708* X14479Y5725* X14563Y5725* X14579Y5708* X14663Y5525D02* X14729Y5566* X14729Y5725D01* X14696Y5566D02* X14763Y5566D01* X14696Y5725D02* X14763Y5725D01* X14863Y5525D02* X14929Y5633* X14996Y5633D01* X14996Y5583* X14979Y5566* X14879Y5566* X14863Y5583* X14863Y5708* X14879Y5725* X14979Y5725* X14996Y5708* X15063Y5525D02* X10913Y6875* X10913Y6947* X10933Y6927D01* X11038Y6927* X11058Y6947* X11058Y7010* X11038Y7031* X10933Y7031* X10913Y7052* X10913Y7104* X10933Y7125* X11038Y7125* X11058Y7104* X11163Y6875D02* X11163Y6927* X11163Y7125D01* X11163Y7031D02* X11173Y7031D01* X11308Y7125* X11173Y7031D02* X11308Y6927D01* X11413Y6875D02* X11413Y7125* X11496Y7031D01* X11579Y7125* X11496Y7031D02* X11496Y6927D01* X11663Y6875D02* X11746Y7010* X11829Y7010D01* X11829Y6947* X11808Y6927* X11683Y6927* X11663Y6947* X11663Y7104* X11683Y7125* X11808Y7125* X11829Y7104* X11913Y6875D02* X11913Y7125* X11913Y6947D01* X11933Y6927* X12058Y6927* X12079Y6947* X12079Y7125* X12163Y6875D02* X12163Y6927* X12246Y7125D01* X12329Y6927* X12194Y7000D02* X12298Y7000D01* X12413Y6875D02* X12413Y6927* X12413Y7125D01* X12558Y7125* X12579Y7104* X12579Y7052* X12558Y7031* X12413Y7031* X12538Y7031D02* X12558Y7031D01* X12579Y6927* X12663Y6875D02* X12663Y6927* X12663Y7125D01* X12808Y7125* X12829Y7093* X12829Y6958* X12808Y6927* X12663Y6927* X12913Y6875D02* X13079Y6875* X13163Y6875* X13308Y6927* X13163Y6927D01* X13163Y7125* X13413Y6875D02* X13496Y6927* X13496Y7125D01* X13454Y6927D02* X13538Y6927D01* X13454Y7125D02* X13538Y7125D01* X13663Y6875D02* X13663Y6927* X13663Y7125D01* X13756Y6927* X13850Y7125* X13850Y6927* X13913Y6875D02* X13996Y6927* X13996Y7125D01* X13954Y6927D02* X14038Y6927D01* X13954Y7125D02* X14038Y7125D01* X14163Y6875D02* X14163Y7125* X14329Y7125D01* X14246Y7125D02* X14246Y6927D01* X14413Y6875D02* X14558Y6927* X14413Y6927D01* X14413Y7125* X14558Y7125* X14558Y7031D02* X14413Y7031D01* X14663Y6875D02* X14663Y6927* X14663Y7125D01* X14808Y7125* X14829Y7093* X14829Y6958* X14808Y6927* X14663Y6927* X14913Y6875D02* X11163Y6225* X11163Y6297* X11183Y6277D01* X11288Y6277* X11308Y6297* X11308Y6360* X11288Y6381* X11183Y6381* X11163Y6402* X11163Y6454* X11183Y6475* X11288Y6475* X11308Y6454* X11413Y6225D02* X11413Y6277* X11413Y6475D01* X11413Y6381D02* X11423Y6381D01* X11558Y6475* X11423Y6381D02* X11558Y6277D01* X11663Y6225D02* X11663Y6475* X11746Y6381D01* X11829Y6475* X11746Y6381D02* X11746Y6277D01* X11913Y6225D02* X11913Y6277* X11913Y6475D01* X12006Y6277* X12100Y6475* X12100Y6277* X12163Y6225D02* X12246Y6277* X12246Y6475D01* X12204Y6277D02* X12288Y6277D01* X12204Y6475D02* X12288Y6475D01* X12413Y6225D02* X12413Y6277* X12413Y6475D01* X12579Y6277* X12579Y6475* X12663Y6225D02* X12663Y6277* X12663Y6475D01* X12808Y6475* X12829Y6443* X12829Y6308* X12808Y6277* X12663Y6277* X12913Y6225D02* X13058Y6277* X12913Y6277D01* X12913Y6475* X13058Y6475* X13058Y6381D02* X12913Y6381D01* X13163Y6225D02* X13163Y6277* X13163Y6475D01* X13308Y6475* X13329Y6454* X13329Y6402* X13308Y6381* X13163Y6381* X13288Y6381D02* X13308Y6381D01* X13329Y6277* X13413Y6225D02* X13579Y6225* X13663Y6225* X13663Y6277* X13663Y6475D01* X13808Y6475* X13829Y6454* X13829Y6402* X13808Y6381* X13663Y6381* X13913Y6225D02* X14079Y6297* X14058Y6277D01* X13933Y6277* X13913Y6297* X13913Y6454* X13933Y6475* X14058Y6475* X14079Y6454* X14163Y6225D02* X14163Y6277* X14163Y6475D01* X14308Y6475* X14329Y6454* X14329Y6402* X14308Y6381* X14163Y6381D02* X14308Y6381D01* X14329Y6360* X14329Y6297* X14308Y6277* X14163Y6277* X14413Y6225D02* X13013Y4825* X13013Y4897* X13033Y4877D01* X13138Y4877* X13158Y4897* X13158Y4960* X13138Y4981* X13033Y4981* X13013Y5002* X13013Y5054* X13033Y5075* X13138Y5075* X13158Y5054* X13263Y4825D02* X13263Y4877* X13263Y5075D01* X13263Y4981D02* X13273Y4981D01* X13408Y5075* X13273Y4981D02* X13408Y4877D01* X13513Y4825D02* X13658Y4897* X13638Y4877D01* X13533Y4877* X13513Y4897* X13513Y5054* X13533Y5075* X13638Y5075* X13658Y5054* X13658Y4897* X13513Y4897D02* X13658Y5054D01* X13763Y4825D02* X13908Y4897* X13888Y4877D01* X13783Y4877* X13763Y4897* X13763Y5054* X13783Y5075* X13888Y5075* X13908Y5054* X13908Y4897* X13763Y4897D02* X13908Y5054D01* X14013Y4825D02* X14117Y4877* X14117Y5075D01* X14013Y4950* X14158Y4950* X14263Y4825D02* X14325Y4877* X14315Y4877D01* X14315Y4887* X14325Y4887* X14325Y4877* X14513Y4825D02* X14658Y4897* X14638Y4877D01* X14533Y4877* X14513Y4897* X14513Y5054* X14533Y5075* X14638Y5075* X14658Y5054* X14658Y4897* X14513Y4897D02* X14658Y5054D01* X14763Y4825D02* X14835Y4877* X14835Y5075D01* X14794Y5033* X15013Y4825D02* X15075Y4877* X15065Y4877D01* X15065Y4887* X15075Y4887* X15075Y4877* X15263Y4825D02* X15408Y4877* X15263Y4877D01* X15263Y5075* X15408Y5075* X15408Y4981D02* X15263Y4981D01* X15513Y4825D02* D107* X12788Y10885* X12788Y10908* X12791Y10911D01* X12808Y10911* X12811Y10908* X12811Y10896* X12808Y10893* X12791Y10893* X12788Y10896* X12788Y10921* X12791Y10925* X12808Y10925* X12811Y10921* X12828Y10885D02* X0Y0* M02* gerbv-2.7.0/example/polarity/Makefile.in0000644000175000017500000003606413423533413020062 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/polarity ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt 6_vbat.gbr MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/polarity/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/polarity/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/amacro-ref/0000755000175000017500000000000013421555713016162 5ustar carstencarstengerbv-2.7.0/example/amacro-ref/README.txt0000644000175000017500000000321213421555713017656 0ustar carstencarstenThis directory contains examples of gerber files with compilcated macros with comments and calculations in them. gerbv used to segfault on this. full-ex.grb =========== Sample file from J. Wilson submitted to the gEDA user mailing list on 17th of Dec. 2007. "the macro renders two rectangles overlapped to form a larger rectangle with four small squares removed from its corners. The squares are then filled by four circles centered so the result is a rectangle with its pointy bits rounded off." limit-ex.grb ============ From full-ex.gbr above, but calculations removed. Only comments left. jj1.grb and jj1.drl =================== First indication that something was wrong with output generated from Mentor Expedition. Gerber contains aperture macros and drill file has some things that had never been seen before. stp0.grb and 1.grb ================== Complete samples output from Mentor Expedition with very big and complicated aperture macros to display how complicated they can get. The favorit is the multiplication with negative numbers. jj1.grb, jj1.drl, stp0.grb and 1.grb are used with explicit permission from from the design owner. gerbv_am_expression_bug.ger =========================== This is a handmade example used to show that gerbv didn't have operator precedence when doing parsing of aperture macros. Submitted by Ben Rampling in bug report #3172530 and released with his approval. "The attached sample should show a 2 inch OD, 1.9 inch ID annulus (a thin circle). GC-Prevue does implement precedence, and correctly displays the attached sample. gerbv incorrectly displays a 2 inch OD, 0.1 inch ID annulus (a disc with a small hole)." gerbv-2.7.0/example/amacro-ref/stp0.grb0000644000175000017500000055522113421555713017556 0ustar carstencarsten* G04 Job : D:\EKF\CAD\Mentor\Projects\c\ccg\ccgr0\pcb\ccgr0.pcb* G04 User : PC35:gn* G04 Layer : SoldermaskBottom.gdo* G04 Date : Tue Jun 19 15:04:02 2007* G04 Gerber Output SolderMaskBottom* %ICAS*% %MOIN*% %FSLAX24Y24*% %OFA0.0000B0.0000*% G90* G74* %AMVB_RECTANGLE* 21,1,$1,$2,0,0,$3* % %AMVB_OCTFINGER* $4=$2/4.8284* $1=$1/2* $2=$2/2* $5=$2-$4* 4,1,6,$1-$5,$2,$1,$4,$1,0-$4,$1-$5,0-$2,0-$1,0-$2,0-$1,$2,$1-$5,$2,$3* % %AMVB_Custom_Fiducial Mimot Dot 1.0 Mask_Mirrored* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0630,$4-$5,$6+$7* % %AMVB_Custom_LFPAK4 Pin5 Mask_Mirrored* 4,1,8,0.0748,0.0453,0.0748,-0.0768,0.0945,-0.0768,0.0945,-0.1398,-0.0945,-0.1398,-0.0945,-0.0768,-0.0748,-0.0768,-0.0748,0.0453,0.0748,0.0453,$1* % %ADD10C,0.00500*% %ADD14C,0.00591*% %ADD15C,0.00984*% %ADD16C,0.01181*% %ADD30C,0.03937*% %ADD45C,0.04331*% %ADD22C,0.04724*% %ADD75C,0.05118*% %ADD69C,0.05906*% %ADD29C,0.06299*% %ADD23C,0.06693*% %ADD83C,0.08268*% %ADD46C,0.08661*% %ADD84C,0.12992*% %ADD86C,0.14173*% %ADD13C,0.14764*% %ADD68C,0.18110*% %ADD12C,0.20472*% %ADD78C,0.21260*% %ADD48VB_RECTANGLE,0.02756X0.02756X180.00000*% %ADD51VB_RECTANGLE,0.03937X0.03937X90.00000*% %ADD44VB_RECTANGLE,0.04331X0.04331X270.00000*% %ADD67VB_RECTANGLE,0.04724X0.04724X270.00000*% %ADD74VB_RECTANGLE,0.05118X0.05118X270.00000*% %ADD85VB_RECTANGLE,0.05906X0.05906X270.00000*% %ADD28VB_RECTANGLE,0.06299X0.06299X0.00000*% %ADD82VB_RECTANGLE,0.06693X0.06693X270.00000*% %ADD41VB_RECTANGLE,0.10236X0.10236X0.00000*% %ADD81VB_RECTANGLE,0.12598X0.12598X0.00000*% %ADD66VB_RECTANGLE,0.17323X0.17323X180.00000*% %ADD79VB_RECTANGLE,0.25197X0.25197X0.00000*% %ADD20VB_RECTANGLE,0.02756X0.01378X180.00000*% %ADD43VB_RECTANGLE,0.02756X0.01378X90.00000*% %ADD17VB_RECTANGLE,0.02756X0.01969X180.00000*% %ADD71VB_RECTANGLE,0.02756X0.01969X270.00000*% %ADD80VB_RECTANGLE,0.03150X0.01969X0.00000*% %ADD49VB_RECTANGLE,0.03150X0.01969X270.00000*% %ADD57VB_RECTANGLE,0.03346X0.01969X0.00000*% %ADD32VB_RECTANGLE,0.03543X0.01575X0.00000*% %ADD87VB_RECTANGLE,0.03543X0.02362X90.00000*% %ADD18VB_RECTANGLE,0.03937X0.03150X0.00000*% %ADD70VB_RECTANGLE,0.03937X0.03150X90.00000*% %ADD65VB_RECTANGLE,0.03937X0.03543X270.00000*% %ADD36VB_RECTANGLE,0.04331X0.01378X0.00000*% %ADD38VB_RECTANGLE,0.04331X0.01378X270.00000*% %ADD47VB_RECTANGLE,0.04331X0.02362X180.00000*% %ADD73VB_RECTANGLE,0.04331X0.02362X270.00000*% %ADD58VB_RECTANGLE,0.04331X0.03937X90.00000*% %ADD59VB_RECTANGLE,0.05118X0.01772X180.00000*% %ADD33VB_RECTANGLE,0.05118X0.01772X90.00000*% %ADD60VB_RECTANGLE,0.05118X0.03150X180.00000*% %ADD34VB_RECTANGLE,0.05118X0.03150X90.00000*% %ADD50VB_RECTANGLE,0.05118X0.04331X90.00000*% %ADD19VB_RECTANGLE,0.05118X0.04724X0.00000*% %ADD72VB_RECTANGLE,0.05118X0.04724X90.00000*% %ADD63VB_RECTANGLE,0.06299X0.00984X180.00000*% %ADD26VB_RECTANGLE,0.06299X0.01969X90.00000*% %ADD31VB_RECTANGLE,0.06299X0.03543X270.00000*% %ADD53VB_RECTANGLE,0.06299X0.05118X180.00000*% %ADD42VB_RECTANGLE,0.06299X0.05118X90.00000*% %ADD21VB_RECTANGLE,0.07087X0.02362X0.00000*% %ADD24VB_RECTANGLE,0.07087X0.02362X90.00000*% %ADD55VB_RECTANGLE,0.07480X0.01378X180.00000*% %ADD54VB_RECTANGLE,0.07480X0.01378X270.00000*% %ADD64VB_RECTANGLE,0.07480X0.01575X90.00000*% %ADD25VB_RECTANGLE,0.07480X0.05118X270.00000*% %ADD77VB_RECTANGLE,0.08268X0.07480X0.00000*% %ADD56VB_RECTANGLE,0.09055X0.05512X90.00000*% %ADD27VB_RECTANGLE,0.10630X0.06693X180.00000*% %ADD76VB_RECTANGLE,0.11417X0.06693X270.00000*% %ADD61VB_RECTANGLE,1.10630X0.06299X0.00000*% %ADD62VB_RECTANGLE,2.16929X0.06299X0.00000*% %ADD35VB_OCTFINGER,0.04331X0.01378X0.00000*% %ADD40VB_OCTFINGER,0.04331X0.01378X90.00000*% %ADD39VB_OCTFINGER,0.04331X0.01378X180.00000*% %ADD37VB_OCTFINGER,0.04331X0.01378X270.00000*% %ADD11VB_Custom_Fiducial Mimot Dot 1.0 Mask_Mirrored,0.00000X1.00000X0.00000*% %ADD52VB_Custom_LFPAK4 Pin5 Mask_Mirrored,180.00000*% G01* G36* X23327Y2894D02* X23524D01* Y3091* X23327* Y2894* Y3209D02* X23524D01* Y3406* X23327* Y3209* X24075Y6201D02* X24272D01* Y6398* X24075* Y6201* X24390D02* X24587D01* Y6398* X24390* Y6201* X25059Y6594D02* X25256D01* Y6791* X25059* Y6594* X25374D02* X25571D01* Y6791* X25374* Y6594* X53858Y23268D02* Y22677D01* X54488* Y22244* X55079* Y23268* X53858* Y29488D02* Y30079D01* X54488* Y30512* X55079* Y29488* X53858* X58858Y9843D02* X60827D01* Y12205* X58858* Y9843* G37* G54D10* X0Y0D02* X62402D01* X62992Y591* Y38780* X62402Y39370* X-787* Y3937* X0* Y0* G54D11* X1378Y3937D03* X2953Y37402D03* X57283Y37795D03* G54D12* X8465Y37205D03* X19094Y2165D03* X22638Y37205D03* X55146Y2165D03* Y37205D03* G54D13* X40945Y15354D03* Y31890D03* X54331Y15354D03* Y31890D03* G54D14* X4028Y49794D02* X4024Y49793D01* X4021Y49790* X4018Y49786* X4016Y49782* Y49215* X4018Y49211* X4020Y49207* X4024Y49206* X4028Y49205* X4033Y49206* X4037Y49207* X4039Y49211* X4041Y49215* Y49513* X4308* X4313Y49514* X4316Y49517* X4318Y49521* Y49525* Y49530* X4316Y49534* X4313Y49536* X4308Y49537* X4041* Y49769* X4426* X4431Y49771* X4434Y49773* X4436Y49777* Y49781* Y49786* X4434Y49790* X4431Y49793* X4426Y49794* X4028* Y50778D02* X4024Y50777D01* X4021Y50774* X4019Y50770* X4018Y50766* X4019Y50761* X4021Y50757* X4024Y50755* X4028Y50754* X4215* Y50199* X4217Y50195* X4219Y50192* X4223Y50190* X4227Y50189* X4231Y50190* X4236Y50192* X4238Y50195* X4239Y50199* Y50754* X4426* X4431Y50755* X4434Y50757* X4436Y50761* Y50766* Y50770* X4434Y50774* X4431Y50777* X4426Y50778* X4028* Y53731D02* X4024Y53730D01* X4021Y53727* X4018Y53723* X4016Y53719* Y53152* X4018Y53147* X4021Y53144* X4024Y53141* X4028Y53140* X4426* X4431Y53141* X4434Y53144* X4436Y53148* Y53152* Y53157* X4434Y53161* X4431Y53163* X4426Y53164* X4041* Y53424* X4308* X4313Y53425* X4316Y53427* X4318Y53431* Y53435* Y53440* X4316Y53443* X4313Y53446* X4308Y53447* X4041* Y53706* X4426* X4431Y53708* X4434Y53710* X4436Y53714* Y53718* Y53723* X4434Y53727* X4431Y53730* X4426Y53731* X4028* X4040Y46833D02* X4038Y46835D01* X4036Y46837* X4034Y46838* X4031Y46839* X4026* X4022Y46838* X4019Y46836* X4018Y46834* X4017Y46832* X4016Y46829* Y46828* Y46262* X4018Y46258* X4020Y46255* X4024Y46253* X4028Y46252* X4033Y46253* X4037Y46255* X4039Y46258* X4041Y46262* Y46764* X4216Y46299* X4218Y46296* X4220Y46294* X4223Y46293* X4227* X4231* X4234Y46294* X4237Y46296* X4239Y46299* X4414Y46764* Y46262* X4416Y46258* X4418Y46255* X4422Y46253* X4426Y46252* X4430Y46253* X4435Y46255* X4437Y46258* X4438Y46262* Y46829* X4436Y46834* X4433Y46838* X4429Y46839* X4423* X4420Y46838* X4419Y46837* X4417Y46835* X4415Y46833* X4414Y46831* X4227Y46337* X4041Y46831* X4040Y46833* X4041Y47813D02* X4040Y47818D01* X4037Y47821* X4033Y47823* X4029* X4024* X4020Y47821* X4018Y47818* X4017Y47813* Y47493* X4016Y47490* X4017Y47488* Y47246* X4018Y47242* X4020Y47239* X4024Y47237* X4029Y47236* X4033Y47237* X4037Y47239* X4040Y47242* X4041Y47246* Y47486* X4067Y47544* X4110Y47601* X4149Y47621* X4151Y47622* X4190Y47639* X4267* X4318Y47631* X4367Y47600* X4389Y47576* X4407Y47539* X4415Y47488* Y47246* X4416Y47242* X4418Y47239* X4422Y47237* X4427Y47236* X4431Y47237* X4435Y47239* X4437Y47242* X4438Y47246* Y47487* Y47491* X4431Y47544* X4430Y47545* X4429Y47547* Y47548* X4409Y47587* X4408Y47588* Y47590* Y47591* X4383Y47618* X4382Y47620* X4380Y47621* X4329Y47654* X4327Y47655* X4326* X4324Y47656* X4269Y47663* X4268* X4188* X4185* X4183* X4141Y47644* X4139Y47642* X4096Y47621* X4094Y47620* X4092Y47619* X4047Y47557* X4046Y47555* X4045Y47554* X4041Y47544* Y47813* Y52722D02* X4324D01* X4374Y52685* X4415Y52630* Y52557* X4373Y52499* X4324Y52463* X4041* Y52722* X4362Y51634D02* X4397Y51583D01* X4414Y51470* X4397Y51349* X4362Y51270* X4313Y51219* X4265Y51196* X4041* Y51738* X4264* X4311Y51703* X4361Y51635* X4362Y51634* X4393Y52701D02* X4391Y52702D01* X4390Y52703* X4334Y52744* X4331Y52745* X4330Y52746* X4327* X4029* X4024Y52745* X4021Y52742* X4018Y52739* X4017Y52735* Y52168* X4018Y52164* X4020Y52160* X4024Y52158* X4029* X4033* X4037Y52160* X4040Y52164* X4041Y52168* Y52439* X4327* X4330* X4332Y52440* X4334Y52441* X4390Y52481* X4392Y52483* X4394Y52487* X4437Y52545* Y52546* Y52547* X4438* Y52549* Y52550* Y52552* Y52634* Y52636* Y52637* X4437Y52638* Y52639* Y52640* X4393Y52701* X4422Y51590D02* X4421Y51592D01* Y51593* X4419Y51594* Y51595* X4382Y51646* X4381Y51648* X4330Y51719* X4329Y51720* X4327Y51721* Y51722* X4275Y51760* X4272Y51761* X4270Y51762* X4268* X4029* X4024Y51761* X4021Y51758* X4018Y51755* X4017Y51750* Y51183* X4018Y51179* X4021Y51176* X4024Y51173* X4029Y51172* X4268* X4272* X4324Y51197* X4327Y51199* X4328Y51201* X4381Y51256* X4382Y51257* X4383Y51260* X4421Y51341* Y51342* X4422Y51343* Y51344* X4439Y51469* Y51472* X4422Y51590* X4585Y47623D02* X4581Y47621D01* X4578Y47619* X4576Y47615* X4575Y47611* X4576Y47607* X4578Y47603* X4581Y47600* X4585Y47599* X4773* Y47246* X4774Y47242* X4776Y47239* X4780Y47237* X4784Y47236* X4789Y47237* X4793Y47239* X4795Y47242* X4796Y47246* Y47599* X4983* X4988Y47600* X4991Y47603* X4993Y47607* X4994Y47611* X4993Y47615* X4991Y47619* X4988Y47621* X4983Y47623* X4796* X4797Y47813* X4796Y47818* X4793Y47821* X4789Y47823* X4785* X4781* X4777Y47821* X4774Y47818* X4773Y47813* Y47623* X4585* X4599Y53719D02* X4598Y53724D01* X4595Y53727* X4591Y53728* X4586Y53729* X4582Y53728* X4578Y53727* X4576Y53724* X4575Y53719* Y53152* X4576Y53147* X4578Y53144* X4582Y53143* X4586Y53142* X4591Y53143* X4595Y53144* X4598Y53147* X4599Y53152* Y53389* X4697Y53469* X4976Y53144* X4978Y53143* X4980Y53141* X4981* X4984* X4987Y53143* X4991Y53145* X4994Y53148* X4996Y53152* Y53156* X4994Y53160* X4714Y53484* X4992Y53709* X4994Y53712* X4996Y53717* X4994Y53721* X4993Y53725* X4989Y53728* X4986Y53730* X4983Y53731* X4981Y53730* X4980* X4978Y53728* X4599Y53420* Y53719* Y52735D02* X4598Y52739D01* X4595Y52742* X4591Y52744* X4587Y52745* X4582Y52744* X4578Y52742* X4576Y52739* X4575Y52735* Y52414* X4574Y52412* X4575Y52409* Y52168* X4576Y52164* X4578Y52160* X4582Y52158* X4587* X4591* X4595Y52160* X4598Y52164* X4599Y52168* Y52407* X4625Y52465* X4668Y52523* X4707Y52543* X4709* X4748Y52560* X4825* X4876Y52553* X4925Y52521* X4947Y52497* X4965Y52461* X4973Y52409* Y52168* X4974Y52164* X4976Y52160* X4981Y52158* X4985* X4989* X4993Y52160* X4995Y52164* X4996Y52168* Y52408* Y52412* X4989Y52465* X4988Y52467* X4987Y52468* Y52469* X4967Y52508* X4966Y52510* Y52511* Y52512* X4942Y52539* X4940Y52541* Y52542* X4938Y52543* X4887Y52575* X4885Y52576* X4884* X4882Y52577* X4827Y52585* X4826* X4746* X4743* X4741Y52584* X4699Y52566* X4697Y52563* X4655Y52542* X4652Y52541* X4650Y52540* X4605Y52478* X4604Y52477* X4603Y52475* X4599Y52465* Y52735* X4656Y51434D02* X4845D01* X4849Y51433* X4852Y51431* X4854Y51428* X4855Y51424* X4854Y51420* X4852Y51417* X4849Y51414* X4845* X4656* X4652* X4649Y51417* X4647Y51420* X4646Y51424* X4647Y51428* X4648Y51431* X4651Y51433* X4656Y51434* X4709Y50569D02* X4748Y50586D01* X4824* X4875Y50578* X4924Y50547* X4947Y50522* X4965Y50487* X4970Y50450* X4605* X4625Y50491* X4668Y50548* X4707Y50568* X4709Y50569* X4824Y46274D02* X4747D01* X4701Y46290* Y46291* X4657Y46318* X4618Y46369* X4599Y46423* Y46498* X4625Y46555* X4668Y46611* X4707Y46631* X4709Y46632* X4748Y46649* X4824* X4889Y46641* X4935Y46611* X4973Y46576* Y46347* X4939Y46312* X4878Y46282* X4824Y46274* Y49227D02* X4747D01* X4701Y49243* Y49244* X4657Y49270* X4618Y49321* X4599Y49376* Y49451* X4625Y49507* X4668Y49564* X4707Y49584* X4709Y49585* X4748Y49602* X4824* X4889Y49594* X4935Y49564* X4973Y49529* Y49299* X4939Y49265* X4878Y49234* X4824Y49227* Y50211D02* X4823D01* X4748* X4701Y50227* Y50228* X4657Y50255* X4618Y50306* X4599Y50360* Y50426* X4984* X4987* X4990Y50427* X4991Y50429* X4993Y50431* X4994Y50433* X4996Y50435* Y50437* Y50440* X4988Y50491* X4987Y50495* X4984Y50498* X4979Y50499* X4975* X4971Y50498* X4967Y50496* X4965Y50493* Y50489* Y50487* X4966Y50484* X4969Y50481* X4973Y50480* X4977* X4981Y50481* X4984Y50483* X4987Y50487* X4988Y50489* Y50491* Y50493* X4987Y50495* X4967Y50535* X4966Y50538* X4941Y50564* X4939Y50567* X4938Y50568* X4886Y50600* X4885Y50601* X4883* X4882Y50602* X4827Y50610* X4825* X4746* X4745* X4743Y50609* X4742Y50608* X4699Y50591* X4697Y50588* X4654Y50568* X4652Y50566* X4650Y50565* X4605Y50504* X4603Y50503* Y50502* X4575Y50443* Y50439* Y50436* Y50359* Y50356* Y50355* X4597Y50295* X4598Y50293* X4599* X4640Y50238* X4641Y50236* X4642Y50235* X4688Y50207* X4691Y50206* X4693* X4742Y50188* X4743* X4745Y50187* X4746* X4825* X4827* X4882Y50194* X4885* X4886Y50195* X4888Y50196* X4952Y50229* X4955Y50231* X4994Y50271* X4996Y50274* Y50278* X4994Y50282* X4991Y50285* X4987Y50288* X4984Y50290* X4980Y50289* X4976Y50287* X4939Y50249* X4878Y50219* X4824Y50211* X4996Y46661D02* X4995Y46665D01* X4993Y46669* X4988Y46670* X4984Y46671* X4980Y46670* X4976Y46669* X4974Y46665* X4973Y46661* Y46609* X4952Y46630* X4951Y46631* X4900Y46663* X4899Y46664* X4896* Y46665* X4827Y46673* X4824* X4746* X4745* X4743Y46672* X4741Y46671* X4699Y46654* X4697Y46651* X4654Y46631* X4652Y46629* X4650Y46628* X4605Y46567* X4603Y46566* Y46565* X4575Y46506* Y46503* Y46501* Y46499* Y46422* Y46419* Y46418* X4597Y46358* X4598Y46356* X4599* X4640Y46301* X4641Y46299* X4642Y46298* X4688Y46270* X4691Y46269* X4693* X4741Y46251* X4743* X4745Y46250* X4746* X4824* X4827* X4882Y46257* X4885* X4886Y46258* X4888Y46259* X4952Y46292* X4953* X4955Y46294* X4973Y46313* Y46262* X4974Y46258* X4976Y46255* X4980Y46253* X4984Y46252* X4988Y46253* X4993Y46255* X4995Y46258* X4996Y46262* Y46661* Y49614D02* X4995Y49618D01* X4993Y49621* X4988Y49623* X4984Y49624* X4980Y49623* X4976Y49621* X4974Y49618* X4973Y49614* Y49562* X4952Y49582* X4951Y49584* X4900Y49616* X4899Y49617* X4896* Y49618* X4827Y49625* X4824* X4746* X4745* X4743* X4741Y49624* X4699Y49606* X4697Y49604* X4654Y49583* X4652Y49582* X4650Y49581* X4605Y49520* X4603Y49519* Y49518* X4575Y49459* Y49455* Y49454* Y49452* Y49374* Y49371* Y49370* X4597Y49311* X4598Y49309* X4599Y49308* X4640Y49253* X4641Y49252* X4642Y49251* X4688Y49223* X4691Y49222* X4693Y49221* X4741Y49204* X4743* X4745Y49203* X4746* X4824* X4827* X4882Y49210* X4885* X4886Y49211* X4888Y49212* X4952Y49244* X4953Y49245* X4955Y49247* X4973Y49266* Y49215* X4974Y49211* X4976Y49207* X4980Y49206* X4984Y49205* X4988Y49206* X4993Y49207* X4995Y49211* X4996Y49215* Y49614* X5131Y51291D02* X5128Y51293D01* X5123Y51294* X5119Y51292* X5115Y51290* X5112Y51286* X5111Y51281* Y51277* X5113Y51273* X5167Y51219* X5168Y51218* X5171Y51217* X5172Y51216* X5277Y51172* X5278* X5281* X5361* X5363* X5364* X5366* X5469Y51217* X5472Y51219* X5474Y51220* X5519Y51274* Y51276* X5520Y51277* X5522Y51280* X5532Y51362* Y51365* X5523Y51440* X5522Y51443* X5521* X5520Y51445* X5519Y51447* X5475Y51499* X5474* X5473Y51501* X5471Y51502* X5404Y51535* X5401Y51536* X5397* X5309Y51541* X5308* X5305* X5201Y51530* X5200* X5198* X5136Y51509* X5172Y51738* X5520* X5524Y51739* X5528Y51742* X5530Y51746* Y51750* Y51755* X5528Y51759* X5524Y51761* X5520Y51762* X5162* X5157Y51761* X5154Y51758* X5151Y51755* Y51752* X5110Y51494* Y51490* X5111Y51487* X5113Y51485* X5115Y51483* X5118Y51481* X5121Y51479* X5123* X5126Y51480* X5204Y51506* X5306Y51516* X5308* X5395Y51512* X5459Y51481* X5499Y51434* X5507Y51364* X5498Y51287* X5458Y51239* X5358Y51196* X5284* X5182Y51238* X5131Y51291* X5134Y49224D02* X5325Y49414D01* X5134Y49604* X5133Y49606* X5131Y49608* Y49609* Y49612* X5133Y49617* X5136Y49620* X5140Y49622* X5144Y49624* X5149* X5152Y49622* X5342Y49432* X5533Y49622* X5537Y49624* X5541* X5545Y49622* X5549Y49620* X5551Y49617* X5553Y49612* Y49608* X5551Y49604* X5360Y49414* X5551Y49224* X5553Y49220* Y49216* X5551Y49211* X5549Y49207* X5545Y49205* X5541Y49204* X5537* X5533Y49207* X5342Y49396* X5152Y49207* X5149Y49204* X5144* X5140Y49205* X5136Y49207* X5133Y49211* X5132Y49216* Y49220* X5134Y49224* X5142Y47623D02* X5138Y47621D01* X5135Y47619* X5133Y47615* X5132Y47611* X5133Y47607* X5135Y47603* X5138Y47600* X5142Y47599* X5330* Y47246* X5331Y47242* X5333Y47239* X5337Y47237* X5341Y47236* X5345Y47237* X5350Y47239* X5352Y47242* X5353Y47246* Y47599* X5540* X5545Y47600* X5548Y47603* X5550Y47607* Y47611* Y47615* X5548Y47619* X5545Y47621* X5540Y47623* X5353* X5354Y47813* X5353Y47818* X5350Y47821* X5346Y47823* X5342* X5338* X5334Y47821* X5331Y47818* X5330Y47813* Y47623* X5142* X5144Y53731D02* X5140Y53730D01* X5137Y53727* X5134Y53723* X5133Y53719* Y53152* X5134Y53148* X5136Y53144* X5140Y53143* X5144Y53142* X5149Y53143* X5153Y53144* X5156Y53148* X5157Y53152* Y53450* X5424* X5429Y53451* X5432Y53454* X5434Y53458* Y53462* Y53467* X5432Y53471* X5429Y53473* X5424Y53474* X5157* Y53706* X5542* X5547Y53708* X5550Y53710* X5552Y53714* Y53718* Y53723* X5550Y53727* X5547Y53730* X5542Y53731* X5144* X5259Y46666D02* X5270Y46681D01* X5276* X5287Y46666* Y46658* X5276Y46644* X5270* X5259Y46658* Y46666* Y52572D02* X5270Y52586D01* X5276* X5287Y52572* Y52563* X5276Y52550* X5270* X5259Y52563* Y52572* X5260Y46623D02* X5261Y46621D01* X5264* X5266* X5280* X5283* X5286* X5287Y46623* X5302Y46644* X5304Y46646* Y46650* X5305Y46652* Y46672* X5304Y46675* Y46679* X5302Y46681* X5287Y46701* X5285Y46703* X5283* X5280Y46705* X5266* X5264Y46704* Y46703* X5261* X5260Y46701* X5244Y46681* X5242Y46678* Y46675* Y46672* Y46652* Y46650* Y46646* X5244Y46644* X5260Y46623* Y52529D02* X5261Y52527D01* X5264Y52526* X5266* X5281* X5283* X5286Y52527* X5288Y52529* X5302Y52549* X5304Y52552* Y52555* X5305Y52557* Y52578* X5304Y52581* Y52584* X5302Y52587* X5288Y52606* X5285Y52608* X5283Y52609* X5281Y52610* X5266* X5265Y52609* X5264* X5261Y52608* X5260Y52606* X5244Y52587* X5243Y52583* X5242Y52581* Y52578* Y52557* Y52555* X5243Y52552* X5244Y52549* X5260Y52529* X5280Y46582D02* Y46586D01* X5278Y46589* X5275Y46592* X5271* X5267* X5265Y46589* X5263Y46586* Y46582* Y46262* Y46258* X5265Y46255* X5267Y46253* X5271Y46252* X5275Y46253* X5278Y46255* X5280Y46258* Y46262* Y46582* Y50766D02* Y50770D01* X5278Y50773* X5275Y50775* X5271Y50776* X5267Y50775* X5265Y50773* X5263Y50770* Y50766* Y50199* Y50194* X5265Y50192* X5267Y50190* X5271Y50189* X5275Y50190* X5278Y50192* X5280Y50194* Y50199* Y50766* X5281Y52488D02* X5280Y52492D01* X5278Y52495* X5275Y52497* X5271Y52498* X5268Y52497* X5265Y52495* X5263Y52492* Y52488* Y52168* Y52164* X5265Y52160* X5268Y52158* X5271* X5275* X5278Y52160* X5280Y52164* X5281Y52168* Y52488* X5559Y50360D02* X5560Y50357D01* X5563* X5565* X5580* X5581* X5584* X5587Y50360* X5602Y50379* X5603Y50382* Y50384* X5604Y50385* Y50388* Y50406* X5603Y50409* Y50412* X5602Y50415* X5587Y50434* X5584Y50435* X5581Y50436* Y50437* X5580* X5565* X5564* X5563Y50436* X5561Y50435* X5559Y50434* X5544Y50415* X5542Y50411* X5541Y50409* Y50406* Y50388* Y50384* X5542Y50382* X5544Y50379* X5559Y50360* Y50401D02* X5569Y50414D01* X5575* X5586Y50401* Y50392* X5575Y50380* X5569* X5559Y50392* Y50401* Y50508D02* X5560Y50505D01* X5563* X5565* X5580* X5581* X5584* X5587Y50508* X5602Y50526* X5603Y50529* Y50532* X5604Y50533* Y50535* Y50554* X5603Y50556* Y50558* X5602Y50563* X5587Y50581* X5584Y50584* X5581* Y50585* X5580* X5565* X5564* X5563Y50584* X5560* X5559Y50581* X5544Y50563* X5542Y50559* X5541Y50556* Y50554* Y50535* Y50532* X5542Y50529* X5544Y50526* X5559Y50508* Y50549D02* X5569Y50562D01* X5575* X5586Y50549* Y50540* X5575Y50528* X5569* X5559Y50540* Y50549* X5581Y46829D02* Y46833D01* X5579Y46836* X5576Y46838* X5572Y46839* X5568Y46838* X5566Y46836* X5564Y46833* Y46829* Y46262* Y46257* X5566Y46255* X5568Y46253* X5572Y46252* X5576Y46253* X5579Y46255* X5581Y46257* Y46262* Y46829* X5582Y52734D02* X5581Y52738D01* X5579Y52742* X5576Y52744* X5572* X5569* X5566Y52742* X5565Y52738* X5564Y52734* Y52168* X5565Y52163* X5566Y52160* X5569Y52158* X5572* X5576* X5579Y52160* X5581Y52163* X5582Y52168* Y52734* X5687Y47003D02* X5689Y46998D01* X5691Y46995* X5695Y46993* X5699* X5704* X5708Y46995* X5710Y46998* X5712Y47003* Y47298* X5731Y47278* X5732Y47277* X5733* X5783Y47245* X5785Y47244* X5788Y47243* X5856Y47235* X5857* X5859* X5938* X5940* X5941* X5943* X5984Y47253* X5986Y47254* X5987Y47255* X6030Y47277* X6033Y47280* X6034* X6079Y47342* X6080Y47343* Y47344* X6108Y47404* X6109Y47405* Y47407* Y47409* Y47491* Y47493* X6108Y47494* X6087Y47554* Y47556* X6085Y47559* X6044Y47614* X6041Y47617* X5995Y47646* X5993Y47647* X5991* X5942Y47665* X5940* X5938Y47666* X5859* X5857* X5856* X5801Y47658* X5798Y47657* X5797Y47656* X5732Y47624* X5730Y47623* X5729Y47622* Y47621* X5728Y47620* X5712Y47603* Y47653* X5710Y47657* X5708Y47661* X5704Y47663* X5699Y47664* X5695Y47663* X5691Y47661* X5689Y47657* X5687Y47653* Y47003* X5746Y46638D02* X5741Y46637D01* X5738Y46634* X5736Y46631* Y46627* Y46622* X5738Y46618* X5741Y46616* X5746Y46615* X5933* Y46262* X5934Y46258* X5936Y46255* X5940Y46253* X5945Y46252* X5949Y46253* X5953Y46255* X5955Y46258* X5956Y46262* Y46615* X6144* X6148Y46616* X6151Y46618* X6153Y46622* X6154Y46627* X6153Y46631* X6151Y46634* X6148Y46637* X6144Y46638* X5956* X5957Y46829* X5956Y46833* X5953Y46837* X5949Y46839* X5945* X5941* X5938Y46837* X5935Y46833* X5933Y46829* Y46638* X5746* X5815Y49376D02* X5816Y49373D01* X5819* X5821* X5835* X5837* X5840* X5842Y49376* X5858Y49395* X5859Y49398* Y49400* X5860Y49401* Y49403* Y49422* X5859Y49425* Y49428* X5858Y49431* X5842Y49450* X5839Y49451* X5837Y49452* X5835* X5821* X5819* X5816Y49451* X5815Y49450* X5799Y49431* X5798Y49427* X5797Y49425* Y49422* Y49403* Y49400* X5798Y49397* X5799Y49395* X5815Y49376* Y49416D02* X5825Y49429D01* X5831* X5841Y49416* Y49408* X5831Y49396* X5825* X5815Y49408* Y49416* Y49524D02* X5816Y49521D01* X5819Y49520* X5821* X5835* X5837* X5840Y49521* X5842Y49524* X5858Y49542* X5859Y49545* Y49548* X5860Y49549* Y49550* Y49570* X5859Y49572* Y49574* X5858Y49579* X5842Y49597* X5840Y49599* X5837Y49600* Y49601* X5835* X5821* X5819* Y49600* X5816Y49599* X5815Y49597* X5799Y49579* X5798Y49575* X5797Y49572* Y49570* Y49550* Y49548* X5798Y49545* X5799Y49542* X5815Y49524* Y49565D02* X5825Y49578D01* X5831* X5841Y49565* Y49556* X5831Y49543* X5825* X5815Y49556* Y49565* X5841Y51738D02* X5918D01* X5971Y51730* X6029Y51693* X6053Y51649* X6067Y51586* Y51530* X6031Y51485* X5970Y51445* X5918Y51439* X5917* X5842* X5841* X5788Y51445* X5730Y51484* X5703Y51530* X5693Y51589* X5703Y51648* X5730Y51694* X5788Y51730* X5841Y51738* X5860Y47642D02* X5937D01* X5981Y47624* X5983* X6026Y47597* X6065Y47544* X6085Y47489* Y47412* X6058Y47355* X6016Y47296* X5977Y47277* X5976Y47276* X5975* X5935Y47259* X5861* X5860* X5794Y47267* X5748Y47296* X5712Y47334* Y47567* X5745Y47604* X5806Y47634* X5860Y47642* X5862Y52572D02* X5873Y52586D01* X5879* X5889Y52572* Y52563* X5879Y52550* X5873* X5862Y52563* Y52572* Y52529D02* X5863Y52527D01* X5866Y52526* X5869* X5883* X5886* X5888Y52527* X5890Y52529* X5905Y52549* X5906Y52552* Y52555* X5908Y52557* Y52578* X5906Y52581* Y52584* X5905Y52587* X5890Y52606* X5888Y52608* X5886Y52609* X5883Y52610* X5869* X5867Y52609* X5866* X5863Y52608* X5862Y52606* X5847Y52587* X5845Y52583* X5844Y52581* Y52578* Y52557* Y52555* X5845Y52552* X5847Y52549* X5862Y52529* X5883Y52488D02* X5882Y52492D01* X5881Y52495* X5878Y52497* X5873Y52498* X5870Y52497* X5868Y52495* X5866Y52492* X5865Y52488* Y52168* X5866Y52164* X5868Y52160* X5870Y52158* X5873* X5878* X5881Y52160* X5882Y52164* X5883Y52168* Y52488* X5976Y51421D02* X5977D01* X5979Y51422* X5981Y51423* X6044Y51465* X6046Y51466* Y51468* X6067Y51492* Y51429* X6042Y51270* X6016Y51241* X6015* X5975Y51204* X5928Y51196* X5842* X5781Y51204* X5728Y51241* X5723Y51243* X5719* X5716Y51241* X5713Y51238* X5711Y51234* X5710Y51229* X5712Y51225* X5715Y51222* X5771Y51183* X5774Y51182* X5777* X5837Y51172* X5838* X5842* X5931* X5934* X5981Y51182* X5987Y51183* Y51184* X6031Y51223* X6032Y51224* X6062Y51257* X6064Y51258* Y51260* X6066Y51263* X6090Y51424* Y51425* Y51428* Y51522* Y51525* Y51586* Y51591* X6077Y51654* X6074Y51658* X6047Y51707* X6045Y51710* X6044Y51713* X5982Y51752* X5981Y51753* X5979* X5977Y51754* X5921Y51762* X5919* X5918* X5840* X5838* X5837* X5782Y51754* X5781Y51753* X5778Y51752* X5715Y51713* X5713* X5712Y51711* X5710Y51710* X5681Y51658* X5680* Y51654* X5669Y51591* Y51589* X5667Y51587* X5669Y51586* X5680Y51523* Y51519* Y51518* X5681* X5710Y51469* X5713Y51466* X5715Y51465* X5778Y51423* X5780Y51422* X5781Y51421* X5782* X5837Y51415* X5838* X5840* X5919* X5921* X5976Y51421* X6035Y51924D02* X6036Y51920D01* X6039Y51916* X6043Y51914* X6047* X6052* X6056Y51916* X6058Y51920* X6059Y51924* Y52219* X6079Y52200* X6080Y52198* X6081* X6131Y52166* X6133Y52165* X6136Y52164* X6204Y52156* X6205* X6207* X6286* X6287* X6289* X6291* X6332Y52174* X6333Y52175* X6335Y52176* X6378Y52198* X6381Y52201* X6382* X6427Y52263* Y52264* X6428Y52266* X6456Y52325* X6457Y52327* Y52328* Y52331* Y52412* Y52414* X6456Y52415* Y52416* X6435Y52475* X6434Y52477* X6433Y52480* X6392Y52535* X6388Y52538* X6343Y52567* X6341Y52568* X6339Y52569* X6290Y52586* X6288* X6287* X6286Y52587* X6206* X6205* X6204* X6149Y52579* X6146Y52578* X6144Y52577* X6080Y52545* X6078Y52544* X6077Y52543* Y52542* X6075* X6059Y52524* Y52574* X6058Y52579* X6056Y52582* X6052Y52585* X6047* X6043* X6039Y52582* X6036Y52579* X6035Y52574* Y51924* X6125Y53731D02* X6120Y53730D01* X6117Y53727* X6114Y53723* X6113Y53719* Y53152* X6114Y53147* X6117Y53144* X6120Y53141* X6125Y53140* X6523* X6527Y53141* X6530Y53144* X6532Y53148* X6533Y53152* X6532Y53157* X6530Y53161* X6527Y53163* X6523Y53164* X6137* Y53424* X6405* X6409Y53425* X6412Y53427* X6414Y53431* X6415Y53435* X6414Y53440* X6412Y53443* X6409Y53446* X6405Y53447* X6137* Y53706* X6523* X6527Y53708* X6530Y53710* X6532Y53714* X6533Y53718* X6532Y53723* X6530Y53727* X6527Y53730* X6523Y53731* X6125* X6208Y52563D02* X6285D01* X6329Y52546* X6331* X6374Y52518* X6413Y52465* X6433Y52410* Y52334* X6406Y52276* X6364Y52217* X6325Y52198* X6323Y52197* X6283Y52180* X6209* X6208* X6142Y52188* X6095Y52217* X6059Y52255* Y52488* X6093Y52525* X6153Y52555* X6208Y52563* X6251Y51427D02* Y51428D01* Y51506* X6264Y51646* X6280Y51678* X6579Y51235* X6529Y51202* X6476Y51196* X6475* X6400* X6346Y51202* X6288Y51241* X6261Y51286* X6251Y51427* X6260Y51289D02* X6257Y51292D01* X6253Y51293* X6248* X6244Y51290* X6241Y51287* X6238Y51284* Y51280* Y51279* X6239Y51276* X6269Y51225* X6270Y51224* X6273Y51221* X6336Y51181* X6338Y51179* X6341* X6395Y51172* X6396* X6398* X6476* X6478* X6479* X6534Y51179* X6537* X6540Y51181* X6602Y51221* X6603Y51223* X6605Y51227* X6632Y51276* X6633Y51278* X6634Y51280* X6648Y51424* Y51425* Y51426* Y51506* Y51508* Y51510* X6636Y51651* Y51653* X6635Y51656* X6605Y51707* X6603Y51709* X6599Y51711* X6540Y51752* X6538Y51753* X6534Y51755* X6479Y51762* X6478* X6398* X6396* X6395* X6341Y51755* X6339* Y51754* X6336Y51753* X6273Y51711* X6271Y51710* X6269Y51707* X6242Y51655* X6241Y51654* X6240Y51651* X6227Y51510* Y51508* Y51426* Y51424* X6238Y51281* X6240Y51277* X6242Y51274* X6246Y51273* X6250Y51272* X6255Y51273* X6258Y51275* X6261Y51279* X6262Y51283* X6261Y51286* X6260Y51289* X6319Y46357D02* X6320Y46356D01* X6321* X6366Y46295* X6367Y46294* X6368Y46292* X6369* X6370* X6413Y46270* X6414Y46269* X6415* X6457Y46251* X6459Y46250* X6461* X6542* X6543* X6544* X6546Y46251* X6587Y46269* X6589* X6591Y46270* X6633Y46292* X6634* X6637Y46295* X6682Y46356* X6683Y46357* X6712Y46416* Y46419* Y46422* Y46501* Y46504* Y46506* X6683Y46565* X6682Y46567* X6637Y46628* X6636* X6635Y46630* X6633Y46631* X6591Y46651* X6589Y46653* X6587Y46654* X6546Y46671* X6543Y46672* X6542Y46673* X6461Y46672* X6459Y46673* X6457Y46671* X6415Y46654* X6413Y46651* X6370Y46631* X6368Y46629* X6366Y46628* X6321Y46567* X6320Y46566* X6319Y46565* X6291Y46506* Y46502* Y46499* Y46422* Y46419* Y46416* X6319Y46357* X6371Y47407D02* X6372Y47405D01* X6375Y47404* X6377* X6391* X6393* X6396Y47405* X6398Y47407* X6414Y47427* X6415Y47430* Y47431* X6416Y47432* Y47435* Y47454* X6415Y47456* Y47459* X6414Y47462* X6398Y47481* X6395Y47483* X6393* Y47484* X6391* X6377* X6375* Y47483* X6372* X6371Y47481* X6355Y47462* X6354Y47458* X6353Y47456* Y47454* Y47435* Y47431* X6354Y47429* X6355Y47427* X6371Y47407* Y47448D02* X6381Y47461D01* X6387* X6397Y47448* Y47440* X6387Y47427* X6381* X6371Y47440* Y47448* Y47555D02* X6372Y47552D01* X6375* X6377* X6391* X6393* X6396* X6398Y47555* X6414Y47574* X6415Y47577* Y47580* X6416* Y47582* Y47601* X6415Y47603* Y47606* X6414Y47610* X6398Y47629* X6396Y47631* X6393* Y47632* X6391* X6377* X6375* Y47631* X6372* X6371Y47629* X6355Y47610* X6354Y47606* X6353Y47603* Y47601* Y47582* Y47580* X6354Y47577* X6355Y47574* X6371Y47555* Y47596D02* X6381Y47609D01* X6387* X6397Y47596* Y47587* X6387Y47575* X6381* X6371Y47587* Y47596* X6400Y51738D02* X6475D01* X6476* X6530Y51731* X6584Y51693* X6613Y51645* X6625Y51506* Y51429* X6610Y51285* X6593Y51254* X6294Y51697* X6346Y51731* X6400Y51738* X6425Y46291D02* X6424D01* X6423Y46292* X6384Y46311* X6341Y46369* X6315Y46425* Y46497* X6341Y46554* X6384Y46611* X6423Y46631* X6425* X6464Y46648* X6539* X6578Y46631* X6580* X6620Y46611* X6662Y46554* X6689Y46497* Y46425* X6662Y46369* X6620Y46311* X6580Y46292* X6579Y46291* X6578* X6539Y46274* X6464* X6425Y46291* X6473Y50278D02* Y50274D01* X6476Y50270* X6480Y50268* X6484* X6488* X6492Y50270* X6495Y50274* X6496Y50278* Y50423* X6641* X6646Y50424* X6649Y50427* X6650Y50431* X6651Y50435* X6650Y50439* X6649Y50443* X6646Y50445* X6641Y50447* X6496* Y50592* X6495Y50596* X6492Y50600* X6488Y50601* X6484Y50602* X6480Y50601* X6476Y50600* X6473Y50596* Y50592* Y50447* X6327* X6322Y50445* X6320Y50443* X6318Y50439* X6317Y50435* X6318Y50431* X6320Y50427* X6322Y50424* X6327Y50423* X6473* Y50278* X6592Y51924D02* X6593Y51920D01* X6596Y51916* X6600Y51914* X6604* X6609* X6613Y51916* X6615Y51920* X6616Y51924* Y52219* X6636Y52200* X6637Y52198* X6638* X6688Y52166* X6690Y52165* X6693Y52164* X6760Y52156* X6762* X6764* X6843* X6844* X6846* X6848* X6889Y52174* X6890Y52175* X6892Y52176* X6935Y52198* X6938Y52201* X6939* X6984Y52263* Y52264* X6985Y52266* X7013Y52325* X7014Y52327* Y52328* Y52331* Y52412* Y52414* X7013Y52415* Y52416* X6992Y52475* X6991Y52477* X6990Y52480* X6949Y52535* X6945Y52538* X6900Y52567* X6898Y52568* X6896Y52569* X6847Y52586* X6845* X6844* X6843Y52587* X6763* X6762* X6760* X6706Y52579* X6703Y52578* X6701Y52577* X6636Y52545* X6635Y52544* X6634Y52543* X6633Y52542* X6632* X6616Y52524* Y52574* X6615Y52579* X6613Y52582* X6609Y52585* X6604* X6600* X6596Y52582* X6593Y52579* X6592Y52574* Y51924* X6728Y49294D02* X6729Y49289D01* X6732Y49286* X6735Y49284* X6739Y49283* X6744Y49284* X6748Y49286* X6751Y49289* Y49294* Y49439* X6897* X6902Y49440* X6904Y49442* X6906Y49446* X6907Y49451* X6906Y49455* X6904Y49458* X6902Y49461* X6897Y49462* X6751* Y49608* Y49612* X6748Y49615* X6744Y49617* X6739Y49618* X6735Y49617* X6732Y49615* X6729Y49612* X6728Y49608* Y49462* X6582* X6578Y49461* X6575Y49458* X6574Y49455* X6573Y49451* X6574Y49446* X6575Y49442* X6578Y49440* X6582Y49439* X6728* Y49294* X6765Y52563D02* X6842D01* X6886Y52546* X6887* X6931Y52518* X6970Y52465* X6990Y52410* Y52334* X6963Y52276* X6921Y52217* X6881Y52198* X6880Y52197* X6840Y52180* X6766* X6765* X6699Y52188* X6652Y52217* X6616Y52255* Y52488* X6649Y52525* X6710Y52555* X6765Y52563* X6820Y53718D02* X6819Y53722D01* X6817Y53726* X6814Y53728* X6810* X6807* X6804Y53726* X6803Y53722* X6802Y53718* Y53152* X6803Y53147* X6804Y53144* X6807Y53143* X6810Y53142* X6814Y53143* X6817Y53144* X6819Y53147* X6820Y53152* Y53718* X6827Y50391D02* X6828Y50386D01* X6832Y50382* X6835Y50379* X6839Y50378* X7186* Y50199* X7187Y50195* X7189Y50192* X7194Y50190* X7198Y50189* X7202Y50190* X7206Y50192* X7208Y50195* X7210Y50199* Y50378* X7237* X7242Y50379* X7245Y50382* X7247Y50386* Y50390* Y50395* X7245Y50399* X7242Y50401* X7237Y50402* X7210* Y50766* X7208Y50771* X7205Y50774* X7202Y50777* X7198Y50778* X7158* X7156Y50777* X7153Y50776* X7150* X7149Y50774* X6830Y50431* X6829Y50428* X6828Y50426* X6827Y50422* Y50391* X6852Y50417D02* X7163Y50753D01* X7186* Y50402* X6852* Y50417* X6958Y51496D02* X7034D01* X7088Y51488* X7145Y51449* X7169Y51406* X7182Y51345* X7169Y51284* X7145Y51241* X7086Y51202* X7034Y51196* X6958* X6904Y51202* X6844Y51241* X6809Y51296* Y51329* Y51330* X6819Y51404* X6846Y51452* X6904Y51488* X6958Y51496* X6974Y46423D02* X6975Y46420D01* X6978* X6980* X6995* X6996* X6999* X7002Y46423* X7017Y46442* X7018Y46445* Y46447* X7019Y46448* Y46451* Y46469* X7018Y46472* Y46475* X7017Y46478* X7002Y46497* X6999Y46498* X6996Y46499* Y46500* X6995* X6980* X6979* X6978Y46499* X6976Y46498* X6974Y46497* X6959Y46478* X6957Y46474* X6956Y46472* Y46469* Y46451* Y46447* X6957Y46445* X6959Y46442* X6974Y46423* Y46464D02* X6984Y46477D01* X6990* X7000Y46464* Y46455* X6990Y46443* X6984* X6974Y46455* Y46464* Y46571D02* X6975Y46568D01* X6978* X6980* X6995* X6996* X6999* X7002Y46571* X7017Y46589* X7018Y46592* Y46595* X7019Y46596* Y46598* Y46617* X7018Y46619* Y46621* X7017Y46626* X7002Y46644* X6999Y46647* X6996* Y46648* X6995* X6980* X6979* X6978Y46647* X6975* X6974Y46644* X6959Y46626* X6957Y46622* X6956Y46619* Y46617* Y46598* Y46595* X6957Y46592* X6959Y46589* X6974Y46571* Y46612D02* X6984Y46625D01* X6990* X7000Y46612* Y46603* X6990Y46591* X6984* X6974Y46603* Y46612* X7037Y51762D02* X7034D01* X6956* X6954* X6953* X6898Y51755* X6897Y51754* X6894Y51753* X6831Y51711* X6828Y51710* X6827Y51707* X6799Y51655* Y51654* X6798Y51651* X6785Y51510* Y51508* Y51333* Y51331* Y51294* Y51290* X6787Y51287* X6827Y51227* X6828Y51224* X6831Y51221* X6894Y51181* X6897Y51179* X6898* X6953Y51172* X6954* X6956* X7036* X7037* X7092Y51179* X7094* X7095* X7098Y51181* X7160Y51221* X7161Y51223* X7163Y51227* X7190Y51276* X7191Y51278* X7192Y51280* X7206Y51343* Y51345* Y51348* X7193Y51411* X7192Y51413* X7191Y51415* X7190Y51416* X7163Y51465* X7161Y51468* X7160Y51470* X7098Y51510* X7094Y51511* Y51512* X7037Y51519* X7034* X6956* X6953* X6898Y51512* X6897Y51511* X6894Y51510* X6831Y51471* X6827Y51469* Y51468* Y51467* X6809Y51435* Y51507* X6821Y51647* X6845Y51693* X6904Y51731* X6958Y51738* X7034* X7088Y51731* X7142Y51693* X7173Y51644* X7176Y51641* X7179Y51639* X7184Y51640* X7188Y51642* X7192Y51645* X7194Y51648* Y51652* X7193Y51656* X7163Y51708* X7161Y51710* X7157Y51712* X7098Y51752* X7096Y51753* X7092Y51755* X7037Y51762* X7083Y49406D02* X7084Y49402D01* X7087Y49398* X7090Y49395* X7095Y49394* X7442* Y49215* X7443Y49211* X7445Y49207* X7449Y49206* X7453Y49205* X7458Y49206* X7462Y49207* X7464Y49211* X7465Y49215* Y49394* X7493* X7498Y49395* X7501Y49397* X7502Y49402* X7503Y49406* X7502Y49410* X7501Y49415* X7498Y49417* X7493Y49418* X7465* Y49782* X7464Y49787* X7461Y49790* X7458Y49793* X7453Y49794* X7414* X7412Y49793* X7409Y49792* X7406Y49791* X7404Y49790* X7086Y49446* X7084Y49444* Y49442* X7083Y49438* Y49406* X7086Y47806D02* X6688Y47240D01* X6687Y47238* X6684Y47236* X6682* X6681* X6677Y47237* X6673Y47239* X6670Y47242* X6668Y47245* X6667Y47250* X6669Y47254* X7067Y47820* X7070Y47823* X7074Y47824* X7078Y47823* X7082Y47821* X7085Y47818* X7087Y47814* X7088Y47810* X7086Y47806* X7107Y53522D02* X7146Y53539D01* X7221* X7273Y53531* X7322Y53500* X7345Y53475* X7363Y53440* X7368Y53402* X7003* X7022Y53444* X7065Y53500* X7104Y53521* X7107Y53522* Y49432D02* X7419Y49769D01* X7442* Y49418* X7107* Y49432* X7222Y53164D02* X7221D01* X7145* X7099Y53180* X7055Y53207* X7016Y53258* X6996Y53313* Y53379* X7382* X7385* X7387Y53380* X7389Y53382* X7390Y53384* X7392Y53386* X7393Y53388* X7394Y53390* Y53392* X7386Y53444* X7384Y53448* X7381Y53451* X7377Y53452* X7373* X7368Y53451* X7365Y53449* X7363Y53445* Y53441* Y53440* X7364Y53437* X7367Y53434* X7370Y53432* X7374* X7378Y53434* X7382Y53436* X7384Y53440* X7386Y53442* Y53444* Y53446* X7384Y53448* X7364Y53488* Y53490* X7339Y53517* X7337Y53519* X7335Y53521* X7284Y53553* X7283Y53554* X7281* X7279Y53555* X7224Y53562* X7223* X7143* X7142* X7140* X7139Y53561* X7097Y53544* X7094Y53541* X7052Y53520* X7050Y53519* X7048Y53518* X7002Y53457* X7001Y53456* X7000Y53455* X6973Y53396* X6972Y53392* Y53389* Y53311* Y53308* Y53307* X6973* X6995Y53248* Y53246* X6996Y53245* X7038Y53190* Y53189* X7040Y53188* X7086Y53160* X7089Y53159* X7091Y53158* X7139Y53141* X7140* X7142Y53140* X7143* X7223* X7224* X7280Y53147* X7282* X7283Y53148* X7285Y53149* X7350Y53181* X7352Y53184* X7391Y53223* X7394Y53227* X7393Y53231* X7391Y53235* X7389Y53238* X7385Y53241* X7381Y53242* X7377* X7374Y53240* X7337Y53202* X7276Y53171* X7222Y53164* X7230Y52418D02* X7419D01* X7424* X7427Y52415* X7428Y52412* X7429Y52409* X7428Y52404* X7427Y52401* X7424Y52399* X7419Y52398* X7230* X7226Y52399* X7223Y52401* X7221Y52404* X7220Y52409* X7221Y52412* X7222Y52415* X7225Y52418* X7230* X7363Y51291D02* X7360Y51293D01* X7355Y51294* X7351Y51292* X7347Y51290* X7344Y51286* X7343Y51281* Y51277* X7346Y51273* X7399Y51219* X7401Y51218* X7403Y51217* X7404Y51216* X7509Y51172* X7510* X7513* X7594* X7595* X7596* X7598* X7702Y51217* X7705Y51219* X7706Y51220* X7751Y51274* Y51276* X7753Y51277* X7754Y51280* X7764Y51362* Y51365* X7755Y51440* X7754Y51443* X7753Y51445* X7751Y51447* X7707Y51499* X7706* X7705Y51501* X7704Y51502* X7636Y51535* X7633Y51536* X7629* X7542Y51541* X7540* X7537* X7434Y51530* X7432* X7431* X7430* X7369Y51509* X7405Y51738* X7753* X7757Y51739* X7760Y51742* X7762Y51746* X7763Y51750* X7762Y51755* X7760Y51759* X7757Y51761* X7753Y51762* X7395* X7389Y51761* X7386Y51758* X7383Y51755* Y51752* X7342Y51494* Y51490* X7343Y51487* X7345Y51485* X7347Y51483* X7350Y51481* X7353Y51479* X7356* X7358Y51480* X7436Y51506* X7539Y51516* X7540* X7541* X7627Y51512* X7692Y51481* X7731Y51434* X7740Y51364* X7731Y51287* X7690Y51239* X7590Y51196* X7516* X7415Y51238* X7363Y51291* X7553Y53719D02* X7552Y53723D01* X7550Y53727* X7546Y53728* X7541Y53729* X7537Y53728* X7533Y53727* X7530Y53723* X7529Y53719* Y53152* X7530Y53147* X7533Y53144* X7537Y53142* X7541Y53141* X7546Y53142* X7550Y53144* X7552Y53147* X7553Y53152* Y53386* X7618Y53412* X7931Y53143* X7935Y53141* X7939* X7944Y53142* X7947Y53145* X7950Y53148* Y53153* Y53157* X7947Y53161* X7642Y53424* X7941Y53545* X7945Y53547* X7947Y53551* Y53556* X7946Y53560* X7944Y53564* X7940Y53567* X7937Y53568* X7932* X7553Y53412* Y53719* X7558Y50754D02* X7635D01* X7688Y50746* X7746Y50708* X7770Y50665* X7784Y50602* Y50545* X7748Y50500* X7687Y50461* X7635Y50454* X7634* X7559* X7558* X7505Y50461* X7447Y50500* X7420Y50545* X7410Y50604* X7420Y50663* X7447Y50710* X7505Y50746* X7558Y50754* X7643Y47806D02* X7245Y47240D01* X7244Y47238* X7241Y47236* X7239* X7238* X7233Y47237* X7230Y47239* X7227Y47242* X7225Y47245* X7224Y47250* X7226Y47254* X7624Y47820* X7627Y47823* X7631Y47824* X7635Y47823* X7639Y47821* X7642Y47818* X7644Y47814* Y47810* X7643Y47806* X7693Y50437D02* X7694D01* X7696Y50438* X7699Y50439* X7761Y50480* X7763Y50481* Y50484* X7784Y50508* Y50444* X7759Y50285* X7733Y50257* X7732Y50256* X7692Y50220* X7645Y50212* X7559* X7498Y50220* X7445Y50257* X7440Y50259* X7436Y50258* X7433Y50256* X7430Y50254* X7428Y50249* X7427Y50245* X7429Y50241* X7432Y50238* X7488Y50199* X7491Y50198* X7494Y50197* X7554Y50187* X7555* X7559* X7648* X7651* X7699Y50197* X7704Y50199* Y50200* X7748Y50239* X7749Y50240* X7779Y50272* X7781Y50274* Y50275* X7783Y50278* X7807Y50440* Y50441* Y50444* Y50538* Y50541* Y50601* Y50607* X7794Y50670* X7791Y50673* X7764Y50723* X7762Y50726* X7761Y50728* X7699Y50768* X7698Y50769* X7696* X7694Y50770* X7638Y50778* X7637* X7635* X7557* X7555* X7554* X7499Y50770* X7498Y50769* X7495Y50768* X7432Y50729* X7430* X7429Y50727* X7427Y50725* X7398Y50674* X7397Y50673* Y50670* X7386Y50607* Y50605* X7384Y50603* X7386Y50602* X7397Y50539* Y50535* Y50534* X7398* X7427Y50484* X7430Y50481* X7432Y50480* X7495Y50439* X7497Y50438* X7498Y50437* X7499* X7554Y50431* X7555* X7557* X7637* X7638* X7693Y50437* X7709Y52722D02* X7992D01* X8042Y52685* X8083Y52630* Y52557* X8041Y52499* X7992Y52463* X7709* Y52722* X7814Y49769D02* X7891D01* X7944Y49762* X8001Y49724* X8026Y49680* X8039Y49618* Y49561* X8003Y49516* X7943Y49477* X7891Y49470* X7890* X7815* X7814* X7761Y49477* X7703Y49516* X7675Y49561* X7665Y49620* X7675Y49679* X7703Y49726* X7761Y49762* X7814Y49769* X7820Y46666D02* X7831Y46681D01* X7837* X7847Y46666* Y46658* X7837Y46644* X7831* X7820Y46658* Y46666* Y46623D02* X7821Y46621D01* X7824* X7827* X7841* X7844* X7846* X7848Y46623* X7863Y46644* X7864Y46646* Y46650* X7866Y46652* Y46672* X7864Y46675* Y46679* X7863Y46681* X7848Y46701* X7846Y46703* X7844* X7841Y46705* X7827* X7825Y46704* X7824Y46703* X7821* X7820Y46701* X7805Y46681* X7803Y46678* X7802Y46675* Y46672* Y46652* Y46650* X7803Y46646* X7805Y46644* X7820Y46623* X7841Y46582D02* X7840Y46586D01* X7838Y46589* X7836Y46592* X7831* X7828* X7825Y46589* X7824Y46586* X7823Y46582* Y46262* X7824Y46258* X7825Y46255* X7828Y46253* X7831Y46252* X7836Y46253* X7838Y46255* X7840Y46258* X7841Y46262* Y46582* X7949Y49453D02* X7950D01* X7951Y49454* X7954Y49455* X8016Y49496* X8019Y49497* Y49500* X8039Y49524* Y49460* X8015Y49301* X7989Y49273* X7988Y49272* X7948Y49236* X7901Y49227* X7814* X7753Y49236* X7700Y49273* X7696Y49275* X7692Y49274* X7689Y49272* X7686Y49269* X7684Y49265* X7683Y49260* X7684Y49256* X7688Y49253* X7744Y49215* X7746Y49214* X7749Y49213* X7810Y49203* X7811* X7814* X7903* X7906* X7954Y49213* X7960Y49215* Y49216* X8004Y49255* X8005Y49256* X8035Y49288* X8036Y49290* X8037Y49291* X8039Y49294* X8063Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X8049Y49686* X8047Y49689* X8020Y49739* X8018Y49742* X8016Y49744* X7955Y49784* X7954* X7951* X7950Y49785* X7893Y49794* X7892* X7891* X7813* X7811* X7810* X7755Y49785* X7753Y49784* X7750* X7687Y49745* X7686* X7684Y49743* X7683Y49741* X7654Y49690* X7653Y49689* Y49686* X7641Y49622* Y49621* X7640Y49619* X7641Y49618* X7653Y49555* Y49551* Y49550* X7654* X7683Y49500* X7686Y49497* X7687Y49496* X7750Y49455* X7752Y49454* X7754Y49453* X7755* X7810Y49446* X7811* X7813* X7892* X7893* X7949Y49453* X8000Y47608D02* X8089Y47293D01* X8178Y47648* X8180Y47652* X8183Y47655* X8188* X8192* X8196Y47653* X8200Y47650* X8202Y47646* Y47642* X8102Y47243* Y47241* X8099Y47239* X8096Y47238* X8092Y47237* X8088Y47236* X8084Y47237* X8081Y47239* X8080Y47242* X8078Y47247* X7989Y47561* X7904Y47247* Y47244* X7903Y47242* X7900Y47238* X7897Y47236* X7894* X7891Y47237* X7886Y47238* X7882Y47239* X7881Y47241* X7880Y47243* X7780Y47642* Y47646* X7782Y47650* X7786Y47653* X7790Y47655* X7794* X7799* X7802Y47652* X7805Y47648* X7892Y47294* X7978Y47608* X7980Y47612* X7983Y47614* X7986Y47615* X7990Y47614* X7994* X7996Y47613* X7999Y47611* X8000Y47608* X8061Y52701D02* X8059Y52702D01* X8058Y52703* X8002Y52744* X7999Y52745* X7998Y52746* X7995* X7696* X7692Y52745* X7689Y52742* X7686Y52739* X7685Y52735* Y52168* X7686Y52163* X7688Y52160* X7692Y52158* X7696* X7701* X7705Y52160* X7708Y52163* X7709Y52168* Y52439* X7986* X8083Y52164* X8086Y52160* X8090Y52158* X8094Y52157* X8099Y52158* X8102Y52161* X8105Y52164* X8106Y52167* Y52172* X8009Y52446* X8058Y52481* X8060Y52483* X8061Y52487* X8105Y52545* Y52546* Y52547* X8106* Y52549* Y52550* Y52552* Y52634* Y52636* Y52637* X8105Y52638* Y52639* Y52640* X8061Y52701* X8098Y53528D02* X8093Y53527D01* X8090Y53524* X8088Y53520* Y53516* Y53512* X8090Y53508* X8093Y53506* X8098Y53505* X8285* Y53152* X8286Y53148* X8288Y53144* X8293Y53143* X8297Y53142* X8301Y53143* X8305Y53144* X8307Y53148* X8309Y53152* Y53505* X8496* X8500Y53506* X8503Y53508* X8505Y53512* X8506Y53516* X8505Y53520* X8503Y53524* X8500Y53527* X8496Y53528* X8309* Y53719* Y53723* X8306Y53727* X8301Y53728* X8297Y53729* X8293Y53728* X8290Y53727* X8287Y53723* X8286Y53719* X8285Y53528* X8098* X8166Y46648D02* X8167D01* X8242* X8243* X8297Y46641* X8358Y46609* X8391Y46576* Y46262* X8392Y46258* X8395Y46255* X8399Y46253* X8403Y46252* X8407Y46253* X8411Y46255* X8414Y46258* X8415Y46262* Y46581* X8414Y46583* Y46585* X8413Y46589* X8373Y46628* X8371Y46630* X8368Y46631* X8306Y46663* X8304Y46664* X8301Y46666* X8245Y46672* X8243* X8165* X8163* X8162* X8107Y46665* X8104Y46664* X8102Y46663* X8042Y46631* X8039* X8036Y46629* X8017Y46609* Y46660* X8016Y46664* X8014Y46668* X8010Y46670* X8005* X8001* X7997Y46668* X7994Y46664* X7993Y46660* Y46262* X7994Y46258* X7997Y46255* X8001Y46253* X8005Y46252* X8010Y46253* X8014Y46255* X8016Y46258* X8017Y46262* Y46575* X8053Y46611* X8111Y46641* X8166Y46648* X8363Y50758D02* X7965Y50193D01* X7964Y50190* X7961Y50189* X7960* X7958* X7954Y50190* X7950Y50192* X7947Y50194* X7945Y50198* X7944Y50203* X7946Y50207* X8344Y50773* X8347Y50776* X8351Y50777* X8355Y50776* X8359Y50774* X8362Y50771* X8364Y50767* X8365Y50763* X8363Y50758* X8377Y52537D02* X8416Y52555D01* X8492* X8543Y52546* X8592Y52516* X8615Y52491* X8633Y52455* X8638Y52418* X8273* X8293Y52459* X8336Y52516* X8375Y52537* X8377* X8493Y52180D02* X8491D01* X8416* X8370Y52195* X8369* Y52196* X8325Y52223* X8286Y52274* X8267Y52329* Y52394* X8653* X8656* X8658Y52396* X8660Y52397* X8661Y52400* X8663Y52402* X8664Y52404* Y52406* Y52408* X8657Y52459* X8655Y52464* X8652Y52467* X8647Y52468* X8643* X8639Y52467* X8635Y52465* X8633Y52461* Y52457* Y52455* X8634Y52453* X8637Y52449* X8641Y52448* X8645* X8649Y52449* X8653Y52452* X8655Y52455* X8656Y52458* X8657Y52459* X8656Y52462* X8655Y52464* X8635Y52504* X8634Y52506* X8609Y52533* X8608Y52535* X8606Y52537* X8555Y52569* X8553* X8552Y52570* X8550* X8495Y52578* X8494* X8414* X8413* X8411* X8410Y52577* X8367Y52559* X8365Y52557* X8322Y52536* X8320Y52534* X8318Y52533* X8273Y52472* X8272* X8271Y52471* X8243Y52412* Y52407* Y52405* Y52327* Y52324* Y52323* X8265Y52264* X8266Y52262* X8267Y52261* X8308Y52206* X8309Y52204* X8311* X8356Y52176* X8360Y52175* X8361Y52174* X8410Y52156* X8411* X8413* X8414* X8494* X8495* X8550Y52162* X8553Y52163* X8554Y52164* X8556Y52165* X8621Y52197* X8623Y52200* X8662Y52239* X8664Y52243* Y52247* X8662Y52251* X8660Y52254* X8656Y52256* X8652Y52258* X8648Y52257* X8644Y52256* X8607Y52217* X8546Y52187* X8493Y52180* X8557Y47608D02* X8645Y47293D01* X8735Y47648* X8737Y47652* X8740Y47655* X8745* X8749* X8753Y47653* X8756Y47650* X8759Y47646* Y47642* X8659Y47243* X8658Y47241* X8656Y47239* X8653Y47238* X8649Y47237* X8645Y47236* X8641Y47237* X8638Y47239* X8637Y47242* X8635Y47247* X8546Y47561* X8461Y47247* Y47244* X8459Y47242* X8457Y47238* X8454Y47236* X8451* X8448Y47237* X8443Y47238* X8439Y47239* X8438Y47241* X8436Y47243* X8337Y47642* Y47646* X8339Y47650* X8343Y47653* X8347Y47655* X8351* X8356* X8359Y47652* X8361Y47648* X8449Y47294* X8534Y47608* X8537Y47612* X8540Y47614* X8543Y47615* X8547Y47614* X8550* X8553Y47613* X8556Y47611* X8557Y47608* X8562Y46638D02* X8557Y46637D01* X8554Y46634* X8552Y46631* Y46627* Y46622* X8554Y46618* X8557Y46616* X8562Y46615* X8749* Y46262* X8750Y46258* X8753Y46255* X8757Y46253* X8761Y46252* X8765Y46253* X8769Y46255* X8772Y46258* X8773Y46262* Y46615* X8960* X8965Y46616* X8968Y46618* X8969Y46622* X8970Y46627* X8969Y46631* X8968Y46634* X8965Y46637* X8960Y46638* X8773* Y46780* X8785Y46800* X8811Y46811* X8852Y46817* X8894* X8928Y46791* X8949Y46743* X8952Y46740* X8956Y46738* X8960* X8964Y46739* X8968Y46741* X8971Y46744* X8972Y46746* Y46748* Y46750* X8971Y46752* X8949Y46804* X8946Y46807* X8945Y46809* X8905Y46839* X8902Y46840* X8900* X8899Y46841* X8851* X8849* X8848* X8806Y46834* X8804* X8802* X8773Y46821* X8769Y46819* X8767Y46817* X8751Y46791* X8750Y46787* X8749Y46785* Y46784* Y46638* X8562* X8619Y49774D02* X8221Y49208D01* X8219Y49206* X8217Y49205* X8215Y49204* X8213* X8209Y49206* X8206Y49207* X8203Y49210* X8200Y49214* Y49219* X8202Y49223* X8600Y49789* X8603Y49792* X8607Y49793* X8611Y49791* X8614Y49790* X8618Y49787* X8620Y49782* Y49778* X8619Y49774* X8688Y50215D02* X8689Y50213D01* X8690Y50212* X8692Y50211* X8726Y50189* X8730Y50187* X8733Y50189* X8736Y50191* X8738Y50194* X8740Y50199* Y50203* X8739Y50207* X8736Y50210* X8704Y50231* Y50232* X8653Y50288* X8635Y50342* Y50623* X8653Y50677* X8702Y50732* X8736Y50756* X8739Y50758* X8740Y50762* X8739Y50767* X8738Y50771* X8735Y50774* X8732Y50777* X8728Y50778* X8724Y50776* X8690Y50753* X8689Y50752* X8688Y50751* X8637Y50694* X8635Y50690* Y50688* X8614Y50630* Y50628* Y50626* Y50624* Y50340* Y50337* Y50336* X8635Y50277* Y50274* X8637Y50272* X8688Y50215* X8728Y53551D02* X8727Y53555D01* X8725Y53558* X8721Y53560* X8717Y53561* X8713Y53560* X8708Y53558* X8706Y53555* X8705Y53551* Y53152* X8706Y53148* X8708Y53144* X8713Y53143* X8717Y53142* X8721Y53143* X8725Y53144* X8727Y53148* X8728Y53152* Y53388* X8754Y53444* X8798Y53501* X8837Y53521* X8839Y53522* X8878Y53539* X8954* X9020Y53531* X9065Y53501* X9106Y53462* X9109Y53460* X9113* X9118Y53461* X9122Y53464* X9125Y53467* X9126Y53471* Y53476* X9124Y53480* X9083Y53519* X9081Y53520* X9080* Y53521* X9031Y53553* X9029Y53554* X9027* X9025Y53555* X8957Y53562* X8955* X8876* X8875* X8874* X8871Y53561* X8829Y53544* X8826Y53541* X8784Y53521* X8782Y53519* X8781Y53518* X8735Y53457* X8734Y53456* Y53455* X8728Y53444* Y53551* X8745Y51750D02* X8744Y51755D01* X8741Y51758* X8737Y51760* X8733* X8729* X8725Y51758* X8722Y51755* X8721Y51750* Y51479* X8347* Y51750* X8346Y51755* X8344Y51758* X8340Y51760* X8335* X8331* X8327Y51758* X8324Y51755* X8323Y51750* Y51183* X8324Y51179* X8327Y51176* X8331Y51174* X8335Y51173* X8340Y51174* X8344Y51176* X8346Y51179* X8347Y51183* Y51455* X8721* Y51183* X8722Y51179* X8725Y51176* X8729Y51174* X8733Y51173* X8737Y51174* X8741Y51176* X8744Y51179* X8745Y51183* Y51750* X8927Y52572D02* X8938Y52586D01* X8944* X8955Y52572* Y52563* X8944Y52550* X8938* X8927Y52563* Y52572* X8928Y52529D02* X8929Y52527D01* X8932Y52526* X8934* X8948* X8951* X8954Y52527* X8956Y52529* X8970Y52549* X8972Y52552* Y52555* X8973Y52557* Y52578* X8972Y52581* Y52584* X8970Y52587* X8956Y52606* X8953Y52608* X8951Y52609* X8948Y52610* X8934* X8932Y52609* X8929Y52608* X8928Y52606* X8912Y52587* X8911Y52583* X8910Y52581* Y52578* Y52557* Y52555* X8911Y52552* X8912Y52549* X8928Y52529* X8943Y49230D02* X8945Y49229D01* X8946Y49228* X8948Y49227* X8982Y49205* X8985Y49203* X8989Y49204* X8992Y49207* X8994Y49210* X8996Y49214* Y49219* X8995Y49223* X8992Y49226* X8959Y49247* Y49248* X8909Y49304* X8891Y49357* Y49638* X8909Y49693* X8958Y49748* X8992Y49771* X8995Y49774* Y49778* Y49782* X8994Y49787* X8991Y49790* X8988Y49793* X8984Y49794* X8980Y49792* X8946Y49768* X8945* X8943Y49767* X8893Y49709* X8891Y49706* X8890Y49703* X8870Y49645* Y49644* Y49641* Y49640* Y49356* Y49353* Y49352* Y49351* X8890Y49292* X8891Y49290* X8893Y49288* X8943Y49230* X8948Y52488D02* Y52492D01* X8946Y52495* X8943Y52497* X8939Y52498* X8935Y52497* X8933Y52495* X8931Y52492* Y52488* Y52168* Y52164* X8933Y52160* X8935Y52158* X8939* X8943* X8946Y52160* X8948Y52164* Y52168* Y52488* X9018Y50443D02* Y50444D01* Y50522* X9031Y50662* X9048Y50694* X9346Y50251* X9297Y50218* X9244Y50212* X9243* X9168* X9167* X9114Y50218* X9056Y50256* X9028Y50302* X9018Y50443* X9028Y50305D02* X9025Y50308D01* X9020Y50309* X9016Y50308* X9012Y50306* X9009Y50303* X9006Y50300* X9005Y50296* X9006Y50294* X9007Y50292* X9036Y50241* X9037Y50240* X9040Y50237* X9103Y50197* X9106Y50195* X9108* X9163Y50187* X9164* X9166* X9244* X9245* X9246* X9302Y50195* X9304* X9307Y50197* X9369Y50237* X9371Y50239* X9373Y50242* X9400Y50292* Y50294* X9402Y50296* X9416Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X9404Y50666* X9403Y50669* X9402Y50672* X9372Y50723* X9370Y50725* X9367Y50727* X9308Y50768* X9306Y50769* X9302Y50770* X9246Y50778* X9166* X9164* X9163* X9108Y50770* X9107* X9106* X9104Y50769* X9041Y50727* X9038Y50725* X9036Y50722* X9010Y50671* X9008Y50669* Y50666* X8994Y50526* Y50523* Y50442* Y50441* Y50440* X9006Y50297* X9007Y50293* X9010Y50290* X9014Y50288* X9018* X9023* X9026Y50291* X9028Y50294* X9030Y50299* X9028Y50302* Y50305* X9114Y47608D02* X9202Y47293D01* X9292Y47648* X9294Y47652* X9297Y47655* X9302* X9306* X9310Y47653* X9313Y47650* X9316Y47646* Y47642* X9216Y47243* X9215Y47241* X9213Y47239* X9210Y47238* X9206Y47237* X9202Y47236* X9198Y47237* X9195Y47239* X9194Y47242* X9192Y47247* X9103Y47561* X9018Y47247* Y47244* X9016Y47242* X9014Y47238* X9011Y47236* X9008* X9005Y47237* X9000Y47238* X8996Y47239* X8994Y47241* X8993Y47243* X8894Y47642* Y47646* X8896Y47650* X8899Y47653* X8904Y47655* X8908* X8912* X8916Y47652* X8918Y47648* X9006Y47294* X9091Y47608* X9094Y47612* X9097Y47614* X9100Y47615* X9104Y47614* X9107* X9110Y47613* X9113Y47611* X9114Y47608* X9131Y51195D02* X9054D01* X9008Y51211* X9007* Y51212* X8964Y51239* X8925Y51290* X8905Y51345* Y51419* X8931Y51476* X8974Y51532* X9013Y51553* X9016* X9055Y51570* X9131* X9196Y51562* X9242Y51532* X9279Y51497* Y51268* X9245Y51233* X9185Y51203* X9131Y51195* X9135Y46357D02* X9136Y46356D01* X9137* X9183Y46295* Y46294* X9184Y46292* X9186* X9187* X9229Y46270* X9230Y46269* X9232* X9274Y46251* X9275Y46250* X9278* X9358* X9359* X9360* X9362Y46251* X9403Y46269* X9405* X9407Y46270* X9449Y46292* X9451* X9453Y46295* X9498Y46356* X9500Y46357* X9528Y46416* X9529Y46419* Y46422* Y46501* Y46504* X9528Y46506* X9500Y46565* X9498Y46567* X9453Y46628* X9452* X9451Y46630* X9449Y46631* X9407Y46651* X9405Y46653* X9403Y46654* X9362Y46671* X9360Y46672* X9358Y46673* X9278Y46672* X9275Y46673* X9274Y46671* X9232Y46654* X9229Y46651* X9187Y46631* X9184Y46629* X9183Y46628* X9137Y46567* X9136Y46566* X9135Y46565* X9108Y46506* X9107Y46502* Y46499* Y46422* Y46419* X9108Y46416* X9135Y46357* X9159Y52190D02* Y52189D01* Y52188* X9162Y52187* X9164Y52186* X9224Y52164* X9225* X9227* X9228* X9307Y52156* X9310* X9312* X9395Y52164* X9397* X9399* X9440Y52178* X9442* X9444Y52180* X9446Y52182* X9476Y52221* X9477Y52223* X9478Y52224* Y52227* X9486Y52294* Y52296* X9485Y52298* Y52302* X9462Y52342* X9459Y52344* X9457Y52345* X9456Y52346* X9403Y52369* X9400* Y52370* X9208Y52390* X9167Y52418* X9139Y52446* X9125Y52478* X9133Y52505* X9164Y52529* X9231Y52546* X9310Y52555* X9385Y52542* X9434Y52514* X9465Y52478* X9469Y52476* X9473* X9477Y52477* X9481Y52480* X9483Y52483* X9485Y52487* Y52491* X9484Y52493* X9483Y52494* X9450Y52531* X9449* X9448Y52533* X9447* X9394Y52564* X9391Y52565* X9390* X9312Y52578* X9310* X9308* X9307* X9229Y52570* X9224* X9156Y52553* X9153Y52552* X9150Y52549* X9116Y52523* X9114Y52520* X9112Y52517* Y52516* X9101Y52480* X9100* Y52478* Y52475* X9101Y52472* X9117Y52436* X9118Y52435* X9119Y52433* Y52432* X9151Y52401* X9152Y52399* X9155Y52397* X9198Y52369* X9199Y52367* X9202* X9395Y52346* X9442Y52325* X9462Y52292* X9454Y52234* X9429Y52199* X9393Y52188* X9310Y52180* X9230Y52188* X9174Y52207* X9129Y52256* X9126Y52258* X9121* X9117Y52257* X9113Y52254* X9111Y52251* X9109Y52247* Y52243* X9111Y52240* X9159Y52190* X9167Y50754D02* X9168D01* X9243* X9244* X9298Y50747* X9351Y50709* X9380Y50661* X9392Y50522* Y50444* X9378Y50301* X9361Y50270* X9062Y50712* X9114Y50747* X9167Y50754* X9242Y46291D02* X9240D01* X9239Y46292* X9200Y46311* X9157Y46369* X9131Y46425* Y46497* X9157Y46554* X9200Y46611* X9239Y46631* X9242* X9281Y46648* X9355* X9395Y46631* X9396* X9436Y46611* X9478Y46554* X9505Y46497* Y46425* X9478Y46369* X9436Y46311* X9396Y46292* X9395Y46291* X9355Y46274* X9281* X9242Y46291* X9274Y49458D02* Y49459D01* Y49538* X9287Y49678* X9304Y49709* X9602Y49267* X9552Y49233* X9500Y49227* X9499* X9424* X9423* X9370Y49233* X9311Y49272* X9284Y49318* X9274Y49458* X9284Y49321D02* X9281Y49324D01* X9276Y49325* X9272Y49324* X9268Y49322* X9265Y49319* X9262Y49316* X9261Y49312* X9262Y49310* Y49308* X9292Y49257* X9293Y49256* X9296Y49253* X9359Y49213* X9362Y49211* X9364* X9418Y49203* X9419* X9422* X9500* X9501* X9502* X9558Y49211* X9560* X9563Y49213* X9625Y49253* X9627Y49255* X9628Y49258* X9656Y49308* Y49309* X9657Y49312* X9672Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X9660Y49682* X9659Y49684* X9658Y49687* X9628Y49739* X9626Y49741* X9623Y49743* X9563Y49784* X9562Y49785* X9558Y49786* X9502Y49794* X9501* X9422* X9419* X9364Y49786* X9363* X9362Y49785* X9360Y49784* X9297Y49743* X9294Y49741* X9292Y49738* X9265Y49687* X9264Y49685* X9263Y49682* X9250Y49542* Y49539* Y49458* Y49457* Y49455* X9262Y49313* X9263Y49308* X9265Y49305* X9269Y49304* X9274* X9278* X9282Y49306* X9284Y49310* X9285Y49315* X9284Y49318* Y49321* X9291Y53247D02* Y53246D01* X9292Y53245* X9338Y53184* Y53183* X9340Y53182* X9341Y53181* X9342* X9385Y53160* X9386Y53159* X9387Y53158* X9429Y53141* X9431Y53140* X9433* X9513* X9514* X9516* X9517Y53141* X9559Y53158* X9561Y53159* X9562Y53160* X9604Y53181* X9606Y53182* X9608Y53184* X9653Y53245* X9655Y53247* X9683Y53306* X9684Y53308* Y53311* Y53391* Y53394* X9683Y53396* X9655Y53455* X9653Y53457* X9608Y53518* X9607Y53519* X9604Y53520* X9562Y53541* X9561Y53542* X9559Y53544* X9517Y53561* X9515Y53562* X9513* X9433* X9431* X9429Y53561* X9387Y53544* X9385Y53541* X9342Y53520* X9340Y53519* X9338Y53518* X9292Y53457* X9291Y53456* Y53455* X9263Y53396* X9262Y53392* Y53389* Y53312* Y53309* X9263Y53306* X9291Y53247* X9303Y51582D02* X9302Y51586D01* X9299Y51590* X9295Y51592* X9291* X9287* X9283Y51590* X9280Y51586* X9279Y51582* Y51531* X9259Y51551* X9257Y51553* X9206Y51584* X9205Y51585* X9203Y51586* X9202* X9133Y51594* X9131* X9052* X9051* X9049Y51593* X9048* X9006Y51575* X9003Y51573* X8961Y51552* X8958Y51550* X8957Y51549* X8911Y51488* X8910* X8909Y51486* X8882Y51427* X8881Y51424* Y51422* Y51420* Y51343* Y51340* Y51339* X8882* X8904Y51280* Y51277* X8905* X8947Y51222* Y51220* X8949Y51219* X8994Y51192* X8997Y51191* X9000Y51190* X9048Y51172* X9049* X9051* X9052* X9131* X9133* X9189Y51178* X9191Y51179* X9192* X9194Y51181* X9259Y51213* X9260Y51214* X9261Y51215* X9279Y51234* Y51183* X9280Y51179* X9283Y51176* X9287Y51174* X9291Y51173* X9295Y51174* X9299Y51176* X9302Y51179* X9303Y51183* Y51582* X9397Y53181D02* X9396D01* X9395* X9356Y53201* X9313Y53258* X9287Y53315* Y53387* X9313Y53444* X9356Y53500* X9395Y53520* X9397Y53521* X9436Y53538* X9510* X9550Y53521* X9552Y53520* X9591Y53500* X9633Y53444* X9660Y53387* Y53315* X9633Y53258* X9591Y53201* X9552Y53181* X9550* X9510Y53164* X9436* X9397Y53181* X9423Y49769D02* X9424D01* X9499* X9500* X9553Y49763* X9607Y49725* X9636Y49677* X9648Y49538* Y49460* X9634Y49317* X9617Y49286* X9318Y49728* X9370Y49763* X9423Y49769* X9577Y47238D02* X9580Y47237D01* X9581Y47236* X9583Y47235* X9584* X9599* X9600* X9601Y47236* X9603Y47237* X9606Y47238* X9621Y47254* X9622Y47256* X9623Y47258* Y47260* Y47275* Y47277* X9622Y47279* X9621Y47282* X9606Y47297* X9603Y47298* X9601Y47299* X9599* X9584* X9581* X9580Y47298* X9577Y47297* X9562Y47282* X9561Y47280* X9560Y47277* Y47275* Y47260* Y47258* X9561Y47255* X9562Y47254* X9577Y47238* X9578Y47271D02* X9588Y47281D01* X9595* X9605Y47271* Y47264* X9595Y47254* X9588* X9578Y47264* Y47271* X9711Y46792D02* X9709Y46791D01* X9707Y46790* X9706* Y46788* X9676Y46737* Y46735* Y46733* X9664Y46670* X9663Y46667* X9664Y46666* Y46353* Y46349* X9665Y46346* X9667Y46343* X9708Y46302* X9711Y46300* X9713Y46299* X9767Y46262* X9769Y46261* X9772Y46260* X9833Y46250* X9835* X9924* X9926* X9928* X10074* X10078Y46252* X10081Y46254* X10083Y46258* X10084Y46262* X10083Y46267* X10081Y46271* X10078Y46273* X10074Y46275* X9928* X9926* X9924* X9836* X9776Y46283* X9726Y46318* X9725Y46319* X9688Y46358* Y46665* X9698Y46726* X9725Y46773* X9783Y46809* X9836Y46817* X9838* X9913* X9914* X9967Y46809* X10024Y46771* X10048Y46727* X10062Y46665* Y46589* X10044Y46615* X10041Y46618* X10039* X10038Y46619* X9936Y46645* X9933* X9931Y46646* X9930Y46645* X9928* X9839Y46615* X9838* X9837* X9836Y46614* X9835Y46612* X9832Y46609* X9806Y46569* X9804Y46568* Y46567* X9803Y46563* Y46560* X9812Y46507* X9813Y46506* X9814Y46503* Y46500* X9817Y46498* X9875Y46459* X9877Y46458* X9879* X9881* X9959Y46449* X9961* X9964* X9966* X10044Y46482* X10045Y46483* X10047Y46485* X10050Y46488* X10084Y46544* X10085Y46546* X10086Y46549* Y46551* Y46665* Y46670* X10072Y46733* X10070Y46736* X10042Y46787* X10041Y46789* X10039Y46791* X9977Y46831* X9973* Y46833* X9916Y46841* X9915* X9914* X9835* X9833* X9778Y46833* X9776Y46831* X9774* X9711Y46792* X9716Y50213D02* X9717D01* X9719Y50215* X9770Y50272* X9771Y50275* Y50277* X9791Y50336* Y50337* Y50339* Y50340* Y50624* Y50626* Y50627* Y50629* X9771Y50688* Y50690* X9770Y50694* X9719Y50751* X9717Y50752* X9716Y50753* X9681Y50776* X9677Y50778* X9673Y50777* X9670Y50774* X9667Y50771* X9666Y50767* Y50762* X9667Y50758* X9670Y50756* X9703Y50732* X9752Y50677* X9770Y50622* Y50342* X9752Y50288* X9703Y50232* X9670Y50210* X9667Y50207* X9666Y50203* X9667Y50199* X9669Y50194* X9671Y50191* X9675Y50189* X9678Y50187* X9682Y50189* X9716Y50213* X9737Y52418D02* X9926D01* X9931* X9933Y52415* X9935Y52412* X9936Y52409* X9935Y52404* X9933Y52401* X9931Y52399* X9926Y52398* X9737* X9733Y52399* X9730Y52401* X9728Y52404* X9727Y52409* X9728Y52412* X9729Y52415* X9732Y52418* X9737* X9806Y51577D02* X9802Y51579D01* X9799Y51580* X9752Y51592* X9749* X9745* X9700Y51579* X9697* X9695* X9693* X9691Y51577* X9655Y51547* X9653Y51545* X9652Y51543* X9649Y51534* X9646Y51544* X9645Y51547* X9643Y51549* X9607Y51579* X9604Y51580* X9600Y51581* X9553Y51594* X9548* X9547* X9501Y51580* X9498Y51581* X9496* X9494Y51580* X9492Y51579* X9462Y51554* Y51583* X9461Y51587* X9459Y51590* X9455Y51592* X9450Y51593* X9446Y51592* X9442Y51590* X9439Y51587* X9438Y51583* Y51502* Y51184* X9439Y51180* X9442Y51176* X9446Y51175* X9450Y51174* X9455Y51175* X9459Y51176* X9461Y51180* X9462Y51184* Y51500* X9474Y51531* X9506Y51558* X9549Y51571* X9590Y51559* X9625Y51531* X9637Y51500* Y51183* X9638Y51179* X9641Y51176* X9645Y51174* X9649Y51173* X9653Y51174* X9657Y51176* X9659Y51179* X9661Y51183* Y51498* X9673Y51530* X9704Y51557* X9749Y51569* X9789Y51557* X9824Y51530* X9836Y51498* Y51183* X9837Y51179* X9840Y51176* X9844Y51174* X9848Y51173* X9852Y51174* X9856Y51176* X9858Y51179* X9860Y51183* Y51501* Y51502* X9859* Y51504* X9844Y51543* Y51545* X9843Y51546* X9842Y51547* X9806Y51577* X9828Y46559D02* X9852Y46595D01* X9930Y46620* X10028Y46595* X10060Y46551* X10030Y46504* X9959Y46473* X9887Y46481* X9835Y46516* X9828Y46559* X9972Y49229D02* X9973D01* X9975Y49230* X10025Y49288* X10026Y49291* Y49292* X10047Y49351* Y49353* Y49354* Y49356* Y49640* Y49641* Y49643* Y49644* X10026Y49703* Y49706* X10025Y49709* X9975Y49767* X9973Y49768* X9972* X9937Y49792* X9933Y49794* X9929Y49793* X9926Y49790* X9923Y49787* X9922Y49782* X9921Y49778* X9923Y49774* X9925Y49771* X9959Y49748* X10008Y49693* X10026Y49638* Y49357* X10008Y49304* X9959Y49248* X9926Y49226* X9923Y49223* X9922Y49219* X9923Y49214* X9924Y49210* X9927Y49207* X9930Y49204* X9934Y49203* X9937Y49205* X9972Y49229* X9992Y53538D02* X9993D01* X10068* X10069* X10123Y53531* X10184Y53499* X10217Y53466* Y53152* X10218Y53148* X10221Y53144* X10225Y53143* X10229Y53142* X10233Y53143* X10237Y53144* X10240Y53148* X10241Y53152* Y53471* X10240Y53473* Y53475* X10238Y53479* X10199Y53518* X10197Y53520* X10194* X10132Y53552* X10130Y53554* X10127Y53555* X10071Y53562* X10069* X9991* X9989* X9988* X9933Y53555* X9930Y53554* X9928Y53552* X9868Y53521* X9865Y53520* X9862Y53519* X9843Y53499* Y53550* X9842Y53554* X9840Y53558* X9836Y53559* X9831Y53560* X9827Y53559* X9823Y53558* X9820Y53554* X9819Y53550* Y53152* X9820Y53148* X9823Y53144* X9827Y53143* X9831Y53142* X9836Y53143* X9840Y53144* X9842Y53148* X9843Y53152* Y53465* X9879Y53501* X9937Y53531* X9992Y53538* X10008Y47616D02* X10047Y47633D01* X10122* X10174Y47625* X10223Y47594* X10246Y47569* X10264Y47534* X10269Y47497* X9904* X9923Y47538* X9967Y47595* X10006Y47616* X10008* X10044Y50610D02* Y50604D01* X10045Y50601* X10048Y50597* X10052Y50595* X10056Y50594* X10061* X10065Y50596* X10067Y50599* X10104Y50691* X10156Y50738* X10215Y50754* X10292* X10354Y50737* X10406Y50691* X10442Y50601* Y50567* X10425Y50532* X10290Y50453* X10289* X10088Y50339* X10086* X10084Y50336* X10046Y50288* X10045Y50286* X10044Y50285* Y50284* Y50280* Y50199* X10045Y50194* X10048Y50192* X10051Y50189* X10055Y50187* X10453* X10458Y50189* X10461Y50191* X10463Y50195* Y50199* Y50204* X10461Y50208* X10458Y50210* X10453Y50212* X10068* Y50276* X10101Y50320* X10300Y50432* X10302* X10439Y50512* X10440* X10443Y50514* X10444Y50517* X10463Y50558* X10465Y50559* Y50561* Y50562* Y50564* Y50604* Y50606* Y50607* Y50609* X10426Y50704* X10425Y50705* X10423Y50708* X10367Y50757* X10365Y50759* X10363Y50761* X10298Y50778* X10293* X10215* X10213Y50777* X10211Y50776* X10147Y50760* X10142Y50757* X10086Y50708* X10084Y50707* X10083Y50704* X10044Y50610* X10123Y47258D02* X10122D01* X10046* X10000Y47274* Y47275* X9956Y47302* X9917Y47353* X9897Y47408* Y47473* X10283* X10286* X10288Y47474* X10290Y47476* X10291Y47479* X10293Y47480* X10294Y47483* X10295Y47484* Y47487* X10287Y47538* X10285Y47542* X10282Y47545* X10278Y47546* X10274* X10269Y47545* X10266Y47544* X10264Y47540* Y47536* Y47534* X10265Y47532* X10268Y47528* X10271Y47527* X10275* X10280Y47528* X10283Y47531* X10285Y47534* X10287Y47536* Y47538* Y47541* X10285Y47542* X10265Y47582* Y47585* X10240Y47611* X10238Y47614* X10236Y47616* X10185Y47647* X10184Y47648* X10182Y47649* X10180* X10125Y47657* X10124* X10044* X10043* X10042Y47656* X10040* X9998Y47638* X9995Y47636* X9953Y47615* X9951Y47613* X9949Y47612* X9903Y47551* X9902* Y47549* X9874Y47490* X9873Y47486* Y47483* Y47406* Y47403* Y47402* X9874* X9896Y47343* Y47340* X9897* X9939Y47285* Y47283* X9941Y47282* X9987Y47255* X9990Y47254* X9992Y47253* X10040Y47235* X10042* X10043* X10044* X10124* X10125* X10181Y47241* X10183Y47242* X10184* X10186Y47244* X10251Y47276* X10254Y47278* X10293Y47318* X10295Y47321* X10294Y47326* X10293Y47330* X10290Y47333* X10286Y47335* X10282Y47337* X10278Y47336* X10275Y47334* X10238Y47296* X10177Y47266* X10123Y47258* X10251Y52207D02* X10252Y52206D01* X10254Y52205* X10255Y52204* X10359Y52156* X10360* X10363* X10441* X10443* X10444* X10445* X10447* X10551Y52204* X10554Y52207* X10610Y52256* X10611Y52257* Y52259* X10612Y52260* X10613Y52261* Y52263* Y52265* Y52350* Y52352* X10611Y52355* Y52357* X10609Y52360* X10529Y52420* X10525Y52422* X10288Y52502* X10216Y52559* Y52632* X10267Y52692* X10363Y52722* X10442* X10539Y52692* X10593Y52630* X10595Y52628* X10597Y52627* X10598Y52626* X10601* X10605Y52627* X10608Y52630* X10611Y52634* X10613Y52638* Y52642* X10611Y52645* X10555Y52710* X10553Y52712* X10550Y52713* X10549* Y52714* X10447Y52745* X10445Y52746* X10443* X10363* X10360* X10359Y52745* X10256Y52713* X10254Y52712* X10251Y52710* X10195Y52645* X10193Y52643* X10192Y52641* Y52638* Y52552* Y52549* X10193Y52546* X10194Y52544* X10196Y52543* X10197Y52542* X10276Y52481* X10277* X10280* X10515Y52400* X10590Y52343* Y52269* X10541Y52227* X10440Y52180* X10366* X10265Y52227* X10212Y52274* X10207Y52276* X10203* X10199Y52274* X10196Y52271* X10194Y52268* X10192Y52263* Y52262* X10193Y52260* X10194Y52257* X10196Y52256* X10251Y52207* X10300Y49625D02* X10299Y49620D01* X10301Y49617* X10304Y49613* X10308Y49611* X10312Y49609* X10316Y49610* X10321Y49612* X10323Y49615* X10360Y49707* X10412Y49754* X10471Y49769* X10547* X10609Y49752* X10661Y49707* X10697Y49617* Y49582* X10680Y49547* X10546Y49469* X10544Y49468* X10344Y49355* X10342Y49354* X10339Y49351* X10302Y49304* X10300Y49302* Y49301* X10299Y49299* Y49296* Y49215* X10300Y49210* X10303Y49207* X10306Y49204* X10311Y49203* X10709* X10714Y49204* X10717Y49207* X10719Y49211* Y49215* Y49220* X10717Y49224* X10714Y49226* X10709Y49227* X10324* Y49292* X10357Y49335* X10556Y49448* X10557* X10695Y49528* X10696* X10699Y49530* X10700Y49533* X10719Y49573* Y49574* X10720Y49575* Y49576* Y49577* X10721Y49578* Y49579* Y49620* Y49621* X10720Y49623* Y49625* X10682Y49719* X10681Y49721* X10679Y49723* X10623Y49772* X10621Y49775* X10618Y49777* X10553Y49794* X10549* X10471* X10468Y49793* X10466Y49792* X10403Y49775* X10398Y49773* X10341Y49724* X10340Y49723* X10339Y49720* X10300Y49625* X10357Y46632D02* X10396Y46649D01* X10471* X10523Y46641* X10572Y46610* X10595Y46585* X10612Y46550* X10618Y46513* X10253* X10272Y46554* X10315Y46611* X10354Y46631* X10357Y46632* X10363Y51577D02* X10359Y51579D01* X10356Y51580* X10308Y51592* X10306* X10302* X10257Y51579* X10254* X10252* X10250* X10248Y51577* X10212Y51547* X10210Y51545* X10209Y51543* X10206Y51534* X10203Y51544* X10202Y51547* X10200Y51549* X10164Y51579* X10161Y51580* X10157Y51581* X10109Y51594* X10105* X10104* X10058Y51580* X10055Y51581* X10053* X10050Y51580* X10049Y51579* X10019Y51554* Y51583* X10018Y51587* X10016Y51590* X10011Y51592* X10007Y51593* X10003Y51592* X9998Y51590* X9996Y51587* X9995Y51583* Y51502* Y51184* X9996Y51180* X9998Y51176* X10003Y51175* X10007Y51174* X10011Y51175* X10016Y51176* X10018Y51180* X10019Y51184* Y51500* X10031Y51531* X10063Y51558* X10106Y51571* X10147Y51559* X10182Y51531* X10194Y51500* Y51183* X10195Y51179* X10197Y51176* X10202Y51174* X10206Y51173* X10210Y51174* X10214Y51176* X10216Y51179* X10218Y51183* Y51498* X10230Y51530* X10261Y51557* X10306Y51569* X10346Y51557* X10381Y51530* X10393Y51498* Y51183* X10394Y51179* X10396Y51176* X10401Y51174* X10405Y51173* X10409Y51174* X10413Y51176* X10415Y51179* X10417Y51183* Y51501* Y51502* X10416* Y51504* X10401Y51543* Y51545* X10400Y51546* X10399Y51547* X10363Y51577* X10454Y47813D02* X10453Y47818D01* X10451Y47821* X10447Y47823* X10442* X10438* X10434Y47821* X10431Y47818* X10430Y47813* Y47246* X10431Y47242* X10434Y47239* X10438Y47236* X10442* X10447* X10451Y47239* X10453Y47242* X10454Y47246* Y47481* X10519Y47507* X10832Y47238* X10836Y47235* X10841* X10845Y47236* X10848Y47239* X10851Y47243* Y47248* Y47252* X10848Y47255* X10543Y47518* X10842Y47639* X10846Y47642* X10848Y47646* Y47650* X10847Y47655* X10845Y47659* X10841Y47662* X10838Y47663* X10833Y47662* X10454Y47507* Y47813* X10472Y46274D02* X10471D01* X10395* X10349Y46290* X10348* Y46291* X10305Y46318* X10266Y46369* X10246Y46423* Y46489* X10632* X10635* X10637Y46490* X10639Y46492* X10640Y46494* X10642Y46496* X10643Y46498* X10644Y46500* Y46503* X10636Y46554* X10634Y46558* X10631Y46561* X10626Y46562* X10622* X10618Y46561* X10615Y46559* X10612Y46556* Y46552* Y46550* X10613Y46547* X10616Y46544* X10620Y46543* X10624* X10628Y46544* X10632Y46546* X10634Y46550* X10635Y46552* X10636Y46554* X10635Y46556* X10634Y46558* X10614Y46598* X10613Y46601* X10589Y46627* X10587Y46630* X10585Y46631* X10534Y46663* X10533Y46664* X10531* X10529Y46665* X10474Y46673* X10473* X10393* X10392* X10390Y46672* X10389Y46671* X10347Y46654* X10344Y46651* X10302Y46631* X10299Y46629* X10298Y46628* X10252Y46567* X10251Y46566* X10250Y46565* X10223Y46506* X10222Y46502* Y46499* Y46422* Y46419* Y46418* X10223* X10244Y46358* X10245Y46356* X10246* X10288Y46301* Y46299* X10290Y46298* X10335Y46270* X10339Y46269* X10341* X10389Y46251* X10390* X10392Y46250* X10393* X10473* X10474* X10530Y46257* X10532* X10533Y46258* X10535Y46259* X10600Y46292* X10602Y46294* X10641Y46334* X10644Y46337* X10643Y46341* X10641Y46345* X10639Y46348* X10635Y46351* X10631Y46353* X10627Y46352* X10624Y46350* X10586Y46312* X10525Y46282* X10472Y46274* X10504Y53556D02* X10515Y53571D01* X10521* X10531Y53556* Y53548* X10521Y53534* X10515* X10504Y53548* Y53556* Y53513D02* X10505Y53511D01* X10508Y53510* X10511* X10525* X10528* X10530Y53511* X10532Y53513* X10547Y53533* X10549Y53536* Y53539* X10550Y53542* Y53562* X10549Y53565* Y53568* X10547Y53571* X10532Y53591* X10530Y53593* X10528* X10525Y53594* X10511* X10509* X10508Y53593* X10505* X10504Y53591* X10489Y53571* X10487Y53568* Y53565* Y53562* Y53542* Y53539* Y53536* X10489Y53533* X10504Y53513* X10525Y53472D02* X10524Y53476D01* X10523Y53479* X10520Y53481* X10515Y53482* X10512Y53481* X10510Y53479* X10508Y53476* X10507Y53472* Y53152* X10508Y53148* X10510Y53144* X10512Y53143* X10515Y53142* X10520Y53143* X10523Y53144* X10524Y53148* X10525Y53152* Y53472* X10622Y50302D02* X10618Y50304D01* X10614* X10610Y50303* X10607Y50300* X10605Y50297* X10603Y50292* Y50288* X10605Y50284* X10680Y50217* X10683Y50215* X10684* X10768Y50189* X10771Y50188* X10772Y50187* X10853* X10857Y50188* X10917Y50213* X10919* X10920Y50215* X10965Y50246* Y50247* X10967Y50248* X10968Y50249* Y50251* X11008Y50299* X11009Y50300* X11010Y50302* X11012Y50305* X11023Y50359* Y50363* Y50364* X11022Y50404* X11021Y50406* X11020Y50408* X11000Y50471* Y50473* X10999Y50476* X10965Y50530* Y50531* X10963Y50532* X10962Y50533* X10925Y50554* X10923Y50555* X10922* Y50556* X10861Y50571* X10856* X10853* X10886Y50581* X10890* X10892Y50583* X10951Y50629* X10952* Y50630* X10953* X10996Y50690* X10997Y50693* X10998Y50695* X11022Y50762* X11023Y50764* Y50767* X11022Y50770* X11020Y50772* X11018Y50774* X11016Y50776* X11014Y50777* X11012Y50778* X10613* X10609Y50777* X10606Y50774* X10603Y50770* Y50766* Y50761* X10606Y50757* X10609Y50755* X10613Y50754* X10994* X10977Y50704* X10935Y50646* X10879Y50603* X10772Y50571* X10768Y50570* X10765Y50567* X10764Y50565* X10762Y50561* Y50556* X10764Y50551* X10768Y50548* X10770Y50547* X10772* X10856* X10914Y50532* X10947Y50513* X10978Y50463* X10997Y50402* X11000Y50363* X10988Y50312* X10951Y50265* X10907Y50235* X10849Y50212* X10774* X10694Y50236* X10622Y50302* X10701Y53719D02* X10700Y53723D01* X10698Y53727* X10694Y53728* X10689Y53729* X10685Y53728* X10681Y53727* X10678Y53723* X10677Y53719* Y53152* X10678Y53147* X10681Y53144* X10685Y53142* X10689Y53141* X10694Y53142* X10698Y53144* X10700Y53147* X10701Y53152* Y53386* X10766Y53412* X11079Y53143* X11083Y53141* X11088* X11092Y53142* X11095Y53145* X11098Y53148* Y53153* Y53157* X11095Y53161* X10790Y53424* X11089Y53545* X11093Y53547* X11095Y53551* Y53556* X11094Y53560* X11092Y53564* X11088Y53567* X11085Y53568* X11081* X10701Y53412* Y53719* X10761Y52544D02* X10757Y52543D01* X10754Y52540* X10752Y52536* X10751Y52532* X10752Y52528* X10754Y52524* X10757Y52521* X10761Y52520* X10949* Y52168* X10950Y52164* X10952Y52160* X10956Y52158* X10960* X10965* X10969Y52160* X10971Y52164* X10972Y52168* Y52520* X11159* X11164Y52521* X11167Y52524* X11169Y52528* Y52532* Y52536* X11167Y52540* X11164Y52543* X11159Y52544* X10972* X10973Y52735* X10972Y52739* X10969Y52742* X10965Y52744* X10961Y52745* X10957Y52744* X10953Y52742* X10950Y52739* X10949Y52735* Y52544* X10761* X10803Y46829D02* X10802Y46833D01* X10800Y46837* X10795Y46839* X10791* X10787* X10782Y46837* X10780Y46833* X10779Y46829* Y46262* X10780Y46257* X10782Y46255* X10787Y46252* X10791* X10795* X10800Y46255* X10802Y46257* X10803Y46262* Y46497* X10867Y46523* X11181Y46253* X11185Y46251* X11189* X11193Y46252* X11197Y46255* X11199Y46259* X11200Y46263* Y46268* X11197Y46271* X10892Y46534* X11191Y46655* X11195Y46657* X11196Y46661* Y46666* Y46670* X11193Y46674* X11190Y46677* X11186Y46679* X11182Y46678* X10803Y46523* Y46829* X10877Y49318D02* X10874Y49320D01* X10870* X10866Y49319* X10863Y49316* X10860Y49312* X10859Y49308* Y49304* X10861Y49300* X10935Y49233* X10938Y49231* X10939* X11024Y49205* X11026Y49204* X11028Y49203* X11108* X11113Y49204* X11173Y49229* X11175* X11176Y49231* X11221Y49262* Y49263* X11222Y49264* X11224Y49265* Y49266* X11264Y49315* X11265Y49316* Y49318* X11267Y49321* X11279Y49374* Y49379* Y49380* X11277Y49420* Y49422* X11275Y49424* X11256Y49487* Y49489* X11254Y49492* X11221Y49546* X11219Y49547* X11218Y49549* X11181Y49570* X11179Y49571* X11177* Y49572* X11117Y49587* X11112* X11108* X11142Y49596* X11146Y49597* X11148Y49599* X11206Y49644* X11208Y49645* Y49646* X11209* X11252Y49706* X11253Y49709* X11254Y49710* X11278Y49778* X11279Y49780* X11278Y49782* Y49785* X11275Y49788* X11274Y49790* X11272Y49792* X11270Y49793* X11267Y49794* X10869* X10864Y49793* X10862Y49790* X10859Y49786* Y49781* Y49777* X10862Y49773* X10864Y49771* X10869Y49769* X11250* X11232Y49720* X11191Y49662* X11134Y49619* X11027Y49587* X11024Y49586* X11021Y49583* X11020Y49581* X11018Y49577* Y49572* X11020Y49567* X11023Y49564* X11026Y49563* X11028* X11112* X11170Y49547* X11202Y49529* X11234Y49479* X11253Y49418* X11255Y49379* X11244Y49328* X11206Y49281* X11163Y49251* X11105Y49227* X11029* X10950Y49252* X10877Y49318* X10999Y47623D02* X10994Y47621D01* X10991Y47619* X10989Y47615* Y47611* Y47607* X10991Y47603* X10994Y47600* X10999Y47599* X11186* Y47246* X11187Y47242* X11190Y47239* X11194Y47237* X11198Y47236* X11202Y47237* X11206Y47239* X11208Y47242* X11210Y47246* Y47599* X11397* X11402Y47600* X11405Y47603* X11406Y47607* X11407Y47611* X11406Y47615* X11405Y47619* X11402Y47621* X11397Y47623* X11210* Y47764* X11222Y47784* X11247Y47795* X11289Y47801* X11331* X11365Y47776* X11386Y47727* X11389Y47724* X11393Y47722* X11397* X11401Y47723* X11405Y47725* X11408Y47728* X11409Y47731* Y47732* Y47734* X11408Y47737* X11386Y47788* X11383Y47791* Y47792* X11382Y47793* X11342Y47823* X11339Y47824* X11337Y47825* X11335* X11288* X11286* X11285* X11243Y47819* X11241Y47818* X11239* X11210Y47806* X11206Y47803* X11204Y47801* X11188Y47775* X11187Y47771* X11186Y47770* Y47768* Y47623* X10999* X11282Y50748D02* X11284Y50751D01* X11286Y50754* Y50757* X11285Y50761* X11283Y50766* X11280Y50768* X11277Y50770* X11273* X11271* X11269Y50769* X11206Y50727* X11202Y50725* Y50724* Y50723* X11173Y50673* X11171Y50669* Y50667* Y50626* Y50623* X11172Y50621* X11190Y50575* Y50573* X11192Y50571* X11194Y50569* X11243Y50531* X11244* X11245Y50529* X11247* X11249* X11267Y50524* X11206Y50487* X11202Y50484* Y50483* X11172Y50432* X11171Y50431* Y50428* X11159Y50364* Y50362* Y50360* Y50359* X11171Y50295* Y50293* Y50292* X11172* X11202Y50241* X11204Y50238* X11206Y50237* X11269Y50197* X11271Y50195* X11273* X11328Y50187* X11329* X11332* X11411* X11412* X11467Y50195* X11470* X11472Y50197* X11535Y50237* X11537Y50239* X11538Y50241* Y50242* X11565Y50292* Y50293* X11566Y50294* X11567Y50295* X11581Y50359* Y50361* Y50364* X11568Y50427* X11567Y50428* Y50429* X11566Y50431* X11565* X11538Y50480* X11537Y50483* X11535Y50486* X11475Y50524* X11493Y50529* X11495* X11497Y50531* X11547Y50569* X11548Y50571* X11550Y50572* X11551Y50574* X11568Y50620* X11569Y50621* X11570Y50623* Y50626* Y50667* Y50668* X11569Y50670* X11568Y50673* X11538Y50723* X11536Y50725* X11532Y50727* X11473Y50768* X11472Y50769* X11467Y50770* X11412Y50778* X11411* X11409* X11332* X11330* X11328* X11273Y50770* X11269Y50769* X11267Y50765* X11265Y50761* Y50757* X11267Y50753* X11268Y50749* X11272Y50747* X11277* X11279* X11282Y50748* X11332Y50512D02* X11333D01* X11408* X11409* X11462Y50503* X11520Y50465* X11544Y50421* X11557Y50361* X11544Y50300* X11520Y50256* X11462Y50218* X11409Y50212* X11408* X11333* X11332* X11279Y50218* X11221Y50256* X11194Y50302* X11184Y50361* X11194Y50420* X11221Y50468* X11279Y50503* X11332Y50512* Y50754D02* X11409D01* X11463Y50747* X11517Y50709* X11546Y50663* Y50628* X11529Y50587* X11485Y50552* X11408Y50535* X11333* X11255Y50552* X11211Y50587* X11196Y50627* Y50663* X11221Y50708* X11279Y50747* X11332Y50754* X11348Y46638D02* X11343Y46637D01* X11340Y46634* X11338Y46631* Y46627* Y46622* X11340Y46618* X11343Y46616* X11348Y46615* X11535* Y46262* X11536Y46258* X11538Y46255* X11542Y46253* X11547Y46252* X11551Y46253* X11555Y46255* X11557Y46258* X11558Y46262* Y46615* X11746* X11750Y46616* X11753Y46618* X11755Y46622* X11756Y46627* X11755Y46631* X11753Y46634* X11750Y46637* X11746Y46638* X11558* Y46780* X11571Y46800* X11596Y46811* X11638Y46817* X11680* X11714Y46791* X11735Y46743* X11738Y46740* X11741Y46738* X11746* X11750Y46739* X11754Y46741* X11757Y46744* Y46746* X11758Y46748* X11757Y46750* Y46752* X11735Y46804* X11732Y46807* X11731Y46809* X11691Y46839* X11688Y46840* X11686* X11684Y46841* X11637* X11635* X11633* X11591Y46834* X11590* X11588* X11558Y46821* X11555Y46819* X11552Y46817* X11537Y46791* X11535Y46787* Y46785* Y46784* Y46638* X11348* X11392Y52566D02* X11391Y52570D01* X11389Y52574* X11384Y52576* X11380* X11376* X11372Y52574* X11370Y52570* X11369Y52566* Y52168* X11370Y52164* X11372Y52160* X11376Y52158* X11380* X11384* X11389Y52160* X11391Y52164* X11392Y52168* Y52403* X11418Y52460* X11461Y52517* X11501Y52537* X11503* X11542Y52555* X11618* X11683Y52546* X11729Y52517* X11769Y52478* X11773Y52475* X11777* X11782Y52477* X11785Y52480* X11788Y52483* X11790Y52487* Y52492* X11787Y52495* X11746Y52535* X11745Y52536* X11744* Y52537* X11694Y52569* X11693* X11691Y52570* X11689* X11621Y52578* X11619* X11540* X11539* X11537* X11535Y52577* X11493Y52559* X11490Y52557* X11448Y52537* X11445Y52535* Y52533* X11399Y52472* X11397* Y52471* X11392Y52460* Y52566* X11538Y49764D02* X11540Y49767D01* X11542Y49769* Y49773* X11541Y49777* X11538Y49781* X11536Y49784* X11532Y49785* X11529Y49786* X11528* X11526Y49785* X11525Y49784* X11462Y49743* X11458Y49741* X11457Y49740* Y49739* X11428Y49689* X11427Y49685* Y49683* Y49641* Y49638* Y49637* X11428* X11446Y49591* Y49589* X11447Y49587* X11450Y49585* X11499Y49547* X11501Y49545* X11502Y49544* X11505* X11522Y49540* X11462Y49503* X11458Y49500* X11457* Y49498* X11428Y49448* X11427Y49446* Y49444* X11415Y49380* Y49378* X11414Y49376* X11415Y49374* X11427Y49311* Y49309* Y49308* X11428* X11457Y49257* X11460Y49254* X11462Y49253* X11525Y49213* X11527Y49211* X11529* X11584Y49203* X11585* X11587* X11666* X11668* X11723Y49211* X11725* X11728Y49213* X11790Y49253* X11792Y49255* X11793Y49257* X11794Y49258* X11821Y49308* Y49309* X11822* X11823Y49311* X11837Y49374* Y49377* Y49380* X11824Y49443* X11823Y49444* Y49445* X11822Y49446* X11821* Y49447* X11794Y49496* X11792Y49499* X11790Y49501* X11731Y49540* X11749Y49544* X11750Y49545* X11753Y49547* X11802Y49585* X11803Y49586* X11805Y49588* X11806* Y49590* X11824Y49636* X11825Y49637* Y49638* Y49641* Y49683* Y49684* Y49686* X11824Y49689* X11793Y49739* X11792Y49741* X11788Y49743* X11729Y49784* X11727Y49785* X11723Y49786* X11668Y49794* X11666* X11665* X11587* X11586* X11584* X11529Y49786* X11528* X11525Y49784* X11522Y49781* X11521Y49777* Y49772* X11522Y49768* X11524Y49765* X11528Y49762* X11532* X11535* X11538Y49764* X11588Y49527D02* X11589D01* X11664* X11665* X11718Y49519* X11776Y49481* X11800Y49437* X11812Y49377* X11799Y49316* X11776Y49272* X11717Y49233* X11665Y49227* X11664* X11589* X11588* X11535Y49233* X11477Y49272* X11450Y49318* X11440Y49377* X11450Y49436* X11477Y49484* X11535Y49519* X11588Y49527* Y49769D02* X11665D01* X11719Y49763* X11773Y49725* X11802Y49679* Y49644* X11785Y49602* X11741Y49568* X11664Y49551* X11589* X11511Y49568* X11467Y49602* X11451Y49643* Y49679* X11477Y49724* X11535Y49763* X11588Y49769* X11670Y47238D02* X11673Y47237D01* X11674Y47236* X11676Y47235* X11677* X11692* X11693* X11694Y47236* X11696Y47237* X11699Y47238* X11714Y47254* X11715Y47256* X11716Y47258* Y47260* Y47275* Y47277* X11715Y47279* X11714Y47282* X11699Y47297* X11696Y47298* X11694Y47299* X11692* X11677* X11674* X11673Y47298* X11670Y47297* X11655Y47282* X11654Y47280* X11653Y47277* Y47275* Y47260* Y47258* X11654Y47255* X11655Y47254* X11670Y47238* X11671Y47271D02* X11681Y47281D01* X11688* X11698Y47271* Y47264* X11688Y47254* X11681* X11671Y47264* Y47271* X11884Y50199D02* X11885Y50195D01* X11888Y50192* X11891Y50190* X11894Y50189* X11899Y50190* X11902Y50192* X11905Y50195* X11906Y50199* Y50766* X11905Y50770* X11903Y50773* X11900Y50775* X11896Y50776* X11893Y50777* X11891* X11888Y50776* X11886Y50773* X11780Y50611* X11779Y50607* Y50603* X11781Y50600* X11784Y50596* X11788Y50594* X11791Y50593* X11793* X11795Y50594* X11798Y50597* X11884Y50730* Y50199* X12019Y46254D02* X12021Y46253D01* X12023Y46252* X12024Y46251* X12025* X12041* X12043Y46252* X12044Y46253* X12047Y46254* X12063Y46269* X12064Y46272* Y46273* X12065Y46276* Y46291* X12064Y46293* Y46295* X12063Y46298* X12047Y46313* X12044Y46314* X12043Y46315* X12041* X12025* X12023* X12021Y46314* X12019Y46313* X12004Y46298* X12002Y46296* Y46293* Y46291* Y46276* Y46273* Y46271* X12004Y46269* X12019Y46254* X12020Y46286D02* X12030Y46297D01* X12037* X12047Y46286* Y46280* X12037Y46270* X12030* X12020Y46280* Y46286* X12036Y53683D02* X12033Y53687D01* X12031Y53688* X11975Y53713* X11973Y53714* X11970* X11912Y53729* X11910Y53730* X11907Y53731* X11831Y53723* X11829Y53722* X11828* X11827* X11826Y53721* X11775Y53695* X11772Y53694* X11769Y53692* X11724Y53646* X11723Y53643* X11722Y53642* X11682Y53563* X11681Y53560* Y53559* X11657Y53480* Y53479* Y53478* X11656Y53477* Y53476* Y53396* Y53395* Y53392* X11674Y53311* Y53310* X11675* Y53308* Y53307* X11720Y53228* X11721Y53227* X11722Y53225* X11766Y53178* X11767* Y53177* X11769Y53176* X11821Y53150* X11824Y53147* X11826* X11906Y53140* X11907* X11909* X11989Y53154* X11991Y53155* X11994Y53157* X12048Y53195* X12050Y53197* X12052Y53201* X12076Y53252* Y53253* X12077* Y53254* Y53255* X12078Y53256* Y53258* Y53370* X12077Y53375* X12075Y53379* X12071Y53382* X12066Y53383* X11946* X11941Y53382* X11938Y53379* X11936Y53375* Y53370* Y53366* X11938Y53362* X11941Y53360* X11946Y53359* X12054* Y53261* X12031Y53213* X11982Y53178* X11906Y53164* X11830Y53170* X11782Y53196* X11740Y53241* X11698Y53316* X11681Y53398* Y53475* X11702Y53551* X11703Y53554* X11704Y53558* X11703Y53560* X11702Y53562* X11699Y53565* X11695Y53567* X11691* X11687* X11683Y53564* X11681Y53560* Y53558* Y53555* X11683Y53551* X11686Y53548* X11689Y53546* X11692Y53545* X11696Y53546* X11700Y53548* X11702Y53551* X11742Y53629* X11787Y53674* X11834Y53699* X11907Y53706* X11963Y53691* X11965Y53690* X12017Y53668* X12056Y53605* X12059Y53602* X12063Y53601* X12067* X12072Y53603* X12075Y53606* X12077Y53610* X12078Y53614* X12076Y53619* X12036Y53683* X12052Y52159D02* X12055Y52158D01* X12056* X12058Y52156* X12059* X12074* X12075* X12076Y52158* X12078* X12081Y52159* X12096Y52175* X12097Y52177* X12098Y52179* Y52181* Y52197* Y52198* X12097Y52200* X12096Y52203* X12081Y52219* X12078Y52220* X12076* X12074* X12059* X12056* X12055* X12052Y52219* X12037Y52203* X12036Y52201* X12035Y52198* Y52197* Y52181* Y52179* X12036Y52177* X12037Y52175* X12052Y52159* X12053Y52192D02* X12063Y52203D01* X12070* X12080Y52192* Y52185* X12070Y52175* X12063* X12053Y52185* Y52192* X12140Y49215D02* X12141Y49211D01* X12144Y49207* X12147Y49206* X12150Y49205* X12154Y49206* X12158Y49207* X12161Y49211* Y49215* Y49782* Y49786* X12159Y49789* X12156Y49791* X12152* X12149Y49793* X12147* X12144Y49791* X12142Y49789* X12036Y49627* X12035Y49622* Y49619* X12037Y49615* X12040Y49612* X12043Y49609* X12047* X12049* X12050* X12053Y49612* X12140Y49745* Y49215* X12216Y47258D02* X12215D01* X12139* X12093Y47274* Y47275* X12049Y47302* X12010Y47353* X11990Y47408* Y47482* X12016Y47539* X12059Y47595* X12098Y47616* X12101* X12140Y47633* X12216* X12281Y47625* X12327Y47595* X12368Y47556* X12371Y47554* X12375* X12380Y47555* X12384Y47558* X12387Y47562* X12388Y47566* Y47571* X12385Y47574* X12344Y47614* X12343Y47615* X12342* Y47616* X12292Y47647* X12290Y47648* X12288Y47649* X12287* X12218Y47657* X12216* X12137* X12136* X12134Y47656* X12133* X12091Y47638* X12088Y47636* X12046Y47615* X12044Y47613* X12042Y47612* X11996Y47551* X11995* X11994Y47549* X11967Y47490* X11966Y47487* Y47485* Y47483* Y47406* Y47403* Y47402* X11967* X11989Y47343* Y47340* X11990* X12032Y47285* Y47283* X12034Y47282* X12080Y47255* X12083Y47254* X12085Y47253* X12133Y47235* X12134* X12136* X12137* X12216* X12218* X12274Y47241* X12276Y47242* X12277* X12279Y47244* X12344Y47276* X12346Y47278* X12385Y47318* X12388Y47321* X12387Y47326* X12385Y47330* X12383Y47333* X12379Y47335* X12375Y47337* X12371Y47336* X12368Y47334* X12331Y47296* X12270Y47266* X12216Y47258* X12551Y47342D02* X12552Y47340D01* X12553* X12599Y47279* Y47278* X12600Y47277* X12602Y47276* X12603* X12645Y47255* X12646Y47254* X12648Y47253* X12690Y47235* X12691* X12694* X12774* X12775* X12776* X12778* X12819Y47253* X12821Y47254* X12823Y47255* X12865Y47276* X12867Y47277* X12869Y47279* X12914Y47340* X12916Y47342* X12944Y47401* X12945Y47403* Y47406* Y47485* Y47488* X12944Y47490* X12916Y47549* X12914Y47551* X12869Y47612* X12867Y47614* X12865Y47615* X12823Y47636* X12821Y47637* X12819Y47638* X12778Y47656* X12776* X12774Y47657* X12694Y47656* X12691Y47657* X12690Y47656* X12648Y47638* X12645Y47636* X12603Y47615* X12600Y47613* X12599Y47612* X12553Y47551* X12552* X12551Y47549* X12524Y47490* X12523Y47486* Y47483* Y47406* Y47404* X12524Y47401* X12551Y47342* X12565Y46274D02* X12563D01* X12488* X12442Y46290* X12441* Y46291* X12398Y46318* X12359Y46369* X12339Y46423* Y46498* X12365Y46555* X12408Y46611* X12447Y46631* X12450Y46632* X12488Y46649* X12565* X12630Y46641* X12676Y46611* X12716Y46572* X12720Y46570* X12724* X12729Y46571* X12732Y46574* X12735Y46578* X12737Y46582* Y46586* X12734Y46590* X12693Y46630* X12692Y46631* X12691* X12640Y46663* X12639Y46664* X12637* X12636Y46665* X12567Y46673* X12565* X12486* X12485* X12483Y46672* X12482Y46671* X12439Y46654* X12437Y46651* X12395Y46631* X12392Y46629* X12390Y46628* X12345Y46567* X12344Y46566* X12343Y46565* X12315Y46506* Y46503* Y46501* Y46499* Y46422* Y46419* Y46418* X12337Y46358* X12338Y46356* X12339* X12380Y46301* X12381Y46299* X12383Y46298* X12428Y46270* X12432Y46269* X12434* X12482Y46251* X12483* X12485Y46250* X12486* X12565* X12567* X12623Y46257* X12625* X12626Y46258* X12628Y46259* X12693Y46292* X12695Y46294* X12734Y46334* X12737Y46337* X12736Y46341* X12734Y46345* X12732Y46348* X12728Y46351* X12724Y46353* X12720Y46352* X12716Y46350* X12679Y46312* X12618Y46282* X12565Y46274* X12581Y53545D02* X12577Y53547D01* X12574Y53548* X12527Y53561* X12525* X12520* X12475Y53547* X12473Y53548* X12470* X12468Y53547* X12466Y53545* X12431Y53516* X12428Y53513* Y53511* X12424Y53502* X12422Y53513* X12420Y53516* X12418Y53518* X12382Y53547* X12379Y53549* X12375* X12328Y53562* X12324* X12322* X12276Y53549* X12274* X12271* X12269* X12267Y53547* X12238Y53523* Y53551* X12236Y53555* X12234Y53559* X12230Y53561* X12225* X12221* X12217Y53559* X12214Y53555* X12213Y53551* Y53471* Y53470* Y53153* X12214Y53148* X12217Y53145* X12221Y53143* X12225* X12230* X12234Y53145* X12236Y53148* X12238Y53153* Y53469* X12249Y53499* X12281Y53526* X12324Y53539* X12366Y53528* X12400Y53499* X12412Y53469* Y53152* X12413Y53147* X12416Y53144* X12420Y53143* X12424Y53142* X12428Y53143* X12432Y53144* X12435Y53148* X12436Y53152* Y53467* X12448Y53498* X12480Y53525* X12524Y53538* X12565Y53526* X12600Y53498* X12611Y53467* Y53152* X12613Y53148* X12615Y53144* X12619Y53143* X12623Y53142* X12627Y53143* X12631Y53144* X12634Y53148* X12635Y53152* Y53470* X12634Y53471* Y53473* X12620Y53511* X12619Y53513* X12618Y53515* X12617Y53516* X12581Y53545* X12631Y50758D02* X12232Y50193D01* X12231Y50190* X12229Y50189* X12227* X12225* X12221Y50190* X12217Y50192* X12214Y50194* X12212Y50198* Y50203* X12213Y50207* X12611Y50773* X12614Y50776* X12618Y50777* X12623Y50776* X12626Y50774* X12630Y50771* X12631Y50767* X12632Y50763* X12631Y50758* X12658Y47275D02* X12656D01* X12655Y47276* X12616Y47295* X12573Y47353* X12547Y47409* Y47481* X12573Y47538* X12616Y47595* X12655Y47615* X12658Y47616* X12697Y47633* X12771* X12811Y47616* X12812Y47615* X12852Y47595* X12894Y47538* X12921Y47481* Y47409* X12894Y47353* X12852Y47295* X12812Y47276* X12811Y47275* X12771Y47258* X12697* X12658Y47275* X12770Y53152D02* X12771Y53148D01* X12774Y53144* X12777Y53143* X12781Y53142* X12786Y53143* X12790Y53144* X12793Y53148* X12794Y53152* Y53203* X12814Y53184* X12815Y53183* X12816Y53182* X12867Y53150* X12868Y53149* X12871Y53148* X12938Y53140* X12941* X12942* X13021* X13022* X13024* X13025Y53141* X13067Y53158* X13068Y53159* X13070Y53160* X13113Y53182* X13116Y53184* X13117Y53186* X13162Y53247* X13163Y53249* X13191Y53309* X13192Y53311* Y53314* Y53394* Y53396* X13191* Y53398* Y53399* X13170Y53457* X13169Y53460* X13168Y53463* X13127Y53518* X13123Y53520* X13078Y53549* X13076Y53550* X13074* X13025Y53568* X13023* X13022* X13021Y53569* X12941* X12939* X12938* X12884Y53562* X12881Y53561* X12879Y53559* X12814Y53527* X12813Y53526* X12812Y53525* X12811Y53524* X12810Y53523* X12793Y53505* Y53718* X12792Y53722* X12790Y53725* X12786Y53727* X12781Y53728* X12777Y53727* X12773Y53725* X12770Y53722* X12769Y53718* X12770Y53152* Y52359D02* X12771Y52354D01* X12775Y52351* X12778Y52348* X12782Y52347* X13129* Y52168* X13130Y52164* X13132Y52160* X13137Y52158* X13141* X13145* X13149Y52160* X13151Y52164* X13153Y52168* Y52347* X13180* X13185Y52348* X13188Y52350* X13190Y52354* Y52358* Y52363* X13188Y52367* X13185Y52370* X13180Y52371* X13153* Y52735* X13151Y52739* X13148Y52742* X13145Y52745* X13141Y52746* X13101* X13099* X13096Y52745* X13094Y52744* X13092Y52742* X12773Y52399* X12772Y52397* X12771Y52394* X12770Y52390* Y52359* X12795Y52385D02* X13106Y52722D01* X13129* Y52371* X12795* Y52385* X12887Y49774D02* X12488Y49208D01* X12487Y49206* X12484Y49205* X12483Y49204* X12481* X12477Y49206* X12473Y49207* X12470Y49210* X12468Y49214* X12467Y49219* X12469Y49223* X12867Y49789* X12870Y49792* X12874Y49793* X12878Y49791* X12882Y49790* X12885Y49787* X12887Y49782* X12888Y49778* X12887Y49774* X12900Y46357D02* X12901Y46356D01* X12902* X12947Y46295* X12948Y46294* X12949Y46292* X12950* X12951* X12994Y46270* X12995Y46269* X12996* X13038Y46251* X13040Y46250* X13042* X13123* X13124* X13125* X13127Y46251* X13168Y46269* X13170* X13172Y46270* X13214Y46292* X13215* X13218Y46295* X13263Y46356* X13264Y46357* X13293Y46416* Y46419* Y46422* Y46501* Y46504* Y46506* X13264Y46565* X13263Y46567* X13218Y46628* X13217* X13216Y46630* X13214Y46631* X13172Y46651* X13170Y46653* X13168Y46654* X13127Y46671* X13125Y46672* X13123Y46673* X13042Y46672* X13040Y46673* X13038Y46671* X12996Y46654* X12994Y46651* X12951Y46631* X12949Y46629* X12947Y46628* X12902Y46567* X12901Y46566* X12900Y46565* X12872Y46506* Y46502* Y46499* Y46422* Y46419* Y46416* X12900Y46357* X12941Y50512D02* X13018D01* X13071Y50503* X13128Y50465* X13152Y50421* X13165Y50361* X13152Y50300* X13128Y50256* X13070Y50218* X13018Y50212* X12941* X12887Y50218* X12827Y50257* X12792Y50312* Y50345* Y50346* X12802Y50420* X12829Y50468* X12887Y50503* X12941Y50512* X12943Y53545D02* X13019D01* X13064Y53528* X13065* X13109Y53501* X13149Y53448* X13168Y53392* Y53317* X13141Y53260* X13099Y53202* X13059Y53182* X13058Y53181* X13018Y53164* X12943* X12876Y53171* X12830Y53202* X12794Y53239* X12793Y53470* X12827Y53507* X12888Y53538* X12943Y53545* X13006Y46291D02* X13005D01* X13004Y46292* X12965Y46311* X12922Y46369* X12896Y46425* Y46497* X12922Y46554* X12965Y46611* X13004Y46631* X13006* X13045Y46648* X13120* X13159Y46631* X13161* X13201Y46611* X13243Y46554* X13270Y46497* Y46425* X13243Y46369* X13201Y46311* X13161Y46292* X13160Y46291* X13159* X13120Y46274* X13045* X13006Y46291* X13020Y50778D02* X13018D01* X12940* X12937* X12936* X12881Y50770* X12880* X12877Y50769* X12814Y50727* X12812Y50725* X12810Y50722* X12783Y50671* X12782Y50669* X12781Y50666* X12768Y50526* Y50524* Y50523* Y50349* Y50346* Y50310* Y50306* X12770Y50303* X12810Y50243* X12811Y50240* X12814Y50237* X12877Y50197* X12880Y50195* X12881* X12936Y50187* X12937* X12940* X13019* X13020* X13075Y50195* X13077* X13078* X13081Y50197* X13143Y50237* X13145Y50239* X13146Y50242* X13174Y50292* Y50294* X13175Y50295* X13189Y50359* Y50361* Y50364* X13176Y50427* X13175Y50429* X13174Y50431* X13146Y50480* X13145Y50483* X13143Y50486* X13081Y50526* X13077Y50527* Y50528* X13020Y50535* X13018* X12939* X12936* X12881Y50528* X12880Y50527* X12877Y50526* X12814Y50487* X12810Y50484* Y50483* X12792Y50451* Y50523* X12804Y50663* X12828Y50708* X12887Y50747* X12941Y50754* X13018* X13071Y50747* X13125Y50709* X13156Y50659* X13159Y50656* X13162Y50655* X13167Y50656* X13171Y50657* X13175Y50660* X13177Y50664* X13178Y50668* X13176Y50672* X13146Y50724* X13144Y50725* X13140Y50728* X13081Y50768* X13080Y50769* X13075Y50770* X13020Y50778* X13197Y49527D02* X13273D01* X13326Y49519* X13384Y49481* X13408Y49437* X13421Y49377* X13407Y49316* X13384Y49272* X13325Y49233* X13273Y49227* X13197* X13143Y49233* X13083Y49273* X13048Y49328* Y49361* X13058Y49436* X13085Y49484* X13143Y49519* X13197Y49527* X13276Y49794D02* X13273D01* X13195* X13193* X13192* X13137Y49786* X13136Y49785* X13133Y49784* X13070Y49743* X13067Y49741* X13065Y49738* X13038Y49687* Y49685* X13037Y49682* X13024Y49542* Y49540* Y49539* Y49365* Y49362* Y49325* Y49322* X13026Y49319* X13065Y49259* X13067Y49256* X13070Y49253* X13133Y49213* X13136Y49211* X13137* X13192Y49203* X13193* X13195* X13275* X13276* X13331Y49211* X13332* X13334* X13337Y49213* X13399Y49253* X13400Y49255* X13402Y49258* X13429Y49308* X13430Y49309* X13431Y49311* X13445Y49374* Y49377* Y49380* X13432Y49443* X13431Y49445* X13430Y49446* X13429Y49447* X13402Y49496* X13400Y49499* X13399Y49501* X13337Y49542* X13333Y49543* X13332* X13276Y49551* X13273* X13195* X13192* X13137Y49543* X13136* X13133Y49542* X13070Y49503* X13066Y49500* X13065* Y49498* X13048Y49467* Y49539* X13060Y49679* X13084Y49724* X13143Y49763* X13197Y49769* X13273* X13327Y49763* X13381Y49725* X13412Y49675* X13414Y49672* X13418Y49671* X13423* X13427Y49673* X13430Y49676* X13433Y49680* Y49683* X13432Y49687* X13401Y49739* X13400Y49741* X13396Y49744* X13337Y49784* X13335Y49785* X13331Y49786* X13276Y49794* X13448Y47640D02* X13444Y47642D01* X13441Y47643* X13394Y47655* X13391* X13387* X13342Y47642* X13339* X13337* X13335* X13333Y47640* X13297Y47610* X13295Y47608* X13294Y47606* X13291Y47597* X13288Y47607* X13287Y47610* X13285Y47612* X13249Y47642* X13246Y47643* X13242Y47644* X13194Y47657* X13190* X13189* X13143Y47643* X13140Y47644* X13138* X13135Y47643* X13134Y47642* X13104Y47617* Y47646* X13103Y47650* X13101Y47653* X13096Y47655* X13092Y47656* X13088Y47655* X13083Y47653* X13081Y47650* X13080Y47646* Y47565* Y47247* X13081Y47243* X13083Y47239* X13088Y47238* X13092Y47237* X13096Y47238* X13101Y47239* X13103Y47243* X13104Y47247* Y47563* X13116Y47594* X13148Y47621* X13191Y47634* X13232Y47622* X13267Y47594* X13279Y47563* Y47246* X13280Y47242* X13282Y47239* X13287Y47237* X13291Y47236* X13295Y47237* X13299Y47239* X13301Y47242* X13303Y47246* Y47561* X13315Y47593* X13346Y47620* X13391Y47632* X13431Y47620* X13466Y47593* X13478Y47561* Y47246* X13479Y47242* X13481Y47239* X13486Y47237* X13490Y47236* X13494Y47237* X13498Y47239* X13500Y47242* X13502Y47246* Y47564* Y47565* X13501* Y47567* X13486Y47606* Y47608* X13485Y47609* X13484Y47610* X13448Y47640* Y50748D02* X13450Y50751D01* X13452Y50754* Y50757* X13451Y50761* X13449Y50766* X13446Y50768* X13443Y50770* X13439* X13437* X13435Y50769* X13372Y50727* X13368Y50725* Y50724* Y50723* X13339Y50673* X13337Y50669* Y50667* Y50626* Y50623* X13338Y50621* X13356Y50575* X13357Y50573* X13358Y50571* X13360Y50569* X13409Y50531* X13410* X13412Y50529* X13413* X13415* X13433Y50524* X13372Y50487* X13368Y50484* Y50483* X13338Y50432* X13337Y50431* Y50428* X13325Y50364* Y50362* Y50360* Y50359* X13337Y50295* Y50293* Y50292* X13338* X13368Y50241* X13370Y50238* X13372Y50237* X13435Y50197* X13438Y50195* X13439* X13494Y50187* X13495* X13498* X13577* X13578* X13634Y50195* X13636* X13638Y50197* X13701Y50237* X13703Y50239* X13704Y50241* Y50242* X13732Y50292* Y50293* Y50294* X13733Y50295* X13748Y50359* Y50361* Y50364* X13734Y50427* X13733Y50428* Y50429* X13732Y50431* X13704Y50480* X13703Y50483* X13701Y50486* X13641Y50524* X13659Y50529* X13661* X13663Y50531* X13713Y50569* X13714Y50571* X13716Y50572* X13717Y50574* X13735Y50620* Y50621* X13736Y50623* Y50626* Y50667* Y50668* X13735Y50670* X13734Y50673* X13704Y50723* X13702Y50725* X13699Y50727* X13639Y50768* X13638Y50769* X13634Y50770* X13578Y50778* X13577* X13575* X13498* X13497* X13494* X13439Y50770* X13435Y50769* X13433Y50765* X13432Y50761* Y50757* X13433Y50753* X13435Y50749* X13438Y50747* X13443* X13445* X13448Y50748* X13498Y50512D02* X13500D01* X13575* X13628Y50503* X13686Y50465* X13710Y50421* X13723Y50361* X13710Y50300* X13686Y50256* X13628Y50218* X13575Y50212* X13500* X13498* X13445Y50218* X13387Y50256* X13360Y50302* X13350Y50361* X13360Y50420* X13387Y50468* X13445Y50503* X13498Y50512* Y50754D02* X13575D01* X13629Y50747* X13683Y50709* X13712Y50663* Y50628* X13695Y50587* X13651Y50552* X13575Y50535* X13500* X13422Y50552* X13377Y50587* X13362Y50627* Y50663* X13387Y50708* X13445Y50747* X13498Y50754* X13704Y49764D02* X13706Y49767D01* X13708Y49769* Y49773* X13707Y49777* X13704Y49781* X13702Y49784* X13699Y49785* X13695Y49786* X13694* X13693Y49785* X13691Y49784* X13628Y49743* X13624Y49741* Y49740* Y49739* X13595Y49689* X13593Y49685* Y49683* Y49641* Y49638* Y49637* X13594* X13612Y49591* Y49589* X13613Y49587* X13616Y49585* X13665Y49547* X13667Y49545* X13668Y49544* X13671* X13688Y49540* X13628Y49503* X13624Y49500* Y49498* X13594Y49448* X13593Y49446* Y49444* X13581Y49380* Y49378* X13580Y49376* X13581Y49374* X13593Y49311* Y49309* Y49308* X13594* X13624Y49257* X13626Y49254* X13628Y49253* X13691Y49213* X13693Y49211* X13695* X13750Y49203* X13751* X13753* X13833* X13834* X13889Y49211* X13892* X13894Y49213* X13957Y49253* X13958Y49255* X13960Y49257* Y49258* X13987Y49308* Y49309* X13988* X13989Y49311* X14003Y49374* Y49377* Y49380* X13990Y49443* X13989Y49444* Y49445* X13988Y49446* X13987* Y49447* X13960Y49496* X13958Y49499* X13957Y49501* X13897Y49540* X13915Y49544* X13916Y49545* X13919Y49547* X13968Y49585* X13970Y49586* X13971Y49588* X13972* X13973Y49590* X13990Y49636* X13991Y49637* Y49638* Y49641* Y49683* Y49684* Y49686* X13990Y49689* X13960Y49739* X13958Y49741* X13954Y49743* X13895Y49784* X13893Y49785* X13889Y49786* X13834Y49794* X13833* X13831* X13753* X13752* X13750* X13695Y49786* X13694* X13691Y49784* X13688Y49781* X13687Y49777* Y49772* X13688Y49768* X13690Y49765* X13694Y49762* X13699* X13701* X13704Y49764* X13749Y53719D02* X13748Y53723D01* X13745Y53727* X13741Y53728* X13737Y53729* X13733Y53728* X13729Y53727* X13726Y53723* X13725Y53719* Y53447* X13351* Y53719* X13350Y53723* X13348Y53727* X13344Y53728* X13339Y53729* X13335Y53728* X13331Y53727* X13328Y53723* X13327Y53719* Y53152* X13328Y53148* X13331Y53144* X13335Y53143* X13339Y53142* X13344Y53143* X13348Y53144* X13350Y53148* X13351Y53152* Y53424* X13725* Y53152* X13726Y53148* X13729Y53144* X13733Y53143* X13737Y53142* X13741Y53143* X13745Y53144* X13748Y53148* X13749Y53152* Y53719* X13754Y49527D02* X13755D01* X13830* X13831* X13884Y49519* X13942Y49481* X13966Y49437* X13978Y49377* X13965Y49316* X13942Y49272* X13883Y49233* X13831Y49227* X13830* X13755* X13754* X13701Y49233* X13643Y49272* X13616Y49318* X13606Y49377* X13616Y49436* X13643Y49484* X13701Y49519* X13754Y49527* Y49769D02* X13831D01* X13885Y49763* X13939Y49725* X13968Y49679* Y49644* X13951Y49602* X13907Y49568* X13830Y49551* X13755* X13677Y49568* X13633Y49602* X13618Y49643* Y49679* X13643Y49724* X13701Y49763* X13754Y49769* X13797Y46656D02* X13792Y46657D01* X13789Y46658* X13742Y46671* X13740* X13736* X13691Y46657* X13688Y46658* X13686* X13684Y46657* X13681Y46656* X13646Y46626* X13644Y46624* X13643Y46621* X13639Y46612* X13637Y46623* X13635Y46626* X13634Y46628* X13598Y46657* X13595Y46659* X13590Y46660* X13543Y46673* X13539* X13537* X13492Y46659* X13489Y46660* X13487* X13484Y46659* X13482Y46657* X13453Y46633* Y46661* X13452Y46666* X13449Y46669* X13445Y46671* X13440* X13436* X13432Y46669* X13430Y46666* X13429Y46661* Y46581* Y46263* X13430Y46259* X13432Y46255* X13436Y46253* X13440* X13445* X13449Y46255* X13452Y46259* X13453Y46263* Y46579* X13465Y46609* X13497Y46637* X13540Y46650* X13581Y46638* X13616Y46609* X13628Y46579* Y46262* X13629Y46257* X13631Y46255* X13635Y46253* X13639Y46252* X13644Y46253* X13648Y46255* X13650Y46258* X13651Y46262* Y46577* X13664Y46608* X13695Y46635* X13739Y46648* X13780Y46636* X13815Y46608* X13827Y46577* Y46262* X13828Y46258* X13830Y46255* X13834Y46253* X13838Y46252* X13843Y46253* X13847Y46255* X13849Y46258* X13850Y46262* Y46580* Y46581* Y46583* X13835Y46621* X13834Y46624* Y46625* X13833Y46626* X13797Y46656* X14056Y50754D02* X14134D01* X14187Y50746* X14244Y50708* X14268Y50665* X14282Y50602* Y50545* X14246Y50500* X14186Y50461* X14134Y50454* X14133* X14058* X14056* X14003Y50461* X13945Y50500* X13918Y50545* X13908Y50604* X13918Y50663* X13945Y50710* X14003Y50746* X14056Y50754* X14192Y50437D02* X14193D01* X14194Y50438* X14197Y50439* X14259Y50480* X14261Y50481* X14262Y50484* X14282Y50508* Y50444* X14258Y50285* X14232Y50257* X14231Y50256* X14190Y50220* X14144Y50212* X14057* X13996Y50220* X13943Y50257* X13939Y50259* X13935Y50258* X13932Y50256* X13929Y50254* X13926Y50249* Y50245* X13927Y50241* X13931Y50238* X13987Y50199* X13989Y50198* X13992Y50197* X14053Y50187* X14057* X14146* X14149* X14197Y50197* X14202Y50199* X14203Y50200* X14247Y50239* X14248Y50240* X14278Y50272* X14279Y50274* X14280Y50275* X14281Y50278* X14306Y50440* Y50441* Y50444* Y50538* Y50541* Y50601* Y50607* X14292Y50670* X14290Y50673* X14263Y50723* X14261Y50726* X14259Y50728* X14198Y50768* X14196Y50769* X14194* X14193Y50770* X14136Y50778* X14135* X14134* X14055* X14053* X14052* X13997Y50770* X13996Y50769* X13993Y50768* X13930Y50729* X13928* X13927Y50727* X13926Y50725* X13896Y50674* Y50673* Y50670* X13884Y50607* Y50605* X13883Y50603* X13884Y50602* X13896Y50539* Y50535* Y50534* X13926Y50484* X13928Y50481* X13930Y50480* X13993Y50439* X13995Y50438* X13997Y50437* X14052Y50431* X14053* X14055* X14135* X14136* X14192Y50437* X14312Y49769D02* X14389D01* X14443Y49762* X14500Y49724* X14524Y49680* X14538Y49618* Y49561* X14502Y49516* X14441Y49477* X14389Y49470* X14388* X14313* X14312* X14259Y49477* X14201Y49516* X14174Y49561* X14164Y49620* X14174Y49679* X14201Y49726* X14259Y49762* X14312Y49769* X14447Y49453D02* X14449D01* X14450Y49454* X14453Y49455* X14515Y49496* X14517Y49497* X14518Y49500* X14538Y49524* Y49460* X14513Y49301* X14488Y49273* X14486Y49272* X14446Y49236* X14400Y49227* X14313* X14252Y49236* X14199Y49273* X14195Y49275* X14190Y49274* X14188Y49272* X14185Y49269* X14182Y49265* Y49260* X14183Y49256* X14186Y49253* X14242Y49215* X14245Y49214* X14248Y49213* X14309Y49203* X14313* X14402* X14405* X14453Y49213* X14458Y49215* X14459Y49216* X14502Y49255* X14503Y49256* X14534Y49288* X14535Y49290* Y49291* X14537Y49294* X14561Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X14548Y49686* X14545Y49689* X14518Y49739* X14516Y49742* X14515Y49744* X14453Y49784* X14452* X14450* X14449Y49785* X14392Y49794* X14391* X14389* X14311* X14309* X14308* X14253Y49785* X14252Y49784* X14249* X14186Y49745* X14184* X14183Y49743* X14182Y49741* X14152Y49690* X14151Y49689* Y49686* X14140Y49622* Y49621* X14138Y49619* X14140Y49618* X14151Y49555* Y49551* Y49550* X14152* X14182Y49500* X14184Y49497* X14186Y49496* X14249Y49455* X14251Y49454* X14252Y49453* X14253* X14308Y49446* X14309* X14311* X14391* X14392* X14447Y49453* X14466Y50443D02* Y50444D01* Y50522* X14479Y50662* X14496Y50694* X14794Y50251* X14744Y50218* X14692Y50212* X14691* X14616* X14615* X14562Y50218* X14503Y50256* X14476Y50302* X14466Y50443* X14476Y50305D02* X14473Y50308D01* X14468Y50309* X14464Y50308* X14460Y50306* X14457Y50303* X14454Y50300* X14453Y50296* X14454Y50294* Y50292* X14484Y50241* X14485Y50240* X14488Y50237* X14551Y50197* X14554Y50195* X14556* X14610Y50187* X14612* X14614* X14692* X14693* X14694* X14750Y50195* X14752* X14755Y50197* X14817Y50237* X14819Y50239* X14821Y50242* X14848Y50292* Y50294* X14850Y50296* X14864Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X14852Y50666* X14851Y50669* X14850Y50672* X14820Y50723* X14818Y50725* X14815Y50727* X14756Y50768* X14754Y50769* X14750Y50770* X14694Y50778* X14614* X14612* X14611* X14556Y50770* X14555* X14554* X14552Y50769* X14489Y50727* X14486Y50725* X14484Y50722* X14457Y50671* X14456Y50669* Y50666* X14442Y50526* Y50523* Y50442* Y50441* Y50440* X14454Y50297* X14455Y50293* X14457Y50290* X14462Y50288* X14466* X14470* X14474Y50291* X14476Y50294* X14477Y50299* X14476Y50302* Y50305* X14615Y50754D02* X14616D01* X14691* X14692* X14746Y50747* X14799Y50709* X14828Y50661* X14840Y50522* Y50444* X14826Y50301* X14809Y50270* X14510Y50712* X14562Y50747* X14615Y50754* X14722Y49458D02* Y49459D01* Y49538* X14735Y49678* X14751Y49709* X15050Y49267* X15000Y49233* X14948Y49227* X14946* X14871* X14818Y49233* X14759Y49272* X14732Y49318* X14722Y49458* X14731Y49321D02* X14728Y49324D01* X14724Y49325* X14720Y49324* X14715Y49322* X14713Y49319* X14710Y49316* X14709Y49312* X14710Y49310* Y49308* X14740Y49257* X14741Y49256* X14744Y49253* X14807Y49213* X14809Y49211* X14812* X14866Y49203* X14867* X14870* X14948* X14949* X14950* X15005Y49211* X15008* X15011Y49213* X15073Y49253* X15075Y49255* X15076Y49258* X15103Y49308* X15104Y49309* X15105Y49312* X15119Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X15108Y49682* X15107Y49684* X15106Y49687* X15076Y49739* X15074Y49741* X15070Y49743* X15011Y49784* X15010Y49785* X15005Y49786* X14950Y49794* X14949* X14870* X14867* X14812Y49786* X14811* X14810Y49785* X14808Y49784* X14744Y49743* X14742Y49741* X14740Y49738* X14713Y49687* X14712Y49685* X14711Y49682* X14698Y49542* Y49539* Y49458* Y49457* Y49455* X14710Y49313* X14711Y49308* X14713Y49305* X14717Y49304* X14721* X14726* X14730Y49306* X14732Y49310* X14733Y49315* X14732Y49318* X14731Y49321* X14871Y49769D02* X14946D01* X14948* X15001Y49763* X15055Y49725* X15084Y49677* X15096Y49538* Y49460* X15082Y49317* X15064Y49286* X14766Y49728* X14818Y49763* X14871Y49769* X15081Y50450D02* X15271D01* X15275Y50449* X15278Y50447* X15279Y50444* X15280Y50440* X15279Y50435* X15278Y50432* X15275Y50430* X15271* X15081* X15077* X15074Y50432* X15072Y50435* Y50440* Y50444* X15073Y50447* X15076Y50449* X15081Y50450* X15337Y49465D02* X15526D01* X15530* X15533Y49462* X15535Y49459* X15536Y49456* X15535Y49451* X15533Y49448* X15530Y49446* X15526Y49445* X15337* X15333Y49446* X15330Y49448* X15328Y49451* X15327Y49456* X15328Y49459* X15329Y49462* X15332Y49465* X15337* X15560Y50443D02* Y50444D01* Y50522* X15573Y50662* X15589Y50694* X15888Y50251* X15838Y50218* X15786Y50212* X15784* X15709* X15656Y50218* X15597Y50256* X15570Y50302* X15560Y50443* X15569Y50305D02* X15566Y50308D01* X15562Y50309* X15558Y50308* X15553Y50306* X15550Y50303* X15548Y50300* X15547Y50296* X15548Y50294* Y50292* X15578Y50241* X15579Y50240* X15582Y50237* X15645Y50197* X15647Y50195* X15650* X15704Y50187* X15705* X15708* X15786* X15787* X15788* X15843Y50195* X15846* X15849Y50197* X15911Y50237* X15913Y50239* X15914Y50242* X15941Y50292* X15942Y50294* X15943Y50296* X15957Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X15946Y50666* X15945Y50669* X15944Y50672* X15914Y50723* X15912Y50725* X15908Y50727* X15849Y50768* X15848Y50769* X15843Y50770* X15788Y50778* X15787* X15708* X15705* X15650Y50770* X15649* X15648* X15646Y50769* X15582Y50727* X15580Y50725* X15578Y50722* X15551Y50671* X15550Y50669* X15549Y50666* X15536Y50526* Y50523* Y50442* Y50441* Y50440* X15548Y50297* X15549Y50293* X15551Y50290* X15555Y50288* X15559* X15564* X15568Y50291* X15570Y50294* X15571Y50299* X15570Y50302* X15569Y50305* X15709Y50754D02* X15784D01* X15786* X15839Y50747* X15893Y50709* X15922Y50661* X15934Y50522* Y50444* X15920Y50301* X15902Y50270* X15604Y50712* X15656Y50747* X15709Y50754* X15964Y49769D02* X16041D01* X16094Y49762* X16152Y49724* X16176Y49680* X16189Y49618* Y49561* X16153Y49516* X16093Y49477* X16041Y49470* X16040* X15965* X15964* X15911Y49477* X15853Y49516* X15826Y49561* X15816Y49620* X15826Y49679* X15853Y49726* X15911Y49762* X15964Y49769* X16099Y49453D02* X16100D01* X16101Y49454* X16104Y49455* X16166Y49496* X16169Y49497* Y49500* X16189Y49524* Y49460* X16165Y49301* X16139Y49273* X16138Y49272* X16098Y49236* X16051Y49227* X15964* X15904Y49236* X15850Y49273* X15846Y49275* X15842Y49274* X15839Y49272* X15836Y49269* X15834Y49265* X15833Y49260* X15835Y49256* X15838Y49253* X15894Y49215* X15897Y49214* X15900Y49213* X15960Y49203* X15961* X15964* X16054* X16057* X16104Y49213* X16110Y49215* Y49216* X16154Y49255* X16155Y49256* X16185Y49288* X16187Y49290* Y49291* X16189Y49294* X16213Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X16200Y49686* X16197Y49689* X16170Y49739* X16168Y49742* X16166Y49744* X16105Y49784* X16104* X16101* X16100Y49785* X16044Y49794* X16042* X16041* X15963* X15961* X15960* X15905Y49785* X15904Y49784* X15901* X15838Y49745* X15836* X15835Y49743* X15833Y49741* X15804Y49690* X15803Y49689* Y49686* X15791Y49622* Y49621* X15790Y49619* X15791Y49618* X15803Y49555* Y49551* Y49550* X15804* X15833Y49500* X15836Y49497* X15838Y49496* X15901Y49455* X15902Y49454* X15904Y49453* X15905* X15960Y49446* X15961* X15963* X16042* X16044* X16099Y49453* X16374Y49458D02* Y49459D01* Y49538* X16387Y49678* X16403Y49709* X16701Y49267* X16652Y49233* X16599Y49227* X16598* X16523* X16469Y49233* X16411Y49272* X16384Y49318* X16374Y49458* X16383Y49321D02* X16380Y49324D01* X16375Y49325* X16371Y49324* X16367Y49322* X16364Y49319* X16361Y49316* Y49312* Y49310* X16362Y49308* X16391Y49257* X16393Y49256* X16396Y49253* X16459Y49213* X16461Y49211* X16463* X16518Y49203* X16519* X16521* X16599* X16600* X16602* X16657Y49211* X16660* X16663Y49213* X16725Y49253* X16726Y49255* X16728Y49258* X16755Y49308* X16756Y49309* X16757Y49312* X16771Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X16759Y49682* Y49684* X16758Y49687* X16727Y49739* X16726Y49741* X16722Y49743* X16663Y49784* X16661Y49785* X16657Y49786* X16602Y49794* X16601* X16521* X16519* X16518* X16463Y49786* X16462* Y49785* X16459Y49784* X16396Y49743* X16394Y49741* X16391Y49738* X16365Y49687* X16364Y49685* X16363Y49682* X16350Y49542* Y49539* Y49458* Y49457* Y49455* X16361Y49313* X16363Y49308* X16365Y49305* X16369Y49304* X16373* X16378* X16381Y49306* X16384Y49310* X16385Y49315* X16384Y49318* X16383Y49321* X16523Y49769D02* X16598D01* X16599* X16653Y49763* X16707Y49725* X16736Y49677* X16748Y49538* Y49460* X16733Y49317* X16716Y49286* X16417Y49728* X16469Y49763* X16523Y49769* G54D15* X47476Y49282D02* X47478Y49281D01* X47480Y49279* X47482Y49278* X47655Y49198* X47657Y49197* X47662* X47792* X47795* X47797* X47799* X47800Y49198* X47802* X47975Y49278* X47981Y49282* X48073Y49364* X48075Y49366* X48076Y49368* X48077Y49370* X48078Y49372* Y49375* X48079Y49376* Y49378* Y49520* X48078Y49524* X48076Y49529* X48075Y49532* X48072Y49537* X47938Y49638* X47932Y49640* X47538Y49774* X47417Y49868* Y49991* X47501Y50090* X47663Y50141* X47794* X47956Y50091* X48046Y49986* X48049Y49983* X48052Y49981* X48055Y49980* X48059* X48065Y49982* X48071Y49987* X48076Y49993* X48079Y50000* Y50007* X48075Y50013* X47983Y50121* X47979Y50124* X47974Y50125* X47973* Y50127* X47802Y50178* X47799Y50180* X47796Y50181* X47662* X47658Y50180* X47655Y50178* X47485Y50126* X47484Y50125* X47480Y50124* X47475Y50120* X47382Y50012* X47378Y50008* X47377Y50005* X47376Y50000* Y49857* X47377Y49851* X47379Y49846* X47381Y49844* X47383Y49842* X47385Y49841* X47517Y49739* X47519Y49738* X47523* X47916Y49604* X48040Y49509* Y49386* X47958Y49315* X47790Y49237* X47667* X47499Y49315* X47410Y49394* X47403Y49397* X47396* X47389Y49394* X47384Y49389* X47380Y49383* X47377Y49376* Y49373* X47378Y49370* X47380Y49366* X47383Y49364* X47475Y49282* X47476* X48354Y49375D02* X48355Y49373D01* X48357Y49372* X48433Y49271* X48434Y49269* X48436Y49267* X48438Y49266* X48439* X48510Y49230* X48512Y49228* X48514Y49227* X48584Y49198* X48587Y49197* X48591* X48725* X48727* X48729* X48732Y49198* X48801Y49227* X48804Y49228* X48807Y49230* X48876Y49266* X48879Y49267* X48883Y49271* X48958Y49372* X48961Y49375* X49008Y49473* X49009Y49477* Y49482* Y49614* Y49619* X49008Y49623* X48961Y49721* X48958Y49724* X48883Y49826* X48882* X48880Y49829* X48876Y49831* X48807Y49865* X48804Y49867* X48801Y49869* X48732Y49899* X48728Y49900* X48725Y49901* X48591Y49900* X48587Y49901* X48584Y49899* X48514Y49869* X48510Y49865* X48439Y49831* X48436Y49828* X48433Y49826* X48357Y49724* X48355Y49723* X48354Y49721* X48308Y49623* X48307Y49616* Y49611* Y49483* Y49478* X48308Y49473* X48354Y49375* X48531Y49265D02* X48529D01* X48527Y49266* X48462Y49298* X48390Y49394* X48347Y49488* Y49608* X48390Y49703* X48462Y49797* X48527Y49831* X48531Y49832* X48596Y49860* X48720* X48786Y49832* X48789Y49831* X48855Y49797* X48925Y49703* X48970Y49608* Y49488* X48925Y49394* X48855Y49298* X48789Y49266* X48787Y49265* X48786* X48720Y49236* X48596* X48531Y49265* X49483Y50160D02* X49482Y50167D01* X49479Y50173* X49474Y50176* X49467Y50177* X49461Y50176* X49457Y50173* X49454Y50167* X49453Y50160* Y49217* X49454Y49209* X49457Y49204* X49461Y49201* X49467Y49200* X49474Y49201* X49479Y49204* X49482Y49209* X49483Y49217* Y50160* X50153Y49237D02* X50024D01* X49948Y49264* X49947* Y49266* X49875Y49312* X49810Y49397* X49777Y49489* Y49616* X49820Y49712* X49892Y49808* X49957Y49842* X49961Y49843* X50026Y49871* X50151* X50153* X50261Y49858* X50338Y49808* X50400Y49747* Y49359* X50344Y49300* X50243Y49248* X50153Y49237* X50439Y50161D02* X50438Y50168D01* X50434Y50174* X50427Y50177* X50420Y50178* X50413Y50177* X50406Y50174* X50402Y50168* X50400Y50161* Y49804* X50367Y49838* X50364Y49841* X50279Y49896* X50277Y49897* X50273Y49898* X50272Y49899* X50157Y49911* X50153* X50022* X50017* X50014Y49910* X49944Y49880* X49940Y49876* X49870Y49841* X49866Y49839* X49863Y49837* X49787Y49734* X49785Y49731* X49784Y49729* X49738Y49630* X49737Y49623* Y49619* Y49486* Y49482* Y49480* X49738Y49479* X49774Y49379* X49775Y49378* X49777Y49375* X49846Y49282* X49848Y49279* X49850Y49278* X49926Y49230* X49931Y49228* X49935Y49227* X50014Y49198* X50017* X50020Y49197* X50022* X50155* X50157* X50250Y49210* X50253Y49211* X50255Y49212* X50258Y49214* X50367Y49267* X50371Y49272* X50400Y49302* Y49217* X50402Y49210* X50406Y49204* X50413Y49201* X50420Y49200* X50427Y49201* X50434Y49204* X50438Y49210* X50439Y49217* Y50161* X50889Y49833D02* X50954Y49861D01* X51080* X51166Y49847* X51248Y49796* X51286Y49755* X51315Y49696* X51324Y49634* X50716* X50749Y49703* X50820Y49797* X50885Y49832* X50889Y49833* X51081Y49236D02* X51079D01* X50953* X50876Y49263* X50875* Y49264* X50803Y49309* X50738Y49394* X50705Y49485* Y49594* X51348* X51353* X51357Y49596* X51360Y49599* X51362Y49603* X51365Y49606* X51367Y49610* X51368Y49613* Y49617* X51355Y49703* X51352Y49710* X51347Y49715* X51339Y49717* X51332* X51325Y49715* X51319Y49712* X51315Y49706* Y49699* Y49696* X51317Y49692* X51322Y49686* X51328Y49684* X51335* X51342Y49686* X51348Y49690* X51352Y49696* X51354Y49700* X51355Y49703* X51354Y49707* X51352Y49710* X51318Y49777* X51317Y49781* X51276Y49825* X51273Y49829* X51270Y49832* X51185Y49885* X51183Y49886* X51180Y49887* X51177Y49888* X51085Y49901* X51083* X50950* X50948* X50945Y49900* X50943Y49899* X50873Y49869* X50869Y49865* X50798Y49831* X50794Y49828* X50791Y49826* X50715Y49724* X50713Y49723* X50712Y49721* X50666Y49623* X50665Y49616* Y49611* Y49482* Y49477* Y49475* X50666* X50702Y49377* X50703Y49373* X50705Y49372* X50774Y49281* X50775Y49278* X50778Y49277* X50854Y49230* X50860Y49228* X50863Y49227* X50943Y49198* X50945* X50948Y49197* X50950* X51083* X51085* X51178Y49208* X51182Y49209* X51184Y49210* X51187Y49212* X51295Y49266* X51299Y49270* X51364Y49336* X51368Y49342* X51367Y49348* X51364Y49355* X51360Y49360* X51353Y49364* X51347Y49367* X51340Y49366* X51334Y49363* X51272Y49299* X51171Y49249* X51081Y49236* X51736Y49881D02* X51734Y49888D01* X51730Y49894* X51723Y49897* X51716Y49898* X51709Y49897* X51702Y49894* X51698Y49888* X51696Y49881* Y49217* X51698Y49210* X51702Y49204* X51709Y49201* X51716Y49200* X51723Y49201* X51730Y49204* X51734Y49210* X51736Y49217* Y49609* X51779Y49704* X51851Y49798* X51917Y49832* X51920Y49833* X51986Y49861* X52112* X52221Y49847* X52297Y49798* X52365Y49733* X52371Y49729* X52377* X52385Y49731* X52391Y49736* X52396Y49742* X52398Y49749* Y49757* X52394Y49763* X52326Y49829* X52323Y49831* X52322* Y49832* X52240Y49885* X52237Y49886* X52234Y49887* X52231Y49888* X52117Y49901* X52114* X51982* X51981* X51978Y49900* X51974Y49899* X51904Y49869* X51899Y49865* X51828Y49832* X51824Y49829* X51823Y49826* X51747Y49724* X51745Y49723* Y49721* X51736Y49704* Y49881* X53239Y49872D02* X53232Y49875D01* X53227Y49877* X53148Y49898* X53144* X53137* X53063Y49875* X53058Y49876* X53054* X53051Y49875* X53047Y49872* X52988Y49823* X52984Y49819* X52983Y49815* X52977Y49800* X52973Y49818* X52970Y49823* X52967Y49826* X52907Y49875* X52902Y49878* X52895Y49879* X52816Y49901* X52810* X52807* X52731Y49878* X52726Y49879* X52722* X52718Y49878* X52715Y49875* X52666Y49835* Y49882* X52664Y49889* X52660Y49895* X52653Y49898* X52645Y49899* X52638Y49898* X52631Y49895* X52627Y49889* X52625Y49882* Y49748* Y49747* Y49218* X52627Y49211* X52631Y49205* X52638Y49202* X52645Y49201* X52653Y49202* X52660Y49205* X52664Y49211* X52666Y49218* Y49744* X52686Y49795* X52739Y49841* X52811Y49862* X52879Y49843* X52938Y49795* X52957Y49744* Y49217* X52959Y49209* X52963Y49204* X52970Y49201* X52977Y49200* X52984Y49201* X52991Y49204* X52995Y49210* X52997Y49217* Y49741* X53017Y49793* X53069Y49839* X53143Y49859* X53211Y49840* X53269Y49793* X53289Y49741* Y49217* X53291Y49210* X53295Y49204* X53302Y49201* X53309Y49200* X53315Y49201* X53322Y49204* X53326Y49210* X53328Y49217* Y49746* Y49747* X53327Y49748* Y49751* X53303Y49815* X53302Y49819* X53301Y49821* X53299Y49823* X53239Y49872* X53970Y49236D02* X53841D01* X53765Y49263* X53764* Y49265* X53691Y49309* X53626Y49394* X53594Y49485* Y49609* X53637Y49704* X53709Y49798* X53774Y49832* X53778Y49833* X53843Y49861* X53970* X54078Y49847* X54155Y49798* X54217Y49739* Y49357* X54161Y49299* X54060Y49249* X53970Y49236* X54256Y49881D02* X54254Y49888D01* X54250Y49894* X54244Y49897* X54237Y49898* X54230Y49897* X54223Y49894* X54219Y49888* X54217Y49881* Y49795* X54184Y49829* X54181Y49832* X54096Y49885* X54094Y49886* X54090Y49887* X54089Y49888* X53974Y49901* X53970* X53839* X53837* X53834Y49900* X53831Y49899* X53761Y49869* X53757Y49865* X53687Y49831* X53683Y49828* X53680Y49826* X53604Y49724* X53602Y49723* X53601Y49721* X53555Y49623* X53554Y49617* Y49614* Y49611* Y49482* Y49477* Y49475* X53555* X53591Y49377* X53592Y49373* X53594Y49372* X53663Y49281* X53664Y49278* X53667Y49277* X53743Y49230* X53748Y49228* X53751Y49227* X53831Y49198* X53834* X53837Y49197* X53839* X53970* X53974* X54066Y49208* X54070Y49209* X54072Y49210* X54075Y49212* X54184Y49266* X54185Y49267* X54188Y49270* X54217Y49301* Y49217* X54219Y49210* X54223Y49204* X54230Y49201* X54237Y49200* X54244Y49201* X54250Y49204* X54254Y49210* X54256Y49217* Y49881* X54578Y49253D02* Y49252D01* X54579Y49250* X54583Y49248* X54587Y49247* X54688Y49211* X54689* X54691Y49210* X54693* X54825Y49197* X54830* X54833* X54834* X54973Y49210* X54976Y49211* X54979* X55048Y49233* X55051Y49234* X55055Y49237* X55058Y49240* X55107Y49306* X55109Y49308* X55110Y49311* Y49316* X55124Y49426* Y49431* X55123Y49433* X55122Y49440* X55083Y49507* X55079Y49511* X55076Y49513* X55073Y49514* X54985Y49551* X54981* Y49553* X54660Y49587* X54592Y49633* X54545Y49681* X54522Y49734* X54535Y49779* X54587Y49819* X54699Y49847* X54830Y49861* X54956Y49840* X55037Y49793* X55089Y49734* X55095Y49730* X55102* X55109Y49732* X55115Y49736* X55119Y49742* X55122Y49748* Y49755* X55121Y49758* X55119Y49761* X55064Y49822* X55063Y49823* X55061Y49825* X55060* Y49826* X54971Y49877* X54966Y49878* X54963Y49879* X54834Y49901* X54833* X54830* X54827* X54825* X54695Y49888* X54688* X54574Y49859* X54569Y49857* X54564Y49852* X54507Y49808* X54504Y49804* X54500Y49798* Y49796* X54483Y49737* X54481Y49736* Y49734* X54480Y49729* X54483Y49724* X54509Y49664* X54510Y49661* X54512Y49658* Y49657* X54565Y49605* X54567Y49601* X54571Y49599* X54643Y49551* X54646Y49549* X54650Y49548* X54651* X54972Y49514* X55051Y49479* X55083Y49423* X55070Y49327* X55028Y49269* X54969Y49250* X54831Y49236* X54697Y49250* X54604Y49282* X54529Y49363* X54523Y49367* X54515* X54508Y49365* X54502Y49360* X54499Y49355* X54496Y49348* Y49343* X54500Y49337* X54578Y49253* X55447Y50161D02* X55445Y50168D01* X55441Y50174* X55435Y50177* X55427Y50178* X55420Y50177* X55413Y50174* X55409Y50168* X55407Y50161* Y49217* X55409Y49209* X55413Y49204* X55420Y49200* X55427Y49199* X55435Y49200* X55441Y49204* X55445Y49209* X55447Y49217* Y49607* X55555Y49651* X56077Y49202* X56083Y49198* X56091* X56098Y49200* X56104Y49205* X56108Y49211* X56109Y49219* Y49225* X56104Y49231* X55595Y49669* X56094Y49871* X56100Y49875* X56103Y49882* Y49890* X56102Y49897* X56098Y49904* X56092Y49908* X56086Y49910* X56079Y49909* X55447Y49651* Y50161* X57079Y49748D02* X57534D01* X57642Y49804* X57702Y49922* Y49993* X57643Y50078* X57538Y50141* X57079* Y49748* X57529Y49708D02* X57079D01* Y49237* X57544* X57642Y49299* X57702Y49423* Y49515* X57643Y49607* X57529Y49708* X57670Y49270D02* X57557Y49197D01* X57059* X57052Y49199* X57045Y49203* X57041Y49210* X57039Y49217* Y50161* X57041Y50168* X57045Y50174* X57052Y50179* X57059Y50181* X57551* X57669Y50109* X57742Y50005* Y49914* X57670Y49775* X57573Y49724* X57669Y49637* X57742Y49525* Y49414* X57670Y49270* X58016Y49375D02* X58017Y49373D01* X58019Y49372* X58095Y49271* X58096Y49269* X58098Y49267* X58100Y49266* X58102* X58173Y49230* X58175Y49228* X58177Y49227* X58247Y49198* X58250Y49197* X58253* X58387* X58389* X58391* X58394Y49198* X58463Y49227* X58466Y49228* X58469Y49230* X58539Y49266* X58542Y49267* X58546Y49271* X58621Y49372* X58624Y49375* X58671Y49473* X58672Y49477* Y49482* Y49614* Y49619* X58671Y49623* X58624Y49721* X58621Y49724* X58546Y49826* X58545* X58543Y49829* X58539Y49831* X58469Y49865* X58466Y49867* X58463Y49869* X58394Y49899* X58390Y49900* X58387Y49901* X58253Y49900* X58250Y49901* X58247Y49899* X58177Y49869* X58173Y49865* X58102Y49831* X58098Y49828* X58095Y49826* X58019Y49724* X58017Y49723* X58016Y49721* X57970Y49623* X57969Y49616* Y49611* Y49483* Y49478* X57970Y49473* X58016Y49375* X58193Y49265D02* X58191D01* X58189Y49266* X58125Y49298* X58053Y49394* X58009Y49488* Y49608* X58053Y49703* X58125Y49797* X58189Y49831* X58193Y49832* X58258Y49860* X58382* X58448Y49832* X58451Y49831* X58517Y49797* X58587Y49703* X58632Y49608* Y49488* X58587Y49394* X58517Y49298* X58451Y49266* X58449Y49265* X58448* X58382Y49236* X58258* X58193Y49265* X58917Y49844D02* X58909Y49842D01* X58904Y49837* X58901Y49831* X58900Y49824* X58901Y49817* X58904Y49810* X58909Y49806* X58917Y49804* X59229* Y49217* X59231Y49210* X59235Y49204* X59242Y49201* X59249Y49200* X59255Y49201* X59262Y49204* X59266Y49210* X59268Y49217* Y49804* X59580* X59588Y49806* X59593Y49810* X59596Y49817* X59597Y49824* X59596Y49831* X59593Y49837* X59588Y49842* X59580Y49844* X59268* X59269Y50161* X59268Y50168* X59263Y50174* X59256Y50177* X59250Y50178* X59243Y50177* X59237Y50174* X59232Y50168* X59230Y50161* X59229Y49844* X58917* X59845D02* X59837Y49842D01* X59832Y49837* X59829Y49831* X59828Y49824* X59829Y49817* X59832Y49810* X59837Y49806* X59845Y49804* X60157* Y49217* X60159Y49210* X60163Y49204* X60170Y49201* X60177Y49200* X60184Y49201* X60190Y49204* X60194Y49210* X60196Y49217* Y49804* X60508* X60516Y49806* X60521Y49810* X60524Y49817* X60525Y49824* X60524Y49831* X60521Y49837* X60516Y49842* X60508Y49844* X60196* X60197Y50161* X60196Y50168* X60191Y50174* X60185Y50177* X60178Y50178* X60171Y50177* X60165Y50174* X60160Y50168* X60158Y50161* X60157Y49844* X59845* X60801Y49375D02* X60802Y49373D01* X60804Y49372* X60879Y49271* X60880Y49269* X60882Y49267* X60884Y49266* X60886* X60957Y49230* X60959Y49228* X60961Y49227* X61031Y49198* X61034Y49197* X61038* X61172* X61174* X61176* X61179Y49198* X61248Y49227* X61250Y49228* X61253Y49230* X61323Y49266* X61326Y49267* X61330Y49271* X61405Y49372* X61408Y49375* X61455Y49473* X61456Y49477* Y49482* Y49614* Y49619* X61455Y49623* X61408Y49721* X61405Y49724* X61330Y49826* X61329* X61327Y49829* X61323Y49831* X61253Y49865* X61250Y49867* X61248Y49869* X61179Y49899* X61175Y49900* X61172Y49901* X61038Y49900* X61034Y49901* X61031Y49899* X60961Y49869* X60957Y49865* X60886Y49831* X60882Y49828* X60879Y49826* X60804Y49724* X60802Y49723* X60801Y49721* X60754Y49623* X60753Y49616* Y49611* Y49483* Y49478* X60754Y49473* X60801Y49375* X60978Y49265D02* X60976D01* X60974Y49266* X60909Y49298* X60837Y49394* X60794Y49488* Y49608* X60837Y49703* X60909Y49797* X60974Y49831* X60978Y49832* X61043Y49860* X61167* X61233Y49832* X61236Y49831* X61302Y49797* X61372Y49703* X61417Y49608* Y49488* X61372Y49394* X61302Y49298* X61236Y49266* X61234Y49265* X61233* X61167Y49236* X61043* X60978Y49265* X62295Y49872D02* X62288Y49875D01* X62283Y49877* X62204Y49898* X62200* X62193* X62119Y49875* X62114Y49876* X62110* X62107Y49875* X62103Y49872* X62044Y49823* X62040Y49819* X62039Y49815* X62033Y49800* X62029Y49818* X62026Y49823* X62023Y49826* X61963Y49875* X61958Y49878* X61951Y49879* X61873Y49901* X61866* X61863* X61787Y49878* X61782Y49879* X61778* X61774Y49878* X61771Y49875* X61722Y49835* Y49882* X61720Y49889* X61716Y49895* X61709Y49898* X61701Y49899* X61694Y49898* X61688Y49895* X61684Y49889* X61682Y49882* Y49748* Y49747* Y49218* X61684Y49211* X61688Y49205* X61694Y49202* X61701Y49201* X61709Y49202* X61716Y49205* X61720Y49211* X61722Y49218* Y49744* X61742Y49795* X61795Y49841* X61867Y49862* X61936Y49843* X61994Y49795* X62013Y49744* Y49217* X62015Y49209* X62019Y49204* X62026Y49201* X62033Y49200* X62040Y49201* X62047Y49204* X62051Y49210* X62053Y49217* Y49741* X62073Y49793* X62125Y49839* X62199Y49859* X62267Y49840* X62325Y49793* X62345Y49741* Y49217* X62347Y49210* X62351Y49204* X62358Y49201* X62365Y49200* X62372Y49201* X62378Y49204* X62382Y49210* X62384Y49217* Y49746* Y49747* X62383Y49748* Y49751* X62359Y49815* X62358Y49819* X62357Y49821* X62355Y49823* X62295Y49872* G54D16* X24540Y50280D02* X24534Y50287D01* X24531Y50289* X24530Y50290* X24419Y50339* X24414Y50341* X24408* X24292Y50371* X24288Y50374* X24282Y50375* X24129Y50359* X24127Y50358* X24125* X24122Y50357* X24120Y50356* X24018Y50303* X24012Y50300* X24006Y50297* X23917Y50206* X23914Y50200* X23912Y50196* X23833Y50039* X23831Y50033* X23829Y50031* X23782Y49874* Y49870* Y49869* X23781Y49868* Y49866* Y49706* X23780Y49703* X23781Y49698* X23816Y49536* Y49533* X23820Y49529* Y49528* X23908Y49370* Y49367* X23912Y49364* X23999Y49269* X24002* Y49268* X24004Y49266* X24006Y49265* X24112Y49213* X24116Y49208* X24121Y49207* X24281Y49194* X24282* X24283* X24286* X24447Y49222* X24452Y49223* X24455Y49228* X24564Y49304* X24569Y49308* X24572Y49315* X24621Y49418* X24623Y49423* X24624Y49428* X24622Y49436* X24617Y49443* X24610Y49448* X24602Y49450* X24594Y49451* X24586Y49448* X24581Y49442* X24531Y49339* X24432Y49269* X24281Y49242* X24128Y49254* X24031Y49305* X23947Y49394* X23864Y49546* X23829Y49709* Y49863* X23873Y50016* X23875Y50020* X23877Y50030* X23874Y50033* X23872Y50037* X23866Y50043* X23858Y50046* X23849Y50048* X23841Y50046* X23834Y50042* X23831Y50033* X23829Y50030* X23831Y50023* X23834Y50016* X23840Y50010* X23846Y50006* X23853Y50004* X23860Y50005* X23867Y50009* X23873Y50016* X23952Y50170* X24042Y50261* X24136Y50312* X24283Y50325* X24395Y50296* Y50294* X24399Y50293* X24503Y50248* X24581Y50123* X24586Y50117* X24594Y50115* X24603Y50116* X24611Y50120* X24618Y50126* X24623Y50133* X24624Y50142* X24621Y50150* X24540Y50280* X25654D02* X25648Y50287D01* X25645Y50289* X25644Y50290* X25532Y50339* X25528Y50341* X25522* X25406Y50371* X25401Y50374* X25395Y50375* X25243Y50359* X25241Y50358* X25238* X25236Y50357* X25234Y50356* X25132Y50303* X25126Y50300* X25120Y50297* X25031Y50206* X25028Y50200* X25026Y50196* X24947Y50039* X24944Y50033* X24943Y50031* X24896Y49874* Y49870* Y49869* X24895Y49868* Y49866* Y49706* X24894Y49703* X24895Y49698* X24930Y49536* Y49533* X24934Y49529* Y49528* X25022Y49370* Y49367* X25026Y49364* X25113Y49269* X25116* Y49268* X25118Y49266* X25120Y49265* X25225Y49213* X25230Y49208* X25235Y49207* X25394Y49194* X25395* X25397* X25400* X25561Y49222* X25566Y49223* X25569Y49228* X25678Y49304* X25682Y49308* X25686Y49315* X25734Y49418* X25737Y49423* X25738Y49428* X25736Y49436* X25731Y49443* X25724Y49448* X25716Y49450* X25707Y49451* X25700Y49448* X25694Y49442* X25645Y49339* X25545Y49269* X25394Y49242* X25242Y49254* X25145Y49305* X25061Y49394* X24977Y49546* X24943Y49709* Y49863* X24987Y50016* X24989Y50020* X24990Y50030* X24988Y50033* X24986Y50037* X24980Y50043* X24971Y50046* X24963Y50048* X24955Y50046* X24948Y50042* X24944Y50033* X24943Y50030* X24944Y50023* X24948Y50016* X24954Y50010* X24960Y50006* X24967Y50004* X24974Y50005* X24981Y50009* X24987Y50016* X25066Y50170* X25156Y50261* X25250Y50312* X25397Y50325* X25509Y50296* Y50294* X25512Y50293* X25616Y50248* X25694Y50123* X25700Y50117* X25707Y50115* X25717Y50116* X25725Y50120* X25732Y50126* X25737Y50133* X25738Y50142* X25734Y50150* X25654Y50280* X26767D02* X26762Y50287D01* X26758Y50289* X26757Y50290* X26646Y50339* X26642Y50341* X26636* X26519Y50371* X26515Y50374* X26509Y50375* X26357Y50359* X26355Y50358* X26352* X26350Y50357* X26347Y50356* X26246Y50303* X26240Y50300* X26234Y50297* X26144Y50206* X26142Y50200* X26140Y50196* X26060Y50039* X26058Y50033* X26057Y50031* X26010Y49874* Y49870* Y49869* X26008Y49868* Y49866* Y49706* X26007Y49703* X26008Y49698* X26044Y49536* Y49534* X26045Y49533* Y49530* X26046Y49529* Y49528* X26136Y49370* X26137Y49367* X26140Y49364* X26227Y49269* X26229* X26231Y49267* X26234Y49265* X26338Y49213* X26344Y49208* X26349Y49207* X26508Y49194* X26509* X26510* X26514* X26675Y49222* X26678Y49223* X26683Y49227* X26792Y49304* X26796Y49308* X26800Y49315* X26848Y49418* Y49419* X26851* Y49422* Y49424* X26852Y49425* Y49426* Y49430* Y49654* X26851Y49663* X26845Y49671* X26838Y49677* X26828Y49679* X26587* X26578Y49677* X26572Y49672* X26568Y49664* X26567Y49654* X26568Y49646* X26572Y49638* X26578Y49633* X26587Y49631* X26805* Y49435* X26758Y49339* X26659Y49269* X26508Y49242* X26356Y49254* X26259Y49305* X26175Y49394* X26091Y49546* X26057Y49709* Y49863* X26101Y50016* X26102Y50020* X26103Y50030* X26102Y50033* X26099Y50037* X26094Y50043* X26085Y50046* X26077Y50048* X26069Y50046* X26062Y50042* X26058Y50033* X26057Y50030* X26058Y50023* X26062Y50016* X26068Y50010* X26073Y50006* X26081Y50004* X26088Y50005* X26095Y50009* X26101Y50016* X26180Y50170* X26269Y50261* X26364Y50312* X26510Y50325* X26623Y50296* Y50294* X26626Y50293* X26730Y50248* X26808Y50123* X26814Y50117* X26821Y50115* X26831Y50116* X26839Y50120* X26846Y50126* X26849Y50134* X26852Y50142* X26848Y50150* X26767Y50280* X27284Y49718D02* X27663D01* X27671Y49717* X27677Y49712* X27681Y49706* X27682Y49699* X27681Y49690* X27677Y49684* X27671Y49679* X27663Y49678* X27284* X27276Y49679* X27270Y49684* X27266Y49690* X27265Y49699* X27266Y49706* X27269Y49712* X27275Y49717* X27284Y49718* X28242Y50326D02* X28808D01* X28908Y50252* X28990Y50141* Y49996* X28906Y49880* X28808Y49808* X28242* Y50326* X28946Y50284D02* X28942Y50286D01* X28940Y50287* Y50289* X28829Y50370* X28823Y50372* X28819Y50374* X28814Y50375* X28217* X28208Y50372* X28202Y50367* X28196Y50361* X28194Y50351* Y49217* X28196Y49208* X28201Y49202* X28209Y49198* X28217Y49197* X28227Y49198* X28235Y49202* X28240Y49208* X28242Y49217* Y49761* X28797* X28991Y49210* X28995Y49202* X29004Y49197* X29013Y49196* X29021Y49198* X29029Y49203* X29034Y49209* X29037Y49216* X29036Y49226* X28843Y49774* X28940Y49844* X28944Y49848* X28947Y49855* X29033Y49972* Y49974* X29034Y49976* X29036Y49977* Y49980* X29037Y49983* Y49986* Y50149* X29036Y50154* Y50156* X29034Y50159* X29033Y50160* Y50162* X28946Y50284* X30058Y49269D02* X30061Y49270D01* X30063Y49273* X30066Y49275* X30121Y49327* X30122Y49331* X30128Y49339* X30153Y49457* Y49465* Y50351* X30151Y50359* X30146Y50367* X30138Y50370* X30129Y50371* X30121Y50370* X30113Y50367* X30108Y50359* X30106Y50351* Y49467* X30082Y49356* X30036Y49313* X29916Y49254* X29809Y49242* X29655* X29547Y49254* X29428Y49313* X29382Y49356* X29358Y49467* Y50351* X29356Y50359* X29351Y50367* X29343Y50370* X29333Y50371* X29325Y50370* X29317Y50367* X29312Y50359* X29310Y50351* Y49465* X29308Y49462* X29310Y49457* X29334Y49339* X29336Y49333* X29340Y49331* X29344Y49327* X29399Y49275* X29401* X29408Y49269* X29531Y49210* X29533Y49209* X29534* X29538* X29647Y49194* X29652* X29809* X29814* X29925Y49209* X29927* X29930Y49210* X29932* X30058Y49269* X30473Y50358D02* X30469Y50363D01* X30465Y50368* X30460Y50369* X30454Y50370* X30446Y50371* X30436Y50369* X30432Y50365* X30428Y50362* X30427Y50357* X30426Y50351* Y50349* Y49217* X30428Y49209* X30433Y49202* X30441Y49198* X30449Y49197* X30459Y49198* X30467Y49202* X30472Y49209* X30474Y49217* Y50220* X30825Y49292* X30829Y49286* X30833Y49281* X30839Y49279* X30847* X30856* X30862Y49281* X30868Y49286* X30871Y49292* X31222Y50220* Y49217* X31224Y49209* X31229Y49202* X31237Y49198* X31245Y49197* X31254Y49198* X31262Y49202* X31267Y49209* X31269Y49217* Y50351* X31266Y50362* X31260Y50369* X31250Y50371* X31238Y50370* X31234Y50369* X31230Y50368* X31227Y50363* X31223Y50358* X31222Y50355* X30847Y49366* X30474Y50355* X30473Y50358* X31590Y49855D02* X32136D01* X32266Y49922* X32338Y50064* Y50149* X32267Y50251* X32141Y50326* X31590* Y49855* X32130Y49807D02* X31590D01* Y49242* X32148* X32266Y49317* X32338Y49465* Y49575* X32267Y49686* X32130Y49807* X32299Y49281D02* X32163Y49194D01* X31566* X31557Y49196* X31549Y49201* X31544Y49209* X31542Y49217* Y50351* X31544Y50359* X31549Y50367* X31557Y50372* X31566Y50375* X32156* X32298Y50289* X32385Y50163* Y50055* X32299Y49887* X32183Y49827* X32298Y49722* X32385Y49587* Y49455* X32299Y49281* X33080Y50279D02* X33329Y49567D01* X32828* X33080Y50279* X33103Y50358D02* X33100Y50363D01* X33095Y50368* X33089Y50370* X33081Y50371* X33074* X33068Y50369* X33062Y50365* X33057Y50358* X32659Y49227* X32658Y49217* X32660Y49209* X32666Y49203* X32675Y49200* X32683Y49197* X32692Y49198* X32699Y49203* X32704Y49211* X32813Y49519* X33348* X33455Y49211* X33460Y49203* X33468Y49198* X33478Y49197* X33485Y49200* X33492Y49203* X33498Y49209* X33501Y49217* X33499Y49227* X33103Y50358* X35514Y50326D02* X36080D01* X36180Y50252* X36262Y50141* Y49996* X36178Y49880* X36080Y49808* X35514* Y50326* X36218Y50284D02* X36214Y50286D01* X36212Y50287* Y50289* X36101Y50370* X36095Y50372* X36092Y50374* X36086Y50375* X35489* X35480Y50372* X35474Y50367* X35468Y50361* X35466Y50351* Y49217* X35468Y49208* X35473Y49202* X35481Y49198* X35489Y49197* X35499Y49198* X35507Y49202* X35512Y49208* X35514Y49217* Y49761* X36069* X36263Y49210* X36268Y49202* X36276Y49197* X36285Y49196* X36294Y49198* X36301Y49203* X36306Y49209* X36309Y49216* X36308Y49226* X36115Y49774* X36212Y49844* X36216Y49848* X36219Y49855* X36305Y49972* Y49974* X36306Y49976* X36308Y49977* Y49980* X36309Y49983* Y49986* Y50149* X36308Y50154* Y50156* X36306Y50159* X36305Y50160* Y50162* X36218Y50284* X36851Y49957D02* X36929Y49991D01* X37080* X37183Y49974* X37281Y49913* X37327Y49863* X37362Y49793* X37373Y49718* X36643* X36682Y49801* X36768Y49914* X36846Y49956* X36851Y49957* X37081Y49241D02* X37079D01* X36928* X36836Y49273* X36834* Y49274* X36747Y49328* X36669Y49430* X36630Y49540* Y49671* X37401* X37407* X37412Y49673* X37416Y49677* X37418Y49681* X37421Y49685* X37424Y49690* X37425Y49693* Y49698* X37410Y49801* X37406Y49809* X37400Y49815* X37391Y49817* X37382* X37374Y49815* X37367Y49811* X37362Y49804* Y49796* Y49793* X37365Y49788* X37371Y49781* X37378Y49778* X37386* X37394Y49781* X37401Y49785* X37406Y49793* X37408Y49797* X37410Y49801* X37408Y49806* X37406Y49809* X37366Y49889* X37365Y49894* X37315Y49947* X37312Y49952* X37308Y49956* X37205Y50019* X37203Y50020* X37199Y50022* X37196Y50023* X37086Y50038* X37084* X36924* X36922* X36918Y50037* X36916Y50036* X36831Y50000* X36826Y49996* X36741Y49954* X36736Y49951* X36733Y49948* X36642Y49827* X36640Y49826* X36638Y49823* X36583Y49705* X36582Y49697* Y49691* Y49536* Y49530* Y49528* X36583* X36627Y49410* X36628Y49405* X36630Y49404* X36713Y49294* X36714Y49291* X36718Y49289* X36808Y49234* X36816Y49231* X36819Y49230* X36916Y49195* X36918* X36922Y49194* X36924* X37084* X37086* X37197Y49207* X37202Y49208* X37204Y49209* X37208Y49211* X37338Y49276* X37342Y49281* X37420Y49360* X37425Y49367* X37424Y49376* X37420Y49384* X37416Y49390* X37407Y49394* X37400Y49398* X37392Y49397* X37385Y49393* X37310Y49317* X37189Y49256* X37081Y49241* X38535Y50002D02* X38138Y49207D01* X38134Y49201* X38129Y49197* X38123Y49196* X38117* X38111* X38105Y49197* X38101Y49201* X38096Y49207* X37698Y50002* X37697Y50010* X37699Y50018* X37704Y50025* X37711Y50031* X37719Y50033* X37727Y50035* X37734Y50031* X37740Y50024* X38117Y49269* X38495Y50024* X38501Y50031* X38508Y50035* X38516Y50033* X38525Y50031* X38531Y50025* X38536Y50018* X38538Y50010* X38535Y50002* X39062Y49201D02* X39067Y49198D01* X39070Y49197* X39073Y49195* X39075* X39106* X39107* X39109Y49197* X39113Y49198* X39119Y49201* X39149Y49231* X39152Y49236* X39153Y49240* X39154Y49244* Y49275* X39153Y49279* X39152Y49282* X39149Y49288* X39119Y49319* X39113Y49321* X39109Y49322* X39106* X39075* X39070* X39067Y49321* X39062Y49319* X39031Y49288* X39029Y49285* X39028Y49279* Y49275* Y49244* Y49240* X39029Y49235* X39031Y49231* X39062Y49201* X39063Y49266D02* X39083Y49287D01* X39097* X39118Y49266* Y49253* X39097Y49233* X39083* X39063Y49253* Y49266* X40547Y49704D02* Y49706D01* Y49863* X40573Y50143* X40606Y50206* X41202Y49321* X41103Y49254* X40998Y49242* X40995* X40845* X40844* X40738Y49254* X40621Y49332* X40567Y49423* X40547Y49704* X40566Y49429D02* X40560Y49435D01* X40550Y49437* X40542Y49436* X40534Y49431* X40528Y49425* X40522Y49419* X40521Y49411* X40522Y49407* X40523Y49403* X40582Y49301* X40584Y49299* X40590Y49293* X40717Y49213* X40721Y49209* X40726* X40835Y49194* X40837* X40842* X40998* X41000* X41003* X41114Y49209* X41118* X41124Y49213* X41248Y49293* X41252Y49296* X41255Y49304* X41310Y49403* X41311Y49406* X41313Y49411* X41342Y49698* Y49700* Y49703* Y49862* Y49866* Y49867* Y49870* X41318Y50152* X41317Y50156* X41314Y50162* X41254Y50265* X41251Y50269* X41244Y50273* X41125Y50355* X41122Y50357* X41114Y50359* X41003Y50375* X41001* X40842* X40837* X40836* X40726Y50359* X40724* X40723Y50358* X40718Y50356* X40592Y50273* X40587Y50270* X40582Y50264* X40529Y50161* X40527Y50157* X40525Y50152* X40498Y49870* Y49866* Y49703* Y49702* Y49698* X40522Y49413* X40524Y49404* X40529Y49398* X40537Y49396* X40545Y49394* X40555Y49396* X40562Y49400* X40567Y49407* X40569Y49417* X40567Y49423* X40566Y49429* X40844Y50326D02* X40845D01* X40995* X40998* X41105Y50313* X41213Y50237* X41271Y50141* X41294Y49863* Y49707* X41266Y49420* X41232Y49359* X40634Y50244* X40738Y50313* X40844Y50326* G54D17* X1654Y12815D03* Y13169D03* X1772Y7303D03* Y7657D03* X6693Y22264D03* Y22618D03* X6890Y25807D03* Y26161D03* X7087Y22264D03* Y22618D03* X7402Y25807D03* Y26161D03* X7480Y21476D03* Y21831D03* Y22264D03* Y22618D03* X7874Y21476D03* Y21831D03* Y22264D03* Y22618D03* X8071Y18524D03* Y18878D03* X8465Y18524D03* Y18878D03* X8858Y12224D03* Y12579D03* Y18524D03* Y18878D03* X9252Y4941D03* Y5295D03* Y18524D03* Y18878D03* X10039Y3760D03* Y4114D03* X10433Y7303D03* Y7657D03* X10512Y12224D03* Y12579D03* X10827Y4941D03* Y5295D03* X11299Y9862D03* Y10217D03* X11417Y2579D03* Y2933D03* Y3366D03* Y3720D03* X11614Y4547D03* Y4902D03* Y12224D03* Y12579D03* X12402Y6909D03* Y7264D03* X12598Y20492D03* Y20846D03* Y21280D03* Y21634D03* Y22067D03* Y22421D03* X12795Y2972D03* Y3327D03* X12992Y19705D03* Y20059D03* Y20492D03* Y20846D03* Y21280D03* Y21634D03* Y22067D03* Y22421D03* X13386Y22067D03* Y22421D03* X13780Y22067D03* Y22421D03* X15354Y17933D03* Y18287D03* X15551Y11831D03* Y12185D03* X16024Y11831D03* Y12185D03* X17323Y11240D03* Y11594D03* X17362Y24823D03* Y25177D03* X17717Y11240D03* Y11594D03* Y11831D03* Y12185D03* X17756Y24823D03* Y25177D03* X18307Y19705D03* Y20059D03* X18504Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X18622Y12224D03* Y12579D03* X18898Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X19291Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X19685Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X20079Y11437D03* Y11791D03* Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X20472Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X20512Y21673D03* Y22028D03* X20669Y5138D03* Y5492D03* X20866Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X21063Y24429D03* Y24783D03* X21260Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X21339Y5728D03* Y6083D03* Y14390D03* Y14744D03* Y15374D03* Y15728D03* X21417Y4547D03* Y4902D03* X21457Y24429D03* Y24783D03* X21654Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X21850Y24429D03* Y24783D03* X22047Y4547D03* Y4902D03* Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X22402Y4547D03* Y4902D03* X22441Y11634D03* Y11988D03* Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X22638Y5965D03* Y6319D03* X22835Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X23031Y15965D03* Y16319D03* X23071Y18327D03* Y18681D03* Y19035D03* Y19390D03* X23228Y26043D03* Y26398D03* Y28720D03* Y29075D03* Y31909D03* Y32264D03* Y34626D03* Y34980D03* X23307Y3957D03* Y4311D03* Y4626D03* Y4980D03* Y5335D03* Y5689D03* Y6122D03* Y6476D03* X23504Y27776D03* Y28130D03* X23622Y26043D03* Y26398D03* Y31909D03* Y32264D03* X23819Y19035D03* Y19390D03* X23937Y10846D03* Y11201D03* X24331Y5138D03* Y5492D03* X24409Y3169D03* Y3524D03* X25039Y13602D03* Y13957D03* X25197Y20886D03* Y21240D03* Y21870D03* Y22224D03* Y22657D03* Y23012D03* X25591Y16280D03* Y16634D03* X26299Y5335D03* Y5689D03* Y6122D03* Y6476D03* X26772Y1634D03* Y1988D03* X26969Y12618D03* Y12972D03* X27953Y25807D03* Y26161D03* X28268Y14587D03* Y14941D03* X28622Y1634D03* Y1988D03* X30709Y2382D03* Y2736D03* X31181Y11201D03* Y11555D03* Y14783D03* Y15138D03* X32283Y7500D03* Y7854D03* X33681Y25728D03* Y25984D03* Y26240D03* X34252Y18524D03* Y18878D03* X34429Y25728D03* Y25984D03* Y26240D03* X34449Y6122D03* Y6476D03* X34646Y13799D03* Y14154D03* Y22461D03* Y22815D03* X34843Y8484D03* Y8839D03* X35433Y16949D03* Y17303D03* X36417Y21161D03* Y21516D03* X36535Y16949D03* Y17303D03* Y18130D03* Y18484D03* X36693Y8484D03* Y8839D03* X37795Y13996D03* Y14350D03* X37992Y8681D03* Y9035D03* Y9469D03* Y9823D03* X38189Y13996D03* Y14350D03* X38386Y8681D03* Y9035D03* Y9469D03* Y9823D03* X38780Y7106D03* Y7461D03* Y8681D03* Y9035D03* Y9469D03* Y9823D03* X39370Y9035D03* Y9390D03* X39724Y4390D03* Y4744D03* X39764Y18720D03* Y19075D03* Y28169D03* Y28524D03* X39961Y9272D03* Y9626D03* Y10650D03* Y11004D03* X40374Y1555D03* Y1811D03* Y2067D03* X40748Y18720D03* Y19075D03* X41122Y1555D03* Y1811D03* Y2067D03* X41339Y2382D03* Y2736D03* Y3169D03* Y3524D03* Y8484D03* Y8839D03* Y9193D03* Y9547D03* Y9941D03* Y10295D03* Y10650D03* Y11004D03* X42913Y5531D03* Y5886D03* Y16358D03* Y16713D03* X44488Y10059D03* Y10413D03* X44685Y9075D03* Y9429D03* Y37224D03* Y37579D03* X44882Y6122D03* Y6476D03* X45079Y9075D03* Y9429D03* Y10059D03* Y10413D03* X45276Y15768D03* Y16122D03* X45669Y15768D03* Y16122D03* X46457Y15571D03* Y15925D03* X46850Y15571D03* Y15925D03* X48031Y15571D03* Y15925D03* X48425Y15571D03* Y15925D03* X49213Y15571D03* Y15925D03* X49606Y15571D03* Y15925D03* X50197Y4744D03* Y5098D03* Y5925D03* Y6280D03* X50591Y4744D03* Y5098D03* Y5925D03* Y6280D03* X51339Y26713D03* Y27067D03* X52283Y37224D03* Y37579D03* X52559Y34469D03* Y34823D03* X52768Y6906D03* Y7260D03* X52795Y3839D03* Y4193D03* X52953Y34469D03* Y34823D03* X53386Y11240D03* Y11594D03* X54134Y7776D03* Y8130D03* X54409Y11555D03* Y11909D03* X54488Y12421D03* Y12776D03* X54528Y7776D03* Y8130D03* Y13406D03* Y13760D03* X55617Y11542D03* Y11896D03* X55690Y7745D03* Y8099D03* X55709Y28169D03* Y28524D03* X56037Y11547D03* Y11902D03* X56074Y7750D03* Y8104D03* X56496Y36083D03* Y36437D03* X57087Y14193D03* Y14547D03* G54D18* X5039Y18189D03* Y19646D03* Y21732D03* Y23110D03* X5591Y18189D03* Y19646D03* Y21732D03* Y23110D03* X5630Y31102D03* X6181D03* X8780Y24606D03* X9331D03* X12913Y11220D03* X13465D03* X13701Y21457D03* X13898Y5512D03* X14252Y21457D03* X14449Y5512D03* X15866Y15354D03* X16417D03* X19606Y6772D03* X20157D03* X22362Y7992D03* X22913D03* X24921Y3150D03* X25472D03* X28071Y7677D03* X28622D03* X28858Y35827D03* X29409D03* X30709Y1693D03* X31260D03* X31654Y10039D03* X31811Y12402D03* X32205Y10039D03* X32362Y12402D03* X36339Y28937D03* X36890D03* X38307Y18307D03* X38858D03* X40079Y2756D03* X40630D03* X42835Y14587D03* X43386D03* X46378Y4724D03* Y5315D03* X46929Y4724D03* Y5315D03* X48740Y35630D03* X49291D03* X55709Y24685D03* X56260D03* G54D19* X6890Y11811D03* Y12598D03* X12205Y9449D03* Y10236D03* Y11614D03* Y12402D03* X17717Y9843D03* Y10630D03* X23819Y17126D03* Y17913D03* X25787Y20276D03* Y21063D03* Y22638D03* Y23425D03* X31063Y9449D03* Y10236D03* X31102Y12205D03* Y12992D03* X44094Y30512D03* Y31299D03* X44488Y20669D03* Y21457D03* Y25787D03* Y26575D03* X44882Y30512D03* Y31299D03* X45276Y20669D03* Y21457D03* Y23425D03* Y24213D03* Y25787D03* Y26575D03* Y37008D03* Y37795D03* X45669Y30512D03* Y31299D03* X45984Y37008D03* Y37795D03* X46063Y20669D03* Y21457D03* Y25787D03* Y26575D03* X46457Y30512D03* Y31299D03* X46850Y20669D03* Y21457D03* Y23425D03* Y24213D03* Y25787D03* Y26575D03* X47244Y30512D03* Y31299D03* X47638Y20669D03* Y21457D03* Y25787D03* Y26575D03* X48031Y30512D03* Y31299D03* X48425Y20669D03* Y21457D03* Y23425D03* Y24213D03* Y25787D03* Y26575D03* X48819Y30512D03* Y31299D03* X48858Y37008D03* Y37795D03* X49213Y20669D03* Y21457D03* Y25787D03* Y26575D03* X49567Y37008D03* Y37795D03* X49606Y30512D03* Y31299D03* X50000Y20669D03* Y21457D03* Y23425D03* Y24213D03* Y25787D03* Y26575D03* X50394Y30512D03* Y31299D03* X50787Y20669D03* Y21457D03* Y25787D03* Y26575D03* X51181Y30512D03* Y31299D03* X52835Y37008D03* Y37795D03* X53543Y37008D03* Y37795D03* G54D20* X41161Y3839D03* Y4035D03* Y4232D03* Y4429D03* X41516Y3839D03* Y4035D03* Y4232D03* Y4429D03* X44508Y6988D03* Y7185D03* Y7382D03* Y7579D03* X44862Y6988D03* Y7185D03* Y7382D03* Y7579D03* X56909Y2854D03* Y3051D03* Y3248D03* Y3445D03* Y5610D03* Y5807D03* Y6004D03* Y6201D03* Y6594D03* Y6791D03* Y6988D03* Y7185D03* Y7657D03* Y7854D03* Y8051D03* Y8248D03* Y9114D03* Y9311D03* Y9508D03* Y9705D03* Y10571D03* Y10768D03* Y10965D03* Y11161D03* Y12933D03* Y13130D03* Y13327D03* Y13524D03* Y15453D03* Y15650D03* Y15846D03* Y16043D03* Y16909D03* Y17106D03* Y17303D03* Y17500D03* Y18878D03* Y19075D03* Y19272D03* Y19469D03* Y20335D03* Y20531D03* Y20728D03* Y20925D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y23248D03* Y23445D03* Y23642D03* Y23839D03* Y25217D03* Y25413D03* Y25610D03* Y25807D03* Y26673D03* Y26870D03* Y27067D03* Y27264D03* Y28130D03* Y28327D03* Y28524D03* Y28720D03* Y29587D03* Y29783D03* Y29980D03* Y30177D03* Y31043D03* Y31240D03* Y31437D03* Y31634D03* Y32224D03* Y32421D03* Y32618D03* Y32815D03* Y35413D03* Y35610D03* Y35807D03* Y36004D03* X56988Y33957D03* Y34154D03* Y34350D03* Y34547D03* X57264Y2854D03* Y3051D03* Y3248D03* Y3445D03* Y5610D03* Y5807D03* Y6004D03* Y6201D03* Y6594D03* Y6791D03* Y6988D03* Y7185D03* Y7657D03* Y7854D03* Y8051D03* Y8248D03* Y9114D03* Y9311D03* Y9508D03* Y9705D03* Y10571D03* Y10768D03* Y10965D03* Y11161D03* Y12933D03* Y13130D03* Y13327D03* Y13524D03* Y15453D03* Y15650D03* Y15846D03* Y16043D03* Y16909D03* Y17106D03* Y17303D03* Y17500D03* Y18878D03* Y19075D03* Y19272D03* Y19469D03* Y20335D03* Y20531D03* Y20728D03* Y20925D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y23248D03* Y23445D03* Y23642D03* Y23839D03* Y25217D03* Y25413D03* Y25610D03* Y25807D03* Y26673D03* Y26870D03* Y27067D03* Y27264D03* Y28130D03* Y28327D03* Y28524D03* Y28720D03* Y29587D03* Y29783D03* Y29980D03* Y30177D03* Y31043D03* Y31240D03* Y31437D03* Y31634D03* Y32224D03* Y32421D03* Y32618D03* Y32815D03* Y35413D03* Y35610D03* Y35807D03* Y36004D03* X57343Y33957D03* Y34154D03* Y34350D03* Y34547D03* G54D21* X5299Y1730D03* Y2230D03* Y2730D03* Y3230D03* X7299Y1730D03* Y2230D03* Y2730D03* Y3230D03* X38567Y36061D03* Y36561D03* Y37061D03* Y37561D03* X40567Y36061D03* Y36561D03* Y37061D03* Y37561D03* X41913Y36061D03* Y36561D03* Y37061D03* Y37561D03* X43913Y36061D03* Y36561D03* Y37061D03* Y37561D03* G54D22* X-335Y30624D03* Y31225D03* Y31826D03* Y32428D03* Y33029D03* Y33630D03* Y34231D03* X256Y30323D03* Y31526D03* Y32127D03* Y32728D03* Y33329D03* Y33930D03* Y34531D03* X33583Y27559D03* Y33465D03* G54D23* X-230Y4816D03* Y10406D03* Y15656D03* X470Y4816D03* Y10406D03* Y15656D03* X1170Y10066D03* X1870D03* X4480Y5236D03* Y6236D03* Y7236D03* Y8236D03* Y9236D03* Y10732D03* Y11736D03* Y12736D03* Y13736D03* Y14736D03* X5480Y5736D03* Y6736D03* Y7736D03* Y8736D03* Y9736D03* Y11236D03* Y12236D03* Y13236D03* Y14236D03* X7283Y27559D03* Y33465D03* G54D24* X4762Y25811D03* Y27811D03* X5262Y25811D03* Y27811D03* X5762Y25811D03* Y27811D03* X6262Y25811D03* Y27811D03* X32321Y15575D03* Y17575D03* X32821Y15575D03* Y17575D03* X33321Y15575D03* Y17575D03* X33821Y15575D03* Y17575D03* G54D25* X18839Y19134D03* Y20630D03* X19744Y19134D03* Y20630D03* G54D26* X33100Y10659D03* Y12943D03* X33356Y10659D03* Y12943D03* X33612Y10659D03* Y12943D03* X33868Y10659D03* Y12943D03* X34124Y10659D03* Y12943D03* X34380Y10659D03* Y12943D03* X34636Y10659D03* Y12943D03* X34892Y10659D03* Y12943D03* X35148Y10659D03* Y12943D03* X35404Y10659D03* Y12943D03* X54222Y8701D03* Y10984D03* X54478Y8701D03* Y10984D03* X54734D03* Y8701D03* X54990D03* Y10984D03* X55246Y8701D03* Y10984D03* X55502Y8701D03* Y10984D03* X55758Y8701D03* Y10984D03* X56014D03* Y8701D03* G54D27* X34252Y11811D03* G54D28* X4921Y36614D03* X6496D03* X14665Y10827D03* X16535Y18110D03* G54D29* X4921Y37614D03* X6496D03* X6594Y10827D03* G54D30* X11051Y37205D03* D03* X20051D03* D03* X25224D03* D03* X34224D03* D03* G54D31* X10801Y36467D03* Y37943D03* X11301Y36467D03* Y37943D03* X11801Y36467D03* Y37943D03* X12301Y36467D03* Y37943D03* X12801Y36467D03* Y37943D03* X13301Y36467D03* Y37943D03* X13801Y36467D03* Y37943D03* X14301Y36467D03* Y37943D03* X14801Y36467D03* Y37943D03* X15301Y36467D03* Y37943D03* X15801Y36467D03* Y37943D03* X16301Y36467D03* Y37943D03* X16801Y36467D03* Y37943D03* X17301Y36465D03* Y37945D03* X17801Y36465D03* Y37945D03* X18301Y36465D03* Y37945D03* X18801Y36465D03* Y37945D03* X19301Y36465D03* Y37945D03* X19801Y36465D03* Y37945D03* X20301Y36465D03* Y37945D03* X24974Y36467D03* Y37943D03* X25474Y36467D03* Y37943D03* X25974Y36467D03* Y37943D03* X26474Y36467D03* Y37943D03* X26974Y36467D03* Y37943D03* X27474Y36467D03* Y37943D03* X27974Y36467D03* Y37943D03* X28474Y36467D03* Y37943D03* X28974Y36467D03* Y37943D03* X29474Y36467D03* Y37943D03* X29974Y36467D03* Y37943D03* X30474Y36467D03* Y37943D03* X30974Y36467D03* Y37943D03* X31474Y36465D03* Y37945D03* X31974Y36465D03* Y37945D03* X32474Y36465D03* Y37945D03* X32974Y36465D03* Y37945D03* X33474Y36465D03* Y37945D03* X33974Y36465D03* Y37945D03* X34474Y36465D03* Y37945D03* G54D32* X55256Y23720D03* Y23917D03* Y24114D03* Y24311D03* Y24508D03* Y24705D03* Y24902D03* Y25098D03* Y25295D03* Y25492D03* Y25689D03* Y25886D03* Y26083D03* Y26280D03* Y26476D03* Y26673D03* Y26870D03* Y27067D03* Y27264D03* Y27461D03* Y27657D03* Y27854D03* Y28051D03* Y28248D03* Y28445D03* Y28642D03* Y28839D03* Y29035D03* G54D33* X14843Y12795D03* Y14764D03* X15098Y12795D03* Y14764D03* X15354Y12795D03* Y14764D03* X15610Y12795D03* Y14764D03* X15866Y12795D03* Y14764D03* X34390Y17520D03* X34902Y16732D03* Y17520D03* G54D34* X34449Y16732D03* X45707Y32195D03* X46207D03* X46691Y35541D03* X46707Y32195D03* X47191Y35541D03* X47207Y32195D03* X47691Y35541D03* X48191D03* X50234D03* X50431Y32195D03* X50734Y35541D03* X50931Y32195D03* X51234Y35541D03* X51431Y32195D03* X51734Y35541D03* X51931Y32195D03* G54D35* X21063Y20177D03* Y23130D03* X35039Y6594D03* Y7579D03* X37008Y21161D03* Y22146D03* X53543Y33445D03* Y35610D03* G54D36* X15945Y17815D03* Y18012D03* Y18209D03* Y18406D03* X17126Y17815D03* Y18012D03* Y18209D03* Y18406D03* X21063Y20374D03* Y20571D03* Y20768D03* Y20965D03* Y21161D03* Y21358D03* Y21555D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y22539D03* Y22736D03* Y22933D03* X24606Y20374D03* Y20571D03* Y20768D03* Y20965D03* Y21161D03* Y21358D03* Y21555D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y22539D03* Y22736D03* Y22933D03* X35039Y6791D03* Y6988D03* Y7185D03* Y7382D03* X36614Y6791D03* Y6988D03* Y7185D03* Y7382D03* X37008Y21358D03* Y21555D03* Y21752D03* Y21949D03* X38583Y21358D03* Y21555D03* Y21752D03* Y21949D03* X53543Y33642D03* Y33839D03* Y34035D03* Y34232D03* Y34429D03* Y34626D03* Y34823D03* Y35020D03* Y35217D03* Y35413D03* X56299Y33642D03* Y33839D03* Y34035D03* Y34232D03* Y34429D03* Y34626D03* Y34823D03* Y35020D03* Y35217D03* Y35413D03* G54D37* X21358Y23425D03* X24311D03* X35335Y7874D03* X36319D03* X37303Y22441D03* X38287D03* X53839Y35906D03* X56004D03* G54D38* X21555Y19882D03* Y23425D03* X21752Y19882D03* Y23425D03* X21949Y19882D03* Y23425D03* X22146Y19882D03* Y23425D03* X22343Y19882D03* Y23425D03* X22539Y19882D03* Y23425D03* X22736Y19882D03* Y23425D03* X22933Y19882D03* Y23425D03* X23130Y19882D03* Y23425D03* X23327Y19882D03* Y23425D03* X23524Y19882D03* Y23425D03* X23720Y19882D03* Y23425D03* X23917Y19882D03* Y23425D03* X24114Y19882D03* Y23425D03* X35531Y6299D03* Y7874D03* X35728Y6299D03* Y7874D03* X35925Y6299D03* Y7874D03* X36122Y6299D03* Y7874D03* X37500Y20866D03* Y22441D03* X37697Y20866D03* Y22441D03* X37894Y20866D03* Y22441D03* X38091Y20866D03* Y22441D03* X54035Y33150D03* Y35906D03* X54232Y33150D03* Y35906D03* X54429Y33150D03* Y35906D03* X54626Y33150D03* Y35906D03* X54823Y33150D03* Y35906D03* X55020Y33150D03* Y35906D03* X55217Y33150D03* Y35906D03* X55413Y33150D03* Y35906D03* X55610Y33150D03* Y35906D03* X55807Y33150D03* Y35906D03* G54D39* X24606Y20177D03* Y23130D03* X36614Y6594D03* Y7579D03* X38583Y21161D03* Y22146D03* X56299Y33445D03* Y35610D03* G54D40* X21358Y19882D03* X24311D03* X35335Y6299D03* X36319D03* X37303Y20866D03* X38287D03* X53839Y33150D03* X56004D03* G54D41* X35827Y7087D03* X37795Y21654D03* G54D42* X21299Y18622D03* X22402D03* X25827Y18898D03* X26929D03* X36260Y16142D03* X37362D03* G54D43* X22224Y6870D03* Y7224D03* X22421Y6870D03* Y7224D03* X22618Y6870D03* Y7224D03* X22815Y6870D03* Y7224D03* X26083Y35256D03* Y35610D03* X26280Y35256D03* Y35610D03* X26476Y35256D03* Y35610D03* X26673Y35256D03* Y35610D03* X41240Y34075D03* Y34429D03* X41437Y34075D03* Y34429D03* X41634Y34075D03* Y34429D03* X41831Y34075D03* Y34429D03* G54D44* X3937Y2953D03* X62402Y1575D03* Y21260D03* G54D45* X3937Y1969D03* Y2461D03* X58465Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y10236D03* Y11024D03* Y11811D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X59252Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X60039Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X60827Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X61614Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X62402Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* G54D46* X61614Y11024D03* G54D47* X15827Y21280D03* Y22028D03* X16850Y21280D03* Y21654D03* Y22028D03* X29213Y1988D03* Y2736D03* X30236Y1988D03* Y2362D03* Y2736D03* G54D48* X23071Y3150D03* X23780D03* X24331Y5945D03* Y6654D03* X25315Y6339D03* Y7047D03* G54D49* X10295Y8661D03* Y9055D03* X10571Y8661D03* Y9055D03* X14429Y5039D03* X14577Y19154D03* Y19823D03* X14705Y5039D03* X14833Y19154D03* Y19823D03* X15089Y19154D03* Y19823D03* X15344Y19154D03* Y19823D03* X49272Y10827D03* X49547D03* G54D50* X866Y6870D03* Y8091D03* Y12382D03* Y13602D03* Y20059D03* Y21280D03* G54D51* X1043Y7480D03* Y12992D03* Y20669D03* G54D52* X46457Y33268D03* X47441Y36614D03* X50984D03* X51181Y33268D03* G54D53* X4921Y33110D03* Y34213D03* X16732Y10669D03* Y11772D03* X23031Y13819D03* Y14921D03* G54D54* X9154Y19587D03* Y22933D03* X9350Y19587D03* Y22933D03* X9547Y19587D03* Y22933D03* X9744Y19587D03* Y22933D03* X9941Y19587D03* Y22933D03* X10138Y19587D03* Y22933D03* X10335Y19587D03* Y22933D03* X10531Y19587D03* Y22933D03* X10728Y19587D03* Y22933D03* X10925Y19587D03* Y22933D03* X11122Y19587D03* Y22933D03* X11319Y19587D03* Y22933D03* X28346Y18622D03* Y24685D03* X28543Y18622D03* Y24685D03* X28740Y18622D03* Y24685D03* X28937Y18622D03* Y24685D03* X29134Y18622D03* Y24685D03* X29331Y18622D03* Y24685D03* X29528Y18622D03* Y24685D03* X29724Y18622D03* Y24685D03* X29921Y18622D03* Y24685D03* X30118Y18622D03* Y24685D03* X30315Y18622D03* Y24685D03* X30512Y18622D03* Y24685D03* X30709Y18622D03* Y24685D03* X30906Y18622D03* Y24685D03* X31102Y18622D03* Y24685D03* X31299Y18622D03* Y24685D03* X31496Y18622D03* Y24685D03* X31693Y18622D03* Y24685D03* X31890Y18622D03* Y24685D03* X32087Y18622D03* Y24685D03* X32283Y18622D03* Y24685D03* X32480Y18622D03* Y24685D03* X32677Y18622D03* Y24685D03* X32874Y18622D03* Y24685D03* X33071Y18622D03* Y24685D03* X36713Y29823D03* Y33169D03* X36909Y29823D03* Y33169D03* X37106Y29823D03* Y33169D03* X37303Y29823D03* Y33169D03* X37500Y29823D03* Y33169D03* X37697Y29823D03* Y33169D03* X37894Y29823D03* Y33169D03* X38091Y29823D03* Y33169D03* X38287Y29823D03* Y33169D03* X38484Y29823D03* Y33169D03* X38681Y29823D03* Y33169D03* X38878Y29823D03* Y33169D03* G54D55* X8563Y20177D03* Y20374D03* Y20571D03* Y20768D03* Y20965D03* Y21161D03* Y21358D03* Y21555D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* X11909Y20177D03* Y20374D03* Y20571D03* Y20768D03* Y20965D03* Y21161D03* Y21358D03* Y21555D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* X27677Y19291D03* Y19488D03* Y19685D03* Y19882D03* Y20079D03* Y20276D03* Y20472D03* Y20669D03* Y20866D03* Y21063D03* Y21260D03* Y21457D03* Y21654D03* Y21850D03* Y22047D03* Y22244D03* Y22441D03* Y22638D03* Y22835D03* Y23031D03* Y23228D03* Y23425D03* Y23622D03* Y23819D03* Y24016D03* X33740Y19291D03* Y19488D03* Y19685D03* Y19882D03* Y20079D03* Y20276D03* Y20472D03* Y20669D03* Y20866D03* Y21063D03* Y21260D03* Y21457D03* Y21654D03* Y21850D03* Y22047D03* Y22244D03* Y22441D03* Y22638D03* Y22835D03* Y23031D03* Y23228D03* Y23425D03* Y23622D03* Y23819D03* Y24016D03* X36122Y30413D03* Y30610D03* Y30807D03* Y31004D03* Y31201D03* Y31398D03* Y31594D03* Y31791D03* Y31988D03* Y32185D03* Y32382D03* Y32579D03* X39469Y30413D03* Y30610D03* Y30807D03* Y31004D03* Y31201D03* Y31398D03* Y31594D03* Y31791D03* Y31988D03* Y32185D03* Y32382D03* Y32579D03* G54D56* X38976Y3701D03* Y5354D03* G54D57* X4951Y18740D03* Y19055D03* X5148Y22283D03* Y22598D03* X5679Y18740D03* Y19055D03* X5876Y22283D03* Y22598D03* G54D58* X4823Y28740D03* Y30118D03* Y31693D03* G54D59* X14370Y13268D03* Y13524D03* Y13780D03* Y14035D03* Y14291D03* X16339Y13268D03* Y13524D03* Y13780D03* Y14035D03* Y14291D03* X34646Y20217D03* Y20728D03* X35433D03* G54D60* Y20276D03* G54D61* X10236Y689D03* X56693D03* G54D62* X28740D03* G54D63* X6732Y13543D03* Y13701D03* Y13858D03* Y14016D03* Y14173D03* Y14331D03* Y14488D03* Y14646D03* Y14803D03* Y14961D03* Y15118D03* Y15276D03* Y15433D03* Y15591D03* Y15748D03* Y15906D03* Y16063D03* Y16220D03* Y16378D03* Y16535D03* Y16693D03* Y16850D03* Y17008D03* Y17165D03* X9016Y13543D03* Y13701D03* Y13858D03* Y14016D03* Y14173D03* Y14331D03* Y14488D03* Y14646D03* Y14803D03* Y14961D03* Y15118D03* Y15276D03* Y15433D03* Y15591D03* Y15748D03* Y15906D03* Y16063D03* Y16220D03* Y16378D03* Y16535D03* Y16693D03* Y16850D03* Y17008D03* Y17165D03* G54D64* X15267Y24025D03* Y25975D03* X15517Y24025D03* Y25975D03* X15767Y24025D03* Y25975D03* X16017Y24025D03* Y25975D03* X16267Y24025D03* Y25975D03* X16517Y24025D03* Y25975D03* X16767Y24025D03* Y25975D03* X17017Y24025D03* Y25975D03* G54D65* X17815Y23543D03* X18189Y24488D03* X18563Y23543D03* G54D66* X54921Y34528D03* G54D67* X256Y30924D03* G54D68* X453Y27657D03* Y37500D03* G54D69* Y29429D03* Y35728D03* X1299Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* Y36033D03* X2049Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* Y36033D03* X2799Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* G54D70* X5512Y30039D03* Y30591D03* X6102Y30039D03* Y30591D03* X6693Y21181D03* Y21732D03* X7480Y18228D03* Y18780D03* X12008Y23740D03* Y24291D03* X13780Y19213D03* Y19764D03* X14213Y21969D03* Y22520D03* X14764Y21575D03* Y22126D03* X15354Y21181D03* Y21732D03* X16339Y34961D03* Y35512D03* X16929Y34961D03* Y35512D03* X17520Y34961D03* Y35512D03* X19882Y21772D03* Y22323D03* X20472Y22795D03* Y23346D03* X31181Y13701D03* Y14252D03* X32520Y8583D03* Y9134D03* X36220Y8583D03* Y9134D03* X38189Y34173D03* Y34724D03* X38780Y34173D03* Y34724D03* X40354Y27953D03* Y28504D03* X40551Y9173D03* Y9724D03* Y10551D03* Y11102D03* Y23740D03* Y24291D03* Y24921D03* Y25472D03* X41339Y5630D03* Y6181D03* Y6732D03* Y7283D03* X43898Y15472D03* Y16024D03* X45669Y4843D03* Y5394D03* X53937Y3268D03* Y3819D03* Y4252D03* Y4803D03* G54D71* X1476Y20669D03* Y21260D03* X1831Y20669D03* Y21260D03* X5335Y3937D03* Y28740D03* X5689Y3937D03* Y28740D03* X6516Y4134D03* Y4724D03* Y6693D03* Y7874D03* Y23425D03* Y23819D03* X6870Y4134D03* Y4724D03* Y6693D03* Y7874D03* Y23425D03* Y23819D03* X7303Y20276D03* X7657D03* X7894Y9055D03* X8091Y25787D03* Y26181D03* Y31693D03* Y32087D03* X8248Y9055D03* X8287Y4724D03* X8445Y25787D03* Y26181D03* Y31693D03* Y32087D03* X8484Y5709D03* X8642Y4724D03* X8839Y5709D03* X9272Y8071D03* Y11024D03* Y11811D03* Y12598D03* X9626Y8071D03* Y11024D03* Y11811D03* Y12598D03* X9665Y23622D03* Y24016D03* X9862Y18504D03* Y18898D03* X10020Y23622D03* Y24016D03* X10217Y18504D03* Y18898D03* X10256Y8071D03* X10453Y9764D03* X10610Y8071D03* X10807Y9764D03* X10846Y1969D03* Y23622D03* Y24016D03* Y35236D03* X11043Y8661D03* Y9055D03* X11201Y1969D03* Y23622D03* Y24016D03* Y35236D03* X11398Y8661D03* Y9055D03* X12028Y4528D03* X12224Y15551D03* Y15945D03* Y19094D03* Y19488D03* X12382Y4528D03* X12421Y6102D03* X12579Y15551D03* Y15945D03* Y19094D03* Y19488D03* X12776Y6102D03* X13012Y11811D03* Y12205D03* Y12598D03* Y12992D03* X13366Y11811D03* Y12205D03* Y12598D03* Y12992D03* X13799Y5039D03* X14154D03* X15768Y2953D03* Y3346D03* X16122Y2953D03* Y3346D03* X16161Y5709D03* Y6102D03* Y6693D03* Y7087D03* Y7677D03* Y8071D03* Y8661D03* Y9055D03* X16516Y5709D03* Y6102D03* Y6693D03* Y7087D03* Y7677D03* Y8071D03* Y8661D03* Y9055D03* X16752Y22638D03* X17106D03* X17146Y2559D03* Y2953D03* X17500Y2559D03* Y2953D03* X17736Y20472D03* Y20866D03* X18091Y20472D03* Y20866D03* X18327Y13189D03* X18445Y25079D03* X18524Y25669D03* Y30118D03* Y30906D03* Y31535D03* X18681Y13189D03* X18720Y27283D03* Y28150D03* Y29449D03* Y33465D03* Y35354D03* Y35945D03* X18799Y25079D03* X18878Y25669D03* Y30118D03* Y30906D03* Y31535D03* X18917Y21260D03* Y21654D03* Y22047D03* Y22441D03* X19075Y27283D03* Y28150D03* Y29449D03* Y33465D03* Y35354D03* Y35945D03* X19272Y21260D03* Y21654D03* Y22047D03* Y22441D03* X19311Y25669D03* Y31535D03* X19508Y13701D03* Y22835D03* Y23228D03* Y23622D03* Y29449D03* Y35354D03* X19665Y25669D03* Y31535D03* X19705Y33465D03* X19862Y13701D03* Y22835D03* Y23228D03* Y23622D03* Y29449D03* Y35354D03* X20059Y33465D03* X20098Y25669D03* Y31535D03* X20295Y23819D03* Y24291D03* Y24685D03* Y29449D03* Y35354D03* X20453Y25669D03* Y31535D03* X20650Y23819D03* Y24291D03* Y24685D03* Y29449D03* Y35354D03* X20689Y27362D03* X20886Y25669D03* Y31535D03* Y33465D03* X21043Y27362D03* X21083Y29449D03* Y35354D03* X21240Y25669D03* Y31535D03* Y33465D03* X21437Y29449D03* Y35354D03* X21476Y24016D03* X21673Y25669D03* Y31535D03* X21831Y24016D03* X21870Y29449D03* Y35354D03* X22028Y25669D03* Y31535D03* X22224Y27362D03* Y29449D03* Y35354D03* X22264Y33465D03* X22461Y10039D03* Y25669D03* Y31535D03* X22579Y27362D03* X22618Y33465D03* X22657Y1496D03* Y1890D03* Y2362D03* Y2756D03* Y29449D03* Y35354D03* X22736Y12598D03* X22815Y10039D03* Y25669D03* Y31535D03* X23012Y1496D03* Y1890D03* Y2362D03* Y2756D03* Y29449D03* Y35354D03* X23091Y12598D03* X23248Y24016D03* Y25197D03* Y25669D03* Y30118D03* Y30906D03* Y31535D03* Y33465D03* X23445Y7874D03* Y35354D03* X23524Y10433D03* X23602Y24016D03* Y25197D03* Y25669D03* Y30118D03* Y30906D03* Y31535D03* Y33465D03* X23642Y16535D03* X23799Y7874D03* Y35354D03* X23878Y10433D03* X23996Y16535D03* X24035Y3937D03* Y4331D03* X24232Y1575D03* Y1969D03* Y2756D03* Y7165D03* X24390Y3937D03* Y4331D03* X24429Y19094D03* Y24606D03* X24587Y1575D03* Y1969D03* Y2756D03* Y7165D03* X24626Y10433D03* X24783Y19094D03* Y24606D03* X24823Y16535D03* X24980Y10433D03* X25020Y3937D03* X25177Y16535D03* X25295Y4646D03* Y5512D03* Y5906D03* X25374Y3937D03* X25610Y11339D03* X25650Y4646D03* Y5512D03* Y5906D03* X25728Y10433D03* X25807Y1772D03* Y2165D03* Y3937D03* X25965Y11339D03* X26083Y10433D03* X26161Y1772D03* Y2165D03* Y3937D03* X26594Y19488D03* X26949D03* X27776Y8661D03* Y35827D03* X28130Y8661D03* Y35827D03* X29547Y13701D03* X29862Y12717D03* X29902Y13701D03* X30217Y12717D03* X30335Y10669D03* X30689D03* X31516Y7795D03* X31870D03* X31909Y10709D03* X32106Y25787D03* Y26181D03* Y31693D03* Y32087D03* X32264Y10709D03* X32421Y11732D03* X32461Y25787D03* Y26181D03* Y31693D03* Y32087D03* X32500Y28937D03* Y29331D03* Y34843D03* Y35236D03* X32776Y11732D03* X32854Y28937D03* Y29331D03* Y34843D03* Y35236D03* X32894Y7480D03* Y7874D03* X33248Y7480D03* Y7874D03* X33878Y25197D03* Y26772D03* X34075Y10039D03* X34232Y25197D03* Y26772D03* X34272Y16142D03* X34429Y10039D03* X34469Y19488D03* Y21260D03* X34626Y16142D03* X34665Y22047D03* X34823Y19488D03* Y21260D03* X35020Y22047D03* X35059Y16142D03* X35256Y19331D03* Y19685D03* X35413Y16142D03* X35453Y8465D03* Y9055D03* X35610Y19331D03* Y19685D03* X35807Y8465D03* Y9055D03* X35925Y5709D03* X36280D03* X36437Y1654D03* X36634Y20276D03* X36791Y1654D03* X36988Y20276D03* X37146Y33878D03* Y34626D03* X37402Y33878D03* Y34626D03* X37657Y33878D03* Y34626D03* X38209Y1969D03* Y2362D03* Y20276D03* X38406Y18898D03* Y28937D03* X38563Y1969D03* Y2362D03* Y20276D03* X38760Y18898D03* Y28937D03* X38996Y13976D03* Y14370D03* X39193Y21260D03* Y21654D03* Y22047D03* Y22441D03* Y33661D03* X39350Y13976D03* Y14370D03* X39390Y1654D03* Y8465D03* X39547Y21260D03* Y21654D03* Y22047D03* Y22441D03* Y33661D03* X39744Y1654D03* Y8465D03* X40098Y7106D03* Y7854D03* X40138Y4134D03* Y4528D03* X40177Y3346D03* Y5315D03* Y5906D03* Y8465D03* X40354Y7106D03* Y7854D03* X40492Y4134D03* Y4528D03* X40531Y3346D03* Y5315D03* Y5906D03* Y8465D03* X40610Y7106D03* Y7854D03* X42854Y15177D03* Y15925D03* X42933Y7677D03* X43110Y15177D03* Y15925D03* X43248Y4724D03* X43287Y7677D03* X43327Y23425D03* Y23819D03* X43366Y15177D03* Y15925D03* X43524Y11614D03* Y14173D03* X43602Y4724D03* X43681Y23425D03* Y23819D03* X43878Y11614D03* Y14173D03* X43917Y4724D03* X44035Y3701D03* X44272Y4724D03* X44311Y14173D03* X44390Y3701D03* X44449Y1555D03* X44508Y8268D03* X44665Y14173D03* X44705Y22441D03* Y24803D03* X44803Y1555D03* X44862Y8268D03* X44902Y5118D03* Y5512D03* X45059Y22441D03* Y24803D03* X45256Y5118D03* Y5512D03* X45354Y1575D03* X45492Y14173D03* X45709Y1575D03* X45846Y14173D03* X46083Y7874D03* X46437D03* X47264Y10827D03* X47461Y22441D03* Y24803D03* X47618Y10827D03* X47815Y22441D03* Y24803D03* X48248Y10827D03* X48602D03* X48839Y7874D03* X49193D03* X50217Y22441D03* Y24803D03* X50571Y22441D03* Y24803D03* X50807Y14370D03* X51004Y6575D03* X51161Y14370D03* X51358Y6575D03* X52579Y33071D03* Y33465D03* Y33858D03* Y35236D03* Y35630D03* X52776Y8071D03* X52933Y33071D03* Y33465D03* Y33858D03* Y35236D03* Y35630D03* X53130Y8071D03* X54868Y11593D03* X54943Y8023D03* X55222Y11593D03* X55298Y8023D03* X55531Y31693D03* Y32087D03* X55610Y32480D03* X55728Y23819D03* Y24213D03* Y25197D03* Y25591D03* Y25984D03* X55886Y31693D03* Y32087D03* X55965Y32480D03* X56083Y23819D03* Y24213D03* Y25197D03* Y25591D03* Y25984D03* X56831Y19803D03* X56909Y2362D03* Y3937D03* Y4528D03* Y5118D03* Y24528D03* Y35039D03* Y36693D03* X57185Y19803D03* X57264Y2362D03* Y3937D03* Y4528D03* Y5118D03* Y24528D03* Y35039D03* Y36693D03* G54D72* X6693Y19685D03* X7480D03* X7874Y23819D03* X8661D03* X12598Y1614D03* X13386D03* X13976Y20472D03* X14370Y15551D03* X14764Y20472D03* X15157Y15551D03* X16339Y19488D03* Y20472D03* X17126Y19488D03* Y20472D03* X17323Y33465D03* X17362Y27559D03* X18110Y33465D03* X18150Y27559D03* X22244Y10827D03* X22835Y24606D03* X23031Y10827D03* X23622Y24606D03* X23819Y18504D03* X24016Y8465D03* Y27559D03* X24606Y18504D03* X24803Y8465D03* Y27559D03* X25984Y8465D03* X26772D03* X27323Y1811D03* X28110D03* X33268Y13661D03* Y14370D03* X34055Y13661D03* Y14370D03* X42126Y1575D03* X42913D03* X46457D03* X47244D03* X47559Y3150D03* X48031Y1575D03* X48346Y3150D03* X48622Y4724D03* X48819Y1575D03* X49409Y4724D03* X52756Y1575D03* X53543D03* X54921Y12598D03* Y13583D03* X55709Y12598D03* Y13583D03* X56496Y1772D03* X57283D03* G54D73* X4154Y28740D03* Y29528D03* Y30118D03* Y30906D03* Y31693D03* Y32480D03* X4902Y29528D03* Y30906D03* Y32480D03* X36476Y13661D03* Y14685D03* X36850D03* X37028Y17795D03* Y18819D03* X37224Y13661D03* Y14685D03* X37402Y18819D03* X37776Y17795D03* Y18819D03* G54D74* X4004Y18071D03* Y21614D03* X25787Y33465D03* G54D75* X1050Y29033D03* X1550Y28533D03* Y29533D03* X2550Y28533D03* Y29533D03* X3050Y29033D03* X4004Y18622D03* Y19173D03* Y19724D03* Y22165D03* Y22717D03* Y23268D03* X26787Y33465D03* X27787D03* X28787D03* X30787D03* X31787D03* X32787D03* X33031Y2177D03* X37047Y2756D03* X37480Y36232D03* X44646Y36811D03* G54D76* X1004Y18898D03* Y22441D03* G54D77* X3248Y17835D03* Y19961D03* Y21378D03* Y23504D03* G54D78* X1406Y2165D03* G54D79* X22835Y21654D03* G54D80* X39370Y9705D03* Y9980D03* G54D81* X15354Y13780D03* G54D82* X5480Y15236D03* G54D83* X3180Y4136D03* Y16336D03* G54D84* X1980Y5236D03* Y15236D03* G54D85* X2799Y36033D03* G54D86* X1299Y26234D03* Y38333D03* G54D87* X33386Y34921D03* Y35551D03* X33701Y34921D03* Y35551D03* X34016Y34921D03* Y35551D03* X34331Y34921D03* Y35551D03* M02* gerbv-2.7.0/example/amacro-ref/jj1.grb0000644000175000017500000000141313421555713017341 0ustar carstencarsten* G04 Job : D:\EKF\CAD\Mentor\Projects\c\cxx\cxxry\pcb\cxxry.pcb* G04 User : PC35:gn* G04 Layer : SolderPasteBottom.gdo* G04 Date : Wed Sep 06 08:55:32 2006* G04 Gerber Output SolderPasteBottom* %ICAS*% %MOIN*% %FSLAX24Y24*% %OFA0.0000B0.0000*% G90* G74* %AMVB_RCRECTANGLE* $3=$3X2* 21,1,$1-$3,$2,0,0,0* 21,1,$1,$2-$3,0,0,0* $1=$1/2* $2=$2/2* $3=$3/2* $1=$1-$3* $2=$2-$3* 1,1,$3X2,0-$1,0-$2* 1,1,$3X2,0-$1,$2* 1,1,$3X2,$1,$2* 1,1,$3X2,$1,0-$2* % %ADD10VB_RCRECTANGLE,0.02165X0.00984X0.00197*% %ADD12VB_RCRECTANGLE,0.01378X0.02165X0.00197*% %ADD11VB_RCRECTANGLE,0.02559X0.03150X0.00197*% G01* G54D10* X12224Y28642D03* Y28839D03* Y29035D03* Y29232D03* X12579Y28642D03* Y28839D03* Y29035D03* Y29232D03* G54D11* X9646Y12323D03* Y12874D03* G54D12* X6122Y10827D03* X6476D03* M02* gerbv-2.7.0/example/amacro-ref/limit-ex.grb0000644000175000017500000000100413421555713020401 0ustar carstencarsten%FSLAX23Y23*% %AMRECT*0 Round-cornered rectangle * 0 PARAMS: ,,,,,* 21,1,$1-$3,$2,0,0,$4*21,1,$1,$2-$3,0,0,$4*% %ADD11RECT,0.100000X0.060000X0.030000X60.00X0.866025X0.500000*% %ADD13RECT,0.100000X0.060000X0.030000X0.00X0.000000X1.000000*% %ADD16RECT,0.100000X0.060000X0.030000X30.00X0.500000X0.866025*% %ADD28RECT,0.060000X0.100000X0.030000X0.00X0.000000X1.000000*% G54D28*G01X425Y150D03* G54D13*G01X050Y150D03* G54D16*G01X200Y150D03* G54D11*G01X325Y150D03* M02*gerbv-2.7.0/example/amacro-ref/gerbv_am_expression_bug.ger0000644000175000017500000000022313421555713023554 0ustar carstencarsten%FSLAX23Y23*% %MOIN*% %AMBUGGYAPERTURE* 1,1,2,0,0* 1,0,1.8+1X0+0.1,0,0*% %ADD10BUGGYAPERTURE*% G54D10* X1000Y1000* X1000Y1000D03* M02* gerbv-2.7.0/example/amacro-ref/1.grb0000644000175000017500000242607213421555713017033 0ustar carstencarsten* G04 Job : D:\EKF\CAD\Mentor\Projects\c\ccg\ccgr0\pcb\ccgr0.pcb* G04 User : PC35:gn* G04 Layer : Layer01Top.gdo* G04 Date : Tue Jun 19 15:04:07 2007* G04 Gerber Output Layer 1 (Top)* %ICAS*% %MOIN*% %FSLAX24Y24*% %OFA0.0000B0.0000*% G90* G74* %AMVB_RECTANGLE* 21,1,$1,$2,0,0,$3* % %AMVB_Custom_Obstruct Trace/Via Round 5.0 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 1.5 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 2.0 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 1.3 Both_Mirrored* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 2.5 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 1.3 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 1.8 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 1.6 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Obstruct Trace/Via Round 3.6 Both* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0004,$4-$5,$6+$7* % %AMVB_Custom_Fiducial Mimot Dot 1.0 Copper* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0846,$4-$5,$6+$7* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,0,0.0728,$4-$5,$6+$7* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0394,$4-$5,$6+$7* % %AMVB_Custom_LFPAK4 Pin5 Copper* 4,1,8,-0.0728,-0.0433,-0.0728,0.0787,-0.0925,0.0787,-0.0925,0.1378,0.0925,0.1378,0.0925,0.0787,0.0728,0.0787,0.0728,-0.0433,-0.0728,-0.0433,$1* % %AMVB_Custom_Fiducial Angle 1.5 Copper BotRight* 20,1,0.0079,0.0000,0.0000,-0.0591,0.0000,$1* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* $4 = $2X-0.0591* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X-0.0591* 1,1,0.0079,$4-$5,$6+$7* 20,1,0.0079,0.0000,0.0000,0.0000,0.0591,$1* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* $4 = $2X0.0000* $5 = $3X0.0591* $6 = $2X0.0591* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* % %AMVB_Custom_Fiducial Angle 1.5 Copper TopLeft* 20,1,0.0079,0.0000,0.0000,0.0591,0.0000,$1* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* $4 = $2X0.0591* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0591* 1,1,0.0079,$4-$5,$6+$7* 20,1,0.0079,0.0000,0.0000,0.0000,-0.0591,$1* $4 = $2X0.0000* $5 = $3X0.0000* $6 = $2X0.0000* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* $4 = $2X0.0000* $5 = $3X-0.0591* $6 = $2X-0.0591* $7 = $3X0.0000* 1,1,0.0079,$4-$5,$6+$7* % %ADD21C,0.00500*% %ADD10C,0.00500*% %ADD22C,0.00512*% %ADD14C,0.00591*% %ADD18C,0.00787*% %ADD15C,0.00984*% %ADD70C,0.01000*% %ADD16C,0.01181*% %ADD23C,0.01299*% %ADD52C,0.01378*% %ADD17C,0.01575*% %ADD19C,0.01969*% %ADD24C,0.02165*% %ADD43C,0.02362*% %ADD20C,0.02756*% %ADD71C,0.03150*% %ADD45C,0.03937*% %ADD63C,0.04331*% %ADD69C,0.04724*% %ADD89C,0.05512*% %ADD36C,0.05906*% %ADD84C,0.06299*% %ADD86C,0.07874*% %ADD90C,0.13780*% %ADD64C,0.17717*% %ADD12C,0.19685*% %ADD81C,0.20472*% %ADD44VB_RECTANGLE,0.03937X0.03937X270.00000*% %ADD62VB_RECTANGLE,0.04331X0.04331X270.00000*% %ADD68VB_RECTANGLE,0.04724X0.04724X270.00000*% %ADD88VB_RECTANGLE,0.05512X0.05512X270.00000*% %ADD35VB_RECTANGLE,0.05906X0.05906X0.00000*% %ADD85VB_RECTANGLE,0.06299X0.06299X270.00000*% %ADD40VB_RECTANGLE,0.09843X0.09843X90.00000*% %ADD49VB_RECTANGLE,0.02362X0.00984X0.00000*% %ADD25VB_RECTANGLE,0.02362X0.01575X0.00000*% %ADD72VB_RECTANGLE,0.02362X0.01575X270.00000*% %ADD79VB_RECTANGLE,0.02756X0.01575X180.00000*% %ADD32VB_RECTANGLE,0.02756X0.01575X270.00000*% %ADD29VB_RECTANGLE,0.03543X0.02756X180.00000*% %ADD26VB_RECTANGLE,0.03543X0.02756X90.00000*% %ADD67VB_RECTANGLE,0.03937X0.01969X0.00000*% %ADD80VB_RECTANGLE,0.03937X0.01969X90.00000*% %ADD66VB_RECTANGLE,0.03937X0.03543X0.00000*% %ADD91VB_RECTANGLE,0.03937X0.03543X270.00000*% %ADD76VB_RECTANGLE,0.04724X0.01969X90.00000*% %ADD27VB_RECTANGLE,0.04724X0.02756X0.00000*% %ADD33VB_RECTANGLE,0.04724X0.04331X180.00000*% %ADD34VB_RECTANGLE,0.04724X0.04331X270.00000*% %ADD59VB_RECTANGLE,0.05906X0.01575X90.00000*% %ADD55VB_RECTANGLE,0.05906X0.03150X90.00000*% %ADD37VB_RECTANGLE,0.05906X0.04724X180.00000*% %ADD38VB_RECTANGLE,0.05906X0.04724X270.00000*% %ADD78VB_RECTANGLE,0.06299X0.01969X90.00000*% %ADD47VB_RECTANGLE,0.06693X0.01575X0.00000*% %ADD82VB_RECTANGLE,0.06693X0.01969X270.00000*% %ADD31VB_RECTANGLE,0.07874X0.01575X90.00000*% %ADD83VB_RECTANGLE,0.07874X0.03150X180.00000*% %ADD75VB_RECTANGLE,0.07874X0.07087X0.00000*% %ADD92VB_RECTANGLE,0.07874X0.07087X90.00000*% %ADD48VB_RECTANGLE,0.09843X0.03937X180.00000*% %ADD74VB_RECTANGLE,0.11024X0.06299X270.00000*% %ADD53VB_RECTANGLE,0.13386X0.07874X180.00000*% %ADD57VB_RECTANGLE,1.49606X0.05906X0.00000*% %ADD58VB_RECTANGLE,2.16535X0.05906X0.00000*% %ADD50VB_Custom_Fiducial Angle 1.5 Copper BotRight,0.00000X1.00000X0.00000*% %ADD41VB_Custom_Fiducial Angle 1.5 Copper BotRight,180.00000X-1.00000X0.00000*% %ADD60VB_Custom_Fiducial Angle 1.5 Copper BotRight,270.00000X-0.00000X-1.00000*% %ADD51VB_Custom_Fiducial Angle 1.5 Copper TopLeft,0.00000X1.00000X0.00000*% %ADD42VB_Custom_Fiducial Angle 1.5 Copper TopLeft,180.00000X-1.00000X0.00000*% %ADD61VB_Custom_Fiducial Angle 1.5 Copper TopLeft,270.00000X-0.00000X-1.00000*% %ADD11VB_Custom_Fiducial Mimot Dot 1.0 Copper,0.00000X1.00000X0.00000*% %ADD56VB_Custom_LFPAK4 Pin5 Copper,90.00000*% %ADD28VB_Custom_LFPAK4 Pin5 Copper,270.00000*% %ADD54VB_Custom_Obstruct Trace/Via Round 1.3 Both,90.00000X0.00000X1.00000*% %ADD39VB_Custom_Obstruct Trace/Via Round 1.3 Both_Mirrored,270.00000X-0.00000X-1.00000*% %ADD73VB_Custom_Obstruct Trace/Via Round 1.5 Both,0.00000X1.00000X0.00000*% %ADD77VB_Custom_Obstruct Trace/Via Round 1.6 Both,90.00000X0.00000X1.00000*% %ADD65VB_Custom_Obstruct Trace/Via Round 1.8 Both,270.00000X-0.00000X-1.00000*% %ADD30VB_Custom_Obstruct Trace/Via Round 2.0 Both,0.00000X1.00000X0.00000*% %ADD46VB_Custom_Obstruct Trace/Via Round 2.5 Both,270.00000X-0.00000X-1.00000*% %ADD87VB_Custom_Obstruct Trace/Via Round 3.6 Both,270.00000X-0.00000X-1.00000*% %ADD13VB_Custom_Obstruct Trace/Via Round 5.0 Both,0.00000X1.00000X0.00000*% G01* G36* X5079Y27677D02* X6654D01* Y30354* X5079* Y27677* X6720Y21890D02* X8504D01* Y23740* X6720* Y21890* X26772Y22165D02* X28346D01* Y23504* X26772* Y22165* X29528D02* X31102D01* Y23504* X29528* Y22165* X32374Y21890D02* X34157D01* Y23740* X32374* Y21890* X33661Y5472D02* X33740Y5551D01* X34252* X34961Y6260* Y7756* X35039Y7835* X36850* X37244Y7441* Y4961* X37323Y4882* X38071* X38150Y4961* Y6181* X38346Y6378* X39134* X39213Y6299* Y3543* X37598* X37283Y3858* Y4213* X36299Y5197* Y5315* X34685* X34606Y5236* Y5118* X34528Y5039* X33740* X33661Y5118* Y5472* X34134Y10079D02* X32795D01* Y10748* X32598Y10945* Y11260* X32677Y11339* X34134* X34213Y11260* Y10157* X34134Y10079* X34213Y27677D02* X35787D01* Y30354* X34213* Y27677* X34331Y10000D02* X34016D01* X33937Y9921* Y6496* X34016Y6417* X34724* X34803Y6496* Y7874* X34882Y7953* X35787* X35866Y8031* Y9921* X35945Y10000* X36969* X37047Y10079* Y10787* X36969Y10866* X34488* X34409Y10787* Y10079* X34331Y10000* X36299Y8071D02* Y9488D01* X36378Y9567* X36811* X37165Y9921* Y10787* X37244Y10866* X38110* X38189Y10787* Y7047* X38110Y6969* X37756* X37677Y7047* Y7913* X37598Y7992* X36378* X36299Y8071* X43583Y31339D02* X44606D01* Y33150* X43583* Y31339* X45945D02* Y31614D01* X45669* Y31850* X45945* Y32795* X47244* Y31614* X46969* Y31339* X45945* X46024Y35984D02* Y35866D01* X46102Y35787* X48740* X48819Y35866* Y36063* X48740Y36142* X48622* X48504Y36260* Y37874* X48425Y37953* X46457* X46378Y37874* Y36339* X46024Y35984* X48307Y31339D02* X49331D01* Y33150* X48307* Y31339* X49606Y35866D02* X49528Y35945D01* Y36063* X49606Y36142* X49724* X49921Y36339* Y37874* X50000Y37953* X51969* X52047Y37874* Y36299* X52323Y36024* Y35945* X52244Y35866* X49606* X50669Y31535D02* Y31614D01* X50394* Y31850* X50669* Y32795* X51969* Y31614* X51693* Y31535* X50669* X55157Y27441D02* Y26693D01* X55472* X55512Y26654* Y26535* X55551Y26496* X55827* X55866Y26535* Y27559* X55827Y27598* X55551* X55512Y27559* Y27480* X55472Y27441* X55157* G37* G54D10* X0Y0D02* X62402D01* X62992Y591* Y38780* X62402Y39370* X-787* Y3937* X0* Y0* X256Y32728D02* X747Y32236D01* Y30336* X1550Y29533* Y28533D02* X2721Y27363D01* X3861* X3862Y27362* X4035* X1550Y29533D02* Y29102D01* X1996Y28656* Y28521* X2330Y28187* X2783* X3440Y28845* Y29833* X3804Y30197* X4016* X3681Y28248D02* X3720D01* X4016Y27953* X4055* X3937Y31319D02* Y31017D01* X3976Y30977* Y30709* Y30496* X4016Y30456* Y30197* Y28465D02* Y28212D01* X4055Y28173* Y27953* X4035Y27362D02* Y27087D01* X3728Y26779* Y26336* X3910Y26155* X4835* X4861Y26181* X5433* X4055Y27953D02* X4078D01* Y27725* X4322Y27481* Y26952* X4035Y26665* Y26575* X4480Y5236D02* X4504D01* X4767Y5500* X4879* X5631Y4747* Y4117* X5970Y3778* X6220* X4480Y7236D02* X4655D01* X4848Y7430* X4999* X5304Y7125* X5641* X5831Y6935* X6169* X6220Y6884* X4480Y8236D02* X4913D01* X4977Y8173* X5873* X5935Y8110* X6147* X6220Y8037* X4528Y28465D02* Y28207D01* X4569Y28166* Y27953* X4606* X4528Y30197D02* Y30709D01* X4606Y27953D02* X4646D01* X4882Y27717* X4724Y31319D02* X5059D01* X5276Y31102* X4724Y31319D02* X4410D01* X4135Y31594* X3623* X3478Y31448* Y30462* X2550Y29533* X4724Y32697D02* X4453D01* X4217Y32933* X4166Y32983* X3462* X3264Y32785* Y30720* X2139Y29595* Y28944* X2550Y28533* X5039Y1575D02* X4685D01* X5394Y26693D02* Y26441D01* X5433Y26401* Y26181* Y33465D02* X5585D01* Y33198* X5596Y33186* Y32756* X5512* X5480Y5736D02* X5091D01* X4984Y5630* Y5565* X5752Y4798* Y4167* X6020Y3899* X6220* X5480Y6736D02* X5271D01* X5080Y6546* Y6398* X5192Y6285* X5821* X6094Y6012* Y5198* X6173Y5119* X6220* X5480Y7736D02* X5091D01* X5015Y7661* Y7585* X5354Y7246* X5691* X5881Y7056* X6205* X6220Y7072* X5512Y32756D02* X5177D01* X5118Y32697* X4724* X5531Y30709D02* X4528D01* X5591Y1575D02* X5630D01* X5925Y1870* X5965* X5807Y2165D02* X5492D01* X5984Y26181D02* Y26397D01* X5940Y26441* Y26693* X5906* X5984Y33465D02* X5887Y33562D01* Y34054* X5886Y34055* X5984Y33465D02* X6496D01* X7087Y32874* X6024Y32756D02* X5984Y32795D01* Y33465* X6122Y2165D02* X5807D01* X6220Y3778D02* X6334Y3665D01* Y3593* X6383Y3543* X6516* X6220Y3899D02* X6334Y4012D01* Y4105* X6363Y4134* X6516* X6220Y4867D02* X5973Y5114D01* Y5962* X5771Y6165* X5017* X4945Y6236* X4480* X6220Y5119D02* X6245D01* X6441Y5315* X6516* X6220Y6884D02* X6412Y6693D01* X6516* X6220Y7072D02* X6334Y7185D01* Y7248* X6369Y7283* X6516* X6220Y8037D02* X6383Y7874D01* X6516* X6220Y8322D02* X6129Y8231D01* X5985* X5920Y8296* X5145* X5090Y8351* Y8471* X5355Y8736* X5480* X6319Y1575D02* X5965D01* X6339Y26181D02* X5984D01* X6476Y2165D02* Y2126D01* X6693Y1909* Y1890* X6516Y3543D02* Y3736D01* X6557Y3777* X7410* X8055Y3133* X8153* X8189Y3168* Y3229* X8071Y3346* X6516Y4134D02* Y3937D01* X6555Y3898* X7460* X7804Y3554* X8257* X8465Y3346* X6516Y4724D02* X6363D01* X6220Y4867* X6516Y4724D02* Y4917D01* X6553Y4954* X7155* X7533Y4575* Y4406* X8018Y3921* X8132* X8179Y3968* Y4026* X8071Y4134* X6516Y5315D02* Y5115D01* X6556Y5075* X7205* X7654Y4625* Y4456* X7790Y4320* X8279* X8465Y4134* X6516Y7874D02* Y8066D01* X6550Y8101* X7285* X7364Y8022* Y7740* X7315Y7691* X7213* X7178Y7656* Y7543* X7213Y7508* X7293* X7363Y7437* Y7346* X7720Y6989* Y5666* X8071Y5315* X6516Y8465D02* X6363D01* X6220Y8322* X6673Y35827D02* Y36067D01* X6496Y36244* Y36614* X6870Y3543D02* X7126D01* X6870Y4134D02* X7126D01* X6870Y5315D02* X7126D01* X6870Y6693D02* X7126D01* X6870Y7283D02* X7126D01* X6909Y2165D02* Y2394D01* X7232Y2717* X7677* X7126Y4724D02* X6870D01* X7126Y7874D02* X6870D01* X7126Y8465D02* X6870D01* X7126Y31102D02* X6732Y31496D01* X5886* X7146Y30591D02* X6701Y31035D01* X5751* X5560Y30844* Y30737* X5531Y30709* X7264Y2165D02* X7677D01* X7421Y8465D02* X7598D01* X7480Y12028D02* X7559Y11949D01* X7480Y14783D02* X7720D01* X7740Y14764* X7894* X7480Y15768D02* X7697D01* X7717Y15748* X7894* X7520Y17106D02* X7717D01* X7736Y17126* X7894* X7559Y10269D02* X7065Y10763D01* Y10947* X6276Y11736* X5195* X4707Y12224* X3051* X7559Y10787D02* X7795Y11024D01* X8071* X7559Y11949D02* X7697Y11811D01* X8071* X7598Y8465D02* X7795D01* X7677Y2165D02* X8228D01* X7677Y2717D02* X7795D01* X7726Y9331D02* Y9823D01* X7596Y9954* Y10232* X7559Y10269* X7795Y12028D02* X8248D01* X8465Y11811* X7894Y14173D02* Y13780D01* Y14173D02* X7717D01* X7697Y14154* X7480* X7894Y15157D02* Y14764D01* Y16142D02* Y15748D01* Y16732D02* Y17126D01* X8071Y4528D02* X8056Y4512D01* X7356Y5211* Y5817* X7325Y5848* X7219* X7176Y5891* Y5992* X7214Y6030* X7297* X7356Y6089* Y6759* X7197Y6919* X6550* X6516Y6885* Y6693* X8071Y6102D02* X8268Y6299D01* X8071Y10236D02* X7874Y10039D01* X8071Y12598D02* X7894Y12776D01* Y12815* X8248Y12795D02* X8268D01* X8465Y12598* X8248Y15748D02* X8543D01* X8248Y16142D02* X8402D01* X8446Y16098* X8519* X8543Y16122* X8248Y16732D02* X8543D01* X8248Y17126D02* X8524D01* X8543Y17106* X8327Y29173D02* Y28563D01* X8091Y28327* X8327Y35079D02* Y34350D01* X8445Y25945D02* Y26555D01* X8209Y26791* X8445Y31850D02* Y32192D01* X8215Y32421* X8209* X8465Y4528D02* X8263Y4729D01* X8009* X7477Y5262* Y6809* X7247Y7040* X6567* X6516Y7091* Y7283* X8465Y5315D02* Y5320D01* X8359Y5425* X8291Y5493* X8064* X7841Y5716* Y7039* X7485Y7395* Y8072* X7335Y8221* X6562* X6516Y8267* Y8465* X8465Y10236D02* X8268Y10039D01* X8465Y11024D02* X8228Y10787D01* X7874* X8543Y13720D02* X8484Y13780D01* X8248* X8543Y14114D02* X8484Y14173D01* X8248* X8543Y14764D02* X8248D01* X8543Y15138D02* X8524Y15157D01* X8248* X8554Y2087D02* X8465Y2176D01* Y2559* X8563Y34508D02* Y35079D01* X8565Y9331D02* X8564Y9330D01* Y9217* X8402Y9055* X8248* X8642Y12815D02* X8858Y12598D01* X8661Y8189D02* X8386Y8465D01* X8346* X8661Y8543D02* X8976D01* X8661Y11220D02* X8858Y11417D01* X8661Y11988D02* Y12008D01* X8858Y12205* X8681Y25945D02* Y26831D01* X8917Y27067* X8747Y9331D02* X8724Y9308D01* Y9118* X8651Y9045* X8543Y8937* X8819Y28602D02* X8666D01* X8563Y28705* Y29173* X8858Y2559D02* X8661Y2756D01* X8858Y3740D02* X9055Y3543D01* Y2497* X9465Y2087* X8917Y25374D02* X8937Y25394D01* X8917Y32697D02* X8681Y32461D01* Y31850* X8937Y25394D02* X9072D01* X9154Y25475* Y25945* X8976Y9055D02* X8937D01* X8643Y8761* X7880* X7726Y8914* Y9331* X9035Y35079D02* Y34508D01* X9055Y3937D02* Y3706D01* X9252Y3509* Y3346* X9085Y25266D02* X9213Y25394D01* X9085Y25266D02* X8917Y25098D01* X9094Y20669D02* X9291Y20472D01* X9665* X9094Y21024D02* X9397D01* X9436Y21063* X9665* X9154Y31850D02* Y31378D01* X9232Y31299* X9213Y25394D02* X9390Y25571D01* Y25945* X9232Y31299D02* X9272Y31260D01* X9252Y2953D02* X9449Y3150D01* X9252Y10236D02* X9055Y10039D01* X8839* X8653Y9854* Y9656* X8565Y9568* Y9331* X9252Y12598D02* X9042Y12808D01* Y12816* X9272Y1772D02* X8869D01* X8554Y2087* X9272Y28051D02* X9035Y28287D01* Y29173* X9390Y31850D02* X9454Y31786D01* Y31299* Y31167* X9272Y30984* X9465Y2087D02* X9480Y2072D01* X10015* X10315Y1772* X10354* X9508Y29173D02* Y28563D01* X9272Y28327* X9528Y8543D02* X9567D01* X9901Y8878* Y9331* X9528Y9055D02* Y9331D01* Y9622* X9646Y9740* Y9843* Y2953D02* X9843Y3150D01* X9646Y7677D02* X9449Y7480D01* Y7441* X9744Y29173D02* Y28563D01* X9980Y28327* X9744Y34232D02* X9508Y34469D01* Y35079* X9744Y34508D02* Y35079D01* X9862Y25945D02* Y26413D01* X9484Y26791* X8917* X9901Y9331D02* Y9704D01* X10039Y9843* X9921Y25394D02* X9626Y25098D01* X10039Y2559D02* X10419Y2179D01* X11305* X11397Y2087* X10039Y2953D02* X9843Y2756D01* X10039Y3346D02* X10236Y3150D01* X10039Y7677D02* X9941Y7775D01* Y7914* X10039Y10236D02* X9843Y10039D01* X9625* X9449Y9863* Y9822* X9316Y9689* X9105* X8747Y9331* X10039Y12598D02* X10249Y12808D01* Y12816* X10039Y12992D02* X10236Y13189D01* X10098Y25945D02* Y25477D01* X10015Y25394* X9921* X10098Y31850D02* Y32205D01* X10315Y32421* X10217Y29173D02* Y28524D01* X10689Y28051* X10217Y34232D02* X10453Y34469D01* Y35079* X10217Y34508D02* Y35079D01* X10225Y11607D02* X10244D01* X10433Y11417* X10315Y32697D02* X9862Y32244D01* Y31850* X10335Y26791D02* X10571Y26555D01* Y25945* X10335Y27067D02* X10807Y26594D01* Y25945* X10433Y22028D02* Y22418D01* X9465Y23386* X8839* X10571Y31299D02* Y31240D01* X10807Y31004* X10571Y31850D02* Y31299D01* X10610Y13189D02* Y13169D01* X10433Y12992* X10617Y11987D02* X10609D01* X10433Y11811* X10689Y28327D02* X10453Y28563D01* Y29173* X10787Y36929D02* X10801Y36915D01* Y36467* X10807Y21673D02* X10433D01* X10807Y31299D02* Y31280D01* Y31850D02* Y31299D01* X10827Y7677D02* X11024Y7874D01* Y7894* X10827Y12598D02* X11024Y12795D01* X10827Y12992D02* X11024Y13189D01* X10925Y35079D02* Y34508D01* X11024Y6693D02* X10827Y6496D01* X11024Y11220D02* X10630D01* X10433Y11024* X11063Y10846D02* X11004D01* X10827Y11024* X11220Y3346D02* X11024Y3150D01* X11220Y11024D02* X11594D01* X11220Y11811D02* X11417Y12008D01* X11260Y25374D02* X11280Y25394D01* Y25945* X11299Y37480D02* X11301Y37482D01* Y37943* Y36467D02* Y36927D01* X11299Y36929* X11358Y35846D02* X11398Y35807D01* Y35630* X11397Y2087D02* X11430Y2054D01* Y1382* X11321Y1273* X6935* X6673Y1535* Y1575* X11398Y29173D02* Y28720D01* X11516Y28602* X11398Y35630D02* Y35079D01* X11417Y32559D02* X11516Y32461D01* Y31850* X11417Y32835D02* X11235Y32652D01* Y31895* X11280Y31850* X11516Y25394D02* Y25945D01* Y28051D02* X10925Y28642D01* Y29173* X11516Y28327D02* X11698Y28509D01* Y28678* X11688Y28689* Y29173* X11634* X11535Y25374D02* X11516Y25394D01* X11614Y7677D02* X11811Y7874D01* X11634Y35630D02* Y35079D01* Y35846D02* Y35630D01* X11732Y10551D02* X11299D01* X11220Y10630* X11732Y11319D02* X11481Y11570D01* X10980* X10827Y11417* X11732Y20276D02* X13248Y18760D01* Y16772* X11752Y31280D02* X11758D01* X11778Y31299* X11988Y31509* Y31850* X11791Y36929D02* Y36476D01* X11801Y36467* X11811Y37480D02* X11801Y37490D01* Y37943* X11850Y10551D02* X11732D01* X11988Y25394D02* Y25945D01* X12028Y11024D02* X11732Y11319D01* X12106Y29173D02* Y28524D01* X12579Y28051* X12106Y35079D02* Y34350D01* X12224Y25394D02* Y25335D01* X12461Y25098* X12224Y25945D02* Y25394D01* Y31299D02* Y31850D01* X12301Y36467D02* Y36813D01* X12185Y36929* X12303Y37480D02* Y37941D01* X12301Y37943* X12343Y29173D02* Y28563D01* X12579Y28327* X12343Y34508D02* Y35079D01* X12382Y11024D02* Y10709D01* X12417Y15787D02* Y16354D01* X12421Y16358* X12461Y24823D02* X11988Y25295D01* Y25394* X12461Y31004D02* X12224Y31240D01* Y31299* X12795Y4528D02* X12992Y4331D01* X12795Y4921D02* X12992Y4724D01* X12801Y37943D02* Y37494D01* X12815Y37480* X12874Y36929D02* X12801Y36856D01* Y36467* X13189Y3346D02* X13386Y3150D01* X13189Y3740D02* X13386Y3543D01* X13189Y4528D02* X13386Y4331D01* X13189Y4921D02* X13386Y4724D01* X13301Y36467D02* Y36010D01* X13307Y36004* Y37480D02* X13301Y37486D01* Y37943* X13465Y16772D02* Y18760D01* X11732Y20492* X13799Y37480D02* X13801Y37482D01* Y37943* Y36467D02* Y36927D01* X13799Y36929* X13815Y8110D02* Y7716D01* X13860Y7671D02* Y8155D01* X13878Y35630D02* X13524Y35276D01* X13905Y8164D02* Y7663D01* X13950D02* Y8164D01* X13995D02* Y7663D01* X14040D02* Y8164D01* X14085D02* Y7663D01* X14130D02* Y8164D01* X14175D02* Y7663D01* X14220D02* Y8164D01* X14265D02* Y7663D01* X14310D02* Y8164D01* X14311Y36929D02* X14301Y36919D01* Y36467* X14311Y37480D02* X14301Y37490D01* Y37943* X14350Y31299D02* Y31240D01* X14114Y31004* X14350Y31850D02* Y31299D01* X14355Y8164D02* Y7663D01* X14370Y28031D02* X14705Y28366D01* Y29173* X14370Y28327D02* X14553Y28509D01* Y28713* X14469Y28797* Y29173* X14390Y25374D02* Y25394D01* X14350Y25433* Y25945* X14400Y7663D02* Y8164D01* X14445D02* Y7663D01* X14469Y34232D02* X14705Y34469D01* Y35079* X14469D02* Y34508D01* X14490Y7663D02* Y8164D01* X14535D02* Y7663D01* X14580D02* Y8164D01* X14587Y20118D02* X14577Y20108D01* Y19823* X14587Y25945D02* Y27205D01* X14823Y27441* X14625Y8164D02* Y7663D01* X14670D02* Y8164D01* X14715D02* Y7663D01* X14760D02* Y8164D01* X14764Y9862D02* Y9916D01* X14957* X14989Y9948* Y10028* X15118Y10157* X14797Y31299D02* X14670D01* X14587Y31382* Y31850* X14801Y36467D02* Y36927D01* X14803Y36929* X14801Y37943D02* Y37482D01* X14803Y37480* X14805Y8164D02* Y7663D01* Y20006D02* Y19041D01* X14823Y26791D02* Y26806D01* X14965Y26948* X15043* X15185Y26806* Y26752* X14823Y27067D02* X14826D01* X15079* X15295Y26851* Y25945* X14850Y7663D02* Y8164D01* Y19041D02* Y20051D01* X14862Y18839D02* Y18645D01* X16929Y16578* X14895Y8168D02* Y7663D01* Y20096D02* Y19041D01* X14940Y7663D02* Y8212D01* Y19041D02* Y20141D01* X14985Y8262D02* Y7663D01* Y20186D02* Y19041D01* X15030Y7663D02* Y9837D01* Y19041D02* Y20231D01* X15059Y25945D02* Y26322D01* X15156Y26419* Y26482* X15131Y26507* X15036* X15015Y26528* Y26590* X15053Y26627* X15134* X15185Y26679* X15059Y31850D02* Y32579D01* X15256Y32776* X15075Y9882D02* Y7663D01* Y20276D02* Y19041D01* X15120Y7663D02* Y9927D01* Y19041D02* Y20321D01* X15165Y9972D02* Y7663D01* Y20366D02* Y19041D01* X15185Y26752D02* Y26679D01* X15210Y7663D02* Y10000D01* Y19041D02* Y20411D01* X15255Y10037D02* Y7663D01* Y20456D02* Y19041D01* X15256Y32500D02* X15295Y32461D01* Y31850* X15300Y7663D02* Y10107D01* Y19041D02* Y20495D01* X15345Y10152D02* Y7663D01* Y20487D02* Y19041D01* X15390Y7663D02* Y10197D01* Y19041D02* Y20490D01* X15413Y29173D02* Y28664D01* X15408Y28658* Y28490* X15591Y28307* X15413Y34508D02* Y35079D01* X15435Y10242D02* Y7663D01* Y20506D02* Y19041D01* X15480Y7663D02* Y10287D01* Y19041D02* Y20537D01* X15525Y10332D02* Y7663D01* Y20605D02* Y19041D01* X15551Y31240D02* X14856D01* X14797Y31299* X15570Y7663D02* Y10369D01* Y19041D02* Y20771D01* X15590Y25157D02* X15531Y25098D01* X15591Y25157D02* X15590D01* X15615Y10369D02* Y7663D01* Y20816D02* Y19041D01* X15660Y7663D02* Y10369D01* Y19041D02* Y20861D01* X15705Y10369D02* Y7663D01* Y20906D02* Y19041D01* X15750Y7663D02* Y10369D01* Y19041D02* Y20951D01* X15768Y25394D02* Y25335D01* X15591Y25157* X15768Y25945D02* Y25394D01* Y31299D02* Y31181D01* X15551Y30965* X15768Y31850D02* Y31299D01* X15795Y10369D02* Y7663D01* Y20996D02* Y19041D01* X15801Y36467D02* Y36923D01* X15807Y36929* X15840Y7663D02* Y10369D01* Y19041D02* Y21038D01* X15885Y10331D02* Y7663D01* Y21038D02* Y19041D01* X15886Y29173D02* Y28780D01* X16358Y28307* X15886Y35079D02* Y34508D01* X15930Y7663D02* Y10319D01* Y19041D02* Y21038D01* X15975Y10319D02* Y7663D01* Y21038D02* Y19041D01* X16004Y32421D02* Y31850D01* X16020Y7663D02* Y10319D01* Y19041D02* Y21038D01* X16065Y10319D02* Y7663D01* Y21038D02* Y19041D01* X16110Y7663D02* Y10319D01* Y19041D02* Y21038D01* X16122Y35079D02* Y34193D01* X16358Y33957* X16155Y10319D02* Y7663D01* Y21038D02* Y19041D01* X16200Y7663D02* Y10319D01* Y19041D02* Y21038D01* X16240Y26831D02* X16004Y26594D01* Y25945* X16245Y10319D02* Y7663D01* Y21038D02* Y19041D01* X16290Y7663D02* Y10319D01* Y19041D02* Y21038D01* X16301Y36467D02* Y36927D01* X16299Y36929* X16335Y10319D02* Y7663D01* Y21038D02* Y19041D01* X16358Y28583D02* X16122Y28819D01* Y29173* X16380Y7663D02* Y10323D01* Y19041D02* Y21038D01* X16425Y10073D02* Y7663D01* Y10361D02* Y10281D01* Y21038D02* Y19061D01* X16470Y7686D02* Y10028D01* Y10327D02* Y10369D01* Y19106D02* Y21038D01* X16476Y25945D02* Y26594D01* X16949Y27067* X16515Y10005D02* Y8833D01* Y21038D02* Y19129D01* X16516Y12756D02* X16909Y12362D01* X16516Y24626D02* X16234D01* X16020Y24840* X14893* X14679Y24626* X14350* X16560Y8879D02* Y9995D01* Y19139D02* Y21038D01* X16594Y32697D02* X16412Y32514D01* Y32346* X16423Y32335* Y31850* X16476* X16594Y35079D02* Y34469D01* X16358Y34232* X16605Y9997D02* Y8924D01* Y21038D02* Y19137D01* X16650Y8969D02* Y10011D01* Y10343D02* Y10369D01* Y19123D02* Y21038D01* X16695Y5939D02* Y8392D01* Y10040D02* Y9014D01* Y10388D02* Y10314D01* Y21038D02* Y19094D01* X16713Y12953D02* Y12770D01* X16850Y12632* X16918* X17188Y12362* X16713Y25945D02* Y25477D01* X16796Y25394* X16923* X16713Y31850D02* Y32303D01* X16594Y32421* X16732Y10085D02* G03X16890Y9995I158J92D01* X17072Y10177J182* X16890Y10360I182* X16732Y10269J183* X16575Y10360I157J92* X16392Y10177J183* X16575Y9995I183* X16732Y10085J182* G01X16740Y8437D02* Y5931D01* Y9059D02* Y10073D01* Y10281D02* Y10390D01* Y19041D02* Y21038D01* X16785Y5931D02* Y8440D01* Y10028D02* Y9104D01* Y10959D02* Y10327D01* Y21038D02* Y19041D01* X16801Y36467D02* Y36919D01* X16811Y36929* X16830Y8440D02* Y5931D01* Y9897D02* Y10005D01* Y10350D02* Y10959D01* Y19041D02* Y21038D01* X16831Y29173D02* Y28705D01* X16909Y28627* X17024* X17131Y28520* Y28352* X16949Y28169* X16875Y5931D02* Y8440D01* Y9995D02* Y9942D01* Y10959D02* Y10359D01* Y21038D02* Y19041D01* X16890Y24547D02* X16811Y24626D01* X16516* X16909Y12362D02* X16934Y12338D01* X17058* X17102Y12295* Y12033* X17301Y11834* X17565* X17612Y11881* X17835* X16920Y8440D02* Y5931D01* Y10357D02* Y10959D01* Y19041D02* Y21038D01* X16923Y25394D02* X16942Y25374D01* X16949* X16929Y16578D02* X16969Y16539D01* Y16496* X16949Y22835D02* X16589Y23194D01* Y23461* X17043Y23915* Y24394* X16890Y24547* X16949Y28445D02* X16820Y28574D01* X16726* X16594Y28705* Y29173* X16965Y5931D02* Y8440D01* Y10011D02* Y9986D01* Y10959D02* Y10343D01* Y21038D02* Y19041D01* X17010Y8440D02* Y5931D01* Y9986D02* Y10040D01* Y10314D02* Y10959D01* Y19041D02* Y21038D01* X17017Y16024D02* X16958Y15965D01* Y15842* X17086Y15714* X17300* X17410Y15604* Y15262* X17581Y15092* X17712* X17844Y14960* X18136* X18184Y14912* X17055Y5931D02* Y8440D01* Y10100D02* Y9986D01* Y10959D02* Y10255D01* Y21038D02* Y19041D01* X17067Y15295D02* Y15078D01* X17533Y14612* X17910* X18081Y14441* X18358* X17067Y34134D02* X16831Y34370D01* Y35079* X17087Y15954D02* X17058Y15924D01* Y15883* X17127Y15813* X17341* X17509Y15645* Y15303* X17622Y15191* X17753* X17886Y15059* X18177* X18225Y15011* X17100Y8440D02* Y5931D01* Y9986D02* Y10959D01* Y19041D02* Y21038D01* X17145Y6984D02* Y7229D01* Y7771D02* Y8440D01* Y10930D02* Y9986D01* Y21038D02* Y19041D01* X17146Y16280D02* X17017Y16150D01* Y16024* X17185Y25945D02* Y26555D01* X16949Y26791* X17185Y32421D02* Y31850D01* X17188Y12362D02* X17224Y12326D01* Y12065* X17346Y11944* X17520* X17568Y11991* X17835* X17190Y7185D02* Y7028D01* Y8440D02* Y7815D01* Y9986D02* Y10885D01* Y19041D02* Y21038D01* X17224Y15531D02* X17309Y15446D01* Y14976* X17574Y14711* X17951* X18076Y14586* X18402* X18516Y14472* Y14410* X18775Y14151* X18838* X17235Y7033D02* Y7180D01* Y7820D02* Y8440D01* Y10840D02* Y9986D01* Y21038D02* Y19041D01* X17280Y7180D02* Y7033D01* Y8440D02* Y7820D01* Y9986D02* Y10795D01* Y19041D02* Y21038D01* X17301Y36465D02* Y36927D01* X17303Y36929* Y16614D02* Y16485D01* X17572Y16216* Y15807* X17822Y15556* X18052* X18111Y15497* X18146* X18207Y15436* X18378* X18523Y15291* X17303Y29173D02* Y28465D01* X17717Y28051* X17303Y35079D02* Y34291D01* X17325Y7033D02* Y7180D01* Y7820D02* Y8440D01* Y10750D02* Y9986D01* Y21038D02* Y19041D01* X17343Y16083D02* X17213Y15954D01* X17087* X17362Y22421D02* X16949Y22835D01* X17370Y7180D02* Y7033D01* Y8440D02* Y7820D01* Y9986D02* Y10701D01* Y19041D02* Y21038D01* X17415Y7033D02* Y7180D01* Y7820D02* Y8440D01* Y10694D02* Y9986D01* Y21038D02* Y19041D01* X17421Y12362D02* X16969Y12815D01* X17460Y8440D02* Y7820D01* Y9986D02* Y10694D01* Y19146D02* Y21038D01* X17500Y17028D02* X17622Y16906D01* Y16526* X17770Y16378* Y15889* X17896Y15763* X18126* X18146Y15743* X18181* X18203Y15721* X18533* X18673Y15581* X17505Y7820D02* Y8440D01* Y10694D02* Y9986D01* Y21038D02* Y19198D01* X17539Y28683D02* Y29173D01* X17550Y8438D02* Y7820D01* Y9986D02* Y10694D01* Y19224D02* Y21038D01* X17579Y34291D02* Y35039D01* X17539Y35079* X17595Y7820D02* Y8196D01* Y10694D02* Y9960D01* Y21038D02* Y19236D01* X17640Y8151D02* Y7843D01* Y9915D02* Y10694D01* Y19236D02* Y21038D01* X17685Y7857D02* Y8125D01* Y10710D02* Y8689D01* Y21038D02* Y19225D01* X17717Y7677D02* X17795D01* X17835Y7717* X17717Y28327D02* X17485Y28558D01* Y28629* X17539Y28683* X17717Y28602D02* X17909D01* X18012Y28705* Y29173* X17721Y17505D02* X17835Y17618D01* X17730Y8125D02* Y7859D01* Y8644D02* Y10723D01* Y19199D02* Y21038D01* X17775Y7852D02* Y8125D01* Y10723D02* Y8599D01* Y21038D02* Y19148D01* X17776Y12579D02* X17781Y12584D01* X18390* X18523Y12451* X17795Y36929D02* X17801Y36923D01* Y36465* X17820Y8125D02* Y7864D01* Y8554D02* Y10723D01* Y19041D02* Y21038D01* X17835Y5295D02* X17520D01* X17835Y5866D02* X17976Y6007D01* X18054* X18218Y6171* X18383* X18523Y6311* X17835Y6142D02* X18018D01* X18188Y6311* X18208* X17835Y6772D02* X17736D01* X17835Y7717D02* X17931Y7813D01* X18079* X18208Y7684* Y7451* X17835Y11881D02* X18208D01* X17835Y11991D02* X18033D01* X18056Y12014* X18390* X18523Y11881* X17835Y12287D02* X17637D01* X17616Y12308* X17475* X17421Y12362* X17835Y18031D02* X17899D01* X18657Y17273* Y17185* X18681Y17161* Y16733* X18838Y16575* Y16516* X17865Y7887D02* Y8125D01* Y10743D02* Y8509D01* Y21038D02* Y19041D01* X17894Y25945D02* Y26555D01* X17657Y26791* X17910Y8125D02* Y7910D01* Y8490D02* Y10788D01* Y19041D02* Y21038D01* X17955Y7913D02* Y8125D01* Y10159D02* Y8490D01* Y10833D02* Y10431D01* Y21038D02* Y19041D01* X17992Y16319D02* Y16215D01* X18163Y16044* X18313* X18496Y15861* X18523* X18000Y8103D02* Y7913D01* Y8490D02* Y10114D01* Y10476D02* Y10816D01* Y19041D02* Y21038D01* X18031Y17421D02* X18369D01* X18539Y17252* Y17103* X18380Y16945* Y16772* X18478Y16674* X18568* X18666Y16575* Y16344* X18523Y16201* X18031Y35748D02* Y35787D01* X17907Y35911* X14159* X13878Y35630* X18045Y7913D02* Y8078D01* Y10093D02* Y8490D01* Y10804D02* Y10521D01* Y21038D02* Y19041D01* X18071Y11673D02* X18153Y11591D01* X18358* X18090Y8067D02* Y7912D01* Y8490D02* Y8961D01* Y9464D02* Y10093D01* Y10566D02* Y10803D01* Y19041D02* Y21038D01* X18130Y25945D02* Y26594D01* X17657Y27067* X18130Y32421D02* Y31850D01* Y32717D02* X17894Y32480D01* Y31850* X18135Y7895D02* Y8067D01* Y8916D02* Y8490D01* Y10093D02* Y9509D01* Y10813D02* Y10611D01* Y21038D02* Y19041D01* X18180Y8079D02* Y7853D01* Y8470D02* Y8871D01* Y9554D02* Y10092D01* Y10653D02* Y10838D01* Y19041D02* Y21038D01* X18184Y14912D02* X18218Y14878D01* X18376* X18523Y14731* X18208Y6881D02* X17992Y6665D01* Y6476* X18208Y12451D02* X18153Y12396D01* X17682* X17500Y12579* X18208Y13581D02* X18050D01* X17972Y13504* X18208Y14151D02* X17837D01* X17559Y14429* X18225Y15011D02* X18358D01* X18225Y7820D02* Y8088D01* Y8826D02* Y8425D01* Y10047D02* Y9599D01* Y10841D02* Y10655D01* Y21038D02* Y19041D01* X18248Y29173D02* Y28583D01* X18366Y28465* X18248Y34094D02* X18012Y34331D01* Y35079* X18248Y34390D02* Y35079D01* X18268Y18031D02* Y17832D01* X18757Y17344* Y17226* X18996Y16987* Y16689* X19168Y16516* X18268Y18307D02* X18484Y18091D01* Y17990* X18630Y17844* X18772* X19003Y17613* Y17328* X19311Y17021* Y16640* X19435Y16516* X19738* X18270Y8062D02* Y7841D01* Y8380D02* Y8781D01* Y9644D02* Y9991D01* Y10655D02* Y10841D01* Y19041D02* Y20849D01* X18307Y36929D02* X18301Y36923D01* Y36465* X18315Y7867D02* Y8058D01* Y8736D02* Y8335D01* Y10841D02* Y10655D01* Y20799D02* Y19041D01* X18358Y12731D02* X18347Y12742D01* X17862* X17800Y12805* X17648* X17421Y13031* X18358Y13301D02* X18279Y13222D01* X17427* X17146Y13504* X18358Y15581D02* X18203D01* X18155Y15628* X18120* X18090Y15658* X17861* X17671Y15848* Y16337* X17523Y16485* Y16700* X17303Y16919* Y17244* X18360Y8038D02* Y7874D01* Y8293D02* Y8691D01* Y10655D02* Y10841D01* Y19041D02* Y20774D01* X18366Y26654D02* X18602Y26417D01* Y25945* X18405Y7866D02* Y7960D01* Y8676D02* Y8293D01* Y10841D02* Y10655D01* Y20764D02* Y19041D01* X18450Y7910D02* Y7838D01* Y8293D02* Y8676D01* Y10655D02* Y10841D01* Y19041D02* Y20764D01* X18495Y7820D02* Y7891D01* Y8676D02* Y8293D01* Y10841D02* Y10656D01* Y20776D02* Y19041D01* X18523Y6881D02* X18389D01* X18342Y6928* Y6937* X18264Y7015* X18118* X17874Y6772* X17835* X18523Y7451D02* X18389Y7317D01* X18153* X18012Y7458* Y7618* X18523Y11301D02* X18643Y11181D01* X18780* X18523Y13011D02* X18383Y12871D01* X18190* X18168Y12849* X17897* X17714Y13031* X17697* X18523Y13581D02* X18390Y13714D01* X17907* X17697Y13504* X18523Y14151D02* X18378Y14296D01* X17968* X17835Y14429* X18540Y7889D02* Y7820D01* Y8293D02* Y8676D01* Y10701D02* Y10834D01* Y19041D02* Y20803D01* X18585Y7841D02* Y7903D01* Y8676D02* Y8293D01* Y20857D02* Y19041D01* X18602Y31850D02* Y32677D01* X18780Y32854* X18630Y7942D02* Y7867D01* Y8293D02* Y8676D01* Y19041D02* Y21038D01* X18673Y5461D02* Y5469D01* X18539* X18492Y5516* Y5517* X18400Y5609* X18265* X18264Y5607* X18234* X18166Y5539* X18094Y5466* X18041* X17870Y5295* X17835* X18673Y12161D02* X18540Y12294D01* X18303* X18296Y12287* X17835* X18673Y13301D02* X18540Y13434D01* X18232* X18119Y13321* X17604* X17421Y13504* X18673Y13871D02* X18540Y14004D01* X17907* X17716Y13814* X17543* X17283Y14073* Y14429* X18673Y15011D02* X18526Y15158D01* X17930* X17714Y15374* X17697* X18675Y3211D02* Y4033D01* Y7874D02* Y8125D01* Y8676D02* Y8293D01* Y21038D02* Y19041D01* X18681Y24665D02* Y24867D01* X18565Y24984* X16713* X16516Y24787* Y24626* X18720Y3560D02* Y3208D01* Y4069D02* Y3722D01* Y8125D02* Y7866D01* Y8293D02* Y8530D01* Y19041D02* Y21038D01* Y34370D02* Y35079D01* X18740Y11398D02* X18673Y11465D01* Y11591* X18765Y3223D02* Y3518D01* Y3764D02* Y4069D01* Y7838D02* Y8125D01* Y8480D02* Y8293D01* Y21038D02* Y19041D01* X18799Y37480D02* X18801Y37482D01* Y37945* Y36465D02* Y36927D01* X18799Y36929* X18803Y16051D02* Y16106D01* X19035Y16339* X18810Y3501D02* Y3236D01* Y4069D02* Y3782D01* Y8125D02* Y7820D01* Y8293D02* Y8461D01* Y19041D02* Y21038D01* Y25241D02* Y26314D01* Y30595D02* Y32219D01* X18838Y11881D02* Y11638D01* X18907Y11570* Y11447* X19016Y11339* X18838Y13581D02* X19054D01* X19075Y13602* X18855Y3247D02* Y3499D01* Y3783D02* Y4069D01* Y7820D02* Y8125D01* Y8459D02* Y8293D01* Y21064D02* Y19041D01* Y26314D02* Y25196D01* Y32219D02* Y30550D01* X18900Y3512D02* Y3256D01* Y4069D02* Y3770D01* Y8125D02* Y7820D01* Y8305D02* Y8473D01* Y19041D02* Y21109D01* Y25151D02* Y26314D01* Y28805D02* Y32219D01* X18937Y28465D02* X18720Y28681D01* Y29173* X18945Y3263D02* Y3546D01* Y3736D02* Y4069D01* Y7820D02* Y8125D01* Y8500D02* Y8350D01* Y21154D02* Y19041D01* Y25497D02* Y25106D01* Y31403D02* Y28805D01* X18971Y18120D02* X18883Y18031D01* X18701* X18971Y18219D02* X18883Y18307D01* X18701* X18981Y3641D02* G03X18838Y3784I143D01* X18695Y3641J143* X18838Y3498I143* X18981Y3641J143* G01X18990Y4046D02* Y3268D01* Y8125D02* Y7820D01* Y8395D02* Y8455D01* Y19041D02* Y21199D01* Y25061D02* Y25477D01* Y28805D02* Y31383D01* X18991Y8396D02* X18887Y8293D01* X18357* X18167Y8482* G03X18150Y8490I17J17* G01X17884* X17663Y8711* Y9882* G03X17655Y9900I25* G01X17577Y9978* G03X17559Y9986I18J17* G01X16929* G03X16911Y9978J25* G01X16793Y9860* G03X16786Y9843I18J17* G01Y9105* X16518Y8837* G03X16510Y8819I17J18* G01Y7727* X16446Y7663* X13869* X13805Y7727* Y8100* X13869Y8164* X14882* G03X14900Y8171J25* G01X14978Y8250* G03X14986Y8268I17J18* G01Y9793* X15178Y9985* G03X15291Y10098I60J172* G01X15562Y10369* X15855* G03X15925Y10319I70J25* G01X16358* G03X16428Y10369J75* G01X16654* G03X16671Y10376J25* G01X16684Y10388* X16732* G03X16757Y10413J25* G01Y10472* Y10935* X16782Y10959* X17116* X17331Y10743* G03X17402Y10694I71J25* G01X17638* G03X17697Y10723J74* G01X17835* G03X17852Y10730J25* G01X17961Y10839* G03X18071Y10802I110J145* X18184Y10841J182* G01X18533* X18558Y10816* Y10719* X18494Y10655* X18189* G03X18171Y10648J25* G01X17935Y10411* G03X17928Y10394I18J17* G01Y10197* G03X17935Y10179I25* G01X18014Y10100* G03X18031Y10093I17J18* G01X18179* X18238Y10034* G03X18282Y9982I120J57* G01Y9656* X18053Y9427* G03X18046Y9409I18J18* G01Y9016* G03X18053Y8998I25* G01X18258Y8793* G03X18270Y8781I100J88* G01X18368Y8683* G03X18386Y8676I18J18* G01X18735* G03X18705Y8591I103J85* X18838Y8458I133* X18940Y8505J133* G01X18991Y8454* Y8396* X18996Y11752D02* X19069D01* X19178Y11861* X19035Y3271D02* Y3560D01* Y7820D02* Y8070D01* Y22847D02* Y19041D01* Y23738D02* Y23176D01* Y24022D02* Y23978D01* Y24503D02* Y24285D01* Y25477D02* Y24868D01* Y31382D02* Y28805D01* X19048Y15491D02* Y15525D01* X18547Y16026* X18496* X18366Y16156* Y16561* X18267Y16659* X18057* X17899Y16501* X17788* X17721Y16567* Y17505* X19057Y13063D02* Y12972D01* X19178Y12851* X19058Y5611D02* X19181Y5488D01* Y5484* X19311Y5354* X19069Y7845D02* X19045Y7820D01* X18780* G03X18673Y7874I107J79* X18566Y7820J133* G01X18465* G03X18358Y7874I107J79* X18251Y7820J133* G01X18213* X18149Y7883* G03X18079Y7913I70J70* G01X17931* G03X17861Y7883J100* G01X17843Y7865* G03X17835I8J148* X17772Y7851J148* X17717Y7860I55J174* X17603Y7820J183* G01X17205* G03X17187Y7813J25* G01X17108Y7734* G03X17101Y7717I18J17* G01Y7283* G03X17108Y7266I25* G01X17187Y7187* G03X17205Y7180I18J18* G01X17431* X17455Y7155* Y7053* X17445Y7033* X17205* G03X17187Y7026J25* G01X17108Y6947* G03X17101Y6929I18J18* G01Y6339* G03X17108Y6321I25* G01X17140Y6289* Y5931* X16703* X16679Y5955* Y8375* X16743Y8440* X17549* X17573Y8415* Y8228* G03X17581Y8211I25* G01X17659Y8132* G03X17677Y8125I18J18* G01X17976* G03X18110Y8066I134J123* X18215Y8099J182* G01X18225Y8088* G03X18298Y8058I73J74* G01X18299* X18340* X18391Y8007* G03X18523Y7888I132J14* X18656Y8021J133* X18607Y8125I133* G01X19002* G03X19069Y8039I171J64* G01Y7845* X19080Y3518D02* Y3273D01* Y19041D02* Y19781D01* Y19904D02* Y22833D01* Y23191D02* Y23852D01* Y23865D02* Y24063D01* Y24244D02* Y24508D01* Y24862D02* Y25477D01* Y29633D02* Y31382D01* X19125Y3273D02* Y3477D01* Y19711D02* Y19041D01* Y22830D02* Y19974D01* Y24526D02* Y23194D01* Y25477D02* Y24844D01* Y31382D02* Y29641D01* X19170Y3432D02* Y3270D01* Y19041D02* Y19679D01* Y20006D02* Y22838D01* Y23186D02* Y24562D01* Y24808D02* Y25479D01* Y29641D02* Y31384D01* X19178Y13831D02* X19034D01* X18938Y13735* X18587* X18492Y13830* X18358* Y13871* X19215Y3266D02* Y3400D01* Y19664D02* Y19041D01* Y22860D02* Y20021D01* Y24653D02* Y23164D01* Y25479D02* Y24718D01* Y31385D02* Y29641D01* X19252Y11220D02* Y11001D01* X19178Y10927* Y10871* X19260Y3400D02* Y3261D01* Y19041D02* Y19660D01* Y20025D02* Y22902D01* Y23122D02* Y25477D01* Y29641D02* Y31382D01* X19291Y15098D02* X19363Y15027D01* Y14851* X19291Y32579D02* X19523D01* X19783Y32318* Y31850* X19301Y36465D02* Y36919D01* X19311Y36929* X19301Y37945D02* Y37392D01* X19291Y37382* X19305Y3253D02* Y3400D01* Y19668D02* Y19041D01* Y25477D02* Y20017D01* Y31382D02* Y29633D01* X19308Y15671D02* Y15889D01* X19291Y15906* X19311Y25945D02* Y26413D01* X19070Y26654* X18839* X19311Y31850D02* Y32318D01* X19239Y32391* X19066* X18937Y32520* X19350Y3400D02* Y3243D01* Y19041D02* Y19689D01* Y19996D02* Y25477D01* Y29641D02* Y30826D01* Y31064D02* Y31382D01* Y15394D02* X19271D01* X19048Y15171* X19368Y7901D02* Y7478D01* X19252Y7362* X19368Y8881D02* Y8737D01* X19370Y8735* Y8406* X19368Y11591D02* X19266Y11489D01* X19219* X19134Y11575* X19370Y13980D02* Y13563D01* X19368Y13561* X19378Y5601D02* X19495Y5484D01* X19516* X19646Y5354* X19395Y3231D02* Y3400D01* Y19729D02* Y19041D01* Y22242D02* Y19956D01* Y24998D02* Y22364D01* Y25477D02* Y25199D01* Y30788D02* Y29641D01* Y31383D02* Y31102D01* X19409Y18307D02* X19818Y17899D01* Y17720* X19926Y17611* X19948* X20441Y17117* Y16649* X20308Y16516* X19429Y35079D02* Y34370D01* X19434Y19843D02* G03X19252Y20025I182D01* X19069Y19843J182* X19252Y19660I183* X19434Y19843J183* G01X19440Y3387D02* Y3218D01* Y19041D02* Y22172D01* Y22434D02* Y24951D01* Y25246D02* Y25497D01* Y29641D02* Y30043D01* Y30193D02* Y30769D01* Y31121D02* Y31402D01* X19458Y16681D02* X19552Y16775D01* Y16877* X19485Y3202D02* Y3381D01* Y22140D02* Y19041D01* Y24927D02* Y22466D01* Y26314D02* Y25270D01* Y29982D02* Y29641D01* Y30762D02* Y30254D01* Y32219D02* Y31127D01* X19524Y14681D02* X19498D01* X19303Y14486* X19528Y27205D02* X19852Y26880D01* Y26838* X20256Y26435* Y25945* X19530Y3385D02* Y3184D01* Y19041D02* Y22124D01* Y22482D02* Y24917D01* Y25280D02* Y26314D01* Y29638D02* Y29952D01* Y30284D02* Y30767D01* Y31123D02* Y32219D01* X19552Y16877D02* X19545Y16884D01* Y16927* X19108Y17364* Y18025* X19013Y18120* X18971* X19558Y7621D02* Y7477D01* X19488Y7407* Y7165* X19558Y8611D02* Y8198D01* X19587Y8169* X19558Y10871D02* Y11014D01* X19508Y11064* Y11378* X19558Y11861D02* Y12135D01* X19547Y12146* X19558Y12851D02* X19358Y13051D01* X19331* X19558Y13831D02* Y14119D01* X19429Y14248* X19575Y3163D02* Y3400D01* Y22121D02* Y19041D01* Y24918D02* Y22485D01* Y26314D02* Y25279D01* Y29938D02* Y29599D01* Y30784D02* Y30298D01* Y32219D02* Y31105D01* X19620Y3400D02* Y3140D01* Y19041D02* Y22129D01* Y22478D02* Y24931D01* Y25266D02* Y26314D01* Y28805D02* Y29936D01* Y30300D02* Y30819D01* Y31071D02* Y32219D01* X19652Y16918D02* X19644Y16925D01* Y16968* X19207Y17405* Y18066* X19054Y18219* X18971* X19665Y3115D02* Y3400D01* Y22149D02* Y19041D01* Y24959D02* Y22457D01* Y25488D02* Y25238D01* Y29945D02* Y28805D01* Y30900D02* Y30291D01* Y31394D02* Y30990D01* Y27638D02* X20374Y28346D01* Y29173* X19665Y28189D02* X19429Y28425D01* Y29173* X19665Y28465D02* X19902Y28701D01* Y29173* X19671Y30945D02* G03X19488Y31127I183D01* X19306Y30945J182* X19488Y30762I182* X19671Y30945J183* G01X19685Y13051D02* X19748Y12988D01* Y12581* X19705Y14272D02* X19715Y14261D01* X19938* X19710Y3400D02* Y3086D01* Y19041D02* Y22190D01* Y22416D02* Y25016D01* Y25181D02* Y25477D01* Y28805D02* Y29968D01* Y30268D02* Y31382D01* X19730Y25098D02* G03X19547Y25281I183D01* X19365Y25098J183* X19547Y24916I182* X19730Y25098J182* G01X19738Y16201D02* X19698Y16161D01* Y15860* X19547Y15709* X19738Y16831D02* X19652Y16918D01* X19744Y13996D02* Y13823D01* X20006Y13561* X20118* X19748Y5931D02* X19980Y5699D01* Y5571* X19748Y6911D02* Y6767D01* X19744Y6763* Y6417* X19749Y22303D02* G03X19567Y22486I182D01* X19384Y22303J183* X19567Y22121I183* X19749Y22303J182* G01X19755Y3055D02* Y3400D01* Y25477D02* Y19041D01* Y30012D02* Y29597D01* Y31382D02* Y30224D01* X19758Y14536D02* X19921Y14699D01* Y14705* X19783Y25945D02* Y26413D01* X19267Y26929* X18839* X19789Y30118D02* G03X19606Y30301I183D01* X19424Y30118J183* X19606Y29936I182* X19789Y30118J182* G01X19800Y3400D02* Y3019D01* Y19041D02* Y25477D01* Y29638D02* Y31382D01* X19801Y36465D02* Y36907D01* X19823Y36929* Y36909* X19801Y37945D02* Y37518D01* X19665Y37382* X19845Y2980D02* Y3400D01* Y25477D02* Y19041D01* Y31382D02* Y29641D01* X19888Y15141D02* X19646Y15384D01* Y15394* X19890Y3400D02* Y2936D01* Y19041D02* Y25482D01* Y29641D02* Y31388D01* X19902Y35079D02* Y34567D01* X19429Y34094* X19908Y11861D02* Y12054D01* X19961Y12106* X19918Y12851D02* X19872Y12897D01* Y13122* X19668Y13327* X19646* X19921Y15650D02* X19975Y15596D01* X20168* X19935Y2887D02* Y3400D01* Y25477D02* Y19041D01* Y31383D02* Y29641D01* X19938Y6641D02* Y6497D01* X19941Y6495* Y6201* X19961Y16142D02* Y16009D01* X19858Y15906* X19980Y3400D02* Y2831D01* Y19041D02* Y19229D01* Y19314D02* Y25477D01* Y29641D02* Y31382D01* X20020Y25945D02* Y26437D01* X19528Y26929* X20020Y31850D02* Y32318D01* X19514Y32824* X19420* X19291Y32953* X20025Y2766D02* Y3389D01* Y19146D02* Y19041D01* Y21317D02* Y19397D01* Y25477D02* Y21439D01* Y31382D02* Y29633D01* X20028Y16366D02* X19883Y16511D01* Y16877* X19390Y17370* Y17480* X20070Y3381D02* Y2690D01* Y19041D02* Y19112D01* Y19432D02* Y21247D01* Y21509D02* Y25477D01* Y29641D02* Y31382D01* X20115Y2598D02* Y3384D01* Y19094D02* Y19041D01* Y21215D02* Y19449D01* Y25479D02* Y21541D01* Y31384D02* Y29641D01* X20118Y5931D02* X20256Y5793D01* Y5689* X20138Y29173D02* Y28386D01* X19665Y27913* X20138Y35079D02* Y34370D01* X20148Y14921D02* X20033Y15036D01* Y15262* X19921Y15374* X20157Y12323D02* Y11924D01* X20118Y11885* Y11591* X20160Y3400D02* Y2553D01* Y19041D02* Y19089D01* Y19454D02* Y21199D01* Y21557D02* Y25479D01* Y29641D02* Y30612D01* Y30805D02* Y31384D01* X20177Y26772D02* X20369D01* X20728Y26413* Y25945* X20177Y27047D02* X20354Y26871D01* X20506* X20965Y26413* Y25945* X20197Y27638D02* X20899D01* X21364Y27174* X22226* X22784Y27732* X22993* X23204Y27521* X31789* X32004Y27736* X32303* X20197Y27874D02* X21191D01* X21592Y27473* X22324* X22814Y27963* X23287* X23527Y27723* X31695* X31939Y27968* X32327* X32440Y27855* X32539Y27756* Y27736* X20205Y2508D02* Y3400D01* Y19095D02* Y19041D01* Y21196D02* Y19448D01* Y25477D02* Y21560D01* Y30563D02* Y29641D01* Y31382D02* Y30854D01* X20250Y3400D02* Y2463D01* Y19041D02* Y19114D01* Y19429D02* Y21203D01* Y21553D02* Y25477D01* Y29633D02* Y30538D01* Y30879D02* Y31382D01* X20251Y21142D02* G03X20433Y20959I182D01* X20616Y21142J183* X20433Y21324I183* X20367Y21312J182* X20379Y21378I170J66* X20197Y21560I182* X20014Y21378J182* X20197Y21195I183* X20263Y21208J183* X20251Y21142I170J66* G01X20256Y31850D02* Y32318D01* X20178Y32396* X20121* X20014Y32503* Y32770* X20197Y32953* X20295Y2418D02* Y3400D01* Y19152D02* Y19041D01* Y21022D02* Y19392D01* Y25477D02* Y21532D01* Y30527D02* Y29641D01* Y31382D02* Y30890D01* X20298Y6641D02* Y6741D01* X20468Y6911* X20308Y16201D02* X20169Y16341D01* Y17109* X20056Y17222* X19924* X19390Y17756* X20308Y16831D02* Y17110D01* X20097Y17321* X20076* X19718Y17679* Y17703* X19390Y18031* X20311Y15091D02* Y15148D01* X20178Y15281* X20315Y36929D02* X20301Y36915D01* Y36465* X20318Y12851D02* X20256Y12913D01* Y13307* X20335Y15453D02* Y15670D01* X20346Y15681* Y15732* X20452Y15838* X20591* X20811Y16058* X20925* X20969Y16102* X21201* X20340Y19272D02* G03X20157Y19454I183D01* X19975Y19272J182* X20157Y19089I182* X20340Y19272J183* G01Y3365D02* Y2373D01* Y19041D02* Y20985D01* Y21491D02* Y24899D01* Y25101D02* Y25477D01* Y29641D02* Y30528D01* Y30889D02* Y31383D01* X20374Y35079D02* Y34331D01* X20138Y34094* X20385Y2348D02* Y2810D01* Y20966D02* Y19041D01* Y24852D02* Y21318D01* Y25497D02* Y25148D01* Y30540D02* Y29641D01* Y31402D02* Y30877D01* X20430Y2802D02* Y2348D01* Y19041D02* Y20959D01* Y21324D02* Y24828D01* Y25172D02* Y26314D01* Y29641D02* Y30567D01* Y30850D02* Y32219D01* X20433Y6437D02* X20340D01* X20298Y6479* Y6641* X20433Y12323D02* Y11930D01* X20468Y11895* Y11591* Y7901D02* Y7757D01* X20453Y7742* Y7362* X20468Y12571D02* Y13095D01* X20453Y13110* X20468Y14291D02* Y14504D01* X20512Y14547* X20472Y8169D02* Y8420D01* X20468Y8424* Y8881* X20472Y13996D02* Y13566D01* X20468Y13561* X20475Y2348D02* Y2757D01* Y20964D02* Y19041D01* Y24818D02* Y21319D01* Y26314D02* Y25182D01* Y30621D02* Y29638D01* Y32219D02* Y30796D01* X20497Y30709D02* G03X20315Y30891I182D01* X20132Y30709J182* X20315Y30526I183* X20497Y30709J183* G01X20520Y2731D02* Y2348D01* Y19041D02* Y20981D01* Y21302D02* Y24820D01* Y25180D02* Y26314D01* Y29598D02* Y30013D01* Y30223D02* Y32219D01* X20565Y2348D02* Y2731D01* Y21016D02* Y19041D01* Y24833D02* Y21268D01* Y26314D02* Y25167D01* Y29968D02* Y28805D01* Y32219D02* Y30268D01* X20571Y17402D02* X20654Y17318D01* Y16915* X20738Y16831* Y16341* X20878Y16201* X20571Y17697D02* X20753Y17514D01* Y16956* X20878Y16831* X20598Y3791D02* X20486Y3679D01* Y3431* X20650Y3268* X20598Y4111D02* X20747Y3962D01* Y3725* X20669Y3647* Y3543* X20598Y16681D02* X20555Y16724D01* Y17144* X20000Y17699* Y17795* X20610Y2731D02* Y2348D01* Y19032D02* Y21097D01* Y21186D02* Y24861D01* Y25139D02* Y25488D01* Y28805D02* Y29946D01* Y30291D02* Y31394D01* Y28465D02* X20846Y28701D01* Y29173* X20610Y34370D02* X20846Y34606D01* Y35079* X20643Y8611D02* Y8294D01* X20768Y8169* X20648Y7621D02* X20644Y7617D01* Y7152* X20650Y7146* X20648Y12851D02* X20640Y12860D01* Y13337* X20610Y13366* X20650Y3268D02* X20669Y3248D01* X20655Y2348D02* Y2731D01* Y24918D02* Y18987D01* Y25477D02* Y25082D01* Y29936D02* Y28805D01* Y31382D02* Y30300D01* X20669Y11102D02* X20658Y11091D01* Y10871* X20675Y25000D02* G03X20492Y25182I183D01* X20310Y25000J182* X20492Y24818I182* X20675Y25000J182* G01X20700Y2731D02* Y2348D01* Y18450D02* Y23468D01* Y23619D02* Y25477D01* Y29597D02* Y29938D01* Y30298D02* Y31382D01* X20709Y12283D02* X20871D01* X20998Y12157* Y11861* X20728Y15669D02* X20716Y15681D01* X20498* X20728Y31850D02* Y32318D01* X20468Y32579* X20197* X20745Y2348D02* Y2731D01* Y23407D02* Y18450D01* Y25477D02* Y23680D01* Y29952D02* Y29638D01* Y31382D02* Y30284D01* X20746Y15116D02* X20693D01* X20498Y14921* X20758Y14571D02* Y14754D01* X20709Y14803* X20768Y5371D02* X20903Y5236D01* X21004* X20790Y2731D02* Y2348D01* Y18450D02* Y23377D01* Y23709D02* Y25477D01* Y29641D02* Y29981D01* Y30255D02* Y31382D01* X20807Y12028D02* Y12020D01* X20648Y11861* X20827Y13031D02* Y12849D01* X20828Y12848* Y12581* X20835Y2348D02* Y2731D01* Y23364D02* Y18450D01* Y25482D02* Y23723D01* Y30042D02* Y29641D01* Y31388D02* Y30195D01* X20846Y17972D02* X21225Y17594D01* Y17163* X21301Y17087* Y16499* X21168Y16366* X20846Y18248D02* X21201Y17894D01* X21288* X21324Y17858* Y17204* X21448Y17080* Y16831* X20852Y30118D02* G03X20669Y30301I183D01* X20487Y30118J183* X20669Y29936I182* X20852Y30118J182* G01X20858Y6391D02* Y6247D01* X20944Y6161* X20965* X20878Y16516D02* X21011Y16649D01* Y16899* X20853Y17057* Y17690* X20846Y17697* X20880Y2731D02* Y2348D01* Y18450D02* Y23321D01* Y23725D02* Y25477D01* Y29641D02* Y30596D01* Y30821D02* Y31383D01* X20886Y32520D02* X20965Y32441D01* Y31850* X20925Y2348D02* Y2731D01* Y23218D02* Y18450D01* Y25477D02* Y23716D01* Y30555D02* Y29641D01* Y31382D02* Y30862D01* X20965Y14114D02* X20828Y13978D01* Y13561* X20970Y2731D02* Y2348D01* Y18450D02* Y20165D01* Y20425D02* Y20520D01* Y20780D02* Y22606D01* Y22866D02* Y22961D01* Y23693D02* Y25477D01* Y29633D02* Y30534D01* Y30883D02* Y31382D01* X20978Y15535D02* X21031Y15481D01* X21208* X20998Y7621D02* X21069Y7550D01* Y7152* X21063Y7146* X20998Y10871D02* Y11049D01* X20650Y11398* Y11437* X21015Y2348D02* Y2731D01* Y20143D02* Y18450D01* Y22584D02* Y20802D01* Y25477D02* Y23649D01* Y30526D02* Y29641D01* Y31382D02* Y30891D01* X21018Y13871D02* X21240Y14093D01* Y14114* X21060Y2731D02* Y2348D01* Y18450D02* Y20142D01* Y20803D02* Y22583D01* Y23522D02* Y25479D01* Y29641D02* Y30530D01* Y30887D02* Y31384D01* X21083Y29173D02* Y28661D01* X20610Y28189* X21083Y35079D02* Y34508D01* X21220Y34370* X21105Y2348D02* Y2731D01* Y20142D02* Y18450D01* Y22583D02* Y20803D01* Y25479D02* Y23516D01* Y30545D02* Y29641D01* Y31384D02* Y30872D01* X21150Y2731D02* Y2348D01* Y18450D02* Y20142D01* Y20803D02* Y22583D01* Y23499D02* Y25477D01* Y29641D02* Y30577D01* Y30840D02* Y31382D01* X21178Y12581D02* Y12950D01* X21319Y13091* X21195Y2348D02* Y2731D01* Y20142D02* Y18957D01* Y22583D02* Y20803D01* Y25477D02* Y23464D01* Y30646D02* Y29633D01* Y31382D02* Y30771D01* X21198Y7901D02* Y7444D01* X21260Y7382* X21201Y25945D02* Y26437D01* X21437Y26673* X21201Y31850D02* Y32559D01* X20886Y32874* X21206Y30709D02* G03X21024Y30891I182D01* X20841Y30709J182* X21024Y30526I183* X21206Y30709J183* G01X21208Y15111D02* X21127D01* X20990Y15249* X21208Y15861D02* X20969D01* X20965Y15866* X21240Y2731D02* Y2348D01* Y18972D02* Y20142D01* Y20803D02* Y22583D01* Y23377D02* Y25477D01* Y29641D02* Y31382D01* X21260Y11358D02* X21304Y11402D01* Y11455* X21168Y11591* X21260Y13839D02* X21178Y13757D01* Y13581* X21285Y2348D02* Y2731D01* Y20147D02* Y18972D01* Y20501D02* Y20444D01* Y21644D02* Y20881D01* Y22588D02* Y21857D01* Y25477D02* Y23239D01* Y31383D02* Y29641D01* X21319Y29173D02* Y28425D01* X21555Y28189* X21319Y35079D02* Y34530D01* X21403Y34446* Y34277* X21220Y34094* X21330Y2731D02* Y2327D01* Y18972D02* Y20172D01* Y20482D02* Y20526D01* Y20919D02* Y21600D01* Y21901D02* Y22613D01* Y23193D02* Y25497D01* Y29641D02* Y30042D01* Y30194D02* Y31402D01* X21375Y2282D02* Y2731D01* Y20163D02* Y18972D01* Y21577D02* Y20938D01* Y22614D02* Y21923D01* Y26314D02* Y23168D01* Y29982D02* Y29641D01* Y32219D02* Y30255D01* X21420Y2731D02* Y1450D01* Y18972D02* Y20153D01* Y20516D02* Y20542D01* Y20945D02* Y21568D01* Y21932D02* Y22629D01* Y23197D02* Y26314D01* Y29638D02* Y29952D01* Y30284D02* Y32219D01* X21448Y16516D02* X21581Y16649D01* Y17087* X21423Y17246* Y17663* X21673Y17913* X21465Y1405D02* Y2731D01* Y20154D02* Y18972D01* Y20581D02* Y20515D01* Y21571D02* Y20940D01* Y22668D02* Y21930D01* Y26314D02* Y23211D01* Y29938D02* Y29598D01* Y32219D02* Y30298D01* X21478Y14211D02* Y14214D01* X21713Y14449* X21510Y2731D02* Y1403D01* Y18972D02* Y20167D01* Y20502D02* Y20602D01* Y20923D02* Y21585D01* Y21916D02* Y22713D01* Y23213D02* Y26314D01* Y28805D02* Y29936D01* Y30300D02* Y32219D01* X21535Y11358D02* X21487D01* X21452Y11394* Y11485* X21558Y11591* X21538Y7901D02* Y8127D01* X21535Y8130* X21555Y1403D02* Y2731D01* Y8739D02* Y8311D01* Y9306D02* Y9023D01* Y9669D02* Y9395D01* Y20156D02* Y18972D01* Y20636D02* Y20474D01* Y21614D02* Y20889D01* Y22758D02* Y21886D01* Y25488D02* Y23204D01* Y29945D02* Y28805D01* Y31394D02* Y30291D01* X21594Y11083D02* Y10985D01* X21708Y10871* X21600Y2731D02* Y1403D01* Y8301D02* Y8574D01* Y8649D02* Y8752D01* Y9010D02* Y9538D01* Y9665D02* Y9714D01* Y18972D02* Y20104D01* Y20417D02* Y20716D01* Y20809D02* Y21676D01* Y21825D02* Y22807D01* Y23181D02* Y25477D01* Y28805D02* Y29968D01* Y30268D02* Y31382D01* X21614Y13091D02* X21485Y12962D01* X21468* X21358Y12851* X21616Y21750D02* G03X21433Y21933I183D01* X21251Y21750J183* X21433Y21568I182* X21616Y21750J182* G01X21619Y22897D02* G03X21679Y23031I123J134D01* X21496Y23214I183* X21334Y23115J183* G01Y23169* G03X21265Y23243I74* G01Y23269* G03X21244Y23338I123* G01Y23339* G03X21062Y23522I182* X21047Y23521J183* X21049Y23543I181J22* X20866Y23726I183* X20684Y23543J183* X20866Y23361I182* X20880J182* X20879Y23339I182J22* X20953Y23192I183* X20949Y23169I71J23* G01Y23012* G03X20999Y22942I75* G01Y22885* G03X20949Y22815I25J70* G01Y22657* G03X21024Y22583I75* G01X21260* G03X21319Y22613J74* G01X21359* G03X21446Y22649J123* G01X21583Y22786* G03X21619Y22873I87J87* G01Y22897* X21645Y1403D02* Y2731D01* Y8503D02* Y8276D01* Y8786D02* Y8720D01* Y9485D02* Y8976D01* Y9757D02* Y9718D01* Y19733D02* Y18972D01* Y20079D02* Y20031D01* Y22926D02* Y20418D01* Y25477D02* Y23137D01* Y30013D02* Y29598D01* Y31382D02* Y30224D01* X21673Y25945D02* Y26713D01* X21437Y26949* X21673Y31850D02* Y32318D01* X21601Y32391* X21586* X21457Y32520* X21679Y30118D02* G03X21496Y30301I183D01* X21314Y30118J183* X21496Y29936I182* X21679Y30118J182* G01X21690Y2731D02* Y1403D01* Y8227D02* Y8476D01* Y8746D02* Y9463D01* Y9739D02* Y9804D01* Y18970D02* Y19693D01* Y20429D02* Y25477D01* Y29638D02* Y31382D01* X21708Y7621D02* Y7771D01* X21811Y7874* X21708Y12851D02* X21909D01* X21925Y12835* X22165* X21713Y14803D02* X21596D01* X21478Y14921* X21713Y15827D02* X21858Y15681D01* X21928* X21732Y5394D02* X21549D01* X21527Y5371* X21208* X21732Y5709D02* X21758Y5734D01* X22185* X22188Y5731* X21732Y6398D02* X21615D01* X21478Y6261* X21735Y1403D02* Y2731D01* Y8468D02* Y8104D01* Y9458D02* Y8754D01* Y10041D02* Y9744D01* Y10628D02* Y10474D01* Y19690D02* Y18939D01* Y25477D02* Y20429D01* Y31382D02* Y29641D01* X21738Y16681D02* X21681Y16739D01* Y17128* X21522Y17287* Y17487* X21673Y17638* X21758Y13311D02* X21890Y13180D01* Y13091* X21780Y2731D02* Y1403D01* Y8059D02* Y8474D01* Y8748D02* Y9468D01* Y9735D02* Y9808D01* Y9935D02* Y9992D01* Y10471D02* Y10628D01* Y10995D02* Y11154D01* Y18903D02* Y19690D01* Y20418D02* Y25482D01* Y29641D02* Y31388D01* X21791Y29173D02* Y28150D01* X21555Y27913* X21791Y34370D02* Y35079D01* X21825Y1403D02* Y2731D01* Y8497D02* Y8056D01* Y9496D02* Y8725D01* Y9755D02* Y9707D01* Y10629D02* Y10452D01* Y11199D02* Y10954D01* Y19690D02* Y18903D01* Y25477D02* Y20392D01* Y31383D02* Y29641D01* X21870Y2731D02* Y1403D01* Y8210D02* Y8556D01* Y8667D02* Y9582D01* Y9620D02* Y9733D01* Y10406D02* Y10648D01* Y11003D02* Y11244D01* Y18903D02* Y19690D01* Y20340D02* Y25477D01* Y29641D02* Y31382D01* X21871Y9601D02* G03X21728Y9744I143D01* X21585Y9601J143* X21728Y9458I143* X21871Y9601J143* G01X21881Y8611D02* G03X21738Y8754I143D01* X21595Y8611J143* X21738Y8468I143* X21881Y8611J143* G01X21909Y13484D02* X21895D01* X21718Y13661* X21909Y25945D02* Y26634D01* X22224Y26949* X21909Y31850D02* Y32756D01* X21949Y32795* X21915Y1403D02* Y2731D01* Y9728D02* Y8248D01* Y10692D02* Y10339D01* Y11289D02* Y11029D01* Y19705D02* Y18903D01* Y25477D02* Y20059D01* Y31382D02* Y29633D01* X21928Y14211D02* X21931D01* X22224Y13917* X21960Y2731D02* Y1403D01* Y8267D02* Y9738D01* Y10306D02* Y10733D01* Y11039D02* Y11334D01* Y18903D02* Y19739D01* Y20025D02* Y25477D01* Y29641D02* Y31382D01* X21969Y5551D02* Y5312D01* X21838Y5181* X21478* X21969Y5925D02* X22208D01* X22358Y5775* Y5655* X22356Y5653* X22458Y5551* X21969Y10886D02* X21810Y10727D01* X21649* X21505Y10871* X21358* X21969Y15965D02* X22072Y15861D01* X22188* X22005Y1403D02* Y2731D01* Y9766D02* Y8273D01* Y10737D02* Y10279D01* Y11379D02* Y11034D01* Y19723D02* Y18903D01* Y25479D02* Y20041D01* Y31384D02* Y29641D01* X22018Y16201D02* X21878Y16341D01* Y16906* X21834Y16950* Y17232* X21705Y17362* X22018Y16516D02* X22165Y16663D01* Y17087* X22047Y34154D02* Y34591D01* X22028Y34611* Y35079* X22050Y2731D02* Y1403D01* Y8268D02* Y9852D01* Y9890D02* Y10050D01* Y10225D02* Y10756D01* Y11015D02* Y11424D01* Y18379D02* Y18420D01* Y18903D02* Y19692D01* Y20072D02* Y25479D01* Y29641D02* Y31384D01* X22095Y1403D02* Y2731D01* Y10800D02* Y8251D01* Y11469D02* Y10972D01* Y19690D02* Y18261D01* Y25477D02* Y20074D01* Y31382D02* Y29641D01* X22140Y2731D02* Y1403D01* Y8216D02* Y11395D01* Y18261D02* Y19674D01* Y20074D02* Y23248D01* Y23602D02* Y25477D01* Y29633D02* Y31382D01* X22146Y31850D02* Y32340D01* X22042Y32444* Y32613* X22224Y32795* X22158Y13661D02* Y13393D01* X22244Y13307* X22185Y1403D02* Y2731D01* Y8047D02* Y7654D01* Y11365D02* Y8134D01* Y19629D02* Y18261D01* Y22966D02* Y20074D01* Y25477D02* Y23618D01* Y31382D02* Y29641D01* X22188Y6081D02* X22067Y6202D01* Y6260* X22188Y6431D02* X22008Y6611D01* Y6614* X22199Y19488D02* G03X22382Y19306I183D01* X22564Y19488J182* X22504Y19624I182* X22469Y19694I122J18* G01X22299Y19864* Y20000* G03X22224Y20074I75* G01X22067* G03X21997Y20025J74* G01X21940* G03X21915Y20059I70J25* G01Y20169* G03X21895Y20237I124* Y20248I182J11* X21713Y20431I182* X21608Y20398J183* X21437Y20517I171J63* X21289Y20442J182* X21285Y20444I29J68* G01Y20501* G03X21319Y20526I25J70* G01X21359* G03X21446Y20562J124* G01X21470Y20586* G03X21606Y20763I46J177* X21424Y20945I182* X21245Y20803J182* G01X21024* G03X20949Y20728J75* G01Y20571* G03X20999Y20501I75* G01Y20444* G03X20949Y20374I25J70* G01Y20217* G03X21024Y20142I75* G01X21260* G03X21319Y20172J75* G01X21355* G03X21437Y20152I82J163* X21541Y20185J183* X21668Y20071I172J63* G01Y20059* G03X21638Y20000I45J59* G01Y19764* G03X21713Y19690I75* G01X21870* G03X21940Y19739J74* G01X21997* G03X22067Y19690I70J25* G01X22124* X22228Y19586* G03X22199Y19488I154J98* G01X22224Y14232D02* X22148D01* X22029Y14351* Y14470* X21928Y14571* X22224Y14980D02* X22165Y14921D01* X21928* X22224Y15256D02* X22189Y15291D01* X21928* X22224Y26673D02* X22146Y26594D01* Y25945* X22230Y2731D02* Y1403D01* Y7609D02* Y11354D01* Y11639D02* Y11669D01* Y11954D02* Y12664D01* Y18261D02* Y19387D01* Y20074D02* Y22917D01* Y23618D02* Y25477D01* Y29641D02* Y31383D01* X22264Y29173D02* Y28425D01* X22500Y28189* X22264Y35079D02* Y34370D01* X22275Y1403D02* Y2731D01* Y9058D02* Y7564D01* Y10318D02* Y9210D01* Y11357D02* Y10470D01* Y11672D02* Y11635D01* Y12689D02* Y11950D01* Y19340D02* Y18261D01* Y20161D02* Y20054D01* Y22892D02* Y20343D01* Y25497D02* Y23618D01* Y30042D02* Y29641D01* Y31402D02* Y30194D01* X22308Y16366D02* X22448Y16506D01* Y16928* X22513Y16993* Y17290* X22165Y17638* X22320Y2731D02* Y1403D01* Y7519D02* Y8997D01* Y9271D02* Y10257D01* Y10530D02* Y11377D01* Y11616D02* Y11692D01* Y11931D02* Y12738D01* Y18261D02* Y19317D01* Y19843D02* Y20109D01* Y20395D02* Y22881D01* Y23618D02* Y26314D01* Y29641D02* Y29981D01* Y30255D02* Y32219D01* X22365Y1403D02* Y2731D01* Y8968D02* Y7474D01* Y10228D02* Y9300D01* Y11425D02* Y10560D01* Y11740D02* Y11568D01* Y12802D02* Y11883D01* Y13801D02* Y13444D01* Y14116D02* Y14034D01* Y14392D02* Y14349D01* Y14864D02* Y14624D01* Y15140D02* Y15097D01* Y16109D02* Y15372D01* Y19306D02* Y18261D01* Y20083D02* Y19798D01* Y22882D02* Y20421D01* Y26314D02* Y23614D01* Y29952D02* Y29638D01* Y32219D02* Y30284D01* X22410Y2731D02* Y1403D01* Y7456D02* Y8954D01* Y9314D02* Y10214D01* Y10574D02* Y12810D01* Y13175D02* Y13231D01* Y13383D02* Y16154D01* Y18258D02* Y19308D01* Y19753D02* Y20071D01* Y20433D02* Y22894D01* Y23574D02* Y26314D01* Y29598D02* Y29938D01* Y30298D02* Y30722D01* Y30932D02* Y32219D01* X22455Y1427D02* Y2706D01* Y8952D02* Y7464D01* Y10212D02* Y9316D01* Y12810D02* Y10576D01* Y16199D02* Y13175D01* Y19321D02* Y18237D01* Y20071D02* Y19708D01* Y22921D02* Y20433D01* Y26314D02* Y23568D01* Y29936D02* Y28805D01* Y30677D02* Y30300D01* Y32219D02* Y30977D01* X22458Y5181D02* X22684D01* X22707Y5157* X22972* X22469Y10200D02* G03X22607Y10093I138J36D01* X22750Y10236J143* X22643Y10375I143* G01X22623Y10394* G03X22441Y10576I182* X22258Y10394J182* X22441Y10211I183* X22457Y10212J183* G01X22469Y10200* X22481Y22947D02* G03X22624Y22878I143J114D01* X22806Y23061J183* X22742Y23200I182* G01Y23248* G03X22771Y23307I45J59* G01Y23543* G03X22697Y23618I74* G01X22539* G03X22469Y23568J75* G01X22412* G03X22343Y23618I69J25* G01X22185* G03X22111Y23543J75* G01Y23307* G03X22140Y23248I74* G01Y23138* G03X22158Y23075I124* X22157Y23062I182J13* X22340Y22880I183* X22481Y22947J182* G01X22495Y1467D02* X22431Y1403D01* X21467* X21403Y1467* Y2244* G03X21396Y2262I25* G01X21317Y2341* G03X21299Y2348I18J18* G01X20365* X20114Y2599* G03X19094Y3273I1020J434* X18689Y3196J1108* G01X18647Y3239* Y3570* G03X18666Y3641I124J71* X18647Y3713I143* G01Y3890* G03X18666Y3961I124J71* X18656Y4014I143* G01X18711Y4069* X18966* X19030Y4005* Y3714* G03X19010Y3641I123J73* X19089Y3513I143* G01X19195Y3408* G03X19213Y3400I18J17* G01X19406* G03X19488Y3381I82J163* X19571Y3400J182* G01X19996* G03X20079Y3381I83J163* X20161Y3400J182* G01X20305* X20369Y3336* Y3095* G03X20349Y3071I5J24* G01Y2835* G03X20374Y2810I25* G01X20423* X20494Y2738* G03X20512Y2731I18J18* G01X22431* X22495Y2667* Y1467* X22500Y7458D02* Y8251D01* Y8441D02* Y8961D01* Y9386D02* Y10141D01* Y10566D02* Y12810D01* Y13175D02* Y16244D01* Y18224D02* Y19349D01* Y19642D02* Y20082D01* Y20422D02* Y22926D01* Y23606D02* Y25488D01* Y27913D02* X22028Y28386D01* Y29173* X22500Y28465D02* X22736Y28701D01* Y29173* X22500Y28805D02* Y29945D01* Y30291D02* Y30654D01* Y30999D02* Y31394D01* X22545Y8217D02* Y7435D01* Y8984D02* Y8475D01* Y10107D02* Y9420D01* Y12810D02* Y10544D01* Y16485D02* Y13175D01* Y19406D02* Y18224D01* Y20108D02* Y19570D01* Y22896D02* Y20396D01* Y25477D02* Y23618D01* Y29968D02* Y28805D01* Y30645D02* Y30268D01* Y31382D02* Y31009D01* X22571Y20132D02* G03X22709Y20069I138J120D01* X22891Y20252J183* X22709Y20434I182* X22571Y20372J182* X22433Y20434I138J120* X22251Y20252J182* X22433Y20069I182* X22571Y20132J183* G01X22588Y16831D02* X22613Y16856D01* Y17466* X22165Y17913* X22590Y7377D02* Y8204D01* Y8504D02* Y9029D01* Y9433D02* Y10094D01* Y10499D02* Y12810D01* Y13175D02* Y16610D01* Y17800D02* Y17859D01* Y18204D02* Y20113D01* Y20391D02* Y22881D01* Y23618D02* Y25477D01* Y29598D02* Y30013D01* Y30223D02* Y30647D01* Y31007D02* Y31382D01* X22618Y5374D02* X22385D01* X22382Y5371* X22188* X22618Y25945D02* Y27028D01* X22854Y27264* X22618Y31850D02* Y32318D01* X22417Y32520* X22224* X22623Y30118D02* G03X22441Y30301I182D01* X22258Y30118J183* X22441Y29936I183* X22623Y30118J182* G01X22635Y8206D02* Y7348D01* Y9145D02* Y8591D01* Y10096D02* Y9432D01* Y11707D02* Y10383D01* Y12810D02* Y12426D01* Y16655D02* Y13175D01* Y17888D02* Y17755D01* Y20085D02* Y18175D01* Y22879D02* Y20419D01* Y25477D02* Y23618D01* Y30661D02* Y29638D01* Y31382D02* Y30993D01* X22643Y9153D02* G03X22750Y9291I36J138D01* X22607Y9434I143* X22469Y9327J143* G01X22457Y9316* G03X22441I16J182* X22258Y9134J182* X22441Y8951I183* X22623Y9133J183* G01X22643Y9153* X22677Y34370D02* X22736Y34429D01* Y35079* X22680Y7348D02* Y8223D01* Y8645D02* Y9168D01* Y9414D02* Y10113D01* Y10359D02* Y11576D01* Y12500D02* Y12810D01* Y13175D02* Y16700D01* Y17710D02* Y17888D01* Y18175D02* Y20072D01* Y20432D02* Y22887D01* Y23618D02* Y25477D01* Y29641D02* Y30690D01* Y30963D02* Y31382D01* X22717Y4961D02* X22726Y4970D01* X23157* X23178Y4991* X22725Y8265D02* Y7348D01* Y9210D02* Y8672D01* Y10155D02* Y9372D01* Y11531D02* Y10317D01* Y12810D02* Y12545D01* Y16745D02* Y13173D01* Y17888D02* Y17665D01* Y20070D02* Y18175D01* Y22909D02* Y20434D01* Y25483D02* Y23612D01* Y30751D02* Y29641D01* Y31388D02* Y30903D01* X22742Y30827D02* G03X22559Y31009I183D01* X22377Y30827J182* X22559Y30644I182* X22742Y30827J183* G01X22760Y8325D02* G03X22795Y8321I35J179D01* X22978Y8504J183* X22795Y8686I183* X22614Y8528J182* G01X22571Y8485* G03X22464Y8346I36J139* X22607Y8203I143* X22746Y8310J143* G01X22760Y8325* X22770Y7348D02* Y8323D01* Y8685D02* Y11510D01* Y12590D02* Y12808D01* Y13131D02* Y20080D01* Y20424D02* Y22952D01* Y23170D02* Y23295D01* Y23556D02* Y25477D01* Y29641D02* Y31383D01* X22815Y8323D02* Y7348D01* Y11506D02* Y8685D01* Y12425D02* Y11709D01* Y12780D02* Y12635D01* Y20104D02* Y13086D01* Y25477D02* Y20400D01* Y31382D02* Y29641D01* X22854Y25945D02* Y26553D01* X22829Y26578* Y26747* X23012Y26929* X22854Y32520D02* Y31850D01* X22860Y7348D02* Y7497D01* Y7621D02* Y8333D01* Y8675D02* Y11492D01* Y11664D02* Y11722D01* Y11900D02* Y12037D01* Y12215D02* Y12352D01* Y12938D02* Y20150D01* Y20354D02* Y25477D01* Y29633D02* Y31382D01* X22905Y7428D02* Y7348D01* Y8358D02* Y7691D01* Y11491D02* Y8650D01* Y11684D02* Y11639D01* Y11999D02* Y11938D01* Y12314D02* Y12253D01* Y25477D02* Y12938D01* Y31382D02* Y29641D01* X22950Y7348D02* Y7396D01* Y7722D02* Y8407D01* Y8601D02* Y11491D01* Y11639D02* Y11669D01* Y11953D02* Y11984D01* Y12268D02* Y12299D01* Y12938D02* Y25479D01* Y29641D02* Y31384D01* X22972Y5886D02* X22983D01* X23178Y6081* X22972Y29173D02* Y28583D01* X23091Y28465* X22972Y35079D02* Y34370D01* X22973Y11811D02* X23117D01* X22973D02* Y11955D01* Y11811D02* X22829D01* X22973D02* Y11667D01* Y12126D02* X23117D01* X22973D02* Y12270D01* Y12126D02* X22829D01* X22973D02* Y11982D01* Y12441D02* X23117D01* X22973D02* X22998Y12583D01* X22973Y12441D02* X22831Y12416D01* X22973Y12441D02* Y12297D01* X22995Y7380D02* Y7348D01* Y11491D02* Y7738D01* Y11669D02* Y11639D01* Y11984D02* Y11953D01* Y12299D02* Y12268D01* Y12763D02* Y12583D01* Y25510D02* Y12938D01* Y31416D02* Y29641D01* X23012Y26654D02* X23141Y26525D01* X23215* X23327Y26413* Y25945* X23031Y7559D02* X23269Y7321D01* X23448* X23040Y7348D02* Y7377D01* Y7859D02* Y11255D01* Y11639D02* Y11684D01* Y11939D02* Y11999D01* Y12254D02* Y12314D01* Y12569D02* Y12611D01* Y12938D02* Y26314D01* Y29641D02* Y32219D01* X23085Y11210D02* Y7897D01* Y11721D02* Y11635D01* Y12036D02* Y11902D01* Y12351D02* Y12217D01* Y12580D02* Y12532D01* Y26314D02* Y12938D01* Y32219D02* Y29633D01* X23117Y11811D02* G03X22973Y11955I144D01* X22829Y11811J144* X22973Y11667I144* X23117Y11811J144* G01Y12126D02* G03X22973Y12270I144D01* X22829Y12126J144* X22973Y11982I144* X23117Y12126J144* G01X23130Y7912D02* Y11195D01* Y11590D02* Y12568D01* Y12938D02* Y26314D01* Y28805D02* Y32219D01* X23143Y12711D02* X23287D01* X23143D02* X22999D01* X23143D02* Y12567D01* X23175Y11188D02* Y7913D01* Y12571D02* Y11388D01* Y19900D02* Y12938D01* Y31238D02* Y28805D01* X23178Y4611D02* X23006Y4783D01* X22972* X23220Y7898D02* Y8897D01* Y9055D02* Y9212D01* Y9370D02* Y9842D01* Y10000D02* Y10787D01* Y10945D02* Y11176D01* Y11343D02* Y11416D01* Y11577D02* Y11731D01* Y11892D02* Y12046D01* Y12207D02* Y12361D01* Y12522D02* Y12590D01* Y12938D02* Y19855D01* Y28805D02* Y31193D01* X23265Y8854D02* Y7860D01* Y9169D02* Y9099D01* Y9799D02* Y9414D01* Y10744D02* Y10044D01* Y11176D02* Y10989D01* Y11373D02* Y11324D01* Y11688D02* Y11620D01* Y12003D02* Y11935D01* Y12318D02* Y12250D01* Y12635D02* Y12565D01* Y19345D02* Y12938D01* Y19810D02* Y19631D01* Y31156D02* Y28805D01* X23310Y7789D02* Y8836D01* Y9431D02* Y9781D01* Y10067D02* Y10726D01* Y11012D02* Y11176D01* Y11324D02* Y11355D01* Y11637D02* Y11670D01* Y11952D02* Y11985D01* Y12267D02* Y12300D01* Y12582D02* Y12790D01* Y12938D02* Y13464D01* Y13539D02* Y13824D01* Y13899D02* Y19345D01* Y19631D02* Y19765D01* Y29802D02* Y31156D01* X23327Y31850D02* Y32520D01* X23339Y11496D02* X23483D01* X23339D02* Y11640D01* Y11496D02* X23195D01* X23339D02* Y11352D01* Y11811D02* X23483D01* X23339D02* Y11955D01* Y11811D02* X23195D01* X23339D02* Y11667D01* Y12126D02* X23483D01* X23339D02* Y12270D01* Y12126D02* X23195D01* X23339D02* Y11982D01* Y12441D02* X23483D01* X23339D02* Y12585D01* Y12441D02* X23195D01* X23339D02* Y12297D01* X23355Y8434D02* Y7778D01* Y8834D02* Y8574D01* Y9779D02* Y9433D01* Y10724D02* Y10148D01* Y11176D02* Y11093D01* Y11353D02* Y11324D01* Y11668D02* Y11639D01* Y11983D02* Y11954D01* Y12298D02* Y12269D01* Y12790D02* Y12584D01* Y13393D02* Y12938D01* Y13753D02* Y13610D01* Y18145D02* Y13970D01* Y31156D02* Y29847D01* X23400Y7844D02* Y8370D01* Y8638D02* Y8847D01* Y9421D02* Y9792D01* Y10213D02* Y10737D01* Y11324D02* Y11366D01* Y11627D02* Y11681D01* Y11942D02* Y11996D01* Y12257D02* Y12311D01* Y12572D02* Y12611D01* Y12938D02* Y13366D01* Y13636D02* Y13726D01* Y13996D02* Y18100D01* Y29868D02* Y31156D01* X23445Y8339D02* Y7891D01* Y8880D02* Y8669D01* Y9825D02* Y9388D01* Y10770D02* Y10243D01* Y11399D02* Y11324D01* Y11714D02* Y11594D01* Y12029D02* Y11909D01* Y12344D02* Y12224D01* Y12580D02* Y12539D01* Y13358D02* Y12938D01* Y13718D02* Y13673D01* Y15428D02* Y14004D01* Y16751D02* Y15517D01* Y31101D02* Y29868D01* X23448Y4111D02* X23592Y3968D01* Y3440* X23593Y3439* Y3268* X23448Y5551D02* X23586Y5413D01* X23681* X23448Y5901D02* X23346Y6003D01* Y6116* X23203Y6260* X22972* X23483Y11496D02* G03X23339Y11640I144D01* X23195Y11496J144* X23339Y11352I144* X23483Y11496J144* G01Y11811D02* G03X23339Y11955I144D01* X23195Y11811J144* X23339Y11667I144* X23483Y11811J144* G01Y12126D02* G03X23339Y12270I144D01* X23195Y12126J144* X23339Y11982I144* X23483Y12126J144* G01Y12441D02* G03X23339Y12585I144D01* X23195Y12441J144* X23339Y12297I144* X23483Y12441J144* G01X23490Y7910D02* Y8325D01* Y8683D02* Y8953D01* Y9315D02* Y9898D01* Y10258D02* Y10843D01* Y11324D02* Y12568D01* Y12938D02* Y13206D01* Y13998D02* Y14407D01* Y14727D02* Y15017D01* Y15219D02* Y15346D01* Y15598D02* Y16711D01* Y29868D02* Y31073D01* X23503Y12711D02* X23647D01* X23503D02* X23359D01* X23503D02* Y12567D01* X23535Y7609D02* Y7435D01* Y8322D02* Y7914D01* Y8952D02* Y8686D01* Y9897D02* Y9316D01* Y10841D02* Y10261D01* Y12571D02* Y11324D01* Y13159D02* Y12938D01* Y31060D02* Y29868D01* X23563Y26929D02* X23799Y26693D01* Y25945* X23567Y8310D02* G03X23705Y8203I138J36D01* X23848Y8346J143* X23741Y8485I143* G01X23720Y8506* G03X23609Y8665I173J2* X23524Y8686I85J161* X23341Y8504J182* X23524Y8321I183* X23553Y8324J183* G01X23567Y8310* X23580Y7377D02* Y7640D01* Y7903D02* Y8277D01* Y8677D02* Y8960D01* Y9361D02* Y9905D01* Y10306D02* Y10850D01* Y11324D02* Y11425D01* Y11567D02* Y11740D01* Y11882D02* Y12055D01* Y12197D02* Y12370D01* Y12512D02* Y12590D01* Y12938D02* Y13135D01* Y29896D02* Y31058D01* X23593Y3268D02* Y3080D01* X23917Y2756* X23625Y7671D02* Y7348D01* Y8228D02* Y7872D01* Y8982D02* Y8658D01* Y9927D02* Y9410D01* Y10872D02* Y10355D01* Y11377D02* Y11324D01* Y11692D02* Y11616D01* Y12007D02* Y11931D01* Y12322D02* Y12246D01* Y12635D02* Y12561D01* Y13125D02* Y12938D01* Y14653D02* Y14481D01* Y31069D02* Y29918D01* X23670Y7348D02* Y8207D01* Y8626D02* Y9025D01* Y9430D02* Y9970D01* Y10375D02* Y10915D01* Y11324D02* Y11357D01* Y11636D02* Y11672D01* Y11951D02* Y11987D01* Y12266D02* Y12302D01* Y12581D02* Y12790D01* Y12938D02* Y13127D01* Y14474D02* Y14660D01* Y29926D02* Y31092D01* X23681Y13917D02* X23625Y13861D01* X23448* X23681Y28602D02* X23814D01* X23917Y28705* Y29173* X23705Y11496D02* X23849D01* X23705D02* Y11640D01* Y11496D02* X23561D01* X23705D02* Y11352D01* Y11811D02* X23849D01* X23705D02* Y11955D01* Y11811D02* X23561D01* X23705D02* Y11667D01* Y12126D02* X23849D01* X23705D02* Y12270D01* Y12126D02* X23561D01* X23705D02* Y11982D01* Y12441D02* Y12585D01* Y12441D02* X23561D01* X23705D02* Y12297D01* X23715Y8203D02* Y7348D01* Y9127D02* Y8545D01* Y10072D02* Y9434D01* Y10959D02* Y10379D01* Y11353D02* Y11324D01* Y11668D02* Y11640D01* Y11983D02* Y11955D01* Y12298D02* Y12270D01* Y12746D02* Y12585D01* Y13139D02* Y12938D01* Y14660D02* Y14474D01* Y31139D02* Y29923D01* X23728Y16516D02* Y16650D01* X23681Y16697* X23673* X23527Y16843* X23740Y15866D02* X23906D01* X24158Y15614* Y15481* X23741Y9153D02* G03X23848Y9291I36J138D01* X23705Y9434I143* X23567Y9327J143* G01X23553Y9314* G03X23524Y9316I29J180* X23491Y9313J182* G01X23478Y9327* G03X23339Y9434I139J36* X23196Y9291J143* X23303Y9153I143* G01X23322Y9134* X23303Y9115* G03X23196Y8976I36J139* X23339Y8833I143* X23478Y8940J143* G01X23492Y8954* G03X23524Y8951I32J180* X23705Y9117J183* G01X23741Y9153* Y10098D02* G03X23848Y10236I36J138D01* X23705Y10379I143* X23567Y10272J143* G01X23553Y10259* G03X23524Y10261I29J180* X23342Y10099J182* G01X23303Y10060* G03X23196Y9921I36J139* X23339Y9778I143* X23478Y9885J143* G01X23492Y9899* G03X23524Y9896I32J180* X23705Y10062J183* G01X23741Y10098* X23760Y3725D02* Y3165D01* Y7348D02* Y8214D01* Y8478D02* Y9159D01* Y9423D02* Y10104D01* Y10368D02* Y10959D01* Y11315D02* Y11363D01* Y11629D02* Y11678D01* Y11944D02* Y11993D01* Y12259D02* Y12308D01* Y12938D02* Y13094D01* Y14474D02* Y14660D01* Y29909D02* Y31156D01* X23794Y12963D02* X23769Y12938D01* X22845* X22820Y12963* Y13071* G03X22813Y13089I25* G01X22734Y13167* G03X22717Y13175I17J17* G01X22398* G03X22379Y13185I68J104* X22427Y13307I135J122* X22348Y13457I183* G01Y13783* G03X22407Y13917I124J134* X22348Y14052I183* G01Y14098* G03X22407Y14232I124J134* X22348Y14367I183* G01Y14373* G03X22407Y14508I124J135* X22348Y14642I183* G01Y14846* G03X22407Y14980I124J134* X22348Y15115I183* G01Y15121* G03X22407Y15256I124J135* X22348Y15390I183* G01Y16092* X22537Y16282* G03X22545Y16299I17J17* G01Y16483* G03X22547Y16506I97J23* G01Y16567* X22734Y16754* G03X22742Y16772I17J18* G01Y17638* G03X22734Y17655I25* G01X22550Y17840* G03X22609Y17888I11J73* G01X22736* G03X22761Y17913J25* G01Y18150* G03X22736Y18175I25* G01X22609* G03X22539Y18224I70J25* G01X22470* G03X22382Y18261I88J87* G01X22072* Y18346* G03X22065Y18364I25* G01X22009Y18420* X22047* G03X22072Y18445J25* G01Y18878* G03X22047Y18903I25* G01X21747* G03X21673Y18972I74J5* G01X21240* G03X21166Y18898J74* G01Y18450* X20694* Y18937* G03X20687Y18955I25* G01X20608Y19033* G03X20591Y19041I17J17* G01X17800* G03X17801Y19055I182J14* X17618Y19238I183* X17436Y19055J183* Y19041I182* G01X16737* G03X16575Y19139I162J84* X16413Y19041J182* G01X14789* Y19990* X15296Y20497* G03X15354Y20487I58J172* X15537Y20669J182* X15527Y20728I183* G01X15837Y21038* X18268* G03X18243Y20945I157J93* X18425Y20762I182* X18608Y20945J183* X18582Y21038I183* G01X18819* G03X18837Y21045J25* G01X18994Y21203* G03X19001Y21220I18J17* G01Y22868* G03X19114Y22829I113J144* X19297Y23012J183* X19114Y23194I183* X19001Y23155J182* G01Y23708* G03X19080Y23858I103J150* X19002Y24008I182* X19110Y24154I45J146* X19001Y24300I153* G01Y24506* G03X19035Y24503I34J179* X19218Y24685J182* X19035Y24868I183* X19001Y24864J183* G01Y25039* G03X18994Y25057I25* G01X18765Y25286* Y26314* X18922* Y25551* G03X18996Y25477I74* G01X19154* G03X19193Y25488J74* X19232Y25477I39J63* G01X19390* G03X19464Y25551J74* G01Y26314* X19631* Y25551* G03X19705Y25477I74* G01X19862* G03X19902Y25488J74* X19941Y25477I39J63* G01X20098* G03X20138Y25488J74* X20177Y25477I39J63* G01X20335* G03X20409Y25551J74* G01Y26314* X20575* Y25551* G03X20650Y25477I75* G01X20807* G03X20846Y25488J74* X20886Y25477I40J63* G01X21043* G03X21083Y25488J74* X21122Y25477I39J63* G01X21280* G03X21354Y25551J74* G01Y26314* X21520* Y25551* G03X21594Y25477I74* G01X21752* G03X21791Y25488J74* X21831Y25477I40J63* G01X21988* G03X22028Y25488J74* X22067Y25477I39J63* G01X22224* G03X22299Y25551J74* G01Y26314* X22465* Y25551* G03X22539Y25477I74* G01X22697* G03X22736Y25488J74* X22776Y25477I40J63* G01X22933* G03X23007Y25551J74* G01Y26314* X23164* Y19921* G03X23171Y19904I25* G01X23321Y19753* Y19631* X23248* G03X23223Y19606J25* G01Y19370* G03X23248Y19345I25* G01X23321* Y18189* G03X23329Y18171I25* G01X23400Y18100* Y16811* G03X23408Y16793I25* G01X23420Y16780* G03X23464Y16737I107J63* G01X23518Y16683* Y15623* G03X23440Y15472I104J151* X23518Y15322I182* G01Y15253* G03X23459Y15118I124J135* X23518Y14984I183* G01Y14756* X23495Y14733* G03X23459Y14646I88J87* G01Y14488* G03X23495Y14401I124* G01X23518Y14378* Y14315* G03X23499Y14232I163J83* X23518Y14150I182* G01Y14000* G03X23513Y13989I163J83* X23448Y14004I65J128* X23305Y13861J143* X23448Y13718I143* X23518Y13736J143* G01Y13735* X23517Y13734* G03X23482Y13709I52J112* G01X23412Y13640* G03X23305Y13501I36J139* X23448Y13358I143* X23467Y13359J143* X23459Y13307I175J52* X23642Y13125I183* X23715Y13140J182* G01X23794Y13061* Y12963* X23805Y3120D02* Y3363D01* Y3488D02* Y3770D01* Y8244D02* Y7348D01* Y9189D02* Y8449D01* Y10134D02* Y9394D01* Y10959D02* Y10339D01* Y11393D02* Y11284D01* Y11708D02* Y11600D01* Y12023D02* Y11915D01* Y12320D02* Y12230D01* Y14660D02* Y14474D01* Y31156D02* Y29878D01* X23849Y11496D02* G03X23705Y11640I144D01* X23561Y11496J144* X23705Y11352I144* X23849Y11496J144* G01Y11811D02* G03X23705Y11955I144D01* X23561Y11811J144* X23705Y11667I144* X23849Y11811J144* G01Y12126D02* G03X23705Y12270I144D01* X23561Y12126J144* X23705Y11982I144* X23849Y12126J144* G01X23850Y3294D02* Y3075D01* Y3785D02* Y3557D01* Y7348D02* Y10959D01* Y11225D02* Y12275D01* Y14453D02* Y14681D01* Y29868D02* Y31156D01* X23858Y32835D02* X23695Y32672D01* Y32581* X23660Y32545* Y32479* X23695Y32443* Y32350* X23799Y32246* Y31850* X23888Y15681D02* X23831D01* X23622Y15472* X23893Y13506D02* X23694Y13307D01* X23642* X23895Y3030D02* Y3262D01* Y10959D02* Y7348D01* Y12246D02* Y11180D01* Y14699D02* Y14434D01* Y31156D02* Y29868D01* X23917Y13209D02* X24040Y13331D01* X24158* X23917Y34350D02* Y35079D01* X23940Y3246D02* Y2985D01* Y7348D02* Y8919D01* Y9033D02* Y9864D01* Y9978D02* Y10179D01* Y10293D02* Y10809D01* Y10923D02* Y10959D01* Y11240D02* Y11437D01* Y11555D02* Y11752D01* Y11870D02* Y12067D01* Y12185D02* Y12239D01* Y12585D02* Y12500D01* Y14434D02* Y14699D01* Y29868D02* Y31156D01* X23957Y13858D02* X23960Y13861D01* X24438* X23985Y2978D02* Y3243D01* Y8862D02* Y7348D01* Y9807D02* Y9090D01* Y10122D02* Y10035D01* Y10752D02* Y10350D01* Y11381D02* Y11296D01* Y11696D02* Y11611D01* Y12011D02* Y11926D01* Y12556D02* Y12622D01* Y12800D02* Y12887D01* Y14699D02* Y14434D01* Y31156D02* Y29868D01* X24030Y3251D02* Y2978D01* Y7348D02* Y8839D01* Y9113D02* Y9784D01* Y10058D02* Y10099D01* Y10373D02* Y10729D01* Y11319D02* Y11358D01* Y11634D02* Y11673D01* Y11949D02* Y11988D01* Y12888D02* Y12579D01* Y14430D02* Y14704D01* Y29868D02* Y31156D01* X24035Y25945D02* Y26732D01* X23563Y27205* X24035Y31850D02* Y32323D01* X23878Y32480* X24071Y11181D02* X24213Y11206D01* X24071Y11181D02* Y11325D01* Y11181D02* X23927D01* X24071Y11496D02* X24215D01* X24071D02* Y11640D01* Y11496D02* X23927D01* X24071D02* Y11352D01* Y11811D02* X24215D01* X24071D02* Y11955D01* Y11811D02* X23927D01* X24071D02* Y11667D01* Y12126D02* X24213Y12101D01* X24071Y12126D02* X23927D01* X24071D02* Y11982D01* Y12441D02* X24213Y12466D01* X24071Y12441D02* Y12585D01* Y12441D02* X23927D01* X24075Y2978D02* Y3272D01* Y3912D02* Y3991D01* Y8833D02* Y7348D01* Y9778D02* Y9178D01* Y10723D02* Y10379D01* Y11352D02* Y11325D01* Y11667D02* Y11640D01* Y11982D02* Y11955D01* Y12585D02* Y12888D01* Y14748D02* Y14386D01* Y31156D02* Y29868D01* X24120Y3313D02* Y2978D01* Y4025D02* Y3877D01* Y7348D02* Y7719D01* Y7824D02* Y8842D01* Y9260D02* Y9787D01* Y10371D02* Y10732D01* Y11317D02* Y11361D01* Y11632D02* Y11676D01* Y11947D02* Y11991D01* Y12637D02* Y12577D01* Y12878D02* Y12786D01* Y14341D02* Y14793D01* Y29868D02* Y31156D01* X24154Y35079D02* Y34508D01* X24158Y14041D02* X23872D01* X23681Y14232* X24158Y15111D02* Y15021D01* X23980Y14843* X23701* X24165Y2978D02* Y4130D01* Y7658D02* Y7348D01* Y8868D02* Y7884D01* Y9813D02* Y9294D01* Y10758D02* Y10344D01* Y11387D02* Y11290D01* Y11702D02* Y11605D01* Y12017D02* Y11920D01* Y12550D02* Y12590D01* Y12832D02* Y12873D01* Y14818D02* Y14316D01* Y31131D02* Y29868D01* X24168Y4991D02* X23887D01* X23681Y4786* Y4626* X24168Y6081D02* X24105Y6018D01* X23686* X23681Y6024* X24210Y4148D02* Y2978D01* Y7348D02* Y7635D01* Y7908D02* Y8941D01* Y9311D02* Y9886D01* Y10272D02* Y10831D01* Y11219D02* Y11458D01* Y11534D02* Y11773D01* Y11849D02* Y12088D01* Y12571D02* Y12479D01* Y12883D02* Y12851D01* Y14324D02* Y14810D01* Y29868D02* Y31108D01* X24215Y11496D02* G03X24071Y11640I144D01* X23927Y11496J144* X24071Y11352I144* X24215Y11496J144* G01Y11811D02* G03X24071Y11955I144D01* X23927Y11811J144* X24071Y11667I144* X24215Y11811J144* G01X24227Y14341D02* X24202Y14316D01* X24144* X24033Y14427* G03X24016Y14434I17J18* G01X23869* X23837Y14466* G03X23819Y14474I18J17* G01X23632* X23608Y14499* Y14635* X23632Y14660* X23819* G03X23837Y14667J25* G01X23869Y14699* X24016* G03X24033Y14707J25* G01X24144Y14818* X24202* X24227Y14793* Y14341* X24243Y12711D02* X24387D01* X24243D02* Y12855D01* Y12711D02* X24099D01* X24243D02* Y12567D01* X24255Y2978D02* Y4145D01* Y7595D02* Y7348D01* Y8951D02* Y7914D01* Y9896D02* Y9316D01* Y10841D02* Y10261D01* Y12102D02* Y11206D01* Y12465D02* Y12568D01* Y12855D02* Y12911D01* Y31098D02* Y29868D01* X24298Y16516D02* X24494Y16712D01* Y17436* X24311Y17618* X24300Y4138D02* Y2978D01* Y7359D02* Y7473D01* Y7906D02* Y7990D01* Y8072D02* Y8958D01* Y9332D02* Y9903D01* Y10277D02* Y10848D01* Y11222D02* Y11453D01* Y11540D02* Y11768D01* Y11855D02* Y12085D01* Y12579D02* Y12482D01* Y12997D02* Y12843D01* Y29868D02* Y31099D01* X24311Y17067D02* X24298Y17054D01* Y16831* X24311Y17343D02* X24129Y17160D01* Y16956* X24151Y16933* Y16499* X24018Y16366* X24345Y2978D02* Y4146D01* Y8977D02* Y8141D01* Y9922D02* Y9401D01* Y10867D02* Y10346D01* Y11386D02* Y11291D01* Y11701D02* Y11607D01* Y12017D02* Y11922D01* Y12555D02* Y12610D01* Y12813D02* Y13046D01* Y31112D02* Y29868D01* X24387Y12711D02* G03X24243Y12855I144D01* X24099Y12711J144* X24243Y12567I144* X24387Y12711J144* G01X24390Y28051D02* X24154Y28287D01* Y29173* X24390Y4148D02* Y2978D01* Y8166D02* Y9015D01* Y9426D02* Y9959D01* Y10371D02* Y10904D01* Y11316D02* Y11360D01* Y11632D02* Y11675D01* Y11947D02* Y11991D01* Y13018D02* Y12600D01* Y29868D02* Y31141D01* X24435Y2978D02* Y4148D01* Y9115D02* Y8174D01* Y10060D02* Y9434D01* Y10959D02* Y10379D01* Y11352D02* Y11324D01* Y11667D02* Y11640D01* Y11983D02* Y11955D01* Y12645D02* Y13008D01* Y31156D02* Y29868D01* X24437Y11496D02* X24581D01* X24437D02* Y11640D01* Y11496D02* X24293D01* X24437D02* Y11352D01* Y11811D02* X24581D01* X24437D02* Y11955D01* Y11811D02* X24293D01* X24437D02* Y11667D01* X24438Y14211D02* X23978D01* X23957Y14232* X24438Y14571D02* X24561Y14449D01* X24665* X24438Y15291D02* X24136D01* X23917Y15073* Y15039* X24438Y15681D02* X24603Y15846D01* X24665* X24441Y26426D02* Y26626D01* X24626Y26811* X24449Y32717D02* X24581Y32584D01* X24589* X24744Y32429* Y31850* X24449Y38268D02* X24632D01* X24678Y38313* X25242* X25474Y38081* Y37943* X24473Y9153D02* G03X24580Y9291I36J138D01* X24437Y9434I143* X24299Y9327J143* G01X24285Y9313* G03X24252Y9316I33J179* X24070Y9150J182* G01X24035Y9115* G03X23928Y8976I36J139* X24071Y8833I143* X24210Y8940J143* G01X24223Y8954* G03X24252Y8951I29J180* X24433Y9113J183* G01X24473Y9153* Y10098D02* G03X24580Y10236I36J138D01* X24437Y10379I143* X24299Y10272J143* G01X24285Y10258* G03X24252Y10261I33J179* X24223Y10259J182* G01X24210Y10272* G03X24071Y10379I139J36* X23928Y10236J143* X24035Y10098I143* G01X24054Y10079* X24035Y10060* G03X23928Y9921I36J139* X24071Y9778I143* X24210Y9885J143* G01X24223Y9899* G03X24252Y9896I29J180* X24433Y10058J183* G01X24473Y10098* X24480Y4148D02* Y2978D01* Y8168D02* Y9155D01* Y9428D02* Y10100D01* Y10373D02* Y10918D01* Y11318D02* Y11359D01* Y11634D02* Y11674D01* Y11949D02* Y11990D01* Y13013D02* Y12764D01* Y29868D02* Y31156D01* X24508Y25945D02* X24512D01* Y26355* X24441Y26426* X24508Y31850D02* Y32402D01* X24525Y2978D02* Y4148D01* Y9178D02* Y8144D01* Y10123D02* Y9404D01* Y10636D02* Y10349D01* Y11382D02* Y11294D01* Y11697D02* Y11610D01* Y12013D02* Y11925D01* Y12824D02* Y13034D01* Y31156D02* Y29868D01* X24557Y13652D02* X24586Y13681D01* X24898* X24567Y19606D02* X24869Y19908D01* Y22100* X25689Y22920* Y24961* X24570Y4148D02* Y2978D01* Y7377D02* Y7442D01* Y8084D02* Y9238D01* Y9344D02* Y10183D01* Y10289D02* Y10591D01* Y11095D02* Y11128D01* Y11234D02* Y11441D01* Y11552D02* Y11756D01* Y11867D02* Y12073D01* Y13046D02* Y12848D01* Y29868D02* Y31156D01* X24581Y11496D02* G03X24437Y11640I144D01* X24293Y11496J144* X24437Y11352I144* X24581Y11496J144* G01Y11811D02* G03X24437Y11955I144D01* X24293Y11811J144* X24437Y11667I144* X24581Y11811J144* G01X24615Y2978D02* Y4148D01* Y7503D02* Y7348D01* Y10566D02* Y7954D01* Y12101D02* Y11050D01* Y12854D02* Y13046D01* Y31156D02* Y29868D01* X24626Y26535D02* X24744Y26417D01* Y25945* X24626Y29173D02* Y28563D01* X24390Y28327* X24626Y35079D02* Y34508D01* X24660Y4148D02* Y2978D01* Y7348D02* Y7466D01* Y7910D02* Y10548D01* Y10730D02* Y10852D01* Y10881D02* Y11482D01* Y11511D02* Y11797D01* Y11826D02* Y12104D01* Y13046D02* Y12846D01* Y29868D02* Y31156D01* X24665Y15020D02* X24747Y15101D01* X24898* X24696Y13889D02* X24848Y14041D01* X24898* X24705Y15295D02* X24709Y15291D01* X25168* X24705Y2978D02* Y4148D01* Y7425D02* Y7348D01* Y9187D02* Y7889D01* Y9817D02* Y9395D01* Y10546D02* Y10025D01* Y10761D02* Y10694D01* Y11077D02* Y10971D01* Y11391D02* Y11285D01* Y11706D02* Y11601D01* Y12022D02* Y11916D01* Y12821D02* Y13046D01* Y31156D02* Y29868D01* X24708Y6791D02* X24810Y6893D01* X24918* X24941Y6870* X24750Y4148D02* Y2978D01* Y7348D02* Y7404D01* Y7837D02* Y9158D01* Y9424D02* Y9788D01* Y10054D02* Y10546D01* Y10694D02* Y10732D01* Y11000D02* Y11048D01* Y11314D02* Y11362D01* Y11630D02* Y11677D01* Y11945D02* Y11993D01* Y12669D02* Y12574D01* Y13028D02* Y12753D01* Y29868D02* Y31156D01* X24783Y17126D02* X24771Y17114D01* Y16626* X24669Y16524* X24607* X24438Y16355* Y16041* X24783Y17402D02* Y17384D01* X24966Y17202* Y17040* X24871Y16945* Y16585* X24652Y16366* X24638* X24783Y17677D02* X24601Y17495D01* Y16718* X24638Y16681* X24783Y17953D02* X24990Y17746D01* X25091* X25222Y17615* Y16943* X25161Y16883* Y16879* X25153Y16871* Y16781* X25189Y16746* X25195* X25230Y16710* Y16656* X25161Y16587* Y16519* X25008Y16366* X24795Y2978D02* Y4148D01* Y7396D02* Y7348D01* Y9125D02* Y7774D01* Y9778D02* Y9434D01* Y10546D02* Y10088D01* Y10723D02* Y10694D01* Y11353D02* Y11324D01* Y11668D02* Y11640D01* Y12584D02* Y12959D01* Y31156D02* Y29896D01* X24803Y10866D02* X24945Y10841D01* X24803Y10866D02* X24778Y11008D01* X24803Y10866D02* X24659D01* X24803D02* Y10722D01* Y11496D02* X24947D01* X24803D02* Y11640D01* Y11496D02* X24659D01* X24803D02* Y11352D01* Y11811D02* X24945Y11786D01* X24803Y11811D02* X24778Y11953D01* X24803Y11811D02* X24659D01* X24803D02* Y11667D01* X24840Y4148D02* Y2978D01* Y7348D02* Y7400D01* Y7757D02* Y9017D01* Y9430D02* Y9783D01* Y10195D02* Y10546D01* Y10694D02* Y10727D01* Y11320D02* Y11357D01* Y11635D02* Y11672D01* Y12697D02* Y12580D01* Y12927D02* Y12726D01* Y29927D02* Y31156D01* X24885Y2978D02* Y4148D01* Y7416D02* Y7348D01* Y8978D02* Y7742D01* Y9804D02* Y9409D01* Y10546D02* Y10234D01* Y10748D02* Y10694D01* Y11378D02* Y11299D01* Y11693D02* Y11615D01* Y12324D02* Y12258D01* Y12559D02* Y12606D01* Y12816D02* Y12912D01* Y31156D02* Y29943D01* X24898Y15481D02* X24755D01* X24665Y15571* X24898Y15861D02* Y16086D01* X24803Y16181* X24930Y4148D02* Y2978D01* Y7348D02* Y7448D01* Y7710D02* Y8958D01* Y9357D02* Y9855D01* Y10254D02* Y10546D01* Y10694D02* Y10798D01* Y11247D02* Y11428D01* Y11564D02* Y11743D01* Y12213D02* Y12375D01* Y12577D02* Y12545D01* Y12908D02* Y12845D01* Y29946D02* Y31156D01* X24941Y4606D02* X24936Y4611D01* X24708* X24941Y5433D02* X24879Y5371D01* X24708* X24941Y6063D02* X24923Y6081D01* X24708* X24941Y7146D02* X24936Y7141D01* X24708* X24947Y11496D02* G03X24803Y11640I144D01* X24659Y11496J144* X24803Y11352I144* X24947Y11496J144* G01X24975Y2978D02* Y4148D01* Y7517D02* Y7348D01* Y8951D02* Y7640D01* Y9896D02* Y9316D01* Y10546D02* Y10261D01* Y10841D02* Y10694D01* Y11786D02* Y11206D01* Y12396D02* Y12168D01* Y12855D02* Y12916D01* Y31156D02* Y29938D01* X24983Y12711D02* X25127D01* X24983D02* Y12855D01* Y12711D02* X24839D01* X24983D02* Y12567D01* X25020Y25098D02* X25315Y25394D01* X25020Y4148D02* Y2978D01* Y7348D02* Y7466D01* Y7652D02* Y8951D01* Y9312D02* Y9901D01* Y10262D02* Y10546D01* Y10694D02* Y10841D01* Y11202D02* Y11786D01* Y12147D02* Y12396D01* Y12572D02* Y12545D01* Y12937D02* Y12850D01* Y29917D02* Y31156D01* X25031Y8940D02* G03X25169Y8833I138J36D01* X25312Y8976J143* X25205Y9115I143* G01X25161Y9159* G03X24980Y9316I181J25* X24954Y9314J182* G01X24942Y9327* G03X24803Y9434I139J36* X24660Y9291J143* X24767Y9153I143* G01X24798Y9122* G03X24980Y8951I182J12* X25016Y8955J183* G01X25031Y8940* X25065Y2978D02* Y4148D01* Y8878D02* Y8129D01* Y9917D02* Y9295D01* Y10546D02* Y10334D01* Y10768D02* Y10694D01* Y11397D02* Y11281D01* Y11713D02* Y11596D01* Y12343D02* Y12130D01* Y12545D02* Y12593D01* Y12830D02* Y12978D01* Y31156D02* Y29876D01* X25098Y34232D02* X25335Y34469D01* Y35079* X25098D02* Y34508D01* X25110Y4146D02* Y2980D01* Y8162D02* Y8846D01* Y9262D02* Y9950D01* Y10367D02* Y10546D01* Y10694D02* Y10736D01* Y11312D02* Y11365D01* Y11627D02* Y11681D01* Y12097D02* Y12311D01* Y12643D02* Y12572D01* Y13016D02* Y12779D01* Y29868D02* Y31156D01* X25127Y12711D02* G03X24983Y12855I144D01* X24839Y12711J144* X24983Y12567I144* X25127Y12711J144* G01X25155Y3025D02* Y4101D01* Y8834D02* Y8174D01* Y10026D02* Y9187D01* Y10546D02* Y10379D01* Y10724D02* Y10694D01* Y11353D02* Y11324D01* Y11669D02* Y11639D01* Y12299D02* Y12021D01* Y12584D02* Y13008D01* Y31156D02* Y29868D01* X25169Y11181D02* X25313D01* X25169D02* Y11325D01* Y11181D02* X25027Y11206D01* X25169Y11181D02* X25194Y11040D01* X25169Y11496D02* X25313D01* X25169D02* Y11640D01* Y11496D02* X25025D01* X25169D02* Y11352D01* X25172Y3042D02* X25108Y2978D01* X23947* X23726Y3199* Y3690* X23835Y3800* X23895Y3740* Y3588* G03X23794Y3425I81J163* X23976Y3243I182* X24159Y3425J182* X24142Y3503I183* G01Y3741* G03X24151Y3791I124J50* X24070Y3914I133* G01X24010Y3974* X24013Y3978* G03X24018I5J133* X24151Y4111J133* Y4116I133* G01X24184Y4148* X24247* G03X24298Y4138I51J123* X24348Y4148J133* G01X24565* G03X24576J123* G01X25108* X25172Y4084* Y3042* X25173Y11037D02* G03X25313Y11181I4J144D01* X25169Y11325I144* X25027Y11200J144* X24980Y11206I47J176* X24955Y11204J182* G01X24942Y11217* G03X24803Y11324I139J36* X24660Y11181J143* X24767Y11043I143* G01X24798Y11012* Y11010* G03X24659Y10866I5J144* X24803Y10722I144* X24945Y10845J144* X24980Y10841I35J179* X25016Y10845J183* G01X25031Y10830* G03X25169Y10723I138J36* X25312Y10866J143* X25205Y11005I143* G01X25173Y11037* X25200Y8171D02* Y8836D01* Y9120D02* Y10093D01* Y10376D02* Y10546D01* Y10694D02* Y10726D01* Y11010D02* Y11041D01* Y11322D02* Y11356D01* Y11637D02* Y11671D01* Y11955D02* Y12301D01* Y12697D02* Y12581D01* Y13014D02* Y12726D01* Y16418D02* Y16253D01* Y29868D02* Y31133D01* X25205Y10098D02* G03X25312Y10236I36J138D01* X25169Y10379I143* X25031Y10272J143* G01X25016Y10258* G03X24980Y10261I36J179* X24798Y10091J182* G01X24767Y10060* G03X24660Y9921I36J139* X24803Y9778I143* X24942Y9885J143* G01X24955Y9898* G03X24980Y9896I25J181* X25161Y10054J183* G01X25205Y10098* X25217Y25945D02* Y26614D01* X25689Y27087* X25217Y31850D02* Y32323D01* X25315Y32421* X25236Y17776D02* X25059Y17953D01* X25245Y8855D02* Y8153D01* Y10115D02* Y9098D01* Y10546D02* Y10358D01* Y10745D02* Y10694D01* Y11059D02* Y10988D01* Y11374D02* Y11304D01* Y11688D02* Y11619D01* Y12320D02* Y11933D01* Y12563D02* Y12606D01* Y12816D02* Y13037D01* Y16208D02* Y16466D01* Y31119D02* Y29868D01* X25290Y8108D02* Y8900D01* Y9053D02* Y10160D01* Y10313D02* Y10546D01* Y10694D02* Y10790D01* Y10943D02* Y11103D01* Y11259D02* Y11418D01* Y11574D02* Y11643D01* Y11888D02* Y12365D01* Y12577D02* Y12545D01* Y13021D02* Y12845D01* Y16575D02* Y16163D01* Y29868D02* Y31117D01* X25298Y16831D02* X25321Y16854D01* Y17677* X25313Y11496D02* G03X25169Y11640I144D01* X25025Y11496J144* X25169Y11352I144* X25313Y11496J144* G01X25315Y25394D02* X25369D01* X25453Y25477* Y25945* X25321Y17677D02* Y17691D01* X25236Y17776* X25335Y29173D02* Y28563D01* X25571Y28327* X25335Y7467D02* Y7382D01* Y10546D02* Y7651D01* Y11401D02* Y10694D01* Y12396D02* Y11808D01* Y12855D02* Y12968D01* Y16127D02* Y16638D01* Y31127D02* Y29868D01* X25343Y12711D02* X25487D01* X25343D02* Y12855D01* Y12711D02* X25199D01* X25343D02* Y12567D01* X25380Y3461D02* Y2136D01* Y7420D02* Y10546D01* Y10694D02* Y11356D01* Y11763D02* Y12396D01* Y12572D02* Y12545D01* Y12921D02* Y12850D01* Y16683D02* Y16127D01* Y29868D02* Y31150D01* X25425Y2091D02* Y3415D01* Y9200D02* Y7430D01* Y10145D02* Y9383D01* Y10546D02* Y10328D01* Y10774D02* Y10694D01* Y11089D02* Y10959D01* Y11311D02* Y11274D01* Y12350D02* Y11718D01* Y12545D02* Y12593D01* Y12830D02* Y12890D01* Y16127D02* Y16728D01* Y31156D02* Y29868D01* X25448Y13691D02* X25616Y13524D01* X25669* X25448Y14391D02* X25452Y14395D01* X25743* X25925Y14213* X25453Y31850D02* X25497Y31895D01* Y32514* X25315Y32697* X25458Y13366D02* X25483Y13341D01* X25900* X25906Y13346* X25470Y3391D02* Y2046D01* Y7430D02* Y9164D01* Y9419D02* Y10109D01* Y10364D02* Y10546D01* Y10694D02* Y10738D01* Y10995D02* Y11053D01* Y11657D02* Y12314D01* Y12643D02* Y12569D01* Y12888D02* Y12779D01* Y18951D02* Y16127D01* Y20986D02* Y19238D01* Y29868D02* Y31156D01* X25472Y36929D02* X25474Y36927D01* Y36467* X25487Y12711D02* G03X25343Y12855I144D01* X25199Y12711J144* X25343Y12567I144* X25487Y12711J144* G01X25515Y2001D02* Y3381D01* Y3748D02* Y3787D01* Y9137D02* Y7558D01* Y10082D02* Y9433D01* Y10546D02* Y10378D01* Y10724D02* Y10694D01* Y11039D02* Y11009D01* Y12300D02* Y11449D01* Y12583D02* Y12888D01* Y16127D02* Y18951D01* Y19238D02* Y21031D01* Y31156D02* Y29868D01* X25535Y10866D02* X25679D01* X25535D02* Y11010D01* Y10866D02* X25391D01* X25535D02* Y10722D01* Y11181D02* X25679D01* X25535D02* X25391D01* X25535D02* Y11037D01* X25560Y3383D02* Y1956D01* Y3832D02* Y3743D01* Y7607D02* Y9063D01* Y9432D02* Y10008D01* Y10377D02* Y10546D01* Y10694D02* Y10724D01* Y11008D02* Y11039D01* Y11442D02* Y12300D01* Y12888D02* Y12582D01* Y18951D02* Y16127D01* Y21038D02* Y19238D01* Y29868D02* Y31156D01* X25571Y28051D02* X25098Y28524D01* Y29173* X25571Y28602D02* X25704D01* X25807Y28705* Y29173* X25605Y1911D02* Y3396D01* Y3730D02* Y3877D01* Y8999D02* Y7631D01* Y9944D02* Y9416D01* Y10546D02* Y10361D01* Y10740D02* Y10694D01* Y11055D02* Y10992D01* Y12316D02* Y11442D01* Y12566D02* Y12629D01* Y12793D02* Y12887D01* Y16127D02* Y17249D01* Y17476D02* Y21038D01* Y31156D02* Y29868D01* X25650Y3424D02* Y1866D01* Y3922D02* Y3702D01* Y7642D02* Y8969D01* Y9377D02* Y9914D01* Y10322D02* Y10548D01* Y10725D02* Y10780D01* Y10953D02* Y11095D01* Y11442D02* Y12356D01* Y12587D02* Y12545D01* Y12872D02* Y12835D01* Y17208D02* Y16158D01* Y21038D02* Y17516D01* Y29868D02* Y31156D01* X25669Y7461D02* X25540Y7331D01* X25424* X25294Y7201* Y7097* X25168Y6971* X25679Y10866D02* G03X25535Y11010I144D01* X25391Y10866J144* X25535Y10722I144* X25679Y10866J144* G01X25684Y10758D02* X25620Y10694D01* X25538* G03X25535I3J143* X25532J143* G01X25172* G03X25169I3J143* X25166J143* G01X24806* G03X24803I3J143* X24800J143* G01X24695* X24631Y10758* Y11024* G03X24624Y11041I25* G01X24559Y11106* G03X24580Y11181I122J75* X24437Y11324I143* X24299Y11217J143* G01X24285Y11203* G03X24252Y11206I33J179* X24214Y11202J182* X24071Y11325I143J21* X23927Y11181J144* X23933Y11142I144* G01X23836Y11238* G03X23762Y11312I131J57* G01X23758Y11317* G03X23740Y11324I18J18* G01X23711* G03X23705I6J143* X23699J143* G01X23345* G03X23339I6J143* X23333J143* G01X23239* X23175Y11388* Y11535* G03X23167Y11553I25* G01X23089Y11632* G03X23071Y11639I18J18* G01X22980* G03X22973I7J143* X22966J143* G01X22884* X22781Y11743* Y12391* X22829Y12440* G03X22973Y12297I144J1* X23117Y12441J144* X22974Y12585I144* X22978Y12598I21J13* G01Y12746* X23022Y12790* X23023* G03X22999Y12711I120J79* X23143Y12567I144* X23287Y12711J144* X23264Y12790I144* G01X23383* G03X23359Y12711I120J79* X23503Y12567I144* X23647Y12711J144* X23624Y12790I144* G01X23671* X23715Y12746* Y12638* G03X23722Y12620I25* G01X23774Y12568* Y12567* G03X23705Y12585I69J126* X23561Y12441J144* X23705Y12297I144* X23797Y12330J144* X23810Y12314I101J72* G01X23850Y12275* G03X23937Y12239I87J87* G01X23982* G03X23927Y12126I89J113* X24071Y11982I144* X24214Y12110J144* X24272Y12101I58J173* X24287Y12102J182* G01X24299Y12090* G03X24437Y11983I138J36* X24579Y12107J143* X24626Y12101I47J176* X24662Y12105J182* X24767Y11988I141J21* G01X24798Y11957* Y11955* G03X24659Y11811I5J144* X24803Y11667I144* X24945Y11789J144* X24980Y11786I35J180* X25016Y11790J183* G01X25031Y11775* G03X25169Y11668I138J36* X25244Y11689J143* G01X25329Y11604* Y11417* G03X25337Y11400I25* G01X25444Y11292* G03X25391Y11181I91J111* X25535Y11037I144* X25679Y11181J144* X25674Y11220I144* G01X25684Y11210* Y10758* X25695Y1821D02* Y2654D01* Y2858D02* Y3482D01* Y3644D02* Y3967D01* Y8954D02* Y7641D01* Y9899D02* Y9313D01* Y10564D02* Y10258D01* Y12396D02* Y11442D01* Y12545D02* Y12570D01* Y16203D02* Y17004D01* Y17130D02* Y17188D01* Y17537D02* Y21038D01* Y31156D02* Y29868D01* X25723Y12711D02* X25867D01* X25723D02* Y12855D01* Y12711D02* X25579D01* X25723D02* Y12567D01* X25740Y2608D02* Y1776D01* Y4012D02* Y2904D01* Y7629D02* Y8952D01* Y9316D02* Y9897D01* Y10261D02* Y10566D01* Y11442D02* Y12396D01* Y16480D02* Y16248D01* Y16795D02* Y16553D01* Y16935D02* Y16868D01* Y21038D02* Y17545D01* Y29868D02* Y31156D01* X25748Y17362D02* X25829D01* X26049Y17143* Y16876* X26025Y16852* Y16626* X26127Y16524* X26189* X26438Y16275* Y16201* X25763Y8940D02* G03X25901Y8833I138J36D01* X26044Y8976J143* X25937Y9115I143* G01X25911Y9141* G03X25728Y9316I183J7* X25689Y9312J182* G01X25674Y9327* G03X25535Y9434I139J36* X25392Y9291J143* X25499Y9153I143* G01X25548Y9103* G03X25728Y8951I180J31* X25750Y8953J183* G01X25763Y8940* Y9885D02* G03X25901Y9778I138J36D01* X26044Y9921J143* X25937Y10060I143* G01X25911Y10086* G03X25728Y10261I183J7* X25689Y10257J182* G01X25674Y10272* G03X25535Y10379I139J36* X25392Y10236J143* X25499Y10098I143* G01X25548Y10048* G03X25728Y9896I180J31* X25750Y9898J183* G01X25763Y9885* X25785Y1757D02* Y2584D01* Y2928D02* Y4030D01* Y8893D02* Y7602D01* Y9838D02* Y9307D01* Y10592D02* Y10252D01* Y12358D02* Y11416D01* Y12545D02* Y12581D01* Y12841D02* Y12888D01* Y16293D02* Y16412D01* Y16620D02* Y16727D01* Y17541D02* Y21038D01* Y31156D02* Y29868D01* X25807Y35079D02* Y34508D01* X25830Y2574D02* Y1757D01* Y4030D02* Y2938D01* Y7348D02* Y7374D01* Y7547D02* Y8852D01* Y9285D02* Y9797D01* Y10230D02* Y10637D01* Y11371D02* Y12317D01* Y12615D02* Y12565D01* Y12888D02* Y12808D01* Y21038D02* Y18976D01* Y29868D02* Y31156D01* X25846Y2756D02* X26085D01* X26492Y3163* Y3268* X25867Y12711D02* G03X25723Y12855I144D01* X25579Y12711J144* X25723Y12567I144* X25867Y12711J144* G01X25875Y1757D02* Y2576D01* Y2936D02* Y4030D01* Y8836D02* Y7310D01* Y9781D02* Y9242D01* Y10726D02* Y10187D01* Y12301D02* Y11322D01* Y12582D02* Y12859D01* Y19021D02* Y21038D01* Y31156D02* Y29868D01* X25920Y2589D02* Y1757D01* Y4030D02* Y2923D01* Y7265D02* Y8834D01* Y9132D02* Y9779D01* Y10077D02* Y10724D01* Y11323D02* Y12299D01* Y12844D02* Y12583D01* Y21038D02* Y19041D01* Y29868D02* Y31156D01* X25925Y15157D02* X26158Y14925D01* Y14921* X25925Y25945D02* Y26555D01* X26161Y26791* X25925Y31850D02* X25861Y31915D01* Y32514* X26043Y32697* X25953Y13024D02* X26041D01* X26158Y13141* X25965Y36004D02* X25974Y36014D01* Y36467* X25965Y1757D02* Y2617D01* Y2895D02* Y4000D01* Y8848D02* Y7230D01* Y9793D02* Y9104D01* Y10738D02* Y10049D01* Y12313D02* Y11309D01* Y12569D02* Y12646D01* Y12777D02* Y12842D01* Y19041D02* Y19846D01* Y20311D02* Y21038D01* Y31156D02* Y29868D01* X25984Y13701D02* Y13742D01* X25742Y13985* X25505* X25448Y14041* X26010Y2647D02* Y1757D01* Y3955D02* Y2865D01* Y7230D02* Y8883D01* Y9069D02* Y9828D01* Y10014D02* Y10773D01* Y11274D02* Y12348D01* Y12594D02* Y12545D01* Y19837D02* Y19041D01* Y21038D02* Y20320D01* Y29868D02* Y31156D01* X26043Y32421D02* X26161Y32303D01* Y31850* X26043Y35079D02* Y34469D01* X25807Y34232* X26055Y1757D02* Y2647D01* Y2880D02* Y3020D01* Y10843D02* Y7230D01* Y12396D02* Y11204D01* Y12545D02* Y12572D01* Y19041D02* Y19837D01* Y20320D02* Y21036D01* Y31156D02* Y29959D01* X26093Y12711D02* X26237D01* X26093D02* Y12855D01* Y12711D02* X25949D01* X26093D02* Y12567D01* X26100Y2648D02* Y1757D01* Y2978D02* Y2925D01* Y7230D02* Y10842D01* Y11205D02* Y12396D01* Y12888D02* Y12855D01* Y19837D02* Y19041D01* Y20991D02* Y20320D01* Y30019D02* Y31156D01* X26145Y1757D02* Y2665D01* Y9217D02* Y7230D01* Y10162D02* Y9366D01* Y10852D02* Y10311D01* Y12367D02* Y11256D01* Y12545D02* Y12577D01* Y12845D02* Y12921D01* Y19041D02* Y19804D01* Y31133D02* Y30048D01* X26158Y5551D02* X26811D01* X26890Y5472* X26161Y25945D02* Y26516D01* X26190Y2707D02* Y1757D01* Y7230D02* Y9171D01* Y9412D02* Y10116D01* Y10357D02* Y10876D01* Y11302D02* Y12321D01* Y12605D02* Y12562D01* Y12966D02* Y12818D01* Y19759D02* Y19041D01* Y30062D02* Y31119D01* X26201Y15453D02* X26158Y15495D01* Y15681* X26201Y37126D02* Y37579D01* X25974Y37805* Y37943* X26235Y1757D02* Y2752D01* Y9149D02* Y7230D01* Y10094D02* Y9431D01* Y10923D02* Y10376D01* Y12302D02* Y11321D01* Y12581D02* Y12687D01* Y12735D02* Y13011D01* Y19041D02* Y19714D01* Y31117D02* Y30064D01* X26237Y12711D02* G03X26093Y12855I144D01* X25949Y12711J144* X26093Y12567I144* X26237Y12711J144* G01X26280Y28189D02* X26043Y28425D01* Y29173* X26280Y2415D02* Y1757D01* Y2797D02* Y2506D01* Y7230D02* Y9041D01* Y9434D02* Y9986D01* Y10379D02* Y11020D01* Y11324D02* Y12299D01* Y13056D02* Y12584D01* Y19669D02* Y19041D01* Y30054D02* Y31127D01* X26325Y1757D02* Y2334D01* Y2587D02* Y2774D01* Y8990D02* Y7380D01* Y9935D02* Y9422D01* Y11050D02* Y10367D01* Y12310D02* Y11312D01* Y12572D02* Y12671D01* Y12751D02* Y12972D01* Y13081D02* Y13252D01* Y13430D02* Y13691D01* Y19077D02* Y19624D01* Y31150D02* Y30031D01* X26339Y3268D02* X26201Y3130D01* X26353Y19105D02* X26289Y19041D01* X25906* G03X25888Y19033J25* G01X25809Y18955* G03X25802Y18937I18J18* G01Y17537* G03X25748Y17545I54J175* X25566Y17362J183* X25724Y17181I182* X25684Y17067I142J114* X25745Y16931I182* G01Y16881* G03X25735Y16831I123J50* X25802Y16716I133* G01Y16632* G03X25735Y16516I66J116* X25802Y16401I133* G01Y16310* X25620Y16127* X25325* X25182Y16270* Y16400* X25231Y16449* G03X25261Y16519I70J70* G01Y16546* X25300Y16586* G03X25326Y16629I70J70* G01X25451Y16754* G03X25458Y16772I18J18* G01Y17620* G03X25469Y17677I137J57* G01Y17691* G03X25458Y17748I148* G01Y18951* X25571* G03X25596Y18976J25* G01Y19213* G03X25571Y19238I25* G01X25458* Y20974* X25522Y21038* X26053* X26117Y20974* Y20320* X25984* G03X25959Y20295J25* G01Y19862* G03X25984Y19837I25* G01X26117* G03X26124Y19825I25J6* G01X26353Y19596* Y19105* X26370Y2300D02* Y1757D01* Y2729D02* Y2621D01* Y7429D02* Y8964D01* Y9391D02* Y9909D01* Y10336D02* Y11082D01* Y11281D02* Y12342D01* Y12602D02* Y12545D01* Y12912D02* Y12821D01* Y13214D02* Y13140D01* Y13715D02* Y13468D01* Y29986D02* Y31156D01* X26415Y1757D02* Y2283D01* Y2638D02* Y2684D01* Y8953D02* Y7474D01* Y9898D02* Y9318D01* Y12347D02* Y10263D01* Y12545D02* Y12576D01* Y12847D02* Y12889D01* Y13163D02* Y13199D01* Y13483D02* Y13715D01* Y31156D02* Y29868D01* X26428Y4611D02* X26472Y4567D01* X26890* X26428Y5731D02* X26445Y5748D01* X26870* X26428Y6081D02* X26486Y6024D01* X26870* X26428Y6431D02* X26532Y6535D01* X26673* X26428Y6791D02* X26653D01* X26673Y6811* X26428Y14041D02* X26352D01* X26220Y14173* X26438Y13341D02* X26582D01* X26438D02* Y13485D01* Y13341D02* X26294D01* X26438D02* Y13197D01* Y14391D02* X26042D01* X25925Y14508* X26438Y14751D02* X26267D01* X26201Y14685* X26438Y16516D02* X26293Y16662D01* Y17172* X26102Y17362* X26448Y3956D02* X26315Y3823D01* Y3568* X26383Y3499* Y3312* X26339Y3268* X26448Y4271D02* X26130D01* X25925Y4476* Y4528* X26458Y13026D02* X26602D01* X26458D02* Y13170D01* Y13026D02* X26314D01* X26458D02* Y12882D01* X26460Y2278D02* Y1757D01* Y7519D02* Y8953D01* Y9315D02* Y9898D01* Y10260D02* Y12304D01* Y12567D02* Y12512D01* Y12882D02* Y12855D01* Y13199D02* Y13170D01* Y13715D02* Y13483D01* Y29868D02* Y31156D01* X26463Y12711D02* X26607D01* X26463D02* Y12855D01* Y12711D02* X26319D01* X26463D02* Y12567D01* X26476Y36004D02* X26474Y36006D01* Y36467* X26492Y3268D02* Y3597D01* X26448Y3641* X26495Y8940D02* G03X26633Y8833I138J36D01* X26776Y8976J143* X26669Y9115I143* G01X26616Y9168* G03X26437Y9316I179J34* X26418Y9315J182* G01X26406Y9327* G03X26267Y9434I139J36* X26124Y9291J143* X26231Y9153I143* G01X26255Y9129* G03X26437Y8951I182J5* X26479Y8956J183* G01X26495Y8940* Y9885D02* G03X26633Y9778I138J36D01* X26776Y9921J143* X26669Y10060I143* G01X26616Y10113* G03X26437Y10261I179J34* X26418Y10260J182* G01X26406Y10272* G03X26267Y10379I139J36* X26124Y10236J143* X26231Y10098I143* G01X26255Y10074* G03X26437Y9896I182J5* X26479Y9901J183* G01X26495Y9885* X26505Y1757D02* Y2285D01* Y8913D02* Y7626D01* Y9858D02* Y9303D01* Y12282D02* Y10248D01* Y12505D02* Y12574D01* Y12849D02* Y12890D01* Y13162D02* Y13214D01* Y13469D02* Y13715D01* Y31156D02* Y29868D01* X26550Y2170D02* Y1757D01* Y7670D02* Y8860D01* Y9277D02* Y9805D01* Y10222D02* Y12278D01* Y12596D02* Y12558D01* Y12915D02* Y12826D01* Y13251D02* Y13137D01* Y13715D02* Y13432D01* Y29868D02* Y31156D01* X26575Y25157D02* X26634Y25217D01* Y25394* X26582Y13341D02* G03X26438Y13485I144D01* X26294Y13341J144* X26438Y13197I144* X26582Y13341J144* G01X26594Y5177D02* X26162D01* X26158Y5181* X26595Y1757D02* Y2129D01* Y8838D02* Y7693D01* Y9783D02* Y9225D01* Y12278D02* Y10170D01* Y12579D02* Y12654D01* Y12769D02* Y12982D01* Y13071D02* Y13427D01* Y13576D02* Y13715D01* Y31156D02* Y29868D01* X26602Y13026D02* G03X26458Y13170I144D01* X26314Y13026J144* X26458Y12882I144* X26602Y13026J144* G01X26607Y12711D02* G03X26463Y12855I144D01* X26319Y12711J144* X26463Y12567I144* X26607Y12711J144* G01X26634Y25394D02* Y25945D01* Y28189D02* X26446Y28376D01* Y28636* X26516Y28705* Y29173* X26634Y28465D02* X26752Y28583D01* Y29173* X26634Y32421D02* Y31850D01* X26640Y2109D02* Y1757D01* Y7702D02* Y8833D01* Y9144D02* Y9778D01* Y10089D02* Y11275D01* Y11402D02* Y12220D01* Y13380D02* Y12584D01* Y13715D02* Y13622D01* Y18420D02* Y17899D01* Y19129D02* Y18903D01* Y29868D02* Y31156D01* X26658Y7110D02* X26520Y6971D01* X26158* X26685Y1757D02* Y2101D01* Y8843D02* Y7699D01* Y9788D02* Y9110D01* Y11207D02* Y10055D01* Y12151D02* Y11471D01* Y12575D02* Y13361D01* Y13641D02* Y13715D01* Y17896D02* Y18420D01* Y18903D02* Y19129D01* Y31156D02* Y29868D01* X26697Y3268D02* Y3760D01* X26728Y3791* X26698Y15291D02* X26335D01* X26201Y15157* X26713Y34075D02* X26516Y34272D01* Y35079* X26713Y34350D02* X26752Y34390D01* Y35079* X26718Y13501D02* X26860Y13476D01* X26718Y13501D02* Y13645D01* Y13501D02* X26574D01* X26718D02* Y13357D01* X26730Y2105D02* Y1757D01* Y7685D02* Y8871D01* Y9082D02* Y9816D01* Y10027D02* Y11175D01* Y11502D02* Y12120D01* Y12611D02* Y12547D01* Y12959D02* Y12812D01* Y13358D02* Y13123D01* Y18420D02* Y17545D01* Y19129D02* Y18903D01* Y19647D02* Y19612D01* Y29868D02* Y31156D01* X26732Y37126D02* Y37547D01* X26474Y37805* Y37943* X26775Y1757D02* Y2120D01* Y8957D02* Y7656D01* Y9902D02* Y8995D01* Y11160D02* Y9940D01* Y12105D02* Y11517D01* Y12474D02* Y12580D01* Y12843D02* Y12917D01* Y13165D02* Y13369D01* Y17545D02* Y18420D01* Y18903D02* Y19129D01* Y19611D02* Y19692D01* Y31156D02* Y29868D01* X26806Y3268D02* Y3581D01* X26861Y3636* Y3983* X26728Y4116* X26820Y2153D02* Y1757D01* Y7594D02* Y11156D01* Y11521D02* Y12101D01* Y12568D02* Y12466D01* Y12900D02* Y12855D01* Y13400D02* Y13182D01* Y19737D02* Y17545D01* Y29868D02* Y31156D01* X26833Y12711D02* X26977D01* X26833D02* Y12855D01* Y12711D02* X26689D01* X26833D02* Y12567D01* X26848Y13041D02* X26992D01* X26848D02* Y13185D01* Y13041D02* X26704D01* X26848D02* Y12897D01* X26865Y1757D02* Y2223D01* Y9241D02* Y7427D01* Y10186D02* Y9341D01* Y11131D02* Y10286D01* Y11761D02* Y11513D01* Y12109D02* Y11861D01* Y12493D02* Y12571D01* Y12852D02* Y12898D01* Y13184D02* Y13484D01* Y17545D02* Y19782D01* Y31156D02* Y29868D01* X26910Y2218D02* Y1757D01* Y7447D02* Y9179D01* Y9403D02* Y10124D01* Y10348D02* Y11069D01* Y11492D02* Y11699D01* Y11923D02* Y12130D01* Y12590D02* Y12554D01* Y12911D02* Y12833D01* Y13479D02* Y13171D01* Y19827D02* Y17546D01* Y29868D02* Y31156D01* X26917Y15197D02* Y15278D01* X27148Y15509* Y15681* X26917Y15551D02* X26828D01* X26698Y15681* X26917Y15906D02* X26874D01* X26728Y16051* X26929Y14409D02* X26860D01* X26698Y14571* X26955Y1757D02* Y2137D01* Y9155D02* Y7462D01* Y10100D02* Y9427D01* Y11045D02* Y10372D01* Y11675D02* Y11451D01* Y12171D02* Y11947D01* Y12578D02* Y12635D01* Y12788D02* Y12945D01* Y13138D02* Y13476D01* Y17579D02* Y19872D01* Y31156D02* Y29868D01* X26974Y36467D02* Y36923D01* X26969Y36929* X26974Y36467D02* X26842D01* Y36096* X26791Y36046* Y35827* X26974Y37943D02* Y37486D01* X26969Y37480* X26977Y12711D02* G03X26833Y12855I144D01* X26689Y12711J144* X26833Y12567I144* X26977Y12711J144* G01X26978Y7321D02* X27085D01* X27244Y7480* X26983Y10078D02* G03X27165Y9896I182J1D01* X27348Y10079J183* X27165Y10261I183* X27149J182* G01X27138Y10272* G03X26999Y10379I139J36* X26856Y10236J143* X26963Y10098I143* G01X26983Y10078* X26988Y2854D02* X26806Y3037D01* Y3268* X26988Y3130D02* X27126Y3268D01* X26992Y13041D02* G03X26848Y13185I144D01* X26704Y13041J144* X26848Y12897I144* X26992Y13041J144* G01X26999Y12441D02* X27143D01* X26999D02* Y12585D01* Y12441D02* X26857Y12466D01* X27000Y2103D02* Y1757D01* Y7463D02* Y9116D01* Y9434D02* Y10002D01* Y10379D02* Y11006D01* Y11324D02* Y11668D01* Y11987D02* Y12278D01* Y13431D02* Y12585D01* Y19917D02* Y17587D01* Y29868D02* Y31156D01* X27004Y11002D02* G03X27185Y10841I181J22D01* X27368Y11024J183* X27185Y11206I183* X27152Y11203J182* G01X27138Y11217* G03X26999Y11324I139J36* X26993J143* X26994Y11339I182J15* X26811Y11521I183* X26629Y11339J182* X26811Y11156I182* X26857Y11162J183* X26963Y11043I142J19* G01X27004Y11002* Y9112D02* G03X27185Y8951I181J22D01* X27368Y9134J183* X27185Y9316I183* X27152Y9313J182* G01X27138Y9327* G03X26999Y9434I139J36* X26856Y9291J143* X26963Y9153I143* G01X27004Y9112* X27045Y1757D02* Y2086D01* Y9017D02* Y7448D01* Y9942D02* Y9427D01* Y10907D02* Y10372D01* Y11676D02* Y11317D01* Y12278D02* Y12085D01* Y12578D02* Y13051D01* Y13252D02* Y13402D01* Y18104D02* Y19936D01* Y31156D02* Y29921D01* X27087Y2264D02* X27045D01* X26697Y2612* Y3268* X27090Y2081D02* Y1757D01* Y7578D02* Y8978D01* Y9402D02* Y9913D01* Y10347D02* Y10868D01* Y11292D02* Y11701D01* Y12124D02* Y12278D01* Y12611D02* Y12553D01* Y13020D02* Y12812D01* Y13370D02* Y13283D01* Y19936D02* Y18149D01* Y29950D02* Y31156D01* X27106Y25945D02* Y26535D01* X26850Y26791* X27106Y32421D02* Y31850D01* X27126Y3268D02* X27171Y3312D01* Y3606* X27158Y3618* Y3816* X27018Y3956* X27135Y1757D02* Y2088D01* Y8958D02* Y7627D01* Y9899D02* Y9336D01* Y10848D02* Y10281D01* Y11766D02* Y11226D01* Y12278D02* Y12144D01* Y12489D02* Y12580D01* Y12843D02* Y13008D01* Y13295D02* Y13359D01* Y18194D02* Y19936D01* Y31156D02* Y29963D01* X27148Y4801D02* X26931D01* X26890Y4843* X27148Y5551D02* X27815D01* X27874Y5492* X27148Y6611D02* X27576D01* X27618Y6654* X27148Y13151D02* X27292D01* X27148D02* Y13295D01* Y13151D02* X27004D01* X27148D02* Y13007D01* Y13501D02* X27070D01* X26909Y13661* X27148Y14571D02* X27164Y14587D01* X27598* X27148Y15291D02* X27172Y15315D01* X27598* X27152Y11789D02* G03X27185Y11786I33J180D01* X27368Y11969J183* X27185Y12151I183* X27004Y11991J182* G01X26963Y11950* G03X26856Y11811I36J139* X26999Y11668I143* X27138Y11775J143* G01X27152Y11789* X27180Y2107D02* Y1757D01* Y7651D02* Y8951D01* Y9316D02* Y9897D01* Y10261D02* Y10841D01* Y11206D02* Y11786D01* Y12151D02* Y12278D01* Y12568D02* Y12427D01* Y13011D02* Y12855D01* Y13362D02* Y13292D01* Y19936D02* Y18239D01* Y29965D02* Y31156D01* X27193Y12711D02* X27337D01* X27193D02* Y12855D01* Y12711D02* X27049D01* X27193D02* Y12567D01* X27224Y29173D02* Y28602D01* Y34508D02* Y35079D01* X27225Y1757D02* Y2145D01* Y2383D02* Y2416D01* Y8956D02* Y7662D01* Y9906D02* Y9312D01* Y10846D02* Y10251D01* Y11790D02* Y11202D01* Y12278D02* Y12147D01* Y12474D02* Y12571D01* Y12987D02* Y13030D01* Y13273D02* Y13380D01* Y18284D02* Y19936D01* Y31156D02* Y29956D01* X27270Y2416D02* Y1757D01* Y7661D02* Y8972D01* Y9295D02* Y9929D01* Y10228D02* Y10862D01* Y11185D02* Y11807D01* Y12130D02* Y12278D01* Y12590D02* Y12549D01* Y13075D02* Y13038D01* Y13426D02* Y13228D01* Y19936D02* Y18329D01* Y29933D02* Y31156D01* X27280Y3268D02* Y2870D01* X26988Y2579* X27292Y13151D02* G03X27148Y13295I144D01* X27004Y13151J144* X27148Y13007I144* X27292Y13151J144* G01X27298Y3791D02* X27280Y3773D01* Y3268* X27298Y16366D02* X27165Y16499D01* Y17445* X27238Y17519* Y17789* X27520Y18071* X27315Y1757D02* Y2416D01* Y9006D02* Y7648D01* Y9974D02* Y9262D01* Y10896D02* Y10183D01* Y11840D02* Y11152D01* Y12278D02* Y12097D01* Y12576D02* Y12635D01* Y13063D02* Y13222D01* Y18374D02* Y19936D01* Y31156D02* Y29888D01* X27343Y25945D02* Y26476D01* X27303Y26516* X27343Y31850D02* Y32559D01* X27520Y32736* X27360Y2416D02* Y1757D01* Y7621D02* Y9082D01* Y9186D02* Y10972D01* Y11075D02* Y11917D01* Y12020D02* Y12278D01* Y12713D02* Y12585D01* Y13190D02* Y13075D01* Y19936D02* Y18435D01* Y29868D02* Y31156D01* X27365Y12441D02* Y12585D01* Y12441D02* X27221D01* X27396Y3268D02* Y3591D01* X27431Y3626* Y4166* X27177Y4421* X27148* X27405Y1757D02* Y2416D01* Y12278D02* Y7566D01* Y12579D02* Y12713D01* Y13075D02* Y13179D01* Y18488D02* Y19936D01* Y31047D02* Y29868D01* X27416Y13073D02* G03X27382Y13076I34J179D01* X27199Y12894J182* X27204Y12855I183* X27193I11J144* X27049Y12711J144* X27193Y12567I144* X27337Y12711J144* Y12717I144* X27382Y12711I45J177* X27416Y12714J183* G01Y12576* G03X27365Y12585I51J135* X27221Y12441J144* X27222Y12427I144* G01X27142* G03X27143Y12441I143J14* X26999Y12585I144* X26857Y12460J144* X26811Y12466I46J177* X26785Y12464J183* G01X26772Y12477* G03X26633Y12584I139J36* X26495Y12478J143* G01X26435Y12537* G03X26417Y12545I18J17* G01X26366* G03X26267Y12584I99J104* X26168Y12545J143* G01X26000* G03X25901Y12584I99J104* X25802Y12545J143* G01X25634* G03X25535Y12584I99J104* X25436Y12545J143* G01X25268* G03X25169Y12584I99J104* X25070Y12545J143* G01X24902* G03X24803Y12584I99J104* X24704Y12545J143* G01X24684* X24700Y12561* G03X24736Y12638I87J88* X24756Y12711I123J73* X24613Y12854I143* X24470Y12711J143* X24473Y12683I143* G01X24439Y12649* X24438Y12648* X24350Y12560* G03X24334Y12541I87J87* X24296Y12464I103J100* X24272Y12466I24J181* X24214Y12457J183* X24071Y12585I143J16* X23927Y12441J144* X23933Y12402I144* G01X23923Y12412* Y12577* G03X24016Y12711I50J134* X23937Y12839I143* G01X23987Y12888* X24094* G03X24158Y12873I64J128* X24301Y13006J143* G01X24341Y13046* X24346* G03X24443Y13008I97J105* X24540Y13046J143* G01X24744* G03X24921Y12908I177J45* X25091Y13025J183* X25158Y13008I67J126* X25255Y13046J143* G01X25265* X25327Y12984* G03X25401Y12910I131J57* G01X25415Y12896* G03X25433Y12888I18J17* G01X25603* G03X25685Y12869I82J163* X25767Y12888J182* G01X25830* G03X25953Y12841I123J136* X26075Y12888J183* G01X26102* G03X26120Y12896J25* G01X26278Y13053* G03X26285Y13071I18J18* G01Y13075* G03X26301Y13141I127J66* X26285Y13208I143* G01Y13435* G03X26301Y13501I127J66* X26285Y13568I143* G01Y13651* X26349Y13715* X26735* G03X26727Y13661I174J54* X26728Y13645I182* X26718I10J144* X26574Y13501J144* X26718Y13357I144* X26861Y13485J144* X26909Y13479I48J176* X26948Y13483J182* G01X26999Y13431* G03X27041Y13406I71J70* X27148Y13358I107J95* X27287Y13465J143* G01X27323Y13429* G03X27275Y13321I95J108* X27416Y13178I143* G01Y13073* X27418Y4991D02* X27468Y4941D01* X27894* X27418Y6081D02* X27425Y6088D01* X27829* X27874Y6043* X27418Y6791D02* Y6991D01* X27382Y7028* X27418Y13321D02* X27652D01* X27657Y13327* X27418Y14041D02* X27449Y14010D01* X27829* X27894Y14075* X27441Y35827D02* X27146D01* X27450Y2416D02* Y1757D01* Y7483D02* Y12278D01* Y19601D02* Y18515D01* Y29868D02* Y30973D01* X27461Y29173D02* Y28524D01* X27697Y28287* X27461Y35079D02* Y34469D01* X27224Y34232* X27480Y7303D02* X27542Y7241D01* X27718* X27495Y1993D02* Y2402D01* Y12291D02* Y7485D01* Y18529D02* Y19556D01* Y30940D02* Y29868D01* X27520Y2598D02* X27396Y2722D01* Y3268* X27520Y17520D02* X27367Y17367D01* Y16902* X27438Y16831* Y16341* X27578Y16201* X27520Y17795D02* X27337Y17613D01* Y17478* X27268Y17408* Y16712* X27298Y16681* X27520Y18346D02* X27139Y17966D01* Y17560* X27066Y17487* X26990* X26955Y17451* Y16884* X27008Y16831* X27539Y2579D02* X27520Y2598D01* X27540Y2396D02* Y1994D01* Y7476D02* Y12298D01* Y19511D02* Y18529D01* Y29868D02* Y30924D01* X27568Y13041D02* X27529D01* X27382Y12894* X27578Y16831D02* X27466Y16943D01* Y17162* X27663Y17359* X27579Y3130D02* X27761Y3312D01* Y3600* X27733Y3628* Y3811* X27588Y3956* X27579Y5177D02* X27152D01* X27148Y5181* X27579Y5906D02* X27152D01* X27148Y5901* X27585Y1994D02* Y2402D01* Y10961D02* Y7453D01* Y12298D02* Y11165D01* Y18529D02* Y19466D01* Y30920D02* Y29868D01* X27598Y6280D02* X27570D01* X27418Y6431* X27630Y2416D02* Y1994D01* Y7427D02* Y10915D01* Y11211D02* Y12298D01* Y19421D02* Y18531D01* Y29868D02* Y30927D01* X27633Y15969D02* X27526D01* X27418Y15861* X27657Y13760D02* X27556Y13861D01* X27148* X27675Y1994D02* Y2416D01* Y9080D02* Y7427D01* Y10286D02* Y9148D01* Y10891D02* Y10462D01* Y12298D02* Y11235D01* Y18576D02* Y19376D01* Y30947D02* Y29868D01* X27677Y35827D02* Y36031D01* X27974Y36329* Y36467* X27692Y18593D02* X27627Y18529D01* X27480* G03X27463Y18522J25* G01X27460Y18519* G03X27347Y18406I60J173* G01X27030Y18089* G03X27022Y18071I17J18* G01Y17609* X26999Y17586* X26990* G03X26920Y17557J99* G01X26908Y17545* X26703* X26697Y17551* G03X26698Y17559I24J8* G01Y17874* G03X26673Y17899I25* G01X26639* Y18420* X26772* G03X26797Y18445J25* G01Y18878* G03X26772Y18903I25* G01X26639* Y19129* X26772* G03X26797Y19154J25* G01Y19587* G03X26772Y19612I25* G01X26694* X27018Y19936* X27416* Y19646* G03X27423Y19628I25* G01X27692Y19360* Y18593* X27697Y28012D02* X27933Y28248D01* Y29173* X27697Y32421D02* X27815Y32303D01* Y31850* X27720Y2416D02* Y1994D01* Y7427D02* Y8991D01* Y9238D02* Y10232D01* Y10516D02* Y10881D01* Y11245D02* Y11283D01* Y11395D02* Y12298D01* Y29868D02* Y30987D01* X27765Y1994D02* Y2416D01* Y8955D02* Y7427D01* Y10089D02* Y9654D01* Y10819D02* Y10543D01* Y12298D02* Y11468D01* Y31156D02* Y29868D01* X27810Y2416D02* Y1994D01* Y7427D02* Y8937D01* Y9714D02* Y10028D01* Y10555D02* Y10758D01* Y11501D02* Y12298D01* Y29868D02* Y31156D01* X27815Y25394D02* Y25217D01* X27776Y25177* X27815Y25945D02* Y25394D01* X27855Y1994D02* Y2400D01* Y8932D02* Y7427D01* Y10005D02* Y9738D01* Y10735D02* Y10555D01* Y12298D02* Y11517D01* Y31156D02* Y29868D01* X27866Y17354D02* Y16683D01* X27868Y16681* Y16366D02* Y16401D01* X27723Y16546* Y17012* X27650Y17086* X27874Y4370D02* X27687D01* X27588Y4271* X27874Y6339D02* X27896Y6360D01* Y6591* X27874Y15827D02* X28020Y15681D01* X28128* X27878Y3791D02* Y3154D01* X27579Y2854* X27878Y4111D02* X28011Y3978D01* Y3011* X27854Y2854* X27894Y11339D02* X27933Y11299D01* Y11050* X28068Y10915* Y10601* X27894Y14449D02* X27836Y14391D01* X27418* X27894Y15276D02* X27729Y15111D01* X27418* X27898Y9601D02* X27849Y9552D01* Y9119* X27854Y9114* X27898Y10871D02* Y10901D01* X27736Y11063* X27900Y2396D02* Y1994D01* Y7427D02* Y8938D01* Y9744D02* Y9998D01* Y10544D02* Y10728D01* Y11521D02* Y12261D01* Y29868D02* Y31156D01* X27933Y35079D02* Y34469D01* X27697Y34232* X27945Y1990D02* Y2404D01* Y8808D02* Y7427D01* Y31156D02* Y29868D01* X27953Y19902D02* X28046D01* Y19691* X28247Y19490* X28248* X27972Y24980D02* Y25315D01* X28051Y25394* X27974Y36467D02* Y36862D01* X27972Y36864* Y36929* X27974Y37943D02* Y37482D01* X27972Y37480* X27990Y2408D02* Y2002D01* Y7427D02* Y8761D01* Y29868D02* Y31156D01* X28012Y13327D02* X28047Y13291D01* X28248* X28012Y13799D02* Y13658D01* X28098Y13571* X28031Y9390D02* X28068Y9426D01* Y9871* X28035Y2047D02* Y2363D01* Y8742D02* Y7427D01* Y31156D02* Y29868D01* X28046Y2058D02* X27958Y1970D01* G03X27933Y1994I25J1* G01X27500* G03X27475Y1969J25* G01Y1757* X25758* X25379Y2136* Y3462* G03X25531Y3381I152J101* X25714Y3563J182* X25531Y3745I183* X25520J182* X25488Y3760I67J104* G01X25758Y4030* X25935* X26038Y3927* Y3849* G03X26025Y3791I120J58* X26035Y3741I133* G01Y3481* G03X26018Y3406I166J75* X26038Y3323I183* G01Y3212* G03X26018Y3130I163J82* X26135Y2960I183* G01X26040Y2865* X25993* G03X25846Y2938I147J109* X25664Y2756J182* X25846Y2573I182* X25993Y2647J183* G01X26085* G03X26162Y2679J109* G01X26291Y2808* X26455Y2643* G03X26274Y2461I2J182* X26457Y2278I183* X26510Y2286J183* Y2283I183J3* X26693Y2101I183* X26875Y2279J182* G01X26905Y2250* G03X27087Y2081I182J14* X27269Y2264J183* X27187Y2416I182* G01X27457* G03X27539Y2396I82J163* X27622Y2416J183* G01X27811* G03X27894Y2396I83J163* X27976Y2416J183* G01X27982* X28046Y2352* Y2058* X28051Y25394D02* Y25945D01* Y31850D02* Y32421D01* X28080Y7427D02* Y8739D01* Y29868D02* Y31156D01* X28125Y8750D02* Y7427D01* Y31156D02* Y29868D01* X28128Y4801D02* X28130Y4803D01* X28543* X28128Y15291D02* Y15314D01* X27896Y15546* X28150Y6870D02* Y7133D01* X28168Y7151* X28150Y17362D02* X27967Y17180D01* Y16891* X28008Y16850* Y16656* X28148Y16516* X28169Y6594D02* X28128Y6553D01* Y6261* X28169Y29173D02* Y28602D01* Y35079D02* Y34508D01* X28170Y7427D02* Y8781D01* Y29868D02* Y31156D01* X28215Y8854D02* Y7427D01* Y31156D02* Y29868D01* X28226Y13976D02* Y13703D01* X28268Y13661* Y13529* X28506Y13291* X28608* X28228Y9114D02* Y9308D01* X28222Y9314* Y9575* X28248Y9601* Y19291D02* Y19490D01* Y12851D02* X28110Y12989D01* Y13051* X28260Y7427D02* Y8295D01* Y8516D02* Y8899D01* Y29868D02* Y31156D01* X28287Y35827D02* X28031D01* X28305Y8253D02* Y7427D01* Y8944D02* Y8558D01* Y31156D02* Y29896D01* X28307Y10374D02* X28248Y10315D01* Y10141* X28310Y18228D02* Y18133D01* X28307Y18130* X28327Y11339D02* X28428Y11237D01* Y10601* X28346Y18445D02* Y18265D01* X28310Y18228* X28346Y18799D02* X28253D01* Y18953* X28248Y18958* Y19291* X28350Y7427D02* Y8232D01* Y8579D02* Y8951D01* Y29918D02* Y31156D01* X28395Y8223D02* Y7427D01* Y8951D02* Y8588D01* Y31156D02* Y29926D01* X28398Y4991D02* X28617D01* X28625Y5000* X28957* X28398Y15111D02* Y15234D01* X28617Y15453* X28839* X28406Y9390D02* Y9705D01* X28428Y9728* Y9871* X28406Y13051D02* X28605Y12851D01* X28608* X28438Y3791D02* Y3541D01* X28380Y3483* Y2979* X28819Y2539* X28438Y16051D02* X28305Y16184D01* Y16860* X28339Y16894* Y17355* X28898Y17913* X28440Y7427D02* Y8036D01* Y8618D02* Y8951D01* Y29923D02* Y31156D01* X28474Y36467D02* Y36919D01* X28465Y36929* X28474Y37943D02* Y37490D01* X28465Y37480* X28485Y7995D02* Y7427D01* Y8951D02* Y8684D01* Y31156D02* Y29908D01* X28492Y14067D02* X28348Y14211D01* X28128* X28524Y7205D02* Y6987D01* X28428Y6891* X28530Y7427D02* Y7975D01* Y8731D02* Y8915D01* Y29878D02* Y31156D01* X28543Y5551D02* X28128D01* X28568Y15761D02* X28806D01* X28839Y15728* X28575Y7967D02* Y7427D01* Y31156D02* Y29868D01* X28583Y5925D02* X28152D01* X28128Y5901* X28583Y8150D02* X28742D01* X28958Y8365* Y8611* X28588Y6601D02* X28570D01* X28406Y6437* X28602Y14626D02* X28548Y14571D01* X28128* X28608Y9601D02* X28597Y9590D01* Y9119* X28602Y9114* X28608Y11861D02* X28425Y12044D01* Y12087* X28620Y7427D02* Y7971D01* Y29868D02* Y31156D01* X28622Y10374D02* X28608Y10360D01* Y10141* X28622Y28425D02* Y28686D01* X28642Y28705* Y29173* X28665Y7987D02* Y7427D01* Y31156D02* Y29868D01* X28710Y7427D02* Y8019D01* Y29868D02* Y31156D01* X28728Y3641D02* Y3433D01* X28661Y3366* X28728Y3956D02* X28861Y3823D01* Y3133* X28819Y3091* X28755Y8051D02* Y7427D01* Y31156D02* Y29868D01* X28758Y14081D02* X28948Y14271D01* Y14331* X28778Y9871D02* Y9728D01* X28780Y9727* Y9390* X28778Y13561D02* Y13742D01* X28720Y13799* X28780Y11024D02* Y10603D01* X28778Y10601* X28800Y7427D02* Y8069D01* Y29868D02* Y31156D01* X28819Y2815D02* X28479Y3155D01* Y3442* X28583Y3546* Y4136* X28728Y4281* X28819Y14803D02* X28814Y14808D01* X28508* X28450Y14751* X28398* X28839Y34232D02* X28642Y34429D01* Y35079* X28839Y34508D02* X28878Y34547D01* Y35079* X28845Y8112D02* Y7427D01* Y31156D02* Y29868D01* X28848Y14571D02* X29090D01* X29094Y14567* X28858Y2244D02* X28856D01* X28281Y2820* Y3524* X28291Y3535* Y3823* X28158Y3956* X28858Y12343D02* X28907Y12293D01* Y11912* X28958Y11861* X28858Y15157D02* X28792D01* X28658Y15291* X28878Y6161D02* X29118D01* X29138Y6181* X28878Y11339D02* X28962Y11255D01* Y10875* X28958Y10871* X28890Y7427D02* Y8157D01* Y29868D02* Y31156D01* X28898Y17362D02* X28797D01* X28578Y17143* Y16506* X28438Y16366* X28898Y17638D02* X28438Y17178D01* Y16681* X28898Y28425D02* Y29154D01* X28878Y29173* X28935Y8202D02* Y7427D01* Y31156D02* Y29868D01* X28949Y4370D02* X28880Y4439D01* X28571* X28398Y4611* X28957Y5374D02* X28645D01* X28639Y5368* X28401* X28398Y5371* X28957Y19567D02* X28472D01* X28395Y19490* X28248* X28957Y32854D02* X29123Y32688D01* Y32445* X28996Y32318* Y31852* X28958Y6641D02* X28780Y6463D01* Y6437* X28974Y36467D02* Y36927D01* X28976Y36929* X28974Y36467D02* Y36096D01* X28957Y36079* Y35827* X28974Y37943D02* Y37463D01* X28976Y37461* X28980Y7427D02* Y8247D01* Y29868D02* Y31156D01* X28996Y31852D02* Y31850D01* X29025Y8276D02* Y7427D01* Y31156D02* Y29988D01* X29055Y2244D02* X28858D01* X29070Y7427D02* Y8243D01* Y30032D02* Y31156D01* X29108Y5181D02* X29272Y5018D01* Y5000* X29108Y14931D02* X29228Y14811D01* X29339* X29108Y15291D02* X29311Y15088D01* Y15079* X29114Y34232D02* X29350Y34469D01* Y35079* X29115Y8227D02* Y7427D01* Y31156D02* Y30055D01* X29134Y13031D02* Y13026D01* X29308Y12851* X29138Y8881D02* X29154Y8866D01* Y8406* X29138Y9871D02* X29154Y9856D01* Y9390* X29138Y11591D02* Y12004D01* X29094Y12047* X29138Y12581D02* Y12358D01* X29154Y12343* X29138Y13561D02* X29154Y13577D01* Y14016* Y15925D02* X29108Y15880D01* Y15681* X29154Y17697D02* Y17851D01* Y17941* Y18228* Y26732D02* X28996Y26575D01* Y25945* X29154Y27008D02* X29336Y26825D01* Y26649* X29232Y26545* Y25945* X29154Y18228D02* Y19016D01* X29350Y19213* X29160Y7427D02* Y8223D01* Y30064D02* Y31156D01* X29205Y8039D02* Y7427D01* Y31156D02* Y30062D01* X29209Y4252D02* X29129D01* X29008Y4131* X29232Y32854D02* Y31850D01* X29250Y7427D02* Y7997D01* Y30047D02* Y31156D01* X29288Y16831D02* X29488Y17031D01* Y17067* X29291Y7087D02* X29138Y6933D01* Y6911* X29291Y10394D02* X29308Y10377D01* Y10141* X29295Y7976D02* Y7427D01* Y31156D02* Y30018D01* X29298Y3641D02* Y3322D01* X29356Y3265* Y3076* X29272Y2992* X29308Y8611D02* X29341Y8579D01* Y8159* X29350Y8150* X29308Y10871D02* Y11040D01* X29370Y11102* X29308Y13831D02* X29449Y13972D01* Y14016* X29340Y2429D02* Y2533D01* Y7427D02* Y7967D01* Y29956D02* Y31156D01* X29350Y9114D02* X29341Y9124D01* Y9569* X29308Y9601* X29350Y19213D02* X29377D01* X29518Y19354* Y19781* Y19791* X29175Y20133* Y21594* X29238Y21657* Y21808* X29122Y21923* Y22020* X28957Y22185* X29350Y29173D02* Y28583D01* X29385Y2141D02* Y2033D01* Y2578D02* Y2340D01* Y7970D02* Y7555D01* Y31156D02* Y29868D01* X29409Y14291D02* X29399Y14281D01* X29178* X29428Y4491D02* Y4516D01* X29284* X29273Y4528* X29193* X29428Y15671D02* Y15623D01* X29665Y15386* Y15256* X29430Y2033D02* Y2613D01* Y7595D02* Y7985D01* Y29868D02* Y31156D01* X29458Y5551D02* X29311Y5698D01* Y5768* X29469Y12047D02* X29488Y12028D01* Y11591* X29469Y12343D02* X29286Y12160D01* Y11883* X29308Y11861* X29469Y26516D02* X29602D01* X29705Y26413* Y25945* X29469Y36929D02* X29474Y36923D01* Y36467* Y37943D02* Y37486D01* X29469Y37480* X29475Y3928D02* Y1757D01* Y8016D02* Y7616D01* Y31156D02* Y29868D01* X29488Y8881D02* Y8445D01* X29528Y8406* X29488Y17539D02* X29202Y17253D01* Y17084* X29008Y16890* Y16681* X29508Y13091D02* Y12601D01* X29488Y12581* X29508Y17815D02* X29506D01* X29103Y17412* Y17130* X28863Y16890* Y16661* X28718Y16516* X29520Y1757D02* Y3951D01* Y7623D02* Y8082D01* Y29868D02* Y31156D01* X29565Y2930D02* Y1757D01* Y3951D02* Y3212D01* Y8227D02* Y7620D01* Y31156D02* Y29868D01* X29567Y11339D02* Y11007D01* X29488Y10928* Y10601* X29578Y4111D02* X29933D01* X30091Y3954* X30175* X30282Y3847* Y3736* X30276Y3729* Y3610* X30449Y3436* X30462* X30591Y3307* X29587Y34232D02* X29904D01* X30059Y34388* Y35079* X29610Y1757D02* Y2876D01* Y3266D02* Y3937D01* Y7604D02* Y8243D01* Y29868D02* Y31156D01* X29626Y19193D02* X29655Y19222D01* Y19245* X29705Y19295* Y19567* X29646Y4331D02* Y4464D01* X29748Y4566* X29646Y7087D02* X29488Y6929D01* Y6911* X29646Y17303D02* X29466D01* X29301Y17138* Y17043* X29148Y16890* Y16506* X29008Y16366* X29655Y2831D02* Y1757D01* Y3892D02* Y3311D01* Y8275D02* Y7572D01* Y31156D02* Y29868D01* X29668Y6211D02* X29420D01* X29370Y6161* X29668Y6641D02* X29528Y6501D01* Y6437* X29668Y9601D02* X29715Y9555D01* Y9124* X29724Y9114* X29668Y12851D02* X29690Y12873D01* Y13302* X29646Y13346* X29668Y13831D02* X29640Y13859D01* Y14247* X29685Y14291* X29700Y1757D02* Y2786D01* Y7501D02* Y8255D01* Y29868D02* Y31156D01* X29705Y20591D02* X29921D01* X30315Y20197* Y20157* X29705Y31850D02* Y32461D01* X29469Y32697* X29718Y15911D02* Y15734D01* X29665Y15681* X29724Y4803D02* X29595D01* X29587Y4811* X29438* X29738Y5311D02* X29951Y5098D01* X30020* X29744Y10374D02* X29668Y10298D01* Y10141* X29745Y2752D02* Y1757D01* Y8233D02* Y7427D01* Y31156D02* Y29868D01* X29764Y18012D02* Y17443D01* X29828Y17379* Y17221* X29761Y17154* Y17082* X29377Y16698* X29337* X29288Y16649* Y16516* X29790Y1757D02* Y2741D01* Y7427D02* Y8224D01* Y29868D02* Y31156D01* X29835Y2728D02* Y1760D01* Y8226D02* Y7427D01* Y31156D02* Y29868D01* X29843Y11339D02* X29668Y11164D01* Y10871* X29858Y8881D02* X30000Y9023D01* Y9114* X29858Y9871D02* X29902Y9828D01* Y9390* X29858Y16201D02* Y16265D01* X30117Y16524* X30213* X30358Y16669* X30493* X30611Y16786* Y16876* X30713Y16979* X30839* X30950Y17090* Y17258* X30768Y17441* X29858Y16516D02* X30003Y16661D01* Y16836* X30070Y16903* Y17041* X30256Y17227* Y17244* X29862Y34449D02* X29823Y34488D01* Y35079* X29863Y5621D02* X30020Y5465D01* Y5394* X29863Y5936D02* X30032Y5768D01* X30059* X29868Y14861D02* X29999D01* X30256Y15118* X30276* X29880Y1805D02* Y2683D01* Y7460D02* Y8193D01* Y29868D02* Y31156D01* X29882Y3071D02* X29936Y3125D01* Y3383* X29991Y3439* Y3514* X29992Y3515* Y3565* X30011Y3583* Y3814* X29868Y3956* X29882Y12047D02* Y11615D01* X29858Y11591* X29882Y19980D02* Y19183D01* X29661Y18962* Y18418* X29761Y18318* X29937* X30027Y18228* X29896Y2668D02* Y1821D01* X29832Y1757* X29450* G03X29454Y1772I21J15* G01Y2008* G03X29429Y2033I25* G01X29320* X29349Y2062* G03X29385Y2149I87J87* G01Y2333* G03X29349Y2420I123* G01X29316Y2453* Y2509* X29420Y2613* X29429* G03X29454Y2638J25* G01Y2647* X29466Y2659* G03X29474Y2677I17J18* G01Y2913* G03X29466Y2931I25* G01X29434Y2963* Y3016* G03X29455Y3076I78J60* G01Y3265* G03X29434Y3325I99* G01Y3887* X29499Y3951* X29596* X29660Y3887* Y3886* Y3316* X29588Y3244* G03X29552Y3156I87J88* G01Y2985* G03X29588Y2898I123* G01X29709Y2777* G03X29796Y2741I87J87* G01X29822* X29896Y2667* Y2668* X29902Y6437D02* X30048Y6584D01* Y6641* X29921Y18563D02* X29961D01* X30099Y18425* Y18299* X30170Y18228* X29925Y8105D02* Y7489D01* Y31156D02* Y29868D01* X29941Y25394D02* Y25374D01* Y25945D02* Y25394D01* Y31850D02* Y32343D01* X30295Y32697* X29961Y14291D02* X30020Y14232D01* Y13860* X30048Y13831* X29970Y7503D02* Y8069D01* Y29868D02* Y31156D01* X29980Y15118D02* X29873Y15011D01* X29588* X30000Y7323D02* X30447D01* X30598Y7171* X30015Y8051D02* Y7505D01* Y31156D02* Y29868D01* X30027Y18228D02* X30173Y18082D01* X30382* X30551Y17913* X30039Y17972D02* Y18022D01* X29955Y18106* X29864Y18197* X29690* X29544Y18051* X29350* X30059Y8228D02* Y8600D01* X30048Y8611* X30059Y29173D02* Y28705D01* X30162Y28602* X30295* X30060Y7495D02* Y8046D01* Y29868D02* Y31140D01* X30068Y15961D02* X29941Y15834D01* Y15748* X30078Y4511D02* Y4725D01* X30000Y4803* X30105Y8052D02* Y7472D01* Y31112D02* Y29868D01* X30118Y12343D02* X30069Y12293D01* Y11882* X30048Y11861* X30138Y11339D02* X30048Y11249D01* Y10871* X30148Y3791D02* Y3658D01* X30118Y3628* Y3307* X30148Y4116D02* X30428D01* X30437Y4107* X30826* X30926Y4007* Y3915* X31181Y3660* Y3543* X30148Y16366D02* X30287D01* X30374Y16280* X30150Y7427D02* Y8070D01* Y29868D02* Y31099D01* X30170Y18228D02* X30200Y18198D01* X31181* X30195Y8107D02* Y7427D01* Y31098D02* Y29897D01* X30217Y9390D02* Y9433D01* X30048Y9601* X30236Y6201D02* Y5943D01* X30243Y5936* X30236Y6476D02* Y6766D01* X30238Y6768* Y6911* X30236Y18673D02* X30149D01* X30114Y18709* Y18882* X29921* Y18917* X30238Y14531D02* X30206D01* X30059Y14678* X30240Y7427D02* Y8125D01* Y29918D02* Y31108D01* X30256Y11063D02* Y10619D01* X30238Y10601* X30256Y12047D02* Y11609D01* X30238Y11591* X30256Y17520D02* X30027Y17291D01* Y17139* X29966Y17078* Y16939* X29858Y16831* X30256Y17795D02* X29928Y17468D01* Y17181* X29867Y17119* Y17047* X29718Y16899* Y16506* X29578Y16366* X30262Y14291D02* X30068Y14485D01* X29915* X29858Y14541* X30285Y8099D02* Y7427D01* Y31132D02* Y29926D01* X30295Y28327D02* X30166Y28456D01* X30072* X29823Y28705* Y29173* X30298Y4791D02* X30701D01* X30846Y4646* X30315Y5394D02* Y5549D01* X30243Y5621* X30315Y10374D02* Y10254D01* X30428Y10141* X30330Y7427D02* Y7799D01* Y8027D02* Y8087D01* Y29923D02* Y31156D01* X30335Y18622D02* X30288D01* X30236Y18673* X30335Y18622D02* X30428D01* Y18401* X30392Y18366* X30335* X30375Y7759D02* Y7427D01* Y31156D02* Y29908D01* X30378Y16021D02* X30805D01* X30866Y16083* X30413Y25945D02* Y26555D01* X30177Y26791* X30413Y31850D02* Y32303D01* X30295Y32421* X30420Y7427D02* Y7739D01* Y29877D02* Y31156D01* X30428Y9601D02* Y9695D01* X30878Y10144* X31326* X31378Y10092* X31785* X32067Y10374* X30428Y10871D02* X30591Y10709D01* Y10374* X30428Y12851D02* X30344Y12935D01* Y13181* X30179Y13346* X30000* X30428Y16516D02* X30493D01* X30651Y16674* X30813* X30926Y16786* Y16876* X31049Y17000* Y17435* X30768Y17717* X30453Y16831D02* Y16859D01* X30760Y17165* X30768* X30465Y7731D02* Y7427D01* Y8123D02* Y8096D01* Y31156D02* Y29868D01* X30472Y6969D02* X30550Y6891D01* X30768* X30474Y36467D02* Y36911D01* X30512Y36949* X30474Y37943D02* Y37557D01* X30571Y37461* X30510Y7399D02* Y7735D01* Y29868D02* Y31156D01* X30512Y15748D02* X30528Y15732D01* Y15501* Y14193D02* X30428Y14093D01* Y13831* X30528Y15181D02* X30518D01* X30315Y15385* X30531Y13071D02* X30571Y13031D01* Y12792* X30361Y12581* X30238* X30531Y29173D02* Y28563D01* X30768Y28327* X30531Y34508D02* Y35079D01* X30555Y7751D02* Y7355D01* Y31156D02* Y29868D01* X30558Y5301D02* X30761Y5098D01* X30768* X30588Y4646D02* Y4387D01* X30551Y4350* X30593Y8311D02* Y8034D01* X30472Y7913* X30600Y7310D02* Y7783D01* Y29868D02* Y31156D01* X30645Y7854D02* Y7308D01* Y31156D02* Y29868D01* X30650Y25945D02* Y26555D01* X30886Y26791* X30650Y32421D02* Y31850D01* X30690Y7308D02* Y8013D01* Y29868D02* Y31156D01* X30709Y6614D02* X30722Y6601D01* X30928* X30735Y8361D02* Y7308D01* Y31156D02* Y29868D01* X30768Y29173D02* Y28602D01* Y34331D02* Y35079D01* Y8591D02* X30472Y8887D01* Y9075* X30768Y11881D02* Y12027D01* X30689Y12106* X30768Y14161D02* X30901Y14028D01* X31489* X31634Y14173* X30768Y16516D02* X30813D01* X30971Y16674* X31128* X31240Y16786* Y17087* X31280Y17126* X30780Y7308D02* Y8361D01* Y29868D02* Y31156D01* X30825Y8227D02* Y7308D01* Y31142D02* Y29868D01* X30827Y18799D02* X30857D01* X31034Y18622* X31083* X30828Y19016D02* X30749Y19094D01* X30709* X30870Y7308D02* Y8191D01* Y29868D02* Y31113D01* X30886Y26516D02* X31019D01* X31122Y26413* Y25945* X30906Y19862D02* X30999D01* Y20016* X30992* X30925Y20082* Y20182* X30915Y8179D02* Y7308D01* Y31100D02* Y29903D01* X30925Y20182D02* X30662D01* X30637Y20157* X30315* X30925Y20276D02* Y20182D01* X30933Y5461D02* X31066Y5594D01* X31454* X31542Y5506* X31924* X32106Y5689* X30933Y6031D02* X31066Y5898D01* X32000* X32382Y6280* X30933Y10011D02* X31066Y9878D01* X31426* X31442Y9894* X32138* X32618Y10374* X30933Y10381D02* X31066Y10248D01* X31363* X31419Y10192* X31609* X31791Y10374* X30933Y11021D02* X30652D01* X30610Y11063* X30933Y12731D02* X31073Y12591D01* X31494* X31511Y12573* X32062* X32244Y12756* X30933Y15011D02* X31078Y15156D01* X31574* X31634Y15217* X30960Y7308D02* Y8182D01* Y29921D02* Y31098D01* X30974Y36467D02* Y36919D01* X30945Y36949* X30974Y37943D02* Y37510D01* X30925Y37461* X31005Y8188D02* Y7308D01* Y31107D02* Y29927D01* X31050Y7308D02* Y8188D01* Y29921D02* Y31130D01* X31083Y18878D02* X31043D01* X30906Y19016* X30828* X31083Y18878D02* Y18932D01* X31181* X31083Y6321D02* X31216Y6188D01* X31719* X31811Y6280* X31083Y8591D02* X31216Y8458D01* X31772* X31083Y9731D02* X31223Y9591D01* X31393* X31462Y9522* X31727* X31909Y9705* X31083Y13021D02* X31216Y12888D01* X31466* X31517Y12938* X31747* X31929Y12756* X31083Y13591D02* X31223Y13451D01* X31422* X31433Y13440* X32003* X32185Y13622* X31083Y15301D02* X31230Y15448D01* X31372* X31452Y15528* X32079* X32559Y16008* X31083Y16201D02* X31226Y16058D01* X31531* X31634Y16161* X31095Y8188D02* Y7308D01* Y31156D02* Y29902D01* X31122Y25217D02* X31961D01* X32179Y24998* X33249* X33296Y25045* X34940* X35583Y24402* X35742* X35869Y24275* Y24219* Y24134* X35726Y23990* Y23816* X35551Y23642* Y21750* X35557Y21744* Y20680* X35164Y20287* Y19665* X35580Y19249* X35693* X35694Y19248* X35846* Y19213* X31122Y32421D02* Y31850D01* X31140Y7308D02* Y8188D01* Y29868D02* Y31156D01* X31181Y18198D02* X31477D01* X31539Y18135* X31181Y18932D02* X31276D01* X31303Y18905* Y18799* X31496* X31185Y8188D02* Y7308D01* Y31156D02* Y29868D01* X31220Y28602D02* X31240Y28622D01* Y29173* X31220Y34331D02* X31240Y34350D01* Y35079* X31230Y7308D02* Y8179D01* Y29868D02* Y31150D01* X31248Y5461D02* X31447D01* X31501Y5407* X32120* X32402Y5689* X31248Y6031D02* X31838D01* X32087Y6280* X31248Y10011D02* X31266Y9993D01* X31962* X32343Y10374* X31248Y12731D02* X31404D01* X31429Y12756* X31634* X31248Y13311D02* X31250Y13313D01* X32103* X32188Y13228* X32598* X31248Y13871D02* X31305Y13928D01* X31664* X31909Y14173* X31248Y14441D02* X31336Y14529D01* X31950* X32185Y14764* X31275Y8181D02* Y7308D01* Y31117D02* Y29868D01* X31320Y7308D02* Y8188D01* Y29868D02* Y31101D01* X31365Y8188D02* Y7308D01* Y31097D02* Y29868D01* X31398Y12451D02* X32197D01* X32469Y12723* Y12745* X32598Y12874* X31398Y15886D02* X31457Y15945D01* X31831* X31410Y7313D02* Y8135D01* Y29868D02* Y31105D01* X31455Y8104D02* Y7314D01* Y31125D02* Y29868D01* X31474Y36465D02* Y36071D01* X31535Y36010* Y35827* X31474Y37945D02* Y37482D01* X31476Y37480* Y29173D02* Y28622D01* X31496Y28602* Y6555D02* X31450Y6601D01* X31248* X31496Y34331D02* Y34513D01* X31477Y34532* Y35079* X31476* X31500Y7314D02* Y8089D01* Y29868D02* Y31156D01* X31535Y35827D02* X31280D01* X31545Y8085D02* Y7314D01* Y31156D02* Y29868D01* X31590Y7314D02* Y8094D01* Y29879D02* Y31156D01* X31594Y25945D02* Y26673D01* X32067Y27146* X31594Y31850D02* Y32421D01* X31634Y4587D02* X31500Y4453D01* X31324* X31165Y4611* X31083* X31635Y8115D02* Y7314D01* Y31156D02* Y29909D01* X31637Y17157D02* X31392Y17402D01* X31280* X31680Y7314D02* Y8156D01* Y29924D02* Y31156D01* X31693Y17461D02* X31696D01* X31928Y17693* Y17758* Y17837* X32287Y18195* X32655* X32897Y17953* X33780* X31725Y8359D02* Y7314D01* Y31156D02* Y29926D01* X31770Y7314D02* Y8359D01* Y29917D02* Y31156D01* X31772Y8617D02* X31746Y8591D01* X31398* X31772Y8799D02* X31720Y8748D01* X31066* X30933Y8881* X31772Y17776D02* Y17937D01* X32842Y19008* Y19661* X32150Y20354* Y20905* X32146Y20909* Y21063* X31811Y5689D02* X31759Y5741D01* X31398* X31815Y8361D02* Y7314D01* Y31156D02* Y29895D01* X31831Y25945D02* Y26555D01* X32067Y26791* X31831Y31850D02* Y32382D01* X31870Y32421* X31860Y7314D02* Y8361D01* Y29868D02* Y31156D01* X31870Y11161D02* X31688Y10979D01* X31290* X31248Y11021* X31890Y18445D02* X31850D01* X31547Y18141* X31541Y18135* X31539* X31890Y18799D02* X31496D01* X31905Y8361D02* Y7314D01* Y31156D02* Y29868D01* X31909Y8937D02* X31772Y8799D01* X31909Y13622D02* X31727Y13805D01* X31464* X31398Y13738* X31066* X30933Y13871* X31909Y14764D02* X31829D01* X31694Y14628* X31502* X31398Y14731* X31929Y5118D02* X31743Y5305D01* X31463* X31453Y5314* X31216* X31083Y5181* X31929Y12087D02* X31743D01* X31535Y12294* X31066* X30933Y12161* X31949Y29173D02* Y28563D01* X32185Y28327* X31949Y34331D02* Y35079D01* X31950Y7314D02* Y8361D01* Y29868D02* Y31139D01* X31967Y15632D02* X32042D01* X32382Y15971* Y16319* X31967Y15632D02* X31412D01* X31361Y15581* Y15580* X31248* Y15581* X31969Y36929D02* X31452D01* X31177Y37205* X30138* X31974Y36465D02* Y36923D01* X31969Y36929* X31974Y37945D02* Y37486D01* X31969Y37480* X31995Y8361D02* Y7314D01* Y31112D02* Y29868D01* X32008Y6969D02* Y7035D01* X31227* X31083Y6891* X32040Y7314D02* Y8361D01* Y29868D02* Y31099D01* X32085Y8361D02* Y7314D01* Y31098D02* Y29868D01* X32130Y7314D02* Y8361D01* Y29868D02* Y31108D01* X32146Y11161D02* X31859Y10874D01* X31216* X31083Y10741* X32175Y8361D02* Y7314D01* Y31132D02* Y29868D01* X32185Y9705D02* X31903Y9423D01* X31276* X31248Y9451* X32185Y14173D02* X32003Y14356D01* X31455* X31407Y14308* X31111* X30978Y14441* X30933* X32185Y16122D02* Y16041D01* X31876Y15732* X31084* X30933Y15581* X32185Y28602D02* Y29173D01* Y34508D02* Y35079D01* X32220Y7314D02* Y8361D01* Y29868D02* Y31156D01* X32224Y12087D02* X32042Y11904D01* X31786* X31528Y12161* X31248* X32244Y6732D02* X32190Y6786D01* X31895* X31790Y6891* X31398* X32244Y13031D02* X32062Y13214D01* X31443* X31407Y13178* X31066* X30933Y13311* X32265Y8361D02* Y7314D01* Y31156D02* Y29868D01* X32303Y27736D02* Y25945D01* Y31850D02* Y32382D01* X32310Y4103D02* Y4716D01* Y7314D02* Y8361D01* Y29889D02* Y31156D01* X32355Y4761D02* Y4058D01* Y8361D02* Y7308D01* Y31131D02* Y29914D01* X32362Y5079D02* X32219Y4936D01* X31541* X31452Y5024* X31066* X30933Y4891* X32400Y4041D02* Y4778D01* Y7281D02* Y8361D01* Y13490D02* Y14581D01* Y29925D02* Y31107D01* X32445Y4778D02* Y4041D01* Y8361D02* Y7236D01* Y14581D02* Y13490D01* Y31098D02* Y29925D01* X32461Y9705D02* X32067Y9311D01* X31223* X31083Y9171* X32461Y14764D02* X32278Y14946D01* X31832* X31757Y14871* X31223* X31083Y14731* X32490Y4041D02* Y4778D01* Y7191D02* Y8361D01* Y13490D02* Y14583D01* Y29913D02* Y31099D01* X32535Y4778D02* Y4041D01* Y8361D02* Y7146D01* Y14597D02* Y13490D01* Y15844D02* Y15206D01* Y17219D02* Y16418D01* Y31113D02* Y29887D01* X32539Y27736D02* Y25945D01* Y31850D02* Y32382D01* X32559Y16008D02* X32579Y16028D01* Y16122* X32559Y19685D02* Y19452D01* X32742Y19269* Y19082* X32733Y19073* Y19072* X32660Y18999* X32029* X31983Y18953* Y18799* X31890* X32580Y4041D02* Y4778D01* Y7112D02* Y8361D01* Y13490D02* Y14626D01* Y15177D02* Y15861D01* Y16305D02* Y17219D01* Y29868D02* Y31142D01* X32625Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y14685D02* Y13473D01* Y14912D02* Y14843D01* Y15875D02* Y15167D01* Y17219D02* Y16299D01* Y31156D02* Y29868D01* X32657Y35079D02* Y35547D01* X32707Y35597* Y35620* X32717Y35630* X32670Y4041D02* Y5723D01* Y7112D02* Y8361D01* Y13428D02* Y14878D01* Y15200D02* Y15909D01* Y16280D02* Y17177D01* Y29868D02* Y31131D01* X32715Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y12734D02* Y12438D01* Y13088D02* Y13014D01* Y14862D02* Y13369D01* Y15969D02* Y15217D01* Y17132D02* Y16243D01* Y28152D02* Y26690D01* Y31107D02* Y29868D01* X32717Y35630D02* Y35650D01* X32736Y9705D02* X32205Y9173D01* X31772* X31770Y9171* X31398* X32760Y4041D02* Y5723D01* Y7112D02* Y8361D01* Y12393D02* Y12789D01* Y12959D02* Y13144D01* Y13313D02* Y14857D01* Y15222D02* Y16101D01* Y16143D02* Y17087D01* Y26645D02* Y28197D01* Y29868D02* Y31098D01* X32805Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y14864D02* Y12387D01* Y17042D02* Y15215D01* Y28242D02* Y26600D01* Y31099D02* Y29904D01* X32850Y4041D02* Y5723D01* Y7112D02* Y8361D01* Y12387D02* Y14883D01* Y15196D02* Y16997D01* Y26555D02* Y28287D01* Y29921D02* Y31113D01* X32866Y29724D02* X32740D01* X32657Y29642* Y29173* X32894Y28602D02* Y29173D01* Y29744D02* X32886D01* X32866Y29724* X32894Y34508D02* Y35079D01* X32895Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y14921D02* Y12387D01* Y16952D02* Y15157D01* Y28332D02* Y26510D01* Y31142D02* Y29927D01* X32940Y4041D02* Y5723D01* Y7112D02* Y8361D01* Y12387D02* Y16907D01* Y26465D02* Y28377D01* Y29921D02* Y31172D01* X32974Y36465D02* Y36006D01* X32972Y36004* X32974Y37945D02* Y37482D01* X32972Y37480* X32985Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y16862D02* Y12387D01* Y28422D02* Y26420D01* Y31217D02* Y29902D01* X33030Y4041D02* Y5723D01* Y7112D02* Y8361D01* Y12387D02* Y16817D01* Y26375D02* Y28467D01* Y29865D02* Y33271D01* Y33658D02* Y33861D01* X33071Y17343D02* Y17396D01* X32832* X32753Y17475* X32209* X32032Y17298* X31637* X31560Y17375* Y17376* X31539Y17397* Y18135* X33071Y17697D02* X33465D01* X33071D02* X32589D01* X32569Y17717* X32126* X33075Y5723D02* Y4041D01* Y8361D02* Y7112D01* Y16772D02* Y12387D01* Y28512D02* Y26330D01* Y33348D02* Y29795D01* Y33906D02* Y33581D01* X33120Y4041D02* Y5723D01* Y7112D02* Y8363D01* Y12387D02* Y16727D01* Y25262D02* Y25628D01* Y25953D02* Y33912D01* X33165Y5723D02* Y4041D01* Y8405D02* Y7112D01* Y16682D02* Y12387D01* Y25663D02* Y25222D01* Y33912D02* Y25912D01* X33210Y4041D02* Y5723D01* Y7112D02* Y8451D01* Y12387D02* Y16637D01* Y25222D02* Y25750D01* Y25825D02* Y33912D01* X33255Y5723D02* Y4041D01* Y9519D02* Y7112D01* Y16592D02* Y12387D01* Y33912D02* Y25222D01* X33300Y4041D02* Y5723D01* Y7112D02* Y9542D01* Y12387D02* Y16547D01* Y25222D02* Y27408D01* Y27710D02* Y33314D01* Y33615D02* Y33912D01* X33345Y5723D02* Y4041D01* Y9542D02* Y7112D01* Y16502D02* Y12387D01* Y27344D02* Y25222D01* Y33250D02* Y27774D01* Y33912D02* Y33679D01* X33390Y4041D02* Y5723D01* Y7112D02* Y9542D01* Y12387D02* Y16457D01* Y25222D02* Y27303D01* Y27815D02* Y31989D01* Y32105D02* Y33209D01* Y33720D02* Y33912D01* X33435Y5723D02* Y4041D01* Y9542D02* Y7112D01* Y16412D02* Y12387D01* Y27275D02* Y25222D01* Y31917D02* Y27843D01* Y33180D02* Y32177D01* Y33912D02* Y33749D01* X33465Y37480D02* X33474Y37490D01* Y37945* Y36465D02* Y36014D01* X33484Y36004* X33480Y4041D02* Y5723D01* Y7112D02* Y9542D01* Y12387D02* Y16367D01* Y25222D02* Y27256D01* Y27862D02* Y31885D01* Y32210D02* Y33161D01* Y33768D02* Y33912D01* X33525Y4904D02* Y4041D01* Y9542D02* Y7112D01* Y16125D02* Y12387D01* Y27244D02* Y25222D01* Y31869D02* Y27874D01* Y33150D02* Y32226D01* Y33912D02* Y33780D01* X33570Y4041D02* Y4896D01* Y7112D02* Y9542D01* Y12387D02* Y16080D01* Y25222D02* Y27239D01* Y27879D02* Y31865D01* Y32230D02* Y33145D01* Y33785D02* Y33912D01* X33615Y4896D02* Y4041D01* Y9539D02* Y7115D01* Y16035D02* Y12387D01* Y27240D02* Y25222D01* Y31872D02* Y27878D01* Y33146D02* Y32222D01* Y33912D02* Y33783D01* X33660Y4041D02* Y4896D01* Y7160D02* Y9494D01* Y12387D02* Y15990D01* Y25222D02* Y27248D01* Y27870D02* Y31893D01* Y32202D02* Y33154D01* Y33775D02* Y33912D01* X33676Y7176D02* X33612Y7112D01* X32569* X32380Y7301* G03X32362Y7308I18J18* G01X32344* G03X32307Y7314I37J117* G01X31425* G03X31388Y7308J123* G01X30601* X30517Y7393* G03X30512Y7397I70J70* G01X30490Y7419* G03X30472Y7427I18J17* G01X30150* G03X30000Y7505I150J104* X29850Y7427J182* G01X29716* X29710Y7433* G03Y7441I182J8* X29528Y7623I182* X29345Y7441J182* X29346Y7427I183* G01X27615* G03X27480Y7486I135J124* X27427Y7478J183* Y7480I183J2* X27244Y7663I183* X27062Y7480J183* X27066Y7442I182* G01X27061Y7438* G03X26978Y7464I83J117* X26881Y7427J143* G01X26810* G03X26836Y7520I156J93* X26654Y7702I182* X26471Y7530J182* G01X26341Y7400* G03X26305Y7312I87J88* G01Y7230* X25955* X25844Y7341* G03X25827Y7348I17J18* G01X25813* G03X25852Y7461I144J113* X25669Y7643I183* X25487Y7461J182* X25489Y7430I182* G01X25424* G03X25354Y7401J99* G01X25307Y7354* G03X25281Y7409I139J33* X25360Y7559I104J150* X25301Y7693I183* G01Y7855* G03X25293Y7899I124* G01Y7959* G03X25312Y8031I124J72* X25169Y8174I143* X25026Y8031J143* X25046Y7959I143* G01Y7863* G03X25054Y7819I123* G01Y7693* G03X24995Y7559I123J134* X25062Y7417I182* X25028Y7348I106J96* G01X24579* G03X24562Y7394I141J27* G01Y7435* G03X24626Y7535I113J144* X24803Y7396I177J44* X24986Y7579J183* X24808Y7761I183* G01X24762Y7807* G03X24659Y7910I139J36* G01X24575Y7994* G03X24580Y8031I138J37* X24437Y8174I143* X24294Y8031J143* X24314Y7959I143* G01Y7957* G03X24334Y7889I123* X24253Y7914I81J118* X24110Y7771J143* X24217Y7633I143* G01X24266Y7583* G03Y7579I183J4* X24315Y7455I183* G01Y7394* G03X24298Y7348I123J73* G01X23589* G03X23485Y7460I141J27* X23529Y7579I139J119* X23528Y7601I183* G01X23559Y7633* G03X23666Y7771I36J138* X23523Y7914I143* X23385Y7807J143* G01X23338Y7761* X23292Y7807* G03X23153Y7914I139J36* X23010Y7771J143* X23013Y7741I143* X22849Y7559I18J182* X23031Y7377I182* X23070Y7381J182* G01X23102Y7348* X22599* G03X22458Y7464I141J27* X22391Y7448J143* G01X22150Y7689* G03X22176Y7771I117J82* X22157Y7844I143* G01Y7985* G03X22190Y8091I149J106* X22008Y8273I182* X21825Y8091J182* X21829Y8056I183* X21811I18J182* X21784Y8054J182* G01X21718Y8121* G03Y8130I183J9* X21535Y8312I183* X21526J182* G01X21521Y8317* Y8739* G03X21538Y8738I17J142* X21681Y8881J143* X21538Y9024I143* X21521Y9023J143* G01Y9237* G03X21560Y9350I143J113* X21521Y9464I182* G01Y9548* G03X21531Y9601I133J53* X21526Y9640I143* G01X21639Y9753* G03X21676Y9791I81J118* G01X21711Y9825* G03X21718Y9843I18J18* G01Y10076* G03X21785Y9989I172J62* G01Y9944* G03X21765Y9871I123J73* X21908Y9728I143* X22051Y9871J143* X22032Y9944I143* G01Y10023* G03X22072Y10138I142J115* X21941Y10313I182* G01X21887Y10367* G03X21748Y10474I139J36* X21718Y10471J143* G01Y10628* X21810* G03X21880Y10657J99* G01X21956Y10733* G03X21969I13J153* X22121Y10886J153* X21969Y11039I152* X21829Y10948J153* X21730Y11013I121J77* X21747Y11083I136J70* X21743Y11118I153* G01X22100Y11474* G03X22241Y11353I141J22* X22384Y11496J143* X22241Y11639I143* X22190Y11630J143* G01Y11677* G03X22241Y11668I51J134* X22384Y11811J143* X22241Y11954I143* X22190Y11945J143* G01Y12627* X22225Y12662* G03X22338Y12775I60J173* G01X22373Y12810* X22768* G03X22799Y12795I67J103* G01X22830Y12765* G03X22829Y12756I123J9* G01Y12650* X22669Y12489* G03X22632Y12402I87J87* G01Y11732* G03X22652Y11665I124* G01Y11614* G03X22659Y11596I25* G01X22738Y11518* G03X22756Y11510I18J17* G01X22807* G03X22874Y11491I67J104* G01X23001* X23006Y11486* Y11299* G03X23014Y11282I25* G01X23093Y11203* G03X23110Y11195I17J17* G01X23161* G03X23228Y11176I67J104* G01X23395* X23400Y11171* Y11158* G03X23342Y11044I124J134* G01X23303Y11005* G03X23196Y10866I36J139* X23339Y10723I143* X23478Y10830J143* G01X23491Y10844* G03X23524Y10841I33J180* X23694Y10959J183* G01X23962* G03X23928Y10866I109J93* X24071Y10723I143* X24210Y10830J143* G01X24223Y10843* G03X24252Y10841I29J181* X24423Y10959J183* G01X24438* X24483Y10915* Y10748* G03X24503Y10681I123* G01Y10669* G03X24510Y10652I25* G01X24589Y10573* G03X24606Y10566I17J18* G01X24618* G03X24685Y10546I67J103* G01X25630* G03X25697Y10566J123* G01X25748* G03X25766Y10573J25* G01X25844Y10652* G03X25852Y10669I17J17* G01Y10732* G03X25901Y10723I49J134* X26040Y10830J143* G01X26053Y10844* G03X26083Y10841I30J180* X26264Y11004J183* G01X26303Y11043* G03X26410Y11181I36J138* X26267Y11324I143* X26129Y11217J143* G01X26115Y11203* G03X26083Y11206I32J179* X26053Y11204J182* G01X26040Y11217* G03X25901Y11324I139J36* X25852Y11316J143* G01Y11339* G03X25844Y11356I25* G01X25766Y11435* G03X25748Y11442I18J18* G01X25522* X25478Y11487* Y11614* G03X25442Y11701I124* G01X25311Y11832* G03X25205Y11950I142J21* G01X25161Y11994* G03X24992Y12151I181J25* G01X24868Y12276* Y12313* G03X24939Y12396I65J128* G01X25033* G03X25169Y12298I136J45* X25305Y12396J143* G01X25399* G03X25535Y12298I136J45* X25671Y12396J143* G01X25765* G03X25901Y12298I136J45* X26037Y12396J143* G01X26131* G03X26267Y12298I136J45* X26392Y12371J143* G01X26448Y12314* G03X26535Y12278I87J88* G01X26622* X26629Y12271* G03X26811Y12101I182J12* X26993Y12278J182* G01X27441* G03X27508Y12298J124* G01X27864* X27928Y12234* Y11617* G03X27925Y11589I140J28* X27928Y11561I143* G01Y11518* G03X27894Y11521I34J179* X27711Y11339J182* X27737Y11245I183* G01X27736* G03X27554Y11063J182* X27736Y10881I182* X27755Y10882J182* Y10871I143J11* X27898Y10728I143* X27928Y10731J143* G01Y10629* G03X27925Y10601I140J28* X27928Y10573I143* G01Y10531* G03X27835Y10556I93J157* X27652Y10374J182* X27765Y10205I183* G01Y10193* G03X27755Y10141I133J52* X27898Y9998I143* X27928Y10001J143* G01Y9899* G03X27925Y9871I140J28* X27928Y9843I143* G01Y9741* G03X27898Y9744I30J140* X27755Y9601J143* X27756Y9586I143* X27750Y9552I93J34* G01Y9264* G03X27672Y9114I104J150* X27854Y8932I182* X27942Y8954J182* X27944Y8953I11J22* X27925Y8881I124J72* X28068Y8738I143* X28207Y8845J143* G01X28313Y8951* X28494* X28558Y8887* Y8745* G03X28470Y8647I50J134* G01X28410Y8588* G03X28406I4J182* X28223Y8406J182* X28406Y8223I183* X28416J183* X28400Y8150I167J73* X28583Y7967I183* X28736Y8050J183* G01X28742* G03X28813Y8080J100* G01X29017Y8284* G03X29154Y8223I137J122* X29185Y8226J183* X29168Y8150I165J76* X29350Y7967I182* X29533Y8150J183* X29517Y8223I183* X29528I11J183* X29665Y8286J183* X29803Y8223I138J120* X29877Y8239J183* Y8228I182J11* X30059Y8046I182* X30221Y8144J182* X30354Y8085I133J124* X30494Y8150J183* G01Y8095* G03X30472Y8096I22J182* X30290Y7913J183* X30472Y7731I182* X30655Y7913J182* X30651Y7952I183* G01X30663Y7964* G03X30692Y8034I70J70* G01Y8222* G03X30726Y8311I99J89* X30717Y8361I133* G01X30804* G03X30795Y8311I124J50* X30928Y8178I133* X30978Y8188J133* G01X31198* G03X31248Y8178I50J123* X31298Y8188J133* G01X31371* G03X31535Y8085I164J80* X31718Y8268J183* X31694Y8359I183* G01X31772* X31781* G03X31801Y8361J99* G01X33110* G03X33128Y8368J25* G01X33207Y8447* G03X33214Y8465I18J18* G01Y9478* X33278Y9542* X33612* X33676Y9478* Y7176* X33705Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y27263D02* Y25222D01* Y31933D02* Y27855D01* Y33169D02* Y32162D01* Y33912D02* Y33761D01* X33730Y31974D02* G03X33898Y31865I168J73D01* X34080Y32047J182* X33898Y32230I182* X33730Y32120J183* X33563Y32230I167J73* X33381Y32047J183* X33563Y31865I182* X33730Y31974J182* G01X33750Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y27286D01* Y27832D02* Y31940D01* Y32154D02* Y33191D01* Y33738D02* Y33912D01* X33780Y16181D02* X33671Y16289D01* Y16370* X32715Y17326* X32296* X32126Y17157* X31637* X33795Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y27319D02* Y25222D01* Y31896D02* Y27799D01* Y33225D02* Y32198D01* Y33912D02* Y33704D01* X33840Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y27368D01* Y27750D02* Y31874D01* Y32220D02* Y33274D01* Y33655D02* Y33912D01* X33885Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y27453D02* Y25222D01* Y31865D02* Y27665D01* Y33359D02* Y32229D01* Y33912D02* Y33570D01* X33903Y27559D02* G03X33583Y27879I320D01* X33262Y27559J320* X33583Y27239I321* X33903Y27559J320* G01Y33465D02* G03X33583Y33785I320D01* X33262Y33465J320* X33583Y33144I321* X33903Y33465J321* G01X33930Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y31868D01* Y32227D02* Y33912D01* X33937Y2087D02* Y2480D01* Y3012D02* Y3425D01* X33974Y36465D02* Y36006D01* X33976Y36004* X33974Y37945D02* Y37482D01* X33976Y37480* X33975Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y26969D02* Y25222D01* Y31882D02* Y27205D01* Y33912D02* Y32213D01* X33977Y6523D02* X33824D01* X33715Y6414* Y5782* X33784Y5713* X33999* X34069Y5784* Y5787* X34252* X33996Y17697D02* X33465D01* X34020Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y26398D01* Y26515D02* Y26930D01* Y27243D02* Y31912D01* Y32183D02* Y33912D01* X34065Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y26327D02* Y25222D01* Y26911D02* Y26587D01* Y31975D02* Y27262D01* Y33912D02* Y32120D01* X34110Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y26294D01* Y26619D02* Y26904D01* Y27269D02* Y27670D01* Y31504D02* Y33912D01* X34155Y4896D02* Y4041D01* Y15959D02* Y12387D01* Y26278D02* Y25222D01* Y26909D02* Y26635D01* Y27621D02* Y27264D01* Y33912D02* Y31553D01* X34200Y4041D02* Y4896D01* Y12387D02* Y15959D01* Y25222D02* Y26274D01* Y26639D02* Y26926D01* Y27248D02* Y27577D01* Y31598D02* Y33912D01* X34245Y4896D02* Y4041D01* Y15959D02* Y12430D01* Y26282D02* Y25222D01* Y26959D02* Y26632D01* Y27573D02* Y27214D01* Y33912D02* Y31643D01* X34252Y2480D02* Y2087D01* Y3425D02* Y3031D01* X34232Y3012* X34252Y16949D02* X34508D01* X34252Y17697D02* Y17504D01* X34189Y17441* X33898* X34290Y4041D02* Y4896D01* Y14837D02* Y15959D01* Y25222D02* Y26302D01* Y26611D02* Y27038D01* Y27135D02* Y27573D01* Y31688D02* Y33912D01* X34297Y27087D02* G03X34114Y27269I183D01* X33932Y27087J182* X34114Y26904I182* X34297Y27087J183* G01X34335Y4896D02* Y4041D01* Y15959D02* Y14882D01* Y26342D02* Y25222D01* Y27573D02* Y26571D01* Y33912D02* Y31733D01* X34375Y26457D02* G03X34193Y26639I182D01* X34010Y26457J182* X34193Y26274I183* X34375Y26457J183* G01X34380Y4041D02* Y4896D01* Y14907D02* Y15959D01* Y25222D02* Y27573D01* Y31778D02* Y33912D01* X34425Y4896D02* Y4041D01* Y15111D02* Y14907D01* Y27573D02* Y25222D01* Y33912D02* Y31823D01* X34469Y36004D02* X34474Y36010D01* Y36465* X34470Y4041D02* Y4896D01* Y13096D02* Y10998D01* Y14907D02* Y15093D01* Y25222D02* Y27573D01* Y31868D02* Y33912D01* X34474Y36465D02* X34861D01* X34889Y36437* X35236* X34508Y16949D02* X34996D01* X34515Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y15093D02* Y14907D01* Y27573D02* Y25222D01* Y33912D02* Y31913D01* X34560Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y14907D02* Y15093D01* Y25222D02* Y27573D01* Y31958D02* Y33912D01* X34605Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y15093D02* Y14907D01* Y27573D02* Y25222D01* Y33912D02* Y32003D01* X34646Y18110D02* X34157D01* X33996Y17949* Y17697* X34650Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y14907D02* Y15093D01* Y25222D02* Y27573D01* Y32048D02* Y33912D01* X34695Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y15093D02* Y14907D01* Y27573D02* Y25222D01* Y33912D02* Y32093D01* X34740Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y14907D02* Y15093D01* Y25222D02* Y27573D01* Y32138D02* Y33912D01* X34785Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y15093D02* Y14907D01* Y27573D02* Y25222D01* Y33912D02* Y32183D01* X34830Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13591D02* Y14558D01* Y14907D02* Y15093D01* Y25222D02* Y27573D01* Y32228D02* Y33903D01* X34843Y34055D02* Y34469D01* X33582Y35729* X32938* X32731Y35936* X31852* X31743Y35827* X31535* X34875Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14603D02* Y13546D01* Y15959D02* Y14907D01* Y27570D02* Y25222D01* Y33906D02* Y32273D01* X34882Y1673D02* Y2087D01* Y3839D02* Y3425D01* X34920Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14648D01* Y14907D02* Y15959D01* Y25222D02* Y27525D01* Y32318D02* Y33912D01* X34961Y19252D02* Y19052D01* X34857Y18948* X34473* X34347Y19074* Y21051* X34766Y21470* X34879* X34986Y21578* Y22481* X35282Y22776* Y23540* X35153Y23669* Y24257* X35114Y24296* Y24449* X35079* X34965Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14693D02* Y13529D01* Y15959D02* Y14907D01* Y26338D02* Y25188D01* Y33912D02* Y32363D01* X34980Y16132D02* X34989D01* Y16286* X35055Y16352* Y16698* Y16708* Y16858* X34996Y16917* Y16949* X35000Y24193D02* Y23989D01* X34614Y23603* Y21626* X34184Y21196* Y19355* X34193Y19346* Y19193* X35010Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14699D01* Y14907D02* Y15959D01* Y25143D02* Y26293D01* Y32408D02* Y33912D01* X35039Y17146D02* Y16992D01* X34996Y16949* X35055Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14699D02* Y13529D01* Y15959D02* Y14907D01* Y19021D02* Y18484D01* Y26248D02* Y25098D01* Y33912D02* Y32453D01* X35100Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14699D01* Y14907D02* Y15959D01* Y18450D02* Y19120D01* Y25053D02* Y26235D01* Y32498D02* Y33912D01* X35145Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14699D02* Y13529D01* Y15959D02* Y14907D01* Y19148D02* Y18450D01* Y26235D02* Y25008D01* Y33912D02* Y32543D01* X35190Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14699D01* Y14950D02* Y15916D01* Y18450D02* Y19148D01* Y24963D02* Y26235D01* Y32588D02* Y33912D01* X35197Y1673D02* Y2087D01* Y3425D02* Y3858D01* X35211Y14971D02* X35147Y14907D01* X34370* G03X34352Y14900J25* G01X34274Y14821* G03X34266Y14803I17J18* G01Y12451* X34202Y12387* X32766* X32702Y12451* Y12724* G03X32781Y12874I104J150* X32702Y13024I183* G01Y13078* G03X32781Y13228I104J150* X32702Y13378I183* G01Y13386* G03X32695Y13404I25* G01X32616Y13482* G03X32598Y13490I18J17* G01X32387* Y14581* X32480* G03X32491Y14584J25* X32643Y14764I30J180* X32580Y14902I182* X32608Y14932I119J137* X32756Y14857I148J107* X32938Y15039J182* X32756Y15222I182* X32608Y15147J183* X32505Y15216I147J108* G01Y15814* X32551Y15860* G03X32559I8J148* X32664Y15903J148* G01X32684Y15923* G03X32727Y16015I105J105* X32761Y16122I148J107* X32579Y16305I182* X32564Y16304J183* Y16319I182J15* X32505Y16453I182* G01Y17194* X32530Y17219* X32627* X33518Y16328* Y16142* G03X33526Y16124I25* G01X33683Y15967* G03X33701Y15959I18J17* G01X34424* Y15118* G03X34449Y15093I25* G01X34843* G03X34868Y15118J25* G01Y15959* X35147* X35211Y15895* Y14971* X35235Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14699D02* Y13529D01* Y19148D02* Y18450D01* Y26235D02* Y24918D01* Y33912D02* Y32633D01* X35236Y35650D02* X35895D01* X36024Y35521* Y35453* X35280Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14700D01* Y18450D02* Y19148D01* Y24873D02* Y26235D01* Y26960D02* Y27489D01* Y32678D02* Y33912D01* X35315Y24134D02* Y23788D01* X35394Y23709* Y22571* X35128Y22306* Y21490* X34898Y21260* X34831Y21193* Y20160* X34871Y20120* Y19626* X34803Y19558* Y19114* X35325Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14738D02* Y13529D01* Y19148D02* Y18450D01* Y26235D02* Y24828D01* Y27534D02* Y26915D01* Y33912D02* Y32723D01* X35370Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y14783D01* Y18450D02* Y19148D01* Y24783D02* Y26235D01* Y26915D02* Y27534D01* Y32768D02* Y33912D01* X35415Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y14829D02* Y13529D01* Y19148D02* Y18450D01* Y26235D02* Y24738D01* Y27534D02* Y26915D01* Y33912D02* Y32813D01* X35460Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16251D01* Y18471D02* Y19148D01* Y24693D02* Y26235D01* Y26915D02* Y27534D01* Y32858D02* Y33912D01* X35505Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16296D02* Y13529D01* Y17989D02* Y16814D01* Y19148D02* Y18480D01* Y26235D02* Y24648D01* Y27534D02* Y26915D01* Y33912D02* Y32903D01* X35512Y18327D02* X35259D01* X35233Y18301* X34991* X34899Y18394* X33791* X33744Y18346* X33287* X35550Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16769D02* Y18034D01* Y18475D02* Y19148D01* Y24603D02* Y26235D01* Y26915D02* Y27534D01* Y32948D02* Y33912D01* X35551Y23858D02* Y24011D01* X35482Y24081* Y24262* X35142Y24603* X35015* X34930Y24518* X34731* X34514Y24301* Y22140* X34008Y21634* Y18969* X33691Y18651* X33583Y18543* X35591Y32736D02* X35707D01* X35928Y32516* X36236* X36360Y32392* X36654* X35595Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y18046D02* Y16757D01* Y19148D02* Y18455D01* Y26235D02* Y24558D01* Y27534D02* Y26915D01* Y33912D02* Y32993D01* X35610Y3799D02* X35763D01* X35827Y3736* Y3425* X35640Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y18039D01* Y18450D02* Y19148D01* Y24513D02* Y26235D01* Y26915D02* Y27534D01* Y33038D02* Y33912D01* X35650Y31693D02* Y31732D01* X35335Y32047* Y32087* X35669Y18189D02* X35653Y18173D01* X34978* X34857Y18294* X33874* X33744Y18163* X33211* X33104Y18271* Y18528* X33116Y18539* Y18905* X33125Y18914* Y20513* X32004Y21634* X31358* X35685Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y18037D02* Y16757D01* Y19148D02* Y18450D01* Y23635D02* Y22421D01* Y26235D02* Y24501D01* Y27534D02* Y26915D01* Y33912D02* Y33083D01* X35730Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y18049D01* Y18439D02* Y19113D01* Y22387D02* Y23680D01* Y24501D02* Y26235D01* Y26915D02* Y27534D01* Y33128D02* Y33912D01* X35768Y36201D02* Y36394D01* X35837Y36463* X36083* X36201Y36581* Y36811* X35775Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y18078D02* Y16757D01* Y19077D02* Y18394D01* Y23725D02* Y22387D01* Y26235D02* Y24496D01* Y27534D02* Y26915D01* Y33912D02* Y33135D01* X35820Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y18163D01* Y18215D02* Y19062D01* Y22387D02* Y23786D01* Y24465D02* Y26235D01* Y26915D02* Y27534D01* Y33135D02* Y33912D01* X35827Y2087D02* Y2542D01* X36001Y2717* X36004* X35846Y36811D02* Y36772D01* X35714Y36640* X35511Y36437* X35236* X35846Y37402D02* Y36811D01* X35865Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19061D02* Y16757D01* Y23990D02* Y22387D01* Y26235D02* Y24420D01* Y27534D02* Y26915D01* Y33912D02* Y33135D01* X35910Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19073D01* Y22387D02* Y24035D01* Y24375D02* Y26235D01* Y26914D02* Y27534D01* Y33135D02* Y33912D01* X35955Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19105D02* Y16757D01* Y24084D02* Y22387D01* Y26235D02* Y24325D01* Y27534D02* Y26876D01* Y33912D02* Y33135D01* X35984Y3799D02* X36078D01* X36142Y3736* Y3425* X36000Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y22387D02* Y26232D01* Y26831D02* Y27534D01* Y33135D02* Y33912D01* X36004Y32087D02* Y32047D01* X36171Y31880* X36654* X36024Y33701D02* X37451D01* X38408Y34658* X41045* X41605Y34098* Y33231* X41444Y33071* X40531* X36045Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20904D02* Y19395D01* Y26216D02* Y22387D01* Y27534D02* Y26392D01* Y33912D02* Y33135D01* X36090Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20900D01* Y22387D02* Y26215D01* Y26364D02* Y27534D01* Y33135D02* Y33912D01* X36135Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20908D02* Y19395D01* Y26215D02* Y22387D01* Y27534D02* Y26364D01* Y33912D02* Y33135D01* X36142Y2087D02* Y2398D01* X36040Y2500* X36004* X36180Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y26215D01* Y26364D02* Y27534D01* Y33135D02* Y33912D01* X36201Y37402D02* Y36811D01* X36225Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y26215D02* Y22387D01* Y27534D02* Y26364D01* Y33912D02* Y33135D01* X36270Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y26215D01* Y26364D02* Y27534D01* Y33135D02* Y33912D01* X36315Y4896D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y26215D02* Y22387D01* Y27534D02* Y26364D01* Y33912D02* Y33192D01* X36360Y4041D02* Y4896D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y26203D01* Y26364D02* Y27534D01* Y33291D02* Y33880D01* X36405Y4859D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25725D02* Y22387D01* Y27534D02* Y26364D01* X36450Y4041D02* Y4814D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25680D01* Y26341D02* Y27534D01* X36495Y4769D02* Y4041D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y26296D01* X36540Y4041D02* Y4724D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25936D02* Y27534D01* X36585Y4679D02* Y4039D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X36630Y3996D02* Y4634D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X36654Y30089D02* Y29935D01* X36651* X36437Y29721* Y29528* X36654Y30600D02* X37156D01* X37165Y30591* X36654Y31624D02* X36004D01* Y31693* X36654Y32136D02* X36244D01* X36181Y32199* Y32303* X36654Y32136D02* X37343D01* X37449Y32030* Y30138* X37167Y29857* Y29116* X37008Y28957* X36654Y32392D02* X37326D01* X37634Y32083* Y31388* X37933Y31090* Y30016* X38455Y29494* Y29169* X38170Y28883* X37497* X36960Y28346* X36791* X36654Y32648D02* X37075D01* X38957Y34529* X40960* X41339Y34150* Y33425* X36675Y4589D02* Y3950D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X36720Y3591D02* Y4544D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X36765Y4499D02* Y3546D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X36791Y28937D02* X36988D01* X37008Y28957* X36810Y3501D02* Y4454D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X36855Y4409D02* Y3456D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X36900Y3411D02* Y4364D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X36945Y4319D02* Y3366D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X36949Y29252D02* X36827D01* X36791Y29287* Y29528* X36990Y3321D02* Y4274D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37035Y4229D02* Y3276D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37080Y3231D02* Y4184D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37125Y3824D02* Y3186D01* Y10970D02* Y13125D01* Y16314D02* Y13529D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37170Y3141D02* Y3779D01* Y13125D02* Y10970D01* Y13529D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37215Y3734D02* Y3096D01* Y10970D02* Y13125D01* Y16314D02* Y13550D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37260Y3051D02* Y3689D01* Y13125D02* Y10970D01* Y14576D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37305Y3644D02* Y3006D01* Y10970D02* Y13125D01* Y16314D02* Y14624D01* Y19148D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37343Y35630D02* X36907Y35194D01* X36090* X36024Y35260* Y35453* X37350Y2961D02* Y3599D01* Y6803D02* Y5008D01* Y13125D02* Y10970D01* Y14669D02* Y16314D01* Y16757D02* Y19148D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37395Y3554D02* Y2916D01* Y4986D02* Y6062D01* Y6222D02* Y6848D01* Y10970D02* Y13125D01* Y16314D02* Y14714D01* Y19144D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37440Y2871D02* Y3509D01* Y6003D02* Y4986D01* Y6865D02* Y6280D01* Y13125D02* Y10970D01* Y14759D02* Y16314D01* Y16757D02* Y19099D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37485Y3464D02* Y2826D01* Y4986D02* Y5975D01* Y6309D02* Y6865D01* Y10970D02* Y13110D01* Y16314D02* Y14804D01* Y19054D02* Y16757D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37530Y2781D02* Y3419D01* Y5962D02* Y4986D01* Y6865D02* Y6322D01* Y13065D02* Y10970D01* Y14849D02* Y16314D01* Y16757D02* Y17198D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37573Y16757D02* X35562D01* X35497Y16821* Y17982* X35562Y18046* X35615* G03X35669Y18036I54J143* X35822Y18189J153* X35812Y18243I153* G01Y18346* G03X35805Y18364I25* G01X35726Y18443* G03X35709Y18450I17J18* G01X35602* G03X35512Y18480I90J123* X35421Y18450J153* G01X35089* X35025Y18514* Y18976* X35031Y18982* G03X35060Y19052I70J70* G01Y19080* X35128Y19148* X35708* G03X35846Y19060I138J65* X35985Y19148J153* G01X37391* X37495Y19045* Y17244* G03X37502Y17226I25* G01X37573Y17155* Y16757* X37575Y3374D02* Y2736D01* Y4986D02* Y5960D01* Y6324D02* Y6865D01* Y10970D02* Y12272D01* Y16314D02* Y14894D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37620Y2691D02* Y3329D01* Y5970D02* Y4986D01* Y6865D02* Y6314D01* Y12227D02* Y10970D01* Y14939D02* Y16314D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37665Y3284D02* Y2663D01* Y4986D02* Y5993D01* Y6290D02* Y6865D01* Y10970D02* Y12219D01* Y16488D02* Y14984D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37710Y2663D02* Y3239D01* Y6039D02* Y4986D01* Y6865D02* Y6244D01* Y12219D02* Y10970D01* Y15029D02* Y16680D01* Y17218D02* Y17990D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37742Y6142D02* G03X37559Y6324I183D01* X37377Y6142J182* X37559Y5959I182* X37742Y6142J183* G01X37755Y3194D02* Y2663D01* Y4986D02* Y6865D01* Y10970D02* Y12219D01* Y12438D02* Y13074D01* Y18035D02* Y15074D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37800Y2663D02* Y3149D01* Y6865D02* Y4986D01* Y12219D02* Y10970D01* Y13119D02* Y12393D01* Y15119D02* Y18046D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37845Y3125D02* Y2663D01* Y4986D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13164D01* Y18046D02* Y15164D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37890Y2663D02* Y3125D01* Y6865D02* Y4986D01* Y12219D02* Y10970D01* Y13209D02* Y12387D01* Y15209D02* Y18046D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X37935Y3125D02* Y2663D01* Y4986D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13254D01* Y18046D02* Y15254D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X37980Y2663D02* Y3125D01* Y6865D02* Y4986D01* Y12219D02* Y10970D01* Y13299D02* Y12387D01* Y15299D02* Y18046D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X38025Y3125D02* Y2663D01* Y4989D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13344D01* Y18046D02* Y15344D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X38070Y2663D02* Y3125D01* Y6865D02* Y6294D01* Y12219D02* Y10970D01* Y13389D02* Y12387D01* Y15389D02* Y18046D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X38115Y3125D02* Y2663D01* Y6339D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13434D01* Y18046D02* Y15434D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X38160Y2663D02* Y3125D01* Y6865D02* Y6384D01* Y12219D02* Y10970D01* Y13479D02* Y12387D01* Y15479D02* Y18046D01* Y19395D02* Y20920D01* Y22387D02* Y25644D01* Y25891D02* Y27534D01* X38205Y3125D02* Y2663D01* Y6429D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13524D01* Y18046D02* Y16544D01* Y20920D02* Y19395D01* Y25644D02* Y22387D01* Y27534D02* Y25891D01* X38250Y2663D02* Y3125D01* Y6865D02* Y6474D01* Y12219D02* Y10970D01* Y13569D02* Y12387D01* Y16592D02* Y18046D01* Y19395D02* Y20920D01* Y22419D02* Y25612D01* Y25891D02* Y27534D01* X38282Y22451D02* X38218Y22387D01* X35719* X35655Y22451* Y23605* X35796Y23746* G03X35825Y23816I70J70* G01Y23949* X35939Y24064* G03X35969Y24134I70J70* G01Y24219* Y24275* G03X35939Y24345I100* G01X35812Y24472* G03X35742Y24501I70J70* G01X35651* G03X35648Y24506I21J13* G01X34939Y25215* G03X34921Y25222I18J18* G01X33160* X33096Y25286* Y25617* G03X33214Y25787I65J170* X33130Y25941I183* X33119Y25954I99J74* G01X33096Y25977* Y26299* G03X33089Y26317I25* G01X32702Y26703* Y28139* X33089Y28526* G03X33096Y28543I18J17* G01Y29764* G03X33089Y29781I25* G01X33066Y29804* G03X32894Y29927I172J60* X32759Y29868J183* G01X32556* G03X32421Y29927I135J124* X32287Y29868J183* G01X31847* G03X31713Y29927I134J124* X31578Y29868J183* G01X31138* G03X31004Y29927I134J124* X30870Y29868J183* G01X30430* G03X30295Y29927I135J124* X30161Y29868J183* G01X29362* X29356Y29874* G03Y29882I183J8* X29173Y30064I183* X28991Y29882J182* Y29868I182* G01X28540* G03X28406Y29927I134J124* X28271Y29868J183* G01X27327* G03X27165Y29966I162J85* X27003Y29868J183* G01X26402* G03X26403Y29882I182J14* X26220Y30064I183* X26038Y29882J182* X26039Y29868I182* G01X25071* G03X24921Y29946I150J104* X24771Y29868J182* G01X23816* G03X23681Y29927I135J124* X23547Y29868J183* G01X23386* G03X23368Y29860J25* G01X23289Y29781* G03X23282Y29764I18J17* G01Y28805* X23125* Y29567* G03X23051Y29641I74* G01X22894* G03X22854Y29630J74* X22815Y29641I39J63* G01X22657* G03X22583Y29567J74* G01Y28805* X22417* Y29567* G03X22343Y29641I74* G01X22185* G03X22146Y29630J74* X22106Y29641I40J63* G01X21949* G03X21909Y29630J74* X21870Y29641I39J63* G01X21713* G03X21638Y29567J74* G01Y28805* X21472* Y29567* G03X21398Y29641I74* G01X21240* G03X21201Y29630J74* X21161Y29641I40J63* G01X21004* G03X20965Y29630J74* X20925Y29641I40J63* G01X20768* G03X20694Y29567J74* G01Y28805* X20527* Y29567* G03X20453Y29641I74* G01X20295* G03X20256Y29630J74* X20217Y29641I39J63* G01X20059* G03X20020Y29630J74* X19980Y29641I40J63* G01X19823* G03X19749Y29567J74* G01Y28805* X19582* Y29567* G03X19508Y29641I74* G01X19350* G03X19311Y29630J74* X19272Y29641I39J63* G01X19114* G03X19040Y29567J74* G01Y28805* X18883* Y30512* G03X18876Y30529I25* G01X18765Y30640* Y32219* X18922* Y31457* G03X18996Y31382I74* G01X19154* G03X19193Y31394J75* X19232Y31382I39J63* G01X19390* G03X19464Y31457J75* G01Y32219* X19631* Y31457* G03X19705Y31382I74* G01X19862* G03X19902Y31394J75* X19941Y31382I39J63* G01X20098* G03X20138Y31394J75* X20177Y31382I39J63* G01X20335* G03X20409Y31457J75* G01Y32219* X20575* Y31457* G03X20650Y31382I75* G01X20807* G03X20846Y31394J75* X20886Y31382I40J63* G01X21043* G03X21083Y31394J75* X21122Y31382I39J63* G01X21280* G03X21354Y31457J75* G01Y32219* X21520* Y31457* G03X21594Y31382I74* G01X21752* G03X21791Y31394J75* X21831Y31382I40J63* G01X21988* G03X22028Y31394J75* X22067Y31382I39J63* G01X22224* G03X22299Y31457J75* G01Y32219* X22465* Y31457* G03X22539Y31382I74* G01X22697* G03X22736Y31394J75* X22776Y31382I40J63* G01X22933* G03X23007Y31457J75* G01Y32219* X23164* Y31260* G03X23171Y31242I25* G01X23250Y31163* G03X23268Y31156I18J18* G01X23401* G03X23563Y31058I162J84* X23725Y31156J182* G01X24137* G03X24272Y31097I135J124* X24406Y31156J183* G01X25162* G03X25276Y31117I114J143* X25389Y31156J182* G01X26107* G03X26220Y31117I113J143* X26334Y31156J182* G01X27404* G03X27396Y31102I175J54* X27579Y30920I183* X27761Y31102J182* X27753Y31156I182* G01X30043* G03X30177Y31097I134J124* X30312Y31156J183* G01X30810* G03X30945Y31097I135J124* X31079Y31156J183* G01X31224* G03X31358Y31097I134J124* X31493Y31156J183* G01X31933* G03X32067Y31097I134J124* X32201Y31156J183* G01X32326* G03X32461Y31097I135J124* X32595Y31156J183* G01X32641* G03X32776Y31097I135J124* X32910Y31156J183* G01X32913* G03X32931Y31163J25* G01X33010Y31242* G03X33017Y31260I18J18* G01Y33256* G03X33098Y33465I230J209* X33017Y33673I311* G01Y33848* X33081Y33912* X34789* G03X34843Y33902I54J143* X34897Y33912J153* G01X36328* X36392Y33848* Y33319* G03X36314Y33169I104J150* X36317Y33135I182* G01X35748* G03X35730Y33128J25* G01X34116Y31514* G03X34109Y31496I18J18* G01Y27677* G03X34116Y27659I25* G01X34195Y27581* G03X34213Y27573I18J17* G01X34872* X34936Y27509* Y26378* G03X34943Y26360I25* G01X35061Y26242* G03X35079Y26235I18J18* G01X35996* G03X36063Y26215I67J104* G01X36348* X36373Y26190* Y25945* G03X36392Y25878I123* G01Y25748* G03X36400Y25730I25* G01X36478Y25652* G03X36496Y25644I18J17* G01X38218* X38282Y25580* Y22451* X38295Y3125D02* Y2663D01* Y6482D02* Y6865D01* Y10970D02* Y12219D01* Y12387D02* Y13614D01* Y18046D02* Y16637D01* Y20920D02* Y19395D01* Y27534D02* Y25891D01* X38340Y2663D02* Y3125D01* Y6865D02* Y6482D01* Y12219D02* Y10970D01* Y13659D02* Y13209D01* Y16682D02* Y18046D01* Y19395D02* Y20920D01* Y25891D02* Y27534D01* X38385Y3125D02* Y2663D01* Y6482D02* Y6865D01* Y8186D02* Y10791D01* Y10983D02* Y12219D01* Y13225D02* Y15869D01* Y16499D02* Y16139D01* Y18046D02* Y16727D01* Y20920D02* Y19395D01* Y27534D02* Y25891D01* X38430Y2663D02* Y3125D01* Y6865D02* Y6482D01* Y10836D02* Y8141D01* Y12219D02* Y10990D01* Y15273D02* Y13225D01* Y15529D02* Y15455D01* Y15785D02* Y15711D01* Y16094D02* Y16544D01* Y16772D02* Y18046D01* Y19395D02* Y20920D01* Y25891D02* Y27534D01* X38475Y3125D02* Y2663D01* Y6482D02* Y6865D01* Y8096D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y15216D01* Y16589D02* Y16088D01* Y18046D02* Y16817D01* Y20920D02* Y19395D01* Y27534D02* Y25891D01* X38490Y23490D02* X39463D01* Y25211* X38490* Y23490* X38520Y2663D02* Y3125D01* Y6865D02* Y6482D01* Y10841D02* Y8051D01* Y12219D02* Y10990D01* Y15210D02* Y13225D01* Y16088D02* Y16634D01* Y16862D02* Y18046D01* Y19395D02* Y20920D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38565Y3125D02* Y2663D01* Y6482D02* Y6865D01* Y8006D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y15210D01* Y16679D02* Y16088D01* Y18046D02* Y16907D01* Y20920D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X38610Y2663D02* Y3125D01* Y6865D02* Y6482D01* Y10841D02* Y7961D01* Y12219D02* Y10990D01* Y15210D02* Y13225D01* Y16088D02* Y16724D01* Y16915D02* Y18046D01* Y19395D02* Y20920D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38642Y15364D02* X38429D01* X38642D02* Y15210D01* Y15620D02* X38429D01* X38642Y15876D02* X38429D01* X38655Y3125D02* Y2663D01* Y6482D02* Y6887D01* Y7916D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13526D01* Y14584D02* Y15210D01* Y16747D02* Y16088D01* Y18046D02* Y16915D01* Y20920D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X38700Y2663D02* Y3125D01* Y6932D02* Y6482D01* Y10841D02* Y7871D01* Y12219D02* Y10990D01* Y13491D02* Y13225D01* Y15210D02* Y14619D01* Y16088D02* Y16747D01* Y16915D02* Y18046D01* Y19395D02* Y20920D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38745Y3125D02* Y2663D01* Y6482D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15210D01* Y16747D02* Y16088D01* Y18046D02* Y16915D01* Y20920D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X38790Y2663D02* Y3125D01* Y10841D02* Y6482D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15054D02* Y14622D01* Y16463D02* Y16747D01* Y16915D02* Y18046D01* Y19395D02* Y20899D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38835Y3125D02* Y2663D01* Y6482D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15054D01* Y16747D02* Y16508D01* Y18046D02* Y16915D01* Y20854D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X38880Y2663D02* Y3125D01* Y10841D02* Y6482D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15054D02* Y14622D01* Y16553D02* Y16715D01* Y16915D02* Y18046D01* Y19395D02* Y20809D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38912Y16585D02* X38762Y16435D01* G03X38755Y16417I18J18* G01Y16088* X38436* X38371Y16152* Y16486* X38632Y16747* X38848* X38912Y16683* Y16585* X38925Y3125D02* Y2663D01* Y6482D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15054D01* Y18046D02* Y16915D01* Y20764D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X38937Y30089D02* Y29936D01* X39334Y29539* X39712* X39759Y29587* X39764* X38937Y30856D02* X39365D01* X39414Y30906* X39587* X38937Y31368D02* X39347D01* X39579Y31600* Y32906* X40177Y33504* Y33543* X38970Y2663D02* Y3125D01* Y10841D02* Y6482D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15054D02* Y14622D01* Y16958D02* Y18003D01* Y19395D02* Y20719D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X38991Y16979D02* X38927Y16915D01* X38583* G03X38565Y16907J25* G01X38211Y16553* G03X38203Y16535I17J18* G01Y15522* X37266Y14585* G03X37258Y14567I17J18* G01Y13593* X37194Y13529* X34892* X34828Y13593* Y14557* X34971Y14699* X35276* G03X35293Y14707J25* G01X35411Y14825* G03X35419Y14843I17J18* G01Y16210* X35522Y16314* X37480* X37618* G03X37643Y16339J25* G01Y16466* X37695Y16518* G03X37702Y16535I18J17* G01Y16665* G03X37722Y16732I104J67* G01Y17165* G03X37702Y17232I124* G01Y17982* X37766Y18046* X38927* X38991Y17982* Y16979* X39015Y3125D02* Y2663D01* Y6482D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15054D01* Y20674D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X39055Y12756D02* X39799D01* X39055D02* Y13225D01* Y12756D02* X38311D01* X39060Y2663D02* Y3125D01* Y10841D02* Y6482D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15054D02* Y14622D01* Y19395D02* Y20629D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X39105Y3125D02* Y2663D01* Y6482D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15054D01* Y20584D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X39150Y2663D02* Y3125D01* Y10841D02* Y6508D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15054D02* Y14622D01* Y19395D02* Y20539D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X39195Y3125D02* Y2663D01* Y9191D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15066D01* Y20494D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X39213Y14055D02* X39780D01* X39213D02* Y14622D01* Y14055D02* X38645D01* X39213D02* Y13488D01* X39240Y2663D02* Y3142D01* Y10841D02* Y9236D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15210D02* Y14622D01* Y19395D02* Y20449D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X39285Y3187D02* Y2663D01* Y9281D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15210D01* Y20404D02* Y19395D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X39311Y15364D02* X39524D01* X39311D02* Y15210D01* Y15620D02* X39524D01* X39311Y15876D02* X39524D01* X39311Y16132D02* Y16344D01* X39384Y16417* X39567* X39330Y2663D02* Y8350D01* Y10841D02* Y9326D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15210D02* Y14622D01* Y19395D02* Y20359D01* Y23490D02* Y25211D01* Y25891D02* Y27534D01* X39331Y35728D02* Y36142D01* Y37894D02* Y37480D01* X39375Y8395D02* Y2663D01* Y9371D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15210D01* Y20314D02* Y19410D01* Y25211D02* Y23490D01* Y27534D02* Y25891D01* X39420Y2663D02* Y8440D01* Y10841D02* Y9416D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15210D02* Y14622D01* Y19455D02* Y20269D01* Y23490D02* Y25211D01* Y25912D02* Y27513D01* X39424Y19459D02* X39360Y19395D01* X36034* X36009Y19420* Y20895* X36024Y20910* G03X36083Y20900I59J173* X36165Y20920J183* G01X38769* X39424Y20265* Y19459* X39463Y25955D02* X39399Y25891D01* X36585* X36521Y25955* Y26260* G03X36514Y26278I25* G01X36435Y26356* G03X36417Y26364I18J17* G01X36073* X36009Y26428* Y26811* G03X36002Y26829I25* G01X35923Y26907* G03X35906Y26915I17J17* G01X35325* X35261Y26979* Y27470* X35325Y27534* X39399* X39463Y27470* Y25955* X39465Y8485D02* Y2663D01* Y9461D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15212D01* X39510Y2663D02* Y8530D01* Y10841D02* Y9506D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15242D02* Y14622D01* X39555Y8575D02* Y2663D01* Y9551D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15920D01* X39587Y30512D02* X39433D01* Y30514* X39347Y30600* X38937* X39600Y2663D02* Y8620D01* Y9368D02* Y8979D01* Y10841D02* Y9596D01* Y12219D02* Y10990D01* Y13488D02* Y13225D01* Y15920D02* Y14622D01* X39645Y8665D02* Y2672D01* Y8934D02* Y9413D01* Y9641D02* Y10841D01* Y10990D02* Y12219D01* Y13225D02* Y13488D01* Y14622D02* Y15920D01* Y17051D02* Y16937D01* Y18142D02* Y17595D01* X39646Y35728D02* Y36142D01* Y37894D02* Y37480D01* X39690Y2717D02* Y8710D01* Y9458D02* Y8923D01* Y10826D02* Y9686D01* Y12219D02* Y10989D01* Y13488D02* Y13225D01* Y15920D02* Y14622D01* Y16605D02* Y16637D01* Y16906D02* Y17096D01* Y17550D02* Y18172D01* Y18442D02* Y18474D01* X39705Y13488D02* G03X39780Y13563J75D01* G01Y14547* G03X39705Y14622I75* G01X38720* G03X38645Y14547J75* G01Y13563* G03X38720Y13488I75* G01X39705* X39735Y8715D02* Y3904D01* Y8923D02* Y9503D01* Y9731D02* Y10781D01* Y10979D02* Y12219D01* Y13224D02* Y13494D01* Y14616D02* Y15920D01* Y16701D02* Y16600D01* Y17101D02* Y16843D01* Y18236D02* Y17545D01* Y18479D02* Y18378D01* X39739Y9735D02* X39195Y9191D01* G03X39188Y9173I18J18* G01Y8413* G03X39168Y8346I103J67* G01Y6526* X39124Y6482* X38268* G03X38250Y6474J25* G01X38053Y6278* G03X38046Y6260I18J18* G01Y5010* X38021Y4986* X37373* X37348Y5010* Y6801* X37412Y6865* X38622* G03X38640Y6872J25* G01X38718Y6951* G03X38726Y6969I17J18* G01Y7835* G03X38718Y7852I25* G01X38371Y8199* Y10777* X38436Y10841* X39675* X39739Y10777* Y9735* X39764Y29744D02* Y29587D01* Y30098D02* X39957D01* X40020Y30036* Y29902* X39764Y30098D02* X39491D01* X39245Y30344* X38937* X39780Y3949D02* Y8715D01* Y9548D02* Y8923D01* Y12219D02* Y10964D01* Y15920D02* Y13200D01* Y16600D02* Y17101D01* Y17545D02* Y18479D01* X39825Y8715D02* Y3962D01* Y8923D02* Y9593D01* Y10919D02* Y12219D01* Y12419D02* Y15888D01* Y17101D02* Y16600D01* Y18479D02* Y17545D01* X39857Y12451D02* X39799Y12394D01* Y13150* G03X39724Y13225I75* G01X38386* G03X38311Y13150J75* G01Y12387* X37806* X37742Y12451* Y13061* X38364Y13683* G03X38371Y13701I18J18* G01Y15856* X38429Y15913* Y15797* G03X38447Y15748I75* X38429Y15699I57J49* G01Y15541* G03X38447Y15492I75* X38429Y15443I57J49* G01Y15285* G03X38504Y15210I75* G01X38755* Y15079* G03X38780Y15054I25* G01X39173* G03X39198Y15079J25* G01Y15210* X39449* G03X39524Y15285J75* G01Y15443* G03X39505Y15492I75* X39524Y15541I56J49* G01Y15699* G03X39505Y15748I75* X39524Y15797I56J49* G01Y15920* X39793* X39857Y15856* Y12451* X39870Y3962D02* Y8715D01* Y9662D02* Y8923D01* Y12219D02* Y10850D01* Y16600D02* Y17101D01* Y17545D02* Y18479D01* X39915Y8715D02* Y3962D01* Y8923D02* Y12219D01* Y17101D02* Y16600D01* Y18479D02* Y17545D01* X39941Y29409D02* X39764Y29587D01* X39960Y3962D02* Y8715D01* Y12247D02* Y8923D01* Y16600D02* Y17101D01* Y17545D02* Y18479D01* X40005Y8715D02* Y3977D01* Y8923D02* Y12292D01* Y17101D02* Y16600D01* Y18479D02* Y17545D01* X40050Y4022D02* Y8715D01* Y12337D02* Y8923D01* Y16600D02* Y17101D01* Y17545D02* Y18479D01* X40095Y8715D02* Y4697D01* Y8923D02* Y12382D01* Y17101D02* Y16600D01* Y18479D02* Y17545D01* X40140Y4742D02* Y8715D01* Y12427D02* Y8923D01* Y16600D02* Y17101D01* Y17545D02* Y18479D01* X40177Y33071D02* X40024D01* X39679Y32726* Y31444* X39347Y31112* X38937* X40177Y34016D02* Y33990D01* X39449Y33262* Y31727* X39347Y31624* X38937* X40185Y8715D02* Y4749D01* Y8923D02* Y12455D01* Y17102D02* Y16600D01* Y18479D02* Y17545D01* X40230Y4018D02* Y4525D01* Y4749D02* Y8715D01* Y12455D02* Y8923D01* Y16600D02* Y17163D01* Y17588D02* Y18108D01* Y18270D02* Y18435D01* X40275Y4570D02* Y3973D01* Y8715D02* Y4749D01* Y8923D02* Y12455D01* Y17326D02* Y16600D01* Y18050D02* Y17633D01* X40276Y35728D02* Y36142D01* Y37854D02* Y37480D01* X40320Y3962D02* Y4581D01* Y4749D02* Y8715D01* Y12455D02* Y8923D01* Y16600D02* Y17371D01* Y17663D02* Y18022D01* X40365Y4581D02* Y3962D01* Y8715D02* Y4749D01* Y8923D02* Y12455D01* Y17377D02* Y16600D01* Y18006D02* Y17663D01* X40394Y18189D02* Y18661D01* X40648Y18916* Y20558* X40576Y20630* Y21922* X39994Y22505* Y27347* X39106Y28235* X37867* X37520Y28583* X40410Y3962D02* Y4581D01* Y4749D02* Y8715D01* Y12455D02* Y8923D01* Y16600D02* Y17377D01* Y17663D02* Y18006D01* X40455Y4581D02* Y3962D01* Y8715D02* Y4749D01* Y8923D02* Y12455D01* Y17377D02* Y16600D01* Y18017D02* Y17663D01* X40500Y3962D02* Y4581D01* Y4749D02* Y8715D01* Y12455D02* Y8923D01* Y16600D02* Y17377D01* Y17663D02* Y18041D01* X40545Y2124D02* Y1301D01* Y4581D02* Y3962D01* Y8711D02* Y4749D01* Y8923D02* Y12412D01* Y17377D02* Y16600D01* Y18087D02* Y17663D01* Y18423D02* Y18291D01* X40590Y1256D02* Y2169D01* Y3962D02* Y4581D01* Y4749D02* Y8666D01* Y10398D02* Y8923D01* Y16600D02* Y17377D01* Y17663D02* Y18468D01* X40591Y35728D02* Y36142D01* Y37854D02* Y37480D01* X40635Y2214D02* Y1211D01* Y4149D02* Y3928D01* Y4581D02* Y4355D01* Y7755D02* Y4749D01* Y8923D02* Y10353D01* Y17377D02* Y16600D01* Y18479D02* Y17629D01* X40680Y1206D02* Y2259D01* Y3883D02* Y4115D01* Y4389D02* Y4581D01* Y4749D02* Y7710D01* Y10308D02* Y8923D01* Y16600D02* Y17377D01* Y17584D02* Y18479D01* X40725Y2304D02* Y1206D01* Y4101D02* Y3838D01* Y4581D02* Y4403D01* Y7665D02* Y4749D01* Y8923D02* Y10263D01* Y17359D02* Y16600D01* Y18479D02* Y17539D01* X40748Y4252D02* Y4231D01* X40902Y4077* X41039* X41094Y4132* X41160* X41217Y4190* X41400* X41417Y4207* X40770Y1206D02* Y2349D01* Y3793D02* Y4069D01* Y4403D02* Y4581D01* Y4749D02* Y7620D01* Y10218D02* Y8923D01* Y10446D02* Y11365D01* Y16600D02* Y17357D01* Y17505D02* Y18479D01* X40815Y2394D02* Y1206D01* Y4024D02* Y3748D01* Y4581D02* Y4389D01* Y7575D02* Y4787D01* Y8732D02* Y7803D01* Y8961D02* Y10173D01* Y11392D02* Y10401D01* Y17357D02* Y16600D01* Y18479D02* Y17505D01* X40841Y8987D02* X40777Y8923D01* X39656* X39592Y8987* Y9360* X39860Y9628* G03X39868Y9646I17J18* G01Y9658* G03X39887Y9724I104J66* G01Y10787* G03X39868Y10854I123* G01Y10866* G03X39860Y10884I25* G01X39781Y10963* G03X39764Y10970I17J18* G01X39752* G03X39685Y10990I67J104* G01X38425* G03X38358Y10970J124* G01X34499* X34434Y11034* Y13061* X34499Y13125* X37470* X37534Y13061* Y12323* G03X37541Y12305I25* G01X37620Y12226* G03X37638Y12219I18J18* G01X39921* G03X39939Y12226J25* G01X40168Y12455* X40501* X40566Y12391* Y10433* G03X40573Y10415I25* G01X40841Y10147* Y8987* X40860Y1206D02* Y2439D01* Y3703D02* Y3987D01* Y4356D02* Y4581D01* Y6013D02* Y6624D01* Y7758D02* Y8777D01* Y10356D02* Y11392D01* Y16600D02* Y17357D01* Y17505D02* Y18479D01* X40905Y2484D02* Y1206D01* Y3978D02* Y3658D01* Y4610D02* Y4373D01* Y6579D02* Y6058D01* Y8822D02* Y7713D01* Y11392D02* Y10311D01* Y17357D02* Y16600D01* Y18479D02* Y17505D01* X40950Y1206D02* Y2529D01* Y3613D02* Y3978D01* Y4385D02* Y4655D01* Y6103D02* Y6534D01* Y7668D02* Y8867D01* Y10266D02* Y11392D01* Y16600D02* Y17357D01* Y17505D02* Y18479D01* X40995Y3978D02* Y1206D01* Y4700D02* Y4382D01* Y6489D02* Y6148D01* Y8912D02* Y7623D01* Y11392D02* Y10221D01* Y17357D02* Y16600D01* Y18479D02* Y17505D01* X41040Y1206D02* Y3978D01* Y4365D02* Y5723D01* Y6193D02* Y6444D01* Y6654D02* Y11392D01* Y16600D02* Y17357D01* Y17505D02* Y18468D01* X41077Y6231D02* X40848Y6002D01* G03X40841Y5984I18J18* G01Y4814* X40777Y4749* X40157* G03X40140Y4742J25* G01X40061Y4663* G03X40054Y4646I18J17* G01Y4026* X39990Y3962* X39803* G03X39785Y3955J25* G01X39707Y3876* G03X39699Y3858I17J18* G01Y2727* X39635Y2663* X37648* X36679Y3632* Y3937* G03X36671Y3955I25* G01X36592Y4033* G03X36575Y4041I17J17* G01X32373* X32308Y4105* Y4714* X32373Y4778* X32598* G03X32623Y4803J25* G01Y5723* X33518* Y4921* G03X33543Y4896I25* G01X36368* X37101Y4163* Y3858* G03X37108Y3841I25* G01X37817Y3132* G03X37835Y3125I18J18* G01X39213* G03X39230Y3132J25* G01X39309Y3211* G03X39316Y3228I18J17* G01Y8336* X39695Y8715* X40541* X40605Y8651* Y7795* G03X40612Y7778I25* G01X40841Y7549* Y6654* G03X40848Y6636I25* G01X41077Y6407* Y6231* X41085Y3990D02* Y1206D01* Y5728D02* Y4339D01* Y11392D02* Y6609D01* Y17357D02* Y16600D01* Y18447D02* Y17505D01* X41130Y1206D02* Y4028D01* Y4378D02* Y5745D01* Y6564D02* Y11392D01* Y16600D02* Y17357D01* Y17505D02* Y18440D01* X41138Y22622D02* X41388Y22872D01* X41138Y24122D02* X41388Y23872D01* X41142Y20630D02* X41384Y20872D01* X41388* X41142Y21122D02* X41388Y21368D01* Y21372* X41175Y4034D02* Y1250D01* Y5779D02* Y4389D01* Y6119D02* Y6032D01* Y11392D02* Y6519D01* Y17333D02* Y16600D01* Y18443D02* Y17505D01* X41220Y1295D02* Y4053D01* Y4389D02* Y5860D01* Y5951D02* Y6183D01* Y6455D02* Y11392D01* Y16600D02* Y17278D01* Y17505D02* Y18459D01* X41265Y4090D02* Y1537D01* Y8088D02* Y4389D01* Y11392D02* Y8289D01* Y17224D02* Y16600D01* Y18479D02* Y17520D01* X41310Y2330D02* Y2909D01* Y2996D02* Y4090D01* Y4996D02* Y7583D01* Y7732D02* Y8041D01* Y8337D02* Y11392D01* Y16621D02* Y17196D01* Y17548D02* Y18479D01* X41353Y16664D02* X41289Y16600D01* X39695* X39672Y16623* G03X39749Y16772I105J149* X39631Y16942I182* G01Y17037* X39695Y17101* X40157* X40158* X40177* G03X40202Y17126J25* G01Y17135* X40254Y17187* G03X40261Y17205I18J18* G01Y17312* X40325Y17377* X40681* G03X40748Y17357I67J103* G01X41151* X41211Y17297* G03X41313Y17195I177J75* G01X41353Y17155* Y16664* X41355Y2839D02* Y2375D01* Y4090D02* Y3067D01* Y7224D02* Y5175D01* Y7521D02* Y7343D01* Y8017D02* Y7794D01* Y9769D02* Y8360D01* Y11392D02* Y9955D01* Y18479D02* Y17562D01* X41388Y19372D02* X41102Y19087D01* Y18898* X41388Y19872D02* X41220Y19705D01* Y19606* X41388Y22372D02* X41138Y22122D01* X41388Y25872D02* X41138Y26122D01* X41388Y26872D02* X41138Y27122D01* X41388Y27372D02* X41138Y27622D01* X41388Y28372D02* X41138Y28122D01* Y28110* X41400Y2420D02* Y2811D01* Y3095D02* Y4090D01* Y5221D02* Y7164D01* Y7402D02* Y7492D01* Y7823D02* Y8007D01* Y8371D02* Y9730D01* Y10055D02* Y11392D01* Y17564D02* Y18479D01* X41417Y4207D02* X41490Y4280D01* Y4895* X41634Y5039* X41417Y4964D02* X41390Y4937D01* Y4360* X41319Y4290* X41176* X41118Y4232* X40965* X41445Y2800D02* Y2465D01* Y4101D02* Y3105D01* Y7139D02* Y5266D01* Y7478D02* Y7428D01* Y8009D02* Y7837D01* Y9713D02* Y8369D01* Y11392D02* Y10110D01* Y18479D02* Y17556D01* X41490Y2730D02* Y2803D01* Y3102D02* Y4139D01* Y5427D02* Y5510D01* Y5671D02* Y5943D01* Y6105D02* Y7100D01* Y7436D02* Y7476D01* Y7839D02* Y7931D01* Y8356D02* Y9710D01* Y10155D02* Y11392D01* Y17549D02* Y18015D01* Y18229D02* Y18435D01* X41496Y35256D02* Y35791D01* X41535Y35831* Y36142* X41510Y18253D02* G03X41455Y18122I128J131D01* X41510Y17991I183* G01Y17569* X41481Y17540* G03X41388Y17564I93J168* X41249Y17505J192* G01X40758* X40608Y17655* G03X40591Y17663I17J17* G01X40315* G03X40297Y17655J25* G01X40186Y17545* X39695* X39631Y17609* Y18136* G03X39749Y18307I64J171* X39672Y18456I182* G01X39695Y18479* X40186* X40251Y18415* Y18302* G03X40211Y18189I143J113* X40334Y18017I183* G01X40337Y18014* G03X40354Y18006I17J17* G01X40433* G03X40451Y18014J25* G01X40454Y18017* G03X40576Y18189I60J172* X40537Y18302I182* G01Y18415* X40601Y18479* X41025* G03X41138Y18440I113J143* X41251Y18479J182* G01X41446* X41510Y18415* Y18253* X41535Y2818D02* Y2771D01* Y3397D02* Y3221D01* Y4184D02* Y3611D01* Y5885D02* Y5729D01* Y6259D02* Y6162D01* Y7055D02* Y6497D01* Y7459D02* Y7431D01* Y7873D02* Y7830D01* Y8703D02* Y8485D01* Y9546D02* Y8872D01* Y10361D02* Y10200D01* Y10834D02* Y10544D01* Y11392D02* Y11017D01* Y37854D02* Y37480D01* X41580Y11069D02* Y11392D01* X41625D02* Y11095D01* X41634Y5315D02* X41504Y5185D01* X41435Y5116* Y4982* X41417Y4964* X41638Y19122D02* X41888Y19372D01* X41638Y20122D02* X41888Y20372D01* X41638Y20622D02* X41888Y20872D01* X41638Y21622D02* X41888Y21872D01* X41638Y23122D02* X41888Y23372D01* X41638Y24122D02* X41888Y23872D01* X41638Y27122D02* X41888Y26872D01* X41638Y28622D02* X41888Y28372D01* X41654Y6024D02* X41764D01* X41894Y6154* X41654Y8012D02* X41725D01* X41950Y7787* X42091* X41670Y11106D02* Y11392D01* X41673Y4744D02* Y4713D01* X41894Y4492* X41683Y3504D02* X41693D01* X41894Y3705* X41693Y16181D02* X41457Y16417D01* X39567* X41713Y35256D02* X41850Y35394D01* Y36142* X41715Y11392D02* Y11106D01* X41760Y11095D02* Y11392D01* X41805Y11368D02* Y11069D01* X41850Y11018D02* Y11349D01* Y37854D02* Y37480D01* X41888Y17872D02* X42106Y18091D01* X42165* X41888Y18872D02* X41638Y18622D01* X41888Y22372D02* X41638Y22122D01* X41888Y24872D02* X41638Y25122D01* X41888Y25372D02* X41638Y25622D01* X41888Y26372D02* X41638Y26622D01* X41888Y27872D02* X41638Y28122D01* X41888Y29372D02* X41638Y29622D01* X41894Y2917D02* X41492D01* X41457Y2953* X41894Y3311D02* X41697Y3114D01* X41683* X41894Y5736D02* X41748Y5591D01* X41654* X41894Y6575D02* X41697Y6378D01* X41673* X41894Y6996D02* X41713Y7177D01* Y7244* X41894Y7417D02* X41717D01* X41476Y7657* X41894Y8157D02* X41685Y8366D01* X41673* X41894Y8579D02* X41697Y8776D01* Y8787* X41894Y8996D02* X41697Y9193D01* Y9207* X41894Y9417D02* X41697Y9614D01* Y9630* X41894Y9839D02* X41732Y10000D01* X41693* X41894Y10256D02* X41851D01* X41751Y10155* X41630* X41491Y10015* Y9862* X41476* X41894Y10677D02* X41693Y10878D01* Y10925* X41894Y12358D02* X41732Y12520D01* X41693* X41894Y12780D02* X41681Y12992D01* X41634* X41895Y11343D02* Y11009D01* X41929Y33012D02* Y34319D01* X41218Y35031* X39755* X39606Y34882* X41940Y11009D02* Y11349D01* X41985Y11369D02* Y11039D01* X42030Y11062D02* Y11392D01* X42067Y4272D02* X41894Y4098D01* X42075Y11392D02* Y11072D01* Y30598D02* Y32966D01* Y33058D02* Y34796D01* X42091Y11732D02* Y11713D01* X42287Y11516* X42120Y11070D02* Y11392D01* Y34841D02* Y30553D01* X42138Y18622D02* X42388Y18872D01* X42138Y19622D02* X42388Y19872D01* X42138Y20122D02* X42388Y20372D01* X42138Y21122D02* X42388Y21372D01* X42138Y21622D02* X42388Y21872D01* X42138Y24622D02* X42388Y24372D01* X42138Y25122D02* X42388Y24872D01* X42138Y26122D02* X42388Y25872D01* X42138Y28122D02* X42388Y27872D01* X42138Y29122D02* X42388Y28872D01* X42165Y11392D02* Y11056D01* Y30508D02* Y34886D01* X42210Y11028D02* Y11361D01* Y34931D02* Y30463D01* X42255Y11346D02* Y11009D01* Y30458D02* Y34936D01* X42283Y16181D02* X43248D01* X44299Y15131* X46997* X47368Y14760* Y14567* X47421* X42287Y5315D02* X42091Y5118D01* Y5104* X42287Y5736D02* X42126Y5575D01* Y5531* X42287Y6575D02* X42091Y6378D01* Y6364* X42287Y6996D02* X42114Y6823D01* X41797* X41720Y6899* Y7010* X41496Y7235* Y7283* X42287Y8157D02* X42098Y8346D01* X42087* X42287Y8996D02* X42091Y9193D01* Y9207* X42287Y9417D02* X42091Y9614D01* Y9630* X42287Y10256D02* X42091Y10453D01* Y10467* X42287Y11937D02* X42091Y12134D01* Y12148* X42300Y11009D02* Y11344D01* Y34936D02* Y30458D01* X42315Y2917D02* X42154Y2756D01* X42106* X42315Y3705D02* X42118Y3508D01* X42106* X42345Y11353D02* Y11009D01* Y30458D02* Y31680D01* Y31785D02* Y34936D01* X42388Y17372D02* X42293D01* X42165Y17244* X42388Y22872D02* X42138Y22622D01* X42388Y23372D02* X42138Y23122D01* X42388Y26372D02* X42138Y26622D01* X42388Y27372D02* X42138Y27622D01* X42388Y29372D02* X42138Y29622D01* X42388Y29872D02* X42138Y30122D01* X42390Y11046D02* Y11377D01* Y31604D02* Y30458D01* Y34936D02* Y31861D01* X42435Y11392D02* Y11065D01* Y30458D02* Y31571D01* Y31894D02* Y34936D01* X42480Y11072D02* Y11392D01* Y31554D02* Y30458D01* Y34936D02* Y31910D01* Y37854D02* Y37480D01* X42520Y4331D02* X42571D01* X42732Y4492* X42520Y4685D02* Y4732D01* X42681Y4894* X42524Y3114D02* X42535D01* X42732Y3311* X42524Y3878D02* Y3890D01* X42732Y4098* X42525Y11392D02* Y11068D01* Y30458D02* Y31550D01* Y31915D02* Y34936D01* X42570Y11051D02* Y11384D01* Y31557D02* Y30458D01* Y34936D02* Y31908D01* X42598Y1378D02* Y1166D01* X42728Y1036* X46686* X47323Y1673* X42615Y11356D02* Y11017D01* Y30458D02* Y31577D01* Y31888D02* Y34936D01* X42638Y14980D02* X42791D01* X42861Y14910* X45327* X46120Y14117* Y14116* X46142Y14094* X42638Y19122D02* X42888Y19372D01* X42638Y21122D02* X42888Y21372D01* X42638Y22122D02* X42888Y22372D01* X42638Y24622D02* X42888Y24372D01* X42638Y25622D02* X42888Y25372D01* X42638Y27622D02* X42888Y27372D01* X42638Y28622D02* X42888Y28372D01* X42638Y29122D02* X42888Y28872D01* X42638Y30122D02* X42888Y29872D01* X42657Y35236D02* X42480Y35413D01* Y36142* X42660Y11009D02* Y11344D01* Y31616D02* Y30458D01* Y34936D02* Y31849D01* X42681Y5315D02* X42484Y5118D01* Y5104* X42681Y6154D02* X42484Y5957D01* Y5945* X42681Y6575D02* X42484Y6378D01* Y6364* X42681Y6996D02* X42535Y6850D01* X42500* X42681Y7417D02* X42496Y7602D01* X42031* X41976Y7657* X41752* X42681Y8579D02* X42484Y8776D01* Y8787* X42681Y8996D02* X42484Y9193D01* Y9207* X42681Y9417D02* X42484Y9614D01* Y9630* X42681Y9839D02* X42484Y10035D01* Y10047* X42681Y10256D02* X42484Y10453D01* Y10467* X42681Y10677D02* X42484Y10874D01* Y10890* X42681Y12358D02* X42484Y12555D01* Y12571* X42681Y12780D02* X42480Y12980D01* Y12992* X42681Y13618D02* Y13197D01* X42702Y31732D02* G03X42520Y31915I182D01* X42337Y31732J183* X42520Y31550I183* X42702Y31732J182* G01X42705Y11345D02* Y11009D01* Y30458D02* Y34936D01* X42732Y2130D02* X42559Y2303D01* X42520* X42732Y2524D02* X42933Y2323D01* Y2303* X42732Y2917D02* X42571Y2756D01* X42520* X42732Y3705D02* X42535Y3508D01* X42524* X42732Y14094D02* X42681Y14043D01* Y13618* X42750Y11020D02* Y11357D01* Y34936D02* Y30458D01* X42795Y11386D02* Y11052D01* Y30458D02* Y34936D01* Y14370D02* Y14157D01* X42732Y14094* X42795Y37854D02* Y37480D01* X42840Y11068D02* Y11392D01* Y34936D02* Y30458D01* X42878Y7787D02* X43051Y7961D01* X43492* X43665Y7787* X42878Y10047D02* Y10035D01* X43075Y9839* X42878Y11732D02* Y11713D01* X43075Y11516* X42878Y13407D02* Y13394D01* X43075Y13197* X42878Y13829D02* Y13815D01* X43075Y13618* X42885Y11392D02* Y11072D01* Y30458D02* Y34936D01* X42888Y17872D02* X42638Y17622D01* X42888Y18372D02* X42638Y18122D01* X42888Y19872D02* X42638Y19622D01* X42888Y20872D02* X42638Y20622D01* X42888Y22872D02* X42638Y22622D01* X42888Y23872D02* X42638Y24122D01* X42888Y25872D02* X42638Y26122D01* X42888Y26872D02* X42638Y27122D01* X42913Y4685D02* Y4732D01* X43075Y4894* X42930Y11065D02* Y11392D01* Y34936D02* Y30458D01* X42943Y3878D02* Y3888D01* X43154Y4098* X42953Y3110D02* X43154Y3311D01* X42953Y4331D02* X42992D01* X43154Y4492* X42953Y35236D02* X42795Y35394D01* Y36142* X42975Y11375D02* Y11044D01* Y30458D02* Y34936D01* X43020Y11009D02* Y11352D01* Y34936D02* Y30458D01* X43065Y11343D02* Y11009D01* Y30458D02* Y34936D01* X43075Y5315D02* X42878Y5118D01* Y5104* X43075Y6996D02* X42878Y6799D01* Y6785* X43075Y8579D02* X42878Y8776D01* Y8787* X43075Y8996D02* X42878Y9193D01* Y9207* X43075Y9417D02* X42878Y9614D01* Y9630* X43075Y10256D02* X42878Y10453D01* Y10467* X43075Y11937D02* X42878Y12134D01* Y12148* X43110Y11009D02* Y11347D01* Y34936D02* Y30458D01* X43138Y19122D02* X43388Y19372D01* X43138Y20122D02* X43388Y20372D01* X43138Y21622D02* X43388Y21872D01* X43138Y22122D02* X43388Y22372D01* X43138Y23122D02* X43388Y23372D01* X43138Y24122D02* X43388Y23872D01* X43138Y25622D02* X43388Y25372D01* X43138Y30122D02* X43388Y29872D01* X43154Y2917D02* X42991Y2755D01* X42945* X43154Y3705D02* X42957Y3508D01* X42943* X43155Y11363D02* Y11030D01* Y30458D02* Y31631D01* Y31833D02* Y34936D01* X43200Y11058D02* Y11392D01* Y31585D02* Y30458D01* Y34936D02* Y31880D01* X43245Y11392D02* Y11070D01* Y30458D02* Y31561D01* Y31904D02* Y34936D01* X43248Y12992D02* X43256D01* X43469Y12780* X43268Y6358D02* Y6354D01* X43469Y6154* X43272Y7787D02* X43087Y7602D01* X42917* X42874Y7559* X43287Y8346D02* Y8339D01* X43469Y8157* X43290Y11071D02* Y11392D01* Y31551D02* Y30458D01* Y34936D02* Y31914D01* X43335Y11392D02* Y11061D01* Y30458D02* Y31552D01* Y31913D02* Y34936D01* X43353Y2753D02* X43411D01* X43575Y2917* X43364Y3878D02* Y3888D01* X43575Y4098* X43366Y4331D02* X43413D01* X43575Y4492* X43380Y11037D02* Y11368D01* Y31565D02* Y30458D01* Y34936D02* Y31900D01* X43388Y17372D02* X43138Y17122D01* X43388Y17872D02* X43138Y17622D01* X43388Y20872D02* X43138Y20622D01* X43388Y24872D02* X43138Y25122D01* X43388Y26372D02* X43138Y26622D01* X43388Y26872D02* X43138Y27122D01* X43388Y27872D02* X43138Y28122D01* X43388Y28372D02* X43138Y28622D01* X43388Y29372D02* X43138Y29622D01* X43425Y11349D02* Y11009D01* Y30458D02* Y31593D01* Y31872D02* Y34936D01* Y37854D02* Y37480D01* X43469Y5315D02* X43272Y5118D01* Y5104* X43469Y5736D02* X43272Y5539D01* Y5528* X43469Y6996D02* X43272Y6799D01* Y6785* X43469Y7417D02* X43268Y7217D01* Y7205* X43469Y8579D02* X43272Y8776D01* Y8787* X43469Y9417D02* X43272Y9614D01* Y9630* X43469Y9839D02* X43272Y10035D01* Y10047* X43469Y12358D02* X43268Y12559D01* X43248* X43470Y11009D02* Y11343D01* Y31650D02* Y30458D01* Y34936D02* Y31814D01* X43490Y31732D02* G03X43307Y31915I183D01* X43125Y31732J183* X43307Y31550I182* X43490Y31732J182* G01X43515Y11349D02* Y11009D01* Y30458D02* Y31308D01* Y33180D02* Y34936D01* X43560Y11039D02* Y11369D01* Y31268D02* Y30458D01* Y34936D02* Y33220D01* X43575Y3311D02* X43378Y3114D01* X43364* X43605Y11392D02* Y11062D01* Y30458D02* Y31264D01* Y33224D02* Y34936D01* X43638Y18122D02* X43888Y18372D01* X43638Y27622D02* X43888Y27372D01* X43638Y28122D02* X43888Y27872D01* X43638Y29122D02* X43888Y28872D01* X43638Y29622D02* X43888Y29372D01* X43650Y11072D02* Y11392D01* Y31264D02* Y30458D01* Y34936D02* Y33224D01* X43695Y11392D02* Y11070D01* Y30458D02* Y31264D01* Y33224D02* Y34936D01* X43740Y11056D02* Y11392D01* Y31264D02* Y30458D01* Y34936D02* Y33224D01* Y37854D02* Y37480D01* X43785Y11361D02* Y11028D01* Y30458D02* Y31264D01* Y33224D02* Y34936D01* X43787Y3878D02* Y3890D01* X43996Y4098* X43791Y4331D02* X43835D01* X43996Y4492* X43830Y11009D02* Y11346D01* Y31264D02* Y30458D01* Y34936D02* Y33224D01* X43862Y4894D02* X44055Y5087D01* Y5098* X43862Y5315D02* X44059Y5512D01* Y5524* X43862Y6154D02* X43665Y5957D01* Y5945* X43862Y6575D02* X43665Y6378D01* Y6364* X43862Y7417D02* X43681Y7236D01* Y7205* X43862Y8157D02* X43673Y8346D01* X43661* X43862Y8996D02* X43665Y9193D01* Y9207* X43862Y9839D02* X43665Y10035D01* Y10047* X43862Y10256D02* X43665Y10453D01* Y10467* X43875Y11344D02* Y11003D01* Y30452D02* Y31264D01* Y33224D02* Y34936D01* X43888Y17372D02* X43638Y17122D01* X43888Y18872D02* X43638Y18622D01* X43888Y19872D02* X43638Y19622D01* X43920Y11006D02* Y11353D01* Y31264D02* Y30407D01* Y34936D02* Y33224D01* X43965Y11377D02* Y11044D01* Y30362D02* Y31264D01* Y33224D02* Y34936D01* X43996Y3311D02* X43799Y3114D01* X43787* X44010Y9928D02* Y10167D01* Y10345D02* Y10588D01* Y11064D02* Y11427D01* Y11605D02* Y11848D01* Y12026D02* Y12269D01* Y12447D02* Y12690D01* Y12869D02* Y13108D01* Y13286D02* Y13529D01* Y13707D02* Y14266D01* Y31264D02* Y30317D01* Y34936D02* Y33224D01* X44055Y10704D02* Y9812D01* Y14778D02* Y11070D01* Y16650D02* Y17277D01* Y17467D02* Y17777D01* Y17967D02* Y18277D01* Y18967D02* Y19277D01* Y19467D02* Y19777D01* Y19967D02* Y20277D01* Y20467D02* Y20777D01* Y20967D02* Y21277D01* Y21467D02* Y21777D01* Y21967D02* Y22277D01* Y22467D02* Y22777D01* Y22967D02* Y23277D01* Y23467D02* Y23777D01* Y23967D02* Y24277D01* Y24467D02* Y24777D01* Y24967D02* Y25277D01* Y25467D02* Y25777D01* Y25967D02* Y26277D01* Y26467D02* Y26777D01* Y26967D02* Y27277D01* Y27467D02* Y27777D01* Y27967D02* Y28277D01* Y29467D02* Y29777D01* Y29967D02* Y31264D01* Y33224D02* Y34936D01* Y7205D02* Y7611D01* X44059Y7615* Y7787* X44100Y9808D02* Y10603D01* Y11066D02* Y11442D01* Y11590D02* Y14778D01* Y18444D02* Y16605D01* Y28444D02* Y18801D01* Y31264D02* Y29301D01* Y34936D02* Y33224D01* X44138Y28622D02* X44388Y28372D01* X44145Y10545D02* Y9791D01* Y11383D02* Y11049D01* Y14778D02* Y11648D01* Y16560D02* Y18440D01* Y18804D02* Y28440D01* Y29304D02* Y31264D01* Y33224D02* Y34936D01* X44173Y3110D02* Y3094D01* X43996Y2917* X44173Y35256D02* X43974D01* X43425Y35805* Y36142* X44190Y9757D02* Y10518D01* Y11015D02* Y11356D01* Y11675D02* Y14778D01* Y18447D02* Y16521D01* Y28430D02* Y18815D01* Y31264D02* Y29297D01* Y34936D02* Y33224D01* X44235Y10506D02* Y9678D01* Y11344D02* Y10936D01* Y14778D02* Y11687D01* Y16521D02* Y18255D01* Y18989D02* Y28255D01* Y29276D02* Y31264D01* Y33224D02* Y34936D01* X44256Y5736D02* X44406Y5886D01* X44606* X44256Y6154D02* X44055Y5953D01* Y5945* X44256Y6996D02* X44059Y6799D01* Y6785* X44256Y8579D02* X44059Y8776D01* Y8787* X44256Y11516D02* X44457Y11315D01* Y11035* X44528Y10965* X44280Y9588D02* Y10506D01* Y10848D02* Y11345D01* Y11687D02* Y12474D01* Y12684D02* Y14778D01* Y18213D02* Y16521D01* Y22391D02* Y19031D01* Y24734D02* Y22530D01* Y28213D02* Y24872D01* Y31264D02* Y29236D01* Y34936D02* Y33224D01* X44325Y10519D02* Y9576D01* Y11306D02* Y10835D01* Y12429D02* Y11674D01* Y12922D02* Y12729D01* Y14778D02* Y13102D01* Y16521D02* Y18190D01* Y18554D02* Y18669D01* Y19054D02* Y21769D01* Y21932D02* Y22327D01* Y22595D02* Y24669D01* Y24937D02* Y25312D01* Y25475D02* Y28190D01* Y29075D02* Y31264D01* Y33224D02* Y34936D01* X44370Y9547D02* Y10548D01* Y10807D02* Y10873D01* Y11645D02* Y12406D01* Y12751D02* Y12881D01* Y13143D02* Y14778D01* Y18181D02* Y16521D01* Y18681D02* Y18564D01* Y21711D02* Y19064D01* Y22296D02* Y21989D01* Y24639D02* Y22625D01* Y25255D02* Y24968D01* Y28181D02* Y25533D01* Y31264D02* Y29064D01* Y34936D02* Y33224D01* X44388Y18872D02* X44138Y18622D01* X44388Y28872D02* X44138Y29122D01* X44390Y35256D02* Y35411D01* X44343Y35457* X43943* X43740Y35660* Y36142* X44413Y2130D02* X44220Y2323D01* X44213* Y2327* X44413Y2524D02* X44220Y2717D01* X44193* X44415Y10610D02* Y9484D01* Y10821D02* Y10744D01* Y12397D02* Y11583D01* Y12863D02* Y12761D01* Y13327D02* Y13161D01* Y14778D02* Y13760D01* Y16521D02* Y18182D01* Y18562D02* Y18682D01* Y19062D02* Y21683D01* Y22018D02* Y22281D01* Y22640D02* Y24624D01* Y24982D02* Y25227D01* Y25561D02* Y28182D01* Y29062D02* Y31264D01* Y33224D02* Y34936D01* X44460Y9394D02* Y10795D01* Y11452D02* Y12399D01* Y12759D02* Y12859D01* Y18194D02* Y16521D01* Y18694D02* Y18550D01* Y21670D02* Y19050D01* Y22278D02* Y22031D01* Y24621D02* Y22643D01* Y25213D02* Y24985D01* Y27581D02* Y25574D01* Y28081D02* Y27663D01* Y28194D02* Y28163D01* Y29081D02* Y29050D01* Y29581D02* Y29163D01* Y31264D02* Y29663D01* Y34936D02* Y33224D01* X44469Y7972D02* X43850D01* X43665Y7787* X44505Y10783D02* Y9349D01* Y11569D02* Y11407D01* Y11962D02* Y11731D01* Y12356D02* Y12124D01* Y16521D02* Y18220D01* Y18525D02* Y18720D01* Y19025D02* Y21669D01* Y22032D02* Y22287D01* Y22634D02* Y24630D01* Y24977D02* Y25212D01* Y25575D02* Y27497D01* Y27747D02* Y27997D01* Y29247D02* Y29497D01* Y29747D02* Y31264D01* Y33224D02* Y34936D01* X44550Y5250D02* Y5340D01* Y5684D02* Y5712D01* Y6695D02* Y7809D01* Y8136D02* Y8647D01* Y8951D02* Y10783D01* Y11391D02* Y11515D01* Y18269D02* Y16521D01* Y18769D02* Y18475D01* Y21679D02* Y18975D01* Y22309D02* Y22022D01* Y24651D02* Y22612D01* Y25222D02* Y24955D01* Y27462D02* Y25565D01* Y27962D02* Y27782D01* Y29462D02* Y29282D01* Y31264D02* Y29782D01* Y34936D02* Y33224D01* X44587Y14094D02* Y14547D01* X44595Y1621D02* Y2827D01* Y5364D02* Y5227D01* Y5704D02* Y5660D01* Y7841D02* Y6698D01* Y8690D02* Y8104D01* Y10795D02* Y8908D01* Y11489D02* Y11417D01* Y16521D02* Y21702D01* Y21998D02* Y22351D01* Y22570D02* Y24694D01* Y24912D02* Y25246D01* Y25542D02* Y27421D01* Y27822D02* Y27921D01* Y29323D02* Y29421D01* Y29823D02* Y31264D01* Y33224D02* Y34936D01* X44606Y31264D02* G03X44681Y31339J75D01* G01Y33150* G03X44606Y33224I75* G01X43583* G03X43508Y33150J74* G01Y31339* G03X43583Y31264I75* G01X44606* X44631Y22461D02* G03X44449Y22643I182D01* X44266Y22461J182* X44449Y22278I183* X44631Y22461J183* G01Y24803D02* G03X44449Y24986I182D01* X44266Y24803J183* X44449Y24621I183* X44631Y24803J182* G01X44640Y2872D02* Y1600D01* Y4926D02* Y4977D01* Y5180D02* Y5411D01* Y5613D02* Y5706D01* Y6690D02* Y7910D01* Y8035D02* Y10821D01* Y11428D02* Y11478D01* Y21749D02* Y16521D01* Y25292D02* Y21952D01* Y27376D02* Y25495D01* Y31272D02* Y29868D01* Y34936D02* Y33216D01* X44657Y12831D02* X44476Y13012D01* X44449* X44657Y13224D02* X44485Y13397D01* Y13690* X44587Y13791* Y14094* X44665Y10845D02* G03X44803Y10782I138J120D01* X44986Y10965J183* X44823Y11146I183* X44809Y11163I84J54* G01X44805Y11167* G03X44830Y11256I148J89* X44657Y11429I173* X44534Y11377J173* X44527Y11385I77J62* G01X44426Y11486* G03X44429Y11516I170J30* X44256Y11688I173* X44083Y11516J172* X44256Y11343I173* X44286Y11346J173* G01X44357Y11274* Y11035* G03X44358Y11031I100* X44345Y10965I170J66* X44528Y10782I183* X44665Y10845J183* G01X44671Y21850D02* G03X44488Y22033I183D01* X44306Y21850J183* X44488Y21668I182* X44671Y21850J182* G01Y25394D02* G03X44488Y25576I183D01* X44306Y25394J182* X44488Y25211I182* X44671Y25394J183* G01X44685Y1600D02* Y2917D01* Y5721D02* Y4922D01* Y6362D02* Y6315D01* Y7929D02* Y6669D01* Y10826D02* Y8016D01* Y11479D02* Y11426D01* Y16521D02* Y27331D01* Y29913D02* Y34936D01* X44730Y2948D02* Y1600D01* Y4906D02* Y5752D01* Y6020D02* Y6049D01* Y6274D02* Y6403D01* Y6629D02* Y7847D01* Y8098D02* Y10797D01* Y11413D02* Y11493D01* Y17262D02* Y16521D01* Y17762D02* Y17482D01* Y18262D02* Y17982D01* Y18762D02* Y18482D01* Y19262D02* Y18982D01* Y19762D02* Y19482D01* Y27262D02* Y19982D01* Y31631D02* Y29982D01* Y34936D02* Y31833D01* X44775Y1600D02* Y2982D01* Y5816D02* Y4873D01* Y6663D02* Y5955D01* Y7812D02* Y6881D01* Y10784D02* Y8133D01* Y11523D02* Y11382D01* Y16521D02* Y17216D01* Y17528D02* Y17716D01* Y18028D02* Y18216D01* Y18528D02* Y18716D01* Y19028D02* Y19216D01* Y19528D02* Y19716D01* Y20028D02* Y27216D01* Y30028D02* Y31584D01* Y31880D02* Y34936D01* X44803Y10965D02* Y10970D01* X44739Y11034* Y11092* X44657Y11174* Y11256* X44820Y3052D02* Y1600D01* Y4664D02* Y4690D01* Y4798D02* Y6620D01* Y6923D02* Y7795D01* Y8150D02* Y10783D01* Y11150D02* Y11198D01* Y11314D02* Y11591D01* Y11708D02* Y11985D01* Y12102D02* Y12379D01* Y17192D02* Y16521D01* Y17692D02* Y17552D01* Y18192D02* Y18052D01* Y18692D02* Y18552D01* Y19192D02* Y19052D01* Y19692D02* Y19552D01* Y27192D02* Y20052D01* Y31561D02* Y30052D01* Y34936D02* Y31904D01* X44835Y3311D02* X45031Y3508D01* X45047* X44835Y3705D02* X44638Y3508D01* X44624* X44865Y1600D02* Y3097D01* Y4769D02* Y4662D01* Y6598D02* Y4877D01* Y7790D02* Y6945D01* Y10793D02* Y8155D01* Y12505D02* Y11136D01* Y16521D02* Y17181D01* Y17593D02* Y17651D01* Y18093D02* Y18151D01* Y18593D02* Y18651D01* Y19093D02* Y19151D01* Y19593D02* Y19651D01* Y20063D02* Y27181D01* Y30063D02* Y31551D01* Y31914D02* Y34936D01* X44910Y1823D02* Y1600D01* Y3142D02* Y2429D01* Y4647D02* Y4694D01* Y4952D02* Y6590D01* Y6954D02* Y7796D01* Y8149D02* Y9593D01* Y9742D02* Y10600D01* Y10739D02* Y10817D01* Y11112D02* Y11219D01* Y11292D02* Y12401D01* Y17181D02* Y16521D01* Y27181D02* Y20063D01* Y27649D02* Y27594D01* Y28150D02* Y28094D01* Y28650D02* Y28594D01* Y29150D02* Y29094D01* Y29650D02* Y29594D01* Y31552D02* Y30063D01* Y34936D02* Y31913D01* X44955Y1600D02* Y1791D01* Y2471D02* Y3187D01* Y4661D02* Y4616D01* Y6592D02* Y4985D01* Y7815D02* Y6951D01* Y9531D02* Y8130D01* Y10535D02* Y9803D01* Y10863D02* Y10803D01* Y11136D02* Y11066D01* Y12317D02* Y11376D01* Y16521D02* Y17192D01* Y20052D02* Y27192D01* Y27552D02* Y27692D01* Y28052D02* Y28192D01* Y28552D02* Y28692D01* Y29052D02* Y29192D01* Y29552D02* Y29692D01* Y30052D02* Y31565D01* Y31899D02* Y34936D01* X45000Y1777D02* Y1600D01* Y3261D02* Y2516D01* Y4542D02* Y4645D01* Y5001D02* Y6607D01* Y6936D02* Y7853D01* Y8092D02* Y9502D01* Y9833D02* Y10505D01* Y10834D02* Y11102D01* Y11410D02* Y12283D01* Y17216D02* Y16521D01* Y27216D02* Y20028D01* Y27716D02* Y27528D01* Y28216D02* Y28028D01* Y28716D02* Y28528D01* Y29216D02* Y29028D01* Y29716D02* Y29528D01* Y31593D02* Y30028D01* Y34936D02* Y31871D01* X45020Y1929D02* X45055D01* X45256Y2130* X45020Y2323D02* X45055D01* X45256Y2524* X45045Y7972D02* G03X44862Y8155I183D01* X44680Y7972J183* X44862Y7790I182* X45045Y7972J182* G01Y1600D02* Y1778D01* Y2561D02* Y3325D01* Y4640D02* Y4478D01* Y6638D02* Y5005D01* Y9488D02* Y6906D01* Y10490D02* Y9847D01* Y11087D02* Y10849D01* Y12268D02* Y11425D01* Y16521D02* Y17261D01* Y19983D02* Y27261D01* Y27483D02* Y27761D01* Y27983D02* Y28261D01* Y28483D02* Y28761D01* Y28983D02* Y29261D01* Y29483D02* Y29761D01* Y29983D02* Y31650D01* Y31814D02* Y34936D01* X45064Y31732D02* G03X44882Y31915I182D01* X44699Y31732J183* X44882Y31550I183* X45064Y31732J182* G01X45079Y12437D02* X44862Y12654D01* Y12657* X45079Y13618D02* X44921Y13776D01* Y13799* X45090Y1786D02* Y1597D01* Y3330D02* Y2606D01* Y3755D02* Y3685D01* Y4540D02* Y4648D01* Y4998D02* Y5546D01* Y5635D02* Y6702D01* Y6841D02* Y9485D01* Y9849D02* Y10487D01* Y10851D02* Y11070D01* Y11428D02* Y12265D01* Y17330D02* Y16521D01* Y34936D02* Y19914D01* X45104Y6772D02* G03X44921Y6954I183D01* X44739Y6772J182* X44921Y6589I182* X45104Y6772J183* G01X45135Y1567D02* Y1786D01* Y2651D02* Y3348D01* Y3668D02* Y3800D01* Y4667D02* Y4615D01* Y5476D02* Y4978D01* Y9495D02* Y5705D01* Y10496D02* Y9840D01* Y11025D02* Y10843D01* Y12274D02* Y11419D01* Y16521D02* Y17375D01* Y19869D02* Y21734D01* Y21967D02* Y22411D01* Y22471D02* Y22915D01* Y23148D02* Y24773D01* Y24833D02* Y25277D01* Y25510D02* Y34936D01* X45180Y1786D02* Y1537D01* Y3383D02* Y2696D01* Y3833D02* Y3633D01* Y4647D02* Y4707D01* Y4939D02* Y5258D01* Y5733D02* Y9517D01* Y9818D02* Y10517D01* Y10821D02* Y10980D01* Y11396D02* Y11740D01* Y11953D02* Y12133D01* Y17420D02* Y16533D01* Y17920D02* Y17824D01* Y18420D02* Y18324D01* Y18920D02* Y18824D01* Y19420D02* Y19324D01* Y21695D02* Y19824D01* Y22318D02* Y22006D01* Y22876D02* Y22564D01* Y24680D02* Y23187D01* Y25238D02* Y24926D01* Y34936D02* Y25549D01* X45222Y4823D02* G03X45039Y5005I183D01* X44857Y4823J182* X45039Y4640I182* X45222Y4823J183* G01X45225Y1228D02* Y1302D01* Y1454D02* Y1754D01* Y2741D02* Y3467D01* Y3549D02* Y3833D01* Y5213D02* Y4662D01* Y9561D02* Y5743D01* Y10004D02* Y9774D01* Y10560D02* Y10110D01* Y10879D02* Y10778D01* Y11708D02* Y11348D01* Y12101D02* Y11985D01* Y16553D02* Y17458D01* Y17779D02* Y17965D01* Y18290D02* Y18462D01* Y18782D02* Y18965D01* Y19294D02* Y19465D01* Y19786D02* Y21675D01* Y22026D02* Y22282D01* Y22600D02* Y22856D01* Y23207D02* Y24644D01* Y24962D02* Y25218D01* Y25569D02* Y34936D01* X45226Y19466D02* G03X45320Y19626I88J160D01* X45211Y19793I182* G01X45070Y19934* G03X44888Y20064I182J62* X44695Y19872J192* X44826Y19690I193* G01X44894Y19622* X44826Y19554* G03X44695Y19372I62J182* X44826Y19190I193* G01X44894Y19122* X44826Y19054* G03X44695Y18872I62J182* X44826Y18690I193* G01X44894Y18622* X44826Y18554* G03X44695Y18372I62J182* X44826Y18190I193* G01X44894Y18122* X44826Y18054* G03X44695Y17872I62J182* X44826Y17690I193* G01X44894Y17622* X44826Y17554* G03X44695Y17372I62J182* X44888Y17180I193* X45070Y17310J192* G01X45211Y17451* G03X45320Y17618I73J167* X45226Y17778I182* G01X45132Y17872* X45236Y17976* G03X45320Y18130I98J154* X45204Y18300I182* G01X45132Y18372* X45218Y18458* G03X45320Y18622I80J164* X45218Y18786I182* G01X45132Y18872* X45249Y18989* G03X45320Y19134I111J145* X45198Y19306I182* G01X45132Y19372* X45226Y19466* X45256Y4098D02* X45059Y4295D01* X45047* X45259Y9667D02* G03X45077Y9850I182D01* X44894Y9667J183* X45077Y9485I183* X45259Y9667J182* G01X45261Y10669D02* G03X45079Y10852I182D01* X44896Y10669J183* X45079Y10487I183* X45261Y10669J182* G01X45270Y1705D02* Y1206D01* Y3833D02* Y2786D01* Y4664D02* Y5168D01* Y5740D02* Y9929D01* Y10186D02* Y10834D01* Y11239D02* Y11695D01* Y11998D02* Y12088D01* Y17492D02* Y16560D01* Y18004D02* Y17744D01* Y18496D02* Y18256D01* Y19008D02* Y18748D01* Y19500D02* Y19260D01* Y21668D02* Y19752D01* Y22264D02* Y22033D01* Y22849D02* Y22618D01* Y24626D02* Y23214D01* Y25211D02* Y24980D01* Y34936D02* Y25576D01* X45315Y1206D02* Y1680D01* Y2831D02* Y3010D01* Y3219D02* Y3833D01* Y5123D02* Y4654D01* Y8440D02* Y5722D01* Y9895D02* Y8528D01* Y10812D02* Y10219D01* Y11694D02* Y11194D01* Y12088D02* Y11997D01* Y16556D02* Y17575D01* Y17662D02* Y18086D01* Y18173D02* Y18578D01* Y18666D02* Y19090D01* Y19177D02* Y19582D01* Y19670D02* Y21672D01* Y22029D02* Y22258D01* Y22623D02* Y22853D01* Y23210D02* Y24621D01* Y24986D02* Y25216D01* Y25572D02* Y34936D01* X45360Y1652D02* Y1206D01* Y2965D02* Y2876D01* Y3833D02* Y3264D01* Y4630D02* Y5078D01* Y5680D02* Y8358D01* Y8610D02* Y9879D01* Y10235D02* Y10802D01* Y11357D02* Y11549D01* Y21689D02* Y16540D01* Y22264D02* Y22012D01* Y22870D02* Y22618D01* Y24626D02* Y23193D01* Y25232D02* Y24980D01* Y34936D02* Y25555D01* X45374Y14173D02* X45783D01* X45862Y14094* X45394Y5433D02* X45517Y5556D01* X45756* X46151Y5952* X49497* X49598Y6053* Y6354* X49783Y6539* Y6575* X45405Y1228D02* Y1607D01* Y3314D02* Y3833D01* Y5037D02* Y4579D01* Y8324D02* Y5586D01* Y9875D02* Y8645D01* Y10804D02* Y10239D01* Y11505D02* Y11400D01* Y16521D02* Y21722D01* Y21979D02* Y22282D01* Y22600D02* Y22903D01* Y23160D02* Y24644D01* Y24962D02* Y25265D01* Y25522D02* Y34936D01* X45450Y3833D02* Y3359D01* Y4472D02* Y4987D01* Y21797D02* Y16521D01* Y22318D02* Y21904D01* Y22978D02* Y22564D01* Y24680D02* Y23085D01* Y25340D02* Y24926D01* Y34936D02* Y25447D01* X45458Y21850D02* G03X45276Y22033I182D01* X45093Y21850J183* X45276Y21668I183* X45458Y21850J182* G01Y23031D02* G03X45276Y23214I182D01* X45093Y23031J183* X45276Y22849I183* X45458Y23031J182* G01Y25394D02* G03X45276Y25576I182D01* X45093Y25394J182* X45276Y25211I183* X45458Y25394J183* G01X45472Y4291D02* X45673Y4492D01* X45495Y3404D02* Y3833D01* Y4942D02* Y4472D01* Y16521D02* Y22411D01* Y22471D02* Y24773D01* Y24833D02* Y34936D01* X45497Y22441D02* G03X45315Y22623I182D01* X45132Y22441J182* X45315Y22258I183* X45497Y22441J183* G01Y24803D02* G03X45315Y24986I182D01* X45132Y24803J183* X45315Y24621I183* X45497Y24803J182* G01X45500Y11650D02* X45303Y11846D01* X45289* X45500Y12043D02* X45303Y12240D01* X45289* X45500Y12831D02* X45339Y12992D01* X45295* X45500Y13224D02* X45303Y13421D01* X45289* X45500Y13618D02* X45299Y13819D01* X45295* X45540Y3833D02* Y3448D01* Y4602D02* Y4897D01* Y34936D02* Y16521D01* X45585Y3459D02* Y3833D01* Y4852D02* Y4641D01* Y8327D02* Y6222D01* Y9723D02* Y8641D01* Y16540D02* Y34936D01* X45630Y3833D02* Y3478D01* Y4659D02* Y4807D01* Y6177D02* Y8365D01* Y8604D02* Y9768D01* Y31551D02* Y16556D01* Y34936D02* Y31913D01* X45673Y2917D02* X45476Y2720D01* X45465* X45673Y3311D02* X45476Y3114D01* X45465* X45673Y4098D02* X45480Y4291D01* X45472* X45675Y3484D02* Y3833D01* Y4778D02* Y4665D01* Y9813D02* Y6132D01* Y16560D02* Y31540D01* Y31925D02* Y34936D01* X45709Y13051D02* Y13039D01* X45917Y12831* X45720Y3821D02* Y3477D01* Y4658D02* Y4778D01* Y6088D02* Y9857D01* Y31540D02* Y16553D01* Y34936D02* Y31925D01* X45765Y3457D02* Y3763D01* Y4346D02* Y4316D01* Y4778D02* Y4638D01* Y9857D02* Y6088D01* Y16533D02* Y31540D01* Y31925D02* Y34936D01* X45810Y3735D02* Y3450D01* Y4316D02* Y4387D01* Y4597D02* Y4710D01* Y6088D02* Y7354D01* Y7560D02* Y8614D01* Y8820D02* Y9857D01* Y31540D02* Y16521D01* Y34936D02* Y31925D01* X45855Y3450D02* Y3721D01* Y4635D02* Y4316D01* Y7308D02* Y6088D01* Y8568D02* Y7605D01* Y9857D02* Y8865D01* Y16521D02* Y31540D01* Y31925D02* Y34936D01* X45862Y14094D02* X46339Y13618D01* X45900Y3720D02* Y3450D01* Y4316D02* Y4602D01* Y6088D02* Y7285D01* Y7629D02* Y8544D01* Y8889D02* Y9857D01* Y21768D02* Y16521D01* Y25312D02* Y21932D01* Y31279D02* Y25476D01* Y34936D02* Y32854D01* X45917Y12043D02* X45720Y12240D01* X45709* X45917Y12437D02* X45756Y12598D01* X45709* X45945Y3450D02* Y3730D01* Y4586D02* Y4316D01* Y7275D02* Y6088D01* Y8535D02* Y7639D01* Y9857D02* Y8898D01* Y16521D02* Y21711D01* Y21990D02* Y25255D01* Y25533D02* Y31264D01* Y32869D02* Y34936D01* X45990Y3753D02* Y3450D01* Y4316D02* Y4581D01* Y6088D02* Y7277D01* Y7661D02* Y8509D01* Y8897D02* Y9857D01* Y17515D02* Y16521D01* Y18015D02* Y17729D01* Y18515D02* Y18229D01* Y19015D02* Y18729D01* Y19515D02* Y19229D01* Y21683D02* Y19729D01* Y25226D02* Y22018D01* Y27515D02* Y25561D01* Y28015D02* Y27729D01* Y28515D02* Y28229D01* Y29015D02* Y28729D01* Y29515D02* Y29229D01* Y31264D02* Y29729D01* Y34936D02* Y32869D01* X46035Y3473D02* Y3799D01* Y4588D02* Y4316D01* Y7290D02* Y6088D01* Y8395D02* Y7774D01* Y9857D02* Y8883D01* Y16521D02* Y17471D01* Y17773D02* Y17971D01* Y18273D02* Y18471D01* Y18773D02* Y18971D01* Y19273D02* Y19471D01* Y19773D02* Y21670D01* Y22031D02* Y25213D01* Y25574D02* Y27471D01* Y27773D02* Y27971D01* Y28273D02* Y28471D01* Y28773D02* Y28971D01* Y29273D02* Y29471D01* Y29773D02* Y31264D01* Y32869D02* Y34936D01* X46080Y3833D02* Y3483D01* Y4316D02* Y4608D01* Y6088D02* Y7319D01* Y7813D02* Y8356D01* Y8855D02* Y9857D01* Y17436D02* Y16521D01* Y17936D02* Y17808D01* Y18436D02* Y18308D01* Y18936D02* Y18808D01* Y19436D02* Y19308D01* Y21669D02* Y19808D01* Y25212D02* Y22032D01* Y27436D02* Y25575D01* Y27936D02* Y27808D01* Y28436D02* Y28308D01* Y28936D02* Y28808D01* Y29436D02* Y29308D01* Y31264D02* Y29808D01* Y34936D02* Y32869D01* X46094Y2130D02* X45898Y1933D01* X45884* X46094Y2524D02* X45898Y2327D01* X45884* X46125Y3481D02* Y3833D01* Y4648D02* Y4316D01* Y7377D02* Y6088D01* Y8337D02* Y7832D01* Y9857D02* Y8796D01* Y16521D02* Y17391D01* Y17853D02* Y17891D01* Y18353D02* Y18391D01* Y18853D02* Y18891D01* Y19353D02* Y19391D01* Y19853D02* Y21679D01* Y22022D02* Y25222D01* Y25565D02* Y27391D01* Y27853D02* Y27891D01* Y28353D02* Y28391D01* Y28853D02* Y28891D01* Y29353D02* Y29391D01* Y29853D02* Y31264D01* Y32869D02* Y34948D01* X46142Y14094D02* X46299Y13937D01* X46170Y3851D02* Y3466D01* Y4355D02* Y4740D01* Y6088D02* Y7492D01* Y7838D02* Y8331D01* Y8678D02* Y9857D01* Y17346D02* Y16521D01* Y21703D02* Y19898D01* Y25246D02* Y21998D01* Y27346D02* Y25542D01* Y31264D02* Y29898D01* Y34993D02* Y32869D01* X46195Y4380D02* X46131Y4316D01* X45653* G03Y4321I181J25* X45673Y4319I20J171* X45846Y4492J173* X45673Y4665I173* X45501Y4492J173* X45502Y4471I172* X45472Y4474I30J180* X45427Y4468J183* X45429Y4492I171J24* X45256Y4665I173* X45083Y4492J173* X45084Y4474I173* X45047Y4478I37J179* X45006Y4473J183* X45007Y4492I171J19* X44835Y4665I172* X44809Y4663J173* X44828Y4744I163J81* X44646Y4927I182* X44513Y4870J183* G01Y4898* G03X44671Y5079I25J181* X44513Y5259I183* G01Y5331* G03X44671Y5512I25J181* X44513Y5693I183* G01Y5729* G03X44606Y5703I93J157* X44789Y5886J183* X44715Y6032I183* X44769Y6161I128J129* X44630Y6339I182* X44769Y6516I43J177* X44587Y6698I182* X44513Y6683J182* G01Y7796* G03X44651Y7972I44J176* X44513Y8149I182* G01Y8628* G03X44631Y8799I64J171* X44513Y8970I182* G01Y9331* G03X44506Y9348I25* G01X44428Y9426* G03X44265Y9590I172J9* G01X44241Y9613* G03X44242Y9630I182J17* X44059Y9812I183* X44043J182* G01X44034Y9820* G03X44035Y9839I172J19* X44001Y9941I173* G01Y10154* G03X44035Y10256I139J102* X44001Y10358I173* G01Y10575* G03X44035Y10677I139J102* X44032Y10707I173* X44053Y10705I27J181* G01X44083Y10675* G03X44256Y10505I173J2* X44429Y10677J172* X44258Y10850I173* G01X44240Y10867* G03X44242Y10888I181J21* X44059Y11070I183* X43900Y10978J182* G01X43876Y11002* G03X43858Y11009I18J18* G01X43803* G03X43665Y11072I138J119* X43527Y11009J182* G01X43410* G03X43272Y11072I138J119* X43134Y11009J182* G01X43016* G03X42878Y11072I138J119* X42740Y11009J182* G01X42622* G03X42484Y11072I138J119* X42346Y11009J182* G01X42228* G03X42091Y11072I137J119* X41953Y11009J182* G01X41855* G03X41693Y11108I162J84* X41510Y10925J183* X41550Y10812I183* G01Y10566* G03X41510Y10453I143J113* X41550Y10340I183* G01Y10215* X41421Y10085* G03X41391Y10015I70J70* G01Y9989* G03X41323Y9862I85J127* X41476Y9709I153* X41540Y9723J153* X41514Y9630I157J93* X41550Y9522I183* G01Y9249* G03X41544Y9207I147J42* X41550Y9165I153* G01Y8895* G03X41514Y8787I147J108* X41550Y8679I183* G01Y8501* G03X41491Y8366I123J135* Y8356I182* X41417Y8371I74J167* X41235Y8189J182* X41417Y8006I182* X41471Y8015J183* Y8012I183J3* X41550Y7862I183* G01Y7825* G03X41476Y7840I74J168* X41294Y7657J183* X41476Y7475I182* X41515Y7479J182* G01X41550Y7444* Y7427* G03X41496Y7436I54J144* X41343Y7283J153* X41454Y7136I153* G01X41550Y7041* Y6512* G03X41491Y6378I123J134* X41550Y6244I182* G01Y6174* G03X41471Y6024I104J150* X41550Y5873I183* G01Y5741* G03X41471Y5591I104J150* X41525Y5461I183* X41451Y5315I109J146* X41455Y5277I183* G01X41434Y5256* Y5255* X41365Y5187* G03X41336Y5116I70J71* G01Y5023* X41320Y5007* G03X41291Y4937I70J70* G01Y4401* X41278Y4389* X41176* G03X41105Y4360J99* G01X41079Y4334* G03X40965Y4385I114J102* X40866Y4349J153* X40748Y4405I118J97* X40595Y4252J153* X40740Y4099I153* G01X40832Y4007* G03X40902Y3978I70J70* G01X41039* G03X41109Y4007J99* G01X41135Y4033* X41160* G03X41230Y4062J99* G01X41258Y4090* X41400* G03X41470Y4119J100* G01X41487Y4137* X41488* X41550Y4199* Y3629* G03X41501Y3504I133J125* X41550Y3379I182* G01Y3239* G03X41501Y3114I133J125* Y3099I182* X41457Y3106I44J146* X41304Y2953J153* X41457Y2800I153* X41529Y2818J153* G01X41550* Y2780* G03X41451Y2618I84J162* X41488Y2508I183* G01X41282Y2301* G03X41274Y2283I17J18* G01Y1550* G03X41235Y1437I143J113* X41264Y1338I182* G01X41131Y1206* X40640* X40537Y1310* Y2116* X40963Y2541* G03X40970Y2559I18J18* G01Y3583* G03X40963Y3600I25* G01X40608Y3955* G03X40591Y3962I17J18* G01X40286* X40222Y4026* Y4517* X40286Y4581* X40866* G03X40884Y4589J25* G01X41002Y4707* G03X41009Y4724I18J17* G01Y5726* G03X41043Y5723I34J180* X41226Y5906J183* X41125Y6069I183* G01X41190Y6133* G03X41226Y6220I88J87* G01Y6417* G03X41190Y6505I124* G01X41009Y6685* Y7598* G03X41002Y7616I25* G01X40773Y7845* Y8690* X41002Y8919* G03X41009Y8937I18J18* G01Y10197* G03X41002Y10215I25* G01X40734Y10483* Y11328* X40798Y11392* X41773* G03X41894Y11343I121J124* X42014Y11392J173* G01X42167* G03X42287Y11343I120J124* X42408Y11392J173* G01X42560* G03X42681Y11343I121J124* X42802Y11392J173* G01X42954* G03X43075Y11343I121J124* X43196Y11392J173* G01X43348* G03X43469Y11343I121J124* X43589Y11392J173* G01X43741* G03X43862Y11343I121J124* X44035Y11516J173* X44001Y11618I173* G01Y11835* G03X44035Y11937I139J102* X44001Y12039I173* G01Y12256* G03X44035Y12358I139J102* X44001Y12460I173* G01Y12677* G03X44035Y12780I139J103* X44001Y12882I173* G01Y13095* G03X44035Y13197I139J102* X44001Y13299I173* G01Y13516* G03X44035Y13618I139J102* X44001Y13720I173* G01Y14266* X44016* G03X44041Y14291J25* G01Y14764* G03X44036Y14778I25* G01X44424* Y13769* X44415Y13760* G03X44386Y13690I70J70* G01Y13397* G03X44415Y13327I99* G01X44424Y13318* Y13163* G03X44296Y13012I25J151* X44449Y12859I153* X44485Y12863J153* G01X44487Y12860* G03X44485Y12831I170J29* X44509Y12743I172* X44429Y12761I80J164* X44247Y12579J182* X44429Y12396I182* X44488Y12406J183* X44534Y12316I169J31* G01Y12164* G03X44485Y12043I123J121* X44534Y11923I172* G01Y11770* G03X44485Y11650I123J120* X44657Y11477I172* X44830Y11650J173* X44781Y11770I173* G01Y11923* G03X44830Y12043I124J120* X44781Y12164I173* G01Y12316* G03X44830Y12437I124J121* X44813Y12513I173* X44862Y12505I49J144* X44871J152* G01X44909Y12467* G03X44906Y12437I170J30* X45079Y12264I173* X45141Y12276J173* X45136Y12240I148J36* X45289Y12087I153* X45314Y12089J153* G01X45330Y12073* G03X45327Y12043I170J30* X45335Y11992I173* X45289Y11999I46J146* X45136Y11846J153* X45289Y11694I153* X45314Y11695J152* G01X45330Y11679* G03X45327Y11650I170J29* X45408Y11503I173* G01Y11402* G03X45327Y11256I92J146* X45353Y11166I173* X45345Y11164I21J182* G01X45251Y11258* G03X45079Y11429I172J2* X44906Y11256J173* X45077Y11083I173* G01X45192Y10968* G03X45374Y10802I182J16* X45408Y10805J182* G01Y10239* G03X45400Y10240I8J182* X45217Y10057J183* X45400Y9875I183* X45408J182* G01Y8646* G03X45310Y8484I84J162* X45408Y8322I182* G01Y5588* X45406Y5586* G03X45394I12J153* X45389J153* Y5591I153J5* X45236Y5744I153* X45083Y5591J153* X45137Y5474I153* G01Y5342* G03X45166Y5272I99* G01X45385Y5053* G03X45408Y5035I71J70* X45415Y5022I25J4* G01X45652Y4785* G03X45669Y4778I17J18* G01X45802* G03Y4764I182J14* X45984Y4581I182* X46166Y4744J183* G01X46195Y4714* Y4380* X46215Y3450D02* Y3896D01* Y6532D02* Y6088D01* Y6951D02* Y6696D01* Y7375D02* Y7116D01* Y8211D02* Y7832D01* Y9052D02* Y8799D01* Y9857D02* Y9216D01* Y16521D02* Y17288D01* Y19956D02* Y21749D01* Y21951D02* Y25293D01* Y25495D02* Y27288D01* Y29956D02* Y31264D01* Y32869D02* Y35038D01* X46245Y21850D02* G03X46063Y22033I182D01* X45881Y21850J183* X46063Y21668I182* X46245Y21850J182* G01Y25394D02* G03X46063Y25576I182D01* X45881Y25394J182* X46063Y25211I182* X46245Y25394J183* G01X46260Y3941D02* Y3450D01* Y6088D02* Y6475D01* Y6753D02* Y6894D01* Y7173D02* Y7317D01* Y7812D02* Y8154D01* Y8856D02* Y8995D01* Y9273D02* Y9857D01* Y17228D02* Y16521D01* Y27228D02* Y20016D01* Y31264D02* Y30016D01* Y35083D02* Y32869D01* X46305Y3450D02* Y3986D01* Y6447D02* Y6088D01* Y6866D02* Y6781D01* Y7289D02* Y7201D01* Y8126D02* Y7772D01* Y8967D02* Y8884D01* Y9857D02* Y9301D01* Y16521D02* Y17198D01* Y20046D02* Y27198D01* Y30046D02* Y31264D01* Y32869D02* Y35561D01* X46339Y11650D02* X46142Y11846D01* X46128* X46339Y12043D02* X46142Y12240D01* X46128* X46339Y12437D02* X46161Y12614D01* Y12638* X46339Y12831D02* X46142Y13028D01* Y13051* X46339Y13224D02* X46142Y13421D01* X46128* X46350Y4031D02* Y3450D01* Y6088D02* Y6434D01* Y6794D02* Y6853D01* Y7214D02* Y7276D01* Y7637D02* Y8113D01* Y8897D02* Y8954D01* Y9314D02* Y9857D01* Y17183D02* Y16521D01* Y27183D02* Y20061D01* Y31264D02* Y30061D01* Y35606D02* Y32869D01* X46395Y3450D02* Y4745D01* Y6432D02* Y6088D01* Y6852D02* Y6806D01* Y7275D02* Y7227D01* Y8100D02* Y7648D01* Y8942D02* Y8898D01* Y9857D02* Y9316D01* Y16521D02* Y17180D01* Y17609D02* Y17635D01* Y18109D02* Y18135D01* Y18609D02* Y18635D01* Y19109D02* Y19135D01* Y19609D02* Y19635D01* Y20064D02* Y27180D01* Y27609D02* Y27635D01* Y28109D02* Y28135D01* Y28609D02* Y28635D01* Y29109D02* Y29135D01* Y29609D02* Y29635D01* Y30064D02* Y31264D01* Y32869D02* Y35651D01* X46398Y14783D02* X46890D01* X47067Y14606* Y14567* X46440Y4762D02* Y3466D01* Y6088D02* Y6443D01* Y7757D02* Y7992D01* Y9305D02* Y9857D01* Y17187D02* Y16521D01* Y17680D02* Y17564D01* Y18180D02* Y18064D01* Y18680D02* Y18564D01* Y19180D02* Y19064D01* Y19680D02* Y19564D01* Y27187D02* Y20057D01* Y27680D02* Y27564D01* Y28180D02* Y28064D01* Y28680D02* Y28564D01* Y29180D02* Y29064D01* Y29680D02* Y29564D01* Y31264D02* Y30057D01* Y35684D02* Y32869D01* X46450Y19690D02* G03X46580Y19872I62J182D01* X46388Y20064I192* X46206Y19934J192* G01X46058Y19786* G03X45955Y19622I80J164* X46058Y19458I183* G01X46144Y19372* X46058Y19286* G03X45955Y19122I80J164* X46058Y18958I183* G01X46144Y18872* X46058Y18786* G03X45955Y18622I80J164* X46058Y18458I183* G01X46144Y18372* X46058Y18286* G03X45955Y18122I80J164* X46058Y17958I183* G01X46144Y17872* X46058Y17786* G03X45955Y17622I80J164* X46058Y17458I183* G01X46206Y17310* G03X46388Y17180I182J62* X46580Y17372J192* X46450Y17554I192* G01X46382Y17622* X46450Y17690* G03X46580Y17872I62J182* X46450Y18054I192* G01X46382Y18122* X46450Y18190* G03X46580Y18372I62J182* X46450Y18554I192* G01X46382Y18622* X46450Y18690* G03X46580Y18872I62J182* X46450Y19054I192* G01X46382Y19122* X46450Y19190* G03X46580Y19372I62J182* X46450Y19554I192* G01X46382Y19622* X46450Y19690* Y29690D02* G03X46580Y29872I62J182D01* X46388Y30064I192* X46206Y29934J192* G01X46058Y29786* G03X45955Y29622I80J164* X46058Y29458I183* G01X46144Y29372* X46058Y29286* G03X45955Y29122I80J164* X46058Y28958I183* G01X46144Y28872* X46058Y28786* G03X45955Y28622I80J164* X46058Y28458I183* G01X46144Y28372* X46058Y28286* G03X45955Y28122I80J164* X46058Y27958I183* G01X46144Y27872* X46058Y27786* G03X45955Y27622I80J164* X46058Y27458I183* G01X46206Y27310* G03X46388Y27180I182J62* X46580Y27372J192* X46450Y27554I192* G01X46382Y27622* X46450Y27690* G03X46580Y27872I62J182* X46450Y28054I192* G01X46382Y28122* X46450Y28190* G03X46580Y28372I62J182* X46450Y28554I192* G01X46382Y28622* X46450Y28690* G03X46580Y28872I62J182* X46450Y29054I192* G01X46382Y29122* X46450Y29190* G03X46580Y29372I62J182* X46450Y29554I192* G01X46382Y29622* X46450Y29690* X46485Y3481D02* Y4762D01* Y6466D02* Y6088D01* Y7943D02* Y7805D01* Y9857D02* Y9282D01* Y16521D02* Y17206D01* Y17538D02* Y17706D01* Y18038D02* Y18206D01* Y18538D02* Y18706D01* Y19038D02* Y19206D01* Y19538D02* Y19706D01* Y20038D02* Y27206D01* Y27538D02* Y27706D01* Y28038D02* Y28206D01* Y28538D02* Y28706D01* Y29038D02* Y29206D01* Y29538D02* Y29706D01* Y30038D02* Y31264D01* Y32869D02* Y35684D01* X46516Y2917D02* X46319Y2720D01* Y2717* X46516Y3311D02* X46319Y3114D01* X46307* X46530Y4762D02* Y3483D01* Y6088D02* Y6513D01* Y7828D02* Y7920D01* Y9235D02* Y9857D01* Y17243D02* Y16521D01* Y17743D02* Y17502D01* Y18243D02* Y18002D01* Y18743D02* Y18502D01* Y19243D02* Y19002D01* Y19743D02* Y19502D01* Y27243D02* Y20002D01* Y27743D02* Y27502D01* Y28243D02* Y28002D01* Y28743D02* Y28502D01* Y29243D02* Y29002D01* Y29743D02* Y29502D01* Y31264D02* Y30002D01* Y35684D02* Y32869D01* X46555Y13051D02* X46597Y13009D01* X46575Y3473D02* Y4191D01* Y4400D02* Y4762D01* Y6637D02* Y6088D01* Y7910D02* Y7838D01* Y9857D02* Y9111D01* Y16521D02* Y17328D01* Y17416D02* Y17828D01* Y17916D02* Y18328D01* Y18416D02* Y18828D01* Y18916D02* Y19328D01* Y19416D02* Y19828D01* Y19916D02* Y27328D01* Y27416D02* Y27828D01* Y27916D02* Y28328D01* Y28416D02* Y28828D01* Y28916D02* Y29328D01* Y29416D02* Y29828D01* Y29916D02* Y31264D01* Y32869D02* Y35684D01* X46620Y4146D02* Y3450D01* Y4762D02* Y4445D01* Y6088D02* Y6571D01* Y7835D02* Y7913D01* Y9177D02* Y9857D01* Y31264D02* Y16521D01* Y35684D02* Y32869D01* X46665Y3450D02* Y4123D01* Y4468D02* Y4762D01* Y6488D02* Y6088D01* Y7929D02* Y7819D01* Y9857D02* Y9260D01* Y16521D02* Y31264D01* Y32869D02* Y35684D01* X46673Y16358D02* Y16386D01* X47236* X47714Y15908* X50448* X50625Y15731* Y15433* X50887Y15171* X52098* X52308Y14961* X52579* X46710Y4113D02* Y3450D01* Y4762D02* Y4477D01* Y6088D02* Y6454D01* Y7786D02* Y7962D01* Y9294D02* Y9857D01* Y21734D02* Y16521D01* Y22915D02* Y21967D01* Y25277D02* Y23148D01* Y31264D02* Y25510D01* Y35684D02* Y32869D01* X46755Y3450D02* Y4115D01* Y4489D02* Y4762D01* Y6437D02* Y6088D01* Y8045D02* Y7703D01* Y9857D02* Y9311D01* Y16521D02* Y21695D01* Y22006D02* Y22876D01* Y23187D02* Y25238D01* Y25549D02* Y31264D01* Y32869D02* Y35684D01* X46760Y11650D02* X46746D01* X46549Y11846* X46760Y13224D02* X46563Y13421D01* X46549* X46760Y13618D02* X46563Y13815D01* X46549* X46800Y4129D02* Y3450D01* Y4762D02* Y4602D01* Y6088D02* Y6432D01* Y7639D02* Y8111D01* Y9316D02* Y9857D01* Y21675D02* Y16521D01* Y22856D02* Y22026D01* Y25218D02* Y23207D01* Y31264D02* Y25569D01* Y35684D02* Y32869D01* X46845Y3460D02* Y4158D01* Y4641D02* Y4762D01* Y6438D02* Y6088D01* Y8025D02* Y7723D01* Y9857D02* Y9310D01* Y16521D02* Y21668D01* Y22033D02* Y22849D01* Y23214D02* Y25211D01* Y25576D02* Y31264D01* Y32869D02* Y35684D01* X46890Y4219D02* Y3478D01* Y4762D02* Y4659D01* Y6088D02* Y6457D01* Y7791D02* Y7957D01* Y9291D02* Y9857D01* Y21672D02* Y16521D01* Y22853D02* Y22029D01* Y25216D02* Y23210D01* Y31264D02* Y25572D01* Y35684D02* Y32869D01* X46933Y2130D02* X47130Y2327D01* X47146* X46933Y2524D02* X46736Y2327D01* X46724* X46935Y4319D02* G03X47106Y4492I2J173D01* X46933Y4665I173* X46760Y4494J173* G01X46743Y4477* G03X46724Y4478I19J182* X46542Y4295J183* X46724Y4113I182* X46907Y4291J182* G01X46935Y4319* Y3484D02* Y4319D01* Y4665D02* Y4762D01* Y6494D02* Y6088D01* Y7926D02* Y7822D01* Y9857D02* Y9254D01* Y16521D02* Y21689D01* Y22012D02* Y22870D01* Y23193D02* Y25232D01* Y25555D02* Y31264D01* Y32869D02* Y35684D01* X46980Y3768D02* Y3613D01* Y4326D02* Y3987D01* Y4762D02* Y4658D01* Y6088D02* Y6620D01* Y7836D02* Y7912D01* Y9128D02* Y9857D01* Y21722D02* Y16521D01* Y22903D02* Y21979D01* Y25265D02* Y23160D01* Y31265D02* Y25522D01* Y35684D02* Y32869D01* X46988Y11850D02* X47181Y11657D01* Y11650* X46988Y12244D02* Y12236D01* X47181Y12043* X47025Y3656D02* Y3726D01* Y4030D02* Y4346D01* Y4638D02* Y4762D01* Y6651D02* Y6088D01* Y7911D02* Y7837D01* Y9857D02* Y9097D01* Y16521D02* Y21797D01* Y21903D02* Y22409D01* Y22473D02* Y22978D01* Y23085D02* Y24772D01* Y24835D02* Y25341D01* Y25447D02* Y31290D01* Y32869D02* Y35684D01* X47033Y21850D02* G03X46850Y22033I183D01* X46668Y21850J183* X46850Y21668I182* X47033Y21850J182* G01Y23031D02* G03X46850Y23214I183D01* X46668Y23031J183* X46850Y22849I182* X47033Y23031J182* G01Y25394D02* G03X46850Y25576I183D01* X46668Y25394J182* X46850Y25211I182* X47033Y25394J183* G01X47070Y3704D02* Y3678D01* Y4387D02* Y4052D01* Y4762D02* Y4597D01* Y6300D02* Y6511D01* Y7826D02* Y7922D01* Y9237D02* Y9448D01* Y9654D02* Y9857D01* Y22318D02* Y16521D01* Y24680D02* Y22564D01* Y31540D02* Y24926D01* Y35684D02* Y32869D01* X47106Y13917D02* X47181Y13843D01* Y13618* X47115Y4060D02* Y4762D01* Y6465D02* Y6346D01* Y7947D02* Y7801D01* Y9402D02* Y9283D01* Y9857D02* Y9700D01* Y16521D02* Y22282D01* Y22600D02* Y24644D01* Y24962D02* Y31540D01* Y32869D02* Y35684D01* X47126Y3504D02* X47161D01* X47354Y3311* X47126Y3878D02* X47181D01* X47354Y3705* X47160Y2174D02* Y2049D01* Y2948D02* Y2479D01* Y4762D02* Y4057D01* Y6369D02* Y6442D01* Y7747D02* Y8001D01* Y9306D02* Y9379D01* Y9723D02* Y9857D01* Y22264D02* Y16521D01* Y24626D02* Y22618D01* Y31540D02* Y24980D01* Y35684D02* Y32869D01* X47181Y11256D02* X46969Y11469D01* Y11476* X47181Y12437D02* X46988Y12630D01* Y12657* X47181Y12831D02* X47020Y12992D01* X47008* X47181Y13224D02* X47005D01* X46790Y13009* X46597* X47205Y2004D02* Y2186D01* Y2468D02* Y2957D01* Y4042D02* Y4762D01* Y6432D02* Y6379D01* Y8111D02* Y7639D01* Y9369D02* Y9316D01* Y9857D02* Y9733D01* Y16521D02* Y17312D01* Y17432D02* Y18312D01* Y18432D02* Y19312D01* Y19432D02* Y22258D01* Y22623D02* Y24621D01* Y24986D02* Y27312D01* Y27432D02* Y28312D01* Y28432D02* Y29312D01* Y29432D02* Y31540D01* Y32869D02* Y35684D01* X47244Y31540D02* G03X47318Y31614J74D01* G01Y32795* G03X47244Y32869I74* G01X45945* G03X45871Y32795J74* G01Y31925* X45669* G03X45595Y31850J75* G01Y31614* G03X45669Y31540I74* G01X45871* Y31339* G03X45945Y31264I74* G01X46969* G03X47043Y31339J75* G01Y31540* X47244* X47250Y2215D02* Y1994D01* Y2980D02* Y2439D01* Y4762D02* Y4012D01* Y6401D02* Y6434D01* Y7661D02* Y8087D01* Y9314D02* Y9347D01* Y9731D02* Y9857D01* Y17238D02* Y16521D01* Y18238D02* Y17506D01* Y19238D02* Y18506D01* Y22264D02* Y19506D01* Y24626D02* Y22618D01* Y27238D02* Y24980D01* Y28238D02* Y27506D01* Y29238D02* Y28506D01* Y31540D02* Y29506D01* Y35684D02* Y32869D01* X47295Y1994D02* Y2294D01* Y2360D02* Y3025D01* Y3947D02* Y4762D01* Y7974D02* Y7774D01* Y9857D02* Y9718D01* Y16521D02* Y17204D01* Y17541D02* Y18204D01* Y18541D02* Y19204D01* Y19541D02* Y22282D01* Y22600D02* Y24645D01* Y24962D02* Y27204D01* Y27541D02* Y28204D01* Y28541D02* Y29204D01* Y29541D02* Y31560D01* Y32849D02* Y35684D01* X47340Y3139D02* Y1994D01* Y3533D02* Y3483D01* Y4762D02* Y3877D01* Y7813D02* Y7935D01* Y9689D02* Y9857D01* Y17186D02* Y16521D01* Y18176D02* Y17568D01* Y19176D02* Y18568D01* Y22318D02* Y19568D01* Y24681D02* Y22563D01* Y27186D02* Y24926D01* Y28176D02* Y27568D01* Y29176D02* Y28568D01* Y35684D02* Y29568D01* X47385Y1994D02* Y3141D01* Y3481D02* Y3535D01* Y3875D02* Y4762D01* Y6118D02* Y6088D01* Y7916D02* Y7832D01* Y9857D02* Y9630D01* Y16521D02* Y17180D01* Y17613D02* Y18131D01* Y18613D02* Y19131D01* Y19613D02* Y22413D01* Y22469D02* Y24775D01* Y24831D02* Y27180D01* Y27613D02* Y28131D01* Y28613D02* Y29131D01* Y29613D02* Y35684D01* X47387Y22441D02* G03X47205Y22623I182D01* X47022Y22441J182* X47205Y22258I183* X47387Y22441J183* G01Y24803D02* G03X47205Y24986I182D01* X47022Y24803J183* X47205Y24621I183* X47387Y24803J182* G01X47399Y9173D02* G03X47429Y9170I30J170D01* X47602Y9343J173* X47431Y9515I173* G01X47403Y9543* G03Y9551I183J8* X47220Y9734I183* X47038Y9551J183* X47220Y9369I182* X47228J182* G01X47257Y9341* G03X47259Y9312I172J2* X47220Y9316I39J178* X47038Y9134J182* X47042Y9094I182* X47010Y9098I34J169* G01X46980Y9128* G03Y9134I183J6* X46797Y9316I183* X46615Y9134J182* X46619Y9095I182* X46589Y9098I32J170* G01X46560Y9126* G03Y9134I182J8* X46378Y9316I182* X46195Y9134J182* X46378Y8951I183* X46386Y8952J183* G01X46414Y8923* G03X46417Y8895I173J2* X46378Y8899I39J178* X46195Y8717J182* X46201Y8674I183* X46171Y8677I32J170* G01X46143Y8705* G03Y8717I182J12* X45961Y8899I182* X45778Y8717J182* X45961Y8534I183* X45965J183* G01X45997Y8502* G03X46169Y8331I172J2* X46200Y8334J173* X46195Y8293I178J41* X46378Y8111I183* X46384J182* G01X46414Y8081* G03X46587Y7910I173J2* X46759Y8083J173* X46756Y8116I172* X46797Y8111I41J177* X46805J182* G01X46835Y8081* G03X47008Y7910I173J2* X47181Y8083J173* X47177Y8116I173* X47220Y8111I43J177* X47226J182* G01X47257Y8081* G03X47429Y7910I172J2* X47602Y8083J173* X47431Y8255I173* G01X47403Y8284* G03Y8293I183J9* X47398Y8334I183* X47429Y8331I31J170* X47602Y8504J173* X47431Y8677I173* G01X47403Y8705* G03Y8717I183J12* X47399Y8755I183* X47429Y8753I30J170* X47602Y8925J172* X47431Y9098I173* G01X47403Y9126* G03Y9134I183J8* X47399Y9173I183* G01X47430Y3156D02* Y1994D01* Y3550D02* Y3466D01* Y4762D02* Y3860D01* Y6088D02* Y6232D01* Y6578D02* Y6649D01* Y6995D02* Y7070D01* Y7417D02* Y7492D01* Y7838D02* Y7910D01* Y8256D02* Y8331D01* Y8678D02* Y8753D01* Y9099D02* Y9170D01* Y9516D02* Y9857D01* Y12905D02* Y12363D01* Y14206D02* Y13360D01* Y17184D02* Y16521D01* Y18086D02* Y17658D01* Y19086D02* Y18658D01* Y27184D02* Y19658D01* Y28086D02* Y27658D01* Y29086D02* Y28658D01* Y35684D02* Y29658D01* X47475Y1999D02* Y3188D01* Y3434D02* Y3581D01* Y3828D02* Y4762D01* Y6239D02* Y6088D01* Y6656D02* Y6572D01* Y7078D02* Y6989D01* Y7499D02* Y7411D01* Y7916D02* Y7832D01* Y8338D02* Y8249D01* Y8759D02* Y8670D01* Y9176D02* Y9092D01* Y9857D02* Y9509D01* Y12395D02* Y12873D01* Y13315D02* Y14251D01* Y16521D02* Y17201D01* Y17703D02* Y18041D01* Y18704D02* Y19032D01* Y19708D02* Y21768D01* Y21933D02* Y25311D01* Y25476D02* Y27201D01* Y27703D02* Y28041D01* Y28704D02* Y29032D01* Y29708D02* Y35684D01* X47520Y3262D02* Y2044D01* Y3656D02* Y3360D01* Y4762D02* Y3753D01* Y6088D02* Y6259D01* Y6552D02* Y6676D01* Y6970D02* Y7097D01* Y7391D02* Y7519D01* Y7812D02* Y7936D01* Y8229D02* Y8357D01* Y8651D02* Y8778D01* Y9072D02* Y9196D01* Y9489D02* Y9857D01* Y11931D02* Y11375D01* Y12858D02* Y12410D01* Y14296D02* Y13270D01* Y17232D02* Y16521D01* Y17991D02* Y17757D01* Y18975D02* Y18761D01* Y21711D02* Y19765D01* Y25254D02* Y21990D01* Y27232D02* Y25533D01* Y27991D02* Y27757D01* Y28975D02* Y28761D01* Y35684D02* Y29765D01* X47551Y13028D02* Y13098D01* X47224Y13425* X46909* X47565Y2797D02* Y4762D01* Y6299D02* Y6088D01* Y6716D02* Y6512D01* Y7138D02* Y6929D01* Y7559D02* Y7351D01* Y7976D02* Y7772D01* Y8397D02* Y8189D01* Y8819D02* Y8610D01* Y9236D02* Y9032D01* Y9857D02* Y9449D01* Y11330D02* Y12068D01* Y12412D02* Y12855D01* Y13225D02* Y14341D01* Y16521D02* Y17297D01* Y17793D02* Y17951D01* Y18793D02* Y18947D01* Y19793D02* Y21683D01* Y22018D02* Y25226D01* Y25561D02* Y27297D01* Y27793D02* Y27951D01* Y28793D02* Y28947D01* Y29793D02* Y35684D01* X47610Y4762D02* Y2850D01* Y6088D02* Y9857D01* Y12078D02* Y11285D01* Y12865D02* Y12402D01* Y14386D02* Y13190D01* Y17350D02* Y16521D01* Y17906D02* Y17838D01* Y18906D02* Y18838D01* Y21670D02* Y19838D01* Y25213D02* Y22031D01* Y27350D02* Y25574D01* Y27906D02* Y27838D01* Y28906D02* Y28838D01* Y35684D02* Y29838D01* X47638Y1575D02* X48091D01* X48248Y1417* Y1378* X47638Y1772D02* Y1575D01* X47655Y2879D02* Y4762D01* Y9857D02* Y6088D01* Y11240D02* Y12102D01* Y12378D02* Y12890D01* Y13165D02* Y15179D01* Y16521D02* Y17395D01* Y18349D02* Y18395D01* Y19349D02* Y19395D01* Y19883D02* Y21669D01* Y22032D02* Y25212D01* Y25575D02* Y27395D01* Y28349D02* Y28395D01* Y29349D02* Y29395D01* Y29883D02* Y35684D01* X47700Y4762D02* Y2891D01* Y6088D02* Y6731D01* Y6914D02* Y7153D01* Y7335D02* Y7574D01* Y7757D02* Y7991D01* Y8174D02* Y8413D01* Y8595D02* Y8834D01* Y9017D02* Y9857D01* Y12153D02* Y11195D01* Y12940D02* Y12328D01* Y15224D02* Y13115D01* Y17440D02* Y16521D01* Y18440D02* Y18304D01* Y19440D02* Y19304D01* Y21679D02* Y19928D01* Y25222D02* Y22022D01* Y27440D02* Y25565D01* Y28440D02* Y28304D01* Y29440D02* Y29304D01* Y35684D02* Y29928D01* X47724Y2327D02* Y2062D01* X47638Y1975* Y1772* X47745Y2892D02* Y4762D01* Y6683D02* Y6088D01* Y7104D02* Y6963D01* Y7526D02* Y7384D01* Y7943D02* Y7805D01* Y8364D02* Y8222D01* Y8786D02* Y8644D01* Y9857D02* Y9065D01* Y11150D02* Y15269D01* Y16521D02* Y17470D01* Y18278D02* Y18474D01* Y19262D02* Y19478D01* Y20001D02* Y21703D01* Y21998D02* Y25246D01* Y25541D02* Y27470D01* Y28278D02* Y28474D01* Y29262D02* Y29478D01* Y30001D02* Y35684D01* X47790Y4762D02* Y2880D01* Y6088D02* Y6660D01* Y6986D02* Y7081D01* Y7407D02* Y7502D01* Y7828D02* Y7920D01* Y8246D02* Y8341D01* Y8667D02* Y8762D01* Y9088D02* Y9857D01* Y15314D02* Y11127D01* Y17517D02* Y16521D01* Y18521D02* Y18231D01* Y19525D02* Y19215D01* Y21750D02* Y20038D01* Y25293D02* Y21951D01* Y27517D02* Y25494D01* Y28521D02* Y28231D01* Y29525D02* Y29215D01* Y35684D02* Y30038D01* X47820Y21850D02* G03X47638Y22033I182D01* X47455Y21850J183* X47638Y21668I183* X47820Y21850J182* G01Y25394D02* G03X47638Y25576I182D01* X47455Y25394J182* X47638Y25211I183* X47820Y25394J183* G01X47835Y2860D02* Y4751D01* Y6651D02* Y6088D01* Y7072D02* Y6995D01* Y7493D02* Y7416D01* Y7910D02* Y7838D01* Y8332D02* Y8255D01* Y8753D02* Y8676D01* Y9857D02* Y9097D01* Y11127D02* Y15329D01* Y16521D02* Y17575D01* Y18169D02* Y18575D01* Y19169D02* Y19575D01* Y20057D02* Y27575D01* Y28169D02* Y28575D01* Y29169D02* Y29575D01* Y30057D02* Y35684D01* X47880Y4749D02* Y2876D01* Y6088D02* Y6570D01* Y7835D02* Y7913D01* Y9178D02* Y9857D01* Y15213D02* Y11127D01* Y17620D02* Y16521D01* Y18620D02* Y18124D01* Y19620D02* Y19124D01* Y27620D02* Y20064D01* Y28620D02* Y28124D01* Y29620D02* Y29124D01* Y31631D02* Y30064D01* Y35684D02* Y31834D01* X47925Y2950D02* Y3278D01* Y3344D02* Y4459D01* Y4525D02* Y4749D01* Y6488D02* Y6088D01* Y7929D02* Y7819D01* Y9857D02* Y9260D01* Y11127D02* Y15167D01* Y16521D02* Y17665D01* Y18079D02* Y18665D01* Y19079D02* Y19665D01* Y20061D02* Y22331D01* Y22551D02* Y24694D01* Y24913D02* Y27665D01* Y28079D02* Y28665D01* Y29079D02* Y29665D01* Y30061D02* Y31584D01* Y31880D02* Y35684D01* X47950Y19690D02* G03X48080Y19872I62J182D01* X47888Y20064I192* X47706Y19934J192* G01X47565Y19793* G03X47471Y19699I73J167* G01X47326Y19554* G03X47195Y19372I62J182* X47326Y19190I193* G01X47468Y19048* G03X47572Y18944I170J66* G01X47644Y18872* X47558Y18786* G03X47474Y18702I80J164* G01X47326Y18554* G03X47195Y18372I62J182* X47326Y18190I193* G01X47484Y18032* G03X47540Y17976I154J98* G01X47644Y17872* X47549Y17778* G03X47478Y17707I89J160* G01X47326Y17554* G03X47195Y17372I62J182* X47388Y17180I193* X47570Y17310J192* G01X47711Y17451* G03X47805Y17545I73J167* G01X47950Y17690* G03X48080Y17872I62J182* X47950Y18054I192* G01X47808Y18196* G03X47704Y18300I170J66* G01X47632Y18372* X47718Y18458* G03X47802Y18542I80J164* G01X47950Y18690* G03X48080Y18872I62J182* X47950Y19054I192* G01X47792Y19212* G03X47736Y19268I154J98* G01X47632Y19372* X47726Y19466* G03X47797Y19537I88J160* G01X47950Y19690* Y29690D02* G03X48080Y29872I62J182D01* X47888Y30064I192* X47706Y29934J192* G01X47565Y29793* G03X47471Y29699I73J167* G01X47326Y29554* G03X47195Y29372I62J182* X47326Y29190I193* G01X47468Y29048* G03X47572Y28944I170J66* G01X47644Y28872* X47558Y28786* G03X47474Y28702I80J164* G01X47326Y28554* G03X47195Y28372I62J182* X47326Y28190I193* G01X47484Y28032* G03X47540Y27976I154J98* G01X47644Y27872* X47549Y27778* G03X47478Y27707I89J160* G01X47326Y27554* G03X47195Y27372I62J182* X47388Y27180I193* X47570Y27310J192* G01X47711Y27451* G03X47805Y27545I73J167* G01X47950Y27690* G03X48080Y27872I62J182* X47950Y28054I192* G01X47808Y28196* G03X47704Y28300I170J66* G01X47632Y28372* X47718Y28458* G03X47802Y28542I80J164* G01X47950Y28690* G03X48080Y28872I62J182* X47950Y29054I192* G01X47792Y29212* G03X47736Y29268I154J98* G01X47632Y29372* X47726Y29466* G03X47797Y29537I88J160* G01X47950Y29690* X47970Y4373D02* Y3431D01* Y4749D02* Y4612D01* Y6088D02* Y6454D01* Y7786D02* Y7962D01* Y9294D02* Y9857D01* Y15143D02* Y11127D01* Y17698D02* Y16521D01* Y18698D02* Y18046D01* Y19698D02* Y19046D01* Y22289D02* Y20046D01* Y24651D02* Y22593D01* Y27698D02* Y24955D01* Y28698D02* Y28046D01* Y29698D02* Y29046D01* Y31560D02* Y30046D01* Y35684D02* Y31904D01* X48015Y3464D02* Y4339D01* Y4645D02* Y4749D01* Y6437D02* Y6088D01* Y8045D02* Y7703D01* Y9857D02* Y9311D01* Y11127D02* Y15133D01* Y16521D02* Y17728D01* Y18016D02* Y18728D01* Y19016D02* Y19728D01* Y20016D02* Y22267D01* Y22615D02* Y24629D01* Y24977D02* Y27728D01* Y28016D02* Y28728D01* Y29016D02* Y29728D01* Y30016D02* Y31551D01* Y31914D02* Y35684D01* X48060Y4323D02* Y3480D01* Y4749D02* Y4661D01* Y6088D02* Y6432D01* Y7639D02* Y8111D01* Y9316D02* Y9857D01* Y15135D02* Y11127D01* Y17786D02* Y16521D01* Y18786D02* Y17958D01* Y19786D02* Y18958D01* Y22259D02* Y19958D01* Y24621D02* Y22623D01* Y27786D02* Y24985D01* Y28786D02* Y27958D01* Y29786D02* Y28958D01* Y31552D02* Y29958D01* Y35684D02* Y31913D01* X48094Y2917D02* X48287Y3110D01* X48307* X48105Y3483D02* Y4307D01* Y4664D02* Y4749D01* Y6348D02* Y6088D01* Y8025D02* Y7723D01* Y9857D02* Y9400D01* Y11127D02* Y15148D01* Y16521D02* Y22262D01* Y22620D02* Y24624D01* Y24982D02* Y31565D01* Y31899D02* Y35684D01* X48123Y4289D02* G03X48305Y4113I182J6D01* X48488Y4295J182* X48305Y4478I183* X48285Y4477J183* G01X48267Y4494* G03X48094Y4665I173J2* X47922Y4492J173* X48093Y4319I172* G01X48123Y4289* X48150Y4199D02* Y3507D01* Y4749D02* Y4656D01* Y6088D02* Y6279D01* Y7792D02* Y7956D01* Y9469D02* Y9857D01* Y15176D02* Y11127D01* Y22277D02* Y16521D01* Y24639D02* Y22605D01* Y31594D02* Y24968D01* Y35684D02* Y31871D01* X48195Y3608D02* Y4150D01* Y4632D02* Y4749D01* Y6249D02* Y6088D01* Y7926D02* Y7822D01* Y9857D02* Y9499D01* Y11127D02* Y11560D01* Y13821D02* Y15234D01* Y16521D02* Y22307D01* Y22575D02* Y24669D01* Y24937D02* Y31651D01* Y31813D02* Y35684D01* X48214Y31732D02* G03X48031Y31915I183D01* X47849Y31732J183* X48031Y31550I182* X48214Y31732J182* G01X48240Y4125D02* Y3641D01* Y4749D02* Y4585D01* Y6088D02* Y6235D01* Y7836D02* Y7912D01* Y9513D02* Y9857D01* Y11511D02* Y11127D01* Y15329D02* Y13866D01* Y22372D02* Y16521D01* Y24735D02* Y22509D01* Y31307D02* Y24872D01* Y35684D02* Y33181D01* X48253Y22441D02* G03X48071Y22623I182D01* X47888Y22441J182* X48071Y22258I183* X48253Y22441J183* G01Y24803D02* G03X48071Y24986I182D01* X47888Y24803J183* X48071Y24621I183* X48253Y24803J182* G01X48285Y3655D02* Y4114D01* Y4477D02* Y4749D01* Y6214D02* Y6088D01* Y7911D02* Y7837D01* Y9857D02* Y9534D01* Y11127D02* Y11483D01* Y13911D02* Y15198D01* Y16521D02* Y21734D01* Y21967D02* Y22915D01* Y23148D02* Y25277D01* Y25511D02* Y31268D01* Y33220D02* Y35684D01* X48307Y1949D02* X48335D01* X48516Y2130* X48307Y2323D02* X48315D01* X48516Y2524* X48307Y3504D02* X48287D01* X48094Y3311* X48330Y4115D02* Y3655D01* Y4749D02* Y4476D01* Y7826D02* Y7922D01* Y9655D02* Y9857D01* Y11438D02* Y11127D01* Y15159D02* Y13956D01* Y21695D02* Y16521D01* Y22876D02* Y22006D01* Y25238D02* Y23187D01* Y31264D02* Y25549D01* Y35684D02* Y33224D01* X48343Y12831D02* X48539Y13028D01* X48551* X48343Y13224D02* X48539Y13421D01* X48551* X48375Y3641D02* Y4127D01* Y4464D02* Y4752D01* Y7947D02* Y7801D01* Y9857D02* Y9700D01* Y11127D02* Y11393D01* Y14001D02* Y15140D01* Y16521D02* Y21675D01* Y22026D02* Y22856D01* Y23207D02* Y25218D01* Y25569D02* Y31264D01* Y33224D02* Y35684D01* X48420Y4153D02* Y3607D01* Y4770D02* Y4437D01* Y7747D02* Y8001D01* Y9723D02* Y9857D01* Y11348D02* Y11172D01* Y15133D02* Y14046D01* Y21668D02* Y16521D01* Y22849D02* Y22033D01* Y25211D02* Y23214D01* Y31264D02* Y25576D01* Y35684D02* Y33224D01* X48465Y3476D02* Y4207D01* Y4383D02* Y4778D01* Y6432D02* Y6383D01* Y8105D02* Y7643D01* Y9365D02* Y9316D01* Y9857D02* Y9733D01* Y11217D02* Y11303D01* Y14091D02* Y15137D01* Y16521D02* Y21672D01* Y22028D02* Y22853D01* Y23210D02* Y25216D01* Y25572D02* Y31264D01* Y33224D02* Y35684D01* X48476Y37185D02* X49016D01* X48510Y4778D02* Y3484D01* Y6377D02* Y6434D01* Y7637D02* Y8113D01* Y9314D02* Y9371D01* Y9731D02* Y9857D01* Y15153D02* Y14569D01* Y21689D02* Y16521D01* Y22870D02* Y22012D01* Y25232D02* Y23193D01* Y31264D02* Y25555D01* Y35684D02* Y33224D01* X48555Y3479D02* Y4778D01* Y6448D02* Y6363D01* Y7974D02* Y7774D01* Y9385D02* Y9300D01* Y9857D02* Y9718D01* Y14614D02* Y15187D01* Y16521D02* Y21722D01* Y21979D02* Y22903D01* Y23160D02* Y25265D01* Y25522D02* Y31264D01* Y33224D02* Y35684D01* X48600Y4778D02* Y3462D01* Y6335D02* Y6476D01* Y7813D02* Y7935D01* Y9272D02* Y9413D01* Y9689D02* Y9857D01* Y15263D02* Y14631D01* Y21798D02* Y16521D01* Y22979D02* Y21903D01* Y25341D02* Y23084D01* Y31264D02* Y25446D01* Y35656D02* Y33224D01* X48608Y21850D02* G03X48425Y22033I183D01* X48243Y21850J183* X48425Y21668I182* X48608Y21850J182* G01Y23031D02* G03X48425Y23214I183D01* X48243Y23031J183* X48425Y22849I182* X48608Y23031J182* G01Y25394D02* G03X48425Y25576I183D01* X48243Y25394J182* X48425Y25211I182* X48608Y25394J183* G01X48645Y3425D02* Y4778D01* Y6118D02* Y6088D01* Y6536D02* Y6275D01* Y7916D02* Y7832D01* Y9473D02* Y9212D01* Y9857D02* Y9630D01* Y14631D02* Y15329D01* Y16521D02* Y31264D01* Y33224D02* Y35414D01* X48690Y4778D02* Y3411D01* Y6088D02* Y6647D01* Y7838D02* Y7910D01* Y9101D02* Y9857D01* Y15329D02* Y14631D01* Y31264D02* Y16521D01* Y35369D02* Y33224D01* X48735Y3411D02* Y4778D01* Y6531D02* Y6088D01* Y7916D02* Y7832D01* Y9857D02* Y9217D01* Y14631D02* Y15329D01* Y16521D02* Y17255D01* Y17489D02* Y17755D01* Y17989D02* Y18255D01* Y18489D02* Y18755D01* Y18989D02* Y19255D01* Y19489D02* Y19755D01* Y19989D02* Y27255D01* Y27489D02* Y27755D01* Y27989D02* Y28255D01* Y28489D02* Y28755D01* Y28989D02* Y29255D01* Y29489D02* Y29755D01* Y29989D02* Y31264D01* Y33224D02* Y35330D01* X48760Y13224D02* X48957Y13421D01* X48970* X48760Y13618D02* X48957Y13815D01* X48970* X48780Y4420D02* Y3411D01* Y4778D02* Y4564D01* Y6088D02* Y6475D01* Y7812D02* Y7936D01* Y9273D02* Y9857D01* Y15329D02* Y14631D01* Y17213D02* Y16521D01* Y17713D02* Y17531D01* Y18213D02* Y18031D01* Y18713D02* Y18531D01* Y19213D02* Y19031D01* Y19713D02* Y19531D01* Y27213D02* Y20031D01* Y27713D02* Y27531D01* Y28213D02* Y28031D01* Y28713D02* Y28531D01* Y29213D02* Y29031D01* Y29713D02* Y29531D01* Y31264D02* Y30031D01* Y35329D02* Y33224D01* X48825Y3442D02* Y4361D01* Y4623D02* Y4778D01* Y6447D02* Y6088D01* Y7976D02* Y7772D01* Y9857D02* Y9301D01* Y14631D02* Y15329D01* Y16521D02* Y17190D01* Y17554D02* Y17690D01* Y18054D02* Y18190D01* Y18554D02* Y18690D01* Y19054D02* Y19190D01* Y19554D02* Y19690D01* Y20054D02* Y27190D01* Y27554D02* Y27690D01* Y28054D02* Y28190D01* Y28554D02* Y28690D01* Y29054D02* Y29190D01* Y29554D02* Y29690D01* Y30054D02* Y31264D01* Y33224D02* Y35329D01* X48870Y4333D02* Y3470D01* Y4778D02* Y4651D01* Y6088D02* Y6434D01* Y6816D02* Y6853D01* Y7238D02* Y7276D01* Y7659D02* Y8089D01* Y8897D02* Y8932D01* Y9314D02* Y9857D01* Y15329D02* Y14631D01* Y17181D02* Y16521D01* Y17646D02* Y17598D01* Y18146D02* Y18098D01* Y18646D02* Y18598D01* Y19146D02* Y19098D01* Y19646D02* Y19598D01* Y27181D02* Y20064D01* Y27646D02* Y27598D01* Y28146D02* Y28098D01* Y28646D02* Y28598D01* Y29146D02* Y29098D01* Y29646D02* Y29598D01* Y31264D02* Y30064D01* Y35329D02* Y33224D01* X48915Y3482D02* Y4321D01* Y4663D02* Y4778D01* Y6433D02* Y6088D01* Y6852D02* Y6796D01* Y7275D02* Y7215D01* Y8112D02* Y7638D01* Y8952D02* Y8898D01* Y9857D02* Y9316D01* Y14631D02* Y15329D01* Y16521D02* Y17182D01* Y20062D02* Y27182D01* Y30062D02* Y31264D01* Y33224D02* Y35310D01* X48937Y2917D02* X49134Y2720D01* X49150* X48937Y3311D02* X49134Y3114D01* X49150* X48960Y4295D02* Y3482D01* Y4778D02* Y4663D01* Y6088D02* Y6443D01* Y6786D02* Y6862D01* Y7205D02* Y7285D01* Y7757D02* Y8122D01* Y8888D02* Y8962D01* Y9305D02* Y9857D01* Y15329D02* Y14631D01* Y17194D02* Y16521D01* Y27194D02* Y20050D01* Y31264D02* Y30050D01* Y35310D02* Y33224D01* X48967Y4287D02* G03X49150Y4113I183J8D01* X49332Y4295J182* X49150Y4478I182* X49127Y4476J183* G01X49110Y4494* G03X48937Y4665I173J2* X48764Y4492J173* X48935Y4319I173* G01X48967Y4287* X49005Y3470D02* Y4184D01* Y4651D02* Y4778D01* Y6467D02* Y6088D01* Y6886D02* Y6762D01* Y7309D02* Y7181D01* Y8146D02* Y7805D01* Y8986D02* Y8864D01* Y9857D02* Y9281D01* Y14631D02* Y15329D01* Y16521D02* Y17220D01* Y20025D02* Y27220D01* Y30025D02* Y31264D01* Y33224D02* Y35310D01* X49016Y35610D02* Y35764D01* X49075Y35823* Y35830* X49016Y36043D02* Y35890D01* X49075Y35830* X49016Y36398D02* Y36614D01* Y36831* X49050Y4142D02* Y3442D01* Y4778D02* Y4623D01* Y6088D02* Y6514D01* Y6715D02* Y6933D01* Y7134D02* Y7356D01* Y7829D02* Y8193D01* Y8817D02* Y9033D01* Y9234D02* Y9857D01* Y15232D02* Y14631D01* Y17269D02* Y16521D01* Y21768D02* Y19975D01* Y25311D02* Y21933D01* Y27269D02* Y25477D01* Y31264D02* Y29975D01* Y35310D02* Y33224D01* X49095Y3411D02* Y4121D01* Y4562D02* Y4778D01* Y7493D02* Y6088D01* Y8332D02* Y7838D01* Y9857D02* Y8676D01* Y14631D02* Y15175D01* Y16521D02* Y17335D01* Y19909D02* Y21711D01* Y21990D02* Y25254D01* Y25533D02* Y27335D01* Y29909D02* Y31264D01* Y33224D02* Y35310D01* X49140Y4113D02* Y3411D01* Y4778D02* Y4478D01* Y6088D02* Y7405D01* Y7835D02* Y8335D01* Y8768D02* Y9857D01* Y15148D02* Y14631D01* Y17380D02* Y16521D01* Y21683D02* Y19864D01* Y25226D02* Y22018D01* Y27380D02* Y25561D01* Y31264D02* Y29864D01* Y35310D02* Y33224D01* X49185Y3411D02* Y4116D01* Y4474D02* Y4778D01* Y7329D02* Y6088D01* Y8350D02* Y7819D01* Y9857D02* Y8845D01* Y14631D02* Y15135D01* Y16521D02* Y17425D01* Y17819D02* Y17925D01* Y18319D02* Y18425D01* Y18819D02* Y18925D01* Y19319D02* Y19425D01* Y19819D02* Y21670D01* Y22031D02* Y25213D01* Y25574D02* Y27425D01* Y27819D02* Y27925D01* Y28319D02* Y28425D01* Y28819D02* Y28925D01* Y29319D02* Y29425D01* Y29819D02* Y31264D01* Y33224D02* Y35329D01* X49218Y19458D02* G03X49320Y19622I80J164D01* X49218Y19786I182* G01X49070Y19934* G03X48888Y20064I182J62* X48695Y19872J192* X48826Y19690I193* G01X48894Y19622* X48826Y19554* G03X48695Y19372I62J182* X48826Y19190I193* G01X48894Y19122* X48826Y19054* G03X48695Y18872I62J182* X48826Y18690I193* G01X48894Y18622* X48826Y18554* G03X48695Y18372I62J182* X48826Y18190I193* G01X48894Y18122* X48826Y18054* G03X48695Y17872I62J182* X48826Y17690I193* G01X48894Y17622* X48826Y17554* G03X48695Y17372I62J182* X48888Y17180I193* X49070Y17310J192* G01X49218Y17458* G03X49320Y17622I80J164* X49218Y17786I182* G01X49132Y17872* X49218Y17958* G03X49320Y18122I80J164* X49218Y18286I182* G01X49132Y18372* X49218Y18458* G03X49320Y18622I80J164* X49218Y18786I182* G01X49132Y18872* X49218Y18958* G03X49320Y19122I80J164* X49218Y19286I182* G01X49132Y19372* X49218Y19458* Y29458D02* G03X49320Y29622I80J164D01* X49218Y29786I182* G01X49070Y29934* G03X48888Y30064I182J62* X48695Y29872J192* X48826Y29690I193* G01X48894Y29622* X48826Y29554* G03X48695Y29372I62J182* X48826Y29190I193* G01X48894Y29122* X48826Y29054* G03X48695Y28872I62J182* X48826Y28690I193* G01X48894Y28622* X48826Y28554* G03X48695Y28372I62J182* X48826Y28190I193* G01X48894Y28122* X48826Y28054* G03X48695Y27872I62J182* X48826Y27690I193* G01X48894Y27622* X48826Y27554* G03X48695Y27372I62J182* X48888Y27180I193* X49070Y27310J192* G01X49218Y27458* G03X49320Y27622I80J164* X49218Y27786I182* G01X49132Y27872* X49218Y27958* G03X49320Y28122I80J164* X49218Y28286I182* G01X49132Y28372* X49218Y28458* G03X49320Y28622I80J164* X49218Y28786I182* G01X49132Y28872* X49218Y28958* G03X49320Y29122I80J164* X49218Y29286I182* G01X49132Y29372* X49218Y29458* X49230Y4131D02* Y3427D01* Y4778D02* Y4459D01* Y6088D02* Y7295D01* Y7786D02* Y8384D01* Y8878D02* Y9857D01* Y15133D02* Y14631D01* Y17465D02* Y16521D01* Y17965D02* Y17780D01* Y18465D02* Y18280D01* Y18965D02* Y18780D01* Y19465D02* Y19280D01* Y21669D02* Y19780D01* Y25212D02* Y22032D01* Y27465D02* Y25575D01* Y27965D02* Y27780D01* Y28465D02* Y28280D01* Y28965D02* Y28780D01* Y29465D02* Y29280D01* Y31264D02* Y29780D01* Y35329D02* Y33224D01* X49275Y3462D02* Y4163D01* Y4428D02* Y4778D01* Y7279D02* Y6088D01* Y8467D02* Y7702D01* Y9857D02* Y8895D01* Y14631D02* Y15143D01* Y16521D02* Y17502D01* Y17742D02* Y18002D01* Y18242D02* Y18502D01* Y18742D02* Y19002D01* Y19242D02* Y19502D01* Y19742D02* Y21679D01* Y22022D02* Y25222D01* Y25565D02* Y27502D01* Y27742D02* Y28002D01* Y28242D02* Y28502D01* Y28742D02* Y29002D01* Y29242D02* Y29502D01* Y29742D02* Y31264D01* Y33224D02* Y35342D01* X49311Y8534D02* G03X49315I4J183D01* X49497Y8717J183* X49315Y8899I182* X49132Y8717J182* X49133Y8705I183* G01X49104Y8677* G03X49075Y8674I2J173* X49080Y8717I177J43* X48898Y8899I182* X48859Y8895J182* X48862Y8923I170J30* G01X48890Y8952* G03X48898Y8951I8J182* X49080Y9134J183* X48898Y9316I182* X48715Y9134J182* Y9126I183* G01X48687Y9098* G03X48659Y9095I2J173* X48663Y9134I179J39* X48480Y9316I183* X48437Y9311J182* X48440Y9341I169J32* G01X48469Y9369* G03X48480I11J182* X48663Y9551J182* X48480Y9734I183* X48298Y9551J183* Y9547I182* G01X48266Y9515* G03X48095Y9343I2J172* X48098Y9312I173* X48057Y9316I41J178* X47875Y9134J182* Y9128I182* G01X47845Y9098* G03X47674Y8925I1J173* X47846Y8753I172* X47879Y8756J172* X47875Y8717I178J39* Y8707I182* G01X47845Y8677* G03X47674Y8504I1J173* X47846Y8331I172* X47879Y8334J173* X47875Y8293I178J41* Y8286I182* G01X47845Y8255* G03X47674Y8083I1J172* X47846Y7910I172* X48019Y8081J173* G01X48049Y8111* G03X48057I8J182* X48098Y8116J182* X48095Y8083I170J33* X48268Y7910I173* X48440Y8081J173* G01X48471Y8111* G03X48480I9J182* X48519Y8115J182* X48516Y8083I170J32* X48689Y7910I173* X48862Y8081J173* G01X48892Y8111* G03X48898I6J182* X49080Y8293J182* X49076Y8334I182* X49106Y8331I30J170* X49279Y8502J173* G01X49311Y8534* X49320Y4230D02* Y3479D01* Y4778D02* Y4361D01* Y6088D02* Y7274D01* Y7639D02* Y8534D01* Y8899D02* Y9857D01* Y15167D02* Y14631D01* Y17612D02* Y16521D01* Y18112D02* Y17632D01* Y18612D02* Y18132D01* Y19112D02* Y18632D01* Y19612D02* Y19132D01* Y21703D02* Y19632D01* Y25246D02* Y21998D01* Y27612D02* Y25541D01* Y28112D02* Y27632D01* Y28612D02* Y28132D01* Y29112D02* Y28632D01* Y29612D02* Y29132D01* Y31264D02* Y29632D01* Y35387D02* Y33224D01* X49331Y31264D02* G03X49405Y31339J75D01* G01Y33150* G03X49331Y33224I74* G01X48307* G03X48233Y33150J74* G01Y31339* G03X48307Y31264I74* G01X49331* X49358Y2524D02* X49555Y2327D01* X49567* X49365Y3484D02* Y4778D01* Y7281D02* Y6088D01* Y8541D02* Y7632D01* Y9857D02* Y8892D01* Y14631D02* Y15180D01* Y16521D02* Y21750D01* Y21951D02* Y25293D01* Y25494D02* Y31273D01* Y33215D02* Y35629D01* X49395Y21850D02* G03X49213Y22033I182D01* X49030Y21850J183* X49213Y21668I183* X49395Y21850J182* G01Y25394D02* G03X49213Y25576I182D01* X49030Y25394J182* X49213Y25211I183* X49395Y25394J183* G01X49410Y4778D02* Y3476D01* Y6088D02* Y7301D01* Y7612D02* Y8561D01* Y8872D02* Y9857D01* Y15150D02* Y14631D01* Y35674D02* Y16521D01* X49455Y3454D02* Y4778D01* Y7340D02* Y6088D01* Y8600D02* Y7574D01* Y9857D02* Y8834D01* Y14631D02* Y15136D01* Y16521D02* Y31630D01* Y31834D02* Y35684D01* X49500Y4778D02* Y3411D01* Y6368D02* Y9857D01* Y15133D02* Y14631D01* Y31584D02* Y16521D01* Y35684D02* Y31881D01* X49545Y3411D02* Y4778D01* Y9857D02* Y6441D01* Y14631D02* Y15142D01* Y16521D02* Y31560D01* Y31904D02* Y35684D01* X49567Y1933D02* X49555D01* X49358Y2130* X49590Y4778D02* Y3411D01* Y6486D02* Y9857D01* Y15164D02* Y14631D01* Y31551D02* Y16521D01* Y35684D02* Y31914D01* X49602Y12437D02* X49724Y12559D01* X49799Y12634* X49811* X49635Y3411D02* Y4392D01* Y4592D02* Y4778D01* Y9857D02* Y6681D01* Y14631D02* Y15207D01* Y16521D02* Y31552D01* Y31912D02* Y35684D01* X49680Y4348D02* Y3455D01* Y4778D02* Y4636D01* Y6725D02* Y9857D01* Y15329D02* Y14736D01* Y31565D02* Y16521D01* Y35684D02* Y31899D01* X49725Y3476D02* Y4327D01* Y4657D02* Y4778D01* Y9857D02* Y6748D01* Y14779D02* Y15329D01* Y16521D02* Y31594D01* Y31871D02* Y35684D01* X49770Y4320D02* Y3484D01* Y4778D02* Y4665D01* Y6757D02* Y9857D01* Y15329D02* Y14801D01* Y31652D02* Y16521D01* Y35684D02* Y31813D01* X49776Y2917D02* X49972Y2720D01* X49986* X49776Y3311D02* X49972Y3114D01* X49986* X49789Y31732D02* G03X49606Y31915I183D01* X49424Y31732J183* X49606Y31550I182* X49789Y31732J182* G01X49804Y4289D02* G03X49986Y4113I182J6D01* X50169Y4295J182* X49986Y4478I183* X49966Y4477J183* G01X49948Y4494* G03X49776Y4665I172J2* X49603Y4492J173* X49774Y4319I173* G01X49804Y4289* X49811Y12240D02* X49784Y12213D01* X49773* X49602Y12043* X49815Y3479D02* Y4232D01* Y4660D02* Y4778D01* Y9857D02* Y6755D01* Y14810D02* Y15329D01* Y16521D02* Y22331D01* Y22551D02* Y24693D01* Y24913D02* Y35684D01* X49860Y4163D02* Y3517D01* Y4778D02* Y4643D01* Y7218D02* Y9857D01* Y15329D02* Y14807D01* Y21733D02* Y16521D01* Y22289D02* Y21967D01* Y22914D02* Y22593D01* Y24651D02* Y23149D01* Y25277D02* Y24955D01* Y35684D02* Y25511D01* X49905Y3562D02* Y4132D01* Y4606D02* Y4778D01* Y9857D02* Y7263D01* Y14792D02* Y15329D01* Y16521D02* Y21695D01* Y22006D02* Y22267D01* Y22615D02* Y22876D01* Y23187D02* Y24629D01* Y24977D02* Y25238D01* Y25550D02* Y35684D01* X49950Y4116D02* Y3607D01* Y4778D02* Y4492D01* Y7308D02* Y9857D01* Y15287D02* Y14762D01* Y21675D02* Y16521D01* Y22259D02* Y22026D01* Y22856D02* Y22623D01* Y24621D02* Y23207D01* Y25218D02* Y24985D01* Y35684D02* Y25569D01* X49995Y3652D02* Y4113D01* Y4478D02* Y4778D01* Y9857D02* Y7353D01* Y14715D02* Y15242D01* Y16521D02* Y17504D01* Y17732D02* Y18016D01* Y18244D02* Y18508D01* Y18736D02* Y19020D01* Y19247D02* Y19512D01* Y19740D02* Y21668D01* Y22033D02* Y22262D01* Y22620D02* Y22849D01* Y23214D02* Y24624D01* Y24982D02* Y25211D01* Y25576D02* Y35684D01* X50020Y13224D02* X50060D01* X50230Y13394* Y13421* X50040Y4121D02* Y3777D01* Y4778D02* Y4470D01* Y7398D02* Y9857D01* Y15197D02* Y14760D01* Y17464D02* Y16521D01* Y17976D02* Y17772D01* Y18468D02* Y18284D01* Y18976D02* Y18776D01* Y19472D02* Y19288D01* Y21672D02* Y19780D01* Y22277D02* Y22028D01* Y22853D02* Y22605D01* Y24639D02* Y23210D01* Y25216D02* Y24967D01* Y35684D02* Y25572D01* X50079Y10650D02* Y10394D01* X50483Y9990* X50793* X50897Y9885* Y9717* X51020Y9594* X50085Y3836D02* Y4142D01* Y4449D02* Y4778D01* Y9857D02* Y7443D01* Y14805D02* Y15172D01* Y16521D02* Y17431D01* Y17813D02* Y17931D01* Y18313D02* Y18431D01* Y18813D02* Y18931D01* Y19313D02* Y19431D01* Y19813D02* Y21689D01* Y22012D02* Y22307D01* Y22574D02* Y22870D01* Y23193D02* Y24670D01* Y24937D02* Y25232D01* Y25555D02* Y35684D01* X50093Y14814D02* X49989Y14710D01* G03X49826Y14810I163J82* X49644Y14631J182* G01X48583* G03X48565Y14624J25* G01X48486Y14545* G03X48479Y14528I18J17* G01Y14105* X48171Y13797* G03X48164Y13780I18J17* G01Y11614* G03X48171Y11596I25* G01X48182Y11586* G03X48279Y11489I161J64* G01X48479Y11289* Y11231* X48375Y11127* X47768* X47477Y11418* Y11489* G03X47502Y11564I98J75* G01Y11735* G03X47477Y11810I123* G01Y11881* X47499Y11903* G03X47535Y11990I88J87* G01Y12049* X47553Y12068* G03X47724Y12240I2J172* X47551Y12413I173* X47387Y12294J173* G01Y12974* G03X47551Y12855I164J54* X47724Y13028J173* X47596Y13194I173* G01X47387Y13403* Y14163* X47616Y14392* G03X47623Y14409I18J17* G01Y15147* X47806Y15329* X47850* G03X47849Y15315I181J14* X48031Y15132I182* X48214Y15315J183* X48213Y15329I183* G01X48243* G03Y15315I182J14* X48425Y15132I182* X48608Y15315J183* X48607Y15329I183* G01X49031* G03X49030Y15315I182J14* X49213Y15132I183* X49350Y15195J183* X49488Y15132I138J120* X49671Y15315J183* X49670Y15329I183* G01X49925* G03X49950Y15288I95J29* G01X50040Y15197* G03X50093Y15170I70J70* G01Y14814* X50130Y4183D02* Y3864D01* Y4778D02* Y4408D01* Y7488D02* Y9857D01* Y17386D02* Y16521D01* Y17886D02* Y17858D01* Y18386D02* Y18358D01* Y18886D02* Y18858D01* Y19386D02* Y19358D01* Y21722D02* Y19858D01* Y22373D02* Y21978D01* Y22903D02* Y22509D01* Y24735D02* Y23160D01* Y25266D02* Y24871D01* Y35684D02* Y25522D01* X50143Y22441D02* G03X49961Y22623I182D01* X49778Y22441J182* X49961Y22258I183* X50143Y22441J183* G01Y24803D02* G03X49961Y24986I182D01* X49778Y24803J183* X49961Y24621I183* X50143Y24803J182* G01X50175Y3876D02* Y4778D01* Y9857D02* Y7533D01* Y16521D02* Y17341D01* Y19903D02* Y21799D01* Y21902D02* Y22980D01* Y23083D02* Y25342D01* Y25445D02* Y35684D01* X50182Y21850D02* G03X50000Y22033I182D01* X49818Y21850J183* X50000Y21668I182* X50182Y21850J182* G01Y23031D02* G03X50000Y23214I182D01* X49818Y23031J183* X50000Y22849I182* X50182Y23031J182* G01Y25394D02* G03X50000Y25576I182D01* X49818Y25394J182* X50000Y25211I182* X50182Y25394J183* G01X50197Y2130D02* X50394Y1933D01* X50417* X50197Y2524D02* X50394Y2327D01* X50417* X50220Y4778D02* Y3876D01* Y7578D02* Y9857D01* Y17278D02* Y16521D01* Y27278D02* Y19966D01* Y27778D02* Y27466D01* Y28278D02* Y27966D01* Y28778D02* Y28466D01* Y29278D02* Y28966D01* Y29778D02* Y29466D01* Y35684D02* Y29966D01* X50230Y13028D02* X50208D01* X50138Y12957* X50020Y12839* Y12831* X50265Y3863D02* Y4778D01* Y9857D02* Y7623D01* Y16521D02* Y17224D01* Y20020D02* Y27224D01* Y27520D02* Y27724D01* Y28020D02* Y28224D01* Y28520D02* Y28724D01* Y29020D02* Y29224D01* Y29520D02* Y29724D01* Y30020D02* Y35684D01* X50310Y4778D02* Y3835D01* Y7668D02* Y9851D01* Y17196D02* Y16521D01* Y27196D02* Y20048D01* Y27696D02* Y27548D01* Y28196D02* Y28048D01* Y28696D02* Y28548D01* Y29196D02* Y29048D01* Y29696D02* Y29548D01* Y35684D02* Y30048D01* X50335Y14961D02* Y14748D01* X50374Y14708* Y14370* X50335Y14961D02* Y15178D01* X50246Y15267* X50110* X50020Y15358* Y15551* X50355Y3805D02* Y4778D01* Y9806D02* Y7713D01* Y16521D02* Y17183D01* Y20062D02* Y27183D01* Y27583D02* Y27661D01* Y28083D02* Y28161D01* Y28583D02* Y28661D01* Y29083D02* Y29161D01* Y29583D02* Y29661D01* Y30062D02* Y31551D01* Y31914D02* Y35684D01* X50400Y4778D02* Y3805D01* Y7758D02* Y9761D01* Y17180D02* Y16521D01* Y17640D02* Y17604D01* Y18140D02* Y18104D01* Y18640D02* Y18604D01* Y19140D02* Y19104D01* Y19640D02* Y19604D01* Y27180D02* Y20064D01* Y31540D02* Y30064D01* Y35684D02* Y31925D01* X50441Y12043D02* X50638Y12240D01* X50654* X50441Y12437D02* X50642Y12638D01* X50650* X50445Y3805D02* Y4778D01* Y9716D02* Y7803D01* Y16521D02* Y17188D01* Y17559D02* Y17685D01* Y18059D02* Y18185D01* Y18559D02* Y18685D01* Y19059D02* Y19185D01* Y19559D02* Y19685D01* Y20056D02* Y27188D01* Y30056D02* Y31540D01* Y31925D02* Y35684D01* X50450Y19690D02* G03X50580Y19872I62J182D01* X50388Y20064I192* X50206Y19934J192* G01X50065Y19793* G03X49955Y19626I73J167* X50049Y19466I183* G01X50144Y19372* X50078Y19306* G03X49955Y19134I60J172* X50026Y18989I183* G01X50144Y18872* X50058Y18786* G03X49955Y18622I80J164* X50058Y18458I183* G01X50144Y18372* X50072Y18300* G03X49955Y18130I66J170* X50040Y17976I183* G01X50144Y17872* X50049Y17778* G03X49955Y17618I89J160* X50065Y17451I183* G01X50206Y17310* G03X50388Y17180I182J62* X50580Y17372J192* X50450Y17554I192* G01X50382Y17622* X50450Y17690* G03X50580Y17872I62J182* X50450Y18054I192* G01X50382Y18122* X50450Y18190* G03X50580Y18372I62J182* X50450Y18554I192* G01X50382Y18622* X50450Y18690* G03X50580Y18872I62J182* X50450Y19054I192* G01X50382Y19122* X50450Y19190* G03X50580Y19372I62J182* X50450Y19554I192* G01X50382Y19622* X50450Y19690* X50490Y4778D02* Y3820D01* Y7848D02* Y9002D01* Y17209D02* Y16521D01* Y17709D02* Y17535D01* Y18209D02* Y18035D01* Y18709D02* Y18535D01* Y19209D02* Y19035D01* Y19709D02* Y19535D01* Y27209D02* Y20035D01* Y31540D02* Y30035D01* Y35684D02* Y31925D01* X50535Y3856D02* Y4778D01* Y8957D02* Y7893D01* Y16521D02* Y17248D01* Y17496D02* Y17748D01* Y17996D02* Y18248D01* Y18496D02* Y18748D01* Y18996D02* Y19248D01* Y19496D02* Y19748D01* Y19996D02* Y27248D01* Y29996D02* Y31540D01* Y31925D02* Y35684D01* X50580Y4778D02* Y3873D01* Y7938D02* Y8912D01* Y17365D02* Y16521D01* Y17865D02* Y17379D01* Y18365D02* Y17879D01* Y18865D02* Y18379D01* Y19365D02* Y18879D01* Y19865D02* Y19379D01* Y27320D02* Y19879D01* Y31540D02* Y29924D01* Y35684D02* Y31925D01* X50618Y2917D02* X50807Y3106D01* Y3110* X50618Y3311D02* X50807Y3500D01* Y3543* X50625Y3877D02* Y4778D01* Y8867D02* Y7983D01* Y16521D02* Y21767D01* Y21934D02* Y25310D01* Y25477D02* Y27365D01* Y29879D02* Y31321D01* Y32855D02* Y35684D01* X50650Y13425D02* X50642D01* X50441Y13224* X50654Y13815D02* X50643D01* X50599Y13772* X50595* X50441Y13618* X50654Y11054D02* X51607D01* X51807Y10854* X50665Y10235D02* X50822D01* X51020Y10433* X50670Y4767D02* Y3869D01* Y8028D02* Y8822D01* Y21711D02* Y16521D01* Y22348D02* Y21990D01* Y24710D02* Y22534D01* Y25254D02* Y24897D01* Y27410D02* Y25533D01* Y27910D02* Y27834D01* Y28410D02* Y28334D01* Y28910D02* Y28834D01* Y31287D02* Y29834D01* Y35684D02* Y32869D01* X50715Y3848D02* Y4722D01* Y8777D02* Y8073D01* Y16521D02* Y18288D01* Y18456D02* Y18788D01* Y18956D02* Y21683D01* Y22018D02* Y22297D01* Y22585D02* Y24659D01* Y24947D02* Y25226D01* Y25561D02* Y27455D01* Y27789D02* Y27955D01* Y28289D02* Y28455D01* Y28789D02* Y28955D01* Y29956D02* Y31284D01* Y32869D02* Y35684D01* X50760Y4677D02* Y3805D01* Y8118D02* Y8732D01* Y18228D02* Y16521D01* Y18728D02* Y18516D01* Y21670D02* Y19016D01* Y22271D02* Y22031D01* Y24633D02* Y22611D01* Y25213D02* Y24973D01* Y27487D02* Y25574D01* Y27987D02* Y27758D01* Y28487D02* Y28258D01* Y28987D02* Y28758D01* Y31284D02* Y30323D01* Y35684D02* Y32869D01* X50780Y14094D02* X50597Y14277D01* X50374* Y14370* X50805Y3805D02* Y4632D01* Y8687D02* Y8163D01* Y16521D02* Y18198D01* Y18546D02* Y18698D01* Y19046D02* Y21669D01* Y22032D02* Y22260D01* Y22622D02* Y24622D01* Y24984D02* Y25212D01* Y25575D02* Y27549D01* Y27695D02* Y28049D01* Y28195D02* Y28549D01* Y28695D02* Y29049D01* Y30368D02* Y31284D01* Y32869D02* Y35684D01* X50807Y7008D02* X50509Y6710D01* Y6192* X49990Y5674* X47339* X47103Y5438* X46015* X45923Y5346* X45837* X45613Y5123* X45456* X45236Y5342* Y5591* X50827Y2736D02* X50828D01* X50890Y2674* X50897* X51020Y2551* X50827Y7756D02* X50852Y7782D01* X51431* X51610Y7961* X50837Y5263D02* X51184D01* X51413Y5492* X50846Y2323D02* X50847D01* X50907Y2262* X51020Y2150* Y2130* X50850Y4587D02* Y3843D01* Y8175D02* Y8642D01* Y18183D02* Y16521D01* Y18683D02* Y18561D01* Y21679D02* Y19061D01* Y22260D02* Y22022D01* Y24622D02* Y22622D01* Y25222D02* Y24984D01* Y29183D02* Y25565D01* Y31284D02* Y30413D01* Y35684D02* Y32869D01* X50862Y12043D02* X51059Y12240D01* X51071* X50862Y12437D02* X51059Y12634D01* X51071* X50862Y12831D02* X51059Y13028D01* X51071* X50862Y13224D02* X51059Y13421D01* X51071* X50888Y29372D02* X51138Y29622D01* X50888Y29872D02* X51138Y30122D01* X50895Y3930D02* Y4530D01* Y8597D02* Y8187D01* Y16521D02* Y18180D01* Y18564D02* Y18680D01* Y19064D02* Y21703D01* Y21998D02* Y22272D01* Y22610D02* Y24634D01* Y24972D02* Y25246D01* Y25541D02* Y29180D01* Y30456D02* Y31284D01* Y32869D02* Y35684D01* X50940Y4496D02* Y3964D01* Y8194D02* Y8558D01* Y18187D02* Y16521D01* Y18687D02* Y18565D01* Y21750D02* Y19065D01* Y22298D02* Y21950D01* Y24660D02* Y22584D01* Y25294D02* Y24946D01* Y29187D02* Y25494D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X50970Y21850D02* G03X50787Y22033I183D01* X50605Y21850J183* X50787Y21668I182* X50970Y21850J182* G01Y25394D02* G03X50787Y25576I183D01* X50605Y25394J182* X50787Y25211I182* X50970Y25394J183* G01X50985Y3980D02* Y4452D01* Y8558D02* Y8190D01* Y16521D02* Y18206D01* Y19208D02* Y20025D01* Y20212D02* Y22350D01* Y22532D02* Y24712D01* Y24894D02* Y29206D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51009Y22441D02* G03X50827Y22623I182D01* X50644Y22441J182* X50827Y22258I183* X51009Y22441J183* G01Y24803D02* G03X50827Y24986I182D01* X50644Y24803J183* X50827Y24621I183* X51009Y24803J182* G01X51020Y7591D02* Y7417D01* X50965Y7362* X50846* X51020Y10854D02* X50839Y10674D01* X50661* X51030Y4407D02* Y3983D01* Y8175D02* Y8558D01* Y18243D02* Y16521D01* Y19974D02* Y19258D01* Y29227D02* Y20262D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51071Y11846D02* X51060D01* X50986Y11772* X50985* X50862Y11650* X51075Y3975D02* Y4326D01* Y8558D02* Y8175D01* Y16521D02* Y18328D01* Y19284D02* Y19948D01* Y20288D02* Y29227D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51120Y4286D02* Y3952D01* Y8175D02* Y8558D01* Y18441D02* Y16549D01* Y19937D02* Y19295D01* Y29227D02* Y20299D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51138Y14075D02* X50955D01* X50944Y14086* X50788* X50780Y14094* X51142Y18622D02* X51138D01* X50888Y18372* X51142Y19114D02* X51130D01* X50888Y18872* X51165Y3904D02* Y4266D01* Y8558D02* Y8175D01* Y16594D02* Y18441D01* Y19295D02* Y19937D01* Y20299D02* Y29227D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51210Y4259D02* Y3805D01* Y8175D02* Y8558D01* Y17299D02* Y16639D01* Y17799D02* Y17445D01* Y18299D02* Y17945D01* Y19799D02* Y19445D01* Y20799D02* Y20445D01* Y21299D02* Y20945D01* Y21799D02* Y21445D01* Y22299D02* Y21945D01* Y22799D02* Y22445D01* Y23299D02* Y22945D01* Y23799D02* Y23445D01* Y24299D02* Y23945D01* Y24799D02* Y24445D01* Y25299D02* Y24945D01* Y25799D02* Y25445D01* Y26299D02* Y25945D01* Y26799D02* Y26445D01* Y27299D02* Y26945D01* Y27799D02* Y27445D01* Y28299D02* Y27945D01* Y28799D02* Y28445D01* Y29227D02* Y28945D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51220Y3189D02* Y3197D01* X51413Y3390* X51220Y4862D02* Y4843D01* X51413Y4650* X51239Y10665D02* Y10680D01* X51413Y10854* X51255Y3805D02* Y4263D01* Y8558D02* Y8175D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51280Y12043D02* X51496Y12260D01* Y12264* X51280Y12831D02* X51480Y13031D01* X51516* X51280Y13224D02* X51476Y13421D01* X51490* X51300Y4279D02* Y3775D01* Y8175D02* Y8558D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51345Y3730D02* Y4311D01* Y8558D02* Y8175D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51388Y18372D02* X51638Y18122D01* X51388Y18872D02* X51638Y18622D01* X51388Y20372D02* X51638Y20122D01* X51388Y26372D02* X51638Y26622D01* X51388Y28872D02* X51638Y29122D01* X51388Y29372D02* X51638Y29622D01* X51390Y4345D02* Y3685D01* Y8175D02* Y8558D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51413Y5071D02* X51610Y4874D01* Y4860* X51413Y6752D02* Y6557D01* X51427Y6543* X51610* X51413Y7591D02* X51240Y7417D01* Y7362* X51413Y8752D02* X51610Y8949D01* Y8963* X51413Y9173D02* X51610Y9370D01* Y9386* X51413Y10012D02* X51610Y10209D01* Y10222* X51413Y10433D02* X51591Y10610D01* X51614* X51435Y3640D02* Y4345D01* Y8558D02* Y8175D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51480Y4306D02* Y3595D01* Y8175D02* Y8558D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51496Y11831D02* X51461D01* X51280Y11650* X51525Y3550D02* Y4266D01* Y8558D02* Y8175D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51553Y1772D02* X51500Y1824D01* Y1953* X51545Y1999* X51609Y2062* Y2353* X51807Y2551* X51570Y4221D02* Y3505D01* Y8175D02* Y8558D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51614Y3189D02* Y3169D01* X51413Y2969* X51614Y6969D02* Y6945D01* X51807Y6752* X51614Y7382D02* Y7398D01* X51807Y7591* X51615Y3460D02* Y4176D01* Y8558D02* Y8175D01* Y30458D02* Y31284D01* Y32869D02* Y35684D01* X51634Y19626D02* X51888Y19372D01* X51638Y17122D02* X51388Y17372D01* X51638Y27622D02* X51388Y27372D01* X51638Y28122D02* X51388Y27872D01* X51654Y1673D02* X51651D01* X51553Y1772* X51660Y4131D02* Y3415D01* Y8175D02* Y8558D01* Y31284D02* Y30458D01* Y35684D02* Y32869D01* X51701Y11650D02* X51902Y11850D01* X51909* X51701Y13618D02* X51898Y13815D01* X51911* X51705Y3370D02* Y4086D01* Y8558D02* Y8175D01* Y30458D02* Y31291D01* Y32869D02* Y35684D01* X51750Y3119D02* Y2813D01* Y4041D02* Y3259D01* Y8175D02* Y8558D01* Y31488D02* Y30458D01* Y35684D02* Y32869D01* X51795Y2768D02* Y3959D01* Y8558D02* Y8175D01* Y30458D02* Y31540D01* Y32869D02* Y35684D01* X51807Y2130D02* Y2043D01* X51654Y1890* X51807Y6331D02* X52004Y6134D01* Y6120* X51807Y7169D02* X51930Y7047D01* Y7043* X52004Y6969* Y6961* X51807Y8752D02* X52004Y8949D01* Y8963* X51840Y3886D02* Y2723D01* Y8175D02* Y8558D01* Y31540D02* Y30458D01* Y35684D02* Y32869D01* X51850Y1378D02* X52185D01* X52205Y1358* X51885Y2705D02* Y3853D01* Y8558D02* Y8175D01* Y30458D02* Y31540D01* Y32869D02* Y35684D01* X51888Y17372D02* X52138Y17122D01* X51888Y17872D02* X52138Y17622D01* X51888Y18872D02* X52138Y18622D01* X51888Y20372D02* X52138Y20122D01* X51888Y20872D02* X52138Y20622D01* X51888Y24872D02* X52138Y25122D01* X51888Y25372D02* X52138Y25622D01* X51888Y26872D02* X52138Y27122D01* X51888Y29372D02* X52138Y29622D01* X51888Y29872D02* X52138Y30122D01* X51909Y13051D02* Y13039D01* X51701Y12831* X51929Y12264D02* X51921D01* X51701Y12043* X51930Y3837D02* Y2672D01* Y8175D02* Y8558D01* Y31540D02* Y30458D01* Y35684D02* Y32869D01* X51969Y31540D02* G03X52043Y31614J74D01* G01Y32795* G03X51969Y32869I74* G01X50669* G03X50595Y32795J74* G01Y31925* X50394* G03X50319Y31850J75* G01Y31614* G03X50394Y31540I75* G01X50595* Y31535* G03X50615Y31485I74* G01Y31358* G03X50689Y31284I74* G01X51673* G03X51747Y31358J74* G01Y31485* G03X51767Y31535I54J50* G01Y31540* X51969* X51975Y2591D02* Y3816D01* Y8558D02* Y8175D01* Y30458D02* Y31540D01* Y32869D02* Y35684D01* X52004Y5701D02* Y5713D01* X51807Y5909* X52004Y9386D02* Y9370D01* X51807Y9173* X52004Y9803D02* Y9791D01* X51930Y9717* X51807Y9594* X52020Y3771D02* Y1994D01* Y8175D02* Y8558D01* Y31561D02* Y30458D01* Y35684D02* Y32849D01* X52045Y37185D02* X52559D01* X52065Y1994D02* Y2862D01* Y8558D02* Y8175D01* Y30458D02* Y35656D01* X52106Y14862D02* X51024D01* X50374Y15512* Y15551* X52110Y2822D02* Y1994D01* Y8175D02* Y8558D01* Y35611D02* Y30458D01* X52122Y11256D02* Y11082D01* X52060Y11020* X52004* X52122Y12831D02* X52343Y13051D01* X52138Y21622D02* X51888Y21872D01* X52138Y22122D02* X51888Y22372D01* X52138Y24122D02* X51888Y23872D01* X52138Y26622D02* X51888Y26372D01* X52138Y28122D02* X51888Y27872D01* X52138Y28622D02* X51888Y28372D01* X52155Y1994D02* Y2802D01* Y8558D02* Y8175D01* Y30458D02* Y35566D01* X52200Y2765D02* Y1994D01* Y8175D02* Y8558D01* Y33237D02* Y30458D01* X52201Y2969D02* X52392Y2778D01* X52393* X52201Y3390D02* X52398Y3193D01* Y3179* X52201Y4232D02* X51984Y4016D01* X51969* X52201Y5071D02* X52398Y4874D01* Y4860* X52201Y5909D02* X52398Y5713D01* Y5701* X52201Y6331D02* Y6157D01* X52238Y6120* X52398* X52201Y7169D02* Y6996D01* X52236Y6961* X52398* X52201Y7591D02* X52402Y7390D01* Y7382* X52201Y9594D02* X52398Y9791D01* Y9803* X52201Y10433D02* X52398Y10630D01* Y10644* X52201Y10854D02* X52374D01* X52390Y10870* Y11028* X52245Y2016D02* Y2226D01* Y2440D02* Y2671D01* Y8558D02* Y8175D01* Y30458D02* Y33192D01* X52258Y2457D02* G03X52210Y2333I135J124D01* X52258Y2210I183* G01Y2036* G03X52235Y1994I146J110* G01X52234* X52018* X51994Y2018* Y2559* G03X51986Y2577I25* G01X51976Y2587* G03X51843Y2720I169J36* G01X51718Y2845* Y3077* G03X51767Y3189I104J112* X51718Y3301I153* G01Y3346* G03X51711Y3364I25* G01X51278Y3797* G03X51260Y3805I18J17* G01X51201* X51192Y3813* G03X51020Y3984I172J2* X50847Y3811J173* Y3805I173* G01X50759* G03X50618Y3877I141J100* X50477Y3805J172* G01X50338* G03X50197Y3877I141J100* X50024Y3705J172* X50026Y3683I173* G01X49820Y3478* G03X49776Y3484I44J167* X49635Y3411J173* G01X49499* G03X49358Y3484I141J100* X49217Y3411J173* G01X49078* G03X48937Y3484I141J100* X48796Y3411J173* G01X48657* G03X48516Y3484I141J100* X48457Y3473J173* X48460Y3504I150J31* X48307Y3657I153* X48154Y3511J153* G01X48124Y3481* G03X48094Y3484I30J170* X47922Y3311J173* X47928Y3266I172* G01Y2962* G03X47922Y2918I166J45* G01X47864Y2860* X47827* G03X47724Y2893I103J140* X47575Y2808J173* G01X47541Y2774* G03X47534Y2756I18J18* G01Y2058* X47470Y1994* X47215* X47151Y2058* Y2174* G03X47299Y2327I5J153* X47151Y2480I153* G01Y2948* G03X47328Y3130I5J182* Y3140I182* X47354Y3138I26J171* X47527Y3311J173* X47354Y3484I173* X47325Y3481J173* G01X47308Y3497* G03Y3504I182J7* X47305Y3539I182* X47354Y3532I49J166* X47527Y3705J173* X47354Y3877I173* X47325Y3875J172* G01X47308Y3891* G03X47126Y4060I182J13* X46944Y3878J182* X47126Y3695I182* X47182Y3704J183* X47184Y3677I172J1* X47126Y3686I58J173* X46944Y3504J182* X46945Y3483I182* X46933Y3484I12J172* X46831Y3450J173* G01X46618* G03X46516Y3484I102J139* X46414Y3450J173* G01X46197* G03X46094Y3484I103J139* X45992Y3450J173* G01X45775* G03X45673Y3484I102J139* X45571Y3450J173* G01X45551* G03X45534Y3443J25* G01X45376Y3285* G03X45369Y3269I18J17* X45282Y3114I96J155* X45369Y2959I183* G01Y2884* X44934Y2449* G03X44867Y2323I86J126* X44896Y2232I153* G01Y2019* G03X44867Y1929I124J90* X45020Y1776I153* X45074Y1786J153* G01X45209* G03X45339Y1673I170J65* G01X45408Y1604* Y1231* X45383Y1206* X45247* X45222Y1231* Y1296* G03X45242Y1378I163J82* X45222Y1460I183* G01Y1496* G03X45211Y1517I25* G01X45093Y1596* G03X45079Y1600I14J21* G01X44617* X44592Y1625* Y2824* X44705Y2938* G03X44818Y3050I59J172* G01X44953Y3185* G03X44961Y3193I118J126* G01X44978Y3211* G03X44986Y3227I17J17* X45007Y3311I151J84* X45006Y3330I172* X45047Y3325I41J178* X45230Y3508J183* X45047Y3690I183* X45023Y3689J182* G01X45168Y3833* X45715* G03X45884Y3719I169J69* X46053Y3833J183* G01X46142* G03X46159Y3841J25* G01X46356Y4037* G03X46364Y4055I17J18* G01Y4714* X46400Y4750* G03X46441Y4762I22J152* G01X47800* G03X47860Y4749I60J126* G01X48346* G03X48431Y4778J139* G01X50659* X50866Y4571* G03X50941Y4496I154J79* G01X51039Y4398* G03X51217Y4258I178J43* X51372Y4345J183* G01X51446* X51456Y4336* G03X51509Y4282I153J99* G01X51786Y4005* G03X51958Y3834I183J11* G01X52038Y3753* G03X52062Y3709I163J58* G01Y3492* G03X52028Y3390I139J102* X52062Y3288I173* G01Y3071* G03X52028Y2969I139J102* X52165Y2800I173* G01X52212Y2753* G03X52258Y2654I181J25* G01Y2457* X52290Y8175D02* Y8593D01* Y33147D02* Y30458D01* X52323Y11476D02* X52295D01* X52122Y11650* X52335Y8638D02* Y8175D01* Y30458D02* Y33102D01* X52380Y8175D02* Y8683D01* Y33085D02* Y30458D01* X52388Y17872D02* X52638Y17622D01* X52388Y19372D02* X52638Y19122D01* X52388Y19872D02* X52638Y19622D01* X52388Y20872D02* X52638Y20622D01* X52388Y23872D02* X52638Y24122D01* X52388Y24372D02* X52638Y24622D01* X52388Y25372D02* X52638Y25622D01* X52388Y25872D02* X52638Y26122D01* X52388Y26872D02* X52638Y27122D01* X52388Y27372D02* X52638Y27622D01* X52388Y29872D02* X52638Y30122D01* X52398Y5283D02* Y5295D01* X52201Y5492* X52402Y10217D02* X52232D01* X52201Y10185* Y10012* X52404Y1926D02* Y1939D01* X52594Y2130* X52425Y8728D02* Y8175D01* Y30458D02* Y33085D01* X52470Y8175D02* Y8773D01* Y33085D02* Y30458D01* X52515Y8818D02* Y8175D01* Y30458D02* Y33085D01* X52520Y35803D02* X52559Y35764D01* Y35610* X52520Y35803D02* X52406D01* X52388Y35784* X49447* X49401Y35830* X49075* X52520Y35803D02* Y35821D01* X52559Y35860* Y36043* X52543Y11256D02* X52666Y11379D01* X52699* X52758Y11437* X52776* X52543Y12043D02* X52756Y12256D01* Y12264* X52543Y12437D02* X52724Y12618D01* X52756* X52543Y13224D02* X52740Y13421D01* X52752* X52559Y36398D02* Y36614D01* Y36831* X52560Y8175D02* Y8863D01* Y33085D02* Y30458D01* X52579Y14567D02* X52362D01* X52594Y2551D02* X52472Y2429D01* Y2412* X52393Y2333* X52594Y3811D02* X52791Y3614D01* Y3600* X52594Y3811D02* X52201D01* X52594Y5071D02* X52791Y4874D01* Y4860* X52594Y5492D02* X52791Y5295D01* Y5283* X52594Y5909D02* X52791Y5713D01* Y5701* X52594Y6331D02* Y6157D01* X52632Y6120* X52791* X52594Y6752D02* X52791Y6555D01* Y6543* X52594Y7169D02* X52795Y6969D01* X52594Y7591D02* X52744Y7441D01* X52776* X52594Y9173D02* X52791Y9370D01* Y9386* X52594Y10012D02* X52791Y10209D01* Y10222* X52594Y10854D02* X52776Y11035D01* Y11043* X52605Y8908D02* Y8175D01* Y30458D02* Y31630D01* Y31835D02* Y33085D01* X52638Y18122D02* X52388Y18372D01* X52638Y21122D02* X52388Y21372D01* X52638Y22122D02* X52388Y22372D01* X52638Y28622D02* X52388Y28372D01* X52638Y29122D02* X52388Y28872D01* X52650Y8175D02* Y8394D01* Y8614D02* Y8953D01* Y31584D02* Y30458D01* Y33085D02* Y31881D01* X52695Y8991D02* Y8656D01* Y30458D02* Y31560D01* Y31904D02* Y33085D01* X52740Y8678D02* Y8991D01* Y31550D02* Y30458D01* Y33085D02* Y31914D01* X52776Y1378D02* X52623D01* X52603Y1358* X52205* X52785Y8991D02* Y8686D01* Y30458D02* Y31552D01* Y31912D02* Y33085D01* X52791Y10644D02* X52632D01* X52594Y10606* Y10433* X52795Y9803D02* Y9795D01* X52594Y9594* X52830Y8683D02* Y8991D01* Y31566D02* Y30458D01* Y33085D02* Y31899D01* X52874Y34843D02* Y35107D01* X52991Y35224* X53176* X52875Y2598D02* Y2554D01* Y3017D02* Y2922D01* Y3430D02* Y3341D01* Y8991D02* Y8668D01* Y30458D02* Y31594D01* Y31871D02* Y33085D01* X52888Y17372D02* X53138Y17122D01* X52888Y17872D02* X53138Y17622D01* X52888Y20372D02* X53138Y20122D01* X52888Y24372D02* X53138Y24622D01* X52888Y24872D02* X53138Y25122D01* X52888Y26372D02* X53138Y26622D01* X52888Y27372D02* X53138Y27622D01* X52888Y29372D02* X53138Y29622D01* X52888Y29872D02* X53138Y30122D01* X52920Y2509D02* Y2630D01* Y2889D02* Y3050D01* Y3309D02* Y3471D01* Y8637D02* Y8991D01* Y31652D02* Y30458D01* Y33085D02* Y31812D01* X52933Y14567D02* Y14547D01* X53232Y14248* X53788* X54060Y13976* Y13200* X54294Y12966* X54446* X54491Y13012* X54744* X52933Y14961D02* Y14918D01* X53063Y14788* X53467Y14384* X53803* X53895Y14291* X54726* X54821Y14386* X55133* X52938Y31732D02* G03X52756Y31915I182D01* X52573Y31732J183* X52756Y31550I183* X52938Y31732J182* G01X52961Y11256D02* X53136Y11432D01* X53627* X53701Y11358* X52961Y11650D02* X53142Y11831D01* X53189* X52961Y12043D02* X53181Y12264D01* X53189* X52961Y12831D02* X53181Y13051D01* X53189* X52965Y2704D02* Y2464D01* Y3123D02* Y2816D01* Y3479D02* Y3235D01* Y8991D02* Y8571D01* Y30458D02* Y33085D01* X52988Y7591D02* Y8047D01* X53091Y8150* X53524* X52988Y9173D02* X53185Y9370D01* Y9386* X53010Y2427D02* Y3479D01* Y8613D02* Y8991D01* Y33085D02* Y30458D01* X53055Y3472D02* Y2427D01* Y8991D02* Y8666D01* Y30492D02* Y33051D01* X53071Y19622D02* Y19689D01* X52888Y19872* X53100Y2427D02* Y3439D01* Y8692D02* Y8991D01* Y33006D02* Y30537D01* X53138Y21122D02* X52888Y21372D01* X53138Y21622D02* X52888Y21872D01* X53138Y22622D02* X52888Y22872D01* X53138Y23122D02* X52888Y23372D01* X53138Y28122D02* X52888Y27872D01* X53138Y29122D02* X52888Y28872D01* X53145Y3422D02* Y2432D01* Y8991D02* Y8704D01* Y30582D02* Y32961D01* X53164Y30601D02* X53021Y30458D01* X50906* G03X50888Y30451J25* G01X50730Y30293* G03X50723Y30276I18J17* G01Y29971* G03X50695Y29872I165J99* X50714Y29790I193* G01X50570Y29934* G03X50388Y30064I182J62* X50195Y29872J192* X50326Y29690I193* G01X50394Y29622* X50326Y29554* G03X50195Y29372I62J182* X50326Y29190I193* G01X50394Y29122* X50326Y29054* G03X50195Y28872I62J182* X50326Y28690I193* G01X50394Y28622* X50326Y28554* G03X50195Y28372I62J182* X50326Y28190I193* G01X50394Y28122* X50326Y28054* G03X50195Y27872I62J182* X50326Y27690I193* G01X50394Y27622* X50326Y27554* G03X50195Y27372I62J182* X50388Y27180I193* X50570Y27310J192* G01X50718Y27458* G03X50820Y27622I80J164* X50718Y27786I182* G01X50632Y27872* X50718Y27958* G03X50820Y28122I80J164* X50718Y28286I182* G01X50632Y28372* X50718Y28458* G03X50820Y28622I80J164* X50718Y28786I182* G01X50632Y28872* X50718Y28958* G03X50820Y29122I80J164* X50803Y29199I182* X50888Y29180I85J173* X51014Y29227J192* G01X51235* Y28989* G03X51195Y28872I153J117* X51235Y28755I193* G01Y28489* G03X51195Y28372I153J117* X51235Y28255I193* G01Y27989* G03X51195Y27872I153J117* X51235Y27755I193* G01Y27489* G03X51195Y27372I153J117* X51235Y27255I193* G01Y26989* G03X51195Y26872I153J117* X51235Y26755I193* G01Y26489* G03X51195Y26372I153J117* X51235Y26255I193* G01Y25989* G03X51195Y25872I153J117* X51235Y25755I193* G01Y25489* G03X51195Y25372I153J117* X51235Y25255I193* G01Y24989* G03X51195Y24872I153J117* X51235Y24755I193* G01Y24489* G03X51195Y24372I153J117* X51235Y24255I193* G01Y23989* G03X51195Y23872I153J117* X51235Y23755I193* G01Y23489* G03X51195Y23372I153J117* X51235Y23255I193* G01Y22989* G03X51195Y22872I153J117* X51235Y22755I193* G01Y22489* G03X51195Y22372I153J117* X51235Y22255I193* G01Y21989* G03X51195Y21872I153J117* X51235Y21755I193* G01Y21489* G03X51195Y21372I153J117* X51235Y21255I193* G01Y20989* G03X51195Y20872I153J117* X51235Y20755I193* G01Y20489* G03X51195Y20372I153J117* X51217Y20285I193* X51142Y20301I75J167* X50959Y20118J183* X51142Y19936I183* X51212Y19950J182* X51195Y19872I176J78* X51235Y19755I193* G01Y19489* G03X51195Y19372I153J117* X51219Y19279I193* X51142Y19297I77J165* X50959Y19114J183* X50961Y19086I183* G01X50934Y19059* G03X50888Y19064I46J187* X50695Y18872J192* X50888Y18680I193* X50978Y18702J192* X50959Y18622I164J80* X50963Y18587I183* G01X50934Y18559* G03X50888Y18564I46J187* X50695Y18372J192* X50888Y18180I193* X51080Y18372J192* X51074Y18418I192* G01X51100Y18444* G03X51142Y18440I42J178* X51214Y18455J182* X51195Y18372I174J83* X51235Y18255I193* G01Y17989* G03X51195Y17872I153J117* X51235Y17755I193* G01Y17489* G03X51195Y17372I153J117* X51235Y17255I193* G01Y16664* X51092Y16521* X45783* G03X45669Y16560I114J143* X45556Y16521J182* G01X45389* G03X45276Y16560I113J143* X45162Y16521J182* G01X44184* X44041Y16664* Y17255* G03X44080Y17372I153J117* X44041Y17489I192* G01Y17755* G03X44080Y17872I153J117* X44041Y17989I192* G01Y18255* G03X44080Y18372I153J117* X44060Y18457I192* X44138Y18440I78J165* X44215Y18457J182* X44195Y18372I173J85* X44388Y18180I193* X44580Y18372J192* X44388Y18564I192* X44303Y18545J192* X44320Y18622I165J77* X44316Y18660I182* G01X44341Y18685* G03X44388Y18680I47J187* X44580Y18872J192* X44388Y19064I192* X44195Y18872J192* X44201Y18826I193* G01X44176Y18800* G03X44138Y18805I38J178* X44060Y18787J183* X44080Y18872I172J85* X44041Y18989I192* G01Y19255* G03X44080Y19372I153J117* X44041Y19489I192* G01Y19755* G03X44080Y19872I153J117* X44041Y19989I192* G01Y20255* G03X44080Y20372I153J117* X44041Y20489I192* G01Y20755* G03X44080Y20872I153J117* X44041Y20989I192* G01Y21255* G03X44080Y21372I153J117* X44041Y21489I192* G01Y21755* G03X44080Y21872I153J117* X44041Y21989I192* G01Y22255* G03X44080Y22372I153J117* X44041Y22489I192* G01Y22755* G03X44080Y22872I153J117* X44041Y22989I192* G01Y23255* G03X44080Y23372I153J117* X44041Y23489I192* G01Y23755* G03X44080Y23872I153J117* X44041Y23989I192* G01Y24255* G03X44080Y24372I153J117* X44041Y24489I192* G01Y24755* G03X44080Y24872I153J117* X44041Y24989I192* G01Y25255* G03X44080Y25372I153J117* X44041Y25489I192* G01Y25755* G03X44080Y25872I153J117* X44041Y25989I192* G01Y26255* G03X44080Y26372I153J117* X44041Y26489I192* G01Y26755* G03X44080Y26872I153J117* X44041Y26989I192* G01Y27255* G03X44080Y27372I153J117* X44041Y27489I192* G01Y27755* G03X44080Y27872I153J117* X44041Y27989I192* G01Y28255* G03X44080Y28372I153J117* X44060Y28457I192* X44138Y28440I78J165* X44176Y28444J182* G01X44201Y28418* G03X44195Y28372I187J46* X44388Y28180I193* X44473Y28199J192* X44455Y28122I165J77* X44558Y27958I183* G01X44644Y27871* X44560Y27787* G03X44455Y27622I78J165* X44558Y27458I183* G01X44706Y27310* G03X44888Y27180I182J62* X45080Y27372J192* X44950Y27554I192* G01X44883Y27621* X44952Y27691* G03X45080Y27872I64J181* X44950Y28054I192* G01X44882Y28122* X44950Y28190* G03X45080Y28372I62J182* X44950Y28554I192* G01X44882Y28622* X44950Y28690* G03X45080Y28872I62J182* X44950Y29054I192* G01X44882Y29122* X44950Y29190* G03X45080Y29372I62J182* X44950Y29554I192* G01X44882Y29622* X44950Y29690* G03X45080Y29872I62J182* X44888Y30064I192* X44706Y29934J192* G01X44558Y29786* G03X44455Y29622I80J164* X44558Y29458I183* G01X44644Y29372* X44558Y29286* G03X44455Y29122I80J164* X44473Y29045I183* X44388Y29064I85J173* X44341Y29059J192* G01X44316Y29084* G03X44320Y29122I178J38* X44138Y29305I182* X44060Y29287J183* X44080Y29372I172J85* X44041Y29489I192* G01Y29755* G03X44080Y29872I153J117* X44041Y29989I192* G01Y30276* G03X44033Y30293I25* G01X43876Y30451* G03X43858Y30458I18J18* G01X42215* X42072Y30601* Y32958* G03X42082Y33012I143J54* X42072Y33066I153* G01Y34793* X42215Y34936* X46102* G03X46120Y34943J25* G01X46278Y35100* G03X46285Y35118I18J18* G01Y35541* X46428Y35684* X48572* X48636Y35620* Y35433* G03X48644Y35415I25* G01X48722Y35337* G03X48740Y35329I18J17* G01X48873* G03X48898Y35310I25J6* G01X49134* G03X49158Y35329J25* G01X49252* G03X49270Y35337J25* G01X49348Y35415* G03X49356Y35433I17J18* G01Y35620* X49420Y35684* X52037* X52180Y35541* Y33268* G03X52187Y33250I25* G01X52345Y33093* G03X52362Y33085I17J17* G01X53021* X53164Y32942* Y30601* X53170Y6149D02* Y6166D01* X53128Y6208* X53111* X52988Y6331* X53185Y4024D02* Y4035D01* X52988Y4232* X53185Y5283D02* Y5295D01* X52988Y5492* X53185Y10222D02* Y10209D01* X52988Y10012* X53190Y2477D02* Y3418D01* Y8705D02* Y8991D01* X53235Y3425D02* Y2642D01* Y8991D02* Y8694D01* X53280Y2691D02* Y3445D01* Y8669D02* Y8991D01* X53325Y3479D02* Y2730D01* Y8991D02* Y8619D01* X53370Y2742D02* Y3479D01* Y8503D02* Y8957D01* X53382Y5492D02* Y5319D01* X53417Y5283* X53579* X53382Y5909D02* X53579Y5713D01* Y5701* X53382Y6331D02* X53555D01* X53609Y6277* Y6273* X53622Y6260* X53382Y6752D02* Y6579D01* X53417Y6543* X53579* X53382Y7169D02* X53579Y6972D01* Y6961* X53382Y7591D02* X53505Y7713D01* X53592* X53701Y7822* X53382Y8331D02* X53594Y8543D01* X53701* X53382Y9173D02* X53602Y9394D01* Y9409* X53382Y10012D02* X53505Y10134D01* Y10136* X53579Y10210* Y10222* X53382Y10433D02* X53583Y10634D01* Y10650* X53382Y12437D02* X53563Y12618D01* X53602* X53382Y12831D02* X53602Y13051D01* X53388Y19372D02* X53638Y19122D01* X53388Y20372D02* X53638Y20122D01* X53388Y25372D02* X53638Y25622D01* X53388Y26372D02* X53638Y26622D01* X53388Y26872D02* X53638Y27122D01* X53388Y29372D02* X53638Y29622D01* X53415Y3479D02* Y2742D01* Y8912D02* Y8504D01* X53460Y2742D02* Y3462D01* Y8549D02* Y8867D01* X53479Y8568D02* X53412Y8501D01* G03X53382Y8503I30J170* X53350Y8500J172* X53352Y8524I181J24* X53169Y8706I183* X52987Y8524J182* X52988Y8505I182* G01X52986Y8503* G03X52978I2J172* G01Y8504* G03X52795Y8686I183* X52613Y8504J182* X52682Y8361I182* G01Y8332* G03X52678Y8302I109J30* G01Y8175* X51027* G03X50945Y8194I82J163* X50862Y8175J182* G01X50827* G03X50809Y8167J25* G01X49825Y7183* G03X49818Y7165I18J18* G01Y6754* G03X49783Y6757I35J179* X49601Y6575J182* X49613Y6509I182* G01X49528Y6424* G03X49499Y6354I70J70* G01Y6094* X49493Y6088* X48627* G03X48663Y6197I147J109* X48480Y6379I183* X48469J182* G01X48440Y6407* G03X48437Y6437I172J1* X48480Y6432I43J177* X48663Y6614J182* X48659Y6653I183* X48687Y6650I30J170* G01X48715Y6622* G03Y6614I183J8* X48898Y6432I183* X49080Y6614J182* X48898Y6797I182* X48890Y6796J183* G01X48862Y6825* G03X48859Y6855I173J2* X48898Y6851I39J178* X49080Y7033J182* X48898Y7216I182* X48892J183* G01X48862Y7246* G03X48858Y7279I173J2* X48898Y7274I40J178* X49080Y7457J183* X49076Y7495I182* X49104Y7493I30J170* G01X49133Y7464* G03X49132Y7457I182J7* X49315Y7274I183* X49497Y7457J183* X49315Y7639I182* X49307J182* G01X49279Y7667* G03X49106Y7838I173J2* X48934Y7665J173* X48936Y7635I172* X48898Y7639I38J178* X48890J182* G01X48862Y7667* G03X48689Y7838I173J2* X48516Y7665J173* X48519Y7635I173* X48480Y7639I39J178* X48469J182* G01X48440Y7667* G03X48268Y7838I172J2* X48095Y7665J173* X48098Y7635I173* X48057Y7639I41J178* X48047J182* G01X48019Y7667* G03X47846Y7838I173J2* X47674Y7665J173* X47845Y7493I172* G01X47875Y7463* G03Y7457I182J6* X47880Y7413I182* X47846Y7417I34J169* X47674Y7244J173* X47845Y7071I172* G01X47875Y7041* G03Y7033I182J8* X47879Y6992I182* X47846Y6995I33J169* X47674Y6823J172* X47845Y6650I172* G01X47875Y6620* G03Y6614I182J6* X48057Y6432I182* X48098Y6436J182* X48095Y6406I170J30* X48266Y6233I173* G01X48298Y6201* G03Y6197I182J4* X48334Y6088I182* G01X47367* G03X47403Y6197I147J109* Y6205I183* G01X47431Y6233* G03X47602Y6406I2J173* X47429Y6578I173* X47399Y6575J172* X47403Y6614I179J39* Y6622I183* G01X47431Y6650* G03X47602Y6823I2J173* X47429Y6995I173* X47398Y6993J172* X47403Y7033I178J40* Y7043I183* G01X47431Y7071* G03X47602Y7244I2J173* X47429Y7417I173* X47398Y7414J173* X47403Y7457I178J43* Y7464I183* G01X47431Y7493* G03X47602Y7665I2J172* X47429Y7838I173* X47257Y7667J173* G01X47228Y7639* G03X47220I8J182* X47178Y7634J182* X47181Y7665I170J31* X47008Y7838I173* X46835Y7667J173* G01X46807Y7639* G03X46797I10J182* X46756Y7635J182* X46759Y7665I169J30* X46587Y7838I172* X46414Y7667J173* G01X46386Y7639* G03X46378I8J182* X46339Y7635J182* X46342Y7665I170J30* X46169Y7838I173* X45997Y7667J173* G01X45968Y7639* G03X45961I7J182* X45778Y7457J182* X45961Y7274I183* X46143Y7457J183* Y7464I182* G01X46171Y7493* G03X46200Y7495I2J172* X46195Y7457I178J38* X46378Y7274I183* X46417Y7279J183* X46414Y7246I170J35* G01X46384Y7216* G03X46378I6J183* X46195Y7033J183* X46378Y6851I183* X46417Y6855J182* X46414Y6825I170J32* G01X46386Y6796* G03X46378Y6797I8J182* X46195Y6614J183* X46378Y6432I183* X46560Y6614J182* Y6622I182* G01X46589Y6650* G03X46619Y6653I2J173* X46615Y6614I178J39* X46797Y6432I182* X46980Y6614J182* Y6620I183* G01X47010Y6650* G03X47042Y6654I2J173* X47038Y6614I178J40* X47220Y6432I182* X47259Y6436J182* X47257Y6407I170J30* G01X47228Y6379* G03X47220I8J182* X47038Y6197J182* X47074Y6088I182* G01X45719* X45576Y6231* Y8322* G03X45675Y8484I84J162* X45576Y8646I183* G01Y9714* X45719Y9857* X50305* X50447Y9714* Y9055* G03X50455Y9037I25* G01X50927Y8565* G03X50945Y8558I18J18* G01X52244* G03X52262Y8565J25* G01X52688Y8991* X53336* X53479Y8848* Y8568* X53505Y3433D02* Y2742D01* X53550D02* Y3420D01* X53595Y3419D02* Y2742D01* X53638Y20622D02* X53388Y20872D01* X53638Y21622D02* X53388Y21872D01* X53638Y22122D02* X53388Y22372D01* X53638Y23122D02* X53388Y23372D01* X53638Y24122D02* X53388Y23872D01* X53638Y28122D02* X53388Y27872D01* X53638Y28622D02* X53388Y28372D01* X53640Y2742D02* Y3429D01* X53685Y3452D02* Y2742D01* X53701Y7822D02* X54166Y8287D01* Y9223* X53976Y9413* Y10236* X53701Y8011D02* X53650Y7961D01* X53185* X53701Y8543D02* X53780D01* X53701Y10085D02* X53579Y9963D01* Y9791* X53382Y9594* X53701Y11155D02* X53616D01* X53515Y11256* X53382* X53701Y11358D02* X53720Y11339D01* X53701Y11831D02* X53563D01* X53382Y11650* X53720Y11831D02* X53701D01* X53730Y2781D02* Y3439D01* X53755Y2806D02* X53690Y2742D01* X53346* G03X53329Y2734J25* G01X53295Y2700* G03X53233Y2638I87J149* G01X53211Y2616* G03X53203Y2598I17J18* G01Y2491* X53139Y2427* X53002* X52963Y2466* G03X52952Y2477I134J123* G01X52860Y2569* Y2591* G03X52974Y2760I69J169* X52860Y2929I183* G01Y3010* G03X52974Y3179I69J169* X52860Y3348I183* G01Y3415* X52895Y3450* G03X52928Y3479I104J150* G01X53049* G03X53185Y3418I136J121* X53321Y3479J182* G01X53443* G03X53579Y3418I136J121* X53703Y3467J182* G01X53755Y3415* Y2806* X53780Y8307D02* Y8090D01* X53701Y8011* X53888Y18372D02* X54138Y18122D01* X53888Y19372D02* X54138Y19122D01* X53888Y19872D02* X54138Y19622D01* X53888Y20872D02* X54138Y20622D01* X53888Y22872D02* X54154Y22606D01* Y22520* X53888Y25372D02* X54094Y25579D01* Y25630* X53888Y28872D02* X54376D01* X54409Y28839* X53976Y11201D02* X53931Y11155D01* X53701* X53996Y11831D02* X54163Y11663D01* X56555* X54094Y26102D02* Y26079D01* X53888Y25872* X54138Y21122D02* X53888Y21372D01* X54138Y22122D02* X53888Y22372D01* X54138Y24122D02* X53888Y23872D01* X54138Y24622D02* X53888Y24372D01* X54138Y28622D02* X53888Y28372D01* X54152Y34988D02* X54154Y34986D01* Y34818* X53851* X53826Y34843* X53425* X54154Y34818D02* Y34724D01* Y35236D02* Y34989D01* X54152Y34988* X54154Y35630D02* X54000D01* X53980Y35610* X52559* X54311Y33110D02* Y32987D01* X54398Y32900* X54731* X54857Y32774* X55010* X55267Y32518* X55365* X54311Y33110D02* Y33421D01* X54323Y33433* Y33585* X54154Y33754* Y33858* X54409Y28839D02* X54626Y28622D01* X54449Y12421D02* Y12268D01* X54366Y12185* X54350* X54508Y34331D02* Y34138D01* X54431Y34061* X54396* X54394Y34059* X54238* X54154Y33975* Y33858* X54508Y34724D02* Y34331D01* Y35236D02* Y35330D01* X54409Y35429* X54239* X54154Y35515* Y35630* X54508Y35236D02* Y34724D01* X54665Y33110D02* X54704Y33149D01* Y33231* X54744Y33271* Y33465* X54720Y35236D02* Y35378D01* X54508Y35591* Y35630* X54744Y13012D02* X54874Y12882D01* X54984* X55133Y12732* Y12362* X55187* X54931Y5945D02* Y5463D01* X55059Y5335* X54931Y12362D02* X54739D01* X54680Y12421* X54449* X54941Y33937D02* Y33744D01* X55035* X55084Y33695* X55485* X55755Y33425* Y33307* X54941Y34331D02* Y34208D01* X55017Y34133* X55403* X55539Y33996* X55630* X54941Y34843D02* Y34331D01* Y35236D02* Y34843D01* X55020Y33071D02* Y33264D01* X55027Y33271* X55720* X55755Y33307* X55098Y33465D02* X55368D01* X55412Y33509* X55098Y33465D02* Y33539D01* X54994Y33644* X54900* X54685Y33858* X54508* X55177Y13130D02* Y12944D01* X55389Y12732* Y12362* X55443* X55187Y5945D02* Y5466D01* X55059Y5338* Y5335* X55187Y14016D02* X55133D01* Y14386* X55295Y33937D02* Y33834D01* X55608* X55929Y33513* X55295Y34331D02* Y34591D01* X55297Y34592* X55295Y34594* Y34843* X55298Y34592D02* X55297D01* X55383Y32794D02* X55132D01* X55052Y32874* X54913* X54837Y32950* Y32999* X54819Y33017* X54665* Y33110* X55443Y5945D02* X55497D01* Y5566* X55748Y5315* X55443Y14016D02* X55497D01* Y14386* X55619Y14508* X55768* X55512Y34567D02* X55567D01* X55527Y3886D02* Y3891D01* X55497Y3922* Y4291* X55443* X55527Y3886D02* X55492Y3851D01* Y3622* X55567Y34567D02* X55630Y34504D01* Y34350* X55567Y34567D02* X55630Y34630D01* Y34783* Y35138D02* Y35173D01* X55626* X55564Y35236* X55295* X55689Y3268D02* X55812Y3145D01* Y3068* X56439Y2441* X56654* X55699Y3922D02* X55663Y3886D01* X55527* X55699Y3922D02* X55742Y3879D01* X55872* X55910Y3917* X56102* X55699Y3922D02* Y4291D01* Y14016D02* X55945D01* X55728Y13583D02* X56060D01* X56302Y13340* X56667* X56680Y13327* X56909* X55728Y33071D02* X55374D01* X55755Y33307D02* X55790Y33271D01* X56026* X56173Y33419* X56404* X56417Y33406* X55827Y32736D02* X55866D01* X55970Y32841* Y32880* X56083Y32992* Y33071* X55866Y12756D02* X56856D01* X56909Y12809* Y12933* X55886Y13346D02* X56055D01* X56167Y13234* X56631* X56711Y13154* X56909* Y13130* X55886Y21752D02* X56614D01* X55886Y21949D02* X56457D01* X55886Y22146D02* X56319D01* X55886Y22343D02* X56161D01* X55929Y33789D02* X55877D01* X55669Y33996* X55630* X55929Y34606D02* X55988Y34665D01* X56299* X56142Y5531D02* X56417Y5807D01* X56909* X56161Y7343D02* X56184D01* X56539Y6988* X56909* X56201Y14252D02* X56071Y14382D01* Y14464* X55844Y14691* X55438* X55133Y14386* X56201Y15768D02* X56662D01* X56716Y15822* X56909* Y15846* X56260Y9508D02* X56474D01* X56514Y9468* X56656* X56696Y9508* X56909* X56280Y4921D02* X55361D01* X55187Y4748* Y4291* X56280Y15413D02* X56522Y15656D01* X56690* X56696Y15650* X56909* X56299Y32661D02* Y32598D01* X56083Y32382* X55827* X56299Y33134D02* X56236Y33071D01* X56083* X56319Y22146D02* X56909D01* X56328Y33228D02* Y33163D01* X56299Y33134* X56328Y33236D02* Y33228D01* X56339Y21024D02* X56346D01* X56444Y20925* X56457* X56339Y25807D02* X56611D01* X56635Y25783* X56909* Y25807* X56339Y32661D02* X56299D01* X56339D02* Y32638D01* X56378Y6004D02* X56909D01* X56417Y33406D02* X56477Y33346D01* X56437Y5531D02* X56629D01* X56708Y5610* X56909* X56457Y20728D02* X56398D01* X56358Y20689* X56378* X56457Y20925D02* X56909D01* X56457Y21949D02* X56909D01* X56476Y11299D02* Y11293D01* X56603Y11167* X56608Y11161* X56909* X56476Y25551D02* X56660D01* X56716Y25608* Y25610* X56909* X56476Y26949D02* X56678D01* X56737Y26890* X56909* X56476Y27224D02* X56678D01* X56737Y27283* X56909* X56476Y29429D02* X56679D01* X56738Y29370* X56909* X56476Y29705D02* X56679D01* X56738Y29764* X56909* X56476Y30217D02* X56679D01* X56738Y30157* X56909* X56476Y30492D02* X56679D01* X56738Y30551* X56909* X56476Y32185D02* X56663D01* X56722Y32244* X56909* X56477Y33346D02* X56511Y33312D01* Y33228* Y33135* X56339Y32962* Y32661* X56535Y16299D02* X56644Y16191D01* X56693* X56841Y16043* X56909* X56614Y3445D02* X56909D01* X56614Y32697D02* X56673Y32638D01* X56909* X56634Y5118D02* X56909D01* X56634Y13780D02* X56657D01* Y13596* X56706Y13548* X56909* Y13524* X56654Y4528D02* X56755D01* X56756* X56909* X56654Y6398D02* X56837D01* X56909Y6325* Y6201* X56850Y25000D02* X56909Y25059D01* Y25217* Y2362D02* Y2455D01* X56668* X56654Y2441* X56909Y2854D02* X56339D01* X56909Y3051D02* X56594D01* X56909Y3248D02* X56358D01* X56909Y4232D02* Y3937D01* Y6791D02* X56713D01* X56654Y6732* X56909Y7185D02* Y7309D01* X56601* X56594Y7303* X56909Y9114D02* Y8990D01* X56837Y8917* X56614* X56909Y9311D02* X56654D01* X56614Y9272* X56909Y9705D02* X56634D01* X56614Y9685* X56909Y10571D02* X56280D01* X56260Y10591* X56909Y10768D02* X56476D01* X56909Y10965D02* X56646D01* X56567Y11043* X56339* X56909Y14193D02* X56713D01* X56555Y14035* X56909Y14390D02* X56614D01* X56476Y14252* X56909Y14587D02* X56654D01* X56909Y14783D02* X56673D01* X56654Y14803* X56909Y15453D02* Y15329D01* X56982Y15256* X57087* X56909Y20335D02* X56717D01* X56690Y20307* X56672* X56633Y20268* Y20249* X56909Y20531D02* X56614D01* X56909Y20728D02* X56457D01* X56909Y21752D02* X56614D01* X56909Y22343D02* X56161D01* X56909Y24528D02* Y24621D01* X56648* X56614Y24587* X56909Y25413D02* X56716D01* X56586Y25283* Y25149* X56457Y25020* X56909Y28130D02* X56476D01* X56909Y28327D02* X56692D01* X56613Y28406* X56476* X56909Y31850D02* X56738D01* X56679Y31909* X56476* X56909Y33031D02* X56693D01* X56634Y32972* X56909Y34646D02* X56756D01* X56693Y34709* Y34823* X56909Y35039D02* X56693D01* X56988Y34252D02* X56834D01* X56815Y34232* X56693Y34110* Y34094* X57264Y5807D02* X61122D01* X61614Y6299* X57264Y6004D02* X60531D01* X60827Y6299* X57264Y9311D02* X57495D01* X58112Y9927* X58570* X59342Y10699* Y11465* X59829Y11952* X60180* X60827Y12598* X57264Y9508D02* Y9532D01* X57481* X58120Y10171* Y11994* X58352Y12226* X58887* X59063Y12403* X59252Y12592* Y12598* X57264Y12933D02* Y12744D01* X57311Y12697* X57317* X57336Y12677* X57520* X57264Y13130D02* X57457D01* X57476Y13111* X58793* X58904Y13221* Y13554* X59077Y13728* X59450* X59657Y13934* Y14578* X60039Y14961* X57264Y13524D02* X57573D01* X57921Y13871* X58672* X58768Y13967* Y14477* X58918Y14627* Y15137* X59252Y15471* Y15748* X57264Y14193D02* X58003D01* X58397Y14588* X58634* X58772Y14725* Y15263* X58936Y15428* Y15866* X59157Y16087* X61953* X62402Y16535* X57264Y14390D02* X57883D01* X58111Y14618* Y15160* X58271Y15321* X58535* X58779Y15565* Y15895* X59104Y16220* X61082* X61296Y16434* Y17004* X61614Y17323* X57264Y14587D02* X57793D01* X57931Y14725* Y15187* X58175Y15430* Y15872* X58386Y16083* X58733* X58924Y16274* Y16663* X59120Y16859* X60363* X60827Y17323* X57264Y15453D02* X57488D01* X57900Y15864* Y15953* X58167Y16221* Y16679* X58333Y16844* X58669* X58934Y17109* Y17489* X59125Y17679* X60385* X60520Y17814* Y18591* X60827Y18898* X57264Y15650D02* Y15674D01* X57476* X57771Y15969* Y16002* X58035Y16267* Y16735* X58285Y16984* X58631* X58799Y17152* Y17535* X59070Y17805* X60221* X60387Y17971* Y18933* X60684Y19231* X61281* X61614Y18898* X57264Y20335D02* X57446D01* X57551Y20231* Y20228* X57264Y20531D02* Y20532D01* X57512* X57549Y20495* X57264Y21752D02* X57559D01* X57264Y21949D02* X57795D01* X57264Y22146D02* X57559D01* X57264Y24528D02* Y24559D01* X57400Y24694* X57500Y24795* X59637* X60039Y25197* X57264Y25610D02* X57539D01* X57579Y25650* Y25669* X57264Y25807D02* X57457D01* X57579Y25929* Y25945* X57264Y26496D02* X57577D01* X57579Y26498* X57264Y28130D02* X57520D01* X57559Y28091* X57264Y30551D02* X57500D01* X57559Y30492* X57264Y33425D02* X57418D01* X57496Y33346* X57264Y34646D02* X57559D01* X57598Y34685* X57264Y35039D02* X57539D01* X57598Y34980* X57264Y36693D02* Y36664D01* X57430Y36497* X58574* X60827Y34244* Y33858* X57343Y34252D02* X57579D01* X57677Y34154* X57402Y17972D02* Y17913D01* Y17972D02* Y18284D01* X57206Y18479* X57016* X56909Y18586* Y18858* X57480Y36929D02* X57435D01* X57383Y36877* X57264Y36758* Y36693* X57496Y33346D02* X57614Y33228D01* X57548Y21030D02* X57446Y20928D01* Y20926* X57264* Y20925* X57551Y20764D02* X57515Y20728D01* X57264* X57559Y22638D02* Y22445D01* X57456Y22343* X57264* X57559Y22638D02* X58145Y23224D01* X58854* X59252Y23622* X57559Y25020D02* Y25114D01* X57457Y25217* X57264* X57559Y28366D02* X57520Y28327D01* X57264* X57559Y28839D02* X57717D01* X57559D02* Y28823D01* X57457Y28720* X57264* X57559Y28839D02* Y28858D01* Y29429D02* X57500Y29370D01* X57264* X57559Y29705D02* X57500Y29764D01* X57264* X57559Y30217D02* X57500Y30157D01* X57264* X57559Y31909D02* X57500Y31850D01* X57264* X57559Y32185D02* X57500Y32244D01* X57264* X57559Y32697D02* X57500Y32638D01* X57264* X57559Y32972D02* X57500Y33031D01* X57264* X57571Y27283D02* X57264D01* X57574Y26890D02* X57264D01* X57579Y25354D02* X57520Y25413D01* X57264* X57579Y30945D02* X57264D01* X57579Y31240D02* X57480Y31339D01* X57264* X57614Y33228D02* X57776Y33067D01* Y32421* X57638Y33819D02* X57343D01* X57695Y36102D02* X57616Y36181D01* X57264* X57717Y26498D02* X57579D01* X57717Y28583D02* X57516D01* X57457Y28524* X57264* X57717Y28839D02* X57901D01* X58034Y28705* X58893* X59252Y28346* X57756Y28583D02* X57717D01* X57756D02* X58386Y27953D01* X62008* X62402Y27559* X57795Y35085D02* X57408Y35472D01* X57264Y35616* Y35630* X57795Y36002D02* X57695Y36102D01* X59252Y3150D02* X58957Y3445D01* X57264* X59252Y4724D02* X58908Y4380D01* X57943* X57796Y4528* X57264* X59252Y8661D02* X58869Y8278D01* Y7718* X58613Y7462* X58257* X57783Y6988* X57264* X59252Y14961D02* Y14657D01* X58909Y14314* Y13833* X58784Y13708* X58273* X57892Y13327* X57264* X59252Y17323D02* Y17051D01* X59183Y16982* X59026* X58783Y16738* Y16377* X58649Y16243* X58368* X58031Y15906* Y15503* X57771Y15243* Y14866* X57688Y14783* X57264* X59252Y25984D02* X58948Y26288D01* X57922* X57708Y26074* X57579Y25945* X60039Y8661D02* X59727Y8974D01* X58201* X57950Y8723* Y7426* X57708Y7185* X57264* X60039Y19685D02* X59584Y19230D01* Y18716* X59451Y18582* X59027* X58786Y18341* Y17904* X58675Y17793* X58316* X58070Y17546* Y17145* X57758Y16833* Y16331* X57470Y16043* X57264* X60039Y25984D02* X59724Y25669D01* X57579* X60039Y32283D02* X59677Y32646D01* X58300* X57916Y33029* Y34964* X57795Y35085* X60039Y33858D02* X59657Y34240D01* X58359* X58118Y34481* Y35679* X57795Y36002* X60039Y33858D02* Y33474D01* X60818Y32695* X62531* X62716Y32510* Y10166* X61681Y9132* X58217* X57796Y8711* X56464* X56306Y8870* Y9131* X55205Y10232* X54662* X54382Y10512* X53877* X53778Y10413* Y10162* X53701Y10085* X60827Y3150D02* X60523Y2846D01* X58162* X57759Y3248* X57264* X60827Y7874D02* X60463Y7510D01* Y6950* X60304Y6791* X57264* X60827Y26772D02* X60511Y26456D01* X57958* X57917Y26498* X57717* X60827Y33071D02* X61229Y33473D01* Y36356* X60918Y36666* X58157* X57658Y37165* X57264* X61614Y3150D02* X61179Y2714D01* X57999* X57662Y3051* X57264* X61614Y12598D02* Y11878D01* X60796Y11060* Y10467* X60108Y9779* X58217* X57553Y9114* X57264* X62402Y3150D02* X62034Y2782D01* Y2215* X61825Y2006* X58339* X57490Y2854* X57264* X62402Y6299D02* X62048Y5946D01* Y5456* X61729Y5136* X58074* X57600Y5610* X57264* X62402Y7087D02* X61938Y6623D01* X57985* X57563Y6201* X57264* X62402Y13386D02* X61949Y12933D01* X58211* X57778Y12499* Y10021* X57461Y9705* X57264* X62402Y19685D02* X62083Y19367D01* X60003* X59733Y19098* Y18636* X59546Y18448* X59127* X58945Y18266* Y17872* X58690Y17617* X58342* X58179Y17454* Y17073* X57893Y16787* Y16298* X57465Y15871* X57264* Y15846* X62402Y25984D02* X61937Y25520D01* X57744* X57708Y25483* X57579Y25354* G54D11* X2953Y37402D03* X3150Y1575D03* X60039Y11024D03* G54D12* X8465Y37205D03* X19094Y2165D03* X22638Y37205D03* X55146Y2165D03* Y37205D03* G54D13* X40945Y15354D03* Y31890D03* X54331Y15354D03* Y31890D03* G54D14* X4028Y49794D02* X4024Y49793D01* X4021Y49790* X4018Y49786* X4016Y49782* Y49215* X4018Y49211* X4020Y49207* X4024Y49206* X4028Y49205* X4033Y49206* X4037Y49207* X4039Y49211* X4041Y49215* Y49513* X4308* X4313Y49514* X4316Y49517* X4318Y49521* Y49525* Y49530* X4316Y49534* X4313Y49536* X4308Y49537* X4041* Y49769* X4426* X4431Y49771* X4434Y49773* X4436Y49777* Y49781* Y49786* X4434Y49790* X4431Y49793* X4426Y49794* X4028* Y50778D02* X4024Y50777D01* X4021Y50774* X4019Y50770* X4018Y50766* X4019Y50761* X4021Y50757* X4024Y50755* X4028Y50754* X4215* Y50199* X4217Y50195* X4219Y50192* X4223Y50190* X4227Y50189* X4231Y50190* X4236Y50192* X4238Y50195* X4239Y50199* Y50754* X4426* X4431Y50755* X4434Y50757* X4436Y50761* Y50766* Y50770* X4434Y50774* X4431Y50777* X4426Y50778* X4028* Y53731D02* X4024Y53730D01* X4021Y53727* X4018Y53723* X4016Y53719* Y53152* X4018Y53147* X4021Y53144* X4024Y53141* X4028Y53140* X4426* X4431Y53141* X4434Y53144* X4436Y53148* Y53152* Y53157* X4434Y53161* X4431Y53163* X4426Y53164* X4041* Y53424* X4308* X4313Y53425* X4316Y53427* X4318Y53431* Y53435* Y53440* X4316Y53443* X4313Y53446* X4308Y53447* X4041* Y53706* X4426* X4431Y53708* X4434Y53710* X4436Y53714* Y53718* Y53723* X4434Y53727* X4431Y53730* X4426Y53731* X4028* X4040Y46833D02* X4038Y46835D01* X4036Y46837* X4034Y46838* X4031Y46839* X4026* X4022Y46838* X4019Y46836* X4018Y46834* X4017Y46832* X4016Y46829* Y46828* Y46262* X4018Y46258* X4020Y46255* X4024Y46253* X4028Y46252* X4033Y46253* X4037Y46255* X4039Y46258* X4041Y46262* Y46764* X4216Y46299* X4218Y46296* X4220Y46294* X4223Y46293* X4227* X4231* X4234Y46294* X4237Y46296* X4239Y46299* X4414Y46764* Y46262* X4416Y46258* X4418Y46255* X4422Y46253* X4426Y46252* X4430Y46253* X4435Y46255* X4437Y46258* X4438Y46262* Y46829* X4436Y46834* X4433Y46838* X4429Y46839* X4423* X4420Y46838* X4419Y46837* X4417Y46835* X4415Y46833* X4414Y46831* X4227Y46337* X4041Y46831* X4040Y46833* X4041Y47813D02* X4040Y47818D01* X4037Y47821* X4033Y47823* X4029* X4024* X4020Y47821* X4018Y47818* X4017Y47813* Y47493* X4016Y47490* X4017Y47488* Y47246* X4018Y47242* X4020Y47239* X4024Y47237* X4029Y47236* X4033Y47237* X4037Y47239* X4040Y47242* X4041Y47246* Y47486* X4067Y47544* X4110Y47601* X4149Y47621* X4151Y47622* X4190Y47639* X4267* X4318Y47631* X4367Y47600* X4389Y47576* X4407Y47539* X4415Y47488* Y47246* X4416Y47242* X4418Y47239* X4422Y47237* X4427Y47236* X4431Y47237* X4435Y47239* X4437Y47242* X4438Y47246* Y47487* Y47491* X4431Y47544* X4430Y47545* X4429Y47547* Y47548* X4409Y47587* X4408Y47588* Y47590* Y47591* X4383Y47618* X4382Y47620* X4380Y47621* X4329Y47654* X4327Y47655* X4326* X4324Y47656* X4269Y47663* X4268* X4188* X4185* X4183* X4141Y47644* X4139Y47642* X4096Y47621* X4094Y47620* X4092Y47619* X4047Y47557* X4046Y47555* X4045Y47554* X4041Y47544* Y47813* Y52722D02* X4324D01* X4374Y52685* X4415Y52630* Y52557* X4373Y52499* X4324Y52463* X4041* Y52722* X4362Y51634D02* X4397Y51583D01* X4414Y51470* X4397Y51349* X4362Y51270* X4313Y51219* X4265Y51196* X4041* Y51738* X4264* X4311Y51703* X4361Y51635* X4362Y51634* X4393Y52701D02* X4391Y52702D01* X4390Y52703* X4334Y52744* X4331Y52745* X4330Y52746* X4327* X4029* X4024Y52745* X4021Y52742* X4018Y52739* X4017Y52735* Y52168* X4018Y52164* X4020Y52160* X4024Y52158* X4029* X4033* X4037Y52160* X4040Y52164* X4041Y52168* Y52439* X4327* X4330* X4332Y52440* X4334Y52441* X4390Y52481* X4392Y52483* X4394Y52487* X4437Y52545* Y52546* Y52547* X4438* Y52549* Y52550* Y52552* Y52634* Y52636* Y52637* X4437Y52638* Y52639* Y52640* X4393Y52701* X4422Y51590D02* X4421Y51592D01* Y51593* X4419Y51594* Y51595* X4382Y51646* X4381Y51648* X4330Y51719* X4329Y51720* X4327Y51721* Y51722* X4275Y51760* X4272Y51761* X4270Y51762* X4268* X4029* X4024Y51761* X4021Y51758* X4018Y51755* X4017Y51750* Y51183* X4018Y51179* X4021Y51176* X4024Y51173* X4029Y51172* X4268* X4272* X4324Y51197* X4327Y51199* X4328Y51201* X4381Y51256* X4382Y51257* X4383Y51260* X4421Y51341* Y51342* X4422Y51343* Y51344* X4439Y51469* Y51472* X4422Y51590* X4585Y47623D02* X4581Y47621D01* X4578Y47619* X4576Y47615* X4575Y47611* X4576Y47607* X4578Y47603* X4581Y47600* X4585Y47599* X4773* Y47246* X4774Y47242* X4776Y47239* X4780Y47237* X4784Y47236* X4789Y47237* X4793Y47239* X4795Y47242* X4796Y47246* Y47599* X4983* X4988Y47600* X4991Y47603* X4993Y47607* X4994Y47611* X4993Y47615* X4991Y47619* X4988Y47621* X4983Y47623* X4796* X4797Y47813* X4796Y47818* X4793Y47821* X4789Y47823* X4785* X4781* X4777Y47821* X4774Y47818* X4773Y47813* Y47623* X4585* X4599Y53719D02* X4598Y53724D01* X4595Y53727* X4591Y53728* X4586Y53729* X4582Y53728* X4578Y53727* X4576Y53724* X4575Y53719* Y53152* X4576Y53147* X4578Y53144* X4582Y53143* X4586Y53142* X4591Y53143* X4595Y53144* X4598Y53147* X4599Y53152* Y53389* X4697Y53469* X4976Y53144* X4978Y53143* X4980Y53141* X4981* X4984* X4987Y53143* X4991Y53145* X4994Y53148* X4996Y53152* Y53156* X4994Y53160* X4714Y53484* X4992Y53709* X4994Y53712* X4996Y53717* X4994Y53721* X4993Y53725* X4989Y53728* X4986Y53730* X4983Y53731* X4981Y53730* X4980* X4978Y53728* X4599Y53420* Y53719* Y52735D02* X4598Y52739D01* X4595Y52742* X4591Y52744* X4587Y52745* X4582Y52744* X4578Y52742* X4576Y52739* X4575Y52735* Y52414* X4574Y52412* X4575Y52409* Y52168* X4576Y52164* X4578Y52160* X4582Y52158* X4587* X4591* X4595Y52160* X4598Y52164* X4599Y52168* Y52407* X4625Y52465* X4668Y52523* X4707Y52543* X4709* X4748Y52560* X4825* X4876Y52553* X4925Y52521* X4947Y52497* X4965Y52461* X4973Y52409* Y52168* X4974Y52164* X4976Y52160* X4981Y52158* X4985* X4989* X4993Y52160* X4995Y52164* X4996Y52168* Y52408* Y52412* X4989Y52465* X4988Y52467* X4987Y52468* Y52469* X4967Y52508* X4966Y52510* Y52511* Y52512* X4942Y52539* X4940Y52541* Y52542* X4938Y52543* X4887Y52575* X4885Y52576* X4884* X4882Y52577* X4827Y52585* X4826* X4746* X4743* X4741Y52584* X4699Y52566* X4697Y52563* X4655Y52542* X4652Y52541* X4650Y52540* X4605Y52478* X4604Y52477* X4603Y52475* X4599Y52465* Y52735* X4656Y51434D02* X4845D01* X4849Y51433* X4852Y51431* X4854Y51428* X4855Y51424* X4854Y51420* X4852Y51417* X4849Y51414* X4845* X4656* X4652* X4649Y51417* X4647Y51420* X4646Y51424* X4647Y51428* X4648Y51431* X4651Y51433* X4656Y51434* X4709Y50569D02* X4748Y50586D01* X4824* X4875Y50578* X4924Y50547* X4947Y50522* X4965Y50487* X4970Y50450* X4605* X4625Y50491* X4668Y50548* X4707Y50568* X4709Y50569* X4824Y46274D02* X4747D01* X4701Y46290* Y46291* X4657Y46318* X4618Y46369* X4599Y46423* Y46498* X4625Y46555* X4668Y46611* X4707Y46631* X4709Y46632* X4748Y46649* X4824* X4889Y46641* X4935Y46611* X4973Y46576* Y46347* X4939Y46312* X4878Y46282* X4824Y46274* Y49227D02* X4747D01* X4701Y49243* Y49244* X4657Y49270* X4618Y49321* X4599Y49376* Y49451* X4625Y49507* X4668Y49564* X4707Y49584* X4709Y49585* X4748Y49602* X4824* X4889Y49594* X4935Y49564* X4973Y49529* Y49299* X4939Y49265* X4878Y49234* X4824Y49227* Y50211D02* X4823D01* X4748* X4701Y50227* Y50228* X4657Y50255* X4618Y50306* X4599Y50360* Y50426* X4984* X4987* X4990Y50427* X4991Y50429* X4993Y50431* X4994Y50433* X4996Y50435* Y50437* Y50440* X4988Y50491* X4987Y50495* X4984Y50498* X4979Y50499* X4975* X4971Y50498* X4967Y50496* X4965Y50493* Y50489* Y50487* X4966Y50484* X4969Y50481* X4973Y50480* X4977* X4981Y50481* X4984Y50483* X4987Y50487* X4988Y50489* Y50491* Y50493* X4987Y50495* X4967Y50535* X4966Y50538* X4941Y50564* X4939Y50567* X4938Y50568* X4886Y50600* X4885Y50601* X4883* X4882Y50602* X4827Y50610* X4825* X4746* X4745* X4743Y50609* X4742Y50608* X4699Y50591* X4697Y50588* X4654Y50568* X4652Y50566* X4650Y50565* X4605Y50504* X4603Y50503* Y50502* X4575Y50443* Y50439* Y50436* Y50359* Y50356* Y50355* X4597Y50295* X4598Y50293* X4599* X4640Y50238* X4641Y50236* X4642Y50235* X4688Y50207* X4691Y50206* X4693* X4742Y50188* X4743* X4745Y50187* X4746* X4825* X4827* X4882Y50194* X4885* X4886Y50195* X4888Y50196* X4952Y50229* X4955Y50231* X4994Y50271* X4996Y50274* Y50278* X4994Y50282* X4991Y50285* X4987Y50288* X4984Y50290* X4980Y50289* X4976Y50287* X4939Y50249* X4878Y50219* X4824Y50211* X4996Y46661D02* X4995Y46665D01* X4993Y46669* X4988Y46670* X4984Y46671* X4980Y46670* X4976Y46669* X4974Y46665* X4973Y46661* Y46609* X4952Y46630* X4951Y46631* X4900Y46663* X4899Y46664* X4896* Y46665* X4827Y46673* X4824* X4746* X4745* X4743Y46672* X4741Y46671* X4699Y46654* X4697Y46651* X4654Y46631* X4652Y46629* X4650Y46628* X4605Y46567* X4603Y46566* Y46565* X4575Y46506* Y46503* Y46501* Y46499* Y46422* Y46419* Y46418* X4597Y46358* X4598Y46356* X4599* X4640Y46301* X4641Y46299* X4642Y46298* X4688Y46270* X4691Y46269* X4693* X4741Y46251* X4743* X4745Y46250* X4746* X4824* X4827* X4882Y46257* X4885* X4886Y46258* X4888Y46259* X4952Y46292* X4953* X4955Y46294* X4973Y46313* Y46262* X4974Y46258* X4976Y46255* X4980Y46253* X4984Y46252* X4988Y46253* X4993Y46255* X4995Y46258* X4996Y46262* Y46661* Y49614D02* X4995Y49618D01* X4993Y49621* X4988Y49623* X4984Y49624* X4980Y49623* X4976Y49621* X4974Y49618* X4973Y49614* Y49562* X4952Y49582* X4951Y49584* X4900Y49616* X4899Y49617* X4896* Y49618* X4827Y49625* X4824* X4746* X4745* X4743* X4741Y49624* X4699Y49606* X4697Y49604* X4654Y49583* X4652Y49582* X4650Y49581* X4605Y49520* X4603Y49519* Y49518* X4575Y49459* Y49455* Y49454* Y49452* Y49374* Y49371* Y49370* X4597Y49311* X4598Y49309* X4599Y49308* X4640Y49253* X4641Y49252* X4642Y49251* X4688Y49223* X4691Y49222* X4693Y49221* X4741Y49204* X4743* X4745Y49203* X4746* X4824* X4827* X4882Y49210* X4885* X4886Y49211* X4888Y49212* X4952Y49244* X4953Y49245* X4955Y49247* X4973Y49266* Y49215* X4974Y49211* X4976Y49207* X4980Y49206* X4984Y49205* X4988Y49206* X4993Y49207* X4995Y49211* X4996Y49215* Y49614* X5131Y51291D02* X5128Y51293D01* X5123Y51294* X5119Y51292* X5115Y51290* X5112Y51286* X5111Y51281* Y51277* X5113Y51273* X5167Y51219* X5168Y51218* X5171Y51217* X5172Y51216* X5277Y51172* X5278* X5281* X5361* X5363* X5364* X5366* X5469Y51217* X5472Y51219* X5474Y51220* X5519Y51274* Y51276* X5520Y51277* X5522Y51280* X5532Y51362* Y51365* X5523Y51440* X5522Y51443* X5521* X5520Y51445* X5519Y51447* X5475Y51499* X5474* X5473Y51501* X5471Y51502* X5404Y51535* X5401Y51536* X5397* X5309Y51541* X5308* X5305* X5201Y51530* X5200* X5198* X5136Y51509* X5172Y51738* X5520* X5524Y51739* X5528Y51742* X5530Y51746* Y51750* Y51755* X5528Y51759* X5524Y51761* X5520Y51762* X5162* X5157Y51761* X5154Y51758* X5151Y51755* Y51752* X5110Y51494* Y51490* X5111Y51487* X5113Y51485* X5115Y51483* X5118Y51481* X5121Y51479* X5123* X5126Y51480* X5204Y51506* X5306Y51516* X5308* X5395Y51512* X5459Y51481* X5499Y51434* X5507Y51364* X5498Y51287* X5458Y51239* X5358Y51196* X5284* X5182Y51238* X5131Y51291* X5134Y49224D02* X5325Y49414D01* X5134Y49604* X5133Y49606* X5131Y49608* Y49609* Y49612* X5133Y49617* X5136Y49620* X5140Y49622* X5144Y49624* X5149* X5152Y49622* X5342Y49432* X5533Y49622* X5537Y49624* X5541* X5545Y49622* X5549Y49620* X5551Y49617* X5553Y49612* Y49608* X5551Y49604* X5360Y49414* X5551Y49224* X5553Y49220* Y49216* X5551Y49211* X5549Y49207* X5545Y49205* X5541Y49204* X5537* X5533Y49207* X5342Y49396* X5152Y49207* X5149Y49204* X5144* X5140Y49205* X5136Y49207* X5133Y49211* X5132Y49216* Y49220* X5134Y49224* X5142Y47623D02* X5138Y47621D01* X5135Y47619* X5133Y47615* X5132Y47611* X5133Y47607* X5135Y47603* X5138Y47600* X5142Y47599* X5330* Y47246* X5331Y47242* X5333Y47239* X5337Y47237* X5341Y47236* X5345Y47237* X5350Y47239* X5352Y47242* X5353Y47246* Y47599* X5540* X5545Y47600* X5548Y47603* X5550Y47607* Y47611* Y47615* X5548Y47619* X5545Y47621* X5540Y47623* X5353* X5354Y47813* X5353Y47818* X5350Y47821* X5346Y47823* X5342* X5338* X5334Y47821* X5331Y47818* X5330Y47813* Y47623* X5142* X5144Y53731D02* X5140Y53730D01* X5137Y53727* X5134Y53723* X5133Y53719* Y53152* X5134Y53148* X5136Y53144* X5140Y53143* X5144Y53142* X5149Y53143* X5153Y53144* X5156Y53148* X5157Y53152* Y53450* X5424* X5429Y53451* X5432Y53454* X5434Y53458* Y53462* Y53467* X5432Y53471* X5429Y53473* X5424Y53474* X5157* Y53706* X5542* X5547Y53708* X5550Y53710* X5552Y53714* Y53718* Y53723* X5550Y53727* X5547Y53730* X5542Y53731* X5144* X5259Y46666D02* X5270Y46681D01* X5276* X5287Y46666* Y46658* X5276Y46644* X5270* X5259Y46658* Y46666* Y52572D02* X5270Y52586D01* X5276* X5287Y52572* Y52563* X5276Y52550* X5270* X5259Y52563* Y52572* X5260Y46623D02* X5261Y46621D01* X5264* X5266* X5280* X5283* X5286* X5287Y46623* X5302Y46644* X5304Y46646* Y46650* X5305Y46652* Y46672* X5304Y46675* Y46679* X5302Y46681* X5287Y46701* X5285Y46703* X5283* X5280Y46705* X5266* X5264Y46704* Y46703* X5261* X5260Y46701* X5244Y46681* X5242Y46678* Y46675* Y46672* Y46652* Y46650* Y46646* X5244Y46644* X5260Y46623* Y52529D02* X5261Y52527D01* X5264Y52526* X5266* X5281* X5283* X5286Y52527* X5288Y52529* X5302Y52549* X5304Y52552* Y52555* X5305Y52557* Y52578* X5304Y52581* Y52584* X5302Y52587* X5288Y52606* X5285Y52608* X5283Y52609* X5281Y52610* X5266* X5265Y52609* X5264* X5261Y52608* X5260Y52606* X5244Y52587* X5243Y52583* X5242Y52581* Y52578* Y52557* Y52555* X5243Y52552* X5244Y52549* X5260Y52529* X5280Y46582D02* Y46586D01* X5278Y46589* X5275Y46592* X5271* X5267* X5265Y46589* X5263Y46586* Y46582* Y46262* Y46258* X5265Y46255* X5267Y46253* X5271Y46252* X5275Y46253* X5278Y46255* X5280Y46258* Y46262* Y46582* Y50766D02* Y50770D01* X5278Y50773* X5275Y50775* X5271Y50776* X5267Y50775* X5265Y50773* X5263Y50770* Y50766* Y50199* Y50194* X5265Y50192* X5267Y50190* X5271Y50189* X5275Y50190* X5278Y50192* X5280Y50194* Y50199* Y50766* X5281Y52488D02* X5280Y52492D01* X5278Y52495* X5275Y52497* X5271Y52498* X5268Y52497* X5265Y52495* X5263Y52492* Y52488* Y52168* Y52164* X5265Y52160* X5268Y52158* X5271* X5275* X5278Y52160* X5280Y52164* X5281Y52168* Y52488* X5559Y50360D02* X5560Y50357D01* X5563* X5565* X5580* X5581* X5584* X5587Y50360* X5602Y50379* X5603Y50382* Y50384* X5604Y50385* Y50388* Y50406* X5603Y50409* Y50412* X5602Y50415* X5587Y50434* X5584Y50435* X5581Y50436* Y50437* X5580* X5565* X5564* X5563Y50436* X5561Y50435* X5559Y50434* X5544Y50415* X5542Y50411* X5541Y50409* Y50406* Y50388* Y50384* X5542Y50382* X5544Y50379* X5559Y50360* Y50401D02* X5569Y50414D01* X5575* X5586Y50401* Y50392* X5575Y50380* X5569* X5559Y50392* Y50401* Y50508D02* X5560Y50505D01* X5563* X5565* X5580* X5581* X5584* X5587Y50508* X5602Y50526* X5603Y50529* Y50532* X5604Y50533* Y50535* Y50554* X5603Y50556* Y50558* X5602Y50563* X5587Y50581* X5584Y50584* X5581* Y50585* X5580* X5565* X5564* X5563Y50584* X5560* X5559Y50581* X5544Y50563* X5542Y50559* X5541Y50556* Y50554* Y50535* Y50532* X5542Y50529* X5544Y50526* X5559Y50508* Y50549D02* X5569Y50562D01* X5575* X5586Y50549* Y50540* X5575Y50528* X5569* X5559Y50540* Y50549* X5581Y46829D02* Y46833D01* X5579Y46836* X5576Y46838* X5572Y46839* X5568Y46838* X5566Y46836* X5564Y46833* Y46829* Y46262* Y46257* X5566Y46255* X5568Y46253* X5572Y46252* X5576Y46253* X5579Y46255* X5581Y46257* Y46262* Y46829* X5582Y52734D02* X5581Y52738D01* X5579Y52742* X5576Y52744* X5572* X5569* X5566Y52742* X5565Y52738* X5564Y52734* Y52168* X5565Y52163* X5566Y52160* X5569Y52158* X5572* X5576* X5579Y52160* X5581Y52163* X5582Y52168* Y52734* X5687Y47003D02* X5689Y46998D01* X5691Y46995* X5695Y46993* X5699* X5704* X5708Y46995* X5710Y46998* X5712Y47003* Y47298* X5731Y47278* X5732Y47277* X5733* X5783Y47245* X5785Y47244* X5788Y47243* X5856Y47235* X5857* X5859* X5938* X5940* X5941* X5943* X5984Y47253* X5986Y47254* X5987Y47255* X6030Y47277* X6033Y47280* X6034* X6079Y47342* X6080Y47343* Y47344* X6108Y47404* X6109Y47405* Y47407* Y47409* Y47491* Y47493* X6108Y47494* X6087Y47554* Y47556* X6085Y47559* X6044Y47614* X6041Y47617* X5995Y47646* X5993Y47647* X5991* X5942Y47665* X5940* X5938Y47666* X5859* X5857* X5856* X5801Y47658* X5798Y47657* X5797Y47656* X5732Y47624* X5730Y47623* X5729Y47622* Y47621* X5728Y47620* X5712Y47603* Y47653* X5710Y47657* X5708Y47661* X5704Y47663* X5699Y47664* X5695Y47663* X5691Y47661* X5689Y47657* X5687Y47653* Y47003* X5746Y46638D02* X5741Y46637D01* X5738Y46634* X5736Y46631* Y46627* Y46622* X5738Y46618* X5741Y46616* X5746Y46615* X5933* Y46262* X5934Y46258* X5936Y46255* X5940Y46253* X5945Y46252* X5949Y46253* X5953Y46255* X5955Y46258* X5956Y46262* Y46615* X6144* X6148Y46616* X6151Y46618* X6153Y46622* X6154Y46627* X6153Y46631* X6151Y46634* X6148Y46637* X6144Y46638* X5956* X5957Y46829* X5956Y46833* X5953Y46837* X5949Y46839* X5945* X5941* X5938Y46837* X5935Y46833* X5933Y46829* Y46638* X5746* X5815Y49376D02* X5816Y49373D01* X5819* X5821* X5835* X5837* X5840* X5842Y49376* X5858Y49395* X5859Y49398* Y49400* X5860Y49401* Y49403* Y49422* X5859Y49425* Y49428* X5858Y49431* X5842Y49450* X5839Y49451* X5837Y49452* X5835* X5821* X5819* X5816Y49451* X5815Y49450* X5799Y49431* X5798Y49427* X5797Y49425* Y49422* Y49403* Y49400* X5798Y49397* X5799Y49395* X5815Y49376* Y49416D02* X5825Y49429D01* X5831* X5841Y49416* Y49408* X5831Y49396* X5825* X5815Y49408* Y49416* Y49524D02* X5816Y49521D01* X5819Y49520* X5821* X5835* X5837* X5840Y49521* X5842Y49524* X5858Y49542* X5859Y49545* Y49548* X5860Y49549* Y49550* Y49570* X5859Y49572* Y49574* X5858Y49579* X5842Y49597* X5840Y49599* X5837Y49600* Y49601* X5835* X5821* X5819* Y49600* X5816Y49599* X5815Y49597* X5799Y49579* X5798Y49575* X5797Y49572* Y49570* Y49550* Y49548* X5798Y49545* X5799Y49542* X5815Y49524* Y49565D02* X5825Y49578D01* X5831* X5841Y49565* Y49556* X5831Y49543* X5825* X5815Y49556* Y49565* X5841Y51738D02* X5918D01* X5971Y51730* X6029Y51693* X6053Y51649* X6067Y51586* Y51530* X6031Y51485* X5970Y51445* X5918Y51439* X5917* X5842* X5841* X5788Y51445* X5730Y51484* X5703Y51530* X5693Y51589* X5703Y51648* X5730Y51694* X5788Y51730* X5841Y51738* X5860Y47642D02* X5937D01* X5981Y47624* X5983* X6026Y47597* X6065Y47544* X6085Y47489* Y47412* X6058Y47355* X6016Y47296* X5977Y47277* X5976Y47276* X5975* X5935Y47259* X5861* X5860* X5794Y47267* X5748Y47296* X5712Y47334* Y47567* X5745Y47604* X5806Y47634* X5860Y47642* X5862Y52572D02* X5873Y52586D01* X5879* X5889Y52572* Y52563* X5879Y52550* X5873* X5862Y52563* Y52572* Y52529D02* X5863Y52527D01* X5866Y52526* X5869* X5883* X5886* X5888Y52527* X5890Y52529* X5905Y52549* X5906Y52552* Y52555* X5908Y52557* Y52578* X5906Y52581* Y52584* X5905Y52587* X5890Y52606* X5888Y52608* X5886Y52609* X5883Y52610* X5869* X5867Y52609* X5866* X5863Y52608* X5862Y52606* X5847Y52587* X5845Y52583* X5844Y52581* Y52578* Y52557* Y52555* X5845Y52552* X5847Y52549* X5862Y52529* X5883Y52488D02* X5882Y52492D01* X5881Y52495* X5878Y52497* X5873Y52498* X5870Y52497* X5868Y52495* X5866Y52492* X5865Y52488* Y52168* X5866Y52164* X5868Y52160* X5870Y52158* X5873* X5878* X5881Y52160* X5882Y52164* X5883Y52168* Y52488* X5976Y51421D02* X5977D01* X5979Y51422* X5981Y51423* X6044Y51465* X6046Y51466* Y51468* X6067Y51492* Y51429* X6042Y51270* X6016Y51241* X6015* X5975Y51204* X5928Y51196* X5842* X5781Y51204* X5728Y51241* X5723Y51243* X5719* X5716Y51241* X5713Y51238* X5711Y51234* X5710Y51229* X5712Y51225* X5715Y51222* X5771Y51183* X5774Y51182* X5777* X5837Y51172* X5838* X5842* X5931* X5934* X5981Y51182* X5987Y51183* Y51184* X6031Y51223* X6032Y51224* X6062Y51257* X6064Y51258* Y51260* X6066Y51263* X6090Y51424* Y51425* Y51428* Y51522* Y51525* Y51586* Y51591* X6077Y51654* X6074Y51658* X6047Y51707* X6045Y51710* X6044Y51713* X5982Y51752* X5981Y51753* X5979* X5977Y51754* X5921Y51762* X5919* X5918* X5840* X5838* X5837* X5782Y51754* X5781Y51753* X5778Y51752* X5715Y51713* X5713* X5712Y51711* X5710Y51710* X5681Y51658* X5680* Y51654* X5669Y51591* Y51589* X5667Y51587* X5669Y51586* X5680Y51523* Y51519* Y51518* X5681* X5710Y51469* X5713Y51466* X5715Y51465* X5778Y51423* X5780Y51422* X5781Y51421* X5782* X5837Y51415* X5838* X5840* X5919* X5921* X5976Y51421* X6035Y51924D02* X6036Y51920D01* X6039Y51916* X6043Y51914* X6047* X6052* X6056Y51916* X6058Y51920* X6059Y51924* Y52219* X6079Y52200* X6080Y52198* X6081* X6131Y52166* X6133Y52165* X6136Y52164* X6204Y52156* X6205* X6207* X6286* X6287* X6289* X6291* X6332Y52174* X6333Y52175* X6335Y52176* X6378Y52198* X6381Y52201* X6382* X6427Y52263* Y52264* X6428Y52266* X6456Y52325* X6457Y52327* Y52328* Y52331* Y52412* Y52414* X6456Y52415* Y52416* X6435Y52475* X6434Y52477* X6433Y52480* X6392Y52535* X6388Y52538* X6343Y52567* X6341Y52568* X6339Y52569* X6290Y52586* X6288* X6287* X6286Y52587* X6206* X6205* X6204* X6149Y52579* X6146Y52578* X6144Y52577* X6080Y52545* X6078Y52544* X6077Y52543* Y52542* X6075* X6059Y52524* Y52574* X6058Y52579* X6056Y52582* X6052Y52585* X6047* X6043* X6039Y52582* X6036Y52579* X6035Y52574* Y51924* X6125Y53731D02* X6120Y53730D01* X6117Y53727* X6114Y53723* X6113Y53719* Y53152* X6114Y53147* X6117Y53144* X6120Y53141* X6125Y53140* X6523* X6527Y53141* X6530Y53144* X6532Y53148* X6533Y53152* X6532Y53157* X6530Y53161* X6527Y53163* X6523Y53164* X6137* Y53424* X6405* X6409Y53425* X6412Y53427* X6414Y53431* X6415Y53435* X6414Y53440* X6412Y53443* X6409Y53446* X6405Y53447* X6137* Y53706* X6523* X6527Y53708* X6530Y53710* X6532Y53714* X6533Y53718* X6532Y53723* X6530Y53727* X6527Y53730* X6523Y53731* X6125* X6208Y52563D02* X6285D01* X6329Y52546* X6331* X6374Y52518* X6413Y52465* X6433Y52410* Y52334* X6406Y52276* X6364Y52217* X6325Y52198* X6323Y52197* X6283Y52180* X6209* X6208* X6142Y52188* X6095Y52217* X6059Y52255* Y52488* X6093Y52525* X6153Y52555* X6208Y52563* X6251Y51427D02* Y51428D01* Y51506* X6264Y51646* X6280Y51678* X6579Y51235* X6529Y51202* X6476Y51196* X6475* X6400* X6346Y51202* X6288Y51241* X6261Y51286* X6251Y51427* X6260Y51289D02* X6257Y51292D01* X6253Y51293* X6248* X6244Y51290* X6241Y51287* X6238Y51284* Y51280* Y51279* X6239Y51276* X6269Y51225* X6270Y51224* X6273Y51221* X6336Y51181* X6338Y51179* X6341* X6395Y51172* X6396* X6398* X6476* X6478* X6479* X6534Y51179* X6537* X6540Y51181* X6602Y51221* X6603Y51223* X6605Y51227* X6632Y51276* X6633Y51278* X6634Y51280* X6648Y51424* Y51425* Y51426* Y51506* Y51508* Y51510* X6636Y51651* Y51653* X6635Y51656* X6605Y51707* X6603Y51709* X6599Y51711* X6540Y51752* X6538Y51753* X6534Y51755* X6479Y51762* X6478* X6398* X6396* X6395* X6341Y51755* X6339* Y51754* X6336Y51753* X6273Y51711* X6271Y51710* X6269Y51707* X6242Y51655* X6241Y51654* X6240Y51651* X6227Y51510* Y51508* Y51426* Y51424* X6238Y51281* X6240Y51277* X6242Y51274* X6246Y51273* X6250Y51272* X6255Y51273* X6258Y51275* X6261Y51279* X6262Y51283* X6261Y51286* X6260Y51289* X6319Y46357D02* X6320Y46356D01* X6321* X6366Y46295* X6367Y46294* X6368Y46292* X6369* X6370* X6413Y46270* X6414Y46269* X6415* X6457Y46251* X6459Y46250* X6461* X6542* X6543* X6544* X6546Y46251* X6587Y46269* X6589* X6591Y46270* X6633Y46292* X6634* X6637Y46295* X6682Y46356* X6683Y46357* X6712Y46416* Y46419* Y46422* Y46501* Y46504* Y46506* X6683Y46565* X6682Y46567* X6637Y46628* X6636* X6635Y46630* X6633Y46631* X6591Y46651* X6589Y46653* X6587Y46654* X6546Y46671* X6543Y46672* X6542Y46673* X6461Y46672* X6459Y46673* X6457Y46671* X6415Y46654* X6413Y46651* X6370Y46631* X6368Y46629* X6366Y46628* X6321Y46567* X6320Y46566* X6319Y46565* X6291Y46506* Y46502* Y46499* Y46422* Y46419* Y46416* X6319Y46357* X6371Y47407D02* X6372Y47405D01* X6375Y47404* X6377* X6391* X6393* X6396Y47405* X6398Y47407* X6414Y47427* X6415Y47430* Y47431* X6416Y47432* Y47435* Y47454* X6415Y47456* Y47459* X6414Y47462* X6398Y47481* X6395Y47483* X6393* Y47484* X6391* X6377* X6375* Y47483* X6372* X6371Y47481* X6355Y47462* X6354Y47458* X6353Y47456* Y47454* Y47435* Y47431* X6354Y47429* X6355Y47427* X6371Y47407* Y47448D02* X6381Y47461D01* X6387* X6397Y47448* Y47440* X6387Y47427* X6381* X6371Y47440* Y47448* Y47555D02* X6372Y47552D01* X6375* X6377* X6391* X6393* X6396* X6398Y47555* X6414Y47574* X6415Y47577* Y47580* X6416* Y47582* Y47601* X6415Y47603* Y47606* X6414Y47610* X6398Y47629* X6396Y47631* X6393* Y47632* X6391* X6377* X6375* Y47631* X6372* X6371Y47629* X6355Y47610* X6354Y47606* X6353Y47603* Y47601* Y47582* Y47580* X6354Y47577* X6355Y47574* X6371Y47555* Y47596D02* X6381Y47609D01* X6387* X6397Y47596* Y47587* X6387Y47575* X6381* X6371Y47587* Y47596* X6400Y51738D02* X6475D01* X6476* X6530Y51731* X6584Y51693* X6613Y51645* X6625Y51506* Y51429* X6610Y51285* X6593Y51254* X6294Y51697* X6346Y51731* X6400Y51738* X6425Y46291D02* X6424D01* X6423Y46292* X6384Y46311* X6341Y46369* X6315Y46425* Y46497* X6341Y46554* X6384Y46611* X6423Y46631* X6425* X6464Y46648* X6539* X6578Y46631* X6580* X6620Y46611* X6662Y46554* X6689Y46497* Y46425* X6662Y46369* X6620Y46311* X6580Y46292* X6579Y46291* X6578* X6539Y46274* X6464* X6425Y46291* X6473Y50278D02* Y50274D01* X6476Y50270* X6480Y50268* X6484* X6488* X6492Y50270* X6495Y50274* X6496Y50278* Y50423* X6641* X6646Y50424* X6649Y50427* X6650Y50431* X6651Y50435* X6650Y50439* X6649Y50443* X6646Y50445* X6641Y50447* X6496* Y50592* X6495Y50596* X6492Y50600* X6488Y50601* X6484Y50602* X6480Y50601* X6476Y50600* X6473Y50596* Y50592* Y50447* X6327* X6322Y50445* X6320Y50443* X6318Y50439* X6317Y50435* X6318Y50431* X6320Y50427* X6322Y50424* X6327Y50423* X6473* Y50278* X6592Y51924D02* X6593Y51920D01* X6596Y51916* X6600Y51914* X6604* X6609* X6613Y51916* X6615Y51920* X6616Y51924* Y52219* X6636Y52200* X6637Y52198* X6638* X6688Y52166* X6690Y52165* X6693Y52164* X6760Y52156* X6762* X6764* X6843* X6844* X6846* X6848* X6889Y52174* X6890Y52175* X6892Y52176* X6935Y52198* X6938Y52201* X6939* X6984Y52263* Y52264* X6985Y52266* X7013Y52325* X7014Y52327* Y52328* Y52331* Y52412* Y52414* X7013Y52415* Y52416* X6992Y52475* X6991Y52477* X6990Y52480* X6949Y52535* X6945Y52538* X6900Y52567* X6898Y52568* X6896Y52569* X6847Y52586* X6845* X6844* X6843Y52587* X6763* X6762* X6760* X6706Y52579* X6703Y52578* X6701Y52577* X6636Y52545* X6635Y52544* X6634Y52543* X6633Y52542* X6632* X6616Y52524* Y52574* X6615Y52579* X6613Y52582* X6609Y52585* X6604* X6600* X6596Y52582* X6593Y52579* X6592Y52574* Y51924* X6728Y49294D02* X6729Y49289D01* X6732Y49286* X6735Y49284* X6739Y49283* X6744Y49284* X6748Y49286* X6751Y49289* Y49294* Y49439* X6897* X6902Y49440* X6904Y49442* X6906Y49446* X6907Y49451* X6906Y49455* X6904Y49458* X6902Y49461* X6897Y49462* X6751* Y49608* Y49612* X6748Y49615* X6744Y49617* X6739Y49618* X6735Y49617* X6732Y49615* X6729Y49612* X6728Y49608* Y49462* X6582* X6578Y49461* X6575Y49458* X6574Y49455* X6573Y49451* X6574Y49446* X6575Y49442* X6578Y49440* X6582Y49439* X6728* Y49294* X6765Y52563D02* X6842D01* X6886Y52546* X6887* X6931Y52518* X6970Y52465* X6990Y52410* Y52334* X6963Y52276* X6921Y52217* X6881Y52198* X6880Y52197* X6840Y52180* X6766* X6765* X6699Y52188* X6652Y52217* X6616Y52255* Y52488* X6649Y52525* X6710Y52555* X6765Y52563* X6820Y53718D02* X6819Y53722D01* X6817Y53726* X6814Y53728* X6810* X6807* X6804Y53726* X6803Y53722* X6802Y53718* Y53152* X6803Y53147* X6804Y53144* X6807Y53143* X6810Y53142* X6814Y53143* X6817Y53144* X6819Y53147* X6820Y53152* Y53718* X6827Y50391D02* X6828Y50386D01* X6832Y50382* X6835Y50379* X6839Y50378* X7186* Y50199* X7187Y50195* X7189Y50192* X7194Y50190* X7198Y50189* X7202Y50190* X7206Y50192* X7208Y50195* X7210Y50199* Y50378* X7237* X7242Y50379* X7245Y50382* X7247Y50386* Y50390* Y50395* X7245Y50399* X7242Y50401* X7237Y50402* X7210* Y50766* X7208Y50771* X7205Y50774* X7202Y50777* X7198Y50778* X7158* X7156Y50777* X7153Y50776* X7150* X7149Y50774* X6830Y50431* X6829Y50428* X6828Y50426* X6827Y50422* Y50391* X6852Y50417D02* X7163Y50753D01* X7186* Y50402* X6852* Y50417* X6958Y51496D02* X7034D01* X7088Y51488* X7145Y51449* X7169Y51406* X7182Y51345* X7169Y51284* X7145Y51241* X7086Y51202* X7034Y51196* X6958* X6904Y51202* X6844Y51241* X6809Y51296* Y51329* Y51330* X6819Y51404* X6846Y51452* X6904Y51488* X6958Y51496* X6974Y46423D02* X6975Y46420D01* X6978* X6980* X6995* X6996* X6999* X7002Y46423* X7017Y46442* X7018Y46445* Y46447* X7019Y46448* Y46451* Y46469* X7018Y46472* Y46475* X7017Y46478* X7002Y46497* X6999Y46498* X6996Y46499* Y46500* X6995* X6980* X6979* X6978Y46499* X6976Y46498* X6974Y46497* X6959Y46478* X6957Y46474* X6956Y46472* Y46469* Y46451* Y46447* X6957Y46445* X6959Y46442* X6974Y46423* Y46464D02* X6984Y46477D01* X6990* X7000Y46464* Y46455* X6990Y46443* X6984* X6974Y46455* Y46464* Y46571D02* X6975Y46568D01* X6978* X6980* X6995* X6996* X6999* X7002Y46571* X7017Y46589* X7018Y46592* Y46595* X7019Y46596* Y46598* Y46617* X7018Y46619* Y46621* X7017Y46626* X7002Y46644* X6999Y46647* X6996* Y46648* X6995* X6980* X6979* X6978Y46647* X6975* X6974Y46644* X6959Y46626* X6957Y46622* X6956Y46619* Y46617* Y46598* Y46595* X6957Y46592* X6959Y46589* X6974Y46571* Y46612D02* X6984Y46625D01* X6990* X7000Y46612* Y46603* X6990Y46591* X6984* X6974Y46603* Y46612* X7037Y51762D02* X7034D01* X6956* X6954* X6953* X6898Y51755* X6897Y51754* X6894Y51753* X6831Y51711* X6828Y51710* X6827Y51707* X6799Y51655* Y51654* X6798Y51651* X6785Y51510* Y51508* Y51333* Y51331* Y51294* Y51290* X6787Y51287* X6827Y51227* X6828Y51224* X6831Y51221* X6894Y51181* X6897Y51179* X6898* X6953Y51172* X6954* X6956* X7036* X7037* X7092Y51179* X7094* X7095* X7098Y51181* X7160Y51221* X7161Y51223* X7163Y51227* X7190Y51276* X7191Y51278* X7192Y51280* X7206Y51343* Y51345* Y51348* X7193Y51411* X7192Y51413* X7191Y51415* X7190Y51416* X7163Y51465* X7161Y51468* X7160Y51470* X7098Y51510* X7094Y51511* Y51512* X7037Y51519* X7034* X6956* X6953* X6898Y51512* X6897Y51511* X6894Y51510* X6831Y51471* X6827Y51469* Y51468* Y51467* X6809Y51435* Y51507* X6821Y51647* X6845Y51693* X6904Y51731* X6958Y51738* X7034* X7088Y51731* X7142Y51693* X7173Y51644* X7176Y51641* X7179Y51639* X7184Y51640* X7188Y51642* X7192Y51645* X7194Y51648* Y51652* X7193Y51656* X7163Y51708* X7161Y51710* X7157Y51712* X7098Y51752* X7096Y51753* X7092Y51755* X7037Y51762* X7083Y49406D02* X7084Y49402D01* X7087Y49398* X7090Y49395* X7095Y49394* X7442* Y49215* X7443Y49211* X7445Y49207* X7449Y49206* X7453Y49205* X7458Y49206* X7462Y49207* X7464Y49211* X7465Y49215* Y49394* X7493* X7498Y49395* X7501Y49397* X7502Y49402* X7503Y49406* X7502Y49410* X7501Y49415* X7498Y49417* X7493Y49418* X7465* Y49782* X7464Y49787* X7461Y49790* X7458Y49793* X7453Y49794* X7414* X7412Y49793* X7409Y49792* X7406Y49791* X7404Y49790* X7086Y49446* X7084Y49444* Y49442* X7083Y49438* Y49406* X7086Y47806D02* X6688Y47240D01* X6687Y47238* X6684Y47236* X6682* X6681* X6677Y47237* X6673Y47239* X6670Y47242* X6668Y47245* X6667Y47250* X6669Y47254* X7067Y47820* X7070Y47823* X7074Y47824* X7078Y47823* X7082Y47821* X7085Y47818* X7087Y47814* X7088Y47810* X7086Y47806* X7107Y53522D02* X7146Y53539D01* X7221* X7273Y53531* X7322Y53500* X7345Y53475* X7363Y53440* X7368Y53402* X7003* X7022Y53444* X7065Y53500* X7104Y53521* X7107Y53522* Y49432D02* X7419Y49769D01* X7442* Y49418* X7107* Y49432* X7222Y53164D02* X7221D01* X7145* X7099Y53180* X7055Y53207* X7016Y53258* X6996Y53313* Y53379* X7382* X7385* X7387Y53380* X7389Y53382* X7390Y53384* X7392Y53386* X7393Y53388* X7394Y53390* Y53392* X7386Y53444* X7384Y53448* X7381Y53451* X7377Y53452* X7373* X7368Y53451* X7365Y53449* X7363Y53445* Y53441* Y53440* X7364Y53437* X7367Y53434* X7370Y53432* X7374* X7378Y53434* X7382Y53436* X7384Y53440* X7386Y53442* Y53444* Y53446* X7384Y53448* X7364Y53488* Y53490* X7339Y53517* X7337Y53519* X7335Y53521* X7284Y53553* X7283Y53554* X7281* X7279Y53555* X7224Y53562* X7223* X7143* X7142* X7140* X7139Y53561* X7097Y53544* X7094Y53541* X7052Y53520* X7050Y53519* X7048Y53518* X7002Y53457* X7001Y53456* X7000Y53455* X6973Y53396* X6972Y53392* Y53389* Y53311* Y53308* Y53307* X6973* X6995Y53248* Y53246* X6996Y53245* X7038Y53190* Y53189* X7040Y53188* X7086Y53160* X7089Y53159* X7091Y53158* X7139Y53141* X7140* X7142Y53140* X7143* X7223* X7224* X7280Y53147* X7282* X7283Y53148* X7285Y53149* X7350Y53181* X7352Y53184* X7391Y53223* X7394Y53227* X7393Y53231* X7391Y53235* X7389Y53238* X7385Y53241* X7381Y53242* X7377* X7374Y53240* X7337Y53202* X7276Y53171* X7222Y53164* X7230Y52418D02* X7419D01* X7424* X7427Y52415* X7428Y52412* X7429Y52409* X7428Y52404* X7427Y52401* X7424Y52399* X7419Y52398* X7230* X7226Y52399* X7223Y52401* X7221Y52404* X7220Y52409* X7221Y52412* X7222Y52415* X7225Y52418* X7230* X7363Y51291D02* X7360Y51293D01* X7355Y51294* X7351Y51292* X7347Y51290* X7344Y51286* X7343Y51281* Y51277* X7346Y51273* X7399Y51219* X7401Y51218* X7403Y51217* X7404Y51216* X7509Y51172* X7510* X7513* X7594* X7595* X7596* X7598* X7702Y51217* X7705Y51219* X7706Y51220* X7751Y51274* Y51276* X7753Y51277* X7754Y51280* X7764Y51362* Y51365* X7755Y51440* X7754Y51443* X7753Y51445* X7751Y51447* X7707Y51499* X7706* X7705Y51501* X7704Y51502* X7636Y51535* X7633Y51536* X7629* X7542Y51541* X7540* X7537* X7434Y51530* X7432* X7431* X7430* X7369Y51509* X7405Y51738* X7753* X7757Y51739* X7760Y51742* X7762Y51746* X7763Y51750* X7762Y51755* X7760Y51759* X7757Y51761* X7753Y51762* X7395* X7389Y51761* X7386Y51758* X7383Y51755* Y51752* X7342Y51494* Y51490* X7343Y51487* X7345Y51485* X7347Y51483* X7350Y51481* X7353Y51479* X7356* X7358Y51480* X7436Y51506* X7539Y51516* X7540* X7541* X7627Y51512* X7692Y51481* X7731Y51434* X7740Y51364* X7731Y51287* X7690Y51239* X7590Y51196* X7516* X7415Y51238* X7363Y51291* X7553Y53719D02* X7552Y53723D01* X7550Y53727* X7546Y53728* X7541Y53729* X7537Y53728* X7533Y53727* X7530Y53723* X7529Y53719* Y53152* X7530Y53147* X7533Y53144* X7537Y53142* X7541Y53141* X7546Y53142* X7550Y53144* X7552Y53147* X7553Y53152* Y53386* X7618Y53412* X7931Y53143* X7935Y53141* X7939* X7944Y53142* X7947Y53145* X7950Y53148* Y53153* Y53157* X7947Y53161* X7642Y53424* X7941Y53545* X7945Y53547* X7947Y53551* Y53556* X7946Y53560* X7944Y53564* X7940Y53567* X7937Y53568* X7932* X7553Y53412* Y53719* X7558Y50754D02* X7635D01* X7688Y50746* X7746Y50708* X7770Y50665* X7784Y50602* Y50545* X7748Y50500* X7687Y50461* X7635Y50454* X7634* X7559* X7558* X7505Y50461* X7447Y50500* X7420Y50545* X7410Y50604* X7420Y50663* X7447Y50710* X7505Y50746* X7558Y50754* X7643Y47806D02* X7245Y47240D01* X7244Y47238* X7241Y47236* X7239* X7238* X7233Y47237* X7230Y47239* X7227Y47242* X7225Y47245* X7224Y47250* X7226Y47254* X7624Y47820* X7627Y47823* X7631Y47824* X7635Y47823* X7639Y47821* X7642Y47818* X7644Y47814* Y47810* X7643Y47806* X7693Y50437D02* X7694D01* X7696Y50438* X7699Y50439* X7761Y50480* X7763Y50481* Y50484* X7784Y50508* Y50444* X7759Y50285* X7733Y50257* X7732Y50256* X7692Y50220* X7645Y50212* X7559* X7498Y50220* X7445Y50257* X7440Y50259* X7436Y50258* X7433Y50256* X7430Y50254* X7428Y50249* X7427Y50245* X7429Y50241* X7432Y50238* X7488Y50199* X7491Y50198* X7494Y50197* X7554Y50187* X7555* X7559* X7648* X7651* X7699Y50197* X7704Y50199* Y50200* X7748Y50239* X7749Y50240* X7779Y50272* X7781Y50274* Y50275* X7783Y50278* X7807Y50440* Y50441* Y50444* Y50538* Y50541* Y50601* Y50607* X7794Y50670* X7791Y50673* X7764Y50723* X7762Y50726* X7761Y50728* X7699Y50768* X7698Y50769* X7696* X7694Y50770* X7638Y50778* X7637* X7635* X7557* X7555* X7554* X7499Y50770* X7498Y50769* X7495Y50768* X7432Y50729* X7430* X7429Y50727* X7427Y50725* X7398Y50674* X7397Y50673* Y50670* X7386Y50607* Y50605* X7384Y50603* X7386Y50602* X7397Y50539* Y50535* Y50534* X7398* X7427Y50484* X7430Y50481* X7432Y50480* X7495Y50439* X7497Y50438* X7498Y50437* X7499* X7554Y50431* X7555* X7557* X7637* X7638* X7693Y50437* X7709Y52722D02* X7992D01* X8042Y52685* X8083Y52630* Y52557* X8041Y52499* X7992Y52463* X7709* Y52722* X7814Y49769D02* X7891D01* X7944Y49762* X8001Y49724* X8026Y49680* X8039Y49618* Y49561* X8003Y49516* X7943Y49477* X7891Y49470* X7890* X7815* X7814* X7761Y49477* X7703Y49516* X7675Y49561* X7665Y49620* X7675Y49679* X7703Y49726* X7761Y49762* X7814Y49769* X7820Y46666D02* X7831Y46681D01* X7837* X7847Y46666* Y46658* X7837Y46644* X7831* X7820Y46658* Y46666* Y46623D02* X7821Y46621D01* X7824* X7827* X7841* X7844* X7846* X7848Y46623* X7863Y46644* X7864Y46646* Y46650* X7866Y46652* Y46672* X7864Y46675* Y46679* X7863Y46681* X7848Y46701* X7846Y46703* X7844* X7841Y46705* X7827* X7825Y46704* X7824Y46703* X7821* X7820Y46701* X7805Y46681* X7803Y46678* X7802Y46675* Y46672* Y46652* Y46650* X7803Y46646* X7805Y46644* X7820Y46623* X7841Y46582D02* X7840Y46586D01* X7838Y46589* X7836Y46592* X7831* X7828* X7825Y46589* X7824Y46586* X7823Y46582* Y46262* X7824Y46258* X7825Y46255* X7828Y46253* X7831Y46252* X7836Y46253* X7838Y46255* X7840Y46258* X7841Y46262* Y46582* X7949Y49453D02* X7950D01* X7951Y49454* X7954Y49455* X8016Y49496* X8019Y49497* Y49500* X8039Y49524* Y49460* X8015Y49301* X7989Y49273* X7988Y49272* X7948Y49236* X7901Y49227* X7814* X7753Y49236* X7700Y49273* X7696Y49275* X7692Y49274* X7689Y49272* X7686Y49269* X7684Y49265* X7683Y49260* X7684Y49256* X7688Y49253* X7744Y49215* X7746Y49214* X7749Y49213* X7810Y49203* X7811* X7814* X7903* X7906* X7954Y49213* X7960Y49215* Y49216* X8004Y49255* X8005Y49256* X8035Y49288* X8036Y49290* X8037Y49291* X8039Y49294* X8063Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X8049Y49686* X8047Y49689* X8020Y49739* X8018Y49742* X8016Y49744* X7955Y49784* X7954* X7951* X7950Y49785* X7893Y49794* X7892* X7891* X7813* X7811* X7810* X7755Y49785* X7753Y49784* X7750* X7687Y49745* X7686* X7684Y49743* X7683Y49741* X7654Y49690* X7653Y49689* Y49686* X7641Y49622* Y49621* X7640Y49619* X7641Y49618* X7653Y49555* Y49551* Y49550* X7654* X7683Y49500* X7686Y49497* X7687Y49496* X7750Y49455* X7752Y49454* X7754Y49453* X7755* X7810Y49446* X7811* X7813* X7892* X7893* X7949Y49453* X8000Y47608D02* X8089Y47293D01* X8178Y47648* X8180Y47652* X8183Y47655* X8188* X8192* X8196Y47653* X8200Y47650* X8202Y47646* Y47642* X8102Y47243* Y47241* X8099Y47239* X8096Y47238* X8092Y47237* X8088Y47236* X8084Y47237* X8081Y47239* X8080Y47242* X8078Y47247* X7989Y47561* X7904Y47247* Y47244* X7903Y47242* X7900Y47238* X7897Y47236* X7894* X7891Y47237* X7886Y47238* X7882Y47239* X7881Y47241* X7880Y47243* X7780Y47642* Y47646* X7782Y47650* X7786Y47653* X7790Y47655* X7794* X7799* X7802Y47652* X7805Y47648* X7892Y47294* X7978Y47608* X7980Y47612* X7983Y47614* X7986Y47615* X7990Y47614* X7994* X7996Y47613* X7999Y47611* X8000Y47608* X8061Y52701D02* X8059Y52702D01* X8058Y52703* X8002Y52744* X7999Y52745* X7998Y52746* X7995* X7696* X7692Y52745* X7689Y52742* X7686Y52739* X7685Y52735* Y52168* X7686Y52163* X7688Y52160* X7692Y52158* X7696* X7701* X7705Y52160* X7708Y52163* X7709Y52168* Y52439* X7986* X8083Y52164* X8086Y52160* X8090Y52158* X8094Y52157* X8099Y52158* X8102Y52161* X8105Y52164* X8106Y52167* Y52172* X8009Y52446* X8058Y52481* X8060Y52483* X8061Y52487* X8105Y52545* Y52546* Y52547* X8106* Y52549* Y52550* Y52552* Y52634* Y52636* Y52637* X8105Y52638* Y52639* Y52640* X8061Y52701* X8098Y53528D02* X8093Y53527D01* X8090Y53524* X8088Y53520* Y53516* Y53512* X8090Y53508* X8093Y53506* X8098Y53505* X8285* Y53152* X8286Y53148* X8288Y53144* X8293Y53143* X8297Y53142* X8301Y53143* X8305Y53144* X8307Y53148* X8309Y53152* Y53505* X8496* X8500Y53506* X8503Y53508* X8505Y53512* X8506Y53516* X8505Y53520* X8503Y53524* X8500Y53527* X8496Y53528* X8309* Y53719* Y53723* X8306Y53727* X8301Y53728* X8297Y53729* X8293Y53728* X8290Y53727* X8287Y53723* X8286Y53719* X8285Y53528* X8098* X8166Y46648D02* X8167D01* X8242* X8243* X8297Y46641* X8358Y46609* X8391Y46576* Y46262* X8392Y46258* X8395Y46255* X8399Y46253* X8403Y46252* X8407Y46253* X8411Y46255* X8414Y46258* X8415Y46262* Y46581* X8414Y46583* Y46585* X8413Y46589* X8373Y46628* X8371Y46630* X8368Y46631* X8306Y46663* X8304Y46664* X8301Y46666* X8245Y46672* X8243* X8165* X8163* X8162* X8107Y46665* X8104Y46664* X8102Y46663* X8042Y46631* X8039* X8036Y46629* X8017Y46609* Y46660* X8016Y46664* X8014Y46668* X8010Y46670* X8005* X8001* X7997Y46668* X7994Y46664* X7993Y46660* Y46262* X7994Y46258* X7997Y46255* X8001Y46253* X8005Y46252* X8010Y46253* X8014Y46255* X8016Y46258* X8017Y46262* Y46575* X8053Y46611* X8111Y46641* X8166Y46648* X8363Y50758D02* X7965Y50193D01* X7964Y50190* X7961Y50189* X7960* X7958* X7954Y50190* X7950Y50192* X7947Y50194* X7945Y50198* X7944Y50203* X7946Y50207* X8344Y50773* X8347Y50776* X8351Y50777* X8355Y50776* X8359Y50774* X8362Y50771* X8364Y50767* X8365Y50763* X8363Y50758* X8377Y52537D02* X8416Y52555D01* X8492* X8543Y52546* X8592Y52516* X8615Y52491* X8633Y52455* X8638Y52418* X8273* X8293Y52459* X8336Y52516* X8375Y52537* X8377* X8493Y52180D02* X8491D01* X8416* X8370Y52195* X8369* Y52196* X8325Y52223* X8286Y52274* X8267Y52329* Y52394* X8653* X8656* X8658Y52396* X8660Y52397* X8661Y52400* X8663Y52402* X8664Y52404* Y52406* Y52408* X8657Y52459* X8655Y52464* X8652Y52467* X8647Y52468* X8643* X8639Y52467* X8635Y52465* X8633Y52461* Y52457* Y52455* X8634Y52453* X8637Y52449* X8641Y52448* X8645* X8649Y52449* X8653Y52452* X8655Y52455* X8656Y52458* X8657Y52459* X8656Y52462* X8655Y52464* X8635Y52504* X8634Y52506* X8609Y52533* X8608Y52535* X8606Y52537* X8555Y52569* X8553* X8552Y52570* X8550* X8495Y52578* X8494* X8414* X8413* X8411* X8410Y52577* X8367Y52559* X8365Y52557* X8322Y52536* X8320Y52534* X8318Y52533* X8273Y52472* X8272* X8271Y52471* X8243Y52412* Y52407* Y52405* Y52327* Y52324* Y52323* X8265Y52264* X8266Y52262* X8267Y52261* X8308Y52206* X8309Y52204* X8311* X8356Y52176* X8360Y52175* X8361Y52174* X8410Y52156* X8411* X8413* X8414* X8494* X8495* X8550Y52162* X8553Y52163* X8554Y52164* X8556Y52165* X8621Y52197* X8623Y52200* X8662Y52239* X8664Y52243* Y52247* X8662Y52251* X8660Y52254* X8656Y52256* X8652Y52258* X8648Y52257* X8644Y52256* X8607Y52217* X8546Y52187* X8493Y52180* X8557Y47608D02* X8645Y47293D01* X8735Y47648* X8737Y47652* X8740Y47655* X8745* X8749* X8753Y47653* X8756Y47650* X8759Y47646* Y47642* X8659Y47243* X8658Y47241* X8656Y47239* X8653Y47238* X8649Y47237* X8645Y47236* X8641Y47237* X8638Y47239* X8637Y47242* X8635Y47247* X8546Y47561* X8461Y47247* Y47244* X8459Y47242* X8457Y47238* X8454Y47236* X8451* X8448Y47237* X8443Y47238* X8439Y47239* X8438Y47241* X8436Y47243* X8337Y47642* Y47646* X8339Y47650* X8343Y47653* X8347Y47655* X8351* X8356* X8359Y47652* X8361Y47648* X8449Y47294* X8534Y47608* X8537Y47612* X8540Y47614* X8543Y47615* X8547Y47614* X8550* X8553Y47613* X8556Y47611* X8557Y47608* X8562Y46638D02* X8557Y46637D01* X8554Y46634* X8552Y46631* Y46627* Y46622* X8554Y46618* X8557Y46616* X8562Y46615* X8749* Y46262* X8750Y46258* X8753Y46255* X8757Y46253* X8761Y46252* X8765Y46253* X8769Y46255* X8772Y46258* X8773Y46262* Y46615* X8960* X8965Y46616* X8968Y46618* X8969Y46622* X8970Y46627* X8969Y46631* X8968Y46634* X8965Y46637* X8960Y46638* X8773* Y46780* X8785Y46800* X8811Y46811* X8852Y46817* X8894* X8928Y46791* X8949Y46743* X8952Y46740* X8956Y46738* X8960* X8964Y46739* X8968Y46741* X8971Y46744* X8972Y46746* Y46748* Y46750* X8971Y46752* X8949Y46804* X8946Y46807* X8945Y46809* X8905Y46839* X8902Y46840* X8900* X8899Y46841* X8851* X8849* X8848* X8806Y46834* X8804* X8802* X8773Y46821* X8769Y46819* X8767Y46817* X8751Y46791* X8750Y46787* X8749Y46785* Y46784* Y46638* X8562* X8619Y49774D02* X8221Y49208D01* X8219Y49206* X8217Y49205* X8215Y49204* X8213* X8209Y49206* X8206Y49207* X8203Y49210* X8200Y49214* Y49219* X8202Y49223* X8600Y49789* X8603Y49792* X8607Y49793* X8611Y49791* X8614Y49790* X8618Y49787* X8620Y49782* Y49778* X8619Y49774* X8688Y50215D02* X8689Y50213D01* X8690Y50212* X8692Y50211* X8726Y50189* X8730Y50187* X8733Y50189* X8736Y50191* X8738Y50194* X8740Y50199* Y50203* X8739Y50207* X8736Y50210* X8704Y50231* Y50232* X8653Y50288* X8635Y50342* Y50623* X8653Y50677* X8702Y50732* X8736Y50756* X8739Y50758* X8740Y50762* X8739Y50767* X8738Y50771* X8735Y50774* X8732Y50777* X8728Y50778* X8724Y50776* X8690Y50753* X8689Y50752* X8688Y50751* X8637Y50694* X8635Y50690* Y50688* X8614Y50630* Y50628* Y50626* Y50624* Y50340* Y50337* Y50336* X8635Y50277* Y50274* X8637Y50272* X8688Y50215* X8728Y53551D02* X8727Y53555D01* X8725Y53558* X8721Y53560* X8717Y53561* X8713Y53560* X8708Y53558* X8706Y53555* X8705Y53551* Y53152* X8706Y53148* X8708Y53144* X8713Y53143* X8717Y53142* X8721Y53143* X8725Y53144* X8727Y53148* X8728Y53152* Y53388* X8754Y53444* X8798Y53501* X8837Y53521* X8839Y53522* X8878Y53539* X8954* X9020Y53531* X9065Y53501* X9106Y53462* X9109Y53460* X9113* X9118Y53461* X9122Y53464* X9125Y53467* X9126Y53471* Y53476* X9124Y53480* X9083Y53519* X9081Y53520* X9080* Y53521* X9031Y53553* X9029Y53554* X9027* X9025Y53555* X8957Y53562* X8955* X8876* X8875* X8874* X8871Y53561* X8829Y53544* X8826Y53541* X8784Y53521* X8782Y53519* X8781Y53518* X8735Y53457* X8734Y53456* Y53455* X8728Y53444* Y53551* X8745Y51750D02* X8744Y51755D01* X8741Y51758* X8737Y51760* X8733* X8729* X8725Y51758* X8722Y51755* X8721Y51750* Y51479* X8347* Y51750* X8346Y51755* X8344Y51758* X8340Y51760* X8335* X8331* X8327Y51758* X8324Y51755* X8323Y51750* Y51183* X8324Y51179* X8327Y51176* X8331Y51174* X8335Y51173* X8340Y51174* X8344Y51176* X8346Y51179* X8347Y51183* Y51455* X8721* Y51183* X8722Y51179* X8725Y51176* X8729Y51174* X8733Y51173* X8737Y51174* X8741Y51176* X8744Y51179* X8745Y51183* Y51750* X8927Y52572D02* X8938Y52586D01* X8944* X8955Y52572* Y52563* X8944Y52550* X8938* X8927Y52563* Y52572* X8928Y52529D02* X8929Y52527D01* X8932Y52526* X8934* X8948* X8951* X8954Y52527* X8956Y52529* X8970Y52549* X8972Y52552* Y52555* X8973Y52557* Y52578* X8972Y52581* Y52584* X8970Y52587* X8956Y52606* X8953Y52608* X8951Y52609* X8948Y52610* X8934* X8932Y52609* X8929Y52608* X8928Y52606* X8912Y52587* X8911Y52583* X8910Y52581* Y52578* Y52557* Y52555* X8911Y52552* X8912Y52549* X8928Y52529* X8943Y49230D02* X8945Y49229D01* X8946Y49228* X8948Y49227* X8982Y49205* X8985Y49203* X8989Y49204* X8992Y49207* X8994Y49210* X8996Y49214* Y49219* X8995Y49223* X8992Y49226* X8959Y49247* Y49248* X8909Y49304* X8891Y49357* Y49638* X8909Y49693* X8958Y49748* X8992Y49771* X8995Y49774* Y49778* Y49782* X8994Y49787* X8991Y49790* X8988Y49793* X8984Y49794* X8980Y49792* X8946Y49768* X8945* X8943Y49767* X8893Y49709* X8891Y49706* X8890Y49703* X8870Y49645* Y49644* Y49641* Y49640* Y49356* Y49353* Y49352* Y49351* X8890Y49292* X8891Y49290* X8893Y49288* X8943Y49230* X8948Y52488D02* Y52492D01* X8946Y52495* X8943Y52497* X8939Y52498* X8935Y52497* X8933Y52495* X8931Y52492* Y52488* Y52168* Y52164* X8933Y52160* X8935Y52158* X8939* X8943* X8946Y52160* X8948Y52164* Y52168* Y52488* X9018Y50443D02* Y50444D01* Y50522* X9031Y50662* X9048Y50694* X9346Y50251* X9297Y50218* X9244Y50212* X9243* X9168* X9167* X9114Y50218* X9056Y50256* X9028Y50302* X9018Y50443* X9028Y50305D02* X9025Y50308D01* X9020Y50309* X9016Y50308* X9012Y50306* X9009Y50303* X9006Y50300* X9005Y50296* X9006Y50294* X9007Y50292* X9036Y50241* X9037Y50240* X9040Y50237* X9103Y50197* X9106Y50195* X9108* X9163Y50187* X9164* X9166* X9244* X9245* X9246* X9302Y50195* X9304* X9307Y50197* X9369Y50237* X9371Y50239* X9373Y50242* X9400Y50292* Y50294* X9402Y50296* X9416Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X9404Y50666* X9403Y50669* X9402Y50672* X9372Y50723* X9370Y50725* X9367Y50727* X9308Y50768* X9306Y50769* X9302Y50770* X9246Y50778* X9166* X9164* X9163* X9108Y50770* X9107* X9106* X9104Y50769* X9041Y50727* X9038Y50725* X9036Y50722* X9010Y50671* X9008Y50669* Y50666* X8994Y50526* Y50523* Y50442* Y50441* Y50440* X9006Y50297* X9007Y50293* X9010Y50290* X9014Y50288* X9018* X9023* X9026Y50291* X9028Y50294* X9030Y50299* X9028Y50302* Y50305* X9114Y47608D02* X9202Y47293D01* X9292Y47648* X9294Y47652* X9297Y47655* X9302* X9306* X9310Y47653* X9313Y47650* X9316Y47646* Y47642* X9216Y47243* X9215Y47241* X9213Y47239* X9210Y47238* X9206Y47237* X9202Y47236* X9198Y47237* X9195Y47239* X9194Y47242* X9192Y47247* X9103Y47561* X9018Y47247* Y47244* X9016Y47242* X9014Y47238* X9011Y47236* X9008* X9005Y47237* X9000Y47238* X8996Y47239* X8994Y47241* X8993Y47243* X8894Y47642* Y47646* X8896Y47650* X8899Y47653* X8904Y47655* X8908* X8912* X8916Y47652* X8918Y47648* X9006Y47294* X9091Y47608* X9094Y47612* X9097Y47614* X9100Y47615* X9104Y47614* X9107* X9110Y47613* X9113Y47611* X9114Y47608* X9131Y51195D02* X9054D01* X9008Y51211* X9007* Y51212* X8964Y51239* X8925Y51290* X8905Y51345* Y51419* X8931Y51476* X8974Y51532* X9013Y51553* X9016* X9055Y51570* X9131* X9196Y51562* X9242Y51532* X9279Y51497* Y51268* X9245Y51233* X9185Y51203* X9131Y51195* X9135Y46357D02* X9136Y46356D01* X9137* X9183Y46295* Y46294* X9184Y46292* X9186* X9187* X9229Y46270* X9230Y46269* X9232* X9274Y46251* X9275Y46250* X9278* X9358* X9359* X9360* X9362Y46251* X9403Y46269* X9405* X9407Y46270* X9449Y46292* X9451* X9453Y46295* X9498Y46356* X9500Y46357* X9528Y46416* X9529Y46419* Y46422* Y46501* Y46504* X9528Y46506* X9500Y46565* X9498Y46567* X9453Y46628* X9452* X9451Y46630* X9449Y46631* X9407Y46651* X9405Y46653* X9403Y46654* X9362Y46671* X9360Y46672* X9358Y46673* X9278Y46672* X9275Y46673* X9274Y46671* X9232Y46654* X9229Y46651* X9187Y46631* X9184Y46629* X9183Y46628* X9137Y46567* X9136Y46566* X9135Y46565* X9108Y46506* X9107Y46502* Y46499* Y46422* Y46419* X9108Y46416* X9135Y46357* X9159Y52190D02* Y52189D01* Y52188* X9162Y52187* X9164Y52186* X9224Y52164* X9225* X9227* X9228* X9307Y52156* X9310* X9312* X9395Y52164* X9397* X9399* X9440Y52178* X9442* X9444Y52180* X9446Y52182* X9476Y52221* X9477Y52223* X9478Y52224* Y52227* X9486Y52294* Y52296* X9485Y52298* Y52302* X9462Y52342* X9459Y52344* X9457Y52345* X9456Y52346* X9403Y52369* X9400* Y52370* X9208Y52390* X9167Y52418* X9139Y52446* X9125Y52478* X9133Y52505* X9164Y52529* X9231Y52546* X9310Y52555* X9385Y52542* X9434Y52514* X9465Y52478* X9469Y52476* X9473* X9477Y52477* X9481Y52480* X9483Y52483* X9485Y52487* Y52491* X9484Y52493* X9483Y52494* X9450Y52531* X9449* X9448Y52533* X9447* X9394Y52564* X9391Y52565* X9390* X9312Y52578* X9310* X9308* X9307* X9229Y52570* X9224* X9156Y52553* X9153Y52552* X9150Y52549* X9116Y52523* X9114Y52520* X9112Y52517* Y52516* X9101Y52480* X9100* Y52478* Y52475* X9101Y52472* X9117Y52436* X9118Y52435* X9119Y52433* Y52432* X9151Y52401* X9152Y52399* X9155Y52397* X9198Y52369* X9199Y52367* X9202* X9395Y52346* X9442Y52325* X9462Y52292* X9454Y52234* X9429Y52199* X9393Y52188* X9310Y52180* X9230Y52188* X9174Y52207* X9129Y52256* X9126Y52258* X9121* X9117Y52257* X9113Y52254* X9111Y52251* X9109Y52247* Y52243* X9111Y52240* X9159Y52190* X9167Y50754D02* X9168D01* X9243* X9244* X9298Y50747* X9351Y50709* X9380Y50661* X9392Y50522* Y50444* X9378Y50301* X9361Y50270* X9062Y50712* X9114Y50747* X9167Y50754* X9242Y46291D02* X9240D01* X9239Y46292* X9200Y46311* X9157Y46369* X9131Y46425* Y46497* X9157Y46554* X9200Y46611* X9239Y46631* X9242* X9281Y46648* X9355* X9395Y46631* X9396* X9436Y46611* X9478Y46554* X9505Y46497* Y46425* X9478Y46369* X9436Y46311* X9396Y46292* X9395Y46291* X9355Y46274* X9281* X9242Y46291* X9274Y49458D02* Y49459D01* Y49538* X9287Y49678* X9304Y49709* X9602Y49267* X9552Y49233* X9500Y49227* X9499* X9424* X9423* X9370Y49233* X9311Y49272* X9284Y49318* X9274Y49458* X9284Y49321D02* X9281Y49324D01* X9276Y49325* X9272Y49324* X9268Y49322* X9265Y49319* X9262Y49316* X9261Y49312* X9262Y49310* Y49308* X9292Y49257* X9293Y49256* X9296Y49253* X9359Y49213* X9362Y49211* X9364* X9418Y49203* X9419* X9422* X9500* X9501* X9502* X9558Y49211* X9560* X9563Y49213* X9625Y49253* X9627Y49255* X9628Y49258* X9656Y49308* Y49309* X9657Y49312* X9672Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X9660Y49682* X9659Y49684* X9658Y49687* X9628Y49739* X9626Y49741* X9623Y49743* X9563Y49784* X9562Y49785* X9558Y49786* X9502Y49794* X9501* X9422* X9419* X9364Y49786* X9363* X9362Y49785* X9360Y49784* X9297Y49743* X9294Y49741* X9292Y49738* X9265Y49687* X9264Y49685* X9263Y49682* X9250Y49542* Y49539* Y49458* Y49457* Y49455* X9262Y49313* X9263Y49308* X9265Y49305* X9269Y49304* X9274* X9278* X9282Y49306* X9284Y49310* X9285Y49315* X9284Y49318* Y49321* X9291Y53247D02* Y53246D01* X9292Y53245* X9338Y53184* Y53183* X9340Y53182* X9341Y53181* X9342* X9385Y53160* X9386Y53159* X9387Y53158* X9429Y53141* X9431Y53140* X9433* X9513* X9514* X9516* X9517Y53141* X9559Y53158* X9561Y53159* X9562Y53160* X9604Y53181* X9606Y53182* X9608Y53184* X9653Y53245* X9655Y53247* X9683Y53306* X9684Y53308* Y53311* Y53391* Y53394* X9683Y53396* X9655Y53455* X9653Y53457* X9608Y53518* X9607Y53519* X9604Y53520* X9562Y53541* X9561Y53542* X9559Y53544* X9517Y53561* X9515Y53562* X9513* X9433* X9431* X9429Y53561* X9387Y53544* X9385Y53541* X9342Y53520* X9340Y53519* X9338Y53518* X9292Y53457* X9291Y53456* Y53455* X9263Y53396* X9262Y53392* Y53389* Y53312* Y53309* X9263Y53306* X9291Y53247* X9303Y51582D02* X9302Y51586D01* X9299Y51590* X9295Y51592* X9291* X9287* X9283Y51590* X9280Y51586* X9279Y51582* Y51531* X9259Y51551* X9257Y51553* X9206Y51584* X9205Y51585* X9203Y51586* X9202* X9133Y51594* X9131* X9052* X9051* X9049Y51593* X9048* X9006Y51575* X9003Y51573* X8961Y51552* X8958Y51550* X8957Y51549* X8911Y51488* X8910* X8909Y51486* X8882Y51427* X8881Y51424* Y51422* Y51420* Y51343* Y51340* Y51339* X8882* X8904Y51280* Y51277* X8905* X8947Y51222* Y51220* X8949Y51219* X8994Y51192* X8997Y51191* X9000Y51190* X9048Y51172* X9049* X9051* X9052* X9131* X9133* X9189Y51178* X9191Y51179* X9192* X9194Y51181* X9259Y51213* X9260Y51214* X9261Y51215* X9279Y51234* Y51183* X9280Y51179* X9283Y51176* X9287Y51174* X9291Y51173* X9295Y51174* X9299Y51176* X9302Y51179* X9303Y51183* Y51582* X9397Y53181D02* X9396D01* X9395* X9356Y53201* X9313Y53258* X9287Y53315* Y53387* X9313Y53444* X9356Y53500* X9395Y53520* X9397Y53521* X9436Y53538* X9510* X9550Y53521* X9552Y53520* X9591Y53500* X9633Y53444* X9660Y53387* Y53315* X9633Y53258* X9591Y53201* X9552Y53181* X9550* X9510Y53164* X9436* X9397Y53181* X9423Y49769D02* X9424D01* X9499* X9500* X9553Y49763* X9607Y49725* X9636Y49677* X9648Y49538* Y49460* X9634Y49317* X9617Y49286* X9318Y49728* X9370Y49763* X9423Y49769* X9577Y47238D02* X9580Y47237D01* X9581Y47236* X9583Y47235* X9584* X9599* X9600* X9601Y47236* X9603Y47237* X9606Y47238* X9621Y47254* X9622Y47256* X9623Y47258* Y47260* Y47275* Y47277* X9622Y47279* X9621Y47282* X9606Y47297* X9603Y47298* X9601Y47299* X9599* X9584* X9581* X9580Y47298* X9577Y47297* X9562Y47282* X9561Y47280* X9560Y47277* Y47275* Y47260* Y47258* X9561Y47255* X9562Y47254* X9577Y47238* X9578Y47271D02* X9588Y47281D01* X9595* X9605Y47271* Y47264* X9595Y47254* X9588* X9578Y47264* Y47271* X9711Y46792D02* X9709Y46791D01* X9707Y46790* X9706* Y46788* X9676Y46737* Y46735* Y46733* X9664Y46670* X9663Y46667* X9664Y46666* Y46353* Y46349* X9665Y46346* X9667Y46343* X9708Y46302* X9711Y46300* X9713Y46299* X9767Y46262* X9769Y46261* X9772Y46260* X9833Y46250* X9835* X9924* X9926* X9928* X10074* X10078Y46252* X10081Y46254* X10083Y46258* X10084Y46262* X10083Y46267* X10081Y46271* X10078Y46273* X10074Y46275* X9928* X9926* X9924* X9836* X9776Y46283* X9726Y46318* X9725Y46319* X9688Y46358* Y46665* X9698Y46726* X9725Y46773* X9783Y46809* X9836Y46817* X9838* X9913* X9914* X9967Y46809* X10024Y46771* X10048Y46727* X10062Y46665* Y46589* X10044Y46615* X10041Y46618* X10039* X10038Y46619* X9936Y46645* X9933* X9931Y46646* X9930Y46645* X9928* X9839Y46615* X9838* X9837* X9836Y46614* X9835Y46612* X9832Y46609* X9806Y46569* X9804Y46568* Y46567* X9803Y46563* Y46560* X9812Y46507* X9813Y46506* X9814Y46503* Y46500* X9817Y46498* X9875Y46459* X9877Y46458* X9879* X9881* X9959Y46449* X9961* X9964* X9966* X10044Y46482* X10045Y46483* X10047Y46485* X10050Y46488* X10084Y46544* X10085Y46546* X10086Y46549* Y46551* Y46665* Y46670* X10072Y46733* X10070Y46736* X10042Y46787* X10041Y46789* X10039Y46791* X9977Y46831* X9973* Y46833* X9916Y46841* X9915* X9914* X9835* X9833* X9778Y46833* X9776Y46831* X9774* X9711Y46792* X9716Y50213D02* X9717D01* X9719Y50215* X9770Y50272* X9771Y50275* Y50277* X9791Y50336* Y50337* Y50339* Y50340* Y50624* Y50626* Y50627* Y50629* X9771Y50688* Y50690* X9770Y50694* X9719Y50751* X9717Y50752* X9716Y50753* X9681Y50776* X9677Y50778* X9673Y50777* X9670Y50774* X9667Y50771* X9666Y50767* Y50762* X9667Y50758* X9670Y50756* X9703Y50732* X9752Y50677* X9770Y50622* Y50342* X9752Y50288* X9703Y50232* X9670Y50210* X9667Y50207* X9666Y50203* X9667Y50199* X9669Y50194* X9671Y50191* X9675Y50189* X9678Y50187* X9682Y50189* X9716Y50213* X9737Y52418D02* X9926D01* X9931* X9933Y52415* X9935Y52412* X9936Y52409* X9935Y52404* X9933Y52401* X9931Y52399* X9926Y52398* X9737* X9733Y52399* X9730Y52401* X9728Y52404* X9727Y52409* X9728Y52412* X9729Y52415* X9732Y52418* X9737* X9806Y51577D02* X9802Y51579D01* X9799Y51580* X9752Y51592* X9749* X9745* X9700Y51579* X9697* X9695* X9693* X9691Y51577* X9655Y51547* X9653Y51545* X9652Y51543* X9649Y51534* X9646Y51544* X9645Y51547* X9643Y51549* X9607Y51579* X9604Y51580* X9600Y51581* X9553Y51594* X9548* X9547* X9501Y51580* X9498Y51581* X9496* X9494Y51580* X9492Y51579* X9462Y51554* Y51583* X9461Y51587* X9459Y51590* X9455Y51592* X9450Y51593* X9446Y51592* X9442Y51590* X9439Y51587* X9438Y51583* Y51502* Y51184* X9439Y51180* X9442Y51176* X9446Y51175* X9450Y51174* X9455Y51175* X9459Y51176* X9461Y51180* X9462Y51184* Y51500* X9474Y51531* X9506Y51558* X9549Y51571* X9590Y51559* X9625Y51531* X9637Y51500* Y51183* X9638Y51179* X9641Y51176* X9645Y51174* X9649Y51173* X9653Y51174* X9657Y51176* X9659Y51179* X9661Y51183* Y51498* X9673Y51530* X9704Y51557* X9749Y51569* X9789Y51557* X9824Y51530* X9836Y51498* Y51183* X9837Y51179* X9840Y51176* X9844Y51174* X9848Y51173* X9852Y51174* X9856Y51176* X9858Y51179* X9860Y51183* Y51501* Y51502* X9859* Y51504* X9844Y51543* Y51545* X9843Y51546* X9842Y51547* X9806Y51577* X9828Y46559D02* X9852Y46595D01* X9930Y46620* X10028Y46595* X10060Y46551* X10030Y46504* X9959Y46473* X9887Y46481* X9835Y46516* X9828Y46559* X9972Y49229D02* X9973D01* X9975Y49230* X10025Y49288* X10026Y49291* Y49292* X10047Y49351* Y49353* Y49354* Y49356* Y49640* Y49641* Y49643* Y49644* X10026Y49703* Y49706* X10025Y49709* X9975Y49767* X9973Y49768* X9972* X9937Y49792* X9933Y49794* X9929Y49793* X9926Y49790* X9923Y49787* X9922Y49782* X9921Y49778* X9923Y49774* X9925Y49771* X9959Y49748* X10008Y49693* X10026Y49638* Y49357* X10008Y49304* X9959Y49248* X9926Y49226* X9923Y49223* X9922Y49219* X9923Y49214* X9924Y49210* X9927Y49207* X9930Y49204* X9934Y49203* X9937Y49205* X9972Y49229* X9992Y53538D02* X9993D01* X10068* X10069* X10123Y53531* X10184Y53499* X10217Y53466* Y53152* X10218Y53148* X10221Y53144* X10225Y53143* X10229Y53142* X10233Y53143* X10237Y53144* X10240Y53148* X10241Y53152* Y53471* X10240Y53473* Y53475* X10238Y53479* X10199Y53518* X10197Y53520* X10194* X10132Y53552* X10130Y53554* X10127Y53555* X10071Y53562* X10069* X9991* X9989* X9988* X9933Y53555* X9930Y53554* X9928Y53552* X9868Y53521* X9865Y53520* X9862Y53519* X9843Y53499* Y53550* X9842Y53554* X9840Y53558* X9836Y53559* X9831Y53560* X9827Y53559* X9823Y53558* X9820Y53554* X9819Y53550* Y53152* X9820Y53148* X9823Y53144* X9827Y53143* X9831Y53142* X9836Y53143* X9840Y53144* X9842Y53148* X9843Y53152* Y53465* X9879Y53501* X9937Y53531* X9992Y53538* X10008Y47616D02* X10047Y47633D01* X10122* X10174Y47625* X10223Y47594* X10246Y47569* X10264Y47534* X10269Y47497* X9904* X9923Y47538* X9967Y47595* X10006Y47616* X10008* X10044Y50610D02* Y50604D01* X10045Y50601* X10048Y50597* X10052Y50595* X10056Y50594* X10061* X10065Y50596* X10067Y50599* X10104Y50691* X10156Y50738* X10215Y50754* X10292* X10354Y50737* X10406Y50691* X10442Y50601* Y50567* X10425Y50532* X10290Y50453* X10289* X10088Y50339* X10086* X10084Y50336* X10046Y50288* X10045Y50286* X10044Y50285* Y50284* Y50280* Y50199* X10045Y50194* X10048Y50192* X10051Y50189* X10055Y50187* X10453* X10458Y50189* X10461Y50191* X10463Y50195* Y50199* Y50204* X10461Y50208* X10458Y50210* X10453Y50212* X10068* Y50276* X10101Y50320* X10300Y50432* X10302* X10439Y50512* X10440* X10443Y50514* X10444Y50517* X10463Y50558* X10465Y50559* Y50561* Y50562* Y50564* Y50604* Y50606* Y50607* Y50609* X10426Y50704* X10425Y50705* X10423Y50708* X10367Y50757* X10365Y50759* X10363Y50761* X10298Y50778* X10293* X10215* X10213Y50777* X10211Y50776* X10147Y50760* X10142Y50757* X10086Y50708* X10084Y50707* X10083Y50704* X10044Y50610* X10123Y47258D02* X10122D01* X10046* X10000Y47274* Y47275* X9956Y47302* X9917Y47353* X9897Y47408* Y47473* X10283* X10286* X10288Y47474* X10290Y47476* X10291Y47479* X10293Y47480* X10294Y47483* X10295Y47484* Y47487* X10287Y47538* X10285Y47542* X10282Y47545* X10278Y47546* X10274* X10269Y47545* X10266Y47544* X10264Y47540* Y47536* Y47534* X10265Y47532* X10268Y47528* X10271Y47527* X10275* X10280Y47528* X10283Y47531* X10285Y47534* X10287Y47536* Y47538* Y47541* X10285Y47542* X10265Y47582* Y47585* X10240Y47611* X10238Y47614* X10236Y47616* X10185Y47647* X10184Y47648* X10182Y47649* X10180* X10125Y47657* X10124* X10044* X10043* X10042Y47656* X10040* X9998Y47638* X9995Y47636* X9953Y47615* X9951Y47613* X9949Y47612* X9903Y47551* X9902* Y47549* X9874Y47490* X9873Y47486* Y47483* Y47406* Y47403* Y47402* X9874* X9896Y47343* Y47340* X9897* X9939Y47285* Y47283* X9941Y47282* X9987Y47255* X9990Y47254* X9992Y47253* X10040Y47235* X10042* X10043* X10044* X10124* X10125* X10181Y47241* X10183Y47242* X10184* X10186Y47244* X10251Y47276* X10254Y47278* X10293Y47318* X10295Y47321* X10294Y47326* X10293Y47330* X10290Y47333* X10286Y47335* X10282Y47337* X10278Y47336* X10275Y47334* X10238Y47296* X10177Y47266* X10123Y47258* X10251Y52207D02* X10252Y52206D01* X10254Y52205* X10255Y52204* X10359Y52156* X10360* X10363* X10441* X10443* X10444* X10445* X10447* X10551Y52204* X10554Y52207* X10610Y52256* X10611Y52257* Y52259* X10612Y52260* X10613Y52261* Y52263* Y52265* Y52350* Y52352* X10611Y52355* Y52357* X10609Y52360* X10529Y52420* X10525Y52422* X10288Y52502* X10216Y52559* Y52632* X10267Y52692* X10363Y52722* X10442* X10539Y52692* X10593Y52630* X10595Y52628* X10597Y52627* X10598Y52626* X10601* X10605Y52627* X10608Y52630* X10611Y52634* X10613Y52638* Y52642* X10611Y52645* X10555Y52710* X10553Y52712* X10550Y52713* X10549* Y52714* X10447Y52745* X10445Y52746* X10443* X10363* X10360* X10359Y52745* X10256Y52713* X10254Y52712* X10251Y52710* X10195Y52645* X10193Y52643* X10192Y52641* Y52638* Y52552* Y52549* X10193Y52546* X10194Y52544* X10196Y52543* X10197Y52542* X10276Y52481* X10277* X10280* X10515Y52400* X10590Y52343* Y52269* X10541Y52227* X10440Y52180* X10366* X10265Y52227* X10212Y52274* X10207Y52276* X10203* X10199Y52274* X10196Y52271* X10194Y52268* X10192Y52263* Y52262* X10193Y52260* X10194Y52257* X10196Y52256* X10251Y52207* X10300Y49625D02* X10299Y49620D01* X10301Y49617* X10304Y49613* X10308Y49611* X10312Y49609* X10316Y49610* X10321Y49612* X10323Y49615* X10360Y49707* X10412Y49754* X10471Y49769* X10547* X10609Y49752* X10661Y49707* X10697Y49617* Y49582* X10680Y49547* X10546Y49469* X10544Y49468* X10344Y49355* X10342Y49354* X10339Y49351* X10302Y49304* X10300Y49302* Y49301* X10299Y49299* Y49296* Y49215* X10300Y49210* X10303Y49207* X10306Y49204* X10311Y49203* X10709* X10714Y49204* X10717Y49207* X10719Y49211* Y49215* Y49220* X10717Y49224* X10714Y49226* X10709Y49227* X10324* Y49292* X10357Y49335* X10556Y49448* X10557* X10695Y49528* X10696* X10699Y49530* X10700Y49533* X10719Y49573* Y49574* X10720Y49575* Y49576* Y49577* X10721Y49578* Y49579* Y49620* Y49621* X10720Y49623* Y49625* X10682Y49719* X10681Y49721* X10679Y49723* X10623Y49772* X10621Y49775* X10618Y49777* X10553Y49794* X10549* X10471* X10468Y49793* X10466Y49792* X10403Y49775* X10398Y49773* X10341Y49724* X10340Y49723* X10339Y49720* X10300Y49625* X10357Y46632D02* X10396Y46649D01* X10471* X10523Y46641* X10572Y46610* X10595Y46585* X10612Y46550* X10618Y46513* X10253* X10272Y46554* X10315Y46611* X10354Y46631* X10357Y46632* X10363Y51577D02* X10359Y51579D01* X10356Y51580* X10308Y51592* X10306* X10302* X10257Y51579* X10254* X10252* X10250* X10248Y51577* X10212Y51547* X10210Y51545* X10209Y51543* X10206Y51534* X10203Y51544* X10202Y51547* X10200Y51549* X10164Y51579* X10161Y51580* X10157Y51581* X10109Y51594* X10105* X10104* X10058Y51580* X10055Y51581* X10053* X10050Y51580* X10049Y51579* X10019Y51554* Y51583* X10018Y51587* X10016Y51590* X10011Y51592* X10007Y51593* X10003Y51592* X9998Y51590* X9996Y51587* X9995Y51583* Y51502* Y51184* X9996Y51180* X9998Y51176* X10003Y51175* X10007Y51174* X10011Y51175* X10016Y51176* X10018Y51180* X10019Y51184* Y51500* X10031Y51531* X10063Y51558* X10106Y51571* X10147Y51559* X10182Y51531* X10194Y51500* Y51183* X10195Y51179* X10197Y51176* X10202Y51174* X10206Y51173* X10210Y51174* X10214Y51176* X10216Y51179* X10218Y51183* Y51498* X10230Y51530* X10261Y51557* X10306Y51569* X10346Y51557* X10381Y51530* X10393Y51498* Y51183* X10394Y51179* X10396Y51176* X10401Y51174* X10405Y51173* X10409Y51174* X10413Y51176* X10415Y51179* X10417Y51183* Y51501* Y51502* X10416* Y51504* X10401Y51543* Y51545* X10400Y51546* X10399Y51547* X10363Y51577* X10454Y47813D02* X10453Y47818D01* X10451Y47821* X10447Y47823* X10442* X10438* X10434Y47821* X10431Y47818* X10430Y47813* Y47246* X10431Y47242* X10434Y47239* X10438Y47236* X10442* X10447* X10451Y47239* X10453Y47242* X10454Y47246* Y47481* X10519Y47507* X10832Y47238* X10836Y47235* X10841* X10845Y47236* X10848Y47239* X10851Y47243* Y47248* Y47252* X10848Y47255* X10543Y47518* X10842Y47639* X10846Y47642* X10848Y47646* Y47650* X10847Y47655* X10845Y47659* X10841Y47662* X10838Y47663* X10833Y47662* X10454Y47507* Y47813* X10472Y46274D02* X10471D01* X10395* X10349Y46290* X10348* Y46291* X10305Y46318* X10266Y46369* X10246Y46423* Y46489* X10632* X10635* X10637Y46490* X10639Y46492* X10640Y46494* X10642Y46496* X10643Y46498* X10644Y46500* Y46503* X10636Y46554* X10634Y46558* X10631Y46561* X10626Y46562* X10622* X10618Y46561* X10615Y46559* X10612Y46556* Y46552* Y46550* X10613Y46547* X10616Y46544* X10620Y46543* X10624* X10628Y46544* X10632Y46546* X10634Y46550* X10635Y46552* X10636Y46554* X10635Y46556* X10634Y46558* X10614Y46598* X10613Y46601* X10589Y46627* X10587Y46630* X10585Y46631* X10534Y46663* X10533Y46664* X10531* X10529Y46665* X10474Y46673* X10473* X10393* X10392* X10390Y46672* X10389Y46671* X10347Y46654* X10344Y46651* X10302Y46631* X10299Y46629* X10298Y46628* X10252Y46567* X10251Y46566* X10250Y46565* X10223Y46506* X10222Y46502* Y46499* Y46422* Y46419* Y46418* X10223* X10244Y46358* X10245Y46356* X10246* X10288Y46301* Y46299* X10290Y46298* X10335Y46270* X10339Y46269* X10341* X10389Y46251* X10390* X10392Y46250* X10393* X10473* X10474* X10530Y46257* X10532* X10533Y46258* X10535Y46259* X10600Y46292* X10602Y46294* X10641Y46334* X10644Y46337* X10643Y46341* X10641Y46345* X10639Y46348* X10635Y46351* X10631Y46353* X10627Y46352* X10624Y46350* X10586Y46312* X10525Y46282* X10472Y46274* X10504Y53556D02* X10515Y53571D01* X10521* X10531Y53556* Y53548* X10521Y53534* X10515* X10504Y53548* Y53556* Y53513D02* X10505Y53511D01* X10508Y53510* X10511* X10525* X10528* X10530Y53511* X10532Y53513* X10547Y53533* X10549Y53536* Y53539* X10550Y53542* Y53562* X10549Y53565* Y53568* X10547Y53571* X10532Y53591* X10530Y53593* X10528* X10525Y53594* X10511* X10509* X10508Y53593* X10505* X10504Y53591* X10489Y53571* X10487Y53568* Y53565* Y53562* Y53542* Y53539* Y53536* X10489Y53533* X10504Y53513* X10525Y53472D02* X10524Y53476D01* X10523Y53479* X10520Y53481* X10515Y53482* X10512Y53481* X10510Y53479* X10508Y53476* X10507Y53472* Y53152* X10508Y53148* X10510Y53144* X10512Y53143* X10515Y53142* X10520Y53143* X10523Y53144* X10524Y53148* X10525Y53152* Y53472* X10622Y50302D02* X10618Y50304D01* X10614* X10610Y50303* X10607Y50300* X10605Y50297* X10603Y50292* Y50288* X10605Y50284* X10680Y50217* X10683Y50215* X10684* X10768Y50189* X10771Y50188* X10772Y50187* X10853* X10857Y50188* X10917Y50213* X10919* X10920Y50215* X10965Y50246* Y50247* X10967Y50248* X10968Y50249* Y50251* X11008Y50299* X11009Y50300* X11010Y50302* X11012Y50305* X11023Y50359* Y50363* Y50364* X11022Y50404* X11021Y50406* X11020Y50408* X11000Y50471* Y50473* X10999Y50476* X10965Y50530* Y50531* X10963Y50532* X10962Y50533* X10925Y50554* X10923Y50555* X10922* Y50556* X10861Y50571* X10856* X10853* X10886Y50581* X10890* X10892Y50583* X10951Y50629* X10952* Y50630* X10953* X10996Y50690* X10997Y50693* X10998Y50695* X11022Y50762* X11023Y50764* Y50767* X11022Y50770* X11020Y50772* X11018Y50774* X11016Y50776* X11014Y50777* X11012Y50778* X10613* X10609Y50777* X10606Y50774* X10603Y50770* Y50766* Y50761* X10606Y50757* X10609Y50755* X10613Y50754* X10994* X10977Y50704* X10935Y50646* X10879Y50603* X10772Y50571* X10768Y50570* X10765Y50567* X10764Y50565* X10762Y50561* Y50556* X10764Y50551* X10768Y50548* X10770Y50547* X10772* X10856* X10914Y50532* X10947Y50513* X10978Y50463* X10997Y50402* X11000Y50363* X10988Y50312* X10951Y50265* X10907Y50235* X10849Y50212* X10774* X10694Y50236* X10622Y50302* X10701Y53719D02* X10700Y53723D01* X10698Y53727* X10694Y53728* X10689Y53729* X10685Y53728* X10681Y53727* X10678Y53723* X10677Y53719* Y53152* X10678Y53147* X10681Y53144* X10685Y53142* X10689Y53141* X10694Y53142* X10698Y53144* X10700Y53147* X10701Y53152* Y53386* X10766Y53412* X11079Y53143* X11083Y53141* X11088* X11092Y53142* X11095Y53145* X11098Y53148* Y53153* Y53157* X11095Y53161* X10790Y53424* X11089Y53545* X11093Y53547* X11095Y53551* Y53556* X11094Y53560* X11092Y53564* X11088Y53567* X11085Y53568* X11081* X10701Y53412* Y53719* X10761Y52544D02* X10757Y52543D01* X10754Y52540* X10752Y52536* X10751Y52532* X10752Y52528* X10754Y52524* X10757Y52521* X10761Y52520* X10949* Y52168* X10950Y52164* X10952Y52160* X10956Y52158* X10960* X10965* X10969Y52160* X10971Y52164* X10972Y52168* Y52520* X11159* X11164Y52521* X11167Y52524* X11169Y52528* Y52532* Y52536* X11167Y52540* X11164Y52543* X11159Y52544* X10972* X10973Y52735* X10972Y52739* X10969Y52742* X10965Y52744* X10961Y52745* X10957Y52744* X10953Y52742* X10950Y52739* X10949Y52735* Y52544* X10761* X10803Y46829D02* X10802Y46833D01* X10800Y46837* X10795Y46839* X10791* X10787* X10782Y46837* X10780Y46833* X10779Y46829* Y46262* X10780Y46257* X10782Y46255* X10787Y46252* X10791* X10795* X10800Y46255* X10802Y46257* X10803Y46262* Y46497* X10867Y46523* X11181Y46253* X11185Y46251* X11189* X11193Y46252* X11197Y46255* X11199Y46259* X11200Y46263* Y46268* X11197Y46271* X10892Y46534* X11191Y46655* X11195Y46657* X11196Y46661* Y46666* Y46670* X11193Y46674* X11190Y46677* X11186Y46679* X11182Y46678* X10803Y46523* Y46829* X10877Y49318D02* X10874Y49320D01* X10870* X10866Y49319* X10863Y49316* X10860Y49312* X10859Y49308* Y49304* X10861Y49300* X10935Y49233* X10938Y49231* X10939* X11024Y49205* X11026Y49204* X11028Y49203* X11108* X11113Y49204* X11173Y49229* X11175* X11176Y49231* X11221Y49262* Y49263* X11222Y49264* X11224Y49265* Y49266* X11264Y49315* X11265Y49316* Y49318* X11267Y49321* X11279Y49374* Y49379* Y49380* X11277Y49420* Y49422* X11275Y49424* X11256Y49487* Y49489* X11254Y49492* X11221Y49546* X11219Y49547* X11218Y49549* X11181Y49570* X11179Y49571* X11177* Y49572* X11117Y49587* X11112* X11108* X11142Y49596* X11146Y49597* X11148Y49599* X11206Y49644* X11208Y49645* Y49646* X11209* X11252Y49706* X11253Y49709* X11254Y49710* X11278Y49778* X11279Y49780* X11278Y49782* Y49785* X11275Y49788* X11274Y49790* X11272Y49792* X11270Y49793* X11267Y49794* X10869* X10864Y49793* X10862Y49790* X10859Y49786* Y49781* Y49777* X10862Y49773* X10864Y49771* X10869Y49769* X11250* X11232Y49720* X11191Y49662* X11134Y49619* X11027Y49587* X11024Y49586* X11021Y49583* X11020Y49581* X11018Y49577* Y49572* X11020Y49567* X11023Y49564* X11026Y49563* X11028* X11112* X11170Y49547* X11202Y49529* X11234Y49479* X11253Y49418* X11255Y49379* X11244Y49328* X11206Y49281* X11163Y49251* X11105Y49227* X11029* X10950Y49252* X10877Y49318* X10999Y47623D02* X10994Y47621D01* X10991Y47619* X10989Y47615* Y47611* Y47607* X10991Y47603* X10994Y47600* X10999Y47599* X11186* Y47246* X11187Y47242* X11190Y47239* X11194Y47237* X11198Y47236* X11202Y47237* X11206Y47239* X11208Y47242* X11210Y47246* Y47599* X11397* X11402Y47600* X11405Y47603* X11406Y47607* X11407Y47611* X11406Y47615* X11405Y47619* X11402Y47621* X11397Y47623* X11210* Y47764* X11222Y47784* X11247Y47795* X11289Y47801* X11331* X11365Y47776* X11386Y47727* X11389Y47724* X11393Y47722* X11397* X11401Y47723* X11405Y47725* X11408Y47728* X11409Y47731* Y47732* Y47734* X11408Y47737* X11386Y47788* X11383Y47791* Y47792* X11382Y47793* X11342Y47823* X11339Y47824* X11337Y47825* X11335* X11288* X11286* X11285* X11243Y47819* X11241Y47818* X11239* X11210Y47806* X11206Y47803* X11204Y47801* X11188Y47775* X11187Y47771* X11186Y47770* Y47768* Y47623* X10999* X11282Y50748D02* X11284Y50751D01* X11286Y50754* Y50757* X11285Y50761* X11283Y50766* X11280Y50768* X11277Y50770* X11273* X11271* X11269Y50769* X11206Y50727* X11202Y50725* Y50724* Y50723* X11173Y50673* X11171Y50669* Y50667* Y50626* Y50623* X11172Y50621* X11190Y50575* Y50573* X11192Y50571* X11194Y50569* X11243Y50531* X11244* X11245Y50529* X11247* X11249* X11267Y50524* X11206Y50487* X11202Y50484* Y50483* X11172Y50432* X11171Y50431* Y50428* X11159Y50364* Y50362* Y50360* Y50359* X11171Y50295* Y50293* Y50292* X11172* X11202Y50241* X11204Y50238* X11206Y50237* X11269Y50197* X11271Y50195* X11273* X11328Y50187* X11329* X11332* X11411* X11412* X11467Y50195* X11470* X11472Y50197* X11535Y50237* X11537Y50239* X11538Y50241* Y50242* X11565Y50292* Y50293* X11566Y50294* X11567Y50295* X11581Y50359* Y50361* Y50364* X11568Y50427* X11567Y50428* Y50429* X11566Y50431* X11565* X11538Y50480* X11537Y50483* X11535Y50486* X11475Y50524* X11493Y50529* X11495* X11497Y50531* X11547Y50569* X11548Y50571* X11550Y50572* X11551Y50574* X11568Y50620* X11569Y50621* X11570Y50623* Y50626* Y50667* Y50668* X11569Y50670* X11568Y50673* X11538Y50723* X11536Y50725* X11532Y50727* X11473Y50768* X11472Y50769* X11467Y50770* X11412Y50778* X11411* X11409* X11332* X11330* X11328* X11273Y50770* X11269Y50769* X11267Y50765* X11265Y50761* Y50757* X11267Y50753* X11268Y50749* X11272Y50747* X11277* X11279* X11282Y50748* X11332Y50512D02* X11333D01* X11408* X11409* X11462Y50503* X11520Y50465* X11544Y50421* X11557Y50361* X11544Y50300* X11520Y50256* X11462Y50218* X11409Y50212* X11408* X11333* X11332* X11279Y50218* X11221Y50256* X11194Y50302* X11184Y50361* X11194Y50420* X11221Y50468* X11279Y50503* X11332Y50512* Y50754D02* X11409D01* X11463Y50747* X11517Y50709* X11546Y50663* Y50628* X11529Y50587* X11485Y50552* X11408Y50535* X11333* X11255Y50552* X11211Y50587* X11196Y50627* Y50663* X11221Y50708* X11279Y50747* X11332Y50754* X11348Y46638D02* X11343Y46637D01* X11340Y46634* X11338Y46631* Y46627* Y46622* X11340Y46618* X11343Y46616* X11348Y46615* X11535* Y46262* X11536Y46258* X11538Y46255* X11542Y46253* X11547Y46252* X11551Y46253* X11555Y46255* X11557Y46258* X11558Y46262* Y46615* X11746* X11750Y46616* X11753Y46618* X11755Y46622* X11756Y46627* X11755Y46631* X11753Y46634* X11750Y46637* X11746Y46638* X11558* Y46780* X11571Y46800* X11596Y46811* X11638Y46817* X11680* X11714Y46791* X11735Y46743* X11738Y46740* X11741Y46738* X11746* X11750Y46739* X11754Y46741* X11757Y46744* Y46746* X11758Y46748* X11757Y46750* Y46752* X11735Y46804* X11732Y46807* X11731Y46809* X11691Y46839* X11688Y46840* X11686* X11684Y46841* X11637* X11635* X11633* X11591Y46834* X11590* X11588* X11558Y46821* X11555Y46819* X11552Y46817* X11537Y46791* X11535Y46787* Y46785* Y46784* Y46638* X11348* X11392Y52566D02* X11391Y52570D01* X11389Y52574* X11384Y52576* X11380* X11376* X11372Y52574* X11370Y52570* X11369Y52566* Y52168* X11370Y52164* X11372Y52160* X11376Y52158* X11380* X11384* X11389Y52160* X11391Y52164* X11392Y52168* Y52403* X11418Y52460* X11461Y52517* X11501Y52537* X11503* X11542Y52555* X11618* X11683Y52546* X11729Y52517* X11769Y52478* X11773Y52475* X11777* X11782Y52477* X11785Y52480* X11788Y52483* X11790Y52487* Y52492* X11787Y52495* X11746Y52535* X11745Y52536* X11744* Y52537* X11694Y52569* X11693* X11691Y52570* X11689* X11621Y52578* X11619* X11540* X11539* X11537* X11535Y52577* X11493Y52559* X11490Y52557* X11448Y52537* X11445Y52535* Y52533* X11399Y52472* X11397* Y52471* X11392Y52460* Y52566* X11538Y49764D02* X11540Y49767D01* X11542Y49769* Y49773* X11541Y49777* X11538Y49781* X11536Y49784* X11532Y49785* X11529Y49786* X11528* X11526Y49785* X11525Y49784* X11462Y49743* X11458Y49741* X11457Y49740* Y49739* X11428Y49689* X11427Y49685* Y49683* Y49641* Y49638* Y49637* X11428* X11446Y49591* Y49589* X11447Y49587* X11450Y49585* X11499Y49547* X11501Y49545* X11502Y49544* X11505* X11522Y49540* X11462Y49503* X11458Y49500* X11457* Y49498* X11428Y49448* X11427Y49446* Y49444* X11415Y49380* Y49378* X11414Y49376* X11415Y49374* X11427Y49311* Y49309* Y49308* X11428* X11457Y49257* X11460Y49254* X11462Y49253* X11525Y49213* X11527Y49211* X11529* X11584Y49203* X11585* X11587* X11666* X11668* X11723Y49211* X11725* X11728Y49213* X11790Y49253* X11792Y49255* X11793Y49257* X11794Y49258* X11821Y49308* Y49309* X11822* X11823Y49311* X11837Y49374* Y49377* Y49380* X11824Y49443* X11823Y49444* Y49445* X11822Y49446* X11821* Y49447* X11794Y49496* X11792Y49499* X11790Y49501* X11731Y49540* X11749Y49544* X11750Y49545* X11753Y49547* X11802Y49585* X11803Y49586* X11805Y49588* X11806* Y49590* X11824Y49636* X11825Y49637* Y49638* Y49641* Y49683* Y49684* Y49686* X11824Y49689* X11793Y49739* X11792Y49741* X11788Y49743* X11729Y49784* X11727Y49785* X11723Y49786* X11668Y49794* X11666* X11665* X11587* X11586* X11584* X11529Y49786* X11528* X11525Y49784* X11522Y49781* X11521Y49777* Y49772* X11522Y49768* X11524Y49765* X11528Y49762* X11532* X11535* X11538Y49764* X11588Y49527D02* X11589D01* X11664* X11665* X11718Y49519* X11776Y49481* X11800Y49437* X11812Y49377* X11799Y49316* X11776Y49272* X11717Y49233* X11665Y49227* X11664* X11589* X11588* X11535Y49233* X11477Y49272* X11450Y49318* X11440Y49377* X11450Y49436* X11477Y49484* X11535Y49519* X11588Y49527* Y49769D02* X11665D01* X11719Y49763* X11773Y49725* X11802Y49679* Y49644* X11785Y49602* X11741Y49568* X11664Y49551* X11589* X11511Y49568* X11467Y49602* X11451Y49643* Y49679* X11477Y49724* X11535Y49763* X11588Y49769* X11670Y47238D02* X11673Y47237D01* X11674Y47236* X11676Y47235* X11677* X11692* X11693* X11694Y47236* X11696Y47237* X11699Y47238* X11714Y47254* X11715Y47256* X11716Y47258* Y47260* Y47275* Y47277* X11715Y47279* X11714Y47282* X11699Y47297* X11696Y47298* X11694Y47299* X11692* X11677* X11674* X11673Y47298* X11670Y47297* X11655Y47282* X11654Y47280* X11653Y47277* Y47275* Y47260* Y47258* X11654Y47255* X11655Y47254* X11670Y47238* X11671Y47271D02* X11681Y47281D01* X11688* X11698Y47271* Y47264* X11688Y47254* X11681* X11671Y47264* Y47271* X11884Y50199D02* X11885Y50195D01* X11888Y50192* X11891Y50190* X11894Y50189* X11899Y50190* X11902Y50192* X11905Y50195* X11906Y50199* Y50766* X11905Y50770* X11903Y50773* X11900Y50775* X11896Y50776* X11893Y50777* X11891* X11888Y50776* X11886Y50773* X11780Y50611* X11779Y50607* Y50603* X11781Y50600* X11784Y50596* X11788Y50594* X11791Y50593* X11793* X11795Y50594* X11798Y50597* X11884Y50730* Y50199* X12019Y46254D02* X12021Y46253D01* X12023Y46252* X12024Y46251* X12025* X12041* X12043Y46252* X12044Y46253* X12047Y46254* X12063Y46269* X12064Y46272* Y46273* X12065Y46276* Y46291* X12064Y46293* Y46295* X12063Y46298* X12047Y46313* X12044Y46314* X12043Y46315* X12041* X12025* X12023* X12021Y46314* X12019Y46313* X12004Y46298* X12002Y46296* Y46293* Y46291* Y46276* Y46273* Y46271* X12004Y46269* X12019Y46254* X12020Y46286D02* X12030Y46297D01* X12037* X12047Y46286* Y46280* X12037Y46270* X12030* X12020Y46280* Y46286* X12036Y53683D02* X12033Y53687D01* X12031Y53688* X11975Y53713* X11973Y53714* X11970* X11912Y53729* X11910Y53730* X11907Y53731* X11831Y53723* X11829Y53722* X11828* X11827* X11826Y53721* X11775Y53695* X11772Y53694* X11769Y53692* X11724Y53646* X11723Y53643* X11722Y53642* X11682Y53563* X11681Y53560* Y53559* X11657Y53480* Y53479* Y53478* X11656Y53477* Y53476* Y53396* Y53395* Y53392* X11674Y53311* Y53310* X11675* Y53308* Y53307* X11720Y53228* X11721Y53227* X11722Y53225* X11766Y53178* X11767* Y53177* X11769Y53176* X11821Y53150* X11824Y53147* X11826* X11906Y53140* X11907* X11909* X11989Y53154* X11991Y53155* X11994Y53157* X12048Y53195* X12050Y53197* X12052Y53201* X12076Y53252* Y53253* X12077* Y53254* Y53255* X12078Y53256* Y53258* Y53370* X12077Y53375* X12075Y53379* X12071Y53382* X12066Y53383* X11946* X11941Y53382* X11938Y53379* X11936Y53375* Y53370* Y53366* X11938Y53362* X11941Y53360* X11946Y53359* X12054* Y53261* X12031Y53213* X11982Y53178* X11906Y53164* X11830Y53170* X11782Y53196* X11740Y53241* X11698Y53316* X11681Y53398* Y53475* X11702Y53551* X11703Y53554* X11704Y53558* X11703Y53560* X11702Y53562* X11699Y53565* X11695Y53567* X11691* X11687* X11683Y53564* X11681Y53560* Y53558* Y53555* X11683Y53551* X11686Y53548* X11689Y53546* X11692Y53545* X11696Y53546* X11700Y53548* X11702Y53551* X11742Y53629* X11787Y53674* X11834Y53699* X11907Y53706* X11963Y53691* X11965Y53690* X12017Y53668* X12056Y53605* X12059Y53602* X12063Y53601* X12067* X12072Y53603* X12075Y53606* X12077Y53610* X12078Y53614* X12076Y53619* X12036Y53683* X12052Y52159D02* X12055Y52158D01* X12056* X12058Y52156* X12059* X12074* X12075* X12076Y52158* X12078* X12081Y52159* X12096Y52175* X12097Y52177* X12098Y52179* Y52181* Y52197* Y52198* X12097Y52200* X12096Y52203* X12081Y52219* X12078Y52220* X12076* X12074* X12059* X12056* X12055* X12052Y52219* X12037Y52203* X12036Y52201* X12035Y52198* Y52197* Y52181* Y52179* X12036Y52177* X12037Y52175* X12052Y52159* X12053Y52192D02* X12063Y52203D01* X12070* X12080Y52192* Y52185* X12070Y52175* X12063* X12053Y52185* Y52192* X12140Y49215D02* X12141Y49211D01* X12144Y49207* X12147Y49206* X12150Y49205* X12154Y49206* X12158Y49207* X12161Y49211* Y49215* Y49782* Y49786* X12159Y49789* X12156Y49791* X12152* X12149Y49793* X12147* X12144Y49791* X12142Y49789* X12036Y49627* X12035Y49622* Y49619* X12037Y49615* X12040Y49612* X12043Y49609* X12047* X12049* X12050* X12053Y49612* X12140Y49745* Y49215* X12216Y47258D02* X12215D01* X12139* X12093Y47274* Y47275* X12049Y47302* X12010Y47353* X11990Y47408* Y47482* X12016Y47539* X12059Y47595* X12098Y47616* X12101* X12140Y47633* X12216* X12281Y47625* X12327Y47595* X12368Y47556* X12371Y47554* X12375* X12380Y47555* X12384Y47558* X12387Y47562* X12388Y47566* Y47571* X12385Y47574* X12344Y47614* X12343Y47615* X12342* Y47616* X12292Y47647* X12290Y47648* X12288Y47649* X12287* X12218Y47657* X12216* X12137* X12136* X12134Y47656* X12133* X12091Y47638* X12088Y47636* X12046Y47615* X12044Y47613* X12042Y47612* X11996Y47551* X11995* X11994Y47549* X11967Y47490* X11966Y47487* Y47485* Y47483* Y47406* Y47403* Y47402* X11967* X11989Y47343* Y47340* X11990* X12032Y47285* Y47283* X12034Y47282* X12080Y47255* X12083Y47254* X12085Y47253* X12133Y47235* X12134* X12136* X12137* X12216* X12218* X12274Y47241* X12276Y47242* X12277* X12279Y47244* X12344Y47276* X12346Y47278* X12385Y47318* X12388Y47321* X12387Y47326* X12385Y47330* X12383Y47333* X12379Y47335* X12375Y47337* X12371Y47336* X12368Y47334* X12331Y47296* X12270Y47266* X12216Y47258* X12551Y47342D02* X12552Y47340D01* X12553* X12599Y47279* Y47278* X12600Y47277* X12602Y47276* X12603* X12645Y47255* X12646Y47254* X12648Y47253* X12690Y47235* X12691* X12694* X12774* X12775* X12776* X12778* X12819Y47253* X12821Y47254* X12823Y47255* X12865Y47276* X12867Y47277* X12869Y47279* X12914Y47340* X12916Y47342* X12944Y47401* X12945Y47403* Y47406* Y47485* Y47488* X12944Y47490* X12916Y47549* X12914Y47551* X12869Y47612* X12867Y47614* X12865Y47615* X12823Y47636* X12821Y47637* X12819Y47638* X12778Y47656* X12776* X12774Y47657* X12694Y47656* X12691Y47657* X12690Y47656* X12648Y47638* X12645Y47636* X12603Y47615* X12600Y47613* X12599Y47612* X12553Y47551* X12552* X12551Y47549* X12524Y47490* X12523Y47486* Y47483* Y47406* Y47404* X12524Y47401* X12551Y47342* X12565Y46274D02* X12563D01* X12488* X12442Y46290* X12441* Y46291* X12398Y46318* X12359Y46369* X12339Y46423* Y46498* X12365Y46555* X12408Y46611* X12447Y46631* X12450Y46632* X12488Y46649* X12565* X12630Y46641* X12676Y46611* X12716Y46572* X12720Y46570* X12724* X12729Y46571* X12732Y46574* X12735Y46578* X12737Y46582* Y46586* X12734Y46590* X12693Y46630* X12692Y46631* X12691* X12640Y46663* X12639Y46664* X12637* X12636Y46665* X12567Y46673* X12565* X12486* X12485* X12483Y46672* X12482Y46671* X12439Y46654* X12437Y46651* X12395Y46631* X12392Y46629* X12390Y46628* X12345Y46567* X12344Y46566* X12343Y46565* X12315Y46506* Y46503* Y46501* Y46499* Y46422* Y46419* Y46418* X12337Y46358* X12338Y46356* X12339* X12380Y46301* X12381Y46299* X12383Y46298* X12428Y46270* X12432Y46269* X12434* X12482Y46251* X12483* X12485Y46250* X12486* X12565* X12567* X12623Y46257* X12625* X12626Y46258* X12628Y46259* X12693Y46292* X12695Y46294* X12734Y46334* X12737Y46337* X12736Y46341* X12734Y46345* X12732Y46348* X12728Y46351* X12724Y46353* X12720Y46352* X12716Y46350* X12679Y46312* X12618Y46282* X12565Y46274* X12581Y53545D02* X12577Y53547D01* X12574Y53548* X12527Y53561* X12525* X12520* X12475Y53547* X12473Y53548* X12470* X12468Y53547* X12466Y53545* X12431Y53516* X12428Y53513* Y53511* X12424Y53502* X12422Y53513* X12420Y53516* X12418Y53518* X12382Y53547* X12379Y53549* X12375* X12328Y53562* X12324* X12322* X12276Y53549* X12274* X12271* X12269* X12267Y53547* X12238Y53523* Y53551* X12236Y53555* X12234Y53559* X12230Y53561* X12225* X12221* X12217Y53559* X12214Y53555* X12213Y53551* Y53471* Y53470* Y53153* X12214Y53148* X12217Y53145* X12221Y53143* X12225* X12230* X12234Y53145* X12236Y53148* X12238Y53153* Y53469* X12249Y53499* X12281Y53526* X12324Y53539* X12366Y53528* X12400Y53499* X12412Y53469* Y53152* X12413Y53147* X12416Y53144* X12420Y53143* X12424Y53142* X12428Y53143* X12432Y53144* X12435Y53148* X12436Y53152* Y53467* X12448Y53498* X12480Y53525* X12524Y53538* X12565Y53526* X12600Y53498* X12611Y53467* Y53152* X12613Y53148* X12615Y53144* X12619Y53143* X12623Y53142* X12627Y53143* X12631Y53144* X12634Y53148* X12635Y53152* Y53470* X12634Y53471* Y53473* X12620Y53511* X12619Y53513* X12618Y53515* X12617Y53516* X12581Y53545* X12631Y50758D02* X12232Y50193D01* X12231Y50190* X12229Y50189* X12227* X12225* X12221Y50190* X12217Y50192* X12214Y50194* X12212Y50198* Y50203* X12213Y50207* X12611Y50773* X12614Y50776* X12618Y50777* X12623Y50776* X12626Y50774* X12630Y50771* X12631Y50767* X12632Y50763* X12631Y50758* X12658Y47275D02* X12656D01* X12655Y47276* X12616Y47295* X12573Y47353* X12547Y47409* Y47481* X12573Y47538* X12616Y47595* X12655Y47615* X12658Y47616* X12697Y47633* X12771* X12811Y47616* X12812Y47615* X12852Y47595* X12894Y47538* X12921Y47481* Y47409* X12894Y47353* X12852Y47295* X12812Y47276* X12811Y47275* X12771Y47258* X12697* X12658Y47275* X12770Y53152D02* X12771Y53148D01* X12774Y53144* X12777Y53143* X12781Y53142* X12786Y53143* X12790Y53144* X12793Y53148* X12794Y53152* Y53203* X12814Y53184* X12815Y53183* X12816Y53182* X12867Y53150* X12868Y53149* X12871Y53148* X12938Y53140* X12941* X12942* X13021* X13022* X13024* X13025Y53141* X13067Y53158* X13068Y53159* X13070Y53160* X13113Y53182* X13116Y53184* X13117Y53186* X13162Y53247* X13163Y53249* X13191Y53309* X13192Y53311* Y53314* Y53394* Y53396* X13191* Y53398* Y53399* X13170Y53457* X13169Y53460* X13168Y53463* X13127Y53518* X13123Y53520* X13078Y53549* X13076Y53550* X13074* X13025Y53568* X13023* X13022* X13021Y53569* X12941* X12939* X12938* X12884Y53562* X12881Y53561* X12879Y53559* X12814Y53527* X12813Y53526* X12812Y53525* X12811Y53524* X12810Y53523* X12793Y53505* Y53718* X12792Y53722* X12790Y53725* X12786Y53727* X12781Y53728* X12777Y53727* X12773Y53725* X12770Y53722* X12769Y53718* X12770Y53152* Y52359D02* X12771Y52354D01* X12775Y52351* X12778Y52348* X12782Y52347* X13129* Y52168* X13130Y52164* X13132Y52160* X13137Y52158* X13141* X13145* X13149Y52160* X13151Y52164* X13153Y52168* Y52347* X13180* X13185Y52348* X13188Y52350* X13190Y52354* Y52358* Y52363* X13188Y52367* X13185Y52370* X13180Y52371* X13153* Y52735* X13151Y52739* X13148Y52742* X13145Y52745* X13141Y52746* X13101* X13099* X13096Y52745* X13094Y52744* X13092Y52742* X12773Y52399* X12772Y52397* X12771Y52394* X12770Y52390* Y52359* X12795Y52385D02* X13106Y52722D01* X13129* Y52371* X12795* Y52385* X12887Y49774D02* X12488Y49208D01* X12487Y49206* X12484Y49205* X12483Y49204* X12481* X12477Y49206* X12473Y49207* X12470Y49210* X12468Y49214* X12467Y49219* X12469Y49223* X12867Y49789* X12870Y49792* X12874Y49793* X12878Y49791* X12882Y49790* X12885Y49787* X12887Y49782* X12888Y49778* X12887Y49774* X12900Y46357D02* X12901Y46356D01* X12902* X12947Y46295* X12948Y46294* X12949Y46292* X12950* X12951* X12994Y46270* X12995Y46269* X12996* X13038Y46251* X13040Y46250* X13042* X13123* X13124* X13125* X13127Y46251* X13168Y46269* X13170* X13172Y46270* X13214Y46292* X13215* X13218Y46295* X13263Y46356* X13264Y46357* X13293Y46416* Y46419* Y46422* Y46501* Y46504* Y46506* X13264Y46565* X13263Y46567* X13218Y46628* X13217* X13216Y46630* X13214Y46631* X13172Y46651* X13170Y46653* X13168Y46654* X13127Y46671* X13125Y46672* X13123Y46673* X13042Y46672* X13040Y46673* X13038Y46671* X12996Y46654* X12994Y46651* X12951Y46631* X12949Y46629* X12947Y46628* X12902Y46567* X12901Y46566* X12900Y46565* X12872Y46506* Y46502* Y46499* Y46422* Y46419* Y46416* X12900Y46357* X12941Y50512D02* X13018D01* X13071Y50503* X13128Y50465* X13152Y50421* X13165Y50361* X13152Y50300* X13128Y50256* X13070Y50218* X13018Y50212* X12941* X12887Y50218* X12827Y50257* X12792Y50312* Y50345* Y50346* X12802Y50420* X12829Y50468* X12887Y50503* X12941Y50512* X12943Y53545D02* X13019D01* X13064Y53528* X13065* X13109Y53501* X13149Y53448* X13168Y53392* Y53317* X13141Y53260* X13099Y53202* X13059Y53182* X13058Y53181* X13018Y53164* X12943* X12876Y53171* X12830Y53202* X12794Y53239* X12793Y53470* X12827Y53507* X12888Y53538* X12943Y53545* X13006Y46291D02* X13005D01* X13004Y46292* X12965Y46311* X12922Y46369* X12896Y46425* Y46497* X12922Y46554* X12965Y46611* X13004Y46631* X13006* X13045Y46648* X13120* X13159Y46631* X13161* X13201Y46611* X13243Y46554* X13270Y46497* Y46425* X13243Y46369* X13201Y46311* X13161Y46292* X13160Y46291* X13159* X13120Y46274* X13045* X13006Y46291* X13020Y50778D02* X13018D01* X12940* X12937* X12936* X12881Y50770* X12880* X12877Y50769* X12814Y50727* X12812Y50725* X12810Y50722* X12783Y50671* X12782Y50669* X12781Y50666* X12768Y50526* Y50524* Y50523* Y50349* Y50346* Y50310* Y50306* X12770Y50303* X12810Y50243* X12811Y50240* X12814Y50237* X12877Y50197* X12880Y50195* X12881* X12936Y50187* X12937* X12940* X13019* X13020* X13075Y50195* X13077* X13078* X13081Y50197* X13143Y50237* X13145Y50239* X13146Y50242* X13174Y50292* Y50294* X13175Y50295* X13189Y50359* Y50361* Y50364* X13176Y50427* X13175Y50429* X13174Y50431* X13146Y50480* X13145Y50483* X13143Y50486* X13081Y50526* X13077Y50527* Y50528* X13020Y50535* X13018* X12939* X12936* X12881Y50528* X12880Y50527* X12877Y50526* X12814Y50487* X12810Y50484* Y50483* X12792Y50451* Y50523* X12804Y50663* X12828Y50708* X12887Y50747* X12941Y50754* X13018* X13071Y50747* X13125Y50709* X13156Y50659* X13159Y50656* X13162Y50655* X13167Y50656* X13171Y50657* X13175Y50660* X13177Y50664* X13178Y50668* X13176Y50672* X13146Y50724* X13144Y50725* X13140Y50728* X13081Y50768* X13080Y50769* X13075Y50770* X13020Y50778* X13197Y49527D02* X13273D01* X13326Y49519* X13384Y49481* X13408Y49437* X13421Y49377* X13407Y49316* X13384Y49272* X13325Y49233* X13273Y49227* X13197* X13143Y49233* X13083Y49273* X13048Y49328* Y49361* X13058Y49436* X13085Y49484* X13143Y49519* X13197Y49527* X13276Y49794D02* X13273D01* X13195* X13193* X13192* X13137Y49786* X13136Y49785* X13133Y49784* X13070Y49743* X13067Y49741* X13065Y49738* X13038Y49687* Y49685* X13037Y49682* X13024Y49542* Y49540* Y49539* Y49365* Y49362* Y49325* Y49322* X13026Y49319* X13065Y49259* X13067Y49256* X13070Y49253* X13133Y49213* X13136Y49211* X13137* X13192Y49203* X13193* X13195* X13275* X13276* X13331Y49211* X13332* X13334* X13337Y49213* X13399Y49253* X13400Y49255* X13402Y49258* X13429Y49308* X13430Y49309* X13431Y49311* X13445Y49374* Y49377* Y49380* X13432Y49443* X13431Y49445* X13430Y49446* X13429Y49447* X13402Y49496* X13400Y49499* X13399Y49501* X13337Y49542* X13333Y49543* X13332* X13276Y49551* X13273* X13195* X13192* X13137Y49543* X13136* X13133Y49542* X13070Y49503* X13066Y49500* X13065* Y49498* X13048Y49467* Y49539* X13060Y49679* X13084Y49724* X13143Y49763* X13197Y49769* X13273* X13327Y49763* X13381Y49725* X13412Y49675* X13414Y49672* X13418Y49671* X13423* X13427Y49673* X13430Y49676* X13433Y49680* Y49683* X13432Y49687* X13401Y49739* X13400Y49741* X13396Y49744* X13337Y49784* X13335Y49785* X13331Y49786* X13276Y49794* X13448Y47640D02* X13444Y47642D01* X13441Y47643* X13394Y47655* X13391* X13387* X13342Y47642* X13339* X13337* X13335* X13333Y47640* X13297Y47610* X13295Y47608* X13294Y47606* X13291Y47597* X13288Y47607* X13287Y47610* X13285Y47612* X13249Y47642* X13246Y47643* X13242Y47644* X13194Y47657* X13190* X13189* X13143Y47643* X13140Y47644* X13138* X13135Y47643* X13134Y47642* X13104Y47617* Y47646* X13103Y47650* X13101Y47653* X13096Y47655* X13092Y47656* X13088Y47655* X13083Y47653* X13081Y47650* X13080Y47646* Y47565* Y47247* X13081Y47243* X13083Y47239* X13088Y47238* X13092Y47237* X13096Y47238* X13101Y47239* X13103Y47243* X13104Y47247* Y47563* X13116Y47594* X13148Y47621* X13191Y47634* X13232Y47622* X13267Y47594* X13279Y47563* Y47246* X13280Y47242* X13282Y47239* X13287Y47237* X13291Y47236* X13295Y47237* X13299Y47239* X13301Y47242* X13303Y47246* Y47561* X13315Y47593* X13346Y47620* X13391Y47632* X13431Y47620* X13466Y47593* X13478Y47561* Y47246* X13479Y47242* X13481Y47239* X13486Y47237* X13490Y47236* X13494Y47237* X13498Y47239* X13500Y47242* X13502Y47246* Y47564* Y47565* X13501* Y47567* X13486Y47606* Y47608* X13485Y47609* X13484Y47610* X13448Y47640* Y50748D02* X13450Y50751D01* X13452Y50754* Y50757* X13451Y50761* X13449Y50766* X13446Y50768* X13443Y50770* X13439* X13437* X13435Y50769* X13372Y50727* X13368Y50725* Y50724* Y50723* X13339Y50673* X13337Y50669* Y50667* Y50626* Y50623* X13338Y50621* X13356Y50575* X13357Y50573* X13358Y50571* X13360Y50569* X13409Y50531* X13410* X13412Y50529* X13413* X13415* X13433Y50524* X13372Y50487* X13368Y50484* Y50483* X13338Y50432* X13337Y50431* Y50428* X13325Y50364* Y50362* Y50360* Y50359* X13337Y50295* Y50293* Y50292* X13338* X13368Y50241* X13370Y50238* X13372Y50237* X13435Y50197* X13438Y50195* X13439* X13494Y50187* X13495* X13498* X13577* X13578* X13634Y50195* X13636* X13638Y50197* X13701Y50237* X13703Y50239* X13704Y50241* Y50242* X13732Y50292* Y50293* Y50294* X13733Y50295* X13748Y50359* Y50361* Y50364* X13734Y50427* X13733Y50428* Y50429* X13732Y50431* X13704Y50480* X13703Y50483* X13701Y50486* X13641Y50524* X13659Y50529* X13661* X13663Y50531* X13713Y50569* X13714Y50571* X13716Y50572* X13717Y50574* X13735Y50620* Y50621* X13736Y50623* Y50626* Y50667* Y50668* X13735Y50670* X13734Y50673* X13704Y50723* X13702Y50725* X13699Y50727* X13639Y50768* X13638Y50769* X13634Y50770* X13578Y50778* X13577* X13575* X13498* X13497* X13494* X13439Y50770* X13435Y50769* X13433Y50765* X13432Y50761* Y50757* X13433Y50753* X13435Y50749* X13438Y50747* X13443* X13445* X13448Y50748* X13498Y50512D02* X13500D01* X13575* X13628Y50503* X13686Y50465* X13710Y50421* X13723Y50361* X13710Y50300* X13686Y50256* X13628Y50218* X13575Y50212* X13500* X13498* X13445Y50218* X13387Y50256* X13360Y50302* X13350Y50361* X13360Y50420* X13387Y50468* X13445Y50503* X13498Y50512* Y50754D02* X13575D01* X13629Y50747* X13683Y50709* X13712Y50663* Y50628* X13695Y50587* X13651Y50552* X13575Y50535* X13500* X13422Y50552* X13377Y50587* X13362Y50627* Y50663* X13387Y50708* X13445Y50747* X13498Y50754* X13704Y49764D02* X13706Y49767D01* X13708Y49769* Y49773* X13707Y49777* X13704Y49781* X13702Y49784* X13699Y49785* X13695Y49786* X13694* X13693Y49785* X13691Y49784* X13628Y49743* X13624Y49741* Y49740* Y49739* X13595Y49689* X13593Y49685* Y49683* Y49641* Y49638* Y49637* X13594* X13612Y49591* Y49589* X13613Y49587* X13616Y49585* X13665Y49547* X13667Y49545* X13668Y49544* X13671* X13688Y49540* X13628Y49503* X13624Y49500* Y49498* X13594Y49448* X13593Y49446* Y49444* X13581Y49380* Y49378* X13580Y49376* X13581Y49374* X13593Y49311* Y49309* Y49308* X13594* X13624Y49257* X13626Y49254* X13628Y49253* X13691Y49213* X13693Y49211* X13695* X13750Y49203* X13751* X13753* X13833* X13834* X13889Y49211* X13892* X13894Y49213* X13957Y49253* X13958Y49255* X13960Y49257* Y49258* X13987Y49308* Y49309* X13988* X13989Y49311* X14003Y49374* Y49377* Y49380* X13990Y49443* X13989Y49444* Y49445* X13988Y49446* X13987* Y49447* X13960Y49496* X13958Y49499* X13957Y49501* X13897Y49540* X13915Y49544* X13916Y49545* X13919Y49547* X13968Y49585* X13970Y49586* X13971Y49588* X13972* X13973Y49590* X13990Y49636* X13991Y49637* Y49638* Y49641* Y49683* Y49684* Y49686* X13990Y49689* X13960Y49739* X13958Y49741* X13954Y49743* X13895Y49784* X13893Y49785* X13889Y49786* X13834Y49794* X13833* X13831* X13753* X13752* X13750* X13695Y49786* X13694* X13691Y49784* X13688Y49781* X13687Y49777* Y49772* X13688Y49768* X13690Y49765* X13694Y49762* X13699* X13701* X13704Y49764* X13749Y53719D02* X13748Y53723D01* X13745Y53727* X13741Y53728* X13737Y53729* X13733Y53728* X13729Y53727* X13726Y53723* X13725Y53719* Y53447* X13351* Y53719* X13350Y53723* X13348Y53727* X13344Y53728* X13339Y53729* X13335Y53728* X13331Y53727* X13328Y53723* X13327Y53719* Y53152* X13328Y53148* X13331Y53144* X13335Y53143* X13339Y53142* X13344Y53143* X13348Y53144* X13350Y53148* X13351Y53152* Y53424* X13725* Y53152* X13726Y53148* X13729Y53144* X13733Y53143* X13737Y53142* X13741Y53143* X13745Y53144* X13748Y53148* X13749Y53152* Y53719* X13754Y49527D02* X13755D01* X13830* X13831* X13884Y49519* X13942Y49481* X13966Y49437* X13978Y49377* X13965Y49316* X13942Y49272* X13883Y49233* X13831Y49227* X13830* X13755* X13754* X13701Y49233* X13643Y49272* X13616Y49318* X13606Y49377* X13616Y49436* X13643Y49484* X13701Y49519* X13754Y49527* Y49769D02* X13831D01* X13885Y49763* X13939Y49725* X13968Y49679* Y49644* X13951Y49602* X13907Y49568* X13830Y49551* X13755* X13677Y49568* X13633Y49602* X13618Y49643* Y49679* X13643Y49724* X13701Y49763* X13754Y49769* X13797Y46656D02* X13792Y46657D01* X13789Y46658* X13742Y46671* X13740* X13736* X13691Y46657* X13688Y46658* X13686* X13684Y46657* X13681Y46656* X13646Y46626* X13644Y46624* X13643Y46621* X13639Y46612* X13637Y46623* X13635Y46626* X13634Y46628* X13598Y46657* X13595Y46659* X13590Y46660* X13543Y46673* X13539* X13537* X13492Y46659* X13489Y46660* X13487* X13484Y46659* X13482Y46657* X13453Y46633* Y46661* X13452Y46666* X13449Y46669* X13445Y46671* X13440* X13436* X13432Y46669* X13430Y46666* X13429Y46661* Y46581* Y46263* X13430Y46259* X13432Y46255* X13436Y46253* X13440* X13445* X13449Y46255* X13452Y46259* X13453Y46263* Y46579* X13465Y46609* X13497Y46637* X13540Y46650* X13581Y46638* X13616Y46609* X13628Y46579* Y46262* X13629Y46257* X13631Y46255* X13635Y46253* X13639Y46252* X13644Y46253* X13648Y46255* X13650Y46258* X13651Y46262* Y46577* X13664Y46608* X13695Y46635* X13739Y46648* X13780Y46636* X13815Y46608* X13827Y46577* Y46262* X13828Y46258* X13830Y46255* X13834Y46253* X13838Y46252* X13843Y46253* X13847Y46255* X13849Y46258* X13850Y46262* Y46580* Y46581* Y46583* X13835Y46621* X13834Y46624* Y46625* X13833Y46626* X13797Y46656* X14056Y50754D02* X14134D01* X14187Y50746* X14244Y50708* X14268Y50665* X14282Y50602* Y50545* X14246Y50500* X14186Y50461* X14134Y50454* X14133* X14058* X14056* X14003Y50461* X13945Y50500* X13918Y50545* X13908Y50604* X13918Y50663* X13945Y50710* X14003Y50746* X14056Y50754* X14192Y50437D02* X14193D01* X14194Y50438* X14197Y50439* X14259Y50480* X14261Y50481* X14262Y50484* X14282Y50508* Y50444* X14258Y50285* X14232Y50257* X14231Y50256* X14190Y50220* X14144Y50212* X14057* X13996Y50220* X13943Y50257* X13939Y50259* X13935Y50258* X13932Y50256* X13929Y50254* X13926Y50249* Y50245* X13927Y50241* X13931Y50238* X13987Y50199* X13989Y50198* X13992Y50197* X14053Y50187* X14057* X14146* X14149* X14197Y50197* X14202Y50199* X14203Y50200* X14247Y50239* X14248Y50240* X14278Y50272* X14279Y50274* X14280Y50275* X14281Y50278* X14306Y50440* Y50441* Y50444* Y50538* Y50541* Y50601* Y50607* X14292Y50670* X14290Y50673* X14263Y50723* X14261Y50726* X14259Y50728* X14198Y50768* X14196Y50769* X14194* X14193Y50770* X14136Y50778* X14135* X14134* X14055* X14053* X14052* X13997Y50770* X13996Y50769* X13993Y50768* X13930Y50729* X13928* X13927Y50727* X13926Y50725* X13896Y50674* Y50673* Y50670* X13884Y50607* Y50605* X13883Y50603* X13884Y50602* X13896Y50539* Y50535* Y50534* X13926Y50484* X13928Y50481* X13930Y50480* X13993Y50439* X13995Y50438* X13997Y50437* X14052Y50431* X14053* X14055* X14135* X14136* X14192Y50437* X14312Y49769D02* X14389D01* X14443Y49762* X14500Y49724* X14524Y49680* X14538Y49618* Y49561* X14502Y49516* X14441Y49477* X14389Y49470* X14388* X14313* X14312* X14259Y49477* X14201Y49516* X14174Y49561* X14164Y49620* X14174Y49679* X14201Y49726* X14259Y49762* X14312Y49769* X14447Y49453D02* X14449D01* X14450Y49454* X14453Y49455* X14515Y49496* X14517Y49497* X14518Y49500* X14538Y49524* Y49460* X14513Y49301* X14488Y49273* X14486Y49272* X14446Y49236* X14400Y49227* X14313* X14252Y49236* X14199Y49273* X14195Y49275* X14190Y49274* X14188Y49272* X14185Y49269* X14182Y49265* Y49260* X14183Y49256* X14186Y49253* X14242Y49215* X14245Y49214* X14248Y49213* X14309Y49203* X14313* X14402* X14405* X14453Y49213* X14458Y49215* X14459Y49216* X14502Y49255* X14503Y49256* X14534Y49288* X14535Y49290* Y49291* X14537Y49294* X14561Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X14548Y49686* X14545Y49689* X14518Y49739* X14516Y49742* X14515Y49744* X14453Y49784* X14452* X14450* X14449Y49785* X14392Y49794* X14391* X14389* X14311* X14309* X14308* X14253Y49785* X14252Y49784* X14249* X14186Y49745* X14184* X14183Y49743* X14182Y49741* X14152Y49690* X14151Y49689* Y49686* X14140Y49622* Y49621* X14138Y49619* X14140Y49618* X14151Y49555* Y49551* Y49550* X14152* X14182Y49500* X14184Y49497* X14186Y49496* X14249Y49455* X14251Y49454* X14252Y49453* X14253* X14308Y49446* X14309* X14311* X14391* X14392* X14447Y49453* X14466Y50443D02* Y50444D01* Y50522* X14479Y50662* X14496Y50694* X14794Y50251* X14744Y50218* X14692Y50212* X14691* X14616* X14615* X14562Y50218* X14503Y50256* X14476Y50302* X14466Y50443* X14476Y50305D02* X14473Y50308D01* X14468Y50309* X14464Y50308* X14460Y50306* X14457Y50303* X14454Y50300* X14453Y50296* X14454Y50294* Y50292* X14484Y50241* X14485Y50240* X14488Y50237* X14551Y50197* X14554Y50195* X14556* X14610Y50187* X14612* X14614* X14692* X14693* X14694* X14750Y50195* X14752* X14755Y50197* X14817Y50237* X14819Y50239* X14821Y50242* X14848Y50292* Y50294* X14850Y50296* X14864Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X14852Y50666* X14851Y50669* X14850Y50672* X14820Y50723* X14818Y50725* X14815Y50727* X14756Y50768* X14754Y50769* X14750Y50770* X14694Y50778* X14614* X14612* X14611* X14556Y50770* X14555* X14554* X14552Y50769* X14489Y50727* X14486Y50725* X14484Y50722* X14457Y50671* X14456Y50669* Y50666* X14442Y50526* Y50523* Y50442* Y50441* Y50440* X14454Y50297* X14455Y50293* X14457Y50290* X14462Y50288* X14466* X14470* X14474Y50291* X14476Y50294* X14477Y50299* X14476Y50302* Y50305* X14615Y50754D02* X14616D01* X14691* X14692* X14746Y50747* X14799Y50709* X14828Y50661* X14840Y50522* Y50444* X14826Y50301* X14809Y50270* X14510Y50712* X14562Y50747* X14615Y50754* X14722Y49458D02* Y49459D01* Y49538* X14735Y49678* X14751Y49709* X15050Y49267* X15000Y49233* X14948Y49227* X14946* X14871* X14818Y49233* X14759Y49272* X14732Y49318* X14722Y49458* X14731Y49321D02* X14728Y49324D01* X14724Y49325* X14720Y49324* X14715Y49322* X14713Y49319* X14710Y49316* X14709Y49312* X14710Y49310* Y49308* X14740Y49257* X14741Y49256* X14744Y49253* X14807Y49213* X14809Y49211* X14812* X14866Y49203* X14867* X14870* X14948* X14949* X14950* X15005Y49211* X15008* X15011Y49213* X15073Y49253* X15075Y49255* X15076Y49258* X15103Y49308* X15104Y49309* X15105Y49312* X15119Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X15108Y49682* X15107Y49684* X15106Y49687* X15076Y49739* X15074Y49741* X15070Y49743* X15011Y49784* X15010Y49785* X15005Y49786* X14950Y49794* X14949* X14870* X14867* X14812Y49786* X14811* X14810Y49785* X14808Y49784* X14744Y49743* X14742Y49741* X14740Y49738* X14713Y49687* X14712Y49685* X14711Y49682* X14698Y49542* Y49539* Y49458* Y49457* Y49455* X14710Y49313* X14711Y49308* X14713Y49305* X14717Y49304* X14721* X14726* X14730Y49306* X14732Y49310* X14733Y49315* X14732Y49318* X14731Y49321* X14871Y49769D02* X14946D01* X14948* X15001Y49763* X15055Y49725* X15084Y49677* X15096Y49538* Y49460* X15082Y49317* X15064Y49286* X14766Y49728* X14818Y49763* X14871Y49769* X15081Y50450D02* X15271D01* X15275Y50449* X15278Y50447* X15279Y50444* X15280Y50440* X15279Y50435* X15278Y50432* X15275Y50430* X15271* X15081* X15077* X15074Y50432* X15072Y50435* Y50440* Y50444* X15073Y50447* X15076Y50449* X15081Y50450* X15337Y49465D02* X15526D01* X15530* X15533Y49462* X15535Y49459* X15536Y49456* X15535Y49451* X15533Y49448* X15530Y49446* X15526Y49445* X15337* X15333Y49446* X15330Y49448* X15328Y49451* X15327Y49456* X15328Y49459* X15329Y49462* X15332Y49465* X15337* X15560Y50443D02* Y50444D01* Y50522* X15573Y50662* X15589Y50694* X15888Y50251* X15838Y50218* X15786Y50212* X15784* X15709* X15656Y50218* X15597Y50256* X15570Y50302* X15560Y50443* X15569Y50305D02* X15566Y50308D01* X15562Y50309* X15558Y50308* X15553Y50306* X15550Y50303* X15548Y50300* X15547Y50296* X15548Y50294* Y50292* X15578Y50241* X15579Y50240* X15582Y50237* X15645Y50197* X15647Y50195* X15650* X15704Y50187* X15705* X15708* X15786* X15787* X15788* X15843Y50195* X15846* X15849Y50197* X15911Y50237* X15913Y50239* X15914Y50242* X15941Y50292* X15942Y50294* X15943Y50296* X15957Y50440* Y50441* Y50442* Y50522* Y50523* Y50524* Y50526* X15946Y50666* X15945Y50669* X15944Y50672* X15914Y50723* X15912Y50725* X15908Y50727* X15849Y50768* X15848Y50769* X15843Y50770* X15788Y50778* X15787* X15708* X15705* X15650Y50770* X15649* X15648* X15646Y50769* X15582Y50727* X15580Y50725* X15578Y50722* X15551Y50671* X15550Y50669* X15549Y50666* X15536Y50526* Y50523* Y50442* Y50441* Y50440* X15548Y50297* X15549Y50293* X15551Y50290* X15555Y50288* X15559* X15564* X15568Y50291* X15570Y50294* X15571Y50299* X15570Y50302* X15569Y50305* X15709Y50754D02* X15784D01* X15786* X15839Y50747* X15893Y50709* X15922Y50661* X15934Y50522* Y50444* X15920Y50301* X15902Y50270* X15604Y50712* X15656Y50747* X15709Y50754* X15964Y49769D02* X16041D01* X16094Y49762* X16152Y49724* X16176Y49680* X16189Y49618* Y49561* X16153Y49516* X16093Y49477* X16041Y49470* X16040* X15965* X15964* X15911Y49477* X15853Y49516* X15826Y49561* X15816Y49620* X15826Y49679* X15853Y49726* X15911Y49762* X15964Y49769* X16099Y49453D02* X16100D01* X16101Y49454* X16104Y49455* X16166Y49496* X16169Y49497* Y49500* X16189Y49524* Y49460* X16165Y49301* X16139Y49273* X16138Y49272* X16098Y49236* X16051Y49227* X15964* X15904Y49236* X15850Y49273* X15846Y49275* X15842Y49274* X15839Y49272* X15836Y49269* X15834Y49265* X15833Y49260* X15835Y49256* X15838Y49253* X15894Y49215* X15897Y49214* X15900Y49213* X15960Y49203* X15961* X15964* X16054* X16057* X16104Y49213* X16110Y49215* Y49216* X16154Y49255* X16155Y49256* X16185Y49288* X16187Y49290* Y49291* X16189Y49294* X16213Y49455* Y49456* Y49459* Y49554* Y49557* Y49617* Y49622* X16200Y49686* X16197Y49689* X16170Y49739* X16168Y49742* X16166Y49744* X16105Y49784* X16104* X16101* X16100Y49785* X16044Y49794* X16042* X16041* X15963* X15961* X15960* X15905Y49785* X15904Y49784* X15901* X15838Y49745* X15836* X15835Y49743* X15833Y49741* X15804Y49690* X15803Y49689* Y49686* X15791Y49622* Y49621* X15790Y49619* X15791Y49618* X15803Y49555* Y49551* Y49550* X15804* X15833Y49500* X15836Y49497* X15838Y49496* X15901Y49455* X15902Y49454* X15904Y49453* X15905* X15960Y49446* X15961* X15963* X16042* X16044* X16099Y49453* X16374Y49458D02* Y49459D01* Y49538* X16387Y49678* X16403Y49709* X16701Y49267* X16652Y49233* X16599Y49227* X16598* X16523* X16469Y49233* X16411Y49272* X16384Y49318* X16374Y49458* X16383Y49321D02* X16380Y49324D01* X16375Y49325* X16371Y49324* X16367Y49322* X16364Y49319* X16361Y49316* Y49312* Y49310* X16362Y49308* X16391Y49257* X16393Y49256* X16396Y49253* X16459Y49213* X16461Y49211* X16463* X16518Y49203* X16519* X16521* X16599* X16600* X16602* X16657Y49211* X16660* X16663Y49213* X16725Y49253* X16726Y49255* X16728Y49258* X16755Y49308* X16756Y49309* X16757Y49312* X16771Y49455* Y49456* Y49458* Y49537* Y49539* Y49540* Y49542* X16759Y49682* Y49684* X16758Y49687* X16727Y49739* X16726Y49741* X16722Y49743* X16663Y49784* X16661Y49785* X16657Y49786* X16602Y49794* X16601* X16521* X16519* X16518* X16463Y49786* X16462* Y49785* X16459Y49784* X16396Y49743* X16394Y49741* X16391Y49738* X16365Y49687* X16364Y49685* X16363Y49682* X16350Y49542* Y49539* Y49458* Y49457* Y49455* X16361Y49313* X16363Y49308* X16365Y49305* X16369Y49304* X16373* X16378* X16381Y49306* X16384Y49310* X16385Y49315* X16384Y49318* X16383Y49321* X16523Y49769D02* X16598D01* X16599* X16653Y49763* X16707Y49725* X16736Y49677* X16748Y49538* Y49460* X16733Y49317* X16716Y49286* X16417Y49728* X16469Y49763* X16523Y49769* X18110Y8248D02* X18212D01* X18298Y8162* X18383* X18523Y8021* X30628Y16221D02* X30764Y16357D01* X31170* X31241Y16428* Y16580* X31344Y16683* Y16831* X31398* X31083Y11881D02* X31221Y12019D01* X31524* X31743Y11800* X32233* X32520Y12087* G54D15* X3661Y29016D02* X4016D01* X3661Y29646D02* X4016D01* X3661Y32362D02* Y32244D01* X3917Y31988* X3937* Y33780D02* Y33366D01* X4350Y25374D02* X4354Y25371D01* X4764* Y25197* X4390Y33799D02* Y33770D01* X4597* X4724Y33643* Y33445* X4480Y9236D02* X5959D01* X6120Y9075* X6693* X4528Y29016D02* X4016D01* X4528Y29646D02* X4016D01* X4724Y32067D02* X5081D01* X5247Y31901* X6714* X6742Y31929* X6949* X4764Y25197D02* Y25019D01* X4351* X4350Y25020* X4783Y26575D02* X4469D01* X5059Y27323D02* X5020Y27362D01* X4705* X5059Y27323D02* X5138Y27244D01* X5394* X5138Y2165D02* X4744D01* X5276Y31693D02* X5374D01* X5531Y31535* Y31496* X5276Y35039D02* Y35215D01* X5707* X5709Y35217* X5276Y35039D02* Y34885D01* X5705* X5709Y34882* X5394Y27244D02* X5906D01* X5531Y34055D02* Y34370D01* X5866Y25197D02* Y25018D01* X6317* X6319Y25020* X5945Y18189D02* X5492D01* X6024Y32205D02* X5512D01* X6043Y21732D02* X5492D01* X6240Y15433D02* X6299Y15374D01* X6693* X6319Y25315D02* X5866D01* Y25197* X6319Y35827D02* X6036D01* X5725Y36138* Y36775* X5367Y37133* X4540* X4035Y37638* X6339Y32224D02* X6319Y32205D01* X6024* X6417Y30709D02* X5886D01* X6693Y9429D02* Y9724D01* Y14193D02* X6660D01* X6508Y14041* Y13924* X6335Y13750* X6024* Y13780* X6693Y14547D02* X6007D01* X5818Y14736* X4480* X6693Y14547D02* X7092D01* X7111Y14528* X7500* X7205Y15433D02* X7058Y15580D01* Y15581* X6910Y15728* X6693* X7283Y9075D02* X7323D01* X7559Y8839* Y8819* X7283Y9429D02* Y9624D01* Y9862* X7480Y1614D02* X7165D01* X7087Y1536* Y1457* X7480Y13799D02* X7441D01* X7224Y13583* X7205* X7480Y15433D02* X7475Y15428D01* Y15321* X7480Y15316* Y15138* X7500Y16437D02* X7480Y16417D01* Y16122* X7500Y16437D02* X7520Y16457D01* Y16752* X7539Y9646D02* X7319D01* X7297Y9624* X7283* X7835Y10433D02* X7874D01* X8071Y10630* X7894Y9055D02* Y9331D01* Y9429* X7913Y9449* Y9685* X8071Y9843* Y4921D02* X8268Y5118D01* X8071Y11417D02* X7835D01* X7795Y11457* X8071Y12205D02* X7894Y12382D01* Y12421* X8071Y12992D02* X7894Y13169D01* X8091Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X8209Y25394D02* Y25374D01* Y25945D02* Y25394D01* Y26516D02* Y25945D01* Y31280D02* Y31299D01* Y31850* X8268Y1614D02* X8661D01* X8465Y3740D02* X8661Y3937D01* X8465Y4921D02* X8661Y5118D01* X8465Y6102D02* X8642Y6280D01* X8661* X8465Y9843D02* X8268Y9646D01* X8465Y10630D02* X8307Y10472D01* Y10433* X8465Y11417D02* X8268Y11614D01* X8465Y12205D02* X8268Y12402D01* X8642Y13169D02* X8465Y12992D01* X8661Y11614D02* X8858Y11811D01* X8799Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X8858Y3346D02* X8661Y3150D01* X8858Y4528D02* X8661Y4331D01* X8858Y4921D02* X8997Y5060D01* Y5118* X8858Y5315D02* X8720Y5453D01* X8661* X8858Y5709D02* X8661Y5906D01* Y5952* X8858Y6496D02* X8661Y6693D01* X8858Y7283D02* X8661Y7480D01* X8858Y7677D02* X8661Y7874D01* X8858Y10630D02* X8661Y10433D01* X8858Y11024D02* X8661Y10827D01* X8917Y26516D02* Y25945D01* Y32421D02* Y31850D01* X9035Y11627D02* X9042D01* X9055Y15531D02* Y16137D01* X8795Y16398* X8543* X9252Y2559D02* X9449Y2756D01* X9252Y4528D02* X9055Y4331D01* X9252Y4921D02* X9068Y4738D01* Y4704* X9252Y5315D02* X9076Y5491D01* Y5532* X9252Y5709D02* X9076Y5885D01* Y5892* X9252Y6102D02* X9055Y6299D01* X9252Y10630D02* X9055Y10433D01* X9252Y11024D02* X9068Y10840D01* X9035* X9252Y11417D02* X9042Y11627D01* X9252Y11811D02* X9068Y11627D01* X9042* X9252Y12205D02* X9396Y12349D01* X9455* X9272Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X9429Y3937D02* X9449D01* X9646Y4134* X9587Y15177D02* X9055D01* X9626Y1457D02* Y1772D01* Y25374D02* Y25394D01* Y25945* Y32421D02* Y31850D01* X9646Y2559D02* X9449Y2362D01* X9646Y3346D02* X9449Y3543D01* X9646Y4528D02* X9449Y4331D01* X9646Y4921D02* X9436Y4711D01* Y4704* X9646Y5315D02* X9436Y5525D01* Y5532* X9646Y5709D02* X9449Y5906D01* X9646Y6102D02* X9449Y6299D01* X9646Y6496D02* X9449Y6693D01* X9646Y6890D02* X9449Y7087D01* X9646Y11024D02* X9455Y10833D01* Y10774* X9646Y11417D02* X9501Y11562D01* X9455* X9646Y11811D02* X9455Y12002D01* Y12060* X9646Y12205D02* X9803Y12362D01* X9843* X9646Y12992D02* X9449Y13189D01* X9856Y3523D02* Y3556D01* X10039Y3740* X9980Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X10000Y8661D02* X10197Y8858D01* X10551* X10020Y20472D02* Y21063D01* X10039Y4134D02* X9837Y3931D01* X9790* X10039Y4528D02* X9863Y4351D01* X9856* X10039Y4921D02* X9843Y4724D01* X10039Y5315D02* X9843Y5512D01* X10039Y5709D02* X9843Y5906D01* X10039Y6102D02* X9843Y6299D01* X10039Y6496D02* X9843Y6693D01* X10039Y10630D02* X10236Y10433D01* X10039Y11024D02* X10220Y10843D01* Y10834* X10039Y11417D02* X10220Y11237D01* Y11229* X10039Y11811D02* X10216Y11987D01* X10249* X10039Y12205D02* X10217Y12382D01* X10236* X10256Y9528D02* X10463D01* X10611Y9675* Y10058* X10433Y10236* X10276Y20472D02* X10020D01* X10335Y25945D02* Y26516D01* Y31280D02* Y31299D01* Y31850* X10417Y14134D02* X11004D01* X10433Y3740D02* X10223Y3530D01* Y3523* X10433Y4134D02* X10289Y3990D01* Y3931* X10433Y4528D02* X10257Y4351D01* X10223* X10433Y4921D02* X10236Y4724D01* X10433Y5315D02* X10236Y5512D01* X10433Y5709D02* X10236Y5906D01* X10433Y6102D02* X10236Y6299D01* X10433Y7283D02* X10230Y7486D01* X10184* X10433Y7677D02* X10630Y7480D01* X10688* X10433Y12598D02* X10617Y12782D01* Y12816* X10453Y16535D02* Y16252D01* X10417Y16217* Y15787* X10453Y16535D02* X10157D01* X10689Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X10787Y37480D02* X10801Y37494D01* Y37943* X10807Y16535D02* X11102D01* X10827Y2559D02* X11024Y2362D01* X10827Y3740D02* X10630Y3543D01* X10827Y4134D02* X11024Y3937D01* X10827Y4528D02* X11024Y4331D01* X10827Y4921D02* X11010Y4738D01* Y4704* X10827Y5315D02* X11010Y5499D01* Y5532* X10827Y5709D02* X11024Y5906D01* X10827Y6102D02* X11024Y6299D01* X10827Y7283D02* X11024Y7480D01* X10827Y10630D02* X11024Y10433D01* X10827Y11811D02* X11024Y12008D01* X11043Y26516D02* Y25945D01* Y32421D02* Y31850D01* X11102Y8858D02* Y8327D01* X11161Y29724D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X11220Y2953D02* X11024Y2756D01* X11220Y3740D02* X11024Y3543D01* X11220Y4134D02* X11397Y3957D01* X11455* X11220Y4528D02* X11431Y4318D01* Y4310* X11220Y4921D02* X11371Y4771D01* Y4724* X11220Y5315D02* X11417Y5512D01* X11220Y5709D02* X11417Y5906D01* X11220Y6102D02* X11417Y6299D01* X11220Y7283D02* X11417Y7480D01* X11220Y9843D02* X11438Y9625D01* X11483* X11220Y12992D02* X11417Y13189D01* X11220Y29882D02* X11161Y29823D01* Y29724* X11240Y1516D02* X11201D01* X10945Y1772* X10906* X11417Y11220D02* X11220Y11417D01* X11594Y10217D02* X11575Y10236D01* X11220* X11614Y2559D02* X11811Y2362D01* X11614Y2953D02* X11811Y2756D01* X11614Y3346D02* X11811Y3150D01* X11614Y3740D02* X11811Y3543D01* X11614Y4134D02* X11811Y3937D01* X11614Y4528D02* X11798Y4344D01* Y4310* X11614Y4921D02* X11798Y5105D01* Y5139* X11614Y5315D02* X11811Y5512D01* X11614Y5709D02* X11811Y5906D01* X11614Y6102D02* X11811Y6299D01* X11614Y6496D02* X11811Y6693D01* X11732Y14134D02* X12417D01* X11752Y26516D02* Y25945D01* Y32421D02* Y31850D01* X11811Y29764D02* X11850Y29724D01* X11870Y29705* Y29173* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X12008Y3346D02* X12205Y3150D01* X12008Y3740D02* X12205Y3543D01* X12008Y4528D02* X12205Y4331D01* Y4284* X12008Y4921D02* X12152Y4777D01* X12211* X12008Y5315D02* X12205Y5512D01* X12008Y5709D02* X12184Y5885D01* Y5919* X12008Y6102D02* X12184Y6279D01* Y6286* X12008Y6890D02* X12152Y7034D01* Y7081* X12185Y1476D02* X12186D01* X12598* Y1614* X12185Y1752D02* X12598D01* Y1614* X12205Y3917D02* Y3937D01* X12008Y4134* X12402Y2559D02* X12598Y2362D01* X12402Y2953D02* X12612Y2743D01* Y2735* X12402Y4528D02* X12585Y4344D01* X12619* X12402Y4921D02* X12612Y4711D01* X12619* X12402Y6102D02* X12598Y6299D01* Y6358* X12461Y25945D02* Y25453D01* X12520Y25394* X12756* X12461Y31280D02* Y31299D01* Y31850* X12579Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X12697Y9449D02* X12205D01* X12795Y2559D02* X12992Y2362D01* X12795Y2953D02* X12979Y2769D01* Y2735* X12795Y3346D02* X12992Y3150D01* X13039* X12795Y3740D02* X12972Y3564D01* X12979* X12795Y4134D02* X12992Y3937D01* X12795Y6102D02* X12979Y6286D01* X13013* X12795Y6890D02* X12992Y7087D01* X12795Y7677D02* X12992Y7874D01* X13189Y2559D02* X13386Y2362D01* X13189Y2953D02* X13386Y2756D01* X13189Y7283D02* X13386Y7480D01* X13307Y23681D02* X13553D01* X13583Y23652* X13799* X13701Y31063D02* X13847Y31209D01* X13937Y31299* X13799Y23583D02* Y23652D01* Y23701* Y23834* X13896Y23931* Y24296* X13822Y24370* X13602* X13858Y1476D02* X13386D01* Y1614* X13858Y1772D02* X13850Y1780D01* X13386* Y1614* X13917Y7480D02* X13918D01* Y7087* X14055* X13937Y31299D02* X14055D01* X14114Y31358* Y31850* X14055Y5906D02* Y6299D01* Y7087D02* X14188D01* Y7475* X14193Y7480* X14055Y28465D02* X14232Y28642D01* Y29173* X14114Y25374D02* Y25394D01* Y25945* X14154Y23701D02* Y23583D01* X14173Y32480D02* X14685D01* X14823Y32343* Y31850* X14232Y35630D02* Y35079D01* Y35650D02* Y35630D01* X14350Y24370D02* X14134D01* X14073Y24309* Y23938* X14154Y23858* Y23701* X14409Y23583D02* X14154D01* X14577Y19154D02* Y18672D01* X14764Y29764D02* X14803Y29724D01* X14882* X14941Y29665* Y29173* X14823Y26516D02* Y25945D01* X14941Y35630D02* Y35079D01* Y35650D02* Y35630D01* X15138Y7402D02* X15945D01* Y7047* X15177Y6201D02* X15748D01* X15236Y28228D02* X15382Y28082D01* X15658* X15797Y28221* Y28393* X15650Y28540* Y29173* X15256Y1929D02* X15945D01* X15276Y23287D02* Y24095D01* X15550Y24370* X15768* X15295Y37480D02* X15301Y37486D01* Y37943* Y36467D02* Y36923D01* X15295Y36929* X15531Y25374D02* Y25394D01* Y25945* X15591Y30591D02* X16240Y31240D01* Y31299* X15650Y35630D02* Y35079D01* Y35650D02* Y35630D01* X15748Y10630D02* X16142D01* X15807Y37480D02* X15801Y37486D01* Y37943* X15827Y32835D02* X15531Y32539D01* Y31850* X15945Y1929D02* X16614D01* X15945Y7047D02* Y6773D01* X15159* X15157Y6772* X15965Y23583D02* Y23807D01* X16054Y23896* Y24279* X15962Y24370* X15768* X16063Y29724D02* Y29764D01* X16240Y25945D02* Y26555D01* Y31299D02* Y31850D01* X16299Y37480D02* X16301Y37482D01* Y37943* X16319Y23268D02* Y23583D01* Y23815* X16223Y23911* Y24294* X16299Y24370* X16516* X16358Y29173D02* X16329D01* Y29684* X16289Y29724* X16063* X16358Y34508D02* Y35079D01* X16801Y37943D02* Y37490D01* X16811Y37480* X16890Y30827D02* Y31240D01* X16949Y31299* Y26516D02* Y25945D01* Y31299D02* Y31850D01* X17067Y29173D02* Y29665D01* X17126Y29724* X17067Y34508D02* Y35079D01* X17126Y23386D02* X16772D01* X17126Y29724D02* X17165Y29764D01* X17480* X17224Y4724D02* X17265D01* X17481Y4941* X17520* X17283Y6457D02* Y6280D01* X17480Y6083* X17520* X17301Y37945D02* Y37482D01* X17303Y37480* X17323Y6713D02* Y6496D01* X17283Y6457* X17323Y9823D02* X17087D01* X17028Y9764* X17520Y11201D02* X17559D01* X17756Y11398* X17835* X17598Y30709D02* Y31240D01* X17657Y31299* X17650Y14894D02* Y14835D01* X18002* X18106Y14731* X18208* X17657Y26516D02* Y25945D01* Y31299D02* Y31850D01* X17736Y7303D02* X17559D01* X17362Y7500* X17323* X17750Y29724D02* X17710Y29764D01* X17480* X17776Y29173D02* Y29698D01* X17750Y29724* X17776Y34508D02* Y35079D01* X17795Y37480D02* X17801Y37486D01* Y37945* X17835Y5591D02* X17824Y5579D01* X17708* X17559Y5728* X17520* X17835Y7240D02* X17800D01* X17736Y7303* X17835Y10963D02* X17747Y10876D01* X17520* Y10846* X17835Y11398D02* X17992D01* X17835Y12126D02* X17421D01* X17933Y24409D02* X18150D01* X18225Y24335* Y23979* X18130Y23884* Y23740* X17953Y15965D02* X18031Y15886D01* X18208* X17992Y5059D02* X18000Y5067D01* Y5193* X18156Y5349* X18246* X18358Y5461* X17992Y5059D02* X18160Y4891D01* X18358* X17992Y5059D02* X18033Y16989* X18050D01* X18208Y16831* X18071Y10984D02* X17856D01* X17835Y10963* X18071Y10984D02* X18108Y11021D01* X18358* X18130Y23622D02* X17590D01* X17354Y23386* X17126* X18130Y23740D02* Y23622D01* X18150Y10276D02* X18173D01* X18358Y10461* X18208Y3641D02* X17972Y3406D01* X18208Y11301D02* X18089D01* X17992Y11398* X18208Y13011D02* X17993D01* X17972Y13031* X18208Y15291D02* X18178D01* X18095Y15374* X17972* X18307Y37480D02* X18301Y37486D01* Y37945* X18358Y6031D02* X18246Y5919D01* X18162* X18042Y5799* Y5779* X17853Y5591* X17835* X18358Y7161D02* X18133D01* X18055Y7240* X17835* X18358Y12161D02* X18028D01* X17993Y12126* X17835* X18366Y25374D02* Y25394D01* Y25945* Y31260D02* Y31299D01* Y31850* X18425Y29764D02* X18465Y29724D01* X18484Y29705* Y29173* Y23622D02* Y23740D01* Y23877* X18378Y23983* Y24323* X18464Y24409* X18681* X18484Y35630D02* Y35079D01* Y35650D02* Y35630D01* X18673Y6601D02* X18358D01* X18673D02* X18891D01* X18898Y6594* X18673Y8881D02* X18917Y9125D01* Y9350* X18673Y8881D02* X18358D01* X18673Y12731D02* Y12846D01* X18838Y13011* X18720Y7165D02* Y7112D01* X18726Y7106* Y6993* X18838Y6881* X18760Y14783D02* Y14744D01* X18673Y14657* Y14441* X18780Y23740D02* X18751Y23712D01* X18661Y23622* X18484* X18799Y15335D02* Y15114D01* X18936Y14977* X19048Y14866* Y14851* X18818Y4491D02* X18608Y4281D01* X18523* X18818Y4491D02* X18996Y4669D01* Y4685* X18838Y6311D02* X18957Y6193D01* Y6063* X18838Y7451D02* X18720Y7334D01* Y7165* X18838Y7451D02* X18996D01* X18838Y9731D02* X18523D01* X18838Y13011D02* Y13151D01* X18988Y13301* X18898Y23858D02* X18780Y23740D01* X18917Y10965D02* X18730D01* X18673Y11021* X18957Y6063D02* X18925Y6031D01* X18673* X18957Y10138D02* X18838Y10019D01* Y9731* X18957Y35630D02* Y35079D01* Y35650D02* Y35630D01* X18988Y12161D02* X19228D01* X19291Y12224* X18988Y13301D02* X19345D01* X19370Y13327* X19035Y16063D02* X19023Y16051D01* Y15811* X19075Y6929D02* Y7148D01* X18985Y7237* Y7429* X18996Y7439* Y7451* X19078Y5296D02* X18959Y5177D01* X18839* X19138Y9601D02* X18917Y9380D01* Y9350* X19153Y16831D02* Y17004D01* X18880Y17277* Y17478* X18701Y17657* X19158Y10331D02* X18965Y10138D01* X18957* X19173Y8189D02* X19163Y8200D01* Y8596* X19178Y8611* Y7621D02* X19059Y7502D01* X19048* X18996Y7451* X19178Y13831D02* X19093Y13917D01* Y14240* X19291Y16201D02* X19293D01* X19304* X19427Y16078* X19538Y15967* Y15951* X19368Y4781D02* Y5037D01* X19370Y5039* X19368Y5931D02* X19532Y5768D01* X19547* X19368Y12581D02* X19646Y12303D01* X19803* X19458Y4141D02* Y3983D01* X19468Y3973* Y3791* X19458Y16366D02* X19293Y16201D01* X19488Y3563D02* X19468Y3583D01* Y3791* X19547Y5768D02* X19592D01* X19748Y5611* X19558Y6641D02* X19370Y6453D01* Y6417* X19665Y35630D02* Y35079D01* Y35650D02* Y35630D01* X19678Y14851D02* Y15007D01* X19587Y15098* X19738Y7901D02* Y7376D01* X19724Y7362* X19744Y9350D02* Y9699D01* X19748Y9703* Y9871* Y8881D02* Y8713D01* X19744Y8709* Y8406* X19748Y13561D02* X19961Y13349D01* Y13346* X19888Y5321D02* X20070D01* X20163Y5413* X20295* X19938Y13831D02* X20197Y14090D01* X19941Y11102D02* X19938Y11100D01* Y10871* X19941Y11102D02* Y11388D01* X19738Y11591* X19980Y17039D02* X20028Y16992D01* Y16681* X20039Y18248D02* X20079Y18287D01* Y18425* Y3563D02* Y3570D01* X20150Y3641* X20308* X20079Y18425D02* Y18661D01* X20118Y6911D02* Y7135D01* X20138Y7155* Y7362* X20118Y12581D02* Y12992D01* X20059Y13051* X20197Y8130D02* Y8337D01* X20248Y8389* Y8393* X20298Y8443* Y8611* X20197Y14090D02* Y13933D01* X20298Y13831* X20197Y14114D02* Y14090D01* X20295Y14724D02* Y14718D01* X20118Y14541* X20298Y7621D02* X20138Y7461D01* Y7362* X20298Y9601D02* Y9353D01* X20295Y9350* X20301Y37945D02* Y37455D01* X20374Y37382* X20308Y3641D02* Y3956D01* X20315Y4213D02* X20219D01* X19983Y4448* X19878Y4553* Y4581* X20315Y11102D02* Y11507D01* X20298Y11523* Y11861* X20328Y10871D02* Y11089D01* X20315Y11102* X20472Y10118D02* Y10157D01* X20298Y10331* X20498Y5191D02* X20675D01* X21004Y4862* X20498Y5551D02* Y5899D01* X20453Y5945* X20571Y16142D02* X20598Y16169D01* Y16366* X20571Y16142D02* X20472Y16043D01* X20310* X20178Y15911* X20610Y35630D02* Y35079D01* Y35650D02* Y35630D01* X20650Y2953D02* Y2884D01* X20828* X20925Y2981* Y2992* X20745Y15391D02* X20598D01* X20498Y15291* X20758Y5881D02* X21019D01* X21024Y5886* X20798Y7901D02* Y7709D01* X20823Y7684* Y7425* X20886Y7362* X20828Y9871D02* Y9703D01* X20827Y9702* Y9350* X20828Y10601D02* Y10195D01* X20925Y10098* X20886Y6634D02* Y6654D01* X20874Y6641* X20648* X20886Y6654D02* Y6685D01* X20828Y6743* Y6911* X20888Y3641D02* X21006Y3524D01* X21083* X20888Y4271D02* Y3956D01* X20945Y11378D02* X20947Y11380D01* Y11472* X20828Y11591* X20965Y14390D02* X20944D01* X20680Y14125* Y13831* X20648* X20965Y14390D02* X20966Y14391D01* X21208* X20980Y14960D02* X21005D01* X21208Y14756* Y14751* X21142Y13346D02* X21034Y13239D01* Y12887* X20998Y12851* X21142Y13346D02* X21186Y13391D01* X21438* X21142Y20295D02* X21398D01* X21437Y20335* X21142Y20650D02* X21359D01* X21424Y20714* Y20763* X21142Y22736D02* X21359D01* X21496Y22873* Y23031* X21142Y23091D02* Y23269D01* X21071Y23339* X21062* X21161Y6634D02* X21221D01* X21498Y6911* X21168Y3791D02* Y4111D01* X21389* X21501Y4223* X21586* X21732Y4370* X21168Y16681D02* Y16970D01* X21035Y17103* Y17146* X21178Y6911D02* Y6651D01* X21161Y6634* X21181Y4350D02* X21141D01* X21062Y4271* X20888* X21181Y4350D02* X21239D01* X21310Y4421* X21478* X21181Y8169D02* X21034Y8316D01* X21015* X20815Y8516* Y8681* X20818Y8684* Y8881* X21181Y8169D02* X21373Y8361D01* Y8611* X21181Y8169D02* X21201Y2953* Y3022D01* X20955* X20925Y2992* X21208Y4991D02* X21584D01* X21732Y4843* X21220Y11083D02* X21178Y11040D01* Y10601* X21378Y12323D02* Y12115D01* X21338Y12076* Y11861* X21388Y7621D02* Y7813D01* X21368Y7833* Y7982* X21181Y8169* X21388Y9601D02* Y9361D01* X21378Y9350* X21444Y3268D02* X21293Y3420D01* Y3667* X21168Y3791* X21457Y18661D02* Y18326D01* X21594Y18189* X21732* X21478Y5901D02* X21660Y6083D01* X21732* X21478Y14571D02* X21100D01* X20978Y14693* X21538Y12581D02* X21622D01* X21704Y12499* Y12489* X21850Y12343* X21555Y2953D02* X21526D01* Y3187* X21444Y3268* X21555Y35630D02* Y35079D01* Y35650D02* Y35630D01* X21634Y14035D02* X21794D01* X21938Y13891* X21713Y15138D02* X21632D01* X21478Y15291* X21713Y15492D02* X21667D01* X21478Y15681* X21713Y15492D02* X21966D01* X21975Y15501* X22188* X21713Y20248D02* X21791Y20169D01* Y19882* X21732Y3543D02* X21738Y3549D01* Y3791* X21732Y3543D02* X21759Y3516D01* X21903* X22028Y3641* X21732Y18189D02* X21959D01* X22011Y18137* X22382* Y18110* X21738Y16366D02* Y16148D01* X21713Y16122* X21890Y10138D02* X21908Y10119D01* Y9871* X21890Y10138D02* Y10190D01* X21748Y10331* X21988Y11929D02* X21920Y11861D01* X21728* X22008Y8091D02* X22033Y8065D01* Y7771* X22018Y16831D02* Y16940D01* X21958Y17001* Y17173* X22148Y17362* X22165* X22188Y4991D02* X21881D01* X21732Y4843* X22224Y14508D02* X22198Y14534D01* Y14751* X22340Y23062D02* X22264Y23138D01* Y23425* X22382Y18110D02* X22461Y18031D01* X22382Y19488D02* Y19606D01* X22146Y19843* Y19882* X22441Y9134D02* X22450D01* X22607Y9291* X22441Y10394D02* X22450D01* X22607Y10236* X22458Y5901D02* X22670Y5689D01* X22717* X22500Y35630D02* Y35079D01* Y35650D02* Y35630D01* X22588Y3956D02* X22700Y4068D01* Y4229* X22677Y4252* X22588Y3956D02* X22416D01* X22397Y3976* X22308Y4065* Y4111* X22618Y12992D02* X22410D01* X22330Y13071* X22148* X22624Y23061D02* X22618Y23066D01* Y23425* X22756Y3209D02* X22815Y3268D01* X22795Y8504D02* X22765D01* X22607Y8346* X22815Y3268D02* X22904Y3356D01* X22979* X23158Y3535* Y3641* X22972Y5531D02* X23018D01* X23178Y5371* X22972Y6614D02* X22795Y6791D01* X22188* X23158Y3641D02* Y3956D01* Y4271D02* X23040Y4390D01* X22953* X23178Y5731D02* X23639D01* X23681Y5689* X23178Y6431D02* X22995Y6614D01* X22972* X23209Y35630D02* Y35079D01* Y35650D02* Y35630D01* X23339Y9291D02* X23497Y9134D01* X23346Y7579D02* X23153Y7771D01* X23346Y7579D02* Y7595D01* X23523Y7771* X23448Y3791D02* Y3633D01* X23386Y3571* Y3563* X23448Y5181D02* X23567Y5062D01* X23665* X23681Y5079* X23448Y6621D02* Y6611D01* X23545Y6514* X23681Y6378* X23497Y9134D02* X23339Y8976D01* X23524Y9134D02* X23548D01* X23705Y9291* X23524Y9134D02* X23497D01* X23524Y10079D02* X23548D01* X23705Y10236* X23524Y10079D02* X23497D01* X23339Y9921* X23524Y11024D02* X23548D01* X23705Y11181* X23524Y11024D02* X23497D01* X23339Y10866* X23524Y18307D02* Y18701D01* Y19094* Y19488* X23527Y16843D02* Y18110D01* Y18304* X23524Y18307* X23547Y8504D02* X23705Y8346D01* X23563Y26654D02* Y25945D01* Y31299D02* Y31240D01* Y31850D02* Y31299D01* X23661Y13622D02* X23569D01* X23448Y13501* X23681Y4331D02* X23571Y4441D01* X23448* X23681Y4331D02* X23848Y4164D01* X24018* Y4111* X23681Y5079D02* Y5034D01* X23448Y4801* X23681Y6791D02* X23628D01* X23448Y6971* X23681Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X23728Y16831D02* Y17760D01* X23877Y17909* Y18110* X23740Y16240D02* Y16199D01* X23888Y16051* X23877Y18110D02* X23878Y18111D01* Y18307* Y18701D02* Y19026D01* Y19094D02* Y19026D01* X23888Y15291D02* X23882Y15285D01* X23808* X23642Y15118* X23888Y16051D02* X23968D01* X24158Y15861* X23917Y5827D02* X24073D01* X24168Y5731* X23937Y6476D02* X23982Y6431D01* X24168* X23996Y4783D02* X24168Y4611D01* X23996Y4783D02* X23937D01* X23996D02* X24014Y4801D01* X24438* X24018Y3791D02* Y3467D01* X23976Y3425* X24018Y3791D02* X23853Y3956D01* X23738* X24018Y16681D02* Y16892D01* X24003Y16907* Y17604* X24293Y17894* X24311* X24026Y12711D02* X23873D01* X24168Y5371D02* X24049Y5490D01* X23939* X23740Y5689* X23681* X24168Y5731D02* X24268D01* X24438Y5901* X24168Y6791D02* X24138Y6761D01* X23731* X23701Y6791* X23681* X24168Y7141D02* X24133Y7176D01* X23711* X23681Y7146* X24173Y19114D02* X24155D01* X24067Y19026* X23878* X24229Y10079D02* X24071Y10236D01* X24229Y10079D02* X24071Y9921D01* X24252Y9134D02* X24280D01* X24437Y9291* X24252Y9134D02* X24229D01* X24071Y8976* X24252Y10079D02* X24229D01* X24252D02* X24280D01* X24437Y10236* X24252Y11024D02* X24229D01* X24071Y10866* X24252Y11024D02* X24280D01* X24437Y11181* X24272Y12283D02* X24280D01* X24437Y12126* X24272Y25374D02* Y25394D01* Y25945* Y31280D02* Y31299D01* Y31850* X24298Y4271D02* X24565D01* X24625Y4331* X24941* X24390Y12894D02* X24443Y12947D01* Y13151* X24390Y28602D02* Y29173D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X24429Y18307D02* X23878D01* X24429D02* Y18701D01* Y19094* X24437Y12441D02* Y12473D01* X24526Y12561* X24613Y12649* Y12711* X24438Y5181D02* X23972D01* X23917Y5236* X24438Y5181D02* Y5551D01* Y6261D02* Y6611D01* Y6261D02* X23978D01* X23917Y6201* X24438Y6971D02* X24199D01* X24196Y6969* X23917* X24449Y1969D02* Y1526D01* X25040* X25070Y1496* X25118* X24449Y7579D02* X24446D01* X24253Y7771* X24449Y7579D02* X24438Y7568D01* Y7321* X24606Y20098D02* Y19896D01* X24390Y19680* Y19665* X24213Y19488* X24606Y20453D02* X24339D01* X24240Y20551* X24623Y7771D02* X24437Y7957D01* Y8031* X24626Y12283D02* X24595D01* X24437Y12441* X24665Y14724D02* X24635D01* X24438Y14921* X24665Y14724D02* X24682Y14741D01* X24898* X24685Y14173D02* X24898Y14386D01* Y14391* X24783Y18307D02* X24961D01* X25110Y18457* Y18681* X25098* X24783Y18701D02* X25020D01* X25039Y18681* X24783Y19094D02* Y19055D01* X24932Y18907* X24963* X25039Y18831* Y18681* X24803Y7579D02* Y7591D01* X24623Y7771* X24803Y11181D02* X24961Y11024D01* X24980* X24803Y12126D02* X24961Y11969D01* X24980* X24862Y29173D02* Y29705D01* X24882Y29724* X24862Y35630D02* Y35079D01* Y35650D02* Y35630D01* X24882Y29724D02* X24921Y29764D01* Y13091D02* X24898Y13114D01* Y13331* X24921Y29724D02* X25512D01* X25571Y29665* Y29173* X24921Y29764D02* Y29724D01* Y32953D02* Y32746D01* X24980Y32687* Y31850* X24928Y12317D02* X24803Y12441D01* X24941Y5000D02* X24932Y4991D01* X24708* X24941Y5748D02* X24924Y5731D01* X24708* X24941Y6476D02* X24896Y6431D01* X24708* X24974Y37943D02* Y37486D01* X24980Y37480* Y9134D02* X24961D01* X24803Y9291* X24980Y9134D02* X25012D01* X25169Y8976* X24980Y10079D02* X24961D01* X24803Y9921* X24980Y10079D02* X25012D01* X25169Y10236* X24980Y11024D02* X25012D01* X25169Y10866* X24980Y11969D02* X25012D01* X25169Y11811* X24980Y25374D02* Y25394D01* Y25945* Y36929D02* X24974Y36923D01* Y36467* X25000Y2657D02* X25069D01* Y2431* X25089Y2411* X25008Y16681D02* Y16853D01* X25030Y16875* Y16929* X25089Y16989* Y17253* X25039Y17303* Y17539* X25059Y18661D02* Y18563D01* X25039Y18543* X25059Y18661D02* X25039Y18681D01* X25089Y2411D02* X24449D01* Y1969* X25098Y18681D02* X25295Y18878D01* Y19094* X25098Y18681D02* X25079D01* X25059Y18661* X25118Y2382D02* X25089Y2411D01* X25138Y15925D02* X25168Y15895D01* Y15681* Y4431D02* X25269Y4331D01* X25394* X25168Y5181D02* Y4801D01* Y5551D02* X24971Y5748D01* X24941* X25168Y6261D02* X25398D01* X25400Y6260* X25669* X25168Y6261D02* Y5901D01* Y13501D02* X24819D01* X24669Y13351* Y13248* X25168Y13861D02* X25607D01* X25669Y13799* X25168Y14571D02* X25615D01* X25650Y14606* X25169Y12298D02* Y12441D01* X25177Y7559D02* Y7855D01* X25169Y7863* Y8031* X25177Y12913D02* X25158Y12932D01* Y13151* X25276Y31299D02* X25630D01* X25689Y31358* Y31850* X25308Y3641D02* Y3956D01* X25531Y3563D02* X25453Y3641D01* X25308* X25535Y12297D02* Y12441D01* X25571Y35630D02* Y35079D01* Y35650D02* Y35630D01* X25610Y14213D02* X25370D01* X25369Y14211* X25168* X25650Y15256D02* X25593D01* X25448Y15111* X25669Y5197D02* X25407D01* X25391Y5181* X25168* X25669Y7146D02* X25645D01* X25640Y7141* X25438* X25685Y13051D02* X25675Y13041D01* X25458* X25689Y26516D02* Y25945D01* X25728Y9134D02* X25744D01* X25901Y8976* X25728Y9134D02* X25693D01* X25535Y9291* X25728Y10079D02* X25744D01* X25901Y9921* X25728Y10079D02* X25693D01* X25535Y10236* X25748Y15827D02* X26067D01* X26102Y15861* X26438* X25866Y17067D02* X25868Y17065D01* Y16831* X25901Y12305D02* Y12441D01* X25984Y22047D02* X26008D01* X26269Y21786* Y20793* X26406Y20656* X27157* X27605Y20207* Y19735* X27884Y19456* Y18799* X27953* X26059Y11024D02* X25901Y10866D01* X26059Y11024D02* X25901Y11181D01* X26083Y11024D02* X26110D01* X26267Y11181* X26083Y11024D02* X26059D01* X26158Y3791D02* Y3448D01* X26201Y3406* X26220Y18091D02* X26299Y18012D01* Y17717* X26220Y31299D02* X26339D01* X26398Y31358* Y31850* X26267Y12294D02* Y12441D01* X26280Y29173D02* Y29724D01* Y29823* X26220Y29882* X26280Y34508D02* Y35079D01* X26398Y25374D02* Y25394D01* Y25945* X26428Y4991D02* X26577Y4843D01* X26614* X26428Y5371D02* X26442Y5385D01* X26680* X26870Y5195* Y5177* X26428Y7141D02* Y7312D01* X26636Y7520* X26654* X26437Y9134D02* X26476D01* X26633Y8976* X26437Y9134D02* X26425D01* X26267Y9291* X26437Y10079D02* X26476D01* X26633Y9921* X26437Y10079D02* X26425D01* X26267Y10236* X26438Y15111D02* X26628Y14921D01* X26917* X26438Y16831D02* Y17029D01* X26476Y17067* X26594Y6260D02* X26357D01* X26356Y6261* X26158* X26693Y4370D02* Y4298D01* X26900* X27087Y4111* X27298* X26698Y14211D02* X26854Y14055D01* X26929* X26791Y24803D02* Y24586D01* X26862Y24515* X26809Y24016D02* Y24430D01* X26862Y24483* Y24515* X26811Y12283D02* X26791D01* X26633Y12441* X26850Y17583D02* X26722D01* Y17313* X26476Y17067* X26850Y17677D02* Y17583D01* Y17677D02* Y17717D01* Y26516D02* X26870Y26496D01* Y25945* X26862Y24515D02* X27274D01* X27309Y24480* Y24453* X26870Y31850D02* Y32477D01* X26713Y32635* X26398* X26060Y32972* X26043* X26929Y16181D02* X27008Y16260D01* Y16516* X26949Y34508D02* X26988Y34547D01* Y35079* X27018Y3641D02* Y3435D01* X26988Y3406* X27106Y29724D02* X27047D01* X26988Y29665* Y29173* X27148Y6261D02* X26908D01* X26870Y6299* X27148Y6971D02* X27045D01* X26929Y7087* X27148Y14921D02* X27378D01* X27400Y14943* X27837* X27894Y15000* X27148Y16051D02* X27018Y16181D01* X26929* X27165Y10079D02* X27157D01* X26999Y10236* X27165Y29724D02* Y29783D01* X27106Y29724* X27185Y9134D02* X27157D01* X26999Y9291* X27185Y11024D02* X27157D01* X26999Y11181* X27185Y11969D02* X27156D01* X26999Y11811* X27309Y24016D02* Y24453D01* X27402Y24783D02* X27382Y24803D01* X27146* X27418Y5731D02* X27451Y5698D01* X27726* X27795Y5768* X27874* X27418Y13691D02* X27566Y13543D01* X27835* X27418Y15481D02* X27590Y15653D01* X27630* X27474Y36467D02* Y36923D01* X27480Y36929* X27474Y37943D02* Y37486D01* X27480Y37480* X27539Y24508D02* X27387D01* X27332Y24453* X27309* X27578Y16516D02* X27710Y16384D01* Y16301* X27869Y16142* X27874* X27579Y3406D02* X27588Y3415D01* Y3641* X27579Y25374D02* Y25394D01* Y25945* Y31299D02* Y31102D01* Y31850D02* Y31299D01* X27598Y14193D02* X27580Y14211D01* X27148* X27638Y4724D02* X27525Y4611D01* X27418* X27657Y7008D02* X27694Y6971D01* X27898* X27657Y12795D02* X27713Y12851D01* X27898* X27657Y12795D02* Y12652D01* X27748Y12561* X27663Y17359D02* X27727Y17423D01* Y17791* X27953Y18017* Y18228* X27697Y29173D02* Y29665D01* X27638Y29724* X27165* X27697Y34508D02* Y35079D01* X27809Y21654D02* Y21239D01* X27848Y21201* X28012* X27866Y17354D02* X27941Y17429D01* Y17492* X28677Y18228* X27894Y2579D02* X28149Y2834D01* Y3632* X28158Y3641* X27894Y5217D02* X27854D01* X27684Y5387* X27418* Y5371* X27894Y14724D02* X27815D01* X27745Y14794* X27461* X27418Y14751* X27898Y10141D02* Y10142D01* X27953Y18228D02* Y18445D01* X28068Y8881D02* X28228Y9041D01* Y9114* X28068Y11589D02* X28110Y11547D01* Y11142* X28130Y11122* X28128Y4431D02* X28296D01* X28366Y4361* Y4331* X28128Y5181D02* X27929D01* X27894Y5217* X28128Y14921D02* X28446D01* X28525Y15000* X28622* X28130Y11122D02* X28248Y11004D01* Y10871* X28148Y16201D02* X27934D01* X27874Y16142* X28150Y17087D02* X28148Y17085D01* Y16831* X28287Y31850D02* Y32343D01* X28366Y32421* X28760* X28309Y21654D02* Y22173D01* X27537Y22946* X28339Y15841D02* X28398Y15782D01* Y15481* X28346Y20256D02* X28637D01* X28676Y20217* X28957* X28346Y20256D02* X27953D01* X28346Y25394D02* X28701D01* X28760Y25453* Y25945* X28398Y6081D02* X28537Y6220D01* X28583* X28406Y8406D02* X28489Y8489D01* Y8492* X28608Y8611* X28406Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y35079D02* Y35572D01* X28464Y35630* X28465* X28438Y4111D02* X28366Y4183D01* Y4331* X28445Y13799D02* X28438Y13792D01* Y13561* X28465Y26575D02* X28425D01* X28287Y26437* Y25945* X28465Y35630D02* X28504Y35669D01* X28583Y21654D02* X28309D01* X28602Y11339D02* X28572Y11308D01* Y10907* X28608Y10871* X28677Y18228D02* X28726Y18277D01* Y18445* X28740* X28681Y14358D02* X28648Y14391D01* X28398* X28740Y8406D02* X28778Y8444D01* Y8881* X28760Y32421D02* Y31850D01* X28778Y6911D02* Y7125D01* X28799Y7146* X28778Y11591D02* Y12029D01* X28720Y12087* X28778Y12581D02* X28563Y12366D01* Y12343* X28780Y17087D02* X28718Y17025D01* Y16831* X28819Y24094D02* Y24331D01* X28760Y24390* Y24606* X28828Y5881D02* X29011D01* X29075Y5945* X28917Y10374D02* X28958Y10333D01* Y10141* X28937Y19193D02* X28907Y19222D01* X28602* Y19291* X28937Y19193D02* Y18972D01* X28936Y18971* Y18956* X28780Y18799* X28740* X28957Y20591D02* Y20217D01* X28958Y10141D02* Y9601D01* Y12851D02* X28778Y12671D01* Y12581* X28958Y13831D02* Y13325D01* X28996Y13287* X29108Y4801D02* X28953Y4646D01* X28917* X29114Y24606D02* Y24828D01* X29322Y25036* Y25227* X29469Y25374* X29114Y29173D02* Y29724D01* Y29823* X29173Y29882* X29114Y34508D02* Y35079D01* X29154Y1378D02* Y1625D01* X29125Y1654* Y1890* X29055* X29154Y2756D02* Y2441D01* X29262Y2333* Y2149* X29055Y1942* Y1890* X29154Y6437D02* Y6487D01* X29308Y6641* X29154Y11339D02* Y10954D01* X29138Y10939* Y10601* X29173Y3189D02* X29008Y3354D01* Y3791* X29173Y29882D02* X29319Y29736D01* X29575* X29587Y29724* X29264Y15492D02* Y15456D01* X29428Y15291* X29272Y2992D02* X29262Y2982D01* X29163* X29154Y2972* Y2756* X29272Y13287D02* Y13345D01* X29488Y13561* X29298Y3641D02* Y3956D01* X29331Y19567D02* Y19665D01* X29094Y19902* X28346* X29331Y19567D02* Y19503D01* X29145Y19317* X29021Y19193* X28937* X29350Y23583D02* Y23999D01* X29367Y24016* X29565* X29398Y16142D02* X29157D01* X29097Y16201* X28718* X29469Y25374D02* Y25394D01* Y25945* Y32421D02* Y31850D01* Y35630D02* X29311Y35787D01* Y35827* X29483Y5936D02* X29646Y5774D01* Y5768* X29488Y9871D02* Y9429D01* X29528Y9390* X29488Y14541D02* X29606Y14659D01* Y14783* X29508Y1378D02* X29759D01* X29838Y1299* X30118* X29528Y7441D02* X29675Y7293D01* X29731* X29858Y7166* Y6911* X29547Y24803D02* Y24586D01* X29605Y24528* X29565Y24016D02* Y24430D01* X29605Y24470* Y24528* X29587Y29724D02* Y29173D01* Y34508D02* Y35079D01* Y35512* X29469Y35630* X29665Y5079D02* X29649Y5062D01* X29547* X29428Y5181* X29668Y8611D02* X29803Y8476D01* Y8406* X29675Y2992D02* Y3156D01* X29790Y3271* Y3497* X29868Y3576* Y3641* X29823Y14016D02* X29858Y13980D01* Y13561* Y10601D02* Y10812D01* X29862Y10816* Y11024* X29858Y12581D02* Y12988D01* X29882Y13012* X29862Y15472D02* X30019D01* X30248Y15701* X29902Y24803D02* Y24843D01* X30050Y24991* Y24992* Y25050* X30177Y25178* Y25217* X29974Y36467D02* Y36923D01* X29980Y36929* Y37480D02* X29974Y37486D01* Y37943* X30039Y10374D02* X30047Y10366D01* Y10310* X30048Y10309* Y10141* Y10061* X30238Y9871* X30048Y12851D02* X30167Y12970D01* Y13101* X30157Y13110* X30065Y24016D02* Y24430D01* X29967Y24528* X29605* X30177Y26516D02* Y25945D01* Y31280D02* Y31299D01* Y31850* X30217Y2362D02* Y2579D01* X29931Y2864* X29796* X29675Y2985* Y2992* X30217Y14016D02* Y13828D01* X30238Y13806* Y13561* X30236Y19193D02* X30258D01* X30236Y19214D02* Y19193D01* Y19214D02* X30247Y19204D01* X30236Y19252D02* Y19214D01* X30238Y8881D02* Y8801D01* X30428Y8611* X30247Y19204D02* X30315Y19272D01* Y19606* X30247Y19204D02* X30258Y19193D01* X30247Y19204D02* X30236Y19193D01* X30256Y16969D02* Y16789D01* X30148Y16681* X30258Y19193D02* X30335Y19116D01* Y19016* X30295Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X30315Y21949D02* X30339D01* X30368Y21919* X30565* Y21654* X30335Y18878D02* X30552D01* X30590Y18840* Y18642* X30865Y18366* X31083* X30335Y19016D02* Y18878D01* X30354Y4547D02* X30078Y4271D01* X29868* X30354Y8268D02* X30428Y8342D01* Y8611* X30394Y12323D02* X30470Y12247D01* Y11861* X30428* Y6641D02* X30444Y6626D01* Y6288* X30551Y6181* Y11339D02* X30618Y11406D01* Y11591* X30551Y6181D02* X30628D01* X30768Y6321* X30551Y6181D02* X30531D01* X30551D02* X30591Y6142D01* X30558Y4981D02* X30390D01* X30315Y5056* Y5098* X30558Y5621D02* X30739D01* X30807Y5689* X30591Y6142D02* X30531D01* Y6181* X30618Y11591D02* X30933D01* X30630Y2047D02* X30591D01* X30118Y1575* Y1299* X30650Y3071D02* X30797Y3219D01* Y3393* X30768Y3422* Y3641* X30650Y3071D02* X30354D01* X30728Y1378D02* X30551D01* X30472Y1299* Y1181* X30728Y2756D02* Y2992D01* X30650Y3071* X30748Y9075D02* X30933Y9260D01* Y9451* X30768Y12559D02* X30876Y12451D01* X31083* X30768Y12559D02* Y12521D01* X30618Y12371* X30768Y3641D02* X30649Y3760D01* X30634* X30438Y3956* X30768Y3961D02* Y3887D01* X30962Y3693* Y3469* X31032Y3400* Y3143* X31083Y3092* Y2992* X30768Y9573D02* X30712Y9517D01* X30659* X30512Y9370* X30768Y9573D02* Y9731D01* Y9573D02* X30811D01* X30933Y9451* X30768Y10741D02* X30948Y10561D01* X31068* X31248Y10381* X30768Y13021D02* Y13127D01* X30548Y13346* X30472* X30788Y4401D02* Y4338D01* X31083Y4043* Y3961* X30788Y4401D02* X30965D01* X31014Y4449* X31153* X31321Y4281* X31398* X30846Y11339D02* X30874Y11311D01* X31083* X30846Y15236D02* X30700Y15090D01* Y15003* X30548Y14851* X30862Y14717D02* X30651D01* X30618Y14683* X30416* X30228Y14871* X30886Y25374D02* Y25394D01* Y25945* X30906Y19508D02* X30672D01* X30357Y19193* X30258* X30925Y31299D02* X30886Y31339D01* Y31850* X30925Y35827D02* X30546D01* X30470Y35902* X30156* X30080Y35827* X29764* X30933Y7171D02* X31248D01* X30945Y31280D02* X30925Y31299D01* X31004Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y34508D02* Y35079D01* X31065Y21654D02* Y22067D01* Y22182* X30287Y22960* X31065Y22067D02* X31204D01* X31339Y21933* Y21909* X31073Y15871D02* X30871D01* X30807Y15807* X31083Y1378D02* Y1417D01* X31232Y1566* Y1957* X31181Y2007* Y2047* X31083Y2992D02* Y2756D01* Y5741D02* X30859D01* X30807Y5689* X31181Y2047D02* Y2286D01* X31236Y2342* Y2563* X31083Y2717* Y2756* X31181Y18366D02* X31083D01* X31248Y4891D02* X31411D01* X31492Y4810* X31744* X31849Y4705* X31850* X31248Y8311D02* X30928D01* X31248Y8881D02* X31578D01* X31634Y8937* X31248Y10381D02* X31509D01* X31516Y10374* X31248Y11591D02* X31479D01* X31614Y11457* X32362* X31248Y15011D02* X31546D01* X31548Y15009* X31720* X31909Y15199* Y15217* X31280Y20276D02* X31620D01* X31732Y20387* Y21161* X31319Y19744D02* X31496D01* X31713Y19528* Y19488* X31358Y26516D02* Y25945D01* Y31280D02* Y31299D01* Y31850* X31398Y4281D02* X31722D01* X31791Y4350* X31398Y5181D02* X31571D01* X31634Y5118* X31398Y6321D02* X31556D01* X31772Y6537* Y6614* X31398Y9731D02* X31607D01* X31634Y9705* X31398Y11311D02* X31548Y11161D01* X31594* X31398Y14161D02* X31083D01* X31496Y18445D02* Y18415D01* X31264* X31215Y18366* X31181* X31535Y8268D02* X31492Y8311D01* X31248* X31634Y10650D02* Y10663D01* X31556Y10741* X31398* X31634Y13622D02* X31603Y13591D01* X31398* X31713Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y34508D02* Y35079D01* X31772Y6614D02* X32005D01* X32094Y6526* X32330* X32451Y6647* Y7047* X32307Y7191* X31425* X31406Y7171* X31248* X31850Y4044D02* X31320D01* X31083Y4281* X31850Y4350D02* X31791D01* X31850Y4705D02* X32087D01* X31929Y13031D02* X31897Y13063D01* X31467* X31425Y13021* X31398* X32067Y19488D02* Y19449D01* X32323Y19193* X32559* X32067Y25945D02* Y26516D01* Y31280D02* Y31299D01* Y31850* X32096* Y32598* X31997Y32697* X31870* X32087Y3819D02* X32083D01* X31857Y4044* X31850* X32087Y4350D02* X31850D01* X32126Y16535D02* X31830Y16831D01* X31398* X32400Y3200D02* X32332Y3268D01* X32087* X32421Y29724D02* Y29173D01* Y29744D02* Y29724D01* Y35630D02* Y35079D01* Y35650D02* Y35630D01* X32474Y36465D02* Y36923D01* X32480Y36929* X32474Y37945D02* Y37486D01* X32480Y37480* X32776Y31280D02* Y31299D01* Y31850* X32874Y12047D02* X32773D01* X32398Y11672* X31607* X31398Y11881* X33031Y25787D02* Y25867D01* X32954Y25945* X32776* X33228Y12047D02* X32874D01* X33465Y17343D02* Y17165D01* X33681Y16949* X33996* X33622Y2087D02* Y2431D01* X33543Y2510* Y2598* X33622Y3425D02* Y3091D01* X33543Y3012* Y2598* X33996Y16949D02* Y17166D01* X34130Y17300* X34277* X34457Y17480* X34508* Y17697* X34311Y16358D02* Y16132D01* X34360Y6140D02* Y6058D01* X34050* X33898Y5906* X34567Y2500D02* Y2087D01* X34902Y16772D02* X34706Y16576D01* X33711* X33140Y17148* Y17343* X33071* X34961Y2835D02* X34814Y2981D01* X34677* X34567Y3091* Y3425* X35039Y17500D02* Y17470D01* X35256* X35293Y17434* Y16977* X35256Y16941* Y16693* X35039Y30906D02* X34626D01* X35039Y31693D02* Y32087D01* X35236Y36004D02* X35531D01* X35236Y36791D02* Y37047D01* Y37421D02* X35454D01* X35542Y37510* Y37629* X35689Y37776* X35846* X35315Y17972D02* X35266D01* X35144Y17850* X34990Y17697* X34508* X35512Y2500D02* Y2087D01* X35531Y31280D02* X35827D01* X35551Y2953D02* X35512Y2992D01* Y3425* X35551Y34567D02* X35600Y34616D01* X36024* Y34803* X35551Y34567D02* Y34559D01* X35650Y32087D02* Y32304D01* X35591Y32363* Y32382* X35667Y19701D02* Y20135D01* X35820Y20288* Y20892* X36011Y21083* X36083* X35768Y35453D02* Y35384D01* X35502* X35492Y35374* X35827Y30925D02* X35502D01* X35482Y30906* X35039* X35827Y30925D02* X36097D01* X36166Y30856* X36654* X35846Y37776D02* X36142D01* X36024Y34803D02* Y34843D01* X35599* X35598* X35551* X36275Y28563D02* Y28662D01* X36288Y28676* Y28749* X36437Y28898* Y28937* X36280Y28622D02* Y28563D01* X36275* X36437Y28346D02* Y28386D01* X36275Y28548* Y28563* X36457Y2500D02* Y2087D01* Y3012D02* Y3425D01* X36506Y9805D02* Y9748D01* X36171* X36142Y9718* Y9567* X36654Y31112D02* X37087D01* X37185Y31210* Y31240* X37165D02* X37185D01* Y31270* X37087Y31368* X36654* X37323Y7795D02* X37352D01* X37439Y7708* Y7299* X38071Y35728D02* Y36142D01* Y37480D02* Y37894D01* X38386Y35728D02* Y36142D01* Y37894D02* Y37480D01* X38425Y32126D02* Y32390D01* X38463* X38465Y32392* X38937* X38425Y32390D02* Y32648D01* Y32845* X38483Y32904* X38937* X38425Y32648D02* X38937D01* X38445Y7815D02* X38439Y7809D01* Y7299* X38701Y36142D02* Y35728D01* Y37480D02* Y37894D01* X38937Y31880D02* X38485D01* X38425Y31940* Y32126* X38937Y32136D02* X38435D01* X38425Y32126* X39016Y35728D02* Y36142D01* Y37480D02* Y37894D01* X39035Y33169D02* X39161Y33295D01* X39187* X39845Y33953* Y34173* X39984Y34312* X40835* X40967Y34180* Y33801* X40709Y33543* X40531* X39705Y20748D02* X40069D01* X40443Y20374* X40465Y20352* Y19524* X39333Y18392* Y17701* X39921Y3780D02* X39911Y3770D01* Y3431* X40217* X39941Y30512D02* X40119D01* X40177Y30454* Y30157* X39961Y35728D02* Y36142D01* Y37894D02* Y37480D01* X40197Y30787D02* X40163Y30821D01* X40135* X40119Y30837* X39941* Y30906* X40217Y3780D02* Y3431D01* X40354Y3110D02* X40472Y3228D01* Y3431* X40394Y26339D02* Y26581D01* X40413Y26600* Y30865* X39888Y31389* Y32316* X40098Y32527* Y32756* X40472Y3431D02* X40217D01* X40512Y3780D02* Y3704D01* X40510Y3702* Y3431* X40472* X40709Y1890D02* Y1870D01* X41102Y1476* Y1299* X40787Y34016D02* X40531D01* X40906Y36142D02* Y35728D01* Y37894D02* Y37480D01* X41220Y35728D02* Y36142D01* Y37480D02* Y37894D01* X41388Y18872D02* X41138Y18622D01* X41388Y20372D02* X41138Y20122D01* X41388Y21872D02* X41138Y21622D01* X41388Y23372D02* X41138Y23122D01* X41388Y24872D02* X41138Y25122D01* X41388Y26372D02* X41138Y26622D01* X41388Y27872D02* X41070D01* X40866Y27668* X41388Y29372D02* X41138Y29622D01* X41417Y1437D02* Y1399D01* X41647Y1170* X41800* X42008Y1378* X42047* X41888Y17372D02* X41638Y17122D01* X41888Y18372D02* X41638Y18122D01* X41888Y19872D02* X41638Y19622D01* X41888Y21372D02* X41638Y21122D01* X41888Y22872D02* X41638Y22622D01* X41888Y24372D02* X41638Y24622D01* X41888Y25872D02* X41638Y26122D01* X41888Y27372D02* X41638Y27622D01* X41888Y28872D02* X41638Y29122D01* X41888Y29872D02* X41638Y30122D01* X41894Y2524D02* X41728D01* X41634Y2618* X41894Y2524D02* Y2130D01* Y13197D02* Y13618D01* X42047Y1378D02* X42175D01* Y1615* X42177Y1616* X42814* X42911Y1520* Y1300* X43050Y1161* X44183* X44193Y1170* Y1378* X42075Y11295D02* X42091D01* X42079Y11283D02* X41894Y11098D01* X42079Y11283D02* Y11280D01* X42087Y12992D02* Y12996D01* Y12992D02* X42287Y13193D01* Y13197* X42087Y13004D02* X41894Y13197D01* X42091Y11295D02* X42287Y11098D01* X42091Y11295D02* X42079Y11283D01* X42091Y12571D02* Y12583D01* X42287Y12780* X42106Y3878D02* Y3890D01* X42315Y4098* X42165Y35728D02* Y36142D01* Y37480D02* Y37894D01* X42283Y14094D02* X42244Y14133D01* Y14370* X42287Y4894D02* X42106Y4713D01* Y4685* X42287Y6154D02* X42091Y5957D01* Y5945* X42287Y7417D02* X42091Y7220D01* Y7207* X42287Y8579D02* X42091Y8776D01* Y8787* X42287Y9839D02* X42087Y10039D01* X42287Y10677D02* X42091Y10874D01* Y10890* X42287Y12358D02* X42091Y12555D01* Y12571* X42287Y13618D02* X41894D01* X42287D02* Y14090D01* X42283Y14094* X42315Y2130D02* X42281Y2096D01* X41928* X41894Y2130* X42315Y2524D02* X42106Y2315D01* Y2303* X42315Y3311D02* X42118Y3114D01* X42106* X42388Y17872D02* X42138Y17622D01* X42388Y19372D02* X42138Y19122D01* X42388Y20872D02* X42138Y20622D01* X42388Y22372D02* X42138Y22122D01* X42388Y23872D02* X42138Y24122D01* X42388Y25372D02* X42138Y25622D01* X42388Y26872D02* X42138Y27122D01* X42388Y28372D02* X42138Y28622D01* X42480Y13406D02* Y13425D01* X42287Y13618* X42480Y13406D02* Y13390D01* X42287Y13197* X42681Y5736D02* X42484Y5539D01* Y5528* X42681Y11516D02* X42484Y11713D01* Y11726* X42681Y11937D02* X42484Y12134D01* Y12148* X42862Y11283D02* Y11295D01* Y11283D02* Y11280D01* X42866Y11295D02* X42878D01* X42866D02* X42862D01* X42888Y17372D02* X42638Y17122D01* X42888Y18872D02* X42638Y18622D01* X42888Y20372D02* X42638Y20122D01* X42888Y21872D02* X42638Y21622D01* X42888Y23372D02* X42638Y23122D01* X42888Y24872D02* X42638Y25122D01* X42888Y26372D02* X42638Y26622D01* X42888Y27872D02* X42638Y28122D01* X42888Y29372D02* X42638Y29622D01* X42993Y1772D02* X42934Y1830D01* X42614* X42315Y2130* X43075Y6575D02* X42878Y6378D01* Y6364* X43075Y7417D02* X42878Y7220D01* Y7207* X43075Y8157D02* X42878Y8354D01* Y8368* X43075Y10677D02* X42878Y10874D01* Y10890* X43075Y11098D02* X42878Y11295D01* X43075Y12358D02* X42878Y12555D01* Y12571* X43075Y12780D02* X42878Y12976D01* Y12988* X43110Y35728D02* Y36142D01* Y37894D02* Y37480D01* X43154Y2524D02* X43346Y2331D01* Y2303* X43228Y13839D02* X43248D01* X43469Y13618* X43268Y11693D02* X43291D01* X43469Y11516* X43269Y1772D02* X43154Y1888D01* Y2130* X43307Y1378D02* X43130D01* X43087Y1421* Y1678* X42993Y1772* X43388Y18372D02* X43138Y18122D01* X43388Y19872D02* X43138Y19622D01* X43388Y21372D02* X43138Y21122D01* X43388Y22872D02* X43138Y22622D01* X43388Y24372D02* X43138Y24622D01* X43388Y25872D02* X43138Y26122D01* X43388Y27372D02* X43138Y27622D01* X43388Y28872D02* X43138Y29122D01* X43469Y8996D02* X43272Y9193D01* Y9207* X43469Y10256D02* X43272Y10453D01* Y10467* X43469Y10677D02* X43272Y10874D01* Y10890* X43469Y11937D02* X43272Y12134D01* Y12148* X43469Y13197D02* X43260Y13406D01* X43248* X43575Y2130D02* X43854Y1850D01* X43957* X43575Y2524D02* X43780Y2728D01* Y2756* X43575Y3705D02* X43378Y3508D01* X43364* X43661Y1378D02* Y1594D01* Y1595* X43446* X43269Y1772* X43661Y1378D02* X43917D01* X43661Y5098D02* Y5087D01* X43469Y4894* X43665Y6785D02* Y6799D01* X43862Y6996* Y5736D02* X43665Y5539D01* Y5528* X43862Y9417D02* X43665Y9614D01* Y9630* X43862Y10677D02* X43665Y10874D01* Y10890* X43862Y11098D02* X43665Y11295D01* Y11307* X43862Y11516D02* X43469D01* X43862D02* Y11937D01* X43661Y12138* Y12146* X43862Y12358D02* X43681Y12539D01* Y12559* X43862Y12780D02* X43681Y12961D01* Y13012* X43862Y13197D02* X43701Y13358D01* Y13406* X43862Y13618D02* X43701Y13780D01* Y13839* X43888Y17872D02* X43638Y17622D01* X43888Y19372D02* X43638Y19122D01* X43888Y20372D02* X43638Y20122D01* X43888Y20872D02* X43638Y20622D01* X43888Y21372D02* X43638Y21122D01* X43888Y21872D02* X43638Y21622D01* X43888Y22372D02* X43638Y22122D01* X43888Y22872D02* X43638Y22622D01* X43888Y23372D02* X43638Y23122D01* X43888Y23872D02* X43638Y24122D01* X43888Y24372D02* X43638Y24622D01* X43888Y24872D02* X43638Y25122D01* X43888Y25372D02* X43638Y25622D01* X43888Y25872D02* X43638Y26122D01* X43888Y26372D02* X43638Y26622D01* X43888Y26872D02* X43638Y27122D01* X43888Y28372D02* X43638Y28622D01* X43888Y29872D02* X43638Y30122D01* X43996Y2524D02* Y2130D01* Y3705D02* X43799Y3508D01* X43787* X44055Y35728D02* Y36142D01* Y37480D02* Y37894D01* X44252Y1850D02* Y1874D01* X43996Y2130* X44256Y4894D02* X44441Y5079D01* X44488* X44256Y5315D02* X44453Y5512D01* X44488* X44256Y6575D02* X44059Y6378D01* Y6364* X44256Y8157D02* X44059Y8354D01* Y8368* X44256Y8996D02* X44449Y8803D01* Y8799* X44256Y9417D02* X44059Y9614D01* Y9630* X44256Y10677D02* X44059Y10874D01* Y10888* X44256Y11937D02* X44055Y12138D01* Y12146* X44256Y13618D02* X44094Y13780D01* Y13839* X44413Y4098D02* Y4492D01* X44449Y1358D02* Y1427D01* X44242* X44193Y1378* X44610Y3114D02* X44413Y2917D01* X44610Y3114D02* X44413Y3311D01* X44610Y3114D02* X44646D01* Y3110* X44624Y3902D02* X44610D01* X44413Y3705* X44624Y4295D02* Y4281D01* X44835Y4492* X44646Y4744D02* Y4724D01* X44413Y4492* X44657Y12043D02* Y11650D01* Y12437D02* X44516Y12579D01* X44429* X44657Y12437D02* Y12043D01* X44835Y4098D02* X44638Y3902D01* X44624* X44868Y13421D02* X44854D01* X44657Y13618* X45059Y1378D02* X45010Y1427D01* X44803* Y1358* X45079Y11650D02* X44882Y11846D01* X44868* X45079Y12831D02* X44862Y13047D01* Y13051* X45079Y13224D02* X44882Y13421D01* X44868* X45374Y10984D02* X45350D01* X45079Y11256* X45492Y2327D02* Y2343D01* X45673Y2524* X45500Y12437D02* X45339Y12598D01* X45295* X45673Y2130D02* X45394Y1851D01* X45379* X45709Y1378D02* X45995D01* X46063Y1446* Y1654* X45709Y11453D02* X45697D01* X45500Y11256* X45917D02* X45720Y11453D01* X45709* X45917Y11650D02* X45720Y11846D01* X45709* X45917Y13224D02* X45720Y13421D01* X45709* X45917Y13618D02* X45720Y13815D01* X45709* X46063Y1654D02* X46181Y1772D01* X46094Y2917D02* X45898Y2720D01* X45884* X46094Y3311D02* X45898Y3114D01* X45884* X46094Y4098D02* X45898Y3902D01* X45884* X46169Y6406D02* X45961Y6197D01* X46169Y6823D02* X45961Y6614D01* X46169Y7244D02* X45961Y7035D01* Y7033* X46169Y7665D02* X45961Y7457D01* X46169Y8083D02* X45961Y8291D01* Y8293* X46169Y8504D02* X45961Y8713D01* Y8717* X46169Y8925D02* X45961Y9134D01* X46169Y9343D02* X45961Y9551D01* X46181Y1772D02* X46376Y1967D01* Y1990* X46516Y2130* X46339Y11256D02* X46142Y11453D01* X46128* X46516Y2524D02* X46319Y2327D01* X46307* X46587Y6406D02* X46378Y6197D01* X46587Y6823D02* X46378Y6614D01* X46587Y7244D02* X46378Y7035D01* Y7033* X46587Y7665D02* X46378Y7457D01* X46587Y8083D02* X46378Y8291D01* Y8293* X46587Y8504D02* X46378Y8713D01* Y8717* X46587Y8925D02* X46378Y9134D01* X46587Y9343D02* X46378Y9551D01* X46760Y11256D02* X46563Y11453D01* X46549* X46760Y12043D02* X46563Y12240D01* X46549* X46760Y12437D02* X46598Y12598D01* X46555* X46760Y12831D02* X46597Y12993D01* Y13009* X46933Y4492D02* X46736Y4295D01* X46724* X47008Y6406D02* X46799Y6197D01* X46797* X47008Y6823D02* X46799Y6614D01* X46797* X47008Y7244D02* X46797Y7033D01* X47008Y7665D02* X46799Y7457D01* X46797* X47008Y8083D02* X46797Y8293D01* X47008Y8504D02* X46797Y8715D01* Y8717* X47008Y8925D02* X46799Y9134D01* X46797* X47008Y9343D02* X46799Y9551D01* X46797* X47146Y3130D02* X47114D01* X46933Y3311* X47146Y3130D02* X46933Y2917D01* X47417Y50161D02* X47415Y50168D01* X47411Y50174* X47404Y50177* X47396Y50178* X47389Y50177* X47382Y50174* X47378Y50168* X47376Y50161* Y49217* X47378Y49209* X47383Y49204* X47388Y49199* X47396Y49197* X48060* X48067Y49199* X48072Y49203* X48075Y49210* X48076Y49217* X48075Y49224* X48072Y49231* X48067Y49235* X48060Y49237* X47417* Y50161* X47429Y6406D02* X47220Y6197D01* X47429Y6823D02* X47220Y6614D01* X47429Y7244D02* X47220Y7035D01* Y7033* X47429Y7665D02* X47220Y7457D01* X47429Y8083D02* X47220Y8291D01* Y8293* X47429Y8504D02* X47220Y8713D01* Y8717* X47429Y8925D02* X47220Y9134D01* X47429Y9343D02* X47220Y9551D01* X47638Y27618D02* X47636Y27620D01* X47638Y28130D02* X47634Y28126D01* X47638Y29114D02* X47642Y29118D01* X47638Y29626D02* X47640Y29624D01* X47724Y2720D02* X47898D01* X48094Y2524* X47846Y6406D02* X48055Y6197D01* X48057* X47846Y6823D02* X48055Y6614D01* X48057* X47846Y7244D02* X48057Y7033D01* X47846Y7665D02* X48055Y7457D01* X48057* X47846Y8083D02* X48057Y8293D01* X47846Y8504D02* X48057Y8715D01* Y8717* X47846Y8925D02* X48055Y9134D01* X48057* X47846Y9343D02* X48055Y9551D01* X48057* X47894Y10827D02* X47747Y10973D01* Y10974* X47354Y11367* Y11539* X47379Y11564* Y11735* X47354Y11761* Y11932* X47411Y11990* Y12100* X47551Y12240* X48094Y2130D02* X47934Y1969D01* X47891* X48094Y2524D02* Y2130D01* Y4492D02* X48291Y4295D01* X48305* X48268Y6406D02* X48476Y6197D01* X48480* X48268Y6823D02* X48476Y6614D01* X48480* X48268Y7244D02* X48478Y7033D01* X48480* X48268Y7665D02* X48476Y7457D01* X48480* X48268Y8083D02* X48478Y8293D01* X48480* X48268Y8504D02* X48480Y8717D01* X48268Y8925D02* X48476Y9134D01* X48480* X48268Y9343D02* X48476Y9551D01* X48480* X48343Y11650D02* X48539Y11846D01* X48551* X48343Y12043D02* X48539Y12240D01* X48551* X48343Y12437D02* X48539Y12634D01* X48551* X48343Y13618D02* X48539Y13815D01* X48551* X48516Y3311D02* X48713Y3114D01* X48726* X48689Y6406D02* X48898Y6197D01* X48689Y6823D02* X48898Y6614D01* X48689Y7244D02* X48898Y7035D01* Y7033* X48689Y7665D02* X48898Y7457D01* X48689Y8083D02* X48898Y8291D01* Y8293* X48689Y8504D02* X48898Y8713D01* Y8717* X48689Y8925D02* X48898Y9134D01* X48689Y9343D02* X48898Y9551D01* X48723Y49236D02* X48594D01* X48518Y49263* X48517* Y49265* X48444Y49309* X48379Y49394* X48347Y49485* Y49609* X48390Y49704* X48462Y49798* X48527Y49832* X48531Y49833* X48596Y49861* X48723* X48831Y49847* X48908Y49798* X48970Y49739* Y49357* X48914Y49299* X48813Y49249* X48723Y49236* X48726Y2720D02* X48713D01* X48516Y2917* X48760Y11256D02* X48957Y11453D01* X48970* X48760Y11650D02* X48957Y11846D01* X48970* X48760Y12831D02* X48957Y13028D01* X48970* X48937Y4492D02* X49134Y4295D01* X49150* X49009Y49881D02* X49007Y49888D01* X49003Y49894* X48997Y49897* X48990Y49898* X48983Y49897* X48976Y49894* X48972Y49888* X48970Y49881* Y49795* X48937Y49829* X48934Y49832* X48849Y49885* X48847Y49886* X48843Y49887* X48842Y49888* X48727Y49901* X48723* X48592* X48590* X48587Y49900* X48584Y49899* X48514Y49869* X48510Y49865* X48439Y49831* X48436Y49828* X48433Y49826* X48357Y49724* X48355Y49723* X48354Y49721* X48308Y49623* X48307Y49617* Y49614* Y49611* Y49482* Y49477* Y49475* X48308* X48344Y49377* X48345Y49373* X48347Y49372* X48416Y49281* X48417Y49278* X48420Y49277* X48496Y49230* X48500Y49228* X48504Y49227* X48584Y49198* X48587* X48590Y49197* X48592* X48723* X48727* X48819Y49208* X48823Y49209* X48825Y49210* X48828Y49212* X48937Y49266* X48938Y49267* X48940Y49270* X48970Y49301* Y49217* X48972Y49210* X48976Y49204* X48983Y49201* X48990Y49200* X48997Y49201* X49003Y49204* X49007Y49210* X49009Y49217* Y49881* X49106Y6406D02* X49315Y6197D01* X49106Y6823D02* X49315Y6614D01* X49106Y7244D02* X49315Y7035D01* Y7033* X49106Y7665D02* X49315Y7457D01* X49106Y8083D02* X49315Y8291D01* Y8293* X49106Y8504D02* X49315Y8713D01* Y8717* X49106Y8925D02* X49315Y9134D01* X49106Y9343D02* X49315Y9551D01* X49134Y2327D02* X48937Y2524D01* X49134Y2327D02* X48937Y2130D01* X49134Y2327D02* X49150D01* X49173Y14094D02* X48898Y14370D01* X49181Y11256D02* X49378Y11453D01* X49394* X49181Y11650D02* X49378Y11846D01* X49394* X49181Y12043D02* X49378Y12240D01* X49394* X49181Y12437D02* X49378Y12634D01* X49394* X49181Y13618D02* X49354Y13445D01* X49390* X49213Y1575D02* X48760D01* X48602Y1417* Y1378* X49265Y48965D02* X49258Y48967D01* X49251Y48965* X49246Y48961* X49242Y48955* X49238Y48949* X49237Y48942* X49239Y48934* X49244Y48929* X49331Y48870* X49334Y48868* X49338* X49340* X49406Y48860* X49412* X49416Y48862* X49421Y48865* X49480Y48915* X49483Y48917* X49484Y48920* X49486Y48925* X49936Y49884* X49938Y49888* Y49892* Y49896* X49936Y49899* X49931Y49905* X49925Y49908* X49918Y49909* X49911* X49904Y49906* X49899Y49901* X49600Y49263* X49272Y49903* X49267Y49907* X49260Y49910* X49252Y49909* X49246Y49907* X49241Y49903* X49236Y49898* X49235Y49891* X49237Y49883* X49578Y49218* X49446Y48940* X49401Y48901* X49348Y48908* X49265Y48965* X49358Y2917D02* X49555Y2720D01* X49567* X49358Y3311D02* X49555Y3114D01* X49567* X49390Y13819D02* Y13878D01* X49173Y14094* X49602Y11256D02* X49799Y11453D01* X49811* X49602Y11650D02* X49799Y11846D01* X49811* X49776Y2130D02* X49972Y1933D01* X49986* X49776Y2524D02* X49972Y2327D01* X49986* X49776Y4492D02* X49972Y4295D01* X49986* X49811Y13012D02* X49783D01* X49602Y12831* X50020Y12043D02* X50217Y12240D01* X50230* X50020Y12437D02* X50217Y12634D01* X50230* X50020Y13618D02* X50217Y13815D01* X50230* X50020Y14370D02* Y14409D01* X49826Y14603* Y14628* X50059Y14961D02* Y15020D01* X49862Y15217* X50197Y2917D02* X50394Y2720D01* X50407* X50197Y3311D02* X50394Y3114D01* X50407* X50197Y3705D02* X50394Y3508D01* X50407* X50387Y49833D02* X50452Y49861D01* X50578* X50664Y49847* X50746Y49796* X50784Y49755* X50813Y49696* X50822Y49634* X50214* X50247Y49703* X50318Y49797* X50383Y49832* X50387Y49833* X50407Y3508D02* X50421D01* X50618Y3705* X50441Y11256D02* X50638Y11453D01* X50654* X50441Y11650D02* X50638Y11846D01* X50654* X50441Y12831D02* X50638Y13028D01* X50654* X50579Y49236D02* X50577D01* X50451* X50375Y49263* X50374* Y49264* X50301Y49309* X50236Y49394* X50203Y49485* Y49594* X50846* X50851* X50855Y49596* X50858Y49599* X50860Y49603* X50863Y49606* X50865Y49610* X50866Y49613* Y49617* X50853Y49703* X50850Y49710* X50845Y49715* X50837Y49717* X50830* X50823Y49715* X50817Y49712* X50813Y49706* Y49699* Y49696* X50815Y49692* X50820Y49686* X50826Y49684* X50833* X50840Y49686* X50846Y49690* X50850Y49696* X50852Y49700* X50853Y49703* X50852Y49707* X50850Y49710* X50816Y49777* X50815Y49781* X50774Y49825* X50771Y49829* X50768Y49832* X50683Y49885* X50681Y49886* X50678Y49887* X50675Y49888* X50583Y49901* X50581* X50448* X50446* X50443Y49900* X50441Y49899* X50371Y49869* X50367Y49865* X50296Y49831* X50292Y49828* X50289Y49826* X50213Y49724* X50211Y49723* X50210Y49721* X50164Y49623* X50163Y49616* Y49611* Y49482* Y49477* Y49475* X50164* X50200Y49377* X50201Y49373* X50203Y49372* X50272Y49281* X50273Y49278* X50276Y49277* X50352Y49230* X50358Y49228* X50361Y49227* X50441Y49198* X50443* X50446Y49197* X50448* X50581* X50583* X50676Y49208* X50680Y49209* X50682Y49210* X50685Y49212* X50793Y49266* X50797Y49270* X50862Y49336* X50866Y49342* X50865Y49348* X50862Y49355* X50858Y49360* X50851Y49364* X50845Y49367* X50838Y49366* X50832Y49363* X50770Y49299* X50669Y49249* X50579Y49236* X50618Y2130D02* Y2524D01* Y2130D02* X50819Y1929D01* X50827* X50807Y14370D02* Y14409D01* X50598Y14619* Y14638* X50862Y13618D02* X51059Y13815D01* X51071* X51020Y2969D02* X51217Y2772D01* X51230* X51020Y4650D02* X51217Y4453D01* Y4441* X51020Y6331D02* X51181Y6169D01* Y6122* X51020Y8752D02* X51217Y8949D01* Y8963* X51020Y9173D02* X51217Y9370D01* Y9386* X51020Y10012D02* X51217Y10209D01* Y10222* X51161Y14370D02* Y14331D01* X51398Y14094* X51217Y5709D02* Y5689D01* X51020Y5492* X51217Y5709D02* Y5713D01* X51020Y5909* X51220Y5709D02* X51217D01* X51220Y6969D02* X51020Y7169D01* X51223Y3588D02* X51218D01* X51020Y3390* X51223Y3588D02* Y3608D01* X51020Y3811* X51234Y49881D02* X51232Y49888D01* X51228Y49894* X51221Y49897* X51214Y49898* X51207Y49897* X51200Y49894* X51196Y49888* X51194Y49881* Y49217* X51196Y49210* X51200Y49204* X51207Y49201* X51214Y49200* X51221Y49201* X51228Y49204* X51232Y49210* X51234Y49217* Y49609* X51277Y49704* X51349Y49798* X51415Y49832* X51418Y49833* X51484Y49861* X51610* X51719Y49847* X51795Y49798* X51863Y49733* X51869Y49729* X51875* X51883Y49731* X51889Y49736* X51894Y49742* X51896Y49749* Y49757* X51892Y49763* X51824Y49829* X51821Y49831* X51820* Y49832* X51738Y49885* X51735Y49886* X51732Y49887* X51729Y49888* X51615Y49901* X51612* X51480* X51479* X51476Y49900* X51472Y49899* X51402Y49869* X51397Y49865* X51326Y49832* X51322Y49829* X51321Y49826* X51245Y49724* X51243Y49723* Y49721* X51234Y49704* Y49881* X51240Y2323D02* Y2378D01* X51413Y2551* X51280Y13618D02* X51476Y13815D01* X51490* X51299Y1378D02* X51023D01* X50945Y1456* Y1457* X51388Y17872D02* X51638Y17622D01* X51388Y19372D02* X51638Y19122D01* X51388Y20872D02* X51638Y20622D01* X51388Y21372D02* X51638Y21122D01* X51388Y21872D02* X51638Y21622D01* X51388Y22372D02* X51638Y22122D01* X51388Y22872D02* X51638Y22622D01* X51388Y23372D02* X51638Y23122D01* X51388Y23872D02* X51638Y24122D01* X51388Y24372D02* X51638Y24622D01* X51388Y24872D02* X51638Y25122D01* X51388Y25372D02* X51638Y25622D01* X51388Y25872D02* X51638Y26122D01* X51388Y26872D02* X51638Y27122D01* X51388Y28372D02* X51638Y28622D01* X51388Y29872D02* X51638Y30122D01* X51398Y14094D02* X51476Y14016D01* X51490* Y13815* X51413Y2130D02* X51240Y2303D01* Y2323* X51413Y5909D02* X51610Y5713D01* Y5701* X51413Y6331D02* X51610Y6134D01* Y6120* X51413Y9594D02* X51610Y9791D01* Y9803* X51466Y11443D02* X51280Y11256D01* X51519Y14317D02* X51522Y14320D01* X51563* X51613Y14370* X51791* X51609Y4435D02* Y4431D01* X51807Y4232* X51701Y11256D02* X51909Y11465D01* Y11476* X51701Y12437D02* X51882Y12618D01* X51909* X51701Y13224D02* X51898Y13421D01* X51911* X51807Y4650D02* X52004Y4453D01* Y4441* X51807Y5492D02* X52004Y5295D01* Y5283* X51807Y10012D02* X52004Y10209D01* Y10222* X51807Y10433D02* X51984Y10610D01* X52008* X51888Y18372D02* X52138Y18122D01* X51888Y19872D02* X52138Y19622D01* X51888Y21372D02* X52138Y21122D01* X51888Y22872D02* X52138Y22622D01* X51888Y24372D02* X52138Y24622D01* X51888Y25872D02* X52138Y26122D01* X51888Y27372D02* X52138Y27622D01* X51888Y28872D02* X52138Y29122D01* X52122Y12043D02* X52343Y12264D01* X52122Y12437D02* X52303Y12618D01* X52343* X52122Y13224D02* X52319Y13421D01* X52335* X52122Y13618D02* X52319Y13815D01* X52335* X52138Y35256D02* X52559D01* X52201Y6752D02* X52398Y6555D01* Y6543* X52201Y8752D02* X52398Y8949D01* Y8963* X52201Y9173D02* X52398Y9370D01* Y9386* X52335Y13815D02* Y14094D01* Y14142* X52146Y14331* Y14370* X52388Y17372D02* X52638Y17122D01* X52388Y18872D02* X52638Y18622D01* X52388Y20372D02* X52638Y20122D01* X52388Y21872D02* X52638Y21622D01* X52388Y23372D02* X52638Y23122D01* X52388Y24872D02* X52638Y25122D01* X52388Y26372D02* X52638Y26622D01* X52388Y27872D02* X52638Y28122D01* X52388Y29372D02* X52638Y29622D01* X52543Y11650D02* X52705Y11811D01* X52756* X52543Y12831D02* X52756Y13043D01* Y13051* X52543Y13618D02* X52740Y13815D01* X52752* X52579Y33465D02* Y33985D01* X52559Y34005* Y34213* X52594Y2969D02* X52791Y2772D01* Y2760* X52594Y3390D02* X52791Y3193D01* Y3179* X52594Y4232D02* X52402Y4039D01* Y4035* X52888Y19372D02* X53138Y19122D01* X52888Y20872D02* X53138Y20622D01* X52888Y22372D02* X53138Y22122D01* X52888Y23872D02* X53138Y24122D01* X52888Y25372D02* X53138Y25622D01* X52888Y26872D02* X53138Y27122D01* X52888Y28372D02* X53138Y28622D01* X52933Y33465D02* X53209D01* X53228Y33484* X53543* X52961Y12437D02* X53142Y12618D01* X53169* X52961Y13224D02* X53157Y13421D01* X53171* X52961Y13618D02* X53157Y13815D01* X53171* X52988Y2130D02* X52829Y2289D01* Y2343* X52988Y3811D02* X53185Y3614D01* Y3600* X52988Y5071D02* X53177Y4882D01* X53189* X52988Y5909D02* X53185Y5713D01* Y5701* X52988Y6752D02* X53185Y6555D01* Y6543* X52988Y7169D02* X53185Y6972D01* Y6961* X52988Y8331D02* X53169Y8512D01* Y8524* X52988Y9594D02* X53185Y9791D01* Y9803* X52988Y10433D02* X53189Y10634D01* Y10650* X52988Y10854D02* X53186Y11052D01* X53535* X53661Y10925* X53105Y49217D02* X53106Y49210D01* X53111Y49204* X53117Y49201* X53122Y49200* X53128Y49201* X53134Y49204* X53139Y49210* X53140Y49217* Y50161* X53139Y50168* X53136Y50173* X53131Y50176* X53125Y50177* X53120Y50179* X53116* X53112Y50177* X53108Y50173* X52932Y49903* X52930Y49896* Y49890* X52933Y49884* X52938Y49878* X52943Y49874* X52949Y49873* X52952* X52955Y49874* X52960Y49879* X53105Y50100* Y49217* X53130Y1378D02* Y1339D01* X53287Y1181* X53858* X53189Y10650D02* Y10661D01* X53382Y10854* Y2130D02* X53185Y1933D01* X53173* X53382Y2551D02* X53579Y2354D01* Y2343* X53382Y3811D02* X53579Y3614D01* Y3600* X53382Y4650D02* X53579Y4453D01* Y4441* X53382Y12043D02* X53602Y12264D01* X53642* X53382Y13224D02* X53579Y13421D01* X53593* X53382Y13618D02* X53579Y13815D01* X53593* X53388Y18372D02* X53622Y18138D01* Y17717* X53388Y19872D02* X53638Y19622D01* X53388Y21372D02* X53638Y21122D01* X53388Y22872D02* X53638Y22622D01* X53388Y24372D02* X53638Y24622D01* X53388Y25872D02* X53638Y26122D01* X53388Y27372D02* X53638Y27622D01* X53388Y28872D02* X53638Y29122D01* X53543Y33484D02* X53823D01* X53844Y33505* X54114* X53543Y33839D02* X53906D01* X53911Y33834* X53622Y6043D02* X53701D01* X53622Y17717D02* Y17606D01* X53388Y17372* X53642Y30118D02* X53634D01* X53388Y29872* X53701Y4232D02* X53382D01* X53701Y6043D02* X53740D01* X53957Y6260* Y6299* X53888Y18872D02* X54138Y18622D01* X53888Y20372D02* X54138Y20122D01* X53888Y23372D02* X54138Y23622D01* X53888Y24872D02* X54138Y25122D01* X53888Y26372D02* X54138Y26622D01* X53888Y27872D02* X54138Y28122D01* X53911Y33834D02* Y34048D01* X54154Y34291* Y34331* X53923Y4306D02* X53850Y4232D01* X53701* X53923Y4528D02* X53957D01* X53923D02* Y4306D01* Y4528D02* Y4730D01* X54193Y5000* X54213* X54094Y12776D02* X54449D01* X54094Y21614D02* Y21665D01* X53888Y21872* X54154Y29122D02* X54138D01* X53888Y29372* X54213Y4016D02* X53923Y4306D01* X54213Y5787D02* X54311D01* Y6299* Y4528D02* Y4459D01* X54489* X54502Y4446* Y4435* X54567Y4370* X54449Y13406D02* Y13228D01* X54371Y13150* X54370* X54449Y13760D02* X54673D01* X54811Y13621* X54961* X54626Y3386D02* X54616Y3376D01* X54213* Y3228* X54646Y7244D02* X54508D01* Y6772* X54646Y7244D02* X54785D01* Y6774* X54783Y6772* X54665Y49242D02* X54667Y49239D01* X54669Y49238* X54672Y49236* X54729Y49200* X54735Y49197* X54741Y49199* X54746Y49203* X54750Y49209* X54752Y49216* Y49222* X54750Y49229* X54746Y49235* X54691Y49270* Y49272* X54607Y49365* X54577Y49454* Y49922* X54607Y50013* X54689Y50105* X54746Y50144* X54750Y50149* X54751Y50155* X54750Y50162* X54749Y50169* X54744Y50175* X54739Y50179* X54732Y50181* X54726Y50178* X54669Y50139* X54667Y50138* X54665Y50137* X54580Y50040* X54577Y50034* X54576Y50031* X54543Y49934* X54542Y49931* Y49927* Y49925* Y49452* Y49447* Y49445* X54543Y49444* X54576Y49345* X54577Y49342* X54580Y49338* X54665Y49242* X54862Y3622D02* X55138D01* X54961Y13621D02* Y14016D01* X54931* X55195Y50181D02* X55188Y50179D01* X55183Y50175* X55180Y50168* X55179Y50160* X55180Y50154* X55183Y50147* X55188Y50143* X55195Y50141* X55507* Y49217* X55509Y49210* X55513Y49204* X55520Y49201* X55527Y49200* X55534Y49201* X55541Y49204* X55545Y49210* X55547Y49217* Y50141* X55859* X55867Y50143* X55872Y50147* X55875Y50154* Y50160* Y50168* X55872Y50175* X55867Y50179* X55859Y50181* X55195* X55314Y21949D02* X55312Y21947D01* Y21754* X55314Y21752* X55531* X55314Y21949D02* X55531D01* X55314Y22146D02* Y21949D01* Y22146D02* X55531D01* X55314D02* Y22343D01* X55531* Y22491* X55600Y22559* X55886* X55699Y12362D02* X56063D01* X56102Y12402* X55748Y7244D02* X55561D01* Y6781* X55551Y6772* X55827Y13091D02* X55510Y13407D01* X55175* X54961Y13621* X55846Y6772D02* X55847Y6773D01* Y7244* X55748* X55886Y16870D02* X55887Y16869D01* X56299* Y17008* X55886Y17185D02* X55893Y17178D01* X56299* Y17008* X55886Y17756D02* X55890Y17752D01* X56299* Y17913* X55886Y18091D02* Y18090D01* X56299* Y17913* X55906Y20276D02* Y20650D01* X55931Y34879D02* X56050D01* X56190Y35020* X56299* X55945Y6083D02* X55940Y6088D01* X55699* Y5945* X56153Y49375D02* X56154Y49373D01* X56156Y49372* X56232Y49271* X56233Y49269* X56235Y49267* X56237Y49266* X56239* X56310Y49230* X56312Y49228* X56313Y49227* X56383Y49198* X56386Y49197* X56390* X56524* X56526* X56528* X56531Y49198* X56600Y49227* X56603Y49228* X56606Y49230* X56676Y49266* X56679Y49267* X56683Y49271* X56757Y49372* X56760Y49375* X56808Y49473* X56809Y49477* Y49482* Y49614* Y49619* X56808Y49623* X56760Y49721* X56757Y49724* X56683Y49826* X56682* X56680Y49829* X56676Y49831* X56606Y49865* X56603Y49867* X56600Y49869* X56531Y49899* X56527Y49900* X56524Y49901* X56390Y49900* X56386Y49901* X56383Y49899* X56313Y49869* X56310Y49865* X56239Y49831* X56235Y49828* X56232Y49826* X56156Y49724* X56154Y49723* X56153Y49721* X56107Y49623* X56106Y49616* Y49611* Y49483* Y49478* X56107Y49473* X56153Y49375* X56330Y49265D02* X56328D01* X56326Y49266* X56261Y49298* X56189Y49394* X56146Y49488* Y49608* X56189Y49703* X56261Y49797* X56326Y49831* X56330Y49832* X56395Y49860* X56519* X56585Y49832* X56588Y49831* X56654Y49797* X56724Y49703* X56769Y49608* Y49488* X56724Y49394* X56654Y49298* X56588Y49266* X56586Y49265* X56585* X56519Y49236* X56395* X56330Y49265* X56398Y3780D02* Y3641D01* X56320Y3563* X56102* X56457Y31417D02* X56722D01* X56732Y31407* X56909* Y31339* X56476Y28720D02* X56692D01* X56496Y1772D02* Y1358D01* X56555Y12175D02* X56891D01* X56594Y36693D02* X56909D01* X56654Y8510D02* Y8524D01* X56732Y33819D02* Y33642D01* X56909Y33465* Y33425* X56891Y12016D02* X56987Y11919D01* X57224* X56891Y12016D02* X56794Y11919D01* X56555* X56891Y12175D02* Y12016D01* Y12175D02* Y12334D01* Y12175D02* X57224D01* X56891Y12334D02* X56794Y12431D01* X56555* X56891Y12334D02* X56987Y12431D01* X57224* X56909Y7677D02* X56673D01* X56614Y7618* X56909Y8268D02* X56849Y8382D01* X56769Y8468* X56654Y8510* X56909Y19528D02* Y19567D01* X56752Y19724* X56575* X56909Y26496D02* X56555D01* X56476Y26575* X56909Y28524D02* X56692D01* Y28720* X56909D02* X56692D01* X56909Y30945D02* X56939Y30974D01* Y31339* X56909* Y35630D02* Y36102D01* Y36181* Y36693D02* Y36181D01* Y37165D02* Y36693D01* X56988Y33819D02* X56732D01* X57034Y48810D02* X57036Y48803D01* X57040Y48797* X57047Y48794* X57054Y48793* X57062Y48794* X57068Y48797* X57072Y48803* X57074Y48810* Y49302* X57107Y49270* X57109Y49268* X57111Y49267* X57193Y49214* X57197Y49212* X57201Y49211* X57202* X57314Y49197* X57316* X57320* X57452* X57454* X57457Y49198* X57460* X57529Y49227* X57531Y49228* X57534Y49230* X57605Y49267* X57610Y49272* X57612Y49273* X57687Y49375* X57688Y49377* Y49380* X57736Y49479* X57737Y49481* Y49484* Y49488* Y49624* Y49627* X57736Y49629* Y49630* X57700Y49728* X57699Y49732* X57697Y49737* X57628Y49829* X57623Y49834* X57547Y49882* X57544Y49884* X57540Y49885* X57458Y49914* X57455* X57454* X57452Y49915* X57451* X57319* X57316* X57314* X57223Y49903* X57219Y49901* X57216Y49899* X57108Y49845* X57105Y49844* X57104Y49843* X57103Y49841* X57101Y49840* X57074Y49810* Y49894* X57072Y49902* X57068Y49907* X57062Y49911* X57054Y49912* X57047Y49911* X57040Y49907* X57036Y49902* X57034Y49894* Y48810* X57224Y11663D02* Y11485D01* X57264Y11446* Y11161* Y7677D02* Y7638D01* X57413Y7489* X57587* X57598Y7500* X57264Y10571D02* X57481D01* Y10768* X57264D02* X57481D01* X57264Y18858D02* Y18819D01* X57480Y18602* X57500* X57283Y1772D02* Y2125D01* X57264Y2145* Y2362* X57283Y1772D02* Y1752D01* X57814Y1221* X59686* X60039Y1575* X57321Y49875D02* X57450D01* X57524Y49846* X57526* X57599Y49800* X57664Y49713* X57697Y49620* Y49493* X57652Y49398* X57582Y49299* X57516Y49267* X57514Y49266* X57513* X57447Y49237* X57323* X57321* X57212Y49250* X57134Y49299* X57074Y49362* Y49751* X57129Y49812* X57231Y49862* X57321Y49875* X57480Y3661D02* Y3681D01* X57264Y3898* Y3937* X57481Y10965D02* Y10768D01* Y10965D02* Y11161D01* X57264* X57481Y10965D02* X57264D01* X57500Y19764D02* X57461D01* X57264Y19567* Y19528* X57520Y8445D02* X57512Y8437D01* X57431* X57264Y8270* Y8268* X57539Y11673D02* X57530Y11663D01* X57224* X57539Y12185D02* X57530Y12175D01* X57224* X57579Y5118D02* X57264D01* X58236Y49239D02* X58237D01* X58240Y49242* X58324Y49338* X58326Y49343* Y49345* X58360Y49444* Y49447* Y49449* X58361Y49452* Y49924* Y49925* X58360Y49927* Y49929* Y49932* X58326Y50031* Y50034* X58324Y50040* X58240Y50137* X58237Y50138* X58236Y50139* X58177Y50178* X58171Y50181* X58164Y50179* X58159Y50175* X58154Y50169* X58152Y50162* X58151Y50155* X58153Y50149* X58158Y50144* X58213Y50105* X58296Y50013* X58325Y49921* Y49454* X58296Y49365* X58213Y49272* X58159Y49235* X58154Y49229* X58152Y49222* X58153Y49216* X58156Y49209* X58160Y49203* X58166Y49199* X58172Y49197* X58178Y49200* X58236Y49239* G54D16* X18208Y5171D03* Y5741D03* Y6311D03* Y6881D03* Y7451D03* Y8021D03* Y8591D03* Y9161D03* Y9731D03* Y10741D03* Y11301D03* Y11881D03* Y12451D03* Y13011D03* Y13581D03* Y14151D03* Y14731D03* Y15291D03* X18358Y4891D03* Y5461D03* Y6031D03* Y6601D03* Y7161D03* Y7741D03* Y8311D03* Y8881D03* Y9451D03* Y10091D03* Y10461D03* Y11021D03* Y11591D03* Y12161D03* Y12731D03* Y13301D03* Y13871D03* Y14441D03* Y15011D03* Y15581D03* X18523Y4621D03* Y5171D03* Y5741D03* Y6311D03* Y6881D03* Y7451D03* Y8021D03* Y8591D03* Y9161D03* Y9731D03* Y10741D03* Y11301D03* Y11881D03* Y12451D03* Y13011D03* Y13581D03* Y14151D03* Y14731D03* Y15291D03* Y15861D03* X18673Y5461D03* Y6031D03* Y6601D03* Y7741D03* Y8311D03* Y8881D03* Y9451D03* Y10091D03* Y10461D03* Y11021D03* Y11591D03* Y12161D03* Y12731D03* Y13301D03* Y13871D03* Y14441D03* Y15011D03* Y15581D03* X18693Y4891D03* X18818Y4491D03* X18838Y6311D03* Y6881D03* Y7451D03* Y8591D03* Y9731D03* Y10741D03* Y11881D03* Y12451D03* Y13011D03* Y13581D03* Y14151D03* X18988Y8021D03* Y8881D03* Y12161D03* Y13301D03* X19168Y16516D03* X19198Y3956D03* X19458Y4141D03* Y16366D03* Y16681D03* X19468Y3791D03* X19738Y16201D03* Y16516D03* Y16831D03* X19748Y3641D03* Y3956D03* Y4271D03* X20028Y3791D03* Y4111D03* Y16366D03* Y16681D03* X20308Y3641D03* Y3956D03* Y16201D03* Y16516D03* Y16831D03* X20598Y3791D03* Y4111D03* Y16366D03* Y16681D03* X20878Y16201D03* Y16516D03* Y16831D03* X20888Y3641D03* Y3956D03* Y4271D03* X21168Y3791D03* Y4111D03* Y16366D03* Y16681D03* X21448Y16516D03* Y16831D03* X21458Y3641D03* Y3956D03* X21738Y3791D03* Y4111D03* Y16366D03* Y16681D03* X22018Y16201D03* Y16516D03* Y16831D03* X22028Y3641D03* Y3956D03* Y4271D03* X22308Y3791D03* Y4111D03* Y16366D03* Y16681D03* X22588Y3641D03* Y3956D03* Y16516D03* Y16831D03* X22878Y3791D03* Y4111D03* Y16366D03* Y16681D03* X23158Y3641D03* Y3956D03* Y4271D03* Y16201D03* Y16516D03* Y16831D03* X23448Y3791D03* Y4111D03* Y16366D03* Y16681D03* X23728Y16516D03* Y16831D03* X23738Y3641D03* Y3956D03* X24018Y3791D03* Y4111D03* Y16366D03* Y16681D03* X24298Y3641D03* Y3956D03* Y4271D03* Y16516D03* Y16831D03* X24540Y50280D02* X24534Y50287D01* X24531Y50289* X24530Y50290* X24419Y50339* X24414Y50341* X24408* X24292Y50371* X24288Y50374* X24282Y50375* X24129Y50359* X24127Y50358* X24125* X24122Y50357* X24120Y50356* X24018Y50303* X24012Y50300* X24006Y50297* X23917Y50206* X23914Y50200* X23912Y50196* X23833Y50039* X23831Y50033* X23829Y50031* X23782Y49874* Y49870* Y49869* X23781Y49868* Y49866* Y49706* X23780Y49703* X23781Y49698* X23816Y49536* Y49533* X23820Y49529* Y49528* X23908Y49370* Y49367* X23912Y49364* X23999Y49269* X24002* Y49268* X24004Y49266* X24006Y49265* X24112Y49213* X24116Y49208* X24121Y49207* X24281Y49194* X24282* X24283* X24286* X24447Y49222* X24452Y49223* X24455Y49228* X24564Y49304* X24569Y49308* X24572Y49315* X24621Y49418* X24623Y49423* X24624Y49428* X24622Y49436* X24617Y49443* X24610Y49448* X24602Y49450* X24594Y49451* X24586Y49448* X24581Y49442* X24531Y49339* X24432Y49269* X24281Y49242* X24128Y49254* X24031Y49305* X23947Y49394* X23864Y49546* X23829Y49709* Y49863* X23873Y50016* X23875Y50020* X23877Y50030* X23874Y50033* X23872Y50037* X23866Y50043* X23858Y50046* X23849Y50048* X23841Y50046* X23834Y50042* X23831Y50033* X23829Y50030* X23831Y50023* X23834Y50016* X23840Y50010* X23846Y50006* X23853Y50004* X23860Y50005* X23867Y50009* X23873Y50016* X23952Y50170* X24042Y50261* X24136Y50312* X24283Y50325* X24395Y50296* Y50294* X24399Y50293* X24503Y50248* X24581Y50123* X24586Y50117* X24594Y50115* X24603Y50116* X24611Y50120* X24618Y50126* X24623Y50133* X24624Y50142* X24621Y50150* X24540Y50280* X24578Y3791D03* Y4111D03* X24638Y16366D03* Y16681D03* X24948Y3791D03* Y4111D03* X25008Y16366D03* Y16681D03* X25298Y16201D03* Y16516D03* Y16831D03* X25308Y3641D03* Y3956D03* X25588Y3791D03* Y4111D03* Y16366D03* Y16681D03* X25654Y50280D02* X25648Y50287D01* X25645Y50289* X25644Y50290* X25532Y50339* X25528Y50341* X25522* X25406Y50371* X25401Y50374* X25395Y50375* X25243Y50359* X25241Y50358* X25238* X25236Y50357* X25234Y50356* X25132Y50303* X25126Y50300* X25120Y50297* X25031Y50206* X25028Y50200* X25026Y50196* X24947Y50039* X24944Y50033* X24943Y50031* X24896Y49874* Y49870* Y49869* X24895Y49868* Y49866* Y49706* X24894Y49703* X24895Y49698* X24930Y49536* Y49533* X24934Y49529* Y49528* X25022Y49370* Y49367* X25026Y49364* X25113Y49269* X25116* Y49268* X25118Y49266* X25120Y49265* X25225Y49213* X25230Y49208* X25235Y49207* X25394Y49194* X25395* X25397* X25400* X25561Y49222* X25566Y49223* X25569Y49228* X25678Y49304* X25682Y49308* X25686Y49315* X25734Y49418* X25737Y49423* X25738Y49428* X25736Y49436* X25731Y49443* X25724Y49448* X25716Y49450* X25707Y49451* X25700Y49448* X25694Y49442* X25645Y49339* X25545Y49269* X25394Y49242* X25242Y49254* X25145Y49305* X25061Y49394* X24977Y49546* X24943Y49709* Y49863* X24987Y50016* X24989Y50020* X24990Y50030* X24988Y50033* X24986Y50037* X24980Y50043* X24971Y50046* X24963Y50048* X24955Y50046* X24948Y50042* X24944Y50033* X24943Y50030* X24944Y50023* X24948Y50016* X24954Y50010* X24960Y50006* X24967Y50004* X24974Y50005* X24981Y50009* X24987Y50016* X25066Y50170* X25156Y50261* X25250Y50312* X25397Y50325* X25509Y50296* Y50294* X25512Y50293* X25616Y50248* X25694Y50123* X25700Y50117* X25707Y50115* X25717Y50116* X25725Y50120* X25732Y50126* X25737Y50133* X25738Y50142* X25734Y50150* X25654Y50280* X25868Y16516D03* Y16831D03* X25878Y3641D03* Y3956D03* Y4271D03* X26158Y3791D03* Y4116D03* Y16366D03* Y16681D03* X26438Y16201D03* Y16516D03* Y16831D03* X26448Y3641D03* Y3956D03* Y4271D03* X26728Y3791D03* Y4116D03* Y16366D03* Y16681D03* X26767Y50280D02* X26762Y50287D01* X26758Y50289* X26757Y50290* X26646Y50339* X26642Y50341* X26636* X26519Y50371* X26515Y50374* X26509Y50375* X26357Y50359* X26355Y50358* X26352* X26350Y50357* X26347Y50356* X26246Y50303* X26240Y50300* X26234Y50297* X26144Y50206* X26142Y50200* X26140Y50196* X26060Y50039* X26058Y50033* X26057Y50031* X26010Y49874* Y49870* Y49869* X26008Y49868* Y49866* Y49706* X26007Y49703* X26008Y49698* X26044Y49536* Y49534* X26045Y49533* Y49530* X26046Y49529* Y49528* X26136Y49370* X26137Y49367* X26140Y49364* X26227Y49269* X26229* X26231Y49267* X26234Y49265* X26338Y49213* X26344Y49208* X26349Y49207* X26508Y49194* X26509* X26510* X26514* X26675Y49222* X26678Y49223* X26683Y49227* X26792Y49304* X26796Y49308* X26800Y49315* X26848Y49418* Y49419* X26851* Y49422* Y49424* X26852Y49425* Y49426* Y49430* Y49654* X26851Y49663* X26845Y49671* X26838Y49677* X26828Y49679* X26587* X26578Y49677* X26572Y49672* X26568Y49664* X26567Y49654* X26568Y49646* X26572Y49638* X26578Y49633* X26587Y49631* X26805* Y49435* X26758Y49339* X26659Y49269* X26508Y49242* X26356Y49254* X26259Y49305* X26175Y49394* X26091Y49546* X26057Y49709* Y49863* X26101Y50016* X26102Y50020* X26103Y50030* X26102Y50033* X26099Y50037* X26094Y50043* X26085Y50046* X26077Y50048* X26069Y50046* X26062Y50042* X26058Y50033* X26057Y50030* X26058Y50023* X26062Y50016* X26068Y50010* X26073Y50006* X26081Y50004* X26088Y50005* X26095Y50009* X26101Y50016* X26180Y50170* X26269Y50261* X26364Y50312* X26510Y50325* X26623Y50296* Y50294* X26626Y50293* X26730Y50248* X26808Y50123* X26814Y50117* X26821Y50115* X26831Y50116* X26839Y50120* X26846Y50126* X26849Y50134* X26852Y50142* X26848Y50150* X26767Y50280* X27008Y16516D03* Y16831D03* X27018Y3641D03* Y3956D03* X27284Y49718D02* X27663D01* X27671Y49717* X27677Y49712* X27681Y49706* X27682Y49699* X27681Y49690* X27677Y49684* X27671Y49679* X27663Y49678* X27284* X27276Y49679* X27270Y49684* X27266Y49690* X27265Y49699* X27266Y49706* X27269Y49712* X27275Y49717* X27284Y49718* X27298Y3791D03* Y4111D03* Y16366D03* Y16681D03* X27578Y16201D03* Y16516D03* Y16831D03* X27588Y3641D03* Y3956D03* Y4271D03* X27835Y10374D02* X27889Y10319D01* X27898* Y10142* X27868Y16366D03* Y16681D03* X27878Y3791D03* Y4111D03* X28148Y16201D03* Y16516D03* Y16831D03* X28158Y3641D03* Y3956D03* X28242Y50326D02* X28808D01* X28908Y50252* X28990Y50141* Y49996* X28906Y49880* X28808Y49808* X28242* Y50326* X28438Y3791D03* Y4111D03* Y16051D03* Y16366D03* Y16681D03* X28718Y16201D03* Y16516D03* Y16831D03* X28728Y3641D03* Y3956D03* Y4281D03* X28946Y50284D02* X28942Y50286D01* X28940Y50287* Y50289* X28829Y50370* X28823Y50372* X28819Y50374* X28814Y50375* X28217* X28208Y50372* X28202Y50367* X28196Y50361* X28194Y50351* Y49217* X28196Y49208* X28201Y49202* X28209Y49198* X28217Y49197* X28227Y49198* X28235Y49202* X28240Y49208* X28242Y49217* Y49761* X28797* X28991Y49210* X28995Y49202* X29004Y49197* X29013Y49196* X29021Y49198* X29029Y49203* X29034Y49209* X29037Y49216* X29036Y49226* X28843Y49774* X28940Y49844* X28944Y49848* X28947Y49855* X29033Y49972* Y49974* X29034Y49976* X29036Y49977* Y49980* X29037Y49983* Y49986* Y50149* X29036Y50154* Y50156* X29034Y50159* X29033Y50160* Y50162* X28946Y50284* X29008Y3791D03* Y4131D03* Y16366D03* Y16681D03* X29288Y16516D03* Y16831D03* X29298Y3641D03* Y3956D03* X29578Y3791D03* Y4111D03* Y16366D03* Y16681D03* X29858Y16201D03* Y16516D03* Y16831D03* X29868Y3641D03* Y3956D03* Y4271D03* X30058Y49269D02* X30061Y49270D01* X30063Y49273* X30066Y49275* X30121Y49327* X30122Y49331* X30128Y49339* X30153Y49457* Y49465* Y50351* X30151Y50359* X30146Y50367* X30138Y50370* X30129Y50371* X30121Y50370* X30113Y50367* X30108Y50359* X30106Y50351* Y49467* X30082Y49356* X30036Y49313* X29916Y49254* X29809Y49242* X29655* X29547Y49254* X29428Y49313* X29382Y49356* X29358Y49467* Y50351* X29356Y50359* X29351Y50367* X29343Y50370* X29333Y50371* X29325Y50370* X29317Y50367* X29312Y50359* X29310Y50351* Y49465* X29308Y49462* X29310Y49457* X29334Y49339* X29336Y49333* X29340Y49331* X29344Y49327* X29399Y49275* X29401* X29408Y49269* X29531Y49210* X29533Y49209* X29534* X29538* X29647Y49194* X29652* X29809* X29814* X29925Y49209* X29927* X29930Y49210* X29932* X30058Y49269* X30148Y3791D03* Y4116D03* Y16366D03* Y16681D03* X30428Y16516D03* X30438Y3956D03* X30473Y50358D02* X30469Y50363D01* X30465Y50368* X30460Y50369* X30454Y50370* X30446Y50371* X30436Y50369* X30432Y50365* X30428Y50362* X30427Y50357* X30426Y50351* Y50349* Y49217* X30428Y49209* X30433Y49202* X30441Y49198* X30449Y49197* X30459Y49198* X30467Y49202* X30472Y49209* X30474Y49217* Y50220* X30825Y49292* X30829Y49286* X30833Y49281* X30839Y49279* X30847* X30856* X30862Y49281* X30868Y49286* X30871Y49292* X31222Y50220* Y49217* X31224Y49209* X31229Y49202* X31237Y49198* X31245Y49197* X31254Y49198* X31262Y49202* X31267Y49209* X31269Y49217* Y50351* X31266Y50362* X31260Y50369* X31250Y50371* X31238Y50370* X31234Y50369* X31230Y50368* X31227Y50363* X31223Y50358* X31222Y50355* X30847Y49366* X30474Y50355* X30473Y50358* X30593Y8311D03* X30598Y7171D03* X30618Y11591D03* Y12371D03* X30768Y6321D03* Y6891D03* Y7461D03* Y8021D03* Y8591D03* Y9731D03* Y10741D03* Y11881D03* Y13021D03* Y14161D03* X30928Y6601D03* Y8311D03* X30933Y4891D03* Y5461D03* Y6031D03* Y7171D03* Y7741D03* Y8881D03* Y9451D03* Y10011D03* Y10381D03* Y11021D03* Y11591D03* Y12161D03* Y12731D03* Y13311D03* Y13871D03* Y14441D03* Y15011D03* Y15581D03* X31073Y15871D03* X31083Y4611D03* Y5181D03* Y5741D03* Y6321D03* Y6891D03* Y7461D03* Y8021D03* Y8591D03* Y9171D03* Y9731D03* Y10741D03* Y11311D03* Y11881D03* Y12451D03* Y13021D03* Y13591D03* Y14161D03* Y14731D03* Y15301D03* X31248Y4891D03* Y5461D03* Y6031D03* Y6601D03* Y7171D03* Y7741D03* Y8311D03* Y8881D03* Y9451D03* Y10011D03* Y10381D03* Y11021D03* Y11591D03* Y12161D03* Y12731D03* Y13311D03* Y13871D03* Y14441D03* Y15011D03* Y15581D03* X31398Y5181D03* Y5741D03* Y6321D03* Y6891D03* Y7461D03* Y8021D03* Y8591D03* Y9171D03* Y9731D03* Y10741D03* Y11311D03* Y11881D03* Y12451D03* Y13021D03* Y13591D03* Y14161D03* Y14731D03* Y15301D03* X31590Y49855D02* X32136D01* X32266Y49922* X32338Y50064* Y50149* X32267Y50251* X32141Y50326* X31590* Y49855* X32130Y49807D02* X31590D01* Y49242* X32148* X32266Y49317* X32338Y49465* Y49575* X32267Y49686* X32130Y49807* X32299Y49281D02* X32163Y49194D01* X31566* X31557Y49196* X31549Y49201* X31544Y49209* X31542Y49217* Y50351* X31544Y50359* X31549Y50367* X31557Y50372* X31566Y50375* X32156* X32298Y50289* X32385Y50163* Y50055* X32299Y49887* X32183Y49827* X32298Y49722* X32385Y49587* Y49455* X32299Y49281* X33080Y50279D02* X33329Y49567D01* X32828* X33080Y50279* X33103Y50358D02* X33100Y50363D01* X33095Y50368* X33089Y50370* X33081Y50371* X33074* X33068Y50369* X33062Y50365* X33057Y50358* X32659Y49227* X32658Y49217* X32660Y49209* X32666Y49203* X32675Y49200* X32683Y49197* X32692Y49198* X32699Y49203* X32704Y49211* X32813Y49519* X33348* X33455Y49211* X33460Y49203* X33468Y49198* X33478Y49197* X33485Y49200* X33492Y49203* X33498Y49209* X33501Y49217* X33499Y49227* X33103Y50358* X34882Y37776D02* X34713Y37945D01* X34474* X35236Y37776D02* X34882D01* X35514Y50326D02* X36080D01* X36180Y50252* X36262Y50141* Y49996* X36178Y49880* X36080Y49808* X35514* Y50326* X36218Y50284D02* X36214Y50286D01* X36212Y50287* Y50289* X36101Y50370* X36095Y50372* X36092Y50374* X36086Y50375* X35489* X35480Y50372* X35474Y50367* X35468Y50361* X35466Y50351* Y49217* X35468Y49208* X35473Y49202* X35481Y49198* X35489Y49197* X35499Y49198* X35507Y49202* X35512Y49208* X35514Y49217* Y49761* X36069* X36263Y49210* X36268Y49202* X36276Y49197* X36285Y49196* X36294Y49198* X36301Y49203* X36306Y49209* X36309Y49216* X36308Y49226* X36115Y49774* X36212Y49844* X36216Y49848* X36219Y49855* X36305Y49972* Y49974* X36306Y49976* X36308Y49977* Y49980* X36309Y49983* Y49986* Y50149* X36308Y50154* Y50156* X36306Y50159* X36305Y50160* Y50162* X36218Y50284* X36851Y49957D02* X36929Y49991D01* X37080* X37183Y49974* X37281Y49913* X37327Y49863* X37362Y49793* X37373Y49718* X36643* X36682Y49801* X36768Y49914* X36846Y49956* X36851Y49957* X37081Y49241D02* X37079D01* X36928* X36836Y49273* X36834* Y49274* X36747Y49328* X36669Y49430* X36630Y49540* Y49671* X37401* X37407* X37412Y49673* X37416Y49677* X37418Y49681* X37421Y49685* X37424Y49690* X37425Y49693* Y49698* X37410Y49801* X37406Y49809* X37400Y49815* X37391Y49817* X37382* X37374Y49815* X37367Y49811* X37362Y49804* Y49796* Y49793* X37365Y49788* X37371Y49781* X37378Y49778* X37386* X37394Y49781* X37401Y49785* X37406Y49793* X37408Y49797* X37410Y49801* X37408Y49806* X37406Y49809* X37366Y49889* X37365Y49894* X37315Y49947* X37312Y49952* X37308Y49956* X37205Y50019* X37203Y50020* X37199Y50022* X37196Y50023* X37086Y50038* X37084* X36924* X36922* X36918Y50037* X36916Y50036* X36831Y50000* X36826Y49996* X36741Y49954* X36736Y49951* X36733Y49948* X36642Y49827* X36640Y49826* X36638Y49823* X36583Y49705* X36582Y49697* Y49691* Y49536* Y49530* Y49528* X36583* X36627Y49410* X36628Y49405* X36630Y49404* X36713Y49294* X36714Y49291* X36718Y49289* X36808Y49234* X36816Y49231* X36819Y49230* X36916Y49195* X36918* X36922Y49194* X36924* X37084* X37086* X37197Y49207* X37202Y49208* X37204Y49209* X37208Y49211* X37338Y49276* X37342Y49281* X37420Y49360* X37425Y49367* X37424Y49376* X37420Y49384* X37416Y49390* X37407Y49394* X37400Y49398* X37392Y49397* X37385Y49393* X37310Y49317* X37189Y49256* X37081Y49241* X38535Y50002D02* X38138Y49207D01* X38134Y49201* X38129Y49197* X38123Y49196* X38117* X38111* X38105Y49197* X38101Y49201* X38096Y49207* X37698Y50002* X37697Y50010* X37699Y50018* X37704Y50025* X37711Y50031* X37719Y50033* X37727Y50035* X37734Y50031* X37740Y50024* X38117Y49269* X38495Y50024* X38501Y50031* X38508Y50035* X38516Y50033* X38525Y50031* X38531Y50025* X38536Y50018* X38538Y50010* X38535Y50002* X39062Y49201D02* X39067Y49198D01* X39070Y49197* X39073Y49195* X39075* X39106* X39107* X39109Y49197* X39113Y49198* X39119Y49201* X39149Y49231* X39152Y49236* X39153Y49240* X39154Y49244* Y49275* X39153Y49279* X39152Y49282* X39149Y49288* X39119Y49319* X39113Y49321* X39109Y49322* X39106* X39075* X39070* X39067Y49321* X39062Y49319* X39031Y49288* X39029Y49285* X39028Y49279* Y49275* Y49244* Y49240* X39029Y49235* X39031Y49231* X39062Y49201* X39063Y49266D02* X39083Y49287D01* X39097* X39118Y49266* Y49253* X39097Y49233* X39083* X39063Y49253* Y49266* X40547Y49704D02* Y49706D01* Y49863* X40573Y50143* X40606Y50206* X41202Y49321* X41103Y49254* X40998Y49242* X40995* X40845* X40844* X40738Y49254* X40621Y49332* X40567Y49423* X40547Y49704* X40566Y49429D02* X40560Y49435D01* X40550Y49437* X40542Y49436* X40534Y49431* X40528Y49425* X40522Y49419* X40521Y49411* X40522Y49407* X40523Y49403* X40582Y49301* X40584Y49299* X40590Y49293* X40717Y49213* X40721Y49209* X40726* X40835Y49194* X40837* X40842* X40998* X41000* X41003* X41114Y49209* X41118* X41124Y49213* X41248Y49293* X41252Y49296* X41255Y49304* X41310Y49403* X41311Y49406* X41313Y49411* X41342Y49698* Y49700* Y49703* Y49862* Y49866* Y49867* Y49870* X41318Y50152* X41317Y50156* X41314Y50162* X41254Y50265* X41251Y50269* X41244Y50273* X41125Y50355* X41122Y50357* X41114Y50359* X41003Y50375* X41001* X40842* X40837* X40836* X40726Y50359* X40724* X40723Y50358* X40718Y50356* X40592Y50273* X40587Y50270* X40582Y50264* X40529Y50161* X40527Y50157* X40525Y50152* X40498Y49870* Y49866* Y49703* Y49702* Y49698* X40522Y49413* X40524Y49404* X40529Y49398* X40537Y49396* X40545Y49394* X40555Y49396* X40562Y49400* X40567Y49407* X40569Y49417* X40567Y49423* X40566Y49429* X40844Y50326D02* X40845D01* X40995* X40998* X41105Y50313* X41213Y50237* X41271Y50141* X41294Y49863* Y49707* X41266Y49420* X41232Y49359* X40634Y50244* X40738Y50313* X40844Y50326* X41388Y28872D02* X41138Y29122D01* X54409Y26872D02* X53888D01* X55315Y26299D02* X55030D01* X54457Y26872* X54409* X55906Y15295D02* X55846D01* X55633Y15509* Y19094* X55906* X57402Y17008D02* Y17067D01* X57815Y17480* Y17984* X58320Y18488* X58578* X58835Y18745* Y19876* X59049Y20089* X61136* X61219Y20173* Y23227* X61398Y23406* X61614Y23622* X57402Y17972D02* X58080Y18651D01* Y20762* X58205Y20887* X60401* X60472Y20958* Y23804* X60699Y24032* X62022* X62207Y24217* X62209* X62402Y24409* G54D17* X3051Y12224D03* X4004Y23268D02* X4453D01* X4610Y23425* X5315* X4685Y1575D03* X4882Y27717D03* X5039Y17717D02* Y17844D01* X5138Y17942* Y18189* X5039Y21260D02* X5138Y21358D01* Y21732* Y18191D02* Y18701D01* X5315* X5138Y18191D02* X4972D01* X4852Y18071* X4004* X5138Y18191D02* Y18189D01* Y21732D02* Y22244D01* X5315* X5138Y21732D02* X4709D01* X4591Y21614* X4004* X5315Y19882D02* X4610D01* X4453Y19724* X4004* X5591Y17717D02* X5945D01* X5591Y21260D02* X6043D01* X5965Y1870D03* X6339Y26181D03* X7421Y8465D03* X8071Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X8465Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X8543Y8937D03* X8661Y2756D03* Y8543D03* X8858Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X9055Y3937D03* X9252Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X9646Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X10039Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X10225Y11607D03* X10433Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X10617Y11987D03* X10827Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X11024Y11220D03* X11063Y10846D03* X11220Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y9843D03* Y10236D03* Y10630D03* Y11024D03* Y11417D03* Y11811D03* Y12205D03* Y12598D03* Y12992D03* X11417Y12008D03* X11594Y11024D03* X11614Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* X11732Y20276D03* Y20492D03* X11850Y10551D03* X12008Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* X12205Y10236D02* X12697D01* X12382Y10709D03* X12402Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* X12795Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* X12933Y24350D02* X13169Y24114D01* X13602* X12992Y4331D03* X13169Y10236D02* X12697D01* X13169D02* X12862Y10544D01* Y10559* X12953Y10650* X13189Y2559D03* Y2953D03* Y3346D03* Y3740D03* Y4134D03* Y4528D03* Y4921D03* Y5315D03* Y5709D03* Y6102D03* Y6496D03* Y6890D03* Y7283D03* Y7677D03* Y10236D02* X13169D01* X13248Y16772D03* X13307Y24626D02* X13602D01* X13386Y3150D03* Y3543D03* Y4331D03* X13465Y16772D03* X13524Y35276D03* X14587Y20118D03* X14685Y24114D02* X14350D01* X14685D03* X15768D02* X15758Y24104D01* Y23412* X16197Y22972* X16319* X15768Y24626D02* X15138D01* X16811Y24094D02* X16791Y24114D01* X16516* X16811Y24094D03* X16969Y16496D03* X17323Y9469D02* Y9055D01* X17933Y24154D02* X17579D01* X17480Y24252* X17933Y24665D02* X17618D01* X17480Y24528* X18681Y24154D02* X18957D01* X18740Y11398D03* X18780Y11181D03* X18957Y24154D03* X18996Y11752D03* X19016Y11339D03* X19134Y11575D03* X19547Y12146D03* X19961Y12106D03* X20197Y27638D03* Y27874D03* X20256Y13307D03* X20335Y15453D03* X20709Y12283D03* X20807Y12028D03* X21063Y7146D03* X21201Y16102D03* X21260Y7382D03* X21594Y11083D03* X21969Y5925D03* Y10886D03* X22067Y6260D03* X24567Y19606D03* X26516Y20945D03* X26575Y20079D02* Y20206D01* X26923* X26972Y20256* X27165* X26772Y21043D03* X27441Y35827D03* X28012Y21201D03* X28287Y35827D03* X28307Y18130D03* X28484Y24488D03* X28543Y24016D03* X28760Y21437D03* X29154Y17697D03* X29350Y18051D03* Y19213D03* X30039Y17972D03* X30138Y37205D03* X30315Y21949D03* X30413Y24902D03* X30551Y17913D03* X30709Y19094D03* X30827Y18799D03* X31102Y20827D03* X31280Y17402D03* X31693Y17461D03* Y21850D03* X31772Y17776D03* X32126Y17717D03* X32146Y21063D03* X32303Y27736D03* Y32382D03* X32539Y27736D03* Y32382D03* X32953Y18701D03* X33465Y19311D03* X33524Y18780D03* X33583Y18543D03* X33780Y16181D03* Y17953D03* X33898Y17441D03* X33937Y2480D03* Y3012D03* X34193Y19193D03* X34232Y3012D03* X34252Y2480D03* X34311Y16358D03* X34803Y19114D03* X34843Y34055D03* X34882Y3839D03* X34902Y16772D03* X34961Y19252D03* X35000Y24193D03* X35079Y24449D03* X35197Y3858D03* X35315Y24134D03* X35512Y18327D03* X35551Y23858D03* X35591Y32736D03* X35610Y3799D03* X35630Y12224D03* X35669Y18189D03* X35846Y19213D03* X35984Y3799D03* X36004Y2500D03* Y2717D03* X36181Y32303D03* X37008Y28957D03* X37165Y30591D03* X39035Y33169D03* X39606Y34882D03* X39646Y37894D03* X39941Y29409D03* X40020Y29902D03* X40098Y32756D03* X40177Y30157D03* X40276Y35728D03* Y37854D03* X40591Y35728D03* Y37854D03* X40748Y4252D03* X40787Y34016D03* X40866Y27668D02* X40846Y27649D01* Y27618* X40965Y4232D03* X41063Y11713D02* X41417D01* X41063D02* X40871D01* X40794Y11789* Y12417* X40945Y12567* Y12992* X41339Y12047D02* X41319Y12067D01* X41063* X41388Y24372D02* X41138Y24622D01* X41417Y11713D02* X41697D01* X41894Y11516* X41417Y12047D02* X41339D01* X41417Y13780D02* X40945D01* X41457Y2953D03* X41476Y9862D03* X41496Y7283D03* Y35256D03* X41535Y37854D03* X41693Y10000D03* X41697Y9207D03* X41713Y7244D03* Y35256D03* X41850Y37854D03* X41894Y11937D02* X41783Y12047D01* X41417* X41894Y13618D02* X41732Y13780D01* X41417* X41929Y33012D03* X42067Y4272D03* X42091Y9207D03* X42126Y5531D03* X42165Y17244D03* Y18091D03* X42480Y37854D03* X42484Y10047D03* X42500Y6850D03* X42520Y2756D03* X42638Y14980D03* X42657Y35236D03* X42795Y37854D03* X42874Y7559D03* X42953Y35236D03* X43425Y14528D02* Y14682D01* X41803* X41329Y14208* X40453* X40269Y14024* Y13141* X40418Y12992* X40945* X43425Y37854D03* X43740D03* X44173Y35256D03* X44193Y2717D03* X44213Y2327D03* X44390Y35256D03* X44449Y13012D03* X44587Y14547D03* X44862Y12657D03* X44921Y13799D03* X45020Y1929D03* Y2323D03* X45236Y5591D03* X45289Y11846D03* Y12240D03* Y13421D03* X45295Y12992D03* Y13819D03* X45374Y14173D03* X45394Y5433D03* X45531Y5276D03* X45709Y12240D03* Y12598D03* Y13051D03* X45884Y1933D03* Y2327D03* X45886Y5098D03* X46128Y11846D03* Y12240D03* Y13421D03* X46142Y4980D03* Y13051D03* X46161Y12638D03* X46378Y4902D03* X46549Y11846D03* Y13421D03* Y13815D03* X46673Y16358D03* X46724Y2327D03* X46909Y13425D03* X46988Y11850D03* Y12244D03* Y12657D03* X47008Y12992D03* X47106Y13917D03* X47146Y2327D03* X47323Y1673D03* X48307Y1949D03* Y2323D03* Y3110D03* Y3504D03* X49016Y36614D03* X49150Y2720D03* Y3114D03* X49567Y1933D03* Y2327D03* X49986Y2720D03* Y3114D03* X50417Y1933D03* Y2327D03* X50807Y3110D03* Y3543D03* Y7008D03* X50827Y2736D03* Y7756D03* X50846Y2323D03* X51071Y12240D03* Y12634D03* X51138Y14075D03* X51220Y3189D03* X51610Y8963D03* X51614Y3189D03* X51654Y1673D03* Y1890D03* X51909Y11850D03* X52004Y6120D03* X52106Y14862D03* X52362Y14567D03* X52398Y5701D03* Y6120D03* Y6961D03* Y9803D03* Y10644D03* X52559Y36614D03* X52752Y13421D03* X52776Y7441D03* X52791Y6120D03* X52795Y6969D03* X53524Y8150D03* X53579Y5283D03* Y5701D03* Y6543D03* X53602Y9409D03* Y12618D03* X53622Y6043D03* Y6260D03* X53780Y8307D03* Y8543D03* X54152Y34988D03* X54720Y35236D03* X55298Y34592D03* X55512Y34567D03* X55689Y3268D03* X55728Y13583D03* X55866Y12756D03* X55886Y13346D03* X56161Y22343D03* X56201Y15768D03* X56280Y15413D03* X56319Y22146D03* X56457Y21949D03* X56476Y14252D03* Y31909D03* Y32185D03* X56535Y16299D03* X56555Y14035D03* X56614Y21752D03* X56654Y6732D03* Y14587D03* Y14803D03* X56693Y34094D03* Y34823D03* Y35039D03* X57087Y15256D03* G54D18* X22308Y16681D02* Y16949D01* X22400Y17040* Y17205* X22373Y17231D02* X22242Y17362D01* X22165* X22400Y17205D02* X22373Y17231D01* X24158Y13016D02* Y13058D01* X24249Y13148* X24270Y13169* Y13201* X24318Y13250* Y13512* X24303* X24158Y13691D02* X24303Y13546D01* Y13512* X29398Y16142D02* Y16232D01* X29350Y16280* X29311* X29291Y16299* X29398Y16142D02* Y15991D01* X29578Y16681D02* X29474Y16577D01* Y16482* X29291Y16299* X29668Y11861D02* Y12168D01* X29843Y12343* X30709Y14390D02* X30762D01* X30886Y14266* X30978* X31083Y14161* X31909Y15217D02* Y15286D01* X31782Y15414* X31511* X31398Y15301* X41388Y25372D02* X41138Y25622D01* X51217Y7961D02* X50996D01* X50945Y8012* X52004Y7961D02* Y7787D01* Y7383* X52398Y7961D02* X52791D01* Y8302* X52795Y8306* Y8504* X55906Y15020D02* X55512D01* G54D19* X2799Y34533D02* X3726D01* X4173Y34980* Y35039* X14370Y9055D02* X13976D01* Y9528* X13996Y9547* X14577Y18672D02* Y16963D01* X14803Y16737* Y13701* X13678Y12576* Y9518* X13609Y9449* X13189* X14685Y9547D02* Y9484D01* X14764Y9405* Y9055* X14370* X15807Y11102D02* X15989Y11284D01* Y11443* X16317Y11772* X16319* Y11102D02* Y11772D01* X16535* Y14213D02* X16182D01* Y14901* X16181Y14902* X16535Y14213D02* X16692D01* Y14901* X16693Y14902* X16929Y5315D02* X16555D01* X16437Y5197* X20295Y1476D02* X20866D01* X23524Y8504D02* X23547D01* X25787Y21654D02* X25889D01* Y21969* X25967Y22047* X25984* X26181Y18661D02* Y18130D01* X26220Y18091* X28150Y1417D02* X28110Y1378D01* X27717* X38833Y17701D02* Y18356D01* X39637Y19160* Y19244* Y20011* X39803Y20177* Y20433* X40354Y3110D02* X39979D01* Y2331* X39921Y2274* Y1890* X41894Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X42091Y7787D03* X42287Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X42315Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X42484Y7787D03* X42681Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X42732Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X42878Y7787D03* X43075Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X43154Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X43272Y7787D03* X43469Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X43575Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X43665Y7787D03* X43862Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X43996Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X44059Y7787D03* X44256Y4894D03* Y5315D03* Y5736D03* Y6154D03* Y6575D03* Y6996D03* Y7417D03* Y8157D03* Y8579D03* Y8996D03* Y9417D03* Y9839D03* Y10256D03* Y10677D03* Y11098D03* Y11516D03* Y11937D03* Y12358D03* Y12780D03* Y13197D03* Y13618D03* X44413Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X44638Y27622D02* X44639D01* X44888Y27871* Y27872* X44638Y28122D02* X44888Y28372D01* X44638Y28622D02* X44888Y28872D01* X44638Y29122D02* X44888Y29372D01* X44638Y29622D02* X44888Y29872D01* X44657Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X44835Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X44888Y17372D02* X45134Y17618D01* X45138* X44888Y18872D02* X45138Y19122D01* Y19134* X44888Y19372D02* X45138Y19622D01* Y19626* X44888Y19872D02* X45134Y19626D01* X45138* X44888Y27372D02* X44638Y27622D01* X44888Y27872D02* X44638Y28122D01* X44888Y28372D02* X44638Y28622D01* X44888Y28872D02* X44638Y29122D01* X44888Y29372D02* X44638Y29622D01* X45079Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X45138Y17618D02* Y17622D01* X44888Y17872* X45138Y18130D02* Y18122D01* X44888Y17872* X45138Y18130D02* X45130D01* X44888Y18372* X45138Y18622D02* X44888Y18872D01* X45138Y18622D02* X44888Y18372D01* X45138Y19134D02* X45126D01* X44888Y19372* X45256Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X45500Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X45673Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X45917Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X46094Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X46138Y17622D02* X46388Y17372D01* X46138Y18122D02* X46388Y17872D01* X46138Y18622D02* X46388Y18372D01* X46138Y19122D02* X46388Y18872D01* X46138Y19622D02* X46388Y19372D01* X46138Y27622D02* X46388Y27872D01* X46138Y28122D02* X46388Y28372D01* X46138Y28622D02* X46388Y28872D01* X46138Y29122D02* X46388Y29372D01* X46138Y29622D02* X46388Y29872D01* X46169Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X46339Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X46388Y17872D02* X46138Y17622D01* X46388Y18372D02* X46138Y18122D01* X46388Y18872D02* X46138Y18622D01* X46388Y19372D02* X46138Y19122D01* X46388Y19872D02* X46138Y19622D01* X46388Y27372D02* X46138Y27622D01* X46388Y27872D02* X46138Y28122D01* X46388Y28372D02* X46138Y28622D01* X46388Y28872D02* X46138Y29122D01* X46388Y29372D02* X46138Y29622D01* X46516Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X46587Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X46760Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X46933Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X47008Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X47181Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X47354Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X47388Y17372D02* X47634Y17618D01* X47638* X47388Y19372D02* X47638Y19622D01* Y19626* X47388Y28372D02* X47634Y28126D01* X47388Y29372D02* X47642Y29118D01* X47429Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X47551Y11453D03* Y11846D03* Y12240D03* Y12634D03* Y13028D03* Y13421D03* X47634Y28126D02* X47888Y27872D01* X47636Y27620D02* X47388Y27372D01* X47638Y17618D02* Y17622D01* X47888Y17872* X47638Y18130D02* X47630D01* X47388Y18372* X47638Y18622D02* X47888Y18872D01* X47638Y18622D02* X47388Y18372D01* X47638Y19114D02* Y19122D01* X47388Y19372* X47638Y19114D02* X47646D01* X47888Y18872* X47638Y19626D02* X47642D01* X47888Y19872* X47638Y28622D02* X47388Y28372D01* X47640Y29624D02* X47388Y29372D01* X47642Y29118D02* X47888Y28872D01* X47724Y2327D03* Y2720D03* Y3114D03* Y3508D03* Y3902D03* Y4295D03* X47846Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X47888Y17872D02* X47638Y18122D01* Y18130* X47888Y27872D02* X47636Y27620D01* X47888Y28872D02* X47638Y28622D01* X47888Y29872D02* X47640Y29624D01* X47921Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X48094Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X48268Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X48343Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X48516Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X48689Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X48760Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X48888Y17872D02* X49138Y17622D01* X48888Y18372D02* X49138Y18122D01* X48888Y18872D02* X49138Y18622D01* X48888Y19372D02* X49138Y19122D01* X48888Y19372D02* X49138Y19622D01* X48888Y19872D02* X49138Y19622D01* X48888Y27372D02* X49138Y27622D01* X48888Y27872D02* X49138Y28122D01* X48888Y28372D02* X49138Y28622D01* X48888Y28872D02* X49138Y29122D01* X48888Y29372D02* X49138Y29622D01* X48937Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X49106Y6406D03* Y6823D03* Y7244D03* Y7665D03* Y8083D03* Y8504D03* Y8925D03* Y9343D03* X49138Y17622D02* X48888Y17372D01* X49138Y18122D02* X48888Y17872D01* X49138Y18622D02* X48888Y18372D01* X49138Y19122D02* X48888Y18872D01* X49138Y27622D02* X48888Y27872D01* X49138Y28122D02* X48888Y28372D01* X49138Y28622D02* X48888Y28872D01* X49138Y29122D02* X48888Y29372D01* X49138Y29622D02* X48888Y29872D01* X49181Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X49358Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X49602Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X49776Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X50020Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X50138Y17618D02* X50142D01* X50388Y17372* X50138Y18130D02* X50146D01* X50388Y18372* X50138Y18622D02* X50388Y18372D01* X50138Y19134D02* X50150D01* X50388Y19372* X50197Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X50388Y17872D02* X50138Y17622D01* Y17618* X50388Y17872D02* X50138Y18122D01* Y18130* X50388Y18872D02* X50138Y18622D01* X50388Y18872D02* X50138Y19122D01* Y19134* X50388Y19372D02* X50138Y19622D01* Y19626* X50388Y19872D02* X50142Y19626D01* X50138* X50388Y27372D02* X50638Y27622D01* X50388Y27872D02* X50638Y28122D01* X50388Y28372D02* X50638Y28622D01* X50388Y28872D02* X50638Y29122D01* X50388Y29372D02* X50638Y29622D01* X50388Y29872D02* X50638Y29622D01* X50441Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X50618Y2130D03* Y2524D03* Y2917D03* Y3311D03* Y3705D03* Y4098D03* Y4492D03* X50638Y27622D02* X50388Y27872D01* X50638Y28122D02* X50388Y28372D01* X50638Y28622D02* X50388Y28872D01* X50638Y29122D02* X50388Y29372D01* X50862Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X51020Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X51217Y7961D03* X51280Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X51413Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X51610Y7961D03* X51701Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X51807Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X52004Y7961D03* X52122Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X52201Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X52398Y7961D03* X52543Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X52594Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X52791Y7961D03* X52961Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* X52988Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* X53185Y7961D03* X53382Y2130D03* Y2551D03* Y2969D03* Y3390D03* Y3811D03* Y4232D03* Y4650D03* Y5071D03* Y5492D03* Y5909D03* Y6331D03* Y6752D03* Y7169D03* Y7591D03* Y8331D03* Y8752D03* Y9173D03* Y9594D03* Y10012D03* Y10433D03* Y10854D03* Y11256D03* Y11650D03* Y12043D03* Y12437D03* Y12831D03* Y13224D03* Y13618D03* G54D20* X54409Y27378D02* X54419D01* X54875Y27835D02* X55315D01* G54D21* X31772Y8617D02* X31851Y8696D01* X32202* X32566Y9060* Y9062* X32677Y9173* X32717* X32795Y9252* Y8661D02* X32544D01* X32421Y8538* X31861* X31781Y8458* X31772* G54D22* X26809Y21654D02* Y21263D01* X26772Y21226* Y21043* X32953Y18701D02* Y18925D01* X32987Y18959* Y20468* X32066Y21388* X31519* X31439Y21307* Y20810* X31223Y20594* X30193* X29565Y21222* Y21654* X33524Y18780D02* X33276Y19027D01* Y20544* X31961Y21859* Y22347* X31887Y22421* X31693* X45886Y5098D02* X46091Y5304D01* X47376* X47612Y5540* X50248* X50413Y5374* X49783Y6280D02* Y6032D01* X49567Y5815* X46210* X45841Y5446* X45702* X45531Y5276* G54D23* X26516Y20945D02* X26612Y20848D01* X27379* X27660Y20568* X28198* X28287Y20658* Y20866* X27933D02* X27909D01* X27309Y21467* Y21654* X28484Y24488D02* X27886D01* X27843Y24445* Y24016* X27809* X28543D02* X28309D01* X28760Y21437D02* Y21122D01* X28504Y20866* X28287* X30065Y21654D02* Y21010D01* X30195Y20880* X30531* Y20827* X30413Y24902D02* X31417D01* X31516Y25000* X31065Y24016D02* X31278D01* X31494Y23801* Y23566* X31654Y23406* X31693* X31102Y20827D02* X30886D01* X31516Y24606D02* X30726D01* X30565Y24446* Y24016* X31693Y22067D02* Y21850D01* Y22421D02* Y22615D01* Y22857* Y23051* X31870Y25000D02* Y24606D01* X33465Y19311D02* Y20595D01* X32130Y21929* Y23673* X31870Y23933* Y24606* X46142Y4980D02* X46313Y5151D01* X47574* X47777Y5354* X49961* X50837Y5263D02* X50616Y5042D01* X48500* X48346Y4888* X47860* X47846Y4902* X46378* X51807Y5071D02* X51958Y4920D01* Y4906* X52004Y4860* X52201Y4650D02* X52352Y4499D01* Y4487* X52398Y4441* X52594Y4650D02* X52791Y4453D01* Y4441* X52988Y4650D02* X53185Y4453D01* Y4441* G54D24* X1240Y6870D03* Y12382D03* Y20059D03* X1969Y12815D03* X2087Y7303D03* X3661Y10217D03* Y28740D03* Y29016D03* Y29646D03* Y32362D03* X3681Y28248D03* X3799Y9685D03* X3937Y33780D03* X4035Y37638D03* X4055Y24685D03* X4350Y25020D03* Y25374D03* X4390Y33799D03* X4409Y33110D03* X4469Y25827D03* Y26575D03* X4665Y1260D03* X4744Y2165D03* X4764Y26949D03* X4803Y2736D03* Y3228D03* X4843Y29114D03* X4862Y28327D03* X5059Y3937D03* Y27323D03* X5177Y32461D03* X5276Y31102D03* Y31417D03* Y31693D03* X5413Y33110D03* X5531Y34370D03* X5709Y34882D03* Y35217D03* X5807Y2165D03* X5945Y17717D03* Y18189D03* X5965Y1575D03* X5984Y18760D03* Y19035D03* X6024Y13780D03* X6043Y4134D03* Y4724D03* Y6693D03* Y7874D03* Y21260D03* Y21732D03* X6201Y22283D03* Y22598D03* X6240Y13957D03* Y14232D03* Y14862D03* Y15138D03* Y15433D03* Y16004D03* Y16299D03* Y16969D03* Y17244D03* X6260Y26811D03* Y27126D03* X6299Y19685D03* X6319Y25020D03* Y25315D03* X6339Y32224D03* X6417Y30709D03* X6457Y22815D03* X6516Y23130D03* X6535Y25807D03* X6693Y1890D03* Y9724D03* X6890Y11417D03* Y26476D03* X6949Y30039D03* Y31929D03* X7047Y20276D03* X7087Y1457D03* Y32874D03* X7126Y3543D03* Y4134D03* Y4724D03* Y5315D03* Y6693D03* Y7283D03* Y7874D03* Y8465D03* Y31102D03* X7146Y30591D03* X7185Y21476D03* X7205Y13583D03* Y15433D03* Y16850D03* X7402Y26476D03* X7480Y12028D03* Y15433D03* X7500Y12598D03* Y14528D03* Y16437D03* X7539Y9646D03* X7559Y8819D03* Y10787D03* X7677Y24213D03* X7717Y25984D03* Y31890D03* X7795Y2362D03* Y2717D03* Y11457D03* Y12028D03* X7835Y10433D03* X7874Y10039D03* Y10787D03* Y19685D03* X7894Y12421D03* Y12815D03* Y13169D03* X7913Y9449D03* X7992Y20709D03* X8071Y18268D03* X8091Y28327D03* Y28602D03* Y35650D03* X8209Y25374D03* Y26516D03* Y26791D03* Y31280D03* Y32421D03* Y32697D03* X8228Y2165D03* X8247Y5892D03* X8248Y12795D03* X8268Y5118D03* Y6299D03* Y9646D03* Y10039D03* Y11614D03* Y12402D03* X8307Y10433D03* X8327Y34350D03* X8402Y24606D03* X8543Y13720D03* Y14114D03* Y14409D03* Y14764D03* Y15138D03* Y15748D03* Y16122D03* Y16398D03* Y16732D03* Y17106D03* Y17461D03* X8563Y34508D03* X8642Y12815D03* Y13169D03* X8661Y1614D03* Y3150D03* Y3937D03* Y4331D03* Y5118D03* Y5453D03* Y5952D03* Y6280D03* Y6693D03* Y7480D03* Y7874D03* Y8189D03* Y10433D03* Y10827D03* Y11220D03* Y11614D03* Y11988D03* X8799Y29744D03* Y35650D03* X8819Y28602D03* X8839Y23386D03* X8917Y25098D03* Y25374D03* Y26516D03* Y26791D03* Y27067D03* Y32421D03* Y32697D03* X8997Y5118D03* X9035Y10840D03* Y11627D03* Y34508D03* X9042Y12816D03* X9055Y4331D03* Y6299D03* Y10433D03* X9068Y4704D03* X9076Y5532D03* Y5892D03* X9094Y20669D03* Y21024D03* X9272Y28051D03* Y28327D03* Y28602D03* Y30984D03* Y31260D03* Y35650D03* X9429Y3937D03* X9436Y4704D03* Y5532D03* X9449Y2362D03* Y2756D03* Y3150D03* Y3543D03* Y4331D03* Y5906D03* Y6299D03* Y6693D03* Y7087D03* Y7441D03* Y13189D03* X9455Y10774D03* Y11562D03* Y12060D03* Y12349D03* X9567Y17008D03* X9587Y13858D03* Y15177D03* X9626Y1457D03* Y25098D03* Y25374D03* Y32421D03* X9744Y34232D03* Y34508D03* X9790Y3931D03* X9843Y2756D03* Y3150D03* Y4724D03* Y5512D03* Y5906D03* Y6299D03* Y6693D03* Y12362D03* Y12815D03* X9856Y3523D03* Y4351D03* X9862Y18135D03* X9941Y7914D03* X9980Y28327D03* Y28602D03* Y35650D03* X10000Y8661D03* X10020Y24299D03* X10157Y16535D03* X10184Y7486D03* X10217Y34232D03* Y34508D03* X10220Y10834D03* Y11229D03* X10223Y3523D03* Y4351D03* X10236Y3150D03* Y4724D03* Y5512D03* Y5906D03* Y6299D03* Y10433D03* Y12382D03* Y13189D03* X10249Y11987D03* Y12816D03* X10256Y9528D03* X10276Y20472D03* X10289Y3931D03* X10315Y32421D03* Y32697D03* X10335Y26516D03* Y26791D03* Y27067D03* Y31280D03* X10610Y2362D03* Y13189D03* X10617Y12816D03* X10630Y3543D03* X10688Y7480D03* X10689Y28051D03* Y28327D03* Y28602D03* Y35650D03* X10748Y18898D03* X10787Y36929D03* Y37480D03* X10807Y9469D03* Y21673D03* Y31004D03* Y31280D03* X10827Y8327D03* X10925Y34508D03* X11004Y14134D03* X11010Y4704D03* Y5532D03* X11024Y2362D03* Y2756D03* Y3150D03* Y3543D03* Y3937D03* Y4331D03* Y5906D03* Y6299D03* Y6693D03* Y7480D03* Y7894D03* Y10433D03* Y12008D03* Y12795D03* Y13189D03* X11043Y26516D03* Y32421D03* X11102Y8327D03* Y16535D03* X11161Y35650D03* X11197Y24297D03* X11220Y29882D03* X11240Y1516D03* X11260Y25374D03* X11299Y36929D03* Y37480D03* X11358Y35846D03* X11371Y4724D03* X11417Y5512D03* Y5906D03* Y6299D03* Y7480D03* Y11220D03* Y13189D03* Y32559D03* Y32835D03* X11431Y4310D03* X11455Y3957D03* X11483Y9625D03* X11516Y28051D03* Y28327D03* Y28602D03* X11535Y25374D03* X11594Y10217D03* X11634Y35846D03* X11654Y8661D03* Y9055D03* X11732Y14134D03* X11752Y26516D03* Y31280D03* Y32421D03* X11772Y11614D03* X11791Y36929D03* X11798Y4310D03* Y5139D03* X11811Y2362D03* Y2756D03* Y3150D03* Y3543D03* Y3937D03* Y5512D03* Y5906D03* Y6299D03* Y6693D03* Y7874D03* Y29764D03* Y37480D03* X11870Y35650D03* X11969Y19488D03* X12106Y34350D03* X12152Y7081D03* X12184Y5919D03* Y6286D03* X12185Y1476D03* Y1752D03* Y36929D03* X12205Y3150D03* Y3543D03* Y3917D03* Y4284D03* Y5512D03* Y12795D03* X12211Y4777D03* X12303Y37480D03* X12343Y34508D03* X12402Y7933D03* X12421Y16358D03* X12461Y24823D03* Y25098D03* Y31004D03* Y31280D03* X12579Y28051D03* Y28327D03* Y28602D03* Y35650D03* X12598Y2362D03* Y6358D03* X12612Y2735D03* X12619Y4344D03* Y4711D03* X12697Y9449D03* Y10236D03* X12713Y11810D03* X12717Y12598D03* Y12992D03* X12721Y12203D03* X12756Y25394D03* X12815Y37480D03* X12874Y36929D03* X12933Y24350D03* X12953Y10650D03* X12979Y2735D03* Y3564D03* X12992Y2362D03* Y3937D03* Y4724D03* Y7087D03* Y7874D03* X13013Y6286D03* X13039Y3150D03* X13295Y19704D03* X13307Y20846D03* Y21280D03* Y23681D03* Y24626D03* Y36004D03* Y37480D03* X13346Y14646D03* X13386Y2362D03* Y2756D03* Y4724D03* Y7480D03* Y21811D03* X13543Y5039D03* Y5512D03* X13701Y14291D03* Y14646D03* Y31063D03* X13799Y36929D03* Y37480D03* X13839Y13760D03* Y14035D03* X13858Y1476D03* Y1772D03* X13917Y7480D03* X13996Y9547D03* X14055Y5906D03* Y28465D03* X14075Y26555D03* X14114Y25374D03* Y31004D03* X14173Y32480D03* X14193Y7480D03* X14232Y14843D03* Y35650D03* X14311Y36929D03* Y37480D03* X14370Y28031D03* Y28327D03* X14390Y25374D03* X14409Y23583D03* Y25039D03* X14469Y34232D03* Y34508D03* X14508Y14843D03* X14685Y9547D03* X14764Y29764D03* X14803Y36929D03* Y37480D03* X14823Y5512D03* Y26516D03* Y26791D03* Y27067D03* Y27441D03* Y27717D03* X14862Y18839D03* X14941Y35650D03* X15000Y5039D03* X15118Y10157D03* X15138Y7402D03* Y24626D03* X15157Y6772D03* X15177Y6201D03* X15236Y28228D03* X15256Y1929D03* Y32500D03* Y32776D03* X15276Y23012D03* Y23287D03* X15295Y36929D03* Y37480D03* X15354Y20669D03* X15413Y34508D03* X15453Y17283D03* X15531Y25098D03* Y25374D03* X15551Y30965D03* Y31240D03* X15591Y28307D03* Y30591D03* X15610Y17638D03* X15630Y19823D03* X15650Y35650D03* X15669Y17067D03* X15748Y10630D03* X15807Y11102D03* Y36929D03* Y37480D03* X15827Y32835D03* X15886Y34173D03* Y34508D03* X15945Y18622D03* X16004Y32421D03* X16063Y29764D03* X16181Y14902D03* Y16476D03* Y33425D03* X16240Y26555D03* Y26831D03* Y27106D03* X16260Y12894D03* X16299Y36929D03* Y37480D03* X16319Y11102D03* Y22421D03* Y22697D03* Y22972D03* Y23268D03* X16358Y28307D03* Y28583D03* Y33957D03* Y34232D03* Y34508D03* X16437Y5197D03* X16516Y12756D03* X16575Y10177D03* Y18957D03* X16594Y32421D03* Y32697D03* X16614Y1929D03* X16693Y14902D03* X16713Y12953D03* X16772Y2559D03* Y2933D03* Y17323D03* Y17618D03* Y23386D03* X16811Y36929D03* Y37480D03* X16890Y10177D03* Y24547D03* Y30827D03* X16949Y25374D03* Y26516D03* Y26791D03* Y27067D03* Y27559D03* Y28169D03* Y28445D03* X16969Y12815D03* X17028Y9764D03* X17067Y15295D03* Y34134D03* Y34508D03* X17146Y13504D03* Y16280D03* X17185Y32421D03* X17224Y4724D03* Y15531D03* X17244Y21732D03* X17283Y6457D03* Y14429D03* X17303Y16614D03* Y17244D03* Y34291D03* Y36929D03* Y37480D03* X17343Y16083D03* X17362Y22421D03* X17421Y12126D03* Y13031D03* Y13504D03* X17480Y24252D03* Y24528D03* Y29764D03* X17500Y12579D03* Y17028D03* X17539Y18307D03* Y18583D03* X17559Y14429D03* X17579Y34291D03* X17598Y30709D03* X17618Y13996D03* Y19055D03* X17650Y14894D03* X17657Y26516D03* Y26791D03* Y27067D03* X17697Y13031D03* Y13504D03* Y15374D03* X17717Y7677D03* Y21673D03* Y28051D03* Y28327D03* Y28602D03* X17736Y6772D03* Y7303D03* X17776Y12579D03* Y34508D03* X17795Y2559D03* Y2953D03* Y36929D03* Y37480D03* X17835Y5591D03* Y5866D03* Y6142D03* Y14429D03* Y17618D03* Y18031D03* X17953Y15965D03* Y22205D03* X17972Y3406D03* Y13031D03* Y13504D03* Y15374D03* X17992Y5059D03* Y6476D03* Y11398D03* Y16319D03* X18012Y7618D03* X18031Y17421D03* Y35748D03* X18033Y16989D03* X18071Y10984D03* Y11673D03* Y21280D03* X18110Y8248D03* X18130Y32421D03* Y32717D03* X18150Y10276D03* X18248Y34094D03* Y34390D03* X18268Y18031D03* Y18307D03* Y22205D03* X18307Y36929D03* Y37480D03* X18366Y25374D03* Y26654D03* Y28465D03* Y31260D03* X18425Y20945D03* Y29764D03* X18484Y35650D03* X18622Y27579D03* Y27854D03* X18701Y17657D03* Y18031D03* Y18307D03* X18720Y7165D03* Y33760D03* Y34370D03* X18760Y14783D03* X18780Y32854D03* X18799Y15335D03* Y36929D03* Y37480D03* X18839Y5177D03* Y25374D03* Y26654D03* Y26929D03* Y31240D03* X18898Y6594D03* Y8366D03* Y23858D03* X18917Y9350D03* Y10965D03* X18937Y28465D03* Y32520D03* X18957Y6063D03* Y10138D03* Y29744D03* Y35650D03* X18976Y27579D03* Y27854D03* X18996Y4685D03* X19035Y16063D03* Y16339D03* Y24685D03* X19057Y13063D03* X19075Y6929D03* Y12461D03* Y13602D03* Y33760D03* X19093Y14240D03* X19114Y23012D03* X19173Y8189D03* X19252Y7362D03* Y11220D03* Y19843D03* X19291Y12224D03* Y15098D03* Y15906D03* Y16201D03* Y32579D03* Y32953D03* Y37382D03* X19311Y5354D03* Y36929D03* X19331Y13051D03* X19350Y15394D03* X19370Y5039D03* Y6417D03* Y8406D03* Y13327D03* Y13980D03* X19390Y17480D03* Y17756D03* Y18031D03* Y35650D03* X19409Y18307D03* X19429Y14248D03* Y33465D03* Y34094D03* Y34370D03* X19488Y3563D03* Y7165D03* Y30945D03* X19508Y11378D03* X19524Y14681D03* X19528Y26929D03* Y27205D03* X19547Y5768D03* Y15709D03* Y25098D03* Y25374D03* Y31240D03* X19567Y22303D03* X19587Y8169D03* Y15098D03* X19606Y30118D03* X19646Y5354D03* Y13327D03* Y15394D03* X19665Y27638D03* Y27913D03* Y28189D03* Y28465D03* Y29744D03* Y35650D03* Y37382D03* X19685Y13051D03* X19705Y14272D03* X19724Y7362D03* Y33780D03* X19744Y6417D03* Y8406D03* Y9350D03* Y13996D03* X19803Y12303D03* X19823Y36909D03* X19921Y14705D03* Y15374D03* Y15650D03* X19941Y6201D03* Y11102D03* X19961Y13346D03* Y16142D03* X19980Y5571D03* Y17039D03* X20000Y17795D03* X20039Y18248D03* X20059Y13051D03* X20079Y3563D03* X20138Y7362D03* Y34094D03* Y34370D03* X20157Y12323D03* Y19272D03* X20177Y26772D03* Y27047D03* Y27362D03* X20197Y8130D03* Y14114D03* Y21378D03* Y32579D03* Y32953D03* X20256Y5689D03* X20295Y1476D03* Y5413D03* Y9350D03* Y14724D03* Y35650D03* X20311Y15091D03* X20315Y4213D03* Y11102D03* Y30709D03* Y36929D03* X20374Y37382D03* X20433Y6437D03* Y12323D03* Y21142D03* X20453Y5945D03* Y7362D03* Y13110D03* X20472Y8169D03* Y10118D03* Y13996D03* X20492Y25000D03* Y25374D03* Y31240D03* X20512Y14547D03* X20571Y16142D03* Y17402D03* Y17697D03* X20610Y13366D03* Y28189D03* Y28465D03* Y29744D03* Y34370D03* Y35650D03* X20650Y7146D03* Y11437D03* X20669Y3248D03* Y3543D03* Y11102D03* Y30118D03* X20709Y14803D03* X20728Y15669D03* X20745Y15391D03* X20746Y15116D03* X20768Y8169D03* X20827Y9350D03* Y13031D03* X20846Y17697D03* Y17972D03* Y18248D03* X20866Y23543D03* X20886Y6634D03* Y7362D03* Y32520D03* Y32874D03* Y33760D03* X20925Y2992D03* Y10098D03* X20945Y11378D03* X20965Y6161D03* Y14114D03* Y14390D03* Y15866D03* X20978Y14693D03* Y15535D03* X20980Y14960D03* X20990Y15249D03* X21004Y4862D03* Y5236D03* X21024Y5886D03* Y30709D03* X21035Y17146D03* X21062Y23339D03* X21083Y3524D03* Y35650D03* X21142Y13346D03* X21161Y6634D03* X21181Y4350D03* Y8169D03* X21220Y11083D03* Y34094D03* Y34370D03* X21240Y14114D03* X21260Y11358D03* Y13839D03* X21319Y13091D03* X21378Y9350D03* Y12323D03* X21424Y20763D03* X21433Y21750D03* X21437Y20335D03* Y25374D03* Y26673D03* Y26949D03* Y27362D03* Y31240D03* X21457Y32520D03* Y33248D03* X21496Y23031D03* Y30118D03* X21535Y8130D03* Y11358D03* X21555Y27913D03* Y28189D03* Y29744D03* Y35650D03* X21594Y8406D03* X21614Y13091D03* X21634Y14035D03* X21673Y17638D03* Y17913D03* X21705Y17362D03* X21713Y14449D03* Y14803D03* Y15138D03* Y15492D03* Y15827D03* Y16122D03* Y20248D03* X21732Y3543D03* Y4370D03* Y4843D03* Y5394D03* Y5709D03* Y6083D03* Y6398D03* Y18189D03* X21791Y34370D03* X21811Y7874D03* X21850Y12343D03* X21890Y10138D03* Y13091D03* X21909Y13484D03* X21949Y32795D03* X21969Y5551D03* Y15965D03* X21988Y11929D03* X22008Y6614D03* Y8091D03* X22047Y34154D03* X22146Y35650D03* X22165Y12835D03* Y17087D03* Y17362D03* Y17638D03* Y17913D03* Y33760D03* X22224Y13917D03* Y14232D03* Y14508D03* Y14980D03* Y15256D03* Y26673D03* Y26949D03* Y27657D03* Y32520D03* Y32795D03* X22244Y13307D03* X22264Y34370D03* X22340Y23062D03* X22343Y3563D03* X22382Y19488D03* Y31240D03* X22402Y25374D03* X22421Y11339D03* Y12283D03* X22433Y20252D03* X22441Y9134D03* Y10394D03* Y19134D03* Y30118D03* X22500Y27913D03* Y28189D03* Y28465D03* Y29744D03* Y35650D03* X22559Y30827D03* X22618Y5374D03* Y7579D03* Y12992D03* X22624Y23061D03* X22677Y4252D03* Y34370D03* X22709Y20252D03* X22717Y4961D03* Y5689D03* X22756Y3209D03* X22795Y8504D03* X22854Y27264D03* Y27539D03* Y32520D03* Y33268D03* X22894Y3563D03* X22933Y35650D03* X22953Y4390D03* X22972Y4783D03* Y5157D03* Y5531D03* Y5886D03* Y6260D03* Y6614D03* Y33681D03* Y34370D03* X22992Y25374D03* X23012Y26654D03* Y26929D03* X23031Y7559D03* X23091Y28465D03* Y31240D03* X23150Y10079D03* Y11654D03* Y11969D03* Y12283D03* X23209Y13091D03* Y27776D03* Y28150D03* Y29744D03* Y35650D03* X23327Y32520D03* X23346Y7579D03* X23386Y1535D03* Y1870D03* Y3563D03* X23524Y8504D03* Y9134D03* Y10079D03* Y11024D03* Y11654D03* Y11969D03* Y12283D03* X23563Y26654D03* Y26929D03* Y27205D03* Y31240D03* X23622Y15472D03* X23642Y13307D03* Y15118D03* X23661Y13622D03* X23681Y4331D03* Y4626D03* Y5079D03* Y5413D03* Y5689D03* Y6024D03* Y6378D03* Y6791D03* Y7146D03* Y13917D03* Y14232D03* Y14567D03* Y28602D03* Y29744D03* Y35650D03* X23701Y14843D03* X23740Y15866D03* Y16240D03* X23858Y32835D03* Y33780D03* X23878Y10079D03* Y32480D03* X23917Y2756D03* Y5236D03* Y5827D03* Y6201D03* Y6969D03* Y13209D03* Y15039D03* Y34350D03* X23937Y4783D03* Y6476D03* X23957Y13858D03* Y14232D03* X23976Y3425D03* Y14567D03* X23996Y25374D03* X24075Y7579D03* X24134Y37894D03* X24154Y34508D03* X24173Y18839D03* Y19114D03* X24213Y19488D03* X24232Y20256D03* X24240Y20551D03* X24252Y9134D03* Y10079D03* Y11024D03* Y11339D03* X24272Y12283D03* Y25098D03* Y25374D03* Y31280D03* X24303Y13512D03* X24311Y17067D03* Y17343D03* Y17618D03* Y17894D03* X24390Y12894D03* Y28051D03* Y28327D03* Y28602D03* Y35650D03* X24449Y7579D03* Y32717D03* Y38268D03* X24508Y32402D03* X24557Y13652D03* X24626Y10079D03* Y12283D03* Y26535D03* Y26811D03* Y27106D03* Y34508D03* X24665Y12953D03* Y14449D03* Y14724D03* Y15020D03* Y15571D03* Y15846D03* X24669Y13248D03* X24685Y14173D03* X24696Y13889D03* X24705Y3563D03* Y15295D03* X24783Y17126D03* Y17402D03* Y17677D03* Y17953D03* X24803Y7579D03* Y16181D03* X24862Y35650D03* X24921Y13091D03* Y29764D03* Y32953D03* X24941Y4331D03* Y4606D03* Y5000D03* Y5433D03* Y5748D03* Y6063D03* Y6476D03* Y6870D03* Y7146D03* X24980Y9134D03* Y10079D03* Y11024D03* Y11969D03* Y25374D03* Y36929D03* Y37480D03* X25000Y3563D03* X25020Y25098D03* X25039Y17539D03* Y18543D03* X25059Y17953D03* Y19114D03* Y19390D03* Y20197D03* X25098Y34232D03* Y34508D03* X25118Y1496D03* Y1772D03* Y2047D03* Y2382D03* X25138Y15925D03* X25157Y20551D03* X25177Y7559D03* Y12913D03* X25276Y19961D03* Y31299D03* X25315Y32421D03* Y32697D03* X25354Y8504D03* Y11339D03* X25394Y4331D03* X25472Y36929D03* X25531Y3563D03* X25571Y28051D03* Y28327D03* Y28602D03* Y35650D03* X25610Y14213D03* X25650Y14606D03* Y15256D03* X25669Y5197D03* Y6260D03* Y7146D03* Y7461D03* Y13524D03* Y13799D03* X25685Y13051D03* X25689Y24961D03* Y26516D03* Y27087D03* X25728Y9134D03* Y10079D03* X25748Y15827D03* Y17362D03* X25787Y22244D03* X25807Y34232D03* Y34508D03* X25846Y2756D03* X25866Y14882D03* Y15472D03* Y17067D03* X25886Y3130D03* Y3406D03* X25906Y13346D03* X25925Y4528D03* Y5039D03* Y5394D03* Y14213D03* Y14508D03* Y15157D03* X25953Y13024D03* X25965Y36004D03* X25984Y13701D03* Y22047D03* X26043Y32421D03* Y32697D03* Y32972D03* X26083Y10079D03* Y11024D03* X26102Y17362D03* X26161Y26516D03* Y26791D03* X26201Y3130D03* Y3406D03* Y14685D03* Y15157D03* Y15453D03* Y37126D03* X26220Y14173D03* Y18091D03* Y29882D03* Y31299D03* X26240Y7559D03* X26260Y12894D03* X26280Y28189D03* Y34508D03* X26398Y25374D03* X26437Y9134D03* Y10079D03* X26457Y2461D03* X26476Y17067D03* Y36004D03* X26575Y25157D03* X26594Y5177D03* Y6260D03* X26614Y4843D03* X26634Y28189D03* Y28465D03* Y32421D03* X26654Y7520D03* Y12894D03* X26658Y7110D03* X26673Y6535D03* Y6811D03* X26693Y2283D03* Y4370D03* X26713Y34075D03* Y34350D03* X26732Y37126D03* X26811Y11339D03* Y12283D03* X26850Y26516D03* Y26791D03* X26870Y5177D03* Y5748D03* Y6024D03* Y6299D03* X26890Y1398D03* Y4567D03* Y4843D03* Y5472D03* X26909Y13661D03* X26917Y14921D03* Y15197D03* Y15551D03* Y15906D03* X26929Y7087D03* Y14055D03* Y14409D03* Y16181D03* X26949Y34508D03* X26969Y7559D03* Y36929D03* Y37480D03* X26988Y2579D03* Y2854D03* Y3130D03* Y3406D03* X27008Y33878D03* X27087Y2264D03* X27106Y32421D03* X27165Y10079D03* Y29783D03* X27185Y8504D03* Y9134D03* Y11024D03* Y11969D03* X27224Y28602D03* Y34232D03* Y34508D03* X27244Y7480D03* X27303Y26516D03* X27382Y7028D03* Y12894D03* X27402Y24783D03* X27480Y7303D03* Y36929D03* Y37480D03* X27520Y17520D03* Y17795D03* Y18071D03* Y18346D03* Y18799D03* Y19075D03* Y32736D03* X27539Y2579D03* Y24508D03* X27579Y2854D03* Y3130D03* Y3406D03* Y5177D03* Y5906D03* Y25374D03* Y31102D03* X27598Y6280D03* Y14193D03* Y14587D03* Y15315D03* X27618Y6654D03* X27630Y15653D03* X27633Y15969D03* X27638Y4724D03* X27650Y17086D03* X27657Y7008D03* Y8346D03* Y12795D03* Y13327D03* Y13760D03* X27697Y28012D03* Y28287D03* Y32421D03* Y34232D03* Y34508D03* X27736Y11063D03* X27776Y25177D03* X27835Y10374D03* Y13543D03* X27854Y2854D03* Y9114D03* X27874Y4370D03* Y5492D03* Y5768D03* Y6043D03* Y6339D03* Y15827D03* Y16142D03* Y34016D03* X27894Y2579D03* Y4941D03* Y5217D03* Y11339D03* Y14075D03* Y14449D03* Y14724D03* Y15000D03* Y15276D03* X27896Y15546D03* X27913Y8091D03* X27972Y24980D03* Y36929D03* Y37480D03* X28012Y13327D03* Y13799D03* X28031Y9390D03* X28051Y32421D03* X28110Y13051D03* X28130Y11122D03* Y24724D03* X28150Y1417D03* Y6870D03* Y17087D03* Y17362D03* X28169Y6594D03* Y28602D03* Y34508D03* X28226Y13976D03* X28228Y9114D03* Y12343D03* Y34016D03* X28287Y26791D03* X28307Y10374D03* X28327Y11339D03* X28339Y15841D03* X28346Y25394D03* X28366Y4331D03* X28406Y6437D03* Y8406D03* Y9390D03* Y13051D03* Y29744D03* X28425Y12087D03* X28445Y13799D03* X28465Y26575D03* Y36929D03* Y37480D03* X28492Y14067D03* X28504Y22598D03* Y35669D03* Y36004D03* X28524Y7205D03* X28543Y4803D03* Y5551D03* X28563Y12343D03* X28583Y5925D03* Y6220D03* Y8150D03* Y21654D03* X28602Y9114D03* Y11339D03* Y14626D03* X28622Y10374D03* Y15000D03* Y28425D03* X28661Y3366D03* X28681Y14358D03* X28720Y12087D03* Y13799D03* X28740Y8406D03* X28760Y32421D03* X28780Y6437D03* Y9390D03* Y11024D03* Y17087D03* X28799Y7146D03* X28819Y2539D03* Y2815D03* Y3091D03* Y14803D03* Y24094D03* X28839Y15453D03* Y15728D03* Y34232D03* Y34508D03* X28858Y12343D03* Y15157D03* X28878Y6161D03* Y11339D03* X28898Y17362D03* Y17638D03* Y17913D03* Y28425D03* X28917Y4646D03* Y10374D03* X28937Y19193D03* X28948Y14331D03* X28949Y4370D03* X28957Y5000D03* Y5374D03* Y20217D03* Y22185D03* Y32854D03* X28976Y36929D03* Y37461D03* X28996Y13287D03* Y25217D03* X29055Y2244D03* Y21732D03* X29075Y5945D03* X29094Y12047D03* Y14567D03* X29114Y34232D03* Y34508D03* X29134Y13031D03* Y23760D03* X29154Y6437D03* Y8406D03* Y9390D03* Y11339D03* Y12343D03* Y14016D03* Y15925D03* Y26732D03* Y27008D03* X29173Y3189D03* Y29882D03* X29193Y4528D03* X29209Y4252D03* X29232Y32854D03* X29264Y15492D03* X29272Y5000D03* Y13287D03* X29291Y7087D03* Y10394D03* Y16299D03* X29311Y5768D03* Y15079D03* X29339Y14811D03* X29350Y8150D03* Y9114D03* Y23583D03* Y28583D03* X29370Y6161D03* Y11102D03* Y34035D03* X29409Y2480D03* Y14291D03* Y20669D03* X29449Y14016D03* X29469Y12047D03* Y12343D03* Y25374D03* Y26516D03* Y32421D03* Y32697D03* Y36929D03* Y37480D03* X29488Y17067D03* Y17539D03* X29508Y13091D03* Y17815D03* Y20256D03* X29528Y6437D03* Y7441D03* Y8406D03* Y9390D03* X29547Y3366D03* X29567Y11339D03* X29587Y34232D03* Y34508D03* X29606Y14783D03* Y19980D03* X29626Y19193D03* X29646Y4331D03* Y5768D03* Y7087D03* Y13346D03* Y17303D03* X29665Y5079D03* Y15256D03* Y15681D03* X29685Y14291D03* X29724Y4803D03* Y9114D03* X29744Y10374D03* X29764Y18012D03* Y35827D03* X29803Y8406D03* X29823Y14016D03* X29843Y11339D03* Y12343D03* X29862Y11024D03* Y15472D03* Y34449D03* X29882Y3071D03* Y12047D03* Y13012D03* Y19980D03* X29902Y6437D03* Y9390D03* X29941Y15748D03* Y25374D03* X29961Y14291D03* X29980Y15118D03* Y36929D03* Y37480D03* X30000Y4803D03* Y7323D03* Y9114D03* Y13346D03* X30020Y5098D03* Y5394D03* X30039Y10374D03* X30059Y5768D03* Y8228D03* Y14678D03* X30118Y1299D03* Y3307D03* Y12343D03* X30138Y11339D03* X30157Y13110D03* X30177Y25217D03* Y26516D03* Y26791D03* Y31280D03* X30217Y9390D03* Y14016D03* X30236Y6201D03* Y6476D03* Y19252D03* X30256Y11063D03* Y12047D03* Y16969D03* Y17244D03* Y17520D03* Y17795D03* X30262Y14291D03* X30276Y15118D03* X30295Y28327D03* Y28602D03* Y29744D03* Y32421D03* Y32697D03* Y35650D03* X30315Y5098D03* Y5394D03* Y10374D03* Y15385D03* X30354Y3071D03* Y4547D03* Y8268D03* X30374Y16280D03* X30394Y12323D03* X30433Y25374D03* X30472Y1181D03* Y6969D03* Y7913D03* Y9075D03* Y13346D03* X30512Y9370D03* Y15748D03* Y36949D03* X30528Y14193D03* X30531Y13071D03* Y34508D03* X30551Y4350D03* Y11339D03* X30571Y37461D03* X30591Y3307D03* Y6142D03* Y10374D03* X30610Y11063D03* X30650Y32421D03* X30689Y12106D03* X30709Y6614D03* Y14390D03* X30748Y9075D03* X30768Y5098D03* Y12559D03* Y17165D03* Y17441D03* Y17717D03* Y28327D03* Y28602D03* Y34331D03* X30807Y5689D03* Y15807D03* X30846Y4646D03* Y11339D03* Y13642D03* Y15236D03* X30862Y14717D03* X30866Y16083D03* X30886Y25374D03* Y26516D03* Y26791D03* X30925Y37461D03* X30945Y31280D03* Y36949D03* X31004Y2402D03* Y29744D03* Y34508D03* X31122Y25217D03* Y32421D03* X31181Y3543D03* X31220Y28602D03* Y34331D03* X31280Y17126D03* X31319Y19193D03* Y19469D03* Y19744D03* X31339Y21909D03* X31358Y21634D03* Y26516D03* Y31280D03* X31476Y37480D03* X31496Y6555D03* Y28602D03* Y34331D03* X31516Y10374D03* X31535Y2362D03* Y8268D03* Y35827D03* X31594Y11161D03* Y32421D03* X31634Y4587D03* Y5118D03* Y8937D03* Y9705D03* Y10650D03* Y12756D03* Y13622D03* Y14173D03* Y15217D03* Y16161D03* X31713Y29744D03* Y34508D03* X31732Y21161D03* X31772Y6614D03* X31791Y4350D03* Y10374D03* X31811Y5689D03* Y6280D03* X31831Y15945D03* X31862Y8150D03* X31870Y11161D03* Y32421D03* Y32697D03* X31909Y8937D03* Y9705D03* Y13622D03* Y14173D03* Y14764D03* Y15217D03* Y16260D03* X31929Y5118D03* Y12087D03* Y12756D03* Y13031D03* X31949Y34331D03* X31969Y36929D03* Y37480D03* X32008Y6969D03* X32067Y10374D03* Y25374D03* Y26516D03* Y26791D03* Y27146D03* Y31280D03* X32087Y6280D03* X32106Y5689D03* X32126Y16535D03* X32134Y8150D03* X32146Y11161D03* X32185Y8937D03* Y9705D03* Y13622D03* Y14173D03* Y14764D03* Y16122D03* Y28327D03* Y28602D03* Y34508D03* X32224Y12087D03* X32244Y6732D03* Y12756D03* Y13031D03* X32303Y25217D03* X32343Y10374D03* X32362Y5079D03* Y11457D03* X32382Y4291D03* Y6280D03* Y16319D03* X32400Y3200D03* X32402Y5689D03* Y8150D03* X32421Y29744D03* Y35650D03* X32461Y9705D03* Y14764D03* Y15039D03* Y31280D03* X32480Y36929D03* Y37480D03* X32500Y34331D03* X32520Y10650D03* Y12087D03* X32559Y19193D03* Y19685D03* X32579Y16122D03* Y18012D03* X32598Y12874D03* Y13228D03* Y16850D03* Y17126D03* Y25276D03* X32618Y10374D03* X32638Y16575D03* X32657Y4291D03* Y28406D03* X32697Y11161D03* X32717Y35650D03* X32736Y9705D03* X32756Y15039D03* X32776Y31280D03* X32894Y28602D03* Y29744D03* Y34508D03* X32953Y4606D03* X32972Y11161D03* Y36004D03* Y37480D03* X33012Y21713D03* Y34213D03* X33031Y25787D03* X33189Y6142D03* X33228Y12047D03* X33248Y11161D03* X33287Y18346D03* Y24665D03* X33307Y18622D03* X33465Y37480D03* X33484Y36004D03* X33543Y2598D03* X33563Y32047D03* X33780Y5433D03* X33898Y5906D03* Y32047D03* X33976Y36004D03* Y37480D03* X34114Y27087D03* X34154Y1378D03* X34193Y26457D03* X34252Y5787D03* X34291Y24862D03* X34331Y22972D03* Y23504D03* Y24232D03* X34370Y21732D03* X34469Y36004D03* X34547Y19154D03* X34567Y2500D03* Y14409D03* Y14685D03* Y18602D03* Y20965D03* X34606Y1673D03* X34626Y30906D03* X34646Y18110D03* X34665Y19862D03* X34803Y18760D03* Y21654D03* Y23189D03* Y23465D03* Y24055D03* Y24331D03* Y24705D03* X34843Y4232D03* X34862Y17933D03* X34882Y1673D03* Y37776D03* X34961Y2835D03* X35020Y21004D03* X35039Y32087D03* X35098Y23189D03* Y23465D03* X35157Y18484D03* Y18760D03* Y19035D03* X35177Y21240D03* X35197Y1673D03* Y4232D03* Y26693D03* X35236Y37047D03* X35256Y16417D03* Y16693D03* X35315Y17697D03* Y17972D03* Y21752D03* X35335Y21476D03* Y32087D03* X35348Y19963D03* X35374Y21004D03* X35492Y35374D03* X35512Y2500D03* Y5433D03* X35531Y31280D03* Y36004D03* X35551Y2953D03* Y4232D03* Y34567D03* Y34843D03* X35591Y32382D03* X35669Y24213D03* X35846Y37776D03* X35906Y1260D03* Y4232D03* X36024Y18209D03* Y18484D03* Y18760D03* Y19035D03* X36043Y13327D03* Y13602D03* Y13878D03* Y14154D03* Y14429D03* Y14921D03* Y15295D03* Y15669D03* X36063Y8244D03* X36083Y21083D03* X36122Y30197D03* X36142Y9567D03* Y21378D03* Y37776D03* X36220Y26457D03* Y26929D03* Y27402D03* Y27795D03* X36260Y4232D03* X36280Y28622D03* X36378Y1181D03* X36457Y2500D03* Y3012D03* X36496Y33169D03* X36614Y4232D03* X36713Y1181D03* X36732Y5551D03* X36890Y34626D03* X36929Y27087D03* Y27402D03* X36949Y28622D03* Y29252D03* X36969Y4232D03* X36988Y5433D03* X37008Y8150D03* Y8425D03* Y8701D03* Y8976D03* Y9252D03* X37028Y16575D03* X37165Y31240D03* X37185Y31654D03* Y31929D03* X37323Y7795D03* X37343Y35630D03* X37362Y1417D03* X37382Y29291D03* X37402Y8425D03* Y8701D03* Y8976D03* Y9252D03* Y9528D03* Y27402D03* Y34921D03* X37520Y28583D03* X37559Y6142D03* X37579Y29094D03* X37598Y23031D03* Y23327D03* X37618Y2047D03* Y2343D03* X37657Y30807D03* X37697Y2776D03* Y3071D03* Y8701D03* Y8976D03* Y9252D03* Y9528D03* Y9803D03* Y10079D03* X37717Y26417D03* X37756Y1161D03* Y1437D03* X37776Y29291D03* X37854Y31890D03* X37992Y26693D03* X38031Y1161D03* X38071Y35728D03* Y36555D03* Y37067D03* Y37894D03* X38091Y29075D03* X38150Y28701D03* X38268Y5807D03* Y6102D03* Y29291D03* X38287Y30354D03* X38346Y1437D03* X38347Y1164D03* X38386Y31102D03* Y31398D03* Y35728D03* Y37894D03* X38425Y32126D03* X38445Y7815D03* X38543Y2953D03* Y3661D03* Y3937D03* Y4508D03* Y5807D03* Y6102D03* X38602Y16378D03* X38622Y1161D03* Y8150D03* Y20669D03* X38701Y35728D03* Y37894D03* X38760Y16634D03* X38780Y33819D03* X38819Y2008D03* Y2323D03* Y5965D03* Y6260D03* X38858Y1437D03* X38976Y24646D03* X39016Y35728D03* Y37894D03* X39075Y1161D03* X39094Y35433D03* X39134Y11220D03* Y11496D03* X39173Y36811D03* X39252Y33957D03* X39272Y2303D03* X39331Y35728D03* Y36555D03* Y37067D03* Y37894D03* X39390Y25098D03* X39409Y8760D03* X39429Y2776D03* Y3071D03* Y11083D03* Y11358D03* Y11634D03* Y11909D03* Y12185D03* Y13346D03* X39449Y29764D03* X39488Y1161D03* X39547Y33957D03* X39567Y2303D03* Y16417D03* Y16772D03* Y18307D03* X39646Y35728D03* X39685Y9016D03* X39705Y20748D03* X39764Y14724D03* Y15000D03* Y15276D03* X39803Y20433D03* Y21732D03* Y36811D03* X39882Y6299D03* X39921Y3780D03* Y19606D03* Y21142D03* X39961Y35728D03* Y36555D03* Y37067D03* Y37894D03* X40039Y14646D03* Y21949D03* X40079Y4843D03* X40118Y36811D03* X40157Y6299D03* X40197Y30787D03* X40217Y3780D03* X40236Y24705D03* Y24980D03* X40256Y19921D03* X40335Y1299D03* X40354Y8150D03* X40374Y4843D03* X40394Y18189D03* Y21496D03* Y26339D03* X40433Y6299D03* X40472Y11476D03* Y11752D03* Y12106D03* Y12382D03* X40512Y3780D03* X40669Y4843D03* Y34843D03* X40709Y6299D03* X40846Y20630D03* Y21122D03* Y22126D03* Y22618D03* Y27126D03* Y27618D03* X40886Y17126D03* X40906Y35728D03* Y37894D03* X40984Y6299D03* X41043Y5906D03* Y36811D03* X41102Y1299D03* Y18898D03* X41138Y17622D03* Y18122D03* Y18622D03* Y20122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28110D03* Y29122D03* Y29622D03* X41142Y20630D03* Y21122D03* X41201Y17126D03* X41220Y19606D03* Y35728D03* Y36555D03* Y37067D03* Y37894D03* X41240Y34724D03* X41339Y12047D03* Y33425D03* X41417Y1437D03* Y8189D03* X41476Y7657D03* X41634Y2618D03* Y5039D03* Y5315D03* Y12992D03* X41638Y17122D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X41654Y5591D03* Y6024D03* Y8012D03* X41673Y4744D03* Y6378D03* Y8366D03* X41683Y3114D03* Y3504D03* X41693Y1417D03* Y10453D03* Y10925D03* Y12520D03* Y16181D03* X41697Y8787D03* Y9630D03* X41752Y7657D03* X41811Y30787D03* X42079Y11280D03* X42087Y8346D03* Y10039D03* Y12992D03* X42091Y5104D03* Y5945D03* Y6364D03* Y7207D03* Y8787D03* Y9630D03* Y10467D03* Y10890D03* Y11732D03* Y12148D03* Y12571D03* X42106Y2303D03* Y2756D03* Y3114D03* Y3508D03* Y3878D03* Y4685D03* X42138Y17622D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X42165Y35728D03* Y37894D03* X42244Y32992D03* Y33858D03* Y34724D03* X42283Y16181D03* X42402Y15827D03* X42441Y36555D03* Y37067D03* X42480Y7205D03* Y12992D03* Y13406D03* X42484Y5104D03* Y5528D03* Y5945D03* Y6364D03* Y8787D03* Y9207D03* Y9630D03* Y10467D03* Y10890D03* Y11726D03* Y12148D03* Y12571D03* X42500Y8346D03* X42520Y2303D03* Y4331D03* Y4685D03* Y31732D03* X42524Y3114D03* Y3508D03* Y3878D03* X42638Y17122D03* Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X42717Y36811D03* X42835Y32992D03* Y33858D03* X42862Y11280D03* X42878Y5104D03* Y6364D03* Y6785D03* Y7207D03* Y8368D03* Y8787D03* Y9207D03* Y9630D03* Y10047D03* Y10467D03* Y10890D03* Y11732D03* Y12148D03* Y12571D03* Y12988D03* Y13407D03* Y13829D03* X42913Y4685D03* Y34724D03* X42933Y2303D03* X42943Y3508D03* Y3878D03* X42945Y2755D03* X42953Y3110D03* Y4331D03* X42992Y36555D03* Y37067D03* X43110Y35728D03* Y37894D03* X43130Y18622D03* X43138Y17122D03* Y17622D03* Y18122D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X43228Y13839D03* X43248Y12559D03* Y12992D03* Y13406D03* X43268Y6358D03* Y7205D03* Y11693D03* X43272Y5104D03* Y5528D03* Y6785D03* Y8787D03* Y9207D03* Y9630D03* Y10047D03* Y10467D03* Y10890D03* Y12148D03* X43287Y8346D03* X43307Y31732D03* X43346Y2303D03* X43353Y2753D03* X43364Y3114D03* Y3508D03* Y3878D03* X43366Y4331D03* X43386Y32992D03* Y38189D03* X43425Y33858D03* Y34724D03* X43583Y15472D03* X43638Y17122D03* Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X43661Y5098D03* Y8346D03* Y12146D03* X43665Y5528D03* Y5945D03* Y6364D03* Y6785D03* Y9207D03* Y9630D03* Y10047D03* Y10467D03* Y10890D03* Y11307D03* X43681Y7205D03* Y12559D03* Y13012D03* X43701Y13406D03* Y13839D03* X43740Y32638D03* Y32992D03* X43780Y2756D03* Y38189D03* X43787Y3114D03* Y3508D03* Y3878D03* X43791Y4331D03* X43917Y1378D03* X43937Y15118D03* X43957Y1850D03* X44055Y5098D03* Y5945D03* Y7205D03* Y9213D03* Y12146D03* Y35728D03* Y37894D03* X44059Y5524D03* Y6364D03* Y6785D03* Y8368D03* Y8787D03* Y9630D03* Y10888D03* X44094Y13839D03* Y32638D03* Y32992D03* X44134Y17126D03* Y17618D03* Y18130D03* Y19114D03* Y19626D03* Y27618D03* Y28110D03* Y29626D03* Y30118D03* X44138Y18622D03* Y28622D03* Y29122D03* X44173Y3110D03* Y38189D03* X44193Y1378D03* X44252Y1850D03* X44390Y15472D03* Y15886D03* Y16161D03* X44429Y12579D03* X44449Y8799D03* Y22461D03* Y24803D03* Y32638D03* Y32992D03* X44469Y7972D03* X44488Y5079D03* Y5512D03* Y21850D03* Y25394D03* X44528Y10965D03* X44567Y38189D03* X44587Y6161D03* Y6516D03* Y15689D03* X44606Y5886D03* X44624Y3508D03* Y3902D03* Y4295D03* X44638Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* X44646Y3110D03* Y4744D03* Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19114D03* Y19626D03* Y30118D03* X44803Y10965D03* Y32992D03* Y33858D03* Y34724D03* X44862Y7972D03* Y13051D03* Y35630D03* X44868Y11846D03* Y13421D03* X44882Y31732D03* X44921Y6772D03* X44961Y38189D03* X45039Y4823D03* X45047Y3508D03* Y4295D03* X45059Y1378D03* X45077Y9667D03* X45079Y10669D03* X45138Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* X45157Y27618D03* Y28110D03* Y28622D03* Y29114D03* Y29626D03* X45177Y30118D03* X45276Y15512D03* Y16378D03* Y21850D03* Y23031D03* Y25394D03* X45295Y12598D03* X45315Y22441D03* Y24803D03* Y32992D03* Y33858D03* Y34724D03* Y36339D03* Y36614D03* X45354Y38189D03* X45374Y10984D03* X45379Y1851D03* X45400Y10057D03* X45465Y2720D03* Y3114D03* Y3508D03* X45472Y4291D03* X45492Y2327D03* Y8484D03* X45630Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* Y27618D03* Y28110D03* Y28622D03* Y29114D03* Y29626D03* Y30118D03* X45669Y5748D03* Y15512D03* Y16378D03* X45709Y11453D03* Y11846D03* Y13421D03* Y13815D03* X45748Y38189D03* X45768Y10315D03* X45787Y31732D03* X45827Y36339D03* Y36614D03* X45884Y2720D03* Y3114D03* Y3902D03* X45961Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X45984Y4764D03* X46063Y1654D03* Y21850D03* Y25394D03* Y32638D03* X46128Y11453D03* X46138Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* X46142Y17126D03* Y30118D03* Y36339D03* Y36614D03* Y38189D03* X46181Y35984D03* X46299Y13937D03* X46307Y2327D03* Y3114D03* Y3508D03* X46319Y2717D03* Y10965D03* X46378Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X46398Y14783D03* X46417Y32638D03* X46457Y15335D03* Y16181D03* X46496Y35984D03* X46516Y36339D03* Y36654D03* Y36969D03* X46535Y38189D03* X46549Y11453D03* Y12240D03* X46555Y12598D03* Y13051D03* X46634Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* Y27618D03* Y28110D03* Y28622D03* Y29114D03* Y29626D03* Y30118D03* X46724Y3902D03* Y4295D03* X46732Y2697D03* X46772Y32638D03* X46797Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X46811Y35984D03* X46850Y15335D03* Y16181D03* Y21850D03* Y23031D03* Y25394D03* X46929Y5630D03* Y38189D03* X46969Y11476D03* X47126Y3504D03* Y3878D03* Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y28110D03* Y28622D03* Y29626D03* Y30118D03* Y31732D03* Y32638D03* Y35984D03* X47146Y3130D03* Y19134D03* Y19626D03* Y27618D03* Y29114D03* X47205Y22441D03* Y24803D03* X47220Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X47323Y38189D03* X47441Y35984D03* X47638Y1575D03* Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19114D03* Y19626D03* Y21850D03* Y25394D03* Y27618D03* Y28130D03* Y28622D03* Y29114D03* Y29626D03* Y30118D03* X47717Y38189D03* X47756Y35984D03* X47891Y1969D03* X47894Y10827D03* X48031Y15315D03* Y16181D03* Y31732D03* X48057Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X48071Y22441D03* Y24803D03* Y35984D03* X48110Y38189D03* X48130Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19114D03* Y19626D03* Y27618D03* Y28130D03* Y28622D03* Y29114D03* Y29626D03* Y30118D03* X48228Y5118D03* X48305Y4295D03* X48366Y36339D03* Y36654D03* Y36969D03* X48386Y35984D03* X48425Y15315D03* Y16181D03* Y21850D03* Y23031D03* Y25394D03* X48465Y32638D03* Y32992D03* X48480Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X48504Y38189D03* X48551Y11846D03* Y12240D03* Y12634D03* Y13028D03* Y13421D03* Y13815D03* X48642Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19114D03* Y19626D03* Y27618D03* Y28130D03* Y28622D03* Y29114D03* Y29626D03* Y30118D03* X48701Y35984D03* Y36339D03* Y36614D03* X48726Y2720D03* Y3114D03* Y3508D03* X48819Y32638D03* Y32992D03* X48878Y10827D03* X48898Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* Y38189D03* X48957Y12224D03* Y12618D03* X48970Y11453D03* Y11846D03* Y13028D03* Y13421D03* Y13815D03* X49035Y14685D03* X49134Y17126D03* Y30118D03* X49138Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* X49150Y2327D03* Y3902D03* Y4295D03* X49173Y32638D03* Y32992D03* Y33346D03* Y34980D03* X49213Y1575D03* Y15315D03* Y16181D03* Y21850D03* Y25394D03* X49291Y38189D03* X49315Y6197D03* Y6614D03* Y7033D03* Y7457D03* Y8293D03* Y8717D03* Y9134D03* Y9551D03* X49370Y36339D03* Y36614D03* X49390Y13445D03* Y13819D03* X49394Y11453D03* Y11846D03* Y12240D03* Y12634D03* X49488Y15315D03* X49567Y2720D03* Y3114D03* Y3508D03* Y4295D03* X49606Y16181D03* Y31732D03* X49646Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* Y27618D03* Y28130D03* Y28622D03* Y29134D03* Y29626D03* Y30118D03* Y35984D03* X49685Y36339D03* Y36614D03* Y38189D03* X49783Y6280D03* Y6575D03* X49811Y11453D03* Y11846D03* Y12240D03* Y12634D03* Y13012D03* X49826Y14628D03* X49862Y15217D03* X49961Y5354D03* Y22441D03* Y24803D03* Y35984D03* X49986Y1933D03* Y2327D03* Y3902D03* Y4295D03* X50000Y21850D03* Y23031D03* Y25394D03* X50079Y10650D03* Y36339D03* Y36654D03* Y36969D03* Y38189D03* X50138Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* Y27618D03* Y28130D03* Y28622D03* Y29134D03* Y29626D03* Y30118D03* X50230Y12240D03* Y12634D03* Y13028D03* Y13421D03* Y13815D03* X50276Y35984D03* X50407Y2720D03* Y3114D03* Y3508D03* Y3902D03* X50413Y5374D03* X50472Y38189D03* X50512Y31732D03* X50591Y35984D03* X50598Y14638D03* X50638Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* X50650Y12638D03* Y13425D03* Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19134D03* Y19626D03* X50654Y11453D03* Y11846D03* Y12240D03* Y13028D03* Y13815D03* Y11054D03* X50661Y10674D03* X50665Y10235D03* X50689Y9744D03* X50787Y21850D03* Y25394D03* Y32638D03* X50807Y15591D03* X50827Y1929D03* Y22441D03* Y24803D03* X50846Y7362D03* X50866Y38189D03* X50906Y35984D03* X50945Y1457D03* Y8012D03* X50962Y15353D03* X51071Y11846D03* Y13028D03* Y13421D03* Y13815D03* X51102Y11457D03* X51138Y29622D03* Y30122D03* X51142Y17126D03* Y17618D03* Y18130D03* Y18622D03* Y19114D03* Y19626D03* Y20118D03* Y27657D03* Y28130D03* Y28622D03* Y29114D03* Y32638D03* X51181Y6122D03* X51201Y15591D03* X51217Y4441D03* Y8963D03* Y9386D03* Y10222D03* X51220Y4862D03* Y5709D03* Y6969D03* Y35984D03* X51223Y3588D03* X51230Y2772D03* X51239Y10665D03* X51240Y2323D03* Y7362D03* X51260Y38189D03* X51417Y15374D03* X51466Y11443D03* X51490Y13421D03* Y13815D03* X51496Y11831D03* Y12264D03* Y32638D03* X51516Y13031D03* X51519Y14317D03* X51535Y35984D03* X51609Y4435D03* X51610Y3600D03* Y4860D03* Y5701D03* Y6120D03* Y6543D03* Y9386D03* Y9803D03* Y10222D03* X51614Y6969D03* Y7382D03* Y10610D03* Y15669D03* X51634Y19626D03* X51638Y17122D03* Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X51654Y38189D03* X51850Y15827D03* Y31732D03* Y32638D03* Y35984D03* X51890Y36339D03* Y36654D03* Y36969D03* X51909Y11476D03* Y12618D03* Y13051D03* X51911Y13421D03* Y13815D03* X51929Y12264D03* X51969Y4016D03* Y15492D03* X52004Y7383D03* Y4441D03* Y4860D03* Y5283D03* Y5701D03* Y6961D03* Y8963D03* Y9386D03* Y9803D03* Y10222D03* Y11020D03* X52008Y10610D03* X52047Y38189D03* X52138Y17122D03* Y17622D03* Y18122D03* Y18622D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X52146Y15827D03* X52165Y35984D03* X52205Y1358D03* X52244Y36339D03* Y36654D03* Y36969D03* X52323Y11476D03* X52335Y13421D03* Y13815D03* X52343Y12264D03* Y12618D03* Y13051D03* X52362Y1594D03* Y15472D03* X52390Y11028D03* X52393Y2333D03* Y2778D03* X52398Y3179D03* Y4441D03* Y4860D03* Y5283D03* Y6543D03* Y8963D03* Y9386D03* X52402Y4035D03* Y7382D03* Y10217D03* X52404Y1926D03* X52441Y38189D03* X52559Y34213D03* X52618Y22618D03* X52638Y15472D03* Y17122D03* Y17622D03* Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X52752Y13815D03* X52756Y11811D03* Y12264D03* Y12618D03* Y13051D03* Y31732D03* X52776Y11043D03* Y11437D03* X52791Y2760D03* Y3179D03* Y3600D03* Y4441D03* Y4860D03* Y5283D03* Y5701D03* Y6543D03* Y9386D03* Y10222D03* Y10644D03* X52795Y8504D03* Y9803D03* X52815Y15965D03* X52829Y2343D03* X52835Y38189D03* X52854Y15650D03* Y36614D03* X52972Y34213D03* X53012Y36339D03* X53071Y19622D03* X53091Y15965D03* X53138Y17122D03* Y17622D03* Y19122D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25122D03* Y25622D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* Y30122D03* X53169Y8524D03* Y12618D03* Y36614D03* X53170Y6149D03* X53171Y13421D03* Y13815D03* X53173Y1933D03* X53176Y35224D03* X53185Y3600D03* Y4024D03* Y4441D03* Y5283D03* Y5701D03* Y6543D03* Y6961D03* Y9386D03* Y9803D03* Y10222D03* X53189Y2756D03* Y4882D03* Y10650D03* Y11831D03* Y12264D03* Y13051D03* Y14961D03* X53228Y38189D03* X53327Y36339D03* X53386Y32874D03* X53445Y14665D03* X53484Y36614D03* X53579Y2343D03* Y3179D03* Y3600D03* Y4441D03* Y6961D03* Y10222D03* X53583Y10650D03* X53593Y13421D03* Y13815D03* X53602Y13051D03* X53622Y17717D03* Y33150D03* Y38189D03* X53638Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y21622D03* Y22122D03* Y22622D03* Y23122D03* Y24122D03* Y24622D03* Y25622D03* Y26122D03* Y26622D03* Y27122D03* Y27622D03* Y28122D03* Y28622D03* Y29122D03* Y29622D03* X53642Y12264D03* Y30118D03* X53661Y10925D03* X53720Y11339D03* Y11831D03* X53858Y1181D03* X53902Y35060D03* X53911Y33834D03* X53957Y9173D03* X53976Y10236D03* Y11201D03* X53996Y11831D03* X54016Y38189D03* X54094Y1457D03* Y12776D03* Y21614D03* Y25630D03* Y26102D03* X54114Y33505D03* Y36535D03* X54138Y18122D03* Y18622D03* Y19122D03* Y19622D03* Y20122D03* Y20622D03* Y21122D03* Y22122D03* Y23622D03* Y24122D03* Y24622D03* Y25122D03* Y26622D03* Y28122D03* Y28622D03* X54154Y22520D03* Y29122D03* X54232Y7008D03* Y7283D03* X54350Y12185D03* X54370Y13150D03* X54409Y38189D03* X54469Y9213D03* X54507Y33522D03* X54508Y6772D03* X54567Y4370D03* X54626Y3386D03* Y28622D03* X54685Y12165D03* Y29291D03* X54705Y10453D03* X54744Y13012D03* X54783Y6772D03* X54803Y16654D03* X54862Y3622D03* X54882Y25591D03* X54944Y7733D03* X54980Y11870D03* X55039Y16890D03* X55059Y5335D03* X55118Y29272D03* X55177Y13130D03* X55256Y6417D03* Y30492D03* X55276Y29528D03* X55298Y7733D03* X55335Y11890D03* X55365Y32518D03* X55383Y32794D03* X55412Y33509D03* X55453Y13130D03* X55512Y15020D03* X55551Y6772D03* X55630Y26280D03* Y26673D03* Y27067D03* Y27461D03* Y27854D03* X55689Y28839D03* X55709Y31398D03* X55748Y5315D03* X55768Y14508D03* X55827Y13091D03* X55846Y6772D03* X55886Y16870D03* Y17185D03* Y17756D03* Y18091D03* Y22559D03* X55906Y20650D03* X55929Y33513D03* Y33789D03* Y34055D03* Y34331D03* Y34606D03* X55931Y34879D03* X55945Y5728D03* Y6083D03* Y14016D03* X56004Y36378D03* X56083Y23524D03* X56102Y12402D03* Y30000D03* Y30472D03* X56142Y5531D03* X56161Y7343D03* Y22815D03* X56201Y14252D03* Y30906D03* X56220Y7047D03* X56260Y9508D03* Y10591D03* Y31220D03* Y31614D03* Y36634D03* X56280Y4921D03* Y38071D03* X56328Y33236D03* X56339Y2854D03* Y7559D03* Y11043D03* Y21024D03* Y22598D03* Y24213D03* Y25295D03* Y25807D03* Y26102D03* Y32638D03* Y35827D03* X56358Y3248D03* X56378Y6004D03* Y7835D03* Y8150D03* Y13543D03* Y18543D03* Y20689D03* X56398Y3780D03* X56437Y5531D03* X56457Y15000D03* Y25020D03* Y31417D03* X56476Y10768D03* Y11299D03* Y25551D03* Y26575D03* Y26949D03* Y27224D03* Y28130D03* Y28406D03* Y28720D03* Y29429D03* Y29705D03* Y30217D03* Y30492D03* Y30925D03* X56496Y1358D03* Y2185D03* X56555Y13051D03* X56575Y19724D03* X56594Y3051D03* Y7303D03* Y36693D03* X56614Y3445D03* Y7618D03* Y8917D03* Y9272D03* Y9685D03* Y15472D03* Y15984D03* Y20531D03* Y24587D03* Y32697D03* X56633Y20249D03* X56634Y5118D03* Y13780D03* Y32972D03* X56654Y2441D03* Y4528D03* Y6398D03* Y8524D03* Y18661D03* X56693Y25984D03* Y34370D03* X56713Y24291D03* X56732Y33819D03* X56850Y25000D03* X56909Y4232D03* Y16260D03* X57087Y13937D03* X57126Y15000D03* X57224Y9921D03* X57480Y3661D03* Y36929D03* X57500Y18602D03* Y19764D03* X57520Y2362D03* Y8445D03* Y12677D03* X57539Y8917D03* Y11673D03* Y12185D03* X57548Y21030D03* X57549Y20495D03* X57551Y20228D03* Y20764D03* X57559Y21752D03* Y22146D03* Y22638D03* Y25020D03* Y28091D03* Y28366D03* Y28858D03* Y29429D03* Y29705D03* Y30217D03* Y30492D03* Y31909D03* Y32185D03* Y32697D03* Y32972D03* X57571Y27283D03* X57574Y26890D03* X57579Y5118D03* Y24390D03* Y25354D03* Y25669D03* Y25945D03* Y30945D03* Y31240D03* Y26498D03* X57598Y7500D03* Y34685D03* Y34980D03* X57638Y33819D03* X57677Y34154D03* X57726Y18940D03* X57736Y23209D03* X57756Y28583D03* X57776Y32421D03* X57795Y21949D03* X57815Y29862D03* G54D25* X6693Y9075D03* Y9429D03* Y14193D03* Y14547D03* Y15374D03* Y15728D03* X7283Y9075D03* Y9429D03* Y9862D03* Y10217D03* X7480Y13799D03* Y14154D03* Y14783D03* Y15138D03* Y15768D03* Y16122D03* X7520Y16752D03* Y17106D03* X9055Y15177D03* Y15531D03* X10433Y21673D03* Y22028D03* X13602Y24114D03* Y24370D03* Y24626D03* X14350Y24114D03* Y24370D03* Y24626D03* X14764Y9862D03* Y10217D03* X15768Y24114D03* Y24370D03* Y24626D03* X16516Y24114D03* Y24370D03* Y24626D03* X17323Y6713D03* Y7067D03* Y7500D03* Y7854D03* Y9469D03* Y9823D03* X17520Y4941D03* Y5295D03* Y5728D03* Y6083D03* Y10846D03* Y11201D03* X17933Y24154D03* Y24409D03* Y24665D03* X18681Y24154D03* Y24409D03* Y24665D03* X21142Y20295D03* Y20650D03* Y22736D03* Y23091D03* X24606Y20098D03* Y20453D03* X25000Y2657D03* Y3012D03* X27165Y19902D03* Y20256D03* X27953Y18445D03* Y18799D03* Y19902D03* Y20256D03* X28346Y18445D03* Y18799D03* Y19902D03* Y20256D03* X28740Y18445D03* Y18799D03* X29921Y18563D03* Y18917D03* X30335Y18366D03* Y18622D03* Y18878D03* X30906Y19508D03* Y19862D03* X31083Y18366D03* Y18622D03* Y18878D03* X31496Y18445D03* Y18799D03* X31693Y22067D03* Y22421D03* Y23051D03* Y23406D03* X31890Y18445D03* Y18799D03* X32087Y4350D03* Y4705D03* X33071Y17343D03* Y17697D03* X33465Y17343D03* Y17697D03* X35039Y17146D03* Y17500D03* X35236Y35650D03* Y36004D03* Y36437D03* Y36791D03* Y37421D03* Y37776D03* X35827Y30925D03* Y31280D03* X39764Y29744D03* Y30098D03* X40472Y17343D03* Y17697D03* X41063Y11713D03* Y12067D03* X49016Y35256D03* Y35610D03* Y36043D03* Y36398D03* Y36831D03* Y37185D03* X52559Y35256D03* Y35610D03* Y36043D03* Y36398D03* Y36831D03* Y37185D03* X53543Y33484D03* Y33839D03* X54449Y12421D03* Y12776D03* Y13406D03* Y13760D03* X55630Y33996D03* Y34350D03* Y34783D03* Y35138D03* X55827Y32382D03* Y32736D03* X56102Y3563D03* Y3917D03* X56299Y34665D03* Y35020D03* G54D26* X4016Y28465D03* Y29016D03* Y29646D03* Y30197D03* X4528Y28465D03* Y29016D03* Y29646D03* Y30197D03* X5394Y26693D03* Y27244D03* X5512Y32205D03* Y32756D03* X5906Y26693D03* Y27244D03* X6024Y32205D03* Y32756D03* X30315Y19606D03* Y20157D03* X32087Y3268D03* Y3819D03* X55315Y26299D03* Y26850D03* Y27283D03* Y27835D03* G54D27* X34360Y6140D03* Y6640D03* Y7140D03* Y7640D03* X36506Y8305D03* Y8805D03* Y9305D03* Y9805D03* G54D28* X35433Y6890D03* G54D29* X3976Y30709D03* X4055Y27953D03* X4528Y30709D03* X4606Y27953D03* X5039Y1575D03* Y17717D03* Y21260D03* X5433Y26181D03* Y33465D03* X5591Y1575D03* Y17717D03* Y21260D03* X5984Y26181D03* Y33465D03* X7795Y8465D03* X8346D03* X8976Y8543D03* Y9055D03* X9528Y8543D03* Y9055D03* X10354Y1772D03* X10551Y8858D03* X10906Y1772D03* X11102Y8858D03* X26299Y17717D03* X26850D03* X29055Y1890D03* X29606D03* X30630Y2047D03* X31181D03* X32795Y8661D03* Y9252D03* X33346Y8661D03* Y9252D03* X42047Y1378D03* X42244Y14370D03* X42598Y1378D03* X42795Y14370D03* X48346D03* X48898D03* X51299Y1378D03* X51850D03* X52874Y34843D03* X53425D03* G54D30* X7283Y27559D03* Y33465D03* G54D31* X7972Y25945D03* Y31850D03* X8091Y29173D03* Y35079D03* X8209Y25945D03* Y31850D03* X8327Y29173D03* Y35079D03* X8445Y25945D03* Y31850D03* X8563Y29173D03* Y35079D03* X8681Y25945D03* Y31850D03* X8799Y29173D03* Y35079D03* X8917Y25945D03* Y31850D03* X9035Y29173D03* Y35079D03* X9154Y25945D03* Y31850D03* X9272Y29173D03* Y35079D03* X9390Y25945D03* Y31850D03* X9508Y29173D03* Y35079D03* X9626Y25945D03* Y31850D03* X9744Y29173D03* Y35079D03* X9862Y25945D03* Y31850D03* X9980Y29173D03* Y35079D03* X10098Y25945D03* Y31850D03* X10217Y29173D03* Y35079D03* X10335Y25945D03* Y31850D03* X10453Y29173D03* Y35079D03* X10571Y25945D03* Y31850D03* X10689Y29173D03* Y35079D03* X10807Y25945D03* Y31850D03* X10925Y29173D03* Y35079D03* X11043Y25945D03* Y31850D03* X11161Y29173D03* Y35079D03* X11280Y25945D03* Y31850D03* X11398Y29173D03* Y35079D03* X11516Y25945D03* Y31850D03* X11634Y29173D03* Y35079D03* X11752Y25945D03* Y31850D03* X11870Y29173D03* Y35079D03* X11988Y25945D03* Y31850D03* X12106Y29173D03* Y35079D03* X12224Y25945D03* Y31850D03* X12343Y29173D03* Y35079D03* X12461Y25945D03* Y31850D03* X12579Y29173D03* Y35079D03* X14114Y25945D03* Y31850D03* X14232Y29173D03* Y35079D03* X14350Y25945D03* Y31850D03* X14469Y29173D03* Y35079D03* X14587Y25945D03* Y31850D03* X14705Y29173D03* Y35079D03* X14823Y25945D03* Y31850D03* X14941Y29173D03* Y35079D03* X15059Y25945D03* Y31850D03* X15177Y29173D03* Y35079D03* X15295Y25945D03* Y31850D03* X15413Y29173D03* Y35079D03* X15531Y25945D03* Y31850D03* X15650Y29173D03* Y35079D03* X15768Y25945D03* Y31850D03* X15886Y29173D03* Y35079D03* X16004Y25945D03* Y31850D03* X16122Y29173D03* Y35079D03* X16240Y25945D03* Y31850D03* X16358Y29173D03* Y35079D03* X16476Y25945D03* Y31850D03* X16594Y29173D03* Y35079D03* X16713Y25945D03* Y31850D03* X16831Y29173D03* Y35079D03* X16949Y25945D03* Y31850D03* X17067Y29173D03* Y35079D03* X17185Y25945D03* Y31850D03* X17303Y29173D03* Y35079D03* X17421Y25945D03* Y31850D03* X17539Y29173D03* Y35079D03* X17657Y25945D03* Y31850D03* X17776Y29173D03* Y35079D03* X17894Y25945D03* Y31850D03* X18012Y29173D03* Y35079D03* X18130Y25945D03* Y31850D03* X18248Y29173D03* Y35079D03* X18366Y25945D03* Y31850D03* X18484Y29173D03* Y35079D03* X18602Y25945D03* Y31850D03* X18720Y29173D03* Y35079D03* X18839Y25945D03* Y31850D03* X18957Y29173D03* Y35079D03* X19075Y25945D03* Y31850D03* X19193Y29173D03* Y35079D03* X19311Y25945D03* Y31850D03* X19429Y29173D03* Y35079D03* X19547Y25945D03* Y31850D03* X19665Y29173D03* Y35079D03* X19783Y25945D03* Y31850D03* X19902Y29173D03* Y35079D03* X20020Y25945D03* Y31850D03* X20138Y29173D03* Y35079D03* X20256Y25945D03* Y31850D03* X20374Y29173D03* Y35079D03* X20492Y25945D03* Y31850D03* X20610Y29173D03* Y35079D03* X20728Y25945D03* Y31850D03* X20846Y29173D03* Y35079D03* X20965Y25945D03* Y31850D03* X21083Y29173D03* Y35079D03* X21201Y25945D03* Y31850D03* X21319Y29173D03* Y35079D03* X21437Y25945D03* Y31850D03* X21555Y29173D03* Y35079D03* X21673Y25945D03* Y31850D03* X21791Y29173D03* Y35079D03* X21909Y25945D03* Y31850D03* X22028Y29173D03* Y35079D03* X22146Y25945D03* Y31850D03* X22264Y29173D03* Y35079D03* X22382Y25945D03* Y31850D03* X22500Y29173D03* Y35079D03* X22618Y25945D03* Y31850D03* X22736Y29173D03* Y35079D03* X22854Y25945D03* Y31850D03* X22972Y29173D03* Y35079D03* X23091Y25945D03* Y31850D03* X23209Y29173D03* Y35079D03* X23327Y25945D03* Y31850D03* X23445Y29173D03* Y35079D03* X23563Y25945D03* Y31850D03* X23681Y29173D03* Y35079D03* X23799Y25945D03* Y31850D03* X23917Y29173D03* Y35079D03* X24035Y25945D03* Y31850D03* X24154Y29173D03* Y35079D03* X24272Y25945D03* Y31850D03* X24390Y29173D03* Y35079D03* X24508Y25945D03* Y31850D03* X24626Y29173D03* Y35079D03* X24744Y25945D03* Y31850D03* X24862Y29173D03* Y35079D03* X24980Y25945D03* Y31850D03* X25098Y29173D03* Y35079D03* X25217Y25945D03* Y31850D03* X25335Y29173D03* Y35079D03* X25453Y25945D03* Y31850D03* X25571Y29173D03* Y35079D03* X25689Y25945D03* Y31850D03* X25807Y29173D03* Y35079D03* X25925Y25945D03* Y31850D03* X26043Y29173D03* Y35079D03* X26161Y25945D03* Y31850D03* X26280Y29173D03* Y35079D03* X26398Y25945D03* Y31850D03* X26516Y29173D03* Y35079D03* X26634Y25945D03* Y31850D03* X26752Y29173D03* Y35079D03* X26870Y25945D03* Y31850D03* X26988Y29173D03* Y35079D03* X27106Y25945D03* Y31850D03* X27224Y29173D03* Y35079D03* X27343Y25945D03* Y31850D03* X27461Y29173D03* Y35079D03* X27579Y25945D03* Y31850D03* X27697Y29173D03* Y35079D03* X27815Y25945D03* Y31850D03* X27933Y29173D03* Y35079D03* X28051Y25945D03* Y31850D03* X28169Y29173D03* Y35079D03* X28287Y25945D03* Y31850D03* X28406Y29173D03* Y35079D03* X28524Y25945D03* Y31850D03* X28642Y29173D03* Y35079D03* X28760Y25945D03* Y31850D03* X28878Y29173D03* Y35079D03* X28996Y25945D03* Y31850D03* X29114Y29173D03* Y35079D03* X29232Y25945D03* Y31850D03* X29350Y29173D03* Y35079D03* X29469Y25945D03* Y31850D03* X29587Y29173D03* Y35079D03* X29705Y25945D03* Y31850D03* X29823Y29173D03* Y35079D03* X29941Y25945D03* Y31850D03* X30059Y29173D03* Y35079D03* X30177Y25945D03* Y31850D03* X30295Y29173D03* Y35079D03* X30413Y25945D03* Y31850D03* X30531Y29173D03* Y35079D03* X30650Y25945D03* Y31850D03* X30768Y29173D03* Y35079D03* X30886Y25945D03* Y31850D03* X31004Y29173D03* Y35079D03* X31122Y25945D03* Y31850D03* X31240Y29173D03* Y35079D03* X31358Y25945D03* Y31850D03* X31476Y29173D03* Y35079D03* X31594Y25945D03* Y31850D03* X31713Y29173D03* Y35079D03* X31831Y25945D03* Y31850D03* X31949Y29173D03* Y35079D03* X32067Y25945D03* Y31850D03* X32185Y29173D03* Y35079D03* X32303Y25945D03* Y31850D03* X32421Y29173D03* Y35079D03* X32539Y25945D03* Y31850D03* X32657Y29173D03* Y35079D03* X32776Y25945D03* Y31850D03* X32894Y29173D03* Y35079D03* G54D32* X14577Y19154D03* Y19823D03* X14833Y19154D03* Y19823D03* X15089Y19154D03* Y19823D03* X15344Y19154D03* Y19823D03* X50059Y14961D03* X50335D03* G54D33* X12205Y9449D03* Y10236D03* X13189Y9449D03* Y10236D03* X14055Y6299D03* Y7087D03* X16929Y5315D03* Y6102D03* X17323Y8268D03* Y9055D03* X25787Y20866D03* Y21654D03* X27717Y1378D03* Y2165D03* X34961Y4724D03* Y5512D03* X35039Y30906D03* Y31693D03* X35827Y16142D03* Y16929D03* X36024Y4724D03* Y5512D03* X36614Y16142D03* Y16929D03* X37402Y16142D03* Y16929D03* X38110Y2953D03* Y3740D03* X38976Y2953D03* Y3740D03* X39961Y16929D03* Y17717D03* X40945Y12992D03* Y13780D03* X54213Y3228D03* Y4016D03* Y5000D03* Y5787D03* G54D34* X7480Y1614D03* X8268D03* X12598D03* X13386D03* X16142Y10630D03* X16929D03* X20079Y18661D03* X20866D03* X21457D03* X22244D03* X25787Y20079D03* X26181Y18661D03* Y19370D03* X26575Y20079D03* X26969Y18661D03* Y19370D03* X39921Y1890D03* X40709D03* X43425Y14528D03* X44213D03* X56496Y1772D03* X57283D03* G54D35* X4921Y36614D03* X6496D03* X14665Y10827D03* G54D36* X4921Y37614D03* X6496D03* X6594Y10827D03* G54D37* X35630Y26024D03* Y27126D03* X36024Y33701D03* Y34803D03* G54D38* X4173Y35039D03* X4764Y25197D03* X5276Y35039D03* X5866Y25197D03* X54646Y7244D03* X55748D03* X56299Y17008D03* Y17913D03* X57402Y17008D03* Y17913D03* G54D39* X11051Y37205D03* X20051D03* X25224D03* X34224D03* G54D40* X15945Y1929D03* Y4370D03* Y7047D03* Y9488D03* X16535Y11772D03* Y14213D03* X22008Y1969D03* X24449D03* X32874Y14055D03* X33071Y5276D03* Y7717D03* X35315Y14055D03* X36772D03* X37008Y23976D03* Y26417D03* X38976Y23976D03* Y26417D03* X39213Y14055D03* X40354Y3110D03* Y5551D03* Y7047D03* Y9488D03* X44094Y31850D03* Y34291D03* X46457Y31850D03* Y34291D03* X48819Y31850D03* Y34291D03* X51181Y31850D03* Y34291D03* G54D41* X7598Y8150D03* X40669Y30591D03* G54D42* X13661Y2087D03* X54606Y16654D03* G54D43* X41388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X41888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X42388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X42888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X43388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X43888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X44388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X44888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X45388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X45888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X46388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X46888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X47388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X47888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X48388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X48888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X49388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X49888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X50388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X50888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X51388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X51888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X52388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X52888Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X53388Y17372D03* Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* X53888Y17872D03* Y18372D03* Y18872D03* Y19372D03* Y19872D03* Y20372D03* Y20872D03* Y21372D03* Y21872D03* Y22372D03* Y22872D03* Y23372D03* Y23872D03* Y24372D03* Y24872D03* Y25372D03* Y25872D03* Y26372D03* Y26872D03* Y27372D03* Y27872D03* Y28372D03* Y28872D03* Y29372D03* Y29872D03* G54D44* X3937Y2953D03* X62402Y1575D03* Y21260D03* G54D45* X3937Y1969D03* Y2461D03* X58465Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y10236D03* Y11024D03* Y11811D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X59252Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X60039Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X60827Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X61614Y1575D03* Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y21260D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* X62402Y2362D03* Y3150D03* Y3937D03* Y4724D03* Y5512D03* Y6299D03* Y7087D03* Y7874D03* Y8661D03* Y9449D03* Y12598D03* Y13386D03* Y14173D03* Y14961D03* Y15748D03* Y16535D03* Y17323D03* Y18110D03* Y18898D03* Y19685D03* Y20472D03* Y22047D03* Y22835D03* Y23622D03* Y24409D03* Y25197D03* Y25984D03* Y26772D03* Y27559D03* Y28346D03* Y29134D03* Y29921D03* Y30709D03* Y31496D03* Y32283D03* Y33071D03* Y33858D03* Y34646D03* Y35433D03* Y36220D03* Y37008D03* Y37795D03* G54D46* X61614Y11024D03* G54D47* X36654Y30089D03* Y30344D03* Y30600D03* Y30856D03* Y31112D03* Y31368D03* Y31624D03* Y31880D03* Y32136D03* Y32392D03* Y32648D03* Y32904D03* X38937Y30089D03* Y30344D03* Y30600D03* Y30856D03* Y31112D03* Y31368D03* Y31624D03* Y31880D03* Y32136D03* Y32392D03* Y32648D03* Y32904D03* G54D48* X5315Y18701D03* Y19882D03* Y22244D03* Y23425D03* X14370Y7874D03* Y9055D03* X55906Y19094D03* Y20276D03* G54D49* X55531Y21752D03* Y21949D03* Y22146D03* Y22343D03* X55886Y21752D03* Y21949D03* Y22146D03* Y22343D03* X56909Y2854D03* Y3051D03* Y3248D03* Y3445D03* Y5610D03* Y5807D03* Y6004D03* Y6201D03* Y6594D03* Y6791D03* Y6988D03* Y7185D03* Y9114D03* Y9311D03* Y9508D03* Y9705D03* Y10571D03* Y10768D03* Y10965D03* Y11161D03* Y12933D03* Y13130D03* Y13327D03* Y13524D03* Y14193D03* Y14390D03* Y14587D03* Y14783D03* Y15453D03* Y15650D03* Y15846D03* Y16043D03* Y20335D03* Y20531D03* Y20728D03* Y20925D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y25217D03* Y25413D03* Y25610D03* Y25807D03* Y28130D03* Y28327D03* Y28524D03* Y28720D03* X57264Y2854D03* Y3051D03* Y3248D03* Y3445D03* Y5610D03* Y5807D03* Y6004D03* Y6201D03* Y6594D03* Y6791D03* Y6988D03* Y7185D03* Y9114D03* Y9311D03* Y9508D03* Y9705D03* Y10571D03* Y10768D03* Y10965D03* Y11161D03* Y12933D03* Y13130D03* Y13327D03* Y13524D03* Y14193D03* Y14390D03* Y14587D03* Y14783D03* Y15453D03* Y15650D03* Y15846D03* Y16043D03* Y20335D03* Y20531D03* Y20728D03* Y20925D03* Y21752D03* Y21949D03* Y22146D03* Y22343D03* Y25217D03* Y25413D03* Y25610D03* Y25807D03* Y28130D03* Y28327D03* Y28524D03* Y28720D03* G54D50* X11693Y9370D03* X31772Y3268D03* G54D51* X7598Y13465D03* X17835Y17205D03* G54D52* X18208Y3641D03* Y3961D03* Y4281D03* Y4596D03* Y15886D03* Y16201D03* Y16516D03* Y16831D03* X18523Y3641D03* Y3961D03* Y4281D03* Y16201D03* Y16516D03* Y16831D03* X18803Y16051D03* X18838Y3641D03* Y3961D03* Y16516D03* Y16831D03* X19008Y4231D03* X19023Y15811D03* X19048Y14851D03* Y15171D03* Y15491D03* X19058Y5611D03* X19078Y4981D03* Y5296D03* X19138Y9601D03* X19153Y3641D03* Y16831D03* X19158Y10331D03* X19178Y6641D03* Y7621D03* Y8611D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X19213Y4481D03* X19303Y14486D03* X19308Y15671D03* X19363Y14851D03* X19368Y4781D03* Y5931D03* Y6911D03* Y7901D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* X19378Y5601D03* X19538Y15951D03* X19548Y4521D03* X19558Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10331D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X19678Y14851D03* X19738Y7901D03* Y11591D03* X19748Y5611D03* Y5931D03* Y6911D03* Y8881D03* Y9871D03* Y10601D03* Y12581D03* Y13561D03* X19758Y14536D03* X19858Y15906D03* X19878Y4581D03* X19888Y5321D03* Y15141D03* X19908Y7621D03* Y11861D03* X19918Y12851D03* X19938Y6641D03* Y8611D03* Y9601D03* Y10871D03* Y13831D03* Y14261D03* X19948Y10331D03* X20108Y9871D03* X20118Y5931D03* Y6911D03* Y7901D03* Y8881D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* Y14541D03* X20148Y14921D03* X20168Y15596D03* X20178Y4801D03* Y5191D03* Y15281D03* Y15911D03* X20188Y4481D03* X20298Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10331D03* Y11861D03* Y13831D03* X20318Y12851D03* X20328Y10871D03* X20458Y6191D03* X20468Y6911D03* Y7901D03* Y8881D03* Y9871D03* Y11591D03* Y12571D03* Y13561D03* Y14291D03* X20493Y10601D03* X20498Y4801D03* Y5191D03* Y5551D03* Y14921D03* Y15291D03* Y15681D03* X20643Y8611D03* X20648Y6641D03* Y7621D03* Y9601D03* Y11861D03* Y12851D03* Y13831D03* X20658Y10331D03* Y10871D03* X20758Y5881D03* Y14571D03* X20768Y5371D03* X20798Y7901D03* X20818Y8881D03* X20828Y6911D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* X20858Y6391D03* X20983Y8611D03* X20998Y7621D03* Y9601D03* Y10331D03* Y10871D03* Y11861D03* Y12851D03* X21018Y13871D03* X21168Y11591D03* X21178Y6911D03* Y8881D03* Y9871D03* Y10601D03* Y12581D03* Y13581D03* X21198Y7901D03* X21208Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* Y15861D03* X21338Y11861D03* X21358Y10331D03* Y10871D03* Y12851D03* X21373Y8611D03* X21388Y7621D03* Y9601D03* X21438Y13391D03* X21468Y16051D03* X21478Y4421D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* X21498Y6911D03* X21538Y7901D03* Y8881D03* Y10601D03* Y12581D03* X21558Y9871D03* Y11591D03* X21708Y7621D03* Y10871D03* Y12851D03* X21718Y13661D03* X21728Y9601D03* Y11861D03* X21738Y8611D03* X21748Y10331D03* X21758Y13311D03* X21878Y7221D03* X21888Y12581D03* X21898Y11176D03* Y11591D03* X21908Y8881D03* Y9871D03* X21918Y8331D03* Y9291D03* Y10601D03* X21928Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* X21938Y13891D03* X22033Y7771D03* X22148Y13071D03* X22158Y13661D03* X22188Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* Y15501D03* Y15861D03* X22198Y14751D03* X22241Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X22413Y12711D03* X22423Y7771D03* Y16071D03* X22448Y15681D03* X22458Y4421D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6611D03* Y6971D03* Y7321D03* Y13181D03* Y13501D03* Y13861D03* Y14211D03* Y14571D03* Y15291D03* X22468Y14931D03* X22607Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X22728Y15531D03* X22738Y16071D03* X22773Y12711D03* X22793Y7771D03* X22948Y12976D03* X22973Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X23143Y12711D03* X23153Y7771D03* X23178Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* Y13321D03* Y13691D03* Y14041D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* X23188Y15861D03* X23339Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X23448Y4441D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6621D03* Y6971D03* Y7321D03* Y13151D03* Y13501D03* Y13861D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* Y16051D03* X23503Y12711D03* X23523Y7771D03* X23705Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X23738Y12996D03* X23873Y12711D03* X23883Y7771D03* X23888Y15291D03* Y15681D03* Y16051D03* X23893Y13506D03* X23933Y7396D03* X24071Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X24158Y13016D03* Y13331D03* Y13691D03* Y14041D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* Y15861D03* X24168Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* X24243Y12711D03* X24253Y7771D03* X24437Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X24438Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6611D03* Y6971D03* Y7321D03* Y13861D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* Y16041D03* X24443Y13151D03* X24613Y12711D03* X24623Y7771D03* X24708Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* X24803Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X24898Y13331D03* Y13681D03* Y14041D03* Y14391D03* Y14741D03* Y15101D03* Y15481D03* Y15861D03* X24983Y7771D03* Y12711D03* X25158Y13151D03* X25168Y4431D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6611D03* Y6971D03* Y7321D03* Y13501D03* Y13861D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* X25169Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X25343Y12711D03* X25353Y7771D03* X25438Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* X25448Y13691D03* Y14041D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* Y15861D03* X25458Y13041D03* Y13366D03* X25535Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X25723Y7771D03* Y12711D03* X25901Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X26083Y7771D03* X26093Y12711D03* X26158Y4446D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6611D03* Y6971D03* Y7321D03* Y13141D03* Y13501D03* Y13861D03* Y14921D03* Y15681D03* Y16031D03* X26267Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X26428Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y7141D03* Y14041D03* X26438Y13341D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* Y15861D03* X26453Y7771D03* X26458Y13026D03* X26463Y12711D03* X26633Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X26698Y13861D03* Y14211D03* Y14571D03* Y15291D03* Y15681D03* X26718Y13501D03* X26728Y16051D03* X26813Y7771D03* X26833Y12711D03* X26848Y13041D03* X26978Y7321D03* X26999Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X27148Y4421D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y6611D03* Y6971D03* Y13151D03* Y13501D03* Y13861D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* Y16051D03* X27183Y7771D03* X27193Y12711D03* X27365Y8031D03* Y8346D03* Y8661D03* Y8976D03* Y9291D03* Y9606D03* Y9921D03* Y10236D03* Y10551D03* Y10866D03* Y11181D03* Y11496D03* Y11811D03* Y12126D03* Y12441D03* X27418Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y6431D03* Y6791D03* Y13321D03* Y13691D03* Y14041D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* Y15861D03* X27568Y13041D03* X27718Y7241D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12121D03* X27748Y12561D03* X27896Y6591D03* X27898Y6971D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y12851D03* X27908Y11861D03* X28068Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11589D03* Y12581D03* X28098Y13571D03* X28128Y4431D03* Y4801D03* Y5181D03* Y5551D03* Y5901D03* Y6261D03* Y14211D03* Y14571D03* Y14921D03* Y15291D03* Y15681D03* X28168Y7151D03* X28248Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y12851D03* Y13291D03* X28258Y11861D03* X28398Y4611D03* Y4991D03* Y5371D03* Y5731D03* Y6081D03* Y14391D03* Y14751D03* Y15111D03* Y15481D03* X28428Y6891D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* X28438Y13561D03* X28568Y15761D03* X28588Y6601D03* X28608Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13291D03* X28658Y15291D03* X28758Y14081D03* X28778Y6911D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* X28828Y5881D03* X28848Y14571D03* X28958Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X29108Y4801D03* Y5181D03* Y5551D03* Y14931D03* Y15291D03* Y15681D03* X29138Y6181D03* Y6911D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* X29178Y14281D03* X29308Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X29398Y15991D03* X29428Y4491D03* Y5181D03* Y15291D03* Y15671D03* X29438Y4811D03* X29458Y5551D03* X29483Y5936D03* X29488Y6911D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* Y14541D03* X29588Y15011D03* X29668Y6211D03* Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X29718Y15911D03* X29738Y5311D03* X29748Y4566D03* X29858Y6911D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* Y14541D03* X29863Y5621D03* Y5936D03* X29868Y14861D03* X30048Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X30068Y15961D03* X30078Y4511D03* X30228Y14871D03* X30238Y6911D03* Y7891D03* Y8881D03* Y9871D03* Y10601D03* Y11591D03* Y12581D03* Y13561D03* Y14531D03* X30243Y5621D03* Y5936D03* X30248Y15701D03* X30298Y4791D03* X30378Y16021D03* X30428Y6641D03* Y7621D03* Y8611D03* Y9601D03* Y10141D03* Y10871D03* Y11861D03* Y12851D03* Y13831D03* X30453Y3641D03* Y16831D03* X30528Y15181D03* Y15501D03* X30548Y14851D03* X30558Y4981D03* Y5301D03* Y5621D03* X30588Y4646D03* X30618Y13561D03* X30628Y16221D03* X30768Y3641D03* Y3961D03* Y16516D03* Y16831D03* X30788Y4401D03* X31083Y3961D03* Y4281D03* Y16201D03* Y16516D03* Y16831D03* X31398Y4281D03* Y4596D03* Y15886D03* Y16201D03* Y16516D03* Y16831D03* G54D53* X33465Y10472D03* Y12756D03* X36260Y10472D03* Y12756D03* X36654Y20512D03* Y22795D03* X39055Y10472D03* Y12756D03* X47441Y35276D03* Y37559D03* X50984Y35276D03* Y37559D03* G54D54* X11051Y37205D03* X20051D03* X25224D03* X34224D03* G54D55* X10801Y36467D03* Y37943D03* X11301Y36467D03* Y37943D03* X11801Y36467D03* Y37943D03* X12301Y36467D03* Y37943D03* X12801Y36467D03* Y37943D03* X13301Y36467D03* Y37943D03* X13801Y36467D03* Y37943D03* X14301Y36467D03* Y37943D03* X14801Y36467D03* Y37943D03* X15301Y36467D03* Y37943D03* X15801Y36467D03* Y37943D03* X16301Y36467D03* Y37943D03* X16801Y36467D03* Y37943D03* X17301Y36465D03* Y37945D03* X17801Y36465D03* Y37945D03* X18301Y36465D03* Y37945D03* X18801Y36465D03* Y37945D03* X19301Y36465D03* Y37945D03* X19801Y36465D03* Y37945D03* X20301Y36465D03* Y37945D03* X24974Y36467D03* Y37943D03* X25474Y36467D03* Y37943D03* X25974Y36467D03* Y37943D03* X26474Y36467D03* Y37943D03* X26974Y36467D03* Y37943D03* X27474Y36467D03* Y37943D03* X27974Y36467D03* Y37943D03* X28474Y36467D03* Y37943D03* X28974Y36467D03* Y37943D03* X29474Y36467D03* Y37943D03* X29974Y36467D03* Y37943D03* X30474Y36467D03* Y37943D03* X30974Y36467D03* Y37943D03* X31474Y36465D03* Y37945D03* X31974Y36465D03* Y37945D03* X32474Y36465D03* Y37945D03* X32974Y36465D03* Y37945D03* X33474Y36465D03* Y37945D03* X33974Y36465D03* Y37945D03* X34474Y36465D03* Y37945D03* G54D56* X35433Y9055D03* G54D57* X8268Y689D03* X54724D03* G54D58* X28740D03* G54D59* X54931Y4291D03* Y5945D03* Y12362D03* Y14016D03* X55187Y4291D03* Y5945D03* Y12362D03* Y14016D03* X55443Y4291D03* Y5945D03* Y12362D03* Y14016D03* X55699Y4291D03* Y5945D03* Y12362D03* Y14016D03* G54D60* X41457Y1693D03* G54D61* X53819Y14055D03* G54D62* X256Y30924D03* G54D63* X-335Y30624D03* Y31225D03* Y31826D03* Y32428D03* Y33029D03* Y33630D03* Y34231D03* X256Y30323D03* Y31526D03* Y32127D03* Y32728D03* Y33329D03* Y33930D03* Y34531D03* G54D64* X453Y27657D03* Y37500D03* G54D65* Y29429D03* Y35728D03* G54D66* X3937Y31988D03* Y33366D03* G54D67* Y31319D03* Y32697D03* X4724Y31319D03* Y32067D03* Y32697D03* Y33445D03* G54D68* X4004Y18071D03* Y21614D03* X25787Y33465D03* G54D69* X1050Y29033D03* X1550Y28533D03* Y29533D03* X2550Y28533D03* Y29533D03* X3050Y29033D03* X4004Y18622D03* Y19173D03* Y19724D03* Y22165D03* Y22717D03* Y23268D03* X26787Y33465D03* X27787D03* X28787D03* X30787D03* X31787D03* X32787D03* G54D70* X7283Y10217D02* X7244D01* X7095Y10366* X7055* X6594Y10827* X7972Y25945D02* X7756D01* X7717Y25984* X7972Y31850D02* X7756D01* X7717Y31890* X14764Y10217D02* Y10395D01* X14765Y10397* Y10827* X14665* X15748Y5217D02* X15879Y5085D01* Y5028* X15945Y4962* Y4370* X16517Y4942* X17151* X17293Y5083* Y5178* X17403Y5289* X17514* X17520Y5295* X19075Y12461D02* X19065Y12451D01* X18838* X30618Y13561D02* X30766D01* X30846Y13642* G54D71* X53888Y27372D02* X54403D01* X54409Y27378* X54419D02* X54875Y27835D01* G54D72* X5138Y2165D03* Y18189D03* Y21732D03* X5492Y2165D03* Y18189D03* Y21732D03* X5531Y30709D03* Y31496D03* Y34055D03* X5886Y30709D03* Y31496D03* Y34055D03* X6122Y2165D03* X6319Y1575D03* Y35827D03* X6476Y2165D03* X6516Y3543D03* Y4134D03* Y4724D03* Y5315D03* Y6693D03* Y7283D03* Y7874D03* Y8465D03* X6673Y1575D03* Y35827D03* X6870Y3543D03* Y4134D03* Y4724D03* Y5315D03* Y6693D03* Y7283D03* Y7874D03* Y8465D03* X6909Y2165D03* X7264D03* X7894Y9055D03* Y13780D03* Y14173D03* Y14764D03* Y15157D03* Y15748D03* Y16142D03* Y16732D03* Y17126D03* X8248Y9055D03* Y13780D03* Y14173D03* Y14764D03* Y15157D03* Y15748D03* Y16142D03* Y16732D03* Y17126D03* X9272Y1772D03* X9626D03* X9665Y20472D03* Y21063D03* X10020Y20472D03* Y21063D03* X10453Y16535D03* X10807D03* X12028Y11024D03* X12382D03* X13799Y23583D03* X14154D03* X15965D03* X16319D03* X18130Y23622D03* X18484D03* X20295Y2953D03* X20650D03* X21201D03* X21555D03* X21791Y19882D03* X22146D03* X22264Y23425D03* X22461Y18031D03* X22618Y23425D03* X22815Y18031D03* X23169Y19488D03* X23524Y18307D03* Y18701D03* Y19094D03* Y19488D03* X23878Y18307D03* Y18701D03* Y19094D03* X24429Y18307D03* Y18701D03* Y19094D03* X24783Y18307D03* Y18701D03* Y19094D03* X25295D03* X25650D03* X26791Y24803D03* Y35827D03* X27146Y24803D03* Y35827D03* X27677D03* X27933Y20866D03* X28031Y35827D03* X28248Y19291D03* X28287Y20866D03* X28602Y19291D03* X28760Y24606D03* X28957Y35827D03* X29114Y24606D03* X29154Y1378D03* Y2756D03* X29311Y35827D03* X29508Y1378D03* Y2756D03* X29547Y24803D03* X29862Y2362D03* X29902Y24803D03* X30217Y2362D03* X30531Y20827D03* X30728Y1378D03* Y2756D03* X30886Y20827D03* X30925Y20276D03* Y35827D03* X31083Y1378D03* Y2756D03* X31280Y20276D03* Y35827D03* X31516Y24606D03* Y25000D03* X31713Y19488D03* X31870Y24606D03* Y25000D03* X32067Y19488D03* X33996Y16949D03* Y17697D03* X34252Y16949D03* Y17697D03* X34508Y16949D03* Y17697D03* X35650Y31693D03* Y32087D03* X35768Y35453D03* Y36201D03* X35846Y36811D03* Y37402D03* X36004Y31693D03* Y32087D03* X36024Y35453D03* Y36201D03* X36201Y36811D03* Y37402D03* X36280Y35453D03* Y36201D03* X36437Y28346D03* Y28937D03* Y29528D03* X36791Y28346D03* Y28937D03* Y29528D03* X39587Y30512D03* Y30906D03* X39941Y30512D03* Y30906D03* X40177Y33071D03* Y33543D03* Y34016D03* X40531Y33071D03* Y33543D03* Y34016D03* X43307Y1378D03* X43661D03* X44449Y1358D03* X44803D03* X45354Y1378D03* X45709D03* X47067Y14567D03* X47421D03* X48248Y1378D03* X48602D03* X50020Y14370D03* Y15551D03* X50374Y14370D03* Y15551D03* X50807Y14370D03* X51161D03* X51791D03* X52146D03* X52579Y14567D03* Y14961D03* Y33465D03* X52776Y1378D03* X52933Y14567D03* Y14961D03* Y33465D03* X53130Y1378D03* X53957Y4528D03* Y6299D03* X54154Y33858D03* Y34331D03* Y34724D03* Y35236D03* Y35630D03* X54311Y4528D03* Y6299D03* Y33110D03* X54508Y33858D03* Y34331D03* Y34724D03* Y35236D03* Y35630D03* X54665Y33110D03* X54744Y33465D03* X54941Y33937D03* Y34331D03* Y34843D03* Y35236D03* X55020Y33071D03* X55098Y33465D03* X55138Y3622D03* X55295Y33937D03* Y34331D03* Y34843D03* Y35236D03* X55374Y33071D03* X55492Y3622D03* X55728Y33071D03* X56083D03* X56909Y2362D03* Y3937D03* Y4528D03* Y5118D03* Y7677D03* Y8268D03* Y18858D03* Y19528D03* Y24528D03* Y26496D03* Y26890D03* Y27283D03* Y29370D03* Y29764D03* Y30157D03* Y30551D03* Y30945D03* Y31339D03* Y31850D03* Y32244D03* Y32638D03* Y33031D03* Y33425D03* Y34646D03* Y35039D03* Y35630D03* Y36181D03* Y36693D03* Y37165D03* X56988Y33819D03* Y34252D03* X57264Y2362D03* Y3937D03* Y4528D03* Y5118D03* Y7677D03* Y8268D03* Y18858D03* Y19528D03* Y24528D03* Y26496D03* Y26890D03* Y27283D03* Y29370D03* Y29764D03* Y30157D03* Y30551D03* Y30945D03* Y31339D03* Y31850D03* Y32244D03* Y32638D03* Y33031D03* Y33425D03* Y34646D03* Y35039D03* Y35630D03* Y36181D03* Y36693D03* Y37165D03* X57343Y33819D03* Y34252D03* G54D73* X33583Y27559D03* Y33465D03* G54D74* X1004Y18898D03* Y22441D03* G54D75* X3248Y17835D03* Y19961D03* Y21378D03* Y23504D03* G54D76* X33622Y2087D03* Y3425D03* X33937Y2087D03* Y3425D03* X34252Y2087D03* Y3425D03* X34567Y2087D03* Y3425D03* X34882Y2087D03* Y3425D03* X35197Y2087D03* Y3425D03* X35512Y2087D03* Y3425D03* X35827Y2087D03* Y3425D03* X36142Y2087D03* Y3425D03* X36457Y2087D03* Y3425D03* X38071Y36142D03* Y37480D03* X38386Y36142D03* Y37480D03* X38701Y36142D03* Y37480D03* X39016Y36142D03* Y37480D03* X39331Y36142D03* Y37480D03* X39646Y36142D03* Y37480D03* X39961Y36142D03* Y37480D03* X40276Y36142D03* Y37480D03* X40591Y36142D03* Y37480D03* X40906Y36142D03* Y37480D03* X41220Y36142D03* Y37480D03* X41535Y36142D03* Y37480D03* X41850Y36142D03* Y37480D03* X42165Y36142D03* Y37480D03* X42480Y36142D03* Y37480D03* X42795Y36142D03* Y37480D03* X43110Y36142D03* Y37480D03* X43425Y36142D03* Y37480D03* X43740Y36142D03* Y37480D03* X44055Y36142D03* Y37480D03* G54D77* X33031Y2177D03* X37047Y2756D03* X37480Y36232D03* X44646Y36811D03* G54D78* X26809Y21654D03* Y24016D03* X27309Y21654D03* Y24016D03* X27809Y21654D03* Y24016D03* X28309Y21654D03* Y24016D03* X29565Y21654D03* Y24016D03* X30065Y21654D03* Y24016D03* X30565Y21654D03* Y24016D03* X31065Y21654D03* Y24016D03* G54D79* X34311Y15364D03* Y15620D03* Y15876D03* Y16132D03* X34980Y15364D03* Y15620D03* Y15876D03* Y16132D03* X38642Y15364D03* Y15620D03* Y15876D03* Y16132D03* X39311Y15364D03* Y15620D03* Y15876D03* Y16132D03* X55906Y15020D03* Y15295D03* X56555Y11663D03* Y11919D03* Y12175D03* Y12431D03* X57224Y11663D03* Y11919D03* Y12175D03* Y12431D03* G54D80* X4035Y26575D03* Y27362D03* X4783Y26575D03* X28957Y19567D03* Y20591D03* X29331Y19567D03* X29705D03* Y20591D03* G54D81* X1406Y2165D03* G54D82* X35667Y17701D03* Y19701D03* X36167Y17701D03* Y19701D03* X36667Y17701D03* Y19701D03* X37167Y17701D03* Y19701D03* X37439Y5299D03* Y7299D03* X37833Y17701D03* Y19701D03* X37939Y5299D03* Y7299D03* X38333Y17701D03* Y19701D03* X38439Y5299D03* Y7299D03* X38833Y17701D03* Y19701D03* X38939Y5299D03* Y7299D03* X39333Y17701D03* Y19701D03* G54D83* X15748Y5217D03* Y6201D03* X20866Y1476D03* Y2461D03* G54D84* X-230Y4816D03* Y10406D03* Y15656D03* X470Y4816D03* Y10406D03* Y15656D03* X1170Y10066D03* X1870D03* X4480Y5236D03* Y6236D03* Y7236D03* Y8236D03* Y9236D03* Y10732D03* Y11736D03* Y12736D03* Y13736D03* Y14736D03* X5480Y5736D03* Y6736D03* Y7736D03* Y8736D03* Y9736D03* Y11236D03* Y12236D03* Y13236D03* Y14236D03* G54D85* Y15236D03* G54D86* X3180Y4136D03* Y16336D03* G54D87* X1980Y5236D03* Y15236D03* G54D88* X2799Y36033D03* G54D89* X1299Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* Y36033D03* X2049Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* Y36033D03* X2799Y30783D03* Y31533D03* Y32283D03* Y33033D03* Y33783D03* Y34533D03* Y35283D03* G54D90* X1299Y26234D03* Y38333D03* G54D91* X4705Y27362D03* G54D92* X10417Y14134D03* Y15787D03* X12417Y14134D03* Y15787D03* M02* gerbv-2.7.0/example/amacro-ref/jj1.drl0000644000175000017500000000064113421555713017352 0ustar carstencarsten; Version : LOCAL ; Job : D:\EKF\CAD\Mentor\Projects\c\cxx\cxxry\pcb\cxxry.pcb ; User : PC35:gn ; Date : Tue Sep 05 11:37:18 2006 ; Format : 3.3 / Absolute / MM / Leading ; Contents: Thru / Mill / Plated M48 METRIC,TZ FMAT,2 ICI,OFF T03C0.8000 T02C1.0000 % M71 G90 G93X0Y0 T03 G00X2550Y80000 M15 G01Y79500 Y80500 M16 T02 G00X8250Y77300 M15 G01X8550 X7950 M16 G00X8250Y82700 M15 G01X8550 X7950 M17 T00 M30 gerbv-2.7.0/example/amacro-ref/full-ex.grb0000644000175000017500000000125013421555713020230 0ustar carstencarsten%FSLAX23Y23*% %AMRECT*0 Round-cornered rectangle * 0 PARAMS: ,,,,,* 21,1,$1-$3,$2,0,0,$4*21,1,$1,$2-$3,0,0,$4*$1=$1-$3*$2=$2-$3*$1=$1/2*$2=$2/2* $4=$1X$5*$5=$2X$5*$1=$1X$6*$2=$2X$6*1,1,$3,$1-$5,$4+$2*1,1,$3,$1+$5,$4-$2* $4=0-$4*$1=0-$1*1,1,$3,$1-$5,$4+$2*1,1,$3,$1+$5,$4-$2*% %ADD11RECT,0.100000X0.060000X0.030000X60.00X0.866025X0.500000*% %ADD13RECT,0.100000X0.060000X0.030000X0.00X0.000000X1.000000*% %ADD16RECT,0.100000X0.060000X0.030000X30.00X0.500000X0.866025*% %ADD28RECT,0.060000X0.100000X0.030000X0.00X0.000000X1.000000*% G54D28*G01X425Y150D03* G54D13*G01X050Y150D03* G54D16*G01X200Y150D03* G54D11*G01X325Y150D03* M02*gerbv-2.7.0/example/eaglecad1/0000755000175000017500000000000013423533412015746 5ustar carstencarstengerbv-2.7.0/example/eaglecad1/top-cop.pdf0000644000175000017500000001472513421555713020041 0ustar carstencarsten%PDF-1.2 %쏢 4 0 obj <> stream x}\[HnU c ̇p6 ?}g*`i= #ICtt}_4S?__S?׏>}ϔ?(Xۦܟ`&|Ivpo yLyRUw.y~v" w3WrYy~R ?XS~?_~yG?K_ 4gJW:ƐFZ%Lǵ IG2_!(K*2UQNh.%jhPzMR xbȀ0ItK6yd'ݰri02F02T R"F\ק-|ݟ푕?ie0Tϐ6DXrbwКҖ, ,?r5(-E@[YիE@̳X=FPO^VſLu:" ,VRW^V_]Pfga(B5wRPdyoE}m^XoeY-(bE!,?Ski^ab{]#εtŹ,뚫ŹG@YYhN}Ŗ}Y@59u@t`!b+, Zȉ,FY)W.^!,Rj"B$ZT4++Zƒ"B4a1GPZ Atek z>vJ Q`!><)ҪOkd V?X<V5`lio m3DV s_i65!sFҙn 6NkOX}ocl7q,ymdȸ>fJ_2U9kXwQ$5W9uhݫ^B Qh\ht}oQn@wB։nrկ:NA( lSPV(dsSls , +1@*}>rvu[-if _ (85@"' !'JB -'0r@N u]oߟӧ5Z70STEZ{z9ʚWQhBZʕZbF!yTpB>uj;UZ糡kk;sJ=GȽڤEȽuφhtHQ]8EZ6o/,FkU<;E HQ$/,Fv;EyN!}N)d)^ۜzi8E@HY_=QdUSH}j@P5eY3!uշ!:[l}"ѩ͵TJsmUʸ\`!><"SOkd !P#x&D[ՀC7!m(Xcx&D[gus-ki~NnEʲ"FoU)j T5Ŭg} يXgccΝ=8Fsm^q"HY_=rbV5P#6$ǹUSH=rbʳ>V߄8׀e} s8zsmGk@HY_=sM1FꛐTMYV#LHz5Ŭg} q)bq1VCk:3͚uLXoJ"d57XφhjoEU3Djφ U :<1|A|t!ڣ`Dήs4Yѽ N^p Q`!><(BC 5g ݪ  l QUD绣~>{gks`!pznv69~`-5&9)m5e\N^PlˈDf5p.+冐áf>7Hd,7PؚBN.FMr,%D"*5|du9=5RiV ȹr.DJ4F?!# W9[22^} }rHiB( (Ҝ `aB|u T(؜аP=R훒h'pU( ' e%Qabڔ2C B US֔8k10@1vXX:@dMаU3kf2!٭rz4%dUN`ClrU5_p~ 2Kqj2@(ҨsK*br@4Ub56XXC}yG߁~cHY7(ҕiվ؉"WGbnf-/yJBb\c#}< $;~H[}noBn`JB.6\nbnr#n)7  SX㙁IasZܤ\.Ct i.d87)sc=ˍhh"6LeY*3HrSZ)@\Z]nJI!7@Pn-FBa Rq<3p3 !rK  TIE|nڌbnqK4Ah¢THp" ŽWnr3S  TI>7[Pn-FBa Rq<3cn!LJĹ<<8AIsq'y%R*ɲ-; TY uM' YX`OWȏ!:V4iV{ȏ!$ˏ:hp"6ReY65!XgaUK|ޠyu @pkH (`(ɞ.PDŽ"RuKH ~~e>Ϧ3~Hy}3E'rya_9u.އOCkf,Eȳ$9WVſ|yEga4gTtH lAQq3Xr1ʲ)BŊ|1'GծtsyيSg[ƶg$睔d@_KADRVHlX׳CD!ns,3Gqvz9D:x=,9ur/AZFIrtv4^Orz13=}F=a=)599, |fp'GvXf.-%ԫȹz?z1pä㇤^Gc4E̵8zNuXAXCzNYϩ99, /gTIaiW #]Zu]VBBsowGsr-, ~;?$g'(BG\OqQ=tNaSE1ACkCH V2ckSF<3>e☀xf$} Zz.s-wԕ?Tϧ1, KU9dG+[Ըb>S2VrR2 u+WYQID9d&\BIAlWP2kJ rLI YIZ!z)q՞QDU=cܝpyN|jH3}q1[}HWq. rQt6X>yy{|B&O"$HyA'{t5Tc=D6E@DG 64M~Zy iR󠓷ln_={h1kؾ58e? ir& UY̺"+b%̉ 3/& 8A=PE8/IY H寊)z7"ln2Eւk1,zذ2zk/kG&J~6u @˦h.%6)˖m6($e?iܯ^~@r6k6F:?c˘5m%#Twm~Ie~ Jxx'Jp} BL~ld#|Vg)0]-zRU"rhs t7&xqWvbQ8\A\&#q"b3CtjEնM+^A\t)٘c mr|zj P"׳)6ȆC?XȚ |-z?c)yjN'x?eBU\׽_y#66VlM&ػm@ ݵwxKT^['ɀIҝJfVx3+w[N]aZǧ4{m/d*ߎ$R7෯>`G̬~|Ɍr`i6;RX M[Hg߯`gN85ŏŮVgi8 mT]1D6Cvr&S5L0fr3Dfm dCTEeAˢ6 |p20[=US GEڶ3Pzendstream endobj 5 0 obj 5977 endobj 3 0 obj << /Type /Page /MediaBox [0 0 612 792] /Parent 2 0 R /Resources << /ProcSet [/PDF] >> /Contents 4 0 R >> endobj 2 0 obj << /Type /Pages /Kids [ 3 0 R ] /Count 1 >> endobj 1 0 obj << /Type /Catalog /Pages 2 0 R >> endobj 6 0 obj << /CreationDate (D:20011023151128) /Producer (GNU Ghostscript 5.50) >> endobj xref 0 7 0000000000 65535 f 0000006261 00000 n 0000006202 00000 n 0000006082 00000 n 0000000015 00000 n 0000006062 00000 n 0000006310 00000 n trailer << /Size 7 /Root 1 0 R /Info 6 0 R >> startxref 6397 %%EOF gerbv-2.7.0/example/eaglecad1/Makefile.am0000644000175000017500000000166713421555713020022 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=top-cop.gbx top-cop.pdf MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/eaglecad1/Makefile.in0000644000175000017500000003607113423533412020022 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/eaglecad1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = top-cop.gbx top-cop.pdf MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/eaglecad1/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/eaglecad1/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/eaglecad1/top-cop.gbx0000644000175000017500000003116213421555713020042 0ustar carstencarstenG75* G70* %OFA0B0*% %FSAX24Y24*% %IPPOS*% %LPD*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5* *% %ADD10C,0.0060*% %ADD11C,0.1500*% %ADD12O,0.0780X0.1560*% %ADD13O,0.0980X0.0490*% %ADD14OC8,0.0600*% %ADD15OC8,0.0550*% %ADD16OC8,0.0630*% %ADD17OC8,0.1005*% %ADD18O,0.0600X0.1200*% %ADD19O,0.1005X0.2010*% %ADD20O,0.1560X0.0780*% %ADD21O,0.1200X0.0600*% %ADD22C,0.0500*% %ADD23C,0.0140*% %ADD24C,0.0160*% %ADD25C,0.0660*% %ADD26R,0.0450X0.0450*% %ADD27C,0.0010*% D10* X037262Y009096D02* X036622Y009096D01* X036622Y008883D02* X036622Y009310D01* X036942Y009527D02* X036835Y009634D01* X036835Y009848D01* X036942Y009954D01* X037156Y009954D01* X037262Y009848D01* X037262Y009634D01* X037156Y009527D01* X036942Y009527D01* X036835Y010172D02* X036835Y010492D01* X036942Y010599D01* X037156Y010599D01* X037262Y010492D01* X037262Y010172D01* X037476Y010172D02* X036835Y010172D01* D11* X034792Y002353D02* X031792Y002353D01* X028792Y002353D01* X024292Y002353D01* X019792Y002353D01* X016792Y002353D01* X013792Y002353D01* X010792Y002353D01* X007792Y002353D01* X005792Y002353D01* X002792Y004853D01* X002792Y023853D01* X002792Y026853D01* X006292Y029353D01* X011292Y029353D01* X024292Y029353D01* X024292Y027353D01* X022292Y027353D02* X021792Y022853D01* X022292Y022853D01* X024792Y022853D01* X026292Y027353D02* X026292Y029353D01* X024292Y029353D01* X026292Y029353D02* X033292Y029353D01* X033292Y027353D01* X035292Y027353D01* X037292Y029853D02* X037294Y029898D01* X037300Y029944D01* X037311Y029988D01* X037325Y030031D01* X037343Y030073D01* X037365Y030113D01* X037390Y030151D01* X037419Y030186D01* X037451Y030218D01* X037485Y030248D01* X037523Y030274D01* X037562Y030297D01* X037603Y030316D01* X037646Y030331D01* X037690Y030343D01* X037735Y030350D01* X037781Y030353D01* X037826Y030352D01* X037871Y030347D01* X037916Y030337D01* X037959Y030324D01* X038002Y030307D01* X038042Y030286D01* X038080Y030261D01* X038116Y030234D01* X038150Y030203D01* X038180Y030169D01* X038207Y030132D01* X038231Y030093D01* X038251Y030052D01* X038267Y030010D01* X038279Y029966D01* X038287Y029921D01* X038291Y029876D01* X038291Y029830D01* X038287Y029785D01* X038279Y029740D01* X038267Y029696D01* X038251Y029654D01* X038231Y029613D01* X038207Y029574D01* X038180Y029537D01* X038150Y029503D01* X038116Y029472D01* X038080Y029445D01* X038042Y029420D01* X038002Y029399D01* X037959Y029382D01* X037916Y029369D01* X037871Y029359D01* X037826Y029354D01* X037781Y029353D01* X037735Y029356D01* X037690Y029363D01* X037646Y029375D01* X037603Y029390D01* X037562Y029409D01* X037523Y029432D01* X037485Y029458D01* X037451Y029488D01* X037419Y029520D01* X037390Y029555D01* X037365Y029593D01* X037343Y029633D01* X037325Y029675D01* X037311Y029718D01* X037300Y029762D01* X037294Y029808D01* X037292Y029853D01* X031292Y027353D02* X032292Y022853D01* X035292Y022853D01* X031292Y027353D02* X029292Y027353D01* X020292Y027353D02* X017792Y027353D01* X015292Y027353D01* X013292Y022353D01* X001292Y029853D02* X001294Y029898D01* X001300Y029944D01* X001311Y029988D01* X001325Y030031D01* X001343Y030073D01* X001365Y030113D01* X001390Y030151D01* X001419Y030186D01* X001451Y030218D01* X001485Y030248D01* X001523Y030274D01* X001562Y030297D01* X001603Y030316D01* X001646Y030331D01* X001690Y030343D01* X001735Y030350D01* X001781Y030353D01* X001826Y030352D01* X001871Y030347D01* X001916Y030337D01* X001959Y030324D01* X002002Y030307D01* X002042Y030286D01* X002080Y030261D01* X002116Y030234D01* X002150Y030203D01* X002180Y030169D01* X002207Y030132D01* X002231Y030093D01* X002251Y030052D01* X002267Y030010D01* X002279Y029966D01* X002287Y029921D01* X002291Y029876D01* X002291Y029830D01* X002287Y029785D01* X002279Y029740D01* X002267Y029696D01* X002251Y029654D01* X002231Y029613D01* X002207Y029574D01* X002180Y029537D01* X002150Y029503D01* X002116Y029472D01* X002080Y029445D01* X002042Y029420D01* X002002Y029399D01* X001959Y029382D01* X001916Y029369D01* X001871Y029359D01* X001826Y029354D01* X001781Y029353D01* X001735Y029356D01* X001690Y029363D01* X001646Y029375D01* X001603Y029390D01* X001562Y029409D01* X001523Y029432D01* X001485Y029458D01* X001451Y029488D01* X001419Y029520D01* X001390Y029555D01* X001365Y029593D01* X001343Y029633D01* X001325Y029675D01* X001311Y029718D01* X001300Y029762D01* X001294Y029808D01* X001292Y029853D01* X001292Y001853D02* X001294Y001898D01* X001300Y001944D01* X001311Y001988D01* X001325Y002031D01* X001343Y002073D01* X001365Y002113D01* X001390Y002151D01* X001419Y002186D01* X001451Y002218D01* X001485Y002248D01* X001523Y002274D01* X001562Y002297D01* X001603Y002316D01* X001646Y002331D01* X001690Y002343D01* X001735Y002350D01* X001781Y002353D01* X001826Y002352D01* X001871Y002347D01* X001916Y002337D01* X001959Y002324D01* X002002Y002307D01* X002042Y002286D01* X002080Y002261D01* X002116Y002234D01* X002150Y002203D01* X002180Y002169D01* X002207Y002132D01* X002231Y002093D01* X002251Y002052D01* X002267Y002010D01* X002279Y001966D01* X002287Y001921D01* X002291Y001876D01* X002291Y001830D01* X002287Y001785D01* X002279Y001740D01* X002267Y001696D01* X002251Y001654D01* X002231Y001613D01* X002207Y001574D01* X002180Y001537D01* X002150Y001503D01* X002116Y001472D01* X002080Y001445D01* X002042Y001420D01* X002002Y001399D01* X001959Y001382D01* X001916Y001369D01* X001871Y001359D01* X001826Y001354D01* X001781Y001353D01* X001735Y001356D01* X001690Y001363D01* X001646Y001375D01* X001603Y001390D01* X001562Y001409D01* X001523Y001432D01* X001485Y001458D01* X001451Y001488D01* X001419Y001520D01* X001390Y001555D01* X001365Y001593D01* X001343Y001633D01* X001325Y001675D01* X001311Y001718D01* X001300Y001762D01* X001294Y001808D01* X001292Y001853D01* X037292Y001853D02* X037294Y001898D01* X037300Y001944D01* X037311Y001988D01* X037325Y002031D01* X037343Y002073D01* X037365Y002113D01* X037390Y002151D01* X037419Y002186D01* X037451Y002218D01* X037485Y002248D01* X037523Y002274D01* X037562Y002297D01* X037603Y002316D01* X037646Y002331D01* X037690Y002343D01* X037735Y002350D01* X037781Y002353D01* X037826Y002352D01* X037871Y002347D01* X037916Y002337D01* X037959Y002324D01* X038002Y002307D01* X038042Y002286D01* X038080Y002261D01* X038116Y002234D01* X038150Y002203D01* X038180Y002169D01* X038207Y002132D01* X038231Y002093D01* X038251Y002052D01* X038267Y002010D01* X038279Y001966D01* X038287Y001921D01* X038291Y001876D01* X038291Y001830D01* X038287Y001785D01* X038279Y001740D01* X038267Y001696D01* X038251Y001654D01* X038231Y001613D01* X038207Y001574D01* X038180Y001537D01* X038150Y001503D01* X038116Y001472D01* X038080Y001445D01* X038042Y001420D01* X038002Y001399D01* X037959Y001382D01* X037916Y001369D01* X037871Y001359D01* X037826Y001354D01* X037781Y001353D01* X037735Y001356D01* X037690Y001363D01* X037646Y001375D01* X037603Y001390D01* X037562Y001409D01* X037523Y001432D01* X037485Y001458D01* X037451Y001488D01* X037419Y001520D01* X037390Y001555D01* X037365Y001593D01* X037343Y001633D01* X037325Y001675D01* X037311Y001718D01* X037300Y001762D01* X037294Y001808D01* X037292Y001853D01* D12* X035292Y027353D03* X033292Y027353D03* X031292Y027353D03* X029292Y027353D03* X026292Y027353D03* X024292Y027353D03* X022292Y027353D03* X020292Y027353D03* D13* X011292Y027853D03* X011292Y026853D03* X011292Y025853D03* X011292Y024853D03* X008292Y024853D03* X008292Y025853D03* X008292Y026853D03* X008292Y027853D03* D14* X007292Y022353D03* X013292Y022353D03* D15* X012792Y023853D03* X012792Y027853D03* X006792Y027853D03* X006792Y023853D03* X008792Y013353D03* X008792Y012353D03* X008792Y010853D03* X008792Y009853D03* X012792Y009853D03* X012792Y010853D03* X012792Y012353D03* X012792Y013353D03* X026292Y013353D03* X026292Y012353D03* X026292Y010853D03* X026292Y009853D03* X030292Y009853D03* X030292Y010853D03* X030292Y012353D03* X030292Y013353D03* D16* X017792Y027353D03* X017792Y029353D03* X015292Y029353D03* X015292Y027353D03* D17* X014342Y019703D03* X016242Y019703D03* X016242Y017853D03* X014342Y017853D03* X014342Y016003D03* X016242Y016003D03* X021842Y016003D03* X023742Y016003D03* X023742Y017853D03* X021842Y017853D03* X021842Y019703D03* X023742Y019703D03* X033342Y019703D03* X035242Y019703D03* X035242Y017853D03* X033342Y017853D03* X033342Y016003D03* X035242Y016003D03* X006742Y016003D03* X004842Y016003D03* X004842Y017853D03* X006742Y017853D03* X006742Y019703D03* X004842Y019703D03* D18* X004792Y012353D03* X006792Y012353D03* X006792Y010353D03* X004792Y010353D03* X014292Y010353D03* X016292Y010353D03* X016292Y012353D03* X014292Y012353D03* X019792Y007353D03* X020792Y007353D03* X021792Y007353D03* X024292Y007353D03* X025292Y007353D03* X026292Y007353D03* X023792Y010353D03* X023792Y012353D03* X021292Y012353D03* X021292Y010353D03* X020792Y004353D03* X021792Y004353D03* X019792Y004353D03* X024292Y004353D03* X025292Y004353D03* X026292Y004353D03* X033292Y010353D03* X035292Y010353D03* X035292Y012353D03* X033292Y012353D03* X034792Y007353D03* X035792Y007353D03* X036792Y007353D03* X036792Y004353D03* X035792Y004353D03* X034792Y004353D03* D19* X035492Y022853D03* X032492Y022853D03* X024992Y022853D03* X021992Y022853D03* D20* X019292Y023353D03* X019292Y024353D03* X019292Y022353D03* D21* X010792Y019353D03* X010792Y018353D03* X010792Y017353D03* X010792Y016353D03* X010792Y015353D03* X004292Y021853D03* X004292Y022853D03* X004292Y023853D03* X004292Y024853D03* X004292Y025853D03* X004792Y007353D03* X004792Y006353D03* X004792Y005353D03* X007792Y005353D03* X007792Y006353D03* X007792Y007353D03* X010792Y007353D03* X010792Y006353D03* X010792Y005353D03* X010792Y004353D03* X013792Y004353D03* X013792Y005353D03* X013792Y006353D03* X013792Y007353D03* X016792Y006353D03* X016792Y005353D03* X016792Y004353D03* X028792Y004353D03* X028792Y005353D03* X028792Y006353D03* X028792Y007353D03* X031792Y007353D03* X031792Y006353D03* X031792Y005353D03* X031792Y004353D03* X028792Y015353D03* X028792Y016353D03* X028792Y017353D03* X028792Y018353D03* X028792Y019353D03* D22* X027792Y020853D01* X010792Y020853D01* X010792Y019353D01* X010792Y020853D02* X010792Y024853D01* X010292Y025353D01* X010292Y027353D01* X010792Y027853D01* X011292Y027853D01* X011292Y029353D01* X004292Y023853D02* X002792Y023853D01* X004292Y022853D02* X005292Y022853D01* X008292Y020353D01* X006792Y017853D02* X008292Y016853D01* X008292Y014853D01* X006792Y013353D01* X006792Y012353D01* X007792Y012853D02* X007792Y010853D01* X004792Y012353D02* X005792Y014353D01* X005792Y016853D01* X004792Y017853D01* X004842Y017853D01* X006742Y017853D02* X006792Y017853D01* X014292Y017853D02* X014342Y017853D01* X014292Y017853D02* X015292Y016853D01* X015292Y014353D01* X014292Y012353D01* X016292Y012353D02* X017292Y013353D01* X017292Y017353D01* X016242Y017853D01* X021792Y017853D02* X021842Y017853D01* X021792Y017853D02* X022792Y016853D01* X022792Y014353D01* X021292Y012353D01* X023792Y012353D02* X025292Y013353D01* X025292Y016853D01* X023792Y017853D01* X023742Y017853D01* X032292Y016353D02* X032292Y013353D01* X033292Y012353D01* X034292Y013353D02* X034292Y016853D01* X035292Y017353D01* X033292Y017353D02* X032292Y016353D01* X034292Y013353D02* X035292Y012353D01* X035292Y010353D02* X036792Y007353D01* X036792Y004353D01* X034792Y002353D02* X034792Y007353D01* X031792Y007353D02* X031792Y006353D01* X031792Y007353D02* X035292Y010353D01* X033292Y010353D02* X030292Y009853D01* X028792Y007353D01* X026292Y007353D01* X026292Y004353D01* X028792Y005353D02* X028792Y002353D01* X031792Y002353D02* X031792Y005353D01* X028792Y006353D02* X028792Y007353D01* X026292Y007353D02* X026292Y008353D01* X013292Y008353D01* X012792Y009853D02* X010792Y007353D01* X010792Y005353D02* X010792Y002353D01* X013792Y002353D02* X013792Y005353D01* X016792Y004353D02* X016792Y002353D01* X019792Y002353D02* X019792Y007353D01* X024292Y007353D02* X024292Y002353D01* X014292Y010353D02* X012792Y009853D01* X007792Y005353D02* X007792Y002353D01* X004792Y003353D02* X004792Y005353D01* D23* X004792Y007353D02* X008792Y010853D01* X008792Y009853D02* X009792Y010353D01* X009792Y016853D01* X010792Y017353D01* X010792Y018353D02* X009292Y017353D01* X009292Y012853D01* X008792Y012353D01* X010792Y013853D02* X010792Y015353D01* X010792Y013853D02* X012792Y013353D01* X026292Y010853D02* X027792Y012353D01* X027792Y017853D01* X028292Y018353D01* X028792Y018353D01* X028792Y016353D02* X029292Y016353D01* X030292Y015353D01* X030292Y013353D01* X030292Y012353D02* X028792Y013353D01* X028792Y015353D01* X030292Y010853D02* X034292Y011353D01* X035292Y010353D01* X011292Y024853D02* X010792Y024853D01* X008292Y024853D02* X005792Y024853D01* X004792Y025853D01* X004292Y025853D01* D24* X006792Y027853D02* X007792Y026853D01* X008292Y026853D01* X011292Y026853D02* X011792Y026853D01* X012792Y027853D01* X012792Y023853D02* X013292Y022353D01* X007292Y022353D02* X006792Y023853D01* X033342Y017853D02* X033292Y017353D01* X035292Y017353D02* X035242Y017853D01* D25* X022292Y022853D02* X019292Y022353D01* X019292Y023353D02* X017792Y023353D01* X017792Y027353D01* X019292Y024353D02* X022292Y024353D01* D26* X008292Y020353D03* X007792Y012853D03* X007792Y010853D03* X013292Y008353D03* D27* X000292Y000353D02* X039292Y000353D01* X039292Y031353D01* X000292Y031353D01* X000292Y000353D01* M02* gerbv-2.7.0/example/Mentor-BoardStation/0000755000175000017500000000000013423533412017773 5ustar carstencarstengerbv-2.7.0/example/Mentor-BoardStation/README.txt0000644000175000017500000000113213421555713021474 0ustar carstencarstenThis file is sent by David Cussans at University of Bristol High Energy Physics Group. It contains example on an excessive use of corners in polygons, which broke my hardcoded polygon-corner array. It also uses millimeters or rather a mixture of millimeters and inches, which still is unsupported. After a thorough investigation this file seems to be broken. To be usefull all apertures should be in millimeters too, despite the file starts with %MOIN*%. I have changed the first line by hand to get this file to work properly. This also serves as an example file from Mentor Boardstation. $Id$ gerbv-2.7.0/example/Mentor-BoardStation/artwork_1.grb0000644000175000017500000177112713421555713022426 0ustar carstencarsten%MOMM*% %FSLAX33Y33*% %ADD10R,2.000000X2.600000*% %ADD11R,0.800000X1.000000*% %ADD12R,2.600000X2.000000*% %ADD13R,0.600000X0.700000*% %ADD14R,1.000000X0.800000*% %ADD15R,0.700000X0.600000*% %ADD16C,0.600000*% %ADD17R,0.635000X2.286000*% %ADD18R,1.800000X1.000000*% %ADD19R,0.600000X1.900000*% %ADD70R,1.143000X1.016000*% %ADD71R,0.600000X1.400000*% %ADD20R,1.400000X0.600000*% %ADD21R,1.016000X1.143000*% %ADD22R,2.800000X2.000000*% %ADD23R,2.000000X2.800000*% %ADD24R,0.900000X1.400000*% %ADD25R,2.286000X0.635000*% %ADD26R,1.400000X0.900000*% %ADD27R,2.300000X0.600000*% %ADD28C,6.500000*% %ADD29C,0.120000*% %ADD72C,0.150000*% %ADD73C,0.127000*% %ADD125C,0.500000*% %ADD126C,1.000000*% %ADD127C,0.650000*% %ADD128C,1.651000*% %ADD129C,1.524000*% %ADD130C,2.540000*% %ADD131C,2.032000*% %ADD132C,1.574800*% %ADD133C,1.300000*% %ADD134C,0.100000*% %ADD135C,3.400000*% %ADD136C,0.200000*% %ADD169C,0.500000*% G90*G71*G01*D02*G54D10*X138800Y234050D03*X143600Y234050D03*X138800Y238150D03* X143600Y238150D03*X271000Y250200D03*X266200Y250200D03*X266200Y254300D03* X271000Y254300D03*X271000Y260350D03*X266200Y260350D03*X266200Y264350D03* X271000Y264350D03*X138000Y270100D03*X142800Y270100D03*X138000Y274100D03* X142800Y274100D03*X261800Y273300D03*X266600Y273300D03*D02*G54D11* X218000Y217400D03*X216600Y217400D03*X220900Y217400D03*X219500Y217400D03* X225200Y223450D03*X226600Y223450D03*X256300Y230100D03*X257700Y230100D03* X260300Y230100D03*X258900Y230100D03*X164250Y235550D03*X165650Y235550D03* X174150Y235700D03*X172750Y235700D03*X174500Y237100D03*X173100Y237100D03* X174150Y238500D03*X172750Y238500D03*X222800Y238100D03*X224200Y238100D03* X234200Y238200D03*X235600Y238200D03*X270100Y238600D03*X268700Y238600D03* X174150Y239900D03*X172750Y239900D03*X142300Y244900D03*X143700Y244900D03* X221300Y243500D03*X219900Y243500D03*X223200Y244100D03*X224600Y244100D03* X139500Y247400D03*X140900Y247400D03*X223200Y245500D03*X224600Y245500D03* X223200Y246900D03*X224600Y246900D03*X139500Y248800D03*X139500Y250200D03* X140900Y248800D03*X140900Y250200D03*X223200Y248300D03*X224600Y248300D03* X139500Y251600D03*X139500Y253000D03*X140900Y251600D03*X140900Y253000D03* X139500Y254400D03*X140900Y254400D03*X140900Y258200D03*X142300Y258200D03* X140900Y256800D03*X142300Y256800D03*X197200Y267150D03*X198600Y267150D03* X225200Y267200D03*X226600Y267200D03*X198600Y268550D03*X197200Y268550D03* X219700Y268400D03*X221100Y268400D03*X225200Y268600D03*X228300Y269500D03* X229700Y269500D03*X226600Y268600D03*X228300Y270900D03*X229700Y270900D03* X170250Y278650D03*X168850Y278650D03*X188000Y279100D03*X189400Y279100D03* X233800Y278300D03*X235200Y278300D03*D02*G54D12*X230050Y223150D03* X230050Y227950D03*X269600Y241100D03*X269600Y245900D03*X181500Y249150D03* X181500Y253950D03*X138700Y261450D03*X138700Y266250D03*X174800Y275700D03* X174800Y280500D03*D02*G54D13*X288900Y221060D03*X289900Y221060D03* X298100Y220060D03*X297100Y220060D03*X298100Y221060D03*X297100Y221060D03* X288900Y223060D03*X289900Y223060D03*X298100Y223060D03*X297100Y223060D03* X298100Y224060D03*X297100Y224060D03*X303900Y225060D03*X302900Y225060D03* X311100Y223060D03*X312100Y223060D03*X288900Y227060D03*X289900Y227060D03* X298100Y226060D03*X297100Y226060D03*X303900Y227060D03*X302900Y227060D03* X288900Y229060D03*X289900Y229060D03*X288900Y230060D03*X289900Y230060D03* X298100Y228060D03*X297100Y228060D03*X298100Y229060D03*X297100Y229060D03* X303900Y228060D03*X302900Y228060D03*X303900Y230060D03*X302900Y230060D03* X311100Y228060D03*X311100Y229060D03*X312100Y228060D03*X312100Y229060D03* X288900Y232060D03*X289900Y232060D03*X288900Y233060D03*X289900Y233060D03* X298100Y231060D03*X297100Y231060D03*X298100Y232060D03*X297100Y232060D03* X303900Y231060D03*X302900Y231060D03*X303900Y233060D03*X302900Y233060D03* X311100Y231060D03*X311100Y232060D03*X312100Y231060D03*X312100Y232060D03* X288900Y235060D03*X289900Y235060D03*X298100Y234060D03*X297100Y234060D03* X298100Y236060D03*X297100Y236060D03*X303900Y234060D03*X302900Y234060D03* X303900Y236060D03*X302900Y236060D03*X311100Y234060D03*X311100Y235060D03* X312100Y234060D03*X312100Y235060D03*X201700Y238500D03*X200700Y238500D03* X220000Y237300D03*X221000Y237300D03*X220000Y238300D03*X221000Y238300D03* X220000Y239300D03*X221000Y239300D03*X288900Y237060D03*X289900Y237060D03* X288900Y239060D03*X289900Y239060D03*X298100Y238060D03*X297100Y238060D03* X298100Y239060D03*X297100Y239060D03*X303900Y238060D03*X302900Y238060D03* X311000Y237060D03*X312000Y237060D03*X311000Y239060D03*X312000Y239060D03* X201700Y239500D03*X200700Y239500D03*X201700Y241500D03*X200700Y241500D03* X201700Y240500D03*X200700Y240500D03*X220000Y240300D03*X221000Y240300D03* X220000Y241300D03*X221000Y241300D03*X288900Y240060D03*X289900Y240060D03* X288900Y242060D03*X289900Y242060D03*X298100Y241060D03*X297100Y241060D03* X298100Y242060D03*X297100Y242060D03*X303900Y240060D03*X302900Y240060D03* X303900Y241060D03*X302900Y241060D03*X311000Y241060D03*X312000Y241060D03* X311000Y242060D03*X312000Y242060D03*X201700Y244500D03*X200700Y244500D03* X201700Y243500D03*X200700Y243500D03*X201700Y242500D03*X200700Y242500D03* X220000Y242300D03*X221000Y242300D03*X220000Y244700D03*X221000Y244700D03* X223800Y242550D03*X222800Y242550D03*X233700Y244800D03*X232700Y244800D03* X233700Y243700D03*X232700Y243700D03*X262200Y244300D03*X263200Y244300D03* X262200Y243300D03*X263200Y243300D03*X288900Y243060D03*X289900Y243060D03* X298100Y244060D03*X297100Y244060D03*X303900Y243060D03*X302900Y243060D03* X303900Y244060D03*X302900Y244060D03*X311100Y244060D03*X312100Y244060D03* X143800Y246600D03*X142800Y246600D03*X143800Y247600D03*X142800Y247600D03* X201700Y245500D03*X200700Y245500D03*X201700Y246500D03*X200700Y246500D03* X220000Y245700D03*X221000Y245700D03*X220000Y246700D03*X221000Y246700D03* X220000Y247700D03*X221000Y247700D03*X225800Y247800D03*X226800Y247800D03* X262200Y247300D03*X263200Y247300D03*X262200Y245300D03*X263200Y245300D03* X262200Y246300D03*X263200Y246300D03*X288900Y245060D03*X289900Y245060D03* X288900Y246060D03*X289900Y246060D03*X298100Y245060D03*X297100Y245060D03* X297100Y247060D03*X298100Y247060D03*X303900Y246060D03*X302900Y246060D03* X303900Y247060D03*X302900Y247060D03*X311100Y245060D03*X311100Y247060D03* X312100Y245060D03*X312100Y247060D03*X143800Y249200D03*X142800Y249200D03* X177800Y248500D03*X178800Y248500D03*X220000Y248700D03*X221000Y248700D03* X224000Y250650D03*X225000Y250650D03*X228500Y249500D03*X227500Y249500D03* X228500Y250500D03*X227500Y250500D03*X230200Y249900D03*X231200Y249900D03* X234100Y250300D03*X233100Y250300D03*X234100Y249300D03*X233100Y249300D03* X234100Y248300D03*X233100Y248300D03*X231200Y248900D03*X230200Y248900D03* X288900Y248060D03*X289900Y248060D03*X288900Y249060D03*X289900Y249060D03* X297100Y248060D03*X298100Y248060D03*X297100Y249550D03*X298100Y249550D03* X303900Y249060D03*X302900Y249060D03*X311100Y248060D03*X311100Y250060D03* X312100Y248060D03*X312100Y250060D03*X143800Y252700D03*X142800Y252700D03* X143800Y251700D03*X142800Y251700D03*X177800Y252500D03*X178800Y252500D03* X177800Y253500D03*X178800Y253500D03*X210500Y251900D03*X209500Y251900D03* X212100Y251900D03*X213100Y251900D03*X224000Y251650D03*X225000Y251650D03* X228500Y252500D03*X227500Y252500D03*X228500Y253500D03*X227500Y253500D03* X228500Y251500D03*X227500Y251500D03*X234100Y253300D03*X233100Y253300D03* X230200Y252900D03*X231200Y252900D03*X230200Y251900D03*X231200Y251900D03* X230200Y250900D03*X231200Y250900D03*X234100Y252300D03*X233100Y252300D03* X234100Y251300D03*X233100Y251300D03*X143800Y255600D03*X142800Y255600D03* X177800Y254500D03*X178800Y254500D03*X228500Y254500D03*X227500Y254500D03* X228500Y255500D03*X227500Y255500D03*X234100Y256300D03*X233100Y256300D03* X231200Y254900D03*X230200Y254900D03*X234100Y255300D03*X233100Y255300D03* X231200Y255900D03*X230200Y255900D03*X231200Y253900D03*X230200Y253900D03* X233100Y254300D03*X234100Y254300D03*X262200Y254700D03*X263200Y254700D03* X262200Y255700D03*X263200Y255700D03*X289900Y256060D03*X288900Y256060D03* X177700Y258100D03*X178700Y258100D03*X177700Y259100D03*X178700Y259100D03* X181300Y259100D03*X180300Y259100D03*X228500Y258500D03*X227500Y258500D03* X228500Y257500D03*X227500Y257500D03*X228500Y256500D03*X227500Y256500D03* X231200Y256900D03*X230200Y256900D03*X234100Y258300D03*X233100Y258300D03* X231200Y257900D03*X230200Y257900D03*X234100Y259300D03*X233100Y259300D03* X234100Y257300D03*X233100Y257300D03*X230200Y258900D03*X231200Y258900D03* X262200Y256700D03*X263200Y256700D03*X262200Y257700D03*X263200Y257700D03* X262200Y258700D03*X263200Y258700D03*X289900Y258060D03*X288900Y258060D03* X289900Y259060D03*X288900Y259060D03*X298100Y257060D03*X297100Y257060D03* X298100Y258060D03*X297100Y258060D03*X143700Y259500D03*X142700Y259500D03* X143700Y260500D03*X142700Y260500D03*X143700Y261500D03*X142700Y261500D03* X177700Y261600D03*X178700Y261600D03*X181300Y260600D03*X180300Y260600D03* X181300Y262000D03*X180300Y262000D03*X227500Y259500D03*X228500Y259500D03* X232300Y262100D03*X231300Y262100D03*X232300Y261100D03*X231300Y261100D03* X263200Y261800D03*X262200Y261800D03*X289900Y261060D03*X288900Y261060D03* X289900Y262060D03*X288900Y262060D03*X298100Y260060D03*X297100Y260060D03* X298100Y261060D03*X297100Y261060D03*X143700Y262500D03*X142700Y262500D03* X177700Y262600D03*X178700Y262600D03*X177700Y264700D03*X178700Y264700D03* X178700Y263700D03*X177700Y263700D03*X181300Y263400D03*X180300Y263400D03* X181300Y264800D03*X180300Y264800D03*X232300Y263100D03*X231300Y263100D03* X232300Y264100D03*X231300Y264100D03*X289900Y264060D03*X288900Y264060D03* X298100Y263060D03*X297100Y263060D03*X298100Y264060D03*X297100Y264060D03* X143700Y267600D03*X142700Y267600D03*X143700Y265600D03*X142700Y265600D03* X143700Y266600D03*X142700Y266600D03*X181300Y266200D03*X180300Y266200D03* X181300Y267800D03*X180300Y267800D03*X202400Y267100D03*X201400Y267100D03* X232300Y266100D03*X231300Y266100D03*X232300Y267100D03*X231300Y267100D03* X232300Y265100D03*X231300Y265100D03*X289900Y265060D03*X288900Y265060D03* X290000Y267050D03*X289000Y267050D03*X298100Y266060D03*X297100Y266060D03* X298100Y267060D03*X297100Y267060D03*X177800Y269300D03*X178800Y269300D03* X181300Y269300D03*X180300Y269300D03*X202400Y269100D03*X201400Y269100D03* X202400Y268100D03*X201400Y268100D03*X200600Y270100D03*X199600Y270100D03* X219900Y270000D03*X220900Y270000D03*X290000Y268050D03*X289000Y268050D03* X289900Y270060D03*X288900Y270060D03*X298100Y269060D03*X297100Y269060D03* X298100Y270060D03*X297100Y270060D03*X200600Y272100D03*X199600Y272100D03* X200600Y271100D03*X199600Y271100D03*X200600Y273100D03*X199600Y273100D03* X219900Y271000D03*X220900Y271000D03*X219900Y272000D03*X220900Y272000D03* X289900Y273060D03*X288900Y273060D03*X298100Y272060D03*X297100Y272060D03* X298100Y273060D03*X297100Y273060D03*X289900Y274060D03*X288900Y274060D03* X288900Y276060D03*X289900Y276060D03*X298100Y275060D03*X297100Y275060D03* X298100Y276060D03*X297100Y276060D03*X288900Y277060D03*X289900Y277060D03* X288900Y279060D03*X289900Y279060D03*X298100Y278060D03*X297100Y278060D03* X298100Y279060D03*X297100Y279060D03*X288900Y280060D03*X289900Y280060D03* X288900Y282060D03*X289900Y282060D03*X298100Y281060D03*X297100Y281060D03* X298100Y282060D03*X297100Y282060D03*X288900Y283060D03*X289900Y283060D03* X298100Y284060D03*X297100Y284060D03*X288900Y285060D03*X289900Y285060D03* X298100Y285060D03*X297100Y285060D03*D02*G54D14*X167500Y219000D03* X162950Y220450D03*X162950Y221850D03*X171300Y220500D03*X171300Y221900D03* X167500Y220400D03*X172700Y220500D03*X172700Y221900D03*X210400Y221900D03* X210400Y223300D03*X218400Y232350D03*X221200Y232350D03*X219800Y232350D03* X162850Y235350D03*X166900Y235350D03*X168800Y236550D03*X168800Y235150D03* X170850Y236550D03*X170850Y235150D03*X218400Y233750D03*X221200Y233750D03* X219800Y233750D03*X151300Y238700D03*X153800Y238700D03*X162200Y238700D03* X162850Y236750D03*X169450Y238200D03*X170850Y238200D03*X164600Y238700D03* X166900Y236750D03*X258200Y238300D03*X258200Y236900D03*X151300Y240100D03* X153800Y240100D03*X162200Y240100D03*X169450Y239600D03*X170850Y239600D03* X164600Y240100D03*X279600Y255900D03*X281100Y255900D03*X143500Y256800D03* X143500Y258200D03*X208500Y259350D03*X279600Y257300D03*X281100Y257300D03* X208500Y260750D03*X194900Y270800D03*X194900Y272200D03*X193500Y272200D03* X193500Y270800D03*X196300Y270800D03*X196300Y272200D03*X225600Y271350D03* X225600Y272750D03*X227000Y271350D03*X227000Y272750D03*X162300Y275650D03* X162300Y274250D03*X170100Y275650D03*X170100Y274250D03*X166700Y274250D03* X166700Y275650D03*X218200Y282000D03*X205000Y283800D03*X205000Y282400D03* X218200Y283400D03*X199800Y287450D03*X198400Y287450D03*X197000Y287450D03* X228700Y287200D03*X227300Y287200D03*X230100Y287200D03*X199800Y288850D03* X198400Y288850D03*X197000Y288850D03*X228700Y288600D03*X227300Y288600D03* X230100Y288600D03*D02*G54D15*X205800Y233500D03*X210500Y233500D03* X210500Y232500D03*X207500Y233500D03*X207500Y232500D03*X208500Y233500D03* X208500Y232500D03*X209500Y233500D03*X209500Y232500D03*X211500Y233500D03* X211500Y232500D03*X212500Y233500D03*X212500Y232500D03*X205800Y234500D03* X152600Y239200D03*X157600Y239200D03*X163400Y239200D03*X159800Y238750D03* X165800Y239200D03*X167800Y239200D03*X166800Y239200D03*X241500Y238000D03* X241500Y237000D03*X240500Y238000D03*X240500Y237000D03*X242500Y238000D03* X242500Y237000D03*X245500Y238000D03*X245500Y237000D03*X243500Y238000D03* X243500Y237000D03*X249500Y238000D03*X249500Y237000D03*X244500Y238000D03* X244500Y237000D03*X246500Y238000D03*X246500Y237000D03*X247500Y238000D03* X247500Y237000D03*X248500Y238000D03*X248500Y237000D03*X254500Y238000D03* X254500Y237000D03*X253500Y238000D03*X253500Y237000D03*X255500Y238000D03* X255500Y237000D03*X256500Y238000D03*X256500Y237000D03*X252500Y238000D03* X252500Y237000D03*X250500Y238000D03*X250500Y237000D03*X152600Y240200D03* X157600Y240200D03*X163400Y240200D03*X159800Y239750D03*X165800Y240200D03* X167800Y240200D03*X166800Y240200D03*X237700Y241200D03*X237700Y240200D03* X239700Y241200D03*X239700Y240200D03*X238700Y241200D03*X238700Y240200D03* X236700Y241200D03*X236700Y240200D03*X235700Y241200D03*X235700Y240200D03* X240700Y241200D03*X240700Y240200D03*X241700Y241200D03*X241700Y240200D03* X242700Y241200D03*X242700Y240200D03*X243700Y241200D03*X243700Y240200D03* X244700Y241200D03*X244700Y240200D03*X245700Y241200D03*X245700Y240200D03* X246700Y241200D03*X246700Y240200D03*X201900Y247600D03*X201900Y248600D03* X204200Y252000D03*X204200Y253000D03*X206300Y252000D03*X206300Y253000D03* X207300Y252000D03*X207300Y253000D03*X208300Y252000D03*X208300Y253000D03* X205300Y264350D03*X205300Y265350D03*X237300Y269700D03*X238300Y269700D03* X236300Y269700D03*X240300Y269700D03*X241300Y269700D03*X239300Y269700D03* X235300Y269700D03*X243300Y270100D03*X248300Y269700D03*X245300Y270100D03* X244300Y270100D03*X249300Y269700D03*X242300Y269700D03*X251300Y269700D03* X250300Y269700D03*X237300Y270700D03*X238300Y270700D03*X236300Y270700D03* X240300Y270700D03*X241300Y270700D03*X239300Y270700D03*X235300Y270700D03* X243300Y271100D03*X248300Y270700D03*X245300Y271100D03*X244300Y271100D03* X249300Y270700D03*X242300Y270700D03*X251300Y270700D03*X250300Y270700D03* X150900Y274150D03*X150900Y275150D03*X152000Y274150D03*X152000Y275150D03* X155700Y274150D03*X155700Y275150D03*X163500Y274150D03*X163500Y275150D03* X164500Y274150D03*X164500Y275150D03*X165500Y274150D03*X165500Y275150D03* X209200Y282400D03*X209200Y283400D03*X207200Y282400D03*X207200Y283400D03* X208200Y282400D03*X208200Y283400D03*X206200Y282400D03*X206200Y283400D03* X210200Y282400D03*X210200Y283400D03*X216700Y282400D03*X216700Y283400D03* X215700Y282400D03*X215700Y283400D03*X214700Y282400D03*X214700Y283400D03* X211200Y282400D03*X211200Y283400D03*X212200Y282400D03*X212200Y283400D03* X213200Y282400D03*X213200Y283400D03*D02*G54D16*X151300Y247700D03* X152300Y247700D03*X153300Y247700D03*X154300Y247700D03*X155300Y247700D03* X156300Y247700D03*X157300Y247700D03*X158300Y247700D03*X159300Y247700D03* X160300Y247700D03*X161300Y247700D03*X162300Y247700D03*X163300Y247700D03* X164300Y247700D03*X165300Y247700D03*X166300Y247700D03*X167300Y247700D03* X168300Y247700D03*X169300Y247700D03*X170300Y247700D03*X151300Y248700D03* X152300Y248700D03*X153300Y248700D03*X154300Y248700D03*X155300Y248700D03* X156300Y248700D03*X151300Y249700D03*X152300Y249700D03*X153300Y249700D03* X154300Y249700D03*X155300Y249700D03*X156300Y249700D03*X151300Y250700D03* X152300Y250700D03*X153300Y250700D03*X154300Y250700D03*X155300Y250700D03* X156300Y250700D03*X157300Y248700D03*X158300Y248700D03*X159300Y248700D03* X160300Y248700D03*X161300Y248700D03*X162300Y248700D03*X163300Y248700D03* X157300Y249700D03*X158300Y249700D03*X159300Y249700D03*X160300Y249700D03* X161300Y249700D03*X162300Y249700D03*X163300Y249700D03*X157300Y250700D03* X158300Y250700D03*X159300Y250700D03*X160300Y250700D03*X161300Y250700D03* X162300Y250700D03*X163300Y250700D03*X164300Y248700D03*X165300Y248700D03* X166300Y248700D03*X167300Y248700D03*X168300Y248700D03*X169300Y248700D03* X170300Y248700D03*X164300Y249700D03*X165300Y249700D03*X166300Y249700D03* X167300Y249700D03*X168300Y249700D03*X169300Y249700D03*X170300Y249700D03* X164300Y250700D03*X165300Y250700D03*X166300Y250700D03*X167300Y250700D03* X168300Y250700D03*X169300Y250700D03*X170300Y250700D03*X151300Y251700D03* X152300Y251700D03*X153300Y251700D03*X154300Y251700D03*X151300Y252700D03* X152300Y252700D03*X153300Y252700D03*X154300Y252700D03*X167300Y251700D03* X168300Y251700D03*X169300Y251700D03*X170300Y251700D03*X167300Y252700D03* X168300Y252700D03*X169300Y252700D03*X170300Y252700D03*X151300Y253700D03* X152300Y253700D03*X153300Y253700D03*X154300Y253700D03*X151300Y254700D03* X152300Y254700D03*X153300Y254700D03*X154300Y254700D03*X151300Y255700D03* X152300Y255700D03*X153300Y255700D03*X154300Y255700D03*X167300Y253700D03* X168300Y253700D03*X169300Y253700D03*X170300Y253700D03*X167300Y254700D03* X168300Y254700D03*X169300Y254700D03*X170300Y254700D03*X167300Y255700D03* X168300Y255700D03*X169300Y255700D03*X170300Y255700D03*X151300Y256700D03* X152300Y256700D03*X153300Y256700D03*X154300Y256700D03*X151300Y257700D03* X152300Y257700D03*X153300Y257700D03*X154300Y257700D03*X151300Y258700D03* X152300Y258700D03*X153300Y258700D03*X154300Y258700D03*X167300Y256700D03* X168300Y256700D03*X169300Y256700D03*X170300Y256700D03*X167300Y257700D03* X168300Y257700D03*X169300Y257700D03*X170300Y257700D03*X167300Y258700D03* X168300Y258700D03*X169300Y258700D03*X170300Y258700D03*X151300Y259700D03* X152300Y259700D03*X153300Y259700D03*X154300Y259700D03*X151300Y260700D03* X152300Y260700D03*X153300Y260700D03*X154300Y260700D03*X151300Y261700D03* X152300Y261700D03*X153300Y261700D03*X154300Y261700D03*X167300Y259700D03* X168300Y259700D03*X169300Y259700D03*X170300Y259700D03*X167300Y260700D03* X168300Y260700D03*X169300Y260700D03*X170300Y260700D03*X167300Y261700D03* X168300Y261700D03*X169300Y261700D03*X170300Y261700D03*X151300Y262700D03* X152300Y262700D03*X153300Y262700D03*X154300Y262700D03*X151300Y263700D03* X152300Y263700D03*X153300Y263700D03*X154300Y263700D03*X155300Y263700D03* X156300Y263700D03*X151300Y264700D03*X152300Y264700D03*X153300Y264700D03* X154300Y264700D03*X155300Y264700D03*X156300Y264700D03*X157300Y263700D03* X158300Y263700D03*X159300Y263700D03*X160300Y263700D03*X161300Y263700D03* X162300Y263700D03*X163300Y263700D03*X157300Y264700D03*X158300Y264700D03* X159300Y264700D03*X160300Y264700D03*X161300Y264700D03*X162300Y264700D03* X163300Y264700D03*X167300Y262700D03*X168300Y262700D03*X169300Y262700D03* X170300Y262700D03*X164300Y263700D03*X165300Y263700D03*X166300Y263700D03* X167300Y263700D03*X168300Y263700D03*X169300Y263700D03*X170300Y263700D03* X164300Y264700D03*X165300Y264700D03*X166300Y264700D03*X167300Y264700D03* X168300Y264700D03*X169300Y264700D03*X170300Y264700D03*X151300Y265700D03* X152300Y265700D03*X153300Y265700D03*X154300Y265700D03*X155300Y265700D03* X156300Y265700D03*X151300Y266700D03*X152300Y266700D03*X153300Y266700D03* X154300Y266700D03*X155300Y266700D03*X156300Y266700D03*X157300Y265700D03* X158300Y265700D03*X159300Y265700D03*X160300Y265700D03*X161300Y265700D03* X162300Y265700D03*X163300Y265700D03*X157300Y266700D03*X158300Y266700D03* X159300Y266700D03*X160300Y266700D03*X161300Y266700D03*X162300Y266700D03* X163300Y266700D03*X164300Y265700D03*X165300Y265700D03*X166300Y265700D03* X167300Y265700D03*X168300Y265700D03*X169300Y265700D03*X170300Y265700D03* X164300Y266700D03*X165300Y266700D03*X166300Y266700D03*X167300Y266700D03* X168300Y266700D03*X169300Y266700D03*X170300Y266700D03*D02*G54D17* X163085Y224078D03*X169435Y224078D03*X168165Y224078D03*X164355Y224078D03* X165625Y224078D03*X166895Y224078D03*X170705Y224078D03*X171975Y224078D03* X174515Y224078D03*X173245Y224078D03*X163085Y233222D03*X168165Y233222D03* X169435Y233222D03*X170705Y233222D03*X171975Y233222D03*X166895Y233222D03* X165625Y233222D03*X164355Y233222D03*X173245Y233222D03*X174515Y233222D03* X218270Y254320D03*X217000Y254320D03*X215730Y254320D03*X214460Y254320D03* X213190Y254320D03*X220810Y254320D03*X219540Y254320D03*X218270Y265750D03* X213190Y265750D03*X214460Y265750D03*X215730Y265750D03*X217000Y265750D03* X219540Y265750D03*X220810Y265750D03*D02*G54D18*X169400Y219000D03* X169400Y221800D03*D02*G54D19*X178890Y277260D03*X186510Y277260D03* X185240Y277260D03*X183970Y277260D03*X182700Y277260D03*X181430Y277260D03* X180160Y277260D03*X178890Y281940D03*X186510Y281940D03*X185240Y281940D03* X183970Y281940D03*X182700Y281940D03*X181430Y281940D03*X180160Y281940D03*D02* G54D70*X289400Y217971D03*X289400Y219749D03*X214400Y232411D03*X216600Y232311D03* X214400Y234189D03*X216600Y234089D03*X184950Y262011D03*X186900Y262011D03* X225900Y260711D03*X184950Y263789D03*X186900Y263789D03*X225900Y262489D03* X231900Y269611D03*X231900Y271389D03*D02*G54D71*X217900Y219350D03* X217100Y219350D03*X216300Y219350D03*X215500Y219350D03*X214700Y219350D03* X213900Y219350D03*X221900Y219350D03*X221100Y219350D03*X220300Y219350D03* X219500Y219350D03*X218700Y219350D03*X213900Y230750D03*X214700Y230750D03* X215500Y230750D03*X216300Y230750D03*X217100Y230750D03*X217900Y230750D03* X218700Y230750D03*X219500Y230750D03*X220300Y230750D03*X221100Y230750D03* X221900Y230750D03*X194900Y274600D03*X194100Y274600D03*X193300Y274600D03* X192500Y274600D03*X200500Y274600D03*X199700Y274600D03*X198900Y274600D03* X198100Y274600D03*X197300Y274600D03*X196500Y274600D03*X195700Y274600D03* X225700Y274200D03*X224900Y274200D03*X224100Y274200D03*X223300Y274200D03* X222500Y274200D03*X230500Y274200D03*X229700Y274200D03*X228900Y274200D03* X228100Y274200D03*X227300Y274200D03*X226500Y274200D03*X192500Y286000D03* X193300Y286000D03*X194100Y286000D03*X194900Y286000D03*X195700Y286000D03* X196500Y286000D03*X197300Y286000D03*X198100Y286000D03*X198900Y286000D03* X199700Y286000D03*X200500Y286000D03*X222500Y285600D03*X223300Y285600D03* X224100Y285600D03*X224900Y285600D03*X225700Y285600D03*X226500Y285600D03* X227300Y285600D03*X228100Y285600D03*X228900Y285600D03*X229700Y285600D03* X230500Y285600D03*D02*G54D20*X212200Y221050D03*X212200Y221850D03* X223600Y221850D03*X223600Y221050D03*X212200Y222650D03*X212200Y223450D03* X212200Y224250D03*X212200Y225050D03*X223600Y225050D03*X223600Y224250D03* X223600Y223450D03*X223600Y222650D03*X212200Y225850D03*X212200Y226650D03* X212200Y227450D03*X223600Y227450D03*X223600Y226650D03*X223600Y225850D03* X212200Y228250D03*X212200Y229050D03*X223600Y229050D03*X223600Y228250D03* X190800Y276300D03*X202200Y276300D03*X220800Y275900D03*X232200Y275900D03* X190800Y277100D03*X190800Y277900D03*X190800Y278700D03*X202200Y278700D03* X202200Y277900D03*X202200Y277100D03*X220800Y276700D03*X220800Y277500D03* X220800Y278300D03*X220800Y279100D03*X232200Y279100D03*X232200Y278300D03* X232200Y277500D03*X232200Y276700D03*X190800Y279500D03*X190800Y280300D03* X190800Y281100D03*X190800Y281900D03*X202200Y281900D03*X202200Y281100D03* X202200Y280300D03*X202200Y279500D03*X220800Y279900D03*X220800Y280700D03* X220800Y281500D03*X232200Y281500D03*X232200Y280700D03*X232200Y279900D03* X190800Y282700D03*X190800Y283500D03*X190800Y284300D03*X202200Y284300D03* X202200Y283500D03*X202200Y282700D03*X220800Y282300D03*X220800Y283100D03* X220800Y283900D03*X232200Y283900D03*X232200Y283100D03*X232200Y282300D03*D02* G54D21*X212911Y217500D03*X214689Y217500D03*X303589Y219160D03*X301811Y219160D03* X311411Y219560D03*X313189Y219560D03*X303589Y221160D03*X301811Y221160D03* X311411Y221560D03*X313189Y221560D03*X224789Y240750D03*X223011Y240750D03* X264811Y267900D03*X266589Y267900D03*X301811Y267060D03*X303589Y267060D03* X224189Y272350D03*X222411Y272350D03*X311511Y276500D03*X313289Y276500D03* X303589Y276960D03*X301811Y276960D03*X303589Y278960D03*X301811Y278960D03* X311511Y278500D03*X313289Y278500D03*X193811Y287850D03*X195589Y287850D03*D02* G54D22*X267600Y227200D03*X267600Y233300D03*X229400Y239750D03*X278500Y242050D03* X198850Y248300D03*X229400Y245850D03*X278500Y248150D03*X198850Y254400D03* X278500Y260650D03*X278500Y266750D03*X254500Y277450D03*X268000Y278350D03* X254500Y283550D03*X268000Y284450D03*D02*G54D23*X246350Y227600D03* X252450Y227600D03*X197350Y263850D03*X203450Y263850D03*X238050Y279900D03* X244150Y279900D03*X211450Y286450D03*X217550Y286450D03*D02*G54D24* X311250Y224460D03*X312950Y224460D03*X208450Y255550D03*X206750Y255550D03* X275350Y256800D03*X273650Y256800D03*X207250Y259150D03*X205550Y259150D03* X208450Y257350D03*X206750Y257350D03*X207250Y260950D03*X205550Y260950D03* X287850Y260060D03*X286150Y260060D03*X208450Y264550D03*X206750Y264550D03* X208450Y262750D03*X206750Y262750D03*D02*G54D25*X211285Y256225D03* X222715Y256225D03*X211285Y257495D03*X211285Y258765D03*X222715Y258765D03* X222715Y257495D03*X211285Y260035D03*X211285Y261305D03*X222715Y261305D03* X222715Y260035D03*X211285Y262575D03*X211285Y263845D03*X222715Y263845D03* X222715Y262575D03*D02*G54D26*X299800Y221910D03*X299800Y220210D03* X217000Y249850D03*X211600Y250700D03*X211600Y249000D03*X213400Y250700D03* X213400Y249000D03*X215200Y249850D03*X218800Y249850D03*X220600Y249850D03* X222400Y249850D03*X217000Y251550D03*X215200Y251550D03*X218800Y251550D03* X220600Y251550D03*X222400Y251550D03*X222600Y270050D03*X222600Y268350D03* X247900Y277950D03*X247900Y279650D03*D02*G54D27*X295350Y219060D03* X291650Y219060D03*X309350Y219060D03*X305650Y219060D03*X295350Y220060D03* X295350Y221060D03*X295350Y222060D03*X291650Y220060D03*X291650Y221060D03* X291650Y222060D03*X309350Y220060D03*X309350Y221060D03*X309350Y222060D03* X305650Y220060D03*X305650Y221060D03*X305650Y222060D03*X295350Y223060D03* X295350Y224060D03*X295350Y225060D03*X291650Y223060D03*X291650Y224060D03* X291650Y225060D03*X309350Y223060D03*X309350Y224060D03*X309350Y225060D03* X305650Y223060D03*X305650Y224060D03*X305650Y225060D03*X295350Y226060D03* X295350Y227060D03*X291650Y226060D03*X291650Y227060D03*X309350Y226060D03* X309350Y227060D03*X305650Y226060D03*X305650Y227060D03*X295350Y228060D03* X295350Y229060D03*X295350Y230060D03*X291650Y228060D03*X291650Y229060D03* X291650Y230060D03*X309350Y228060D03*X309350Y229060D03*X309350Y230060D03* X305650Y228060D03*X305650Y229060D03*X305650Y230060D03*X295350Y231060D03* X295350Y232060D03*X295350Y233060D03*X291650Y231060D03*X291650Y232060D03* X291650Y233060D03*X309350Y231060D03*X309350Y232060D03*X309350Y233060D03* X305650Y231060D03*X305650Y232060D03*X305650Y233060D03*X295350Y234060D03* X295350Y235060D03*X295350Y236060D03*X291650Y234060D03*X291650Y235060D03* X291650Y236060D03*X309350Y234060D03*X309350Y235060D03*X309350Y236060D03* X305650Y234060D03*X305650Y235060D03*X305650Y236060D03*X295350Y237060D03* X295350Y238060D03*X295350Y239060D03*X291650Y237060D03*X291650Y238060D03* X291650Y239060D03*X309350Y237060D03*X309350Y238060D03*X309350Y239060D03* X305650Y237060D03*X305650Y238060D03*X305650Y239060D03*X295350Y240060D03* X295350Y241060D03*X295350Y242060D03*X291650Y240060D03*X291650Y241060D03* X291650Y242060D03*X309350Y240060D03*X309350Y241060D03*X309350Y242060D03* X305650Y240060D03*X305650Y241060D03*X305650Y242060D03*X295350Y243060D03* X295350Y244060D03*X295350Y245060D03*X291650Y243060D03*X291650Y244060D03* X291650Y245060D03*X309350Y243060D03*X309350Y244060D03*X309350Y245060D03* X305650Y243060D03*X305650Y244060D03*X305650Y245060D03*X295350Y246060D03* X295350Y247060D03*X291650Y246060D03*X291650Y247060D03*X309350Y246060D03* X309350Y247060D03*X305650Y246060D03*X305650Y247060D03*X295350Y248060D03* X295350Y249060D03*X295350Y250060D03*X291650Y248060D03*X291650Y249060D03* X291650Y250060D03*X309350Y248060D03*X309350Y249060D03*X309350Y250060D03* X305650Y248060D03*X305650Y249060D03*X305650Y250060D03*X295350Y256060D03* X291650Y256060D03*X309350Y256060D03*X305650Y256060D03*X295350Y257060D03* X295350Y258060D03*X295350Y259060D03*X291650Y257060D03*X291650Y258060D03* X291650Y259060D03*X309350Y257060D03*X309350Y258060D03*X309350Y259060D03* X305650Y257060D03*X305650Y258060D03*X305650Y259060D03*X295350Y260060D03* X295350Y261060D03*X295350Y262060D03*X291650Y260060D03*X291650Y261060D03* X291650Y262060D03*X309350Y260060D03*X309350Y261060D03*X309350Y262060D03* X305650Y260060D03*X305650Y261060D03*X305650Y262060D03*X295350Y263060D03* X295350Y264060D03*X291650Y263060D03*X291650Y264060D03*X309350Y263060D03* X309350Y264060D03*X305650Y263060D03*X305650Y264060D03*X295350Y265060D03* X295350Y266060D03*X295350Y267060D03*X291650Y265060D03*X291650Y266060D03* X291650Y267060D03*X309350Y265060D03*X309350Y266060D03*X309350Y267060D03* X305650Y265060D03*X305650Y266060D03*X305650Y267060D03*X295350Y268060D03* X295350Y269060D03*X295350Y270060D03*X291650Y268060D03*X291650Y269060D03* X291650Y270060D03*X309350Y268060D03*X309350Y269060D03*X309350Y270060D03* X305650Y268060D03*X305650Y269060D03*X305650Y270060D03*X295350Y271060D03* X295350Y272060D03*X295350Y273060D03*X291650Y271060D03*X291650Y272060D03* X291650Y273060D03*X309350Y271060D03*X309350Y272060D03*X309350Y273060D03* X305650Y271060D03*X305650Y272060D03*X305650Y273060D03*X295350Y274060D03* X295350Y275060D03*X295350Y276060D03*X291650Y274060D03*X291650Y275060D03* X291650Y276060D03*X309350Y274060D03*X309350Y275060D03*X309350Y276060D03* X305650Y274060D03*X305650Y275060D03*X305650Y276060D03*X295350Y277060D03* X295350Y278060D03*X295350Y279060D03*X291650Y277060D03*X291650Y278060D03* X291650Y279060D03*X309350Y277060D03*X309350Y278060D03*X309350Y279060D03* X305650Y277060D03*X305650Y278060D03*X305650Y279060D03*X295350Y280060D03* X295350Y281060D03*X295350Y282060D03*X291650Y280060D03*X291650Y281060D03* X291650Y282060D03*X309350Y280060D03*X309350Y281060D03*X309350Y282060D03* X305650Y280060D03*X305650Y281060D03*X305650Y282060D03*X295350Y283060D03* X295350Y284060D03*X291650Y283060D03*X291650Y284060D03*X309350Y283060D03* X309350Y284060D03*X305650Y283060D03*X305650Y284060D03*X295350Y285060D03* X295350Y286060D03*X295350Y287060D03*X291650Y285060D03*X291650Y286060D03* X291650Y287060D03*X309350Y285060D03*X309350Y286060D03*X309350Y287060D03* X305650Y285060D03*X305650Y286060D03*X305650Y287060D03*D02*G54D28* X300500Y253010D03*X284500Y253010D03*X284500Y287010D03*X284500Y219010D03* X177500Y218260D03*X177500Y287760D03*D02*G54D29*X139500Y253000D02* X139500Y253100D01*X138979Y253621D02*X139500Y253100D01*X140451Y266531D02* X140451Y266610D01*X138675Y247655D02*X138675Y247744D01*X140900Y247400D02* X140900Y246730D01*X141870Y245760D02*X140900Y246730D01*X140900Y253000D02* X140900Y253100D01*X141421Y253621D02*X140900Y253100D01*X140900Y251600D02* X140900Y252014D01*X140900Y248800D02*X140900Y248900D01*X140330Y249470D02* X140900Y248900D01*X142293Y252293D02*X142293Y252387D01*X141906Y252774D02* X142293Y252387D01*X142380Y252170D02*X142380Y252206D01*X142293Y252293D02* X142380Y252206D01*X142075Y247345D02*X142075Y247205D01*X142700Y265600D02* X142700Y265080D01*X142590Y264970D02*X142700Y265080D01*X143700Y245000D02* X143700Y244900D01*X144316Y245134D02*X144316Y244946D01*X144270Y244900D02* X144316Y244946D01*X142800Y251700D02*X142800Y251750D01*X142380Y252170D02* X142800Y251750D01*X142800Y249200D02*X142800Y248680D01*X143065Y248415D02* X142800Y248680D01*X143421Y253371D02*X143421Y253485D01*X142800Y252700D02* X142800Y252750D01*X143421Y253371D02*X142800Y252750D01*X145896Y264306D02* X145896Y264716D01*X146186Y265006D02*X145896Y264716D01*X147380Y264756D02* X147380Y264730D01*X152800Y264535D02*X152800Y264865D01*X152495Y265170D02* X152800Y264865D01*X152600Y240200D02*X152600Y240650D01*X152180Y241070D02* X152600Y240650D01*X152800Y263535D02*X152800Y264200D01*X152300Y264700D02* X152800Y264200D01*X152830Y254170D02*X152830Y254895D01*X153135Y255200D02* X152830Y254895D01*X152800Y252200D02*X152800Y252865D01*X152495Y253170D02* X152800Y252865D01*X152294Y267971D02*X152294Y268440D01*X152800Y266200D02* X152800Y267465D01*X152294Y267971D02*X152800Y267465D01*X152800Y265865D02* X152800Y265200D01*X153300Y264700D02*X152800Y265200D01*X151800Y267360D02* X151800Y266535D01*X152135Y266200D02*X151800Y266535D01*X155293Y246188D02* X155293Y245693D01*X154782Y248218D02*X154782Y246643D01*X155160Y246265D02* X154782Y246643D01*X153817Y248847D02*X153817Y245615D01*X154552Y244880D02* X153817Y245615D01*X153300Y249700D02*X153300Y249230D01*X153330Y249200D02* X153300Y249230D01*X153800Y241229D02*X153800Y240100D01*X154311Y243721D02* X154311Y241741D01*X153800Y241229D02*X154311Y241741D01*X155288Y247027D02* X155288Y246836D01*X155300Y247700D02*X155300Y247039D01*X155288Y247027D02* X155300Y247039D01*X153470Y267690D02*X153470Y268069D01*X153860Y268459D02* X153470Y268069D01*X153630Y267230D02*X153630Y267530D01*X153470Y267690D02* X153630Y267530D01*X153800Y266200D02*X153800Y267060D01*X153630Y267230D02* X153800Y267060D01*X153800Y262535D02*X153800Y262865D01*X153465Y263200D02* X153800Y262865D01*X153800Y261535D02*X153800Y262200D01*X153300Y262700D02* X153800Y262200D01*X153800Y260535D02*X153800Y261200D01*X153300Y261700D02* X153800Y261200D01*X153800Y255535D02*X153800Y255865D01*X154135Y256200D02* X153800Y255865D01*X153800Y253200D02*X153800Y253865D01*X154135Y254200D02* X153800Y253865D01*X154300Y251700D02*X154300Y250700D01*X155300Y250761D02* X155300Y250700D01*X154300Y249700D02*X154300Y249761D01*X155300Y250761D02* X154300Y249761D01*X155050Y251450D02*X155050Y251011D01*X155300Y250761D02* X155050Y251011D01*X156316Y267751D02*X156316Y268810D01*X156300Y266700D02* X156300Y267735D01*X156316Y267751D02*X156300Y267735D01*X156290Y262702D02* X156290Y262267D01*X156738Y261820D02*X156290Y262267D01*X155800Y264200D02* X155800Y263193D01*X156290Y262702D02*X155800Y263193D01*X157300Y263240D02* X157300Y263700D01*X156815Y263332D02*X156815Y264901D01*X157124Y265210D02* X156815Y264901D01*X157297Y262237D02*X157297Y262850D01*X156815Y263332D02* X157297Y262850D01*X157188Y267394D02*X157188Y267506D01*X157300Y266700D02* X157300Y267282D01*X157188Y267394D02*X157300Y267282D01*X156697Y258384D02* X156697Y259144D01*X155641Y260200D02*X156697Y259144D01*X156308Y258458D02* X156308Y257698D01*X156346Y259170D02*X156346Y258495D01*X156308Y258458D02* X156346Y258495D01*X158794Y251636D02*X158794Y250194D01*X158300Y249700D02* X158794Y250194D01*X158086Y259700D02*X158086Y257743D01*X157930Y261270D02* X157930Y259856D01*X158086Y259700D02*X157930Y259856D01*X157530Y262350D02* X157530Y263010D01*X157300Y263240D02*X157530Y263010D01*X158400Y260330D02* X158400Y261480D01*X157530Y262350D02*X158400Y261480D01*X158164Y259970D02* X158164Y261370D01*X157297Y262237D02*X158164Y261370D01*X157800Y266200D02* X157800Y267860D01*X157380Y268280D02*X157800Y267860D01*X158771Y248229D02* X158771Y246964D01*X159025Y239495D02*X159025Y239475D01*X160300Y263016D02* X160300Y263700D01*X160622Y262481D02*X160622Y262694D01*X160300Y263016D02* X160622Y262694D01*X159830Y262573D02*X159830Y264230D01*X160300Y264700D02* X159830Y264230D01*X160778Y267223D02*X160778Y266178D01*X160300Y265700D02* X160778Y266178D01*X161300Y263230D02*X161300Y263700D01*X161612Y262530D02* X161612Y262918D01*X161300Y263230D02*X161612Y262918D01*X161117Y262943D02* X161117Y261820D01*X160830Y264230D02*X160830Y263230D01*X161117Y262943D02* X160830Y263230D01*X161254Y244856D02*X161254Y245710D01*X162300Y246756D02* X161254Y245710D01*X161510Y268159D02*X161510Y266910D01*X161300Y266700D02* X161510Y266910D01*X161300Y251609D02*X161300Y250700D01*X161114Y252290D02* X161114Y251795D01*X161300Y251609D02*X161114Y251795D01*X162300Y262998D02* X162300Y263700D01*X162378Y262872D02*X162378Y262920D01*X162300Y262998D02* X162378Y262920D01*X162460Y261860D02*X162460Y262790D01*X162378Y262872D02* X162460Y262790D01*X163780Y268004D02*X163780Y268678D01*X164015Y268913D02* X163780Y268678D01*X162200Y238700D02*X162200Y238130D01*X161850Y237780D02* X162200Y238130D01*X163500Y274150D02*X163500Y273680D01*X163241Y273421D02* X163500Y273680D01*X162020Y267360D02*X162020Y267620D01*X161800Y266200D02* X161800Y267140D01*X162020Y267360D02*X161800Y267140D01*X163340Y267346D02* X163340Y267481D01*X163300Y266700D02*X163300Y267306D01*X163340Y267346D02* X163300Y267306D01*X163760Y254420D02*X163760Y254984D01*X163379Y255365D02* X163760Y254984D01*X163251Y254298D02*X163251Y254793D01*X163286Y247142D02* X163286Y246573D01*X163300Y247700D02*X163300Y247156D01*X163286Y247142D02* X163300Y247156D01*X163085Y224078D02*X163085Y221850D01*X163085Y233222D02* X163085Y235350D01*X162800Y265535D02*X162800Y265670D01*X162830Y265700D02* X162800Y265670D01*X161830Y263025D02*X161830Y264895D01*X162135Y265200D02* X161830Y264895D01*X162112Y262280D02*X162112Y262743D01*X161830Y263025D02* X162112Y262743D01*X161722Y261616D02*X161722Y261890D01*X162112Y262280D02* X161722Y261890D01*X163606Y260327D02*X163606Y260928D01*X163174Y261360D02* X163606Y260928D01*X162947Y258390D02*X162947Y259669D01*X163606Y260327D02* X162947Y259669D01*X162967Y257860D02*X162967Y258370D01*X162947Y258390D02* X162967Y258370D01*X162717Y259764D02*X162717Y258685D01*X162367Y258335D02* X162717Y258685D01*X163376Y260833D02*X163376Y260423D01*X162717Y259764D02* X163376Y260423D01*X162945Y269267D02*X162945Y269800D01*X163440Y268302D02* X163440Y268772D01*X162945Y269267D02*X163440Y268772D01*X162830Y266230D02* X162830Y267692D01*X163440Y268302D02*X162830Y267692D01*X162300Y267185D02* X162300Y266700D01*X162595Y268178D02*X162595Y267479D01*X162300Y267185D02* X162595Y267479D01*X162372Y251265D02*X162372Y251782D01*X162300Y250700D02* X162300Y251193D01*X162372Y251265D02*X162300Y251193D01*X162770Y246526D02* X162770Y249230D01*X162300Y249700D02*X162770Y249230D01*X162300Y246756D02* X162300Y247700D01*X163470Y263130D02*X163470Y262185D01*X163376Y262091D02* X163470Y262185D01*X163300Y263700D02*X163300Y263300D01*X163470Y263130D02* X163300Y263300D01*X162770Y252110D02*X162770Y252631D01*X162867Y251254D02* X162867Y252013D01*X162770Y252110D02*X162867Y252013D01*X162800Y250535D02* X162800Y251188D01*X162867Y251254D02*X162800Y251188D01*X161830Y249170D02* X161830Y249895D01*X162135Y250200D02*X161830Y249895D01*X163300Y251639D02* X163300Y250700D01*X163222Y238513D02*X163222Y238475D01*X163400Y239200D02* X163400Y238692D01*X163222Y238513D02*X163400Y238692D01*X162860Y263475D02* X162860Y262920D01*X161800Y251389D02*X161800Y250200D01*X161300Y249700D02* X161800Y250200D01*X161874Y252483D02*X161874Y251463D01*X161800Y251389D02* X161874Y251463D01*X163400Y240200D02*X163400Y240985D01*X164119Y261730D02* X164119Y261289D01*X164550Y263450D02*X164550Y262161D01*X164119Y261730D02* X164550Y262161D01*X164275Y267945D02*X164275Y268471D01*X164171Y267349D02* X164171Y267840D01*X164275Y267945D02*X164171Y267840D01*X164300Y266700D02* X164300Y267220D01*X164171Y267349D02*X164300Y267220D01*X164590Y269039D02* X164590Y270340D01*X167520Y273270D02*X164590Y270340D01*X165300Y266700D02* X165300Y268329D01*X164590Y269039D02*X165300Y268329D01*X164015Y268913D02* X164015Y268914D01*X163665Y269264D02*X164015Y268914D01*X163835Y267088D02* X163835Y267949D01*X163780Y268004D02*X163835Y267949D01*X163830Y266170D02* X163830Y267083D01*X163835Y267088D02*X163830Y267083D01*X163914Y238114D02* X163914Y237780D01*X164500Y274150D02*X164500Y273000D01*X165300Y247700D02* X165300Y246975D01*X165800Y240200D02*X165800Y240985D01*X164770Y247288D02* X164770Y248230D01*X164300Y248700D02*X164770Y248230D01*X164636Y246442D02* X164636Y247154D01*X164770Y247288D02*X164636Y247154D01*X165650Y235550D02* X165650Y235650D01*X166170Y236170D02*X165650Y235650D01*X165625Y234695D02* X165625Y233222D01*X165650Y235550D02*X165650Y234720D01*X165625Y234695D02* X165650Y234720D01*X164250Y235550D02*X164250Y235650D01*X165075Y236475D02* X164250Y235650D01*X164355Y234430D02*X164355Y233222D01*X164250Y235550D02* X164250Y234535D01*X164355Y234430D02*X164250Y234535D01*X165625Y224078D02* X165625Y226830D01*X170705Y231910D02*X165625Y226830D01*X164355Y224078D02* X164355Y225900D01*X169435Y230980D02*X164355Y225900D01*X164141Y246859D02* X164141Y245771D01*X165202Y244711D02*X164141Y245771D01*X164300Y247700D02* X164300Y247018D01*X164141Y246859D02*X164300Y247018D01*X165857Y268465D02* X165857Y268336D01*X166300Y267893D02*X165857Y268336D01*X165842Y269111D02* X165842Y268481D01*X165857Y268465D02*X165842Y268481D01*X165800Y249865D02* X165800Y249200D01*X165300Y248700D02*X165800Y249200D01*X165561Y251887D02* X165561Y251838D01*X166189Y251210D02*X165561Y251838D01*X164596Y240831D02* X164596Y240989D01*X164600Y240100D02*X164600Y240828D01*X164596Y240831D02* X164600Y240828D01*X165770Y268097D02*X165770Y266170D01*X165300Y265700D02* X165770Y266170D01*X165612Y268741D02*X165612Y268256D01*X165770Y268097D02* X165612Y268256D01*X164770Y266950D02*X164770Y265505D01*X164465Y265200D02* X164770Y265505D01*X164666Y267604D02*X164666Y267054D01*X164770Y266950D02* X164666Y267054D01*X163800Y249535D02*X163800Y249670D01*X163770Y249700D02* X163800Y249670D01*X164800Y248535D02*X164800Y248865D01*X164465Y249200D02* X164800Y248865D01*X165795Y246041D02*X165795Y247870D01*X165465Y248200D02* X165795Y247870D01*X163805Y248195D02*X163805Y245407D01*X165121Y244091D02* X163805Y245407D01*X164049Y270889D02*X164049Y270254D01*X163980Y263060D02* X163980Y262680D01*X163820Y264220D02*X163820Y263220D01*X163980Y263060D02* X163820Y263220D01*X164609Y256601D02*X164609Y257096D01*X165331Y251669D02* X165331Y251792D01*X165041Y252082D02*X165331Y251792D01*X164300Y249700D02* X164300Y250700D01*X165328Y263089D02*X165328Y262975D01*X165300Y263700D02* X165300Y263116D01*X165328Y263089D02*X165300Y263116D01*X165500Y273680D02* X165500Y274150D01*X165300Y251170D02*X165300Y250700D01*X167520Y273270D02* X167520Y273680D01*X168380Y274540D02*X167520Y273680D01*X167350Y237200D02* X167350Y237590D01*X167800Y240200D02*X167800Y240670D01*X167545Y240925D02* X167800Y240670D01*X166295Y247100D02*X166295Y246975D01*X166300Y247700D02* X166300Y247105D01*X166295Y247100D02*X166300Y247105D01*X166700Y275650D02* X166700Y275830D01*X167965Y269523D02*X167965Y270193D01*X167065Y268554D02* X167065Y268623D01*X167965Y269523D02*X167065Y268623D01*X166730Y267372D02* X166730Y268218D01*X167065Y268554D02*X166730Y268218D01*X166770Y266170D02* X166770Y267331D01*X166730Y267372D02*X166770Y267331D01*X167800Y261865D02* X167800Y261535D01*X167465Y261200D02*X167800Y261535D01*X167800Y252535D02* X167800Y252865D01*X167495Y253170D02*X167800Y252865D01*X167225Y267518D02* X167225Y268013D01*X167300Y266700D02*X167300Y267443D01*X167225Y267518D02* X167300Y267443D01*X166051Y252041D02*X166051Y252441D01*X164628Y253864D02* X166051Y252441D01*X166170Y236170D02*X166170Y236348D01*X165466Y237052D02* X166170Y236348D01*X166895Y234895D02*X166895Y233222D01*X166900Y235350D02* X166900Y234895D01*X167500Y222045D02*X167500Y220400D01*X166300Y267893D02* X166300Y266700D01*X166770Y250895D02*X166770Y250505D01*X166465Y250200D02* X166770Y250505D01*X166700Y274250D02*X166700Y273540D01*X164049Y270889D02* X166700Y273540D01*X166476Y262929D02*X166476Y262804D01*X166300Y263700D02* X166300Y263105D01*X166476Y262929D02*X166300Y263105D01*X166895Y224078D02* X166895Y222510D01*X167800Y239200D02*X167800Y238475D01*X166800Y239200D02* X166800Y238475D01*X168380Y274540D02*X168380Y276486D01*X168780Y276886D02* X168380Y276486D01*X168165Y233222D02*X168165Y231940D01*X168715Y231390D02* X168165Y231940D01*X168300Y251700D02*X168300Y252170D01*X168270Y252200D02* X168300Y252170D01*X169390Y267404D02*X169390Y267548D01*X169300Y266700D02* X169300Y267314D01*X169390Y267404D02*X169300Y267314D01*X170030Y235560D02* X170030Y237570D01*X170660Y238200D02*X170030Y237570D01*X169435Y230980D02* X169435Y233222D01*X169800Y237850D02*X169800Y235560D01*X169390Y235150D02* X169800Y235560D01*X169435Y233925D02*X169435Y233222D01*X168800Y235150D02* X168800Y234560D01*X169435Y233925D02*X168800Y234560D01*X169400Y222600D02* X169400Y221800D01*X169435Y224078D02*X169435Y222635D01*X169400Y222600D02* X169435Y222635D01*X168165Y224078D02*X168165Y222710D01*X167500Y222045D02* X168165Y222710D01*X168370Y240660D02*X168370Y240970D01*X168470Y239950D02* X168470Y240560D01*X168370Y240660D02*X168470Y240560D01*X169800Y251200D02* X169800Y251865D01*X170105Y252170D02*X169800Y251865D01*X168348Y267372D02* X168348Y267526D01*X168300Y266700D02*X168300Y267324D01*X168348Y267372D02* X168300Y267324D01*X168800Y236550D02*X168800Y237400D01*X168300Y258700D02* X168300Y258732D01*X167332Y259700D02*X168300Y258732D01*X168300Y247245D02* X168300Y247700D01*X169975Y268084D02*X169975Y268612D01*X169300Y258668D02* X169300Y258700D01*X169800Y262865D02*X169800Y262535D01*X170135Y262200D02* X169800Y262535D01*X169800Y247865D02*X169800Y247394D01*X170165Y247029D02* X169800Y247394D01*X168800Y248670D02*X168800Y248535D01*X169135Y248200D02* X168800Y248535D01*X169800Y250865D02*X169800Y250535D01*X169495Y250230D02* X169800Y250535D01*X171974Y231724D02*X171974Y231539D01*X171975Y233222D02* X171975Y231725D01*X171974Y231724D02*X171975Y231725D01*X170705Y231910D02* X170705Y233222D01*X170705Y234635D02*X170705Y233222D01*X170850Y235150D02* X170850Y234780D01*X170705Y234635D02*X170850Y234780D01*X170680Y222580D02* X170680Y222420D01*X171200Y221900D02*X170680Y222420D01*X170705Y224078D02* X170705Y222605D01*X170680Y222580D02*X170705Y222605D01*X170152Y240198D02* X170152Y240751D01*X170300Y266700D02*X170300Y267759D01*X169975Y268084D02* X170300Y267759D01*X170165Y247029D02*X170165Y246995D01*X172750Y238500D02* X172750Y238150D01*X172760Y239900D02*X172760Y240510D01*X173130Y240880D02* X172760Y240510D01*X172750Y235700D02*X172750Y235600D01*X172187Y235037D02* X172750Y235600D01*X174150Y239900D02*X174150Y240570D01*X174313Y240733D02* X174150Y240570D01*X173989Y252975D02*X173989Y252827D01*X175020Y267320D02* X175020Y269628D01*X179450Y274058D02*X175020Y269628D01*X174515Y224078D02* X174515Y222765D01*X173650Y221900D02*X174515Y222765D01*X175400Y237963D02* X175400Y238228D01*X174500Y237100D02*X174500Y237770D01*X174530Y237800D02* X174500Y237770D01*X176201Y259260D02*X176201Y259755D01*X176501Y260056D02* X176201Y259755D01*X177180Y280910D02*X177180Y281332D01*X175511Y283001D02* X177180Y281332D01*X177750Y257428D02*X177750Y257325D01*X177700Y258100D02* X177700Y257478D01*X177750Y257428D02*X177700Y257478D01*X177800Y253500D02* X177800Y253550D01*X177380Y253970D02*X177800Y253550D01*X177700Y259620D02* X177700Y259100D01*X180160Y281940D02*X180160Y280351D01*X179450Y274058D02* X179450Y278640D01*X177180Y280910D02*X179450Y278640D01*X180300Y267850D02* X180300Y267800D01*X179575Y268895D02*X179575Y268575D01*X180300Y267850D02* X179575Y268575D01*X179575Y269040D02*X179575Y268895D01*X178800Y248500D02* X178800Y249275D01*X178890Y281940D02*X178890Y280565D01*X179575Y269040D02* X179575Y269045D01*X179830Y269300D02*X179575Y269045D01*X180300Y263350D02* X180300Y263400D01*X182700Y278635D02*X182700Y277260D01*X182700Y280820D02* X182700Y281940D01*X181430Y276140D02*X181430Y277260D01*X181300Y267800D02* X181300Y267850D01*X181880Y268430D02*X181300Y267850D01*X181300Y269300D02* X181300Y269350D01*X181885Y269935D02*X181300Y269350D01*X183970Y277260D02* X183970Y278635D01*X184507Y229230D02*X184507Y231973D01*X185497Y232963D02* X184507Y231973D01*X186900Y261465D02*X186900Y262011D01*X185031Y236541D02* X185031Y237515D01*X186214Y238698D02*X185031Y237515D01*X185497Y232963D02* X185497Y236075D01*X185031Y236541D02*X185497Y236075D01*X186510Y277260D02* X186510Y278635D01*X187966Y267595D02*X187966Y264791D01*X186964Y263789D02* X187966Y264791D01*X190016Y271158D02*X190016Y270561D01*X190800Y281100D02* X190800Y281340D01*X189925Y277105D02*X189925Y277530D01*X189368Y278087D02* X189925Y277530D01*X189675Y280555D02*X189675Y280713D01*X192427Y279500D02* X192427Y276687D01*X191570Y275830D02*X192427Y276687D01*X193811Y287339D02* X193811Y287850D01*X194170Y272755D02*X194170Y271730D01*X194070Y271630D02* X194170Y271730D01*X193300Y274600D02*X193300Y273625D01*X194170Y272755D02* X193300Y273625D01*X193300Y286000D02*X193300Y284875D01*X194900Y274600D02* X194900Y275510D01*X195367Y275977D02*X194900Y275510D01*X194900Y286000D02* X194900Y284875D01*X195069Y269989D02*X195069Y269918D01*X194900Y270800D02* X194900Y270158D01*X195069Y269989D02*X194900Y270158D01*X194580Y272520D02* X194580Y273130D01*X194300Y273410D02*X194580Y273130D01*X194170Y270230D02* X194170Y269975D01*X195589Y287045D02*X195589Y287850D01*X195700Y286000D02* X195700Y286934D01*X195589Y287045D02*X195700Y286934D01*X195700Y284875D02* X195700Y286000D01*X195367Y275977D02*X195367Y276784D01*X196300Y270493D02* X196300Y270800D01*X196965Y273228D02*X196965Y273062D01*X197300Y274600D02* X197300Y273563D01*X196965Y273228D02*X197300Y273563D01*X196094Y269996D02* X196094Y269969D01*X196300Y270493D02*X196300Y270203D01*X196094Y269996D02* X196300Y270203D01*X195700Y273730D02*X195700Y274600D01*X196294Y272873D02* X196294Y273466D01*X196300Y272200D02*X196300Y272867D01*X196294Y272873D02* X196300Y272867D01*X196500Y274600D02*X196500Y275470D01*X196245Y275725D02* X196500Y275470D01*X197300Y286000D02*X197300Y284875D01*X198600Y266215D02* X198600Y267150D01*X198159Y280976D02*X198159Y282484D01*X199230Y283555D02* X198159Y282484D01*X198600Y268550D02*X198600Y268450D01*X199374Y267676D02* X198600Y268450D01*X198900Y286000D02*X198900Y284875D01*X199945Y241695D02* X199945Y241444D01*X200700Y242500D02*X200700Y242450D01*X199945Y241695D02* X200700Y242450D01*X200700Y240550D02*X200700Y240500D01*X199945Y241377D02* X199945Y241119D01*X200094Y240970D02*X199945Y241119D01*X200227Y241497D02* X200227Y241401D01*X200203Y241377D02*X200227Y241401D01*X200700Y246500D02* X200700Y245500D01*X199600Y271050D02*X199600Y271100D01*X200070Y269493D02* X200070Y270580D01*X199600Y271050D02*X200070Y270580D01*X199954Y268696D02* X199954Y269377D01*X200070Y269493D02*X199954Y269377D01*X199600Y272100D02* X199600Y273100D01*X200700Y243500D02*X200700Y242500D01*X200700Y244500D02* X200700Y245500D01*X200980Y268570D02*X200980Y268630D01*X201400Y268100D02* X201400Y268150D01*X200980Y268570D02*X201400Y268150D01*X201400Y269100D02* X201400Y269050D01*X200980Y268630D02*X201400Y269050D01*X201191Y249078D02* X201191Y249201D01*X200837Y249555D02*X201191Y249201D01*X201359Y248091D02* X201359Y248910D01*X201191Y249078D02*X201359Y248910D01*X201290Y266398D02* X201290Y266325D01*X201400Y267100D02*X201400Y266507D01*X201290Y266398D02* X201400Y266507D01*X199600Y273100D02*X199600Y273150D01*X200070Y273620D02* X199600Y273150D01*X201170Y238980D02*X201170Y237823D01*X201072Y237725D02* X201170Y237823D01*X200700Y239500D02*X200700Y239450D01*X201170Y238980D02* X200700Y239450D01*X200700Y238500D02*X200700Y238550D01*X200280Y238970D02* X200700Y238550D01*X199945Y241444D02*X199945Y241377D01*X199700Y286000D02* X199700Y284815D01*X200600Y273100D02*X200600Y272100D01*X200600Y271100D02* X200600Y270100D01*X203206Y282094D02*X203206Y282564D01*X203070Y282700D02* X203206Y282564D01*X202056Y260997D02*X202056Y260202D01*X200747Y258893D02* X202056Y260202D01*X203317Y284143D02*X203317Y285796D01*X202822Y286291D02* X203317Y285796D01*X203275Y283500D02*X203275Y284100D01*X203317Y284143D02* X203275Y284100D01*X203444Y282331D02*X203444Y283331D01*X203275Y283500D02* X203444Y283331D01*X203505Y284005D02*X203505Y283595D01*X203969Y283131D02* X203505Y283595D01*X201713Y265703D02*X201713Y265498D01*X201186Y264971D02* X201713Y265498D01*X201700Y245500D02*X201700Y244500D01*X202430Y243500D02* X202430Y243413D01*X201700Y242550D02*X201700Y242500D01*X202430Y243413D02* X202430Y243280D01*X201700Y242550D02*X202430Y243280D01*X201700Y241500D02* X201700Y242500D01*X201700Y240500D02*X201700Y240550D01*X202373Y241223D02* X201700Y240550D01*X202197Y245473D02*X202197Y245466D01*X202547Y245116D02* X202197Y245466D01*X202400Y267100D02*X202400Y268100D01*X202400Y268100D02* X202400Y269100D01*X201832Y237779D02*X201832Y237710D01*X201700Y238500D02* X201700Y237911D01*X201832Y237779D02*X201700Y237911D01*X201980Y266630D02* X201980Y266315D01*X201340Y265675D02*X201980Y266315D01*X202400Y267100D02* X202400Y267050D01*X201980Y266630D02*X202400Y267050D01*X201691Y249381D02* X201691Y249482D01*X201900Y248600D02*X201900Y249171D01*X201691Y249381D02* X201900Y249171D01*X204200Y280400D02*X204200Y281100D01*X203206Y282094D02* X204200Y281100D01*X205200Y279700D02*X205200Y281320D01*X204798Y281723D02* X205200Y281320D01*X204700Y264900D02*X204700Y265426D01*X204211Y265916D02* X204700Y265426D01*X204875Y252535D02*X204875Y253215D01*X203698Y254393D02* X204875Y253215D01*X206400Y261490D02*X206400Y260410D01*X206040Y260050D02* X206400Y260410D01*X206200Y283400D02*X206200Y284400D01*X205785Y284815D02* X206200Y284400D01*X207200Y283400D02*X207200Y284397D01*X206750Y264550D02* X206750Y264800D01*X208320Y266370D02*X206750Y264800D01*X206782Y253468D02* X206782Y253725D01*X206200Y282400D02*X206200Y281575D01*X207542Y234140D02* X207542Y234267D01*X207500Y233500D02*X207500Y234098D01*X207542Y234140D02* X207500Y234098D01*X207325Y281740D02*X207325Y281675D01*X207200Y282400D02* X207200Y281865D01*X207325Y281740D02*X207200Y281865D01*X208450Y264550D02* X208450Y264300D01*X207800Y263650D02*X208450Y264300D01*X208450Y262750D02* X208450Y262500D01*X207800Y261850D02*X208450Y262500D01*X208450Y263170D02* X208450Y262750D01*X208500Y259350D02*X208500Y259595D01*X209030Y284180D02* X209030Y285404D01*X209015Y283400D02*X209015Y284165D01*X209030Y284180D02* X209015Y284165D01*X208690Y248982D02*X208690Y248278D01*X209495Y253022D02* X209495Y253564D01*X209570Y252490D02*X209570Y252947D01*X209495Y253022D02* X209570Y252947D01*X209500Y251900D02*X209500Y252420D01*X209570Y252490D02* X209500Y252420D01*X208320Y266370D02*X208320Y266548D01*X208670Y266898D02* X208320Y266548D01*X209479Y231892D02*X209479Y231775D01*X209500Y232500D02* X209500Y231913D01*X209479Y231892D02*X209500Y231913D01*X208420Y253635D02* X208420Y254174D01*X208300Y253000D02*X208300Y253514D01*X208420Y253635D02* X208300Y253514D01*X208500Y232500D02*X208500Y231775D01*X209200Y282400D02* X209200Y281675D01*X208500Y234062D02*X208500Y233500D01*X208572Y234225D02* X208572Y234133D01*X208500Y234062D02*X208572Y234133D01*X208200Y282400D02* X208200Y281675D01*X211285Y262575D02*X211285Y262570D01*X211285Y258790D02* X211285Y258765D01*X211170Y221600D02*X211170Y220802D01*X210688Y220320D02* X211170Y220802D01*X211847Y218628D02*X211847Y219390D01*X210256Y286426D02* X210256Y286194D01*X209881Y285820D02*X210256Y286194D01*X210669Y246359D02* X210669Y245302D01*X210218Y247868D02*X210218Y246811D01*X210669Y246359D02* X210218Y246811D01*X210729Y245300D02*X210729Y245302D01*X210669Y245302D02* X210669Y245300D01*X211030Y232080D02*X211030Y231288D01*X210662Y230921D02* X211030Y231288D01*X211768Y231818D02*X211768Y231421D01*X210390Y221900D02* X210390Y221070D01*X210239Y231758D02*X210239Y231747D01*X210500Y232500D02* X210500Y232019D01*X210239Y231758D02*X210500Y232019D01*X211052Y224772D02* X211052Y224673D01*X210500Y233500D02*X210500Y234225D01*X211500Y233500D02* X211500Y234225D01*X212100Y251900D02*X212100Y251950D01*X212520Y252370D02* X212100Y251950D01*X211200Y282400D02*X211200Y281930D01*X210869Y281599D02* X211200Y281930D01*X210500Y251900D02*X210500Y251850D01*X208944Y250294D02* X210500Y251850D01*X212911Y217500D02*X212911Y217564D01*X211847Y218628D02* X212911Y217564D01*X212990Y251900D02*X212990Y252730D01*X212853Y261153D02* X212853Y261485D01*X212368Y260035D02*X212368Y260668D01*X212853Y261153D02* X212368Y260668D01*X212289Y253148D02*X212289Y253731D01*X212456Y252499D02* X212456Y252980D01*X212289Y253148D02*X212456Y252980D01*X212520Y252370D02* X212520Y252435D01*X212456Y252499D02*X212520Y252435D01*X214689Y218355D02* X214689Y217500D01*X214700Y219350D02*X214700Y218366D01*X214689Y218355D02* X214700Y218366D01*X214700Y219350D02*X214700Y220475D01*X214700Y231620D02* X214700Y230750D01*X214400Y232411D02*X214400Y231733D01*X214457Y231677D02* X214400Y231733D01*X216200Y270400D02*X216200Y272100D01*X216516Y272416D02* X216200Y272100D01*X216300Y220245D02*X216300Y219350D01*X215730Y265750D02* X215730Y267063D01*X216070Y267403D02*X215730Y267063D01*X214854Y284284D02* X214854Y285038D01*X214700Y283400D02*X214700Y284130D01*X214854Y284284D02* X214700Y284130D01*X214380Y249280D02*X214380Y249110D01*X214270Y249000D02* X214380Y249110D01*X216195Y248885D02*X216195Y248095D01*X215905Y247805D02* X216195Y248095D01*X216180Y249280D02*X216180Y248900D01*X216195Y248885D02* X216180Y248900D01*X216300Y230750D02*X216300Y228815D01*X215700Y281806D02* X215700Y282400D01*X215691Y281672D02*X215691Y281797D01*X215700Y281806D02* X215691Y281797D01*X218365Y271681D02*X218365Y271565D01*X217700Y270900D02* X218365Y271565D01*X217673Y229547D02*X217673Y228870D01*X217340Y230750D02* X217340Y229880D01*X217673Y229547D02*X217340Y229880D01*X217103Y262664D02* X217103Y263361D01*X218270Y265750D02*X218270Y264437D01*X217200Y235100D02* X217200Y235500D01*X217495Y235795D02*X217200Y235500D01*X216683Y284006D02* X216683Y284125D01*X216700Y283400D02*X216700Y283989D01*X216683Y284006D02* X216700Y283989D01*X218000Y217500D02*X218000Y217400D01*X218000Y217400D02* X218000Y217300D01*X218570Y216730D02*X218000Y217300D01*X217220Y283917D02* X217220Y283030D01*X217120Y282930D02*X217220Y283030D01*X217178Y284516D02* X217178Y283960D01*X217220Y283917D02*X217178Y283960D01*X217900Y251580D02* X217900Y252160D01*X218210Y252470D02*X217900Y252160D01*X217130Y257100D02* X217130Y257530D01*X217410Y257810D02*X217130Y257530D01*X217270Y254320D02* X217270Y256960D01*X217130Y257100D02*X217270Y256960D01*X216782Y265101D02* X216782Y264832D01*X217000Y265750D02*X217000Y265101D01*X217100Y219350D02* X217100Y220475D01*X218049Y220422D02*X218049Y220475D01*X217900Y219350D02* X217900Y220273D01*X218049Y220422D02*X217900Y220273D01*X218205Y238505D02* X218205Y236825D01*X218699Y236330D02*X218205Y236825D01*X217550Y286450D02* X217550Y285388D01*X219900Y272000D02*X219900Y272050D01*X219480Y272470D02* X219900Y272050D01*X219070Y233280D02*X219070Y234350D01*X218845Y234575D02* X219070Y234350D01*X219700Y268300D02*X219700Y268400D01*X219700Y268500D02* X219700Y268400D01*X220093Y264602D02*X220093Y267059D01*X220327Y267293D02* X220093Y267059D01*X218700Y219350D02*X218700Y218200D01*X218000Y217500D02* X218700Y218200D01*X219158Y283816D02*X219158Y284516D01*X218868Y284806D02* X219158Y284516D01*X220400Y271550D02*X220400Y272390D01*X220260Y272531D02* X220400Y272390D01*X220323Y264510D02*X220323Y264506D01*X220023Y264207D02* X220323Y264506D01*X220300Y230750D02*X220300Y228815D01*X218700Y230750D02* X218700Y228815D01*X220000Y248700D02*X220000Y248650D01*X219580Y248230D02* X220000Y248650D01*X219653Y277593D02*X219653Y277351D01*X219500Y217400D02* X219500Y217500D01*X220070Y218070D02*X219500Y217500D01*X219900Y270000D02* X219900Y271000D01*X220000Y245700D02*X220000Y246700D01*X220000Y240300D02* X220000Y241300D01*X220000Y244650D02*X220000Y244700D01*X220000Y242350D02* X220000Y242300D01*X220470Y244180D02*X220470Y242820D01*X220000Y242350D02* X220470Y242820D01*X219175Y271775D02*X219175Y271791D01*X219900Y271000D02* X219900Y271050D01*X219175Y271775D02*X219900Y271050D01*X220000Y239300D02* X220000Y239250D01*X219550Y238800D02*X220000Y239250D01*X219267Y237517D02* X219267Y235480D01*X220000Y238300D02*X220000Y238250D01*X219267Y237517D02* X220000Y238250D01*X220075Y236535D02*X220075Y236364D01*X220000Y237300D02* X220000Y236609D01*X220075Y236535D02*X220000Y236609D01*X218975Y285388D02* X218975Y285301D01*X219514Y245164D02*X219514Y245100D01*X217704Y243290D02* X219514Y245100D01*X220000Y245700D02*X220000Y245650D01*X219514Y245164D02* X220000Y245650D01*X222411Y272350D02*X222411Y272414D01*X220896Y273929D02* X222411Y272414D01*X222364Y247204D02*X222364Y247166D01*X222630Y246900D02* X222364Y247166D01*X222554Y245263D02*X222554Y245424D01*X222630Y245500D02* X222554Y245424D01*X221100Y268400D02*X221100Y267293D01*X221100Y267293D02* X221100Y267215D01*X221507Y266808D02*X221100Y267215D01*X221000Y244650D02* X221000Y244700D01*X222627Y244667D02*X222627Y244635D01*X222221Y244230D02* X222627Y244635D01*X221000Y247700D02*X221000Y246700D01*X221000Y242300D02* X221000Y242350D01*X221420Y242770D02*X221000Y242350D01*X220900Y269950D02* X220900Y270000D01*X221000Y238300D02*X221000Y239300D01*X221551Y240531D02* X221551Y240381D01*X221470Y240300D02*X221551Y240381D01*X220900Y270050D02* X220900Y270000D01*X221022Y236554D02*X221022Y236351D01*X221000Y237300D02* X221000Y236577D01*X221022Y236554D02*X221000Y236577D01*X220900Y272000D02* X220900Y272520D01*X221163Y272783D02*X220900Y272520D01*X220726Y234576D02* X220726Y235200D01*X220900Y271000D02*X220900Y271050D01*X220400Y271550D02* X220900Y271050D01*X220663Y265750D02*X220663Y264850D01*X220323Y264510D02* X220663Y264850D01*X221687Y267687D02*X221687Y267329D01*X221775Y273685D02* X221775Y273770D01*X221100Y230750D02*X221100Y229625D01*X223300Y274200D02* X223300Y276286D01*X224600Y277586D02*X223300Y276286D01*X223300Y285600D02* X223300Y284475D01*X223011Y240750D02*X223011Y240687D01*X223740Y239957D02* X223011Y240687D01*X222800Y237268D02*X222800Y238100D01*X223200Y244000D02* X223200Y244100D01*X223699Y265819D02*X223699Y268641D01*X223270Y269070D02* X223699Y268641D01*X224789Y240750D02*X224789Y240814D01*X225417Y241442D02* X224789Y240814D01*X224189Y272350D02*X224189Y271609D01*X225346Y270451D02* X224189Y271609D01*X224600Y244100D02*X224600Y244200D01*X224030Y244770D02* X224600Y244200D01*X224600Y248400D02*X224600Y248300D01*X224080Y249040D02* X224080Y248920D01*X224600Y248400D02*X224080Y248920D01*X224000Y250650D02* X224000Y251650D01*X224314Y252599D02*X224314Y253466D01*X224420Y252120D02* X224420Y252492D01*X224314Y252599D02*X224420Y252492D01*X224000Y251650D02* X224000Y251700D01*X224420Y252120D02*X224000Y251700D01*X224600Y245500D02* X224600Y245600D01*X224030Y246170D02*X224600Y245600D01*X223860Y242550D02* X223860Y241590D01*X224600Y246900D02*X224600Y246800D01*X225455Y245945D02* X224600Y246800D01*X224978Y263022D02*X224978Y263283D01*X223928Y264333D02* X224978Y263283D01*X225142Y261927D02*X225142Y262858D01*X224978Y263022D02* X225142Y262858D01*X225208Y263117D02*X225208Y263378D01*X224024Y264563D02* X225208Y263378D01*X225700Y285600D02*X225700Y284730D01*X226537Y283893D02* X225700Y284730D01*X224900Y275070D02*X224900Y274200D01*X225200Y266530D02* X225200Y267200D01*X225200Y268500D02*X225200Y268600D01*X225770Y266275D02* X225770Y267930D01*X225200Y268500D02*X225770Y267930D01*X226740Y278740D02* X226740Y281498D01*X227573Y282331D02*X226740Y281498D01*X224900Y285600D02* X224900Y284475D01*X226600Y268600D02*X226600Y268700D01*X225000Y250600D02* X225000Y250650D01*X226800Y247800D02*X226800Y247850D01*X226330Y248320D02* X226800Y247850D01*X225000Y251650D02*X225000Y253589D01*X225390Y253979D02* X225000Y253589D01*X226426Y270624D02*X226426Y270498D01*X225425Y243845D02* X225425Y243515D01*X226800Y247800D02*X226800Y247750D01*X227447Y247103D02* X226800Y247750D01*X225035Y237835D02*X225035Y237800D01*X226500Y273330D02* X226500Y274200D01*X226500Y274200D02*X226500Y275365D01*X227203Y276068D02* X226500Y275365D01*X225200Y223450D02*X225200Y224120D01*X225455Y224375D02* X225200Y224120D01*X226903Y246647D02*X226903Y243515D01*X225800Y247800D02* X225800Y247750D01*X226903Y246647D02*X225800Y247750D01*X226583Y266394D02* X226583Y266275D01*X226600Y267200D02*X226600Y266411D01*X226583Y266394D02* X226600Y266411D01*X225455Y245945D02*X225455Y245141D01*X228500Y257500D02* X228500Y258500D01*X228320Y261750D02*X228320Y261800D01*X227960Y260550D02* X227960Y261390D01*X228320Y261750D02*X227960Y261390D01*X228816Y266865D02* X228816Y264085D01*X226542Y261811D02*X228816Y264085D01*X228300Y269600D02* X228300Y269500D01*X228300Y271000D02*X228300Y270900D01*X227500Y258500D02* X227500Y258450D01*X226810Y257760D02*X227500Y258450D01*X227500Y251500D02* X227500Y252450D01*X226981Y251069D02*X226981Y251172D01*X226583Y251570D02* X226981Y251172D01*X227500Y250500D02*X227500Y250550D01*X226981Y251069D02* X227500Y250550D01*X227408Y260620D02*X227408Y261273D01*X228500Y259500D02* X228500Y259528D01*X227408Y260620D02*X228500Y259528D01*X227186Y270522D02* X227186Y270451D01*X227000Y271350D02*X227000Y270709D01*X227186Y270522D02* X227000Y270709D01*X227235Y275268D02*X227235Y275400D01*X227300Y274200D02* X227300Y275203D01*X227235Y275268D02*X227300Y275203D01*X227273Y252450D02* X227273Y252500D01*X228500Y256210D02*X228500Y256500D01*X228500Y256210D02* X228500Y255500D01*X228970Y249980D02*X228970Y249080D01*X228627Y248737D02* X228970Y249080D01*X228500Y250500D02*X228500Y250450D01*X228970Y249980D02* X228500Y250450D01*X228500Y249450D02*X228500Y249500D01*X228900Y285600D02* X228900Y284475D01*X227300Y285600D02*X227300Y284475D01*X228970Y254479D02* X228970Y254500D01*X228500Y253500D02*X228500Y253550D01*X228977Y254027D02* X228500Y253550D01*X228950Y260300D02*X228950Y260497D01*X228657Y260790D02* X228950Y260497D01*X229030Y259030D02*X229030Y259890D01*X228710Y260210D02* X229030Y259890D01*X229155Y276596D02*X229155Y275800D01*X229553Y275401D02* X229155Y275800D01*X229484Y277336D02*X229484Y276926D01*X229155Y276596D02* X229484Y276926D01*X231009Y248125D02*X231009Y248061D01*X231038Y268678D02* X231038Y269705D01*X230573Y270170D02*X231038Y269705D01*X230895Y272431D02* X230895Y271936D01*X230671Y271713D02*X230895Y271936D01*X230193Y276952D02* X230193Y276741D01*X230543Y276391D02*X230193Y276741D01*X229225Y251885D02* X229225Y251755D01*X228970Y251500D02*X229225Y251755D01*X230200Y250850D02* X230200Y250900D01*X230200Y248900D02*X230200Y249900D01*X230200Y251900D02* X230200Y252900D01*X229700Y285600D02*X229700Y284475D01*X230050Y223150D02* X230050Y222542D01*X229447Y254377D02*X229447Y254479D01*X230200Y254900D02* X230200Y253900D01*X230200Y256900D02*X230200Y255900D01*X229290Y258180D02* X229290Y259960D01*X228950Y260300D02*X229290Y259960D01*X231200Y248900D02* X231200Y248316D01*X231009Y248125D02*X231200Y248316D01*X231880Y248505D02* X231880Y248010D01*X231765Y249233D02*X231765Y248621D01*X231880Y248505D02* X231765Y248621D01*X231637Y249413D02*X231637Y249360D01*X231765Y249233D02* X231637Y249360D01*X231200Y249900D02*X231200Y249850D01*X231637Y249413D02* X231200Y249850D01*X231200Y250900D02*X231200Y250850D01*X231786Y250264D02* X231200Y250850D01*X231200Y252900D02*X231200Y252950D01*X231620Y253370D02* X231200Y252950D01*X233100Y254250D02*X233100Y254300D01*X233100Y252300D02* X233100Y252350D01*X233570Y252820D02*X233100Y252350D01*X233100Y250300D02* X233100Y249504D01*X233100Y249504D02*X233100Y249300D01*X232623Y254827D02* X232623Y255240D01*X232266Y255597D02*X232623Y255240D01*X233100Y254300D02* X233100Y254350D01*X232623Y254827D02*X233100Y254350D01*X233100Y247723D02* X233100Y248300D01*X232959Y247525D02*X232959Y247582D01*X233100Y247723D02* X232959Y247582D01*X233100Y256300D02*X233100Y255300D01*X233100Y253300D02* X233100Y253250D01*X232540Y252690D02*X233100Y253250D01*X233100Y259300D02* X233100Y260371D01*X233530Y260801D02*X233100Y260371D01*X233100Y257300D02* X233100Y257350D01*X233578Y257828D02*X233100Y257350D01*X233513Y245604D02* X233513Y245701D01*X233700Y244800D02*X233700Y245417D01*X233513Y245604D02* X233700Y245417D01*X234100Y249250D02*X234100Y249300D01*X233630Y247817D02* X233630Y248780D01*X234100Y249250D02*X233630Y248780D01*X233699Y247190D02* X233699Y247748D01*X233630Y247817D02*X233699Y247748D01*X234100Y249300D02* X234100Y249350D01*X234550Y249800D02*X234100Y249350D01*X234100Y250300D02* X234100Y250350D01*X234820Y251070D02*X234100Y250350D01*X234100Y254300D02* X234100Y254350D01*X234724Y254974D02*X234100Y254350D01*X234129Y263671D02* X234129Y264800D01*X233035Y265894D02*X234129Y264800D01*X233700Y270803D02* X233700Y271286D01*X233003Y271983D02*X233700Y271286D01*X234100Y259300D02* X234100Y259350D01*X234545Y259795D02*X234100Y259350D01*X233570Y252820D02* X233570Y253780D01*X233100Y254250D02*X233570Y253780D01*X233474Y261696D02* X233474Y262032D01*X233824Y262382D02*X233474Y262032D01*X233530Y260801D02* X233530Y261640D01*X233474Y261696D02*X233530Y261640D01*X233578Y257828D02* X233578Y260055D01*X233632Y260110D02*X233578Y260055D01*X234200Y238200D02* X234200Y239125D01*X235600Y238200D02*X235600Y238100D01*X236910Y236790D02* X235600Y238100D01*X235700Y249100D02*X235700Y249500D01*X236514Y250314D02* X235700Y249500D01*X236700Y241200D02*X236700Y242086D01*X238702Y244089D02* X236700Y242086D01*X237351Y271331D02*X237351Y271441D01*X237300Y270700D02* X237300Y271280D01*X237351Y271331D02*X237300Y271280D01*X236351Y271331D02* X236351Y271441D01*X236300Y270700D02*X236300Y271280D01*X236351Y271331D02* X236300Y271280D01*X236483Y239494D02*X236483Y239475D01*X236700Y240200D02* X236700Y239711D01*X236483Y239494D02*X236700Y239711D01*X237705Y253105D02* X237705Y253805D01*X238188Y254288D02*X237705Y253805D01*X237705Y266505D02* X237705Y265095D01*X238000Y264800D02*X237705Y265095D01*X238700Y260100D02* X238700Y260500D01*X237900Y261300D02*X238700Y260500D01*X238702Y244089D02* X238702Y244798D01*X238200Y245300D02*X238702Y244798D01*X238451Y271381D02* X238451Y271441D01*X238300Y270700D02*X238300Y271230D01*X238451Y271381D02* X238300Y271230D01*X239453Y239479D02*X239453Y239475D01*X238463Y239484D02* X238463Y239475D01*X238700Y240200D02*X238700Y239721D01*X238463Y239484D02* X238700Y239721D01*X237473Y239489D02*X237473Y239475D01*X237700Y240200D02* X237700Y239716D01*X237473Y239489D02*X237700Y239716D01*X239451Y271381D02* X239451Y271441D01*X239300Y270700D02*X239300Y271230D01*X239451Y271381D02* X239300Y271230D01*X240300Y271230D02*X240300Y270700D01*X240451Y271441D02* X240451Y271381D01*X240300Y271230D02*X240451Y271381D01*X240700Y240200D02* X240700Y239730D01*X240445Y239475D02*X240700Y239730D01*X239700Y240200D02* X239700Y239726D01*X239453Y239479D02*X239700Y239726D01*X241500Y237000D02* X241500Y236275D01*X243413Y269446D02*X243413Y269375D01*X243300Y270100D02* X243300Y269559D01*X243413Y269446D02*X243300Y269559D01*X242700Y240200D02* X242700Y239730D01*X242445Y239475D02*X242700Y239730D01*X241700Y240200D02* X241700Y239730D01*X241445Y239475D02*X241700Y239730D01*X243500Y237000D02* X243500Y236275D01*X242500Y237000D02*X242500Y236275D01*X244700Y264500D02* X244700Y264100D01*X244995Y263805D02*X244700Y264100D01*X244174Y241624D02* X244174Y241684D01*X244524Y242034D02*X244174Y241684D01*X245475Y241925D02* X245475Y244025D01*X244200Y245300D02*X245475Y244025D01*X245200Y246250D02* X245200Y246300D01*X245820Y244868D02*X245820Y245630D01*X245200Y246250D02* X245820Y245630D01*X245705Y242035D02*X245705Y244753D01*X245820Y244868D02* X245705Y244753D01*X244300Y271100D02*X244300Y271825D01*X244700Y265500D02* X244700Y265100D01*X244995Y264805D02*X244700Y265100D01*X244403Y269451D02* X244403Y269375D01*X244300Y270100D02*X244300Y269554D01*X244403Y269451D02* X244300Y269554D01*X244403Y239547D02*X244403Y239475D01*X245500Y237000D02* X245500Y236275D01*X244500Y237000D02*X244500Y236275D01*X246708Y261492D02* X246708Y261092D01*X248000Y259800D02*X246708Y261092D01*X247500Y237000D02* X247500Y236275D01*X246500Y237000D02*X246500Y236275D01*X249700Y259500D02* X249700Y259100D01*X250002Y258798D02*X249700Y259100D01*X248699Y260786D02* X248699Y260102D01*X249003Y259798D02*X248699Y260102D01*X248200Y263300D02* X248200Y261285D01*X248699Y260786D02*X248200Y261285D01*X249700Y258500D02* X249700Y258100D01*X249995Y257805D02*X249700Y258100D01*X248700Y259500D02* X248700Y259100D01*X249000Y258800D02*X248700Y259100D01*X249363Y271411D02* X249363Y271590D01*X249300Y270700D02*X249300Y271349D01*X249363Y271411D02* X249300Y271349D01*X248700Y266100D02*X248700Y266500D01*X248995Y266795D02* X248700Y266500D01*X249500Y237000D02*X249500Y236275D01*X248500Y237000D02* X248500Y236275D01*X250700Y260100D02*X250700Y260800D01*X249200Y262300D02* X250700Y260800D01*X250200Y262805D02*X250200Y263300D01*X250700Y262100D02* X250700Y262500D01*X250400Y262800D02*X250700Y262500D01*X250200Y263920D02* X250200Y264300D01*X250700Y263100D02*X250700Y263500D01*X250400Y263800D02* X250700Y263500D01*X250700Y264500D02*X250700Y264100D01*X251000Y263800D02* X250700Y264100D01*X250500Y238000D02*X250500Y238511D01*X249273Y239738D02* X250500Y238511D01*X250300Y270700D02*X250300Y271936D01*X251257Y236293D02* X251257Y236015D01*X252700Y262100D02*X252700Y262500D01*X252400Y262800D02* X252700Y262500D01*X253700Y265305D02*X253700Y265500D01*X254000Y265800D02* X253700Y265500D01*X252700Y263500D02*X252700Y263100D01*X252995Y262805D02* X252700Y263100D01*X252818Y236217D02*X252818Y235048D01*X252970Y236580D02* X252970Y236369D01*X252818Y236217D02*X252970Y236369D01*X253313Y236319D02* X253313Y235800D01*X253500Y237000D02*X253500Y236506D01*X253313Y236319D02* X253500Y236506D01*X252700Y267100D02*X252700Y267500D01*X253014Y267814D02* X252700Y267500D01*X253700Y266100D02*X253700Y266500D01*X254000Y266800D02* X253700Y266500D01*X253500Y238000D02*X253500Y238885D01*X252500Y238000D02* X252500Y238885D01*X255700Y261500D02*X255700Y261100D01*X255400Y260800D02* X255700Y261100D01*X255700Y262500D02*X255700Y262100D01*X255405Y261805D02* X255700Y262100D01*X254700Y266100D02*X254700Y266500D01*X254995Y266795D02* X254700Y266500D01*X254700Y265305D02*X254700Y265500D01*X254997Y265798D02* X254700Y265500D01*X254700Y250800D02*X254700Y250100D01*X255000Y249800D02* X254700Y250100D01*X256071Y236479D02*X256071Y236365D01*X256358Y236079D02* X256071Y236365D01*X255293Y236257D02*X255293Y236015D01*X254705Y267105D02* X254705Y267495D01*X255005Y267795D02*X254705Y267495D01*X255500Y238470D02* X255500Y238000D01*X254500Y238000D02*X254500Y238470D01*X254565Y238535D02* X254500Y238470D01*X258263Y236073D02*X258263Y235880D01*X258200Y236900D02* X258200Y236137D01*X258263Y236073D02*X258200Y236137D01*X256500Y236312D02* X256500Y237000D01*X256421Y236079D02*X256421Y236233D01*X256500Y236312D02* X256421Y236233D01*X256421Y236062D02*X256421Y236079D01*X256424Y238716D02* X256424Y238885D01*X256500Y238000D02*X256500Y238639D01*X256424Y238716D02* X256500Y238639D01*X259692Y259092D02*X259692Y259492D01*X260000Y259800D02* X259692Y259492D01*X259700Y260500D02*X259700Y260100D01*X259405Y259805D02* X259700Y260100D01*X258900Y229175D02*X258900Y230100D01*X260300Y230100D02* X260300Y231025D01*X260717Y253483D02*X260717Y253297D01*X261183Y252830D02* X260717Y253297D01*X260717Y249483D02*X260717Y249477D01*X261029Y249166D02* X260717Y249477D01*X262200Y245300D02*X262200Y245225D01*X261680Y244705D02* X262200Y245225D01*X262200Y246300D02*X262200Y246250D01*X261655Y245705D02* X262200Y246250D01*X262200Y243300D02*X262200Y243250D01*X261655Y242705D02* X262200Y243250D01*X264725Y254800D02*X264725Y255365D01*X265130Y255770D02* X264725Y255365D01*X263709Y265296D02*X263709Y265706D01*X263999Y265996D02* X263709Y265706D01*X263200Y243300D02*X263200Y243250D01*X262475Y242525D02* X263200Y243250D01*X263200Y245300D02*X263200Y245350D01*X263620Y245770D02* X263200Y245350D01*X263200Y257700D02*X263200Y257750D01*X263630Y258180D02* X263200Y257750D01*X264204Y265006D02*X264204Y265501D01*X264811Y267900D02* X264811Y267837D01*X265489Y267159D02*X264811Y267837D01*X268659Y268266D02* X268659Y269695D01*X268600Y264490D02*X268600Y264210D01*X269930Y262880D02* X268600Y264210D01*X272764Y260901D02*X272764Y261127D01*X272070Y261820D02* X272764Y261127D01*X272640Y251280D02*X272640Y249707D01*X277000Y245347D02* X272640Y249707D01*X273609Y260056D02*X273609Y260756D01*X272175Y262190D02* X273609Y260756D01*X274104Y260551D02*X274104Y261046D01*X272730Y262420D02* X274104Y261046D01*X279720Y253600D02*X279720Y253370D01*X281100Y255900D02* X281100Y254980D01*X279720Y253600D02*X281100Y254980D01*X279841Y255082D02* X279841Y255075D01*X279600Y255900D02*X279600Y255323D01*X279841Y255082D02* X279600Y255323D01*X283490Y267000D02*X283490Y267010D01*X284105Y260450D02* X284105Y258516D01*X285530Y257091D02*X284105Y258516D01*X284004Y270820D02* X284004Y269461D01*X285910Y257900D02*X285910Y258740D01*X286230Y259060D02* X285910Y258740D01*X288900Y258010D02*X288900Y258060D01*X288480Y257402D02* X288480Y257590D01*X288900Y258010D02*X288480Y257590D01*X288900Y285645D02* X288900Y285060D01*X289025Y285835D02*X289025Y285770D01*X288900Y285645D02* X289025Y285770D01*X288900Y280010D02*X288900Y280060D01*X288114Y249418D02* X288114Y249376D01*X288430Y249060D02*X288114Y249376D01*X288900Y221110D02* X288900Y221060D01*X289830Y287584D02*X289830Y286630D01*X291650Y268060D02* X291650Y268050D01*X291650Y267060D02*X291650Y267050D01*X290850Y287060D02* X290850Y287569D01*X290075Y288344D02*X290850Y287569D01*X291650Y286220D02* X291650Y286060D01*X293500Y272900D02*X293500Y272220D01*X292853Y271573D02* X293500Y272220D01*X293225Y274865D02*X293225Y275968D01*X297630Y237700D02* X297630Y239760D01*X298100Y285909D02*X298100Y285060D01*X298100Y283486D02* X298100Y284060D01*X298198Y282839D02*X298198Y283388D01*X298100Y283486D02* X298198Y283388D01*X298100Y280301D02*X298100Y281060D01*X297948Y279910D02* X297948Y280149D01*X298100Y280301D02*X297948Y280149D01*X298100Y282010D02* X298100Y282060D01*X298100Y279110D02*X298100Y279060D01*X298100Y273010D02* X298100Y273060D01*X298100Y272010D02*X298100Y272060D01*X298100Y249500D02* X298100Y249550D01*X298100Y248128D02*X298100Y248060D01*X298100Y264110D02* X298100Y264060D01*X298100Y260110D02*X298100Y260060D01*X298100Y258110D02* X298100Y258060D01*X298100Y245110D02*X298100Y245060D01*X298100Y244010D02* X298100Y244060D01*X298100Y237540D02*X298100Y238060D01*X298100Y221590D02* X298100Y221060D01*X297864Y221835D02*X297864Y221825D01*X298100Y221590D02* X297864Y221825D01*X298100Y219530D02*X298100Y220060D01*X297864Y219285D02* X297864Y219295D01*X298100Y219530D02*X297864Y219295D01*X296630Y249630D02* X296630Y249550D01*X300430Y221910D02*X300430Y223920D01*X299730Y279730D02* X299730Y279735D01*X298830Y247550D02*X298830Y247210D01*X298680Y247060D02* X298830Y247210D01*X299455Y262007D02*X299455Y261898D01*X298617Y261060D02* X299455Y261898D01*X300220Y267723D02*X300220Y270537D01*X300813Y271130D02* X300220Y270537D01*X302489Y279766D02*X302489Y278318D01*X302231Y278060D02* X302489Y278318D01*X302453Y279966D02*X302453Y279802D01*X302489Y279766D02* X302453Y279802D01*X300834Y270451D02*X300834Y269870D01*X301850Y268854D02* X300834Y269870D01*X301811Y277024D02*X301811Y276960D01*X301175Y279659D02* X301175Y279967D01*X301811Y278960D02*X301811Y279024D01*X301175Y279659D02* X301811Y279024D01*X301811Y222190D02*X301811Y221160D01*X301590Y270130D02* X301590Y270290D01*X302140Y270840D02*X301590Y270290D01*X304100Y256830D02* X304100Y255311D01*X305975Y253436D02*X304100Y255311D01*X303589Y278960D02* X303589Y278897D01*X304426Y278060D02*X303589Y278897D01*X304299Y276992D02* X304299Y277029D01*X304330Y277060D02*X304299Y277029D01*X304299Y221129D02* X304299Y221092D01*X304330Y221060D02*X304299Y221092D01*X303589Y219224D02* X303589Y219160D01*X304274Y220004D02*X304274Y219908D01*X303589Y219224D02* X304274Y219908D01*X302900Y247110D02*X302900Y247060D01*X303920Y263967D02* X303920Y265020D01*X304460Y265560D02*X303920Y265020D01*X304299Y267670D02* X304299Y267092D01*X304330Y267060D02*X304299Y267092D01*X303015Y263762D02* X303015Y264745D01*X304330Y266060D02*X303015Y264745D01*X302797Y279549D02* X302797Y278010D01*X301811Y277024D02*X302797Y278010D01*X303434Y280769D02* X303434Y280186D01*X302797Y279549D02*X303434Y280186D01*X303450Y241713D02* X303450Y241835D01*X303589Y267124D02*X303589Y267060D01*X303425Y231770D02* X303425Y231840D01*X303450Y238766D02*X303450Y238835D01*X305975Y253436D02* X305975Y252333D01*X305650Y275968D02*X305650Y276060D01*X305650Y242060D02* X305650Y241820D01*X305986Y222912D02*X305986Y222947D01*X305650Y278897D02* X305650Y279060D01*X305650Y232060D02*X305650Y231820D01*X305650Y239060D02* X305650Y238820D01*X307730Y263293D02*X307730Y264300D01*X306970Y265060D02* X307730Y264300D01*X307730Y262531D02*X307730Y263293D01*X307730Y263293D02* X307730Y263293D01*X307235Y261541D02*X307235Y261795D01*X306970Y262060D02* X307235Y261795D01*X307235Y260551D02*X307235Y260795D01*X306970Y261060D02* X307235Y260795D01*X307235Y259325D02*X307235Y259561D01*X307235Y258325D02* X307235Y258571D01*X307730Y277643D02*X307730Y277120D01*X307090Y276480D02* X307730Y277120D01*X307534Y278446D02*X307534Y277838D01*X307730Y277643D02* X307534Y277838D01*X307235Y263795D02*X307235Y263765D01*X307880Y273010D02* X307880Y273910D01*X308030Y274060D02*X307880Y273910D01*X307235Y273065D02* X307235Y273795D01*X306970Y274060D02*X307235Y273795D01*X307880Y267600D02* X307880Y269910D01*X308030Y270060D02*X307880Y269910D01*X307380Y270100D02* X307380Y268470D01*X306970Y268060D02*X307380Y268470D01*X306970Y278897D02* X306970Y278897D01*X307005Y278163D02*X307005Y278863D01*X306970Y278897D02* X307005Y278863D01*X307235Y277325D02*X307235Y277932D01*X307005Y278163D02* X307235Y277932D01*X310690Y275740D02*X310690Y275940D01*X310570Y276060D02* X310690Y275940D01*X309350Y225300D02*X309350Y225060D01*X309350Y243060D02* X309350Y242820D01*X311511Y278060D02*X311511Y278500D01*X311511Y276564D02* X311511Y276500D01*X312100Y223090D02*X312100Y223060D01*X312715Y275862D02* X312715Y274411D01*X311725Y272150D02*X311725Y273421D01*X311250Y224460D02* X311250Y224060D01*X311550Y242784D02*X311550Y242835D01*X311250Y224460D02* X311250Y224670D01*X312350Y225770D02*X311250Y224670D01*X313289Y276500D02* X313289Y276437D01*X312715Y275862D02*X313289Y276437D01*X292630Y218307D02* X298934Y218307D01*X299786Y219160D02*X298934Y218307D01*X288606Y217160D02* X291483Y217160D01*X292630Y218307D02*X291483Y217160D01*X290380Y217971D02* X289400Y217971D01*X290934Y217655D02*X290696Y217655D01*X290380Y217971D02* X290696Y217655D01*X218570Y216730D02*X220330Y216730D01*X221000Y217400D02* X220330Y216730D01*X220900Y217400D02*X221000Y217400D01*X221000Y217400D02* X222130Y217400D01*X220070Y218070D02*X221725Y218070D01*X216600Y217400D02* X215693Y217400D01*X162950Y220450D02*X162025Y220450D01*X290153Y219060D02* X291650Y219060D01*X289400Y219749D02*X289464Y219749D01*X290153Y219060D02* X289464Y219749D01*X309350Y220060D02*X310911Y220060D01*X311411Y219560D02* X310911Y220060D01*X305650Y220060D02*X304330Y220060D01*X304274Y220004D02* X304330Y220060D01*X169400Y219000D02*X167500Y219000D01*X299786Y219160D02* X301811Y219160D01*X297100Y220060D02*X295350Y220060D01*X210688Y220320D02* X200250Y220320D01*X199620Y220950D02*X200250Y220320D01*X314122Y219560D02* X313189Y219560D01*X172700Y220500D02*X172800Y220500D01*X173512Y221212D02* X172800Y220500D01*X171300Y220500D02*X170375Y220500D01*X300821Y220164D02* X300925Y220164D01*X299800Y220210D02*X300774Y220210D01*X300821Y220164D02* X300774Y220210D01*X291650Y220060D02*X293225Y220060D01*X296990Y222060D02* X295350Y222060D01*X298300Y222400D02*X297330Y222400D01*X296990Y222060D02* X297330Y222400D01*X299800Y221910D02*X298790Y221910D01*X298300Y222400D02* X298790Y221910D01*X299800Y221910D02*X300430Y221910D01*X304330Y221060D02* X305650Y221060D01*X303589Y221160D02*X304267Y221160D01*X304299Y221129D02* X304267Y221160D01*X314122Y221560D02*X313189Y221560D01*X288192Y221707D02* X288303Y221707D01*X288900Y221110D02*X288303Y221707D01*X163085Y221850D02* X162950Y221850D01*X173650Y221900D02*X172700Y221900D01*X171200Y221900D02* X171300Y221900D01*X297100Y221060D02*X295350Y221060D01*X310911Y222060D02* X309350Y222060D01*X291650Y221060D02*X289900Y221060D01*X199620Y220950D02* X197872Y220950D01*X212200Y221850D02*X211420Y221850D01*X211170Y221600D02* X211420Y221850D01*X173512Y221212D02*X173534Y221212D01*X304154Y222157D02* X304075Y222157D01*X305650Y222060D02*X304251Y222060D01*X304154Y222157D02* X304251Y222060D01*X210400Y221900D02*X210390Y221900D01*X310847Y220564D02* X310925Y220564D01*X309350Y221060D02*X310350Y221060D01*X310847Y220564D02* X310350Y221060D01*X289435Y222060D02*X291650Y222060D01*X286886Y222319D02* X289176Y222319D01*X289435Y222060D02*X289176Y222319D01*X312890Y223090D02* X312100Y223090D01*X298854Y224060D02*X298100Y224060D01*X298630Y223060D02* X298100Y223060D01*X299405Y223280D02*X298850Y223280D01*X298630Y223060D02* X298850Y223280D01*X287964Y223060D02*X288900Y223060D01*X211258Y224178D02* X210487Y224178D01*X209458Y225206D02*X210487Y224178D01*X212200Y224250D02* X211330Y224250D01*X211258Y224178D02*X211330Y224250D01*X311100Y223060D02* X309350Y223060D01*X297100Y224060D02*X295350Y224060D01*X297100Y223060D02* X295350Y223060D01*X291650Y223060D02*X289900Y223060D01*X291650Y224060D02* X293225Y224060D01*X227412Y223532D02*X227573Y223532D01*X226600Y223450D02* X227331Y223450D01*X227412Y223532D02*X227331Y223450D01*X312950Y224460D02* X313825Y224460D01*X305650Y223060D02*X305873Y223060D01*X305986Y222947D02* X305873Y223060D01*X304730Y223060D02*X305650Y223060D01*X303495Y223445D02* X304345Y223445D01*X304730Y223060D02*X304345Y223445D01*X306307Y222947D02* X305986Y222947D01*X303726Y224060D02*X305650Y224060D01*X302563Y223996D02* X303662Y223996D01*X303726Y224060D02*X303662Y223996D01*X267733Y223536D02* X285668Y223536D01*X286886Y222319D02*X285668Y223536D01*X223600Y223450D02* X225200Y223450D01*X211125Y223300D02*X210400Y223300D01*X212200Y223450D02* X211275Y223450D01*X211125Y223300D02*X211275Y223450D01*X311250Y224060D02* X309350Y224060D01*X213238Y223532D02*X213325Y223532D01*X212200Y223450D02* X213157Y223450D01*X213238Y223532D02*X213157Y223450D01*X225455Y224375D02* X225618Y224375D01*X302175Y225060D02*X302900Y225060D01*X298854Y226060D02* X298100Y226060D01*X210456Y225900D02*X205792Y225900D01*X211158Y225678D02* X210679Y225678D01*X210456Y225900D02*X210679Y225678D01*X212200Y225850D02* X211330Y225850D01*X211158Y225678D02*X211330Y225850D01*X203427Y225475D02* X200842Y225475D01*X209458Y225206D02*X203696Y225206D01*X203427Y225475D02* X203696Y225206D01*X305650Y225060D02*X303900Y225060D01*X297100Y226060D02* X295350Y226060D01*X289653Y225060D02*X291650Y225060D01*X288130Y224910D02* X289503Y224910D01*X289653Y225060D02*X289503Y224910D01*X223600Y225050D02* X225218Y225050D01*X295350Y225060D02*X293775Y225060D01*X291650Y226060D02* X293225Y226060D01*X212200Y225050D02*X211330Y225050D01*X211052Y224772D02* X211330Y225050D01*X310670Y226060D02*X309350Y226060D01*X310670Y225300D02* X309350Y225300D01*X311090Y225341D02*X310711Y225341D01*X310670Y225300D02* X310711Y225341D01*X245346Y224810D02*X266460Y224810D01*X267733Y223536D02* X266460Y224810D01*X305650Y226060D02*X303943Y226060D01*X312350Y225770D02* X312830Y225770D01*X269564Y226890D02*X270144Y226890D01*X267600Y227200D02* X269254Y227200D01*X269564Y226890D02*X269254Y227200D01*X295350Y227060D02* X299675Y227060D01*X300834Y225900D02*X299675Y227060D01*X222475Y227450D02* X223600Y227450D01*X251159Y227600D02*X252450Y227600D01*X251025Y227586D02* X251146Y227586D01*X251159Y227600D02*X251146Y227586D01*X312825Y228060D02* X312100Y228060D01*X302175Y228060D02*X302900Y228060D01*X302100Y227060D02* X302900Y227060D01*X299380Y228060D02*X298100Y228060D01*X287964Y227060D02* X288900Y227060D01*X311100Y228060D02*X309350Y228060D01*X305650Y228060D02* X303900Y228060D01*X305650Y227060D02*X303900Y227060D01*X297100Y228060D02* X295350Y228060D01*X291650Y227060D02*X289900Y227060D01*X212200Y227450D02* X186287Y227450D01*X184507Y229230D02*X186287Y227450D01*X309350Y227060D02* X307775Y227060D01*X230050Y227950D02*X228325Y227950D01*X245046Y227586D02* X244925Y227586D01*X246350Y227600D02*X245059Y227600D01*X245046Y227586D02* X245059Y227600D01*X312410Y226575D02*X311185Y226575D01*X310670Y226060D02* X311185Y226575D01*X291650Y228060D02*X293225Y228060D01*X257700Y230100D02* X258900Y230100D01*X312825Y229060D02*X312100Y229060D01*X302175Y230060D02* X302900Y230060D01*X298854Y229060D02*X298100Y229060D01*X273587Y230060D02* X288900Y230060D01*X262224Y228870D02*X272397Y228870D01*X273587Y230060D02* X272397Y228870D01*X287620Y229060D02*X288900Y229060D01*X206742Y230443D02* X185440Y230443D01*X185002Y230880D02*X185440Y230443D01*X209753Y229860D02* X207325Y229860D01*X206742Y230443D02*X207325Y229860D01*X311100Y229060D02* X309350Y229060D01*X305650Y230060D02*X303900Y230060D01*X297100Y229060D02* X295350Y229060D01*X291650Y230060D02*X289900Y230060D01*X291650Y229060D02* X289900Y229060D01*X295350Y230060D02*X296925Y230060D01*X304154Y228962D02* X304075Y228962D01*X305650Y229060D02*X304252Y229060D01*X304154Y228962D02* X304252Y229060D01*X255603Y230100D02*X256300Y230100D01*X255224Y230351D02* X255351Y230351D01*X255603Y230100D02*X255351Y230351D01*X309350Y230060D02* X310925Y230060D01*X214457Y231677D02*X214644Y231677D01*X214700Y231620D02* X214644Y231677D01*X213404Y232411D02*X214400Y232411D01*X216600Y232311D02* X216664Y232311D01*X217412Y233060D02*X216664Y232311D01*X217100Y230750D02* X217340Y230750D01*X313380Y232060D02*X312100Y232060D01*X313380Y231060D02* X312100Y231060D01*X302175Y231060D02*X302900Y231060D01*X298854Y232060D02* X298100Y232060D01*X299409Y231060D02*X298100Y231060D01*X287620Y232060D02* X288900Y232060D01*X311100Y232060D02*X309350Y232060D01*X311100Y231060D02* X309350Y231060D01*X305650Y231060D02*X303900Y231060D01*X297100Y232060D02* X295350Y232060D01*X297100Y231060D02*X295350Y231060D01*X291650Y232060D02* X289900Y232060D01*X211500Y232500D02*X211450Y232500D01*X211030Y232080D02* X211450Y232500D01*X212500Y232500D02*X212450Y232500D01*X211768Y231818D02* X212450Y232500D01*X291650Y231060D02*X293225Y231060D01*X207500Y232500D02* X206725Y232500D01*X219800Y232350D02*X219900Y232350D01*X220586Y233036D02* X219900Y232350D01*X221200Y232350D02*X222125Y232350D01*X217583Y231633D02* X215846Y231633D01*X215604Y231875D02*X215846Y231633D01*X218400Y232350D02* X218300Y232350D01*X217583Y231633D02*X218300Y232350D01*X304280Y231770D02* X303425Y231770D01*X305650Y231820D02*X304330Y231820D01*X304280Y231770D02* X304330Y231820D01*X297629Y232830D02*X298854Y232830D01*X295350Y233060D02* X297400Y233060D01*X297629Y232830D02*X297400Y233060D01*X218845Y234575D02* X218350Y234575D01*X217412Y233060D02*X218850Y233060D01*X219070Y233280D02* X218850Y233060D01*X312825Y234060D02*X312100Y234060D01*X302175Y234060D02* X302900Y234060D01*X302175Y233060D02*X302900Y233060D01*X298854Y234060D02* X298100Y234060D01*X271181Y234443D02*X281538Y234443D01*X282155Y235060D02* X281538Y234443D01*X287620Y233060D02*X288900Y233060D01*X214400Y234189D02* X214464Y234189D01*X215092Y234817D02*X214464Y234189D01*X311100Y234060D02* X309350Y234060D01*X305650Y234060D02*X303900Y234060D01*X305650Y233060D02* X303900Y233060D01*X297100Y234060D02*X295350Y234060D01*X291650Y233060D02* X289900Y233060D01*X138800Y234050D02*X137375Y234050D01*X267600Y233300D02* X265775Y233300D01*X217061Y233156D02*X215604Y233156D01*X218400Y233750D02* X217655Y233750D01*X217061Y233156D02*X217655Y233750D01*X221200Y233750D02* X222623Y233750D01*X219800Y233750D02*X219900Y233750D01*X220726Y234576D02* X219900Y233750D01*X310910Y232835D02*X310925Y232835D01*X309350Y233060D02* X310685Y233060D01*X310910Y232835D02*X310685Y233060D01*X216600Y234089D02* X215604Y234089D01*X205163Y234500D02*X205800Y234500D01*X205025Y234520D02* X205143Y234520D01*X205163Y234500D02*X205143Y234520D01*X220586Y233036D02* X223756Y233036D01*X208725Y234225D02*X208572Y234225D01*X209500Y233500D02* X209450Y233500D01*X208725Y234225D02*X209450Y233500D01*X206513Y233439D02* X206645Y233439D01*X205800Y233500D02*X206452Y233500D01*X206513Y233439D02* X206452Y233500D01*X213275Y233246D02*X213275Y233246D01*X212500Y233500D02* X213021Y233500D01*X213275Y233246D02*X213021Y233500D01*X291650Y234060D02* X293235Y234060D01*X172187Y235037D02*X171880Y235037D01*X165075Y236475D02* X165343Y236475D01*X270088Y236295D02*X260305Y236295D01*X258300Y238300D02* X260305Y236295D01*X273660Y235400D02*X270983Y235400D01*X270088Y236295D02* X270983Y235400D01*X170850Y235150D02*X170440Y235150D01*X170030Y235560D02* X170440Y235150D01*X169390Y235150D02*X168800Y235150D01*X314069Y235060D02* X312100Y235060D01*X302175Y236060D02*X302900Y236060D01*X291683Y236585D02* X297145Y236585D01*X298100Y237540D02*X297145Y236585D01*X287279Y236540D02* X291638Y236540D01*X291683Y236585D02*X291638Y236540D01*X298854Y236060D02* X298100Y236060D01*X282155Y235060D02*X288900Y235060D01*X261234Y234810D02* X270813Y234810D01*X271181Y234443D02*X270813Y234810D01*X166900Y234895D02* X166895Y234895D01*X163085Y235350D02*X162850Y235350D01*X220352Y235695D02* X221738Y235695D01*X222623Y234810D02*X221738Y235695D01*X218889Y234985D02* X219642Y234985D01*X220352Y235695D02*X219642Y234985D01*X217495Y235795D02* X218079Y235795D01*X218889Y234985D02*X218079Y235795D01*X215299Y234805D02* X216905Y234805D01*X217200Y235100D02*X216905Y234805D01*X215092Y234817D02* X215287Y234817D01*X215299Y234805D02*X215287Y234817D01*X311100Y235060D02* X309350Y235060D01*X305650Y236060D02*X303900Y236060D01*X297100Y236060D02* X295350Y236060D01*X291650Y235060D02*X289900Y235060D01*X256358Y236079D02* X256421Y236079D01*X170850Y236550D02*X171650Y236550D01*X171800Y236400D02* X171650Y236550D01*X304025Y235285D02*X303450Y235285D01*X305650Y235060D02* X304250Y235060D01*X304025Y235285D02*X304250Y235060D01*X295350Y235060D02* X293775Y235060D01*X291650Y236060D02*X293225Y236060D01*X311002Y236285D02* X311604Y236285D01*X309350Y236060D02*X310777Y236060D01*X311002Y236285D02* X310777Y236060D01*X236910Y236790D02*X237473Y236790D01*X268700Y238600D02* X267875Y238600D01*X172750Y238150D02*X171900Y238150D01*X173100Y237100D02* X172200Y237100D01*X161850Y237780D02*X161737Y237780D01*X295350Y237060D02* X296990Y237060D01*X297630Y237700D02*X296990Y237060D01*X204205Y236795D02* X192815Y236795D01*X191932Y237678D02*X192815Y236795D01*X165466Y237052D02* X164646Y237052D01*X258300Y238300D02*X258200Y238300D01*X170660Y238200D02* X170850Y238200D01*X313280Y237060D02*X312000Y237060D01*X302175Y238060D02* X302900Y238060D01*X263151Y237843D02*X285976Y237843D01*X287279Y236540D02* X285976Y237843D01*X287964Y237060D02*X288900Y237060D01*X204685Y237300D02* X205700Y237300D01*X203056Y237795D02*X204190Y237795D01*X204685Y237300D02* X204190Y237795D01*X200444Y237215D02*X202476Y237215D01*X203056Y237795D02* X202476Y237215D01*X199435Y237290D02*X200369Y237290D01*X200444Y237215D02* X200369Y237290D01*X311000Y237060D02*X309350Y237060D01*X305650Y238060D02* X303900Y238060D01*X297100Y238060D02*X295350Y238060D01*X291650Y237060D02* X289900Y237060D01*X242950Y237500D02*X239173Y237500D01*X238463Y236790D02* X239173Y237500D01*X243500Y238000D02*X243450Y238000D01*X242950Y237500D02* X243450Y238000D01*X255500Y237000D02*X255550Y237000D01*X256071Y236479D02* X255550Y237000D01*X174803Y237963D02*X175400Y237963D01*X174530Y237800D02* X174639Y237800D01*X174803Y237963D02*X174639Y237800D01*X175196Y238228D02* X175400Y238228D01*X174150Y238500D02*X174924Y238500D01*X175196Y238228D02* X174924Y238500D01*X138800Y238150D02*X137375Y238150D01*X166575Y238475D02* X166800Y238475D01*X163659Y236728D02*X163775Y236728D01*X162850Y236750D02* X163636Y236750D01*X163659Y236728D02*X163636Y236750D01*X252500Y237000D02* X252550Y237000D01*X252970Y236580D02*X252550Y237000D01*X309350Y238060D02* X310925Y238060D01*X291650Y238060D02*X293225Y238060D01*X254500Y237000D02* X254550Y237000D01*X255293Y236257D02*X254550Y237000D01*X270100Y238600D02* X270925Y238600D01*X304090Y237285D02*X304075Y237285D01*X305650Y237060D02* X304315Y237060D01*X304090Y237285D02*X304315Y237060D01*X224200Y238100D02* X224770Y238100D01*X225035Y237835D02*X224770Y238100D01*X255427Y238502D02* X255468Y238502D01*X255500Y238470D02*X255468Y238502D01*X254565Y238535D02* X254695Y238535D01*X255045Y238885D02*X254695Y238535D01*X240500Y237000D02* X239725Y237000D01*X250500Y237000D02*X250550Y237000D01*X251257Y236293D02* X250550Y237000D01*X172750Y239900D02*X172760Y239900D01*X166800Y240200D02* X167800Y240200D01*X164600Y238700D02*X164500Y238700D01*X163914Y238114D02* X164500Y238700D01*X157600Y240200D02*X156825Y240200D01*X151300Y238700D02* X150351Y238700D01*X297630Y239760D02*X299844Y239760D01*X225641Y239905D02* X226583Y239905D01*X223740Y239957D02*X225589Y239957D01*X225641Y239905D02* X225589Y239957D01*X313280Y239060D02*X312000Y239060D01*X302175Y240060D02* X302900Y240060D01*X299221Y239060D02*X298100Y239060D01*X300424Y239117D02* X299278Y239117D01*X299221Y239060D02*X299278Y239117D01*X287703Y240060D02* X288900Y240060D01*X287529Y239060D02*X288900Y239060D01*X274448Y239757D02* X286832Y239757D01*X287529Y239060D02*X286832Y239757D01*X259907Y239705D02* X274396Y239705D01*X274448Y239757D02*X274396Y239705D01*X150351Y240100D02* X151300Y240100D01*X169450Y239600D02*X168820Y239600D01*X168470Y239950D02* X168820Y239600D01*X170850Y239600D02*X170750Y239600D01*X170152Y240198D02* X170750Y239600D01*X162200Y240100D02*X162100Y240100D01*X161450Y240751D02* X162100Y240100D01*X311000Y239060D02*X309350Y239060D01*X305650Y240060D02* X303900Y240060D01*X297100Y239060D02*X295350Y239060D01*X291650Y240060D02* X289900Y240060D01*X291650Y239060D02*X289900Y239060D01*X160458Y238770D02* X160575Y238770D01*X159800Y238750D02*X160437Y238750D01*X160458Y238770D02* X160437Y238750D01*X153800Y238700D02*X155301Y238700D01*X157600Y239200D02* X156825Y239200D01*X153140Y239200D02*X152600Y239200D01*X153180Y239220D02* X153160Y239220D01*X153140Y239200D02*X153160Y239220D01*X153800Y238700D02* X153700Y238700D01*X153180Y239220D02*X153700Y238700D01*X221470Y240300D02* X221000Y240300D01*X165800Y239200D02*X165850Y239200D01*X166575Y238475D02* X165850Y239200D01*X295350Y240060D02*X296925Y240060D01*X223347Y239695D02* X225400Y239695D01*X225795Y239300D02*X225400Y239695D01*X221000Y239300D02* X222952Y239300D01*X223347Y239695D02*X222952Y239300D01*X309350Y240060D02* X310925Y240060D01*X200280Y238970D02*X197402Y238970D01*X196882Y238450D02* X197402Y238970D01*X159800Y239750D02*X159280Y239750D01*X159025Y239495D02* X159280Y239750D01*X304276Y238766D02*X303450Y238766D01*X305650Y238820D02* X304330Y238820D01*X304276Y238766D02*X304330Y238820D01*X245700Y240200D02* X246700Y240200D01*X247391Y240286D02*X247475Y240286D01*X246700Y240200D02* X247304Y240200D01*X247391Y240286D02*X247304Y240200D01*X245475Y239475D02* X246134Y239475D01*X244700Y240200D02*X244750Y240200D01*X245475Y239475D02* X244750Y240200D01*X243700Y240200D02*X243750Y240200D01*X244403Y239547D02* X243750Y240200D01*X242445Y239475D02*X242423Y239475D01*X241445Y239475D02* X241433Y239475D01*X240445Y239475D02*X240443Y239475D01*X202378Y239593D02* X202492Y239593D01*X201700Y239500D02*X202285Y239500D01*X202378Y239593D02* X202285Y239500D01*X219550Y238800D02*X218500Y238800D01*X218205Y238505D02* X218500Y238800D01*X220000Y240300D02*X219524Y240300D01*X219149Y239925D02* X219524Y240300D01*X234990Y240084D02*X234916Y240084D01*X235700Y240200D02* X235106Y240200D01*X234990Y240084D02*X235106Y240200D01*X167545Y240925D02* X167412Y240925D01*X152180Y241070D02*X151900Y241070D01*X312725Y242060D02* X312000Y242060D01*X312725Y241060D02*X312000Y241060D01*X302175Y241060D02* X302900Y241060D01*X262183Y241700D02*X264024Y241700D01*X265024Y242700D02* X264024Y241700D01*X298854Y242060D02*X298100Y242060D01*X299409Y241060D02* X298100Y241060D01*X287620Y242060D02*X288900Y242060D01*X256695Y240751D02* X258862Y240751D01*X259907Y239705D02*X258862Y240751D01*X227362Y242172D02* X225436Y242172D01*X224278Y243330D02*X225436Y242172D01*X161450Y240751D02* X160687Y240751D01*X227635Y241083D02*X229915Y241083D01*X230573Y241741D02* X229915Y241083D01*X226280Y240692D02*X227245Y240692D01*X227635Y241083D02* X227245Y240692D01*X225417Y241442D02*X225530Y241442D01*X226280Y240692D02* X225530Y241442D01*X311000Y242060D02*X309350Y242060D01*X311000Y241060D02* X309350Y241060D01*X305650Y241060D02*X303900Y241060D01*X297100Y242060D02* X295350Y242060D01*X297100Y241060D02*X295350Y241060D01*X291650Y242060D02* X289900Y242060D01*X243700Y241200D02*X243750Y241200D01*X244174Y241624D02* X243750Y241200D01*X244700Y241200D02*X244750Y241200D01*X245475Y241925D02* X244750Y241200D01*X246150Y241700D02*X246039Y241700D01*X245705Y242035D02* X246039Y241700D01*X246700Y241200D02*X246650Y241200D01*X246150Y241700D02* X246650Y241200D01*X200094Y240970D02*X200280Y240970D01*X200700Y240550D02* X200280Y240970D01*X200203Y241377D02*X199945Y241377D01*X200700Y241500D02* X200230Y241500D01*X200227Y241497D02*X200230Y241500D01*X222224Y242550D02* X222800Y242550D01*X221000Y241300D02*X221482Y241300D01*X221901Y240881D02* X221482Y241300D01*X174313Y240733D02*X174650Y240733D01*X175000Y241083D02* X174650Y240733D01*X262475Y242525D02*X262464Y242525D01*X304223Y241713D02* X303450Y241713D01*X305650Y241820D02*X304330Y241820D01*X304223Y241713D02* X304330Y241820D01*X278500Y242050D02*X276675Y242050D01*X202373Y241223D02* X202654Y241223D01*X291650Y241060D02*X293235Y241060D01*X223800Y242550D02* X223860Y242550D01*X295350Y243060D02*X299800Y243060D01*X300170Y242690D02* X299800Y243060D01*X313380Y244060D02*X312100Y244060D01*X302175Y244060D02* X302900Y244060D01*X302175Y243060D02*X302900Y243060D01*X291678Y243540D02* X297630Y243540D01*X298100Y244010D02*X297630Y243540D01*X287269Y243580D02* X291638Y243580D01*X291678Y243540D02*X291638Y243580D01*X281536Y242923D02* X286612Y242923D01*X287269Y243580D02*X286612Y242923D01*X273401Y243220D02* X281238Y243220D01*X281536Y242923D02*X281238Y243220D01*X265024Y242700D02* X272881Y242700D01*X273401Y243220D02*X272881Y242700D01*X287703Y243060D02* X288900Y243060D01*X276710Y243721D02*X280008Y243721D01*X224278Y243330D02* X223870Y243330D01*X223200Y244000D02*X223870Y243330D01*X228395Y242632D02* X227822Y242632D01*X227362Y242172D02*X227822Y242632D01*X311100Y244060D02* X309350Y244060D01*X305650Y244060D02*X303900Y244060D01*X305650Y243060D02* X303900Y243060D01*X297100Y244060D02*X295350Y244060D01*X291650Y243060D02* X289900Y243060D01*X165121Y244091D02*X172580Y244091D01*X175180Y246691D02* X172580Y244091D01*X234630Y243795D02*X236705Y243795D01*X237200Y243300D02* X236705Y243795D01*X233700Y243700D02*X234535Y243700D01*X234630Y243795D02* X234535Y243700D01*X140655Y244130D02*X139854Y244130D01*X222221Y244230D02* X221420Y244230D01*X221000Y244650D02*X221420Y244230D01*X221769Y242660D02* X222008Y242660D01*X221420Y242770D02*X221659Y242770D01*X221769Y242660D02* X221659Y242770D01*X222008Y242660D02*X222114Y242660D01*X222224Y242550D02* X222114Y242660D01*X291650Y244060D02*X293225Y244060D01*X224600Y244100D02* X225170Y244100D01*X225425Y243845D02*X225170Y244100D01*X264555Y244200D02* X265835Y244200D01*X263200Y244300D02*X264455Y244300D01*X264555Y244200D02* X264455Y244300D01*X310706Y242784D02*X311550Y242784D01*X309350Y242820D02* X310670Y242820D01*X310706Y242784D02*X310670Y242820D01*X201700Y243500D02* X202430Y243500D01*X261655Y242705D02*X260895Y242705D01*X261553Y244200D02* X261475Y244200D01*X262200Y244300D02*X261652Y244300D01*X261553Y244200D02* X261652Y244300D01*X232087Y243731D02*X231975Y243731D01*X232700Y243700D02* X232118Y243700D01*X232087Y243731D02*X232118Y243700D01*X217704Y243290D02* X215676Y243290D01*X214686Y242300D02*X215676Y243290D01*X219580Y244230D02* X219475Y244230D01*X218927Y243682D02*X219475Y244230D01*X233700Y244800D02* X237701Y244800D01*X238207Y244294D02*X237701Y244800D01*X155160Y246265D02* X155217Y246265D01*X155293Y246188D02*X155217Y246265D01*X141870Y245760D02* X142940Y245760D01*X143700Y245000D02*X142940Y245760D01*X144270Y244900D02* X143700Y244900D01*X312825Y245060D02*X312100Y245060D01*X302268Y246060D02* X302900Y246060D01*X301824Y245778D02*X301986Y245778D01*X302268Y246060D02* X301986Y245778D01*X298760Y245747D02*X298737Y245747D01*X298100Y245110D02* X298737Y245747D01*X287622Y246060D02*X288900Y246060D01*X277000Y245347D02* X286909Y245347D01*X287622Y246060D02*X286909Y245347D01*X276710Y245060D02* X288900Y245060D01*X222630Y245500D02*X223200Y245500D01*X311100Y245060D02* X309350Y245060D01*X305650Y246060D02*X303900Y246060D01*X297100Y245060D02* X295350Y245060D01*X291650Y246060D02*X289900Y246060D01*X291650Y245060D02* X289900Y245060D01*X161859Y244745D02*X161364Y244745D01*X161254Y244856D02* X161364Y244745D01*X200004Y245364D02*X199913Y245364D01*X200700Y245500D02* X200139Y245500D01*X200004Y245364D02*X200139Y245500D01*X142300Y244900D02* X141425Y244900D01*X140655Y244130D02*X141425Y244900D01*X142125Y246445D02* X142075Y246445D01*X142800Y246600D02*X142280Y246600D01*X142125Y246445D02* X142280Y246600D01*X224030Y244770D02*X222730Y244770D01*X222627Y244667D02* X222730Y244770D01*X210669Y245302D02*X210729Y245302D01*X210669Y245300D02* X210729Y245300D01*X264662Y245701D02*X266595Y245701D01*X263620Y245770D02* X264592Y245770D01*X264662Y245701D02*X264592Y245770D01*X232700Y244800D02* X231975Y244800D01*X229400Y245850D02*X231225Y245850D01*X221673Y245559D02* X221735Y245559D01*X221000Y245700D02*X221532Y245700D01*X221673Y245559D02* X221532Y245700D01*X269600Y245900D02*X267875Y245900D01*X221681Y246620D02* X221811Y246620D01*X295350Y246060D02*X296925Y246060D01*X263200Y246300D02* X264000Y246300D01*X264685Y246985D02*X264000Y246300D01*X310910Y246285D02* X310925Y246285D01*X309350Y246060D02*X310685Y246060D01*X310910Y246285D02* X310685Y246060D01*X261680Y244705D02*X260895Y244705D01*X261655Y245705D02* X260895Y245705D01*X305650Y245060D02*X304075Y245060D01*X201700Y245500D02* X202170Y245500D01*X202197Y245473D02*X202170Y245500D01*X202371Y246447D02* X202518Y246447D01*X201700Y246500D02*X202317Y246500D01*X202371Y246447D02* X202317Y246500D01*X224030Y246170D02*X222455Y246170D01*X222358Y246073D02* X222455Y246170D01*X143800Y247600D02*X144525Y247600D01*X299270Y248630D02* X299420Y248630D01*X299880Y249090D02*X299420Y248630D01*X298715Y248530D02* X299170Y248530D01*X299270Y248630D02*X299170Y248530D01*X234100Y248300D02* X234900Y248300D01*X235700Y249100D02*X234900Y248300D01*X313380Y248060D02* X312100Y248060D01*X313380Y247060D02*X312100Y247060D01*X302476Y247530D02* X302480Y247530D01*X302900Y247110D02*X302480Y247530D01*X298680Y247060D02* X298100Y247060D01*X299469Y248128D02*X298100Y248128D01*X287620Y248060D02* X288900Y248060D01*X264668Y247588D02*X272842Y247588D01*X276710Y243721D02* X272842Y247588D01*X261204Y247998D02*X264258Y247998D01*X264668Y247588D02* X264258Y247998D01*X222630Y246900D02*X223200Y246900D01*X222605Y248300D02* X223200Y248300D01*X222370Y248089D02*X222394Y248089D01*X222605Y248300D02* X222394Y248089D01*X165465Y248200D02*X165135Y248200D01*X164800Y248535D02* X165135Y248200D01*X311100Y248060D02*X309350Y248060D01*X311100Y247060D02* X309350Y247060D01*X305650Y247060D02*X303900Y247060D01*X297100Y248060D02* X295350Y248060D01*X297100Y247060D02*X295350Y247060D01*X291650Y248060D02* X289900Y248060D01*X175180Y246691D02*X176092Y246691D01*X149642Y248008D02* X148845Y248008D01*X142800Y247600D02*X142330Y247600D01*X142075Y247345D02* X142330Y247600D01*X143065Y248415D02*X143230Y248415D01*X215905Y247805D02* X213045Y247805D01*X211850Y249000D02*X213045Y247805D01*X225290Y248300D02* X224600Y248300D01*X226330Y248320D02*X225310Y248320D01*X225290Y248300D02* X225310Y248320D01*X221674Y248575D02*X221752Y248575D01*X201900Y247600D02* X201850Y247600D01*X201359Y248091D02*X201850Y247600D01*X263847Y247201D02* X263925Y247201D01*X263200Y247300D02*X263748Y247300D01*X263847Y247201D02* X263748Y247300D01*X221000Y246700D02*X221601Y246700D01*X221681Y246620D02* X221601Y246700D01*X303920Y247835D02*X303240Y247835D01*X305650Y248060D02* X304145Y248060D01*X303920Y247835D02*X304145Y248060D01*X227447Y247103D02* X227451Y247103D01*X139500Y247400D02*X138930Y247400D01*X138675Y247655D02* X138930Y247400D01*X218102Y247798D02*X217210Y247798D01*X216711Y247299D02* X217210Y247798D01*X219358Y248311D02*X218614Y248311D01*X218102Y247798D02* X218614Y248311D01*X219580Y248230D02*X219439Y248230D01*X219358Y248311D02* X219439Y248230D01*X262200Y247300D02*X261234Y247300D01*X219213Y247816D02* X219013Y247816D01*X220000Y247700D02*X219329Y247700D01*X219213Y247816D02* X219329Y247700D01*X177176Y248554D02*X177075Y248554D01*X177800Y248500D02* X177229Y248500D01*X177176Y248554D02*X177229Y248500D01*X170165Y246995D02* X170660Y246995D01*X169135Y248200D02*X169465Y248200D01*X169800Y247865D02* X169465Y248200D01*X291650Y247060D02*X293225Y247060D01*X196903Y248255D02* X195785Y248255D01*X198850Y248300D02*X196948Y248300D01*X196903Y248255D02* X196948Y248300D01*X150770Y249610D02*X149840Y249610D01*X149410Y249180D02* X149840Y249610D01*X151300Y249700D02*X150860Y249700D01*X150770Y249610D02* X150860Y249700D01*X299880Y249090D02*X300420Y249090D01*X301010Y248500D02* X300420Y249090D01*X296940Y248805D02*X298440Y248805D01*X298715Y248530D02* X298440Y248805D01*X295350Y249060D02*X296685Y249060D01*X296940Y248805D02* X296685Y249060D01*X236514Y250314D02*X237186Y250314D01*X238200Y251327D02* X237186Y250314D01*X234550Y249800D02*X235673Y249800D01*X237200Y251327D02* X235673Y249800D01*X231786Y250264D02*X232208Y250264D01*X153330Y249200D02* X153465Y249200D01*X153817Y248847D02*X153465Y249200D01*X312825Y250060D02* X312100Y250060D01*X302317Y249060D02*X302900Y249060D01*X302085Y248941D02* X302198Y248941D01*X302317Y249060D02*X302198Y248941D01*X282320Y249049D02* X286520Y249049D01*X290795Y253324D02*X286520Y249049D01*X277959Y249550D02* X281819Y249550D01*X282320Y249049D02*X281819Y249550D01*X299020Y249078D02* X298522Y249078D01*X298100Y249500D02*X298522Y249078D01*X282225Y248819D02* X286814Y248819D01*X288792Y250797D02*X286814Y248819D01*X277780Y249320D02* X281723Y249320D01*X282225Y248819D02*X281723Y249320D01*X288430Y249060D02* X288900Y249060D01*X264492Y248730D02*X273040Y248730D01*X276710Y245060D02* X273040Y248730D01*X261029Y249166D02*X264056Y249166D01*X264492Y248730D02* X264056Y249166D01*X255000Y249800D02*X260400Y249800D01*X260717Y249483D02* X260400Y249800D01*X259700Y248800D02*X260402Y248800D01*X261204Y247998D02* X260402Y248800D01*X166465Y250200D02*X166135Y250200D01*X165800Y249865D02* X166135Y250200D01*X163770Y249700D02*X163300Y249700D01*X164465Y249200D02* X164135Y249200D01*X163800Y249535D02*X164135Y249200D01*X311100Y250060D02* X309350Y250060D01*X305650Y249060D02*X303900Y249060D01*X296630Y249550D02* X297100Y249550D01*X295350Y250060D02*X296200Y250060D01*X296630Y249630D02* X296200Y250060D01*X291650Y249060D02*X289900Y249060D01*X140900Y250200D02* X141790Y250200D01*X140330Y249470D02*X138270Y249470D01*X151800Y249200D02* X150834Y249200D01*X149642Y248008D02*X150834Y249200D01*X162135Y250200D02* X162465Y250200D01*X162800Y250535D02*X162465Y250200D01*X139500Y250200D02* X138675Y250200D01*X139500Y248800D02*X138675Y248800D01*X214270Y249000D02* X213400Y249000D01*X215200Y249850D02*X214950Y249850D01*X214380Y249280D02* X214950Y249850D01*X211850Y249000D02*X211600Y249000D01*X217000Y249850D02* X216750Y249850D01*X216180Y249280D02*X216750Y249850D01*X220600Y249850D02* X218800Y249850D01*X223570Y250130D02*X224530Y250130D01*X225000Y250600D02* X224530Y250130D01*X221470Y250470D02*X223230Y250470D01*X223570Y250130D02* X223230Y250470D01*X220600Y249850D02*X220850Y249850D01*X221470Y250470D02* X220850Y249850D01*X222400Y249850D02*X223270Y249850D01*X224080Y249040D02* X223270Y249850D01*X170895Y250170D02*X169770Y250170D01*X169300Y249700D02* X169770Y250170D01*X211600Y249000D02*X211350Y249000D01*X210218Y247868D02* X211350Y249000D01*X212363Y249787D02*X209495Y249787D01*X208690Y248982D02* X209495Y249787D01*X213400Y249000D02*X213150Y249000D01*X212363Y249787D02* X213150Y249000D01*X221000Y248700D02*X221549Y248700D01*X221674Y248575D02* X221549Y248700D01*X291650Y250060D02*X293225Y250060D01*X271000Y250200D02* X269575Y250200D01*X305650Y250060D02*X307225Y250060D01*X225000Y250650D02* X225580Y250650D01*X225741Y250810D02*X225580Y250650D01*X229410Y250430D02* X229780Y250430D01*X230200Y250850D02*X229780Y250430D01*X228500Y250500D02* X229340Y250500D01*X229410Y250430D02*X229340Y250500D01*X228627Y248737D02* X228608Y248737D01*X228015Y248144D02*X228608Y248737D01*X226775Y248980D02* X228030Y248980D01*X228500Y249450D02*X228030Y248980D01*X233100Y249504D02* X232200Y249504D01*X309350Y249060D02*X310925Y249060D01*X227500Y249500D02* X226158Y249500D01*X168300Y248700D02*X168770Y248700D01*X168800Y248670D02* X168770Y248700D01*X169495Y250230D02*X168770Y250230D01*X168300Y250700D02* X168770Y250230D01*X208944Y250294D02*X206725Y250294D01*X168270Y252200D02* X168135Y252200D01*X167800Y252535D02*X168135Y252200D01*X237225Y252300D02* X238200Y252300D01*X234820Y251070D02*X235995Y251070D01*X237225Y252300D02* X235995Y251070D01*X231815Y251930D02*X231930Y251930D01*X231200Y251900D02* X231785Y251900D01*X231815Y251930D02*X231785Y251900D01*X234100Y251300D02* X235900Y251300D01*X237705Y253105D02*X235900Y251300D01*X234100Y252300D02* X234638Y252300D01*X236638Y254300D02*X234638Y252300D01*X167300Y251700D02* X166392Y251700D01*X166051Y252041D02*X166392Y251700D01*X288792Y250797D02* X295442Y250797D01*X275010Y250930D02*X276170Y250930D01*X277780Y249320D02* X276170Y250930D01*X261088Y252600D02*X273340Y252600D01*X275010Y250930D02* X273340Y252600D01*X264932Y251670D02*X272250Y251670D01*X272640Y251280D02* X272250Y251670D01*X258700Y250800D02*X264062Y250800D01*X264932Y251670D02* X264062Y250800D01*X166189Y251210D02*X166455Y251210D01*X166770Y250895D02* X166455Y251210D01*X165112Y252312D02*X165136Y252312D01*X165561Y251887D02* X165136Y252312D01*X140900Y252014D02*X141849Y252014D01*X164430Y252077D02* X163738Y252077D01*X165041Y252082D02*X164434Y252082D01*X164430Y252077D02* X164434Y252082D01*X171511Y251899D02*X172914Y251899D01*X173989Y252975D02* X172914Y251899D01*X170105Y252170D02*X171241Y252170D01*X171511Y251899D02* X171241Y252170D01*X164300Y250700D02*X163300Y250700D01*X139500Y251600D02* X138675Y251600D01*X178800Y252500D02*X180052Y252500D01*X227323Y252500D02* X227500Y252500D01*X227500Y252450D02*X227273Y252450D01*X154800Y251700D02* X154300Y251700D01*X225741Y250810D02*X225851Y250810D01*X213100Y251900D02* X212990Y251900D01*X226832Y252450D02*X226684Y252450D01*X227273Y252500D02* X226882Y252500D01*X226832Y252450D02*X226882Y252500D01*X228970Y251500D02* X228500Y251500D01*X229485Y251900D02*X230200Y251900D01*X229225Y251885D02* X229470Y251885D01*X229485Y251900D02*X229470Y251885D01*X232375Y251300D02* X233100Y251300D01*X218210Y252470D02*X218580Y252470D01*X217000Y251550D02* X217870Y251550D01*X217900Y251580D02*X217870Y251550D01*X204200Y252000D02* X203425Y252000D01*X169510Y252230D02*X168770Y252230D01*X168300Y252700D02* X168770Y252230D01*X171511Y252394D02*X172311Y252394D01*X203856Y251063D02* X202515Y251063D01*X207245Y250995D02*X203924Y250995D01*X203856Y251063D02* X203924Y250995D01*X208300Y252000D02*X208250Y252000D01*X207245Y250995D02* X208250Y252000D01*X206780Y251530D02*X205880Y251530D01*X204875Y252535D02* X205880Y251530D01*X207300Y252000D02*X207250Y252000D01*X206780Y251530D02* X207250Y252000D01*X165220Y251203D02*X165267Y251203D01*X165300Y251170D02* X165267Y251203D01*X176092Y252500D02*X177800Y252500D01*X170650Y251170D02* X170105Y251170D01*X169800Y250865D02*X170105Y251170D01*X171424Y251146D02* X170674Y251146D01*X170650Y251170D02*X170674Y251146D01*X172164Y251206D02* X171485Y251206D01*X171424Y251146D02*X171485Y251206D01*X229170Y252645D02* X229225Y252645D01*X228500Y252500D02*X229025Y252500D01*X229170Y252645D02* X229025Y252500D01*X206828Y252478D02*X208857Y252478D01*X209075Y252695D02* X208857Y252478D01*X206300Y252000D02*X206350Y252000D01*X206828Y252478D02* X206350Y252000D01*X164818Y254611D02*X164269Y254611D01*X166914Y253114D02* X166316Y253114D01*X164818Y254611D02*X166316Y253114D01*X167495Y253170D02* X166971Y253170D01*X166914Y253114D02*X166971Y253170D01*X164724Y254094D02* X164086Y254094D01*X163760Y254420D02*X164086Y254094D01*X166703Y252808D02* X166010Y252808D01*X164724Y254094D02*X166010Y252808D01*X167300Y252700D02* X166811Y252700D01*X166703Y252808D02*X166811Y252700D01*X231755Y253339D02* X232353Y253339D01*X231620Y253370D02*X231724Y253370D01*X231755Y253339D02* X231724Y253370D01*X236638Y254300D02*X237200Y254300D01*X163573Y254018D02* X163531Y254018D01*X163251Y254298D02*X163531Y254018D01*X164628Y253864D02* X163727Y253864D01*X163573Y254018D02*X163727Y253864D01*X261901Y254148D02* X264073Y254148D01*X264725Y254800D02*X264073Y254148D01*X290795Y253324D02* X291290Y253324D01*X261183Y252830D02*X274679Y252830D01*X277959Y249550D02* X274679Y252830D01*X254695Y252795D02*X260893Y252795D01*X261088Y252600D02* X260893Y252795D01*X155055Y252937D02*X155621Y252937D01*X154300Y252700D02* X154819Y252700D01*X155055Y252937D02*X154819Y252700D01*X155313Y253368D02* X154632Y253368D01*X154300Y253700D02*X154632Y253368D01*X155760Y253555D02* X155500Y253555D01*X155313Y253368D02*X155500Y253555D01*X156291Y253415D02* X155900Y253415D01*X155760Y253555D02*X155900Y253415D01*X142798Y254611D02* X144411Y254611D01*X140900Y254400D02*X142588Y254400D01*X142798Y254611D02* X142588Y254400D01*X141421Y253621D02*X142431Y253621D01*X155728Y254205D02* X156750Y254205D01*X154775Y254390D02*X155543Y254390D01*X155728Y254205D02* X155543Y254390D01*X154135Y254200D02*X154585Y254200D01*X154775Y254390D02* X154585Y254200D01*X151052Y253141D02*X150533Y253141D01*X152495Y253170D02* X151081Y253170D01*X151052Y253141D02*X151081Y253170D01*X205643Y253020D02* X205525Y253020D01*X206300Y253000D02*X205663Y253000D01*X205643Y253020D02* X205663Y253000D01*X169770Y253170D02*X171061Y253170D01*X171478Y252753D02* X171061Y253170D01*X139500Y254400D02*X138675Y254400D01*X178800Y254500D02* X179525Y254500D01*X178800Y253500D02*X179525Y253500D01*X138979Y253621D02* X138675Y253621D01*X166667Y254630D02*X166575Y254630D01*X181500Y253950D02* X183225Y253950D01*X203313Y253250D02*X203195Y253250D01*X204200Y253000D02* X203563Y253000D01*X203313Y253250D02*X203563Y253000D01*X227500Y253500D02* X226583Y253500D01*X198850Y254400D02*X197025Y254400D01*X266200Y254300D02* X267625Y254300D01*X227500Y254500D02*X226583Y254500D01*X207300Y253000D02* X207250Y253000D01*X206782Y253468D02*X207250Y253000D01*X173842Y252975D02* X173989Y252975D01*X172379Y253177D02*X173639Y253177D01*X173842Y252975D02* X173639Y253177D01*X171478Y252753D02*X171955Y252753D01*X172379Y253177D02* X171955Y252753D01*X217000Y254320D02*X217270Y254320D01*X170300Y252700D02* X169980Y252700D01*X169510Y252230D02*X169980Y252700D01*X170300Y252700D02* X171206Y252700D01*X171511Y252394D02*X171206Y252700D01*X176457Y253790D02* X175220Y253790D01*X177380Y253970D02*X176637Y253970D01*X176457Y253790D02* X176637Y253970D01*X203698Y254393D02*X203605Y254393D01*X202397Y255601D02* X203605Y254393D01*X166657Y253609D02*X166575Y253609D01*X167300Y253700D02* X166748Y253700D01*X166657Y253609D02*X166748Y253700D01*X175980Y254500D02* X177800Y254500D01*X228970Y254500D02*X228500Y254500D01*X229447Y254479D02* X228970Y254479D01*X228977Y254027D02*X229097Y254027D01*X229447Y254377D02* X229097Y254027D01*X232540Y252690D02*X231928Y252690D01*X309350Y256060D02* X310935Y256060D01*X308350Y255325D02*X308845Y255325D01*X306280Y255430D02* X308245Y255430D01*X308350Y255325D02*X308245Y255430D01*X143800Y255600D02* X144791Y255600D01*X145401Y254990D02*X144791Y255600D01*X153105Y256230D02* X153830Y256230D01*X154300Y256700D02*X153830Y256230D01*X166428Y256438D02* X166288Y256438D01*X163379Y255365D02*X163337Y255365D01*X162910Y255792D02* X163337Y255365D01*X234724Y254974D02*X234852Y254974D01*X235202Y255324D02* X234852Y254974D01*X274682Y255570D02*X278247Y255570D01*X279329Y254488D02* X278247Y255570D01*X265130Y255770D02*X274482Y255770D01*X274682Y255570D02* X274482Y255770D01*X288201Y256060D02*X288900Y256060D01*X287810Y256223D02* X288039Y256223D01*X288201Y256060D02*X288039Y256223D01*X254193Y255307D02* X258894Y255307D01*X260717Y253483D02*X258894Y255307D01*X151023Y255302D02* X150518Y255302D01*X152830Y255230D02*X151095Y255230D01*X151023Y255302D02* X151095Y255230D01*X291650Y256060D02*X289900Y256060D01*X153795Y255195D02* X156750Y255195D01*X158001Y256473D02*X159068Y256473D01*X154135Y256200D02* X157727Y256200D01*X158001Y256473D02*X157727Y256200D01*X153135Y255200D02* X153465Y255200D01*X153800Y255535D02*X153465Y255200D01*X165706Y256321D02* X164889Y256321D01*X164609Y256601D02*X164889Y256321D01*X166493Y255943D02* X166083Y255943D01*X165706Y256321D02*X166083Y255943D01*X167830Y256170D02* X166720Y256170D01*X166493Y255943D02*X166720Y256170D01*X142800Y255600D02* X141695Y255600D01*X154300Y254700D02*X156170Y254700D01*X154300Y255700D02* X156170Y255700D01*X167300Y254700D02*X166738Y254700D01*X166667Y254630D02* X166738Y254700D01*X293829Y255913D02*X293775Y255913D01*X295350Y256060D02* X293976Y256060D01*X293829Y255913D02*X293976Y256060D01*X263200Y254700D02* X263925Y254700D01*X226796Y256520D02*X226583Y256520D01*X227500Y256500D02* X226816Y256500D01*X226796Y256520D02*X226816Y256500D01*X205075Y256090D02* X204065Y256090D01*X206750Y255550D02*X205615Y255550D01*X205075Y256090D02* X205615Y255550D01*X263200Y255700D02*X263925Y255700D01*X227500Y255500D02* X226583Y255500D01*X229151Y256119D02*X229293Y256119D01*X228920Y256030D02* X229062Y256030D01*X229151Y256119D02*X229062Y256030D01*X228500Y256210D02* X228740Y256210D01*X228920Y256030D02*X228740Y256210D01*X262200Y255700D02* X261234Y255700D01*X262200Y254700D02*X261234Y254700D01*X170798Y255307D02* X171520Y255307D01*X169770Y255230D02*X170721Y255230D01*X170798Y255307D02* X170721Y255230D01*X202397Y255601D02*X201832Y255601D01*X232407Y256364D02* X232248Y256364D01*X233100Y256300D02*X232471Y256300D01*X232407Y256364D02* X232471Y256300D01*X229414Y255137D02*X229335Y255137D01*X230200Y254900D02* X229651Y254900D01*X229414Y255137D02*X229651Y254900D01*X309350Y258060D02* X310935Y258060D01*X305650Y258060D02*X306970Y258060D01*X307235Y258325D02* X306970Y258060D01*X309350Y257060D02*X310935Y257060D01*X305650Y257060D02* X304330Y257060D01*X304100Y256830D02*X304330Y257060D01*X151033Y257297D02* X150533Y257297D01*X152800Y257200D02*X151130Y257200D01*X151033Y257297D02* X151130Y257200D01*X152300Y256700D02*X152635Y256700D01*X153105Y256230D02* X152635Y256700D01*X156990Y256700D02*X154300Y256700D01*X169805Y257205D02* X170950Y257205D01*X167300Y256700D02*X166690Y256700D01*X166428Y256438D02* X166690Y256700D01*X165934Y256854D02*X165369Y256854D01*X166521Y256934D02* X166014Y256934D01*X165934Y256854D02*X166014Y256934D01*X167830Y257170D02* X166757Y257170D01*X166521Y256934D02*X166757Y257170D01*X142300Y256800D02* X143500Y256800D01*X150261Y256802D02*X150738Y256802D01*X150968Y257032D02* X150738Y256802D01*X149664Y256838D02*X150226Y256838D01*X150261Y256802D02* X150226Y256838D01*X143500Y256800D02*X144425Y256800D01*X146335Y258200D02* X143500Y258200D01*X149823Y257705D02*X146830Y257705D01*X146335Y258200D02* X146830Y257705D01*X150738Y257792D02*X149910Y257792D01*X149823Y257705D02* X149910Y257792D01*X151300Y257700D02*X150830Y257700D01*X150738Y257792D02* X150830Y257700D01*X143500Y258200D02*X142300Y258200D01*X285530Y257091D02* X288169Y257091D01*X288480Y257402D02*X288169Y257091D01*X295362Y258580D02* X297630Y258580D01*X298100Y258110D02*X297630Y258580D01*X293920Y258548D02* X295330Y258548D01*X295362Y258580D02*X295330Y258548D01*X290375Y257560D02* X292933Y257560D01*X293920Y258548D02*X292933Y257560D01*X285310Y256861D02* X289676Y256861D01*X290375Y257560D02*X289676Y256861D01*X271720Y258076D02* X276863Y258076D01*X277793Y259005D02*X276863Y258076D01*X268896Y257740D02* X271384Y257740D01*X271720Y258076D02*X271384Y257740D01*X266679Y258076D02* X268560Y258076D01*X268896Y257740D02*X268560Y258076D01*X298540Y257060D02* X298100Y257060D01*X298990Y257000D02*X298600Y257000D01*X298540Y257060D02* X298600Y257000D01*X200844Y258600D02*X199060Y258600D01*X197810Y257350D02* X199060Y258600D01*X281100Y257300D02*X279600Y257300D01*X276122Y256800D02* X275350Y256800D01*X277500Y256840D02*X276162Y256840D01*X276122Y256800D02* X276162Y256840D01*X279040Y256840D02*X277500Y256840D01*X279600Y257300D02* X279500Y257300D01*X279040Y256840D02*X279500Y257300D01*X249995Y257805D02* X259522Y257805D01*X261278Y259561D02*X259522Y257805D01*X183517Y257086D02* X191437Y257086D01*X191932Y256591D02*X191437Y257086D01*X153795Y258205D02* X155620Y258205D01*X297100Y258060D02*X295350Y258060D01*X297100Y257060D02* X295350Y257060D01*X291650Y258060D02*X289900Y258060D01*X226936Y257500D02* X227500Y257500D01*X226810Y257760D02*X226676Y257760D01*X170300Y256700D02* X171520Y256700D01*X171637Y256817D02*X171520Y256700D01*X140900Y256800D02* X140075Y256800D01*X140098Y257990D02*X140075Y257990D01*X140900Y258200D02* X140308Y258200D01*X140098Y257990D02*X140308Y258200D01*X178700Y258100D02* X179425Y258100D01*X154300Y257700D02*X155025Y257700D01*X152300Y257700D02* X153300Y257700D01*X153795Y257205D02*X155815Y257205D01*X156308Y257698D02* X155815Y257205D01*X206750Y257350D02*X205426Y257350D01*X205091Y257685D02* X205426Y257350D01*X263200Y256700D02*X264150Y256700D01*X264685Y256165D02* X264150Y256700D01*X291650Y257060D02*X293548Y257060D01*X273650Y256800D02* X272775Y256800D01*X263630Y258180D02*X263925Y258180D01*X226676Y257760D02* X226583Y257760D01*X217410Y257810D02*X218745Y257810D01*X219147Y258213D02* X218745Y257810D01*X170300Y257700D02*X170268Y257700D01*X169300Y258668D02* X170268Y257700D01*X171496Y257790D02*X172626Y257790D01*X170300Y257700D02* X171405Y257700D01*X171496Y257790D02*X171405Y257700D01*X262200Y257700D02* X261234Y257700D01*X262200Y256700D02*X261234Y256700D01*X230200Y257900D02* X229570Y257900D01*X229290Y258180D02*X229570Y257900D01*X229588Y256879D02* X229468Y256879D01*X230200Y256900D02*X229610Y256900D01*X229588Y256879D02* X229610Y256900D01*X232780Y258620D02*X232350Y258620D01*X260000Y259800D02* X262463Y259800D01*X263214Y260551D02*X262463Y259800D01*X258195Y258789D02* X259389Y258789D01*X259692Y259092D02*X259389Y258789D01*X250002Y258798D02* X258186Y258798D01*X258195Y258789D02*X258186Y258798D01*X249003Y259798D02* X249402Y259798D01*X249700Y259500D02*X249402Y259798D01*X228710Y260210D02* X228300Y260210D01*X227960Y260550D02*X228300Y260210D01*X310693Y260060D02* X309350Y260060D01*X310935Y259840D02*X310913Y259840D01*X310693Y260060D02* X310913Y259840D01*X303523Y260060D02*X305650Y260060D01*X309350Y259060D02* X310935Y259060D01*X305650Y259060D02*X306970Y259060D01*X307235Y259325D02* X306970Y259060D01*X252695Y259805D02*X250995Y259805D01*X250700Y260100D02* X250995Y259805D01*X253689Y259826D02*X252716Y259826D01*X252695Y259805D02* X252716Y259826D01*X259405Y259805D02*X253711Y259805D01*X253689Y259826D02* X253711Y259805D01*X143700Y259500D02*X144425Y259500D01*X144425Y260500D02* X143700Y260500D01*X200747Y258893D02*X198767Y258893D01*X197810Y259850D02* X198767Y258893D01*X286230Y259060D02*X288900Y259060D01*X277793Y259005D02* X283166Y259005D01*X285310Y256861D02*X283166Y259005D01*X206040Y260050D02* X202294Y260050D01*X200844Y258600D02*X202294Y260050D01*X207640Y259350D02* X208500Y259350D01*X207250Y259150D02*X207440Y259150D01*X207640Y259350D02* X207440Y259150D01*X210325Y258790D02*X211285Y258790D01*X208500Y259595D02* X209520Y259595D01*X210325Y258790D02*X209520Y259595D01*X261278Y259561D02* X263214Y259561D01*X249000Y258800D02*X249400Y258800D01*X249700Y258500D02* X249400Y258800D01*X248000Y259800D02*X248400Y259800D01*X248700Y259500D02* X248400Y259800D01*X158885Y259970D02*X158760Y259970D01*X158400Y260330D02* X158760Y259970D01*X159006Y259289D02*X158845Y259289D01*X158164Y259970D02* X158845Y259289D01*X162881Y260628D02*X161775Y260628D01*X159830Y262573D02* X161775Y260628D01*X157196Y259880D02*X156990Y259880D01*X155670Y261200D02* X156990Y259880D01*X152829Y259229D02*X150564Y259229D01*X155641Y260200D02* X154135Y260200D01*X153800Y260535D02*X154135Y260200D01*X155756Y260450D02* X155541Y260450D01*X155291Y260700D02*X155541Y260450D01*X297100Y260060D02* X295350Y260060D01*X291650Y259060D02*X289900Y259060D01*X239700Y259800D02* X239000Y259800D01*X238700Y260100D02*X239000Y259800D01*X234545Y259795D02* X237705Y259795D01*X238200Y259300D02*X237705Y259795D01*X179643Y259040D02* X179515Y259040D01*X180300Y259100D02*X179703Y259100D01*X179643Y259040D02* X179703Y259100D01*X179313Y259100D02*X178700Y259100D01*X179515Y259040D02* X179373Y259040D01*X179313Y259100D02*X179373Y259040D01*X165772Y258835D02* X165241Y258835D01*X166757Y259194D02*X166130Y259194D01*X165772Y258835D02* X166130Y259194D01*X167300Y259700D02*X167263Y259700D01*X166757Y259194D02* X167263Y259700D01*X142700Y260500D02*X141975Y260500D01*X142700Y259500D02* X141975Y259500D01*X180300Y260600D02*X179808Y260600D01*X179597Y260810D02* X179808Y260600D01*X154300Y258700D02*X155025Y258700D01*X167332Y259700D02* X167300Y259700D01*X154300Y259700D02*X155816Y259700D01*X156346Y259170D02* X155816Y259700D01*X263200Y258700D02*X264685Y258700D01*X295350Y259060D02* X293775Y259060D01*X271000Y260350D02*X269575Y260350D01*X204523Y258965D02* X204300Y258965D01*X205550Y259150D02*X204708Y259150D01*X204523Y258965D02* X204708Y259150D01*X157406Y260370D02*X156825Y260370D01*X155496Y261700D02* X156825Y260370D01*X222715Y260035D02*X221147Y260035D01*X211285Y260035D02* X212368Y260035D01*X166552Y260453D02*X166568Y260453D01*X166815Y260700D02* X166568Y260453D01*X176501Y260056D02*X177264Y260056D01*X177700Y259620D02* X177264Y260056D01*X262200Y258700D02*X261234Y258700D01*X291650Y260060D02* X293660Y260060D01*X287850Y260060D02*X288853Y260060D01*X181300Y259100D02* X182032Y259100D01*X181300Y260600D02*X182032Y260600D01*X227500Y259500D02* X226583Y259500D01*X310935Y262060D02*X309350Y262060D01*X306970Y262060D02* X305650Y262060D01*X310935Y261060D02*X309350Y261060D01*X306970Y261060D02* X305650Y261060D01*X260591Y260800D02*X260000Y260800D01*X259700Y260500D02* X260000Y260800D01*X264230Y261163D02*X260954Y261163D01*X260591Y260800D02* X260954Y261163D01*X272070Y261820D02*X264887Y261820D01*X264230Y261163D02* X264887Y261820D01*X251700Y261800D02*X251000Y261800D01*X250700Y262100D02* X251000Y261800D01*X253689Y260774D02*X252726Y260774D01*X251700Y261800D02* X252726Y260774D01*X255400Y260800D02*X253716Y260800D01*X253689Y260774D02* X253716Y260800D01*X260467Y261800D02*X256000Y261800D01*X255700Y261500D02* X256000Y261800D01*X269514Y262320D02*X260987Y262320D01*X260467Y261800D02* X260987Y262320D01*X272175Y262190D02*X269644Y262190D01*X269514Y262320D02* X269644Y262190D01*X255405Y261805D02*X252995Y261805D01*X252700Y262100D02* X252995Y261805D01*X269609Y262550D02*X262033Y262550D01*X261788Y262795D02* X262033Y262550D01*X272730Y262420D02*X269739Y262420D01*X269609Y262550D02* X269739Y262420D01*X226542Y261811D02*X225258Y261811D01*X225142Y261927D02* X225258Y261811D01*X225900Y262489D02*X225837Y262489D01*X225208Y263117D02* X225837Y262489D01*X166808Y260948D02*X166285Y260948D01*X165302Y259965D02* X166285Y260948D01*X167465Y261200D02*X167060Y261200D01*X166808Y260948D02* X167060Y261200D01*X168800Y262200D02*X168135Y262200D01*X167800Y261865D02* X168135Y262200D01*X204407Y262158D02*X203217Y262158D01*X202056Y260997D02* X203217Y262158D01*X209155Y261305D02*X211285Y261305D01*X208500Y260750D02* X208600Y260750D01*X209155Y261305D02*X208600Y260750D01*X207440Y260950D02* X207250Y260950D01*X208500Y260750D02*X207640Y260750D01*X207440Y260950D02* X207640Y260750D01*X261234Y261800D02*X262200Y261800D01*X287620Y262060D02* X288900Y262060D01*X288209Y261060D02*X288900Y261060D01*X287863Y261185D02* X288084Y261185D01*X288209Y261060D02*X288084Y261185D01*X298617Y261060D02* X298100Y261060D01*X299169Y261021D02*X299011Y261021D01*X298100Y260110D02* X299011Y261021D01*X163174Y261360D02*X161978Y261360D01*X161722Y261616D02* X161978Y261360D01*X214520Y262117D02*X216557Y262117D01*X217103Y262664D02* X216557Y262117D01*X207800Y261850D02*X206760Y261850D01*X206400Y261490D02* X206760Y261850D01*X211285Y262570D02*X210290Y262570D01*X209690Y263170D02* X210290Y262570D01*X243700Y261800D02*X246400Y261800D01*X246708Y261492D02* X246400Y261800D01*X295362Y262540D02*X299794Y262540D01*X300004Y262750D02* X299794Y262540D01*X290375Y262560D02*X295342Y262560D01*X295362Y262540D02* X295342Y262560D01*X269834Y262650D02*X290285Y262650D01*X290375Y262560D02* X290285Y262650D01*X156738Y261820D02*X157380Y261820D01*X157930Y261270D02* X157380Y261820D01*X161809Y261128D02*X163080Y261128D01*X163376Y260833D02* X163080Y261128D01*X161117Y261820D02*X161117Y261820D01*X161809Y261128D02* X161117Y261820D01*X155334Y262188D02*X154148Y262188D01*X153800Y262535D02* X154148Y262188D01*X157336Y261140D02*X156381Y261140D01*X155334Y262188D02* X156381Y261140D01*X155670Y261200D02*X154135Y261200D01*X153800Y261535D02* X154135Y261200D01*X150830Y261700D02*X151300Y261700D01*X150081Y262343D02* X150187Y262343D01*X150830Y261700D02*X150187Y262343D01*X149361Y262531D02* X149893Y262531D01*X150081Y262343D02*X149893Y262531D01*X150655Y262200D02* X151800Y262200D01*X152300Y261700D02*X151800Y262200D01*X150121Y262656D02* X150199Y262656D01*X150655Y262200D02*X150199Y262656D01*X150288Y261767D02* X148435Y261767D01*X145896Y264306D02*X148435Y261767D01*X152800Y261200D02* X150855Y261200D01*X150288Y261767D02*X150855Y261200D01*X155291Y260700D02* X154300Y260700D01*X225900Y260711D02*X224894Y260711D01*X297100Y261060D02* X295350Y261060D01*X263200Y261800D02*X263925Y261800D01*X291650Y262060D02* X289900Y262060D01*X291650Y261060D02*X289900Y261060D01*X186514Y261078D02* X186513Y261078D01*X186900Y261465D02*X186513Y261078D01*X184089Y262011D02* X184950Y262011D01*X183954Y261996D02*X184074Y261996D01*X184089Y262011D02* X184074Y261996D01*X237900Y261300D02*X236500Y261300D01*X234129Y263671D02* X236500Y261300D01*X142700Y262500D02*X141975Y262500D01*X142700Y261500D02* X141975Y261500D01*X179597Y260810D02*X179575Y260810D01*X179425Y262600D02* X178700Y262600D01*X178700Y261600D02*X179425Y261600D01*X179425Y262600D02* X179550Y262600D01*X180300Y263350D02*X179550Y262600D01*X179825Y262000D02* X180300Y262000D01*X154300Y262700D02*X155025Y262700D01*X171520Y261230D02* X169770Y261230D01*X169300Y261700D02*X169770Y261230D01*X205550Y260950D02* X204863Y260950D01*X204272Y261541D02*X204863Y260950D01*X295350Y262060D02* X293775Y262060D01*X285310Y260900D02*X284710Y260900D01*X158870Y261210D02* X160060Y261210D01*X155496Y261700D02*X154300Y261700D01*X176652Y262600D02* X177700Y262600D01*X176689Y261928D02*X175980Y261928D01*X177700Y261600D02* X177016Y261600D01*X176689Y261928D02*X177016Y261600D01*X171029Y262151D02* X171544Y262151D01*X171894Y262501D02*X171544Y262151D01*X170135Y262200D02* X170980Y262200D01*X171029Y262151D02*X170980Y262200D01*X166815Y260700D02* X167300Y260700D01*X171030Y261700D02*X170300Y261700D01*X172100Y261725D02* X171055Y261725D01*X171030Y261700D02*X171055Y261725D01*X230592Y261131D02* X230386Y261131D01*X231300Y261100D02*X230624Y261100D01*X230592Y261131D02* X230624Y261100D01*X231300Y262100D02*X229544Y262100D01*X228657Y260790D02* X228630Y260790D01*X181300Y262000D02*X182576Y262000D01*X183954Y263789D02* X184950Y263789D01*X310693Y263060D02*X309350Y263060D01*X310935Y262840D02* X310913Y262840D01*X310693Y263060D02*X310913Y262840D01*X303922Y263060D02* X305650Y263060D01*X250400Y262800D02*X250205Y262800D01*X250200Y262805D02* X250205Y262800D01*X250400Y263800D02*X250320Y263800D01*X250200Y263920D02* X250320Y263800D01*X252400Y262800D02*X251000Y262800D01*X250700Y263100D02* X251000Y262800D01*X261788Y262795D02*X255995Y262795D01*X255700Y262500D02* X255995Y262795D01*X153800Y264200D02*X153135Y264200D01*X152800Y264535D02* X153135Y264200D01*X221216Y264111D02*X220657Y264111D01*X223928Y264333D02* X221438Y264333D01*X221216Y264111D02*X221438Y264333D01*X224024Y264563D02* X223561Y264563D01*X222623Y265501D02*X223561Y264563D01*X177700Y263700D02* X176975Y263700D01*X170300Y264700D02*X170770Y264700D01*X172756Y266686D02* X170770Y264700D01*X170966Y263896D02*X171595Y263896D01*X175020Y267320D02* X171595Y263896D01*X170300Y263700D02*X170770Y263700D01*X170966Y263896D02* X170770Y263700D01*X209874Y263845D02*X211285Y263845D01*X208450Y264550D02* X209169Y264550D01*X209874Y263845D02*X209169Y264550D01*X207800Y263650D02* X205899Y263650D01*X204407Y262158D02*X205899Y263650D01*X288307Y264060D02* X288900Y264060D01*X287839Y263715D02*X287962Y263715D01*X288307Y264060D02* X287962Y263715D01*X295370Y264580D02*X297630Y264580D01*X298100Y264110D02* X297630Y264580D01*X293913Y264540D02*X295330Y264540D01*X295370Y264580D02* X295330Y264540D01*X289397Y263535D02*X292908Y263535D01*X293913Y264540D02* X292908Y263535D01*X286815Y263220D02*X289082Y263220D01*X289397Y263535D02* X289082Y263220D01*X269930Y262880D02*X275882Y262880D01*X277753Y264751D02* X275882Y262880D01*X299614Y263060D02*X298100Y263060D01*X209690Y263170D02* X208450Y263170D01*X186964Y263789D02*X186900Y263789D01*X218270Y264437D02* X219928Y264437D01*X220093Y264602D02*X219928Y264437D01*X302794Y263267D02* X303220Y263267D01*X303920Y263967D02*X303220Y263267D01*X300004Y262750D02* X302277Y262750D01*X302794Y263267D02*X302277Y262750D01*X264907Y262780D02* X269704Y262780D01*X269834Y262650D02*X269704Y262780D01*X260822Y264016D02* X263671Y264016D01*X264907Y262780D02*X263671Y264016D01*X255700Y263800D02* X260606Y263800D01*X260822Y264016D02*X260606Y263800D01*X252995Y262805D02* X254705Y262805D01*X255700Y263800D02*X254705Y262805D01*X251000Y263800D02* X252400Y263800D01*X252700Y263500D02*X252400Y263800D01*X244995Y263805D02* X246705Y263805D01*X247695Y264795D02*X246705Y263805D01*X236834Y263805D02* X242705Y263805D01*X243200Y264300D02*X242705Y263805D01*X158020Y264700D02* X158300Y264700D01*X162590Y264700D02*X162300Y264700D01*X153465Y263200D02* X153135Y263200D01*X152800Y263535D02*X153135Y263200D01*X148866Y263026D02* X149752Y263026D01*X150121Y262656D02*X149752Y263026D01*X297100Y264060D02* X295350Y264060D01*X297100Y263060D02*X295350Y263060D01*X291650Y264060D02* X289900Y264060D01*X170500Y263230D02*X169770Y263230D01*X169300Y263700D02* X169770Y263230D01*X171035Y263265D02*X170535Y263265D01*X170500Y263230D02* X170535Y263265D01*X179248Y264700D02*X178700Y264700D01*X205300Y264350D02* X205250Y264350D01*X204700Y264900D02*X205250Y264350D01*X197350Y263850D02* X195922Y263850D01*X305650Y264060D02*X306970Y264060D01*X307235Y263795D02* X306970Y264060D01*X291650Y263060D02*X293225Y263060D01*X309350Y264060D02* X310925Y264060D01*X206750Y262750D02*X205707Y262750D01*X205032Y262075D02* X205707Y262750D01*X266200Y264350D02*X264775Y264350D01*X220023Y264207D02* X219489Y264207D01*X219002Y263720D02*X219489Y264207D01*X179425Y263700D02* X178700Y263700D01*X215030Y263350D02*X214527Y263350D01*X168800Y263200D02* X169465Y263200D01*X169800Y262865D02*X169465Y263200D01*X176975Y264700D02* X177700Y264700D01*X230546Y264380D02*X230543Y264380D01*X231300Y264100D02* X230826Y264100D01*X230546Y264380D02*X230826Y264100D01*X231300Y263100D02* X230543Y263100D01*X181300Y263400D02*X182587Y263400D01*X181967Y264682D02* X182047Y264682D01*X306970Y265060D02*X305650Y265060D01*X310925Y265060D02* X309350Y265060D01*X152495Y265170D02*X151770Y265170D01*X151300Y264700D02* X151770Y265170D01*X150897Y265103D02*X150268Y265103D01*X143700Y266600D02* X144425Y266600D01*X172756Y266686D02*X172912Y266686D01*X173262Y267036D02* X172912Y266686D01*X287620Y265060D02*X288900Y265060D01*X299060Y266060D02* X298100Y266060D01*X259334Y266226D02*X262489Y266226D01*X263214Y265501D02* X262489Y266226D01*X254000Y265800D02*X254400Y265800D01*X254700Y266100D02* X254400Y265800D01*X253200Y265300D02*X253695Y265300D01*X253700Y265305D02* X253695Y265300D01*X277753Y264751D02*X285283Y264751D01*X286815Y263220D02* X285283Y264751D01*X263999Y265996D02*X267094Y265996D01*X268600Y264490D02* X267094Y265996D01*X263009Y265006D02*X263419Y265006D01*X263709Y265296D02* X263419Y265006D01*X259812Y265996D02*X262019Y265996D01*X263009Y265006D02* X262019Y265996D01*X254997Y265798D02*X259614Y265798D01*X259812Y265996D02* X259614Y265798D01*X254200Y265300D02*X254695Y265300D01*X254700Y265305D02* X254695Y265300D01*X268659Y265501D02*X269154Y265501D01*X259430Y266456D02* X267704Y266456D01*X268659Y265501D02*X267704Y266456D01*X162830Y265700D02* X163300Y265700D01*X162135Y265200D02*X162465Y265200D01*X162800Y265535D02* X162465Y265200D01*X225048Y266523D02*X225193Y266523D01*X225200Y266530D02* X225193Y266523D01*X307685Y266060D02*X309350Y266060D01*X304460Y265560D02* X307185Y265560D01*X307685Y266060D02*X307185Y265560D01*X247695Y264795D02* X250405Y264795D01*X250700Y264500D02*X250405Y264795D01*X238000Y264800D02* X244400Y264800D01*X244700Y264500D02*X244400Y264800D01*X304330Y266060D02* X305650Y266060D01*X233513Y266491D02*X234148Y266491D01*X236834Y263805D02* X234148Y266491D01*X157124Y265210D02*X157510Y265210D01*X158020Y264700D02* X157510Y265210D01*X164465Y265200D02*X163090Y265200D01*X162590Y264700D02* X163090Y265200D01*X146186Y265006D02*X147130Y265006D01*X147380Y264756D02* X147130Y265006D01*X297100Y266060D02*X295350Y266060D01*X291650Y265060D02* X289900Y265060D01*X233005Y265894D02*X233035Y265894D01*X232300Y266100D02* X232800Y266100D01*X233005Y265894D02*X232800Y266100D01*X232926Y265123D02* X233058Y265123D01*X232300Y265100D02*X232903Y265100D01*X232926Y265123D02* X232903Y265100D01*X179678Y266150D02*X179575Y266150D01*X180300Y266200D02* X179728Y266200D01*X179678Y266150D02*X179728Y266200D01*X142098Y266610D02* X141975Y266610D01*X142700Y266600D02*X142108Y266600D01*X142098Y266610D02* X142108Y266600D01*X138700Y266250D02*X140170Y266250D01*X140451Y266531D02* X140170Y266250D01*X179778Y264800D02*X180300Y264800D01*X179575Y264950D02* X179628Y264950D01*X179778Y264800D02*X179628Y264950D01*X179575Y264950D02* X179498Y264950D01*X179248Y264700D02*X179498Y264950D01*X142590Y264970D02* X142510Y264970D01*X142050Y264510D02*X142510Y264970D01*X204211Y265916D02* X203716Y265916D01*X293895Y265045D02*X293775Y265045D01*X295350Y265060D02* X293910Y265060D01*X293895Y265045D02*X293910Y265060D01*X220810Y265750D02* X220663Y265750D01*X244900Y265805D02*X247005Y265805D01*X248225Y267025D02* X247005Y265805D01*X243200Y266300D02*X244405Y266300D01*X244900Y265805D02* X244405Y266300D01*X304434Y266560D02*X306840Y266560D01*X307880Y267600D02* X306840Y266560D01*X302576Y266246D02*X304120Y266246D01*X304434Y266560D02* X304120Y266246D01*X298010Y265240D02*X301570Y265240D01*X302576Y266246D02* X301570Y265240D01*X291678Y265540D02*X297710Y265540D01*X298010Y265240D02* X297710Y265540D01*X290380Y265580D02*X291638Y265580D01*X291678Y265540D02* X291638Y265580D01*X286710Y265940D02*X290020Y265940D01*X290380Y265580D02* X290020Y265940D01*X273451Y265330D02*X286100Y265330D01*X286710Y265940D02* X286100Y265330D01*X259525Y266686D02*X272095Y266686D01*X273451Y265330D02* X272095Y266686D01*X250395Y265805D02*X253405Y265805D01*X253700Y266100D02* X253405Y265805D01*X247700Y265800D02*X248400Y265800D01*X248700Y266100D02* X248400Y265800D01*X244995Y264805D02*X246705Y264805D01*X247700Y265800D02* X246705Y264805D01*X238695Y265795D02*X244405Y265795D01*X244700Y265500D02* X244405Y265795D01*X262913Y264776D02*X263974Y264776D01*X264204Y265006D02* X263974Y264776D01*X251699Y264799D02*X262890Y264799D01*X262913Y264776D02* X262890Y264799D01*X152135Y266200D02*X152465Y266200D01*X152800Y265865D02* X152465Y266200D01*X216782Y264832D02*X216513Y264832D01*X215030Y263350D02* X216513Y264832D01*X217000Y265101D02*X216782Y265101D01*X204189Y266411D02* X202421Y266411D01*X201713Y265703D02*X202421Y266411D01*X205300Y265350D02* X205250Y265350D01*X204189Y266411D02*X205250Y265350D01*X291650Y266060D02* X293225Y266060D01*X231300Y265100D02*X230552Y265100D01*X229967Y265685D02* X230552Y265100D01*X231300Y266100D02*X230587Y266100D01*X230217Y266470D02* X230587Y266100D01*X201076Y265488D02*X200401Y265488D01*X201340Y265675D02* X201262Y265675D01*X201076Y265488D02*X201262Y265675D01*X182500Y266270D02* X183655Y266270D01*X181300Y266200D02*X182430Y266200D01*X182500Y266270D02* X182430Y266200D01*X181300Y264800D02*X181850Y264800D01*X181967Y264682D02* X181850Y264800D01*X143700Y267600D02*X144330Y267600D01*X145310Y268580D02* X144330Y267600D01*X265489Y267159D02*X267551Y267159D01*X268659Y268266D02* X267551Y267159D01*X232080Y268061D02*X230012Y268061D01*X228816Y266865D02* X230012Y268061D01*X235194Y267805D02*X232336Y267805D01*X232080Y268061D02* X232336Y267805D01*X236694Y267814D02*X235204Y267814D01*X235194Y267805D02* X235204Y267814D01*X250485Y267805D02*X236704Y267805D01*X236694Y267814D02* X236704Y267805D01*X251600Y268150D02*X250830Y268150D01*X250485Y267805D02* X250830Y268150D01*X288440Y268050D02*X289000Y268050D01*X285450Y268480D02* X288010Y268480D01*X288440Y268050D02*X288010Y268480D01*X283490Y267010D02* X283980Y267010D01*X285450Y268480D02*X283980Y267010D01*X287340Y267050D02* X289000Y267050D01*X298854Y267060D02*X298100Y267060D01*X254995Y266795D02* X258765Y266795D01*X259334Y266226D02*X258765Y266795D01*X255210Y267300D02* X258586Y267300D01*X259430Y266456D02*X258586Y267300D01*X231533Y268678D02* X231038Y268678D01*X231038Y268678D02*X231038Y268678D01*X196630Y268550D02* X197200Y268550D01*X216070Y267403D02*X218803Y267403D01*X219700Y268300D02* X218803Y267403D01*X220327Y267293D02*X221100Y267293D01*X221507Y266808D02* X221996Y266808D01*X222346Y266458D02*X221996Y266808D01*X240700Y266800D02* X238000Y266800D01*X237705Y266505D02*X238000Y266800D01*X304330Y267060D02* X305650Y267060D01*X303171Y268393D02*X303576Y268393D01*X304299Y267670D02* X303576Y268393D01*X266589Y267900D02*X267532Y267900D01*X297100Y267060D02* X295350Y267060D01*X291650Y268050D02*X290000Y268050D01*X291650Y267050D02* X290000Y267050D01*X142700Y267600D02*X141975Y267600D01*X199954Y268696D02* X200914Y268696D01*X200980Y268630D02*X200914Y268696D01*X199374Y267676D02* X199821Y267676D01*X295350Y268060D02*X293775Y268060D01*X278500Y266750D02* X276675Y266750D01*X301811Y267060D02*X300883Y267060D01*X300220Y267723D02* X300883Y267060D01*X275040Y268413D02*X284610Y268413D01*X284970Y268773D02* X284610Y268413D01*X269234Y267976D02*X272757Y267976D01*X273554Y268773D02* X272757Y267976D01*X262153Y266929D02*X268186Y266929D01*X269234Y267976D02* X268186Y266929D01*X255735Y267800D02*X261282Y267800D01*X262153Y266929D02* X261282Y267800D01*X254910Y268025D02*X255510Y268025D01*X255735Y267800D02* X255510Y268025D01*X253014Y267814D02*X254698Y267814D01*X254910Y268025D02* X254698Y267814D01*X249730Y266795D02*X252395Y266795D01*X252700Y267100D02* X252395Y266795D01*X248225Y267025D02*X249500Y267025D01*X249730Y266795D02* X249500Y267025D01*X301370Y268340D02*X302373Y268340D01*X303589Y267124D02* X302373Y268340D01*X255680Y267530D02*X258681Y267530D01*X259525Y266686D02* X258681Y267530D01*X255005Y267795D02*X255415Y267795D01*X255680Y267530D02* X255415Y267795D01*X254000Y266800D02*X254400Y266800D01*X254705Y267105D02* X254400Y266800D01*X248995Y266795D02*X249405Y266795D01*X250395Y265805D02* X249405Y266795D01*X262485Y268705D02*X266884Y268705D01*X267000Y268821D02* X266884Y268705D01*X251100Y267905D02*X251719Y267905D01*X252829Y269015D02* X251719Y267905D01*X248130Y267255D02*X250450Y267255D01*X251100Y267905D02* X250450Y267255D01*X242700Y266800D02*X247675Y266800D01*X248130Y267255D02* X247675Y266800D01*X310935Y268060D02*X309350Y268060D01*X306970Y268060D02* X305650Y268060D01*X311265Y267060D02*X309350Y267060D01*X222600Y268350D02* X222350Y268350D01*X221687Y267687D02*X222350Y268350D01*X196255Y266975D02* X196055Y266975D01*X197200Y267150D02*X196430Y267150D01*X196255Y266975D02* X196430Y267150D01*X181880Y268430D02*X183565Y268430D01*X231300Y267100D02* X230683Y267100D01*X230217Y267566D02*X230683Y267100D01*X269065Y269695D02* X268659Y269695D01*X264567Y269461D02*X263214Y269461D01*X268659Y269695D02* X264801Y269695D01*X264567Y269461D02*X264801Y269695D01*X285710Y270060D02* X288900Y270060D01*X275380Y268790D02*X284440Y268790D01*X285710Y270060D02* X284440Y268790D01*X271110Y270480D02*X273690Y270480D01*X275380Y268790D02* X273690Y270480D01*X298670Y270060D02*X298100Y270060D01*X298681Y269060D02* X298100Y269060D01*X299334Y269106D02*X298727Y269106D01*X298681Y269060D02* X298727Y269106D01*X258263Y269461D02*X260636Y269461D01*X262445Y271270D02* X260636Y269461D01*X230573Y270170D02*X228870Y270170D01*X228300Y269600D02* X228870Y270170D01*X196115Y269034D02*X196146Y269034D01*X196630Y268550D02* X196146Y269034D01*X195466Y269187D02*X195961Y269187D01*X196115Y269034D02* X195961Y269187D01*X223270Y269070D02*X220270Y269070D01*X219700Y268500D02* X220270Y269070D01*X301850Y268854D02*X302710Y268854D01*X303171Y268393D02* X302710Y268854D01*X231900Y269611D02*X232897Y269611D01*X297100Y270060D02* X295350Y270060D01*X297100Y269060D02*X295350Y269060D01*X291650Y270060D02* X289900Y270060D01*X240750Y270200D02*X234303Y270200D01*X233700Y270803D02* X234303Y270200D01*X241300Y269700D02*X241250Y269700D01*X240750Y270200D02* X241250Y269700D01*X225346Y270451D02*X225406Y270451D01*X251300Y270700D02* X250300Y270700D01*X138000Y270100D02*X136575Y270100D01*X179830Y269300D02* X180300Y269300D01*X179292Y269300D02*X178800Y269300D01*X179575Y269040D02* X179553Y269040D01*X179292Y269300D02*X179553Y269040D01*X249300Y270700D02* X248300Y270700D01*X223366Y269300D02*X221550Y269300D01*X220900Y269950D02* X221550Y269300D01*X224552Y269105D02*X223561Y269105D01*X223366Y269300D02* X223561Y269105D01*X226030Y269270D02*X224717Y269270D01*X224552Y269105D02* X224717Y269270D01*X199080Y270100D02*X199600Y270100D01*X196960Y270240D02* X198940Y270240D01*X199080Y270100D02*X198940Y270240D01*X196300Y270493D02* X196707Y270493D01*X196960Y270240D02*X196707Y270493D01*X222600Y270050D02* X220900Y270050D01*X291650Y269060D02*X293650Y269060D01*X248300Y270700D02* X247373Y270700D01*X227361Y269461D02*X227425Y269461D01*X296630Y270630D02* X299890Y270630D01*X300620Y271360D02*X299890Y270630D01*X294155Y270560D02* X296560Y270560D01*X296630Y270630D02*X296560Y270560D01*X290388Y269573D02* X293167Y269573D01*X294155Y270560D02*X293167Y269573D01*X284970Y268773D02* X289588Y268773D01*X290388Y269573D02*X289588Y268773D01*X273554Y268773D02* X274680Y268773D01*X275040Y268413D02*X274680Y268773D01*X308030Y270060D02* X309350Y270060D01*X303810Y270060D02*X305650Y270060D01*X267000Y268821D02* X267814Y268821D01*X268164Y268471D02*X267814Y268821D01*X258953Y269196D02* X261994Y269196D01*X262485Y268705D02*X261994Y269196D01*X256756Y268966D02* X258723Y268966D01*X258953Y269196D02*X258723Y268966D01*X252829Y269015D02* X256707Y269015D01*X256756Y268966D02*X256707Y269015D01*X310935Y269060D02* X309350Y269060D01*X304183Y269060D02*X305650Y269060D01*X303120Y269480D02* X303763Y269480D01*X304183Y269060D02*X303763Y269480D01*X177019Y269300D02* X177800Y269300D01*X176153Y269240D02*X176959Y269240D01*X177019Y269300D02* X176959Y269240D01*X201307Y269881D02*X201325Y269881D01*X200600Y270100D02* X201088Y270100D01*X201307Y269881D02*X201088Y270100D01*X250300Y269700D02* X249300Y269700D01*X249300Y269700D02*X248300Y269700D01*X250300Y269700D02* X251300Y269700D01*X241300Y270700D02*X241250Y270700D01*X240509Y271441D02* X241250Y270700D01*X181885Y269935D02*X182052Y269935D01*X242300Y270700D02* X242250Y270700D01*X241509Y271441D02*X242250Y270700D01*X235300Y270700D02* X234503Y270700D01*X245300Y270100D02*X246075Y270100D01*X248300Y269700D02* X247373Y269700D01*X229700Y269500D02*X230543Y269500D01*X219154Y272302D02* X218986Y272302D01*X218365Y271681D02*X218986Y272302D01*X219480Y272470D02* X219322Y272470D01*X219154Y272302D02*X219322Y272470D01*X231900Y271389D02* X232897Y271389D01*X282790Y271030D02*X270400Y271030D01*X269065Y269695D02* X270400Y271030D01*X191914Y271725D02*X190584Y271725D01*X190016Y271158D02* X190584Y271725D01*X194070Y271630D02*X192010Y271630D01*X191914Y271725D02* X192010Y271630D01*X292853Y271573D02*X255023Y271573D01*X251600Y268150D02* X255023Y271573D01*X303128Y272140D02*X302561Y272140D01*X298642Y276060D02* X302561Y272140D01*X298854Y272415D02*X298695Y272415D01*X298100Y273010D02* X298695Y272415D01*X299020Y271590D02*X298520Y271590D01*X298100Y272010D02* X298520Y271590D01*X299020Y271590D02*X299020Y271590D01*X300640Y271980D02* X299410Y271980D01*X299020Y271590D02*X299410Y271980D01*X262445Y271270D02* X283554Y271270D01*X284004Y270820D02*X283554Y271270D01*X230671Y271713D02* X229013Y271713D01*X228300Y271000D02*X229013Y271713D01*X216516Y272416D02* X217297Y272416D01*X218233Y273352D02*X217297Y272416D01*X193500Y272200D02* X191681Y272200D01*X190636Y273245D02*X191681Y272200D01*X297100Y272060D02* X295350Y272060D01*X290075Y271060D02*X291650Y271060D01*X233003Y271983D02* X232972Y271983D01*X232523Y272431D02*X232972Y271983D01*X245300Y271100D02* X246075Y271100D01*X290090Y272285D02*X290075Y272285D01*X291650Y272060D02* X290315Y272060D01*X290090Y272285D02*X290315Y272060D01*X225600Y271350D02* X225700Y271350D01*X226426Y270624D02*X225700Y271350D01*X229700Y270900D02* X230543Y270900D01*X242638Y271441D02*X242525Y271441D01*X242830Y271520D02* X242717Y271520D01*X242638Y271441D02*X242717Y271520D01*X243300Y271100D02* X243250Y271100D01*X242830Y271520D02*X243250Y271100D01*X220260Y272531D02* X220119Y272531D01*X219759Y272891D02*X220119Y272531D01*X296860Y271150D02* X297130Y271150D01*X295350Y271060D02*X296770Y271060D01*X296860Y271150D02* X296770Y271060D01*X303680Y271560D02*X311135Y271560D01*X311725Y272150D02* X311135Y271560D01*X300813Y271130D02*X303250Y271130D01*X303680Y271560D02* X303250Y271130D01*X304252Y272563D02*X307433Y272563D01*X307880Y273010D02* X307433Y272563D01*X300620Y271360D02*X303049Y271360D01*X304252Y272563D02* X303049Y271360D01*X310935Y272060D02*X309350Y272060D01*X307235Y272060D02* X305650Y272060D01*X307764Y271060D02*X309350Y271060D01*X305650Y271060D02* X304065Y271060D01*X302140Y270840D02*X303030Y270840D01*X303810Y270060D02* X303030Y270840D01*X193500Y270800D02*X193600Y270800D01*X194170Y270230D02* X193600Y270800D01*X201290Y271964D02*X201374Y271964D01*X200600Y272100D02* X201154Y272100D01*X201290Y271964D02*X201154Y272100D01*X240509Y271441D02* X240451Y271441D01*X241509Y271441D02*X241451Y271441D01*X152000Y274150D02* X153321Y274150D01*X155070Y274310D02*X154900Y274310D01*X155700Y274150D02* X155230Y274150D01*X155070Y274310D02*X155230Y274150D01*X163241Y273421D02* X163222Y273421D01*X220896Y273929D02*X220289Y273929D01*X296625Y273560D02* X294160Y273560D01*X293500Y272900D02*X294160Y273560D01*X297190Y273935D02* X297000Y273935D01*X296625Y273560D02*X297000Y273935D01*X287723Y274060D02* X288900Y274060D01*X286974Y273060D02*X288900Y273060D01*X162300Y274250D02* X160875Y274250D01*X170100Y274250D02*X169162Y274250D01*X219283Y273434D02* X220189Y273434D01*X220539Y273084D02*X220189Y273434D01*X218233Y273352D02* X219200Y273352D01*X219283Y273434D02*X219200Y273352D01*X190636Y273245D02* X189922Y273245D01*X297100Y273060D02*X295350Y273060D01*X291650Y274060D02* X289900Y274060D01*X291650Y273060D02*X289900Y273060D01*X138000Y274100D02* X136491Y274100D01*X266600Y273300D02*X265175Y273300D01*X200070Y273620D02* X201325Y273620D01*X221163Y272783D02*X221342Y272783D01*X295350Y274060D02* X294030Y274060D01*X293225Y274865D02*X294030Y274060D01*X308030Y274060D02* X309350Y274060D01*X306970Y274060D02*X305650Y274060D01*X310935Y273060D02* X309350Y273060D01*X304190Y273060D02*X305650Y273060D01*X303690Y272815D02* X303945Y272815D01*X304190Y273060D02*X303945Y272815D01*X226500Y274200D02* X225700Y274200D01*X226435Y273325D02*X226495Y273325D01*X226500Y273330D02* X226495Y273325D01*X227000Y272750D02*X226900Y272750D01*X226380Y273270D02* X226900Y272750D01*X196184Y273575D02*X195855Y273575D01*X195700Y273730D02* X195855Y273575D01*X224980Y273270D02*X222189Y273270D01*X221775Y273685D02* X222189Y273270D01*X225600Y272750D02*X225500Y272750D01*X224980Y273270D02* X225500Y272750D01*X165202Y273421D02*X165241Y273421D01*X165500Y273680D02* X165241Y273421D01*X170100Y275650D02*X169162Y275650D01*X166700Y275830D02* X167790Y275830D01*X298642Y276060D02*X298100Y276060D01*X298765Y275060D02* X298100Y275060D01*X287964Y276060D02*X288900Y276060D01*X260356Y276035D02* X262600Y276035D01*X253336Y275896D02*X260217Y275896D01*X260356Y276035D02* X260217Y275896D01*X247373Y276391D02*X252841Y276391D01*X253336Y275896D02* X252841Y276391D01*X186024Y275255D02*X182315Y275255D01*X181430Y276140D02* X182315Y275255D01*X188171Y276420D02*X187189Y276420D01*X186024Y275255D02* X187189Y276420D01*X191570Y275830D02*X188761Y275830D01*X188171Y276420D02* X188761Y275830D01*X297100Y276060D02*X295350Y276060D01*X297100Y275060D02* X295350Y275060D01*X291650Y276060D02*X289900Y276060D01*X222115Y276700D02* X220800Y276700D01*X310570Y276060D02*X309350Y276060D01*X306408Y275968D02* X305650Y275968D01*X307090Y276480D02*X306920Y276480D01*X306408Y275968D02* X306920Y276480D01*X162300Y275650D02*X161375Y275650D01*X165875Y274825D02* X167625Y274825D01*X165500Y275150D02*X165550Y275150D01*X165875Y274825D02* X165550Y275150D01*X152000Y275150D02*X152775Y275150D01*X155700Y275150D02* X154925Y275150D01*X150900Y275150D02*X150125Y275150D01*X164500Y275150D02* X163500Y275150D01*X165500Y275150D02*X164500Y275150D01*X305650Y275060D02* X309350Y275060D01*X311216Y275060D02*X311725Y275060D01*X310732Y274999D02* X311155Y274999D01*X311216Y275060D02*X311155Y274999D01*X309350Y275060D02* X310670Y275060D01*X310732Y274999D02*X310670Y275060D01*X196245Y275725D02* X195892Y275725D01*X227203Y276068D02*X228129Y276068D01*X228479Y276418D02* X228129Y276068D01*X291650Y275060D02*X287723Y275060D01*X176555Y277260D02* X178890Y277260D01*X168780Y276886D02*X176182Y276886D01*X176555Y277260D02* X176182Y276886D01*X309350Y278060D02*X311511Y278060D01*X304426Y278060D02* X305650Y278060D01*X309350Y277060D02*X311015Y277060D01*X311511Y276564D02* X311015Y277060D01*X304330Y277060D02*X305650Y277060D01*X303589Y276960D02* X304267Y276960D01*X304299Y276992D02*X304267Y276960D01*X226455Y277860D02* X228959Y277860D01*X229484Y277336D02*X228959Y277860D01*X224600Y277586D02* X226181Y277586D01*X226455Y277860D02*X226181Y277586D01*X227453Y277195D02* X227025Y277195D01*X224900Y275070D02*X227025Y277195D01*X228216Y276870D02* X227778Y276870D01*X227453Y277195D02*X227778Y276870D01*X228989Y277131D02* X228476Y277131D01*X228216Y276870D02*X228476Y277131D01*X170951Y278650D02* X170250Y278650D01*X171112Y278680D02*X170981Y278680D01*X170951Y278650D02* X170981Y278680D01*X302231Y278060D02*X298100Y278060D01*X287459Y277060D02* X288900Y277060D01*X168850Y278650D02*X167893Y278650D01*X166192Y280351D02* X167893Y278650D01*X185240Y277260D02*X183970Y277260D01*X181430Y277260D02* X180160Y277260D01*X297100Y278060D02*X295350Y278060D01*X291650Y277060D02* X289900Y277060D01*X226740Y278740D02*X224155Y278740D01*X222115Y276700D02* X224155Y278740D01*X226740Y278740D02*X228405Y278740D01*X230193Y276952D02* X228405Y278740D01*X189368Y278087D02*X187561Y278087D01*X190800Y277100D02* X189930Y277100D01*X189925Y277105D02*X189930Y277100D01*X313289Y278500D02* X314222Y278500D01*X291650Y278060D02*X293225Y278060D01*X235200Y278300D02* X236025Y278300D01*X295350Y277060D02*X296925Y277060D01*X247900Y277950D02* X246775Y277950D01*X233800Y278300D02*X232200Y278300D01*X189865Y278700D02* X190800Y278700D01*X220800Y278300D02*X220360Y278300D01*X219653Y277593D02* X220360Y278300D01*X202200Y278700D02*X200700Y278700D01*X190800Y278700D02* X191932Y278700D01*X232200Y278300D02*X231075Y278300D01*X299730Y279735D02* X298725Y279735D01*X298100Y279110D02*X298725Y279735D01*X287377Y279590D02* X288480Y279590D01*X288900Y280010D02*X288480Y279590D01*X262626Y279917D02* X287049Y279917D01*X287377Y279590D02*X287049Y279917D01*X257273Y279361D02* X262070Y279361D01*X262626Y279917D02*X262070Y279361D01*X288312Y279060D02* X288900Y279060D01*X287620Y278982D02*X288234Y278982D01*X288312Y279060D02* X288234Y278982D01*X193908Y280351D02*X195892Y280351D01*X220800Y280700D02* X219653Y280700D01*X192427Y279500D02*X190800Y279500D01*X192678Y279751D02* X196933Y279751D01*X198159Y280976D02*X196933Y279751D01*X219081Y279400D02* X205500Y279400D01*X205200Y279700D02*X205500Y279400D01*X220800Y279100D02* X219381Y279100D01*X219081Y279400D02*X219381Y279100D01*X297100Y279060D02* X295350Y279060D01*X291650Y280060D02*X289900Y280060D01*X291650Y279060D02* X289900Y279060D01*X201153Y280400D02*X201075Y280400D01*X202200Y280300D02* X201253Y280300D01*X201153Y280400D02*X201253Y280300D01*X190800Y280300D02* X189930Y280300D01*X189675Y280555D02*X189930Y280300D01*X188000Y279100D02* X187175Y279100D01*X174800Y280500D02*X173075Y280500D01*X219696Y279710D02* X219653Y279710D01*X220800Y279900D02*X219886Y279900D01*X219696Y279710D02* X219886Y279900D01*X232200Y279900D02*X231075Y279900D01*X295350Y280060D02* X296925Y280060D01*X238050Y279900D02*X236625Y279900D01*X307235Y280060D02* X305650Y280060D01*X310935Y280060D02*X309350Y280060D01*X306970Y278897D02* X305650Y278897D01*X310680Y279060D02*X309350Y279060D01*X311456Y279507D02* X311127Y279507D01*X310680Y279060D02*X311127Y279507D01*X189400Y279100D02* X189465Y279100D01*X189865Y278700D02*X189465Y279100D01*X221742Y282300D02* X220800Y282300D01*X225183Y282345D02*X221787Y282345D01*X221742Y282300D02* X221787Y282345D01*X189675Y282700D02*X190800Y282700D01*X203070Y282700D02* X202200Y282700D01*X231075Y282300D02*X232200Y282300D01*X299008Y281152D02* X298958Y281152D01*X298100Y282010D02*X298958Y281152D01*X288190Y282060D02* X288900Y282060D01*X187806Y280820D02*X182700Y280820D01*X190800Y281340D02* X188326Y281340D01*X187806Y280820D02*X188326Y281340D01*X182700Y281940D02* X181430Y281940D01*X190800Y281100D02*X193159Y281100D01*X193908Y280351D02* X193159Y281100D01*X204798Y281723D02*X204052Y281723D01*X203444Y282331D02* X204052Y281723D01*X297100Y282060D02*X295350Y282060D01*X297100Y281060D02* X295350Y281060D01*X311506Y281560D02*X304225Y281560D01*X303434Y280769D02* X304225Y281560D01*X291650Y282060D02*X289900Y282060D01*X218200Y282000D02* X219630Y282000D01*X291650Y281060D02*X287825Y281060D01*X287356Y280592D02* X287825Y281060D01*X304065Y282060D02*X305650Y282060D01*X310935Y282060D02* X309350Y282060D01*X307235Y281060D02*X305650Y281060D01*X310935Y281060D02* X309350Y281060D01*X217340Y282400D02*X216700Y282400D01*X218926Y282774D02* X217714Y282774D01*X217340Y282400D02*X217714Y282774D01*X204066Y282536D02* X203939Y282536D01*X205000Y282400D02*X204203Y282400D01*X204066Y282536D02* X204203Y282400D01*X218926Y282774D02*X219125Y282774D01*X212200Y282400D02* X211200Y282400D01*X213200Y282400D02*X212200Y282400D01*X210200Y282400D02* X211200Y282400D01*X210869Y281599D02*X210652Y281599D01*X215478Y281672D02* X215691Y281672D01*X214700Y282400D02*X214750Y282400D01*X215478Y281672D02* X214750Y282400D01*X226537Y283893D02*X230766Y283893D01*X233380Y286507D02* X230766Y283893D01*X287973Y283060D02*X288900Y283060D01*X199230Y283555D02* X200379Y283555D01*X200842Y283091D02*X200379Y283555D01*X297100Y284060D02* X295350Y284060D01*X291650Y283060D02*X289900Y283060D01*X208200Y283400D02* X209015Y283400D01*X205000Y283800D02*X204000Y283800D01*X214700Y283400D02* X215700Y283400D01*X213200Y283400D02*X214700Y283400D01*X209200Y283400D02* X209015Y283400D01*X210150Y283400D02*X210200Y283400D01*X205695Y282930D02* X209680Y282930D01*X210150Y283400D02*X209680Y282930D01*X203969Y283131D02* X205494Y283131D01*X205695Y282930D02*X205494Y283131D01*X212250Y283400D02* X212200Y283400D01*X217120Y282930D02*X212720Y282930D01*X212250Y283400D02* X212720Y282930D01*X212200Y283400D02*X211200Y283400D01*X254500Y283550D02* X252675Y283550D01*X268000Y284450D02*X266175Y284450D01*X296908Y282839D02* X296925Y282839D01*X295350Y283060D02*X296687Y283060D01*X296908Y282839D02* X296687Y283060D01*X307764Y283060D02*X309350Y283060D01*X218200Y283400D02* X218300Y283400D01*X218926Y282774D02*X218300Y283400D01*X290340Y283740D02* X289720Y283740D01*X289270Y284190D02*X289720Y283740D01*X291650Y284060D02* X290660Y284060D01*X290340Y283740D02*X290660Y284060D01*X233380Y286507D02* X237431Y286507D01*X238360Y287436D02*X237431Y286507D01*X297100Y285060D02* X295350Y285060D01*X291650Y285060D02*X289900Y285060D01*X211450Y286450D02* X210280Y286450D01*X210256Y286426D02*X210280Y286450D01*X206782Y286291D02* X205791Y286291D01*X203505Y284005D02*X205791Y286291D01*X218868Y284806D02* X217468Y284806D01*X217178Y284516D02*X217468Y284806D01*X295350Y286060D02* X296925Y286060D01*X305650Y286060D02*X307225Y286060D01*X309350Y286060D02* X310925Y286060D01*X290240Y286220D02*X291650Y286220D01*X289830Y286630D02* X289830Y286630D01*X290240Y286220D02*X289830Y286630D01*X217550Y285388D02* X218975Y285388D01*X193133Y287339D02*X193811Y287339D01*X191932Y287281D02* X193076Y287281D01*X193133Y287339D02*X193076Y287281D01*X252297Y287281D02* X254303Y287281D01*X238360Y287436D02*X252143Y287436D01*X252297Y287281D02* X252143Y287436D01*X304065Y287060D02*X305650Y287060D01*X228700Y288600D02* X228800Y288600D01*X229370Y289170D02*X228800Y288600D01*X230100Y288600D02* X232943Y288600D01*X291650Y287060D02*X290850Y287060D01*X227300Y288600D02* X226375Y288600D01*X293765Y287060D02*X295350Y287060D01*X198400Y287450D02* X197000Y287450D01*X199800Y287450D02*X203360Y287450D01*X199237Y288187D02* X202041Y288187D01*X198400Y287450D02*X198500Y287450D01*X199237Y288187D02* X198500Y287450D01*X225457Y287333D02*X223923Y287333D01*X227300Y287200D02* X225591Y287200D01*X225457Y287333D02*X225591Y287200D01*X230100Y287200D02* X231025Y287200D01*X227948Y287852D02*X225778Y287852D01*X225346Y288285D02* X225778Y287852D01*X228700Y287200D02*X228600Y287200D01*X227948Y287852D02* X228600Y287200D01*X199800Y288850D02*X200725Y288850D01*X197000Y288850D02* X195550Y288850D01*X198400Y288850D02*X197000Y288850D01*X229370Y289170D02* X231025Y289170D01*X151300Y256700D02*X150968Y257032D01*X226435Y273325D02* X226380Y273270D01*X288398Y217368D02*X288606Y217160D01*X215650Y220895D02* X216300Y220245D01*X311411Y221560D02*X310911Y222060D01*X311830Y226080D02* X311090Y225341D01*X239626Y230529D02*X245346Y224810D01*X256374Y236015D02* X256421Y236062D01*X169450Y238200D02*X169800Y237850D01*X166900Y236750D02* X167350Y237200D01*X204700Y236300D02*X204205Y236795D01*X223203Y236865D02* X222800Y237268D01*X262224Y238770D02*X263151Y237843D01*X261234Y240751D02* X262183Y241700D01*X144666Y245484D02*X144316Y245134D01*X161749Y245505D02* X162770Y246526D01*X165339Y245586D02*X165795Y246041D01*X222129Y244837D02* X222554Y245263D01*X154300Y248700D02*X154782Y248218D01*X152300Y249700D02* X151800Y249200D01*X158300Y248700D02*X158771Y248229D01*X162300Y248700D02* X161830Y249170D01*X163300Y248700D02*X163805Y248195D01*X229510Y248210D02* X230200Y248900D01*X258200Y250300D02*X258700Y250800D01*X259200Y249300D02* X259700Y248800D01*X301824Y248181D02*X302476Y247530D01*X153300Y251700D02* X152800Y252200D01*X153300Y252700D02*X153800Y253200D01*X159059Y251901D02* X158794Y251636D01*X164327Y253097D02*X165112Y252312D01*X164836Y251587D02* X165220Y251203D01*X166300Y250700D02*X165331Y251669D01*X169300Y250700D02* X169800Y251200D01*X169300Y252700D02*X169770Y253170D01*X254200Y252300D02* X254695Y252795D01*X254200Y251300D02*X254700Y250800D01*X153300Y253700D02* X152830Y254170D01*X153300Y254700D02*X153795Y255195D01*X153300Y255700D02* X152830Y255230D01*X168300Y255700D02*X167830Y256170D01*X169300Y255700D02* X169770Y255230D01*X261234Y253480D02*X261901Y254148D01*X305650Y256060D02* X306280Y255430D01*X153300Y256700D02*X152800Y257200D01*X153300Y257700D02* X153795Y257205D01*X153300Y258700D02*X153795Y258205D01*X159367Y258928D02* X159006Y259289D01*X157047Y258034D02*X156697Y258384D01*X157444Y258761D02* X155756Y260450D01*X168300Y256700D02*X167830Y257170D01*X169300Y256700D02* X169805Y257205D01*X183022Y257581D02*X183517Y257086D01*X228500Y258500D02* X229030Y259030D01*X233100Y258300D02*X232780Y258620D01*X253200Y256300D02* X254193Y255307D01*X272124Y258571D02*X273609Y260056D01*X266184Y258571D02* X266679Y258076D01*X153300Y259700D02*X152829Y259229D01*X153300Y260700D02* X152800Y261200D01*X157546Y259530D02*X157196Y259880D01*X168300Y261700D02* X167300Y260700D01*X212965Y260563D02*X214520Y262117D01*X240200Y259300D02* X239700Y259800D01*X273114Y260551D02*X272764Y260901D01*X283014Y261541D02* X284105Y260450D01*X286150Y260060D02*X285310Y260900D01*X148371Y262531D02* X148866Y263026D01*X154300Y263700D02*X153800Y264200D01*X169300Y262700D02* X168800Y262200D01*X164300Y263700D02*X164550Y263450D01*X168300Y263700D02* X168800Y263200D01*X243200Y262300D02*X243700Y261800D01*X251200Y264300D02* X251699Y264799D01*X303369Y262507D02*X303922Y263060D01*X301745Y261838D02* X303523Y260060D01*X300247Y262098D02*X299169Y261021D01*X151300Y264700D02* X150897Y265103D01*X154300Y264700D02*X153300Y265700D01*X155300Y264700D02* X155800Y264200D01*X153300Y265700D02*X152800Y266200D01*X154300Y265700D02* X153800Y266200D01*X160863Y267309D02*X160778Y267223D01*X161300Y264700D02* X160830Y264230D01*X158300Y265700D02*X157800Y266200D01*X161300Y265700D02* X161800Y266200D01*X162300Y265700D02*X162830Y266230D01*X164300Y264700D02* X163820Y264220D01*X164300Y265700D02*X163830Y266170D01*X166300Y265700D02* X166770Y266170D01*X224690Y266165D02*X225048Y266523D01*X241200Y267300D02* X240700Y266800D01*X238200Y265300D02*X238695Y265795D01*X242200Y266300D02* X242700Y266800D01*X286790Y266500D02*X287340Y267050D01*X299470Y266470D02* X299060Y266060D01*X150850Y268310D02*X151800Y267360D01*X162945Y268528D02* X162595Y268178D01*X166192Y269461D02*X165842Y269111D01*X165138Y269215D02* X165612Y268741D01*X215700Y269900D02*X216200Y270400D01*X298910Y269820D02* X298670Y270060D01*X194900Y272200D02*X194580Y272520D01*X283190Y270630D02* X282790Y271030D01*X301837Y271988D02*X298765Y275060D01*X297540Y274285D02* X297190Y273935D01*X310937Y275494D02*X310690Y275740D01*X204700Y279900D02* X204200Y280400D01*X287712Y281582D02*X288190Y282060D01*X299358Y280802D02* X299008Y281152D01*X302803Y280316D02*X302453Y279966D01*X311725Y281341D02* X311506Y281560D01*X287605Y282692D02*X287973Y283060D01*X298483Y286291D02* X298100Y285909D01*X220000Y244650D02*X219580Y244230D01*X220000Y244650D02* X220470Y244180D01*X255045Y238885D02*X255427Y238502D01*X175980Y261928D02* X176652Y262600D01*X196294Y273466D02*X196184Y273575D01*X158680Y261400D02* X158870Y261210D01*X226600Y268700D02*X227361Y269461D01*X162830Y263505D02* X162860Y263475D01*X166940Y264170D02*X166790Y264020D01*X168030Y246975D02* X168300Y247245D01*X155050Y251450D02*X154800Y251700D01*X155050Y251450D02* X155025Y251425D01*X219653Y283321D02*X219158Y283816D01*X171835Y249230D02* X170895Y250170D01*X174940Y234910D02*X174150Y235700D01*X221901Y240881D02* X221551Y240531D01*X227273Y252450D02*X227323Y252500D01*X179425Y261600D02* X179825Y262000D01*X226600Y268700D02*X226030Y269270D01*X163738Y252077D02* X163300Y251639D01*X226676Y257760D02*X226936Y257500D01*X192427Y279500D02* X192678Y279751D01*D02*G54D72*X143800Y251700D02*X143800Y250750D01* X144410Y250140D02*X143800Y250750D01*X143800Y249200D02*X143800Y249150D01* X147826Y256079D02*X147826Y255778D01*X147419Y255370D02*X147826Y255778D01* X150351Y273651D02*X150351Y273421D01*X149505Y267773D02*X149505Y268600D01* X149457Y246543D02*X149457Y245857D01*X149290Y265360D02*X149290Y265790D01* X152815Y250215D02*X152815Y249185D01*X153300Y248700D02*X152815Y249185D01* X152853Y246528D02*X152853Y245860D01*X152800Y248200D02*X152800Y246581D01* X152853Y246528D02*X152800Y246581D01*X151800Y265715D02*X151800Y265886D01* X151486Y266200D02*X151800Y265886D01*X153800Y263685D02*X153800Y263514D01* X154099Y263215D02*X153800Y263514D01*X155300Y263700D02*X155300Y263206D01* X155785Y262721D02*X155300Y263206D01*X155300Y267309D02*X155300Y266700D01* X155301Y267435D02*X155301Y267311D01*X155300Y267309D02*X155301Y267311D01* X154791Y268171D02*X154791Y265523D01*X155114Y265200D02*X154791Y265523D01* X154900Y268804D02*X154900Y268279D01*X154791Y268171D02*X154900Y268279D01* X154815Y249499D02*X154815Y249901D01*X155114Y250200D02*X154815Y249901D01* X153815Y249499D02*X153815Y251901D01*X154114Y252200D02*X153815Y251901D01* X154800Y248715D02*X154800Y248886D01*X154486Y249200D02*X154800Y248886D01* X155800Y265514D02*X155800Y265685D01*X155785Y265700D02*X155800Y265685D01* X156785Y267044D02*X156785Y265499D01*X156501Y265215D02*X156785Y265499D01* X156678Y268365D02*X156678Y267151D01*X156785Y267044D02*X156678Y267151D01* X157197Y269410D02*X157197Y268884D01*X156678Y268365D02*X157197Y268884D01* X155785Y262721D02*X155785Y262436D01*X156926Y247225D02*X156926Y246271D01* X156800Y248200D02*X156800Y247350D01*X156926Y247225D02*X156800Y247350D01* X155800Y264886D02*X155800Y264715D01*X155815Y264700D02*X155800Y264715D01* X155813Y268118D02*X155813Y266187D01*X156300Y265700D02*X155813Y266187D01* X155806Y269486D02*X155806Y268125D01*X155813Y268118D02*X155806Y268125D01* X155800Y248886D02*X155800Y246479D01*X159869Y242410D02*X155800Y246479D01* X157300Y247700D02*X157300Y246916D01*X157569Y246648D02*X157300Y246916D01* X157260Y253994D02*X157260Y255386D01*X158022Y256149D02*X157260Y255386D01* X157161Y252432D02*X157161Y253895D01*X157260Y253994D02*X157161Y253895D01* X156300Y250700D02*X156300Y251572D01*X157161Y252432D02*X156300Y251572D01* X155790Y250504D02*X155790Y251299D01*X155800Y249685D02*X155800Y249514D01* X155501Y249215D02*X155800Y249514D01*X156310Y247080D02*X156310Y246955D01* X156300Y247700D02*X156300Y247090D01*X156310Y247080D02*X156300Y247090D01* X156800Y251103D02*X156800Y250514D01*X156486Y250200D02*X156800Y250514D01* X156300Y263193D02*X156300Y263700D01*X156796Y262462D02*X156796Y262697D01* X156300Y263193D02*X156796Y262697D01*X157421Y252357D02*X157421Y253787D01* X157520Y253886D02*X157421Y253787D01*X157300Y250700D02*X157300Y250882D01* X157880Y251462D02*X157300Y250882D01*X158815Y268025D02*X158815Y266185D01* X159300Y265700D02*X158815Y266185D01*X158940Y269252D02*X158940Y268151D01* X158815Y268025D02*X158940Y268151D01*X158824Y252386D02*X158824Y253041D01* X158549Y250949D02*X158549Y252112D01*X158824Y252386D02*X158549Y252112D01* X158397Y267765D02*X158397Y268758D01*X158300Y266700D02*X158300Y267668D01* X158397Y267765D02*X158300Y267668D01*X157815Y246769D02*X157815Y248901D01* X158114Y249200D02*X157815Y248901D01*X158403Y245520D02*X158403Y246181D01* X157815Y246769D02*X158403Y246181D01*X158790Y263490D02*X158790Y264940D01* X158530Y265200D02*X158790Y264940D01*X159270Y261980D02*X159270Y263010D01* X158790Y263490D02*X159270Y263010D01*X159220Y261770D02*X159220Y261930D01* X159270Y261980D02*X159220Y261930D01*X158300Y263164D02*X158300Y263700D01* X159300Y251420D02*X159300Y250700D01*X159569Y253020D02*X159569Y251690D01* X159300Y251420D02*X159569Y251690D01*X159277Y254085D02*X159277Y253312D01* X159569Y253020D02*X159277Y253312D01*X159332Y255050D02*X159332Y254140D01* X159277Y254085D02*X159332Y254140D01*X158300Y247215D02*X158300Y247700D01* X158261Y246753D02*X158261Y247176D01*X158300Y247215D02*X158261Y247176D01* X158140Y251354D02*X158140Y252070D01*X158291Y252222D02*X158140Y252070D01* X157800Y250200D02*X157800Y251014D01*X158140Y251354D02*X157800Y251014D01* X157569Y246648D02*X157569Y245432D01*X159484Y267725D02*X159484Y268591D01* X159300Y266700D02*X159300Y267541D01*X159484Y267725D02*X159300Y267541D01* X157520Y253886D02*X157520Y254137D01*X158082Y254699D02*X157520Y254137D01* X157880Y251462D02*X157880Y251898D01*X157421Y252357D02*X157880Y251898D01* X160300Y267865D02*X160300Y266700D01*X159585Y262471D02*X159585Y263440D01* X159325Y263700D02*X159585Y263440D01*X159800Y265200D02*X159800Y268116D01* X160578Y268894D02*X159800Y268116D01*X160300Y251186D02*X160300Y250700D01* X160164Y252225D02*X160164Y251322D01*X160300Y251186D02*X160164Y251322D01* X160547Y253607D02*X160547Y252608D01*X160164Y252225D02*X160547Y252608D01* X160785Y250907D02*X160785Y249185D01*X160300Y248700D02*X160785Y249185D01* X160674Y251535D02*X160674Y251018D01*X160785Y250907D02*X160674Y251018D01* X160300Y246746D02*X160300Y247700D01*X160066Y245537D02*X160066Y246513D01* X160300Y246746D02*X160066Y246513D01*X159800Y251553D02*X159800Y250200D01* X159300Y249700D02*X159800Y250200D01*X159829Y252290D02*X159829Y251582D01* X159800Y251553D02*X159829Y251582D01*X160147Y253165D02*X160147Y252608D01* X159829Y252290D02*X160147Y252608D01*X160785Y246863D02*X160785Y247901D01* X160486Y248200D02*X160785Y247901D01*X160326Y245999D02*X160326Y246405D01* X160785Y246863D02*X160326Y246405D01*X159790Y247075D02*X159790Y247210D01* X159300Y247700D02*X159790Y247210D01*X161284Y246441D02*X161284Y247684D01* X161300Y247700D02*X161284Y247684D01*X161805Y247118D02*X161805Y248195D01* X161300Y248700D02*X161805Y248195D01*X163676Y257959D02*X163676Y258040D01* X163970Y258335D02*X163676Y258040D01*X165790Y264450D02*X165790Y264610D01* X165880Y264700D02*X165790Y264610D01*X164800Y261790D02*X164800Y263990D01* X165010Y264200D02*X164800Y263990D01*X164700Y261149D02*X164700Y261690D01* X164800Y261790D02*X164700Y261690D01*X164120Y259861D02*X164120Y260569D01* X164700Y261149D02*X164120Y260569D01*X165800Y263400D02*X165800Y263910D01* X166090Y264200D02*X165800Y263910D01*X165210Y261450D02*X165210Y262070D01* X165920Y262780D02*X165210Y262070D01*X164716Y259368D02*X164716Y260253D01* X164990Y260527D02*X164716Y260253D01*X163970Y258335D02*X163970Y258622D01* X164716Y259368D02*X163970Y258622D01*X165720Y261170D02*X165720Y261724D01* X166290Y262294D02*X165720Y261724D01*X164456Y259475D02*X164456Y260396D01* X164870Y260810D02*X164456Y260396D01*X165790Y257989D02*X165790Y258093D01* X166386Y258689D02*X165790Y258093D01*X165149Y254744D02*X165149Y254806D01* X164680Y255274D02*X165149Y254806D01*X165806Y251939D02*X165806Y252339D01* X164527Y253619D02*X165806Y252339D01*X164800Y250886D02*X164800Y250200D01* X165300Y249700D02*X164800Y250200D01*X167800Y254514D02*X167800Y254886D01* X167478Y255207D02*X167800Y254886D01*X165920Y262780D02*X165920Y263280D01* X165800Y263400D02*X165920Y263280D01*X167300Y263215D02*X167300Y263700D01* X167785Y262499D02*X167785Y262901D01*X167486Y263200D02*X167785Y262901D01* X165990Y261047D02*X165990Y261627D01*X166398Y262034D02*X165990Y261627D01* X167815Y263901D02*X167815Y263499D01*X168114Y263200D02*X167815Y263499D01* X167800Y257886D02*X167800Y257715D01*X167815Y257700D02*X167800Y257715D01* X167800Y258886D02*X167800Y258514D01*X168114Y258200D02*X167800Y258514D01* X167800Y253715D02*X167800Y253886D01*X167501Y254185D02*X167800Y253886D01* X167800Y251886D02*X167800Y251514D01*X168099Y251215D02*X167800Y251514D01* X167785Y250185D02*X167785Y250901D01*X167486Y251200D02*X167785Y250901D01* X166805Y246487D02*X166805Y245701D01*X166805Y248195D02*X166805Y246487D01* X166805Y246487D02*X166805Y246487D01*X167520Y247210D02*X167520Y246764D01* X168533Y245750D02*X167520Y246764D01*X167785Y247901D02*X167785Y247475D01* X167520Y247210D02*X167785Y247475D01*X167300Y248700D02*X167300Y248215D01* X167315Y248200D02*X167300Y248215D01*X167260Y247660D02*X167260Y246656D01* X168563Y245352D02*X167260Y246656D01*X167800Y265886D02*X167800Y265514D01* X167486Y265200D02*X167800Y265514D01*X167800Y248886D02*X167800Y248514D01* X168114Y248200D02*X167800Y248514D01*X167300Y266185D02*X167300Y265700D01* X167785Y267107D02*X167785Y266499D01*X167486Y266200D02*X167785Y266499D01* X167779Y268615D02*X167779Y267113D01*X167785Y267107D02*X167779Y267113D01* X169800Y267061D02*X169800Y266514D01*X169486Y266200D02*X169800Y266514D01* X169900Y267759D02*X169900Y267161D01*X169800Y267061D02*X169900Y267161D01* X169366Y269096D02*X169366Y268292D01*X169900Y267759D02*X169366Y268292D01* X169300Y259215D02*X169300Y259700D01*X169800Y258514D02*X169800Y258886D01* X169486Y259200D02*X169800Y258886D01*X169800Y248514D02*X169800Y248685D01* X169785Y248700D02*X169800Y248685D01*X169800Y265886D02*X169800Y265514D01* X169486Y265200D02*X169800Y265514D01*X169800Y264886D02*X169800Y264715D01* X169785Y264700D02*X169800Y264715D01*X168300Y263185D02*X168300Y262700D01* X169800Y259514D02*X169800Y259886D01*X169501Y260185D02*X169800Y259886D01* X169300Y247700D02*X169300Y246803D01*X169017Y246520D02*X169300Y246803D01* X168800Y267064D02*X168800Y266514D01*X168486Y266200D02*X168800Y266514D01* X168873Y268302D02*X168873Y267137D01*X168800Y267064D02*X168873Y267137D01* X168801Y270090D02*X168801Y268375D01*X168873Y268302D02*X168801Y268375D01* X169800Y260514D02*X169800Y260685D01*X169785Y260700D02*X169800Y260685D01* X168800Y255886D02*X168800Y255200D01*X168300Y254700D02*X168800Y255200D01* X168507Y246731D02*X168507Y246309D01*X168806Y246010D02*X168507Y246309D01* X168785Y247901D02*X168785Y247009D01*X168507Y246731D02*X168785Y247009D01* X171430Y247089D02*X171430Y247423D01*X170653Y248200D02*X171430Y247423D01* X171302Y270435D02*X171302Y267016D01*X170486Y266200D02*X171302Y267016D01* X171055Y249289D02*X171055Y249430D01*X170785Y249700D02*X171055Y249430D01* X171170Y247315D02*X171170Y246981D01*X172131Y246020D02*X171170Y246981D01* X172132Y269326D02*X172132Y267478D01*X170354Y265700D02*X172132Y267478D01* X173022Y268251D02*X173022Y267737D01*X170486Y265200D02*X173022Y267737D01* X172479Y249661D02*X172479Y249151D01*X172048Y248720D02*X172479Y249151D01* X172989Y250102D02*X172989Y249293D01*X172156Y248460D02*X172989Y249293D01* X174405Y263428D02*X174405Y263309D01*X172232Y261136D02*X174405Y263309D01* X175594Y269403D02*X175594Y263140D01*X172380Y259926D02*X175594Y263140D01* X187492Y241828D02*X187492Y242883D01*X187002Y243373D02*X187492Y242883D01* X187492Y269309D02*X187492Y269786D01*X187063Y270215D02*X187492Y269786D01* X187719Y248406D02*X187719Y248630D01*X188245Y249156D02*X187719Y248630D01* X192412Y265551D02*X192412Y266921D01*X190873Y268460D02*X192412Y266921D01* X194645Y246696D02*X194645Y246274D01*X194231Y245860D02*X194645Y246274D01* X194231Y245850D02*X194231Y245860D01*X194906Y244909D02*X194906Y245176D01* X194231Y245850D02*X194906Y245176D01*X208450Y255800D02*X208450Y255550D01* X211285Y255457D02*X211285Y256225D01*X211779Y253302D02*X211779Y253942D01* X212104Y254268D02*X211779Y253942D01*X211413Y252018D02*X211413Y252936D01* X211779Y253302D02*X211413Y252936D01*X211600Y250700D02*X211600Y251831D01* X211413Y252018D02*X211600Y251831D01*X212863Y258547D02*X212863Y257745D01* X212613Y257495D02*X212863Y257745D01*X213400Y250700D02*X213400Y251200D01* X214350Y252150D02*X213400Y251200D01*X212657Y254320D02*X212657Y255224D01* X212410Y255472D02*X212657Y255224D01*X214460Y252960D02*X214460Y254320D01* X214350Y252150D02*X214350Y252850D01*X214460Y252960D02*X214350Y252850D01* X214460Y254320D02*X214460Y255700D01*X215550Y256790D02*X214460Y255700D01* X215730Y253230D02*X215730Y254320D01*X216200Y252250D02*X216200Y252760D01* X215730Y253230D02*X216200Y252760D01*X216080Y251670D02*X216080Y252130D01* X216200Y252250D02*X216080Y252130D01*X215730Y254320D02*X215730Y255560D01* X216110Y255940D02*X215730Y255560D01*X218270Y253520D02*X218270Y254320D01* X217670Y256250D02*X217670Y257270D01*X218270Y254320D02*X218270Y255650D01* X217670Y256250D02*X218270Y255650D01*X219210Y251960D02*X219210Y252580D01* X218270Y253520D02*X219210Y252580D01*X220600Y251550D02*X220600Y252435D01* X219540Y253495D02*X219540Y254320D01*X219900Y243500D02*X219900Y243400D01* X219369Y242869D02*X219900Y243400D01*X221633Y252510D02*X221633Y252067D01* X222150Y251550D02*X221633Y252067D01*X220810Y252992D02*X220810Y254320D01* X221633Y252510D02*X221633Y252631D01*X221272Y252991D02*X221633Y252631D01* X224082Y261747D02*X224082Y262931D01*X223802Y263210D02*X224082Y262931D01* X229353Y261443D02*X229353Y261488D01*X228531Y262310D02*X229353Y261488D01* X230700Y257450D02*X230700Y260096D01*X229353Y261443D02*X230700Y260096D01* X230499Y248280D02*X230499Y247850D01*X231013Y247336D02*X230499Y247850D01* X230700Y254350D02*X230700Y248481D01*X230499Y248280D02*X230700Y248481D01* X230200Y258900D02*X230200Y259875D01*X229479Y260595D02*X230200Y259875D01* X231200Y256900D02*X231200Y256950D01*X230700Y257450D02*X231200Y256950D01* X231759Y258509D02*X231759Y259050D01*X231200Y257900D02*X231200Y257950D01* X231759Y258509D02*X231200Y257950D01*X231692Y256442D02*X231692Y256903D01* X231937Y257149D02*X231692Y256903D01*X231200Y255900D02*X231200Y255950D01* X231692Y256442D02*X231200Y255950D01*X231984Y254734D02*X231984Y254819D01* X231200Y253900D02*X231200Y253950D01*X231984Y254734D02*X231200Y253950D01* X231355Y245080D02*X231355Y243543D01*X229553Y241741D02*X231355Y243543D01* X231736Y246823D02*X231736Y245461D01*X231355Y245080D02*X231736Y245461D01* X231200Y254900D02*X231200Y254850D01*X230700Y254350D02*X231200Y254850D01* X231286Y259661D02*X231286Y260120D01*X231200Y258900D02*X231200Y259574D01* X231286Y259661D02*X231200Y259574D01*X234100Y258300D02*X234100Y258350D01* X234689Y258939D02*X234100Y258350D01*X234100Y257300D02*X234100Y257350D01* X235050Y258300D02*X234100Y257350D01*X234100Y255300D02*X234100Y255350D01* X234584Y255834D02*X234100Y255350D01*X237300Y269700D02*X237300Y269215D01* X237550Y268965D02*X237300Y269215D01*X236483Y268998D02*X236483Y268965D01* X236300Y269700D02*X236300Y269182D01*X236483Y268998D02*X236300Y269182D01* X239300Y269700D02*X239300Y269215D01*X239550Y268965D02*X239300Y269215D01* X238300Y269700D02*X238300Y269215D01*X238550Y268965D02*X238300Y269215D01* X238700Y241200D02*X238700Y242740D01*X239720Y243760D02*X238700Y242740D01* X239200Y244240D02*X239200Y245300D01*X237700Y241200D02*X237700Y242740D01* X239200Y244240D02*X237700Y242740D01*X240300Y269700D02*X240300Y269215D01* X240550Y268965D02*X240300Y269215D01*X240130Y243450D02*X240130Y246290D01* X241510Y247670D02*X240130Y246290D01*X240610Y243920D02*X240610Y245960D01* X241570Y246920D02*X240610Y245960D01*X239720Y243760D02*X239720Y246820D01* X240200Y247300D02*X239720Y246820D01*X239700Y241200D02*X239700Y241935D01* X240700Y241200D02*X240700Y241935D01*X241500Y238000D02*X241500Y238485D01* X241785Y238770D02*X241500Y238485D01*X242193Y269037D02*X242193Y268965D01* X242300Y269700D02*X242300Y269143D01*X242193Y269037D02*X242300Y269143D01* X241700Y241200D02*X241700Y241880D01*X240130Y243450D02*X241700Y241880D01* X242700Y241200D02*X242700Y241830D01*X240610Y243920D02*X242700Y241830D01* X244500Y238000D02*X244500Y238485D01*X244524Y238509D02*X244500Y238485D01* X245763Y238759D02*X245763Y238770D01*X245500Y238000D02*X245500Y238496D01* X245763Y238759D02*X245500Y238496D01*X247235Y240823D02*X247235Y243265D01* X246200Y244300D02*X247235Y243265D01*X246500Y238000D02*X246500Y238485D01* X247047Y239032D02*X246500Y238485D01*X248018Y238468D02*X248018Y239387D01* X248446Y239815D02*X248018Y239387D01*X248532Y238527D02*X248532Y239046D01* X248500Y238000D02*X248500Y238495D01*X248532Y238527D02*X248500Y238495D01* X249292Y238836D02*X249292Y238978D01*X249500Y238000D02*X249500Y238628D01* X249292Y238836D02*X249500Y238628D01*X145208Y233820D02*X145401Y233820D01* X143600Y234050D02*X144978Y234050D01*X145208Y233820D02*X144978Y234050D01* X242500Y238000D02*X242550Y238000D01*X243320Y238770D02*X242550Y238000D01* X244524Y238509D02*X244532Y238509D01*X244892Y238869D02*X244532Y238509D01* X247500Y238000D02*X247550Y238000D01*X248018Y238468D02*X247550Y238000D01* X240500Y238000D02*X239715Y238000D01*X243320Y238770D02*X243413Y238770D01* X247047Y239032D02*X247144Y239032D01*X247505Y239392D02*X247144Y239032D01* X241785Y238770D02*X241803Y238770D01*X183667Y242040D02*X186982Y242040D01* X176626Y240788D02*X182415Y240788D01*X183667Y242040D02*X182415Y240788D01* X172811Y242126D02*X175288Y242126D01*X176626Y240788D02*X175288Y242126D01* X159869Y242410D02*X172526Y242410D01*X172811Y242126D02*X172526Y242410D01* X186646Y241405D02*X187068Y241405D01*X187492Y241828D02*X187068Y241405D01* X246235Y240715D02*X247127Y240715D01*X247235Y240823D02*X247127Y240715D01* X245700Y241200D02*X245750Y241200D01*X246235Y240715D02*X245750Y241200D01* X234527Y240712D02*X234427Y240712D01*X234067Y240352D02*X234427Y240712D01* X235155Y240705D02*X234534Y240705D01*X234527Y240712D02*X234534Y240705D01* X235700Y241200D02*X235650Y241200D01*X235155Y240705D02*X235650Y241200D01* X162382Y244235D02*X161369Y244235D01*X160066Y245537D02*X161369Y244235D01* X163272Y244303D02*X162451Y244303D01*X162382Y244235D02*X162451Y244303D01* X187002Y243373D02*X186227Y243373D01*X183989Y245611D02*X186227Y243373D01* X189038Y243661D02*X190863Y243661D01*X191224Y243300D02*X190863Y243661D01* X187357Y244431D02*X188267Y244431D01*X189038Y243661D02*X188267Y244431D01* X196234Y244349D02*X195465Y244349D01*X194906Y244909D02*X195465Y244349D01* X198505Y244440D02*X196324Y244440D01*X196234Y244349D02*X196324Y244440D01* X222074Y243456D02*X222220Y243456D01*X221300Y243500D02*X222031Y243500D01* X222074Y243456D02*X222031Y243500D01*X219126Y242882D02*X218896Y242882D01* X219369Y242869D02*X219139Y242869D01*X219126Y242882D02*X219139Y242869D01* X143800Y246600D02*X144543Y246600D01*X144633Y246691D02*X144543Y246600D01* X159255Y246315D02*X158699Y246315D01*X158261Y246753D02*X158699Y246315D01* X172460Y246530D02*X171989Y246530D01*X171430Y247089D02*X171989Y246530D01* X179283Y246370D02*X185418Y246370D01*X187357Y244431D02*X185418Y246370D01* X171452Y245500D02*X173461Y245500D01*X175162Y247201D02*X173461Y245500D01* X170667Y245862D02*X171090Y245862D01*X171452Y245500D02*X171090Y245862D01* X168533Y245750D02*X170555Y245750D01*X170667Y245862D02*X170555Y245750D01* X168563Y245352D02*X170879Y245352D01*X172131Y246020D02*X172672Y246020D01* X174372Y247721D02*X172672Y246020D01*X191415Y245860D02*X194231Y245860D01* X188382Y246485D02*X194135Y246485D01*X179391Y246630D02*X183944Y246630D01* X184309Y246995D02*X183944Y246630D01*X171560Y245760D02*X173354Y245760D01* X175054Y247461D02*X173354Y245760D01*X170560Y246122D02*X171198Y246122D01* X171560Y245760D02*X171198Y246122D01*X168806Y246010D02*X170447Y246010D01* X170560Y246122D02*X170447Y246010D01*X144633Y246691D02*X145401Y246691D01* X160486Y248200D02*X159800Y248200D01*X159300Y248700D02*X159800Y248200D01* X170653Y248200D02*X170114Y248200D01*X169800Y248514D02*X170114Y248200D01* X172156Y248460D02*X171393Y248460D01*X170653Y249200D02*X171393Y248460D01* X175162Y247201D02*X178452Y247201D01*X179283Y246370D02*X178452Y247201D01* X167315Y248200D02*X167486Y248200D01*X167785Y247901D02*X167486Y248200D01* X171285Y248200D02*X172640Y248200D01*X173691Y249251D02*X172640Y248200D01* X184201Y247255D02*X186568Y247255D01*X187719Y248406D02*X186568Y247255D01* X180026Y246890D02*X183836Y246890D01*X184201Y247255D02*X183836Y246890D01* X174372Y247721D02*X179195Y247721D01*X180026Y246890D02*X179195Y247721D01* X170300Y247700D02*X170785Y247700D01*X171170Y247315D02*X170785Y247700D01* X151800Y248200D02*X151114Y248200D01*X149457Y246543D02*X151114Y248200D01* X184309Y246995D02*X187872Y246995D01*X188382Y246485D02*X187872Y246995D01* X175054Y247461D02*X178560Y247461D01*X179391Y246630D02*X178560Y247461D01* X168114Y248200D02*X168486Y248200D01*X168785Y247901D02*X168486Y248200D01* X231013Y247336D02*X231222Y247336D01*X231736Y246823D02*X231222Y247336D01* X241510Y247670D02*X242570Y247670D01*X243200Y248300D02*X242570Y247670D01* X241570Y246920D02*X242580Y246920D01*X243200Y246300D02*X242580Y246920D01* X143800Y249150D02*X145040Y249150D01*X145690Y249800D02*X145040Y249150D01* X158114Y249200D02*X159800Y249200D01*X160300Y249700D02*X159800Y249200D01* X156815Y249185D02*X156099Y249185D01*X155800Y248886D02*X156099Y249185D01* X155114Y250200D02*X155486Y250200D01*X155790Y250504D02*X155486Y250200D01* X155501Y249215D02*X155099Y249215D01*X154815Y249499D02*X155099Y249215D01* X156300Y249700D02*X155815Y249700D01*X155800Y249685D02*X155815Y249700D01* X155447Y249700D02*X155300Y249700D01*X156486Y250200D02*X155947Y250200D01* X155447Y249700D02*X155947Y250200D01*X154486Y249200D02*X154114Y249200D01* X153815Y249499D02*X154114Y249200D01*X155300Y248700D02*X154815Y248700D01* X154800Y248715D02*X154815Y248700D01*X169785Y248700D02*X169300Y248700D01* X171835Y250430D02*X171190Y250430D01*X170920Y250700D02*X171190Y250430D01* X170785Y249700D02*X170300Y249700D01*X172048Y248720D02*X171624Y248720D01* X171055Y249289D02*X171624Y248720D01*X170653Y249200D02*X168800Y249200D01* X168300Y249700D02*X168800Y249200D01*X170300Y248700D02*X170785Y248700D01* X171285Y248200D02*X170785Y248700D01*X189535Y249007D02*X192334Y249007D01* X194645Y246696D02*X192334Y249007D01*X188245Y249156D02*X189386Y249156D01* X189535Y249007D02*X189386Y249156D01*X151300Y248700D02*X151030Y248700D01* X148130Y245800D02*X151030Y248700D01*X150780Y250120D02*X150510Y250120D01* X151790Y250190D02*X150850Y250190D01*X150780Y250120D02*X150850Y250190D01* X166800Y249200D02*X167486Y249200D01*X167800Y248886D02*X167486Y249200D01* X154629Y252308D02*X155175Y252308D01*X154114Y252200D02*X154522Y252200D01* X154629Y252308D02*X154522Y252200D01*X168099Y251215D02*X168815Y251215D01* X169300Y251700D02*X168815Y251215D01*X167108Y252200D02*X167486Y252200D01* X167800Y251886D02*X167486Y252200D01*X166546Y252246D02*X167062Y252246D01* X167108Y252200D02*X167062Y252246D01*X170880Y251700D02*X170300Y251700D01* X171035Y251641D02*X170940Y251641D01*X170880Y251700D02*X170940Y251641D01* X170920Y250700D02*X170300Y250700D01*X166556Y251455D02*X166290Y251455D01* X165806Y251939D02*X166290Y251455D01*X167486Y251200D02*X166811Y251200D01* X166556Y251455D02*X166811Y251200D01*X175394Y250791D02*X173678Y250791D01* X172989Y250102D02*X173678Y250791D01*X181522Y251161D02*X175764Y251161D01* X175394Y250791D02*X175764Y251161D01*X151300Y250700D02*X149900Y250700D01* X163866Y251306D02*X164380Y251306D01*X164800Y250886D02*X164380Y251306D01* X215200Y251550D02*X215960Y251550D01*X216080Y251670D02*X215960Y251550D01* X222150Y251550D02*X222400Y251550D01*X151300Y253700D02*X152300Y253700D01* X150477Y253993D02*X150433Y253993D01*X151300Y253700D02*X150771Y253700D01* X150477Y253993D02*X150771Y253700D01*X143800Y252700D02*X144590Y252700D01* X168815Y254215D02*X168099Y254215D01*X167800Y254514D02*X168099Y254215D01* X166910Y254120D02*X165773Y254120D01*X165149Y254744D02*X165773Y254120D01* X167501Y254185D02*X166975Y254185D01*X166910Y254120D02*X166975Y254185D01* X168300Y253700D02*X167815Y253700D01*X167800Y253715D02*X167815Y253700D01* X170878Y254185D02*X169785Y254185D01*X169300Y253700D02*X169785Y254185D01* X173119Y253760D02*X171303Y253760D01*X170878Y254185D02*X171303Y253760D01* X170878Y253700D02*X170300Y253700D01*X171735Y253248D02*X171330Y253248D01* X170878Y253700D02*X171330Y253248D01*X163471Y253773D02*X162884Y253773D01* X164527Y253619D02*X163626Y253619D01*X163471Y253773D02*X163626Y253619D01* X150644Y254503D02*X149937Y254503D01*X149286Y255155D02*X149937Y254503D01* X151815Y254215D02*X150932Y254215D01*X150644Y254503D02*X150932Y254215D01* X234100Y253300D02*X234921Y253300D01*X236921Y255300D02*X234921Y253300D01* X196296Y253621D02*X188457Y253621D01*X185987Y256091D02*X188457Y253621D01* X213190Y254320D02*X212657Y254320D01*X212104Y254268D02*X212605Y254268D01* X212657Y254320D02*X212605Y254268D01*X221272Y252991D02*X220811Y252991D01* X220810Y252992D02*X220811Y252991D01*X158234Y255639D02*X158744Y255639D01* X159332Y255050D02*X158744Y255639D01*X159331Y255489D02*X159614Y255489D01* X159974Y255129D02*X159614Y255489D01*X158022Y256149D02*X158672Y256149D01* X159331Y255489D02*X158672Y256149D01*X167478Y255207D02*X166128Y255207D01* X165767Y254847D02*X166128Y255207D01*X171157Y254700D02*X170300Y254700D01* X172252Y254797D02*X171254Y254797D01*X171157Y254700D02*X171254Y254797D01* X148893Y255915D02*X148383Y255915D01*X150752Y254763D02*X150045Y254763D01* X148893Y255915D02*X150045Y254763D01*X151300Y254700D02*X150815Y254700D01* X150752Y254763D02*X150815Y254700D01*X149286Y255155D02*X148439Y255155D01* X148786Y256425D02*X148172Y256425D01*X147826Y256079D02*X148172Y256425D01* X150476Y256068D02*X149143Y256068D01*X148786Y256425D02*X149143Y256068D01* X151300Y255700D02*X150843Y255700D01*X150476Y256068D02*X150843Y255700D01* X149875Y256328D02*X149251Y256328D01*X148893Y256685D02*X149251Y256328D01* X150624Y256438D02*X149986Y256438D01*X149875Y256328D02*X149986Y256438D01* X151800Y256200D02*X150862Y256200D01*X150624Y256438D02*X150862Y256200D01* X171744Y256200D02*X169114Y256200D01*X168800Y255886D02*X169114Y256200D01* X174376Y256327D02*X171871Y256327D01*X171744Y256200D02*X171871Y256327D01* X234100Y256300D02*X236220Y256300D01*X238200Y258280D02*X236220Y256300D01* X238980Y256293D02*X241188Y256293D01*X236921Y255300D02*X237987Y255300D01* X238980Y256293D02*X237987Y255300D01*X235840Y255600D02*X237500Y255600D01* X238200Y256300D02*X237500Y255600D01*X234584Y255834D02*X235606Y255834D01* X235840Y255600D02*X235606Y255834D01*X165892Y255788D02*X165308Y255788D01* X166595Y255698D02*X165982Y255698D01*X165892Y255788D02*X165982Y255698D01* X167300Y255700D02*X166596Y255700D01*X166595Y255698D02*X166596Y255700D01* X170988Y255700D02*X170300Y255700D01*X172453Y255817D02*X171105Y255817D01* X170988Y255700D02*X171105Y255817D01*X177067Y255091D02*X173179Y255091D01* X172453Y255817D02*X173179Y255091D01*X180970Y256111D02*X178087Y256111D01* X177067Y255091D02*X178087Y256111D01*X182465Y256024D02*X181057Y256024D01* X180970Y256111D02*X181057Y256024D01*X185987Y256091D02*X182532Y256091D01* X182465Y256024D02*X182532Y256091D01*X209416Y256381D02*X209031Y256381D01* X208450Y255800D02*X209031Y256381D01*X211285Y256225D02*X209572Y256225D01* X209416Y256381D02*X209572Y256225D01*X216110Y255940D02*X216720Y255940D01* X158082Y254699D02*X158822Y254699D01*X172312Y258215D02*X170099Y258215D01* X169800Y258514D02*X170099Y258215D01*X176435Y258420D02*X172517Y258420D01* X172312Y258215D02*X172517Y258420D01*X166386Y258689D02*X166967Y258689D01* X166978Y258700D02*X166967Y258689D01*X165093Y257802D02*X165603Y257802D01* X165790Y257989D02*X165603Y257802D01*X165969Y257429D02*X167029Y257429D01* X167300Y257700D02*X167029Y257429D01*X167815Y257700D02*X168300Y257700D01* X167095Y258200D02*X167486Y258200D01*X167800Y257886D02*X167486Y258200D01* X166847Y258429D02*X166866Y258429D01*X167095Y258200D02*X166866Y258429D01* X168114Y258200D02*X168800Y258200D01*X169300Y257700D02*X168800Y258200D01* X165023Y258325D02*X165608Y258325D01*X166232Y258949D02*X165608Y258325D01* X164498Y258332D02*X165016Y258332D01*X165023Y258325D02*X165016Y258332D01* X151800Y258200D02*X149200Y258200D01*X148893Y256685D02*X147585Y256685D01* X146950Y256050D02*X147585Y256685D01*X235050Y258300D02*X236200Y258300D01* X209449Y257350D02*X208450Y257350D01*X211285Y257495D02*X209594Y257495D01* X209449Y257350D02*X209594Y257495D01*X212613Y257495D02*X211285Y257495D01* X215550Y256790D02*X216650Y256790D01*X161777Y260289D02*X161768Y260289D01* X159585Y262471D02*X161768Y260289D01*X169486Y259200D02*X169315Y259200D01* X169300Y259215D02*X169315Y259200D01*X164990Y260527D02*X165470Y260527D01* X165990Y261047D02*X165470Y260527D01*X163803Y258970D02*X163951Y258970D01* X164456Y259475D02*X163951Y258970D01*X169501Y260185D02*X168785Y260185D01* X168300Y259700D02*X168785Y260185D01*X170679Y259215D02*X170099Y259215D01* X169800Y259514D02*X170099Y259215D01*X172488Y259666D02*X171131Y259666D01* X170679Y259215D02*X171131Y259666D01*X174486Y259823D02*X172645Y259823D01* X172488Y259666D02*X172645Y259823D01*X170797Y259700D02*X170300Y259700D01* X172380Y259926D02*X171023Y259926D01*X170797Y259700D02*X171023Y259926D01* X166978Y258700D02*X167300Y258700D01*X171166Y258700D02*X170300Y258700D01* X172255Y258897D02*X171363Y258897D01*X171166Y258700D02*X171363Y258897D01* X167095Y259185D02*X167501Y259185D01*X167800Y258886D02*X167501Y259185D01* X166232Y258949D02*X166859Y258949D01*X167095Y259185D02*X166859Y258949D01* X151210Y259700D02*X151300Y259700D01*X148500Y259910D02*X151000Y259910D01* X151210Y259700D02*X151000Y259910D01*X149052Y260200D02*X151800Y260200D01* X152300Y259700D02*X151800Y260200D01*X149743Y259105D02*X148000Y259105D01* X151300Y258700D02*X150148Y258700D01*X149743Y259105D02*X150148Y258700D01* X171919Y260186D02*X170128Y260186D01*X169800Y260514D02*X170128Y260186D01* X232179Y259470D02*X232179Y259470D01*X231759Y259050D02*X231759Y259050D01* X232179Y259470D02*X231759Y259050D01*X234689Y258939D02*X234839Y258939D01* X235200Y259300D02*X234839Y258939D01*X167063Y260200D02*X167800Y260200D01* X168300Y260700D02*X167800Y260200D01*X231286Y260120D02*X231290Y260120D01* X152300Y260700D02*X151300Y260700D01*X143700Y261500D02*X144470Y261500D01* X143700Y262500D02*X144490Y262500D01*X150431Y261003D02*X150351Y261003D01* X151300Y260700D02*X150735Y260700D01*X150431Y261003D02*X150735Y260700D01* X166961Y262200D02*X167486Y262200D01*X167785Y262499D02*X167486Y262200D01* X166398Y262034D02*X166795Y262034D01*X166961Y262200D02*X166795Y262034D01* X167093Y262700D02*X167300Y262700D01*X166290Y262294D02*X166687Y262294D01* X167093Y262700D02*X166687Y262294D01*X164870Y260810D02*X165360Y260810D01* X165720Y261170D02*X165360Y260810D01*X166800Y261700D02*X167300Y261700D01* X166527Y261443D02*X166543Y261443D01*X166800Y261700D02*X166543Y261443D01* X171711Y260700D02*X170300Y260700D01*X172232Y261136D02*X172147Y261136D01* X171711Y260700D02*X172147Y261136D01*X199852Y261661D02*X196302Y261661D01* X192412Y265551D02*X196302Y261661D01*X169785Y260700D02*X169300Y260700D01* X226542Y261410D02*X224419Y261410D01*X224082Y261747D02*X224419Y261410D01* X228531Y262310D02*X227442Y262310D01*X226542Y261410D02*X227442Y262310D01* X232300Y261100D02*X233035Y261100D01*X233020Y262320D02*X233035Y262320D01* X232300Y262100D02*X232800Y262100D01*X233020Y262320D02*X232800Y262100D01* X171282Y262700D02*X170300Y262700D01*X154099Y263215D02*X154815Y263215D01* X155300Y263700D02*X154815Y263215D01*X153300Y263700D02*X153785Y263700D01* X153800Y263685D02*X153785Y263700D01*X155815Y264700D02*X156300Y264700D01* X159325Y263700D02*X159300Y263700D01*X165880Y264700D02*X166300Y264700D01* X165010Y264200D02*X165540Y264200D01*X165790Y264450D02*X165540Y264200D01* X167090Y264700D02*X167300Y264700D01*X166090Y264200D02*X166590Y264200D01* X167090Y264700D02*X166590Y264200D01*X168610Y264700D02*X168300Y264700D01* X169785Y264700D02*X169300Y264700D01*X167486Y263200D02*X167315Y263200D01* X167300Y263215D02*X167315Y263200D01*X168114Y263200D02*X168285Y263200D01* X168300Y263185D02*X168285Y263200D01*X170690Y264200D02*X168114Y264200D01* X167815Y263901D02*X168114Y264200D01*X171526Y264527D02*X171016Y264527D01* X170690Y264200D02*X171016Y264527D01*X151300Y263700D02*X150500Y263700D01* X148745Y265455D02*X150500Y263700D01*X151800Y264200D02*X150450Y264200D01* X149290Y265360D02*X150450Y264200D01*X221222Y263601D02*X220662Y263601D01* X219593Y262531D02*X220662Y263601D01*X223802Y263210D02*X221612Y263210D01* X221222Y263601D02*X221612Y263210D01*X232300Y263100D02*X233035Y263100D01* X232300Y264100D02*X233035Y264100D01*X172427Y263011D02*X171593Y263011D01* X171282Y262700D02*X171593Y263011D01*X173074Y263063D02*X172480Y263063D01* X172427Y263011D02*X172480Y263063D01*X155785Y265700D02*X155300Y265700D01* X156501Y265215D02*X156099Y265215D01*X155800Y265514D02*X156099Y265215D01* X143700Y265600D02*X144746Y265600D01*X145401Y264945D02*X144746Y265600D01* X155114Y265200D02*X155486Y265200D01*X155800Y264886D02*X155486Y265200D01* X157610Y265700D02*X157300Y265700D01*X158530Y265200D02*X158110Y265200D01* X157610Y265700D02*X158110Y265200D01*X168390Y265700D02*X168300Y265700D01* X169486Y266200D02*X168890Y266200D01*X168390Y265700D02*X168890Y266200D01* X169486Y265200D02*X169110Y265200D01*X168610Y264700D02*X169110Y265200D01* X170486Y266200D02*X170114Y266200D01*X169800Y265886D02*X170114Y266200D01* X170486Y265200D02*X170114Y265200D01*X169800Y264886D02*X170114Y265200D01* X149700Y266570D02*X148835Y266570D01*X151300Y265700D02*X150570Y265700D01* X149700Y266570D02*X150570Y265700D01*X151486Y266200D02*X151079Y266200D01* X149505Y267773D02*X151079Y266200D01*X152300Y265700D02*X151815Y265700D01* X151800Y265715D02*X151815Y265700D01*X148745Y265455D02*X148000Y265455D01* X167486Y265200D02*X165800Y265200D01*X165300Y264700D02*X165800Y265200D01* X168486Y266200D02*X168114Y266200D01*X167800Y265886D02*X168114Y266200D01* X167486Y266200D02*X167315Y266200D01*X167300Y266185D02*X167315Y266200D01* X170354Y265700D02*X170300Y265700D01*X190873Y268460D02*X188341Y268460D01* X187492Y269309D02*X188341Y268460D01*X232300Y267100D02*X233035Y267100D01* X156408Y269577D02*X155898Y269577D01*X155806Y269486D02*X155898Y269577D01* X181228Y270637D02*X176828Y270637D01*X175594Y269403D02*X176828Y270637D01* X187063Y270215D02*X185663Y270215D01*X185112Y270766D02*X185663Y270215D01* X239550Y268965D02*X239610Y268965D01*X237550Y268965D02*X237610Y268965D01* X235300Y269700D02*X234503Y269700D01*X238550Y268965D02*X238695Y268965D01* X240550Y268965D02*X240610Y268965D01*X183548Y271113D02*X181704Y271113D01* X181228Y270637D02*X181704Y271113D01*X185112Y270766D02*X183895Y270766D01* X183548Y271113D02*X183895Y270766D01*X142800Y274100D02*X144300Y274100D01* X150900Y274150D02*X150850Y274150D01*X150351Y273651D02*X150850Y274150D01* X157931Y252583D02*X158291Y252222D01*X184012Y238770D02*X186646Y241405D01* X199965Y242980D02*X198505Y244440D01*X160687Y245638D02*X160326Y245999D01* X152300Y248700D02*X151800Y248200D01*X153300Y248700D02*X152800Y248200D01* X156300Y248700D02*X156800Y248200D01*X157300Y248700D02*X156815Y249185D01* X157300Y249700D02*X157800Y250200D01*X167300Y247700D02*X167260Y247660D01* X166300Y248700D02*X166805Y248195D01*X166300Y249700D02*X166800Y249200D01* X167300Y249700D02*X167785Y250185D01*X152300Y250700D02*X151790Y250190D01* X153300Y250700D02*X152815Y250215D01*X157370Y251673D02*X156800Y251103D01* X158300Y250700D02*X158549Y250949D01*X182032Y250651D02*X181522Y251161D01* X197966Y251950D02*X196296Y253621D01*X218800Y251550D02*X219210Y251960D01* X152300Y254700D02*X151815Y254215D01*X152300Y255700D02*X151800Y256200D01* X159787Y253526D02*X160147Y253165D01*X169300Y254700D02*X168815Y254215D01* X172630Y254419D02*X172252Y254797D01*X173479Y254121D02*X173119Y253760D01* X175102Y255601D02*X174376Y256327D01*X211937Y254805D02*X211285Y255457D01* X152300Y258700D02*X151800Y258200D01*X163442Y258610D02*X163803Y258970D01* X164036Y257598D02*X163676Y257959D01*X166487Y258068D02*X166847Y258429D01* X176796Y258780D02*X176435Y258420D01*X148000Y260410D02*X148500Y259910D01* X148800Y260452D02*X149052Y260200D01*X162138Y259928D02*X161777Y260289D01* X163740Y259480D02*X164120Y259861D01*X166552Y259689D02*X167063Y260200D01* X174846Y259463D02*X174486Y259823D01*X172280Y260547D02*X171919Y260186D01* X152300Y263700D02*X151800Y264200D01*X158688Y262777D02*X158300Y263164D01* X174766Y263789D02*X174405Y263428D01*X159300Y264700D02*X159800Y265200D01* X154539Y269164D02*X154900Y268804D01*X159380Y269692D02*X158940Y269252D01* X160450Y268015D02*X160300Y267865D01*X169162Y270451D02*X168801Y270090D01* X171663Y270795D02*X171302Y270435D01*X220600Y252435D02*X219540Y253495D01* X087149Y288625D02*X087216Y288682D01*X087315Y288856D01*X087315Y287605D01* X086430Y286980D02*X088020Y286980D01*X088020Y289520D01*X086430Y289520D01* X086430Y286980D01*D02*G54D73*X146972Y263930D02*X146972Y263697D01* X147370Y263299D02*X146972Y263697D01*X151451Y268368D02*X151451Y268867D01* X152300Y266700D02*X152300Y267519D01*X151451Y268368D02*X152300Y267519D01* X151300Y247700D02*X151300Y246390D01*X152070Y245620D02*X151300Y246390D01* X152290Y247091D02*X152290Y246965D01*X152300Y247700D02*X152300Y247101D01* X152290Y247091D02*X152300Y247101D01*X153058Y267707D02*X153058Y268468D01* X153300Y266700D02*X153300Y267465D01*X153058Y267707D02*X153300Y267465D01* X154235Y267250D02*X154235Y267660D01*X154300Y266700D02*X154300Y267185D01* X154235Y267250D02*X154300Y267185D01*X153300Y247093D02*X153300Y247700D01* X153310Y246950D02*X153310Y247083D01*X153300Y247093D02*X153310Y247083D01* X154470Y246464D02*X154470Y245740D01*X154300Y247700D02*X154300Y246634D01* X154470Y246464D02*X154300Y246634D01*X150189Y252643D02*X150754Y252643D01* X150812Y252700D02*X150754Y252643D01*X151030Y252200D02*X151800Y252200D01* X152300Y252700D02*X151800Y252200D01*X149690Y252300D02*X150930Y252300D01* X151030Y252200D02*X150930Y252300D01*X148817Y252200D02*X147990Y252200D01* X151300Y251700D02*X149317Y251700D01*X148817Y252200D02*X149317Y251700D01* X149163Y251380D02*X147990Y251380D01*X151827Y251227D02*X149317Y251227D01* X149163Y251380D02*X149317Y251227D01*X150812Y252700D02*X151300Y252700D01* X148144Y253331D02*X149501Y253331D01*X150189Y252643D02*X149501Y253331D01* X150542Y262700D02*X151300Y262700D01*X147370Y263299D02*X149943Y263299D01* X150542Y262700D02*X149943Y263299D01*X150060Y263590D02*X148040Y263590D01* X147710Y263920D02*X148040Y263590D01*X151800Y263200D02*X150450Y263200D01* X150060Y263590D02*X150450Y263200D01*X154235Y267660D02*X154230Y267660D01* X152300Y251700D02*X151827Y251227D01*X146391Y264511D02*X146972Y263930D01* X152300Y262700D02*X151800Y263200D01*X151300Y266700D02*X150050Y267950D01*D02* G54D125*X227575Y239495D02*X227575Y239265D01*X244150Y279900D02*X244150Y282910D01* X245500Y284260D02*X244150Y282910D01*X245830Y277770D02*X245830Y278810D01* X246670Y279650D02*X245830Y278810D01*X250140Y286060D02*X250140Y286250D01* X230050Y222542D02*X228325Y222542D01*X143600Y238150D02*X142175Y238150D01* X229400Y239750D02*X227830Y239750D01*X227575Y239495D02*X227830Y239750D01* X269600Y241100D02*X267875Y241100D01*X181500Y249150D02*X179775Y249150D01* X266200Y250200D02*X264775Y250200D01*X271000Y254300D02*X269575Y254300D01* X266200Y260350D02*X264775Y260350D01*X278500Y260650D02*X276675Y260650D01* X138700Y261450D02*X140451Y261450D01*X271000Y264350D02*X269575Y264350D01* X203450Y263850D02*X201832Y263850D01*X142800Y270100D02*X144411Y270100D01* X261800Y273300D02*X263225Y273300D01*X174800Y275700D02*X173075Y275700D01* X245393Y277381D02*X245441Y277381D01*X245830Y277770D02*X245441Y277381D01* X254500Y277450D02*X252675Y277450D01*X268000Y278350D02*X266175Y278350D01* X246670Y279650D02*X247900Y279650D01*X245500Y284260D02*X248340Y284260D01* X250140Y286060D02*X248340Y284260D01*D02*G54D126*X278500Y248150D02* X278500Y248191D01*X278500Y248191D02*X276675Y248191D01*D02*G54D127* X215693Y217400D03*X224248Y218945D03*X222130Y217400D03*X221725Y218070D03* X288398Y217368D03*X290934Y217655D03*X296874Y216990D03*X309745Y217980D03* X089865Y220850D03*X089865Y219450D03*X096835Y220850D03*X099860Y219400D03* X149020Y220390D03*X162025Y220450D03*X160480Y220290D03*X170375Y220500D03* X165202Y219960D03*X173534Y221212D03*X197872Y220950D03*X210390Y221070D03* X214700Y220475D03*X213713Y220950D03*X215650Y220895D03*X211847Y219390D03* X217100Y220475D03*X218049Y220475D03*X225218Y221095D03*X219015Y221100D03* X233650Y220165D03*X235885Y221100D03*X259253Y220950D03*X288192Y221707D03* X293225Y220060D03*X297864Y221835D03*X297864Y219285D03*X300925Y220164D03* X310925Y220564D03*X314122Y221560D03*X314122Y219560D03*X104000Y222500D03* X120500Y223000D03*X135500Y223000D03*X159261Y222930D03*X159261Y221940D03* X159261Y223920D03*X166895Y222510D03*X192922Y223920D03*X190537Y223469D03* X190615Y222450D03*X201232Y223532D03*X207678Y223912D03*X217673Y223920D03* X211052Y224673D03*X213325Y223532D03*X220680Y223734D03*X219653Y223920D03* X222062Y223734D03*X225218Y222365D03*X222062Y224725D03*X225618Y224375D03* X227573Y223532D03*X228325Y222542D03*X235885Y222550D03*X258263Y221940D03* X284004Y224648D03*X287964Y223060D03*X286974Y222930D03*X293225Y224060D03* X300430Y223920D03*X298854Y224060D03*X299405Y223280D03*X301811Y222190D03* X303495Y223445D03*X302563Y223996D03*X304075Y222950D03*X307235Y223882D03* X304075Y222157D03*X312890Y223090D03*X313825Y224460D03*X089865Y226250D03* X096835Y226250D03*X147381Y226890D03*X154311Y224910D03*X160252Y225900D03* X193612Y225475D03*X193612Y226489D03*X200842Y225475D03*X198119Y226139D03* X205792Y225900D03*X215693Y226890D03*X216683Y226890D03*X217673Y226900D03* X210952Y226173D03*X213465Y225450D03*X217565Y225450D03*X222475Y227450D03* X225270Y226820D03*X222062Y226175D03*X225218Y225050D03*X229682Y226175D03* X226100Y226790D03*X234503Y224910D03*X236483Y226890D03*X244925Y227586D03* X246809Y225497D03*X244403Y226890D03*X251025Y227586D03*X256283Y226890D03* X249759Y227586D03*X258263Y226890D03*X259253Y225900D03*X257273Y226890D03* X270144Y226890D03*X287964Y227060D03*X288130Y224910D03*X293775Y225060D03* X293225Y226060D03*X288665Y225450D03*X300834Y225900D03*X302100Y227060D03* X302175Y225060D03*X298854Y226060D03*X307775Y227060D03*X303943Y226060D03* X312410Y226575D03*X311830Y226080D03*X312830Y225770D03*X089865Y227650D03* X096835Y227650D03*X130300Y229800D03*X130300Y228200D03*X140230Y229150D03* X152310Y229060D03*X161670Y227912D03*X157860Y229030D03*X158271Y229860D03* X170417Y228567D03*X164212Y229860D03*X179990Y228938D03*X185340Y229097D03* X187972Y229860D03*X191932Y228870D03*X193458Y228429D03*X188690Y228520D03* X205792Y228545D03*X209753Y229860D03*X204802Y229750D03*X217673Y228870D03* X210537Y228832D03*X216300Y228815D03*X216935Y229585D03*X211588Y229796D03* X220300Y228815D03*X218700Y228815D03*X221100Y229625D03*X222625Y230250D03* X228325Y227950D03*X237473Y228621D03*X245393Y229953D03*X248363Y230270D03* X249353Y229953D03*X247373Y229953D03*X256283Y228870D03*X255210Y228787D03* X254303Y229860D03*X253313Y229860D03*X250685Y229764D03*X256283Y227880D03* X250343Y228621D03*X255224Y230351D03*X258900Y229175D03*X258263Y227880D03* X257273Y228870D03*X257273Y227880D03*X262224Y228870D03*X261000Y229175D03* X262735Y230100D03*X287620Y229060D03*X293225Y228060D03*X302175Y230060D03* X302175Y228060D03*X298854Y229060D03*X299380Y228060D03*X296925Y230060D03* X304075Y228962D03*X307775Y228962D03*X310925Y230060D03*X312825Y229060D03* X312825Y228060D03*X313705Y228870D03*X089000Y233000D03*X103500Y232000D03* X121000Y233000D03*X144000Y230500D03*X152331Y231840D03*X160252Y230850D03* X168715Y231390D03*X164791Y230931D03*X171974Y231539D03*X175220Y230910D03* X174112Y230850D03*X185975Y232088D03*X185002Y230880D03*X186937Y231330D03* X207135Y231338D03*X205265Y231150D03*X206725Y232500D03*X209479Y231775D03* X208500Y231775D03*X210239Y231747D03*X213404Y232411D03*X210662Y230921D03* X211768Y231421D03*X215604Y233156D03*X215604Y231875D03*X213275Y233246D03* X223756Y233036D03*X222125Y232350D03*X232523Y232830D03*X235493Y232830D03* X238000Y232665D03*X241000Y232665D03*X240000Y232665D03*X239000Y232665D03* X237755Y230706D03*X239626Y230529D03*X249353Y231080D03*X245000Y232665D03* X248000Y232665D03*X246000Y232665D03*X244000Y232665D03*X247000Y232665D03* X242000Y232665D03*X243000Y232665D03*X254303Y231840D03*X252323Y230850D03* X250267Y230850D03*X250267Y232650D03*X254465Y232650D03*X258263Y231840D03* X258565Y232650D03*X260300Y231025D03*X262315Y232150D03*X271285Y232150D03* X265775Y233300D03*X287620Y233060D03*X287620Y232060D03*X293225Y231060D03* X298854Y232830D03*X302175Y233060D03*X302175Y231060D03*X298854Y232060D03* X299409Y231060D03*X303425Y231840D03*X310925Y232835D03*X304065Y232275D03* X313380Y232060D03*X313380Y231060D03*X134500Y236000D03*X137375Y234050D03* X145401Y233820D03*X152646Y233655D03*X161242Y234810D03*X171880Y235037D03* X175778Y235037D03*X174940Y234910D03*X183022Y235800D03*X185002Y235800D03* X185002Y233820D03*X184042Y235800D03*X187600Y235904D03*X191932Y234810D03* X209700Y235300D03*X204700Y235300D03*X207700Y235300D03*X206700Y235300D03* X202731Y235301D03*X205700Y235300D03*X205025Y234520D03*X208700Y235300D03* X203700Y234790D03*X210500Y234225D03*X206645Y233439D03*X207542Y234267D03* X208572Y234225D03*X216700Y235300D03*X214700Y235300D03*X213700Y235300D03* X215604Y234089D03*X215700Y235300D03*X212700Y235300D03*X217700Y235300D03* X211500Y234225D03*X225593Y234810D03*X223613Y234810D03*X218350Y234575D03* X222623Y234810D03*X222623Y233750D03*X220726Y235200D03*X219267Y235480D03* X236215Y233400D03*X238000Y235135D03*X238917Y235135D03*X239677Y235135D03* X236215Y234400D03*X242000Y235135D03*X243000Y235135D03*X244000Y235135D03* X245000Y235135D03*X246000Y235135D03*X247000Y235135D03*X248000Y235135D03* X249785Y235048D03*X252323Y235800D03*X255094Y234810D03*X256314Y234810D03* X249785Y233410D03*X252818Y235048D03*X253313Y235800D03*X255293Y236015D03* X256374Y236015D03*X254303Y233820D03*X251257Y236015D03*X258263Y235880D03* X259641Y235903D03*X257364Y234810D03*X258263Y233820D03*X259253Y234810D03* X261234Y234810D03*X260244Y234810D03*X268164Y235800D03*X293775Y235060D03* X293225Y236060D03*X293235Y234060D03*X289565Y234150D03*X302175Y236060D03* X302175Y234060D03*X298854Y236060D03*X298854Y234060D03*X303450Y235285D03* X314069Y235060D03*X312825Y234060D03*X312404Y235890D03*X137375Y238150D03* X142175Y238150D03*X147800Y237980D03*X150351Y238700D03*X155301Y238700D03* X161737Y237780D03*X163775Y236728D03*X163222Y238475D03*X160575Y238770D03* X167350Y237590D03*X163914Y237780D03*X164646Y237052D03*X165343Y236475D03* X166250Y237780D03*X167800Y238475D03*X168800Y237400D03*X166800Y238475D03* X171900Y238150D03*X172200Y237100D03*X177061Y238770D03*X175400Y238228D03* X171800Y236400D03*X175720Y236450D03*X183022Y236790D03*X184012Y237780D03* X184012Y238770D03*X186214Y238698D03*X187012Y238971D03*X185526Y236815D03* X191932Y237678D03*X192922Y237780D03*X199435Y237290D03*X202700Y236300D03* X196882Y238450D03*X196365Y237290D03*X201072Y237725D03*X201832Y237710D03* X199435Y238450D03*X204700Y236300D03*X205700Y236300D03*X205700Y237300D03* X209706Y238306D03*X203700Y237300D03*X209700Y236331D03*X204685Y238285D03* X203700Y238300D03*X208700Y236300D03*X208700Y237300D03*X208706Y238306D03* X207700Y236300D03*X207700Y237300D03*X207700Y238300D03*X206700Y236300D03* X206700Y238300D03*X206700Y237300D03*X205700Y238300D03*X216700Y236300D03* X216700Y238300D03*X215700Y237300D03*X215700Y236300D03*X214700Y238300D03* X211700Y238300D03*X211680Y237300D03*X214700Y236300D03*X213700Y238300D03* X213720Y237300D03*X213700Y236300D03*X212700Y238320D03*X212700Y237300D03* X212700Y236300D03*X217700Y238300D03*X216700Y237300D03*X217700Y236300D03* X214700Y237300D03*X215700Y238300D03*X218700Y238300D03*X223203Y236865D03* X221907Y237812D03*X221837Y238582D03*X225035Y237800D03*X221022Y236351D03* X218699Y236330D03*X220075Y236364D03*X225900Y236790D03*X228563Y237750D03* X227573Y236790D03*X230543Y237780D03*X237473Y236790D03*X238463Y236790D03* X239715Y238000D03*X236425Y238200D03*X241500Y236275D03*X239725Y237000D03* X243413Y238770D03*X244892Y238869D03*X249292Y238978D03*X245763Y238770D03* X241803Y238770D03*X248500Y236275D03*X247500Y236275D03*X246500Y236275D03* X245500Y236275D03*X244500Y236275D03*X243500Y236275D03*X242500Y236275D03* X254465Y236275D03*X256424Y238885D03*X253500Y238885D03*X252500Y238885D03* X255045Y238885D03*X249500Y236275D03*X262224Y238770D03*X263214Y236790D03* X262224Y237450D03*X267875Y238600D03*X270925Y238600D03*X287964Y237060D03* X293225Y238060D03*X302175Y238060D03*X303450Y238835D03*X304075Y237285D03* X310925Y238060D03*X311604Y236285D03*X313280Y237060D03*X105810Y239910D03* X151900Y241070D03*X150351Y240100D03*X156825Y240200D03*X160687Y240751D03* X160252Y241741D03*X161275Y239800D03*X156825Y239200D03*X159025Y239475D03* X163400Y240985D03*X168172Y241741D03*X167412Y240925D03*X165800Y240985D03* X164596Y240989D03*X168370Y240970D03*X170152Y240751D03*X171180Y240900D03* X173130Y240880D03*X176976Y240036D03*X172132Y241741D03*X175000Y241083D03* X174182Y241491D03*X186982Y240770D03*X184065Y241405D03*X184012Y240135D03* X191415Y240760D03*X194223Y241153D03*X187972Y240751D03*X199691Y239470D03* X195009Y241374D03*X196365Y239650D03*X199945Y241444D03*X202654Y241223D03* X196365Y241050D03*X202492Y239593D03*X203700Y239320D03*X205700Y239300D03* X204700Y239305D03*X203689Y241280D03*X207700Y239300D03*X208700Y241300D03* X207700Y240300D03*X209700Y241300D03*X205700Y240320D03*X208700Y239300D03* X204705Y241280D03*X209700Y240300D03*X209700Y239300D03*X207700Y241300D03* X208700Y240300D03*X206700Y239300D03*X217685Y239310D03*X217700Y240300D03* X217700Y241300D03*X216700Y240300D03*X215680Y240300D03*X216700Y239280D03* X215700Y239300D03*X213700Y239300D03*X216700Y241300D03*X215680Y241300D03* X214700Y241300D03*X214700Y240300D03*X213700Y240300D03*X212700Y241300D03* X211700Y241300D03*X212700Y239300D03*X211700Y240300D03*X211700Y239300D03* X212700Y240300D03*X214700Y239300D03*X213700Y241300D03*X218920Y241300D03* X218700Y239300D03*X225722Y240452D03*X225795Y239300D03*X221901Y240881D03* X225035Y239200D03*X219149Y239925D03*X223860Y241590D03*X232523Y239760D03* X226583Y239905D03*X230573Y241741D03*X229553Y241741D03*X233513Y239760D03* X226583Y241187D03*X227575Y239265D03*X234067Y240352D03*X234844Y241215D03* X241433Y239475D03*X240443Y239475D03*X239453Y239475D03*X238463Y239475D03* X237473Y239475D03*X236483Y239475D03*X234200Y239125D03*X234916Y240084D03* X248310Y241427D03*X247505Y239392D03*X248446Y239815D03*X248532Y239046D03* X249273Y239738D03*X247475Y240286D03*X246134Y239475D03*X244403Y239475D03* X242423Y239475D03*X255293Y241741D03*X254495Y239760D03*X252323Y241741D03* X255293Y240751D03*X256695Y240751D03*X252323Y240751D03*X251333Y240751D03* X252323Y239760D03*X257352Y239682D03*X260244Y240751D03*X261234Y240751D03* X263214Y241200D03*X263214Y240200D03*X263214Y239200D03*X265835Y239200D03* X265835Y241200D03*X265835Y240200D03*X267875Y241100D03*X287703Y240060D03* X293235Y240250D03*X293235Y241060D03*X299844Y239760D03*X302175Y241060D03* X302175Y240060D03*X299409Y241060D03*X300424Y239117D03*X303450Y241835D03* X296925Y240060D03*X304075Y239285D03*X310925Y240060D03*X307389Y241409D03* X312725Y241060D03*X313280Y239060D03*X139854Y244130D03*X143421Y243721D03* X154311Y243721D03*X151900Y241995D03*X163272Y244303D03*X170152Y241900D03* X177950Y243520D03*X174112Y243031D03*X173240Y242761D03*X174720Y244540D03* X186982Y242040D03*X182818Y242675D03*X183646Y243289D03*X186853Y243945D03* X184065Y244580D03*X186853Y242800D03*X190808Y242068D03*X194902Y243447D03* X191224Y243300D03*X194135Y243945D03*X191415Y244580D03*X190185Y242761D03* X187964Y243577D03*X202465Y242159D03*X195045Y242427D03*X199965Y242980D03* X196882Y243930D03*X195892Y243721D03*X199335Y242533D03*X196865Y242250D03* X199435Y244548D03*X202430Y243413D03*X205700Y242300D03*X204700Y242285D03* X203680Y242300D03*X205693Y244313D03*X204700Y244305D03*X209700Y242300D03* X208700Y244280D03*X208700Y242300D03*X209700Y244300D03*X207700Y244280D03* X206700Y244300D03*X206700Y242300D03*X207700Y242300D03*X215700Y244300D03* X216700Y244280D03*X217700Y242300D03*X216700Y242300D03*X215680Y242300D03* X212700Y242300D03*X211700Y242300D03*X211700Y244300D03*X212700Y244300D03* X214700Y244300D03*X213700Y244300D03*X213700Y242300D03*X214686Y242300D03* X222013Y241892D03*X218950Y242066D03*X225425Y243515D03*X222008Y242660D03* X222220Y243456D03*X218896Y242882D03*X218927Y243682D03*X228395Y242632D03* X232523Y242731D03*X233533Y241875D03*X227835Y244425D03*X230735Y244259D03* X226903Y243515D03*X231975Y243731D03*X227079Y242667D03*X238207Y244294D03* X241200Y244300D03*X237200Y243300D03*X239700Y241935D03*X240700Y241935D03* X235200Y243300D03*X236200Y244300D03*X234200Y242300D03*X246214Y242226D03* X248322Y242187D03*X248200Y244300D03*X246200Y244300D03*X242200Y244300D03* X243200Y244300D03*X244524Y242034D03*X243200Y242300D03*X244200Y244280D03* X242200Y243300D03*X248200Y243300D03*X256200Y243300D03*X253200Y244300D03* X253200Y242300D03*X252175Y244300D03*X255200Y244300D03*X251200Y242300D03* X251200Y243300D03*X252200Y243300D03*X253200Y243300D03*X256200Y242300D03* X257200Y243300D03*X260200Y242300D03*X258200Y244300D03*X259200Y243300D03* X262464Y242525D03*X261462Y243213D03*X260895Y242705D03*X261475Y244200D03* X263214Y242200D03*X265835Y244200D03*X265835Y243200D03*X265835Y242200D03* X280008Y243721D03*X276675Y242050D03*X287703Y243060D03*X287620Y242060D03* X293225Y244060D03*X300170Y242690D03*X302175Y244060D03*X302175Y243060D03* X298854Y242060D03*X302062Y242067D03*X310925Y243285D03*X307535Y242862D03* X304075Y242285D03*X311550Y242835D03*X313380Y244060D03*X312725Y242060D03* X120270Y246870D03*X134500Y246000D03*X145401Y246691D03*X144666Y245484D03* X148130Y245800D03*X142075Y247205D03*X142075Y246445D03*X152853Y245860D03* X155293Y245693D03*X154552Y244880D03*X155288Y246836D03*X152070Y245620D03* X152290Y246965D03*X153310Y246950D03*X154470Y245740D03*X149457Y245857D03* X161805Y247118D03*X163286Y246573D03*X158403Y245520D03*X156926Y246271D03* X160687Y245638D03*X159790Y247075D03*X159255Y246315D03*X157569Y245432D03* X156310Y246955D03*X161749Y245505D03*X161859Y244745D03*X158771Y246964D03* X161284Y246441D03*X165300Y246975D03*X166295Y246975D03*X164636Y246442D03* X165202Y244711D03*X165339Y245586D03*X166805Y245701D03*X170879Y245352D03* X169017Y246520D03*X168030Y246975D03*X170660Y246995D03*X172460Y246530D03* X177660Y245250D03*X176092Y246691D03*X183625Y247400D03*X183989Y245611D03* X181534Y245610D03*X183022Y244711D03*X186853Y246485D03*X191359Y247535D03* X194135Y245225D03*X191415Y245860D03*X194135Y246485D03*X187492Y245285D03* X195321Y246369D03*X202700Y247300D03*X195676Y244859D03*X196882Y247550D03* X196882Y245022D03*X196882Y246550D03*X196387Y245970D03*X199913Y245364D03* X202547Y245116D03*X202518Y246447D03*X199435Y246560D03*X200842Y247550D03* X203700Y247300D03*X205700Y247300D03*X204691Y246321D03*X208700Y245300D03* X207680Y246300D03*X205711Y246311D03*X208700Y247320D03*X204721Y245301D03* X207700Y245300D03*X209720Y246300D03*X208700Y246300D03*X209693Y247307D03* X206700Y247300D03*X217700Y246300D03*X217705Y245297D03*X214704Y247297D03* X215712Y247283D03*X215693Y246293D03*X216693Y246293D03*X210713Y247313D03* X217691Y247291D03*X214700Y246300D03*X214700Y245300D03*X215700Y245300D03* X216720Y245300D03*X210729Y245302D03*X212700Y245300D03*X213700Y246300D03* X211700Y245300D03*X212700Y247300D03*X216711Y247299D03*X211700Y247300D03* X211700Y246300D03*X212700Y246300D03*X213703Y247297D03*X213700Y245300D03* X222364Y247204D03*X222129Y244837D03*X219002Y245288D03*X219033Y246826D03* X219032Y246062D03*X221735Y245559D03*X221811Y246620D03*X222358Y246073D03* X225455Y245141D03*X233513Y245701D03*X233699Y247190D03*X232523Y246158D03* X227451Y247103D03*X231975Y244800D03*X231225Y245850D03*X231226Y246611D03* X232959Y247525D03*X238200Y247300D03*X236200Y245300D03*X240200Y247300D03* X238200Y245300D03*X239200Y245300D03*X237180Y245300D03*X239200Y247300D03* X245214Y245287D03*X249200Y246300D03*X249200Y245300D03*X242200Y245300D03* X243200Y246300D03*X243200Y245300D03*X244200Y245300D03*X245200Y247300D03* X245200Y246300D03*X242187Y246310D03*X254200Y247300D03*X255200Y245300D03* X256200Y245300D03*X255200Y246300D03*X256200Y247300D03*X252200Y245300D03* X253200Y245300D03*X252200Y247300D03*X250200Y246300D03*X256200Y246300D03* X257200Y245300D03*X260200Y247300D03*X260200Y246300D03*X259200Y246300D03* X263925Y247201D03*X264685Y246985D03*X260895Y244705D03*X260895Y245705D03* X261234Y247300D03*X261475Y245200D03*X261462Y246213D03*X267174Y246691D03* X265835Y245200D03*X265835Y246200D03*X266595Y245701D03*X267875Y245900D03* X293225Y247060D03*X301824Y245778D03*X298830Y247550D03*X298760Y245747D03* X302175Y246650D03*X296925Y246060D03*X310925Y246285D03*X304075Y245060D03* X313380Y247060D03*X312825Y245060D03*X133265Y249100D03*X136341Y249124D03* X138270Y249470D03*X138675Y250200D03*X138675Y248800D03*X138675Y247744D03* X144410Y250140D03*X145690Y249800D03*X144525Y247600D03*X141790Y250200D03* X143230Y248415D03*X147381Y249661D03*X149410Y249180D03*X150510Y250120D03* X148845Y248008D03*X172479Y249661D03*X173691Y249251D03*X171835Y249230D03* X178800Y249275D03*X177075Y248554D03*X183413Y249685D03*X183625Y248925D03* X186982Y248390D03*X182808Y247705D03*X179775Y249150D03*X191415Y249660D03* X190447Y249535D03*X194902Y248671D03*X188457Y248646D03*X190920Y248479D03* X200842Y248492D03*X196365Y250150D03*X200837Y249555D03*X196365Y248750D03* X195785Y248255D03*X201691Y249482D03*X209700Y249292D03*X204700Y250290D03* X205700Y249300D03*X205700Y250300D03*X209700Y248300D03*X204700Y249300D03* X208690Y248278D03*X203700Y250300D03*X209719Y250312D03*X206700Y249300D03* X205700Y248320D03*X206725Y250294D03*X214700Y248300D03*X216700Y248300D03* X217715Y248305D03*X215700Y248300D03*X219232Y248960D03*X222370Y248089D03* X221752Y248575D03*X219013Y247816D03*X231009Y248061D03*X231880Y248010D03* X232208Y250264D03*X232354Y248731D03*X228015Y248144D03*X229510Y248210D03* X226775Y248980D03*X232200Y249504D03*X226158Y249500D03*X226675Y250150D03* X235200Y249300D03*X236200Y249300D03*X241200Y248300D03*X235200Y250300D03* X240200Y249300D03*X238200Y248300D03*X238200Y249300D03*X237200Y248300D03* X241200Y250300D03*X241200Y249300D03*X240200Y248300D03*X244201Y248310D03* X249200Y248300D03*X243200Y248300D03*X246200Y248300D03*X242200Y248300D03* X248200Y249300D03*X249200Y249300D03*X248200Y250300D03*X249200Y250300D03* X243200Y250300D03*X244200Y250300D03*X242200Y250300D03*X246200Y250300D03* X245200Y249300D03*X244200Y249300D03*X243200Y249300D03*X245200Y250300D03* X242200Y249300D03*X257200Y250300D03*X256200Y250300D03*X257200Y249300D03* X255200Y250300D03*X254200Y250300D03*X256200Y249300D03*X257200Y248300D03* X255200Y249300D03*X253200Y248300D03*X250200Y248300D03*X253200Y250300D03* X252200Y249300D03*X251200Y249300D03*X250200Y249300D03*X251200Y250300D03* X254200Y248300D03*X253200Y249300D03*X252200Y250300D03*X250200Y250300D03* X261234Y248671D03*X261234Y249661D03*X263214Y248671D03*X260200Y249300D03* X258200Y250300D03*X259200Y249300D03*X260200Y248300D03*X259200Y248300D03* X258200Y248300D03*X259200Y250300D03*X264775Y250200D03*X265194Y248191D03* X269575Y250200D03*X276675Y248191D03*X288114Y249418D03*X287620Y248060D03* X282521Y248191D03*X290030Y250110D03*X293225Y250060D03*X301010Y248500D03* X302085Y248941D03*X301824Y248181D03*X299020Y249078D03*X299469Y248128D03* X300142Y248530D03*X303240Y247835D03*X307225Y250060D03*X307600Y248735D03* X310925Y249060D03*X312825Y250060D03*X313380Y248060D03*X115300Y252200D03* X130300Y252200D03*X133265Y250500D03*X133180Y252040D03*X136335Y250500D03* X138675Y251600D03*X144590Y252700D03*X147990Y252200D03*X147990Y251380D03* X141849Y252014D03*X141906Y252774D03*X155621Y252937D03*X155790Y251299D03* X155175Y252308D03*X149690Y252300D03*X149900Y250700D03*X150533Y253141D03* X155974Y252215D03*X155025Y251425D03*X158824Y253041D03*X159059Y251901D03* X160674Y251535D03*X157931Y252583D03*X157370Y251673D03*X162372Y251782D03* X162770Y252631D03*X163738Y252077D03*X161114Y252290D03*X161874Y252483D03* X164327Y253097D03*X166546Y252246D03*X171035Y251641D03*X163866Y251306D03* X164836Y251587D03*X172924Y250974D03*X174112Y251641D03*X179062Y250651D03* X171735Y253248D03*X171835Y250430D03*X173989Y252827D03*X178072Y250651D03* X177281Y250546D03*X172311Y252394D03*X176092Y252500D03*X172164Y251206D03* X182837Y250651D03*X180052Y250651D03*X182032Y250651D03*X184065Y250934D03* X180052Y252500D03*X193912Y252631D03*X192922Y252631D03*X188962Y252631D03* X194902Y250651D03*X187358Y250868D03*X190942Y250651D03*X199435Y250545D03* X195892Y252631D03*X199852Y252631D03*X200842Y252631D03*X197966Y251950D03* X202515Y251063D03*X210182Y252738D03*X203195Y253250D03*X205525Y253020D03* X204975Y251490D03*X203425Y252000D03*X209075Y252695D03*X217030Y252740D03* X215621Y252441D03*X213825Y252435D03*X214860Y252450D03*X212990Y252730D03* X211923Y252711D03*X217790Y252760D03*X223579Y252994D03*X225851Y250810D03* X221633Y252510D03*X220600Y252435D03*X218580Y252470D03*X231930Y251930D03* X226583Y251570D03*X226684Y252450D03*X232375Y251300D03*X229225Y251885D03* X229225Y252645D03*X231928Y252690D03*X238200Y251327D03*X240200Y252300D03* X237200Y251327D03*X238200Y252300D03*X239200Y251327D03*X241200Y252300D03* X241200Y251300D03*X244200Y252300D03*X249200Y251300D03*X243200Y252300D03* X249200Y252300D03*X245200Y252300D03*X243200Y251300D03*X244200Y251300D03* X245200Y251300D03*X246200Y252300D03*X248200Y251300D03*X248200Y252300D03* X246200Y251300D03*X242200Y252300D03*X242200Y251300D03*X257200Y252300D03* X256200Y252300D03*X255200Y252300D03*X257200Y251300D03*X254200Y252300D03* X256200Y251300D03*X255200Y251300D03*X254200Y251300D03*X251200Y251300D03* X250200Y252300D03*X250200Y251300D03*X251200Y252300D03*X253200Y251300D03* X253200Y252300D03*X252200Y252300D03*X252200Y251300D03*X260200Y252300D03* X258200Y252300D03*X258200Y251300D03*X259200Y251300D03*X263865Y251500D03* X275094Y251641D03*X291924Y251641D03*X293400Y253000D03*X294423Y253061D03* X295048Y252296D03*X295799Y251545D03*X295442Y250797D03*X295035Y251511D03* X296348Y252521D03*X305975Y252333D03*X305215Y252631D03*X115300Y253800D03* X130300Y253800D03*X133130Y253800D03*X138675Y253621D03*X138675Y254400D03* X145401Y254990D03*X148144Y253331D03*X147419Y255370D03*X146950Y256050D03* X144411Y254611D03*X142431Y253621D03*X141695Y255600D03*X143421Y253485D03* X150433Y253993D03*X155100Y253895D03*X150518Y255302D03*X148383Y255915D03* X148439Y255155D03*X158212Y254108D03*X162910Y255792D03*X163251Y254793D03* X160547Y253607D03*X158234Y255639D03*X159787Y253526D03*X159974Y255129D03* X156291Y253415D03*X162884Y253773D03*X156750Y255195D03*X156750Y254205D03* X156170Y255700D03*X156170Y254700D03*X158822Y254699D03*X161700Y253895D03* X164269Y254611D03*X165767Y254847D03*X164680Y255274D03*X165308Y255788D03* X166575Y254630D03*X171520Y255307D03*X166575Y253609D03*X177050Y253295D03* X174112Y255601D03*X172630Y254419D03*X173479Y254121D03*X175102Y255601D03* X175220Y253790D03*X175980Y254500D03*X171610Y254287D03*X180052Y255601D03* X183225Y253950D03*X179525Y254500D03*X179525Y253500D03*X183022Y255581D03* X195892Y254611D03*X197025Y254400D03*X202038Y254565D03*X201832Y255601D03* X202957Y255810D03*X206006Y254540D03*X210468Y254191D03*X202957Y254190D03* X209385Y255115D03*X209495Y253564D03*X204065Y256090D03*X206782Y253725D03* X208420Y254174D03*X207527Y254564D03*X204887Y254561D03*X211269Y253528D03* X211937Y254805D03*X212410Y255472D03*X216720Y255940D03*X212289Y253731D03* X222260Y255480D03*X224603Y254611D03*X223613Y254611D03*X225390Y253979D03* X221633Y254385D03*X224314Y253466D03*X232353Y253339D03*X231984Y254819D03* X226583Y253500D03*X226583Y254500D03*X226583Y255500D03*X232266Y255597D03* X229447Y254377D03*X229335Y255137D03*X237209Y253309D03*X238188Y254288D03* X239200Y253300D03*X237200Y254300D03*X235202Y255324D03*X239200Y254300D03* X235200Y254300D03*X240200Y255315D03*X238200Y253300D03*X241200Y253300D03* X245200Y253300D03*X249200Y253300D03*X244200Y253300D03*X243200Y253300D03* X246200Y253300D03*X246200Y254300D03*X248200Y253300D03*X244200Y254300D03* X248200Y254300D03*X243200Y254300D03*X249200Y254300D03*X245200Y254300D03* X242200Y253300D03*X242200Y254300D03*X256190Y254313D03*X255200Y254300D03* X253200Y254300D03*X257200Y254269D03*X256200Y253300D03*X255200Y253300D03* X254200Y253300D03*X250200Y253300D03*X251200Y253300D03*X251200Y254300D03* X250200Y254300D03*X253208Y253276D03*X252200Y254300D03*X252200Y253300D03* X261234Y253480D03*X262254Y253621D03*X260200Y253300D03*X263925Y254700D03* X263925Y255700D03*X258200Y254300D03*X261234Y255700D03*X261234Y254700D03* X267625Y254300D03*X269575Y254300D03*X279329Y254488D03*X279720Y253370D03* X279841Y255075D03*X295445Y255264D03*X291290Y253324D03*X295413Y253747D03* X288890Y255100D03*X293775Y255913D03*X310935Y256060D03*X308845Y255325D03* X310735Y254611D03*X307235Y256050D03*X122500Y257500D03*X140075Y257990D03* X140075Y256800D03*X136000Y258500D03*X144425Y256800D03*X150533Y257297D03* X149664Y256838D03*X155620Y258205D03*X149200Y258200D03*X155025Y257700D03* X155025Y258700D03*X162962Y257100D03*X156990Y256700D03*X162967Y257860D03* X158086Y257743D03*X159367Y258928D03*X162367Y258335D03*X157047Y258034D03* X157444Y258761D03*X163442Y258610D03*X159068Y256473D03*X156308Y257698D03* X161158Y258479D03*X160252Y256591D03*X161517Y257305D03*X170950Y257205D03* X166288Y256438D03*X165369Y256854D03*X164036Y257598D03*X165093Y257802D03* X165969Y257429D03*X166487Y258068D03*X164498Y258332D03*X165241Y258835D03* X164609Y257096D03*X176796Y258780D03*X172255Y258897D03*X171637Y256817D03* X177750Y257325D03*X172626Y257790D03*X183022Y258571D03*X183022Y257581D03* X185992Y257581D03*X179425Y258100D03*X181008Y257547D03*X181975Y256534D03* X194902Y257581D03*X191932Y256591D03*X188962Y256591D03*X201832Y256621D03* X201832Y257581D03*X202822Y256591D03*X208762Y258485D03*X204065Y256850D03* X205091Y257685D03*X205851Y257848D03*X213713Y257722D03*X217270Y258310D03* X212945Y256927D03*X218130Y258330D03*X212863Y258547D03*X216650Y256790D03* X217670Y257270D03*X216510Y258500D03*X213394Y256256D03*X224758Y256250D03* X224283Y256850D03*X219147Y258213D03*X218765Y257145D03*X224753Y258750D03* X231937Y257149D03*X226583Y257760D03*X226583Y256520D03*X229293Y256119D03* X232248Y256364D03*X229468Y256879D03*X232350Y258620D03*X237200Y258326D03* X239220Y258300D03*X238200Y258280D03*X236200Y258300D03*X240211Y257311D03* X238200Y257300D03*X241188Y256293D03*X238200Y256300D03*X237200Y256300D03* X241200Y258300D03*X241200Y257300D03*X249200Y258300D03*X245200Y258300D03* X245200Y257300D03*X249200Y257300D03*X245200Y256300D03*X246200Y256300D03* X248200Y256300D03*X246200Y258300D03*X248200Y257300D03*X244200Y258300D03* X243200Y256300D03*X246200Y257300D03*X248200Y258300D03*X249200Y256300D03* X244200Y256300D03*X244200Y257300D03*X243208Y257307D03*X242200Y257300D03* X242200Y256300D03*X242216Y258284D03*X254200Y258300D03*X255200Y258300D03* X256200Y258300D03*X257200Y258300D03*X254200Y257300D03*X255200Y257300D03* X257200Y257300D03*X256200Y257300D03*X254200Y256300D03*X253200Y256300D03* X257200Y256300D03*X256200Y256300D03*X255200Y256300D03*X251200Y257300D03* X250200Y257300D03*X250200Y258300D03*X251200Y256300D03*X251200Y258300D03* X250200Y256300D03*X253200Y258300D03*X252200Y256300D03*X253200Y257300D03* X252200Y257300D03*X252200Y258300D03*X258200Y256300D03*X260200Y256300D03* X259200Y256300D03*X264685Y258700D03*X264685Y256165D03*X263925Y258180D03* X261234Y258700D03*X261234Y257700D03*X261234Y256700D03*X272124Y258571D03* X268164Y258571D03*X267174Y258571D03*X268164Y257581D03*X269350Y258510D03* X266184Y258571D03*X266180Y257110D03*X272775Y256800D03*X273114Y258571D03* X281543Y258510D03*X285910Y257900D03*X287810Y256223D03*X286720Y257920D03* X286960Y256240D03*X293548Y257060D03*X298990Y257000D03*X310935Y258060D03* X307235Y258571D03*X310935Y257060D03*X307360Y257750D03*X313705Y257581D03* X089500Y259000D03*X105900Y259280D03*X134257Y260665D03*X144470Y261500D03* X144425Y259500D03*X140451Y261450D03*X144425Y260500D03*X148000Y260410D03* X148000Y259105D03*X141975Y261500D03*X141975Y260500D03*X141975Y259500D03* X150351Y261003D03*X150564Y259229D03*X148800Y260452D03*X155851Y258965D03* X161886Y258968D03*X159265Y260665D03*X158885Y259970D03*X159220Y261770D03* X162138Y259928D03*X162881Y260628D03*X157336Y261140D03*X157546Y259530D03* X163740Y259480D03*X157406Y260370D03*X164119Y261289D03*X165302Y259965D03* X165210Y261450D03*X166527Y261443D03*X171520Y261230D03*X166552Y259689D03* X166552Y260453D03*X176975Y259561D03*X174846Y259463D03*X172280Y260547D03* X175102Y261541D03*X176201Y259260D03*X172100Y261725D03*X186514Y261078D03* X184012Y260551D03*X179425Y261600D03*X179515Y259040D03*X179575Y260810D03* X182032Y259100D03*X182032Y260600D03*X193912Y259561D03*X192907Y261541D03* X194102Y260348D03*X194902Y260056D03*X200896Y261746D03*X196666Y260434D03* X199852Y261661D03*X202300Y258965D03*X195892Y259561D03*X199140Y260610D03* X204300Y258965D03*X203311Y258954D03*X209425Y258990D03*X204272Y261541D03* X209717Y260551D03*X203300Y261541D03*X214703Y261541D03*X216300Y261585D03* X212965Y260563D03*X212885Y259750D03*X217500Y259065D03*X215100Y259015D03* X212853Y261485D03*X218210Y261541D03*X224894Y260711D03*X218500Y259065D03* X220285Y259800D03*X221147Y260035D03*X220643Y260800D03*X228320Y261800D03* X233035Y261100D03*X232179Y259470D03*X227408Y261273D03*X231290Y260120D03* X229479Y260595D03*X230386Y261131D03*X233632Y260110D03*X228630Y260790D03* X226583Y259500D03*X237200Y260300D03*X240200Y259300D03*X234200Y261300D03* X239200Y259300D03*X240220Y260300D03*X239200Y261320D03*X239200Y260300D03* X238200Y260300D03*X238200Y259300D03*X235200Y259300D03*X235200Y260300D03* X241200Y261300D03*X241196Y260310D03*X247216Y261316D03*X249169Y261300D03* X246200Y261300D03*X245200Y259300D03*X246200Y259300D03*X243200Y259300D03* X244200Y259300D03*X248200Y259300D03*X249200Y259300D03*X248193Y260308D03* X246200Y260300D03*X245200Y261300D03*X243200Y261300D03*X242200Y261300D03* X245200Y260300D03*X244200Y261300D03*X249205Y260321D03*X242200Y260300D03* X243200Y260300D03*X242200Y259300D03*X244200Y260300D03*X255200Y261300D03* X256200Y261300D03*X254200Y260300D03*X254200Y261300D03*X255200Y260300D03* X256200Y260300D03*X257200Y261300D03*X257200Y260300D03*X254200Y259300D03* X255200Y259300D03*X257200Y259300D03*X256200Y259300D03*X250200Y259300D03* X251200Y259300D03*X253200Y259331D03*X252189Y260320D03*X252228Y259296D03* X250200Y260321D03*X251200Y260305D03*X253200Y261290D03*X263214Y260551D03* X261234Y261800D03*X259200Y261300D03*X258200Y261300D03*X260200Y260300D03* X258200Y260300D03*X258200Y259300D03*X260200Y259300D03*X259184Y259284D03* X260200Y261300D03*X261234Y260551D03*X263214Y259561D03*X263925Y261800D03* X259200Y260300D03*X264775Y260350D03*X268164Y260551D03*X269575Y260350D03* X273114Y260551D03*X274104Y260551D03*X276675Y260650D03*X287863Y261185D03* X283250Y260360D03*X283014Y261541D03*X286974Y261541D03*X284990Y261660D03* X284710Y260900D03*X293775Y259060D03*X293660Y260060D03*X288853Y260060D03* X299120Y259220D03*X307235Y261541D03*X310935Y261060D03*X307235Y260551D03* X310935Y259840D03*X310935Y259060D03*X307235Y259561D03*X312715Y261541D03* X313705Y261541D03*X313705Y260551D03*X311725Y261541D03*X132823Y262525D03* X133265Y264400D03*X136335Y264400D03*X144490Y262500D03*X146391Y264511D03* X147710Y263920D03*X142050Y264510D03*X141975Y262500D03*X155785Y262436D03* X149361Y262531D03*X148371Y262531D03*X155025Y262700D03*X162460Y261860D03* X158688Y262777D03*X160622Y262481D03*X161612Y262530D03*X163376Y262091D03* X162950Y262920D03*X156796Y262462D03*X171526Y264527D03*X163980Y262680D03* X171035Y263265D03*X166476Y262804D03*X165328Y262975D03*X176975Y263700D03* X174766Y263789D03*X173074Y263063D03*X172132Y263521D03*X171894Y262501D03* X175980Y261928D03*X183954Y263789D03*X183954Y261996D03*X179425Y262600D03* X182032Y262531D03*X179425Y263700D03*X182576Y262000D03*X182587Y263400D03* X191503Y263334D03*X193780Y262180D03*X188962Y263673D03*X200695Y263731D03* X195577Y263108D03*X199852Y263754D03*X198986Y263731D03*X199993Y262994D03* X195922Y263850D03*X201512Y262484D03*X201832Y263850D03*X210171Y264588D03* X205032Y262075D03*X209325Y262531D03*X205814Y262075D03*X217960Y264047D03* X215310Y262850D03*X214620Y264182D03*X217103Y263361D03*X212853Y264182D03* X217643Y262501D03*X216440Y262800D03*X213812Y264281D03*X214527Y263350D03* X217200Y264182D03*X224630Y261920D03*X220995Y263091D03*X220657Y264111D03* X219593Y262531D03*X219762Y263653D03*X219002Y263720D03*X220977Y262000D03* X225735Y263950D03*X233035Y263100D03*X233035Y264100D03*X226730Y264000D03* X233035Y262320D03*X227665Y263950D03*X230543Y264380D03*X229544Y262100D03* X230543Y263100D03*X233824Y262382D03*X240200Y263300D03*X238200Y263300D03* X241200Y264300D03*X240200Y264300D03*X241200Y263300D03*X239200Y264300D03* X239200Y262300D03*X237200Y263300D03*X235200Y264300D03*X238180Y262289D03* X236200Y262300D03*X238200Y264300D03*X241200Y262300D03*X240200Y262300D03* X248200Y263300D03*X249200Y263300D03*X249200Y262300D03*X248200Y264300D03* X245200Y263300D03*X246200Y262300D03*X244200Y263300D03*X243200Y262300D03* X246200Y264300D03*X247169Y263300D03*X243200Y264300D03*X244200Y262300D03* X244200Y264300D03*X245200Y262300D03*X245200Y264300D03*X249200Y264300D03* X242200Y262300D03*X242200Y263300D03*X242200Y264300D03*X243200Y263300D03* X250200Y263300D03*X250200Y264300D03*X255200Y264300D03*X257200Y264300D03* X251200Y263300D03*X251200Y262300D03*X252200Y264300D03*X252200Y263300D03* X257200Y263300D03*X256200Y262300D03*X257200Y262300D03*X253181Y264304D03* X252200Y262300D03*X253200Y263300D03*X253200Y262300D03*X254200Y264300D03* X254200Y263300D03*X255200Y262300D03*X250200Y262300D03*X256200Y264300D03* X251200Y264300D03*X256200Y263300D03*X254200Y262300D03*X259200Y264300D03* X258200Y263300D03*X258200Y262300D03*X259200Y262300D03*X260200Y264300D03* X260200Y262300D03*X261234Y263521D03*X263565Y263100D03*X264775Y264350D03* X258200Y264300D03*X269575Y264350D03*X280871Y263358D03*X283177Y263358D03* X287839Y263715D03*X287620Y262060D03*X282024Y264256D03*X284004Y263521D03* X284994Y263521D03*X293225Y263060D03*X293775Y262060D03*X303369Y262507D03* X301745Y261838D03*X300834Y263521D03*X299614Y263060D03*X299455Y262007D03* X300247Y262098D03*X303015Y263762D03*X301824Y263521D03*X307730Y262531D03* X310935Y262840D03*X310935Y262060D03*X307235Y263765D03*X310925Y264060D03* X312715Y263521D03*X312715Y262531D03*X312715Y264511D03*X311725Y262531D03* X311725Y264511D03*X133380Y266633D03*X136491Y265290D03*X145401Y264945D03* X144425Y266600D03*X147380Y264730D03*X148000Y265455D03*X140451Y266610D03* X141975Y266610D03*X150268Y265103D03*X155301Y267435D03*X148835Y266570D03* X149290Y265790D03*X163340Y267481D03*X160863Y267309D03*X173262Y267036D03* X178072Y266695D03*X176975Y264700D03*X179575Y264950D03*X179575Y266150D03* X181042Y267025D03*X183535Y267150D03*X183655Y266270D03*X182047Y264682D03* X194345Y267470D03*X191123Y265210D03*X194902Y266521D03*X193882Y265337D03* X198600Y266215D03*X197607Y266157D03*X202385Y265675D03*X201290Y266325D03* X201186Y264971D03*X196055Y266975D03*X200401Y265488D03*X205700Y266900D03* X208716Y265885D03*X209709Y266894D03*X203716Y265916D03*X208670Y266898D03* X206720Y266900D03*X211700Y266900D03*X211670Y265901D03*X219665Y267335D03* X222459Y267310D03*X222623Y265501D03*X224690Y266165D03*X225770Y266275D03* X223699Y265819D03*X222346Y266458D03*X221587Y265522D03*X221687Y267329D03* X227573Y265501D03*X233513Y266491D03*X233035Y265894D03*X226583Y265501D03* X233058Y265123D03*X233035Y267100D03*X229967Y265685D03*X230217Y266470D03* X226583Y266275D03*X241200Y267300D03*X240200Y265300D03*X239200Y266300D03* X241200Y265300D03*X240200Y266300D03*X236180Y265300D03*X236198Y267319D03* X237200Y265300D03*X236200Y266300D03*X238200Y265300D03*X240200Y267300D03* X241200Y266300D03*X237200Y266320D03*X238200Y266300D03*X239200Y265300D03* X248200Y265300D03*X248200Y266300D03*X249200Y266300D03*X249200Y265300D03* X244200Y265300D03*X243200Y267300D03*X245200Y267300D03*X246200Y265300D03* X242200Y267300D03*X246200Y267300D03*X243200Y266300D03*X245200Y265300D03* X242200Y266300D03*X243200Y265300D03*X245200Y266300D03*X242200Y265300D03* X250200Y265300D03*X251210Y267290D03*X257200Y266300D03*X253200Y267300D03* X252200Y266300D03*X252200Y265300D03*X253200Y266300D03*X254200Y267300D03* X254200Y266300D03*X253200Y265300D03*X254200Y265300D03*X255200Y265300D03* X255210Y267300D03*X255200Y266300D03*X256200Y266300D03*X251200Y265300D03* X252200Y267300D03*X257190Y265300D03*X251200Y266300D03*X263214Y267481D03* X260200Y265300D03*X261234Y265501D03*X259200Y265300D03*X263214Y265501D03* X258200Y265300D03*X258195Y266295D03*X264204Y265501D03*X269810Y267310D03* X271134Y267481D03*X269154Y265501D03*X276675Y266750D03*X283490Y267000D03* X286790Y266500D03*X287620Y265060D03*X281034Y266491D03*X293775Y265045D03* X293225Y266060D03*X302900Y265510D03*X300290Y266170D03*X298854Y267060D03* X299470Y266470D03*X310925Y265060D03*X310925Y266325D03*X311265Y267060D03* X089865Y269450D03*X089865Y268050D03*X096835Y269450D03*X096835Y268050D03* X136575Y270100D03*X145310Y268580D03*X144411Y270100D03*X141975Y267600D03* X153860Y268459D03*X154539Y269164D03*X150050Y267950D03*X151451Y268867D03* X153058Y268468D03*X154230Y267660D03*X149505Y268600D03*X152220Y268440D03* X150850Y268310D03*X157197Y269410D03*X159380Y269692D03*X163665Y269264D03* X162020Y267620D03*X156316Y268810D03*X158397Y268758D03*X160450Y268015D03* X156408Y269577D03*X160578Y268894D03*X162945Y269800D03*X162945Y268528D03* X157188Y267506D03*X157380Y268280D03*X158512Y269778D03*X161473Y268159D03* X159484Y268591D03*X164275Y268471D03*X167965Y270193D03*X167225Y268013D03* X169390Y267548D03*X166192Y269461D03*X165138Y269215D03*X164666Y267604D03* X169366Y269096D03*X164049Y270254D03*X167779Y268615D03*X168348Y267526D03* X167182Y269461D03*X169975Y268612D03*X176461Y268355D03*X177751Y268471D03* X173022Y268251D03*X172132Y269326D03*X176153Y269240D03*X186785Y268305D03* X186982Y269575D03*X184065Y270052D03*X179575Y268895D03*X182052Y269935D03* X183565Y268430D03*X194154Y269081D03*X191229Y270210D03*X187966Y267595D03* X190942Y267670D03*X188002Y269520D03*X187206Y267560D03*X194170Y269975D03* X195466Y269187D03*X199459Y269285D03*X202521Y269881D03*X195047Y268199D03* X196094Y269969D03*X195976Y268501D03*X199821Y267676D03*X195069Y269918D03* X199954Y268696D03*X201325Y269881D03*X200648Y267643D03*X203700Y268920D03* X204691Y267891D03*X203700Y267900D03*X205700Y268900D03*X204711Y268911D03* X207700Y269900D03*X208700Y268900D03*X205700Y269900D03*X209700Y269900D03* X208700Y269900D03*X209700Y268900D03*X206700Y268900D03*X205700Y267900D03* X217712Y269881D03*X216700Y267900D03*X216700Y269900D03*X215700Y269900D03* X216700Y268900D03*X215700Y268900D03*X214700Y267900D03*X211700Y267900D03* X217698Y267898D03*X214700Y269900D03*X213700Y269900D03*X213690Y267921D03* X212700Y268900D03*X211700Y268900D03*X212700Y269900D03*X211700Y269900D03* X215700Y267900D03*X214700Y268900D03*X219070Y270020D03*X224335Y269600D03* X231533Y268678D03*X232897Y269611D03*X227425Y269461D03*X226335Y269665D03* X230543Y269500D03*X230217Y267566D03*X237200Y268300D03*X238200Y268300D03* X239610Y268965D03*X237610Y268965D03*X236483Y268965D03*X234503Y269700D03* X238695Y268965D03*X240610Y268965D03*X234200Y268300D03*X239200Y268300D03* X241200Y268300D03*X248173Y268471D03*X242193Y268965D03*X246383Y268471D03* X247373Y268471D03*X245393Y268520D03*X244403Y269375D03*X243413Y269375D03* X246075Y270100D03*X247373Y269700D03*X250186Y268314D03*X253141Y268327D03* X254200Y268520D03*X255200Y268520D03*X256200Y268300D03*X257200Y268440D03* X263214Y269461D03*X258263Y269461D03*X260200Y268300D03*X259253Y268471D03* X261234Y268471D03*X269154Y268471D03*X265865Y269200D03*X267532Y267900D03* X268164Y268471D03*X270144Y268471D03*X286630Y267825D03*X284004Y269461D03* X293650Y269060D03*X293775Y268060D03*X298910Y269820D03*X299334Y269106D03* X301370Y268340D03*X301375Y268345D03*X301590Y270130D03*X303120Y269480D03* X310935Y269060D03*X310935Y268060D03*X307380Y270100D03*X312715Y268471D03* X311725Y268471D03*X134500Y271500D03*X159261Y272431D03*X164500Y273000D03* X170152Y272431D03*X169162Y270451D03*X171663Y270795D03*X173122Y270451D03* X174402Y271181D03*X180052Y271441D03*X186785Y270855D03*X184065Y271480D03* X186785Y271921D03*X183434Y272941D03*X183174Y270603D03*X182574Y273081D03* X190789Y271230D03*X188066Y271615D03*X190546Y272406D03*X188285Y273200D03* X190016Y270561D03*X202587Y272013D03*X196965Y273062D03*X195231Y273043D03* X201901Y270901D03*X201374Y271964D03*X202209Y272800D03*X205684Y271885D03* X204700Y271900D03*X203700Y271900D03*X208700Y270900D03*X209700Y270900D03* X209700Y271900D03*X208700Y271900D03*X203700Y270900D03*X207700Y271900D03* X207700Y270900D03*X206700Y271900D03*X217700Y270900D03*X215700Y272931D03* X216700Y272931D03*X217700Y271900D03*X216700Y271900D03*X214703Y272877D03* X216700Y270900D03*X215700Y270900D03*X214700Y270900D03*X212700Y270900D03* X211700Y271900D03*X211700Y270900D03*X212700Y271900D03*X214700Y271900D03* X213700Y271900D03*X213700Y270900D03*X220539Y273084D03*X218807Y272813D03* X219164Y271031D03*X225406Y270451D03*X224335Y270600D03*X221342Y272783D03* X219759Y272891D03*X221698Y271375D03*X219175Y271791D03*X232897Y271389D03* X230895Y272431D03*X232523Y272431D03*X230135Y272350D03*X226426Y270498D03* X227186Y270451D03*X230543Y270900D03*X233215Y272900D03*X237000Y272165D03* X238100Y272165D03*X239100Y272165D03*X240100Y272165D03*X241100Y272165D03* X235000Y272165D03*X236000Y272165D03*X238451Y271441D03*X237351Y271441D03* X236351Y271441D03*X241451Y271441D03*X234503Y270700D03*X239451Y271441D03* X240451Y271441D03*X246383Y272431D03*X248363Y271441D03*X247373Y272431D03* X249363Y271590D03*X246075Y271100D03*X247373Y270700D03*X242525Y271441D03* X244300Y271825D03*X248363Y272431D03*X242100Y272165D03*X244885Y272900D03* X243080Y272165D03*X253313Y272431D03*X251333Y271441D03*X250300Y271936D03* X251333Y272431D03*X263665Y270500D03*X258263Y272665D03*X257273Y272665D03* X271110Y270480D03*X265865Y270600D03*X275230Y270500D03*X284994Y272431D03* X283190Y270630D03*X286974Y273060D03*X284880Y270530D03*X290075Y271060D03* X289315Y272285D03*X288475Y272285D03*X290075Y272285D03*X303128Y272140D03* X298854Y272415D03*X301837Y271988D03*X300640Y271980D03*X300834Y270451D03* X297130Y271150D03*X303690Y272815D03*X307235Y273065D03*X310935Y273060D03* X310935Y272060D03*X307235Y272060D03*X307764Y271060D03*X304065Y271060D03* X311725Y271441D03*X087500Y274500D03*X089865Y274950D03*X096665Y273950D03* X097035Y274900D03*X105000Y274000D03*X121000Y275000D03*X136491Y274100D03* X144300Y274100D03*X150351Y273421D03*X153321Y274150D03*X154900Y274310D03* X152775Y275150D03*X154925Y275150D03*X150125Y275150D03*X163222Y273421D03* X160875Y274250D03*X161160Y273340D03*X161375Y275650D03*X169162Y275650D03* X167790Y275830D03*X169162Y274250D03*X168172Y273421D03*X167625Y274825D03* X165202Y273421D03*X173075Y275700D03*X184065Y274101D03*X186785Y274020D03* X186982Y275290D03*X181042Y275750D03*X181042Y274750D03*X183535Y275750D03* X189922Y273245D03*X191415Y273364D03*X190569Y274041D03*X190587Y275010D03* X191415Y275290D03*X194575Y275925D03*X187422Y275925D03*X187422Y274655D03* X194300Y273410D03*X201832Y274284D03*X202700Y273900D03*X202621Y274920D03* X200261Y275743D03*X201325Y273620D03*X195892Y275725D03*X196294Y273466D03* X201144Y275574D03*X201904Y275430D03*X205700Y273900D03*X204700Y273900D03* X203720Y273900D03*X209700Y274880D03*X209700Y273900D03*X208700Y273900D03* X208700Y274900D03*X205700Y274931D03*X203700Y274900D03*X207700Y273900D03* X209700Y275900D03*X208700Y275900D03*X207700Y274900D03*X206700Y273900D03* X217692Y275900D03*X215700Y275900D03*X216700Y275900D03*X214700Y275900D03* X214700Y274900D03*X215700Y274900D03*X216700Y274900D03*X211700Y274900D03* X211700Y273900D03*X212700Y273900D03*X212700Y274900D03*X217700Y274869D03* X212700Y275900D03*X211700Y275900D03*X214700Y273900D03*X213700Y273900D03* X213700Y274900D03*X220289Y273929D03*X218920Y274680D03*X218700Y275900D03* X221548Y275141D03*X218720Y273890D03*X221775Y273770D03*X224765Y275785D03* X219690Y274779D03*X229553Y275401D03*X230543Y275401D03*X232523Y273421D03* X231533Y273421D03*X227235Y275400D03*X233215Y273900D03*X227995Y275325D03* X236939Y275404D03*X236016Y274678D03*X241120Y274635D03*X235000Y274635D03* X238100Y274635D03*X240100Y274635D03*X236961Y274644D03*X239100Y274635D03* X237865Y275800D03*X243965Y275500D03*X246500Y274565D03*X248363Y274411D03* X249035Y275500D03*X242423Y275401D03*X246383Y273421D03*X244885Y273900D03* X242100Y274635D03*X243100Y274635D03*X247373Y274411D03*X247373Y273421D03* X255293Y275401D03*X253313Y273421D03*X255293Y274400D03*X257100Y275135D03* X255293Y273400D03*X259253Y275401D03*X262600Y276035D03*X264935Y275100D03* X259885Y274400D03*X258100Y275135D03*X263225Y273300D03*X260244Y273400D03* X269154Y273421D03*X265175Y273300D03*X280044Y273421D03*X287723Y274060D03* X287723Y275060D03*X293225Y275968D03*X297540Y274285D03*X298165Y273835D03* X300565Y275832D03*X301835Y275832D03*X310937Y275494D03*X310935Y274500D03* X303985Y273650D03*X303985Y275050D03*X312715Y274411D03*X311725Y275060D03* X311725Y273421D03*X089865Y276350D03*X130300Y276200D03*X130300Y277800D03* X154311Y278371D03*X155301Y277381D03*X157281Y276391D03*X171112Y278680D03* X171142Y276391D03*X173000Y278881D03*X173122Y277964D03*X172132Y278371D03* X174112Y277381D03*X182700Y278635D03*X183970Y278635D03*X186510Y278635D03* X187972Y277381D03*X194135Y276560D03*X194575Y277195D03*X187561Y278087D03* X191932Y278700D03*X201075Y276377D03*X199435Y277750D03*X195367Y276784D03* X195015Y277830D03*X196365Y276784D03*X199435Y276238D03*X200700Y278700D03* X196365Y277750D03*X205700Y278900D03*X209700Y277900D03*X204700Y277900D03* X205700Y276900D03*X204700Y276900D03*X206700Y277900D03*X207700Y277900D03* X207700Y278900D03*X207700Y276900D03*X208680Y277900D03*X208700Y278900D03* X204700Y278900D03*X208680Y276900D03*X206700Y278900D03*X209700Y276900D03* X206700Y276900D03*X205700Y277900D03*X210669Y278900D03*X217680Y278900D03* X215700Y276890D03*X216723Y276900D03*X215700Y278900D03*X210681Y277895D03* X211700Y277900D03*X214700Y277900D03*X216700Y277900D03*X212700Y278900D03* X212700Y277900D03*X213700Y276900D03*X213700Y278900D03*X213700Y277900D03* X217700Y277900D03*X216720Y278900D03*X214700Y278900D03*X212700Y276900D03* X211700Y276900D03*X214711Y276890D03*X219653Y276391D03*X218700Y278900D03* X218700Y277880D03*X218700Y276890D03*X224681Y276966D03*X219653Y277351D03* X224765Y278205D03*X222165Y278371D03*X228989Y277131D03*X230543Y276391D03* X227995Y277365D03*X227235Y276700D03*X228479Y276418D03*X231075Y278300D03* X229650Y276391D03*X230035Y278300D03*X234503Y276391D03*X236483Y276391D03* X238463Y277510D03*X236483Y277611D03*X237549Y277510D03*X241433Y276391D03* X236025Y278300D03*X249353Y277381D03*X245393Y277381D03*X247373Y276391D03* X243413Y277381D03*X243413Y276391D03*X242423Y278371D03*X246775Y277950D03* X250343Y277381D03*X252675Y277450D03*X258263Y276391D03*X258263Y277381D03* X259253Y278371D03*X265194Y276391D03*X268164Y276391D03*X266175Y278350D03* X287459Y277060D03*X287964Y276060D03*X289745Y277835D03*X293225Y278060D03* X296925Y277060D03*X298543Y276845D03*X307534Y278446D03*X307235Y277325D03* X314222Y278500D03*X093365Y281750D03*X087065Y281550D03*X091165Y280800D03* X088515Y280550D03*X090085Y281550D03*X096565Y280850D03*X105000Y280500D03* X155301Y279361D03*X164212Y281341D03*X166192Y280351D03*X173075Y280500D03* X178890Y280565D03*X172132Y279391D03*X180160Y280351D03*X185992Y279361D03* X188962Y280351D03*X187175Y279100D03*X189675Y280713D03*X199435Y279206D03* X199958Y281481D03*X195892Y280351D03*X199454Y280910D03*X201075Y279400D03* X201075Y280400D03*X196882Y280400D03*X196365Y279150D03*X196365Y281600D03* X200018Y280400D03*X204700Y279900D03*X205700Y279900D03*X209700Y280900D03* X206700Y279900D03*X206700Y280900D03*X207700Y279900D03*X207700Y280900D03* X208700Y279900D03*X204700Y281120D03*X203700Y279900D03*X205700Y280900D03* X209700Y279900D03*X208700Y280900D03*X209200Y281675D03*X203700Y280900D03* X206200Y281575D03*X208200Y281675D03*X207325Y281675D03*X216720Y279900D03* X215700Y279900D03*X211705Y280895D03*X212700Y279900D03*X213700Y280900D03* X213700Y279900D03*X214700Y280900D03*X214680Y279900D03*X217700Y279900D03* X212766Y280966D03*X217700Y280900D03*X210652Y281599D03*X215691Y281672D03* X218700Y279920D03*X219653Y280700D03*X219653Y279710D03*X222165Y279520D03* X224635Y279485D03*X222065Y280600D03*X225593Y279485D03*X230543Y281341D03* X227995Y279235D03*X227573Y280351D03*X227235Y279235D03*X231075Y279900D03* X241433Y280351D03*X236483Y281341D03*X234503Y280351D03*X240443Y279361D03* X236625Y279900D03*X248363Y281341D03*X249353Y281341D03*X242423Y281341D03* X256283Y281341D03*X253313Y279361D03*X252323Y279361D03*X254303Y281341D03* X253313Y281341D03*X257273Y279361D03*X272124Y281341D03*X281034Y279361D03* X288175Y280432D03*X287712Y281582D03*X287620Y278982D03*X287356Y280592D03* X293720Y279852D03*X293225Y280432D03*X297948Y279910D03*X299358Y280802D03* X299730Y279730D03*X302803Y280316D03*X301175Y279967D03*X296925Y280060D03* X298865Y278988D03*X300565Y280912D03*X304065Y280700D03*X307235Y281060D03* X310935Y281060D03*X307235Y280060D03*X310935Y280060D03*X311456Y279507D03* X307302Y279300D03*X311725Y281341D03*X089300Y283685D03*X096935Y281800D03* X120500Y283000D03*X136000Y283000D03*X151341Y284311D03*X175511Y283001D03* X173122Y283321D03*X189675Y282700D03*X200842Y284311D03*X200181Y282660D03* X200842Y283091D03*X196882Y282880D03*X196882Y283800D03*X199435Y283060D03* X208109Y284193D03*X207200Y284397D03*X204000Y283800D03*X203939Y282536D03* X217673Y284311D03*X216683Y284125D03*X215565Y284519D03*X225593Y283321D03* X223300Y284475D03*X225183Y282345D03*X218663Y284311D03*X219653Y283321D03* X224900Y284475D03*X219630Y282000D03*X224603Y282900D03*X224603Y281850D03* X222065Y281850D03*X219125Y282774D03*X222065Y282900D03*X226583Y282331D03* X231075Y282300D03*X227573Y282331D03*X228900Y284475D03*X227300Y284475D03* X229700Y284475D03*X236483Y284311D03*X238463Y282331D03*X249353Y283321D03* X248363Y283321D03*X251333Y283321D03*X250343Y283321D03*X252675Y283550D03* X266175Y284450D03*X287605Y282692D03*X288475Y283835D03*X290075Y284285D03* X289270Y284190D03*X298198Y282839D03*X296925Y282839D03*X307764Y284311D03* X307764Y283060D03*X304065Y282060D03*X310935Y282060D03*X311725Y283321D03* X313705Y282331D03*X087490Y285190D03*X105000Y285500D03*X190942Y286291D03* X189952Y285301D03*X191932Y287281D03*X193300Y284875D03*X194900Y284875D03* X195700Y284875D03*X201935Y286550D03*X197300Y284875D03*X199700Y284815D03* X198900Y284875D03*X202822Y285071D03*X207858Y286774D03*X208417Y286258D03* X202822Y286291D03*X209881Y285820D03*X209030Y285404D03*X206782Y286291D03* X205785Y284815D03*X209434Y287281D03*X209752Y284800D03*X203360Y287450D03* X203865Y286550D03*X216125Y286291D03*X215103Y286256D03*X214854Y285038D03* X215584Y285557D03*X222623Y287281D03*X218985Y287185D03*X223457Y286725D03* X223923Y287333D03*X219165Y286170D03*X218975Y285301D03*X233513Y285301D03* X231025Y287200D03*X242423Y285301D03*X252323Y286291D03*X255293Y287281D03* X254303Y287281D03*X255293Y285301D03*X256283Y285301D03*X257273Y285301D03* X258263Y285301D03*X270635Y286800D03*X265065Y286800D03*X289025Y285835D03* X288785Y286994D03*X293765Y287060D03*X298483Y286291D03*X299365Y286250D03* X296925Y286060D03*X303485Y286250D03*X307764Y285301D03*X304065Y287060D03* X307225Y286060D03*X310925Y286060D03*X195550Y288850D03*X200725Y288850D03* X202041Y288187D03*X209337Y288486D03*X210025Y287765D03*X208957Y289180D03* X218835Y289120D03*X219659Y288544D03*X225346Y288285D03*X218975Y287980D03* X231025Y289170D03*X232943Y288600D03*X226375Y288600D03*X244403Y288271D03* X265065Y288300D03*X290075Y288344D03*X289830Y287584D03*D02*G54D128* X090800Y222650D03*X093340Y222650D03*X095880Y222650D03*X098420Y222650D03* X090800Y229550D03*X093340Y229550D03*X095880Y229550D03*X098420Y229550D03* X090800Y271350D03*X093340Y271350D03*X095880Y271350D03*X098420Y271350D03* X090800Y278150D03*X093340Y278150D03*X095880Y278150D03*X098420Y278150D03* X090800Y285150D03*X093340Y285150D03*X095880Y285150D03*X098420Y285150D03*D02* G54D129*X089500Y237100D03*X091500Y237100D03*X093500Y237100D03*X087500Y237100D03* X095500Y237100D03*X097500Y237100D03*X099500Y237100D03*X101500Y237100D03* X089500Y239100D03*X091500Y239100D03*X093500Y239100D03*X087500Y239100D03* X095500Y239100D03*X097500Y239100D03*X099500Y239100D03*X101500Y239100D03* X089500Y241100D03*X091500Y241100D03*X093500Y241100D03*X087500Y241100D03* X095500Y241100D03*X097500Y241100D03*X099500Y241100D03*X101500Y241100D03* X089500Y245100D03*X089500Y243100D03*X091500Y245100D03*X091500Y243100D03* X093500Y245100D03*X093500Y243100D03*X087500Y245100D03*X087500Y243100D03* X095500Y245100D03*X095500Y243100D03*X097500Y245100D03*X097500Y243100D03* X099500Y245100D03*X099500Y243100D03*X101500Y245100D03*X101500Y243100D03* X089500Y247100D03*X091500Y247100D03*X093500Y247100D03*X087500Y247100D03* X095500Y247100D03*X097500Y247100D03*X099500Y247100D03*X101500Y247100D03* X089500Y251100D03*X089500Y249100D03*X091500Y251100D03*X091500Y249100D03* X093500Y251100D03*X093500Y249100D03*X087500Y251100D03*X087500Y249100D03* X095500Y251100D03*X095500Y249100D03*X097500Y251100D03*X097500Y249100D03* X099500Y251100D03*X099500Y249100D03*X101500Y251100D03*X101500Y249100D03* X089500Y253100D03*X091500Y253100D03*X093500Y253100D03*X087500Y253100D03* X095500Y253100D03*X097500Y253100D03*X099500Y253100D03*X101500Y253100D03* X087500Y255100D03*X089500Y255100D03*X091500Y255100D03*X093500Y255100D03* X095500Y255100D03*X097500Y255100D03*X099500Y255100D03*X101500Y255100D03*D02* G54D130*X110460Y220460D03*X115540Y220460D03*X125460Y220460D03*X130540Y220460D03* X140460Y220460D03*X145540Y220460D03*X152460Y220460D03*X157540Y220460D03* X110460Y225540D03*X115540Y225540D03*X125460Y225540D03*X130540Y225540D03* X140460Y225540D03*X145540Y225540D03*X152460Y225540D03*X157540Y225540D03* X110460Y232460D03*X115540Y232460D03*X125460Y232460D03*X130540Y232460D03* X110460Y237540D03*X115540Y237540D03*X125460Y237540D03*X130540Y237540D03* X110460Y244460D03*X115540Y244460D03*X125460Y244460D03*X130540Y244460D03* X110460Y249540D03*X115540Y249540D03*X125460Y249540D03*X130540Y249540D03* X110460Y256460D03*X115540Y256460D03*X125460Y256460D03*X130540Y256460D03* X110460Y261540D03*X115540Y261540D03*X125460Y261540D03*X130540Y261540D03* X110460Y268460D03*X115540Y268460D03*X125460Y268460D03*X130540Y268460D03* X110460Y273540D03*X115540Y273540D03*X125460Y273540D03*X130540Y273540D03* X110460Y280460D03*X115540Y280460D03*X125460Y280460D03*X130540Y280460D03* X141460Y280460D03*X146540Y280460D03*X153460Y280560D03*X158540Y280560D03* X110460Y285540D03*X115540Y285540D03*X125460Y285540D03*X130540Y285540D03* X141460Y285540D03*X146540Y285540D03*X153460Y285640D03*X158540Y285640D03*D02* G54D131*X255840Y219550D03*X253300Y219550D03*X250760Y219550D03*X113000Y223000D03* X128000Y223000D03*X143000Y223000D03*X155000Y223000D03*X113000Y235000D03* X128000Y235000D03*X113000Y247000D03*X128000Y247000D03*X277500Y254300D03* X277500Y251760D03*X277500Y256840D03*X113000Y259000D03*X128000Y259000D03* X113000Y271000D03*X128000Y271000D03*X113000Y283000D03*X128000Y283000D03* X144000Y283000D03*X156000Y283100D03*X245060Y286250D03*X247600Y286250D03* X250140Y286250D03*D02*G54D132*X208900Y221510D03*X208900Y224050D03* X283200Y226100D03*X285700Y226100D03*X283200Y228640D03*X285700Y228640D03* X283200Y231180D03*X285700Y231180D03*X156940Y233600D03*X154400Y233600D03* X280300Y233050D03*X283200Y233720D03*X285700Y233720D03*X156940Y236100D03* X154400Y236100D03*X273660Y235400D03*X276200Y235400D03*X280300Y235590D03* X283200Y236260D03*X285700Y236260D03*X300400Y234860D03*X179160Y239220D03* X181700Y239220D03*X283200Y238800D03*X285700Y238800D03*X300400Y237400D03* X179160Y241760D03*X181700Y241760D03*X283200Y241340D03*X285700Y241340D03* X179160Y244300D03*X181700Y244300D03*X283200Y243880D03*X285700Y243880D03* X300400Y244460D03*X283200Y246420D03*X285700Y246420D03*X300400Y247000D03* X312800Y253720D03*X312800Y256260D03*X197810Y259850D03*X197810Y257350D03* X200350Y259850D03*X200350Y257350D03*X312800Y258800D03*X312800Y269700D03* X285550Y273880D03*X283010Y273880D03*X312800Y272240D03*X250260Y275000D03* X252800Y275000D03*X285550Y276420D03*X283010Y276420D03*X285550Y278960D03* X283010Y278960D03*X170740Y281100D03*X168200Y281100D03*X285550Y281500D03* X283010Y281500D03*X297960Y288100D03*X300500Y288100D03*D02*G54D133* X276050Y222100D03*X276050Y227100D03*X226600Y232200D03*X231600Y232200D03* X189100Y240135D03*X189100Y242675D03*X189100Y245215D03*X189100Y247755D03* X189100Y250295D03*X189100Y267035D03*X189100Y269575D03*X189100Y272115D03* X189100Y274655D03*X275700Y276250D03*X189100Y277195D03*X275700Y281250D03*D02* G54D134*X153071Y254240D02*X153151Y254160D01*X153151Y254160D02*X153760Y254160D01* X153760Y254160D02*X153760Y254136D01*X153760Y254136D02*X153864Y254240D01* X153864Y254240D02*X153840Y254240D01*X153840Y254240D02*X153840Y254929D01* X153840Y254929D02*X153760Y254849D01*X153760Y254849D02*X153760Y254240D01* X153760Y254240D02*X153071Y254240D01*X152900Y258160D02*X153529Y258160D01* X153529Y258160D02*X153449Y258240D01*X153449Y258240D02*X152900Y258240D01* X152900Y258240D02*X152900Y258160D01*X166883Y264160D02*X167742Y264160D01* X167742Y264160D02*X167840Y264258D01*X167840Y264258D02*X167840Y265160D01* X167840Y265160D02*X168738Y265160D01*X168738Y265160D02*X168840Y265263D01* X168840Y265263D02*X168840Y265818D01*X168840Y265818D02*X168760Y265738D01* X168760Y265738D02*X168760Y265240D01*X168760Y265240D02*X167858Y265240D01* X167858Y265240D02*X167760Y265142D01*X167760Y265142D02*X167760Y264240D01* X167760Y264240D02*X166963Y264240D01*X166963Y264240D02*X166883Y264160D01* X168760Y263551D02*X168840Y263471D01*X168840Y263471D02*X168840Y263965D01* X168840Y263965D02*X168760Y263965D01*X168760Y263965D02*X168760Y263551D01* X142860Y244346D02*X143140Y244346D01*X143140Y244346D02*X143140Y245249D01* X143140Y245249D02*X142860Y245529D01*X142860Y245529D02*X142860Y244346D01* X167736Y253240D02*X167840Y253136D01*X167840Y253136D02*X167840Y253160D01* X167840Y253160D02*X168760Y253160D01*X168760Y253160D02*X168760Y252551D01* X168760Y252551D02*X168840Y252471D01*X168840Y252471D02*X168840Y253160D01* X168840Y253160D02*X169760Y253160D01*X169760Y253160D02*X169760Y252791D01* X169760Y252791D02*X169840Y252871D01*X169840Y252871D02*X169840Y253160D01* X169840Y253160D02*X170760Y253160D01*X170760Y253160D02*X170760Y252920D01* X170760Y252920D02*X171250Y252920D01*X171250Y252920D02*X171250Y253013D01* X171250Y253013D02*X171232Y253013D01*X171232Y253013D02*X170780Y253465D01* X170780Y253465D02*X170760Y253465D01*X170760Y253465D02*X170760Y253240D01* X170760Y253240D02*X169840Y253240D01*X169840Y253240D02*X169840Y253908D01* X169840Y253908D02*X169760Y253828D01*X169760Y253828D02*X169760Y253240D01* X169760Y253240D02*X168840Y253240D01*X168840Y253240D02*X168840Y253980D01* X168840Y253980D02*X168760Y253980D01*X168760Y253980D02*X168760Y253240D01* X168760Y253240D02*X167840Y253240D01*X167840Y253240D02*X167840Y253465D01* X167840Y253465D02*X167760Y253465D01*X167760Y253465D02*X167760Y253240D01* X167760Y253240D02*X167736Y253240D01*X162050Y264160D02*X162760Y264160D01* X162760Y264160D02*X162760Y263240D01*X162760Y263240D02*X162520Y263240D01* X162520Y263240D02*X162520Y263089D01*X162520Y263089D02*X162598Y263011D01* X162598Y263011D02*X162598Y262963D01*X162598Y262963D02*X162680Y262881D01* X162680Y262881D02*X162680Y262345D01*X162680Y262345D02*X162891Y262345D01* X162891Y262345D02*X162891Y262576D01*X162891Y262576D02*X163250Y262576D01* X163250Y262576D02*X163250Y263039D01*X163250Y263039D02*X163080Y263209D01* X163080Y263209D02*X163080Y263240D01*X163080Y263240D02*X162840Y263240D01* X162840Y263240D02*X162840Y264160D01*X162840Y264160D02*X163600Y264160D01* X163600Y264160D02*X163600Y264240D01*X163600Y264240D02*X162840Y264240D01* X162840Y264240D02*X162840Y264639D01*X162840Y264639D02*X162760Y264559D01* X162760Y264559D02*X162760Y264240D01*X162760Y264240D02*X162050Y264240D01* X162050Y264240D02*X162050Y264160D01*X162736Y250160D02*X162760Y250160D01* X162760Y250160D02*X162760Y249551D01*X162760Y249551D02*X162840Y249471D01* X162840Y249471D02*X162840Y250160D01*X162840Y250160D02*X163760Y250160D01* X163760Y250160D02*X163760Y249920D01*X163760Y249920D02*X163840Y249920D01* X163840Y249920D02*X163840Y250160D01*X163840Y250160D02*X164565Y250160D01* X164565Y250160D02*X164565Y250240D01*X164565Y250240D02*X163840Y250240D01* X163840Y250240D02*X163840Y250821D01*X163840Y250821D02*X163760Y250821D01* X163760Y250821D02*X163760Y250240D01*X163760Y250240D02*X162840Y250240D01* X162840Y250240D02*X162840Y250264D01*X162840Y250264D02*X162736Y250160D01* X165093Y250240D02*X165173Y250160D01*X165173Y250160D02*X165760Y250160D01* X165760Y250160D02*X165760Y250136D01*X165760Y250136D02*X165864Y250240D01* X165864Y250240D02*X165840Y250240D01*X165840Y250240D02*X165840Y251160D01* X165840Y251160D02*X165927Y251160D01*X165927Y251160D02*X165341Y251746D01* X165341Y251746D02*X165341Y251796D01*X165341Y251796D02*X165321Y251816D01* X165321Y251816D02*X165321Y251423D01*X165321Y251423D02*X165358Y251423D01* X165358Y251423D02*X165520Y251261D01*X165520Y251261D02*X165520Y251160D01* X165520Y251160D02*X165760Y251160D01*X165760Y251160D02*X165760Y250240D01* X165760Y250240D02*X165093Y250240D01*X153071Y257240D02*X153151Y257160D01* X153151Y257160D02*X153760Y257160D01*X153760Y257160D02*X153760Y256471D01* X153760Y256471D02*X153840Y256551D01*X153840Y256551D02*X153840Y257160D01* X153840Y257160D02*X154760Y257160D01*X154760Y257160D02*X154760Y256920D01* X154760Y256920D02*X156505Y256920D01*X156505Y256920D02*X156505Y257185D01* X156505Y257185D02*X157475Y257185D01*X157475Y257185D02*X157475Y256420D01* X157475Y256420D02*X157636Y256420D01*X157636Y256420D02*X157909Y256693D01* X157909Y256693D02*X158583Y256693D01*X158583Y256693D02*X158583Y256958D01* X158583Y256958D02*X159553Y256958D01*X159553Y256958D02*X159553Y255988D01* X159553Y255988D02*X159165Y255988D01*X159165Y255988D02*X159429Y255724D01* X159429Y255724D02*X159711Y255724D01*X159711Y255724D02*X159822Y255614D01* X159822Y255614D02*X160460Y255614D01*X160460Y255614D02*X160460Y254644D01* X160460Y254644D02*X159567Y254644D01*X159567Y254644D02*X159567Y254043D01* X159567Y254043D02*X159535Y254011D01*X159535Y254011D02*X160062Y254011D01* X160062Y254011D02*X160062Y254092D01*X160062Y254092D02*X161032Y254092D01* X161032Y254092D02*X161032Y253122D01*X161032Y253122D02*X160782Y253122D01* X160782Y253122D02*X160782Y252775D01*X160782Y252775D02*X161389Y252775D01* X161389Y252775D02*X161389Y252968D01*X161389Y252968D02*X162285Y252968D01* X162285Y252968D02*X162285Y253116D01*X162285Y253116D02*X163255Y253116D01* X163255Y253116D02*X163255Y252146D01*X163255Y252146D02*X163046Y252146D01* X163046Y252146D02*X163087Y252104D01*X163087Y252104D02*X163087Y251163D01* X163087Y251163D02*X163084Y251160D01*X163084Y251160D02*X163381Y251160D01* X163381Y251160D02*X163381Y251791D01*X163381Y251791D02*X164351Y251791D01* X164351Y251791D02*X164351Y252072D01*X164351Y252072D02*X165065Y252072D01* X165065Y252072D02*X165045Y252092D01*X165045Y252092D02*X165021Y252092D01* X165021Y252092D02*X164501Y252612D01*X164501Y252612D02*X163842Y252612D01* X163842Y252612D02*X163842Y253384D01*X163842Y253384D02*X163528Y253384D01* X163528Y253384D02*X163374Y253538D01*X163374Y253538D02*X163369Y253538D01* X163369Y253538D02*X163369Y253288D01*X163369Y253288D02*X162399Y253288D01* X162399Y253288D02*X162399Y254258D01*X162399Y254258D02*X163031Y254258D01* X163031Y254258D02*X163031Y254308D01*X163031Y254308D02*X162766Y254308D01* X162766Y254308D02*X162766Y255278D01*X162766Y255278D02*X163112Y255278D01* X163112Y255278D02*X163084Y255307D01*X163084Y255307D02*X162425Y255307D01* X162425Y255307D02*X162425Y256277D01*X162425Y256277D02*X163395Y256277D01* X163395Y256277D02*X163395Y255618D01*X163395Y255618D02*X163428Y255585D01* X163428Y255585D02*X163470Y255585D01*X163470Y255585D02*X163959Y255096D01* X163959Y255096D02*X164195Y255096D01*X164195Y255096D02*X164195Y255759D01* X164195Y255759D02*X164823Y255759D01*X164823Y255759D02*X164823Y256273D01* X164823Y256273D02*X165793Y256273D01*X165793Y256273D02*X165793Y256023D01* X165793Y256023D02*X165803Y256023D01*X165803Y256023D02*X165803Y256369D01* X165803Y256369D02*X164884Y256369D01*X164884Y256369D02*X164884Y257317D01* X164884Y257317D02*X164608Y257317D01*X164608Y257317D02*X164608Y257847D01* X164608Y257847D02*X164521Y257847D01*X164521Y257847D02*X164521Y257113D01* X164521Y257113D02*X163587Y257113D01*X163587Y257113D02*X163587Y256475D01* X163587Y256475D02*X162337Y256475D01*X162337Y256475D02*X162337Y257725D01* X162337Y257725D02*X162482Y257725D01*X162482Y257725D02*X162482Y257850D01* X162482Y257850D02*X161882Y257850D01*X161882Y257850D02*X161882Y258343D01* X161882Y258343D02*X161261Y258343D01*X161261Y258343D02*X161261Y259593D01* X161261Y259593D02*X161653Y259593D01*X161653Y259593D02*X161653Y260071D01* X161653Y260071D02*X159705Y262019D01*X159705Y262019D02*X159705Y261290D01* X159705Y261290D02*X159890Y261290D01*X159890Y261290D02*X159890Y260040D01* X159890Y260040D02*X159370Y260040D01*X159370Y260040D02*X159370Y259485D01* X159370Y259485D02*X159121Y259485D01*X159121Y259485D02*X159193Y259413D01* X159193Y259413D02*X159852Y259413D01*X159852Y259413D02*X159852Y258443D01* X159852Y258443D02*X158882Y258443D01*X158882Y258443D02*X158882Y259069D01* X158882Y259069D02*X158754Y259069D01*X158754Y259069D02*X158306Y259516D01* X158306Y259516D02*X158306Y258228D01*X158306Y258228D02*X158571Y258228D01* X158571Y258228D02*X158571Y257258D01*X158571Y257258D02*X157601Y257258D01* X157601Y257258D02*X157601Y258228D01*X157601Y258228D02*X157866Y258228D01* X157866Y258228D02*X157866Y258276D01*X157866Y258276D02*X157532Y258276D01* X157532Y258276D02*X157532Y257549D01*X157532Y257549D02*X156562Y257549D01* X156562Y257549D02*X156562Y258208D01*X156562Y258208D02*X156477Y258293D01* X156477Y258293D02*X156477Y259053D01*X156477Y259053D02*X156336Y259194D01* X156336Y259194D02*X156336Y258480D01*X156336Y258480D02*X156105Y258480D01* X156105Y258480D02*X156105Y257720D01*X156105Y257720D02*X155135Y257720D01* X155135Y257720D02*X155135Y257985D01*X155135Y257985D02*X154760Y257985D01* X154760Y257985D02*X154760Y257240D01*X154760Y257240D02*X153840Y257240D01* X153840Y257240D02*X153840Y257985D01*X153840Y257985D02*X153760Y257985D01* X153760Y257985D02*X153760Y257240D01*X153760Y257240D02*X153071Y257240D01* X162185Y253410D02*X162185Y254380D01*X162185Y254380D02*X161215Y254380D01* X161215Y254380D02*X161215Y253410D01*X161215Y253410D02*X162185Y253410D01* X158050Y248160D02*X158760Y248160D01*X158760Y248160D02*X158760Y247240D01* X158760Y247240D02*X158535Y247240D01*X158535Y247240D02*X158535Y247118D01* X158535Y247118D02*X158496Y247078D01*X158496Y247078D02*X158496Y246851D01* X158496Y246851D02*X158770Y246577D01*X158770Y246577D02*X158770Y246800D01* X158770Y246800D02*X159305Y246800D01*X159305Y246800D02*X159305Y247240D01* X159305Y247240D02*X158840Y247240D01*X158840Y247240D02*X158840Y248160D01* X158840Y248160D02*X159508Y248160D01*X159508Y248160D02*X159428Y248240D01* X159428Y248240D02*X158840Y248240D01*X158840Y248240D02*X158840Y248965D01* X158840Y248965D02*X158760Y248965D01*X158760Y248965D02*X158760Y248240D01* X158760Y248240D02*X158050Y248240D01*X158050Y248240D02*X158050Y248160D01* X151760Y257420D02*X151840Y257420D01*X151840Y257420D02*X151840Y257825D01* X151840Y257825D02*X151760Y257825D01*X151760Y257825D02*X151760Y257420D01* X153071Y265240D02*X153151Y265160D01*X153151Y265160D02*X153760Y265160D01* X153760Y265160D02*X153760Y264420D01*X153760Y264420D02*X153840Y264420D01* X153840Y264420D02*X153840Y265160D01*X153840Y265160D02*X154760Y265160D01* X154760Y265160D02*X154760Y264300D01*X154760Y264300D02*X154840Y264300D01* X154840Y264300D02*X154840Y265142D01*X154840Y265142D02*X154742Y265240D01* X154742Y265240D02*X153840Y265240D01*X153840Y265240D02*X153840Y265849D01* X153840Y265849D02*X153760Y265929D01*X153760Y265929D02*X153760Y265240D01* X153760Y265240D02*X153071Y265240D01*X154071Y264240D02*X154151Y264160D01* X154151Y264160D02*X154700Y264160D01*X154700Y264160D02*X154700Y264240D01* X154700Y264240D02*X154071Y264240D01*X219185Y279608D02*X219473Y279320D01* X219473Y279320D02*X219940Y279320D01*X219940Y279320D02*X219940Y280215D01* X219940Y280215D02*X219185Y280215D01*X219185Y280215D02*X219185Y279608D01* X221660Y278360D02*X221680Y278360D01*X221680Y278360D02*X221680Y278856D01* X221680Y278856D02*X222650Y278856D01*X222650Y278856D02*X222650Y278360D01* X222650Y278360D02*X223464Y278360D01*X223464Y278360D02*X224064Y278960D01* X224064Y278960D02*X225070Y278960D01*X225070Y278960D02*X225070Y281860D01* X225070Y281860D02*X224698Y281860D01*X224698Y281860D02*X224698Y282125D01* X224698Y282125D02*X222550Y282125D01*X222550Y282125D02*X222550Y281365D01* X222550Y281365D02*X221660Y281365D01*X221660Y281365D02*X221660Y281085D01* X221660Y281085D02*X222550Y281085D01*X222550Y281085D02*X222550Y280115D01* X222550Y280115D02*X221660Y280115D01*X221660Y280115D02*X221660Y278360D01* X086550Y216550D02*X116845Y216551D01*X116845Y216551D02*X116845Y217113D01* X116845Y217113D02*X118666Y217113D01*X118666Y217113D02*X118666Y216551D01* X118666Y216551D02*X119335Y216551D01*X119335Y216551D02*X119335Y217113D01* X119335Y217113D02*X121155Y217113D01*X121155Y217113D02*X121155Y216552D01* X121155Y216552D02*X174263Y216554D01*X174263Y216554D02*X174118Y216859D01* X174118Y216859D02*X173997Y217198D01*X173997Y217198D02*X173910Y217546D01* X173910Y217546D02*X173858Y217901D01*X173858Y217901D02*X173840Y218260D01* X173840Y218260D02*X173858Y218619D01*X173858Y218619D02*X173910Y218974D01* X173910Y218974D02*X173997Y219323D01*X173997Y219323D02*X174118Y219661D01* X174118Y219661D02*X174272Y219985D01*X174272Y219985D02*X174457Y220294D01* X174457Y220294D02*X174671Y220582D01*X174671Y220582D02*X174912Y220848D01* X174912Y220848D02*X175178Y221089D01*X175178Y221089D02*X175467Y221303D01* X175467Y221303D02*X175775Y221488D01*X175775Y221488D02*X176099Y221642D01* X176099Y221642D02*X176438Y221763D01*X176438Y221763D02*X176786Y221850D01* X176786Y221850D02*X177141Y221903D01*X177141Y221903D02*X177500Y221920D01* X177500Y221920D02*X177859Y221903D01*X177859Y221903D02*X178214Y221850D01* X178214Y221850D02*X178563Y221763D01*X178563Y221763D02*X178901Y221642D01* X178901Y221642D02*X179225Y221488D01*X179225Y221488D02*X179534Y221303D01* X179534Y221303D02*X179822Y221089D01*X179822Y221089D02*X180088Y220848D01* X180088Y220848D02*X180329Y220582D01*X180329Y220582D02*X180543Y220294D01* X180543Y220294D02*X180728Y219985D01*X180728Y219985D02*X180882Y219661D01* X180882Y219661D02*X181003Y219323D01*X181003Y219323D02*X181090Y218974D01* X181090Y218974D02*X181143Y218619D01*X181143Y218619D02*X181160Y218260D01* X181160Y218260D02*X181143Y217901D01*X181143Y217901D02*X181090Y217546D01* X181090Y217546D02*X181003Y217198D01*X181003Y217198D02*X180882Y216859D01* X180882Y216859D02*X180737Y216554D01*X180737Y216554D02*X182370Y216554D01* X182370Y216554D02*X182370Y238273D01*X182370Y238273D02*X180753Y238273D01* X180753Y238273D02*X180753Y240167D01*X180753Y240167D02*X182370Y240167D01* X182370Y240167D02*X182370Y240553D01*X182370Y240553D02*X176529Y240553D01* X176529Y240553D02*X175191Y241890D01*X175191Y241890D02*X172713Y241890D01* X172713Y241890D02*X172617Y241987D01*X172617Y241987D02*X172617Y241256D01* X172617Y241256D02*X171647Y241256D01*X171647Y241256D02*X171647Y242175D01* X171647Y242175D02*X170637Y242175D01*X170637Y242175D02*X170637Y241415D01* X170637Y241415D02*X169667Y241415D01*X169667Y241415D02*X169667Y242175D01* X169667Y242175D02*X168657Y242175D01*X168657Y242175D02*X168657Y241455D01* X168657Y241455D02*X168855Y241455D01*X168855Y241455D02*X168855Y240485D01* X168855Y240485D02*X168690Y240485D01*X168690Y240485D02*X168690Y240041D01* X168690Y240041D02*X168790Y239941D01*X168790Y239941D02*X168790Y240160D01* X168790Y240160D02*X169932Y240160D01*X169932Y240160D02*X169932Y240266D01* X169932Y240266D02*X169667Y240266D01*X169667Y240266D02*X169667Y241236D01* X169667Y241236D02*X170637Y241236D01*X170637Y241236D02*X170637Y240266D01* X170637Y240266D02*X170396Y240266D01*X170396Y240266D02*X170501Y240160D01* X170501Y240160D02*X171510Y240160D01*X171510Y240160D02*X171510Y239040D01* X171510Y239040D02*X170190Y239040D01*X170190Y239040D02*X170190Y239849D01* X170190Y239849D02*X170110Y239929D01*X170110Y239929D02*X170110Y239040D01* X170110Y239040D02*X168790Y239040D01*X168790Y239040D02*X168790Y239380D01* X168790Y239380D02*X168729Y239380D01*X168729Y239380D02*X168310Y239799D01* X168310Y239799D02*X168310Y239740D01*X168310Y239740D02*X165290Y239740D01* X165290Y239740D02*X165290Y240660D01*X165290Y240660D02*X165315Y240660D01* X165315Y240660D02*X165315Y241470D01*X165315Y241470D02*X166285Y241470D01* X166285Y241470D02*X166285Y240660D01*X166285Y240660D02*X166927Y240660D01* X166927Y240660D02*X166927Y241410D01*X166927Y241410D02*X167687Y241410D01* X167687Y241410D02*X167687Y242175D01*X167687Y242175D02*X159772Y242175D01* X159772Y242175D02*X159634Y242313D01*X159634Y242313D02*X157310Y244636D01* X157310Y244636D02*X155779Y246168D01*X155779Y246168D02*X155779Y245208D01* X155779Y245208D02*X155095Y245208D01*X155095Y245208D02*X155095Y245115D01* X155095Y245115D02*X155037Y245115D01*X155037Y245115D02*X155037Y244395D01* X155037Y244395D02*X154067Y244395D01*X154067Y244395D02*X154067Y245054D01* X154067Y245054D02*X154006Y245115D01*X154006Y245115D02*X153845Y245115D01* X153845Y245115D02*X153845Y245276D01*X153845Y245276D02*X153597Y245523D01* X153597Y245523D02*X153597Y246325D01*X153597Y246325D02*X153479Y246325D01* X153479Y246325D02*X153479Y245235D01*X153479Y245235D02*X152695Y245235D01* X152695Y245235D02*X152695Y244995D01*X152695Y244995D02*X151445Y244995D01* X151445Y244995D02*X151445Y245731D01*X151445Y245731D02*X150936Y246239D01* X150936Y246239D02*X150936Y247100D01*X150936Y247100D02*X150700Y247100D01* X150700Y247100D02*X150700Y247255D01*X150700Y247255D02*X149927Y246482D01* X149927Y246482D02*X150082Y246482D01*X150082Y246482D02*X150082Y245232D01* X150082Y245232D02*X148832Y245232D01*X148832Y245232D02*X148832Y245972D01* X148832Y245972D02*X148755Y245895D01*X148755Y245895D02*X148755Y245175D01* X148755Y245175D02*X147505Y245175D01*X147505Y245175D02*X147505Y246425D01* X147505Y246425D02*X148225Y246425D01*X148225Y246425D02*X149322Y247523D01* X149322Y247523D02*X148360Y247523D01*X148360Y247523D02*X148360Y248493D01* X148360Y248493D02*X149330Y248493D01*X149330Y248493D02*X149330Y248228D01* X149330Y248228D02*X149551Y248228D01*X149551Y248228D02*X150713Y249390D01* X150713Y249390D02*X149931Y249390D01*X149931Y249390D02*X149895Y249354D01* X149895Y249354D02*X149895Y248695D01*X149895Y248695D02*X148925Y248695D01* X148925Y248695D02*X148925Y249665D01*X148925Y249665D02*X149584Y249665D01* X149584Y249665D02*X149749Y249830D01*X149749Y249830D02*X149885Y249830D01* X149885Y249830D02*X149885Y250075D01*X149885Y250075D02*X149275Y250075D01* X149275Y250075D02*X149275Y250863D01*X149275Y250863D02*X149166Y250863D01* X149166Y250863D02*X149013Y251016D01*X149013Y251016D02*X148615Y251016D01* X148615Y251016D02*X148615Y250755D01*X148615Y250755D02*X147365Y250755D01* X147365Y250755D02*X147365Y252825D01*X147365Y252825D02*X147519Y252825D01* X147519Y252825D02*X147519Y253956D01*X147519Y253956D02*X148769Y253956D01* X148769Y253956D02*X148769Y253695D01*X148769Y253695D02*X149652Y253695D01* X149652Y253695D02*X149808Y253538D01*X149808Y253538D02*X149808Y254128D01* X149808Y254128D02*X149782Y254128D01*X149782Y254128D02*X149130Y254780D01* X149130Y254780D02*X149064Y254780D01*X149064Y254780D02*X149064Y254530D01* X149064Y254530D02*X147814Y254530D01*X147814Y254530D02*X147814Y254745D01* X147814Y254745D02*X146794Y254745D01*X146794Y254745D02*X146794Y255425D01* X146794Y255425D02*X146325Y255425D01*X146325Y255425D02*X146325Y256675D01* X146325Y256675D02*X147045Y256675D01*X147045Y256675D02*X147430Y257060D01* X147430Y257060D02*X149049Y257060D01*X149049Y257060D02*X149179Y256930D01* X149179Y256930D02*X149179Y257323D01*X149179Y257323D02*X150048Y257323D01* X150048Y257323D02*X150048Y257572D01*X150048Y257572D02*X150001Y257572D01* X150001Y257572D02*X149914Y257485D01*X149914Y257485D02*X146739Y257485D01* X146739Y257485D02*X146244Y257980D01*X146244Y257980D02*X144160Y257980D01* X144160Y257980D02*X144160Y257640D01*X144160Y257640D02*X142860Y257640D01* X142860Y257640D02*X142860Y257540D01*X142860Y257540D02*X141740Y257540D01* X141740Y257540D02*X141740Y258860D01*X141740Y258860D02*X142860Y258860D01* X142860Y258860D02*X142860Y258760D01*X142860Y258760D02*X144160Y258760D01* X144160Y258760D02*X144160Y258420D01*X144160Y258420D02*X146426Y258420D01* X146426Y258420D02*X146921Y257925D01*X146921Y257925D02*X148575Y257925D01* X148575Y257925D02*X148575Y258480D01*X148575Y258480D02*X147375Y258480D01* X147375Y258480D02*X147375Y259730D01*X147375Y259730D02*X148149Y259730D01* X148149Y259730D02*X148095Y259785D01*X148095Y259785D02*X147375Y259785D01* X147375Y259785D02*X147375Y261035D01*X147375Y261035D02*X148175Y261035D01* X148175Y261035D02*X148175Y261078D01*X148175Y261078D02*X149425Y261078D01* X149425Y261078D02*X149425Y260575D01*X149425Y260575D02*X149726Y260575D01* X149726Y260575D02*X149726Y261547D01*X149726Y261547D02*X148344Y261547D01* X148344Y261547D02*X146005Y263886D01*X146005Y263886D02*X145766Y263886D01* X145766Y263886D02*X145766Y264125D01*X145766Y264125D02*X145676Y264215D01* X145676Y264215D02*X145676Y264320D01*X145676Y264320D02*X144776Y264320D01* X144776Y264320D02*X144776Y265040D01*X144776Y265040D02*X144591Y265225D01* X144591Y265225D02*X144300Y265225D01*X144300Y265225D02*X144300Y264950D01* X144300Y264950D02*X143100Y264950D01*X143100Y264950D02*X143100Y265090D01* X143100Y265090D02*X142240Y265090D01*X142240Y265090D02*X142240Y268110D01* X142240Y268110D02*X143160Y268110D01*X143160Y268110D02*X143160Y266250D01* X143160Y266250D02*X143240Y266250D01*X143240Y266250D02*X143240Y268110D01* X143240Y268110D02*X144160Y268110D01*X144160Y268110D02*X144160Y267820D01* X144160Y267820D02*X144239Y267820D01*X144239Y267820D02*X144825Y268406D01* X144825Y268406D02*X144825Y269065D01*X144825Y269065D02*X145795Y269065D01* X145795Y269065D02*X145795Y268095D01*X145795Y268095D02*X145136Y268095D01* X145136Y268095D02*X144421Y267380D01*X144421Y267380D02*X144160Y267380D01* X144160Y267380D02*X144160Y267085D01*X144160Y267085D02*X144910Y267085D01* X144910Y267085D02*X144910Y266115D01*X144910Y266115D02*X144300Y266115D01* X144300Y266115D02*X144300Y265975D01*X144300Y265975D02*X144902Y265975D01* X144902Y265975D02*X145307Y265570D01*X145307Y265570D02*X146026Y265570D01* X146026Y265570D02*X146026Y265157D01*X146026Y265157D02*X146095Y265226D01* X146095Y265226D02*X147221Y265226D01*X147221Y265226D02*X147232Y265215D01* X147232Y265215D02*X147375Y265215D01*X147375Y265215D02*X147375Y266080D01* X147375Y266080D02*X148210Y266080D01*X148210Y266080D02*X148210Y267195D01* X148210Y267195D02*X149460Y267195D01*X149460Y267195D02*X149460Y266945D01* X149460Y266945D02*X149803Y266945D01*X149803Y266945D02*X149130Y267618D01* X149130Y267618D02*X149130Y267975D01*X149130Y267975D02*X148880Y267975D01* X148880Y267975D02*X148880Y269225D01*X148880Y269225D02*X150130Y269225D01* X150130Y269225D02*X150130Y268575D01*X150130Y268575D02*X150365Y268575D01* X150365Y268575D02*X150365Y268795D01*X150365Y268795D02*X150826Y268795D01* X150826Y268795D02*X150826Y269492D01*X150826Y269492D02*X152076Y269492D01* X152076Y269492D02*X152076Y268257D01*X152076Y268257D02*X152433Y267901D01* X152433Y267901D02*X152433Y269093D01*X152433Y269093D02*X153683Y269093D01* X153683Y269093D02*X153683Y268944D01*X153683Y268944D02*X154054Y268944D01* X154054Y268944D02*X154054Y269649D01*X154054Y269649D02*X155024Y269649D01* X155024Y269649D02*X155024Y269012D01*X155024Y269012D02*X155135Y268901D01* X155135Y268901D02*X155135Y268182D01*X155135Y268182D02*X155027Y268074D01* X155027Y268074D02*X155027Y267920D01*X155027Y267920D02*X155578Y267920D01* X155578Y267920D02*X155578Y268021D01*X155578Y268021D02*X155571Y268028D01* X155571Y268028D02*X155571Y269583D01*X155571Y269583D02*X155800Y269812D01* X155800Y269812D02*X155923Y269812D01*X155923Y269812D02*X155923Y270062D01* X155923Y270062D02*X156893Y270062D01*X156893Y270062D02*X156893Y269895D01* X156893Y269895D02*X157682Y269895D01*X157682Y269895D02*X157682Y268925D01* X157682Y268925D02*X157432Y268925D01*X157432Y268925D02*X157432Y268787D01* X157432Y268787D02*X157411Y268765D01*X157411Y268765D02*X157865Y268765D01* X157865Y268765D02*X157865Y268106D01*X157865Y268106D02*X158020Y267951D01* X158020Y267951D02*X158020Y267160D01*X158020Y267160D02*X158065Y267160D01* X158065Y267160D02*X158065Y267765D01*X158065Y267765D02*X158162Y267862D01* X158162Y267862D02*X158162Y268273D01*X158162Y268273D02*X157912Y268273D01* X157912Y268273D02*X157912Y269243D01*X157912Y269243D02*X158705Y269243D01* X158705Y269243D02*X158705Y269349D01*X158705Y269349D02*X158895Y269539D01* X158895Y269539D02*X158895Y270177D01*X158895Y270177D02*X159865Y270177D01* X159865Y270177D02*X159865Y269207D01*X159865Y269207D02*X159228Y269207D01* X159228Y269207D02*X159175Y269155D01*X159175Y269155D02*X159175Y269076D01* X159175Y269076D02*X159969Y269076D01*X159969Y269076D02*X159969Y268617D01* X159969Y268617D02*X160093Y268741D01*X160093Y268741D02*X160093Y269379D01* X160093Y269379D02*X161063Y269379D01*X161063Y269379D02*X161063Y268409D01* X161063Y268409D02*X160936Y268409D01*X160936Y268409D02*X160936Y267794D01* X160936Y267794D02*X161349Y267794D01*X161349Y267794D02*X161349Y267160D01* X161349Y267160D02*X161535Y267160D01*X161535Y267160D02*X161535Y268105D01* X161535Y268105D02*X162374Y268105D01*X162374Y268105D02*X162374Y268269D01* X162374Y268269D02*X162460Y268355D01*X162460Y268355D02*X162460Y269013D01* X162460Y269013D02*X162887Y269013D01*X162887Y269013D02*X162724Y269176D01* X162724Y269176D02*X162724Y269315D01*X162724Y269315D02*X162460Y269315D01* X162460Y269315D02*X162460Y270285D01*X162460Y270285D02*X163430Y270285D01* X163430Y270285D02*X163430Y269750D01*X163430Y269750D02*X164150Y269750D01* X164150Y269750D02*X164150Y269091D01*X164150Y269091D02*X164235Y269006D01* X164235Y269006D02*X164235Y268956D01*X164235Y268956D02*X164370Y268956D01* X164370Y268956D02*X164370Y269769D01*X164370Y269769D02*X163564Y269769D01* X163564Y269769D02*X163564Y270740D01*X163564Y270740D02*X163829Y270740D01* X163829Y270740D02*X163829Y270980D01*X163829Y270980D02*X166480Y273631D01* X166480Y273631D02*X166480Y273690D01*X166480Y273690D02*X166040Y273690D01* X166040Y273690D02*X166040Y274810D01*X166040Y274810D02*X167360Y274810D01* X167360Y274810D02*X167360Y273831D01*X167360Y273831D02*X168160Y274631D01* X168160Y274631D02*X168160Y275345D01*X168160Y275345D02*X167360Y275345D01* X167360Y275345D02*X167360Y275090D01*X167360Y275090D02*X166040Y275090D01* X166040Y275090D02*X166040Y276210D01*X166040Y276210D02*X167305Y276210D01* X167305Y276210D02*X167305Y276315D01*X167305Y276315D02*X168160Y276315D01* X168160Y276315D02*X168160Y276577D01*X168160Y276577D02*X168689Y277106D01* X168689Y277106D02*X176090Y277106D01*X176090Y277106D02*X176464Y277480D01* X176464Y277480D02*X178430Y277480D01*X178430Y277480D02*X178430Y278370D01* X178430Y278370D02*X179230Y278370D01*X179230Y278370D02*X179230Y278549D01* X179230Y278549D02*X176960Y280819D01*X176960Y280819D02*X176960Y281241D01* X176960Y281241D02*X175685Y282516D01*X175685Y282516D02*X175026Y282516D01* X175026Y282516D02*X175026Y283486D01*X175026Y283486D02*X175997Y283486D01* X175997Y283486D02*X175997Y282827D01*X175997Y282827D02*X177400Y281423D01* X177400Y281423D02*X177400Y281001D01*X177400Y281001D02*X179670Y278731D01* X179670Y278731D02*X179670Y273967D01*X179670Y273967D02*X175240Y269537D01* X175240Y269537D02*X175240Y267229D01*X175240Y267229D02*X171687Y263676D01* X171687Y263676D02*X171057Y263676D01*X171057Y263676D02*X170861Y263480D01* X170861Y263480D02*X170760Y263480D01*X170760Y263480D02*X170760Y263240D01* X170760Y263240D02*X169840Y263240D01*X169840Y263240D02*X169840Y263965D01* X169840Y263965D02*X169760Y263965D01*X169760Y263965D02*X169760Y263240D01* X169760Y263240D02*X169736Y263240D01*X169736Y263240D02*X169840Y263136D01* X169840Y263136D02*X169840Y263160D01*X169840Y263160D02*X170760Y263160D01* X170760Y263160D02*X170760Y262935D01*X170760Y262935D02*X171184Y262935D01* X171184Y262935D02*X171495Y263246D01*X171495Y263246D02*X172330Y263246D01* X172330Y263246D02*X172382Y263298D01*X172382Y263298D02*X172589Y263298D01* X172589Y263298D02*X172589Y263548D01*X172589Y263548D02*X173559Y263548D01* X173559Y263548D02*X173559Y262795D01*X173559Y262795D02*X174170Y263407D01* X174170Y263407D02*X174170Y263526D01*X174170Y263526D02*X174281Y263636D01* X174281Y263636D02*X174281Y264274D01*X174281Y264274D02*X175251Y264274D01* X175251Y264274D02*X175251Y263304D01*X175251Y263304D02*X174641Y263304D01* X174641Y263304D02*X174641Y263212D01*X174641Y263212D02*X174503Y263074D01* X174503Y263074D02*X172461Y261032D01*X172461Y261032D02*X172765Y261032D01* X172765Y261032D02*X172765Y260643D01*X172765Y260643D02*X175359Y263238D01* X175359Y263238D02*X175359Y269500D01*X175359Y269500D02*X176731Y270872D01* X176731Y270872D02*X181130Y270872D01*X181130Y270872D02*X181607Y271348D01* X181607Y271348D02*X182370Y271348D01*X182370Y271348D02*X182370Y272596D01* X182370Y272596D02*X182089Y272596D01*X182089Y272596D02*X182089Y273566D01* X182089Y273566D02*X182370Y273566D01*X182370Y273566D02*X182370Y275035D01* X182370Y275035D02*X182224Y275035D01*X182224Y275035D02*X181210Y276049D01* X181210Y276049D02*X181210Y276150D01*X181210Y276150D02*X180970Y276150D01* X180970Y276150D02*X180970Y277040D01*X180970Y277040D02*X180620Y277040D01* X180620Y277040D02*X180620Y276150D01*X180620Y276150D02*X179700Y276150D01* X179700Y276150D02*X179700Y278370D01*X179700Y278370D02*X180620Y278370D01* X180620Y278370D02*X180620Y277480D01*X180620Y277480D02*X180970Y277480D01* X180970Y277480D02*X180970Y278370D01*X180970Y278370D02*X181890Y278370D01* X181890Y278370D02*X181890Y276150D01*X181890Y276150D02*X181731Y276150D01* X181731Y276150D02*X182370Y275511D01*X182370Y275511D02*X182370Y276150D01* X182370Y276150D02*X182240Y276150D01*X182240Y276150D02*X182240Y278150D01* X182240Y278150D02*X182215Y278150D01*X182215Y278150D02*X182215Y279120D01* X182215Y279120D02*X183185Y279120D01*X183185Y279120D02*X183185Y278360D01* X183185Y278360D02*X183485Y278360D01*X183485Y278360D02*X183485Y279120D01* X183485Y279120D02*X184455Y279120D01*X184455Y279120D02*X184455Y278360D01* X184455Y278360D02*X184780Y278360D01*X184780Y278360D02*X184780Y278370D01* X184780Y278370D02*X185700Y278370D01*X185700Y278370D02*X185700Y278360D01* X185700Y278360D02*X186025Y278360D01*X186025Y278360D02*X186025Y278876D01* X186025Y278876D02*X185507Y278876D01*X185507Y278876D02*X185507Y279846D01* X185507Y279846D02*X186477Y279846D01*X186477Y279846D02*X186477Y279120D01* X186477Y279120D02*X186995Y279120D01*X186995Y279120D02*X186995Y278360D01* X186995Y278360D02*X187076Y278360D01*X187076Y278360D02*X187076Y278572D01* X187076Y278572D02*X187440Y278572D01*X187440Y278572D02*X187440Y279760D01* X187440Y279760D02*X188560Y279760D01*X188560Y279760D02*X188560Y278440D01* X188560Y278440D02*X188046Y278440D01*X188046Y278440D02*X188046Y278360D01* X188046Y278360D02*X189940Y278360D01*X189940Y278360D02*X189940Y278440D01* X189940Y278440D02*X188840Y278440D01*X188840Y278440D02*X188840Y279760D01* X188840Y279760D02*X189940Y279760D01*X189940Y279760D02*X189940Y281120D01* X189940Y281120D02*X188417Y281120D01*X188417Y281120D02*X187897Y280600D01* X187897Y280600D02*X182609Y280600D01*X182609Y280600D02*X182480Y280729D01* X182480Y280729D02*X182480Y280830D01*X182480Y280830D02*X182240Y280830D01* X182240Y280830D02*X182240Y281720D01*X182240Y281720D02*X181890Y281720D01* X181890Y281720D02*X181890Y280830D01*X181890Y280830D02*X180970Y280830D01* X180970Y280830D02*X180970Y283050D01*X180970Y283050D02*X181890Y283050D01* X181890Y283050D02*X181890Y282160D01*X181890Y282160D02*X182240Y282160D01* X182240Y282160D02*X182240Y283050D01*X182240Y283050D02*X183160Y283050D01* X183160Y283050D02*X183160Y281040D01*X183160Y281040D02*X183510Y281040D01* X183510Y281040D02*X183510Y283050D01*X183510Y283050D02*X184430Y283050D01* X184430Y283050D02*X184430Y281040D01*X184430Y281040D02*X184780Y281040D01* X184780Y281040D02*X184780Y283050D01*X184780Y283050D02*X185700Y283050D01* X185700Y283050D02*X185700Y281040D01*X185700Y281040D02*X186050Y281040D01* X186050Y281040D02*X186050Y283050D01*X186050Y283050D02*X186970Y283050D01* X186970Y283050D02*X186970Y281040D01*X186970Y281040D02*X187714Y281040D01* X187714Y281040D02*X188234Y281560D01*X188234Y281560D02*X189940Y281560D01* X189940Y281560D02*X189940Y282215D01*X189940Y282215D02*X189190Y282215D01* X189190Y282215D02*X189190Y283185D01*X189190Y283185D02*X189940Y283185D01* X189940Y283185D02*X189940Y284760D01*X189940Y284760D02*X191660Y284760D01* X191660Y284760D02*X191660Y281320D01*X191660Y281320D02*X193251Y281320D01* X193251Y281320D02*X193999Y280571D01*X193999Y280571D02*X195407Y280571D01* X195407Y280571D02*X195407Y280836D01*X195407Y280836D02*X196377Y280836D01* X196377Y280836D02*X196377Y279971D01*X196377Y279971D02*X196842Y279971D01* X196842Y279971D02*X197939Y281068D01*X197939Y281068D02*X197939Y282575D01* X197939Y282575D02*X198067Y282704D01*X198067Y282704D02*X199139Y283775D01* X199139Y283775D02*X200470Y283775D01*X200470Y283775D02*X200669Y283576D01* X200669Y283576D02*X201327Y283576D01*X201327Y283576D02*X201327Y282606D01* X201327Y282606D02*X200666Y282606D01*X200666Y282606D02*X200666Y282175D01* X200666Y282175D02*X199696Y282175D01*X199696Y282175D02*X199696Y282575D01* X199696Y282575D02*X198950Y282575D01*X198950Y282575D02*X198950Y282964D01* X198950Y282964D02*X198379Y282393D01*X198379Y282393D02*X198379Y280885D01* X198379Y280885D02*X197024Y279531D01*X197024Y279531D02*X192769Y279531D01* X192769Y279531D02*X192647Y279409D01*X192647Y279409D02*X192647Y278360D01* X192647Y278360D02*X200215Y278360D01*X200215Y278360D02*X200215Y279185D01* X200215Y279185D02*X200590Y279185D01*X200590Y279185D02*X200590Y279885D01* X200590Y279885D02*X201340Y279885D01*X201340Y279885D02*X201340Y284760D01* X201340Y284760D02*X202337Y284760D01*X202337Y284760D02*X202337Y285557D01* X202337Y285557D02*X203097Y285557D01*X203097Y285557D02*X203097Y285705D01* X203097Y285705D02*X202996Y285806D01*X202996Y285806D02*X202337Y285806D01* X202337Y285806D02*X202337Y286777D01*X202337Y286777D02*X203307Y286777D01* X203307Y286777D02*X203307Y286118D01*X203307Y286118D02*X203538Y285888D01* X203538Y285888D02*X203538Y284052D01*X203538Y284052D02*X203495Y284009D01* X203495Y284009D02*X203495Y283591D01*X203495Y283591D02*X203664Y283422D01* X203664Y283422D02*X203664Y283022D01*X203664Y283022D02*X204424Y283022D01* X204424Y283022D02*X204424Y282960D01*X204424Y282960D02*X205660Y282960D01* X205660Y282960D02*X205660Y281840D01*X205660Y281840D02*X204991Y281840D01* X204991Y281840D02*X205420Y281411D01*X205420Y281411D02*X205420Y281385D01* X205420Y281385D02*X205715Y281385D01*X205715Y281385D02*X205715Y281940D01* X205715Y281940D02*X205690Y281940D01*X205690Y281940D02*X205690Y282860D01* X205690Y282860D02*X213710Y282860D01*X213710Y282860D02*X213710Y281940D01* X213710Y281940D02*X211420Y281940D01*X211420Y281940D02*X211420Y281839D01* X211420Y281839D02*X211137Y281556D01*X211137Y281556D02*X211137Y281114D01* X211137Y281114D02*X210185Y281114D01*X210185Y281114D02*X210185Y280415D01* X210185Y280415D02*X209215Y280415D01*X209215Y280415D02*X209215Y281190D01* X209215Y281190D02*X209185Y281190D01*X209185Y281190D02*X209185Y280415D01* X209185Y280415D02*X208215Y280415D01*X208215Y280415D02*X208215Y281190D01* X208215Y281190D02*X208185Y281190D01*X208185Y281190D02*X208185Y280415D01* X208185Y280415D02*X207215Y280415D01*X207215Y280415D02*X207215Y281190D01* X207215Y281190D02*X207185Y281190D01*X207185Y281190D02*X207185Y280415D01* X207185Y280415D02*X206215Y280415D01*X206215Y280415D02*X206215Y281090D01* X206215Y281090D02*X206185Y281090D01*X206185Y281090D02*X206185Y280415D01* X206185Y280415D02*X205420Y280415D01*X205420Y280415D02*X205420Y280385D01* X205420Y280385D02*X206185Y280385D01*X206185Y280385D02*X206185Y279620D01* X206185Y279620D02*X206215Y279620D01*X206215Y279620D02*X206215Y280385D01* X206215Y280385D02*X207185Y280385D01*X207185Y280385D02*X207185Y279620D01* X207185Y279620D02*X207215Y279620D01*X207215Y279620D02*X207215Y280385D01* X207215Y280385D02*X208185Y280385D01*X208185Y280385D02*X208185Y279620D01* X208185Y279620D02*X208215Y279620D01*X208215Y279620D02*X208215Y280385D01* X208215Y280385D02*X209185Y280385D01*X209185Y280385D02*X209185Y279620D01* X209185Y279620D02*X209215Y279620D01*X209215Y279620D02*X209215Y280385D01* X209215Y280385D02*X210185Y280385D01*X210185Y280385D02*X210185Y279620D01* X210185Y279620D02*X212215Y279620D01*X212215Y279620D02*X212215Y280385D01* X212215Y280385D02*X213185Y280385D01*X213185Y280385D02*X213185Y279620D01* X213185Y279620D02*X213215Y279620D01*X213215Y279620D02*X213215Y280385D01* X213215Y280385D02*X214185Y280385D01*X214185Y280385D02*X214185Y279620D01* X214185Y279620D02*X214195Y279620D01*X214195Y279620D02*X214195Y280385D01* X214195Y280385D02*X215165Y280385D01*X215165Y280385D02*X215165Y279620D01* X215165Y279620D02*X215215Y279620D01*X215215Y279620D02*X215215Y280385D01* X215215Y280385D02*X216185Y280385D01*X216185Y280385D02*X216185Y279620D01* X216185Y279620D02*X216235Y279620D01*X216235Y279620D02*X216235Y280385D01* X216235Y280385D02*X217205Y280385D01*X217205Y280385D02*X217205Y279620D01* X217205Y279620D02*X218215Y279620D01*X218215Y279620D02*X218215Y280405D01* X218215Y280405D02*X219168Y280405D01*X219168Y280405D02*X219168Y281185D01* X219168Y281185D02*X219940Y281185D01*X219940Y281185D02*X219940Y284360D01* X219940Y284360D02*X221660Y284360D01*X221660Y284360D02*X221660Y283385D01* X221660Y283385D02*X222550Y283385D01*X222550Y283385D02*X222550Y282565D01* X222550Y282565D02*X224698Y282565D01*X224698Y282565D02*X224698Y282830D01* X224698Y282830D02*X225070Y282830D01*X225070Y282830D02*X225070Y284740D01* X225070Y284740D02*X223785Y284740D01*X223785Y284740D02*X223785Y283990D01* X223785Y283990D02*X222815Y283990D01*X222815Y283990D02*X222815Y284740D01* X222815Y284740D02*X222040Y284740D01*X222040Y284740D02*X222040Y286460D01* X222040Y286460D02*X225070Y286460D01*X225070Y286460D02*X225070Y287113D01* X225070Y287113D02*X224408Y287113D01*X224408Y287113D02*X224408Y286848D01* X224408Y286848D02*X223438Y286848D01*X223438Y286848D02*X223438Y287818D01* X223438Y287818D02*X224408Y287818D01*X224408Y287818D02*X224408Y287553D01* X224408Y287553D02*X225070Y287553D01*X225070Y287553D02*X225070Y287800D01* X225070Y287800D02*X224861Y287800D01*X224861Y287800D02*X224861Y288770D01* X224861Y288770D02*X225070Y288770D01*X225070Y288770D02*X225070Y289456D01* X225070Y289456D02*X223108Y289456D01*X223108Y289456D02*X219460Y289456D01* X219460Y289456D02*X215588Y289456D01*X215588Y289456D02*X210510Y289455D01* X210510Y289455D02*X209442Y289455D01*X209442Y289455D02*X209442Y288695D01* X209442Y288695D02*X208472Y288695D01*X208472Y288695D02*X208472Y289455D01* X208472Y289455D02*X208343Y289455D01*X208343Y289455D02*X205660Y289455D01* X205660Y289455D02*X200460Y289455D01*X200460Y289455D02*X197660Y289455D01* X197660Y289455D02*X196257Y289455D01*X196257Y289455D02*X191427Y289455D01* X191427Y289455D02*X190437Y289455D01*X190437Y289455D02*X180743Y289454D01* X180743Y289454D02*X180882Y289161D01*X180882Y289161D02*X181003Y288823D01* X181003Y288823D02*X181090Y288474D01*X181090Y288474D02*X181143Y288119D01* X181143Y288119D02*X181160Y287760D01*X181160Y287760D02*X181143Y287401D01* X181143Y287401D02*X181090Y287046D01*X181090Y287046D02*X181003Y286698D01* X181003Y286698D02*X180882Y286359D01*X180882Y286359D02*X180728Y286035D01* X180728Y286035D02*X180620Y285854D01*X180620Y285854D02*X180543Y285727D01* X180543Y285727D02*X180329Y285438D01*X180329Y285438D02*X180088Y285172D01* X180088Y285172D02*X179822Y284931D01*X179822Y284931D02*X179534Y284717D01* X179534Y284717D02*X179350Y284607D01*X179350Y284607D02*X179225Y284532D01* X179225Y284532D02*X178901Y284378D01*X178901Y284378D02*X178563Y284257D01* X178563Y284257D02*X178214Y284170D01*X178214Y284170D02*X177859Y284118D01* X177859Y284118D02*X177500Y284100D01*X177500Y284100D02*X177141Y284118D01* X177141Y284118D02*X176786Y284170D01*X176786Y284170D02*X176438Y284257D01* X176438Y284257D02*X176099Y284378D01*X176099Y284378D02*X175775Y284532D01* X175775Y284532D02*X175467Y284717D01*X175467Y284717D02*X175178Y284931D01* X175178Y284931D02*X174912Y285172D01*X174912Y285172D02*X174671Y285438D01* X174671Y285438D02*X174457Y285727D01*X174457Y285727D02*X174272Y286035D01* X174272Y286035D02*X174118Y286359D01*X174118Y286359D02*X173997Y286698D01* X173997Y286698D02*X173910Y287046D01*X173910Y287046D02*X173858Y287401D01* X173858Y287401D02*X173840Y287760D01*X173840Y287760D02*X173858Y288119D01* X173858Y288119D02*X173910Y288474D01*X173910Y288474D02*X173997Y288823D01* X173997Y288823D02*X174118Y289161D01*X174118Y289161D02*X174257Y289454D01* X174257Y289454D02*X173607Y289454D01*X173607Y289454D02*X171687Y289454D01* X171687Y289454D02*X169147Y289454D01*X169147Y289454D02*X166677Y289454D01* X166677Y289454D02*X164697Y289453D01*X164697Y289453D02*X162960Y289453D01* X162960Y289453D02*X159970Y289453D01*X159970Y289453D02*X147970Y289453D01* X147970Y289453D02*X139160Y289452D01*X139160Y289452D02*X134882Y289452D01* X134882Y289452D02*X134005Y289452D01*X134005Y289452D02*X131970Y289452D01* X131970Y289452D02*X121155Y289452D01*X121155Y289452D02*X121155Y288887D01* X121155Y288887D02*X119335Y288887D01*X119335Y288887D02*X119335Y289451D01* X119335Y289451D02*X118666Y289451D01*X118666Y289451D02*X118666Y288887D01* X118666Y288887D02*X116845Y288887D01*X116845Y288887D02*X116845Y289451D01* X116845Y289451D02*X102562Y289451D01*X102562Y289451D02*X099406Y289451D01* X099406Y289451D02*X097420Y289451D01*X097420Y289451D02*X096866Y289451D01* X096866Y289451D02*X094326Y289450D01*X094326Y289450D02*X091786Y289450D01* X091786Y289450D02*X089785Y289450D01*X089785Y289450D02*X088422Y289450D01* X088422Y289450D02*X088255Y289450D01*X088255Y289450D02*X088255Y286883D01* X088255Y286883D02*X088117Y286745D01*X088117Y286745D02*X086550Y286745D01* X086550Y286745D02*X086550Y216550D01*X087550Y281065D02*X087550Y282035D01* X087550Y282035D02*X086580Y282035D01*X086580Y282035D02*X086580Y281065D01* X086580Y281065D02*X087550Y281065D01*X088422Y254178D02*X088422Y256022D01* X088422Y256022D02*X086578Y256022D01*X086578Y256022D02*X086578Y254178D01* X086578Y254178D02*X088422Y254178D01*X088422Y252178D02*X088422Y254022D01* X088422Y254022D02*X086578Y254022D01*X086578Y254022D02*X086578Y252178D01* X086578Y252178D02*X088422Y252178D01*X088422Y250178D02*X088422Y252022D01* X088422Y252022D02*X086578Y252022D01*X086578Y252022D02*X086578Y250178D01* X086578Y250178D02*X088422Y250178D01*X088422Y248178D02*X088422Y250022D01* X088422Y250022D02*X086578Y250022D01*X086578Y250022D02*X086578Y248178D01* X086578Y248178D02*X088422Y248178D01*X088422Y246178D02*X088422Y248022D01* X088422Y248022D02*X086578Y248022D01*X086578Y248022D02*X086578Y246178D01* X086578Y246178D02*X088422Y246178D01*X088422Y244178D02*X088422Y246022D01* X088422Y246022D02*X086578Y246022D01*X086578Y246022D02*X086578Y244178D01* X086578Y244178D02*X088422Y244178D01*X088422Y242178D02*X088422Y244022D01* X088422Y244022D02*X086578Y244022D01*X086578Y244022D02*X086578Y242178D01* X086578Y242178D02*X088422Y242178D01*X088422Y240178D02*X088422Y242022D01* X088422Y242022D02*X086578Y242022D01*X086578Y242022D02*X086578Y240178D01* X086578Y240178D02*X088422Y240178D01*X088422Y238178D02*X088422Y240022D01* X088422Y240022D02*X086578Y240022D01*X086578Y240022D02*X086578Y238178D01* X086578Y238178D02*X088422Y238178D01*X088422Y236178D02*X088422Y238022D01* X088422Y238022D02*X086578Y238022D01*X086578Y238022D02*X086578Y236178D01* X086578Y236178D02*X088422Y236178D01*X089785Y283200D02*X089785Y284170D01* X089785Y284170D02*X088815Y284170D01*X088815Y284170D02*X088815Y283200D01* X088815Y283200D02*X089785Y283200D01*X091786Y284165D02*X091786Y286136D01* X091786Y286136D02*X089815Y286136D01*X089815Y286136D02*X089815Y284165D01* X089815Y284165D02*X091786Y284165D01*X090570Y281065D02*X090570Y282035D01* X090570Y282035D02*X089600Y282035D01*X089600Y282035D02*X089600Y281065D01* X089600Y281065D02*X090570Y281065D01*X091786Y277165D02*X091786Y279136D01* X091786Y279136D02*X089815Y279136D01*X089815Y279136D02*X089815Y277165D01* X089815Y277165D02*X091786Y277165D01*X090350Y275865D02*X090350Y276835D01* X090350Y276835D02*X089380Y276835D01*X089380Y276835D02*X089380Y275865D01* X089380Y275865D02*X090350Y275865D01*X091786Y270365D02*X091786Y272336D01* X091786Y272336D02*X089815Y272336D01*X089815Y272336D02*X089815Y270365D01* X089815Y270365D02*X091786Y270365D01*X090350Y268965D02*X090350Y269935D01* X090350Y269935D02*X089380Y269935D01*X089380Y269935D02*X089380Y268965D01* X089380Y268965D02*X090350Y268965D01*X090422Y254178D02*X090422Y256022D01* X090422Y256022D02*X088578Y256022D01*X088578Y256022D02*X088578Y254178D01* X088578Y254178D02*X090422Y254178D01*X090422Y252178D02*X090422Y254022D01* X090422Y254022D02*X088578Y254022D01*X088578Y254022D02*X088578Y252178D01* X088578Y252178D02*X090422Y252178D01*X090422Y250178D02*X090422Y252022D01* X090422Y252022D02*X088578Y252022D01*X088578Y252022D02*X088578Y250178D01* X088578Y250178D02*X090422Y250178D01*X090422Y248178D02*X090422Y250022D01* X090422Y250022D02*X088578Y250022D01*X088578Y250022D02*X088578Y248178D01* X088578Y248178D02*X090422Y248178D01*X090422Y246178D02*X090422Y248022D01* X090422Y248022D02*X088578Y248022D01*X088578Y248022D02*X088578Y246178D01* X088578Y246178D02*X090422Y246178D01*X090422Y244178D02*X090422Y246022D01* X090422Y246022D02*X088578Y246022D01*X088578Y246022D02*X088578Y244178D01* X088578Y244178D02*X090422Y244178D01*X090422Y242178D02*X090422Y244022D01* X090422Y244022D02*X088578Y244022D01*X088578Y244022D02*X088578Y242178D01* X088578Y242178D02*X090422Y242178D01*X090422Y240178D02*X090422Y242022D01* X090422Y242022D02*X088578Y242022D01*X088578Y242022D02*X088578Y240178D01* X088578Y240178D02*X090422Y240178D01*X090422Y238178D02*X090422Y240022D01* X090422Y240022D02*X088578Y240022D01*X088578Y240022D02*X088578Y238178D01* X088578Y238178D02*X090422Y238178D01*X090422Y236178D02*X090422Y238022D01* X090422Y238022D02*X088578Y238022D01*X088578Y238022D02*X088578Y236178D01* X088578Y236178D02*X090422Y236178D01*X094326Y284165D02*X094326Y286136D01* X094326Y286136D02*X092355Y286136D01*X092355Y286136D02*X092355Y284165D01* X092355Y284165D02*X094326Y284165D01*X093850Y281265D02*X093850Y282235D01* X093850Y282235D02*X092880Y282235D01*X092880Y282235D02*X092880Y281265D01* X092880Y281265D02*X093850Y281265D01*X094326Y277165D02*X094326Y279136D01* X094326Y279136D02*X092355Y279136D01*X092355Y279136D02*X092355Y277165D01* X092355Y277165D02*X094326Y277165D01*X094326Y270365D02*X094326Y272336D01* X094326Y272336D02*X092355Y272336D01*X092355Y272336D02*X092355Y270365D01* X092355Y270365D02*X094326Y270365D01*X092422Y254178D02*X092422Y256022D01* X092422Y256022D02*X090578Y256022D01*X090578Y256022D02*X090578Y254178D01* X090578Y254178D02*X092422Y254178D01*X092422Y252178D02*X092422Y254022D01* X092422Y254022D02*X090578Y254022D01*X090578Y254022D02*X090578Y252178D01* X090578Y252178D02*X092422Y252178D01*X092422Y250178D02*X092422Y252022D01* X092422Y252022D02*X090578Y252022D01*X090578Y252022D02*X090578Y250178D01* X090578Y250178D02*X092422Y250178D01*X092422Y248178D02*X092422Y250022D01* X092422Y250022D02*X090578Y250022D01*X090578Y250022D02*X090578Y248178D01* X090578Y248178D02*X092422Y248178D01*X092422Y246178D02*X092422Y248022D01* X092422Y248022D02*X090578Y248022D01*X090578Y248022D02*X090578Y246178D01* X090578Y246178D02*X092422Y246178D01*X092422Y244178D02*X092422Y246022D01* X092422Y246022D02*X090578Y246022D01*X090578Y246022D02*X090578Y244178D01* X090578Y244178D02*X092422Y244178D01*X092422Y242178D02*X092422Y244022D01* X092422Y244022D02*X090578Y244022D01*X090578Y244022D02*X090578Y242178D01* X090578Y242178D02*X092422Y242178D01*X092422Y240178D02*X092422Y242022D01* X092422Y242022D02*X090578Y242022D01*X090578Y242022D02*X090578Y240178D01* X090578Y240178D02*X092422Y240178D01*X092422Y238178D02*X092422Y240022D01* X092422Y240022D02*X090578Y240022D01*X090578Y240022D02*X090578Y238178D01* X090578Y238178D02*X092422Y238178D01*X092422Y236178D02*X092422Y238022D01* X092422Y238022D02*X090578Y238022D01*X090578Y238022D02*X090578Y236178D01* X090578Y236178D02*X092422Y236178D01*X091786Y228565D02*X091786Y230536D01* X091786Y230536D02*X089815Y230536D01*X089815Y230536D02*X089815Y228565D01* X089815Y228565D02*X091786Y228565D01*X090350Y227165D02*X090350Y228135D01* X090350Y228135D02*X089380Y228135D01*X089380Y228135D02*X089380Y227165D01* X089380Y227165D02*X090350Y227165D01*X090350Y225765D02*X090350Y226735D01* X090350Y226735D02*X089380Y226735D01*X089380Y226735D02*X089380Y225765D01* X089380Y225765D02*X090350Y225765D01*X091786Y221665D02*X091786Y223636D01* X091786Y223636D02*X089815Y223636D01*X089815Y223636D02*X089815Y221665D01* X089815Y221665D02*X091786Y221665D01*X090350Y220365D02*X090350Y221335D01* X090350Y221335D02*X089380Y221335D01*X089380Y221335D02*X089380Y220365D01* X089380Y220365D02*X090350Y220365D01*X090350Y218965D02*X090350Y219935D01* X090350Y219935D02*X089380Y219935D01*X089380Y219935D02*X089380Y218965D01* X089380Y218965D02*X090350Y218965D01*X096866Y284165D02*X096866Y286136D01* X096866Y286136D02*X094895Y286136D01*X094895Y286136D02*X094895Y284165D01* X094895Y284165D02*X096866Y284165D01*X097420Y281315D02*X097420Y282285D01* X097420Y282285D02*X096450Y282285D01*X096450Y282285D02*X096450Y281315D01* X096450Y281315D02*X097420Y281315D01*X096866Y277165D02*X096866Y279136D01* X096866Y279136D02*X094895Y279136D01*X094895Y279136D02*X094895Y277165D01* X094895Y277165D02*X096866Y277165D01*X099406Y284165D02*X099406Y286136D01* X099406Y286136D02*X097435Y286136D01*X097435Y286136D02*X097435Y284165D01* X097435Y284165D02*X099406Y284165D01*X099406Y277165D02*X099406Y279136D01* X099406Y279136D02*X097435Y279136D01*X097435Y279136D02*X097435Y277165D01* X097435Y277165D02*X099406Y277165D01*X097520Y274415D02*X097520Y275385D01* X097520Y275385D02*X096550Y275385D01*X096550Y275385D02*X096550Y274415D01* X096550Y274415D02*X097520Y274415D01*X096866Y270365D02*X096866Y272336D01* X096866Y272336D02*X094895Y272336D01*X094895Y272336D02*X094895Y270365D01* X094895Y270365D02*X096866Y270365D01*X097320Y268965D02*X097320Y269935D01* X097320Y269935D02*X096350Y269935D01*X096350Y269935D02*X096350Y268965D01* X096350Y268965D02*X097320Y268965D01*X096562Y252038D02*X096562Y256162D01* X096562Y256162D02*X092438Y256162D01*X092438Y256162D02*X092438Y252038D01* X092438Y252038D02*X096562Y252038D01*X094422Y250178D02*X094422Y252022D01* X094422Y252022D02*X092578Y252022D01*X092578Y252022D02*X092578Y250178D01* X092578Y250178D02*X094422Y250178D01*X096422Y250178D02*X096422Y252022D01* X096422Y252022D02*X094578Y252022D01*X094578Y252022D02*X094578Y250178D01* X094578Y250178D02*X096422Y250178D01*X096562Y248038D02*X096562Y250162D01* X096562Y250162D02*X092438Y250162D01*X092438Y250162D02*X092438Y248038D01* X092438Y248038D02*X096562Y248038D01*X094422Y246178D02*X094422Y248022D01* X094422Y248022D02*X092578Y248022D01*X092578Y248022D02*X092578Y246178D01* X092578Y246178D02*X094422Y246178D01*X094422Y244178D02*X094422Y246022D01* X094422Y246022D02*X092578Y246022D01*X092578Y246022D02*X092578Y244178D01* X092578Y244178D02*X094422Y244178D01*X094422Y242178D02*X094422Y244022D01* X094422Y244022D02*X092578Y244022D01*X092578Y244022D02*X092578Y242178D01* X092578Y242178D02*X094422Y242178D01*X094422Y240178D02*X094422Y242022D01* X094422Y242022D02*X092578Y242022D01*X092578Y242022D02*X092578Y240178D01* X092578Y240178D02*X094422Y240178D01*X094422Y238178D02*X094422Y240022D01* X094422Y240022D02*X092578Y240022D01*X092578Y240022D02*X092578Y238178D01* X092578Y238178D02*X094422Y238178D01*X094422Y236178D02*X094422Y238022D01* X094422Y238022D02*X092578Y238022D01*X092578Y238022D02*X092578Y236178D01* X092578Y236178D02*X094422Y236178D01*X094326Y228565D02*X094326Y230536D01* X094326Y230536D02*X092355Y230536D01*X092355Y230536D02*X092355Y228565D01* X092355Y228565D02*X094326Y228565D01*X094326Y221665D02*X094326Y223636D01* X094326Y223636D02*X092355Y223636D01*X092355Y223636D02*X092355Y221665D01* X092355Y221665D02*X094326Y221665D01*X096422Y246178D02*X096422Y248022D01* X096422Y248022D02*X094578Y248022D01*X094578Y248022D02*X094578Y246178D01* X094578Y246178D02*X096422Y246178D01*X096422Y244178D02*X096422Y246022D01* X096422Y246022D02*X094578Y246022D01*X094578Y246022D02*X094578Y244178D01* X094578Y244178D02*X096422Y244178D01*X096422Y242178D02*X096422Y244022D01* X096422Y244022D02*X094578Y244022D01*X094578Y244022D02*X094578Y242178D01* X094578Y242178D02*X096422Y242178D01*X096422Y240178D02*X096422Y242022D01* X096422Y242022D02*X094578Y242022D01*X094578Y242022D02*X094578Y240178D01* X094578Y240178D02*X096422Y240178D01*X096422Y238178D02*X096422Y240022D01* X096422Y240022D02*X094578Y240022D01*X094578Y240022D02*X094578Y238178D01* X094578Y238178D02*X096422Y238178D01*X096422Y236178D02*X096422Y238022D01* X096422Y238022D02*X094578Y238022D01*X094578Y238022D02*X094578Y236178D01* X094578Y236178D02*X096422Y236178D01*X099406Y270365D02*X099406Y272336D01* X099406Y272336D02*X097435Y272336D01*X097435Y272336D02*X097435Y270365D01* X097435Y270365D02*X099406Y270365D01*X098422Y254178D02*X098422Y256022D01* X098422Y256022D02*X096578Y256022D01*X096578Y256022D02*X096578Y254178D01* X096578Y254178D02*X098422Y254178D01*X098422Y252178D02*X098422Y254022D01* X098422Y254022D02*X096578Y254022D01*X096578Y254022D02*X096578Y252178D01* X096578Y252178D02*X098422Y252178D01*X098422Y250178D02*X098422Y252022D01* X098422Y252022D02*X096578Y252022D01*X096578Y252022D02*X096578Y250178D01* X096578Y250178D02*X098422Y250178D01*X098422Y248178D02*X098422Y250022D01* X098422Y250022D02*X096578Y250022D01*X096578Y250022D02*X096578Y248178D01* X096578Y248178D02*X098422Y248178D01*X098422Y246178D02*X098422Y248022D01* X098422Y248022D02*X096578Y248022D01*X096578Y248022D02*X096578Y246178D01* X096578Y246178D02*X098422Y246178D01*X098422Y244178D02*X098422Y246022D01* X098422Y246022D02*X096578Y246022D01*X096578Y246022D02*X096578Y244178D01* X096578Y244178D02*X098422Y244178D01*X098422Y242178D02*X098422Y244022D01* X098422Y244022D02*X096578Y244022D01*X096578Y244022D02*X096578Y242178D01* X096578Y242178D02*X098422Y242178D01*X098422Y240178D02*X098422Y242022D01* X098422Y242022D02*X096578Y242022D01*X096578Y242022D02*X096578Y240178D01* X096578Y240178D02*X098422Y240178D01*X098422Y238178D02*X098422Y240022D01* X098422Y240022D02*X096578Y240022D01*X096578Y240022D02*X096578Y238178D01* X096578Y238178D02*X098422Y238178D01*X098422Y236178D02*X098422Y238022D01* X098422Y238022D02*X096578Y238022D01*X096578Y238022D02*X096578Y236178D01* X096578Y236178D02*X098422Y236178D01*X096866Y228565D02*X096866Y230536D01* X096866Y230536D02*X094895Y230536D01*X094895Y230536D02*X094895Y228565D01* X094895Y228565D02*X096866Y228565D01*X097320Y227165D02*X097320Y228135D01* X097320Y228135D02*X096350Y228135D01*X096350Y228135D02*X096350Y227165D01* X096350Y227165D02*X097320Y227165D01*X097320Y225765D02*X097320Y226735D01* X097320Y226735D02*X096350Y226735D01*X096350Y226735D02*X096350Y225765D01* X096350Y225765D02*X097320Y225765D01*X096866Y221665D02*X096866Y223636D01* X096866Y223636D02*X094895Y223636D01*X094895Y223636D02*X094895Y221665D01* X094895Y221665D02*X096866Y221665D01*X097320Y220365D02*X097320Y221335D01* X097320Y221335D02*X096350Y221335D01*X096350Y221335D02*X096350Y220365D01* X096350Y220365D02*X097320Y220365D01*X102562Y248038D02*X102562Y256162D01* X102562Y256162D02*X098438Y256162D01*X098438Y256162D02*X098438Y248038D01* X098438Y248038D02*X102562Y248038D01*X100422Y246178D02*X100422Y248022D01* X100422Y248022D02*X098578Y248022D01*X098578Y248022D02*X098578Y246178D01* X098578Y246178D02*X100422Y246178D01*X100422Y244178D02*X100422Y246022D01* X100422Y246022D02*X098578Y246022D01*X098578Y246022D02*X098578Y244178D01* X098578Y244178D02*X100422Y244178D01*X100422Y242178D02*X100422Y244022D01* X100422Y244022D02*X098578Y244022D01*X098578Y244022D02*X098578Y242178D01* X098578Y242178D02*X100422Y242178D01*X100422Y240178D02*X100422Y242022D01* X100422Y242022D02*X098578Y242022D01*X098578Y242022D02*X098578Y240178D01* X098578Y240178D02*X100422Y240178D01*X100422Y238178D02*X100422Y240022D01* X100422Y240022D02*X098578Y240022D01*X098578Y240022D02*X098578Y238178D01* X098578Y238178D02*X100422Y238178D01*X100422Y236178D02*X100422Y238022D01* X100422Y238022D02*X098578Y238022D01*X098578Y238022D02*X098578Y236178D01* X098578Y236178D02*X100422Y236178D01*X099406Y228565D02*X099406Y230536D01* X099406Y230536D02*X097435Y230536D01*X097435Y230536D02*X097435Y228565D01* X097435Y228565D02*X099406Y228565D01*X099406Y221665D02*X099406Y223636D01* X099406Y223636D02*X097435Y223636D01*X097435Y223636D02*X097435Y221665D01* X097435Y221665D02*X099406Y221665D01*X102422Y246178D02*X102422Y248022D01* X102422Y248022D02*X100578Y248022D01*X100578Y248022D02*X100578Y246178D01* X100578Y246178D02*X102422Y246178D01*X102422Y244178D02*X102422Y246022D01* X102422Y246022D02*X100578Y246022D01*X100578Y246022D02*X100578Y244178D01* X100578Y244178D02*X102422Y244178D01*X102422Y242178D02*X102422Y244022D01* X102422Y244022D02*X100578Y244022D01*X100578Y244022D02*X100578Y242178D01* X100578Y242178D02*X102422Y242178D01*X102422Y240178D02*X102422Y242022D01* X102422Y242022D02*X100578Y242022D01*X100578Y242022D02*X100578Y240178D01* X100578Y240178D02*X102422Y240178D01*X102422Y238178D02*X102422Y240022D01* X102422Y240022D02*X100578Y240022D01*X100578Y240022D02*X100578Y238178D01* X100578Y238178D02*X102422Y238178D01*X102422Y236178D02*X102422Y238022D01* X102422Y238022D02*X100578Y238022D01*X100578Y238022D02*X100578Y236178D01* X100578Y236178D02*X102422Y236178D01*X111890Y279030D02*X111890Y281684D01* X111890Y281684D02*X114110Y281684D01*X114110Y281684D02*X114110Y279030D01* X114110Y279030D02*X116970Y279030D01*X116970Y279030D02*X116970Y281890D01* X116970Y281890D02*X114316Y281890D01*X114316Y281890D02*X114316Y284110D01* X114316Y284110D02*X116970Y284110D01*X116970Y284110D02*X116970Y286970D01* X116970Y286970D02*X114110Y286970D01*X114110Y286970D02*X114110Y284316D01* X114110Y284316D02*X111890Y284316D01*X111890Y284316D02*X111890Y286970D01* X111890Y286970D02*X109030Y286970D01*X109030Y286970D02*X109030Y284110D01* X109030Y284110D02*X111684Y284110D01*X111684Y284110D02*X111684Y281890D01* X111684Y281890D02*X109030Y281890D01*X109030Y281890D02*X109030Y279030D01* X109030Y279030D02*X111890Y279030D01*X111890Y267030D02*X111890Y269684D01* X111890Y269684D02*X114110Y269684D01*X114110Y269684D02*X114110Y267030D01* X114110Y267030D02*X116970Y267030D01*X116970Y267030D02*X116970Y269890D01* X116970Y269890D02*X114316Y269890D01*X114316Y269890D02*X114316Y272110D01* X114316Y272110D02*X116970Y272110D01*X116970Y272110D02*X116970Y274970D01* X116970Y274970D02*X114110Y274970D01*X114110Y274970D02*X114110Y272316D01* X114110Y272316D02*X111890Y272316D01*X111890Y272316D02*X111890Y274970D01* X111890Y274970D02*X109030Y274970D01*X109030Y274970D02*X109030Y272110D01* X109030Y272110D02*X111684Y272110D01*X111684Y272110D02*X111684Y269890D01* X111684Y269890D02*X109030Y269890D01*X109030Y269890D02*X109030Y267030D01* X109030Y267030D02*X111890Y267030D01*X111890Y255030D02*X111890Y257824D01* X111890Y257824D02*X114110Y257824D01*X114110Y257824D02*X114110Y255030D01* X114110Y255030D02*X116970Y255030D01*X116970Y255030D02*X116970Y257890D01* X116970Y257890D02*X114176Y257890D01*X114176Y257890D02*X114176Y260110D01* X114176Y260110D02*X116970Y260110D01*X116970Y260110D02*X116970Y262970D01* X116970Y262970D02*X114110Y262970D01*X114110Y262970D02*X114110Y260176D01* X114110Y260176D02*X111890Y260176D01*X111890Y260176D02*X111890Y262970D01* X111890Y262970D02*X109030Y262970D01*X109030Y262970D02*X109030Y260110D01* X109030Y260110D02*X111824Y260110D01*X111824Y260110D02*X111824Y257890D01* X111824Y257890D02*X109030Y257890D01*X109030Y257890D02*X109030Y255030D01* X109030Y255030D02*X111890Y255030D01*X115925Y253175D02*X115925Y254425D01* X115925Y254425D02*X114675Y254425D01*X114675Y254425D02*X114675Y253175D01* X114675Y253175D02*X115925Y253175D01*X115925Y251575D02*X115925Y252825D01* X115925Y252825D02*X114675Y252825D01*X114675Y252825D02*X114675Y251575D01* X114675Y251575D02*X115925Y251575D01*X111890Y243030D02*X111890Y245824D01* X111890Y245824D02*X114110Y245824D01*X114110Y245824D02*X114110Y243030D01* X114110Y243030D02*X116970Y243030D01*X116970Y243030D02*X116970Y245890D01* X116970Y245890D02*X114176Y245890D01*X114176Y245890D02*X114176Y248110D01* X114176Y248110D02*X116970Y248110D01*X116970Y248110D02*X116970Y250970D01* X116970Y250970D02*X114110Y250970D01*X114110Y250970D02*X114110Y248176D01* X114110Y248176D02*X111890Y248176D01*X111890Y248176D02*X111890Y250970D01* X111890Y250970D02*X109030Y250970D01*X109030Y250970D02*X109030Y248110D01* X109030Y248110D02*X111824Y248110D01*X111824Y248110D02*X111824Y245890D01* X111824Y245890D02*X109030Y245890D01*X109030Y245890D02*X109030Y243030D01* X109030Y243030D02*X111890Y243030D01*X111890Y231030D02*X111890Y233684D01* X111890Y233684D02*X114110Y233684D01*X114110Y233684D02*X114110Y231030D01* X114110Y231030D02*X116970Y231030D01*X116970Y231030D02*X116970Y233890D01* X116970Y233890D02*X114316Y233890D01*X114316Y233890D02*X114316Y236110D01* X114316Y236110D02*X116970Y236110D01*X116970Y236110D02*X116970Y238970D01* X116970Y238970D02*X114110Y238970D01*X114110Y238970D02*X114110Y236316D01* X114110Y236316D02*X111890Y236316D01*X111890Y236316D02*X111890Y238970D01* X111890Y238970D02*X109030Y238970D01*X109030Y238970D02*X109030Y236110D01* X109030Y236110D02*X111684Y236110D01*X111684Y236110D02*X111684Y233890D01* X111684Y233890D02*X109030Y233890D01*X109030Y233890D02*X109030Y231030D01* X109030Y231030D02*X111890Y231030D01*X111890Y219030D02*X111890Y221684D01* X111890Y221684D02*X114110Y221684D01*X114110Y221684D02*X114110Y219030D01* X114110Y219030D02*X116970Y219030D01*X116970Y219030D02*X116970Y221890D01* X116970Y221890D02*X114316Y221890D01*X114316Y221890D02*X114316Y224110D01* X114316Y224110D02*X116970Y224110D01*X116970Y224110D02*X116970Y226970D01* X116970Y226970D02*X114110Y226970D01*X114110Y226970D02*X114110Y224316D01* X114110Y224316D02*X111890Y224316D01*X111890Y224316D02*X111890Y226970D01* X111890Y226970D02*X109030Y226970D01*X109030Y226970D02*X109030Y224110D01* X109030Y224110D02*X111684Y224110D01*X111684Y224110D02*X111684Y221890D01* X111684Y221890D02*X109030Y221890D01*X109030Y221890D02*X109030Y219030D01* X109030Y219030D02*X111890Y219030D01*X126890Y279030D02*X126890Y281824D01* X126890Y281824D02*X129110Y281824D01*X129110Y281824D02*X129110Y279030D01* X129110Y279030D02*X131970Y279030D01*X131970Y279030D02*X131970Y281890D01* X131970Y281890D02*X129176Y281890D01*X129176Y281890D02*X129176Y284110D01* X129176Y284110D02*X131970Y284110D01*X131970Y284110D02*X131970Y286970D01* X131970Y286970D02*X129110Y286970D01*X129110Y286970D02*X129110Y284176D01* X129110Y284176D02*X126890Y284176D01*X126890Y284176D02*X126890Y286970D01* X126890Y286970D02*X124030Y286970D01*X124030Y286970D02*X124030Y284110D01* X124030Y284110D02*X126824Y284110D01*X126824Y284110D02*X126824Y281890D01* X126824Y281890D02*X124030Y281890D01*X124030Y281890D02*X124030Y279030D01* X124030Y279030D02*X126890Y279030D01*X130925Y277175D02*X130925Y278425D01* X130925Y278425D02*X129675Y278425D01*X129675Y278425D02*X129675Y277175D01* X129675Y277175D02*X130925Y277175D01*X130925Y275575D02*X130925Y276825D01* X130925Y276825D02*X129675Y276825D01*X129675Y276825D02*X129675Y275575D01* X129675Y275575D02*X130925Y275575D01*X126890Y267030D02*X126890Y269824D01* X126890Y269824D02*X129110Y269824D01*X129110Y269824D02*X129110Y267030D01* X129110Y267030D02*X131970Y267030D01*X131970Y267030D02*X131970Y269890D01* X131970Y269890D02*X129176Y269890D01*X129176Y269890D02*X129176Y272110D01* X129176Y272110D02*X131970Y272110D01*X131970Y272110D02*X131970Y274970D01* X131970Y274970D02*X129110Y274970D01*X129110Y274970D02*X129110Y272176D01* X129110Y272176D02*X126890Y272176D01*X126890Y272176D02*X126890Y274970D01* X126890Y274970D02*X124030Y274970D01*X124030Y274970D02*X124030Y272110D01* X124030Y272110D02*X126824Y272110D01*X126824Y272110D02*X126824Y269890D01* X126824Y269890D02*X124030Y269890D01*X124030Y269890D02*X124030Y267030D01* X124030Y267030D02*X126890Y267030D01*X126890Y255030D02*X126890Y257824D01* X126890Y257824D02*X129110Y257824D01*X129110Y257824D02*X129110Y255030D01* X129110Y255030D02*X131970Y255030D01*X131970Y255030D02*X131970Y257890D01* X131970Y257890D02*X129176Y257890D01*X129176Y257890D02*X129176Y260110D01* X129176Y260110D02*X131970Y260110D01*X131970Y260110D02*X131970Y262970D01* X131970Y262970D02*X129110Y262970D01*X129110Y262970D02*X129110Y260176D01* X129110Y260176D02*X126890Y260176D01*X126890Y260176D02*X126890Y262970D01* X126890Y262970D02*X124030Y262970D01*X124030Y262970D02*X124030Y260110D01* X124030Y260110D02*X126824Y260110D01*X126824Y260110D02*X126824Y257890D01* X126824Y257890D02*X124030Y257890D01*X124030Y257890D02*X124030Y255030D01* X124030Y255030D02*X126890Y255030D01*X130925Y253175D02*X130925Y254425D01* X130925Y254425D02*X129675Y254425D01*X129675Y254425D02*X129675Y253175D01* X129675Y253175D02*X130925Y253175D01*X130925Y251575D02*X130925Y252825D01* X130925Y252825D02*X129675Y252825D01*X129675Y252825D02*X129675Y251575D01* X129675Y251575D02*X130925Y251575D01*X126890Y243030D02*X126890Y245824D01* X126890Y245824D02*X129110Y245824D01*X129110Y245824D02*X129110Y243030D01* X129110Y243030D02*X131970Y243030D01*X131970Y243030D02*X131970Y245890D01* X131970Y245890D02*X129176Y245890D01*X129176Y245890D02*X129176Y248110D01* X129176Y248110D02*X131970Y248110D01*X131970Y248110D02*X131970Y250970D01* X131970Y250970D02*X129110Y250970D01*X129110Y250970D02*X129110Y248176D01* X129110Y248176D02*X126890Y248176D01*X126890Y248176D02*X126890Y250970D01* X126890Y250970D02*X124030Y250970D01*X124030Y250970D02*X124030Y248110D01* X124030Y248110D02*X126824Y248110D01*X126824Y248110D02*X126824Y245890D01* X126824Y245890D02*X124030Y245890D01*X124030Y245890D02*X124030Y243030D01* X124030Y243030D02*X126890Y243030D01*X126890Y231030D02*X126890Y233824D01* X126890Y233824D02*X129110Y233824D01*X129110Y233824D02*X129110Y231030D01* X129110Y231030D02*X131970Y231030D01*X131970Y231030D02*X131970Y233890D01* X131970Y233890D02*X129176Y233890D01*X129176Y233890D02*X129176Y236110D01* X129176Y236110D02*X131970Y236110D01*X131970Y236110D02*X131970Y238970D01* X131970Y238970D02*X129110Y238970D01*X129110Y238970D02*X129110Y236176D01* X129110Y236176D02*X126890Y236176D01*X126890Y236176D02*X126890Y238970D01* X126890Y238970D02*X124030Y238970D01*X124030Y238970D02*X124030Y236110D01* X124030Y236110D02*X126824Y236110D01*X126824Y236110D02*X126824Y233890D01* X126824Y233890D02*X124030Y233890D01*X124030Y233890D02*X124030Y231030D01* X124030Y231030D02*X126890Y231030D01*X130925Y229175D02*X130925Y230425D01* X130925Y230425D02*X129675Y230425D01*X129675Y230425D02*X129675Y229175D01* X129675Y229175D02*X130925Y229175D01*X130925Y227575D02*X130925Y228825D01* X130925Y228825D02*X129675Y228825D01*X129675Y228825D02*X129675Y227575D01* X129675Y227575D02*X130925Y227575D01*X126890Y219030D02*X126890Y221824D01* X126890Y221824D02*X129110Y221824D01*X129110Y221824D02*X129110Y219030D01* X129110Y219030D02*X131970Y219030D01*X131970Y219030D02*X131970Y221890D01* X131970Y221890D02*X129176Y221890D01*X129176Y221890D02*X129176Y224110D01* X129176Y224110D02*X131970Y224110D01*X131970Y224110D02*X131970Y226970D01* X131970Y226970D02*X129110Y226970D01*X129110Y226970D02*X129110Y224176D01* X129110Y224176D02*X126890Y224176D01*X126890Y224176D02*X126890Y226970D01* X126890Y226970D02*X124030Y226970D01*X124030Y226970D02*X124030Y224110D01* X124030Y224110D02*X126824Y224110D01*X126824Y224110D02*X126824Y221890D01* X126824Y221890D02*X124030Y221890D01*X124030Y221890D02*X124030Y219030D01* X124030Y219030D02*X126890Y219030D01*X134005Y266008D02*X134005Y267258D01* X134005Y267258D02*X132755Y267258D01*X132755Y267258D02*X132755Y266008D01* X132755Y266008D02*X134005Y266008D01*X133890Y263775D02*X133890Y265025D01* X133890Y265025D02*X132640Y265025D01*X132640Y265025D02*X132640Y263775D01* X132640Y263775D02*X133890Y263775D01*X133448Y261900D02*X133448Y263150D01* X133448Y263150D02*X132198Y263150D01*X132198Y263150D02*X132198Y261900D01* X132198Y261900D02*X133448Y261900D01*X134882Y260040D02*X134882Y261290D01* X134882Y261290D02*X133632Y261290D01*X133632Y261290D02*X133632Y260040D01* X133632Y260040D02*X134882Y260040D01*X133755Y253175D02*X133755Y254425D01* X133755Y254425D02*X132505Y254425D01*X132505Y254425D02*X132505Y253175D01* X132505Y253175D02*X133755Y253175D01*X133805Y251415D02*X133805Y252665D01* X133805Y252665D02*X132555Y252665D01*X132555Y252665D02*X132555Y251415D01* X132555Y251415D02*X133805Y251415D01*X133890Y249875D02*X133890Y251125D01* X133890Y251125D02*X132640Y251125D01*X132640Y251125D02*X132640Y249875D01* X132640Y249875D02*X133890Y249875D01*X133890Y248475D02*X133890Y249725D01* X133890Y249725D02*X132640Y249725D01*X132640Y249725D02*X132640Y248475D01* X132640Y248475D02*X133890Y248475D01*X139160Y272640D02*X139160Y275560D01* X139160Y275560D02*X136840Y275560D01*X136840Y275560D02*X136840Y272640D01* X136840Y272640D02*X139160Y272640D01*X139160Y268640D02*X139160Y271560D01* X139160Y271560D02*X136840Y271560D01*X136840Y271560D02*X136840Y268640D01* X136840Y268640D02*X139160Y268640D01*X136960Y263775D02*X136960Y264665D01* X136960Y264665D02*X137116Y264665D01*X137116Y264665D02*X137116Y265915D01* X137116Y265915D02*X135866Y265915D01*X135866Y265915D02*X135866Y265025D01* X135866Y265025D02*X135710Y265025D01*X135710Y265025D02*X135710Y263775D01* X135710Y263775D02*X136960Y263775D01*X136960Y249875D02*X136960Y251125D01* X136960Y251125D02*X135710Y251125D01*X135710Y251125D02*X135710Y249875D01* X135710Y249875D02*X136960Y249875D01*X136966Y248499D02*X136966Y249749D01* X136966Y249749D02*X135716Y249749D01*X135716Y249749D02*X135716Y248499D01* X135716Y248499D02*X136966Y248499D01*X142890Y279030D02*X142890Y281684D01* X142890Y281684D02*X145110Y281684D01*X145110Y281684D02*X145110Y279030D01* X145110Y279030D02*X147970Y279030D01*X147970Y279030D02*X147970Y281890D01* X147970Y281890D02*X145316Y281890D01*X145316Y281890D02*X145316Y284110D01* X145316Y284110D02*X147970Y284110D01*X147970Y284110D02*X147970Y286970D01* X147970Y286970D02*X145110Y286970D01*X145110Y286970D02*X145110Y284316D01* X145110Y284316D02*X142890Y284316D01*X142890Y284316D02*X142890Y286970D01* X142890Y286970D02*X140030Y286970D01*X140030Y286970D02*X140030Y284110D01* X140030Y284110D02*X142684Y284110D01*X142684Y284110D02*X142684Y281890D01* X142684Y281890D02*X140030Y281890D01*X140030Y281890D02*X140030Y279030D01* X140030Y279030D02*X142890Y279030D01*X140160Y265090D02*X140160Y267410D01* X140160Y267410D02*X137240Y267410D01*X137240Y267410D02*X137240Y265090D01* X137240Y265090D02*X140160Y265090D01*X140160Y260290D02*X140160Y260965D01* X140160Y260965D02*X140936Y260965D01*X140936Y260965D02*X140936Y261935D01* X140936Y261935D02*X140160Y261935D01*X140160Y261935D02*X140160Y262610D01* X140160Y262610D02*X137240Y262610D01*X137240Y262610D02*X137240Y260290D01* X137240Y260290D02*X140160Y260290D01*X140060Y253740D02*X140060Y255060D01* X140060Y255060D02*X138940Y255060D01*X138940Y255060D02*X138940Y253740D01* X138940Y253740D02*X140060Y253740D01*X140060Y252340D02*X140060Y253660D01* X140060Y253660D02*X138940Y253660D01*X138940Y253660D02*X138940Y252340D01* X138940Y252340D02*X140060Y252340D01*X140060Y250940D02*X140060Y252260D01* X140060Y252260D02*X138940Y252260D01*X138940Y252260D02*X138940Y250940D01* X138940Y250940D02*X140060Y250940D01*X141460Y257540D02*X141460Y258860D01* X141460Y258860D02*X140340Y258860D01*X140340Y258860D02*X140340Y257540D01* X140340Y257540D02*X141460Y257540D01*X141460Y256140D02*X141460Y257460D01* X141460Y257460D02*X140340Y257460D01*X140340Y257460D02*X140340Y256140D01* X140340Y256140D02*X141460Y256140D01*X144100Y272500D02*X144100Y273475D01* X144100Y273475D02*X144925Y273475D01*X144925Y273475D02*X144925Y274725D01* X144925Y274725D02*X144100Y274725D01*X144100Y274725D02*X144100Y275700D01* X144100Y275700D02*X141500Y275700D01*X141500Y275700D02*X141500Y272500D01* X141500Y272500D02*X144100Y272500D01*X143960Y268640D02*X143960Y269615D01* X143960Y269615D02*X144896Y269615D01*X144896Y269615D02*X144896Y270585D01* X144896Y270585D02*X143960Y270585D01*X143960Y270585D02*X143960Y271560D01* X143960Y271560D02*X141640Y271560D01*X141640Y271560D02*X141640Y268640D01* X141640Y268640D02*X143960Y268640D01*X154816Y279130D02*X154816Y278876D01* X154816Y278876D02*X155787Y278876D01*X155787Y278876D02*X155787Y279846D01* X155787Y279846D02*X154890Y279846D01*X154890Y279846D02*X154890Y281784D01* X154890Y281784D02*X157110Y281784D01*X157110Y281784D02*X157110Y279130D01* X157110Y279130D02*X159970Y279130D01*X159970Y279130D02*X159970Y281990D01* X159970Y281990D02*X157316Y281990D01*X157316Y281990D02*X157316Y284210D01* X157316Y284210D02*X159970Y284210D01*X159970Y284210D02*X159970Y287070D01* X159970Y287070D02*X157110Y287070D01*X157110Y287070D02*X157110Y284416D01* X157110Y284416D02*X154890Y284416D01*X154890Y284416D02*X154890Y287070D01* X154890Y287070D02*X152030Y287070D01*X152030Y287070D02*X152030Y284210D01* X152030Y284210D02*X154684Y284210D01*X154684Y284210D02*X154684Y281990D01* X154684Y281990D02*X152030Y281990D01*X152030Y281990D02*X152030Y279130D01* X152030Y279130D02*X154816Y279130D01*X150976Y272796D02*X150976Y273550D01* X150976Y273550D02*X151550Y273550D01*X151550Y273550D02*X151550Y273690D01* X151550Y273690D02*X152510Y273690D01*X152510Y273690D02*X152510Y273930D01* X152510Y273930D02*X152836Y273930D01*X152836Y273930D02*X152836Y273665D01* X152836Y273665D02*X153806Y273665D01*X153806Y273665D02*X153806Y274635D01* X153806Y274635D02*X152836Y274635D01*X152836Y274635D02*X152836Y274370D01* X152836Y274370D02*X152510Y274370D01*X152510Y274370D02*X152510Y274610D01* X152510Y274610D02*X151550Y274610D01*X151550Y274610D02*X151550Y274690D01* X151550Y274690D02*X152510Y274690D01*X152510Y274690D02*X152510Y275610D01* X152510Y275610D02*X151490Y275610D01*X151490Y275610D02*X151490Y274750D01* X151490Y274750D02*X151410Y274750D01*X151410Y274750D02*X151410Y275610D01* X151410Y275610D02*X150390Y275610D01*X150390Y275610D02*X150390Y274750D01* X150390Y274750D02*X150250Y274750D01*X150250Y274750D02*X150250Y274081D01* X150250Y274081D02*X150216Y274046D01*X150216Y274046D02*X149726Y274046D01* X149726Y274046D02*X149726Y272796D01*X149726Y272796D02*X150976Y272796D01* X154796Y277886D02*X154796Y278856D01*X154796Y278856D02*X153826Y278856D01* X153826Y278856D02*X153826Y277886D01*X153826Y277886D02*X154796Y277886D01* X155190Y273825D02*X155190Y273690D01*X155190Y273690D02*X156210Y273690D01* X156210Y273690D02*X156210Y274610D01*X156210Y274610D02*X155385Y274610D01* X155385Y274610D02*X155385Y274690D01*X155385Y274690D02*X156210Y274690D01* X156210Y274690D02*X156210Y275610D01*X156210Y275610D02*X155190Y275610D01* X155190Y275610D02*X155190Y274795D01*X155190Y274795D02*X154415Y274795D01* X154415Y274795D02*X154415Y273825D01*X154415Y273825D02*X155190Y273825D01* X157767Y275906D02*X157767Y276876D01*X157767Y276876D02*X156796Y276876D01* X156796Y276876D02*X156796Y275906D01*X156796Y275906D02*X157767Y275906D01* X162960Y275090D02*X162960Y276210D01*X162960Y276210D02*X161640Y276210D01* X161640Y276210D02*X161640Y275090D01*X161640Y275090D02*X162960Y275090D01* X160675Y273765D02*X160675Y272855D01*X160675Y272855D02*X161645Y272855D01* X161645Y272855D02*X161645Y273690D01*X161645Y273690D02*X162737Y273690D01* X162737Y273690D02*X162737Y272936D01*X162737Y272936D02*X163707Y272936D01* X163707Y272936D02*X163707Y273575D01*X163707Y273575D02*X163720Y273589D01* X163720Y273589D02*X163720Y273690D01*X163720Y273690D02*X164280Y273690D01* X164280Y273690D02*X164280Y273485D01*X164280Y273485D02*X164015Y273485D01* X164015Y273485D02*X164015Y272515D01*X164015Y272515D02*X164985Y272515D01* X164985Y272515D02*X164985Y272936D01*X164985Y272936D02*X165687Y272936D01* X165687Y272936D02*X165687Y273555D01*X165687Y273555D02*X165720Y273589D01* X165720Y273589D02*X165720Y273690D01*X165720Y273690D02*X166010Y273690D01* X166010Y273690D02*X166010Y274610D01*X166010Y274610D02*X162990Y274610D01* X162990Y274610D02*X162990Y273906D01*X162990Y273906D02*X162960Y273906D01* X162960Y273906D02*X162960Y274810D01*X162960Y274810D02*X161640Y274810D01* X161640Y274810D02*X161640Y274470D01*X161640Y274470D02*X161360Y274470D01* X161360Y274470D02*X161360Y274735D01*X161360Y274735D02*X160390Y274735D01* X160390Y274735D02*X160390Y273765D01*X160390Y273765D02*X160675Y273765D01* X164697Y280856D02*X164697Y281826D01*X164697Y281826D02*X163727Y281826D01* X163727Y281826D02*X163727Y280856D01*X163727Y280856D02*X164697Y280856D01* X166365Y279866D02*X167802Y278430D01*X167802Y278430D02*X168290Y278430D01* X168290Y278430D02*X168290Y277990D01*X168290Y277990D02*X169410Y277990D01* X169410Y277990D02*X169410Y279310D01*X169410Y279310D02*X168290Y279310D01* X168290Y279310D02*X168290Y278870D01*X168290Y278870D02*X167984Y278870D01* X167984Y278870D02*X166677Y280178D01*X166677Y280178D02*X166677Y280836D01* X166677Y280836D02*X165707Y280836D01*X165707Y280836D02*X165707Y279866D01* X165707Y279866D02*X166365Y279866D01*X166010Y274690D02*X166010Y275610D01* X166010Y275610D02*X162990Y275610D01*X162990Y275610D02*X162990Y274690D01* X162990Y274690D02*X166010Y274690D01*X169147Y280153D02*X169147Y282047D01* X169147Y282047D02*X167253Y282047D01*X167253Y282047D02*X167253Y280153D01* X167253Y280153D02*X169147Y280153D01*X171687Y280153D02*X171687Y282047D01* X171687Y282047D02*X169793Y282047D01*X169793Y282047D02*X169793Y280153D01* X169793Y280153D02*X171687Y280153D01*X170810Y277990D02*X170810Y278195D01* X170810Y278195D02*X171597Y278195D01*X171597Y278195D02*X171597Y279165D01* X171597Y279165D02*X170810Y279165D01*X170810Y279165D02*X170810Y279310D01* X170810Y279310D02*X169690Y279310D01*X169690Y279310D02*X169690Y277990D01* X169690Y277990D02*X170810Y277990D01*X173607Y282836D02*X173607Y283806D01* X173607Y283806D02*X172637Y283806D01*X172637Y283806D02*X172637Y282836D01* X172637Y282836D02*X173607Y282836D01*X179350Y280830D02*X179350Y283050D01* X179350Y283050D02*X178430Y283050D01*X178430Y283050D02*X178430Y280830D01* X178430Y280830D02*X179350Y280830D01*X180645Y279866D02*X180645Y280836D01* X180645Y280836D02*X180620Y280836D01*X180620Y280836D02*X180620Y283050D01* X180620Y283050D02*X179700Y283050D01*X179700Y283050D02*X179700Y280836D01* X179700Y280836D02*X179675Y280836D01*X179675Y280836D02*X179675Y279866D01* X179675Y279866D02*X180645Y279866D01*X190437Y284816D02*X190437Y285787D01* X190437Y285787D02*X189467Y285787D01*X189467Y285787D02*X189467Y284816D01* X189467Y284816D02*X190437Y284816D01*X191427Y285806D02*X191427Y286777D01* X191427Y286777D02*X190457Y286777D01*X190457Y286777D02*X190457Y285806D01* X190457Y285806D02*X191427Y285806D01*X192040Y286796D02*X192040Y285140D01* X192040Y285140D02*X192815Y285140D01*X192815Y285140D02*X192815Y284390D01* X192815Y284390D02*X193785Y284390D01*X193785Y284390D02*X193785Y285140D01* X193785Y285140D02*X195215Y285140D01*X195215Y285140D02*X195215Y284390D01* X195215Y284390D02*X196185Y284390D01*X196185Y284390D02*X196185Y285140D01* X196185Y285140D02*X196815Y285140D01*X196815Y285140D02*X196815Y284390D01* X196815Y284390D02*X197785Y284390D01*X197785Y284390D02*X197785Y285140D01* X197785Y285140D02*X198415Y285140D01*X198415Y285140D02*X198415Y284390D01* X198415Y284390D02*X199215Y284390D01*X199215Y284390D02*X199215Y284330D01* X199215Y284330D02*X200185Y284330D01*X200185Y284330D02*X200185Y285140D01* X200185Y285140D02*X200960Y285140D01*X200960Y285140D02*X200960Y286860D01* X200960Y286860D02*X195920Y286860D01*X195920Y286860D02*X195920Y287025D01* X195920Y287025D02*X195827Y287119D01*X195827Y287119D02*X196257Y287119D01* X196257Y287119D02*X196257Y288582D01*X196257Y288582D02*X194921Y288582D01* X194921Y288582D02*X194921Y287119D01*X194921Y287119D02*X195369Y287119D01* X195369Y287119D02*X195369Y286954D01*X195369Y286954D02*X195463Y286860D01* X195463Y286860D02*X192417Y286860D01*X192417Y286860D02*X192417Y287061D01* X192417Y287061D02*X193167Y287061D01*X193167Y287061D02*X193224Y287118D01* X193224Y287118D02*X193902Y287118D01*X193902Y287118D02*X193902Y287119D01* X193902Y287119D02*X194479Y287119D01*X194479Y287119D02*X194479Y288582D01* X194479Y288582D02*X193143Y288582D01*X193143Y288582D02*X193143Y287559D01* X193143Y287559D02*X193042Y287559D01*X193042Y287559D02*X192985Y287502D01* X192985Y287502D02*X192417Y287502D01*X192417Y287502D02*X192417Y287767D01* X192417Y287767D02*X191447Y287767D01*X191447Y287767D02*X191447Y286796D01* X191447Y286796D02*X192040Y286796D01*X196850Y281115D02*X196850Y282085D01* X196850Y282085D02*X195880Y282085D01*X195880Y282085D02*X195880Y281115D01* X195880Y281115D02*X196850Y281115D01*X197660Y288290D02*X197660Y289410D01* X197660Y289410D02*X196340Y289410D01*X196340Y289410D02*X196340Y288290D01* X196340Y288290D02*X197660Y288290D01*X197660Y286890D02*X197660Y287230D01* X197660Y287230D02*X197740Y287230D01*X197740Y287230D02*X197740Y286890D01* X197740Y286890D02*X199060Y286890D01*X199060Y286890D02*X199060Y287699D01* X199060Y287699D02*X199140Y287779D01*X199140Y287779D02*X199140Y286890D01* X199140Y286890D02*X200460Y286890D01*X200460Y286890D02*X200460Y287230D01* X200460Y287230D02*X202875Y287230D01*X202875Y287230D02*X202875Y286965D01* X202875Y286965D02*X203380Y286965D01*X203380Y286965D02*X203380Y286065D01* X203380Y286065D02*X204350Y286065D01*X204350Y286065D02*X204350Y287035D01* X204350Y287035D02*X203845Y287035D01*X203845Y287035D02*X203845Y287935D01* X203845Y287935D02*X202875Y287935D01*X202875Y287935D02*X202875Y287670D01* X202875Y287670D02*X200460Y287670D01*X200460Y287670D02*X200460Y287967D01* X200460Y287967D02*X201556Y287967D01*X201556Y287967D02*X201556Y287702D01* X201556Y287702D02*X202526Y287702D01*X202526Y287702D02*X202526Y288672D01* X202526Y288672D02*X201556Y288672D01*X201556Y288672D02*X201556Y288407D01* X201556Y288407D02*X200460Y288407D01*X200460Y288407D02*X200460Y289410D01* X200460Y289410D02*X199140Y289410D01*X199140Y289410D02*X199140Y288401D01* X199140Y288401D02*X199060Y288321D01*X199060Y288321D02*X199060Y289410D01* X199060Y289410D02*X197740Y289410D01*X197740Y289410D02*X197740Y288290D01* X197740Y288290D02*X199029Y288290D01*X199029Y288290D02*X198749Y288010D01* X198749Y288010D02*X197740Y288010D01*X197740Y288010D02*X197740Y287670D01* X197740Y287670D02*X197660Y287670D01*X197660Y287670D02*X197660Y288010D01* X197660Y288010D02*X196340Y288010D01*X196340Y288010D02*X196340Y286890D01* X196340Y286890D02*X197660Y286890D01*X201327Y283826D02*X201327Y284796D01* X201327Y284796D02*X200357Y284796D01*X200357Y284796D02*X200357Y283826D01* X200357Y283826D02*X201327Y283826D01*X205660Y283240D02*X205660Y284360D01* X205660Y284360D02*X204340Y284360D01*X204340Y284360D02*X204340Y283240D01* X204340Y283240D02*X205660Y283240D01*X207932Y286289D02*X207932Y285773D01* X207932Y285773D02*X208902Y285773D01*X208902Y285773D02*X208902Y286743D01* X208902Y286743D02*X208343Y286743D01*X208343Y286743D02*X208343Y287259D01* X208343Y287259D02*X207373Y287259D01*X207373Y287259D02*X207373Y286289D01* X207373Y286289D02*X207932Y286289D01*X213710Y282940D02*X213710Y283860D01* X213710Y283860D02*X208734Y283860D01*X208734Y283860D02*X208734Y284818D01* X208734Y284818D02*X207484Y284818D01*X207484Y284818D02*X207484Y283860D01* X207484Y283860D02*X205690Y283860D01*X205690Y283860D02*X205690Y282940D01* X205690Y282940D02*X213710Y282940D01*X210290Y287280D02*X210290Y284890D01* X210290Y284890D02*X212610Y284890D01*X212610Y284890D02*X212610Y288010D01* X212610Y288010D02*X210510Y288010D01*X210510Y288010D02*X210510Y288250D01* X210510Y288250D02*X209540Y288250D01*X209540Y288250D02*X209540Y287280D01* X209540Y287280D02*X210290Y287280D01*X210238Y284315D02*X210238Y285285D01* X210238Y285285D02*X209267Y285285D01*X209267Y285285D02*X209267Y284315D01* X209267Y284315D02*X210238Y284315D01*X215588Y285771D02*X215588Y286741D01* X215588Y286741D02*X214618Y286741D01*X214618Y286741D02*X214618Y285771D01* X214618Y285771D02*X215588Y285771D01*X216390Y285806D02*X216390Y284890D01* X216390Y284890D02*X218490Y284890D01*X218490Y284890D02*X218490Y284816D01* X218490Y284816D02*X219460Y284816D01*X219460Y284816D02*X219460Y285685D01* X219460Y285685D02*X219650Y285685D01*X219650Y285685D02*X219650Y286656D01* X219650Y286656D02*X218710Y286656D01*X218710Y286656D02*X218710Y286700D01* X218710Y286700D02*X219471Y286700D01*X219471Y286700D02*X219471Y287670D01* X219471Y287670D02*X219460Y287670D01*X219460Y287670D02*X219460Y288465D01* X219460Y288465D02*X218490Y288465D01*X218490Y288465D02*X218490Y288010D01* X218490Y288010D02*X216390Y288010D01*X216390Y288010D02*X216390Y286777D01* X216390Y286777D02*X215640Y286777D01*X215640Y286777D02*X215640Y285806D01* X215640Y285806D02*X216390Y285806D01*X216050Y284034D02*X216050Y285005D01* X216050Y285005D02*X215080Y285005D01*X215080Y285005D02*X215080Y284034D01* X215080Y284034D02*X216050Y284034D01*X214899Y281940D02*X215206Y281632D01* X215206Y281632D02*X215206Y281187D01*X215206Y281187D02*X216176Y281187D01* X216176Y281187D02*X216176Y281940D01*X216176Y281940D02*X217210Y281940D01* X217210Y281940D02*X217210Y282180D01*X217210Y282180D02*X217431Y282180D01* X217431Y282180D02*X217540Y282289D01*X217540Y282289D02*X217540Y281440D01* X217540Y281440D02*X218860Y281440D01*X218860Y281440D02*X218860Y282289D01* X218860Y282289D02*X219610Y282289D01*X219610Y282289D02*X219610Y283259D01* X219610Y283259D02*X218860Y283259D01*X218860Y283259D02*X218860Y283826D01* X218860Y283826D02*X219148Y283826D01*X219148Y283826D02*X219148Y284796D01* X219148Y284796D02*X218178Y284796D01*X218178Y284796D02*X218178Y283960D01* X218178Y283960D02*X218158Y283960D01*X218158Y283960D02*X218158Y284796D01* X218158Y284796D02*X217188Y284796D01*X217188Y284796D02*X217188Y283860D01* X217188Y283860D02*X214190Y283860D01*X214190Y283860D02*X214190Y282940D01* X214190Y282940D02*X217210Y282940D01*X217210Y282940D02*X217210Y283826D01* X217210Y283826D02*X217540Y283826D01*X217540Y283826D02*X217540Y282912D01* X217540Y282912D02*X217249Y282620D01*X217249Y282620D02*X217210Y282620D01* X217210Y282620D02*X217210Y282860D01*X217210Y282860D02*X214190Y282860D01* X214190Y282860D02*X214190Y281940D01*X214190Y281940D02*X214899Y281940D01* X215185Y280415D02*X215185Y281385D01*X215185Y281385D02*X214215Y281385D01* X214215Y281385D02*X214215Y280415D01*X214215Y280415D02*X215185Y280415D01* X218185Y280415D02*X218185Y281385D01*X218185Y281385D02*X217215Y281385D01* X217215Y281385D02*X217215Y280415D01*X217215Y280415D02*X218185Y280415D01* X223108Y286796D02*X223108Y287767D01*X223108Y287767D02*X222138Y287767D01* X222138Y287767D02*X222138Y286796D01*X222138Y286796D02*X223108Y286796D01* X212190Y280410D02*X212190Y281381D01*X212190Y281381D02*X211220Y281381D01* X211220Y281381D02*X211220Y280410D01*X211220Y280410D02*X212190Y280410D01* X213215Y280481D02*X213215Y280415D01*X213215Y280415D02*X214185Y280415D01* X214185Y280415D02*X214185Y281385D01*X214185Y281385D02*X213251Y281385D01* X213251Y281385D02*X213251Y281451D01*X213251Y281451D02*X212281Y281451D01* X212281Y281451D02*X212281Y280481D01*X212281Y280481D02*X213215Y280481D01* X199533Y280425D02*X199533Y279915D01*X199533Y279915D02*X200504Y279915D01* X200504Y279915D02*X200504Y280885D01*X200504Y280885D02*X199939Y280885D01* X199939Y280885D02*X199939Y280996D01*X199939Y280996D02*X200443Y280996D01* X200443Y280996D02*X200443Y281966D01*X200443Y281966D02*X199473Y281966D01* X199473Y281966D02*X199473Y281395D01*X199473Y281395D02*X198969Y281395D01* X198969Y281395D02*X198969Y280425D01*X198969Y280425D02*X199533Y280425D01* X199920Y278721D02*X199920Y279691D01*X199920Y279691D02*X198950Y279691D01* X198950Y279691D02*X198950Y278721D01*X198950Y278721D02*X199920Y278721D01* X189447Y279866D02*X189447Y280836D01*X189447Y280836D02*X188477Y280836D01* X188477Y280836D02*X188477Y279866D01*X188477Y279866D02*X189447Y279866D01* X180537Y270956D02*X180537Y271926D01*X180537Y271926D02*X179567Y271926D01* X179567Y271926D02*X179567Y270956D01*X179567Y270956D02*X180537Y270956D01* X172637Y278396D02*X172637Y277479D01*X172637Y277479D02*X173607Y277479D01* X173607Y277479D02*X173607Y278450D01*X173607Y278450D02*X173485Y278450D01* X173485Y278450D02*X173485Y279340D01*X173485Y279340D02*X176260Y279340D01* X176260Y279340D02*X176260Y281660D01*X176260Y281660D02*X173340Y281660D01* X173340Y281660D02*X173340Y279366D01*X173340Y279366D02*X172515Y279366D01* X172515Y279366D02*X172515Y278396D01*X172515Y278396D02*X172637Y278396D01* X143160Y258990D02*X143160Y260850D01*X143160Y260850D02*X143240Y260850D01* X143240Y260850D02*X143240Y258990D01*X143240Y258990D02*X144160Y258990D01* X144160Y258990D02*X144160Y259015D01*X144160Y259015D02*X144910Y259015D01* X144910Y259015D02*X144910Y259985D01*X144910Y259985D02*X144160Y259985D01* X144160Y259985D02*X144160Y260015D01*X144160Y260015D02*X144910Y260015D01* X144910Y260015D02*X144910Y260875D01*X144910Y260875D02*X145095Y260875D01* X145095Y260875D02*X145095Y261875D01*X145095Y261875D02*X145115Y261875D01* X145115Y261875D02*X145115Y263125D01*X145115Y263125D02*X144300Y263125D01* X144300Y263125D02*X144300Y263150D01*X144300Y263150D02*X143100Y263150D01* X143100Y263150D02*X143100Y263010D01*X143100Y263010D02*X142240Y263010D01* X142240Y263010D02*X142240Y258990D01*X142240Y258990D02*X143160Y258990D01* X142860Y256140D02*X142860Y256240D01*X142860Y256240D02*X144160Y256240D01* X144160Y256240D02*X144160Y256315D01*X144160Y256315D02*X144910Y256315D01* X144910Y256315D02*X144910Y257285D01*X144910Y257285D02*X144160Y257285D01* X144160Y257285D02*X144160Y257360D01*X144160Y257360D02*X142860Y257360D01* X142860Y257360D02*X142860Y257460D01*X142860Y257460D02*X141740Y257460D01* X141740Y257460D02*X141740Y256140D01*X141740Y256140D02*X142860Y256140D01* X143260Y255090D02*X143260Y256110D01*X143260Y256110D02*X142340Y256110D01* X142340Y256110D02*X142340Y255090D01*X142340Y255090D02*X143260Y255090D01* X141460Y250940D02*X141460Y251529D01*X141460Y251529D02*X142334Y251529D01* X142334Y251529D02*X142334Y252499D01*X142334Y252499D02*X141460Y252499D01* X141460Y252499D02*X141460Y253349D01*X141460Y253349D02*X141512Y253401D01* X141512Y253401D02*X141946Y253401D01*X141946Y253401D02*X141946Y253136D01* X141946Y253136D02*X142340Y253136D01*X142340Y253136D02*X142340Y251190D01* X142340Y251190D02*X143200Y251190D01*X143200Y251190D02*X143200Y251050D01* X143200Y251050D02*X143425Y251050D01*X143425Y251050D02*X143425Y250595D01* X143425Y250595D02*X143785Y250235D01*X143785Y250235D02*X143785Y249850D01* X143785Y249850D02*X143200Y249850D01*X143200Y249850D02*X143200Y249710D01* X143200Y249710D02*X142340Y249710D01*X142340Y249710D02*X142340Y248690D01* X142340Y248690D02*X143200Y248690D01*X143200Y248690D02*X143200Y248550D01* X143200Y248550D02*X144400Y248550D01*X144400Y248550D02*X144400Y248775D01* X144400Y248775D02*X145195Y248775D01*X145195Y248775D02*X145596Y249175D01* X145596Y249175D02*X146315Y249175D01*X146315Y249175D02*X146315Y250425D01* X146315Y250425D02*X145065Y250425D01*X145065Y250425D02*X145065Y249706D01* X145065Y249706D02*X145035Y249676D01*X145035Y249676D02*X145035Y250765D01* X145035Y250765D02*X144315Y250765D01*X144315Y250765D02*X144175Y250905D01* X144175Y250905D02*X144175Y251050D01*X144175Y251050D02*X144400Y251050D01* X144400Y251050D02*X144400Y252075D01*X144400Y252075D02*X145215Y252075D01* X145215Y252075D02*X145215Y253325D01*X145215Y253325D02*X144400Y253325D01* X144400Y253325D02*X144400Y253350D01*X144400Y253350D02*X143200Y253350D01* X143200Y253350D02*X143200Y253210D01*X143200Y253210D02*X142916Y253210D01* X142916Y253210D02*X142916Y254106D01*X142916Y254106D02*X141946Y254106D01* X141946Y254106D02*X141946Y253841D01*X141946Y253841D02*X141460Y253841D01* X141460Y253841D02*X141460Y254180D01*X141460Y254180D02*X142679Y254180D01* X142679Y254180D02*X142890Y254391D01*X142890Y254391D02*X143926Y254391D01* X143926Y254391D02*X143926Y254126D01*X143926Y254126D02*X144896Y254126D01* X144896Y254126D02*X144896Y255096D01*X144896Y255096D02*X144260Y255096D01* X144260Y255096D02*X144260Y255380D01*X144260Y255380D02*X144700Y255380D01* X144700Y255380D02*X144916Y255164D01*X144916Y255164D02*X144916Y254505D01* X144916Y254505D02*X145886Y254505D01*X145886Y254505D02*X145886Y255475D01* X145886Y255475D02*X145227Y255475D01*X145227Y255475D02*X144882Y255820D01* X144882Y255820D02*X144260Y255820D01*X144260Y255820D02*X144260Y256110D01* X144260Y256110D02*X143340Y256110D01*X143340Y256110D02*X143340Y255090D01* X143340Y255090D02*X143926Y255090D01*X143926Y255090D02*X143926Y254831D01* X143926Y254831D02*X142707Y254831D01*X142707Y254831D02*X142497Y254620D01* X142497Y254620D02*X141460Y254620D01*X141460Y254620D02*X141460Y255060D01* X141460Y255060D02*X140340Y255060D01*X140340Y255060D02*X140340Y253740D01* X140340Y253740D02*X141229Y253740D01*X141229Y253740D02*X141149Y253660D01* X141149Y253660D02*X140340Y253660D01*X140340Y253660D02*X140340Y252340D01* X140340Y252340D02*X141364Y252340D01*X141364Y252340D02*X141364Y252260D01* X141364Y252260D02*X140340Y252260D01*X140340Y252260D02*X140340Y250940D01* X140340Y250940D02*X141460Y250940D01*X138755Y248985D02*X138755Y249250D01* X138755Y249250D02*X138940Y249250D01*X138940Y249250D02*X138940Y248229D01* X138940Y248229D02*X138190Y248229D01*X138190Y248229D02*X138190Y247259D01* X138190Y247259D02*X138760Y247259D01*X138760Y247259D02*X138839Y247180D01* X138839Y247180D02*X138940Y247180D01*X138940Y247180D02*X138940Y246740D01* X138940Y246740D02*X140060Y246740D01*X140060Y246740D02*X140060Y248060D01* X140060Y248060D02*X139160Y248060D01*X139160Y248060D02*X139160Y248140D01* X139160Y248140D02*X140060Y248140D01*X140060Y248140D02*X140060Y249250D01* X140060Y249250D02*X140239Y249250D01*X140239Y249250D02*X140340Y249149D01* X140340Y249149D02*X140340Y248140D01*X140340Y248140D02*X141460Y248140D01* X141460Y248140D02*X141460Y249460D01*X141460Y249460D02*X140651Y249460D01* X140651Y249460D02*X140571Y249540D01*X140571Y249540D02*X141460Y249540D01* X141460Y249540D02*X141460Y249715D01*X141460Y249715D02*X142275Y249715D01* X142275Y249715D02*X142275Y250685D01*X142275Y250685D02*X141460Y250685D01* X141460Y250685D02*X141460Y250860D01*X141460Y250860D02*X140340Y250860D01* X140340Y250860D02*X140340Y249690D01*X140340Y249690D02*X140060Y249690D01* X140060Y249690D02*X140060Y250860D01*X140060Y250860D02*X138940Y250860D01* X138940Y250860D02*X138940Y249690D01*X138940Y249690D02*X138755Y249690D01* X138755Y249690D02*X138755Y249955D01*X138755Y249955D02*X137785Y249955D01* X137785Y249955D02*X137785Y248985D01*X137785Y248985D02*X138755Y248985D01* X139960Y236690D02*X139960Y239610D01*X139960Y239610D02*X137640Y239610D01* X137640Y239610D02*X137640Y236690D01*X137640Y236690D02*X139960Y236690D01* X139960Y232590D02*X139960Y235510D01*X139960Y235510D02*X137640Y235510D01* X137640Y235510D02*X137640Y232590D01*X137640Y232590D02*X139960Y232590D01* X140680Y246740D02*X140680Y246639D01*X140680Y246639D02*X141759Y245560D01* X141759Y245560D02*X141740Y245560D01*X141740Y245560D02*X141740Y244240D01* X141740Y244240D02*X142796Y244240D01*X142796Y244240D02*X142796Y243096D01* X142796Y243096D02*X144046Y243096D01*X144046Y243096D02*X144046Y244240D01* X144046Y244240D02*X144260Y244240D01*X144260Y244240D02*X144260Y244680D01* X144260Y244680D02*X144361Y244680D01*X144361Y244680D02*X144536Y244855D01* X144536Y244855D02*X144536Y244999D01*X144536Y244999D02*X145151Y244999D01* X145151Y244999D02*X145151Y245969D01*X145151Y245969D02*X144400Y245969D01* X144400Y245969D02*X144400Y246225D01*X144400Y246225D02*X144698Y246225D01* X144698Y246225D02*X144776Y246303D01*X144776Y246303D02*X144776Y246066D01* X144776Y246066D02*X146026Y246066D01*X146026Y246066D02*X146026Y247316D01* X146026Y247316D02*X145010Y247316D01*X145010Y247316D02*X145010Y248085D01* X145010Y248085D02*X144260Y248085D01*X144260Y248085D02*X144260Y248110D01* X144260Y248110D02*X143340Y248110D01*X143340Y248110D02*X143340Y247250D01* X143340Y247250D02*X143260Y247250D01*X143260Y247250D02*X143260Y248110D01* X143260Y248110D02*X142340Y248110D01*X142340Y248110D02*X142340Y246090D01* X142340Y246090D02*X143200Y246090D01*X143200Y246090D02*X143200Y245950D01* X143200Y245950D02*X144181Y245950D01*X144181Y245950D02*X144181Y245560D01* X144181Y245560D02*X143451Y245560D01*X143451Y245560D02*X143031Y245980D01* X143031Y245980D02*X141961Y245980D01*X141961Y245980D02*X141201Y246740D01* X141201Y246740D02*X141460Y246740D01*X141460Y246740D02*X141460Y248060D01* X141460Y248060D02*X140340Y248060D01*X140340Y248060D02*X140340Y246740D01* X140340Y246740D02*X140680Y246740D01*X142440Y237665D02*X142440Y236690D01* X142440Y236690D02*X144760Y236690D01*X144760Y236690D02*X144760Y239610D01* X144760Y239610D02*X142440Y239610D01*X142440Y239610D02*X142440Y238635D01* X142440Y238635D02*X141690Y238635D01*X141690Y238635D02*X141690Y237665D01* X141690Y237665D02*X142440Y237665D01*X144900Y232450D02*X144900Y233195D01* X144900Y233195D02*X146026Y233195D01*X146026Y233195D02*X146026Y234445D01* X146026Y234445D02*X144900Y234445D01*X144900Y234445D02*X144900Y235650D01* X144900Y235650D02*X142300Y235650D01*X142300Y235650D02*X142300Y232450D01* X142300Y232450D02*X144900Y232450D01*X141890Y219030D02*X141890Y221684D01* X141890Y221684D02*X144110Y221684D01*X144110Y221684D02*X144110Y219030D01* X144110Y219030D02*X146970Y219030D01*X146970Y219030D02*X146970Y221890D01* X146970Y221890D02*X144316Y221890D01*X144316Y221890D02*X144316Y224110D01* X144316Y224110D02*X146970Y224110D01*X146970Y224110D02*X146970Y226970D01* X146970Y226970D02*X144110Y226970D01*X144110Y226970D02*X144110Y224316D01* X144110Y224316D02*X141890Y224316D01*X141890Y224316D02*X141890Y226970D01* X141890Y226970D02*X139030Y226970D01*X139030Y226970D02*X139030Y224110D01* X139030Y224110D02*X141684Y224110D01*X141684Y224110D02*X141684Y221890D01* X141684Y221890D02*X139030Y221890D01*X139030Y221890D02*X139030Y219030D01* X139030Y219030D02*X141890Y219030D01*X150640Y239615D02*X150640Y239540D01* X150640Y239540D02*X151960Y239540D01*X151960Y239540D02*X151960Y240585D01* X151960Y240585D02*X152090Y240585D01*X152090Y240585D02*X152090Y239740D01* X152090Y239740D02*X153110Y239740D01*X153110Y239740D02*X153110Y240660D01* X153110Y240660D02*X152820Y240660D01*X152820Y240660D02*X152820Y240741D01* X152820Y240741D02*X152385Y241176D01*X152385Y241176D02*X152385Y242480D01* X152385Y242480D02*X151415Y242480D01*X151415Y242480D02*X151415Y240660D01* X151415Y240660D02*X150640Y240660D01*X150640Y240660D02*X150640Y240585D01* X150640Y240585D02*X149866Y240585D01*X149866Y240585D02*X149866Y239615D01* X149866Y239615D02*X150640Y239615D01*X150640Y238215D02*X150640Y238140D01* X150640Y238140D02*X151960Y238140D01*X151960Y238140D02*X151960Y239260D01* X151960Y239260D02*X150640Y239260D01*X150640Y239260D02*X150640Y239185D01* X150640Y239185D02*X149866Y239185D01*X149866Y239185D02*X149866Y238215D01* X149866Y238215D02*X150640Y238215D01*X153110Y238740D02*X153110Y239660D01* X153110Y239660D02*X152090Y239660D01*X152090Y239660D02*X152090Y238740D01* X152090Y238740D02*X153110Y238740D01*X152816Y231355D02*X152816Y232325D01* X152816Y232325D02*X151846Y232325D01*X151846Y232325D02*X151846Y231355D01* X151846Y231355D02*X152816Y231355D01*X154460Y239540D02*X154460Y240660D01* X154460Y240660D02*X154020Y240660D01*X154020Y240660D02*X154020Y241138D01* X154020Y241138D02*X154532Y241649D01*X154532Y241649D02*X154532Y243236D01* X154532Y243236D02*X154796Y243236D01*X154796Y243236D02*X154796Y244206D01* X154796Y244206D02*X153826Y244206D01*X153826Y244206D02*X153826Y243236D01* X153826Y243236D02*X154091Y243236D01*X154091Y243236D02*X154091Y241832D01* X154091Y241832D02*X153580Y241320D01*X153580Y241320D02*X153580Y240660D01* X153580Y240660D02*X153140Y240660D01*X153140Y240660D02*X153140Y239540D01* X153140Y239540D02*X154460Y239540D01*X154460Y238140D02*X154460Y239260D01* X154460Y239260D02*X153140Y239260D01*X153140Y239260D02*X153140Y238140D01* X153140Y238140D02*X154460Y238140D01*X155347Y235153D02*X155347Y237047D01* X155347Y237047D02*X153453Y237047D01*X153453Y237047D02*X153453Y235153D01* X153453Y235153D02*X155347Y235153D01*X155347Y232653D02*X155347Y234547D01* X155347Y234547D02*X153453Y234547D01*X153453Y234547D02*X153453Y232653D01* X153453Y232653D02*X155347Y232653D01*X157310Y239715D02*X157310Y239740D01* X157310Y239740D02*X158110Y239740D01*X158110Y239740D02*X158110Y240660D01* X158110Y240660D02*X157310Y240660D01*X157310Y240660D02*X157310Y240685D01* X157310Y240685D02*X156340Y240685D01*X156340Y240685D02*X156340Y239715D01* X156340Y239715D02*X157310Y239715D01*X158110Y238740D02*X158110Y239660D01* X158110Y239660D02*X157090Y239660D01*X157090Y239660D02*X157090Y238740D01* X157090Y238740D02*X158110Y238740D01*X157887Y235153D02*X157887Y237047D01* X157887Y237047D02*X155993Y237047D01*X155993Y237047D02*X155993Y235153D01* X155993Y235153D02*X157887Y235153D01*X157887Y232653D02*X157887Y234547D01* X157887Y234547D02*X155993Y234547D01*X155993Y234547D02*X155993Y232653D01* X155993Y232653D02*X157887Y232653D01*X161172Y240266D02*X161172Y240530D01* X161172Y240530D02*X161358Y240530D01*X161358Y240530D02*X161540Y240349D01* X161540Y240349D02*X161540Y239540D01*X161540Y239540D02*X162860Y239540D01* X162860Y239540D02*X162860Y240660D01*X162860Y240660D02*X161851Y240660D01* X161851Y240660D02*X161541Y240971D01*X161541Y240971D02*X161172Y240971D01* X161172Y240971D02*X161172Y241236D01*X161172Y241236D02*X160202Y241236D01* X160202Y241236D02*X160202Y240266D01*X160202Y240266D02*X161172Y240266D01* X159290Y238990D02*X159290Y238290D01*X159290Y238290D02*X160310Y238290D01* X160310Y238290D02*X160310Y239210D01*X160310Y239210D02*X159510Y239210D01* X159510Y239210D02*X159510Y239290D01*X159510Y239290D02*X160310Y239290D01* X160310Y239290D02*X160310Y240210D01*X160310Y240210D02*X159290Y240210D01* X159290Y240210D02*X159290Y239970D01*X159290Y239970D02*X159189Y239970D01* X159189Y239970D02*X159179Y239960D01*X159179Y239960D02*X158540Y239960D01* X158540Y239960D02*X158540Y238990D01*X158540Y238990D02*X159290Y238990D01* X153890Y219030D02*X153890Y221684D01*X153890Y221684D02*X156110Y221684D01* X156110Y221684D02*X156110Y219030D01*X156110Y219030D02*X158970Y219030D01* X158970Y219030D02*X158970Y221890D01*X158970Y221890D02*X156316Y221890D01* X156316Y221890D02*X156316Y224110D01*X156316Y224110D02*X158970Y224110D01* X158970Y224110D02*X158970Y226970D01*X158970Y226970D02*X156110Y226970D01* X156110Y226970D02*X156110Y224316D01*X156110Y224316D02*X153890Y224316D01* X153890Y224316D02*X153890Y226970D01*X153890Y226970D02*X151030Y226970D01* X151030Y226970D02*X151030Y224110D01*X151030Y224110D02*X153684Y224110D01* X153684Y224110D02*X153684Y221890D01*X153684Y221890D02*X151030Y221890D01* X151030Y221890D02*X151030Y219030D01*X151030Y219030D02*X153890Y219030D01* X163910Y239740D02*X163910Y240660D01*X163910Y240660D02*X163885Y240660D01* X163885Y240660D02*X163885Y241470D01*X163885Y241470D02*X162915Y241470D01* X162915Y241470D02*X162915Y240660D01*X162915Y240660D02*X162890Y240660D01* X162890Y240660D02*X162890Y239740D01*X162890Y239740D02*X163910Y239740D01* X163910Y238740D02*X163910Y239660D01*X163910Y239660D02*X162890Y239660D01* X162890Y239660D02*X162890Y238740D01*X162890Y238740D02*X163910Y238740D01* X165260Y239540D02*X165260Y240660D01*X165260Y240660D02*X165081Y240660D01* X165081Y240660D02*X165081Y241474D01*X165081Y241474D02*X164111Y241474D01* X164111Y241474D02*X164111Y240660D01*X164111Y240660D02*X163940Y240660D01* X163940Y240660D02*X163940Y239540D01*X163940Y239540D02*X165260Y239540D01* X162190Y237295D02*X162190Y236190D01*X162190Y236190D02*X163510Y236190D01* X163510Y236190D02*X163510Y237295D01*X163510Y237295D02*X164161Y237295D01* X164161Y237295D02*X164161Y236567D01*X164161Y236567D02*X164856Y236567D01* X164856Y236567D02*X164499Y236210D01*X164499Y236210D02*X163690Y236210D01* X163690Y236210D02*X163690Y234890D01*X163690Y234890D02*X164030Y234890D01* X164030Y234890D02*X164030Y234525D01*X164030Y234525D02*X163878Y234525D01* X163878Y234525D02*X163878Y231919D01*X163878Y231919D02*X164833Y231919D01* X164833Y231919D02*X164833Y234525D01*X164833Y234525D02*X164571Y234525D01* X164571Y234525D02*X164470Y234626D01*X164470Y234626D02*X164470Y234890D01* X164470Y234890D02*X164810Y234890D01*X164810Y234890D02*X164810Y235899D01* X164810Y235899D02*X164901Y235990D01*X164901Y235990D02*X165090Y235990D01* X165090Y235990D02*X165090Y234890D01*X165090Y234890D02*X165430Y234890D01* X165430Y234890D02*X165430Y234811D01*X165430Y234811D02*X165405Y234786D01* X165405Y234786D02*X165405Y234525D01*X165405Y234525D02*X165148Y234525D01* X165148Y234525D02*X165148Y231919D01*X165148Y231919D02*X166103Y231919D01* X166103Y231919D02*X166103Y234525D01*X166103Y234525D02*X165845Y234525D01* X165845Y234525D02*X165845Y234604D01*X165845Y234604D02*X165870Y234629D01* X165870Y234629D02*X165870Y234890D01*X165870Y234890D02*X166210Y234890D01* X166210Y234890D02*X166210Y235899D01*X166210Y235899D02*X166390Y236079D01* X166390Y236079D02*X166390Y236190D01*X166390Y236190D02*X167560Y236190D01* X167560Y236190D02*X167560Y237099D01*X167560Y237099D02*X167566Y237105D01* X167566Y237105D02*X167835Y237105D01*X167835Y237105D02*X167835Y238075D01* X167835Y238075D02*X166865Y238075D01*X166865Y238075D02*X166865Y237310D01* X166865Y237310D02*X166735Y237310D01*X166735Y237310D02*X166735Y238266D01* X166735Y238266D02*X165765Y238266D01*X165765Y238266D02*X165765Y237295D01* X165765Y237295D02*X166240Y237295D01*X166240Y237295D02*X166240Y236590D01* X166240Y236590D02*X165558Y237272D01*X165558Y237272D02*X165131Y237272D01* X165131Y237272D02*X165131Y237537D01*X165131Y237537D02*X164399Y237537D01* X164399Y237537D02*X164399Y238140D01*X164399Y238140D02*X165260Y238140D01* X165260Y238140D02*X165260Y239260D01*X165260Y239260D02*X163940Y239260D01* X163940Y239260D02*X163940Y238451D01*X163940Y238451D02*X163754Y238266D01* X163754Y238266D02*X163429Y238266D01*X163429Y238266D02*X163429Y237310D01* X163429Y237310D02*X162222Y237310D01*X162222Y237310D02*X162222Y237840D01* X162222Y237840D02*X162420Y238039D01*X162420Y238039D02*X162420Y238140D01* X162420Y238140D02*X162860Y238140D01*X162860Y238140D02*X162860Y239260D01* X162860Y239260D02*X161540Y239260D01*X161540Y239260D02*X161540Y238266D01* X161540Y238266D02*X161252Y238266D01*X161252Y238266D02*X161252Y237295D01* X161252Y237295D02*X162190Y237295D01*X161727Y234325D02*X161727Y235295D01* X161727Y235295D02*X160757Y235295D01*X160757Y235295D02*X160757Y234325D01* X160757Y234325D02*X161727Y234325D01*X162865Y234790D02*X162865Y234525D01* X162865Y234525D02*X162608Y234525D01*X162608Y234525D02*X162608Y231919D01* X162608Y231919D02*X163563Y231919D01*X163563Y231919D02*X163563Y234525D01* X163563Y234525D02*X163305Y234525D01*X163305Y234525D02*X163305Y234790D01* X163305Y234790D02*X163510Y234790D01*X163510Y234790D02*X163510Y235910D01* X163510Y235910D02*X162190Y235910D01*X162190Y235910D02*X162190Y234790D01* X162190Y234790D02*X162865Y234790D01*X163610Y221290D02*X163610Y222410D01* X163610Y222410D02*X163305Y222410D01*X163305Y222410D02*X163305Y222775D01* X163305Y222775D02*X163563Y222775D01*X163563Y222775D02*X163563Y225381D01* X163563Y225381D02*X162608Y225381D01*X162608Y225381D02*X162608Y222775D01* X162608Y222775D02*X162865Y222775D01*X162865Y222775D02*X162865Y222410D01* X162865Y222410D02*X162290Y222410D01*X162290Y222410D02*X162290Y221290D01* X162290Y221290D02*X163610Y221290D01*X162290Y219965D02*X162290Y219890D01* X162290Y219890D02*X163610Y219890D01*X163610Y219890D02*X163610Y221010D01* X163610Y221010D02*X162290Y221010D01*X162290Y221010D02*X162290Y220935D01* X162290Y220935D02*X161540Y220935D01*X161540Y220935D02*X161540Y219965D01* X161540Y219965D02*X162290Y219965D01*X164697Y229375D02*X164697Y230345D01* X164697Y230345D02*X163727Y230345D01*X163727Y230345D02*X163727Y229375D01* X163727Y229375D02*X164697Y229375D01*X166675Y234790D02*X166675Y234525D01* X166675Y234525D02*X166418Y234525D01*X166418Y234525D02*X166418Y231919D01* X166418Y231919D02*X167373Y231919D01*X167373Y231919D02*X167373Y234525D01* X167373Y234525D02*X167115Y234525D01*X167115Y234525D02*X167115Y234790D01* X167115Y234790D02*X167560Y234790D01*X167560Y234790D02*X167560Y235910D01* X167560Y235910D02*X166240Y235910D01*X166240Y235910D02*X166240Y234790D01* X166240Y234790D02*X166675Y234790D01*X168310Y238740D02*X168310Y239660D01* X168310Y239660D02*X165290Y239660D01*X165290Y239660D02*X165290Y238740D01* X165290Y238740D02*X168310Y238740D01*X173310Y239240D02*X173310Y240395D01* X173310Y240395D02*X173590Y240395D01*X173590Y240395D02*X173590Y239240D01* X173590Y239240D02*X174710Y239240D01*X174710Y239240D02*X174710Y240560D01* X174710Y240560D02*X173615Y240560D01*X173615Y240560D02*X173615Y241365D01* X173615Y241365D02*X172645Y241365D01*X172645Y241365D02*X172645Y240706D01* X172645Y240706D02*X172540Y240601D01*X172540Y240601D02*X172540Y240560D01* X172540Y240560D02*X172190Y240560D01*X172190Y240560D02*X172190Y239240D01* X172190Y239240D02*X173310Y239240D01*X164833Y222775D02*X164833Y225381D01* X164833Y225381D02*X164575Y225381D01*X164575Y225381D02*X164575Y225809D01* X164575Y225809D02*X165405Y226639D01*X165405Y226639D02*X165405Y225381D01* X165405Y225381D02*X165148Y225381D01*X165148Y225381D02*X165148Y222775D01* X165148Y222775D02*X166103Y222775D01*X166103Y222775D02*X166103Y225381D01* X166103Y225381D02*X165845Y225381D01*X165845Y225381D02*X165845Y226739D01* X165845Y226739D02*X170925Y231819D01*X170925Y231819D02*X170925Y231919D01* X170925Y231919D02*X171183Y231919D01*X171183Y231919D02*X171183Y234525D01* X171183Y234525D02*X170925Y234525D01*X170925Y234525D02*X170925Y234544D01* X170925Y234544D02*X170971Y234590D01*X170971Y234590D02*X171395Y234590D01* X171395Y234590D02*X171395Y234552D01*X171395Y234552D02*X172365Y234552D01* X172365Y234552D02*X172365Y234904D01*X172365Y234904D02*X172501Y235040D01* X172501Y235040D02*X173310Y235040D01*X173310Y235040D02*X173310Y236360D01* X173310Y236360D02*X172190Y236360D01*X172190Y236360D02*X172190Y235522D01* X172190Y235522D02*X171510Y235522D01*X171510Y235522D02*X171510Y235710D01* X171510Y235710D02*X170250Y235710D01*X170250Y235710D02*X170250Y235990D01* X170250Y235990D02*X171510Y235990D01*X171510Y235990D02*X171510Y237110D01* X171510Y237110D02*X170250Y237110D01*X170250Y237110D02*X170250Y237479D01* X170250Y237479D02*X170411Y237640D01*X170411Y237640D02*X171510Y237640D01* X171510Y237640D02*X171510Y237665D01*X171510Y237665D02*X172385Y237665D01* X172385Y237665D02*X172385Y237840D01*X172385Y237840D02*X173310Y237840D01* X173310Y237840D02*X173310Y239160D01*X173310Y239160D02*X172190Y239160D01* X172190Y239160D02*X172190Y238635D01*X172190Y238635D02*X171510Y238635D01* X171510Y238635D02*X171510Y238760D01*X171510Y238760D02*X170190Y238760D01* X170190Y238760D02*X170190Y238041D01*X170190Y238041D02*X170110Y237961D01* X170110Y237961D02*X170110Y238760D01*X170110Y238760D02*X168790Y238760D01* X168790Y238760D02*X168790Y237640D01*X168790Y237640D02*X169580Y237640D01* X169580Y237640D02*X169580Y235651D01*X169580Y235651D02*X169460Y235531D01* X169460Y235531D02*X169460Y235710D01*X169460Y235710D02*X168140Y235710D01* X168140Y235710D02*X168140Y234590D01*X168140Y234590D02*X168580Y234590D01* X168580Y234590D02*X168580Y234525D01*X168580Y234525D02*X167688Y234525D01* X167688Y234525D02*X167688Y231919D01*X167688Y231919D02*X167945Y231919D01* X167945Y231919D02*X167945Y231849D01*X167945Y231849D02*X168230Y231564D01* X168230Y231564D02*X168230Y230905D01*X168230Y230905D02*X169049Y230905D01* X169049Y230905D02*X164135Y225991D01*X164135Y225991D02*X164135Y225381D01* X164135Y225381D02*X163878Y225381D01*X163878Y225381D02*X163878Y222775D01* X163878Y222775D02*X164833Y222775D01*X169460Y235990D02*X169460Y237110D01* X169460Y237110D02*X168140Y237110D01*X168140Y237110D02*X168140Y235990D01* X168140Y235990D02*X169460Y235990D01*X167373Y222775D02*X167373Y225381D01* X167373Y225381D02*X166418Y225381D01*X166418Y225381D02*X166418Y222775D01* X166418Y222775D02*X167373Y222775D01*X168160Y219840D02*X168160Y220960D01* X168160Y220960D02*X167720Y220960D01*X167720Y220960D02*X167720Y221954D01* X167720Y221954D02*X168385Y222619D01*X168385Y222619D02*X168385Y222775D01* X168385Y222775D02*X168643Y222775D01*X168643Y222775D02*X168643Y225381D01* X168643Y225381D02*X167688Y225381D01*X167688Y225381D02*X167688Y222775D01* X167688Y222775D02*X167919Y222775D01*X167919Y222775D02*X167280Y222136D01* X167280Y222136D02*X167280Y220960D01*X167280Y220960D02*X166840Y220960D01* X166840Y220960D02*X166840Y219840D01*X166840Y219840D02*X168160Y219840D01* X170902Y228082D02*X170902Y229052D01*X170902Y229052D02*X169932Y229052D01* X169932Y229052D02*X169932Y228082D01*X169932Y228082D02*X170902Y228082D01* X170460Y221140D02*X170460Y222329D01*X170460Y222329D02*X170640Y222149D01* X170640Y222149D02*X170640Y221340D01*X170640Y221340D02*X171960Y221340D01* X171960Y221340D02*X171960Y222460D01*X171960Y222460D02*X170951Y222460D01* X170951Y222460D02*X170911Y222500D01*X170911Y222500D02*X170925Y222514D01* X170925Y222514D02*X170925Y222775D01*X170925Y222775D02*X171183Y222775D01* X171183Y222775D02*X171183Y225381D01*X171183Y225381D02*X170228Y225381D01* X170228Y225381D02*X170228Y222775D01*X170228Y222775D02*X170485Y222775D01* X170485Y222775D02*X170485Y222696D01*X170485Y222696D02*X170460Y222671D01* X170460Y222671D02*X170460Y222460D01*X170460Y222460D02*X169620Y222460D01* X169620Y222460D02*X169620Y222509D01*X169620Y222509D02*X169655Y222544D01* X169655Y222544D02*X169655Y222775D01*X169655Y222775D02*X169913Y222775D01* X169913Y222775D02*X169913Y225381D01*X169913Y225381D02*X168958Y225381D01* X168958Y225381D02*X168958Y222775D01*X168958Y222775D02*X169215Y222775D01* X169215Y222775D02*X169215Y222726D01*X169215Y222726D02*X169180Y222691D01* X169180Y222691D02*X169180Y222460D01*X169180Y222460D02*X168340Y222460D01* X168340Y222460D02*X168340Y221140D01*X168340Y221140D02*X170460Y221140D01* X168160Y218440D02*X168160Y218780D01*X168160Y218780D02*X168340Y218780D01* X168340Y218780D02*X168340Y218340D01*X168340Y218340D02*X170460Y218340D01* X170460Y218340D02*X170460Y219660D01*X170460Y219660D02*X168340Y219660D01* X168340Y219660D02*X168340Y219220D01*X168340Y219220D02*X168160Y219220D01* X168160Y219220D02*X168160Y219560D01*X168160Y219560D02*X166840Y219560D01* X166840Y219560D02*X166840Y218440D01*X166840Y218440D02*X168160Y218440D01* X171960Y219940D02*X171960Y221060D01*X171960Y221060D02*X170640Y221060D01* X170640Y221060D02*X170640Y219940D01*X170640Y219940D02*X171960Y219940D01* X172459Y231054D02*X172459Y232024D01*X172459Y232024D02*X172453Y232024D01* X172453Y232024D02*X172453Y234525D01*X172453Y234525D02*X171498Y234525D01* X171498Y234525D02*X171498Y232024D01*X171498Y232024D02*X171489Y232024D01* X171489Y232024D02*X171489Y231054D01*X171489Y231054D02*X172459Y231054D01* X172453Y222775D02*X172453Y225381D01*X172453Y225381D02*X171498Y225381D01* X171498Y225381D02*X171498Y222775D01*X171498Y222775D02*X172453Y222775D01* X174710Y237840D02*X174710Y239160D01*X174710Y239160D02*X173590Y239160D01* X173590Y239160D02*X173590Y237840D01*X173590Y237840D02*X174710Y237840D01* X172540Y236615D02*X172540Y236440D01*X172540Y236440D02*X173660Y236440D01* X173660Y236440D02*X173660Y237760D01*X173660Y237760D02*X172540Y237760D01* X172540Y237760D02*X172540Y237585D01*X172540Y237585D02*X171715Y237585D01* X171715Y237585D02*X171715Y236615D01*X171715Y236615D02*X172540Y236615D01* X175060Y236440D02*X175060Y237760D01*X175060Y237760D02*X173940Y237760D01* X173940Y237760D02*X173940Y236440D01*X173940Y236440D02*X175060Y236440D01* X174710Y235040D02*X174710Y236360D01*X174710Y236360D02*X173590Y236360D01* X173590Y236360D02*X173590Y235040D01*X173590Y235040D02*X174710Y235040D01* X173723Y231919D02*X173723Y234525D01*X173723Y234525D02*X172768Y234525D01* X172768Y234525D02*X172768Y231919D01*X172768Y231919D02*X173723Y231919D01* X174993Y231919D02*X174993Y234525D01*X174993Y234525D02*X174038Y234525D01* X174038Y234525D02*X174038Y231919D01*X174038Y231919D02*X174993Y231919D01* X174597Y230365D02*X174597Y231335D01*X174597Y231335D02*X173627Y231335D01* X173627Y231335D02*X173627Y230365D01*X173627Y230365D02*X174597Y230365D01* X173723Y222775D02*X173723Y225381D01*X173723Y225381D02*X172768Y225381D01* X172768Y225381D02*X172768Y222775D01*X172768Y222775D02*X173723Y222775D01* X176205Y235965D02*X176205Y236935D01*X176205Y236935D02*X175235Y236935D01* X175235Y236935D02*X175235Y235965D01*X175235Y235965D02*X176205Y235965D01* X176264Y234552D02*X176264Y235522D01*X176264Y235522D02*X175293Y235522D01* X175293Y235522D02*X175293Y234552D01*X175293Y234552D02*X176264Y234552D01* X175705Y230425D02*X175705Y231395D01*X175705Y231395D02*X174735Y231395D01* X174735Y231395D02*X174735Y230425D01*X174735Y230425D02*X175705Y230425D01* X173360Y221340D02*X173360Y221680D01*X173360Y221680D02*X173741Y221680D01* X173741Y221680D02*X174735Y222674D01*X174735Y222674D02*X174735Y222775D01* X174735Y222775D02*X174993Y222775D01*X174993Y222775D02*X174993Y225381D01* X174993Y225381D02*X174038Y225381D01*X174038Y225381D02*X174038Y222775D01* X174038Y222775D02*X174214Y222775D01*X174214Y222775D02*X173559Y222120D01* X173559Y222120D02*X173360Y222120D01*X173360Y222120D02*X173360Y222460D01* X173360Y222460D02*X172040Y222460D01*X172040Y222460D02*X172040Y221340D01* X172040Y221340D02*X173360Y221340D01*X173360Y219940D02*X173360Y221060D01* X173360Y221060D02*X172040Y221060D01*X172040Y221060D02*X172040Y219940D01* X172040Y219940D02*X173360Y219940D01*X177461Y239551D02*X177461Y240521D01* X177461Y240521D02*X176491Y240521D01*X176491Y240521D02*X176491Y239551D01* X176491Y239551D02*X177461Y239551D01*X177546Y238285D02*X177546Y239256D01* X177546Y239256D02*X176576Y239256D01*X176576Y239256D02*X176576Y238285D01* X176576Y238285D02*X177546Y238285D01*X180107Y238273D02*X180107Y240167D01* X180107Y240167D02*X178213Y240167D01*X178213Y240167D02*X178213Y238273D01* X178213Y238273D02*X180107Y238273D01*X180475Y228453D02*X180475Y229423D01* X180475Y229423D02*X179505Y229423D01*X179505Y229423D02*X179505Y228453D01* X179505Y228453D02*X180475Y228453D01*X157665Y244947D02*X159966Y242645D01* X159966Y242645D02*X172624Y242645D01*X172624Y242645D02*X172762Y242507D01* X172762Y242507D02*X172908Y242361D01*X172908Y242361D02*X175386Y242361D01* X175386Y242361D02*X176724Y241023D01*X176724Y241023D02*X178213Y241023D01* X178213Y241023D02*X178213Y242707D01*X178213Y242707D02*X180107Y242707D01* X180107Y242707D02*X180107Y241023D01*X180107Y241023D02*X180753Y241023D01* X180753Y241023D02*X180753Y242707D01*X180753Y242707D02*X182333Y242707D01* X182333Y242707D02*X182333Y243160D01*X182333Y243160D02*X182370Y243160D01* X182370Y243160D02*X182370Y243353D01*X182370Y243353D02*X180753Y243353D01* X180753Y243353D02*X180753Y245247D01*X180753Y245247D02*X181049Y245247D01* X181049Y245247D02*X181049Y246095D01*X181049Y246095D02*X182019Y246095D01* X182019Y246095D02*X182019Y245247D01*X182019Y245247D02*X182370Y245247D01* X182370Y245247D02*X182370Y246135D01*X182370Y246135D02*X179186Y246135D01* X179186Y246135D02*X178355Y246966D01*X178355Y246966D02*X176577Y246966D01* X176577Y246966D02*X176577Y246206D01*X176577Y246206D02*X175607Y246206D01* X175607Y246206D02*X175607Y246471D01*X175607Y246471D02*X175271Y246471D01* X175271Y246471D02*X172671Y243871D01*X172671Y243871D02*X165030Y243871D01* X165030Y243871D02*X163714Y245187D01*X163714Y245187D02*X163585Y245316D01* X163585Y245316D02*X163585Y246088D01*X163585Y246088D02*X162801Y246088D01* X162801Y246088D02*X162801Y246246D01*X162801Y246246D02*X162234Y245679D01* X162234Y245679D02*X162234Y245230D01*X162234Y245230D02*X162345Y245230D01* X162345Y245230D02*X162345Y244530D01*X162345Y244530D02*X162353Y244539D01* X162353Y244539D02*X162787Y244539D01*X162787Y244539D02*X162787Y244789D01* X162787Y244789D02*X163757Y244789D01*X163757Y244789D02*X163757Y243818D01* X163757Y243818D02*X162787Y243818D01*X162787Y243818D02*X162787Y244068D01* X162787Y244068D02*X162548Y244068D01*X162548Y244068D02*X162480Y244000D01* X162480Y244000D02*X161272Y244000D01*X161272Y244000D02*X159831Y245440D01* X159831Y245440D02*X159831Y246590D01*X159831Y246590D02*X159740Y246590D01* X159740Y246590D02*X159740Y245830D01*X159740Y245830D02*X158888Y245830D01* X158888Y245830D02*X158888Y245035D01*X158888Y245035D02*X158054Y245035D01* X158054Y245035D02*X158054Y244947D01*X158054Y244947D02*X157665Y244947D01* X175205Y244055D02*X175205Y245025D01*X175205Y245025D02*X174235Y245025D01* X174235Y245025D02*X174235Y244055D01*X174235Y244055D02*X175205Y244055D01* X174597Y242546D02*X174597Y243516D01*X174597Y243516D02*X173627Y243516D01* X173627Y243516D02*X173627Y242546D01*X173627Y242546D02*X174597Y242546D01* X178145Y244765D02*X178145Y245735D01*X178145Y245735D02*X177175Y245735D01* X177175Y245735D02*X177175Y244765D01*X177175Y244765D02*X178145Y244765D01* X178435Y243035D02*X178435Y243353D01*X178435Y243353D02*X180107Y243353D01* X180107Y243353D02*X180107Y245247D01*X180107Y245247D02*X178213Y245247D01* X178213Y245247D02*X178213Y244005D01*X178213Y244005D02*X177465Y244005D01* X177465Y244005D02*X177465Y243035D01*X177465Y243035D02*X178435Y243035D01* X164810Y269700D02*X165623Y269700D01*X165623Y269700D02*X165623Y269204D01* X165623Y269204D02*X165707Y269287D01*X165707Y269287D02*X165707Y269946D01* X165707Y269946D02*X166677Y269946D01*X166677Y269946D02*X166677Y268976D01* X166677Y268976D02*X166062Y268976D01*X166062Y268976D02*X166062Y268572D01* X166062Y268572D02*X166077Y268557D01*X166077Y268557D02*X166077Y268427D01* X166077Y268427D02*X166510Y267994D01*X166510Y267994D02*X166510Y268309D01* X166510Y268309D02*X166845Y268645D01*X166845Y268645D02*X166845Y268714D01* X166845Y268714D02*X167745Y269614D01*X167745Y269614D02*X167745Y269708D01* X167745Y269708D02*X167480Y269708D01*X167480Y269708D02*X167480Y270678D01* X167480Y270678D02*X168450Y270678D01*X168450Y270678D02*X168450Y269708D01* X168450Y269708D02*X168185Y269708D01*X168185Y269708D02*X168185Y269432D01* X168185Y269432D02*X167854Y269100D01*X167854Y269100D02*X168264Y269100D01* X168264Y269100D02*X168264Y268130D01*X168264Y268130D02*X168014Y268130D01* X168014Y268130D02*X168014Y267210D01*X168014Y267210D02*X168020Y267204D01* X168020Y267204D02*X168020Y267160D01*X168020Y267160D02*X168565Y267160D01* X168565Y267160D02*X168565Y267161D01*X168565Y267161D02*X168638Y267234D01* X168638Y267234D02*X168638Y268205D01*X168638Y268205D02*X168566Y268277D01* X168566Y268277D02*X168566Y270188D01*X168566Y270188D02*X168677Y270299D01* X168677Y270299D02*X168677Y270936D01*X168677Y270936D02*X169647Y270936D01* X169647Y270936D02*X169647Y269966D01*X169647Y269966D02*X169036Y269966D01* X169036Y269966D02*X169036Y269581D01*X169036Y269581D02*X169851Y269581D01* X169851Y269581D02*X169851Y269097D01*X169851Y269097D02*X170460Y269097D01* X170460Y269097D02*X170460Y268127D01*X170460Y268127D02*X170243Y268127D01* X170243Y268127D02*X170520Y267850D01*X170520Y267850D02*X170520Y267160D01* X170520Y267160D02*X170760Y267160D01*X170760Y267160D02*X170760Y266807D01* X170760Y266807D02*X171067Y267114D01*X171067Y267114D02*X171067Y270532D01* X171067Y270532D02*X171178Y270643D01*X171178Y270643D02*X171178Y271280D01* X171178Y271280D02*X172148Y271280D01*X172148Y271280D02*X172148Y270310D01* X172148Y270310D02*X171538Y270310D01*X171538Y270310D02*X171538Y267216D01* X171538Y267216D02*X171897Y267576D01*X171897Y267576D02*X171897Y268841D01* X171897Y268841D02*X171647Y268841D01*X171647Y268841D02*X171647Y269811D01* X171647Y269811D02*X172617Y269811D01*X172617Y269811D02*X172617Y268841D01* X172617Y268841D02*X172367Y268841D01*X172367Y268841D02*X172367Y267413D01* X172367Y267413D02*X172719Y267766D01*X172719Y267766D02*X172537Y267766D01* X172537Y267766D02*X172537Y268736D01*X172537Y268736D02*X173508Y268736D01* X173508Y268736D02*X173508Y267766D01*X173508Y267766D02*X173258Y267766D01* X173258Y267766D02*X173258Y267639D01*X173258Y267639D02*X173140Y267521D01* X173140Y267521D02*X173747Y267521D01*X173747Y267521D02*X173747Y266551D01* X173747Y266551D02*X173088Y266551D01*X173088Y266551D02*X173003Y266466D01* X173003Y266466D02*X172848Y266466D01*X172848Y266466D02*X171393Y265012D01* X171393Y265012D02*X172011Y265012D01*X172011Y265012D02*X172011Y264623D01* X172011Y264623D02*X174800Y267412D01*X174800Y267412D02*X174800Y269719D01* X174800Y269719D02*X179230Y274149D01*X179230Y274149D02*X179230Y276150D01* X179230Y276150D02*X178430Y276150D01*X178430Y276150D02*X178430Y277040D01* X178430Y277040D02*X176647Y277040D01*X176647Y277040D02*X176273Y276666D01* X176273Y276666D02*X176260Y276666D01*X176260Y276666D02*X176260Y274540D01* X176260Y274540D02*X173340Y274540D01*X173340Y274540D02*X173340Y275215D01* X173340Y275215D02*X172590Y275215D01*X172590Y275215D02*X172590Y276185D01* X172590Y276185D02*X173340Y276185D01*X173340Y276185D02*X173340Y276666D01* X173340Y276666D02*X168871Y276666D01*X168871Y276666D02*X168600Y276395D01* X168600Y276395D02*X168600Y274449D01*X168600Y274449D02*X168058Y273906D01* X168058Y273906D02*X168657Y273906D01*X168657Y273906D02*X168657Y272936D01* X168657Y272936D02*X167687Y272936D01*X167687Y272936D02*X167687Y273125D01* X167687Y273125D02*X164810Y270249D01*X164810Y270249D02*X164810Y269700D01* X169440Y275165D02*X169440Y275090D01*X169440Y275090D02*X170760Y275090D01* X170760Y275090D02*X170760Y276210D01*X170760Y276210D02*X169440Y276210D01* X169440Y276210D02*X169440Y276135D01*X169440Y276135D02*X168677Y276135D01* X168677Y276135D02*X168677Y275165D01*X168677Y275165D02*X169440Y275165D01* X169440Y273765D02*X169440Y273690D01*X169440Y273690D02*X170760Y273690D01* X170760Y273690D02*X170760Y274810D01*X170760Y274810D02*X169440Y274810D01* X169440Y274810D02*X169440Y274735D01*X169440Y274735D02*X168677Y274735D01* X168677Y274735D02*X168677Y273765D01*X168677Y273765D02*X169440Y273765D01* X170637Y271946D02*X170637Y272916D01*X170637Y272916D02*X169667Y272916D01* X169667Y272916D02*X169667Y271946D01*X169667Y271946D02*X170637Y271946D01* X168071Y261160D02*X168760Y261160D01*X168760Y261160D02*X168760Y260420D01* X168760Y260420D02*X168840Y260420D01*X168840Y260420D02*X168840Y261160D01* X168840Y261160D02*X169760Y261160D01*X169760Y261160D02*X169760Y260935D01* X169760Y260935D02*X169840Y260935D01*X169840Y260935D02*X169840Y261160D01* X169840Y261160D02*X170760Y261160D01*X170760Y261160D02*X170760Y260935D01* X170760Y260935D02*X171614Y260935D01*X171614Y260935D02*X171912Y261234D01* X171912Y261234D02*X171919Y261240D01*X171919Y261240D02*X171615Y261240D01* X171615Y261240D02*X171615Y261505D01*X171615Y261505D02*X171146Y261505D01* X171146Y261505D02*X171121Y261480D01*X171121Y261480D02*X170760Y261480D01* X170760Y261480D02*X170760Y261240D01*X170760Y261240D02*X169840Y261240D01* X169840Y261240D02*X169840Y262160D01*X169840Y262160D02*X169864Y262160D01* X169864Y262160D02*X169760Y262264D01*X169760Y262264D02*X169760Y262240D01* X169760Y262240D02*X169151Y262240D01*X169151Y262240D02*X169071Y262160D01* X169071Y262160D02*X169760Y262160D01*X169760Y262160D02*X169760Y261240D01* X169760Y261240D02*X168840Y261240D01*X168840Y261240D02*X168840Y261980D01* X168840Y261980D02*X168760Y261980D01*X168760Y261980D02*X168760Y261240D01* X168760Y261240D02*X168151Y261240D01*X168151Y261240D02*X168071Y261160D01* X171454Y252763D02*X171603Y252615D01*X171603Y252615D02*X171826Y252615D01* X171826Y252615D02*X171826Y252763D01*X171826Y252763D02*X171454Y252763D01* X167760Y259258D02*X167858Y259160D01*X167858Y259160D02*X168760Y259160D01* X168760Y259160D02*X168760Y258435D01*X168760Y258435D02*X168840Y258435D01* X168840Y258435D02*X168840Y259160D01*X168840Y259160D02*X169065Y259160D01* X169065Y259160D02*X169065Y259240D01*X169065Y259240D02*X168840Y259240D01* X168840Y259240D02*X168840Y259908D01*X168840Y259908D02*X168760Y259828D01* X168760Y259828D02*X168760Y259240D01*X168760Y259240D02*X167840Y259240D01* X167840Y259240D02*X167840Y259965D01*X167840Y259965D02*X167760Y259965D01* X167760Y259965D02*X167760Y259258D01*X170760Y256435D02*X171647Y256435D01* X171647Y256435D02*X171773Y256562D01*X171773Y256562D02*X174473Y256562D01* X174473Y256562D02*X174949Y256086D01*X174949Y256086D02*X175587Y256086D01* X175587Y256086D02*X175587Y255326D01*X175587Y255326D02*X176969Y255326D01* X176969Y255326D02*X177989Y256346D01*X177989Y256346D02*X181068Y256346D01* X181068Y256346D02*X181154Y256259D01*X181154Y256259D02*X181490Y256259D01* X181490Y256259D02*X181490Y257019D01*X181490Y257019D02*X182370Y257019D01* X182370Y257019D02*X182370Y258615D01*X182370Y258615D02*X181760Y258615D01* X181760Y258615D02*X181760Y258590D01*X181760Y258590D02*X180840Y258590D01* X180840Y258590D02*X180840Y259610D01*X180840Y259610D02*X181760Y259610D01* X181760Y259610D02*X181760Y259585D01*X181760Y259585D02*X182370Y259585D01* X182370Y259585D02*X182370Y260115D01*X182370Y260115D02*X181760Y260115D01* X181760Y260115D02*X181760Y260090D01*X181760Y260090D02*X180840Y260090D01* X180840Y260090D02*X180840Y261110D01*X180840Y261110D02*X181760Y261110D01* X181760Y261110D02*X181760Y261085D01*X181760Y261085D02*X182370Y261085D01* X182370Y261085D02*X182370Y261515D01*X182370Y261515D02*X182091Y261515D01* X182091Y261515D02*X182091Y261780D01*X182091Y261780D02*X181760Y261780D01* X181760Y261780D02*X181760Y261490D01*X181760Y261490D02*X180840Y261490D01* X180840Y261490D02*X180840Y262510D01*X180840Y262510D02*X181760Y262510D01* X181760Y262510D02*X181760Y262220D01*X181760Y262220D02*X182091Y262220D01* X182091Y262220D02*X182091Y262485D01*X182091Y262485D02*X182370Y262485D01* X182370Y262485D02*X182370Y262915D01*X182370Y262915D02*X182102Y262915D01* X182102Y262915D02*X182102Y263180D01*X182102Y263180D02*X181760Y263180D01* X181760Y263180D02*X181760Y262890D01*X181760Y262890D02*X180840Y262890D01* X180840Y262890D02*X180840Y263910D01*X180840Y263910D02*X181760Y263910D01* X181760Y263910D02*X181760Y263620D01*X181760Y263620D02*X182102Y263620D01* X182102Y263620D02*X182102Y263885D01*X182102Y263885D02*X182370Y263885D01* X182370Y263885D02*X182370Y264197D01*X182370Y264197D02*X181562Y264197D01* X181562Y264197D02*X181562Y264290D01*X181562Y264290D02*X180840Y264290D01* X180840Y264290D02*X180840Y265310D01*X180840Y265310D02*X181760Y265310D01* X181760Y265310D02*X181760Y265168D01*X181760Y265168D02*X182370Y265168D01* X182370Y265168D02*X182370Y265980D01*X182370Y265980D02*X181760Y265980D01* X181760Y265980D02*X181760Y265690D01*X181760Y265690D02*X180840Y265690D01* X180840Y265690D02*X180840Y266710D01*X180840Y266710D02*X181760Y266710D01* X181760Y266710D02*X181760Y266420D01*X181760Y266420D02*X182339Y266420D01* X182339Y266420D02*X182370Y266451D01*X182370Y266451D02*X182370Y268210D01* X182370Y268210D02*X181971Y268210D01*X181971Y268210D02*X181760Y267999D01* X181760Y267999D02*X181760Y267290D01*X181760Y267290D02*X180840Y267290D01* X180840Y267290D02*X180840Y268310D01*X180840Y268310D02*X181449Y268310D01* X181449Y268310D02*X181789Y268650D01*X181789Y268650D02*X182370Y268650D01* X182370Y268650D02*X182370Y269450D01*X182370Y269450D02*X181760Y269450D01* X181760Y269450D02*X181760Y268790D01*X181760Y268790D02*X180840Y268790D01* X180840Y268790D02*X180840Y269810D01*X180840Y269810D02*X181449Y269810D01* X181449Y269810D02*X181567Y269928D01*X181567Y269928D02*X181567Y270420D01* X181567Y270420D02*X182370Y270420D01*X182370Y270420D02*X182370Y270878D01* X182370Y270878D02*X181801Y270878D01*X181801Y270878D02*X181325Y270402D01* X181325Y270402D02*X176926Y270402D01*X176926Y270402D02*X176249Y269725D01* X176249Y269725D02*X176638Y269725D01*X176638Y269725D02*X176638Y269460D01* X176638Y269460D02*X176868Y269460D01*X176868Y269460D02*X176928Y269520D01* X176928Y269520D02*X177340Y269520D01*X177340Y269520D02*X177340Y269810D01* X177340Y269810D02*X178260Y269810D01*X178260Y269810D02*X178260Y268790D01* X178260Y268790D02*X178236Y268790D01*X178236Y268790D02*X178236Y267986D01* X178236Y267986D02*X177266Y267986D01*X177266Y267986D02*X177266Y268956D01* X177266Y268956D02*X177340Y268956D01*X177340Y268956D02*X177340Y269080D01* X177340Y269080D02*X177110Y269080D01*X177110Y269080D02*X177050Y269020D01* X177050Y269020D02*X176638Y269020D01*X176638Y269020D02*X176638Y268840D01* X176638Y268840D02*X176946Y268840D01*X176946Y268840D02*X176946Y267870D01* X176946Y267870D02*X175976Y267870D01*X175976Y267870D02*X175976Y268755D01* X175976Y268755D02*X175829Y268755D01*X175829Y268755D02*X175829Y263043D01* X175829Y263043D02*X174812Y262026D01*X174812Y262026D02*X175495Y262026D01* X175495Y262026D02*X175495Y262413D01*X175495Y262413D02*X176154Y262413D01* X176154Y262413D02*X176561Y262820D01*X176561Y262820D02*X177240Y262820D01* X177240Y262820D02*X177240Y263110D01*X177240Y263110D02*X178160Y263110D01* X178160Y263110D02*X178160Y261090D01*X178160Y261090D02*X177240Y261090D01* X177240Y261090D02*X177240Y261380D01*X177240Y261380D02*X176925Y261380D01* X176925Y261380D02*X176598Y261707D01*X176598Y261707D02*X176465Y261707D01* X176465Y261707D02*X176465Y261443D01*X176465Y261443D02*X175587Y261443D01* X175587Y261443D02*X175587Y261056D01*X175587Y261056D02*X174617Y261056D01* X174617Y261056D02*X174617Y261830D01*X174617Y261830D02*X172845Y260058D01* X172845Y260058D02*X174583Y260058D01*X174583Y260058D02*X174694Y259948D01* X174694Y259948D02*X175332Y259948D01*X175332Y259948D02*X175332Y258978D01* X175332Y258978D02*X174361Y258978D01*X174361Y258978D02*X174361Y259588D01* X174361Y259588D02*X172742Y259588D01*X172742Y259588D02*X172585Y259431D01* X172585Y259431D02*X171228Y259431D01*X171228Y259431D02*X170777Y258980D01* X170777Y258980D02*X170760Y258980D01*X170760Y258980D02*X170760Y258935D01* X170760Y258935D02*X171069Y258935D01*X171069Y258935D02*X171266Y259132D01* X171266Y259132D02*X171770Y259132D01*X171770Y259132D02*X171770Y259382D01* X171770Y259382D02*X172740Y259382D01*X172740Y259382D02*X172740Y258655D01* X172740Y258655D02*X176311Y258655D01*X176311Y258655D02*X176311Y258775D01* X176311Y258775D02*X175716Y258775D01*X175716Y258775D02*X175716Y259745D01* X175716Y259745D02*X175981Y259745D01*X175981Y259745D02*X175981Y259847D01* X175981Y259847D02*X176410Y260276D01*X176410Y260276D02*X177355Y260276D01* X177355Y260276D02*X177920Y259711D01*X177920Y259711D02*X177920Y259610D01* X177920Y259610D02*X178160Y259610D01*X178160Y259610D02*X178160Y257810D01* X178160Y257810D02*X178235Y257810D01*X178235Y257810D02*X178235Y256840D01* X178235Y256840D02*X177265Y256840D01*X177265Y256840D02*X177265Y257590D01* X177265Y257590D02*X177240Y257590D01*X177240Y257590D02*X177240Y258295D01* X177240Y258295D02*X176643Y258295D01*X176643Y258295D02*X176532Y258185D01* X176532Y258185D02*X173111Y258185D01*X173111Y258185D02*X173111Y257305D01* X173111Y257305D02*X172141Y257305D01*X172141Y257305D02*X172141Y257570D01* X172141Y257570D02*X171587Y257570D01*X171587Y257570D02*X171497Y257480D01* X171497Y257480D02*X171435Y257480D01*X171435Y257480D02*X171435Y256720D01* X171435Y256720D02*X170760Y256720D01*X170760Y256720D02*X170760Y256435D01* X179260Y268790D02*X179260Y269810D01*X179260Y269810D02*X178340Y269810D01* X178340Y269810D02*X178340Y268790D01*X178340Y268790D02*X179260Y268790D01* X178557Y266210D02*X178557Y267180D01*X178557Y267180D02*X177587Y267180D01* X177587Y267180D02*X177587Y266210D01*X177587Y266210D02*X178557Y266210D01* X177240Y263215D02*X177240Y263190D01*X177240Y263190D02*X178160Y263190D01* X178160Y263190D02*X178160Y265210D01*X178160Y265210D02*X177240Y265210D01* X177240Y265210D02*X177240Y265185D01*X177240Y265185D02*X176490Y265185D01* X176490Y265185D02*X176490Y264215D01*X176490Y264215D02*X177240Y264215D01* X177240Y264215D02*X177240Y264185D01*X177240Y264185D02*X176490Y264185D01* X176490Y264185D02*X176490Y263215D01*X176490Y263215D02*X177240Y263215D01* X179160Y263190D02*X179160Y263215D01*X179160Y263215D02*X179840Y263215D01* X179840Y263215D02*X179840Y262890D01*X179840Y262890D02*X180760Y262890D01* X180760Y262890D02*X180760Y263910D01*X180760Y263910D02*X179910Y263910D01* X179910Y263910D02*X179910Y264185D01*X179910Y264185D02*X179160Y264185D01* X179160Y264185D02*X179160Y265210D01*X179160Y265210D02*X178240Y265210D01* X178240Y265210D02*X178240Y263190D01*X178240Y263190D02*X179160Y263190D01* X179160Y261090D02*X179160Y263110D01*X179160Y263110D02*X178240Y263110D01* X178240Y263110D02*X178240Y261090D01*X178240Y261090D02*X179160Y261090D01* X179160Y257590D02*X179160Y259610D01*X179160Y259610D02*X178240Y259610D01* X178240Y259610D02*X178240Y257590D01*X178240Y257590D02*X179160Y257590D01* X180760Y261490D02*X180760Y262510D01*X180760Y262510D02*X179840Y262510D01* X179840Y262510D02*X179840Y261490D01*X179840Y261490D02*X180760Y261490D01* X180760Y260090D02*X180760Y261110D01*X180760Y261110D02*X179840Y261110D01* X179840Y261110D02*X179840Y260090D01*X179840Y260090D02*X180760Y260090D01* X180760Y258590D02*X180760Y259610D01*X180760Y259610D02*X179840Y259610D01* X179840Y259610D02*X179840Y258590D01*X179840Y258590D02*X180760Y258590D01* X180760Y268790D02*X180760Y269810D01*X180760Y269810D02*X179840Y269810D01* X179840Y269810D02*X179840Y268790D01*X179840Y268790D02*X180760Y268790D01* X180760Y267290D02*X180760Y268310D01*X180760Y268310D02*X179840Y268310D01* X179840Y268310D02*X179840Y267290D01*X179840Y267290D02*X180760Y267290D01* X180760Y265690D02*X180760Y266710D01*X180760Y266710D02*X179840Y266710D01* X179840Y266710D02*X179840Y265690D01*X179840Y265690D02*X180760Y265690D01* X180760Y264290D02*X180760Y265310D01*X180760Y265310D02*X179840Y265310D01* X179840Y265310D02*X179840Y264290D01*X179840Y264290D02*X180760Y264290D01* X169736Y250160D02*X169760Y250160D01*X169760Y250160D02*X169760Y249435D01* X169760Y249435D02*X169840Y249435D01*X169840Y249435D02*X169840Y250160D01* X169840Y250160D02*X170760Y250160D01*X170760Y250160D02*X170760Y249935D01* X170760Y249935D02*X170882Y249935D01*X170882Y249935D02*X171290Y249527D01* X171290Y249527D02*X171290Y249386D01*X171290Y249386D02*X171721Y248955D01* X171721Y248955D02*X171951Y248955D01*X171951Y248955D02*X172172Y249176D01* X172172Y249176D02*X171994Y249176D01*X171994Y249176D02*X171994Y249945D01* X171994Y249945D02*X171350Y249945D01*X171350Y249945D02*X171350Y250195D01* X171350Y250195D02*X171093Y250195D01*X171093Y250195D02*X170823Y250465D01* X170823Y250465D02*X170760Y250465D01*X170760Y250465D02*X170760Y250240D01* X170760Y250240D02*X169840Y250240D01*X169840Y250240D02*X169840Y250264D01* X169840Y250264D02*X169736Y250160D01*X164736Y249240D02*X164840Y249136D01* X164840Y249136D02*X164840Y249160D01*X164840Y249160D02*X165449Y249160D01* X165449Y249160D02*X165529Y249240D01*X165529Y249240D02*X164840Y249240D01* X164840Y249240D02*X164840Y249828D01*X164840Y249828D02*X164760Y249908D01* X164760Y249908D02*X164760Y249240D01*X164760Y249240D02*X164736Y249240D01* X165445Y261935D02*X165598Y261935D01*X165598Y261935D02*X166055Y262392D01* X166055Y262392D02*X166193Y262530D01*X166193Y262530D02*X166590Y262530D01* X166590Y262530D02*X166840Y262780D01*X166840Y262780D02*X166840Y263160D01* X166840Y263160D02*X167065Y263160D01*X167065Y263160D02*X167065Y263240D01* X167065Y263240D02*X166840Y263240D01*X166840Y263240D02*X166840Y264118D01* X166840Y264118D02*X166760Y264038D01*X166760Y264038D02*X166760Y263240D01* X166760Y263240D02*X166155Y263240D01*X166155Y263240D02*X166155Y262683D01* X166155Y262683D02*X165445Y261973D01*X165445Y261973D02*X165445Y261935D01* X160998Y266160D02*X161449Y266160D01*X161449Y266160D02*X161529Y266240D01* X161529Y266240D02*X160998Y266240D01*X160998Y266240D02*X160998Y266160D01* X152900Y260160D02*X153760Y260160D01*X153760Y260160D02*X153760Y259240D01* X153760Y259240D02*X153151Y259240D01*X153151Y259240D02*X153071Y259160D01* X153071Y259160D02*X153760Y259160D01*X153760Y259160D02*X153760Y258551D01* X153760Y258551D02*X153840Y258471D01*X153840Y258471D02*X153840Y259160D01* X153840Y259160D02*X154760Y259160D01*X154760Y259160D02*X154760Y258425D01* X154760Y258425D02*X155135Y258425D01*X155135Y258425D02*X155135Y258690D01* X155135Y258690D02*X155366Y258690D01*X155366Y258690D02*X155366Y259450D01* X155366Y259450D02*X156080Y259450D01*X156080Y259450D02*X155550Y259980D01* X155550Y259980D02*X154760Y259980D01*X154760Y259980D02*X154760Y259240D01* X154760Y259240D02*X153840Y259240D01*X153840Y259240D02*X153840Y260160D01* X153840Y260160D02*X153864Y260160D01*X153864Y260160D02*X153760Y260264D01* X153760Y260264D02*X153760Y260240D01*X153760Y260240D02*X152900Y260240D01* X152900Y260240D02*X152900Y260160D01*X157035Y264160D02*X157760Y264160D01* X157760Y264160D02*X157760Y263240D01*X157760Y263240D02*X157611Y263240D01* X157611Y263240D02*X157750Y263101D01*X157750Y263101D02*X157750Y262441D01* X157750Y262441D02*X158620Y261571D01*X158620Y261571D02*X158620Y260455D01* X158620Y260455D02*X158640Y260455D01*X158640Y260455D02*X158640Y261290D01* X158640Y261290D02*X158735Y261290D01*X158735Y261290D02*X158735Y262255D01* X158735Y262255D02*X159035Y262255D01*X159035Y262255D02*X159035Y262292D01* X159035Y262292D02*X158203Y262292D01*X158203Y262292D02*X158203Y262929D01* X158203Y262929D02*X158065Y263067D01*X158065Y263067D02*X158065Y263240D01* X158065Y263240D02*X157840Y263240D01*X157840Y263240D02*X157840Y264160D01* X157840Y264160D02*X158555Y264160D01*X158555Y264160D02*X158555Y264240D01* X158555Y264240D02*X157840Y264240D01*X157840Y264240D02*X157840Y264569D01* X157840Y264569D02*X157760Y264649D01*X157760Y264649D02*X157760Y264240D01* X157760Y264240D02*X157035Y264240D01*X157035Y264240D02*X157035Y264160D01* X154760Y262408D02*X155160Y262408D01*X155160Y262408D02*X155160Y262816D01* X155160Y262816D02*X155053Y262923D01*X155053Y262923D02*X154970Y262840D01* X154970Y262840D02*X154760Y262840D01*X154760Y262840D02*X154760Y262408D01* X169093Y251160D02*X169760Y251160D01*X169760Y251160D02*X169760Y251136D01* X169760Y251136D02*X169864Y251240D01*X169864Y251240D02*X169840Y251240D01* X169840Y251240D02*X169840Y252160D01*X169840Y252160D02*X170760Y252160D01* X170760Y252160D02*X170760Y252126D01*X170760Y252126D02*X171520Y252126D01* X171520Y252126D02*X171520Y251426D01*X171520Y251426D02*X171679Y251426D01* X171679Y251426D02*X171679Y251691D01*X171679Y251691D02*X172649Y251691D01* X172649Y251691D02*X172649Y251599D01*X172649Y251599D02*X173549Y251599D01* X173549Y251599D02*X173549Y250995D01*X173549Y250995D02*X173581Y251026D01* X173581Y251026D02*X175297Y251026D01*X175297Y251026D02*X175529Y251258D01* X175529Y251258D02*X175666Y251396D01*X175666Y251396D02*X181619Y251396D01* X181619Y251396D02*X181879Y251136D01*X181879Y251136D02*X182370Y251136D01* X182370Y251136D02*X182370Y252790D01*X182370Y252790D02*X180040Y252790D01* X180040Y252790D02*X180040Y255110D01*X180040Y255110D02*X182370Y255110D01* X182370Y255110D02*X182370Y255789D01*X182370Y255789D02*X180960Y255789D01* X180960Y255789D02*X180873Y255876D01*X180873Y255876D02*X180537Y255876D01* X180537Y255876D02*X180537Y255116D01*X180537Y255116D02*X179567Y255116D01* X179567Y255116D02*X179567Y255876D01*X179567Y255876D02*X178184Y255876D01* X178184Y255876D02*X177164Y254856D01*X177164Y254856D02*X176465Y254856D01* X176465Y254856D02*X176465Y254720D01*X176465Y254720D02*X177340Y254720D01* X177340Y254720D02*X177340Y255010D01*X177340Y255010D02*X178260Y255010D01* X178260Y255010D02*X178260Y251990D01*X178260Y251990D02*X177340Y251990D01* X177340Y251990D02*X177340Y252280D01*X177340Y252280D02*X176577Y252280D01* X176577Y252280D02*X176577Y252015D01*X176577Y252015D02*X175607Y252015D01* X175607Y252015D02*X175607Y252985D01*X175607Y252985D02*X176565Y252985D01* X176565Y252985D02*X176565Y253586D01*X176565Y253586D02*X176549Y253570D01* X176549Y253570D02*X175705Y253570D01*X175705Y253570D02*X175705Y253305D01* X175705Y253305D02*X174735Y253305D01*X174735Y253305D02*X174735Y254275D01* X174735Y254275D02*X175495Y254275D01*X175495Y254275D02*X175495Y254856D01* X175495Y254856D02*X173115Y254856D01*X173115Y254856D02*X173115Y254606D01* X173115Y254606D02*X173964Y254606D01*X173964Y254606D02*X173964Y253636D01* X173964Y253636D02*X173327Y253636D01*X173327Y253636D02*X173216Y253525D01* X173216Y253525D02*X172220Y253525D01*X172220Y253525D02*X172220Y252879D01* X172220Y252879D02*X172796Y252879D01*X172796Y252879D02*X172796Y251909D01* X172796Y251909D02*X171826Y251909D01*X171826Y251909D02*X171826Y252174D01* X171826Y252174D02*X171420Y252174D01*X171420Y252174D02*X171115Y252480D01* X171115Y252480D02*X170760Y252480D01*X170760Y252480D02*X170760Y252240D01* X170760Y252240D02*X169840Y252240D01*X169840Y252240D02*X169840Y252249D01* X169840Y252249D02*X169751Y252160D01*X169751Y252160D02*X169760Y252160D01* X169760Y252160D02*X169760Y251240D01*X169760Y251240D02*X169173Y251240D01* X169173Y251240D02*X169093Y251160D01*X174597Y251156D02*X174597Y252126D01* X174597Y252126D02*X173627Y252126D01*X173627Y252126D02*X173627Y251156D01* X173627Y251156D02*X174597Y251156D01*X179260Y251990D02*X179260Y255010D01* X179260Y255010D02*X178340Y255010D01*X178340Y255010D02*X178340Y251990D01* X178340Y251990D02*X179260Y251990D01*X171220Y247965D02*X171665Y247520D01* X171665Y247520D02*X171665Y247187D01*X171665Y247187D02*X171975Y246876D01* X171975Y246876D02*X171975Y247015D01*X171975Y247015D02*X172946Y247015D01* X172946Y247015D02*X172946Y246626D01*X172946Y246626D02*X174275Y247956D01* X174275Y247956D02*X179292Y247956D01*X179292Y247956D02*X180123Y247125D01* X180123Y247125D02*X182370Y247125D01*X182370Y247125D02*X182370Y247220D01* X182370Y247220D02*X182323Y247220D01*X182323Y247220D02*X182323Y247990D01* X182323Y247990D02*X180040Y247990D01*X180040Y247990D02*X180040Y248665D01* X180040Y248665D02*X179290Y248665D01*X179290Y248665D02*X179290Y249635D01* X179290Y249635D02*X180040Y249635D01*X180040Y249635D02*X180040Y250166D01* X180040Y250166D02*X179567Y250166D01*X179567Y250166D02*X179567Y250926D01* X179567Y250926D02*X179547Y250926D01*X179547Y250926D02*X179547Y250166D01* X179547Y250166D02*X178577Y250166D01*X178577Y250166D02*X178577Y250926D01* X178577Y250926D02*X175861Y250926D01*X175861Y250926D02*X175629Y250694D01* X175629Y250694D02*X175492Y250556D01*X175492Y250556D02*X173775Y250556D01* X173775Y250556D02*X173224Y250005D01*X173224Y250005D02*X173224Y249736D01* X173224Y249736D02*X174176Y249736D01*X174176Y249736D02*X174176Y248766D01* X174176Y248766D02*X173538Y248766D01*X173538Y248766D02*X172737Y247965D01* X172737Y247965D02*X171220Y247965D01*X177340Y248069D02*X177340Y247990D01* X177340Y247990D02*X178260Y247990D01*X178260Y247990D02*X178260Y249010D01* X178260Y249010D02*X177560Y249010D01*X177560Y249010D02*X177560Y249039D01* X177560Y249039D02*X176590Y249039D01*X176590Y249039D02*X176590Y248069D01* X176590Y248069D02*X177340Y248069D01*X179260Y247990D02*X179260Y249010D01* X179260Y249010D02*X178340Y249010D01*X178340Y249010D02*X178340Y247990D01* X178340Y247990D02*X179260Y247990D01*X163760Y264471D02*X163840Y264551D01* X163840Y264551D02*X163840Y264980D01*X163840Y264980D02*X163760Y264980D01* X163760Y264980D02*X163760Y264471D01*X154760Y254610D02*X155634Y254610D01* X155634Y254610D02*X155724Y254520D01*X155724Y254520D02*X155725Y254520D01* X155725Y254520D02*X155725Y254519D01*X155725Y254519D02*X155819Y254425D01* X155819Y254425D02*X156265Y254425D01*X156265Y254425D02*X156265Y254690D01* X156265Y254690D02*X157025Y254690D01*X157025Y254690D02*X157025Y254710D01* X157025Y254710D02*X156265Y254710D01*X156265Y254710D02*X156265Y254975D01* X156265Y254975D02*X154760Y254975D01*X154760Y254975D02*X154760Y254610D01* X154050Y250160D02*X154742Y250160D01*X154742Y250160D02*X154840Y250258D01* X154840Y250258D02*X154840Y251160D01*X154840Y251160D02*X155305Y251160D01* X155305Y251160D02*X155305Y251784D01*X155305Y251784D02*X156180Y251784D01* X156180Y251784D02*X156926Y252530D01*X156926Y252530D02*X156926Y253720D01* X156926Y253720D02*X156777Y253720D01*X156777Y253720D02*X156777Y252930D01* X156777Y252930D02*X156106Y252930D01*X156106Y252930D02*X156106Y252452D01* X156106Y252452D02*X155660Y252452D01*X155660Y252452D02*X155660Y251823D01* X155660Y251823D02*X154760Y251823D01*X154760Y251823D02*X154760Y251240D01* X154760Y251240D02*X154050Y251240D01*X154050Y251240D02*X154050Y251160D01* X154050Y251160D02*X154760Y251160D01*X154760Y251160D02*X154760Y250240D01* X154760Y250240D02*X154050Y250240D01*X154050Y250240D02*X154050Y250160D01* X154760Y255415D02*X156265Y255415D01*X156265Y255415D02*X156265Y255680D01* X156265Y255680D02*X157221Y255680D01*X157221Y255680D02*X157521Y255980D01* X157521Y255980D02*X154760Y255980D01*X154760Y255980D02*X154760Y255415D01* X152760Y257420D02*X152840Y257420D01*X152840Y257420D02*X152840Y258100D01* X152840Y258100D02*X152760Y258100D01*X152760Y258100D02*X152760Y257420D01* X191660Y279720D02*X192336Y279720D01*X192336Y279720D02*X192587Y279971D01* X192587Y279971D02*X195407Y279971D01*X195407Y279971D02*X195407Y280131D01* X195407Y280131D02*X193817Y280131D01*X193817Y280131D02*X193068Y280880D01* X193068Y280880D02*X191660Y280880D01*X191660Y280880D02*X191660Y279720D01* X166059Y255953D02*X166079Y255933D01*X166079Y255933D02*X166497Y255933D01* X166497Y255933D02*X166499Y255935D01*X166499Y255935D02*X166840Y255935D01* X166840Y255935D02*X166840Y256160D01*X166840Y256160D02*X167760Y256160D01* X167760Y256160D02*X167760Y255259D01*X167760Y255259D02*X167858Y255160D01* X167858Y255160D02*X168428Y255160D01*X168428Y255160D02*X168508Y255240D01* X168508Y255240D02*X167840Y255240D01*X167840Y255240D02*X167840Y256160D01* X167840Y256160D02*X168742Y256160D01*X168742Y256160D02*X168840Y256258D01* X168840Y256258D02*X168840Y257160D01*X168840Y257160D02*X169449Y257160D01* X169449Y257160D02*X169529Y257240D01*X169529Y257240D02*X168840Y257240D01* X168840Y257240D02*X168840Y257828D01*X168840Y257828D02*X168760Y257908D01* X168760Y257908D02*X168760Y257240D01*X168760Y257240D02*X168071Y257240D01* X168071Y257240D02*X168151Y257160D01*X168151Y257160D02*X168760Y257160D01* X168760Y257160D02*X168760Y256240D01*X168760Y256240D02*X167840Y256240D01* X167840Y256240D02*X167840Y256849D01*X167840Y256849D02*X167760Y256929D01* X167760Y256929D02*X167760Y256240D01*X167760Y256240D02*X166840Y256240D01* X166840Y256240D02*X166840Y256480D01*X166840Y256480D02*X166781Y256480D01* X166781Y256480D02*X166773Y256472D01*X166773Y256472D02*X166773Y255953D01* X166773Y255953D02*X166059Y255953D01*X168760Y250551D02*X168840Y250471D01* X168840Y250471D02*X168840Y250980D01*X168840Y250980D02*X168760Y250980D01* X168760Y250980D02*X168760Y250551D01*X169760Y256435D02*X169840Y256435D01* X169840Y256435D02*X169840Y256929D01*X169840Y256929D02*X169760Y256849D01* X169760Y256849D02*X169760Y256435D01*X165863Y254362D02*X165870Y254355D01* X165870Y254355D02*X166813Y254355D01*X166813Y254355D02*X166840Y254382D01* X166840Y254382D02*X166840Y254972D01*X166840Y254972D02*X166252Y254972D01* X166252Y254972D02*X166252Y254362D01*X166252Y254362D02*X165863Y254362D01* X164498Y258817D02*X164983Y258817D01*X164983Y258817D02*X164983Y258567D01* X164983Y258567D02*X165113Y258567D01*X165113Y258567D02*X165120Y258560D01* X165120Y258560D02*X165511Y258560D01*X165511Y258560D02*X166134Y259184D01* X166134Y259184D02*X166761Y259184D01*X166761Y259184D02*X166781Y259204D01* X166781Y259204D02*X166067Y259204D01*X166067Y259204D02*X166067Y260418D01* X166067Y260418D02*X165787Y260138D01*X165787Y260138D02*X165787Y259479D01* X165787Y259479D02*X164951Y259479D01*X164951Y259479D02*X164951Y259270D01* X164951Y259270D02*X164498Y258817D01*X168760Y249573D02*X168840Y249493D01* X168840Y249493D02*X168840Y250010D01*X168840Y250010D02*X168760Y250010D01* X168760Y250010D02*X168760Y249573D01*X167755Y246861D02*X168272Y246344D01* X168272Y246344D02*X168272Y246829D01*X168272Y246829D02*X168550Y247107D01* X168550Y247107D02*X168550Y247240D01*X168550Y247240D02*X167882Y247240D01* X167882Y247240D02*X167755Y247113D01*X167755Y247113D02*X167755Y246861D01* X203060Y278360D02*X204215Y278360D01*X204215Y278360D02*X204215Y278385D01* X204215Y278385D02*X205185Y278385D01*X205185Y278385D02*X205185Y278360D01* X205185Y278360D02*X205215Y278360D01*X205215Y278360D02*X205215Y278385D01* X205215Y278385D02*X206185Y278385D01*X206185Y278385D02*X206185Y278360D01* X206185Y278360D02*X206215Y278360D01*X206215Y278360D02*X206215Y278385D01* X206215Y278385D02*X207185Y278385D01*X207185Y278385D02*X207185Y278360D01* X207185Y278360D02*X207215Y278360D01*X207215Y278360D02*X207215Y278385D01* X207215Y278385D02*X208185Y278385D01*X208185Y278385D02*X208185Y278360D01* X208185Y278360D02*X208195Y278360D01*X208195Y278360D02*X208195Y278385D01* X208195Y278385D02*X209165Y278385D01*X209165Y278385D02*X209165Y278360D01* X209165Y278360D02*X209215Y278360D01*X209215Y278360D02*X209215Y278385D01* X209215Y278385D02*X210185Y278385D01*X210185Y278385D02*X210185Y278360D01* X210185Y278360D02*X210196Y278360D01*X210196Y278360D02*X210196Y278380D01* X210196Y278380D02*X211166Y278380D01*X211166Y278380D02*X211166Y278360D01* X211166Y278360D02*X211215Y278360D01*X211215Y278360D02*X211215Y278385D01* X211215Y278385D02*X212185Y278385D01*X212185Y278385D02*X212185Y278360D01* X212185Y278360D02*X212215Y278360D01*X212215Y278360D02*X212215Y278385D01* X212215Y278385D02*X213185Y278385D01*X213185Y278385D02*X213185Y278360D01* X213185Y278360D02*X213215Y278360D01*X213215Y278360D02*X213215Y278385D01* X213215Y278385D02*X214185Y278385D01*X214185Y278385D02*X214185Y278360D01* X214185Y278360D02*X214215Y278360D01*X214215Y278360D02*X214215Y278385D01* X214215Y278385D02*X215185Y278385D01*X215185Y278385D02*X215185Y278360D01* X215185Y278360D02*X216215Y278360D01*X216215Y278360D02*X216215Y278385D01* X216215Y278385D02*X217185Y278385D01*X217185Y278385D02*X217185Y278360D01* X217185Y278360D02*X217215Y278360D01*X217215Y278360D02*X217215Y278385D01* X217215Y278385D02*X218185Y278385D01*X218185Y278385D02*X218185Y278360D01* X218185Y278360D02*X218215Y278360D01*X218215Y278360D02*X218215Y278365D01* X218215Y278365D02*X219185Y278365D01*X219185Y278365D02*X219185Y278360D01* X219185Y278360D02*X219940Y278360D01*X219940Y278360D02*X219940Y278880D01* X219940Y278880D02*X219290Y278880D01*X219290Y278880D02*X219185Y278985D01* X219185Y278985D02*X219185Y278415D01*X219185Y278415D02*X218215Y278415D01* X218215Y278415D02*X218215Y279180D01*X218215Y279180D02*X218165Y279180D01* X218165Y279180D02*X218165Y278415D01*X218165Y278415D02*X217195Y278415D01* X217195Y278415D02*X217195Y279180D01*X217195Y279180D02*X216185Y279180D01* X216185Y279180D02*X216185Y278415D01*X216185Y278415D02*X215215Y278415D01* X215215Y278415D02*X215215Y279180D01*X215215Y279180D02*X215185Y279180D01* X215185Y279180D02*X215185Y278415D01*X215185Y278415D02*X214215Y278415D01* X214215Y278415D02*X214215Y279180D01*X214215Y279180D02*X214185Y279180D01* X214185Y279180D02*X214185Y278415D01*X214185Y278415D02*X213215Y278415D01* X213215Y278415D02*X213215Y279180D01*X213215Y279180D02*X213185Y279180D01* X213185Y279180D02*X213185Y278415D01*X213185Y278415D02*X212215Y278415D01* X212215Y278415D02*X212215Y279180D01*X212215Y279180D02*X211154Y279180D01* X211154Y279180D02*X211154Y278415D01*X211154Y278415D02*X210184Y278415D01* X210184Y278415D02*X210184Y279180D01*X210184Y279180D02*X209185Y279180D01* X209185Y279180D02*X209185Y278415D01*X209185Y278415D02*X208215Y278415D01* X208215Y278415D02*X208215Y279180D01*X208215Y279180D02*X208185Y279180D01* X208185Y279180D02*X208185Y278415D01*X208185Y278415D02*X207215Y278415D01* X207215Y278415D02*X207215Y279180D01*X207215Y279180D02*X207185Y279180D01* X207185Y279180D02*X207185Y278415D01*X207185Y278415D02*X206215Y278415D01* X206215Y278415D02*X206215Y279180D01*X206215Y279180D02*X206185Y279180D01* X206185Y279180D02*X206185Y278415D01*X206185Y278415D02*X205215Y278415D01* X205215Y278415D02*X205215Y279374D01*X205215Y279374D02*X205174Y279415D01* X205174Y279415D02*X204215Y279415D01*X204215Y279415D02*X204215Y280074D01* X204215Y280074D02*X203980Y280309D01*X203980Y280309D02*X203980Y280415D01* X203980Y280415D02*X203215Y280415D01*X203215Y280415D02*X203215Y281385D01* X203215Y281385D02*X203604Y281385D01*X203604Y281385D02*X203060Y281929D01* X203060Y281929D02*X203060Y278360D01*X086000Y216000D02*X315500Y216000D01* X315500Y290000D01*X086000Y290000D01*X086000Y216000D01*X000000Y000000D02*D02* G54D135*X300500Y253010D03*X284500Y253010D03*X284500Y287010D03*X284500Y219010D03* X177500Y218260D03*X177500Y287760D03*D02*G54D136*X154300Y254700D02* X154760Y254700D01*X154300Y254700D02*X153840Y254700D01*X153300Y257700D02* X153760Y257700D01*X153300Y257700D02*X153300Y258160D01*X153300Y257700D02* X152840Y257700D01*X153300Y257700D02*X153300Y257240D01*X169300Y265700D02* X168840Y265700D01*X169300Y263700D02*X169760Y263700D01*X169300Y263700D02* X168840Y263700D01*X142300Y244900D02*X142860Y244900D01*X142300Y244900D02* X141740Y244900D01*X142300Y244900D02*X142300Y244240D01*X169300Y252700D02* X169300Y253160D01*X169300Y252700D02*X168840Y252700D01*X163300Y264700D02* X163760Y264700D01*X163300Y264700D02*X163300Y264240D01*X164300Y250700D02* X163840Y250700D01*X164300Y250700D02*X164300Y250240D01*X164300Y249700D02* X164760Y249700D01*X164300Y249700D02*X164300Y250160D01*X163300Y250700D02* X163760Y250700D01*X163300Y250700D02*X163300Y251160D01*X163300Y250700D02* X163300Y250240D01*X166300Y250700D02*X165840Y250700D01*X154300Y257700D02* X154760Y257700D01*X154300Y257700D02*X153840Y257700D01*X154300Y257700D02* X154300Y257240D01*X153300Y257700D02*X153760Y257700D01*X153300Y257700D02* X153300Y258160D01*X153300Y257700D02*X152840Y257700D01*X153300Y257700D02* X153300Y257240D01*X163300Y250700D02*X163760Y250700D01*X163300Y250700D02* X163300Y251160D01*X163300Y250700D02*X163300Y250240D01*X158300Y248700D02* X158760Y248700D01*X158300Y248700D02*X158300Y248240D01*X152300Y257700D02* X152760Y257700D01*X152300Y257700D02*X151840Y257700D01*X153300Y265700D02* X153760Y265700D01*X153300Y265700D02*X153300Y265240D01*X154300Y264700D02* X154760Y264700D01*X154300Y264700D02*X154300Y265160D01*X154300Y264700D02* X153840Y264700D01*X154300Y264700D02*X154300Y264240D01*X154300Y264700D02* X154760Y264700D01*X154300Y264700D02*X154300Y265160D01*X154300Y264700D02* X153840Y264700D01*X154300Y264700D02*X154300Y264240D01*X220800Y279900D02* X221660Y279900D01*X220800Y279900D02*X219940Y279900D01*X220800Y279900D02* X221660Y279900D01*X220800Y279900D02*X219940Y279900D01*X146540Y285540D02* X147970Y285540D01*X146540Y285540D02*X146540Y286970D01*X146540Y285540D02* X145110Y285540D01*X146540Y285540D02*X146540Y284110D01*X179160Y239220D02* X180107Y239220D01*X179160Y239220D02*X179160Y240167D01*X179160Y239220D02* X178213Y239220D01*X179160Y239220D02*X179160Y238273D01*X138800Y234050D02* X139960Y234050D01*X138800Y234050D02*X138800Y235510D01*X138800Y234050D02* X137640Y234050D01*X138800Y234050D02*X138800Y232590D01*X141460Y280460D02* X142890Y280460D01*X141460Y280460D02*X141460Y281890D01*X141460Y280460D02* X140030Y280460D01*X141460Y280460D02*X141460Y279030D01*X125460Y280460D02* X126890Y280460D01*X125460Y280460D02*X125460Y281890D01*X125460Y280460D02* X124030Y280460D01*X125460Y280460D02*X125460Y279030D01*X125460Y220460D02* X126890Y220460D01*X125460Y220460D02*X125460Y221890D01*X125460Y220460D02* X124030Y220460D01*X125460Y220460D02*X125460Y219030D01*X130540Y220460D02* X131970Y220460D01*X130540Y220460D02*X130540Y221890D01*X130540Y220460D02* X129110Y220460D01*X130540Y220460D02*X130540Y219030D01*X174150Y235700D02* X174710Y235700D01*X174150Y235700D02*X174150Y236360D01*X174150Y235700D02* X173590Y235700D01*X174150Y235700D02*X174150Y235040D01*X110460Y261540D02* X111890Y261540D01*X110460Y261540D02*X110460Y262970D01*X110460Y261540D02* X109030Y261540D01*X110460Y261540D02*X110460Y260110D01*X163400Y239200D02* X163400Y239660D01*X163400Y239200D02*X163400Y238740D01*X091500Y253100D02* X091500Y254022D01*X091500Y253100D02*X090578Y253100D01*X091500Y253100D02* X091500Y252178D01*X166800Y239200D02*X166800Y239660D01*X166800Y239200D02* X166800Y238740D01*X165800Y239200D02*X165800Y239660D01*X165800Y239200D02* X165800Y238740D01*X130540Y237540D02*X131970Y237540D01*X130540Y237540D02* X130540Y238970D01*X130540Y237540D02*X129110Y237540D01*X130540Y237540D02* X130540Y236110D01*X154400Y233600D02*X155347Y233600D01*X154400Y233600D02* X154400Y234547D01*X154400Y233600D02*X153453Y233600D01*X154400Y233600D02* X154400Y232653D01*X174150Y238500D02*X174710Y238500D01*X174150Y238500D02* X174150Y239160D01*X174150Y238500D02*X173590Y238500D01*X174150Y238500D02* X174150Y237840D01*X091500Y237100D02*X092422Y237100D01*X091500Y237100D02* X091500Y238022D01*X091500Y237100D02*X090578Y237100D01*X091500Y237100D02* X091500Y236178D01*X138000Y274100D02*X139160Y274100D01*X138000Y274100D02* X138000Y275560D01*X138000Y274100D02*X136840Y274100D01*X138000Y274100D02* X138000Y272640D01*X164500Y275150D02*X164500Y275610D01*X164500Y275150D02* X164500Y274690D01*X207200Y283400D02*X207200Y283860D01*X207200Y283400D02* X207200Y282940D01*X110460Y225540D02*X111890Y225540D01*X110460Y225540D02* X110460Y226970D01*X110460Y225540D02*X109030Y225540D01*X110460Y225540D02* X110460Y224110D01*X139500Y254400D02*X140060Y254400D01*X139500Y254400D02* X139500Y255060D01*X139500Y254400D02*X138940Y254400D01*X139500Y254400D02* X139500Y253740D01*X097500Y249100D02*X097500Y250022D01*X097500Y249100D02* X097500Y248178D01*X115540Y225540D02*X116970Y225540D01*X115540Y225540D02* X115540Y226970D01*X115540Y225540D02*X114110Y225540D01*X115540Y225540D02* X115540Y224110D01*X138800Y238150D02*X139960Y238150D01*X138800Y238150D02* X138800Y239610D01*X138800Y238150D02*X137640Y238150D01*X138800Y238150D02* X138800Y236690D01*X091500Y255100D02*X091500Y256022D01*X091500Y255100D02* X090578Y255100D01*X091500Y255100D02*X091500Y254178D01*X125460Y268460D02* X126890Y268460D01*X125460Y268460D02*X125460Y269890D01*X125460Y268460D02* X124030Y268460D01*X125460Y268460D02*X125460Y267030D01*X198400Y288850D02* X199060Y288850D01*X198400Y288850D02*X197740Y288850D01*X198400Y288850D02* X198400Y288290D01*X188000Y279100D02*X188560Y279100D01*X188000Y279100D02* X188000Y279760D01*X188000Y279100D02*X187440Y279100D01*X202200Y280300D02* X203060Y280300D01*X202200Y280300D02*X201340Y280300D01*X216700Y283400D02* X217210Y283400D01*X216700Y283400D02*X216700Y283860D01*X216700Y283400D02* X216700Y282940D01*X097500Y237100D02*X098422Y237100D01*X097500Y237100D02* X097500Y238022D01*X097500Y237100D02*X096578Y237100D01*X097500Y237100D02* X097500Y236178D01*X199800Y288850D02*X200460Y288850D01*X199800Y288850D02* X199140Y288850D01*X159800Y238750D02*X160310Y238750D01*X159800Y238750D02* X159800Y239210D01*X159800Y238750D02*X159290Y238750D01*X159800Y238750D02* X159800Y238290D01*X139500Y250200D02*X140060Y250200D01*X139500Y250200D02* X139500Y250860D01*X139500Y250200D02*X138940Y250200D01*X115540Y232460D02* X116970Y232460D01*X115540Y232460D02*X115540Y233890D01*X115540Y232460D02* X114110Y232460D01*X115540Y232460D02*X115540Y231030D01*X169300Y263700D02* X169760Y263700D01*X169300Y263700D02*X168840Y263700D01*X130540Y268460D02* X131970Y268460D01*X130540Y268460D02*X130540Y269890D01*X130540Y268460D02* X129110Y268460D01*X130540Y268460D02*X130540Y267030D01*X110460Y285540D02* X111890Y285540D01*X110460Y285540D02*X110460Y286970D01*X110460Y285540D02* X109030Y285540D01*X110460Y285540D02*X110460Y284110D01*X110460Y256460D02* X111890Y256460D01*X110460Y256460D02*X110460Y257890D01*X110460Y256460D02* X109030Y256460D01*X110460Y256460D02*X110460Y255030D01*X153460Y280560D02* X154890Y280560D01*X153460Y280560D02*X153460Y281990D01*X153460Y280560D02* X152030Y280560D01*X153460Y280560D02*X153460Y279130D01*X194900Y286000D02* X194900Y286860D01*X194900Y286000D02*X194900Y285140D01*X224900Y285600D02* X224900Y286460D01*X224900Y285600D02*X224900Y284740D01*X110460Y232460D02* X111890Y232460D01*X110460Y232460D02*X110460Y233890D01*X110460Y232460D02* X109030Y232460D01*X110460Y232460D02*X110460Y231030D01*X155700Y275150D02* X156210Y275150D01*X155700Y275150D02*X155700Y275610D01*X155700Y275150D02* X155190Y275150D01*X155700Y275150D02*X155700Y274690D01*X097500Y245100D02* X098422Y245100D01*X097500Y245100D02*X097500Y246022D01*X097500Y245100D02* X096578Y245100D01*X097500Y245100D02*X097500Y244178D01*X167800Y239200D02* X168310Y239200D01*X167800Y239200D02*X167800Y239660D01*X167800Y239200D02* X167800Y238740D01*X213200Y283400D02*X213710Y283400D01*X213200Y283400D02* X213200Y283860D01*X213200Y283400D02*X213200Y282940D01*X142700Y260500D02* X143160Y260500D01*X142700Y260500D02*X142240Y260500D01*X115540Y285540D02* X116970Y285540D01*X115540Y285540D02*X115540Y286970D01*X115540Y285540D02* X114110Y285540D01*X115540Y285540D02*X115540Y284110D01*X130540Y244460D02* X131970Y244460D01*X130540Y244460D02*X130540Y245890D01*X130540Y244460D02* X129110Y244460D01*X130540Y244460D02*X130540Y243030D01*X215700Y283400D02* X215700Y283860D01*X215700Y283400D02*X215700Y282940D01*X154400Y236100D02* X155347Y236100D01*X154400Y236100D02*X154400Y237047D01*X154400Y236100D02* X153453Y236100D01*X154400Y236100D02*X154400Y235153D01*X174800Y280500D02* X176260Y280500D01*X174800Y280500D02*X174800Y281660D01*X174800Y280500D02* X173340Y280500D01*X174800Y280500D02*X174800Y279340D01*X140460Y220460D02* X141890Y220460D01*X140460Y220460D02*X140460Y221890D01*X140460Y220460D02* X139030Y220460D01*X140460Y220460D02*X140460Y219030D01*X138700Y266250D02* X140160Y266250D01*X138700Y266250D02*X138700Y267410D01*X138700Y266250D02* X137240Y266250D01*X138700Y266250D02*X138700Y265090D01*X142800Y251700D02* X142800Y251190D01*X097500Y255100D02*X097500Y256022D01*X097500Y255100D02* X097500Y254178D01*X211450Y286450D02*X212610Y286450D01*X211450Y286450D02* X211450Y288010D01*X211450Y286450D02*X210290Y286450D01*X211450Y286450D02* X211450Y284890D01*X091500Y245100D02*X092422Y245100D01*X091500Y245100D02* X091500Y246022D01*X091500Y245100D02*X090578Y245100D01*X091500Y245100D02* X091500Y244178D01*X174500Y237100D02*X175060Y237100D01*X174500Y237100D02* X174500Y237760D01*X174500Y237100D02*X173940Y237100D01*X174500Y237100D02* X174500Y236440D01*X170850Y236550D02*X171510Y236550D01*X170850Y236550D02* X170850Y237110D01*X170850Y236550D02*X170850Y235990D01*X157600Y239200D02* X158110Y239200D01*X157600Y239200D02*X157600Y239660D01*X157600Y239200D02* X157090Y239200D01*X157600Y239200D02*X157600Y238740D01*X115540Y244460D02* X116970Y244460D01*X115540Y244460D02*X115540Y245890D01*X115540Y244460D02* X114110Y244460D01*X115540Y244460D02*X115540Y243030D01*X158540Y280560D02* X159970Y280560D01*X158540Y280560D02*X158540Y281990D01*X158540Y280560D02* X157110Y280560D01*X158540Y280560D02*X158540Y279130D01*X130540Y285540D02* X131970Y285540D01*X130540Y285540D02*X130540Y286970D01*X130540Y285540D02* X129110Y285540D01*X130540Y285540D02*X130540Y284110D01*X153800Y238700D02* X154460Y238700D01*X153800Y238700D02*X153800Y239260D01*X153800Y238700D02* X153140Y238700D01*X153800Y238700D02*X153800Y238140D01*X208200Y283400D02* X208200Y282940D01*X110460Y273540D02*X111890Y273540D01*X110460Y273540D02* X110460Y274970D01*X110460Y273540D02*X109030Y273540D01*X110460Y273540D02* X110460Y272110D01*X210200Y283400D02*X210200Y283860D01*X210200Y283400D02* X210200Y282940D01*X139500Y251600D02*X140060Y251600D01*X139500Y251600D02* X139500Y252260D01*X139500Y251600D02*X138940Y251600D01*X139500Y251600D02* X139500Y250940D01*X139500Y253000D02*X140060Y253000D01*X139500Y253000D02* X139500Y253660D01*X139500Y253000D02*X138940Y253000D01*X139500Y253000D02* X139500Y252340D01*X139500Y248800D02*X140060Y248800D01*X139500Y248800D02* X138940Y248800D01*X139500Y248800D02*X139500Y248140D01*X142700Y259500D02* X143160Y259500D01*X142700Y259500D02*X142240Y259500D01*X142700Y259500D02* X142700Y258990D01*X097500Y253100D02*X097500Y254022D01*X097500Y253100D02* X097500Y252178D01*X162850Y236750D02*X163510Y236750D01*X162850Y236750D02* X162850Y237310D01*X162850Y236750D02*X162190Y236750D01*X162850Y236750D02* X162850Y236190D01*X130540Y273540D02*X131970Y273540D01*X130540Y273540D02* X130540Y274970D01*X130540Y273540D02*X129110Y273540D01*X130540Y273540D02* X130540Y272110D01*X110460Y268460D02*X111890Y268460D01*X110460Y268460D02* X110460Y269890D01*X110460Y268460D02*X109030Y268460D01*X110460Y268460D02* X110460Y267030D01*X152460Y220460D02*X153890Y220460D01*X152460Y220460D02* X152460Y221890D01*X152460Y220460D02*X151030Y220460D01*X152460Y220460D02* X152460Y219030D01*X152600Y239200D02*X152600Y239660D01*X152600Y239200D02* X152090Y239200D01*X152600Y239200D02*X152600Y238740D01*X115540Y261540D02* X116970Y261540D01*X115540Y261540D02*X115540Y262970D01*X115540Y261540D02* X114110Y261540D01*X115540Y261540D02*X115540Y260110D01*X115540Y268460D02* X116970Y268460D01*X115540Y268460D02*X115540Y269890D01*X115540Y268460D02* X114110Y268460D01*X115540Y268460D02*X115540Y267030D01*X168800Y236550D02* X169460Y236550D01*X168800Y236550D02*X168800Y237110D01*X168800Y236550D02* X168140Y236550D01*X168800Y236550D02*X168800Y235990D01*X130540Y232460D02* X131970Y232460D01*X130540Y232460D02*X130540Y233890D01*X130540Y232460D02* X129110Y232460D01*X130540Y232460D02*X130540Y231030D01*X125460Y249540D02* X126890Y249540D01*X125460Y249540D02*X125460Y250970D01*X125460Y249540D02* X124030Y249540D01*X125460Y249540D02*X125460Y248110D01*X115540Y256460D02* X116970Y256460D01*X115540Y256460D02*X115540Y257890D01*X115540Y256460D02* X114110Y256460D01*X115540Y256460D02*X115540Y255030D01*X097500Y241100D02* X098422Y241100D01*X097500Y241100D02*X097500Y242022D01*X097500Y241100D02* X096578Y241100D01*X097500Y241100D02*X097500Y240178D01*X142800Y247600D02* X143260Y247600D01*X142800Y247600D02*X142800Y248110D01*X142800Y247600D02* X142340Y247600D01*X142700Y265600D02*X142240Y265600D01*X142700Y265600D02* X142700Y265090D01*X130540Y261540D02*X131970Y261540D01*X130540Y261540D02* X130540Y262970D01*X130540Y261540D02*X129110Y261540D01*X130540Y261540D02* X130540Y260110D01*X125460Y256460D02*X126890Y256460D01*X125460Y256460D02* X125460Y257890D01*X125460Y256460D02*X124030Y256460D01*X125460Y256460D02* X125460Y255030D01*X181700Y239220D02*X181700Y240167D01*X181700Y239220D02* X180753Y239220D01*X181700Y239220D02*X181700Y238273D01*X211200Y283400D02* X211200Y283860D01*X211200Y283400D02*X211200Y282940D01*X115540Y220460D02* X116970Y220460D01*X115540Y220460D02*X115540Y221890D01*X115540Y220460D02* X114110Y220460D01*X115540Y220460D02*X115540Y219030D01*X091500Y251100D02* X092422Y251100D01*X091500Y251100D02*X091500Y252022D01*X091500Y251100D02* X090578Y251100D01*X091500Y251100D02*X091500Y250178D01*X138000Y270100D02* X139160Y270100D01*X138000Y270100D02*X138000Y271560D01*X138000Y270100D02* X136840Y270100D01*X138000Y270100D02*X138000Y268640D01*X125460Y285540D02* X126890Y285540D01*X125460Y285540D02*X125460Y286970D01*X125460Y285540D02* X124030Y285540D01*X125460Y285540D02*X125460Y284110D01*X091500Y243100D02* X092422Y243100D01*X091500Y243100D02*X091500Y244022D01*X091500Y243100D02* X090578Y243100D01*X091500Y243100D02*X091500Y242178D01*X212200Y283400D02* X212200Y283860D01*X212200Y283400D02*X212200Y282940D01*X190800Y280300D02* X191660Y280300D01*X190800Y280300D02*X189940Y280300D01*X166895Y224078D02* X167373Y224078D01*X166895Y224078D02*X166895Y225381D01*X166895Y224078D02* X166418Y224078D01*X166895Y224078D02*X166895Y222775D01*X157540Y220460D02* X158970Y220460D01*X157540Y220460D02*X157540Y221890D01*X157540Y220460D02* X156110Y220460D01*X157540Y220460D02*X157540Y219030D01*X146540Y280460D02* X147970Y280460D01*X146540Y280460D02*X146540Y281890D01*X146540Y280460D02* X145110Y280460D01*X146540Y280460D02*X146540Y279030D01*X097500Y239100D02* X098422Y239100D01*X097500Y239100D02*X097500Y240022D01*X097500Y239100D02* X096578Y239100D01*X097500Y239100D02*X097500Y238178D01*X125460Y244460D02* X126890Y244460D01*X125460Y244460D02*X125460Y245890D01*X125460Y244460D02* X124030Y244460D01*X125460Y244460D02*X125460Y243030D01*X110460Y237540D02* X111890Y237540D01*X110460Y237540D02*X110460Y238970D01*X110460Y237540D02* X109030Y237540D01*X110460Y237540D02*X110460Y236110D01*X152000Y275150D02* X152510Y275150D01*X152000Y275150D02*X152000Y275610D01*X152000Y275150D02* X151490Y275150D01*X152000Y275150D02*X152000Y274690D01*X115540Y237540D02* X116970Y237540D01*X115540Y237540D02*X115540Y238970D01*X115540Y237540D02* X114110Y237540D01*X115540Y237540D02*X115540Y236110D01*X097500Y243100D02* X098422Y243100D01*X097500Y243100D02*X097500Y244022D01*X097500Y243100D02* X096578Y243100D01*X097500Y243100D02*X097500Y242178D01*X171300Y220500D02* X171960Y220500D01*X171300Y220500D02*X171300Y221060D01*X171300Y220500D02* X170640Y220500D01*X171300Y220500D02*X171300Y219940D01*X115540Y249540D02* X116970Y249540D01*X115540Y249540D02*X115540Y250970D01*X115540Y249540D02* X114110Y249540D01*X115540Y249540D02*X115540Y248110D01*X206200Y283400D02* X206200Y283860D01*X206200Y283400D02*X206200Y282940D01*X142700Y266600D02* X143160Y266600D01*X142700Y266600D02*X142240Y266600D01*X157540Y225540D02* X158970Y225540D01*X157540Y225540D02*X157540Y226970D01*X157540Y225540D02* X156110Y225540D01*X157540Y225540D02*X157540Y224110D01*X097500Y251100D02* X097500Y252022D01*X097500Y251100D02*X096578Y251100D01*X097500Y251100D02* X097500Y250178D01*X125460Y273540D02*X126890Y273540D01*X125460Y273540D02* X125460Y274970D01*X125460Y273540D02*X124030Y273540D01*X125460Y273540D02* X125460Y272110D01*X115540Y280460D02*X116970Y280460D01*X115540Y280460D02* X115540Y281890D01*X115540Y280460D02*X114110Y280460D01*X115540Y280460D02* X115540Y279030D01*X130540Y225540D02*X131970Y225540D01*X130540Y225540D02* X130540Y226970D01*X130540Y225540D02*X129110Y225540D01*X130540Y225540D02* X130540Y224110D01*X152460Y225540D02*X153890Y225540D01*X152460Y225540D02* X152460Y226970D01*X152460Y225540D02*X151030Y225540D01*X152460Y225540D02* X152460Y224110D01*X214700Y283400D02*X214700Y283860D01*X214700Y283400D02* X214190Y283400D01*X214700Y283400D02*X214700Y282940D01*X165500Y275150D02* X165500Y275610D01*X165500Y275150D02*X165500Y274690D01*X145540Y220460D02* X146970Y220460D01*X145540Y220460D02*X145540Y221890D01*X145540Y220460D02* X144110Y220460D01*X145540Y220460D02*X145540Y219030D01*X130540Y249540D02* X131970Y249540D01*X130540Y249540D02*X130540Y250970D01*X130540Y249540D02* X129110Y249540D01*X130540Y249540D02*X130540Y248110D01*X125460Y237540D02* X126890Y237540D01*X125460Y237540D02*X125460Y238970D01*X125460Y237540D02* X124030Y237540D01*X125460Y237540D02*X125460Y236110D01*X142700Y267600D02* X143160Y267600D01*X142700Y267600D02*X142700Y268110D01*X142700Y267600D02* X142240Y267600D01*X125460Y232460D02*X126890Y232460D01*X125460Y232460D02* X125460Y233890D01*X125460Y232460D02*X124030Y232460D01*X125460Y232460D02* X125460Y231030D01*X110460Y244460D02*X111890Y244460D01*X110460Y244460D02* X110460Y245890D01*X110460Y244460D02*X109030Y244460D01*X110460Y244460D02* X110460Y243030D01*X110460Y249540D02*X111890Y249540D01*X110460Y249540D02* X110460Y250970D01*X110460Y249540D02*X109030Y249540D01*X110460Y249540D02* X110460Y248110D01*X097500Y247100D02*X098422Y247100D01*X097500Y247100D02* X097500Y248022D01*X097500Y247100D02*X096578Y247100D01*X097500Y247100D02* X097500Y246178D01*X150900Y275150D02*X151410Y275150D01*X150900Y275150D02* X150900Y275610D01*X150900Y275150D02*X150390Y275150D01*X142700Y261500D02* X142240Y261500D01*X142800Y249200D02*X142800Y249710D01*X142800Y249200D02* X142340Y249200D01*X142800Y249200D02*X142800Y248690D01*X209200Y283400D02* X209200Y283860D01*X209200Y283400D02*X209200Y282940D01*X142700Y262500D02* X142700Y263010D01*X142700Y262500D02*X142240Y262500D01*X142800Y252700D02* X142340Y252700D01*X218200Y282000D02*X218860Y282000D01*X218200Y282000D02* X217540Y282000D01*X218200Y282000D02*X218200Y281440D01*X172700Y220500D02* X173360Y220500D01*X172700Y220500D02*X172700Y221060D01*X172700Y220500D02* X172040Y220500D01*X172700Y220500D02*X172700Y219940D01*X141460Y285540D02* X142890Y285540D01*X141460Y285540D02*X141460Y286970D01*X141460Y285540D02* X140030Y285540D01*X141460Y285540D02*X141460Y284110D01*X142300Y244900D02* X142860Y244900D01*X142300Y244900D02*X141740Y244900D01*X142300Y244900D02* X142300Y244240D01*X091500Y249100D02*X091500Y250022D01*X091500Y249100D02* X090578Y249100D01*X091500Y249100D02*X091500Y248178D01*X091500Y247100D02* X092422Y247100D01*X091500Y247100D02*X091500Y248022D01*X091500Y247100D02* X090578Y247100D01*X091500Y247100D02*X091500Y246178D01*X110460Y220460D02* X111890Y220460D01*X110460Y220460D02*X110460Y221890D01*X110460Y220460D02* X109030Y220460D01*X110460Y220460D02*X110460Y219030D01*X130540Y280460D02* X131970Y280460D01*X130540Y280460D02*X130540Y281890D01*X130540Y280460D02* X129110Y280460D01*X130540Y280460D02*X130540Y279030D01*X197000Y288850D02* X197660Y288850D01*X197000Y288850D02*X196340Y288850D01*X197000Y288850D02* X197000Y288290D01*X142800Y255600D02*X143260Y255600D01*X142800Y255600D02* X142340Y255600D01*X142800Y255600D02*X142800Y255090D01*X091500Y241100D02* X092422Y241100D01*X091500Y241100D02*X091500Y242022D01*X091500Y241100D02* X090578Y241100D01*X091500Y241100D02*X091500Y240178D01*X178890Y281940D02* X179350Y281940D01*X178890Y281940D02*X178890Y283050D01*X178890Y281940D02* X178430Y281940D01*X178890Y281940D02*X178890Y280830D01*X168200Y281100D02* X169147Y281100D01*X168200Y281100D02*X168200Y282047D01*X168200Y281100D02* X167253Y281100D01*X168200Y281100D02*X168200Y280153D01*X142800Y246600D02* X142340Y246600D01*X142800Y246600D02*X142800Y246090D01*X140900Y258200D02* X141460Y258200D01*X140900Y258200D02*X140900Y258860D01*X140900Y258200D02* X140340Y258200D01*X140900Y258200D02*X140900Y257540D01*X153460Y285640D02* X154890Y285640D01*X153460Y285640D02*X153460Y287070D01*X153460Y285640D02* X152030Y285640D01*X153460Y285640D02*X153460Y284210D01*X158540Y285640D02* X159970Y285640D01*X158540Y285640D02*X158540Y287070D01*X158540Y285640D02* X157110Y285640D01*X158540Y285640D02*X158540Y284210D01*X130540Y256460D02* X131970Y256460D01*X130540Y256460D02*X130540Y257890D01*X130540Y256460D02* X129110Y256460D01*X130540Y256460D02*X130540Y255030D01*X140900Y256800D02* X141460Y256800D01*X140900Y256800D02*X140900Y257460D01*X140900Y256800D02* X140340Y256800D01*X140900Y256800D02*X140900Y256140D01*X163500Y275150D02* X163500Y275610D01*X163500Y275150D02*X163500Y274690D01*X145540Y225540D02* X146970Y225540D01*X145540Y225540D02*X145540Y226970D01*X145540Y225540D02* X144110Y225540D01*X145540Y225540D02*X145540Y224110D01*X110460Y280460D02* X111890Y280460D01*X110460Y280460D02*X110460Y281890D01*X110460Y280460D02* X109030Y280460D01*X110460Y280460D02*X110460Y279030D01*X140460Y225540D02* X141890Y225540D01*X140460Y225540D02*X140460Y226970D01*X140460Y225540D02* X139030Y225540D01*X140460Y225540D02*X140460Y224110D01*X162300Y275650D02* X162960Y275650D01*X162300Y275650D02*X162300Y276210D01*X162300Y275650D02* X161640Y275650D01*X162300Y275650D02*X162300Y275090D01*X091500Y239100D02* X092422Y239100D01*X091500Y239100D02*X091500Y240022D01*X091500Y239100D02* X090578Y239100D01*X091500Y239100D02*X091500Y238178D01*X174150Y239900D02* X174710Y239900D01*X174150Y239900D02*X174150Y240560D01*X174150Y239900D02* X173590Y239900D01*X174150Y239900D02*X174150Y239240D01*X205000Y283800D02* X205000Y284360D01*X205000Y283800D02*X204340Y283800D01*X205000Y283800D02* X205000Y283240D01*X125460Y225540D02*X126890Y225540D01*X125460Y225540D02* X125460Y226970D01*X125460Y225540D02*X124030Y225540D01*X125460Y225540D02* X125460Y224110D01*X125460Y261540D02*X126890Y261540D01*X125460Y261540D02* X125460Y262970D01*X125460Y261540D02*X124030Y261540D01*X125460Y261540D02* X125460Y260110D01*X115540Y273540D02*X116970Y273540D01*X115540Y273540D02* X115540Y274970D01*X115540Y273540D02*X114110Y273540D01*X115540Y273540D02* X115540Y272110D01*X168300Y266700D02*X168300Y267160D01*X169300Y261700D02* X169760Y261700D01*X169300Y261700D02*X169300Y262160D01*X169300Y261700D02* X168840Y261700D01*X169300Y261700D02*X169300Y261240D01*X168300Y258700D02* X168760Y258700D01*X168300Y258700D02*X168300Y259160D01*X167300Y259700D02* X167760Y259700D01*X178700Y264700D02*X179160Y264700D01*X178700Y264700D02* X178700Y265210D01*X178700Y264700D02*X178240Y264700D01*X178800Y269300D02* X179260Y269300D01*X178800Y269300D02*X178800Y269810D01*X178800Y269300D02* X178340Y269300D01*X178800Y269300D02*X178800Y268790D01*X178700Y261600D02* X179160Y261600D01*X178700Y261600D02*X178240Y261600D01*X178700Y261600D02* X178700Y261090D01*X178700Y259100D02*X179160Y259100D01*X178700Y259100D02* X178700Y259610D01*X178700Y259100D02*X178240Y259100D01*X178700Y262600D02* X179160Y262600D01*X178700Y262600D02*X178700Y263110D01*X178700Y262600D02* X178240Y262600D01*X180300Y262000D02*X180760Y262000D01*X180300Y262000D02* X180300Y262510D01*X180300Y262000D02*X179840Y262000D01*X180300Y262000D02* X180300Y261490D01*X170300Y256700D02*X170760Y256700D01*X170300Y256700D02* X169840Y256700D01*X180300Y263400D02*X180760Y263400D01*X180300Y263400D02* X180300Y263910D01*X180300Y263400D02*X180300Y262890D01*X180300Y259100D02* X180760Y259100D01*X180300Y259100D02*X180300Y259610D01*X180300Y259100D02* X179840Y259100D01*X180300Y259100D02*X180300Y258590D01*X180300Y264800D02* X180760Y264800D01*X180300Y264800D02*X180300Y265310D01*X180300Y264800D02* X179840Y264800D01*X180300Y264800D02*X180300Y264290D01*X180300Y269300D02* X180760Y269300D01*X180300Y269300D02*X180300Y269810D01*X180300Y269300D02* X179840Y269300D01*X180300Y269300D02*X180300Y268790D01*X180300Y260600D02* X180760Y260600D01*X180300Y260600D02*X180300Y261110D01*X180300Y260600D02* X179840Y260600D01*X180300Y260600D02*X180300Y260090D01*X178700Y258100D02* X179160Y258100D01*X178700Y258100D02*X178240Y258100D01*X178700Y258100D02* X178700Y257590D01*X180300Y266200D02*X180760Y266200D01*X180300Y266200D02* X180300Y266710D01*X180300Y266200D02*X179840Y266200D01*X180300Y266200D02* X180300Y265690D01*X180300Y267800D02*X180760Y267800D01*X180300Y267800D02* X180300Y268310D01*X180300Y267800D02*X179840Y267800D01*X180300Y267800D02* X180300Y267290D01*X169300Y249700D02*X169760Y249700D01*X169300Y249700D02* X168840Y249700D01*X164300Y249700D02*X164760Y249700D01*X164300Y249700D02* X164300Y250160D01*X166300Y263700D02*X166760Y263700D01*X166300Y263700D02* X166300Y263240D01*X161300Y266700D02*X161300Y266240D01*X154300Y258700D02* X154760Y258700D01*X154300Y258700D02*X154300Y259160D01*X154300Y258700D02* X153840Y258700D01*X154300Y259700D02*X154760Y259700D01*X154300Y259700D02* X153840Y259700D01*X154300Y259700D02*X154300Y259240D01*X157300Y264700D02* X157300Y264240D01*X154300Y262700D02*X154760Y262700D01*X181500Y253950D02* X181500Y255110D01*X181500Y253950D02*X180040Y253950D01*X181500Y253950D02* X181500Y252790D01*X178800Y252500D02*X179260Y252500D01*X178800Y252500D02* X178340Y252500D01*X178800Y252500D02*X178800Y251990D01*X169300Y250700D02* X169300Y251160D01*X169300Y250700D02*X168840Y250700D01*X178800Y254500D02* X179260Y254500D01*X178800Y254500D02*X178800Y255010D01*X178800Y254500D02* X178340Y254500D01*X178800Y253500D02*X179260Y253500D01*X178800Y253500D02* X178340Y253500D01*X178800Y248500D02*X179260Y248500D01*X178800Y248500D02* X178800Y249010D01*X178800Y248500D02*X178340Y248500D01*X163300Y264700D02* X163760Y264700D01*X163300Y264700D02*X163300Y264240D01*X154300Y254700D02* X154760Y254700D01*X154300Y254700D02*X153840Y254700D01*X155300Y250700D02* X154840Y250700D01*X154300Y250700D02*X154760Y250700D01*X154300Y250700D02* X154300Y251160D01*X154300Y250700D02*X154300Y250240D01*X154300Y249700D02* X154300Y250160D01*X154300Y251700D02*X154760Y251700D01*X154300Y251700D02* X154300Y251240D01*X154300Y255700D02*X154760Y255700D01*X152300Y257700D02* X152760Y257700D01*X152300Y257700D02*X151840Y257700D01*X153300Y257700D02* X153760Y257700D01*X153300Y257700D02*X153300Y258160D01*X153300Y257700D02* X152840Y257700D01*X153300Y257700D02*X153300Y257240D01*X190800Y280300D02* X191660Y280300D01*X190800Y280300D02*X189940Y280300D01*X168300Y255700D02* X168300Y256160D01*X168300Y255700D02*X167840Y255700D01*X168300Y255700D02* X168300Y255240D01*X169300Y250700D02*X169300Y251160D01*X169300Y250700D02* X168840Y250700D01*X170300Y256700D02*X170760Y256700D01*X170300Y256700D02* X169840Y256700D01*X167300Y254700D02*X166840Y254700D01*X169300Y249700D02* X169760Y249700D01*X169300Y249700D02*X168840Y249700D01*X168300Y247700D02* X168300Y247240D01*X202200Y280300D02*X203060Y280300D01*X202200Y280300D02* X201340Y280300D01*D02*G54D169*X120245Y216203D03*X117755Y216203D03* X117755Y289797D03*X120245Y289797D03*X274755Y289797D03*X277245Y289797D03* X277245Y216203D03*X274755Y216203D03*X293500Y217360D03*X293500Y251760D03* X307500Y217360D03*X307500Y251760D03*X240600Y223050D03*X266000Y223050D03* X189100Y233785D03*X274000Y241600D03*X274000Y267000D03*X293500Y254360D03* X293500Y288760D03*X307500Y254360D03*X307500Y288760D03*X189100Y260685D03* X260300Y282750D03*X234900Y282750D03* G36*X153071Y254240D02*X153151Y254160D01*X153760Y254160D01*X153760Y254136D01* X153864Y254240D01*X153840Y254240D01*X153840Y254929D01*X153760Y254849D01* X153760Y254240D01*X153071Y254240D01*G37*G36*X152900Y258160D02*X153529Y258160D01* X153449Y258240D01*X152900Y258240D01*X152900Y258160D01*G37*G36*X166883Y264160D02* X167742Y264160D01*X167840Y264258D01*X167840Y265160D01*X168738Y265160D01* X168840Y265263D01*X168840Y265818D01*X168760Y265738D01*X168760Y265240D01* X167858Y265240D01*X167760Y265142D01*X167760Y264240D01*X166963Y264240D01* X166883Y264160D01*G37*G36*X168760Y263551D02*X168840Y263471D01*X168840Y263965D01* X168760Y263965D01*X168760Y263551D01*G37*G36*X142860Y244346D02*X143140Y244346D01* X143140Y245249D01*X142860Y245529D01*X142860Y244346D01*G37*G36*X167736Y253240D02* X167840Y253136D01*X167840Y253160D01*X168760Y253160D01*X168760Y252551D01* X168840Y252471D01*X168840Y253160D01*X169760Y253160D01*X169760Y252791D01* X169840Y252871D01*X169840Y253160D01*X170760Y253160D01*X170760Y252920D01* X171250Y252920D01*X171250Y253013D01*X171232Y253013D01*X170780Y253465D01* X170760Y253465D01*X170760Y253240D01*X169840Y253240D01*X169840Y253908D01* X169760Y253828D01*X169760Y253240D01*X168840Y253240D01*X168840Y253980D01* X168760Y253980D01*X168760Y253240D01*X167840Y253240D01*X167840Y253465D01* X167760Y253465D01*X167760Y253240D01*X167736Y253240D01*G37*G36*X162050Y264160D02* X162760Y264160D01*X162760Y263240D01*X162520Y263240D01*X162520Y263089D01* X162598Y263011D01*X162598Y262963D01*X162680Y262881D01*X162680Y262345D01* X162891Y262345D01*X162891Y262576D01*X163250Y262576D01*X163250Y263039D01* X163080Y263209D01*X163080Y263240D01*X162840Y263240D01*X162840Y264160D01* X163600Y264160D01*X163600Y264240D01*X162840Y264240D01*X162840Y264639D01* X162760Y264559D01*X162760Y264240D01*X162050Y264240D01*X162050Y264160D01*G37*G36* X162736Y250160D02*X162760Y250160D01*X162760Y249551D01*X162840Y249471D01* X162840Y250160D01*X163760Y250160D01*X163760Y249920D01*X163840Y249920D01* X163840Y250160D01*X164565Y250160D01*X164565Y250240D01*X163840Y250240D01* X163840Y250821D01*X163760Y250821D01*X163760Y250240D01*X162840Y250240D01* X162840Y250264D01*X162736Y250160D01*G37*G36*X165093Y250240D02*X165173Y250160D01* X165760Y250160D01*X165760Y250136D01*X165864Y250240D01*X165840Y250240D01* X165840Y251160D01*X165927Y251160D01*X165341Y251746D01*X165341Y251796D01* X165321Y251816D01*X165321Y251423D01*X165358Y251423D01*X165520Y251261D01* X165520Y251160D01*X165760Y251160D01*X165760Y250240D01*X165093Y250240D01*G37*G36* X153071Y257240D02*X153151Y257160D01*X153760Y257160D01*X153760Y256471D01* X153840Y256551D01*X153840Y257160D01*X154760Y257160D01*X154760Y256920D01* X156505Y256920D01*X156505Y257185D01*X157475Y257185D01*X157475Y256420D01* X157636Y256420D01*X157909Y256693D01*X158583Y256693D01*X158583Y256958D01* X159553Y256958D01*X159553Y255988D01*X159165Y255988D01*X159429Y255724D01* X159711Y255724D01*X159822Y255614D01*X160460Y255614D01*X160460Y254644D01* X159567Y254644D01*X159567Y254043D01*X159535Y254011D01*X160062Y254011D01* X160062Y254092D01*X161032Y254092D01*X161032Y253122D01*X160782Y253122D01* X160782Y252775D01*X161389Y252775D01*X161389Y252968D01*X162285Y252968D01* X162285Y253116D01*X163255Y253116D01*X163255Y252146D01*X163046Y252146D01* X163087Y252104D01*X163087Y251163D01*X163084Y251160D01*X163381Y251160D01* X163381Y251791D01*X164351Y251791D01*X164351Y252072D01*X165065Y252072D01* X165045Y252092D01*X165021Y252092D01*X164501Y252612D01*X163842Y252612D01* X163842Y253384D01*X163528Y253384D01*X163374Y253538D01*X163369Y253538D01* X163369Y253288D01*X162399Y253288D01*X162399Y254258D01*X163031Y254258D01* X163031Y254308D01*X162766Y254308D01*X162766Y255278D01*X163112Y255278D01* X163084Y255307D01*X162425Y255307D01*X162425Y256277D01*X163395Y256277D01* X163395Y255618D01*X163428Y255585D01*X163470Y255585D01*X163959Y255096D01* X164195Y255096D01*X164195Y255759D01*X164823Y255759D01*X164823Y256273D01* X165793Y256273D01*X165793Y256023D01*X165803Y256023D01*X165803Y256369D01* X164884Y256369D01*X164884Y257317D01*X164608Y257317D01*X164608Y257847D01* X164521Y257847D01*X164521Y257113D01*X163587Y257113D01*X163587Y256475D01* X162337Y256475D01*X162337Y257725D01*X162482Y257725D01*X162482Y257850D01* X162185Y257850D01*X162185Y253410D01*X161215Y253410D01*X161215Y254380D01* X162185Y254380D01*X162185Y257850D01*X161882Y257850D01*X161882Y258343D01* X161261Y258343D01*X161261Y259593D01*X161653Y259593D01*X161653Y260071D01* X159705Y262019D01*X159705Y261290D01*X159890Y261290D01*X159890Y260040D01* X159370Y260040D01*X159370Y259485D01*X159121Y259485D01*X159193Y259413D01* X159852Y259413D01*X159852Y258443D01*X158882Y258443D01*X158882Y259069D01* X158754Y259069D01*X158306Y259516D01*X158306Y258228D01*X158571Y258228D01* X158571Y257258D01*X157601Y257258D01*X157601Y258228D01*X157866Y258228D01* X157866Y258276D01*X157532Y258276D01*X157532Y257549D01*X156562Y257549D01* X156562Y258208D01*X156477Y258293D01*X156477Y259053D01*X156336Y259194D01* X156336Y258480D01*X156105Y258480D01*X156105Y257720D01*X155135Y257720D01* X155135Y257985D01*X154760Y257985D01*X154760Y257240D01*X153840Y257240D01* X153840Y257985D01*X153760Y257985D01*X153760Y257240D01*X153071Y257240D01* G37*G36* X158050Y248160D02*X158760Y248160D01*X158760Y247240D01*X158535Y247240D01* X158535Y247118D01*X158496Y247078D01*X158496Y246851D01*X158770Y246577D01* X158770Y246800D01*X159305Y246800D01*X159305Y247240D01*X158840Y247240D01* X158840Y248160D01*X159508Y248160D01*X159428Y248240D01*X158840Y248240D01* X158840Y248965D01*X158760Y248965D01*X158760Y248240D01*X158050Y248240D01* X158050Y248160D01*G37*G36*X151760Y257420D02*X151840Y257420D01*X151840Y257825D01* X151760Y257825D01*X151760Y257420D01*G37*G36*X153071Y265240D02*X153151Y265160D01* X153760Y265160D01*X153760Y264420D01*X153840Y264420D01*X153840Y265160D01* X154760Y265160D01*X154760Y264300D01*X154840Y264300D01*X154840Y265142D01* X154742Y265240D01*X153840Y265240D01*X153840Y265849D01*X153760Y265929D01* X153760Y265240D01*X153071Y265240D01*G37*G36*X154071Y264240D02*X154151Y264160D01* X154700Y264160D01*X154700Y264240D01*X154071Y264240D01*G37*G36*X219185Y279608D02* X219473Y279320D01*X219940Y279320D01*X219940Y280215D01*X219185Y280215D01* X219185Y279608D01*G37*G36*X221660Y278360D02*X221680Y278360D01*X221680Y278856D01* X222650Y278856D01*X222650Y278360D01*X223464Y278360D01*X224064Y278960D01* X225070Y278960D01*X225070Y281860D01*X224698Y281860D01*X224698Y282125D01* X222550Y282125D01*X222550Y281365D01*X221660Y281365D01*X221660Y281085D01* X222550Y281085D01*X222550Y280115D01*X221660Y280115D01*X221660Y278360D01*G37*G36* X086550Y216550D02*X116845Y216551D01*X116845Y217113D01*X118666Y217113D01* X118666Y216551D01*X119335Y216551D01*X119335Y217113D01*X121155Y217113D01* X121155Y216552D01*X174263Y216554D01*X174118Y216859D01*X173997Y217198D01* X173910Y217546D01*X173858Y217901D01*X173840Y218260D01*X173858Y218619D01* X173910Y218974D01*X173997Y219323D01*X174118Y219661D01*X174272Y219985D01* X174457Y220294D01*X174671Y220582D01*X174912Y220848D01*X175178Y221089D01* X175467Y221303D01*X175775Y221488D01*X176099Y221642D01*X176438Y221763D01* X176786Y221850D01*X177141Y221903D01*X177500Y221920D01*X177859Y221903D01* X178214Y221850D01*X178563Y221763D01*X178901Y221642D01*X179225Y221488D01* X179534Y221303D01*X179822Y221089D01*X180088Y220848D01*X180329Y220582D01* X180543Y220294D01*X180728Y219985D01*X180882Y219661D01*X181003Y219323D01* X181090Y218974D01*X181143Y218619D01*X181160Y218260D01*X181143Y217901D01* X181090Y217546D01*X181003Y217198D01*X180882Y216859D01*X180737Y216554D01* X182370Y216554D01*X182370Y238273D01*X180753Y238273D01*X180753Y240167D01* X182370Y240167D01*X182370Y240553D01*X180475Y240553D01*X180475Y228453D01* X179505Y228453D01*X179505Y229423D01*X180475Y229423D01*X180475Y240553D01* X180107Y240553D01*X180107Y238273D01*X178213Y238273D01*X178213Y240167D01* X180107Y240167D01*X180107Y240553D01*X177546Y240553D01*X177546Y238285D01* X176576Y238285D01*X176576Y239256D01*X177546Y239256D01*X177546Y240553D01* X177461Y240553D01*X177461Y239551D01*X176491Y239551D01*X176491Y240521D01* X177461Y240521D01*X177461Y240553D01*X176529Y240553D01*X176264Y240818D01* X176264Y234552D01*X175705Y234552D01*X175705Y230425D01*X174993Y230425D01* X174993Y222775D01*X174735Y222775D01*X174735Y222674D01*X173741Y221680D01* X173360Y221680D01*X173360Y219940D01*X172040Y219940D01*X172040Y221060D01* X173360Y221060D01*X173360Y221340D01*X172040Y221340D01*X172040Y222460D01* X173360Y222460D01*X173360Y222120D01*X173559Y222120D01*X174214Y222775D01* X174038Y222775D01*X174038Y225381D01*X174993Y225381D01*X174993Y230425D01* X174735Y230425D01*X174735Y231395D01*X175705Y231395D01*X175705Y234552D01* X175293Y234552D01*X175293Y235522D01*X176264Y235522D01*X176264Y240818D01* X176205Y240876D01*X176205Y235965D01*X175235Y235965D01*X175235Y236935D01* X176205Y236935D01*X176205Y240876D01*X175191Y241890D01*X175060Y241890D01* X175060Y236440D01*X174993Y236440D01*X174993Y231919D01*X174597Y231919D01* X174597Y230365D01*X173723Y230365D01*X173723Y222775D01*X172768Y222775D01* X172768Y225381D01*X173723Y225381D01*X173723Y230365D01*X173627Y230365D01* X173627Y231335D01*X174597Y231335D01*X174597Y231919D01*X174038Y231919D01* X174038Y234525D01*X174993Y234525D01*X174993Y236440D01*X174710Y236440D01* X174710Y235040D01*X173723Y235040D01*X173723Y231919D01*X172768Y231919D01* X172768Y234525D01*X173723Y234525D01*X173723Y235040D01*X173590Y235040D01* X173590Y236360D01*X174710Y236360D01*X174710Y236440D01*X173940Y236440D01* X173940Y237760D01*X175060Y237760D01*X175060Y241890D01*X173615Y241890D01* X173615Y240560D01*X174710Y240560D01*X174710Y237840D01*X173660Y237840D01* X173660Y236440D01*X172540Y236440D01*X172540Y236615D01*X171715Y236615D01* X171715Y237585D01*X172540Y237585D01*X172540Y237760D01*X173660Y237760D01* X173660Y237840D01*X173590Y237840D01*X173590Y239160D01*X174710Y239160D01* X174710Y239240D01*X173590Y239240D01*X173590Y240395D01*X173310Y240395D01* X173310Y237840D01*X172385Y237840D01*X172385Y237665D01*X171510Y237665D01* X171510Y237640D01*X170411Y237640D01*X170250Y237479D01*X170250Y237110D01* X171510Y237110D01*X171510Y235990D01*X170250Y235990D01*X170250Y235710D01* X171510Y235710D01*X171510Y235522D01*X172190Y235522D01*X172190Y236360D01* X173310Y236360D01*X173310Y235040D01*X172501Y235040D01*X172453Y234991D01* X172453Y232024D01*X172459Y232024D01*X172459Y231054D01*X172453Y231054D01* X172453Y222775D01*X171498Y222775D01*X171498Y225381D01*X172453Y225381D01* X172453Y231054D01*X171489Y231054D01*X171489Y232024D01*X171498Y232024D01* X171498Y234525D01*X172453Y234525D01*X172453Y234991D01*X172365Y234904D01* X172365Y234552D01*X171395Y234552D01*X171395Y234590D01*X170971Y234590D01* X170925Y234544D01*X170925Y234525D01*X171183Y234525D01*X171183Y222775D01* X170925Y222775D01*X170925Y222514D01*X170911Y222500D01*X170951Y222460D01* X171960Y222460D01*X171960Y219940D01*X170640Y219940D01*X170640Y221060D01* X171960Y221060D01*X171960Y221340D01*X170640Y221340D01*X170640Y222149D01* X170460Y222329D01*X170460Y218340D01*X168340Y218340D01*X168340Y218780D01* X168160Y218780D01*X168160Y218440D01*X166840Y218440D01*X166840Y219560D01* X168160Y219560D01*X168160Y219220D01*X168340Y219220D01*X168340Y219660D01* X170460Y219660D01*X170460Y221140D01*X168340Y221140D01*X168340Y222460D01* X169180Y222460D01*X169180Y222691D01*X169215Y222726D01*X169215Y222775D01* X168958Y222775D01*X168958Y225381D01*X169913Y225381D01*X169913Y222775D01* X169655Y222775D01*X169655Y222544D01*X169620Y222509D01*X169620Y222460D01* X170460Y222460D01*X170460Y222671D01*X170485Y222696D01*X170485Y222775D01* X170228Y222775D01*X170228Y225381D01*X171183Y225381D01*X171183Y231919D01* X170925Y231919D01*X170925Y231819D01*X170902Y231796D01*X170902Y228082D01* X169932Y228082D01*X169932Y229052D01*X170902Y229052D01*X170902Y231796D01* X168643Y229536D01*X168643Y222775D01*X168385Y222775D01*X168385Y222619D01* X167720Y221954D01*X167720Y220960D01*X168160Y220960D01*X168160Y219840D01* X166840Y219840D01*X166840Y220960D01*X167280Y220960D01*X167280Y222136D01* X167919Y222775D01*X167688Y222775D01*X167688Y225381D01*X168643Y225381D01* X168643Y229536D01*X167373Y228266D01*X167373Y222775D01*X166418Y222775D01* X166418Y225381D01*X167373Y225381D01*X167373Y228266D01*X165845Y226739D01* X165845Y225381D01*X166103Y225381D01*X166103Y222775D01*X165148Y222775D01* X165148Y225381D01*X165405Y225381D01*X165405Y226639D01*X164575Y225809D01* X164575Y225381D01*X164833Y225381D01*X164833Y222775D01*X163878Y222775D01* X163878Y225381D01*X164135Y225381D01*X164135Y225991D01*X169049Y230905D01* X168230Y230905D01*X168230Y231564D01*X167945Y231849D01*X167945Y231919D01* X167688Y231919D01*X167688Y234525D01*X168580Y234525D01*X168580Y234590D01* X168140Y234590D01*X168140Y235710D01*X169460Y235710D01*X169460Y235531D01* X169580Y235651D01*X169580Y237640D01*X169460Y237640D01*X169460Y235990D01* X168140Y235990D01*X168140Y237110D01*X169460Y237110D01*X169460Y237640D01* X168790Y237640D01*X168790Y238760D01*X170110Y238760D01*X170110Y237961D01* X170190Y238041D01*X170190Y238760D01*X171510Y238760D01*X171510Y238635D01* X172190Y238635D01*X172190Y239160D01*X173310Y239160D01*X173310Y239240D01* X172190Y239240D01*X172190Y240560D01*X172540Y240560D01*X172540Y240601D01* X172645Y240706D01*X172645Y241365D01*X173615Y241365D01*X173615Y241890D01* X172713Y241890D01*X172617Y241987D01*X172617Y241256D01*X171647Y241256D01* X171647Y242175D01*X170637Y242175D01*X170637Y241415D01*X169667Y241415D01* X169667Y242175D01*X168657Y242175D01*X168657Y241455D01*X168855Y241455D01* X168855Y240485D01*X168690Y240485D01*X168690Y240041D01*X168790Y239941D01* X168790Y240160D01*X169932Y240160D01*X169932Y240266D01*X169667Y240266D01* X169667Y241236D01*X170637Y241236D01*X170637Y240266D01*X170396Y240266D01* X170501Y240160D01*X171510Y240160D01*X171510Y239040D01*X170190Y239040D01* X170190Y239849D01*X170110Y239929D01*X170110Y239040D01*X168790Y239040D01* X168790Y239380D01*X168729Y239380D01*X168310Y239799D01*X168310Y238740D01* X165290Y238740D01*X165290Y239660D01*X168310Y239660D01*X168310Y239740D01* X165290Y239740D01*X165290Y240660D01*X165315Y240660D01*X165315Y241470D01* X166285Y241470D01*X166285Y240660D01*X166927Y240660D01*X166927Y241410D01* X167687Y241410D01*X167687Y242175D01*X165081Y242175D01*X165081Y240660D01* X165260Y240660D01*X165260Y238140D01*X164399Y238140D01*X164399Y237537D01* X165131Y237537D01*X165131Y237272D01*X165558Y237272D01*X166240Y236590D01* X166240Y237295D01*X165765Y237295D01*X165765Y238266D01*X166735Y238266D01* X166735Y237310D01*X166865Y237310D01*X166865Y238075D01*X167835Y238075D01* X167835Y237105D01*X167566Y237105D01*X167560Y237099D01*X167560Y234790D01* X167115Y234790D01*X167115Y234525D01*X167373Y234525D01*X167373Y231919D01* X166418Y231919D01*X166418Y234525D01*X166675Y234525D01*X166675Y234790D01* X166240Y234790D01*X166240Y235910D01*X167560Y235910D01*X167560Y236190D01* X166390Y236190D01*X166390Y236079D01*X166210Y235899D01*X166210Y234890D01* X165870Y234890D01*X165870Y234629D01*X165845Y234604D01*X165845Y234525D01* X166103Y234525D01*X166103Y231919D01*X165148Y231919D01*X165148Y234525D01* X165405Y234525D01*X165405Y234786D01*X165430Y234811D01*X165430Y234890D01* X165090Y234890D01*X165090Y235990D01*X164901Y235990D01*X164810Y235899D01* X164810Y234890D01*X164470Y234890D01*X164470Y234626D01*X164571Y234525D01* X164833Y234525D01*X164833Y231919D01*X164697Y231919D01*X164697Y229375D01* X163727Y229375D01*X163727Y230345D01*X164697Y230345D01*X164697Y231919D01* X163878Y231919D01*X163878Y234525D01*X164030Y234525D01*X164030Y234890D01* X163690Y234890D01*X163690Y236210D01*X164499Y236210D01*X164856Y236567D01* X164161Y236567D01*X164161Y237295D01*X163510Y237295D01*X163510Y234790D01* X163305Y234790D01*X163305Y234525D01*X163563Y234525D01*X163563Y222775D01* X163305Y222775D01*X163305Y222410D01*X163610Y222410D01*X163610Y219890D01* X162290Y219890D01*X162290Y219965D01*X161540Y219965D01*X161540Y220935D01* X162290Y220935D01*X162290Y221010D01*X163610Y221010D01*X163610Y221290D01* X162290Y221290D01*X162290Y222410D01*X162865Y222410D01*X162865Y222775D01* X162608Y222775D01*X162608Y225381D01*X163563Y225381D01*X163563Y231919D01* X162608Y231919D01*X162608Y234525D01*X162865Y234525D01*X162865Y234790D01* X162190Y234790D01*X162190Y235910D01*X163510Y235910D01*X163510Y236190D01* X162190Y236190D01*X162190Y237295D01*X161727Y237295D01*X161727Y234325D01* X160757Y234325D01*X160757Y235295D01*X161727Y235295D01*X161727Y237295D01* X161252Y237295D01*X161252Y238266D01*X161540Y238266D01*X161540Y239260D01* X162860Y239260D01*X162860Y238140D01*X162420Y238140D01*X162420Y238039D01* X162222Y237840D01*X162222Y237310D01*X163429Y237310D01*X163429Y238266D01* X163754Y238266D01*X163940Y238451D01*X163940Y239260D01*X165260Y239260D01* X165260Y239540D01*X163940Y239540D01*X163940Y240660D01*X164111Y240660D01* X164111Y241474D01*X165081Y241474D01*X165081Y242175D01*X163885Y242175D01* X163885Y240660D01*X163910Y240660D01*X163910Y238740D01*X162890Y238740D01* X162890Y239660D01*X163910Y239660D01*X163910Y239740D01*X162890Y239740D01* X162890Y240660D01*X162915Y240660D01*X162915Y241470D01*X163885Y241470D01* X163885Y242175D01*X161172Y242175D01*X161172Y240971D01*X161541Y240971D01* X161851Y240660D01*X162860Y240660D01*X162860Y239540D01*X161540Y239540D01* X161540Y240349D01*X161358Y240530D01*X161172Y240530D01*X161172Y240266D01* X160310Y240266D01*X160310Y239290D01*X159510Y239290D01*X159510Y239210D01* X160310Y239210D01*X160310Y238290D01*X159290Y238290D01*X159290Y238990D01* X158970Y238990D01*X158970Y224110D01*X156316Y224110D01*X156316Y221890D01* X158970Y221890D01*X158970Y219030D01*X156110Y219030D01*X156110Y221684D01* X153890Y221684D01*X153890Y219030D01*X151030Y219030D01*X151030Y221890D01* X153684Y221890D01*X153684Y224110D01*X151030Y224110D01*X151030Y226970D01* X153890Y226970D01*X153890Y224316D01*X156110Y224316D01*X156110Y226970D01* X158970Y226970D01*X158970Y238990D01*X158540Y238990D01*X158540Y239960D01* X159179Y239960D01*X159189Y239970D01*X159290Y239970D01*X159290Y240210D01* X160310Y240210D01*X160310Y240266D01*X160202Y240266D01*X160202Y241236D01* X161172Y241236D01*X161172Y242175D01*X159772Y242175D01*X159634Y242313D01* X157310Y244636D01*X157310Y240660D01*X158110Y240660D01*X158110Y238740D01* X157887Y238740D01*X157887Y232653D01*X155993Y232653D01*X155993Y234547D01* X157887Y234547D01*X157887Y235153D01*X155993Y235153D01*X155993Y237047D01* X157887Y237047D01*X157887Y238740D01*X157090Y238740D01*X157090Y239660D01* X158110Y239660D01*X158110Y239740D01*X157310Y239740D01*X157310Y239715D01* X156340Y239715D01*X156340Y240685D01*X157310Y240685D01*X157310Y244636D01* X155779Y246168D01*X155779Y245208D01*X155347Y245208D01*X155347Y232653D01* X153453Y232653D01*X153453Y234547D01*X155347Y234547D01*X155347Y235153D01* X153453Y235153D01*X153453Y237047D01*X155347Y237047D01*X155347Y245208D01* X155095Y245208D01*X155095Y245115D01*X155037Y245115D01*X155037Y244395D01* X154796Y244395D01*X154796Y243236D01*X154532Y243236D01*X154532Y241649D01* X154020Y241138D01*X154020Y240660D01*X154460Y240660D01*X154460Y238140D01* X153140Y238140D01*X153140Y239260D01*X154460Y239260D01*X154460Y239540D01* X153140Y239540D01*X153140Y240660D01*X153580Y240660D01*X153580Y241320D01* X154091Y241832D01*X154091Y243236D01*X153826Y243236D01*X153826Y244206D01* X154796Y244206D01*X154796Y244395D01*X154067Y244395D01*X154067Y245054D01* X154006Y245115D01*X153845Y245115D01*X153845Y245276D01*X153597Y245523D01* X153597Y246325D01*X153479Y246325D01*X153479Y245235D01*X152695Y245235D01* X152695Y244995D01*X152385Y244995D01*X152385Y241176D01*X152820Y240741D01* X152820Y240660D01*X153110Y240660D01*X153110Y238740D01*X152816Y238740D01* X152816Y231355D01*X151846Y231355D01*X151846Y232325D01*X152816Y232325D01* X152816Y238740D01*X152090Y238740D01*X152090Y239660D01*X153110Y239660D01* X153110Y239740D01*X152090Y239740D01*X152090Y240585D01*X151960Y240585D01* X151960Y238140D01*X150640Y238140D01*X150640Y238215D01*X149866Y238215D01* X149866Y239185D01*X150640Y239185D01*X150640Y239260D01*X151960Y239260D01* X151960Y239540D01*X150640Y239540D01*X150640Y239615D01*X149866Y239615D01* X149866Y240585D01*X150640Y240585D01*X150640Y240660D01*X151415Y240660D01* X151415Y242480D01*X152385Y242480D01*X152385Y244995D01*X151445Y244995D01* X151445Y245731D01*X150936Y246239D01*X150936Y247100D01*X150700Y247100D01* X150700Y247255D01*X149927Y246482D01*X150082Y246482D01*X150082Y245232D01* X148832Y245232D01*X148832Y245972D01*X148755Y245895D01*X148755Y245175D01* X147505Y245175D01*X147505Y246425D01*X148225Y246425D01*X149322Y247523D01* X148360Y247523D01*X148360Y248493D01*X149330Y248493D01*X149330Y248228D01* X149551Y248228D01*X150713Y249390D01*X149931Y249390D01*X149895Y249354D01* X149895Y248695D01*X148925Y248695D01*X148925Y249665D01*X149584Y249665D01* X149749Y249830D01*X149885Y249830D01*X149885Y250075D01*X149275Y250075D01* X149275Y250863D01*X149166Y250863D01*X149013Y251016D01*X148615Y251016D01* X148615Y250755D01*X147365Y250755D01*X147365Y252825D01*X147519Y252825D01* X147519Y253956D01*X148769Y253956D01*X148769Y253695D01*X149652Y253695D01* X149808Y253538D01*X149808Y254128D01*X149782Y254128D01*X149130Y254780D01* X149064Y254780D01*X149064Y254530D01*X147814Y254530D01*X147814Y254745D01* X146970Y254745D01*X146970Y224110D01*X144316Y224110D01*X144316Y221890D01* X146970Y221890D01*X146970Y219030D01*X144110Y219030D01*X144110Y221684D01* X141890Y221684D01*X141890Y219030D01*X139030Y219030D01*X139030Y221890D01* X141684Y221890D01*X141684Y224110D01*X139030Y224110D01*X139030Y226970D01* X141890Y226970D01*X141890Y224316D01*X144110Y224316D01*X144110Y226970D01* X146970Y226970D01*X146970Y254745D01*X146794Y254745D01*X146794Y255425D01* X146325Y255425D01*X146325Y256675D01*X147045Y256675D01*X147430Y257060D01* X149049Y257060D01*X149179Y256930D01*X149179Y257323D01*X150048Y257323D01* X150048Y257572D01*X150001Y257572D01*X149914Y257485D01*X146739Y257485D01* X146244Y257980D01*X144160Y257980D01*X144160Y257640D01*X142860Y257640D01* X142860Y257360D01*X144160Y257360D01*X144160Y257285D01*X144910Y257285D01* X144910Y256315D01*X144260Y256315D01*X144260Y255820D01*X144882Y255820D01* X145227Y255475D01*X145886Y255475D01*X145886Y254505D01*X144916Y254505D01* X144916Y255164D01*X144700Y255380D01*X144260Y255380D01*X144260Y255096D01* X144896Y255096D01*X144896Y254126D01*X143926Y254126D01*X143926Y254391D01* X142890Y254391D01*X142679Y254180D01*X141460Y254180D01*X141460Y253841D01* X141946Y253841D01*X141946Y254106D01*X142916Y254106D01*X142916Y253210D01* X143200Y253210D01*X143200Y253350D01*X144400Y253350D01*X144400Y253325D01* X145215Y253325D01*X145215Y252075D01*X144400Y252075D01*X144400Y251050D01* X144175Y251050D01*X144175Y250905D01*X144315Y250765D01*X145035Y250765D01* X145035Y249676D01*X145065Y249706D01*X145065Y250425D01*X146315Y250425D01* X146315Y249175D01*X145596Y249175D01*X145195Y248775D01*X144400Y248775D01* X144400Y248550D01*X144260Y248550D01*X144260Y248085D01*X145010Y248085D01* X145010Y247316D01*X146026Y247316D01*X146026Y246066D01*X144776Y246066D01* X144776Y246303D01*X144698Y246225D01*X144400Y246225D01*X144400Y245969D01* X145151Y245969D01*X145151Y244999D01*X144900Y244999D01*X144900Y234445D01* X146026Y234445D01*X146026Y233195D01*X144900Y233195D01*X144900Y232450D01* X142300Y232450D01*X142300Y235650D01*X144900Y235650D01*X144900Y244999D01* X144760Y244999D01*X144760Y236690D01*X142440Y236690D01*X142440Y237665D01* X141690Y237665D01*X141690Y238635D01*X142440Y238635D01*X142440Y239610D01* X144760Y239610D01*X144760Y244999D01*X144536Y244999D01*X144536Y244855D01* X144361Y244680D01*X144260Y244680D01*X144260Y244240D01*X144046Y244240D01* X144046Y243096D01*X142796Y243096D01*X142796Y244240D01*X141740Y244240D01* X141740Y245560D01*X141759Y245560D01*X140680Y246639D01*X140680Y246740D01* X140340Y246740D01*X140340Y248060D01*X141460Y248060D01*X141460Y246740D01* X141201Y246740D01*X141961Y245980D01*X143031Y245980D01*X143451Y245560D01* X144181Y245560D01*X144181Y245950D01*X143200Y245950D01*X143200Y246090D01* X142340Y246090D01*X142340Y248110D01*X143260Y248110D01*X143260Y247250D01* X143340Y247250D01*X143340Y248110D01*X144260Y248110D01*X144260Y248550D01* X143200Y248550D01*X143200Y248690D01*X142340Y248690D01*X142340Y249710D01* X143200Y249710D01*X143200Y249850D01*X143785Y249850D01*X143785Y250235D01* X143425Y250595D01*X143425Y251050D01*X143200Y251050D01*X143200Y251190D01* X142340Y251190D01*X142340Y253136D01*X141946Y253136D01*X141946Y253401D01* X141512Y253401D01*X141460Y253349D01*X141460Y252499D01*X142334Y252499D01* X142334Y251529D01*X141460Y251529D01*X141460Y250685D01*X142275Y250685D01* X142275Y249715D01*X141460Y249715D01*X141460Y249540D01*X140571Y249540D01* X140651Y249460D01*X141460Y249460D01*X141460Y248140D01*X140340Y248140D01* X140340Y249149D01*X140239Y249250D01*X140060Y249250D01*X140060Y248140D01* X139160Y248140D01*X139160Y248060D01*X140060Y248060D01*X140060Y246740D01* X139960Y246740D01*X139960Y232590D01*X137640Y232590D01*X137640Y235510D01* X139960Y235510D01*X139960Y236690D01*X137640Y236690D01*X137640Y239610D01* X139960Y239610D01*X139960Y246740D01*X138940Y246740D01*X138940Y247180D01* X138839Y247180D01*X138760Y247259D01*X138190Y247259D01*X138190Y248229D01* X138940Y248229D01*X138940Y249250D01*X138755Y249250D01*X138755Y248985D01* X137785Y248985D01*X137785Y249955D01*X138755Y249955D01*X138755Y249690D01* X138940Y249690D01*X138940Y250860D01*X140060Y250860D01*X140060Y249690D01* X140340Y249690D01*X140340Y250860D01*X141460Y250860D01*X141460Y250940D01* X140340Y250940D01*X140340Y252260D01*X141364Y252260D01*X141364Y252340D01* X140340Y252340D01*X140340Y253660D01*X141149Y253660D01*X141229Y253740D01* X140340Y253740D01*X140340Y255060D01*X141460Y255060D01*X141460Y254620D01* X142497Y254620D01*X142707Y254831D01*X143926Y254831D01*X143926Y255090D01* X143340Y255090D01*X143340Y256110D01*X144260Y256110D01*X144260Y256315D01* X144160Y256315D01*X144160Y256240D01*X143260Y256240D01*X143260Y255090D01* X142340Y255090D01*X142340Y256110D01*X143260Y256110D01*X143260Y256240D01* X142860Y256240D01*X142860Y256140D01*X141740Y256140D01*X141740Y257460D01* X142860Y257460D01*X142860Y257540D01*X141740Y257540D01*X141740Y258860D01* X142860Y258860D01*X142860Y258760D01*X144160Y258760D01*X144160Y258420D01* X146426Y258420D01*X146921Y257925D01*X148575Y257925D01*X148575Y258480D01* X147375Y258480D01*X147375Y259730D01*X148149Y259730D01*X148095Y259785D01* X147375Y259785D01*X147375Y261035D01*X148175Y261035D01*X148175Y261078D01* X149425Y261078D01*X149425Y260575D01*X149726Y260575D01*X149726Y261547D01* X148344Y261547D01*X146005Y263886D01*X145766Y263886D01*X145766Y264125D01* X145676Y264215D01*X145676Y264320D01*X144776Y264320D01*X144776Y265040D01* X144591Y265225D01*X144300Y265225D01*X144300Y263125D01*X145115Y263125D01* X145115Y261875D01*X145095Y261875D01*X145095Y260875D01*X144910Y260875D01* X144910Y260015D01*X144160Y260015D01*X144160Y259985D01*X144910Y259985D01* X144910Y259015D01*X144160Y259015D01*X144160Y258990D01*X143240Y258990D01* X143240Y260850D01*X143160Y260850D01*X143160Y258990D01*X142240Y258990D01* X142240Y263010D01*X143100Y263010D01*X143100Y263150D01*X144300Y263150D01* X144300Y264950D01*X143100Y264950D01*X143100Y265090D01*X142240Y265090D01* X142240Y268110D01*X143160Y268110D01*X143160Y266250D01*X143240Y266250D01* X143240Y268110D01*X144160Y268110D01*X144160Y267820D01*X144239Y267820D01* X144825Y268406D01*X144825Y269065D01*X145795Y269065D01*X145795Y268095D01* X145136Y268095D01*X144421Y267380D01*X144160Y267380D01*X144160Y267085D01* X144910Y267085D01*X144910Y266115D01*X144300Y266115D01*X144300Y265975D01* X144902Y265975D01*X145307Y265570D01*X146026Y265570D01*X146026Y265157D01* X146095Y265226D01*X147221Y265226D01*X147232Y265215D01*X147375Y265215D01* X147375Y266080D01*X148210Y266080D01*X148210Y267195D01*X149460Y267195D01* X149460Y266945D01*X149803Y266945D01*X149130Y267618D01*X149130Y267975D01* X148880Y267975D01*X148880Y269225D01*X150130Y269225D01*X150130Y268575D01* X150365Y268575D01*X150365Y268795D01*X150826Y268795D01*X150826Y269492D01* X152076Y269492D01*X152076Y268257D01*X152433Y267901D01*X152433Y269093D01* X153683Y269093D01*X153683Y268944D01*X154054Y268944D01*X154054Y269649D01* X155024Y269649D01*X155024Y269012D01*X155135Y268901D01*X155135Y268182D01* X155027Y268074D01*X155027Y267920D01*X155578Y267920D01*X155578Y268021D01* X155571Y268028D01*X155571Y269583D01*X155800Y269812D01*X155923Y269812D01* X155923Y270062D01*X156893Y270062D01*X156893Y269895D01*X157682Y269895D01* X157682Y268925D01*X157432Y268925D01*X157432Y268787D01*X157411Y268765D01* X157865Y268765D01*X157865Y268106D01*X158020Y267951D01*X158020Y267160D01* X158065Y267160D01*X158065Y267765D01*X158162Y267862D01*X158162Y268273D01* X157912Y268273D01*X157912Y269243D01*X158705Y269243D01*X158705Y269349D01* X158895Y269539D01*X158895Y270177D01*X159865Y270177D01*X159865Y269207D01* X159228Y269207D01*X159175Y269155D01*X159175Y269076D01*X159969Y269076D01* X159969Y268617D01*X160093Y268741D01*X160093Y269379D01*X161063Y269379D01* X161063Y268409D01*X160936Y268409D01*X160936Y267794D01*X161349Y267794D01* X161349Y267160D01*X161535Y267160D01*X161535Y268105D01*X162374Y268105D01* X162374Y268269D01*X162460Y268355D01*X162460Y269013D01*X162887Y269013D01* X162724Y269176D01*X162724Y269315D01*X162460Y269315D01*X162460Y270285D01* X163430Y270285D01*X163430Y269750D01*X164150Y269750D01*X164150Y269091D01* X164235Y269006D01*X164235Y268956D01*X164370Y268956D01*X164370Y269769D01* X163564Y269769D01*X163564Y270740D01*X163829Y270740D01*X163829Y270980D01* X166480Y273631D01*X166480Y273690D01*X166040Y273690D01*X166040Y274810D01* X167360Y274810D01*X167360Y273831D01*X168160Y274631D01*X168160Y275345D01* X167360Y275345D01*X167360Y275090D01*X166040Y275090D01*X166040Y276210D01* X167305Y276210D01*X167305Y276315D01*X168160Y276315D01*X168160Y276577D01* X168689Y277106D01*X176090Y277106D01*X176464Y277480D01*X178430Y277480D01* X178430Y278370D01*X179230Y278370D01*X179230Y278549D01*X176960Y280819D01* X176960Y281241D01*X176260Y281941D01*X176260Y279340D01*X173485Y279340D01* X173485Y278450D01*X173607Y278450D01*X173607Y277479D01*X172637Y277479D01* X172637Y278396D01*X172515Y278396D01*X172515Y279366D01*X173340Y279366D01* X173340Y281660D01*X176260Y281660D01*X176260Y281941D01*X175685Y282516D01* X175026Y282516D01*X175026Y283486D01*X175997Y283486D01*X175997Y282827D01* X177400Y281423D01*X177400Y281001D01*X179670Y278731D01*X179670Y273967D01* X175240Y269537D01*X175240Y267229D01*X171687Y263676D01*X171057Y263676D01* X170861Y263480D01*X170760Y263480D01*X170760Y263240D01*X169840Y263240D01* X169840Y263965D01*X169760Y263965D01*X169760Y263240D01*X169736Y263240D01* X169840Y263136D01*X169840Y263160D01*X170760Y263160D01*X170760Y262935D01* X171184Y262935D01*X171495Y263246D01*X172330Y263246D01*X172382Y263298D01* X172589Y263298D01*X172589Y263548D01*X173559Y263548D01*X173559Y262795D01* X174170Y263407D01*X174170Y263526D01*X174281Y263636D01*X174281Y264274D01* X175251Y264274D01*X175251Y263304D01*X174641Y263304D01*X174641Y263212D01* X174503Y263074D01*X172461Y261032D01*X172765Y261032D01*X172765Y260643D01* X175359Y263238D01*X175359Y269500D01*X176731Y270872D01*X181130Y270872D01* X181607Y271348D01*X182370Y271348D01*X182370Y272596D01*X182089Y272596D01* X182089Y273566D01*X182370Y273566D01*X182370Y275035D01*X182224Y275035D01* X181210Y276049D01*X181210Y276150D01*X180970Y276150D01*X180970Y277040D01* X180620Y277040D01*X180620Y276150D01*X180537Y276150D01*X180537Y270956D01* X179567Y270956D01*X179567Y271926D01*X180537Y271926D01*X180537Y276150D01* X179700Y276150D01*X179700Y278370D01*X180620Y278370D01*X180620Y277480D01* X180970Y277480D01*X180970Y278370D01*X181890Y278370D01*X181890Y276150D01* X181731Y276150D01*X182370Y275511D01*X182370Y276150D01*X182240Y276150D01* X182240Y278150D01*X182215Y278150D01*X182215Y279120D01*X183185Y279120D01* X183185Y278360D01*X183485Y278360D01*X183485Y279120D01*X184455Y279120D01* X184455Y278360D01*X184780Y278360D01*X184780Y278370D01*X185700Y278370D01* X185700Y278360D01*X186025Y278360D01*X186025Y278876D01*X185507Y278876D01* X185507Y279846D01*X186477Y279846D01*X186477Y279120D01*X186995Y279120D01* X186995Y278360D01*X187076Y278360D01*X187076Y278572D01*X187440Y278572D01* X187440Y279760D01*X188560Y279760D01*X188560Y278440D01*X188046Y278440D01* X188046Y278360D01*X189940Y278360D01*X189940Y278440D01*X188840Y278440D01* X188840Y279760D01*X189940Y279760D01*X189940Y281120D01*X189447Y281120D01* X189447Y279866D01*X188477Y279866D01*X188477Y280836D01*X189447Y280836D01* X189447Y281120D01*X188417Y281120D01*X187897Y280600D01*X182609Y280600D01* X182480Y280729D01*X182480Y280830D01*X182240Y280830D01*X182240Y281720D01* X181890Y281720D01*X181890Y280830D01*X180970Y280830D01*X180970Y283050D01* X181890Y283050D01*X181890Y282160D01*X182240Y282160D01*X182240Y283050D01* X183160Y283050D01*X183160Y281040D01*X183510Y281040D01*X183510Y283050D01* X184430Y283050D01*X184430Y281040D01*X184780Y281040D01*X184780Y283050D01* X185700Y283050D01*X185700Y281040D01*X186050Y281040D01*X186050Y283050D01* X186970Y283050D01*X186970Y281040D01*X187714Y281040D01*X188234Y281560D01* X189940Y281560D01*X189940Y282215D01*X189190Y282215D01*X189190Y283185D01* X189940Y283185D01*X189940Y284760D01*X191660Y284760D01*X191660Y281320D01* X193251Y281320D01*X193999Y280571D01*X195407Y280571D01*X195407Y280836D01* X196377Y280836D01*X196377Y279971D01*X196842Y279971D01*X197939Y281068D01* X197939Y282575D01*X198067Y282704D01*X199139Y283775D01*X200470Y283775D01* X200669Y283576D01*X201327Y283576D01*X201327Y282606D01*X200666Y282606D01* X200666Y282175D01*X200443Y282175D01*X200443Y280996D01*X199939Y280996D01* X199939Y280885D01*X200504Y280885D01*X200504Y279915D01*X199920Y279915D01* X199920Y278721D01*X198950Y278721D01*X198950Y279691D01*X199920Y279691D01* X199920Y279915D01*X199533Y279915D01*X199533Y280425D01*X198969Y280425D01* X198969Y281395D01*X199473Y281395D01*X199473Y281966D01*X200443Y281966D01* X200443Y282175D01*X199696Y282175D01*X199696Y282575D01*X198950Y282575D01* X198950Y282964D01*X198379Y282393D01*X198379Y280885D01*X197024Y279531D01* X192769Y279531D01*X192647Y279409D01*X192647Y278360D01*X200215Y278360D01* X200215Y279185D01*X200590Y279185D01*X200590Y279885D01*X201340Y279885D01* X201340Y284760D01*X202337Y284760D01*X202337Y285557D01*X203097Y285557D01* X203097Y285705D01*X202996Y285806D01*X202337Y285806D01*X202337Y286777D01* X203307Y286777D01*X203307Y286118D01*X203538Y285888D01*X203538Y284052D01* X203495Y284009D01*X203495Y283591D01*X203664Y283422D01*X203664Y283022D01* X204424Y283022D01*X204424Y282960D01*X205660Y282960D01*X205660Y281840D01* X204991Y281840D01*X205420Y281411D01*X205420Y281385D01*X205715Y281385D01* X205715Y281940D01*X205690Y281940D01*X205690Y282860D01*X213710Y282860D01* X213710Y281940D01*X213251Y281940D01*X213251Y281385D01*X214185Y281385D01* X214185Y280415D01*X213215Y280415D01*X213215Y280481D01*X212281Y280481D01* X212281Y281451D01*X213251Y281451D01*X213251Y281940D01*X212190Y281940D01* X212190Y280410D01*X211220Y280410D01*X211220Y281381D01*X212190Y281381D01* X212190Y281940D01*X211420Y281940D01*X211420Y281839D01*X211137Y281556D01* X211137Y281114D01*X210185Y281114D01*X210185Y280415D01*X209215Y280415D01* X209215Y281190D01*X209185Y281190D01*X209185Y280415D01*X208215Y280415D01* X208215Y281190D01*X208185Y281190D01*X208185Y280415D01*X207215Y280415D01* X207215Y281190D01*X207185Y281190D01*X207185Y280415D01*X206215Y280415D01* X206215Y281090D01*X206185Y281090D01*X206185Y280415D01*X205420Y280415D01* X205420Y280385D01*X206185Y280385D01*X206185Y279620D01*X206215Y279620D01* X206215Y280385D01*X207185Y280385D01*X207185Y279620D01*X207215Y279620D01* X207215Y280385D01*X208185Y280385D01*X208185Y279620D01*X208215Y279620D01* X208215Y280385D01*X209185Y280385D01*X209185Y279620D01*X209215Y279620D01* X209215Y280385D01*X210185Y280385D01*X210185Y279620D01*X212215Y279620D01* X212215Y280385D01*X213185Y280385D01*X213185Y279620D01*X213215Y279620D01* X213215Y280385D01*X214185Y280385D01*X214185Y279620D01*X214195Y279620D01* X214195Y280385D01*X215165Y280385D01*X215165Y279620D01*X215215Y279620D01* X215215Y280385D01*X216185Y280385D01*X216185Y279620D01*X216235Y279620D01* X216235Y280385D01*X217205Y280385D01*X217205Y279620D01*X218215Y279620D01* X218215Y280405D01*X219168Y280405D01*X219168Y281185D01*X219940Y281185D01* X219940Y284360D01*X221660Y284360D01*X221660Y283385D01*X222550Y283385D01* X222550Y282565D01*X224698Y282565D01*X224698Y282830D01*X225070Y282830D01* X225070Y284740D01*X223785Y284740D01*X223785Y283990D01*X222815Y283990D01* X222815Y284740D01*X222040Y284740D01*X222040Y286460D01*X225070Y286460D01* X225070Y287113D01*X224408Y287113D01*X224408Y286848D01*X223438Y286848D01* X223438Y287818D01*X224408Y287818D01*X224408Y287553D01*X225070Y287553D01* X225070Y287800D01*X224861Y287800D01*X224861Y288770D01*X225070Y288770D01* X225070Y289456D01*X223108Y289456D01*X223108Y286796D01*X222138Y286796D01* X222138Y287767D01*X223108Y287767D01*X223108Y289456D01*X219460Y289456D01* X219460Y287670D01*X219471Y287670D01*X219471Y286700D01*X218710Y286700D01* X218710Y286656D01*X219650Y286656D01*X219650Y285685D01*X219460Y285685D01* X219460Y284816D01*X219148Y284816D01*X219148Y283826D01*X218860Y283826D01* X218860Y283259D01*X219610Y283259D01*X219610Y282289D01*X218860Y282289D01* X218860Y281440D01*X218185Y281440D01*X218185Y280415D01*X217215Y280415D01* X217215Y281385D01*X218185Y281385D01*X218185Y281440D01*X217540Y281440D01* X217540Y282289D01*X217431Y282180D01*X217210Y282180D01*X217210Y281940D01* X216176Y281940D01*X216176Y281187D01*X215206Y281187D01*X215206Y281632D01* X215185Y281654D01*X215185Y280415D01*X214215Y280415D01*X214215Y281385D01* X215185Y281385D01*X215185Y281654D01*X214899Y281940D01*X214190Y281940D01* X214190Y282860D01*X217210Y282860D01*X217210Y282620D01*X217249Y282620D01* X217540Y282912D01*X217540Y283826D01*X217210Y283826D01*X217210Y282940D01* X214190Y282940D01*X214190Y283860D01*X217188Y283860D01*X217188Y284796D01* X218158Y284796D01*X218158Y283960D01*X218178Y283960D01*X218178Y284796D01* X219148Y284796D01*X219148Y284816D01*X218490Y284816D01*X218490Y284890D01* X216390Y284890D01*X216390Y285806D01*X216050Y285806D01*X216050Y284034D01* X215080Y284034D01*X215080Y285005D01*X216050Y285005D01*X216050Y285806D01* X215640Y285806D01*X215640Y286777D01*X216390Y286777D01*X216390Y288010D01* X218490Y288010D01*X218490Y288465D01*X219460Y288465D01*X219460Y289456D01* X215588Y289456D01*X215588Y285771D01*X214618Y285771D01*X214618Y286741D01* X215588Y286741D01*X215588Y289456D01*X210510Y289455D01*X210510Y288010D01* X212610Y288010D01*X212610Y284890D01*X210290Y284890D01*X210290Y287280D01* X210238Y287280D01*X210238Y284315D01*X209267Y284315D01*X209267Y285285D01* X210238Y285285D01*X210238Y287280D01*X209540Y287280D01*X209540Y288250D01* X210510Y288250D01*X210510Y289455D01*X209442Y289455D01*X209442Y288695D01* X208472Y288695D01*X208472Y289455D01*X208343Y289455D01*X208343Y286743D01* X208902Y286743D01*X208902Y285773D01*X208734Y285773D01*X208734Y283860D01* X213710Y283860D01*X213710Y282940D01*X205690Y282940D01*X205690Y283860D01* X207484Y283860D01*X207484Y284818D01*X208734Y284818D01*X208734Y285773D01* X207932Y285773D01*X207932Y286289D01*X207373Y286289D01*X207373Y287259D01* X208343Y287259D01*X208343Y289455D01*X205660Y289455D01*X205660Y283240D01* X204340Y283240D01*X204340Y284360D01*X205660Y284360D01*X205660Y289455D01* X200460Y289455D01*X200460Y288407D01*X201556Y288407D01*X201556Y288672D01* X202526Y288672D01*X202526Y287702D01*X201556Y287702D01*X201556Y287967D01* X200460Y287967D01*X200460Y287670D01*X202875Y287670D01*X202875Y287935D01* X203845Y287935D01*X203845Y287035D01*X204350Y287035D01*X204350Y286065D01* X203380Y286065D01*X203380Y286965D01*X202875Y286965D01*X202875Y287230D01* X201327Y287230D01*X201327Y283826D01*X200357Y283826D01*X200357Y284796D01* X201327Y284796D01*X201327Y287230D01*X200460Y287230D01*X200460Y286890D01* X199140Y286890D01*X199140Y287779D01*X199060Y287699D01*X199060Y286890D01* X197740Y286890D01*X197740Y287230D01*X197660Y287230D01*X197660Y286890D01* X196340Y286890D01*X196340Y288010D01*X197660Y288010D01*X197660Y287670D01* X197740Y287670D01*X197740Y288010D01*X198749Y288010D01*X199029Y288290D01* X197740Y288290D01*X197740Y289410D01*X199060Y289410D01*X199060Y288321D01* X199140Y288401D01*X199140Y289410D01*X200460Y289410D01*X200460Y289455D01* X197660Y289455D01*X197660Y288290D01*X196340Y288290D01*X196340Y289410D01* X197660Y289410D01*X197660Y289455D01*X196257Y289455D01*X196257Y287119D01* X195827Y287119D01*X195920Y287025D01*X195920Y286860D01*X200960Y286860D01* X200960Y285140D01*X200185Y285140D01*X200185Y284330D01*X199215Y284330D01* X199215Y284390D01*X198415Y284390D01*X198415Y285140D01*X197785Y285140D01* X197785Y284390D01*X196850Y284390D01*X196850Y281115D01*X195880Y281115D01* X195880Y282085D01*X196850Y282085D01*X196850Y284390D01*X196815Y284390D01* X196815Y285140D01*X196185Y285140D01*X196185Y284390D01*X195215Y284390D01* X195215Y285140D01*X193785Y285140D01*X193785Y284390D01*X192815Y284390D01* X192815Y285140D01*X192040Y285140D01*X192040Y286796D01*X191447Y286796D01* X191447Y287767D01*X192417Y287767D01*X192417Y287502D01*X192985Y287502D01* X193042Y287559D01*X193143Y287559D01*X193143Y288582D01*X194479Y288582D01* X194479Y287119D01*X193902Y287119D01*X193902Y287118D01*X193224Y287118D01* X193167Y287061D01*X192417Y287061D01*X192417Y286860D01*X195463Y286860D01* X195369Y286954D01*X195369Y287119D01*X194921Y287119D01*X194921Y288582D01* X196257Y288582D01*X196257Y289455D01*X191427Y289455D01*X191427Y285806D01* X190457Y285806D01*X190457Y286777D01*X191427Y286777D01*X191427Y289455D01* X190437Y289455D01*X190437Y284816D01*X189467Y284816D01*X189467Y285787D01* X190437Y285787D01*X190437Y289455D01*X180743Y289454D01*X180882Y289161D01* X181003Y288823D01*X181090Y288474D01*X181143Y288119D01*X181160Y287760D01* X181143Y287401D01*X181090Y287046D01*X181003Y286698D01*X180882Y286359D01* X180728Y286035D01*X180620Y285854D01*X180620Y280836D01*X180645Y280836D01* X180645Y279866D01*X179675Y279866D01*X179675Y280836D01*X179700Y280836D01* X179700Y283050D01*X180620Y283050D01*X180620Y285854D01*X180543Y285727D01* X180329Y285438D01*X180088Y285172D01*X179822Y284931D01*X179534Y284717D01* X179350Y284607D01*X179350Y280830D01*X178430Y280830D01*X178430Y283050D01* X179350Y283050D01*X179350Y284607D01*X179225Y284532D01*X178901Y284378D01* X178563Y284257D01*X178214Y284170D01*X177859Y284118D01*X177500Y284100D01* X177141Y284118D01*X176786Y284170D01*X176438Y284257D01*X176099Y284378D01* X175775Y284532D01*X175467Y284717D01*X175178Y284931D01*X174912Y285172D01* X174671Y285438D01*X174457Y285727D01*X174272Y286035D01*X174118Y286359D01* X173997Y286698D01*X173910Y287046D01*X173858Y287401D01*X173840Y287760D01* X173858Y288119D01*X173910Y288474D01*X173997Y288823D01*X174118Y289161D01* X174257Y289454D01*X173607Y289454D01*X173607Y282836D01*X172637Y282836D01* X172637Y283806D01*X173607Y283806D01*X173607Y289454D01*X171687Y289454D01* X171687Y280153D01*X170810Y280153D01*X170810Y279165D01*X171597Y279165D01* X171597Y278195D01*X170810Y278195D01*X170810Y277990D01*X169690Y277990D01* X169690Y279310D01*X170810Y279310D01*X170810Y280153D01*X169793Y280153D01* X169793Y282047D01*X171687Y282047D01*X171687Y289454D01*X169147Y289454D01* X169147Y280153D01*X167253Y280153D01*X167253Y282047D01*X169147Y282047D01* X169147Y289454D01*X166677Y289454D01*X166677Y280178D01*X167984Y278870D01* X168290Y278870D01*X168290Y279310D01*X169410Y279310D01*X169410Y277990D01* X168290Y277990D01*X168290Y278430D01*X167802Y278430D01*X166365Y279866D01* X166010Y279866D01*X166010Y274690D01*X162990Y274690D01*X162990Y275610D01* X166010Y275610D01*X166010Y279866D01*X165707Y279866D01*X165707Y280836D01* X166677Y280836D01*X166677Y289454D01*X164697Y289453D01*X164697Y280856D01* X163727Y280856D01*X163727Y281826D01*X164697Y281826D01*X164697Y289453D01* X162960Y289453D01*X162960Y273906D01*X162990Y273906D01*X162990Y274610D01* X166010Y274610D01*X166010Y273690D01*X165720Y273690D01*X165720Y273589D01* X165687Y273555D01*X165687Y272936D01*X164985Y272936D01*X164985Y272515D01* X164015Y272515D01*X164015Y273485D01*X164280Y273485D01*X164280Y273690D01* X163720Y273690D01*X163720Y273589D01*X163707Y273575D01*X163707Y272936D01* X162737Y272936D01*X162737Y273690D01*X161645Y273690D01*X161645Y272855D01* X160675Y272855D01*X160675Y273765D01*X160390Y273765D01*X160390Y274735D01* X161360Y274735D01*X161360Y274470D01*X161640Y274470D01*X161640Y274810D01* X162960Y274810D01*X162960Y275090D01*X161640Y275090D01*X161640Y276210D01* X162960Y276210D01*X162960Y289453D01*X159970Y289453D01*X159970Y284210D01* X157316Y284210D01*X157316Y281990D01*X159970Y281990D01*X159970Y279130D01* X157767Y279130D01*X157767Y275906D01*X156796Y275906D01*X156796Y276876D01* X157767Y276876D01*X157767Y279130D01*X157110Y279130D01*X157110Y281784D01* X156210Y281784D01*X156210Y274690D01*X155385Y274690D01*X155385Y274610D01* X156210Y274610D01*X156210Y273690D01*X155190Y273690D01*X155190Y273825D01* X154415Y273825D01*X154415Y274795D01*X155190Y274795D01*X155190Y275610D01* X156210Y275610D01*X156210Y281784D01*X154890Y281784D01*X154890Y279846D01* X155787Y279846D01*X155787Y278876D01*X154816Y278876D01*X154816Y279130D01* X154796Y279130D01*X154796Y277886D01*X153826Y277886D01*X153826Y278856D01* X154796Y278856D01*X154796Y279130D01*X152510Y279130D01*X152510Y274690D01* X151550Y274690D01*X151550Y274610D01*X152510Y274610D01*X152510Y274370D01* X152836Y274370D01*X152836Y274635D01*X153806Y274635D01*X153806Y273665D01* X152836Y273665D01*X152836Y273930D01*X152510Y273930D01*X152510Y273690D01* X151550Y273690D01*X151550Y273550D01*X150976Y273550D01*X150976Y272796D01* X149726Y272796D01*X149726Y274046D01*X150216Y274046D01*X150250Y274081D01* X150250Y274750D01*X150390Y274750D01*X150390Y275610D01*X151410Y275610D01* X151410Y274750D01*X151490Y274750D01*X151490Y275610D01*X152510Y275610D01* X152510Y279130D01*X152030Y279130D01*X152030Y281990D01*X154684Y281990D01* X154684Y284210D01*X152030Y284210D01*X152030Y287070D01*X154890Y287070D01* X154890Y284416D01*X157110Y284416D01*X157110Y287070D01*X159970Y287070D01* X159970Y289453D01*X147970Y289453D01*X147970Y284110D01*X145316Y284110D01* X145316Y281890D01*X147970Y281890D01*X147970Y279030D01*X145110Y279030D01* X145110Y281684D01*X144100Y281684D01*X144100Y274725D01*X144925Y274725D01* X144925Y273475D01*X144100Y273475D01*X144100Y272500D01*X143960Y272500D01* X143960Y270585D01*X144896Y270585D01*X144896Y269615D01*X143960Y269615D01* X143960Y268640D01*X141640Y268640D01*X141640Y271560D01*X143960Y271560D01* X143960Y272500D01*X141500Y272500D01*X141500Y275700D01*X144100Y275700D01* X144100Y281684D01*X142890Y281684D01*X142890Y279030D01*X141460Y279030D01* X141460Y256140D01*X140340Y256140D01*X140340Y257460D01*X141460Y257460D01* X141460Y257540D01*X140340Y257540D01*X140340Y258860D01*X141460Y258860D01* X141460Y279030D01*X140160Y279030D01*X140160Y261935D01*X140936Y261935D01* X140936Y260965D01*X140160Y260965D01*X140160Y260290D01*X140060Y260290D01* X140060Y250940D01*X138940Y250940D01*X138940Y252260D01*X140060Y252260D01* X140060Y252340D01*X138940Y252340D01*X138940Y253660D01*X140060Y253660D01* X140060Y253740D01*X138940Y253740D01*X138940Y255060D01*X140060Y255060D01* X140060Y260290D01*X137240Y260290D01*X137240Y262610D01*X140160Y262610D01* X140160Y265090D01*X137240Y265090D01*X137240Y267410D01*X140160Y267410D01* X140160Y279030D01*X140030Y279030D01*X140030Y281890D01*X142684Y281890D01* X142684Y284110D01*X140030Y284110D01*X140030Y286970D01*X142890Y286970D01* X142890Y284316D01*X145110Y284316D01*X145110Y286970D01*X147970Y286970D01* X147970Y289453D01*X139160Y289452D01*X139160Y268640D01*X137116Y268640D01* X137116Y264665D01*X136966Y264665D01*X136966Y248499D01*X135716Y248499D01* X135716Y249749D01*X136966Y249749D01*X136966Y264665D01*X136960Y264665D01* X136960Y249875D01*X135710Y249875D01*X135710Y251125D01*X136960Y251125D01* X136960Y263775D01*X135710Y263775D01*X135710Y265025D01*X135866Y265025D01* X135866Y265915D01*X137116Y265915D01*X137116Y268640D01*X136840Y268640D01* X136840Y271560D01*X139160Y271560D01*X139160Y272640D01*X136840Y272640D01* X136840Y275560D01*X139160Y275560D01*X139160Y289452D01*X134882Y289452D01* X134882Y260040D01*X133890Y260040D01*X133890Y248475D01*X132640Y248475D01* X132640Y249725D01*X133890Y249725D01*X133890Y249875D01*X132640Y249875D01* X132640Y251125D01*X133890Y251125D01*X133890Y260040D01*X133805Y260040D01* X133805Y251415D01*X132555Y251415D01*X132555Y252665D01*X133805Y252665D01* X133805Y260040D01*X133755Y260040D01*X133755Y253175D01*X132505Y253175D01* X132505Y254425D01*X133755Y254425D01*X133755Y260040D01*X133632Y260040D01* X133632Y261290D01*X134882Y261290D01*X134882Y289452D01*X134005Y289452D01* X134005Y266008D01*X133890Y266008D01*X133890Y263775D01*X133448Y263775D01* X133448Y261900D01*X132198Y261900D01*X132198Y263150D01*X133448Y263150D01* X133448Y263775D01*X132640Y263775D01*X132640Y265025D01*X133890Y265025D01* X133890Y266008D01*X132755Y266008D01*X132755Y267258D01*X134005Y267258D01* X134005Y289452D01*X131970Y289452D01*X131970Y284110D01*X129176Y284110D01* X129176Y281890D01*X131970Y281890D01*X131970Y272110D01*X129176Y272110D01* X129176Y269890D01*X131970Y269890D01*X131970Y260110D01*X129176Y260110D01* X129176Y257890D01*X131970Y257890D01*X131970Y248110D01*X129176Y248110D01* X129176Y245890D01*X131970Y245890D01*X131970Y236110D01*X129176Y236110D01* X129176Y233890D01*X131970Y233890D01*X131970Y224110D01*X129176Y224110D01* X129176Y221890D01*X131970Y221890D01*X131970Y219030D01*X129110Y219030D01* X129110Y221824D01*X126890Y221824D01*X126890Y219030D01*X124030Y219030D01* X124030Y221890D01*X126824Y221890D01*X126824Y224110D01*X124030Y224110D01* X124030Y226970D01*X126890Y226970D01*X126890Y224176D01*X129110Y224176D01* X129110Y226970D01*X131970Y226970D01*X131970Y231030D01*X130925Y231030D01* X130925Y227575D01*X129675Y227575D01*X129675Y228825D01*X130925Y228825D01* X130925Y229175D01*X129675Y229175D01*X129675Y230425D01*X130925Y230425D01* X130925Y231030D01*X129110Y231030D01*X129110Y233824D01*X126890Y233824D01* X126890Y231030D01*X124030Y231030D01*X124030Y233890D01*X126824Y233890D01* X126824Y236110D01*X124030Y236110D01*X124030Y238970D01*X126890Y238970D01* X126890Y236176D01*X129110Y236176D01*X129110Y238970D01*X131970Y238970D01* X131970Y243030D01*X129110Y243030D01*X129110Y245824D01*X126890Y245824D01* X126890Y243030D01*X124030Y243030D01*X124030Y245890D01*X126824Y245890D01* X126824Y248110D01*X124030Y248110D01*X124030Y250970D01*X126890Y250970D01* X126890Y248176D01*X129110Y248176D01*X129110Y250970D01*X131970Y250970D01* X131970Y255030D01*X130925Y255030D01*X130925Y251575D01*X129675Y251575D01* X129675Y252825D01*X130925Y252825D01*X130925Y253175D01*X129675Y253175D01* X129675Y254425D01*X130925Y254425D01*X130925Y255030D01*X129110Y255030D01* X129110Y257824D01*X126890Y257824D01*X126890Y255030D01*X124030Y255030D01* X124030Y257890D01*X126824Y257890D01*X126824Y260110D01*X124030Y260110D01* X124030Y262970D01*X126890Y262970D01*X126890Y260176D01*X129110Y260176D01* X129110Y262970D01*X131970Y262970D01*X131970Y267030D01*X129110Y267030D01* X129110Y269824D01*X126890Y269824D01*X126890Y267030D01*X124030Y267030D01* X124030Y269890D01*X126824Y269890D01*X126824Y272110D01*X124030Y272110D01* X124030Y274970D01*X126890Y274970D01*X126890Y272176D01*X129110Y272176D01* X129110Y274970D01*X131970Y274970D01*X131970Y279030D01*X130925Y279030D01* X130925Y275575D01*X129675Y275575D01*X129675Y276825D01*X130925Y276825D01* X130925Y277175D01*X129675Y277175D01*X129675Y278425D01*X130925Y278425D01* X130925Y279030D01*X129110Y279030D01*X129110Y281824D01*X126890Y281824D01* X126890Y279030D01*X124030Y279030D01*X124030Y281890D01*X126824Y281890D01* X126824Y284110D01*X124030Y284110D01*X124030Y286970D01*X126890Y286970D01* X126890Y284176D01*X129110Y284176D01*X129110Y286970D01*X131970Y286970D01* X131970Y289452D01*X121155Y289452D01*X121155Y288887D01*X119335Y288887D01* X119335Y289451D01*X118666Y289451D01*X118666Y288887D01*X116970Y288887D01* X116970Y284110D01*X114316Y284110D01*X114316Y281890D01*X116970Y281890D01* X116970Y272110D01*X114316Y272110D01*X114316Y269890D01*X116970Y269890D01* X116970Y260110D01*X114176Y260110D01*X114176Y257890D01*X116970Y257890D01* X116970Y248110D01*X114176Y248110D01*X114176Y245890D01*X116970Y245890D01* X116970Y236110D01*X114316Y236110D01*X114316Y233890D01*X116970Y233890D01* X116970Y224110D01*X114316Y224110D01*X114316Y221890D01*X116970Y221890D01* X116970Y219030D01*X114110Y219030D01*X114110Y221684D01*X111890Y221684D01* X111890Y219030D01*X109030Y219030D01*X109030Y221890D01*X111684Y221890D01* X111684Y224110D01*X109030Y224110D01*X109030Y226970D01*X111890Y226970D01* X111890Y224316D01*X114110Y224316D01*X114110Y226970D01*X116970Y226970D01* X116970Y231030D01*X114110Y231030D01*X114110Y233684D01*X111890Y233684D01* X111890Y231030D01*X109030Y231030D01*X109030Y233890D01*X111684Y233890D01* X111684Y236110D01*X109030Y236110D01*X109030Y238970D01*X111890Y238970D01* X111890Y236316D01*X114110Y236316D01*X114110Y238970D01*X116970Y238970D01* X116970Y243030D01*X114110Y243030D01*X114110Y245824D01*X111890Y245824D01* X111890Y243030D01*X109030Y243030D01*X109030Y245890D01*X111824Y245890D01* X111824Y248110D01*X109030Y248110D01*X109030Y250970D01*X111890Y250970D01* X111890Y248176D01*X114110Y248176D01*X114110Y250970D01*X116970Y250970D01* X116970Y255030D01*X115925Y255030D01*X115925Y251575D01*X114675Y251575D01* X114675Y252825D01*X115925Y252825D01*X115925Y253175D01*X114675Y253175D01* X114675Y254425D01*X115925Y254425D01*X115925Y255030D01*X114110Y255030D01* X114110Y257824D01*X111890Y257824D01*X111890Y255030D01*X109030Y255030D01* X109030Y257890D01*X111824Y257890D01*X111824Y260110D01*X109030Y260110D01* X109030Y262970D01*X111890Y262970D01*X111890Y260176D01*X114110Y260176D01* X114110Y262970D01*X116970Y262970D01*X116970Y267030D01*X114110Y267030D01* X114110Y269684D01*X111890Y269684D01*X111890Y267030D01*X109030Y267030D01* X109030Y269890D01*X111684Y269890D01*X111684Y272110D01*X109030Y272110D01* X109030Y274970D01*X111890Y274970D01*X111890Y272316D01*X114110Y272316D01* X114110Y274970D01*X116970Y274970D01*X116970Y279030D01*X114110Y279030D01* X114110Y281684D01*X111890Y281684D01*X111890Y279030D01*X109030Y279030D01* X109030Y281890D01*X111684Y281890D01*X111684Y284110D01*X109030Y284110D01* X109030Y286970D01*X111890Y286970D01*X111890Y284316D01*X114110Y284316D01* X114110Y286970D01*X116970Y286970D01*X116970Y288887D01*X116845Y288887D01* X116845Y289451D01*X102562Y289451D01*X102562Y248038D01*X102422Y248038D01* X102422Y236178D01*X100578Y236178D01*X100578Y238022D01*X102422Y238022D01* X102422Y238178D01*X100578Y238178D01*X100578Y240022D01*X102422Y240022D01* X102422Y240178D01*X100578Y240178D01*X100578Y242022D01*X102422Y242022D01* X102422Y242178D01*X100578Y242178D01*X100578Y244022D01*X102422Y244022D01* X102422Y244178D01*X100578Y244178D01*X100578Y246022D01*X102422Y246022D01* X102422Y246178D01*X100578Y246178D01*X100578Y248022D01*X102422Y248022D01* X102422Y248038D01*X100422Y248038D01*X100422Y236178D01*X099406Y236178D01* X099406Y221665D01*X097435Y221665D01*X097435Y223636D01*X099406Y223636D01* X099406Y228565D01*X097435Y228565D01*X097435Y230536D01*X099406Y230536D01* X099406Y236178D01*X098578Y236178D01*X098578Y238022D01*X100422Y238022D01* X100422Y238178D01*X098578Y238178D01*X098578Y240022D01*X100422Y240022D01* X100422Y240178D01*X098578Y240178D01*X098578Y242022D01*X100422Y242022D01* X100422Y242178D01*X098578Y242178D01*X098578Y244022D01*X100422Y244022D01* X100422Y244178D01*X098578Y244178D01*X098578Y246022D01*X100422Y246022D01* X100422Y246178D01*X098578Y246178D01*X098578Y248022D01*X100422Y248022D01* X100422Y248038D01*X098438Y248038D01*X098438Y256162D01*X102562Y256162D01* X102562Y289451D01*X099406Y289451D01*X099406Y270365D01*X098422Y270365D01* X098422Y236178D01*X097320Y236178D01*X097320Y220365D01*X096350Y220365D01* X096350Y221335D01*X097320Y221335D01*X097320Y225765D01*X096866Y225765D01* X096866Y221665D01*X094895Y221665D01*X094895Y223636D01*X096866Y223636D01* X096866Y225765D01*X096350Y225765D01*X096350Y226735D01*X097320Y226735D01* X097320Y227165D01*X096350Y227165D01*X096350Y228135D01*X097320Y228135D01* X097320Y236178D01*X096866Y236178D01*X096866Y228565D01*X094895Y228565D01* X094895Y230536D01*X096866Y230536D01*X096866Y236178D01*X096578Y236178D01* X096578Y238022D01*X098422Y238022D01*X098422Y238178D01*X096578Y238178D01* X096578Y240022D01*X098422Y240022D01*X098422Y240178D01*X096578Y240178D01* X096578Y242022D01*X098422Y242022D01*X098422Y242178D01*X096578Y242178D01* X096578Y244022D01*X098422Y244022D01*X098422Y244178D01*X096578Y244178D01* X096578Y246022D01*X098422Y246022D01*X098422Y246178D01*X096578Y246178D01* X096578Y248022D01*X098422Y248022D01*X098422Y248178D01*X096578Y248178D01* X096578Y250022D01*X098422Y250022D01*X098422Y250178D01*X096578Y250178D01* X096578Y252022D01*X098422Y252022D01*X098422Y252178D01*X096578Y252178D01* X096578Y254022D01*X098422Y254022D01*X098422Y254178D01*X096578Y254178D01* X096578Y256022D01*X098422Y256022D01*X098422Y270365D01*X097435Y270365D01* X097435Y272336D01*X099406Y272336D01*X099406Y277165D01*X097520Y277165D01* X097520Y274415D01*X097320Y274415D01*X097320Y268965D01*X096562Y268965D01* X096562Y248038D01*X096422Y248038D01*X096422Y236178D01*X094578Y236178D01* X094578Y238022D01*X096422Y238022D01*X096422Y238178D01*X094578Y238178D01* X094578Y240022D01*X096422Y240022D01*X096422Y240178D01*X094578Y240178D01* X094578Y242022D01*X096422Y242022D01*X096422Y242178D01*X094578Y242178D01* X094578Y244022D01*X096422Y244022D01*X096422Y244178D01*X094578Y244178D01* X094578Y246022D01*X096422Y246022D01*X096422Y246178D01*X094578Y246178D01* X094578Y248022D01*X096422Y248022D01*X096422Y248038D01*X094422Y248038D01* X094422Y236178D01*X094326Y236178D01*X094326Y221665D01*X092355Y221665D01* X092355Y223636D01*X094326Y223636D01*X094326Y228565D01*X092355Y228565D01* X092355Y230536D01*X094326Y230536D01*X094326Y236178D01*X092578Y236178D01* X092578Y238022D01*X094422Y238022D01*X094422Y238178D01*X092578Y238178D01* X092578Y240022D01*X094422Y240022D01*X094422Y240178D01*X092578Y240178D01* X092578Y242022D01*X094422Y242022D01*X094422Y242178D01*X092578Y242178D01* X092578Y244022D01*X094422Y244022D01*X094422Y244178D01*X092578Y244178D01* X092578Y246022D01*X094422Y246022D01*X094422Y246178D01*X092578Y246178D01* X092578Y248022D01*X094422Y248022D01*X094422Y248038D01*X092438Y248038D01* X092438Y250162D01*X096562Y250162D01*X096562Y252038D01*X096422Y252038D01* X096422Y250178D01*X094578Y250178D01*X094578Y252022D01*X096422Y252022D01* X096422Y252038D01*X094422Y252038D01*X094422Y250178D01*X092578Y250178D01* X092578Y252022D01*X094422Y252022D01*X094422Y252038D01*X092438Y252038D01* X092438Y256162D01*X096562Y256162D01*X096562Y268965D01*X096350Y268965D01* X096350Y269935D01*X097320Y269935D01*X097320Y274415D01*X096866Y274415D01* X096866Y270365D01*X094895Y270365D01*X094895Y272336D01*X096866Y272336D01* X096866Y274415D01*X096550Y274415D01*X096550Y275385D01*X097520Y275385D01* X097520Y277165D01*X097435Y277165D01*X097435Y279136D01*X099406Y279136D01* X099406Y284165D01*X097435Y284165D01*X097435Y286136D01*X099406Y286136D01* X099406Y289451D01*X097420Y289451D01*X097420Y281315D01*X096866Y281315D01* X096866Y277165D01*X094895Y277165D01*X094895Y279136D01*X096866Y279136D01* X096866Y281315D01*X096450Y281315D01*X096450Y282285D01*X097420Y282285D01* X097420Y289451D01*X096866Y289451D01*X096866Y284165D01*X094895Y284165D01* X094895Y286136D01*X096866Y286136D01*X096866Y289451D01*X094326Y289450D01* X094326Y270365D01*X092422Y270365D01*X092422Y236178D01*X091786Y236178D01* X091786Y221665D01*X090350Y221665D01*X090350Y218965D01*X089380Y218965D01* X089380Y219935D01*X090350Y219935D01*X090350Y220365D01*X089380Y220365D01* X089380Y221335D01*X090350Y221335D01*X090350Y221665D01*X089815Y221665D01* X089815Y223636D01*X091786Y223636D01*X091786Y228565D01*X090350Y228565D01* X090350Y225765D01*X089380Y225765D01*X089380Y226735D01*X090350Y226735D01* X090350Y227165D01*X089380Y227165D01*X089380Y228135D01*X090350Y228135D01* X090350Y228565D01*X089815Y228565D01*X089815Y230536D01*X091786Y230536D01* X091786Y236178D01*X090578Y236178D01*X090578Y238022D01*X092422Y238022D01* X092422Y238178D01*X090578Y238178D01*X090578Y240022D01*X092422Y240022D01* X092422Y240178D01*X090578Y240178D01*X090578Y242022D01*X092422Y242022D01* X092422Y242178D01*X090578Y242178D01*X090578Y244022D01*X092422Y244022D01* X092422Y244178D01*X090578Y244178D01*X090578Y246022D01*X092422Y246022D01* X092422Y246178D01*X090578Y246178D01*X090578Y248022D01*X092422Y248022D01* X092422Y248178D01*X090578Y248178D01*X090578Y250022D01*X092422Y250022D01* X092422Y250178D01*X090578Y250178D01*X090578Y252022D01*X092422Y252022D01* X092422Y252178D01*X090578Y252178D01*X090578Y254022D01*X092422Y254022D01* X092422Y254178D01*X090578Y254178D01*X090578Y256022D01*X092422Y256022D01* X092422Y270365D01*X092355Y270365D01*X092355Y272336D01*X094326Y272336D01* X094326Y277165D01*X092355Y277165D01*X092355Y279136D01*X094326Y279136D01* X094326Y284165D01*X093850Y284165D01*X093850Y281265D01*X092880Y281265D01* X092880Y282235D01*X093850Y282235D01*X093850Y284165D01*X092355Y284165D01* X092355Y286136D01*X094326Y286136D01*X094326Y289450D01*X091786Y289450D01* X091786Y270365D01*X090422Y270365D01*X090422Y236178D01*X088578Y236178D01* X088578Y238022D01*X090422Y238022D01*X090422Y238178D01*X088578Y238178D01* X088578Y240022D01*X090422Y240022D01*X090422Y240178D01*X088578Y240178D01* X088578Y242022D01*X090422Y242022D01*X090422Y242178D01*X088578Y242178D01* X088578Y244022D01*X090422Y244022D01*X090422Y244178D01*X088578Y244178D01* X088578Y246022D01*X090422Y246022D01*X090422Y246178D01*X088578Y246178D01* X088578Y248022D01*X090422Y248022D01*X090422Y248178D01*X088578Y248178D01* X088578Y250022D01*X090422Y250022D01*X090422Y250178D01*X088578Y250178D01* X088578Y252022D01*X090422Y252022D01*X090422Y252178D01*X088578Y252178D01* X088578Y254022D01*X090422Y254022D01*X090422Y254178D01*X088578Y254178D01* X088578Y256022D01*X090422Y256022D01*X090422Y270365D01*X090350Y270365D01* X090350Y268965D01*X089380Y268965D01*X089380Y269935D01*X090350Y269935D01* X090350Y270365D01*X089815Y270365D01*X089815Y272336D01*X091786Y272336D01* X091786Y277165D01*X090350Y277165D01*X090350Y275865D01*X089380Y275865D01* X089380Y276835D01*X090350Y276835D01*X090350Y277165D01*X089815Y277165D01* X089815Y279136D01*X091786Y279136D01*X091786Y284165D01*X090570Y284165D01* X090570Y281065D01*X089600Y281065D01*X089600Y282035D01*X090570Y282035D01* X090570Y284165D01*X089815Y284165D01*X089815Y286136D01*X091786Y286136D01* X091786Y289450D01*X089785Y289450D01*X089785Y283200D01*X088815Y283200D01* X088815Y284170D01*X089785Y284170D01*X089785Y289450D01*X088422Y289450D01* X088422Y236178D01*X086578Y236178D01*X086578Y238022D01*X088422Y238022D01* X088422Y238178D01*X086578Y238178D01*X086578Y240022D01*X088422Y240022D01* X088422Y240178D01*X086578Y240178D01*X086578Y242022D01*X088422Y242022D01* X088422Y242178D01*X086578Y242178D01*X086578Y244022D01*X088422Y244022D01* X088422Y244178D01*X086578Y244178D01*X086578Y246022D01*X088422Y246022D01* X088422Y246178D01*X086578Y246178D01*X086578Y248022D01*X088422Y248022D01* X088422Y248178D01*X086578Y248178D01*X086578Y250022D01*X088422Y250022D01* X088422Y250178D01*X086578Y250178D01*X086578Y252022D01*X088422Y252022D01* X088422Y252178D01*X086578Y252178D01*X086578Y254022D01*X088422Y254022D01* X088422Y254178D01*X086578Y254178D01*X086578Y256022D01*X088422Y256022D01* X088422Y289450D01*X088255Y289450D01*X088255Y286883D01*X088117Y286745D01* X087550Y286745D01*X087550Y281065D01*X086580Y281065D01*X086580Y282035D01* X087550Y282035D01*X087550Y286745D01*X086550Y286745D01*X086550Y216550D01*G37*G36* X157665Y244947D02*X159966Y242645D01*X172624Y242645D01*X172762Y242507D01* X172908Y242361D01*X175386Y242361D01*X176724Y241023D01*X178213Y241023D01* X178213Y242707D01*X180107Y242707D01*X180107Y241023D01*X180753Y241023D01* X180753Y242707D01*X182333Y242707D01*X182333Y243160D01*X182370Y243160D01* X182370Y243353D01*X180753Y243353D01*X180753Y245247D01*X181049Y245247D01* X181049Y246095D01*X182019Y246095D01*X182019Y245247D01*X182370Y245247D01* X182370Y246135D01*X180107Y246135D01*X180107Y243353D01*X178435Y243353D01* X178435Y243035D01*X177465Y243035D01*X177465Y244005D01*X178213Y244005D01* X178213Y245247D01*X180107Y245247D01*X180107Y246135D01*X179186Y246135D01* X178355Y246966D01*X178145Y246966D01*X178145Y244765D01*X177175Y244765D01* X177175Y245735D01*X178145Y245735D01*X178145Y246966D01*X176577Y246966D01* X176577Y246206D01*X175607Y246206D01*X175607Y246471D01*X175271Y246471D01* X175205Y246404D01*X175205Y244055D01*X174597Y244055D01*X174597Y242546D01* X173627Y242546D01*X173627Y243516D01*X174597Y243516D01*X174597Y244055D01* X174235Y244055D01*X174235Y245025D01*X175205Y245025D01*X175205Y246404D01* X172671Y243871D01*X165030Y243871D01*X163714Y245187D01*X163585Y245316D01* X163585Y246088D01*X162801Y246088D01*X162801Y246246D01*X162234Y245679D01* X162234Y245230D01*X162345Y245230D01*X162345Y244530D01*X162353Y244539D01* X162787Y244539D01*X162787Y244789D01*X163757Y244789D01*X163757Y243818D01* X162787Y243818D01*X162787Y244068D01*X162548Y244068D01*X162480Y244000D01* X161272Y244000D01*X159831Y245440D01*X159831Y246590D01*X159740Y246590D01* X159740Y245830D01*X158888Y245830D01*X158888Y245035D01*X158054Y245035D01* X158054Y244947D01*X157665Y244947D01*G37*G36*X164810Y269700D02*X165623Y269700D01* X165623Y269204D01*X165707Y269287D01*X165707Y269946D01*X166677Y269946D01* X166677Y268976D01*X166062Y268976D01*X166062Y268572D01*X166077Y268557D01* X166077Y268427D01*X166510Y267994D01*X166510Y268309D01*X166845Y268645D01* X166845Y268714D01*X167745Y269614D01*X167745Y269708D01*X167480Y269708D01* X167480Y270678D01*X168450Y270678D01*X168450Y269708D01*X168185Y269708D01* X168185Y269432D01*X167854Y269100D01*X168264Y269100D01*X168264Y268130D01* X168014Y268130D01*X168014Y267210D01*X168020Y267204D01*X168020Y267160D01* X168565Y267160D01*X168565Y267161D01*X168638Y267234D01*X168638Y268205D01* X168566Y268277D01*X168566Y270188D01*X168677Y270299D01*X168677Y270936D01* X169647Y270936D01*X169647Y269966D01*X169036Y269966D01*X169036Y269581D01* X169851Y269581D01*X169851Y269097D01*X170460Y269097D01*X170460Y268127D01* X170243Y268127D01*X170520Y267850D01*X170520Y267160D01*X170760Y267160D01* X170760Y266807D01*X171067Y267114D01*X171067Y270532D01*X171178Y270643D01* X171178Y271280D01*X172148Y271280D01*X172148Y270310D01*X171538Y270310D01* X171538Y267216D01*X171897Y267576D01*X171897Y268841D01*X171647Y268841D01* X171647Y269811D01*X172617Y269811D01*X172617Y268841D01*X172367Y268841D01* X172367Y267413D01*X172719Y267766D01*X172537Y267766D01*X172537Y268736D01* X173508Y268736D01*X173508Y267766D01*X173258Y267766D01*X173258Y267639D01* X173140Y267521D01*X173747Y267521D01*X173747Y266551D01*X173088Y266551D01* X173003Y266466D01*X172848Y266466D01*X171393Y265012D01*X172011Y265012D01* X172011Y264623D01*X174800Y267412D01*X174800Y269719D01*X179230Y274149D01* X179230Y276150D01*X178430Y276150D01*X178430Y277040D01*X176647Y277040D01* X176273Y276666D01*X176260Y276666D01*X176260Y274540D01*X173340Y274540D01* X173340Y275215D01*X172590Y275215D01*X172590Y276185D01*X173340Y276185D01* X173340Y276666D01*X170760Y276666D01*X170760Y273690D01*X170637Y273690D01* X170637Y271946D01*X169667Y271946D01*X169667Y272916D01*X170637Y272916D01* X170637Y273690D01*X169440Y273690D01*X169440Y273765D01*X168677Y273765D01* X168677Y274735D01*X169440Y274735D01*X169440Y274810D01*X170760Y274810D01* X170760Y275090D01*X169440Y275090D01*X169440Y275165D01*X168677Y275165D01* X168677Y276135D01*X169440Y276135D01*X169440Y276210D01*X170760Y276210D01* X170760Y276666D01*X168871Y276666D01*X168600Y276395D01*X168600Y274449D01* X168058Y273906D01*X168657Y273906D01*X168657Y272936D01*X167687Y272936D01* X167687Y273125D01*X164810Y270249D01*X164810Y269700D01*G37*G36*X168071Y261160D02* X168760Y261160D01*X168760Y260420D01*X168840Y260420D01*X168840Y261160D01* X169760Y261160D01*X169760Y260935D01*X169840Y260935D01*X169840Y261160D01* X170760Y261160D01*X170760Y260935D01*X171614Y260935D01*X171912Y261234D01* X171919Y261240D01*X171615Y261240D01*X171615Y261505D01*X171146Y261505D01* X171121Y261480D01*X170760Y261480D01*X170760Y261240D01*X169840Y261240D01* X169840Y262160D01*X169864Y262160D01*X169760Y262264D01*X169760Y262240D01* X169151Y262240D01*X169071Y262160D01*X169760Y262160D01*X169760Y261240D01* X168840Y261240D01*X168840Y261980D01*X168760Y261980D01*X168760Y261240D01* X168151Y261240D01*X168071Y261160D01* G37*G36*X171454Y252763D02*X171603Y252615D01* X171826Y252615D01*X171826Y252763D01*X171454Y252763D01*G37*G36*X167760Y259258D02* X167858Y259160D01*X168760Y259160D01*X168760Y258435D01*X168840Y258435D01* X168840Y259160D01*X169065Y259160D01*X169065Y259240D01*X168840Y259240D01* X168840Y259908D01*X168760Y259828D01*X168760Y259240D01*X167840Y259240D01* X167840Y259965D01*X167760Y259965D01*X167760Y259258D01*G37*G36*X170760Y256435D02* X171647Y256435D01*X171773Y256562D01*X174473Y256562D01*X174949Y256086D01* X175587Y256086D01*X175587Y255326D01*X176969Y255326D01*X177989Y256346D01* X181068Y256346D01*X181154Y256259D01*X181490Y256259D01*X181490Y257019D01* X182370Y257019D01*X182370Y258615D01*X181760Y258615D01*X181760Y258590D01* X180840Y258590D01*X180840Y259610D01*X181760Y259610D01*X181760Y259585D01* X182370Y259585D01*X182370Y260115D01*X181760Y260115D01*X181760Y260090D01* X180840Y260090D01*X180840Y261110D01*X181760Y261110D01*X181760Y261085D01* X182370Y261085D01*X182370Y261515D01*X182091Y261515D01*X182091Y261780D01* X181760Y261780D01*X181760Y261490D01*X180840Y261490D01*X180840Y262510D01* X181760Y262510D01*X181760Y262220D01*X182091Y262220D01*X182091Y262485D01* X182370Y262485D01*X182370Y262915D01*X182102Y262915D01*X182102Y263180D01* X181760Y263180D01*X181760Y262890D01*X180840Y262890D01*X180840Y263910D01* X181760Y263910D01*X181760Y263620D01*X182102Y263620D01*X182102Y263885D01* X182370Y263885D01*X182370Y264197D01*X181562Y264197D01*X181562Y264290D01* X180840Y264290D01*X180840Y265310D01*X181760Y265310D01*X181760Y265168D01* X182370Y265168D01*X182370Y265980D01*X181760Y265980D01*X181760Y265690D01* X180840Y265690D01*X180840Y266710D01*X181760Y266710D01*X181760Y266420D01* X182339Y266420D01*X182370Y266451D01*X182370Y268210D01*X181971Y268210D01* X181760Y267999D01*X181760Y267290D01*X180840Y267290D01*X180840Y268310D01* X181449Y268310D01*X181789Y268650D01*X182370Y268650D01*X182370Y269450D01* X181760Y269450D01*X181760Y268790D01*X180840Y268790D01*X180840Y269810D01* X181449Y269810D01*X181567Y269928D01*X181567Y270420D01*X182370Y270420D01* X182370Y270878D01*X181801Y270878D01*X181325Y270402D01*X180760Y270402D01* X180760Y264290D01*X179840Y264290D01*X179840Y265310D01*X180760Y265310D01* X180760Y265690D01*X179840Y265690D01*X179840Y266710D01*X180760Y266710D01* X180760Y267290D01*X179840Y267290D01*X179840Y268310D01*X180760Y268310D01* X180760Y268790D01*X179840Y268790D01*X179840Y269810D01*X180760Y269810D01* X180760Y270402D01*X179260Y270402D01*X179260Y268790D01*X179160Y268790D01* X179160Y264185D01*X179910Y264185D01*X179910Y263910D01*X180760Y263910D01* X180760Y258590D01*X179840Y258590D01*X179840Y259610D01*X180760Y259610D01* X180760Y260090D01*X179840Y260090D01*X179840Y261110D01*X180760Y261110D01* X180760Y261490D01*X179840Y261490D01*X179840Y262510D01*X180760Y262510D01* X180760Y262890D01*X179840Y262890D01*X179840Y263215D01*X179160Y263215D01* X179160Y257590D01*X178240Y257590D01*X178240Y259610D01*X179160Y259610D01* X179160Y261090D01*X178240Y261090D01*X178240Y263110D01*X179160Y263110D01* X179160Y263190D01*X178240Y263190D01*X178240Y265210D01*X179160Y265210D01* X179160Y268790D01*X178557Y268790D01*X178557Y266210D01*X178160Y266210D01* X178160Y263190D01*X177240Y263190D01*X177240Y263215D01*X176490Y263215D01* X176490Y264185D01*X177240Y264185D01*X177240Y264215D01*X176490Y264215D01* X176490Y265185D01*X177240Y265185D01*X177240Y265210D01*X178160Y265210D01* X178160Y266210D01*X177587Y266210D01*X177587Y267180D01*X178557Y267180D01* X178557Y268790D01*X178340Y268790D01*X178340Y269810D01*X179260Y269810D01* X179260Y270402D01*X176926Y270402D01*X176249Y269725D01*X176638Y269725D01* X176638Y269460D01*X176868Y269460D01*X176928Y269520D01*X177340Y269520D01* X177340Y269810D01*X178260Y269810D01*X178260Y268790D01*X178236Y268790D01* X178236Y267986D01*X177266Y267986D01*X177266Y268956D01*X177340Y268956D01* X177340Y269080D01*X177110Y269080D01*X177050Y269020D01*X176638Y269020D01* X176638Y268840D01*X176946Y268840D01*X176946Y267870D01*X175976Y267870D01* X175976Y268755D01*X175829Y268755D01*X175829Y263043D01*X174812Y262026D01* X175495Y262026D01*X175495Y262413D01*X176154Y262413D01*X176561Y262820D01* X177240Y262820D01*X177240Y263110D01*X178160Y263110D01*X178160Y261090D01* X177240Y261090D01*X177240Y261380D01*X176925Y261380D01*X176598Y261707D01* X176465Y261707D01*X176465Y261443D01*X175587Y261443D01*X175587Y261056D01* X174617Y261056D01*X174617Y261830D01*X172845Y260058D01*X174583Y260058D01* X174694Y259948D01*X175332Y259948D01*X175332Y258978D01*X174361Y258978D01* X174361Y259588D01*X172742Y259588D01*X172585Y259431D01*X171228Y259431D01* X170777Y258980D01*X170760Y258980D01*X170760Y258935D01*X171069Y258935D01* X171266Y259132D01*X171770Y259132D01*X171770Y259382D01*X172740Y259382D01* X172740Y258655D01*X176311Y258655D01*X176311Y258775D01*X175716Y258775D01* X175716Y259745D01*X175981Y259745D01*X175981Y259847D01*X176410Y260276D01* X177355Y260276D01*X177920Y259711D01*X177920Y259610D01*X178160Y259610D01* X178160Y257810D01*X178235Y257810D01*X178235Y256840D01*X177265Y256840D01* X177265Y257590D01*X177240Y257590D01*X177240Y258295D01*X176643Y258295D01* X176532Y258185D01*X173111Y258185D01*X173111Y257305D01*X172141Y257305D01* X172141Y257570D01*X171587Y257570D01*X171497Y257480D01*X171435Y257480D01* X171435Y256720D01*X170760Y256720D01*X170760Y256435D01*G37*G36*X169736Y250160D02* X169760Y250160D01*X169760Y249435D01*X169840Y249435D01*X169840Y250160D01* X170760Y250160D01*X170760Y249935D01*X170882Y249935D01*X171290Y249527D01* X171290Y249386D01*X171721Y248955D01*X171951Y248955D01*X172172Y249176D01* X171994Y249176D01*X171994Y249945D01*X171350Y249945D01*X171350Y250195D01* X171093Y250195D01*X170823Y250465D01*X170760Y250465D01*X170760Y250240D01* X169840Y250240D01*X169840Y250264D01*X169736Y250160D01*G37*G36*X164736Y249240D02* X164840Y249136D01*X164840Y249160D01*X165449Y249160D01*X165529Y249240D01* X164840Y249240D01*X164840Y249828D01*X164760Y249908D01*X164760Y249240D01* X164736Y249240D01*G37*G36*X165445Y261935D02*X165598Y261935D01*X166055Y262392D01* X166193Y262530D01*X166590Y262530D01*X166840Y262780D01*X166840Y263160D01* X167065Y263160D01*X167065Y263240D01*X166840Y263240D01*X166840Y264118D01* X166760Y264038D01*X166760Y263240D01*X166155Y263240D01*X166155Y262683D01* X165445Y261973D01*X165445Y261935D01*G37*G36*X160998Y266160D02*X161449Y266160D01* X161529Y266240D01*X160998Y266240D01*X160998Y266160D01*G37*G36*X152900Y260160D02* X153760Y260160D01*X153760Y259240D01*X153151Y259240D01*X153071Y259160D01* X153760Y259160D01*X153760Y258551D01*X153840Y258471D01*X153840Y259160D01* X154760Y259160D01*X154760Y258425D01*X155135Y258425D01*X155135Y258690D01* X155366Y258690D01*X155366Y259450D01*X156080Y259450D01*X155550Y259980D01* X154760Y259980D01*X154760Y259240D01*X153840Y259240D01*X153840Y260160D01* X153864Y260160D01*X153760Y260264D01*X153760Y260240D01*X152900Y260240D01* X152900Y260160D01*G37*G36*X157035Y264160D02*X157760Y264160D01*X157760Y263240D01* X157611Y263240D01*X157750Y263101D01*X157750Y262441D01*X158620Y261571D01* X158620Y260455D01*X158640Y260455D01*X158640Y261290D01*X158735Y261290D01* X158735Y262255D01*X159035Y262255D01*X159035Y262292D01*X158203Y262292D01* X158203Y262929D01*X158065Y263067D01*X158065Y263240D01*X157840Y263240D01* X157840Y264160D01*X158555Y264160D01*X158555Y264240D01*X157840Y264240D01* X157840Y264569D01*X157760Y264649D01*X157760Y264240D01*X157035Y264240D01* X157035Y264160D01*G37*G36*X154760Y262408D02*X155160Y262408D01*X155160Y262816D01* X155053Y262923D01*X154970Y262840D01*X154760Y262840D01*X154760Y262408D01* G37*G36* X169093Y251160D02*X169760Y251160D01*X169760Y251136D01*X169864Y251240D01* X169840Y251240D01*X169840Y252160D01*X170760Y252160D01*X170760Y252126D01* X171520Y252126D01*X171520Y251426D01*X171679Y251426D01*X171679Y251691D01* X172649Y251691D01*X172649Y251599D01*X173549Y251599D01*X173549Y250995D01* X173581Y251026D01*X175297Y251026D01*X175529Y251258D01*X175666Y251396D01* X181619Y251396D01*X181879Y251136D01*X182370Y251136D01*X182370Y252790D01* X180040Y252790D01*X180040Y255110D01*X182370Y255110D01*X182370Y255789D01* X180960Y255789D01*X180873Y255876D01*X180537Y255876D01*X180537Y255116D01* X179567Y255116D01*X179567Y255876D01*X179260Y255876D01*X179260Y251990D01* X178340Y251990D01*X178340Y255010D01*X179260Y255010D01*X179260Y255876D01* X178184Y255876D01*X177164Y254856D01*X176465Y254856D01*X176465Y254720D01* X177340Y254720D01*X177340Y255010D01*X178260Y255010D01*X178260Y251990D01* X177340Y251990D01*X177340Y252280D01*X176577Y252280D01*X176577Y252015D01* X175607Y252015D01*X175607Y252985D01*X176565Y252985D01*X176565Y253586D01* X176549Y253570D01*X175705Y253570D01*X175705Y253305D01*X174735Y253305D01* X174735Y254275D01*X175495Y254275D01*X175495Y254856D01*X174597Y254856D01* X174597Y251156D01*X173627Y251156D01*X173627Y252126D01*X174597Y252126D01* X174597Y254856D01*X173115Y254856D01*X173115Y254606D01*X173964Y254606D01* X173964Y253636D01*X173327Y253636D01*X173216Y253525D01*X172220Y253525D01* X172220Y252879D01*X172796Y252879D01*X172796Y251909D01*X171826Y251909D01* X171826Y252174D01*X171420Y252174D01*X171115Y252480D01*X170760Y252480D01* X170760Y252240D01*X169840Y252240D01*X169840Y252249D01*X169751Y252160D01* X169760Y252160D01*X169760Y251240D01*X169173Y251240D01*X169093Y251160D01*G37*G36* X171220Y247965D02*X171665Y247520D01*X171665Y247187D01*X171975Y246876D01* X171975Y247015D01*X172946Y247015D01*X172946Y246626D01*X174275Y247956D01* X179292Y247956D01*X180123Y247125D01*X182370Y247125D01*X182370Y247220D01* X182323Y247220D01*X182323Y247990D01*X180040Y247990D01*X180040Y248665D01* X179290Y248665D01*X179290Y249635D01*X180040Y249635D01*X180040Y250166D01* X179567Y250166D01*X179567Y250926D01*X179547Y250926D01*X179547Y250166D01* X179260Y250166D01*X179260Y247990D01*X178340Y247990D01*X178340Y249010D01* X179260Y249010D01*X179260Y250166D01*X178577Y250166D01*X178577Y250926D01* X177560Y250926D01*X177560Y249010D01*X178260Y249010D01*X178260Y247990D01* X177340Y247990D01*X177340Y248069D01*X176590Y248069D01*X176590Y249039D01* X177560Y249039D01*X177560Y250926D01*X175861Y250926D01*X175629Y250694D01* X175492Y250556D01*X173775Y250556D01*X173224Y250005D01*X173224Y249736D01* X174176Y249736D01*X174176Y248766D01*X173538Y248766D01*X172737Y247965D01* X171220Y247965D01*G37*G36*X163760Y264471D02*X163840Y264551D01*X163840Y264980D01* X163760Y264980D01*X163760Y264471D01*G37*G36*X154760Y254610D02*X155634Y254610D01* X155724Y254520D01*X155819Y254425D01*X156265Y254425D01*X156265Y254690D01* X157025Y254690D01*X157025Y254710D01*X156265Y254710D01*X156265Y254975D01* X154760Y254975D01*X154760Y254610D01*G37*G36*X154050Y250160D02*X154742Y250160D01* X154840Y250258D01*X154840Y251160D01*X155305Y251160D01*X155305Y251784D01* X156180Y251784D01*X156926Y252530D01*X156926Y253720D01*X156777Y253720D01* X156777Y252930D01*X156106Y252930D01*X156106Y252452D01*X155660Y252452D01* X155660Y251823D01*X154760Y251823D01*X154760Y251240D01*X154050Y251240D01* X154050Y251160D01*X154760Y251160D01*X154760Y250240D01*X154050Y250240D01* X154050Y250160D01*G37*G36*X154760Y255415D02*X156265Y255415D01*X156265Y255680D01* X157221Y255680D01*X157521Y255980D01*X154760Y255980D01*X154760Y255415D01*G37*G36* X152760Y257420D02*X152840Y257420D01*X152840Y258100D01*X152760Y258100D01* X152760Y257420D01*G37*G36*X191660Y279720D02*X192336Y279720D01*X192587Y279971D01* X195407Y279971D01*X195407Y280131D01*X193817Y280131D01*X193068Y280880D01* X191660Y280880D01*X191660Y279720D01*G37*G36*X166059Y255953D02*X166079Y255933D01* X166497Y255933D01*X166499Y255935D01*X166840Y255935D01*X166840Y256160D01* X167760Y256160D01*X167760Y255259D01*X167858Y255160D01*X168428Y255160D01* X168508Y255240D01*X167840Y255240D01*X167840Y256160D01*X168742Y256160D01* X168840Y256258D01*X168840Y257160D01*X169449Y257160D01*X169529Y257240D01* X168840Y257240D01*X168840Y257828D01*X168760Y257908D01*X168760Y257240D01* X168071Y257240D01*X168151Y257160D01*X168760Y257160D01*X168760Y256240D01* X167840Y256240D01*X167840Y256849D01*X167760Y256929D01*X167760Y256240D01* X166840Y256240D01*X166840Y256480D01*X166781Y256480D01*X166773Y256472D01* X166773Y255953D01*X166059Y255953D01*G37*G36*X168760Y250551D02*X168840Y250471D01* X168840Y250980D01*X168760Y250980D01*X168760Y250551D01* G37*G36*X169760Y256435D02* X169840Y256435D01*X169840Y256929D01*X169760Y256849D01*X169760Y256435D01*G37*G36* X165863Y254362D02*X165870Y254355D01*X166813Y254355D01*X166840Y254382D01* X166840Y254972D01*X166252Y254972D01*X166252Y254362D01*X165863Y254362D01*G37*G36* X164498Y258817D02*X164983Y258817D01*X164983Y258567D01*X165113Y258567D01* X165120Y258560D01*X165511Y258560D01*X166134Y259184D01*X166761Y259184D01* X166781Y259204D01*X166067Y259204D01*X166067Y260418D01*X165787Y260138D01* X165787Y259479D01*X164951Y259479D01*X164951Y259270D01*X164498Y258817D01*G37*G36* X168760Y249573D02*X168840Y249493D01*X168840Y250010D01*X168760Y250010D01* X168760Y249573D01*G37*G36*X167755Y246861D02*X168272Y246344D01*X168272Y246829D01* X168550Y247107D01*X168550Y247240D01*X167882Y247240D01*X167755Y247113D01* X167755Y246861D01*G37*G36*X203060Y278360D02*X204215Y278360D01*X204215Y278385D01* X205185Y278385D01*X205185Y278360D01*X205215Y278360D01*X205215Y278385D01* X206185Y278385D01*X206185Y278360D01*X206215Y278360D01*X206215Y278385D01* X207185Y278385D01*X207185Y278360D01*X207215Y278360D01*X207215Y278385D01* X208185Y278385D01*X208185Y278360D01*X208195Y278360D01*X208195Y278385D01* X209165Y278385D01*X209165Y278360D01*X209215Y278360D01*X209215Y278385D01* X210185Y278385D01*X210185Y278360D01*X210196Y278360D01*X210196Y278380D01* X211166Y278380D01*X211166Y278360D01*X211215Y278360D01*X211215Y278385D01* X212185Y278385D01*X212185Y278360D01*X212215Y278360D01*X212215Y278385D01* X213185Y278385D01*X213185Y278360D01*X213215Y278360D01*X213215Y278385D01* X214185Y278385D01*X214185Y278360D01*X214215Y278360D01*X214215Y278385D01* X215185Y278385D01*X215185Y278360D01*X216215Y278360D01*X216215Y278385D01* X217185Y278385D01*X217185Y278360D01*X217215Y278360D01*X217215Y278385D01* X218185Y278385D01*X218185Y278360D01*X218215Y278360D01*X218215Y278365D01* X219185Y278365D01*X219185Y278360D01*X219940Y278360D01*X219940Y278880D01* X219290Y278880D01*X219185Y278985D01*X219185Y278415D01*X218215Y278415D01* X218215Y279180D01*X218165Y279180D01*X218165Y278415D01*X217195Y278415D01* X217195Y279180D01*X216185Y279180D01*X216185Y278415D01*X215215Y278415D01* X215215Y279180D01*X215185Y279180D01*X215185Y278415D01*X214215Y278415D01* X214215Y279180D01*X214185Y279180D01*X214185Y278415D01*X213215Y278415D01* X213215Y279180D01*X213185Y279180D01*X213185Y278415D01*X212215Y278415D01* X212215Y279180D01*X211154Y279180D01*X211154Y278415D01*X210184Y278415D01* X210184Y279180D01*X209185Y279180D01*X209185Y278415D01*X208215Y278415D01* X208215Y279180D01*X208185Y279180D01*X208185Y278415D01*X207215Y278415D01* X207215Y279180D01*X207185Y279180D01*X207185Y278415D01*X206215Y278415D01* X206215Y279180D01*X206185Y279180D01*X206185Y278415D01*X205215Y278415D01* X205215Y279374D01*X205174Y279415D01*X204215Y279415D01*X204215Y280074D01* X203980Y280309D01*X203980Y280415D01*X203215Y280415D01*X203215Y281385D01* X203604Y281385D01*X203060Y281929D01*X203060Y278360D01*G37*X000000Y000000D02*M02* gerbv-2.7.0/example/Mentor-BoardStation/Makefile.am0000644000175000017500000000167013421555713022041 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=artwork_1.grb README.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/Mentor-BoardStation/Makefile.in0000644000175000017500000003613013423533412022043 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/Mentor-BoardStation ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = artwork_1.grb README.txt MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/Mentor-BoardStation/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/Mentor-BoardStation/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/Makefile.in0000644000175000017500000005256613423533412016223 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = am-test cslk dan eaglecad1 ekf2 exposure jj Mentor-BoardStation nollezappare \ numpres orcad pick-and-place polarity thermal trailing MOSTLYCLEANFILES = *~ all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/trailing/0000755000175000017500000000000013423533413015752 5ustar carstencarstengerbv-2.7.0/example/trailing/README.txt0000644000175000017500000000045613421555714017463 0ustar carstencarstenThis is an example from Joachim Jansen (EKF Elektronik GmbH Industrial Computers & Information Technology) who kindly sent this files to point out some problems in gerbv. They were the first example I had seen on "omit trailing zeros", which gerbv parsed but silently ignored due to laziness. $Id$ gerbv-2.7.0/example/trailing/Makefile.am0000644000175000017500000000013513421555714020013 0ustar carstencarsten## $Id$ ## EXTRA_DIST=README.txt cd1r2.1_sieb0.off cd1r2.1_sieb1.off MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/trailing/cd1r2.1_sieb0.off0000644000175000017500000046070113421555714020620 0ustar carstencarstenG04 Pcgerber II V5.0 Date: Tue Mar 16 14:14:08 2004 * G04 Database: (Untitled) * G04 Layer 2: sieb0_off_d1 * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %MIA0B0*% %IPPOS*% %ADD10C,0.00400*% %ADD11C,0.00600*% %ADD12C,0.00800*% %ADD13C,0.00800*% %ADD14C,0.01000*% %ADD15C,0.01600*% %ADD19O,0.01000X0.07000*% %ADD70O,0.01000X0.06400*% %ADD71O,0.07000X0.01000*% %ADD24O,0.06600X0.01800*% %ADD25O,0.01800X0.06600*% %ADD27R,0.03200X0.01100*% %ADD72R,0.01300X0.03200*% %ADD73R,0.02200X0.01400*% %ADD30R,0.01400X0.02200*% %ADD32R,0.01400X0.05400*% %ADD38R,0.03200X0.02400*% %ADD39R,0.02400X0.03200*% %ADD40R,0.03200X0.02600*% %ADD41R,0.02600X0.03200*% %ADD50R,0.04300X0.04000*% %ADD51R,0.04000X0.04300*% %ADD52R,0.05500X0.04300*% %ADD53R,0.04300X0.05500*% %ADD64R,0.03600X0.01400*% %ADD65R,0.05400X0.01400*% %ADD66R,0.04400X0.03600*% %ADD67R,0.01100X0.03200*% %LNsieb0_off_d1*% %SRX1Y1I0J0*% G54D10* %LPD*% G36* X102739Y009247D02* G01X102748Y00928D01* X102762Y009312* X102782Y00934* X102806Y009364* X102835Y009384* X102866Y009398* X102899Y009407* X102933Y00941* X102967Y009407* X103Y009398* X103032Y009384* X10306Y009364* X103084Y00934* X103104Y009312* X103118Y00928* X103127Y009247* X10313Y009213* X103127Y009179* X103118Y009146* X103104Y009115* X103084Y009086* X10306Y009062* X103032Y009042* X103Y009028* X102967Y009019* X102933Y009016* X102899Y009019* X102866Y009028* X102835Y009042* X102806Y009062* X102782Y009086* X102762Y009115* X102748Y009146* X102739Y009179* X102736Y009213* X102739Y009247* G37* G36* X018349Y011215D02* G01X018358Y011248D01* X018372Y01128* X018392Y011308* X018416Y011332* X018445Y011352* X018476Y011366* X018509Y011375* X018543Y011378* X018577Y011375* X01861Y011366* X018642Y011352* X01867Y011332* X018694Y011308* X018714Y01128* X018728Y011248* X018737Y011215* X01874Y011181* X018737Y011147* X018728Y011114* X018714Y011083* X018694Y011054* X01867Y01103* X018642Y01101* X01861Y010996* X018577Y010987* X018543Y010984* X018509Y010987* X018476Y010996* X018445Y01101* X018416Y01103* X018392Y011054* X018372Y011083* X018358Y011114* X018349Y011147* X018346Y011181* X018349Y011215* G37* G36* X050239Y009247D02* G01X050248Y00928D01* X050262Y009312* X050282Y00934* X050306Y009364* X050335Y009384* X050366Y009398* X050399Y009407* X050433Y00941* X050467Y009407* X0505Y009398* X050532Y009384* X05056Y009364* X050584Y00934* X050604Y009312* X050618Y00928* X050627Y009247* X05063Y009213* X050627Y009179* X050618Y009146* X050604Y009115* X050584Y009086* X05056Y009062* X050532Y009042* X0505Y009028* X050467Y009019* X050433Y009016* X050399Y009019* X050366Y009028* X050335Y009042* X050306Y009062* X050282Y009086* X050262Y009115* X050248Y009146* X050239Y009179* X050236Y009213* X050239Y009247* G37* G36* X014806Y010034D02* G01X014815Y010067D01* X014829Y010099* X014849Y010127* X014873Y010151* X014902Y010171* X014933Y010185* X014966Y010194* X015Y010197* X015034Y010194* X015067Y010185* X015099Y010171* X015127Y010151* X015151Y010127* X015171Y010099* X015185Y010067* X015194Y010034* X015197Y01* X015194Y009966* X015185Y009933* X015171Y009902* X015151Y009873* X015127Y009849* X015099Y009829* X015067Y009815* X015034Y009806* X015Y009803* X014966Y009806* X014933Y009815* X014902Y009829* X014873Y009849* X014849Y009873* X014829Y009902* X014815Y009933* X014806Y009966* X014803Y01* X014806Y010034* G37* G36* X018349D02* G01X018358Y010067D01* X018372Y010099* X018392Y010127* X018416Y010151* X018445Y010171* X018476Y010185* X018509Y010194* X018543Y010197* X018577Y010194* X01861Y010185* X018642Y010171* X01867Y010151* X018694Y010127* X018714Y010099* X018728Y010067* X018737Y010034* X01874Y01* X018737Y009966* X018728Y009933* X018714Y009902* X018694Y009873* X01867Y009849* X018642Y009829* X01861Y009815* X018577Y009806* X018543Y009803* X018509Y009806* X018476Y009815* X018445Y009829* X018416Y009849* X018392Y009873* X018372Y009902* X018358Y009933* X018349Y009966* X018346Y01* X018349Y010034* G37* G36* X050239Y011215D02* G01X050248Y011248D01* X050262Y01128* X050282Y011308* X050306Y011332* X050335Y011352* X050366Y011366* X050399Y011375* X050433Y011378* X050467Y011375* X0505Y011366* X050532Y011352* X05056Y011332* X050584Y011308* X050604Y01128* X050618Y011248* X050627Y011215* X05063Y011181* X050627Y011147* X050618Y011114* X050604Y011083* X050584Y011054* X05056Y01103* X050532Y01101* X0505Y010996* X050467Y010987* X050433Y010984* X050399Y010987* X050366Y010996* X050335Y01101* X050306Y01103* X050282Y011054* X050262Y011083* X050248Y011114* X050239Y011147* X050236Y011181* X050239Y011215* G37* G36* X102739Y010034D02* G01X102748Y010067D01* X102762Y010099* X102782Y010127* X102806Y010151* X102835Y010171* X102866Y010185* X102899Y010194* X102933Y010197* X102967Y010194* X103Y010185* X103032Y010171* X10306Y010151* X103084Y010127* X103104Y010099* X103118Y010067* X103127Y010034* X10313Y01* X103127Y009966* X103118Y009933* X103104Y009902* X103084Y009873* X10306Y009849* X103032Y009829* X103Y009815* X102967Y009806* X102933Y009803* X102899Y009806* X102866Y009815* X102835Y009829* X102806Y009849* X102782Y009873* X102762Y009902* X102748Y009933* X102739Y009966* X102736Y01* X102739Y010034* G37* G36* X106676D02* G01X106685Y010067D01* X106699Y010099* X106719Y010127* X106743Y010151* X106772Y010171* X106803Y010185* X106836Y010194* X10687Y010197* X106904Y010194* X106937Y010185* X106969Y010171* X106997Y010151* X107021Y010127* X107041Y010099* X107055Y010067* X107064Y010034* X107067Y01* X107064Y009966* X107055Y009933* X107041Y009902* X107021Y009873* X106997Y009849* X106969Y009829* X106937Y009815* X106904Y009806* X10687Y009803* X106836Y009806* X106803Y009815* X106772Y009829* X106743Y009849* X106719Y009873* X106699Y009902* X106685Y009933* X106676Y009966* X106673Y01* X106676Y010034* G37* G36* X097224Y009921D02* G01X096949D01* Y010197* X097224* Y009921* G37* G36* X09998D02* G01X099705D01* Y010197* X09998* Y009921* G37* G36* X085807D02* G01X085531D01* Y010197* X085807* Y009921* G37* G36* X072598Y018228D02* G01X072087D01* Y019429* X073031* Y018563* X072598* Y018228* G37* G36* X065276Y018563D02* G01X064843D01* Y019429* X065787* Y018228* X065276* Y018563* G37* G54D15* X039606Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X04Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X040394Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X040787Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X041181Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X041575Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X041969Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X042362Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X042756Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X04315Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X043543Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X043937Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X044331Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* X044724Y062559D03* Y062165D03* Y061772D03* Y061378D03* Y060984D03* Y060591D03* Y060197D03* Y059803D03* Y059409D03* Y059016D03* Y058622D03* Y058228D03* Y057835D03* Y057441D03* G54D25* X079014Y057502D03* X079514D03* X080014D03* X080514D03* Y059742D03* X080014D03* X079514D03* X079014D03* G54D24* X095258Y055317D03* Y054817D03* Y054317D03* Y053817D03* X097498D03* Y054317D03* Y054817D03* Y055317D03* G54D25* X097955Y060923D03* X097455D03* X096955D03* X096455D03* Y058683D03* X096955D03* X097455D03* X097955D03* X10303Y05577D03* X10353D03* X10403D03* X10453D03* Y05801D03* X10403D03* X10353D03* X10303D03* X101104Y060923D03* X100604D03* X100104D03* X099604D03* Y058683D03* X100104D03* X100604D03* X101104D03* G54D24* X099904Y017246D03* Y016746D03* Y016246D03* Y015746D03* X102144D03* Y016246D03* Y016746D03* Y017246D03* X081793Y05012D03* Y04962D03* Y04912D03* Y04862D03* X084033D03* Y04912D03* Y04962D03* Y05012D03* X086199Y03051D03* Y03101D03* Y03151D03* Y03201D03* X083959D03* Y03151D03* Y03101D03* Y03051D03* X086199Y035628D03* Y036128D03* Y036628D03* Y037128D03* X083959D03* Y036628D03* Y036128D03* Y035628D03* X086199Y027951D03* Y028451D03* Y028951D03* Y029451D03* X083959D03* Y028951D03* Y028451D03* Y027951D03* X086199Y033069D03* Y033569D03* Y034069D03* Y034569D03* X083959D03* Y034069D03* Y033569D03* Y033069D03* X082655Y031612D03* Y032112D03* Y032612D03* Y033112D03* X080415D03* Y032612D03* Y032112D03* Y031612D03* X082655Y02736D03* Y02786D03* Y02836D03* Y02886D03* X080415D03* Y02836D03* Y02786D03* Y02736D03* X082655Y035864D03* Y036364D03* Y036864D03* Y037364D03* X080415D03* Y036864D03* Y036364D03* Y035864D03* X082655Y03799D03* Y03849D03* Y03899D03* Y03949D03* X080415D03* Y03899D03* Y03849D03* Y03799D03* X082655Y029486D03* Y029986D03* Y030486D03* Y030986D03* X080415D03* Y030486D03* Y029986D03* Y029486D03* X082655Y033738D03* Y034238D03* Y034738D03* Y035238D03* X080415D03* Y034738D03* Y034238D03* Y033738D03* G54D25* X059526Y060455D03* X060026D03* X060526D03* X061026D03* Y062695D03* X060526D03* X060026D03* X059526D03* X053547Y063522D03* X053047D03* X052547D03* X052047D03* X051547D03* X051047D03* X050547D03* Y061282D03* X051047D03* X051547D03* X052047D03* X052547D03* X053047D03* X053547D03* X058073Y06427D03* X057573D03* X057073D03* X056573D03* Y06203D03* X057073D03* X057573D03* X058073D03* Y060923D03* X057573D03* X057073D03* X056573D03* Y058683D03* X057073D03* X057573D03* X058073D03* G54D24* X050415Y03138D03* Y03088D03* Y03038D03* Y02988D03* X052655D03* Y03038D03* Y03088D03* Y03138D03* G54D25* X038191Y063876D03* X037691D03* X037191D03* X036691D03* Y061636D03* X037191D03* X037691D03* X038191D03* G54D24* X040573Y03138D03* Y03088D03* Y03038D03* Y02988D03* X042813D03* Y03038D03* Y03088D03* Y03138D03* G54D70* X096791Y031142D03* X096594D03* X096398D03* X096201D03* X096004D03* X095807D03* X09561D03* X095413D03* X095217D03* X09502D03* X094823D03* X094626D03* X094429D03* X094232D03* X094035D03* X093839D03* X093642D03* X093445D03* X093248D03* X093051D03* Y023504D03* X093248D03* X093445D03* X093642D03* X093839D03* X094035D03* X094232D03* X094429D03* X094626D03* X094823D03* X09502D03* X095217D03* X095413D03* X09561D03* X095807D03* X096004D03* X096201D03* X096398D03* X096594D03* X096791D03* X101122Y031142D03* X100925D03* X100728D03* X100531D03* X100335D03* X100138D03* X099941D03* X099744D03* X099547D03* X09935D03* X099154D03* X098957D03* X09876D03* X098563D03* X098366D03* X098169D03* X097972D03* X097776D03* X097579D03* X097382D03* Y023504D03* X097579D03* X097776D03* X097972D03* X098169D03* X098366D03* X098563D03* X09876D03* X098957D03* X099154D03* X09935D03* X099547D03* X099744D03* X099941D03* X100138D03* X100335D03* X100531D03* X100728D03* X100925D03* X101122D03* G54D19* X058996Y027205D03* X058799D03* X058602D03* X058406D03* X058209D03* X058012D03* X057815D03* X057618D03* X057421D03* X057224D03* X057028D03* X056831D03* X056634D03* X056437D03* X05624D03* X056043D03* G54D71* X055276Y026437D03* Y02624D03* Y026043D03* Y025846D03* Y02565D03* Y025453D03* Y025256D03* Y025059D03* Y024862D03* Y024665D03* Y024469D03* Y024272D03* Y024075D03* Y023878D03* Y023681D03* Y023484D03* G54D19* X056043Y022717D03* X05624D03* X056437D03* X056634D03* X056831D03* X057028D03* X057224D03* X057421D03* X057618D03* X057815D03* X058012D03* X058209D03* X058406D03* X058602D03* X058799D03* X058996D03* G54D71* X059764Y023484D03* Y023681D03* Y023878D03* Y024075D03* Y024272D03* Y024469D03* Y024665D03* Y024862D03* Y025059D03* Y025256D03* Y025453D03* Y02565D03* Y025846D03* Y026043D03* Y02624D03* Y026437D03* G54D72* X075945Y057126D03* X07626D03* X076575D03* X07689D03* Y057756D03* X076575D03* X07626D03* X075945D03* X082165Y067244D03* X08185D03* X081535D03* X08122D03* Y066614D03* X081535D03* X08185D03* X082165D03* X079252Y067244D03* X078937D03* X078622D03* X078307D03* Y066614D03* X078622D03* X078937D03* X079252D03* X07685D03* X077165D03* X07748D03* X077795D03* Y067244D03* X07748D03* X077165D03* X07685D03* X092283Y051614D03* X092598D03* X092913D03* X093228D03* Y052244D03* X092913D03* X092598D03* X092283D03* X095276Y067244D03* X094961D03* X094646D03* X094331D03* Y066614D03* X094646D03* X094961D03* X095276D03* X098189Y067244D03* X097874D03* X097559D03* X097244D03* Y066614D03* X097559D03* X097874D03* X098189D03* X092874D03* X093189D03* X093504D03* X093819D03* Y067244D03* X093504D03* X093189D03* X092874D03* X096378Y050866D03* X096063D03* X095748D03* X095433D03* Y050236D03* X095748D03* X096063D03* X096378D03* X098701Y066614D03* X099016D03* X099331D03* X099646D03* Y067244D03* X099331D03* X099016D03* X098701D03* X095787Y066614D03* X096102D03* X096417D03* X096732D03* Y067244D03* X096417D03* X096102D03* X095787D03* X101102D03* X100787D03* X100472D03* X100157D03* Y066614D03* X100472D03* X100787D03* X101102D03* X104016Y067244D03* X103701D03* X103386D03* X103071D03* Y066614D03* X103386D03* X103701D03* X104016D03* X101614D03* X101929D03* X102244D03* X102559D03* Y067244D03* X102244D03* X101929D03* X101614D03* X104528Y066614D03* X104843D03* X105157D03* X105472D03* Y067244D03* X105157D03* X104843D03* X104528D03* G54D27* X102126Y045945D03* Y04626D03* Y046575D03* Y04689D03* X101496D03* Y046575D03* Y04626D03* Y045945D03* X102126Y047323D03* Y047638D03* Y047953D03* Y048268D03* X101496D03* Y047953D03* Y047638D03* Y047323D03* X102126Y048701D03* Y049016D03* Y049331D03* Y049646D03* X101496D03* Y049331D03* Y049016D03* Y048701D03* G54D72* X089449Y067244D03* X089134D03* X088819D03* X088504D03* Y066614D03* X088819D03* X089134D03* X089449D03* X087047D03* X087362D03* X087677D03* X087992D03* Y067244D03* X087677D03* X087362D03* X087047D03* X084134Y066614D03* X084449D03* X084764D03* X085079D03* Y067244D03* X084764D03* X084449D03* X084134D03* X082677Y066614D03* X082992D03* X083307D03* X083622D03* Y067244D03* X083307D03* X082992D03* X082677D03* G54D27* X087244Y057835D03* Y05815D03* Y058465D03* Y05878D03* X086614D03* Y058465D03* Y05815D03* Y057835D03* G54D72* X089961Y064843D03* X090276D03* X090591D03* X090906D03* Y065472D03* X090591D03* X090276D03* X089961D03* Y066614D03* X090276D03* X090591D03* X090906D03* Y067244D03* X090591D03* X090276D03* X089961D03* X092362D03* X092047D03* X091732D03* X091417D03* Y066614D03* X091732D03* X092047D03* X092362D03* X092972Y016915D03* X092657D03* X092343D03* X092028D03* Y016285D03* X092343D03* X092657D03* X092972D03* X093228Y050866D03* X092913D03* X092598D03* X092283D03* Y050236D03* X092598D03* X092913D03* X093228D03* G54D27* X091575Y05878D03* Y058465D03* Y05815D03* Y057835D03* X092205D03* Y05815D03* Y058465D03* Y05878D03* X087323Y045906D03* Y045591D03* Y045276D03* Y044961D03* X087953D03* Y045276D03* Y045591D03* Y045906D03* G54D72* X085079Y065472D03* X084764D03* X084449D03* X084134D03* Y064843D03* X084449D03* X084764D03* X085079D03* X079764Y066614D03* X080079D03* X080394D03* X080709D03* Y067244D03* X080394D03* X080079D03* X079764D03* X086535D03* X08622D03* X085906D03* X085591D03* Y066614D03* X085906D03* X08622D03* X086535D03* X042795Y066575D03* X04311D03* X043425D03* X04374D03* Y067205D03* X043425D03* X04311D03* X042795D03* X043858Y05437D03* X044173D03* X044488D03* X044803D03* Y055D03* X044488D03* X044173D03* X043858D03* X041496Y048071D03* X041811D03* X042126D03* X042441D03* Y048701D03* X042126D03* X041811D03* X041496D03* X045315Y067205D03* X045D03* X044685D03* X04437D03* Y066575D03* X044685D03* X045D03* X045315D03* X048307Y067205D03* X047992D03* X047677D03* X047362D03* Y066575D03* X047677D03* X047992D03* X048307D03* X046811Y067205D03* X046496D03* X046181D03* X045866D03* Y066575D03* X046181D03* X046496D03* X046811D03* G54D67* X06628Y019587D03* X066476D03* X066673D03* X06687D03* X067067D03* X067264D03* X067461D03* X067657D03* X067854D03* X068051D03* X068248D03* X068445D03* X068642D03* X068839D03* X069035D03* X069232D03* X069429D03* X069626D03* X069823D03* X07002D03* X070217D03* X070413D03* X07061D03* X070807D03* X071004D03* X071201D03* X071398D03* X071594D03* G54D72* X073425Y067244D03* X07311D03* X072795D03* X07248D03* Y066614D03* X072795D03* X07311D03* X073425D03* X070512Y067244D03* X070197D03* X069882D03* X069567D03* Y066614D03* X069882D03* X070197D03* X070512D03* X069567Y064843D03* X069882D03* X070197D03* X070512D03* Y065472D03* X070197D03* X069882D03* X069567D03* X075315Y03748D03* X075D03* X074685D03* X07437D03* Y03685D03* X074685D03* X075D03* X075315D03* X071614Y021693D03* X071929D03* X072244D03* X072559D03* Y022323D03* X072244D03* X071929D03* X071614D03* X071024Y066614D03* X071339D03* X071654D03* X071969D03* Y067244D03* X071654D03* X071339D03* X071024D03* X076339D03* X076024D03* X075709D03* X075394D03* Y066614D03* X075709D03* X076024D03* X076339D03* X073937D03* X074252D03* X074567D03* X074882D03* Y067244D03* X074567D03* X074252D03* X073937D03* X054252Y049173D03* X053937D03* X053622D03* X053307D03* Y048543D03* X053622D03* X053937D03* X054252D03* X054528Y050472D03* X054213D03* X053898D03* X053583D03* Y049843D03* X053898D03* X054213D03* X054528D03* X054291Y067205D03* X053976D03* X053661D03* X053346D03* Y066575D03* X053661D03* X053976D03* X054291D03* G54D27* X059567Y046496D03* Y046181D03* Y045866D03* Y045551D03* X060197D03* Y045866D03* Y046181D03* Y046496D03* X05622Y014882D03* Y014567D03* Y014252D03* Y013937D03* X05685D03* Y014252D03* Y014567D03* Y014882D03* X055236Y050354D03* Y050039D03* Y049724D03* Y049409D03* X055866D03* Y049724D03* Y050039D03* Y050354D03* X05813Y031969D03* Y032283D03* Y032598D03* Y032913D03* X0575D03* Y032598D03* Y032283D03* Y031969D03* X055079Y06248D03* Y062795D03* Y06311D03* Y063425D03* X054449D03* Y06311D03* Y062795D03* Y06248D03* G54D72* X052795Y067205D03* X05248D03* X052165D03* X05185D03* Y066575D03* X052165D03* X05248D03* X052795D03* X049803Y067205D03* X049488D03* X049173D03* X048858D03* Y066575D03* X049173D03* X049488D03* X049803D03* X051299Y067205D03* X050984D03* X050669D03* X050354D03* Y066575D03* X050669D03* X050984D03* X051299D03* G54D27* X049815Y036728D03* Y037043D03* Y037357D03* Y037672D03* X049185D03* Y037357D03* Y037043D03* Y036728D03* X049815Y044128D03* Y044443D03* Y044757D03* Y045072D03* X049185D03* Y044757D03* Y044443D03* Y044128D03* X049815Y041628D03* Y041943D03* Y042257D03* Y042572D03* X049185D03* Y042257D03* Y041943D03* Y041628D03* G54D72* X053071Y050472D03* X052756D03* X052441D03* X052126D03* Y049843D03* X052441D03* X052756D03* X053071D03* X052165Y049173D03* X05185D03* X051535D03* X05122D03* Y048543D03* X051535D03* X05185D03* X052165D03* X045472Y05437D03* X045787D03* X046102D03* X046417D03* Y055D03* X046102D03* X045787D03* X045472D03* X04563Y048661D03* X045945D03* X04626D03* X046575D03* Y049291D03* X04626D03* X045945D03* X04563D03* X029154Y055D03* X028839D03* X028524D03* X028209D03* Y05437D03* X028524D03* X028839D03* X029154D03* X030531Y055D03* X030217D03* X029902D03* X029587D03* Y05437D03* X029902D03* X030217D03* X030531D03* X026929Y048071D03* X027244D03* X027559D03* X027874D03* Y048701D03* X027559D03* X027244D03* X026929D03* X028898Y048071D03* X029213D03* X029528D03* X029843D03* Y048701D03* X029528D03* X029213D03* X028898D03* X037165Y066575D03* X03748D03* X037795D03* X03811D03* Y067205D03* X037795D03* X03748D03* X037165D03* X037559Y048071D03* X037874D03* X038189D03* X038504D03* Y048701D03* X038189D03* X037874D03* X037559D03* X03815Y05437D03* X038465D03* X03878D03* X039094D03* Y055D03* X03878D03* X038465D03* X03815D03* X039528Y048071D03* X039843D03* X040157D03* X040472D03* Y048701D03* X040157D03* X039843D03* X039528D03* X042539Y055D03* X042224D03* X041909D03* X041594D03* Y05437D03* X041909D03* X042224D03* X042539D03* X039921D03* X040236D03* X040551D03* X040866D03* Y055D03* X040551D03* X040236D03* X039921D03* G54D27* X039015Y036628D03* Y036943D03* Y037257D03* Y037572D03* X038385D03* Y037257D03* Y036943D03* Y036628D03* X039015Y039228D03* Y039543D03* Y039857D03* Y040172D03* X038385D03* Y039857D03* Y039543D03* Y039228D03* X039015Y041728D03* Y042043D03* Y042357D03* Y042672D03* X038385D03* Y042357D03* Y042043D03* Y041728D03* X039015Y044528D03* Y044843D03* Y045157D03* Y045472D03* X038385D03* Y045157D03* Y044843D03* Y044528D03* G54D72* X031161Y051122D03* X031476D03* X031791D03* X032106D03* Y051752D03* X031791D03* X031476D03* X031161D03* X034567D03* X034252D03* X033937D03* X033622D03* Y051122D03* X033937D03* X034252D03* X034567D03* X030866Y048071D03* X031181D03* X031496D03* X031811D03* Y048701D03* X031496D03* X031181D03* X030866D03* G54D27* X031115Y044128D03* Y044443D03* Y044757D03* Y045072D03* X030485D03* Y044757D03* Y044443D03* Y044128D03* X031115Y041628D03* Y041943D03* Y042257D03* Y042572D03* X030485D03* Y042257D03* Y041943D03* Y041628D03* X031115Y036728D03* Y037043D03* Y037357D03* Y037672D03* X030485D03* Y037357D03* Y037043D03* Y036728D03* X020215Y039328D03* Y039643D03* Y039957D03* Y040272D03* X019585D03* Y039957D03* Y039643D03* Y039328D03* X020215Y036728D03* Y037043D03* Y037357D03* Y037672D03* X019585D03* Y037357D03* Y037043D03* Y036728D03* G54D72* X024823Y055D03* X024508D03* X024193D03* X023878D03* Y05437D03* X024193D03* X024508D03* X024823D03* X026299Y055D03* X025984D03* X025669D03* X025354D03* Y05437D03* X025669D03* X025984D03* X026299D03* G54D27* X020215Y044628D03* Y044943D03* Y045257D03* Y045572D03* X019585D03* Y045257D03* Y044943D03* Y044628D03* G54D72* X022795Y048661D03* X02311D03* X023425D03* X02374D03* Y049291D03* X023425D03* X02311D03* X022795D03* G54D27* X020215Y041728D03* Y042043D03* Y042357D03* Y042672D03* X019585D03* Y042357D03* Y042043D03* Y041728D03* G54D72* X020709Y02185D03* X020394D03* X020079D03* X019764D03* Y02122D03* X020079D03* X020394D03* X020709D03* G54D40* X079528Y065157D03* X07874Y065551D03* Y064764D03* X081447Y047795D03* X082018D03* X076309Y054291D03* X075738D03* X077884Y049961D03* X077313D03* X076506Y049016D03* X075935D03* X076506Y049488D03* X075935D03* X076506Y049961D03* X075935D03* X094124Y052047D03* X094695D03* G54D41* X094823Y021919D03* Y02249D03* X09502Y032529D03* Y031959D03* G54D40* X096815Y0149D03* X097385D03* G54D41* X096024Y015994D03* Y015423D03* G54D40* X092685Y0135D03* X092115D03* X094833Y020728D03* X095403D03* X094282Y017598D03* X094852D03* G54D41* X09689Y051535D03* X097283Y052323D03* X096496D03* X101693Y064764D03* X102087Y065551D03* X101299D03* G54D40* X10251Y063819D03* X103081D03* G54D41* X102795Y06248D03* X102402Y061693D03* X103189D03* X104764Y063071D03* X105157Y063858D03* X10437D03* G54D40* X104961Y051339D03* X104173Y051732D03* Y050945D03* X104961Y053701D03* X104173Y054094D03* Y053307D03* X102717Y052717D03* X103504Y052323D03* Y05311D03* X104262Y049764D03* X103691D03* G54D41* X104921Y03438D03* Y033809D03* G54D40* X098967Y032244D03* X099537D03* G54D41* X099055Y015975D03* Y016545D03* X098071Y016604D03* Y017175D03* X086063Y04937D03* X085669Y048583D03* X086457D03* G54D40* X08438Y047795D03* X083809D03* G54D41* X08626Y021132D03* Y021703D03* X085472Y019951D03* Y020521D03* X087008Y017195D03* Y017766D03* G54D40* X085679Y01315D03* X08625D03* X087529D03* X086959D03* X087293Y016417D03* X086723D03* X089793Y050787D03* X090364D03* X089793Y050276D03* X090364D03* X088534Y046614D03* X089104D03* G54D41* X08626Y06129D03* Y06186D03* X088386Y056112D03* Y055541D03* G54D40* X087214Y057283D03* X086644D03* X087214Y059331D03* X086644D03* X091604Y057283D03* X092175D03* G54D41* X090433Y060502D03* Y061073D03* X092677Y055364D03* Y054793D03* G54D40* X091604Y059331D03* X092175D03* X089104Y047205D03* X088534D03* G54D41* X092008Y015285D03* Y014715D03* X091063Y015285D03* Y014715D03* X0929Y015285D03* Y014715D03* G54D40* X089006Y016398D03* X088435D03* G54D41* X091811Y050266D03* Y050836D03* X0938Y015285D03* Y014715D03* X092677Y06125D03* Y061821D03* X088228Y01316D03* Y01373D03* X090433Y056112D03* Y055541D03* X087835Y064872D03* Y065443D03* X088386Y060502D03* Y061073D03* G54D40* X082549Y063307D03* X08312D03* X083715Y0531D03* X084285D03* X084498Y01315D03* X085069D03* G54D41* X08252Y01562D03* Y016191D03* G54D40* X083396Y020433D03* X082825D03* X082214Y050945D03* X081644D03* G54D41* X085669Y045718D03* Y045148D03* X08626Y017766D03* Y017195D03* X086142Y055364D03* Y054793D03* X08252Y014616D03* Y014045D03* X082598Y026624D03* Y026053D03* G54D40* X048101Y03374D03* X048671D03* G54D41* X046378Y031388D03* Y030817D03* G54D40* X043829Y056654D03* X043258D03* X046191Y059409D03* X04562D03* X046191Y061575D03* X04562D03* X046191Y058031D03* X04562D03* X042647Y056654D03* X042077D03* G54D41* X044921Y055955D03* Y055384D03* X045512Y055955D03* Y055384D03* G54D40* X062805Y066575D03* X062234D03* X060167Y043268D03* X059597D03* G54D41* X063622Y065994D03* Y065423D03* G54D40* X062234Y067087D03* X062805D03* X060167Y045039D03* X059597D03* X060167Y047008D03* X059597D03* X060364Y053307D03* X059793D03* G54D41* X064016Y041584D03* Y041014D03* G54D40* X063199Y016693D03* X062628D03* X062615Y0154D03* X063185D03* X061285D03* X060715D03* X06125Y025945D03* X060679D03* X06125Y025453D03* X060679D03* X06125Y026437D03* X060679D03* X06125Y024272D03* X060679D03* G54D41* X070512Y057156D03* Y057726D03* X074055Y021723D03* Y022293D03* X073661Y057156D03* Y057726D03* G54D40* X075738Y054882D03* X076309D03* G54D41* X077402Y048868D03* Y048297D03* X072087Y057156D03* Y057726D03* X066378Y020915D03* Y020345D03* X065591Y057156D03* Y057726D03* X066693Y049872D03* Y050443D03* X066181Y04749D03* Y046919D03* X067756D03* Y04749D03* X069606Y048868D03* Y048297D03* X068543Y057156D03* Y057726D03* X067362Y057156D03* Y057726D03* X068543Y020345D03* Y020915D03* X065394Y052214D03* Y051644D03* G54D40* X064606Y064921D03* X065394Y064528D03* Y065315D03* G54D41* X05437Y023474D03* Y022904D03* X055551Y029183D03* Y028612D03* X054961Y029183D03* Y028612D03* G54D40* X051584Y026535D03* X051014D03* G54D41* X054213Y059321D03* Y059892D03* X052677Y059321D03* Y059892D03* G54D40* X054104Y015079D03* X053534D03* G54D41* X054764Y049144D03* Y048573D03* G54D40* X051899Y051535D03* X051329D03* X055384Y048858D03* X055955D03* X055384Y051929D03* X055955D03* G54D41* X052992Y055069D03* Y05564D03* G54D40* X053101Y064331D03* X053671D03* X053504Y015984D03* X054291Y015591D03* Y016378D03* G54D41* X056732Y066496D03* X057126Y067283D03* X056339D03* G54D40* X058199Y066791D03* X057628D03* X060699Y016693D03* X06127D03* X056821Y028307D03* X05625D03* G54D41* X059587Y020738D03* Y021309D03* X058799Y02123D03* Y021801D03* G54D40* X05812Y028406D03* X058691D03* X0594Y02811D03* X05997D03* G54D41* X057815Y02123D03* Y021801D03* X060177Y020738D03* Y021309D03* X055551Y059321D03* Y059892D03* X056634Y018868D03* Y019439D03* X057126Y020049D03* Y02062D03* X056634Y02123D03* Y021801D03* X049843Y028789D03* Y028219D03* G54D40* X048356Y026535D03* X047786D03* X049164Y026575D03* X049734D03* X049164Y026142D03* X049734D03* G54D41* X049252Y027038D03* Y027608D03* X04874Y029597D03* Y030167D03* X04937Y030817D03* Y031388D03* G54D40* X050148Y032205D03* X050718D03* X048356Y037362D03* X047786D03* X048356Y036575D03* X047786D03* G54D41* X05122Y059321D03* Y059892D03* X046378Y029597D03* Y030167D03* X049252Y025679D03* Y025108D03* G54D40* X026309Y065315D03* X025738D03* X027096Y064134D03* X026526D03* X028671Y065315D03* X028101D03* X025515Y05866D03* X024945D03* X028573Y064134D03* X029144D03* X030625Y05868D03* X030055D03* G54D41* X030354Y055955D03* Y055384D03* X029764Y055955D03* Y055384D03* X028976Y055955D03* Y055384D03* X028386Y055955D03* Y055384D03* X028583Y052608D03* Y052038D03* G54D40* X025364Y053543D03* X024793D03* G54D41* X028189Y02564D03* Y025069D03* G54D40* X028691Y02811D03* X029262D03* X039321Y026142D03* X039892D03* X040305Y032205D03* X040876D03* G54D41* X036535Y029597D03* Y030167D03* G54D40* X037156Y064921D03* X037726D03* X03814Y057539D03* X03871D03* X03814Y060689D03* X03871D03* G54D41* X039409Y025679D03* Y025108D03* G54D40* X035561Y050157D03* X03499D03* G54D41* X038327Y055955D03* Y055384D03* X038917Y055955D03* Y055384D03* X04Y028789D03* Y028219D03* G54D40* X039321Y026575D03* X039892D03* X038514Y026535D03* X037943D03* G54D41* X042362Y055955D03* Y055384D03* X041772Y055955D03* Y055384D03* G54D40* X042786Y053386D03* X043356D03* X042786Y050157D03* X043356D03* G54D41* X040787Y064025D03* Y063455D03* G54D40* X040285Y056654D03* X039715D03* G54D41* X039528Y030817D03* Y031388D03* G54D40* X041742Y026535D03* X041171D03* G54D41* X04374Y055955D03* Y055384D03* X044331Y055955D03* Y055384D03* X039409Y027038D03* Y027608D03* X038898Y029597D03* Y030167D03* X040098Y055955D03* Y055384D03* X040689Y055955D03* Y055384D03* G54D40* X033789Y065315D03* X033219D03* X033789Y059803D03* X033219D03* G54D41* X034094Y052707D03* Y052136D03* X033406Y052707D03* Y052136D03* X032323Y052707D03* Y052136D03* G54D40* X031033Y053386D03* X030463D03* G54D41* X032126Y027431D03* Y028002D03* Y024852D03* Y024282D03* X036535Y031388D03* Y030817D03* X034783Y052707D03* Y052136D03* X030945Y052707D03* Y052136D03* X031634Y052707D03* Y052136D03* X024055Y055955D03* Y055384D03* X024646Y055955D03* Y055384D03* X025531Y055955D03* Y055384D03* X026122Y055955D03* Y055384D03* G54D40* X017471Y065906D03* X018041D03* X019045Y060591D03* X019616D03* X025502Y050157D03* X026073D03* G54D41* X024843Y052608D03* Y052038D03* G54D40* X019045Y055472D03* X019616D03* G54D41* X018543Y044931D03* Y04436D03* Y043159D03* Y042589D03* Y03373D03* Y034301D03* Y03688D03* Y037451D03* G54D39* X078189Y058337D03* Y058907D03* G54D38* X077687Y054291D03* X077116D03* X077313Y024409D03* X077884D03* X077313Y023465D03* X077884D03* X077313Y022992D03* X077884D03* X077313Y023937D03* X077884D03* X077687Y054882D03* X077116D03* X097431Y065472D03* X098002D03* G54D39* X095118Y064872D03* Y065443D03* G54D38* X094025Y045827D03* X093455D03* G54D39* X095315Y02249D03* Y021919D03* X093346Y036486D03* Y037057D03* G54D38* X096014Y041496D03* X096584D03* G54D39* X096142Y011466D03* Y010896D03* X094921Y050836D03* Y050266D03* G54D38* X098179Y017598D03* X09875D03* X096821D03* X09625D03* G54D39* X100827Y053199D03* Y052628D03* Y054577D03* Y054006D03* X105354Y055384D03* Y055955D03* X102205D03* Y055384D03* X105354Y057825D03* Y058396D03* X102205Y057825D03* Y058396D03* G54D38* X10251Y06311D03* X103081D03* G54D39* X099488Y064872D03* Y065443D03* G54D38* X098632Y065472D03* X098061D03* G54D39* X102638Y065443D03* Y064872D03* X100748D03* Y065443D03* X103976D03* Y064872D03* X103307Y065443D03* Y064872D03* X104646Y065443D03* Y064872D03* X105315D03* Y065443D03* X105039Y061841D03* Y062411D03* X104488Y061841D03* Y062411D03* X095945Y064872D03* Y065443D03* X103976Y047293D03* Y046723D03* X103504Y047293D03* Y046723D03* X102008Y052628D03* Y053199D03* X101417Y054006D03* Y054577D03* Y052628D03* Y053199D03* G54D38* X097175Y052913D03* X096604D03* G54D39* X10542Y026675D03* Y027245D03* X096201Y031959D03* Y032529D03* G54D38* X099557Y012362D03* X100128D03* X099557Y011181D03* X100128D03* X10188Y018071D03* X102451D03* X099557Y012953D03* X100128D03* X099557Y011772D03* X100128D03* G54D39* X085472Y021132D03* Y021703D03* G54D38* X08871Y040709D03* X08814D03* G54D39* X085748Y064872D03* Y065443D03* X08685Y06129D03* Y06186D03* G54D38* X089104Y047795D03* X088534D03* G54D39* X092559Y024065D03* Y023494D03* Y023474D03* Y022904D03* G54D38* X090384Y049843D03* X090955D03* G54D39* X091378Y050836D03* Y050266D03* X093071Y034498D03* Y033927D03* X093839Y037057D03* Y036486D03* X094488Y065443D03* Y064872D03* X093622Y034498D03* Y033927D03* G54D38* X082549Y058661D03* X08312D03* X082549Y05815D03* X08312D03* X082549Y057126D03* X08312D03* X082549Y057638D03* X08312D03* Y060709D03* X082549D03* Y059685D03* X08312D03* X082549Y060197D03* X08312D03* X082549Y059173D03* X08312D03* X082549Y053937D03* X08312D03* X083199Y047795D03* X082628D03* Y047283D03* X083199D03* G54D39* X083071Y026624D03* Y026053D03* X081535Y014045D03* Y014616D03* X084685Y021132D03* Y021703D03* Y019951D03* Y020521D03* X086063Y026821D03* Y02625D03* X085472Y047293D03* Y046723D03* X08498Y010699D03* Y01127D03* X080551Y046723D03* Y047293D03* X081142Y051053D03* Y051624D03* X045512Y033907D03* Y033337D03* X046594Y033907D03* Y033337D03* G54D38* X045836Y028898D03* X045266D03* X046191Y062165D03* X04562D03* X046191Y058819D03* X04562D03* G54D39* X047087Y049262D03* Y048691D03* G54D38* X061959Y065118D03* X062529D03* Y066102D03* X061959D03* Y06561D03* X062529D03* G54D39* X064016Y063041D03* Y062471D03* Y061466D03* Y060896D03* G54D38* X063925Y04759D03* X063355D03* G54D39* X064606Y02249D03* Y021919D03* X06189Y015738D03* Y016309D03* G54D38* X060167Y021811D03* X059597D03* G54D39* X069134Y058337D03* Y058907D03* X069528Y020345D03* Y020915D03* X070315Y020345D03* Y020915D03* X070906D03* Y020345D03* X070512Y021919D03* Y02249D03* X069528Y021329D03* Y021899D03* G54D38* X07377Y059173D03* X07434D03* X07377Y058701D03* X07434D03* X07377Y059646D03* X07434D03* X07377Y058228D03* X07434D03* G54D39* X072638Y064872D03* Y065443D03* X074094D03* Y064872D03* X073268Y03688D03* Y037451D03* X074724Y064872D03* Y065443D03* X072677Y03688D03* Y037451D03* X074055Y014045D03* Y014616D03* X07563Y022293D03* Y021723D03* X073858Y03688D03* Y037451D03* X07248Y027038D03* Y027608D03* X074843Y014045D03* Y014616D03* Y021723D03* Y022293D03* X07563Y024754D03* Y025325D03* X07622Y024754D03* Y025325D03* X076024Y03688D03* Y037451D03* X075354Y064872D03* Y065443D03* X076614Y03688D03* Y037451D03* X073268Y065443D03* Y064872D03* X071299Y027038D03* Y027608D03* X071496Y020345D03* Y020915D03* X072087Y03688D03* Y037451D03* X07189Y064872D03* Y065443D03* X065669Y015738D03* Y016309D03* X066969Y04749D03* Y046919D03* X066181Y052214D03* Y051644D03* X065394Y046919D03* Y04749D03* X067835Y027038D03* Y027608D03* X069055Y065443D03* Y064872D03* Y067214D03* Y066644D03* X067362Y014045D03* Y014616D03* X069134Y057726D03* Y057156D03* X069331Y04749D03* Y046919D03* X068543D03* Y04749D03* Y03627D03* Y035699D03* X066969Y020345D03* Y020915D03* X068976Y027608D03* Y027038D03* X069724Y057726D03* Y057156D03* X066969Y051644D03* Y052214D03* X055157Y066092D03* Y065522D03* G54D38* X054971Y02811D03* X055541D03* X055463Y030472D03* X056033D03* G54D39* X053091Y065522D03* Y066092D03* G54D38* X054104Y014567D03* X053534D03* G54D39* X054921Y067175D03* Y066604D03* G54D38* X059597Y043858D03* X060167D03* X059597Y044449D03* X060167D03* X059793Y051732D03* X060364D03* X058199Y066299D03* X057628D03* X055955Y050945D03* X055384D03* X059793Y052323D03* X060364D03* X060679Y022992D03* X06125D03* X060679Y024961D03* X06125D03* X060715Y0162D03* X061285D03* G54D39* X060669Y02751D03* Y026939D03* X060079Y015738D03* Y016309D03* X054567Y065522D03* Y066092D03* X055945D03* Y065522D03* X057224Y02123D03* Y021801D03* X056634Y020049D03* Y02062D03* X050039Y065522D03* Y066092D03* X049843Y022116D03* Y022687D03* X049252Y024085D03* Y024655D03* G54D38* X049785Y0433D03* X049215D03* G54D39* X051516Y065522D03* Y066092D03* X049055Y022687D03* Y022116D03* X047008Y061565D03* Y062136D03* X04752D03* Y061565D03* X028386Y048671D03* Y048101D03* X030354Y048671D03* Y048101D03* X030039Y052018D03* Y051447D03* X030512Y052018D03* Y051447D03* G54D38* X035994Y028898D03* X035423D03* G54D39* X039213Y022687D03* Y022116D03* G54D38* X038415Y0351D03* X038985D03* G54D39* X039016Y048671D03* Y048101D03* X040984Y048671D03* Y048101D03* X042165Y067175D03* Y066604D03* X041378Y064025D03* Y063455D03* X04Y022116D03* Y022687D03* X040098Y040916D03* Y041486D03* X043445Y033907D03* Y033337D03* X039409Y024085D03* Y024655D03* X040197Y064025D03* Y063455D03* X032323Y048671D03* Y048101D03* X032618Y051722D03* Y051152D03* X03311Y051722D03* Y051152D03* X036654Y067175D03* Y066604D03* X036063Y067175D03* Y066604D03* X037047Y048671D03* Y048101D03* X035079Y051722D03* Y051152D03* G54D38* X019045Y057835D03* X019616D03* X019045Y058425D03* X019616D03* X019045Y05661D03* X019615D03* X019055Y05606D03* X019625D03* X019616Y059016D03* X019045D03* X019616Y057244D03* X019045D03* G54D39* X022283Y049262D03* Y048691D03* X026811Y052018D03* Y051447D03* X024409Y052018D03* Y051447D03* X025276Y052018D03* Y051447D03* G54D38* X019615Y0351D03* X020185D03* G54D53* X078351Y025551D03* X07724D03* Y026417D03* X078351D03* Y034213D03* X07724D03* Y033346D03* X078351D03* Y03248D03* X07724D03* Y031614D03* X078351D03* Y030748D03* X07724D03* X079729Y047598D03* X078618D03* X079729Y050354D03* X078618D03* X07724Y029882D03* X078351D03* Y029016D03* X07724D03* Y02815D03* X078351D03* Y027283D03* X07724D03* X096166Y033228D03* X095055D03* G54D52* X099843Y061964D03* Y063075D03* X100866Y061964D03* Y063075D03* X097717Y061964D03* Y063075D03* X096693Y061964D03* Y063075D03* G54D53* X100398Y033228D03* X099287D03* X086973Y038976D03* X085862D03* G54D52* X087913Y028854D03* Y029965D03* G54D53* X082878Y051732D03* X081767D03* X044296Y036181D03* X043185D03* X044059Y028701D03* X042948D03* X047476Y028661D03* X048587D03* X046756Y060098D03* X045645D03* X046756Y060886D03* X045645D03* X044059Y027717D03* X042948D03* X062996Y025354D03* X061885D03* Y02622D03* X062996D03* Y027087D03* X061885D03* Y027953D03* X062996D03* Y028819D03* X061885D03* Y029685D03* X062996D03* Y030551D03* X061885D03* Y031417D03* X062996D03* Y032283D03* X061885D03* Y03315D03* X062996D03* Y034016D03* X061885D03* Y034882D03* X062996D03* X063193Y063543D03* X062082D03* X053902Y027717D03* X052791D03* X053902Y028701D03* X052791D03* X054799Y020827D03* X05591D03* X037574Y059311D03* X038685D03* X037594Y028661D03* X038705D03* X040429Y034882D03* X04154D03* X041441Y036181D03* X04033D03* G54D30* X092303Y036398D03* X092559D03* X092815D03* Y037146D03* X092559D03* X092303D03* G54D73* X105335Y046713D03* Y046969D03* Y047224D03* X104587D03* Y046969D03* Y046713D03* G54D32* X08686Y025354D03* X086604D03* X086348D03* X086093D03* X085837D03* X085581D03* X085325D03* X085069D03* X084813D03* X084557D03* X084301D03* X084045D03* X083789D03* X083533D03* X083278D03* X083022D03* X082766D03* X08251D03* Y022598D03* X082766D03* X083022D03* X083278D03* X083533D03* X083789D03* X084045D03* X084301D03* X084557D03* X084813D03* X085069D03* X085325D03* X085581D03* X085837D03* X086093D03* X086348D03* X086604D03* X08686D03* G54D30* X093602Y035768D03* X093346D03* X093091D03* Y03502D03* X093346D03* X093602D03* G54D65* X09189Y065541D03* Y065285D03* Y06503D03* Y064774D03* X093543D03* Y06503D03* Y065285D03* Y065541D03* X07622D03* Y065285D03* Y06503D03* Y064774D03* X077874D03* Y06503D03* Y065285D03* Y065541D03* X077244Y058435D03* Y058691D03* Y058947D03* Y059203D03* X075591D03* Y058947D03* Y058691D03* Y058435D03* G54D64* X077126Y022382D03* Y021634D03* X078071D03* Y022008D03* Y022382D03* G54D32* X055195Y03148D03* X055451D03* X055707D03* X055963D03* Y033134D03* X055707D03* X055451D03* X055195D03* G54D65* X061142Y063887D03* Y064137D03* Y064387D03* Y064637D03* Y064887D03* Y065137D03* Y065387D03* Y065637D03* Y065887D03* Y066137D03* Y066387D03* Y066637D03* Y066887D03* Y067137D03* X059016D03* Y066887D03* Y066637D03* Y066387D03* Y066137D03* Y065887D03* Y065637D03* Y065387D03* Y065137D03* Y064887D03* Y064637D03* Y064387D03* Y064137D03* Y063887D03* G54D30* X040354Y040394D03* X040098D03* X039843D03* Y039646D03* X040098D03* X040354D03* G54D50* X07878Y021634D03* Y022382D03* G54D51* X093366Y045236D03* X094114D03* X102422Y061063D03* X103169D03* X10439D03* X105137D03* X104193Y05252D03* X104941D03* G54D50* X087717Y026909D03* Y026162D03* X08685Y026909D03* Y026162D03* G54D51* X086752Y020039D03* X0875D03* X086752Y019173D03* X0875D03* G54D50* X084882Y02683D03* Y026083D03* X08626Y050728D03* Y049981D03* G54D51* X04313Y036969D03* X042382D03* X06254Y016063D03* X063287D03* X062815Y064488D03* X062067D03* G54D50* X073268Y021634D03* Y022382D03* X076417Y021634D03* Y022382D03* X057559Y015532D03* Y016279D03* X056732Y065138D03* Y065886D03* G54D51* X040315Y036969D03* X041063D03* G54D66* X096476Y009882D03* X097697D03* X099232D03* X100453D03* X085059D03* X08628D03* G54D13* X040672Y075712D02* G01X041205Y076423D01* X04076Y075712D02* G01X040672Y075801D01* X041116Y075712D02* G01X04076D01* X041205Y075801D02* G01X041116Y075712D01* X041205Y076334D02* G01Y075801D01* X041116Y076423D02* G01X041205Y076334D01* X04076Y076423D02* G01X041116D01* X040672Y076334D02* G01X04076Y076423D01* X040672Y075801D02* G01Y076334D01* X040405Y076067D02* G01X040494Y076156D01* X040049Y076067D02* G01X040405D01* X03996Y076156D02* G01X040049Y076067D01* X03996Y076334D02* G01Y076156D01* X040049Y076423D02* G01X03996Y076334D01* X040405Y076423D02* G01X040049D01* X040494Y076334D02* G01X040405Y076423D01* X040494Y075801D02* G01Y076334D01* X040405Y075712D02* G01X040494Y075801D01* X040049Y075712D02* G01X040405D01* X03996Y075801D02* G01X040049Y075712D01* X039249Y076067D02* G01X039783D01* X038538Y075712D02* G01X039072Y076423D01* X038627Y075712D02* G01X038538Y075801D01* X038983Y075712D02* G01X038627D01* X039072Y075801D02* G01X038983Y075712D01* X039072Y076334D02* G01Y075801D01* X038983Y076423D02* G01X039072Y076334D01* X038627Y076423D02* G01X038983D01* X038538Y076334D02* G01X038627Y076423D01* X038538Y075801D02* G01Y076334D01* X038272Y076067D02* G01X03836Y076156D01* X037916Y076067D02* G01X038272D01* X037827Y076156D02* G01X037916Y076067D01* X037827Y076334D02* G01Y076156D01* X037916Y076423D02* G01X037827Y076334D01* X038272Y076423D02* G01X037916D01* X03836Y076334D02* G01X038272Y076423D01* X03836Y075801D02* G01Y076334D01* X038272Y075712D02* G01X03836Y075801D01* X037916Y075712D02* G01X038272D01* X037827Y075801D02* G01X037916Y075712D01* X037649Y076156D02* G01X03756Y076067D01* X037649Y076334D02* G01Y076156D01* X03756Y076423D02* G01X037649Y076334D01* X037205Y076423D02* G01X03756D01* X037116Y076334D02* G01X037205Y076423D01* X037116Y076156D02* G01Y076334D01* X037205Y076067D02* G01X037116Y076156D01* X03756Y076067D02* G01X037205D01* X037649Y075978D02* G01X03756Y076067D01* X037649Y075801D02* G01Y075978D01* X03756Y075712D02* G01X037649Y075801D01* X037205Y075712D02* G01X03756D01* X037116Y075801D02* G01X037205Y075712D01* X037116Y075978D02* G01Y075801D01* X037205Y076067D02* G01X037116Y075978D01* X036494Y076067D02* G01X036405Y075978D01* X036849Y076067D02* G01X036494D01* X036938Y075978D02* G01X036849Y076067D01* X036938Y075801D02* G01Y075978D01* X036849Y075712D02* G01X036938Y075801D01* X036494Y075712D02* G01X036849D01* X036405Y075801D02* G01X036494Y075712D01* X036405Y076334D02* G01Y075801D01* X036494Y076423D02* G01X036405Y076334D01* X036849Y076423D02* G01X036494D01* X036938Y076334D02* G01X036849Y076423D01* X035694Y075712D02* G01X036227Y076423D01* X035249D02* G01X035072Y076245D01* X035249Y075712D02* G01Y076423D01* X034983Y075712D02* G01X035516D01* X034805Y076156D02* G01X034716Y076067D01* X034805Y076334D02* G01Y076156D01* X034716Y076423D02* G01X034805Y076334D01* X03436Y076423D02* G01X034716D01* X034272Y076334D02* G01X03436Y076423D01* X034272Y076156D02* G01Y076334D01* X03436Y076067D02* G01X034272Y076156D01* X034716Y076067D02* G01X03436D01* X034805Y075978D02* G01X034716Y076067D01* X034805Y075801D02* G01Y075978D01* X034716Y075712D02* G01X034805Y075801D01* X03436Y075712D02* G01X034716D01* X034272Y075801D02* G01X03436Y075712D01* X034272Y075978D02* G01Y075801D01* X03436Y076067D02* G01X034272Y075978D01* X033738Y076067D02* G01X033916D01* X033649Y075712D02* G01X03356Y075801D01* X034005Y075712D02* G01X033649D01* X034094Y075801D02* G01X034005Y075712D01* X034094Y075978D02* G01Y075801D01* X033916Y076067D02* G01X034094Y075978D01* Y076156D02* G01X033916Y076067D01* X034094Y076334D02* G01Y076156D01* X034005Y076423D02* G01X034094Y076334D01* X033649Y076423D02* G01X034005D01* X03356Y076334D02* G01X033649Y076423D01* X032849Y075712D02* G01X033383D01* X032849Y075801D02* G01Y075712D01* X033294Y076067D02* G01X032849Y075801D01* X033383Y076156D02* G01X033294Y076067D01* X033383Y076334D02* G01Y076156D01* X033294Y076423D02* G01X033383Y076334D01* X032938Y076423D02* G01X033294D01* X032849Y076334D02* G01X032938Y076423D01* X032138Y075712D02* G01X032672Y076423D01* X032227Y075712D02* G01X032138Y075801D01* X032583Y075712D02* G01X032227D01* X032672Y075801D02* G01X032583Y075712D01* X032672Y076334D02* G01Y075801D01* X032583Y076423D02* G01X032672Y076334D01* X032227Y076423D02* G01X032583D01* X032138Y076334D02* G01X032227Y076423D01* X032138Y075801D02* G01Y076334D01* X030005Y076156D02* G01X030449Y075712D01* X030005D02* G01X030449Y076156D01* X029383Y075978D02* G01X029738D01* X029294Y07589D02* G01X029383Y075978D01* X029294Y075801D02* G01Y07589D01* X029383Y075712D02* G01X029294Y075801D01* X029738Y075712D02* G01X029383D01* X029738Y076067D02* G01Y075712D01* X029649Y076156D02* G01X029738Y076067D01* X029383Y076156D02* G01X029649D01* X028583Y076067D02* G01X028938D01* X028583Y076423D02* G01X029116D01* X028583Y075712D02* G01Y076423D01* X03996Y076912D02* G01X040494Y077623D01* X040049Y076912D02* G01X03996Y077001D01* X040405Y076912D02* G01X040049D01* X040494Y077001D02* G01X040405Y076912D01* X040494Y077534D02* G01Y077001D01* X040405Y077623D02* G01X040494Y077534D01* X040049Y077623D02* G01X040405D01* X03996Y077534D02* G01X040049Y077623D01* X03996Y077001D02* G01Y077534D01* X039249Y077267D02* G01X039783D01* X038538Y076912D02* G01X039072Y077623D01* X038627Y076912D02* G01X038538Y077001D01* X038983Y076912D02* G01X038627D01* X039072Y077001D02* G01X038983Y076912D01* X039072Y077534D02* G01Y077001D01* X038983Y077623D02* G01X039072Y077534D01* X038627Y077623D02* G01X038983D01* X038538Y077534D02* G01X038627Y077623D01* X038538Y077001D02* G01Y077534D01* X038272Y077267D02* G01X03836Y077356D01* X037916Y077267D02* G01X038272D01* X037827Y077356D02* G01X037916Y077267D01* X037827Y077534D02* G01Y077356D01* X037916Y077623D02* G01X037827Y077534D01* X038272Y077623D02* G01X037916D01* X03836Y077534D02* G01X038272Y077623D01* X03836Y077001D02* G01Y077534D01* X038272Y076912D02* G01X03836Y077001D01* X037916Y076912D02* G01X038272D01* X037827Y077001D02* G01X037916Y076912D01* X037649Y077356D02* G01X03756Y077267D01* X037649Y077534D02* G01Y077356D01* X03756Y077623D02* G01X037649Y077534D01* X037205Y077623D02* G01X03756D01* X037116Y077534D02* G01X037205Y077623D01* X037116Y077356D02* G01Y077534D01* X037205Y077267D02* G01X037116Y077356D01* X03756Y077267D02* G01X037205D01* X037649Y077178D02* G01X03756Y077267D01* X037649Y077001D02* G01Y077178D01* X03756Y076912D02* G01X037649Y077001D01* X037205Y076912D02* G01X03756D01* X037116Y077001D02* G01X037205Y076912D01* X037116Y077178D02* G01Y077001D01* X037205Y077267D02* G01X037116Y077178D01* X036494Y077267D02* G01X036405Y077178D01* X036849Y077267D02* G01X036494D01* X036938Y077178D02* G01X036849Y077267D01* X036938Y077001D02* G01Y077178D01* X036849Y076912D02* G01X036938Y077001D01* X036494Y076912D02* G01X036849D01* X036405Y077001D02* G01X036494Y076912D01* X036405Y077534D02* G01Y077001D01* X036494Y077623D02* G01X036405Y077534D01* X036849Y077623D02* G01X036494D01* X036938Y077534D02* G01X036849Y077623D01* X035694Y076912D02* G01X036227Y077623D01* X035249D02* G01X035072Y077445D01* X035249Y076912D02* G01Y077623D01* X034983Y076912D02* G01X035516D01* X034805Y077356D02* G01X034716Y077267D01* X034805Y077534D02* G01Y077356D01* X034716Y077623D02* G01X034805Y077534D01* X03436Y077623D02* G01X034716D01* X034272Y077534D02* G01X03436Y077623D01* X034272Y077356D02* G01Y077534D01* X03436Y077267D02* G01X034272Y077356D01* X034716Y077267D02* G01X03436D01* X034805Y077178D02* G01X034716Y077267D01* X034805Y077001D02* G01Y077178D01* X034716Y076912D02* G01X034805Y077001D01* X03436Y076912D02* G01X034716D01* X034272Y077001D02* G01X03436Y076912D01* X034272Y077178D02* G01Y077001D01* X03436Y077267D02* G01X034272Y077178D01* X033738Y077267D02* G01X033916D01* X033649Y076912D02* G01X03356Y077001D01* X034005Y076912D02* G01X033649D01* X034094Y077001D02* G01X034005Y076912D01* X034094Y077178D02* G01Y077001D01* X033916Y077267D02* G01X034094Y077178D01* Y077356D02* G01X033916Y077267D01* X034094Y077534D02* G01Y077356D01* X034005Y077623D02* G01X034094Y077534D01* X033649Y077623D02* G01X034005D01* X03356Y077534D02* G01X033649Y077623D01* X032849Y076912D02* G01X033383D01* X032849Y077001D02* G01Y076912D01* X033294Y077267D02* G01X032849Y077001D01* X033383Y077356D02* G01X033294Y077267D01* X033383Y077534D02* G01Y077356D01* X033294Y077623D02* G01X033383Y077534D01* X032938Y077623D02* G01X033294D01* X032849Y077534D02* G01X032938Y077623D01* X032138Y076912D02* G01X032672Y077623D01* X032227Y076912D02* G01X032138Y077001D01* X032583Y076912D02* G01X032227D01* X032672Y077001D02* G01X032583Y076912D01* X032672Y077534D02* G01Y077001D01* X032583Y077623D02* G01X032672Y077534D01* X032227Y077623D02* G01X032583D01* X032138Y077534D02* G01X032227Y077623D01* X032138Y077001D02* G01Y077534D01* X031072Y077001D02* G01X030983Y076912D01* Y07709D02* G01X031072Y077001D01* X030894D02* G01X030983Y07709D01* Y076912D02* G01X030894Y077001D01* X030272Y077623D02* G01X030183D01* X030272Y076912D02* G01Y077623D01* X030183Y076912D02* G01X03036D01* X029383D02* G01X029738D01* X029294Y077001D02* G01X029383Y076912D01* X029294Y077267D02* G01Y077001D01* X029383Y077356D02* G01X029294Y077267D01* X029649Y077356D02* G01X029383D01* X029738Y077267D02* G01X029649Y077356D01* X029738Y077178D02* G01Y077267D01* X029649Y07709D02* G01X029738Y077178D01* X029294Y07709D02* G01X029649D01* X028849Y077623D02* G01Y076912D01* X028583Y077623D02* G01X029116D01* X035516Y078467D02* G01Y078112D01* X035427Y078556D02* G01X035516Y078467D01* X035338Y078556D02* G01X035427D01* X035249Y078467D02* G01X035338Y078556D01* X035249Y078467D02* G01Y078112D01* X03516Y078556D02* G01X035249Y078467D01* X035072Y078556D02* G01X03516D01* X034983Y078467D02* G01X035072Y078556D01* X034983Y078112D02* G01Y078556D01* X034805Y078467D02* G01Y078112D01* X034716Y078556D02* G01X034805Y078467D01* X034627Y078556D02* G01X034716D01* X034538Y078467D02* G01X034627Y078556D01* X034538Y078467D02* G01Y078112D01* X034449Y078556D02* G01X034538Y078467D01* X03436Y078556D02* G01X034449D01* X034272Y078467D02* G01X03436Y078556D01* X034272Y078112D02* G01Y078556D01* X033649Y078378D02* G01X034005D01* X03356Y07829D02* G01X033649Y078378D01* X03356Y078201D02* G01Y07829D01* X033649Y078112D02* G01X03356Y078201D01* X034005Y078112D02* G01X033649D01* X034005Y078467D02* G01Y078112D01* X033916Y078556D02* G01X034005Y078467D01* X033649Y078556D02* G01X033916D01* X032849Y078467D02* G01X033383D01* Y078823D02* G01Y078112D01* X032849D02* G01Y078823D01* X031427D02* G01X03196D01* X031427Y078556D02* G01Y078823D01* X031872Y078556D02* G01X031427D01* X03196Y078467D02* G01X031872Y078556D01* X03196Y078201D02* G01Y078467D01* X031872Y078112D02* G01X03196Y078201D01* X031516Y078112D02* G01X031872D01* X031427Y078201D02* G01X031516Y078112D01* X030805Y078467D02* G01X030716Y078378D01* X03116Y078467D02* G01X030805D01* X031249Y078378D02* G01X03116Y078467D01* X031249Y078201D02* G01Y078378D01* X03116Y078112D02* G01X031249Y078201D01* X030805Y078112D02* G01X03116D01* X030716Y078201D02* G01X030805Y078112D01* X030716Y078734D02* G01Y078201D01* X030805Y078823D02* G01X030716Y078734D01* X03116Y078823D02* G01X030805D01* X031249Y078734D02* G01X03116Y078823D01* X030005Y078112D02* G01X030538Y078823D01* X030094Y078112D02* G01X030005Y078201D01* X030449Y078112D02* G01X030094D01* X030538Y078201D02* G01X030449Y078112D01* X030538Y078734D02* G01Y078201D01* X030449Y078823D02* G01X030538Y078734D01* X030094Y078823D02* G01X030449D01* X030005Y078734D02* G01X030094Y078823D01* X030005Y078201D02* G01Y078734D01* X029738Y078467D02* G01X029827Y078556D01* X029383Y078467D02* G01X029738D01* X029294Y078556D02* G01X029383Y078467D01* X029294Y078734D02* G01Y078556D01* X029383Y078823D02* G01X029294Y078734D01* X029738Y078823D02* G01X029383D01* X029827Y078734D02* G01X029738Y078823D01* X029827Y078201D02* G01Y078734D01* X029738Y078112D02* G01X029827Y078201D01* X029383Y078112D02* G01X029738D01* X029294Y078201D02* G01X029383Y078112D01* X028583Y078823D02* G01X029116D01* X028583Y078556D02* G01Y078823D01* X029027Y078556D02* G01X028583D01* X029116Y078467D02* G01X029027Y078556D01* X029116Y078201D02* G01Y078467D01* X029027Y078112D02* G01X029116Y078201D01* X028672Y078112D02* G01X029027D01* X028583Y078201D02* G01X028672Y078112D01* X041827Y080023D02* G01Y079312D01* X041383Y079667D02* G01X041916D01* X041383Y080023D02* G01Y079667D01* X040316Y079401D02* G01X040227Y079312D01* Y07949D02* G01X040316Y079401D01* X040138D02* G01X040227Y07949D01* Y079312D02* G01X040138Y079401D01* X039605Y079756D02* G01X039694Y079667D01* X039338Y079756D02* G01X039605D01* X039249Y079667D02* G01X039338Y079756D01* X039249Y079312D02* G01Y079756D01* X038538D02* G01X038894D01* X038716Y079401D02* G01Y080023D01* X038805Y079312D02* G01X038716Y079401D01* X038894Y079312D02* G01X038805D01* X038983Y079401D02* G01X038894Y079312D01* X038272Y080023D02* G01X03836Y079934D01* X037916Y080023D02* G01X038272D01* X037827Y079934D02* G01X037916Y080023D01* X037827Y079756D02* G01Y079934D01* X037916Y079667D02* G01X037827Y079756D01* X038272Y079667D02* G01X037916D01* X03836Y079578D02* G01X038272Y079667D01* X03836Y079401D02* G01Y079578D01* X038272Y079312D02* G01X03836Y079401D01* X037916Y079312D02* G01X038272D01* X037827Y079401D02* G01X037916Y079312D01* X037116Y079667D02* G01X037649D01* X03676Y079756D02* G01X036849Y079667D01* X036494Y079756D02* G01X03676D01* X036405Y079667D02* G01X036494Y079756D01* Y079578D02* G01X036405Y079667D01* X03676Y079578D02* G01X036494D01* X036849Y07949D02* G01X03676Y079578D01* X036849Y079401D02* G01Y07949D01* X03676Y079312D02* G01X036849Y079401D01* X036494Y079312D02* G01X03676D01* X036405Y079401D02* G01X036494Y079312D01* X03596Y079845D02* G01X035872D01* X03596Y079934D02* G01Y079845D01* X035872Y079934D02* G01X03596D01* X035872Y079845D02* G01Y079934D01* X03596Y079756D02* G01X035872D01* X03596Y079312D02* G01Y079756D01* X035872Y079312D02* G01X036049D01* X035072D02* G01X035427D01* X034983Y079401D02* G01X035072Y079312D01* X034983Y079667D02* G01Y079401D01* X035072Y079756D02* G01X034983Y079667D01* X035338Y079756D02* G01X035072D01* X035427Y079667D02* G01X035338Y079756D01* X035427Y079578D02* G01Y079667D01* X035338Y07949D02* G01X035427Y079578D01* X034983Y07949D02* G01X035338D01* X034538Y079667D02* G01X034805Y079312D01* X034716Y079667D02* G01X034272D01* X034805Y079756D02* G01X034716Y079667D01* X034805Y079934D02* G01Y079756D01* X034716Y080023D02* G01X034805Y079934D01* X034272Y080023D02* G01X034716D01* X034272Y079312D02* G01Y080023D01* X03356Y079667D02* G01X034094D01* X033205Y079312D02* G01X032849D01* X033294Y079401D02* G01X033205Y079312D01* X033294Y079667D02* G01Y079401D01* X033205Y079756D02* G01X033294Y079667D01* X032849Y079756D02* G01X033205D01* X032849Y079045D02* G01Y079756D01* X032494Y079312D02* G01X032138D01* X032583Y079401D02* G01X032494Y079312D01* X032583Y079667D02* G01Y079401D01* X032494Y079756D02* G01X032583Y079667D01* X032138Y079756D02* G01X032494D01* X032138Y079045D02* G01Y079756D01* X031694Y079845D02* G01X031605D01* X031694Y079934D02* G01Y079845D01* X031605Y079934D02* G01X031694D01* X031605Y079845D02* G01Y079934D01* X031694Y079756D02* G01X031605D01* X031694Y079312D02* G01Y079756D01* X031605Y079312D02* G01X031783D01* X030983Y080023D02* G01X030894D01* X030983Y079312D02* G01Y080023D01* X030894Y079312D02* G01X031072D01* X030272Y079845D02* G01X030183D01* X030272Y079934D02* G01Y079845D01* X030183Y079934D02* G01X030272D01* X030183Y079845D02* G01Y079934D01* X030272Y079756D02* G01X030183D01* X030272Y079312D02* G01Y079756D01* X030183Y079312D02* G01X03036D01* X029738Y079667D02* G01Y079312D01* X029649Y079756D02* G01X029738Y079667D01* X029383Y079756D02* G01X029649D01* X029294Y079667D02* G01X029383Y079756D01* X029294Y079312D02* G01Y080023D01* X029027Y079667D02* G01X028583D01* X029116Y079756D02* G01X029027Y079667D01* X029116Y079934D02* G01Y079756D01* X029027Y080023D02* G01X029116Y079934D01* X028583Y080023D02* G01X029027D01* X028583Y079312D02* G01Y080023D01* X041383Y080867D02* G01X041916D01* Y081223D02* G01Y080512D01* X041383D02* G01Y081223D01* X040672Y080512D02* G01Y081223D01* X041027Y080512D02* G01X040672D01* X041116Y080601D02* G01X041027Y080512D01* X041116Y080867D02* G01Y080601D01* X041027Y080956D02* G01X041116Y080867D01* X040672Y080956D02* G01X041027D01* X040494Y080867D02* G01Y080512D01* X040405Y080956D02* G01X040494Y080867D01* X040316Y080956D02* G01X040405D01* X040227Y080867D02* G01X040316Y080956D01* X040227Y080867D02* G01Y080512D01* X040138Y080956D02* G01X040227Y080867D01* X040049Y080956D02* G01X040138D01* X03996Y080867D02* G01X040049Y080956D01* X03996Y080512D02* G01Y080956D01* X039694Y081223D02* G01X039783Y081134D01* X039338Y081223D02* G01X039694D01* X039249Y081134D02* G01X039338Y081223D01* X039249Y080601D02* G01Y081134D01* X039338Y080512D02* G01X039249Y080601D01* X039694Y080512D02* G01X039338D01* X039783Y080601D02* G01X039694Y080512D01* X039783Y080778D02* G01Y080601D01* X039605Y080778D02* G01X039783D01* X037827Y08069D02* G01X038272Y080512D01* X038183Y080956D02* G01X037827Y08069D01* Y080512D02* G01Y081223D01* X037383Y081045D02* G01X037294D01* X037383Y081134D02* G01Y081045D01* X037294Y081134D02* G01X037383D01* X037294Y081045D02* G01Y081134D01* X037383Y080956D02* G01X037294D01* X037383Y080512D02* G01Y080956D01* X037294Y080512D02* G01X037472D01* X036849Y080867D02* G01Y080512D01* X03676Y080956D02* G01X036849Y080867D01* X036494Y080956D02* G01X03676D01* X036405Y080867D02* G01X036494Y080956D01* X036405Y080512D02* G01Y080956D01* X035783Y080512D02* G01X035694Y080601D01* X036049Y080512D02* G01X035783D01* X036138Y080601D02* G01X036049Y080512D01* X036138Y080867D02* G01Y080601D01* X036049Y080956D02* G01X036138Y080867D01* X035783Y080956D02* G01X036049D01* X035694Y080867D02* G01X035783Y080956D01* X035694Y080601D02* G01Y080867D01* X035338Y080956D02* G01X035427Y080867D01* X035072Y080956D02* G01X035338D01* X034983Y080867D02* G01X035072Y080956D01* X034983Y080512D02* G01Y080956D01* X034272D02* G01X034627D01* X034449Y080601D02* G01Y081223D01* X034538Y080512D02* G01X034449Y080601D01* X034627Y080512D02* G01X034538D01* X034716Y080601D02* G01X034627Y080512D01* X03356Y08069D02* G01X034005Y080512D01* X033916Y080956D02* G01X03356Y08069D01* Y080512D02* G01Y081223D01* X032938Y080512D02* G01X033294D01* X032849Y080601D02* G01X032938Y080512D01* X032849Y080867D02* G01Y080601D01* X032938Y080956D02* G01X032849Y080867D01* X033205Y080956D02* G01X032938D01* X033294Y080867D02* G01X033205Y080956D01* X033294Y080778D02* G01Y080867D01* X033205Y08069D02* G01X033294Y080778D01* X032849Y08069D02* G01X033205D01* X032405Y081223D02* G01X032316D01* X032405Y080512D02* G01Y081223D01* X032316Y080512D02* G01X032494D01* X031427Y080867D02* G01X031783D01* X031427Y081223D02* G01X03196D01* X031427Y080512D02* G01Y081223D01* X03196Y080512D02* G01X031427D01* X030005Y080867D02* G01X03036D01* X030005Y081223D02* G01X030538D01* X030005Y080512D02* G01Y081223D01* X029472Y080956D02* G01X029827Y080512D01* X029472Y080956D02* G01X029294Y080867D01* X029827Y081223D02* G01X029472Y080956D01* X029294Y080512D02* G01Y081223D01* X028583Y080867D02* G01X028938D01* X028583Y081223D02* G01X029116D01* X028583Y080512D02* G01Y081223D01* X029116Y080512D02* G01X028583D01* X05921Y073976D02* G01X059565D01* X059121Y074065D02* G01X05921Y073976D01* X059121Y074332D02* G01Y074065D01* X05921Y074421D02* G01X059121Y074332D01* X059477Y074421D02* G01X05921D01* X059565Y074332D02* G01X059477Y074421D01* X059565Y074243D02* G01Y074332D01* X059477Y074154D02* G01X059565Y074243D01* X059121Y074154D02* G01X059477D01* X058854Y073976D02* G01Y074687D01* X058499Y073976D02* G01X058854D01* X05841Y074065D02* G01X058499Y073976D01* X05841Y074332D02* G01Y074065D01* X058499Y074421D02* G01X05841Y074332D01* X058854Y074421D02* G01X058499D01* X058054Y074065D02* G01X057965Y073976D01* Y074154D02* G01X058054Y074065D01* X057877D02* G01X057965Y074154D01* Y073976D02* G01X057877Y074065D01* X056988Y074332D02* G01X057254D01* X057165Y074687D02* G01X057432D01* X057077Y074599D02* G01X057165Y074687D01* X057077Y073976D02* G01Y074599D01* X056277Y074154D02* G01X056721Y073976D01* X056632Y074421D02* G01X056277Y074154D01* Y073976D02* G01Y074687D01* X055654Y073976D02* G01X05601D01* X055565Y074065D02* G01X055654Y073976D01* X055565Y074332D02* G01Y074065D01* X055654Y074421D02* G01X055565Y074332D01* X055921Y074421D02* G01X055654D01* X05601Y074332D02* G01X055921Y074421D01* X05601Y074243D02* G01Y074332D01* X055921Y074154D02* G01X05601Y074243D01* X055565Y074154D02* G01X055921D01* X055032Y074065D02* G01X05521D01* X054943Y074154D02* G01X055032Y074065D01* X054943Y07451D02* G01Y074154D01* X055032Y074599D02* G01X054943Y07451D01* X05521Y074599D02* G01X055032D01* X055299Y07451D02* G01X05521Y074599D01* X055299Y074243D02* G01Y07451D01* X055121Y074243D02* G01X055299D01* X055121Y074421D02* G01Y074243D01* X055299Y074421D02* G01X055121D01* X054232Y073976D02* G01X054143Y074065D01* X054499Y073976D02* G01X054232D01* X054588Y074065D02* G01X054499Y073976D01* X054588Y074332D02* G01Y074065D01* X054499Y074421D02* G01X054588Y074332D01* X054232Y074421D02* G01X054499D01* X054143Y074332D02* G01X054232Y074421D01* X054143Y074065D02* G01Y074332D01* X053432D02* G01X053699D01* X05361Y074687D02* G01X053877D01* X053521Y074599D02* G01X05361Y074687D01* X053521Y073976D02* G01Y074599D01* X053165Y074332D02* G01Y073976D01* X053077Y074421D02* G01X053165Y074332D01* X05281Y074421D02* G01X053077D01* X052721Y074332D02* G01X05281Y074421D01* X052721Y073976D02* G01Y074421D01* X052277Y07451D02* G01X052188D01* X052277Y074599D02* G01Y07451D01* X052188Y074599D02* G01X052277D01* X052188Y07451D02* G01Y074599D01* X052277Y074421D02* G01X052188D01* X052277Y073976D02* G01Y074421D01* X052188Y073976D02* G01X052366D01* X050943Y074421D02* G01X050854Y074332D01* Y07451D02* G01X050943Y074421D01* X050766D02* G01X050854Y07451D01* Y074332D02* G01X050766Y074421D01* X050943Y074065D02* G01X050854Y073976D01* Y074154D02* G01X050943Y074065D01* X050766D02* G01X050854Y074154D01* Y073976D02* G01X050766Y074065D01* X050143Y074687D02* G01X050054D01* X050143Y073976D02* G01Y074687D01* X050054Y073976D02* G01X050232D01* X049432Y07451D02* G01X049343D01* X049432Y074599D02* G01Y07451D01* X049343Y074599D02* G01X049432D01* X049343Y07451D02* G01Y074599D01* X049432Y074421D02* G01X049343D01* X049432Y073976D02* G01Y074421D01* X049343Y073976D02* G01X049521D01* X048543Y074243D02* G01X048899D01* X048454Y074154D02* G01X048543Y074243D01* X048454Y074065D02* G01Y074154D01* X048543Y073976D02* G01X048454Y074065D01* X048899Y073976D02* G01X048543D01* X048899Y074332D02* G01Y073976D01* X04881Y074421D02* G01X048899Y074332D01* X048543Y074421D02* G01X04881D01* X048277Y074332D02* G01Y073976D01* X048188Y074421D02* G01X048277Y074332D01* X048099Y074421D02* G01X048188D01* X04801Y074332D02* G01X048099Y074421D01* X04801Y074332D02* G01Y073976D01* X047921Y074421D02* G01X04801Y074332D01* X047832Y074421D02* G01X047921D01* X047743Y074332D02* G01X047832Y074421D01* X047743Y073976D02* G01Y074421D01* X047121Y073976D02* G01X047477D01* X047032Y074065D02* G01X047121Y073976D01* X047032Y074332D02* G01Y074065D01* X047121Y074421D02* G01X047032Y074332D01* X047388Y074421D02* G01X047121D01* X047477Y074332D02* G01X047388Y074421D01* X047477Y074243D02* G01Y074332D01* X047388Y074154D02* G01X047477Y074243D01* X047032Y074154D02* G01X047388D01* X042143Y073976D02* G01X042499D01* X042054Y074065D02* G01X042143Y073976D01* X042054Y074332D02* G01Y074065D01* X042143Y074421D02* G01X042054Y074332D01* X04241Y074421D02* G01X042143D01* X042499Y074332D02* G01X04241Y074421D01* X042499Y074243D02* G01Y074332D01* X04241Y074154D02* G01X042499Y074243D01* X042054Y074154D02* G01X04241D01* X041788Y073976D02* G01Y074687D01* X041432Y073976D02* G01X041788D01* X041343Y074065D02* G01X041432Y073976D01* X041343Y074332D02* G01Y074065D01* X041432Y074421D02* G01X041343Y074332D01* X041788Y074421D02* G01X041432D01* X040988Y074065D02* G01X040899Y073976D01* Y074154D02* G01X040988Y074065D01* X04081D02* G01X040899Y074154D01* Y073976D02* G01X04081Y074065D01* X039921Y074332D02* G01X040188D01* X040099Y074687D02* G01X040366D01* X04001Y074599D02* G01X040099Y074687D01* X04001Y073976D02* G01Y074599D01* X03921Y074154D02* G01X039654Y073976D01* X039566Y074421D02* G01X03921Y074154D01* Y073976D02* G01Y074687D01* X038588Y073976D02* G01X038943D01* X038499Y074065D02* G01X038588Y073976D01* X038499Y074332D02* G01Y074065D01* X038588Y074421D02* G01X038499Y074332D01* X038854Y074421D02* G01X038588D01* X038943Y074332D02* G01X038854Y074421D01* X038943Y074243D02* G01Y074332D01* X038854Y074154D02* G01X038943Y074243D01* X038499Y074154D02* G01X038854D01* X038143Y074065D02* G01X038054Y073976D01* Y074154D02* G01X038143Y074065D01* X037966D02* G01X038054Y074154D01* Y073976D02* G01X037966Y074065D01* X037343D02* G01Y074243D01* X03761D02* G01Y074421D01* X037432Y073976D02* G01X03761Y074243D01* X037343Y074065D02* G01X037432Y073976D01* X037254D02* G01X037343Y074065D01* X037077Y074243D02* G01X037254Y073976D01* X037077Y074421D02* G01Y074243D01* X036632Y074065D02* G01Y074243D01* X036899D02* G01Y074421D01* X036721Y073976D02* G01X036899Y074243D01* X036632Y074065D02* G01X036721Y073976D01* X036543D02* G01X036632Y074065D01* X036366Y074243D02* G01X036543Y073976D01* X036366Y074421D02* G01Y074243D01* X035921Y074065D02* G01Y074243D01* X036188D02* G01Y074421D01* X03601Y073976D02* G01X036188Y074243D01* X035921Y074065D02* G01X03601Y073976D01* X035832D02* G01X035921Y074065D01* X035654Y074243D02* G01X035832Y073976D01* X035654Y074421D02* G01Y074243D01* X034588Y074421D02* G01X034499Y074332D01* Y07451D02* G01X034588Y074421D01* X03441D02* G01X034499Y07451D01* Y074332D02* G01X03441Y074421D01* X034588Y074065D02* G01X034499Y073976D01* Y074154D02* G01X034588Y074065D01* X03441D02* G01X034499Y074154D01* Y073976D02* G01X03441Y074065D01* X033521Y074421D02* G01X033877D01* X033699Y074065D02* G01Y074687D01* X033788Y073976D02* G01X033699Y074065D01* X033877Y073976D02* G01X033788D01* X033966Y074065D02* G01X033877Y073976D01* X032899D02* G01X033254D01* X03281Y074065D02* G01X032899Y073976D01* X03281Y074332D02* G01Y074065D01* X032899Y074421D02* G01X03281Y074332D01* X033166Y074421D02* G01X032899D01* X033254Y074332D02* G01X033166Y074421D01* X033254Y074243D02* G01Y074332D01* X033166Y074154D02* G01X033254Y074243D01* X03281Y074154D02* G01X033166D01* X032543Y074332D02* G01Y073976D01* X032454Y074421D02* G01X032543Y074332D01* X032188Y074421D02* G01X032454D01* X032099Y074332D02* G01X032188Y074421D01* X032099Y073976D02* G01Y074421D01* X031743D02* G01X031832Y074332D01* X031477Y074421D02* G01X031743D01* X031388Y074332D02* G01X031477Y074421D01* X031388Y073976D02* G01Y074421D01* X030766Y073976D02* G01X031121D01* X030677Y074065D02* G01X030766Y073976D01* X030677Y074332D02* G01Y074065D01* X030766Y074421D02* G01X030677Y074332D01* X031032Y074421D02* G01X030766D01* X031121Y074332D02* G01X031032Y074421D01* X031121Y074243D02* G01Y074332D01* X031032Y074154D02* G01X031121Y074243D01* X030677Y074154D02* G01X031032D01* X029966Y074421D02* G01X030321D01* X030143Y074065D02* G01Y074687D01* X030232Y073976D02* G01X030143Y074065D01* X030321Y073976D02* G01X030232D01* X03041Y074065D02* G01X030321Y073976D01* X029699Y074332D02* G01Y073976D01* X02961Y074421D02* G01X029699Y074332D01* X029343Y074421D02* G01X02961D01* X029254Y074332D02* G01X029343Y074421D01* X029254Y073976D02* G01Y074421D01* X02881Y074687D02* G01Y073976D01* X028543Y074687D02* G01X029077D01* X028543Y073976D02* G01X029077D01* X11638Y07299D02* G01X10788D01* X015591Y072992D02* G01X018937D01* X015Y072402D02* G01X015591Y072992D01* X015Y069055D02* G01Y072402D01* X11412Y01D02* G01X11212Y008D01* Y012D02* G01X11412Y01D01* X11012D02* G01X11212Y012D01* Y008D02* G01X11012Y01D01* X015Y07399D02* G01Y08249D01* X11212Y00575D02* G01Y01425D01* X10887Y07824D02* G01X10687Y07624D01* Y08024D02* G01X10887Y07824D01* X10487D02* G01X10687Y08024D01* Y07624D02* G01X10487Y07824D01* X10687Y07399D02* G01Y08249D01* X01925Y07824D02* G01X01075D01* X11112D02* G01X10262D01* X018D02* G01X015Y07524D01* Y08124D02* G01X018Y07824D01* X012D02* G01X015Y08124D01* Y07524D02* G01X012Y07824D01* X11212Y06874D02* G01Y07724D01* X11512Y07299D02* G01X11212Y06999D01* Y07599D02* G01X11512Y07299D01* X10912D02* G01X11212Y07599D01* Y06999D02* G01X10912Y07299D01* X11637Y01D02* G01X10787D01* X11512D02* G01X11212Y007D01* Y013D02* G01X11512Y01D01* X10912D02* G01X11212Y013D01* Y007D02* G01X10912Y01D01* X11312D02* G01X11212Y009D01* Y011D02* G01X11312Y01D01* X11112D02* G01X11212Y011D01* Y009D02* G01X11112Y01D01* X10628Y072992D02* G01X102933D01* X10687Y072402D02* G01X10628Y072992D01* X10687Y069055D02* G01Y072402D01* X11412Y07299D02* G01X11212Y07099D01* Y07499D02* G01X11412Y07299D01* X11012D02* G01X11212Y07499D01* Y07099D02* G01X11012Y07299D01* X10987Y07824D02* G01X10687Y07524D01* Y08124D02* G01X10987Y07824D01* X10387D02* G01X10687Y08124D01* Y07524D02* G01X10387Y07824D01* G54D12* X015Y082D02* G01X10687D01* X1159Y01D02* G01Y07299D01* G54D10* X017029Y075D02* G01X017441D01* X017029D02* G01X017269D01* X01655D02* G01X016789D01* X01607D02* G01X01631D01* X015591D02* G01X01583D01* X015591Y07491D02* G01Y075D01* Y074431D02* G01Y07467D01* Y073951D02* G01Y074191D01* Y073472D02* G01Y073711D01* Y072992D02* G01Y073232D01* X108898Y070963D02* G01Y070492D01* Y070963D02* G01Y070723D01* Y071443D02* G01Y071203D01* Y071922D02* G01Y071682D01* Y072402D02* G01Y072162D01* X108788Y072402D02* G01X108898D01* X108309D02* G01X108548D01* X107829D02* G01X108069D01* X10735D02* G01X107589D01* X10687D02* G01X10711D01* X012953Y070483D02* G01Y070472D01* Y070963D02* G01Y070723D01* Y071443D02* G01Y071203D01* Y071922D02* G01Y071682D01* Y072402D02* G01Y072162D01* X013082Y072402D02* G01X012953D01* X013561D02* G01X013322D01* X014041D02* G01X013801D01* X01452D02* G01X014281D01* X015D02* G01X01476D01* X104841Y07498D02* G01X104528D01* X104841D02* G01X104601D01* X10532D02* G01X105081D01* X1058D02* G01X10556D01* X10628D02* G01X10604D01* X10628Y07491D02* G01Y07498D01* Y074431D02* G01Y07467D01* Y073951D02* G01Y074191D01* Y073472D02* G01Y073711D01* Y072992D02* G01Y073232D01* G54D14* X082889Y077D02* G01X083333D01* X082778Y077111D02* G01X082889Y077D01* X082778Y077444D02* G01Y077111D01* X082889Y077556D02* G01X082778Y077444D01* X083222Y077556D02* G01X082889D01* X083333Y077444D02* G01X083222Y077556D01* X083333Y077333D02* G01Y077444D01* X083222Y077222D02* G01X083333Y077333D01* X082778Y077222D02* G01X083222D01* X081889Y077556D02* G01X082333D01* X082111Y077111D02* G01Y077889D01* X082222Y077D02* G01X082111Y077111D01* X082333Y077D02* G01X082222D01* X082444Y077111D02* G01X082333Y077D01* X081444Y077556D02* G01X081556Y077444D01* X081111Y077556D02* G01X081444D01* X081Y077444D02* G01X081111Y077556D01* Y077333D02* G01X081Y077444D01* X081444Y077333D02* G01X081111D01* X081556Y077222D02* G01X081444Y077333D01* X081556Y077111D02* G01Y077222D01* X081444Y077D02* G01X081556Y077111D01* X081111Y077D02* G01X081444D01* X081Y077111D02* G01X081111Y077D01* X080222Y077333D02* G01X080667D01* X080111Y077222D02* G01X080222Y077333D01* X080111Y077111D02* G01Y077222D01* X080222Y077D02* G01X080111Y077111D01* X080667Y077D02* G01X080222D01* X080667Y077444D02* G01Y077D01* X080556Y077556D02* G01X080667Y077444D01* X080222Y077556D02* G01X080556D01* X079778Y077444D02* G01X079222D01* X079889Y077556D02* G01X079778Y077444D01* X079889Y077778D02* G01Y077556D01* X079778Y077889D02* G01X079889Y077778D01* X079222Y077889D02* G01X079778D01* X079222Y077D02* G01Y077889D01* X077889Y077556D02* G01X078Y077444D01* X077556Y077556D02* G01X077889D01* X077444Y077444D02* G01X077556Y077556D01* X077444Y077D02* G01Y077556D01* X076667Y077D02* G01X077111D01* X076556Y077111D02* G01X076667Y077D01* X076556Y077444D02* G01Y077111D01* X076667Y077556D02* G01X076556Y077444D01* X077Y077556D02* G01X076667D01* X077111Y077444D02* G01X077Y077556D01* X077111Y077333D02* G01Y077444D01* X077Y077222D02* G01X077111Y077333D01* X076556Y077222D02* G01X077D01* X076222Y077D02* G01Y077889D01* X075778Y077D02* G01X076222D01* X075667Y077111D02* G01X075778Y077D01* X075667Y077444D02* G01Y077111D01* X075778Y077556D02* G01X075667Y077444D01* X076222Y077556D02* G01X075778D01* X075111Y077889D02* G01X075D01* X075111Y077D02* G01Y077889D01* X075Y077D02* G01X075222D01* X074D02* G01X073889Y077111D01* X074333Y077D02* G01X074D01* X074444Y077111D02* G01X074333Y077D01* X074444Y077444D02* G01Y077111D01* X074333Y077556D02* G01X074444Y077444D01* X074Y077556D02* G01X074333D01* X073889Y077444D02* G01X074Y077556D01* X073889Y077111D02* G01Y077444D01* X073556Y077889D02* G01X073667Y077778D01* X073111Y077889D02* G01X073556D01* X073Y077778D02* G01X073111Y077889D01* X073Y077556D02* G01Y077778D01* X073111Y077444D02* G01X073Y077556D01* X073556Y077444D02* G01X073111D01* X073667Y077333D02* G01X073556Y077444D01* X073667Y077111D02* G01Y077333D01* X073556Y077D02* G01X073667Y077111D01* X073111Y077D02* G01X073556D01* X073Y077111D02* G01X073111Y077D01* X070111Y077444D02* G01X070778D01* X066555Y077D02* G01X067222D01* X066555Y077111D02* G01Y077D01* X067111Y077444D02* G01X066555Y077111D01* X067222Y077556D02* G01X067111Y077444D01* X067222Y077778D02* G01Y077556D01* X067111Y077889D02* G01X067222Y077778D01* X066667Y077889D02* G01X067111D01* X066555Y077778D02* G01X066667Y077889D01* X066111Y077111D02* G01X066Y077D01* Y077222D02* G01X066111Y077111D01* X065889D02* G01X066Y077222D01* Y077D02* G01X065889Y077111D01* X065111Y077D02* G01X065444Y077556D01* X064778D02* G01X065111Y077D01* X064D02* G01X064444D01* X063889Y077111D02* G01X064Y077D01* X063889Y077444D02* G01Y077111D01* X064Y077556D02* G01X063889Y077444D01* X064333Y077556D02* G01X064D01* X064444Y077444D02* G01X064333Y077556D01* X064444Y077333D02* G01Y077444D01* X064333Y077222D02* G01X064444Y077333D01* X063889Y077222D02* G01X064333D01* X063333Y077444D02* G01X063667Y077D01* X063556Y077444D02* G01X063D01* X063667Y077556D02* G01X063556Y077444D01* X063667Y077778D02* G01Y077556D01* X063556Y077889D02* G01X063667Y077778D01* X063Y077889D02* G01X063556D01* X063Y077D02* G01Y077889D01* X059111Y077333D02* G01X058667D01* X059111D02* G01X059222Y077D01* X058889Y077889D02* G01X059111Y077333D01* X058667D02* G01X058889Y077889D01* X058556Y077D02* G01X058667Y077333D01* X058Y077444D02* G01X058333Y077D01* X058222Y077444D02* G01X057667D01* X058333Y077556D02* G01X058222Y077444D01* X058333Y077778D02* G01Y077556D01* X058222Y077889D02* G01X058333Y077778D01* X057667Y077889D02* G01X058222D01* X057667Y077D02* G01Y077889D01* X056778Y077444D02* G01X057222D01* X056778Y077889D02* G01X057444D01* X056778Y077D02* G01Y077889D01* X057444Y077D02* G01X056778D01* X056444Y077444D02* G01X055889D01* X056556Y077556D02* G01X056444Y077444D01* X056556Y077778D02* G01Y077556D01* X056444Y077889D02* G01X056556Y077778D01* X055889Y077889D02* G01X056444D01* X055889Y077D02* G01Y077889D01* X055Y077778D02* G01Y077111D01* X055111Y077889D02* G01X055Y077778D01* X055556Y077889D02* G01X055111D01* X055667Y077778D02* G01X055556Y077889D01* X055667Y077111D02* G01Y077778D01* X055556Y077D02* G01X055667Y077111D01* X055111Y077D02* G01X055556D01* X055Y077111D02* G01X055111Y077D01* X054111Y077444D02* G01X054778D01* X053556Y077889D02* G01X053333Y077667D01* X053556Y077D02* G01Y077889D01* X053222Y077D02* G01X053889D01* X052778D02* G01X052333D01* X052889Y077111D02* G01X052778Y077D01* X053Y077333D02* G01X052889Y077111D01* X053Y077556D02* G01Y077333D01* X052889Y077778D02* G01X053Y077556D01* X052778Y077889D02* G01X052889Y077778D01* X052333Y077889D02* G01X052778D01* X052333Y077D02* G01Y077889D01* X052D02* G01X052111Y077778D01* X051556Y077889D02* G01X052D01* X051444Y077778D02* G01X051556Y077889D01* X051444Y077111D02* G01Y077778D01* X051556Y077D02* G01X051444Y077111D01* X052Y077D02* G01X051556D01* X052111Y077111D02* G01X052Y077D01* X05Y077889D02* G01Y077D01* X049667Y077889D02* G01X050333D01* X049667Y077D02* G01X050333D01* X049333Y077889D02* G01X049444Y077778D01* X048889Y077889D02* G01X049333D01* X048778Y077778D02* G01X048889Y077889D01* X048778Y077111D02* G01Y077778D01* X048889Y077D02* G01X048778Y077111D01* X049333Y077D02* G01X048889D01* X049444Y077111D02* G01X049333Y077D01* X048444Y077444D02* G01X047889D01* X048556Y077556D02* G01X048444Y077444D01* X048556Y077778D02* G01Y077556D01* X048444Y077889D02* G01X048556Y077778D01* X047889Y077889D02* G01X048444D01* X047889Y077D02* G01Y077889D01* X047556D02* G01X047667Y077778D01* X047111Y077889D02* G01X047556D01* X047Y077778D02* G01X047111Y077889D01* X047Y077111D02* G01Y077778D01* X047111Y077D02* G01X047Y077111D01* X047556Y077D02* G01X047111D01* X047667Y077111D02* G01X047556Y077D01* X067389Y082944D02* G01X067611D01* X067278Y0825D02* G01X067167Y082611D01* X067722Y0825D02* G01X067278D01* X067833Y082611D02* G01X067722Y0825D01* X067833Y082833D02* G01Y082611D01* X067611Y082944D02* G01X067833Y082833D01* Y083056D02* G01X067611Y082944D01* X067833Y083278D02* G01Y083056D01* X067722Y083389D02* G01X067833Y083278D01* X067278Y083389D02* G01X067722D01* X067167Y083278D02* G01X067278Y083389D01* X066722Y082611D02* G01X066611Y0825D01* Y082722D02* G01X066722Y082611D01* X0665D02* G01X066611Y082722D01* Y0825D02* G01X0665Y082611D01* X065389Y0825D02* G01X066056Y083389D01* X0655Y0825D02* G01X065389Y082611D01* X065944Y0825D02* G01X0655D01* X066056Y082611D02* G01X065944Y0825D01* X066056Y083278D02* G01Y082611D01* X065944Y083389D02* G01X066056Y083278D01* X0655Y083389D02* G01X065944D01* X065389Y083278D02* G01X0655Y083389D01* X065389Y082611D02* G01Y083278D01* X0645Y082944D02* G01X065167D01* X063611Y0825D02* G01X064278Y083389D01* X062722Y0825D02* G01X063389Y083389D01* X062833Y0825D02* G01X062722Y082611D01* X063278Y0825D02* G01X062833D01* X063389Y082611D02* G01X063278Y0825D01* X063389Y083278D02* G01Y082611D01* X063278Y083389D02* G01X063389Y083278D01* X062833Y083389D02* G01X063278D01* X062722Y083278D02* G01X062833Y083389D01* X062722Y082611D02* G01Y083278D01* X062167D02* G01Y082611D01* X061833Y082944D02* G01X0625D01* X0605Y0825D02* G01X060389Y082278D01* X0605Y082611D02* G01Y0825D01* X060389Y082722D02* G01X0605Y082611D01* X060278D02* G01X060389Y082722D01* Y0825D02* G01X060278Y082611D01* X0605D02* G01X060389Y0825D01* X059833Y082944D02* G01Y0825D01* X059722Y083056D02* G01X059833Y082944D01* X059611Y083056D02* G01X059722D01* X0595Y082944D02* G01X059611Y083056D01* X0595Y082944D02* G01Y0825D01* X059389Y083056D02* G01X0595Y082944D01* X059278Y083056D02* G01X059389D01* X059167Y082944D02* G01X059278Y083056D01* X059167Y0825D02* G01Y083056D01* X058944Y082944D02* G01Y0825D01* X058833Y083056D02* G01X058944Y082944D01* X058722Y083056D02* G01X058833D01* X058611Y082944D02* G01X058722Y083056D01* X058611Y082944D02* G01Y0825D01* X0585Y083056D02* G01X058611Y082944D01* X058389Y083056D02* G01X0585D01* X058278Y082944D02* G01X058389Y083056D01* X058278Y0825D02* G01Y083056D01* X057389Y083389D02* G01X058056D01* X057389Y083056D02* G01Y083389D01* X057944Y083056D02* G01X057389D01* X058056Y082944D02* G01X057944Y083056D01* X058056Y082611D02* G01Y082944D01* X057944Y0825D02* G01X058056Y082611D01* X0575Y0825D02* G01X057944D01* X057389Y082611D02* G01X0575Y0825D01* X056722Y082944D02* G01X056944D01* X056611Y0825D02* G01X0565Y082611D01* X057056Y0825D02* G01X056611D01* X057167Y082611D02* G01X057056Y0825D01* X057167Y082833D02* G01Y082611D01* X056944Y082944D02* G01X057167Y082833D01* Y083056D02* G01X056944Y082944D01* X057167Y083278D02* G01Y083056D01* X057056Y083389D02* G01X057167Y083278D01* X056611Y083389D02* G01X057056D01* X0565Y083278D02* G01X056611Y083389D01* X056056Y082611D02* G01X055944Y0825D01* Y082722D02* G01X056056Y082611D01* X055833D02* G01X055944Y082722D01* Y0825D02* G01X055833Y082611D01* X054944Y082944D02* G01X055167D01* X054833Y0825D02* G01X054722Y082611D01* X055278Y0825D02* G01X054833D01* X055389Y082611D02* G01X055278Y0825D01* X055389Y082833D02* G01Y082611D01* X055167Y082944D02* G01X055389Y082833D01* Y083056D02* G01X055167Y082944D01* X055389Y083278D02* G01Y083056D01* X055278Y083389D02* G01X055389Y083278D01* X054833Y083389D02* G01X055278D01* X054722Y083278D02* G01X054833Y083389D01* X054056Y082944D02* G01X054278D01* X053944Y0825D02* G01X053833Y082611D01* X054389Y0825D02* G01X053944D01* X0545Y082611D02* G01X054389Y0825D01* X0545Y082833D02* G01Y082611D01* X054278Y082944D02* G01X0545Y082833D01* Y083056D02* G01X054278Y082944D01* X0545Y083278D02* G01Y083056D01* X054389Y083389D02* G01X0545Y083278D01* X053944Y083389D02* G01X054389D01* X053833Y083278D02* G01X053944Y083389D01* X052944Y0825D02* G01X053611D01* X052944Y082611D02* G01Y0825D01* X0535Y082944D02* G01X052944Y082611D01* X053611Y083056D02* G01X0535Y082944D01* X053611Y083278D02* G01Y083056D01* X0535Y083389D02* G01X053611Y083278D01* X053056Y083389D02* G01X0535D01* X052944Y083278D02* G01X053056Y083389D01* X116944Y034611D02* G01Y034389D01* X1165Y034722D02* G01X116611Y034833D01* X1165Y034278D02* G01Y034722D01* X116611Y034167D02* G01X1165Y034278D01* X116833Y034167D02* G01X116611D01* X116944Y034389D02* G01X116833Y034167D01* X117056D02* G01X116944Y034389D01* X117278Y034167D02* G01X117056D01* X117389Y034278D02* G01X117278Y034167D01* X117389Y034722D02* G01Y034278D01* X117278Y034833D02* G01X117389Y034722D01* X116611Y035278D02* G01X1165Y035389D01* X116722D02* G01X116611Y035278D01* Y0355D02* G01X116722Y035389D01* X1165D02* G01X116611Y0355D01* X1165Y036611D02* G01X117389Y035944D01* X1165Y0365D02* G01X116611Y036611D01* X1165Y036056D02* G01Y0365D01* X116611Y035944D02* G01X1165Y036056D01* X117278Y035944D02* G01X116611D01* X117389Y036056D02* G01X117278Y035944D01* X117389Y0365D02* G01Y036056D01* X117278Y036611D02* G01X117389Y0365D01* X116611Y036611D02* G01X117278D01* X116944Y0375D02* G01Y036833D01* X1165Y038389D02* G01X117389Y037722D01* X1165Y039278D02* G01X117389Y038611D01* X1165Y039167D02* G01X116611Y039278D01* X1165Y038722D02* G01Y039167D01* X116611Y038611D02* G01X1165Y038722D01* X117278Y038611D02* G01X116611D01* X117389Y038722D02* G01X117278Y038611D01* X117389Y039167D02* G01Y038722D01* X117278Y039278D02* G01X117389Y039167D01* X116611Y039278D02* G01X117278D01* Y039833D02* G01X116611D01* X116944Y040167D02* G01Y0395D01* X1165Y0415D02* G01X116278Y041611D01* X116611Y0415D02* G01X1165D01* X116722Y041611D02* G01X116611Y0415D01* Y041722D02* G01X116722Y041611D01* X1165D02* G01X116611Y041722D01* Y0415D02* G01X1165Y041611D01* X116944Y042167D02* G01X1165D01* X117056Y042278D02* G01X116944Y042167D01* X117056Y042389D02* G01Y042278D01* X116944Y0425D02* G01X117056Y042389D01* X116944Y0425D02* G01X1165D01* X117056Y042611D02* G01X116944Y0425D01* X117056Y042722D02* G01Y042611D01* X116944Y042833D02* G01X117056Y042722D01* X1165Y042833D02* G01X117056D01* X116944Y043056D02* G01X1165D01* X117056Y043167D02* G01X116944Y043056D01* X117056Y043278D02* G01Y043167D01* X116944Y043389D02* G01X117056Y043278D01* X116944Y043389D02* G01X1165D01* X117056Y0435D02* G01X116944Y043389D01* X117056Y043611D02* G01Y0435D01* X116944Y043722D02* G01X117056Y043611D01* X1165Y043722D02* G01X117056D01* X1165Y044611D02* G01X117389Y043944D01* X1165Y0445D02* G01X116611Y044611D01* X1165Y044056D02* G01Y0445D01* X116611Y043944D02* G01X1165Y044056D01* X117278Y043944D02* G01X116611D01* X117389Y044056D02* G01X117278Y043944D01* X117389Y0445D02* G01Y044056D01* X117278Y044611D02* G01X117389Y0445D01* X116611Y044611D02* G01X117278D01* X1165Y0455D02* G01X117389Y044833D01* X1165Y045389D02* G01X116611Y0455D01* X1165Y044944D02* G01Y045389D01* X116611Y044833D02* G01X1165Y044944D01* X117278Y044833D02* G01X116611D01* X117389Y044944D02* G01X117278Y044833D01* X117389Y045389D02* G01Y044944D01* X117278Y0455D02* G01X117389Y045389D01* X116611Y0455D02* G01X117278D01* X116611Y045944D02* G01X1165Y046056D01* X116722D02* G01X116611Y045944D01* Y046167D02* G01X116722Y046056D01* X1165D02* G01X116611Y046167D01* X1165Y047278D02* G01X117389Y046611D01* X1165Y047167D02* G01X116611Y047278D01* X1165Y046722D02* G01Y047167D01* X116611Y046611D02* G01X1165Y046722D01* X117278Y046611D02* G01X116611D01* X117389Y046722D02* G01X117278Y046611D01* X117389Y047167D02* G01Y046722D01* X117278Y047278D02* G01X117389Y047167D01* X116611Y047278D02* G01X117278D01* X116944Y048056D02* G01X116833Y048167D01* X116944Y047611D02* G01Y048056D01* X116833Y0475D02* G01X116944Y047611D01* X116611Y0475D02* G01X116833D01* X1165Y047611D02* G01X116611Y0475D01* X1165Y048056D02* G01Y047611D01* X116611Y048167D02* G01X1165Y048056D01* X117278Y048167D02* G01X116611D01* X117389Y048056D02* G01X117278Y048167D01* X117389Y047611D02* G01Y048056D01* X117278Y0475D02* G01X117389Y047611D01* Y048722D02* G01X117167Y048944D01* X1165Y048722D02* G01X117389D01* X1165Y049056D02* G01Y048389D01* G54D11* X018873Y010778D02* G01X019007D01* X018807Y010512D02* G01X01874Y010578D01* X019073Y010512D02* G01X018807D01* X01914Y010578D02* G01X019073Y010512D01* X01914Y010712D02* G01Y010578D01* X019007Y010778D02* G01X01914Y010712D01* Y010845D02* G01X019007Y010778D01* X01914Y010978D02* G01Y010845D01* X019073Y011045D02* G01X01914Y010978D01* X018807Y011045D02* G01X019073D01* X01874Y010978D02* G01X018807Y011045D01* X050136D02* G01Y010512D01* X049803Y010778D02* G01X050203D01* X049803Y011045D02* G01Y010778D01* X050236Y00888D02* G01X050636D01* X050236Y00868D02* G01Y00888D01* X05057Y00868D02* G01X050236D01* X050636Y008613D02* G01X05057Y00868D01* X050636Y008413D02* G01Y008613D01* X05057Y008346D02* G01X050636Y008413D01* X050303Y008346D02* G01X05057D01* X050236Y008413D02* G01X050303Y008346D01* X018346Y009134D02* G01X018746D01* X018346Y009201D02* G01Y009134D01* X01868Y009401D02* G01X018346Y009201D01* X018746Y009467D02* G01X01868Y009401D01* X018746Y009601D02* G01Y009467D01* X01868Y009667D02* G01X018746Y009601D01* X018413Y009667D02* G01X01868D01* X018346Y009601D02* G01X018413Y009667D01* X102823Y008613D02* G01X102756Y008546D01* X103089Y008613D02* G01X102823D01* X103156Y008546D02* G01X103089Y008613D01* X103156Y008413D02* G01Y008546D01* X103089Y008346D02* G01X103156Y008413D01* X102823Y008346D02* G01X103089D01* X102756Y008413D02* G01X102823Y008346D01* X102756Y008813D02* G01Y008413D01* X102823Y00888D02* G01X102756Y008813D01* X103089Y00888D02* G01X102823D01* X103156Y008813D02* G01X103089Y00888D01* X103589Y00977D02* G01X103322Y00937D01* X103589Y009903D02* G01Y00977D01* X103189Y009903D02* G01X103589D01* X103189Y009837D02* G01Y009903D01* X039179Y002536D02* G01X039579Y00307D01* X039246Y002536D02* G01X039179Y002603D01* X039512Y002536D02* G01X039246D01* X039579Y002603D02* G01X039512Y002536D01* X039579Y003003D02* G01Y002603D01* X039512Y00307D02* G01X039579Y003003D01* X039246Y00307D02* G01X039512D01* X039179Y003003D02* G01X039246Y00307D01* X039179Y002603D02* G01Y003003D01* X038646Y002536D02* G01X039046Y00307D01* X038712Y002536D02* G01X038646Y002603D01* X038979Y002536D02* G01X038712D01* X039046Y002603D02* G01X038979Y002536D01* X039046Y003003D02* G01Y002603D01* X038979Y00307D02* G01X039046Y003003D01* X038712Y00307D02* G01X038979D01* X038646Y003003D02* G01X038712Y00307D01* X038646Y002603D02* G01Y003003D01* X038379Y002603D02* G01X038312Y002536D01* Y00267D02* G01X038379Y002603D01* X038246D02* G01X038312Y00267D01* Y002536D02* G01X038246Y002603D01* X037579Y002536D02* G01X037979Y00307D01* X037646Y002536D02* G01X037579Y002603D01* X037912Y002536D02* G01X037646D01* X037979Y002603D02* G01X037912Y002536D01* X037979Y003003D02* G01Y002603D01* X037912Y00307D02* G01X037979Y003003D01* X037646Y00307D02* G01X037912D01* X037579Y003003D02* G01X037646Y00307D01* X037579Y002603D02* G01Y003003D01* X036579Y00287D02* G01X036912D01* X036579Y002736D02* G01X036912D01* X035979Y002603D02* G01Y00287D01* X036046Y002536D02* G01X035979Y002603D01* X036246Y002536D02* G01X036046D01* X036312Y002603D02* G01X036246Y002536D01* X036312Y002403D02* G01Y00287D01* X036246Y002336D02* G01X036312Y002403D01* X036046Y002336D02* G01X036246D01* X035979Y002403D02* G01X036046Y002336D01* X034912Y002536D02* G01X035312Y00307D01* X033846D02* G01X034246D01* X033846Y00287D02* G01Y00307D01* X034179Y00287D02* G01X033846D01* X034246Y002803D02* G01X034179Y00287D01* X034246Y002603D02* G01Y002803D01* X034179Y002536D02* G01X034246Y002603D01* X033912Y002536D02* G01X034179D01* X033846Y002603D02* G01X033912Y002536D01* X033446Y002803D02* G01X033579D01* X033379Y002536D02* G01X033312Y002603D01* X033646Y002536D02* G01X033379D01* X033712Y002603D02* G01X033646Y002536D01* X033712Y002736D02* G01Y002603D01* X033579Y002803D02* G01X033712Y002736D01* Y00287D02* G01X033579Y002803D01* X033712Y003003D02* G01Y00287D01* X033646Y00307D02* G01X033712Y003003D01* X033379Y00307D02* G01X033646D01* X033312Y003003D02* G01X033379Y00307D01* X033046Y002603D02* G01X032979Y002536D01* Y00267D02* G01X033046Y002603D01* X032912D02* G01X032979Y00267D01* Y002536D02* G01X032912Y002603D01* X032379Y002803D02* G01X032512D01* X032312Y002536D02* G01X032246Y002603D01* X032579Y002536D02* G01X032312D01* X032646Y002603D02* G01X032579Y002536D01* X032646Y002736D02* G01Y002603D01* X032512Y002803D02* G01X032646Y002736D01* Y00287D02* G01X032512Y002803D01* X032646Y003003D02* G01Y00287D01* X032579Y00307D02* G01X032646Y003003D01* X032312Y00307D02* G01X032579D01* X032246Y003003D02* G01X032312Y00307D01* X031846Y002803D02* G01X031979D01* X031779Y002536D02* G01X031712Y002603D01* X032046Y002536D02* G01X031779D01* X032112Y002603D02* G01X032046Y002536D01* X032112Y002736D02* G01Y002603D01* X031979Y002803D02* G01X032112Y002736D01* Y00287D02* G01X031979Y002803D01* X032112Y003003D02* G01Y00287D01* X032046Y00307D02* G01X032112Y003003D01* X031779Y00307D02* G01X032046D01* X031712Y003003D02* G01X031779Y00307D01* X031179Y002536D02* G01X031579D01* X031179Y002603D02* G01Y002536D01* X031512Y002803D02* G01X031179Y002603D01* X031579Y00287D02* G01X031512Y002803D01* X031579Y003003D02* G01Y00287D01* X031512Y00307D02* G01X031579Y003003D01* X031246Y00307D02* G01X031512D01* X031179Y003003D02* G01X031246Y00307D01* X030712Y00287D02* G01X031046D01* X030712Y002736D02* G01X031046D01* X030112Y00287D02* G01X030446Y002536D01* X030112D02* G01X030446Y00287D01* X029312D02* G01X029179Y00307D01* X029312Y002736D02* G01Y00287D01* X029179Y002536D02* G01X029312Y002736D01* X028912Y00287D02* G01X028846Y002803D01* X028912Y003003D02* G01Y00287D01* X028846Y00307D02* G01X028912Y003003D01* X028579Y00307D02* G01X028846D01* X028512Y003003D02* G01X028579Y00307D01* X028512Y00287D02* G01Y003003D01* X028579Y002803D02* G01X028512Y00287D01* X028846Y002803D02* G01X028579D01* X028912Y002736D02* G01X028846Y002803D01* X028912Y002603D02* G01Y002736D01* X028846Y002536D02* G01X028912Y002603D01* X028579Y002536D02* G01X028846D01* X028512Y002603D02* G01X028579Y002536D01* X028512Y002736D02* G01Y002603D01* X028579Y002803D02* G01X028512Y002736D01* X028112Y00287D02* G01X028246Y00307D01* X028112Y002736D02* G01Y00287D01* X028246Y002536D02* G01X028112Y002736D01* X024779Y002536D02* G01X025179Y00307D01* X024846Y002536D02* G01X024779Y002603D01* X025112Y002536D02* G01X024846D01* X025179Y002603D02* G01X025112Y002536D01* X025179Y003003D02* G01Y002603D01* X025112Y00307D02* G01X025179Y003003D01* X024846Y00307D02* G01X025112D01* X024779Y003003D02* G01X024846Y00307D01* X024779Y002603D02* G01Y003003D01* X024246Y002536D02* G01X024646Y00307D01* X024312Y002536D02* G01X024246Y002603D01* X024579Y002536D02* G01X024312D01* X024646Y002603D02* G01X024579Y002536D01* X024646Y003003D02* G01Y002603D01* X024579Y00307D02* G01X024646Y003003D01* X024312Y00307D02* G01X024579D01* X024246Y003003D02* G01X024312Y00307D01* X024246Y002603D02* G01Y003003D01* X023979Y002603D02* G01X023912Y002536D01* Y00267D02* G01X023979Y002603D01* X023846D02* G01X023912Y00267D01* Y002536D02* G01X023846Y002603D01* X023312Y002803D02* G01X023446D01* X023246Y002536D02* G01X023179Y002603D01* X023512Y002536D02* G01X023246D01* X023579Y002603D02* G01X023512Y002536D01* X023579Y002736D02* G01Y002603D01* X023446Y002803D02* G01X023579Y002736D01* Y00287D02* G01X023446Y002803D01* X023579Y003003D02* G01Y00287D01* X023512Y00307D02* G01X023579Y003003D01* X023246Y00307D02* G01X023512D01* X023179Y003003D02* G01X023246Y00307D01* X022712Y00287D02* G01X023046D01* X022712Y002736D02* G01X023046D01* X022112Y002603D02* G01Y00287D01* X022179Y002536D02* G01X022112Y002603D01* X022379Y002536D02* G01X022179D01* X022446Y002603D02* G01X022379Y002536D01* X022446Y002403D02* G01Y00287D01* X022379Y002336D02* G01X022446Y002403D01* X022179Y002336D02* G01X022379D01* X022112Y002403D02* G01X022179Y002336D01* X021046Y002536D02* G01X021446Y00307D01* X019979Y002536D02* G01X020379Y00307D01* X020046Y002536D02* G01X019979Y002603D01* X020312Y002536D02* G01X020046D01* X020379Y002603D02* G01X020312Y002536D01* X020379Y003003D02* G01Y002603D01* X020312Y00307D02* G01X020379Y003003D01* X020046Y00307D02* G01X020312D01* X019979Y003003D02* G01X020046Y00307D01* X019979Y002603D02* G01Y003003D01* X019446Y002536D02* G01X019846Y00307D01* X019512Y002536D02* G01X019446Y002603D01* X019779Y002536D02* G01X019512D01* X019846Y002603D02* G01X019779Y002536D01* X019846Y003003D02* G01Y002603D01* X019779Y00307D02* G01X019846Y003003D01* X019512Y00307D02* G01X019779D01* X019446Y003003D02* G01X019512Y00307D01* X019446Y002603D02* G01Y003003D01* X019179Y002603D02* G01X019112Y002536D01* Y00267D02* G01X019179Y002603D01* X019046D02* G01X019112Y00267D01* Y002536D02* G01X019046Y002603D01* X018379Y002536D02* G01X018779Y00307D01* X018446Y002536D02* G01X018379Y002603D01* X018712Y002536D02* G01X018446D01* X018779Y002603D02* G01X018712Y002536D01* X018779Y003003D02* G01Y002603D01* X018712Y00307D02* G01X018779Y003003D01* X018446Y00307D02* G01X018712D01* X018379Y003003D02* G01X018446Y00307D01* X018379Y002603D02* G01Y003003D01* X018179Y002803D02* G01X018246Y00287D01* X017912Y002803D02* G01X018179D01* X017846Y00287D02* G01X017912Y002803D01* X017846Y003003D02* G01Y00287D01* X017912Y00307D02* G01X017846Y003003D01* X018179Y00307D02* G01X017912D01* X018246Y003003D02* G01X018179Y00307D01* X018246Y002603D02* G01Y003003D01* X018179Y002536D02* G01X018246Y002603D01* X017912Y002536D02* G01X018179D01* X017846Y002603D02* G01X017912Y002536D01* X017379Y00287D02* G01X017712D01* X017379Y002736D02* G01X017712D01* X016779Y00287D02* G01X017112Y002536D01* X016779D02* G01X017112Y00287D01* X015979D02* G01X015846Y00307D01* X015979Y002736D02* G01Y00287D01* X015846Y002536D02* G01X015979Y002736D01* X015512Y00307D02* G01Y002536D01* X015179Y002803D02* G01X015579D01* X015179Y00307D02* G01Y002803D01* X014779Y00287D02* G01X014912Y00307D01* X014779Y002736D02* G01Y00287D01* X014912Y002536D02* G01X014779Y002736D01* X039179Y003436D02* G01X039579Y00397D01* X039246Y003436D02* G01X039179Y003503D01* X039512Y003436D02* G01X039246D01* X039579Y003503D02* G01X039512Y003436D01* X039579Y003903D02* G01Y003503D01* X039512Y00397D02* G01X039579Y003903D01* X039246Y00397D02* G01X039512D01* X039179Y003903D02* G01X039246Y00397D01* X039179Y003503D02* G01Y003903D01* X038646Y003436D02* G01X039046Y00397D01* X038712Y003436D02* G01X038646Y003503D01* X038979Y003436D02* G01X038712D01* X039046Y003503D02* G01X038979Y003436D01* X039046Y003903D02* G01Y003503D01* X038979Y00397D02* G01X039046Y003903D01* X038712Y00397D02* G01X038979D01* X038646Y003903D02* G01X038712Y00397D01* X038646Y003503D02* G01Y003903D01* X038379Y003503D02* G01X038312Y003436D01* Y00357D02* G01X038379Y003503D01* X038246D02* G01X038312Y00357D01* Y003436D02* G01X038246Y003503D01* X037579Y003436D02* G01X037979Y00397D01* X037646Y003436D02* G01X037579Y003503D01* X037912Y003436D02* G01X037646D01* X037979Y003503D02* G01X037912Y003436D01* X037979Y003903D02* G01Y003503D01* X037912Y00397D02* G01X037979Y003903D01* X037646Y00397D02* G01X037912D01* X037579Y003903D02* G01X037646Y00397D01* X037579Y003503D02* G01Y003903D01* X036579Y00377D02* G01X036912D01* X036579Y003636D02* G01X036912D01* X035979Y003503D02* G01Y00377D01* X036046Y003436D02* G01X035979Y003503D01* X036246Y003436D02* G01X036046D01* X036312Y003503D02* G01X036246Y003436D01* X036312Y003303D02* G01Y00377D01* X036246Y003236D02* G01X036312Y003303D01* X036046Y003236D02* G01X036246D01* X035979Y003303D02* G01X036046Y003236D01* X034912Y003436D02* G01X035312Y00397D01* X033846D02* G01X034246D01* X033846Y00377D02* G01Y00397D01* X034179Y00377D02* G01X033846D01* X034246Y003703D02* G01X034179Y00377D01* X034246Y003503D02* G01Y003703D01* X034179Y003436D02* G01X034246Y003503D01* X033912Y003436D02* G01X034179D01* X033846Y003503D02* G01X033912Y003436D01* X033446Y003703D02* G01X033579D01* X033379Y003436D02* G01X033312Y003503D01* X033646Y003436D02* G01X033379D01* X033712Y003503D02* G01X033646Y003436D01* X033712Y003636D02* G01Y003503D01* X033579Y003703D02* G01X033712Y003636D01* Y00377D02* G01X033579Y003703D01* X033712Y003903D02* G01Y00377D01* X033646Y00397D02* G01X033712Y003903D01* X033379Y00397D02* G01X033646D01* X033312Y003903D02* G01X033379Y00397D01* X033046Y003503D02* G01X032979Y003436D01* Y00357D02* G01X033046Y003503D01* X032912D02* G01X032979Y00357D01* Y003436D02* G01X032912Y003503D01* X032379Y003703D02* G01X032512D01* X032312Y003436D02* G01X032246Y003503D01* X032579Y003436D02* G01X032312D01* X032646Y003503D02* G01X032579Y003436D01* X032646Y003636D02* G01Y003503D01* X032512Y003703D02* G01X032646Y003636D01* Y00377D02* G01X032512Y003703D01* X032646Y003903D02* G01Y00377D01* X032579Y00397D02* G01X032646Y003903D01* X032312Y00397D02* G01X032579D01* X032246Y003903D02* G01X032312Y00397D01* X031712Y003436D02* G01X032112D01* X031712Y003503D02* G01Y003436D01* X032046Y003703D02* G01X031712Y003503D01* X032112Y00377D02* G01X032046Y003703D01* X032112Y003903D02* G01Y00377D01* X032046Y00397D02* G01X032112Y003903D01* X031779Y00397D02* G01X032046D01* X031712Y003903D02* G01X031779Y00397D01* X031179Y003436D02* G01X031579D01* X031179Y003503D02* G01Y003436D01* X031512Y003703D02* G01X031179Y003503D01* X031579Y00377D02* G01X031512Y003703D01* X031579Y003903D02* G01Y00377D01* X031512Y00397D02* G01X031579Y003903D01* X031246Y00397D02* G01X031512D01* X031179Y003903D02* G01X031246Y00397D01* X030712Y00377D02* G01X031046D01* X030712Y003636D02* G01X031046D01* X030112Y00377D02* G01X030446Y003436D01* X030112D02* G01X030446Y00377D01* X029312D02* G01X029179Y00397D01* X029312Y003636D02* G01Y00377D01* X029179Y003436D02* G01X029312Y003636D01* X028912Y003836D02* G01X028646Y003436D01* X028912Y00397D02* G01Y003836D01* X028512Y00397D02* G01X028912D01* X028512Y003903D02* G01Y00397D01* X028112Y00377D02* G01X028246Y00397D01* X028112Y003636D02* G01Y00377D01* X028246Y003436D02* G01X028112Y003636D01* X024779Y003436D02* G01X025179Y00397D01* X024846Y003436D02* G01X024779Y003503D01* X025112Y003436D02* G01X024846D01* X025179Y003503D02* G01X025112Y003436D01* X025179Y003903D02* G01Y003503D01* X025112Y00397D02* G01X025179Y003903D01* X024846Y00397D02* G01X025112D01* X024779Y003903D02* G01X024846Y00397D01* X024779Y003503D02* G01Y003903D01* X024246Y003436D02* G01X024646Y00397D01* X024312Y003436D02* G01X024246Y003503D01* X024579Y003436D02* G01X024312D01* X024646Y003503D02* G01X024579Y003436D01* X024646Y003903D02* G01Y003503D01* X024579Y00397D02* G01X024646Y003903D01* X024312Y00397D02* G01X024579D01* X024246Y003903D02* G01X024312Y00397D01* X024246Y003503D02* G01Y003903D01* X023979Y003503D02* G01X023912Y003436D01* Y00357D02* G01X023979Y003503D01* X023846D02* G01X023912Y00357D01* Y003436D02* G01X023846Y003503D01* X023312Y003703D02* G01X023446D01* X023246Y003436D02* G01X023179Y003503D01* X023512Y003436D02* G01X023246D01* X023579Y003503D02* G01X023512Y003436D01* X023579Y003636D02* G01Y003503D01* X023446Y003703D02* G01X023579Y003636D01* Y00377D02* G01X023446Y003703D01* X023579Y003903D02* G01Y00377D01* X023512Y00397D02* G01X023579Y003903D01* X023246Y00397D02* G01X023512D01* X023179Y003903D02* G01X023246Y00397D01* X022712Y00377D02* G01X023046D01* X022712Y003636D02* G01X023046D01* X022112Y003503D02* G01Y00377D01* X022179Y003436D02* G01X022112Y003503D01* X022379Y003436D02* G01X022179D01* X022446Y003503D02* G01X022379Y003436D01* X022446Y003303D02* G01Y00377D01* X022379Y003236D02* G01X022446Y003303D01* X022179Y003236D02* G01X022379D01* X022112Y003303D02* G01X022179Y003236D01* X021046Y003436D02* G01X021446Y00397D01* X019979Y003436D02* G01X020379Y00397D01* X020046Y003436D02* G01X019979Y003503D01* X020312Y003436D02* G01X020046D01* X020379Y003503D02* G01X020312Y003436D01* X020379Y003903D02* G01Y003503D01* X020312Y00397D02* G01X020379Y003903D01* X020046Y00397D02* G01X020312D01* X019979Y003903D02* G01X020046Y00397D01* X019979Y003503D02* G01Y003903D01* X019446Y003436D02* G01X019846Y00397D01* X019512Y003436D02* G01X019446Y003503D01* X019779Y003436D02* G01X019512D01* X019846Y003503D02* G01X019779Y003436D01* X019846Y003903D02* G01Y003503D01* X019779Y00397D02* G01X019846Y003903D01* X019512Y00397D02* G01X019779D01* X019446Y003903D02* G01X019512Y00397D01* X019446Y003503D02* G01Y003903D01* X019179Y003503D02* G01X019112Y003436D01* Y00357D02* G01X019179Y003503D01* X019046D02* G01X019112Y00357D01* Y003436D02* G01X019046Y003503D01* X018712Y003703D02* G01X018779Y00377D01* X018446Y003703D02* G01X018712D01* X018379Y00377D02* G01X018446Y003703D01* X018379Y003903D02* G01Y00377D01* X018446Y00397D02* G01X018379Y003903D01* X018712Y00397D02* G01X018446D01* X018779Y003903D02* G01X018712Y00397D01* X018779Y003503D02* G01Y003903D01* X018712Y003436D02* G01X018779Y003503D01* X018446Y003436D02* G01X018712D01* X018379Y003503D02* G01X018446Y003436D01* X017379Y00377D02* G01X017712D01* X017379Y003636D02* G01X017712D01* X016779Y00377D02* G01X017112Y003436D01* X016779D02* G01X017112Y00377D01* X015979D02* G01X015846Y00397D01* X015979Y003636D02* G01Y00377D01* X015846Y003436D02* G01X015979Y003636D01* X015312Y003703D02* G01X015446D01* X015246Y003436D02* G01X015179Y003503D01* X015512Y003436D02* G01X015246D01* X015579Y003503D02* G01X015512Y003436D01* X015579Y003636D02* G01Y003503D01* X015446Y003703D02* G01X015579Y003636D01* Y00377D02* G01X015446Y003703D01* X015579Y003903D02* G01Y00377D01* X015512Y00397D02* G01X015579Y003903D01* X015246Y00397D02* G01X015512D01* X015179Y003903D02* G01X015246Y00397D01* X014779Y00377D02* G01X014912Y00397D01* X014779Y003636D02* G01Y00377D01* X014912Y003436D02* G01X014779Y003636D01* X039179Y004336D02* G01X039579Y00487D01* X039246Y004336D02* G01X039179Y004403D01* X039512Y004336D02* G01X039246D01* X039579Y004403D02* G01X039512Y004336D01* X039579Y004803D02* G01Y004403D01* X039512Y00487D02* G01X039579Y004803D01* X039246Y00487D02* G01X039512D01* X039179Y004803D02* G01X039246Y00487D01* X039179Y004403D02* G01Y004803D01* X038646Y004336D02* G01X039046Y00487D01* X038712Y004336D02* G01X038646Y004403D01* X038979Y004336D02* G01X038712D01* X039046Y004403D02* G01X038979Y004336D01* X039046Y004803D02* G01Y004403D01* X038979Y00487D02* G01X039046Y004803D01* X038712Y00487D02* G01X038979D01* X038646Y004803D02* G01X038712Y00487D01* X038646Y004403D02* G01Y004803D01* X038379Y004403D02* G01X038312Y004336D01* Y00447D02* G01X038379Y004403D01* X038246D02* G01X038312Y00447D01* Y004336D02* G01X038246Y004403D01* X037579Y004336D02* G01X037979D01* X037579Y004403D02* G01Y004336D01* X037912Y004603D02* G01X037579Y004403D01* X037979Y00467D02* G01X037912Y004603D01* X037979Y004803D02* G01Y00467D01* X037912Y00487D02* G01X037979Y004803D01* X037646Y00487D02* G01X037912D01* X037579Y004803D02* G01X037646Y00487D01* X037046Y004603D02* G01X037446D01* X036579Y00467D02* G01X036912D01* X036579Y004536D02* G01X036912D01* X035979Y004403D02* G01Y00467D01* X036046Y004336D02* G01X035979Y004403D01* X036246Y004336D02* G01X036046D01* X036312Y004403D02* G01X036246Y004336D01* X036312Y004203D02* G01Y00467D01* X036246Y004136D02* G01X036312Y004203D01* X036046Y004136D02* G01X036246D01* X035979Y004203D02* G01X036046Y004136D01* X034912Y004336D02* G01X035312Y00487D01* X033846D02* G01X034246D01* X033846Y00467D02* G01Y00487D01* X034179Y00467D02* G01X033846D01* X034246Y004603D02* G01X034179Y00467D01* X034246Y004403D02* G01Y004603D01* X034179Y004336D02* G01X034246Y004403D01* X033912Y004336D02* G01X034179D01* X033846Y004403D02* G01X033912Y004336D01* X033446Y004603D02* G01X033579D01* X033379Y004336D02* G01X033312Y004403D01* X033646Y004336D02* G01X033379D01* X033712Y004403D02* G01X033646Y004336D01* X033712Y004536D02* G01Y004403D01* X033579Y004603D02* G01X033712Y004536D01* Y00467D02* G01X033579Y004603D01* X033712Y004803D02* G01Y00467D01* X033646Y00487D02* G01X033712Y004803D01* X033379Y00487D02* G01X033646D01* X033312Y004803D02* G01X033379Y00487D01* X033046Y004403D02* G01X032979Y004336D01* Y00447D02* G01X033046Y004403D01* X032912D02* G01X032979Y00447D01* Y004336D02* G01X032912Y004403D01* X032379Y004603D02* G01X032512D01* X032312Y004336D02* G01X032246Y004403D01* X032579Y004336D02* G01X032312D01* X032646Y004403D02* G01X032579Y004336D01* X032646Y004536D02* G01Y004403D01* X032512Y004603D02* G01X032646Y004536D01* Y00467D02* G01X032512Y004603D01* X032646Y004803D02* G01Y00467D01* X032579Y00487D02* G01X032646Y004803D01* X032312Y00487D02* G01X032579D01* X032246Y004803D02* G01X032312Y00487D01* X031712Y004336D02* G01X032112D01* X031712Y004403D02* G01Y004336D01* X032046Y004603D02* G01X031712Y004403D01* X032112Y00467D02* G01X032046Y004603D01* X032112Y004803D02* G01Y00467D01* X032046Y00487D02* G01X032112Y004803D01* X031779Y00487D02* G01X032046D01* X031712Y004803D02* G01X031779Y00487D01* X031179Y004336D02* G01X031579D01* X031179Y004403D02* G01Y004336D01* X031512Y004603D02* G01X031179Y004403D01* X031579Y00467D02* G01X031512Y004603D01* X031579Y004803D02* G01Y00467D01* X031512Y00487D02* G01X031579Y004803D01* X031246Y00487D02* G01X031512D01* X031179Y004803D02* G01X031246Y00487D01* X030712Y00467D02* G01X031046D01* X030712Y004536D02* G01X031046D01* X030112Y00467D02* G01X030446Y004336D01* X030112D02* G01X030446Y00467D01* X029312D02* G01X029179Y00487D01* X029312Y004536D02* G01Y00467D01* X029179Y004336D02* G01X029312Y004536D01* X028579Y004603D02* G01X028512Y004536D01* X028846Y004603D02* G01X028579D01* X028912Y004536D02* G01X028846Y004603D01* X028912Y004403D02* G01Y004536D01* X028846Y004336D02* G01X028912Y004403D01* X028579Y004336D02* G01X028846D01* X028512Y004403D02* G01X028579Y004336D01* X028512Y004803D02* G01Y004403D01* X028579Y00487D02* G01X028512Y004803D01* X028846Y00487D02* G01X028579D01* X028912Y004803D02* G01X028846Y00487D01* X028112Y00467D02* G01X028246Y00487D01* X028112Y004536D02* G01Y00467D01* X028246Y004336D02* G01X028112Y004536D01* X024779Y004336D02* G01X025179Y00487D01* X024846Y004336D02* G01X024779Y004403D01* X025112Y004336D02* G01X024846D01* X025179Y004403D02* G01X025112Y004336D01* X025179Y004803D02* G01Y004403D01* X025112Y00487D02* G01X025179Y004803D01* X024846Y00487D02* G01X025112D01* X024779Y004803D02* G01X024846Y00487D01* X024779Y004403D02* G01Y004803D01* X024246Y004336D02* G01X024646Y00487D01* X024312Y004336D02* G01X024246Y004403D01* X024579Y004336D02* G01X024312D01* X024646Y004403D02* G01X024579Y004336D01* X024646Y004803D02* G01Y004403D01* X024579Y00487D02* G01X024646Y004803D01* X024312Y00487D02* G01X024579D01* X024246Y004803D02* G01X024312Y00487D01* X024246Y004403D02* G01Y004803D01* X023979Y004403D02* G01X023912Y004336D01* Y00447D02* G01X023979Y004403D01* X023846D02* G01X023912Y00447D01* Y004336D02* G01X023846Y004403D01* X023179Y004336D02* G01X023579Y00487D01* X023246Y004336D02* G01X023179Y004403D01* X023512Y004336D02* G01X023246D01* X023579Y004403D02* G01X023512Y004336D01* X023579Y004803D02* G01Y004403D01* X023512Y00487D02* G01X023579Y004803D01* X023246Y00487D02* G01X023512D01* X023179Y004803D02* G01X023246Y00487D01* X023179Y004403D02* G01Y004803D01* X022712Y00467D02* G01X023046D01* X022712Y004536D02* G01X023046D01* X022112Y004403D02* G01Y00467D01* X022179Y004336D02* G01X022112Y004403D01* X022379Y004336D02* G01X022179D01* X022446Y004403D02* G01X022379Y004336D01* X022446Y004203D02* G01Y00467D01* X022379Y004136D02* G01X022446Y004203D01* X022179Y004136D02* G01X022379D01* X022112Y004203D02* G01X022179Y004136D01* X021046Y004336D02* G01X021446Y00487D01* X019979Y004336D02* G01X020379Y00487D01* X020046Y004336D02* G01X019979Y004403D01* X020312Y004336D02* G01X020046D01* X020379Y004403D02* G01X020312Y004336D01* X020379Y004803D02* G01Y004403D01* X020312Y00487D02* G01X020379Y004803D01* X020046Y00487D02* G01X020312D01* X019979Y004803D02* G01X020046Y00487D01* X019979Y004403D02* G01Y004803D01* X019446Y004336D02* G01X019846Y00487D01* X019512Y004336D02* G01X019446Y004403D01* X019779Y004336D02* G01X019512D01* X019846Y004403D02* G01X019779Y004336D01* X019846Y004803D02* G01Y004403D01* X019779Y00487D02* G01X019846Y004803D01* X019512Y00487D02* G01X019779D01* X019446Y004803D02* G01X019512Y00487D01* X019446Y004403D02* G01Y004803D01* X019179Y004403D02* G01X019112Y004336D01* Y00447D02* G01X019179Y004403D01* X019046D02* G01X019112Y00447D01* Y004336D02* G01X019046Y004403D01* X018712Y004603D02* G01X018779Y00467D01* X018446Y004603D02* G01X018712D01* X018379Y00467D02* G01X018446Y004603D01* X018379Y004803D02* G01Y00467D01* X018446Y00487D02* G01X018379Y004803D01* X018712Y00487D02* G01X018446D01* X018779Y004803D02* G01X018712Y00487D01* X018779Y004403D02* G01Y004803D01* X018712Y004336D02* G01X018779Y004403D01* X018446Y004336D02* G01X018712D01* X018379Y004403D02* G01X018446Y004336D01* X017379Y00467D02* G01X017712D01* X017379Y004536D02* G01X017712D01* X016779Y00467D02* G01X017112Y004336D01* X016779D02* G01X017112Y00467D01* X015979D02* G01X015846Y00487D01* X015979Y004536D02* G01Y00467D01* X015846Y004336D02* G01X015979Y004536D01* X015179Y004336D02* G01X015579D01* X015179Y004403D02* G01Y004336D01* X015512Y004603D02* G01X015179Y004403D01* X015579Y00467D02* G01X015512Y004603D01* X015579Y004803D02* G01Y00467D01* X015512Y00487D02* G01X015579Y004803D01* X015246Y00487D02* G01X015512D01* X015179Y004803D02* G01X015246Y00487D01* X014779Y00467D02* G01X014912Y00487D01* X014779Y004536D02* G01Y00467D01* X014912Y004336D02* G01X014779Y004536D01* X039179Y005236D02* G01X039579Y00577D01* X039246Y005236D02* G01X039179Y005303D01* X039512Y005236D02* G01X039246D01* X039579Y005303D02* G01X039512Y005236D01* X039579Y005703D02* G01Y005303D01* X039512Y00577D02* G01X039579Y005703D01* X039246Y00577D02* G01X039512D01* X039179Y005703D02* G01X039246Y00577D01* X039179Y005303D02* G01Y005703D01* X038646Y005236D02* G01X039046Y00577D01* X038712Y005236D02* G01X038646Y005303D01* X038979Y005236D02* G01X038712D01* X039046Y005303D02* G01X038979Y005236D01* X039046Y005703D02* G01Y005303D01* X038979Y00577D02* G01X039046Y005703D01* X038712Y00577D02* G01X038979D01* X038646Y005703D02* G01X038712Y00577D01* X038646Y005303D02* G01Y005703D01* X038379Y005303D02* G01X038312Y005236D01* Y00537D02* G01X038379Y005303D01* X038246D02* G01X038312Y00537D01* Y005236D02* G01X038246Y005303D01* X037579Y005236D02* G01X037979D01* X037579Y005303D02* G01Y005236D01* X037912Y005503D02* G01X037579Y005303D01* X037979Y00557D02* G01X037912Y005503D01* X037979Y005703D02* G01Y00557D01* X037912Y00577D02* G01X037979Y005703D01* X037646Y00577D02* G01X037912D01* X037579Y005703D02* G01X037646Y00577D01* X037046Y005503D02* G01X037446D01* X036579Y00557D02* G01X036912D01* X036579Y005436D02* G01X036912D01* X035979Y005303D02* G01Y00557D01* X036046Y005236D02* G01X035979Y005303D01* X036246Y005236D02* G01X036046D01* X036312Y005303D02* G01X036246Y005236D01* X036312Y005103D02* G01Y00557D01* X036246Y005036D02* G01X036312Y005103D01* X036046Y005036D02* G01X036246D01* X035979Y005103D02* G01X036046Y005036D01* X034912Y005236D02* G01X035312Y00577D01* X033846Y005236D02* G01X034246Y00577D01* X033912Y005236D02* G01X033846Y005303D01* X034179Y005236D02* G01X033912D01* X034246Y005303D02* G01X034179Y005236D01* X034246Y005703D02* G01Y005303D01* X034179Y00577D02* G01X034246Y005703D01* X033912Y00577D02* G01X034179D01* X033846Y005703D02* G01X033912Y00577D01* X033846Y005303D02* G01Y005703D01* X033312Y005236D02* G01X033712Y00577D01* X033379Y005236D02* G01X033312Y005303D01* X033646Y005236D02* G01X033379D01* X033712Y005303D02* G01X033646Y005236D01* X033712Y005703D02* G01Y005303D01* X033646Y00577D02* G01X033712Y005703D01* X033379Y00577D02* G01X033646D01* X033312Y005703D02* G01X033379Y00577D01* X033312Y005303D02* G01Y005703D01* X033046Y005303D02* G01X032979Y005236D01* Y00537D02* G01X033046Y005303D01* X032912D02* G01X032979Y00537D01* Y005236D02* G01X032912Y005303D01* X032246Y005236D02* G01X032646Y00577D01* X032312Y005236D02* G01X032246Y005303D01* X032579Y005236D02* G01X032312D01* X032646Y005303D02* G01X032579Y005236D01* X032646Y005703D02* G01Y005303D01* X032579Y00577D02* G01X032646Y005703D01* X032312Y00577D02* G01X032579D01* X032246Y005703D02* G01X032312Y00577D01* X032246Y005303D02* G01Y005703D01* X032046Y005503D02* G01X032112Y00557D01* X031779Y005503D02* G01X032046D01* X031712Y00557D02* G01X031779Y005503D01* X031712Y005703D02* G01Y00557D01* X031779Y00577D02* G01X031712Y005703D01* X032046Y00577D02* G01X031779D01* X032112Y005703D02* G01X032046Y00577D01* X032112Y005303D02* G01Y005703D01* X032046Y005236D02* G01X032112Y005303D01* X031779Y005236D02* G01X032046D01* X031712Y005303D02* G01X031779Y005236D01* X030712Y00557D02* G01X031046D01* X030712Y005436D02* G01X031046D01* X030112Y00557D02* G01X030446Y005236D01* X030112D02* G01X030446Y00557D01* X029312D02* G01X029179Y00577D01* X029312Y005436D02* G01Y00557D01* X029179Y005236D02* G01X029312Y005436D01* X028512Y00577D02* G01X028912D01* X028512Y00557D02* G01Y00577D01* X028846Y00557D02* G01X028512D01* X028912Y005503D02* G01X028846Y00557D01* X028912Y005303D02* G01Y005503D01* X028846Y005236D02* G01X028912Y005303D01* X028579Y005236D02* G01X028846D01* X028512Y005303D02* G01X028579Y005236D01* X028112Y00557D02* G01X028246Y00577D01* X028112Y005436D02* G01Y00557D01* X028246Y005236D02* G01X028112Y005436D01* X024779Y005236D02* G01X025179Y00577D01* X024846Y005236D02* G01X024779Y005303D01* X025112Y005236D02* G01X024846D01* X025179Y005303D02* G01X025112Y005236D01* X025179Y005703D02* G01Y005303D01* X025112Y00577D02* G01X025179Y005703D01* X024846Y00577D02* G01X025112D01* X024779Y005703D02* G01X024846Y00577D01* X024779Y005303D02* G01Y005703D01* X024246Y005236D02* G01X024646Y00577D01* X024312Y005236D02* G01X024246Y005303D01* X024579Y005236D02* G01X024312D01* X024646Y005303D02* G01X024579Y005236D01* X024646Y005703D02* G01Y005303D01* X024579Y00577D02* G01X024646Y005703D01* X024312Y00577D02* G01X024579D01* X024246Y005703D02* G01X024312Y00577D01* X024246Y005303D02* G01Y005703D01* X023979Y005303D02* G01X023912Y005236D01* Y00537D02* G01X023979Y005303D01* X023846D02* G01X023912Y00537D01* Y005236D02* G01X023846Y005303D01* X023179Y005236D02* G01X023579Y00577D01* X023246Y005236D02* G01X023179Y005303D01* X023512Y005236D02* G01X023246D01* X023579Y005303D02* G01X023512Y005236D01* X023579Y005703D02* G01Y005303D01* X023512Y00577D02* G01X023579Y005703D01* X023246Y00577D02* G01X023512D01* X023179Y005703D02* G01X023246Y00577D01* X023179Y005303D02* G01Y005703D01* X022712Y00557D02* G01X023046D01* X022712Y005436D02* G01X023046D01* X022112Y005303D02* G01Y00557D01* X022179Y005236D02* G01X022112Y005303D01* X022379Y005236D02* G01X022179D01* X022446Y005303D02* G01X022379Y005236D01* X022446Y005103D02* G01Y00557D01* X022379Y005036D02* G01X022446Y005103D01* X022179Y005036D02* G01X022379D01* X022112Y005103D02* G01X022179Y005036D01* X021046Y005236D02* G01X021446Y00577D01* X019979Y005236D02* G01X020379Y00577D01* X020046Y005236D02* G01X019979Y005303D01* X020312Y005236D02* G01X020046D01* X020379Y005303D02* G01X020312Y005236D01* X020379Y005703D02* G01Y005303D01* X020312Y00577D02* G01X020379Y005703D01* X020046Y00577D02* G01X020312D01* X019979Y005703D02* G01X020046Y00577D01* X019979Y005303D02* G01Y005703D01* X019446Y005236D02* G01X019846Y00577D01* X019512Y005236D02* G01X019446Y005303D01* X019779Y005236D02* G01X019512D01* X019846Y005303D02* G01X019779Y005236D01* X019846Y005703D02* G01Y005303D01* X019779Y00577D02* G01X019846Y005703D01* X019512Y00577D02* G01X019779D01* X019446Y005703D02* G01X019512Y00577D01* X019446Y005303D02* G01Y005703D01* X019179Y005303D02* G01X019112Y005236D01* Y00537D02* G01X019179Y005303D01* X019046D02* G01X019112Y00537D01* Y005236D02* G01X019046Y005303D01* X018379Y005236D02* G01X018779Y00577D01* X018446Y005236D02* G01X018379Y005303D01* X018712Y005236D02* G01X018446D01* X018779Y005303D02* G01X018712Y005236D01* X018779Y005703D02* G01Y005303D01* X018712Y00577D02* G01X018779Y005703D01* X018446Y00577D02* G01X018712D01* X018379Y005703D02* G01X018446Y00577D01* X018379Y005303D02* G01Y005703D01* X017379Y00557D02* G01X017712D01* X017379Y005436D02* G01X017712D01* X016779Y00557D02* G01X017112Y005236D01* X016779D02* G01X017112Y00557D01* X015979D02* G01X015846Y00577D01* X015979Y005436D02* G01Y00557D01* X015846Y005236D02* G01X015979Y005436D01* X015379Y00577D02* G01X015246Y005636D01* X015379Y005236D02* G01Y00577D01* X015179Y005236D02* G01X015579D01* X014779Y00557D02* G01X014912Y00577D01* X014779Y005436D02* G01Y00557D01* X014912Y005236D02* G01X014779Y005436D01* X014964Y009667D02* G01X01483Y009534D01* X014964Y009134D02* G01Y009667D01* X014764Y009134D02* G01X015164D01* X107054Y009467D02* G01X106987Y009401D01* X107054Y009601D02* G01Y009467D01* X106987Y009667D02* G01X107054Y009601D01* X10672Y009667D02* G01X106987D01* X106654Y009601D02* G01X10672Y009667D01* X106654Y009467D02* G01Y009601D01* X10672Y009401D02* G01X106654Y009467D01* X106987Y009401D02* G01X10672D01* X107054Y009334D02* G01X106987Y009401D01* X107054Y009201D02* G01Y009334D01* X106987Y009134D02* G01X107054Y009201D01* X10672Y009134D02* G01X106987D01* X106654Y009201D02* G01X10672Y009134D01* X106654Y009334D02* G01Y009201D01* X10672Y009401D02* G01X106654Y009334D01* X013946Y069828D02* G01X014213D01* X013879Y069761D02* G01X013946Y069828D01* X013879Y069694D02* G01Y069761D01* X013946Y069628D02* G01X013879Y069694D01* X013946Y069628D02* G01X014213D01* X013879Y069561D02* G01X013946Y069628D01* X013879Y069494D02* G01Y069561D01* X013946Y069428D02* G01X013879Y069494D01* X014213Y069428D02* G01X013879D01* X013946Y069294D02* G01X014213D01* X013879Y069228D02* G01X013946Y069294D01* X013879Y069161D02* G01Y069228D01* X013946Y069094D02* G01X013879Y069161D01* X013946Y069094D02* G01X014213D01* X013879Y069028D02* G01X013946Y069094D01* X013879Y068961D02* G01Y069028D01* X013946Y068894D02* G01X013879Y068961D01* X014213Y068894D02* G01X013879D01* X014213Y068361D02* G01X013679Y068761D01* X014213Y068428D02* G01X014146Y068361D01* X014213Y068694D02* G01Y068428D01* X014146Y068761D02* G01X014213Y068694D01* X013746Y068761D02* G01X014146D01* X013679Y068694D02* G01X013746Y068761D01* X013679Y068428D02* G01Y068694D01* X013746Y068361D02* G01X013679Y068428D01* X014146Y068361D02* G01X013746D01* X013679Y067828D02* G01Y068228D01* X013879Y067828D02* G01X013679D01* X013879Y068161D02* G01Y067828D01* X013946Y068228D02* G01X013879Y068161D01* X014146Y068228D02* G01X013946D01* X014213Y068161D02* G01X014146Y068228D01* X014213Y067894D02* G01Y068161D01* X014146Y067828D02* G01X014213Y067894D01* X014146Y067561D02* G01X014213Y067494D01* X014079D02* G01X014146Y067561D01* Y067428D02* G01X014079Y067494D01* X014213D02* G01X014146Y067428D01* X013879Y067161D02* G01X013946Y067094D01* X013746Y067161D02* G01X013879D01* X013679Y067094D02* G01X013746Y067161D01* X013679Y066828D02* G01Y067094D01* X013746Y066761D02* G01X013679Y066828D01* X013879Y066761D02* G01X013746D01* X013946Y066828D02* G01X013879Y066761D01* X013946Y067094D02* G01Y066828D01* X014013Y067161D02* G01X013946Y067094D01* X014146Y067161D02* G01X014013D01* X014213Y067094D02* G01X014146Y067161D01* X014213Y066828D02* G01Y067094D01* X014146Y066761D02* G01X014213Y066828D01* X014013Y066761D02* G01X014146D01* X013946Y066828D02* G01X014013Y066761D01* X013679Y066228D02* G01Y066628D01* X013879Y066228D02* G01X013679D01* X013879Y066561D02* G01Y066228D01* X013946Y066628D02* G01X013879Y066561D01* X014146Y066628D02* G01X013946D01* X014213Y066561D02* G01X014146Y066628D01* X014213Y066294D02* G01Y066561D01* X014146Y066228D02* G01X014213Y066294D01* X013679Y065894D02* G01X013813Y065761D01* X014213Y065894D02* G01X013679D01* X014213Y065694D02* G01Y066094D01* X013879Y065228D02* G01Y065561D01* X014013Y065228D02* G01Y065561D01* X014146Y064628D02* G01X013879D01* X014213Y064694D02* G01X014146Y064628D01* X014213Y064894D02* G01Y064694D01* X014146Y064961D02* G01X014213Y064894D01* X014346Y064961D02* G01X013879D01* X014413Y064894D02* G01X014346Y064961D01* X014413Y064694D02* G01Y064894D01* X014346Y064628D02* G01X014413Y064694D01* X012824Y069808D02* G01X013091D01* X012757Y069741D02* G01X012824Y069808D01* X012757Y069675D02* G01Y069741D01* X012824Y069608D02* G01X012757Y069675D01* X012824Y069608D02* G01X013091D01* X012757Y069541D02* G01X012824Y069608D01* X012757Y069475D02* G01Y069541D01* X012824Y069408D02* G01X012757Y069475D01* X013091Y069408D02* G01X012757D01* X012824Y069275D02* G01X013091D01* X012757Y069208D02* G01X012824Y069275D01* X012757Y069141D02* G01Y069208D01* X012824Y069075D02* G01X012757Y069141D01* X012824Y069075D02* G01X013091D01* X012757Y069008D02* G01X012824Y069075D01* X012757Y068941D02* G01Y069008D01* X012824Y068875D02* G01X012757Y068941D01* X013091Y068875D02* G01X012757D01* X013091Y068341D02* G01X012557Y068741D01* X013091Y068408D02* G01X013024Y068341D01* X013091Y068675D02* G01Y068408D01* X013024Y068741D02* G01X013091Y068675D01* X012624Y068741D02* G01X013024D01* X012557Y068675D02* G01X012624Y068741D01* X012557Y068408D02* G01Y068675D01* X012624Y068341D02* G01X012557Y068408D01* X013024Y068341D02* G01X012624D01* X013091Y067808D02* G01X012557Y068208D01* X013091Y067875D02* G01X013024Y067808D01* X013091Y068141D02* G01Y067875D01* X013024Y068208D02* G01X013091Y068141D01* X012624Y068208D02* G01X013024D01* X012557Y068141D02* G01X012624Y068208D01* X012557Y067875D02* G01Y068141D01* X012624Y067808D02* G01X012557Y067875D01* X013024Y067808D02* G01X012624D01* X013024Y067541D02* G01X013091Y067475D01* X012957D02* G01X013024Y067541D01* Y067408D02* G01X012957Y067475D01* X013091D02* G01X013024Y067408D01* X013091Y066741D02* G01X012557Y067141D01* X013091Y066808D02* G01X013024Y066741D01* X013091Y067075D02* G01Y066808D01* X013024Y067141D02* G01X013091Y067075D01* X012624Y067141D02* G01X013024D01* X012557Y067075D02* G01X012624Y067141D01* X012557Y066808D02* G01Y067075D01* X012624Y066741D02* G01X012557Y066808D01* X013024Y066741D02* G01X012624D01* X012757Y065208D02* G01Y065541D01* X012891Y065208D02* G01Y065541D01* X012757Y064608D02* G01X013091Y064941D01* Y064608D02* G01X012757Y064941D01* X023253Y07505D02* G01Y074783D01* X023186Y075117D02* G01X023253Y07505D01* X02312Y075117D02* G01X023186D01* X023053Y07505D02* G01X02312Y075117D01* X023053Y07505D02* G01Y074783D01* X022986Y075117D02* G01X023053Y07505D01* X02292Y075117D02* G01X022986D01* X022853Y07505D02* G01X02292Y075117D01* X022853Y074783D02* G01Y075117D01* X02272Y07505D02* G01Y074783D01* X022653Y075117D02* G01X02272Y07505D01* X022586Y075117D02* G01X022653D01* X02252Y07505D02* G01X022586Y075117D01* X02252Y07505D02* G01Y074783D01* X022453Y075117D02* G01X02252Y07505D01* X022386Y075117D02* G01X022453D01* X02232Y07505D02* G01X022386Y075117D01* X02232Y074783D02* G01Y075117D01* X021786Y074783D02* G01X022186Y075317D01* X021853Y074783D02* G01X021786Y07485D01* X02212Y074783D02* G01X021853D01* X022186Y07485D02* G01X02212Y074783D01* X022186Y07525D02* G01Y07485D01* X02212Y075317D02* G01X022186Y07525D01* X021853Y075317D02* G01X02212D01* X021786Y07525D02* G01X021853Y075317D01* X021786Y07485D02* G01Y07525D01* X021253Y075317D02* G01X021653D01* X021253Y075117D02* G01Y075317D01* X021586Y075117D02* G01X021253D01* X021653Y07505D02* G01X021586Y075117D01* X021653Y07485D02* G01Y07505D01* X021586Y074783D02* G01X021653Y07485D01* X02132Y074783D02* G01X021586D01* X021253Y07485D02* G01X02132Y074783D01* X020986Y07485D02* G01X02092Y074783D01* Y074917D02* G01X020986Y07485D01* X020853D02* G01X02092Y074917D01* Y074783D02* G01X020853Y07485D01* X020386Y075317D02* G01X020253Y075183D01* X020386Y074783D02* G01Y075317D01* X020186Y074783D02* G01X020586D01* X018653Y075117D02* G01X018986D01* X018653Y074983D02* G01X018986D01* X018053Y075117D02* G01X018386Y074783D01* X018053D02* G01X018386Y075117D01* X023253Y074046D02* G01Y07378D01* X023186Y074113D02* G01X023253Y074046D01* X02312Y074113D02* G01X023186D01* X023053Y074046D02* G01X02312Y074113D01* X023053Y074046D02* G01Y07378D01* X022986Y074113D02* G01X023053Y074046D01* X02292Y074113D02* G01X022986D01* X022853Y074046D02* G01X02292Y074113D01* X022853Y07378D02* G01Y074113D01* X02272Y074046D02* G01Y07378D01* X022653Y074113D02* G01X02272Y074046D01* X022586Y074113D02* G01X022653D01* X02252Y074046D02* G01X022586Y074113D01* X02252Y074046D02* G01Y07378D01* X022453Y074113D02* G01X02252Y074046D01* X022386Y074113D02* G01X022453D01* X02232Y074046D02* G01X022386Y074113D01* X02232Y07378D02* G01Y074113D01* X021786Y07378D02* G01X022186Y074313D01* X021853Y07378D02* G01X021786Y073846D01* X02212Y07378D02* G01X021853D01* X022186Y073846D02* G01X02212Y07378D01* X022186Y074246D02* G01Y073846D01* X02212Y074313D02* G01X022186Y074246D01* X021853Y074313D02* G01X02212D01* X021786Y074246D02* G01X021853Y074313D01* X021786Y073846D02* G01Y074246D01* X021253Y07378D02* G01X021653Y074313D01* X02132Y07378D02* G01X021253Y073846D01* X021586Y07378D02* G01X02132D01* X021653Y073846D02* G01X021586Y07378D01* X021653Y074246D02* G01Y073846D01* X021586Y074313D02* G01X021653Y074246D01* X02132Y074313D02* G01X021586D01* X021253Y074246D02* G01X02132Y074313D01* X021253Y073846D02* G01Y074246D01* X020986Y073846D02* G01X02092Y07378D01* Y073913D02* G01X020986Y073846D01* X020853D02* G01X02092Y073913D01* Y07378D02* G01X020853Y073846D01* X020186Y07378D02* G01X020586Y074313D01* X020253Y07378D02* G01X020186Y073846D01* X02052Y07378D02* G01X020253D01* X020586Y073846D02* G01X02052Y07378D01* X020586Y074246D02* G01Y073846D01* X02052Y074313D02* G01X020586Y074246D01* X020253Y074313D02* G01X02052D01* X020186Y074246D02* G01X020253Y074313D01* X020186Y073846D02* G01Y074246D01* X01972Y074046D02* G01X019653Y07398D01* X019986Y074046D02* G01X01972D01* X020053Y07398D02* G01X019986Y074046D01* X020053Y073846D02* G01Y07398D01* X019986Y07378D02* G01X020053Y073846D01* X01972Y07378D02* G01X019986D01* X019653Y073846D02* G01X01972Y07378D01* X019653Y074246D02* G01Y073846D01* X01972Y074313D02* G01X019653Y074246D01* X019986Y074313D02* G01X01972D01* X020053Y074246D02* G01X019986Y074313D01* X01932D02* G01X019186Y07418D01* X01932Y07378D02* G01Y074313D01* X01912Y07378D02* G01X01952D01* X018653Y074113D02* G01X018986D01* X018653Y07398D02* G01X018986D01* X018053Y073846D02* G01Y074113D01* X01812Y07378D02* G01X018053Y073846D01* X01832Y07378D02* G01X01812D01* X018386Y073846D02* G01X01832Y07378D01* X018386Y073646D02* G01Y074113D01* X01832Y07358D02* G01X018386Y073646D01* X01812Y07358D02* G01X01832D01* X018053Y073646D02* G01X01812Y07358D01* X103863Y074086D02* G01Y073819D01* X103797Y074152D02* G01X103863Y074086D01* X10373Y074152D02* G01X103797D01* X103663Y074086D02* G01X10373Y074152D01* X103663Y074086D02* G01Y073819D01* X103597Y074152D02* G01X103663Y074086D01* X10353Y074152D02* G01X103597D01* X103463Y074086D02* G01X10353Y074152D01* X103463Y073819D02* G01Y074152D01* X10333Y074086D02* G01Y073819D01* X103263Y074152D02* G01X10333Y074086D01* X103197Y074152D02* G01X103263D01* X10313Y074086D02* G01X103197Y074152D01* X10313Y074086D02* G01Y073819D01* X103063Y074152D02* G01X10313Y074086D01* X102997Y074152D02* G01X103063D01* X10293Y074086D02* G01X102997Y074152D01* X10293Y073819D02* G01Y074152D01* X102397Y073819D02* G01X102797Y074352D01* X102463Y073819D02* G01X102397Y073886D01* X10273Y073819D02* G01X102463D01* X102797Y073886D02* G01X10273Y073819D01* X102797Y074286D02* G01Y073886D01* X10273Y074352D02* G01X102797Y074286D01* X102463Y074352D02* G01X10273D01* X102397Y074286D02* G01X102463Y074352D01* X102397Y073886D02* G01Y074286D01* X101863Y073819D02* G01X102263Y074352D01* X10193Y073819D02* G01X101863Y073886D01* X102197Y073819D02* G01X10193D01* X102263Y073886D02* G01X102197Y073819D01* X102263Y074286D02* G01Y073886D01* X102197Y074352D02* G01X102263Y074286D01* X10193Y074352D02* G01X102197D01* X101863Y074286D02* G01X10193Y074352D01* X101863Y073886D02* G01Y074286D01* X101597Y073886D02* G01X10153Y073819D01* Y073952D02* G01X101597Y073886D01* X101463D02* G01X10153Y073952D01* Y073819D02* G01X101463Y073886D01* X100797Y073819D02* G01X101197Y074352D01* X100863Y073819D02* G01X100797Y073886D01* X10113Y073819D02* G01X100863D01* X101197Y073886D02* G01X10113Y073819D01* X101197Y074286D02* G01Y073886D01* X10113Y074352D02* G01X101197Y074286D01* X100863Y074352D02* G01X10113D01* X100797Y074286D02* G01X100863Y074352D01* X100797Y073886D02* G01Y074286D01* X10033Y074086D02* G01X100263Y074019D01* X100597Y074086D02* G01X10033D01* X100663Y074019D02* G01X100597Y074086D01* X100663Y073886D02* G01Y074019D01* X100597Y073819D02* G01X100663Y073886D01* X10033Y073819D02* G01X100597D01* X100263Y073886D02* G01X10033Y073819D01* X100263Y074286D02* G01Y073886D01* X10033Y074352D02* G01X100263Y074286D01* X100597Y074352D02* G01X10033D01* X100663Y074286D02* G01X100597Y074352D01* X09993D02* G01X099797Y074219D01* X09993Y073819D02* G01Y074352D01* X09973Y073819D02* G01X10013D01* X099263Y074152D02* G01X099597D01* X099263Y074019D02* G01X099597D01* X098663Y073886D02* G01Y074152D01* X09873Y073819D02* G01X098663Y073886D01* X09893Y073819D02* G01X09873D01* X098997Y073886D02* G01X09893Y073819D01* X098997Y073686D02* G01Y074152D01* X09893Y073619D02* G01X098997Y073686D01* X09873Y073619D02* G01X09893D01* X098663Y073686D02* G01X09873Y073619D01* X103863Y07509D02* G01Y074823D01* X103797Y075156D02* G01X103863Y07509D01* X10373Y075156D02* G01X103797D01* X103663Y07509D02* G01X10373Y075156D01* X103663Y07509D02* G01Y074823D01* X103597Y075156D02* G01X103663Y07509D01* X10353Y075156D02* G01X103597D01* X103463Y07509D02* G01X10353Y075156D01* X103463Y074823D02* G01Y075156D01* X10333Y07509D02* G01Y074823D01* X103263Y075156D02* G01X10333Y07509D01* X103197Y075156D02* G01X103263D01* X10313Y07509D02* G01X103197Y075156D01* X10313Y07509D02* G01Y074823D01* X103063Y075156D02* G01X10313Y07509D01* X102997Y075156D02* G01X103063D01* X10293Y07509D02* G01X102997Y075156D01* X10293Y074823D02* G01Y075156D01* X102397Y075356D02* G01X102797D01* X102397Y075156D02* G01Y075356D01* X10273Y075156D02* G01X102397D01* X102797Y07509D02* G01X10273Y075156D01* X102797Y07489D02* G01Y07509D01* X10273Y074823D02* G01X102797Y07489D01* X102463Y074823D02* G01X10273D01* X102397Y07489D02* G01X102463Y074823D01* X102263Y075156D02* G01X102197Y07509D01* X102263Y07529D02* G01Y075156D01* X102197Y075356D02* G01X102263Y07529D01* X10193Y075356D02* G01X102197D01* X101863Y07529D02* G01X10193Y075356D01* X101863Y075156D02* G01Y07529D01* X10193Y07509D02* G01X101863Y075156D01* X102197Y07509D02* G01X10193D01* X102263Y075023D02* G01X102197Y07509D01* X102263Y07489D02* G01Y075023D01* X102197Y074823D02* G01X102263Y07489D01* X10193Y074823D02* G01X102197D01* X101863Y07489D02* G01X10193Y074823D01* X101863Y075023D02* G01Y07489D01* X10193Y07509D02* G01X101863Y075023D01* X101597Y07489D02* G01X10153Y074823D01* Y074956D02* G01X101597Y07489D01* X101463D02* G01X10153Y074956D01* Y074823D02* G01X101463Y07489D01* X100997Y075356D02* G01X100863Y075223D01* X100997Y074823D02* G01Y075356D01* X100797Y074823D02* G01X101197D01* X100397Y07509D02* G01X10053D01* X10033Y074823D02* G01X100263Y07489D01* X100597Y074823D02* G01X10033D01* X100663Y07489D02* G01X100597Y074823D01* X100663Y075023D02* G01Y07489D01* X10053Y07509D02* G01X100663Y075023D01* Y075156D02* G01X10053Y07509D01* X100663Y07529D02* G01Y075156D01* X100597Y075356D02* G01X100663Y07529D01* X10033Y075356D02* G01X100597D01* X100263Y07529D02* G01X10033Y075356D01* X09973Y074823D02* G01X10013D01* X09973Y07489D02* G01Y074823D01* X100063Y07509D02* G01X09973Y07489D01* X10013Y075156D02* G01X100063Y07509D01* X10013Y07529D02* G01Y075156D01* X100063Y075356D02* G01X10013Y07529D01* X099797Y075356D02* G01X100063D01* X09973Y07529D02* G01X099797Y075356D01* X099263Y075156D02* G01X099597D01* X099263Y075023D02* G01X099597D01* X098663Y075156D02* G01X098997Y074823D01* X098663D02* G01X098997Y075156D01* X10818Y064739D02* G01X107913D01* X108247Y064806D02* G01X10818Y064739D01* X108247Y064872D02* G01Y064806D01* X10818Y064939D02* G01X108247Y064872D01* X10818Y064939D02* G01X107913D01* X108247Y065006D02* G01X10818Y064939D01* X108247Y065072D02* G01Y065006D01* X10818Y065139D02* G01X108247Y065072D01* X107913Y065139D02* G01X108247D01* X10818Y065272D02* G01X107913D01* X108247Y065339D02* G01X10818Y065272D01* X108247Y065406D02* G01Y065339D01* X10818Y065472D02* G01X108247Y065406D01* X10818Y065472D02* G01X107913D01* X108247Y065539D02* G01X10818Y065472D01* X108247Y065606D02* G01Y065539D01* X10818Y065672D02* G01X108247Y065606D01* X107913Y065672D02* G01X108247D01* X107913Y066206D02* G01X108447Y065806D01* X107913Y066139D02* G01X10798Y066206D01* X107913Y065872D02* G01Y066139D01* X10798Y065806D02* G01X107913Y065872D01* X10838Y065806D02* G01X10798D01* X108447Y065872D02* G01X10838Y065806D01* X108447Y066139D02* G01Y065872D01* X10838Y066206D02* G01X108447Y066139D01* X10798Y066206D02* G01X10838D01* X108447Y066739D02* G01Y066339D01* X108247Y066739D02* G01X108447D01* X108247Y066406D02* G01Y066739D01* X10818Y066339D02* G01X108247Y066406D01* X10798Y066339D02* G01X10818D01* X107913Y066406D02* G01X10798Y066339D01* X107913Y066672D02* G01Y066406D01* X10798Y066739D02* G01X107913Y066672D01* X10798Y067006D02* G01X107913Y067072D01* X108047D02* G01X10798Y067006D01* Y067139D02* G01X108047Y067072D01* X107913D02* G01X10798Y067139D01* X108247Y067406D02* G01X10818Y067472D01* X10838Y067406D02* G01X108247D01* X108447Y067472D02* G01X10838Y067406D01* X108447Y067739D02* G01Y067472D01* X10838Y067806D02* G01X108447Y067739D01* X108247Y067806D02* G01X10838D01* X10818Y067739D02* G01X108247Y067806D01* X10818Y067472D02* G01Y067739D01* X108113Y067406D02* G01X10818Y067472D01* X10798Y067406D02* G01X108113D01* X107913Y067472D02* G01X10798Y067406D01* X107913Y067739D02* G01Y067472D01* X10798Y067806D02* G01X107913Y067739D01* X108113Y067806D02* G01X10798D01* X10818Y067739D02* G01X108113Y067806D01* X108447Y068339D02* G01Y067939D01* X108247Y068339D02* G01X108447D01* X108247Y068006D02* G01Y068339D01* X10818Y067939D02* G01X108247Y068006D01* X10798Y067939D02* G01X10818D01* X107913Y068006D02* G01X10798Y067939D01* X107913Y068272D02* G01Y068006D01* X10798Y068339D02* G01X107913Y068272D01* X108447Y068672D02* G01X108313Y068806D01* X107913Y068672D02* G01X108447D01* X107913Y068872D02* G01Y068472D01* X108247Y069339D02* G01Y069006D01* X108113Y069339D02* G01Y069006D01* X10798Y069939D02* G01X108247D01* X107913Y069872D02* G01X10798Y069939D01* X107913Y069672D02* G01Y069872D01* X10798Y069606D02* G01X107913Y069672D01* X10778Y069606D02* G01X108247D01* X107713Y069672D02* G01X10778Y069606D01* X107713Y069872D02* G01Y069672D01* X10778Y069939D02* G01X107713Y069872D01* X109184Y064759D02* G01X108917D01* X109251Y064825D02* G01X109184Y064759D01* X109251Y064892D02* G01Y064825D01* X109184Y064959D02* G01X109251Y064892D01* X109184Y064959D02* G01X108917D01* X109251Y065025D02* G01X109184Y064959D01* X109251Y065092D02* G01Y065025D01* X109184Y065159D02* G01X109251Y065092D01* X108917Y065159D02* G01X109251D01* X109184Y065292D02* G01X108917D01* X109251Y065359D02* G01X109184Y065292D01* X109251Y065425D02* G01Y065359D01* X109184Y065492D02* G01X109251Y065425D01* X109184Y065492D02* G01X108917D01* X109251Y065559D02* G01X109184Y065492D01* X109251Y065625D02* G01Y065559D01* X109184Y065692D02* G01X109251Y065625D01* X108917Y065692D02* G01X109251D01* X109451Y066225D02* G01Y065825D01* X109251Y066225D02* G01X109451D01* X109251Y065892D02* G01Y066225D01* X109184Y065825D02* G01X109251Y065892D01* X108984Y065825D02* G01X109184D01* X108917Y065892D02* G01X108984Y065825D01* X108917Y066159D02* G01Y065892D01* X108984Y066225D02* G01X108917Y066159D01* X109184Y066625D02* G01Y066492D01* X108917Y066692D02* G01X108984Y066759D01* X108917Y066425D02* G01Y066692D01* X108984Y066359D02* G01X108917Y066425D01* X109117Y066359D02* G01X108984D01* X109184Y066492D02* G01X109117Y066359D01* X109251D02* G01X109184Y066492D01* X109384Y066359D02* G01X109251D01* X109451Y066425D02* G01X109384Y066359D01* X109451Y066692D02* G01Y066425D01* X109384Y066759D02* G01X109451Y066692D01* X108984Y067025D02* G01X108917Y067092D01* X109051D02* G01X108984Y067025D01* Y067159D02* G01X109051Y067092D01* X108917D02* G01X108984Y067159D01* X109184Y067692D02* G01Y067559D01* X108917Y067759D02* G01X108984Y067825D01* X108917Y067492D02* G01Y067759D01* X108984Y067425D02* G01X108917Y067492D01* X109117Y067425D02* G01X108984D01* X109184Y067559D02* G01X109117Y067425D01* X109251D02* G01X109184Y067559D01* X109384Y067425D02* G01X109251D01* X109451Y067492D02* G01X109384Y067425D01* X109451Y067759D02* G01Y067492D01* X109384Y067825D02* G01X109451Y067759D01* X109184Y068225D02* G01Y068092D01* X108917Y068292D02* G01X108984Y068359D01* X108917Y068025D02* G01Y068292D01* X108984Y067959D02* G01X108917Y068025D01* X109117Y067959D02* G01X108984D01* X109184Y068092D02* G01X109117Y067959D01* X109251D02* G01X109184Y068092D01* X109384Y067959D02* G01X109251D01* X109451Y068025D02* G01X109384Y067959D01* X109451Y068292D02* G01Y068025D01* X109384Y068359D02* G01X109451Y068292D01* X108917Y068892D02* G01Y068492D01* X108984Y068892D02* G01X108917D01* X109184Y068559D02* G01X108984Y068892D01* X109251Y068492D02* G01X109184Y068559D01* X109384Y068492D02* G01X109251D01* X109451Y068559D02* G01X109384Y068492D01* X109451Y068825D02* G01Y068559D01* X109384Y068892D02* G01X109451Y068825D01* X109251Y069359D02* G01Y069025D01* X109117Y069359D02* G01Y069025D01* X109251Y069959D02* G01X108917Y069625D01* Y069959D02* G01X109251Y069625D01* X04396Y007659D02* G01X043827Y007526D01* X04396Y007126D02* G01Y007659D01* X04376Y007126D02* G01X04416D01* X043294Y007459D02* G01X043627D01* X043294Y007326D02* G01X043627D01* X04296Y007459D02* G01X043027Y007393D01* X04276Y007459D02* G01X04296D01* X042694Y007393D02* G01X04276Y007459D01* X042694Y007126D02* G01Y007459D01* X041894D02* G01X04196Y007393D01* X041694Y007459D02* G01X041894D01* X041627Y007393D02* G01X041694Y007459D01* Y007326D02* G01X041627Y007393D01* X041894Y007326D02* G01X041694D01* X04196Y007259D02* G01X041894Y007326D01* X04196Y007193D02* G01Y007259D01* X041894Y007126D02* G01X04196Y007193D01* X041694Y007126D02* G01X041894D01* X041627Y007193D02* G01X041694Y007126D01* X041427D02* G01Y007459D01* X041361Y007126D02* G01X041427Y007193D01* X041161Y007126D02* G01X041361D01* X041094Y007193D02* G01X041161Y007126D01* X041094Y007459D02* G01Y007193D01* X040761Y007526D02* G01X040694D01* X040761Y007593D02* G01Y007526D01* X040694Y007593D02* G01X040761D01* X040694Y007526D02* G01Y007593D01* X040761Y007459D02* G01X040694D01* X040761Y007126D02* G01Y007459D01* X040694Y007126D02* G01X040827D01* X040361D02* G01Y007659D01* X040094Y007126D02* G01X040361D01* X040027Y007193D02* G01X040094Y007126D01* X040027Y007393D02* G01Y007193D01* X040094Y007459D02* G01X040027Y007393D01* X040361Y007459D02* G01X040094D01* X039561Y007326D02* G01X039827D01* X039494Y007259D02* G01X039561Y007326D01* X039494Y007193D02* G01Y007259D01* X039561Y007126D02* G01X039494Y007193D01* X039827Y007126D02* G01X039561D01* X039827Y007393D02* G01Y007126D01* X039761Y007459D02* G01X039827Y007393D01* X039561Y007459D02* G01X039761D01* X039227D02* G01X039294Y007393D01* X039027Y007459D02* G01X039227D01* X038961Y007393D02* G01X039027Y007459D01* X038961Y007126D02* G01Y007459D01* X038161D02* G01X038227Y007393D01* X037961Y007459D02* G01X038161D01* X037894Y007393D02* G01X037961Y007459D01* X037894Y007126D02* G01Y007459D01* X037427Y007126D02* G01X037694D01* X037361Y007193D02* G01X037427Y007126D01* X037361Y007393D02* G01Y007193D01* X037427Y007459D02* G01X037361Y007393D01* X037627Y007459D02* G01X037427D01* X037694Y007393D02* G01X037627Y007459D01* X037694Y007326D02* G01Y007393D01* X037627Y007259D02* G01X037694Y007326D01* X037361Y007259D02* G01X037627D01* X037161Y007393D02* G01Y007126D01* X037094Y007459D02* G01X037161Y007393D01* X036894Y007459D02* G01X037094D01* X036827Y007393D02* G01X036894Y007459D01* X036827Y007126D02* G01Y007459D01* X036561D02* G01X036627Y007393D01* X036361Y007459D02* G01X036561D01* X036294Y007393D02* G01X036361Y007459D01* X036294Y007126D02* G01Y007459D01* X035827Y007126D02* G01X035761Y007193D01* X036027Y007126D02* G01X035827D01* X036094Y007193D02* G01X036027Y007126D01* X036094Y007393D02* G01Y007193D01* X036027Y007459D02* G01X036094Y007393D01* X035827Y007459D02* G01X036027D01* X035761Y007393D02* G01X035827Y007459D01* X035761Y007193D02* G01Y007393D01* X035494Y007459D02* G01X035561Y007393D01* X035294Y007459D02* G01X035494D01* X035227Y007393D02* G01X035294Y007459D01* X035227Y007193D02* G01Y007393D01* X035294Y007126D02* G01X035227Y007193D01* X035494Y007126D02* G01X035294D01* X035561Y007193D02* G01X035494Y007126D01* X034427D02* G01X034361Y006993D01* X034427Y007193D02* G01Y007126D01* X034361Y007259D02* G01X034427Y007193D01* X034294D02* G01X034361Y007259D01* Y007126D02* G01X034294Y007193D01* X034427D02* G01X034361Y007126D01* X033894Y007459D02* G01X033761Y007659D01* X033894Y007326D02* G01Y007459D01* X033761Y007126D02* G01X033894Y007326D01* X033494Y007393D02* G01Y007126D01* X033427Y007459D02* G01X033494Y007393D01* X033361Y007459D02* G01X033427D01* X033294Y007393D02* G01X033361Y007459D01* X033294Y007393D02* G01Y007126D01* X033227Y007459D02* G01X033294Y007393D01* X033161Y007459D02* G01X033227D01* X033094Y007393D02* G01X033161Y007459D01* X033094Y007126D02* G01Y007459D01* X032961Y007393D02* G01Y007126D01* X032894Y007459D02* G01X032961Y007393D01* X032827Y007459D02* G01X032894D01* X032761Y007393D02* G01X032827Y007459D01* X032761Y007393D02* G01Y007126D01* X032694Y007459D02* G01X032761Y007393D01* X032627Y007459D02* G01X032694D01* X032561Y007393D02* G01X032627Y007459D01* X032561Y007126D02* G01Y007459D01* X032161D02* G01X032294Y007659D01* X032161Y007326D02* G01Y007459D01* X032294Y007126D02* G01X032161Y007326D01* X031227Y007459D02* G01X031294Y007393D01* X031027Y007459D02* G01X031227D01* X030961Y007393D02* G01X031027Y007459D01* X030961Y007193D02* G01Y007393D01* X031027Y007126D02* G01X030961Y007193D01* X031227Y007126D02* G01X031027D01* X031294Y007193D02* G01X031227Y007126D01* X030627Y007526D02* G01X030561D01* X030627Y007593D02* G01Y007526D01* X030561Y007593D02* G01X030627D01* X030561Y007526D02* G01Y007593D01* X030627Y007459D02* G01X030561D01* X030627Y007126D02* G01Y007459D01* X030561Y007126D02* G01X030694D01* X030161Y007459D02* G01X030227Y007393D01* X029961Y007459D02* G01X030161D01* X029894Y007393D02* G01X029961Y007459D01* X029894Y007126D02* G01Y007459D01* X029361D02* G01X029627D01* X029494Y007193D02* G01Y007659D01* X029561Y007126D02* G01X029494Y007193D01* X029627Y007126D02* G01X029561D01* X029694Y007193D02* G01X029627Y007126D01* X028894D02* G01X029161D01* X028827Y007193D02* G01X028894Y007126D01* X028827Y007393D02* G01Y007193D01* X028894Y007459D02* G01X028827Y007393D01* X029094Y007459D02* G01X028894D01* X029161Y007393D02* G01X029094Y007459D01* X029161Y007326D02* G01Y007393D01* X029094Y007259D02* G01X029161Y007326D01* X028827Y007259D02* G01X029094D01* X028694Y007393D02* G01Y007126D01* X028627Y007459D02* G01X028694Y007393D01* X028561Y007459D02* G01X028627D01* X028494Y007393D02* G01X028561Y007459D01* X028494Y007393D02* G01Y007126D01* X028427Y007459D02* G01X028494Y007393D01* X028361Y007459D02* G01X028427D01* X028294Y007393D02* G01X028361Y007459D01* X028294Y007126D02* G01Y007459D01* X027494D02* G01X027561Y007393D01* X027294Y007459D02* G01X027494D01* X027227Y007393D02* G01X027294Y007459D01* Y007326D02* G01X027227Y007393D01* X027494Y007326D02* G01X027294D01* X027561Y007259D02* G01X027494Y007326D01* X027561Y007193D02* G01Y007259D01* X027494Y007126D02* G01X027561Y007193D01* X027294Y007126D02* G01X027494D01* X027227Y007193D02* G01X027294Y007126D01* X026761D02* G01X027027D01* X026694Y007193D02* G01X026761Y007126D01* X026694Y007393D02* G01Y007193D01* X026761Y007459D02* G01X026694Y007393D01* X026961Y007459D02* G01X026761D01* X027027Y007393D02* G01X026961Y007459D01* X027027Y007326D02* G01Y007393D01* X026961Y007259D02* G01X027027Y007326D01* X026694Y007259D02* G01X026961D01* X026227Y007126D02* G01X026494D01* X026161Y007193D02* G01X026227Y007126D01* X026161Y007393D02* G01Y007193D01* X026227Y007459D02* G01X026161Y007393D01* X026427Y007459D02* G01X026227D01* X026494Y007393D02* G01X026427Y007459D01* X026494Y006993D02* G01Y007393D01* X026427Y006926D02* G01X026494Y006993D01* X026227Y006926D02* G01X026427D01* X026161Y006993D02* G01X026227Y006926D01* X025961Y007126D02* G01Y007459D01* X025894Y007126D02* G01X025961Y007193D01* X025694Y007126D02* G01X025894D01* X025627Y007193D02* G01X025694Y007126D01* X025627Y007459D02* G01Y007193D01* X025161Y007326D02* G01X025427D01* X025094Y007259D02* G01X025161Y007326D01* X025094Y007193D02* G01Y007259D01* X025161Y007126D02* G01X025094Y007193D01* X025427Y007126D02* G01X025161D01* X025427Y007393D02* G01Y007126D01* X025361Y007459D02* G01X025427Y007393D01* X025161Y007459D02* G01X025361D01* X024627Y007126D02* G01X024894D01* X024561Y007193D02* G01X024627Y007126D01* X024561Y007393D02* G01Y007193D01* X024627Y007459D02* G01X024561Y007393D01* X024827Y007459D02* G01X024627D01* X024894Y007393D02* G01X024827Y007459D01* X024894Y006993D02* G01Y007393D01* X024827Y006926D02* G01X024894Y006993D01* X024627Y006926D02* G01X024827D01* X024561Y006993D02* G01X024627Y006926D01* X023694Y007659D02* G01X023627D01* X023694Y007126D02* G01Y007659D01* X023627Y007126D02* G01X023761D01* X023161Y007659D02* G01X023094D01* X023161Y007126D02* G01Y007659D01* X023094Y007126D02* G01X023227D01* X022494Y007326D02* G01X022761D01* X022427Y007259D02* G01X022494Y007326D01* X022427Y007193D02* G01Y007259D01* X022494Y007126D02* G01X022427Y007193D01* X022761Y007126D02* G01X022494D01* X022761Y007393D02* G01Y007126D01* X022694Y007459D02* G01X022761Y007393D01* X022494Y007459D02* G01X022694D01* X021627Y007126D02* G01X021561Y006993D01* X021627Y007193D02* G01Y007126D01* X021561Y007259D02* G01X021627Y007193D01* X021494D02* G01X021561Y007259D01* Y007126D02* G01X021494Y007193D01* X021627D02* G01X021561Y007126D01* X020827D02* G01X021227Y007659D01* X020894Y007126D02* G01X020827Y007193D01* X021161Y007126D02* G01X020894D01* X021227Y007193D02* G01X021161Y007126D01* X021227Y007593D02* G01Y007193D01* X021161Y007659D02* G01X021227Y007593D01* X020894Y007659D02* G01X021161D01* X020827Y007593D02* G01X020894Y007659D01* X020827Y007193D02* G01Y007593D01* X020294Y007126D02* G01X020694Y007659D01* X020361Y007126D02* G01X020294Y007193D01* X020627Y007126D02* G01X020361D01* X020694Y007193D02* G01X020627Y007126D01* X020694Y007593D02* G01Y007193D01* X020627Y007659D02* G01X020694Y007593D01* X020361Y007659D02* G01X020627D01* X020294Y007593D02* G01X020361Y007659D01* X020294Y007193D02* G01Y007593D01* X020027Y007193D02* G01X019961Y007126D01* Y007259D02* G01X020027Y007193D01* X019894D02* G01X019961Y007259D01* Y007126D02* G01X019894Y007193D01* X019427Y007659D02* G01X019294Y007526D01* X019427Y007126D02* G01Y007659D01* X019227Y007126D02* G01X019627D01* X018227Y007459D02* G01X018561D01* X018227Y007326D02* G01X018561D01* X017161Y007126D02* G01X017427D01* X017094Y007193D02* G01X017161Y007126D01* X017094Y007393D02* G01Y007193D01* X017161Y007459D02* G01X017094Y007393D01* X017361Y007459D02* G01X017161D01* X017427Y007393D02* G01X017361Y007459D01* X017427Y007326D02* G01Y007393D01* X017361Y007259D02* G01X017427Y007326D01* X017094Y007259D02* G01X017361D01* X016761Y007659D02* G01X016694D01* X016761Y007126D02* G01Y007659D01* X016694Y007126D02* G01X016827D01* X016094Y007326D02* G01X016361D01* X016027Y007259D02* G01X016094Y007326D01* X016027Y007193D02* G01Y007259D01* X016094Y007126D02* G01X016027Y007193D01* X016361Y007126D02* G01X016094D01* X016361Y007393D02* G01Y007126D01* X016294Y007459D02* G01X016361Y007393D01* X016094Y007459D02* G01X016294D01* X015761D02* G01X015827Y007393D01* X015561Y007459D02* G01X015761D01* X015494Y007393D02* G01X015561Y007459D01* X015494Y007193D02* G01Y007393D01* X015561Y007126D02* G01X015494Y007193D01* X015761Y007126D02* G01X015561D01* X015827Y007193D02* G01X015761Y007126D01* X015227Y007459D02* G01X015294Y007393D01* X015027Y007459D02* G01X015227D01* X014961Y007393D02* G01X015027Y007459D01* Y007326D02* G01X014961Y007393D01* X015227Y007326D02* G01X015027D01* X015294Y007259D02* G01X015227Y007326D01* X015294Y007193D02* G01Y007259D01* X015227Y007126D02* G01X015294Y007193D01* X015027Y007126D02* G01X015227D01* X014961Y007193D02* G01X015027Y007126D01* M02* gerbv-2.7.0/example/trailing/Makefile.in0000644000175000017500000003611513423533413020025 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/trailing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt cd1r2.1_sieb0.off cd1r2.1_sieb1.off MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/trailing/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/trailing/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/trailing/cd1r2.1_sieb1.off0000644000175000017500000062523113421555714020622 0ustar carstencarstenG04 Pcgerber II V5.0 Date: Tue Mar 16 14:10:32 2004 * G04 Database: (Untitled) * G04 Layer 1: sieb1_off_d1 * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %MIA0B0*% %IPPOS*% %ADD10C,0.00400*% %ADD11C,0.00600*% %ADD12C,0.00800*% %ADD13C,0.00800*% %ADD14C,0.01000*% %ADD15C,0.01600*% %ADD16C,0.01800*% %ADD17R,0.08300X0.08300*% %ADD18R,0.08700X0.08700*% %ADD19O,0.01000X0.07000*% %ADD20O,0.08600X0.01200*% %ADD21O,0.01200X0.08600*% %ADD22O,0.06500X0.01500*% %ADD23O,0.01500X0.06500*% %ADD24O,0.06600X0.01800*% %ADD25O,0.01800X0.06600*% %ADD26O,0.04700X0.07100*% %ADD27R,0.03200X0.01100*% %ADD28R,0.01300X0.03200*% %ADD29R,0.01200X0.05600*% %ADD30R,0.01400X0.02200*% %ADD31R,0.01400X0.02600*% %ADD32R,0.01400X0.05400*% %ADD33R,0.01400X0.07000*% %ADD34R,0.03600X0.01800*% %ADD35R,0.02200X0.07600*% %ADD36R,0.08200X0.02200*% %ADD37R,0.02200X0.08200*% %ADD38R,0.03200X0.02400*% %ADD39R,0.02400X0.03200*% %ADD40R,0.03200X0.02600*% %ADD41R,0.02600X0.03200*% %ADD42R,0.02800X0.06200*% %ADD43R,0.05000X0.03100*% %ADD44R,0.03200X0.04400*% %ADD45R,0.03600X0.03300*% %ADD46R,0.08800X0.03500*% %ADD47R,0.05900X0.03600*% %ADD48R,0.09100X0.03600*% %ADD49R,0.03600X0.09100*% %ADD50R,0.04300X0.04000*% %ADD51R,0.04000X0.04300*% %ADD52R,0.05500X0.04300*% %ADD53R,0.04300X0.05500*% %ADD54R,0.11600X0.04500*% %ADD55R,0.12600X0.05000*% %ADD56R,0.08400X0.06000*% %ADD57R,0.06000X0.08400*% %ADD58R,0.06700X0.07000*% %ADD59R,0.09600X0.07500*% %ADD60R,0.07500X0.09600*% %ADD61R,0.21200X0.08000*% %ADD62R,0.08000X0.21200*% %ADD63R,0.12800X0.11800*% %ADD153C,0.01400*% %LNsieb1_off_d1*% %SRX1Y1I0J0*% G54D10* %LPD*% G36* X102739Y009247D02* G01X102748Y00928D01* X102762Y009312* X102782Y00934* X102806Y009364* X102835Y009384* X102866Y009398* X102899Y009407* X102933Y00941* X102967Y009407* X103Y009398* X103032Y009384* X10306Y009364* X103084Y00934* X103104Y009312* X103118Y00928* X103127Y009247* X10313Y009213* X103127Y009179* X103118Y009146* X103104Y009115* X103084Y009086* X10306Y009062* X103032Y009042* X103Y009028* X102967Y009019* X102933Y009016* X102899Y009019* X102866Y009028* X102835Y009042* X102806Y009062* X102782Y009086* X102762Y009115* X102748Y009146* X102739Y009179* X102736Y009213* X102739Y009247* G37* G36* X018349Y011215D02* G01X018358Y011248D01* X018372Y01128* X018392Y011308* X018416Y011332* X018445Y011352* X018476Y011366* X018509Y011375* X018543Y011378* X018577Y011375* X01861Y011366* X018642Y011352* X01867Y011332* X018694Y011308* X018714Y01128* X018728Y011248* X018737Y011215* X01874Y011181* X018737Y011147* X018728Y011114* X018714Y011083* X018694Y011054* X01867Y01103* X018642Y01101* X01861Y010996* X018577Y010987* X018543Y010984* X018509Y010987* X018476Y010996* X018445Y01101* X018416Y01103* X018392Y011054* X018372Y011083* X018358Y011114* X018349Y011147* X018346Y011181* X018349Y011215* G37* G36* X050239Y009247D02* G01X050248Y00928D01* X050262Y009312* X050282Y00934* X050306Y009364* X050335Y009384* X050366Y009398* X050399Y009407* X050433Y00941* X050467Y009407* X0505Y009398* X050532Y009384* X05056Y009364* X050584Y00934* X050604Y009312* X050618Y00928* X050627Y009247* X05063Y009213* X050627Y009179* X050618Y009146* X050604Y009115* X050584Y009086* X05056Y009062* X050532Y009042* X0505Y009028* X050467Y009019* X050433Y009016* X050399Y009019* X050366Y009028* X050335Y009042* X050306Y009062* X050282Y009086* X050262Y009115* X050248Y009146* X050239Y009179* X050236Y009213* X050239Y009247* G37* G36* X014806Y010034D02* G01X014815Y010067D01* X014829Y010099* X014849Y010127* X014873Y010151* X014902Y010171* X014933Y010185* X014966Y010194* X015Y010197* X015034Y010194* X015067Y010185* X015099Y010171* X015127Y010151* X015151Y010127* X015171Y010099* X015185Y010067* X015194Y010034* X015197Y01* X015194Y009966* X015185Y009933* X015171Y009902* X015151Y009873* X015127Y009849* X015099Y009829* X015067Y009815* X015034Y009806* X015Y009803* X014966Y009806* X014933Y009815* X014902Y009829* X014873Y009849* X014849Y009873* X014829Y009902* X014815Y009933* X014806Y009966* X014803Y01* X014806Y010034* G37* G36* X018349D02* G01X018358Y010067D01* X018372Y010099* X018392Y010127* X018416Y010151* X018445Y010171* X018476Y010185* X018509Y010194* X018543Y010197* X018577Y010194* X01861Y010185* X018642Y010171* X01867Y010151* X018694Y010127* X018714Y010099* X018728Y010067* X018737Y010034* X01874Y01* X018737Y009966* X018728Y009933* X018714Y009902* X018694Y009873* X01867Y009849* X018642Y009829* X01861Y009815* X018577Y009806* X018543Y009803* X018509Y009806* X018476Y009815* X018445Y009829* X018416Y009849* X018392Y009873* X018372Y009902* X018358Y009933* X018349Y009966* X018346Y01* X018349Y010034* G37* G36* X050239Y011215D02* G01X050248Y011248D01* X050262Y01128* X050282Y011308* X050306Y011332* X050335Y011352* X050366Y011366* X050399Y011375* X050433Y011378* X050467Y011375* X0505Y011366* X050532Y011352* X05056Y011332* X050584Y011308* X050604Y01128* X050618Y011248* X050627Y011215* X05063Y011181* X050627Y011147* X050618Y011114* X050604Y011083* X050584Y011054* X05056Y01103* X050532Y01101* X0505Y010996* X050467Y010987* X050433Y010984* X050399Y010987* X050366Y010996* X050335Y01101* X050306Y01103* X050282Y011054* X050262Y011083* X050248Y011114* X050239Y011147* X050236Y011181* X050239Y011215* G37* G36* X102739Y010034D02* G01X102748Y010067D01* X102762Y010099* X102782Y010127* X102806Y010151* X102835Y010171* X102866Y010185* X102899Y010194* X102933Y010197* X102967Y010194* X103Y010185* X103032Y010171* X10306Y010151* X103084Y010127* X103104Y010099* X103118Y010067* X103127Y010034* X10313Y01* X103127Y009966* X103118Y009933* X103104Y009902* X103084Y009873* X10306Y009849* X103032Y009829* X103Y009815* X102967Y009806* X102933Y009803* X102899Y009806* X102866Y009815* X102835Y009829* X102806Y009849* X102782Y009873* X102762Y009902* X102748Y009933* X102739Y009966* X102736Y01* X102739Y010034* G37* G36* X106676D02* G01X106685Y010067D01* X106699Y010099* X106719Y010127* X106743Y010151* X106772Y010171* X106803Y010185* X106836Y010194* X10687Y010197* X106904Y010194* X106937Y010185* X106969Y010171* X106997Y010151* X107021Y010127* X107041Y010099* X107055Y010067* X107064Y010034* X107067Y01* X107064Y009966* X107055Y009933* X107041Y009902* X107021Y009873* X106997Y009849* X106969Y009829* X106937Y009815* X106904Y009806* X10687Y009803* X106836Y009806* X106803Y009815* X106772Y009829* X106743Y009849* X106719Y009873* X106699Y009902* X106685Y009933* X106676Y009966* X106673Y01* X106676Y010034* G37* G36* X022654Y046352D02* G01X021047D01* Y048018* X022654* Y046352* G37* G36* X048299D02* G01X046693D01* Y048018* X048299* Y046352* G37* G36* Y056476D02* G01X046693D01* Y057506* X048299* Y056476* G37* G36* X022654D02* G01X021047D01* Y057506* X022654* Y056476* G37* G54D15* X061063Y042283D03* Y042677D03* Y043071D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055669D03* Y056063D03* Y056457D03* X061457Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X06185Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X062244Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* X062638Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X063031Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X063425Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X063819Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X064213Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X064606Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X065Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X065394Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X065787Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X066181Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X066575Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X066969Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X067362Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X067756Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X06815Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* X068543Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X068937Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X069331Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X069724Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X070118Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X070512Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X070906Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X071299Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X071693Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X072087Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X07248Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X072874Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X073268Y042677D03* Y043071D03* Y043465D03* Y044252D03* Y045039D03* Y045827D03* Y046614D03* Y047402D03* Y048189D03* Y048976D03* Y049764D03* Y050551D03* Y051339D03* Y052126D03* Y052913D03* Y053701D03* Y054488D03* Y055276D03* Y055669D03* Y056063D03* X073661Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y04937D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X074055Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* X074449Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X074843Y042283D03* Y042677D03* Y043071D03* Y043465D03* Y043858D03* Y044252D03* Y044646D03* Y045039D03* Y045433D03* Y045827D03* Y04622D03* Y046614D03* Y047008D03* Y047402D03* Y047795D03* Y048189D03* Y048583D03* Y048976D03* Y04937D03* Y049764D03* Y050157D03* Y050551D03* Y050945D03* Y051339D03* Y051732D03* Y052126D03* Y05252D03* Y052913D03* Y053307D03* Y053701D03* Y054094D03* Y054488D03* Y054882D03* Y055276D03* Y055669D03* Y056063D03* Y056457D03* X075236Y042283D03* Y042677D03* Y043071D03* Y043858D03* Y044646D03* Y045433D03* Y04622D03* Y047008D03* Y047795D03* Y048583D03* Y050157D03* Y050945D03* Y051732D03* Y05252D03* Y053307D03* Y054094D03* Y054882D03* Y055669D03* Y056063D03* X051811Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X051417Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X051024Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X05063Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X050236Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X049843Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X049449Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X049055Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X048661Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X048268Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X047874Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X04748Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X047087Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X046693Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X03311Y023189D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y023583D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y023976D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y02437D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y024764D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y025157D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y025551D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y025945D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y026339D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y026732D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y027126D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y02752D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y027913D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y028307D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y028701D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X03311Y029094D03* X032717D03* X032323D03* X031929D03* X031535D03* X031142D03* X030748D03* X030354D03* X029961D03* X029567D03* X029173D03* X02878D03* X028386D03* X027992D03* X027598D03* X027205D03* X041969Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X041575Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X041181Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X040787Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X040394Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X04Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X039606Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X039213Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X038819Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X038425Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X038031Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X037638Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X037244Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* X03685Y028701D03* Y028307D03* Y027913D03* Y02752D03* Y027126D03* Y026732D03* Y026339D03* Y025945D03* Y025551D03* Y025157D03* Y024764D03* Y02437D03* Y023976D03* Y023583D03* G54D153* X020354Y027402D03* X020669D03* X020984D03* X021299D03* X021614D03* X021929D03* X022244D03* X020354Y027717D03* X020669D03* X020984D03* X021299D03* X021614D03* X021929D03* X022244D03* X022874Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* X022559Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X022244Y024882D03* X021929D03* X021614D03* X021299D03* X020984D03* X020669D03* X020354D03* X022244Y024567D03* X021929D03* X021614D03* X021299D03* X020984D03* X020669D03* X020354D03* X020039Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X019724Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* Y028346D03* X020039D03* X020354D03* X020669D03* X020984D03* X021299D03* X021614D03* X021929D03* X022244D03* X022559D03* X022874D03* X019724Y028661D03* X020039D03* X020354D03* X020669D03* X020984D03* X021299D03* X021614D03* X021929D03* X022244D03* X022559D03* X022874D03* X019409Y028976D03* X019724D03* X020039D03* X020354D03* X020669D03* X020984D03* X021299D03* X021614D03* X021929D03* X022244D03* X022559D03* X022874D03* X023189D03* X023504Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X023819Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X024134Y028031D03* Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* Y024252D03* X022874Y023937D03* X022559D03* X022244D03* X021929D03* X021614D03* X021299D03* X020984D03* X020669D03* X020354D03* X020039D03* X019724D03* X022874Y023622D03* X022559D03* X022244D03* X021929D03* X021614D03* X021299D03* X020984D03* X020669D03* X020354D03* X020039D03* X019724D03* X023189Y023307D03* X022874D03* X022559D03* X022244D03* X021929D03* X021614D03* X021299D03* X020984D03* X020669D03* X020354D03* X020039D03* X019724D03* X019409D03* X019094Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X01878Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* X018465Y028031D03* Y027717D03* Y027402D03* Y027087D03* Y026772D03* Y026457D03* Y026142D03* Y025827D03* Y025512D03* Y025197D03* Y024882D03* Y024567D03* Y024252D03* G54D16* X076368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X075868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X075368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X074868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X074368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X073868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X073368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X072868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X072368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X071868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X071368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X070868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X070368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X069868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X069368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X068868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X068368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X067868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X067368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X066868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X066368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X065868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X065368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X064868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X064368Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X063868Y035935D03* Y035435D03* Y034935D03* Y034435D03* Y033935D03* Y033435D03* Y032935D03* Y032435D03* Y031935D03* Y031435D03* Y030935D03* Y030435D03* Y029935D03* Y029435D03* Y028935D03* Y028435D03* Y027935D03* Y027435D03* Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* X094909Y052807D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y053307D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y053807D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y054307D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y054807D03* X094409D03* X093909D03* X093409D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y055307D03* X094409D03* X093909D03* X093409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y055807D03* X094409D03* X093909D03* X093409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y056307D03* X094409D03* X093909D03* X093409D03* X092909D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y056807D03* X094409D03* X093909D03* X093409D03* X092909D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y057307D03* X094409D03* X093909D03* X093409D03* X092909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y057807D03* X094409D03* X093909D03* X093409D03* X092909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y058307D03* X094409D03* X093909D03* X093409D03* X092909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y058807D03* X094409D03* X093909D03* X093409D03* X092909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y059307D03* X094409D03* X093909D03* X093409D03* X092909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y059807D03* X094409D03* X093909D03* X093409D03* X092909D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y060307D03* X094409D03* X093909D03* X093409D03* X092909D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y060807D03* X094409D03* X093909D03* X093409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y061307D03* X094409D03* X093909D03* X093409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y061807D03* X094409D03* X093909D03* X093409D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y062307D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y062807D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y063307D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094909Y063807D03* X094409D03* X093909D03* X093409D03* X092909D03* X092409D03* X091909D03* X091409D03* X090909D03* X090409D03* X089909D03* X089409D03* X088909D03* X088409D03* X087909D03* X087409D03* X086909D03* X086409D03* X085909D03* X085409D03* X084909D03* X084409D03* X083909D03* X094315Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* X094815Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* X095315Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* X095815Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* X096315Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* X089815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X090315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X090815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X091315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X091815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X092315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X092815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X093315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X093815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X094315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X094815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X095315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X095815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X096315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X096815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X097315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X097815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X098315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X098815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X099315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X099815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X100315Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* X100815Y038161D03* Y038661D03* Y039161D03* Y039661D03* Y040161D03* Y040661D03* Y041161D03* Y041661D03* Y042161D03* Y042661D03* Y043161D03* Y043661D03* Y044161D03* Y044661D03* Y045161D03* Y045661D03* Y046161D03* Y046661D03* Y047161D03* Y047661D03* Y048161D03* Y048661D03* Y049161D03* G54D18* X078583Y056299D03* Y053858D03* X104724Y05811D03* Y055669D03* X102835D03* Y05811D03* X08563Y027323D03* X087283D03* X088031Y036339D03* Y037992D03* X076811Y056299D03* Y053858D03* X052441Y058425D03* X05D03* X016732Y047795D03* X019173D03* G54D17* X101949Y017087D03* X100098D03* G54D21* X046525Y034902D03* X046275D03* X046025D03* X045775D03* X045525D03* X045275D03* X045025D03* X044775D03* X044525D03* X044275D03* X044025D03* X043775D03* X043525D03* X043275D03* X043025D03* X042775D03* X042525D03* X042275D03* X042025D03* X041775D03* X041525D03* X041275D03* X041025D03* X040775D03* X040525D03* X040275D03* X040025D03* X039775D03* Y038642D03* X040025D03* X040275D03* X040525D03* X040775D03* X041025D03* X041275D03* X041525D03* X041775D03* X042025D03* X042275D03* X042525D03* X042775D03* X043025D03* X043275D03* X043525D03* X043775D03* X044025D03* X044275D03* X044525D03* X044775D03* X045025D03* X045275D03* X045525D03* X045775D03* X046025D03* X046275D03* X046525D03* X051152Y056649D03* X051407D03* X051663D03* X051919D03* X052175D03* X052431D03* X052687D03* X052943D03* X053199D03* X053455D03* X053711D03* X053967D03* X054222D03* X054478D03* X054734D03* X05499D03* X055246D03* X055502D03* X055758D03* X056014D03* G54D20* X056924Y055837D03* Y055581D03* Y055325D03* Y055069D03* Y054813D03* Y054557D03* Y054301D03* Y054045D03* Y053789D03* Y053533D03* Y053278D03* Y053022D03* Y052766D03* Y05251D03* Y052254D03* Y051998D03* Y051742D03* Y051486D03* Y05123D03* Y050974D03* Y050719D03* Y050463D03* Y050207D03* Y049951D03* Y049695D03* Y049439D03* Y049183D03* Y048927D03* Y048671D03* Y048415D03* G54D21* X056014Y047603D03* X055758D03* X055502D03* X055246D03* X05499D03* X054734D03* X054478D03* X054222D03* X053967D03* X053711D03* X053455D03* X053199D03* X052943D03* X052687D03* X052431D03* X052175D03* X051919D03* X051663D03* X051407D03* X051152D03* G54D20* X050241Y048415D03* Y048671D03* Y048927D03* Y049183D03* Y049439D03* Y049695D03* Y049951D03* Y050207D03* Y050463D03* Y050719D03* Y050974D03* Y05123D03* Y051486D03* Y051742D03* Y051998D03* Y052254D03* Y05251D03* Y052766D03* Y053022D03* Y053278D03* Y053533D03* Y053789D03* Y054045D03* Y054301D03* Y054557D03* Y054813D03* Y055069D03* Y055325D03* Y055581D03* Y055837D03* G54D19* X058613Y036172D03* X058863D03* X059113D03* X059363D03* X059613D03* X059863D03* X060113D03* X060363D03* Y034222D03* X060113D03* X059863D03* X059613D03* X059363D03* X059113D03* X058863D03* X058613D03* X053425Y016175D03* X053675D03* X053925D03* X054175D03* X054425D03* X054675D03* X054925D03* X055175D03* Y014225D03* X054925D03* X054675D03* X054425D03* X054175D03* X053925D03* X053675D03* X053425D03* G54D25* X099486Y025687D03* X099986D03* X100486D03* X100986D03* Y023447D03* X100486D03* X099986D03* X099486D03* Y02175D03* X099986D03* X100486D03* X100986D03* Y01951D03* X100486D03* X099986D03* X099486D03* G54D24* X08573Y044917D03* Y045417D03* Y045917D03* Y046417D03* Y046917D03* Y047417D03* Y047917D03* X08797D03* Y047417D03* Y046917D03* Y046417D03* Y045917D03* Y045417D03* Y044917D03* X081793Y049604D03* Y050104D03* Y050604D03* Y051104D03* X084033D03* Y050604D03* Y050104D03* Y049604D03* G54D23* X09374Y024055D03* X094055D03* X09437D03* X094685D03* X095D03* X095315D03* X09563D03* X095945D03* X09626D03* X096575D03* X09689D03* G54D22* X097559Y023386D03* Y023071D03* Y022756D03* Y022441D03* Y022126D03* Y021811D03* Y021496D03* Y021181D03* Y020866D03* Y020551D03* Y020236D03* G54D23* X09689Y019567D03* X096575D03* X09626D03* X095945D03* X09563D03* X095315D03* X095D03* X094685D03* X09437D03* X094055D03* X09374D03* G54D22* X093071Y020236D03* Y020551D03* Y020866D03* Y021181D03* Y021496D03* Y021811D03* Y022126D03* Y022441D03* Y022756D03* Y023071D03* Y023386D03* G54D26* X090591Y051673D03* X092756D03* Y050413D03* X090591D03* G54D40* X076506Y049961D03* X075935D03* X076506Y051142D03* X075935D03* X076506Y051732D03* X075935D03* X076506Y044843D03* X075935D03* G54D41* X093661Y065443D03* Y064872D03* X095118Y065443D03* Y064872D03* X095315Y036486D03* Y037057D03* X094823D03* Y036486D03* X093346Y037057D03* Y036486D03* X099252Y059085D03* Y059655D03* X099724Y060276D03* X099331Y061063D03* X100118D03* X100157Y062234D03* Y062805D03* X100748Y064872D03* Y065443D03* X103976Y064872D03* Y065443D03* X103307Y064872D03* Y065443D03* X101299Y061073D03* Y060502D03* G54D40* X104479Y063819D03* X105049D03* G54D41* X102795Y061693D03* X102402Y06248D03* X103189D03* X101693Y064764D03* X101299Y065551D03* X102087D03* X102795Y063071D03* X102402Y063858D03* X103189D03* X104646Y064872D03* Y065443D03* X099055Y062234D03* Y062805D03* X097402Y062234D03* Y062805D03* G54D40* X101919Y03874D03* X10249D03* G54D41* X099843Y037057D03* Y036486D03* X096299Y037057D03* Y036486D03* X097283Y050266D03* Y050836D03* G54D40* X101919Y047598D03* X10249D03* X101919Y049173D03* X10249D03* Y045039D03* X101919D03* Y041102D03* X10249D03* X101919Y041693D03* X10249D03* G54D41* X100827Y036486D03* Y037057D03* X100335Y036486D03* Y037057D03* G54D40* X098563Y027028D03* X097776Y026634D03* Y027421D03* X098563Y02565D03* X097776Y025256D03* Y026043D03* X100521Y01876D03* X099951D03* X100521Y022697D03* X099951D03* X086939Y023386D03* X086368D03* G54D41* X087441Y025551D03* X087047Y026339D03* X087835D03* X083504Y023386D03* X08311Y024173D03* X083898D03* X087441Y024961D03* X087835Y024173D03* X087047D03* X087835Y021132D03* Y021703D03* X087047Y021132D03* Y021703D03* G54D40* X083789Y022598D03* X083219D03* X086368D03* X086939D03* X08871Y043268D03* X08814D03* X08871Y040709D03* X08814D03* G54D41* X087835Y064872D03* Y065443D03* X088661Y064872D03* Y065443D03* G54D40* X092067Y019646D03* X09128Y019252D03* Y020039D03* X089183Y034409D03* X088612D03* G54D41* X093543Y050266D03* Y050836D03* X094331Y036486D03* Y037057D03* X087913Y029577D03* Y029006D03* X090591Y036486D03* Y037057D03* X089803Y050266D03* Y050836D03* X081142Y061575D03* X080748Y062362D03* X081535D03* X081181Y038258D03* Y038829D03* X081339Y052628D03* Y053199D03* Y055167D03* Y054597D03* X044921Y040207D03* Y039636D03* X043445Y040207D03* Y039636D03* G54D40* X043435Y023976D03* X042864D03* G54D41* X04502Y033337D03* Y033907D03* G54D40* X043435Y025551D03* X042864D03* X043435Y029567D03* X042864D03* X045266Y025748D03* X045836D03* X045266Y02752D03* X045836D03* X045266Y02437D03* X045836D03* X042647Y06D03* X042077D03* G54D41* X04374Y055955D03* Y055384D03* X044331Y055955D03* Y055384D03* X044921Y055955D03* Y055384D03* X045512Y055955D03* Y055384D03* X044528Y062254D03* Y061683D03* X063425Y041014D03* Y041584D03* X062047Y057923D03* Y057353D03* G54D40* X062628Y016693D03* X063199D03* X063185Y0154D03* X062615D03* X06127Y016693D03* X060699D03* X064518D03* X065088D03* G54D41* X071299Y041014D03* Y041584D03* X069134Y057726D03* Y057156D03* X07622Y052431D03* Y053002D03* X072677Y041014D03* Y041584D03* G54D40* X065085Y0154D03* X064515D03* G54D41* X066181Y057726D03* Y057156D03* X065591Y057726D03* Y057156D03* X066575Y041014D03* Y041584D03* X065Y057726D03* Y057156D03* X069724Y041014D03* Y041584D03* G54D40* X053277Y023976D03* X052707D03* X053277Y025551D03* X052707D03* X053277Y029567D03* X052707D03* G54D41* X0535Y036485D03* Y035915D03* Y042385D03* Y041815D03* Y039215D03* Y039785D03* G54D40* X059793Y051732D03* X060364D03* X059793Y050157D03* X060364D03* X059597Y047008D03* X060167D03* X059597Y045433D03* X060167D03* X059597Y043858D03* X060167D03* X059793Y054882D03* X060364D03* X059793Y053307D03* X060364D03* X059577Y033228D03* X059006D03* X059385Y0154D03* X058815D03* Y0162D03* X059385D03* X060715Y0154D03* X061285D03* G54D41* X060236Y048022D03* Y048592D03* G54D40* X058199Y021024D03* X057628D03* X060679Y024961D03* X06125D03* G54D41* X060866Y03627D03* Y035699D03* X05748Y015738D03* Y016309D03* X049921Y059912D03* Y060482D03* G54D40* X049215Y0458D03* X049785D03* X049215Y0433D03* X049785D03* X049215Y0359D03* X049785D03* G54D41* X04689Y040207D03* Y039636D03* X048268Y022116D03* Y022687D03* X049055Y022116D03* Y022687D03* X047677Y048691D03* Y049262D03* G54D40* X025443Y027087D03* X024872D03* X025443Y026299D03* X024872D03* X025443Y027992D03* X024872D03* X025443Y02378D03* X024872D03* X025443Y024685D03* X024872D03* X030515Y0458D03* X031085D03* X029065Y060827D03* X028494D03* X030515Y0433D03* X031085D03* X030515Y0359D03* X031085D03* G54D41* X028976Y055955D03* Y055384D03* X028386Y055955D03* Y055384D03* X027598Y055955D03* Y055384D03* X027008Y055955D03* Y055384D03* X039213Y022116D03* Y022687D03* X036654Y055955D03* Y055384D03* X037835Y055955D03* Y055384D03* X038327Y055955D03* Y055384D03* G54D40* X038985Y0343D03* X038415D03* X038985Y041D03* X038415D03* X038985Y0359D03* X038415D03* X040305Y06D03* X040876D03* G54D41* X038425Y022116D03* Y022687D03* X040197Y061663D03* Y061093D03* X041772Y033337D03* Y033907D03* Y055955D03* Y055384D03* X040689Y055955D03* Y055384D03* X040098Y055955D03* Y055384D03* X042165Y060896D03* Y061466D03* X041969Y040207D03* Y039636D03* X044035Y033337D03* Y033907D03* X042165Y059498D03* Y058927D03* X042362Y055955D03* Y055384D03* X040394Y033337D03* Y033907D03* X038917Y055955D03* Y055384D03* X040295Y039636D03* Y040207D03* G54D40* X032293Y06315D03* X031723D03* G54D41* X032756Y055955D03* Y055384D03* X032165Y055955D03* Y055384D03* X031535Y055955D03* Y055384D03* X030945Y055955D03* Y055384D03* G54D40* X035423Y02437D03* X035994D03* X035423Y02752D03* X035994D03* X035423Y025748D03* X035994D03* G54D41* X0347Y035385D03* Y034815D03* Y043685D03* Y043115D03* X03468Y044775D03* Y044205D03* X0347Y036585D03* Y036015D03* Y042485D03* Y041915D03* Y037215D03* Y037785D03* Y039115D03* Y039685D03* X033898Y02438D03* Y023809D03* X029764Y055955D03* Y055384D03* X030354Y055955D03* Y055384D03* X024055Y055955D03* Y055384D03* X024646Y055955D03* Y055384D03* X025531Y055955D03* Y055384D03* X026122Y055955D03* Y055384D03* G54D40* X023868Y066299D03* X023297D03* X025128Y060827D03* X024557D03* X021801D03* X022372D03* X020185Y041D03* X019615D03* G54D41* X017717Y023534D03* Y024104D03* G54D40* X019095Y02253D03* X019665D03* G54D41* X017717Y024833D03* Y025403D03* X026457Y02871D03* Y02814D03* G54D40* X020185Y0343D03* X019615D03* X020185Y0359D03* X019615D03* X023474Y029724D03* X022904D03* X024104Y022559D03* X023534D03* G54D28* X07685Y067244D03* X077165D03* X07748D03* X077795D03* Y066614D03* X07748D03* X077165D03* X07685D03* X082165D03* X08185D03* X081535D03* X08122D03* Y067244D03* X081535D03* X08185D03* X082165D03* X079252Y066614D03* X078937D03* X078622D03* X078307D03* Y067244D03* X078622D03* X078937D03* X079252D03* X095276Y066614D03* X094961D03* X094646D03* X094331D03* Y067244D03* X094646D03* X094961D03* X095276D03* X098189Y066614D03* X097874D03* X097559D03* X097244D03* Y067244D03* X097559D03* X097874D03* X098189D03* X092874D03* X093189D03* X093504D03* X093819D03* Y066614D03* X093504D03* X093189D03* X092874D03* X098307Y056929D03* X098622D03* X098937D03* X099252D03* Y056299D03* X098937D03* X098622D03* X098307D03* X104016Y066614D03* X103701D03* X103386D03* X103071D03* Y067244D03* X103386D03* X103701D03* X104016D03* X101102Y066614D03* X100787D03* X100472D03* X100157D03* Y067244D03* X100472D03* X100787D03* X101102D03* X098701D03* X099016D03* X099331D03* X099646D03* Y066614D03* X099331D03* X099016D03* X098701D03* X095787Y067244D03* X096102D03* X096417D03* X096732D03* Y066614D03* X096417D03* X096102D03* X095787D03* X101614Y067244D03* X101929D03* X102244D03* X102559D03* Y066614D03* X102244D03* X101929D03* X101614D03* X104528Y067244D03* X104843D03* X105157D03* X105472D03* Y066614D03* X105157D03* X104843D03* X104528D03* X087047Y067244D03* X087362D03* X087677D03* X087992D03* Y066614D03* X087677D03* X087362D03* X087047D03* X089449D03* X089134D03* X088819D03* X088504D03* Y067244D03* X088819D03* X089134D03* X089449D03* X082677D03* X082992D03* X083307D03* X083622D03* Y066614D03* X083307D03* X082992D03* X082677D03* X084134Y067244D03* X084449D03* X084764D03* X085079D03* Y066614D03* X084764D03* X084449D03* X084134D03* X092362D03* X092047D03* X091732D03* X091417D03* Y067244D03* X091732D03* X092047D03* X092362D03* X089961D03* X090276D03* X090591D03* X090906D03* Y066614D03* X090591D03* X090276D03* X089961D03* G54D27* X08811Y048504D03* Y048819D03* Y049134D03* Y049449D03* X08874D03* Y049134D03* Y048819D03* Y048504D03* G54D28* X079764Y067244D03* X080079D03* X080394D03* X080709D03* Y066614D03* X080394D03* X080079D03* X079764D03* X086535D03* X08622D03* X085906D03* X085591D03* Y067244D03* X085906D03* X08622D03* X086535D03* X046417Y05437D03* X046102D03* X045787D03* X045472D03* Y055D03* X045787D03* X046102D03* X046417D03* X041496Y048701D03* X041811D03* X042126D03* X042441D03* Y048071D03* X042126D03* X041811D03* X041496D03* X073425Y066614D03* X07311D03* X072795D03* X07248D03* Y067244D03* X072795D03* X07311D03* X073425D03* X071969Y066614D03* X071654D03* X071339D03* X071024D03* Y067244D03* X071339D03* X071654D03* X071969D03* X073937D03* X074252D03* X074567D03* X074882D03* Y066614D03* X074567D03* X074252D03* X073937D03* X076339D03* X076024D03* X075709D03* X075394D03* Y067244D03* X075709D03* X076024D03* X076339D03* G54D27* X056457Y014882D03* Y014567D03* Y014252D03* Y013937D03* X055827D03* Y014252D03* Y014567D03* Y014882D03* G54D28* X04563Y049291D03* X045945D03* X04626D03* X046575D03* Y048661D03* X04626D03* X045945D03* X04563D03* G54D27* X049185Y041628D03* Y041943D03* Y042257D03* Y042572D03* X049815D03* Y042257D03* Y041943D03* Y041628D03* X049185Y044128D03* Y044443D03* Y044757D03* Y045072D03* X049815D03* Y044757D03* Y044443D03* Y044128D03* X049185Y036728D03* Y037043D03* Y037357D03* Y037672D03* X049815D03* Y037357D03* Y037043D03* Y036728D03* G54D28* X032323Y05437D03* X032008D03* X031693D03* X031378D03* Y055D03* X031693D03* X032008D03* X032323D03* X028799Y062972D03* X029114D03* X029429D03* X029744D03* Y062343D03* X029429D03* X029114D03* X028799D03* X027618Y057362D03* X027933D03* X028248D03* X028563D03* Y056732D03* X028248D03* X027933D03* X027618D03* X027323Y062972D03* X027638D03* X027953D03* X028268D03* Y062343D03* X027953D03* X027638D03* X027323D03* X025846Y062972D03* X026161D03* X026476D03* X026791D03* Y062343D03* X026476D03* X026161D03* X025846D03* X026142Y057362D03* X026457D03* X026772D03* X027087D03* Y056732D03* X026772D03* X026457D03* X026142D03* X024665Y057362D03* X02498D03* X025295D03* X02561D03* Y056732D03* X025295D03* X02498D03* X024665D03* X029154Y05437D03* X028839D03* X028524D03* X028209D03* Y055D03* X028524D03* X028839D03* X029154D03* X030531Y05437D03* X030217D03* X029902D03* X029587D03* Y055D03* X029902D03* X030217D03* X030531D03* X026929Y048701D03* X027244D03* X027559D03* X027874D03* Y048071D03* X027559D03* X027244D03* X026929D03* X028898Y048701D03* X029213D03* X029528D03* X029843D03* Y048071D03* X029528D03* X029213D03* X028898D03* X037559Y048701D03* X037874D03* X038189D03* X038504D03* Y048071D03* X038189D03* X037874D03* X037559D03* X040866Y05437D03* X040551D03* X040236D03* X039921D03* Y055D03* X040236D03* X040551D03* X040866D03* X039094Y05437D03* X03878D03* X038465D03* X03815D03* Y055D03* X038465D03* X03878D03* X039094D03* G54D27* X038385Y044528D03* Y044843D03* Y045157D03* Y045472D03* X039015D03* Y045157D03* Y044843D03* Y044528D03* X038385Y039228D03* Y039543D03* Y039857D03* Y040172D03* X039015D03* Y039857D03* Y039543D03* Y039228D03* X038385Y036628D03* Y036943D03* Y037257D03* Y037572D03* X039015D03* Y037257D03* Y036943D03* Y036628D03* X038385Y041728D03* Y042043D03* Y042357D03* Y042672D03* X039015D03* Y042357D03* Y042043D03* Y041728D03* G54D28* X042539Y05437D03* X042224D03* X041909D03* X041594D03* Y055D03* X041909D03* X042224D03* X042539D03* X044803Y05437D03* X044488D03* X044173D03* X043858D03* Y055D03* X044173D03* X044488D03* X044803D03* X039528Y048701D03* X039843D03* X040157D03* X040472D03* Y048071D03* X040157D03* X039843D03* X039528D03* X030276Y062972D03* X030591D03* X030906D03* X03122D03* Y062343D03* X030906D03* X030591D03* X030276D03* X032047Y057362D03* X032362D03* X032677D03* X032992D03* Y056732D03* X032677D03* X032362D03* X032047D03* X030571Y057362D03* X030886D03* X031201D03* X031516D03* Y056732D03* X031201D03* X030886D03* X030571D03* X029094Y057362D03* X029409D03* X029724D03* X030039D03* Y056732D03* X029724D03* X029409D03* X029094D03* X030866Y048701D03* X031181D03* X031496D03* X031811D03* Y048071D03* X031496D03* X031181D03* X030866D03* X036929Y05437D03* X036614D03* X036299D03* X035984D03* Y055D03* X036299D03* X036614D03* X036929D03* G54D27* X033898Y025669D03* Y025984D03* Y026299D03* Y026614D03* X034528D03* Y026299D03* Y025984D03* Y025669D03* X030485Y041628D03* Y041943D03* Y042257D03* Y042572D03* X031115D03* Y042257D03* Y041943D03* Y041628D03* X030485Y036728D03* Y037043D03* Y037357D03* Y037672D03* X031115D03* Y037357D03* Y037043D03* Y036728D03* X030485Y044128D03* Y044443D03* Y044757D03* Y045072D03* X031115D03* Y044757D03* Y044443D03* Y044128D03* G54D28* X023189Y057362D03* X023504D03* X023819D03* X024134D03* Y056732D03* X023819D03* X023504D03* X023189D03* X023681Y062972D03* X023996D03* X024311D03* X024626D03* Y062343D03* X024311D03* X023996D03* X023681D03* G54D27* X019585Y039328D03* Y039643D03* Y039957D03* Y040272D03* X020215D03* Y039957D03* Y039643D03* Y039328D03* X019585Y036728D03* Y037043D03* Y037357D03* Y037672D03* X020215D03* Y037357D03* Y037043D03* Y036728D03* G54D28* X027776Y05437D03* X027461D03* X027146D03* X026831D03* Y055D03* X027146D03* X027461D03* X027776D03* X024823Y05437D03* X024508D03* X024193D03* X023878D03* Y055D03* X024193D03* X024508D03* X024823D03* X026299Y05437D03* X025984D03* X025669D03* X025354D03* Y055D03* X025669D03* X025984D03* X026299D03* G54D27* X019585Y044628D03* Y044943D03* Y045257D03* Y045572D03* X020215D03* Y045257D03* Y044943D03* Y044628D03* G54D28* X022795Y049291D03* X02311D03* X023425D03* X02374D03* Y048661D03* X023425D03* X02311D03* X022795D03* G54D27* X019585Y041728D03* Y042043D03* Y042357D03* Y042672D03* X020215D03* Y042357D03* Y042043D03* Y041728D03* X02689Y030787D03* Y031102D03* Y031417D03* Y031732D03* X02752D03* Y031417D03* Y031102D03* Y030787D03* X02689Y032362D03* Y032677D03* Y032992D03* Y033307D03* X02752D03* Y032992D03* Y032677D03* Y032362D03* G54D28* X019764Y02185D03* X020079D03* X020394D03* X020709D03* Y02122D03* X020394D03* X020079D03* X019764D03* G54D38* X076506Y050551D03* X075935D03* X07749D03* X076919D03* X076506Y04563D03* X075935D03* X096215Y0149D03* X096785D03* X092844Y027126D03* X092274D03* G54D39* X093839Y037057D03* Y036486D03* X096791D03* Y037057D03* X100197Y059655D03* Y059085D03* X099724Y059655D03* Y059085D03* X098504Y062805D03* Y062234D03* X099606D03* Y062805D03* X100748Y060502D03* Y061073D03* X101299Y059655D03* Y059085D03* G54D38* X104479Y062126D03* X105049D03* X104479Y06311D03* X105049D03* G54D39* X102638Y065443D03* Y064872D03* X105315D03* Y065443D03* X097953Y062234D03* Y062805D03* X097776Y037057D03* Y036486D03* X103583Y037844D03* Y037274D03* G54D38* X10249Y045512D03* X101919D03* X10249Y044449D03* X101919D03* G54D39* X097283Y036486D03* Y037057D03* X104764Y037274D03* Y037844D03* X101319Y036486D03* Y037057D03* X096102Y026624D03* Y026053D03* G54D38* X097273Y026634D03* X096703D03* X097273Y025256D03* X096703D03* X097985Y0149D03* X097415D03* X104085Y013543D03* X104655D03* G54D39* X101142Y0144D03* Y01497D03* X08626Y021703D03* Y021132D03* G54D38* X085758Y023386D03* X085187D03* X089912Y027717D03* X090482D03* X089912Y02378D03* X090482D03* X089912Y027224D03* X090482D03* X08871Y043858D03* X08814D03* X08871Y039724D03* X08814D03* X08871Y038937D03* X08814D03* G54D39* X093031Y064872D03* Y065443D03* X092165Y036486D03* Y037057D03* X091181D03* Y036486D03* X091772Y065443D03* Y064872D03* X089409Y037057D03* Y036486D03* G54D38* X090285Y034409D03* X089715D03* G54D39* X092756Y037057D03* Y036486D03* X093346Y026053D03* Y026624D03* X094488Y064872D03* Y065443D03* X087913Y0306D03* Y03003D03* X09Y036486D03* Y037057D03* X081929Y053199D03* Y052628D03* Y054183D03* Y053612D03* Y055167D03* Y054597D03* X084606Y023652D03* Y024222D03* X081535Y063829D03* Y063258D03* X08626Y019951D03* Y020521D03* X082205Y064872D03* Y065443D03* X080748Y063258D03* Y063829D03* X082323Y061683D03* Y062254D03* X045157Y032156D03* Y032726D03* X044685Y032156D03* Y032726D03* X04563Y030896D03* Y031466D03* X045157Y030896D03* Y031466D03* X044685Y030896D03* Y031466D03* X044232Y041584D03* Y041014D03* X045413Y040207D03* Y039636D03* X044429Y040207D03* Y039636D03* X043937Y040207D03* Y039636D03* X04374Y041584D03* Y041014D03* X04563Y032156D03* Y032726D03* G54D38* X043455Y026142D03* X044025D03* X045266Y028307D03* X045836D03* X046408Y030197D03* X046978D03* X046408Y029606D03* X046978D03* X046408Y031417D03* X046978D03* X046408Y030787D03* X046978D03* G54D39* X045512Y030207D03* Y029636D03* X044921D03* Y030207D03* G54D38* X045266Y026339D03* X045836D03* Y02378D03* X045266D03* G54D39* X046594Y033337D03* Y033907D03* G54D38* X046781Y062953D03* X046211D03* G54D39* X064606Y041014D03* Y041584D03* G54D38* X06125Y025945D03* X060679D03* X061285Y0162D03* X060715D03* X064515D03* X065085D03* X061959Y024272D03* X062529D03* G54D39* X070512Y067175D03* Y066604D03* X074094Y064872D03* Y065443D03* X073661Y057726D03* Y057156D03* G54D38* X075935Y04937D03* X076506D03* G54D39* X07748Y052431D03* Y053002D03* X073268Y064872D03* Y065443D03* X071299Y057726D03* Y057156D03* X066772D03* Y057726D03* X069724Y057156D03* Y057726D03* X068543Y041014D03* Y041584D03* Y057156D03* Y057726D03* X067953D03* Y057156D03* X064016Y041584D03* Y041014D03* X065669Y015738D03* Y016309D03* G54D38* X053297Y026142D03* X053868D03* X051899Y031417D03* X051329D03* G54D39* X055551Y059912D03* Y060482D03* X054764Y059912D03* Y060482D03* X054213Y059912D03* Y060482D03* X053465Y059912D03* Y060482D03* G54D38* X051899Y032008D03* X051329D03* X054734Y046614D03* X054164D03* X055325D03* X054754D03* X060187Y030394D03* X060758D03* G54D39* X058701Y049734D03* Y049164D03* X060079Y015738D03* Y016309D03* G54D38* X058199Y021811D03* X057628D03* X056722D03* X056152D03* X060187Y032441D03* X060758D03* X060187Y030866D03* X060758D03* G54D39* X06189Y015738D03* Y016309D03* X061339Y035699D03* Y03627D03* G54D38* X048947Y062953D03* X048376D03* X050148Y032008D03* X050718D03* G54D39* X050472Y059912D03* Y060482D03* X05122Y059912D03* Y060482D03* X050433Y030207D03* Y029636D03* G54D38* X04877Y030197D03* X04934D03* X04877Y029606D03* X04934D03* Y031417D03* X04877D03* X04934Y030787D03* X04877D03* X050148Y031417D03* X050718D03* G54D39* X051614Y030797D03* Y030227D03* X051024Y030207D03* Y029636D03* X052677Y059912D03* Y060482D03* X051929Y059912D03* Y060482D03* X046004Y033907D03* Y033337D03* X046398Y040207D03* Y039636D03* X047283Y021526D03* Y022096D03* X049055Y047707D03* Y048277D03* Y048691D03* Y049262D03* X047087D03* Y048691D03* X046496Y066978D03* Y066408D03* X047283Y066978D03* Y066408D03* X045906Y040207D03* Y039636D03* X028386Y048671D03* Y048101D03* G54D38* X025443Y025197D03* X024872D03* G54D39* X039803Y039636D03* Y040207D03* G54D38* X036565Y031417D03* X037136D03* X036565Y030787D03* X037136D03* X039498D03* X038927D03* X039498Y031417D03* X038927D03* Y029606D03* X039498D03* X038927Y030197D03* X039498D03* X036565D03* X037136D03* X039715Y056654D03* X040285D03* X036565Y029606D03* X037136D03* X038415Y0351D03* X038985D03* X035994Y02378D03* X035423D03* G54D39* X037441Y05497D03* Y0544D03* X037047Y048671D03* Y048101D03* X041476Y040207D03* Y039636D03* X040984Y048671D03* Y048101D03* X041102Y033907D03* Y033337D03* X042165Y057943D03* Y058514D03* X041181Y030207D03* Y029636D03* G54D38* X042077Y056654D03* X042647D03* G54D39* X041772Y030797D03* Y030227D03* X040591Y030207D03* Y029636D03* X042953Y033337D03* Y033907D03* X041772Y032156D03* Y032726D03* X042461Y033337D03* Y033907D03* X04128Y041584D03* Y041014D03* X040787Y041584D03* Y041014D03* X04248Y032156D03* Y032726D03* X044213Y032156D03* Y032726D03* X04374Y032156D03* Y032726D03* X043268Y032156D03* Y032726D03* X044213Y030896D03* Y031466D03* X04374Y030896D03* Y031466D03* X043268Y030896D03* Y031466D03* X042461Y040207D03* Y039636D03* X042953Y040207D03* Y039636D03* X042264Y041584D03* Y041014D03* X039016Y048671D03* Y048101D03* X030945Y05497D03* Y0544D03* X03311Y062943D03* Y062372D03* Y060896D03* Y061466D03* G54D38* X033612Y057638D03* X034183D03* G54D39* X032323Y048671D03* Y048101D03* X032756Y05497D03* Y0544D03* G54D38* X035423Y028307D03* X035994D03* X035423Y026339D03* X035994D03* X031073Y041063D03* X030502D03* G54D39* X035669Y030167D03* Y029597D03* Y031348D03* Y030778D03* X037441Y021526D03* Y022096D03* X033307Y05497D03* Y0544D03* X030354Y048671D03* Y048101D03* X025236Y062943D03* Y062372D03* X027205Y060896D03* Y061466D03* X022283Y049262D03* Y048691D03* X022835Y02249D03* Y021919D03* X021811D03* Y02249D03* X022323Y021919D03* Y02249D03* X021299Y021919D03* Y02249D03* X02645Y023605D03* Y024175D03* X026457Y026663D03* Y026093D03* X022087Y029715D03* Y030285D03* G54D38* X019615Y0351D03* X020185D03* G54D35* X048071Y065492D03* Y063957D03* X047677Y065492D03* Y063957D03* X047283Y065492D03* Y063957D03* X04689Y065492D03* Y063957D03* X046496Y065492D03* Y063957D03* X046102Y065492D03* Y063957D03* X045709Y065492D03* Y063957D03* X045315Y065492D03* Y063957D03* X044921Y065492D03* Y063957D03* X044528Y065492D03* Y063957D03* X044134Y065492D03* Y063957D03* X04374Y065492D03* Y063957D03* X043346Y065492D03* Y063957D03* X042953Y065492D03* Y063957D03* X042559Y065492D03* Y063957D03* X042165Y065492D03* Y063957D03* X041772Y065492D03* Y063957D03* X041378Y065492D03* Y063957D03* X040984Y065492D03* Y063957D03* X040591Y065492D03* Y063957D03* X040197Y065492D03* Y063957D03* X039803Y065492D03* Y063957D03* X039409Y065492D03* Y063957D03* X039016Y065492D03* Y063957D03* X038622Y065492D03* Y063957D03* X038228Y065492D03* Y063957D03* X037835Y065492D03* Y063957D03* X037441Y065492D03* Y063957D03* X037047Y065492D03* Y063957D03* X036654Y065492D03* Y063957D03* X03626Y065492D03* Y063957D03* X035866Y065492D03* Y063957D03* G54D37* X037933Y016535D03* Y015079D03* X038327Y016535D03* Y015079D03* X03872Y016535D03* Y015079D03* X039114Y016535D03* Y015079D03* X039508Y016535D03* Y015079D03* X039902Y016535D03* Y015079D03* X040295Y016535D03* Y015079D03* X040689Y016535D03* Y015079D03* X041083Y016535D03* Y015079D03* X041476Y016535D03* Y015079D03* X04187Y016535D03* Y015079D03* X042264Y016535D03* Y015079D03* X042657Y016535D03* Y015079D03* X043051Y016535D03* Y015079D03* X043445Y016535D03* Y015079D03* X043839Y016535D03* Y015079D03* X044232Y016535D03* Y015079D03* X044626Y016535D03* Y015079D03* X04502Y016535D03* Y015079D03* X045413Y016535D03* Y015079D03* X045807Y016535D03* Y015079D03* X046201Y016535D03* Y015079D03* X046594Y016535D03* Y015079D03* X046988Y016535D03* Y015079D03* X047382Y016535D03* Y015079D03* X047776Y016535D03* Y015079D03* X048169Y016535D03* Y015079D03* X048563Y016535D03* Y015079D03* X048957Y016535D03* Y015079D03* X04935Y016535D03* Y015079D03* X049744Y016535D03* Y015079D03* X050138Y016535D03* Y015079D03* G54D36* X052343Y045728D03* X050886D03* X052343Y045335D03* X050886D03* X052343Y044941D03* X050886D03* X052343Y044547D03* X050886D03* X052343Y044154D03* X050886D03* X052343Y04376D03* X050886D03* X052343Y043366D03* X050886D03* X052343Y042972D03* X050886D03* X052343Y042579D03* X050886D03* X052343Y042185D03* X050886D03* X052343Y041791D03* X050886D03* X052343Y041398D03* X050886D03* X052343Y041004D03* X050886D03* X052343Y04061D03* X050886D03* X052343Y040217D03* X050886D03* X052343Y039823D03* X050886D03* X052343Y039429D03* X050886D03* X052343Y039035D03* X050886D03* X052343Y038642D03* X050886D03* X052343Y038248D03* X050886D03* X052343Y037854D03* X050886D03* X052343Y037461D03* X050886D03* X052343Y037067D03* X050886D03* X052343Y036673D03* X050886D03* X052343Y03628D03* X050886D03* X052343Y035886D03* X050886D03* X052343Y035492D03* X050886D03* X052343Y035098D03* X050886D03* X052343Y034705D03* X050886D03* X052343Y034311D03* X050886D03* X052343Y033917D03* X050886D03* X052343Y033524D03* X050886D03* G54D35* X033504Y065492D03* Y063957D03* X03311Y065492D03* Y063957D03* X032717Y065492D03* Y063957D03* X032323Y065492D03* Y063957D03* X031929Y065492D03* Y063957D03* X031535Y065492D03* Y063957D03* X031142Y065492D03* Y063957D03* X030748Y065492D03* Y063957D03* X030354Y065492D03* Y063957D03* X029961Y065492D03* Y063957D03* X029567Y065492D03* Y063957D03* X029173Y065492D03* Y063957D03* X02878Y065492D03* Y063957D03* X028386Y065492D03* Y063957D03* X027992Y065492D03* Y063957D03* X027598Y065492D03* Y063957D03* X027205Y065492D03* Y063957D03* X026811Y065492D03* Y063957D03* X026417Y065492D03* Y063957D03* X026024Y065492D03* Y063957D03* X02563Y065492D03* Y063957D03* X025236Y065492D03* Y063957D03* X024843Y065492D03* Y063957D03* X024449Y065492D03* Y063957D03* X024055Y065492D03* Y063957D03* X023661Y065492D03* Y063957D03* X023268Y065492D03* Y063957D03* X022874Y065492D03* Y063957D03* X02248Y065492D03* Y063957D03* X022087Y065492D03* Y063957D03* X021693Y065492D03* Y063957D03* X021299Y065492D03* Y063957D03* G54D37* X019232Y016535D03* Y015079D03* X019626Y016535D03* Y015079D03* X02002Y016535D03* Y015079D03* X020413Y016535D03* Y015079D03* X020807Y016535D03* Y015079D03* X021201Y016535D03* Y015079D03* X021594Y016535D03* Y015079D03* X021988Y016535D03* Y015079D03* X022382Y016535D03* Y015079D03* X022776Y016535D03* Y015079D03* X023169Y016535D03* Y015079D03* X023563Y016535D03* Y015079D03* X023957Y016535D03* Y015079D03* X02435Y016535D03* Y015079D03* X024744Y016535D03* Y015079D03* X025138Y016535D03* Y015079D03* X025531Y016535D03* Y015079D03* X025925Y016535D03* Y015079D03* X026319Y016535D03* Y015079D03* X026713Y016535D03* Y015079D03* X027106Y016535D03* Y015079D03* X0275Y016535D03* Y015079D03* X027894Y016535D03* Y015079D03* X028287Y016535D03* Y015079D03* X028681Y016535D03* Y015079D03* X029075Y016535D03* Y015079D03* X029469Y016535D03* Y015079D03* X029862Y016535D03* Y015079D03* X030256Y016535D03* Y015079D03* X03065Y016535D03* Y015079D03* X031043Y016535D03* Y015079D03* X031437Y016535D03* Y015079D03* G54D35* X033504Y05998D03* Y058445D03* X03311Y05998D03* Y058445D03* X032717Y05998D03* Y058445D03* X032323Y05998D03* Y058445D03* X031929Y05998D03* Y058445D03* X031535Y05998D03* Y058445D03* X031142Y05998D03* Y058445D03* X030748Y05998D03* Y058445D03* X030354Y05998D03* Y058445D03* X029961Y05998D03* Y058445D03* X029567Y05998D03* Y058445D03* X029173Y05998D03* Y058445D03* X02878Y05998D03* Y058445D03* X028386Y05998D03* Y058445D03* X027992Y05998D03* Y058445D03* X027598Y05998D03* Y058445D03* X027205Y05998D03* Y058445D03* X026811Y05998D03* Y058445D03* X026417Y05998D03* Y058445D03* X026024Y05998D03* Y058445D03* X02563Y05998D03* Y058445D03* X025236Y05998D03* Y058445D03* X024843Y05998D03* Y058445D03* X024449Y05998D03* Y058445D03* X024055Y05998D03* Y058445D03* X023661Y05998D03* Y058445D03* X023268Y05998D03* Y058445D03* X022874Y05998D03* Y058445D03* X02248Y05998D03* Y058445D03* X022087Y05998D03* Y058445D03* X021693Y05998D03* Y058445D03* X021299Y05998D03* Y058445D03* G54D36* X037185Y045728D03* X035728D03* X037185Y045335D03* X035728D03* X037185Y044941D03* X035728D03* X037185Y044547D03* X035728D03* X037185Y044154D03* X035728D03* X037185Y04376D03* X035728D03* X037185Y043366D03* X035728D03* X037185Y042972D03* X035728D03* X037185Y042579D03* X035728D03* X037185Y042185D03* X035728D03* X037185Y041791D03* X035728D03* X037185Y041398D03* X035728D03* X037185Y041004D03* X035728D03* X037185Y04061D03* X035728D03* X037185Y040217D03* X035728D03* X037185Y039823D03* X035728D03* X037185Y039429D03* X035728D03* X037185Y039035D03* X035728D03* X037185Y038642D03* X035728D03* X037185Y038248D03* X035728D03* X037185Y037854D03* X035728D03* X037185Y037461D03* X035728D03* X037185Y037067D03* X035728D03* X037185Y036673D03* X035728D03* X037185Y03628D03* X035728D03* X037185Y035886D03* X035728D03* X037185Y035492D03* X035728D03* X037185Y035098D03* X035728D03* X037185Y034705D03* X035728D03* X037185Y034311D03* X035728D03* X037185Y033917D03* X035728D03* X037185Y033524D03* X035728D03* X033642Y045728D03* X032185D03* X033642Y045335D03* X032185D03* X033642Y044941D03* X032185D03* X033642Y044547D03* X032185D03* X033642Y044154D03* X032185D03* X033642Y04376D03* X032185D03* X033642Y043366D03* X032185D03* X033642Y042972D03* X032185D03* X033642Y042579D03* X032185D03* X033642Y042185D03* X032185D03* X033642Y041791D03* X032185D03* X033642Y041398D03* X032185D03* X033642Y041004D03* X032185D03* X033642Y04061D03* X032185D03* X033642Y040217D03* X032185D03* X033642Y039823D03* X032185D03* X033642Y039429D03* X032185D03* X033642Y039035D03* X032185D03* X033642Y038642D03* X032185D03* X033642Y038248D03* X032185D03* X033642Y037854D03* X032185D03* X033642Y037461D03* X032185D03* X033642Y037067D03* X032185D03* X033642Y036673D03* X032185D03* X033642Y03628D03* X032185D03* X033642Y035886D03* X032185D03* X033642Y035492D03* X032185D03* X033642Y035098D03* X032185D03* X033642Y034705D03* X032185D03* X033642Y034311D03* X032185D03* X033642Y033917D03* X032185D03* X033642Y033524D03* X032185D03* X018484Y045728D03* X017028D03* X018484Y045335D03* X017028D03* X018484Y044941D03* X017028D03* X018484Y044547D03* X017028D03* X018484Y044154D03* X017028D03* X018484Y04376D03* X017028D03* X018484Y043366D03* X017028D03* X018484Y042972D03* X017028D03* X018484Y042579D03* X017028D03* X018484Y042185D03* X017028D03* X018484Y041791D03* X017028D03* X018484Y041398D03* X017028D03* X018484Y041004D03* X017028D03* X018484Y04061D03* X017028D03* X018484Y040217D03* X017028D03* X018484Y039823D03* X017028D03* X018484Y039429D03* X017028D03* X018484Y039035D03* X017028D03* X018484Y038642D03* X017028D03* X018484Y038248D03* X017028D03* X018484Y037854D03* X017028D03* X018484Y037461D03* X017028D03* X018484Y037067D03* X017028D03* X018484Y036673D03* X017028D03* X018484Y03628D03* X017028D03* X018484Y035886D03* X017028D03* X018484Y035492D03* X017028D03* X018484Y035098D03* X017028D03* X018484Y034705D03* X017028D03* X018484Y034311D03* X017028D03* X018484Y033917D03* X017028D03* X018484Y033524D03* X017028D03* G54D53* X098618Y065315D03* X099729D03* G54D52* X100866Y063075D03* Y061964D03* X096693Y063075D03* Y061964D03* X068976Y030241D03* Y029129D03* X070118Y030241D03* Y029129D03* X068976Y028311D03* Y0272D03* X070118Y03217D03* Y031059D03* X068976Y03217D03* Y031059D03* X070118Y028311D03* Y0272D03* X072402Y028311D03* Y0272D03* Y030241D03* Y029129D03* G54D53* X074838Y037402D03* X075949D03* X074838Y038425D03* X075949D03* G54D52* X072402Y03217D03* Y031059D03* X076417Y047633D03* Y048745D03* X07126Y030241D03* Y029129D03* Y028311D03* Y0272D03* Y03217D03* Y031059D03* X067835Y03217D03* Y031059D03* Y030241D03* Y029129D03* Y028311D03* Y0272D03* G54D53* X059248Y049331D03* X060359D03* G54D52* X046102Y056579D03* Y055468D03* X037244Y056579D03* Y055468D03* X023268Y05593D03* Y054818D03* G54D56* X07878Y052676D03* Y051576D03* G54D57* X080395Y065157D03* X081495D03* X096576Y056614D03* X097676D03* X100983D03* X099883D03* X097519Y065157D03* X096419D03* X086416Y02437D03* X085316D03* X062875Y057638D03* X063975D03* X072046Y059409D03* X070946D03* X05492Y058425D03* X05382D03* X05492Y045433D03* X05382D03* X05492Y043858D03* X05382D03* X059644Y05685D03* X058544D03* X05866Y027126D03* X05756D03* G54D56* X059961Y018899D03* Y019999D03* X055256Y024822D03* Y023722D03* G54D57* X036022Y048386D03* X034922D03* X037285Y061969D03* X038385D03* G54D46* X104567Y059213D03* Y060394D03* X102795D03* Y059213D03* X057795Y013937D03* Y015118D03* G54D45* X062306Y014595D03* X064006D03* X058906D03* X060606D03* X056732Y01561D03* G54D34* X063094Y014674D03* Y013926D03* X062306D03* X064794Y014674D03* Y013926D03* X064006D03* X059694Y014674D03* Y013926D03* X058906D03* X061394Y014674D03* Y013926D03* X060606D03* X055945Y015531D03* Y01628D03* X056732D03* G54D50* X076811Y05309D03* Y052343D03* G54D51* X103169Y061063D03* X102422D03* X105137D03* X10439D03* X086043Y025354D03* X085296D03* G54D50* X0929Y014626D03* Y015374D03* X092008Y014626D03* Y015374D03* X091063Y014626D03* Y015374D03* X0938Y014626D03* Y015374D03* G54D51* X063287Y016063D03* X06254D03* X059704Y048583D03* X058957D03* G54D62* X082087Y030866D03* X086496D03* X082087Y036181D03* X086496D03* G54D61* X084291Y039488D03* Y043898D03* G54D62* X061299Y064528D03* X05689D03* G54D30* X092303Y026713D03* X092559D03* X092815D03* Y025965D03* X092559D03* X092303D03* G54D32* X09633Y060827D03* X09658D03* X09683D03* X09708D03* X09733D03* X09758D03* X09783D03* X09808D03* Y05878D03* X09783D03* X09758D03* X09733D03* X09708D03* X09683D03* X09658D03* X09633D03* G54D31* X096943Y016264D03* X097257D03* Y015536D03* X096943D03* G54D33* X022224Y050315D03* X022343Y053543D03* X022461Y050315D03* X022579Y053543D03* X022697Y050315D03* X022815Y053543D03* X022933Y050315D03* X023051Y053543D03* X023169Y050315D03* X023287Y053543D03* X023406Y050315D03* X023524Y053543D03* X023642Y050315D03* X02376Y053543D03* X023878Y050315D03* X023996Y053543D03* X024114Y050315D03* X024232Y053543D03* X02435Y050315D03* X024469Y053543D03* X024587Y050315D03* X024705Y053543D03* X024823Y050315D03* X024941Y053543D03* X025059Y050315D03* X025177Y053543D03* X025295Y050315D03* X025413Y053543D03* X025531Y050315D03* X02565Y053543D03* X025768Y050315D03* X025886Y053543D03* X026004Y050315D03* X026122Y053543D03* X02624Y050315D03* X026358Y053543D03* X026476Y050315D03* X026594Y053543D03* X026713Y050315D03* X026831Y053543D03* X026949Y050315D03* X027067Y053543D03* X027185Y050315D03* X027303Y053543D03* X027421Y050315D03* X027539Y053543D03* X027657Y050315D03* X027776Y053543D03* X027894Y050315D03* X028012Y053543D03* X02813Y050315D03* X028248Y053543D03* X028366Y050315D03* X028484Y053543D03* X028602Y050315D03* X02872Y053543D03* X028839Y050315D03* X028957Y053543D03* X029075Y050315D03* X029193Y053543D03* X029311Y050315D03* X029429Y053543D03* X029547Y050315D03* X029665Y053543D03* X029783Y050315D03* X029902Y053543D03* X03002Y050315D03* X030138Y053543D03* X030256Y050315D03* X030374Y053543D03* X030492Y050315D03* X03061Y053543D03* X030728Y050315D03* X030846Y053543D03* X030965Y050315D03* X031083Y053543D03* X031201Y050315D03* X031319Y053543D03* X031437Y050315D03* X031555Y053543D03* X031673Y050315D03* X031791Y053543D03* X031909Y050315D03* X032028Y053543D03* X032146Y050315D03* X032264Y053543D03* X032382Y050315D03* X0325Y053543D03* X032618Y050315D03* X032736Y053543D03* X032854Y050315D03* X032972Y053543D03* X033091Y050315D03* X033209Y053543D03* X033327Y050315D03* X033445Y053543D03* X033563Y050315D03* X033681Y053543D03* X033799Y050315D03* X033917Y053543D03* X034035Y050315D03* X034154Y053543D03* X034272Y050315D03* X03439Y053543D03* X034508Y050315D03* X034626Y053543D03* X034744Y050315D03* X034862Y053543D03* X03498Y050315D03* X035098Y053543D03* X035217Y050315D03* X035335Y053543D03* X035453Y050315D03* X035571Y053543D03* X035689Y050315D03* X035807Y053543D03* X035925Y050315D03* X036043Y053543D03* X036161Y050315D03* X03628Y053543D03* X036398Y050315D03* X036516Y053543D03* X036634Y050315D03* X036752Y053543D03* X03687Y050315D03* X036988Y053543D03* X037106Y050315D03* X037224Y053543D03* X037343Y050315D03* X037461Y053543D03* X037579Y050315D03* X037697Y053543D03* X037815Y050315D03* X037933Y053543D03* X038051Y050315D03* X038169Y053543D03* X038287Y050315D03* X038406Y053543D03* X038524Y050315D03* X038642Y053543D03* X03876Y050315D03* X038878Y053543D03* X038996Y050315D03* X039114Y053543D03* X039232Y050315D03* X03935Y053543D03* X039469Y050315D03* X039587Y053543D03* X039705Y050315D03* X039823Y053543D03* X039941Y050315D03* X040059Y053543D03* X040177Y050315D03* X040295Y053543D03* X040413Y050315D03* X040531Y053543D03* X04065Y050315D03* X040768Y053543D03* X040886Y050315D03* X041004Y053543D03* X042539Y050315D03* X042657Y053543D03* X042776Y050315D03* X042894Y053543D03* X043012Y050315D03* X04313Y053543D03* X043248Y050315D03* X043366Y053543D03* X043484Y050315D03* X043602Y053543D03* X04372Y050315D03* X043839Y053543D03* X043957Y050315D03* X044075Y053543D03* X044193Y050315D03* X044311Y053543D03* X044429Y050315D03* X044547Y053543D03* X044665Y050315D03* X044783Y053543D03* X044902Y050315D03* X04502Y053543D03* X045138Y050315D03* X045256Y053543D03* X045374Y050315D03* X045492Y053543D03* X04561Y050315D03* X045728Y053543D03* X045846Y050315D03* X045965Y053543D03* X046083Y050315D03* X046201Y053543D03* X046319Y050315D03* X046437Y053543D03* X046555Y050315D03* X046673Y053543D03* X046791Y050315D03* X046909Y053543D03* X047028Y050315D03* X047146Y053543D03* X022224Y050315D03* X022343Y053543D03* X022461Y050315D03* X022579Y053543D03* X022697Y050315D03* X022815Y053543D03* X022933Y050315D03* X023051Y053543D03* X023169Y050315D03* X023287Y053543D03* X023406Y050315D03* X023524Y053543D03* X023642Y050315D03* X02376Y053543D03* X023878Y050315D03* X023996Y053543D03* X024114Y050315D03* X024232Y053543D03* X02435Y050315D03* X024469Y053543D03* X024587Y050315D03* X024705Y053543D03* X024823Y050315D03* X024941Y053543D03* X025059Y050315D03* X025177Y053543D03* X025295Y050315D03* X025413Y053543D03* X025531Y050315D03* X02565Y053543D03* X025768Y050315D03* X025886Y053543D03* X026004Y050315D03* X026122Y053543D03* X02624Y050315D03* X026358Y053543D03* X026476Y050315D03* X026594Y053543D03* X026713Y050315D03* X026831Y053543D03* X026949Y050315D03* X027067Y053543D03* X027185Y050315D03* X027303Y053543D03* X027421Y050315D03* X027539Y053543D03* X027657Y050315D03* X027776Y053543D03* X027894Y050315D03* X028012Y053543D03* X02813Y050315D03* X028248Y053543D03* X028366Y050315D03* X028484Y053543D03* X028602Y050315D03* X02872Y053543D03* X028839Y050315D03* X028957Y053543D03* X029075Y050315D03* X029193Y053543D03* X029311Y050315D03* X029429Y053543D03* X029547Y050315D03* X029665Y053543D03* X029783Y050315D03* X029902Y053543D03* X03002Y050315D03* X030138Y053543D03* X030256Y050315D03* X030374Y053543D03* X030492Y050315D03* X03061Y053543D03* X030728Y050315D03* X030846Y053543D03* X030965Y050315D03* X031083Y053543D03* X031201Y050315D03* X031319Y053543D03* X031437Y050315D03* X031555Y053543D03* X031673Y050315D03* X031791Y053543D03* X031909Y050315D03* X032028Y053543D03* X032146Y050315D03* X032264Y053543D03* X032382Y050315D03* X0325Y053543D03* X032618Y050315D03* X032736Y053543D03* X032854Y050315D03* X032972Y053543D03* X033091Y050315D03* X033209Y053543D03* X033327Y050315D03* X033445Y053543D03* X033563Y050315D03* X033681Y053543D03* X033799Y050315D03* X033917Y053543D03* X034035Y050315D03* X034154Y053543D03* X034272Y050315D03* X03439Y053543D03* X034508Y050315D03* X034626Y053543D03* X034744Y050315D03* X034862Y053543D03* X03498Y050315D03* X035098Y053543D03* X035217Y050315D03* X035335Y053543D03* X035453Y050315D03* X035571Y053543D03* X035689Y050315D03* X035807Y053543D03* X035925Y050315D03* X036043Y053543D03* X036161Y050315D03* X03628Y053543D03* X036398Y050315D03* X036516Y053543D03* X036634Y050315D03* X036752Y053543D03* X03687Y050315D03* X036988Y053543D03* X037106Y050315D03* X037224Y053543D03* X037343Y050315D03* X037461Y053543D03* X037579Y050315D03* X037697Y053543D03* X037815Y050315D03* X037933Y053543D03* X038051Y050315D03* X038169Y053543D03* X038287Y050315D03* X038406Y053543D03* X038524Y050315D03* X038642Y053543D03* X03876Y050315D03* X038878Y053543D03* X038996Y050315D03* X039114Y053543D03* X039232Y050315D03* X03935Y053543D03* X039469Y050315D03* X039587Y053543D03* X039705Y050315D03* X039823Y053543D03* X039941Y050315D03* X040059Y053543D03* X040177Y050315D03* X040295Y053543D03* X040413Y050315D03* X040531Y053543D03* X04065Y050315D03* X040768Y053543D03* X040886Y050315D03* X041004Y053543D03* X042539Y050315D03* X042657Y053543D03* X042776Y050315D03* X042894Y053543D03* X043012Y050315D03* X04313Y053543D03* X043248Y050315D03* X043366Y053543D03* X043484Y050315D03* X043602Y053543D03* X04372Y050315D03* X043839Y053543D03* X043957Y050315D03* X044075Y053543D03* X044193Y050315D03* X044311Y053543D03* X044429Y050315D03* X044547Y053543D03* X044665Y050315D03* X044783Y053543D03* X044902Y050315D03* X04502Y053543D03* X045138Y050315D03* X045256Y053543D03* X045374Y050315D03* X045492Y053543D03* X04561Y050315D03* X045728Y053543D03* X045846Y050315D03* X045965Y053543D03* X046083Y050315D03* X046201Y053543D03* X046319Y050315D03* X046437Y053543D03* X046555Y050315D03* X046673Y053543D03* X046791Y050315D03* X046909Y053543D03* X047028Y050315D03* X047146Y053543D03* G54D30* X060728Y03128D03* X060472D03* X060217D03* Y032028D03* X060472D03* X060728D03* G54D59* X086063Y04878D03* Y051535D03* G54D60* X059685Y060197D03* X056929D03* G54D44* X054941Y020866D03* X055846D03* X056752D03* G54D54* X055846Y018425D03* G54D42* X050045Y067008D03* X050545D03* X051045D03* X051545D03* X052045D03* X052545D03* X053045D03* X053545D03* X054045D03* X054545D03* X055045D03* X055545D03* Y06126D03* X055045D03* X054545D03* X054045D03* X053545D03* X053045D03* X052545D03* X052045D03* X051545D03* X051045D03* X050545D03* X050045D03* G54D47* X0947Y016206D03* Y014394D03* X095906Y017205D03* Y015394D03* X0982D03* Y017206D03* X0902Y014394D03* Y016206D03* G54D49* X063819Y058819D03* X065D03* X075906Y03937D03* X077087D03* G54D48* X07685Y037362D03* Y038543D03* G54D55* X063031Y061091D03* Y06324D03* G54D58* X049386Y03248D03* X047386D03* Y034134D03* X049386D03* G54D63* X080748Y028441D03* Y030142D03* Y033559D03* Y03526D03* G54D29* X084419Y019205D03* X084675D03* X084931D03* X085187D03* X085443D03* X085699D03* X085955D03* X086211D03* X086467D03* X086722D03* X086978D03* X087234D03* Y016465D03* X086978D03* X086722D03* X086467D03* X086211D03* X085955D03* X085699D03* X085443D03* X085187D03* X084931D03* X084675D03* X084419D03* G54D43* X103051Y034504D03* X104823D03* X103051Y033717D03* X104823D03* X103051Y032929D03* X104823D03* X103051Y032142D03* X104823D03* X103051Y031354D03* X104823D03* X103051Y030567D03* X104823D03* X103051Y02978D03* X104823D03* X103051Y028992D03* X104823D03* X103051Y028205D03* X104823D03* X103051Y027417D03* X104823D03* X103051Y02663D03* X104823D03* X103051Y025843D03* X104823D03* X103051Y025055D03* X104823D03* X103051Y024268D03* X104823D03* X103051Y02348D03* X104823D03* X103051Y022693D03* X104823D03* X103051Y021906D03* X104823D03* X103051Y021118D03* X104823D03* X103051Y020331D03* X104823D03* X103051Y019543D03* X104823D03* X103051Y018756D03* X104823D03* X103051Y017969D03* X104823D03* G54D13* X040672Y075712D02* G01X041205Y076423D01* X04076Y075712D02* G01X040672Y075801D01* X041116Y075712D02* G01X04076D01* X041205Y075801D02* G01X041116Y075712D01* X041205Y076334D02* G01Y075801D01* X041116Y076423D02* G01X041205Y076334D01* X04076Y076423D02* G01X041116D01* X040672Y076334D02* G01X04076Y076423D01* X040672Y075801D02* G01Y076334D01* X040405Y076067D02* G01X040494Y076156D01* X040049Y076067D02* G01X040405D01* X03996Y076156D02* G01X040049Y076067D01* X03996Y076334D02* G01Y076156D01* X040049Y076423D02* G01X03996Y076334D01* X040405Y076423D02* G01X040049D01* X040494Y076334D02* G01X040405Y076423D01* X040494Y075801D02* G01Y076334D01* X040405Y075712D02* G01X040494Y075801D01* X040049Y075712D02* G01X040405D01* X03996Y075801D02* G01X040049Y075712D01* X039249Y076067D02* G01X039783D01* X038538Y075712D02* G01X039072Y076423D01* X038627Y075712D02* G01X038538Y075801D01* X038983Y075712D02* G01X038627D01* X039072Y075801D02* G01X038983Y075712D01* X039072Y076334D02* G01Y075801D01* X038983Y076423D02* G01X039072Y076334D01* X038627Y076423D02* G01X038983D01* X038538Y076334D02* G01X038627Y076423D01* X038538Y075801D02* G01Y076334D01* X038272Y076067D02* G01X03836Y076156D01* X037916Y076067D02* G01X038272D01* X037827Y076156D02* G01X037916Y076067D01* X037827Y076334D02* G01Y076156D01* X037916Y076423D02* G01X037827Y076334D01* X038272Y076423D02* G01X037916D01* X03836Y076334D02* G01X038272Y076423D01* X03836Y075801D02* G01Y076334D01* X038272Y075712D02* G01X03836Y075801D01* X037916Y075712D02* G01X038272D01* X037827Y075801D02* G01X037916Y075712D01* X037649Y076156D02* G01X03756Y076067D01* X037649Y076334D02* G01Y076156D01* X03756Y076423D02* G01X037649Y076334D01* X037205Y076423D02* G01X03756D01* X037116Y076334D02* G01X037205Y076423D01* X037116Y076156D02* G01Y076334D01* X037205Y076067D02* G01X037116Y076156D01* X03756Y076067D02* G01X037205D01* X037649Y075978D02* G01X03756Y076067D01* X037649Y075801D02* G01Y075978D01* X03756Y075712D02* G01X037649Y075801D01* X037205Y075712D02* G01X03756D01* X037116Y075801D02* G01X037205Y075712D01* X037116Y075978D02* G01Y075801D01* X037205Y076067D02* G01X037116Y075978D01* X036494Y076067D02* G01X036405Y075978D01* X036849Y076067D02* G01X036494D01* X036938Y075978D02* G01X036849Y076067D01* X036938Y075801D02* G01Y075978D01* X036849Y075712D02* G01X036938Y075801D01* X036494Y075712D02* G01X036849D01* X036405Y075801D02* G01X036494Y075712D01* X036405Y076334D02* G01Y075801D01* X036494Y076423D02* G01X036405Y076334D01* X036849Y076423D02* G01X036494D01* X036938Y076334D02* G01X036849Y076423D01* X035694Y075712D02* G01X036227Y076423D01* X035249D02* G01X035072Y076245D01* X035249Y075712D02* G01Y076423D01* X034983Y075712D02* G01X035516D01* X034805Y076156D02* G01X034716Y076067D01* X034805Y076334D02* G01Y076156D01* X034716Y076423D02* G01X034805Y076334D01* X03436Y076423D02* G01X034716D01* X034272Y076334D02* G01X03436Y076423D01* X034272Y076156D02* G01Y076334D01* X03436Y076067D02* G01X034272Y076156D01* X034716Y076067D02* G01X03436D01* X034805Y075978D02* G01X034716Y076067D01* X034805Y075801D02* G01Y075978D01* X034716Y075712D02* G01X034805Y075801D01* X03436Y075712D02* G01X034716D01* X034272Y075801D02* G01X03436Y075712D01* X034272Y075978D02* G01Y075801D01* X03436Y076067D02* G01X034272Y075978D01* X033738Y076067D02* G01X033916D01* X033649Y075712D02* G01X03356Y075801D01* X034005Y075712D02* G01X033649D01* X034094Y075801D02* G01X034005Y075712D01* X034094Y075978D02* G01Y075801D01* X033916Y076067D02* G01X034094Y075978D01* Y076156D02* G01X033916Y076067D01* X034094Y076334D02* G01Y076156D01* X034005Y076423D02* G01X034094Y076334D01* X033649Y076423D02* G01X034005D01* X03356Y076334D02* G01X033649Y076423D01* X032849Y075712D02* G01X033383D01* X032849Y075801D02* G01Y075712D01* X033294Y076067D02* G01X032849Y075801D01* X033383Y076156D02* G01X033294Y076067D01* X033383Y076334D02* G01Y076156D01* X033294Y076423D02* G01X033383Y076334D01* X032938Y076423D02* G01X033294D01* X032849Y076334D02* G01X032938Y076423D01* X032138Y075712D02* G01X032672Y076423D01* X032227Y075712D02* G01X032138Y075801D01* X032583Y075712D02* G01X032227D01* X032672Y075801D02* G01X032583Y075712D01* X032672Y076334D02* G01Y075801D01* X032583Y076423D02* G01X032672Y076334D01* X032227Y076423D02* G01X032583D01* X032138Y076334D02* G01X032227Y076423D01* X032138Y075801D02* G01Y076334D01* X030005Y076156D02* G01X030449Y075712D01* X030005D02* G01X030449Y076156D01* X029383Y075978D02* G01X029738D01* X029294Y07589D02* G01X029383Y075978D01* X029294Y075801D02* G01Y07589D01* X029383Y075712D02* G01X029294Y075801D01* X029738Y075712D02* G01X029383D01* X029738Y076067D02* G01Y075712D01* X029649Y076156D02* G01X029738Y076067D01* X029383Y076156D02* G01X029649D01* X028583Y076067D02* G01X028938D01* X028583Y076423D02* G01X029116D01* X028583Y075712D02* G01Y076423D01* X03996Y076912D02* G01X040494Y077623D01* X040049Y076912D02* G01X03996Y077001D01* X040405Y076912D02* G01X040049D01* X040494Y077001D02* G01X040405Y076912D01* X040494Y077534D02* G01Y077001D01* X040405Y077623D02* G01X040494Y077534D01* X040049Y077623D02* G01X040405D01* X03996Y077534D02* G01X040049Y077623D01* X03996Y077001D02* G01Y077534D01* X039249Y077267D02* G01X039783D01* X038538Y076912D02* G01X039072Y077623D01* X038627Y076912D02* G01X038538Y077001D01* X038983Y076912D02* G01X038627D01* X039072Y077001D02* G01X038983Y076912D01* X039072Y077534D02* G01Y077001D01* X038983Y077623D02* G01X039072Y077534D01* X038627Y077623D02* G01X038983D01* X038538Y077534D02* G01X038627Y077623D01* X038538Y077001D02* G01Y077534D01* X038272Y077267D02* G01X03836Y077356D01* X037916Y077267D02* G01X038272D01* X037827Y077356D02* G01X037916Y077267D01* X037827Y077534D02* G01Y077356D01* X037916Y077623D02* G01X037827Y077534D01* X038272Y077623D02* G01X037916D01* X03836Y077534D02* G01X038272Y077623D01* X03836Y077001D02* G01Y077534D01* X038272Y076912D02* G01X03836Y077001D01* X037916Y076912D02* G01X038272D01* X037827Y077001D02* G01X037916Y076912D01* X037649Y077356D02* G01X03756Y077267D01* X037649Y077534D02* G01Y077356D01* X03756Y077623D02* G01X037649Y077534D01* X037205Y077623D02* G01X03756D01* X037116Y077534D02* G01X037205Y077623D01* X037116Y077356D02* G01Y077534D01* X037205Y077267D02* G01X037116Y077356D01* X03756Y077267D02* G01X037205D01* X037649Y077178D02* G01X03756Y077267D01* X037649Y077001D02* G01Y077178D01* X03756Y076912D02* G01X037649Y077001D01* X037205Y076912D02* G01X03756D01* X037116Y077001D02* G01X037205Y076912D01* X037116Y077178D02* G01Y077001D01* X037205Y077267D02* G01X037116Y077178D01* X036494Y077267D02* G01X036405Y077178D01* X036849Y077267D02* G01X036494D01* X036938Y077178D02* G01X036849Y077267D01* X036938Y077001D02* G01Y077178D01* X036849Y076912D02* G01X036938Y077001D01* X036494Y076912D02* G01X036849D01* X036405Y077001D02* G01X036494Y076912D01* X036405Y077534D02* G01Y077001D01* X036494Y077623D02* G01X036405Y077534D01* X036849Y077623D02* G01X036494D01* X036938Y077534D02* G01X036849Y077623D01* X035694Y076912D02* G01X036227Y077623D01* X035249D02* G01X035072Y077445D01* X035249Y076912D02* G01Y077623D01* X034983Y076912D02* G01X035516D01* X034805Y077356D02* G01X034716Y077267D01* X034805Y077534D02* G01Y077356D01* X034716Y077623D02* G01X034805Y077534D01* X03436Y077623D02* G01X034716D01* X034272Y077534D02* G01X03436Y077623D01* X034272Y077356D02* G01Y077534D01* X03436Y077267D02* G01X034272Y077356D01* X034716Y077267D02* G01X03436D01* X034805Y077178D02* G01X034716Y077267D01* X034805Y077001D02* G01Y077178D01* X034716Y076912D02* G01X034805Y077001D01* X03436Y076912D02* G01X034716D01* X034272Y077001D02* G01X03436Y076912D01* X034272Y077178D02* G01Y077001D01* X03436Y077267D02* G01X034272Y077178D01* X033738Y077267D02* G01X033916D01* X033649Y076912D02* G01X03356Y077001D01* X034005Y076912D02* G01X033649D01* X034094Y077001D02* G01X034005Y076912D01* X034094Y077178D02* G01Y077001D01* X033916Y077267D02* G01X034094Y077178D01* Y077356D02* G01X033916Y077267D01* X034094Y077534D02* G01Y077356D01* X034005Y077623D02* G01X034094Y077534D01* X033649Y077623D02* G01X034005D01* X03356Y077534D02* G01X033649Y077623D01* X032849Y076912D02* G01X033383D01* X032849Y077001D02* G01Y076912D01* X033294Y077267D02* G01X032849Y077001D01* X033383Y077356D02* G01X033294Y077267D01* X033383Y077534D02* G01Y077356D01* X033294Y077623D02* G01X033383Y077534D01* X032938Y077623D02* G01X033294D01* X032849Y077534D02* G01X032938Y077623D01* X032138Y076912D02* G01X032672Y077623D01* X032227Y076912D02* G01X032138Y077001D01* X032583Y076912D02* G01X032227D01* X032672Y077001D02* G01X032583Y076912D01* X032672Y077534D02* G01Y077001D01* X032583Y077623D02* G01X032672Y077534D01* X032227Y077623D02* G01X032583D01* X032138Y077534D02* G01X032227Y077623D01* X032138Y077001D02* G01Y077534D01* X031072Y077001D02* G01X030983Y076912D01* Y07709D02* G01X031072Y077001D01* X030894D02* G01X030983Y07709D01* Y076912D02* G01X030894Y077001D01* X030272Y077623D02* G01X030183D01* X030272Y076912D02* G01Y077623D01* X030183Y076912D02* G01X03036D01* X029383D02* G01X029738D01* X029294Y077001D02* G01X029383Y076912D01* X029294Y077267D02* G01Y077001D01* X029383Y077356D02* G01X029294Y077267D01* X029649Y077356D02* G01X029383D01* X029738Y077267D02* G01X029649Y077356D01* X029738Y077178D02* G01Y077267D01* X029649Y07709D02* G01X029738Y077178D01* X029294Y07709D02* G01X029649D01* X028849Y077623D02* G01Y076912D01* X028583Y077623D02* G01X029116D01* X035516Y078467D02* G01Y078112D01* X035427Y078556D02* G01X035516Y078467D01* X035338Y078556D02* G01X035427D01* X035249Y078467D02* G01X035338Y078556D01* X035249Y078467D02* G01Y078112D01* X03516Y078556D02* G01X035249Y078467D01* X035072Y078556D02* G01X03516D01* X034983Y078467D02* G01X035072Y078556D01* X034983Y078112D02* G01Y078556D01* X034805Y078467D02* G01Y078112D01* X034716Y078556D02* G01X034805Y078467D01* X034627Y078556D02* G01X034716D01* X034538Y078467D02* G01X034627Y078556D01* X034538Y078467D02* G01Y078112D01* X034449Y078556D02* G01X034538Y078467D01* X03436Y078556D02* G01X034449D01* X034272Y078467D02* G01X03436Y078556D01* X034272Y078112D02* G01Y078556D01* X033649Y078378D02* G01X034005D01* X03356Y07829D02* G01X033649Y078378D01* X03356Y078201D02* G01Y07829D01* X033649Y078112D02* G01X03356Y078201D01* X034005Y078112D02* G01X033649D01* X034005Y078467D02* G01Y078112D01* X033916Y078556D02* G01X034005Y078467D01* X033649Y078556D02* G01X033916D01* X032849Y078467D02* G01X033383D01* Y078823D02* G01Y078112D01* X032849D02* G01Y078823D01* X031427D02* G01X03196D01* X031427Y078556D02* G01Y078823D01* X031872Y078556D02* G01X031427D01* X03196Y078467D02* G01X031872Y078556D01* X03196Y078201D02* G01Y078467D01* X031872Y078112D02* G01X03196Y078201D01* X031516Y078112D02* G01X031872D01* X031427Y078201D02* G01X031516Y078112D01* X030805Y078467D02* G01X030716Y078378D01* X03116Y078467D02* G01X030805D01* X031249Y078378D02* G01X03116Y078467D01* X031249Y078201D02* G01Y078378D01* X03116Y078112D02* G01X031249Y078201D01* X030805Y078112D02* G01X03116D01* X030716Y078201D02* G01X030805Y078112D01* X030716Y078734D02* G01Y078201D01* X030805Y078823D02* G01X030716Y078734D01* X03116Y078823D02* G01X030805D01* X031249Y078734D02* G01X03116Y078823D01* X030005Y078112D02* G01X030538Y078823D01* X030094Y078112D02* G01X030005Y078201D01* X030449Y078112D02* G01X030094D01* X030538Y078201D02* G01X030449Y078112D01* X030538Y078734D02* G01Y078201D01* X030449Y078823D02* G01X030538Y078734D01* X030094Y078823D02* G01X030449D01* X030005Y078734D02* G01X030094Y078823D01* X030005Y078201D02* G01Y078734D01* X029738Y078467D02* G01X029827Y078556D01* X029383Y078467D02* G01X029738D01* X029294Y078556D02* G01X029383Y078467D01* X029294Y078734D02* G01Y078556D01* X029383Y078823D02* G01X029294Y078734D01* X029738Y078823D02* G01X029383D01* X029827Y078734D02* G01X029738Y078823D01* X029827Y078201D02* G01Y078734D01* X029738Y078112D02* G01X029827Y078201D01* X029383Y078112D02* G01X029738D01* X029294Y078201D02* G01X029383Y078112D01* X028583Y078823D02* G01X029116D01* X028583Y078556D02* G01Y078823D01* X029027Y078556D02* G01X028583D01* X029116Y078467D02* G01X029027Y078556D01* X029116Y078201D02* G01Y078467D01* X029027Y078112D02* G01X029116Y078201D01* X028672Y078112D02* G01X029027D01* X028583Y078201D02* G01X028672Y078112D01* X041827Y080023D02* G01Y079312D01* X041383Y079667D02* G01X041916D01* X041383Y080023D02* G01Y079667D01* X040316Y079401D02* G01X040227Y079312D01* Y07949D02* G01X040316Y079401D01* X040138D02* G01X040227Y07949D01* Y079312D02* G01X040138Y079401D01* X039605Y079756D02* G01X039694Y079667D01* X039338Y079756D02* G01X039605D01* X039249Y079667D02* G01X039338Y079756D01* X039249Y079312D02* G01Y079756D01* X038538D02* G01X038894D01* X038716Y079401D02* G01Y080023D01* X038805Y079312D02* G01X038716Y079401D01* X038894Y079312D02* G01X038805D01* X038983Y079401D02* G01X038894Y079312D01* X038272Y080023D02* G01X03836Y079934D01* X037916Y080023D02* G01X038272D01* X037827Y079934D02* G01X037916Y080023D01* X037827Y079756D02* G01Y079934D01* X037916Y079667D02* G01X037827Y079756D01* X038272Y079667D02* G01X037916D01* X03836Y079578D02* G01X038272Y079667D01* X03836Y079401D02* G01Y079578D01* X038272Y079312D02* G01X03836Y079401D01* X037916Y079312D02* G01X038272D01* X037827Y079401D02* G01X037916Y079312D01* X037116Y079667D02* G01X037649D01* X03676Y079756D02* G01X036849Y079667D01* X036494Y079756D02* G01X03676D01* X036405Y079667D02* G01X036494Y079756D01* Y079578D02* G01X036405Y079667D01* X03676Y079578D02* G01X036494D01* X036849Y07949D02* G01X03676Y079578D01* X036849Y079401D02* G01Y07949D01* X03676Y079312D02* G01X036849Y079401D01* X036494Y079312D02* G01X03676D01* X036405Y079401D02* G01X036494Y079312D01* X03596Y079845D02* G01X035872D01* X03596Y079934D02* G01Y079845D01* X035872Y079934D02* G01X03596D01* X035872Y079845D02* G01Y079934D01* X03596Y079756D02* G01X035872D01* X03596Y079312D02* G01Y079756D01* X035872Y079312D02* G01X036049D01* X035072D02* G01X035427D01* X034983Y079401D02* G01X035072Y079312D01* X034983Y079667D02* G01Y079401D01* X035072Y079756D02* G01X034983Y079667D01* X035338Y079756D02* G01X035072D01* X035427Y079667D02* G01X035338Y079756D01* X035427Y079578D02* G01Y079667D01* X035338Y07949D02* G01X035427Y079578D01* X034983Y07949D02* G01X035338D01* X034538Y079667D02* G01X034805Y079312D01* X034716Y079667D02* G01X034272D01* X034805Y079756D02* G01X034716Y079667D01* X034805Y079934D02* G01Y079756D01* X034716Y080023D02* G01X034805Y079934D01* X034272Y080023D02* G01X034716D01* X034272Y079312D02* G01Y080023D01* X03356Y079667D02* G01X034094D01* X033205Y079312D02* G01X032849D01* X033294Y079401D02* G01X033205Y079312D01* X033294Y079667D02* G01Y079401D01* X033205Y079756D02* G01X033294Y079667D01* X032849Y079756D02* G01X033205D01* X032849Y079045D02* G01Y079756D01* X032494Y079312D02* G01X032138D01* X032583Y079401D02* G01X032494Y079312D01* X032583Y079667D02* G01Y079401D01* X032494Y079756D02* G01X032583Y079667D01* X032138Y079756D02* G01X032494D01* X032138Y079045D02* G01Y079756D01* X031694Y079845D02* G01X031605D01* X031694Y079934D02* G01Y079845D01* X031605Y079934D02* G01X031694D01* X031605Y079845D02* G01Y079934D01* X031694Y079756D02* G01X031605D01* X031694Y079312D02* G01Y079756D01* X031605Y079312D02* G01X031783D01* X030983Y080023D02* G01X030894D01* X030983Y079312D02* G01Y080023D01* X030894Y079312D02* G01X031072D01* X030272Y079845D02* G01X030183D01* X030272Y079934D02* G01Y079845D01* X030183Y079934D02* G01X030272D01* X030183Y079845D02* G01Y079934D01* X030272Y079756D02* G01X030183D01* X030272Y079312D02* G01Y079756D01* X030183Y079312D02* G01X03036D01* X029738Y079667D02* G01Y079312D01* X029649Y079756D02* G01X029738Y079667D01* X029383Y079756D02* G01X029649D01* X029294Y079667D02* G01X029383Y079756D01* X029294Y079312D02* G01Y080023D01* X029027Y079667D02* G01X028583D01* X029116Y079756D02* G01X029027Y079667D01* X029116Y079934D02* G01Y079756D01* X029027Y080023D02* G01X029116Y079934D01* X028583Y080023D02* G01X029027D01* X028583Y079312D02* G01Y080023D01* X041383Y080867D02* G01X041916D01* Y081223D02* G01Y080512D01* X041383D02* G01Y081223D01* X040672Y080512D02* G01Y081223D01* X041027Y080512D02* G01X040672D01* X041116Y080601D02* G01X041027Y080512D01* X041116Y080867D02* G01Y080601D01* X041027Y080956D02* G01X041116Y080867D01* X040672Y080956D02* G01X041027D01* X040494Y080867D02* G01Y080512D01* X040405Y080956D02* G01X040494Y080867D01* X040316Y080956D02* G01X040405D01* X040227Y080867D02* G01X040316Y080956D01* X040227Y080867D02* G01Y080512D01* X040138Y080956D02* G01X040227Y080867D01* X040049Y080956D02* G01X040138D01* X03996Y080867D02* G01X040049Y080956D01* X03996Y080512D02* G01Y080956D01* X039694Y081223D02* G01X039783Y081134D01* X039338Y081223D02* G01X039694D01* X039249Y081134D02* G01X039338Y081223D01* X039249Y080601D02* G01Y081134D01* X039338Y080512D02* G01X039249Y080601D01* X039694Y080512D02* G01X039338D01* X039783Y080601D02* G01X039694Y080512D01* X039783Y080778D02* G01Y080601D01* X039605Y080778D02* G01X039783D01* X037827Y08069D02* G01X038272Y080512D01* X038183Y080956D02* G01X037827Y08069D01* Y080512D02* G01Y081223D01* X037383Y081045D02* G01X037294D01* X037383Y081134D02* G01Y081045D01* X037294Y081134D02* G01X037383D01* X037294Y081045D02* G01Y081134D01* X037383Y080956D02* G01X037294D01* X037383Y080512D02* G01Y080956D01* X037294Y080512D02* G01X037472D01* X036849Y080867D02* G01Y080512D01* X03676Y080956D02* G01X036849Y080867D01* X036494Y080956D02* G01X03676D01* X036405Y080867D02* G01X036494Y080956D01* X036405Y080512D02* G01Y080956D01* X035783Y080512D02* G01X035694Y080601D01* X036049Y080512D02* G01X035783D01* X036138Y080601D02* G01X036049Y080512D01* X036138Y080867D02* G01Y080601D01* X036049Y080956D02* G01X036138Y080867D01* X035783Y080956D02* G01X036049D01* X035694Y080867D02* G01X035783Y080956D01* X035694Y080601D02* G01Y080867D01* X035338Y080956D02* G01X035427Y080867D01* X035072Y080956D02* G01X035338D01* X034983Y080867D02* G01X035072Y080956D01* X034983Y080512D02* G01Y080956D01* X034272D02* G01X034627D01* X034449Y080601D02* G01Y081223D01* X034538Y080512D02* G01X034449Y080601D01* X034627Y080512D02* G01X034538D01* X034716Y080601D02* G01X034627Y080512D01* X03356Y08069D02* G01X034005Y080512D01* X033916Y080956D02* G01X03356Y08069D01* Y080512D02* G01Y081223D01* X032938Y080512D02* G01X033294D01* X032849Y080601D02* G01X032938Y080512D01* X032849Y080867D02* G01Y080601D01* X032938Y080956D02* G01X032849Y080867D01* X033205Y080956D02* G01X032938D01* X033294Y080867D02* G01X033205Y080956D01* X033294Y080778D02* G01Y080867D01* X033205Y08069D02* G01X033294Y080778D01* X032849Y08069D02* G01X033205D01* X032405Y081223D02* G01X032316D01* X032405Y080512D02* G01Y081223D01* X032316Y080512D02* G01X032494D01* X031427Y080867D02* G01X031783D01* X031427Y081223D02* G01X03196D01* X031427Y080512D02* G01Y081223D01* X03196Y080512D02* G01X031427D01* X030005Y080867D02* G01X03036D01* X030005Y081223D02* G01X030538D01* X030005Y080512D02* G01Y081223D01* X029472Y080956D02* G01X029827Y080512D01* X029472Y080956D02* G01X029294Y080867D01* X029827Y081223D02* G01X029472Y080956D01* X029294Y080512D02* G01Y081223D01* X028583Y080867D02* G01X028938D01* X028583Y081223D02* G01X029116D01* X028583Y080512D02* G01Y081223D01* X029116Y080512D02* G01X028583D01* X05921Y073976D02* G01X059565D01* X059121Y074065D02* G01X05921Y073976D01* X059121Y074332D02* G01Y074065D01* X05921Y074421D02* G01X059121Y074332D01* X059477Y074421D02* G01X05921D01* X059565Y074332D02* G01X059477Y074421D01* X059565Y074243D02* G01Y074332D01* X059477Y074154D02* G01X059565Y074243D01* X059121Y074154D02* G01X059477D01* X058854Y073976D02* G01Y074687D01* X058499Y073976D02* G01X058854D01* X05841Y074065D02* G01X058499Y073976D01* X05841Y074332D02* G01Y074065D01* X058499Y074421D02* G01X05841Y074332D01* X058854Y074421D02* G01X058499D01* X058054Y074065D02* G01X057965Y073976D01* Y074154D02* G01X058054Y074065D01* X057877D02* G01X057965Y074154D01* Y073976D02* G01X057877Y074065D01* X056988Y074332D02* G01X057254D01* X057165Y074687D02* G01X057432D01* X057077Y074599D02* G01X057165Y074687D01* X057077Y073976D02* G01Y074599D01* X056277Y074154D02* G01X056721Y073976D01* X056632Y074421D02* G01X056277Y074154D01* Y073976D02* G01Y074687D01* X055654Y073976D02* G01X05601D01* X055565Y074065D02* G01X055654Y073976D01* X055565Y074332D02* G01Y074065D01* X055654Y074421D02* G01X055565Y074332D01* X055921Y074421D02* G01X055654D01* X05601Y074332D02* G01X055921Y074421D01* X05601Y074243D02* G01Y074332D01* X055921Y074154D02* G01X05601Y074243D01* X055565Y074154D02* G01X055921D01* X055032Y074065D02* G01X05521D01* X054943Y074154D02* G01X055032Y074065D01* X054943Y07451D02* G01Y074154D01* X055032Y074599D02* G01X054943Y07451D01* X05521Y074599D02* G01X055032D01* X055299Y07451D02* G01X05521Y074599D01* X055299Y074243D02* G01Y07451D01* X055121Y074243D02* G01X055299D01* X055121Y074421D02* G01Y074243D01* X055299Y074421D02* G01X055121D01* X054232Y073976D02* G01X054143Y074065D01* X054499Y073976D02* G01X054232D01* X054588Y074065D02* G01X054499Y073976D01* X054588Y074332D02* G01Y074065D01* X054499Y074421D02* G01X054588Y074332D01* X054232Y074421D02* G01X054499D01* X054143Y074332D02* G01X054232Y074421D01* X054143Y074065D02* G01Y074332D01* X053432D02* G01X053699D01* X05361Y074687D02* G01X053877D01* X053521Y074599D02* G01X05361Y074687D01* X053521Y073976D02* G01Y074599D01* X053165Y074332D02* G01Y073976D01* X053077Y074421D02* G01X053165Y074332D01* X05281Y074421D02* G01X053077D01* X052721Y074332D02* G01X05281Y074421D01* X052721Y073976D02* G01Y074421D01* X052277Y07451D02* G01X052188D01* X052277Y074599D02* G01Y07451D01* X052188Y074599D02* G01X052277D01* X052188Y07451D02* G01Y074599D01* X052277Y074421D02* G01X052188D01* X052277Y073976D02* G01Y074421D01* X052188Y073976D02* G01X052366D01* X050943Y074421D02* G01X050854Y074332D01* Y07451D02* G01X050943Y074421D01* X050766D02* G01X050854Y07451D01* Y074332D02* G01X050766Y074421D01* X050943Y074065D02* G01X050854Y073976D01* Y074154D02* G01X050943Y074065D01* X050766D02* G01X050854Y074154D01* Y073976D02* G01X050766Y074065D01* X050143Y074687D02* G01X050054D01* X050143Y073976D02* G01Y074687D01* X050054Y073976D02* G01X050232D01* X049432Y07451D02* G01X049343D01* X049432Y074599D02* G01Y07451D01* X049343Y074599D02* G01X049432D01* X049343Y07451D02* G01Y074599D01* X049432Y074421D02* G01X049343D01* X049432Y073976D02* G01Y074421D01* X049343Y073976D02* G01X049521D01* X048543Y074243D02* G01X048899D01* X048454Y074154D02* G01X048543Y074243D01* X048454Y074065D02* G01Y074154D01* X048543Y073976D02* G01X048454Y074065D01* X048899Y073976D02* G01X048543D01* X048899Y074332D02* G01Y073976D01* X04881Y074421D02* G01X048899Y074332D01* X048543Y074421D02* G01X04881D01* X048277Y074332D02* G01Y073976D01* X048188Y074421D02* G01X048277Y074332D01* X048099Y074421D02* G01X048188D01* X04801Y074332D02* G01X048099Y074421D01* X04801Y074332D02* G01Y073976D01* X047921Y074421D02* G01X04801Y074332D01* X047832Y074421D02* G01X047921D01* X047743Y074332D02* G01X047832Y074421D01* X047743Y073976D02* G01Y074421D01* X047121Y073976D02* G01X047477D01* X047032Y074065D02* G01X047121Y073976D01* X047032Y074332D02* G01Y074065D01* X047121Y074421D02* G01X047032Y074332D01* X047388Y074421D02* G01X047121D01* X047477Y074332D02* G01X047388Y074421D01* X047477Y074243D02* G01Y074332D01* X047388Y074154D02* G01X047477Y074243D01* X047032Y074154D02* G01X047388D01* X042143Y073976D02* G01X042499D01* X042054Y074065D02* G01X042143Y073976D01* X042054Y074332D02* G01Y074065D01* X042143Y074421D02* G01X042054Y074332D01* X04241Y074421D02* G01X042143D01* X042499Y074332D02* G01X04241Y074421D01* X042499Y074243D02* G01Y074332D01* X04241Y074154D02* G01X042499Y074243D01* X042054Y074154D02* G01X04241D01* X041788Y073976D02* G01Y074687D01* X041432Y073976D02* G01X041788D01* X041343Y074065D02* G01X041432Y073976D01* X041343Y074332D02* G01Y074065D01* X041432Y074421D02* G01X041343Y074332D01* X041788Y074421D02* G01X041432D01* X040988Y074065D02* G01X040899Y073976D01* Y074154D02* G01X040988Y074065D01* X04081D02* G01X040899Y074154D01* Y073976D02* G01X04081Y074065D01* X039921Y074332D02* G01X040188D01* X040099Y074687D02* G01X040366D01* X04001Y074599D02* G01X040099Y074687D01* X04001Y073976D02* G01Y074599D01* X03921Y074154D02* G01X039654Y073976D01* X039566Y074421D02* G01X03921Y074154D01* Y073976D02* G01Y074687D01* X038588Y073976D02* G01X038943D01* X038499Y074065D02* G01X038588Y073976D01* X038499Y074332D02* G01Y074065D01* X038588Y074421D02* G01X038499Y074332D01* X038854Y074421D02* G01X038588D01* X038943Y074332D02* G01X038854Y074421D01* X038943Y074243D02* G01Y074332D01* X038854Y074154D02* G01X038943Y074243D01* X038499Y074154D02* G01X038854D01* X038143Y074065D02* G01X038054Y073976D01* Y074154D02* G01X038143Y074065D01* X037966D02* G01X038054Y074154D01* Y073976D02* G01X037966Y074065D01* X037343D02* G01Y074243D01* X03761D02* G01Y074421D01* X037432Y073976D02* G01X03761Y074243D01* X037343Y074065D02* G01X037432Y073976D01* X037254D02* G01X037343Y074065D01* X037077Y074243D02* G01X037254Y073976D01* X037077Y074421D02* G01Y074243D01* X036632Y074065D02* G01Y074243D01* X036899D02* G01Y074421D01* X036721Y073976D02* G01X036899Y074243D01* X036632Y074065D02* G01X036721Y073976D01* X036543D02* G01X036632Y074065D01* X036366Y074243D02* G01X036543Y073976D01* X036366Y074421D02* G01Y074243D01* X035921Y074065D02* G01Y074243D01* X036188D02* G01Y074421D01* X03601Y073976D02* G01X036188Y074243D01* X035921Y074065D02* G01X03601Y073976D01* X035832D02* G01X035921Y074065D01* X035654Y074243D02* G01X035832Y073976D01* X035654Y074421D02* G01Y074243D01* X034588Y074421D02* G01X034499Y074332D01* Y07451D02* G01X034588Y074421D01* X03441D02* G01X034499Y07451D01* Y074332D02* G01X03441Y074421D01* X034588Y074065D02* G01X034499Y073976D01* Y074154D02* G01X034588Y074065D01* X03441D02* G01X034499Y074154D01* Y073976D02* G01X03441Y074065D01* X033521Y074421D02* G01X033877D01* X033699Y074065D02* G01Y074687D01* X033788Y073976D02* G01X033699Y074065D01* X033877Y073976D02* G01X033788D01* X033966Y074065D02* G01X033877Y073976D01* X032899D02* G01X033254D01* X03281Y074065D02* G01X032899Y073976D01* X03281Y074332D02* G01Y074065D01* X032899Y074421D02* G01X03281Y074332D01* X033166Y074421D02* G01X032899D01* X033254Y074332D02* G01X033166Y074421D01* X033254Y074243D02* G01Y074332D01* X033166Y074154D02* G01X033254Y074243D01* X03281Y074154D02* G01X033166D01* X032543Y074332D02* G01Y073976D01* X032454Y074421D02* G01X032543Y074332D01* X032188Y074421D02* G01X032454D01* X032099Y074332D02* G01X032188Y074421D01* X032099Y073976D02* G01Y074421D01* X031743D02* G01X031832Y074332D01* X031477Y074421D02* G01X031743D01* X031388Y074332D02* G01X031477Y074421D01* X031388Y073976D02* G01Y074421D01* X030766Y073976D02* G01X031121D01* X030677Y074065D02* G01X030766Y073976D01* X030677Y074332D02* G01Y074065D01* X030766Y074421D02* G01X030677Y074332D01* X031032Y074421D02* G01X030766D01* X031121Y074332D02* G01X031032Y074421D01* X031121Y074243D02* G01Y074332D01* X031032Y074154D02* G01X031121Y074243D01* X030677Y074154D02* G01X031032D01* X029966Y074421D02* G01X030321D01* X030143Y074065D02* G01Y074687D01* X030232Y073976D02* G01X030143Y074065D01* X030321Y073976D02* G01X030232D01* X03041Y074065D02* G01X030321Y073976D01* X029699Y074332D02* G01Y073976D01* X02961Y074421D02* G01X029699Y074332D01* X029343Y074421D02* G01X02961D01* X029254Y074332D02* G01X029343Y074421D01* X029254Y073976D02* G01Y074421D01* X02881Y074687D02* G01Y073976D01* X028543Y074687D02* G01X029077D01* X028543Y073976D02* G01X029077D01* X11638Y07299D02* G01X10788D01* X015591Y072992D02* G01X018937D01* X015Y072402D02* G01X015591Y072992D01* X015Y069055D02* G01Y072402D01* X11412Y01D02* G01X11212Y008D01* Y012D02* G01X11412Y01D01* X11012D02* G01X11212Y012D01* Y008D02* G01X11012Y01D01* X015Y07399D02* G01Y08249D01* X11212Y00575D02* G01Y01425D01* X10887Y07824D02* G01X10687Y07624D01* Y08024D02* G01X10887Y07824D01* X10487D02* G01X10687Y08024D01* Y07624D02* G01X10487Y07824D01* X10687Y07399D02* G01Y08249D01* X01925Y07824D02* G01X01075D01* X11112D02* G01X10262D01* X018D02* G01X015Y07524D01* Y08124D02* G01X018Y07824D01* X012D02* G01X015Y08124D01* Y07524D02* G01X012Y07824D01* X11212Y06874D02* G01Y07724D01* X11512Y07299D02* G01X11212Y06999D01* Y07599D02* G01X11512Y07299D01* X10912D02* G01X11212Y07599D01* Y06999D02* G01X10912Y07299D01* X11637Y01D02* G01X10787D01* X11512D02* G01X11212Y007D01* Y013D02* G01X11512Y01D01* X10912D02* G01X11212Y013D01* Y007D02* G01X10912Y01D01* X11312D02* G01X11212Y009D01* Y011D02* G01X11312Y01D01* X11112D02* G01X11212Y011D01* Y009D02* G01X11112Y01D01* X10628Y072992D02* G01X102933D01* X10687Y072402D02* G01X10628Y072992D01* X10687Y069055D02* G01Y072402D01* X11412Y07299D02* G01X11212Y07099D01* Y07499D02* G01X11412Y07299D01* X11012D02* G01X11212Y07499D01* Y07099D02* G01X11012Y07299D01* X10987Y07824D02* G01X10687Y07524D01* Y08124D02* G01X10987Y07824D01* X10387D02* G01X10687Y08124D01* Y07524D02* G01X10387Y07824D01* G54D12* X015Y082D02* G01X10687D01* X1159Y01D02* G01Y07299D01* G54D10* X017029Y075D02* G01X017441D01* X017029D02* G01X017269D01* X01655D02* G01X016789D01* X01607D02* G01X01631D01* X015591D02* G01X01583D01* X015591Y07491D02* G01Y075D01* Y074431D02* G01Y07467D01* Y073951D02* G01Y074191D01* Y073472D02* G01Y073711D01* Y072992D02* G01Y073232D01* X108898Y070963D02* G01Y070492D01* Y070963D02* G01Y070723D01* Y071443D02* G01Y071203D01* Y071922D02* G01Y071682D01* Y072402D02* G01Y072162D01* X108788Y072402D02* G01X108898D01* X108309D02* G01X108548D01* X107829D02* G01X108069D01* X10735D02* G01X107589D01* X10687D02* G01X10711D01* X012953Y070483D02* G01Y070472D01* Y070963D02* G01Y070723D01* Y071443D02* G01Y071203D01* Y071922D02* G01Y071682D01* Y072402D02* G01Y072162D01* X013082Y072402D02* G01X012953D01* X013561D02* G01X013322D01* X014041D02* G01X013801D01* X01452D02* G01X014281D01* X015D02* G01X01476D01* X104841Y07498D02* G01X104528D01* X104841D02* G01X104601D01* X10532D02* G01X105081D01* X1058D02* G01X10556D01* X10628D02* G01X10604D01* X10628Y07491D02* G01Y07498D01* Y074431D02* G01Y07467D01* Y073951D02* G01Y074191D01* Y073472D02* G01Y073711D01* Y072992D02* G01Y073232D01* G54D14* X085556Y077D02* G01X086D01* X085444Y077111D02* G01X085556Y077D01* X085444Y077444D02* G01Y077111D01* X085556Y077556D02* G01X085444Y077444D01* X085889Y077556D02* G01X085556D01* X086Y077444D02* G01X085889Y077556D01* X086Y077333D02* G01Y077444D01* X085889Y077222D02* G01X086Y077333D01* X085444Y077222D02* G01X085889D01* X084556Y077556D02* G01X085D01* X084778Y077111D02* G01Y077889D01* X084889Y077D02* G01X084778Y077111D01* X085Y077D02* G01X084889D01* X085111Y077111D02* G01X085Y077D01* X084111Y077556D02* G01X084222Y077444D01* X083778Y077556D02* G01X084111D01* X083667Y077444D02* G01X083778Y077556D01* Y077333D02* G01X083667Y077444D01* X084111Y077333D02* G01X083778D01* X084222Y077222D02* G01X084111Y077333D01* X084222Y077111D02* G01Y077222D01* X084111Y077D02* G01X084222Y077111D01* X083778Y077D02* G01X084111D01* X083667Y077111D02* G01X083778Y077D01* X082889Y077333D02* G01X083333D01* X082778Y077222D02* G01X082889Y077333D01* X082778Y077111D02* G01Y077222D01* X082889Y077D02* G01X082778Y077111D01* X083333Y077D02* G01X082889D01* X083333Y077444D02* G01Y077D01* X083222Y077556D02* G01X083333Y077444D01* X082889Y077556D02* G01X083222D01* X082444Y077444D02* G01X081889D01* X082556Y077556D02* G01X082444Y077444D01* X082556Y077778D02* G01Y077556D01* X082444Y077889D02* G01X082556Y077778D01* X081889Y077889D02* G01X082444D01* X081889Y077D02* G01Y077889D01* X080111Y077556D02* G01X080556D01* X080333Y077111D02* G01Y077889D01* X080444Y077D02* G01X080333Y077111D01* X080556Y077D02* G01X080444D01* X080667Y077111D02* G01X080556Y077D01* X079778Y077444D02* G01Y077D01* X079667Y077556D02* G01X079778Y077444D01* X079333Y077556D02* G01X079667D01* X079222Y077444D02* G01X079333Y077556D01* X079222Y077D02* G01Y077556D01* X078444Y077D02* G01X078889D01* X078333Y077111D02* G01X078444Y077D01* X078333Y077444D02* G01Y077111D01* X078444Y077556D02* G01X078333Y077444D01* X078778Y077556D02* G01X078444D01* X078889Y077444D02* G01X078778Y077556D01* X078889Y077333D02* G01Y077444D01* X078778Y077222D02* G01X078889Y077333D01* X078333Y077222D02* G01X078778D01* X078Y077444D02* G01Y077D01* X077889Y077556D02* G01X078Y077444D01* X077556Y077556D02* G01X077889D01* X077444Y077444D02* G01X077556Y077556D01* X077444Y077D02* G01Y077556D01* X076667Y077D02* G01X076556Y077111D01* X077Y077D02* G01X076667D01* X077111Y077111D02* G01X077Y077D01* X077111Y077444D02* G01Y077111D01* X077Y077556D02* G01X077111Y077444D01* X076667Y077556D02* G01X077D01* X076556Y077444D02* G01X076667Y077556D01* X076556Y077111D02* G01Y077444D01* X076111Y077D02* G01X075667D01* X076222Y077111D02* G01X076111Y077D01* X076222Y077444D02* G01Y077111D01* X076111Y077556D02* G01X076222Y077444D01* X075667Y077556D02* G01X076111D01* X075667Y076667D02* G01Y077556D01* X075444Y077444D02* G01Y077D01* X075333Y077556D02* G01X075444Y077444D01* X075222Y077556D02* G01X075333D01* X075111Y077444D02* G01X075222Y077556D01* X075111Y077444D02* G01Y077D01* X075Y077556D02* G01X075111Y077444D01* X074889Y077556D02* G01X075D01* X074778Y077444D02* G01X074889Y077556D01* X074778Y077D02* G01Y077556D01* X074Y077D02* G01X073889Y077111D01* X074333Y077D02* G01X074D01* X074444Y077111D02* G01X074333Y077D01* X074444Y077444D02* G01Y077111D01* X074333Y077556D02* G01X074444Y077444D01* X074Y077556D02* G01X074333D01* X073889Y077444D02* G01X074Y077556D01* X073889Y077111D02* G01Y077444D01* X073556Y077889D02* G01X073667Y077778D01* X073111Y077889D02* G01X073556D01* X073Y077778D02* G01X073111Y077889D01* X073Y077111D02* G01Y077778D01* X073111Y077D02* G01X073Y077111D01* X073556Y077D02* G01X073111D01* X073667Y077111D02* G01X073556Y077D01* X070111Y077444D02* G01X070778D01* X066555Y077D02* G01X067222D01* X066555Y077111D02* G01Y077D01* X067111Y077444D02* G01X066555Y077111D01* X067222Y077556D02* G01X067111Y077444D01* X067222Y077778D02* G01Y077556D01* X067111Y077889D02* G01X067222Y077778D01* X066667Y077889D02* G01X067111D01* X066555Y077778D02* G01X066667Y077889D01* X066111Y077111D02* G01X066Y077D01* Y077222D02* G01X066111Y077111D01* X065889D02* G01X066Y077222D01* Y077D02* G01X065889Y077111D01* X065111Y077D02* G01X065444Y077556D01* X064778D02* G01X065111Y077D01* X064D02* G01X064444D01* X063889Y077111D02* G01X064Y077D01* X063889Y077444D02* G01Y077111D01* X064Y077556D02* G01X063889Y077444D01* X064333Y077556D02* G01X064D01* X064444Y077444D02* G01X064333Y077556D01* X064444Y077333D02* G01Y077444D01* X064333Y077222D02* G01X064444Y077333D01* X063889Y077222D02* G01X064333D01* X063333Y077444D02* G01X063667Y077D01* X063556Y077444D02* G01X063D01* X063667Y077556D02* G01X063556Y077444D01* X063667Y077778D02* G01Y077556D01* X063556Y077889D02* G01X063667Y077778D01* X063Y077889D02* G01X063556D01* X063Y077D02* G01Y077889D01* X059111Y077333D02* G01X058667D01* X059111D02* G01X059222Y077D01* X058889Y077889D02* G01X059111Y077333D01* X058667D02* G01X058889Y077889D01* X058556Y077D02* G01X058667Y077333D01* X058Y077444D02* G01X058333Y077D01* X058222Y077444D02* G01X057667D01* X058333Y077556D02* G01X058222Y077444D01* X058333Y077778D02* G01Y077556D01* X058222Y077889D02* G01X058333Y077778D01* X057667Y077889D02* G01X058222D01* X057667Y077D02* G01Y077889D01* X056778Y077444D02* G01X057222D01* X056778Y077889D02* G01X057444D01* X056778Y077D02* G01Y077889D01* X057444Y077D02* G01X056778D01* X056444Y077444D02* G01X055889D01* X056556Y077556D02* G01X056444Y077444D01* X056556Y077778D02* G01Y077556D01* X056444Y077889D02* G01X056556Y077778D01* X055889Y077889D02* G01X056444D01* X055889Y077D02* G01Y077889D01* X055Y077778D02* G01Y077111D01* X055111Y077889D02* G01X055Y077778D01* X055556Y077889D02* G01X055111D01* X055667Y077778D02* G01X055556Y077889D01* X055667Y077111D02* G01Y077778D01* X055556Y077D02* G01X055667Y077111D01* X055111Y077D02* G01X055556D01* X055Y077111D02* G01X055111Y077D01* X054111Y077444D02* G01X054778D01* X053556Y077889D02* G01X053333Y077667D01* X053556Y077D02* G01Y077889D01* X053222Y077D02* G01X053889D01* X052778D02* G01X052333D01* X052889Y077111D02* G01X052778Y077D01* X053Y077333D02* G01X052889Y077111D01* X053Y077556D02* G01Y077333D01* X052889Y077778D02* G01X053Y077556D01* X052778Y077889D02* G01X052889Y077778D01* X052333Y077889D02* G01X052778D01* X052333Y077D02* G01Y077889D01* X052D02* G01X052111Y077778D01* X051556Y077889D02* G01X052D01* X051444Y077778D02* G01X051556Y077889D01* X051444Y077111D02* G01Y077778D01* X051556Y077D02* G01X051444Y077111D01* X052Y077D02* G01X051556D01* X052111Y077111D02* G01X052Y077D01* X05Y077889D02* G01Y077D01* X049667Y077889D02* G01X050333D01* X049667Y077D02* G01X050333D01* X049333Y077889D02* G01X049444Y077778D01* X048889Y077889D02* G01X049333D01* X048778Y077778D02* G01X048889Y077889D01* X048778Y077111D02* G01Y077778D01* X048889Y077D02* G01X048778Y077111D01* X049333Y077D02* G01X048889D01* X049444Y077111D02* G01X049333Y077D01* X048444Y077444D02* G01X047889D01* X048556Y077556D02* G01X048444Y077444D01* X048556Y077778D02* G01Y077556D01* X048444Y077889D02* G01X048556Y077778D01* X047889Y077889D02* G01X048444D01* X047889Y077D02* G01Y077889D01* X047556D02* G01X047667Y077778D01* X047111Y077889D02* G01X047556D01* X047Y077778D02* G01X047111Y077889D01* X047Y077111D02* G01Y077778D01* X047111Y077D02* G01X047Y077111D01* X047556Y077D02* G01X047111D01* X047667Y077111D02* G01X047556Y077D01* X067389Y082944D02* G01X067611D01* X067278Y0825D02* G01X067167Y082611D01* X067722Y0825D02* G01X067278D01* X067833Y082611D02* G01X067722Y0825D01* X067833Y082833D02* G01Y082611D01* X067611Y082944D02* G01X067833Y082833D01* Y083056D02* G01X067611Y082944D01* X067833Y083278D02* G01Y083056D01* X067722Y083389D02* G01X067833Y083278D01* X067278Y083389D02* G01X067722D01* X067167Y083278D02* G01X067278Y083389D01* X066722Y082611D02* G01X066611Y0825D01* Y082722D02* G01X066722Y082611D01* X0665D02* G01X066611Y082722D01* Y0825D02* G01X0665Y082611D01* X065389Y0825D02* G01X066056Y083389D01* X0655Y0825D02* G01X065389Y082611D01* X065944Y0825D02* G01X0655D01* X066056Y082611D02* G01X065944Y0825D01* X066056Y083278D02* G01Y082611D01* X065944Y083389D02* G01X066056Y083278D01* X0655Y083389D02* G01X065944D01* X065389Y083278D02* G01X0655Y083389D01* X065389Y082611D02* G01Y083278D01* X0645Y082944D02* G01X065167D01* X063611Y0825D02* G01X064278Y083389D01* X062722Y0825D02* G01X063389Y083389D01* X062833Y0825D02* G01X062722Y082611D01* X063278Y0825D02* G01X062833D01* X063389Y082611D02* G01X063278Y0825D01* X063389Y083278D02* G01Y082611D01* X063278Y083389D02* G01X063389Y083278D01* X062833Y083389D02* G01X063278D01* X062722Y083278D02* G01X062833Y083389D01* X062722Y082611D02* G01Y083278D01* X062167D02* G01Y082611D01* X061833Y082944D02* G01X0625D01* X0605Y0825D02* G01X060389Y082278D01* X0605Y082611D02* G01Y0825D01* X060389Y082722D02* G01X0605Y082611D01* X060278D02* G01X060389Y082722D01* Y0825D02* G01X060278Y082611D01* X0605D02* G01X060389Y0825D01* X059833Y082944D02* G01Y0825D01* X059722Y083056D02* G01X059833Y082944D01* X059611Y083056D02* G01X059722D01* X0595Y082944D02* G01X059611Y083056D01* X0595Y082944D02* G01Y0825D01* X059389Y083056D02* G01X0595Y082944D01* X059278Y083056D02* G01X059389D01* X059167Y082944D02* G01X059278Y083056D01* X059167Y0825D02* G01Y083056D01* X058944Y082944D02* G01Y0825D01* X058833Y083056D02* G01X058944Y082944D01* X058722Y083056D02* G01X058833D01* X058611Y082944D02* G01X058722Y083056D01* X058611Y082944D02* G01Y0825D01* X0585Y083056D02* G01X058611Y082944D01* X058389Y083056D02* G01X0585D01* X058278Y082944D02* G01X058389Y083056D01* X058278Y0825D02* G01Y083056D01* X057389Y083389D02* G01X058056D01* X057389Y083056D02* G01Y083389D01* X057944Y083056D02* G01X057389D01* X058056Y082944D02* G01X057944Y083056D01* X058056Y082611D02* G01Y082944D01* X057944Y0825D02* G01X058056Y082611D01* X0575Y0825D02* G01X057944D01* X057389Y082611D02* G01X0575Y0825D01* X056722Y082944D02* G01X056944D01* X056611Y0825D02* G01X0565Y082611D01* X057056Y0825D02* G01X056611D01* X057167Y082611D02* G01X057056Y0825D01* X057167Y082833D02* G01Y082611D01* X056944Y082944D02* G01X057167Y082833D01* Y083056D02* G01X056944Y082944D01* X057167Y083278D02* G01Y083056D01* X057056Y083389D02* G01X057167Y083278D01* X056611Y083389D02* G01X057056D01* X0565Y083278D02* G01X056611Y083389D01* X056056Y082611D02* G01X055944Y0825D01* Y082722D02* G01X056056Y082611D01* X055833D02* G01X055944Y082722D01* Y0825D02* G01X055833Y082611D01* X054944Y082944D02* G01X055167D01* X054833Y0825D02* G01X054722Y082611D01* X055278Y0825D02* G01X054833D01* X055389Y082611D02* G01X055278Y0825D01* X055389Y082833D02* G01Y082611D01* X055167Y082944D02* G01X055389Y082833D01* Y083056D02* G01X055167Y082944D01* X055389Y083278D02* G01Y083056D01* X055278Y083389D02* G01X055389Y083278D01* X054833Y083389D02* G01X055278D01* X054722Y083278D02* G01X054833Y083389D01* X054056Y082944D02* G01X054278D01* X053944Y0825D02* G01X053833Y082611D01* X054389Y0825D02* G01X053944D01* X0545Y082611D02* G01X054389Y0825D01* X0545Y082833D02* G01Y082611D01* X054278Y082944D02* G01X0545Y082833D01* Y083056D02* G01X054278Y082944D01* X0545Y083278D02* G01Y083056D01* X054389Y083389D02* G01X0545Y083278D01* X053944Y083389D02* G01X054389D01* X053833Y083278D02* G01X053944Y083389D01* X052944Y0825D02* G01X053611D01* X052944Y082611D02* G01Y0825D01* X0535Y082944D02* G01X052944Y082611D01* X053611Y083056D02* G01X0535Y082944D01* X053611Y083278D02* G01Y083056D01* X0535Y083389D02* G01X053611Y083278D01* X053056Y083389D02* G01X0535D01* X052944Y083278D02* G01X053056Y083389D01* X116944Y034611D02* G01Y034389D01* X1165Y034722D02* G01X116611Y034833D01* X1165Y034278D02* G01Y034722D01* X116611Y034167D02* G01X1165Y034278D01* X116833Y034167D02* G01X116611D01* X116944Y034389D02* G01X116833Y034167D01* X117056D02* G01X116944Y034389D01* X117278Y034167D02* G01X117056D01* X117389Y034278D02* G01X117278Y034167D01* X117389Y034722D02* G01Y034278D01* X117278Y034833D02* G01X117389Y034722D01* X116611Y035278D02* G01X1165Y035389D01* X116722D02* G01X116611Y035278D01* Y0355D02* G01X116722Y035389D01* X1165D02* G01X116611Y0355D01* X1165Y036611D02* G01X117389Y035944D01* X1165Y0365D02* G01X116611Y036611D01* X1165Y036056D02* G01Y0365D01* X116611Y035944D02* G01X1165Y036056D01* X117278Y035944D02* G01X116611D01* X117389Y036056D02* G01X117278Y035944D01* X117389Y0365D02* G01Y036056D01* X117278Y036611D02* G01X117389Y0365D01* X116611Y036611D02* G01X117278D01* X116944Y0375D02* G01Y036833D01* X1165Y038389D02* G01X117389Y037722D01* X1165Y039278D02* G01X117389Y038611D01* X1165Y039167D02* G01X116611Y039278D01* X1165Y038722D02* G01Y039167D01* X116611Y038611D02* G01X1165Y038722D01* X117278Y038611D02* G01X116611D01* X117389Y038722D02* G01X117278Y038611D01* X117389Y039167D02* G01Y038722D01* X117278Y039278D02* G01X117389Y039167D01* X116611Y039278D02* G01X117278D01* Y039833D02* G01X116611D01* X116944Y040167D02* G01Y0395D01* X1165Y0415D02* G01X116278Y041611D01* X116611Y0415D02* G01X1165D01* X116722Y041611D02* G01X116611Y0415D01* Y041722D02* G01X116722Y041611D01* X1165D02* G01X116611Y041722D01* Y0415D02* G01X1165Y041611D01* X116944Y042167D02* G01X1165D01* X117056Y042278D02* G01X116944Y042167D01* X117056Y042389D02* G01Y042278D01* X116944Y0425D02* G01X117056Y042389D01* X116944Y0425D02* G01X1165D01* X117056Y042611D02* G01X116944Y0425D01* X117056Y042722D02* G01Y042611D01* X116944Y042833D02* G01X117056Y042722D01* X1165Y042833D02* G01X117056D01* X116944Y043056D02* G01X1165D01* X117056Y043167D02* G01X116944Y043056D01* X117056Y043278D02* G01Y043167D01* X116944Y043389D02* G01X117056Y043278D01* X116944Y043389D02* G01X1165D01* X117056Y0435D02* G01X116944Y043389D01* X117056Y043611D02* G01Y0435D01* X116944Y043722D02* G01X117056Y043611D01* X1165Y043722D02* G01X117056D01* X1165Y044611D02* G01X117389Y043944D01* X1165Y0445D02* G01X116611Y044611D01* X1165Y044056D02* G01Y0445D01* X116611Y043944D02* G01X1165Y044056D01* X117278Y043944D02* G01X116611D01* X117389Y044056D02* G01X117278Y043944D01* X117389Y0445D02* G01Y044056D01* X117278Y044611D02* G01X117389Y0445D01* X116611Y044611D02* G01X117278D01* X1165Y0455D02* G01X117389Y044833D01* X1165Y045389D02* G01X116611Y0455D01* X1165Y044944D02* G01Y045389D01* X116611Y044833D02* G01X1165Y044944D01* X117278Y044833D02* G01X116611D01* X117389Y044944D02* G01X117278Y044833D01* X117389Y045389D02* G01Y044944D01* X117278Y0455D02* G01X117389Y045389D01* X116611Y0455D02* G01X117278D01* X116611Y045944D02* G01X1165Y046056D01* X116722D02* G01X116611Y045944D01* Y046167D02* G01X116722Y046056D01* X1165D02* G01X116611Y046167D01* X1165Y047278D02* G01X117389Y046611D01* X1165Y047167D02* G01X116611Y047278D01* X1165Y046722D02* G01Y047167D01* X116611Y046611D02* G01X1165Y046722D01* X117278Y046611D02* G01X116611D01* X117389Y046722D02* G01X117278Y046611D01* X117389Y047167D02* G01Y046722D01* X117278Y047278D02* G01X117389Y047167D01* X116611Y047278D02* G01X117278D01* X116944Y048056D02* G01X116833Y048167D01* X116944Y047611D02* G01Y048056D01* X116833Y0475D02* G01X116944Y047611D01* X116611Y0475D02* G01X116833D01* X1165Y047611D02* G01X116611Y0475D01* X1165Y048056D02* G01Y047611D01* X116611Y048167D02* G01X1165Y048056D01* X117278Y048167D02* G01X116611D01* X117389Y048056D02* G01X117278Y048167D01* X117389Y047611D02* G01Y048056D01* X117278Y0475D02* G01X117389Y047611D01* Y048722D02* G01X117167Y048944D01* X1165Y048722D02* G01X117389D01* X1165Y049056D02* G01Y048389D01* G54D11* X018873Y010778D02* G01X019007D01* X018807Y010512D02* G01X01874Y010578D01* X019073Y010512D02* G01X018807D01* X01914Y010578D02* G01X019073Y010512D01* X01914Y010712D02* G01Y010578D01* X019007Y010778D02* G01X01914Y010712D01* Y010845D02* G01X019007Y010778D01* X01914Y010978D02* G01Y010845D01* X019073Y011045D02* G01X01914Y010978D01* X018807Y011045D02* G01X019073D01* X01874Y010978D02* G01X018807Y011045D01* X050136D02* G01Y010512D01* X049803Y010778D02* G01X050203D01* X049803Y011045D02* G01Y010778D01* X050236Y00888D02* G01X050636D01* X050236Y00868D02* G01Y00888D01* X05057Y00868D02* G01X050236D01* X050636Y008613D02* G01X05057Y00868D01* X050636Y008413D02* G01Y008613D01* X05057Y008346D02* G01X050636Y008413D01* X050303Y008346D02* G01X05057D01* X050236Y008413D02* G01X050303Y008346D01* X018346Y009134D02* G01X018746D01* X018346Y009201D02* G01Y009134D01* X01868Y009401D02* G01X018346Y009201D01* X018746Y009467D02* G01X01868Y009401D01* X018746Y009601D02* G01Y009467D01* X01868Y009667D02* G01X018746Y009601D01* X018413Y009667D02* G01X01868D01* X018346Y009601D02* G01X018413Y009667D01* X102823Y008613D02* G01X102756Y008546D01* X103089Y008613D02* G01X102823D01* X103156Y008546D02* G01X103089Y008613D01* X103156Y008413D02* G01Y008546D01* X103089Y008346D02* G01X103156Y008413D01* X102823Y008346D02* G01X103089D01* X102756Y008413D02* G01X102823Y008346D01* X102756Y008813D02* G01Y008413D01* X102823Y00888D02* G01X102756Y008813D01* X103089Y00888D02* G01X102823D01* X103156Y008813D02* G01X103089Y00888D01* X103589Y00977D02* G01X103322Y00937D01* X103589Y009903D02* G01Y00977D01* X103189Y009903D02* G01X103589D01* X103189Y009837D02* G01Y009903D01* X039179Y002536D02* G01X039579Y00307D01* X039246Y002536D02* G01X039179Y002603D01* X039512Y002536D02* G01X039246D01* X039579Y002603D02* G01X039512Y002536D01* X039579Y003003D02* G01Y002603D01* X039512Y00307D02* G01X039579Y003003D01* X039246Y00307D02* G01X039512D01* X039179Y003003D02* G01X039246Y00307D01* X039179Y002603D02* G01Y003003D01* X038646Y002536D02* G01X039046Y00307D01* X038712Y002536D02* G01X038646Y002603D01* X038979Y002536D02* G01X038712D01* X039046Y002603D02* G01X038979Y002536D01* X039046Y003003D02* G01Y002603D01* X038979Y00307D02* G01X039046Y003003D01* X038712Y00307D02* G01X038979D01* X038646Y003003D02* G01X038712Y00307D01* X038646Y002603D02* G01Y003003D01* X038379Y002603D02* G01X038312Y002536D01* Y00267D02* G01X038379Y002603D01* X038246D02* G01X038312Y00267D01* Y002536D02* G01X038246Y002603D01* X037579Y002536D02* G01X037979Y00307D01* X037646Y002536D02* G01X037579Y002603D01* X037912Y002536D02* G01X037646D01* X037979Y002603D02* G01X037912Y002536D01* X037979Y003003D02* G01Y002603D01* X037912Y00307D02* G01X037979Y003003D01* X037646Y00307D02* G01X037912D01* X037579Y003003D02* G01X037646Y00307D01* X037579Y002603D02* G01Y003003D01* X036579Y00287D02* G01X036912D01* X036579Y002736D02* G01X036912D01* X035979Y002603D02* G01Y00287D01* X036046Y002536D02* G01X035979Y002603D01* X036246Y002536D02* G01X036046D01* X036312Y002603D02* G01X036246Y002536D01* X036312Y002403D02* G01Y00287D01* X036246Y002336D02* G01X036312Y002403D01* X036046Y002336D02* G01X036246D01* X035979Y002403D02* G01X036046Y002336D01* X034912Y002536D02* G01X035312Y00307D01* X033846D02* G01X034246D01* X033846Y00287D02* G01Y00307D01* X034179Y00287D02* G01X033846D01* X034246Y002803D02* G01X034179Y00287D01* X034246Y002603D02* G01Y002803D01* X034179Y002536D02* G01X034246Y002603D01* X033912Y002536D02* G01X034179D01* X033846Y002603D02* G01X033912Y002536D01* X033446Y002803D02* G01X033579D01* X033379Y002536D02* G01X033312Y002603D01* X033646Y002536D02* G01X033379D01* X033712Y002603D02* G01X033646Y002536D01* X033712Y002736D02* G01Y002603D01* X033579Y002803D02* G01X033712Y002736D01* Y00287D02* G01X033579Y002803D01* X033712Y003003D02* G01Y00287D01* X033646Y00307D02* G01X033712Y003003D01* X033379Y00307D02* G01X033646D01* X033312Y003003D02* G01X033379Y00307D01* X033046Y002603D02* G01X032979Y002536D01* Y00267D02* G01X033046Y002603D01* X032912D02* G01X032979Y00267D01* Y002536D02* G01X032912Y002603D01* X032379Y002803D02* G01X032512D01* X032312Y002536D02* G01X032246Y002603D01* X032579Y002536D02* G01X032312D01* X032646Y002603D02* G01X032579Y002536D01* X032646Y002736D02* G01Y002603D01* X032512Y002803D02* G01X032646Y002736D01* Y00287D02* G01X032512Y002803D01* X032646Y003003D02* G01Y00287D01* X032579Y00307D02* G01X032646Y003003D01* X032312Y00307D02* G01X032579D01* X032246Y003003D02* G01X032312Y00307D01* X031846Y002803D02* G01X031979D01* X031779Y002536D02* G01X031712Y002603D01* X032046Y002536D02* G01X031779D01* X032112Y002603D02* G01X032046Y002536D01* X032112Y002736D02* G01Y002603D01* X031979Y002803D02* G01X032112Y002736D01* Y00287D02* G01X031979Y002803D01* X032112Y003003D02* G01Y00287D01* X032046Y00307D02* G01X032112Y003003D01* X031779Y00307D02* G01X032046D01* X031712Y003003D02* G01X031779Y00307D01* X031179Y002536D02* G01X031579D01* X031179Y002603D02* G01Y002536D01* X031512Y002803D02* G01X031179Y002603D01* X031579Y00287D02* G01X031512Y002803D01* X031579Y003003D02* G01Y00287D01* X031512Y00307D02* G01X031579Y003003D01* X031246Y00307D02* G01X031512D01* X031179Y003003D02* G01X031246Y00307D01* X030712Y00287D02* G01X031046D01* X030712Y002736D02* G01X031046D01* X030112Y00287D02* G01X030446Y002536D01* X030112D02* G01X030446Y00287D01* X029312D02* G01X029179Y00307D01* X029312Y002736D02* G01Y00287D01* X029179Y002536D02* G01X029312Y002736D01* X028912Y00287D02* G01X028846Y002803D01* X028912Y003003D02* G01Y00287D01* X028846Y00307D02* G01X028912Y003003D01* X028579Y00307D02* G01X028846D01* X028512Y003003D02* G01X028579Y00307D01* X028512Y00287D02* G01Y003003D01* X028579Y002803D02* G01X028512Y00287D01* X028846Y002803D02* G01X028579D01* X028912Y002736D02* G01X028846Y002803D01* X028912Y002603D02* G01Y002736D01* X028846Y002536D02* G01X028912Y002603D01* X028579Y002536D02* G01X028846D01* X028512Y002603D02* G01X028579Y002536D01* X028512Y002736D02* G01Y002603D01* X028579Y002803D02* G01X028512Y002736D01* X028112Y00287D02* G01X028246Y00307D01* X028112Y002736D02* G01Y00287D01* X028246Y002536D02* G01X028112Y002736D01* X024779Y002536D02* G01X025179Y00307D01* X024846Y002536D02* G01X024779Y002603D01* X025112Y002536D02* G01X024846D01* X025179Y002603D02* G01X025112Y002536D01* X025179Y003003D02* G01Y002603D01* X025112Y00307D02* G01X025179Y003003D01* X024846Y00307D02* G01X025112D01* X024779Y003003D02* G01X024846Y00307D01* X024779Y002603D02* G01Y003003D01* X024246Y002536D02* G01X024646Y00307D01* X024312Y002536D02* G01X024246Y002603D01* X024579Y002536D02* G01X024312D01* X024646Y002603D02* G01X024579Y002536D01* X024646Y003003D02* G01Y002603D01* X024579Y00307D02* G01X024646Y003003D01* X024312Y00307D02* G01X024579D01* X024246Y003003D02* G01X024312Y00307D01* X024246Y002603D02* G01Y003003D01* X023979Y002603D02* G01X023912Y002536D01* Y00267D02* G01X023979Y002603D01* X023846D02* G01X023912Y00267D01* Y002536D02* G01X023846Y002603D01* X023312Y002803D02* G01X023446D01* X023246Y002536D02* G01X023179Y002603D01* X023512Y002536D02* G01X023246D01* X023579Y002603D02* G01X023512Y002536D01* X023579Y002736D02* G01Y002603D01* X023446Y002803D02* G01X023579Y002736D01* Y00287D02* G01X023446Y002803D01* X023579Y003003D02* G01Y00287D01* X023512Y00307D02* G01X023579Y003003D01* X023246Y00307D02* G01X023512D01* X023179Y003003D02* G01X023246Y00307D01* X022712Y00287D02* G01X023046D01* X022712Y002736D02* G01X023046D01* X022112Y002603D02* G01Y00287D01* X022179Y002536D02* G01X022112Y002603D01* X022379Y002536D02* G01X022179D01* X022446Y002603D02* G01X022379Y002536D01* X022446Y002403D02* G01Y00287D01* X022379Y002336D02* G01X022446Y002403D01* X022179Y002336D02* G01X022379D01* X022112Y002403D02* G01X022179Y002336D01* X021046Y002536D02* G01X021446Y00307D01* X019979Y002536D02* G01X020379Y00307D01* X020046Y002536D02* G01X019979Y002603D01* X020312Y002536D02* G01X020046D01* X020379Y002603D02* G01X020312Y002536D01* X020379Y003003D02* G01Y002603D01* X020312Y00307D02* G01X020379Y003003D01* X020046Y00307D02* G01X020312D01* X019979Y003003D02* G01X020046Y00307D01* X019979Y002603D02* G01Y003003D01* X019446Y002536D02* G01X019846Y00307D01* X019512Y002536D02* G01X019446Y002603D01* X019779Y002536D02* G01X019512D01* X019846Y002603D02* G01X019779Y002536D01* X019846Y003003D02* G01Y002603D01* X019779Y00307D02* G01X019846Y003003D01* X019512Y00307D02* G01X019779D01* X019446Y003003D02* G01X019512Y00307D01* X019446Y002603D02* G01Y003003D01* X019179Y002603D02* G01X019112Y002536D01* Y00267D02* G01X019179Y002603D01* X019046D02* G01X019112Y00267D01* Y002536D02* G01X019046Y002603D01* X018379Y002536D02* G01X018779Y00307D01* X018446Y002536D02* G01X018379Y002603D01* X018712Y002536D02* G01X018446D01* X018779Y002603D02* G01X018712Y002536D01* X018779Y003003D02* G01Y002603D01* X018712Y00307D02* G01X018779Y003003D01* X018446Y00307D02* G01X018712D01* X018379Y003003D02* G01X018446Y00307D01* X018379Y002603D02* G01Y003003D01* X018179Y002803D02* G01X018246Y00287D01* X017912Y002803D02* G01X018179D01* X017846Y00287D02* G01X017912Y002803D01* X017846Y003003D02* G01Y00287D01* X017912Y00307D02* G01X017846Y003003D01* X018179Y00307D02* G01X017912D01* X018246Y003003D02* G01X018179Y00307D01* X018246Y002603D02* G01Y003003D01* X018179Y002536D02* G01X018246Y002603D01* X017912Y002536D02* G01X018179D01* X017846Y002603D02* G01X017912Y002536D01* X017379Y00287D02* G01X017712D01* X017379Y002736D02* G01X017712D01* X016779Y00287D02* G01X017112Y002536D01* X016779D02* G01X017112Y00287D01* X015979D02* G01X015846Y00307D01* X015979Y002736D02* G01Y00287D01* X015846Y002536D02* G01X015979Y002736D01* X015512Y00307D02* G01Y002536D01* X015179Y002803D02* G01X015579D01* X015179Y00307D02* G01Y002803D01* X014779Y00287D02* G01X014912Y00307D01* X014779Y002736D02* G01Y00287D01* X014912Y002536D02* G01X014779Y002736D01* X039179Y003436D02* G01X039579Y00397D01* X039246Y003436D02* G01X039179Y003503D01* X039512Y003436D02* G01X039246D01* X039579Y003503D02* G01X039512Y003436D01* X039579Y003903D02* G01Y003503D01* X039512Y00397D02* G01X039579Y003903D01* X039246Y00397D02* G01X039512D01* X039179Y003903D02* G01X039246Y00397D01* X039179Y003503D02* G01Y003903D01* X038646Y003436D02* G01X039046Y00397D01* X038712Y003436D02* G01X038646Y003503D01* X038979Y003436D02* G01X038712D01* X039046Y003503D02* G01X038979Y003436D01* X039046Y003903D02* G01Y003503D01* X038979Y00397D02* G01X039046Y003903D01* X038712Y00397D02* G01X038979D01* X038646Y003903D02* G01X038712Y00397D01* X038646Y003503D02* G01Y003903D01* X038379Y003503D02* G01X038312Y003436D01* Y00357D02* G01X038379Y003503D01* X038246D02* G01X038312Y00357D01* Y003436D02* G01X038246Y003503D01* X037579Y003436D02* G01X037979Y00397D01* X037646Y003436D02* G01X037579Y003503D01* X037912Y003436D02* G01X037646D01* X037979Y003503D02* G01X037912Y003436D01* X037979Y003903D02* G01Y003503D01* X037912Y00397D02* G01X037979Y003903D01* X037646Y00397D02* G01X037912D01* X037579Y003903D02* G01X037646Y00397D01* X037579Y003503D02* G01Y003903D01* X036579Y00377D02* G01X036912D01* X036579Y003636D02* G01X036912D01* X035979Y003503D02* G01Y00377D01* X036046Y003436D02* G01X035979Y003503D01* X036246Y003436D02* G01X036046D01* X036312Y003503D02* G01X036246Y003436D01* X036312Y003303D02* G01Y00377D01* X036246Y003236D02* G01X036312Y003303D01* X036046Y003236D02* G01X036246D01* X035979Y003303D02* G01X036046Y003236D01* X034912Y003436D02* G01X035312Y00397D01* X033846D02* G01X034246D01* X033846Y00377D02* G01Y00397D01* X034179Y00377D02* G01X033846D01* X034246Y003703D02* G01X034179Y00377D01* X034246Y003503D02* G01Y003703D01* X034179Y003436D02* G01X034246Y003503D01* X033912Y003436D02* G01X034179D01* X033846Y003503D02* G01X033912Y003436D01* X033446Y003703D02* G01X033579D01* X033379Y003436D02* G01X033312Y003503D01* X033646Y003436D02* G01X033379D01* X033712Y003503D02* G01X033646Y003436D01* X033712Y003636D02* G01Y003503D01* X033579Y003703D02* G01X033712Y003636D01* Y00377D02* G01X033579Y003703D01* X033712Y003903D02* G01Y00377D01* X033646Y00397D02* G01X033712Y003903D01* X033379Y00397D02* G01X033646D01* X033312Y003903D02* G01X033379Y00397D01* X033046Y003503D02* G01X032979Y003436D01* Y00357D02* G01X033046Y003503D01* X032912D02* G01X032979Y00357D01* Y003436D02* G01X032912Y003503D01* X032379Y003703D02* G01X032512D01* X032312Y003436D02* G01X032246Y003503D01* X032579Y003436D02* G01X032312D01* X032646Y003503D02* G01X032579Y003436D01* X032646Y003636D02* G01Y003503D01* X032512Y003703D02* G01X032646Y003636D01* Y00377D02* G01X032512Y003703D01* X032646Y003903D02* G01Y00377D01* X032579Y00397D02* G01X032646Y003903D01* X032312Y00397D02* G01X032579D01* X032246Y003903D02* G01X032312Y00397D01* X031712Y003436D02* G01X032112D01* X031712Y003503D02* G01Y003436D01* X032046Y003703D02* G01X031712Y003503D01* X032112Y00377D02* G01X032046Y003703D01* X032112Y003903D02* G01Y00377D01* X032046Y00397D02* G01X032112Y003903D01* X031779Y00397D02* G01X032046D01* X031712Y003903D02* G01X031779Y00397D01* X031179Y003436D02* G01X031579D01* X031179Y003503D02* G01Y003436D01* X031512Y003703D02* G01X031179Y003503D01* X031579Y00377D02* G01X031512Y003703D01* X031579Y003903D02* G01Y00377D01* X031512Y00397D02* G01X031579Y003903D01* X031246Y00397D02* G01X031512D01* X031179Y003903D02* G01X031246Y00397D01* X030712Y00377D02* G01X031046D01* X030712Y003636D02* G01X031046D01* X030112Y00377D02* G01X030446Y003436D01* X030112D02* G01X030446Y00377D01* X029312D02* G01X029179Y00397D01* X029312Y003636D02* G01Y00377D01* X029179Y003436D02* G01X029312Y003636D01* X028912Y003836D02* G01X028646Y003436D01* X028912Y00397D02* G01Y003836D01* X028512Y00397D02* G01X028912D01* X028512Y003903D02* G01Y00397D01* X028112Y00377D02* G01X028246Y00397D01* X028112Y003636D02* G01Y00377D01* X028246Y003436D02* G01X028112Y003636D01* X024779Y003436D02* G01X025179Y00397D01* X024846Y003436D02* G01X024779Y003503D01* X025112Y003436D02* G01X024846D01* X025179Y003503D02* G01X025112Y003436D01* X025179Y003903D02* G01Y003503D01* X025112Y00397D02* G01X025179Y003903D01* X024846Y00397D02* G01X025112D01* X024779Y003903D02* G01X024846Y00397D01* X024779Y003503D02* G01Y003903D01* X024246Y003436D02* G01X024646Y00397D01* X024312Y003436D02* G01X024246Y003503D01* X024579Y003436D02* G01X024312D01* X024646Y003503D02* G01X024579Y003436D01* X024646Y003903D02* G01Y003503D01* X024579Y00397D02* G01X024646Y003903D01* X024312Y00397D02* G01X024579D01* X024246Y003903D02* G01X024312Y00397D01* X024246Y003503D02* G01Y003903D01* X023979Y003503D02* G01X023912Y003436D01* Y00357D02* G01X023979Y003503D01* X023846D02* G01X023912Y00357D01* Y003436D02* G01X023846Y003503D01* X023312Y003703D02* G01X023446D01* X023246Y003436D02* G01X023179Y003503D01* X023512Y003436D02* G01X023246D01* X023579Y003503D02* G01X023512Y003436D01* X023579Y003636D02* G01Y003503D01* X023446Y003703D02* G01X023579Y003636D01* Y00377D02* G01X023446Y003703D01* X023579Y003903D02* G01Y00377D01* X023512Y00397D02* G01X023579Y003903D01* X023246Y00397D02* G01X023512D01* X023179Y003903D02* G01X023246Y00397D01* X022712Y00377D02* G01X023046D01* X022712Y003636D02* G01X023046D01* X022112Y003503D02* G01Y00377D01* X022179Y003436D02* G01X022112Y003503D01* X022379Y003436D02* G01X022179D01* X022446Y003503D02* G01X022379Y003436D01* X022446Y003303D02* G01Y00377D01* X022379Y003236D02* G01X022446Y003303D01* X022179Y003236D02* G01X022379D01* X022112Y003303D02* G01X022179Y003236D01* X021046Y003436D02* G01X021446Y00397D01* X019979Y003436D02* G01X020379Y00397D01* X020046Y003436D02* G01X019979Y003503D01* X020312Y003436D02* G01X020046D01* X020379Y003503D02* G01X020312Y003436D01* X020379Y003903D02* G01Y003503D01* X020312Y00397D02* G01X020379Y003903D01* X020046Y00397D02* G01X020312D01* X019979Y003903D02* G01X020046Y00397D01* X019979Y003503D02* G01Y003903D01* X019446Y003436D02* G01X019846Y00397D01* X019512Y003436D02* G01X019446Y003503D01* X019779Y003436D02* G01X019512D01* X019846Y003503D02* G01X019779Y003436D01* X019846Y003903D02* G01Y003503D01* X019779Y00397D02* G01X019846Y003903D01* X019512Y00397D02* G01X019779D01* X019446Y003903D02* G01X019512Y00397D01* X019446Y003503D02* G01Y003903D01* X019179Y003503D02* G01X019112Y003436D01* Y00357D02* G01X019179Y003503D01* X019046D02* G01X019112Y00357D01* Y003436D02* G01X019046Y003503D01* X018712Y003703D02* G01X018779Y00377D01* X018446Y003703D02* G01X018712D01* X018379Y00377D02* G01X018446Y003703D01* X018379Y003903D02* G01Y00377D01* X018446Y00397D02* G01X018379Y003903D01* X018712Y00397D02* G01X018446D01* X018779Y003903D02* G01X018712Y00397D01* X018779Y003503D02* G01Y003903D01* X018712Y003436D02* G01X018779Y003503D01* X018446Y003436D02* G01X018712D01* X018379Y003503D02* G01X018446Y003436D01* X017379Y00377D02* G01X017712D01* X017379Y003636D02* G01X017712D01* X016779Y00377D02* G01X017112Y003436D01* X016779D02* G01X017112Y00377D01* X015979D02* G01X015846Y00397D01* X015979Y003636D02* G01Y00377D01* X015846Y003436D02* G01X015979Y003636D01* X015312Y003703D02* G01X015446D01* X015246Y003436D02* G01X015179Y003503D01* X015512Y003436D02* G01X015246D01* X015579Y003503D02* G01X015512Y003436D01* X015579Y003636D02* G01Y003503D01* X015446Y003703D02* G01X015579Y003636D01* Y00377D02* G01X015446Y003703D01* X015579Y003903D02* G01Y00377D01* X015512Y00397D02* G01X015579Y003903D01* X015246Y00397D02* G01X015512D01* X015179Y003903D02* G01X015246Y00397D01* X014779Y00377D02* G01X014912Y00397D01* X014779Y003636D02* G01Y00377D01* X014912Y003436D02* G01X014779Y003636D01* X039179Y004336D02* G01X039579Y00487D01* X039246Y004336D02* G01X039179Y004403D01* X039512Y004336D02* G01X039246D01* X039579Y004403D02* G01X039512Y004336D01* X039579Y004803D02* G01Y004403D01* X039512Y00487D02* G01X039579Y004803D01* X039246Y00487D02* G01X039512D01* X039179Y004803D02* G01X039246Y00487D01* X039179Y004403D02* G01Y004803D01* X038646Y004336D02* G01X039046Y00487D01* X038712Y004336D02* G01X038646Y004403D01* X038979Y004336D02* G01X038712D01* X039046Y004403D02* G01X038979Y004336D01* X039046Y004803D02* G01Y004403D01* X038979Y00487D02* G01X039046Y004803D01* X038712Y00487D02* G01X038979D01* X038646Y004803D02* G01X038712Y00487D01* X038646Y004403D02* G01Y004803D01* X038379Y004403D02* G01X038312Y004336D01* Y00447D02* G01X038379Y004403D01* X038246D02* G01X038312Y00447D01* Y004336D02* G01X038246Y004403D01* X037579Y004336D02* G01X037979D01* X037579Y004403D02* G01Y004336D01* X037912Y004603D02* G01X037579Y004403D01* X037979Y00467D02* G01X037912Y004603D01* X037979Y004803D02* G01Y00467D01* X037912Y00487D02* G01X037979Y004803D01* X037646Y00487D02* G01X037912D01* X037579Y004803D02* G01X037646Y00487D01* X037046Y004603D02* G01X037446D01* X036579Y00467D02* G01X036912D01* X036579Y004536D02* G01X036912D01* X035979Y004403D02* G01Y00467D01* X036046Y004336D02* G01X035979Y004403D01* X036246Y004336D02* G01X036046D01* X036312Y004403D02* G01X036246Y004336D01* X036312Y004203D02* G01Y00467D01* X036246Y004136D02* G01X036312Y004203D01* X036046Y004136D02* G01X036246D01* X035979Y004203D02* G01X036046Y004136D01* X034912Y004336D02* G01X035312Y00487D01* X033846D02* G01X034246D01* X033846Y00467D02* G01Y00487D01* X034179Y00467D02* G01X033846D01* X034246Y004603D02* G01X034179Y00467D01* X034246Y004403D02* G01Y004603D01* X034179Y004336D02* G01X034246Y004403D01* X033912Y004336D02* G01X034179D01* X033846Y004403D02* G01X033912Y004336D01* X033446Y004603D02* G01X033579D01* X033379Y004336D02* G01X033312Y004403D01* X033646Y004336D02* G01X033379D01* X033712Y004403D02* G01X033646Y004336D01* X033712Y004536D02* G01Y004403D01* X033579Y004603D02* G01X033712Y004536D01* Y00467D02* G01X033579Y004603D01* X033712Y004803D02* G01Y00467D01* X033646Y00487D02* G01X033712Y004803D01* X033379Y00487D02* G01X033646D01* X033312Y004803D02* G01X033379Y00487D01* X033046Y004403D02* G01X032979Y004336D01* Y00447D02* G01X033046Y004403D01* X032912D02* G01X032979Y00447D01* Y004336D02* G01X032912Y004403D01* X032379Y004603D02* G01X032512D01* X032312Y004336D02* G01X032246Y004403D01* X032579Y004336D02* G01X032312D01* X032646Y004403D02* G01X032579Y004336D01* X032646Y004536D02* G01Y004403D01* X032512Y004603D02* G01X032646Y004536D01* Y00467D02* G01X032512Y004603D01* X032646Y004803D02* G01Y00467D01* X032579Y00487D02* G01X032646Y004803D01* X032312Y00487D02* G01X032579D01* X032246Y004803D02* G01X032312Y00487D01* X031712Y004336D02* G01X032112D01* X031712Y004403D02* G01Y004336D01* X032046Y004603D02* G01X031712Y004403D01* X032112Y00467D02* G01X032046Y004603D01* X032112Y004803D02* G01Y00467D01* X032046Y00487D02* G01X032112Y004803D01* X031779Y00487D02* G01X032046D01* X031712Y004803D02* G01X031779Y00487D01* X031179Y004336D02* G01X031579D01* X031179Y004403D02* G01Y004336D01* X031512Y004603D02* G01X031179Y004403D01* X031579Y00467D02* G01X031512Y004603D01* X031579Y004803D02* G01Y00467D01* X031512Y00487D02* G01X031579Y004803D01* X031246Y00487D02* G01X031512D01* X031179Y004803D02* G01X031246Y00487D01* X030712Y00467D02* G01X031046D01* X030712Y004536D02* G01X031046D01* X030112Y00467D02* G01X030446Y004336D01* X030112D02* G01X030446Y00467D01* X029312D02* G01X029179Y00487D01* X029312Y004536D02* G01Y00467D01* X029179Y004336D02* G01X029312Y004536D01* X028579Y004603D02* G01X028512Y004536D01* X028846Y004603D02* G01X028579D01* X028912Y004536D02* G01X028846Y004603D01* X028912Y004403D02* G01Y004536D01* X028846Y004336D02* G01X028912Y004403D01* X028579Y004336D02* G01X028846D01* X028512Y004403D02* G01X028579Y004336D01* X028512Y004803D02* G01Y004403D01* X028579Y00487D02* G01X028512Y004803D01* X028846Y00487D02* G01X028579D01* X028912Y004803D02* G01X028846Y00487D01* X028112Y00467D02* G01X028246Y00487D01* X028112Y004536D02* G01Y00467D01* X028246Y004336D02* G01X028112Y004536D01* X024779Y004336D02* G01X025179Y00487D01* X024846Y004336D02* G01X024779Y004403D01* X025112Y004336D02* G01X024846D01* X025179Y004403D02* G01X025112Y004336D01* X025179Y004803D02* G01Y004403D01* X025112Y00487D02* G01X025179Y004803D01* X024846Y00487D02* G01X025112D01* X024779Y004803D02* G01X024846Y00487D01* X024779Y004403D02* G01Y004803D01* X024246Y004336D02* G01X024646Y00487D01* X024312Y004336D02* G01X024246Y004403D01* X024579Y004336D02* G01X024312D01* X024646Y004403D02* G01X024579Y004336D01* X024646Y004803D02* G01Y004403D01* X024579Y00487D02* G01X024646Y004803D01* X024312Y00487D02* G01X024579D01* X024246Y004803D02* G01X024312Y00487D01* X024246Y004403D02* G01Y004803D01* X023979Y004403D02* G01X023912Y004336D01* Y00447D02* G01X023979Y004403D01* X023846D02* G01X023912Y00447D01* Y004336D02* G01X023846Y004403D01* X023179Y004336D02* G01X023579Y00487D01* X023246Y004336D02* G01X023179Y004403D01* X023512Y004336D02* G01X023246D01* X023579Y004403D02* G01X023512Y004336D01* X023579Y004803D02* G01Y004403D01* X023512Y00487D02* G01X023579Y004803D01* X023246Y00487D02* G01X023512D01* X023179Y004803D02* G01X023246Y00487D01* X023179Y004403D02* G01Y004803D01* X022712Y00467D02* G01X023046D01* X022712Y004536D02* G01X023046D01* X022112Y004403D02* G01Y00467D01* X022179Y004336D02* G01X022112Y004403D01* X022379Y004336D02* G01X022179D01* X022446Y004403D02* G01X022379Y004336D01* X022446Y004203D02* G01Y00467D01* X022379Y004136D02* G01X022446Y004203D01* X022179Y004136D02* G01X022379D01* X022112Y004203D02* G01X022179Y004136D01* X021046Y004336D02* G01X021446Y00487D01* X019979Y004336D02* G01X020379Y00487D01* X020046Y004336D02* G01X019979Y004403D01* X020312Y004336D02* G01X020046D01* X020379Y004403D02* G01X020312Y004336D01* X020379Y004803D02* G01Y004403D01* X020312Y00487D02* G01X020379Y004803D01* X020046Y00487D02* G01X020312D01* X019979Y004803D02* G01X020046Y00487D01* X019979Y004403D02* G01Y004803D01* X019446Y004336D02* G01X019846Y00487D01* X019512Y004336D02* G01X019446Y004403D01* X019779Y004336D02* G01X019512D01* X019846Y004403D02* G01X019779Y004336D01* X019846Y004803D02* G01Y004403D01* X019779Y00487D02* G01X019846Y004803D01* X019512Y00487D02* G01X019779D01* X019446Y004803D02* G01X019512Y00487D01* X019446Y004403D02* G01Y004803D01* X019179Y004403D02* G01X019112Y004336D01* Y00447D02* G01X019179Y004403D01* X019046D02* G01X019112Y00447D01* Y004336D02* G01X019046Y004403D01* X018712Y004603D02* G01X018779Y00467D01* X018446Y004603D02* G01X018712D01* X018379Y00467D02* G01X018446Y004603D01* X018379Y004803D02* G01Y00467D01* X018446Y00487D02* G01X018379Y004803D01* X018712Y00487D02* G01X018446D01* X018779Y004803D02* G01X018712Y00487D01* X018779Y004403D02* G01Y004803D01* X018712Y004336D02* G01X018779Y004403D01* X018446Y004336D02* G01X018712D01* X018379Y004403D02* G01X018446Y004336D01* X017379Y00467D02* G01X017712D01* X017379Y004536D02* G01X017712D01* X016779Y00467D02* G01X017112Y004336D01* X016779D02* G01X017112Y00467D01* X015979D02* G01X015846Y00487D01* X015979Y004536D02* G01Y00467D01* X015846Y004336D02* G01X015979Y004536D01* X015179Y004336D02* G01X015579D01* X015179Y004403D02* G01Y004336D01* X015512Y004603D02* G01X015179Y004403D01* X015579Y00467D02* G01X015512Y004603D01* X015579Y004803D02* G01Y00467D01* X015512Y00487D02* G01X015579Y004803D01* X015246Y00487D02* G01X015512D01* X015179Y004803D02* G01X015246Y00487D01* X014779Y00467D02* G01X014912Y00487D01* X014779Y004536D02* G01Y00467D01* X014912Y004336D02* G01X014779Y004536D01* X039179Y005236D02* G01X039579Y00577D01* X039246Y005236D02* G01X039179Y005303D01* X039512Y005236D02* G01X039246D01* X039579Y005303D02* G01X039512Y005236D01* X039579Y005703D02* G01Y005303D01* X039512Y00577D02* G01X039579Y005703D01* X039246Y00577D02* G01X039512D01* X039179Y005703D02* G01X039246Y00577D01* X039179Y005303D02* G01Y005703D01* X038646Y005236D02* G01X039046Y00577D01* X038712Y005236D02* G01X038646Y005303D01* X038979Y005236D02* G01X038712D01* X039046Y005303D02* G01X038979Y005236D01* X039046Y005703D02* G01Y005303D01* X038979Y00577D02* G01X039046Y005703D01* X038712Y00577D02* G01X038979D01* X038646Y005703D02* G01X038712Y00577D01* X038646Y005303D02* G01Y005703D01* X038379Y005303D02* G01X038312Y005236D01* Y00537D02* G01X038379Y005303D01* X038246D02* G01X038312Y00537D01* Y005236D02* G01X038246Y005303D01* X037579Y005236D02* G01X037979D01* X037579Y005303D02* G01Y005236D01* X037912Y005503D02* G01X037579Y005303D01* X037979Y00557D02* G01X037912Y005503D01* X037979Y005703D02* G01Y00557D01* X037912Y00577D02* G01X037979Y005703D01* X037646Y00577D02* G01X037912D01* X037579Y005703D02* G01X037646Y00577D01* X037046Y005503D02* G01X037446D01* X036579Y00557D02* G01X036912D01* X036579Y005436D02* G01X036912D01* X035979Y005303D02* G01Y00557D01* X036046Y005236D02* G01X035979Y005303D01* X036246Y005236D02* G01X036046D01* X036312Y005303D02* G01X036246Y005236D01* X036312Y005103D02* G01Y00557D01* X036246Y005036D02* G01X036312Y005103D01* X036046Y005036D02* G01X036246D01* X035979Y005103D02* G01X036046Y005036D01* X034912Y005236D02* G01X035312Y00577D01* X033846Y005236D02* G01X034246Y00577D01* X033912Y005236D02* G01X033846Y005303D01* X034179Y005236D02* G01X033912D01* X034246Y005303D02* G01X034179Y005236D01* X034246Y005703D02* G01Y005303D01* X034179Y00577D02* G01X034246Y005703D01* X033912Y00577D02* G01X034179D01* X033846Y005703D02* G01X033912Y00577D01* X033846Y005303D02* G01Y005703D01* X033312Y005236D02* G01X033712Y00577D01* X033379Y005236D02* G01X033312Y005303D01* X033646Y005236D02* G01X033379D01* X033712Y005303D02* G01X033646Y005236D01* X033712Y005703D02* G01Y005303D01* X033646Y00577D02* G01X033712Y005703D01* X033379Y00577D02* G01X033646D01* X033312Y005703D02* G01X033379Y00577D01* X033312Y005303D02* G01Y005703D01* X033046Y005303D02* G01X032979Y005236D01* Y00537D02* G01X033046Y005303D01* X032912D02* G01X032979Y00537D01* Y005236D02* G01X032912Y005303D01* X032246Y005236D02* G01X032646Y00577D01* X032312Y005236D02* G01X032246Y005303D01* X032579Y005236D02* G01X032312D01* X032646Y005303D02* G01X032579Y005236D01* X032646Y005703D02* G01Y005303D01* X032579Y00577D02* G01X032646Y005703D01* X032312Y00577D02* G01X032579D01* X032246Y005703D02* G01X032312Y00577D01* X032246Y005303D02* G01Y005703D01* X032046Y005503D02* G01X032112Y00557D01* X031779Y005503D02* G01X032046D01* X031712Y00557D02* G01X031779Y005503D01* X031712Y005703D02* G01Y00557D01* X031779Y00577D02* G01X031712Y005703D01* X032046Y00577D02* G01X031779D01* X032112Y005703D02* G01X032046Y00577D01* X032112Y005303D02* G01Y005703D01* X032046Y005236D02* G01X032112Y005303D01* X031779Y005236D02* G01X032046D01* X031712Y005303D02* G01X031779Y005236D01* X030712Y00557D02* G01X031046D01* X030712Y005436D02* G01X031046D01* X030112Y00557D02* G01X030446Y005236D01* X030112D02* G01X030446Y00557D01* X029312D02* G01X029179Y00577D01* X029312Y005436D02* G01Y00557D01* X029179Y005236D02* G01X029312Y005436D01* X028512Y00577D02* G01X028912D01* X028512Y00557D02* G01Y00577D01* X028846Y00557D02* G01X028512D01* X028912Y005503D02* G01X028846Y00557D01* X028912Y005303D02* G01Y005503D01* X028846Y005236D02* G01X028912Y005303D01* X028579Y005236D02* G01X028846D01* X028512Y005303D02* G01X028579Y005236D01* X028112Y00557D02* G01X028246Y00577D01* X028112Y005436D02* G01Y00557D01* X028246Y005236D02* G01X028112Y005436D01* X024779Y005236D02* G01X025179Y00577D01* X024846Y005236D02* G01X024779Y005303D01* X025112Y005236D02* G01X024846D01* X025179Y005303D02* G01X025112Y005236D01* X025179Y005703D02* G01Y005303D01* X025112Y00577D02* G01X025179Y005703D01* X024846Y00577D02* G01X025112D01* X024779Y005703D02* G01X024846Y00577D01* X024779Y005303D02* G01Y005703D01* X024246Y005236D02* G01X024646Y00577D01* X024312Y005236D02* G01X024246Y005303D01* X024579Y005236D02* G01X024312D01* X024646Y005303D02* G01X024579Y005236D01* X024646Y005703D02* G01Y005303D01* X024579Y00577D02* G01X024646Y005703D01* X024312Y00577D02* G01X024579D01* X024246Y005703D02* G01X024312Y00577D01* X024246Y005303D02* G01Y005703D01* X023979Y005303D02* G01X023912Y005236D01* Y00537D02* G01X023979Y005303D01* X023846D02* G01X023912Y00537D01* Y005236D02* G01X023846Y005303D01* X023179Y005236D02* G01X023579Y00577D01* X023246Y005236D02* G01X023179Y005303D01* X023512Y005236D02* G01X023246D01* X023579Y005303D02* G01X023512Y005236D01* X023579Y005703D02* G01Y005303D01* X023512Y00577D02* G01X023579Y005703D01* X023246Y00577D02* G01X023512D01* X023179Y005703D02* G01X023246Y00577D01* X023179Y005303D02* G01Y005703D01* X022712Y00557D02* G01X023046D01* X022712Y005436D02* G01X023046D01* X022112Y005303D02* G01Y00557D01* X022179Y005236D02* G01X022112Y005303D01* X022379Y005236D02* G01X022179D01* X022446Y005303D02* G01X022379Y005236D01* X022446Y005103D02* G01Y00557D01* X022379Y005036D02* G01X022446Y005103D01* X022179Y005036D02* G01X022379D01* X022112Y005103D02* G01X022179Y005036D01* X021046Y005236D02* G01X021446Y00577D01* X019979Y005236D02* G01X020379Y00577D01* X020046Y005236D02* G01X019979Y005303D01* X020312Y005236D02* G01X020046D01* X020379Y005303D02* G01X020312Y005236D01* X020379Y005703D02* G01Y005303D01* X020312Y00577D02* G01X020379Y005703D01* X020046Y00577D02* G01X020312D01* X019979Y005703D02* G01X020046Y00577D01* X019979Y005303D02* G01Y005703D01* X019446Y005236D02* G01X019846Y00577D01* X019512Y005236D02* G01X019446Y005303D01* X019779Y005236D02* G01X019512D01* X019846Y005303D02* G01X019779Y005236D01* X019846Y005703D02* G01Y005303D01* X019779Y00577D02* G01X019846Y005703D01* X019512Y00577D02* G01X019779D01* X019446Y005703D02* G01X019512Y00577D01* X019446Y005303D02* G01Y005703D01* X019179Y005303D02* G01X019112Y005236D01* Y00537D02* G01X019179Y005303D01* X019046D02* G01X019112Y00537D01* Y005236D02* G01X019046Y005303D01* X018379Y005236D02* G01X018779Y00577D01* X018446Y005236D02* G01X018379Y005303D01* X018712Y005236D02* G01X018446D01* X018779Y005303D02* G01X018712Y005236D01* X018779Y005703D02* G01Y005303D01* X018712Y00577D02* G01X018779Y005703D01* X018446Y00577D02* G01X018712D01* X018379Y005703D02* G01X018446Y00577D01* X018379Y005303D02* G01Y005703D01* X017379Y00557D02* G01X017712D01* X017379Y005436D02* G01X017712D01* X016779Y00557D02* G01X017112Y005236D01* X016779D02* G01X017112Y00557D01* X015979D02* G01X015846Y00577D01* X015979Y005436D02* G01Y00557D01* X015846Y005236D02* G01X015979Y005436D01* X015379Y00577D02* G01X015246Y005636D01* X015379Y005236D02* G01Y00577D01* X015179Y005236D02* G01X015579D01* X014779Y00557D02* G01X014912Y00577D01* X014779Y005436D02* G01Y00557D01* X014912Y005236D02* G01X014779Y005436D01* X014964Y009667D02* G01X01483Y009534D01* X014964Y009134D02* G01Y009667D01* X014764Y009134D02* G01X015164D01* X107054Y009467D02* G01X106987Y009401D01* X107054Y009601D02* G01Y009467D01* X106987Y009667D02* G01X107054Y009601D01* X10672Y009667D02* G01X106987D01* X106654Y009601D02* G01X10672Y009667D01* X106654Y009467D02* G01Y009601D01* X10672Y009401D02* G01X106654Y009467D01* X106987Y009401D02* G01X10672D01* X107054Y009334D02* G01X106987Y009401D01* X107054Y009201D02* G01Y009334D01* X106987Y009134D02* G01X107054Y009201D01* X10672Y009134D02* G01X106987D01* X106654Y009201D02* G01X10672Y009134D01* X106654Y009334D02* G01Y009201D01* X10672Y009401D02* G01X106654Y009334D01* X013946Y069828D02* G01X014213D01* X013879Y069761D02* G01X013946Y069828D01* X013879Y069694D02* G01Y069761D01* X013946Y069628D02* G01X013879Y069694D01* X013946Y069628D02* G01X014213D01* X013879Y069561D02* G01X013946Y069628D01* X013879Y069494D02* G01Y069561D01* X013946Y069428D02* G01X013879Y069494D01* X014213Y069428D02* G01X013879D01* X013946Y069294D02* G01X014213D01* X013879Y069228D02* G01X013946Y069294D01* X013879Y069161D02* G01Y069228D01* X013946Y069094D02* G01X013879Y069161D01* X013946Y069094D02* G01X014213D01* X013879Y069028D02* G01X013946Y069094D01* X013879Y068961D02* G01Y069028D01* X013946Y068894D02* G01X013879Y068961D01* X014213Y068894D02* G01X013879D01* X014213Y068361D02* G01X013679Y068761D01* X014213Y068428D02* G01X014146Y068361D01* X014213Y068694D02* G01Y068428D01* X014146Y068761D02* G01X014213Y068694D01* X013746Y068761D02* G01X014146D01* X013679Y068694D02* G01X013746Y068761D01* X013679Y068428D02* G01Y068694D01* X013746Y068361D02* G01X013679Y068428D01* X014146Y068361D02* G01X013746D01* X013679Y067828D02* G01Y068228D01* X013879Y067828D02* G01X013679D01* X013879Y068161D02* G01Y067828D01* X013946Y068228D02* G01X013879Y068161D01* X014146Y068228D02* G01X013946D01* X014213Y068161D02* G01X014146Y068228D01* X014213Y067894D02* G01Y068161D01* X014146Y067828D02* G01X014213Y067894D01* X014146Y067561D02* G01X014213Y067494D01* X014079D02* G01X014146Y067561D01* Y067428D02* G01X014079Y067494D01* X014213D02* G01X014146Y067428D01* X013879Y067161D02* G01X013946Y067094D01* X013746Y067161D02* G01X013879D01* X013679Y067094D02* G01X013746Y067161D01* X013679Y066828D02* G01Y067094D01* X013746Y066761D02* G01X013679Y066828D01* X013879Y066761D02* G01X013746D01* X013946Y066828D02* G01X013879Y066761D01* X013946Y067094D02* G01Y066828D01* X014013Y067161D02* G01X013946Y067094D01* X014146Y067161D02* G01X014013D01* X014213Y067094D02* G01X014146Y067161D01* X014213Y066828D02* G01Y067094D01* X014146Y066761D02* G01X014213Y066828D01* X014013Y066761D02* G01X014146D01* X013946Y066828D02* G01X014013Y066761D01* X013679Y066228D02* G01Y066628D01* X013879Y066228D02* G01X013679D01* X013879Y066561D02* G01Y066228D01* X013946Y066628D02* G01X013879Y066561D01* X014146Y066628D02* G01X013946D01* X014213Y066561D02* G01X014146Y066628D01* X014213Y066294D02* G01Y066561D01* X014146Y066228D02* G01X014213Y066294D01* X013679Y065894D02* G01X013813Y065761D01* X014213Y065894D02* G01X013679D01* X014213Y065694D02* G01Y066094D01* X013879Y065228D02* G01Y065561D01* X014013Y065228D02* G01Y065561D01* X014146Y064628D02* G01X013879D01* X014213Y064694D02* G01X014146Y064628D01* X014213Y064894D02* G01Y064694D01* X014146Y064961D02* G01X014213Y064894D01* X014346Y064961D02* G01X013879D01* X014413Y064894D02* G01X014346Y064961D01* X014413Y064694D02* G01Y064894D01* X014346Y064628D02* G01X014413Y064694D01* X012824Y069808D02* G01X013091D01* X012757Y069741D02* G01X012824Y069808D01* X012757Y069675D02* G01Y069741D01* X012824Y069608D02* G01X012757Y069675D01* X012824Y069608D02* G01X013091D01* X012757Y069541D02* G01X012824Y069608D01* X012757Y069475D02* G01Y069541D01* X012824Y069408D02* G01X012757Y069475D01* X013091Y069408D02* G01X012757D01* X012824Y069275D02* G01X013091D01* X012757Y069208D02* G01X012824Y069275D01* X012757Y069141D02* G01Y069208D01* X012824Y069075D02* G01X012757Y069141D01* X012824Y069075D02* G01X013091D01* X012757Y069008D02* G01X012824Y069075D01* X012757Y068941D02* G01Y069008D01* X012824Y068875D02* G01X012757Y068941D01* X013091Y068875D02* G01X012757D01* X013091Y068341D02* G01X012557Y068741D01* X013091Y068408D02* G01X013024Y068341D01* X013091Y068675D02* G01Y068408D01* X013024Y068741D02* G01X013091Y068675D01* X012624Y068741D02* G01X013024D01* X012557Y068675D02* G01X012624Y068741D01* X012557Y068408D02* G01Y068675D01* X012624Y068341D02* G01X012557Y068408D01* X013024Y068341D02* G01X012624D01* X013091Y067808D02* G01X012557Y068208D01* X013091Y067875D02* G01X013024Y067808D01* X013091Y068141D02* G01Y067875D01* X013024Y068208D02* G01X013091Y068141D01* X012624Y068208D02* G01X013024D01* X012557Y068141D02* G01X012624Y068208D01* X012557Y067875D02* G01Y068141D01* X012624Y067808D02* G01X012557Y067875D01* X013024Y067808D02* G01X012624D01* X013024Y067541D02* G01X013091Y067475D01* X012957D02* G01X013024Y067541D01* Y067408D02* G01X012957Y067475D01* X013091D02* G01X013024Y067408D01* X013091Y066741D02* G01X012557Y067141D01* X013091Y066808D02* G01X013024Y066741D01* X013091Y067075D02* G01Y066808D01* X013024Y067141D02* G01X013091Y067075D01* X012624Y067141D02* G01X013024D01* X012557Y067075D02* G01X012624Y067141D01* X012557Y066808D02* G01Y067075D01* X012624Y066741D02* G01X012557Y066808D01* X013024Y066741D02* G01X012624D01* X012757Y065208D02* G01Y065541D01* X012891Y065208D02* G01Y065541D01* X012757Y064608D02* G01X013091Y064941D01* Y064608D02* G01X012757Y064941D01* X023253Y07505D02* G01Y074783D01* X023186Y075117D02* G01X023253Y07505D01* X02312Y075117D02* G01X023186D01* X023053Y07505D02* G01X02312Y075117D01* X023053Y07505D02* G01Y074783D01* X022986Y075117D02* G01X023053Y07505D01* X02292Y075117D02* G01X022986D01* X022853Y07505D02* G01X02292Y075117D01* X022853Y074783D02* G01Y075117D01* X02272Y07505D02* G01Y074783D01* X022653Y075117D02* G01X02272Y07505D01* X022586Y075117D02* G01X022653D01* X02252Y07505D02* G01X022586Y075117D01* X02252Y07505D02* G01Y074783D01* X022453Y075117D02* G01X02252Y07505D01* X022386Y075117D02* G01X022453D01* X02232Y07505D02* G01X022386Y075117D01* X02232Y074783D02* G01Y075117D01* X021786Y074783D02* G01X022186Y075317D01* X021853Y074783D02* G01X021786Y07485D01* X02212Y074783D02* G01X021853D01* X022186Y07485D02* G01X02212Y074783D01* X022186Y07525D02* G01Y07485D01* X02212Y075317D02* G01X022186Y07525D01* X021853Y075317D02* G01X02212D01* X021786Y07525D02* G01X021853Y075317D01* X021786Y07485D02* G01Y07525D01* X021253Y075317D02* G01X021653D01* X021253Y075117D02* G01Y075317D01* X021586Y075117D02* G01X021253D01* X021653Y07505D02* G01X021586Y075117D01* X021653Y07485D02* G01Y07505D01* X021586Y074783D02* G01X021653Y07485D01* X02132Y074783D02* G01X021586D01* X021253Y07485D02* G01X02132Y074783D01* X020986Y07485D02* G01X02092Y074783D01* Y074917D02* G01X020986Y07485D01* X020853D02* G01X02092Y074917D01* Y074783D02* G01X020853Y07485D01* X020386Y075317D02* G01X020253Y075183D01* X020386Y074783D02* G01Y075317D01* X020186Y074783D02* G01X020586D01* X018653Y075117D02* G01X018986D01* X018653Y074983D02* G01X018986D01* X018053Y075117D02* G01X018386Y074783D01* X018053D02* G01X018386Y075117D01* X023253Y074046D02* G01Y07378D01* X023186Y074113D02* G01X023253Y074046D01* X02312Y074113D02* G01X023186D01* X023053Y074046D02* G01X02312Y074113D01* X023053Y074046D02* G01Y07378D01* X022986Y074113D02* G01X023053Y074046D01* X02292Y074113D02* G01X022986D01* X022853Y074046D02* G01X02292Y074113D01* X022853Y07378D02* G01Y074113D01* X02272Y074046D02* G01Y07378D01* X022653Y074113D02* G01X02272Y074046D01* X022586Y074113D02* G01X022653D01* X02252Y074046D02* G01X022586Y074113D01* X02252Y074046D02* G01Y07378D01* X022453Y074113D02* G01X02252Y074046D01* X022386Y074113D02* G01X022453D01* X02232Y074046D02* G01X022386Y074113D01* X02232Y07378D02* G01Y074113D01* X021786Y07378D02* G01X022186Y074313D01* X021853Y07378D02* G01X021786Y073846D01* X02212Y07378D02* G01X021853D01* X022186Y073846D02* G01X02212Y07378D01* X022186Y074246D02* G01Y073846D01* X02212Y074313D02* G01X022186Y074246D01* X021853Y074313D02* G01X02212D01* X021786Y074246D02* G01X021853Y074313D01* X021786Y073846D02* G01Y074246D01* X021253Y07378D02* G01X021653Y074313D01* X02132Y07378D02* G01X021253Y073846D01* X021586Y07378D02* G01X02132D01* X021653Y073846D02* G01X021586Y07378D01* X021653Y074246D02* G01Y073846D01* X021586Y074313D02* G01X021653Y074246D01* X02132Y074313D02* G01X021586D01* X021253Y074246D02* G01X02132Y074313D01* X021253Y073846D02* G01Y074246D01* X020986Y073846D02* G01X02092Y07378D01* Y073913D02* G01X020986Y073846D01* X020853D02* G01X02092Y073913D01* Y07378D02* G01X020853Y073846D01* X020186Y07378D02* G01X020586Y074313D01* X020253Y07378D02* G01X020186Y073846D01* X02052Y07378D02* G01X020253D01* X020586Y073846D02* G01X02052Y07378D01* X020586Y074246D02* G01Y073846D01* X02052Y074313D02* G01X020586Y074246D01* X020253Y074313D02* G01X02052D01* X020186Y074246D02* G01X020253Y074313D01* X020186Y073846D02* G01Y074246D01* X01972Y074046D02* G01X019653Y07398D01* X019986Y074046D02* G01X01972D01* X020053Y07398D02* G01X019986Y074046D01* X020053Y073846D02* G01Y07398D01* X019986Y07378D02* G01X020053Y073846D01* X01972Y07378D02* G01X019986D01* X019653Y073846D02* G01X01972Y07378D01* X019653Y074246D02* G01Y073846D01* X01972Y074313D02* G01X019653Y074246D01* X019986Y074313D02* G01X01972D01* X020053Y074246D02* G01X019986Y074313D01* X01932D02* G01X019186Y07418D01* X01932Y07378D02* G01Y074313D01* X01912Y07378D02* G01X01952D01* X018653Y074113D02* G01X018986D01* X018653Y07398D02* G01X018986D01* X018053Y073846D02* G01Y074113D01* X01812Y07378D02* G01X018053Y073846D01* X01832Y07378D02* G01X01812D01* X018386Y073846D02* G01X01832Y07378D01* X018386Y073646D02* G01Y074113D01* X01832Y07358D02* G01X018386Y073646D01* X01812Y07358D02* G01X01832D01* X018053Y073646D02* G01X01812Y07358D01* X103863Y074086D02* G01Y073819D01* X103797Y074152D02* G01X103863Y074086D01* X10373Y074152D02* G01X103797D01* X103663Y074086D02* G01X10373Y074152D01* X103663Y074086D02* G01Y073819D01* X103597Y074152D02* G01X103663Y074086D01* X10353Y074152D02* G01X103597D01* X103463Y074086D02* G01X10353Y074152D01* X103463Y073819D02* G01Y074152D01* X10333Y074086D02* G01Y073819D01* X103263Y074152D02* G01X10333Y074086D01* X103197Y074152D02* G01X103263D01* X10313Y074086D02* G01X103197Y074152D01* X10313Y074086D02* G01Y073819D01* X103063Y074152D02* G01X10313Y074086D01* X102997Y074152D02* G01X103063D01* X10293Y074086D02* G01X102997Y074152D01* X10293Y073819D02* G01Y074152D01* X102397Y073819D02* G01X102797Y074352D01* X102463Y073819D02* G01X102397Y073886D01* X10273Y073819D02* G01X102463D01* X102797Y073886D02* G01X10273Y073819D01* X102797Y074286D02* G01Y073886D01* X10273Y074352D02* G01X102797Y074286D01* X102463Y074352D02* G01X10273D01* X102397Y074286D02* G01X102463Y074352D01* X102397Y073886D02* G01Y074286D01* X101863Y073819D02* G01X102263Y074352D01* X10193Y073819D02* G01X101863Y073886D01* X102197Y073819D02* G01X10193D01* X102263Y073886D02* G01X102197Y073819D01* X102263Y074286D02* G01Y073886D01* X102197Y074352D02* G01X102263Y074286D01* X10193Y074352D02* G01X102197D01* X101863Y074286D02* G01X10193Y074352D01* X101863Y073886D02* G01Y074286D01* X101597Y073886D02* G01X10153Y073819D01* Y073952D02* G01X101597Y073886D01* X101463D02* G01X10153Y073952D01* Y073819D02* G01X101463Y073886D01* X100797Y073819D02* G01X101197Y074352D01* X100863Y073819D02* G01X100797Y073886D01* X10113Y073819D02* G01X100863D01* X101197Y073886D02* G01X10113Y073819D01* X101197Y074286D02* G01Y073886D01* X10113Y074352D02* G01X101197Y074286D01* X100863Y074352D02* G01X10113D01* X100797Y074286D02* G01X100863Y074352D01* X100797Y073886D02* G01Y074286D01* X10033Y074086D02* G01X100263Y074019D01* X100597Y074086D02* G01X10033D01* X100663Y074019D02* G01X100597Y074086D01* X100663Y073886D02* G01Y074019D01* X100597Y073819D02* G01X100663Y073886D01* X10033Y073819D02* G01X100597D01* X100263Y073886D02* G01X10033Y073819D01* X100263Y074286D02* G01Y073886D01* X10033Y074352D02* G01X100263Y074286D01* X100597Y074352D02* G01X10033D01* X100663Y074286D02* G01X100597Y074352D01* X09993D02* G01X099797Y074219D01* X09993Y073819D02* G01Y074352D01* X09973Y073819D02* G01X10013D01* X099263Y074152D02* G01X099597D01* X099263Y074019D02* G01X099597D01* X098663Y073886D02* G01Y074152D01* X09873Y073819D02* G01X098663Y073886D01* X09893Y073819D02* G01X09873D01* X098997Y073886D02* G01X09893Y073819D01* X098997Y073686D02* G01Y074152D01* X09893Y073619D02* G01X098997Y073686D01* X09873Y073619D02* G01X09893D01* X098663Y073686D02* G01X09873Y073619D01* X103863Y07509D02* G01Y074823D01* X103797Y075156D02* G01X103863Y07509D01* X10373Y075156D02* G01X103797D01* X103663Y07509D02* G01X10373Y075156D01* X103663Y07509D02* G01Y074823D01* X103597Y075156D02* G01X103663Y07509D01* X10353Y075156D02* G01X103597D01* X103463Y07509D02* G01X10353Y075156D01* X103463Y074823D02* G01Y075156D01* X10333Y07509D02* G01Y074823D01* X103263Y075156D02* G01X10333Y07509D01* X103197Y075156D02* G01X103263D01* X10313Y07509D02* G01X103197Y075156D01* X10313Y07509D02* G01Y074823D01* X103063Y075156D02* G01X10313Y07509D01* X102997Y075156D02* G01X103063D01* X10293Y07509D02* G01X102997Y075156D01* X10293Y074823D02* G01Y075156D01* X102397Y075356D02* G01X102797D01* X102397Y075156D02* G01Y075356D01* X10273Y075156D02* G01X102397D01* X102797Y07509D02* G01X10273Y075156D01* X102797Y07489D02* G01Y07509D01* X10273Y074823D02* G01X102797Y07489D01* X102463Y074823D02* G01X10273D01* X102397Y07489D02* G01X102463Y074823D01* X102263Y075156D02* G01X102197Y07509D01* X102263Y07529D02* G01Y075156D01* X102197Y075356D02* G01X102263Y07529D01* X10193Y075356D02* G01X102197D01* X101863Y07529D02* G01X10193Y075356D01* X101863Y075156D02* G01Y07529D01* X10193Y07509D02* G01X101863Y075156D01* X102197Y07509D02* G01X10193D01* X102263Y075023D02* G01X102197Y07509D01* X102263Y07489D02* G01Y075023D01* X102197Y074823D02* G01X102263Y07489D01* X10193Y074823D02* G01X102197D01* X101863Y07489D02* G01X10193Y074823D01* X101863Y075023D02* G01Y07489D01* X10193Y07509D02* G01X101863Y075023D01* X101597Y07489D02* G01X10153Y074823D01* Y074956D02* G01X101597Y07489D01* X101463D02* G01X10153Y074956D01* Y074823D02* G01X101463Y07489D01* X100997Y075356D02* G01X100863Y075223D01* X100997Y074823D02* G01Y075356D01* X100797Y074823D02* G01X101197D01* X100397Y07509D02* G01X10053D01* X10033Y074823D02* G01X100263Y07489D01* X100597Y074823D02* G01X10033D01* X100663Y07489D02* G01X100597Y074823D01* X100663Y075023D02* G01Y07489D01* X10053Y07509D02* G01X100663Y075023D01* Y075156D02* G01X10053Y07509D01* X100663Y07529D02* G01Y075156D01* X100597Y075356D02* G01X100663Y07529D01* X10033Y075356D02* G01X100597D01* X100263Y07529D02* G01X10033Y075356D01* X09973Y074823D02* G01X10013D01* X09973Y07489D02* G01Y074823D01* X100063Y07509D02* G01X09973Y07489D01* X10013Y075156D02* G01X100063Y07509D01* X10013Y07529D02* G01Y075156D01* X100063Y075356D02* G01X10013Y07529D01* X099797Y075356D02* G01X100063D01* X09973Y07529D02* G01X099797Y075356D01* X099263Y075156D02* G01X099597D01* X099263Y075023D02* G01X099597D01* X098663Y075156D02* G01X098997Y074823D01* X098663D02* G01X098997Y075156D01* X10818Y064739D02* G01X107913D01* X108247Y064806D02* G01X10818Y064739D01* X108247Y064872D02* G01Y064806D01* X10818Y064939D02* G01X108247Y064872D01* X10818Y064939D02* G01X107913D01* X108247Y065006D02* G01X10818Y064939D01* X108247Y065072D02* G01Y065006D01* X10818Y065139D02* G01X108247Y065072D01* X107913Y065139D02* G01X108247D01* X10818Y065272D02* G01X107913D01* X108247Y065339D02* G01X10818Y065272D01* X108247Y065406D02* G01Y065339D01* X10818Y065472D02* G01X108247Y065406D01* X10818Y065472D02* G01X107913D01* X108247Y065539D02* G01X10818Y065472D01* X108247Y065606D02* G01Y065539D01* X10818Y065672D02* G01X108247Y065606D01* X107913Y065672D02* G01X108247D01* X107913Y066206D02* G01X108447Y065806D01* X107913Y066139D02* G01X10798Y066206D01* X107913Y065872D02* G01Y066139D01* X10798Y065806D02* G01X107913Y065872D01* X10838Y065806D02* G01X10798D01* X108447Y065872D02* G01X10838Y065806D01* X108447Y066139D02* G01Y065872D01* X10838Y066206D02* G01X108447Y066139D01* X10798Y066206D02* G01X10838D01* X108447Y066739D02* G01Y066339D01* X108247Y066739D02* G01X108447D01* X108247Y066406D02* G01Y066739D01* X10818Y066339D02* G01X108247Y066406D01* X10798Y066339D02* G01X10818D01* X107913Y066406D02* G01X10798Y066339D01* X107913Y066672D02* G01Y066406D01* X10798Y066739D02* G01X107913Y066672D01* X10798Y067006D02* G01X107913Y067072D01* X108047D02* G01X10798Y067006D01* Y067139D02* G01X108047Y067072D01* X107913D02* G01X10798Y067139D01* X108247Y067406D02* G01X10818Y067472D01* X10838Y067406D02* G01X108247D01* X108447Y067472D02* G01X10838Y067406D01* X108447Y067739D02* G01Y067472D01* X10838Y067806D02* G01X108447Y067739D01* X108247Y067806D02* G01X10838D01* X10818Y067739D02* G01X108247Y067806D01* X10818Y067472D02* G01Y067739D01* X108113Y067406D02* G01X10818Y067472D01* X10798Y067406D02* G01X108113D01* X107913Y067472D02* G01X10798Y067406D01* X107913Y067739D02* G01Y067472D01* X10798Y067806D02* G01X107913Y067739D01* X108113Y067806D02* G01X10798D01* X10818Y067739D02* G01X108113Y067806D01* X108447Y068339D02* G01Y067939D01* X108247Y068339D02* G01X108447D01* X108247Y068006D02* G01Y068339D01* X10818Y067939D02* G01X108247Y068006D01* X10798Y067939D02* G01X10818D01* X107913Y068006D02* G01X10798Y067939D01* X107913Y068272D02* G01Y068006D01* X10798Y068339D02* G01X107913Y068272D01* X108447Y068672D02* G01X108313Y068806D01* X107913Y068672D02* G01X108447D01* X107913Y068872D02* G01Y068472D01* X108247Y069339D02* G01Y069006D01* X108113Y069339D02* G01Y069006D01* X10798Y069939D02* G01X108247D01* X107913Y069872D02* G01X10798Y069939D01* X107913Y069672D02* G01Y069872D01* X10798Y069606D02* G01X107913Y069672D01* X10778Y069606D02* G01X108247D01* X107713Y069672D02* G01X10778Y069606D01* X107713Y069872D02* G01Y069672D01* X10778Y069939D02* G01X107713Y069872D01* X109184Y064759D02* G01X108917D01* X109251Y064825D02* G01X109184Y064759D01* X109251Y064892D02* G01Y064825D01* X109184Y064959D02* G01X109251Y064892D01* X109184Y064959D02* G01X108917D01* X109251Y065025D02* G01X109184Y064959D01* X109251Y065092D02* G01Y065025D01* X109184Y065159D02* G01X109251Y065092D01* X108917Y065159D02* G01X109251D01* X109184Y065292D02* G01X108917D01* X109251Y065359D02* G01X109184Y065292D01* X109251Y065425D02* G01Y065359D01* X109184Y065492D02* G01X109251Y065425D01* X109184Y065492D02* G01X108917D01* X109251Y065559D02* G01X109184Y065492D01* X109251Y065625D02* G01Y065559D01* X109184Y065692D02* G01X109251Y065625D01* X108917Y065692D02* G01X109251D01* X109451Y066225D02* G01Y065825D01* X109251Y066225D02* G01X109451D01* X109251Y065892D02* G01Y066225D01* X109184Y065825D02* G01X109251Y065892D01* X108984Y065825D02* G01X109184D01* X108917Y065892D02* G01X108984Y065825D01* X108917Y066159D02* G01Y065892D01* X108984Y066225D02* G01X108917Y066159D01* X109184Y066625D02* G01Y066492D01* X108917Y066692D02* G01X108984Y066759D01* X108917Y066425D02* G01Y066692D01* X108984Y066359D02* G01X108917Y066425D01* X109117Y066359D02* G01X108984D01* X109184Y066492D02* G01X109117Y066359D01* X109251D02* G01X109184Y066492D01* X109384Y066359D02* G01X109251D01* X109451Y066425D02* G01X109384Y066359D01* X109451Y066692D02* G01Y066425D01* X109384Y066759D02* G01X109451Y066692D01* X108984Y067025D02* G01X108917Y067092D01* X109051D02* G01X108984Y067025D01* Y067159D02* G01X109051Y067092D01* X108917D02* G01X108984Y067159D01* X109184Y067692D02* G01Y067559D01* X108917Y067759D02* G01X108984Y067825D01* X108917Y067492D02* G01Y067759D01* X108984Y067425D02* G01X108917Y067492D01* X109117Y067425D02* G01X108984D01* X109184Y067559D02* G01X109117Y067425D01* X109251D02* G01X109184Y067559D01* X109384Y067425D02* G01X109251D01* X109451Y067492D02* G01X109384Y067425D01* X109451Y067759D02* G01Y067492D01* X109384Y067825D02* G01X109451Y067759D01* X109184Y068225D02* G01Y068092D01* X108917Y068292D02* G01X108984Y068359D01* X108917Y068025D02* G01Y068292D01* X108984Y067959D02* G01X108917Y068025D01* X109117Y067959D02* G01X108984D01* X109184Y068092D02* G01X109117Y067959D01* X109251D02* G01X109184Y068092D01* X109384Y067959D02* G01X109251D01* X109451Y068025D02* G01X109384Y067959D01* X109451Y068292D02* G01Y068025D01* X109384Y068359D02* G01X109451Y068292D01* X108917Y068892D02* G01Y068492D01* X108984Y068892D02* G01X108917D01* X109184Y068559D02* G01X108984Y068892D01* X109251Y068492D02* G01X109184Y068559D01* X109384Y068492D02* G01X109251D01* X109451Y068559D02* G01X109384Y068492D01* X109451Y068825D02* G01Y068559D01* X109384Y068892D02* G01X109451Y068825D01* X109251Y069359D02* G01Y069025D01* X109117Y069359D02* G01Y069025D01* X109251Y069959D02* G01X108917Y069625D01* Y069959D02* G01X109251Y069625D01* X04396Y007659D02* G01X043827Y007526D01* X04396Y007126D02* G01Y007659D01* X04376Y007126D02* G01X04416D01* X043294Y007459D02* G01X043627D01* X043294Y007326D02* G01X043627D01* X04296Y007459D02* G01X043027Y007393D01* X04276Y007459D02* G01X04296D01* X042694Y007393D02* G01X04276Y007459D01* X042694Y007126D02* G01Y007459D01* X041894D02* G01X04196Y007393D01* X041694Y007459D02* G01X041894D01* X041627Y007393D02* G01X041694Y007459D01* Y007326D02* G01X041627Y007393D01* X041894Y007326D02* G01X041694D01* X04196Y007259D02* G01X041894Y007326D01* X04196Y007193D02* G01Y007259D01* X041894Y007126D02* G01X04196Y007193D01* X041694Y007126D02* G01X041894D01* X041627Y007193D02* G01X041694Y007126D01* X041427D02* G01Y007459D01* X041361Y007126D02* G01X041427Y007193D01* X041161Y007126D02* G01X041361D01* X041094Y007193D02* G01X041161Y007126D01* X041094Y007459D02* G01Y007193D01* X040761Y007526D02* G01X040694D01* X040761Y007593D02* G01Y007526D01* X040694Y007593D02* G01X040761D01* X040694Y007526D02* G01Y007593D01* X040761Y007459D02* G01X040694D01* X040761Y007126D02* G01Y007459D01* X040694Y007126D02* G01X040827D01* X040361D02* G01Y007659D01* X040094Y007126D02* G01X040361D01* X040027Y007193D02* G01X040094Y007126D01* X040027Y007393D02* G01Y007193D01* X040094Y007459D02* G01X040027Y007393D01* X040361Y007459D02* G01X040094D01* X039561Y007326D02* G01X039827D01* X039494Y007259D02* G01X039561Y007326D01* X039494Y007193D02* G01Y007259D01* X039561Y007126D02* G01X039494Y007193D01* X039827Y007126D02* G01X039561D01* X039827Y007393D02* G01Y007126D01* X039761Y007459D02* G01X039827Y007393D01* X039561Y007459D02* G01X039761D01* X039227D02* G01X039294Y007393D01* X039027Y007459D02* G01X039227D01* X038961Y007393D02* G01X039027Y007459D01* X038961Y007126D02* G01Y007459D01* X038161D02* G01X038227Y007393D01* X037961Y007459D02* G01X038161D01* X037894Y007393D02* G01X037961Y007459D01* X037894Y007126D02* G01Y007459D01* X037427Y007126D02* G01X037694D01* X037361Y007193D02* G01X037427Y007126D01* X037361Y007393D02* G01Y007193D01* X037427Y007459D02* G01X037361Y007393D01* X037627Y007459D02* G01X037427D01* X037694Y007393D02* G01X037627Y007459D01* X037694Y007326D02* G01Y007393D01* X037627Y007259D02* G01X037694Y007326D01* X037361Y007259D02* G01X037627D01* X037161Y007393D02* G01Y007126D01* X037094Y007459D02* G01X037161Y007393D01* X036894Y007459D02* G01X037094D01* X036827Y007393D02* G01X036894Y007459D01* X036827Y007126D02* G01Y007459D01* X036561D02* G01X036627Y007393D01* X036361Y007459D02* G01X036561D01* X036294Y007393D02* G01X036361Y007459D01* X036294Y007126D02* G01Y007459D01* X035827Y007126D02* G01X035761Y007193D01* X036027Y007126D02* G01X035827D01* X036094Y007193D02* G01X036027Y007126D01* X036094Y007393D02* G01Y007193D01* X036027Y007459D02* G01X036094Y007393D01* X035827Y007459D02* G01X036027D01* X035761Y007393D02* G01X035827Y007459D01* X035761Y007193D02* G01Y007393D01* X035494Y007459D02* G01X035561Y007393D01* X035294Y007459D02* G01X035494D01* X035227Y007393D02* G01X035294Y007459D01* X035227Y007193D02* G01Y007393D01* X035294Y007126D02* G01X035227Y007193D01* X035494Y007126D02* G01X035294D01* X035561Y007193D02* G01X035494Y007126D01* X034427D02* G01X034361Y006993D01* X034427Y007193D02* G01Y007126D01* X034361Y007259D02* G01X034427Y007193D01* X034294D02* G01X034361Y007259D01* Y007126D02* G01X034294Y007193D01* X034427D02* G01X034361Y007126D01* X033894Y007459D02* G01X033761Y007659D01* X033894Y007326D02* G01Y007459D01* X033761Y007126D02* G01X033894Y007326D01* X033494Y007393D02* G01Y007126D01* X033427Y007459D02* G01X033494Y007393D01* X033361Y007459D02* G01X033427D01* X033294Y007393D02* G01X033361Y007459D01* X033294Y007393D02* G01Y007126D01* X033227Y007459D02* G01X033294Y007393D01* X033161Y007459D02* G01X033227D01* X033094Y007393D02* G01X033161Y007459D01* X033094Y007126D02* G01Y007459D01* X032961Y007393D02* G01Y007126D01* X032894Y007459D02* G01X032961Y007393D01* X032827Y007459D02* G01X032894D01* X032761Y007393D02* G01X032827Y007459D01* X032761Y007393D02* G01Y007126D01* X032694Y007459D02* G01X032761Y007393D01* X032627Y007459D02* G01X032694D01* X032561Y007393D02* G01X032627Y007459D01* X032561Y007126D02* G01Y007459D01* X032161D02* G01X032294Y007659D01* X032161Y007326D02* G01Y007459D01* X032294Y007126D02* G01X032161Y007326D01* X031227Y007459D02* G01X031294Y007393D01* X031027Y007459D02* G01X031227D01* X030961Y007393D02* G01X031027Y007459D01* X030961Y007193D02* G01Y007393D01* X031027Y007126D02* G01X030961Y007193D01* X031227Y007126D02* G01X031027D01* X031294Y007193D02* G01X031227Y007126D01* X030627Y007526D02* G01X030561D01* X030627Y007593D02* G01Y007526D01* X030561Y007593D02* G01X030627D01* X030561Y007526D02* G01Y007593D01* X030627Y007459D02* G01X030561D01* X030627Y007126D02* G01Y007459D01* X030561Y007126D02* G01X030694D01* X030161Y007459D02* G01X030227Y007393D01* X029961Y007459D02* G01X030161D01* X029894Y007393D02* G01X029961Y007459D01* X029894Y007126D02* G01Y007459D01* X029361D02* G01X029627D01* X029494Y007193D02* G01Y007659D01* X029561Y007126D02* G01X029494Y007193D01* X029627Y007126D02* G01X029561D01* X029694Y007193D02* G01X029627Y007126D01* X028894D02* G01X029161D01* X028827Y007193D02* G01X028894Y007126D01* X028827Y007393D02* G01Y007193D01* X028894Y007459D02* G01X028827Y007393D01* X029094Y007459D02* G01X028894D01* X029161Y007393D02* G01X029094Y007459D01* X029161Y007326D02* G01Y007393D01* X029094Y007259D02* G01X029161Y007326D01* X028827Y007259D02* G01X029094D01* X028694Y007393D02* G01Y007126D01* X028627Y007459D02* G01X028694Y007393D01* X028561Y007459D02* G01X028627D01* X028494Y007393D02* G01X028561Y007459D01* X028494Y007393D02* G01Y007126D01* X028427Y007459D02* G01X028494Y007393D01* X028361Y007459D02* G01X028427D01* X028294Y007393D02* G01X028361Y007459D01* X028294Y007126D02* G01Y007459D01* X027494D02* G01X027561Y007393D01* X027294Y007459D02* G01X027494D01* X027227Y007393D02* G01X027294Y007459D01* Y007326D02* G01X027227Y007393D01* X027494Y007326D02* G01X027294D01* X027561Y007259D02* G01X027494Y007326D01* X027561Y007193D02* G01Y007259D01* X027494Y007126D02* G01X027561Y007193D01* X027294Y007126D02* G01X027494D01* X027227Y007193D02* G01X027294Y007126D01* X026761D02* G01X027027D01* X026694Y007193D02* G01X026761Y007126D01* X026694Y007393D02* G01Y007193D01* X026761Y007459D02* G01X026694Y007393D01* X026961Y007459D02* G01X026761D01* X027027Y007393D02* G01X026961Y007459D01* X027027Y007326D02* G01Y007393D01* X026961Y007259D02* G01X027027Y007326D01* X026694Y007259D02* G01X026961D01* X026227Y007126D02* G01X026494D01* X026161Y007193D02* G01X026227Y007126D01* X026161Y007393D02* G01Y007193D01* X026227Y007459D02* G01X026161Y007393D01* X026427Y007459D02* G01X026227D01* X026494Y007393D02* G01X026427Y007459D01* X026494Y006993D02* G01Y007393D01* X026427Y006926D02* G01X026494Y006993D01* X026227Y006926D02* G01X026427D01* X026161Y006993D02* G01X026227Y006926D01* X025961Y007126D02* G01Y007459D01* X025894Y007126D02* G01X025961Y007193D01* X025694Y007126D02* G01X025894D01* X025627Y007193D02* G01X025694Y007126D01* X025627Y007459D02* G01Y007193D01* X025161Y007326D02* G01X025427D01* X025094Y007259D02* G01X025161Y007326D01* X025094Y007193D02* G01Y007259D01* X025161Y007126D02* G01X025094Y007193D01* X025427Y007126D02* G01X025161D01* X025427Y007393D02* G01Y007126D01* X025361Y007459D02* G01X025427Y007393D01* X025161Y007459D02* G01X025361D01* X024627Y007126D02* G01X024894D01* X024561Y007193D02* G01X024627Y007126D01* X024561Y007393D02* G01Y007193D01* X024627Y007459D02* G01X024561Y007393D01* X024827Y007459D02* G01X024627D01* X024894Y007393D02* G01X024827Y007459D01* X024894Y006993D02* G01Y007393D01* X024827Y006926D02* G01X024894Y006993D01* X024627Y006926D02* G01X024827D01* X024561Y006993D02* G01X024627Y006926D01* X023694Y007659D02* G01X023627D01* X023694Y007126D02* G01Y007659D01* X023627Y007126D02* G01X023761D01* X023161Y007659D02* G01X023094D01* X023161Y007126D02* G01Y007659D01* X023094Y007126D02* G01X023227D01* X022494Y007326D02* G01X022761D01* X022427Y007259D02* G01X022494Y007326D01* X022427Y007193D02* G01Y007259D01* X022494Y007126D02* G01X022427Y007193D01* X022761Y007126D02* G01X022494D01* X022761Y007393D02* G01Y007126D01* X022694Y007459D02* G01X022761Y007393D01* X022494Y007459D02* G01X022694D01* X021627Y007126D02* G01X021561Y006993D01* X021627Y007193D02* G01Y007126D01* X021561Y007259D02* G01X021627Y007193D01* X021494D02* G01X021561Y007259D01* Y007126D02* G01X021494Y007193D01* X021627D02* G01X021561Y007126D01* X020827D02* G01X021227Y007659D01* X020894Y007126D02* G01X020827Y007193D01* X021161Y007126D02* G01X020894D01* X021227Y007193D02* G01X021161Y007126D01* X021227Y007593D02* G01Y007193D01* X021161Y007659D02* G01X021227Y007593D01* X020894Y007659D02* G01X021161D01* X020827Y007593D02* G01X020894Y007659D01* X020827Y007193D02* G01Y007593D01* X020294Y007126D02* G01X020694Y007659D01* X020361Y007126D02* G01X020294Y007193D01* X020627Y007126D02* G01X020361D01* X020694Y007193D02* G01X020627Y007126D01* X020694Y007593D02* G01Y007193D01* X020627Y007659D02* G01X020694Y007593D01* X020361Y007659D02* G01X020627D01* X020294Y007593D02* G01X020361Y007659D01* X020294Y007193D02* G01Y007593D01* X020027Y007193D02* G01X019961Y007126D01* Y007259D02* G01X020027Y007193D01* X019894D02* G01X019961Y007259D01* Y007126D02* G01X019894Y007193D01* X019427Y007659D02* G01X019294Y007526D01* X019427Y007126D02* G01Y007659D01* X019227Y007126D02* G01X019627D01* X018227Y007459D02* G01X018561D01* X018227Y007326D02* G01X018561D01* X017161Y007126D02* G01X017427D01* X017094Y007193D02* G01X017161Y007126D01* X017094Y007393D02* G01Y007193D01* X017161Y007459D02* G01X017094Y007393D01* X017361Y007459D02* G01X017161D01* X017427Y007393D02* G01X017361Y007459D01* X017427Y007326D02* G01Y007393D01* X017361Y007259D02* G01X017427Y007326D01* X017094Y007259D02* G01X017361D01* X016761Y007659D02* G01X016694D01* X016761Y007126D02* G01Y007659D01* X016694Y007126D02* G01X016827D01* X016094Y007326D02* G01X016361D01* X016027Y007259D02* G01X016094Y007326D01* X016027Y007193D02* G01Y007259D01* X016094Y007126D02* G01X016027Y007193D01* X016361Y007126D02* G01X016094D01* X016361Y007393D02* G01Y007126D01* X016294Y007459D02* G01X016361Y007393D01* X016094Y007459D02* G01X016294D01* X015761D02* G01X015827Y007393D01* X015561Y007459D02* G01X015761D01* X015494Y007393D02* G01X015561Y007459D01* X015494Y007193D02* G01Y007393D01* X015561Y007126D02* G01X015494Y007193D01* X015761Y007126D02* G01X015561D01* X015827Y007193D02* G01X015761Y007126D01* X015227Y007459D02* G01X015294Y007393D01* X015027Y007459D02* G01X015227D01* X014961Y007393D02* G01X015027Y007459D01* Y007326D02* G01X014961Y007393D01* X015227Y007326D02* G01X015027D01* X015294Y007259D02* G01X015227Y007326D01* X015294Y007193D02* G01Y007259D01* X015227Y007126D02* G01X015294Y007193D01* X015027Y007126D02* G01X015227D01* X014961Y007193D02* G01X015027Y007126D01* M02* gerbv-2.7.0/example/exposure/0000755000175000017500000000000013423533412016012 5ustar carstencarstengerbv-2.7.0/example/exposure/README.txt0000644000175000017500000000064513421555714017524 0ustar carstencarstenJeremy T Braun sent me a couple of aperture macros that he thought didn't work in gerbv. He was correct. These examples shows that aperture macro primitive 1 is a _filled_ circle (not that all clear from the specication) and that exposure in aperture macros is sort of the equivalent to layers in gerber files. The jpg file is derived from ViewMate and converted from bitmap to jpg with good old trustworthy xv. $Id$ gerbv-2.7.0/example/exposure/Makefile.am0000644000175000017500000000012113421555714020047 0ustar carstencarsten## $Id$ ## EXTRA_DIST=README.txt example.grb example.jpg MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/exposure/example.jpg0000644000175000017500000003251213421555714020161 0ustar carstencarstenJFIFXCREATOR: XV Version 3.10a Rev: 12/29/94 (PNG patch 1.2) Quality = 75, Smoothing = 0 C    $.' ",#(7),01444'9=82<.342  }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((X^jwZOwu&vCfGlNrp?z&#ſ5g 3P1R8`gMtخO]K[edrY11s=>"᥸ B90x\rxOR_?^ۏ9G)//??jMKiԢVIis>. e.I8s߈xd,ڧMՠ؝\E?8^3}QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEjhS.wvP!BY#R+#;i{n|Wy7?v×ۂ Wh9,4,Wd)71̀2$ZQEQEr~(mOϪQ*1+Ðcx`12m燥ױ\1qFW QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE\tKYk}/OPGk JrHPN2@ϸ@>xX涴I !Q5rh9ڼgsA}C=%a1=YXrkB(((_ &xoxY\i(et 1 bvEQEQEQEQEQEQEQEQEQEQEQEQEQEQEsJo=RS.d}JT" A ?KO \i3ˮ6r a 0ǀǟ^dV2Zm2n26H`?rIǝZ-Ʃ]Nd`''$:(D}͇wH΍$WnŸ9 *O>ya>m=@KpLG C1|L}P" -[w&ОII ۢԖ袊((((((P3pid΍u'6' >l袊((((xNƾop;C"qTk sF{_˫IZ' 6:2Tq }QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEhhz5u-"7]ʱ&A!s՛d&𯇭)};CmDX⻁.lTm~Gk*BE}EQEQEQEQEQQ7VEJ$E `+Oxoj̎_9l|YsW?EQEQEQEQEQ^5ƣ/E=X+a!(vϿ9,4,Wd)71̀2$ZQEcºŮA{$sgg j>u=OLTo7/9ܣ@qz(((((*H +{xy\$qƥ؜x}7|>Xi0!q4:HBIא6jU\iזXA  T袊(((+>|?Mm$I_~_ao"94>^fj'aBFp^EQEQEQEQE𷃴V0ḽ)`[,{u:VQEQEQEQEQEFkusc;m/%ïo(((((?쯳0K+=$OEEQEW~e}2^ƿ"|s袊((((+>x]|C6J})`Fӻs呂3Xt1kVE˓'U'# F_hzƙImyn%D5N(((+>|?Mm$I_~_}y_ǯ 3yLB0k FzM|EQEQEQEQEwto,Lm7<#y@88RE}EQEQEQEQEQEFѿkpI䑭XeHxrȣ9(((((cwk:vsSTddH袊(*9[{ PȡԌA8|gqHMye6ѣG%[IɒI(((((g?j.yܒ>s~+veIXz_j #Aeo%ċ dQ_ _\jzeԯ4ϴ Ė8 zUz((((g]}_h]hb,;RsaCuo-QRHPF AbմٴmfKh{+-h*Y# dz EQEQEQEQ^5ou[٭ݻ9N1wv?GEQEQEQEQEQEbxS|;7ryvwc'qYQEQEQEQEW<06MЈKxv|?(<'QEQEQ^o WwQ_i_pAfXFJ/\`EQEQEQEQEW~fѼ+iw Oee %K"$dAZtx袊(((+ٯL=jv~vV߻&9qx ((((((0d|P 7;ǜq~3qQEQEQEQExO6kMB60C0x袊((n巸9 I]H#W5ĶI 9I#J08 񊎊((((дO+o7n.dg2++O[R]g@dv m+#*9q׷EQEQEQEJZFp4WHX8bH])y^!o;?i{o+ov86^I?((((@%%{B'((+C/nkW?EQEQEQEQEt կ诘?h(zѲ׏EQEQEQEWWk((((+پx[56w0ܪFU=JJ((((((<<7?X@!d`2ŠÎv 袊(((+Wd|Pϓwmǜ [~q}EQEQEWOV|]snݳ{ۜ 8gEQEQEQEQ[ _xzX-NF U$xs_q_4~67Ihk6#??c^/EQEQEQEU OQ̺!7؀'GZފպ0r:J^EQEQEQEQ^3O xݥNlaLHp袊(((((sƓu[KܼrFGk((((X_\i]լ4/8<:zNX"{ok SW(((ox_zαHnVEV)+2|IEQEQEQEQEWmg'kuM #r0N# b?<hz]yvsTd;2!f8˔QEQEQEQEQW4VC-=2KkwO A /ǚ>Ux[GlN;@((, o ۸Y˜&, |c>Dy%I$Y$I'tQEQEQEQEQE{ↃT(oxR`5!h*!_nB5eQEQEQEQEW|Nׁg.|qa ǖ<訣QEQEQEQEQEG>"?cBpA-R@qQEQEQEQEQElxcuu}"*>[TqN G~EZ"SY<#=QE>/i~tdvbܐpS(30jSUoRSd}X p` EQEQEQEQEQZtf0JQ$17*x<m)I6r.\6$1+/A%n=<1r;tPp:QEQEQEQW4VC-=2KkwO ALQvպuht#% I yGⅾfkd+lq((((>jRѯx\'!_dz. ặXTeu# 8 sRQEQEQEQEQEO> u\F#$nip q¾4(((((yn"Hg$lU A׬xSn-ux6IN \`Xnoǟ[z{*"vb0>asz> 6)Z0I:/cFAS@#G}Z}SxJx\r@={:O[:v%ޭ;#H`hX;HIꡱL':x{ı8-$&fp 漾((((((Kgw*1$9fl'ɬ((((*敪hz\myn:DAA5ƧI]]JL@Ic'W((((+?WRDŽ9[$AgE)A~00׶QEQEQEQEQEG)u."8,Ad HlaxAܞ(((((((((((((((((((((((a}qj6rywVоvTp@_c7տS:%MvQEQEQEQEW~$}Y|3'L06RH$kQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEv.υCm=)Ct2_[w,@\ַE$3$E* *:(<1>.&sk/"e16; pp+Uү=RL}T"pAdEQEQEQEQEQEQE!enRT=Qu8 _Z_41`|V{w=7|v QEQEQEQE~0e}>1F|s (((((((((((((((_/K+>}$?E.G^vF_ GD3D 0ʐx녖jZz b W9qyyfhZV\\K쫞a }G SwSmlX5uYw$nN0X1G׎h 돴iYne9RB'9\t&|3 vպkvGu% IC|Wqjv[^[b~`8 2 S((((((m>qpsQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEu-ck[> h<Uс2N}\C%`oUFT+B((xki n 7v8h2tu! 6)Z0I:/cFAS@#tV^]F[}S[lgd]$LW$d _^'cD ܅WQ` 5z)-n/njxľ.ƹwx+8l@wFgsQEQEQEQEQEQEQEQV,o4,.紺;&CA 9ƽCS ͬ|* <rry=}ڌzLY&Vb>`b@#GqotfoMPGkt\3+R(OR*g> Yg q+EGvd>gy..ʌ8Qu=pvc*ŎwIkhlKCVP0.:9nEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEU7VԴk  44LW { 51׮o*(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((gerbv-2.7.0/example/exposure/example.grb0000644000175000017500000000053513421555714020153 0ustar carstencarsten%FSLAX24Y24*% %MOIN*% %AMAND15* 1,1,0.05,0,0* 1,0,0.00,0,0* *% %AMTHD15X* 1,1,0.0909,0,0* 1,0,0.0709,0,0* 21,0,0.0929,0.0236,0,0,45* 21,0,0.0929,0.0236,0,0,135* *% %ADD14C,0.1X*% %ADD15AND15*% %ADD16THD15X*% G01X00000Y00000* G04 Ordinary circle* G54D14* X00010D03* G04 Filled circle* G54D15* X01500D03* G04 Thermals (donut)* G54D16* X03000D03* M02* gerbv-2.7.0/example/exposure/Makefile.in0000644000175000017500000003610113423533412020060 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/exposure ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt example.grb example.jpg MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/exposure/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/exposure/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/dan/0000755000175000017500000000000013423533412014702 5ustar carstencarstengerbv-2.7.0/example/dan/README.txt0000644000175000017500000000034313421555713016406 0ustar carstencarsten# $Id$ This file is from Dan McMahill. This file uses rectangular apertures to draw lines which is now supported since release 0.0.9. top_sr.gbx is the same thing but with a "SR" (step and repeat) line added near the top. gerbv-2.7.0/example/dan/Makefile.am0000644000175000017500000000167513421555713016755 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=README.txt top.gbx top_sr.gbx MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/dan/top.gbx0000644000175000017500000002566713421555713016234 0ustar carstencarstenG04 Title: (unknown), layergroup #2 * G04 Creator: pcb 1.6.3 * G04 CreationDate: Sat Jun 1 04:16:29 2002 UTC * G04 For: dan * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 3359 2107 * G04 PCB-Coordinate-Origin: lower left * G04 Color: R0 G0 B0 * * %FSLAX23Y23*% %MOIN*% %ADD11C,0.035*% %ADD12C,0.010*% %ADD13C,0.025*% %ADD14R,0.040X0.040*% %ADD15R,0.070X0.070*% %ADD16C,0.008*% %ADD17R,0.060X0.060*% %ADD18R,0.090X0.090*% %AMTHERM1*7,0,0,0.090,0.060,0.015,45*% %ADD19THERM1*% %ADD20C,0.060*% %ADD21C,0.090*% %ADD22C,0.090X0.060*% %ADD23C,0.100*% %ADD24C,0.130*% %ADD25C,0.130X0.100*% %AMTHERM2*7,0,0,0.130,0.100,0.015,45*% %ADD26THERM2*% %ADD27R,0.150X0.150*% %ADD28R,0.180X0.180*% %ADD29R,0.095X0.095*% %ADD30R,0.125X0.125*% %ADD31C,0.030*% %ADD32C,0.026*% %ADD33C,0.056*% %ADD34R,0.026X0.026*% %ADD35R,0.056X0.056*% %AMTHERM3*7,0,0,0.090,0.060,0.015,45*% %ADD36THERM3*% %IPPOS*% G01* %LNcomponent*% %LPD*% G04 LayerGroup: 2 * G04 Layer: "component" (4) * G54D11*Y1132D02*Y1207D01* G54D12*X1470Y1377D02*X1450Y1397D01* X1470Y1337D02*Y1377D01* X1490Y1317D02*X1470Y1337D01* X1505Y1317D02*X1490D01* X1610D02*X1505D01* X1615Y1312D02*X1610Y1317D01* X1620Y1307D02*X1615Y1312D01* X2130Y1307D02*X1620D01* X1360Y1402D02*X1355Y1407D01* X1445Y1402D02*X1360D01* X1450Y1397D02*X1445Y1402D01* G54D13*X1150Y1307D02*X1225D01* X1375Y1832D02*X1350Y1857D01* X1225Y1382D02*Y1532D01* X1375D02*Y1832D01* X1150Y1457D02*Y1532D01* X1350Y1482D02*X1300Y1532D01* X1350Y1407D02*Y1482D01* X475Y957D02*Y882D01* X1645Y1207D02*X1700D01* X1850Y1957D02*Y1882D01* X1825Y1982D02*X1850Y1957D01* X1675Y1982D02*X1825D01* X1625Y1932D02*X1675Y1982D01* X1600Y1907D02*X1625Y1932D01* X1400Y1907D02*X1600D01* X1350Y1857D02*X1400Y1907D01* X1000Y1857D02*X1350D01* X875Y1732D02*X1000Y1857D01* X825Y1732D02*X875D01* X800Y1707D02*X825Y1732D01* X800Y1607D02*Y1707D01* X700Y1507D02*X800Y1607D01* X700Y1457D02*Y1507D01* X475Y1232D02*X700Y1457D01* X475Y1182D02*Y1232D01* X1225Y1532D02*Y1682D01* Y1532D02*X1300D01* X2025Y1382D02*Y1557D01* X2000Y1357D02*X2025Y1382D01* X1150D02*Y1457D01* X2025Y1732D02*Y1557D01* X2000Y1757D02*X2025Y1732D01* X1875Y1757D02*X2000D01* X1850Y1782D02*X1875Y1757D01* X1850Y1882D02*Y1782D01* X2255Y527D02*X2250Y532D01* X2255Y437D02*Y527D01* X2165Y522D02*X2170Y527D01* X2165Y437D02*Y522D01* X2085Y532D02*X2180D01* X2000Y842D02*Y907D01* X2345Y532D02*X2255D01* X2075Y882D02*Y957D01* X2100D02*X2175D01* X2500Y1057D02*X2550D01* X2500Y1132D02*X2550D01* X1775Y1507D02*Y1432D01* X1675Y1507D02*X1775D01* X1675Y1607D02*X1775D01* Y1882D02*X1700D01* X1475Y1657D02*Y1557D01* X1575Y1657D02*X1475D01* Y1732D02*X1575D01* X1475Y1832D02*Y1732D01* X1150Y1282D02*Y1307D01* X1650Y1132D02*X1700D01* X1250Y1032D02*X1350D01* X850Y1482D02*X950D01* X1025Y1582D02*Y1482D01* X950Y1582D02*Y1482D01* X1250Y1032D02*X1175D01* X1250D02*Y982D01* G54D12*X2230Y802D02*X2225Y797D01* X2230Y977D02*Y802D01* X2215Y992D02*X2230Y977D01* X2215Y1007D02*Y992D01* Y1007D02*X2105D01* X2215Y1242D02*Y1007D01* X2200Y1257D02*X2215Y1242D01* X2200Y1307D02*Y1257D01* G54D13*X375Y732D02*X250D01* X1320Y1157D02*Y1257D01* X1300Y1137D02*X1320Y1157D01* X1250Y1137D02*X1300D01* G54D12*X1340Y1087D02*X1250D01* X1360Y1107D02*X1340Y1087D01* X1360Y1297D02*Y1107D01* X1350Y1307D02*X1360Y1297D01* X1350Y1337D02*Y1307D01* G54D13*X2650Y982D02*Y1057D01* X2500Y832D02*Y982D01* X2450Y1557D02*X2025D01* X2500Y1507D02*X2450Y1557D01* X2500Y1207D02*Y1507D01* X2750Y832D02*Y982D01* X2650D02*X3000D01* X2575D02*X2500D01* X2325Y1007D02*X2275D01* X2025D02*X2000Y982D01* X2100Y1007D02*X2025D01* X2375D02*X2325D01* X2400Y982D02*X2375Y1007D01* X2425Y982D02*X2400D01* X2425Y1132D02*Y1207D01* Y1057D02*Y1132D01* X2325Y1057D02*X2425D01* X2000Y1132D02*Y1057D01* X2050Y1182D02*X2000Y1132D01* X2175Y1182D02*X2050D01* X2250Y1032D02*Y1182D01* X2275Y1007D02*X2250Y1032D01* X1650Y1057D02*X1925D01* X2000D02*X2100D01* X1825Y907D02*Y1057D01* X1575Y1132D02*Y1207D01* X1475Y1132D02*X1575D01* Y1057D02*Y907D01* X1500Y1082D02*X1475D01* X1525Y1057D02*X1500Y1082D01* X1575Y1057D02*X1525D01* X1575Y1207D02*Y1282D01* X1175Y1132D02*X1150Y1157D01* X1250Y1132D02*X1175D01* X1575Y1357D02*X2000D01* X1150Y1232D02*Y1282D01* Y1232D02*X1000D01* D02*X975Y1257D01* X1125Y1082D02*X1250D01* X1100Y1057D02*X1125Y1082D01* X1100Y982D02*Y1057D01* X1075Y957D02*X1100Y982D01* X900Y957D02*X1075D01* X800Y1107D02*X725D01* X825Y1082D02*X800Y1107D01* X875Y1082D02*X825D01* X900Y1057D02*X875Y1082D01* X900Y932D02*Y1057D01* X1400Y1107D02*Y1257D01* X1425Y1082D02*X1400Y1107D01* X1475Y1082D02*X1425D01* X250Y807D02*Y1032D01* X575Y932D02*X650D01* X550Y957D02*X575Y932D01* X550Y1007D02*Y957D01* X525Y1032D02*X550Y1007D01* X475Y1032D02*X525D01* X475D02*Y1107D01* X250Y1032D02*X475D01* X650Y932D02*Y1107D01* G04 Text: TERM * G54D16*X350Y607D02*X370D01* X360D02*Y567D01* X383Y587D02*X398D01* X383Y567D02*X403D01* X383Y607D02*Y567D01* Y607D02*X403D01* X416D02*X436D01* D02*X441Y602D01* D02*Y592D01* X436Y587D02*X441Y592D01* X421Y587D02*X436D01* X421Y607D02*Y567D01* Y587D02*X441Y567D01* X454Y607D02*Y567D01* Y607D02*X469Y592D01* D02*X484Y607D01* D02*Y567D01* G04 Text: OUT * X2900Y1252D02*Y1222D01* Y1252D02*X2905Y1257D01* D02*X2915D01* D02*X2920Y1252D01* D02*Y1222D01* X2915Y1217D02*X2920Y1222D01* X2905Y1217D02*X2915D01* X2900Y1222D02*X2905Y1217D01* X2933Y1257D02*Y1222D01* D02*X2938Y1217D01* D02*X2948D01* D02*X2953Y1222D01* Y1257D02*Y1222D01* X2966Y1257D02*X2986D01* X2976D02*Y1217D01* G04 Text: IN * X200Y1307D02*X210D01* X205D02*Y1267D01* X200D02*X210D01* X223Y1307D02*Y1267D01* Y1307D02*Y1302D01* D02*X248Y1277D01* Y1307D02*Y1267D01* G04 Text: +9V * X2000Y1837D02*X2020D01* X2010Y1847D02*Y1827D01* X2033Y1817D02*X2053Y1837D01* Y1852D02*Y1837D01* X2048Y1857D02*X2053Y1852D01* X2038Y1857D02*X2048D01* X2033Y1852D02*X2038Y1857D01* X2033Y1852D02*Y1842D01* D02*X2038Y1837D01* D02*X2053D01* X2066Y1857D02*Y1827D01* D02*X2076Y1817D01* D02*X2086Y1827D01* Y1857D02*Y1827D01* G04 Text: 2002-05-31 * X100Y1852D02*X105Y1857D01* D02*X120D01* D02*X125Y1852D01* D02*Y1842D01* X100Y1817D02*X125Y1842D01* X100Y1817D02*X125D01* X138Y1822D02*X143Y1817D01* X138Y1852D02*Y1822D01* Y1852D02*X143Y1857D01* D02*X153D01* D02*X158Y1852D01* D02*Y1822D01* X153Y1817D02*X158Y1822D01* X143Y1817D02*X153D01* X138Y1827D02*X158Y1847D01* X171Y1822D02*X176Y1817D01* X171Y1852D02*Y1822D01* Y1852D02*X176Y1857D01* D02*X186D01* D02*X191Y1852D01* D02*Y1822D01* X186Y1817D02*X191Y1822D01* X176Y1817D02*X186D01* X171Y1827D02*X191Y1847D01* X204Y1852D02*X209Y1857D01* D02*X224D01* D02*X229Y1852D01* D02*Y1842D01* X204Y1817D02*X229Y1842D01* X204Y1817D02*X229D01* X242Y1837D02*X262D01* X275Y1822D02*X280Y1817D01* X275Y1852D02*Y1822D01* Y1852D02*X280Y1857D01* D02*X290D01* D02*X295Y1852D01* D02*Y1822D01* X290Y1817D02*X295Y1822D01* X280Y1817D02*X290D01* X275Y1827D02*X295Y1847D01* X308Y1857D02*X328D01* X308D02*Y1837D01* D02*X313Y1842D01* D02*X323D01* D02*X328Y1837D01* D02*Y1822D01* X323Y1817D02*X328Y1822D01* X313Y1817D02*X323D01* X308Y1822D02*X313Y1817D01* X341Y1837D02*X361D01* X374Y1852D02*X379Y1857D01* D02*X389D01* D02*X394Y1852D01* D02*Y1822D01* X389Y1817D02*X394Y1822D01* X379Y1817D02*X389D01* X374Y1822D02*X379Y1817D01* Y1837D02*X394D01* X412Y1817D02*X422D01* X417Y1857D02*Y1817D01* X407Y1847D02*X417Y1857D01* G04 Text: DRM011 REV 001 * X105Y1957D02*Y1917D01* X120Y1957D02*X125Y1952D01* D02*Y1922D01* X120Y1917D02*X125Y1922D01* X100Y1917D02*X120D01* X100Y1957D02*X120D01* X138D02*X158D01* D02*X163Y1952D01* D02*Y1942D01* X158Y1937D02*X163Y1942D01* X143Y1937D02*X158D01* X143Y1957D02*Y1917D01* Y1937D02*X163Y1917D01* X176Y1957D02*Y1917D01* Y1957D02*X191Y1942D01* D02*X206Y1957D01* D02*Y1917D01* X219Y1922D02*X224Y1917D01* X219Y1952D02*Y1922D01* Y1952D02*X224Y1957D01* D02*X234D01* D02*X239Y1952D01* D02*Y1922D01* X234Y1917D02*X239Y1922D01* X224Y1917D02*X234D01* X219Y1927D02*X239Y1947D01* X257Y1917D02*X267D01* X262Y1957D02*Y1917D01* X252Y1947D02*X262Y1957D01* X285Y1917D02*X295D01* X290Y1957D02*Y1917D01* X280Y1947D02*X290Y1957D01* X326D02*X346D01* D02*X351Y1952D01* D02*Y1942D01* X346Y1937D02*X351Y1942D01* X331Y1937D02*X346D01* X331Y1957D02*Y1917D01* Y1937D02*X351Y1917D01* X364Y1937D02*X379D01* X364Y1917D02*X384D01* X364Y1957D02*Y1917D01* Y1957D02*X384D01* X397D02*Y1927D01* D02*X407Y1917D01* D02*X417Y1927D01* Y1957D02*Y1927D01* X448Y1922D02*X453Y1917D01* X448Y1952D02*Y1922D01* Y1952D02*X453Y1957D01* D02*X463D01* D02*X468Y1952D01* D02*Y1922D01* X463Y1917D02*X468Y1922D01* X453Y1917D02*X463D01* X448Y1927D02*X468Y1947D01* X481Y1922D02*X486Y1917D01* X481Y1952D02*Y1922D01* Y1952D02*X486Y1957D01* D02*X496D01* D02*X501Y1952D01* D02*Y1922D01* X496Y1917D02*X501Y1922D01* X486Y1917D02*X496D01* X481Y1927D02*X501Y1947D01* X519Y1917D02*X529D01* X524Y1957D02*Y1917D01* X514Y1947D02*X524Y1957D01* G54D14*X250Y732D03* Y802D03* X1775Y1882D03* X1845D03* G54D27*X1825Y882D02*Y902D01* G54D29*X1574Y854D02*Y930D01* G54D27*X900Y932D02*Y952D01* G54D29*X649Y904D02*Y980D01* G54D27*X2025Y1557D02*Y1577D01* G54D29*X1774Y1529D02*Y1605D01* G54D14*X650Y1107D03* X720D03* X2575Y982D03* X2645D03* G54D27*X2500Y832D02*Y812D01* G54D29*X2751Y860D02*Y784D01* G54D14*X1575Y1057D03* X1645D03* G54D27*X2225Y782D02*X2205D01* G54D29*X2253Y531D02*X2177D01* G54D27*X1225Y1707D02*Y1687D01* G54D29*X1476Y1735D02*Y1659D01* G54D14*X475Y1107D03* Y1177D03* X2650Y1132D03* Y1062D03* X2500Y982D03* X2430D03* X2000Y907D03* Y977D03* X2200Y1307D03* X2130D03* X2250Y1182D03* X2180D03* X2000Y1057D03* X1930D03* G54D32*X2075Y1107D02*X2129D01* G54D34*X2075Y1057D02*X2129D01* X2075Y1007D02*X2129D01* X2075Y957D02*X2129D01* X2295D02*X2349D01* X2295Y1007D02*X2349D01* X2295Y1057D02*X2349D01* X2295Y1107D02*X2349D01* G54D14*X2425Y1132D03* X2495D03* X2425Y1057D03* X2495D03* X2425Y1207D03* X2495D03* X1150Y1382D03* Y1312D03* X1225Y1307D03* Y1377D03* X1350Y1407D03* Y1337D03* G54D32*X1225Y1182D02*X1279D01* G54D34*X1225Y1132D02*X1279D01* X1225Y1082D02*X1279D01* X1225Y1032D02*X1279D01* X1445D02*X1499D01* X1445Y1082D02*X1499D01* X1445Y1132D02*X1499D01* X1445Y1182D02*X1499D01* G54D14*X475Y957D03* Y1027D03* X1575Y1132D03* X1645D03* X1575Y1207D03* X1645D03* X1300Y1532D03* X1370D03* X1150D03* X1220D03* X1575Y1282D03* Y1352D03* X1325Y1257D03* X1395D03* X1150Y1232D03* Y1162D03* G54D27*X975Y1232D02*X995D01* G54D29*X947Y1483D02*X1023D01* G54D17*X1775Y1757D03* G54D20*X1875D03* G54D23*X3000Y982D03* X2900Y1082D03* Y882D03* X3100Y1082D03* Y882D03* X250Y1032D03* X150Y1132D03* Y932D03* X350Y1132D03* Y932D03* G54D17*X475Y732D03* G54D20*X375D03* X1175Y1032D03* X1250Y982D03* X1350Y1032D03* X1700Y1132D03* Y1207D03* X850Y1482D03* X950Y1582D03* X1025D03* X1150Y1457D03* X2075Y882D03* X2175Y957D03* X2550Y1057D03* Y1132D03* X1775Y1432D03* X1675Y1507D03* Y1607D03* X1700Y1882D03* X1575Y1732D03* Y1657D03* X1475Y1557D03* Y1832D03* X2000Y842D03* X2085Y532D03* X2345D03* X2165Y437D03* X2255D03* X475Y882D03* X2650Y1207D03* D02* M02* gerbv-2.7.0/example/dan/Makefile.in0000644000175000017500000003605513423533412016760 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/dan ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README.txt top.gbx top_sr.gbx MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/dan/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/dan/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/dan/top_sr.gbx0000644000175000017500000002571613421555713016733 0ustar carstencarstenG04 Title: (unknown), layergroup #2 * G04 Creator: pcb 1.6.3 * G04 CreationDate: Sat Jun 1 04:16:29 2002 UTC * G04 For: dan * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 3359 2107 * G04 PCB-Coordinate-Origin: lower left * G04 Color: R0 G0 B0 * * %FSLAX23Y23*% %MOIN*% %SRX2Y3I4.000J3.000*% %ADD11C,0.035*% %ADD12C,0.010*% %ADD13C,0.025*% %ADD14R,0.040X0.040*% %ADD15R,0.070X0.070*% %ADD16C,0.008*% %ADD17R,0.060X0.060*% %ADD18R,0.090X0.090*% %AMTHERM1*7,0,0,0.090,0.060,0.015,45*% %ADD19THERM1*% %ADD20C,0.060*% %ADD21C,0.090*% %ADD22C,0.090X0.060*% %ADD23C,0.100*% %ADD24C,0.130*% %ADD25C,0.130X0.100*% %AMTHERM2*7,0,0,0.130,0.100,0.015,45*% %ADD26THERM2*% %ADD27R,0.150X0.150*% %ADD28R,0.180X0.180*% %ADD29R,0.095X0.095*% %ADD30R,0.125X0.125*% %ADD31C,0.030*% %ADD32C,0.026*% %ADD33C,0.056*% %ADD34R,0.026X0.026*% %ADD35R,0.056X0.056*% %AMTHERM3*7,0,0,0.090,0.060,0.015,45*% %ADD36THERM3*% %IPPOS*% G01* %LNcomponent*% %LPD*% G04 LayerGroup: 2 * G04 Layer: "component" (4) * G54D11*Y1132D02*Y1207D01* G54D12*X1470Y1377D02*X1450Y1397D01* X1470Y1337D02*Y1377D01* X1490Y1317D02*X1470Y1337D01* X1505Y1317D02*X1490D01* X1610D02*X1505D01* X1615Y1312D02*X1610Y1317D01* X1620Y1307D02*X1615Y1312D01* X2130Y1307D02*X1620D01* X1360Y1402D02*X1355Y1407D01* X1445Y1402D02*X1360D01* X1450Y1397D02*X1445Y1402D01* G54D13*X1150Y1307D02*X1225D01* X1375Y1832D02*X1350Y1857D01* X1225Y1382D02*Y1532D01* X1375D02*Y1832D01* X1150Y1457D02*Y1532D01* X1350Y1482D02*X1300Y1532D01* X1350Y1407D02*Y1482D01* X475Y957D02*Y882D01* X1645Y1207D02*X1700D01* X1850Y1957D02*Y1882D01* X1825Y1982D02*X1850Y1957D01* X1675Y1982D02*X1825D01* X1625Y1932D02*X1675Y1982D01* X1600Y1907D02*X1625Y1932D01* X1400Y1907D02*X1600D01* X1350Y1857D02*X1400Y1907D01* X1000Y1857D02*X1350D01* X875Y1732D02*X1000Y1857D01* X825Y1732D02*X875D01* X800Y1707D02*X825Y1732D01* X800Y1607D02*Y1707D01* X700Y1507D02*X800Y1607D01* X700Y1457D02*Y1507D01* X475Y1232D02*X700Y1457D01* X475Y1182D02*Y1232D01* X1225Y1532D02*Y1682D01* Y1532D02*X1300D01* X2025Y1382D02*Y1557D01* X2000Y1357D02*X2025Y1382D01* X1150D02*Y1457D01* X2025Y1732D02*Y1557D01* X2000Y1757D02*X2025Y1732D01* X1875Y1757D02*X2000D01* X1850Y1782D02*X1875Y1757D01* X1850Y1882D02*Y1782D01* X2255Y527D02*X2250Y532D01* X2255Y437D02*Y527D01* X2165Y522D02*X2170Y527D01* X2165Y437D02*Y522D01* X2085Y532D02*X2180D01* X2000Y842D02*Y907D01* X2345Y532D02*X2255D01* X2075Y882D02*Y957D01* X2100D02*X2175D01* X2500Y1057D02*X2550D01* X2500Y1132D02*X2550D01* X1775Y1507D02*Y1432D01* X1675Y1507D02*X1775D01* X1675Y1607D02*X1775D01* Y1882D02*X1700D01* X1475Y1657D02*Y1557D01* X1575Y1657D02*X1475D01* Y1732D02*X1575D01* X1475Y1832D02*Y1732D01* X1150Y1282D02*Y1307D01* X1650Y1132D02*X1700D01* X1250Y1032D02*X1350D01* X850Y1482D02*X950D01* X1025Y1582D02*Y1482D01* X950Y1582D02*Y1482D01* X1250Y1032D02*X1175D01* X1250D02*Y982D01* G54D12*X2230Y802D02*X2225Y797D01* X2230Y977D02*Y802D01* X2215Y992D02*X2230Y977D01* X2215Y1007D02*Y992D01* Y1007D02*X2105D01* X2215Y1242D02*Y1007D01* X2200Y1257D02*X2215Y1242D01* X2200Y1307D02*Y1257D01* G54D13*X375Y732D02*X250D01* X1320Y1157D02*Y1257D01* X1300Y1137D02*X1320Y1157D01* X1250Y1137D02*X1300D01* G54D12*X1340Y1087D02*X1250D01* X1360Y1107D02*X1340Y1087D01* X1360Y1297D02*Y1107D01* X1350Y1307D02*X1360Y1297D01* X1350Y1337D02*Y1307D01* G54D13*X2650Y982D02*Y1057D01* X2500Y832D02*Y982D01* X2450Y1557D02*X2025D01* X2500Y1507D02*X2450Y1557D01* X2500Y1207D02*Y1507D01* X2750Y832D02*Y982D01* X2650D02*X3000D01* X2575D02*X2500D01* X2325Y1007D02*X2275D01* X2025D02*X2000Y982D01* X2100Y1007D02*X2025D01* X2375D02*X2325D01* X2400Y982D02*X2375Y1007D01* X2425Y982D02*X2400D01* X2425Y1132D02*Y1207D01* Y1057D02*Y1132D01* X2325Y1057D02*X2425D01* X2000Y1132D02*Y1057D01* X2050Y1182D02*X2000Y1132D01* X2175Y1182D02*X2050D01* X2250Y1032D02*Y1182D01* X2275Y1007D02*X2250Y1032D01* X1650Y1057D02*X1925D01* X2000D02*X2100D01* X1825Y907D02*Y1057D01* X1575Y1132D02*Y1207D01* X1475Y1132D02*X1575D01* Y1057D02*Y907D01* X1500Y1082D02*X1475D01* X1525Y1057D02*X1500Y1082D01* X1575Y1057D02*X1525D01* X1575Y1207D02*Y1282D01* X1175Y1132D02*X1150Y1157D01* X1250Y1132D02*X1175D01* X1575Y1357D02*X2000D01* X1150Y1232D02*Y1282D01* Y1232D02*X1000D01* D02*X975Y1257D01* X1125Y1082D02*X1250D01* X1100Y1057D02*X1125Y1082D01* X1100Y982D02*Y1057D01* X1075Y957D02*X1100Y982D01* X900Y957D02*X1075D01* X800Y1107D02*X725D01* X825Y1082D02*X800Y1107D01* X875Y1082D02*X825D01* X900Y1057D02*X875Y1082D01* X900Y932D02*Y1057D01* X1400Y1107D02*Y1257D01* X1425Y1082D02*X1400Y1107D01* X1475Y1082D02*X1425D01* X250Y807D02*Y1032D01* X575Y932D02*X650D01* X550Y957D02*X575Y932D01* X550Y1007D02*Y957D01* X525Y1032D02*X550Y1007D01* X475Y1032D02*X525D01* X475D02*Y1107D01* X250Y1032D02*X475D01* X650Y932D02*Y1107D01* G04 Text: TERM * G54D16*X350Y607D02*X370D01* X360D02*Y567D01* X383Y587D02*X398D01* X383Y567D02*X403D01* X383Y607D02*Y567D01* Y607D02*X403D01* X416D02*X436D01* D02*X441Y602D01* D02*Y592D01* X436Y587D02*X441Y592D01* X421Y587D02*X436D01* X421Y607D02*Y567D01* Y587D02*X441Y567D01* X454Y607D02*Y567D01* Y607D02*X469Y592D01* D02*X484Y607D01* D02*Y567D01* G04 Text: OUT * X2900Y1252D02*Y1222D01* Y1252D02*X2905Y1257D01* D02*X2915D01* D02*X2920Y1252D01* D02*Y1222D01* X2915Y1217D02*X2920Y1222D01* X2905Y1217D02*X2915D01* X2900Y1222D02*X2905Y1217D01* X2933Y1257D02*Y1222D01* D02*X2938Y1217D01* D02*X2948D01* D02*X2953Y1222D01* Y1257D02*Y1222D01* X2966Y1257D02*X2986D01* X2976D02*Y1217D01* G04 Text: IN * X200Y1307D02*X210D01* X205D02*Y1267D01* X200D02*X210D01* X223Y1307D02*Y1267D01* Y1307D02*Y1302D01* D02*X248Y1277D01* Y1307D02*Y1267D01* G04 Text: +9V * X2000Y1837D02*X2020D01* X2010Y1847D02*Y1827D01* X2033Y1817D02*X2053Y1837D01* Y1852D02*Y1837D01* X2048Y1857D02*X2053Y1852D01* X2038Y1857D02*X2048D01* X2033Y1852D02*X2038Y1857D01* X2033Y1852D02*Y1842D01* D02*X2038Y1837D01* D02*X2053D01* X2066Y1857D02*Y1827D01* D02*X2076Y1817D01* D02*X2086Y1827D01* Y1857D02*Y1827D01* G04 Text: 2002-05-31 * X100Y1852D02*X105Y1857D01* D02*X120D01* D02*X125Y1852D01* D02*Y1842D01* X100Y1817D02*X125Y1842D01* X100Y1817D02*X125D01* X138Y1822D02*X143Y1817D01* X138Y1852D02*Y1822D01* Y1852D02*X143Y1857D01* D02*X153D01* D02*X158Y1852D01* D02*Y1822D01* X153Y1817D02*X158Y1822D01* X143Y1817D02*X153D01* X138Y1827D02*X158Y1847D01* X171Y1822D02*X176Y1817D01* X171Y1852D02*Y1822D01* Y1852D02*X176Y1857D01* D02*X186D01* D02*X191Y1852D01* D02*Y1822D01* X186Y1817D02*X191Y1822D01* X176Y1817D02*X186D01* X171Y1827D02*X191Y1847D01* X204Y1852D02*X209Y1857D01* D02*X224D01* D02*X229Y1852D01* D02*Y1842D01* X204Y1817D02*X229Y1842D01* X204Y1817D02*X229D01* X242Y1837D02*X262D01* X275Y1822D02*X280Y1817D01* X275Y1852D02*Y1822D01* Y1852D02*X280Y1857D01* D02*X290D01* D02*X295Y1852D01* D02*Y1822D01* X290Y1817D02*X295Y1822D01* X280Y1817D02*X290D01* X275Y1827D02*X295Y1847D01* X308Y1857D02*X328D01* X308D02*Y1837D01* D02*X313Y1842D01* D02*X323D01* D02*X328Y1837D01* D02*Y1822D01* X323Y1817D02*X328Y1822D01* X313Y1817D02*X323D01* X308Y1822D02*X313Y1817D01* X341Y1837D02*X361D01* X374Y1852D02*X379Y1857D01* D02*X389D01* D02*X394Y1852D01* D02*Y1822D01* X389Y1817D02*X394Y1822D01* X379Y1817D02*X389D01* X374Y1822D02*X379Y1817D01* Y1837D02*X394D01* X412Y1817D02*X422D01* X417Y1857D02*Y1817D01* X407Y1847D02*X417Y1857D01* G04 Text: DRM011 REV 001 * X105Y1957D02*Y1917D01* X120Y1957D02*X125Y1952D01* D02*Y1922D01* X120Y1917D02*X125Y1922D01* X100Y1917D02*X120D01* X100Y1957D02*X120D01* X138D02*X158D01* D02*X163Y1952D01* D02*Y1942D01* X158Y1937D02*X163Y1942D01* X143Y1937D02*X158D01* X143Y1957D02*Y1917D01* Y1937D02*X163Y1917D01* X176Y1957D02*Y1917D01* Y1957D02*X191Y1942D01* D02*X206Y1957D01* D02*Y1917D01* X219Y1922D02*X224Y1917D01* X219Y1952D02*Y1922D01* Y1952D02*X224Y1957D01* D02*X234D01* D02*X239Y1952D01* D02*Y1922D01* X234Y1917D02*X239Y1922D01* X224Y1917D02*X234D01* X219Y1927D02*X239Y1947D01* X257Y1917D02*X267D01* X262Y1957D02*Y1917D01* X252Y1947D02*X262Y1957D01* X285Y1917D02*X295D01* X290Y1957D02*Y1917D01* X280Y1947D02*X290Y1957D01* X326D02*X346D01* D02*X351Y1952D01* D02*Y1942D01* X346Y1937D02*X351Y1942D01* X331Y1937D02*X346D01* X331Y1957D02*Y1917D01* Y1937D02*X351Y1917D01* X364Y1937D02*X379D01* X364Y1917D02*X384D01* X364Y1957D02*Y1917D01* Y1957D02*X384D01* X397D02*Y1927D01* D02*X407Y1917D01* D02*X417Y1927D01* Y1957D02*Y1927D01* X448Y1922D02*X453Y1917D01* X448Y1952D02*Y1922D01* Y1952D02*X453Y1957D01* D02*X463D01* D02*X468Y1952D01* D02*Y1922D01* X463Y1917D02*X468Y1922D01* X453Y1917D02*X463D01* X448Y1927D02*X468Y1947D01* X481Y1922D02*X486Y1917D01* X481Y1952D02*Y1922D01* Y1952D02*X486Y1957D01* D02*X496D01* D02*X501Y1952D01* D02*Y1922D01* X496Y1917D02*X501Y1922D01* X486Y1917D02*X496D01* X481Y1927D02*X501Y1947D01* X519Y1917D02*X529D01* X524Y1957D02*Y1917D01* X514Y1947D02*X524Y1957D01* G54D14*X250Y732D03* Y802D03* X1775Y1882D03* X1845D03* G54D27*X1825Y882D02*Y902D01* G54D29*X1574Y854D02*Y930D01* G54D27*X900Y932D02*Y952D01* G54D29*X649Y904D02*Y980D01* G54D27*X2025Y1557D02*Y1577D01* G54D29*X1774Y1529D02*Y1605D01* G54D14*X650Y1107D03* X720D03* X2575Y982D03* X2645D03* G54D27*X2500Y832D02*Y812D01* G54D29*X2751Y860D02*Y784D01* G54D14*X1575Y1057D03* X1645D03* G54D27*X2225Y782D02*X2205D01* G54D29*X2253Y531D02*X2177D01* G54D27*X1225Y1707D02*Y1687D01* G54D29*X1476Y1735D02*Y1659D01* G54D14*X475Y1107D03* Y1177D03* X2650Y1132D03* Y1062D03* X2500Y982D03* X2430D03* X2000Y907D03* Y977D03* X2200Y1307D03* X2130D03* X2250Y1182D03* X2180D03* X2000Y1057D03* X1930D03* G54D32*X2075Y1107D02*X2129D01* G54D34*X2075Y1057D02*X2129D01* X2075Y1007D02*X2129D01* X2075Y957D02*X2129D01* X2295D02*X2349D01* X2295Y1007D02*X2349D01* X2295Y1057D02*X2349D01* X2295Y1107D02*X2349D01* G54D14*X2425Y1132D03* X2495D03* X2425Y1057D03* X2495D03* X2425Y1207D03* X2495D03* X1150Y1382D03* Y1312D03* X1225Y1307D03* Y1377D03* X1350Y1407D03* Y1337D03* G54D32*X1225Y1182D02*X1279D01* G54D34*X1225Y1132D02*X1279D01* X1225Y1082D02*X1279D01* X1225Y1032D02*X1279D01* X1445D02*X1499D01* X1445Y1082D02*X1499D01* X1445Y1132D02*X1499D01* X1445Y1182D02*X1499D01* G54D14*X475Y957D03* Y1027D03* X1575Y1132D03* X1645D03* X1575Y1207D03* X1645D03* X1300Y1532D03* X1370D03* X1150D03* X1220D03* X1575Y1282D03* Y1352D03* X1325Y1257D03* X1395D03* X1150Y1232D03* Y1162D03* G54D27*X975Y1232D02*X995D01* G54D29*X947Y1483D02*X1023D01* G54D17*X1775Y1757D03* G54D20*X1875D03* G54D23*X3000Y982D03* X2900Y1082D03* Y882D03* X3100Y1082D03* Y882D03* X250Y1032D03* X150Y1132D03* Y932D03* X350Y1132D03* Y932D03* G54D17*X475Y732D03* G54D20*X375D03* X1175Y1032D03* X1250Y982D03* X1350Y1032D03* X1700Y1132D03* Y1207D03* X850Y1482D03* X950Y1582D03* X1025D03* X1150Y1457D03* X2075Y882D03* X2175Y957D03* X2550Y1057D03* Y1132D03* X1775Y1432D03* X1675Y1507D03* Y1607D03* X1700Y1882D03* X1575Y1732D03* Y1657D03* X1475Y1557D03* Y1832D03* X2000Y842D03* X2085Y532D03* X2345D03* X2165Y437D03* X2255D03* X475Y882D03* X2650Y1207D03* D02* M02* gerbv-2.7.0/example/cslk/0000755000175000017500000000000013423533412015074 5ustar carstencarstengerbv-2.7.0/example/cslk/README.txt0000644000175000017500000000034513421555713016602 0ustar carstencarstenThis is an example on a gerber file (with a postscript version as reference) with kind permission from Neil Darlow (neil at darlow dot co dot uk) to illustrate problems with broken multi quadrant arcs discovered in 0.0.7. $Id$gerbv-2.7.0/example/cslk/Makefile.am0000644000175000017500000000167313421555713017145 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=cslk.gbx cslk.ps README.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/cslk/Makefile.in0000644000175000017500000003605613423533412017153 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/cslk ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = cslk.gbx cslk.ps README.txt MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/cslk/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/cslk/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/cslk/cslk.gbx0000644000175000017500000007043313421555713016547 0ustar carstencarstenG04 Title: $Id$, silkscreen component side * G04 Creator: pcb 1.6.3 * G04 CreationDate: Wed Mar 8 07:54:16 2000 UTC * G04 For: neil * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 3875 2425 * G04 PCB-Coordinate-Origin: lower left * G04 Color: R0 G0 B0 * * %FSLAX23Y23*% %MOIN*% %ADD11C,0.015*% %ADD12C,0.025*% %ADD13C,0.040*% %ADD14C,0.070*% %ADD15C,0.100*% %ADD16C,0.010*% %ADD17C,0.008*% %ADD18R,0.070X0.070*% %ADD19R,0.100X0.100*% %ADD20C,0.110*% %ADD21C,0.140*% %ADD22R,0.080X0.080*% %ADD23R,0.110X0.110*% %ADD24C,0.080*% %ADD25R,0.060X0.060*% %ADD26R,0.090X0.090*% %ADD27C,0.060*% %ADD28C,0.090*% %ADD29C,0.075*% %ADD30C,0.105*% %ADD31C,0.150*% %ADD32C,0.180*% %ADD33C,0.180X0.150*% %ADD34C,0.009*% %IPPOS*% G01* G54D16*X2900Y2310D02*Y2240D01* D02*X3100D01* D02*Y2310D01* D02*X2900D01* X2835Y2275D02*X2900D01* X3100D02*X3165D01* G04 Text: R17 * G54D17*X2711Y2230D02*Y2250D01* D02*X2716Y2255D01* D02*X2726D01* X2731Y2250D02*X2726Y2255D01* X2731Y2235D02*Y2250D01* X2711Y2235D02*X2751D01* X2731D02*X2751Y2255D01* Y2273D02*Y2283D01* X2711Y2278D02*X2751D01* X2721Y2268D02*X2711Y2278D01* X2751Y2296D02*X2726Y2321D01* X2711D02*X2726D01* X2711Y2296D02*Y2321D01* G54D16*X2900Y2210D02*Y2140D01* D02*X3100D01* D02*Y2210D01* D02*X2900D01* X2835Y2175D02*X2900D01* X3100D02*X3165D01* G04 Text: R16 * G54D17*X2711Y2120D02*Y2140D01* D02*X2716Y2145D01* D02*X2726D01* X2731Y2140D02*X2726Y2145D01* X2731Y2125D02*Y2140D01* X2711Y2125D02*X2751D01* X2731D02*X2751Y2145D01* Y2163D02*Y2173D01* X2711Y2168D02*X2751D01* X2721Y2158D02*X2711Y2168D01* Y2201D02*X2716Y2206D01* X2711Y2191D02*Y2201D01* X2716Y2186D02*X2711Y2191D01* X2716Y2186D02*X2746D01* D02*X2751Y2191D01* X2731Y2201D02*X2736Y2206D01* X2731Y2186D02*Y2201D01* X2751Y2191D02*Y2201D01* D02*X2746Y2206D01* X2736D02*X2746D01* G54D16*X1000Y2010D02*Y1940D01* D02*X1200D01* D02*Y2010D01* D02*X1000D01* X935Y1975D02*X1000D01* X1200D02*X1265D01* G04 Text: R13 * G54D17*X816Y1915D02*Y1935D01* D02*X821Y1940D01* D02*X831D01* X836Y1935D02*X831Y1940D01* X836Y1920D02*Y1935D01* X816Y1920D02*X856D01* X836D02*X856Y1940D01* Y1958D02*Y1968D01* X816Y1963D02*X856D01* X826Y1953D02*X816Y1963D01* X821Y1981D02*X816Y1986D01* D02*Y1996D01* D02*X821Y2001D01* D02*X851D01* X856Y1996D02*X851Y2001D01* X856Y1986D02*Y1996D01* X851Y1981D02*X856Y1986D01* X836D02*Y2001D01* G54D16*X3100Y200D02*X3155D01* X2845D02*X2900D01* X2940Y250D02*Y150D01* X3100Y250D02*X2900D01* X3100Y150D02*Y250D01* X2900Y150D02*X3100D01* X2900Y250D02*Y150D01* G04 Text: D1 * G54D17*X2836Y120D02*X2876D01* X2836Y135D02*X2841Y140D01* D02*X2871D01* X2876Y135D02*X2871Y140D01* X2876Y115D02*Y135D01* X2836Y115D02*Y135D01* X2876Y158D02*Y168D01* X2836Y163D02*X2876D01* X2846Y153D02*X2836Y163D01* G54D16*X1565Y425D02*X1635D01* D02*Y625D01* D02*X1565D01* D02*Y425D01* X1600Y360D02*Y425D01* Y625D02*Y690D01* G04 Text: R5 * G54D17*X1506Y495D02*Y515D01* D02*X1511Y520D01* D02*X1521D01* X1526Y515D02*X1521Y520D01* X1526Y500D02*Y515D01* X1506Y500D02*X1546D01* X1526D02*X1546Y520D01* X1506Y533D02*Y553D01* Y533D02*X1526D01* D02*X1521Y538D01* D02*Y548D01* D02*X1526Y553D01* D02*X1541D01* X1546Y548D02*X1541Y553D01* X1546Y538D02*Y548D01* X1541Y533D02*X1546Y538D01* G54D16*X1000Y2110D02*Y2040D01* D02*X1200D01* D02*Y2110D01* D02*X1000D01* X935Y2075D02*X1000D01* X1200D02*X1265D01* G04 Text: R14 * G54D17*X816Y2025D02*Y2045D01* D02*X821Y2050D01* D02*X831D01* X836Y2045D02*X831Y2050D01* X836Y2030D02*Y2045D01* X816Y2030D02*X856D01* X836D02*X856Y2050D01* Y2068D02*Y2078D01* X816Y2073D02*X856D01* X826Y2063D02*X816Y2073D01* X836Y2091D02*X816Y2111D01* X836Y2091D02*Y2116D01* X816Y2111D02*X856D01* G54D16*X915Y425D02*X985D01* D02*Y625D01* D02*X915D01* D02*Y425D01* X950Y360D02*Y425D01* Y625D02*Y690D01* G04 Text: R4 * G54D17*X856Y490D02*Y510D01* D02*X861Y515D01* D02*X871D01* X876Y510D02*X871Y515D01* X876Y495D02*Y510D01* X856Y495D02*X896D01* X876D02*X896Y515D01* X876Y528D02*X856Y548D01* X876Y528D02*Y553D01* X856Y548D02*X896D01* G54D16*X3550Y1700D02*G75G03I150J0X3550Y1701D01*G01* G04 Text: D3 * G54D17*X3582Y1500D02*X3622D01* X3582Y1515D02*X3587Y1520D01* D02*X3617D01* X3622Y1515D02*X3617Y1520D01* X3622Y1495D02*Y1515D01* X3582Y1495D02*Y1515D01* X3587Y1533D02*X3582Y1538D01* D02*Y1548D01* D02*X3587Y1553D01* D02*X3617D01* X3622Y1548D02*X3617Y1553D01* X3622Y1538D02*Y1548D01* X3617Y1533D02*X3622Y1538D01* X3602D02*Y1553D01* G54D16*X3150Y925D02*Y825D01* D02*X3450D01* D02*Y925D01* D02*X3150D01* G04 Text: C9 * G54D17*X3130Y854D02*Y869D01* X3125Y849D02*X3130Y854D01* X3095Y849D02*X3125D01* X3095D02*X3090Y854D01* D02*Y869D01* X3130Y882D02*X3110Y902D01* X3095D02*X3110D01* X3090Y897D02*X3095Y902D01* X3090Y887D02*Y897D01* X3095Y882D02*X3090Y887D01* X3095Y882D02*X3105D01* D02*X3110Y887D01* D02*Y902D01* G54D16*X3540Y2225D02*Y2425D01* Y987D02*Y1187D01* X3340Y987D02*X3540D01* X379D02*X579D01* X379Y1187D02*Y987D01* Y2425D02*Y2225D01* G04 Text: LCD * G54D17*X314Y2277D02*X354D01* D02*Y2297D01* Y2315D02*Y2330D01* X349Y2310D02*X354Y2315D01* X319Y2310D02*X349D01* X319D02*X314Y2315D01* D02*Y2330D01* Y2348D02*X354D01* X314Y2363D02*X319Y2368D01* D02*X349D01* X354Y2363D02*X349Y2368D01* X354Y2343D02*Y2363D01* X314Y2343D02*Y2363D01* G54D16*X2050Y825D02*X2150D01* D02*Y1125D01* D02*X2050D01* D02*Y825D01* G04 Text: C8 * G54D17*X2030Y954D02*Y969D01* X2025Y949D02*X2030Y954D01* X1995Y949D02*X2025D01* X1995D02*X1990Y954D01* D02*Y969D01* X2025Y982D02*X2030Y987D01* X2015Y982D02*X2025D01* X2015D02*X2010Y987D01* D02*Y997D01* D02*X2015Y1002D01* D02*X2025D01* X2030Y997D02*X2025Y1002D01* X2030Y987D02*Y997D01* X2005Y982D02*X2010Y987D01* X1995Y982D02*X2005D01* X1995D02*X1990Y987D01* D02*Y997D01* D02*X1995Y1002D01* D02*X2005D01* X2010Y997D02*X2005Y1002D01* G54D16*X1500Y1410D02*Y1340D01* D02*X1700D01* D02*Y1410D01* D02*X1500D01* X1435Y1375D02*X1500D01* X1700D02*X1765D01* G04 Text: R11 * G54D17*X1311Y1335D02*Y1355D01* D02*X1316Y1360D01* D02*X1326D01* X1331Y1355D02*X1326Y1360D01* X1331Y1340D02*Y1355D01* X1311Y1340D02*X1351D01* X1331D02*X1351Y1360D01* Y1378D02*Y1388D01* X1311Y1383D02*X1351D01* X1321Y1373D02*X1311Y1383D01* X1351Y1406D02*Y1416D01* X1311Y1411D02*X1351D01* X1321Y1401D02*X1311Y1411D01* G54D16*X2224Y1615D02*X2476D01* X2224Y1435D02*X2476D01* X2224Y1615D02*G75G03I0J-90X2223Y1435D01*G01* X2475D02*G75G03I1J90X2476Y1615D01*G01* G04 Text: XT1 * G54D17*X2075Y1484D02*X2080D01* D02*X2105Y1509D01* D02*X2115D01* X2105Y1484D02*X2115D01* X2105D02*X2080Y1509D01* X2075D02*X2080D01* X2075Y1522D02*Y1542D01* Y1532D02*X2115D01* Y1560D02*Y1570D01* X2075Y1565D02*X2115D01* X2085Y1555D02*X2075Y1565D01* G54D16*X850Y1410D02*Y1340D01* D02*X1050D01* D02*Y1410D01* D02*X850D01* X785Y1375D02*X850D01* X1050D02*X1115D01* G04 Text: R9 * G54D17*X661Y1345D02*Y1365D01* D02*X666Y1370D01* D02*X676D01* X681Y1365D02*X676Y1370D01* X681Y1350D02*Y1365D01* X661Y1350D02*X701D01* X681D02*X701Y1370D01* Y1383D02*X681Y1403D01* X666D02*X681D01* X661Y1398D02*X666Y1403D01* X661Y1388D02*Y1398D01* X666Y1383D02*X661Y1388D01* X666Y1383D02*X676D01* D02*X681Y1388D01* D02*Y1403D01* G54D16*X1650Y1925D02*Y2075D01* Y1675D02*Y1825D01* X3050Y2075D02*X1650D01* X3050Y1675D02*Y2075D01* X1650Y1675D02*X3050D01* X1649Y1825D02*G75G03I1J50X1650Y1925D01*G01* G04 Text: IC7 * G54D17*X1590Y1835D02*Y1845D01* Y1840D02*X1630D01* Y1835D02*Y1845D01* Y1863D02*Y1878D01* X1625Y1858D02*X1630Y1863D01* X1595Y1858D02*X1625D01* X1595D02*X1590Y1863D01* D02*Y1878D01* X1630Y1891D02*X1605Y1916D01* X1590D02*X1605D01* X1590Y1891D02*Y1916D01* G54D16*X300Y1175D02*Y1230D01* Y920D02*Y975D01* X250Y1015D02*X350D01* X250Y1175D02*Y975D01* X350Y1175D02*X250D01* X350Y975D02*Y1175D01* X250Y975D02*X350D01* G04 Text: D2 * G54D17*X336Y900D02*X376D01* X336Y915D02*X341Y920D01* D02*X371D01* X376Y915D02*X371Y920D01* X376Y895D02*Y915D01* X336Y895D02*Y915D01* X341Y933D02*X336Y938D01* D02*Y953D01* D02*X341Y958D01* D02*X351D01* X376Y933D02*X351Y958D01* X376Y933D02*Y958D01* G54D16*X40Y1950D02*G75G03I160J0X40Y1951D01*G01* G04 Text: VR1 * G54D17*X383Y1906D02*X413D01* D02*X423Y1916D01* D02*X413Y1926D01* X383D02*X413D01* X383Y1939D02*Y1959D01* D02*X388Y1964D01* D02*X398D01* X403Y1959D02*X398Y1964D01* X403Y1944D02*Y1959D01* X383Y1944D02*X423D01* X403D02*X423Y1964D01* Y1982D02*Y1992D01* X383Y1987D02*X423D01* X393Y1977D02*X383Y1987D01* G54D16*X2112Y609D02*Y441D01* X2111Y610D02*G75G03I-111J-85X2111Y441D01*G01* G04 Text: TR2 * G54D17*X1802Y476D02*Y496D01* Y486D02*X1842D01* X1802Y509D02*Y529D01* D02*X1807Y534D01* D02*X1817D01* X1822Y529D02*X1817Y534D01* X1822Y514D02*Y529D01* X1802Y514D02*X1842D01* X1822D02*X1842Y534D01* X1807Y547D02*X1802Y552D01* D02*Y567D01* D02*X1807Y572D01* D02*X1817D01* X1842Y547D02*X1817Y572D01* X1842Y547D02*Y572D01* G54D16*X2300Y1375D02*X2100D01* X2300Y1275D02*Y1375D01* X2100Y1275D02*X2300D01* X2100Y1375D02*Y1275D01* G04 Text: C10 * G54D17*X2080Y1289D02*Y1304D01* X2075Y1284D02*X2080Y1289D01* X2045Y1284D02*X2075D01* X2045D02*X2040Y1289D01* D02*Y1304D01* X2080Y1322D02*Y1332D01* X2040Y1327D02*X2080D01* X2050Y1317D02*X2040Y1327D01* X2075Y1345D02*X2080Y1350D01* X2045Y1345D02*X2075D01* X2045D02*X2040Y1350D01* D02*Y1360D01* D02*X2045Y1365D01* D02*X2075D01* X2080Y1360D02*X2075Y1365D01* X2080Y1350D02*Y1360D01* X2070Y1345D02*X2050Y1365D01* G54D16*X1450Y1725D02*X1550D01* D02*Y2025D01* D02*X1450D01* D02*Y1725D01* G04 Text: C14 * G54D17*X1430Y1839D02*Y1854D01* X1425Y1834D02*X1430Y1839D01* X1395Y1834D02*X1425D01* X1395D02*X1390Y1839D01* D02*Y1854D01* X1430Y1872D02*Y1882D01* X1390Y1877D02*X1430D01* X1400Y1867D02*X1390Y1877D01* X1410Y1895D02*X1390Y1915D01* X1410Y1895D02*Y1920D01* X1390Y1915D02*X1430D01* G54D16*X650Y375D02*X750D01* D02*Y675D01* D02*X650D01* D02*Y375D01* G04 Text: C1 * G54D17*X720Y314D02*Y329D01* X715Y309D02*X720Y314D01* X685Y309D02*X715D01* X685D02*X680Y314D01* D02*Y329D01* X720Y347D02*Y357D01* X680Y352D02*X720D01* X690Y342D02*X680Y352D01* G54D16*X750Y1950D02*X800Y2000D01* X600Y1950D02*X800D01* X600Y2250D02*Y1950D01* X800Y2250D02*X600D01* X800Y1950D02*Y2250D01* G04 Text: C16 * G54D17*X580Y2070D02*Y2085D01* X575Y2065D02*X580Y2070D01* X545Y2065D02*X575D01* X545D02*X540Y2070D01* D02*Y2085D01* X580Y2103D02*Y2113D01* X540Y2108D02*X580D01* X550Y2098D02*X540Y2108D01* Y2141D02*X545Y2146D01* X540Y2131D02*Y2141D01* X545Y2126D02*X540Y2131D01* X545Y2126D02*X575D01* D02*X580Y2131D01* X560Y2141D02*X565Y2146D01* X560Y2126D02*Y2141D01* X580Y2131D02*Y2141D01* D02*X575Y2146D01* X565D02*X575D01* G54D16*X2250Y1025D02*Y1175D01* Y775D02*Y925D01* X3050Y1175D02*X2250D01* X3050Y775D02*Y1175D01* X2250Y775D02*X3050D01* X2249Y925D02*G75G03I1J50X2250Y1025D01*G01* G04 Text: IC4 * G54D17*X2190Y935D02*Y945D01* Y940D02*X2230D01* Y935D02*Y945D01* Y963D02*Y978D01* X2225Y958D02*X2230Y963D01* X2195Y958D02*X2225D01* X2195D02*X2190Y963D01* D02*Y978D01* X2210Y991D02*X2190Y1011D01* X2210Y991D02*Y1016D01* X2190Y1011D02*X2230D01* G54D16*X1500Y1310D02*Y1240D01* D02*X1700D01* D02*Y1310D01* D02*X1500D01* X1435Y1275D02*X1500D01* X1700D02*X1765D01* G04 Text: R10 * G54D17*X1311Y1220D02*Y1240D01* D02*X1316Y1245D01* D02*X1326D01* X1331Y1240D02*X1326Y1245D01* X1331Y1225D02*Y1240D01* X1311Y1225D02*X1351D01* X1331D02*X1351Y1245D01* Y1263D02*Y1273D01* X1311Y1268D02*X1351D01* X1321Y1258D02*X1311Y1268D01* X1346Y1286D02*X1351Y1291D01* X1316Y1286D02*X1346D01* X1316D02*X1311Y1291D01* D02*Y1301D01* D02*X1316Y1306D01* D02*X1346D01* X1351Y1301D02*X1346Y1306D01* X1351Y1291D02*Y1301D01* X1341Y1286D02*X1321Y1306D01* G54D16*X565Y425D02*X635D01* D02*Y625D01* D02*X565D01* D02*Y425D01* X600Y360D02*Y425D01* Y625D02*Y690D01* G04 Text: R3 * G54D17*X531Y355D02*Y375D01* D02*X536Y380D01* D02*X546D01* X551Y375D02*X546Y380D01* X551Y360D02*Y375D01* X531Y360D02*X571D01* X551D02*X571Y380D01* X536Y393D02*X531Y398D01* D02*Y408D01* D02*X536Y413D01* D02*X566D01* X571Y408D02*X566Y413D01* X571Y398D02*Y408D01* X566Y393D02*X571Y398D01* X551D02*Y413D01* G54D16*X1000Y2210D02*Y2140D01* D02*X1200D01* D02*Y2210D01* D02*X1000D01* X935Y2175D02*X1000D01* X1200D02*X1265D01* G04 Text: R15 * G54D17*X816Y2135D02*Y2155D01* D02*X821Y2160D01* D02*X831D01* X836Y2155D02*X831Y2160D01* X836Y2140D02*Y2155D01* X816Y2140D02*X856D01* X836D02*X856Y2160D01* Y2178D02*Y2188D01* X816Y2183D02*X856D01* X826Y2173D02*X816Y2183D01* Y2201D02*Y2221D01* Y2201D02*X836D01* D02*X831Y2206D01* D02*Y2216D01* D02*X836Y2221D01* D02*X851D01* X856Y2216D02*X851Y2221D01* X856Y2206D02*Y2216D01* X851Y2201D02*X856Y2206D01* G54D16*X312Y1559D02*Y1391D01* X311Y1560D02*G75G03I-111J-85X311Y1391D01*G01* G04 Text: TR3 * G54D17*X332Y1426D02*Y1446D01* Y1436D02*X372D01* X332Y1459D02*Y1479D01* D02*X337Y1484D01* D02*X347D01* X352Y1479D02*X347Y1484D01* X352Y1464D02*Y1479D01* X332Y1464D02*X372D01* X352D02*X372Y1484D01* X337Y1497D02*X332Y1502D01* D02*Y1512D01* D02*X337Y1517D01* D02*X367D01* X372Y1512D02*X367Y1517D01* X372Y1502D02*Y1512D01* X367Y1497D02*X372Y1502D01* X352D02*Y1517D01* G54D16*X3450Y50D02*Y250D01* X3350Y50D02*X3450D01* X3350Y250D02*Y50D01* X3450Y250D02*X3350D01* G04 Text: J1 * G54D17*X3285Y124D02*Y139D01* D02*X3320D01* X3325Y134D02*X3320Y139D01* X3325Y129D02*Y134D01* X3320Y124D02*X3325Y129D01* Y157D02*Y167D01* X3285Y162D02*X3325D01* X3295Y152D02*X3285Y162D01* G54D16*X850Y1310D02*Y1240D01* D02*X1050D01* D02*Y1310D01* D02*X850D01* X785Y1275D02*X850D01* X1050D02*X1115D01* G04 Text: R8 * G54D17*X661Y1240D02*Y1260D01* D02*X666Y1265D01* D02*X676D01* X681Y1260D02*X676Y1265D01* X681Y1245D02*Y1260D01* X661Y1245D02*X701D01* X681D02*X701Y1265D01* X696Y1278D02*X701Y1283D01* X686Y1278D02*X696D01* X686D02*X681Y1283D01* D02*Y1293D01* D02*X686Y1298D01* D02*X696D01* X701Y1293D02*X696Y1298D01* X701Y1283D02*Y1293D01* X676Y1278D02*X681Y1283D01* X666Y1278D02*X676D01* X666D02*X661Y1283D01* D02*Y1293D01* D02*X666Y1298D01* D02*X676D01* X681Y1293D02*X676Y1298D01* G54D16*X50Y1750D02*Y1650D01* D02*X350D01* D02*Y1750D01* D02*X50D01* G04 Text: C12 * G54D17*X410Y1659D02*Y1674D01* X405Y1654D02*X410Y1659D01* X375Y1654D02*X405D01* X375D02*X370Y1659D01* D02*Y1674D01* X410Y1692D02*Y1702D01* X370Y1697D02*X410D01* X380Y1687D02*X370Y1697D01* X375Y1715D02*X370Y1720D01* D02*Y1735D01* D02*X375Y1740D01* D02*X385D01* X410Y1715D02*X385Y1740D01* X410Y1715D02*Y1740D01* G54D16*X2250Y2225D02*Y2125D01* D02*X2550D01* D02*Y2225D01* D02*X2250D01* G04 Text: C17 * G54D17*X2230Y2139D02*Y2154D01* X2225Y2134D02*X2230Y2139D01* X2195Y2134D02*X2225D01* X2195D02*X2190Y2139D01* D02*Y2154D01* X2230Y2172D02*Y2182D01* X2190Y2177D02*X2230D01* X2200Y2167D02*X2190Y2177D01* X2230Y2195D02*X2205Y2220D01* X2190D02*X2205D01* X2190Y2195D02*Y2220D01* G54D16*X2250Y625D02*Y525D01* D02*X2550D01* D02*Y625D01* D02*X2250D01* G04 Text: C3 * G54D17*X2230Y554D02*Y569D01* X2225Y549D02*X2230Y554D01* X2195Y549D02*X2225D01* X2195D02*X2190Y554D01* D02*Y569D01* X2195Y582D02*X2190Y587D01* D02*Y597D01* D02*X2195Y602D01* D02*X2225D01* X2230Y597D02*X2225Y602D01* X2230Y587D02*Y597D01* X2225Y582D02*X2230Y587D01* X2210D02*Y602D01* G54D16*X2250Y525D02*Y425D01* D02*X2550D01* D02*Y525D01* D02*X2250D01* G04 Text: C2 * G54D17*X2230Y449D02*Y464D01* X2225Y444D02*X2230Y449D01* X2195Y444D02*X2225D01* X2195D02*X2190Y449D01* D02*Y464D01* X2195Y477D02*X2190Y482D01* D02*Y497D01* D02*X2195Y502D01* D02*X2205D01* X2230Y477D02*X2205Y502D01* X2230Y477D02*Y502D01* G54D16*X2650Y375D02*X2750D01* D02*Y675D01* D02*X2650D01* D02*Y375D01* G04 Text: C4 * G54D17*X2720Y299D02*Y314D01* X2715Y294D02*X2720Y299D01* X2685Y294D02*X2715D01* X2685D02*X2680Y299D01* D02*Y314D01* X2700Y327D02*X2680Y347D01* X2700Y327D02*Y352D01* X2680Y347D02*X2720D01* G54D16*X650Y825D02*X750D01* D02*Y1125D01* D02*X650D01* D02*Y825D01* G04 Text: C6 * G54D17*X630Y864D02*Y879D01* X625Y859D02*X630Y864D01* X595Y859D02*X625D01* X595D02*X590Y864D01* D02*Y879D01* Y907D02*X595Y912D01* X590Y897D02*Y907D01* X595Y892D02*X590Y897D01* X595Y892D02*X625D01* D02*X630Y897D01* X610Y907D02*X615Y912D01* X610Y892D02*Y907D01* X630Y897D02*Y907D01* D02*X625Y912D01* X615D02*X625D01* G54D16*X3000Y1310D02*Y1240D01* D02*X3200D01* D02*Y1310D01* D02*X3000D01* X2935Y1275D02*X3000D01* X3200D02*X3265D01* G04 Text: R12 * G54D17*X2811Y1225D02*Y1245D01* D02*X2816Y1250D01* D02*X2826D01* X2831Y1245D02*X2826Y1250D01* X2831Y1230D02*Y1245D01* X2811Y1230D02*X2851D01* X2831D02*X2851Y1250D01* Y1268D02*Y1278D01* X2811Y1273D02*X2851D01* X2821Y1263D02*X2811Y1273D01* X2816Y1291D02*X2811Y1296D01* D02*Y1311D01* D02*X2816Y1316D01* D02*X2826D01* X2851Y1291D02*X2826Y1316D01* X2851Y1291D02*Y1316D01* G54D16*X650Y1525D02*X750D01* D02*Y1825D01* D02*X650D01* D02*Y1525D01* G04 Text: C13 * G54D17*X630Y1644D02*Y1659D01* X625Y1639D02*X630Y1644D01* X595Y1639D02*X625D01* X595D02*X590Y1644D01* D02*Y1659D01* X630Y1677D02*Y1687D01* X590Y1682D02*X630D01* X600Y1672D02*X590Y1682D01* X595Y1700D02*X590Y1705D01* D02*Y1715D01* D02*X595Y1720D01* D02*X625D01* X630Y1715D02*X625Y1720D01* X630Y1705D02*Y1715D01* X625Y1700D02*X630Y1705D01* X610D02*Y1720D01* G54D16*X2600Y1375D02*X2400D01* X2600Y1275D02*Y1375D01* X2400Y1275D02*X2600D01* X2400Y1375D02*Y1275D01* G04 Text: C11 * G54D17*X2380Y1289D02*Y1304D01* X2375Y1284D02*X2380Y1289D01* X2345Y1284D02*X2375D01* X2345D02*X2340Y1289D01* D02*Y1304D01* X2380Y1322D02*Y1332D01* X2340Y1327D02*X2380D01* X2350Y1317D02*X2340Y1327D01* X2380Y1350D02*Y1360D01* X2340Y1355D02*X2380D01* X2350Y1345D02*X2340Y1355D01* G54D16*X350Y185D02*X850D01* Y225D02*X350D01* X850Y2D02*Y225D01* X350D02*Y2D01* G04 Text: PL1 * G54D17*X288Y85D02*X328D01* X288Y80D02*Y100D01* D02*X293Y105D01* D02*X303D01* X308Y100D02*X303Y105D01* X308Y85D02*Y100D01* X288Y118D02*X328D01* D02*Y138D01* Y156D02*Y166D01* X288Y161D02*X328D01* X298Y151D02*X288Y161D01* G54D16*X850Y1475D02*X1250D01* D02*Y1875D01* D02*X850D01* Y1475D02*Y1625D01* Y1725D02*Y1875D01* X849Y1625D02*G75G03I1J50X850Y1725D01*G01* G04 Text: IC5 * G54D17*X790Y1640D02*Y1650D01* Y1645D02*X830D01* Y1640D02*Y1650D01* Y1668D02*Y1683D01* X825Y1663D02*X830Y1668D01* X795Y1663D02*X825D01* X795D02*X790Y1668D01* D02*Y1683D01* Y1696D02*Y1716D01* Y1696D02*X810D01* D02*X805Y1701D01* D02*Y1711D01* D02*X810Y1716D01* D02*X825D01* X830Y1711D02*X825Y1716D01* X830Y1701D02*Y1711D01* X825Y1696D02*X830Y1701D01* G54D16*X165Y975D02*X235D01* D02*Y1175D01* D02*X165D01* D02*Y975D01* X200Y910D02*Y975D01* Y1175D02*Y1240D01* G04 Text: R7 * G54D17*X231Y900D02*Y920D01* D02*X236Y925D01* D02*X246D01* X251Y920D02*X246Y925D01* X251Y905D02*Y920D01* X231Y905D02*X271D01* X251D02*X271Y925D01* Y938D02*X246Y963D01* X231D02*X246D01* X231Y938D02*Y963D01* G54D16*X65Y975D02*X135D01* D02*Y1175D01* D02*X65D01* D02*Y975D01* X100Y910D02*Y975D01* Y1175D02*Y1240D01* G04 Text: R6 * G54D17*X131Y900D02*Y920D01* D02*X136Y925D01* D02*X146D01* X151Y920D02*X146Y925D01* X151Y905D02*Y920D01* X131Y905D02*X171D01* X151D02*X171Y925D01* X131Y953D02*X136Y958D01* X131Y943D02*Y953D01* X136Y938D02*X131Y943D01* X136Y938D02*X166D01* D02*X171Y943D01* X151Y953D02*X156Y958D01* X151Y938D02*Y953D01* X171Y943D02*Y953D01* D02*X166Y958D01* X156D02*X166D01* G54D16*X365Y425D02*X435D01* D02*Y625D01* D02*X365D01* D02*Y425D01* X400Y360D02*Y425D01* Y625D02*Y690D01* G04 Text: R1 * G54D17*X331Y355D02*Y375D01* D02*X336Y380D01* D02*X346D01* X351Y375D02*X346Y380D01* X351Y360D02*Y375D01* X331Y360D02*X371D01* X351D02*X371Y380D01* Y398D02*Y408D01* X331Y403D02*X371D01* X341Y393D02*X331Y403D01* G54D16*X3350Y1725D02*X3400Y1775D01* X3200Y1725D02*X3400D01* X3200Y2025D02*Y1725D01* X3400Y2025D02*X3200D01* X3400Y1725D02*Y2025D01* G04 Text: C15 * G54D17*X3180Y1840D02*Y1855D01* X3175Y1835D02*X3180Y1840D01* X3145Y1835D02*X3175D01* X3145D02*X3140Y1840D01* D02*Y1855D01* X3180Y1873D02*Y1883D01* X3140Y1878D02*X3180D01* X3150Y1868D02*X3140Y1878D01* Y1896D02*Y1916D01* Y1896D02*X3160D01* D02*X3155Y1901D01* D02*Y1911D01* D02*X3160Y1916D01* D02*X3175D01* X3180Y1911D02*X3175Y1916D01* X3180Y1901D02*Y1911D01* X3175Y1896D02*X3180Y1901D01* G54D16*X1550Y1025D02*Y1175D01* Y775D02*Y925D01* X1950Y1175D02*X1550D01* X1950Y775D02*Y1175D01* X1550Y775D02*X1950D01* X1549Y925D02*G75G03I1J50X1550Y1025D01*G01* G04 Text: IC3 * G54D17*X1490Y935D02*Y945D01* Y940D02*X1530D01* Y935D02*Y945D01* Y963D02*Y978D01* X1525Y958D02*X1530Y963D01* X1495Y958D02*X1525D01* X1495D02*X1490Y963D01* D02*Y978D01* X1495Y991D02*X1490Y996D01* D02*Y1006D01* D02*X1495Y1011D01* D02*X1525D01* X1530Y1006D02*X1525Y1011D01* X1530Y996D02*Y1006D01* X1525Y991D02*X1530Y996D01* X1510D02*Y1011D01* G54D16*X950Y185D02*X1950D01* Y225D02*X950D01* X1950Y2D02*Y225D01* X950D02*Y2D01* G04 Text: PL2 * G54D17*X888Y85D02*X928D01* X888Y80D02*Y100D01* D02*X893Y105D01* D02*X903D01* X908Y100D02*X903Y105D01* X908Y85D02*Y100D01* X888Y118D02*X928D01* D02*Y138D01* X893Y151D02*X888Y156D01* D02*Y171D01* D02*X893Y176D01* D02*X903D01* X928Y151D02*X903Y176D01* X928Y151D02*Y176D01* G54D16*X850Y1025D02*Y1175D01* Y775D02*Y925D01* X1250Y1175D02*X850D01* X1250Y775D02*Y1175D01* X850Y775D02*X1250D01* X849Y925D02*G75G03I1J50X850Y1025D01*G01* G04 Text: IC2 * G54D17*X790Y845D02*Y855D01* Y850D02*X830D01* Y845D02*Y855D01* Y873D02*Y888D01* X825Y868D02*X830Y873D01* X795Y868D02*X825D01* X795D02*X790Y873D01* D02*Y888D01* X795Y901D02*X790Y906D01* D02*Y921D01* D02*X795Y926D01* D02*X805D01* X830Y901D02*X805Y926D01* X830Y901D02*Y926D01* G54D16*X2750Y375D02*X2850D01* D02*Y675D01* D02*X2750D01* D02*Y375D01* G04 Text: C5 * G54D17*X2820Y299D02*Y314D01* X2815Y294D02*X2820Y299D01* X2785Y294D02*X2815D01* X2785D02*X2780Y299D01* D02*Y314D01* Y327D02*Y347D01* Y327D02*X2800D01* D02*X2795Y332D01* D02*Y342D01* D02*X2800Y347D01* D02*X2815D01* X2820Y342D02*X2815Y347D01* X2820Y332D02*Y342D01* X2815Y327D02*X2820Y332D01* G54D16*X465Y425D02*X535D01* D02*Y625D01* D02*X465D01* D02*Y425D01* X500Y360D02*Y425D01* Y625D02*Y690D01* G04 Text: R2 * G54D17*X431Y350D02*Y370D01* D02*X436Y375D01* D02*X446D01* X451Y370D02*X446Y375D01* X451Y355D02*Y370D01* X431Y355D02*X471D01* X451D02*X471Y375D01* X436Y388D02*X431Y393D01* D02*Y408D01* D02*X436Y413D01* D02*X446D01* X471Y388D02*X446Y413D01* X471Y388D02*Y413D01* G54D16*X1350Y825D02*X1450D01* D02*Y1125D01* D02*X1350D01* D02*Y825D01* G04 Text: C7 * G54D17*X1330Y949D02*Y964D01* X1325Y944D02*X1330Y949D01* X1295Y944D02*X1325D01* X1295D02*X1290Y949D01* D02*Y964D01* X1330Y977D02*X1305Y1002D01* X1290D02*X1305D01* X1290Y977D02*Y1002D01* G54D16*X2050Y185D02*X2250D01* Y225D02*X2050D01* X2250Y2D02*Y225D01* X2050D02*Y2D01* G04 Text: PL3 * G54D17*X1988Y85D02*X2028D01* X1988Y80D02*Y100D01* D02*X1993Y105D01* D02*X2003D01* X2008Y100D02*X2003Y105D01* X2008Y85D02*Y100D01* X1988Y118D02*X2028D01* D02*Y138D01* X1993Y151D02*X1988Y156D01* D02*Y166D01* D02*X1993Y171D01* D02*X2023D01* X2028Y166D02*X2023Y171D01* X2028Y156D02*Y166D01* X2023Y151D02*X2028Y156D01* X2008D02*Y171D01* G54D16*X2350Y185D02*X2650D01* Y225D02*X2350D01* X2650Y2D02*Y225D01* X2350D02*Y2D01* G04 Text: PL4 * G54D17*X2288Y85D02*X2328D01* X2288Y80D02*Y100D01* D02*X2293Y105D01* D02*X2303D01* X2308Y100D02*X2303Y105D01* X2308Y85D02*Y100D01* X2288Y118D02*X2328D01* D02*Y138D01* X2308Y151D02*X2288Y171D01* X2308Y151D02*Y176D01* X2288Y171D02*X2328D01* G54D16*X2888Y1416D02*Y1584D01* Y1416D02*G75G03I112J84X2888Y1585D01*G01* G04 Text: IC6 * G54D17*X2827Y1461D02*Y1471D01* Y1466D02*X2867D01* Y1461D02*Y1471D01* Y1489D02*Y1504D01* X2862Y1484D02*X2867Y1489D01* X2832Y1484D02*X2862D01* X2832D02*X2827Y1489D01* D02*Y1504D01* Y1532D02*X2832Y1537D01* X2827Y1522D02*Y1532D01* X2832Y1517D02*X2827Y1522D01* X2832Y1517D02*X2862D01* D02*X2867Y1522D01* X2847Y1532D02*X2852Y1537D01* X2847Y1517D02*Y1532D01* X2867Y1522D02*Y1532D01* D02*X2862Y1537D01* X2852D02*X2862D01* G54D16*X1412Y609D02*Y441D01* X1411Y610D02*G75G03I-111J-85X1411Y441D01*G01* G04 Text: TR1 * G54D17*X1102Y476D02*Y496D01* Y486D02*X1142D01* X1102Y509D02*Y529D01* D02*X1107Y534D01* D02*X1117D01* X1122Y529D02*X1117Y534D01* X1122Y514D02*Y529D01* X1102Y514D02*X1142D01* X1122D02*X1142Y534D01* Y552D02*Y562D01* X1102Y557D02*X1142D01* X1112Y547D02*X1102Y557D01* G54D16*X3800Y732D02*X3200D01* D02*Y318D01* D02*X3800D01* D02*Y732D01* X3558D02*Y318D01* X3200Y625D02*X3048D01* X3200Y525D02*X3048D01* X3200Y425D02*X3048D01* X3300Y732D02*G75G03I50J0X3400Y732D01*G01* Y318D02*G75G03I-50J0X3300Y319D01*G01* G04 Text: IC1 * G54D17*X2904Y491D02*Y501D01* Y496D02*X2944D01* Y491D02*Y501D01* Y519D02*Y534D01* X2939Y514D02*X2944Y519D01* X2909Y514D02*X2939D01* X2909D02*X2904Y519D01* D02*Y534D01* X2944Y552D02*Y562D01* X2904Y557D02*X2944D01* X2914Y547D02*X2904Y557D01* G04 Text: YPCB0001B * G54D34*X125Y350D02*X131D01* D02*X143Y362D01* D02*X131Y374D01* X125D02*X131D01* X143Y362D02*X173D01* X125Y395D02*X173D01* X125Y389D02*Y413D01* D02*X131Y419D01* D02*X143D01* X149Y413D02*X143Y419D01* X149Y395D02*Y413D01* X173Y441D02*Y459D01* X167Y435D02*X173Y441D01* X131Y435D02*X167D01* X131D02*X125Y441D01* D02*Y459D01* X173Y474D02*Y498D01* D02*X167Y504D01* X155D02*X167D01* X149Y498D02*X155Y504D01* X149Y480D02*Y498D01* X125Y480D02*X173D01* X125Y474D02*Y498D01* D02*X131Y504D01* D02*X143D01* X149Y498D02*X143Y504D01* X167Y520D02*X173Y526D01* X131Y520D02*X167D01* X131D02*X125Y526D01* D02*Y538D01* D02*X131Y544D01* D02*X167D01* X173Y538D02*X167Y544D01* X173Y526D02*Y538D01* X161Y520D02*X137Y544D01* X167Y560D02*X173Y566D01* X131Y560D02*X167D01* X131D02*X125Y566D01* D02*Y578D01* D02*X131Y584D01* D02*X167D01* X173Y578D02*X167Y584D01* X173Y566D02*Y578D01* X161Y560D02*X137Y584D01* X167Y599D02*X173Y605D01* X131Y599D02*X167D01* X131D02*X125Y605D01* D02*Y617D01* D02*X131Y623D01* D02*X167D01* X173Y617D02*X167Y623D01* X173Y605D02*Y617D01* X161Y599D02*X137Y623D01* X173Y645D02*Y657D01* X125Y651D02*X173D01* X137Y639D02*X125Y651D01* X173Y672D02*Y696D01* D02*X167Y702D01* X155D02*X167D01* X149Y696D02*X155Y702D01* X149Y678D02*Y696D01* X125Y678D02*X173D01* X125Y672D02*Y696D01* D02*X131Y702D01* D02*X143D01* X149Y696D02*X143Y702D01* G04 Text: (C)2000 SKYBIO LIMITED * X3817Y765D02*X3823Y771D01* X3781Y765D02*X3775Y771D01* X3781Y765D02*X3817D01* X3823Y792D02*Y810D01* X3817Y786D02*X3823Y792D01* X3781Y786D02*X3817D01* X3781D02*X3775Y792D01* D02*Y810D01* Y826D02*X3781Y832D01* D02*X3817D01* X3823Y826D02*X3817Y832D01* X3781Y847D02*X3775Y853D01* D02*Y871D01* D02*X3781Y877D01* D02*X3793D01* X3823Y847D02*X3793Y877D01* X3823Y847D02*Y877D01* X3817Y893D02*X3823Y899D01* X3781Y893D02*X3817D01* X3781D02*X3775Y899D01* D02*Y911D01* D02*X3781Y917D01* D02*X3817D01* X3823Y911D02*X3817Y917D01* X3823Y899D02*Y911D01* X3811Y893D02*X3787Y917D01* X3817Y933D02*X3823Y939D01* X3781Y933D02*X3817D01* X3781D02*X3775Y939D01* D02*Y951D01* D02*X3781Y957D01* D02*X3817D01* X3823Y951D02*X3817Y957D01* X3823Y939D02*Y951D01* X3811Y933D02*X3787Y957D01* X3817Y972D02*X3823Y978D01* X3781Y972D02*X3817D01* X3781D02*X3775Y978D01* D02*Y990D01* D02*X3781Y996D01* D02*X3817D01* X3823Y990D02*X3817Y996D01* X3823Y978D02*Y990D01* X3811Y972D02*X3787Y996D01* X3775Y1057D02*X3781Y1063D01* X3775Y1039D02*Y1057D01* X3781Y1033D02*X3775Y1039D01* X3781Y1033D02*X3793D01* D02*X3799Y1039D01* D02*Y1057D01* D02*X3805Y1063D01* D02*X3817D01* X3823Y1057D02*X3817Y1063D01* X3823Y1039D02*Y1057D01* X3817Y1033D02*X3823Y1039D01* X3775Y1079D02*X3823D01* X3799D02*X3775Y1103D01* X3799Y1079D02*X3823Y1103D01* X3775Y1119D02*X3781D01* D02*X3793Y1131D01* D02*X3781Y1143D01* X3775D02*X3781D01* X3793Y1131D02*X3823D01* Y1158D02*Y1182D01* D02*X3817Y1188D01* X3805D02*X3817D01* X3799Y1182D02*X3805Y1188D01* X3799Y1164D02*Y1182D01* X3775Y1164D02*X3823D01* X3775Y1158D02*Y1182D01* D02*X3781Y1188D01* D02*X3793D01* X3799Y1182D02*X3793Y1188D01* X3775Y1204D02*Y1216D01* Y1210D02*X3823D01* Y1204D02*Y1216D01* X3781Y1231D02*X3817D01* X3781D02*X3775Y1237D01* D02*Y1249D01* D02*X3781Y1255D01* D02*X3817D01* X3823Y1249D02*X3817Y1255D01* X3823Y1237D02*Y1249D01* X3817Y1231D02*X3823Y1237D01* X3775Y1293D02*X3823D01* D02*Y1317D01* X3775Y1332D02*Y1344D01* Y1338D02*X3823D01* Y1332D02*Y1344D01* X3775Y1360D02*X3823D01* X3775D02*X3793Y1378D01* D02*X3775Y1396D01* D02*X3823D01* X3775Y1411D02*Y1423D01* Y1417D02*X3823D01* Y1411D02*Y1423D01* X3775Y1439D02*Y1463D01* Y1451D02*X3823D01* X3799Y1479D02*Y1497D01* X3823Y1479D02*Y1503D01* X3775Y1479D02*X3823D01* X3775D02*Y1503D01* Y1524D02*X3823D01* X3775Y1542D02*X3781Y1548D01* D02*X3817D01* X3823Y1542D02*X3817Y1548D01* X3823Y1518D02*Y1542D01* X3775Y1518D02*Y1542D01* D02* M02* gerbv-2.7.0/example/cslk/cslk.ps0000644000175000017500000010223213421555713016402 0ustar carstencarsten%!PS-Adobe-3.0 %%Title: $Id$, silkscreen, component side %%Creator: pcb 1.7.1.ALPHA %%CreationDate: Tue Apr 9 11:53:40 2002 %%For: neil (Neil Darlow,,,) %%LanguageLevel: 1 %%Orientation: Portrait %%Pages: 1 %%PageOrder: Ascend %%IncludeFeature: *PageSize a4 %%EndComments %%BeginProlog /PcbDict 200 dict def PcbDict begin PcbDict /DictMatrix matrix put % some constants /Black {0.0 mysetgray} def /White {1.0 mysetgray} def /TAN {0.207106781} def /MTAN {-0.207106781} def % draw a filled polygon % get (x,y)... and number of points from stack /PO { /number exch def newpath moveto number 1 sub { lineto } repeat closepath fill stroke } def /P { % draw a pin-polygon, % get x, y and thickness from stack /thickness exch def /y exch def /x exch def gsave x y translate thickness thickness scale 0.5 MTAN TAN -0.5 MTAN -0.5 -0.5 MTAN -0.5 TAN MTAN 0.5 TAN 0.5 0.5 TAN 8 PO grestore } def /PV { % pin or via, x, y and thickness are on the stack /drillinghole exch def /thickness exch def /y exch def /x exch def x y thickness P % draw drilling hole gsave White 0 setlinewidth newpath x y drillinghole 2 div 0 360 arc closepath fill stroke grestore } def /PVR { % pin or via, x, y and thickness are on the stack /drillinghole exch def /thickness exch def /y exch def /x exch def gsave 0 setlinewidth newpath x y thickness 2 div 0 360 arc closepath fill stroke % draw drilling whole White newpath x y drillinghole 2 div 0 360 arc closepath fill stroke grestore } def /PVSQ { % square pin or via, x, y and thickness are on the stack /drillinghole exch def /thickness exch def /y exch def /x exch def newpath x thickness 2 div sub y thickness 2 div sub moveto thickness 0 rlineto 0 thickness rlineto thickness neg 0 rlineto closepath fill stroke % draw drilling hole gsave White 0 setlinewidth newpath x y drillinghole 2 div 0 360 arc closepath fill stroke grestore } def /DH { % drill helpher; x, y, hole, copper-thickness are on stack /copper exch def /hole exch def /y exch def /x exch def gsave copper setlinewidth newpath x y hole copper add 2 div 0 360 arc closepath stroke grestore } def /L { % line, get x1, y1, x2, y2 and thickness from stack /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave thick setlinewidth x1 y1 moveto x2 y2 lineto stroke grestore } def /CL { % line, get x1, y1, x2, y2 and thickness from stack /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave White thick setlinewidth x1 y1 moveto x2 y2 lineto stroke grestore } def /B { % filled box, get x1, y1, x2 and y2 from stack /y2 exch def /x2 exch def /y1 exch def /x1 exch def newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto closepath fill stroke } def /PA { % pad, same as line L } def /A { % arc for elements, get x, y, width, height, thickness % startangle and delta-angle from stack /delta exch def /start exch def /thickness exch def /height exch def /width exch def /y exch def /x exch def % draw it gsave thickness setlinewidth /save DictMatrix currentmatrix def % scaling is less then zero because the coord system has to be swapped x y translate width neg height scale 0 0 1 start start delta add arc save setmatrix stroke grestore } def /CA { % arc for elements, get x, y, width, height, thickness % startangle and delta-angle from stack /delta exch def /start exch def /thickness exch def /height exch def /width exch def /y exch def /x exch def % draw it gsave White thickness setlinewidth /save DictMatrix currentmatrix def % scaling is less then zero because the coord system has to be swapped x y translate width neg height scale 0 0 1 start start delta add arc save setmatrix stroke grestore } def /CLRPV { % clears a pin/via for groundplane; x,y and thickness are on stack /thickness exch def /y exch def /x exch def gsave White x y thickness P grestore } def /CLRPVSQ { % clears a square pin, x,y and thickness are on stack /thickness exch def /y exch def /x exch def gsave White newpath x thickness 2 div sub y thickness 2 div sub moveto thickness 0 rlineto 0 thickness rlineto thickness neg 0 rlineto closepath fill stroke grestore } def /CLRPVR { % clears a round pin/via for groundplane; x,y and thickness are on the stack /thickness exch def /y exch def /x exch def gsave White 0 setlinewidth newpath x y thickness 2 div 0 360 arc closepath fill stroke grestore } def /CLRPA { % clear line, get x1, y1, x2, y2 and thickness from stack /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave White thick setlinewidth x1 y1 moveto x2 y2 lineto stroke grestore } def /CLRB { % cleared box, get x1, y1, x2 and y2 from stack /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave White newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto closepath fill stroke grestore } def /FILL { % draw a filled rectangle for the ground plane % get x1, y1, x2 and y2 from stack /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave 0 setlinewidth newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto closepath fill stroke grestore } def /Outline { % outline, get x1, y1, x2 and y2 from stack /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave 0.175 setlinewidth newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto closepath stroke grestore } def /Alignment { % alignment targets, get x1, y1, x2, y2 and distance from stack /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def gsave 0.175 setlinewidth newpath x1 y1 dis add moveto 0 dis 2 mul neg rlineto dis neg dis rmoveto dis 2 mul 0 rlineto stroke newpath x1 y1 dis 0 90 arcn stroke newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke newpath x2 y2 dis sub moveto 0 2 dis mul rlineto dis dup neg rmoveto 2 dis mul neg 0 rlineto stroke newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke grestore } def /mysetgray { setgray } def /mysetrgbcolor { setrgbcolor } def %%EndProlog %%BeginDefaults %%EndDefaults %%BeginSetup a4 0.0 setlinewidth 1 setlinecap Black %%EndSetup %%Page: 1 1 %%BeginPageSetup %%EndPageSetup gsave White newpath 159 323 moveto 435 323 lineto 435 518 lineto 159 518 lineto closepath fill stroke grestore % PCBMIN(40,-253), PCBMAX(3850,2428) % PCBOFFSET(2225,4505), PCBSCALE(1.00000) % PCBSTARTDATA --- do not remove --- gsave 0.07200 0.07200 scale 2225 4505 translate 1.000 1.000 scale 0 2681 translate 1 -1 scale -40 253 translate 2900 115 2900 185 10 L 2900 185 3100 185 10 L 3100 185 3100 115 10 L 3100 115 2900 115 10 L 2835 150 2900 150 10 L 3100 150 3165 150 10 L 2711 195 2711 175 8 L 2711 175 2716 170 8 L 2716 170 2726 170 8 L 2731 175 2726 170 8 L 2731 190 2731 175 8 L 2711 190 2751 190 8 L 2731 190 2751 170 8 L 2751 152 2751 142 8 L 2711 147 2751 147 8 L 2721 157 2711 147 8 L 2751 129 2726 104 8 L 2711 104 2726 104 8 L 2711 129 2711 104 8 L 2900 215 2900 285 10 L 2900 285 3100 285 10 L 3100 285 3100 215 10 L 3100 215 2900 215 10 L 2835 250 2900 250 10 L 3100 250 3165 250 10 L 2711 305 2711 285 8 L 2711 285 2716 280 8 L 2716 280 2726 280 8 L 2731 285 2726 280 8 L 2731 300 2731 285 8 L 2711 300 2751 300 8 L 2731 300 2751 280 8 L 2751 262 2751 252 8 L 2711 257 2751 257 8 L 2721 267 2711 257 8 L 2711 224 2716 219 8 L 2711 234 2711 224 8 L 2716 239 2711 234 8 L 2716 239 2746 239 8 L 2746 239 2751 234 8 L 2731 224 2736 219 8 L 2731 239 2731 224 8 L 2751 234 2751 224 8 L 2751 224 2746 219 8 L 2736 219 2746 219 8 L 1000 415 1000 485 10 L 1000 485 1200 485 10 L 1200 485 1200 415 10 L 1200 415 1000 415 10 L 935 450 1000 450 10 L 1200 450 1265 450 10 L 816 510 816 490 8 L 816 490 821 485 8 L 821 485 831 485 8 L 836 490 831 485 8 L 836 505 836 490 8 L 816 505 856 505 8 L 836 505 856 485 8 L 856 467 856 457 8 L 816 462 856 462 8 L 826 472 816 462 8 L 821 444 816 439 8 L 816 439 816 429 8 L 816 429 821 424 8 L 821 424 851 424 8 L 856 429 851 424 8 L 856 439 856 429 8 L 851 444 856 439 8 L 836 439 836 424 8 L 3100 2225 3155 2225 10 L 2845 2225 2900 2225 10 L 2940 2175 2940 2275 10 L 3100 2175 2900 2175 10 L 3100 2275 3100 2175 10 L 2900 2275 3100 2275 10 L 2900 2175 2900 2275 10 L 2836 2305 2876 2305 8 L 2836 2290 2841 2285 8 L 2841 2285 2871 2285 8 L 2876 2290 2871 2285 8 L 2876 2310 2876 2290 8 L 2836 2310 2836 2290 8 L 2876 2267 2876 2257 8 L 2836 2262 2876 2262 8 L 2846 2272 2836 2262 8 L 1565 2000 1635 2000 10 L 1635 2000 1635 1800 10 L 1635 1800 1565 1800 10 L 1565 1800 1565 2000 10 L 1600 2065 1600 2000 10 L 1600 1800 1600 1735 10 L 1506 1930 1506 1910 8 L 1506 1910 1511 1905 8 L 1511 1905 1521 1905 8 L 1526 1910 1521 1905 8 L 1526 1925 1526 1910 8 L 1506 1925 1546 1925 8 L 1526 1925 1546 1905 8 L 1506 1892 1506 1872 8 L 1506 1892 1526 1892 8 L 1526 1892 1521 1887 8 L 1521 1887 1521 1877 8 L 1521 1877 1526 1872 8 L 1526 1872 1541 1872 8 L 1546 1877 1541 1872 8 L 1546 1887 1546 1877 8 L 1541 1892 1546 1887 8 L 1000 315 1000 385 10 L 1000 385 1200 385 10 L 1200 385 1200 315 10 L 1200 315 1000 315 10 L 935 350 1000 350 10 L 1200 350 1265 350 10 L 816 400 816 380 8 L 816 380 821 375 8 L 821 375 831 375 8 L 836 380 831 375 8 L 836 395 836 380 8 L 816 395 856 395 8 L 836 395 856 375 8 L 856 357 856 347 8 L 816 352 856 352 8 L 826 362 816 352 8 L 836 334 816 314 8 L 836 334 836 309 8 L 816 314 856 314 8 L 915 2000 985 2000 10 L 985 2000 985 1800 10 L 985 1800 915 1800 10 L 915 1800 915 2000 10 L 950 2065 950 2000 10 L 950 1800 950 1735 10 L 856 1935 856 1915 8 L 856 1915 861 1910 8 L 861 1910 871 1910 8 L 876 1915 871 1910 8 L 876 1930 876 1915 8 L 856 1930 896 1930 8 L 876 1930 896 1910 8 L 876 1897 856 1877 8 L 876 1897 876 1872 8 L 856 1877 896 1877 8 L 3700 725 150 150 10 0 360 A 3582 925 3622 925 8 L 3582 910 3587 905 8 L 3587 905 3617 905 8 L 3622 910 3617 905 8 L 3622 930 3622 910 8 L 3582 930 3582 910 8 L 3587 892 3582 887 8 L 3582 887 3582 877 8 L 3582 877 3587 872 8 L 3587 872 3617 872 8 L 3622 877 3617 872 8 L 3622 887 3622 877 8 L 3617 892 3622 887 8 L 3602 887 3602 872 8 L 3150 1500 3150 1600 10 L 3150 1600 3450 1600 10 L 3450 1600 3450 1500 10 L 3450 1500 3150 1500 10 L 3130 1571 3130 1556 8 L 3125 1576 3130 1571 8 L 3095 1576 3125 1576 8 L 3095 1576 3090 1571 8 L 3090 1571 3090 1556 8 L 3130 1543 3110 1523 8 L 3095 1523 3110 1523 8 L 3090 1528 3095 1523 8 L 3090 1538 3090 1528 8 L 3095 1543 3090 1538 8 L 3095 1543 3105 1543 8 L 3105 1543 3110 1538 8 L 3110 1538 3110 1523 8 L 3540 200 3540 0 10 L 3540 1438 3540 1238 10 L 3340 1438 3540 1438 10 L 379 1438 579 1438 10 L 379 1238 379 1438 10 L 379 0 379 200 10 L 314 148 354 148 8 L 354 148 354 128 8 L 354 110 354 95 8 L 349 115 354 110 8 L 319 115 349 115 8 L 319 115 314 110 8 L 314 110 314 95 8 L 314 77 354 77 8 L 314 62 319 57 8 L 319 57 349 57 8 L 354 62 349 57 8 L 354 82 354 62 8 L 314 82 314 62 8 L 2050 1600 2150 1600 10 L 2150 1600 2150 1300 10 L 2150 1300 2050 1300 10 L 2050 1300 2050 1600 10 L 2030 1471 2030 1456 8 L 2025 1476 2030 1471 8 L 1995 1476 2025 1476 8 L 1995 1476 1990 1471 8 L 1990 1471 1990 1456 8 L 2025 1443 2030 1438 8 L 2015 1443 2025 1443 8 L 2015 1443 2010 1438 8 L 2010 1438 2010 1428 8 L 2010 1428 2015 1423 8 L 2015 1423 2025 1423 8 L 2030 1428 2025 1423 8 L 2030 1438 2030 1428 8 L 2005 1443 2010 1438 8 L 1995 1443 2005 1443 8 L 1995 1443 1990 1438 8 L 1990 1438 1990 1428 8 L 1990 1428 1995 1423 8 L 1995 1423 2005 1423 8 L 2010 1428 2005 1423 8 L 1500 1015 1500 1085 10 L 1500 1085 1700 1085 10 L 1700 1085 1700 1015 10 L 1700 1015 1500 1015 10 L 1435 1050 1500 1050 10 L 1700 1050 1765 1050 10 L 1311 1090 1311 1070 8 L 1311 1070 1316 1065 8 L 1316 1065 1326 1065 8 L 1331 1070 1326 1065 8 L 1331 1085 1331 1070 8 L 1311 1085 1351 1085 8 L 1331 1085 1351 1065 8 L 1351 1047 1351 1037 8 L 1311 1042 1351 1042 8 L 1321 1052 1311 1042 8 L 1351 1019 1351 1009 8 L 1311 1014 1351 1014 8 L 1321 1024 1311 1014 8 L 2224 810 2476 810 10 L 2224 990 2476 990 10 L 2224 900 90 90 10 270 180 A 2476 900 90 90 10 90 180 A 2075 941 2080 941 8 L 2080 941 2105 916 8 L 2105 916 2115 916 8 L 2105 941 2115 941 8 L 2105 941 2080 916 8 L 2075 916 2080 916 8 L 2075 903 2075 883 8 L 2075 893 2115 893 8 L 2115 865 2115 855 8 L 2075 860 2115 860 8 L 2085 870 2075 860 8 L 850 1015 850 1085 10 L 850 1085 1050 1085 10 L 1050 1085 1050 1015 10 L 1050 1015 850 1015 10 L 785 1050 850 1050 10 L 1050 1050 1115 1050 10 L 661 1080 661 1060 8 L 661 1060 666 1055 8 L 666 1055 676 1055 8 L 681 1060 676 1055 8 L 681 1075 681 1060 8 L 661 1075 701 1075 8 L 681 1075 701 1055 8 L 701 1042 681 1022 8 L 666 1022 681 1022 8 L 661 1027 666 1022 8 L 661 1037 661 1027 8 L 666 1042 661 1037 8 L 666 1042 676 1042 8 L 676 1042 681 1037 8 L 681 1037 681 1022 8 L 1650 500 1650 350 10 L 1650 750 1650 600 10 L 3050 350 1650 350 10 L 3050 750 3050 350 10 L 1650 750 3050 750 10 L 1650 550 50 50 10 90 180 A 1590 590 1590 580 8 L 1590 585 1630 585 8 L 1630 590 1630 580 8 L 1630 562 1630 547 8 L 1625 567 1630 562 8 L 1595 567 1625 567 8 L 1595 567 1590 562 8 L 1590 562 1590 547 8 L 1630 534 1605 509 8 L 1590 509 1605 509 8 L 1590 534 1590 509 8 L 300 1250 300 1195 10 L 300 1505 300 1450 10 L 250 1410 350 1410 10 L 250 1250 250 1450 10 L 350 1250 250 1250 10 L 350 1450 350 1250 10 L 250 1450 350 1450 10 L 336 1525 376 1525 8 L 336 1510 341 1505 8 L 341 1505 371 1505 8 L 376 1510 371 1505 8 L 376 1530 376 1510 8 L 336 1530 336 1510 8 L 341 1492 336 1487 8 L 336 1487 336 1472 8 L 336 1472 341 1467 8 L 341 1467 351 1467 8 L 376 1492 351 1467 8 L 376 1492 376 1467 8 L 200 475 160 160 10 0 360 A 383 519 413 519 8 L 413 519 423 509 8 L 423 509 413 499 8 L 383 499 413 499 8 L 383 486 383 466 8 L 383 466 388 461 8 L 388 461 398 461 8 L 403 466 398 461 8 L 403 481 403 466 8 L 383 481 423 481 8 L 403 481 423 461 8 L 423 443 423 433 8 L 383 438 423 438 8 L 393 448 383 438 8 L 2112 1816 2112 1984 10 L 2000 1900 140 140 10 217 286 A 1802 1949 1802 1929 8 L 1802 1939 1842 1939 8 L 1802 1916 1802 1896 8 L 1802 1896 1807 1891 8 L 1807 1891 1817 1891 8 L 1822 1896 1817 1891 8 L 1822 1911 1822 1896 8 L 1802 1911 1842 1911 8 L 1822 1911 1842 1891 8 L 1807 1878 1802 1873 8 L 1802 1873 1802 1858 8 L 1802 1858 1807 1853 8 L 1807 1853 1817 1853 8 L 1842 1878 1817 1853 8 L 1842 1878 1842 1853 8 L 2300 1050 2100 1050 10 L 2300 1150 2300 1050 10 L 2100 1150 2300 1150 10 L 2100 1050 2100 1150 10 L 2080 1136 2080 1121 8 L 2075 1141 2080 1136 8 L 2045 1141 2075 1141 8 L 2045 1141 2040 1136 8 L 2040 1136 2040 1121 8 L 2080 1103 2080 1093 8 L 2040 1098 2080 1098 8 L 2050 1108 2040 1098 8 L 2075 1080 2080 1075 8 L 2045 1080 2075 1080 8 L 2045 1080 2040 1075 8 L 2040 1075 2040 1065 8 L 2040 1065 2045 1060 8 L 2045 1060 2075 1060 8 L 2080 1065 2075 1060 8 L 2080 1075 2080 1065 8 L 2070 1080 2050 1060 8 L 1450 700 1550 700 10 L 1550 700 1550 400 10 L 1550 400 1450 400 10 L 1450 400 1450 700 10 L 1430 586 1430 571 8 L 1425 591 1430 586 8 L 1395 591 1425 591 8 L 1395 591 1390 586 8 L 1390 586 1390 571 8 L 1430 553 1430 543 8 L 1390 548 1430 548 8 L 1400 558 1390 548 8 L 1410 530 1390 510 8 L 1410 530 1410 505 8 L 1390 510 1430 510 8 L 650 2050 750 2050 10 L 750 2050 750 1750 10 L 750 1750 650 1750 10 L 650 1750 650 2050 10 L 720 2111 720 2096 8 L 715 2116 720 2111 8 L 685 2116 715 2116 8 L 685 2116 680 2111 8 L 680 2111 680 2096 8 L 720 2078 720 2068 8 L 680 2073 720 2073 8 L 690 2083 680 2073 8 L 750 475 800 425 10 L 600 475 800 475 10 L 600 175 600 475 10 L 800 175 600 175 10 L 800 475 800 175 10 L 580 355 580 340 8 L 575 360 580 355 8 L 545 360 575 360 8 L 545 360 540 355 8 L 540 355 540 340 8 L 580 322 580 312 8 L 540 317 580 317 8 L 550 327 540 317 8 L 540 284 545 279 8 L 540 294 540 284 8 L 545 299 540 294 8 L 545 299 575 299 8 L 575 299 580 294 8 L 560 284 565 279 8 L 560 299 560 284 8 L 580 294 580 284 8 L 580 284 575 279 8 L 565 279 575 279 8 L 2250 1400 2250 1250 10 L 2250 1650 2250 1500 10 L 3050 1250 2250 1250 10 L 3050 1650 3050 1250 10 L 2250 1650 3050 1650 10 L 2250 1450 50 50 10 90 180 A 2190 1490 2190 1480 8 L 2190 1485 2230 1485 8 L 2230 1490 2230 1480 8 L 2230 1462 2230 1447 8 L 2225 1467 2230 1462 8 L 2195 1467 2225 1467 8 L 2195 1467 2190 1462 8 L 2190 1462 2190 1447 8 L 2210 1434 2190 1414 8 L 2210 1434 2210 1409 8 L 2190 1414 2230 1414 8 L 1500 1115 1500 1185 10 L 1500 1185 1700 1185 10 L 1700 1185 1700 1115 10 L 1700 1115 1500 1115 10 L 1435 1150 1500 1150 10 L 1700 1150 1765 1150 10 L 1311 1205 1311 1185 8 L 1311 1185 1316 1180 8 L 1316 1180 1326 1180 8 L 1331 1185 1326 1180 8 L 1331 1200 1331 1185 8 L 1311 1200 1351 1200 8 L 1331 1200 1351 1180 8 L 1351 1162 1351 1152 8 L 1311 1157 1351 1157 8 L 1321 1167 1311 1157 8 L 1346 1139 1351 1134 8 L 1316 1139 1346 1139 8 L 1316 1139 1311 1134 8 L 1311 1134 1311 1124 8 L 1311 1124 1316 1119 8 L 1316 1119 1346 1119 8 L 1351 1124 1346 1119 8 L 1351 1134 1351 1124 8 L 1341 1139 1321 1119 8 L 565 2000 635 2000 10 L 635 2000 635 1800 10 L 635 1800 565 1800 10 L 565 1800 565 2000 10 L 600 2065 600 2000 10 L 600 1800 600 1735 10 L 531 2070 531 2050 8 L 531 2050 536 2045 8 L 536 2045 546 2045 8 L 551 2050 546 2045 8 L 551 2065 551 2050 8 L 531 2065 571 2065 8 L 551 2065 571 2045 8 L 536 2032 531 2027 8 L 531 2027 531 2017 8 L 531 2017 536 2012 8 L 536 2012 566 2012 8 L 571 2017 566 2012 8 L 571 2027 571 2017 8 L 566 2032 571 2027 8 L 551 2027 551 2012 8 L 1000 215 1000 285 10 L 1000 285 1200 285 10 L 1200 285 1200 215 10 L 1200 215 1000 215 10 L 935 250 1000 250 10 L 1200 250 1265 250 10 L 816 290 816 270 8 L 816 270 821 265 8 L 821 265 831 265 8 L 836 270 831 265 8 L 836 285 836 270 8 L 816 285 856 285 8 L 836 285 856 265 8 L 856 247 856 237 8 L 816 242 856 242 8 L 826 252 816 242 8 L 816 224 816 204 8 L 816 224 836 224 8 L 836 224 831 219 8 L 831 219 831 209 8 L 831 209 836 204 8 L 836 204 851 204 8 L 856 209 851 204 8 L 856 219 856 209 8 L 851 224 856 219 8 L 312 866 312 1034 10 L 200 950 140 140 10 217 286 A 332 999 332 979 8 L 332 989 372 989 8 L 332 966 332 946 8 L 332 946 337 941 8 L 337 941 347 941 8 L 352 946 347 941 8 L 352 961 352 946 8 L 332 961 372 961 8 L 352 961 372 941 8 L 337 928 332 923 8 L 332 923 332 913 8 L 332 913 337 908 8 L 337 908 367 908 8 L 372 913 367 908 8 L 372 923 372 913 8 L 367 928 372 923 8 L 352 923 352 908 8 L 3450 2375 3450 2175 10 L 3350 2375 3450 2375 10 L 3350 2175 3350 2375 10 L 3450 2175 3350 2175 10 L 3285 2301 3285 2286 8 L 3285 2286 3320 2286 8 L 3325 2291 3320 2286 8 L 3325 2296 3325 2291 8 L 3320 2301 3325 2296 8 L 3325 2268 3325 2258 8 L 3285 2263 3325 2263 8 L 3295 2273 3285 2263 8 L 850 1115 850 1185 10 L 850 1185 1050 1185 10 L 1050 1185 1050 1115 10 L 1050 1115 850 1115 10 L 785 1150 850 1150 10 L 1050 1150 1115 1150 10 L 661 1185 661 1165 8 L 661 1165 666 1160 8 L 666 1160 676 1160 8 L 681 1165 676 1160 8 L 681 1180 681 1165 8 L 661 1180 701 1180 8 L 681 1180 701 1160 8 L 696 1147 701 1142 8 L 686 1147 696 1147 8 L 686 1147 681 1142 8 L 681 1142 681 1132 8 L 681 1132 686 1127 8 L 686 1127 696 1127 8 L 701 1132 696 1127 8 L 701 1142 701 1132 8 L 676 1147 681 1142 8 L 666 1147 676 1147 8 L 666 1147 661 1142 8 L 661 1142 661 1132 8 L 661 1132 666 1127 8 L 666 1127 676 1127 8 L 681 1132 676 1127 8 L 50 675 50 775 10 L 50 775 350 775 10 L 350 775 350 675 10 L 350 675 50 675 10 L 410 766 410 751 8 L 405 771 410 766 8 L 375 771 405 771 8 L 375 771 370 766 8 L 370 766 370 751 8 L 410 733 410 723 8 L 370 728 410 728 8 L 380 738 370 728 8 L 375 710 370 705 8 L 370 705 370 690 8 L 370 690 375 685 8 L 375 685 385 685 8 L 410 710 385 685 8 L 410 710 410 685 8 L 2250 200 2250 300 10 L 2250 300 2550 300 10 L 2550 300 2550 200 10 L 2550 200 2250 200 10 L 2230 286 2230 271 8 L 2225 291 2230 286 8 L 2195 291 2225 291 8 L 2195 291 2190 286 8 L 2190 286 2190 271 8 L 2230 253 2230 243 8 L 2190 248 2230 248 8 L 2200 258 2190 248 8 L 2230 230 2205 205 8 L 2190 205 2205 205 8 L 2190 230 2190 205 8 L 2250 1800 2250 1900 10 L 2250 1900 2550 1900 10 L 2550 1900 2550 1800 10 L 2550 1800 2250 1800 10 L 2230 1871 2230 1856 8 L 2225 1876 2230 1871 8 L 2195 1876 2225 1876 8 L 2195 1876 2190 1871 8 L 2190 1871 2190 1856 8 L 2195 1843 2190 1838 8 L 2190 1838 2190 1828 8 L 2190 1828 2195 1823 8 L 2195 1823 2225 1823 8 L 2230 1828 2225 1823 8 L 2230 1838 2230 1828 8 L 2225 1843 2230 1838 8 L 2210 1838 2210 1823 8 L 2250 1900 2250 2000 10 L 2250 2000 2550 2000 10 L 2550 2000 2550 1900 10 L 2550 1900 2250 1900 10 L 2230 1976 2230 1961 8 L 2225 1981 2230 1976 8 L 2195 1981 2225 1981 8 L 2195 1981 2190 1976 8 L 2190 1976 2190 1961 8 L 2195 1948 2190 1943 8 L 2190 1943 2190 1928 8 L 2190 1928 2195 1923 8 L 2195 1923 2205 1923 8 L 2230 1948 2205 1923 8 L 2230 1948 2230 1923 8 L 2650 2050 2750 2050 10 L 2750 2050 2750 1750 10 L 2750 1750 2650 1750 10 L 2650 1750 2650 2050 10 L 2720 2126 2720 2111 8 L 2715 2131 2720 2126 8 L 2685 2131 2715 2131 8 L 2685 2131 2680 2126 8 L 2680 2126 2680 2111 8 L 2700 2098 2680 2078 8 L 2700 2098 2700 2073 8 L 2680 2078 2720 2078 8 L 650 1600 750 1600 10 L 750 1600 750 1300 10 L 750 1300 650 1300 10 L 650 1300 650 1600 10 L 630 1561 630 1546 8 L 625 1566 630 1561 8 L 595 1566 625 1566 8 L 595 1566 590 1561 8 L 590 1561 590 1546 8 L 590 1518 595 1513 8 L 590 1528 590 1518 8 L 595 1533 590 1528 8 L 595 1533 625 1533 8 L 625 1533 630 1528 8 L 610 1518 615 1513 8 L 610 1533 610 1518 8 L 630 1528 630 1518 8 L 630 1518 625 1513 8 L 615 1513 625 1513 8 L 3000 1115 3000 1185 10 L 3000 1185 3200 1185 10 L 3200 1185 3200 1115 10 L 3200 1115 3000 1115 10 L 2935 1150 3000 1150 10 L 3200 1150 3265 1150 10 L 2811 1200 2811 1180 8 L 2811 1180 2816 1175 8 L 2816 1175 2826 1175 8 L 2831 1180 2826 1175 8 L 2831 1195 2831 1180 8 L 2811 1195 2851 1195 8 L 2831 1195 2851 1175 8 L 2851 1157 2851 1147 8 L 2811 1152 2851 1152 8 L 2821 1162 2811 1152 8 L 2816 1134 2811 1129 8 L 2811 1129 2811 1114 8 L 2811 1114 2816 1109 8 L 2816 1109 2826 1109 8 L 2851 1134 2826 1109 8 L 2851 1134 2851 1109 8 L 650 900 750 900 10 L 750 900 750 600 10 L 750 600 650 600 10 L 650 600 650 900 10 L 630 781 630 766 8 L 625 786 630 781 8 L 595 786 625 786 8 L 595 786 590 781 8 L 590 781 590 766 8 L 630 748 630 738 8 L 590 743 630 743 8 L 600 753 590 743 8 L 595 725 590 720 8 L 590 720 590 710 8 L 590 710 595 705 8 L 595 705 625 705 8 L 630 710 625 705 8 L 630 720 630 710 8 L 625 725 630 720 8 L 610 720 610 705 8 L 2600 1050 2400 1050 10 L 2600 1150 2600 1050 10 L 2400 1150 2600 1150 10 L 2400 1050 2400 1150 10 L 2380 1136 2380 1121 8 L 2375 1141 2380 1136 8 L 2345 1141 2375 1141 8 L 2345 1141 2340 1136 8 L 2340 1136 2340 1121 8 L 2380 1103 2380 1093 8 L 2340 1098 2380 1098 8 L 2350 1108 2340 1098 8 L 2380 1075 2380 1065 8 L 2340 1070 2380 1070 8 L 2350 1080 2340 1070 8 L 350 2240 850 2240 10 L 850 2200 350 2200 10 L 850 2423 850 2200 10 L 350 2200 350 2423 10 L 288 2340 328 2340 8 L 288 2345 288 2325 8 L 288 2325 293 2320 8 L 293 2320 303 2320 8 L 308 2325 303 2320 8 L 308 2340 308 2325 8 L 288 2307 328 2307 8 L 328 2307 328 2287 8 L 328 2269 328 2259 8 L 288 2264 328 2264 8 L 298 2274 288 2264 8 L 850 950 1250 950 10 L 1250 950 1250 550 10 L 1250 550 850 550 10 L 850 950 850 800 10 L 850 700 850 550 10 L 850 750 50 50 10 90 180 A 790 785 790 775 8 L 790 780 830 780 8 L 830 785 830 775 8 L 830 757 830 742 8 L 825 762 830 757 8 L 795 762 825 762 8 L 795 762 790 757 8 L 790 757 790 742 8 L 790 729 790 709 8 L 790 729 810 729 8 L 810 729 805 724 8 L 805 724 805 714 8 L 805 714 810 709 8 L 810 709 825 709 8 L 830 714 825 709 8 L 830 724 830 714 8 L 825 729 830 724 8 L 165 1450 235 1450 10 L 235 1450 235 1250 10 L 235 1250 165 1250 10 L 165 1250 165 1450 10 L 200 1515 200 1450 10 L 200 1250 200 1185 10 L 231 1525 231 1505 8 L 231 1505 236 1500 8 L 236 1500 246 1500 8 L 251 1505 246 1500 8 L 251 1520 251 1505 8 L 231 1520 271 1520 8 L 251 1520 271 1500 8 L 271 1487 246 1462 8 L 231 1462 246 1462 8 L 231 1487 231 1462 8 L 65 1450 135 1450 10 L 135 1450 135 1250 10 L 135 1250 65 1250 10 L 65 1250 65 1450 10 L 100 1515 100 1450 10 L 100 1250 100 1185 10 L 131 1525 131 1505 8 L 131 1505 136 1500 8 L 136 1500 146 1500 8 L 151 1505 146 1500 8 L 151 1520 151 1505 8 L 131 1520 171 1520 8 L 151 1520 171 1500 8 L 131 1472 136 1467 8 L 131 1482 131 1472 8 L 136 1487 131 1482 8 L 136 1487 166 1487 8 L 166 1487 171 1482 8 L 151 1472 156 1467 8 L 151 1487 151 1472 8 L 171 1482 171 1472 8 L 171 1472 166 1467 8 L 156 1467 166 1467 8 L 365 2000 435 2000 10 L 435 2000 435 1800 10 L 435 1800 365 1800 10 L 365 1800 365 2000 10 L 400 2065 400 2000 10 L 400 1800 400 1735 10 L 331 2070 331 2050 8 L 331 2050 336 2045 8 L 336 2045 346 2045 8 L 351 2050 346 2045 8 L 351 2065 351 2050 8 L 331 2065 371 2065 8 L 351 2065 371 2045 8 L 371 2027 371 2017 8 L 331 2022 371 2022 8 L 341 2032 331 2022 8 L 3350 700 3400 650 10 L 3200 700 3400 700 10 L 3200 400 3200 700 10 L 3400 400 3200 400 10 L 3400 700 3400 400 10 L 3180 585 3180 570 8 L 3175 590 3180 585 8 L 3145 590 3175 590 8 L 3145 590 3140 585 8 L 3140 585 3140 570 8 L 3180 552 3180 542 8 L 3140 547 3180 547 8 L 3150 557 3140 547 8 L 3140 529 3140 509 8 L 3140 529 3160 529 8 L 3160 529 3155 524 8 L 3155 524 3155 514 8 L 3155 514 3160 509 8 L 3160 509 3175 509 8 L 3180 514 3175 509 8 L 3180 524 3180 514 8 L 3175 529 3180 524 8 L 1550 1400 1550 1250 10 L 1550 1650 1550 1500 10 L 1950 1250 1550 1250 10 L 1950 1650 1950 1250 10 L 1550 1650 1950 1650 10 L 1550 1450 50 50 10 90 180 A 1490 1490 1490 1480 8 L 1490 1485 1530 1485 8 L 1530 1490 1530 1480 8 L 1530 1462 1530 1447 8 L 1525 1467 1530 1462 8 L 1495 1467 1525 1467 8 L 1495 1467 1490 1462 8 L 1490 1462 1490 1447 8 L 1495 1434 1490 1429 8 L 1490 1429 1490 1419 8 L 1490 1419 1495 1414 8 L 1495 1414 1525 1414 8 L 1530 1419 1525 1414 8 L 1530 1429 1530 1419 8 L 1525 1434 1530 1429 8 L 1510 1429 1510 1414 8 L 950 2240 1950 2240 10 L 1950 2200 950 2200 10 L 1950 2423 1950 2200 10 L 950 2200 950 2423 10 L 888 2340 928 2340 8 L 888 2345 888 2325 8 L 888 2325 893 2320 8 L 893 2320 903 2320 8 L 908 2325 903 2320 8 L 908 2340 908 2325 8 L 888 2307 928 2307 8 L 928 2307 928 2287 8 L 893 2274 888 2269 8 L 888 2269 888 2254 8 L 888 2254 893 2249 8 L 893 2249 903 2249 8 L 928 2274 903 2249 8 L 928 2274 928 2249 8 L 850 1400 850 1250 10 L 850 1650 850 1500 10 L 1250 1250 850 1250 10 L 1250 1650 1250 1250 10 L 850 1650 1250 1650 10 L 850 1450 50 50 10 90 180 A 790 1580 790 1570 8 L 790 1575 830 1575 8 L 830 1580 830 1570 8 L 830 1552 830 1537 8 L 825 1557 830 1552 8 L 795 1557 825 1557 8 L 795 1557 790 1552 8 L 790 1552 790 1537 8 L 795 1524 790 1519 8 L 790 1519 790 1504 8 L 790 1504 795 1499 8 L 795 1499 805 1499 8 L 830 1524 805 1499 8 L 830 1524 830 1499 8 L 2750 2050 2850 2050 10 L 2850 2050 2850 1750 10 L 2850 1750 2750 1750 10 L 2750 1750 2750 2050 10 L 2820 2126 2820 2111 8 L 2815 2131 2820 2126 8 L 2785 2131 2815 2131 8 L 2785 2131 2780 2126 8 L 2780 2126 2780 2111 8 L 2780 2098 2780 2078 8 L 2780 2098 2800 2098 8 L 2800 2098 2795 2093 8 L 2795 2093 2795 2083 8 L 2795 2083 2800 2078 8 L 2800 2078 2815 2078 8 L 2820 2083 2815 2078 8 L 2820 2093 2820 2083 8 L 2815 2098 2820 2093 8 L 465 2000 535 2000 10 L 535 2000 535 1800 10 L 535 1800 465 1800 10 L 465 1800 465 2000 10 L 500 2065 500 2000 10 L 500 1800 500 1735 10 L 431 2075 431 2055 8 L 431 2055 436 2050 8 L 436 2050 446 2050 8 L 451 2055 446 2050 8 L 451 2070 451 2055 8 L 431 2070 471 2070 8 L 451 2070 471 2050 8 L 436 2037 431 2032 8 L 431 2032 431 2017 8 L 431 2017 436 2012 8 L 436 2012 446 2012 8 L 471 2037 446 2012 8 L 471 2037 471 2012 8 L 1350 1600 1450 1600 10 L 1450 1600 1450 1300 10 L 1450 1300 1350 1300 10 L 1350 1300 1350 1600 10 L 1330 1476 1330 1461 8 L 1325 1481 1330 1476 8 L 1295 1481 1325 1481 8 L 1295 1481 1290 1476 8 L 1290 1476 1290 1461 8 L 1330 1448 1305 1423 8 L 1290 1423 1305 1423 8 L 1290 1448 1290 1423 8 L 2050 2240 2250 2240 10 L 2250 2200 2050 2200 10 L 2250 2423 2250 2200 10 L 2050 2200 2050 2423 10 L 1988 2340 2028 2340 8 L 1988 2345 1988 2325 8 L 1988 2325 1993 2320 8 L 1993 2320 2003 2320 8 L 2008 2325 2003 2320 8 L 2008 2340 2008 2325 8 L 1988 2307 2028 2307 8 L 2028 2307 2028 2287 8 L 1993 2274 1988 2269 8 L 1988 2269 1988 2259 8 L 1988 2259 1993 2254 8 L 1993 2254 2023 2254 8 L 2028 2259 2023 2254 8 L 2028 2269 2028 2259 8 L 2023 2274 2028 2269 8 L 2008 2269 2008 2254 8 L 2350 2240 2650 2240 10 L 2650 2200 2350 2200 10 L 2650 2423 2650 2200 10 L 2350 2200 2350 2423 10 L 2288 2340 2328 2340 8 L 2288 2345 2288 2325 8 L 2288 2325 2293 2320 8 L 2293 2320 2303 2320 8 L 2308 2325 2303 2320 8 L 2308 2340 2308 2325 8 L 2288 2307 2328 2307 8 L 2328 2307 2328 2287 8 L 2308 2274 2288 2254 8 L 2308 2274 2308 2249 8 L 2288 2254 2328 2254 8 L 2888 1009 2888 841 10 L 3000 925 140 140 10 37 286 A 2827 964 2827 954 8 L 2827 959 2867 959 8 L 2867 964 2867 954 8 L 2867 936 2867 921 8 L 2862 941 2867 936 8 L 2832 941 2862 941 8 L 2832 941 2827 936 8 L 2827 936 2827 921 8 L 2827 893 2832 888 8 L 2827 903 2827 893 8 L 2832 908 2827 903 8 L 2832 908 2862 908 8 L 2862 908 2867 903 8 L 2847 893 2852 888 8 L 2847 908 2847 893 8 L 2867 903 2867 893 8 L 2867 893 2862 888 8 L 2852 888 2862 888 8 L 1412 1816 1412 1984 10 L 1300 1900 140 140 10 217 286 A 1102 1949 1102 1929 8 L 1102 1939 1142 1939 8 L 1102 1916 1102 1896 8 L 1102 1896 1107 1891 8 L 1107 1891 1117 1891 8 L 1122 1896 1117 1891 8 L 1122 1911 1122 1896 8 L 1102 1911 1142 1911 8 L 1122 1911 1142 1891 8 L 1142 1873 1142 1863 8 L 1102 1868 1142 1868 8 L 1112 1878 1102 1868 8 L 3800 1693 3200 1693 10 L 3200 1693 3200 2107 10 L 3200 2107 3800 2107 10 L 3800 2107 3800 1693 10 L 3558 1693 3558 2107 10 L 3200 1800 3048 1800 10 L 3200 1900 3048 1900 10 L 3200 2000 3048 2000 10 L 3350 1693 50 50 10 0 180 A 3350 2107 50 50 10 180 180 A 2904 1934 2904 1924 8 L 2904 1929 2944 1929 8 L 2944 1934 2944 1924 8 L 2944 1906 2944 1891 8 L 2939 1911 2944 1906 8 L 2909 1911 2939 1911 8 L 2909 1911 2904 1906 8 L 2904 1906 2904 1891 8 L 2944 1873 2944 1863 8 L 2904 1868 2944 1868 8 L 2914 1878 2904 1868 8 L 125 2075 131 2075 9 L 131 2075 143 2063 9 L 143 2063 131 2051 9 L 125 2051 131 2051 9 L 143 2063 173 2063 9 L 125 2030 173 2030 9 L 125 2036 125 2012 9 L 125 2012 131 2006 9 L 131 2006 143 2006 9 L 149 2012 143 2006 9 L 149 2030 149 2012 9 L 173 1984 173 1966 9 L 167 1990 173 1984 9 L 131 1990 167 1990 9 L 131 1990 125 1984 9 L 125 1984 125 1966 9 L 173 1951 173 1927 9 L 173 1927 167 1921 9 L 155 1921 167 1921 9 L 149 1927 155 1921 9 L 149 1945 149 1927 9 L 125 1945 173 1945 9 L 125 1951 125 1927 9 L 125 1927 131 1921 9 L 131 1921 143 1921 9 L 149 1927 143 1921 9 L 167 1905 173 1899 9 L 131 1905 167 1905 9 L 131 1905 125 1899 9 L 125 1899 125 1887 9 L 125 1887 131 1881 9 L 131 1881 167 1881 9 L 173 1887 167 1881 9 L 173 1899 173 1887 9 L 161 1905 137 1881 9 L 167 1865 173 1859 9 L 131 1865 167 1865 9 L 131 1865 125 1859 9 L 125 1859 125 1847 9 L 125 1847 131 1841 9 L 131 1841 167 1841 9 L 173 1847 167 1841 9 L 173 1859 173 1847 9 L 161 1865 137 1841 9 L 167 1826 173 1820 9 L 131 1826 167 1826 9 L 131 1826 125 1820 9 L 125 1820 125 1808 9 L 125 1808 131 1802 9 L 131 1802 167 1802 9 L 173 1808 167 1802 9 L 173 1820 173 1808 9 L 161 1826 137 1802 9 L 173 1780 173 1768 9 L 125 1774 173 1774 9 L 137 1786 125 1774 9 L 173 1753 173 1729 9 L 173 1729 167 1723 9 L 155 1723 167 1723 9 L 149 1729 155 1723 9 L 149 1747 149 1729 9 L 125 1747 173 1747 9 L 125 1753 125 1729 9 L 125 1729 131 1723 9 L 131 1723 143 1723 9 L 149 1729 143 1723 9 L 3817 1660 3823 1654 9 L 3781 1660 3775 1654 9 L 3781 1660 3817 1660 9 L 3823 1633 3823 1615 9 L 3817 1639 3823 1633 9 L 3781 1639 3817 1639 9 L 3781 1639 3775 1633 9 L 3775 1633 3775 1615 9 L 3775 1599 3781 1593 9 L 3781 1593 3817 1593 9 L 3823 1599 3817 1593 9 L 3781 1578 3775 1572 9 L 3775 1572 3775 1554 9 L 3775 1554 3781 1548 9 L 3781 1548 3793 1548 9 L 3823 1578 3793 1548 9 L 3823 1578 3823 1548 9 L 3817 1532 3823 1526 9 L 3781 1532 3817 1532 9 L 3781 1532 3775 1526 9 L 3775 1526 3775 1514 9 L 3775 1514 3781 1508 9 L 3781 1508 3817 1508 9 L 3823 1514 3817 1508 9 L 3823 1526 3823 1514 9 L 3811 1532 3787 1508 9 L 3817 1492 3823 1486 9 L 3781 1492 3817 1492 9 L 3781 1492 3775 1486 9 L 3775 1486 3775 1474 9 L 3775 1474 3781 1468 9 L 3781 1468 3817 1468 9 L 3823 1474 3817 1468 9 L 3823 1486 3823 1474 9 L 3811 1492 3787 1468 9 L 3817 1453 3823 1447 9 L 3781 1453 3817 1453 9 L 3781 1453 3775 1447 9 L 3775 1447 3775 1435 9 L 3775 1435 3781 1429 9 L 3781 1429 3817 1429 9 L 3823 1435 3817 1429 9 L 3823 1447 3823 1435 9 L 3811 1453 3787 1429 9 L 3775 1368 3781 1362 9 L 3775 1386 3775 1368 9 L 3781 1392 3775 1386 9 L 3781 1392 3793 1392 9 L 3793 1392 3799 1386 9 L 3799 1386 3799 1368 9 L 3799 1368 3805 1362 9 L 3805 1362 3817 1362 9 L 3823 1368 3817 1362 9 L 3823 1386 3823 1368 9 L 3817 1392 3823 1386 9 L 3775 1346 3823 1346 9 L 3799 1346 3775 1322 9 L 3799 1346 3823 1322 9 L 3775 1306 3781 1306 9 L 3781 1306 3793 1294 9 L 3793 1294 3781 1282 9 L 3775 1282 3781 1282 9 L 3793 1294 3823 1294 9 L 3823 1267 3823 1243 9 L 3823 1243 3817 1237 9 L 3805 1237 3817 1237 9 L 3799 1243 3805 1237 9 L 3799 1261 3799 1243 9 L 3775 1261 3823 1261 9 L 3775 1267 3775 1243 9 L 3775 1243 3781 1237 9 L 3781 1237 3793 1237 9 L 3799 1243 3793 1237 9 L 3775 1221 3775 1209 9 L 3775 1215 3823 1215 9 L 3823 1221 3823 1209 9 L 3781 1194 3817 1194 9 L 3781 1194 3775 1188 9 L 3775 1188 3775 1176 9 L 3775 1176 3781 1170 9 L 3781 1170 3817 1170 9 L 3823 1176 3817 1170 9 L 3823 1188 3823 1176 9 L 3817 1194 3823 1188 9 L 3775 1132 3823 1132 9 L 3823 1132 3823 1108 9 L 3775 1093 3775 1081 9 L 3775 1087 3823 1087 9 L 3823 1093 3823 1081 9 L 3775 1065 3823 1065 9 L 3775 1065 3793 1047 9 L 3793 1047 3775 1029 9 L 3775 1029 3823 1029 9 L 3775 1014 3775 1002 9 L 3775 1008 3823 1008 9 L 3823 1014 3823 1002 9 L 3775 986 3775 962 9 L 3775 974 3823 974 9 L 3799 946 3799 928 9 L 3823 946 3823 922 9 L 3775 946 3823 946 9 L 3775 946 3775 922 9 L 3775 901 3823 901 9 L 3775 883 3781 877 9 L 3781 877 3817 877 9 L 3823 883 3817 877 9 L 3823 907 3823 883 9 L 3775 907 3775 883 9 L grestore % PCBENDDATA --- do not remove --- showpage %%EOF gerbv-2.7.0/example/numpres/0000755000175000017500000000000013423533413015632 5ustar carstencarstengerbv-2.7.0/example/numpres/numpres.pcb.output_unplated-drill.grb0000644000175000017500000000013213421555714025123 0ustar carstencarstenM48 INCH,TZ T01F00S00C0.020 T02F00S00C0.028 T03F00S00C0.030 T04F00S00C0.100 % M30 gerbv-2.7.0/example/numpres/Makefile.am0000644000175000017500000000225013421555714017673 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST= numpres.pcb.output_group1.grb numpres.pcb.output_group2.grb \ numpres.pcb numpres.pcb.output_plated-drill.grb \ numpres.pcb.output_componentmask.grb numpres.pcb.output_soldermask.grb \ numpres.pcb.output_componentsilk.grb numpres.pcb.output_unplated-drill.grb MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/numpres/numpres.pcb.output_plated-drill.grb0000644000175000017500000000215213421555714024564 0ustar carstencarstenM48 INCH,TZ T01F00S00C0.020 T02F00S00C0.028 T03F00S00C0.030 T04F00S00C0.100 % T01 X3070Y2010 X3070Y2410 X3030Y1820 X3030Y1620 X2940Y1860 X2940Y2260 X2680Y1950 X2680Y2350 X2560Y1860 X2560Y2260 X2330Y1530 X2330Y1830 X2450Y1950 X2450Y2350 X2450Y1580 X2450Y1880 X2800Y1950 X2800Y2350 X1690Y1955 X1690Y2255 X1830Y2055 X1830Y2355 X2220Y2260 X2220Y1860 X2340Y2350 X2340Y1950 X2100Y1860 X2100Y2260 X2040Y1250 X2090Y1150 X2140Y1250 X2190Y1150 X2240Y1250 X2290Y1150 X2340Y1250 X2390Y1150 X2440Y1250 X2490Y1150 X2540Y1250 X2590Y1150 X2640Y1250 X2690Y1150 X2740Y1250 X2790Y1150 X2840Y1250 X2890Y1150 X2940Y1250 X2990Y1150 X3040Y1250 X3090Y1150 X3140Y1250 X3190Y1150 X3240Y1250 X2510Y1560 X2810Y1560 X3660Y1980 X3660Y1580 X3660Y2045 X3660Y2345 X1990Y1950 X1990Y2350 T02 X3210Y2350 X3210Y2250 X3210Y2150 X3210Y2050 X3210Y1950 X3210Y1850 X3210Y1750 X3210Y1650 X3210Y1550 X3510Y1550 X3510Y1650 X3510Y1750 X3510Y1850 X3510Y1950 X3510Y2050 X3510Y2150 X3510Y2250 X3510Y2350 T03 X3690Y1360 X3690Y1260 X1650Y1660 X1650Y1760 T04 X1770Y1200 X3510Y1200 M30 gerbv-2.7.0/example/numpres/numpres.pcb.output_componentmask.grb0000644000175000017500000000404713421555714025072 0ustar carstencarstenG04 Title: test, solder mask component side * G04 Creator: pcb 1.7.1.ALPHA * G04 CreationDate: Tue Jul 17 09:58:54 2001 UTC * G04 For: spe * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 6000 5000 * G04 PCB-Coordinate-Origin: lower left * %FSLAX23Y23*% %MOIN*% %IPNEG*% %LPD*% %ADD11C,0.025*% %ADD12C,0.010*% %ADD13C,0.040*% %ADD14C,0.055*% %ADD15R,0.060X0.060*% %ADD16R,0.090X0.090*% %ADD17C,0.060*% %ADD18C,0.090*% %ADD19C,0.020*% %ADD20C,0.008*% %ADD21R,0.050X0.050*% %ADD22R,0.080X0.080*% %ADD23C,0.050*% %ADD24C,0.080*% %ADD25C,0.120*% %ADD26C,0.150*% G01X0Y0D02* G54D16*X3690Y1360D03* G54D18*Y1260D03* G54D16*X3210Y2350D03* G54D18*Y2250D03* Y2150D03* Y2050D03* Y1950D03* Y1850D03* Y1750D03* Y1650D03* Y1550D03* X3510D03* Y1650D03* Y1750D03* Y1850D03* Y1950D03* Y2050D03* Y2150D03* Y2250D03* Y2350D03* G54D16*X1650Y1660D03* G54D18*Y1760D03* G54D22*X3070Y2010D03* G54D24*Y2410D03* G54D16*X3030Y1820D03* G54D18*Y1620D03* G54D22*X2940Y1860D03* G54D24*Y2260D03* G54D22*X2680Y1950D03* G54D24*Y2350D03* G54D22*X2560Y1860D03* G54D24*Y2260D03* G54D22*X2330Y1530D03* G54D24*Y1830D03* G54D22*X2450Y1950D03* G54D24*Y2350D03* G54D22*Y1580D03* G54D24*Y1880D03* G54D22*X2800Y1950D03* G54D24*Y2350D03* G54D22*X1690Y1955D03* G54D24*Y2255D03* G54D22*X1830Y2055D03* G54D24*Y2355D03* G54D22*X2220Y2260D03* G54D24*Y1860D03* G54D22*X2340Y2350D03* G54D24*Y1950D03* G54D22*X2100Y1860D03* G54D24*Y2260D03* G54D26*X1770Y1200D03* X3510D03* G54D18*X2040Y1250D03* X2090Y1150D03* X2140Y1250D03* X2190Y1150D03* X2240Y1250D03* X2290Y1150D03* X2340Y1250D03* X2390Y1150D03* X2440Y1250D03* X2490Y1150D03* X2540Y1250D03* X2590Y1150D03* X2640Y1250D03* X2690Y1150D03* X2740Y1250D03* X2790Y1150D03* X2840Y1250D03* X2890Y1150D03* X2940Y1250D03* X2990Y1150D03* X3040Y1250D03* X3090Y1150D03* X3140Y1250D03* X3190Y1150D03* G54D16*X3240Y1250D03* G54D22*X2510Y1560D03* G54D24*X2810D03* G54D22*X3660Y1980D03* G54D24*Y1580D03* G54D22*Y2045D03* G54D24*Y2345D03* G54D22*X1990Y1950D03* G54D24*Y2350D03* D02* M02* gerbv-2.7.0/example/numpres/Makefile.in0000644000175000017500000003644313423533413017711 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/numpres ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = numpres.pcb.output_group1.grb numpres.pcb.output_group2.grb \ numpres.pcb numpres.pcb.output_plated-drill.grb \ numpres.pcb.output_componentmask.grb numpres.pcb.output_soldermask.grb \ numpres.pcb.output_componentsilk.grb numpres.pcb.output_unplated-drill.grb MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/numpres/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/numpres/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/numpres/numpres.pcb.output_componentsilk.grb0000644000175000017500000002737613421555714025113 0ustar carstencarstenG04 Title: test, silkscreen, component side * G04 Creator: pcb 1.7.1.ALPHA * G04 CreationDate: Tue Jul 17 09:58:54 2001 UTC * G04 For: spe * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 6000 5000 * G04 PCB-Coordinate-Origin: lower left * %FSLAX23Y23*% %MOIN*% %IPPOS*% %LPD*% %ADD11C,0.025*% %ADD12C,0.010*% %ADD13C,0.040*% %ADD14C,0.055*% %ADD15R,0.060X0.060*% %ADD16R,0.090X0.090*% %ADD17C,0.060*% %ADD18C,0.090*% %ADD19C,0.020*% %ADD20C,0.008*% %ADD21R,0.050X0.050*% %ADD22R,0.080X0.080*% %ADD23C,0.050*% %ADD24C,0.080*% %ADD25C,0.120*% %ADD26C,0.150*% G01X0Y0D02* G54D19*X3740Y1410D02*X3640D01* D02*Y1210D01* D02*X3740D01* D02*Y1410D01* G54D12*X3640D02*Y1310D01* D02*X3740D01* G04 Text: CONN2 * G54D20*X3735Y1190D02*X3720D01* X3740Y1185D02*X3735Y1190D01* X3740Y1155D02*Y1185D01* Y1155D02*X3735Y1150D01* D02*X3720D01* X3707Y1155D02*Y1185D01* Y1155D02*X3702Y1150D01* D02*X3692D01* D02*X3687Y1155D01* D02*Y1185D01* X3692Y1190D02*X3687Y1185D01* X3702Y1190D02*X3692D01* X3707Y1185D02*X3702Y1190D01* X3674Y1150D02*Y1190D01* Y1150D02*Y1155D01* D02*X3649Y1180D01* Y1150D02*Y1190D01* X3636Y1150D02*Y1190D01* Y1150D02*Y1155D01* D02*X3611Y1180D01* Y1150D02*Y1190D01* X3598Y1155D02*X3593Y1150D01* D02*X3578D01* D02*X3573Y1155D01* D02*Y1165D01* X3598Y1190D02*X3573Y1165D01* X3598Y1190D02*X3573D01* G54D12*X3160Y2400D02*Y1500D01* D02*X3560D01* D02*Y2400D01* X3160D02*X3310D01* X3410D02*X3560D01* X3310D02*G75G03I50J0X3410Y2400D01*G01* G04 Text: IC1 * G54D20*X3380Y2300D02*Y2290D01* Y2295D02*X3340D01* Y2300D02*Y2290D01* Y2272D02*Y2257D01* X3345Y2277D02*X3340Y2272D01* X3375Y2277D02*X3345D01* X3375D02*X3380Y2272D01* D02*Y2257D01* X3340Y2239D02*Y2229D01* X3380Y2234D02*X3340D01* X3370Y2244D02*X3380Y2234D01* G54D12*X1700Y1710D02*X1600D01* X1700Y1610D02*Y1710D01* G54D19*X1600Y1810D02*Y1610D01* X1700Y1810D02*X1600D01* X1700Y1610D02*Y1810D01* X1600Y1610D02*X1700D01* G04 Text: CONN1 * G54D20*X1605Y1830D02*X1620D01* X1600Y1835D02*X1605Y1830D01* X1600Y1865D02*Y1835D01* Y1865D02*X1605Y1870D01* D02*X1620D01* X1633Y1865D02*Y1835D01* Y1865D02*X1638Y1870D01* D02*X1648D01* D02*X1653Y1865D01* D02*Y1835D01* X1648Y1830D02*X1653Y1835D01* X1638Y1830D02*X1648D01* X1633Y1835D02*X1638Y1830D01* X1666Y1870D02*Y1830D01* Y1870D02*Y1865D01* D02*X1691Y1840D01* Y1870D02*Y1830D01* X1704Y1870D02*Y1830D01* Y1870D02*Y1865D01* D02*X1729Y1840D01* Y1870D02*Y1830D01* X1747D02*X1757D01* X1752Y1870D02*Y1830D01* X1742Y1860D02*X1752Y1870D01* G54D19*X3020Y2110D02*Y2310D01* D02*X3120D01* D02*Y2110D01* D02*X3020D01* X3070Y2010D02*Y2110D01* Y2310D02*Y2410D01* G04 Text: R11 * G54D20*X3050Y2130D02*Y2150D01* D02*X3055Y2155D01* D02*X3065D01* X3070Y2150D02*X3065Y2155D01* X3070Y2135D02*Y2150D01* X3050Y2135D02*X3090D01* X3070D02*X3090Y2155D01* Y2173D02*Y2183D01* X3050Y2178D02*X3090D01* X3060Y2168D02*X3050Y2178D01* X3090Y2201D02*Y2211D01* X3050Y2206D02*X3090D01* X3060Y2196D02*X3050Y2206D01* G54D12*X3080Y1820D02*Y1620D01* X2980Y1820D02*Y1620D01* X3080Y1820D02*G75G03I-50J0X2980Y1821D01*G01* Y1620D02*G75G03I50J0X3080Y1620D01*G01* G04 Text: X1 * G54D20*X2960Y1820D02*X2955D01* D02*X2930Y1795D01* D02*X2920D01* X2930Y1820D02*X2920D01* X2930D02*X2955Y1795D01* X2960D02*X2955D01* X2920Y1777D02*Y1767D01* X2960Y1772D02*X2920D01* X2950Y1782D02*X2960Y1772D01* G54D19*X2890Y1960D02*Y2160D01* D02*X2990D01* D02*Y1960D01* D02*X2890D01* X2940Y1860D02*Y1960D01* Y2160D02*Y2260D01* G04 Text: R9 * G54D20*X2920Y1980D02*Y2000D01* D02*X2925Y2005D01* D02*X2935D01* X2940Y2000D02*X2935Y2005D01* X2940Y1985D02*Y2000D01* X2920Y1985D02*X2960D01* X2940D02*X2960Y2005D01* Y2018D02*X2940Y2038D01* X2925D02*X2940D01* X2920Y2033D02*X2925Y2038D01* X2920Y2023D02*Y2033D01* X2925Y2018D02*X2920Y2023D01* X2925Y2018D02*X2935D01* D02*X2940Y2023D01* D02*Y2038D01* G54D19*X2630Y2050D02*Y2250D01* D02*X2730D01* D02*Y2050D01* D02*X2630D01* X2680Y1950D02*Y2050D01* Y2250D02*Y2350D01* G04 Text: R7 * G54D20*X2660Y2070D02*Y2090D01* D02*X2665Y2095D01* D02*X2675D01* X2680Y2090D02*X2675Y2095D01* X2680Y2075D02*Y2090D01* X2660Y2075D02*X2700D01* X2680D02*X2700Y2095D01* Y2108D02*X2675Y2133D01* X2660D02*X2675D01* X2660Y2108D02*Y2133D01* G54D19*X2510Y1960D02*Y2160D01* D02*X2610D01* D02*Y1960D01* D02*X2510D01* X2560Y1860D02*Y1960D01* Y2160D02*Y2260D01* G04 Text: R6 * G54D20*X2540Y1980D02*Y2000D01* D02*X2545Y2005D01* D02*X2555D01* X2560Y2000D02*X2555Y2005D01* X2560Y1985D02*Y2000D01* X2540Y1985D02*X2580D01* X2560D02*X2580Y2005D01* X2540Y2033D02*X2545Y2038D01* X2540Y2023D02*Y2033D01* X2545Y2018D02*X2540Y2023D01* X2545Y2018D02*X2575D01* D02*X2580Y2023D01* X2560Y2033D02*X2565Y2038D01* X2560Y2018D02*Y2033D01* X2580Y2023D02*Y2033D01* D02*X2575Y2038D01* X2565D02*X2575D01* G54D12*X2330Y1530D02*Y1630D01* Y1730D02*Y1830D01* Y1630D02*X2280Y1730D01* D02*X2380D01* D02*X2330Y1630D01* X2280D02*X2380D01* G04 Text: D2 * G54D20*X2280Y1755D02*X2320D01* X2280Y1770D02*X2285Y1775D01* D02*X2315D01* X2320Y1770D02*X2315Y1775D01* X2320Y1750D02*Y1770D01* X2280Y1750D02*Y1770D01* X2285Y1788D02*X2280Y1793D01* D02*Y1808D01* D02*X2285Y1813D01* D02*X2295D01* X2320Y1788D02*X2295Y1813D01* X2320Y1788D02*Y1813D01* G54D19*X2400Y2050D02*Y2250D01* D02*X2500D01* D02*Y2050D01* D02*X2400D01* X2450Y1950D02*Y2050D01* Y2250D02*Y2350D01* G04 Text: R5 * G54D20*X2430Y2070D02*Y2090D01* D02*X2435Y2095D01* D02*X2445D01* X2450Y2090D02*X2445Y2095D01* X2450Y2075D02*Y2090D01* X2430Y2075D02*X2470D01* X2450D02*X2470Y2095D01* X2430Y2108D02*Y2128D01* Y2108D02*X2450D01* D02*X2445Y2113D01* D02*Y2123D01* D02*X2450Y2128D01* D02*X2465D01* X2470Y2123D02*X2465Y2128D01* X2470Y2113D02*Y2123D01* X2465Y2108D02*X2470Y2113D01* G54D12*X2450Y1580D02*Y1680D01* Y1780D02*Y1880D01* Y1680D02*X2400Y1780D01* D02*X2500D01* D02*X2450Y1680D01* X2400D02*X2500D01* G04 Text: D1 * G54D20*X2400Y1805D02*X2440D01* X2400Y1820D02*X2405Y1825D01* D02*X2435D01* X2440Y1820D02*X2435Y1825D01* X2440Y1800D02*Y1820D01* X2400Y1800D02*Y1820D01* X2440Y1843D02*Y1853D01* X2400Y1848D02*X2440D01* X2410Y1838D02*X2400Y1848D01* G54D19*X2750Y2050D02*Y2250D01* D02*X2850D01* D02*Y2050D01* D02*X2750D01* X2800Y1950D02*Y2050D01* Y2250D02*Y2350D01* G04 Text: R8 * G54D20*X2780Y2070D02*Y2090D01* D02*X2785Y2095D01* D02*X2795D01* X2800Y2090D02*X2795Y2095D01* X2800Y2075D02*Y2090D01* X2780Y2075D02*X2820D01* X2800D02*X2820Y2095D01* X2815Y2108D02*X2820Y2113D01* X2805Y2108D02*X2815D01* X2805D02*X2800Y2113D01* D02*Y2123D01* D02*X2805Y2128D01* D02*X2815D01* X2820Y2123D02*X2815Y2128D01* X2820Y2113D02*Y2123D01* X2795Y2108D02*X2800Y2113D01* X2785Y2108D02*X2795D01* X2785D02*X2780Y2113D01* D02*Y2123D01* D02*X2785Y2128D01* D02*X2795D01* X2800Y2123D02*X2795Y2128D01* G54D12*X1690Y1955D02*Y2030D01* Y2180D02*Y2255D01* X1665Y2030D02*Y2180D01* D02*X1715D01* D02*Y2030D01* D02*X1665D01* G04 Text: C2 * G54D20*X1775Y2205D02*Y2220D01* X1770Y2200D02*X1775Y2205D01* X1740Y2200D02*X1770D01* X1740D02*X1735Y2205D01* D02*Y2220D01* X1740Y2233D02*X1735Y2238D01* D02*Y2253D01* D02*X1740Y2258D01* D02*X1750D01* X1775Y2233D02*X1750Y2258D01* X1775Y2233D02*Y2258D01* G54D12*X1830Y2055D02*Y2130D01* Y2280D02*Y2355D01* X1805Y2130D02*Y2280D01* D02*X1855D01* D02*Y2130D01* D02*X1805D01* G04 Text: C1 * G54D20*X1915Y2305D02*Y2320D01* X1910Y2300D02*X1915Y2305D01* X1880Y2300D02*X1910D01* X1880D02*X1875Y2305D01* D02*Y2320D01* X1915Y2338D02*Y2348D01* X1875Y2343D02*X1915D01* X1885Y2333D02*X1875Y2343D01* G54D19*X2270Y2160D02*Y1960D01* D02*X2170D01* D02*Y2160D01* D02*X2270D01* X2220Y2260D02*Y2160D01* Y1960D02*Y1860D01* G04 Text: R4 * G54D20*X2240Y2140D02*Y2120D01* D02*X2235Y2115D01* D02*X2225D01* X2220Y2120D02*X2225Y2115D01* X2220Y2135D02*Y2120D01* X2240Y2135D02*X2200D01* X2220D02*X2200Y2115D01* X2220Y2102D02*X2240Y2082D01* X2220Y2102D02*Y2077D01* X2240Y2082D02*X2200D01* G54D19*X2390Y2250D02*Y2050D01* D02*X2290D01* D02*Y2250D01* D02*X2390D01* X2340Y2350D02*Y2250D01* Y2050D02*Y1950D01* G04 Text: R3 * G54D20*X2360Y2230D02*Y2210D01* D02*X2355Y2205D01* D02*X2345D01* X2340Y2210D02*X2345Y2205D01* X2340Y2225D02*Y2210D01* X2360Y2225D02*X2320D01* X2340D02*X2320Y2205D01* X2355Y2192D02*X2360Y2187D01* D02*Y2177D01* D02*X2355Y2172D01* D02*X2325D01* X2320Y2177D02*X2325Y2172D01* X2320Y2187D02*Y2177D01* X2325Y2192D02*X2320Y2187D01* X2340D02*Y2172D01* G54D19*X2050Y1960D02*Y2160D01* D02*X2150D01* D02*Y1960D01* D02*X2050D01* X2100Y1860D02*Y1960D01* Y2160D02*Y2260D01* G04 Text: R2 * G54D20*X2120Y2100D02*Y2080D01* D02*X2115Y2075D01* D02*X2105D01* X2100Y2080D02*X2105Y2075D01* X2100Y2095D02*Y2080D01* X2120Y2095D02*X2080D01* X2100D02*X2080Y2075D01* X2115Y2062D02*X2120Y2057D01* D02*Y2042D01* D02*X2115Y2037D01* D02*X2105D01* X2080Y2062D02*X2105Y2037D01* X2080Y2062D02*Y2037D01* G54D19*X3240Y1250D02*Y970D01* X3190Y1150D02*Y970D01* X3140Y1250D02*Y970D01* X3090Y1150D02*Y970D01* X3040Y1250D02*Y970D01* X2990Y1150D02*Y970D01* X2940Y1250D02*Y970D01* X2890Y1150D02*Y970D01* X2840Y1250D02*Y970D01* X2790Y1150D02*Y970D01* X2740Y1250D02*Y970D01* X2690Y1150D02*Y970D01* X2640Y1250D02*Y970D01* X2590Y1150D02*Y970D01* X2540Y1250D02*Y970D01* X2490Y1150D02*Y970D01* X2440Y1250D02*Y970D01* X2390Y1150D02*Y970D01* X2340Y1250D02*Y970D01* X2290Y1150D02*Y970D01* X2240Y1250D02*Y970D01* X2190Y1150D02*Y970D01* X2140Y1250D02*Y970D01* X2090Y1150D02*Y970D01* X2040Y1250D02*Y970D01* G54D12*X3400Y770D02*X1880D01* G54D19*X3400Y970D02*Y770D01* X1880Y970D02*X3400D01* X1880Y770D02*Y970D01* X3340Y470D02*X1940D01* X3340Y740D02*Y470D01* G54D12*X1940Y740D02*X3340D01* G54D19*X1940Y470D02*Y740D01* G54D12*X3450D02*Y770D01* X3570Y740D02*Y770D01* X1830Y740D02*Y770D01* X1710Y740D02*Y770D01* X3630Y740D02*X1650D01* X3630Y770D02*Y740D01* X1650Y770D02*X3630D01* X1650Y740D02*Y770D01* G04 Text: J1 * G54D20*X1970Y570D02*X1985D01* D02*Y535D01* X1980Y530D02*X1985Y535D01* X1975Y530D02*X1980D01* X1970Y535D02*X1975Y530D01* X2003D02*X2013D01* X2008Y570D02*Y530D01* X1998Y560D02*X2008Y570D01* G54D12*X2510Y1560D02*X2610D01* X2710D02*X2810D01* X2610D02*X2710Y1610D01* D02*Y1510D01* D02*X2610Y1560D01* Y1610D02*Y1510D01* G04 Text: D3 * G54D20*X2795Y1580D02*Y1620D01* X2780Y1580D02*X2775Y1585D01* D02*Y1615D01* X2780Y1620D02*X2775Y1615D01* X2800Y1620D02*X2780D01* X2800Y1580D02*X2780D01* X2762Y1585D02*X2757Y1580D01* D02*X2747D01* D02*X2742Y1585D01* D02*Y1615D01* X2747Y1620D02*X2742Y1615D01* X2757Y1620D02*X2747D01* X2762Y1615D02*X2757Y1620D01* Y1600D02*X2742D01* G54D19*X3710Y1880D02*Y1680D01* D02*X3610D01* D02*Y1880D01* D02*X3710D01* X3660Y1980D02*Y1880D01* Y1680D02*Y1580D01* G04 Text: R10 * G54D20*X3700Y1780D02*X3680D01* D02*X3675Y1785D01* D02*Y1795D01* X3680Y1800D02*X3675Y1795D01* X3695Y1800D02*X3680D01* X3695Y1780D02*Y1820D01* Y1800D02*X3675Y1820D01* X3657D02*X3647D01* X3652Y1780D02*Y1820D01* X3662Y1790D02*X3652Y1780D01* X3634Y1815D02*X3629Y1820D01* X3634Y1785D02*Y1815D01* Y1785D02*X3629Y1780D01* D02*X3619D01* D02*X3614Y1785D01* D02*Y1815D01* X3619Y1820D02*X3614Y1815D01* X3629Y1820D02*X3619D01* X3634Y1810D02*X3614Y1790D01* G54D12*X3660Y2045D02*Y2120D01* Y2270D02*Y2345D01* X3635Y2120D02*Y2270D01* D02*X3685D01* D02*Y2120D01* D02*X3635D01* G04 Text: C3 * G54D20*X3745Y2295D02*Y2310D01* X3740Y2290D02*X3745Y2295D01* X3710Y2290D02*X3740D01* X3710D02*X3705Y2295D01* D02*Y2310D01* X3710Y2323D02*X3705Y2328D01* D02*Y2338D01* D02*X3710Y2343D01* D02*X3740D01* X3745Y2338D02*X3740Y2343D01* X3745Y2328D02*Y2338D01* X3740Y2323D02*X3745Y2328D01* X3725D02*Y2343D01* G54D19*X1940Y2050D02*Y2250D01* D02*X2040D01* D02*Y2050D01* D02*X1940D01* X1990Y1950D02*Y2050D01* Y2250D02*Y2350D01* G04 Text: R1 * G54D20*X2010Y2190D02*Y2170D01* D02*X2005Y2165D01* D02*X1995D01* X1990Y2170D02*X1995Y2165D01* X1990Y2185D02*Y2170D01* X2010Y2185D02*X1970D01* X1990D02*X1970Y2165D01* Y2147D02*Y2137D01* X2010Y2142D02*X1970D01* X2000Y2152D02*X2010Y2142D01* D02* M02* gerbv-2.7.0/example/numpres/numpres.pcb.output_group1.grb0000644000175000017500000001072413421555714023430 0ustar carstencarstenG04 Title: test, layergroup #1 * G04 Creator: pcb 1.7.1.ALPHA * G04 CreationDate: Tue Jul 17 09:58:54 2001 UTC * G04 For: spe * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 6000 5000 * G04 PCB-Coordinate-Origin: lower left * %FSLAX23Y23*% %MOIN*% %LNGROUP_0*% G04 contains layers solder (0) GND-sldr (1) Vcc-sldr (2) * %IPPOS*% %LPD*% %ADD11C,0.025*% %ADD12C,0.010*% %ADD13C,0.040*% %ADD14C,0.055*% %ADD15R,0.060X0.060*% %ADD16R,0.090X0.090*% %ADD17C,0.060*% %ADD18C,0.090*% %ADD19C,0.020*% %ADD20C,0.008*% %ADD21R,0.050X0.050*% %ADD22R,0.080X0.080*% %ADD23C,0.050*% %ADD24C,0.080*% %ADD25C,0.120*% %ADD26C,0.150*% G01X0Y0D02* G54D11*X3690Y1250D02*X3680Y1260D01* G54D12*X3210Y2150D02*X3270Y2200D01* X2970Y2260D02*X3070Y2010D01* X3270Y2200D02*Y2410D01* X3600Y2050D02*X3510Y2150D01* X3270Y2410D02*X3080D01* X3070Y2010D02*X3160Y2250D01* X2690Y2350D02*X2460D01* X2930Y2260D02*X2560D01* X2340Y1950D02*X2450D01* X3600Y1630D02*Y2050D01* X3350Y1770D02*X3510Y1950D01* X3150Y1640D02*X3030Y1620D01* X3320Y1830D02*X3510Y2060D01* X3210Y1650D02*X3150Y1640D01* X3390Y1720D02*X3510Y1850D01* X3430Y1670D02*X3510Y1750D01* X3460Y1600D02*X3510Y1650D01* X3030Y1820D02*X3210Y1750D01* X3320Y1530D02*X3250Y1490D01* D02*X2390D01* D02*Y1440D01* D02*Y1160D01* X3320Y1830D02*Y1530D01* X2680Y1330D02*X2640Y1290D01* D02*Y1250D01* X3350Y1770D02*Y1510D01* D02*X3270Y1450D01* D02*X2480D01* D02*X2440Y1410D01* D02*Y1250D01* X3390Y1720D02*Y1470D01* D02*X3320Y1410D01* D02*X2530D01* D02*X2490Y1370D01* D02*Y1150D01* X3430Y1670D02*Y1430D01* D02*X3370Y1370D01* D02*X2580D01* D02*X2540Y1330D01* D02*Y1250D01* X3460Y1600D02*Y1380D01* D02*X3410Y1330D01* D02*X2680D01* G54D11*X2940Y1880D02*Y1950D01* X3110D02*X3210Y2050D01* X2790Y1950D02*X3110D01* X2680D02*X2790D01* G54D12*X3660Y2040D02*Y1980D01* Y1580D03* X2520Y1830D02*X2550Y1860D01* X3220Y2350D02*X2690D01* X2500Y1560D02*X2360D01* X4350Y2040D02*X4500D01* X2450Y1880D02*Y1950D01* X2970Y2260D02*X2940D01* X2460Y2350D02*X2450Y2340D01* X3160Y2250D02*X3210D01* X2360Y1560D02*X2330Y1530D01* X3570Y2250D02*X3660Y2160D01* D02*Y2050D01* X3510Y2250D02*X3570D01* X3660Y1580D02*X3600Y1630D01* X2220Y1850D02*X2240Y1830D01* D02*X2520D01* G54D11*X2220Y2260D02*X1690D01* X2340Y2350D02*X1830D01* X1690Y1950D02*Y1800D01* D02*X1650Y1760D01* X1830Y2050D02*Y1700D01* D02*X1790Y1660D01* D02*X1650D01* X2840Y1250D02*Y1150D01* X2160Y1730D02*X2090Y1860D01* Y1870D02*X2010Y1960D01* X2090Y1860D02*Y1880D01* X3210Y1850D02*Y1960D01* X3270Y1790D02*X3210Y1850D01* X3270Y1610D02*Y1790D01* X3210Y1550D02*X3270Y1610D01* X2160Y1730D02*X2650D01* D02*X2800Y1560D01* X2790Y1150D02*Y1070D01* D02*X2760Y1040D01* D02*X2020D01* D02*X1960Y1100D01* D02*Y1530D01* D02*X2160Y1730D01* X3190Y1550D02*X2810D01* X2940Y1250D02*Y1160D01* X3090Y1150D02*X2790D01* X3040Y1250D02*Y1160D01* Y1250D02*X3150D01* X3090Y1150D02*Y1090D01* D02*X3140Y1040D01* D02*X3600D01* D02*X3690Y1130D01* D02*Y1250D01* Y1360D02*X3720Y1390D01* D02*Y2270D01* D02*X3660Y2350D01* D02*X3510D01* D02*X3500D01* G54D15*X3690Y1360D03* G54D17*Y1260D03* G54D15*X3210Y2350D03* G54D17*Y2250D03* Y2150D03* Y2050D03* Y1950D03* Y1850D03* Y1750D03* Y1650D03* Y1550D03* X3510D03* Y1650D03* Y1750D03* Y1850D03* Y1950D03* Y2050D03* Y2150D03* Y2250D03* Y2350D03* G54D15*X1650Y1660D03* G54D17*Y1760D03* G54D21*X3070Y2010D03* G54D23*Y2410D03* G54D15*X3030Y1820D03* G54D17*Y1620D03* G54D21*X2940Y1860D03* G54D23*Y2260D03* G54D21*X2680Y1950D03* G54D23*Y2350D03* G54D21*X2560Y1860D03* G54D23*Y2260D03* G54D21*X2330Y1530D03* G54D23*Y1830D03* G54D21*X2450Y1950D03* G54D23*Y2350D03* G54D21*Y1580D03* G54D23*Y1880D03* G54D21*X2800Y1950D03* G54D23*Y2350D03* G54D21*X1690Y1955D03* G54D23*Y2255D03* G54D21*X1830Y2055D03* G54D23*Y2355D03* G54D21*X2220Y2260D03* G54D23*Y1860D03* G54D21*X2340Y2350D03* G54D23*Y1950D03* G54D21*X2100Y1860D03* G54D23*Y2260D03* G54D25*X1770Y1200D03* X3510D03* G54D17*X2040Y1250D03* X2090Y1150D03* X2140Y1250D03* X2190Y1150D03* X2240Y1250D03* X2290Y1150D03* X2340Y1250D03* X2390Y1150D03* X2440Y1250D03* X2490Y1150D03* X2540Y1250D03* X2590Y1150D03* X2640Y1250D03* X2690Y1150D03* X2740Y1250D03* X2790Y1150D03* X2840Y1250D03* X2890Y1150D03* X2940Y1250D03* X2990Y1150D03* X3040Y1250D03* X3090Y1150D03* X3140Y1250D03* X3190Y1150D03* G54D15*X3240Y1250D03* G54D21*X2510Y1560D03* G54D23*X2810D03* G54D21*X3660Y1980D03* G54D23*Y1580D03* G54D21*Y2045D03* G54D23*Y2345D03* G54D21*X1990Y1950D03* G54D23*Y2350D03* D02* M02* gerbv-2.7.0/example/numpres/numpres.pcb.output_group2.grb0000644000175000017500000000426213421555714023431 0ustar carstencarstenG04 Title: test, layergroup #2 * G04 Creator: pcb 1.7.1.ALPHA * G04 CreationDate: Tue Jul 17 09:58:54 2001 UTC * G04 For: spe * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 6000 5000 * G04 PCB-Coordinate-Origin: lower left * %FSLAX23Y23*% %MOIN*% %LNGROUP_1*% G04 contains layers component (3) GND-comp (4) Vcc-comp (5) * %IPPOS*% %LPD*% %ADD11C,0.025*% %ADD12C,0.010*% %ADD13C,0.040*% %ADD14C,0.055*% %ADD15R,0.060X0.060*% %ADD16R,0.090X0.090*% %ADD17C,0.060*% %ADD18C,0.090*% %ADD19C,0.020*% %ADD20C,0.008*% %ADD21R,0.050X0.050*% %ADD22R,0.080X0.080*% %ADD23C,0.050*% %ADD24C,0.080*% %ADD25C,0.120*% %ADD26C,0.150*% G01X0Y0D02* G54D12*X3780Y780D02*Y2480D01* D02*X1510D01* D02*Y780D01* D02*X3780D01* G54D15*X3690Y1360D03* G54D17*Y1260D03* G54D15*X3210Y2350D03* G54D17*Y2250D03* Y2150D03* Y2050D03* Y1950D03* Y1850D03* Y1750D03* Y1650D03* Y1550D03* X3510D03* Y1650D03* Y1750D03* Y1850D03* Y1950D03* Y2050D03* Y2150D03* Y2250D03* Y2350D03* G54D15*X1650Y1660D03* G54D17*Y1760D03* G54D21*X3070Y2010D03* G54D23*Y2410D03* G54D15*X3030Y1820D03* G54D17*Y1620D03* G54D21*X2940Y1860D03* G54D23*Y2260D03* G54D21*X2680Y1950D03* G54D23*Y2350D03* G54D21*X2560Y1860D03* G54D23*Y2260D03* G54D21*X2330Y1530D03* G54D23*Y1830D03* G54D21*X2450Y1950D03* G54D23*Y2350D03* G54D21*Y1580D03* G54D23*Y1880D03* G54D21*X2800Y1950D03* G54D23*Y2350D03* G54D21*X1690Y1955D03* G54D23*Y2255D03* G54D21*X1830Y2055D03* G54D23*Y2355D03* G54D21*X2220Y2260D03* G54D23*Y1860D03* G54D21*X2340Y2350D03* G54D23*Y1950D03* G54D21*X2100Y1860D03* G54D23*Y2260D03* G54D25*X1770Y1200D03* X3510D03* G54D17*X2040Y1250D03* X2090Y1150D03* X2140Y1250D03* X2190Y1150D03* X2240Y1250D03* X2290Y1150D03* X2340Y1250D03* X2390Y1150D03* X2440Y1250D03* X2490Y1150D03* X2540Y1250D03* X2590Y1150D03* X2640Y1250D03* X2690Y1150D03* X2740Y1250D03* X2790Y1150D03* X2840Y1250D03* X2890Y1150D03* X2940Y1250D03* X2990Y1150D03* X3040Y1250D03* X3090Y1150D03* X3140Y1250D03* X3190Y1150D03* G54D15*X3240Y1250D03* G54D21*X2510Y1560D03* G54D23*X2810D03* G54D21*X3660Y1980D03* G54D23*Y1580D03* G54D21*Y2045D03* G54D23*Y2345D03* G54D21*X1990Y1950D03* G54D23*Y2350D03* D02* M02* gerbv-2.7.0/example/numpres/numpres.pcb0000644000175000017500000007743213421555714020034 0ustar carstencarsten# release: pcb 1.7.2.ALPHA # date: Thu Feb 15 00:03:17 2001 # user: spe (Stefan Petersen,,,) # host: siouxsie.stacken.kth.se PCB("test" 6000 5000) Grid(10 0 0 0) Cursor(1160 2230 1) Flags(0x000000d0) Groups("1,2,3,s:4,5,6,c:7:8:") Styles("Signal,10,40,20:Power,25,60,35:Fat,40,60,35:Skinny,8,36,20") Symbol(' ' 18) ( ) Symbol('!' 12) ( SymbolLine(0 35 0 40 8) SymbolLine(0 0 0 25 8) ) Symbol('"' 12) ( SymbolLine(0 0 0 10 8) SymbolLine(10 0 10 10 8) ) Symbol('#' 12) ( SymbolLine(0 25 20 25 8) SymbolLine(0 15 20 15 8) SymbolLine(15 10 15 30 8) SymbolLine(5 10 5 30 8) ) Symbol('$' 12) ( SymbolLine(15 5 20 10 8) SymbolLine(5 5 15 5 8) SymbolLine(0 10 5 5 8) SymbolLine(0 10 0 15 8) SymbolLine(0 15 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 30 8) SymbolLine(15 35 20 30 8) SymbolLine(5 35 15 35 8) SymbolLine(0 30 5 35 8) SymbolLine(10 0 10 40 8) ) Symbol('%' 12) ( SymbolLine(0 5 0 10 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 10 0 8) SymbolLine(10 0 15 5 8) SymbolLine(15 5 15 10 8) SymbolLine(10 15 15 10 8) SymbolLine(5 15 10 15 8) SymbolLine(0 10 5 15 8) SymbolLine(0 40 40 0 8) SymbolLine(35 40 40 35 8) SymbolLine(40 30 40 35 8) SymbolLine(35 25 40 30 8) SymbolLine(30 25 35 25 8) SymbolLine(25 30 30 25 8) SymbolLine(25 30 25 35 8) SymbolLine(25 35 30 40 8) SymbolLine(30 40 35 40 8) ) Symbol('&' 12) ( SymbolLine(0 35 5 40 8) SymbolLine(0 5 0 15 8) SymbolLine(0 5 5 0 8) SymbolLine(0 25 15 10 8) SymbolLine(5 40 10 40 8) SymbolLine(10 40 20 30 8) SymbolLine(0 15 25 40 8) SymbolLine(5 0 10 0 8) SymbolLine(10 0 15 5 8) SymbolLine(15 5 15 10 8) SymbolLine(0 25 0 35 8) ) Symbol(''' 12) ( SymbolLine(0 10 10 0 8) ) Symbol('(' 12) ( SymbolLine(0 35 5 40 8) SymbolLine(0 5 5 0 8) SymbolLine(0 5 0 35 8) ) Symbol(')' 12) ( SymbolLine(0 0 5 5 8) SymbolLine(5 5 5 35 8) SymbolLine(0 40 5 35 8) ) Symbol('*' 12) ( SymbolLine(0 10 20 30 8) SymbolLine(0 30 20 10 8) SymbolLine(0 20 20 20 8) SymbolLine(10 10 10 30 8) ) Symbol('+' 12) ( SymbolLine(0 20 20 20 8) SymbolLine(10 10 10 30 8) ) Symbol(',' 12) ( SymbolLine(0 50 10 40 8) ) Symbol('-' 12) ( SymbolLine(0 20 20 20 8) ) Symbol('.' 12) ( SymbolLine(0 40 5 40 8) ) Symbol('/' 12) ( SymbolLine(0 35 30 5 8) ) Symbol('0' 12) ( SymbolLine(0 35 5 40 8) SymbolLine(0 5 0 35 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 30 20 10 8) ) Symbol('1' 12) ( SymbolLine(5 40 15 40 8) SymbolLine(10 0 10 40 8) SymbolLine(0 10 10 0 8) ) Symbol('2' 12) ( SymbolLine(0 5 5 0 8) SymbolLine(5 0 20 0 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 15 8) SymbolLine(0 40 25 15 8) SymbolLine(0 40 25 40 8) ) Symbol('3' 12) ( SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) SymbolLine(5 20 20 20 8) ) Symbol('4' 12) ( SymbolLine(0 20 20 0 8) SymbolLine(0 20 25 20 8) SymbolLine(20 0 20 40 8) ) Symbol('5' 12) ( SymbolLine(0 0 20 0 8) SymbolLine(0 0 0 20 8) SymbolLine(0 20 5 15 8) SymbolLine(5 15 15 15 8) SymbolLine(15 15 20 20 8) SymbolLine(20 20 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) ) Symbol('6' 12) ( SymbolLine(15 0 20 5 8) SymbolLine(5 0 15 0 8) SymbolLine(0 5 5 0 8) SymbolLine(0 5 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(15 20 20 25 8) SymbolLine(0 20 15 20 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) SymbolLine(20 25 20 35 8) ) Symbol('7' 12) ( SymbolLine(0 40 25 15 8) SymbolLine(25 0 25 15 8) SymbolLine(0 0 25 0 8) ) Symbol('8' 12) ( SymbolLine(0 35 5 40 8) SymbolLine(0 25 0 35 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 15 5 20 8) SymbolLine(0 5 0 15 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 15 8) SymbolLine(15 20 20 15 8) ) Symbol('9' 12) ( SymbolLine(0 40 20 20 8) SymbolLine(20 5 20 20 8) SymbolLine(15 0 20 5 8) SymbolLine(5 0 15 0 8) SymbolLine(0 5 5 0 8) SymbolLine(0 5 0 15 8) SymbolLine(0 15 5 20 8) SymbolLine(5 20 20 20 8) ) Symbol(':' 12) ( SymbolLine(0 15 5 15 8) SymbolLine(0 25 5 25 8) ) Symbol(';' 12) ( SymbolLine(0 40 10 30 8) SymbolLine(10 15 10 20 8) ) Symbol('<' 12) ( SymbolLine(0 20 10 10 8) SymbolLine(0 20 10 30 8) ) Symbol('=' 12) ( SymbolLine(0 15 20 15 8) SymbolLine(0 25 20 25 8) ) Symbol('>' 12) ( SymbolLine(0 10 10 20 8) SymbolLine(0 30 10 20 8) ) Symbol('?' 12) ( SymbolLine(10 20 10 25 8) SymbolLine(10 35 10 40 8) SymbolLine(0 5 0 10 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 10 8) SymbolLine(10 20 20 10 8) ) Symbol('A' 12) ( SymbolLine(0 5 0 40 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 20 0 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 40 8) SymbolLine(0 20 25 20 8) ) Symbol('B' 12) ( SymbolLine(0 40 20 40 8) SymbolLine(20 40 25 35 8) SymbolLine(25 25 25 35 8) SymbolLine(20 20 25 25 8) SymbolLine(5 20 20 20 8) SymbolLine(5 0 5 40 8) SymbolLine(0 0 20 0 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 15 8) SymbolLine(20 20 25 15 8) ) Symbol('C' 12) ( SymbolLine(5 40 20 40 8) SymbolLine(0 35 5 40 8) SymbolLine(0 5 0 35 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 20 0 8) ) Symbol('D' 12) ( SymbolLine(5 0 5 40 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 35 8) SymbolLine(20 40 25 35 8) SymbolLine(0 40 20 40 8) SymbolLine(0 0 20 0 8) ) Symbol('E' 12) ( SymbolLine(0 20 15 20 8) SymbolLine(0 40 20 40 8) SymbolLine(0 0 0 40 8) SymbolLine(0 0 20 0 8) ) Symbol('F' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 0 20 0 8) SymbolLine(0 20 15 20 8) ) Symbol('G' 12) ( SymbolLine(20 0 25 5 8) SymbolLine(5 0 20 0 8) SymbolLine(0 5 5 0 8) SymbolLine(0 5 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 20 40 8) SymbolLine(20 40 25 35 8) SymbolLine(25 25 25 35 8) SymbolLine(20 20 25 25 8) SymbolLine(10 20 20 20 8) ) Symbol('H' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(25 0 25 40 8) SymbolLine(0 20 25 20 8) ) Symbol('I' 12) ( SymbolLine(0 0 10 0 8) SymbolLine(5 0 5 40 8) SymbolLine(0 40 10 40 8) ) Symbol('J' 12) ( SymbolLine(0 0 15 0 8) SymbolLine(15 0 15 35 8) SymbolLine(10 40 15 35 8) SymbolLine(5 40 10 40 8) SymbolLine(0 35 5 40 8) ) Symbol('K' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 20 20 0 8) SymbolLine(0 20 20 40 8) ) Symbol('L' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 40 20 40 8) ) Symbol('M' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 0 15 15 8) SymbolLine(15 15 30 0 8) SymbolLine(30 0 30 40 8) ) Symbol('N' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 0 0 5 8) SymbolLine(0 5 25 30 8) SymbolLine(25 0 25 40 8) ) Symbol('O' 12) ( SymbolLine(0 5 0 35 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) ) Symbol('P' 12) ( SymbolLine(5 0 5 40 8) SymbolLine(0 0 20 0 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 15 8) SymbolLine(20 20 25 15 8) SymbolLine(5 20 20 20 8) ) Symbol('Q' 12) ( SymbolLine(0 5 0 35 8) SymbolLine(0 5 5 0 8) SymbolLine(5 0 15 0 8) SymbolLine(15 0 20 5 8) SymbolLine(20 5 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) SymbolLine(10 30 20 40 8) ) Symbol('R' 12) ( SymbolLine(0 0 20 0 8) SymbolLine(20 0 25 5 8) SymbolLine(25 5 25 15 8) SymbolLine(20 20 25 15 8) SymbolLine(5 20 20 20 8) SymbolLine(5 0 5 40 8) SymbolLine(5 20 25 40 8) ) Symbol('S' 12) ( SymbolLine(20 0 25 5 8) SymbolLine(5 0 20 0 8) SymbolLine(0 5 5 0 8) SymbolLine(0 5 0 15 8) SymbolLine(0 15 5 20 8) SymbolLine(5 20 20 20 8) SymbolLine(20 20 25 25 8) SymbolLine(25 25 25 35 8) SymbolLine(20 40 25 35 8) SymbolLine(5 40 20 40 8) SymbolLine(0 35 5 40 8) ) Symbol('T' 12) ( SymbolLine(0 0 20 0 8) SymbolLine(10 0 10 40 8) ) Symbol('U' 12) ( SymbolLine(0 0 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) SymbolLine(20 0 20 35 8) ) Symbol('V' 12) ( SymbolLine(0 0 0 30 8) SymbolLine(0 30 10 40 8) SymbolLine(10 40 20 30 8) SymbolLine(20 0 20 30 8) ) Symbol('W' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 40 15 25 8) SymbolLine(15 25 30 40 8) SymbolLine(30 0 30 40 8) ) Symbol('X' 12) ( SymbolLine(0 0 0 5 8) SymbolLine(0 5 25 30 8) SymbolLine(25 30 25 40 8) SymbolLine(0 30 0 40 8) SymbolLine(0 30 25 5 8) SymbolLine(25 0 25 5 8) ) Symbol('Y' 12) ( SymbolLine(0 0 0 5 8) SymbolLine(0 5 10 15 8) SymbolLine(10 15 20 5 8) SymbolLine(20 0 20 5 8) SymbolLine(10 15 10 40 8) ) Symbol('Z' 12) ( SymbolLine(0 0 25 0 8) SymbolLine(25 0 25 5 8) SymbolLine(0 30 25 5 8) SymbolLine(0 30 0 40 8) SymbolLine(0 40 25 40 8) ) Symbol('[' 12) ( SymbolLine(0 0 5 0 8) SymbolLine(0 0 0 40 8) SymbolLine(0 40 5 40 8) ) Symbol('\' 12) ( SymbolLine(0 5 30 35 8) ) Symbol(']' 12) ( SymbolLine(0 0 5 0 8) SymbolLine(5 0 5 40 8) SymbolLine(0 40 5 40 8) ) Symbol('^' 12) ( SymbolLine(0 5 5 0 8) SymbolLine(5 0 10 5 8) ) Symbol('_' 12) ( SymbolLine(0 40 20 40 8) ) Symbol('a' 12) ( SymbolLine(15 20 20 25 8) SymbolLine(5 20 15 20 8) SymbolLine(0 25 5 20 8) SymbolLine(0 25 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(20 20 20 35 8) SymbolLine(20 35 25 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) ) Symbol('b' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) SymbolLine(20 25 20 35 8) SymbolLine(15 20 20 25 8) SymbolLine(5 20 15 20 8) SymbolLine(0 25 5 20 8) ) Symbol('c' 12) ( SymbolLine(5 20 20 20 8) SymbolLine(0 25 5 20 8) SymbolLine(0 25 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 20 40 8) ) Symbol('d' 12) ( SymbolLine(20 0 20 40 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) SymbolLine(0 25 0 35 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) ) Symbol('e' 12) ( SymbolLine(5 40 20 40 8) SymbolLine(0 35 5 40 8) SymbolLine(0 25 0 35 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(0 30 20 30 8) SymbolLine(20 30 20 25 8) ) Symbol('f' 10) ( SymbolLine(5 5 5 40 8) SymbolLine(5 5 10 0 8) SymbolLine(10 0 15 0 8) SymbolLine(0 20 10 20 8) ) Symbol('g' 12) ( SymbolLine(15 20 20 25 8) SymbolLine(5 20 15 20 8) SymbolLine(0 25 5 20 8) SymbolLine(0 25 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) SymbolLine(0 50 5 55 8) SymbolLine(5 55 15 55 8) SymbolLine(15 55 20 50 8) SymbolLine(20 20 20 50 8) ) Symbol('h' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 40 8) ) Symbol('i' 10) ( SymbolLine(0 10 0 15 8) SymbolLine(0 25 0 40 8) ) Symbol('j' 10) ( SymbolLine(5 10 5 15 8) SymbolLine(5 25 5 50 8) SymbolLine(0 55 5 50 8) ) Symbol('k' 12) ( SymbolLine(0 0 0 40 8) SymbolLine(0 25 15 40 8) SymbolLine(0 25 10 15 8) ) Symbol('l' 10) ( SymbolLine(0 0 0 35 8) SymbolLine(0 35 5 40 8) ) Symbol('m' 12) ( SymbolLine(5 25 5 40 8) SymbolLine(5 25 10 20 8) SymbolLine(10 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 40 8) SymbolLine(20 25 25 20 8) SymbolLine(25 20 30 20 8) SymbolLine(30 20 35 25 8) SymbolLine(35 25 35 40 8) SymbolLine(0 20 5 25 8) ) Symbol('n' 12) ( SymbolLine(5 25 5 40 8) SymbolLine(5 25 10 20 8) SymbolLine(10 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 40 8) SymbolLine(0 20 5 25 8) ) Symbol('o' 12) ( SymbolLine(0 25 0 35 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 15 20 8) SymbolLine(15 20 20 25 8) SymbolLine(20 25 20 35 8) SymbolLine(15 40 20 35 8) SymbolLine(5 40 15 40 8) SymbolLine(0 35 5 40 8) ) Symbol('p' 12) ( SymbolLine(5 25 5 55 8) SymbolLine(0 20 5 25 8) SymbolLine(5 25 10 20 8) SymbolLine(10 20 20 20 8) SymbolLine(20 20 25 25 8) SymbolLine(25 25 25 35 8) SymbolLine(20 40 25 35 8) SymbolLine(10 40 20 40 8) SymbolLine(5 35 10 40 8) ) Symbol('q' 12) ( SymbolLine(20 25 20 55 8) SymbolLine(15 20 20 25 8) SymbolLine(5 20 15 20 8) SymbolLine(0 25 5 20 8) SymbolLine(0 25 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) ) Symbol('r' 12) ( SymbolLine(5 25 5 40 8) SymbolLine(5 25 10 20 8) SymbolLine(10 20 20 20 8) SymbolLine(0 20 5 25 8) ) Symbol('s' 12) ( SymbolLine(5 40 20 40 8) SymbolLine(20 40 25 35 8) SymbolLine(20 30 25 35 8) SymbolLine(5 30 20 30 8) SymbolLine(0 25 5 30 8) SymbolLine(0 25 5 20 8) SymbolLine(5 20 20 20 8) SymbolLine(20 20 25 25 8) SymbolLine(0 35 5 40 8) ) Symbol('t' 10) ( SymbolLine(5 0 5 35 8) SymbolLine(5 35 10 40 8) SymbolLine(0 15 10 15 8) ) Symbol('u' 12) ( SymbolLine(0 20 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) SymbolLine(20 20 20 35 8) ) Symbol('v' 12) ( SymbolLine(0 20 0 30 8) SymbolLine(0 30 10 40 8) SymbolLine(10 40 20 30 8) SymbolLine(20 20 20 30 8) ) Symbol('w' 12) ( SymbolLine(0 20 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(5 40 10 40 8) SymbolLine(10 40 15 35 8) SymbolLine(15 20 15 35 8) SymbolLine(15 35 20 40 8) SymbolLine(20 40 25 40 8) SymbolLine(25 40 30 35 8) SymbolLine(30 20 30 35 8) ) Symbol('x' 12) ( SymbolLine(0 20 20 40 8) SymbolLine(0 40 20 20 8) ) Symbol('y' 12) ( SymbolLine(0 20 0 35 8) SymbolLine(0 35 5 40 8) SymbolLine(20 20 20 50 8) SymbolLine(15 55 20 50 8) SymbolLine(5 55 15 55 8) SymbolLine(0 50 5 55 8) SymbolLine(5 40 15 40 8) SymbolLine(15 40 20 35 8) ) Symbol('z' 12) ( SymbolLine(0 20 20 20 8) SymbolLine(0 40 20 20 8) SymbolLine(0 40 20 40 8) ) Symbol('{' 12) ( SymbolLine(5 5 10 0 8) SymbolLine(5 5 5 15 8) SymbolLine(0 20 5 15 8) SymbolLine(0 20 5 25 8) SymbolLine(5 25 5 35 8) SymbolLine(5 35 10 40 8) ) Symbol('|' 12) ( SymbolLine(0 0 0 40 8) ) Symbol('}' 12) ( SymbolLine(0 0 5 5 8) SymbolLine(5 5 5 15 8) SymbolLine(5 15 10 20 8) SymbolLine(5 25 10 20 8) SymbolLine(5 25 5 35 8) SymbolLine(0 40 5 35 8) ) Symbol('~' 12) ( SymbolLine(0 25 5 20 8) SymbolLine(5 20 10 20 8) SymbolLine(10 20 15 25 8) SymbolLine(15 25 20 25 8) SymbolLine(20 25 25 20 8) ) Element(0x00000000 "R 0.25W" "R1" "47k" 1990 3050 20 -240 3 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "capacitor_axial" "C3" "300" 3660 2880 45 -170 1 100 0x00000000) ( Pin(0 75 50 30 80 20 "1" "1" 0x00000101) Pin(0 -225 50 30 80 20 "2" "2" 0x00000001) ElementLine (25 0 -25 0 10) ElementLine (25 -150 25 0 10) ElementLine (-25 -150 25 -150 10) ElementLine (-25 0 -25 -150 10) ElementLine (0 -150 0 -225 10) ElementLine (0 75 0 0 10) ) Element(0x00000000 "R 0.25W" "R10" "330k" 3660 3020 40 200 2 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 300 0 400 20) ElementLine (0 0 0 100 20) ElementLine (-50 100 50 100 20) ElementLine (-50 300 -50 100 20) ElementLine (50 300 -50 300 20) ElementLine (50 100 50 300 20) ) Element(0x00000000 "diode" "D3" "300" 2510 3440 290 -20 2 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(300 0 50 30 80 20 "2" "2" 0x00000001) ElementLine (100 -50 100 50 10) ElementLine (200 50 100 0 10) ElementLine (200 -50 200 50 10) ElementLine (100 0 200 -50 10) ElementLine (200 0 300 0 10) ElementLine (0 0 100 0 10) ) Element(0x00000000 "SUB-D female 25 pins" "J1" "25f" 2040 3750 -70 680 0 100 0x00000000) ( Pin(-270 50 120 30 150 100 "C1" "1" 0x00000001) Pin(1470 50 120 30 150 100 "C1" "2" 0x00000001) Pin(0 0 60 30 90 20 "13" "3" 0x00000001) Pin(50 100 60 30 90 20 "25" "4" 0x00000001) Pin(100 0 60 30 90 20 "12" "5" 0x00000001) Pin(150 100 60 30 90 20 "24" "6" 0x00000001) Pin(200 0 60 30 90 20 "11" "7" 0x00000001) Pin(250 100 60 30 90 20 "23" "8" 0x00000001) Pin(300 0 60 30 90 20 "10" "9" 0x00000001) Pin(350 100 60 30 90 20 "22" "10" 0x00000001) Pin(400 0 60 30 90 20 "9" "11" 0x00000001) Pin(450 100 60 30 90 20 "21" "12" 0x00000001) Pin(500 0 60 30 90 20 "8" "13" 0x00000001) Pin(550 100 60 30 90 20 "20" "14" 0x00000001) Pin(600 0 60 30 90 20 "7" "15" 0x00000001) Pin(650 100 60 30 90 20 "19" "16" 0x00000001) Pin(700 0 60 30 90 20 "6" "17" 0x00000001) Pin(750 100 60 30 90 20 "18" "18" 0x00000001) Pin(800 0 60 30 90 20 "5" "19" 0x00000001) Pin(850 100 60 30 90 20 "17" "20" 0x00000001) Pin(900 0 60 30 90 20 "4" "21" 0x00000001) Pin(950 100 60 30 90 20 "16" "22" 0x00000001) Pin(1000 0 60 30 90 20 "3" "23" 0x00000001) Pin(1050 100 60 30 90 20 "15" "24" 0x00000001) Pin(1100 0 60 30 90 20 "2" "25" 0x00000001) Pin(1150 100 60 30 90 20 "14" "26" 0x00000001) Pin(1200 0 60 30 90 20 "1" "27" 0x00000101) ElementLine (-390 510 -390 480 10) ElementLine (-390 480 1590 480 10) ElementLine (1590 480 1590 510 10) ElementLine (1590 510 -390 510 10) ElementLine (-330 510 -330 480 10) ElementLine (-210 510 -210 480 10) ElementLine (1530 510 1530 480 10) ElementLine (1410 510 1410 480 10) ElementLine (-100 780 -100 510 20) ElementLine (-100 510 1300 510 10) ElementLine (1300 510 1300 780 20) ElementLine (1300 780 -100 780 20) ElementLine (-160 480 -160 280 20) ElementLine (-160 280 1360 280 20) ElementLine (1360 280 1360 480 20) ElementLine (1360 480 -160 480 10) ElementLine (0 0 0 280 20) ElementLine (50 100 50 280 20) ElementLine (100 0 100 280 20) ElementLine (150 100 150 280 20) ElementLine (200 0 200 280 20) ElementLine (250 100 250 280 20) ElementLine (300 0 300 280 20) ElementLine (350 100 350 280 20) ElementLine (400 0 400 280 20) ElementLine (450 100 450 280 20) ElementLine (500 0 500 280 20) ElementLine (550 100 550 280 20) ElementLine (600 0 600 280 20) ElementLine (650 100 650 280 20) ElementLine (700 0 700 280 20) ElementLine (750 100 750 280 20) ElementLine (800 0 800 280 20) ElementLine (850 100 850 280 20) ElementLine (900 0 900 280 20) ElementLine (950 100 950 280 20) ElementLine (1000 0 1000 280 20) ElementLine (1050 100 1050 280 20) ElementLine (1100 0 1100 280 20) ElementLine (1150 100 1150 280 20) ElementLine (1200 0 1200 280 20) ) Element(0x00000000 "R 0.25W" "R2" "47k" 2100 3140 20 -240 3 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "R 0.25W" "R3" "330k" 2340 2650 20 120 3 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 300 0 400 20) ElementLine (0 0 0 100 20) ElementLine (-50 100 50 100 20) ElementLine (-50 300 -50 100 20) ElementLine (50 300 -50 300 20) ElementLine (50 100 50 300 20) ) Element(0x00000000 "R 0.25W" "R4" "330k" 2220 2740 20 120 3 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 300 0 400 20) ElementLine (0 0 0 100 20) ElementLine (-50 100 50 100 20) ElementLine (-50 300 -50 100 20) ElementLine (50 300 -50 300 20) ElementLine (50 100 50 300 20) ) Element(0x00000000 "capacitor_axial" "C1" "300" 1830 2870 45 -170 1 100 0x00000000) ( Pin(0 75 50 30 80 20 "1" "1" 0x00000101) Pin(0 -225 50 30 80 20 "2" "2" 0x00000001) ElementLine (25 0 -25 0 10) ElementLine (25 -150 25 0 10) ElementLine (-25 -150 25 -150 10) ElementLine (-25 0 -25 -150 10) ElementLine (0 -150 0 -225 10) ElementLine (0 75 0 0 10) ) Element(0x00000000 "capacitor_axial" "C2" "300" 1690 2970 45 -170 1 100 0x00000000) ( Pin(0 75 50 30 80 20 "1" "1" 0x00000101) Pin(0 -225 50 30 80 20 "2" "2" 0x00000001) ElementLine (25 0 -25 0 10) ElementLine (25 -150 25 0 10) ElementLine (-25 -150 25 -150 10) ElementLine (-25 0 -25 -150 10) ElementLine (0 -150 0 -225 10) ElementLine (0 75 0 0 10) ) Element(0x00000000 "R 0.25W" "R8" "56k" 2800 3050 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "diode" "D1" "300" 2450 3420 -50 -220 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "2" "1" 0x00000101) Pin(0 -300 50 30 80 20 "1" "2" 0x00000001) ElementLine (-50 -100 50 -100 10) ElementLine (50 -200 0 -100 10) ElementLine (-50 -200 50 -200 10) ElementLine (0 -100 -50 -200 10) ElementLine (0 -200 0 -300 10) ElementLine (0 0 0 -100 10) ) Element(0x00000000 "R 0.25W" "R5" "120k" 2450 3050 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "diode" "D2" "300" 2330 3470 -50 -220 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -300 50 30 80 20 "2" "2" 0x00000001) ElementLine (-50 -100 50 -100 10) ElementLine (50 -200 0 -100 10) ElementLine (-50 -200 50 -200 10) ElementLine (0 -100 -50 -200 10) ElementLine (0 -200 0 -300 10) ElementLine (0 0 0 -100 10) ) Element(0x00000000 "R 0.25W" "R6" "120k" 2560 3140 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "R 0.25W" "R7" "220k" 2680 3050 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "R 0.25W" "R9" "68k" 2940 3140 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "crystal 300mil" "X1" "1MHz" 3030 3180 -70 0 3 100 0x00000000) ( Pin(0 0 60 30 90 20 "1" "1" 0x00000101) Pin(0 200 60 30 90 20 "2" "2" 0x00000001) ElementLine (-50 0 -50 200 10) ElementLine (50 0 50 200 10) ElementArc (0 200 50 50 0 180 10) ElementArc (0 0 50 50 180 180 10) ) Element(0x00000000 "R 0.25W" "R11" "220k" 3070 2990 -20 -120 1 100 0x00000000) ( Pin(0 0 50 30 80 20 "1" "1" 0x00000101) Pin(0 -400 50 30 80 20 "2" "2" 0x00000001) ElementLine (0 -300 0 -400 20) ElementLine (0 0 0 -100 20) ElementLine (50 -100 -50 -100 20) ElementLine (50 -300 50 -100 20) ElementLine (-50 -300 50 -300 20) ElementLine (-50 -100 -50 -300 20) ) Element(0x00000000 "connector 2x1 pins" "CONN1" "2" 1650 3340 -50 -210 0 100 0x00000000) ( Pin(0 0 60 30 90 30 "1" "1" 0x00000101) Pin(0 -100 60 30 90 30 "2" "2" 0x00000001) ElementLine (-50 50 50 50 20) ElementLine (50 50 50 -150 20) ElementLine (50 -150 -50 -150 20) ElementLine (-50 -150 -50 50 20) ElementLine (50 50 50 -50 10) ElementLine (50 -50 -50 -50 10) ) Element(0x00000000 "generic" "IC1" "DIL 18" 3210 2650 170 50 3 100 0x00000000) ( Pin(0 0 60 30 90 28 "1" "1" 0x00000121) Pin(0 100 60 30 90 28 "2" "2" 0x00000021) Pin(0 200 60 30 90 28 "3" "3" 0x00000021) Pin(0 300 60 30 90 28 "4" "4" 0x00000021) Pin(0 400 60 30 90 28 "5" "5" 0x00000021) Pin(0 500 60 30 90 28 "6" "6" 0x00000021) Pin(0 600 60 30 90 28 "7" "7" 0x00000021) Pin(0 700 60 30 90 28 "8" "8" 0x00000021) Pin(0 800 60 30 90 28 "9" "9" 0x00000021) Pin(300 800 60 30 90 28 "10" "10" 0x00000021) Pin(300 700 60 30 90 28 "11" "11" 0x00000021) Pin(300 600 60 30 90 28 "12" "12" 0x00000021) Pin(300 500 60 30 90 28 "13" "13" 0x00000021) Pin(300 400 60 30 90 28 "14" "14" 0x00000021) Pin(300 300 60 30 90 28 "15" "15" 0x00000021) Pin(300 200 60 30 90 28 "16" "16" 0x00000021) Pin(300 100 60 30 90 28 "17" "17" 0x00000021) Pin(300 0 60 30 90 28 "18" "18" 0x00000021) ElementLine (200 -50 350 -50 10) ElementLine (-50 -50 100 -50 10) ElementLine (350 850 350 -50 10) ElementLine (-50 850 350 850 10) ElementLine (-50 -50 -50 850 10) ElementArc (150 -50 50 50 0 180 10) ) Element(0x00000000 "connector 2x1 pins" "CONN2" "2" 3690 3640 50 210 2 100 0x00000000) ( Pin(0 0 60 30 90 30 "1" "1" 0x00000101) Pin(0 100 60 30 90 30 "2" "2" 0x00000001) ElementLine (-50 50 50 50 10) ElementLine (-50 -50 -50 50 10) ElementLine (50 150 50 -50 20) ElementLine (-50 150 50 150 20) ElementLine (-50 -50 -50 150 20) ElementLine (50 -50 -50 -50 20) ) Layer(1 "solder") ( Line(1790 3340 1650 3340 25 30 0x00000020) Line(1830 3300 1790 3340 25 30 0x00000020) Line(1830 2950 1830 3300 25 30 0x00000020) Line(1690 3200 1650 3240 25 30 0x00000020) Line(1690 3050 1690 3200 25 30 0x00000020) Line(2340 2650 1830 2650 25 30 0x00000220) Line(2220 2740 1690 2740 25 30 0x00000020) Line(2240 3170 2520 3170 10 30 0x00000020) Line(2220 3150 2240 3170 10 30 0x00000020) Line(3660 3420 3600 3370 10 30 0x00000000) Line(3510 2750 3570 2750 10 30 0x00000000) Line(3660 2840 3660 2950 10 30 0x00000000) Line(3570 2750 3660 2840 10 30 0x00000000) Line(2360 3440 2330 3470 10 30 0x00000020) Line(3160 2750 3210 2750 10 30 0x00000200) Line(2460 2650 2450 2660 10 30 0x00000200) Line(2970 2740 2940 2740 10 30 0x00000000) Line(2450 3120 2450 3050 10 30 0x00000020) Line(4350 2960 4500 2960 10 30 0x00000000) Line(2500 3440 2360 3440 10 30 0x00000020) Line(3220 2650 2690 2650 10 30 0x00000200) Line(2520 3170 2550 3140 10 30 0x00000020) Line(3660 3420 3660 3420 10 30 0x00000000) Line(3660 2960 3660 3020 10 30 0x00000000) Line(2680 3050 2790 3050 25 30 0x00000000) Line(2790 3050 3110 3050 25 30 0x00000200) Line(3110 3050 3210 2950 25 30 0x00000000) Line(2940 3120 2940 3050 25 30 0x00000200) Line(3410 3670 2680 3670 10 30 0x00000000) Line(3460 3620 3410 3670 10 30 0x00000000) Line(3460 3400 3460 3620 10 30 0x00000000) Line(2540 3670 2540 3750 10 30 0x00000000) Line(2580 3630 2540 3670 10 30 0x00000000) Line(3370 3630 2580 3630 10 30 0x00000000) Line(3430 3570 3370 3630 10 30 0x00000000) Line(3430 3330 3430 3570 10 30 0x00000000) Line(2490 3630 2490 3850 10 30 0x00000000) Line(2530 3590 2490 3630 10 30 0x00000000) Line(3320 3590 2530 3590 10 30 0x00000000) Line(3390 3530 3320 3590 10 30 0x00000000) Line(3390 3280 3390 3530 10 30 0x00000000) Line(2440 3590 2440 3750 10 30 0x00000000) Line(2480 3550 2440 3590 10 30 0x00000000) Line(3270 3550 2480 3550 10 30 0x00000000) Line(3350 3490 3270 3550 10 30 0x00000000) Line(3350 3230 3350 3490 10 30 0x00000000) Line(2640 3710 2640 3750 10 30 0x00000000) Line(2680 3670 2640 3710 10 30 0x00000000) Line(3320 3170 3320 3470 10 30 0x00000000) Line(2390 3560 2390 3840 10 30 0x00000000) Line(2390 3510 2390 3560 10 30 0x00000000) Line(3250 3510 2390 3510 10 30 0x00000000) Line(3320 3470 3250 3510 10 30 0x00000000) Line(3030 3180 3210 3250 10 30 0x00000000) Line(3460 3400 3510 3350 10 30 0x00000200) Line(3430 3330 3510 3250 10 30 0x00000200) Line(3390 3280 3510 3150 10 30 0x00000000) Line(3210 3350 3150 3360 10 30 0x00000000) Line(3320 3170 3510 2940 10 30 0x00000000) Line(3150 3360 3030 3380 10 30 0x00000000) Line(3350 3230 3510 3050 10 30 0x00000000) Line(3600 3370 3600 2950 10 30 0x00000000) Line(2340 3050 2450 3050 10 30 0x00000200) Line(2930 2740 2560 2740 10 30 0x00000000) Line(2690 2650 2460 2650 10 30 0x00000000) Line(3070 2990 3160 2750 10 30 0x00000000) Line(3270 2590 3080 2590 10 30 0x00000000) Line(3600 2950 3510 2850 10 30 0x00000000) Line(3270 2800 3270 2590 10 30 0x00000000) Line(2970 2740 3070 2990 10 30 0x00000000) Line(3210 2850 3270 2800 10 30 0x00000000) Line(3690 3750 3680 3740 25 30 0x00000020) ) Layer(2 "GND-sldr") ( Line(3690 3870 3690 3750 25 30 0x00000020) Line(3600 3960 3690 3870 25 30 0x00000020) Line(3140 3960 3600 3960 25 30 0x00000020) Line(3090 3910 3140 3960 25 30 0x00000020) Line(3090 3850 3090 3910 25 30 0x00000020) Line(3040 3750 3150 3750 25 30 0x00000020) Line(3040 3750 3040 3840 25 30 0x00000020) Line(3090 3850 2790 3850 25 30 0x00000020) Line(2940 3750 2940 3840 25 30 0x00000020) Line(3190 3450 2810 3450 25 30 0x00000020) Line(1960 3470 2160 3270 25 30 0x00000020) Line(1960 3900 1960 3470 25 30 0x00000020) Line(2020 3960 1960 3900 25 30 0x00000020) Line(2760 3960 2020 3960 25 30 0x00000020) Line(2790 3930 2760 3960 25 30 0x00000020) Line(2790 3850 2790 3930 25 30 0x00000020) Line(2650 3270 2800 3440 25 30 0x00000020) Line(2160 3270 2650 3270 25 30 0x00000020) Line(3210 3450 3270 3390 25 30 0x00000000) Line(3270 3390 3270 3210 25 30 0x00000000) Line(3270 3210 3210 3150 25 30 0x00000200) Line(3210 3150 3210 3040 25 30 0x00000000) Line(2090 3140 2090 3120 25 30 0x00000000) Line(2090 3130 2010 3040 25 30 0x00000000) Line(2160 3270 2090 3140 25 30 0x00000000) Line(2840 3750 2840 3850 25 30 0x00000020) ) Layer(3 "Vcc-sldr") ( Line(3510 2650 3500 2650 25 30 0x00000220) Line(3660 2650 3510 2650 25 30 0x00000020) Line(3720 2730 3660 2650 25 30 0x00000220) Line(3720 3610 3720 2730 25 30 0x00000020) Line(3690 3640 3720 3610 25 30 0x00000020) ) Layer(4 "component") ( Line(1510 4220 3780 4220 10 30 0x00000000) Line(1510 2520 1510 4220 10 30 0x00000000) Line(3780 2520 1510 2520 10 30 0x00000000) Line(3780 4220 3780 2520 10 30 0x00000000) ) Layer(5 "GND-comp") ( ) Layer(6 "Vcc-comp") ( ) Layer(7 "unused") ( ) Layer(8 "unused") ( ) Layer(9 "silk") ( ) Layer(10 "silk") ( ) NetList() ( Net("unnamed_net20" "(unknown)") ( Connect("CONN1-2") Connect("C2-1") ) Net("unnamed_net19" "(unknown)") ( Connect("CONN1-1") Connect("C1-1") ) Net("unnamed_net18" "(unknown)") ( Connect("R1-2") Connect("C1-2") Connect("R3-1") ) Net("unnamed_net17" "(unknown)") ( Connect("R2-2") Connect("C2-2") Connect("R4-1") ) Net("unnamed_net16" "(unknown)") ( Connect("D3-1") Connect("D1-1") Connect("D2-1") ) Net("unnamed_net15" "(unknown)") ( Connect("D2-2") Connect("R4-2") Connect("R6-1") ) Net("unnamed_net14" "(unknown)") ( Connect("D1-2") Connect("R3-2") Connect("R5-1") ) Net("+5V" "(unknown)") ( Connect("CONN2-1") Connect("C3-2") Connect("IC1-18") ) Net("unnamed_net13" "(unknown)") ( Connect("X1-2") Connect("IC1-8") ) Net("GND" "(unknown)") ( Connect("CONN2-2") Connect("R1-1") Connect("R2-1") Connect("D3-2") Connect("J1-19") Connect("J1-23") Connect("J1-20") Connect("J1-24") Connect("J1-21") Connect("J1-22") Connect("J1-18") Connect("J1-25") Connect("IC1-9") Connect("IC1-6") Connect("IC1-5") ) Net("unnamed_net12" "(unknown)") ( Connect("R8-1") Connect("R9-1") Connect("R7-1") Connect("IC1-4") ) Net("unnamed_net11" "(unknown)") ( Connect("J1-10") Connect("IC1-15") ) Net("unnamed_net10" "(unknown)") ( Connect("J1-11") Connect("IC1-14") ) Net("unnamed_net9" "(unknown)") ( Connect("J1-12") Connect("IC1-13") ) Net("unnamed_net8" "(unknown)") ( Connect("J1-13") Connect("IC1-12") ) Net("unnamed_net7" "(unknown)") ( Connect("J1-15") Connect("IC1-11") ) Net("unnamed_net6" "(unknown)") ( Connect("R11-2") Connect("IC1-3") ) Net("unnamed_net5" "(unknown)") ( Connect("R8-2") Connect("R5-2") Connect("R7-2") Connect("IC1-1") ) Net("unnamed_net4" "(unknown)") ( Connect("R9-2") Connect("R11-1") Connect("R6-2") Connect("IC1-2") ) Net("unnamed_net3" "(unknown)") ( Connect("R10-2") Connect("IC1-16") ) Net("unnamed_net2" "(unknown)") ( Connect("C3-1") Connect("R10-1") Connect("IC1-17") ) Net("unnamed_net1" "(unknown)") ( Connect("X1-1") Connect("IC1-7") ) ) gerbv-2.7.0/example/numpres/numpres.pcb.output_soldermask.grb0000644000175000017500000000404413421555714024355 0ustar carstencarstenG04 Title: test, solder mask solder side * G04 Creator: pcb 1.7.1.ALPHA * G04 CreationDate: Tue Jul 17 09:58:54 2001 UTC * G04 For: spe * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 6000 5000 * G04 PCB-Coordinate-Origin: lower left * %FSLAX23Y23*% %MOIN*% %IPNEG*% %LPD*% %ADD11C,0.025*% %ADD12C,0.010*% %ADD13C,0.040*% %ADD14C,0.055*% %ADD15R,0.060X0.060*% %ADD16R,0.090X0.090*% %ADD17C,0.060*% %ADD18C,0.090*% %ADD19C,0.020*% %ADD20C,0.008*% %ADD21R,0.050X0.050*% %ADD22R,0.080X0.080*% %ADD23C,0.050*% %ADD24C,0.080*% %ADD25C,0.120*% %ADD26C,0.150*% G01X0Y0D02* G54D16*X3690Y1360D03* G54D18*Y1260D03* G54D16*X3210Y2350D03* G54D18*Y2250D03* Y2150D03* Y2050D03* Y1950D03* Y1850D03* Y1750D03* Y1650D03* Y1550D03* X3510D03* Y1650D03* Y1750D03* Y1850D03* Y1950D03* Y2050D03* Y2150D03* Y2250D03* Y2350D03* G54D16*X1650Y1660D03* G54D18*Y1760D03* G54D22*X3070Y2010D03* G54D24*Y2410D03* G54D16*X3030Y1820D03* G54D18*Y1620D03* G54D22*X2940Y1860D03* G54D24*Y2260D03* G54D22*X2680Y1950D03* G54D24*Y2350D03* G54D22*X2560Y1860D03* G54D24*Y2260D03* G54D22*X2330Y1530D03* G54D24*Y1830D03* G54D22*X2450Y1950D03* G54D24*Y2350D03* G54D22*Y1580D03* G54D24*Y1880D03* G54D22*X2800Y1950D03* G54D24*Y2350D03* G54D22*X1690Y1955D03* G54D24*Y2255D03* G54D22*X1830Y2055D03* G54D24*Y2355D03* G54D22*X2220Y2260D03* G54D24*Y1860D03* G54D22*X2340Y2350D03* G54D24*Y1950D03* G54D22*X2100Y1860D03* G54D24*Y2260D03* G54D26*X1770Y1200D03* X3510D03* G54D18*X2040Y1250D03* X2090Y1150D03* X2140Y1250D03* X2190Y1150D03* X2240Y1250D03* X2290Y1150D03* X2340Y1250D03* X2390Y1150D03* X2440Y1250D03* X2490Y1150D03* X2540Y1250D03* X2590Y1150D03* X2640Y1250D03* X2690Y1150D03* X2740Y1250D03* X2790Y1150D03* X2840Y1250D03* X2890Y1150D03* X2940Y1250D03* X2990Y1150D03* X3040Y1250D03* X3090Y1150D03* X3140Y1250D03* X3190Y1150D03* G54D16*X3240Y1250D03* G54D22*X2510Y1560D03* G54D24*X2810D03* G54D22*X3660Y1980D03* G54D24*Y1580D03* G54D22*Y2045D03* G54D24*Y2345D03* G54D22*X1990Y1950D03* G54D24*Y2350D03* D02* M02* gerbv-2.7.0/example/jj/0000755000175000017500000000000013423533412014543 5ustar carstencarstengerbv-2.7.0/example/jj/README.txt0000644000175000017500000000104213421555714016245 0ustar carstencarstenThis is an example from Joachim Jansen (EKF Elektronik GmbH Industrial Computers & Information Technology) who kindly sent this files to point out some bugs in gerbv. When I (spe) had gone through them I had found at least four bugs. The files are: l1-orig.grb : The original file. Contains filled polygons with circles as outline and three layers. l1-?.grb: The three layers in separate files. Layer 1 is drawn, layer 2 is "carved out" from layer 1 and layer3 is then finally the top layer. $Id$gerbv-2.7.0/example/jj/Makefile.am0000644000175000017500000000172113421555714016607 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=l1-1.grb l1-2.grb l1-3.grb l1-orig.grb README.txt MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/jj/l1-2.grb0000644000175000017500000003746213421555714015735 0ustar carstencarstenG04 Visula Post-processor * G04 Date : Thu Aug 29 14:50:26 2002 * G04 File name : /disk1/jobs/ekf/c/cd1/rev0/postpr/spool/l1.off * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %SRX1Y1I0.000J0.000*% %IPPOS*% G75* %ADD10C,0.0050*% %ADD11C,0.0070*% %ADD12C,0.0080*% %ADD13C,0.0080*% %ADD14C,0.0100*% %ADD15C,0.0120*% %ADD16C,0.0160*% %ADD17C,0.0200*% %ADD18C,0.0240*% %ADD19C,0.0550*% %ADD20C,0.0870*% %ADD21R,0.0550X0.0550*% %ADD22R,0.0980X0.0980*% %ADD23O,0.0120X0.0720*% %ADD24R,0.0050X0.0002*% %ADD25R,0.0730X0.0007*% %ADD26R,0.0050X0.0012*% %ADD27R,0.0050X0.0022*% %ADD28R,0.0050X0.0032*% %ADD29R,0.0016X0.0050*% %ADD30R,0.0147X0.0050*% %ADD31R,0.0149X0.0050*% %ADD32R,0.0177X0.0050*% %ADD33R,0.0203X0.0050*% %ADD34R,0.0587X0.0050*% %ADD35R,0.0050X0.0052*% %ADD36R,0.0609X0.0068*% %ADD37R,0.0050X0.0072*% %ADD38R,0.0090X0.0080*% %ADD39R,0.0050X0.0082*% %ADD40R,0.0050X0.0093*% %ADD41R,0.0120X0.0093*% %ADD42R,0.0940X0.0102*% %ADD43R,0.0320X0.0108*% %ADD44R,0.0068X0.0120*% %ADD45R,0.0149X0.0120*% %ADD46R,0.0504X0.0120*% %ADD47R,0.0150X0.0620*% %ADD48R,0.0160X0.0240*% %ADD49R,0.0050X0.0182*% %ADD50R,0.1030X0.0200*% %ADD51R,0.0120X0.0212*% %ADD52R,0.0920X0.0240*% %ADD53R,0.0050X0.0252*% %ADD54R,0.0120X0.0282*% %ADD55R,0.0050X0.0292*% %ADD56R,0.0300X0.0350*% %ADD57R,0.0050X0.0312*% %ADD58R,0.0058X0.0320*% %ADD59R,0.0320X0.0320*% %ADD60R,0.0320X0.0320*% %ADD61R,0.0050X0.0332*% %ADD62R,0.0007X0.0350*% %ADD63R,0.0350X0.0500*% %ADD64R,0.0050X0.0364*% %ADD65R,0.0050X0.0372*% %ADD66R,0.0050X0.0392*% %ADD67R,0.0400X0.0510*% %ADD68R,0.0630X0.0400*% %ADD69R,0.0400X0.0630*% %ADD70R,0.0980X0.0400*% %ADD71R,0.0400X0.0980*% %ADD72R,0.0050X0.0422*% %ADD73R,0.0050X0.0432*% %ADD74R,0.0050X0.0472*% %ADD75R,0.0050X0.0522*% %ADD76R,0.0050X0.0582*% %ADD77R,0.0050X0.0622*% %ADD78R,0.0940X0.0630*% %ADD79R,0.0630X0.0940*% %ADD80R,0.0050X0.0672*% %ADD81R,0.0050X0.0692*% %ADD82R,0.0050X0.0792*% %ADD83R,0.0053X0.0980*% %ADD84R,0.1420X0.1180*% %ADD85R,0.2760X0.1380*% %ADD86R,0.1380X0.2760*% %LPD*% %LNl1_off_c1*% G75* G36* G01X071400Y027189D02* G02I000000J000191D01* G37* G36* G01X065370Y026039D02* G02I000000J000355D01* G37* G36* G01Y013638D02* G02I000000J000354D01* G37* G36* G01Y019740D02* G02I000000J000354D01* G37* G36* G01Y023874D02* G02I000000J000354D01* G37* G36* G01X064504Y022457D02* Y023244D01* X064858* Y022457* X064504* G37* G36* G01Y024031D02* Y024819D01* X064858* Y024031* X064504* G37* G36* G01Y020882D02* Y021669D01* X064858* Y020882* X064504* G37* G36* G01X062732Y021669D02* Y022457D01* X063087* Y021669* X062732* G37* G36* G01Y020094D02* Y020882D01* X063087* Y020094* X062732* G37* G36* G01Y018520D02* Y019307D01* X063087* Y018520* X062732* G37* G36* G01Y016945D02* Y017732D01* X063087* Y016945* X062732* G37* G36* G01X064504Y019307D02* Y020094D01* X064858* Y019307* X064504* G37* G36* G01Y017732D02* Y018520D01* X064858* Y017732* X064504* G37* G36* G01X064898Y016945D02* Y016157D01* X064465* Y016945* X064898* G37* G36* G01X049504Y023795D02* Y024661D01* X049150* Y023795* X049504* G37* G36* G01Y022220D02* Y023087D01* X049150* Y022220* X049504* G37* G36* G01Y020646D02* Y021512D01* X049150* Y020646* X049504* G37* G36* G01Y019071D02* Y019937D01* X049150* Y019071* X049504* G37* G36* G01Y017496D02* Y018362D01* X049150* Y017496* X049504* G37* G36* G01X057807Y019162D02* X057907Y019262D01* X057987* X058027Y019302* Y019602* X058637* Y019672* X058737Y019772* X058887* X058987Y019672* Y019522* X058887Y019422* X058807* X058777Y019392* Y019092* X058157* Y019022* X058047Y018912* X057907* X057807Y019012* Y019162* G37* G36* G01X056665D02* X056765Y019262D01* X056845* X056885Y019302* Y019602* X057495* Y019672* X057595Y019772* X057745* X057845Y019672* Y019522* X057745Y019422* X057665* X057635Y019392* Y019092* X057015* Y019022* X056905Y018912* X056765* X056665Y019012* Y019162* G37* G36* G01X055524D02* X055624Y019262D01* X055704* X055744Y019302* Y019602* X056354* Y019672* X056454Y019772* X056604* X056704Y019672* Y019522* X056604Y019422* X056524* X056494Y019392* Y019092* X055874* Y019022* X055764Y018912* X055624* X055524Y019012* Y019162* G37* G36* G01X054382D02* X054482Y019262D01* X054562* X054602Y019302* Y019602* X055212* Y019672* X055312Y019772* X055462* X055562Y019672* Y019522* X055462Y019422* X055382* X055352Y019392* Y019092* X054732* Y019022* X054622Y018912* X054482* X054382Y019012* Y019162* G37* G36* G01X053240D02* X053340Y019262D01* X053420* X053460Y019302* Y019602* X054070* Y019672* X054170Y019772* X054320* X054420Y019672* Y019522* X054320Y019422* X054240* X054210Y019392* Y019092* X053590* Y019022* X053480Y018912* X053340* X053240Y019012* Y019162* G37* G36* G01Y021091D02* X053340Y021191D01* X053420* X053460Y021231* Y021531* X054070* Y021601* X054170Y021701* X054320* X054420Y021601* Y021451* X054320Y021351* X054240* X054210Y021321* Y021021* X053590* Y020951* X053480Y020841* X053340* X053240Y020941* Y021091* G37* G36* G01X054382D02* X054482Y021191D01* X054562* X054602Y021231* Y021531* X055212* Y021601* X055312Y021701* X055462* X055562Y021601* Y021451* X055462Y021351* X055382* X055352Y021321* Y021021* X054732* Y020951* X054622Y020841* X054482* X054382Y020941* Y021091* G37* G36* G01X055524D02* X055624Y021191D01* X055704* X055744Y021231* Y021531* X056354* Y021601* X056454Y021701* X056604* X056704Y021601* Y021451* X056604Y021351* X056524* X056494Y021321* Y021021* X055874* Y020951* X055764Y020841* X055624* X055524Y020941* Y021091* G37* G36* G01X056665D02* X056765Y021191D01* X056845* X056885Y021231* Y021531* X057495* Y021601* X057595Y021701* X057745* X057845Y021601* Y021451* X057745Y021351* X057665* X057635Y021321* Y021021* X057015* Y020951* X056905Y020841* X056765* X056665Y020941* Y021091* G37* G36* G01X057807D02* X057907Y021191D01* X057987* X058027Y021231* Y021531* X058637* Y021601* X058737Y021701* X058887* X058987Y021601* Y021451* X058887Y021351* X058807* X058777Y021321* Y021021* X058157* Y020951* X058047Y020841* X057907* X057807Y020941* Y021091* G37* G36* G01Y023020D02* X057907Y023120D01* X057987* X058027Y023160* Y023460* X058637* Y023530* X058737Y023630* X058887* X058987Y023530* Y023380* X058887Y023280* X058807* X058777Y023250* Y022950* X058157* Y022880* X058047Y022770* X057907* X057807Y022870* Y023020* G37* G36* G01X056665D02* X056765Y023120D01* X056845* X056885Y023160* Y023460* X057495* Y023530* X057595Y023630* X057745* X057845Y023530* Y023380* X057745Y023280* X057665* X057635Y023250* Y022950* X057015* Y022880* X056905Y022770* X056765* X056665Y022870* Y023020* G37* G36* G01X055524D02* X055624Y023120D01* X055704* X055744Y023160* Y023460* X056354* Y023530* X056454Y023630* X056604* X056704Y023530* Y023380* X056604Y023280* X056524* X056494Y023250* Y022950* X055874* Y022880* X055764Y022770* X055624* X055524Y022870* Y023020* G37* G36* G01X054382D02* X054482Y023120D01* X054562* X054602Y023160* Y023460* X055212* Y023530* X055312Y023630* X055462* X055562Y023530* Y023380* X055462Y023280* X055382* X055352Y023250* Y022950* X054732* Y022880* X054622Y022770* X054482* X054382Y022870* Y023020* G37* G36* G01X051213Y023994D02* X051313Y024094D01* X051433* X051653Y023874* X051703* X051813Y023764* Y023714* X052033Y023494* Y023374* X051933Y023274* X051813* X051603Y023484* X051553* X051423Y023614* Y023664* X051213Y023874* Y023994* G37* G36* G01X053240Y023020D02* X053340Y023120D01* X053420* X053460Y023160* Y023460* X054070* Y023530* X054170Y023630* X054320* X054420Y023530* Y023380* X054320Y023280* X054240* X054210Y023250* Y022950* X053590* Y022880* X053480Y022770* X053340* X053240Y022870* Y023020* G37* G36* G01X061925Y017162D02* X061715Y017372D01* Y017505* X061802Y017592* X061935* X062155Y017372* X062205* X062315Y017262* Y017212* X062535Y016992* Y016872* X062435Y016772* X062315* X062105Y016982* X062055* X061925Y017112* Y017162* G37* G36* G01X061710Y018490D02* X061810Y018590D01* X061930* X062150Y018370* X062200* X062310Y018260* Y018210* X062530Y017990* Y017870* X062430Y017770* X062310* X062100Y017980* X062050* X061920Y018110* Y018160* X061710Y018370* Y018490* G37* G36* G01X060713Y018494D02* X060813Y018594D01* X060933* X061153Y018374* X061203* X061313Y018264* Y018214* X061533Y017994* Y017874* X061433Y017774* X061313* X061103Y017984* X061053* X060923Y018114* Y018164* X060713Y018374* Y018494* G37* G36* G01X060210Y017990D02* X060310Y018090D01* X060430* X060650Y017870* X060700* X060810Y017760* Y017710* X061030Y017490* Y017370* X060930Y017270* X060810* X060600Y017480* X060550* X060420Y017610* Y017660* X060210Y017870* Y017990* G37* G36* G01X059528Y018613D02* X059669D01* X059690Y018590* X059940* X060023Y018500* Y018371* X059933Y018281* X059691* X059669Y018260* X059514* X059429Y018344* Y018514* X059528Y018613* G37* G36* G01X061713Y019494D02* X061813Y019594D01* X061933* X062153Y019374* X062203* X062313Y019264* Y019214* X062533Y018994* Y018874* X062433Y018774* X062313* X062103Y018984* X062053* X061923Y019114* Y019164* X061713Y019374* Y019494* G37* G36* G01Y020494D02* X061813Y020594D01* X061933* X062153Y020374* X062203* X062313Y020264* Y020214* X062533Y019994* Y019874* X062433Y019774* X062313* X062103Y019984* X062053* X061923Y020114* Y020164* X061713Y020374* Y020494* G37* G36* G01Y021494D02* X061813Y021594D01* X061933* X062153Y021374* X062203* X062313Y021264* Y021214* X062533Y020994* Y020874* X062433Y020774* X062313* X062103Y020984* X062053* X061923Y021114* Y021164* X061713Y021374* Y021494* G37* G36* G01X062251Y022304D02* X062351Y022204D01* X062350Y022170* X062520Y022000* X062521Y021874* X062429Y021783* X062302* X062131Y021954* X062101* X061991Y022064* Y022184* X062111Y022304* X062251* G37* G36* G01X060713Y019494D02* X060813Y019594D01* X060933* X061153Y019374* X061203* X061313Y019264* Y019214* X061533Y018994* Y018874* X061433Y018774* X061313* X061103Y018984* X061053* X060923Y019114* Y019164* X060713Y019374* Y019494* G37* G36* G01Y020494D02* X060813Y020594D01* X060933* X061153Y020374* X061203* X061313Y020264* Y020214* X061533Y019994* Y019874* X061433Y019774* X061313* X061103Y019984* X061053* X060923Y020114* Y020164* X060713Y020374* Y020494* G37* G36* G01Y021494D02* X060813Y021594D01* X060933* X061153Y021374* X061203* X061313Y021264* Y021214* X061533Y020994* Y020874* X061433Y020774* X061313* X061103Y020984* X061053* X060923Y021114* Y021164* X060713Y021374* Y021494* G37* G36* G01Y022494D02* X060813Y022594D01* X060933* X061153Y022374* X061203* X061313Y022264* Y022214* X061533Y021994* Y021874* X061433Y021774* X061313* X061103Y021984* X061053* X060923Y022114* Y022164* X060713Y022374* Y022494* G37* G36* G01X061213Y022994D02* X061313Y023094D01* X061433* X061653Y022874* X061703* X061813Y022764* Y022714* X062033Y022494* Y022374* X061933Y022274* X061813* X061603Y022484* X061553* X061423Y022614* Y022664* X061213Y022874* Y022994* G37* G36* G01X061713Y023494D02* X061813Y023594D01* X061933* X062153Y023374* X062203* X062313Y023264* Y023214* X062533Y022994* Y022874* X062433Y022774* X062313* X062103Y022984* X062053* X061923Y023114* Y023164* X061713Y023374* Y023494* G37* G36* G01X059713Y019494D02* X059813Y019594D01* X059933* X060153Y019374* X060203* X060313Y019264* Y019214* X060533Y018994* Y018874* X060433Y018774* X060313* X060103Y018984* X060053* X059923Y019114* Y019164* X059713Y019374* Y019494* G37* G36* G01Y020494D02* X059813Y020594D01* X059933* X060153Y020374* X060203* X060313Y020264* Y020214* X060533Y019994* Y019874* X060433Y019774* X060313* X060103Y019984* X060053* X059923Y020114* Y020164* X059713Y020374* Y020494* G37* G36* G01Y021494D02* X059813Y021594D01* X059933* X060153Y021374* X060203* X060313Y021264* Y021214* X060533Y020994* Y020874* X060433Y020774* X060313* X060103Y020984* X060053* X059923Y021114* Y021164* X059713Y021374* Y021494* G37* G36* G01Y022494D02* X059813Y022594D01* X059933* X060153Y022374* X060203* X060313Y022264* Y022214* X060533Y021994* Y021874* X060433Y021774* X060313* X060103Y021984* X060053* X059923Y022114* Y022164* X059713Y022374* Y022494* G37* G36* G01Y023494D02* X059813Y023594D01* X059933* X060153Y023374* X060203* X060313Y023264* Y023214* X060533Y022994* Y022874* X060433Y022774* X060313* X060103Y022984* X060053* X059923Y023114* Y023164* X059713Y023374* Y023494* G37* G36* G01X049713Y018494D02* X049813Y018594D01* X049933* X050153Y018374* X050203* X050313Y018264* Y018214* X050533Y017994* Y017874* X050433Y017774* X050313* X050103Y017984* X050053* X049923Y018114* Y018164* X049713Y018374* Y018494* G37* G36* G01X050213Y018994D02* X050313Y019094D01* X050433* X050653Y018874* X050703* X050813Y018764* Y018714* X051033Y018494* Y018374* X050933Y018274* X050813* X050603Y018484* X050553* X050423Y018614* Y018664* X050213Y018874* Y018994* G37* G36* G01X051213D02* X051313Y019094D01* X051433* X051653Y018874* X051703* X051813Y018764* Y018714* X052033Y018494* Y018374* X051933Y018274* X051813* X051603Y018484* X051553* X051423Y018614* Y018664* X051213Y018874* Y018994* G37* G36* G01X051713Y019494D02* X051813Y019594D01* X051933* X052153Y019374* X052203* X052313Y019264* Y019214* X052533Y018994* Y018874* X052433Y018774* X052313* X052103Y018984* X052053* X051923Y019114* Y019164* X051713Y019374* Y019494* G37* G36* G01X050210Y019990D02* X050310Y020090D01* X050430* X050650Y019870* X050700* X050810Y019760* Y019710* X051030Y019490* Y019370* X050930Y019270* X050810* X050600Y019480* X050550* X050420Y019610* Y019660* X050210Y019870* Y019990* G37* G36* G01X051713Y020494D02* X051813Y020594D01* X051933* X052153Y020374* X052203* X052313Y020264* Y020214* X052533Y019994* Y019874* X052433Y019774* X052313* X052103Y019984* X052053* X051923Y020114* Y020164* X051713Y020374* Y020494* G37* G36* G01X050710Y020490D02* X050810Y020590D01* X050930* X051150Y020370* X051200* X051310Y020260* Y020210* X051530Y019990* Y019870* X051430Y019770* X051310* X051100Y019980* X051050* X050920Y020110* Y020160* X050710Y020370* Y020490* G37* G36* G01X051713Y021494D02* X051813Y021594D01* X051933* X052153Y021374* X052203* X052313Y021264* Y021214* X052533Y020994* Y020874* X052433Y020774* X052313* X052103Y020984* X052053* X051923Y021114* Y021164* X051713Y021374* Y021494* G37* G36* G01X050713D02* X050813Y021594D01* X050933* X051153Y021374* X051203* X051313Y021264* Y021214* X051533Y020994* Y020874* X051433Y020774* X051313* X051103Y020984* X051053* X050923Y021114* Y021164* X050713Y021374* Y021494* G37* G36* G01X049713D02* X049813Y021594D01* X049933* X050153Y021374* X050203* X050313Y021264* Y021214* X050533Y020994* Y020874* X050433Y020774* X050313* X050103Y020984* X050053* X049923Y021114* Y021164* X049713Y021374* Y021494* G37* G36* G01X051713Y022494D02* X051813Y022594D01* X051933* X052153Y022374* X052203* X052313Y022264* Y022214* X052533Y021994* Y021874* X052433Y021774* X052313* X052103Y021984* X052053* X051923Y022114* Y022164* X051713Y022374* Y022494* G37* G36* G01X050713D02* X050813Y022594D01* X050933* X051153Y022374* X051203* X051313Y022264* Y022214* X051533Y021994* Y021874* X051433Y021774* X051313* X051103Y021984* X051053* X050923Y022114* Y022164* X050713Y022374* Y022494* G37* G36* G01X049713D02* X049813Y022594D01* X049933* X050153Y022374* X050203* X050313Y022264* Y022214* X050533Y021994* Y021874* X050433Y021774* X050313* X050103Y021984* X050053* X049923Y022114* Y022164* X049713Y022374* Y022494* G37* G36* G01X050710Y023490D02* X050810Y023590D01* X050930* X051150Y023370* X051200* X051310Y023260* Y023210* X051530Y022990* Y022870* X051430Y022770* X051310* X051100Y022980* X051050* X050920Y023110* Y023160* X050710Y023370* Y023490* G37* G36* G01X049710D02* X049810Y023590D01* X049930* X050150Y023370* X050200* X050310Y023260* Y023210* X050530Y022990* Y022870* X050430Y022770* X050310* X050100Y022980* X050050* X049920Y023110* Y023160* X049710Y023370* Y023490* G37* G36* G01X052712Y022755D02* X052571D01* X052543Y022783* X052302* X052217Y022868* Y022997* X052307Y023087* X052550* X052571Y023108* X052726* X052811Y023024* Y022854* X052712Y022755* G37* G36* G01X052368Y023775D02* G02I000000J000160D01* G37* G36* G01X049980Y020070D02* X049880Y020170D01* Y020210* X049710Y020380* Y020500* X049800Y020590* X049930* X050100Y020420* X050130* X050240Y020310* Y020190* X050120Y020070* X049980* G37* G36* G01Y019070D02* X049880Y019170D01* Y019210* X049710Y019380* Y019500* X049800Y019590* X049930* X050100Y019420* X050130* X050240Y019310* Y019190* X050120Y019070* X049980* G37* G36* G01X049868Y017275D02* G02I000000J000160D01* G37* M00* M02* gerbv-2.7.0/example/jj/l1-orig.grb0000644000175000017500000030245513421555714016531 0ustar carstencarstenG04 Visula Post-processor * G04 Date : Thu Aug 29 14:50:26 2002 * G04 File name : /disk1/jobs/ekf/c/cd1/rev0/postpr/spool/l1.off * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %SRX1Y1I0.000J0.000*% %IPPOS*% G75* %ADD10C,0.0050*% %ADD11C,0.0070*% %ADD12C,0.0080*% %ADD13C,0.0080*% %ADD14C,0.0100*% %ADD15C,0.0120*% %ADD16C,0.0160*% %ADD17C,0.0200*% %ADD18C,0.0240*% %ADD19C,0.0550*% %ADD20C,0.0870*% %ADD21R,0.0550X0.0550*% %ADD22R,0.0980X0.0980*% %ADD23O,0.0120X0.0720*% %ADD24R,0.0050X0.0002*% %ADD25R,0.0730X0.0007*% %ADD26R,0.0050X0.0012*% %ADD27R,0.0050X0.0022*% %ADD28R,0.0050X0.0032*% %ADD29R,0.0016X0.0050*% %ADD30R,0.0147X0.0050*% %ADD31R,0.0149X0.0050*% %ADD32R,0.0177X0.0050*% %ADD33R,0.0203X0.0050*% %ADD34R,0.0587X0.0050*% %ADD35R,0.0050X0.0052*% %ADD36R,0.0609X0.0068*% %ADD37R,0.0050X0.0072*% %ADD38R,0.0090X0.0080*% %ADD39R,0.0050X0.0082*% %ADD40R,0.0050X0.0093*% %ADD41R,0.0120X0.0093*% %ADD42R,0.0940X0.0102*% %ADD43R,0.0320X0.0108*% %ADD44R,0.0068X0.0120*% %ADD45R,0.0149X0.0120*% %ADD46R,0.0504X0.0120*% %ADD47R,0.0150X0.0620*% %ADD48R,0.0160X0.0240*% %ADD49R,0.0050X0.0182*% %ADD50R,0.1030X0.0200*% %ADD51R,0.0120X0.0212*% %ADD52R,0.0920X0.0240*% %ADD53R,0.0050X0.0252*% %ADD54R,0.0120X0.0282*% %ADD55R,0.0050X0.0292*% %ADD56R,0.0300X0.0350*% %ADD57R,0.0050X0.0312*% %ADD58R,0.0058X0.0320*% %ADD59R,0.0320X0.0320*% %ADD60R,0.0320X0.0320*% %ADD61R,0.0050X0.0332*% %ADD62R,0.0007X0.0350*% %ADD63R,0.0350X0.0500*% %ADD64R,0.0050X0.0364*% %ADD65R,0.0050X0.0372*% %ADD66R,0.0050X0.0392*% %ADD67R,0.0400X0.0510*% %ADD68R,0.0630X0.0400*% %ADD69R,0.0400X0.0630*% %ADD70R,0.0980X0.0400*% %ADD71R,0.0400X0.0980*% %ADD72R,0.0050X0.0422*% %ADD73R,0.0050X0.0432*% %ADD74R,0.0050X0.0472*% %ADD75R,0.0050X0.0522*% %ADD76R,0.0050X0.0582*% %ADD77R,0.0050X0.0622*% %ADD78R,0.0940X0.0630*% %ADD79R,0.0630X0.0940*% %ADD80R,0.0050X0.0672*% %ADD81R,0.0050X0.0692*% %ADD82R,0.0050X0.0792*% %ADD83R,0.0053X0.0980*% %ADD84R,0.1420X0.1180*% %ADD85R,0.2760X0.1380*% %ADD86R,0.1380X0.2760*% %LPD*% %LNl1_off_d1*% G75* G36* G01X072847Y028362D02* X072654D01* Y028677* X069150* Y024228* X072847* Y028362* G37* G36* G01X050291Y023756D02* X049819Y024228D01* X049701* Y025291* X049425* Y025961* X047732* Y024583* X047299* Y023874* X047732* Y023008* X047339* Y022299* X047732* Y021433* X047339* Y020724* X047732* Y019858* X047339* Y019150* X047732* Y018283* X047339* Y017654* X047693* X047850Y017496* Y016000* X048047Y015803* X049150* Y016787* X049504* X049858Y017142* X050409* Y017260* X051276Y018126* X051433* X051551Y018008* Y017850* X051079Y017378* Y017142* X051433* Y017260* X052299Y018126* X052535* X052811Y017850* Y017417* X053559* Y017732* X053677Y017850* X053874* X053992Y017732* Y017417* X059661* Y017496* X059780Y017614* X059976* X060449Y017142* X061433* X063638Y014937* Y013756* X064622* Y011236* X067732* X068283Y011787* Y013480* X067929Y013835* Y014504* X068283Y014858* Y018480* X067142* Y018835* X067535* Y020213* X065961* Y023598* X067535* Y025331* X065961* Y027969* X064701* Y030921* X062339* Y029307* X063756* X064307Y028756* Y025921* X063087Y024701* Y023205* X062732* Y023323* X062024Y024031* X061748* X061472Y023756* X061079* Y023362* X060961Y023244* X060764* X060252Y023756* X059701* X059465Y023992* X052732* Y024228* X050370* Y024189* X050567Y023992* Y023874* X050449Y023756* X050291* G37* %LPC*% %LNl1_off_c1*% G75* G36* G01X071400Y027189D02* G02I000000J000191D01* G37* G36* G01X065370Y026039D02* G02I000000J000355D01* G37* G36* G01Y013638D02* G02I000000J000354D01* G37* G36* G01Y019740D02* G02I000000J000354D01* G37* G36* G01Y023874D02* G02I000000J000354D01* G37* G36* G01X064504Y022457D02* Y023244D01* X064858* Y022457* X064504* G37* G36* G01Y024031D02* Y024819D01* X064858* Y024031* X064504* G37* G36* G01Y020882D02* Y021669D01* X064858* Y020882* X064504* G37* G36* G01X062732Y021669D02* Y022457D01* X063087* Y021669* X062732* G37* G36* G01Y020094D02* Y020882D01* X063087* Y020094* X062732* G37* G36* G01Y018520D02* Y019307D01* X063087* Y018520* X062732* G37* G36* G01Y016945D02* Y017732D01* X063087* Y016945* X062732* G37* G36* G01X064504Y019307D02* Y020094D01* X064858* Y019307* X064504* G37* G36* G01Y017732D02* Y018520D01* X064858* Y017732* X064504* G37* G36* G01X064898Y016945D02* Y016157D01* X064465* Y016945* X064898* G37* G36* G01X049504Y023795D02* Y024661D01* X049150* Y023795* X049504* G37* G36* G01Y022220D02* Y023087D01* X049150* Y022220* X049504* G37* G36* G01Y020646D02* Y021512D01* X049150* Y020646* X049504* G37* G36* G01Y019071D02* Y019937D01* X049150* Y019071* X049504* G37* G36* G01Y017496D02* Y018362D01* X049150* Y017496* X049504* G37* G36* G01X057807Y019162D02* X057907Y019262D01* X057987* X058027Y019302* Y019602* X058637* Y019672* X058737Y019772* X058887* X058987Y019672* Y019522* X058887Y019422* X058807* X058777Y019392* Y019092* X058157* Y019022* X058047Y018912* X057907* X057807Y019012* Y019162* G37* G36* G01X056665D02* X056765Y019262D01* X056845* X056885Y019302* Y019602* X057495* Y019672* X057595Y019772* X057745* X057845Y019672* Y019522* X057745Y019422* X057665* X057635Y019392* Y019092* X057015* Y019022* X056905Y018912* X056765* X056665Y019012* Y019162* G37* G36* G01X055524D02* X055624Y019262D01* X055704* X055744Y019302* Y019602* X056354* Y019672* X056454Y019772* X056604* X056704Y019672* Y019522* X056604Y019422* X056524* X056494Y019392* Y019092* X055874* Y019022* X055764Y018912* X055624* X055524Y019012* Y019162* G37* G36* G01X054382D02* X054482Y019262D01* X054562* X054602Y019302* Y019602* X055212* Y019672* X055312Y019772* X055462* X055562Y019672* Y019522* X055462Y019422* X055382* X055352Y019392* Y019092* X054732* Y019022* X054622Y018912* X054482* X054382Y019012* Y019162* G37* G36* G01X053240D02* X053340Y019262D01* X053420* X053460Y019302* Y019602* X054070* Y019672* X054170Y019772* X054320* X054420Y019672* Y019522* X054320Y019422* X054240* X054210Y019392* Y019092* X053590* Y019022* X053480Y018912* X053340* X053240Y019012* Y019162* G37* G36* G01Y021091D02* X053340Y021191D01* X053420* X053460Y021231* Y021531* X054070* Y021601* X054170Y021701* X054320* X054420Y021601* Y021451* X054320Y021351* X054240* X054210Y021321* Y021021* X053590* Y020951* X053480Y020841* X053340* X053240Y020941* Y021091* G37* G36* G01X054382D02* X054482Y021191D01* X054562* X054602Y021231* Y021531* X055212* Y021601* X055312Y021701* X055462* X055562Y021601* Y021451* X055462Y021351* X055382* X055352Y021321* Y021021* X054732* Y020951* X054622Y020841* X054482* X054382Y020941* Y021091* G37* G36* G01X055524D02* X055624Y021191D01* X055704* X055744Y021231* Y021531* X056354* Y021601* X056454Y021701* X056604* X056704Y021601* Y021451* X056604Y021351* X056524* X056494Y021321* Y021021* X055874* Y020951* X055764Y020841* X055624* X055524Y020941* Y021091* G37* G36* G01X056665D02* X056765Y021191D01* X056845* X056885Y021231* Y021531* X057495* Y021601* X057595Y021701* X057745* X057845Y021601* Y021451* X057745Y021351* X057665* X057635Y021321* Y021021* X057015* Y020951* X056905Y020841* X056765* X056665Y020941* Y021091* G37* G36* G01X057807D02* X057907Y021191D01* X057987* X058027Y021231* Y021531* X058637* Y021601* X058737Y021701* X058887* X058987Y021601* Y021451* X058887Y021351* X058807* X058777Y021321* Y021021* X058157* Y020951* X058047Y020841* X057907* X057807Y020941* Y021091* G37* G36* G01Y023020D02* X057907Y023120D01* X057987* X058027Y023160* Y023460* X058637* Y023530* X058737Y023630* X058887* X058987Y023530* Y023380* X058887Y023280* X058807* X058777Y023250* Y022950* X058157* Y022880* X058047Y022770* X057907* X057807Y022870* Y023020* G37* G36* G01X056665D02* X056765Y023120D01* X056845* X056885Y023160* Y023460* X057495* Y023530* X057595Y023630* X057745* X057845Y023530* Y023380* X057745Y023280* X057665* X057635Y023250* Y022950* X057015* Y022880* X056905Y022770* X056765* X056665Y022870* Y023020* G37* G36* G01X055524D02* X055624Y023120D01* X055704* X055744Y023160* Y023460* X056354* Y023530* X056454Y023630* X056604* X056704Y023530* Y023380* X056604Y023280* X056524* X056494Y023250* Y022950* X055874* Y022880* X055764Y022770* X055624* X055524Y022870* Y023020* G37* G36* G01X054382D02* X054482Y023120D01* X054562* X054602Y023160* Y023460* X055212* Y023530* X055312Y023630* X055462* X055562Y023530* Y023380* X055462Y023280* X055382* X055352Y023250* Y022950* X054732* Y022880* X054622Y022770* X054482* X054382Y022870* Y023020* G37* G36* G01X051213Y023994D02* X051313Y024094D01* X051433* X051653Y023874* X051703* X051813Y023764* Y023714* X052033Y023494* Y023374* X051933Y023274* X051813* X051603Y023484* X051553* X051423Y023614* Y023664* X051213Y023874* Y023994* G37* G36* G01X053240Y023020D02* X053340Y023120D01* X053420* X053460Y023160* Y023460* X054070* Y023530* X054170Y023630* X054320* X054420Y023530* Y023380* X054320Y023280* X054240* X054210Y023250* Y022950* X053590* Y022880* X053480Y022770* X053340* X053240Y022870* Y023020* G37* G36* G01X061925Y017162D02* X061715Y017372D01* Y017505* X061802Y017592* X061935* X062155Y017372* X062205* X062315Y017262* Y017212* X062535Y016992* Y016872* X062435Y016772* X062315* X062105Y016982* X062055* X061925Y017112* Y017162* G37* G36* G01X061710Y018490D02* X061810Y018590D01* X061930* X062150Y018370* X062200* X062310Y018260* Y018210* X062530Y017990* Y017870* X062430Y017770* X062310* X062100Y017980* X062050* X061920Y018110* Y018160* X061710Y018370* Y018490* G37* G36* G01X060713Y018494D02* X060813Y018594D01* X060933* X061153Y018374* X061203* X061313Y018264* Y018214* X061533Y017994* Y017874* X061433Y017774* X061313* X061103Y017984* X061053* X060923Y018114* Y018164* X060713Y018374* Y018494* G37* G36* G01X060210Y017990D02* X060310Y018090D01* X060430* X060650Y017870* X060700* X060810Y017760* Y017710* X061030Y017490* Y017370* X060930Y017270* X060810* X060600Y017480* X060550* X060420Y017610* Y017660* X060210Y017870* Y017990* G37* G36* G01X059528Y018613D02* X059669D01* X059690Y018590* X059940* X060023Y018500* Y018371* X059933Y018281* X059691* X059669Y018260* X059514* X059429Y018344* Y018514* X059528Y018613* G37* G36* G01X061713Y019494D02* X061813Y019594D01* X061933* X062153Y019374* X062203* X062313Y019264* Y019214* X062533Y018994* Y018874* X062433Y018774* X062313* X062103Y018984* X062053* X061923Y019114* Y019164* X061713Y019374* Y019494* G37* G36* G01Y020494D02* X061813Y020594D01* X061933* X062153Y020374* X062203* X062313Y020264* Y020214* X062533Y019994* Y019874* X062433Y019774* X062313* X062103Y019984* X062053* X061923Y020114* Y020164* X061713Y020374* Y020494* G37* G36* G01Y021494D02* X061813Y021594D01* X061933* X062153Y021374* X062203* X062313Y021264* Y021214* X062533Y020994* Y020874* X062433Y020774* X062313* X062103Y020984* X062053* X061923Y021114* Y021164* X061713Y021374* Y021494* G37* G36* G01X062251Y022304D02* X062351Y022204D01* X062350Y022170* X062520Y022000* X062521Y021874* X062429Y021783* X062302* X062131Y021954* X062101* X061991Y022064* Y022184* X062111Y022304* X062251* G37* G36* G01X060713Y019494D02* X060813Y019594D01* X060933* X061153Y019374* X061203* X061313Y019264* Y019214* X061533Y018994* Y018874* X061433Y018774* X061313* X061103Y018984* X061053* X060923Y019114* Y019164* X060713Y019374* Y019494* G37* G36* G01Y020494D02* X060813Y020594D01* X060933* X061153Y020374* X061203* X061313Y020264* Y020214* X061533Y019994* Y019874* X061433Y019774* X061313* X061103Y019984* X061053* X060923Y020114* Y020164* X060713Y020374* Y020494* G37* G36* G01Y021494D02* X060813Y021594D01* X060933* X061153Y021374* X061203* X061313Y021264* Y021214* X061533Y020994* Y020874* X061433Y020774* X061313* X061103Y020984* X061053* X060923Y021114* Y021164* X060713Y021374* Y021494* G37* G36* G01Y022494D02* X060813Y022594D01* X060933* X061153Y022374* X061203* X061313Y022264* Y022214* X061533Y021994* Y021874* X061433Y021774* X061313* X061103Y021984* X061053* X060923Y022114* Y022164* X060713Y022374* Y022494* G37* G36* G01X061213Y022994D02* X061313Y023094D01* X061433* X061653Y022874* X061703* X061813Y022764* Y022714* X062033Y022494* Y022374* X061933Y022274* X061813* X061603Y022484* X061553* X061423Y022614* Y022664* X061213Y022874* Y022994* G37* G36* G01X061713Y023494D02* X061813Y023594D01* X061933* X062153Y023374* X062203* X062313Y023264* Y023214* X062533Y022994* Y022874* X062433Y022774* X062313* X062103Y022984* X062053* X061923Y023114* Y023164* X061713Y023374* Y023494* G37* G36* G01X059713Y019494D02* X059813Y019594D01* X059933* X060153Y019374* X060203* X060313Y019264* Y019214* X060533Y018994* Y018874* X060433Y018774* X060313* X060103Y018984* X060053* X059923Y019114* Y019164* X059713Y019374* Y019494* G37* G36* G01Y020494D02* X059813Y020594D01* X059933* X060153Y020374* X060203* X060313Y020264* Y020214* X060533Y019994* Y019874* X060433Y019774* X060313* X060103Y019984* X060053* X059923Y020114* Y020164* X059713Y020374* Y020494* G37* G36* G01Y021494D02* X059813Y021594D01* X059933* X060153Y021374* X060203* X060313Y021264* Y021214* X060533Y020994* Y020874* X060433Y020774* X060313* X060103Y020984* X060053* X059923Y021114* Y021164* X059713Y021374* Y021494* G37* G36* G01Y022494D02* X059813Y022594D01* X059933* X060153Y022374* X060203* X060313Y022264* Y022214* X060533Y021994* Y021874* X060433Y021774* X060313* X060103Y021984* X060053* X059923Y022114* Y022164* X059713Y022374* Y022494* G37* G36* G01Y023494D02* X059813Y023594D01* X059933* X060153Y023374* X060203* X060313Y023264* Y023214* X060533Y022994* Y022874* X060433Y022774* X060313* X060103Y022984* X060053* X059923Y023114* Y023164* X059713Y023374* Y023494* G37* G36* G01X049713Y018494D02* X049813Y018594D01* X049933* X050153Y018374* X050203* X050313Y018264* Y018214* X050533Y017994* Y017874* X050433Y017774* X050313* X050103Y017984* X050053* X049923Y018114* Y018164* X049713Y018374* Y018494* G37* G36* G01X050213Y018994D02* X050313Y019094D01* X050433* X050653Y018874* X050703* X050813Y018764* Y018714* X051033Y018494* Y018374* X050933Y018274* X050813* X050603Y018484* X050553* X050423Y018614* Y018664* X050213Y018874* Y018994* G37* G36* G01X051213D02* X051313Y019094D01* X051433* X051653Y018874* X051703* X051813Y018764* Y018714* X052033Y018494* Y018374* X051933Y018274* X051813* X051603Y018484* X051553* X051423Y018614* Y018664* X051213Y018874* Y018994* G37* G36* G01X051713Y019494D02* X051813Y019594D01* X051933* X052153Y019374* X052203* X052313Y019264* Y019214* X052533Y018994* Y018874* X052433Y018774* X052313* X052103Y018984* X052053* X051923Y019114* Y019164* X051713Y019374* Y019494* G37* G36* G01X050210Y019990D02* X050310Y020090D01* X050430* X050650Y019870* X050700* X050810Y019760* Y019710* X051030Y019490* Y019370* X050930Y019270* X050810* X050600Y019480* X050550* X050420Y019610* Y019660* X050210Y019870* Y019990* G37* G36* G01X051713Y020494D02* X051813Y020594D01* X051933* X052153Y020374* X052203* X052313Y020264* Y020214* X052533Y019994* Y019874* X052433Y019774* X052313* X052103Y019984* X052053* X051923Y020114* Y020164* X051713Y020374* Y020494* G37* G36* G01X050710Y020490D02* X050810Y020590D01* X050930* X051150Y020370* X051200* X051310Y020260* Y020210* X051530Y019990* Y019870* X051430Y019770* X051310* X051100Y019980* X051050* X050920Y020110* Y020160* X050710Y020370* Y020490* G37* G36* G01X051713Y021494D02* X051813Y021594D01* X051933* X052153Y021374* X052203* X052313Y021264* Y021214* X052533Y020994* Y020874* X052433Y020774* X052313* X052103Y020984* X052053* X051923Y021114* Y021164* X051713Y021374* Y021494* G37* G36* G01X050713D02* X050813Y021594D01* X050933* X051153Y021374* X051203* X051313Y021264* Y021214* X051533Y020994* Y020874* X051433Y020774* X051313* X051103Y020984* X051053* X050923Y021114* Y021164* X050713Y021374* Y021494* G37* G36* G01X049713D02* X049813Y021594D01* X049933* X050153Y021374* X050203* X050313Y021264* Y021214* X050533Y020994* Y020874* X050433Y020774* X050313* X050103Y020984* X050053* X049923Y021114* Y021164* X049713Y021374* Y021494* G37* G36* G01X051713Y022494D02* X051813Y022594D01* X051933* X052153Y022374* X052203* X052313Y022264* Y022214* X052533Y021994* Y021874* X052433Y021774* X052313* X052103Y021984* X052053* X051923Y022114* Y022164* X051713Y022374* Y022494* G37* G36* G01X050713D02* X050813Y022594D01* X050933* X051153Y022374* X051203* X051313Y022264* Y022214* X051533Y021994* Y021874* X051433Y021774* X051313* X051103Y021984* X051053* X050923Y022114* Y022164* X050713Y022374* Y022494* G37* G36* G01X049713D02* X049813Y022594D01* X049933* X050153Y022374* X050203* X050313Y022264* Y022214* X050533Y021994* Y021874* X050433Y021774* X050313* X050103Y021984* X050053* X049923Y022114* Y022164* X049713Y022374* Y022494* G37* G36* G01X050710Y023490D02* X050810Y023590D01* X050930* X051150Y023370* X051200* X051310Y023260* Y023210* X051530Y022990* Y022870* X051430Y022770* X051310* X051100Y022980* X051050* X050920Y023110* Y023160* X050710Y023370* Y023490* G37* G36* G01X049710D02* X049810Y023590D01* X049930* X050150Y023370* X050200* X050310Y023260* Y023210* X050530Y022990* Y022870* X050430Y022770* X050310* X050100Y022980* X050050* X049920Y023110* Y023160* X049710Y023370* Y023490* G37* G36* G01X052712Y022755D02* X052571D01* X052543Y022783* X052302* X052217Y022868* Y022997* X052307Y023087* X052550* X052571Y023108* X052726* X052811Y023024* Y022854* X052712Y022755* G37* G36* G01X052368Y023775D02* G02I000000J000160D01* G37* G36* G01X049980Y020070D02* X049880Y020170D01* Y020210* X049710Y020380* Y020500* X049800Y020590* X049930* X050100Y020420* X050130* X050240Y020310* Y020190* X050120Y020070* X049980* G37* G36* G01Y019070D02* X049880Y019170D01* Y019210* X049710Y019380* Y019500* X049800Y019590* X049930* X050100Y019420* X050130* X050240Y019310* Y019190* X050120Y019070* X049980* G37* G36* G01X049868Y017275D02* G02I000000J000160D01* G37* %LPD*% %LNl1_off_d2*% G75* G36* G01X072847Y019661D02* X072417D01* Y017654* X072847* Y019661* G37* G36* G01Y028441D02* X072732D01* Y030528* X072847* Y028441* G37* G36* G01X064780Y028047D02* Y031952D01* X072654* Y029504* X066906* Y028244* X065961* Y028047* X064780* G37* G36* G01X072705Y011260D02* G03X072740Y011225I000017J-000018D01* G01X072847Y011332* Y011402* X072705Y011260* G37* G36* G01X072847Y013312D02* X072652Y013118D01* G03X072688Y013082I000018J-000018* G01X072847Y013242* Y013312* G37* G36* G01X072742Y012443D02* G03X072778Y012408I000018J-000018D01* G01X072847Y012477* Y012548* X072742Y012443* G37* G36* G01X072260Y012688D02* G02Y012738I000000J000025D01* G01Y012688* G37* G36* G01X072830Y014820D02* G02X072847Y014819I000000J-000100D01* G01Y014621* G02X072830Y014620I-000017J000099* G01Y014820* G37* G36* G01X071800Y014620D02* G02Y014820I000000J000100D01* G01Y014620* G37* G36* G01X072847Y014819D02* G03X072792Y014758I-000017J-000099D01* G01X072847Y014812* Y014819* G37* G36* G01X072644Y014075D02* G02Y014125I000000J000025D01* G01Y014075* G37* G36* G01X070700Y010205D02* G03X070650I-000025J000000D01* G01X070700* G37* G36* G01X070444D02* G03X070394I-000025J000000D01* G01X070444* G37* G36* G01X072492D02* G03X072442I-000025J000000D01* G01X072492* G37* G36* G01X072847Y029728D02* X072840Y029700D01* X072847* Y029728* G37* G36* G01X072840Y029350D02* X072847Y029322D01* Y029350* X072840* G37* G36* G01X072847Y030078D02* X072840Y030050D01* X072847* Y030078* G37* G36* G01X072840Y029700D02* X072847Y029672D01* Y029700* X072840* G37* G36* G01X072847Y030428D02* X072840Y030400D01* X072847* Y030428* G37* G36* G01X072840Y030050D02* X072847Y030022D01* Y030050* X072840* G37* G36* G01X071247Y010205D02* G03X071127I-000060J000000D01* G01X071247* G37* G36* G01X072847Y019740D02* X072339D01* Y017811* X070291* Y018559* X069150* Y023047* X072847* Y019740* G37* G36* G01X066039Y020291D02* Y023047D01* X069071* Y020291* X066039* G37* G36* G01X069071Y025409D02* X066039D01* Y028165* X069071* Y025409* G37* G36* G01X054845Y031660D02* G03X054895I000025J000000D01* G01X054845* G37* G36* G01X057805Y031920D02* G03X057855I000025J000000D01* G01X057805* G37* G36* G01X057552Y031678D02* G03X057588Y031642I000018J-000018D01* G01X057848Y031902* G03X057812Y031938I-000018J000018* G01X057552Y031678* G37* G36* G01X057905Y031870D02* G03X057955I000025J000000D01* G01X057905* G37* G36* G01X056853Y031952D02* X056887D01* X056853* G37* G36* G01X053677Y028783D02* G03X053683Y028777I000003J-000003D01* G01X056858Y031952* X056846* X053677Y028783* G37* G36* G01X057652Y031478D02* G03X057688Y031442I000018J-000018D01* G01X058197Y031952* X058127* X057652Y031478* G37* G36* G01X057738Y031942D02* X057744Y031952D01* X057677* X057502Y031778* G03X057538Y031742I000018J-000018* G01X057738Y031942* G37* G36* G01X057696Y031952D02* X057744D01* X057696* G37* G36* G01X053245Y031330D02* G03X053295I000025J000000D01* G01X053245* G37* G36* G01X054945Y031580D02* G03X054995I000025J000000D01* G01X054945* G37* G36* G01X050985Y031770D02* G03X051035I000025J000000D01* G01X050985* G37* G36* G01X048070Y010140D02* X040270Y017940D01* X048070Y010140* G37* G36* G01X058865Y013531D02* G03X058871Y013525I000003J-000003D01* G01X055483Y010137* G03X055477Y010143I-000003J000003* G01X058865Y013531* G37* G36* G01X051125Y031700D02* G03X051175I000025J000000D01* G01X051125* G37* G36* G01X051325Y031530D02* G03X051375I000025J000000D01* G01X051325* G37* G36* G01X051225Y031640D02* G03X051275I000025J000000D01* G01X051225* G37* G36* G01X051425Y031370D02* G03X051475I000025J000000D01* G01X051425* G37* G36* G01X051635Y031160D02* G03X051685I000025J000000D01* G01X051635* G37* G36* G01X051535Y031260D02* G03X051585I000025J000000D01* G01X051535* G37* G36* G01X052815Y031620D02* G03X052865I000025J000000D01* G01X052815* G37* G36* G01X052944Y031589D02* G03X052994I000025J000000D01* G01X052944* G37* G36* G01X053345Y031280D02* G03X053395I000025J000000D01* G01X053345* G37* G36* G01X053045Y031520D02* G03X053095I000025J000000D01* G01X053045* G37* G36* G01X053145Y031430D02* G03X053195I000025J000000D01* G01X053145* G37* G36* G01X056225Y031950D02* G03X056275I000025J000000D01* G01X056225* G37* G36* G01X053560Y029260D02* X056250Y031950D01* X056275Y031952* X056225* G03X056250Y031950I000025J-000002* G01X053560Y029260* G37* G36* G01X055395Y031430D02* G03X055445I000025J000000D01* G01X055395* G37* G36* G01X053618Y029022D02* G03X053622Y029018I000002J-000002D01* G01X056556Y031952* X056548* X053618Y029022* G37* G36* G01X053510Y029360D02* X056102Y031952D01* X053510Y029360* G37* G36* G01X055075Y031560D02* G03X055125I000025J000000D01* G01X055075* G37* G36* G01X056325Y031900D02* G03X056375I000025J000000D01* G01X056325* G37* G36* G01X053658Y028912D02* G03X053662Y028908I000002J-000002D01* G01X056707Y031952* X056697* X053658Y028912* G37* G36* G01X055295Y031480D02* G03X055345I000025J000000D01* G01X055295* G37* G36* G01X055195Y031530D02* G03X055245I000025J000000D01* G01X055195* G37* G36* G01X058425Y031940D02* G03X058475I000025J000000D01* G01X058425* G37* G36* G01X057787Y031243D02* G03X057753Y031277I-000017J000017D01* G01X058428Y031952* G03X058467Y031923I000022J-000012* G01X057787Y031243* G37* G36* G01X059062Y031778D02* G03X059098Y031742I000018J-000018D01* G01X059307Y031952* X059237* X059062Y031778* G37* G36* G01X058535Y031900D02* G03X058585I000025J000000D01* G01X058535* G37* G36* G01X059375Y031930D02* G03X059425I000025J000000D01* G01X059375* G37* G36* G01X059112Y031678D02* G03X059148Y031642I000018J-000018D01* G01X059418Y031912* G03X059412Y031952I-000018J000018* G01X059388* G03X059382Y031948I000012J-000022* G01X059112Y031678* G37* G36* G01X057702Y031378D02* G03X057738Y031342I000018J-000018D01* G01X058347Y031952* X058277* X057702Y031378* G37* G36* G01X059475Y031880D02* G03X059525I000025J000000D01* G01X059475* G37* G36* G01X059338Y031252D02* G03X059322Y031268I-000008J000008D01* G01X060006Y031952* X060038* X059338Y031252* G37* G36* G01X059290Y031350D02* G03X059270Y031370I-000010J000010D01* G01X059853Y031952* X059891* X059290Y031350* G37* G36* G01X059377Y031163D02* G03X059383Y031157I000003J-000003D01* G01X060178Y031952* X060166* X059377Y031163* G37* G36* G01X059427Y031063D02* G03X059433Y031057I000003J-000003D01* G01X060328Y031952* X060316* X059427Y031063* G37* G36* G01X059527Y030863D02* G03X059533Y030857I000003J-000003D01* G01X060628Y031952* X060616* X059527Y030863* G37* G36* G01X059627Y030663D02* G03X059633Y030657I000003J-000003D01* G01X060928Y031952* X060916* X059627Y030663* G37* G36* G01X059577Y030763D02* G03X059583Y030757I000003J-000003D01* G01X060778Y031952* X060766* X059577Y030763* G37* G36* G01X057368Y028248D02* X061071Y031952D01* X061073* X057368Y028248* G37* G36* G01X057641Y028369D02* G03X057639Y028371I-000001J000001D01* G01X061219Y031952* X061225* X057641Y028369* G37* G36* G01X062137Y031952D02* X062120Y031945D01* Y031952* X062137* G37* G36* G01X061390Y031945D02* X061373Y031952D01* X061390* Y031945* G37* G36* G01X058023Y028597D02* G03X058017Y028603I-000003J000003D01* G01X061365Y031952* X061373* X061407* X061379* X058023Y028597* G37* G36* G01X062182Y031858D02* G03X062158Y031882I-000012J000012D01* G01X062228Y031952* X062276* X062182Y031858* G37* G36* G01X059241Y031449D02* G03X059219Y031471I-000011J000011D01* G01X059699Y031952* X059745* X059241Y031449* G37* G36* G01X059477Y030963D02* G03X059483Y030957I000003J-000003D01* G01X060478Y031952* X060466* X059477Y030963* G37* G36* G01X062533Y031167D02* G03X062527Y031173I-000003J000003D01* G01X063306Y031952* X063318* X062533Y031167* G37* G36* G01X062425Y031365D02* G03X062415Y031375I-000005J000005D01* G01X062992Y031952* X063012* X062425Y031365* G37* G36* G01X062376Y031464D02* G03X062364Y031476I-000006J000006D01* G01X062840Y031952* X062864* X062376Y031464* G37* G36* G01X062474Y031266D02* G03X062466Y031274I-000004J000004D01* G01X063144Y031952* X063160* X062474Y031266* G37* G36* G01X062327Y031563D02* G03X062313Y031577I-000007J000007D01* G01X062687Y031952* X062717* X062327Y031563* G37* G36* G01X062279Y031661D02* G03X062261Y031679I-000009J000009D01* G01X062535Y031952* X062570* X062279Y031661* G37* G36* G01X062230Y031760D02* G03X062210Y031780I-000010J000010D01* G01X062381Y031952* X062423* X062230Y031760* G37* G36* G01X058844Y031952D02* X058904D01* X058844* G37* G36* G01X057269D02* X057329D01* X057269* G37* G36* G01X055694D02* X055755D01* X055694* G37* G36* G01X054483Y031670D02* G03X054603I000060J000000D01* G01X054483* G37* G36* G01X052515D02* G03X052635I000060J000000D01* G01X052515* G37* G36* G01X049986Y031952D02* X050046D01* X049986* G37* G36* G01X050576D02* X050637D01* X050576* G37* G36* G01X049365Y031740D02* G03X049485I000060J000000D01* G01X049365* G37* G36* G01X038209Y016551D02* X039530Y015230D01* X038209Y016551* G37* G36* G01Y016576D02* G02Y016526I000000J-000025D01* G01Y016576* G37* G36* G01X038304Y016792D02* G03X038219Y016708I-000043J-000042D01* G01X038418Y016509* G03X038502Y016594I000042J000042* G01X038304Y016792* G37* G36* G01X038261Y016810D02* G02Y016690I000000J-000060D01* G01Y016810* G37* G36* G01X038697Y015036D02* G02Y014916I000000J-000060D01* G01Y015036* G37* G36* G01X038343Y031670D02* G02Y031550I000000J-000060D01* G01Y031670* G37* G36* G01X038340Y016015D02* G02Y015965I000000J-000025D01* G01Y016015* G37* G36* G01X038370Y015585D02* G02Y015535I000000J-000025D01* G01Y015585* G37* G36* G01X038343Y031242D02* G02Y031192I000000J-000025D01* G01Y031242* G37* G36* G01X065476Y010112D02* X065379Y010133D01* X065281Y010118* X065264Y010112* X065476* G37* G36* G01X072847Y018325D02* X072800Y018240D01* X072832Y018148* X072847Y018135* Y018325* G37* G36* G01Y011536D02* X072821Y011442D01* X072847Y011384* Y011536* G37* G36* G01X038193Y016240D02* Y016320D01* Y016240* G37* G36* G01Y015720D02* Y015800D01* Y015720* G37* G36* G01Y015275D02* X038219Y015368D01* X038193Y015425* Y015275* G37* G36* G01X038283Y020213D02* G02Y020133I000000J-000040D01* G01Y020213* G37* D18* G01X070900Y028550D03* X069350D03* X070900Y026500D03* Y028109D03* X069350Y026900D03* Y026500D03* X070900Y026900D03* X070500Y026500D03* X070900Y027309D03* X070500Y028550D03* Y027709D03* Y028109D03* X069350Y027700D03* Y028100D03* Y027300D03* X070500Y027309D03* X070900Y027709D03* X070500Y026900D03* X071400Y027380D03* X067180Y028990D03* X070900Y020400D03* Y021200D03* Y020000D03* Y022400D03* Y021600D03* X069350Y022800D03* Y022400D03* X070900Y022800D03* Y020800D03* X070500Y022800D03* X070900Y022000D03* X070500Y022400D03* Y022000D03* Y021200D03* Y021600D03* X069350Y022000D03* Y021600D03* Y020800D03* Y021200D03* Y020000D03* Y020400D03* X070500Y020000D03* Y020400D03* Y020800D03* X070900Y024500D03* Y025300D03* X070500Y024500D03* X069350Y025700D03* Y026100D03* X070500D03* Y025300D03* Y025700D03* X070900Y024900D03* X069350Y025300D03* X070900Y026100D03* X069350Y024900D03* Y024500D03* X070900Y025700D03* X070500Y024900D03* X064677Y022248D03* Y023453D03* Y021878D03* Y023823D03* Y020303D03* Y020673D03* X068070Y023820D03* X067340Y024090D03* X064677Y019886D03* Y022666D03* Y023035D03* Y024610D03* Y024240D03* Y021091D03* Y021460D03* X069350Y018800D03* X070500D03* X070900Y019200D03* Y018800D03* X070500Y019200D03* Y019600D03* X070900D03* X069350D03* Y019200D03* X064677Y018729D03* Y019098D03* Y017154D03* Y017523D03* X071320Y016810D03* X071760Y017630D03* X069310Y018300D03* X067320Y018660D03* X070610Y014370D03* X071130Y015030D03* Y015710D03* X069500Y014700D03* X068490Y014600D03* Y014890D03* X067340Y018970D03* X070800Y015710D03* X069530D03* X068640Y018300D03* X072610Y015600D03* Y015140D03* X064677Y017941D03* Y018311D03* Y016736D03* Y016366D03* Y019516D03* X069500Y014030D03* X072670Y013100D03* X071810Y013170D03* X071330Y014030D03* X068490Y014310D03* Y014020D03* X068800D03* X072350Y013100D03* X069840Y014030D03* X072035Y011169D03* X072530Y012420D03* X070910Y012350D03* X070810Y013180D03* X071247Y011169D03* X064400Y013380D03* Y013000D03* X062914Y019516D03* Y016736D03* Y021460D03* Y021091D03* Y018311D03* Y016366D03* Y022666D03* Y019886D03* Y023035D03* Y017941D03* X062643Y014937D03* X062914Y018729D03* Y019098D03* Y023453D03* Y023823D03* Y022248D03* Y021878D03* X062840Y013030D03* X062914Y017154D03* Y017523D03* Y020673D03* Y020303D03* X062790Y013990D03* X062690Y025435D03* X062910Y027430D03* X062122Y017182D03* X062116Y023690D03* X062120Y016680D03* Y017680D03* X062116Y020690D03* Y019690D03* Y021690D03* Y018690D03* Y022690D03* X061895Y012980D03* X062557Y024621D03* X062182Y022124D03* X062116Y018180D03* X061620Y024680D03* X062116Y023180D03* Y021180D03* X061870Y027200D03* X062116Y020180D03* X061620Y025680D03* X062564Y014242D03* X061616Y022680D03* X062116Y019180D03* X062113Y024687D03* X061616Y026690D03* Y026190D03* X061113Y023183D03* X061120Y017680D03* X061116Y022690D03* Y020690D03* Y019690D03* Y018690D03* Y021690D03* X061107Y012980D03* X061116Y020180D03* Y021180D03* Y018180D03* Y014680D03* Y019180D03* Y022180D03* X061123Y016180D03* X061120Y016680D03* X061123Y024683D03* X061116Y026190D03* X060620Y023180D03* X060616Y023680D03* Y017680D03* X060320Y012980D03* X060620Y026180D03* Y024680D03* Y016680D03* Y015680D03* X060616Y016190D03* X060613Y024183D03* Y025187D03* X060116Y021690D03* X060130Y017670D03* X060120Y018680D03* X060116Y019690D03* X060123Y018187D03* X060116Y020690D03* Y022690D03* X059603Y018437D03* X060116Y021180D03* Y020180D03* X059616Y014680D03* X060116Y017180D03* Y023180D03* X059690Y013030D03* X059620Y026680D03* X060116Y022180D03* Y019180D03* X059620Y025180D03* X060116Y015680D03* X060120Y016180D03* X060160Y027260D03* X060100Y016710D03* X059613Y016683D03* X059630Y015680D03* X059623Y015187D03* X059613Y024183D03* X060113Y024687D03* X058813Y022269D03* Y020340D03* Y018411D03* Y023450D03* Y019592D03* X059116Y016680D03* X058813Y021521D03* X058866Y024170D03* X059113Y017183D03* X059150Y016150D03* X059123Y015687D03* X059370Y014160D03* X057983Y021767D03* Y019838D03* Y017909D03* X058370Y027200D03* X057983Y022948D03* Y019090D03* X058620Y025680D03* X058370Y014160D03* X057983Y021019D03* X058616Y015680D03* X058123Y016687D03* X056842Y017909D03* Y021767D03* X057672Y022269D03* Y020340D03* X056842Y019838D03* X057672Y018411D03* X057620Y026180D03* X056770Y013160D03* X056842Y021019D03* X057672Y021521D03* X057616Y015180D03* X057620Y024680D03* X057672Y019592D03* X056842Y019090D03* X056870Y027200D03* X056842Y022948D03* X057672Y023450D03* X057616Y016680D03* X055700Y019830D03* X056530Y020340D03* X055700Y017909D03* X056530Y018411D03* Y022269D03* X055700Y021767D03* Y022948D03* X056530Y023450D03* X056616Y014680D03* X055620Y015180D03* X056620Y025180D03* X056530Y021521D03* X055700Y021019D03* X056120Y026180D03* X055700Y019090D03* X056530Y019592D03* X056616Y016180D03* X055866Y024170D03* X055620Y016680D03* X056370Y014030D03* X055388Y020340D03* Y018411D03* Y022269D03* X055116Y025180D03* X054801Y028210D03* X055388Y021521D03* Y023450D03* Y019592D03* X055116Y026680D03* X054870Y014160D03* X054247Y020340D03* Y022269D03* X054558Y019838D03* X054247Y018411D03* X054558Y017909D03* Y021767D03* X054116Y026180D03* X054558Y021019D03* X054247Y019592D03* X054116Y024680D03* X054558Y022948D03* Y019090D03* X054370Y017200D03* X054247Y023450D03* X054620Y015680D03* X054543Y031670D03* X054247Y021521D03* X054630Y026170D03* X053417Y019838D03* Y021767D03* Y017909D03* X053116Y025680D03* X053417Y019090D03* X053620Y014680D03* X053417Y022948D03* Y021019D03* X052870Y017200D03* X053450Y027240D03* X053620Y016180D03* X053760Y017650D03* X052116Y022690D03* Y023690D03* Y021690D03* Y020690D03* Y019690D03* Y018690D03* X052633Y022933D03* X052116Y022180D03* Y019180D03* X052570Y031670D03* X052120Y016180D03* X052116Y026190D03* X052616Y024680D03* X052620Y015180D03* X051950Y027240D03* X052116Y021180D03* X052120Y017680D03* X052116Y020180D03* X052603Y017673D03* X052123Y017183D03* X051116Y022690D03* Y019690D03* Y021690D03* X051613Y017683D03* X051116Y018690D03* Y020690D03* Y023690D03* X051616Y025680D03* X051116Y024680D03* X051120Y017680D03* Y016680D03* X051116Y022180D03* Y020180D03* Y021180D03* Y023180D03* X051616Y023680D03* X051870Y014100D03* X051120Y015180D03* X051616Y018680D03* X051310Y014100D03* X051620Y016180D03* X051133Y015697D03* Y016197D03* X050613Y017683D03* X050880Y013190D03* X050616Y026680D03* Y018680D03* Y019680D03* X050630Y017170D03* X050640Y016670D03* X050750Y014120D03* X050620Y014720D03* X050110Y023690D03* X050116Y017690D03* Y019690D03* Y020690D03* Y018690D03* Y022690D03* Y021690D03* Y022180D03* Y025680D03* Y018180D03* Y023180D03* X050054Y019246D03* X049786Y027240D03* X050054Y020246D03* X050116Y021180D03* X050120Y015680D03* X050116Y024180D03* X050070Y014730D03* X050130Y016670D03* X049323Y016957D03* Y025201D03* Y018532D03* Y021681D03* Y022051D03* Y020107D03* Y023626D03* Y018901D03* Y023256D03* Y017327D03* Y020476D03* Y024831D03* Y018114D03* Y017744D03* Y022838D03* Y022469D03* Y019319D03* Y019689D03* Y024044D03* Y024413D03* Y016539D03* Y016170D03* Y020894D03* Y021264D03* X049430Y031740D03* X048070Y015950D03* X047559Y017327D03* Y019689D03* Y021264D03* Y022469D03* Y017744D03* Y018114D03* Y024044D03* Y024413D03* Y020894D03* Y022838D03* Y019319D03* Y016957D03* Y022051D03* Y021681D03* Y020476D03* Y020107D03* Y024831D03* Y025201D03* Y023626D03* Y023256D03* X047550Y015270D03* X047559Y018901D03* Y018532D03* X047520Y015860D03* X047030Y023440D03* X046940Y018520D03* X047030Y023030D03* X046370Y016945D03* X046110Y024750D03* X046340Y016140D03* X046110Y026720D03* X044470Y023760D03* X043800Y018820D03* X044470Y023130D03* X044680Y019680D03* X045110Y019190D03* X044120Y020190D03* X044700Y018740D03* X044110Y024840D03* X043520D03* X042800Y014820D03* X041190Y024690D03* Y021050D03* X041230Y019920D03* X041200Y020500D03* Y023740D03* X039830Y030690D03* X039890Y027110D03* X039870Y027430D03* X039850Y030330D03* X039910Y015120D03* X039940Y014730D03* X039380Y028060D03* X039770Y028050D03* X038820Y015350D03* X039010Y026490D03* X038840Y016220D03* X039070Y028850D03* X038850Y020250D03* X038370Y017140D03* X039010Y028060D03* X039040Y029640D03* X039130Y016210D03* X039120Y015350D03* X039140Y020250D03* X038340Y015990D03* X038370Y015560D03* X039040Y030430D03* D16* X060570Y027130D03* X060550Y025610D03* X059660Y025730D03* X060020Y025100D03* X060070Y025730D03* X059210Y024610D03* X058660Y025140D03* X059040Y025630D03* X058070Y016140D03* X058040Y024620D03* X058210Y024790D03* X058540Y024590D03* X057370Y014090D03* X057570Y015730D03* X056670Y017150D03* X057590Y016210D03* X057020Y016270D03* X056730Y024570D03* X057610Y025170D03* X057160Y025680D03* X057640Y025660D03* X056730Y024790D03* X056000Y013340D03* X056013Y015790D03* X055670Y016260D03* X056580Y015610D03* X056190Y016090D03* X056170Y016740D03* X055560Y025610D03* X055680Y025130D03* X056210Y024610D03* X055540Y026110D03* X055790Y025610D03* X055580Y026710D03* X056560Y025620D03* X055170Y015740D03* X055120Y016670D03* X055070Y016240D03* X055170Y024210D03* X055070Y024750D03* X054070Y016740D03* X054180Y015740D03* X054630Y016710D03* X054660Y014730D03* X054120Y025170D03* X054630Y024700D03* X054110Y025670D03* X054570Y025110D03* X054180Y016240D03* X054550Y015170D03* X053540Y016770D03* X053190Y016620D03* X053060Y015750D03* X053050Y016240D03* X053160Y015210D03* X052910Y024140D03* X053210Y024150D03* X053760Y024210D03* X053070Y025220D03* X053060Y026250D03* X053570Y025740D03* X053610Y015760D03* X053560Y015250D03* X052550Y025240D03* X052110Y025550D03* X052190Y024630D03* X051190Y025660D03* X051610Y024700D03* X051690Y025110D03* X050620Y015680D03* X050650Y016190D03* X051060Y028150D03* X050880Y027200D03* X050680Y024620D03* X050560Y025110D03* X050210Y024630D03* X050163Y025140D03* X049610Y025440D03* X049700Y026610D03* X045590Y023980D03* X044990D03* X039320Y010660D03* X038340Y010990D03* Y014080D03* X039010Y010490D03* Y014120D03* X038690Y011170D03* X038680Y014100D03* D20* X044307Y010843D03* D19* X065370Y024228D03* Y020094D03* Y013992D03* Y026394D03* X064386Y031512D03* X069937Y012890D03* Y017024D03* D17* X062368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X061868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X061368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X060868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X060368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X059868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X059368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X058868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X058368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X057868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X057368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X056868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X056368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X055868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X055368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X054868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X054368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X053868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X053368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X052868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X052368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X051868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X051368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X050868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X050368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X049868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X038283Y019583D02* D12* Y020173D01* D34* X072553Y012713D03* D50* X072315Y014720D03* D33* X072746Y014100D03* D40* X070675Y010158D03* X070419D03* X072467D03* D62* X072843Y029525D03* Y029875D03* Y030225D03* D41* X071187Y010158D03* D55* X054870Y031806D03* D28* X057830Y031936D03* D39* X057930Y031911D03* D77* X053270Y031641D03* D65* X054970Y031766D03* D49* X051010Y031861D03* D53* X051150Y031826D03* D72* X051350Y031741D03* D57* X051250Y031796D03* D76* X051450Y031661D03* D82* X051660Y031556D03* D81* X051560Y031606D03* D61* X052840Y031786D03* D64* X052969Y031770D03* D80* X053370Y031616D03* D73* X053070Y031736D03* D75* X053170Y031691D03* D24* X056250Y031951D03* D75* X055420Y031691D03* D66* X055100Y031756D03* D35* X056350Y031926D03* D74* X055320Y031716D03* D72* X055220Y031741D03* D26* X058450Y031946D03* D35* X058560Y031926D03* D27* X059400Y031941D03* D37* X059500Y031916D03* D25* X061755Y031949D03* D54* X054543Y031811D03* X052575D03* D51* X049425Y031846D03* D29* X038201Y016551D03* D44* X038227Y016750D03* D46* X038445Y014976D03* D45* X038268Y031610D03* D30* X038267Y015990D03* D32* X038282Y015560D03* D31* X038268Y031217D03* D58* X072818Y014386D03* Y013598D03* D83* X072820Y018323D03* D43* X050606Y031898D03* X049425D03* X050016D03* X057299D03* X058874D03* X054543D03* X052575D03* X055724D03* D42* X045961Y010163D03* D36* X038498Y031918D03* D38* X038238Y020173D03* X048953Y010488D02* D13* X049740D01* X048953Y011276D02* Y010488D01* X063283Y027969D02* X062496D01* X063283Y027181D02* Y027969D01* D22* X071630Y018323D03* D21* X065370Y022260D03* Y018126D03* Y015961D03* Y011827D03* Y028362D03* X066354Y031512D03* X067969Y012890D03* Y017024D03* X068970Y013850D02* D10* X068800Y014020D01* X068970Y011620D02* Y013850D01* X067910Y010560D02* X068970Y011620D01* X063360Y010560D02* X067910D01* X061550Y012370D02* X063360Y010560D01* X061550Y016117D02* Y012370D01* X061868Y016435D02* X061550Y016117D01* X068870Y013640D02* X068490Y014020D01* X068870Y011680D02* Y013640D01* X067850Y010660D02* X068870Y011680D01* X063410Y010660D02* X067850D01* X061680Y012390D02* X063410Y010660D01* X061680Y015747D02* Y012390D01* X061868Y015935D02* X061680Y015747D01* X068080Y014480D02* X068490Y014890D01* X068080Y013820D02* Y014480D01* X068550Y013350D02* X068080Y013820D01* X068550Y011900D02* Y013350D01* X067610Y010960D02* X068550Y011900D01* X063590Y010960D02* X067610D01* X062290Y012260D02* X063590Y010960D01* X062290Y014080D02* Y012260D01* X062170Y014200D02* X062290Y014080D01* X062170Y015133D02* Y014200D01* X061868Y015435D02* X062170Y015133D01* X068180Y014290D02* X068490Y014600D01* X068180Y013880D02* Y014290D01* X068660Y013400D02* X068180Y013880D01* X068660Y011840D02* Y013400D01* X067680Y010860D02* X068660Y011840D01* X063530Y010860D02* X067680D01* X062190Y012200D02* X063530Y010860D01* X062190Y014000D02* Y012200D01* X062050Y014140D02* X062190Y014000D01* X062050Y014753D02* Y014140D01* X061868Y014935D02* X062050Y014753D01* X068290Y014110D02* X068490Y014310D01* X068290Y013920D02* Y014110D01* X068770Y013440D02* X068290Y013920D01* X068770Y011780D02* Y013440D01* X067750Y010760D02* X068770Y011780D01* X063470Y010760D02* X067750D01* X062090Y012140D02* X063470Y010760D01* X062090Y013910D02* Y012140D01* X061868Y014132D02* X062090Y013910D01* X061868Y014435D02* Y014132D01* X072722Y010205D02* Y011242D01* X071380Y011380D02* X070090D01* X071650Y011110D02* X071380Y011380D01* X071650Y010865D02* Y011110D01* X071955Y010560D02* X071650Y010865D01* X071955Y010205D02* Y010560D01* X070770Y010760D02* X070130D01* X070931Y010599D02* X070770Y010760D01* X070931Y010205D02* Y010599D01* X071380Y010900D02* X070120D01* X071699Y010581D02* X071380Y010900D01* X071699Y010205D02* Y010581D01* X071450Y011530D02* X070100D01* X071800Y011180D02* X071450Y011530D01* X071800Y010970D02* Y011180D01* X072211Y010559D02* X071800Y010970D01* X072211Y010205D02* Y010559D01* X067530Y018660D02* X067320D01* X067770Y018900D02* X067530Y018660D01* X067770Y020120D02* Y018900D01* X066748Y021142D02* X067770Y020120D01* X069209Y013739D02* X069500Y014030D01* X069209Y013598D02* Y013739D01* X068070Y024938D02* Y023820D01* X066748Y026260D02* X068070Y024938D01* X072760Y012032D02* Y012425D01* X072260Y011531D02* X072760Y012032D01* X071806Y013166D02* X071810Y013170D01* X072260Y012713D02* X071806Y013166D01* X070606Y014370D02* X070610D01* X070606Y014642D02* Y014370D01* X072644Y014100D02* X072358Y014386D01* X071768* X071412Y014030D02* X071330D01* X071768Y014386D02* X071412Y014030D01* X053190Y029980D02* X054870Y031660D01* X044420Y029980D02* X053190D01* X042190Y027750D02* X044420Y029980D01* X042190Y021530D02* Y027750D01* X045300Y018420D02* X042190Y021530D01* X045300Y015550D02* Y018420D01* X048430Y012420D02* X045300Y015550D01* X053450Y012420D02* X048430D01* X054620Y013590D02* X053450Y012420D01* X054620Y014530D02* Y013590D01* X054500Y014650D02* X054620Y014530D01* X054083Y014650D02* X054500D01* X053868Y014435D02* X054083Y014650D01* X056880Y031660D02* X057570D01* X053770Y028550D02* X056880Y031660D01* X053130Y028550D02* X053770D01* X052980Y028400D02* X053130Y028550D01* X051530Y028400D02* X052980D01* X050190Y027060D02* X051530Y028400D01* X050190Y026613D02* Y027060D01* X050368Y026435D02* X050190Y026613D01* X057620Y031560D02* X057930Y031870D01* X056930Y031560D02* X057620D01* X053820Y028450D02* X056930Y031560D01* X053180Y028450D02* X053820D01* X053030Y028300D02* X053180Y028450D01* X051870Y028300D02* X053030D01* X051080Y027510D02* X051870Y028300D01* X051080Y026147D02* Y027510D01* X050868Y025935D02* X051080Y026147D01* X051450Y028780D02* X053680D01* X050070Y027400D02* X051450Y028780D01* X050070Y026233D02* Y027400D01* X050368Y025935D02* X050070Y026233D01* X056980Y031460D02* X057670D01* X053870Y028350D02* X056980Y031460D01* X053260Y028350D02* X053870D01* X053110Y028200D02* X053260Y028350D01* X052030Y028200D02* X053110D01* X051190Y027360D02* X052030Y028200D01* X051190Y026613D02* Y027360D01* X051368Y026435D02* X051190Y026613D01* Y025613D02* Y025660D01* X051368Y025435D02* X051190Y025613D01* X051570Y028660D02* X051060Y028150D01* X053720Y028660D02* X051570D01* X056820Y031760D02* X053720Y028660D01* X057520Y031760D02* X056820D01* X052120Y030180D02* X053270Y031330D01* X044320Y030180D02* X052120D01* X041980Y027840D02* X044320Y030180D01* X041980Y018530D02* Y027840D01* X048290Y012220D02* X041980Y018530D01* X053890Y012220D02* X048290D01* X055570Y013900D02* X053890Y012220D01* X055570Y014540D02* Y013900D01* X055470Y014640D02* X055570Y014540D01* X055180Y014640D02* X055470D01* X055050Y014770D02* X055180Y014640D01* X055050Y015253D02* Y014770D01* X054868Y015435D02* X055050Y015253D01* X053270Y029880D02* X054970Y031580D01* X044470Y029880D02* X053270D01* X042300Y027710D02* X044470Y029880D01* X042300Y021570D02* Y027710D01* X045400Y018470D02* X042300Y021570D01* X045400Y015600D02* Y018470D01* X048480Y012520D02* X045400Y015600D01* X053268Y012520D02* X048480D01* X054368Y013620D02* X053268Y012520D01* X054368Y014435D02* Y013620D01* X050540Y031300D02* X051010Y031770D01* X043540Y031300D02* X050540D01* X040270Y028030D02* X043540Y031300D01* X040270Y017940D02* Y028030D01* X055480Y010140D02* X048070D01* X058868Y014435D02* Y013528D01* X050650Y031200D02* X051150Y031700D01* X043610Y031200D02* X050650D01* X040370Y027960D02* X043610Y031200D01* X040370Y018010D02* Y027960D01* X048140Y010240D02* X040370Y018010D01* X055420Y010240D02* X048140D01* X058630Y013450D02* X055420Y010240D01* X058630Y014673D02* Y013450D01* X058368Y014935D02* X058630Y014673D01* X050820Y031000D02* X051350Y031530D01* X043750Y031000D02* X050820D01* X040570Y027820D02* X043750Y031000D01* X040570Y018180D02* Y027820D01* X047340Y011410D02* X040570Y018180D01* X056220Y011410D02* X047340D01* X057640Y012830D02* X056220Y011410D01* X057640Y014560D02* Y012830D01* X057750Y014670D02* X057640Y014560D01* X057980Y014670D02* X057750D01* X058130Y014820D02* X057980Y014670D01* X058130Y015173D02* Y014820D01* X057868Y015435D02* X058130Y015173D01* X050710Y031100D02* X051250Y031640D01* X043660Y031100D02* X050710D01* X040470Y027910D02* X043660Y031100D01* X040470Y018070D02* Y027910D01* X048200Y010340D02* X040470Y018070D01* X055370Y010340D02* X048200D01* X057868Y012838D02* X055370Y010340D01* X057868Y014435D02* Y012838D01* X050980Y030900D02* X051450Y031370D01* X043820Y030900D02* X050980D01* X040690Y027770D02* X043820Y030900D01* X040690Y018290D02* Y027770D01* X047470Y011510D02* X040690Y018290D01* X056100Y011510D02* X047470D01* X057190Y012600D02* X056100Y011510D01* X057190Y014757D02* Y012600D01* X057368Y014935D02* X057190Y014757D01* X051200Y030700D02* X051660Y031160D01* X043990Y030700D02* X051200D01* X041450Y028160D02* X043990Y030700D01* X041450Y017990D02* Y028160D01* X047730Y011710D02* X041450Y017990D01* X054680Y011710D02* X047730D01* X056170Y013200D02* X054680Y011710D01* X056170Y014990D02* Y013200D01* X056390Y015210D02* X056170Y014990D01* X056643Y015210D02* X056390D01* X056868Y015435D02* X056643Y015210D01* X051100Y030800D02* X051560Y031260D01* X043930Y030800D02* X051100D01* X040810Y027680D02* X043930Y030800D01* X040810Y018390D02* Y027680D01* X047590Y011610D02* X040810Y018390D01* X055980Y011610D02* X047590D01* X057050Y012680D02* X055980Y011610D01* X057050Y014753D02* Y012680D01* X056868Y014935D02* X057050Y014753D01* X054470Y011810D02* X056000Y013340D01* X047870Y011810D02* X054470D01* X041550Y018130D02* X047870Y011810D01* X041550Y028100D02* Y018130D01* X044050Y030600D02* X041550Y028100D01* X051820Y030600D02* X044050D01* X052840Y031620D02* X051820Y030600D01* X051860Y030480D02* X052969Y031589D01* X044110Y030480D02* X051860D01* X041650Y028020D02* X044110Y030480D01* X041650Y018210D02* Y028020D01* X047950Y011910D02* X041650Y018210D01* X054310Y011910D02* X047950D01* X056070Y013670D02* X054310Y011910D01* X056070Y014733D02* Y013670D01* X055868Y014935D02* X056070Y014733D01* X052170Y030080D02* X053370Y031280D01* X044370Y030080D02* X052170D01* X042080Y027790D02* X044370Y030080D01* X042080Y018600D02* Y027790D01* X048360Y012320D02* X042080Y018600D01* X053710Y012320D02* X048360D01* X055368Y013978D02* X053710Y012320D01* X055368Y014435D02* Y013978D01* X051930Y030380D02* X053070Y031520D01* X044190Y030380D02* X051930D01* X041760Y027950D02* X044190Y030380D01* X041760Y018320D02* Y027950D01* X048070Y012010D02* X041760Y018320D01* X054110Y012010D02* X048070D01* X055868Y013768D02* X054110Y012010D01* X055868Y014435D02* Y013768D01* X052020Y030280D02* X053170Y031430D01* X044240Y030280D02* X052020D01* X041880Y027920D02* X044240Y030280D01* X041880Y018430D02* Y027920D01* X048200Y012110D02* X041880Y018430D01* X053970Y012110D02* X048200D01* X055690Y013830D02* X053970Y012110D01* X055690Y014640D02* Y013830D01* X055570Y014760D02* X055690Y014640D01* X055290Y014760D02* X055570D01* X055190Y014860D02* X055290Y014760D01* X055190Y015257D02* Y014860D01* X055368Y015435D02* X055190Y015257D01* X051370Y016433D02* X051133Y016197D01* X051368Y016435D02* X051370Y016433D01* Y015933D02* X051133Y015697D01* X051368Y015935D02* X051370Y015933D01* X044910Y029260D02* X053560D01* X042940Y027290D02* X044910Y029260D01* X042940Y022410D02* Y027290D01* X046010Y019340D02* X042940Y022410D01* X046010Y016000D02* Y019340D01* X048470Y013540D02* X046010Y016000D01* X051630Y013540D02* X048470D01* X052070Y013980D02* X051630Y013540D01* X052070Y015337D02* Y013980D01* X052173Y015440D02* X052070Y015337D01* X052173Y015740D02* Y015440D01* X052368Y015935D02* X052173Y015740D01* X053450Y029460D02* X055420Y031430D01* X044760Y029460D02* X053450D01* X042730Y027430D02* X044760Y029460D01* X042730Y022320D02* Y027430D01* X045810Y019240D02* X042730Y022320D01* X045810Y015880D02* Y019240D01* X048750Y012940D02* X045810Y015880D01* X051418Y012940D02* X048750D01* X052368Y013890D02* X051418Y012940D01* X052368Y014435D02* Y013890D01* X045030Y029020D02* X053620D01* X043140Y027130D02* X045030Y029020D01* X043140Y022520D02* Y027130D01* X046280Y019380D02* X043140Y022520D01* X046280Y017820D02* Y019380D01* X046910Y017190D02* X046280Y017820D01* X046910Y015400D02* Y017190D01* X048570Y013740D02* X046910Y015400D01* X051280Y013740D02* X048570D01* X051560Y014020D02* X051280Y013740D01* X051560Y014830D02* Y014020D01* X051630Y014900D02* X051560Y014830D01* X051630Y015197D02* Y014900D01* X051868Y015435D02* X051630Y015197D01* X044850Y029360D02* X053510D01* X042830Y027340D02* X044850Y029360D01* X042830Y022370D02* Y027340D01* X045910Y019290D02* X042830Y022370D01* X045910Y015950D02* Y019290D01* X048420Y013440D02* X045910Y015950D01* X051720Y013440D02* X048420D01* X052170Y013890D02* X051720Y013440D01* X052170Y015237D02* Y013890D01* X052368Y015435D02* X052170Y015237D01* X053300Y029760D02* X055100Y031560D01* X044520Y029760D02* X053300D01* X042410Y027650D02* X044520Y029760D01* X042410Y021610D02* Y027650D01* X045500Y018520D02* X042410Y021610D01* X045500Y015680D02* Y018520D01* X048560Y012620D02* X045500Y015680D01* X052420Y012620D02* X048560D01* X053150Y013350D02* X052420Y012620D01* X053150Y014717D02* Y013350D01* X053368Y014935D02* X053150Y014717D01* X053580Y029130D02* X056350Y031900D01* X044970Y029130D02* X053580D01* X043040Y027200D02* X044970Y029130D01* X043040Y022470D02* Y027200D01* X046130Y019380D02* X043040Y022470D01* X046130Y016030D02* Y019380D01* X048520Y013640D02* X046130Y016030D01* X051360Y013640D02* X048520D01* X051670Y013950D02* X051360Y013640D01* X051670Y014737D02* Y013950D01* X051868Y014935D02* X051670Y014737D01* X045090Y028910D02* X053660D01* X043240Y027060D02* X045090Y028910D01* X043240Y022570D02* Y027060D01* X046380Y019430D02* X043240Y022570D01* X046380Y017900D02* Y019430D01* X047010Y017270D02* X046380Y017900D01* X047010Y015470D02* Y017270D01* X048630Y013850D02* X047010Y015470D01* X050900Y013850D02* X048630D01* X051080Y014030D02* X050900Y013850D01* X051080Y014647D02* Y014030D01* X051368Y014935D02* X051080Y014647D01* X053400Y029560D02* X055320Y031480D01* X044650Y029560D02* X053400D01* X042610Y027520D02* X044650Y029560D01* X042610Y022290D02* Y027520D01* X045710Y019190D02* X042610Y022290D01* X045710Y015810D02* Y019190D01* X048680Y012840D02* X045710Y015810D01* X052120Y012840D02* X048680D01* X052640Y013360D02* X052120Y012840D01* X052640Y014707D02* Y013360D01* X052868Y014935D02* X052640Y014707D01* X053350Y029660D02* X055220Y031530D01* X044590Y029660D02* X053350D01* X042510Y027580D02* X044590Y029660D01* X042510Y022240D02* Y027580D01* X045610Y019140D02* X042510Y022240D01* X045610Y015740D02* Y019140D01* X048610Y012740D02* X045610Y015740D01* X052190Y012740D02* X048610D01* X052868Y013418D02* X052190Y012740D01* X052868Y014435D02* Y013418D01* X057867Y015937D02* X058070Y016140D01* X057868Y015935D02* X057867Y015937D01* X057080Y031260D02* X057770D01* X053820Y028000D02* X057080Y031260D01* X052210Y028000D02* X053820D01* X051550Y027340D02* X052210Y028000D01* X051550Y026253D02* Y027340D01* X051868Y025935D02* X051550Y026253D01* X058570Y031760D02* X059080D01* X057870Y031060D02* X058570Y031760D01* X057190Y031060D02* X057870D01* X055150Y029020D02* X057190Y031060D01* X055150Y028130D02* Y029020D01* X054820Y027800D02* X055150Y028130D01* X052760Y027800D02* X054820D01* X052160Y027200D02* X052760Y027800D01* X052160Y026800D02* Y027200D01* X052300Y026660D02* X052160Y026800D01* X052430Y026660D02* X052300D01* X052623Y026467D02* X052430Y026660D01* X052623Y026190D02* Y026467D01* X052368Y025935D02* X052623Y026190D01* X057820Y031160D02* X058560Y031900D01* X057140Y031160D02* X057820D01* X055050Y029070D02* X057140Y031160D01* X055050Y028180D02* Y029070D01* X054770Y027900D02* X055050Y028180D01* X052320Y027900D02* X054770D01* X051670Y027250D02* X052320Y027900D01* X051670Y026633D02* Y027250D01* X051868Y026435D02* X051670Y026633D01* X058620Y031660D02* X059130D01* X057920Y030960D02* X058620Y031660D01* X057240Y030960D02* X057920D01* X055250Y028970D02* X057240Y030960D01* X055250Y028060D02* Y028970D01* X054890Y027700D02* X055250Y028060D01* X052840Y027700D02* X054890D01* X052368Y027228D02* X052840Y027700D01* X052368Y026935D02* Y027228D01* X057030Y031360D02* X057720D01* X053920Y028250D02* X057030Y031360D01* X053330Y028250D02* X053920D01* X053180Y028100D02* X053330Y028250D01* X052120Y028100D02* X053180D01* X051368Y027348D02* X052120Y028100D01* X051368Y026935D02* Y027348D01* X059180Y031560D02* X059500Y031880D01* X058670Y031560D02* X059180D01* X057970Y030860D02* X058670Y031560D01* X057290Y030860D02* X057970D01* X055350Y028920D02* X057290Y030860D01* X055350Y028010D02* Y028920D01* X054940Y027600D02* X055350Y028010D01* X053220Y027600D02* X054940D01* X052868Y027248D02* X053220Y027600D01* X052868Y026935D02* Y027248D01* X058820Y031260D02* X059330D01* X058120Y030560D02* X058820Y031260D01* X057450Y030560D02* X058120D01* X055650Y028760D02* X057450Y030560D01* X055650Y027850D02* Y028760D01* X055050Y027250D02* X055650Y027850D01* X054270Y027250D02* X055050D01* X054130Y027110D02* X054270Y027250D01* X054130Y026850D02* Y027110D01* X053970Y026690D02* X054130Y026850D01* X053810Y026690D02* X053970D01* X053640Y026520D02* X053810Y026690D01* X053640Y026163D02* Y026520D01* X053868Y025935D02* X053640Y026163D01* X058770Y031360D02* X059280D01* X058070Y030660D02* X058770Y031360D01* X057400Y030660D02* X058070D01* X055550Y028810D02* X057400Y030660D01* X055550Y027910D02* Y028810D01* X055040Y027400D02* X055550Y027910D01* X053930Y027400D02* X055040D01* X053650Y027120D02* X053930Y027400D01* X053650Y026717D02* Y027120D01* X053368Y026435D02* X053650Y026717D01* X058880Y031160D02* X059380D01* X058180Y030460D02* X058880Y031160D01* X057500Y030460D02* X058180D01* X055750Y028710D02* X057500Y030460D01* X055750Y027800D02* Y028710D01* X055380Y027430D02* X055750Y027800D01* X055380Y026947D02* Y027430D01* X055368Y026935D02* X055380Y026947D01* X058930Y031060D02* X059430D01* X058230Y030360D02* X058930Y031060D01* X057550Y030360D02* X058230D01* X055868Y028678D02* X057550Y030360D01* X055868Y026935D02* Y028678D01* X059040Y030860D02* X059530D01* X058340Y030160D02* X059040Y030860D01* X057650Y030160D02* X058340D01* X056550Y029060D02* X057650Y030160D01* X056550Y026117D02* Y029060D01* X056368Y025935D02* X056550Y026117D01* X059140Y030660D02* X059630D01* X058440Y029960D02* X059140Y030660D01* X057750Y029960D02* X058440D01* X057130Y029340D02* X057750Y029960D01* X057130Y026697D02* Y029340D01* X056868Y026435D02* X057130Y026697D01* X059090Y030760D02* X059580D01* X058390Y030060D02* X059090Y030760D01* X057700Y030060D02* X058390D01* X056670Y029030D02* X057700Y030060D01* X056670Y026133D02* Y029030D01* X056868Y025935D02* X056670Y026133D01* X057368Y026935D02* Y028248D01* X057640Y026707D02* Y028370D01* X057368Y026435D02* X057640Y026707D01* X058020Y027087D02* Y028600D01* X057868Y026935D02* X058020Y027087D01* X061440Y031870D02* X062170D01* X058130Y028560D02* X061440Y031870D01* X058130Y026197D02* Y028560D01* X057868Y025935D02* X058130Y026197D01* X057862Y024442D02* X058040Y024620D01* X057868Y024435D02* X057862Y024442D01* X058720Y031460D02* X059230D01* X058020Y030760D02* X058720Y031460D01* X057340Y030760D02* X058020D01* X055450Y028870D02* X057340Y030760D01* X055450Y027960D02* Y028870D01* X054990Y027500D02* X055450Y027960D01* X053390Y027500D02* X054990D01* X053050Y027160D02* X053390Y027500D01* X053050Y026617D02* Y027160D01* X052868Y026435D02* X053050Y026617D01* X058980Y030960D02* X059480D01* X058280Y030260D02* X058980Y030960D01* X057600Y030260D02* X058280D01* X056400Y029060D02* X057600Y030260D01* X056400Y026967D02* Y029060D01* X056368Y026935D02* X056400Y026967D01* X057872Y016939D02* X058123Y016687D01* X057868Y016935D02* X057872Y016939D01* X060365Y024939D02* X060113Y024687D01* X060368Y024935D02* X060365Y024939D01* X061810Y031170D02* X062530D01* X059920Y029280D02* X061810Y031170D01* X059920Y027160D02* Y029280D01* X060050Y027030D02* X059920Y027160D01* X060050Y026617D02* Y027030D01* X059868Y026435D02* X060050Y026617D01* X061710Y031370D02* X062420D01* X059640Y029300D02* X061710Y031370D01* X059640Y027570D02* Y029300D01* X059160Y027090D02* X059640Y027570D01* X059160Y026143D02* Y027090D01* X059368Y025935D02* X059160Y026143D01* X061660Y031470D02* X062370D01* X059540Y029350D02* X061660Y031470D01* X059540Y027650D02* Y029350D01* X059053Y027163D02* X059540Y027650D01* X059053Y026620D02* Y027163D01* X058868Y026435D02* X059053Y026620D01* X061760Y031270D02* X062470D01* X059740Y029250D02* X061760Y031270D01* X059740Y027520D02* Y029250D01* X059390Y027170D02* X059740Y027520D01* X059390Y026957D02* Y027170D01* X059368Y026935D02* X059390Y026957D01* X061610Y031570D02* X062320D01* X058980Y028940D02* X061610Y031570D01* X058980Y027250D02* Y028940D01* X058868Y027138D02* X058980Y027250D01* X058868Y026935D02* Y027138D01* X061550Y031670D02* X062270D01* X058880Y029000D02* X061550Y031670D01* X058880Y027390D02* Y029000D01* X058670Y027180D02* X058880Y027390D01* X058670Y026237D02* Y027180D01* X058368Y025935D02* X058670Y026237D01* X061490Y031770D02* X062220D01* X058760Y029040D02* X061490Y031770D01* X058760Y027440D02* Y029040D01* X058570Y027250D02* X058760Y027440D01* X058570Y026637D02* Y027250D01* X058368Y026435D02* X058570Y026637D01* X060547Y025613D02* X060550Y025610D01* X060368Y025435D02* X060547Y025613D01* X060365Y015939D02* X060616Y016190D01* X060368Y015935D02* X060365Y015939D01* X060372Y026932D02* X060570Y027130D01* X060368Y026935D02* X060372Y026932D01* X060160Y026643D02* Y027260D01* X060368Y026435D02* X060160Y026643D01* X060372Y016432D02* X060120Y016180D01* X060368Y016435D02* X060372Y016432D01* X061365Y026439D02* X061616Y026690D01* X061368Y026435D02* X061365Y026439D01* Y025939D02* X061616Y026190D01* X061368Y025935D02* X061365Y025939D01* X060865Y025439D02* X060613Y025187D01* X060868Y025435D02* X060865Y025439D01* Y025939D02* X061116Y026190D01* X060868Y025935D02* X060865Y025939D01* Y023932D02* X060613Y024183D01* X060868Y023935D02* X060865Y023932D01* X060872Y024432D02* X061123Y024683D01* X060868Y024435D02* X060872Y024432D01* X061372Y016932D02* X061120Y016680D01* X061368Y016935D02* X061372Y016932D01* X060872Y015932D02* X060620Y015680D01* X060868Y015935D02* X060872Y015932D01* Y016932D02* X060620Y016680D01* X060868Y016935D02* X060872Y016932D01* X059365D02* X059113Y017183D01* X059368Y016935D02* X059365Y016932D01* X059377Y024443D02* X059210Y024610D01* X059368Y024435D02* X059377Y024443D01* X059940Y014160D02* X059370D01* X060120Y014340D02* X059940Y014160D01* X060120Y014690D02* Y014340D01* X059872Y014939D02* X060120Y014690D01* X059868Y014935D02* X059872Y014939D01* X059865Y023932D02* X059613Y024183D01* X059868Y023935D02* X059865Y023932D01* X059867Y025933D02* X060070Y025730D01* X059868Y025935D02* X059867Y025933D01* X059862Y024942D02* X060020Y025100D01* X059868Y024935D02* X059862Y024942D01* X059367Y025437D02* X059660Y025730D01* X059368Y025435D02* X059367Y025437D01* X059372Y015439D02* X059623Y015187D01* X059368Y015435D02* X059372Y015439D01* Y015938D02* X059630Y015680D01* X059368Y015935D02* X059372Y015938D01* X059865Y016432D02* X059613Y016683D01* X059868Y016435D02* X059865Y016432D01* X058872Y015939D02* X059123Y015687D01* X058868Y015935D02* X058872Y015939D01* X058857Y025447D02* X059040Y025630D01* X058868Y025435D02* X058857Y025447D01* X058867Y024933D02* X058660Y025140D01* X058868Y024935D02* X058867Y024933D01* X058377Y024427D02* X058540Y024590D01* X058368Y024435D02* X058377Y024427D01* X058362Y024942D02* X058210Y024790D01* X058368Y024935D02* X058362Y024942D01* X058867Y016433D02* X059150Y016150D01* X058868Y016435D02* X058867Y016433D01* X054330Y015170D02* X054550D01* X054065Y015435D02* X054330Y015170D01* X053868Y015435D02* X054065D01* X054382Y024922D02* X054570Y025110D01* X054368Y024935D02* X054382Y024922D01* X056387Y015417D02* X056580Y015610D01* X056368Y015435D02* X056387Y015417D01* X056372Y025432D02* X056560Y025620D01* X056368Y025435D02* X056372Y025432D01* X056872Y024932D02* X056730Y024790D01* X056868Y024935D02* X056872Y024932D01* X057867Y025433D02* X057640Y025660D01* X057868Y025435D02* X057867Y025433D01* X057387Y025453D02* X057160Y025680D01* X057368Y025435D02* X057387Y025453D01* X057372Y024932D02* X057610Y025170D01* X057368Y024935D02* X057372Y024932D01* X056867Y024433D02* X056730Y024570D01* X056868Y024435D02* X056867Y024433D01* X056862Y016428D02* X057020Y016270D01* X056868Y016435D02* X056862Y016428D01* X057367Y016433D02* X057590Y016210D01* X057368Y016435D02* X057367Y016433D01* X056877Y016943D02* X056670Y017150D01* X056868Y016935D02* X056877Y016943D01* X057367Y015933D02* X057570Y015730D01* X057368Y015935D02* X057367Y015933D01* X057370Y014435D02* Y014090D01* X057368Y014435D02* X057370D01* X055862Y026428D02* X055580Y026710D01* X055868Y026435D02* X055862Y026428D01* X055868Y015935D02* X056013Y015790D01* X055845Y016435D02* X055670Y016260D01* X055868Y016435D02* X055845D01* X056357Y015923D02* X056190Y016090D01* X056368Y015935D02* X056357Y015923D01* X056367Y016937D02* X056170Y016740D01* X056368Y016935D02* X056367Y016937D01* X055872Y024938D02* X055680Y025130D01* X055868Y024935D02* X055872Y024938D01* X056377Y024443D02* X056210Y024610D01* X056368Y024435D02* X056377Y024443D01* X055868Y025532D02* X055790Y025610D01* X055868Y025435D02* Y025532D01* X055367Y015937D02* X055170Y015740D01* X055368Y015935D02* X055367Y015937D01* X054862Y016942D02* X054630Y016710D01* X054868Y016935D02* X054862Y016942D01* X055368Y016918D02* X055120Y016670D01* X055368Y016935D02* Y016918D01* X054867Y014937D02* X054660Y014730D01* X054868Y014935D02* X054867Y014937D01* X054872Y016438D02* X055070Y016240D01* X054868Y016435D02* X054872Y016438D01* X054882Y024448D02* X054630Y024700D01* X054868Y024435D02* X054882Y024448D01* X055382Y024422D02* X055170Y024210D01* X055368Y024435D02* X055382Y024422D01* X054877Y024943D02* X055070Y024750D01* X054868Y024935D02* X054877Y024943D01* X055377Y025427D02* X055560Y025610D01* X055368Y025435D02* X055377Y025427D01* X055367Y025937D02* X055540Y026110D01* X055368Y025935D02* X055367Y025937D01* X052862Y016428D02* X053050Y016240D01* X052868Y016435D02* X052862Y016428D01* Y025428D02* X053070Y025220D01* X052868Y025435D02* X052862Y025428D01* X053372Y015438D02* X053560Y015250D01* X053368Y015435D02* X053372Y015438D01* X053785Y015935D02* X053610Y015760D01* X053868Y015935D02* X053785D01* X054372Y016432D02* X054180Y016240D01* X054368Y016435D02* X054372Y016432D01* X053872Y025438D02* X053570Y025740D01* X053868Y025435D02* X053872Y025438D01* X054345Y025435D02* X054110Y025670D01* X054368Y025435D02* X054345D01* X053372Y025938D02* X053060Y026250D01* X053368Y025935D02* X053372Y025938D01* X053603Y025170D02* X054120D01* X053368Y024935D02* X053603Y025170D01* X053868Y024318D02* X053760Y024210D01* X053868Y024435D02* Y024318D01* X053368Y024308D02* X053210Y024150D01* X053368Y024435D02* Y024308D01* X053050Y024280D02* X052910Y024140D01* X053050Y024540D02* Y024280D01* X052868Y024722D02* X053050Y024540D01* X052868Y024935D02* Y024722D01* X054372Y015932D02* X054180Y015740D01* X054368Y015935D02* X054372Y015932D01* X053350Y015210D02* X053160D01* X053470Y015090D02* X053350Y015210D01* X053690Y015090D02* X053470D01* X053760Y015160D02* X053690Y015090D01* X054143Y015160D02* X053760D01* X054368Y014935D02* X054143Y015160D01* X053872Y016938D02* X054070Y016740D01* X053868Y016935D02* X053872Y016938D01* X052872Y015938D02* X053060Y015750D01* X052868Y015935D02* X052872Y015938D01* X053187Y016617D02* X053190Y016620D01* X053368Y016435D02* X053187Y016617D01* X053760Y017327D02* X053372Y016938D01* X053760Y017650D02* Y017327D01* X053368Y016935D02* X053372Y016938D01* X053540Y016770D02* X053372Y016938D01* X052377Y024443D02* X052190Y024630D01* X052368Y024435D02* X052377Y024443D01* X051867Y024933D02* X051690Y025110D01* X051868Y024935D02* X051867Y024933D01* X051872Y024438D02* X051610Y024700D01* X051868Y024435D02* X051872Y024438D01* X052110Y025260D02* Y025550D01* X052050Y025200D02* X052110Y025260D01* X051830Y025200D02* X052050D01* X051730Y025300D02* X051830Y025200D01* X051570Y025300D02* X051730D01* X051480Y025210D02* X051570Y025300D01* X051480Y025047D02* Y025210D01* X051368Y024935D02* X051480Y025047D01* X052362Y025428D02* X052550Y025240D01* X052368Y025435D02* X052362Y025428D01* X051872Y016932D02* X052123Y017183D01* X051868Y016935D02* X051872Y016932D01* X052367Y017437D02* X052603Y017673D01* X052368Y017435D02* X052367Y017437D01* X051872Y016432D02* X051620Y016180D01* X051868Y016435D02* X051872Y016432D01* X051310Y014377D02* Y014100D01* X051368Y014435D02* X051310Y014377D01* X049550Y016617D02* X049868Y016935D01* X049550Y015970D02* Y016617D01* X048852Y015272D02* X049550Y015970D01* X048539Y015272D02* X048852D01* X046170Y021401D02* X046177Y021394D01* X046170Y019790D02* Y021401D01* X046480Y019480D02* X046170Y019790D01* X046480Y018040D02* Y019480D01* X046990Y017530D02* X046480Y018040D01* X047660Y017530D02* X046990D01* X047760Y017430D02* X047660Y017530D01* X047760Y015980D02* Y017430D01* X048240Y015500D02* X047760Y015980D01* X048240Y015070D02* Y015500D01* X048460Y014850D02* X048240Y015070D01* X049430Y014850D02* X048460D01* X049840Y015260D02* X049430Y014850D01* X050693Y015260D02* X049840D01* X050868Y015435D02* X050693Y015260D01* X050750Y014317D02* Y014120D01* X050868Y014435D02* X050750Y014317D01* X050877Y025427D02* X050560Y025110D01* X050868Y025435D02* X050877Y025427D01* X050867Y024433D02* X050680Y024620D01* X050868Y024435D02* X050867Y024433D01* X049697Y026607D02* X049700Y026610D01* X049868Y026435D02* X049697Y026607D01* X049610Y025435D02* Y025440D01* X049868Y025435D02* X049610D01* X050880Y026935D02* Y027200D01* X050868Y026935D02* X050880D01* X050368Y024935D02* X050163Y025140D01* X050387Y024453D02* X050210Y024630D01* X050368Y024435D02* X050387Y024453D01* X050620Y015050D02* Y014720D01* X050530Y015140D02* X050620Y015050D01* X050073Y015140D02* X050530D01* X049868Y014935D02* X050073Y015140D01* X050367Y016433D02* X050130Y016670D01* X050368Y016435D02* X050367Y016433D01* X050275Y014935D02* X050070Y014730D01* X050368Y014935D02* X050275D01* X050372Y016938D02* X050640Y016670D01* X050368Y016935D02* X050372Y016938D01* X050867Y016933D02* X050630Y017170D01* X050868Y016935D02* X050867Y016933D01* X046415Y016945D02* X046370D01* X046415D02* X046669* X046415D01* X046472Y022161D02* Y022280D01* X046177Y021866D02* X046472Y022161D01* Y023200D02* X046210D01* X046472Y023028D02* Y023200D01* X046177D02* X046210D01* X046177Y023441D02* Y023200D01* X046210Y023028D02* Y023200D01* X046217Y023028D02* X046210D01* X046433Y021650D02* X046177Y021394D01* X046552Y021650D02* X046433D01* X046768Y021866D02* X046552Y021650D01* X039320Y014090D02* Y010660D01* X039530Y014300D02* X039320Y014090D01* X039530Y015230D02* Y014300D01* X038993Y027673D02* X039380Y028060D01* X038343Y027673D02* X038993D01* X039520Y027800D02* X039770Y028050D01* X039340Y027800D02* X039520D01* X038820Y027280D02* X039340Y027800D01* X038343Y027280D02* X038820D01* X039040Y030429D02* Y030430D01* X038343Y030429D02* X039040D01* X039287Y017142D02* X039010Y014120* Y010490D01* X038340Y014080D02* Y010990D01* X038680Y011170D02* X038690D01* X038680Y014100D02* Y011170D01* X072350Y013590D02* D15* Y013100D01* X072358Y013598D02* X072350Y013590D01* X066809Y024621D02* X067340Y024090D01* X066748Y024559D02* X066809Y024621D01* X069799Y013989D02* X069840Y014030D01* X069799Y013598D02* Y013989D01* X066809Y019501D02* X067340Y018970D01* X066748Y019441D02* X066809Y019501D01* X067181Y028990D02* X067180D01* X067181Y029248D02* Y028990D01* X072260Y010944D02* X072035Y011169D01* X072260Y010941D02* Y010944D01* X058240Y021276D02* X058402D01* X057983Y021019D02* X058240Y021276D01* Y019346D02* X058402D01* X057983Y019090D02* X058240Y019346D01* Y023205D02* X057983Y022948D01* X058402Y023205D02* X058240D01* Y018165D02* X058402D01* X057983Y017909D02* X058240Y018165D01* Y020094D02* X058402D01* X057983Y019838D02* X058240Y020094D01* Y022024D02* X058402D01* X057983Y021767D02* X058240Y022024D01* X062279Y029130D02* X061984Y029425D01* X063570Y029130D02* X062279D01* X064110Y028590D02* X063570Y029130D01* X064110Y025990D02* Y028590D01* X062830Y024710D02* X064110Y025990D01* X062830Y024470D02* Y024710D01* X062520Y024160D02* X062830Y024470D01* X061593Y024160D02* X062520D01* X061368Y023935D02* X061593Y024160D01* X061603Y025170D02* X061368Y024935D01* X062930Y025170D02* X061603D01* X063880Y026120D02* X062930Y025170D01* X063880Y028370D02* Y026120D01* X063340Y028910D02* X063880Y028370D01* X061318Y028910D02* X063340D01* X060803Y029425D02* X061318Y028910D01* X062115Y022689D02* X062116Y022690D01* X062115Y018689D02* X062116Y018690D01* X062115Y021689D02* X062116Y021690D01* X062115Y019689D02* X062116Y019690D01* X062115Y020689D02* X062116Y020690D01* X062122Y016682D02* X062120Y016680D01* X062115Y023689D02* X062116Y023690D01* X062920Y014120D02* X062790Y013990D01* X062920Y015390D02* Y014120D01* X062372Y015938D02* X062920Y015390D01* X062368Y015935D02* X062372Y015938D01* X061906Y029504D02* Y030370D01* X061984Y029425D02* X061906Y029504D01* X063268Y028362D02* X062850D01* X063650Y027980D02* X063268Y028362D01* X063650Y026270D02* Y027980D01* X063070Y025690D02* X063650Y026270D01* X062123Y025690D02* X063070D01* X061868Y025435D02* X062123Y025690D01* X062811Y028402D02* X062850Y028362D01* X061984Y028402D02* X062811D01* X060803D02* Y029425D01* X060620Y023180D02* X060622Y023182D01* X061116Y022690D02* X061115Y022689D01* Y023182D02* X061113Y023183D01* X061122Y017682D02* X061120Y017680D01* X061115Y020689D02* X061116Y020690D01* X061115Y019689D02* X061116Y019690D01* X061115Y018689D02* X061116Y018690D01* X061115Y021689D02* X061116Y021690D01* X060115Y021689D02* X060116Y021690D01* X060123Y018187D02* X060122Y018189D01* Y018682D02* X060120Y018680D01* X060115Y019689D02* X060116Y019690D01* X060115Y020689D02* X060116Y020690D01* X060115Y022689D02* X060116Y022690D01* X058568Y022024D02* X058813Y022269D01* X058402Y022024D02* X058568D01* Y020094D02* X058813Y020340D01* X058402Y020094D02* X058568D01* Y018165D02* X058813Y018411D01* X058402Y018165D02* X058568D01* Y023205D02* X058402D01* X058813Y023450D02* X058568Y023205D01* Y019346D02* X058813Y019592D01* X058402Y019346D02* X058568D01* Y021276D02* X058813Y021521D01* X058402Y021276D02* X058568D01* X056284Y019346D02* X056118D01* X056530Y019592D02* X056284Y019346D01* Y021276D02* X056530Y021521D01* X056118Y021276D02* X056284D01* Y023205D02* X056118D01* X056530Y023450D02* X056284Y023205D01* Y022024D02* X056530Y022269D01* X056118Y022024D02* X056284D01* Y018165D02* X056118D01* X056530Y018411D02* X056284Y018165D01* Y020094D02* X056118D01* X056530Y020340D02* X056284Y020094D01* X056368Y014030D02* X056370D01* X056368Y014435D02* Y014030D01* X057426Y018165D02* X057260D01* X057672Y018411D02* X057426Y018165D01* X057098D02* X056842Y017909D01* X057260Y018165D02* X057098D01* X057426Y022024D02* X057260D01* X057672Y022269D02* X057426Y022024D01* X057098D02* X056842Y021767D01* X057260Y022024D02* X057098D01* Y020094D02* X057260D01* X056842Y019838D02* X057098Y020094D01* X057426D02* X057672Y020340D01* X057260Y020094D02* X057426D01* Y021276D02* X057260D01* X057672Y021521D02* X057426Y021276D01* X057098D02* X056842Y021019D01* X057260Y021276D02* X057098D01* Y019346D02* X057260D01* X056842Y019090D02* X057098Y019346D01* X057426D02* X057672Y019592D01* X057260Y019346D02* X057426D01* Y023205D02* X057260D01* X057672Y023450D02* X057426Y023205D01* X057098D02* X056842Y022948D01* X057260Y023205D02* X057098D01* X055956Y019346D02* X055700Y019090D01* X056118Y019346D02* X055956D01* Y021276D02* X056118D01* X055700Y021019D02* X055956Y021276D01* Y023205D02* X055700Y022948D01* X056118Y023205D02* X055956D01* Y022024D02* X056118D01* X055700Y021767D02* X055956Y022024D01* Y018165D02* X055700Y017909D01* X056118Y018165D02* X055956D01* X055700Y019838D02* Y019830D01* X055956Y020094D02* X055700Y019838D01* X056118Y020094D02* X055956D01* X055143Y019346D02* X055388Y019592D01* X054976Y019346D02* X055143D01* X054815D02* X054976D01* X054558Y019090D02* X054815Y019346D01* X055143Y023205D02* X055388Y023450D01* X054976Y023205D02* X055143D01* X054815D02* X054976D01* X054558Y022948D02* X054815Y023205D01* Y021276D02* X054558Y021019D01* X054976Y021276D02* X054815D01* X055143D02* X054976D01* X055388Y021521D02* X055143Y021276D01* Y022024D02* X055388Y022269D01* X054976Y022024D02* X055143D01* X054815D02* X054976D01* X054558Y021767D02* X054815Y022024D01* Y018165D02* X054558Y017909D01* X054976Y018165D02* X054815D01* X055143D02* X054976D01* X055388Y018411D02* X055143Y018165D01* Y020094D02* X055388Y020340D01* X054976Y020094D02* X055143D01* X054815D02* X054976D01* X054558Y019838D02* X054815Y020094D01* X054001D02* X053835D01* X054247Y020340D02* X054001Y020094D01* X053673D02* X053417Y019838D01* X053835Y020094D02* X053673D01* Y022024D02* X053835D01* X053417Y021767D02* X053673Y022024D01* X054001D02* X054247Y022269D01* X053835Y022024D02* X054001D01* Y018165D02* X053835D01* X054247Y018411D02* X054001Y018165D01* X053673D02* X053417Y017909D01* X053835Y018165D02* X053673D01* Y019346D02* X053835D01* X053417Y019090D02* X053673Y019346D01* X054001D02* X054247Y019592D01* X053835Y019346D02* X054001D01* X053673Y023205D02* X053835D01* X053417Y022948D02* X053673Y023205D01* X054001D02* X054247Y023450D01* X053835Y023205D02* X054001D01* Y021276D02* X053835D01* X054247Y021521D02* X054001Y021276D01* X053673D02* X053417Y021019D01* X053835Y021276D02* X053673D01* X052575Y031670D02* X052570D01* X052115Y022689D02* X052116Y022690D01* X052115Y023689D02* X052116Y023690D01* X051615Y017682D02* X051613Y017683D01* X052115Y021689D02* X052116Y021690D01* X052115Y020689D02* X052116Y020690D01* X052115Y019689D02* X052116Y019690D01* X052115Y018689D02* X052116Y018690D01* X049425Y031740D02* X049430D01* X051115Y020689D02* X051116Y020690D01* X050115Y020689D02* X050116Y020690D01* X050112Y023692D02* X050110Y023690D01* X051115Y022689D02* X051116Y022690D01* X050115Y022689D02* X050116Y022690D01* X051115Y021689D02* X051116Y021690D01* X051115Y023689D02* X051116Y023690D01* X050613Y017683D02* X050615Y017682D01* X050115Y017689D02* X050116Y017690D01* X050115Y019689D02* X050116Y019690D01* X050115Y018689D02* X050116Y018690D01* X051115Y019689D02* X051116Y019690D01* X051115Y018689D02* X051116Y018690D01* X047419Y015961D02* X047520Y015860D01* X047260Y015961D02* X047419D01* X047547Y016945D02* X047559Y016957D01* X047260Y016945D02* X047547D01* X047186Y021264D02* X047559D01* X047056Y021394D02* X047186Y021264D01* X046768Y021394D02* X047056D01* X047550Y015272D02* Y015270D01* X047949Y015272D02* X047550D01* X047030Y023441D02* Y023440D01* X046768Y023441D02* X047030D01* X046113Y026720D02* X046110D01* X046113Y027172D02* Y026720D01* X047030Y023028D02* Y023030D01* X046728Y023028D02* X047030D01* X046720D02* X046728D01* X046720Y022780D02* Y023028D01* X046560Y022620D02* X046720Y022780D01* X046380Y022620D02* X046560D01* X046217Y022457D02* X046380Y022620D01* X046217Y022280D02* Y022457D01* X046113Y024750D02* X046110D01* X046113Y025222D02* Y024750D01* X046363D02* X046113D01* X046363Y025222D02* Y024750D01* X045863D02* X046110D01* X045863Y025222D02* Y024750D01* X046519Y015961D02* X046340Y016140D01* X046669Y015961D02* X046519D01* X043520Y024840D02* Y025114* Y024840D01* X043800Y018366D02* Y018820D01* X043560Y018126D02* X043800Y018366D01* X044110Y024840D02* Y025114* Y024840D01* X044700Y018166D02* Y018740D01* X044660Y018126D02* X044700Y018166D01* X038343Y030823D02* X039500D01* X039070Y028854D02* Y028850D01* X038343Y028854D02* X039070D01* X039010Y026492D02* Y026490D01* X038343Y026492D02* X039010D01* X039500Y026886D02* Y026905D01* X038343Y026886D02* X039500D01* X039003Y028067D02* X039010Y028060D01* X038343Y028067D02* X039003D01* X039040Y029642D02* Y029640D01* X038343Y029642D02* X039040D01* X039830Y030640D02* Y030690D01* X039647Y030823D02* X039830Y030640D01* X039500Y030823D02* X039647D01* X039500Y030795D02* Y030823D01* X039685Y026905D02* X039890Y027110D01* X039500Y026905D02* X039685D01* X039287Y020397D02* X039140Y020250D01* X039287Y020567D02* Y020397D01* Y015183D02* X039120Y015350D01* X039287Y014976D02* Y015183D01* Y016367D02* X039130Y016210D01* X039287Y016551D02* Y016367D01* X039850Y030360D02* Y030330D01* X039695Y030205D02* X039850Y030360D01* X039500Y030205D02* X039695D01* X039870Y027420D02* Y027430D01* X039795Y027495D02* X039870Y027420D01* X039500Y027495D02* X039795D01* X038370Y017142D02* Y017140D01* X038697Y017142D02* X038370D01* X038697Y020403D02* X038850Y020250D01* X038697Y020567D02* Y020403D01* Y016363D02* X038840Y016220D01* X038697Y016551D02* Y016363D01* X038460Y016551D02* X038697D01* Y015227D02* X038820Y015350D01* X038697Y014976D02* Y015227D01* X069500Y014386D02* D14* Y014700D01* X069504Y014386D02* X069500D01* X072416Y015600D02* Y015370D01* X072610Y015600D02* X072416D01* Y015370D02* Y015360D01* Y015140D02* X072610D01* X072416Y015360D02* Y015140D01* X060097Y016707D02* X060100Y016710D01* X059868Y016935D02* X060097Y016707D01* X054632Y026172D02* X054630Y026170D01* X054868Y025935D02* X054632Y026172D01* X050887Y015953D02* X050650Y016190D01* X050868Y015935D02* X050887Y015953D01* X050372Y015432D02* X050620Y015680D01* X050368Y015435D02* X050372Y015432D01* X044990Y024234D02* Y023980D01* X044996Y024228D02* X044990Y024234D01* X044996Y024546D02* Y024228D01* X045113Y024663D02* X044996Y024546D01* X045113Y025222D02* Y024663D01* X045590Y024530D02* Y024225D01* X045363Y024757D02* X045590Y024530D01* X045363Y025222D02* Y024757D01* X045590Y023980D02* Y024225D01* X045587Y024228D02* X045590Y024225D01* X044110Y025705D02* X044863D01* X043520D02* X044110D01* X044863Y027172D02* Y025705D01* Y025222D02* Y025705D01* X071316Y016314D02* D17* Y015710D01* X071276Y016354D02* X071316Y016314D01* X071130Y015710D02* X071316D01* X070272Y015232D02* X070606D01* X070213Y015173D02* X070272Y015232D01* X069898Y015173D02* X070213D01* X071186Y015240D02* X071306Y015360D01* X070614Y015240D02* X071186D01* X070606Y015232D02* X070614Y015240D01* X071306Y015214D02* Y015360D01* X071800Y014720D02* X071306Y015214D01* Y015360D02* X071316Y015370D01* X071001Y014210D02* X071170Y014379D01* X071001Y013819D02* Y014210D01* X071320Y013500D02* X071001Y013819D01* X071320Y012880D02* Y013500D01* X072078Y012122D02* X071320Y012880D01* X072260Y012122D02* X072078D01* X071177Y014386D02* X071170Y014379D01* X071316Y015136D02* Y015370D01* X071170Y014990D02* X071316Y015136D01* X071170Y014379D02* Y014990D01* X071316Y015370D02* Y015710D01* X072420Y015364D02* Y015620* Y015364D01* X072063Y015977D02* X072420Y015620D01* X072063Y016354D02* Y015977D01* X051368Y022435D02* X051115Y022689D01* X051368Y019435D02* X051115Y019689D01* X051368Y021435D02* X051115Y021689D01* X051368Y018435D02* X051115Y018689D01* X051368Y020435D02* X051115Y020689D01* X051368Y023435D02* X051115Y023689D01* X051368Y024435D02* X051120Y024683D01* X051368Y017935D02* X051117Y017683D01* X051368Y016935D02* X051117Y016683D01* X051368Y021935D02* X051120Y022183D01* X051368Y019935D02* X051120Y020183D01* X051368Y020935D02* X051120Y021183D01* X051368Y022935D02* X051120Y023183D01* X051368Y015435D02* X051117Y015183D01* X060368Y021435D02* X060115Y021689D01* X060368Y023435D02* X060622Y023182D01* X060368Y017435D02* X059868Y017935D01* X060122Y018189D02* X060368Y018435D01* X060122Y018682* X060368Y019435D02* X060115Y019689D01* X060368Y020435D02* X060115Y020689D01* X060368Y022435D02* X060115Y022689D01* X060368Y023935D02* X060620Y023683D01* X060368Y017935D02* X060620Y017683D01* X060368Y020935D02* X060120Y021183D01* X060368Y019935D02* X060120Y020183D01* X060368Y016935D02* X060120Y017183D01* X060368Y022935D02* X060120Y023183D01* X060368Y025935D02* X060617Y026183D01* X060368Y021935D02* X060120Y022183D01* X060368Y024435D02* X060617Y024683D01* X060368Y018935D02* X060120Y019183D01* X060368Y015435D02* X060120Y015683D01* X061620Y022683D02* X061616Y022680D01* X061868Y022435D02* X061620Y022683D01* X061368Y022935D02* X061620Y022683D01* X061617Y025683D02* X061620Y025680D01* X061368Y025435D02* X061617Y025683D01* X061868Y025935D02* X061617Y025683D01* Y024683D02* X061620Y024680D01* X061368Y024435D02* X061617Y024683D01* X061868Y024935D02* X061617Y024683D01* X062120Y019183D02* X062116Y019180D01* X062368Y018935D02* X062120Y019183D01* X061868Y019435D02* X062120Y019183D01* X062563Y014241D02* X062564Y014242D01* X062368Y014435D02* X062563Y014241D01* X061868Y017435D02* X062122Y017182D01* X062368Y016935D02* X062122Y017182D01* X062120Y020183D02* X062116Y020180D01* X062368Y019935D02* X062120Y020183D01* X061868Y020435D02* X062120Y020183D01* X061868Y027200D02* X061870D01* X061868Y026935D02* Y027200D01* X062120Y021183D02* X062116Y021180D01* X062368Y020935D02* X062120Y021183D01* X061868Y021435D02* X062120Y021183D01* X062801Y023935D02* X062914Y023823D01* X062368Y023935D02* X062801D01* X062120Y023183D02* X062116Y023180D01* X062368Y022935D02* X062120Y023183D01* X061868Y023435D02* X062120Y023183D01* Y018183D02* X062116Y018180D01* X062368Y017935D02* X062120Y018183D01* X061868Y018435D02* X062120Y018183D01* X062181Y022122D02* X062182Y022124D01* X062368Y021935D02* X062181Y022122D01* X062643Y014935D02* Y014937D01* X062368Y014935D02* X062643D01* X062555Y024622D02* X062557Y024621D01* X062368Y024435D02* X062555Y024622D01* X061868Y022935D02* X062115Y022689D01* X062368Y022435D02* X062115Y022689D01* X061868Y018935D02* X062115Y018689D01* X062368Y018435D02* X062115Y018689D01* X062368Y021435D02* X062115Y021689D01* X061868Y021935D02* X062115Y021689D01* X061868Y019935D02* X062115Y019689D01* X062368Y019435D02* X062115Y019689D01* X061868Y020935D02* X062115Y020689D01* X062368Y020435D02* X062115Y020689D01* X061868Y016935D02* X062122Y016682D01* X062368Y016435D02* X062122Y016682D01* X061868Y023935D02* X062115Y023689D01* X062368Y023435D02* X062115Y023689D01* X061868Y017935D02* X062368Y017435D01* X061368Y023435D02* X061115Y023182D01* X060622D02* X060868Y022935D01* X061368Y022435D02* X061115Y022689D01* X060868Y022935* X061115Y023182* X061368Y017435D02* X061122Y017682D01* X060868Y017935D02* X061122Y017682D01* X061368Y020435D02* X061115Y020689D01* X060868Y020935D02* X061115Y020689D01* X061368Y019435D02* X061115Y019689D01* X060868Y019935D02* X061115Y019689D01* X061368Y018435D02* X061115Y018689D01* X060868Y018935D02* X061115Y018689D01* X061368Y021435D02* X061115Y021689D01* X060868Y021935D02* X061115Y021689D01* X060868Y023435D02* X060620Y023683D01* X060616Y023680* X060868Y017435D02* X060620Y017683D01* X060616Y017680* X060868Y020435D02* X061120Y020183D01* X061368Y019935D02* X061120Y020183D01* X061116Y020180* X061368Y020935D02* X061120Y021183D01* X060868Y021435D02* X061120Y021183D01* X061116Y021180* X061368Y017935D02* X061120Y018183D01* X060868Y018435D02* X061120Y018183D01* X061116Y018180* X060868Y014935D02* X061120Y014683D01* X061368Y014435D02* X061120Y014683D01* X061116Y014680* X060868Y026435D02* X060617Y026183D01* X060620Y026180* X060868Y024935D02* X060617Y024683D01* X060620Y024680* X060868Y019435D02* X061120Y019183D01* X061368Y018935D02* X061120Y019183D01* X061116Y019180* X060868Y022435D02* X061120Y022183D01* X061368Y021935D02* X061120Y022183D01* X061116Y022180* X061368Y015935D02* X061123Y016180D01* X060868Y016435D02* X061123Y016180D01* X059120Y016683D02* X059116Y016680D01* X059368Y016435D02* X059120Y016683D01* X058868Y016935D02* X059120Y016683D01* X059868Y021935D02* X060115Y021689D01* X059868Y018935D02* X060122Y018682D01* X059868Y017935D02* X060122Y018189D01* X059868Y019935D02* X060115Y019689D01* X059868Y020935D02* X060115Y020689D01* X059868Y022935D02* X060115Y022689D01* X059603Y018435D02* Y018437D01* X059868Y018435D02* X059603D01* X059868Y021435D02* X060120Y021183D01* X060116Y021180* X059868Y020435D02* X060120Y020183D01* X060116Y020180* X059868Y014435D02* X059620Y014683D01* X059368Y014935D02* X059620Y014683D01* X059616Y014680* X059868Y017435D02* X060120Y017183D01* X060116Y017180* X059868Y023435D02* X060120Y023183D01* X060116Y023180* X059368Y026435D02* X059617Y026683D01* X059868Y026935D02* X059617Y026683D01* X059620Y026680* X059868Y022435D02* X060120Y022183D01* X060116Y022180* X059868Y019435D02* X060120Y019183D01* X060116Y019180* X059868Y025435D02* X059617Y025183D01* X059368Y024935D02* X059617Y025183D01* X059620Y025180* X059868Y015935D02* X060120Y015683D01* X060116Y015680* X058368Y027200D02* X058370D01* X058368Y026935D02* Y027200D01* X058868Y025935D02* X058617Y025683D01* X058368Y025435D02* X058617Y025683D01* X058620Y025680* X058368Y014160D02* X058370D01* X058368Y014435D02* Y014160D01* X058868Y024170D02* X058866D01* X058868Y024435D02* Y024170D01* X058368Y015935D02* X058620Y015683D01* X058868Y015435D02* X058620Y015683D01* X058616Y015680* X054368Y025935D02* X054120Y026183D01* X054368Y024435D02* X054120Y024683D01* X054368Y017200D02* X054370D01* X054368Y016935D02* Y017200D01* Y015435D02* X054617Y015683D01* X056368Y016435D02* X056620Y016183D01* X056368Y026435D02* X056117Y026183D01* X056368Y024935D02* X056617Y025183D01* X056368Y014935D02* X056620Y014683D01* X056868Y014435D02* X056620Y014683D01* X056616Y014680* X056868Y025435D02* X056617Y025183D01* X056620Y025180* X057868Y026435D02* X057617Y026183D01* X057368Y025935D02* X057617Y026183D01* X057620Y026180* X057868Y014935D02* X057620Y015183D01* X057368Y015435D02* X057620Y015183D01* X057616Y015180* X057368Y024435D02* X057617Y024683D01* X057868Y024935D02* X057617Y024683D01* X057620Y024680* X056868Y027200D02* X056870D01* X056868Y026935D02* Y027200D01* Y015935D02* X056620Y016183D01* X056616Y016180* X057868Y016435D02* X057620Y016683D01* X057368Y016935D02* X057620Y016683D01* X057616Y016680* X055368Y014935D02* X055617Y015183D01* X055868Y015435D02* X055617Y015183D01* X055620Y015180* X055368Y016435D02* X055617Y016683D01* X055868Y016935D02* X055617Y016683D01* X055620Y016680* X055868Y024170D02* X055866D01* X055868Y024435D02* Y024170D01* X056117Y026183D02* X056120Y026180D01* X055868Y025935D02* X056117Y026183D01* X054868Y014160D02* X054870D01* X054868Y014435D02* Y014160D01* X054617Y015683D02* X054620Y015680D01* X054868Y015935D02* X054617Y015683D01* X055120Y026683D02* X055116Y026680D01* X054868Y026935D02* X055120Y026683D01* X055368Y026435D02* X055120Y026683D01* Y025183D02* X055116Y025180D01* X054868Y025435D02* X055120Y025183D01* X055368Y024935D02* X055120Y025183D01* X052868Y017200D02* X052870D01* X052868Y016935D02* Y017200D01* Y015435D02* X052617Y015183D01* X052868Y024435D02* X052620Y024683D01* X052868Y025935D02* X053120Y025683D01* X053868Y026435D02* X054120Y026183D01* X054116Y026180* X053368Y025435D02* X053120Y025683D01* X053116Y025680* X053868Y024935D02* X054120Y024683D01* X054116Y024680* X053868Y014935D02* X053617Y014683D01* X053368Y014435D02* X053617Y014683D01* X053620Y014680* X053368Y027158D02* X053450Y027240D01* X053368Y026935D02* Y027158D01* X053868Y016435D02* X053617Y016183D01* X053368Y015935D02* X053617Y016183D01* X053620Y016180* X051868Y022935D02* X052115Y022689D01* X052368Y022435D02* X052115Y022689D01* X052368Y023435D02* X052115Y023689D01* X051868Y023935D02* X052115Y023689D01* X051868Y017935D02* X051615Y017682D01* X051368Y017435D02* X051615Y017682D01* X052368Y021435D02* X052115Y021689D01* X051868Y021935D02* X052115Y021689D01* X052368Y020435D02* X052115Y020689D01* X051868Y020935D02* X052115Y020689D01* X052368Y019435D02* X052115Y019689D01* X051868Y019935D02* X052115Y019689D01* X051868Y018935D02* X052115Y018689D01* X052368Y018435D02* X052115Y018689D01* X052633Y022935D02* Y022933D01* X052368Y022935D02* X052633D01* X052368Y021935D02* X052120Y022183D01* X051868Y022435D02* X052120Y022183D01* X052116Y022180* X051868Y019435D02* X052120Y019183D01* X052368Y018935D02* X052120Y019183D01* X052116Y019180* X051368Y025935D02* X051620Y025683D01* X051868Y025435D02* X051620Y025683D01* X051616Y025680* X051868Y015935D02* X052117Y016183D01* X052368Y016435D02* X052117Y016183D01* X052120Y016180* Y026187D02* X052116Y026190D01* X052368Y026435D02* X052120Y026187D01* X052368Y024935D02* X052620Y024683D01* X052616Y024680* X052368Y014935D02* X052617Y015183D01* X052620Y015180* X051868Y027158D02* X051950Y027240D01* X051868Y026935D02* Y027158D01* X051368Y023935D02* X051620Y023683D01* X051868Y023435D02* X051620Y023683D01* X051616Y023680* X051868Y014100D02* X051870D01* X051868Y014435D02* Y014100D01* X052368Y020935D02* X052120Y021183D01* X051868Y021435D02* X052120Y021183D01* X052116Y021180* X052368Y017935D02* X052117Y017683D01* X051868Y017435D02* X052117Y017683D01* X052120Y017680* X051868Y020435D02* X052120Y020183D01* X052368Y019935D02* X052120Y020183D01* X052116Y020180* X051868Y018435D02* X051620Y018683D01* X051368Y018935D02* X051620Y018683D01* X051616Y018680* X050868Y020935D02* X051115Y020689D01* X050368Y020435D02* X050115Y020689D01* X049868Y020935D02* X050115Y020689D01* X049868Y021935D02* X050368Y021435D01* Y023435D02* X050112Y023692D01* X049868Y023935D02* X050112Y023692D01* X050868Y022935D02* X051115Y022689D01* X050368Y022435D02* X050115Y022689D01* X049868Y022935D02* X050115Y022689D01* X050868Y021935D02* X051115Y021689D01* X050868Y023935D02* X051115Y023689D01* X050868Y024935D02* X051120Y024683D01* X051116Y024680* X049868Y022435D02* X050120Y022183D01* X050368Y021935D02* X050120Y022183D01* X050116Y022180* X049868Y025935D02* X050120Y025683D01* X050368Y025435D02* X050120Y025683D01* X050116Y025680* X050868Y026435D02* X050620Y026683D01* X050368Y026935D02* X050620Y026683D01* X050616Y026680* X050868Y022435D02* X051120Y022183D01* X051116Y022180* X049868Y023435D02* X050120Y023183D01* X050368Y022935D02* X050120Y023183D01* X050116Y023180* X050868Y021435D02* X051120Y021183D01* X051116Y021180* X049868Y027158D02* X049786Y027240D01* X049868Y026935D02* Y027158D01* X050868Y023435D02* X051120Y023183D01* X051116Y023180* X050368Y020935D02* X050120Y021183D01* X049868Y021435D02* X050120Y021183D01* X050116Y021180* X049868Y024435D02* X050120Y024183D01* X050368Y023935D02* X050120Y024183D01* X050116Y024180* X049868Y017935D02* X050115Y017689D01* X050868Y017935D02* X050615Y017682D01* X050368Y017435* X050115Y017689* X049868Y019935D02* X050115Y019689D01* X050368Y019435D02* X050115Y019689D01* X050368Y018435D02* X050115Y018689D01* X049868Y018935D02* X050115Y018689D01* X050868Y019935D02* X051115Y019689D01* X050868Y018935D02* X051115Y018689D01* X050868Y017435D02* X051117Y017683D01* X051120Y017680* X050868Y016435D02* X051117Y016683D01* X051120Y016680* X049868Y018435D02* X050120Y018183D01* X050368Y017935D02* X050120Y018183D01* X050116Y018180* X050868Y020435D02* X051120Y020183D01* X051116Y020180* X050055Y019248D02* X050054Y019246D01* X049868Y019435D02* X050055Y019248D01* Y020248D02* X050054Y020246D01* X049868Y020435D02* X050055Y020248D01* X050868Y018435D02* X050620Y018683D01* X050368Y018935D02* X050620Y018683D01* X050616Y018680* X050868Y019435D02* X050620Y019683D01* X050368Y019935D02* X050620Y019683D01* X050616Y019680* X049868Y015435D02* X050117Y015683D01* X050368Y015935D02* X050117Y015683D01* X050120Y015680* X050868Y014935D02* X051117Y015183D01* X051120Y015180* X062365Y024939D02* D11* X062113Y024687D01* X062368Y024935D02* X062365Y024939D01* X062368Y025435D02* X062690D01* D23* X044613Y027172D03* X044863D03* X045113D03* X045363D03* X045613D03* X045863D03* X046113D03* X046363D03* Y025222D03* X046113D03* X045863D03* X045613D03* X045363D03* X045113D03* X044863D03* X044613D03* D60* X067181Y029248D03* Y029839D03* D59* X072358Y014386D03* Y013598D03* X071768Y014386D03* X071177D03* D60* X072260Y012713D03* Y012122D03* X070606Y014642D03* Y015232D03* X072260Y010941D03* Y011531D03* D59* X069799Y013598D03* X069209D03* X047949Y015272D03* X048539D03* X039287Y014976D03* X038697D03* X039287Y016551D03* X038697D03* X039287Y020567D03* X038697D03* X039287Y019858D03* X038697D03* D60* X039500Y027495D03* Y026905D03* D59* X039287Y017142D03* X038697D03* X039287D03* X039878D03* X038697Y019268D03* X039287D03* Y018677D03* X038697D03* X046177Y021394D03* X046768D03* X047260Y016945D03* X046669D03* X046177Y023441D03* X046768D03* X045587Y024228D03* X044996D03* X046669Y015961D03* X047260D03* X046177Y021866D03* X046768D03* X044209Y012024D03* X043618D03* D60* X044110Y025114D03* Y025705D03* D59* X042732Y012811D03* X042142D03* X044209D03* X043618D03* D60* X043520Y025705D03* Y025114D03* X039500Y030205D03* Y030795D03* D52* X038343Y031610D03* Y031217D03* Y030823D03* Y030429D03* Y030035D03* Y029642D03* Y029248D03* Y028854D03* Y028461D03* Y028067D03* Y027673D03* Y027280D03* Y026886D03* Y026492D03* Y026098D03* Y025705D03* Y025311D03* Y024917D03* Y024524D03* D79* X072416Y015370D03* X071316D03* D78* X045961Y010999D03* D79* X044660Y018126D03* X043560D03* D78* X041256Y015822D03* Y014722D03* D48* X046728Y022280D03* X046472D03* X046217D03* Y023028D03* X046472D03* X046728D03* D63* X040941Y011866D03* X041846D03* X042752D03* D67* X072063Y016354D03* X071276D03* D68* X054976Y021276D03* Y020094D03* X056118Y021276D03* Y020094D03* X054976Y019346D03* Y018165D03* X056118Y023205D03* Y022024D03* X054976Y023205D03* Y022024D03* X056118Y019346D03* Y018165D03* X058402Y019346D03* Y018165D03* Y021276D03* Y020094D03* D69* X060803Y028402D03* X061984D03* X060803Y029425D03* X061984D03* D68* X058402Y023205D03* Y022024D03* D71* X061906Y030370D03* X063087D03* D70* X062850Y028362D03* Y029543D03* D68* X057260Y021276D03* Y020094D03* Y019346D03* Y018165D03* Y023205D03* Y022024D03* X053835Y023205D03* Y022024D03* Y021276D03* Y020094D03* Y019346D03* Y018165D03* D47* X070419Y010205D03* X070675D03* X070931D03* X071187D03* X071443D03* X071699D03* X071955D03* X072211D03* X072467D03* X072722D03* D84* X066748Y024559D03* Y026260D03* Y019441D03* Y021142D03* D85* X070094Y030291D03* D86* X068283Y026787D03* X072299D03* X068283Y021669D03* X072299D03* D56* X069504Y014386D03* X069110Y015173D03* X069898D03* M00* M02* gerbv-2.7.0/example/jj/Makefile.in0000644000175000017500000003607613423533412016624 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/jj ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = l1-1.grb l1-2.grb l1-3.grb l1-orig.grb README.txt MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/jj/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/jj/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/jj/l1-3.grb0000644000175000017500000024426113421555714015733 0ustar carstencarstenG04 Visula Post-processor * G04 Date : Thu Aug 29 14:50:26 2002 * G04 File name : /disk1/jobs/ekf/c/cd1/rev0/postpr/spool/l1.off * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %SRX1Y1I0.000J0.000*% %IPPOS*% G75* %ADD10C,0.0050*% %ADD11C,0.0070*% %ADD12C,0.0080*% %ADD13C,0.0080*% %ADD14C,0.0100*% %ADD15C,0.0120*% %ADD16C,0.0160*% %ADD17C,0.0200*% %ADD18C,0.0240*% %ADD19C,0.0550*% %ADD20C,0.0870*% %ADD21R,0.0550X0.0550*% %ADD22R,0.0980X0.0980*% %ADD23O,0.0120X0.0720*% %ADD24R,0.0050X0.0002*% %ADD25R,0.0730X0.0007*% %ADD26R,0.0050X0.0012*% %ADD27R,0.0050X0.0022*% %ADD28R,0.0050X0.0032*% %ADD29R,0.0016X0.0050*% %ADD30R,0.0147X0.0050*% %ADD31R,0.0149X0.0050*% %ADD32R,0.0177X0.0050*% %ADD33R,0.0203X0.0050*% %ADD34R,0.0587X0.0050*% %ADD35R,0.0050X0.0052*% %ADD36R,0.0609X0.0068*% %ADD37R,0.0050X0.0072*% %ADD38R,0.0090X0.0080*% %ADD39R,0.0050X0.0082*% %ADD40R,0.0050X0.0093*% %ADD41R,0.0120X0.0093*% %ADD42R,0.0940X0.0102*% %ADD43R,0.0320X0.0108*% %ADD44R,0.0068X0.0120*% %ADD45R,0.0149X0.0120*% %ADD46R,0.0504X0.0120*% %ADD47R,0.0150X0.0620*% %ADD48R,0.0160X0.0240*% %ADD49R,0.0050X0.0182*% %ADD50R,0.1030X0.0200*% %ADD51R,0.0120X0.0212*% %ADD52R,0.0920X0.0240*% %ADD53R,0.0050X0.0252*% %ADD54R,0.0120X0.0282*% %ADD55R,0.0050X0.0292*% %ADD56R,0.0300X0.0350*% %ADD57R,0.0050X0.0312*% %ADD58R,0.0058X0.0320*% %ADD59R,0.0320X0.0320*% %ADD60R,0.0320X0.0320*% %ADD61R,0.0050X0.0332*% %ADD62R,0.0007X0.0350*% %ADD63R,0.0350X0.0500*% %ADD64R,0.0050X0.0364*% %ADD65R,0.0050X0.0372*% %ADD66R,0.0050X0.0392*% %ADD67R,0.0400X0.0510*% %ADD68R,0.0630X0.0400*% %ADD69R,0.0400X0.0630*% %ADD70R,0.0980X0.0400*% %ADD71R,0.0400X0.0980*% %ADD72R,0.0050X0.0422*% %ADD73R,0.0050X0.0432*% %ADD74R,0.0050X0.0472*% %ADD75R,0.0050X0.0522*% %ADD76R,0.0050X0.0582*% %ADD77R,0.0050X0.0622*% %ADD78R,0.0940X0.0630*% %ADD79R,0.0630X0.0940*% %ADD80R,0.0050X0.0672*% %ADD81R,0.0050X0.0692*% %ADD82R,0.0050X0.0792*% %ADD83R,0.0053X0.0980*% %ADD84R,0.1420X0.1180*% %ADD85R,0.2760X0.1380*% %ADD86R,0.1380X0.2760*% %LPD*% %LNl1_off_d2*% G75* G36* G01X072847Y019661D02* X072417D01* Y017654* X072847* Y019661* G37* G36* G01Y028441D02* X072732D01* Y030528* X072847* Y028441* G37* G36* G01X064780Y028047D02* Y031952D01* X072654* Y029504* X066906* Y028244* X065961* Y028047* X064780* G37* G36* G01X072705Y011260D02* G03X072740Y011225I000017J-000018D01* G01X072847Y011332* Y011402* X072705Y011260* G37* G36* G01X072847Y013312D02* X072652Y013118D01* G03X072688Y013082I000018J-000018* G01X072847Y013242* Y013312* G37* G36* G01X072742Y012443D02* G03X072778Y012408I000018J-000018D01* G01X072847Y012477* Y012548* X072742Y012443* G37* G36* G01X072260Y012688D02* G02Y012738I000000J000025D01* G01Y012688* G37* G36* G01X072830Y014820D02* G02X072847Y014819I000000J-000100D01* G01Y014621* G02X072830Y014620I-000017J000099* G01Y014820* G37* G36* G01X071800Y014620D02* G02Y014820I000000J000100D01* G01Y014620* G37* G36* G01X072847Y014819D02* G03X072792Y014758I-000017J-000099D01* G01X072847Y014812* Y014819* G37* G36* G01X072644Y014075D02* G02Y014125I000000J000025D01* G01Y014075* G37* G36* G01X070700Y010205D02* G03X070650I-000025J000000D01* G01X070700* G37* G36* G01X070444D02* G03X070394I-000025J000000D01* G01X070444* G37* G36* G01X072492D02* G03X072442I-000025J000000D01* G01X072492* G37* G36* G01X072847Y029728D02* X072840Y029700D01* X072847* Y029728* G37* G36* G01X072840Y029350D02* X072847Y029322D01* Y029350* X072840* G37* G36* G01X072847Y030078D02* X072840Y030050D01* X072847* Y030078* G37* G36* G01X072840Y029700D02* X072847Y029672D01* Y029700* X072840* G37* G36* G01X072847Y030428D02* X072840Y030400D01* X072847* Y030428* G37* G36* G01X072840Y030050D02* X072847Y030022D01* Y030050* X072840* G37* G36* G01X071247Y010205D02* G03X071127I-000060J000000D01* G01X071247* G37* G36* G01X072847Y019740D02* X072339D01* Y017811* X070291* Y018559* X069150* Y023047* X072847* Y019740* G37* G36* G01X066039Y020291D02* Y023047D01* X069071* Y020291* X066039* G37* G36* G01X069071Y025409D02* X066039D01* Y028165* X069071* Y025409* G37* G36* G01X054845Y031660D02* G03X054895I000025J000000D01* G01X054845* G37* G36* G01X057805Y031920D02* G03X057855I000025J000000D01* G01X057805* G37* G36* G01X057552Y031678D02* G03X057588Y031642I000018J-000018D01* G01X057848Y031902* G03X057812Y031938I-000018J000018* G01X057552Y031678* G37* G36* G01X057905Y031870D02* G03X057955I000025J000000D01* G01X057905* G37* G36* G01X056853Y031952D02* X056887D01* X056853* G37* G36* G01X053677Y028783D02* G03X053683Y028777I000003J-000003D01* G01X056858Y031952* X056846* X053677Y028783* G37* G36* G01X057652Y031478D02* G03X057688Y031442I000018J-000018D01* G01X058197Y031952* X058127* X057652Y031478* G37* G36* G01X057738Y031942D02* X057744Y031952D01* X057677* X057502Y031778* G03X057538Y031742I000018J-000018* G01X057738Y031942* G37* G36* G01X057696Y031952D02* X057744D01* X057696* G37* G36* G01X053245Y031330D02* G03X053295I000025J000000D01* G01X053245* G37* G36* G01X054945Y031580D02* G03X054995I000025J000000D01* G01X054945* G37* G36* G01X050985Y031770D02* G03X051035I000025J000000D01* G01X050985* G37* G36* G01X048070Y010140D02* X040270Y017940D01* X048070Y010140* G37* G36* G01X058865Y013531D02* G03X058871Y013525I000003J-000003D01* G01X055483Y010137* G03X055477Y010143I-000003J000003* G01X058865Y013531* G37* G36* G01X051125Y031700D02* G03X051175I000025J000000D01* G01X051125* G37* G36* G01X051325Y031530D02* G03X051375I000025J000000D01* G01X051325* G37* G36* G01X051225Y031640D02* G03X051275I000025J000000D01* G01X051225* G37* G36* G01X051425Y031370D02* G03X051475I000025J000000D01* G01X051425* G37* G36* G01X051635Y031160D02* G03X051685I000025J000000D01* G01X051635* G37* G36* G01X051535Y031260D02* G03X051585I000025J000000D01* G01X051535* G37* G36* G01X052815Y031620D02* G03X052865I000025J000000D01* G01X052815* G37* G36* G01X052944Y031589D02* G03X052994I000025J000000D01* G01X052944* G37* G36* G01X053345Y031280D02* G03X053395I000025J000000D01* G01X053345* G37* G36* G01X053045Y031520D02* G03X053095I000025J000000D01* G01X053045* G37* G36* G01X053145Y031430D02* G03X053195I000025J000000D01* G01X053145* G37* G36* G01X056225Y031950D02* G03X056275I000025J000000D01* G01X056225* G37* G36* G01X053560Y029260D02* X056250Y031950D01* X056275Y031952* X056225* G03X056250Y031950I000025J-000002* G01X053560Y029260* G37* G36* G01X055395Y031430D02* G03X055445I000025J000000D01* G01X055395* G37* G36* G01X053618Y029022D02* G03X053622Y029018I000002J-000002D01* G01X056556Y031952* X056548* X053618Y029022* G37* G36* G01X053510Y029360D02* X056102Y031952D01* X053510Y029360* G37* G36* G01X055075Y031560D02* G03X055125I000025J000000D01* G01X055075* G37* G36* G01X056325Y031900D02* G03X056375I000025J000000D01* G01X056325* G37* G36* G01X053658Y028912D02* G03X053662Y028908I000002J-000002D01* G01X056707Y031952* X056697* X053658Y028912* G37* G36* G01X055295Y031480D02* G03X055345I000025J000000D01* G01X055295* G37* G36* G01X055195Y031530D02* G03X055245I000025J000000D01* G01X055195* G37* G36* G01X058425Y031940D02* G03X058475I000025J000000D01* G01X058425* G37* G36* G01X057787Y031243D02* G03X057753Y031277I-000017J000017D01* G01X058428Y031952* G03X058467Y031923I000022J-000012* G01X057787Y031243* G37* G36* G01X059062Y031778D02* G03X059098Y031742I000018J-000018D01* G01X059307Y031952* X059237* X059062Y031778* G37* G36* G01X058535Y031900D02* G03X058585I000025J000000D01* G01X058535* G37* G36* G01X059375Y031930D02* G03X059425I000025J000000D01* G01X059375* G37* G36* G01X059112Y031678D02* G03X059148Y031642I000018J-000018D01* G01X059418Y031912* G03X059412Y031952I-000018J000018* G01X059388* G03X059382Y031948I000012J-000022* G01X059112Y031678* G37* G36* G01X057702Y031378D02* G03X057738Y031342I000018J-000018D01* G01X058347Y031952* X058277* X057702Y031378* G37* G36* G01X059475Y031880D02* G03X059525I000025J000000D01* G01X059475* G37* G36* G01X059338Y031252D02* G03X059322Y031268I-000008J000008D01* G01X060006Y031952* X060038* X059338Y031252* G37* G36* G01X059290Y031350D02* G03X059270Y031370I-000010J000010D01* G01X059853Y031952* X059891* X059290Y031350* G37* G36* G01X059377Y031163D02* G03X059383Y031157I000003J-000003D01* G01X060178Y031952* X060166* X059377Y031163* G37* G36* G01X059427Y031063D02* G03X059433Y031057I000003J-000003D01* G01X060328Y031952* X060316* X059427Y031063* G37* G36* G01X059527Y030863D02* G03X059533Y030857I000003J-000003D01* G01X060628Y031952* X060616* X059527Y030863* G37* G36* G01X059627Y030663D02* G03X059633Y030657I000003J-000003D01* G01X060928Y031952* X060916* X059627Y030663* G37* G36* G01X059577Y030763D02* G03X059583Y030757I000003J-000003D01* G01X060778Y031952* X060766* X059577Y030763* G37* G36* G01X057368Y028248D02* X061071Y031952D01* X061073* X057368Y028248* G37* G36* G01X057641Y028369D02* G03X057639Y028371I-000001J000001D01* G01X061219Y031952* X061225* X057641Y028369* G37* G36* G01X062137Y031952D02* X062120Y031945D01* Y031952* X062137* G37* G36* G01X061390Y031945D02* X061373Y031952D01* X061390* Y031945* G37* G36* G01X058023Y028597D02* G03X058017Y028603I-000003J000003D01* G01X061365Y031952* X061373* X061407* X061379* X058023Y028597* G37* G36* G01X062182Y031858D02* G03X062158Y031882I-000012J000012D01* G01X062228Y031952* X062276* X062182Y031858* G37* G36* G01X059241Y031449D02* G03X059219Y031471I-000011J000011D01* G01X059699Y031952* X059745* X059241Y031449* G37* G36* G01X059477Y030963D02* G03X059483Y030957I000003J-000003D01* G01X060478Y031952* X060466* X059477Y030963* G37* G36* G01X062533Y031167D02* G03X062527Y031173I-000003J000003D01* G01X063306Y031952* X063318* X062533Y031167* G37* G36* G01X062425Y031365D02* G03X062415Y031375I-000005J000005D01* G01X062992Y031952* X063012* X062425Y031365* G37* G36* G01X062376Y031464D02* G03X062364Y031476I-000006J000006D01* G01X062840Y031952* X062864* X062376Y031464* G37* G36* G01X062474Y031266D02* G03X062466Y031274I-000004J000004D01* G01X063144Y031952* X063160* X062474Y031266* G37* G36* G01X062327Y031563D02* G03X062313Y031577I-000007J000007D01* G01X062687Y031952* X062717* X062327Y031563* G37* G36* G01X062279Y031661D02* G03X062261Y031679I-000009J000009D01* G01X062535Y031952* X062570* X062279Y031661* G37* G36* G01X062230Y031760D02* G03X062210Y031780I-000010J000010D01* G01X062381Y031952* X062423* X062230Y031760* G37* G36* G01X058844Y031952D02* X058904D01* X058844* G37* G36* G01X057269D02* X057329D01* X057269* G37* G36* G01X055694D02* X055755D01* X055694* G37* G36* G01X054483Y031670D02* G03X054603I000060J000000D01* G01X054483* G37* G36* G01X052515D02* G03X052635I000060J000000D01* G01X052515* G37* G36* G01X049986Y031952D02* X050046D01* X049986* G37* G36* G01X050576D02* X050637D01* X050576* G37* G36* G01X049365Y031740D02* G03X049485I000060J000000D01* G01X049365* G37* G36* G01X038209Y016551D02* X039530Y015230D01* X038209Y016551* G37* G36* G01Y016576D02* G02Y016526I000000J-000025D01* G01Y016576* G37* G36* G01X038304Y016792D02* G03X038219Y016708I-000043J-000042D01* G01X038418Y016509* G03X038502Y016594I000042J000042* G01X038304Y016792* G37* G36* G01X038261Y016810D02* G02Y016690I000000J-000060D01* G01Y016810* G37* G36* G01X038697Y015036D02* G02Y014916I000000J-000060D01* G01Y015036* G37* G36* G01X038343Y031670D02* G02Y031550I000000J-000060D01* G01Y031670* G37* G36* G01X038340Y016015D02* G02Y015965I000000J-000025D01* G01Y016015* G37* G36* G01X038370Y015585D02* G02Y015535I000000J-000025D01* G01Y015585* G37* G36* G01X038343Y031242D02* G02Y031192I000000J-000025D01* G01Y031242* G37* G36* G01X065476Y010112D02* X065379Y010133D01* X065281Y010118* X065264Y010112* X065476* G37* G36* G01X072847Y018325D02* X072800Y018240D01* X072832Y018148* X072847Y018135* Y018325* G37* G36* G01Y011536D02* X072821Y011442D01* X072847Y011384* Y011536* G37* G36* G01X038193Y016240D02* Y016320D01* Y016240* G37* G36* G01Y015720D02* Y015800D01* Y015720* G37* G36* G01Y015275D02* X038219Y015368D01* X038193Y015425* Y015275* G37* G36* G01X038283Y020213D02* G02Y020133I000000J-000040D01* G01Y020213* G37* D18* G01X070900Y028550D03* X069350D03* X070900Y026500D03* Y028109D03* X069350Y026900D03* Y026500D03* X070900Y026900D03* X070500Y026500D03* X070900Y027309D03* X070500Y028550D03* Y027709D03* Y028109D03* X069350Y027700D03* Y028100D03* Y027300D03* X070500Y027309D03* X070900Y027709D03* X070500Y026900D03* X071400Y027380D03* X067180Y028990D03* X070900Y020400D03* Y021200D03* Y020000D03* Y022400D03* Y021600D03* X069350Y022800D03* Y022400D03* X070900Y022800D03* Y020800D03* X070500Y022800D03* X070900Y022000D03* X070500Y022400D03* Y022000D03* Y021200D03* Y021600D03* X069350Y022000D03* Y021600D03* Y020800D03* Y021200D03* Y020000D03* Y020400D03* X070500Y020000D03* Y020400D03* Y020800D03* X070900Y024500D03* Y025300D03* X070500Y024500D03* X069350Y025700D03* Y026100D03* X070500D03* Y025300D03* Y025700D03* X070900Y024900D03* X069350Y025300D03* X070900Y026100D03* X069350Y024900D03* Y024500D03* X070900Y025700D03* X070500Y024900D03* X064677Y022248D03* Y023453D03* Y021878D03* Y023823D03* Y020303D03* Y020673D03* X068070Y023820D03* X067340Y024090D03* X064677Y019886D03* Y022666D03* Y023035D03* Y024610D03* Y024240D03* Y021091D03* Y021460D03* X069350Y018800D03* X070500D03* X070900Y019200D03* Y018800D03* X070500Y019200D03* Y019600D03* X070900D03* X069350D03* Y019200D03* X064677Y018729D03* Y019098D03* Y017154D03* Y017523D03* X071320Y016810D03* X071760Y017630D03* X069310Y018300D03* X067320Y018660D03* X070610Y014370D03* X071130Y015030D03* Y015710D03* X069500Y014700D03* X068490Y014600D03* Y014890D03* X067340Y018970D03* X070800Y015710D03* X069530D03* X068640Y018300D03* X072610Y015600D03* Y015140D03* X064677Y017941D03* Y018311D03* Y016736D03* Y016366D03* Y019516D03* X069500Y014030D03* X072670Y013100D03* X071810Y013170D03* X071330Y014030D03* X068490Y014310D03* Y014020D03* X068800D03* X072350Y013100D03* X069840Y014030D03* X072035Y011169D03* X072530Y012420D03* X070910Y012350D03* X070810Y013180D03* X071247Y011169D03* X064400Y013380D03* Y013000D03* X062914Y019516D03* Y016736D03* Y021460D03* Y021091D03* Y018311D03* Y016366D03* Y022666D03* Y019886D03* Y023035D03* Y017941D03* X062643Y014937D03* X062914Y018729D03* Y019098D03* Y023453D03* Y023823D03* Y022248D03* Y021878D03* X062840Y013030D03* X062914Y017154D03* Y017523D03* Y020673D03* Y020303D03* X062790Y013990D03* X062690Y025435D03* X062910Y027430D03* X062122Y017182D03* X062116Y023690D03* X062120Y016680D03* Y017680D03* X062116Y020690D03* Y019690D03* Y021690D03* Y018690D03* Y022690D03* X061895Y012980D03* X062557Y024621D03* X062182Y022124D03* X062116Y018180D03* X061620Y024680D03* X062116Y023180D03* Y021180D03* X061870Y027200D03* X062116Y020180D03* X061620Y025680D03* X062564Y014242D03* X061616Y022680D03* X062116Y019180D03* X062113Y024687D03* X061616Y026690D03* Y026190D03* X061113Y023183D03* X061120Y017680D03* X061116Y022690D03* Y020690D03* Y019690D03* Y018690D03* Y021690D03* X061107Y012980D03* X061116Y020180D03* Y021180D03* Y018180D03* Y014680D03* Y019180D03* Y022180D03* X061123Y016180D03* X061120Y016680D03* X061123Y024683D03* X061116Y026190D03* X060620Y023180D03* X060616Y023680D03* Y017680D03* X060320Y012980D03* X060620Y026180D03* Y024680D03* Y016680D03* Y015680D03* X060616Y016190D03* X060613Y024183D03* Y025187D03* X060116Y021690D03* X060130Y017670D03* X060120Y018680D03* X060116Y019690D03* X060123Y018187D03* X060116Y020690D03* Y022690D03* X059603Y018437D03* X060116Y021180D03* Y020180D03* X059616Y014680D03* X060116Y017180D03* Y023180D03* X059690Y013030D03* X059620Y026680D03* X060116Y022180D03* Y019180D03* X059620Y025180D03* X060116Y015680D03* X060120Y016180D03* X060160Y027260D03* X060100Y016710D03* X059613Y016683D03* X059630Y015680D03* X059623Y015187D03* X059613Y024183D03* X060113Y024687D03* X058813Y022269D03* Y020340D03* Y018411D03* Y023450D03* Y019592D03* X059116Y016680D03* X058813Y021521D03* X058866Y024170D03* X059113Y017183D03* X059150Y016150D03* X059123Y015687D03* X059370Y014160D03* X057983Y021767D03* Y019838D03* Y017909D03* X058370Y027200D03* X057983Y022948D03* Y019090D03* X058620Y025680D03* X058370Y014160D03* X057983Y021019D03* X058616Y015680D03* X058123Y016687D03* X056842Y017909D03* Y021767D03* X057672Y022269D03* Y020340D03* X056842Y019838D03* X057672Y018411D03* X057620Y026180D03* X056770Y013160D03* X056842Y021019D03* X057672Y021521D03* X057616Y015180D03* X057620Y024680D03* X057672Y019592D03* X056842Y019090D03* X056870Y027200D03* X056842Y022948D03* X057672Y023450D03* X057616Y016680D03* X055700Y019830D03* X056530Y020340D03* X055700Y017909D03* X056530Y018411D03* Y022269D03* X055700Y021767D03* Y022948D03* X056530Y023450D03* X056616Y014680D03* X055620Y015180D03* X056620Y025180D03* X056530Y021521D03* X055700Y021019D03* X056120Y026180D03* X055700Y019090D03* X056530Y019592D03* X056616Y016180D03* X055866Y024170D03* X055620Y016680D03* X056370Y014030D03* X055388Y020340D03* Y018411D03* Y022269D03* X055116Y025180D03* X054801Y028210D03* X055388Y021521D03* Y023450D03* Y019592D03* X055116Y026680D03* X054870Y014160D03* X054247Y020340D03* Y022269D03* X054558Y019838D03* X054247Y018411D03* X054558Y017909D03* Y021767D03* X054116Y026180D03* X054558Y021019D03* X054247Y019592D03* X054116Y024680D03* X054558Y022948D03* Y019090D03* X054370Y017200D03* X054247Y023450D03* X054620Y015680D03* X054543Y031670D03* X054247Y021521D03* X054630Y026170D03* X053417Y019838D03* Y021767D03* Y017909D03* X053116Y025680D03* X053417Y019090D03* X053620Y014680D03* X053417Y022948D03* Y021019D03* X052870Y017200D03* X053450Y027240D03* X053620Y016180D03* X053760Y017650D03* X052116Y022690D03* Y023690D03* Y021690D03* Y020690D03* Y019690D03* Y018690D03* X052633Y022933D03* X052116Y022180D03* Y019180D03* X052570Y031670D03* X052120Y016180D03* X052116Y026190D03* X052616Y024680D03* X052620Y015180D03* X051950Y027240D03* X052116Y021180D03* X052120Y017680D03* X052116Y020180D03* X052603Y017673D03* X052123Y017183D03* X051116Y022690D03* Y019690D03* Y021690D03* X051613Y017683D03* X051116Y018690D03* Y020690D03* Y023690D03* X051616Y025680D03* X051116Y024680D03* X051120Y017680D03* Y016680D03* X051116Y022180D03* Y020180D03* Y021180D03* Y023180D03* X051616Y023680D03* X051870Y014100D03* X051120Y015180D03* X051616Y018680D03* X051310Y014100D03* X051620Y016180D03* X051133Y015697D03* Y016197D03* X050613Y017683D03* X050880Y013190D03* X050616Y026680D03* Y018680D03* Y019680D03* X050630Y017170D03* X050640Y016670D03* X050750Y014120D03* X050620Y014720D03* X050110Y023690D03* X050116Y017690D03* Y019690D03* Y020690D03* Y018690D03* Y022690D03* Y021690D03* Y022180D03* Y025680D03* Y018180D03* Y023180D03* X050054Y019246D03* X049786Y027240D03* X050054Y020246D03* X050116Y021180D03* X050120Y015680D03* X050116Y024180D03* X050070Y014730D03* X050130Y016670D03* X049323Y016957D03* Y025201D03* Y018532D03* Y021681D03* Y022051D03* Y020107D03* Y023626D03* Y018901D03* Y023256D03* Y017327D03* Y020476D03* Y024831D03* Y018114D03* Y017744D03* Y022838D03* Y022469D03* Y019319D03* Y019689D03* Y024044D03* Y024413D03* Y016539D03* Y016170D03* Y020894D03* Y021264D03* X049430Y031740D03* X048070Y015950D03* X047559Y017327D03* Y019689D03* Y021264D03* Y022469D03* Y017744D03* Y018114D03* Y024044D03* Y024413D03* Y020894D03* Y022838D03* Y019319D03* Y016957D03* Y022051D03* Y021681D03* Y020476D03* Y020107D03* Y024831D03* Y025201D03* Y023626D03* Y023256D03* X047550Y015270D03* X047559Y018901D03* Y018532D03* X047520Y015860D03* X047030Y023440D03* X046940Y018520D03* X047030Y023030D03* X046370Y016945D03* X046110Y024750D03* X046340Y016140D03* X046110Y026720D03* X044470Y023760D03* X043800Y018820D03* X044470Y023130D03* X044680Y019680D03* X045110Y019190D03* X044120Y020190D03* X044700Y018740D03* X044110Y024840D03* X043520D03* X042800Y014820D03* X041190Y024690D03* Y021050D03* X041230Y019920D03* X041200Y020500D03* Y023740D03* X039830Y030690D03* X039890Y027110D03* X039870Y027430D03* X039850Y030330D03* X039910Y015120D03* X039940Y014730D03* X039380Y028060D03* X039770Y028050D03* X038820Y015350D03* X039010Y026490D03* X038840Y016220D03* X039070Y028850D03* X038850Y020250D03* X038370Y017140D03* X039010Y028060D03* X039040Y029640D03* X039130Y016210D03* X039120Y015350D03* X039140Y020250D03* X038340Y015990D03* X038370Y015560D03* X039040Y030430D03* D16* X060570Y027130D03* X060550Y025610D03* X059660Y025730D03* X060020Y025100D03* X060070Y025730D03* X059210Y024610D03* X058660Y025140D03* X059040Y025630D03* X058070Y016140D03* X058040Y024620D03* X058210Y024790D03* X058540Y024590D03* X057370Y014090D03* X057570Y015730D03* X056670Y017150D03* X057590Y016210D03* X057020Y016270D03* X056730Y024570D03* X057610Y025170D03* X057160Y025680D03* X057640Y025660D03* X056730Y024790D03* X056000Y013340D03* X056013Y015790D03* X055670Y016260D03* X056580Y015610D03* X056190Y016090D03* X056170Y016740D03* X055560Y025610D03* X055680Y025130D03* X056210Y024610D03* X055540Y026110D03* X055790Y025610D03* X055580Y026710D03* X056560Y025620D03* X055170Y015740D03* X055120Y016670D03* X055070Y016240D03* X055170Y024210D03* X055070Y024750D03* X054070Y016740D03* X054180Y015740D03* X054630Y016710D03* X054660Y014730D03* X054120Y025170D03* X054630Y024700D03* X054110Y025670D03* X054570Y025110D03* X054180Y016240D03* X054550Y015170D03* X053540Y016770D03* X053190Y016620D03* X053060Y015750D03* X053050Y016240D03* X053160Y015210D03* X052910Y024140D03* X053210Y024150D03* X053760Y024210D03* X053070Y025220D03* X053060Y026250D03* X053570Y025740D03* X053610Y015760D03* X053560Y015250D03* X052550Y025240D03* X052110Y025550D03* X052190Y024630D03* X051190Y025660D03* X051610Y024700D03* X051690Y025110D03* X050620Y015680D03* X050650Y016190D03* X051060Y028150D03* X050880Y027200D03* X050680Y024620D03* X050560Y025110D03* X050210Y024630D03* X050163Y025140D03* X049610Y025440D03* X049700Y026610D03* X045590Y023980D03* X044990D03* X039320Y010660D03* X038340Y010990D03* Y014080D03* X039010Y010490D03* Y014120D03* X038690Y011170D03* X038680Y014100D03* D20* X044307Y010843D03* D19* X065370Y024228D03* Y020094D03* Y013992D03* Y026394D03* X064386Y031512D03* X069937Y012890D03* Y017024D03* D17* X062368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X061868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X061368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X060868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X060368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X059868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X059368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X058868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X058368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X057868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X057368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X056868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X056368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X055868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X055368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X054868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X054368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X053868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X053368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X052868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X052368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X051868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X051368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X050868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X050368Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X049868Y026935D03* Y026435D03* Y025935D03* Y025435D03* Y024935D03* Y024435D03* Y023935D03* Y023435D03* Y022935D03* Y022435D03* Y021935D03* Y021435D03* Y020935D03* Y020435D03* Y019935D03* Y019435D03* Y018935D03* Y018435D03* Y017935D03* Y017435D03* Y016935D03* Y016435D03* Y015935D03* Y015435D03* Y014935D03* Y014435D03* X038283Y019583D02* D12* Y020173D01* D34* X072553Y012713D03* D50* X072315Y014720D03* D33* X072746Y014100D03* D40* X070675Y010158D03* X070419D03* X072467D03* D62* X072843Y029525D03* Y029875D03* Y030225D03* D41* X071187Y010158D03* D55* X054870Y031806D03* D28* X057830Y031936D03* D39* X057930Y031911D03* D77* X053270Y031641D03* D65* X054970Y031766D03* D49* X051010Y031861D03* D53* X051150Y031826D03* D72* X051350Y031741D03* D57* X051250Y031796D03* D76* X051450Y031661D03* D82* X051660Y031556D03* D81* X051560Y031606D03* D61* X052840Y031786D03* D64* X052969Y031770D03* D80* X053370Y031616D03* D73* X053070Y031736D03* D75* X053170Y031691D03* D24* X056250Y031951D03* D75* X055420Y031691D03* D66* X055100Y031756D03* D35* X056350Y031926D03* D74* X055320Y031716D03* D72* X055220Y031741D03* D26* X058450Y031946D03* D35* X058560Y031926D03* D27* X059400Y031941D03* D37* X059500Y031916D03* D25* X061755Y031949D03* D54* X054543Y031811D03* X052575D03* D51* X049425Y031846D03* D29* X038201Y016551D03* D44* X038227Y016750D03* D46* X038445Y014976D03* D45* X038268Y031610D03* D30* X038267Y015990D03* D32* X038282Y015560D03* D31* X038268Y031217D03* D58* X072818Y014386D03* Y013598D03* D83* X072820Y018323D03* D43* X050606Y031898D03* X049425D03* X050016D03* X057299D03* X058874D03* X054543D03* X052575D03* X055724D03* D42* X045961Y010163D03* D36* X038498Y031918D03* D38* X038238Y020173D03* X048953Y010488D02* D13* X049740D01* X048953Y011276D02* Y010488D01* X063283Y027969D02* X062496D01* X063283Y027181D02* Y027969D01* D22* X071630Y018323D03* D21* X065370Y022260D03* Y018126D03* Y015961D03* Y011827D03* Y028362D03* X066354Y031512D03* X067969Y012890D03* Y017024D03* X068970Y013850D02* D10* X068800Y014020D01* X068970Y011620D02* Y013850D01* X067910Y010560D02* X068970Y011620D01* X063360Y010560D02* X067910D01* X061550Y012370D02* X063360Y010560D01* X061550Y016117D02* Y012370D01* X061868Y016435D02* X061550Y016117D01* X068870Y013640D02* X068490Y014020D01* X068870Y011680D02* Y013640D01* X067850Y010660D02* X068870Y011680D01* X063410Y010660D02* X067850D01* X061680Y012390D02* X063410Y010660D01* X061680Y015747D02* Y012390D01* X061868Y015935D02* X061680Y015747D01* X068080Y014480D02* X068490Y014890D01* X068080Y013820D02* Y014480D01* X068550Y013350D02* X068080Y013820D01* X068550Y011900D02* Y013350D01* X067610Y010960D02* X068550Y011900D01* X063590Y010960D02* X067610D01* X062290Y012260D02* X063590Y010960D01* X062290Y014080D02* Y012260D01* X062170Y014200D02* X062290Y014080D01* X062170Y015133D02* Y014200D01* X061868Y015435D02* X062170Y015133D01* X068180Y014290D02* X068490Y014600D01* X068180Y013880D02* Y014290D01* X068660Y013400D02* X068180Y013880D01* X068660Y011840D02* Y013400D01* X067680Y010860D02* X068660Y011840D01* X063530Y010860D02* X067680D01* X062190Y012200D02* X063530Y010860D01* X062190Y014000D02* Y012200D01* X062050Y014140D02* X062190Y014000D01* X062050Y014753D02* Y014140D01* X061868Y014935D02* X062050Y014753D01* X068290Y014110D02* X068490Y014310D01* X068290Y013920D02* Y014110D01* X068770Y013440D02* X068290Y013920D01* X068770Y011780D02* Y013440D01* X067750Y010760D02* X068770Y011780D01* X063470Y010760D02* X067750D01* X062090Y012140D02* X063470Y010760D01* X062090Y013910D02* Y012140D01* X061868Y014132D02* X062090Y013910D01* X061868Y014435D02* Y014132D01* X072722Y010205D02* Y011242D01* X071380Y011380D02* X070090D01* X071650Y011110D02* X071380Y011380D01* X071650Y010865D02* Y011110D01* X071955Y010560D02* X071650Y010865D01* X071955Y010205D02* Y010560D01* X070770Y010760D02* X070130D01* X070931Y010599D02* X070770Y010760D01* X070931Y010205D02* Y010599D01* X071380Y010900D02* X070120D01* X071699Y010581D02* X071380Y010900D01* X071699Y010205D02* Y010581D01* X071450Y011530D02* X070100D01* X071800Y011180D02* X071450Y011530D01* X071800Y010970D02* Y011180D01* X072211Y010559D02* X071800Y010970D01* X072211Y010205D02* Y010559D01* X067530Y018660D02* X067320D01* X067770Y018900D02* X067530Y018660D01* X067770Y020120D02* Y018900D01* X066748Y021142D02* X067770Y020120D01* X069209Y013739D02* X069500Y014030D01* X069209Y013598D02* Y013739D01* X068070Y024938D02* Y023820D01* X066748Y026260D02* X068070Y024938D01* X072760Y012032D02* Y012425D01* X072260Y011531D02* X072760Y012032D01* X071806Y013166D02* X071810Y013170D01* X072260Y012713D02* X071806Y013166D01* X070606Y014370D02* X070610D01* X070606Y014642D02* Y014370D01* X072644Y014100D02* X072358Y014386D01* X071768* X071412Y014030D02* X071330D01* X071768Y014386D02* X071412Y014030D01* X053190Y029980D02* X054870Y031660D01* X044420Y029980D02* X053190D01* X042190Y027750D02* X044420Y029980D01* X042190Y021530D02* Y027750D01* X045300Y018420D02* X042190Y021530D01* X045300Y015550D02* Y018420D01* X048430Y012420D02* X045300Y015550D01* X053450Y012420D02* X048430D01* X054620Y013590D02* X053450Y012420D01* X054620Y014530D02* Y013590D01* X054500Y014650D02* X054620Y014530D01* X054083Y014650D02* X054500D01* X053868Y014435D02* X054083Y014650D01* X056880Y031660D02* X057570D01* X053770Y028550D02* X056880Y031660D01* X053130Y028550D02* X053770D01* X052980Y028400D02* X053130Y028550D01* X051530Y028400D02* X052980D01* X050190Y027060D02* X051530Y028400D01* X050190Y026613D02* Y027060D01* X050368Y026435D02* X050190Y026613D01* X057620Y031560D02* X057930Y031870D01* X056930Y031560D02* X057620D01* X053820Y028450D02* X056930Y031560D01* X053180Y028450D02* X053820D01* X053030Y028300D02* X053180Y028450D01* X051870Y028300D02* X053030D01* X051080Y027510D02* X051870Y028300D01* X051080Y026147D02* Y027510D01* X050868Y025935D02* X051080Y026147D01* X051450Y028780D02* X053680D01* X050070Y027400D02* X051450Y028780D01* X050070Y026233D02* Y027400D01* X050368Y025935D02* X050070Y026233D01* X056980Y031460D02* X057670D01* X053870Y028350D02* X056980Y031460D01* X053260Y028350D02* X053870D01* X053110Y028200D02* X053260Y028350D01* X052030Y028200D02* X053110D01* X051190Y027360D02* X052030Y028200D01* X051190Y026613D02* Y027360D01* X051368Y026435D02* X051190Y026613D01* Y025613D02* Y025660D01* X051368Y025435D02* X051190Y025613D01* X051570Y028660D02* X051060Y028150D01* X053720Y028660D02* X051570D01* X056820Y031760D02* X053720Y028660D01* X057520Y031760D02* X056820D01* X052120Y030180D02* X053270Y031330D01* X044320Y030180D02* X052120D01* X041980Y027840D02* X044320Y030180D01* X041980Y018530D02* Y027840D01* X048290Y012220D02* X041980Y018530D01* X053890Y012220D02* X048290D01* X055570Y013900D02* X053890Y012220D01* X055570Y014540D02* Y013900D01* X055470Y014640D02* X055570Y014540D01* X055180Y014640D02* X055470D01* X055050Y014770D02* X055180Y014640D01* X055050Y015253D02* Y014770D01* X054868Y015435D02* X055050Y015253D01* X053270Y029880D02* X054970Y031580D01* X044470Y029880D02* X053270D01* X042300Y027710D02* X044470Y029880D01* X042300Y021570D02* Y027710D01* X045400Y018470D02* X042300Y021570D01* X045400Y015600D02* Y018470D01* X048480Y012520D02* X045400Y015600D01* X053268Y012520D02* X048480D01* X054368Y013620D02* X053268Y012520D01* X054368Y014435D02* Y013620D01* X050540Y031300D02* X051010Y031770D01* X043540Y031300D02* X050540D01* X040270Y028030D02* X043540Y031300D01* X040270Y017940D02* Y028030D01* X055480Y010140D02* X048070D01* X058868Y014435D02* Y013528D01* X050650Y031200D02* X051150Y031700D01* X043610Y031200D02* X050650D01* X040370Y027960D02* X043610Y031200D01* X040370Y018010D02* Y027960D01* X048140Y010240D02* X040370Y018010D01* X055420Y010240D02* X048140D01* X058630Y013450D02* X055420Y010240D01* X058630Y014673D02* Y013450D01* X058368Y014935D02* X058630Y014673D01* X050820Y031000D02* X051350Y031530D01* X043750Y031000D02* X050820D01* X040570Y027820D02* X043750Y031000D01* X040570Y018180D02* Y027820D01* X047340Y011410D02* X040570Y018180D01* X056220Y011410D02* X047340D01* X057640Y012830D02* X056220Y011410D01* X057640Y014560D02* Y012830D01* X057750Y014670D02* X057640Y014560D01* X057980Y014670D02* X057750D01* X058130Y014820D02* X057980Y014670D01* X058130Y015173D02* Y014820D01* X057868Y015435D02* X058130Y015173D01* X050710Y031100D02* X051250Y031640D01* X043660Y031100D02* X050710D01* X040470Y027910D02* X043660Y031100D01* X040470Y018070D02* Y027910D01* X048200Y010340D02* X040470Y018070D01* X055370Y010340D02* X048200D01* X057868Y012838D02* X055370Y010340D01* X057868Y014435D02* Y012838D01* X050980Y030900D02* X051450Y031370D01* X043820Y030900D02* X050980D01* X040690Y027770D02* X043820Y030900D01* X040690Y018290D02* Y027770D01* X047470Y011510D02* X040690Y018290D01* X056100Y011510D02* X047470D01* X057190Y012600D02* X056100Y011510D01* X057190Y014757D02* Y012600D01* X057368Y014935D02* X057190Y014757D01* X051200Y030700D02* X051660Y031160D01* X043990Y030700D02* X051200D01* X041450Y028160D02* X043990Y030700D01* X041450Y017990D02* Y028160D01* X047730Y011710D02* X041450Y017990D01* X054680Y011710D02* X047730D01* X056170Y013200D02* X054680Y011710D01* X056170Y014990D02* Y013200D01* X056390Y015210D02* X056170Y014990D01* X056643Y015210D02* X056390D01* X056868Y015435D02* X056643Y015210D01* X051100Y030800D02* X051560Y031260D01* X043930Y030800D02* X051100D01* X040810Y027680D02* X043930Y030800D01* X040810Y018390D02* Y027680D01* X047590Y011610D02* X040810Y018390D01* X055980Y011610D02* X047590D01* X057050Y012680D02* X055980Y011610D01* X057050Y014753D02* Y012680D01* X056868Y014935D02* X057050Y014753D01* X054470Y011810D02* X056000Y013340D01* X047870Y011810D02* X054470D01* X041550Y018130D02* X047870Y011810D01* X041550Y028100D02* Y018130D01* X044050Y030600D02* X041550Y028100D01* X051820Y030600D02* X044050D01* X052840Y031620D02* X051820Y030600D01* X051860Y030480D02* X052969Y031589D01* X044110Y030480D02* X051860D01* X041650Y028020D02* X044110Y030480D01* X041650Y018210D02* Y028020D01* X047950Y011910D02* X041650Y018210D01* X054310Y011910D02* X047950D01* X056070Y013670D02* X054310Y011910D01* X056070Y014733D02* Y013670D01* X055868Y014935D02* X056070Y014733D01* X052170Y030080D02* X053370Y031280D01* X044370Y030080D02* X052170D01* X042080Y027790D02* X044370Y030080D01* X042080Y018600D02* Y027790D01* X048360Y012320D02* X042080Y018600D01* X053710Y012320D02* X048360D01* X055368Y013978D02* X053710Y012320D01* X055368Y014435D02* Y013978D01* X051930Y030380D02* X053070Y031520D01* X044190Y030380D02* X051930D01* X041760Y027950D02* X044190Y030380D01* X041760Y018320D02* Y027950D01* X048070Y012010D02* X041760Y018320D01* X054110Y012010D02* X048070D01* X055868Y013768D02* X054110Y012010D01* X055868Y014435D02* Y013768D01* X052020Y030280D02* X053170Y031430D01* X044240Y030280D02* X052020D01* X041880Y027920D02* X044240Y030280D01* X041880Y018430D02* Y027920D01* X048200Y012110D02* X041880Y018430D01* X053970Y012110D02* X048200D01* X055690Y013830D02* X053970Y012110D01* X055690Y014640D02* Y013830D01* X055570Y014760D02* X055690Y014640D01* X055290Y014760D02* X055570D01* X055190Y014860D02* X055290Y014760D01* X055190Y015257D02* Y014860D01* X055368Y015435D02* X055190Y015257D01* X051370Y016433D02* X051133Y016197D01* X051368Y016435D02* X051370Y016433D01* Y015933D02* X051133Y015697D01* X051368Y015935D02* X051370Y015933D01* X044910Y029260D02* X053560D01* X042940Y027290D02* X044910Y029260D01* X042940Y022410D02* Y027290D01* X046010Y019340D02* X042940Y022410D01* X046010Y016000D02* Y019340D01* X048470Y013540D02* X046010Y016000D01* X051630Y013540D02* X048470D01* X052070Y013980D02* X051630Y013540D01* X052070Y015337D02* Y013980D01* X052173Y015440D02* X052070Y015337D01* X052173Y015740D02* Y015440D01* X052368Y015935D02* X052173Y015740D01* X053450Y029460D02* X055420Y031430D01* X044760Y029460D02* X053450D01* X042730Y027430D02* X044760Y029460D01* X042730Y022320D02* Y027430D01* X045810Y019240D02* X042730Y022320D01* X045810Y015880D02* Y019240D01* X048750Y012940D02* X045810Y015880D01* X051418Y012940D02* X048750D01* X052368Y013890D02* X051418Y012940D01* X052368Y014435D02* Y013890D01* X045030Y029020D02* X053620D01* X043140Y027130D02* X045030Y029020D01* X043140Y022520D02* Y027130D01* X046280Y019380D02* X043140Y022520D01* X046280Y017820D02* Y019380D01* X046910Y017190D02* X046280Y017820D01* X046910Y015400D02* Y017190D01* X048570Y013740D02* X046910Y015400D01* X051280Y013740D02* X048570D01* X051560Y014020D02* X051280Y013740D01* X051560Y014830D02* Y014020D01* X051630Y014900D02* X051560Y014830D01* X051630Y015197D02* Y014900D01* X051868Y015435D02* X051630Y015197D01* X044850Y029360D02* X053510D01* X042830Y027340D02* X044850Y029360D01* X042830Y022370D02* Y027340D01* X045910Y019290D02* X042830Y022370D01* X045910Y015950D02* Y019290D01* X048420Y013440D02* X045910Y015950D01* X051720Y013440D02* X048420D01* X052170Y013890D02* X051720Y013440D01* X052170Y015237D02* Y013890D01* X052368Y015435D02* X052170Y015237D01* X053300Y029760D02* X055100Y031560D01* X044520Y029760D02* X053300D01* X042410Y027650D02* X044520Y029760D01* X042410Y021610D02* Y027650D01* X045500Y018520D02* X042410Y021610D01* X045500Y015680D02* Y018520D01* X048560Y012620D02* X045500Y015680D01* X052420Y012620D02* X048560D01* X053150Y013350D02* X052420Y012620D01* X053150Y014717D02* Y013350D01* X053368Y014935D02* X053150Y014717D01* X053580Y029130D02* X056350Y031900D01* X044970Y029130D02* X053580D01* X043040Y027200D02* X044970Y029130D01* X043040Y022470D02* Y027200D01* X046130Y019380D02* X043040Y022470D01* X046130Y016030D02* Y019380D01* X048520Y013640D02* X046130Y016030D01* X051360Y013640D02* X048520D01* X051670Y013950D02* X051360Y013640D01* X051670Y014737D02* Y013950D01* X051868Y014935D02* X051670Y014737D01* X045090Y028910D02* X053660D01* X043240Y027060D02* X045090Y028910D01* X043240Y022570D02* Y027060D01* X046380Y019430D02* X043240Y022570D01* X046380Y017900D02* Y019430D01* X047010Y017270D02* X046380Y017900D01* X047010Y015470D02* Y017270D01* X048630Y013850D02* X047010Y015470D01* X050900Y013850D02* X048630D01* X051080Y014030D02* X050900Y013850D01* X051080Y014647D02* Y014030D01* X051368Y014935D02* X051080Y014647D01* X053400Y029560D02* X055320Y031480D01* X044650Y029560D02* X053400D01* X042610Y027520D02* X044650Y029560D01* X042610Y022290D02* Y027520D01* X045710Y019190D02* X042610Y022290D01* X045710Y015810D02* Y019190D01* X048680Y012840D02* X045710Y015810D01* X052120Y012840D02* X048680D01* X052640Y013360D02* X052120Y012840D01* X052640Y014707D02* Y013360D01* X052868Y014935D02* X052640Y014707D01* X053350Y029660D02* X055220Y031530D01* X044590Y029660D02* X053350D01* X042510Y027580D02* X044590Y029660D01* X042510Y022240D02* Y027580D01* X045610Y019140D02* X042510Y022240D01* X045610Y015740D02* Y019140D01* X048610Y012740D02* X045610Y015740D01* X052190Y012740D02* X048610D01* X052868Y013418D02* X052190Y012740D01* X052868Y014435D02* Y013418D01* X057867Y015937D02* X058070Y016140D01* X057868Y015935D02* X057867Y015937D01* X057080Y031260D02* X057770D01* X053820Y028000D02* X057080Y031260D01* X052210Y028000D02* X053820D01* X051550Y027340D02* X052210Y028000D01* X051550Y026253D02* Y027340D01* X051868Y025935D02* X051550Y026253D01* X058570Y031760D02* X059080D01* X057870Y031060D02* X058570Y031760D01* X057190Y031060D02* X057870D01* X055150Y029020D02* X057190Y031060D01* X055150Y028130D02* Y029020D01* X054820Y027800D02* X055150Y028130D01* X052760Y027800D02* X054820D01* X052160Y027200D02* X052760Y027800D01* X052160Y026800D02* Y027200D01* X052300Y026660D02* X052160Y026800D01* X052430Y026660D02* X052300D01* X052623Y026467D02* X052430Y026660D01* X052623Y026190D02* Y026467D01* X052368Y025935D02* X052623Y026190D01* X057820Y031160D02* X058560Y031900D01* X057140Y031160D02* X057820D01* X055050Y029070D02* X057140Y031160D01* X055050Y028180D02* Y029070D01* X054770Y027900D02* X055050Y028180D01* X052320Y027900D02* X054770D01* X051670Y027250D02* X052320Y027900D01* X051670Y026633D02* Y027250D01* X051868Y026435D02* X051670Y026633D01* X058620Y031660D02* X059130D01* X057920Y030960D02* X058620Y031660D01* X057240Y030960D02* X057920D01* X055250Y028970D02* X057240Y030960D01* X055250Y028060D02* Y028970D01* X054890Y027700D02* X055250Y028060D01* X052840Y027700D02* X054890D01* X052368Y027228D02* X052840Y027700D01* X052368Y026935D02* Y027228D01* X057030Y031360D02* X057720D01* X053920Y028250D02* X057030Y031360D01* X053330Y028250D02* X053920D01* X053180Y028100D02* X053330Y028250D01* X052120Y028100D02* X053180D01* X051368Y027348D02* X052120Y028100D01* X051368Y026935D02* Y027348D01* X059180Y031560D02* X059500Y031880D01* X058670Y031560D02* X059180D01* X057970Y030860D02* X058670Y031560D01* X057290Y030860D02* X057970D01* X055350Y028920D02* X057290Y030860D01* X055350Y028010D02* Y028920D01* X054940Y027600D02* X055350Y028010D01* X053220Y027600D02* X054940D01* X052868Y027248D02* X053220Y027600D01* X052868Y026935D02* Y027248D01* X058820Y031260D02* X059330D01* X058120Y030560D02* X058820Y031260D01* X057450Y030560D02* X058120D01* X055650Y028760D02* X057450Y030560D01* X055650Y027850D02* Y028760D01* X055050Y027250D02* X055650Y027850D01* X054270Y027250D02* X055050D01* X054130Y027110D02* X054270Y027250D01* X054130Y026850D02* Y027110D01* X053970Y026690D02* X054130Y026850D01* X053810Y026690D02* X053970D01* X053640Y026520D02* X053810Y026690D01* X053640Y026163D02* Y026520D01* X053868Y025935D02* X053640Y026163D01* X058770Y031360D02* X059280D01* X058070Y030660D02* X058770Y031360D01* X057400Y030660D02* X058070D01* X055550Y028810D02* X057400Y030660D01* X055550Y027910D02* Y028810D01* X055040Y027400D02* X055550Y027910D01* X053930Y027400D02* X055040D01* X053650Y027120D02* X053930Y027400D01* X053650Y026717D02* Y027120D01* X053368Y026435D02* X053650Y026717D01* X058880Y031160D02* X059380D01* X058180Y030460D02* X058880Y031160D01* X057500Y030460D02* X058180D01* X055750Y028710D02* X057500Y030460D01* X055750Y027800D02* Y028710D01* X055380Y027430D02* X055750Y027800D01* X055380Y026947D02* Y027430D01* X055368Y026935D02* X055380Y026947D01* X058930Y031060D02* X059430D01* X058230Y030360D02* X058930Y031060D01* X057550Y030360D02* X058230D01* X055868Y028678D02* X057550Y030360D01* X055868Y026935D02* Y028678D01* X059040Y030860D02* X059530D01* X058340Y030160D02* X059040Y030860D01* X057650Y030160D02* X058340D01* X056550Y029060D02* X057650Y030160D01* X056550Y026117D02* Y029060D01* X056368Y025935D02* X056550Y026117D01* X059140Y030660D02* X059630D01* X058440Y029960D02* X059140Y030660D01* X057750Y029960D02* X058440D01* X057130Y029340D02* X057750Y029960D01* X057130Y026697D02* Y029340D01* X056868Y026435D02* X057130Y026697D01* X059090Y030760D02* X059580D01* X058390Y030060D02* X059090Y030760D01* X057700Y030060D02* X058390D01* X056670Y029030D02* X057700Y030060D01* X056670Y026133D02* Y029030D01* X056868Y025935D02* X056670Y026133D01* X057368Y026935D02* Y028248D01* X057640Y026707D02* Y028370D01* X057368Y026435D02* X057640Y026707D01* X058020Y027087D02* Y028600D01* X057868Y026935D02* X058020Y027087D01* X061440Y031870D02* X062170D01* X058130Y028560D02* X061440Y031870D01* X058130Y026197D02* Y028560D01* X057868Y025935D02* X058130Y026197D01* X057862Y024442D02* X058040Y024620D01* X057868Y024435D02* X057862Y024442D01* X058720Y031460D02* X059230D01* X058020Y030760D02* X058720Y031460D01* X057340Y030760D02* X058020D01* X055450Y028870D02* X057340Y030760D01* X055450Y027960D02* Y028870D01* X054990Y027500D02* X055450Y027960D01* X053390Y027500D02* X054990D01* X053050Y027160D02* X053390Y027500D01* X053050Y026617D02* Y027160D01* X052868Y026435D02* X053050Y026617D01* X058980Y030960D02* X059480D01* X058280Y030260D02* X058980Y030960D01* X057600Y030260D02* X058280D01* X056400Y029060D02* X057600Y030260D01* X056400Y026967D02* Y029060D01* X056368Y026935D02* X056400Y026967D01* X057872Y016939D02* X058123Y016687D01* X057868Y016935D02* X057872Y016939D01* X060365Y024939D02* X060113Y024687D01* X060368Y024935D02* X060365Y024939D01* X061810Y031170D02* X062530D01* X059920Y029280D02* X061810Y031170D01* X059920Y027160D02* Y029280D01* X060050Y027030D02* X059920Y027160D01* X060050Y026617D02* Y027030D01* X059868Y026435D02* X060050Y026617D01* X061710Y031370D02* X062420D01* X059640Y029300D02* X061710Y031370D01* X059640Y027570D02* Y029300D01* X059160Y027090D02* X059640Y027570D01* X059160Y026143D02* Y027090D01* X059368Y025935D02* X059160Y026143D01* X061660Y031470D02* X062370D01* X059540Y029350D02* X061660Y031470D01* X059540Y027650D02* Y029350D01* X059053Y027163D02* X059540Y027650D01* X059053Y026620D02* Y027163D01* X058868Y026435D02* X059053Y026620D01* X061760Y031270D02* X062470D01* X059740Y029250D02* X061760Y031270D01* X059740Y027520D02* Y029250D01* X059390Y027170D02* X059740Y027520D01* X059390Y026957D02* Y027170D01* X059368Y026935D02* X059390Y026957D01* X061610Y031570D02* X062320D01* X058980Y028940D02* X061610Y031570D01* X058980Y027250D02* Y028940D01* X058868Y027138D02* X058980Y027250D01* X058868Y026935D02* Y027138D01* X061550Y031670D02* X062270D01* X058880Y029000D02* X061550Y031670D01* X058880Y027390D02* Y029000D01* X058670Y027180D02* X058880Y027390D01* X058670Y026237D02* Y027180D01* X058368Y025935D02* X058670Y026237D01* X061490Y031770D02* X062220D01* X058760Y029040D02* X061490Y031770D01* X058760Y027440D02* Y029040D01* X058570Y027250D02* X058760Y027440D01* X058570Y026637D02* Y027250D01* X058368Y026435D02* X058570Y026637D01* X060547Y025613D02* X060550Y025610D01* X060368Y025435D02* X060547Y025613D01* X060365Y015939D02* X060616Y016190D01* X060368Y015935D02* X060365Y015939D01* X060372Y026932D02* X060570Y027130D01* X060368Y026935D02* X060372Y026932D01* X060160Y026643D02* Y027260D01* X060368Y026435D02* X060160Y026643D01* X060372Y016432D02* X060120Y016180D01* X060368Y016435D02* X060372Y016432D01* X061365Y026439D02* X061616Y026690D01* X061368Y026435D02* X061365Y026439D01* Y025939D02* X061616Y026190D01* X061368Y025935D02* X061365Y025939D01* X060865Y025439D02* X060613Y025187D01* X060868Y025435D02* X060865Y025439D01* Y025939D02* X061116Y026190D01* X060868Y025935D02* X060865Y025939D01* Y023932D02* X060613Y024183D01* X060868Y023935D02* X060865Y023932D01* X060872Y024432D02* X061123Y024683D01* X060868Y024435D02* X060872Y024432D01* X061372Y016932D02* X061120Y016680D01* X061368Y016935D02* X061372Y016932D01* X060872Y015932D02* X060620Y015680D01* X060868Y015935D02* X060872Y015932D01* Y016932D02* X060620Y016680D01* X060868Y016935D02* X060872Y016932D01* X059365D02* X059113Y017183D01* X059368Y016935D02* X059365Y016932D01* X059377Y024443D02* X059210Y024610D01* X059368Y024435D02* X059377Y024443D01* X059940Y014160D02* X059370D01* X060120Y014340D02* X059940Y014160D01* X060120Y014690D02* Y014340D01* X059872Y014939D02* X060120Y014690D01* X059868Y014935D02* X059872Y014939D01* X059865Y023932D02* X059613Y024183D01* X059868Y023935D02* X059865Y023932D01* X059867Y025933D02* X060070Y025730D01* X059868Y025935D02* X059867Y025933D01* X059862Y024942D02* X060020Y025100D01* X059868Y024935D02* X059862Y024942D01* X059367Y025437D02* X059660Y025730D01* X059368Y025435D02* X059367Y025437D01* X059372Y015439D02* X059623Y015187D01* X059368Y015435D02* X059372Y015439D01* Y015938D02* X059630Y015680D01* X059368Y015935D02* X059372Y015938D01* X059865Y016432D02* X059613Y016683D01* X059868Y016435D02* X059865Y016432D01* X058872Y015939D02* X059123Y015687D01* X058868Y015935D02* X058872Y015939D01* X058857Y025447D02* X059040Y025630D01* X058868Y025435D02* X058857Y025447D01* X058867Y024933D02* X058660Y025140D01* X058868Y024935D02* X058867Y024933D01* X058377Y024427D02* X058540Y024590D01* X058368Y024435D02* X058377Y024427D01* X058362Y024942D02* X058210Y024790D01* X058368Y024935D02* X058362Y024942D01* X058867Y016433D02* X059150Y016150D01* X058868Y016435D02* X058867Y016433D01* X054330Y015170D02* X054550D01* X054065Y015435D02* X054330Y015170D01* X053868Y015435D02* X054065D01* X054382Y024922D02* X054570Y025110D01* X054368Y024935D02* X054382Y024922D01* X056387Y015417D02* X056580Y015610D01* X056368Y015435D02* X056387Y015417D01* X056372Y025432D02* X056560Y025620D01* X056368Y025435D02* X056372Y025432D01* X056872Y024932D02* X056730Y024790D01* X056868Y024935D02* X056872Y024932D01* X057867Y025433D02* X057640Y025660D01* X057868Y025435D02* X057867Y025433D01* X057387Y025453D02* X057160Y025680D01* X057368Y025435D02* X057387Y025453D01* X057372Y024932D02* X057610Y025170D01* X057368Y024935D02* X057372Y024932D01* X056867Y024433D02* X056730Y024570D01* X056868Y024435D02* X056867Y024433D01* X056862Y016428D02* X057020Y016270D01* X056868Y016435D02* X056862Y016428D01* X057367Y016433D02* X057590Y016210D01* X057368Y016435D02* X057367Y016433D01* X056877Y016943D02* X056670Y017150D01* X056868Y016935D02* X056877Y016943D01* X057367Y015933D02* X057570Y015730D01* X057368Y015935D02* X057367Y015933D01* X057370Y014435D02* Y014090D01* X057368Y014435D02* X057370D01* X055862Y026428D02* X055580Y026710D01* X055868Y026435D02* X055862Y026428D01* X055868Y015935D02* X056013Y015790D01* X055845Y016435D02* X055670Y016260D01* X055868Y016435D02* X055845D01* X056357Y015923D02* X056190Y016090D01* X056368Y015935D02* X056357Y015923D01* X056367Y016937D02* X056170Y016740D01* X056368Y016935D02* X056367Y016937D01* X055872Y024938D02* X055680Y025130D01* X055868Y024935D02* X055872Y024938D01* X056377Y024443D02* X056210Y024610D01* X056368Y024435D02* X056377Y024443D01* X055868Y025532D02* X055790Y025610D01* X055868Y025435D02* Y025532D01* X055367Y015937D02* X055170Y015740D01* X055368Y015935D02* X055367Y015937D01* X054862Y016942D02* X054630Y016710D01* X054868Y016935D02* X054862Y016942D01* X055368Y016918D02* X055120Y016670D01* X055368Y016935D02* Y016918D01* X054867Y014937D02* X054660Y014730D01* X054868Y014935D02* X054867Y014937D01* X054872Y016438D02* X055070Y016240D01* X054868Y016435D02* X054872Y016438D01* X054882Y024448D02* X054630Y024700D01* X054868Y024435D02* X054882Y024448D01* X055382Y024422D02* X055170Y024210D01* X055368Y024435D02* X055382Y024422D01* X054877Y024943D02* X055070Y024750D01* X054868Y024935D02* X054877Y024943D01* X055377Y025427D02* X055560Y025610D01* X055368Y025435D02* X055377Y025427D01* X055367Y025937D02* X055540Y026110D01* X055368Y025935D02* X055367Y025937D01* X052862Y016428D02* X053050Y016240D01* X052868Y016435D02* X052862Y016428D01* Y025428D02* X053070Y025220D01* X052868Y025435D02* X052862Y025428D01* X053372Y015438D02* X053560Y015250D01* X053368Y015435D02* X053372Y015438D01* X053785Y015935D02* X053610Y015760D01* X053868Y015935D02* X053785D01* X054372Y016432D02* X054180Y016240D01* X054368Y016435D02* X054372Y016432D01* X053872Y025438D02* X053570Y025740D01* X053868Y025435D02* X053872Y025438D01* X054345Y025435D02* X054110Y025670D01* X054368Y025435D02* X054345D01* X053372Y025938D02* X053060Y026250D01* X053368Y025935D02* X053372Y025938D01* X053603Y025170D02* X054120D01* X053368Y024935D02* X053603Y025170D01* X053868Y024318D02* X053760Y024210D01* X053868Y024435D02* Y024318D01* X053368Y024308D02* X053210Y024150D01* X053368Y024435D02* Y024308D01* X053050Y024280D02* X052910Y024140D01* X053050Y024540D02* Y024280D01* X052868Y024722D02* X053050Y024540D01* X052868Y024935D02* Y024722D01* X054372Y015932D02* X054180Y015740D01* X054368Y015935D02* X054372Y015932D01* X053350Y015210D02* X053160D01* X053470Y015090D02* X053350Y015210D01* X053690Y015090D02* X053470D01* X053760Y015160D02* X053690Y015090D01* X054143Y015160D02* X053760D01* X054368Y014935D02* X054143Y015160D01* X053872Y016938D02* X054070Y016740D01* X053868Y016935D02* X053872Y016938D01* X052872Y015938D02* X053060Y015750D01* X052868Y015935D02* X052872Y015938D01* X053187Y016617D02* X053190Y016620D01* X053368Y016435D02* X053187Y016617D01* X053760Y017327D02* X053372Y016938D01* X053760Y017650D02* Y017327D01* X053368Y016935D02* X053372Y016938D01* X053540Y016770D02* X053372Y016938D01* X052377Y024443D02* X052190Y024630D01* X052368Y024435D02* X052377Y024443D01* X051867Y024933D02* X051690Y025110D01* X051868Y024935D02* X051867Y024933D01* X051872Y024438D02* X051610Y024700D01* X051868Y024435D02* X051872Y024438D01* X052110Y025260D02* Y025550D01* X052050Y025200D02* X052110Y025260D01* X051830Y025200D02* X052050D01* X051730Y025300D02* X051830Y025200D01* X051570Y025300D02* X051730D01* X051480Y025210D02* X051570Y025300D01* X051480Y025047D02* Y025210D01* X051368Y024935D02* X051480Y025047D01* X052362Y025428D02* X052550Y025240D01* X052368Y025435D02* X052362Y025428D01* X051872Y016932D02* X052123Y017183D01* X051868Y016935D02* X051872Y016932D01* X052367Y017437D02* X052603Y017673D01* X052368Y017435D02* X052367Y017437D01* X051872Y016432D02* X051620Y016180D01* X051868Y016435D02* X051872Y016432D01* X051310Y014377D02* Y014100D01* X051368Y014435D02* X051310Y014377D01* X049550Y016617D02* X049868Y016935D01* X049550Y015970D02* Y016617D01* X048852Y015272D02* X049550Y015970D01* X048539Y015272D02* X048852D01* X046170Y021401D02* X046177Y021394D01* X046170Y019790D02* Y021401D01* X046480Y019480D02* X046170Y019790D01* X046480Y018040D02* Y019480D01* X046990Y017530D02* X046480Y018040D01* X047660Y017530D02* X046990D01* X047760Y017430D02* X047660Y017530D01* X047760Y015980D02* Y017430D01* X048240Y015500D02* X047760Y015980D01* X048240Y015070D02* Y015500D01* X048460Y014850D02* X048240Y015070D01* X049430Y014850D02* X048460D01* X049840Y015260D02* X049430Y014850D01* X050693Y015260D02* X049840D01* X050868Y015435D02* X050693Y015260D01* X050750Y014317D02* Y014120D01* X050868Y014435D02* X050750Y014317D01* X050877Y025427D02* X050560Y025110D01* X050868Y025435D02* X050877Y025427D01* X050867Y024433D02* X050680Y024620D01* X050868Y024435D02* X050867Y024433D01* X049697Y026607D02* X049700Y026610D01* X049868Y026435D02* X049697Y026607D01* X049610Y025435D02* Y025440D01* X049868Y025435D02* X049610D01* X050880Y026935D02* Y027200D01* X050868Y026935D02* X050880D01* X050368Y024935D02* X050163Y025140D01* X050387Y024453D02* X050210Y024630D01* X050368Y024435D02* X050387Y024453D01* X050620Y015050D02* Y014720D01* X050530Y015140D02* X050620Y015050D01* X050073Y015140D02* X050530D01* X049868Y014935D02* X050073Y015140D01* X050367Y016433D02* X050130Y016670D01* X050368Y016435D02* X050367Y016433D01* X050275Y014935D02* X050070Y014730D01* X050368Y014935D02* X050275D01* X050372Y016938D02* X050640Y016670D01* X050368Y016935D02* X050372Y016938D01* X050867Y016933D02* X050630Y017170D01* X050868Y016935D02* X050867Y016933D01* X046415Y016945D02* X046370D01* X046415D02* X046669* X046415D01* X046472Y022161D02* Y022280D01* X046177Y021866D02* X046472Y022161D01* Y023200D02* X046210D01* X046472Y023028D02* Y023200D01* X046177D02* X046210D01* X046177Y023441D02* Y023200D01* X046210Y023028D02* Y023200D01* X046217Y023028D02* X046210D01* X046433Y021650D02* X046177Y021394D01* X046552Y021650D02* X046433D01* X046768Y021866D02* X046552Y021650D01* X039320Y014090D02* Y010660D01* X039530Y014300D02* X039320Y014090D01* X039530Y015230D02* Y014300D01* X038993Y027673D02* X039380Y028060D01* X038343Y027673D02* X038993D01* X039520Y027800D02* X039770Y028050D01* X039340Y027800D02* X039520D01* X038820Y027280D02* X039340Y027800D01* X038343Y027280D02* X038820D01* X039040Y030429D02* Y030430D01* X038343Y030429D02* X039040D01* X039287Y017142D02* X039010Y014120* Y010490D01* X038340Y014080D02* Y010990D01* X038680Y011170D02* X038690D01* X038680Y014100D02* Y011170D01* X072350Y013590D02* D15* Y013100D01* X072358Y013598D02* X072350Y013590D01* X066809Y024621D02* X067340Y024090D01* X066748Y024559D02* X066809Y024621D01* X069799Y013989D02* X069840Y014030D01* X069799Y013598D02* Y013989D01* X066809Y019501D02* X067340Y018970D01* X066748Y019441D02* X066809Y019501D01* X067181Y028990D02* X067180D01* X067181Y029248D02* Y028990D01* X072260Y010944D02* X072035Y011169D01* X072260Y010941D02* Y010944D01* X058240Y021276D02* X058402D01* X057983Y021019D02* X058240Y021276D01* Y019346D02* X058402D01* X057983Y019090D02* X058240Y019346D01* Y023205D02* X057983Y022948D01* X058402Y023205D02* X058240D01* Y018165D02* X058402D01* X057983Y017909D02* X058240Y018165D01* Y020094D02* X058402D01* X057983Y019838D02* X058240Y020094D01* Y022024D02* X058402D01* X057983Y021767D02* X058240Y022024D01* X062279Y029130D02* X061984Y029425D01* X063570Y029130D02* X062279D01* X064110Y028590D02* X063570Y029130D01* X064110Y025990D02* Y028590D01* X062830Y024710D02* X064110Y025990D01* X062830Y024470D02* Y024710D01* X062520Y024160D02* X062830Y024470D01* X061593Y024160D02* X062520D01* X061368Y023935D02* X061593Y024160D01* X061603Y025170D02* X061368Y024935D01* X062930Y025170D02* X061603D01* X063880Y026120D02* X062930Y025170D01* X063880Y028370D02* Y026120D01* X063340Y028910D02* X063880Y028370D01* X061318Y028910D02* X063340D01* X060803Y029425D02* X061318Y028910D01* X062115Y022689D02* X062116Y022690D01* X062115Y018689D02* X062116Y018690D01* X062115Y021689D02* X062116Y021690D01* X062115Y019689D02* X062116Y019690D01* X062115Y020689D02* X062116Y020690D01* X062122Y016682D02* X062120Y016680D01* X062115Y023689D02* X062116Y023690D01* X062920Y014120D02* X062790Y013990D01* X062920Y015390D02* Y014120D01* X062372Y015938D02* X062920Y015390D01* X062368Y015935D02* X062372Y015938D01* X061906Y029504D02* Y030370D01* X061984Y029425D02* X061906Y029504D01* X063268Y028362D02* X062850D01* X063650Y027980D02* X063268Y028362D01* X063650Y026270D02* Y027980D01* X063070Y025690D02* X063650Y026270D01* X062123Y025690D02* X063070D01* X061868Y025435D02* X062123Y025690D01* X062811Y028402D02* X062850Y028362D01* X061984Y028402D02* X062811D01* X060803D02* Y029425D01* X060620Y023180D02* X060622Y023182D01* X061116Y022690D02* X061115Y022689D01* Y023182D02* X061113Y023183D01* X061122Y017682D02* X061120Y017680D01* X061115Y020689D02* X061116Y020690D01* X061115Y019689D02* X061116Y019690D01* X061115Y018689D02* X061116Y018690D01* X061115Y021689D02* X061116Y021690D01* X060115Y021689D02* X060116Y021690D01* X060123Y018187D02* X060122Y018189D01* Y018682D02* X060120Y018680D01* X060115Y019689D02* X060116Y019690D01* X060115Y020689D02* X060116Y020690D01* X060115Y022689D02* X060116Y022690D01* X058568Y022024D02* X058813Y022269D01* X058402Y022024D02* X058568D01* Y020094D02* X058813Y020340D01* X058402Y020094D02* X058568D01* Y018165D02* X058813Y018411D01* X058402Y018165D02* X058568D01* Y023205D02* X058402D01* X058813Y023450D02* X058568Y023205D01* Y019346D02* X058813Y019592D01* X058402Y019346D02* X058568D01* Y021276D02* X058813Y021521D01* X058402Y021276D02* X058568D01* X056284Y019346D02* X056118D01* X056530Y019592D02* X056284Y019346D01* Y021276D02* X056530Y021521D01* X056118Y021276D02* X056284D01* Y023205D02* X056118D01* X056530Y023450D02* X056284Y023205D01* Y022024D02* X056530Y022269D01* X056118Y022024D02* X056284D01* Y018165D02* X056118D01* X056530Y018411D02* X056284Y018165D01* Y020094D02* X056118D01* X056530Y020340D02* X056284Y020094D01* X056368Y014030D02* X056370D01* X056368Y014435D02* Y014030D01* X057426Y018165D02* X057260D01* X057672Y018411D02* X057426Y018165D01* X057098D02* X056842Y017909D01* X057260Y018165D02* X057098D01* X057426Y022024D02* X057260D01* X057672Y022269D02* X057426Y022024D01* X057098D02* X056842Y021767D01* X057260Y022024D02* X057098D01* Y020094D02* X057260D01* X056842Y019838D02* X057098Y020094D01* X057426D02* X057672Y020340D01* X057260Y020094D02* X057426D01* Y021276D02* X057260D01* X057672Y021521D02* X057426Y021276D01* X057098D02* X056842Y021019D01* X057260Y021276D02* X057098D01* Y019346D02* X057260D01* X056842Y019090D02* X057098Y019346D01* X057426D02* X057672Y019592D01* X057260Y019346D02* X057426D01* Y023205D02* X057260D01* X057672Y023450D02* X057426Y023205D01* X057098D02* X056842Y022948D01* X057260Y023205D02* X057098D01* X055956Y019346D02* X055700Y019090D01* X056118Y019346D02* X055956D01* Y021276D02* X056118D01* X055700Y021019D02* X055956Y021276D01* Y023205D02* X055700Y022948D01* X056118Y023205D02* X055956D01* Y022024D02* X056118D01* X055700Y021767D02* X055956Y022024D01* Y018165D02* X055700Y017909D01* X056118Y018165D02* X055956D01* X055700Y019838D02* Y019830D01* X055956Y020094D02* X055700Y019838D01* X056118Y020094D02* X055956D01* X055143Y019346D02* X055388Y019592D01* X054976Y019346D02* X055143D01* X054815D02* X054976D01* X054558Y019090D02* X054815Y019346D01* X055143Y023205D02* X055388Y023450D01* X054976Y023205D02* X055143D01* X054815D02* X054976D01* X054558Y022948D02* X054815Y023205D01* Y021276D02* X054558Y021019D01* X054976Y021276D02* X054815D01* X055143D02* X054976D01* X055388Y021521D02* X055143Y021276D01* Y022024D02* X055388Y022269D01* X054976Y022024D02* X055143D01* X054815D02* X054976D01* X054558Y021767D02* X054815Y022024D01* Y018165D02* X054558Y017909D01* X054976Y018165D02* X054815D01* X055143D02* X054976D01* X055388Y018411D02* X055143Y018165D01* Y020094D02* X055388Y020340D01* X054976Y020094D02* X055143D01* X054815D02* X054976D01* X054558Y019838D02* X054815Y020094D01* X054001D02* X053835D01* X054247Y020340D02* X054001Y020094D01* X053673D02* X053417Y019838D01* X053835Y020094D02* X053673D01* Y022024D02* X053835D01* X053417Y021767D02* X053673Y022024D01* X054001D02* X054247Y022269D01* X053835Y022024D02* X054001D01* Y018165D02* X053835D01* X054247Y018411D02* X054001Y018165D01* X053673D02* X053417Y017909D01* X053835Y018165D02* X053673D01* Y019346D02* X053835D01* X053417Y019090D02* X053673Y019346D01* X054001D02* X054247Y019592D01* X053835Y019346D02* X054001D01* X053673Y023205D02* X053835D01* X053417Y022948D02* X053673Y023205D01* X054001D02* X054247Y023450D01* X053835Y023205D02* X054001D01* Y021276D02* X053835D01* X054247Y021521D02* X054001Y021276D01* X053673D02* X053417Y021019D01* X053835Y021276D02* X053673D01* X052575Y031670D02* X052570D01* X052115Y022689D02* X052116Y022690D01* X052115Y023689D02* X052116Y023690D01* X051615Y017682D02* X051613Y017683D01* X052115Y021689D02* X052116Y021690D01* X052115Y020689D02* X052116Y020690D01* X052115Y019689D02* X052116Y019690D01* X052115Y018689D02* X052116Y018690D01* X049425Y031740D02* X049430D01* X051115Y020689D02* X051116Y020690D01* X050115Y020689D02* X050116Y020690D01* X050112Y023692D02* X050110Y023690D01* X051115Y022689D02* X051116Y022690D01* X050115Y022689D02* X050116Y022690D01* X051115Y021689D02* X051116Y021690D01* X051115Y023689D02* X051116Y023690D01* X050613Y017683D02* X050615Y017682D01* X050115Y017689D02* X050116Y017690D01* X050115Y019689D02* X050116Y019690D01* X050115Y018689D02* X050116Y018690D01* X051115Y019689D02* X051116Y019690D01* X051115Y018689D02* X051116Y018690D01* X047419Y015961D02* X047520Y015860D01* X047260Y015961D02* X047419D01* X047547Y016945D02* X047559Y016957D01* X047260Y016945D02* X047547D01* X047186Y021264D02* X047559D01* X047056Y021394D02* X047186Y021264D01* X046768Y021394D02* X047056D01* X047550Y015272D02* Y015270D01* X047949Y015272D02* X047550D01* X047030Y023441D02* Y023440D01* X046768Y023441D02* X047030D01* X046113Y026720D02* X046110D01* X046113Y027172D02* Y026720D01* X047030Y023028D02* Y023030D01* X046728Y023028D02* X047030D01* X046720D02* X046728D01* X046720Y022780D02* Y023028D01* X046560Y022620D02* X046720Y022780D01* X046380Y022620D02* X046560D01* X046217Y022457D02* X046380Y022620D01* X046217Y022280D02* Y022457D01* X046113Y024750D02* X046110D01* X046113Y025222D02* Y024750D01* X046363D02* X046113D01* X046363Y025222D02* Y024750D01* X045863D02* X046110D01* X045863Y025222D02* Y024750D01* X046519Y015961D02* X046340Y016140D01* X046669Y015961D02* X046519D01* X043520Y024840D02* Y025114* Y024840D01* X043800Y018366D02* Y018820D01* X043560Y018126D02* X043800Y018366D01* X044110Y024840D02* Y025114* Y024840D01* X044700Y018166D02* Y018740D01* X044660Y018126D02* X044700Y018166D01* X038343Y030823D02* X039500D01* X039070Y028854D02* Y028850D01* X038343Y028854D02* X039070D01* X039010Y026492D02* Y026490D01* X038343Y026492D02* X039010D01* X039500Y026886D02* Y026905D01* X038343Y026886D02* X039500D01* X039003Y028067D02* X039010Y028060D01* X038343Y028067D02* X039003D01* X039040Y029642D02* Y029640D01* X038343Y029642D02* X039040D01* X039830Y030640D02* Y030690D01* X039647Y030823D02* X039830Y030640D01* X039500Y030823D02* X039647D01* X039500Y030795D02* Y030823D01* X039685Y026905D02* X039890Y027110D01* X039500Y026905D02* X039685D01* X039287Y020397D02* X039140Y020250D01* X039287Y020567D02* Y020397D01* Y015183D02* X039120Y015350D01* X039287Y014976D02* Y015183D01* Y016367D02* X039130Y016210D01* X039287Y016551D02* Y016367D01* X039850Y030360D02* Y030330D01* X039695Y030205D02* X039850Y030360D01* X039500Y030205D02* X039695D01* X039870Y027420D02* Y027430D01* X039795Y027495D02* X039870Y027420D01* X039500Y027495D02* X039795D01* X038370Y017142D02* Y017140D01* X038697Y017142D02* X038370D01* X038697Y020403D02* X038850Y020250D01* X038697Y020567D02* Y020403D01* Y016363D02* X038840Y016220D01* X038697Y016551D02* Y016363D01* X038460Y016551D02* X038697D01* Y015227D02* X038820Y015350D01* X038697Y014976D02* Y015227D01* X069500Y014386D02* D14* Y014700D01* X069504Y014386D02* X069500D01* X072416Y015600D02* Y015370D01* X072610Y015600D02* X072416D01* Y015370D02* Y015360D01* Y015140D02* X072610D01* X072416Y015360D02* Y015140D01* X060097Y016707D02* X060100Y016710D01* X059868Y016935D02* X060097Y016707D01* X054632Y026172D02* X054630Y026170D01* X054868Y025935D02* X054632Y026172D01* X050887Y015953D02* X050650Y016190D01* X050868Y015935D02* X050887Y015953D01* X050372Y015432D02* X050620Y015680D01* X050368Y015435D02* X050372Y015432D01* X044990Y024234D02* Y023980D01* X044996Y024228D02* X044990Y024234D01* X044996Y024546D02* Y024228D01* X045113Y024663D02* X044996Y024546D01* X045113Y025222D02* Y024663D01* X045590Y024530D02* Y024225D01* X045363Y024757D02* X045590Y024530D01* X045363Y025222D02* Y024757D01* X045590Y023980D02* Y024225D01* X045587Y024228D02* X045590Y024225D01* X044110Y025705D02* X044863D01* X043520D02* X044110D01* X044863Y027172D02* Y025705D01* Y025222D02* Y025705D01* X071316Y016314D02* D17* Y015710D01* X071276Y016354D02* X071316Y016314D01* X071130Y015710D02* X071316D01* X070272Y015232D02* X070606D01* X070213Y015173D02* X070272Y015232D01* X069898Y015173D02* X070213D01* X071186Y015240D02* X071306Y015360D01* X070614Y015240D02* X071186D01* X070606Y015232D02* X070614Y015240D01* X071306Y015214D02* Y015360D01* X071800Y014720D02* X071306Y015214D01* Y015360D02* X071316Y015370D01* X071001Y014210D02* X071170Y014379D01* X071001Y013819D02* Y014210D01* X071320Y013500D02* X071001Y013819D01* X071320Y012880D02* Y013500D01* X072078Y012122D02* X071320Y012880D01* X072260Y012122D02* X072078D01* X071177Y014386D02* X071170Y014379D01* X071316Y015136D02* Y015370D01* X071170Y014990D02* X071316Y015136D01* X071170Y014379D02* Y014990D01* X071316Y015370D02* Y015710D01* X072420Y015364D02* Y015620* Y015364D01* X072063Y015977D02* X072420Y015620D01* X072063Y016354D02* Y015977D01* X051368Y022435D02* X051115Y022689D01* X051368Y019435D02* X051115Y019689D01* X051368Y021435D02* X051115Y021689D01* X051368Y018435D02* X051115Y018689D01* X051368Y020435D02* X051115Y020689D01* X051368Y023435D02* X051115Y023689D01* X051368Y024435D02* X051120Y024683D01* X051368Y017935D02* X051117Y017683D01* X051368Y016935D02* X051117Y016683D01* X051368Y021935D02* X051120Y022183D01* X051368Y019935D02* X051120Y020183D01* X051368Y020935D02* X051120Y021183D01* X051368Y022935D02* X051120Y023183D01* X051368Y015435D02* X051117Y015183D01* X060368Y021435D02* X060115Y021689D01* X060368Y023435D02* X060622Y023182D01* X060368Y017435D02* X059868Y017935D01* X060122Y018189D02* X060368Y018435D01* X060122Y018682* X060368Y019435D02* X060115Y019689D01* X060368Y020435D02* X060115Y020689D01* X060368Y022435D02* X060115Y022689D01* X060368Y023935D02* X060620Y023683D01* X060368Y017935D02* X060620Y017683D01* X060368Y020935D02* X060120Y021183D01* X060368Y019935D02* X060120Y020183D01* X060368Y016935D02* X060120Y017183D01* X060368Y022935D02* X060120Y023183D01* X060368Y025935D02* X060617Y026183D01* X060368Y021935D02* X060120Y022183D01* X060368Y024435D02* X060617Y024683D01* X060368Y018935D02* X060120Y019183D01* X060368Y015435D02* X060120Y015683D01* X061620Y022683D02* X061616Y022680D01* X061868Y022435D02* X061620Y022683D01* X061368Y022935D02* X061620Y022683D01* X061617Y025683D02* X061620Y025680D01* X061368Y025435D02* X061617Y025683D01* X061868Y025935D02* X061617Y025683D01* Y024683D02* X061620Y024680D01* X061368Y024435D02* X061617Y024683D01* X061868Y024935D02* X061617Y024683D01* X062120Y019183D02* X062116Y019180D01* X062368Y018935D02* X062120Y019183D01* X061868Y019435D02* X062120Y019183D01* X062563Y014241D02* X062564Y014242D01* X062368Y014435D02* X062563Y014241D01* X061868Y017435D02* X062122Y017182D01* X062368Y016935D02* X062122Y017182D01* X062120Y020183D02* X062116Y020180D01* X062368Y019935D02* X062120Y020183D01* X061868Y020435D02* X062120Y020183D01* X061868Y027200D02* X061870D01* X061868Y026935D02* Y027200D01* X062120Y021183D02* X062116Y021180D01* X062368Y020935D02* X062120Y021183D01* X061868Y021435D02* X062120Y021183D01* X062801Y023935D02* X062914Y023823D01* X062368Y023935D02* X062801D01* X062120Y023183D02* X062116Y023180D01* X062368Y022935D02* X062120Y023183D01* X061868Y023435D02* X062120Y023183D01* Y018183D02* X062116Y018180D01* X062368Y017935D02* X062120Y018183D01* X061868Y018435D02* X062120Y018183D01* X062181Y022122D02* X062182Y022124D01* X062368Y021935D02* X062181Y022122D01* X062643Y014935D02* Y014937D01* X062368Y014935D02* X062643D01* X062555Y024622D02* X062557Y024621D01* X062368Y024435D02* X062555Y024622D01* X061868Y022935D02* X062115Y022689D01* X062368Y022435D02* X062115Y022689D01* X061868Y018935D02* X062115Y018689D01* X062368Y018435D02* X062115Y018689D01* X062368Y021435D02* X062115Y021689D01* X061868Y021935D02* X062115Y021689D01* X061868Y019935D02* X062115Y019689D01* X062368Y019435D02* X062115Y019689D01* X061868Y020935D02* X062115Y020689D01* X062368Y020435D02* X062115Y020689D01* X061868Y016935D02* X062122Y016682D01* X062368Y016435D02* X062122Y016682D01* X061868Y023935D02* X062115Y023689D01* X062368Y023435D02* X062115Y023689D01* X061868Y017935D02* X062368Y017435D01* X061368Y023435D02* X061115Y023182D01* X060622D02* X060868Y022935D01* X061368Y022435D02* X061115Y022689D01* X060868Y022935* X061115Y023182* X061368Y017435D02* X061122Y017682D01* X060868Y017935D02* X061122Y017682D01* X061368Y020435D02* X061115Y020689D01* X060868Y020935D02* X061115Y020689D01* X061368Y019435D02* X061115Y019689D01* X060868Y019935D02* X061115Y019689D01* X061368Y018435D02* X061115Y018689D01* X060868Y018935D02* X061115Y018689D01* X061368Y021435D02* X061115Y021689D01* X060868Y021935D02* X061115Y021689D01* X060868Y023435D02* X060620Y023683D01* X060616Y023680* X060868Y017435D02* X060620Y017683D01* X060616Y017680* X060868Y020435D02* X061120Y020183D01* X061368Y019935D02* X061120Y020183D01* X061116Y020180* X061368Y020935D02* X061120Y021183D01* X060868Y021435D02* X061120Y021183D01* X061116Y021180* X061368Y017935D02* X061120Y018183D01* X060868Y018435D02* X061120Y018183D01* X061116Y018180* X060868Y014935D02* X061120Y014683D01* X061368Y014435D02* X061120Y014683D01* X061116Y014680* X060868Y026435D02* X060617Y026183D01* X060620Y026180* X060868Y024935D02* X060617Y024683D01* X060620Y024680* X060868Y019435D02* X061120Y019183D01* X061368Y018935D02* X061120Y019183D01* X061116Y019180* X060868Y022435D02* X061120Y022183D01* X061368Y021935D02* X061120Y022183D01* X061116Y022180* X061368Y015935D02* X061123Y016180D01* X060868Y016435D02* X061123Y016180D01* X059120Y016683D02* X059116Y016680D01* X059368Y016435D02* X059120Y016683D01* X058868Y016935D02* X059120Y016683D01* X059868Y021935D02* X060115Y021689D01* X059868Y018935D02* X060122Y018682D01* X059868Y017935D02* X060122Y018189D01* X059868Y019935D02* X060115Y019689D01* X059868Y020935D02* X060115Y020689D01* X059868Y022935D02* X060115Y022689D01* X059603Y018435D02* Y018437D01* X059868Y018435D02* X059603D01* X059868Y021435D02* X060120Y021183D01* X060116Y021180* X059868Y020435D02* X060120Y020183D01* X060116Y020180* X059868Y014435D02* X059620Y014683D01* X059368Y014935D02* X059620Y014683D01* X059616Y014680* X059868Y017435D02* X060120Y017183D01* X060116Y017180* X059868Y023435D02* X060120Y023183D01* X060116Y023180* X059368Y026435D02* X059617Y026683D01* X059868Y026935D02* X059617Y026683D01* X059620Y026680* X059868Y022435D02* X060120Y022183D01* X060116Y022180* X059868Y019435D02* X060120Y019183D01* X060116Y019180* X059868Y025435D02* X059617Y025183D01* X059368Y024935D02* X059617Y025183D01* X059620Y025180* X059868Y015935D02* X060120Y015683D01* X060116Y015680* X058368Y027200D02* X058370D01* X058368Y026935D02* Y027200D01* X058868Y025935D02* X058617Y025683D01* X058368Y025435D02* X058617Y025683D01* X058620Y025680* X058368Y014160D02* X058370D01* X058368Y014435D02* Y014160D01* X058868Y024170D02* X058866D01* X058868Y024435D02* Y024170D01* X058368Y015935D02* X058620Y015683D01* X058868Y015435D02* X058620Y015683D01* X058616Y015680* X054368Y025935D02* X054120Y026183D01* X054368Y024435D02* X054120Y024683D01* X054368Y017200D02* X054370D01* X054368Y016935D02* Y017200D01* Y015435D02* X054617Y015683D01* X056368Y016435D02* X056620Y016183D01* X056368Y026435D02* X056117Y026183D01* X056368Y024935D02* X056617Y025183D01* X056368Y014935D02* X056620Y014683D01* X056868Y014435D02* X056620Y014683D01* X056616Y014680* X056868Y025435D02* X056617Y025183D01* X056620Y025180* X057868Y026435D02* X057617Y026183D01* X057368Y025935D02* X057617Y026183D01* X057620Y026180* X057868Y014935D02* X057620Y015183D01* X057368Y015435D02* X057620Y015183D01* X057616Y015180* X057368Y024435D02* X057617Y024683D01* X057868Y024935D02* X057617Y024683D01* X057620Y024680* X056868Y027200D02* X056870D01* X056868Y026935D02* Y027200D01* Y015935D02* X056620Y016183D01* X056616Y016180* X057868Y016435D02* X057620Y016683D01* X057368Y016935D02* X057620Y016683D01* X057616Y016680* X055368Y014935D02* X055617Y015183D01* X055868Y015435D02* X055617Y015183D01* X055620Y015180* X055368Y016435D02* X055617Y016683D01* X055868Y016935D02* X055617Y016683D01* X055620Y016680* X055868Y024170D02* X055866D01* X055868Y024435D02* Y024170D01* X056117Y026183D02* X056120Y026180D01* X055868Y025935D02* X056117Y026183D01* X054868Y014160D02* X054870D01* X054868Y014435D02* Y014160D01* X054617Y015683D02* X054620Y015680D01* X054868Y015935D02* X054617Y015683D01* X055120Y026683D02* X055116Y026680D01* X054868Y026935D02* X055120Y026683D01* X055368Y026435D02* X055120Y026683D01* Y025183D02* X055116Y025180D01* X054868Y025435D02* X055120Y025183D01* X055368Y024935D02* X055120Y025183D01* X052868Y017200D02* X052870D01* X052868Y016935D02* Y017200D01* Y015435D02* X052617Y015183D01* X052868Y024435D02* X052620Y024683D01* X052868Y025935D02* X053120Y025683D01* X053868Y026435D02* X054120Y026183D01* X054116Y026180* X053368Y025435D02* X053120Y025683D01* X053116Y025680* X053868Y024935D02* X054120Y024683D01* X054116Y024680* X053868Y014935D02* X053617Y014683D01* X053368Y014435D02* X053617Y014683D01* X053620Y014680* X053368Y027158D02* X053450Y027240D01* X053368Y026935D02* Y027158D01* X053868Y016435D02* X053617Y016183D01* X053368Y015935D02* X053617Y016183D01* X053620Y016180* X051868Y022935D02* X052115Y022689D01* X052368Y022435D02* X052115Y022689D01* X052368Y023435D02* X052115Y023689D01* X051868Y023935D02* X052115Y023689D01* X051868Y017935D02* X051615Y017682D01* X051368Y017435D02* X051615Y017682D01* X052368Y021435D02* X052115Y021689D01* X051868Y021935D02* X052115Y021689D01* X052368Y020435D02* X052115Y020689D01* X051868Y020935D02* X052115Y020689D01* X052368Y019435D02* X052115Y019689D01* X051868Y019935D02* X052115Y019689D01* X051868Y018935D02* X052115Y018689D01* X052368Y018435D02* X052115Y018689D01* X052633Y022935D02* Y022933D01* X052368Y022935D02* X052633D01* X052368Y021935D02* X052120Y022183D01* X051868Y022435D02* X052120Y022183D01* X052116Y022180* X051868Y019435D02* X052120Y019183D01* X052368Y018935D02* X052120Y019183D01* X052116Y019180* X051368Y025935D02* X051620Y025683D01* X051868Y025435D02* X051620Y025683D01* X051616Y025680* X051868Y015935D02* X052117Y016183D01* X052368Y016435D02* X052117Y016183D01* X052120Y016180* Y026187D02* X052116Y026190D01* X052368Y026435D02* X052120Y026187D01* X052368Y024935D02* X052620Y024683D01* X052616Y024680* X052368Y014935D02* X052617Y015183D01* X052620Y015180* X051868Y027158D02* X051950Y027240D01* X051868Y026935D02* Y027158D01* X051368Y023935D02* X051620Y023683D01* X051868Y023435D02* X051620Y023683D01* X051616Y023680* X051868Y014100D02* X051870D01* X051868Y014435D02* Y014100D01* X052368Y020935D02* X052120Y021183D01* X051868Y021435D02* X052120Y021183D01* X052116Y021180* X052368Y017935D02* X052117Y017683D01* X051868Y017435D02* X052117Y017683D01* X052120Y017680* X051868Y020435D02* X052120Y020183D01* X052368Y019935D02* X052120Y020183D01* X052116Y020180* X051868Y018435D02* X051620Y018683D01* X051368Y018935D02* X051620Y018683D01* X051616Y018680* X050868Y020935D02* X051115Y020689D01* X050368Y020435D02* X050115Y020689D01* X049868Y020935D02* X050115Y020689D01* X049868Y021935D02* X050368Y021435D01* Y023435D02* X050112Y023692D01* X049868Y023935D02* X050112Y023692D01* X050868Y022935D02* X051115Y022689D01* X050368Y022435D02* X050115Y022689D01* X049868Y022935D02* X050115Y022689D01* X050868Y021935D02* X051115Y021689D01* X050868Y023935D02* X051115Y023689D01* X050868Y024935D02* X051120Y024683D01* X051116Y024680* X049868Y022435D02* X050120Y022183D01* X050368Y021935D02* X050120Y022183D01* X050116Y022180* X049868Y025935D02* X050120Y025683D01* X050368Y025435D02* X050120Y025683D01* X050116Y025680* X050868Y026435D02* X050620Y026683D01* X050368Y026935D02* X050620Y026683D01* X050616Y026680* X050868Y022435D02* X051120Y022183D01* X051116Y022180* X049868Y023435D02* X050120Y023183D01* X050368Y022935D02* X050120Y023183D01* X050116Y023180* X050868Y021435D02* X051120Y021183D01* X051116Y021180* X049868Y027158D02* X049786Y027240D01* X049868Y026935D02* Y027158D01* X050868Y023435D02* X051120Y023183D01* X051116Y023180* X050368Y020935D02* X050120Y021183D01* X049868Y021435D02* X050120Y021183D01* X050116Y021180* X049868Y024435D02* X050120Y024183D01* X050368Y023935D02* X050120Y024183D01* X050116Y024180* X049868Y017935D02* X050115Y017689D01* X050868Y017935D02* X050615Y017682D01* X050368Y017435* X050115Y017689* X049868Y019935D02* X050115Y019689D01* X050368Y019435D02* X050115Y019689D01* X050368Y018435D02* X050115Y018689D01* X049868Y018935D02* X050115Y018689D01* X050868Y019935D02* X051115Y019689D01* X050868Y018935D02* X051115Y018689D01* X050868Y017435D02* X051117Y017683D01* X051120Y017680* X050868Y016435D02* X051117Y016683D01* X051120Y016680* X049868Y018435D02* X050120Y018183D01* X050368Y017935D02* X050120Y018183D01* X050116Y018180* X050868Y020435D02* X051120Y020183D01* X051116Y020180* X050055Y019248D02* X050054Y019246D01* X049868Y019435D02* X050055Y019248D01* Y020248D02* X050054Y020246D01* X049868Y020435D02* X050055Y020248D01* X050868Y018435D02* X050620Y018683D01* X050368Y018935D02* X050620Y018683D01* X050616Y018680* X050868Y019435D02* X050620Y019683D01* X050368Y019935D02* X050620Y019683D01* X050616Y019680* X049868Y015435D02* X050117Y015683D01* X050368Y015935D02* X050117Y015683D01* X050120Y015680* X050868Y014935D02* X051117Y015183D01* X051120Y015180* X062365Y024939D02* D11* X062113Y024687D01* X062368Y024935D02* X062365Y024939D01* X062368Y025435D02* X062690D01* D23* X044613Y027172D03* X044863D03* X045113D03* X045363D03* X045613D03* X045863D03* X046113D03* X046363D03* Y025222D03* X046113D03* X045863D03* X045613D03* X045363D03* X045113D03* X044863D03* X044613D03* D60* X067181Y029248D03* Y029839D03* D59* X072358Y014386D03* Y013598D03* X071768Y014386D03* X071177D03* D60* X072260Y012713D03* Y012122D03* X070606Y014642D03* Y015232D03* X072260Y010941D03* Y011531D03* D59* X069799Y013598D03* X069209D03* X047949Y015272D03* X048539D03* X039287Y014976D03* X038697D03* X039287Y016551D03* X038697D03* X039287Y020567D03* X038697D03* X039287Y019858D03* X038697D03* D60* X039500Y027495D03* Y026905D03* D59* X039287Y017142D03* X038697D03* X039287D03* X039878D03* X038697Y019268D03* X039287D03* Y018677D03* X038697D03* X046177Y021394D03* X046768D03* X047260Y016945D03* X046669D03* X046177Y023441D03* X046768D03* X045587Y024228D03* X044996D03* X046669Y015961D03* X047260D03* X046177Y021866D03* X046768D03* X044209Y012024D03* X043618D03* D60* X044110Y025114D03* Y025705D03* D59* X042732Y012811D03* X042142D03* X044209D03* X043618D03* D60* X043520Y025705D03* Y025114D03* X039500Y030205D03* Y030795D03* D52* X038343Y031610D03* Y031217D03* Y030823D03* Y030429D03* Y030035D03* Y029642D03* Y029248D03* Y028854D03* Y028461D03* Y028067D03* Y027673D03* Y027280D03* Y026886D03* Y026492D03* Y026098D03* Y025705D03* Y025311D03* Y024917D03* Y024524D03* D79* X072416Y015370D03* X071316D03* D78* X045961Y010999D03* D79* X044660Y018126D03* X043560D03* D78* X041256Y015822D03* Y014722D03* D48* X046728Y022280D03* X046472D03* X046217D03* Y023028D03* X046472D03* X046728D03* D63* X040941Y011866D03* X041846D03* X042752D03* D67* X072063Y016354D03* X071276D03* D68* X054976Y021276D03* Y020094D03* X056118Y021276D03* Y020094D03* X054976Y019346D03* Y018165D03* X056118Y023205D03* Y022024D03* X054976Y023205D03* Y022024D03* X056118Y019346D03* Y018165D03* X058402Y019346D03* Y018165D03* Y021276D03* Y020094D03* D69* X060803Y028402D03* X061984D03* X060803Y029425D03* X061984D03* D68* X058402Y023205D03* Y022024D03* D71* X061906Y030370D03* X063087D03* D70* X062850Y028362D03* Y029543D03* D68* X057260Y021276D03* Y020094D03* Y019346D03* Y018165D03* Y023205D03* Y022024D03* X053835Y023205D03* Y022024D03* Y021276D03* Y020094D03* Y019346D03* Y018165D03* D47* X070419Y010205D03* X070675D03* X070931D03* X071187D03* X071443D03* X071699D03* X071955D03* X072211D03* X072467D03* X072722D03* D84* X066748Y024559D03* Y026260D03* Y019441D03* Y021142D03* D85* X070094Y030291D03* D86* X068283Y026787D03* X072299D03* X068283Y021669D03* X072299D03* D56* X069504Y014386D03* X069110Y015173D03* X069898D03* M00* M02* gerbv-2.7.0/example/jj/l1-1.grb0000644000175000017500000000634413421555714015727 0ustar carstencarstenG04 Visula Post-processor * G04 Date : Thu Aug 29 14:50:26 2002 * G04 File name : /disk1/jobs/ekf/c/cd1/rev0/postpr/spool/l1.off * %FSTAX24Y24*% %MOIN*% %SFA1.000B1.000*% %SRX1Y1I0.000J0.000*% %IPPOS*% G75* %ADD10C,0.0050*% %ADD11C,0.0070*% %ADD12C,0.0080*% %ADD13C,0.0080*% %ADD14C,0.0100*% %ADD15C,0.0120*% %ADD16C,0.0160*% %ADD17C,0.0200*% %ADD18C,0.0240*% %ADD19C,0.0550*% %ADD20C,0.0870*% %ADD21R,0.0550X0.0550*% %ADD22R,0.0980X0.0980*% %ADD23O,0.0120X0.0720*% %ADD24R,0.0050X0.0002*% %ADD25R,0.0730X0.0007*% %ADD26R,0.0050X0.0012*% %ADD27R,0.0050X0.0022*% %ADD28R,0.0050X0.0032*% %ADD29R,0.0016X0.0050*% %ADD30R,0.0147X0.0050*% %ADD31R,0.0149X0.0050*% %ADD32R,0.0177X0.0050*% %ADD33R,0.0203X0.0050*% %ADD34R,0.0587X0.0050*% %ADD35R,0.0050X0.0052*% %ADD36R,0.0609X0.0068*% %ADD37R,0.0050X0.0072*% %ADD38R,0.0090X0.0080*% %ADD39R,0.0050X0.0082*% %ADD40R,0.0050X0.0093*% %ADD41R,0.0120X0.0093*% %ADD42R,0.0940X0.0102*% %ADD43R,0.0320X0.0108*% %ADD44R,0.0068X0.0120*% %ADD45R,0.0149X0.0120*% %ADD46R,0.0504X0.0120*% %ADD47R,0.0150X0.0620*% %ADD48R,0.0160X0.0240*% %ADD49R,0.0050X0.0182*% %ADD50R,0.1030X0.0200*% %ADD51R,0.0120X0.0212*% %ADD52R,0.0920X0.0240*% %ADD53R,0.0050X0.0252*% %ADD54R,0.0120X0.0282*% %ADD55R,0.0050X0.0292*% %ADD56R,0.0300X0.0350*% %ADD57R,0.0050X0.0312*% %ADD58R,0.0058X0.0320*% %ADD59R,0.0320X0.0320*% %ADD60R,0.0320X0.0320*% %ADD61R,0.0050X0.0332*% %ADD62R,0.0007X0.0350*% %ADD63R,0.0350X0.0500*% %ADD64R,0.0050X0.0364*% %ADD65R,0.0050X0.0372*% %ADD66R,0.0050X0.0392*% %ADD67R,0.0400X0.0510*% %ADD68R,0.0630X0.0400*% %ADD69R,0.0400X0.0630*% %ADD70R,0.0980X0.0400*% %ADD71R,0.0400X0.0980*% %ADD72R,0.0050X0.0422*% %ADD73R,0.0050X0.0432*% %ADD74R,0.0050X0.0472*% %ADD75R,0.0050X0.0522*% %ADD76R,0.0050X0.0582*% %ADD77R,0.0050X0.0622*% %ADD78R,0.0940X0.0630*% %ADD79R,0.0630X0.0940*% %ADD80R,0.0050X0.0672*% %ADD81R,0.0050X0.0692*% %ADD82R,0.0050X0.0792*% %ADD83R,0.0053X0.0980*% %ADD84R,0.1420X0.1180*% %ADD85R,0.2760X0.1380*% %ADD86R,0.1380X0.2760*% G75* G36* G01X072847Y028362D02* X072654D01* Y028677* X069150* Y024228* X072847* Y028362* G37* G36* G01X050291Y023756D02* X049819Y024228D01* X049701* Y025291* X049425* Y025961* X047732* Y024583* X047299* Y023874* X047732* Y023008* X047339* Y022299* X047732* Y021433* X047339* Y020724* X047732* Y019858* X047339* Y019150* X047732* Y018283* X047339* Y017654* X047693* X047850Y017496* Y016000* X048047Y015803* X049150* Y016787* X049504* X049858Y017142* X050409* Y017260* X051276Y018126* X051433* X051551Y018008* Y017850* X051079Y017378* Y017142* X051433* Y017260* X052299Y018126* X052535* X052811Y017850* Y017417* X053559* Y017732* X053677Y017850* X053874* X053992Y017732* Y017417* X059661* Y017496* X059780Y017614* X059976* X060449Y017142* X061433* X063638Y014937* Y013756* X064622* Y011236* X067732* X068283Y011787* Y013480* X067929Y013835* Y014504* X068283Y014858* Y018480* X067142* Y018835* X067535* Y020213* X065961* Y023598* X067535* Y025331* X065961* Y027969* X064701* Y030921* X062339* Y029307* X063756* X064307Y028756* Y025921* X063087Y024701* Y023205* X062732* Y023323* X062024Y024031* X061748* X061472Y023756* X061079* Y023362* X060961Y023244* X060764* X060252Y023756* X059701* X059465Y023992* X052732* Y024228* X050370* Y024189* X050567Y023992* Y023874* X050449Y023756* X050291* G37* M00* M02* gerbv-2.7.0/example/hellboard/0000755000175000017500000000000013421555714016103 5ustar carstencarstengerbv-2.7.0/example/hellboard/hellboard.pcb0000644000175000017500000005406113421555714020533 0ustar carstencarstenPCB["" 400000 400000] Grid[10000.000000 0 0 0] Cursor[0 0 0.000000] PolyArea[200000000.000000] Thermal[0.500000] DRC[1 1 1 1 1 1] Flags("nameonpcb,uniquename,clearnew,snappin") Groups("1,c:2:3:4,s:5:6:7:8") Styles["Signal,1000,3600,2000,1000:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"] Via[5050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[5250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[5450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[5650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[5850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[6050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[6250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[6450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[6650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[6850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[7050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[7250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[7450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[7650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[7850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[8050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[8250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[8450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[8650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[8850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[25050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[25250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[25450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[25650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[25850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[26050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[26250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[26450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[26650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[26850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[27050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[27250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[27450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[27650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[27850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[28050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[28250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[28450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[28650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[28850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[45050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[45250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[45450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[45650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[45850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[46050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[46250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[46450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[46650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[46850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[47050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[47250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[47450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[47650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[47850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[48050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[48250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[48450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[48650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[48850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[65050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[65250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[65450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[65650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[65850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[66050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[66250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[66450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[66650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[66850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[67050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[67250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[67450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[67650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[67850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[68050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[68250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[68450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[68650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[68850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[85050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[85250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[85450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[85650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[85850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[86050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[86250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[86450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[86650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[86850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[87050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[87250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[87450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[87650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[87850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[88050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[88250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[88450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[88650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[88850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[105050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[105250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[105450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[105650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[105850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[106050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[106250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[106450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[106650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[106850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[107050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[107250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[107450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[107650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[107850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[108050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[108250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[108450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[108650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[108850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[125050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[125250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[125450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[125650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[125850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[126050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[126250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[126450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[126650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[126850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[127050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[127250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[127450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[127650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[127850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[128050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[128250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[128450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[128650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[128850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[145050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[145250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[145450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[145650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[145850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[146050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[146250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[146450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[146650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[146850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[147050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[147250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[147450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[147650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[147850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[148050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[148250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[148450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[148650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[148850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[165050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[165250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[165450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[165650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[165850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[166050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[166250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[166450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[166650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[166850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[167050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[167250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[167450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[167650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[167850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[168050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[168250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[168450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[168650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[168850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[185050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[185250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[185450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[185650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[185850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[186050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[186250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[186450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[186650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[186850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[187050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[187250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[187450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[187650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[187850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[188050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[188250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[188450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[188650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[188850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[205050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[205250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[205450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[205650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[205850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[206050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[206250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[206450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[206650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[206850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[207050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[207250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[207450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[207650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[207850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[208050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[208250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[208450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[208650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[208850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[225050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[225250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[225450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[225650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[225850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[226050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[226250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[226450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[226650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[226850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[227050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[227250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[227450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[227650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[227850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[228050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[228250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[228450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[228650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[228850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[245050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[245250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[245450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[245650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[245850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[246050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[246250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[246450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[246650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[246850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[247050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[247250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[247450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[247650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[247850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[248050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[248250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[248450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[248650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[248850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[265050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[265250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[265450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[265650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[265850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[266050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[266250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[266450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[266650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[266850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[267050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[267250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[267450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[267650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[267850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[268050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[268250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[268450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[268650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[268850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[285050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[285250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[285450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[285650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[285850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[286050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[286250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[286450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[286650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[286850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[287050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[287250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[287450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[287650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[287850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[288050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[288250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[288450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[288650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[288850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[305050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[305250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[305450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[305650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[305850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[306050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[306250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[306450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[306650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[306850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[307050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[307250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[307450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[307650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[307850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[308050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[308250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[308450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[308650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[308850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[325050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[325250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[325450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[325650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[325850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[326050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[326250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[326450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[326650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[326850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[327050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[327250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[327450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[327650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[327850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[328050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[328250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[328450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[328650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[328850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[345050 5000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[345250 25000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[345450 45000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[345650 65000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[345850 85000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[346050 105000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[346250 125000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[346450 145000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[346650 165000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[346850 185000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[347050 205000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[347250 225000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[347450 245000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[347650 265000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[347850 285000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[348050 305000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[348250 325000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[348450 345000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[348650 365000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Via[348850 385000 6000 2000 0 2800 "" "thermal(0X,1t,2t,3)"] Layer(1 "component") ( Polygon("clearpoly") ( [0 0] [400000 0] [400000 400000] [0 400000] ) ) Layer(2 "ground") ( Polygon("clearpoly") ( [0 0] [400000 0] [400000 400000] [0 400000] ) ) Layer(3 "power") ( Polygon("clearpoly") ( [0 0] [400000 0] [400000 400000] [0 400000] ) ) Layer(4 "solder") ( Polygon("clearpoly") ( [0 0] [400000 0] [400000 400000] [0 400000] ) ) Layer(5 "signal1") ( ) Layer(6 "signal2") ( ) Layer(7 "signal3") ( ) Layer(8 "signal4") ( ) Layer(9 "silk") ( ) Layer(10 "silk") ( ) gerbv-2.7.0/example/hellboard/hellboard.group1.gbr0000644000175000017500000613110413421555714021755 0ustar carstencarstenG04 start of page 3 for group 1 idx 1 G04 Title: (unknown), ground * G04 Creator: pcb 1.99v * G04 CreationDate: Thu Jan 24 03:51:34 2008 UTC * G04 For: sdb * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 400000 400000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNGROUP1*% %ADD11C,0.0200*% %ADD12C,0.0600*% %ADD13C,0.0280*% G54D11*G36* X0Y0D02*Y40000D01* X445D01* Y39859D01* X442Y39864D01* X436Y39871D01* X429Y39876D01* X422Y39880D01* X413Y39883D01* X405Y39884D01* X396Y39884D01* X388Y39882D01* X353Y39870D01* X321Y39855D01* X289Y39837D01* X260Y39816D01* X232Y39793D01* X207Y39767D01* X184Y39739D01* X164Y39709D01* X146Y39677D01* X132Y39644D01* X120Y39610D01* X118Y39601D01* X118Y39593D01* X119Y39584D01* X122Y39576D01* X127Y39568D01* X132Y39561D01* X139Y39556D01* X146Y39551D01* X154Y39548D01* X163Y39546D01* X172Y39546D01* X180Y39547D01* X188Y39550D01* X196Y39555D01* X203Y39560D01* X209Y39567D01* X213Y39574D01* X216Y39582D01* X225Y39608D01* X236Y39633D01* X249Y39657D01* X264Y39679D01* X281Y39700D01* X300Y39719D01* X321Y39737D01* X343Y39752D01* X367Y39766D01* X391Y39777D01* X417Y39786D01* X425Y39790D01* X432Y39794D01* X439Y39800D01* X444Y39807D01* X445Y39809D01* Y39197D01* X444Y39198D01* X437Y39204D01* X430Y39208D01* X422Y39211D01* X396Y39220D01* X371Y39231D01* X348Y39244D01* X325Y39259D01* X304Y39276D01* X285Y39295D01* X267Y39316D01* X252Y39338D01* X238Y39362D01* X227Y39386D01* X218Y39412D01* X214Y39420D01* X210Y39427D01* X204Y39434D01* X197Y39439D01* X189Y39443D01* X181Y39446D01* X172Y39447D01* X164Y39447D01* X155Y39445D01* X147Y39442D01* X140Y39437D01* X133Y39431D01* X128Y39424D01* X124Y39417D01* X121Y39409D01* X120Y39400D01* X120Y39391D01* X122Y39383D01* X134Y39349D01* X149Y39316D01* X167Y39284D01* X188Y39255D01* X212Y39227D01* X237Y39202D01* X265Y39179D01* X295Y39159D01* X327Y39141D01* X360Y39127D01* X394Y39115D01* X403Y39113D01* X412Y39113D01* X420Y39115D01* X428Y39117D01* X436Y39122D01* X443Y39127D01* X445Y39130D01* Y37878D01* X442Y37880D01* X433Y37883D01* X425Y37884D01* X416Y37884D01* X408Y37882D01* X373Y37870D01* X341Y37855D01* X309Y37837D01* X280Y37816D01* X252Y37793D01* X227Y37767D01* X204Y37739D01* X184Y37709D01* X166Y37677D01* X152Y37644D01* X140Y37610D01* X138Y37601D01* X138Y37593D01* X139Y37584D01* X142Y37576D01* X147Y37568D01* X152Y37561D01* X159Y37556D01* X166Y37551D01* X174Y37548D01* X183Y37546D01* X192Y37546D01* X200Y37547D01* X208Y37550D01* X216Y37555D01* X223Y37560D01* X229Y37567D01* X233Y37574D01* X236Y37582D01* X245Y37608D01* X256Y37633D01* X269Y37657D01* X284Y37679D01* X301Y37700D01* X320Y37719D01* X341Y37737D01* X363Y37752D01* X387Y37766D01* X411Y37777D01* X437Y37786D01* X445Y37790D01* X445Y37790D01* Y37210D01* X442Y37211D01* X416Y37220D01* X391Y37231D01* X368Y37244D01* X345Y37259D01* X324Y37276D01* X305Y37295D01* X287Y37316D01* X272Y37338D01* X258Y37362D01* X247Y37386D01* X238Y37412D01* X234Y37420D01* X230Y37427D01* X224Y37434D01* X217Y37439D01* X209Y37443D01* X201Y37446D01* X192Y37447D01* X184Y37447D01* X175Y37445D01* X167Y37442D01* X160Y37437D01* X153Y37431D01* X148Y37424D01* X144Y37417D01* X141Y37409D01* X140Y37400D01* X140Y37391D01* X142Y37383D01* X154Y37349D01* X169Y37316D01* X187Y37284D01* X208Y37255D01* X232Y37227D01* X257Y37202D01* X285Y37179D01* X315Y37159D01* X347Y37141D01* X380Y37127D01* X414Y37115D01* X423Y37113D01* X432Y37113D01* X440Y37115D01* X445Y37116D01* Y35884D01* X445Y35884D01* X436Y35884D01* X428Y35882D01* X393Y35870D01* X361Y35855D01* X329Y35837D01* X300Y35816D01* X272Y35793D01* X247Y35767D01* X224Y35739D01* X204Y35709D01* X186Y35677D01* X172Y35644D01* X160Y35610D01* X158Y35601D01* X158Y35593D01* X159Y35584D01* X162Y35576D01* X167Y35568D01* X172Y35561D01* X179Y35556D01* X186Y35551D01* X194Y35548D01* X203Y35546D01* X212Y35546D01* X220Y35547D01* X228Y35550D01* X236Y35555D01* X243Y35560D01* X249Y35567D01* X253Y35574D01* X256Y35582D01* X265Y35608D01* X276Y35633D01* X289Y35657D01* X304Y35679D01* X321Y35700D01* X340Y35719D01* X361Y35737D01* X383Y35752D01* X407Y35766D01* X431Y35777D01* X445Y35782D01* Y35217D01* X436Y35220D01* X411Y35231D01* X388Y35244D01* X365Y35259D01* X344Y35276D01* X325Y35295D01* X307Y35316D01* X292Y35338D01* X278Y35362D01* X267Y35386D01* X258Y35412D01* X254Y35420D01* X250Y35427D01* X244Y35434D01* X237Y35439D01* X229Y35443D01* X221Y35446D01* X212Y35447D01* X204Y35447D01* X195Y35445D01* X187Y35442D01* X180Y35437D01* X173Y35431D01* X168Y35424D01* X164Y35417D01* X161Y35409D01* X160Y35400D01* X160Y35391D01* X162Y35383D01* X174Y35349D01* X189Y35316D01* X207Y35284D01* X228Y35255D01* X252Y35227D01* X277Y35202D01* X305Y35179D01* X335Y35159D01* X367Y35141D01* X400Y35127D01* X434Y35115D01* X443Y35113D01* X445D01* Y33881D01* X413Y33870D01* X381Y33855D01* X349Y33837D01* X320Y33816D01* X292Y33793D01* X267Y33767D01* X244Y33739D01* X224Y33709D01* X206Y33677D01* X192Y33644D01* X180Y33610D01* X178Y33601D01* X178Y33593D01* X179Y33584D01* X182Y33576D01* X187Y33568D01* X192Y33561D01* X199Y33556D01* X206Y33551D01* X214Y33548D01* X223Y33546D01* X232Y33546D01* X240Y33547D01* X248Y33550D01* X256Y33555D01* X263Y33560D01* X269Y33567D01* X273Y33574D01* X276Y33582D01* X285Y33608D01* X296Y33633D01* X309Y33657D01* X324Y33679D01* X341Y33700D01* X360Y33719D01* X381Y33737D01* X403Y33752D01* X427Y33766D01* X445Y33775D01* Y33225D01* X431Y33231D01* X408Y33244D01* X385Y33259D01* X364Y33276D01* X345Y33295D01* X327Y33316D01* X312Y33338D01* X298Y33362D01* X287Y33386D01* X278Y33412D01* X274Y33420D01* X270Y33427D01* X264Y33434D01* X257Y33439D01* X249Y33443D01* X241Y33446D01* X232Y33447D01* X224Y33447D01* X215Y33445D01* X207Y33442D01* X200Y33437D01* X193Y33431D01* X188Y33424D01* X184Y33417D01* X181Y33409D01* X180Y33400D01* X180Y33391D01* X182Y33383D01* X194Y33349D01* X209Y33316D01* X227Y33284D01* X248Y33255D01* X272Y33227D01* X297Y33202D01* X325Y33179D01* X355Y33159D01* X387Y33141D01* X420Y33127D01* X445Y33118D01* Y31874D01* X433Y31870D01* X401Y31855D01* X369Y31837D01* X340Y31816D01* X312Y31793D01* X287Y31767D01* X264Y31739D01* X244Y31709D01* X226Y31677D01* X212Y31644D01* X200Y31610D01* X198Y31601D01* X198Y31593D01* X199Y31584D01* X202Y31576D01* X207Y31568D01* X212Y31561D01* X219Y31556D01* X226Y31551D01* X234Y31548D01* X243Y31546D01* X252Y31546D01* X260Y31547D01* X268Y31550D01* X276Y31555D01* X283Y31560D01* X289Y31567D01* X293Y31574D01* X296Y31582D01* X305Y31608D01* X316Y31633D01* X329Y31657D01* X344Y31679D01* X361Y31700D01* X380Y31719D01* X401Y31737D01* X423Y31752D01* X445Y31765D01* Y31234D01* X428Y31244D01* X405Y31259D01* X384Y31276D01* X365Y31295D01* X347Y31316D01* X332Y31338D01* X318Y31362D01* X307Y31386D01* X298Y31412D01* X294Y31420D01* X290Y31427D01* X284Y31434D01* X277Y31439D01* X269Y31443D01* X261Y31446D01* X252Y31447D01* X244Y31447D01* X235Y31445D01* X227Y31442D01* X220Y31437D01* X213Y31431D01* X208Y31424D01* X204Y31417D01* X201Y31409D01* X200Y31400D01* X200Y31391D01* X202Y31383D01* X214Y31349D01* X229Y31316D01* X247Y31284D01* X268Y31255D01* X292Y31227D01* X317Y31202D01* X345Y31179D01* X375Y31159D01* X407Y31141D01* X440Y31127D01* X445Y31125D01* Y29866D01* X421Y29855D01* X389Y29837D01* X360Y29816D01* X332Y29793D01* X307Y29767D01* X284Y29739D01* X264Y29709D01* X246Y29677D01* X232Y29644D01* X220Y29610D01* X218Y29601D01* X218Y29593D01* X219Y29584D01* X222Y29576D01* X227Y29568D01* X232Y29561D01* X239Y29556D01* X246Y29551D01* X254Y29548D01* X263Y29546D01* X272Y29546D01* X280Y29547D01* X288Y29550D01* X296Y29555D01* X303Y29560D01* X309Y29567D01* X313Y29574D01* X316Y29582D01* X325Y29608D01* X336Y29633D01* X349Y29657D01* X364Y29679D01* X381Y29700D01* X400Y29719D01* X421Y29737D01* X443Y29752D01* X445Y29754D01* Y29246D01* X425Y29259D01* X404Y29276D01* X385Y29295D01* X367Y29316D01* X352Y29338D01* X338Y29362D01* X327Y29386D01* X318Y29412D01* X314Y29420D01* X310Y29427D01* X304Y29434D01* X297Y29439D01* X289Y29443D01* X281Y29446D01* X272Y29447D01* X264Y29447D01* X255Y29445D01* X247Y29442D01* X240Y29437D01* X233Y29431D01* X228Y29424D01* X224Y29417D01* X221Y29409D01* X220Y29400D01* X220Y29391D01* X222Y29383D01* X234Y29349D01* X249Y29316D01* X267Y29284D01* X288Y29255D01* X312Y29227D01* X337Y29202D01* X365Y29179D01* X395Y29159D01* X427Y29141D01* X445Y29133D01* Y27857D01* X441Y27855D01* X409Y27837D01* X380Y27816D01* X352Y27793D01* X327Y27767D01* X304Y27739D01* X284Y27709D01* X266Y27677D01* X252Y27644D01* X240Y27610D01* X238Y27601D01* X238Y27593D01* X239Y27584D01* X242Y27576D01* X247Y27568D01* X252Y27561D01* X259Y27556D01* X266Y27551D01* X274Y27548D01* X283Y27546D01* X292Y27546D01* X300Y27547D01* X308Y27550D01* X316Y27555D01* X323Y27560D01* X329Y27567D01* X333Y27574D01* X336Y27582D01* X345Y27608D01* X356Y27633D01* X369Y27657D01* X384Y27679D01* X401Y27700D01* X420Y27719D01* X441Y27737D01* X445Y27740D01* Y27259D01* X445Y27259D01* X424Y27276D01* X405Y27295D01* X387Y27316D01* X372Y27338D01* X358Y27362D01* X347Y27386D01* X338Y27412D01* X334Y27420D01* X330Y27427D01* X324Y27434D01* X317Y27439D01* X309Y27443D01* X301Y27446D01* X292Y27447D01* X284Y27447D01* X275Y27445D01* X267Y27442D01* X260Y27437D01* X253Y27431D01* X248Y27424D01* X244Y27417D01* X241Y27409D01* X240Y27400D01* X240Y27391D01* X242Y27383D01* X254Y27349D01* X269Y27316D01* X287Y27284D01* X308Y27255D01* X332Y27227D01* X357Y27202D01* X385Y27179D01* X415Y27159D01* X445Y27142D01* Y25846D01* X429Y25837D01* X400Y25816D01* X372Y25793D01* X347Y25767D01* X324Y25739D01* X304Y25709D01* X286Y25677D01* X272Y25644D01* X260Y25610D01* X258Y25601D01* X258Y25593D01* X259Y25584D01* X262Y25576D01* X267Y25568D01* X272Y25561D01* X279Y25556D01* X286Y25551D01* X294Y25548D01* X303Y25546D01* X312Y25546D01* X320Y25547D01* X328Y25550D01* X336Y25555D01* X343Y25560D01* X349Y25567D01* X353Y25574D01* X356Y25582D01* X365Y25608D01* X376Y25633D01* X389Y25657D01* X404Y25679D01* X421Y25700D01* X440Y25719D01* X445Y25723D01* Y25276D01* X444Y25276D01* X425Y25295D01* X407Y25316D01* X392Y25338D01* X378Y25362D01* X367Y25386D01* X358Y25412D01* X354Y25420D01* X350Y25427D01* X344Y25434D01* X337Y25439D01* X329Y25443D01* X321Y25446D01* X312Y25447D01* X304Y25447D01* X295Y25445D01* X287Y25442D01* X280Y25437D01* X273Y25431D01* X268Y25424D01* X264Y25417D01* X261Y25409D01* X260Y25400D01* X260Y25391D01* X262Y25383D01* X274Y25349D01* X289Y25316D01* X307Y25284D01* X328Y25255D01* X352Y25227D01* X377Y25202D01* X405Y25179D01* X435Y25159D01* X445Y25153D01* Y23834D01* X420Y23816D01* X392Y23793D01* X367Y23767D01* X344Y23739D01* X324Y23709D01* X306Y23677D01* X292Y23644D01* X280Y23610D01* X278Y23601D01* X278Y23593D01* X279Y23584D01* X282Y23576D01* X287Y23568D01* X292Y23561D01* X299Y23556D01* X306Y23551D01* X314Y23548D01* X323Y23546D01* X332Y23546D01* X340Y23547D01* X348Y23550D01* X356Y23555D01* X363Y23560D01* X369Y23567D01* X373Y23574D01* X376Y23582D01* X385Y23608D01* X396Y23633D01* X409Y23657D01* X424Y23679D01* X441Y23700D01* X445Y23704D01* Y23295D01* X445Y23295D01* X427Y23316D01* X412Y23338D01* X398Y23362D01* X387Y23386D01* X378Y23412D01* X374Y23420D01* X370Y23427D01* X364Y23434D01* X357Y23439D01* X349Y23443D01* X341Y23446D01* X332Y23447D01* X324Y23447D01* X315Y23445D01* X307Y23442D01* X300Y23437D01* X293Y23431D01* X288Y23424D01* X284Y23417D01* X281Y23409D01* X280Y23400D01* X280Y23391D01* X282Y23383D01* X294Y23349D01* X309Y23316D01* X327Y23284D01* X348Y23255D01* X372Y23227D01* X397Y23202D01* X425Y23179D01* X445Y23166D01* Y21820D01* X440Y21816D01* X412Y21793D01* X387Y21767D01* X364Y21739D01* X344Y21709D01* X326Y21677D01* X312Y21644D01* X300Y21610D01* X298Y21601D01* X298Y21593D01* X299Y21584D01* X302Y21576D01* X307Y21568D01* X312Y21561D01* X319Y21556D01* X326Y21551D01* X334Y21548D01* X343Y21546D01* X352Y21546D01* X360Y21547D01* X368Y21550D01* X376Y21555D01* X383Y21560D01* X389Y21567D01* X393Y21574D01* X396Y21582D01* X405Y21608D01* X416Y21633D01* X429Y21657D01* X444Y21679D01* X445Y21680D01* Y21319D01* X432Y21338D01* X418Y21362D01* X407Y21386D01* X398Y21412D01* X394Y21420D01* X390Y21427D01* X384Y21434D01* X377Y21439D01* X369Y21443D01* X361Y21446D01* X352Y21447D01* X344Y21447D01* X335Y21445D01* X327Y21442D01* X320Y21437D01* X313Y21431D01* X308Y21424D01* X304Y21417D01* X301Y21409D01* X300Y21400D01* X300Y21391D01* X302Y21383D01* X314Y21349D01* X329Y21316D01* X347Y21284D01* X368Y21255D01* X392Y21227D01* X417Y21202D01* X445Y21179D01* Y19804D01* X432Y19793D01* X407Y19767D01* X384Y19739D01* X364Y19709D01* X346Y19677D01* X332Y19644D01* X320Y19610D01* X318Y19601D01* X318Y19593D01* X319Y19584D01* X322Y19576D01* X327Y19568D01* X332Y19561D01* X339Y19556D01* X346Y19551D01* X354Y19548D01* X363Y19546D01* X372Y19546D01* X380Y19547D01* X388Y19550D01* X396Y19555D01* X403Y19560D01* X409Y19567D01* X413Y19574D01* X416Y19582D01* X425Y19608D01* X436Y19633D01* X445Y19650D01* Y19349D01* X438Y19362D01* X427Y19386D01* X418Y19412D01* X414Y19420D01* X410Y19427D01* X404Y19434D01* X397Y19439D01* X389Y19443D01* X381Y19446D01* X372Y19447D01* X364Y19447D01* X355Y19445D01* X347Y19442D01* X340Y19437D01* X333Y19431D01* X328Y19424D01* X324Y19417D01* X321Y19409D01* X320Y19400D01* X320Y19391D01* X322Y19383D01* X334Y19349D01* X349Y19316D01* X367Y19284D01* X388Y19255D01* X412Y19227D01* X437Y19202D01* X445Y19196D01* Y17785D01* X427Y17767D01* X404Y17739D01* X384Y17709D01* X366Y17677D01* X352Y17644D01* X340Y17610D01* X338Y17601D01* X338Y17593D01* X339Y17584D01* X342Y17576D01* X347Y17568D01* X352Y17561D01* X359Y17556D01* X366Y17551D01* X374Y17548D01* X383Y17546D01* X392Y17546D01* X400Y17547D01* X408Y17550D01* X416Y17555D01* X423Y17560D01* X429Y17567D01* X433Y17574D01* X436Y17582D01* X445Y17608D01* X445Y17609D01* Y17391D01* X438Y17412D01* X434Y17420D01* X430Y17427D01* X424Y17434D01* X417Y17439D01* X409Y17443D01* X401Y17446D01* X392Y17447D01* X384Y17447D01* X375Y17445D01* X367Y17442D01* X360Y17437D01* X353Y17431D01* X348Y17424D01* X344Y17417D01* X341Y17409D01* X340Y17400D01* X340Y17391D01* X342Y17383D01* X354Y17349D01* X369Y17316D01* X387Y17284D01* X408Y17255D01* X432Y17227D01* X445Y17214D01* Y15765D01* X424Y15739D01* X404Y15709D01* X386Y15677D01* X372Y15644D01* X360Y15610D01* X358Y15601D01* X358Y15593D01* X359Y15584D01* X362Y15576D01* X367Y15568D01* X372Y15561D01* X379Y15556D01* X386Y15551D01* X394Y15548D01* X403Y15546D01* X412Y15546D01* X420Y15547D01* X428Y15550D01* X436Y15555D01* X443Y15560D01* X445Y15563D01* Y15432D01* X444Y15434D01* X437Y15439D01* X429Y15443D01* X421Y15446D01* X412Y15447D01* X404Y15447D01* X395Y15445D01* X387Y15442D01* X380Y15437D01* X373Y15431D01* X368Y15424D01* X364Y15417D01* X361Y15409D01* X360Y15400D01* X360Y15391D01* X362Y15383D01* X374Y15349D01* X389Y15316D01* X407Y15284D01* X428Y15255D01* X445Y15235D01* Y13740D01* X444Y13739D01* X424Y13709D01* X406Y13677D01* X392Y13644D01* X380Y13610D01* X378Y13601D01* X378Y13593D01* X379Y13584D01* X382Y13576D01* X387Y13568D01* X392Y13561D01* X399Y13556D01* X406Y13551D01* X414Y13548D01* X423Y13546D01* X432Y13546D01* X440Y13547D01* X445Y13549D01* Y13445D01* X441Y13446D01* X432Y13447D01* X424Y13447D01* X415Y13445D01* X407Y13442D01* X400Y13437D01* X393Y13431D01* X388Y13424D01* X384Y13417D01* X381Y13409D01* X380Y13400D01* X380Y13391D01* X382Y13383D01* X394Y13349D01* X409Y13316D01* X427Y13284D01* X445Y13259D01* Y11711D01* X444Y11709D01* X426Y11677D01* X412Y11644D01* X400Y11610D01* X398Y11601D01* X398Y11593D01* X399Y11584D01* X402Y11576D01* X407Y11568D01* X412Y11561D01* X419Y11556D01* X426Y11551D01* X434Y11548D01* X443Y11546D01* X445D01* Y11447D01* X444Y11447D01* X435Y11445D01* X427Y11442D01* X420Y11437D01* X413Y11431D01* X408Y11424D01* X404Y11417D01* X401Y11409D01* X400Y11400D01* X400Y11391D01* X402Y11383D01* X414Y11349D01* X429Y11316D01* X445Y11288D01* Y9675D01* X432Y9644D01* X420Y9610D01* X418Y9601D01* X418Y9593D01* X419Y9584D01* X422Y9576D01* X427Y9568D01* X432Y9561D01* X439Y9556D01* X445Y9552D01* Y9441D01* X440Y9437D01* X433Y9431D01* X428Y9424D01* X424Y9417D01* X421Y9409D01* X420Y9400D01* X420Y9391D01* X422Y9383D01* X434Y9349D01* X445Y9325D01* Y7625D01* X440Y7610D01* X438Y7601D01* X438Y7593D01* X439Y7584D01* X442Y7576D01* X445Y7571D01* Y7419D01* X444Y7417D01* X441Y7409D01* X440Y7400D01* X440Y7391D01* X442Y7383D01* X445Y7374D01* Y0D01* X0D01* G37* G36* X445Y40000D02*X625D01* Y39881D01* X615Y39884D01* X606Y39886D01* X597Y39886D01* X589Y39885D01* X581Y39882D01* X573Y39878D01* X566Y39872D01* X560Y39865D01* X556Y39858D01* X553Y39850D01* X551Y39841D01* X551Y39833D01* X552Y39824D01* X555Y39816D01* X559Y39808D01* X565Y39801D01* X572Y39796D01* X579Y39791D01* X587Y39788D01* X613Y39779D01* X625Y39774D01* Y39225D01* X618Y39222D01* X592Y39213D01* X584Y39209D01* X577Y39205D01* X570Y39199D01* X565Y39192D01* X561Y39184D01* X558Y39176D01* X557Y39167D01* X557Y39159D01* X559Y39150D01* X562Y39142D01* X567Y39135D01* X573Y39128D01* X580Y39123D01* X587Y39119D01* X596Y39116D01* X604Y39115D01* X613Y39115D01* X621Y39117D01* X625Y39118D01* Y37886D01* X617Y37886D01* X609Y37885D01* X601Y37882D01* X593Y37878D01* X586Y37872D01* X580Y37865D01* X576Y37858D01* X573Y37850D01* X571Y37841D01* X571Y37833D01* X572Y37824D01* X575Y37816D01* X579Y37808D01* X585Y37801D01* X592Y37796D01* X599Y37791D01* X607Y37788D01* X625Y37782D01* Y37217D01* X612Y37213D01* X604Y37209D01* X597Y37205D01* X590Y37199D01* X585Y37192D01* X581Y37184D01* X578Y37176D01* X577Y37167D01* X577Y37159D01* X579Y37150D01* X582Y37142D01* X587Y37135D01* X593Y37128D01* X600Y37123D01* X607Y37119D01* X616Y37116D01* X624Y37115D01* X625D01* Y35883D01* X621Y35882D01* X613Y35878D01* X606Y35872D01* X600Y35865D01* X596Y35858D01* X593Y35850D01* X591Y35841D01* X591Y35833D01* X592Y35824D01* X595Y35816D01* X599Y35808D01* X605Y35801D01* X612Y35796D01* X619Y35791D01* X625Y35789D01* Y35210D01* X624Y35209D01* X617Y35205D01* X610Y35199D01* X605Y35192D01* X601Y35184D01* X598Y35176D01* X597Y35167D01* X597Y35159D01* X599Y35150D01* X602Y35142D01* X607Y35135D01* X613Y35128D01* X620Y35123D01* X625Y35120D01* Y33871D01* X620Y33865D01* X616Y33858D01* X613Y33850D01* X611Y33841D01* X611Y33833D01* X612Y33824D01* X615Y33816D01* X619Y33808D01* X625Y33801D01* X625Y33801D01* Y33192D01* X625Y33192D01* X621Y33184D01* X618Y33176D01* X617Y33167D01* X617Y33159D01* X619Y33150D01* X622Y33142D01* X625Y33138D01* Y21859D01* X622Y21864D01* X616Y21871D01* X609Y21876D01* X602Y21880D01* X593Y21883D01* X585Y21884D01* X576Y21884D01* X568Y21882D01* X533Y21870D01* X501Y21855D01* X469Y21837D01* X445Y21820D01* Y23166D01* X455Y23159D01* X487Y23141D01* X520Y23127D01* X554Y23115D01* X563Y23113D01* X572Y23113D01* X580Y23115D01* X588Y23117D01* X596Y23122D01* X603Y23127D01* X609Y23134D01* X613Y23141D01* X616Y23149D01* X618Y23158D01* X618Y23167D01* X617Y23175D01* X614Y23183D01* X610Y23191D01* X604Y23198D01* X597Y23204D01* X590Y23208D01* X582Y23211D01* X556Y23220D01* X531Y23231D01* X508Y23244D01* X485Y23259D01* X464Y23276D01* X445Y23295D01* Y23704D01* X460Y23719D01* X481Y23737D01* X503Y23752D01* X527Y23766D01* X551Y23777D01* X577Y23786D01* X585Y23790D01* X592Y23794D01* X599Y23800D01* X604Y23807D01* X608Y23815D01* X611Y23823D01* X612Y23832D01* X612Y23840D01* X610Y23849D01* X607Y23857D01* X602Y23864D01* X596Y23871D01* X589Y23876D01* X582Y23880D01* X573Y23883D01* X565Y23884D01* X556Y23884D01* X548Y23882D01* X513Y23870D01* X481Y23855D01* X449Y23837D01* X445Y23834D01* Y25153D01* X467Y25141D01* X500Y25127D01* X534Y25115D01* X543Y25113D01* X552Y25113D01* X560Y25115D01* X568Y25117D01* X576Y25122D01* X583Y25127D01* X589Y25134D01* X593Y25141D01* X596Y25149D01* X598Y25158D01* X598Y25167D01* X597Y25175D01* X594Y25183D01* X590Y25191D01* X584Y25198D01* X577Y25204D01* X570Y25208D01* X562Y25211D01* X536Y25220D01* X511Y25231D01* X488Y25244D01* X465Y25259D01* X445Y25276D01* Y25723D01* X461Y25737D01* X483Y25752D01* X507Y25766D01* X531Y25777D01* X557Y25786D01* X565Y25790D01* X572Y25794D01* X579Y25800D01* X584Y25807D01* X588Y25815D01* X591Y25823D01* X592Y25832D01* X592Y25840D01* X590Y25849D01* X587Y25857D01* X582Y25864D01* X576Y25871D01* X569Y25876D01* X562Y25880D01* X553Y25883D01* X545Y25884D01* X536Y25884D01* X528Y25882D01* X493Y25870D01* X461Y25855D01* X445Y25846D01* Y27142D01* X447Y27141D01* X480Y27127D01* X514Y27115D01* X523Y27113D01* X532Y27113D01* X540Y27115D01* X548Y27117D01* X556Y27122D01* X563Y27127D01* X569Y27134D01* X573Y27141D01* X576Y27149D01* X578Y27158D01* X578Y27167D01* X577Y27175D01* X574Y27183D01* X570Y27191D01* X564Y27198D01* X557Y27204D01* X550Y27208D01* X542Y27211D01* X516Y27220D01* X491Y27231D01* X468Y27244D01* X445Y27259D01* Y27740D01* X463Y27752D01* X487Y27766D01* X511Y27777D01* X537Y27786D01* X545Y27790D01* X552Y27794D01* X559Y27800D01* X564Y27807D01* X568Y27815D01* X571Y27823D01* X572Y27832D01* X572Y27840D01* X570Y27849D01* X567Y27857D01* X562Y27864D01* X556Y27871D01* X549Y27876D01* X542Y27880D01* X533Y27883D01* X525Y27884D01* X516Y27884D01* X508Y27882D01* X473Y27870D01* X445Y27857D01* Y29133D01* X460Y29127D01* X494Y29115D01* X503Y29113D01* X512Y29113D01* X520Y29115D01* X528Y29117D01* X536Y29122D01* X543Y29127D01* X549Y29134D01* X553Y29141D01* X556Y29149D01* X558Y29158D01* X558Y29167D01* X557Y29175D01* X554Y29183D01* X550Y29191D01* X544Y29198D01* X537Y29204D01* X530Y29208D01* X522Y29211D01* X496Y29220D01* X471Y29231D01* X448Y29244D01* X445Y29246D01* Y29754D01* X467Y29766D01* X491Y29777D01* X517Y29786D01* X525Y29790D01* X532Y29794D01* X539Y29800D01* X544Y29807D01* X548Y29815D01* X551Y29823D01* X552Y29832D01* X552Y29840D01* X550Y29849D01* X547Y29857D01* X542Y29864D01* X536Y29871D01* X529Y29876D01* X522Y29880D01* X513Y29883D01* X505Y29884D01* X496Y29884D01* X488Y29882D01* X453Y29870D01* X445Y29866D01* Y31125D01* X474Y31115D01* X483Y31113D01* X492Y31113D01* X500Y31115D01* X508Y31117D01* X516Y31122D01* X523Y31127D01* X529Y31134D01* X533Y31141D01* X536Y31149D01* X538Y31158D01* X538Y31167D01* X537Y31175D01* X534Y31183D01* X530Y31191D01* X524Y31198D01* X517Y31204D01* X510Y31208D01* X502Y31211D01* X476Y31220D01* X451Y31231D01* X445Y31234D01* Y31765D01* X447Y31766D01* X471Y31777D01* X497Y31786D01* X505Y31790D01* X512Y31794D01* X519Y31800D01* X524Y31807D01* X528Y31815D01* X531Y31823D01* X532Y31832D01* X532Y31840D01* X530Y31849D01* X527Y31857D01* X522Y31864D01* X516Y31871D01* X509Y31876D01* X502Y31880D01* X493Y31883D01* X485Y31884D01* X476Y31884D01* X468Y31882D01* X445Y31874D01* Y33118D01* X454Y33115D01* X463Y33113D01* X472Y33113D01* X480Y33115D01* X488Y33117D01* X496Y33122D01* X503Y33127D01* X509Y33134D01* X513Y33141D01* X516Y33149D01* X518Y33158D01* X518Y33167D01* X517Y33175D01* X514Y33183D01* X510Y33191D01* X504Y33198D01* X497Y33204D01* X490Y33208D01* X482Y33211D01* X456Y33220D01* X445Y33225D01* Y33775D01* X451Y33777D01* X477Y33786D01* X485Y33790D01* X492Y33794D01* X499Y33800D01* X504Y33807D01* X508Y33815D01* X511Y33823D01* X512Y33832D01* X512Y33840D01* X510Y33849D01* X507Y33857D01* X502Y33864D01* X496Y33871D01* X489Y33876D01* X482Y33880D01* X473Y33883D01* X465Y33884D01* X456Y33884D01* X448Y33882D01* X445Y33881D01* Y35113D01* X452Y35113D01* X460Y35115D01* X468Y35117D01* X476Y35122D01* X483Y35127D01* X489Y35134D01* X493Y35141D01* X496Y35149D01* X498Y35158D01* X498Y35167D01* X497Y35175D01* X494Y35183D01* X490Y35191D01* X484Y35198D01* X477Y35204D01* X470Y35208D01* X462Y35211D01* X445Y35217D01* Y35782D01* X457Y35786D01* X465Y35790D01* X472Y35794D01* X479Y35800D01* X484Y35807D01* X488Y35815D01* X491Y35823D01* X492Y35832D01* X492Y35840D01* X490Y35849D01* X487Y35857D01* X482Y35864D01* X476Y35871D01* X469Y35876D01* X462Y35880D01* X453Y35883D01* X445Y35884D01* Y37116D01* X448Y37117D01* X456Y37122D01* X463Y37127D01* X469Y37134D01* X473Y37141D01* X476Y37149D01* X478Y37158D01* X478Y37167D01* X477Y37175D01* X474Y37183D01* X470Y37191D01* X464Y37198D01* X457Y37204D01* X450Y37208D01* X445Y37210D01* Y37790D01* X452Y37794D01* X459Y37800D01* X464Y37807D01* X468Y37815D01* X471Y37823D01* X472Y37832D01* X472Y37840D01* X470Y37849D01* X467Y37857D01* X462Y37864D01* X456Y37871D01* X449Y37876D01* X445Y37878D01* Y39130D01* X449Y39134D01* X453Y39141D01* X456Y39149D01* X458Y39158D01* X458Y39167D01* X457Y39175D01* X454Y39183D01* X450Y39191D01* X445Y39197D01* Y39809D01* X448Y39815D01* X451Y39823D01* X452Y39832D01* X452Y39840D01* X450Y39849D01* X447Y39857D01* X445Y39859D01* Y40000D01* G37* G36* X625Y0D02*X445D01* Y7374D01* X454Y7349D01* X469Y7316D01* X487Y7284D01* X508Y7255D01* X532Y7227D01* X557Y7202D01* X585Y7179D01* X615Y7159D01* X625Y7153D01* Y5834D01* X600Y5816D01* X572Y5793D01* X547Y5767D01* X524Y5739D01* X504Y5709D01* X486Y5677D01* X472Y5644D01* X460Y5610D01* X458Y5601D01* X458Y5593D01* X459Y5584D01* X462Y5576D01* X467Y5568D01* X472Y5561D01* X479Y5556D01* X486Y5551D01* X494Y5548D01* X503Y5546D01* X512Y5546D01* X520Y5547D01* X528Y5550D01* X536Y5555D01* X543Y5560D01* X549Y5567D01* X553Y5574D01* X556Y5582D01* X565Y5608D01* X576Y5633D01* X589Y5657D01* X604Y5679D01* X621Y5700D01* X625Y5704D01* Y5295D01* X625Y5295D01* X607Y5316D01* X592Y5338D01* X578Y5362D01* X567Y5386D01* X558Y5412D01* X554Y5420D01* X550Y5427D01* X544Y5434D01* X537Y5439D01* X529Y5443D01* X521Y5446D01* X512Y5447D01* X504Y5447D01* X495Y5445D01* X487Y5442D01* X480Y5437D01* X473Y5431D01* X468Y5424D01* X464Y5417D01* X461Y5409D01* X460Y5400D01* X460Y5391D01* X462Y5383D01* X474Y5349D01* X489Y5316D01* X507Y5284D01* X528Y5255D01* X552Y5227D01* X577Y5202D01* X605Y5179D01* X625Y5166D01* Y3820D01* X620Y3816D01* X592Y3793D01* X567Y3767D01* X544Y3739D01* X524Y3709D01* X506Y3677D01* X492Y3644D01* X480Y3610D01* X478Y3601D01* X478Y3593D01* X479Y3584D01* X482Y3576D01* X487Y3568D01* X492Y3561D01* X499Y3556D01* X506Y3551D01* X514Y3548D01* X523Y3546D01* X532Y3546D01* X540Y3547D01* X548Y3550D01* X556Y3555D01* X563Y3560D01* X569Y3567D01* X573Y3574D01* X576Y3582D01* X585Y3608D01* X596Y3633D01* X609Y3657D01* X624Y3679D01* X625Y3680D01* Y3319D01* X612Y3338D01* X598Y3362D01* X587Y3386D01* X578Y3412D01* X574Y3420D01* X570Y3427D01* X564Y3434D01* X557Y3439D01* X549Y3443D01* X541Y3446D01* X532Y3447D01* X524Y3447D01* X515Y3445D01* X507Y3442D01* X500Y3437D01* X493Y3431D01* X488Y3424D01* X484Y3417D01* X481Y3409D01* X480Y3400D01* X480Y3391D01* X482Y3383D01* X494Y3349D01* X509Y3316D01* X527Y3284D01* X548Y3255D01* X572Y3227D01* X597Y3202D01* X625Y3179D01* Y1804D01* X612Y1793D01* X587Y1767D01* X564Y1739D01* X544Y1709D01* X526Y1677D01* X512Y1644D01* X500Y1610D01* X498Y1601D01* X498Y1593D01* X499Y1584D01* X502Y1576D01* X507Y1568D01* X512Y1561D01* X519Y1556D01* X526Y1551D01* X534Y1548D01* X543Y1546D01* X552Y1546D01* X560Y1547D01* X568Y1550D01* X576Y1555D01* X583Y1560D01* X589Y1567D01* X593Y1574D01* X596Y1582D01* X605Y1608D01* X616Y1633D01* X625Y1650D01* Y1349D01* X618Y1362D01* X607Y1386D01* X598Y1412D01* X594Y1420D01* X590Y1427D01* X584Y1434D01* X577Y1439D01* X569Y1443D01* X561Y1446D01* X552Y1447D01* X544Y1447D01* X535Y1445D01* X527Y1442D01* X520Y1437D01* X513Y1431D01* X508Y1424D01* X504Y1417D01* X501Y1409D01* X500Y1400D01* X500Y1391D01* X502Y1383D01* X514Y1349D01* X529Y1316D01* X547Y1284D01* X568Y1255D01* X592Y1227D01* X617Y1202D01* X625Y1196D01* Y0D01* G37* G36* Y7276D02*X624Y7276D01* X605Y7295D01* X587Y7316D01* X572Y7338D01* X558Y7362D01* X547Y7386D01* X538Y7412D01* X534Y7420D01* X530Y7427D01* X524Y7434D01* X517Y7439D01* X509Y7443D01* X501Y7446D01* X492Y7447D01* X484Y7447D01* X475Y7445D01* X467Y7442D01* X460Y7437D01* X453Y7431D01* X448Y7424D01* X445Y7419D01* Y7571D01* X447Y7568D01* X452Y7561D01* X459Y7556D01* X466Y7551D01* X474Y7548D01* X483Y7546D01* X492Y7546D01* X500Y7547D01* X508Y7550D01* X516Y7555D01* X523Y7560D01* X529Y7567D01* X533Y7574D01* X536Y7582D01* X545Y7608D01* X556Y7633D01* X569Y7657D01* X584Y7679D01* X601Y7700D01* X620Y7719D01* X625Y7723D01* Y7276D01* G37* G36* Y7846D02*X609Y7837D01* X580Y7816D01* X552Y7793D01* X527Y7767D01* X504Y7739D01* X484Y7709D01* X466Y7677D01* X452Y7644D01* X445Y7625D01* Y9325D01* X449Y9316D01* X467Y9284D01* X488Y9255D01* X512Y9227D01* X537Y9202D01* X565Y9179D01* X595Y9159D01* X625Y9142D01* Y7846D01* G37* G36* Y9259D02*X625Y9259D01* X604Y9276D01* X585Y9295D01* X567Y9316D01* X552Y9338D01* X538Y9362D01* X527Y9386D01* X518Y9412D01* X514Y9420D01* X510Y9427D01* X504Y9434D01* X497Y9439D01* X489Y9443D01* X481Y9446D01* X472Y9447D01* X464Y9447D01* X455Y9445D01* X447Y9442D01* X445Y9441D01* Y9552D01* X446Y9551D01* X454Y9548D01* X463Y9546D01* X472Y9546D01* X480Y9547D01* X488Y9550D01* X496Y9555D01* X503Y9560D01* X509Y9567D01* X513Y9574D01* X516Y9582D01* X525Y9608D01* X536Y9633D01* X549Y9657D01* X564Y9679D01* X581Y9700D01* X600Y9719D01* X621Y9737D01* X625Y9740D01* Y9259D01* G37* G36* Y9857D02*X621Y9855D01* X589Y9837D01* X560Y9816D01* X532Y9793D01* X507Y9767D01* X484Y9739D01* X464Y9709D01* X446Y9677D01* X445Y9675D01* Y11288D01* X447Y11284D01* X468Y11255D01* X492Y11227D01* X517Y11202D01* X545Y11179D01* X575Y11159D01* X607Y11141D01* X625Y11133D01* Y9857D01* G37* G36* Y11246D02*X605Y11259D01* X584Y11276D01* X565Y11295D01* X547Y11316D01* X532Y11338D01* X518Y11362D01* X507Y11386D01* X498Y11412D01* X494Y11420D01* X490Y11427D01* X484Y11434D01* X477Y11439D01* X469Y11443D01* X461Y11446D01* X452Y11447D01* X445Y11447D01* Y11546D01* X452Y11546D01* X460Y11547D01* X468Y11550D01* X476Y11555D01* X483Y11560D01* X489Y11567D01* X493Y11574D01* X496Y11582D01* X505Y11608D01* X516Y11633D01* X529Y11657D01* X544Y11679D01* X561Y11700D01* X580Y11719D01* X601Y11737D01* X623Y11752D01* X625Y11754D01* Y11246D01* G37* G36* Y11866D02*X601Y11855D01* X569Y11837D01* X540Y11816D01* X512Y11793D01* X487Y11767D01* X464Y11739D01* X445Y11711D01* Y13259D01* X448Y13255D01* X472Y13227D01* X497Y13202D01* X525Y13179D01* X555Y13159D01* X587Y13141D01* X620Y13127D01* X625Y13125D01* Y11866D01* G37* G36* Y13234D02*X608Y13244D01* X585Y13259D01* X564Y13276D01* X545Y13295D01* X527Y13316D01* X512Y13338D01* X498Y13362D01* X487Y13386D01* X478Y13412D01* X474Y13420D01* X470Y13427D01* X464Y13434D01* X457Y13439D01* X449Y13443D01* X445Y13445D01* Y13549D01* X448Y13550D01* X456Y13555D01* X463Y13560D01* X469Y13567D01* X473Y13574D01* X476Y13582D01* X485Y13608D01* X496Y13633D01* X509Y13657D01* X524Y13679D01* X541Y13700D01* X560Y13719D01* X581Y13737D01* X603Y13752D01* X625Y13765D01* Y13234D01* G37* G36* Y13874D02*X613Y13870D01* X581Y13855D01* X549Y13837D01* X520Y13816D01* X492Y13793D01* X467Y13767D01* X445Y13740D01* Y15235D01* X452Y15227D01* X477Y15202D01* X505Y15179D01* X535Y15159D01* X567Y15141D01* X600Y15127D01* X625Y15118D01* Y13874D01* G37* G36* Y15225D02*X611Y15231D01* X588Y15244D01* X565Y15259D01* X544Y15276D01* X525Y15295D01* X507Y15316D01* X492Y15338D01* X478Y15362D01* X467Y15386D01* X458Y15412D01* X454Y15420D01* X450Y15427D01* X445Y15432D01* Y15563D01* X449Y15567D01* X453Y15574D01* X456Y15582D01* X465Y15608D01* X476Y15633D01* X489Y15657D01* X504Y15679D01* X521Y15700D01* X540Y15719D01* X561Y15737D01* X583Y15752D01* X607Y15766D01* X625Y15775D01* Y15225D01* G37* G36* Y15881D02*X593Y15870D01* X561Y15855D01* X529Y15837D01* X500Y15816D01* X472Y15793D01* X447Y15767D01* X445Y15765D01* Y17214D01* X457Y17202D01* X485Y17179D01* X515Y17159D01* X547Y17141D01* X580Y17127D01* X614Y17115D01* X623Y17113D01* X625D01* Y15881D01* G37* G36* Y17217D02*X616Y17220D01* X591Y17231D01* X568Y17244D01* X545Y17259D01* X524Y17276D01* X505Y17295D01* X487Y17316D01* X472Y17338D01* X458Y17362D01* X447Y17386D01* X445Y17391D01* Y17609D01* X456Y17633D01* X469Y17657D01* X484Y17679D01* X501Y17700D01* X520Y17719D01* X541Y17737D01* X563Y17752D01* X587Y17766D01* X611Y17777D01* X625Y17782D01* Y17217D01* G37* G36* Y17884D02*X625Y17884D01* X616Y17884D01* X608Y17882D01* X573Y17870D01* X541Y17855D01* X509Y17837D01* X480Y17816D01* X452Y17793D01* X445Y17785D01* Y19196D01* X465Y19179D01* X495Y19159D01* X527Y19141D01* X560Y19127D01* X594Y19115D01* X603Y19113D01* X612Y19113D01* X620Y19115D01* X625Y19116D01* Y17884D01* G37* G36* Y19210D02*X622Y19211D01* X596Y19220D01* X571Y19231D01* X548Y19244D01* X525Y19259D01* X504Y19276D01* X485Y19295D01* X467Y19316D01* X452Y19338D01* X445Y19349D01* Y19650D01* X449Y19657D01* X464Y19679D01* X481Y19700D01* X500Y19719D01* X521Y19737D01* X543Y19752D01* X567Y19766D01* X591Y19777D01* X617Y19786D01* X625Y19790D01* X625Y19790D01* Y19210D01* G37* G36* Y19878D02*X622Y19880D01* X613Y19883D01* X605Y19884D01* X596Y19884D01* X588Y19882D01* X553Y19870D01* X521Y19855D01* X489Y19837D01* X460Y19816D01* X445Y19804D01* Y21179D01* X445Y21179D01* X475Y21159D01* X507Y21141D01* X540Y21127D01* X574Y21115D01* X583Y21113D01* X592Y21113D01* X600Y21115D01* X608Y21117D01* X616Y21122D01* X623Y21127D01* X625Y21130D01* Y19878D01* G37* G36* Y21197D02*X624Y21198D01* X617Y21204D01* X610Y21208D01* X602Y21211D01* X576Y21220D01* X551Y21231D01* X528Y21244D01* X505Y21259D01* X484Y21276D01* X465Y21295D01* X447Y21316D01* X445Y21319D01* Y21680D01* X461Y21700D01* X480Y21719D01* X501Y21737D01* X523Y21752D01* X547Y21766D01* X571Y21777D01* X597Y21786D01* X605Y21790D01* X612Y21794D01* X619Y21800D01* X624Y21807D01* X625Y21809D01* Y21197D01* G37* G36* Y40000D02*X884D01* Y39625D01* X875Y39651D01* X860Y39683D01* X842Y39715D01* X821Y39744D01* X797Y39772D01* X772Y39797D01* X744Y39820D01* X714Y39840D01* X682Y39858D01* X649Y39873D01* X625Y39881D01* Y40000D01* G37* G36* Y39774D02*X638Y39768D01* X661Y39755D01* X684Y39740D01* X705Y39723D01* X724Y39704D01* X742Y39683D01* X757Y39661D01* X771Y39637D01* X782Y39613D01* X791Y39587D01* X795Y39579D01* X799Y39572D01* X805Y39565D01* X812Y39560D01* X820Y39556D01* X828Y39553D01* X837Y39552D01* X845Y39552D01* X854Y39554D01* X862Y39557D01* X869Y39562D01* X876Y39568D01* X881Y39575D01* X884Y39580D01* Y39428D01* X882Y39431D01* X877Y39438D01* X870Y39444D01* X863Y39448D01* X855Y39451D01* X846Y39453D01* X837Y39453D01* X829Y39452D01* X821Y39449D01* X813Y39445D01* X806Y39439D01* X800Y39433D01* X796Y39425D01* X793Y39417D01* X784Y39391D01* X773Y39366D01* X760Y39343D01* X745Y39320D01* X728Y39299D01* X709Y39280D01* X688Y39262D01* X666Y39247D01* X642Y39233D01* X625Y39225D01* Y39774D01* G37* G36* Y39118D02*X656Y39129D01* X688Y39144D01* X720Y39162D01* X749Y39183D01* X777Y39207D01* X802Y39232D01* X825Y39260D01* X845Y39290D01* X863Y39322D01* X877Y39355D01* X884Y39374D01* Y37674D01* X880Y37683D01* X862Y37715D01* X841Y37744D01* X817Y37772D01* X792Y37797D01* X764Y37820D01* X734Y37840D01* X702Y37858D01* X669Y37873D01* X635Y37884D01* X626Y37886D01* X625D01* Y39118D01* G37* G36* Y37782D02*X633Y37779D01* X658Y37768D01* X681Y37755D01* X704Y37740D01* X725Y37723D01* X744Y37704D01* X762Y37683D01* X777Y37661D01* X791Y37637D01* X802Y37613D01* X811Y37587D01* X815Y37579D01* X819Y37572D01* X825Y37565D01* X832Y37560D01* X840Y37556D01* X848Y37553D01* X857Y37552D01* X865Y37552D01* X874Y37554D01* X882Y37557D01* X884Y37559D01* Y37447D01* X883Y37448D01* X875Y37451D01* X866Y37453D01* X857Y37453D01* X849Y37452D01* X841Y37449D01* X833Y37445D01* X826Y37439D01* X820Y37433D01* X816Y37425D01* X813Y37417D01* X804Y37391D01* X793Y37366D01* X780Y37343D01* X765Y37320D01* X748Y37299D01* X729Y37280D01* X708Y37262D01* X686Y37247D01* X662Y37233D01* X638Y37222D01* X625Y37217D01* Y37782D01* G37* G36* Y37115D02*X633Y37115D01* X641Y37117D01* X676Y37129D01* X708Y37144D01* X740Y37162D01* X769Y37183D01* X797Y37207D01* X822Y37232D01* X845Y37260D01* X865Y37290D01* X883Y37322D01* X884Y37324D01* Y35711D01* X882Y35715D01* X861Y35744D01* X837Y35772D01* X812Y35797D01* X784Y35820D01* X754Y35840D01* X722Y35858D01* X689Y35873D01* X655Y35884D01* X646Y35886D01* X637Y35886D01* X629Y35885D01* X625Y35883D01* Y37115D01* G37* G36* Y35789D02*X627Y35788D01* X653Y35779D01* X678Y35768D01* X701Y35755D01* X724Y35740D01* X745Y35723D01* X764Y35704D01* X782Y35683D01* X797Y35661D01* X811Y35637D01* X822Y35613D01* X831Y35587D01* X835Y35579D01* X839Y35572D01* X845Y35565D01* X852Y35560D01* X860Y35556D01* X868Y35553D01* X877Y35552D01* X884Y35552D01* Y35453D01* X877Y35453D01* X869Y35452D01* X861Y35449D01* X853Y35445D01* X846Y35439D01* X840Y35433D01* X836Y35425D01* X833Y35417D01* X824Y35391D01* X813Y35366D01* X800Y35343D01* X785Y35320D01* X768Y35299D01* X749Y35280D01* X728Y35262D01* X706Y35247D01* X682Y35233D01* X658Y35222D01* X632Y35213D01* X625Y35210D01* Y35789D01* G37* G36* Y35120D02*X627Y35119D01* X636Y35116D01* X644Y35115D01* X653Y35115D01* X661Y35117D01* X696Y35129D01* X728Y35144D01* X760Y35162D01* X789Y35183D01* X817Y35207D01* X842Y35232D01* X865Y35260D01* X884Y35288D01* Y33740D01* X881Y33744D01* X857Y33772D01* X832Y33797D01* X804Y33820D01* X774Y33840D01* X742Y33858D01* X709Y33873D01* X675Y33884D01* X666Y33886D01* X657Y33886D01* X649Y33885D01* X641Y33882D01* X633Y33878D01* X626Y33872D01* X625Y33871D01* Y35120D01* G37* G36* Y33801D02*X632Y33796D01* X639Y33791D01* X647Y33788D01* X673Y33779D01* X698Y33768D01* X721Y33755D01* X744Y33740D01* X765Y33723D01* X784Y33704D01* X802Y33683D01* X817Y33661D01* X831Y33637D01* X842Y33613D01* X851Y33587D01* X855Y33579D01* X859Y33572D01* X865Y33565D01* X872Y33560D01* X880Y33556D01* X884Y33555D01* Y33450D01* X881Y33449D01* X873Y33445D01* X866Y33439D01* X860Y33433D01* X856Y33425D01* X853Y33417D01* X844Y33391D01* X833Y33366D01* X820Y33343D01* X805Y33320D01* X788Y33299D01* X769Y33280D01* X748Y33262D01* X726Y33247D01* X702Y33233D01* X678Y33222D01* X652Y33213D01* X644Y33209D01* X637Y33205D01* X630Y33199D01* X625Y33192D01* Y33801D01* G37* G36* Y33138D02*X627Y33135D01* X633Y33128D01* X640Y33123D01* X647Y33119D01* X656Y33116D01* X664Y33115D01* X673Y33115D01* X681Y33117D01* X716Y33129D01* X748Y33144D01* X780Y33162D01* X809Y33183D01* X837Y33207D01* X862Y33232D01* X884Y33259D01* Y31764D01* X877Y31772D01* X852Y31797D01* X824Y31820D01* X794Y31840D01* X762Y31858D01* X729Y31873D01* X695Y31884D01* X686Y31886D01* X677Y31886D01* X669Y31885D01* X661Y31882D01* X653Y31878D01* X646Y31872D01* X640Y31865D01* X636Y31858D01* X633Y31850D01* X631Y31841D01* X631Y31833D01* X632Y31824D01* X635Y31816D01* X639Y31808D01* X645Y31801D01* X652Y31796D01* X659Y31791D01* X667Y31788D01* X693Y31779D01* X718Y31768D01* X741Y31755D01* X764Y31740D01* X785Y31723D01* X804Y31704D01* X822Y31683D01* X837Y31661D01* X851Y31637D01* X862Y31613D01* X871Y31587D01* X875Y31579D01* X879Y31572D01* X884Y31567D01* Y31437D01* X880Y31433D01* X876Y31425D01* X873Y31417D01* X864Y31391D01* X853Y31366D01* X840Y31343D01* X825Y31320D01* X808Y31299D01* X789Y31280D01* X768Y31262D01* X746Y31247D01* X722Y31233D01* X698Y31222D01* X672Y31213D01* X664Y31209D01* X657Y31205D01* X650Y31199D01* X645Y31192D01* X641Y31184D01* X638Y31176D01* X637Y31167D01* X637Y31159D01* X639Y31150D01* X642Y31142D01* X647Y31135D01* X653Y31128D01* X660Y31123D01* X667Y31119D01* X676Y31116D01* X684Y31115D01* X693Y31115D01* X701Y31117D01* X736Y31129D01* X768Y31144D01* X800Y31162D01* X829Y31183D01* X857Y31207D01* X882Y31232D01* X884Y31235D01* Y29785D01* X872Y29797D01* X844Y29820D01* X814Y29840D01* X782Y29858D01* X749Y29873D01* X715Y29884D01* X706Y29886D01* X697Y29886D01* X689Y29885D01* X681Y29882D01* X673Y29878D01* X666Y29872D01* X660Y29865D01* X656Y29858D01* X653Y29850D01* X651Y29841D01* X651Y29833D01* X652Y29824D01* X655Y29816D01* X659Y29808D01* X665Y29801D01* X672Y29796D01* X679Y29791D01* X687Y29788D01* X713Y29779D01* X738Y29768D01* X761Y29755D01* X784Y29740D01* X805Y29723D01* X824Y29704D01* X842Y29683D01* X857Y29661D01* X871Y29637D01* X882Y29613D01* X884Y29608D01* Y29391D01* X873Y29366D01* X860Y29343D01* X845Y29320D01* X828Y29299D01* X809Y29280D01* X788Y29262D01* X766Y29247D01* X742Y29233D01* X718Y29222D01* X692Y29213D01* X684Y29209D01* X677Y29205D01* X670Y29199D01* X665Y29192D01* X661Y29184D01* X658Y29176D01* X657Y29167D01* X657Y29159D01* X659Y29150D01* X662Y29142D01* X667Y29135D01* X673Y29128D01* X680Y29123D01* X687Y29119D01* X696Y29116D01* X704Y29115D01* X713Y29115D01* X721Y29117D01* X756Y29129D01* X788Y29144D01* X820Y29162D01* X849Y29183D01* X877Y29207D01* X884Y29214D01* Y27804D01* X864Y27820D01* X834Y27840D01* X802Y27858D01* X769Y27873D01* X735Y27884D01* X726Y27886D01* X717Y27886D01* X709Y27885D01* X701Y27882D01* X693Y27878D01* X686Y27872D01* X680Y27865D01* X676Y27858D01* X673Y27850D01* X671Y27841D01* X671Y27833D01* X672Y27824D01* X675Y27816D01* X679Y27808D01* X685Y27801D01* X692Y27796D01* X699Y27791D01* X707Y27788D01* X733Y27779D01* X758Y27768D01* X781Y27755D01* X804Y27740D01* X825Y27723D01* X844Y27704D01* X862Y27683D01* X877Y27661D01* X884Y27650D01* Y27350D01* X880Y27343D01* X865Y27320D01* X848Y27299D01* X829Y27280D01* X808Y27262D01* X786Y27247D01* X762Y27233D01* X738Y27222D01* X712Y27213D01* X704Y27209D01* X697Y27205D01* X690Y27199D01* X685Y27192D01* X681Y27184D01* X678Y27176D01* X677Y27167D01* X677Y27159D01* X679Y27150D01* X682Y27142D01* X687Y27135D01* X693Y27128D01* X700Y27123D01* X707Y27119D01* X716Y27116D01* X724Y27115D01* X733Y27115D01* X741Y27117D01* X776Y27129D01* X808Y27144D01* X840Y27162D01* X869Y27183D01* X884Y27196D01* Y25820D01* X884Y25820D01* X854Y25840D01* X822Y25858D01* X789Y25873D01* X755Y25884D01* X746Y25886D01* X737Y25886D01* X729Y25885D01* X721Y25882D01* X713Y25878D01* X706Y25872D01* X700Y25865D01* X696Y25858D01* X693Y25850D01* X691Y25841D01* X691Y25833D01* X692Y25824D01* X695Y25816D01* X699Y25808D01* X705Y25801D01* X712Y25796D01* X719Y25791D01* X727Y25788D01* X753Y25779D01* X778Y25768D01* X801Y25755D01* X824Y25740D01* X845Y25723D01* X864Y25704D01* X882Y25683D01* X884Y25680D01* Y25319D01* X868Y25299D01* X849Y25280D01* X828Y25262D01* X806Y25247D01* X782Y25233D01* X758Y25222D01* X732Y25213D01* X724Y25209D01* X717Y25205D01* X710Y25199D01* X705Y25192D01* X701Y25184D01* X698Y25176D01* X697Y25167D01* X697Y25159D01* X699Y25150D01* X702Y25142D01* X707Y25135D01* X713Y25128D01* X720Y25123D01* X727Y25119D01* X736Y25116D01* X744Y25115D01* X753Y25115D01* X761Y25117D01* X796Y25129D01* X828Y25144D01* X860Y25162D01* X884Y25180D01* Y23834D01* X874Y23840D01* X842Y23858D01* X809Y23873D01* X775Y23884D01* X766Y23886D01* X757Y23886D01* X749Y23885D01* X741Y23882D01* X733Y23878D01* X726Y23872D01* X720Y23865D01* X716Y23858D01* X713Y23850D01* X711Y23841D01* X711Y23833D01* X712Y23824D01* X715Y23816D01* X719Y23808D01* X725Y23801D01* X732Y23796D01* X739Y23791D01* X747Y23788D01* X773Y23779D01* X798Y23768D01* X821Y23755D01* X844Y23740D01* X865Y23723D01* X884Y23704D01* Y23295D01* X869Y23280D01* X848Y23262D01* X826Y23247D01* X802Y23233D01* X778Y23222D01* X752Y23213D01* X744Y23209D01* X737Y23205D01* X730Y23199D01* X725Y23192D01* X721Y23184D01* X718Y23176D01* X717Y23167D01* X717Y23159D01* X719Y23150D01* X722Y23142D01* X727Y23135D01* X733Y23128D01* X740Y23123D01* X747Y23119D01* X756Y23116D01* X764Y23115D01* X773Y23115D01* X781Y23117D01* X816Y23129D01* X848Y23144D01* X880Y23162D01* X884Y23165D01* Y21846D01* X862Y21858D01* X829Y21873D01* X795Y21884D01* X786Y21886D01* X777Y21886D01* X769Y21885D01* X761Y21882D01* X753Y21878D01* X746Y21872D01* X740Y21865D01* X736Y21858D01* X733Y21850D01* X731Y21841D01* X731Y21833D01* X732Y21824D01* X735Y21816D01* X739Y21808D01* X745Y21801D01* X752Y21796D01* X759Y21791D01* X767Y21788D01* X793Y21779D01* X818Y21768D01* X841Y21755D01* X864Y21740D01* X884Y21724D01* Y21276D01* X868Y21262D01* X846Y21247D01* X822Y21233D01* X798Y21222D01* X772Y21213D01* X764Y21209D01* X757Y21205D01* X750Y21199D01* X745Y21192D01* X741Y21184D01* X738Y21176D01* X737Y21167D01* X737Y21159D01* X739Y21150D01* X742Y21142D01* X747Y21135D01* X753Y21128D01* X760Y21123D01* X767Y21119D01* X776Y21116D01* X784Y21115D01* X793Y21115D01* X801Y21117D01* X836Y21129D01* X868Y21144D01* X884Y21153D01* Y19857D01* X882Y19858D01* X849Y19873D01* X815Y19884D01* X806Y19886D01* X797Y19886D01* X789Y19885D01* X781Y19882D01* X773Y19878D01* X766Y19872D01* X760Y19865D01* X756Y19858D01* X753Y19850D01* X751Y19841D01* X751Y19833D01* X752Y19824D01* X755Y19816D01* X759Y19808D01* X765Y19801D01* X772Y19796D01* X779Y19791D01* X787Y19788D01* X813Y19779D01* X838Y19768D01* X861Y19755D01* X884Y19740D01* Y19259D01* X866Y19247D01* X842Y19233D01* X818Y19222D01* X792Y19213D01* X784Y19209D01* X777Y19205D01* X770Y19199D01* X765Y19192D01* X761Y19184D01* X758Y19176D01* X757Y19167D01* X757Y19159D01* X759Y19150D01* X762Y19142D01* X767Y19135D01* X773Y19128D01* X780Y19123D01* X787Y19119D01* X796Y19116D01* X804Y19115D01* X813Y19115D01* X821Y19117D01* X856Y19129D01* X884Y19142D01* Y17866D01* X869Y17873D01* X835Y17884D01* X826Y17886D01* X817Y17886D01* X809Y17885D01* X801Y17882D01* X793Y17878D01* X786Y17872D01* X780Y17865D01* X776Y17858D01* X773Y17850D01* X771Y17841D01* X771Y17833D01* X772Y17824D01* X775Y17816D01* X779Y17808D01* X785Y17801D01* X792Y17796D01* X799Y17791D01* X807Y17788D01* X833Y17779D01* X858Y17768D01* X881Y17755D01* X884Y17754D01* Y17246D01* X862Y17233D01* X838Y17222D01* X812Y17213D01* X804Y17209D01* X797Y17205D01* X790Y17199D01* X785Y17192D01* X781Y17184D01* X778Y17176D01* X777Y17167D01* X777Y17159D01* X779Y17150D01* X782Y17142D01* X787Y17135D01* X793Y17128D01* X800Y17123D01* X807Y17119D01* X816Y17116D01* X824Y17115D01* X833Y17115D01* X841Y17117D01* X876Y17129D01* X884Y17133D01* Y15874D01* X855Y15884D01* X846Y15886D01* X837Y15886D01* X829Y15885D01* X821Y15882D01* X813Y15878D01* X806Y15872D01* X800Y15865D01* X796Y15858D01* X793Y15850D01* X791Y15841D01* X791Y15833D01* X792Y15824D01* X795Y15816D01* X799Y15808D01* X805Y15801D01* X812Y15796D01* X819Y15791D01* X827Y15788D01* X853Y15779D01* X878Y15768D01* X884Y15765D01* Y15234D01* X882Y15233D01* X858Y15222D01* X832Y15213D01* X824Y15209D01* X817Y15205D01* X810Y15199D01* X805Y15192D01* X801Y15184D01* X798Y15176D01* X797Y15167D01* X797Y15159D01* X799Y15150D01* X802Y15142D01* X807Y15135D01* X813Y15128D01* X820Y15123D01* X827Y15119D01* X836Y15116D01* X844Y15115D01* X853Y15115D01* X861Y15117D01* X884Y15125D01* Y13881D01* X875Y13884D01* X866Y13886D01* X857Y13886D01* X849Y13885D01* X841Y13882D01* X833Y13878D01* X826Y13872D01* X820Y13865D01* X816Y13858D01* X813Y13850D01* X811Y13841D01* X811Y13833D01* X812Y13824D01* X815Y13816D01* X819Y13808D01* X825Y13801D01* X832Y13796D01* X839Y13791D01* X847Y13788D01* X873Y13779D01* X884Y13774D01* Y13225D01* X878Y13222D01* X852Y13213D01* X844Y13209D01* X837Y13205D01* X830Y13199D01* X825Y13192D01* X821Y13184D01* X818Y13176D01* X817Y13167D01* X817Y13159D01* X819Y13150D01* X822Y13142D01* X827Y13135D01* X833Y13128D01* X840Y13123D01* X847Y13119D01* X856Y13116D01* X864Y13115D01* X873Y13115D01* X881Y13117D01* X884Y13118D01* Y11886D01* X877Y11886D01* X869Y11885D01* X861Y11882D01* X853Y11878D01* X846Y11872D01* X840Y11865D01* X836Y11858D01* X833Y11850D01* X831Y11841D01* X831Y11833D01* X832Y11824D01* X835Y11816D01* X839Y11808D01* X845Y11801D01* X852Y11796D01* X859Y11791D01* X867Y11788D01* X884Y11782D01* Y11217D01* X872Y11213D01* X864Y11209D01* X857Y11205D01* X850Y11199D01* X845Y11192D01* X841Y11184D01* X838Y11176D01* X837Y11167D01* X837Y11159D01* X839Y11150D01* X842Y11142D01* X847Y11135D01* X853Y11128D01* X860Y11123D01* X867Y11119D01* X876Y11116D01* X884Y11115D01* Y9883D01* X881Y9882D01* X873Y9878D01* X866Y9872D01* X860Y9865D01* X856Y9858D01* X853Y9850D01* X851Y9841D01* X851Y9833D01* X852Y9824D01* X855Y9816D01* X859Y9808D01* X865Y9801D01* X872Y9796D01* X879Y9791D01* X884Y9789D01* Y9209D01* X877Y9205D01* X870Y9199D01* X865Y9192D01* X861Y9184D01* X858Y9176D01* X857Y9167D01* X857Y9159D01* X859Y9150D01* X862Y9142D01* X867Y9135D01* X873Y9128D01* X880Y9123D01* X884Y9121D01* Y7870D01* X880Y7865D01* X876Y7858D01* X873Y7850D01* X871Y7841D01* X871Y7833D01* X872Y7824D01* X875Y7816D01* X879Y7808D01* X884Y7802D01* Y7190D01* X881Y7184D01* X878Y7176D01* X877Y7167D01* X877Y7159D01* X879Y7150D01* X882Y7142D01* X884Y7140D01* Y0D01* X625D01* Y1196D01* X645Y1179D01* X675Y1159D01* X707Y1141D01* X740Y1127D01* X774Y1115D01* X783Y1113D01* X792Y1113D01* X800Y1115D01* X808Y1117D01* X816Y1122D01* X823Y1127D01* X829Y1134D01* X833Y1141D01* X836Y1149D01* X838Y1158D01* X838Y1167D01* X837Y1175D01* X834Y1183D01* X830Y1191D01* X824Y1198D01* X817Y1204D01* X810Y1208D01* X802Y1211D01* X776Y1220D01* X751Y1231D01* X728Y1244D01* X705Y1259D01* X684Y1276D01* X665Y1295D01* X647Y1316D01* X632Y1338D01* X625Y1349D01* Y1650D01* X629Y1657D01* X644Y1679D01* X661Y1700D01* X680Y1719D01* X701Y1737D01* X723Y1752D01* X747Y1766D01* X771Y1777D01* X797Y1786D01* X805Y1790D01* X812Y1794D01* X819Y1800D01* X824Y1807D01* X828Y1815D01* X831Y1823D01* X832Y1832D01* X832Y1840D01* X830Y1849D01* X827Y1857D01* X822Y1864D01* X816Y1871D01* X809Y1876D01* X802Y1880D01* X793Y1883D01* X785Y1884D01* X776Y1884D01* X768Y1882D01* X733Y1870D01* X701Y1855D01* X669Y1837D01* X640Y1816D01* X625Y1804D01* Y3179D01* X625Y3179D01* X655Y3159D01* X687Y3141D01* X720Y3127D01* X754Y3115D01* X763Y3113D01* X772Y3113D01* X780Y3115D01* X788Y3117D01* X796Y3122D01* X803Y3127D01* X809Y3134D01* X813Y3141D01* X816Y3149D01* X818Y3158D01* X818Y3167D01* X817Y3175D01* X814Y3183D01* X810Y3191D01* X804Y3198D01* X797Y3204D01* X790Y3208D01* X782Y3211D01* X756Y3220D01* X731Y3231D01* X708Y3244D01* X685Y3259D01* X664Y3276D01* X645Y3295D01* X627Y3316D01* X625Y3319D01* Y3680D01* X641Y3700D01* X660Y3719D01* X681Y3737D01* X703Y3752D01* X727Y3766D01* X751Y3777D01* X777Y3786D01* X785Y3790D01* X792Y3794D01* X799Y3800D01* X804Y3807D01* X808Y3815D01* X811Y3823D01* X812Y3832D01* X812Y3840D01* X810Y3849D01* X807Y3857D01* X802Y3864D01* X796Y3871D01* X789Y3876D01* X782Y3880D01* X773Y3883D01* X765Y3884D01* X756Y3884D01* X748Y3882D01* X713Y3870D01* X681Y3855D01* X649Y3837D01* X625Y3820D01* Y5166D01* X635Y5159D01* X667Y5141D01* X700Y5127D01* X734Y5115D01* X743Y5113D01* X752Y5113D01* X760Y5115D01* X768Y5117D01* X776Y5122D01* X783Y5127D01* X789Y5134D01* X793Y5141D01* X796Y5149D01* X798Y5158D01* X798Y5167D01* X797Y5175D01* X794Y5183D01* X790Y5191D01* X784Y5198D01* X777Y5204D01* X770Y5208D01* X762Y5211D01* X736Y5220D01* X711Y5231D01* X688Y5244D01* X665Y5259D01* X644Y5276D01* X625Y5295D01* Y5704D01* X640Y5719D01* X661Y5737D01* X683Y5752D01* X707Y5766D01* X731Y5777D01* X757Y5786D01* X765Y5790D01* X772Y5794D01* X779Y5800D01* X784Y5807D01* X788Y5815D01* X791Y5823D01* X792Y5832D01* X792Y5840D01* X790Y5849D01* X787Y5857D01* X782Y5864D01* X776Y5871D01* X769Y5876D01* X762Y5880D01* X753Y5883D01* X745Y5884D01* X736Y5884D01* X728Y5882D01* X693Y5870D01* X661Y5855D01* X629Y5837D01* X625Y5834D01* Y7153D01* X647Y7141D01* X680Y7127D01* X714Y7115D01* X723Y7113D01* X732Y7113D01* X740Y7115D01* X748Y7117D01* X756Y7122D01* X763Y7127D01* X769Y7134D01* X773Y7141D01* X776Y7149D01* X778Y7158D01* X778Y7167D01* X777Y7175D01* X774Y7183D01* X770Y7191D01* X764Y7198D01* X757Y7204D01* X750Y7208D01* X742Y7211D01* X716Y7220D01* X691Y7231D01* X668Y7244D01* X645Y7259D01* X625Y7276D01* Y7723D01* X641Y7737D01* X663Y7752D01* X687Y7766D01* X711Y7777D01* X737Y7786D01* X745Y7790D01* X752Y7794D01* X759Y7800D01* X764Y7807D01* X768Y7815D01* X771Y7823D01* X772Y7832D01* X772Y7840D01* X770Y7849D01* X767Y7857D01* X762Y7864D01* X756Y7871D01* X749Y7876D01* X742Y7880D01* X733Y7883D01* X725Y7884D01* X716Y7884D01* X708Y7882D01* X673Y7870D01* X641Y7855D01* X625Y7846D01* Y9142D01* X627Y9141D01* X660Y9127D01* X694Y9115D01* X703Y9113D01* X712Y9113D01* X720Y9115D01* X728Y9117D01* X736Y9122D01* X743Y9127D01* X749Y9134D01* X753Y9141D01* X756Y9149D01* X758Y9158D01* X758Y9167D01* X757Y9175D01* X754Y9183D01* X750Y9191D01* X744Y9198D01* X737Y9204D01* X730Y9208D01* X722Y9211D01* X696Y9220D01* X671Y9231D01* X648Y9244D01* X625Y9259D01* Y9740D01* X643Y9752D01* X667Y9766D01* X691Y9777D01* X717Y9786D01* X725Y9790D01* X732Y9794D01* X739Y9800D01* X744Y9807D01* X748Y9815D01* X751Y9823D01* X752Y9832D01* X752Y9840D01* X750Y9849D01* X747Y9857D01* X742Y9864D01* X736Y9871D01* X729Y9876D01* X722Y9880D01* X713Y9883D01* X705Y9884D01* X696Y9884D01* X688Y9882D01* X653Y9870D01* X625Y9857D01* Y11133D01* X640Y11127D01* X674Y11115D01* X683Y11113D01* X692Y11113D01* X700Y11115D01* X708Y11117D01* X716Y11122D01* X723Y11127D01* X729Y11134D01* X733Y11141D01* X736Y11149D01* X738Y11158D01* X738Y11167D01* X737Y11175D01* X734Y11183D01* X730Y11191D01* X724Y11198D01* X717Y11204D01* X710Y11208D01* X702Y11211D01* X676Y11220D01* X651Y11231D01* X628Y11244D01* X625Y11246D01* Y11754D01* X647Y11766D01* X671Y11777D01* X697Y11786D01* X705Y11790D01* X712Y11794D01* X719Y11800D01* X724Y11807D01* X728Y11815D01* X731Y11823D01* X732Y11832D01* X732Y11840D01* X730Y11849D01* X727Y11857D01* X722Y11864D01* X716Y11871D01* X709Y11876D01* X702Y11880D01* X693Y11883D01* X685Y11884D01* X676Y11884D01* X668Y11882D01* X633Y11870D01* X625Y11866D01* Y13125D01* X654Y13115D01* X663Y13113D01* X672Y13113D01* X680Y13115D01* X688Y13117D01* X696Y13122D01* X703Y13127D01* X709Y13134D01* X713Y13141D01* X716Y13149D01* X718Y13158D01* X718Y13167D01* X717Y13175D01* X714Y13183D01* X710Y13191D01* X704Y13198D01* X697Y13204D01* X690Y13208D01* X682Y13211D01* X656Y13220D01* X631Y13231D01* X625Y13234D01* Y13765D01* X627Y13766D01* X651Y13777D01* X677Y13786D01* X685Y13790D01* X692Y13794D01* X699Y13800D01* X704Y13807D01* X708Y13815D01* X711Y13823D01* X712Y13832D01* X712Y13840D01* X710Y13849D01* X707Y13857D01* X702Y13864D01* X696Y13871D01* X689Y13876D01* X682Y13880D01* X673Y13883D01* X665Y13884D01* X656Y13884D01* X648Y13882D01* X625Y13874D01* Y15118D01* X634Y15115D01* X643Y15113D01* X652Y15113D01* X660Y15115D01* X668Y15117D01* X676Y15122D01* X683Y15127D01* X689Y15134D01* X693Y15141D01* X696Y15149D01* X698Y15158D01* X698Y15167D01* X697Y15175D01* X694Y15183D01* X690Y15191D01* X684Y15198D01* X677Y15204D01* X670Y15208D01* X662Y15211D01* X636Y15220D01* X625Y15225D01* Y15775D01* X631Y15777D01* X657Y15786D01* X665Y15790D01* X672Y15794D01* X679Y15800D01* X684Y15807D01* X688Y15815D01* X691Y15823D01* X692Y15832D01* X692Y15840D01* X690Y15849D01* X687Y15857D01* X682Y15864D01* X676Y15871D01* X669Y15876D01* X662Y15880D01* X653Y15883D01* X645Y15884D01* X636Y15884D01* X628Y15882D01* X625Y15881D01* Y17113D01* X632Y17113D01* X640Y17115D01* X648Y17117D01* X656Y17122D01* X663Y17127D01* X669Y17134D01* X673Y17141D01* X676Y17149D01* X678Y17158D01* X678Y17167D01* X677Y17175D01* X674Y17183D01* X670Y17191D01* X664Y17198D01* X657Y17204D01* X650Y17208D01* X642Y17211D01* X625Y17217D01* Y17782D01* X637Y17786D01* X645Y17790D01* X652Y17794D01* X659Y17800D01* X664Y17807D01* X668Y17815D01* X671Y17823D01* X672Y17832D01* X672Y17840D01* X670Y17849D01* X667Y17857D01* X662Y17864D01* X656Y17871D01* X649Y17876D01* X642Y17880D01* X633Y17883D01* X625Y17884D01* Y19116D01* X628Y19117D01* X636Y19122D01* X643Y19127D01* X649Y19134D01* X653Y19141D01* X656Y19149D01* X658Y19158D01* X658Y19167D01* X657Y19175D01* X654Y19183D01* X650Y19191D01* X644Y19198D01* X637Y19204D01* X630Y19208D01* X625Y19210D01* Y19790D01* X632Y19794D01* X639Y19800D01* X644Y19807D01* X648Y19815D01* X651Y19823D01* X652Y19832D01* X652Y19840D01* X650Y19849D01* X647Y19857D01* X642Y19864D01* X636Y19871D01* X629Y19876D01* X625Y19878D01* Y21130D01* X629Y21134D01* X633Y21141D01* X636Y21149D01* X638Y21158D01* X638Y21167D01* X637Y21175D01* X634Y21183D01* X630Y21191D01* X625Y21197D01* Y21809D01* X628Y21815D01* X631Y21823D01* X632Y21832D01* X632Y21840D01* X630Y21849D01* X627Y21857D01* X625Y21859D01* Y33138D01* G37* G36* X884Y40000D02*X1064D01* Y21625D01* X1055Y21651D01* X1040Y21683D01* X1022Y21715D01* X1001Y21744D01* X977Y21772D01* X952Y21797D01* X924Y21820D01* X894Y21840D01* X884Y21846D01* Y23165D01* X909Y23183D01* X937Y23207D01* X962Y23232D01* X985Y23260D01* X1005Y23290D01* X1023Y23322D01* X1037Y23355D01* X1049Y23389D01* X1051Y23398D01* X1051Y23407D01* X1050Y23415D01* X1047Y23423D01* X1042Y23431D01* X1037Y23438D01* X1030Y23444D01* X1023Y23448D01* X1015Y23451D01* X1006Y23453D01* X997Y23453D01* X989Y23452D01* X981Y23449D01* X973Y23445D01* X966Y23439D01* X960Y23433D01* X956Y23425D01* X953Y23417D01* X944Y23391D01* X933Y23366D01* X920Y23343D01* X905Y23320D01* X888Y23299D01* X884Y23295D01* Y23704D01* X884Y23704D01* X902Y23683D01* X917Y23661D01* X931Y23637D01* X942Y23613D01* X951Y23587D01* X955Y23579D01* X959Y23572D01* X965Y23565D01* X972Y23560D01* X980Y23556D01* X988Y23553D01* X997Y23552D01* X1005Y23552D01* X1014Y23554D01* X1022Y23557D01* X1029Y23562D01* X1036Y23568D01* X1041Y23575D01* X1045Y23582D01* X1048Y23591D01* X1049Y23599D01* X1049Y23608D01* X1047Y23617D01* X1035Y23651D01* X1020Y23683D01* X1002Y23715D01* X981Y23744D01* X957Y23772D01* X932Y23797D01* X904Y23820D01* X884Y23834D01* Y25180D01* X889Y25183D01* X917Y25207D01* X942Y25232D01* X965Y25260D01* X985Y25290D01* X1003Y25322D01* X1017Y25355D01* X1029Y25389D01* X1031Y25398D01* X1031Y25407D01* X1030Y25415D01* X1027Y25423D01* X1022Y25431D01* X1017Y25438D01* X1010Y25444D01* X1003Y25448D01* X995Y25451D01* X986Y25453D01* X977Y25453D01* X969Y25452D01* X961Y25449D01* X953Y25445D01* X946Y25439D01* X940Y25433D01* X936Y25425D01* X933Y25417D01* X924Y25391D01* X913Y25366D01* X900Y25343D01* X885Y25320D01* X884Y25319D01* Y25680D01* X897Y25661D01* X911Y25637D01* X922Y25613D01* X931Y25587D01* X935Y25579D01* X939Y25572D01* X945Y25565D01* X952Y25560D01* X960Y25556D01* X968Y25553D01* X977Y25552D01* X985Y25552D01* X994Y25554D01* X1002Y25557D01* X1009Y25562D01* X1016Y25568D01* X1021Y25575D01* X1025Y25582D01* X1028Y25591D01* X1029Y25599D01* X1029Y25608D01* X1027Y25617D01* X1015Y25651D01* X1000Y25683D01* X982Y25715D01* X961Y25744D01* X937Y25772D01* X912Y25797D01* X884Y25820D01* Y27196D01* X897Y27207D01* X922Y27232D01* X945Y27260D01* X965Y27290D01* X983Y27322D01* X997Y27355D01* X1009Y27389D01* X1011Y27398D01* X1011Y27407D01* X1010Y27415D01* X1007Y27423D01* X1002Y27431D01* X997Y27438D01* X990Y27444D01* X983Y27448D01* X975Y27451D01* X966Y27453D01* X957Y27453D01* X949Y27452D01* X941Y27449D01* X933Y27445D01* X926Y27439D01* X920Y27433D01* X916Y27425D01* X913Y27417D01* X904Y27391D01* X893Y27366D01* X884Y27350D01* Y27650D01* X891Y27637D01* X902Y27613D01* X911Y27587D01* X915Y27579D01* X919Y27572D01* X925Y27565D01* X932Y27560D01* X940Y27556D01* X948Y27553D01* X957Y27552D01* X965Y27552D01* X974Y27554D01* X982Y27557D01* X989Y27562D01* X996Y27568D01* X1001Y27575D01* X1005Y27582D01* X1008Y27591D01* X1009Y27599D01* X1009Y27608D01* X1007Y27617D01* X995Y27651D01* X980Y27683D01* X962Y27715D01* X941Y27744D01* X917Y27772D01* X892Y27797D01* X884Y27804D01* Y29214D01* X902Y29232D01* X925Y29260D01* X945Y29290D01* X963Y29322D01* X977Y29355D01* X989Y29389D01* X991Y29398D01* X991Y29407D01* X990Y29415D01* X987Y29423D01* X982Y29431D01* X977Y29438D01* X970Y29444D01* X963Y29448D01* X955Y29451D01* X946Y29453D01* X937Y29453D01* X929Y29452D01* X921Y29449D01* X913Y29445D01* X906Y29439D01* X900Y29433D01* X896Y29425D01* X893Y29417D01* X884Y29391D01* X884Y29391D01* Y29608D01* X891Y29587D01* X895Y29579D01* X899Y29572D01* X905Y29565D01* X912Y29560D01* X920Y29556D01* X928Y29553D01* X937Y29552D01* X945Y29552D01* X954Y29554D01* X962Y29557D01* X969Y29562D01* X976Y29568D01* X981Y29575D01* X985Y29582D01* X988Y29591D01* X989Y29599D01* X989Y29608D01* X987Y29617D01* X975Y29651D01* X960Y29683D01* X942Y29715D01* X921Y29744D01* X897Y29772D01* X884Y29785D01* Y31235D01* X905Y31260D01* X925Y31290D01* X943Y31322D01* X957Y31355D01* X969Y31389D01* X971Y31398D01* X971Y31407D01* X970Y31415D01* X967Y31423D01* X962Y31431D01* X957Y31438D01* X950Y31444D01* X943Y31448D01* X935Y31451D01* X926Y31453D01* X917Y31453D01* X909Y31452D01* X901Y31449D01* X893Y31445D01* X886Y31439D01* X884Y31437D01* Y31567D01* X885Y31565D01* X892Y31560D01* X900Y31556D01* X908Y31553D01* X917Y31552D01* X925Y31552D01* X934Y31554D01* X942Y31557D01* X949Y31562D01* X956Y31568D01* X961Y31575D01* X965Y31582D01* X968Y31591D01* X969Y31599D01* X969Y31608D01* X967Y31617D01* X955Y31651D01* X940Y31683D01* X922Y31715D01* X901Y31744D01* X884Y31764D01* Y33259D01* X885Y33260D01* X905Y33290D01* X923Y33322D01* X937Y33355D01* X949Y33389D01* X951Y33398D01* X951Y33407D01* X950Y33415D01* X947Y33423D01* X942Y33431D01* X937Y33438D01* X930Y33444D01* X923Y33448D01* X915Y33451D01* X906Y33453D01* X897Y33453D01* X889Y33452D01* X884Y33450D01* Y33555D01* X888Y33553D01* X897Y33552D01* X905Y33552D01* X914Y33554D01* X922Y33557D01* X929Y33562D01* X936Y33568D01* X941Y33575D01* X945Y33582D01* X948Y33591D01* X949Y33599D01* X949Y33608D01* X947Y33617D01* X935Y33651D01* X920Y33683D01* X902Y33715D01* X884Y33740D01* Y35288D01* X885Y35290D01* X903Y35322D01* X917Y35355D01* X929Y35389D01* X931Y35398D01* X931Y35407D01* X930Y35415D01* X927Y35423D01* X922Y35431D01* X917Y35438D01* X910Y35444D01* X903Y35448D01* X895Y35451D01* X886Y35453D01* X884D01* Y35552D01* X885D01* X894Y35554D01* X902Y35557D01* X909Y35562D01* X916Y35568D01* X921Y35575D01* X925Y35582D01* X928Y35591D01* X929Y35599D01* X929Y35608D01* X927Y35617D01* X915Y35651D01* X900Y35683D01* X884Y35711D01* Y37324D01* X897Y37355D01* X909Y37389D01* X911Y37398D01* X911Y37407D01* X910Y37415D01* X907Y37423D01* X902Y37431D01* X897Y37438D01* X890Y37444D01* X884Y37447D01* Y37559D01* X889Y37562D01* X896Y37568D01* X901Y37575D01* X905Y37582D01* X908Y37591D01* X909Y37599D01* X909Y37608D01* X907Y37617D01* X895Y37651D01* X884Y37674D01* Y39374D01* X889Y39389D01* X891Y39398D01* X891Y39407D01* X890Y39415D01* X887Y39423D01* X884Y39428D01* Y39580D01* X885Y39582D01* X888Y39591D01* X889Y39599D01* X889Y39608D01* X887Y39617D01* X884Y39625D01* Y40000D01* G37* G36* X1064Y0D02*X884D01* Y7140D01* X887Y7135D01* X893Y7128D01* X900Y7123D01* X907Y7119D01* X916Y7116D01* X924Y7115D01* X933Y7115D01* X941Y7117D01* X976Y7129D01* X1008Y7144D01* X1040Y7162D01* X1064Y7180D01* Y5834D01* X1054Y5840D01* X1022Y5858D01* X989Y5873D01* X955Y5884D01* X946Y5886D01* X937Y5886D01* X929Y5885D01* X921Y5882D01* X913Y5878D01* X906Y5872D01* X900Y5865D01* X896Y5858D01* X893Y5850D01* X891Y5841D01* X891Y5833D01* X892Y5824D01* X895Y5816D01* X899Y5808D01* X905Y5801D01* X912Y5796D01* X919Y5791D01* X927Y5788D01* X953Y5779D01* X978Y5768D01* X1001Y5755D01* X1024Y5740D01* X1045Y5723D01* X1064Y5704D01* Y5295D01* X1049Y5280D01* X1028Y5262D01* X1006Y5247D01* X982Y5233D01* X958Y5222D01* X932Y5213D01* X924Y5209D01* X917Y5205D01* X910Y5199D01* X905Y5192D01* X901Y5184D01* X898Y5176D01* X897Y5167D01* X897Y5159D01* X899Y5150D01* X902Y5142D01* X907Y5135D01* X913Y5128D01* X920Y5123D01* X927Y5119D01* X936Y5116D01* X944Y5115D01* X953Y5115D01* X961Y5117D01* X996Y5129D01* X1028Y5144D01* X1060Y5162D01* X1064Y5165D01* Y3846D01* X1042Y3858D01* X1009Y3873D01* X975Y3884D01* X966Y3886D01* X957Y3886D01* X949Y3885D01* X941Y3882D01* X933Y3878D01* X926Y3872D01* X920Y3865D01* X916Y3858D01* X913Y3850D01* X911Y3841D01* X911Y3833D01* X912Y3824D01* X915Y3816D01* X919Y3808D01* X925Y3801D01* X932Y3796D01* X939Y3791D01* X947Y3788D01* X973Y3779D01* X998Y3768D01* X1021Y3755D01* X1044Y3740D01* X1064Y3724D01* Y3276D01* X1048Y3262D01* X1026Y3247D01* X1002Y3233D01* X978Y3222D01* X952Y3213D01* X944Y3209D01* X937Y3205D01* X930Y3199D01* X925Y3192D01* X921Y3184D01* X918Y3176D01* X917Y3167D01* X917Y3159D01* X919Y3150D01* X922Y3142D01* X927Y3135D01* X933Y3128D01* X940Y3123D01* X947Y3119D01* X956Y3116D01* X964Y3115D01* X973Y3115D01* X981Y3117D01* X1016Y3129D01* X1048Y3144D01* X1064Y3153D01* Y1857D01* X1062Y1858D01* X1029Y1873D01* X995Y1884D01* X986Y1886D01* X977Y1886D01* X969Y1885D01* X961Y1882D01* X953Y1878D01* X946Y1872D01* X940Y1865D01* X936Y1858D01* X933Y1850D01* X931Y1841D01* X931Y1833D01* X932Y1824D01* X935Y1816D01* X939Y1808D01* X945Y1801D01* X952Y1796D01* X959Y1791D01* X967Y1788D01* X993Y1779D01* X1018Y1768D01* X1041Y1755D01* X1064Y1740D01* Y1259D01* X1046Y1247D01* X1022Y1233D01* X998Y1222D01* X972Y1213D01* X964Y1209D01* X957Y1205D01* X950Y1199D01* X945Y1192D01* X941Y1184D01* X938Y1176D01* X937Y1167D01* X937Y1159D01* X939Y1150D01* X942Y1142D01* X947Y1135D01* X953Y1128D01* X960Y1123D01* X967Y1119D01* X976Y1116D01* X984Y1115D01* X993Y1115D01* X1001Y1117D01* X1036Y1129D01* X1064Y1142D01* Y0D01* G37* G36* Y7319D02*X1048Y7299D01* X1029Y7280D01* X1008Y7262D01* X986Y7247D01* X962Y7233D01* X938Y7222D01* X912Y7213D01* X904Y7209D01* X897Y7205D01* X890Y7199D01* X885Y7192D01* X884Y7190D01* Y7802D01* X885Y7801D01* X892Y7796D01* X899Y7791D01* X907Y7788D01* X933Y7779D01* X958Y7768D01* X981Y7755D01* X1004Y7740D01* X1025Y7723D01* X1044Y7704D01* X1062Y7683D01* X1064Y7680D01* Y7319D01* G37* G36* Y7820D02*X1064Y7820D01* X1034Y7840D01* X1002Y7858D01* X969Y7873D01* X935Y7884D01* X926Y7886D01* X917Y7886D01* X909Y7885D01* X901Y7882D01* X893Y7878D01* X886Y7872D01* X884Y7870D01* Y9121D01* X887Y9119D01* X896Y9116D01* X904Y9115D01* X913Y9115D01* X921Y9117D01* X956Y9129D01* X988Y9144D01* X1020Y9162D01* X1049Y9183D01* X1064Y9196D01* Y7820D01* G37* G36* Y9350D02*X1060Y9343D01* X1045Y9320D01* X1028Y9299D01* X1009Y9280D01* X988Y9262D01* X966Y9247D01* X942Y9233D01* X918Y9222D01* X892Y9213D01* X884Y9209D01* X884Y9209D01* Y9789D01* X887Y9788D01* X913Y9779D01* X938Y9768D01* X961Y9755D01* X984Y9740D01* X1005Y9723D01* X1024Y9704D01* X1042Y9683D01* X1057Y9661D01* X1064Y9650D01* Y9350D01* G37* G36* Y9804D02*X1044Y9820D01* X1014Y9840D01* X982Y9858D01* X949Y9873D01* X915Y9884D01* X906Y9886D01* X897Y9886D01* X889Y9885D01* X884Y9883D01* Y11115D01* X884D01* X893Y11115D01* X901Y11117D01* X936Y11129D01* X968Y11144D01* X1000Y11162D01* X1029Y11183D01* X1057Y11207D01* X1064Y11214D01* Y9804D01* G37* G36* Y11391D02*X1053Y11366D01* X1040Y11343D01* X1025Y11320D01* X1008Y11299D01* X989Y11280D01* X968Y11262D01* X946Y11247D01* X922Y11233D01* X898Y11222D01* X884Y11217D01* Y11782D01* X893Y11779D01* X918Y11768D01* X941Y11755D01* X964Y11740D01* X985Y11723D01* X1004Y11704D01* X1022Y11683D01* X1037Y11661D01* X1051Y11637D01* X1062Y11613D01* X1064Y11608D01* Y11391D01* G37* G36* Y11785D02*X1052Y11797D01* X1024Y11820D01* X994Y11840D01* X962Y11858D01* X929Y11873D01* X895Y11884D01* X886Y11886D01* X884D01* Y13118D01* X916Y13129D01* X948Y13144D01* X980Y13162D01* X1009Y13183D01* X1037Y13207D01* X1062Y13232D01* X1064Y13235D01* Y11785D01* G37* G36* Y13437D02*X1060Y13433D01* X1056Y13425D01* X1053Y13417D01* X1044Y13391D01* X1033Y13366D01* X1020Y13343D01* X1005Y13320D01* X988Y13299D01* X969Y13280D01* X948Y13262D01* X926Y13247D01* X902Y13233D01* X884Y13225D01* Y13774D01* X898Y13768D01* X921Y13755D01* X944Y13740D01* X965Y13723D01* X984Y13704D01* X1002Y13683D01* X1017Y13661D01* X1031Y13637D01* X1042Y13613D01* X1051Y13587D01* X1055Y13579D01* X1059Y13572D01* X1064Y13567D01* Y13437D01* G37* G36* Y13764D02*X1057Y13772D01* X1032Y13797D01* X1004Y13820D01* X974Y13840D01* X942Y13858D01* X909Y13873D01* X884Y13881D01* Y15125D01* X896Y15129D01* X928Y15144D01* X960Y15162D01* X989Y15183D01* X1017Y15207D01* X1042Y15232D01* X1064Y15259D01* Y13764D01* G37* G36* Y15450D02*X1061Y15449D01* X1053Y15445D01* X1046Y15439D01* X1040Y15433D01* X1036Y15425D01* X1033Y15417D01* X1024Y15391D01* X1013Y15366D01* X1000Y15343D01* X985Y15320D01* X968Y15299D01* X949Y15280D01* X928Y15262D01* X906Y15247D01* X884Y15234D01* Y15765D01* X901Y15755D01* X924Y15740D01* X945Y15723D01* X964Y15704D01* X982Y15683D01* X997Y15661D01* X1011Y15637D01* X1022Y15613D01* X1031Y15587D01* X1035Y15579D01* X1039Y15572D01* X1045Y15565D01* X1052Y15560D01* X1060Y15556D01* X1064Y15555D01* Y15450D01* G37* G36* Y15740D02*X1061Y15744D01* X1037Y15772D01* X1012Y15797D01* X984Y15820D01* X954Y15840D01* X922Y15858D01* X889Y15873D01* X884Y15874D01* Y17133D01* X908Y17144D01* X940Y17162D01* X969Y17183D01* X997Y17207D01* X1022Y17232D01* X1045Y17260D01* X1064Y17288D01* Y15740D01* G37* G36* Y17453D02*X1057Y17453D01* X1049Y17452D01* X1041Y17449D01* X1033Y17445D01* X1026Y17439D01* X1020Y17433D01* X1016Y17425D01* X1013Y17417D01* X1004Y17391D01* X993Y17366D01* X980Y17343D01* X965Y17320D01* X948Y17299D01* X929Y17280D01* X908Y17262D01* X886Y17247D01* X884Y17246D01* Y17754D01* X904Y17740D01* X925Y17723D01* X944Y17704D01* X962Y17683D01* X977Y17661D01* X991Y17637D01* X1002Y17613D01* X1011Y17587D01* X1015Y17579D01* X1019Y17572D01* X1025Y17565D01* X1032Y17560D01* X1040Y17556D01* X1048Y17553D01* X1057Y17552D01* X1064Y17552D01* Y17453D01* G37* G36* Y17711D02*X1062Y17715D01* X1041Y17744D01* X1017Y17772D01* X992Y17797D01* X964Y17820D01* X934Y17840D01* X902Y17858D01* X884Y17866D01* Y19142D01* X888Y19144D01* X920Y19162D01* X949Y19183D01* X977Y19207D01* X1002Y19232D01* X1025Y19260D01* X1045Y19290D01* X1063Y19322D01* X1064Y19324D01* Y17711D01* G37* G36* Y19447D02*X1063Y19448D01* X1055Y19451D01* X1046Y19453D01* X1037Y19453D01* X1029Y19452D01* X1021Y19449D01* X1013Y19445D01* X1006Y19439D01* X1000Y19433D01* X996Y19425D01* X993Y19417D01* X984Y19391D01* X973Y19366D01* X960Y19343D01* X945Y19320D01* X928Y19299D01* X909Y19280D01* X888Y19262D01* X884Y19259D01* Y19740D01* X905Y19723D01* X924Y19704D01* X942Y19683D01* X957Y19661D01* X971Y19637D01* X982Y19613D01* X991Y19587D01* X995Y19579D01* X999Y19572D01* X1005Y19565D01* X1012Y19560D01* X1020Y19556D01* X1028Y19553D01* X1037Y19552D01* X1045Y19552D01* X1054Y19554D01* X1062Y19557D01* X1064Y19559D01* Y19447D01* G37* G36* Y19674D02*X1060Y19683D01* X1042Y19715D01* X1021Y19744D01* X997Y19772D01* X972Y19797D01* X944Y19820D01* X914Y19840D01* X884Y19857D01* Y21153D01* X900Y21162D01* X929Y21183D01* X957Y21207D01* X982Y21232D01* X1005Y21260D01* X1025Y21290D01* X1043Y21322D01* X1057Y21355D01* X1064Y21374D01* Y19674D01* G37* G36* Y21428D02*X1062Y21431D01* X1057Y21438D01* X1050Y21444D01* X1043Y21448D01* X1035Y21451D01* X1026Y21453D01* X1017Y21453D01* X1009Y21452D01* X1001Y21449D01* X993Y21445D01* X986Y21439D01* X980Y21433D01* X976Y21425D01* X973Y21417D01* X964Y21391D01* X953Y21366D01* X940Y21343D01* X925Y21320D01* X908Y21299D01* X889Y21280D01* X884Y21276D01* Y21724D01* X885Y21723D01* X904Y21704D01* X922Y21683D01* X937Y21661D01* X951Y21637D01* X962Y21613D01* X971Y21587D01* X975Y21579D01* X979Y21572D01* X985Y21565D01* X992Y21560D01* X1000Y21556D01* X1008Y21553D01* X1017Y21552D01* X1025Y21552D01* X1034Y21554D01* X1042Y21557D01* X1049Y21562D01* X1056Y21568D01* X1061Y21575D01* X1064Y21580D01* Y21428D01* G37* G36* Y40000D02*X2325D01* Y39857D01* X2321Y39855D01* X2289Y39837D01* X2260Y39816D01* X2232Y39793D01* X2207Y39767D01* X2184Y39739D01* X2164Y39709D01* X2146Y39677D01* X2132Y39644D01* X2120Y39610D01* X2118Y39601D01* X2118Y39593D01* X2119Y39584D01* X2122Y39576D01* X2127Y39568D01* X2132Y39561D01* X2139Y39556D01* X2146Y39551D01* X2154Y39548D01* X2163Y39546D01* X2172Y39546D01* X2180Y39547D01* X2188Y39550D01* X2196Y39555D01* X2203Y39560D01* X2209Y39567D01* X2213Y39574D01* X2216Y39582D01* X2225Y39608D01* X2236Y39633D01* X2249Y39657D01* X2264Y39679D01* X2281Y39700D01* X2300Y39719D01* X2321Y39737D01* X2325Y39740D01* Y39259D01* X2325Y39259D01* X2304Y39276D01* X2285Y39295D01* X2267Y39316D01* X2252Y39338D01* X2238Y39362D01* X2227Y39386D01* X2218Y39412D01* X2214Y39420D01* X2210Y39427D01* X2204Y39434D01* X2197Y39439D01* X2189Y39443D01* X2181Y39446D01* X2172Y39447D01* X2164Y39447D01* X2155Y39445D01* X2147Y39442D01* X2140Y39437D01* X2133Y39431D01* X2128Y39424D01* X2124Y39417D01* X2121Y39409D01* X2120Y39400D01* X2120Y39391D01* X2122Y39383D01* X2134Y39349D01* X2149Y39316D01* X2167Y39284D01* X2188Y39255D01* X2212Y39227D01* X2237Y39202D01* X2265Y39179D01* X2295Y39159D01* X2325Y39142D01* Y37846D01* X2309Y37837D01* X2280Y37816D01* X2252Y37793D01* X2227Y37767D01* X2204Y37739D01* X2184Y37709D01* X2166Y37677D01* X2152Y37644D01* X2140Y37610D01* X2138Y37601D01* X2138Y37593D01* X2139Y37584D01* X2142Y37576D01* X2147Y37568D01* X2152Y37561D01* X2159Y37556D01* X2166Y37551D01* X2174Y37548D01* X2183Y37546D01* X2192Y37546D01* X2200Y37547D01* X2208Y37550D01* X2216Y37555D01* X2223Y37560D01* X2229Y37567D01* X2233Y37574D01* X2236Y37582D01* X2245Y37608D01* X2256Y37633D01* X2269Y37657D01* X2284Y37679D01* X2301Y37700D01* X2320Y37719D01* X2325Y37723D01* Y37276D01* X2324Y37276D01* X2305Y37295D01* X2287Y37316D01* X2272Y37338D01* X2258Y37362D01* X2247Y37386D01* X2238Y37412D01* X2234Y37420D01* X2230Y37427D01* X2224Y37434D01* X2217Y37439D01* X2209Y37443D01* X2201Y37446D01* X2192Y37447D01* X2184Y37447D01* X2175Y37445D01* X2167Y37442D01* X2160Y37437D01* X2153Y37431D01* X2148Y37424D01* X2144Y37417D01* X2141Y37409D01* X2140Y37400D01* X2140Y37391D01* X2142Y37383D01* X2154Y37349D01* X2169Y37316D01* X2187Y37284D01* X2208Y37255D01* X2232Y37227D01* X2257Y37202D01* X2285Y37179D01* X2315Y37159D01* X2325Y37153D01* Y35834D01* X2300Y35816D01* X2272Y35793D01* X2247Y35767D01* X2224Y35739D01* X2204Y35709D01* X2186Y35677D01* X2172Y35644D01* X2160Y35610D01* X2158Y35601D01* X2158Y35593D01* X2159Y35584D01* X2162Y35576D01* X2167Y35568D01* X2172Y35561D01* X2179Y35556D01* X2186Y35551D01* X2194Y35548D01* X2203Y35546D01* X2212Y35546D01* X2220Y35547D01* X2228Y35550D01* X2236Y35555D01* X2243Y35560D01* X2249Y35567D01* X2253Y35574D01* X2256Y35582D01* X2265Y35608D01* X2276Y35633D01* X2289Y35657D01* X2304Y35679D01* X2321Y35700D01* X2325Y35704D01* Y35295D01* X2325Y35295D01* X2307Y35316D01* X2292Y35338D01* X2278Y35362D01* X2267Y35386D01* X2258Y35412D01* X2254Y35420D01* X2250Y35427D01* X2244Y35434D01* X2237Y35439D01* X2229Y35443D01* X2221Y35446D01* X2212Y35447D01* X2204Y35447D01* X2195Y35445D01* X2187Y35442D01* X2180Y35437D01* X2173Y35431D01* X2168Y35424D01* X2164Y35417D01* X2161Y35409D01* X2160Y35400D01* X2160Y35391D01* X2162Y35383D01* X2174Y35349D01* X2189Y35316D01* X2207Y35284D01* X2228Y35255D01* X2252Y35227D01* X2277Y35202D01* X2305Y35179D01* X2325Y35166D01* Y33820D01* X2320Y33816D01* X2292Y33793D01* X2267Y33767D01* X2244Y33739D01* X2224Y33709D01* X2206Y33677D01* X2192Y33644D01* X2180Y33610D01* X2178Y33601D01* X2178Y33593D01* X2179Y33584D01* X2182Y33576D01* X2187Y33568D01* X2192Y33561D01* X2199Y33556D01* X2206Y33551D01* X2214Y33548D01* X2223Y33546D01* X2232Y33546D01* X2240Y33547D01* X2248Y33550D01* X2256Y33555D01* X2263Y33560D01* X2269Y33567D01* X2273Y33574D01* X2276Y33582D01* X2285Y33608D01* X2296Y33633D01* X2309Y33657D01* X2324Y33679D01* X2325Y33680D01* Y33319D01* X2312Y33338D01* X2298Y33362D01* X2287Y33386D01* X2278Y33412D01* X2274Y33420D01* X2270Y33427D01* X2264Y33434D01* X2257Y33439D01* X2249Y33443D01* X2241Y33446D01* X2232Y33447D01* X2224Y33447D01* X2215Y33445D01* X2207Y33442D01* X2200Y33437D01* X2193Y33431D01* X2188Y33424D01* X2184Y33417D01* X2181Y33409D01* X2180Y33400D01* X2180Y33391D01* X2182Y33383D01* X2194Y33349D01* X2209Y33316D01* X2227Y33284D01* X2248Y33255D01* X2272Y33227D01* X2297Y33202D01* X2325Y33179D01* Y31804D01* X2312Y31793D01* X2287Y31767D01* X2264Y31739D01* X2244Y31709D01* X2226Y31677D01* X2212Y31644D01* X2200Y31610D01* X2198Y31601D01* X2198Y31593D01* X2199Y31584D01* X2202Y31576D01* X2207Y31568D01* X2212Y31561D01* X2219Y31556D01* X2226Y31551D01* X2234Y31548D01* X2243Y31546D01* X2252Y31546D01* X2260Y31547D01* X2268Y31550D01* X2276Y31555D01* X2283Y31560D01* X2289Y31567D01* X2293Y31574D01* X2296Y31582D01* X2305Y31608D01* X2316Y31633D01* X2325Y31650D01* Y31349D01* X2318Y31362D01* X2307Y31386D01* X2298Y31412D01* X2294Y31420D01* X2290Y31427D01* X2284Y31434D01* X2277Y31439D01* X2269Y31443D01* X2261Y31446D01* X2252Y31447D01* X2244Y31447D01* X2235Y31445D01* X2227Y31442D01* X2220Y31437D01* X2213Y31431D01* X2208Y31424D01* X2204Y31417D01* X2201Y31409D01* X2200Y31400D01* X2200Y31391D01* X2202Y31383D01* X2214Y31349D01* X2229Y31316D01* X2247Y31284D01* X2268Y31255D01* X2292Y31227D01* X2317Y31202D01* X2325Y31196D01* Y29785D01* X2307Y29767D01* X2284Y29739D01* X2264Y29709D01* X2246Y29677D01* X2232Y29644D01* X2220Y29610D01* X2218Y29601D01* X2218Y29593D01* X2219Y29584D01* X2222Y29576D01* X2227Y29568D01* X2232Y29561D01* X2239Y29556D01* X2246Y29551D01* X2254Y29548D01* X2263Y29546D01* X2272Y29546D01* X2280Y29547D01* X2288Y29550D01* X2296Y29555D01* X2303Y29560D01* X2309Y29567D01* X2313Y29574D01* X2316Y29582D01* X2325Y29608D01* X2325Y29609D01* Y29391D01* X2318Y29412D01* X2314Y29420D01* X2310Y29427D01* X2304Y29434D01* X2297Y29439D01* X2289Y29443D01* X2281Y29446D01* X2272Y29447D01* X2264Y29447D01* X2255Y29445D01* X2247Y29442D01* X2240Y29437D01* X2233Y29431D01* X2228Y29424D01* X2224Y29417D01* X2221Y29409D01* X2220Y29400D01* X2220Y29391D01* X2222Y29383D01* X2234Y29349D01* X2249Y29316D01* X2267Y29284D01* X2288Y29255D01* X2312Y29227D01* X2325Y29214D01* Y27765D01* X2304Y27739D01* X2284Y27709D01* X2266Y27677D01* X2252Y27644D01* X2240Y27610D01* X2238Y27601D01* X2238Y27593D01* X2239Y27584D01* X2242Y27576D01* X2247Y27568D01* X2252Y27561D01* X2259Y27556D01* X2266Y27551D01* X2274Y27548D01* X2283Y27546D01* X2292Y27546D01* X2300Y27547D01* X2308Y27550D01* X2316Y27555D01* X2323Y27560D01* X2325Y27563D01* Y27432D01* X2324Y27434D01* X2317Y27439D01* X2309Y27443D01* X2301Y27446D01* X2292Y27447D01* X2284Y27447D01* X2275Y27445D01* X2267Y27442D01* X2260Y27437D01* X2253Y27431D01* X2248Y27424D01* X2244Y27417D01* X2241Y27409D01* X2240Y27400D01* X2240Y27391D01* X2242Y27383D01* X2254Y27349D01* X2269Y27316D01* X2287Y27284D01* X2308Y27255D01* X2325Y27235D01* Y25740D01* X2324Y25739D01* X2304Y25709D01* X2286Y25677D01* X2272Y25644D01* X2260Y25610D01* X2258Y25601D01* X2258Y25593D01* X2259Y25584D01* X2262Y25576D01* X2267Y25568D01* X2272Y25561D01* X2279Y25556D01* X2286Y25551D01* X2294Y25548D01* X2303Y25546D01* X2312Y25546D01* X2320Y25547D01* X2325Y25549D01* Y25445D01* X2321Y25446D01* X2312Y25447D01* X2304Y25447D01* X2295Y25445D01* X2287Y25442D01* X2280Y25437D01* X2273Y25431D01* X2268Y25424D01* X2264Y25417D01* X2261Y25409D01* X2260Y25400D01* X2260Y25391D01* X2262Y25383D01* X2274Y25349D01* X2289Y25316D01* X2307Y25284D01* X2325Y25259D01* Y23711D01* X2324Y23709D01* X2306Y23677D01* X2292Y23644D01* X2280Y23610D01* X2278Y23601D01* X2278Y23593D01* X2279Y23584D01* X2282Y23576D01* X2287Y23568D01* X2292Y23561D01* X2299Y23556D01* X2306Y23551D01* X2314Y23548D01* X2323Y23546D01* X2325D01* Y23447D01* X2324Y23447D01* X2315Y23445D01* X2307Y23442D01* X2300Y23437D01* X2293Y23431D01* X2288Y23424D01* X2284Y23417D01* X2281Y23409D01* X2280Y23400D01* X2280Y23391D01* X2282Y23383D01* X2294Y23349D01* X2309Y23316D01* X2325Y23288D01* Y21675D01* X2312Y21644D01* X2300Y21610D01* X2298Y21601D01* X2298Y21593D01* X2299Y21584D01* X2302Y21576D01* X2307Y21568D01* X2312Y21561D01* X2319Y21556D01* X2325Y21552D01* Y21441D01* X2320Y21437D01* X2313Y21431D01* X2308Y21424D01* X2304Y21417D01* X2301Y21409D01* X2300Y21400D01* X2300Y21391D01* X2302Y21383D01* X2314Y21349D01* X2325Y21325D01* Y19625D01* X2320Y19610D01* X2318Y19601D01* X2318Y19593D01* X2319Y19584D01* X2322Y19576D01* X2325Y19571D01* Y19419D01* X2324Y19417D01* X2321Y19409D01* X2320Y19400D01* X2320Y19391D01* X2322Y19383D01* X2325Y19374D01* Y0D01* X1064D01* Y1142D01* X1068Y1144D01* X1100Y1162D01* X1129Y1183D01* X1157Y1207D01* X1182Y1232D01* X1205Y1260D01* X1225Y1290D01* X1243Y1322D01* X1257Y1355D01* X1269Y1389D01* X1271Y1398D01* X1271Y1407D01* X1270Y1415D01* X1267Y1423D01* X1262Y1431D01* X1257Y1438D01* X1250Y1444D01* X1243Y1448D01* X1235Y1451D01* X1226Y1453D01* X1217Y1453D01* X1209Y1452D01* X1201Y1449D01* X1193Y1445D01* X1186Y1439D01* X1180Y1433D01* X1176Y1425D01* X1173Y1417D01* X1164Y1391D01* X1153Y1366D01* X1140Y1343D01* X1125Y1320D01* X1108Y1299D01* X1089Y1280D01* X1068Y1262D01* X1064Y1259D01* Y1740D01* X1085Y1723D01* X1104Y1704D01* X1122Y1683D01* X1137Y1661D01* X1151Y1637D01* X1162Y1613D01* X1171Y1587D01* X1175Y1579D01* X1179Y1572D01* X1185Y1565D01* X1192Y1560D01* X1200Y1556D01* X1208Y1553D01* X1217Y1552D01* X1225Y1552D01* X1234Y1554D01* X1242Y1557D01* X1249Y1562D01* X1256Y1568D01* X1261Y1575D01* X1265Y1582D01* X1268Y1591D01* X1269Y1599D01* X1269Y1608D01* X1267Y1617D01* X1255Y1651D01* X1240Y1683D01* X1222Y1715D01* X1201Y1744D01* X1177Y1772D01* X1152Y1797D01* X1124Y1820D01* X1094Y1840D01* X1064Y1857D01* Y3153D01* X1080Y3162D01* X1109Y3183D01* X1137Y3207D01* X1162Y3232D01* X1185Y3260D01* X1205Y3290D01* X1223Y3322D01* X1237Y3355D01* X1249Y3389D01* X1251Y3398D01* X1251Y3407D01* X1250Y3415D01* X1247Y3423D01* X1242Y3431D01* X1237Y3438D01* X1230Y3444D01* X1223Y3448D01* X1215Y3451D01* X1206Y3453D01* X1197Y3453D01* X1189Y3452D01* X1181Y3449D01* X1173Y3445D01* X1166Y3439D01* X1160Y3433D01* X1156Y3425D01* X1153Y3417D01* X1144Y3391D01* X1133Y3366D01* X1120Y3343D01* X1105Y3320D01* X1088Y3299D01* X1069Y3280D01* X1064Y3276D01* Y3724D01* X1065Y3723D01* X1084Y3704D01* X1102Y3683D01* X1117Y3661D01* X1131Y3637D01* X1142Y3613D01* X1151Y3587D01* X1155Y3579D01* X1159Y3572D01* X1165Y3565D01* X1172Y3560D01* X1180Y3556D01* X1188Y3553D01* X1197Y3552D01* X1205Y3552D01* X1214Y3554D01* X1222Y3557D01* X1229Y3562D01* X1236Y3568D01* X1241Y3575D01* X1245Y3582D01* X1248Y3591D01* X1249Y3599D01* X1249Y3608D01* X1247Y3617D01* X1235Y3651D01* X1220Y3683D01* X1202Y3715D01* X1181Y3744D01* X1157Y3772D01* X1132Y3797D01* X1104Y3820D01* X1074Y3840D01* X1064Y3846D01* Y5165D01* X1089Y5183D01* X1117Y5207D01* X1142Y5232D01* X1165Y5260D01* X1185Y5290D01* X1203Y5322D01* X1217Y5355D01* X1229Y5389D01* X1231Y5398D01* X1231Y5407D01* X1230Y5415D01* X1227Y5423D01* X1222Y5431D01* X1217Y5438D01* X1210Y5444D01* X1203Y5448D01* X1195Y5451D01* X1186Y5453D01* X1177Y5453D01* X1169Y5452D01* X1161Y5449D01* X1153Y5445D01* X1146Y5439D01* X1140Y5433D01* X1136Y5425D01* X1133Y5417D01* X1124Y5391D01* X1113Y5366D01* X1100Y5343D01* X1085Y5320D01* X1068Y5299D01* X1064Y5295D01* Y5704D01* X1064Y5704D01* X1082Y5683D01* X1097Y5661D01* X1111Y5637D01* X1122Y5613D01* X1131Y5587D01* X1135Y5579D01* X1139Y5572D01* X1145Y5565D01* X1152Y5560D01* X1160Y5556D01* X1168Y5553D01* X1177Y5552D01* X1185Y5552D01* X1194Y5554D01* X1202Y5557D01* X1209Y5562D01* X1216Y5568D01* X1221Y5575D01* X1225Y5582D01* X1228Y5591D01* X1229Y5599D01* X1229Y5608D01* X1227Y5617D01* X1215Y5651D01* X1200Y5683D01* X1182Y5715D01* X1161Y5744D01* X1137Y5772D01* X1112Y5797D01* X1084Y5820D01* X1064Y5834D01* Y7180D01* X1069Y7183D01* X1097Y7207D01* X1122Y7232D01* X1145Y7260D01* X1165Y7290D01* X1183Y7322D01* X1197Y7355D01* X1209Y7389D01* X1211Y7398D01* X1211Y7407D01* X1210Y7415D01* X1207Y7423D01* X1202Y7431D01* X1197Y7438D01* X1190Y7444D01* X1183Y7448D01* X1175Y7451D01* X1166Y7453D01* X1157Y7453D01* X1149Y7452D01* X1141Y7449D01* X1133Y7445D01* X1126Y7439D01* X1120Y7433D01* X1116Y7425D01* X1113Y7417D01* X1104Y7391D01* X1093Y7366D01* X1080Y7343D01* X1065Y7320D01* X1064Y7319D01* Y7680D01* X1077Y7661D01* X1091Y7637D01* X1102Y7613D01* X1111Y7587D01* X1115Y7579D01* X1119Y7572D01* X1125Y7565D01* X1132Y7560D01* X1140Y7556D01* X1148Y7553D01* X1157Y7552D01* X1165Y7552D01* X1174Y7554D01* X1182Y7557D01* X1189Y7562D01* X1196Y7568D01* X1201Y7575D01* X1205Y7582D01* X1208Y7591D01* X1209Y7599D01* X1209Y7608D01* X1207Y7617D01* X1195Y7651D01* X1180Y7683D01* X1162Y7715D01* X1141Y7744D01* X1117Y7772D01* X1092Y7797D01* X1064Y7820D01* Y9196D01* X1077Y9207D01* X1102Y9232D01* X1125Y9260D01* X1145Y9290D01* X1163Y9322D01* X1177Y9355D01* X1189Y9389D01* X1191Y9398D01* X1191Y9407D01* X1190Y9415D01* X1187Y9423D01* X1182Y9431D01* X1177Y9438D01* X1170Y9444D01* X1163Y9448D01* X1155Y9451D01* X1146Y9453D01* X1137Y9453D01* X1129Y9452D01* X1121Y9449D01* X1113Y9445D01* X1106Y9439D01* X1100Y9433D01* X1096Y9425D01* X1093Y9417D01* X1084Y9391D01* X1073Y9366D01* X1064Y9350D01* Y9650D01* X1071Y9637D01* X1082Y9613D01* X1091Y9587D01* X1095Y9579D01* X1099Y9572D01* X1105Y9565D01* X1112Y9560D01* X1120Y9556D01* X1128Y9553D01* X1137Y9552D01* X1145Y9552D01* X1154Y9554D01* X1162Y9557D01* X1169Y9562D01* X1176Y9568D01* X1181Y9575D01* X1185Y9582D01* X1188Y9591D01* X1189Y9599D01* X1189Y9608D01* X1187Y9617D01* X1175Y9651D01* X1160Y9683D01* X1142Y9715D01* X1121Y9744D01* X1097Y9772D01* X1072Y9797D01* X1064Y9804D01* Y11214D01* X1082Y11232D01* X1105Y11260D01* X1125Y11290D01* X1143Y11322D01* X1157Y11355D01* X1169Y11389D01* X1171Y11398D01* X1171Y11407D01* X1170Y11415D01* X1167Y11423D01* X1162Y11431D01* X1157Y11438D01* X1150Y11444D01* X1143Y11448D01* X1135Y11451D01* X1126Y11453D01* X1117Y11453D01* X1109Y11452D01* X1101Y11449D01* X1093Y11445D01* X1086Y11439D01* X1080Y11433D01* X1076Y11425D01* X1073Y11417D01* X1064Y11391D01* X1064Y11391D01* Y11608D01* X1071Y11587D01* X1075Y11579D01* X1079Y11572D01* X1085Y11565D01* X1092Y11560D01* X1100Y11556D01* X1108Y11553D01* X1117Y11552D01* X1125Y11552D01* X1134Y11554D01* X1142Y11557D01* X1149Y11562D01* X1156Y11568D01* X1161Y11575D01* X1165Y11582D01* X1168Y11591D01* X1169Y11599D01* X1169Y11608D01* X1167Y11617D01* X1155Y11651D01* X1140Y11683D01* X1122Y11715D01* X1101Y11744D01* X1077Y11772D01* X1064Y11785D01* Y13235D01* X1085Y13260D01* X1105Y13290D01* X1123Y13322D01* X1137Y13355D01* X1149Y13389D01* X1151Y13398D01* X1151Y13407D01* X1150Y13415D01* X1147Y13423D01* X1142Y13431D01* X1137Y13438D01* X1130Y13444D01* X1123Y13448D01* X1115Y13451D01* X1106Y13453D01* X1097Y13453D01* X1089Y13452D01* X1081Y13449D01* X1073Y13445D01* X1066Y13439D01* X1064Y13437D01* Y13567D01* X1065Y13565D01* X1072Y13560D01* X1080Y13556D01* X1088Y13553D01* X1097Y13552D01* X1105Y13552D01* X1114Y13554D01* X1122Y13557D01* X1129Y13562D01* X1136Y13568D01* X1141Y13575D01* X1145Y13582D01* X1148Y13591D01* X1149Y13599D01* X1149Y13608D01* X1147Y13617D01* X1135Y13651D01* X1120Y13683D01* X1102Y13715D01* X1081Y13744D01* X1064Y13764D01* Y15259D01* X1065Y15260D01* X1085Y15290D01* X1103Y15322D01* X1117Y15355D01* X1129Y15389D01* X1131Y15398D01* X1131Y15407D01* X1130Y15415D01* X1127Y15423D01* X1122Y15431D01* X1117Y15438D01* X1110Y15444D01* X1103Y15448D01* X1095Y15451D01* X1086Y15453D01* X1077Y15453D01* X1069Y15452D01* X1064Y15450D01* Y15555D01* X1068Y15553D01* X1077Y15552D01* X1085Y15552D01* X1094Y15554D01* X1102Y15557D01* X1109Y15562D01* X1116Y15568D01* X1121Y15575D01* X1125Y15582D01* X1128Y15591D01* X1129Y15599D01* X1129Y15608D01* X1127Y15617D01* X1115Y15651D01* X1100Y15683D01* X1082Y15715D01* X1064Y15740D01* Y17288D01* X1065Y17290D01* X1083Y17322D01* X1097Y17355D01* X1109Y17389D01* X1111Y17398D01* X1111Y17407D01* X1110Y17415D01* X1107Y17423D01* X1102Y17431D01* X1097Y17438D01* X1090Y17444D01* X1083Y17448D01* X1075Y17451D01* X1066Y17453D01* X1064D01* Y17552D01* X1065D01* X1074Y17554D01* X1082Y17557D01* X1089Y17562D01* X1096Y17568D01* X1101Y17575D01* X1105Y17582D01* X1108Y17591D01* X1109Y17599D01* X1109Y17608D01* X1107Y17617D01* X1095Y17651D01* X1080Y17683D01* X1064Y17711D01* Y19324D01* X1077Y19355D01* X1089Y19389D01* X1091Y19398D01* X1091Y19407D01* X1090Y19415D01* X1087Y19423D01* X1082Y19431D01* X1077Y19438D01* X1070Y19444D01* X1064Y19447D01* Y19559D01* X1069Y19562D01* X1076Y19568D01* X1081Y19575D01* X1085Y19582D01* X1088Y19591D01* X1089Y19599D01* X1089Y19608D01* X1087Y19617D01* X1075Y19651D01* X1064Y19674D01* Y21374D01* X1069Y21389D01* X1071Y21398D01* X1071Y21407D01* X1070Y21415D01* X1067Y21423D01* X1064Y21428D01* Y21580D01* X1065Y21582D01* X1068Y21591D01* X1069Y21599D01* X1069Y21608D01* X1067Y21617D01* X1064Y21625D01* Y40000D01* G37* G36* X2325D02*X2505D01* Y33859D01* X2502Y33864D01* X2496Y33871D01* X2489Y33876D01* X2482Y33880D01* X2473Y33883D01* X2465Y33884D01* X2456Y33884D01* X2448Y33882D01* X2413Y33870D01* X2381Y33855D01* X2349Y33837D01* X2325Y33820D01* Y35166D01* X2335Y35159D01* X2367Y35141D01* X2400Y35127D01* X2434Y35115D01* X2443Y35113D01* X2452Y35113D01* X2460Y35115D01* X2468Y35117D01* X2476Y35122D01* X2483Y35127D01* X2489Y35134D01* X2493Y35141D01* X2496Y35149D01* X2498Y35158D01* X2498Y35167D01* X2497Y35175D01* X2494Y35183D01* X2490Y35191D01* X2484Y35198D01* X2477Y35204D01* X2470Y35208D01* X2462Y35211D01* X2436Y35220D01* X2411Y35231D01* X2388Y35244D01* X2365Y35259D01* X2344Y35276D01* X2325Y35295D01* Y35704D01* X2340Y35719D01* X2361Y35737D01* X2383Y35752D01* X2407Y35766D01* X2431Y35777D01* X2457Y35786D01* X2465Y35790D01* X2472Y35794D01* X2479Y35800D01* X2484Y35807D01* X2488Y35815D01* X2491Y35823D01* X2492Y35832D01* X2492Y35840D01* X2490Y35849D01* X2487Y35857D01* X2482Y35864D01* X2476Y35871D01* X2469Y35876D01* X2462Y35880D01* X2453Y35883D01* X2445Y35884D01* X2436Y35884D01* X2428Y35882D01* X2393Y35870D01* X2361Y35855D01* X2329Y35837D01* X2325Y35834D01* Y37153D01* X2347Y37141D01* X2380Y37127D01* X2414Y37115D01* X2423Y37113D01* X2432Y37113D01* X2440Y37115D01* X2448Y37117D01* X2456Y37122D01* X2463Y37127D01* X2469Y37134D01* X2473Y37141D01* X2476Y37149D01* X2478Y37158D01* X2478Y37167D01* X2477Y37175D01* X2474Y37183D01* X2470Y37191D01* X2464Y37198D01* X2457Y37204D01* X2450Y37208D01* X2442Y37211D01* X2416Y37220D01* X2391Y37231D01* X2368Y37244D01* X2345Y37259D01* X2325Y37276D01* Y37723D01* X2341Y37737D01* X2363Y37752D01* X2387Y37766D01* X2411Y37777D01* X2437Y37786D01* X2445Y37790D01* X2452Y37794D01* X2459Y37800D01* X2464Y37807D01* X2468Y37815D01* X2471Y37823D01* X2472Y37832D01* X2472Y37840D01* X2470Y37849D01* X2467Y37857D01* X2462Y37864D01* X2456Y37871D01* X2449Y37876D01* X2442Y37880D01* X2433Y37883D01* X2425Y37884D01* X2416Y37884D01* X2408Y37882D01* X2373Y37870D01* X2341Y37855D01* X2325Y37846D01* Y39142D01* X2327Y39141D01* X2360Y39127D01* X2394Y39115D01* X2403Y39113D01* X2412Y39113D01* X2420Y39115D01* X2428Y39117D01* X2436Y39122D01* X2443Y39127D01* X2449Y39134D01* X2453Y39141D01* X2456Y39149D01* X2458Y39158D01* X2458Y39167D01* X2457Y39175D01* X2454Y39183D01* X2450Y39191D01* X2444Y39198D01* X2437Y39204D01* X2430Y39208D01* X2422Y39211D01* X2396Y39220D01* X2371Y39231D01* X2348Y39244D01* X2325Y39259D01* Y39740D01* X2343Y39752D01* X2367Y39766D01* X2391Y39777D01* X2417Y39786D01* X2425Y39790D01* X2432Y39794D01* X2439Y39800D01* X2444Y39807D01* X2448Y39815D01* X2451Y39823D01* X2452Y39832D01* X2452Y39840D01* X2450Y39849D01* X2447Y39857D01* X2442Y39864D01* X2436Y39871D01* X2429Y39876D01* X2422Y39880D01* X2413Y39883D01* X2405Y39884D01* X2396Y39884D01* X2388Y39882D01* X2353Y39870D01* X2325Y39857D01* Y40000D01* G37* G36* Y33680D02*X2341Y33700D01* X2360Y33719D01* X2381Y33737D01* X2403Y33752D01* X2427Y33766D01* X2451Y33777D01* X2477Y33786D01* X2485Y33790D01* X2492Y33794D01* X2499Y33800D01* X2504Y33807D01* X2505Y33809D01* Y33197D01* X2504Y33198D01* X2497Y33204D01* X2490Y33208D01* X2482Y33211D01* X2456Y33220D01* X2431Y33231D01* X2408Y33244D01* X2385Y33259D01* X2364Y33276D01* X2345Y33295D01* X2327Y33316D01* X2325Y33319D01* Y33680D01* G37* G36* Y33179D02*X2325Y33179D01* X2355Y33159D01* X2387Y33141D01* X2420Y33127D01* X2454Y33115D01* X2463Y33113D01* X2472Y33113D01* X2480Y33115D01* X2488Y33117D01* X2496Y33122D01* X2503Y33127D01* X2505Y33130D01* Y31878D01* X2502Y31880D01* X2493Y31883D01* X2485Y31884D01* X2476Y31884D01* X2468Y31882D01* X2433Y31870D01* X2401Y31855D01* X2369Y31837D01* X2340Y31816D01* X2325Y31804D01* Y33179D01* G37* G36* Y31650D02*X2329Y31657D01* X2344Y31679D01* X2361Y31700D01* X2380Y31719D01* X2401Y31737D01* X2423Y31752D01* X2447Y31766D01* X2471Y31777D01* X2497Y31786D01* X2505Y31790D01* X2505Y31790D01* Y31210D01* X2502Y31211D01* X2476Y31220D01* X2451Y31231D01* X2428Y31244D01* X2405Y31259D01* X2384Y31276D01* X2365Y31295D01* X2347Y31316D01* X2332Y31338D01* X2325Y31349D01* Y31650D01* G37* G36* Y31196D02*X2345Y31179D01* X2375Y31159D01* X2407Y31141D01* X2440Y31127D01* X2474Y31115D01* X2483Y31113D01* X2492Y31113D01* X2500Y31115D01* X2505Y31116D01* Y29884D01* X2505Y29884D01* X2496Y29884D01* X2488Y29882D01* X2453Y29870D01* X2421Y29855D01* X2389Y29837D01* X2360Y29816D01* X2332Y29793D01* X2325Y29785D01* Y31196D01* G37* G36* Y29609D02*X2336Y29633D01* X2349Y29657D01* X2364Y29679D01* X2381Y29700D01* X2400Y29719D01* X2421Y29737D01* X2443Y29752D01* X2467Y29766D01* X2491Y29777D01* X2505Y29782D01* Y29217D01* X2496Y29220D01* X2471Y29231D01* X2448Y29244D01* X2425Y29259D01* X2404Y29276D01* X2385Y29295D01* X2367Y29316D01* X2352Y29338D01* X2338Y29362D01* X2327Y29386D01* X2325Y29391D01* Y29609D01* G37* G36* Y29214D02*X2337Y29202D01* X2365Y29179D01* X2395Y29159D01* X2427Y29141D01* X2460Y29127D01* X2494Y29115D01* X2503Y29113D01* X2505D01* Y27881D01* X2473Y27870D01* X2441Y27855D01* X2409Y27837D01* X2380Y27816D01* X2352Y27793D01* X2327Y27767D01* X2325Y27765D01* Y29214D01* G37* G36* Y27563D02*X2329Y27567D01* X2333Y27574D01* X2336Y27582D01* X2345Y27608D01* X2356Y27633D01* X2369Y27657D01* X2384Y27679D01* X2401Y27700D01* X2420Y27719D01* X2441Y27737D01* X2463Y27752D01* X2487Y27766D01* X2505Y27775D01* Y27225D01* X2491Y27231D01* X2468Y27244D01* X2445Y27259D01* X2424Y27276D01* X2405Y27295D01* X2387Y27316D01* X2372Y27338D01* X2358Y27362D01* X2347Y27386D01* X2338Y27412D01* X2334Y27420D01* X2330Y27427D01* X2325Y27432D01* Y27563D01* G37* G36* Y27235D02*X2332Y27227D01* X2357Y27202D01* X2385Y27179D01* X2415Y27159D01* X2447Y27141D01* X2480Y27127D01* X2505Y27118D01* Y25874D01* X2493Y25870D01* X2461Y25855D01* X2429Y25837D01* X2400Y25816D01* X2372Y25793D01* X2347Y25767D01* X2325Y25740D01* Y27235D01* G37* G36* Y25549D02*X2328Y25550D01* X2336Y25555D01* X2343Y25560D01* X2349Y25567D01* X2353Y25574D01* X2356Y25582D01* X2365Y25608D01* X2376Y25633D01* X2389Y25657D01* X2404Y25679D01* X2421Y25700D01* X2440Y25719D01* X2461Y25737D01* X2483Y25752D01* X2505Y25765D01* Y25234D01* X2488Y25244D01* X2465Y25259D01* X2444Y25276D01* X2425Y25295D01* X2407Y25316D01* X2392Y25338D01* X2378Y25362D01* X2367Y25386D01* X2358Y25412D01* X2354Y25420D01* X2350Y25427D01* X2344Y25434D01* X2337Y25439D01* X2329Y25443D01* X2325Y25445D01* Y25549D01* G37* G36* Y25259D02*X2328Y25255D01* X2352Y25227D01* X2377Y25202D01* X2405Y25179D01* X2435Y25159D01* X2467Y25141D01* X2500Y25127D01* X2505Y25125D01* Y23866D01* X2481Y23855D01* X2449Y23837D01* X2420Y23816D01* X2392Y23793D01* X2367Y23767D01* X2344Y23739D01* X2325Y23711D01* Y25259D01* G37* G36* Y23546D02*X2332Y23546D01* X2340Y23547D01* X2348Y23550D01* X2356Y23555D01* X2363Y23560D01* X2369Y23567D01* X2373Y23574D01* X2376Y23582D01* X2385Y23608D01* X2396Y23633D01* X2409Y23657D01* X2424Y23679D01* X2441Y23700D01* X2460Y23719D01* X2481Y23737D01* X2503Y23752D01* X2505Y23754D01* Y23246D01* X2485Y23259D01* X2464Y23276D01* X2445Y23295D01* X2427Y23316D01* X2412Y23338D01* X2398Y23362D01* X2387Y23386D01* X2378Y23412D01* X2374Y23420D01* X2370Y23427D01* X2364Y23434D01* X2357Y23439D01* X2349Y23443D01* X2341Y23446D01* X2332Y23447D01* X2325Y23447D01* Y23546D01* G37* G36* Y23288D02*X2327Y23284D01* X2348Y23255D01* X2372Y23227D01* X2397Y23202D01* X2425Y23179D01* X2455Y23159D01* X2487Y23141D01* X2505Y23133D01* Y21857D01* X2501Y21855D01* X2469Y21837D01* X2440Y21816D01* X2412Y21793D01* X2387Y21767D01* X2364Y21739D01* X2344Y21709D01* X2326Y21677D01* X2325Y21675D01* Y23288D01* G37* G36* Y21552D02*X2326Y21551D01* X2334Y21548D01* X2343Y21546D01* X2352Y21546D01* X2360Y21547D01* X2368Y21550D01* X2376Y21555D01* X2383Y21560D01* X2389Y21567D01* X2393Y21574D01* X2396Y21582D01* X2405Y21608D01* X2416Y21633D01* X2429Y21657D01* X2444Y21679D01* X2461Y21700D01* X2480Y21719D01* X2501Y21737D01* X2505Y21740D01* Y21259D01* X2505Y21259D01* X2484Y21276D01* X2465Y21295D01* X2447Y21316D01* X2432Y21338D01* X2418Y21362D01* X2407Y21386D01* X2398Y21412D01* X2394Y21420D01* X2390Y21427D01* X2384Y21434D01* X2377Y21439D01* X2369Y21443D01* X2361Y21446D01* X2352Y21447D01* X2344Y21447D01* X2335Y21445D01* X2327Y21442D01* X2325Y21441D01* Y21552D01* G37* G36* Y21325D02*X2329Y21316D01* X2347Y21284D01* X2368Y21255D01* X2392Y21227D01* X2417Y21202D01* X2445Y21179D01* X2475Y21159D01* X2505Y21142D01* Y19846D01* X2489Y19837D01* X2460Y19816D01* X2432Y19793D01* X2407Y19767D01* X2384Y19739D01* X2364Y19709D01* X2346Y19677D01* X2332Y19644D01* X2325Y19625D01* Y21325D01* G37* G36* Y19571D02*X2327Y19568D01* X2332Y19561D01* X2339Y19556D01* X2346Y19551D01* X2354Y19548D01* X2363Y19546D01* X2372Y19546D01* X2380Y19547D01* X2388Y19550D01* X2396Y19555D01* X2403Y19560D01* X2409Y19567D01* X2413Y19574D01* X2416Y19582D01* X2425Y19608D01* X2436Y19633D01* X2449Y19657D01* X2464Y19679D01* X2481Y19700D01* X2500Y19719D01* X2505Y19723D01* Y19276D01* X2504Y19276D01* X2485Y19295D01* X2467Y19316D01* X2452Y19338D01* X2438Y19362D01* X2427Y19386D01* X2418Y19412D01* X2414Y19420D01* X2410Y19427D01* X2404Y19434D01* X2397Y19439D01* X2389Y19443D01* X2381Y19446D01* X2372Y19447D01* X2364Y19447D01* X2355Y19445D01* X2347Y19442D01* X2340Y19437D01* X2333Y19431D01* X2328Y19424D01* X2325Y19419D01* Y19571D01* G37* G36* Y19374D02*X2334Y19349D01* X2349Y19316D01* X2367Y19284D01* X2388Y19255D01* X2412Y19227D01* X2437Y19202D01* X2465Y19179D01* X2495Y19159D01* X2505Y19153D01* Y17834D01* X2480Y17816D01* X2452Y17793D01* X2427Y17767D01* X2404Y17739D01* X2384Y17709D01* X2366Y17677D01* X2352Y17644D01* X2340Y17610D01* X2338Y17601D01* X2338Y17593D01* X2339Y17584D01* X2342Y17576D01* X2347Y17568D01* X2352Y17561D01* X2359Y17556D01* X2366Y17551D01* X2374Y17548D01* X2383Y17546D01* X2392Y17546D01* X2400Y17547D01* X2408Y17550D01* X2416Y17555D01* X2423Y17560D01* X2429Y17567D01* X2433Y17574D01* X2436Y17582D01* X2445Y17608D01* X2456Y17633D01* X2469Y17657D01* X2484Y17679D01* X2501Y17700D01* X2505Y17704D01* Y17295D01* X2505Y17295D01* X2487Y17316D01* X2472Y17338D01* X2458Y17362D01* X2447Y17386D01* X2438Y17412D01* X2434Y17420D01* X2430Y17427D01* X2424Y17434D01* X2417Y17439D01* X2409Y17443D01* X2401Y17446D01* X2392Y17447D01* X2384Y17447D01* X2375Y17445D01* X2367Y17442D01* X2360Y17437D01* X2353Y17431D01* X2348Y17424D01* X2344Y17417D01* X2341Y17409D01* X2340Y17400D01* X2340Y17391D01* X2342Y17383D01* X2354Y17349D01* X2369Y17316D01* X2387Y17284D01* X2408Y17255D01* X2432Y17227D01* X2457Y17202D01* X2485Y17179D01* X2505Y17166D01* Y15820D01* X2500Y15816D01* X2472Y15793D01* X2447Y15767D01* X2424Y15739D01* X2404Y15709D01* X2386Y15677D01* X2372Y15644D01* X2360Y15610D01* X2358Y15601D01* X2358Y15593D01* X2359Y15584D01* X2362Y15576D01* X2367Y15568D01* X2372Y15561D01* X2379Y15556D01* X2386Y15551D01* X2394Y15548D01* X2403Y15546D01* X2412Y15546D01* X2420Y15547D01* X2428Y15550D01* X2436Y15555D01* X2443Y15560D01* X2449Y15567D01* X2453Y15574D01* X2456Y15582D01* X2465Y15608D01* X2476Y15633D01* X2489Y15657D01* X2504Y15679D01* X2505Y15680D01* Y15319D01* X2492Y15338D01* X2478Y15362D01* X2467Y15386D01* X2458Y15412D01* X2454Y15420D01* X2450Y15427D01* X2444Y15434D01* X2437Y15439D01* X2429Y15443D01* X2421Y15446D01* X2412Y15447D01* X2404Y15447D01* X2395Y15445D01* X2387Y15442D01* X2380Y15437D01* X2373Y15431D01* X2368Y15424D01* X2364Y15417D01* X2361Y15409D01* X2360Y15400D01* X2360Y15391D01* X2362Y15383D01* X2374Y15349D01* X2389Y15316D01* X2407Y15284D01* X2428Y15255D01* X2452Y15227D01* X2477Y15202D01* X2505Y15179D01* Y13804D01* X2492Y13793D01* X2467Y13767D01* X2444Y13739D01* X2424Y13709D01* X2406Y13677D01* X2392Y13644D01* X2380Y13610D01* X2378Y13601D01* X2378Y13593D01* X2379Y13584D01* X2382Y13576D01* X2387Y13568D01* X2392Y13561D01* X2399Y13556D01* X2406Y13551D01* X2414Y13548D01* X2423Y13546D01* X2432Y13546D01* X2440Y13547D01* X2448Y13550D01* X2456Y13555D01* X2463Y13560D01* X2469Y13567D01* X2473Y13574D01* X2476Y13582D01* X2485Y13608D01* X2496Y13633D01* X2505Y13650D01* Y13349D01* X2498Y13362D01* X2487Y13386D01* X2478Y13412D01* X2474Y13420D01* X2470Y13427D01* X2464Y13434D01* X2457Y13439D01* X2449Y13443D01* X2441Y13446D01* X2432Y13447D01* X2424Y13447D01* X2415Y13445D01* X2407Y13442D01* X2400Y13437D01* X2393Y13431D01* X2388Y13424D01* X2384Y13417D01* X2381Y13409D01* X2380Y13400D01* X2380Y13391D01* X2382Y13383D01* X2394Y13349D01* X2409Y13316D01* X2427Y13284D01* X2448Y13255D01* X2472Y13227D01* X2497Y13202D01* X2505Y13196D01* Y11785D01* X2487Y11767D01* X2464Y11739D01* X2444Y11709D01* X2426Y11677D01* X2412Y11644D01* X2400Y11610D01* X2398Y11601D01* X2398Y11593D01* X2399Y11584D01* X2402Y11576D01* X2407Y11568D01* X2412Y11561D01* X2419Y11556D01* X2426Y11551D01* X2434Y11548D01* X2443Y11546D01* X2452Y11546D01* X2460Y11547D01* X2468Y11550D01* X2476Y11555D01* X2483Y11560D01* X2489Y11567D01* X2493Y11574D01* X2496Y11582D01* X2505Y11608D01* X2505Y11609D01* Y11391D01* X2498Y11412D01* X2494Y11420D01* X2490Y11427D01* X2484Y11434D01* X2477Y11439D01* X2469Y11443D01* X2461Y11446D01* X2452Y11447D01* X2444Y11447D01* X2435Y11445D01* X2427Y11442D01* X2420Y11437D01* X2413Y11431D01* X2408Y11424D01* X2404Y11417D01* X2401Y11409D01* X2400Y11400D01* X2400Y11391D01* X2402Y11383D01* X2414Y11349D01* X2429Y11316D01* X2447Y11284D01* X2468Y11255D01* X2492Y11227D01* X2505Y11214D01* Y9765D01* X2484Y9739D01* X2464Y9709D01* X2446Y9677D01* X2432Y9644D01* X2420Y9610D01* X2418Y9601D01* X2418Y9593D01* X2419Y9584D01* X2422Y9576D01* X2427Y9568D01* X2432Y9561D01* X2439Y9556D01* X2446Y9551D01* X2454Y9548D01* X2463Y9546D01* X2472Y9546D01* X2480Y9547D01* X2488Y9550D01* X2496Y9555D01* X2503Y9560D01* X2505Y9563D01* Y9432D01* X2504Y9434D01* X2497Y9439D01* X2489Y9443D01* X2481Y9446D01* X2472Y9447D01* X2464Y9447D01* X2455Y9445D01* X2447Y9442D01* X2440Y9437D01* X2433Y9431D01* X2428Y9424D01* X2424Y9417D01* X2421Y9409D01* X2420Y9400D01* X2420Y9391D01* X2422Y9383D01* X2434Y9349D01* X2449Y9316D01* X2467Y9284D01* X2488Y9255D01* X2505Y9235D01* Y7740D01* X2504Y7739D01* X2484Y7709D01* X2466Y7677D01* X2452Y7644D01* X2440Y7610D01* X2438Y7601D01* X2438Y7593D01* X2439Y7584D01* X2442Y7576D01* X2447Y7568D01* X2452Y7561D01* X2459Y7556D01* X2466Y7551D01* X2474Y7548D01* X2483Y7546D01* X2492Y7546D01* X2500Y7547D01* X2505Y7549D01* Y7445D01* X2501Y7446D01* X2492Y7447D01* X2484Y7447D01* X2475Y7445D01* X2467Y7442D01* X2460Y7437D01* X2453Y7431D01* X2448Y7424D01* X2444Y7417D01* X2441Y7409D01* X2440Y7400D01* X2440Y7391D01* X2442Y7383D01* X2454Y7349D01* X2469Y7316D01* X2487Y7284D01* X2505Y7259D01* Y5711D01* X2504Y5709D01* X2486Y5677D01* X2472Y5644D01* X2460Y5610D01* X2458Y5601D01* X2458Y5593D01* X2459Y5584D01* X2462Y5576D01* X2467Y5568D01* X2472Y5561D01* X2479Y5556D01* X2486Y5551D01* X2494Y5548D01* X2503Y5546D01* X2505D01* Y5447D01* X2504Y5447D01* X2495Y5445D01* X2487Y5442D01* X2480Y5437D01* X2473Y5431D01* X2468Y5424D01* X2464Y5417D01* X2461Y5409D01* X2460Y5400D01* X2460Y5391D01* X2462Y5383D01* X2474Y5349D01* X2489Y5316D01* X2505Y5288D01* Y3675D01* X2492Y3644D01* X2480Y3610D01* X2478Y3601D01* X2478Y3593D01* X2479Y3584D01* X2482Y3576D01* X2487Y3568D01* X2492Y3561D01* X2499Y3556D01* X2505Y3552D01* Y3441D01* X2500Y3437D01* X2493Y3431D01* X2488Y3424D01* X2484Y3417D01* X2481Y3409D01* X2480Y3400D01* X2480Y3391D01* X2482Y3383D01* X2494Y3349D01* X2505Y3325D01* Y1625D01* X2500Y1610D01* X2498Y1601D01* X2498Y1593D01* X2499Y1584D01* X2502Y1576D01* X2505Y1571D01* Y1419D01* X2504Y1417D01* X2501Y1409D01* X2500Y1400D01* X2500Y1391D01* X2502Y1383D01* X2505Y1374D01* Y0D01* X2325D01* Y19374D01* G37* G36* X2505Y40000D02*X2764D01* Y39804D01* X2744Y39820D01* X2714Y39840D01* X2682Y39858D01* X2649Y39873D01* X2615Y39884D01* X2606Y39886D01* X2597Y39886D01* X2589Y39885D01* X2581Y39882D01* X2573Y39878D01* X2566Y39872D01* X2560Y39865D01* X2556Y39858D01* X2553Y39850D01* X2551Y39841D01* X2551Y39833D01* X2552Y39824D01* X2555Y39816D01* X2559Y39808D01* X2565Y39801D01* X2572Y39796D01* X2579Y39791D01* X2587Y39788D01* X2613Y39779D01* X2638Y39768D01* X2661Y39755D01* X2684Y39740D01* X2705Y39723D01* X2724Y39704D01* X2742Y39683D01* X2757Y39661D01* X2764Y39650D01* Y39350D01* X2760Y39343D01* X2745Y39320D01* X2728Y39299D01* X2709Y39280D01* X2688Y39262D01* X2666Y39247D01* X2642Y39233D01* X2618Y39222D01* X2592Y39213D01* X2584Y39209D01* X2577Y39205D01* X2570Y39199D01* X2565Y39192D01* X2561Y39184D01* X2558Y39176D01* X2557Y39167D01* X2557Y39159D01* X2559Y39150D01* X2562Y39142D01* X2567Y39135D01* X2573Y39128D01* X2580Y39123D01* X2587Y39119D01* X2596Y39116D01* X2604Y39115D01* X2613Y39115D01* X2621Y39117D01* X2656Y39129D01* X2688Y39144D01* X2720Y39162D01* X2749Y39183D01* X2764Y39196D01* Y37820D01* X2764Y37820D01* X2734Y37840D01* X2702Y37858D01* X2669Y37873D01* X2635Y37884D01* X2626Y37886D01* X2617Y37886D01* X2609Y37885D01* X2601Y37882D01* X2593Y37878D01* X2586Y37872D01* X2580Y37865D01* X2576Y37858D01* X2573Y37850D01* X2571Y37841D01* X2571Y37833D01* X2572Y37824D01* X2575Y37816D01* X2579Y37808D01* X2585Y37801D01* X2592Y37796D01* X2599Y37791D01* X2607Y37788D01* X2633Y37779D01* X2658Y37768D01* X2681Y37755D01* X2704Y37740D01* X2725Y37723D01* X2744Y37704D01* X2762Y37683D01* X2764Y37680D01* Y37319D01* X2748Y37299D01* X2729Y37280D01* X2708Y37262D01* X2686Y37247D01* X2662Y37233D01* X2638Y37222D01* X2612Y37213D01* X2604Y37209D01* X2597Y37205D01* X2590Y37199D01* X2585Y37192D01* X2581Y37184D01* X2578Y37176D01* X2577Y37167D01* X2577Y37159D01* X2579Y37150D01* X2582Y37142D01* X2587Y37135D01* X2593Y37128D01* X2600Y37123D01* X2607Y37119D01* X2616Y37116D01* X2624Y37115D01* X2633Y37115D01* X2641Y37117D01* X2676Y37129D01* X2708Y37144D01* X2740Y37162D01* X2764Y37180D01* Y35834D01* X2754Y35840D01* X2722Y35858D01* X2689Y35873D01* X2655Y35884D01* X2646Y35886D01* X2637Y35886D01* X2629Y35885D01* X2621Y35882D01* X2613Y35878D01* X2606Y35872D01* X2600Y35865D01* X2596Y35858D01* X2593Y35850D01* X2591Y35841D01* X2591Y35833D01* X2592Y35824D01* X2595Y35816D01* X2599Y35808D01* X2605Y35801D01* X2612Y35796D01* X2619Y35791D01* X2627Y35788D01* X2653Y35779D01* X2678Y35768D01* X2701Y35755D01* X2724Y35740D01* X2745Y35723D01* X2764Y35704D01* Y35295D01* X2749Y35280D01* X2728Y35262D01* X2706Y35247D01* X2682Y35233D01* X2658Y35222D01* X2632Y35213D01* X2624Y35209D01* X2617Y35205D01* X2610Y35199D01* X2605Y35192D01* X2601Y35184D01* X2598Y35176D01* X2597Y35167D01* X2597Y35159D01* X2599Y35150D01* X2602Y35142D01* X2607Y35135D01* X2613Y35128D01* X2620Y35123D01* X2627Y35119D01* X2636Y35116D01* X2644Y35115D01* X2653Y35115D01* X2661Y35117D01* X2696Y35129D01* X2728Y35144D01* X2760Y35162D01* X2764Y35165D01* Y33846D01* X2742Y33858D01* X2709Y33873D01* X2675Y33884D01* X2666Y33886D01* X2657Y33886D01* X2649Y33885D01* X2641Y33882D01* X2633Y33878D01* X2626Y33872D01* X2620Y33865D01* X2616Y33858D01* X2613Y33850D01* X2611Y33841D01* X2611Y33833D01* X2612Y33824D01* X2615Y33816D01* X2619Y33808D01* X2625Y33801D01* X2632Y33796D01* X2639Y33791D01* X2647Y33788D01* X2673Y33779D01* X2698Y33768D01* X2721Y33755D01* X2744Y33740D01* X2764Y33724D01* Y33276D01* X2748Y33262D01* X2726Y33247D01* X2702Y33233D01* X2678Y33222D01* X2652Y33213D01* X2644Y33209D01* X2637Y33205D01* X2630Y33199D01* X2625Y33192D01* X2621Y33184D01* X2618Y33176D01* X2617Y33167D01* X2617Y33159D01* X2619Y33150D01* X2622Y33142D01* X2627Y33135D01* X2633Y33128D01* X2640Y33123D01* X2647Y33119D01* X2656Y33116D01* X2664Y33115D01* X2673Y33115D01* X2681Y33117D01* X2716Y33129D01* X2748Y33144D01* X2764Y33153D01* Y31857D01* X2762Y31858D01* X2729Y31873D01* X2695Y31884D01* X2686Y31886D01* X2677Y31886D01* X2669Y31885D01* X2661Y31882D01* X2653Y31878D01* X2646Y31872D01* X2640Y31865D01* X2636Y31858D01* X2633Y31850D01* X2631Y31841D01* X2631Y31833D01* X2632Y31824D01* X2635Y31816D01* X2639Y31808D01* X2645Y31801D01* X2652Y31796D01* X2659Y31791D01* X2667Y31788D01* X2693Y31779D01* X2718Y31768D01* X2741Y31755D01* X2764Y31740D01* Y31259D01* X2746Y31247D01* X2722Y31233D01* X2698Y31222D01* X2672Y31213D01* X2664Y31209D01* X2657Y31205D01* X2650Y31199D01* X2645Y31192D01* X2641Y31184D01* X2638Y31176D01* X2637Y31167D01* X2637Y31159D01* X2639Y31150D01* X2642Y31142D01* X2647Y31135D01* X2653Y31128D01* X2660Y31123D01* X2667Y31119D01* X2676Y31116D01* X2684Y31115D01* X2693Y31115D01* X2701Y31117D01* X2736Y31129D01* X2764Y31142D01* Y29866D01* X2749Y29873D01* X2715Y29884D01* X2706Y29886D01* X2697Y29886D01* X2689Y29885D01* X2681Y29882D01* X2673Y29878D01* X2666Y29872D01* X2660Y29865D01* X2656Y29858D01* X2653Y29850D01* X2651Y29841D01* X2651Y29833D01* X2652Y29824D01* X2655Y29816D01* X2659Y29808D01* X2665Y29801D01* X2672Y29796D01* X2679Y29791D01* X2687Y29788D01* X2713Y29779D01* X2738Y29768D01* X2761Y29755D01* X2764Y29754D01* Y29246D01* X2742Y29233D01* X2718Y29222D01* X2692Y29213D01* X2684Y29209D01* X2677Y29205D01* X2670Y29199D01* X2665Y29192D01* X2661Y29184D01* X2658Y29176D01* X2657Y29167D01* X2657Y29159D01* X2659Y29150D01* X2662Y29142D01* X2667Y29135D01* X2673Y29128D01* X2680Y29123D01* X2687Y29119D01* X2696Y29116D01* X2704Y29115D01* X2713Y29115D01* X2721Y29117D01* X2756Y29129D01* X2764Y29133D01* Y27874D01* X2735Y27884D01* X2726Y27886D01* X2717Y27886D01* X2709Y27885D01* X2701Y27882D01* X2693Y27878D01* X2686Y27872D01* X2680Y27865D01* X2676Y27858D01* X2673Y27850D01* X2671Y27841D01* X2671Y27833D01* X2672Y27824D01* X2675Y27816D01* X2679Y27808D01* X2685Y27801D01* X2692Y27796D01* X2699Y27791D01* X2707Y27788D01* X2733Y27779D01* X2758Y27768D01* X2764Y27765D01* Y27234D01* X2762Y27233D01* X2738Y27222D01* X2712Y27213D01* X2704Y27209D01* X2697Y27205D01* X2690Y27199D01* X2685Y27192D01* X2681Y27184D01* X2678Y27176D01* X2677Y27167D01* X2677Y27159D01* X2679Y27150D01* X2682Y27142D01* X2687Y27135D01* X2693Y27128D01* X2700Y27123D01* X2707Y27119D01* X2716Y27116D01* X2724Y27115D01* X2733Y27115D01* X2741Y27117D01* X2764Y27125D01* Y25881D01* X2755Y25884D01* X2746Y25886D01* X2737Y25886D01* X2729Y25885D01* X2721Y25882D01* X2713Y25878D01* X2706Y25872D01* X2700Y25865D01* X2696Y25858D01* X2693Y25850D01* X2691Y25841D01* X2691Y25833D01* X2692Y25824D01* X2695Y25816D01* X2699Y25808D01* X2705Y25801D01* X2712Y25796D01* X2719Y25791D01* X2727Y25788D01* X2753Y25779D01* X2764Y25774D01* Y25225D01* X2758Y25222D01* X2732Y25213D01* X2724Y25209D01* X2717Y25205D01* X2710Y25199D01* X2705Y25192D01* X2701Y25184D01* X2698Y25176D01* X2697Y25167D01* X2697Y25159D01* X2699Y25150D01* X2702Y25142D01* X2707Y25135D01* X2713Y25128D01* X2720Y25123D01* X2727Y25119D01* X2736Y25116D01* X2744Y25115D01* X2753Y25115D01* X2761Y25117D01* X2764Y25118D01* Y23886D01* X2757Y23886D01* X2749Y23885D01* X2741Y23882D01* X2733Y23878D01* X2726Y23872D01* X2720Y23865D01* X2716Y23858D01* X2713Y23850D01* X2711Y23841D01* X2711Y23833D01* X2712Y23824D01* X2715Y23816D01* X2719Y23808D01* X2725Y23801D01* X2732Y23796D01* X2739Y23791D01* X2747Y23788D01* X2764Y23782D01* Y23217D01* X2752Y23213D01* X2744Y23209D01* X2737Y23205D01* X2730Y23199D01* X2725Y23192D01* X2721Y23184D01* X2718Y23176D01* X2717Y23167D01* X2717Y23159D01* X2719Y23150D01* X2722Y23142D01* X2727Y23135D01* X2733Y23128D01* X2740Y23123D01* X2747Y23119D01* X2756Y23116D01* X2764Y23115D01* Y21883D01* X2761Y21882D01* X2753Y21878D01* X2746Y21872D01* X2740Y21865D01* X2736Y21858D01* X2733Y21850D01* X2731Y21841D01* X2731Y21833D01* X2732Y21824D01* X2735Y21816D01* X2739Y21808D01* X2745Y21801D01* X2752Y21796D01* X2759Y21791D01* X2764Y21789D01* Y21209D01* X2757Y21205D01* X2750Y21199D01* X2745Y21192D01* X2741Y21184D01* X2738Y21176D01* X2737Y21167D01* X2737Y21159D01* X2739Y21150D01* X2742Y21142D01* X2747Y21135D01* X2753Y21128D01* X2760Y21123D01* X2764Y21121D01* Y19870D01* X2760Y19865D01* X2756Y19858D01* X2753Y19850D01* X2751Y19841D01* X2751Y19833D01* X2752Y19824D01* X2755Y19816D01* X2759Y19808D01* X2764Y19802D01* Y19190D01* X2761Y19184D01* X2758Y19176D01* X2757Y19167D01* X2757Y19159D01* X2759Y19150D01* X2762Y19142D01* X2764Y19140D01* Y7861D01* X2762Y7864D01* X2756Y7871D01* X2749Y7876D01* X2742Y7880D01* X2733Y7883D01* X2725Y7884D01* X2716Y7884D01* X2708Y7882D01* X2673Y7870D01* X2641Y7855D01* X2609Y7837D01* X2580Y7816D01* X2552Y7793D01* X2527Y7767D01* X2505Y7740D01* Y9235D01* X2512Y9227D01* X2537Y9202D01* X2565Y9179D01* X2595Y9159D01* X2627Y9141D01* X2660Y9127D01* X2694Y9115D01* X2703Y9113D01* X2712Y9113D01* X2720Y9115D01* X2728Y9117D01* X2736Y9122D01* X2743Y9127D01* X2749Y9134D01* X2753Y9141D01* X2756Y9149D01* X2758Y9158D01* X2758Y9167D01* X2757Y9175D01* X2754Y9183D01* X2750Y9191D01* X2744Y9198D01* X2737Y9204D01* X2730Y9208D01* X2722Y9211D01* X2696Y9220D01* X2671Y9231D01* X2648Y9244D01* X2625Y9259D01* X2604Y9276D01* X2585Y9295D01* X2567Y9316D01* X2552Y9338D01* X2538Y9362D01* X2527Y9386D01* X2518Y9412D01* X2514Y9420D01* X2510Y9427D01* X2505Y9432D01* Y9563D01* X2509Y9567D01* X2513Y9574D01* X2516Y9582D01* X2525Y9608D01* X2536Y9633D01* X2549Y9657D01* X2564Y9679D01* X2581Y9700D01* X2600Y9719D01* X2621Y9737D01* X2643Y9752D01* X2667Y9766D01* X2691Y9777D01* X2717Y9786D01* X2725Y9790D01* X2732Y9794D01* X2739Y9800D01* X2744Y9807D01* X2748Y9815D01* X2751Y9823D01* X2752Y9832D01* X2752Y9840D01* X2750Y9849D01* X2747Y9857D01* X2742Y9864D01* X2736Y9871D01* X2729Y9876D01* X2722Y9880D01* X2713Y9883D01* X2705Y9884D01* X2696Y9884D01* X2688Y9882D01* X2653Y9870D01* X2621Y9855D01* X2589Y9837D01* X2560Y9816D01* X2532Y9793D01* X2507Y9767D01* X2505Y9765D01* Y11214D01* X2517Y11202D01* X2545Y11179D01* X2575Y11159D01* X2607Y11141D01* X2640Y11127D01* X2674Y11115D01* X2683Y11113D01* X2692Y11113D01* X2700Y11115D01* X2708Y11117D01* X2716Y11122D01* X2723Y11127D01* X2729Y11134D01* X2733Y11141D01* X2736Y11149D01* X2738Y11158D01* X2738Y11167D01* X2737Y11175D01* X2734Y11183D01* X2730Y11191D01* X2724Y11198D01* X2717Y11204D01* X2710Y11208D01* X2702Y11211D01* X2676Y11220D01* X2651Y11231D01* X2628Y11244D01* X2605Y11259D01* X2584Y11276D01* X2565Y11295D01* X2547Y11316D01* X2532Y11338D01* X2518Y11362D01* X2507Y11386D01* X2505Y11391D01* Y11609D01* X2516Y11633D01* X2529Y11657D01* X2544Y11679D01* X2561Y11700D01* X2580Y11719D01* X2601Y11737D01* X2623Y11752D01* X2647Y11766D01* X2671Y11777D01* X2697Y11786D01* X2705Y11790D01* X2712Y11794D01* X2719Y11800D01* X2724Y11807D01* X2728Y11815D01* X2731Y11823D01* X2732Y11832D01* X2732Y11840D01* X2730Y11849D01* X2727Y11857D01* X2722Y11864D01* X2716Y11871D01* X2709Y11876D01* X2702Y11880D01* X2693Y11883D01* X2685Y11884D01* X2676Y11884D01* X2668Y11882D01* X2633Y11870D01* X2601Y11855D01* X2569Y11837D01* X2540Y11816D01* X2512Y11793D01* X2505Y11785D01* Y13196D01* X2525Y13179D01* X2555Y13159D01* X2587Y13141D01* X2620Y13127D01* X2654Y13115D01* X2663Y13113D01* X2672Y13113D01* X2680Y13115D01* X2688Y13117D01* X2696Y13122D01* X2703Y13127D01* X2709Y13134D01* X2713Y13141D01* X2716Y13149D01* X2718Y13158D01* X2718Y13167D01* X2717Y13175D01* X2714Y13183D01* X2710Y13191D01* X2704Y13198D01* X2697Y13204D01* X2690Y13208D01* X2682Y13211D01* X2656Y13220D01* X2631Y13231D01* X2608Y13244D01* X2585Y13259D01* X2564Y13276D01* X2545Y13295D01* X2527Y13316D01* X2512Y13338D01* X2505Y13349D01* Y13650D01* X2509Y13657D01* X2524Y13679D01* X2541Y13700D01* X2560Y13719D01* X2581Y13737D01* X2603Y13752D01* X2627Y13766D01* X2651Y13777D01* X2677Y13786D01* X2685Y13790D01* X2692Y13794D01* X2699Y13800D01* X2704Y13807D01* X2708Y13815D01* X2711Y13823D01* X2712Y13832D01* X2712Y13840D01* X2710Y13849D01* X2707Y13857D01* X2702Y13864D01* X2696Y13871D01* X2689Y13876D01* X2682Y13880D01* X2673Y13883D01* X2665Y13884D01* X2656Y13884D01* X2648Y13882D01* X2613Y13870D01* X2581Y13855D01* X2549Y13837D01* X2520Y13816D01* X2505Y13804D01* Y15179D01* X2505Y15179D01* X2535Y15159D01* X2567Y15141D01* X2600Y15127D01* X2634Y15115D01* X2643Y15113D01* X2652Y15113D01* X2660Y15115D01* X2668Y15117D01* X2676Y15122D01* X2683Y15127D01* X2689Y15134D01* X2693Y15141D01* X2696Y15149D01* X2698Y15158D01* X2698Y15167D01* X2697Y15175D01* X2694Y15183D01* X2690Y15191D01* X2684Y15198D01* X2677Y15204D01* X2670Y15208D01* X2662Y15211D01* X2636Y15220D01* X2611Y15231D01* X2588Y15244D01* X2565Y15259D01* X2544Y15276D01* X2525Y15295D01* X2507Y15316D01* X2505Y15319D01* Y15680D01* X2521Y15700D01* X2540Y15719D01* X2561Y15737D01* X2583Y15752D01* X2607Y15766D01* X2631Y15777D01* X2657Y15786D01* X2665Y15790D01* X2672Y15794D01* X2679Y15800D01* X2684Y15807D01* X2688Y15815D01* X2691Y15823D01* X2692Y15832D01* X2692Y15840D01* X2690Y15849D01* X2687Y15857D01* X2682Y15864D01* X2676Y15871D01* X2669Y15876D01* X2662Y15880D01* X2653Y15883D01* X2645Y15884D01* X2636Y15884D01* X2628Y15882D01* X2593Y15870D01* X2561Y15855D01* X2529Y15837D01* X2505Y15820D01* Y17166D01* X2515Y17159D01* X2547Y17141D01* X2580Y17127D01* X2614Y17115D01* X2623Y17113D01* X2632Y17113D01* X2640Y17115D01* X2648Y17117D01* X2656Y17122D01* X2663Y17127D01* X2669Y17134D01* X2673Y17141D01* X2676Y17149D01* X2678Y17158D01* X2678Y17167D01* X2677Y17175D01* X2674Y17183D01* X2670Y17191D01* X2664Y17198D01* X2657Y17204D01* X2650Y17208D01* X2642Y17211D01* X2616Y17220D01* X2591Y17231D01* X2568Y17244D01* X2545Y17259D01* X2524Y17276D01* X2505Y17295D01* Y17704D01* X2520Y17719D01* X2541Y17737D01* X2563Y17752D01* X2587Y17766D01* X2611Y17777D01* X2637Y17786D01* X2645Y17790D01* X2652Y17794D01* X2659Y17800D01* X2664Y17807D01* X2668Y17815D01* X2671Y17823D01* X2672Y17832D01* X2672Y17840D01* X2670Y17849D01* X2667Y17857D01* X2662Y17864D01* X2656Y17871D01* X2649Y17876D01* X2642Y17880D01* X2633Y17883D01* X2625Y17884D01* X2616Y17884D01* X2608Y17882D01* X2573Y17870D01* X2541Y17855D01* X2509Y17837D01* X2505Y17834D01* Y19153D01* X2527Y19141D01* X2560Y19127D01* X2594Y19115D01* X2603Y19113D01* X2612Y19113D01* X2620Y19115D01* X2628Y19117D01* X2636Y19122D01* X2643Y19127D01* X2649Y19134D01* X2653Y19141D01* X2656Y19149D01* X2658Y19158D01* X2658Y19167D01* X2657Y19175D01* X2654Y19183D01* X2650Y19191D01* X2644Y19198D01* X2637Y19204D01* X2630Y19208D01* X2622Y19211D01* X2596Y19220D01* X2571Y19231D01* X2548Y19244D01* X2525Y19259D01* X2505Y19276D01* Y19723D01* X2521Y19737D01* X2543Y19752D01* X2567Y19766D01* X2591Y19777D01* X2617Y19786D01* X2625Y19790D01* X2632Y19794D01* X2639Y19800D01* X2644Y19807D01* X2648Y19815D01* X2651Y19823D01* X2652Y19832D01* X2652Y19840D01* X2650Y19849D01* X2647Y19857D01* X2642Y19864D01* X2636Y19871D01* X2629Y19876D01* X2622Y19880D01* X2613Y19883D01* X2605Y19884D01* X2596Y19884D01* X2588Y19882D01* X2553Y19870D01* X2521Y19855D01* X2505Y19846D01* Y21142D01* X2507Y21141D01* X2540Y21127D01* X2574Y21115D01* X2583Y21113D01* X2592Y21113D01* X2600Y21115D01* X2608Y21117D01* X2616Y21122D01* X2623Y21127D01* X2629Y21134D01* X2633Y21141D01* X2636Y21149D01* X2638Y21158D01* X2638Y21167D01* X2637Y21175D01* X2634Y21183D01* X2630Y21191D01* X2624Y21198D01* X2617Y21204D01* X2610Y21208D01* X2602Y21211D01* X2576Y21220D01* X2551Y21231D01* X2528Y21244D01* X2505Y21259D01* Y21740D01* X2523Y21752D01* X2547Y21766D01* X2571Y21777D01* X2597Y21786D01* X2605Y21790D01* X2612Y21794D01* X2619Y21800D01* X2624Y21807D01* X2628Y21815D01* X2631Y21823D01* X2632Y21832D01* X2632Y21840D01* X2630Y21849D01* X2627Y21857D01* X2622Y21864D01* X2616Y21871D01* X2609Y21876D01* X2602Y21880D01* X2593Y21883D01* X2585Y21884D01* X2576Y21884D01* X2568Y21882D01* X2533Y21870D01* X2505Y21857D01* Y23133D01* X2520Y23127D01* X2554Y23115D01* X2563Y23113D01* X2572Y23113D01* X2580Y23115D01* X2588Y23117D01* X2596Y23122D01* X2603Y23127D01* X2609Y23134D01* X2613Y23141D01* X2616Y23149D01* X2618Y23158D01* X2618Y23167D01* X2617Y23175D01* X2614Y23183D01* X2610Y23191D01* X2604Y23198D01* X2597Y23204D01* X2590Y23208D01* X2582Y23211D01* X2556Y23220D01* X2531Y23231D01* X2508Y23244D01* X2505Y23246D01* Y23754D01* X2527Y23766D01* X2551Y23777D01* X2577Y23786D01* X2585Y23790D01* X2592Y23794D01* X2599Y23800D01* X2604Y23807D01* X2608Y23815D01* X2611Y23823D01* X2612Y23832D01* X2612Y23840D01* X2610Y23849D01* X2607Y23857D01* X2602Y23864D01* X2596Y23871D01* X2589Y23876D01* X2582Y23880D01* X2573Y23883D01* X2565Y23884D01* X2556Y23884D01* X2548Y23882D01* X2513Y23870D01* X2505Y23866D01* Y25125D01* X2534Y25115D01* X2543Y25113D01* X2552Y25113D01* X2560Y25115D01* X2568Y25117D01* X2576Y25122D01* X2583Y25127D01* X2589Y25134D01* X2593Y25141D01* X2596Y25149D01* X2598Y25158D01* X2598Y25167D01* X2597Y25175D01* X2594Y25183D01* X2590Y25191D01* X2584Y25198D01* X2577Y25204D01* X2570Y25208D01* X2562Y25211D01* X2536Y25220D01* X2511Y25231D01* X2505Y25234D01* Y25765D01* X2507Y25766D01* X2531Y25777D01* X2557Y25786D01* X2565Y25790D01* X2572Y25794D01* X2579Y25800D01* X2584Y25807D01* X2588Y25815D01* X2591Y25823D01* X2592Y25832D01* X2592Y25840D01* X2590Y25849D01* X2587Y25857D01* X2582Y25864D01* X2576Y25871D01* X2569Y25876D01* X2562Y25880D01* X2553Y25883D01* X2545Y25884D01* X2536Y25884D01* X2528Y25882D01* X2505Y25874D01* Y27118D01* X2514Y27115D01* X2523Y27113D01* X2532Y27113D01* X2540Y27115D01* X2548Y27117D01* X2556Y27122D01* X2563Y27127D01* X2569Y27134D01* X2573Y27141D01* X2576Y27149D01* X2578Y27158D01* X2578Y27167D01* X2577Y27175D01* X2574Y27183D01* X2570Y27191D01* X2564Y27198D01* X2557Y27204D01* X2550Y27208D01* X2542Y27211D01* X2516Y27220D01* X2505Y27225D01* Y27775D01* X2511Y27777D01* X2537Y27786D01* X2545Y27790D01* X2552Y27794D01* X2559Y27800D01* X2564Y27807D01* X2568Y27815D01* X2571Y27823D01* X2572Y27832D01* X2572Y27840D01* X2570Y27849D01* X2567Y27857D01* X2562Y27864D01* X2556Y27871D01* X2549Y27876D01* X2542Y27880D01* X2533Y27883D01* X2525Y27884D01* X2516Y27884D01* X2508Y27882D01* X2505Y27881D01* Y29113D01* X2512Y29113D01* X2520Y29115D01* X2528Y29117D01* X2536Y29122D01* X2543Y29127D01* X2549Y29134D01* X2553Y29141D01* X2556Y29149D01* X2558Y29158D01* X2558Y29167D01* X2557Y29175D01* X2554Y29183D01* X2550Y29191D01* X2544Y29198D01* X2537Y29204D01* X2530Y29208D01* X2522Y29211D01* X2505Y29217D01* Y29782D01* X2517Y29786D01* X2525Y29790D01* X2532Y29794D01* X2539Y29800D01* X2544Y29807D01* X2548Y29815D01* X2551Y29823D01* X2552Y29832D01* X2552Y29840D01* X2550Y29849D01* X2547Y29857D01* X2542Y29864D01* X2536Y29871D01* X2529Y29876D01* X2522Y29880D01* X2513Y29883D01* X2505Y29884D01* Y31116D01* X2508Y31117D01* X2516Y31122D01* X2523Y31127D01* X2529Y31134D01* X2533Y31141D01* X2536Y31149D01* X2538Y31158D01* X2538Y31167D01* X2537Y31175D01* X2534Y31183D01* X2530Y31191D01* X2524Y31198D01* X2517Y31204D01* X2510Y31208D01* X2505Y31210D01* Y31790D01* X2512Y31794D01* X2519Y31800D01* X2524Y31807D01* X2528Y31815D01* X2531Y31823D01* X2532Y31832D01* X2532Y31840D01* X2530Y31849D01* X2527Y31857D01* X2522Y31864D01* X2516Y31871D01* X2509Y31876D01* X2505Y31878D01* Y33130D01* X2509Y33134D01* X2513Y33141D01* X2516Y33149D01* X2518Y33158D01* X2518Y33167D01* X2517Y33175D01* X2514Y33183D01* X2510Y33191D01* X2505Y33197D01* Y33809D01* X2508Y33815D01* X2511Y33823D01* X2512Y33832D01* X2512Y33840D01* X2510Y33849D01* X2507Y33857D01* X2505Y33859D01* Y40000D01* G37* G36* X2764Y0D02*X2505D01* Y1374D01* X2514Y1349D01* X2529Y1316D01* X2547Y1284D01* X2568Y1255D01* X2592Y1227D01* X2617Y1202D01* X2645Y1179D01* X2675Y1159D01* X2707Y1141D01* X2740Y1127D01* X2764Y1119D01* Y0D01* G37* G36* Y1225D02*X2751Y1231D01* X2728Y1244D01* X2705Y1259D01* X2684Y1276D01* X2665Y1295D01* X2647Y1316D01* X2632Y1338D01* X2618Y1362D01* X2607Y1386D01* X2598Y1412D01* X2594Y1420D01* X2590Y1427D01* X2584Y1434D01* X2577Y1439D01* X2569Y1443D01* X2561Y1446D01* X2552Y1447D01* X2544Y1447D01* X2535Y1445D01* X2527Y1442D01* X2520Y1437D01* X2513Y1431D01* X2508Y1424D01* X2505Y1419D01* Y1571D01* X2507Y1568D01* X2512Y1561D01* X2519Y1556D01* X2526Y1551D01* X2534Y1548D01* X2543Y1546D01* X2552Y1546D01* X2560Y1547D01* X2568Y1550D01* X2576Y1555D01* X2583Y1560D01* X2589Y1567D01* X2593Y1574D01* X2596Y1582D01* X2605Y1608D01* X2616Y1633D01* X2629Y1657D01* X2644Y1679D01* X2661Y1700D01* X2680Y1719D01* X2701Y1737D01* X2723Y1752D01* X2747Y1766D01* X2764Y1774D01* Y1225D01* G37* G36* Y1881D02*X2733Y1870D01* X2701Y1855D01* X2669Y1837D01* X2640Y1816D01* X2612Y1793D01* X2587Y1767D01* X2564Y1739D01* X2544Y1709D01* X2526Y1677D01* X2512Y1644D01* X2505Y1625D01* Y3325D01* X2509Y3316D01* X2527Y3284D01* X2548Y3255D01* X2572Y3227D01* X2597Y3202D01* X2625Y3179D01* X2655Y3159D01* X2687Y3141D01* X2720Y3127D01* X2754Y3115D01* X2763Y3113D01* X2764D01* Y1881D01* G37* G36* Y3217D02*X2756Y3220D01* X2731Y3231D01* X2708Y3244D01* X2685Y3259D01* X2664Y3276D01* X2645Y3295D01* X2627Y3316D01* X2612Y3338D01* X2598Y3362D01* X2587Y3386D01* X2578Y3412D01* X2574Y3420D01* X2570Y3427D01* X2564Y3434D01* X2557Y3439D01* X2549Y3443D01* X2541Y3446D01* X2532Y3447D01* X2524Y3447D01* X2515Y3445D01* X2507Y3442D01* X2505Y3441D01* Y3552D01* X2506Y3551D01* X2514Y3548D01* X2523Y3546D01* X2532Y3546D01* X2540Y3547D01* X2548Y3550D01* X2556Y3555D01* X2563Y3560D01* X2569Y3567D01* X2573Y3574D01* X2576Y3582D01* X2585Y3608D01* X2596Y3633D01* X2609Y3657D01* X2624Y3679D01* X2641Y3700D01* X2660Y3719D01* X2681Y3737D01* X2703Y3752D01* X2727Y3766D01* X2751Y3777D01* X2764Y3782D01* Y3217D01* G37* G36* Y3884D02*X2756Y3884D01* X2748Y3882D01* X2713Y3870D01* X2681Y3855D01* X2649Y3837D01* X2620Y3816D01* X2592Y3793D01* X2567Y3767D01* X2544Y3739D01* X2524Y3709D01* X2506Y3677D01* X2505Y3675D01* Y5288D01* X2507Y5284D01* X2528Y5255D01* X2552Y5227D01* X2577Y5202D01* X2605Y5179D01* X2635Y5159D01* X2667Y5141D01* X2700Y5127D01* X2734Y5115D01* X2743Y5113D01* X2752Y5113D01* X2760Y5115D01* X2764Y5116D01* Y3884D01* G37* G36* Y5210D02*X2762Y5211D01* X2736Y5220D01* X2711Y5231D01* X2688Y5244D01* X2665Y5259D01* X2644Y5276D01* X2625Y5295D01* X2607Y5316D01* X2592Y5338D01* X2578Y5362D01* X2567Y5386D01* X2558Y5412D01* X2554Y5420D01* X2550Y5427D01* X2544Y5434D01* X2537Y5439D01* X2529Y5443D01* X2521Y5446D01* X2512Y5447D01* X2505Y5447D01* Y5546D01* X2512Y5546D01* X2520Y5547D01* X2528Y5550D01* X2536Y5555D01* X2543Y5560D01* X2549Y5567D01* X2553Y5574D01* X2556Y5582D01* X2565Y5608D01* X2576Y5633D01* X2589Y5657D01* X2604Y5679D01* X2621Y5700D01* X2640Y5719D01* X2661Y5737D01* X2683Y5752D01* X2707Y5766D01* X2731Y5777D01* X2757Y5786D01* X2764Y5789D01* Y5210D01* G37* G36* Y5879D02*X2762Y5880D01* X2753Y5883D01* X2745Y5884D01* X2736Y5884D01* X2728Y5882D01* X2693Y5870D01* X2661Y5855D01* X2629Y5837D01* X2600Y5816D01* X2572Y5793D01* X2547Y5767D01* X2524Y5739D01* X2505Y5711D01* Y7259D01* X2508Y7255D01* X2532Y7227D01* X2557Y7202D01* X2585Y7179D01* X2615Y7159D01* X2647Y7141D01* X2680Y7127D01* X2714Y7115D01* X2723Y7113D01* X2732Y7113D01* X2740Y7115D01* X2748Y7117D01* X2756Y7122D01* X2763Y7127D01* X2764Y7128D01* Y5879D01* G37* G36* Y7198D02*X2757Y7204D01* X2750Y7208D01* X2742Y7211D01* X2716Y7220D01* X2691Y7231D01* X2668Y7244D01* X2645Y7259D01* X2624Y7276D01* X2605Y7295D01* X2587Y7316D01* X2572Y7338D01* X2558Y7362D01* X2547Y7386D01* X2538Y7412D01* X2534Y7420D01* X2530Y7427D01* X2524Y7434D01* X2517Y7439D01* X2509Y7443D01* X2505Y7445D01* Y7549D01* X2508Y7550D01* X2516Y7555D01* X2523Y7560D01* X2529Y7567D01* X2533Y7574D01* X2536Y7582D01* X2545Y7608D01* X2556Y7633D01* X2569Y7657D01* X2584Y7679D01* X2601Y7700D01* X2620Y7719D01* X2641Y7737D01* X2663Y7752D01* X2687Y7766D01* X2711Y7777D01* X2737Y7786D01* X2745Y7790D01* X2752Y7794D01* X2759Y7800D01* X2764Y7807D01* Y7198D01* G37* G36* Y40000D02*X2944D01* Y33625D01* X2935Y33651D01* X2920Y33683D01* X2902Y33715D01* X2881Y33744D01* X2857Y33772D01* X2832Y33797D01* X2804Y33820D01* X2774Y33840D01* X2764Y33846D01* Y35165D01* X2789Y35183D01* X2817Y35207D01* X2842Y35232D01* X2865Y35260D01* X2885Y35290D01* X2903Y35322D01* X2917Y35355D01* X2929Y35389D01* X2931Y35398D01* X2931Y35407D01* X2930Y35415D01* X2927Y35423D01* X2922Y35431D01* X2917Y35438D01* X2910Y35444D01* X2903Y35448D01* X2895Y35451D01* X2886Y35453D01* X2877Y35453D01* X2869Y35452D01* X2861Y35449D01* X2853Y35445D01* X2846Y35439D01* X2840Y35433D01* X2836Y35425D01* X2833Y35417D01* X2824Y35391D01* X2813Y35366D01* X2800Y35343D01* X2785Y35320D01* X2768Y35299D01* X2764Y35295D01* Y35704D01* X2764Y35704D01* X2782Y35683D01* X2797Y35661D01* X2811Y35637D01* X2822Y35613D01* X2831Y35587D01* X2835Y35579D01* X2839Y35572D01* X2845Y35565D01* X2852Y35560D01* X2860Y35556D01* X2868Y35553D01* X2877Y35552D01* X2885Y35552D01* X2894Y35554D01* X2902Y35557D01* X2909Y35562D01* X2916Y35568D01* X2921Y35575D01* X2925Y35582D01* X2928Y35591D01* X2929Y35599D01* X2929Y35608D01* X2927Y35617D01* X2915Y35651D01* X2900Y35683D01* X2882Y35715D01* X2861Y35744D01* X2837Y35772D01* X2812Y35797D01* X2784Y35820D01* X2764Y35834D01* Y37180D01* X2769Y37183D01* X2797Y37207D01* X2822Y37232D01* X2845Y37260D01* X2865Y37290D01* X2883Y37322D01* X2897Y37355D01* X2909Y37389D01* X2911Y37398D01* X2911Y37407D01* X2910Y37415D01* X2907Y37423D01* X2902Y37431D01* X2897Y37438D01* X2890Y37444D01* X2883Y37448D01* X2875Y37451D01* X2866Y37453D01* X2857Y37453D01* X2849Y37452D01* X2841Y37449D01* X2833Y37445D01* X2826Y37439D01* X2820Y37433D01* X2816Y37425D01* X2813Y37417D01* X2804Y37391D01* X2793Y37366D01* X2780Y37343D01* X2765Y37320D01* X2764Y37319D01* Y37680D01* X2777Y37661D01* X2791Y37637D01* X2802Y37613D01* X2811Y37587D01* X2815Y37579D01* X2819Y37572D01* X2825Y37565D01* X2832Y37560D01* X2840Y37556D01* X2848Y37553D01* X2857Y37552D01* X2865Y37552D01* X2874Y37554D01* X2882Y37557D01* X2889Y37562D01* X2896Y37568D01* X2901Y37575D01* X2905Y37582D01* X2908Y37591D01* X2909Y37599D01* X2909Y37608D01* X2907Y37617D01* X2895Y37651D01* X2880Y37683D01* X2862Y37715D01* X2841Y37744D01* X2817Y37772D01* X2792Y37797D01* X2764Y37820D01* Y39196D01* X2777Y39207D01* X2802Y39232D01* X2825Y39260D01* X2845Y39290D01* X2863Y39322D01* X2877Y39355D01* X2889Y39389D01* X2891Y39398D01* X2891Y39407D01* X2890Y39415D01* X2887Y39423D01* X2882Y39431D01* X2877Y39438D01* X2870Y39444D01* X2863Y39448D01* X2855Y39451D01* X2846Y39453D01* X2837Y39453D01* X2829Y39452D01* X2821Y39449D01* X2813Y39445D01* X2806Y39439D01* X2800Y39433D01* X2796Y39425D01* X2793Y39417D01* X2784Y39391D01* X2773Y39366D01* X2764Y39350D01* Y39650D01* X2771Y39637D01* X2782Y39613D01* X2791Y39587D01* X2795Y39579D01* X2799Y39572D01* X2805Y39565D01* X2812Y39560D01* X2820Y39556D01* X2828Y39553D01* X2837Y39552D01* X2845Y39552D01* X2854Y39554D01* X2862Y39557D01* X2869Y39562D01* X2876Y39568D01* X2881Y39575D01* X2885Y39582D01* X2888Y39591D01* X2889Y39599D01* X2889Y39608D01* X2887Y39617D01* X2875Y39651D01* X2860Y39683D01* X2842Y39715D01* X2821Y39744D01* X2797Y39772D01* X2772Y39797D01* X2764Y39804D01* Y40000D01* G37* G36* Y33724D02*X2765Y33723D01* X2784Y33704D01* X2802Y33683D01* X2817Y33661D01* X2831Y33637D01* X2842Y33613D01* X2851Y33587D01* X2855Y33579D01* X2859Y33572D01* X2865Y33565D01* X2872Y33560D01* X2880Y33556D01* X2888Y33553D01* X2897Y33552D01* X2905Y33552D01* X2914Y33554D01* X2922Y33557D01* X2929Y33562D01* X2936Y33568D01* X2941Y33575D01* X2944Y33580D01* Y33428D01* X2942Y33431D01* X2937Y33438D01* X2930Y33444D01* X2923Y33448D01* X2915Y33451D01* X2906Y33453D01* X2897Y33453D01* X2889Y33452D01* X2881Y33449D01* X2873Y33445D01* X2866Y33439D01* X2860Y33433D01* X2856Y33425D01* X2853Y33417D01* X2844Y33391D01* X2833Y33366D01* X2820Y33343D01* X2805Y33320D01* X2788Y33299D01* X2769Y33280D01* X2764Y33276D01* Y33724D01* G37* G36* Y33153D02*X2780Y33162D01* X2809Y33183D01* X2837Y33207D01* X2862Y33232D01* X2885Y33260D01* X2905Y33290D01* X2923Y33322D01* X2937Y33355D01* X2944Y33374D01* Y31674D01* X2940Y31683D01* X2922Y31715D01* X2901Y31744D01* X2877Y31772D01* X2852Y31797D01* X2824Y31820D01* X2794Y31840D01* X2764Y31857D01* Y33153D01* G37* G36* Y31740D02*X2785Y31723D01* X2804Y31704D01* X2822Y31683D01* X2837Y31661D01* X2851Y31637D01* X2862Y31613D01* X2871Y31587D01* X2875Y31579D01* X2879Y31572D01* X2885Y31565D01* X2892Y31560D01* X2900Y31556D01* X2908Y31553D01* X2917Y31552D01* X2925Y31552D01* X2934Y31554D01* X2942Y31557D01* X2944Y31559D01* Y31447D01* X2943Y31448D01* X2935Y31451D01* X2926Y31453D01* X2917Y31453D01* X2909Y31452D01* X2901Y31449D01* X2893Y31445D01* X2886Y31439D01* X2880Y31433D01* X2876Y31425D01* X2873Y31417D01* X2864Y31391D01* X2853Y31366D01* X2840Y31343D01* X2825Y31320D01* X2808Y31299D01* X2789Y31280D01* X2768Y31262D01* X2764Y31259D01* Y31740D01* G37* G36* Y31142D02*X2768Y31144D01* X2800Y31162D01* X2829Y31183D01* X2857Y31207D01* X2882Y31232D01* X2905Y31260D01* X2925Y31290D01* X2943Y31322D01* X2944Y31324D01* Y29711D01* X2942Y29715D01* X2921Y29744D01* X2897Y29772D01* X2872Y29797D01* X2844Y29820D01* X2814Y29840D01* X2782Y29858D01* X2764Y29866D01* Y31142D01* G37* G36* Y29754D02*X2784Y29740D01* X2805Y29723D01* X2824Y29704D01* X2842Y29683D01* X2857Y29661D01* X2871Y29637D01* X2882Y29613D01* X2891Y29587D01* X2895Y29579D01* X2899Y29572D01* X2905Y29565D01* X2912Y29560D01* X2920Y29556D01* X2928Y29553D01* X2937Y29552D01* X2944Y29552D01* Y29453D01* X2937Y29453D01* X2929Y29452D01* X2921Y29449D01* X2913Y29445D01* X2906Y29439D01* X2900Y29433D01* X2896Y29425D01* X2893Y29417D01* X2884Y29391D01* X2873Y29366D01* X2860Y29343D01* X2845Y29320D01* X2828Y29299D01* X2809Y29280D01* X2788Y29262D01* X2766Y29247D01* X2764Y29246D01* Y29754D01* G37* G36* Y29133D02*X2788Y29144D01* X2820Y29162D01* X2849Y29183D01* X2877Y29207D01* X2902Y29232D01* X2925Y29260D01* X2944Y29288D01* Y27740D01* X2941Y27744D01* X2917Y27772D01* X2892Y27797D01* X2864Y27820D01* X2834Y27840D01* X2802Y27858D01* X2769Y27873D01* X2764Y27874D01* Y29133D01* G37* G36* Y27765D02*X2781Y27755D01* X2804Y27740D01* X2825Y27723D01* X2844Y27704D01* X2862Y27683D01* X2877Y27661D01* X2891Y27637D01* X2902Y27613D01* X2911Y27587D01* X2915Y27579D01* X2919Y27572D01* X2925Y27565D01* X2932Y27560D01* X2940Y27556D01* X2944Y27555D01* Y27450D01* X2941Y27449D01* X2933Y27445D01* X2926Y27439D01* X2920Y27433D01* X2916Y27425D01* X2913Y27417D01* X2904Y27391D01* X2893Y27366D01* X2880Y27343D01* X2865Y27320D01* X2848Y27299D01* X2829Y27280D01* X2808Y27262D01* X2786Y27247D01* X2764Y27234D01* Y27765D01* G37* G36* Y27125D02*X2776Y27129D01* X2808Y27144D01* X2840Y27162D01* X2869Y27183D01* X2897Y27207D01* X2922Y27232D01* X2944Y27259D01* Y25764D01* X2937Y25772D01* X2912Y25797D01* X2884Y25820D01* X2854Y25840D01* X2822Y25858D01* X2789Y25873D01* X2764Y25881D01* Y27125D01* G37* G36* Y25774D02*X2778Y25768D01* X2801Y25755D01* X2824Y25740D01* X2845Y25723D01* X2864Y25704D01* X2882Y25683D01* X2897Y25661D01* X2911Y25637D01* X2922Y25613D01* X2931Y25587D01* X2935Y25579D01* X2939Y25572D01* X2944Y25567D01* Y25437D01* X2940Y25433D01* X2936Y25425D01* X2933Y25417D01* X2924Y25391D01* X2913Y25366D01* X2900Y25343D01* X2885Y25320D01* X2868Y25299D01* X2849Y25280D01* X2828Y25262D01* X2806Y25247D01* X2782Y25233D01* X2764Y25225D01* Y25774D01* G37* G36* Y25118D02*X2796Y25129D01* X2828Y25144D01* X2860Y25162D01* X2889Y25183D01* X2917Y25207D01* X2942Y25232D01* X2944Y25235D01* Y23785D01* X2932Y23797D01* X2904Y23820D01* X2874Y23840D01* X2842Y23858D01* X2809Y23873D01* X2775Y23884D01* X2766Y23886D01* X2764D01* Y25118D01* G37* G36* Y23782D02*X2773Y23779D01* X2798Y23768D01* X2821Y23755D01* X2844Y23740D01* X2865Y23723D01* X2884Y23704D01* X2902Y23683D01* X2917Y23661D01* X2931Y23637D01* X2942Y23613D01* X2944Y23608D01* Y23391D01* X2933Y23366D01* X2920Y23343D01* X2905Y23320D01* X2888Y23299D01* X2869Y23280D01* X2848Y23262D01* X2826Y23247D01* X2802Y23233D01* X2778Y23222D01* X2764Y23217D01* Y23782D01* G37* G36* Y23115D02*X2764D01* X2773Y23115D01* X2781Y23117D01* X2816Y23129D01* X2848Y23144D01* X2880Y23162D01* X2909Y23183D01* X2937Y23207D01* X2944Y23214D01* Y21804D01* X2924Y21820D01* X2894Y21840D01* X2862Y21858D01* X2829Y21873D01* X2795Y21884D01* X2786Y21886D01* X2777Y21886D01* X2769Y21885D01* X2764Y21883D01* Y23115D01* G37* G36* Y21789D02*X2767Y21788D01* X2793Y21779D01* X2818Y21768D01* X2841Y21755D01* X2864Y21740D01* X2885Y21723D01* X2904Y21704D01* X2922Y21683D01* X2937Y21661D01* X2944Y21650D01* Y21350D01* X2940Y21343D01* X2925Y21320D01* X2908Y21299D01* X2889Y21280D01* X2868Y21262D01* X2846Y21247D01* X2822Y21233D01* X2798Y21222D01* X2772Y21213D01* X2764Y21209D01* X2764Y21209D01* Y21789D01* G37* G36* Y21121D02*X2767Y21119D01* X2776Y21116D01* X2784Y21115D01* X2793Y21115D01* X2801Y21117D01* X2836Y21129D01* X2868Y21144D01* X2900Y21162D01* X2929Y21183D01* X2944Y21196D01* Y19820D01* X2944Y19820D01* X2914Y19840D01* X2882Y19858D01* X2849Y19873D01* X2815Y19884D01* X2806Y19886D01* X2797Y19886D01* X2789Y19885D01* X2781Y19882D01* X2773Y19878D01* X2766Y19872D01* X2764Y19870D01* Y21121D01* G37* G36* Y19802D02*X2765Y19801D01* X2772Y19796D01* X2779Y19791D01* X2787Y19788D01* X2813Y19779D01* X2838Y19768D01* X2861Y19755D01* X2884Y19740D01* X2905Y19723D01* X2924Y19704D01* X2942Y19683D01* X2944Y19680D01* Y19319D01* X2928Y19299D01* X2909Y19280D01* X2888Y19262D01* X2866Y19247D01* X2842Y19233D01* X2818Y19222D01* X2792Y19213D01* X2784Y19209D01* X2777Y19205D01* X2770Y19199D01* X2765Y19192D01* X2764Y19190D01* Y19802D01* G37* G36* Y19140D02*X2767Y19135D01* X2773Y19128D01* X2780Y19123D01* X2787Y19119D01* X2796Y19116D01* X2804Y19115D01* X2813Y19115D01* X2821Y19117D01* X2856Y19129D01* X2888Y19144D01* X2920Y19162D01* X2944Y19180D01* Y17834D01* X2934Y17840D01* X2902Y17858D01* X2869Y17873D01* X2835Y17884D01* X2826Y17886D01* X2817Y17886D01* X2809Y17885D01* X2801Y17882D01* X2793Y17878D01* X2786Y17872D01* X2780Y17865D01* X2776Y17858D01* X2773Y17850D01* X2771Y17841D01* X2771Y17833D01* X2772Y17824D01* X2775Y17816D01* X2779Y17808D01* X2785Y17801D01* X2792Y17796D01* X2799Y17791D01* X2807Y17788D01* X2833Y17779D01* X2858Y17768D01* X2881Y17755D01* X2904Y17740D01* X2925Y17723D01* X2944Y17704D01* Y17295D01* X2929Y17280D01* X2908Y17262D01* X2886Y17247D01* X2862Y17233D01* X2838Y17222D01* X2812Y17213D01* X2804Y17209D01* X2797Y17205D01* X2790Y17199D01* X2785Y17192D01* X2781Y17184D01* X2778Y17176D01* X2777Y17167D01* X2777Y17159D01* X2779Y17150D01* X2782Y17142D01* X2787Y17135D01* X2793Y17128D01* X2800Y17123D01* X2807Y17119D01* X2816Y17116D01* X2824Y17115D01* X2833Y17115D01* X2841Y17117D01* X2876Y17129D01* X2908Y17144D01* X2940Y17162D01* X2944Y17165D01* Y15846D01* X2922Y15858D01* X2889Y15873D01* X2855Y15884D01* X2846Y15886D01* X2837Y15886D01* X2829Y15885D01* X2821Y15882D01* X2813Y15878D01* X2806Y15872D01* X2800Y15865D01* X2796Y15858D01* X2793Y15850D01* X2791Y15841D01* X2791Y15833D01* X2792Y15824D01* X2795Y15816D01* X2799Y15808D01* X2805Y15801D01* X2812Y15796D01* X2819Y15791D01* X2827Y15788D01* X2853Y15779D01* X2878Y15768D01* X2901Y15755D01* X2924Y15740D01* X2944Y15724D01* Y15276D01* X2928Y15262D01* X2906Y15247D01* X2882Y15233D01* X2858Y15222D01* X2832Y15213D01* X2824Y15209D01* X2817Y15205D01* X2810Y15199D01* X2805Y15192D01* X2801Y15184D01* X2798Y15176D01* X2797Y15167D01* X2797Y15159D01* X2799Y15150D01* X2802Y15142D01* X2807Y15135D01* X2813Y15128D01* X2820Y15123D01* X2827Y15119D01* X2836Y15116D01* X2844Y15115D01* X2853Y15115D01* X2861Y15117D01* X2896Y15129D01* X2928Y15144D01* X2944Y15153D01* Y13857D01* X2942Y13858D01* X2909Y13873D01* X2875Y13884D01* X2866Y13886D01* X2857Y13886D01* X2849Y13885D01* X2841Y13882D01* X2833Y13878D01* X2826Y13872D01* X2820Y13865D01* X2816Y13858D01* X2813Y13850D01* X2811Y13841D01* X2811Y13833D01* X2812Y13824D01* X2815Y13816D01* X2819Y13808D01* X2825Y13801D01* X2832Y13796D01* X2839Y13791D01* X2847Y13788D01* X2873Y13779D01* X2898Y13768D01* X2921Y13755D01* X2944Y13740D01* Y13259D01* X2926Y13247D01* X2902Y13233D01* X2878Y13222D01* X2852Y13213D01* X2844Y13209D01* X2837Y13205D01* X2830Y13199D01* X2825Y13192D01* X2821Y13184D01* X2818Y13176D01* X2817Y13167D01* X2817Y13159D01* X2819Y13150D01* X2822Y13142D01* X2827Y13135D01* X2833Y13128D01* X2840Y13123D01* X2847Y13119D01* X2856Y13116D01* X2864Y13115D01* X2873Y13115D01* X2881Y13117D01* X2916Y13129D01* X2944Y13142D01* Y11866D01* X2929Y11873D01* X2895Y11884D01* X2886Y11886D01* X2877Y11886D01* X2869Y11885D01* X2861Y11882D01* X2853Y11878D01* X2846Y11872D01* X2840Y11865D01* X2836Y11858D01* X2833Y11850D01* X2831Y11841D01* X2831Y11833D01* X2832Y11824D01* X2835Y11816D01* X2839Y11808D01* X2845Y11801D01* X2852Y11796D01* X2859Y11791D01* X2867Y11788D01* X2893Y11779D01* X2918Y11768D01* X2941Y11755D01* X2944Y11754D01* Y11246D01* X2922Y11233D01* X2898Y11222D01* X2872Y11213D01* X2864Y11209D01* X2857Y11205D01* X2850Y11199D01* X2845Y11192D01* X2841Y11184D01* X2838Y11176D01* X2837Y11167D01* X2837Y11159D01* X2839Y11150D01* X2842Y11142D01* X2847Y11135D01* X2853Y11128D01* X2860Y11123D01* X2867Y11119D01* X2876Y11116D01* X2884Y11115D01* X2893Y11115D01* X2901Y11117D01* X2936Y11129D01* X2944Y11133D01* Y9874D01* X2915Y9884D01* X2906Y9886D01* X2897Y9886D01* X2889Y9885D01* X2881Y9882D01* X2873Y9878D01* X2866Y9872D01* X2860Y9865D01* X2856Y9858D01* X2853Y9850D01* X2851Y9841D01* X2851Y9833D01* X2852Y9824D01* X2855Y9816D01* X2859Y9808D01* X2865Y9801D01* X2872Y9796D01* X2879Y9791D01* X2887Y9788D01* X2913Y9779D01* X2938Y9768D01* X2944Y9765D01* Y9234D01* X2942Y9233D01* X2918Y9222D01* X2892Y9213D01* X2884Y9209D01* X2877Y9205D01* X2870Y9199D01* X2865Y9192D01* X2861Y9184D01* X2858Y9176D01* X2857Y9167D01* X2857Y9159D01* X2859Y9150D01* X2862Y9142D01* X2867Y9135D01* X2873Y9128D01* X2880Y9123D01* X2887Y9119D01* X2896Y9116D01* X2904Y9115D01* X2913Y9115D01* X2921Y9117D01* X2944Y9125D01* Y7881D01* X2935Y7884D01* X2926Y7886D01* X2917Y7886D01* X2909Y7885D01* X2901Y7882D01* X2893Y7878D01* X2886Y7872D01* X2880Y7865D01* X2876Y7858D01* X2873Y7850D01* X2871Y7841D01* X2871Y7833D01* X2872Y7824D01* X2875Y7816D01* X2879Y7808D01* X2885Y7801D01* X2892Y7796D01* X2899Y7791D01* X2907Y7788D01* X2933Y7779D01* X2944Y7774D01* Y7225D01* X2938Y7222D01* X2912Y7213D01* X2904Y7209D01* X2897Y7205D01* X2890Y7199D01* X2885Y7192D01* X2881Y7184D01* X2878Y7176D01* X2877Y7167D01* X2877Y7159D01* X2879Y7150D01* X2882Y7142D01* X2887Y7135D01* X2893Y7128D01* X2900Y7123D01* X2907Y7119D01* X2916Y7116D01* X2924Y7115D01* X2933Y7115D01* X2941Y7117D01* X2944Y7118D01* Y5886D01* X2937Y5886D01* X2929Y5885D01* X2921Y5882D01* X2913Y5878D01* X2906Y5872D01* X2900Y5865D01* X2896Y5858D01* X2893Y5850D01* X2891Y5841D01* X2891Y5833D01* X2892Y5824D01* X2895Y5816D01* X2899Y5808D01* X2905Y5801D01* X2912Y5796D01* X2919Y5791D01* X2927Y5788D01* X2944Y5782D01* Y5217D01* X2932Y5213D01* X2924Y5209D01* X2917Y5205D01* X2910Y5199D01* X2905Y5192D01* X2901Y5184D01* X2898Y5176D01* X2897Y5167D01* X2897Y5159D01* X2899Y5150D01* X2902Y5142D01* X2907Y5135D01* X2913Y5128D01* X2920Y5123D01* X2927Y5119D01* X2936Y5116D01* X2944Y5115D01* Y3883D01* X2941Y3882D01* X2933Y3878D01* X2926Y3872D01* X2920Y3865D01* X2916Y3858D01* X2913Y3850D01* X2911Y3841D01* X2911Y3833D01* X2912Y3824D01* X2915Y3816D01* X2919Y3808D01* X2925Y3801D01* X2932Y3796D01* X2939Y3791D01* X2944Y3789D01* Y3209D01* X2937Y3205D01* X2930Y3199D01* X2925Y3192D01* X2921Y3184D01* X2918Y3176D01* X2917Y3167D01* X2917Y3159D01* X2919Y3150D01* X2922Y3142D01* X2927Y3135D01* X2933Y3128D01* X2940Y3123D01* X2944Y3121D01* Y1870D01* X2940Y1865D01* X2936Y1858D01* X2933Y1850D01* X2931Y1841D01* X2931Y1833D01* X2932Y1824D01* X2935Y1816D01* X2939Y1808D01* X2944Y1802D01* Y1190D01* X2941Y1184D01* X2938Y1176D01* X2937Y1167D01* X2937Y1159D01* X2939Y1150D01* X2942Y1142D01* X2944Y1140D01* Y0D01* X2764D01* Y1119D01* X2774Y1115D01* X2783Y1113D01* X2792Y1113D01* X2800Y1115D01* X2808Y1117D01* X2816Y1122D01* X2823Y1127D01* X2829Y1134D01* X2833Y1141D01* X2836Y1149D01* X2838Y1158D01* X2838Y1167D01* X2837Y1175D01* X2834Y1183D01* X2830Y1191D01* X2824Y1198D01* X2817Y1204D01* X2810Y1208D01* X2802Y1211D01* X2776Y1220D01* X2764Y1225D01* Y1774D01* X2771Y1777D01* X2797Y1786D01* X2805Y1790D01* X2812Y1794D01* X2819Y1800D01* X2824Y1807D01* X2828Y1815D01* X2831Y1823D01* X2832Y1832D01* X2832Y1840D01* X2830Y1849D01* X2827Y1857D01* X2822Y1864D01* X2816Y1871D01* X2809Y1876D01* X2802Y1880D01* X2793Y1883D01* X2785Y1884D01* X2776Y1884D01* X2768Y1882D01* X2764Y1881D01* Y3113D01* X2772Y3113D01* X2780Y3115D01* X2788Y3117D01* X2796Y3122D01* X2803Y3127D01* X2809Y3134D01* X2813Y3141D01* X2816Y3149D01* X2818Y3158D01* X2818Y3167D01* X2817Y3175D01* X2814Y3183D01* X2810Y3191D01* X2804Y3198D01* X2797Y3204D01* X2790Y3208D01* X2782Y3211D01* X2764Y3217D01* Y3782D01* X2777Y3786D01* X2785Y3790D01* X2792Y3794D01* X2799Y3800D01* X2804Y3807D01* X2808Y3815D01* X2811Y3823D01* X2812Y3832D01* X2812Y3840D01* X2810Y3849D01* X2807Y3857D01* X2802Y3864D01* X2796Y3871D01* X2789Y3876D01* X2782Y3880D01* X2773Y3883D01* X2765Y3884D01* X2764D01* Y5116D01* X2768Y5117D01* X2776Y5122D01* X2783Y5127D01* X2789Y5134D01* X2793Y5141D01* X2796Y5149D01* X2798Y5158D01* X2798Y5167D01* X2797Y5175D01* X2794Y5183D01* X2790Y5191D01* X2784Y5198D01* X2777Y5204D01* X2770Y5208D01* X2764Y5210D01* Y5789D01* X2765Y5790D01* X2772Y5794D01* X2779Y5800D01* X2784Y5807D01* X2788Y5815D01* X2791Y5823D01* X2792Y5832D01* X2792Y5840D01* X2790Y5849D01* X2787Y5857D01* X2782Y5864D01* X2776Y5871D01* X2769Y5876D01* X2764Y5879D01* Y7128D01* X2769Y7134D01* X2773Y7141D01* X2776Y7149D01* X2778Y7158D01* X2778Y7167D01* X2777Y7175D01* X2774Y7183D01* X2770Y7191D01* X2764Y7198D01* X2764Y7198D01* Y7807D01* X2764Y7807D01* X2768Y7815D01* X2771Y7823D01* X2772Y7832D01* X2772Y7840D01* X2770Y7849D01* X2767Y7857D01* X2764Y7861D01* Y19140D01* G37* G36* X2944Y40000D02*X4445D01* Y39859D01* X4442Y39864D01* X4436Y39871D01* X4429Y39876D01* X4422Y39880D01* X4413Y39883D01* X4405Y39884D01* X4396Y39884D01* X4388Y39882D01* X4353Y39870D01* X4321Y39855D01* X4289Y39837D01* X4260Y39816D01* X4232Y39793D01* X4207Y39767D01* X4184Y39739D01* X4164Y39709D01* X4146Y39677D01* X4132Y39644D01* X4120Y39610D01* X4118Y39601D01* X4118Y39593D01* X4119Y39584D01* X4122Y39576D01* X4127Y39568D01* X4132Y39561D01* X4139Y39556D01* X4146Y39551D01* X4154Y39548D01* X4163Y39546D01* X4172Y39546D01* X4180Y39547D01* X4188Y39550D01* X4196Y39555D01* X4203Y39560D01* X4209Y39567D01* X4213Y39574D01* X4216Y39582D01* X4225Y39608D01* X4236Y39633D01* X4249Y39657D01* X4264Y39679D01* X4281Y39700D01* X4300Y39719D01* X4321Y39737D01* X4343Y39752D01* X4367Y39766D01* X4391Y39777D01* X4417Y39786D01* X4425Y39790D01* X4432Y39794D01* X4439Y39800D01* X4444Y39807D01* X4445Y39809D01* Y39197D01* X4444Y39198D01* X4437Y39204D01* X4430Y39208D01* X4422Y39211D01* X4396Y39220D01* X4371Y39231D01* X4348Y39244D01* X4325Y39259D01* X4304Y39276D01* X4285Y39295D01* X4267Y39316D01* X4252Y39338D01* X4238Y39362D01* X4227Y39386D01* X4218Y39412D01* X4214Y39420D01* X4210Y39427D01* X4204Y39434D01* X4197Y39439D01* X4189Y39443D01* X4181Y39446D01* X4172Y39447D01* X4164Y39447D01* X4155Y39445D01* X4147Y39442D01* X4140Y39437D01* X4133Y39431D01* X4128Y39424D01* X4124Y39417D01* X4121Y39409D01* X4120Y39400D01* X4120Y39391D01* X4122Y39383D01* X4134Y39349D01* X4149Y39316D01* X4167Y39284D01* X4188Y39255D01* X4212Y39227D01* X4237Y39202D01* X4265Y39179D01* X4295Y39159D01* X4327Y39141D01* X4360Y39127D01* X4394Y39115D01* X4403Y39113D01* X4412Y39113D01* X4420Y39115D01* X4428Y39117D01* X4436Y39122D01* X4443Y39127D01* X4445Y39130D01* Y37878D01* X4442Y37880D01* X4433Y37883D01* X4425Y37884D01* X4416Y37884D01* X4408Y37882D01* X4373Y37870D01* X4341Y37855D01* X4309Y37837D01* X4280Y37816D01* X4252Y37793D01* X4227Y37767D01* X4204Y37739D01* X4184Y37709D01* X4166Y37677D01* X4152Y37644D01* X4140Y37610D01* X4138Y37601D01* X4138Y37593D01* X4139Y37584D01* X4142Y37576D01* X4147Y37568D01* X4152Y37561D01* X4159Y37556D01* X4166Y37551D01* X4174Y37548D01* X4183Y37546D01* X4192Y37546D01* X4200Y37547D01* X4208Y37550D01* X4216Y37555D01* X4223Y37560D01* X4229Y37567D01* X4233Y37574D01* X4236Y37582D01* X4245Y37608D01* X4256Y37633D01* X4269Y37657D01* X4284Y37679D01* X4301Y37700D01* X4320Y37719D01* X4341Y37737D01* X4363Y37752D01* X4387Y37766D01* X4411Y37777D01* X4437Y37786D01* X4445Y37790D01* X4445Y37790D01* Y37210D01* X4442Y37211D01* X4416Y37220D01* X4391Y37231D01* X4368Y37244D01* X4345Y37259D01* X4324Y37276D01* X4305Y37295D01* X4287Y37316D01* X4272Y37338D01* X4258Y37362D01* X4247Y37386D01* X4238Y37412D01* X4234Y37420D01* X4230Y37427D01* X4224Y37434D01* X4217Y37439D01* X4209Y37443D01* X4201Y37446D01* X4192Y37447D01* X4184Y37447D01* X4175Y37445D01* X4167Y37442D01* X4160Y37437D01* X4153Y37431D01* X4148Y37424D01* X4144Y37417D01* X4141Y37409D01* X4140Y37400D01* X4140Y37391D01* X4142Y37383D01* X4154Y37349D01* X4169Y37316D01* X4187Y37284D01* X4208Y37255D01* X4232Y37227D01* X4257Y37202D01* X4285Y37179D01* X4315Y37159D01* X4347Y37141D01* X4380Y37127D01* X4414Y37115D01* X4423Y37113D01* X4432Y37113D01* X4440Y37115D01* X4445Y37116D01* Y35884D01* X4445Y35884D01* X4436Y35884D01* X4428Y35882D01* X4393Y35870D01* X4361Y35855D01* X4329Y35837D01* X4300Y35816D01* X4272Y35793D01* X4247Y35767D01* X4224Y35739D01* X4204Y35709D01* X4186Y35677D01* X4172Y35644D01* X4160Y35610D01* X4158Y35601D01* X4158Y35593D01* X4159Y35584D01* X4162Y35576D01* X4167Y35568D01* X4172Y35561D01* X4179Y35556D01* X4186Y35551D01* X4194Y35548D01* X4203Y35546D01* X4212Y35546D01* X4220Y35547D01* X4228Y35550D01* X4236Y35555D01* X4243Y35560D01* X4249Y35567D01* X4253Y35574D01* X4256Y35582D01* X4265Y35608D01* X4276Y35633D01* X4289Y35657D01* X4304Y35679D01* X4321Y35700D01* X4340Y35719D01* X4361Y35737D01* X4383Y35752D01* X4407Y35766D01* X4431Y35777D01* X4445Y35782D01* Y35217D01* X4436Y35220D01* X4411Y35231D01* X4388Y35244D01* X4365Y35259D01* X4344Y35276D01* X4325Y35295D01* X4307Y35316D01* X4292Y35338D01* X4278Y35362D01* X4267Y35386D01* X4258Y35412D01* X4254Y35420D01* X4250Y35427D01* X4244Y35434D01* X4237Y35439D01* X4229Y35443D01* X4221Y35446D01* X4212Y35447D01* X4204Y35447D01* X4195Y35445D01* X4187Y35442D01* X4180Y35437D01* X4173Y35431D01* X4168Y35424D01* X4164Y35417D01* X4161Y35409D01* X4160Y35400D01* X4160Y35391D01* X4162Y35383D01* X4174Y35349D01* X4189Y35316D01* X4207Y35284D01* X4228Y35255D01* X4252Y35227D01* X4277Y35202D01* X4305Y35179D01* X4335Y35159D01* X4367Y35141D01* X4400Y35127D01* X4434Y35115D01* X4443Y35113D01* X4445D01* Y33881D01* X4413Y33870D01* X4381Y33855D01* X4349Y33837D01* X4320Y33816D01* X4292Y33793D01* X4267Y33767D01* X4244Y33739D01* X4224Y33709D01* X4206Y33677D01* X4192Y33644D01* X4180Y33610D01* X4178Y33601D01* X4178Y33593D01* X4179Y33584D01* X4182Y33576D01* X4187Y33568D01* X4192Y33561D01* X4199Y33556D01* X4206Y33551D01* X4214Y33548D01* X4223Y33546D01* X4232Y33546D01* X4240Y33547D01* X4248Y33550D01* X4256Y33555D01* X4263Y33560D01* X4269Y33567D01* X4273Y33574D01* X4276Y33582D01* X4285Y33608D01* X4296Y33633D01* X4309Y33657D01* X4324Y33679D01* X4341Y33700D01* X4360Y33719D01* X4381Y33737D01* X4403Y33752D01* X4427Y33766D01* X4445Y33775D01* Y33225D01* X4431Y33231D01* X4408Y33244D01* X4385Y33259D01* X4364Y33276D01* X4345Y33295D01* X4327Y33316D01* X4312Y33338D01* X4298Y33362D01* X4287Y33386D01* X4278Y33412D01* X4274Y33420D01* X4270Y33427D01* X4264Y33434D01* X4257Y33439D01* X4249Y33443D01* X4241Y33446D01* X4232Y33447D01* X4224Y33447D01* X4215Y33445D01* X4207Y33442D01* X4200Y33437D01* X4193Y33431D01* X4188Y33424D01* X4184Y33417D01* X4181Y33409D01* X4180Y33400D01* X4180Y33391D01* X4182Y33383D01* X4194Y33349D01* X4209Y33316D01* X4227Y33284D01* X4248Y33255D01* X4272Y33227D01* X4297Y33202D01* X4325Y33179D01* X4355Y33159D01* X4387Y33141D01* X4420Y33127D01* X4445Y33118D01* Y31874D01* X4433Y31870D01* X4401Y31855D01* X4369Y31837D01* X4340Y31816D01* X4312Y31793D01* X4287Y31767D01* X4264Y31739D01* X4244Y31709D01* X4226Y31677D01* X4212Y31644D01* X4200Y31610D01* X4198Y31601D01* X4198Y31593D01* X4199Y31584D01* X4202Y31576D01* X4207Y31568D01* X4212Y31561D01* X4219Y31556D01* X4226Y31551D01* X4234Y31548D01* X4243Y31546D01* X4252Y31546D01* X4260Y31547D01* X4268Y31550D01* X4276Y31555D01* X4283Y31560D01* X4289Y31567D01* X4293Y31574D01* X4296Y31582D01* X4305Y31608D01* X4316Y31633D01* X4329Y31657D01* X4344Y31679D01* X4361Y31700D01* X4380Y31719D01* X4401Y31737D01* X4423Y31752D01* X4445Y31765D01* Y31234D01* X4428Y31244D01* X4405Y31259D01* X4384Y31276D01* X4365Y31295D01* X4347Y31316D01* X4332Y31338D01* X4318Y31362D01* X4307Y31386D01* X4298Y31412D01* X4294Y31420D01* X4290Y31427D01* X4284Y31434D01* X4277Y31439D01* X4269Y31443D01* X4261Y31446D01* X4252Y31447D01* X4244Y31447D01* X4235Y31445D01* X4227Y31442D01* X4220Y31437D01* X4213Y31431D01* X4208Y31424D01* X4204Y31417D01* X4201Y31409D01* X4200Y31400D01* X4200Y31391D01* X4202Y31383D01* X4214Y31349D01* X4229Y31316D01* X4247Y31284D01* X4268Y31255D01* X4292Y31227D01* X4317Y31202D01* X4345Y31179D01* X4375Y31159D01* X4407Y31141D01* X4440Y31127D01* X4445Y31125D01* Y29866D01* X4421Y29855D01* X4389Y29837D01* X4360Y29816D01* X4332Y29793D01* X4307Y29767D01* X4284Y29739D01* X4264Y29709D01* X4246Y29677D01* X4232Y29644D01* X4220Y29610D01* X4218Y29601D01* X4218Y29593D01* X4219Y29584D01* X4222Y29576D01* X4227Y29568D01* X4232Y29561D01* X4239Y29556D01* X4246Y29551D01* X4254Y29548D01* X4263Y29546D01* X4272Y29546D01* X4280Y29547D01* X4288Y29550D01* X4296Y29555D01* X4303Y29560D01* X4309Y29567D01* X4313Y29574D01* X4316Y29582D01* X4325Y29608D01* X4336Y29633D01* X4349Y29657D01* X4364Y29679D01* X4381Y29700D01* X4400Y29719D01* X4421Y29737D01* X4443Y29752D01* X4445Y29754D01* Y29246D01* X4425Y29259D01* X4404Y29276D01* X4385Y29295D01* X4367Y29316D01* X4352Y29338D01* X4338Y29362D01* X4327Y29386D01* X4318Y29412D01* X4314Y29420D01* X4310Y29427D01* X4304Y29434D01* X4297Y29439D01* X4289Y29443D01* X4281Y29446D01* X4272Y29447D01* X4264Y29447D01* X4255Y29445D01* X4247Y29442D01* X4240Y29437D01* X4233Y29431D01* X4228Y29424D01* X4224Y29417D01* X4221Y29409D01* X4220Y29400D01* X4220Y29391D01* X4222Y29383D01* X4234Y29349D01* X4249Y29316D01* X4267Y29284D01* X4288Y29255D01* X4312Y29227D01* X4337Y29202D01* X4365Y29179D01* X4395Y29159D01* X4427Y29141D01* X4445Y29133D01* Y27857D01* X4441Y27855D01* X4409Y27837D01* X4380Y27816D01* X4352Y27793D01* X4327Y27767D01* X4304Y27739D01* X4284Y27709D01* X4266Y27677D01* X4252Y27644D01* X4240Y27610D01* X4238Y27601D01* X4238Y27593D01* X4239Y27584D01* X4242Y27576D01* X4247Y27568D01* X4252Y27561D01* X4259Y27556D01* X4266Y27551D01* X4274Y27548D01* X4283Y27546D01* X4292Y27546D01* X4300Y27547D01* X4308Y27550D01* X4316Y27555D01* X4323Y27560D01* X4329Y27567D01* X4333Y27574D01* X4336Y27582D01* X4345Y27608D01* X4356Y27633D01* X4369Y27657D01* X4384Y27679D01* X4401Y27700D01* X4420Y27719D01* X4441Y27737D01* X4445Y27740D01* Y27259D01* X4445Y27259D01* X4424Y27276D01* X4405Y27295D01* X4387Y27316D01* X4372Y27338D01* X4358Y27362D01* X4347Y27386D01* X4338Y27412D01* X4334Y27420D01* X4330Y27427D01* X4324Y27434D01* X4317Y27439D01* X4309Y27443D01* X4301Y27446D01* X4292Y27447D01* X4284Y27447D01* X4275Y27445D01* X4267Y27442D01* X4260Y27437D01* X4253Y27431D01* X4248Y27424D01* X4244Y27417D01* X4241Y27409D01* X4240Y27400D01* X4240Y27391D01* X4242Y27383D01* X4254Y27349D01* X4269Y27316D01* X4287Y27284D01* X4308Y27255D01* X4332Y27227D01* X4357Y27202D01* X4385Y27179D01* X4415Y27159D01* X4445Y27142D01* Y25846D01* X4429Y25837D01* X4400Y25816D01* X4372Y25793D01* X4347Y25767D01* X4324Y25739D01* X4304Y25709D01* X4286Y25677D01* X4272Y25644D01* X4260Y25610D01* X4258Y25601D01* X4258Y25593D01* X4259Y25584D01* X4262Y25576D01* X4267Y25568D01* X4272Y25561D01* X4279Y25556D01* X4286Y25551D01* X4294Y25548D01* X4303Y25546D01* X4312Y25546D01* X4320Y25547D01* X4328Y25550D01* X4336Y25555D01* X4343Y25560D01* X4349Y25567D01* X4353Y25574D01* X4356Y25582D01* X4365Y25608D01* X4376Y25633D01* X4389Y25657D01* X4404Y25679D01* X4421Y25700D01* X4440Y25719D01* X4445Y25723D01* Y25276D01* X4444Y25276D01* X4425Y25295D01* X4407Y25316D01* X4392Y25338D01* X4378Y25362D01* X4367Y25386D01* X4358Y25412D01* X4354Y25420D01* X4350Y25427D01* X4344Y25434D01* X4337Y25439D01* X4329Y25443D01* X4321Y25446D01* X4312Y25447D01* X4304Y25447D01* X4295Y25445D01* X4287Y25442D01* X4280Y25437D01* X4273Y25431D01* X4268Y25424D01* X4264Y25417D01* X4261Y25409D01* X4260Y25400D01* X4260Y25391D01* X4262Y25383D01* X4274Y25349D01* X4289Y25316D01* X4307Y25284D01* X4328Y25255D01* X4352Y25227D01* X4377Y25202D01* X4405Y25179D01* X4435Y25159D01* X4445Y25153D01* Y23834D01* X4420Y23816D01* X4392Y23793D01* X4367Y23767D01* X4344Y23739D01* X4324Y23709D01* X4306Y23677D01* X4292Y23644D01* X4280Y23610D01* X4278Y23601D01* X4278Y23593D01* X4279Y23584D01* X4282Y23576D01* X4287Y23568D01* X4292Y23561D01* X4299Y23556D01* X4306Y23551D01* X4314Y23548D01* X4323Y23546D01* X4332Y23546D01* X4340Y23547D01* X4348Y23550D01* X4356Y23555D01* X4363Y23560D01* X4369Y23567D01* X4373Y23574D01* X4376Y23582D01* X4385Y23608D01* X4396Y23633D01* X4409Y23657D01* X4424Y23679D01* X4441Y23700D01* X4445Y23704D01* Y23295D01* X4445Y23295D01* X4427Y23316D01* X4412Y23338D01* X4398Y23362D01* X4387Y23386D01* X4378Y23412D01* X4374Y23420D01* X4370Y23427D01* X4364Y23434D01* X4357Y23439D01* X4349Y23443D01* X4341Y23446D01* X4332Y23447D01* X4324Y23447D01* X4315Y23445D01* X4307Y23442D01* X4300Y23437D01* X4293Y23431D01* X4288Y23424D01* X4284Y23417D01* X4281Y23409D01* X4280Y23400D01* X4280Y23391D01* X4282Y23383D01* X4294Y23349D01* X4309Y23316D01* X4327Y23284D01* X4348Y23255D01* X4372Y23227D01* X4397Y23202D01* X4425Y23179D01* X4445Y23166D01* Y21820D01* X4440Y21816D01* X4412Y21793D01* X4387Y21767D01* X4364Y21739D01* X4344Y21709D01* X4326Y21677D01* X4312Y21644D01* X4300Y21610D01* X4298Y21601D01* X4298Y21593D01* X4299Y21584D01* X4302Y21576D01* X4307Y21568D01* X4312Y21561D01* X4319Y21556D01* X4326Y21551D01* X4334Y21548D01* X4343Y21546D01* X4352Y21546D01* X4360Y21547D01* X4368Y21550D01* X4376Y21555D01* X4383Y21560D01* X4389Y21567D01* X4393Y21574D01* X4396Y21582D01* X4405Y21608D01* X4416Y21633D01* X4429Y21657D01* X4444Y21679D01* X4445Y21680D01* Y21319D01* X4432Y21338D01* X4418Y21362D01* X4407Y21386D01* X4398Y21412D01* X4394Y21420D01* X4390Y21427D01* X4384Y21434D01* X4377Y21439D01* X4369Y21443D01* X4361Y21446D01* X4352Y21447D01* X4344Y21447D01* X4335Y21445D01* X4327Y21442D01* X4320Y21437D01* X4313Y21431D01* X4308Y21424D01* X4304Y21417D01* X4301Y21409D01* X4300Y21400D01* X4300Y21391D01* X4302Y21383D01* X4314Y21349D01* X4329Y21316D01* X4347Y21284D01* X4368Y21255D01* X4392Y21227D01* X4417Y21202D01* X4445Y21179D01* Y19804D01* X4432Y19793D01* X4407Y19767D01* X4384Y19739D01* X4364Y19709D01* X4346Y19677D01* X4332Y19644D01* X4320Y19610D01* X4318Y19601D01* X4318Y19593D01* X4319Y19584D01* X4322Y19576D01* X4327Y19568D01* X4332Y19561D01* X4339Y19556D01* X4346Y19551D01* X4354Y19548D01* X4363Y19546D01* X4372Y19546D01* X4380Y19547D01* X4388Y19550D01* X4396Y19555D01* X4403Y19560D01* X4409Y19567D01* X4413Y19574D01* X4416Y19582D01* X4425Y19608D01* X4436Y19633D01* X4445Y19650D01* Y19349D01* X4438Y19362D01* X4427Y19386D01* X4418Y19412D01* X4414Y19420D01* X4410Y19427D01* X4404Y19434D01* X4397Y19439D01* X4389Y19443D01* X4381Y19446D01* X4372Y19447D01* X4364Y19447D01* X4355Y19445D01* X4347Y19442D01* X4340Y19437D01* X4333Y19431D01* X4328Y19424D01* X4324Y19417D01* X4321Y19409D01* X4320Y19400D01* X4320Y19391D01* X4322Y19383D01* X4334Y19349D01* X4349Y19316D01* X4367Y19284D01* X4388Y19255D01* X4412Y19227D01* X4437Y19202D01* X4445Y19196D01* Y17785D01* X4427Y17767D01* X4404Y17739D01* X4384Y17709D01* X4366Y17677D01* X4352Y17644D01* X4340Y17610D01* X4338Y17601D01* X4338Y17593D01* X4339Y17584D01* X4342Y17576D01* X4347Y17568D01* X4352Y17561D01* X4359Y17556D01* X4366Y17551D01* X4374Y17548D01* X4383Y17546D01* X4392Y17546D01* X4400Y17547D01* X4408Y17550D01* X4416Y17555D01* X4423Y17560D01* X4429Y17567D01* X4433Y17574D01* X4436Y17582D01* X4445Y17608D01* X4445Y17609D01* Y17391D01* X4438Y17412D01* X4434Y17420D01* X4430Y17427D01* X4424Y17434D01* X4417Y17439D01* X4409Y17443D01* X4401Y17446D01* X4392Y17447D01* X4384Y17447D01* X4375Y17445D01* X4367Y17442D01* X4360Y17437D01* X4353Y17431D01* X4348Y17424D01* X4344Y17417D01* X4341Y17409D01* X4340Y17400D01* X4340Y17391D01* X4342Y17383D01* X4354Y17349D01* X4369Y17316D01* X4387Y17284D01* X4408Y17255D01* X4432Y17227D01* X4445Y17214D01* Y15765D01* X4424Y15739D01* X4404Y15709D01* X4386Y15677D01* X4372Y15644D01* X4360Y15610D01* X4358Y15601D01* X4358Y15593D01* X4359Y15584D01* X4362Y15576D01* X4367Y15568D01* X4372Y15561D01* X4379Y15556D01* X4386Y15551D01* X4394Y15548D01* X4403Y15546D01* X4412Y15546D01* X4420Y15547D01* X4428Y15550D01* X4436Y15555D01* X4443Y15560D01* X4445Y15563D01* Y15432D01* X4444Y15434D01* X4437Y15439D01* X4429Y15443D01* X4421Y15446D01* X4412Y15447D01* X4404Y15447D01* X4395Y15445D01* X4387Y15442D01* X4380Y15437D01* X4373Y15431D01* X4368Y15424D01* X4364Y15417D01* X4361Y15409D01* X4360Y15400D01* X4360Y15391D01* X4362Y15383D01* X4374Y15349D01* X4389Y15316D01* X4407Y15284D01* X4428Y15255D01* X4445Y15235D01* Y13740D01* X4444Y13739D01* X4424Y13709D01* X4406Y13677D01* X4392Y13644D01* X4380Y13610D01* X4378Y13601D01* X4378Y13593D01* X4379Y13584D01* X4382Y13576D01* X4387Y13568D01* X4392Y13561D01* X4399Y13556D01* X4406Y13551D01* X4414Y13548D01* X4423Y13546D01* X4432Y13546D01* X4440Y13547D01* X4445Y13549D01* Y13445D01* X4441Y13446D01* X4432Y13447D01* X4424Y13447D01* X4415Y13445D01* X4407Y13442D01* X4400Y13437D01* X4393Y13431D01* X4388Y13424D01* X4384Y13417D01* X4381Y13409D01* X4380Y13400D01* X4380Y13391D01* X4382Y13383D01* X4394Y13349D01* X4409Y13316D01* X4427Y13284D01* X4445Y13259D01* Y11711D01* X4444Y11709D01* X4426Y11677D01* X4412Y11644D01* X4400Y11610D01* X4398Y11601D01* X4398Y11593D01* X4399Y11584D01* X4402Y11576D01* X4407Y11568D01* X4412Y11561D01* X4419Y11556D01* X4426Y11551D01* X4434Y11548D01* X4443Y11546D01* X4445D01* Y11447D01* X4444Y11447D01* X4435Y11445D01* X4427Y11442D01* X4420Y11437D01* X4413Y11431D01* X4408Y11424D01* X4404Y11417D01* X4401Y11409D01* X4400Y11400D01* X4400Y11391D01* X4402Y11383D01* X4414Y11349D01* X4429Y11316D01* X4445Y11288D01* Y9675D01* X4432Y9644D01* X4420Y9610D01* X4418Y9601D01* X4418Y9593D01* X4419Y9584D01* X4422Y9576D01* X4427Y9568D01* X4432Y9561D01* X4439Y9556D01* X4445Y9552D01* Y9441D01* X4440Y9437D01* X4433Y9431D01* X4428Y9424D01* X4424Y9417D01* X4421Y9409D01* X4420Y9400D01* X4420Y9391D01* X4422Y9383D01* X4434Y9349D01* X4445Y9325D01* Y7625D01* X4440Y7610D01* X4438Y7601D01* X4438Y7593D01* X4439Y7584D01* X4442Y7576D01* X4445Y7571D01* Y7419D01* X4444Y7417D01* X4441Y7409D01* X4440Y7400D01* X4440Y7391D01* X4442Y7383D01* X4445Y7374D01* Y0D01* X2944D01* Y1140D01* X2947Y1135D01* X2953Y1128D01* X2960Y1123D01* X2967Y1119D01* X2976Y1116D01* X2984Y1115D01* X2993Y1115D01* X3001Y1117D01* X3036Y1129D01* X3068Y1144D01* X3100Y1162D01* X3129Y1183D01* X3157Y1207D01* X3182Y1232D01* X3205Y1260D01* X3225Y1290D01* X3243Y1322D01* X3257Y1355D01* X3269Y1389D01* X3271Y1398D01* X3271Y1407D01* X3270Y1415D01* X3267Y1423D01* X3262Y1431D01* X3257Y1438D01* X3250Y1444D01* X3243Y1448D01* X3235Y1451D01* X3226Y1453D01* X3217Y1453D01* X3209Y1452D01* X3201Y1449D01* X3193Y1445D01* X3186Y1439D01* X3180Y1433D01* X3176Y1425D01* X3173Y1417D01* X3164Y1391D01* X3153Y1366D01* X3140Y1343D01* X3125Y1320D01* X3108Y1299D01* X3089Y1280D01* X3068Y1262D01* X3046Y1247D01* X3022Y1233D01* X2998Y1222D01* X2972Y1213D01* X2964Y1209D01* X2957Y1205D01* X2950Y1199D01* X2945Y1192D01* X2944Y1190D01* Y1802D01* X2945Y1801D01* X2952Y1796D01* X2959Y1791D01* X2967Y1788D01* X2993Y1779D01* X3018Y1768D01* X3041Y1755D01* X3064Y1740D01* X3085Y1723D01* X3104Y1704D01* X3122Y1683D01* X3137Y1661D01* X3151Y1637D01* X3162Y1613D01* X3171Y1587D01* X3175Y1579D01* X3179Y1572D01* X3185Y1565D01* X3192Y1560D01* X3200Y1556D01* X3208Y1553D01* X3217Y1552D01* X3225Y1552D01* X3234Y1554D01* X3242Y1557D01* X3249Y1562D01* X3256Y1568D01* X3261Y1575D01* X3265Y1582D01* X3268Y1591D01* X3269Y1599D01* X3269Y1608D01* X3267Y1617D01* X3255Y1651D01* X3240Y1683D01* X3222Y1715D01* X3201Y1744D01* X3177Y1772D01* X3152Y1797D01* X3124Y1820D01* X3094Y1840D01* X3062Y1858D01* X3029Y1873D01* X2995Y1884D01* X2986Y1886D01* X2977Y1886D01* X2969Y1885D01* X2961Y1882D01* X2953Y1878D01* X2946Y1872D01* X2944Y1870D01* Y3121D01* X2947Y3119D01* X2956Y3116D01* X2964Y3115D01* X2973Y3115D01* X2981Y3117D01* X3016Y3129D01* X3048Y3144D01* X3080Y3162D01* X3109Y3183D01* X3137Y3207D01* X3162Y3232D01* X3185Y3260D01* X3205Y3290D01* X3223Y3322D01* X3237Y3355D01* X3249Y3389D01* X3251Y3398D01* X3251Y3407D01* X3250Y3415D01* X3247Y3423D01* X3242Y3431D01* X3237Y3438D01* X3230Y3444D01* X3223Y3448D01* X3215Y3451D01* X3206Y3453D01* X3197Y3453D01* X3189Y3452D01* X3181Y3449D01* X3173Y3445D01* X3166Y3439D01* X3160Y3433D01* X3156Y3425D01* X3153Y3417D01* X3144Y3391D01* X3133Y3366D01* X3120Y3343D01* X3105Y3320D01* X3088Y3299D01* X3069Y3280D01* X3048Y3262D01* X3026Y3247D01* X3002Y3233D01* X2978Y3222D01* X2952Y3213D01* X2944Y3209D01* X2944Y3209D01* Y3789D01* X2947Y3788D01* X2973Y3779D01* X2998Y3768D01* X3021Y3755D01* X3044Y3740D01* X3065Y3723D01* X3084Y3704D01* X3102Y3683D01* X3117Y3661D01* X3131Y3637D01* X3142Y3613D01* X3151Y3587D01* X3155Y3579D01* X3159Y3572D01* X3165Y3565D01* X3172Y3560D01* X3180Y3556D01* X3188Y3553D01* X3197Y3552D01* X3205Y3552D01* X3214Y3554D01* X3222Y3557D01* X3229Y3562D01* X3236Y3568D01* X3241Y3575D01* X3245Y3582D01* X3248Y3591D01* X3249Y3599D01* X3249Y3608D01* X3247Y3617D01* X3235Y3651D01* X3220Y3683D01* X3202Y3715D01* X3181Y3744D01* X3157Y3772D01* X3132Y3797D01* X3104Y3820D01* X3074Y3840D01* X3042Y3858D01* X3009Y3873D01* X2975Y3884D01* X2966Y3886D01* X2957Y3886D01* X2949Y3885D01* X2944Y3883D01* Y5115D01* X2944D01* X2953Y5115D01* X2961Y5117D01* X2996Y5129D01* X3028Y5144D01* X3060Y5162D01* X3089Y5183D01* X3117Y5207D01* X3142Y5232D01* X3165Y5260D01* X3185Y5290D01* X3203Y5322D01* X3217Y5355D01* X3229Y5389D01* X3231Y5398D01* X3231Y5407D01* X3230Y5415D01* X3227Y5423D01* X3222Y5431D01* X3217Y5438D01* X3210Y5444D01* X3203Y5448D01* X3195Y5451D01* X3186Y5453D01* X3177Y5453D01* X3169Y5452D01* X3161Y5449D01* X3153Y5445D01* X3146Y5439D01* X3140Y5433D01* X3136Y5425D01* X3133Y5417D01* X3124Y5391D01* X3113Y5366D01* X3100Y5343D01* X3085Y5320D01* X3068Y5299D01* X3049Y5280D01* X3028Y5262D01* X3006Y5247D01* X2982Y5233D01* X2958Y5222D01* X2944Y5217D01* Y5782D01* X2953Y5779D01* X2978Y5768D01* X3001Y5755D01* X3024Y5740D01* X3045Y5723D01* X3064Y5704D01* X3082Y5683D01* X3097Y5661D01* X3111Y5637D01* X3122Y5613D01* X3131Y5587D01* X3135Y5579D01* X3139Y5572D01* X3145Y5565D01* X3152Y5560D01* X3160Y5556D01* X3168Y5553D01* X3177Y5552D01* X3185Y5552D01* X3194Y5554D01* X3202Y5557D01* X3209Y5562D01* X3216Y5568D01* X3221Y5575D01* X3225Y5582D01* X3228Y5591D01* X3229Y5599D01* X3229Y5608D01* X3227Y5617D01* X3215Y5651D01* X3200Y5683D01* X3182Y5715D01* X3161Y5744D01* X3137Y5772D01* X3112Y5797D01* X3084Y5820D01* X3054Y5840D01* X3022Y5858D01* X2989Y5873D01* X2955Y5884D01* X2946Y5886D01* X2944D01* Y7118D01* X2976Y7129D01* X3008Y7144D01* X3040Y7162D01* X3069Y7183D01* X3097Y7207D01* X3122Y7232D01* X3145Y7260D01* X3165Y7290D01* X3183Y7322D01* X3197Y7355D01* X3209Y7389D01* X3211Y7398D01* X3211Y7407D01* X3210Y7415D01* X3207Y7423D01* X3202Y7431D01* X3197Y7438D01* X3190Y7444D01* X3183Y7448D01* X3175Y7451D01* X3166Y7453D01* X3157Y7453D01* X3149Y7452D01* X3141Y7449D01* X3133Y7445D01* X3126Y7439D01* X3120Y7433D01* X3116Y7425D01* X3113Y7417D01* X3104Y7391D01* X3093Y7366D01* X3080Y7343D01* X3065Y7320D01* X3048Y7299D01* X3029Y7280D01* X3008Y7262D01* X2986Y7247D01* X2962Y7233D01* X2944Y7225D01* Y7774D01* X2958Y7768D01* X2981Y7755D01* X3004Y7740D01* X3025Y7723D01* X3044Y7704D01* X3062Y7683D01* X3077Y7661D01* X3091Y7637D01* X3102Y7613D01* X3111Y7587D01* X3115Y7579D01* X3119Y7572D01* X3125Y7565D01* X3132Y7560D01* X3140Y7556D01* X3148Y7553D01* X3157Y7552D01* X3165Y7552D01* X3174Y7554D01* X3182Y7557D01* X3189Y7562D01* X3196Y7568D01* X3201Y7575D01* X3205Y7582D01* X3208Y7591D01* X3209Y7599D01* X3209Y7608D01* X3207Y7617D01* X3195Y7651D01* X3180Y7683D01* X3162Y7715D01* X3141Y7744D01* X3117Y7772D01* X3092Y7797D01* X3064Y7820D01* X3034Y7840D01* X3002Y7858D01* X2969Y7873D01* X2944Y7881D01* Y9125D01* X2956Y9129D01* X2988Y9144D01* X3020Y9162D01* X3049Y9183D01* X3077Y9207D01* X3102Y9232D01* X3125Y9260D01* X3145Y9290D01* X3163Y9322D01* X3177Y9355D01* X3189Y9389D01* X3191Y9398D01* X3191Y9407D01* X3190Y9415D01* X3187Y9423D01* X3182Y9431D01* X3177Y9438D01* X3170Y9444D01* X3163Y9448D01* X3155Y9451D01* X3146Y9453D01* X3137Y9453D01* X3129Y9452D01* X3121Y9449D01* X3113Y9445D01* X3106Y9439D01* X3100Y9433D01* X3096Y9425D01* X3093Y9417D01* X3084Y9391D01* X3073Y9366D01* X3060Y9343D01* X3045Y9320D01* X3028Y9299D01* X3009Y9280D01* X2988Y9262D01* X2966Y9247D01* X2944Y9234D01* Y9765D01* X2961Y9755D01* X2984Y9740D01* X3005Y9723D01* X3024Y9704D01* X3042Y9683D01* X3057Y9661D01* X3071Y9637D01* X3082Y9613D01* X3091Y9587D01* X3095Y9579D01* X3099Y9572D01* X3105Y9565D01* X3112Y9560D01* X3120Y9556D01* X3128Y9553D01* X3137Y9552D01* X3145Y9552D01* X3154Y9554D01* X3162Y9557D01* X3169Y9562D01* X3176Y9568D01* X3181Y9575D01* X3185Y9582D01* X3188Y9591D01* X3189Y9599D01* X3189Y9608D01* X3187Y9617D01* X3175Y9651D01* X3160Y9683D01* X3142Y9715D01* X3121Y9744D01* X3097Y9772D01* X3072Y9797D01* X3044Y9820D01* X3014Y9840D01* X2982Y9858D01* X2949Y9873D01* X2944Y9874D01* Y11133D01* X2968Y11144D01* X3000Y11162D01* X3029Y11183D01* X3057Y11207D01* X3082Y11232D01* X3105Y11260D01* X3125Y11290D01* X3143Y11322D01* X3157Y11355D01* X3169Y11389D01* X3171Y11398D01* X3171Y11407D01* X3170Y11415D01* X3167Y11423D01* X3162Y11431D01* X3157Y11438D01* X3150Y11444D01* X3143Y11448D01* X3135Y11451D01* X3126Y11453D01* X3117Y11453D01* X3109Y11452D01* X3101Y11449D01* X3093Y11445D01* X3086Y11439D01* X3080Y11433D01* X3076Y11425D01* X3073Y11417D01* X3064Y11391D01* X3053Y11366D01* X3040Y11343D01* X3025Y11320D01* X3008Y11299D01* X2989Y11280D01* X2968Y11262D01* X2946Y11247D01* X2944Y11246D01* Y11754D01* X2964Y11740D01* X2985Y11723D01* X3004Y11704D01* X3022Y11683D01* X3037Y11661D01* X3051Y11637D01* X3062Y11613D01* X3071Y11587D01* X3075Y11579D01* X3079Y11572D01* X3085Y11565D01* X3092Y11560D01* X3100Y11556D01* X3108Y11553D01* X3117Y11552D01* X3125Y11552D01* X3134Y11554D01* X3142Y11557D01* X3149Y11562D01* X3156Y11568D01* X3161Y11575D01* X3165Y11582D01* X3168Y11591D01* X3169Y11599D01* X3169Y11608D01* X3167Y11617D01* X3155Y11651D01* X3140Y11683D01* X3122Y11715D01* X3101Y11744D01* X3077Y11772D01* X3052Y11797D01* X3024Y11820D01* X2994Y11840D01* X2962Y11858D01* X2944Y11866D01* Y13142D01* X2948Y13144D01* X2980Y13162D01* X3009Y13183D01* X3037Y13207D01* X3062Y13232D01* X3085Y13260D01* X3105Y13290D01* X3123Y13322D01* X3137Y13355D01* X3149Y13389D01* X3151Y13398D01* X3151Y13407D01* X3150Y13415D01* X3147Y13423D01* X3142Y13431D01* X3137Y13438D01* X3130Y13444D01* X3123Y13448D01* X3115Y13451D01* X3106Y13453D01* X3097Y13453D01* X3089Y13452D01* X3081Y13449D01* X3073Y13445D01* X3066Y13439D01* X3060Y13433D01* X3056Y13425D01* X3053Y13417D01* X3044Y13391D01* X3033Y13366D01* X3020Y13343D01* X3005Y13320D01* X2988Y13299D01* X2969Y13280D01* X2948Y13262D01* X2944Y13259D01* Y13740D01* X2965Y13723D01* X2984Y13704D01* X3002Y13683D01* X3017Y13661D01* X3031Y13637D01* X3042Y13613D01* X3051Y13587D01* X3055Y13579D01* X3059Y13572D01* X3065Y13565D01* X3072Y13560D01* X3080Y13556D01* X3088Y13553D01* X3097Y13552D01* X3105Y13552D01* X3114Y13554D01* X3122Y13557D01* X3129Y13562D01* X3136Y13568D01* X3141Y13575D01* X3145Y13582D01* X3148Y13591D01* X3149Y13599D01* X3149Y13608D01* X3147Y13617D01* X3135Y13651D01* X3120Y13683D01* X3102Y13715D01* X3081Y13744D01* X3057Y13772D01* X3032Y13797D01* X3004Y13820D01* X2974Y13840D01* X2944Y13857D01* Y15153D01* X2960Y15162D01* X2989Y15183D01* X3017Y15207D01* X3042Y15232D01* X3065Y15260D01* X3085Y15290D01* X3103Y15322D01* X3117Y15355D01* X3129Y15389D01* X3131Y15398D01* X3131Y15407D01* X3130Y15415D01* X3127Y15423D01* X3122Y15431D01* X3117Y15438D01* X3110Y15444D01* X3103Y15448D01* X3095Y15451D01* X3086Y15453D01* X3077Y15453D01* X3069Y15452D01* X3061Y15449D01* X3053Y15445D01* X3046Y15439D01* X3040Y15433D01* X3036Y15425D01* X3033Y15417D01* X3024Y15391D01* X3013Y15366D01* X3000Y15343D01* X2985Y15320D01* X2968Y15299D01* X2949Y15280D01* X2944Y15276D01* Y15724D01* X2945Y15723D01* X2964Y15704D01* X2982Y15683D01* X2997Y15661D01* X3011Y15637D01* X3022Y15613D01* X3031Y15587D01* X3035Y15579D01* X3039Y15572D01* X3045Y15565D01* X3052Y15560D01* X3060Y15556D01* X3068Y15553D01* X3077Y15552D01* X3085Y15552D01* X3094Y15554D01* X3102Y15557D01* X3109Y15562D01* X3116Y15568D01* X3121Y15575D01* X3125Y15582D01* X3128Y15591D01* X3129Y15599D01* X3129Y15608D01* X3127Y15617D01* X3115Y15651D01* X3100Y15683D01* X3082Y15715D01* X3061Y15744D01* X3037Y15772D01* X3012Y15797D01* X2984Y15820D01* X2954Y15840D01* X2944Y15846D01* Y17165D01* X2969Y17183D01* X2997Y17207D01* X3022Y17232D01* X3045Y17260D01* X3065Y17290D01* X3083Y17322D01* X3097Y17355D01* X3109Y17389D01* X3111Y17398D01* X3111Y17407D01* X3110Y17415D01* X3107Y17423D01* X3102Y17431D01* X3097Y17438D01* X3090Y17444D01* X3083Y17448D01* X3075Y17451D01* X3066Y17453D01* X3057Y17453D01* X3049Y17452D01* X3041Y17449D01* X3033Y17445D01* X3026Y17439D01* X3020Y17433D01* X3016Y17425D01* X3013Y17417D01* X3004Y17391D01* X2993Y17366D01* X2980Y17343D01* X2965Y17320D01* X2948Y17299D01* X2944Y17295D01* Y17704D01* X2944Y17704D01* X2962Y17683D01* X2977Y17661D01* X2991Y17637D01* X3002Y17613D01* X3011Y17587D01* X3015Y17579D01* X3019Y17572D01* X3025Y17565D01* X3032Y17560D01* X3040Y17556D01* X3048Y17553D01* X3057Y17552D01* X3065Y17552D01* X3074Y17554D01* X3082Y17557D01* X3089Y17562D01* X3096Y17568D01* X3101Y17575D01* X3105Y17582D01* X3108Y17591D01* X3109Y17599D01* X3109Y17608D01* X3107Y17617D01* X3095Y17651D01* X3080Y17683D01* X3062Y17715D01* X3041Y17744D01* X3017Y17772D01* X2992Y17797D01* X2964Y17820D01* X2944Y17834D01* Y19180D01* X2949Y19183D01* X2977Y19207D01* X3002Y19232D01* X3025Y19260D01* X3045Y19290D01* X3063Y19322D01* X3077Y19355D01* X3089Y19389D01* X3091Y19398D01* X3091Y19407D01* X3090Y19415D01* X3087Y19423D01* X3082Y19431D01* X3077Y19438D01* X3070Y19444D01* X3063Y19448D01* X3055Y19451D01* X3046Y19453D01* X3037Y19453D01* X3029Y19452D01* X3021Y19449D01* X3013Y19445D01* X3006Y19439D01* X3000Y19433D01* X2996Y19425D01* X2993Y19417D01* X2984Y19391D01* X2973Y19366D01* X2960Y19343D01* X2945Y19320D01* X2944Y19319D01* Y19680D01* X2957Y19661D01* X2971Y19637D01* X2982Y19613D01* X2991Y19587D01* X2995Y19579D01* X2999Y19572D01* X3005Y19565D01* X3012Y19560D01* X3020Y19556D01* X3028Y19553D01* X3037Y19552D01* X3045Y19552D01* X3054Y19554D01* X3062Y19557D01* X3069Y19562D01* X3076Y19568D01* X3081Y19575D01* X3085Y19582D01* X3088Y19591D01* X3089Y19599D01* X3089Y19608D01* X3087Y19617D01* X3075Y19651D01* X3060Y19683D01* X3042Y19715D01* X3021Y19744D01* X2997Y19772D01* X2972Y19797D01* X2944Y19820D01* Y21196D01* X2957Y21207D01* X2982Y21232D01* X3005Y21260D01* X3025Y21290D01* X3043Y21322D01* X3057Y21355D01* X3069Y21389D01* X3071Y21398D01* X3071Y21407D01* X3070Y21415D01* X3067Y21423D01* X3062Y21431D01* X3057Y21438D01* X3050Y21444D01* X3043Y21448D01* X3035Y21451D01* X3026Y21453D01* X3017Y21453D01* X3009Y21452D01* X3001Y21449D01* X2993Y21445D01* X2986Y21439D01* X2980Y21433D01* X2976Y21425D01* X2973Y21417D01* X2964Y21391D01* X2953Y21366D01* X2944Y21350D01* Y21650D01* X2951Y21637D01* X2962Y21613D01* X2971Y21587D01* X2975Y21579D01* X2979Y21572D01* X2985Y21565D01* X2992Y21560D01* X3000Y21556D01* X3008Y21553D01* X3017Y21552D01* X3025Y21552D01* X3034Y21554D01* X3042Y21557D01* X3049Y21562D01* X3056Y21568D01* X3061Y21575D01* X3065Y21582D01* X3068Y21591D01* X3069Y21599D01* X3069Y21608D01* X3067Y21617D01* X3055Y21651D01* X3040Y21683D01* X3022Y21715D01* X3001Y21744D01* X2977Y21772D01* X2952Y21797D01* X2944Y21804D01* Y23214D01* X2962Y23232D01* X2985Y23260D01* X3005Y23290D01* X3023Y23322D01* X3037Y23355D01* X3049Y23389D01* X3051Y23398D01* X3051Y23407D01* X3050Y23415D01* X3047Y23423D01* X3042Y23431D01* X3037Y23438D01* X3030Y23444D01* X3023Y23448D01* X3015Y23451D01* X3006Y23453D01* X2997Y23453D01* X2989Y23452D01* X2981Y23449D01* X2973Y23445D01* X2966Y23439D01* X2960Y23433D01* X2956Y23425D01* X2953Y23417D01* X2944Y23391D01* X2944Y23391D01* Y23608D01* X2951Y23587D01* X2955Y23579D01* X2959Y23572D01* X2965Y23565D01* X2972Y23560D01* X2980Y23556D01* X2988Y23553D01* X2997Y23552D01* X3005Y23552D01* X3014Y23554D01* X3022Y23557D01* X3029Y23562D01* X3036Y23568D01* X3041Y23575D01* X3045Y23582D01* X3048Y23591D01* X3049Y23599D01* X3049Y23608D01* X3047Y23617D01* X3035Y23651D01* X3020Y23683D01* X3002Y23715D01* X2981Y23744D01* X2957Y23772D01* X2944Y23785D01* Y25235D01* X2965Y25260D01* X2985Y25290D01* X3003Y25322D01* X3017Y25355D01* X3029Y25389D01* X3031Y25398D01* X3031Y25407D01* X3030Y25415D01* X3027Y25423D01* X3022Y25431D01* X3017Y25438D01* X3010Y25444D01* X3003Y25448D01* X2995Y25451D01* X2986Y25453D01* X2977Y25453D01* X2969Y25452D01* X2961Y25449D01* X2953Y25445D01* X2946Y25439D01* X2944Y25437D01* Y25567D01* X2945Y25565D01* X2952Y25560D01* X2960Y25556D01* X2968Y25553D01* X2977Y25552D01* X2985Y25552D01* X2994Y25554D01* X3002Y25557D01* X3009Y25562D01* X3016Y25568D01* X3021Y25575D01* X3025Y25582D01* X3028Y25591D01* X3029Y25599D01* X3029Y25608D01* X3027Y25617D01* X3015Y25651D01* X3000Y25683D01* X2982Y25715D01* X2961Y25744D01* X2944Y25764D01* Y27259D01* X2945Y27260D01* X2965Y27290D01* X2983Y27322D01* X2997Y27355D01* X3009Y27389D01* X3011Y27398D01* X3011Y27407D01* X3010Y27415D01* X3007Y27423D01* X3002Y27431D01* X2997Y27438D01* X2990Y27444D01* X2983Y27448D01* X2975Y27451D01* X2966Y27453D01* X2957Y27453D01* X2949Y27452D01* X2944Y27450D01* Y27555D01* X2948Y27553D01* X2957Y27552D01* X2965Y27552D01* X2974Y27554D01* X2982Y27557D01* X2989Y27562D01* X2996Y27568D01* X3001Y27575D01* X3005Y27582D01* X3008Y27591D01* X3009Y27599D01* X3009Y27608D01* X3007Y27617D01* X2995Y27651D01* X2980Y27683D01* X2962Y27715D01* X2944Y27740D01* Y29288D01* X2945Y29290D01* X2963Y29322D01* X2977Y29355D01* X2989Y29389D01* X2991Y29398D01* X2991Y29407D01* X2990Y29415D01* X2987Y29423D01* X2982Y29431D01* X2977Y29438D01* X2970Y29444D01* X2963Y29448D01* X2955Y29451D01* X2946Y29453D01* X2944D01* Y29552D01* X2945D01* X2954Y29554D01* X2962Y29557D01* X2969Y29562D01* X2976Y29568D01* X2981Y29575D01* X2985Y29582D01* X2988Y29591D01* X2989Y29599D01* X2989Y29608D01* X2987Y29617D01* X2975Y29651D01* X2960Y29683D01* X2944Y29711D01* Y31324D01* X2957Y31355D01* X2969Y31389D01* X2971Y31398D01* X2971Y31407D01* X2970Y31415D01* X2967Y31423D01* X2962Y31431D01* X2957Y31438D01* X2950Y31444D01* X2944Y31447D01* Y31559D01* X2949Y31562D01* X2956Y31568D01* X2961Y31575D01* X2965Y31582D01* X2968Y31591D01* X2969Y31599D01* X2969Y31608D01* X2967Y31617D01* X2955Y31651D01* X2944Y31674D01* Y33374D01* X2949Y33389D01* X2951Y33398D01* X2951Y33407D01* X2950Y33415D01* X2947Y33423D01* X2944Y33428D01* Y33580D01* X2945Y33582D01* X2948Y33591D01* X2949Y33599D01* X2949Y33608D01* X2947Y33617D01* X2944Y33625D01* Y40000D01* G37* G36* X4445D02*X4625D01* Y39881D01* X4615Y39884D01* X4606Y39886D01* X4597Y39886D01* X4589Y39885D01* X4581Y39882D01* X4573Y39878D01* X4566Y39872D01* X4560Y39865D01* X4556Y39858D01* X4553Y39850D01* X4551Y39841D01* X4551Y39833D01* X4552Y39824D01* X4555Y39816D01* X4559Y39808D01* X4565Y39801D01* X4572Y39796D01* X4579Y39791D01* X4587Y39788D01* X4613Y39779D01* X4625Y39774D01* Y39225D01* X4618Y39222D01* X4592Y39213D01* X4584Y39209D01* X4577Y39205D01* X4570Y39199D01* X4565Y39192D01* X4561Y39184D01* X4558Y39176D01* X4557Y39167D01* X4557Y39159D01* X4559Y39150D01* X4562Y39142D01* X4567Y39135D01* X4573Y39128D01* X4580Y39123D01* X4587Y39119D01* X4596Y39116D01* X4604Y39115D01* X4613Y39115D01* X4621Y39117D01* X4625Y39118D01* Y37886D01* X4617Y37886D01* X4609Y37885D01* X4601Y37882D01* X4593Y37878D01* X4586Y37872D01* X4580Y37865D01* X4576Y37858D01* X4573Y37850D01* X4571Y37841D01* X4571Y37833D01* X4572Y37824D01* X4575Y37816D01* X4579Y37808D01* X4585Y37801D01* X4592Y37796D01* X4599Y37791D01* X4607Y37788D01* X4625Y37782D01* Y37217D01* X4612Y37213D01* X4604Y37209D01* X4597Y37205D01* X4590Y37199D01* X4585Y37192D01* X4581Y37184D01* X4578Y37176D01* X4577Y37167D01* X4577Y37159D01* X4579Y37150D01* X4582Y37142D01* X4587Y37135D01* X4593Y37128D01* X4600Y37123D01* X4607Y37119D01* X4616Y37116D01* X4624Y37115D01* X4625D01* Y35883D01* X4621Y35882D01* X4613Y35878D01* X4606Y35872D01* X4600Y35865D01* X4596Y35858D01* X4593Y35850D01* X4591Y35841D01* X4591Y35833D01* X4592Y35824D01* X4595Y35816D01* X4599Y35808D01* X4605Y35801D01* X4612Y35796D01* X4619Y35791D01* X4625Y35789D01* Y35210D01* X4624Y35209D01* X4617Y35205D01* X4610Y35199D01* X4605Y35192D01* X4601Y35184D01* X4598Y35176D01* X4597Y35167D01* X4597Y35159D01* X4599Y35150D01* X4602Y35142D01* X4607Y35135D01* X4613Y35128D01* X4620Y35123D01* X4625Y35120D01* Y33871D01* X4620Y33865D01* X4616Y33858D01* X4613Y33850D01* X4611Y33841D01* X4611Y33833D01* X4612Y33824D01* X4615Y33816D01* X4619Y33808D01* X4625Y33801D01* X4625Y33801D01* Y33192D01* X4625Y33192D01* X4621Y33184D01* X4618Y33176D01* X4617Y33167D01* X4617Y33159D01* X4619Y33150D01* X4622Y33142D01* X4625Y33138D01* Y21859D01* X4622Y21864D01* X4616Y21871D01* X4609Y21876D01* X4602Y21880D01* X4593Y21883D01* X4585Y21884D01* X4576Y21884D01* X4568Y21882D01* X4533Y21870D01* X4501Y21855D01* X4469Y21837D01* X4445Y21820D01* Y23166D01* X4455Y23159D01* X4487Y23141D01* X4520Y23127D01* X4554Y23115D01* X4563Y23113D01* X4572Y23113D01* X4580Y23115D01* X4588Y23117D01* X4596Y23122D01* X4603Y23127D01* X4609Y23134D01* X4613Y23141D01* X4616Y23149D01* X4618Y23158D01* X4618Y23167D01* X4617Y23175D01* X4614Y23183D01* X4610Y23191D01* X4604Y23198D01* X4597Y23204D01* X4590Y23208D01* X4582Y23211D01* X4556Y23220D01* X4531Y23231D01* X4508Y23244D01* X4485Y23259D01* X4464Y23276D01* X4445Y23295D01* Y23704D01* X4460Y23719D01* X4481Y23737D01* X4503Y23752D01* X4527Y23766D01* X4551Y23777D01* X4577Y23786D01* X4585Y23790D01* X4592Y23794D01* X4599Y23800D01* X4604Y23807D01* X4608Y23815D01* X4611Y23823D01* X4612Y23832D01* X4612Y23840D01* X4610Y23849D01* X4607Y23857D01* X4602Y23864D01* X4596Y23871D01* X4589Y23876D01* X4582Y23880D01* X4573Y23883D01* X4565Y23884D01* X4556Y23884D01* X4548Y23882D01* X4513Y23870D01* X4481Y23855D01* X4449Y23837D01* X4445Y23834D01* Y25153D01* X4467Y25141D01* X4500Y25127D01* X4534Y25115D01* X4543Y25113D01* X4552Y25113D01* X4560Y25115D01* X4568Y25117D01* X4576Y25122D01* X4583Y25127D01* X4589Y25134D01* X4593Y25141D01* X4596Y25149D01* X4598Y25158D01* X4598Y25167D01* X4597Y25175D01* X4594Y25183D01* X4590Y25191D01* X4584Y25198D01* X4577Y25204D01* X4570Y25208D01* X4562Y25211D01* X4536Y25220D01* X4511Y25231D01* X4488Y25244D01* X4465Y25259D01* X4445Y25276D01* Y25723D01* X4461Y25737D01* X4483Y25752D01* X4507Y25766D01* X4531Y25777D01* X4557Y25786D01* X4565Y25790D01* X4572Y25794D01* X4579Y25800D01* X4584Y25807D01* X4588Y25815D01* X4591Y25823D01* X4592Y25832D01* X4592Y25840D01* X4590Y25849D01* X4587Y25857D01* X4582Y25864D01* X4576Y25871D01* X4569Y25876D01* X4562Y25880D01* X4553Y25883D01* X4545Y25884D01* X4536Y25884D01* X4528Y25882D01* X4493Y25870D01* X4461Y25855D01* X4445Y25846D01* Y27142D01* X4447Y27141D01* X4480Y27127D01* X4514Y27115D01* X4523Y27113D01* X4532Y27113D01* X4540Y27115D01* X4548Y27117D01* X4556Y27122D01* X4563Y27127D01* X4569Y27134D01* X4573Y27141D01* X4576Y27149D01* X4578Y27158D01* X4578Y27167D01* X4577Y27175D01* X4574Y27183D01* X4570Y27191D01* X4564Y27198D01* X4557Y27204D01* X4550Y27208D01* X4542Y27211D01* X4516Y27220D01* X4491Y27231D01* X4468Y27244D01* X4445Y27259D01* Y27740D01* X4463Y27752D01* X4487Y27766D01* X4511Y27777D01* X4537Y27786D01* X4545Y27790D01* X4552Y27794D01* X4559Y27800D01* X4564Y27807D01* X4568Y27815D01* X4571Y27823D01* X4572Y27832D01* X4572Y27840D01* X4570Y27849D01* X4567Y27857D01* X4562Y27864D01* X4556Y27871D01* X4549Y27876D01* X4542Y27880D01* X4533Y27883D01* X4525Y27884D01* X4516Y27884D01* X4508Y27882D01* X4473Y27870D01* X4445Y27857D01* Y29133D01* X4460Y29127D01* X4494Y29115D01* X4503Y29113D01* X4512Y29113D01* X4520Y29115D01* X4528Y29117D01* X4536Y29122D01* X4543Y29127D01* X4549Y29134D01* X4553Y29141D01* X4556Y29149D01* X4558Y29158D01* X4558Y29167D01* X4557Y29175D01* X4554Y29183D01* X4550Y29191D01* X4544Y29198D01* X4537Y29204D01* X4530Y29208D01* X4522Y29211D01* X4496Y29220D01* X4471Y29231D01* X4448Y29244D01* X4445Y29246D01* Y29754D01* X4467Y29766D01* X4491Y29777D01* X4517Y29786D01* X4525Y29790D01* X4532Y29794D01* X4539Y29800D01* X4544Y29807D01* X4548Y29815D01* X4551Y29823D01* X4552Y29832D01* X4552Y29840D01* X4550Y29849D01* X4547Y29857D01* X4542Y29864D01* X4536Y29871D01* X4529Y29876D01* X4522Y29880D01* X4513Y29883D01* X4505Y29884D01* X4496Y29884D01* X4488Y29882D01* X4453Y29870D01* X4445Y29866D01* Y31125D01* X4474Y31115D01* X4483Y31113D01* X4492Y31113D01* X4500Y31115D01* X4508Y31117D01* X4516Y31122D01* X4523Y31127D01* X4529Y31134D01* X4533Y31141D01* X4536Y31149D01* X4538Y31158D01* X4538Y31167D01* X4537Y31175D01* X4534Y31183D01* X4530Y31191D01* X4524Y31198D01* X4517Y31204D01* X4510Y31208D01* X4502Y31211D01* X4476Y31220D01* X4451Y31231D01* X4445Y31234D01* Y31765D01* X4447Y31766D01* X4471Y31777D01* X4497Y31786D01* X4505Y31790D01* X4512Y31794D01* X4519Y31800D01* X4524Y31807D01* X4528Y31815D01* X4531Y31823D01* X4532Y31832D01* X4532Y31840D01* X4530Y31849D01* X4527Y31857D01* X4522Y31864D01* X4516Y31871D01* X4509Y31876D01* X4502Y31880D01* X4493Y31883D01* X4485Y31884D01* X4476Y31884D01* X4468Y31882D01* X4445Y31874D01* Y33118D01* X4454Y33115D01* X4463Y33113D01* X4472Y33113D01* X4480Y33115D01* X4488Y33117D01* X4496Y33122D01* X4503Y33127D01* X4509Y33134D01* X4513Y33141D01* X4516Y33149D01* X4518Y33158D01* X4518Y33167D01* X4517Y33175D01* X4514Y33183D01* X4510Y33191D01* X4504Y33198D01* X4497Y33204D01* X4490Y33208D01* X4482Y33211D01* X4456Y33220D01* X4445Y33225D01* Y33775D01* X4451Y33777D01* X4477Y33786D01* X4485Y33790D01* X4492Y33794D01* X4499Y33800D01* X4504Y33807D01* X4508Y33815D01* X4511Y33823D01* X4512Y33832D01* X4512Y33840D01* X4510Y33849D01* X4507Y33857D01* X4502Y33864D01* X4496Y33871D01* X4489Y33876D01* X4482Y33880D01* X4473Y33883D01* X4465Y33884D01* X4456Y33884D01* X4448Y33882D01* X4445Y33881D01* Y35113D01* X4452Y35113D01* X4460Y35115D01* X4468Y35117D01* X4476Y35122D01* X4483Y35127D01* X4489Y35134D01* X4493Y35141D01* X4496Y35149D01* X4498Y35158D01* X4498Y35167D01* X4497Y35175D01* X4494Y35183D01* X4490Y35191D01* X4484Y35198D01* X4477Y35204D01* X4470Y35208D01* X4462Y35211D01* X4445Y35217D01* Y35782D01* X4457Y35786D01* X4465Y35790D01* X4472Y35794D01* X4479Y35800D01* X4484Y35807D01* X4488Y35815D01* X4491Y35823D01* X4492Y35832D01* X4492Y35840D01* X4490Y35849D01* X4487Y35857D01* X4482Y35864D01* X4476Y35871D01* X4469Y35876D01* X4462Y35880D01* X4453Y35883D01* X4445Y35884D01* Y37116D01* X4448Y37117D01* X4456Y37122D01* X4463Y37127D01* X4469Y37134D01* X4473Y37141D01* X4476Y37149D01* X4478Y37158D01* X4478Y37167D01* X4477Y37175D01* X4474Y37183D01* X4470Y37191D01* X4464Y37198D01* X4457Y37204D01* X4450Y37208D01* X4445Y37210D01* Y37790D01* X4452Y37794D01* X4459Y37800D01* X4464Y37807D01* X4468Y37815D01* X4471Y37823D01* X4472Y37832D01* X4472Y37840D01* X4470Y37849D01* X4467Y37857D01* X4462Y37864D01* X4456Y37871D01* X4449Y37876D01* X4445Y37878D01* Y39130D01* X4449Y39134D01* X4453Y39141D01* X4456Y39149D01* X4458Y39158D01* X4458Y39167D01* X4457Y39175D01* X4454Y39183D01* X4450Y39191D01* X4445Y39197D01* Y39809D01* X4448Y39815D01* X4451Y39823D01* X4452Y39832D01* X4452Y39840D01* X4450Y39849D01* X4447Y39857D01* X4445Y39859D01* Y40000D01* G37* G36* X4625Y0D02*X4445D01* Y7374D01* X4454Y7349D01* X4469Y7316D01* X4487Y7284D01* X4508Y7255D01* X4532Y7227D01* X4557Y7202D01* X4585Y7179D01* X4615Y7159D01* X4625Y7153D01* Y5834D01* X4600Y5816D01* X4572Y5793D01* X4547Y5767D01* X4524Y5739D01* X4504Y5709D01* X4486Y5677D01* X4472Y5644D01* X4460Y5610D01* X4458Y5601D01* X4458Y5593D01* X4459Y5584D01* X4462Y5576D01* X4467Y5568D01* X4472Y5561D01* X4479Y5556D01* X4486Y5551D01* X4494Y5548D01* X4503Y5546D01* X4512Y5546D01* X4520Y5547D01* X4528Y5550D01* X4536Y5555D01* X4543Y5560D01* X4549Y5567D01* X4553Y5574D01* X4556Y5582D01* X4565Y5608D01* X4576Y5633D01* X4589Y5657D01* X4604Y5679D01* X4621Y5700D01* X4625Y5704D01* Y5295D01* X4625Y5295D01* X4607Y5316D01* X4592Y5338D01* X4578Y5362D01* X4567Y5386D01* X4558Y5412D01* X4554Y5420D01* X4550Y5427D01* X4544Y5434D01* X4537Y5439D01* X4529Y5443D01* X4521Y5446D01* X4512Y5447D01* X4504Y5447D01* X4495Y5445D01* X4487Y5442D01* X4480Y5437D01* X4473Y5431D01* X4468Y5424D01* X4464Y5417D01* X4461Y5409D01* X4460Y5400D01* X4460Y5391D01* X4462Y5383D01* X4474Y5349D01* X4489Y5316D01* X4507Y5284D01* X4528Y5255D01* X4552Y5227D01* X4577Y5202D01* X4605Y5179D01* X4625Y5166D01* Y3820D01* X4620Y3816D01* X4592Y3793D01* X4567Y3767D01* X4544Y3739D01* X4524Y3709D01* X4506Y3677D01* X4492Y3644D01* X4480Y3610D01* X4478Y3601D01* X4478Y3593D01* X4479Y3584D01* X4482Y3576D01* X4487Y3568D01* X4492Y3561D01* X4499Y3556D01* X4506Y3551D01* X4514Y3548D01* X4523Y3546D01* X4532Y3546D01* X4540Y3547D01* X4548Y3550D01* X4556Y3555D01* X4563Y3560D01* X4569Y3567D01* X4573Y3574D01* X4576Y3582D01* X4585Y3608D01* X4596Y3633D01* X4609Y3657D01* X4624Y3679D01* X4625Y3680D01* Y3319D01* X4612Y3338D01* X4598Y3362D01* X4587Y3386D01* X4578Y3412D01* X4574Y3420D01* X4570Y3427D01* X4564Y3434D01* X4557Y3439D01* X4549Y3443D01* X4541Y3446D01* X4532Y3447D01* X4524Y3447D01* X4515Y3445D01* X4507Y3442D01* X4500Y3437D01* X4493Y3431D01* X4488Y3424D01* X4484Y3417D01* X4481Y3409D01* X4480Y3400D01* X4480Y3391D01* X4482Y3383D01* X4494Y3349D01* X4509Y3316D01* X4527Y3284D01* X4548Y3255D01* X4572Y3227D01* X4597Y3202D01* X4625Y3179D01* Y1804D01* X4612Y1793D01* X4587Y1767D01* X4564Y1739D01* X4544Y1709D01* X4526Y1677D01* X4512Y1644D01* X4500Y1610D01* X4498Y1601D01* X4498Y1593D01* X4499Y1584D01* X4502Y1576D01* X4507Y1568D01* X4512Y1561D01* X4519Y1556D01* X4526Y1551D01* X4534Y1548D01* X4543Y1546D01* X4552Y1546D01* X4560Y1547D01* X4568Y1550D01* X4576Y1555D01* X4583Y1560D01* X4589Y1567D01* X4593Y1574D01* X4596Y1582D01* X4605Y1608D01* X4616Y1633D01* X4625Y1650D01* Y1349D01* X4618Y1362D01* X4607Y1386D01* X4598Y1412D01* X4594Y1420D01* X4590Y1427D01* X4584Y1434D01* X4577Y1439D01* X4569Y1443D01* X4561Y1446D01* X4552Y1447D01* X4544Y1447D01* X4535Y1445D01* X4527Y1442D01* X4520Y1437D01* X4513Y1431D01* X4508Y1424D01* X4504Y1417D01* X4501Y1409D01* X4500Y1400D01* X4500Y1391D01* X4502Y1383D01* X4514Y1349D01* X4529Y1316D01* X4547Y1284D01* X4568Y1255D01* X4592Y1227D01* X4617Y1202D01* X4625Y1196D01* Y0D01* G37* G36* Y7276D02*X4624Y7276D01* X4605Y7295D01* X4587Y7316D01* X4572Y7338D01* X4558Y7362D01* X4547Y7386D01* X4538Y7412D01* X4534Y7420D01* X4530Y7427D01* X4524Y7434D01* X4517Y7439D01* X4509Y7443D01* X4501Y7446D01* X4492Y7447D01* X4484Y7447D01* X4475Y7445D01* X4467Y7442D01* X4460Y7437D01* X4453Y7431D01* X4448Y7424D01* X4445Y7419D01* Y7571D01* X4447Y7568D01* X4452Y7561D01* X4459Y7556D01* X4466Y7551D01* X4474Y7548D01* X4483Y7546D01* X4492Y7546D01* X4500Y7547D01* X4508Y7550D01* X4516Y7555D01* X4523Y7560D01* X4529Y7567D01* X4533Y7574D01* X4536Y7582D01* X4545Y7608D01* X4556Y7633D01* X4569Y7657D01* X4584Y7679D01* X4601Y7700D01* X4620Y7719D01* X4625Y7723D01* Y7276D01* G37* G36* Y7846D02*X4609Y7837D01* X4580Y7816D01* X4552Y7793D01* X4527Y7767D01* X4504Y7739D01* X4484Y7709D01* X4466Y7677D01* X4452Y7644D01* X4445Y7625D01* Y9325D01* X4449Y9316D01* X4467Y9284D01* X4488Y9255D01* X4512Y9227D01* X4537Y9202D01* X4565Y9179D01* X4595Y9159D01* X4625Y9142D01* Y7846D01* G37* G36* Y9259D02*X4625Y9259D01* X4604Y9276D01* X4585Y9295D01* X4567Y9316D01* X4552Y9338D01* X4538Y9362D01* X4527Y9386D01* X4518Y9412D01* X4514Y9420D01* X4510Y9427D01* X4504Y9434D01* X4497Y9439D01* X4489Y9443D01* X4481Y9446D01* X4472Y9447D01* X4464Y9447D01* X4455Y9445D01* X4447Y9442D01* X4445Y9441D01* Y9552D01* X4446Y9551D01* X4454Y9548D01* X4463Y9546D01* X4472Y9546D01* X4480Y9547D01* X4488Y9550D01* X4496Y9555D01* X4503Y9560D01* X4509Y9567D01* X4513Y9574D01* X4516Y9582D01* X4525Y9608D01* X4536Y9633D01* X4549Y9657D01* X4564Y9679D01* X4581Y9700D01* X4600Y9719D01* X4621Y9737D01* X4625Y9740D01* Y9259D01* G37* G36* Y9857D02*X4621Y9855D01* X4589Y9837D01* X4560Y9816D01* X4532Y9793D01* X4507Y9767D01* X4484Y9739D01* X4464Y9709D01* X4446Y9677D01* X4445Y9675D01* Y11288D01* X4447Y11284D01* X4468Y11255D01* X4492Y11227D01* X4517Y11202D01* X4545Y11179D01* X4575Y11159D01* X4607Y11141D01* X4625Y11133D01* Y9857D01* G37* G36* Y11246D02*X4605Y11259D01* X4584Y11276D01* X4565Y11295D01* X4547Y11316D01* X4532Y11338D01* X4518Y11362D01* X4507Y11386D01* X4498Y11412D01* X4494Y11420D01* X4490Y11427D01* X4484Y11434D01* X4477Y11439D01* X4469Y11443D01* X4461Y11446D01* X4452Y11447D01* X4445Y11447D01* Y11546D01* X4452Y11546D01* X4460Y11547D01* X4468Y11550D01* X4476Y11555D01* X4483Y11560D01* X4489Y11567D01* X4493Y11574D01* X4496Y11582D01* X4505Y11608D01* X4516Y11633D01* X4529Y11657D01* X4544Y11679D01* X4561Y11700D01* X4580Y11719D01* X4601Y11737D01* X4623Y11752D01* X4625Y11754D01* Y11246D01* G37* G36* Y11866D02*X4601Y11855D01* X4569Y11837D01* X4540Y11816D01* X4512Y11793D01* X4487Y11767D01* X4464Y11739D01* X4445Y11711D01* Y13259D01* X4448Y13255D01* X4472Y13227D01* X4497Y13202D01* X4525Y13179D01* X4555Y13159D01* X4587Y13141D01* X4620Y13127D01* X4625Y13125D01* Y11866D01* G37* G36* Y13234D02*X4608Y13244D01* X4585Y13259D01* X4564Y13276D01* X4545Y13295D01* X4527Y13316D01* X4512Y13338D01* X4498Y13362D01* X4487Y13386D01* X4478Y13412D01* X4474Y13420D01* X4470Y13427D01* X4464Y13434D01* X4457Y13439D01* X4449Y13443D01* X4445Y13445D01* Y13549D01* X4448Y13550D01* X4456Y13555D01* X4463Y13560D01* X4469Y13567D01* X4473Y13574D01* X4476Y13582D01* X4485Y13608D01* X4496Y13633D01* X4509Y13657D01* X4524Y13679D01* X4541Y13700D01* X4560Y13719D01* X4581Y13737D01* X4603Y13752D01* X4625Y13765D01* Y13234D01* G37* G36* Y13874D02*X4613Y13870D01* X4581Y13855D01* X4549Y13837D01* X4520Y13816D01* X4492Y13793D01* X4467Y13767D01* X4445Y13740D01* Y15235D01* X4452Y15227D01* X4477Y15202D01* X4505Y15179D01* X4535Y15159D01* X4567Y15141D01* X4600Y15127D01* X4625Y15118D01* Y13874D01* G37* G36* Y15225D02*X4611Y15231D01* X4588Y15244D01* X4565Y15259D01* X4544Y15276D01* X4525Y15295D01* X4507Y15316D01* X4492Y15338D01* X4478Y15362D01* X4467Y15386D01* X4458Y15412D01* X4454Y15420D01* X4450Y15427D01* X4445Y15432D01* Y15563D01* X4449Y15567D01* X4453Y15574D01* X4456Y15582D01* X4465Y15608D01* X4476Y15633D01* X4489Y15657D01* X4504Y15679D01* X4521Y15700D01* X4540Y15719D01* X4561Y15737D01* X4583Y15752D01* X4607Y15766D01* X4625Y15775D01* Y15225D01* G37* G36* Y15881D02*X4593Y15870D01* X4561Y15855D01* X4529Y15837D01* X4500Y15816D01* X4472Y15793D01* X4447Y15767D01* X4445Y15765D01* Y17214D01* X4457Y17202D01* X4485Y17179D01* X4515Y17159D01* X4547Y17141D01* X4580Y17127D01* X4614Y17115D01* X4623Y17113D01* X4625D01* Y15881D01* G37* G36* Y17217D02*X4616Y17220D01* X4591Y17231D01* X4568Y17244D01* X4545Y17259D01* X4524Y17276D01* X4505Y17295D01* X4487Y17316D01* X4472Y17338D01* X4458Y17362D01* X4447Y17386D01* X4445Y17391D01* Y17609D01* X4456Y17633D01* X4469Y17657D01* X4484Y17679D01* X4501Y17700D01* X4520Y17719D01* X4541Y17737D01* X4563Y17752D01* X4587Y17766D01* X4611Y17777D01* X4625Y17782D01* Y17217D01* G37* G36* Y17884D02*X4625Y17884D01* X4616Y17884D01* X4608Y17882D01* X4573Y17870D01* X4541Y17855D01* X4509Y17837D01* X4480Y17816D01* X4452Y17793D01* X4445Y17785D01* Y19196D01* X4465Y19179D01* X4495Y19159D01* X4527Y19141D01* X4560Y19127D01* X4594Y19115D01* X4603Y19113D01* X4612Y19113D01* X4620Y19115D01* X4625Y19116D01* Y17884D01* G37* G36* Y19210D02*X4622Y19211D01* X4596Y19220D01* X4571Y19231D01* X4548Y19244D01* X4525Y19259D01* X4504Y19276D01* X4485Y19295D01* X4467Y19316D01* X4452Y19338D01* X4445Y19349D01* Y19650D01* X4449Y19657D01* X4464Y19679D01* X4481Y19700D01* X4500Y19719D01* X4521Y19737D01* X4543Y19752D01* X4567Y19766D01* X4591Y19777D01* X4617Y19786D01* X4625Y19790D01* X4625Y19790D01* Y19210D01* G37* G36* Y19878D02*X4622Y19880D01* X4613Y19883D01* X4605Y19884D01* X4596Y19884D01* X4588Y19882D01* X4553Y19870D01* X4521Y19855D01* X4489Y19837D01* X4460Y19816D01* X4445Y19804D01* Y21179D01* X4445Y21179D01* X4475Y21159D01* X4507Y21141D01* X4540Y21127D01* X4574Y21115D01* X4583Y21113D01* X4592Y21113D01* X4600Y21115D01* X4608Y21117D01* X4616Y21122D01* X4623Y21127D01* X4625Y21130D01* Y19878D01* G37* G36* Y21197D02*X4624Y21198D01* X4617Y21204D01* X4610Y21208D01* X4602Y21211D01* X4576Y21220D01* X4551Y21231D01* X4528Y21244D01* X4505Y21259D01* X4484Y21276D01* X4465Y21295D01* X4447Y21316D01* X4445Y21319D01* Y21680D01* X4461Y21700D01* X4480Y21719D01* X4501Y21737D01* X4523Y21752D01* X4547Y21766D01* X4571Y21777D01* X4597Y21786D01* X4605Y21790D01* X4612Y21794D01* X4619Y21800D01* X4624Y21807D01* X4625Y21809D01* Y21197D01* G37* G36* Y40000D02*X4884D01* Y39625D01* X4875Y39651D01* X4860Y39683D01* X4842Y39715D01* X4821Y39744D01* X4797Y39772D01* X4772Y39797D01* X4744Y39820D01* X4714Y39840D01* X4682Y39858D01* X4649Y39873D01* X4625Y39881D01* Y40000D01* G37* G36* Y39774D02*X4638Y39768D01* X4661Y39755D01* X4684Y39740D01* X4705Y39723D01* X4724Y39704D01* X4742Y39683D01* X4757Y39661D01* X4771Y39637D01* X4782Y39613D01* X4791Y39587D01* X4795Y39579D01* X4799Y39572D01* X4805Y39565D01* X4812Y39560D01* X4820Y39556D01* X4828Y39553D01* X4837Y39552D01* X4845Y39552D01* X4854Y39554D01* X4862Y39557D01* X4869Y39562D01* X4876Y39568D01* X4881Y39575D01* X4884Y39580D01* Y39428D01* X4882Y39431D01* X4877Y39438D01* X4870Y39444D01* X4863Y39448D01* X4855Y39451D01* X4846Y39453D01* X4837Y39453D01* X4829Y39452D01* X4821Y39449D01* X4813Y39445D01* X4806Y39439D01* X4800Y39433D01* X4796Y39425D01* X4793Y39417D01* X4784Y39391D01* X4773Y39366D01* X4760Y39343D01* X4745Y39320D01* X4728Y39299D01* X4709Y39280D01* X4688Y39262D01* X4666Y39247D01* X4642Y39233D01* X4625Y39225D01* Y39774D01* G37* G36* Y39118D02*X4656Y39129D01* X4688Y39144D01* X4720Y39162D01* X4749Y39183D01* X4777Y39207D01* X4802Y39232D01* X4825Y39260D01* X4845Y39290D01* X4863Y39322D01* X4877Y39355D01* X4884Y39374D01* Y37674D01* X4880Y37683D01* X4862Y37715D01* X4841Y37744D01* X4817Y37772D01* X4792Y37797D01* X4764Y37820D01* X4734Y37840D01* X4702Y37858D01* X4669Y37873D01* X4635Y37884D01* X4626Y37886D01* X4625D01* Y39118D01* G37* G36* Y37782D02*X4633Y37779D01* X4658Y37768D01* X4681Y37755D01* X4704Y37740D01* X4725Y37723D01* X4744Y37704D01* X4762Y37683D01* X4777Y37661D01* X4791Y37637D01* X4802Y37613D01* X4811Y37587D01* X4815Y37579D01* X4819Y37572D01* X4825Y37565D01* X4832Y37560D01* X4840Y37556D01* X4848Y37553D01* X4857Y37552D01* X4865Y37552D01* X4874Y37554D01* X4882Y37557D01* X4884Y37559D01* Y37447D01* X4883Y37448D01* X4875Y37451D01* X4866Y37453D01* X4857Y37453D01* X4849Y37452D01* X4841Y37449D01* X4833Y37445D01* X4826Y37439D01* X4820Y37433D01* X4816Y37425D01* X4813Y37417D01* X4804Y37391D01* X4793Y37366D01* X4780Y37343D01* X4765Y37320D01* X4748Y37299D01* X4729Y37280D01* X4708Y37262D01* X4686Y37247D01* X4662Y37233D01* X4638Y37222D01* X4625Y37217D01* Y37782D01* G37* G36* Y37115D02*X4633Y37115D01* X4641Y37117D01* X4676Y37129D01* X4708Y37144D01* X4740Y37162D01* X4769Y37183D01* X4797Y37207D01* X4822Y37232D01* X4845Y37260D01* X4865Y37290D01* X4883Y37322D01* X4884Y37324D01* Y35711D01* X4882Y35715D01* X4861Y35744D01* X4837Y35772D01* X4812Y35797D01* X4784Y35820D01* X4754Y35840D01* X4722Y35858D01* X4689Y35873D01* X4655Y35884D01* X4646Y35886D01* X4637Y35886D01* X4629Y35885D01* X4625Y35883D01* Y37115D01* G37* G36* Y35789D02*X4627Y35788D01* X4653Y35779D01* X4678Y35768D01* X4701Y35755D01* X4724Y35740D01* X4745Y35723D01* X4764Y35704D01* X4782Y35683D01* X4797Y35661D01* X4811Y35637D01* X4822Y35613D01* X4831Y35587D01* X4835Y35579D01* X4839Y35572D01* X4845Y35565D01* X4852Y35560D01* X4860Y35556D01* X4868Y35553D01* X4877Y35552D01* X4884Y35552D01* Y35453D01* X4877Y35453D01* X4869Y35452D01* X4861Y35449D01* X4853Y35445D01* X4846Y35439D01* X4840Y35433D01* X4836Y35425D01* X4833Y35417D01* X4824Y35391D01* X4813Y35366D01* X4800Y35343D01* X4785Y35320D01* X4768Y35299D01* X4749Y35280D01* X4728Y35262D01* X4706Y35247D01* X4682Y35233D01* X4658Y35222D01* X4632Y35213D01* X4625Y35210D01* Y35789D01* G37* G36* Y35120D02*X4627Y35119D01* X4636Y35116D01* X4644Y35115D01* X4653Y35115D01* X4661Y35117D01* X4696Y35129D01* X4728Y35144D01* X4760Y35162D01* X4789Y35183D01* X4817Y35207D01* X4842Y35232D01* X4865Y35260D01* X4884Y35288D01* Y33740D01* X4881Y33744D01* X4857Y33772D01* X4832Y33797D01* X4804Y33820D01* X4774Y33840D01* X4742Y33858D01* X4709Y33873D01* X4675Y33884D01* X4666Y33886D01* X4657Y33886D01* X4649Y33885D01* X4641Y33882D01* X4633Y33878D01* X4626Y33872D01* X4625Y33871D01* Y35120D01* G37* G36* Y33801D02*X4632Y33796D01* X4639Y33791D01* X4647Y33788D01* X4673Y33779D01* X4698Y33768D01* X4721Y33755D01* X4744Y33740D01* X4765Y33723D01* X4784Y33704D01* X4802Y33683D01* X4817Y33661D01* X4831Y33637D01* X4842Y33613D01* X4851Y33587D01* X4855Y33579D01* X4859Y33572D01* X4865Y33565D01* X4872Y33560D01* X4880Y33556D01* X4884Y33555D01* Y33450D01* X4881Y33449D01* X4873Y33445D01* X4866Y33439D01* X4860Y33433D01* X4856Y33425D01* X4853Y33417D01* X4844Y33391D01* X4833Y33366D01* X4820Y33343D01* X4805Y33320D01* X4788Y33299D01* X4769Y33280D01* X4748Y33262D01* X4726Y33247D01* X4702Y33233D01* X4678Y33222D01* X4652Y33213D01* X4644Y33209D01* X4637Y33205D01* X4630Y33199D01* X4625Y33192D01* Y33801D01* G37* G36* Y33138D02*X4627Y33135D01* X4633Y33128D01* X4640Y33123D01* X4647Y33119D01* X4656Y33116D01* X4664Y33115D01* X4673Y33115D01* X4681Y33117D01* X4716Y33129D01* X4748Y33144D01* X4780Y33162D01* X4809Y33183D01* X4837Y33207D01* X4862Y33232D01* X4884Y33259D01* Y31764D01* X4877Y31772D01* X4852Y31797D01* X4824Y31820D01* X4794Y31840D01* X4762Y31858D01* X4729Y31873D01* X4695Y31884D01* X4686Y31886D01* X4677Y31886D01* X4669Y31885D01* X4661Y31882D01* X4653Y31878D01* X4646Y31872D01* X4640Y31865D01* X4636Y31858D01* X4633Y31850D01* X4631Y31841D01* X4631Y31833D01* X4632Y31824D01* X4635Y31816D01* X4639Y31808D01* X4645Y31801D01* X4652Y31796D01* X4659Y31791D01* X4667Y31788D01* X4693Y31779D01* X4718Y31768D01* X4741Y31755D01* X4764Y31740D01* X4785Y31723D01* X4804Y31704D01* X4822Y31683D01* X4837Y31661D01* X4851Y31637D01* X4862Y31613D01* X4871Y31587D01* X4875Y31579D01* X4879Y31572D01* X4884Y31567D01* Y31437D01* X4880Y31433D01* X4876Y31425D01* X4873Y31417D01* X4864Y31391D01* X4853Y31366D01* X4840Y31343D01* X4825Y31320D01* X4808Y31299D01* X4789Y31280D01* X4768Y31262D01* X4746Y31247D01* X4722Y31233D01* X4698Y31222D01* X4672Y31213D01* X4664Y31209D01* X4657Y31205D01* X4650Y31199D01* X4645Y31192D01* X4641Y31184D01* X4638Y31176D01* X4637Y31167D01* X4637Y31159D01* X4639Y31150D01* X4642Y31142D01* X4647Y31135D01* X4653Y31128D01* X4660Y31123D01* X4667Y31119D01* X4676Y31116D01* X4684Y31115D01* X4693Y31115D01* X4701Y31117D01* X4736Y31129D01* X4768Y31144D01* X4800Y31162D01* X4829Y31183D01* X4857Y31207D01* X4882Y31232D01* X4884Y31235D01* Y29785D01* X4872Y29797D01* X4844Y29820D01* X4814Y29840D01* X4782Y29858D01* X4749Y29873D01* X4715Y29884D01* X4706Y29886D01* X4697Y29886D01* X4689Y29885D01* X4681Y29882D01* X4673Y29878D01* X4666Y29872D01* X4660Y29865D01* X4656Y29858D01* X4653Y29850D01* X4651Y29841D01* X4651Y29833D01* X4652Y29824D01* X4655Y29816D01* X4659Y29808D01* X4665Y29801D01* X4672Y29796D01* X4679Y29791D01* X4687Y29788D01* X4713Y29779D01* X4738Y29768D01* X4761Y29755D01* X4784Y29740D01* X4805Y29723D01* X4824Y29704D01* X4842Y29683D01* X4857Y29661D01* X4871Y29637D01* X4882Y29613D01* X4884Y29608D01* Y29391D01* X4873Y29366D01* X4860Y29343D01* X4845Y29320D01* X4828Y29299D01* X4809Y29280D01* X4788Y29262D01* X4766Y29247D01* X4742Y29233D01* X4718Y29222D01* X4692Y29213D01* X4684Y29209D01* X4677Y29205D01* X4670Y29199D01* X4665Y29192D01* X4661Y29184D01* X4658Y29176D01* X4657Y29167D01* X4657Y29159D01* X4659Y29150D01* X4662Y29142D01* X4667Y29135D01* X4673Y29128D01* X4680Y29123D01* X4687Y29119D01* X4696Y29116D01* X4704Y29115D01* X4713Y29115D01* X4721Y29117D01* X4756Y29129D01* X4788Y29144D01* X4820Y29162D01* X4849Y29183D01* X4877Y29207D01* X4884Y29214D01* Y27804D01* X4864Y27820D01* X4834Y27840D01* X4802Y27858D01* X4769Y27873D01* X4735Y27884D01* X4726Y27886D01* X4717Y27886D01* X4709Y27885D01* X4701Y27882D01* X4693Y27878D01* X4686Y27872D01* X4680Y27865D01* X4676Y27858D01* X4673Y27850D01* X4671Y27841D01* X4671Y27833D01* X4672Y27824D01* X4675Y27816D01* X4679Y27808D01* X4685Y27801D01* X4692Y27796D01* X4699Y27791D01* X4707Y27788D01* X4733Y27779D01* X4758Y27768D01* X4781Y27755D01* X4804Y27740D01* X4825Y27723D01* X4844Y27704D01* X4862Y27683D01* X4877Y27661D01* X4884Y27650D01* Y27350D01* X4880Y27343D01* X4865Y27320D01* X4848Y27299D01* X4829Y27280D01* X4808Y27262D01* X4786Y27247D01* X4762Y27233D01* X4738Y27222D01* X4712Y27213D01* X4704Y27209D01* X4697Y27205D01* X4690Y27199D01* X4685Y27192D01* X4681Y27184D01* X4678Y27176D01* X4677Y27167D01* X4677Y27159D01* X4679Y27150D01* X4682Y27142D01* X4687Y27135D01* X4693Y27128D01* X4700Y27123D01* X4707Y27119D01* X4716Y27116D01* X4724Y27115D01* X4733Y27115D01* X4741Y27117D01* X4776Y27129D01* X4808Y27144D01* X4840Y27162D01* X4869Y27183D01* X4884Y27196D01* Y25820D01* X4884Y25820D01* X4854Y25840D01* X4822Y25858D01* X4789Y25873D01* X4755Y25884D01* X4746Y25886D01* X4737Y25886D01* X4729Y25885D01* X4721Y25882D01* X4713Y25878D01* X4706Y25872D01* X4700Y25865D01* X4696Y25858D01* X4693Y25850D01* X4691Y25841D01* X4691Y25833D01* X4692Y25824D01* X4695Y25816D01* X4699Y25808D01* X4705Y25801D01* X4712Y25796D01* X4719Y25791D01* X4727Y25788D01* X4753Y25779D01* X4778Y25768D01* X4801Y25755D01* X4824Y25740D01* X4845Y25723D01* X4864Y25704D01* X4882Y25683D01* X4884Y25680D01* Y25319D01* X4868Y25299D01* X4849Y25280D01* X4828Y25262D01* X4806Y25247D01* X4782Y25233D01* X4758Y25222D01* X4732Y25213D01* X4724Y25209D01* X4717Y25205D01* X4710Y25199D01* X4705Y25192D01* X4701Y25184D01* X4698Y25176D01* X4697Y25167D01* X4697Y25159D01* X4699Y25150D01* X4702Y25142D01* X4707Y25135D01* X4713Y25128D01* X4720Y25123D01* X4727Y25119D01* X4736Y25116D01* X4744Y25115D01* X4753Y25115D01* X4761Y25117D01* X4796Y25129D01* X4828Y25144D01* X4860Y25162D01* X4884Y25180D01* Y23834D01* X4874Y23840D01* X4842Y23858D01* X4809Y23873D01* X4775Y23884D01* X4766Y23886D01* X4757Y23886D01* X4749Y23885D01* X4741Y23882D01* X4733Y23878D01* X4726Y23872D01* X4720Y23865D01* X4716Y23858D01* X4713Y23850D01* X4711Y23841D01* X4711Y23833D01* X4712Y23824D01* X4715Y23816D01* X4719Y23808D01* X4725Y23801D01* X4732Y23796D01* X4739Y23791D01* X4747Y23788D01* X4773Y23779D01* X4798Y23768D01* X4821Y23755D01* X4844Y23740D01* X4865Y23723D01* X4884Y23704D01* Y23295D01* X4869Y23280D01* X4848Y23262D01* X4826Y23247D01* X4802Y23233D01* X4778Y23222D01* X4752Y23213D01* X4744Y23209D01* X4737Y23205D01* X4730Y23199D01* X4725Y23192D01* X4721Y23184D01* X4718Y23176D01* X4717Y23167D01* X4717Y23159D01* X4719Y23150D01* X4722Y23142D01* X4727Y23135D01* X4733Y23128D01* X4740Y23123D01* X4747Y23119D01* X4756Y23116D01* X4764Y23115D01* X4773Y23115D01* X4781Y23117D01* X4816Y23129D01* X4848Y23144D01* X4880Y23162D01* X4884Y23165D01* Y21846D01* X4862Y21858D01* X4829Y21873D01* X4795Y21884D01* X4786Y21886D01* X4777Y21886D01* X4769Y21885D01* X4761Y21882D01* X4753Y21878D01* X4746Y21872D01* X4740Y21865D01* X4736Y21858D01* X4733Y21850D01* X4731Y21841D01* X4731Y21833D01* X4732Y21824D01* X4735Y21816D01* X4739Y21808D01* X4745Y21801D01* X4752Y21796D01* X4759Y21791D01* X4767Y21788D01* X4793Y21779D01* X4818Y21768D01* X4841Y21755D01* X4864Y21740D01* X4884Y21724D01* Y21276D01* X4868Y21262D01* X4846Y21247D01* X4822Y21233D01* X4798Y21222D01* X4772Y21213D01* X4764Y21209D01* X4757Y21205D01* X4750Y21199D01* X4745Y21192D01* X4741Y21184D01* X4738Y21176D01* X4737Y21167D01* X4737Y21159D01* X4739Y21150D01* X4742Y21142D01* X4747Y21135D01* X4753Y21128D01* X4760Y21123D01* X4767Y21119D01* X4776Y21116D01* X4784Y21115D01* X4793Y21115D01* X4801Y21117D01* X4836Y21129D01* X4868Y21144D01* X4884Y21153D01* Y19857D01* X4882Y19858D01* X4849Y19873D01* X4815Y19884D01* X4806Y19886D01* X4797Y19886D01* X4789Y19885D01* X4781Y19882D01* X4773Y19878D01* X4766Y19872D01* X4760Y19865D01* X4756Y19858D01* X4753Y19850D01* X4751Y19841D01* X4751Y19833D01* X4752Y19824D01* X4755Y19816D01* X4759Y19808D01* X4765Y19801D01* X4772Y19796D01* X4779Y19791D01* X4787Y19788D01* X4813Y19779D01* X4838Y19768D01* X4861Y19755D01* X4884Y19740D01* Y19259D01* X4866Y19247D01* X4842Y19233D01* X4818Y19222D01* X4792Y19213D01* X4784Y19209D01* X4777Y19205D01* X4770Y19199D01* X4765Y19192D01* X4761Y19184D01* X4758Y19176D01* X4757Y19167D01* X4757Y19159D01* X4759Y19150D01* X4762Y19142D01* X4767Y19135D01* X4773Y19128D01* X4780Y19123D01* X4787Y19119D01* X4796Y19116D01* X4804Y19115D01* X4813Y19115D01* X4821Y19117D01* X4856Y19129D01* X4884Y19142D01* Y17866D01* X4869Y17873D01* X4835Y17884D01* X4826Y17886D01* X4817Y17886D01* X4809Y17885D01* X4801Y17882D01* X4793Y17878D01* X4786Y17872D01* X4780Y17865D01* X4776Y17858D01* X4773Y17850D01* X4771Y17841D01* X4771Y17833D01* X4772Y17824D01* X4775Y17816D01* X4779Y17808D01* X4785Y17801D01* X4792Y17796D01* X4799Y17791D01* X4807Y17788D01* X4833Y17779D01* X4858Y17768D01* X4881Y17755D01* X4884Y17754D01* Y17246D01* X4862Y17233D01* X4838Y17222D01* X4812Y17213D01* X4804Y17209D01* X4797Y17205D01* X4790Y17199D01* X4785Y17192D01* X4781Y17184D01* X4778Y17176D01* X4777Y17167D01* X4777Y17159D01* X4779Y17150D01* X4782Y17142D01* X4787Y17135D01* X4793Y17128D01* X4800Y17123D01* X4807Y17119D01* X4816Y17116D01* X4824Y17115D01* X4833Y17115D01* X4841Y17117D01* X4876Y17129D01* X4884Y17133D01* Y15874D01* X4855Y15884D01* X4846Y15886D01* X4837Y15886D01* X4829Y15885D01* X4821Y15882D01* X4813Y15878D01* X4806Y15872D01* X4800Y15865D01* X4796Y15858D01* X4793Y15850D01* X4791Y15841D01* X4791Y15833D01* X4792Y15824D01* X4795Y15816D01* X4799Y15808D01* X4805Y15801D01* X4812Y15796D01* X4819Y15791D01* X4827Y15788D01* X4853Y15779D01* X4878Y15768D01* X4884Y15765D01* Y15234D01* X4882Y15233D01* X4858Y15222D01* X4832Y15213D01* X4824Y15209D01* X4817Y15205D01* X4810Y15199D01* X4805Y15192D01* X4801Y15184D01* X4798Y15176D01* X4797Y15167D01* X4797Y15159D01* X4799Y15150D01* X4802Y15142D01* X4807Y15135D01* X4813Y15128D01* X4820Y15123D01* X4827Y15119D01* X4836Y15116D01* X4844Y15115D01* X4853Y15115D01* X4861Y15117D01* X4884Y15125D01* Y13881D01* X4875Y13884D01* X4866Y13886D01* X4857Y13886D01* X4849Y13885D01* X4841Y13882D01* X4833Y13878D01* X4826Y13872D01* X4820Y13865D01* X4816Y13858D01* X4813Y13850D01* X4811Y13841D01* X4811Y13833D01* X4812Y13824D01* X4815Y13816D01* X4819Y13808D01* X4825Y13801D01* X4832Y13796D01* X4839Y13791D01* X4847Y13788D01* X4873Y13779D01* X4884Y13774D01* Y13225D01* X4878Y13222D01* X4852Y13213D01* X4844Y13209D01* X4837Y13205D01* X4830Y13199D01* X4825Y13192D01* X4821Y13184D01* X4818Y13176D01* X4817Y13167D01* X4817Y13159D01* X4819Y13150D01* X4822Y13142D01* X4827Y13135D01* X4833Y13128D01* X4840Y13123D01* X4847Y13119D01* X4856Y13116D01* X4864Y13115D01* X4873Y13115D01* X4881Y13117D01* X4884Y13118D01* Y11886D01* X4877Y11886D01* X4869Y11885D01* X4861Y11882D01* X4853Y11878D01* X4846Y11872D01* X4840Y11865D01* X4836Y11858D01* X4833Y11850D01* X4831Y11841D01* X4831Y11833D01* X4832Y11824D01* X4835Y11816D01* X4839Y11808D01* X4845Y11801D01* X4852Y11796D01* X4859Y11791D01* X4867Y11788D01* X4884Y11782D01* Y11217D01* X4872Y11213D01* X4864Y11209D01* X4857Y11205D01* X4850Y11199D01* X4845Y11192D01* X4841Y11184D01* X4838Y11176D01* X4837Y11167D01* X4837Y11159D01* X4839Y11150D01* X4842Y11142D01* X4847Y11135D01* X4853Y11128D01* X4860Y11123D01* X4867Y11119D01* X4876Y11116D01* X4884Y11115D01* Y9883D01* X4881Y9882D01* X4873Y9878D01* X4866Y9872D01* X4860Y9865D01* X4856Y9858D01* X4853Y9850D01* X4851Y9841D01* X4851Y9833D01* X4852Y9824D01* X4855Y9816D01* X4859Y9808D01* X4865Y9801D01* X4872Y9796D01* X4879Y9791D01* X4884Y9789D01* Y9209D01* X4877Y9205D01* X4870Y9199D01* X4865Y9192D01* X4861Y9184D01* X4858Y9176D01* X4857Y9167D01* X4857Y9159D01* X4859Y9150D01* X4862Y9142D01* X4867Y9135D01* X4873Y9128D01* X4880Y9123D01* X4884Y9121D01* Y7870D01* X4880Y7865D01* X4876Y7858D01* X4873Y7850D01* X4871Y7841D01* X4871Y7833D01* X4872Y7824D01* X4875Y7816D01* X4879Y7808D01* X4884Y7802D01* Y7190D01* X4881Y7184D01* X4878Y7176D01* X4877Y7167D01* X4877Y7159D01* X4879Y7150D01* X4882Y7142D01* X4884Y7140D01* Y0D01* X4625D01* Y1196D01* X4645Y1179D01* X4675Y1159D01* X4707Y1141D01* X4740Y1127D01* X4774Y1115D01* X4783Y1113D01* X4792Y1113D01* X4800Y1115D01* X4808Y1117D01* X4816Y1122D01* X4823Y1127D01* X4829Y1134D01* X4833Y1141D01* X4836Y1149D01* X4838Y1158D01* X4838Y1167D01* X4837Y1175D01* X4834Y1183D01* X4830Y1191D01* X4824Y1198D01* X4817Y1204D01* X4810Y1208D01* X4802Y1211D01* X4776Y1220D01* X4751Y1231D01* X4728Y1244D01* X4705Y1259D01* X4684Y1276D01* X4665Y1295D01* X4647Y1316D01* X4632Y1338D01* X4625Y1349D01* Y1650D01* X4629Y1657D01* X4644Y1679D01* X4661Y1700D01* X4680Y1719D01* X4701Y1737D01* X4723Y1752D01* X4747Y1766D01* X4771Y1777D01* X4797Y1786D01* X4805Y1790D01* X4812Y1794D01* X4819Y1800D01* X4824Y1807D01* X4828Y1815D01* X4831Y1823D01* X4832Y1832D01* X4832Y1840D01* X4830Y1849D01* X4827Y1857D01* X4822Y1864D01* X4816Y1871D01* X4809Y1876D01* X4802Y1880D01* X4793Y1883D01* X4785Y1884D01* X4776Y1884D01* X4768Y1882D01* X4733Y1870D01* X4701Y1855D01* X4669Y1837D01* X4640Y1816D01* X4625Y1804D01* Y3179D01* X4625Y3179D01* X4655Y3159D01* X4687Y3141D01* X4720Y3127D01* X4754Y3115D01* X4763Y3113D01* X4772Y3113D01* X4780Y3115D01* X4788Y3117D01* X4796Y3122D01* X4803Y3127D01* X4809Y3134D01* X4813Y3141D01* X4816Y3149D01* X4818Y3158D01* X4818Y3167D01* X4817Y3175D01* X4814Y3183D01* X4810Y3191D01* X4804Y3198D01* X4797Y3204D01* X4790Y3208D01* X4782Y3211D01* X4756Y3220D01* X4731Y3231D01* X4708Y3244D01* X4685Y3259D01* X4664Y3276D01* X4645Y3295D01* X4627Y3316D01* X4625Y3319D01* Y3680D01* X4641Y3700D01* X4660Y3719D01* X4681Y3737D01* X4703Y3752D01* X4727Y3766D01* X4751Y3777D01* X4777Y3786D01* X4785Y3790D01* X4792Y3794D01* X4799Y3800D01* X4804Y3807D01* X4808Y3815D01* X4811Y3823D01* X4812Y3832D01* X4812Y3840D01* X4810Y3849D01* X4807Y3857D01* X4802Y3864D01* X4796Y3871D01* X4789Y3876D01* X4782Y3880D01* X4773Y3883D01* X4765Y3884D01* X4756Y3884D01* X4748Y3882D01* X4713Y3870D01* X4681Y3855D01* X4649Y3837D01* X4625Y3820D01* Y5166D01* X4635Y5159D01* X4667Y5141D01* X4700Y5127D01* X4734Y5115D01* X4743Y5113D01* X4752Y5113D01* X4760Y5115D01* X4768Y5117D01* X4776Y5122D01* X4783Y5127D01* X4789Y5134D01* X4793Y5141D01* X4796Y5149D01* X4798Y5158D01* X4798Y5167D01* X4797Y5175D01* X4794Y5183D01* X4790Y5191D01* X4784Y5198D01* X4777Y5204D01* X4770Y5208D01* X4762Y5211D01* X4736Y5220D01* X4711Y5231D01* X4688Y5244D01* X4665Y5259D01* X4644Y5276D01* X4625Y5295D01* Y5704D01* X4640Y5719D01* X4661Y5737D01* X4683Y5752D01* X4707Y5766D01* X4731Y5777D01* X4757Y5786D01* X4765Y5790D01* X4772Y5794D01* X4779Y5800D01* X4784Y5807D01* X4788Y5815D01* X4791Y5823D01* X4792Y5832D01* X4792Y5840D01* X4790Y5849D01* X4787Y5857D01* X4782Y5864D01* X4776Y5871D01* X4769Y5876D01* X4762Y5880D01* X4753Y5883D01* X4745Y5884D01* X4736Y5884D01* X4728Y5882D01* X4693Y5870D01* X4661Y5855D01* X4629Y5837D01* X4625Y5834D01* Y7153D01* X4647Y7141D01* X4680Y7127D01* X4714Y7115D01* X4723Y7113D01* X4732Y7113D01* X4740Y7115D01* X4748Y7117D01* X4756Y7122D01* X4763Y7127D01* X4769Y7134D01* X4773Y7141D01* X4776Y7149D01* X4778Y7158D01* X4778Y7167D01* X4777Y7175D01* X4774Y7183D01* X4770Y7191D01* X4764Y7198D01* X4757Y7204D01* X4750Y7208D01* X4742Y7211D01* X4716Y7220D01* X4691Y7231D01* X4668Y7244D01* X4645Y7259D01* X4625Y7276D01* Y7723D01* X4641Y7737D01* X4663Y7752D01* X4687Y7766D01* X4711Y7777D01* X4737Y7786D01* X4745Y7790D01* X4752Y7794D01* X4759Y7800D01* X4764Y7807D01* X4768Y7815D01* X4771Y7823D01* X4772Y7832D01* X4772Y7840D01* X4770Y7849D01* X4767Y7857D01* X4762Y7864D01* X4756Y7871D01* X4749Y7876D01* X4742Y7880D01* X4733Y7883D01* X4725Y7884D01* X4716Y7884D01* X4708Y7882D01* X4673Y7870D01* X4641Y7855D01* X4625Y7846D01* Y9142D01* X4627Y9141D01* X4660Y9127D01* X4694Y9115D01* X4703Y9113D01* X4712Y9113D01* X4720Y9115D01* X4728Y9117D01* X4736Y9122D01* X4743Y9127D01* X4749Y9134D01* X4753Y9141D01* X4756Y9149D01* X4758Y9158D01* X4758Y9167D01* X4757Y9175D01* X4754Y9183D01* X4750Y9191D01* X4744Y9198D01* X4737Y9204D01* X4730Y9208D01* X4722Y9211D01* X4696Y9220D01* X4671Y9231D01* X4648Y9244D01* X4625Y9259D01* Y9740D01* X4643Y9752D01* X4667Y9766D01* X4691Y9777D01* X4717Y9786D01* X4725Y9790D01* X4732Y9794D01* X4739Y9800D01* X4744Y9807D01* X4748Y9815D01* X4751Y9823D01* X4752Y9832D01* X4752Y9840D01* X4750Y9849D01* X4747Y9857D01* X4742Y9864D01* X4736Y9871D01* X4729Y9876D01* X4722Y9880D01* X4713Y9883D01* X4705Y9884D01* X4696Y9884D01* X4688Y9882D01* X4653Y9870D01* X4625Y9857D01* Y11133D01* X4640Y11127D01* X4674Y11115D01* X4683Y11113D01* X4692Y11113D01* X4700Y11115D01* X4708Y11117D01* X4716Y11122D01* X4723Y11127D01* X4729Y11134D01* X4733Y11141D01* X4736Y11149D01* X4738Y11158D01* X4738Y11167D01* X4737Y11175D01* X4734Y11183D01* X4730Y11191D01* X4724Y11198D01* X4717Y11204D01* X4710Y11208D01* X4702Y11211D01* X4676Y11220D01* X4651Y11231D01* X4628Y11244D01* X4625Y11246D01* Y11754D01* X4647Y11766D01* X4671Y11777D01* X4697Y11786D01* X4705Y11790D01* X4712Y11794D01* X4719Y11800D01* X4724Y11807D01* X4728Y11815D01* X4731Y11823D01* X4732Y11832D01* X4732Y11840D01* X4730Y11849D01* X4727Y11857D01* X4722Y11864D01* X4716Y11871D01* X4709Y11876D01* X4702Y11880D01* X4693Y11883D01* X4685Y11884D01* X4676Y11884D01* X4668Y11882D01* X4633Y11870D01* X4625Y11866D01* Y13125D01* X4654Y13115D01* X4663Y13113D01* X4672Y13113D01* X4680Y13115D01* X4688Y13117D01* X4696Y13122D01* X4703Y13127D01* X4709Y13134D01* X4713Y13141D01* X4716Y13149D01* X4718Y13158D01* X4718Y13167D01* X4717Y13175D01* X4714Y13183D01* X4710Y13191D01* X4704Y13198D01* X4697Y13204D01* X4690Y13208D01* X4682Y13211D01* X4656Y13220D01* X4631Y13231D01* X4625Y13234D01* Y13765D01* X4627Y13766D01* X4651Y13777D01* X4677Y13786D01* X4685Y13790D01* X4692Y13794D01* X4699Y13800D01* X4704Y13807D01* X4708Y13815D01* X4711Y13823D01* X4712Y13832D01* X4712Y13840D01* X4710Y13849D01* X4707Y13857D01* X4702Y13864D01* X4696Y13871D01* X4689Y13876D01* X4682Y13880D01* X4673Y13883D01* X4665Y13884D01* X4656Y13884D01* X4648Y13882D01* X4625Y13874D01* Y15118D01* X4634Y15115D01* X4643Y15113D01* X4652Y15113D01* X4660Y15115D01* X4668Y15117D01* X4676Y15122D01* X4683Y15127D01* X4689Y15134D01* X4693Y15141D01* X4696Y15149D01* X4698Y15158D01* X4698Y15167D01* X4697Y15175D01* X4694Y15183D01* X4690Y15191D01* X4684Y15198D01* X4677Y15204D01* X4670Y15208D01* X4662Y15211D01* X4636Y15220D01* X4625Y15225D01* Y15775D01* X4631Y15777D01* X4657Y15786D01* X4665Y15790D01* X4672Y15794D01* X4679Y15800D01* X4684Y15807D01* X4688Y15815D01* X4691Y15823D01* X4692Y15832D01* X4692Y15840D01* X4690Y15849D01* X4687Y15857D01* X4682Y15864D01* X4676Y15871D01* X4669Y15876D01* X4662Y15880D01* X4653Y15883D01* X4645Y15884D01* X4636Y15884D01* X4628Y15882D01* X4625Y15881D01* Y17113D01* X4632Y17113D01* X4640Y17115D01* X4648Y17117D01* X4656Y17122D01* X4663Y17127D01* X4669Y17134D01* X4673Y17141D01* X4676Y17149D01* X4678Y17158D01* X4678Y17167D01* X4677Y17175D01* X4674Y17183D01* X4670Y17191D01* X4664Y17198D01* X4657Y17204D01* X4650Y17208D01* X4642Y17211D01* X4625Y17217D01* Y17782D01* X4637Y17786D01* X4645Y17790D01* X4652Y17794D01* X4659Y17800D01* X4664Y17807D01* X4668Y17815D01* X4671Y17823D01* X4672Y17832D01* X4672Y17840D01* X4670Y17849D01* X4667Y17857D01* X4662Y17864D01* X4656Y17871D01* X4649Y17876D01* X4642Y17880D01* X4633Y17883D01* X4625Y17884D01* Y19116D01* X4628Y19117D01* X4636Y19122D01* X4643Y19127D01* X4649Y19134D01* X4653Y19141D01* X4656Y19149D01* X4658Y19158D01* X4658Y19167D01* X4657Y19175D01* X4654Y19183D01* X4650Y19191D01* X4644Y19198D01* X4637Y19204D01* X4630Y19208D01* X4625Y19210D01* Y19790D01* X4632Y19794D01* X4639Y19800D01* X4644Y19807D01* X4648Y19815D01* X4651Y19823D01* X4652Y19832D01* X4652Y19840D01* X4650Y19849D01* X4647Y19857D01* X4642Y19864D01* X4636Y19871D01* X4629Y19876D01* X4625Y19878D01* Y21130D01* X4629Y21134D01* X4633Y21141D01* X4636Y21149D01* X4638Y21158D01* X4638Y21167D01* X4637Y21175D01* X4634Y21183D01* X4630Y21191D01* X4625Y21197D01* Y21809D01* X4628Y21815D01* X4631Y21823D01* X4632Y21832D01* X4632Y21840D01* X4630Y21849D01* X4627Y21857D01* X4625Y21859D01* Y33138D01* G37* G36* X4884Y40000D02*X5064D01* Y21625D01* X5055Y21651D01* X5040Y21683D01* X5022Y21715D01* X5001Y21744D01* X4977Y21772D01* X4952Y21797D01* X4924Y21820D01* X4894Y21840D01* X4884Y21846D01* Y23165D01* X4909Y23183D01* X4937Y23207D01* X4962Y23232D01* X4985Y23260D01* X5005Y23290D01* X5023Y23322D01* X5037Y23355D01* X5049Y23389D01* X5051Y23398D01* X5051Y23407D01* X5050Y23415D01* X5047Y23423D01* X5042Y23431D01* X5037Y23438D01* X5030Y23444D01* X5023Y23448D01* X5015Y23451D01* X5006Y23453D01* X4997Y23453D01* X4989Y23452D01* X4981Y23449D01* X4973Y23445D01* X4966Y23439D01* X4960Y23433D01* X4956Y23425D01* X4953Y23417D01* X4944Y23391D01* X4933Y23366D01* X4920Y23343D01* X4905Y23320D01* X4888Y23299D01* X4884Y23295D01* Y23704D01* X4884Y23704D01* X4902Y23683D01* X4917Y23661D01* X4931Y23637D01* X4942Y23613D01* X4951Y23587D01* X4955Y23579D01* X4959Y23572D01* X4965Y23565D01* X4972Y23560D01* X4980Y23556D01* X4988Y23553D01* X4997Y23552D01* X5005Y23552D01* X5014Y23554D01* X5022Y23557D01* X5029Y23562D01* X5036Y23568D01* X5041Y23575D01* X5045Y23582D01* X5048Y23591D01* X5049Y23599D01* X5049Y23608D01* X5047Y23617D01* X5035Y23651D01* X5020Y23683D01* X5002Y23715D01* X4981Y23744D01* X4957Y23772D01* X4932Y23797D01* X4904Y23820D01* X4884Y23834D01* Y25180D01* X4889Y25183D01* X4917Y25207D01* X4942Y25232D01* X4965Y25260D01* X4985Y25290D01* X5003Y25322D01* X5017Y25355D01* X5029Y25389D01* X5031Y25398D01* X5031Y25407D01* X5030Y25415D01* X5027Y25423D01* X5022Y25431D01* X5017Y25438D01* X5010Y25444D01* X5003Y25448D01* X4995Y25451D01* X4986Y25453D01* X4977Y25453D01* X4969Y25452D01* X4961Y25449D01* X4953Y25445D01* X4946Y25439D01* X4940Y25433D01* X4936Y25425D01* X4933Y25417D01* X4924Y25391D01* X4913Y25366D01* X4900Y25343D01* X4885Y25320D01* X4884Y25319D01* Y25680D01* X4897Y25661D01* X4911Y25637D01* X4922Y25613D01* X4931Y25587D01* X4935Y25579D01* X4939Y25572D01* X4945Y25565D01* X4952Y25560D01* X4960Y25556D01* X4968Y25553D01* X4977Y25552D01* X4985Y25552D01* X4994Y25554D01* X5002Y25557D01* X5009Y25562D01* X5016Y25568D01* X5021Y25575D01* X5025Y25582D01* X5028Y25591D01* X5029Y25599D01* X5029Y25608D01* X5027Y25617D01* X5015Y25651D01* X5000Y25683D01* X4982Y25715D01* X4961Y25744D01* X4937Y25772D01* X4912Y25797D01* X4884Y25820D01* Y27196D01* X4897Y27207D01* X4922Y27232D01* X4945Y27260D01* X4965Y27290D01* X4983Y27322D01* X4997Y27355D01* X5009Y27389D01* X5011Y27398D01* X5011Y27407D01* X5010Y27415D01* X5007Y27423D01* X5002Y27431D01* X4997Y27438D01* X4990Y27444D01* X4983Y27448D01* X4975Y27451D01* X4966Y27453D01* X4957Y27453D01* X4949Y27452D01* X4941Y27449D01* X4933Y27445D01* X4926Y27439D01* X4920Y27433D01* X4916Y27425D01* X4913Y27417D01* X4904Y27391D01* X4893Y27366D01* X4884Y27350D01* Y27650D01* X4891Y27637D01* X4902Y27613D01* X4911Y27587D01* X4915Y27579D01* X4919Y27572D01* X4925Y27565D01* X4932Y27560D01* X4940Y27556D01* X4948Y27553D01* X4957Y27552D01* X4965Y27552D01* X4974Y27554D01* X4982Y27557D01* X4989Y27562D01* X4996Y27568D01* X5001Y27575D01* X5005Y27582D01* X5008Y27591D01* X5009Y27599D01* X5009Y27608D01* X5007Y27617D01* X4995Y27651D01* X4980Y27683D01* X4962Y27715D01* X4941Y27744D01* X4917Y27772D01* X4892Y27797D01* X4884Y27804D01* Y29214D01* X4902Y29232D01* X4925Y29260D01* X4945Y29290D01* X4963Y29322D01* X4977Y29355D01* X4989Y29389D01* X4991Y29398D01* X4991Y29407D01* X4990Y29415D01* X4987Y29423D01* X4982Y29431D01* X4977Y29438D01* X4970Y29444D01* X4963Y29448D01* X4955Y29451D01* X4946Y29453D01* X4937Y29453D01* X4929Y29452D01* X4921Y29449D01* X4913Y29445D01* X4906Y29439D01* X4900Y29433D01* X4896Y29425D01* X4893Y29417D01* X4884Y29391D01* X4884Y29391D01* Y29608D01* X4891Y29587D01* X4895Y29579D01* X4899Y29572D01* X4905Y29565D01* X4912Y29560D01* X4920Y29556D01* X4928Y29553D01* X4937Y29552D01* X4945Y29552D01* X4954Y29554D01* X4962Y29557D01* X4969Y29562D01* X4976Y29568D01* X4981Y29575D01* X4985Y29582D01* X4988Y29591D01* X4989Y29599D01* X4989Y29608D01* X4987Y29617D01* X4975Y29651D01* X4960Y29683D01* X4942Y29715D01* X4921Y29744D01* X4897Y29772D01* X4884Y29785D01* Y31235D01* X4905Y31260D01* X4925Y31290D01* X4943Y31322D01* X4957Y31355D01* X4969Y31389D01* X4971Y31398D01* X4971Y31407D01* X4970Y31415D01* X4967Y31423D01* X4962Y31431D01* X4957Y31438D01* X4950Y31444D01* X4943Y31448D01* X4935Y31451D01* X4926Y31453D01* X4917Y31453D01* X4909Y31452D01* X4901Y31449D01* X4893Y31445D01* X4886Y31439D01* X4884Y31437D01* Y31567D01* X4885Y31565D01* X4892Y31560D01* X4900Y31556D01* X4908Y31553D01* X4917Y31552D01* X4925Y31552D01* X4934Y31554D01* X4942Y31557D01* X4949Y31562D01* X4956Y31568D01* X4961Y31575D01* X4965Y31582D01* X4968Y31591D01* X4969Y31599D01* X4969Y31608D01* X4967Y31617D01* X4955Y31651D01* X4940Y31683D01* X4922Y31715D01* X4901Y31744D01* X4884Y31764D01* Y33259D01* X4885Y33260D01* X4905Y33290D01* X4923Y33322D01* X4937Y33355D01* X4949Y33389D01* X4951Y33398D01* X4951Y33407D01* X4950Y33415D01* X4947Y33423D01* X4942Y33431D01* X4937Y33438D01* X4930Y33444D01* X4923Y33448D01* X4915Y33451D01* X4906Y33453D01* X4897Y33453D01* X4889Y33452D01* X4884Y33450D01* Y33555D01* X4888Y33553D01* X4897Y33552D01* X4905Y33552D01* X4914Y33554D01* X4922Y33557D01* X4929Y33562D01* X4936Y33568D01* X4941Y33575D01* X4945Y33582D01* X4948Y33591D01* X4949Y33599D01* X4949Y33608D01* X4947Y33617D01* X4935Y33651D01* X4920Y33683D01* X4902Y33715D01* X4884Y33740D01* Y35288D01* X4885Y35290D01* X4903Y35322D01* X4917Y35355D01* X4929Y35389D01* X4931Y35398D01* X4931Y35407D01* X4930Y35415D01* X4927Y35423D01* X4922Y35431D01* X4917Y35438D01* X4910Y35444D01* X4903Y35448D01* X4895Y35451D01* X4886Y35453D01* X4884D01* Y35552D01* X4885D01* X4894Y35554D01* X4902Y35557D01* X4909Y35562D01* X4916Y35568D01* X4921Y35575D01* X4925Y35582D01* X4928Y35591D01* X4929Y35599D01* X4929Y35608D01* X4927Y35617D01* X4915Y35651D01* X4900Y35683D01* X4884Y35711D01* Y37324D01* X4897Y37355D01* X4909Y37389D01* X4911Y37398D01* X4911Y37407D01* X4910Y37415D01* X4907Y37423D01* X4902Y37431D01* X4897Y37438D01* X4890Y37444D01* X4884Y37447D01* Y37559D01* X4889Y37562D01* X4896Y37568D01* X4901Y37575D01* X4905Y37582D01* X4908Y37591D01* X4909Y37599D01* X4909Y37608D01* X4907Y37617D01* X4895Y37651D01* X4884Y37674D01* Y39374D01* X4889Y39389D01* X4891Y39398D01* X4891Y39407D01* X4890Y39415D01* X4887Y39423D01* X4884Y39428D01* Y39580D01* X4885Y39582D01* X4888Y39591D01* X4889Y39599D01* X4889Y39608D01* X4887Y39617D01* X4884Y39625D01* Y40000D01* G37* G36* X5064Y0D02*X4884D01* Y7140D01* X4887Y7135D01* X4893Y7128D01* X4900Y7123D01* X4907Y7119D01* X4916Y7116D01* X4924Y7115D01* X4933Y7115D01* X4941Y7117D01* X4976Y7129D01* X5008Y7144D01* X5040Y7162D01* X5064Y7180D01* Y5834D01* X5054Y5840D01* X5022Y5858D01* X4989Y5873D01* X4955Y5884D01* X4946Y5886D01* X4937Y5886D01* X4929Y5885D01* X4921Y5882D01* X4913Y5878D01* X4906Y5872D01* X4900Y5865D01* X4896Y5858D01* X4893Y5850D01* X4891Y5841D01* X4891Y5833D01* X4892Y5824D01* X4895Y5816D01* X4899Y5808D01* X4905Y5801D01* X4912Y5796D01* X4919Y5791D01* X4927Y5788D01* X4953Y5779D01* X4978Y5768D01* X5001Y5755D01* X5024Y5740D01* X5045Y5723D01* X5064Y5704D01* Y5295D01* X5049Y5280D01* X5028Y5262D01* X5006Y5247D01* X4982Y5233D01* X4958Y5222D01* X4932Y5213D01* X4924Y5209D01* X4917Y5205D01* X4910Y5199D01* X4905Y5192D01* X4901Y5184D01* X4898Y5176D01* X4897Y5167D01* X4897Y5159D01* X4899Y5150D01* X4902Y5142D01* X4907Y5135D01* X4913Y5128D01* X4920Y5123D01* X4927Y5119D01* X4936Y5116D01* X4944Y5115D01* X4953Y5115D01* X4961Y5117D01* X4996Y5129D01* X5028Y5144D01* X5060Y5162D01* X5064Y5165D01* Y3846D01* X5042Y3858D01* X5009Y3873D01* X4975Y3884D01* X4966Y3886D01* X4957Y3886D01* X4949Y3885D01* X4941Y3882D01* X4933Y3878D01* X4926Y3872D01* X4920Y3865D01* X4916Y3858D01* X4913Y3850D01* X4911Y3841D01* X4911Y3833D01* X4912Y3824D01* X4915Y3816D01* X4919Y3808D01* X4925Y3801D01* X4932Y3796D01* X4939Y3791D01* X4947Y3788D01* X4973Y3779D01* X4998Y3768D01* X5021Y3755D01* X5044Y3740D01* X5064Y3724D01* Y3276D01* X5048Y3262D01* X5026Y3247D01* X5002Y3233D01* X4978Y3222D01* X4952Y3213D01* X4944Y3209D01* X4937Y3205D01* X4930Y3199D01* X4925Y3192D01* X4921Y3184D01* X4918Y3176D01* X4917Y3167D01* X4917Y3159D01* X4919Y3150D01* X4922Y3142D01* X4927Y3135D01* X4933Y3128D01* X4940Y3123D01* X4947Y3119D01* X4956Y3116D01* X4964Y3115D01* X4973Y3115D01* X4981Y3117D01* X5016Y3129D01* X5048Y3144D01* X5064Y3153D01* Y1857D01* X5062Y1858D01* X5029Y1873D01* X4995Y1884D01* X4986Y1886D01* X4977Y1886D01* X4969Y1885D01* X4961Y1882D01* X4953Y1878D01* X4946Y1872D01* X4940Y1865D01* X4936Y1858D01* X4933Y1850D01* X4931Y1841D01* X4931Y1833D01* X4932Y1824D01* X4935Y1816D01* X4939Y1808D01* X4945Y1801D01* X4952Y1796D01* X4959Y1791D01* X4967Y1788D01* X4993Y1779D01* X5018Y1768D01* X5041Y1755D01* X5064Y1740D01* Y1259D01* X5046Y1247D01* X5022Y1233D01* X4998Y1222D01* X4972Y1213D01* X4964Y1209D01* X4957Y1205D01* X4950Y1199D01* X4945Y1192D01* X4941Y1184D01* X4938Y1176D01* X4937Y1167D01* X4937Y1159D01* X4939Y1150D01* X4942Y1142D01* X4947Y1135D01* X4953Y1128D01* X4960Y1123D01* X4967Y1119D01* X4976Y1116D01* X4984Y1115D01* X4993Y1115D01* X5001Y1117D01* X5036Y1129D01* X5064Y1142D01* Y0D01* G37* G36* Y7319D02*X5048Y7299D01* X5029Y7280D01* X5008Y7262D01* X4986Y7247D01* X4962Y7233D01* X4938Y7222D01* X4912Y7213D01* X4904Y7209D01* X4897Y7205D01* X4890Y7199D01* X4885Y7192D01* X4884Y7190D01* Y7802D01* X4885Y7801D01* X4892Y7796D01* X4899Y7791D01* X4907Y7788D01* X4933Y7779D01* X4958Y7768D01* X4981Y7755D01* X5004Y7740D01* X5025Y7723D01* X5044Y7704D01* X5062Y7683D01* X5064Y7680D01* Y7319D01* G37* G36* Y7820D02*X5064Y7820D01* X5034Y7840D01* X5002Y7858D01* X4969Y7873D01* X4935Y7884D01* X4926Y7886D01* X4917Y7886D01* X4909Y7885D01* X4901Y7882D01* X4893Y7878D01* X4886Y7872D01* X4884Y7870D01* Y9121D01* X4887Y9119D01* X4896Y9116D01* X4904Y9115D01* X4913Y9115D01* X4921Y9117D01* X4956Y9129D01* X4988Y9144D01* X5020Y9162D01* X5049Y9183D01* X5064Y9196D01* Y7820D01* G37* G36* Y9350D02*X5060Y9343D01* X5045Y9320D01* X5028Y9299D01* X5009Y9280D01* X4988Y9262D01* X4966Y9247D01* X4942Y9233D01* X4918Y9222D01* X4892Y9213D01* X4884Y9209D01* X4884Y9209D01* Y9789D01* X4887Y9788D01* X4913Y9779D01* X4938Y9768D01* X4961Y9755D01* X4984Y9740D01* X5005Y9723D01* X5024Y9704D01* X5042Y9683D01* X5057Y9661D01* X5064Y9650D01* Y9350D01* G37* G36* Y9804D02*X5044Y9820D01* X5014Y9840D01* X4982Y9858D01* X4949Y9873D01* X4915Y9884D01* X4906Y9886D01* X4897Y9886D01* X4889Y9885D01* X4884Y9883D01* Y11115D01* X4884D01* X4893Y11115D01* X4901Y11117D01* X4936Y11129D01* X4968Y11144D01* X5000Y11162D01* X5029Y11183D01* X5057Y11207D01* X5064Y11214D01* Y9804D01* G37* G36* Y11391D02*X5053Y11366D01* X5040Y11343D01* X5025Y11320D01* X5008Y11299D01* X4989Y11280D01* X4968Y11262D01* X4946Y11247D01* X4922Y11233D01* X4898Y11222D01* X4884Y11217D01* Y11782D01* X4893Y11779D01* X4918Y11768D01* X4941Y11755D01* X4964Y11740D01* X4985Y11723D01* X5004Y11704D01* X5022Y11683D01* X5037Y11661D01* X5051Y11637D01* X5062Y11613D01* X5064Y11608D01* Y11391D01* G37* G36* Y11785D02*X5052Y11797D01* X5024Y11820D01* X4994Y11840D01* X4962Y11858D01* X4929Y11873D01* X4895Y11884D01* X4886Y11886D01* X4884D01* Y13118D01* X4916Y13129D01* X4948Y13144D01* X4980Y13162D01* X5009Y13183D01* X5037Y13207D01* X5062Y13232D01* X5064Y13235D01* Y11785D01* G37* G36* Y13437D02*X5060Y13433D01* X5056Y13425D01* X5053Y13417D01* X5044Y13391D01* X5033Y13366D01* X5020Y13343D01* X5005Y13320D01* X4988Y13299D01* X4969Y13280D01* X4948Y13262D01* X4926Y13247D01* X4902Y13233D01* X4884Y13225D01* Y13774D01* X4898Y13768D01* X4921Y13755D01* X4944Y13740D01* X4965Y13723D01* X4984Y13704D01* X5002Y13683D01* X5017Y13661D01* X5031Y13637D01* X5042Y13613D01* X5051Y13587D01* X5055Y13579D01* X5059Y13572D01* X5064Y13567D01* Y13437D01* G37* G36* Y13764D02*X5057Y13772D01* X5032Y13797D01* X5004Y13820D01* X4974Y13840D01* X4942Y13858D01* X4909Y13873D01* X4884Y13881D01* Y15125D01* X4896Y15129D01* X4928Y15144D01* X4960Y15162D01* X4989Y15183D01* X5017Y15207D01* X5042Y15232D01* X5064Y15259D01* Y13764D01* G37* G36* Y15450D02*X5061Y15449D01* X5053Y15445D01* X5046Y15439D01* X5040Y15433D01* X5036Y15425D01* X5033Y15417D01* X5024Y15391D01* X5013Y15366D01* X5000Y15343D01* X4985Y15320D01* X4968Y15299D01* X4949Y15280D01* X4928Y15262D01* X4906Y15247D01* X4884Y15234D01* Y15765D01* X4901Y15755D01* X4924Y15740D01* X4945Y15723D01* X4964Y15704D01* X4982Y15683D01* X4997Y15661D01* X5011Y15637D01* X5022Y15613D01* X5031Y15587D01* X5035Y15579D01* X5039Y15572D01* X5045Y15565D01* X5052Y15560D01* X5060Y15556D01* X5064Y15555D01* Y15450D01* G37* G36* Y15740D02*X5061Y15744D01* X5037Y15772D01* X5012Y15797D01* X4984Y15820D01* X4954Y15840D01* X4922Y15858D01* X4889Y15873D01* X4884Y15874D01* Y17133D01* X4908Y17144D01* X4940Y17162D01* X4969Y17183D01* X4997Y17207D01* X5022Y17232D01* X5045Y17260D01* X5064Y17288D01* Y15740D01* G37* G36* Y17453D02*X5057Y17453D01* X5049Y17452D01* X5041Y17449D01* X5033Y17445D01* X5026Y17439D01* X5020Y17433D01* X5016Y17425D01* X5013Y17417D01* X5004Y17391D01* X4993Y17366D01* X4980Y17343D01* X4965Y17320D01* X4948Y17299D01* X4929Y17280D01* X4908Y17262D01* X4886Y17247D01* X4884Y17246D01* Y17754D01* X4904Y17740D01* X4925Y17723D01* X4944Y17704D01* X4962Y17683D01* X4977Y17661D01* X4991Y17637D01* X5002Y17613D01* X5011Y17587D01* X5015Y17579D01* X5019Y17572D01* X5025Y17565D01* X5032Y17560D01* X5040Y17556D01* X5048Y17553D01* X5057Y17552D01* X5064Y17552D01* Y17453D01* G37* G36* Y17711D02*X5062Y17715D01* X5041Y17744D01* X5017Y17772D01* X4992Y17797D01* X4964Y17820D01* X4934Y17840D01* X4902Y17858D01* X4884Y17866D01* Y19142D01* X4888Y19144D01* X4920Y19162D01* X4949Y19183D01* X4977Y19207D01* X5002Y19232D01* X5025Y19260D01* X5045Y19290D01* X5063Y19322D01* X5064Y19324D01* Y17711D01* G37* G36* Y19447D02*X5063Y19448D01* X5055Y19451D01* X5046Y19453D01* X5037Y19453D01* X5029Y19452D01* X5021Y19449D01* X5013Y19445D01* X5006Y19439D01* X5000Y19433D01* X4996Y19425D01* X4993Y19417D01* X4984Y19391D01* X4973Y19366D01* X4960Y19343D01* X4945Y19320D01* X4928Y19299D01* X4909Y19280D01* X4888Y19262D01* X4884Y19259D01* Y19740D01* X4905Y19723D01* X4924Y19704D01* X4942Y19683D01* X4957Y19661D01* X4971Y19637D01* X4982Y19613D01* X4991Y19587D01* X4995Y19579D01* X4999Y19572D01* X5005Y19565D01* X5012Y19560D01* X5020Y19556D01* X5028Y19553D01* X5037Y19552D01* X5045Y19552D01* X5054Y19554D01* X5062Y19557D01* X5064Y19559D01* Y19447D01* G37* G36* Y19674D02*X5060Y19683D01* X5042Y19715D01* X5021Y19744D01* X4997Y19772D01* X4972Y19797D01* X4944Y19820D01* X4914Y19840D01* X4884Y19857D01* Y21153D01* X4900Y21162D01* X4929Y21183D01* X4957Y21207D01* X4982Y21232D01* X5005Y21260D01* X5025Y21290D01* X5043Y21322D01* X5057Y21355D01* X5064Y21374D01* Y19674D01* G37* G36* Y21428D02*X5062Y21431D01* X5057Y21438D01* X5050Y21444D01* X5043Y21448D01* X5035Y21451D01* X5026Y21453D01* X5017Y21453D01* X5009Y21452D01* X5001Y21449D01* X4993Y21445D01* X4986Y21439D01* X4980Y21433D01* X4976Y21425D01* X4973Y21417D01* X4964Y21391D01* X4953Y21366D01* X4940Y21343D01* X4925Y21320D01* X4908Y21299D01* X4889Y21280D01* X4884Y21276D01* Y21724D01* X4885Y21723D01* X4904Y21704D01* X4922Y21683D01* X4937Y21661D01* X4951Y21637D01* X4962Y21613D01* X4971Y21587D01* X4975Y21579D01* X4979Y21572D01* X4985Y21565D01* X4992Y21560D01* X5000Y21556D01* X5008Y21553D01* X5017Y21552D01* X5025Y21552D01* X5034Y21554D01* X5042Y21557D01* X5049Y21562D01* X5056Y21568D01* X5061Y21575D01* X5064Y21580D01* Y21428D01* G37* G36* Y40000D02*X6445D01* Y39859D01* X6442Y39864D01* X6436Y39871D01* X6429Y39876D01* X6422Y39880D01* X6413Y39883D01* X6405Y39884D01* X6396Y39884D01* X6388Y39882D01* X6353Y39870D01* X6321Y39855D01* X6289Y39837D01* X6260Y39816D01* X6232Y39793D01* X6207Y39767D01* X6184Y39739D01* X6164Y39709D01* X6146Y39677D01* X6132Y39644D01* X6120Y39610D01* X6118Y39601D01* X6118Y39593D01* X6119Y39584D01* X6122Y39576D01* X6127Y39568D01* X6132Y39561D01* X6139Y39556D01* X6146Y39551D01* X6154Y39548D01* X6163Y39546D01* X6172Y39546D01* X6180Y39547D01* X6188Y39550D01* X6196Y39555D01* X6203Y39560D01* X6209Y39567D01* X6213Y39574D01* X6216Y39582D01* X6225Y39608D01* X6236Y39633D01* X6249Y39657D01* X6264Y39679D01* X6281Y39700D01* X6300Y39719D01* X6321Y39737D01* X6343Y39752D01* X6367Y39766D01* X6391Y39777D01* X6417Y39786D01* X6425Y39790D01* X6432Y39794D01* X6439Y39800D01* X6444Y39807D01* X6445Y39809D01* Y39197D01* X6444Y39198D01* X6437Y39204D01* X6430Y39208D01* X6422Y39211D01* X6396Y39220D01* X6371Y39231D01* X6348Y39244D01* X6325Y39259D01* X6304Y39276D01* X6285Y39295D01* X6267Y39316D01* X6252Y39338D01* X6238Y39362D01* X6227Y39386D01* X6218Y39412D01* X6214Y39420D01* X6210Y39427D01* X6204Y39434D01* X6197Y39439D01* X6189Y39443D01* X6181Y39446D01* X6172Y39447D01* X6164Y39447D01* X6155Y39445D01* X6147Y39442D01* X6140Y39437D01* X6133Y39431D01* X6128Y39424D01* X6124Y39417D01* X6121Y39409D01* X6120Y39400D01* X6120Y39391D01* X6122Y39383D01* X6134Y39349D01* X6149Y39316D01* X6167Y39284D01* X6188Y39255D01* X6212Y39227D01* X6237Y39202D01* X6265Y39179D01* X6295Y39159D01* X6327Y39141D01* X6360Y39127D01* X6394Y39115D01* X6403Y39113D01* X6412Y39113D01* X6420Y39115D01* X6428Y39117D01* X6436Y39122D01* X6443Y39127D01* X6445Y39130D01* Y37878D01* X6442Y37880D01* X6433Y37883D01* X6425Y37884D01* X6416Y37884D01* X6408Y37882D01* X6373Y37870D01* X6341Y37855D01* X6309Y37837D01* X6280Y37816D01* X6252Y37793D01* X6227Y37767D01* X6204Y37739D01* X6184Y37709D01* X6166Y37677D01* X6152Y37644D01* X6140Y37610D01* X6138Y37601D01* X6138Y37593D01* X6139Y37584D01* X6142Y37576D01* X6147Y37568D01* X6152Y37561D01* X6159Y37556D01* X6166Y37551D01* X6174Y37548D01* X6183Y37546D01* X6192Y37546D01* X6200Y37547D01* X6208Y37550D01* X6216Y37555D01* X6223Y37560D01* X6229Y37567D01* X6233Y37574D01* X6236Y37582D01* X6245Y37608D01* X6256Y37633D01* X6269Y37657D01* X6284Y37679D01* X6301Y37700D01* X6320Y37719D01* X6341Y37737D01* X6363Y37752D01* X6387Y37766D01* X6411Y37777D01* X6437Y37786D01* X6445Y37790D01* X6445Y37790D01* Y37210D01* X6442Y37211D01* X6416Y37220D01* X6391Y37231D01* X6368Y37244D01* X6345Y37259D01* X6324Y37276D01* X6305Y37295D01* X6287Y37316D01* X6272Y37338D01* X6258Y37362D01* X6247Y37386D01* X6238Y37412D01* X6234Y37420D01* X6230Y37427D01* X6224Y37434D01* X6217Y37439D01* X6209Y37443D01* X6201Y37446D01* X6192Y37447D01* X6184Y37447D01* X6175Y37445D01* X6167Y37442D01* X6160Y37437D01* X6153Y37431D01* X6148Y37424D01* X6144Y37417D01* X6141Y37409D01* X6140Y37400D01* X6140Y37391D01* X6142Y37383D01* X6154Y37349D01* X6169Y37316D01* X6187Y37284D01* X6208Y37255D01* X6232Y37227D01* X6257Y37202D01* X6285Y37179D01* X6315Y37159D01* X6347Y37141D01* X6380Y37127D01* X6414Y37115D01* X6423Y37113D01* X6432Y37113D01* X6440Y37115D01* X6445Y37116D01* Y35884D01* X6445Y35884D01* X6436Y35884D01* X6428Y35882D01* X6393Y35870D01* X6361Y35855D01* X6329Y35837D01* X6300Y35816D01* X6272Y35793D01* X6247Y35767D01* X6224Y35739D01* X6204Y35709D01* X6186Y35677D01* X6172Y35644D01* X6160Y35610D01* X6158Y35601D01* X6158Y35593D01* X6159Y35584D01* X6162Y35576D01* X6167Y35568D01* X6172Y35561D01* X6179Y35556D01* X6186Y35551D01* X6194Y35548D01* X6203Y35546D01* X6212Y35546D01* X6220Y35547D01* X6228Y35550D01* X6236Y35555D01* X6243Y35560D01* X6249Y35567D01* X6253Y35574D01* X6256Y35582D01* X6265Y35608D01* X6276Y35633D01* X6289Y35657D01* X6304Y35679D01* X6321Y35700D01* X6340Y35719D01* X6361Y35737D01* X6383Y35752D01* X6407Y35766D01* X6431Y35777D01* X6445Y35782D01* Y35217D01* X6436Y35220D01* X6411Y35231D01* X6388Y35244D01* X6365Y35259D01* X6344Y35276D01* X6325Y35295D01* X6307Y35316D01* X6292Y35338D01* X6278Y35362D01* X6267Y35386D01* X6258Y35412D01* X6254Y35420D01* X6250Y35427D01* X6244Y35434D01* X6237Y35439D01* X6229Y35443D01* X6221Y35446D01* X6212Y35447D01* X6204Y35447D01* X6195Y35445D01* X6187Y35442D01* X6180Y35437D01* X6173Y35431D01* X6168Y35424D01* X6164Y35417D01* X6161Y35409D01* X6160Y35400D01* X6160Y35391D01* X6162Y35383D01* X6174Y35349D01* X6189Y35316D01* X6207Y35284D01* X6228Y35255D01* X6252Y35227D01* X6277Y35202D01* X6305Y35179D01* X6335Y35159D01* X6367Y35141D01* X6400Y35127D01* X6434Y35115D01* X6443Y35113D01* X6445D01* Y33881D01* X6413Y33870D01* X6381Y33855D01* X6349Y33837D01* X6320Y33816D01* X6292Y33793D01* X6267Y33767D01* X6244Y33739D01* X6224Y33709D01* X6206Y33677D01* X6192Y33644D01* X6180Y33610D01* X6178Y33601D01* X6178Y33593D01* X6179Y33584D01* X6182Y33576D01* X6187Y33568D01* X6192Y33561D01* X6199Y33556D01* X6206Y33551D01* X6214Y33548D01* X6223Y33546D01* X6232Y33546D01* X6240Y33547D01* X6248Y33550D01* X6256Y33555D01* X6263Y33560D01* X6269Y33567D01* X6273Y33574D01* X6276Y33582D01* X6285Y33608D01* X6296Y33633D01* X6309Y33657D01* X6324Y33679D01* X6341Y33700D01* X6360Y33719D01* X6381Y33737D01* X6403Y33752D01* X6427Y33766D01* X6445Y33775D01* Y33225D01* X6431Y33231D01* X6408Y33244D01* X6385Y33259D01* X6364Y33276D01* X6345Y33295D01* X6327Y33316D01* X6312Y33338D01* X6298Y33362D01* X6287Y33386D01* X6278Y33412D01* X6274Y33420D01* X6270Y33427D01* X6264Y33434D01* X6257Y33439D01* X6249Y33443D01* X6241Y33446D01* X6232Y33447D01* X6224Y33447D01* X6215Y33445D01* X6207Y33442D01* X6200Y33437D01* X6193Y33431D01* X6188Y33424D01* X6184Y33417D01* X6181Y33409D01* X6180Y33400D01* X6180Y33391D01* X6182Y33383D01* X6194Y33349D01* X6209Y33316D01* X6227Y33284D01* X6248Y33255D01* X6272Y33227D01* X6297Y33202D01* X6325Y33179D01* X6355Y33159D01* X6387Y33141D01* X6420Y33127D01* X6445Y33118D01* Y31874D01* X6433Y31870D01* X6401Y31855D01* X6369Y31837D01* X6340Y31816D01* X6312Y31793D01* X6287Y31767D01* X6264Y31739D01* X6244Y31709D01* X6226Y31677D01* X6212Y31644D01* X6200Y31610D01* X6198Y31601D01* X6198Y31593D01* X6199Y31584D01* X6202Y31576D01* X6207Y31568D01* X6212Y31561D01* X6219Y31556D01* X6226Y31551D01* X6234Y31548D01* X6243Y31546D01* X6252Y31546D01* X6260Y31547D01* X6268Y31550D01* X6276Y31555D01* X6283Y31560D01* X6289Y31567D01* X6293Y31574D01* X6296Y31582D01* X6305Y31608D01* X6316Y31633D01* X6329Y31657D01* X6344Y31679D01* X6361Y31700D01* X6380Y31719D01* X6401Y31737D01* X6423Y31752D01* X6445Y31765D01* Y31234D01* X6428Y31244D01* X6405Y31259D01* X6384Y31276D01* X6365Y31295D01* X6347Y31316D01* X6332Y31338D01* X6318Y31362D01* X6307Y31386D01* X6298Y31412D01* X6294Y31420D01* X6290Y31427D01* X6284Y31434D01* X6277Y31439D01* X6269Y31443D01* X6261Y31446D01* X6252Y31447D01* X6244Y31447D01* X6235Y31445D01* X6227Y31442D01* X6220Y31437D01* X6213Y31431D01* X6208Y31424D01* X6204Y31417D01* X6201Y31409D01* X6200Y31400D01* X6200Y31391D01* X6202Y31383D01* X6214Y31349D01* X6229Y31316D01* X6247Y31284D01* X6268Y31255D01* X6292Y31227D01* X6317Y31202D01* X6345Y31179D01* X6375Y31159D01* X6407Y31141D01* X6440Y31127D01* X6445Y31125D01* Y29866D01* X6421Y29855D01* X6389Y29837D01* X6360Y29816D01* X6332Y29793D01* X6307Y29767D01* X6284Y29739D01* X6264Y29709D01* X6246Y29677D01* X6232Y29644D01* X6220Y29610D01* X6218Y29601D01* X6218Y29593D01* X6219Y29584D01* X6222Y29576D01* X6227Y29568D01* X6232Y29561D01* X6239Y29556D01* X6246Y29551D01* X6254Y29548D01* X6263Y29546D01* X6272Y29546D01* X6280Y29547D01* X6288Y29550D01* X6296Y29555D01* X6303Y29560D01* X6309Y29567D01* X6313Y29574D01* X6316Y29582D01* X6325Y29608D01* X6336Y29633D01* X6349Y29657D01* X6364Y29679D01* X6381Y29700D01* X6400Y29719D01* X6421Y29737D01* X6443Y29752D01* X6445Y29754D01* Y29246D01* X6425Y29259D01* X6404Y29276D01* X6385Y29295D01* X6367Y29316D01* X6352Y29338D01* X6338Y29362D01* X6327Y29386D01* X6318Y29412D01* X6314Y29420D01* X6310Y29427D01* X6304Y29434D01* X6297Y29439D01* X6289Y29443D01* X6281Y29446D01* X6272Y29447D01* X6264Y29447D01* X6255Y29445D01* X6247Y29442D01* X6240Y29437D01* X6233Y29431D01* X6228Y29424D01* X6224Y29417D01* X6221Y29409D01* X6220Y29400D01* X6220Y29391D01* X6222Y29383D01* X6234Y29349D01* X6249Y29316D01* X6267Y29284D01* X6288Y29255D01* X6312Y29227D01* X6337Y29202D01* X6365Y29179D01* X6395Y29159D01* X6427Y29141D01* X6445Y29133D01* Y27857D01* X6441Y27855D01* X6409Y27837D01* X6380Y27816D01* X6352Y27793D01* X6327Y27767D01* X6304Y27739D01* X6284Y27709D01* X6266Y27677D01* X6252Y27644D01* X6240Y27610D01* X6238Y27601D01* X6238Y27593D01* X6239Y27584D01* X6242Y27576D01* X6247Y27568D01* X6252Y27561D01* X6259Y27556D01* X6266Y27551D01* X6274Y27548D01* X6283Y27546D01* X6292Y27546D01* X6300Y27547D01* X6308Y27550D01* X6316Y27555D01* X6323Y27560D01* X6329Y27567D01* X6333Y27574D01* X6336Y27582D01* X6345Y27608D01* X6356Y27633D01* X6369Y27657D01* X6384Y27679D01* X6401Y27700D01* X6420Y27719D01* X6441Y27737D01* X6445Y27740D01* Y27259D01* X6445Y27259D01* X6424Y27276D01* X6405Y27295D01* X6387Y27316D01* X6372Y27338D01* X6358Y27362D01* X6347Y27386D01* X6338Y27412D01* X6334Y27420D01* X6330Y27427D01* X6324Y27434D01* X6317Y27439D01* X6309Y27443D01* X6301Y27446D01* X6292Y27447D01* X6284Y27447D01* X6275Y27445D01* X6267Y27442D01* X6260Y27437D01* X6253Y27431D01* X6248Y27424D01* X6244Y27417D01* X6241Y27409D01* X6240Y27400D01* X6240Y27391D01* X6242Y27383D01* X6254Y27349D01* X6269Y27316D01* X6287Y27284D01* X6308Y27255D01* X6332Y27227D01* X6357Y27202D01* X6385Y27179D01* X6415Y27159D01* X6445Y27142D01* Y25846D01* X6429Y25837D01* X6400Y25816D01* X6372Y25793D01* X6347Y25767D01* X6324Y25739D01* X6304Y25709D01* X6286Y25677D01* X6272Y25644D01* X6260Y25610D01* X6258Y25601D01* X6258Y25593D01* X6259Y25584D01* X6262Y25576D01* X6267Y25568D01* X6272Y25561D01* X6279Y25556D01* X6286Y25551D01* X6294Y25548D01* X6303Y25546D01* X6312Y25546D01* X6320Y25547D01* X6328Y25550D01* X6336Y25555D01* X6343Y25560D01* X6349Y25567D01* X6353Y25574D01* X6356Y25582D01* X6365Y25608D01* X6376Y25633D01* X6389Y25657D01* X6404Y25679D01* X6421Y25700D01* X6440Y25719D01* X6445Y25723D01* Y25276D01* X6444Y25276D01* X6425Y25295D01* X6407Y25316D01* X6392Y25338D01* X6378Y25362D01* X6367Y25386D01* X6358Y25412D01* X6354Y25420D01* X6350Y25427D01* X6344Y25434D01* X6337Y25439D01* X6329Y25443D01* X6321Y25446D01* X6312Y25447D01* X6304Y25447D01* X6295Y25445D01* X6287Y25442D01* X6280Y25437D01* X6273Y25431D01* X6268Y25424D01* X6264Y25417D01* X6261Y25409D01* X6260Y25400D01* X6260Y25391D01* X6262Y25383D01* X6274Y25349D01* X6289Y25316D01* X6307Y25284D01* X6328Y25255D01* X6352Y25227D01* X6377Y25202D01* X6405Y25179D01* X6435Y25159D01* X6445Y25153D01* Y23834D01* X6420Y23816D01* X6392Y23793D01* X6367Y23767D01* X6344Y23739D01* X6324Y23709D01* X6306Y23677D01* X6292Y23644D01* X6280Y23610D01* X6278Y23601D01* X6278Y23593D01* X6279Y23584D01* X6282Y23576D01* X6287Y23568D01* X6292Y23561D01* X6299Y23556D01* X6306Y23551D01* X6314Y23548D01* X6323Y23546D01* X6332Y23546D01* X6340Y23547D01* X6348Y23550D01* X6356Y23555D01* X6363Y23560D01* X6369Y23567D01* X6373Y23574D01* X6376Y23582D01* X6385Y23608D01* X6396Y23633D01* X6409Y23657D01* X6424Y23679D01* X6441Y23700D01* X6445Y23704D01* Y23295D01* X6445Y23295D01* X6427Y23316D01* X6412Y23338D01* X6398Y23362D01* X6387Y23386D01* X6378Y23412D01* X6374Y23420D01* X6370Y23427D01* X6364Y23434D01* X6357Y23439D01* X6349Y23443D01* X6341Y23446D01* X6332Y23447D01* X6324Y23447D01* X6315Y23445D01* X6307Y23442D01* X6300Y23437D01* X6293Y23431D01* X6288Y23424D01* X6284Y23417D01* X6281Y23409D01* X6280Y23400D01* X6280Y23391D01* X6282Y23383D01* X6294Y23349D01* X6309Y23316D01* X6327Y23284D01* X6348Y23255D01* X6372Y23227D01* X6397Y23202D01* X6425Y23179D01* X6445Y23166D01* Y21820D01* X6440Y21816D01* X6412Y21793D01* X6387Y21767D01* X6364Y21739D01* X6344Y21709D01* X6326Y21677D01* X6312Y21644D01* X6300Y21610D01* X6298Y21601D01* X6298Y21593D01* X6299Y21584D01* X6302Y21576D01* X6307Y21568D01* X6312Y21561D01* X6319Y21556D01* X6326Y21551D01* X6334Y21548D01* X6343Y21546D01* X6352Y21546D01* X6360Y21547D01* X6368Y21550D01* X6376Y21555D01* X6383Y21560D01* X6389Y21567D01* X6393Y21574D01* X6396Y21582D01* X6405Y21608D01* X6416Y21633D01* X6429Y21657D01* X6444Y21679D01* X6445Y21680D01* Y21319D01* X6432Y21338D01* X6418Y21362D01* X6407Y21386D01* X6398Y21412D01* X6394Y21420D01* X6390Y21427D01* X6384Y21434D01* X6377Y21439D01* X6369Y21443D01* X6361Y21446D01* X6352Y21447D01* X6344Y21447D01* X6335Y21445D01* X6327Y21442D01* X6320Y21437D01* X6313Y21431D01* X6308Y21424D01* X6304Y21417D01* X6301Y21409D01* X6300Y21400D01* X6300Y21391D01* X6302Y21383D01* X6314Y21349D01* X6329Y21316D01* X6347Y21284D01* X6368Y21255D01* X6392Y21227D01* X6417Y21202D01* X6445Y21179D01* Y19804D01* X6432Y19793D01* X6407Y19767D01* X6384Y19739D01* X6364Y19709D01* X6346Y19677D01* X6332Y19644D01* X6320Y19610D01* X6318Y19601D01* X6318Y19593D01* X6319Y19584D01* X6322Y19576D01* X6327Y19568D01* X6332Y19561D01* X6339Y19556D01* X6346Y19551D01* X6354Y19548D01* X6363Y19546D01* X6372Y19546D01* X6380Y19547D01* X6388Y19550D01* X6396Y19555D01* X6403Y19560D01* X6409Y19567D01* X6413Y19574D01* X6416Y19582D01* X6425Y19608D01* X6436Y19633D01* X6445Y19650D01* Y19349D01* X6438Y19362D01* X6427Y19386D01* X6418Y19412D01* X6414Y19420D01* X6410Y19427D01* X6404Y19434D01* X6397Y19439D01* X6389Y19443D01* X6381Y19446D01* X6372Y19447D01* X6364Y19447D01* X6355Y19445D01* X6347Y19442D01* X6340Y19437D01* X6333Y19431D01* X6328Y19424D01* X6324Y19417D01* X6321Y19409D01* X6320Y19400D01* X6320Y19391D01* X6322Y19383D01* X6334Y19349D01* X6349Y19316D01* X6367Y19284D01* X6388Y19255D01* X6412Y19227D01* X6437Y19202D01* X6445Y19196D01* Y17785D01* X6427Y17767D01* X6404Y17739D01* X6384Y17709D01* X6366Y17677D01* X6352Y17644D01* X6340Y17610D01* X6338Y17601D01* X6338Y17593D01* X6339Y17584D01* X6342Y17576D01* X6347Y17568D01* X6352Y17561D01* X6359Y17556D01* X6366Y17551D01* X6374Y17548D01* X6383Y17546D01* X6392Y17546D01* X6400Y17547D01* X6408Y17550D01* X6416Y17555D01* X6423Y17560D01* X6429Y17567D01* X6433Y17574D01* X6436Y17582D01* X6445Y17608D01* X6445Y17609D01* Y17391D01* X6438Y17412D01* X6434Y17420D01* X6430Y17427D01* X6424Y17434D01* X6417Y17439D01* X6409Y17443D01* X6401Y17446D01* X6392Y17447D01* X6384Y17447D01* X6375Y17445D01* X6367Y17442D01* X6360Y17437D01* X6353Y17431D01* X6348Y17424D01* X6344Y17417D01* X6341Y17409D01* X6340Y17400D01* X6340Y17391D01* X6342Y17383D01* X6354Y17349D01* X6369Y17316D01* X6387Y17284D01* X6408Y17255D01* X6432Y17227D01* X6445Y17214D01* Y15765D01* X6424Y15739D01* X6404Y15709D01* X6386Y15677D01* X6372Y15644D01* X6360Y15610D01* X6358Y15601D01* X6358Y15593D01* X6359Y15584D01* X6362Y15576D01* X6367Y15568D01* X6372Y15561D01* X6379Y15556D01* X6386Y15551D01* X6394Y15548D01* X6403Y15546D01* X6412Y15546D01* X6420Y15547D01* X6428Y15550D01* X6436Y15555D01* X6443Y15560D01* X6445Y15563D01* Y15432D01* X6444Y15434D01* X6437Y15439D01* X6429Y15443D01* X6421Y15446D01* X6412Y15447D01* X6404Y15447D01* X6395Y15445D01* X6387Y15442D01* X6380Y15437D01* X6373Y15431D01* X6368Y15424D01* X6364Y15417D01* X6361Y15409D01* X6360Y15400D01* X6360Y15391D01* X6362Y15383D01* X6374Y15349D01* X6389Y15316D01* X6407Y15284D01* X6428Y15255D01* X6445Y15235D01* Y13740D01* X6444Y13739D01* X6424Y13709D01* X6406Y13677D01* X6392Y13644D01* X6380Y13610D01* X6378Y13601D01* X6378Y13593D01* X6379Y13584D01* X6382Y13576D01* X6387Y13568D01* X6392Y13561D01* X6399Y13556D01* X6406Y13551D01* X6414Y13548D01* X6423Y13546D01* X6432Y13546D01* X6440Y13547D01* X6445Y13549D01* Y13445D01* X6441Y13446D01* X6432Y13447D01* X6424Y13447D01* X6415Y13445D01* X6407Y13442D01* X6400Y13437D01* X6393Y13431D01* X6388Y13424D01* X6384Y13417D01* X6381Y13409D01* X6380Y13400D01* X6380Y13391D01* X6382Y13383D01* X6394Y13349D01* X6409Y13316D01* X6427Y13284D01* X6445Y13259D01* Y11711D01* X6444Y11709D01* X6426Y11677D01* X6412Y11644D01* X6400Y11610D01* X6398Y11601D01* X6398Y11593D01* X6399Y11584D01* X6402Y11576D01* X6407Y11568D01* X6412Y11561D01* X6419Y11556D01* X6426Y11551D01* X6434Y11548D01* X6443Y11546D01* X6445D01* Y11447D01* X6444Y11447D01* X6435Y11445D01* X6427Y11442D01* X6420Y11437D01* X6413Y11431D01* X6408Y11424D01* X6404Y11417D01* X6401Y11409D01* X6400Y11400D01* X6400Y11391D01* X6402Y11383D01* X6414Y11349D01* X6429Y11316D01* X6445Y11288D01* Y9675D01* X6432Y9644D01* X6420Y9610D01* X6418Y9601D01* X6418Y9593D01* X6419Y9584D01* X6422Y9576D01* X6427Y9568D01* X6432Y9561D01* X6439Y9556D01* X6445Y9552D01* Y9441D01* X6440Y9437D01* X6433Y9431D01* X6428Y9424D01* X6424Y9417D01* X6421Y9409D01* X6420Y9400D01* X6420Y9391D01* X6422Y9383D01* X6434Y9349D01* X6445Y9325D01* Y7625D01* X6440Y7610D01* X6438Y7601D01* X6438Y7593D01* X6439Y7584D01* X6442Y7576D01* X6445Y7571D01* Y7419D01* X6444Y7417D01* X6441Y7409D01* X6440Y7400D01* X6440Y7391D01* X6442Y7383D01* X6445Y7374D01* Y0D01* X5064D01* Y1142D01* X5068Y1144D01* X5100Y1162D01* X5129Y1183D01* X5157Y1207D01* X5182Y1232D01* X5205Y1260D01* X5225Y1290D01* X5243Y1322D01* X5257Y1355D01* X5269Y1389D01* X5271Y1398D01* X5271Y1407D01* X5270Y1415D01* X5267Y1423D01* X5262Y1431D01* X5257Y1438D01* X5250Y1444D01* X5243Y1448D01* X5235Y1451D01* X5226Y1453D01* X5217Y1453D01* X5209Y1452D01* X5201Y1449D01* X5193Y1445D01* X5186Y1439D01* X5180Y1433D01* X5176Y1425D01* X5173Y1417D01* X5164Y1391D01* X5153Y1366D01* X5140Y1343D01* X5125Y1320D01* X5108Y1299D01* X5089Y1280D01* X5068Y1262D01* X5064Y1259D01* Y1740D01* X5085Y1723D01* X5104Y1704D01* X5122Y1683D01* X5137Y1661D01* X5151Y1637D01* X5162Y1613D01* X5171Y1587D01* X5175Y1579D01* X5179Y1572D01* X5185Y1565D01* X5192Y1560D01* X5200Y1556D01* X5208Y1553D01* X5217Y1552D01* X5225Y1552D01* X5234Y1554D01* X5242Y1557D01* X5249Y1562D01* X5256Y1568D01* X5261Y1575D01* X5265Y1582D01* X5268Y1591D01* X5269Y1599D01* X5269Y1608D01* X5267Y1617D01* X5255Y1651D01* X5240Y1683D01* X5222Y1715D01* X5201Y1744D01* X5177Y1772D01* X5152Y1797D01* X5124Y1820D01* X5094Y1840D01* X5064Y1857D01* Y3153D01* X5080Y3162D01* X5109Y3183D01* X5137Y3207D01* X5162Y3232D01* X5185Y3260D01* X5205Y3290D01* X5223Y3322D01* X5237Y3355D01* X5249Y3389D01* X5251Y3398D01* X5251Y3407D01* X5250Y3415D01* X5247Y3423D01* X5242Y3431D01* X5237Y3438D01* X5230Y3444D01* X5223Y3448D01* X5215Y3451D01* X5206Y3453D01* X5197Y3453D01* X5189Y3452D01* X5181Y3449D01* X5173Y3445D01* X5166Y3439D01* X5160Y3433D01* X5156Y3425D01* X5153Y3417D01* X5144Y3391D01* X5133Y3366D01* X5120Y3343D01* X5105Y3320D01* X5088Y3299D01* X5069Y3280D01* X5064Y3276D01* Y3724D01* X5065Y3723D01* X5084Y3704D01* X5102Y3683D01* X5117Y3661D01* X5131Y3637D01* X5142Y3613D01* X5151Y3587D01* X5155Y3579D01* X5159Y3572D01* X5165Y3565D01* X5172Y3560D01* X5180Y3556D01* X5188Y3553D01* X5197Y3552D01* X5205Y3552D01* X5214Y3554D01* X5222Y3557D01* X5229Y3562D01* X5236Y3568D01* X5241Y3575D01* X5245Y3582D01* X5248Y3591D01* X5249Y3599D01* X5249Y3608D01* X5247Y3617D01* X5235Y3651D01* X5220Y3683D01* X5202Y3715D01* X5181Y3744D01* X5157Y3772D01* X5132Y3797D01* X5104Y3820D01* X5074Y3840D01* X5064Y3846D01* Y5165D01* X5089Y5183D01* X5117Y5207D01* X5142Y5232D01* X5165Y5260D01* X5185Y5290D01* X5203Y5322D01* X5217Y5355D01* X5229Y5389D01* X5231Y5398D01* X5231Y5407D01* X5230Y5415D01* X5227Y5423D01* X5222Y5431D01* X5217Y5438D01* X5210Y5444D01* X5203Y5448D01* X5195Y5451D01* X5186Y5453D01* X5177Y5453D01* X5169Y5452D01* X5161Y5449D01* X5153Y5445D01* X5146Y5439D01* X5140Y5433D01* X5136Y5425D01* X5133Y5417D01* X5124Y5391D01* X5113Y5366D01* X5100Y5343D01* X5085Y5320D01* X5068Y5299D01* X5064Y5295D01* Y5704D01* X5064Y5704D01* X5082Y5683D01* X5097Y5661D01* X5111Y5637D01* X5122Y5613D01* X5131Y5587D01* X5135Y5579D01* X5139Y5572D01* X5145Y5565D01* X5152Y5560D01* X5160Y5556D01* X5168Y5553D01* X5177Y5552D01* X5185Y5552D01* X5194Y5554D01* X5202Y5557D01* X5209Y5562D01* X5216Y5568D01* X5221Y5575D01* X5225Y5582D01* X5228Y5591D01* X5229Y5599D01* X5229Y5608D01* X5227Y5617D01* X5215Y5651D01* X5200Y5683D01* X5182Y5715D01* X5161Y5744D01* X5137Y5772D01* X5112Y5797D01* X5084Y5820D01* X5064Y5834D01* Y7180D01* X5069Y7183D01* X5097Y7207D01* X5122Y7232D01* X5145Y7260D01* X5165Y7290D01* X5183Y7322D01* X5197Y7355D01* X5209Y7389D01* X5211Y7398D01* X5211Y7407D01* X5210Y7415D01* X5207Y7423D01* X5202Y7431D01* X5197Y7438D01* X5190Y7444D01* X5183Y7448D01* X5175Y7451D01* X5166Y7453D01* X5157Y7453D01* X5149Y7452D01* X5141Y7449D01* X5133Y7445D01* X5126Y7439D01* X5120Y7433D01* X5116Y7425D01* X5113Y7417D01* X5104Y7391D01* X5093Y7366D01* X5080Y7343D01* X5065Y7320D01* X5064Y7319D01* Y7680D01* X5077Y7661D01* X5091Y7637D01* X5102Y7613D01* X5111Y7587D01* X5115Y7579D01* X5119Y7572D01* X5125Y7565D01* X5132Y7560D01* X5140Y7556D01* X5148Y7553D01* X5157Y7552D01* X5165Y7552D01* X5174Y7554D01* X5182Y7557D01* X5189Y7562D01* X5196Y7568D01* X5201Y7575D01* X5205Y7582D01* X5208Y7591D01* X5209Y7599D01* X5209Y7608D01* X5207Y7617D01* X5195Y7651D01* X5180Y7683D01* X5162Y7715D01* X5141Y7744D01* X5117Y7772D01* X5092Y7797D01* X5064Y7820D01* Y9196D01* X5077Y9207D01* X5102Y9232D01* X5125Y9260D01* X5145Y9290D01* X5163Y9322D01* X5177Y9355D01* X5189Y9389D01* X5191Y9398D01* X5191Y9407D01* X5190Y9415D01* X5187Y9423D01* X5182Y9431D01* X5177Y9438D01* X5170Y9444D01* X5163Y9448D01* X5155Y9451D01* X5146Y9453D01* X5137Y9453D01* X5129Y9452D01* X5121Y9449D01* X5113Y9445D01* X5106Y9439D01* X5100Y9433D01* X5096Y9425D01* X5093Y9417D01* X5084Y9391D01* X5073Y9366D01* X5064Y9350D01* Y9650D01* X5071Y9637D01* X5082Y9613D01* X5091Y9587D01* X5095Y9579D01* X5099Y9572D01* X5105Y9565D01* X5112Y9560D01* X5120Y9556D01* X5128Y9553D01* X5137Y9552D01* X5145Y9552D01* X5154Y9554D01* X5162Y9557D01* X5169Y9562D01* X5176Y9568D01* X5181Y9575D01* X5185Y9582D01* X5188Y9591D01* X5189Y9599D01* X5189Y9608D01* X5187Y9617D01* X5175Y9651D01* X5160Y9683D01* X5142Y9715D01* X5121Y9744D01* X5097Y9772D01* X5072Y9797D01* X5064Y9804D01* Y11214D01* X5082Y11232D01* X5105Y11260D01* X5125Y11290D01* X5143Y11322D01* X5157Y11355D01* X5169Y11389D01* X5171Y11398D01* X5171Y11407D01* X5170Y11415D01* X5167Y11423D01* X5162Y11431D01* X5157Y11438D01* X5150Y11444D01* X5143Y11448D01* X5135Y11451D01* X5126Y11453D01* X5117Y11453D01* X5109Y11452D01* X5101Y11449D01* X5093Y11445D01* X5086Y11439D01* X5080Y11433D01* X5076Y11425D01* X5073Y11417D01* X5064Y11391D01* X5064Y11391D01* Y11608D01* X5071Y11587D01* X5075Y11579D01* X5079Y11572D01* X5085Y11565D01* X5092Y11560D01* X5100Y11556D01* X5108Y11553D01* X5117Y11552D01* X5125Y11552D01* X5134Y11554D01* X5142Y11557D01* X5149Y11562D01* X5156Y11568D01* X5161Y11575D01* X5165Y11582D01* X5168Y11591D01* X5169Y11599D01* X5169Y11608D01* X5167Y11617D01* X5155Y11651D01* X5140Y11683D01* X5122Y11715D01* X5101Y11744D01* X5077Y11772D01* X5064Y11785D01* Y13235D01* X5085Y13260D01* X5105Y13290D01* X5123Y13322D01* X5137Y13355D01* X5149Y13389D01* X5151Y13398D01* X5151Y13407D01* X5150Y13415D01* X5147Y13423D01* X5142Y13431D01* X5137Y13438D01* X5130Y13444D01* X5123Y13448D01* X5115Y13451D01* X5106Y13453D01* X5097Y13453D01* X5089Y13452D01* X5081Y13449D01* X5073Y13445D01* X5066Y13439D01* X5064Y13437D01* Y13567D01* X5065Y13565D01* X5072Y13560D01* X5080Y13556D01* X5088Y13553D01* X5097Y13552D01* X5105Y13552D01* X5114Y13554D01* X5122Y13557D01* X5129Y13562D01* X5136Y13568D01* X5141Y13575D01* X5145Y13582D01* X5148Y13591D01* X5149Y13599D01* X5149Y13608D01* X5147Y13617D01* X5135Y13651D01* X5120Y13683D01* X5102Y13715D01* X5081Y13744D01* X5064Y13764D01* Y15259D01* X5065Y15260D01* X5085Y15290D01* X5103Y15322D01* X5117Y15355D01* X5129Y15389D01* X5131Y15398D01* X5131Y15407D01* X5130Y15415D01* X5127Y15423D01* X5122Y15431D01* X5117Y15438D01* X5110Y15444D01* X5103Y15448D01* X5095Y15451D01* X5086Y15453D01* X5077Y15453D01* X5069Y15452D01* X5064Y15450D01* Y15555D01* X5068Y15553D01* X5077Y15552D01* X5085Y15552D01* X5094Y15554D01* X5102Y15557D01* X5109Y15562D01* X5116Y15568D01* X5121Y15575D01* X5125Y15582D01* X5128Y15591D01* X5129Y15599D01* X5129Y15608D01* X5127Y15617D01* X5115Y15651D01* X5100Y15683D01* X5082Y15715D01* X5064Y15740D01* Y17288D01* X5065Y17290D01* X5083Y17322D01* X5097Y17355D01* X5109Y17389D01* X5111Y17398D01* X5111Y17407D01* X5110Y17415D01* X5107Y17423D01* X5102Y17431D01* X5097Y17438D01* X5090Y17444D01* X5083Y17448D01* X5075Y17451D01* X5066Y17453D01* X5064D01* Y17552D01* X5065D01* X5074Y17554D01* X5082Y17557D01* X5089Y17562D01* X5096Y17568D01* X5101Y17575D01* X5105Y17582D01* X5108Y17591D01* X5109Y17599D01* X5109Y17608D01* X5107Y17617D01* X5095Y17651D01* X5080Y17683D01* X5064Y17711D01* Y19324D01* X5077Y19355D01* X5089Y19389D01* X5091Y19398D01* X5091Y19407D01* X5090Y19415D01* X5087Y19423D01* X5082Y19431D01* X5077Y19438D01* X5070Y19444D01* X5064Y19447D01* Y19559D01* X5069Y19562D01* X5076Y19568D01* X5081Y19575D01* X5085Y19582D01* X5088Y19591D01* X5089Y19599D01* X5089Y19608D01* X5087Y19617D01* X5075Y19651D01* X5064Y19674D01* Y21374D01* X5069Y21389D01* X5071Y21398D01* X5071Y21407D01* X5070Y21415D01* X5067Y21423D01* X5064Y21428D01* Y21580D01* X5065Y21582D01* X5068Y21591D01* X5069Y21599D01* X5069Y21608D01* X5067Y21617D01* X5064Y21625D01* Y40000D01* G37* G36* X6445D02*X6625D01* Y39881D01* X6615Y39884D01* X6606Y39886D01* X6597Y39886D01* X6589Y39885D01* X6581Y39882D01* X6573Y39878D01* X6566Y39872D01* X6560Y39865D01* X6556Y39858D01* X6553Y39850D01* X6551Y39841D01* X6551Y39833D01* X6552Y39824D01* X6555Y39816D01* X6559Y39808D01* X6565Y39801D01* X6572Y39796D01* X6579Y39791D01* X6587Y39788D01* X6613Y39779D01* X6625Y39774D01* Y39225D01* X6618Y39222D01* X6592Y39213D01* X6584Y39209D01* X6577Y39205D01* X6570Y39199D01* X6565Y39192D01* X6561Y39184D01* X6558Y39176D01* X6557Y39167D01* X6557Y39159D01* X6559Y39150D01* X6562Y39142D01* X6567Y39135D01* X6573Y39128D01* X6580Y39123D01* X6587Y39119D01* X6596Y39116D01* X6604Y39115D01* X6613Y39115D01* X6621Y39117D01* X6625Y39118D01* Y37886D01* X6617Y37886D01* X6609Y37885D01* X6601Y37882D01* X6593Y37878D01* X6586Y37872D01* X6580Y37865D01* X6576Y37858D01* X6573Y37850D01* X6571Y37841D01* X6571Y37833D01* X6572Y37824D01* X6575Y37816D01* X6579Y37808D01* X6585Y37801D01* X6592Y37796D01* X6599Y37791D01* X6607Y37788D01* X6625Y37782D01* Y37217D01* X6612Y37213D01* X6604Y37209D01* X6597Y37205D01* X6590Y37199D01* X6585Y37192D01* X6581Y37184D01* X6578Y37176D01* X6577Y37167D01* X6577Y37159D01* X6579Y37150D01* X6582Y37142D01* X6587Y37135D01* X6593Y37128D01* X6600Y37123D01* X6607Y37119D01* X6616Y37116D01* X6624Y37115D01* X6625D01* Y35883D01* X6621Y35882D01* X6613Y35878D01* X6606Y35872D01* X6600Y35865D01* X6596Y35858D01* X6593Y35850D01* X6591Y35841D01* X6591Y35833D01* X6592Y35824D01* X6595Y35816D01* X6599Y35808D01* X6605Y35801D01* X6612Y35796D01* X6619Y35791D01* X6625Y35789D01* Y35210D01* X6624Y35209D01* X6617Y35205D01* X6610Y35199D01* X6605Y35192D01* X6601Y35184D01* X6598Y35176D01* X6597Y35167D01* X6597Y35159D01* X6599Y35150D01* X6602Y35142D01* X6607Y35135D01* X6613Y35128D01* X6620Y35123D01* X6625Y35120D01* Y33871D01* X6620Y33865D01* X6616Y33858D01* X6613Y33850D01* X6611Y33841D01* X6611Y33833D01* X6612Y33824D01* X6615Y33816D01* X6619Y33808D01* X6625Y33801D01* X6625Y33801D01* Y33192D01* X6625Y33192D01* X6621Y33184D01* X6618Y33176D01* X6617Y33167D01* X6617Y33159D01* X6619Y33150D01* X6622Y33142D01* X6625Y33138D01* Y21859D01* X6622Y21864D01* X6616Y21871D01* X6609Y21876D01* X6602Y21880D01* X6593Y21883D01* X6585Y21884D01* X6576Y21884D01* X6568Y21882D01* X6533Y21870D01* X6501Y21855D01* X6469Y21837D01* X6445Y21820D01* Y23166D01* X6455Y23159D01* X6487Y23141D01* X6520Y23127D01* X6554Y23115D01* X6563Y23113D01* X6572Y23113D01* X6580Y23115D01* X6588Y23117D01* X6596Y23122D01* X6603Y23127D01* X6609Y23134D01* X6613Y23141D01* X6616Y23149D01* X6618Y23158D01* X6618Y23167D01* X6617Y23175D01* X6614Y23183D01* X6610Y23191D01* X6604Y23198D01* X6597Y23204D01* X6590Y23208D01* X6582Y23211D01* X6556Y23220D01* X6531Y23231D01* X6508Y23244D01* X6485Y23259D01* X6464Y23276D01* X6445Y23295D01* Y23704D01* X6460Y23719D01* X6481Y23737D01* X6503Y23752D01* X6527Y23766D01* X6551Y23777D01* X6577Y23786D01* X6585Y23790D01* X6592Y23794D01* X6599Y23800D01* X6604Y23807D01* X6608Y23815D01* X6611Y23823D01* X6612Y23832D01* X6612Y23840D01* X6610Y23849D01* X6607Y23857D01* X6602Y23864D01* X6596Y23871D01* X6589Y23876D01* X6582Y23880D01* X6573Y23883D01* X6565Y23884D01* X6556Y23884D01* X6548Y23882D01* X6513Y23870D01* X6481Y23855D01* X6449Y23837D01* X6445Y23834D01* Y25153D01* X6467Y25141D01* X6500Y25127D01* X6534Y25115D01* X6543Y25113D01* X6552Y25113D01* X6560Y25115D01* X6568Y25117D01* X6576Y25122D01* X6583Y25127D01* X6589Y25134D01* X6593Y25141D01* X6596Y25149D01* X6598Y25158D01* X6598Y25167D01* X6597Y25175D01* X6594Y25183D01* X6590Y25191D01* X6584Y25198D01* X6577Y25204D01* X6570Y25208D01* X6562Y25211D01* X6536Y25220D01* X6511Y25231D01* X6488Y25244D01* X6465Y25259D01* X6445Y25276D01* Y25723D01* X6461Y25737D01* X6483Y25752D01* X6507Y25766D01* X6531Y25777D01* X6557Y25786D01* X6565Y25790D01* X6572Y25794D01* X6579Y25800D01* X6584Y25807D01* X6588Y25815D01* X6591Y25823D01* X6592Y25832D01* X6592Y25840D01* X6590Y25849D01* X6587Y25857D01* X6582Y25864D01* X6576Y25871D01* X6569Y25876D01* X6562Y25880D01* X6553Y25883D01* X6545Y25884D01* X6536Y25884D01* X6528Y25882D01* X6493Y25870D01* X6461Y25855D01* X6445Y25846D01* Y27142D01* X6447Y27141D01* X6480Y27127D01* X6514Y27115D01* X6523Y27113D01* X6532Y27113D01* X6540Y27115D01* X6548Y27117D01* X6556Y27122D01* X6563Y27127D01* X6569Y27134D01* X6573Y27141D01* X6576Y27149D01* X6578Y27158D01* X6578Y27167D01* X6577Y27175D01* X6574Y27183D01* X6570Y27191D01* X6564Y27198D01* X6557Y27204D01* X6550Y27208D01* X6542Y27211D01* X6516Y27220D01* X6491Y27231D01* X6468Y27244D01* X6445Y27259D01* Y27740D01* X6463Y27752D01* X6487Y27766D01* X6511Y27777D01* X6537Y27786D01* X6545Y27790D01* X6552Y27794D01* X6559Y27800D01* X6564Y27807D01* X6568Y27815D01* X6571Y27823D01* X6572Y27832D01* X6572Y27840D01* X6570Y27849D01* X6567Y27857D01* X6562Y27864D01* X6556Y27871D01* X6549Y27876D01* X6542Y27880D01* X6533Y27883D01* X6525Y27884D01* X6516Y27884D01* X6508Y27882D01* X6473Y27870D01* X6445Y27857D01* Y29133D01* X6460Y29127D01* X6494Y29115D01* X6503Y29113D01* X6512Y29113D01* X6520Y29115D01* X6528Y29117D01* X6536Y29122D01* X6543Y29127D01* X6549Y29134D01* X6553Y29141D01* X6556Y29149D01* X6558Y29158D01* X6558Y29167D01* X6557Y29175D01* X6554Y29183D01* X6550Y29191D01* X6544Y29198D01* X6537Y29204D01* X6530Y29208D01* X6522Y29211D01* X6496Y29220D01* X6471Y29231D01* X6448Y29244D01* X6445Y29246D01* Y29754D01* X6467Y29766D01* X6491Y29777D01* X6517Y29786D01* X6525Y29790D01* X6532Y29794D01* X6539Y29800D01* X6544Y29807D01* X6548Y29815D01* X6551Y29823D01* X6552Y29832D01* X6552Y29840D01* X6550Y29849D01* X6547Y29857D01* X6542Y29864D01* X6536Y29871D01* X6529Y29876D01* X6522Y29880D01* X6513Y29883D01* X6505Y29884D01* X6496Y29884D01* X6488Y29882D01* X6453Y29870D01* X6445Y29866D01* Y31125D01* X6474Y31115D01* X6483Y31113D01* X6492Y31113D01* X6500Y31115D01* X6508Y31117D01* X6516Y31122D01* X6523Y31127D01* X6529Y31134D01* X6533Y31141D01* X6536Y31149D01* X6538Y31158D01* X6538Y31167D01* X6537Y31175D01* X6534Y31183D01* X6530Y31191D01* X6524Y31198D01* X6517Y31204D01* X6510Y31208D01* X6502Y31211D01* X6476Y31220D01* X6451Y31231D01* X6445Y31234D01* Y31765D01* X6447Y31766D01* X6471Y31777D01* X6497Y31786D01* X6505Y31790D01* X6512Y31794D01* X6519Y31800D01* X6524Y31807D01* X6528Y31815D01* X6531Y31823D01* X6532Y31832D01* X6532Y31840D01* X6530Y31849D01* X6527Y31857D01* X6522Y31864D01* X6516Y31871D01* X6509Y31876D01* X6502Y31880D01* X6493Y31883D01* X6485Y31884D01* X6476Y31884D01* X6468Y31882D01* X6445Y31874D01* Y33118D01* X6454Y33115D01* X6463Y33113D01* X6472Y33113D01* X6480Y33115D01* X6488Y33117D01* X6496Y33122D01* X6503Y33127D01* X6509Y33134D01* X6513Y33141D01* X6516Y33149D01* X6518Y33158D01* X6518Y33167D01* X6517Y33175D01* X6514Y33183D01* X6510Y33191D01* X6504Y33198D01* X6497Y33204D01* X6490Y33208D01* X6482Y33211D01* X6456Y33220D01* X6445Y33225D01* Y33775D01* X6451Y33777D01* X6477Y33786D01* X6485Y33790D01* X6492Y33794D01* X6499Y33800D01* X6504Y33807D01* X6508Y33815D01* X6511Y33823D01* X6512Y33832D01* X6512Y33840D01* X6510Y33849D01* X6507Y33857D01* X6502Y33864D01* X6496Y33871D01* X6489Y33876D01* X6482Y33880D01* X6473Y33883D01* X6465Y33884D01* X6456Y33884D01* X6448Y33882D01* X6445Y33881D01* Y35113D01* X6452Y35113D01* X6460Y35115D01* X6468Y35117D01* X6476Y35122D01* X6483Y35127D01* X6489Y35134D01* X6493Y35141D01* X6496Y35149D01* X6498Y35158D01* X6498Y35167D01* X6497Y35175D01* X6494Y35183D01* X6490Y35191D01* X6484Y35198D01* X6477Y35204D01* X6470Y35208D01* X6462Y35211D01* X6445Y35217D01* Y35782D01* X6457Y35786D01* X6465Y35790D01* X6472Y35794D01* X6479Y35800D01* X6484Y35807D01* X6488Y35815D01* X6491Y35823D01* X6492Y35832D01* X6492Y35840D01* X6490Y35849D01* X6487Y35857D01* X6482Y35864D01* X6476Y35871D01* X6469Y35876D01* X6462Y35880D01* X6453Y35883D01* X6445Y35884D01* Y37116D01* X6448Y37117D01* X6456Y37122D01* X6463Y37127D01* X6469Y37134D01* X6473Y37141D01* X6476Y37149D01* X6478Y37158D01* X6478Y37167D01* X6477Y37175D01* X6474Y37183D01* X6470Y37191D01* X6464Y37198D01* X6457Y37204D01* X6450Y37208D01* X6445Y37210D01* Y37790D01* X6452Y37794D01* X6459Y37800D01* X6464Y37807D01* X6468Y37815D01* X6471Y37823D01* X6472Y37832D01* X6472Y37840D01* X6470Y37849D01* X6467Y37857D01* X6462Y37864D01* X6456Y37871D01* X6449Y37876D01* X6445Y37878D01* Y39130D01* X6449Y39134D01* X6453Y39141D01* X6456Y39149D01* X6458Y39158D01* X6458Y39167D01* X6457Y39175D01* X6454Y39183D01* X6450Y39191D01* X6445Y39197D01* Y39809D01* X6448Y39815D01* X6451Y39823D01* X6452Y39832D01* X6452Y39840D01* X6450Y39849D01* X6447Y39857D01* X6445Y39859D01* Y40000D01* G37* G36* X6625Y0D02*X6445D01* Y7374D01* X6454Y7349D01* X6469Y7316D01* X6487Y7284D01* X6508Y7255D01* X6532Y7227D01* X6557Y7202D01* X6585Y7179D01* X6615Y7159D01* X6625Y7153D01* Y5834D01* X6600Y5816D01* X6572Y5793D01* X6547Y5767D01* X6524Y5739D01* X6504Y5709D01* X6486Y5677D01* X6472Y5644D01* X6460Y5610D01* X6458Y5601D01* X6458Y5593D01* X6459Y5584D01* X6462Y5576D01* X6467Y5568D01* X6472Y5561D01* X6479Y5556D01* X6486Y5551D01* X6494Y5548D01* X6503Y5546D01* X6512Y5546D01* X6520Y5547D01* X6528Y5550D01* X6536Y5555D01* X6543Y5560D01* X6549Y5567D01* X6553Y5574D01* X6556Y5582D01* X6565Y5608D01* X6576Y5633D01* X6589Y5657D01* X6604Y5679D01* X6621Y5700D01* X6625Y5704D01* Y5295D01* X6625Y5295D01* X6607Y5316D01* X6592Y5338D01* X6578Y5362D01* X6567Y5386D01* X6558Y5412D01* X6554Y5420D01* X6550Y5427D01* X6544Y5434D01* X6537Y5439D01* X6529Y5443D01* X6521Y5446D01* X6512Y5447D01* X6504Y5447D01* X6495Y5445D01* X6487Y5442D01* X6480Y5437D01* X6473Y5431D01* X6468Y5424D01* X6464Y5417D01* X6461Y5409D01* X6460Y5400D01* X6460Y5391D01* X6462Y5383D01* X6474Y5349D01* X6489Y5316D01* X6507Y5284D01* X6528Y5255D01* X6552Y5227D01* X6577Y5202D01* X6605Y5179D01* X6625Y5166D01* Y3820D01* X6620Y3816D01* X6592Y3793D01* X6567Y3767D01* X6544Y3739D01* X6524Y3709D01* X6506Y3677D01* X6492Y3644D01* X6480Y3610D01* X6478Y3601D01* X6478Y3593D01* X6479Y3584D01* X6482Y3576D01* X6487Y3568D01* X6492Y3561D01* X6499Y3556D01* X6506Y3551D01* X6514Y3548D01* X6523Y3546D01* X6532Y3546D01* X6540Y3547D01* X6548Y3550D01* X6556Y3555D01* X6563Y3560D01* X6569Y3567D01* X6573Y3574D01* X6576Y3582D01* X6585Y3608D01* X6596Y3633D01* X6609Y3657D01* X6624Y3679D01* X6625Y3680D01* Y3319D01* X6612Y3338D01* X6598Y3362D01* X6587Y3386D01* X6578Y3412D01* X6574Y3420D01* X6570Y3427D01* X6564Y3434D01* X6557Y3439D01* X6549Y3443D01* X6541Y3446D01* X6532Y3447D01* X6524Y3447D01* X6515Y3445D01* X6507Y3442D01* X6500Y3437D01* X6493Y3431D01* X6488Y3424D01* X6484Y3417D01* X6481Y3409D01* X6480Y3400D01* X6480Y3391D01* X6482Y3383D01* X6494Y3349D01* X6509Y3316D01* X6527Y3284D01* X6548Y3255D01* X6572Y3227D01* X6597Y3202D01* X6625Y3179D01* Y1804D01* X6612Y1793D01* X6587Y1767D01* X6564Y1739D01* X6544Y1709D01* X6526Y1677D01* X6512Y1644D01* X6500Y1610D01* X6498Y1601D01* X6498Y1593D01* X6499Y1584D01* X6502Y1576D01* X6507Y1568D01* X6512Y1561D01* X6519Y1556D01* X6526Y1551D01* X6534Y1548D01* X6543Y1546D01* X6552Y1546D01* X6560Y1547D01* X6568Y1550D01* X6576Y1555D01* X6583Y1560D01* X6589Y1567D01* X6593Y1574D01* X6596Y1582D01* X6605Y1608D01* X6616Y1633D01* X6625Y1650D01* Y1349D01* X6618Y1362D01* X6607Y1386D01* X6598Y1412D01* X6594Y1420D01* X6590Y1427D01* X6584Y1434D01* X6577Y1439D01* X6569Y1443D01* X6561Y1446D01* X6552Y1447D01* X6544Y1447D01* X6535Y1445D01* X6527Y1442D01* X6520Y1437D01* X6513Y1431D01* X6508Y1424D01* X6504Y1417D01* X6501Y1409D01* X6500Y1400D01* X6500Y1391D01* X6502Y1383D01* X6514Y1349D01* X6529Y1316D01* X6547Y1284D01* X6568Y1255D01* X6592Y1227D01* X6617Y1202D01* X6625Y1196D01* Y0D01* G37* G36* Y7276D02*X6624Y7276D01* X6605Y7295D01* X6587Y7316D01* X6572Y7338D01* X6558Y7362D01* X6547Y7386D01* X6538Y7412D01* X6534Y7420D01* X6530Y7427D01* X6524Y7434D01* X6517Y7439D01* X6509Y7443D01* X6501Y7446D01* X6492Y7447D01* X6484Y7447D01* X6475Y7445D01* X6467Y7442D01* X6460Y7437D01* X6453Y7431D01* X6448Y7424D01* X6445Y7419D01* Y7571D01* X6447Y7568D01* X6452Y7561D01* X6459Y7556D01* X6466Y7551D01* X6474Y7548D01* X6483Y7546D01* X6492Y7546D01* X6500Y7547D01* X6508Y7550D01* X6516Y7555D01* X6523Y7560D01* X6529Y7567D01* X6533Y7574D01* X6536Y7582D01* X6545Y7608D01* X6556Y7633D01* X6569Y7657D01* X6584Y7679D01* X6601Y7700D01* X6620Y7719D01* X6625Y7723D01* Y7276D01* G37* G36* Y7846D02*X6609Y7837D01* X6580Y7816D01* X6552Y7793D01* X6527Y7767D01* X6504Y7739D01* X6484Y7709D01* X6466Y7677D01* X6452Y7644D01* X6445Y7625D01* Y9325D01* X6449Y9316D01* X6467Y9284D01* X6488Y9255D01* X6512Y9227D01* X6537Y9202D01* X6565Y9179D01* X6595Y9159D01* X6625Y9142D01* Y7846D01* G37* G36* Y9259D02*X6625Y9259D01* X6604Y9276D01* X6585Y9295D01* X6567Y9316D01* X6552Y9338D01* X6538Y9362D01* X6527Y9386D01* X6518Y9412D01* X6514Y9420D01* X6510Y9427D01* X6504Y9434D01* X6497Y9439D01* X6489Y9443D01* X6481Y9446D01* X6472Y9447D01* X6464Y9447D01* X6455Y9445D01* X6447Y9442D01* X6445Y9441D01* Y9552D01* X6446Y9551D01* X6454Y9548D01* X6463Y9546D01* X6472Y9546D01* X6480Y9547D01* X6488Y9550D01* X6496Y9555D01* X6503Y9560D01* X6509Y9567D01* X6513Y9574D01* X6516Y9582D01* X6525Y9608D01* X6536Y9633D01* X6549Y9657D01* X6564Y9679D01* X6581Y9700D01* X6600Y9719D01* X6621Y9737D01* X6625Y9740D01* Y9259D01* G37* G36* Y9857D02*X6621Y9855D01* X6589Y9837D01* X6560Y9816D01* X6532Y9793D01* X6507Y9767D01* X6484Y9739D01* X6464Y9709D01* X6446Y9677D01* X6445Y9675D01* Y11288D01* X6447Y11284D01* X6468Y11255D01* X6492Y11227D01* X6517Y11202D01* X6545Y11179D01* X6575Y11159D01* X6607Y11141D01* X6625Y11133D01* Y9857D01* G37* G36* Y11246D02*X6605Y11259D01* X6584Y11276D01* X6565Y11295D01* X6547Y11316D01* X6532Y11338D01* X6518Y11362D01* X6507Y11386D01* X6498Y11412D01* X6494Y11420D01* X6490Y11427D01* X6484Y11434D01* X6477Y11439D01* X6469Y11443D01* X6461Y11446D01* X6452Y11447D01* X6445Y11447D01* Y11546D01* X6452Y11546D01* X6460Y11547D01* X6468Y11550D01* X6476Y11555D01* X6483Y11560D01* X6489Y11567D01* X6493Y11574D01* X6496Y11582D01* X6505Y11608D01* X6516Y11633D01* X6529Y11657D01* X6544Y11679D01* X6561Y11700D01* X6580Y11719D01* X6601Y11737D01* X6623Y11752D01* X6625Y11754D01* Y11246D01* G37* G36* Y11866D02*X6601Y11855D01* X6569Y11837D01* X6540Y11816D01* X6512Y11793D01* X6487Y11767D01* X6464Y11739D01* X6445Y11711D01* Y13259D01* X6448Y13255D01* X6472Y13227D01* X6497Y13202D01* X6525Y13179D01* X6555Y13159D01* X6587Y13141D01* X6620Y13127D01* X6625Y13125D01* Y11866D01* G37* G36* Y13234D02*X6608Y13244D01* X6585Y13259D01* X6564Y13276D01* X6545Y13295D01* X6527Y13316D01* X6512Y13338D01* X6498Y13362D01* X6487Y13386D01* X6478Y13412D01* X6474Y13420D01* X6470Y13427D01* X6464Y13434D01* X6457Y13439D01* X6449Y13443D01* X6445Y13445D01* Y13549D01* X6448Y13550D01* X6456Y13555D01* X6463Y13560D01* X6469Y13567D01* X6473Y13574D01* X6476Y13582D01* X6485Y13608D01* X6496Y13633D01* X6509Y13657D01* X6524Y13679D01* X6541Y13700D01* X6560Y13719D01* X6581Y13737D01* X6603Y13752D01* X6625Y13765D01* Y13234D01* G37* G36* Y13874D02*X6613Y13870D01* X6581Y13855D01* X6549Y13837D01* X6520Y13816D01* X6492Y13793D01* X6467Y13767D01* X6445Y13740D01* Y15235D01* X6452Y15227D01* X6477Y15202D01* X6505Y15179D01* X6535Y15159D01* X6567Y15141D01* X6600Y15127D01* X6625Y15118D01* Y13874D01* G37* G36* Y15225D02*X6611Y15231D01* X6588Y15244D01* X6565Y15259D01* X6544Y15276D01* X6525Y15295D01* X6507Y15316D01* X6492Y15338D01* X6478Y15362D01* X6467Y15386D01* X6458Y15412D01* X6454Y15420D01* X6450Y15427D01* X6445Y15432D01* Y15563D01* X6449Y15567D01* X6453Y15574D01* X6456Y15582D01* X6465Y15608D01* X6476Y15633D01* X6489Y15657D01* X6504Y15679D01* X6521Y15700D01* X6540Y15719D01* X6561Y15737D01* X6583Y15752D01* X6607Y15766D01* X6625Y15775D01* Y15225D01* G37* G36* Y15881D02*X6593Y15870D01* X6561Y15855D01* X6529Y15837D01* X6500Y15816D01* X6472Y15793D01* X6447Y15767D01* X6445Y15765D01* Y17214D01* X6457Y17202D01* X6485Y17179D01* X6515Y17159D01* X6547Y17141D01* X6580Y17127D01* X6614Y17115D01* X6623Y17113D01* X6625D01* Y15881D01* G37* G36* Y17217D02*X6616Y17220D01* X6591Y17231D01* X6568Y17244D01* X6545Y17259D01* X6524Y17276D01* X6505Y17295D01* X6487Y17316D01* X6472Y17338D01* X6458Y17362D01* X6447Y17386D01* X6445Y17391D01* Y17609D01* X6456Y17633D01* X6469Y17657D01* X6484Y17679D01* X6501Y17700D01* X6520Y17719D01* X6541Y17737D01* X6563Y17752D01* X6587Y17766D01* X6611Y17777D01* X6625Y17782D01* Y17217D01* G37* G36* Y17884D02*X6625Y17884D01* X6616Y17884D01* X6608Y17882D01* X6573Y17870D01* X6541Y17855D01* X6509Y17837D01* X6480Y17816D01* X6452Y17793D01* X6445Y17785D01* Y19196D01* X6465Y19179D01* X6495Y19159D01* X6527Y19141D01* X6560Y19127D01* X6594Y19115D01* X6603Y19113D01* X6612Y19113D01* X6620Y19115D01* X6625Y19116D01* Y17884D01* G37* G36* Y19210D02*X6622Y19211D01* X6596Y19220D01* X6571Y19231D01* X6548Y19244D01* X6525Y19259D01* X6504Y19276D01* X6485Y19295D01* X6467Y19316D01* X6452Y19338D01* X6445Y19349D01* Y19650D01* X6449Y19657D01* X6464Y19679D01* X6481Y19700D01* X6500Y19719D01* X6521Y19737D01* X6543Y19752D01* X6567Y19766D01* X6591Y19777D01* X6617Y19786D01* X6625Y19790D01* X6625Y19790D01* Y19210D01* G37* G36* Y19878D02*X6622Y19880D01* X6613Y19883D01* X6605Y19884D01* X6596Y19884D01* X6588Y19882D01* X6553Y19870D01* X6521Y19855D01* X6489Y19837D01* X6460Y19816D01* X6445Y19804D01* Y21179D01* X6445Y21179D01* X6475Y21159D01* X6507Y21141D01* X6540Y21127D01* X6574Y21115D01* X6583Y21113D01* X6592Y21113D01* X6600Y21115D01* X6608Y21117D01* X6616Y21122D01* X6623Y21127D01* X6625Y21130D01* Y19878D01* G37* G36* Y21197D02*X6624Y21198D01* X6617Y21204D01* X6610Y21208D01* X6602Y21211D01* X6576Y21220D01* X6551Y21231D01* X6528Y21244D01* X6505Y21259D01* X6484Y21276D01* X6465Y21295D01* X6447Y21316D01* X6445Y21319D01* Y21680D01* X6461Y21700D01* X6480Y21719D01* X6501Y21737D01* X6523Y21752D01* X6547Y21766D01* X6571Y21777D01* X6597Y21786D01* X6605Y21790D01* X6612Y21794D01* X6619Y21800D01* X6624Y21807D01* X6625Y21809D01* Y21197D01* G37* G36* Y40000D02*X6884D01* Y39625D01* X6875Y39651D01* X6860Y39683D01* X6842Y39715D01* X6821Y39744D01* X6797Y39772D01* X6772Y39797D01* X6744Y39820D01* X6714Y39840D01* X6682Y39858D01* X6649Y39873D01* X6625Y39881D01* Y40000D01* G37* G36* Y39774D02*X6638Y39768D01* X6661Y39755D01* X6684Y39740D01* X6705Y39723D01* X6724Y39704D01* X6742Y39683D01* X6757Y39661D01* X6771Y39637D01* X6782Y39613D01* X6791Y39587D01* X6795Y39579D01* X6799Y39572D01* X6805Y39565D01* X6812Y39560D01* X6820Y39556D01* X6828Y39553D01* X6837Y39552D01* X6845Y39552D01* X6854Y39554D01* X6862Y39557D01* X6869Y39562D01* X6876Y39568D01* X6881Y39575D01* X6884Y39580D01* Y39428D01* X6882Y39431D01* X6877Y39438D01* X6870Y39444D01* X6863Y39448D01* X6855Y39451D01* X6846Y39453D01* X6837Y39453D01* X6829Y39452D01* X6821Y39449D01* X6813Y39445D01* X6806Y39439D01* X6800Y39433D01* X6796Y39425D01* X6793Y39417D01* X6784Y39391D01* X6773Y39366D01* X6760Y39343D01* X6745Y39320D01* X6728Y39299D01* X6709Y39280D01* X6688Y39262D01* X6666Y39247D01* X6642Y39233D01* X6625Y39225D01* Y39774D01* G37* G36* Y39118D02*X6656Y39129D01* X6688Y39144D01* X6720Y39162D01* X6749Y39183D01* X6777Y39207D01* X6802Y39232D01* X6825Y39260D01* X6845Y39290D01* X6863Y39322D01* X6877Y39355D01* X6884Y39374D01* Y37674D01* X6880Y37683D01* X6862Y37715D01* X6841Y37744D01* X6817Y37772D01* X6792Y37797D01* X6764Y37820D01* X6734Y37840D01* X6702Y37858D01* X6669Y37873D01* X6635Y37884D01* X6626Y37886D01* X6625D01* Y39118D01* G37* G36* Y37782D02*X6633Y37779D01* X6658Y37768D01* X6681Y37755D01* X6704Y37740D01* X6725Y37723D01* X6744Y37704D01* X6762Y37683D01* X6777Y37661D01* X6791Y37637D01* X6802Y37613D01* X6811Y37587D01* X6815Y37579D01* X6819Y37572D01* X6825Y37565D01* X6832Y37560D01* X6840Y37556D01* X6848Y37553D01* X6857Y37552D01* X6865Y37552D01* X6874Y37554D01* X6882Y37557D01* X6884Y37559D01* Y37447D01* X6883Y37448D01* X6875Y37451D01* X6866Y37453D01* X6857Y37453D01* X6849Y37452D01* X6841Y37449D01* X6833Y37445D01* X6826Y37439D01* X6820Y37433D01* X6816Y37425D01* X6813Y37417D01* X6804Y37391D01* X6793Y37366D01* X6780Y37343D01* X6765Y37320D01* X6748Y37299D01* X6729Y37280D01* X6708Y37262D01* X6686Y37247D01* X6662Y37233D01* X6638Y37222D01* X6625Y37217D01* Y37782D01* G37* G36* Y37115D02*X6633Y37115D01* X6641Y37117D01* X6676Y37129D01* X6708Y37144D01* X6740Y37162D01* X6769Y37183D01* X6797Y37207D01* X6822Y37232D01* X6845Y37260D01* X6865Y37290D01* X6883Y37322D01* X6884Y37324D01* Y35711D01* X6882Y35715D01* X6861Y35744D01* X6837Y35772D01* X6812Y35797D01* X6784Y35820D01* X6754Y35840D01* X6722Y35858D01* X6689Y35873D01* X6655Y35884D01* X6646Y35886D01* X6637Y35886D01* X6629Y35885D01* X6625Y35883D01* Y37115D01* G37* G36* Y35789D02*X6627Y35788D01* X6653Y35779D01* X6678Y35768D01* X6701Y35755D01* X6724Y35740D01* X6745Y35723D01* X6764Y35704D01* X6782Y35683D01* X6797Y35661D01* X6811Y35637D01* X6822Y35613D01* X6831Y35587D01* X6835Y35579D01* X6839Y35572D01* X6845Y35565D01* X6852Y35560D01* X6860Y35556D01* X6868Y35553D01* X6877Y35552D01* X6884Y35552D01* Y35453D01* X6877Y35453D01* X6869Y35452D01* X6861Y35449D01* X6853Y35445D01* X6846Y35439D01* X6840Y35433D01* X6836Y35425D01* X6833Y35417D01* X6824Y35391D01* X6813Y35366D01* X6800Y35343D01* X6785Y35320D01* X6768Y35299D01* X6749Y35280D01* X6728Y35262D01* X6706Y35247D01* X6682Y35233D01* X6658Y35222D01* X6632Y35213D01* X6625Y35210D01* Y35789D01* G37* G36* Y35120D02*X6627Y35119D01* X6636Y35116D01* X6644Y35115D01* X6653Y35115D01* X6661Y35117D01* X6696Y35129D01* X6728Y35144D01* X6760Y35162D01* X6789Y35183D01* X6817Y35207D01* X6842Y35232D01* X6865Y35260D01* X6884Y35288D01* Y33740D01* X6881Y33744D01* X6857Y33772D01* X6832Y33797D01* X6804Y33820D01* X6774Y33840D01* X6742Y33858D01* X6709Y33873D01* X6675Y33884D01* X6666Y33886D01* X6657Y33886D01* X6649Y33885D01* X6641Y33882D01* X6633Y33878D01* X6626Y33872D01* X6625Y33871D01* Y35120D01* G37* G36* Y33801D02*X6632Y33796D01* X6639Y33791D01* X6647Y33788D01* X6673Y33779D01* X6698Y33768D01* X6721Y33755D01* X6744Y33740D01* X6765Y33723D01* X6784Y33704D01* X6802Y33683D01* X6817Y33661D01* X6831Y33637D01* X6842Y33613D01* X6851Y33587D01* X6855Y33579D01* X6859Y33572D01* X6865Y33565D01* X6872Y33560D01* X6880Y33556D01* X6884Y33555D01* Y33450D01* X6881Y33449D01* X6873Y33445D01* X6866Y33439D01* X6860Y33433D01* X6856Y33425D01* X6853Y33417D01* X6844Y33391D01* X6833Y33366D01* X6820Y33343D01* X6805Y33320D01* X6788Y33299D01* X6769Y33280D01* X6748Y33262D01* X6726Y33247D01* X6702Y33233D01* X6678Y33222D01* X6652Y33213D01* X6644Y33209D01* X6637Y33205D01* X6630Y33199D01* X6625Y33192D01* Y33801D01* G37* G36* Y33138D02*X6627Y33135D01* X6633Y33128D01* X6640Y33123D01* X6647Y33119D01* X6656Y33116D01* X6664Y33115D01* X6673Y33115D01* X6681Y33117D01* X6716Y33129D01* X6748Y33144D01* X6780Y33162D01* X6809Y33183D01* X6837Y33207D01* X6862Y33232D01* X6884Y33259D01* Y31764D01* X6877Y31772D01* X6852Y31797D01* X6824Y31820D01* X6794Y31840D01* X6762Y31858D01* X6729Y31873D01* X6695Y31884D01* X6686Y31886D01* X6677Y31886D01* X6669Y31885D01* X6661Y31882D01* X6653Y31878D01* X6646Y31872D01* X6640Y31865D01* X6636Y31858D01* X6633Y31850D01* X6631Y31841D01* X6631Y31833D01* X6632Y31824D01* X6635Y31816D01* X6639Y31808D01* X6645Y31801D01* X6652Y31796D01* X6659Y31791D01* X6667Y31788D01* X6693Y31779D01* X6718Y31768D01* X6741Y31755D01* X6764Y31740D01* X6785Y31723D01* X6804Y31704D01* X6822Y31683D01* X6837Y31661D01* X6851Y31637D01* X6862Y31613D01* X6871Y31587D01* X6875Y31579D01* X6879Y31572D01* X6884Y31567D01* Y31437D01* X6880Y31433D01* X6876Y31425D01* X6873Y31417D01* X6864Y31391D01* X6853Y31366D01* X6840Y31343D01* X6825Y31320D01* X6808Y31299D01* X6789Y31280D01* X6768Y31262D01* X6746Y31247D01* X6722Y31233D01* X6698Y31222D01* X6672Y31213D01* X6664Y31209D01* X6657Y31205D01* X6650Y31199D01* X6645Y31192D01* X6641Y31184D01* X6638Y31176D01* X6637Y31167D01* X6637Y31159D01* X6639Y31150D01* X6642Y31142D01* X6647Y31135D01* X6653Y31128D01* X6660Y31123D01* X6667Y31119D01* X6676Y31116D01* X6684Y31115D01* X6693Y31115D01* X6701Y31117D01* X6736Y31129D01* X6768Y31144D01* X6800Y31162D01* X6829Y31183D01* X6857Y31207D01* X6882Y31232D01* X6884Y31235D01* Y29785D01* X6872Y29797D01* X6844Y29820D01* X6814Y29840D01* X6782Y29858D01* X6749Y29873D01* X6715Y29884D01* X6706Y29886D01* X6697Y29886D01* X6689Y29885D01* X6681Y29882D01* X6673Y29878D01* X6666Y29872D01* X6660Y29865D01* X6656Y29858D01* X6653Y29850D01* X6651Y29841D01* X6651Y29833D01* X6652Y29824D01* X6655Y29816D01* X6659Y29808D01* X6665Y29801D01* X6672Y29796D01* X6679Y29791D01* X6687Y29788D01* X6713Y29779D01* X6738Y29768D01* X6761Y29755D01* X6784Y29740D01* X6805Y29723D01* X6824Y29704D01* X6842Y29683D01* X6857Y29661D01* X6871Y29637D01* X6882Y29613D01* X6884Y29608D01* Y29391D01* X6873Y29366D01* X6860Y29343D01* X6845Y29320D01* X6828Y29299D01* X6809Y29280D01* X6788Y29262D01* X6766Y29247D01* X6742Y29233D01* X6718Y29222D01* X6692Y29213D01* X6684Y29209D01* X6677Y29205D01* X6670Y29199D01* X6665Y29192D01* X6661Y29184D01* X6658Y29176D01* X6657Y29167D01* X6657Y29159D01* X6659Y29150D01* X6662Y29142D01* X6667Y29135D01* X6673Y29128D01* X6680Y29123D01* X6687Y29119D01* X6696Y29116D01* X6704Y29115D01* X6713Y29115D01* X6721Y29117D01* X6756Y29129D01* X6788Y29144D01* X6820Y29162D01* X6849Y29183D01* X6877Y29207D01* X6884Y29214D01* Y27804D01* X6864Y27820D01* X6834Y27840D01* X6802Y27858D01* X6769Y27873D01* X6735Y27884D01* X6726Y27886D01* X6717Y27886D01* X6709Y27885D01* X6701Y27882D01* X6693Y27878D01* X6686Y27872D01* X6680Y27865D01* X6676Y27858D01* X6673Y27850D01* X6671Y27841D01* X6671Y27833D01* X6672Y27824D01* X6675Y27816D01* X6679Y27808D01* X6685Y27801D01* X6692Y27796D01* X6699Y27791D01* X6707Y27788D01* X6733Y27779D01* X6758Y27768D01* X6781Y27755D01* X6804Y27740D01* X6825Y27723D01* X6844Y27704D01* X6862Y27683D01* X6877Y27661D01* X6884Y27650D01* Y27350D01* X6880Y27343D01* X6865Y27320D01* X6848Y27299D01* X6829Y27280D01* X6808Y27262D01* X6786Y27247D01* X6762Y27233D01* X6738Y27222D01* X6712Y27213D01* X6704Y27209D01* X6697Y27205D01* X6690Y27199D01* X6685Y27192D01* X6681Y27184D01* X6678Y27176D01* X6677Y27167D01* X6677Y27159D01* X6679Y27150D01* X6682Y27142D01* X6687Y27135D01* X6693Y27128D01* X6700Y27123D01* X6707Y27119D01* X6716Y27116D01* X6724Y27115D01* X6733Y27115D01* X6741Y27117D01* X6776Y27129D01* X6808Y27144D01* X6840Y27162D01* X6869Y27183D01* X6884Y27196D01* Y25820D01* X6884Y25820D01* X6854Y25840D01* X6822Y25858D01* X6789Y25873D01* X6755Y25884D01* X6746Y25886D01* X6737Y25886D01* X6729Y25885D01* X6721Y25882D01* X6713Y25878D01* X6706Y25872D01* X6700Y25865D01* X6696Y25858D01* X6693Y25850D01* X6691Y25841D01* X6691Y25833D01* X6692Y25824D01* X6695Y25816D01* X6699Y25808D01* X6705Y25801D01* X6712Y25796D01* X6719Y25791D01* X6727Y25788D01* X6753Y25779D01* X6778Y25768D01* X6801Y25755D01* X6824Y25740D01* X6845Y25723D01* X6864Y25704D01* X6882Y25683D01* X6884Y25680D01* Y25319D01* X6868Y25299D01* X6849Y25280D01* X6828Y25262D01* X6806Y25247D01* X6782Y25233D01* X6758Y25222D01* X6732Y25213D01* X6724Y25209D01* X6717Y25205D01* X6710Y25199D01* X6705Y25192D01* X6701Y25184D01* X6698Y25176D01* X6697Y25167D01* X6697Y25159D01* X6699Y25150D01* X6702Y25142D01* X6707Y25135D01* X6713Y25128D01* X6720Y25123D01* X6727Y25119D01* X6736Y25116D01* X6744Y25115D01* X6753Y25115D01* X6761Y25117D01* X6796Y25129D01* X6828Y25144D01* X6860Y25162D01* X6884Y25180D01* Y23834D01* X6874Y23840D01* X6842Y23858D01* X6809Y23873D01* X6775Y23884D01* X6766Y23886D01* X6757Y23886D01* X6749Y23885D01* X6741Y23882D01* X6733Y23878D01* X6726Y23872D01* X6720Y23865D01* X6716Y23858D01* X6713Y23850D01* X6711Y23841D01* X6711Y23833D01* X6712Y23824D01* X6715Y23816D01* X6719Y23808D01* X6725Y23801D01* X6732Y23796D01* X6739Y23791D01* X6747Y23788D01* X6773Y23779D01* X6798Y23768D01* X6821Y23755D01* X6844Y23740D01* X6865Y23723D01* X6884Y23704D01* Y23295D01* X6869Y23280D01* X6848Y23262D01* X6826Y23247D01* X6802Y23233D01* X6778Y23222D01* X6752Y23213D01* X6744Y23209D01* X6737Y23205D01* X6730Y23199D01* X6725Y23192D01* X6721Y23184D01* X6718Y23176D01* X6717Y23167D01* X6717Y23159D01* X6719Y23150D01* X6722Y23142D01* X6727Y23135D01* X6733Y23128D01* X6740Y23123D01* X6747Y23119D01* X6756Y23116D01* X6764Y23115D01* X6773Y23115D01* X6781Y23117D01* X6816Y23129D01* X6848Y23144D01* X6880Y23162D01* X6884Y23165D01* Y21846D01* X6862Y21858D01* X6829Y21873D01* X6795Y21884D01* X6786Y21886D01* X6777Y21886D01* X6769Y21885D01* X6761Y21882D01* X6753Y21878D01* X6746Y21872D01* X6740Y21865D01* X6736Y21858D01* X6733Y21850D01* X6731Y21841D01* X6731Y21833D01* X6732Y21824D01* X6735Y21816D01* X6739Y21808D01* X6745Y21801D01* X6752Y21796D01* X6759Y21791D01* X6767Y21788D01* X6793Y21779D01* X6818Y21768D01* X6841Y21755D01* X6864Y21740D01* X6884Y21724D01* Y21276D01* X6868Y21262D01* X6846Y21247D01* X6822Y21233D01* X6798Y21222D01* X6772Y21213D01* X6764Y21209D01* X6757Y21205D01* X6750Y21199D01* X6745Y21192D01* X6741Y21184D01* X6738Y21176D01* X6737Y21167D01* X6737Y21159D01* X6739Y21150D01* X6742Y21142D01* X6747Y21135D01* X6753Y21128D01* X6760Y21123D01* X6767Y21119D01* X6776Y21116D01* X6784Y21115D01* X6793Y21115D01* X6801Y21117D01* X6836Y21129D01* X6868Y21144D01* X6884Y21153D01* Y19857D01* X6882Y19858D01* X6849Y19873D01* X6815Y19884D01* X6806Y19886D01* X6797Y19886D01* X6789Y19885D01* X6781Y19882D01* X6773Y19878D01* X6766Y19872D01* X6760Y19865D01* X6756Y19858D01* X6753Y19850D01* X6751Y19841D01* X6751Y19833D01* X6752Y19824D01* X6755Y19816D01* X6759Y19808D01* X6765Y19801D01* X6772Y19796D01* X6779Y19791D01* X6787Y19788D01* X6813Y19779D01* X6838Y19768D01* X6861Y19755D01* X6884Y19740D01* Y19259D01* X6866Y19247D01* X6842Y19233D01* X6818Y19222D01* X6792Y19213D01* X6784Y19209D01* X6777Y19205D01* X6770Y19199D01* X6765Y19192D01* X6761Y19184D01* X6758Y19176D01* X6757Y19167D01* X6757Y19159D01* X6759Y19150D01* X6762Y19142D01* X6767Y19135D01* X6773Y19128D01* X6780Y19123D01* X6787Y19119D01* X6796Y19116D01* X6804Y19115D01* X6813Y19115D01* X6821Y19117D01* X6856Y19129D01* X6884Y19142D01* Y17866D01* X6869Y17873D01* X6835Y17884D01* X6826Y17886D01* X6817Y17886D01* X6809Y17885D01* X6801Y17882D01* X6793Y17878D01* X6786Y17872D01* X6780Y17865D01* X6776Y17858D01* X6773Y17850D01* X6771Y17841D01* X6771Y17833D01* X6772Y17824D01* X6775Y17816D01* X6779Y17808D01* X6785Y17801D01* X6792Y17796D01* X6799Y17791D01* X6807Y17788D01* X6833Y17779D01* X6858Y17768D01* X6881Y17755D01* X6884Y17754D01* Y17246D01* X6862Y17233D01* X6838Y17222D01* X6812Y17213D01* X6804Y17209D01* X6797Y17205D01* X6790Y17199D01* X6785Y17192D01* X6781Y17184D01* X6778Y17176D01* X6777Y17167D01* X6777Y17159D01* X6779Y17150D01* X6782Y17142D01* X6787Y17135D01* X6793Y17128D01* X6800Y17123D01* X6807Y17119D01* X6816Y17116D01* X6824Y17115D01* X6833Y17115D01* X6841Y17117D01* X6876Y17129D01* X6884Y17133D01* Y15874D01* X6855Y15884D01* X6846Y15886D01* X6837Y15886D01* X6829Y15885D01* X6821Y15882D01* X6813Y15878D01* X6806Y15872D01* X6800Y15865D01* X6796Y15858D01* X6793Y15850D01* X6791Y15841D01* X6791Y15833D01* X6792Y15824D01* X6795Y15816D01* X6799Y15808D01* X6805Y15801D01* X6812Y15796D01* X6819Y15791D01* X6827Y15788D01* X6853Y15779D01* X6878Y15768D01* X6884Y15765D01* Y15234D01* X6882Y15233D01* X6858Y15222D01* X6832Y15213D01* X6824Y15209D01* X6817Y15205D01* X6810Y15199D01* X6805Y15192D01* X6801Y15184D01* X6798Y15176D01* X6797Y15167D01* X6797Y15159D01* X6799Y15150D01* X6802Y15142D01* X6807Y15135D01* X6813Y15128D01* X6820Y15123D01* X6827Y15119D01* X6836Y15116D01* X6844Y15115D01* X6853Y15115D01* X6861Y15117D01* X6884Y15125D01* Y13881D01* X6875Y13884D01* X6866Y13886D01* X6857Y13886D01* X6849Y13885D01* X6841Y13882D01* X6833Y13878D01* X6826Y13872D01* X6820Y13865D01* X6816Y13858D01* X6813Y13850D01* X6811Y13841D01* X6811Y13833D01* X6812Y13824D01* X6815Y13816D01* X6819Y13808D01* X6825Y13801D01* X6832Y13796D01* X6839Y13791D01* X6847Y13788D01* X6873Y13779D01* X6884Y13774D01* Y13225D01* X6878Y13222D01* X6852Y13213D01* X6844Y13209D01* X6837Y13205D01* X6830Y13199D01* X6825Y13192D01* X6821Y13184D01* X6818Y13176D01* X6817Y13167D01* X6817Y13159D01* X6819Y13150D01* X6822Y13142D01* X6827Y13135D01* X6833Y13128D01* X6840Y13123D01* X6847Y13119D01* X6856Y13116D01* X6864Y13115D01* X6873Y13115D01* X6881Y13117D01* X6884Y13118D01* Y11886D01* X6877Y11886D01* X6869Y11885D01* X6861Y11882D01* X6853Y11878D01* X6846Y11872D01* X6840Y11865D01* X6836Y11858D01* X6833Y11850D01* X6831Y11841D01* X6831Y11833D01* X6832Y11824D01* X6835Y11816D01* X6839Y11808D01* X6845Y11801D01* X6852Y11796D01* X6859Y11791D01* X6867Y11788D01* X6884Y11782D01* Y11217D01* X6872Y11213D01* X6864Y11209D01* X6857Y11205D01* X6850Y11199D01* X6845Y11192D01* X6841Y11184D01* X6838Y11176D01* X6837Y11167D01* X6837Y11159D01* X6839Y11150D01* X6842Y11142D01* X6847Y11135D01* X6853Y11128D01* X6860Y11123D01* X6867Y11119D01* X6876Y11116D01* X6884Y11115D01* Y9883D01* X6881Y9882D01* X6873Y9878D01* X6866Y9872D01* X6860Y9865D01* X6856Y9858D01* X6853Y9850D01* X6851Y9841D01* X6851Y9833D01* X6852Y9824D01* X6855Y9816D01* X6859Y9808D01* X6865Y9801D01* X6872Y9796D01* X6879Y9791D01* X6884Y9789D01* Y9209D01* X6877Y9205D01* X6870Y9199D01* X6865Y9192D01* X6861Y9184D01* X6858Y9176D01* X6857Y9167D01* X6857Y9159D01* X6859Y9150D01* X6862Y9142D01* X6867Y9135D01* X6873Y9128D01* X6880Y9123D01* X6884Y9121D01* Y7870D01* X6880Y7865D01* X6876Y7858D01* X6873Y7850D01* X6871Y7841D01* X6871Y7833D01* X6872Y7824D01* X6875Y7816D01* X6879Y7808D01* X6884Y7802D01* Y7190D01* X6881Y7184D01* X6878Y7176D01* X6877Y7167D01* X6877Y7159D01* X6879Y7150D01* X6882Y7142D01* X6884Y7140D01* Y0D01* X6625D01* Y1196D01* X6645Y1179D01* X6675Y1159D01* X6707Y1141D01* X6740Y1127D01* X6774Y1115D01* X6783Y1113D01* X6792Y1113D01* X6800Y1115D01* X6808Y1117D01* X6816Y1122D01* X6823Y1127D01* X6829Y1134D01* X6833Y1141D01* X6836Y1149D01* X6838Y1158D01* X6838Y1167D01* X6837Y1175D01* X6834Y1183D01* X6830Y1191D01* X6824Y1198D01* X6817Y1204D01* X6810Y1208D01* X6802Y1211D01* X6776Y1220D01* X6751Y1231D01* X6728Y1244D01* X6705Y1259D01* X6684Y1276D01* X6665Y1295D01* X6647Y1316D01* X6632Y1338D01* X6625Y1349D01* Y1650D01* X6629Y1657D01* X6644Y1679D01* X6661Y1700D01* X6680Y1719D01* X6701Y1737D01* X6723Y1752D01* X6747Y1766D01* X6771Y1777D01* X6797Y1786D01* X6805Y1790D01* X6812Y1794D01* X6819Y1800D01* X6824Y1807D01* X6828Y1815D01* X6831Y1823D01* X6832Y1832D01* X6832Y1840D01* X6830Y1849D01* X6827Y1857D01* X6822Y1864D01* X6816Y1871D01* X6809Y1876D01* X6802Y1880D01* X6793Y1883D01* X6785Y1884D01* X6776Y1884D01* X6768Y1882D01* X6733Y1870D01* X6701Y1855D01* X6669Y1837D01* X6640Y1816D01* X6625Y1804D01* Y3179D01* X6625Y3179D01* X6655Y3159D01* X6687Y3141D01* X6720Y3127D01* X6754Y3115D01* X6763Y3113D01* X6772Y3113D01* X6780Y3115D01* X6788Y3117D01* X6796Y3122D01* X6803Y3127D01* X6809Y3134D01* X6813Y3141D01* X6816Y3149D01* X6818Y3158D01* X6818Y3167D01* X6817Y3175D01* X6814Y3183D01* X6810Y3191D01* X6804Y3198D01* X6797Y3204D01* X6790Y3208D01* X6782Y3211D01* X6756Y3220D01* X6731Y3231D01* X6708Y3244D01* X6685Y3259D01* X6664Y3276D01* X6645Y3295D01* X6627Y3316D01* X6625Y3319D01* Y3680D01* X6641Y3700D01* X6660Y3719D01* X6681Y3737D01* X6703Y3752D01* X6727Y3766D01* X6751Y3777D01* X6777Y3786D01* X6785Y3790D01* X6792Y3794D01* X6799Y3800D01* X6804Y3807D01* X6808Y3815D01* X6811Y3823D01* X6812Y3832D01* X6812Y3840D01* X6810Y3849D01* X6807Y3857D01* X6802Y3864D01* X6796Y3871D01* X6789Y3876D01* X6782Y3880D01* X6773Y3883D01* X6765Y3884D01* X6756Y3884D01* X6748Y3882D01* X6713Y3870D01* X6681Y3855D01* X6649Y3837D01* X6625Y3820D01* Y5166D01* X6635Y5159D01* X6667Y5141D01* X6700Y5127D01* X6734Y5115D01* X6743Y5113D01* X6752Y5113D01* X6760Y5115D01* X6768Y5117D01* X6776Y5122D01* X6783Y5127D01* X6789Y5134D01* X6793Y5141D01* X6796Y5149D01* X6798Y5158D01* X6798Y5167D01* X6797Y5175D01* X6794Y5183D01* X6790Y5191D01* X6784Y5198D01* X6777Y5204D01* X6770Y5208D01* X6762Y5211D01* X6736Y5220D01* X6711Y5231D01* X6688Y5244D01* X6665Y5259D01* X6644Y5276D01* X6625Y5295D01* Y5704D01* X6640Y5719D01* X6661Y5737D01* X6683Y5752D01* X6707Y5766D01* X6731Y5777D01* X6757Y5786D01* X6765Y5790D01* X6772Y5794D01* X6779Y5800D01* X6784Y5807D01* X6788Y5815D01* X6791Y5823D01* X6792Y5832D01* X6792Y5840D01* X6790Y5849D01* X6787Y5857D01* X6782Y5864D01* X6776Y5871D01* X6769Y5876D01* X6762Y5880D01* X6753Y5883D01* X6745Y5884D01* X6736Y5884D01* X6728Y5882D01* X6693Y5870D01* X6661Y5855D01* X6629Y5837D01* X6625Y5834D01* Y7153D01* X6647Y7141D01* X6680Y7127D01* X6714Y7115D01* X6723Y7113D01* X6732Y7113D01* X6740Y7115D01* X6748Y7117D01* X6756Y7122D01* X6763Y7127D01* X6769Y7134D01* X6773Y7141D01* X6776Y7149D01* X6778Y7158D01* X6778Y7167D01* X6777Y7175D01* X6774Y7183D01* X6770Y7191D01* X6764Y7198D01* X6757Y7204D01* X6750Y7208D01* X6742Y7211D01* X6716Y7220D01* X6691Y7231D01* X6668Y7244D01* X6645Y7259D01* X6625Y7276D01* Y7723D01* X6641Y7737D01* X6663Y7752D01* X6687Y7766D01* X6711Y7777D01* X6737Y7786D01* X6745Y7790D01* X6752Y7794D01* X6759Y7800D01* X6764Y7807D01* X6768Y7815D01* X6771Y7823D01* X6772Y7832D01* X6772Y7840D01* X6770Y7849D01* X6767Y7857D01* X6762Y7864D01* X6756Y7871D01* X6749Y7876D01* X6742Y7880D01* X6733Y7883D01* X6725Y7884D01* X6716Y7884D01* X6708Y7882D01* X6673Y7870D01* X6641Y7855D01* X6625Y7846D01* Y9142D01* X6627Y9141D01* X6660Y9127D01* X6694Y9115D01* X6703Y9113D01* X6712Y9113D01* X6720Y9115D01* X6728Y9117D01* X6736Y9122D01* X6743Y9127D01* X6749Y9134D01* X6753Y9141D01* X6756Y9149D01* X6758Y9158D01* X6758Y9167D01* X6757Y9175D01* X6754Y9183D01* X6750Y9191D01* X6744Y9198D01* X6737Y9204D01* X6730Y9208D01* X6722Y9211D01* X6696Y9220D01* X6671Y9231D01* X6648Y9244D01* X6625Y9259D01* Y9740D01* X6643Y9752D01* X6667Y9766D01* X6691Y9777D01* X6717Y9786D01* X6725Y9790D01* X6732Y9794D01* X6739Y9800D01* X6744Y9807D01* X6748Y9815D01* X6751Y9823D01* X6752Y9832D01* X6752Y9840D01* X6750Y9849D01* X6747Y9857D01* X6742Y9864D01* X6736Y9871D01* X6729Y9876D01* X6722Y9880D01* X6713Y9883D01* X6705Y9884D01* X6696Y9884D01* X6688Y9882D01* X6653Y9870D01* X6625Y9857D01* Y11133D01* X6640Y11127D01* X6674Y11115D01* X6683Y11113D01* X6692Y11113D01* X6700Y11115D01* X6708Y11117D01* X6716Y11122D01* X6723Y11127D01* X6729Y11134D01* X6733Y11141D01* X6736Y11149D01* X6738Y11158D01* X6738Y11167D01* X6737Y11175D01* X6734Y11183D01* X6730Y11191D01* X6724Y11198D01* X6717Y11204D01* X6710Y11208D01* X6702Y11211D01* X6676Y11220D01* X6651Y11231D01* X6628Y11244D01* X6625Y11246D01* Y11754D01* X6647Y11766D01* X6671Y11777D01* X6697Y11786D01* X6705Y11790D01* X6712Y11794D01* X6719Y11800D01* X6724Y11807D01* X6728Y11815D01* X6731Y11823D01* X6732Y11832D01* X6732Y11840D01* X6730Y11849D01* X6727Y11857D01* X6722Y11864D01* X6716Y11871D01* X6709Y11876D01* X6702Y11880D01* X6693Y11883D01* X6685Y11884D01* X6676Y11884D01* X6668Y11882D01* X6633Y11870D01* X6625Y11866D01* Y13125D01* X6654Y13115D01* X6663Y13113D01* X6672Y13113D01* X6680Y13115D01* X6688Y13117D01* X6696Y13122D01* X6703Y13127D01* X6709Y13134D01* X6713Y13141D01* X6716Y13149D01* X6718Y13158D01* X6718Y13167D01* X6717Y13175D01* X6714Y13183D01* X6710Y13191D01* X6704Y13198D01* X6697Y13204D01* X6690Y13208D01* X6682Y13211D01* X6656Y13220D01* X6631Y13231D01* X6625Y13234D01* Y13765D01* X6627Y13766D01* X6651Y13777D01* X6677Y13786D01* X6685Y13790D01* X6692Y13794D01* X6699Y13800D01* X6704Y13807D01* X6708Y13815D01* X6711Y13823D01* X6712Y13832D01* X6712Y13840D01* X6710Y13849D01* X6707Y13857D01* X6702Y13864D01* X6696Y13871D01* X6689Y13876D01* X6682Y13880D01* X6673Y13883D01* X6665Y13884D01* X6656Y13884D01* X6648Y13882D01* X6625Y13874D01* Y15118D01* X6634Y15115D01* X6643Y15113D01* X6652Y15113D01* X6660Y15115D01* X6668Y15117D01* X6676Y15122D01* X6683Y15127D01* X6689Y15134D01* X6693Y15141D01* X6696Y15149D01* X6698Y15158D01* X6698Y15167D01* X6697Y15175D01* X6694Y15183D01* X6690Y15191D01* X6684Y15198D01* X6677Y15204D01* X6670Y15208D01* X6662Y15211D01* X6636Y15220D01* X6625Y15225D01* Y15775D01* X6631Y15777D01* X6657Y15786D01* X6665Y15790D01* X6672Y15794D01* X6679Y15800D01* X6684Y15807D01* X6688Y15815D01* X6691Y15823D01* X6692Y15832D01* X6692Y15840D01* X6690Y15849D01* X6687Y15857D01* X6682Y15864D01* X6676Y15871D01* X6669Y15876D01* X6662Y15880D01* X6653Y15883D01* X6645Y15884D01* X6636Y15884D01* X6628Y15882D01* X6625Y15881D01* Y17113D01* X6632Y17113D01* X6640Y17115D01* X6648Y17117D01* X6656Y17122D01* X6663Y17127D01* X6669Y17134D01* X6673Y17141D01* X6676Y17149D01* X6678Y17158D01* X6678Y17167D01* X6677Y17175D01* X6674Y17183D01* X6670Y17191D01* X6664Y17198D01* X6657Y17204D01* X6650Y17208D01* X6642Y17211D01* X6625Y17217D01* Y17782D01* X6637Y17786D01* X6645Y17790D01* X6652Y17794D01* X6659Y17800D01* X6664Y17807D01* X6668Y17815D01* X6671Y17823D01* X6672Y17832D01* X6672Y17840D01* X6670Y17849D01* X6667Y17857D01* X6662Y17864D01* X6656Y17871D01* X6649Y17876D01* X6642Y17880D01* X6633Y17883D01* X6625Y17884D01* Y19116D01* X6628Y19117D01* X6636Y19122D01* X6643Y19127D01* X6649Y19134D01* X6653Y19141D01* X6656Y19149D01* X6658Y19158D01* X6658Y19167D01* X6657Y19175D01* X6654Y19183D01* X6650Y19191D01* X6644Y19198D01* X6637Y19204D01* X6630Y19208D01* X6625Y19210D01* Y19790D01* X6632Y19794D01* X6639Y19800D01* X6644Y19807D01* X6648Y19815D01* X6651Y19823D01* X6652Y19832D01* X6652Y19840D01* X6650Y19849D01* X6647Y19857D01* X6642Y19864D01* X6636Y19871D01* X6629Y19876D01* X6625Y19878D01* Y21130D01* X6629Y21134D01* X6633Y21141D01* X6636Y21149D01* X6638Y21158D01* X6638Y21167D01* X6637Y21175D01* X6634Y21183D01* X6630Y21191D01* X6625Y21197D01* Y21809D01* X6628Y21815D01* X6631Y21823D01* X6632Y21832D01* X6632Y21840D01* X6630Y21849D01* X6627Y21857D01* X6625Y21859D01* Y33138D01* G37* G36* X6884Y40000D02*X7064D01* Y21625D01* X7055Y21651D01* X7040Y21683D01* X7022Y21715D01* X7001Y21744D01* X6977Y21772D01* X6952Y21797D01* X6924Y21820D01* X6894Y21840D01* X6884Y21846D01* Y23165D01* X6909Y23183D01* X6937Y23207D01* X6962Y23232D01* X6985Y23260D01* X7005Y23290D01* X7023Y23322D01* X7037Y23355D01* X7049Y23389D01* X7051Y23398D01* X7051Y23407D01* X7050Y23415D01* X7047Y23423D01* X7042Y23431D01* X7037Y23438D01* X7030Y23444D01* X7023Y23448D01* X7015Y23451D01* X7006Y23453D01* X6997Y23453D01* X6989Y23452D01* X6981Y23449D01* X6973Y23445D01* X6966Y23439D01* X6960Y23433D01* X6956Y23425D01* X6953Y23417D01* X6944Y23391D01* X6933Y23366D01* X6920Y23343D01* X6905Y23320D01* X6888Y23299D01* X6884Y23295D01* Y23704D01* X6884Y23704D01* X6902Y23683D01* X6917Y23661D01* X6931Y23637D01* X6942Y23613D01* X6951Y23587D01* X6955Y23579D01* X6959Y23572D01* X6965Y23565D01* X6972Y23560D01* X6980Y23556D01* X6988Y23553D01* X6997Y23552D01* X7005Y23552D01* X7014Y23554D01* X7022Y23557D01* X7029Y23562D01* X7036Y23568D01* X7041Y23575D01* X7045Y23582D01* X7048Y23591D01* X7049Y23599D01* X7049Y23608D01* X7047Y23617D01* X7035Y23651D01* X7020Y23683D01* X7002Y23715D01* X6981Y23744D01* X6957Y23772D01* X6932Y23797D01* X6904Y23820D01* X6884Y23834D01* Y25180D01* X6889Y25183D01* X6917Y25207D01* X6942Y25232D01* X6965Y25260D01* X6985Y25290D01* X7003Y25322D01* X7017Y25355D01* X7029Y25389D01* X7031Y25398D01* X7031Y25407D01* X7030Y25415D01* X7027Y25423D01* X7022Y25431D01* X7017Y25438D01* X7010Y25444D01* X7003Y25448D01* X6995Y25451D01* X6986Y25453D01* X6977Y25453D01* X6969Y25452D01* X6961Y25449D01* X6953Y25445D01* X6946Y25439D01* X6940Y25433D01* X6936Y25425D01* X6933Y25417D01* X6924Y25391D01* X6913Y25366D01* X6900Y25343D01* X6885Y25320D01* X6884Y25319D01* Y25680D01* X6897Y25661D01* X6911Y25637D01* X6922Y25613D01* X6931Y25587D01* X6935Y25579D01* X6939Y25572D01* X6945Y25565D01* X6952Y25560D01* X6960Y25556D01* X6968Y25553D01* X6977Y25552D01* X6985Y25552D01* X6994Y25554D01* X7002Y25557D01* X7009Y25562D01* X7016Y25568D01* X7021Y25575D01* X7025Y25582D01* X7028Y25591D01* X7029Y25599D01* X7029Y25608D01* X7027Y25617D01* X7015Y25651D01* X7000Y25683D01* X6982Y25715D01* X6961Y25744D01* X6937Y25772D01* X6912Y25797D01* X6884Y25820D01* Y27196D01* X6897Y27207D01* X6922Y27232D01* X6945Y27260D01* X6965Y27290D01* X6983Y27322D01* X6997Y27355D01* X7009Y27389D01* X7011Y27398D01* X7011Y27407D01* X7010Y27415D01* X7007Y27423D01* X7002Y27431D01* X6997Y27438D01* X6990Y27444D01* X6983Y27448D01* X6975Y27451D01* X6966Y27453D01* X6957Y27453D01* X6949Y27452D01* X6941Y27449D01* X6933Y27445D01* X6926Y27439D01* X6920Y27433D01* X6916Y27425D01* X6913Y27417D01* X6904Y27391D01* X6893Y27366D01* X6884Y27350D01* Y27650D01* X6891Y27637D01* X6902Y27613D01* X6911Y27587D01* X6915Y27579D01* X6919Y27572D01* X6925Y27565D01* X6932Y27560D01* X6940Y27556D01* X6948Y27553D01* X6957Y27552D01* X6965Y27552D01* X6974Y27554D01* X6982Y27557D01* X6989Y27562D01* X6996Y27568D01* X7001Y27575D01* X7005Y27582D01* X7008Y27591D01* X7009Y27599D01* X7009Y27608D01* X7007Y27617D01* X6995Y27651D01* X6980Y27683D01* X6962Y27715D01* X6941Y27744D01* X6917Y27772D01* X6892Y27797D01* X6884Y27804D01* Y29214D01* X6902Y29232D01* X6925Y29260D01* X6945Y29290D01* X6963Y29322D01* X6977Y29355D01* X6989Y29389D01* X6991Y29398D01* X6991Y29407D01* X6990Y29415D01* X6987Y29423D01* X6982Y29431D01* X6977Y29438D01* X6970Y29444D01* X6963Y29448D01* X6955Y29451D01* X6946Y29453D01* X6937Y29453D01* X6929Y29452D01* X6921Y29449D01* X6913Y29445D01* X6906Y29439D01* X6900Y29433D01* X6896Y29425D01* X6893Y29417D01* X6884Y29391D01* X6884Y29391D01* Y29608D01* X6891Y29587D01* X6895Y29579D01* X6899Y29572D01* X6905Y29565D01* X6912Y29560D01* X6920Y29556D01* X6928Y29553D01* X6937Y29552D01* X6945Y29552D01* X6954Y29554D01* X6962Y29557D01* X6969Y29562D01* X6976Y29568D01* X6981Y29575D01* X6985Y29582D01* X6988Y29591D01* X6989Y29599D01* X6989Y29608D01* X6987Y29617D01* X6975Y29651D01* X6960Y29683D01* X6942Y29715D01* X6921Y29744D01* X6897Y29772D01* X6884Y29785D01* Y31235D01* X6905Y31260D01* X6925Y31290D01* X6943Y31322D01* X6957Y31355D01* X6969Y31389D01* X6971Y31398D01* X6971Y31407D01* X6970Y31415D01* X6967Y31423D01* X6962Y31431D01* X6957Y31438D01* X6950Y31444D01* X6943Y31448D01* X6935Y31451D01* X6926Y31453D01* X6917Y31453D01* X6909Y31452D01* X6901Y31449D01* X6893Y31445D01* X6886Y31439D01* X6884Y31437D01* Y31567D01* X6885Y31565D01* X6892Y31560D01* X6900Y31556D01* X6908Y31553D01* X6917Y31552D01* X6925Y31552D01* X6934Y31554D01* X6942Y31557D01* X6949Y31562D01* X6956Y31568D01* X6961Y31575D01* X6965Y31582D01* X6968Y31591D01* X6969Y31599D01* X6969Y31608D01* X6967Y31617D01* X6955Y31651D01* X6940Y31683D01* X6922Y31715D01* X6901Y31744D01* X6884Y31764D01* Y33259D01* X6885Y33260D01* X6905Y33290D01* X6923Y33322D01* X6937Y33355D01* X6949Y33389D01* X6951Y33398D01* X6951Y33407D01* X6950Y33415D01* X6947Y33423D01* X6942Y33431D01* X6937Y33438D01* X6930Y33444D01* X6923Y33448D01* X6915Y33451D01* X6906Y33453D01* X6897Y33453D01* X6889Y33452D01* X6884Y33450D01* Y33555D01* X6888Y33553D01* X6897Y33552D01* X6905Y33552D01* X6914Y33554D01* X6922Y33557D01* X6929Y33562D01* X6936Y33568D01* X6941Y33575D01* X6945Y33582D01* X6948Y33591D01* X6949Y33599D01* X6949Y33608D01* X6947Y33617D01* X6935Y33651D01* X6920Y33683D01* X6902Y33715D01* X6884Y33740D01* Y35288D01* X6885Y35290D01* X6903Y35322D01* X6917Y35355D01* X6929Y35389D01* X6931Y35398D01* X6931Y35407D01* X6930Y35415D01* X6927Y35423D01* X6922Y35431D01* X6917Y35438D01* X6910Y35444D01* X6903Y35448D01* X6895Y35451D01* X6886Y35453D01* X6884D01* Y35552D01* X6885D01* X6894Y35554D01* X6902Y35557D01* X6909Y35562D01* X6916Y35568D01* X6921Y35575D01* X6925Y35582D01* X6928Y35591D01* X6929Y35599D01* X6929Y35608D01* X6927Y35617D01* X6915Y35651D01* X6900Y35683D01* X6884Y35711D01* Y37324D01* X6897Y37355D01* X6909Y37389D01* X6911Y37398D01* X6911Y37407D01* X6910Y37415D01* X6907Y37423D01* X6902Y37431D01* X6897Y37438D01* X6890Y37444D01* X6884Y37447D01* Y37559D01* X6889Y37562D01* X6896Y37568D01* X6901Y37575D01* X6905Y37582D01* X6908Y37591D01* X6909Y37599D01* X6909Y37608D01* X6907Y37617D01* X6895Y37651D01* X6884Y37674D01* Y39374D01* X6889Y39389D01* X6891Y39398D01* X6891Y39407D01* X6890Y39415D01* X6887Y39423D01* X6884Y39428D01* Y39580D01* X6885Y39582D01* X6888Y39591D01* X6889Y39599D01* X6889Y39608D01* X6887Y39617D01* X6884Y39625D01* Y40000D01* G37* G36* X7064Y0D02*X6884D01* Y7140D01* X6887Y7135D01* X6893Y7128D01* X6900Y7123D01* X6907Y7119D01* X6916Y7116D01* X6924Y7115D01* X6933Y7115D01* X6941Y7117D01* X6976Y7129D01* X7008Y7144D01* X7040Y7162D01* X7064Y7180D01* Y5834D01* X7054Y5840D01* X7022Y5858D01* X6989Y5873D01* X6955Y5884D01* X6946Y5886D01* X6937Y5886D01* X6929Y5885D01* X6921Y5882D01* X6913Y5878D01* X6906Y5872D01* X6900Y5865D01* X6896Y5858D01* X6893Y5850D01* X6891Y5841D01* X6891Y5833D01* X6892Y5824D01* X6895Y5816D01* X6899Y5808D01* X6905Y5801D01* X6912Y5796D01* X6919Y5791D01* X6927Y5788D01* X6953Y5779D01* X6978Y5768D01* X7001Y5755D01* X7024Y5740D01* X7045Y5723D01* X7064Y5704D01* Y5295D01* X7049Y5280D01* X7028Y5262D01* X7006Y5247D01* X6982Y5233D01* X6958Y5222D01* X6932Y5213D01* X6924Y5209D01* X6917Y5205D01* X6910Y5199D01* X6905Y5192D01* X6901Y5184D01* X6898Y5176D01* X6897Y5167D01* X6897Y5159D01* X6899Y5150D01* X6902Y5142D01* X6907Y5135D01* X6913Y5128D01* X6920Y5123D01* X6927Y5119D01* X6936Y5116D01* X6944Y5115D01* X6953Y5115D01* X6961Y5117D01* X6996Y5129D01* X7028Y5144D01* X7060Y5162D01* X7064Y5165D01* Y3846D01* X7042Y3858D01* X7009Y3873D01* X6975Y3884D01* X6966Y3886D01* X6957Y3886D01* X6949Y3885D01* X6941Y3882D01* X6933Y3878D01* X6926Y3872D01* X6920Y3865D01* X6916Y3858D01* X6913Y3850D01* X6911Y3841D01* X6911Y3833D01* X6912Y3824D01* X6915Y3816D01* X6919Y3808D01* X6925Y3801D01* X6932Y3796D01* X6939Y3791D01* X6947Y3788D01* X6973Y3779D01* X6998Y3768D01* X7021Y3755D01* X7044Y3740D01* X7064Y3724D01* Y3276D01* X7048Y3262D01* X7026Y3247D01* X7002Y3233D01* X6978Y3222D01* X6952Y3213D01* X6944Y3209D01* X6937Y3205D01* X6930Y3199D01* X6925Y3192D01* X6921Y3184D01* X6918Y3176D01* X6917Y3167D01* X6917Y3159D01* X6919Y3150D01* X6922Y3142D01* X6927Y3135D01* X6933Y3128D01* X6940Y3123D01* X6947Y3119D01* X6956Y3116D01* X6964Y3115D01* X6973Y3115D01* X6981Y3117D01* X7016Y3129D01* X7048Y3144D01* X7064Y3153D01* Y1857D01* X7062Y1858D01* X7029Y1873D01* X6995Y1884D01* X6986Y1886D01* X6977Y1886D01* X6969Y1885D01* X6961Y1882D01* X6953Y1878D01* X6946Y1872D01* X6940Y1865D01* X6936Y1858D01* X6933Y1850D01* X6931Y1841D01* X6931Y1833D01* X6932Y1824D01* X6935Y1816D01* X6939Y1808D01* X6945Y1801D01* X6952Y1796D01* X6959Y1791D01* X6967Y1788D01* X6993Y1779D01* X7018Y1768D01* X7041Y1755D01* X7064Y1740D01* Y1259D01* X7046Y1247D01* X7022Y1233D01* X6998Y1222D01* X6972Y1213D01* X6964Y1209D01* X6957Y1205D01* X6950Y1199D01* X6945Y1192D01* X6941Y1184D01* X6938Y1176D01* X6937Y1167D01* X6937Y1159D01* X6939Y1150D01* X6942Y1142D01* X6947Y1135D01* X6953Y1128D01* X6960Y1123D01* X6967Y1119D01* X6976Y1116D01* X6984Y1115D01* X6993Y1115D01* X7001Y1117D01* X7036Y1129D01* X7064Y1142D01* Y0D01* G37* G36* Y7319D02*X7048Y7299D01* X7029Y7280D01* X7008Y7262D01* X6986Y7247D01* X6962Y7233D01* X6938Y7222D01* X6912Y7213D01* X6904Y7209D01* X6897Y7205D01* X6890Y7199D01* X6885Y7192D01* X6884Y7190D01* Y7802D01* X6885Y7801D01* X6892Y7796D01* X6899Y7791D01* X6907Y7788D01* X6933Y7779D01* X6958Y7768D01* X6981Y7755D01* X7004Y7740D01* X7025Y7723D01* X7044Y7704D01* X7062Y7683D01* X7064Y7680D01* Y7319D01* G37* G36* Y7820D02*X7064Y7820D01* X7034Y7840D01* X7002Y7858D01* X6969Y7873D01* X6935Y7884D01* X6926Y7886D01* X6917Y7886D01* X6909Y7885D01* X6901Y7882D01* X6893Y7878D01* X6886Y7872D01* X6884Y7870D01* Y9121D01* X6887Y9119D01* X6896Y9116D01* X6904Y9115D01* X6913Y9115D01* X6921Y9117D01* X6956Y9129D01* X6988Y9144D01* X7020Y9162D01* X7049Y9183D01* X7064Y9196D01* Y7820D01* G37* G36* Y9350D02*X7060Y9343D01* X7045Y9320D01* X7028Y9299D01* X7009Y9280D01* X6988Y9262D01* X6966Y9247D01* X6942Y9233D01* X6918Y9222D01* X6892Y9213D01* X6884Y9209D01* X6884Y9209D01* Y9789D01* X6887Y9788D01* X6913Y9779D01* X6938Y9768D01* X6961Y9755D01* X6984Y9740D01* X7005Y9723D01* X7024Y9704D01* X7042Y9683D01* X7057Y9661D01* X7064Y9650D01* Y9350D01* G37* G36* Y9804D02*X7044Y9820D01* X7014Y9840D01* X6982Y9858D01* X6949Y9873D01* X6915Y9884D01* X6906Y9886D01* X6897Y9886D01* X6889Y9885D01* X6884Y9883D01* Y11115D01* X6884D01* X6893Y11115D01* X6901Y11117D01* X6936Y11129D01* X6968Y11144D01* X7000Y11162D01* X7029Y11183D01* X7057Y11207D01* X7064Y11214D01* Y9804D01* G37* G36* Y11391D02*X7053Y11366D01* X7040Y11343D01* X7025Y11320D01* X7008Y11299D01* X6989Y11280D01* X6968Y11262D01* X6946Y11247D01* X6922Y11233D01* X6898Y11222D01* X6884Y11217D01* Y11782D01* X6893Y11779D01* X6918Y11768D01* X6941Y11755D01* X6964Y11740D01* X6985Y11723D01* X7004Y11704D01* X7022Y11683D01* X7037Y11661D01* X7051Y11637D01* X7062Y11613D01* X7064Y11608D01* Y11391D01* G37* G36* Y11785D02*X7052Y11797D01* X7024Y11820D01* X6994Y11840D01* X6962Y11858D01* X6929Y11873D01* X6895Y11884D01* X6886Y11886D01* X6884D01* Y13118D01* X6916Y13129D01* X6948Y13144D01* X6980Y13162D01* X7009Y13183D01* X7037Y13207D01* X7062Y13232D01* X7064Y13235D01* Y11785D01* G37* G36* Y13437D02*X7060Y13433D01* X7056Y13425D01* X7053Y13417D01* X7044Y13391D01* X7033Y13366D01* X7020Y13343D01* X7005Y13320D01* X6988Y13299D01* X6969Y13280D01* X6948Y13262D01* X6926Y13247D01* X6902Y13233D01* X6884Y13225D01* Y13774D01* X6898Y13768D01* X6921Y13755D01* X6944Y13740D01* X6965Y13723D01* X6984Y13704D01* X7002Y13683D01* X7017Y13661D01* X7031Y13637D01* X7042Y13613D01* X7051Y13587D01* X7055Y13579D01* X7059Y13572D01* X7064Y13567D01* Y13437D01* G37* G36* Y13764D02*X7057Y13772D01* X7032Y13797D01* X7004Y13820D01* X6974Y13840D01* X6942Y13858D01* X6909Y13873D01* X6884Y13881D01* Y15125D01* X6896Y15129D01* X6928Y15144D01* X6960Y15162D01* X6989Y15183D01* X7017Y15207D01* X7042Y15232D01* X7064Y15259D01* Y13764D01* G37* G36* Y15450D02*X7061Y15449D01* X7053Y15445D01* X7046Y15439D01* X7040Y15433D01* X7036Y15425D01* X7033Y15417D01* X7024Y15391D01* X7013Y15366D01* X7000Y15343D01* X6985Y15320D01* X6968Y15299D01* X6949Y15280D01* X6928Y15262D01* X6906Y15247D01* X6884Y15234D01* Y15765D01* X6901Y15755D01* X6924Y15740D01* X6945Y15723D01* X6964Y15704D01* X6982Y15683D01* X6997Y15661D01* X7011Y15637D01* X7022Y15613D01* X7031Y15587D01* X7035Y15579D01* X7039Y15572D01* X7045Y15565D01* X7052Y15560D01* X7060Y15556D01* X7064Y15555D01* Y15450D01* G37* G36* Y15740D02*X7061Y15744D01* X7037Y15772D01* X7012Y15797D01* X6984Y15820D01* X6954Y15840D01* X6922Y15858D01* X6889Y15873D01* X6884Y15874D01* Y17133D01* X6908Y17144D01* X6940Y17162D01* X6969Y17183D01* X6997Y17207D01* X7022Y17232D01* X7045Y17260D01* X7064Y17288D01* Y15740D01* G37* G36* Y17453D02*X7057Y17453D01* X7049Y17452D01* X7041Y17449D01* X7033Y17445D01* X7026Y17439D01* X7020Y17433D01* X7016Y17425D01* X7013Y17417D01* X7004Y17391D01* X6993Y17366D01* X6980Y17343D01* X6965Y17320D01* X6948Y17299D01* X6929Y17280D01* X6908Y17262D01* X6886Y17247D01* X6884Y17246D01* Y17754D01* X6904Y17740D01* X6925Y17723D01* X6944Y17704D01* X6962Y17683D01* X6977Y17661D01* X6991Y17637D01* X7002Y17613D01* X7011Y17587D01* X7015Y17579D01* X7019Y17572D01* X7025Y17565D01* X7032Y17560D01* X7040Y17556D01* X7048Y17553D01* X7057Y17552D01* X7064Y17552D01* Y17453D01* G37* G36* Y17711D02*X7062Y17715D01* X7041Y17744D01* X7017Y17772D01* X6992Y17797D01* X6964Y17820D01* X6934Y17840D01* X6902Y17858D01* X6884Y17866D01* Y19142D01* X6888Y19144D01* X6920Y19162D01* X6949Y19183D01* X6977Y19207D01* X7002Y19232D01* X7025Y19260D01* X7045Y19290D01* X7063Y19322D01* X7064Y19324D01* Y17711D01* G37* G36* Y19447D02*X7063Y19448D01* X7055Y19451D01* X7046Y19453D01* X7037Y19453D01* X7029Y19452D01* X7021Y19449D01* X7013Y19445D01* X7006Y19439D01* X7000Y19433D01* X6996Y19425D01* X6993Y19417D01* X6984Y19391D01* X6973Y19366D01* X6960Y19343D01* X6945Y19320D01* X6928Y19299D01* X6909Y19280D01* X6888Y19262D01* X6884Y19259D01* Y19740D01* X6905Y19723D01* X6924Y19704D01* X6942Y19683D01* X6957Y19661D01* X6971Y19637D01* X6982Y19613D01* X6991Y19587D01* X6995Y19579D01* X6999Y19572D01* X7005Y19565D01* X7012Y19560D01* X7020Y19556D01* X7028Y19553D01* X7037Y19552D01* X7045Y19552D01* X7054Y19554D01* X7062Y19557D01* X7064Y19559D01* Y19447D01* G37* G36* Y19674D02*X7060Y19683D01* X7042Y19715D01* X7021Y19744D01* X6997Y19772D01* X6972Y19797D01* X6944Y19820D01* X6914Y19840D01* X6884Y19857D01* Y21153D01* X6900Y21162D01* X6929Y21183D01* X6957Y21207D01* X6982Y21232D01* X7005Y21260D01* X7025Y21290D01* X7043Y21322D01* X7057Y21355D01* X7064Y21374D01* Y19674D01* G37* G36* Y21428D02*X7062Y21431D01* X7057Y21438D01* X7050Y21444D01* X7043Y21448D01* X7035Y21451D01* X7026Y21453D01* X7017Y21453D01* X7009Y21452D01* X7001Y21449D01* X6993Y21445D01* X6986Y21439D01* X6980Y21433D01* X6976Y21425D01* X6973Y21417D01* X6964Y21391D01* X6953Y21366D01* X6940Y21343D01* X6925Y21320D01* X6908Y21299D01* X6889Y21280D01* X6884Y21276D01* Y21724D01* X6885Y21723D01* X6904Y21704D01* X6922Y21683D01* X6937Y21661D01* X6951Y21637D01* X6962Y21613D01* X6971Y21587D01* X6975Y21579D01* X6979Y21572D01* X6985Y21565D01* X6992Y21560D01* X7000Y21556D01* X7008Y21553D01* X7017Y21552D01* X7025Y21552D01* X7034Y21554D01* X7042Y21557D01* X7049Y21562D01* X7056Y21568D01* X7061Y21575D01* X7064Y21580D01* Y21428D01* G37* G36* Y40000D02*X8285D01* Y39834D01* X8260Y39816D01* X8232Y39793D01* X8207Y39767D01* X8184Y39739D01* X8164Y39709D01* X8146Y39677D01* X8132Y39644D01* X8120Y39610D01* X8118Y39601D01* X8118Y39593D01* X8119Y39584D01* X8122Y39576D01* X8127Y39568D01* X8132Y39561D01* X8139Y39556D01* X8146Y39551D01* X8154Y39548D01* X8163Y39546D01* X8172Y39546D01* X8180Y39547D01* X8188Y39550D01* X8196Y39555D01* X8203Y39560D01* X8209Y39567D01* X8213Y39574D01* X8216Y39582D01* X8225Y39608D01* X8236Y39633D01* X8249Y39657D01* X8264Y39679D01* X8281Y39700D01* X8285Y39704D01* Y39295D01* X8285Y39295D01* X8267Y39316D01* X8252Y39338D01* X8238Y39362D01* X8227Y39386D01* X8218Y39412D01* X8214Y39420D01* X8210Y39427D01* X8204Y39434D01* X8197Y39439D01* X8189Y39443D01* X8181Y39446D01* X8172Y39447D01* X8164Y39447D01* X8155Y39445D01* X8147Y39442D01* X8140Y39437D01* X8133Y39431D01* X8128Y39424D01* X8124Y39417D01* X8121Y39409D01* X8120Y39400D01* X8120Y39391D01* X8122Y39383D01* X8134Y39349D01* X8149Y39316D01* X8167Y39284D01* X8188Y39255D01* X8212Y39227D01* X8237Y39202D01* X8265Y39179D01* X8285Y39166D01* Y37820D01* X8280Y37816D01* X8252Y37793D01* X8227Y37767D01* X8204Y37739D01* X8184Y37709D01* X8166Y37677D01* X8152Y37644D01* X8140Y37610D01* X8138Y37601D01* X8138Y37593D01* X8139Y37584D01* X8142Y37576D01* X8147Y37568D01* X8152Y37561D01* X8159Y37556D01* X8166Y37551D01* X8174Y37548D01* X8183Y37546D01* X8192Y37546D01* X8200Y37547D01* X8208Y37550D01* X8216Y37555D01* X8223Y37560D01* X8229Y37567D01* X8233Y37574D01* X8236Y37582D01* X8245Y37608D01* X8256Y37633D01* X8269Y37657D01* X8284Y37679D01* X8285Y37680D01* Y37319D01* X8272Y37338D01* X8258Y37362D01* X8247Y37386D01* X8238Y37412D01* X8234Y37420D01* X8230Y37427D01* X8224Y37434D01* X8217Y37439D01* X8209Y37443D01* X8201Y37446D01* X8192Y37447D01* X8184Y37447D01* X8175Y37445D01* X8167Y37442D01* X8160Y37437D01* X8153Y37431D01* X8148Y37424D01* X8144Y37417D01* X8141Y37409D01* X8140Y37400D01* X8140Y37391D01* X8142Y37383D01* X8154Y37349D01* X8169Y37316D01* X8187Y37284D01* X8208Y37255D01* X8232Y37227D01* X8257Y37202D01* X8285Y37179D01* Y35804D01* X8272Y35793D01* X8247Y35767D01* X8224Y35739D01* X8204Y35709D01* X8186Y35677D01* X8172Y35644D01* X8160Y35610D01* X8158Y35601D01* X8158Y35593D01* X8159Y35584D01* X8162Y35576D01* X8167Y35568D01* X8172Y35561D01* X8179Y35556D01* X8186Y35551D01* X8194Y35548D01* X8203Y35546D01* X8212Y35546D01* X8220Y35547D01* X8228Y35550D01* X8236Y35555D01* X8243Y35560D01* X8249Y35567D01* X8253Y35574D01* X8256Y35582D01* X8265Y35608D01* X8276Y35633D01* X8285Y35650D01* Y35349D01* X8278Y35362D01* X8267Y35386D01* X8258Y35412D01* X8254Y35420D01* X8250Y35427D01* X8244Y35434D01* X8237Y35439D01* X8229Y35443D01* X8221Y35446D01* X8212Y35447D01* X8204Y35447D01* X8195Y35445D01* X8187Y35442D01* X8180Y35437D01* X8173Y35431D01* X8168Y35424D01* X8164Y35417D01* X8161Y35409D01* X8160Y35400D01* X8160Y35391D01* X8162Y35383D01* X8174Y35349D01* X8189Y35316D01* X8207Y35284D01* X8228Y35255D01* X8252Y35227D01* X8277Y35202D01* X8285Y35196D01* Y33785D01* X8267Y33767D01* X8244Y33739D01* X8224Y33709D01* X8206Y33677D01* X8192Y33644D01* X8180Y33610D01* X8178Y33601D01* X8178Y33593D01* X8179Y33584D01* X8182Y33576D01* X8187Y33568D01* X8192Y33561D01* X8199Y33556D01* X8206Y33551D01* X8214Y33548D01* X8223Y33546D01* X8232Y33546D01* X8240Y33547D01* X8248Y33550D01* X8256Y33555D01* X8263Y33560D01* X8269Y33567D01* X8273Y33574D01* X8276Y33582D01* X8285Y33608D01* X8285Y33609D01* Y33391D01* X8278Y33412D01* X8274Y33420D01* X8270Y33427D01* X8264Y33434D01* X8257Y33439D01* X8249Y33443D01* X8241Y33446D01* X8232Y33447D01* X8224Y33447D01* X8215Y33445D01* X8207Y33442D01* X8200Y33437D01* X8193Y33431D01* X8188Y33424D01* X8184Y33417D01* X8181Y33409D01* X8180Y33400D01* X8180Y33391D01* X8182Y33383D01* X8194Y33349D01* X8209Y33316D01* X8227Y33284D01* X8248Y33255D01* X8272Y33227D01* X8285Y33214D01* Y31765D01* X8264Y31739D01* X8244Y31709D01* X8226Y31677D01* X8212Y31644D01* X8200Y31610D01* X8198Y31601D01* X8198Y31593D01* X8199Y31584D01* X8202Y31576D01* X8207Y31568D01* X8212Y31561D01* X8219Y31556D01* X8226Y31551D01* X8234Y31548D01* X8243Y31546D01* X8252Y31546D01* X8260Y31547D01* X8268Y31550D01* X8276Y31555D01* X8283Y31560D01* X8285Y31563D01* Y31432D01* X8284Y31434D01* X8277Y31439D01* X8269Y31443D01* X8261Y31446D01* X8252Y31447D01* X8244Y31447D01* X8235Y31445D01* X8227Y31442D01* X8220Y31437D01* X8213Y31431D01* X8208Y31424D01* X8204Y31417D01* X8201Y31409D01* X8200Y31400D01* X8200Y31391D01* X8202Y31383D01* X8214Y31349D01* X8229Y31316D01* X8247Y31284D01* X8268Y31255D01* X8285Y31235D01* Y29740D01* X8284Y29739D01* X8264Y29709D01* X8246Y29677D01* X8232Y29644D01* X8220Y29610D01* X8218Y29601D01* X8218Y29593D01* X8219Y29584D01* X8222Y29576D01* X8227Y29568D01* X8232Y29561D01* X8239Y29556D01* X8246Y29551D01* X8254Y29548D01* X8263Y29546D01* X8272Y29546D01* X8280Y29547D01* X8285Y29549D01* Y29445D01* X8281Y29446D01* X8272Y29447D01* X8264Y29447D01* X8255Y29445D01* X8247Y29442D01* X8240Y29437D01* X8233Y29431D01* X8228Y29424D01* X8224Y29417D01* X8221Y29409D01* X8220Y29400D01* X8220Y29391D01* X8222Y29383D01* X8234Y29349D01* X8249Y29316D01* X8267Y29284D01* X8285Y29259D01* Y27711D01* X8284Y27709D01* X8266Y27677D01* X8252Y27644D01* X8240Y27610D01* X8238Y27601D01* X8238Y27593D01* X8239Y27584D01* X8242Y27576D01* X8247Y27568D01* X8252Y27561D01* X8259Y27556D01* X8266Y27551D01* X8274Y27548D01* X8283Y27546D01* X8285D01* Y27447D01* X8284Y27447D01* X8275Y27445D01* X8267Y27442D01* X8260Y27437D01* X8253Y27431D01* X8248Y27424D01* X8244Y27417D01* X8241Y27409D01* X8240Y27400D01* X8240Y27391D01* X8242Y27383D01* X8254Y27349D01* X8269Y27316D01* X8285Y27288D01* Y25675D01* X8272Y25644D01* X8260Y25610D01* X8258Y25601D01* X8258Y25593D01* X8259Y25584D01* X8262Y25576D01* X8267Y25568D01* X8272Y25561D01* X8279Y25556D01* X8285Y25552D01* Y25441D01* X8280Y25437D01* X8273Y25431D01* X8268Y25424D01* X8264Y25417D01* X8261Y25409D01* X8260Y25400D01* X8260Y25391D01* X8262Y25383D01* X8274Y25349D01* X8285Y25325D01* Y23625D01* X8280Y23610D01* X8278Y23601D01* X8278Y23593D01* X8279Y23584D01* X8282Y23576D01* X8285Y23571D01* Y23419D01* X8284Y23417D01* X8281Y23409D01* X8280Y23400D01* X8280Y23391D01* X8282Y23383D01* X8285Y23374D01* Y0D01* X7064D01* Y1142D01* X7068Y1144D01* X7100Y1162D01* X7129Y1183D01* X7157Y1207D01* X7182Y1232D01* X7205Y1260D01* X7225Y1290D01* X7243Y1322D01* X7257Y1355D01* X7269Y1389D01* X7271Y1398D01* X7271Y1407D01* X7270Y1415D01* X7267Y1423D01* X7262Y1431D01* X7257Y1438D01* X7250Y1444D01* X7243Y1448D01* X7235Y1451D01* X7226Y1453D01* X7217Y1453D01* X7209Y1452D01* X7201Y1449D01* X7193Y1445D01* X7186Y1439D01* X7180Y1433D01* X7176Y1425D01* X7173Y1417D01* X7164Y1391D01* X7153Y1366D01* X7140Y1343D01* X7125Y1320D01* X7108Y1299D01* X7089Y1280D01* X7068Y1262D01* X7064Y1259D01* Y1740D01* X7085Y1723D01* X7104Y1704D01* X7122Y1683D01* X7137Y1661D01* X7151Y1637D01* X7162Y1613D01* X7171Y1587D01* X7175Y1579D01* X7179Y1572D01* X7185Y1565D01* X7192Y1560D01* X7200Y1556D01* X7208Y1553D01* X7217Y1552D01* X7225Y1552D01* X7234Y1554D01* X7242Y1557D01* X7249Y1562D01* X7256Y1568D01* X7261Y1575D01* X7265Y1582D01* X7268Y1591D01* X7269Y1599D01* X7269Y1608D01* X7267Y1617D01* X7255Y1651D01* X7240Y1683D01* X7222Y1715D01* X7201Y1744D01* X7177Y1772D01* X7152Y1797D01* X7124Y1820D01* X7094Y1840D01* X7064Y1857D01* Y3153D01* X7080Y3162D01* X7109Y3183D01* X7137Y3207D01* X7162Y3232D01* X7185Y3260D01* X7205Y3290D01* X7223Y3322D01* X7237Y3355D01* X7249Y3389D01* X7251Y3398D01* X7251Y3407D01* X7250Y3415D01* X7247Y3423D01* X7242Y3431D01* X7237Y3438D01* X7230Y3444D01* X7223Y3448D01* X7215Y3451D01* X7206Y3453D01* X7197Y3453D01* X7189Y3452D01* X7181Y3449D01* X7173Y3445D01* X7166Y3439D01* X7160Y3433D01* X7156Y3425D01* X7153Y3417D01* X7144Y3391D01* X7133Y3366D01* X7120Y3343D01* X7105Y3320D01* X7088Y3299D01* X7069Y3280D01* X7064Y3276D01* Y3724D01* X7065Y3723D01* X7084Y3704D01* X7102Y3683D01* X7117Y3661D01* X7131Y3637D01* X7142Y3613D01* X7151Y3587D01* X7155Y3579D01* X7159Y3572D01* X7165Y3565D01* X7172Y3560D01* X7180Y3556D01* X7188Y3553D01* X7197Y3552D01* X7205Y3552D01* X7214Y3554D01* X7222Y3557D01* X7229Y3562D01* X7236Y3568D01* X7241Y3575D01* X7245Y3582D01* X7248Y3591D01* X7249Y3599D01* X7249Y3608D01* X7247Y3617D01* X7235Y3651D01* X7220Y3683D01* X7202Y3715D01* X7181Y3744D01* X7157Y3772D01* X7132Y3797D01* X7104Y3820D01* X7074Y3840D01* X7064Y3846D01* Y5165D01* X7089Y5183D01* X7117Y5207D01* X7142Y5232D01* X7165Y5260D01* X7185Y5290D01* X7203Y5322D01* X7217Y5355D01* X7229Y5389D01* X7231Y5398D01* X7231Y5407D01* X7230Y5415D01* X7227Y5423D01* X7222Y5431D01* X7217Y5438D01* X7210Y5444D01* X7203Y5448D01* X7195Y5451D01* X7186Y5453D01* X7177Y5453D01* X7169Y5452D01* X7161Y5449D01* X7153Y5445D01* X7146Y5439D01* X7140Y5433D01* X7136Y5425D01* X7133Y5417D01* X7124Y5391D01* X7113Y5366D01* X7100Y5343D01* X7085Y5320D01* X7068Y5299D01* X7064Y5295D01* Y5704D01* X7064Y5704D01* X7082Y5683D01* X7097Y5661D01* X7111Y5637D01* X7122Y5613D01* X7131Y5587D01* X7135Y5579D01* X7139Y5572D01* X7145Y5565D01* X7152Y5560D01* X7160Y5556D01* X7168Y5553D01* X7177Y5552D01* X7185Y5552D01* X7194Y5554D01* X7202Y5557D01* X7209Y5562D01* X7216Y5568D01* X7221Y5575D01* X7225Y5582D01* X7228Y5591D01* X7229Y5599D01* X7229Y5608D01* X7227Y5617D01* X7215Y5651D01* X7200Y5683D01* X7182Y5715D01* X7161Y5744D01* X7137Y5772D01* X7112Y5797D01* X7084Y5820D01* X7064Y5834D01* Y7180D01* X7069Y7183D01* X7097Y7207D01* X7122Y7232D01* X7145Y7260D01* X7165Y7290D01* X7183Y7322D01* X7197Y7355D01* X7209Y7389D01* X7211Y7398D01* X7211Y7407D01* X7210Y7415D01* X7207Y7423D01* X7202Y7431D01* X7197Y7438D01* X7190Y7444D01* X7183Y7448D01* X7175Y7451D01* X7166Y7453D01* X7157Y7453D01* X7149Y7452D01* X7141Y7449D01* X7133Y7445D01* X7126Y7439D01* X7120Y7433D01* X7116Y7425D01* X7113Y7417D01* X7104Y7391D01* X7093Y7366D01* X7080Y7343D01* X7065Y7320D01* X7064Y7319D01* Y7680D01* X7077Y7661D01* X7091Y7637D01* X7102Y7613D01* X7111Y7587D01* X7115Y7579D01* X7119Y7572D01* X7125Y7565D01* X7132Y7560D01* X7140Y7556D01* X7148Y7553D01* X7157Y7552D01* X7165Y7552D01* X7174Y7554D01* X7182Y7557D01* X7189Y7562D01* X7196Y7568D01* X7201Y7575D01* X7205Y7582D01* X7208Y7591D01* X7209Y7599D01* X7209Y7608D01* X7207Y7617D01* X7195Y7651D01* X7180Y7683D01* X7162Y7715D01* X7141Y7744D01* X7117Y7772D01* X7092Y7797D01* X7064Y7820D01* Y9196D01* X7077Y9207D01* X7102Y9232D01* X7125Y9260D01* X7145Y9290D01* X7163Y9322D01* X7177Y9355D01* X7189Y9389D01* X7191Y9398D01* X7191Y9407D01* X7190Y9415D01* X7187Y9423D01* X7182Y9431D01* X7177Y9438D01* X7170Y9444D01* X7163Y9448D01* X7155Y9451D01* X7146Y9453D01* X7137Y9453D01* X7129Y9452D01* X7121Y9449D01* X7113Y9445D01* X7106Y9439D01* X7100Y9433D01* X7096Y9425D01* X7093Y9417D01* X7084Y9391D01* X7073Y9366D01* X7064Y9350D01* Y9650D01* X7071Y9637D01* X7082Y9613D01* X7091Y9587D01* X7095Y9579D01* X7099Y9572D01* X7105Y9565D01* X7112Y9560D01* X7120Y9556D01* X7128Y9553D01* X7137Y9552D01* X7145Y9552D01* X7154Y9554D01* X7162Y9557D01* X7169Y9562D01* X7176Y9568D01* X7181Y9575D01* X7185Y9582D01* X7188Y9591D01* X7189Y9599D01* X7189Y9608D01* X7187Y9617D01* X7175Y9651D01* X7160Y9683D01* X7142Y9715D01* X7121Y9744D01* X7097Y9772D01* X7072Y9797D01* X7064Y9804D01* Y11214D01* X7082Y11232D01* X7105Y11260D01* X7125Y11290D01* X7143Y11322D01* X7157Y11355D01* X7169Y11389D01* X7171Y11398D01* X7171Y11407D01* X7170Y11415D01* X7167Y11423D01* X7162Y11431D01* X7157Y11438D01* X7150Y11444D01* X7143Y11448D01* X7135Y11451D01* X7126Y11453D01* X7117Y11453D01* X7109Y11452D01* X7101Y11449D01* X7093Y11445D01* X7086Y11439D01* X7080Y11433D01* X7076Y11425D01* X7073Y11417D01* X7064Y11391D01* X7064Y11391D01* Y11608D01* X7071Y11587D01* X7075Y11579D01* X7079Y11572D01* X7085Y11565D01* X7092Y11560D01* X7100Y11556D01* X7108Y11553D01* X7117Y11552D01* X7125Y11552D01* X7134Y11554D01* X7142Y11557D01* X7149Y11562D01* X7156Y11568D01* X7161Y11575D01* X7165Y11582D01* X7168Y11591D01* X7169Y11599D01* X7169Y11608D01* X7167Y11617D01* X7155Y11651D01* X7140Y11683D01* X7122Y11715D01* X7101Y11744D01* X7077Y11772D01* X7064Y11785D01* Y13235D01* X7085Y13260D01* X7105Y13290D01* X7123Y13322D01* X7137Y13355D01* X7149Y13389D01* X7151Y13398D01* X7151Y13407D01* X7150Y13415D01* X7147Y13423D01* X7142Y13431D01* X7137Y13438D01* X7130Y13444D01* X7123Y13448D01* X7115Y13451D01* X7106Y13453D01* X7097Y13453D01* X7089Y13452D01* X7081Y13449D01* X7073Y13445D01* X7066Y13439D01* X7064Y13437D01* Y13567D01* X7065Y13565D01* X7072Y13560D01* X7080Y13556D01* X7088Y13553D01* X7097Y13552D01* X7105Y13552D01* X7114Y13554D01* X7122Y13557D01* X7129Y13562D01* X7136Y13568D01* X7141Y13575D01* X7145Y13582D01* X7148Y13591D01* X7149Y13599D01* X7149Y13608D01* X7147Y13617D01* X7135Y13651D01* X7120Y13683D01* X7102Y13715D01* X7081Y13744D01* X7064Y13764D01* Y15259D01* X7065Y15260D01* X7085Y15290D01* X7103Y15322D01* X7117Y15355D01* X7129Y15389D01* X7131Y15398D01* X7131Y15407D01* X7130Y15415D01* X7127Y15423D01* X7122Y15431D01* X7117Y15438D01* X7110Y15444D01* X7103Y15448D01* X7095Y15451D01* X7086Y15453D01* X7077Y15453D01* X7069Y15452D01* X7064Y15450D01* Y15555D01* X7068Y15553D01* X7077Y15552D01* X7085Y15552D01* X7094Y15554D01* X7102Y15557D01* X7109Y15562D01* X7116Y15568D01* X7121Y15575D01* X7125Y15582D01* X7128Y15591D01* X7129Y15599D01* X7129Y15608D01* X7127Y15617D01* X7115Y15651D01* X7100Y15683D01* X7082Y15715D01* X7064Y15740D01* Y17288D01* X7065Y17290D01* X7083Y17322D01* X7097Y17355D01* X7109Y17389D01* X7111Y17398D01* X7111Y17407D01* X7110Y17415D01* X7107Y17423D01* X7102Y17431D01* X7097Y17438D01* X7090Y17444D01* X7083Y17448D01* X7075Y17451D01* X7066Y17453D01* X7064D01* Y17552D01* X7065D01* X7074Y17554D01* X7082Y17557D01* X7089Y17562D01* X7096Y17568D01* X7101Y17575D01* X7105Y17582D01* X7108Y17591D01* X7109Y17599D01* X7109Y17608D01* X7107Y17617D01* X7095Y17651D01* X7080Y17683D01* X7064Y17711D01* Y19324D01* X7077Y19355D01* X7089Y19389D01* X7091Y19398D01* X7091Y19407D01* X7090Y19415D01* X7087Y19423D01* X7082Y19431D01* X7077Y19438D01* X7070Y19444D01* X7064Y19447D01* Y19559D01* X7069Y19562D01* X7076Y19568D01* X7081Y19575D01* X7085Y19582D01* X7088Y19591D01* X7089Y19599D01* X7089Y19608D01* X7087Y19617D01* X7075Y19651D01* X7064Y19674D01* Y21374D01* X7069Y21389D01* X7071Y21398D01* X7071Y21407D01* X7070Y21415D01* X7067Y21423D01* X7064Y21428D01* Y21580D01* X7065Y21582D01* X7068Y21591D01* X7069Y21599D01* X7069Y21608D01* X7067Y21617D01* X7064Y21625D01* Y40000D01* G37* G36* X8285D02*X8485D01* Y35859D01* X8482Y35864D01* X8476Y35871D01* X8469Y35876D01* X8462Y35880D01* X8453Y35883D01* X8445Y35884D01* X8436Y35884D01* X8428Y35882D01* X8393Y35870D01* X8361Y35855D01* X8329Y35837D01* X8300Y35816D01* X8285Y35804D01* Y37179D01* X8285Y37179D01* X8315Y37159D01* X8347Y37141D01* X8380Y37127D01* X8414Y37115D01* X8423Y37113D01* X8432Y37113D01* X8440Y37115D01* X8448Y37117D01* X8456Y37122D01* X8463Y37127D01* X8469Y37134D01* X8473Y37141D01* X8476Y37149D01* X8478Y37158D01* X8478Y37167D01* X8477Y37175D01* X8474Y37183D01* X8470Y37191D01* X8464Y37198D01* X8457Y37204D01* X8450Y37208D01* X8442Y37211D01* X8416Y37220D01* X8391Y37231D01* X8368Y37244D01* X8345Y37259D01* X8324Y37276D01* X8305Y37295D01* X8287Y37316D01* X8285Y37319D01* Y37680D01* X8301Y37700D01* X8320Y37719D01* X8341Y37737D01* X8363Y37752D01* X8387Y37766D01* X8411Y37777D01* X8437Y37786D01* X8445Y37790D01* X8452Y37794D01* X8459Y37800D01* X8464Y37807D01* X8468Y37815D01* X8471Y37823D01* X8472Y37832D01* X8472Y37840D01* X8470Y37849D01* X8467Y37857D01* X8462Y37864D01* X8456Y37871D01* X8449Y37876D01* X8442Y37880D01* X8433Y37883D01* X8425Y37884D01* X8416Y37884D01* X8408Y37882D01* X8373Y37870D01* X8341Y37855D01* X8309Y37837D01* X8285Y37820D01* Y39166D01* X8295Y39159D01* X8327Y39141D01* X8360Y39127D01* X8394Y39115D01* X8403Y39113D01* X8412Y39113D01* X8420Y39115D01* X8428Y39117D01* X8436Y39122D01* X8443Y39127D01* X8449Y39134D01* X8453Y39141D01* X8456Y39149D01* X8458Y39158D01* X8458Y39167D01* X8457Y39175D01* X8454Y39183D01* X8450Y39191D01* X8444Y39198D01* X8437Y39204D01* X8430Y39208D01* X8422Y39211D01* X8396Y39220D01* X8371Y39231D01* X8348Y39244D01* X8325Y39259D01* X8304Y39276D01* X8285Y39295D01* Y39704D01* X8300Y39719D01* X8321Y39737D01* X8343Y39752D01* X8367Y39766D01* X8391Y39777D01* X8417Y39786D01* X8425Y39790D01* X8432Y39794D01* X8439Y39800D01* X8444Y39807D01* X8448Y39815D01* X8451Y39823D01* X8452Y39832D01* X8452Y39840D01* X8450Y39849D01* X8447Y39857D01* X8442Y39864D01* X8436Y39871D01* X8429Y39876D01* X8422Y39880D01* X8413Y39883D01* X8405Y39884D01* X8396Y39884D01* X8388Y39882D01* X8353Y39870D01* X8321Y39855D01* X8289Y39837D01* X8285Y39834D01* Y40000D01* G37* G36* Y35650D02*X8289Y35657D01* X8304Y35679D01* X8321Y35700D01* X8340Y35719D01* X8361Y35737D01* X8383Y35752D01* X8407Y35766D01* X8431Y35777D01* X8457Y35786D01* X8465Y35790D01* X8472Y35794D01* X8479Y35800D01* X8484Y35807D01* X8485Y35809D01* Y35197D01* X8484Y35198D01* X8477Y35204D01* X8470Y35208D01* X8462Y35211D01* X8436Y35220D01* X8411Y35231D01* X8388Y35244D01* X8365Y35259D01* X8344Y35276D01* X8325Y35295D01* X8307Y35316D01* X8292Y35338D01* X8285Y35349D01* Y35650D01* G37* G36* Y35196D02*X8305Y35179D01* X8335Y35159D01* X8367Y35141D01* X8400Y35127D01* X8434Y35115D01* X8443Y35113D01* X8452Y35113D01* X8460Y35115D01* X8468Y35117D01* X8476Y35122D01* X8483Y35127D01* X8485Y35130D01* Y33878D01* X8482Y33880D01* X8473Y33883D01* X8465Y33884D01* X8456Y33884D01* X8448Y33882D01* X8413Y33870D01* X8381Y33855D01* X8349Y33837D01* X8320Y33816D01* X8292Y33793D01* X8285Y33785D01* Y35196D01* G37* G36* Y33609D02*X8296Y33633D01* X8309Y33657D01* X8324Y33679D01* X8341Y33700D01* X8360Y33719D01* X8381Y33737D01* X8403Y33752D01* X8427Y33766D01* X8451Y33777D01* X8477Y33786D01* X8485Y33790D01* X8485Y33790D01* Y33210D01* X8482Y33211D01* X8456Y33220D01* X8431Y33231D01* X8408Y33244D01* X8385Y33259D01* X8364Y33276D01* X8345Y33295D01* X8327Y33316D01* X8312Y33338D01* X8298Y33362D01* X8287Y33386D01* X8285Y33391D01* Y33609D01* G37* G36* Y33214D02*X8297Y33202D01* X8325Y33179D01* X8355Y33159D01* X8387Y33141D01* X8420Y33127D01* X8454Y33115D01* X8463Y33113D01* X8472Y33113D01* X8480Y33115D01* X8485Y33116D01* Y31884D01* X8485Y31884D01* X8476Y31884D01* X8468Y31882D01* X8433Y31870D01* X8401Y31855D01* X8369Y31837D01* X8340Y31816D01* X8312Y31793D01* X8287Y31767D01* X8285Y31765D01* Y33214D01* G37* G36* Y31563D02*X8289Y31567D01* X8293Y31574D01* X8296Y31582D01* X8305Y31608D01* X8316Y31633D01* X8329Y31657D01* X8344Y31679D01* X8361Y31700D01* X8380Y31719D01* X8401Y31737D01* X8423Y31752D01* X8447Y31766D01* X8471Y31777D01* X8485Y31782D01* Y31217D01* X8476Y31220D01* X8451Y31231D01* X8428Y31244D01* X8405Y31259D01* X8384Y31276D01* X8365Y31295D01* X8347Y31316D01* X8332Y31338D01* X8318Y31362D01* X8307Y31386D01* X8298Y31412D01* X8294Y31420D01* X8290Y31427D01* X8285Y31432D01* Y31563D01* G37* G36* Y31235D02*X8292Y31227D01* X8317Y31202D01* X8345Y31179D01* X8375Y31159D01* X8407Y31141D01* X8440Y31127D01* X8474Y31115D01* X8483Y31113D01* X8485D01* Y29881D01* X8453Y29870D01* X8421Y29855D01* X8389Y29837D01* X8360Y29816D01* X8332Y29793D01* X8307Y29767D01* X8285Y29740D01* Y31235D01* G37* G36* Y29549D02*X8288Y29550D01* X8296Y29555D01* X8303Y29560D01* X8309Y29567D01* X8313Y29574D01* X8316Y29582D01* X8325Y29608D01* X8336Y29633D01* X8349Y29657D01* X8364Y29679D01* X8381Y29700D01* X8400Y29719D01* X8421Y29737D01* X8443Y29752D01* X8467Y29766D01* X8485Y29775D01* Y29225D01* X8471Y29231D01* X8448Y29244D01* X8425Y29259D01* X8404Y29276D01* X8385Y29295D01* X8367Y29316D01* X8352Y29338D01* X8338Y29362D01* X8327Y29386D01* X8318Y29412D01* X8314Y29420D01* X8310Y29427D01* X8304Y29434D01* X8297Y29439D01* X8289Y29443D01* X8285Y29445D01* Y29549D01* G37* G36* Y29259D02*X8288Y29255D01* X8312Y29227D01* X8337Y29202D01* X8365Y29179D01* X8395Y29159D01* X8427Y29141D01* X8460Y29127D01* X8485Y29118D01* Y27874D01* X8473Y27870D01* X8441Y27855D01* X8409Y27837D01* X8380Y27816D01* X8352Y27793D01* X8327Y27767D01* X8304Y27739D01* X8285Y27711D01* Y29259D01* G37* G36* Y27546D02*X8292Y27546D01* X8300Y27547D01* X8308Y27550D01* X8316Y27555D01* X8323Y27560D01* X8329Y27567D01* X8333Y27574D01* X8336Y27582D01* X8345Y27608D01* X8356Y27633D01* X8369Y27657D01* X8384Y27679D01* X8401Y27700D01* X8420Y27719D01* X8441Y27737D01* X8463Y27752D01* X8485Y27765D01* Y27234D01* X8468Y27244D01* X8445Y27259D01* X8424Y27276D01* X8405Y27295D01* X8387Y27316D01* X8372Y27338D01* X8358Y27362D01* X8347Y27386D01* X8338Y27412D01* X8334Y27420D01* X8330Y27427D01* X8324Y27434D01* X8317Y27439D01* X8309Y27443D01* X8301Y27446D01* X8292Y27447D01* X8285Y27447D01* Y27546D01* G37* G36* Y27288D02*X8287Y27284D01* X8308Y27255D01* X8332Y27227D01* X8357Y27202D01* X8385Y27179D01* X8415Y27159D01* X8447Y27141D01* X8480Y27127D01* X8485Y27125D01* Y25866D01* X8461Y25855D01* X8429Y25837D01* X8400Y25816D01* X8372Y25793D01* X8347Y25767D01* X8324Y25739D01* X8304Y25709D01* X8286Y25677D01* X8285Y25675D01* Y27288D01* G37* G36* Y25552D02*X8286Y25551D01* X8294Y25548D01* X8303Y25546D01* X8312Y25546D01* X8320Y25547D01* X8328Y25550D01* X8336Y25555D01* X8343Y25560D01* X8349Y25567D01* X8353Y25574D01* X8356Y25582D01* X8365Y25608D01* X8376Y25633D01* X8389Y25657D01* X8404Y25679D01* X8421Y25700D01* X8440Y25719D01* X8461Y25737D01* X8483Y25752D01* X8485Y25754D01* Y25246D01* X8465Y25259D01* X8444Y25276D01* X8425Y25295D01* X8407Y25316D01* X8392Y25338D01* X8378Y25362D01* X8367Y25386D01* X8358Y25412D01* X8354Y25420D01* X8350Y25427D01* X8344Y25434D01* X8337Y25439D01* X8329Y25443D01* X8321Y25446D01* X8312Y25447D01* X8304Y25447D01* X8295Y25445D01* X8287Y25442D01* X8285Y25441D01* Y25552D01* G37* G36* Y25325D02*X8289Y25316D01* X8307Y25284D01* X8328Y25255D01* X8352Y25227D01* X8377Y25202D01* X8405Y25179D01* X8435Y25159D01* X8467Y25141D01* X8485Y25133D01* Y23857D01* X8481Y23855D01* X8449Y23837D01* X8420Y23816D01* X8392Y23793D01* X8367Y23767D01* X8344Y23739D01* X8324Y23709D01* X8306Y23677D01* X8292Y23644D01* X8285Y23625D01* Y25325D01* G37* G36* Y23571D02*X8287Y23568D01* X8292Y23561D01* X8299Y23556D01* X8306Y23551D01* X8314Y23548D01* X8323Y23546D01* X8332Y23546D01* X8340Y23547D01* X8348Y23550D01* X8356Y23555D01* X8363Y23560D01* X8369Y23567D01* X8373Y23574D01* X8376Y23582D01* X8385Y23608D01* X8396Y23633D01* X8409Y23657D01* X8424Y23679D01* X8441Y23700D01* X8460Y23719D01* X8481Y23737D01* X8485Y23740D01* Y23259D01* X8485Y23259D01* X8464Y23276D01* X8445Y23295D01* X8427Y23316D01* X8412Y23338D01* X8398Y23362D01* X8387Y23386D01* X8378Y23412D01* X8374Y23420D01* X8370Y23427D01* X8364Y23434D01* X8357Y23439D01* X8349Y23443D01* X8341Y23446D01* X8332Y23447D01* X8324Y23447D01* X8315Y23445D01* X8307Y23442D01* X8300Y23437D01* X8293Y23431D01* X8288Y23424D01* X8285Y23419D01* Y23571D01* G37* G36* Y23374D02*X8294Y23349D01* X8309Y23316D01* X8327Y23284D01* X8348Y23255D01* X8372Y23227D01* X8397Y23202D01* X8425Y23179D01* X8455Y23159D01* X8485Y23142D01* Y21846D01* X8469Y21837D01* X8440Y21816D01* X8412Y21793D01* X8387Y21767D01* X8364Y21739D01* X8344Y21709D01* X8326Y21677D01* X8312Y21644D01* X8300Y21610D01* X8298Y21601D01* X8298Y21593D01* X8299Y21584D01* X8302Y21576D01* X8307Y21568D01* X8312Y21561D01* X8319Y21556D01* X8326Y21551D01* X8334Y21548D01* X8343Y21546D01* X8352Y21546D01* X8360Y21547D01* X8368Y21550D01* X8376Y21555D01* X8383Y21560D01* X8389Y21567D01* X8393Y21574D01* X8396Y21582D01* X8405Y21608D01* X8416Y21633D01* X8429Y21657D01* X8444Y21679D01* X8461Y21700D01* X8480Y21719D01* X8485Y21723D01* Y21276D01* X8484Y21276D01* X8465Y21295D01* X8447Y21316D01* X8432Y21338D01* X8418Y21362D01* X8407Y21386D01* X8398Y21412D01* X8394Y21420D01* X8390Y21427D01* X8384Y21434D01* X8377Y21439D01* X8369Y21443D01* X8361Y21446D01* X8352Y21447D01* X8344Y21447D01* X8335Y21445D01* X8327Y21442D01* X8320Y21437D01* X8313Y21431D01* X8308Y21424D01* X8304Y21417D01* X8301Y21409D01* X8300Y21400D01* X8300Y21391D01* X8302Y21383D01* X8314Y21349D01* X8329Y21316D01* X8347Y21284D01* X8368Y21255D01* X8392Y21227D01* X8417Y21202D01* X8445Y21179D01* X8475Y21159D01* X8485Y21153D01* Y19834D01* X8460Y19816D01* X8432Y19793D01* X8407Y19767D01* X8384Y19739D01* X8364Y19709D01* X8346Y19677D01* X8332Y19644D01* X8320Y19610D01* X8318Y19601D01* X8318Y19593D01* X8319Y19584D01* X8322Y19576D01* X8327Y19568D01* X8332Y19561D01* X8339Y19556D01* X8346Y19551D01* X8354Y19548D01* X8363Y19546D01* X8372Y19546D01* X8380Y19547D01* X8388Y19550D01* X8396Y19555D01* X8403Y19560D01* X8409Y19567D01* X8413Y19574D01* X8416Y19582D01* X8425Y19608D01* X8436Y19633D01* X8449Y19657D01* X8464Y19679D01* X8481Y19700D01* X8485Y19704D01* Y19295D01* X8485Y19295D01* X8467Y19316D01* X8452Y19338D01* X8438Y19362D01* X8427Y19386D01* X8418Y19412D01* X8414Y19420D01* X8410Y19427D01* X8404Y19434D01* X8397Y19439D01* X8389Y19443D01* X8381Y19446D01* X8372Y19447D01* X8364Y19447D01* X8355Y19445D01* X8347Y19442D01* X8340Y19437D01* X8333Y19431D01* X8328Y19424D01* X8324Y19417D01* X8321Y19409D01* X8320Y19400D01* X8320Y19391D01* X8322Y19383D01* X8334Y19349D01* X8349Y19316D01* X8367Y19284D01* X8388Y19255D01* X8412Y19227D01* X8437Y19202D01* X8465Y19179D01* X8485Y19166D01* Y17820D01* X8480Y17816D01* X8452Y17793D01* X8427Y17767D01* X8404Y17739D01* X8384Y17709D01* X8366Y17677D01* X8352Y17644D01* X8340Y17610D01* X8338Y17601D01* X8338Y17593D01* X8339Y17584D01* X8342Y17576D01* X8347Y17568D01* X8352Y17561D01* X8359Y17556D01* X8366Y17551D01* X8374Y17548D01* X8383Y17546D01* X8392Y17546D01* X8400Y17547D01* X8408Y17550D01* X8416Y17555D01* X8423Y17560D01* X8429Y17567D01* X8433Y17574D01* X8436Y17582D01* X8445Y17608D01* X8456Y17633D01* X8469Y17657D01* X8484Y17679D01* X8485Y17680D01* Y17319D01* X8472Y17338D01* X8458Y17362D01* X8447Y17386D01* X8438Y17412D01* X8434Y17420D01* X8430Y17427D01* X8424Y17434D01* X8417Y17439D01* X8409Y17443D01* X8401Y17446D01* X8392Y17447D01* X8384Y17447D01* X8375Y17445D01* X8367Y17442D01* X8360Y17437D01* X8353Y17431D01* X8348Y17424D01* X8344Y17417D01* X8341Y17409D01* X8340Y17400D01* X8340Y17391D01* X8342Y17383D01* X8354Y17349D01* X8369Y17316D01* X8387Y17284D01* X8408Y17255D01* X8432Y17227D01* X8457Y17202D01* X8485Y17179D01* Y15804D01* X8472Y15793D01* X8447Y15767D01* X8424Y15739D01* X8404Y15709D01* X8386Y15677D01* X8372Y15644D01* X8360Y15610D01* X8358Y15601D01* X8358Y15593D01* X8359Y15584D01* X8362Y15576D01* X8367Y15568D01* X8372Y15561D01* X8379Y15556D01* X8386Y15551D01* X8394Y15548D01* X8403Y15546D01* X8412Y15546D01* X8420Y15547D01* X8428Y15550D01* X8436Y15555D01* X8443Y15560D01* X8449Y15567D01* X8453Y15574D01* X8456Y15582D01* X8465Y15608D01* X8476Y15633D01* X8485Y15650D01* Y15349D01* X8478Y15362D01* X8467Y15386D01* X8458Y15412D01* X8454Y15420D01* X8450Y15427D01* X8444Y15434D01* X8437Y15439D01* X8429Y15443D01* X8421Y15446D01* X8412Y15447D01* X8404Y15447D01* X8395Y15445D01* X8387Y15442D01* X8380Y15437D01* X8373Y15431D01* X8368Y15424D01* X8364Y15417D01* X8361Y15409D01* X8360Y15400D01* X8360Y15391D01* X8362Y15383D01* X8374Y15349D01* X8389Y15316D01* X8407Y15284D01* X8428Y15255D01* X8452Y15227D01* X8477Y15202D01* X8485Y15196D01* Y13785D01* X8467Y13767D01* X8444Y13739D01* X8424Y13709D01* X8406Y13677D01* X8392Y13644D01* X8380Y13610D01* X8378Y13601D01* X8378Y13593D01* X8379Y13584D01* X8382Y13576D01* X8387Y13568D01* X8392Y13561D01* X8399Y13556D01* X8406Y13551D01* X8414Y13548D01* X8423Y13546D01* X8432Y13546D01* X8440Y13547D01* X8448Y13550D01* X8456Y13555D01* X8463Y13560D01* X8469Y13567D01* X8473Y13574D01* X8476Y13582D01* X8485Y13608D01* X8485Y13609D01* Y13391D01* X8478Y13412D01* X8474Y13420D01* X8470Y13427D01* X8464Y13434D01* X8457Y13439D01* X8449Y13443D01* X8441Y13446D01* X8432Y13447D01* X8424Y13447D01* X8415Y13445D01* X8407Y13442D01* X8400Y13437D01* X8393Y13431D01* X8388Y13424D01* X8384Y13417D01* X8381Y13409D01* X8380Y13400D01* X8380Y13391D01* X8382Y13383D01* X8394Y13349D01* X8409Y13316D01* X8427Y13284D01* X8448Y13255D01* X8472Y13227D01* X8485Y13214D01* Y11765D01* X8464Y11739D01* X8444Y11709D01* X8426Y11677D01* X8412Y11644D01* X8400Y11610D01* X8398Y11601D01* X8398Y11593D01* X8399Y11584D01* X8402Y11576D01* X8407Y11568D01* X8412Y11561D01* X8419Y11556D01* X8426Y11551D01* X8434Y11548D01* X8443Y11546D01* X8452Y11546D01* X8460Y11547D01* X8468Y11550D01* X8476Y11555D01* X8483Y11560D01* X8485Y11563D01* Y11432D01* X8484Y11434D01* X8477Y11439D01* X8469Y11443D01* X8461Y11446D01* X8452Y11447D01* X8444Y11447D01* X8435Y11445D01* X8427Y11442D01* X8420Y11437D01* X8413Y11431D01* X8408Y11424D01* X8404Y11417D01* X8401Y11409D01* X8400Y11400D01* X8400Y11391D01* X8402Y11383D01* X8414Y11349D01* X8429Y11316D01* X8447Y11284D01* X8468Y11255D01* X8485Y11235D01* Y9740D01* X8484Y9739D01* X8464Y9709D01* X8446Y9677D01* X8432Y9644D01* X8420Y9610D01* X8418Y9601D01* X8418Y9593D01* X8419Y9584D01* X8422Y9576D01* X8427Y9568D01* X8432Y9561D01* X8439Y9556D01* X8446Y9551D01* X8454Y9548D01* X8463Y9546D01* X8472Y9546D01* X8480Y9547D01* X8485Y9549D01* Y9445D01* X8481Y9446D01* X8472Y9447D01* X8464Y9447D01* X8455Y9445D01* X8447Y9442D01* X8440Y9437D01* X8433Y9431D01* X8428Y9424D01* X8424Y9417D01* X8421Y9409D01* X8420Y9400D01* X8420Y9391D01* X8422Y9383D01* X8434Y9349D01* X8449Y9316D01* X8467Y9284D01* X8485Y9259D01* Y7711D01* X8484Y7709D01* X8466Y7677D01* X8452Y7644D01* X8440Y7610D01* X8438Y7601D01* X8438Y7593D01* X8439Y7584D01* X8442Y7576D01* X8447Y7568D01* X8452Y7561D01* X8459Y7556D01* X8466Y7551D01* X8474Y7548D01* X8483Y7546D01* X8485D01* Y7447D01* X8484Y7447D01* X8475Y7445D01* X8467Y7442D01* X8460Y7437D01* X8453Y7431D01* X8448Y7424D01* X8444Y7417D01* X8441Y7409D01* X8440Y7400D01* X8440Y7391D01* X8442Y7383D01* X8454Y7349D01* X8469Y7316D01* X8485Y7288D01* Y5675D01* X8472Y5644D01* X8460Y5610D01* X8458Y5601D01* X8458Y5593D01* X8459Y5584D01* X8462Y5576D01* X8467Y5568D01* X8472Y5561D01* X8479Y5556D01* X8485Y5552D01* Y5441D01* X8480Y5437D01* X8473Y5431D01* X8468Y5424D01* X8464Y5417D01* X8461Y5409D01* X8460Y5400D01* X8460Y5391D01* X8462Y5383D01* X8474Y5349D01* X8485Y5325D01* Y3625D01* X8480Y3610D01* X8478Y3601D01* X8478Y3593D01* X8479Y3584D01* X8482Y3576D01* X8485Y3571D01* Y3419D01* X8484Y3417D01* X8481Y3409D01* X8480Y3400D01* X8480Y3391D01* X8482Y3383D01* X8485Y3374D01* Y0D01* X8285D01* Y23374D01* G37* G36* X8485Y40000D02*X8665D01* Y39865D01* X8649Y39873D01* X8615Y39884D01* X8606Y39886D01* X8597Y39886D01* X8589Y39885D01* X8581Y39882D01* X8573Y39878D01* X8566Y39872D01* X8560Y39865D01* X8556Y39858D01* X8553Y39850D01* X8551Y39841D01* X8551Y39833D01* X8552Y39824D01* X8555Y39816D01* X8559Y39808D01* X8565Y39801D01* X8572Y39796D01* X8579Y39791D01* X8587Y39788D01* X8613Y39779D01* X8638Y39768D01* X8661Y39755D01* X8665Y39753D01* Y39246D01* X8642Y39233D01* X8618Y39222D01* X8592Y39213D01* X8584Y39209D01* X8577Y39205D01* X8570Y39199D01* X8565Y39192D01* X8561Y39184D01* X8558Y39176D01* X8557Y39167D01* X8557Y39159D01* X8559Y39150D01* X8562Y39142D01* X8567Y39135D01* X8573Y39128D01* X8580Y39123D01* X8587Y39119D01* X8596Y39116D01* X8604Y39115D01* X8613Y39115D01* X8621Y39117D01* X8656Y39129D01* X8665Y39134D01* Y37874D01* X8635Y37884D01* X8626Y37886D01* X8617Y37886D01* X8609Y37885D01* X8601Y37882D01* X8593Y37878D01* X8586Y37872D01* X8580Y37865D01* X8576Y37858D01* X8573Y37850D01* X8571Y37841D01* X8571Y37833D01* X8572Y37824D01* X8575Y37816D01* X8579Y37808D01* X8585Y37801D01* X8592Y37796D01* X8599Y37791D01* X8607Y37788D01* X8633Y37779D01* X8658Y37768D01* X8665Y37764D01* Y37235D01* X8662Y37233D01* X8638Y37222D01* X8612Y37213D01* X8604Y37209D01* X8597Y37205D01* X8590Y37199D01* X8585Y37192D01* X8581Y37184D01* X8578Y37176D01* X8577Y37167D01* X8577Y37159D01* X8579Y37150D01* X8582Y37142D01* X8587Y37135D01* X8593Y37128D01* X8600Y37123D01* X8607Y37119D01* X8616Y37116D01* X8624Y37115D01* X8633Y37115D01* X8641Y37117D01* X8665Y37126D01* Y35881D01* X8655Y35884D01* X8646Y35886D01* X8637Y35886D01* X8629Y35885D01* X8621Y35882D01* X8613Y35878D01* X8606Y35872D01* X8600Y35865D01* X8596Y35858D01* X8593Y35850D01* X8591Y35841D01* X8591Y35833D01* X8592Y35824D01* X8595Y35816D01* X8599Y35808D01* X8605Y35801D01* X8612Y35796D01* X8619Y35791D01* X8627Y35788D01* X8653Y35779D01* X8665Y35774D01* Y35225D01* X8658Y35222D01* X8632Y35213D01* X8624Y35209D01* X8617Y35205D01* X8610Y35199D01* X8605Y35192D01* X8601Y35184D01* X8598Y35176D01* X8597Y35167D01* X8597Y35159D01* X8599Y35150D01* X8602Y35142D01* X8607Y35135D01* X8613Y35128D01* X8620Y35123D01* X8627Y35119D01* X8636Y35116D01* X8644Y35115D01* X8653Y35115D01* X8661Y35117D01* X8665Y35118D01* Y33886D01* X8657Y33886D01* X8649Y33885D01* X8641Y33882D01* X8633Y33878D01* X8626Y33872D01* X8620Y33865D01* X8616Y33858D01* X8613Y33850D01* X8611Y33841D01* X8611Y33833D01* X8612Y33824D01* X8615Y33816D01* X8619Y33808D01* X8625Y33801D01* X8632Y33796D01* X8639Y33791D01* X8647Y33788D01* X8665Y33782D01* Y33217D01* X8652Y33213D01* X8644Y33209D01* X8637Y33205D01* X8630Y33199D01* X8625Y33192D01* X8621Y33184D01* X8618Y33176D01* X8617Y33167D01* X8617Y33159D01* X8619Y33150D01* X8622Y33142D01* X8627Y33135D01* X8633Y33128D01* X8640Y33123D01* X8647Y33119D01* X8656Y33116D01* X8664Y33115D01* X8665D01* Y31883D01* X8661Y31882D01* X8653Y31878D01* X8646Y31872D01* X8640Y31865D01* X8636Y31858D01* X8633Y31850D01* X8631Y31841D01* X8631Y31833D01* X8632Y31824D01* X8635Y31816D01* X8639Y31808D01* X8645Y31801D01* X8652Y31796D01* X8659Y31791D01* X8665Y31789D01* Y31210D01* X8664Y31209D01* X8657Y31205D01* X8650Y31199D01* X8645Y31192D01* X8641Y31184D01* X8638Y31176D01* X8637Y31167D01* X8637Y31159D01* X8639Y31150D01* X8642Y31142D01* X8647Y31135D01* X8653Y31128D01* X8660Y31123D01* X8665Y31120D01* Y29871D01* X8660Y29865D01* X8656Y29858D01* X8653Y29850D01* X8651Y29841D01* X8651Y29833D01* X8652Y29824D01* X8655Y29816D01* X8659Y29808D01* X8665Y29801D01* X8665Y29801D01* Y29192D01* X8665Y29192D01* X8661Y29184D01* X8658Y29176D01* X8657Y29167D01* X8657Y29159D01* X8659Y29150D01* X8662Y29142D01* X8665Y29138D01* Y17859D01* X8662Y17864D01* X8656Y17871D01* X8649Y17876D01* X8642Y17880D01* X8633Y17883D01* X8625Y17884D01* X8616Y17884D01* X8608Y17882D01* X8573Y17870D01* X8541Y17855D01* X8509Y17837D01* X8485Y17820D01* Y19166D01* X8495Y19159D01* X8527Y19141D01* X8560Y19127D01* X8594Y19115D01* X8603Y19113D01* X8612Y19113D01* X8620Y19115D01* X8628Y19117D01* X8636Y19122D01* X8643Y19127D01* X8649Y19134D01* X8653Y19141D01* X8656Y19149D01* X8658Y19158D01* X8658Y19167D01* X8657Y19175D01* X8654Y19183D01* X8650Y19191D01* X8644Y19198D01* X8637Y19204D01* X8630Y19208D01* X8622Y19211D01* X8596Y19220D01* X8571Y19231D01* X8548Y19244D01* X8525Y19259D01* X8504Y19276D01* X8485Y19295D01* Y19704D01* X8500Y19719D01* X8521Y19737D01* X8543Y19752D01* X8567Y19766D01* X8591Y19777D01* X8617Y19786D01* X8625Y19790D01* X8632Y19794D01* X8639Y19800D01* X8644Y19807D01* X8648Y19815D01* X8651Y19823D01* X8652Y19832D01* X8652Y19840D01* X8650Y19849D01* X8647Y19857D01* X8642Y19864D01* X8636Y19871D01* X8629Y19876D01* X8622Y19880D01* X8613Y19883D01* X8605Y19884D01* X8596Y19884D01* X8588Y19882D01* X8553Y19870D01* X8521Y19855D01* X8489Y19837D01* X8485Y19834D01* Y21153D01* X8507Y21141D01* X8540Y21127D01* X8574Y21115D01* X8583Y21113D01* X8592Y21113D01* X8600Y21115D01* X8608Y21117D01* X8616Y21122D01* X8623Y21127D01* X8629Y21134D01* X8633Y21141D01* X8636Y21149D01* X8638Y21158D01* X8638Y21167D01* X8637Y21175D01* X8634Y21183D01* X8630Y21191D01* X8624Y21198D01* X8617Y21204D01* X8610Y21208D01* X8602Y21211D01* X8576Y21220D01* X8551Y21231D01* X8528Y21244D01* X8505Y21259D01* X8485Y21276D01* Y21723D01* X8501Y21737D01* X8523Y21752D01* X8547Y21766D01* X8571Y21777D01* X8597Y21786D01* X8605Y21790D01* X8612Y21794D01* X8619Y21800D01* X8624Y21807D01* X8628Y21815D01* X8631Y21823D01* X8632Y21832D01* X8632Y21840D01* X8630Y21849D01* X8627Y21857D01* X8622Y21864D01* X8616Y21871D01* X8609Y21876D01* X8602Y21880D01* X8593Y21883D01* X8585Y21884D01* X8576Y21884D01* X8568Y21882D01* X8533Y21870D01* X8501Y21855D01* X8485Y21846D01* Y23142D01* X8487Y23141D01* X8520Y23127D01* X8554Y23115D01* X8563Y23113D01* X8572Y23113D01* X8580Y23115D01* X8588Y23117D01* X8596Y23122D01* X8603Y23127D01* X8609Y23134D01* X8613Y23141D01* X8616Y23149D01* X8618Y23158D01* X8618Y23167D01* X8617Y23175D01* X8614Y23183D01* X8610Y23191D01* X8604Y23198D01* X8597Y23204D01* X8590Y23208D01* X8582Y23211D01* X8556Y23220D01* X8531Y23231D01* X8508Y23244D01* X8485Y23259D01* Y23740D01* X8503Y23752D01* X8527Y23766D01* X8551Y23777D01* X8577Y23786D01* X8585Y23790D01* X8592Y23794D01* X8599Y23800D01* X8604Y23807D01* X8608Y23815D01* X8611Y23823D01* X8612Y23832D01* X8612Y23840D01* X8610Y23849D01* X8607Y23857D01* X8602Y23864D01* X8596Y23871D01* X8589Y23876D01* X8582Y23880D01* X8573Y23883D01* X8565Y23884D01* X8556Y23884D01* X8548Y23882D01* X8513Y23870D01* X8485Y23857D01* Y25133D01* X8500Y25127D01* X8534Y25115D01* X8543Y25113D01* X8552Y25113D01* X8560Y25115D01* X8568Y25117D01* X8576Y25122D01* X8583Y25127D01* X8589Y25134D01* X8593Y25141D01* X8596Y25149D01* X8598Y25158D01* X8598Y25167D01* X8597Y25175D01* X8594Y25183D01* X8590Y25191D01* X8584Y25198D01* X8577Y25204D01* X8570Y25208D01* X8562Y25211D01* X8536Y25220D01* X8511Y25231D01* X8488Y25244D01* X8485Y25246D01* Y25754D01* X8507Y25766D01* X8531Y25777D01* X8557Y25786D01* X8565Y25790D01* X8572Y25794D01* X8579Y25800D01* X8584Y25807D01* X8588Y25815D01* X8591Y25823D01* X8592Y25832D01* X8592Y25840D01* X8590Y25849D01* X8587Y25857D01* X8582Y25864D01* X8576Y25871D01* X8569Y25876D01* X8562Y25880D01* X8553Y25883D01* X8545Y25884D01* X8536Y25884D01* X8528Y25882D01* X8493Y25870D01* X8485Y25866D01* Y27125D01* X8514Y27115D01* X8523Y27113D01* X8532Y27113D01* X8540Y27115D01* X8548Y27117D01* X8556Y27122D01* X8563Y27127D01* X8569Y27134D01* X8573Y27141D01* X8576Y27149D01* X8578Y27158D01* X8578Y27167D01* X8577Y27175D01* X8574Y27183D01* X8570Y27191D01* X8564Y27198D01* X8557Y27204D01* X8550Y27208D01* X8542Y27211D01* X8516Y27220D01* X8491Y27231D01* X8485Y27234D01* Y27765D01* X8487Y27766D01* X8511Y27777D01* X8537Y27786D01* X8545Y27790D01* X8552Y27794D01* X8559Y27800D01* X8564Y27807D01* X8568Y27815D01* X8571Y27823D01* X8572Y27832D01* X8572Y27840D01* X8570Y27849D01* X8567Y27857D01* X8562Y27864D01* X8556Y27871D01* X8549Y27876D01* X8542Y27880D01* X8533Y27883D01* X8525Y27884D01* X8516Y27884D01* X8508Y27882D01* X8485Y27874D01* Y29118D01* X8494Y29115D01* X8503Y29113D01* X8512Y29113D01* X8520Y29115D01* X8528Y29117D01* X8536Y29122D01* X8543Y29127D01* X8549Y29134D01* X8553Y29141D01* X8556Y29149D01* X8558Y29158D01* X8558Y29167D01* X8557Y29175D01* X8554Y29183D01* X8550Y29191D01* X8544Y29198D01* X8537Y29204D01* X8530Y29208D01* X8522Y29211D01* X8496Y29220D01* X8485Y29225D01* Y29775D01* X8491Y29777D01* X8517Y29786D01* X8525Y29790D01* X8532Y29794D01* X8539Y29800D01* X8544Y29807D01* X8548Y29815D01* X8551Y29823D01* X8552Y29832D01* X8552Y29840D01* X8550Y29849D01* X8547Y29857D01* X8542Y29864D01* X8536Y29871D01* X8529Y29876D01* X8522Y29880D01* X8513Y29883D01* X8505Y29884D01* X8496Y29884D01* X8488Y29882D01* X8485Y29881D01* Y31113D01* X8492Y31113D01* X8500Y31115D01* X8508Y31117D01* X8516Y31122D01* X8523Y31127D01* X8529Y31134D01* X8533Y31141D01* X8536Y31149D01* X8538Y31158D01* X8538Y31167D01* X8537Y31175D01* X8534Y31183D01* X8530Y31191D01* X8524Y31198D01* X8517Y31204D01* X8510Y31208D01* X8502Y31211D01* X8485Y31217D01* Y31782D01* X8497Y31786D01* X8505Y31790D01* X8512Y31794D01* X8519Y31800D01* X8524Y31807D01* X8528Y31815D01* X8531Y31823D01* X8532Y31832D01* X8532Y31840D01* X8530Y31849D01* X8527Y31857D01* X8522Y31864D01* X8516Y31871D01* X8509Y31876D01* X8502Y31880D01* X8493Y31883D01* X8485Y31884D01* Y33116D01* X8488Y33117D01* X8496Y33122D01* X8503Y33127D01* X8509Y33134D01* X8513Y33141D01* X8516Y33149D01* X8518Y33158D01* X8518Y33167D01* X8517Y33175D01* X8514Y33183D01* X8510Y33191D01* X8504Y33198D01* X8497Y33204D01* X8490Y33208D01* X8485Y33210D01* Y33790D01* X8492Y33794D01* X8499Y33800D01* X8504Y33807D01* X8508Y33815D01* X8511Y33823D01* X8512Y33832D01* X8512Y33840D01* X8510Y33849D01* X8507Y33857D01* X8502Y33864D01* X8496Y33871D01* X8489Y33876D01* X8485Y33878D01* Y35130D01* X8489Y35134D01* X8493Y35141D01* X8496Y35149D01* X8498Y35158D01* X8498Y35167D01* X8497Y35175D01* X8494Y35183D01* X8490Y35191D01* X8485Y35197D01* Y35809D01* X8488Y35815D01* X8491Y35823D01* X8492Y35832D01* X8492Y35840D01* X8490Y35849D01* X8487Y35857D01* X8485Y35859D01* Y40000D01* G37* G36* X8665Y0D02*X8485D01* Y3374D01* X8494Y3349D01* X8509Y3316D01* X8527Y3284D01* X8548Y3255D01* X8572Y3227D01* X8597Y3202D01* X8625Y3179D01* X8655Y3159D01* X8665Y3153D01* Y1834D01* X8640Y1816D01* X8612Y1793D01* X8587Y1767D01* X8564Y1739D01* X8544Y1709D01* X8526Y1677D01* X8512Y1644D01* X8500Y1610D01* X8498Y1601D01* X8498Y1593D01* X8499Y1584D01* X8502Y1576D01* X8507Y1568D01* X8512Y1561D01* X8519Y1556D01* X8526Y1551D01* X8534Y1548D01* X8543Y1546D01* X8552Y1546D01* X8560Y1547D01* X8568Y1550D01* X8576Y1555D01* X8583Y1560D01* X8589Y1567D01* X8593Y1574D01* X8596Y1582D01* X8605Y1608D01* X8616Y1633D01* X8629Y1657D01* X8644Y1679D01* X8661Y1700D01* X8665Y1704D01* Y1295D01* X8665Y1295D01* X8647Y1316D01* X8632Y1338D01* X8618Y1362D01* X8607Y1386D01* X8598Y1412D01* X8594Y1420D01* X8590Y1427D01* X8584Y1434D01* X8577Y1439D01* X8569Y1443D01* X8561Y1446D01* X8552Y1447D01* X8544Y1447D01* X8535Y1445D01* X8527Y1442D01* X8520Y1437D01* X8513Y1431D01* X8508Y1424D01* X8504Y1417D01* X8501Y1409D01* X8500Y1400D01* X8500Y1391D01* X8502Y1383D01* X8514Y1349D01* X8529Y1316D01* X8547Y1284D01* X8568Y1255D01* X8592Y1227D01* X8617Y1202D01* X8645Y1179D01* X8665Y1166D01* Y0D01* G37* G36* Y3276D02*X8664Y3276D01* X8645Y3295D01* X8627Y3316D01* X8612Y3338D01* X8598Y3362D01* X8587Y3386D01* X8578Y3412D01* X8574Y3420D01* X8570Y3427D01* X8564Y3434D01* X8557Y3439D01* X8549Y3443D01* X8541Y3446D01* X8532Y3447D01* X8524Y3447D01* X8515Y3445D01* X8507Y3442D01* X8500Y3437D01* X8493Y3431D01* X8488Y3424D01* X8485Y3419D01* Y3571D01* X8487Y3568D01* X8492Y3561D01* X8499Y3556D01* X8506Y3551D01* X8514Y3548D01* X8523Y3546D01* X8532Y3546D01* X8540Y3547D01* X8548Y3550D01* X8556Y3555D01* X8563Y3560D01* X8569Y3567D01* X8573Y3574D01* X8576Y3582D01* X8585Y3608D01* X8596Y3633D01* X8609Y3657D01* X8624Y3679D01* X8641Y3700D01* X8660Y3719D01* X8665Y3723D01* Y3276D01* G37* G36* Y3846D02*X8649Y3837D01* X8620Y3816D01* X8592Y3793D01* X8567Y3767D01* X8544Y3739D01* X8524Y3709D01* X8506Y3677D01* X8492Y3644D01* X8485Y3625D01* Y5325D01* X8489Y5316D01* X8507Y5284D01* X8528Y5255D01* X8552Y5227D01* X8577Y5202D01* X8605Y5179D01* X8635Y5159D01* X8665Y5142D01* Y3846D01* G37* G36* Y5259D02*X8665Y5259D01* X8644Y5276D01* X8625Y5295D01* X8607Y5316D01* X8592Y5338D01* X8578Y5362D01* X8567Y5386D01* X8558Y5412D01* X8554Y5420D01* X8550Y5427D01* X8544Y5434D01* X8537Y5439D01* X8529Y5443D01* X8521Y5446D01* X8512Y5447D01* X8504Y5447D01* X8495Y5445D01* X8487Y5442D01* X8485Y5441D01* Y5552D01* X8486Y5551D01* X8494Y5548D01* X8503Y5546D01* X8512Y5546D01* X8520Y5547D01* X8528Y5550D01* X8536Y5555D01* X8543Y5560D01* X8549Y5567D01* X8553Y5574D01* X8556Y5582D01* X8565Y5608D01* X8576Y5633D01* X8589Y5657D01* X8604Y5679D01* X8621Y5700D01* X8640Y5719D01* X8661Y5737D01* X8665Y5740D01* Y5259D01* G37* G36* Y5857D02*X8661Y5855D01* X8629Y5837D01* X8600Y5816D01* X8572Y5793D01* X8547Y5767D01* X8524Y5739D01* X8504Y5709D01* X8486Y5677D01* X8485Y5675D01* Y7288D01* X8487Y7284D01* X8508Y7255D01* X8532Y7227D01* X8557Y7202D01* X8585Y7179D01* X8615Y7159D01* X8647Y7141D01* X8665Y7133D01* Y5857D01* G37* G36* Y7246D02*X8645Y7259D01* X8624Y7276D01* X8605Y7295D01* X8587Y7316D01* X8572Y7338D01* X8558Y7362D01* X8547Y7386D01* X8538Y7412D01* X8534Y7420D01* X8530Y7427D01* X8524Y7434D01* X8517Y7439D01* X8509Y7443D01* X8501Y7446D01* X8492Y7447D01* X8485Y7447D01* Y7546D01* X8492Y7546D01* X8500Y7547D01* X8508Y7550D01* X8516Y7555D01* X8523Y7560D01* X8529Y7567D01* X8533Y7574D01* X8536Y7582D01* X8545Y7608D01* X8556Y7633D01* X8569Y7657D01* X8584Y7679D01* X8601Y7700D01* X8620Y7719D01* X8641Y7737D01* X8663Y7752D01* X8665Y7754D01* Y7246D01* G37* G36* Y7866D02*X8641Y7855D01* X8609Y7837D01* X8580Y7816D01* X8552Y7793D01* X8527Y7767D01* X8504Y7739D01* X8485Y7711D01* Y9259D01* X8488Y9255D01* X8512Y9227D01* X8537Y9202D01* X8565Y9179D01* X8595Y9159D01* X8627Y9141D01* X8660Y9127D01* X8665Y9125D01* Y7866D01* G37* G36* Y9234D02*X8648Y9244D01* X8625Y9259D01* X8604Y9276D01* X8585Y9295D01* X8567Y9316D01* X8552Y9338D01* X8538Y9362D01* X8527Y9386D01* X8518Y9412D01* X8514Y9420D01* X8510Y9427D01* X8504Y9434D01* X8497Y9439D01* X8489Y9443D01* X8485Y9445D01* Y9549D01* X8488Y9550D01* X8496Y9555D01* X8503Y9560D01* X8509Y9567D01* X8513Y9574D01* X8516Y9582D01* X8525Y9608D01* X8536Y9633D01* X8549Y9657D01* X8564Y9679D01* X8581Y9700D01* X8600Y9719D01* X8621Y9737D01* X8643Y9752D01* X8665Y9765D01* Y9234D01* G37* G36* Y9874D02*X8653Y9870D01* X8621Y9855D01* X8589Y9837D01* X8560Y9816D01* X8532Y9793D01* X8507Y9767D01* X8485Y9740D01* Y11235D01* X8492Y11227D01* X8517Y11202D01* X8545Y11179D01* X8575Y11159D01* X8607Y11141D01* X8640Y11127D01* X8665Y11118D01* Y9874D01* G37* G36* Y11225D02*X8651Y11231D01* X8628Y11244D01* X8605Y11259D01* X8584Y11276D01* X8565Y11295D01* X8547Y11316D01* X8532Y11338D01* X8518Y11362D01* X8507Y11386D01* X8498Y11412D01* X8494Y11420D01* X8490Y11427D01* X8485Y11432D01* Y11563D01* X8489Y11567D01* X8493Y11574D01* X8496Y11582D01* X8505Y11608D01* X8516Y11633D01* X8529Y11657D01* X8544Y11679D01* X8561Y11700D01* X8580Y11719D01* X8601Y11737D01* X8623Y11752D01* X8647Y11766D01* X8665Y11775D01* Y11225D01* G37* G36* Y11881D02*X8633Y11870D01* X8601Y11855D01* X8569Y11837D01* X8540Y11816D01* X8512Y11793D01* X8487Y11767D01* X8485Y11765D01* Y13214D01* X8497Y13202D01* X8525Y13179D01* X8555Y13159D01* X8587Y13141D01* X8620Y13127D01* X8654Y13115D01* X8663Y13113D01* X8665D01* Y11881D01* G37* G36* Y13217D02*X8656Y13220D01* X8631Y13231D01* X8608Y13244D01* X8585Y13259D01* X8564Y13276D01* X8545Y13295D01* X8527Y13316D01* X8512Y13338D01* X8498Y13362D01* X8487Y13386D01* X8485Y13391D01* Y13609D01* X8496Y13633D01* X8509Y13657D01* X8524Y13679D01* X8541Y13700D01* X8560Y13719D01* X8581Y13737D01* X8603Y13752D01* X8627Y13766D01* X8651Y13777D01* X8665Y13782D01* Y13217D01* G37* G36* Y13884D02*X8665Y13884D01* X8656Y13884D01* X8648Y13882D01* X8613Y13870D01* X8581Y13855D01* X8549Y13837D01* X8520Y13816D01* X8492Y13793D01* X8485Y13785D01* Y15196D01* X8505Y15179D01* X8535Y15159D01* X8567Y15141D01* X8600Y15127D01* X8634Y15115D01* X8643Y15113D01* X8652Y15113D01* X8660Y15115D01* X8665Y15116D01* Y13884D01* G37* G36* Y15210D02*X8662Y15211D01* X8636Y15220D01* X8611Y15231D01* X8588Y15244D01* X8565Y15259D01* X8544Y15276D01* X8525Y15295D01* X8507Y15316D01* X8492Y15338D01* X8485Y15349D01* Y15650D01* X8489Y15657D01* X8504Y15679D01* X8521Y15700D01* X8540Y15719D01* X8561Y15737D01* X8583Y15752D01* X8607Y15766D01* X8631Y15777D01* X8657Y15786D01* X8665Y15790D01* X8665Y15790D01* Y15210D01* G37* G36* Y15878D02*X8662Y15880D01* X8653Y15883D01* X8645Y15884D01* X8636Y15884D01* X8628Y15882D01* X8593Y15870D01* X8561Y15855D01* X8529Y15837D01* X8500Y15816D01* X8485Y15804D01* Y17179D01* X8485Y17179D01* X8515Y17159D01* X8547Y17141D01* X8580Y17127D01* X8614Y17115D01* X8623Y17113D01* X8632Y17113D01* X8640Y17115D01* X8648Y17117D01* X8656Y17122D01* X8663Y17127D01* X8665Y17130D01* Y15878D01* G37* G36* Y17197D02*X8664Y17198D01* X8657Y17204D01* X8650Y17208D01* X8642Y17211D01* X8616Y17220D01* X8591Y17231D01* X8568Y17244D01* X8545Y17259D01* X8524Y17276D01* X8505Y17295D01* X8487Y17316D01* X8485Y17319D01* Y17680D01* X8501Y17700D01* X8520Y17719D01* X8541Y17737D01* X8563Y17752D01* X8587Y17766D01* X8611Y17777D01* X8637Y17786D01* X8645Y17790D01* X8652Y17794D01* X8659Y17800D01* X8664Y17807D01* X8665Y17809D01* Y17197D01* G37* G36* Y40000D02*X8924D01* Y35625D01* X8915Y35651D01* X8900Y35683D01* X8882Y35715D01* X8861Y35744D01* X8837Y35772D01* X8812Y35797D01* X8784Y35820D01* X8754Y35840D01* X8722Y35858D01* X8689Y35873D01* X8665Y35881D01* Y37126D01* X8676Y37129D01* X8708Y37144D01* X8740Y37162D01* X8769Y37183D01* X8797Y37207D01* X8822Y37232D01* X8845Y37260D01* X8865Y37290D01* X8883Y37322D01* X8897Y37355D01* X8909Y37389D01* X8911Y37398D01* X8911Y37407D01* X8910Y37415D01* X8907Y37423D01* X8902Y37431D01* X8897Y37438D01* X8890Y37444D01* X8883Y37448D01* X8875Y37451D01* X8866Y37453D01* X8857Y37453D01* X8849Y37452D01* X8841Y37449D01* X8833Y37445D01* X8826Y37439D01* X8820Y37433D01* X8816Y37425D01* X8813Y37417D01* X8804Y37391D01* X8793Y37366D01* X8780Y37343D01* X8765Y37320D01* X8748Y37299D01* X8729Y37280D01* X8708Y37262D01* X8686Y37247D01* X8665Y37235D01* Y37764D01* X8681Y37755D01* X8704Y37740D01* X8725Y37723D01* X8744Y37704D01* X8762Y37683D01* X8777Y37661D01* X8791Y37637D01* X8802Y37613D01* X8811Y37587D01* X8815Y37579D01* X8819Y37572D01* X8825Y37565D01* X8832Y37560D01* X8840Y37556D01* X8848Y37553D01* X8857Y37552D01* X8865Y37552D01* X8874Y37554D01* X8882Y37557D01* X8889Y37562D01* X8896Y37568D01* X8901Y37575D01* X8905Y37582D01* X8908Y37591D01* X8909Y37599D01* X8909Y37608D01* X8907Y37617D01* X8895Y37651D01* X8880Y37683D01* X8862Y37715D01* X8841Y37744D01* X8817Y37772D01* X8792Y37797D01* X8764Y37820D01* X8734Y37840D01* X8702Y37858D01* X8669Y37873D01* X8665Y37874D01* Y39134D01* X8688Y39144D01* X8720Y39162D01* X8749Y39183D01* X8777Y39207D01* X8802Y39232D01* X8825Y39260D01* X8845Y39290D01* X8863Y39322D01* X8877Y39355D01* X8889Y39389D01* X8891Y39398D01* X8891Y39407D01* X8890Y39415D01* X8887Y39423D01* X8882Y39431D01* X8877Y39438D01* X8870Y39444D01* X8863Y39448D01* X8855Y39451D01* X8846Y39453D01* X8837Y39453D01* X8829Y39452D01* X8821Y39449D01* X8813Y39445D01* X8806Y39439D01* X8800Y39433D01* X8796Y39425D01* X8793Y39417D01* X8784Y39391D01* X8773Y39366D01* X8760Y39343D01* X8745Y39320D01* X8728Y39299D01* X8709Y39280D01* X8688Y39262D01* X8666Y39247D01* X8665Y39246D01* Y39753D01* X8684Y39740D01* X8705Y39723D01* X8724Y39704D01* X8742Y39683D01* X8757Y39661D01* X8771Y39637D01* X8782Y39613D01* X8791Y39587D01* X8795Y39579D01* X8799Y39572D01* X8805Y39565D01* X8812Y39560D01* X8820Y39556D01* X8828Y39553D01* X8837Y39552D01* X8845Y39552D01* X8854Y39554D01* X8862Y39557D01* X8869Y39562D01* X8876Y39568D01* X8881Y39575D01* X8885Y39582D01* X8888Y39591D01* X8889Y39599D01* X8889Y39608D01* X8887Y39617D01* X8875Y39651D01* X8860Y39683D01* X8842Y39715D01* X8821Y39744D01* X8797Y39772D01* X8772Y39797D01* X8744Y39820D01* X8714Y39840D01* X8682Y39858D01* X8665Y39865D01* Y40000D01* G37* G36* Y35774D02*X8678Y35768D01* X8701Y35755D01* X8724Y35740D01* X8745Y35723D01* X8764Y35704D01* X8782Y35683D01* X8797Y35661D01* X8811Y35637D01* X8822Y35613D01* X8831Y35587D01* X8835Y35579D01* X8839Y35572D01* X8845Y35565D01* X8852Y35560D01* X8860Y35556D01* X8868Y35553D01* X8877Y35552D01* X8885Y35552D01* X8894Y35554D01* X8902Y35557D01* X8909Y35562D01* X8916Y35568D01* X8921Y35575D01* X8924Y35580D01* Y35428D01* X8922Y35431D01* X8917Y35438D01* X8910Y35444D01* X8903Y35448D01* X8895Y35451D01* X8886Y35453D01* X8877Y35453D01* X8869Y35452D01* X8861Y35449D01* X8853Y35445D01* X8846Y35439D01* X8840Y35433D01* X8836Y35425D01* X8833Y35417D01* X8824Y35391D01* X8813Y35366D01* X8800Y35343D01* X8785Y35320D01* X8768Y35299D01* X8749Y35280D01* X8728Y35262D01* X8706Y35247D01* X8682Y35233D01* X8665Y35225D01* Y35774D01* G37* G36* Y35118D02*X8696Y35129D01* X8728Y35144D01* X8760Y35162D01* X8789Y35183D01* X8817Y35207D01* X8842Y35232D01* X8865Y35260D01* X8885Y35290D01* X8903Y35322D01* X8917Y35355D01* X8924Y35374D01* Y33674D01* X8920Y33683D01* X8902Y33715D01* X8881Y33744D01* X8857Y33772D01* X8832Y33797D01* X8804Y33820D01* X8774Y33840D01* X8742Y33858D01* X8709Y33873D01* X8675Y33884D01* X8666Y33886D01* X8665D01* Y35118D01* G37* G36* Y33782D02*X8673Y33779D01* X8698Y33768D01* X8721Y33755D01* X8744Y33740D01* X8765Y33723D01* X8784Y33704D01* X8802Y33683D01* X8817Y33661D01* X8831Y33637D01* X8842Y33613D01* X8851Y33587D01* X8855Y33579D01* X8859Y33572D01* X8865Y33565D01* X8872Y33560D01* X8880Y33556D01* X8888Y33553D01* X8897Y33552D01* X8905Y33552D01* X8914Y33554D01* X8922Y33557D01* X8924Y33559D01* Y33447D01* X8923Y33448D01* X8915Y33451D01* X8906Y33453D01* X8897Y33453D01* X8889Y33452D01* X8881Y33449D01* X8873Y33445D01* X8866Y33439D01* X8860Y33433D01* X8856Y33425D01* X8853Y33417D01* X8844Y33391D01* X8833Y33366D01* X8820Y33343D01* X8805Y33320D01* X8788Y33299D01* X8769Y33280D01* X8748Y33262D01* X8726Y33247D01* X8702Y33233D01* X8678Y33222D01* X8665Y33217D01* Y33782D01* G37* G36* Y33115D02*X8673Y33115D01* X8681Y33117D01* X8716Y33129D01* X8748Y33144D01* X8780Y33162D01* X8809Y33183D01* X8837Y33207D01* X8862Y33232D01* X8885Y33260D01* X8905Y33290D01* X8923Y33322D01* X8924Y33324D01* Y31711D01* X8922Y31715D01* X8901Y31744D01* X8877Y31772D01* X8852Y31797D01* X8824Y31820D01* X8794Y31840D01* X8762Y31858D01* X8729Y31873D01* X8695Y31884D01* X8686Y31886D01* X8677Y31886D01* X8669Y31885D01* X8665Y31883D01* Y33115D01* G37* G36* Y31789D02*X8667Y31788D01* X8693Y31779D01* X8718Y31768D01* X8741Y31755D01* X8764Y31740D01* X8785Y31723D01* X8804Y31704D01* X8822Y31683D01* X8837Y31661D01* X8851Y31637D01* X8862Y31613D01* X8871Y31587D01* X8875Y31579D01* X8879Y31572D01* X8885Y31565D01* X8892Y31560D01* X8900Y31556D01* X8908Y31553D01* X8917Y31552D01* X8924Y31552D01* Y31453D01* X8917Y31453D01* X8909Y31452D01* X8901Y31449D01* X8893Y31445D01* X8886Y31439D01* X8880Y31433D01* X8876Y31425D01* X8873Y31417D01* X8864Y31391D01* X8853Y31366D01* X8840Y31343D01* X8825Y31320D01* X8808Y31299D01* X8789Y31280D01* X8768Y31262D01* X8746Y31247D01* X8722Y31233D01* X8698Y31222D01* X8672Y31213D01* X8665Y31210D01* Y31789D01* G37* G36* Y31120D02*X8667Y31119D01* X8676Y31116D01* X8684Y31115D01* X8693Y31115D01* X8701Y31117D01* X8736Y31129D01* X8768Y31144D01* X8800Y31162D01* X8829Y31183D01* X8857Y31207D01* X8882Y31232D01* X8905Y31260D01* X8924Y31288D01* Y29740D01* X8921Y29744D01* X8897Y29772D01* X8872Y29797D01* X8844Y29820D01* X8814Y29840D01* X8782Y29858D01* X8749Y29873D01* X8715Y29884D01* X8706Y29886D01* X8697Y29886D01* X8689Y29885D01* X8681Y29882D01* X8673Y29878D01* X8666Y29872D01* X8665Y29871D01* Y31120D01* G37* G36* Y29801D02*X8672Y29796D01* X8679Y29791D01* X8687Y29788D01* X8713Y29779D01* X8738Y29768D01* X8761Y29755D01* X8784Y29740D01* X8805Y29723D01* X8824Y29704D01* X8842Y29683D01* X8857Y29661D01* X8871Y29637D01* X8882Y29613D01* X8891Y29587D01* X8895Y29579D01* X8899Y29572D01* X8905Y29565D01* X8912Y29560D01* X8920Y29556D01* X8924Y29555D01* Y29450D01* X8921Y29449D01* X8913Y29445D01* X8906Y29439D01* X8900Y29433D01* X8896Y29425D01* X8893Y29417D01* X8884Y29391D01* X8873Y29366D01* X8860Y29343D01* X8845Y29320D01* X8828Y29299D01* X8809Y29280D01* X8788Y29262D01* X8766Y29247D01* X8742Y29233D01* X8718Y29222D01* X8692Y29213D01* X8684Y29209D01* X8677Y29205D01* X8670Y29199D01* X8665Y29192D01* Y29801D01* G37* G36* Y29138D02*X8667Y29135D01* X8673Y29128D01* X8680Y29123D01* X8687Y29119D01* X8696Y29116D01* X8704Y29115D01* X8713Y29115D01* X8721Y29117D01* X8756Y29129D01* X8788Y29144D01* X8820Y29162D01* X8849Y29183D01* X8877Y29207D01* X8902Y29232D01* X8924Y29259D01* Y27764D01* X8917Y27772D01* X8892Y27797D01* X8864Y27820D01* X8834Y27840D01* X8802Y27858D01* X8769Y27873D01* X8735Y27884D01* X8726Y27886D01* X8717Y27886D01* X8709Y27885D01* X8701Y27882D01* X8693Y27878D01* X8686Y27872D01* X8680Y27865D01* X8676Y27858D01* X8673Y27850D01* X8671Y27841D01* X8671Y27833D01* X8672Y27824D01* X8675Y27816D01* X8679Y27808D01* X8685Y27801D01* X8692Y27796D01* X8699Y27791D01* X8707Y27788D01* X8733Y27779D01* X8758Y27768D01* X8781Y27755D01* X8804Y27740D01* X8825Y27723D01* X8844Y27704D01* X8862Y27683D01* X8877Y27661D01* X8891Y27637D01* X8902Y27613D01* X8911Y27587D01* X8915Y27579D01* X8919Y27572D01* X8924Y27567D01* Y27437D01* X8920Y27433D01* X8916Y27425D01* X8913Y27417D01* X8904Y27391D01* X8893Y27366D01* X8880Y27343D01* X8865Y27320D01* X8848Y27299D01* X8829Y27280D01* X8808Y27262D01* X8786Y27247D01* X8762Y27233D01* X8738Y27222D01* X8712Y27213D01* X8704Y27209D01* X8697Y27205D01* X8690Y27199D01* X8685Y27192D01* X8681Y27184D01* X8678Y27176D01* X8677Y27167D01* X8677Y27159D01* X8679Y27150D01* X8682Y27142D01* X8687Y27135D01* X8693Y27128D01* X8700Y27123D01* X8707Y27119D01* X8716Y27116D01* X8724Y27115D01* X8733Y27115D01* X8741Y27117D01* X8776Y27129D01* X8808Y27144D01* X8840Y27162D01* X8869Y27183D01* X8897Y27207D01* X8922Y27232D01* X8924Y27235D01* Y25785D01* X8912Y25797D01* X8884Y25820D01* X8854Y25840D01* X8822Y25858D01* X8789Y25873D01* X8755Y25884D01* X8746Y25886D01* X8737Y25886D01* X8729Y25885D01* X8721Y25882D01* X8713Y25878D01* X8706Y25872D01* X8700Y25865D01* X8696Y25858D01* X8693Y25850D01* X8691Y25841D01* X8691Y25833D01* X8692Y25824D01* X8695Y25816D01* X8699Y25808D01* X8705Y25801D01* X8712Y25796D01* X8719Y25791D01* X8727Y25788D01* X8753Y25779D01* X8778Y25768D01* X8801Y25755D01* X8824Y25740D01* X8845Y25723D01* X8864Y25704D01* X8882Y25683D01* X8897Y25661D01* X8911Y25637D01* X8922Y25613D01* X8924Y25608D01* Y25391D01* X8913Y25366D01* X8900Y25343D01* X8885Y25320D01* X8868Y25299D01* X8849Y25280D01* X8828Y25262D01* X8806Y25247D01* X8782Y25233D01* X8758Y25222D01* X8732Y25213D01* X8724Y25209D01* X8717Y25205D01* X8710Y25199D01* X8705Y25192D01* X8701Y25184D01* X8698Y25176D01* X8697Y25167D01* X8697Y25159D01* X8699Y25150D01* X8702Y25142D01* X8707Y25135D01* X8713Y25128D01* X8720Y25123D01* X8727Y25119D01* X8736Y25116D01* X8744Y25115D01* X8753Y25115D01* X8761Y25117D01* X8796Y25129D01* X8828Y25144D01* X8860Y25162D01* X8889Y25183D01* X8917Y25207D01* X8924Y25214D01* Y23804D01* X8904Y23820D01* X8874Y23840D01* X8842Y23858D01* X8809Y23873D01* X8775Y23884D01* X8766Y23886D01* X8757Y23886D01* X8749Y23885D01* X8741Y23882D01* X8733Y23878D01* X8726Y23872D01* X8720Y23865D01* X8716Y23858D01* X8713Y23850D01* X8711Y23841D01* X8711Y23833D01* X8712Y23824D01* X8715Y23816D01* X8719Y23808D01* X8725Y23801D01* X8732Y23796D01* X8739Y23791D01* X8747Y23788D01* X8773Y23779D01* X8798Y23768D01* X8821Y23755D01* X8844Y23740D01* X8865Y23723D01* X8884Y23704D01* X8902Y23683D01* X8917Y23661D01* X8924Y23650D01* Y23350D01* X8920Y23343D01* X8905Y23320D01* X8888Y23299D01* X8869Y23280D01* X8848Y23262D01* X8826Y23247D01* X8802Y23233D01* X8778Y23222D01* X8752Y23213D01* X8744Y23209D01* X8737Y23205D01* X8730Y23199D01* X8725Y23192D01* X8721Y23184D01* X8718Y23176D01* X8717Y23167D01* X8717Y23159D01* X8719Y23150D01* X8722Y23142D01* X8727Y23135D01* X8733Y23128D01* X8740Y23123D01* X8747Y23119D01* X8756Y23116D01* X8764Y23115D01* X8773Y23115D01* X8781Y23117D01* X8816Y23129D01* X8848Y23144D01* X8880Y23162D01* X8909Y23183D01* X8924Y23196D01* Y21820D01* X8924Y21820D01* X8894Y21840D01* X8862Y21858D01* X8829Y21873D01* X8795Y21884D01* X8786Y21886D01* X8777Y21886D01* X8769Y21885D01* X8761Y21882D01* X8753Y21878D01* X8746Y21872D01* X8740Y21865D01* X8736Y21858D01* X8733Y21850D01* X8731Y21841D01* X8731Y21833D01* X8732Y21824D01* X8735Y21816D01* X8739Y21808D01* X8745Y21801D01* X8752Y21796D01* X8759Y21791D01* X8767Y21788D01* X8793Y21779D01* X8818Y21768D01* X8841Y21755D01* X8864Y21740D01* X8885Y21723D01* X8904Y21704D01* X8922Y21683D01* X8924Y21680D01* Y21319D01* X8908Y21299D01* X8889Y21280D01* X8868Y21262D01* X8846Y21247D01* X8822Y21233D01* X8798Y21222D01* X8772Y21213D01* X8764Y21209D01* X8757Y21205D01* X8750Y21199D01* X8745Y21192D01* X8741Y21184D01* X8738Y21176D01* X8737Y21167D01* X8737Y21159D01* X8739Y21150D01* X8742Y21142D01* X8747Y21135D01* X8753Y21128D01* X8760Y21123D01* X8767Y21119D01* X8776Y21116D01* X8784Y21115D01* X8793Y21115D01* X8801Y21117D01* X8836Y21129D01* X8868Y21144D01* X8900Y21162D01* X8924Y21180D01* Y19834D01* X8914Y19840D01* X8882Y19858D01* X8849Y19873D01* X8815Y19884D01* X8806Y19886D01* X8797Y19886D01* X8789Y19885D01* X8781Y19882D01* X8773Y19878D01* X8766Y19872D01* X8760Y19865D01* X8756Y19858D01* X8753Y19850D01* X8751Y19841D01* X8751Y19833D01* X8752Y19824D01* X8755Y19816D01* X8759Y19808D01* X8765Y19801D01* X8772Y19796D01* X8779Y19791D01* X8787Y19788D01* X8813Y19779D01* X8838Y19768D01* X8861Y19755D01* X8884Y19740D01* X8905Y19723D01* X8924Y19704D01* Y19295D01* X8909Y19280D01* X8888Y19262D01* X8866Y19247D01* X8842Y19233D01* X8818Y19222D01* X8792Y19213D01* X8784Y19209D01* X8777Y19205D01* X8770Y19199D01* X8765Y19192D01* X8761Y19184D01* X8758Y19176D01* X8757Y19167D01* X8757Y19159D01* X8759Y19150D01* X8762Y19142D01* X8767Y19135D01* X8773Y19128D01* X8780Y19123D01* X8787Y19119D01* X8796Y19116D01* X8804Y19115D01* X8813Y19115D01* X8821Y19117D01* X8856Y19129D01* X8888Y19144D01* X8920Y19162D01* X8924Y19165D01* Y17846D01* X8902Y17858D01* X8869Y17873D01* X8835Y17884D01* X8826Y17886D01* X8817Y17886D01* X8809Y17885D01* X8801Y17882D01* X8793Y17878D01* X8786Y17872D01* X8780Y17865D01* X8776Y17858D01* X8773Y17850D01* X8771Y17841D01* X8771Y17833D01* X8772Y17824D01* X8775Y17816D01* X8779Y17808D01* X8785Y17801D01* X8792Y17796D01* X8799Y17791D01* X8807Y17788D01* X8833Y17779D01* X8858Y17768D01* X8881Y17755D01* X8904Y17740D01* X8924Y17724D01* Y17276D01* X8908Y17262D01* X8886Y17247D01* X8862Y17233D01* X8838Y17222D01* X8812Y17213D01* X8804Y17209D01* X8797Y17205D01* X8790Y17199D01* X8785Y17192D01* X8781Y17184D01* X8778Y17176D01* X8777Y17167D01* X8777Y17159D01* X8779Y17150D01* X8782Y17142D01* X8787Y17135D01* X8793Y17128D01* X8800Y17123D01* X8807Y17119D01* X8816Y17116D01* X8824Y17115D01* X8833Y17115D01* X8841Y17117D01* X8876Y17129D01* X8908Y17144D01* X8924Y17153D01* Y15857D01* X8922Y15858D01* X8889Y15873D01* X8855Y15884D01* X8846Y15886D01* X8837Y15886D01* X8829Y15885D01* X8821Y15882D01* X8813Y15878D01* X8806Y15872D01* X8800Y15865D01* X8796Y15858D01* X8793Y15850D01* X8791Y15841D01* X8791Y15833D01* X8792Y15824D01* X8795Y15816D01* X8799Y15808D01* X8805Y15801D01* X8812Y15796D01* X8819Y15791D01* X8827Y15788D01* X8853Y15779D01* X8878Y15768D01* X8901Y15755D01* X8924Y15740D01* Y15259D01* X8906Y15247D01* X8882Y15233D01* X8858Y15222D01* X8832Y15213D01* X8824Y15209D01* X8817Y15205D01* X8810Y15199D01* X8805Y15192D01* X8801Y15184D01* X8798Y15176D01* X8797Y15167D01* X8797Y15159D01* X8799Y15150D01* X8802Y15142D01* X8807Y15135D01* X8813Y15128D01* X8820Y15123D01* X8827Y15119D01* X8836Y15116D01* X8844Y15115D01* X8853Y15115D01* X8861Y15117D01* X8896Y15129D01* X8924Y15142D01* Y13866D01* X8909Y13873D01* X8875Y13884D01* X8866Y13886D01* X8857Y13886D01* X8849Y13885D01* X8841Y13882D01* X8833Y13878D01* X8826Y13872D01* X8820Y13865D01* X8816Y13858D01* X8813Y13850D01* X8811Y13841D01* X8811Y13833D01* X8812Y13824D01* X8815Y13816D01* X8819Y13808D01* X8825Y13801D01* X8832Y13796D01* X8839Y13791D01* X8847Y13788D01* X8873Y13779D01* X8898Y13768D01* X8921Y13755D01* X8924Y13754D01* Y13246D01* X8902Y13233D01* X8878Y13222D01* X8852Y13213D01* X8844Y13209D01* X8837Y13205D01* X8830Y13199D01* X8825Y13192D01* X8821Y13184D01* X8818Y13176D01* X8817Y13167D01* X8817Y13159D01* X8819Y13150D01* X8822Y13142D01* X8827Y13135D01* X8833Y13128D01* X8840Y13123D01* X8847Y13119D01* X8856Y13116D01* X8864Y13115D01* X8873Y13115D01* X8881Y13117D01* X8916Y13129D01* X8924Y13133D01* Y11874D01* X8895Y11884D01* X8886Y11886D01* X8877Y11886D01* X8869Y11885D01* X8861Y11882D01* X8853Y11878D01* X8846Y11872D01* X8840Y11865D01* X8836Y11858D01* X8833Y11850D01* X8831Y11841D01* X8831Y11833D01* X8832Y11824D01* X8835Y11816D01* X8839Y11808D01* X8845Y11801D01* X8852Y11796D01* X8859Y11791D01* X8867Y11788D01* X8893Y11779D01* X8918Y11768D01* X8924Y11765D01* Y11234D01* X8922Y11233D01* X8898Y11222D01* X8872Y11213D01* X8864Y11209D01* X8857Y11205D01* X8850Y11199D01* X8845Y11192D01* X8841Y11184D01* X8838Y11176D01* X8837Y11167D01* X8837Y11159D01* X8839Y11150D01* X8842Y11142D01* X8847Y11135D01* X8853Y11128D01* X8860Y11123D01* X8867Y11119D01* X8876Y11116D01* X8884Y11115D01* X8893Y11115D01* X8901Y11117D01* X8924Y11125D01* Y9881D01* X8915Y9884D01* X8906Y9886D01* X8897Y9886D01* X8889Y9885D01* X8881Y9882D01* X8873Y9878D01* X8866Y9872D01* X8860Y9865D01* X8856Y9858D01* X8853Y9850D01* X8851Y9841D01* X8851Y9833D01* X8852Y9824D01* X8855Y9816D01* X8859Y9808D01* X8865Y9801D01* X8872Y9796D01* X8879Y9791D01* X8887Y9788D01* X8913Y9779D01* X8924Y9774D01* Y9225D01* X8918Y9222D01* X8892Y9213D01* X8884Y9209D01* X8877Y9205D01* X8870Y9199D01* X8865Y9192D01* X8861Y9184D01* X8858Y9176D01* X8857Y9167D01* X8857Y9159D01* X8859Y9150D01* X8862Y9142D01* X8867Y9135D01* X8873Y9128D01* X8880Y9123D01* X8887Y9119D01* X8896Y9116D01* X8904Y9115D01* X8913Y9115D01* X8921Y9117D01* X8924Y9118D01* Y7886D01* X8917Y7886D01* X8909Y7885D01* X8901Y7882D01* X8893Y7878D01* X8886Y7872D01* X8880Y7865D01* X8876Y7858D01* X8873Y7850D01* X8871Y7841D01* X8871Y7833D01* X8872Y7824D01* X8875Y7816D01* X8879Y7808D01* X8885Y7801D01* X8892Y7796D01* X8899Y7791D01* X8907Y7788D01* X8924Y7782D01* Y7217D01* X8912Y7213D01* X8904Y7209D01* X8897Y7205D01* X8890Y7199D01* X8885Y7192D01* X8881Y7184D01* X8878Y7176D01* X8877Y7167D01* X8877Y7159D01* X8879Y7150D01* X8882Y7142D01* X8887Y7135D01* X8893Y7128D01* X8900Y7123D01* X8907Y7119D01* X8916Y7116D01* X8924Y7115D01* Y5883D01* X8921Y5882D01* X8913Y5878D01* X8906Y5872D01* X8900Y5865D01* X8896Y5858D01* X8893Y5850D01* X8891Y5841D01* X8891Y5833D01* X8892Y5824D01* X8895Y5816D01* X8899Y5808D01* X8905Y5801D01* X8912Y5796D01* X8919Y5791D01* X8924Y5789D01* Y5209D01* X8917Y5205D01* X8910Y5199D01* X8905Y5192D01* X8901Y5184D01* X8898Y5176D01* X8897Y5167D01* X8897Y5159D01* X8899Y5150D01* X8902Y5142D01* X8907Y5135D01* X8913Y5128D01* X8920Y5123D01* X8924Y5121D01* Y3870D01* X8920Y3865D01* X8916Y3858D01* X8913Y3850D01* X8911Y3841D01* X8911Y3833D01* X8912Y3824D01* X8915Y3816D01* X8919Y3808D01* X8924Y3802D01* Y3190D01* X8921Y3184D01* X8918Y3176D01* X8917Y3167D01* X8917Y3159D01* X8919Y3150D01* X8922Y3142D01* X8924Y3140D01* Y0D01* X8665D01* Y1166D01* X8675Y1159D01* X8707Y1141D01* X8740Y1127D01* X8774Y1115D01* X8783Y1113D01* X8792Y1113D01* X8800Y1115D01* X8808Y1117D01* X8816Y1122D01* X8823Y1127D01* X8829Y1134D01* X8833Y1141D01* X8836Y1149D01* X8838Y1158D01* X8838Y1167D01* X8837Y1175D01* X8834Y1183D01* X8830Y1191D01* X8824Y1198D01* X8817Y1204D01* X8810Y1208D01* X8802Y1211D01* X8776Y1220D01* X8751Y1231D01* X8728Y1244D01* X8705Y1259D01* X8684Y1276D01* X8665Y1295D01* Y1704D01* X8680Y1719D01* X8701Y1737D01* X8723Y1752D01* X8747Y1766D01* X8771Y1777D01* X8797Y1786D01* X8805Y1790D01* X8812Y1794D01* X8819Y1800D01* X8824Y1807D01* X8828Y1815D01* X8831Y1823D01* X8832Y1832D01* X8832Y1840D01* X8830Y1849D01* X8827Y1857D01* X8822Y1864D01* X8816Y1871D01* X8809Y1876D01* X8802Y1880D01* X8793Y1883D01* X8785Y1884D01* X8776Y1884D01* X8768Y1882D01* X8733Y1870D01* X8701Y1855D01* X8669Y1837D01* X8665Y1834D01* Y3153D01* X8687Y3141D01* X8720Y3127D01* X8754Y3115D01* X8763Y3113D01* X8772Y3113D01* X8780Y3115D01* X8788Y3117D01* X8796Y3122D01* X8803Y3127D01* X8809Y3134D01* X8813Y3141D01* X8816Y3149D01* X8818Y3158D01* X8818Y3167D01* X8817Y3175D01* X8814Y3183D01* X8810Y3191D01* X8804Y3198D01* X8797Y3204D01* X8790Y3208D01* X8782Y3211D01* X8756Y3220D01* X8731Y3231D01* X8708Y3244D01* X8685Y3259D01* X8665Y3276D01* Y3723D01* X8681Y3737D01* X8703Y3752D01* X8727Y3766D01* X8751Y3777D01* X8777Y3786D01* X8785Y3790D01* X8792Y3794D01* X8799Y3800D01* X8804Y3807D01* X8808Y3815D01* X8811Y3823D01* X8812Y3832D01* X8812Y3840D01* X8810Y3849D01* X8807Y3857D01* X8802Y3864D01* X8796Y3871D01* X8789Y3876D01* X8782Y3880D01* X8773Y3883D01* X8765Y3884D01* X8756Y3884D01* X8748Y3882D01* X8713Y3870D01* X8681Y3855D01* X8665Y3846D01* Y5142D01* X8667Y5141D01* X8700Y5127D01* X8734Y5115D01* X8743Y5113D01* X8752Y5113D01* X8760Y5115D01* X8768Y5117D01* X8776Y5122D01* X8783Y5127D01* X8789Y5134D01* X8793Y5141D01* X8796Y5149D01* X8798Y5158D01* X8798Y5167D01* X8797Y5175D01* X8794Y5183D01* X8790Y5191D01* X8784Y5198D01* X8777Y5204D01* X8770Y5208D01* X8762Y5211D01* X8736Y5220D01* X8711Y5231D01* X8688Y5244D01* X8665Y5259D01* Y5740D01* X8683Y5752D01* X8707Y5766D01* X8731Y5777D01* X8757Y5786D01* X8765Y5790D01* X8772Y5794D01* X8779Y5800D01* X8784Y5807D01* X8788Y5815D01* X8791Y5823D01* X8792Y5832D01* X8792Y5840D01* X8790Y5849D01* X8787Y5857D01* X8782Y5864D01* X8776Y5871D01* X8769Y5876D01* X8762Y5880D01* X8753Y5883D01* X8745Y5884D01* X8736Y5884D01* X8728Y5882D01* X8693Y5870D01* X8665Y5857D01* Y7133D01* X8680Y7127D01* X8714Y7115D01* X8723Y7113D01* X8732Y7113D01* X8740Y7115D01* X8748Y7117D01* X8756Y7122D01* X8763Y7127D01* X8769Y7134D01* X8773Y7141D01* X8776Y7149D01* X8778Y7158D01* X8778Y7167D01* X8777Y7175D01* X8774Y7183D01* X8770Y7191D01* X8764Y7198D01* X8757Y7204D01* X8750Y7208D01* X8742Y7211D01* X8716Y7220D01* X8691Y7231D01* X8668Y7244D01* X8665Y7246D01* Y7754D01* X8687Y7766D01* X8711Y7777D01* X8737Y7786D01* X8745Y7790D01* X8752Y7794D01* X8759Y7800D01* X8764Y7807D01* X8768Y7815D01* X8771Y7823D01* X8772Y7832D01* X8772Y7840D01* X8770Y7849D01* X8767Y7857D01* X8762Y7864D01* X8756Y7871D01* X8749Y7876D01* X8742Y7880D01* X8733Y7883D01* X8725Y7884D01* X8716Y7884D01* X8708Y7882D01* X8673Y7870D01* X8665Y7866D01* Y9125D01* X8694Y9115D01* X8703Y9113D01* X8712Y9113D01* X8720Y9115D01* X8728Y9117D01* X8736Y9122D01* X8743Y9127D01* X8749Y9134D01* X8753Y9141D01* X8756Y9149D01* X8758Y9158D01* X8758Y9167D01* X8757Y9175D01* X8754Y9183D01* X8750Y9191D01* X8744Y9198D01* X8737Y9204D01* X8730Y9208D01* X8722Y9211D01* X8696Y9220D01* X8671Y9231D01* X8665Y9234D01* Y9765D01* X8667Y9766D01* X8691Y9777D01* X8717Y9786D01* X8725Y9790D01* X8732Y9794D01* X8739Y9800D01* X8744Y9807D01* X8748Y9815D01* X8751Y9823D01* X8752Y9832D01* X8752Y9840D01* X8750Y9849D01* X8747Y9857D01* X8742Y9864D01* X8736Y9871D01* X8729Y9876D01* X8722Y9880D01* X8713Y9883D01* X8705Y9884D01* X8696Y9884D01* X8688Y9882D01* X8665Y9874D01* Y11118D01* X8674Y11115D01* X8683Y11113D01* X8692Y11113D01* X8700Y11115D01* X8708Y11117D01* X8716Y11122D01* X8723Y11127D01* X8729Y11134D01* X8733Y11141D01* X8736Y11149D01* X8738Y11158D01* X8738Y11167D01* X8737Y11175D01* X8734Y11183D01* X8730Y11191D01* X8724Y11198D01* X8717Y11204D01* X8710Y11208D01* X8702Y11211D01* X8676Y11220D01* X8665Y11225D01* Y11775D01* X8671Y11777D01* X8697Y11786D01* X8705Y11790D01* X8712Y11794D01* X8719Y11800D01* X8724Y11807D01* X8728Y11815D01* X8731Y11823D01* X8732Y11832D01* X8732Y11840D01* X8730Y11849D01* X8727Y11857D01* X8722Y11864D01* X8716Y11871D01* X8709Y11876D01* X8702Y11880D01* X8693Y11883D01* X8685Y11884D01* X8676Y11884D01* X8668Y11882D01* X8665Y11881D01* Y13113D01* X8672Y13113D01* X8680Y13115D01* X8688Y13117D01* X8696Y13122D01* X8703Y13127D01* X8709Y13134D01* X8713Y13141D01* X8716Y13149D01* X8718Y13158D01* X8718Y13167D01* X8717Y13175D01* X8714Y13183D01* X8710Y13191D01* X8704Y13198D01* X8697Y13204D01* X8690Y13208D01* X8682Y13211D01* X8665Y13217D01* Y13782D01* X8677Y13786D01* X8685Y13790D01* X8692Y13794D01* X8699Y13800D01* X8704Y13807D01* X8708Y13815D01* X8711Y13823D01* X8712Y13832D01* X8712Y13840D01* X8710Y13849D01* X8707Y13857D01* X8702Y13864D01* X8696Y13871D01* X8689Y13876D01* X8682Y13880D01* X8673Y13883D01* X8665Y13884D01* Y15116D01* X8668Y15117D01* X8676Y15122D01* X8683Y15127D01* X8689Y15134D01* X8693Y15141D01* X8696Y15149D01* X8698Y15158D01* X8698Y15167D01* X8697Y15175D01* X8694Y15183D01* X8690Y15191D01* X8684Y15198D01* X8677Y15204D01* X8670Y15208D01* X8665Y15210D01* Y15790D01* X8672Y15794D01* X8679Y15800D01* X8684Y15807D01* X8688Y15815D01* X8691Y15823D01* X8692Y15832D01* X8692Y15840D01* X8690Y15849D01* X8687Y15857D01* X8682Y15864D01* X8676Y15871D01* X8669Y15876D01* X8665Y15878D01* Y17130D01* X8669Y17134D01* X8673Y17141D01* X8676Y17149D01* X8678Y17158D01* X8678Y17167D01* X8677Y17175D01* X8674Y17183D01* X8670Y17191D01* X8665Y17197D01* Y17809D01* X8668Y17815D01* X8671Y17823D01* X8672Y17832D01* X8672Y17840D01* X8670Y17849D01* X8667Y17857D01* X8665Y17859D01* Y29138D01* G37* G36* X8924Y40000D02*X9104D01* Y17625D01* X9095Y17651D01* X9080Y17683D01* X9062Y17715D01* X9041Y17744D01* X9017Y17772D01* X8992Y17797D01* X8964Y17820D01* X8934Y17840D01* X8924Y17846D01* Y19165D01* X8949Y19183D01* X8977Y19207D01* X9002Y19232D01* X9025Y19260D01* X9045Y19290D01* X9063Y19322D01* X9077Y19355D01* X9089Y19389D01* X9091Y19398D01* X9091Y19407D01* X9090Y19415D01* X9087Y19423D01* X9082Y19431D01* X9077Y19438D01* X9070Y19444D01* X9063Y19448D01* X9055Y19451D01* X9046Y19453D01* X9037Y19453D01* X9029Y19452D01* X9021Y19449D01* X9013Y19445D01* X9006Y19439D01* X9000Y19433D01* X8996Y19425D01* X8993Y19417D01* X8984Y19391D01* X8973Y19366D01* X8960Y19343D01* X8945Y19320D01* X8928Y19299D01* X8924Y19295D01* Y19704D01* X8924Y19704D01* X8942Y19683D01* X8957Y19661D01* X8971Y19637D01* X8982Y19613D01* X8991Y19587D01* X8995Y19579D01* X8999Y19572D01* X9005Y19565D01* X9012Y19560D01* X9020Y19556D01* X9028Y19553D01* X9037Y19552D01* X9045Y19552D01* X9054Y19554D01* X9062Y19557D01* X9069Y19562D01* X9076Y19568D01* X9081Y19575D01* X9085Y19582D01* X9088Y19591D01* X9089Y19599D01* X9089Y19608D01* X9087Y19617D01* X9075Y19651D01* X9060Y19683D01* X9042Y19715D01* X9021Y19744D01* X8997Y19772D01* X8972Y19797D01* X8944Y19820D01* X8924Y19834D01* Y21180D01* X8929Y21183D01* X8957Y21207D01* X8982Y21232D01* X9005Y21260D01* X9025Y21290D01* X9043Y21322D01* X9057Y21355D01* X9069Y21389D01* X9071Y21398D01* X9071Y21407D01* X9070Y21415D01* X9067Y21423D01* X9062Y21431D01* X9057Y21438D01* X9050Y21444D01* X9043Y21448D01* X9035Y21451D01* X9026Y21453D01* X9017Y21453D01* X9009Y21452D01* X9001Y21449D01* X8993Y21445D01* X8986Y21439D01* X8980Y21433D01* X8976Y21425D01* X8973Y21417D01* X8964Y21391D01* X8953Y21366D01* X8940Y21343D01* X8925Y21320D01* X8924Y21319D01* Y21680D01* X8937Y21661D01* X8951Y21637D01* X8962Y21613D01* X8971Y21587D01* X8975Y21579D01* X8979Y21572D01* X8985Y21565D01* X8992Y21560D01* X9000Y21556D01* X9008Y21553D01* X9017Y21552D01* X9025Y21552D01* X9034Y21554D01* X9042Y21557D01* X9049Y21562D01* X9056Y21568D01* X9061Y21575D01* X9065Y21582D01* X9068Y21591D01* X9069Y21599D01* X9069Y21608D01* X9067Y21617D01* X9055Y21651D01* X9040Y21683D01* X9022Y21715D01* X9001Y21744D01* X8977Y21772D01* X8952Y21797D01* X8924Y21820D01* Y23196D01* X8937Y23207D01* X8962Y23232D01* X8985Y23260D01* X9005Y23290D01* X9023Y23322D01* X9037Y23355D01* X9049Y23389D01* X9051Y23398D01* X9051Y23407D01* X9050Y23415D01* X9047Y23423D01* X9042Y23431D01* X9037Y23438D01* X9030Y23444D01* X9023Y23448D01* X9015Y23451D01* X9006Y23453D01* X8997Y23453D01* X8989Y23452D01* X8981Y23449D01* X8973Y23445D01* X8966Y23439D01* X8960Y23433D01* X8956Y23425D01* X8953Y23417D01* X8944Y23391D01* X8933Y23366D01* X8924Y23350D01* Y23650D01* X8931Y23637D01* X8942Y23613D01* X8951Y23587D01* X8955Y23579D01* X8959Y23572D01* X8965Y23565D01* X8972Y23560D01* X8980Y23556D01* X8988Y23553D01* X8997Y23552D01* X9005Y23552D01* X9014Y23554D01* X9022Y23557D01* X9029Y23562D01* X9036Y23568D01* X9041Y23575D01* X9045Y23582D01* X9048Y23591D01* X9049Y23599D01* X9049Y23608D01* X9047Y23617D01* X9035Y23651D01* X9020Y23683D01* X9002Y23715D01* X8981Y23744D01* X8957Y23772D01* X8932Y23797D01* X8924Y23804D01* Y25214D01* X8942Y25232D01* X8965Y25260D01* X8985Y25290D01* X9003Y25322D01* X9017Y25355D01* X9029Y25389D01* X9031Y25398D01* X9031Y25407D01* X9030Y25415D01* X9027Y25423D01* X9022Y25431D01* X9017Y25438D01* X9010Y25444D01* X9003Y25448D01* X8995Y25451D01* X8986Y25453D01* X8977Y25453D01* X8969Y25452D01* X8961Y25449D01* X8953Y25445D01* X8946Y25439D01* X8940Y25433D01* X8936Y25425D01* X8933Y25417D01* X8924Y25391D01* X8924Y25391D01* Y25608D01* X8931Y25587D01* X8935Y25579D01* X8939Y25572D01* X8945Y25565D01* X8952Y25560D01* X8960Y25556D01* X8968Y25553D01* X8977Y25552D01* X8985Y25552D01* X8994Y25554D01* X9002Y25557D01* X9009Y25562D01* X9016Y25568D01* X9021Y25575D01* X9025Y25582D01* X9028Y25591D01* X9029Y25599D01* X9029Y25608D01* X9027Y25617D01* X9015Y25651D01* X9000Y25683D01* X8982Y25715D01* X8961Y25744D01* X8937Y25772D01* X8924Y25785D01* Y27235D01* X8945Y27260D01* X8965Y27290D01* X8983Y27322D01* X8997Y27355D01* X9009Y27389D01* X9011Y27398D01* X9011Y27407D01* X9010Y27415D01* X9007Y27423D01* X9002Y27431D01* X8997Y27438D01* X8990Y27444D01* X8983Y27448D01* X8975Y27451D01* X8966Y27453D01* X8957Y27453D01* X8949Y27452D01* X8941Y27449D01* X8933Y27445D01* X8926Y27439D01* X8924Y27437D01* Y27567D01* X8925Y27565D01* X8932Y27560D01* X8940Y27556D01* X8948Y27553D01* X8957Y27552D01* X8965Y27552D01* X8974Y27554D01* X8982Y27557D01* X8989Y27562D01* X8996Y27568D01* X9001Y27575D01* X9005Y27582D01* X9008Y27591D01* X9009Y27599D01* X9009Y27608D01* X9007Y27617D01* X8995Y27651D01* X8980Y27683D01* X8962Y27715D01* X8941Y27744D01* X8924Y27764D01* Y29259D01* X8925Y29260D01* X8945Y29290D01* X8963Y29322D01* X8977Y29355D01* X8989Y29389D01* X8991Y29398D01* X8991Y29407D01* X8990Y29415D01* X8987Y29423D01* X8982Y29431D01* X8977Y29438D01* X8970Y29444D01* X8963Y29448D01* X8955Y29451D01* X8946Y29453D01* X8937Y29453D01* X8929Y29452D01* X8924Y29450D01* Y29555D01* X8928Y29553D01* X8937Y29552D01* X8945Y29552D01* X8954Y29554D01* X8962Y29557D01* X8969Y29562D01* X8976Y29568D01* X8981Y29575D01* X8985Y29582D01* X8988Y29591D01* X8989Y29599D01* X8989Y29608D01* X8987Y29617D01* X8975Y29651D01* X8960Y29683D01* X8942Y29715D01* X8924Y29740D01* Y31288D01* X8925Y31290D01* X8943Y31322D01* X8957Y31355D01* X8969Y31389D01* X8971Y31398D01* X8971Y31407D01* X8970Y31415D01* X8967Y31423D01* X8962Y31431D01* X8957Y31438D01* X8950Y31444D01* X8943Y31448D01* X8935Y31451D01* X8926Y31453D01* X8924D01* Y31552D01* X8925D01* X8934Y31554D01* X8942Y31557D01* X8949Y31562D01* X8956Y31568D01* X8961Y31575D01* X8965Y31582D01* X8968Y31591D01* X8969Y31599D01* X8969Y31608D01* X8967Y31617D01* X8955Y31651D01* X8940Y31683D01* X8924Y31711D01* Y33324D01* X8937Y33355D01* X8949Y33389D01* X8951Y33398D01* X8951Y33407D01* X8950Y33415D01* X8947Y33423D01* X8942Y33431D01* X8937Y33438D01* X8930Y33444D01* X8924Y33447D01* Y33559D01* X8929Y33562D01* X8936Y33568D01* X8941Y33575D01* X8945Y33582D01* X8948Y33591D01* X8949Y33599D01* X8949Y33608D01* X8947Y33617D01* X8935Y33651D01* X8924Y33674D01* Y35374D01* X8929Y35389D01* X8931Y35398D01* X8931Y35407D01* X8930Y35415D01* X8927Y35423D01* X8924Y35428D01* Y35580D01* X8925Y35582D01* X8928Y35591D01* X8929Y35599D01* X8929Y35608D01* X8927Y35617D01* X8924Y35625D01* Y40000D01* G37* G36* X9104Y0D02*X8924D01* Y3140D01* X8927Y3135D01* X8933Y3128D01* X8940Y3123D01* X8947Y3119D01* X8956Y3116D01* X8964Y3115D01* X8973Y3115D01* X8981Y3117D01* X9016Y3129D01* X9048Y3144D01* X9080Y3162D01* X9104Y3180D01* Y1834D01* X9094Y1840D01* X9062Y1858D01* X9029Y1873D01* X8995Y1884D01* X8986Y1886D01* X8977Y1886D01* X8969Y1885D01* X8961Y1882D01* X8953Y1878D01* X8946Y1872D01* X8940Y1865D01* X8936Y1858D01* X8933Y1850D01* X8931Y1841D01* X8931Y1833D01* X8932Y1824D01* X8935Y1816D01* X8939Y1808D01* X8945Y1801D01* X8952Y1796D01* X8959Y1791D01* X8967Y1788D01* X8993Y1779D01* X9018Y1768D01* X9041Y1755D01* X9064Y1740D01* X9085Y1723D01* X9104Y1704D01* Y1295D01* X9089Y1280D01* X9068Y1262D01* X9046Y1247D01* X9022Y1233D01* X8998Y1222D01* X8972Y1213D01* X8964Y1209D01* X8957Y1205D01* X8950Y1199D01* X8945Y1192D01* X8941Y1184D01* X8938Y1176D01* X8937Y1167D01* X8937Y1159D01* X8939Y1150D01* X8942Y1142D01* X8947Y1135D01* X8953Y1128D01* X8960Y1123D01* X8967Y1119D01* X8976Y1116D01* X8984Y1115D01* X8993Y1115D01* X9001Y1117D01* X9036Y1129D01* X9068Y1144D01* X9100Y1162D01* X9104Y1165D01* Y0D01* G37* G36* Y3319D02*X9088Y3299D01* X9069Y3280D01* X9048Y3262D01* X9026Y3247D01* X9002Y3233D01* X8978Y3222D01* X8952Y3213D01* X8944Y3209D01* X8937Y3205D01* X8930Y3199D01* X8925Y3192D01* X8924Y3190D01* Y3802D01* X8925Y3801D01* X8932Y3796D01* X8939Y3791D01* X8947Y3788D01* X8973Y3779D01* X8998Y3768D01* X9021Y3755D01* X9044Y3740D01* X9065Y3723D01* X9084Y3704D01* X9102Y3683D01* X9104Y3680D01* Y3319D01* G37* G36* Y3820D02*X9104Y3820D01* X9074Y3840D01* X9042Y3858D01* X9009Y3873D01* X8975Y3884D01* X8966Y3886D01* X8957Y3886D01* X8949Y3885D01* X8941Y3882D01* X8933Y3878D01* X8926Y3872D01* X8924Y3870D01* Y5121D01* X8927Y5119D01* X8936Y5116D01* X8944Y5115D01* X8953Y5115D01* X8961Y5117D01* X8996Y5129D01* X9028Y5144D01* X9060Y5162D01* X9089Y5183D01* X9104Y5196D01* Y3820D01* G37* G36* Y5350D02*X9100Y5343D01* X9085Y5320D01* X9068Y5299D01* X9049Y5280D01* X9028Y5262D01* X9006Y5247D01* X8982Y5233D01* X8958Y5222D01* X8932Y5213D01* X8924Y5209D01* X8924Y5209D01* Y5789D01* X8927Y5788D01* X8953Y5779D01* X8978Y5768D01* X9001Y5755D01* X9024Y5740D01* X9045Y5723D01* X9064Y5704D01* X9082Y5683D01* X9097Y5661D01* X9104Y5650D01* Y5350D01* G37* G36* Y5804D02*X9084Y5820D01* X9054Y5840D01* X9022Y5858D01* X8989Y5873D01* X8955Y5884D01* X8946Y5886D01* X8937Y5886D01* X8929Y5885D01* X8924Y5883D01* Y7115D01* X8924D01* X8933Y7115D01* X8941Y7117D01* X8976Y7129D01* X9008Y7144D01* X9040Y7162D01* X9069Y7183D01* X9097Y7207D01* X9104Y7214D01* Y5804D01* G37* G36* Y7391D02*X9093Y7366D01* X9080Y7343D01* X9065Y7320D01* X9048Y7299D01* X9029Y7280D01* X9008Y7262D01* X8986Y7247D01* X8962Y7233D01* X8938Y7222D01* X8924Y7217D01* Y7782D01* X8933Y7779D01* X8958Y7768D01* X8981Y7755D01* X9004Y7740D01* X9025Y7723D01* X9044Y7704D01* X9062Y7683D01* X9077Y7661D01* X9091Y7637D01* X9102Y7613D01* X9104Y7608D01* Y7391D01* G37* G36* Y7785D02*X9092Y7797D01* X9064Y7820D01* X9034Y7840D01* X9002Y7858D01* X8969Y7873D01* X8935Y7884D01* X8926Y7886D01* X8924D01* Y9118D01* X8956Y9129D01* X8988Y9144D01* X9020Y9162D01* X9049Y9183D01* X9077Y9207D01* X9102Y9232D01* X9104Y9235D01* Y7785D01* G37* G36* Y9437D02*X9100Y9433D01* X9096Y9425D01* X9093Y9417D01* X9084Y9391D01* X9073Y9366D01* X9060Y9343D01* X9045Y9320D01* X9028Y9299D01* X9009Y9280D01* X8988Y9262D01* X8966Y9247D01* X8942Y9233D01* X8924Y9225D01* Y9774D01* X8938Y9768D01* X8961Y9755D01* X8984Y9740D01* X9005Y9723D01* X9024Y9704D01* X9042Y9683D01* X9057Y9661D01* X9071Y9637D01* X9082Y9613D01* X9091Y9587D01* X9095Y9579D01* X9099Y9572D01* X9104Y9567D01* Y9437D01* G37* G36* Y9764D02*X9097Y9772D01* X9072Y9797D01* X9044Y9820D01* X9014Y9840D01* X8982Y9858D01* X8949Y9873D01* X8924Y9881D01* Y11125D01* X8936Y11129D01* X8968Y11144D01* X9000Y11162D01* X9029Y11183D01* X9057Y11207D01* X9082Y11232D01* X9104Y11259D01* Y9764D01* G37* G36* Y11450D02*X9101Y11449D01* X9093Y11445D01* X9086Y11439D01* X9080Y11433D01* X9076Y11425D01* X9073Y11417D01* X9064Y11391D01* X9053Y11366D01* X9040Y11343D01* X9025Y11320D01* X9008Y11299D01* X8989Y11280D01* X8968Y11262D01* X8946Y11247D01* X8924Y11234D01* Y11765D01* X8941Y11755D01* X8964Y11740D01* X8985Y11723D01* X9004Y11704D01* X9022Y11683D01* X9037Y11661D01* X9051Y11637D01* X9062Y11613D01* X9071Y11587D01* X9075Y11579D01* X9079Y11572D01* X9085Y11565D01* X9092Y11560D01* X9100Y11556D01* X9104Y11555D01* Y11450D01* G37* G36* Y11740D02*X9101Y11744D01* X9077Y11772D01* X9052Y11797D01* X9024Y11820D01* X8994Y11840D01* X8962Y11858D01* X8929Y11873D01* X8924Y11874D01* Y13133D01* X8948Y13144D01* X8980Y13162D01* X9009Y13183D01* X9037Y13207D01* X9062Y13232D01* X9085Y13260D01* X9104Y13288D01* Y11740D01* G37* G36* Y13453D02*X9097Y13453D01* X9089Y13452D01* X9081Y13449D01* X9073Y13445D01* X9066Y13439D01* X9060Y13433D01* X9056Y13425D01* X9053Y13417D01* X9044Y13391D01* X9033Y13366D01* X9020Y13343D01* X9005Y13320D01* X8988Y13299D01* X8969Y13280D01* X8948Y13262D01* X8926Y13247D01* X8924Y13246D01* Y13754D01* X8944Y13740D01* X8965Y13723D01* X8984Y13704D01* X9002Y13683D01* X9017Y13661D01* X9031Y13637D01* X9042Y13613D01* X9051Y13587D01* X9055Y13579D01* X9059Y13572D01* X9065Y13565D01* X9072Y13560D01* X9080Y13556D01* X9088Y13553D01* X9097Y13552D01* X9104Y13552D01* Y13453D01* G37* G36* Y13711D02*X9102Y13715D01* X9081Y13744D01* X9057Y13772D01* X9032Y13797D01* X9004Y13820D01* X8974Y13840D01* X8942Y13858D01* X8924Y13866D01* Y15142D01* X8928Y15144D01* X8960Y15162D01* X8989Y15183D01* X9017Y15207D01* X9042Y15232D01* X9065Y15260D01* X9085Y15290D01* X9103Y15322D01* X9104Y15324D01* Y13711D01* G37* G36* Y15447D02*X9103Y15448D01* X9095Y15451D01* X9086Y15453D01* X9077Y15453D01* X9069Y15452D01* X9061Y15449D01* X9053Y15445D01* X9046Y15439D01* X9040Y15433D01* X9036Y15425D01* X9033Y15417D01* X9024Y15391D01* X9013Y15366D01* X9000Y15343D01* X8985Y15320D01* X8968Y15299D01* X8949Y15280D01* X8928Y15262D01* X8924Y15259D01* Y15740D01* X8945Y15723D01* X8964Y15704D01* X8982Y15683D01* X8997Y15661D01* X9011Y15637D01* X9022Y15613D01* X9031Y15587D01* X9035Y15579D01* X9039Y15572D01* X9045Y15565D01* X9052Y15560D01* X9060Y15556D01* X9068Y15553D01* X9077Y15552D01* X9085Y15552D01* X9094Y15554D01* X9102Y15557D01* X9104Y15559D01* Y15447D01* G37* G36* Y15674D02*X9100Y15683D01* X9082Y15715D01* X9061Y15744D01* X9037Y15772D01* X9012Y15797D01* X8984Y15820D01* X8954Y15840D01* X8924Y15857D01* Y17153D01* X8940Y17162D01* X8969Y17183D01* X8997Y17207D01* X9022Y17232D01* X9045Y17260D01* X9065Y17290D01* X9083Y17322D01* X9097Y17355D01* X9104Y17374D01* Y15674D01* G37* G36* Y17428D02*X9102Y17431D01* X9097Y17438D01* X9090Y17444D01* X9083Y17448D01* X9075Y17451D01* X9066Y17453D01* X9057Y17453D01* X9049Y17452D01* X9041Y17449D01* X9033Y17445D01* X9026Y17439D01* X9020Y17433D01* X9016Y17425D01* X9013Y17417D01* X9004Y17391D01* X8993Y17366D01* X8980Y17343D01* X8965Y17320D01* X8948Y17299D01* X8929Y17280D01* X8924Y17276D01* Y17724D01* X8925Y17723D01* X8944Y17704D01* X8962Y17683D01* X8977Y17661D01* X8991Y17637D01* X9002Y17613D01* X9011Y17587D01* X9015Y17579D01* X9019Y17572D01* X9025Y17565D01* X9032Y17560D01* X9040Y17556D01* X9048Y17553D01* X9057Y17552D01* X9065Y17552D01* X9074Y17554D01* X9082Y17557D01* X9089Y17562D01* X9096Y17568D01* X9101Y17575D01* X9104Y17580D01* Y17428D01* G37* G36* Y40000D02*X10425D01* Y39878D01* X10422Y39880D01* X10413Y39883D01* X10405Y39884D01* X10396Y39884D01* X10388Y39882D01* X10353Y39870D01* X10321Y39855D01* X10289Y39837D01* X10260Y39816D01* X10232Y39793D01* X10207Y39767D01* X10184Y39739D01* X10164Y39709D01* X10146Y39677D01* X10132Y39644D01* X10120Y39610D01* X10118Y39601D01* X10118Y39593D01* X10119Y39584D01* X10122Y39576D01* X10127Y39568D01* X10132Y39561D01* X10139Y39556D01* X10146Y39551D01* X10154Y39548D01* X10163Y39546D01* X10172Y39546D01* X10180Y39547D01* X10188Y39550D01* X10196Y39555D01* X10203Y39560D01* X10209Y39567D01* X10213Y39574D01* X10216Y39582D01* X10225Y39608D01* X10236Y39633D01* X10249Y39657D01* X10264Y39679D01* X10281Y39700D01* X10300Y39719D01* X10321Y39737D01* X10343Y39752D01* X10367Y39766D01* X10391Y39777D01* X10417Y39786D01* X10425Y39790D01* X10425Y39790D01* Y39210D01* X10422Y39211D01* X10396Y39220D01* X10371Y39231D01* X10348Y39244D01* X10325Y39259D01* X10304Y39276D01* X10285Y39295D01* X10267Y39316D01* X10252Y39338D01* X10238Y39362D01* X10227Y39386D01* X10218Y39412D01* X10214Y39420D01* X10210Y39427D01* X10204Y39434D01* X10197Y39439D01* X10189Y39443D01* X10181Y39446D01* X10172Y39447D01* X10164Y39447D01* X10155Y39445D01* X10147Y39442D01* X10140Y39437D01* X10133Y39431D01* X10128Y39424D01* X10124Y39417D01* X10121Y39409D01* X10120Y39400D01* X10120Y39391D01* X10122Y39383D01* X10134Y39349D01* X10149Y39316D01* X10167Y39284D01* X10188Y39255D01* X10212Y39227D01* X10237Y39202D01* X10265Y39179D01* X10295Y39159D01* X10327Y39141D01* X10360Y39127D01* X10394Y39115D01* X10403Y39113D01* X10412Y39113D01* X10420Y39115D01* X10425Y39116D01* Y37884D01* X10425Y37884D01* X10416Y37884D01* X10408Y37882D01* X10373Y37870D01* X10341Y37855D01* X10309Y37837D01* X10280Y37816D01* X10252Y37793D01* X10227Y37767D01* X10204Y37739D01* X10184Y37709D01* X10166Y37677D01* X10152Y37644D01* X10140Y37610D01* X10138Y37601D01* X10138Y37593D01* X10139Y37584D01* X10142Y37576D01* X10147Y37568D01* X10152Y37561D01* X10159Y37556D01* X10166Y37551D01* X10174Y37548D01* X10183Y37546D01* X10192Y37546D01* X10200Y37547D01* X10208Y37550D01* X10216Y37555D01* X10223Y37560D01* X10229Y37567D01* X10233Y37574D01* X10236Y37582D01* X10245Y37608D01* X10256Y37633D01* X10269Y37657D01* X10284Y37679D01* X10301Y37700D01* X10320Y37719D01* X10341Y37737D01* X10363Y37752D01* X10387Y37766D01* X10411Y37777D01* X10425Y37782D01* Y37217D01* X10416Y37220D01* X10391Y37231D01* X10368Y37244D01* X10345Y37259D01* X10324Y37276D01* X10305Y37295D01* X10287Y37316D01* X10272Y37338D01* X10258Y37362D01* X10247Y37386D01* X10238Y37412D01* X10234Y37420D01* X10230Y37427D01* X10224Y37434D01* X10217Y37439D01* X10209Y37443D01* X10201Y37446D01* X10192Y37447D01* X10184Y37447D01* X10175Y37445D01* X10167Y37442D01* X10160Y37437D01* X10153Y37431D01* X10148Y37424D01* X10144Y37417D01* X10141Y37409D01* X10140Y37400D01* X10140Y37391D01* X10142Y37383D01* X10154Y37349D01* X10169Y37316D01* X10187Y37284D01* X10208Y37255D01* X10232Y37227D01* X10257Y37202D01* X10285Y37179D01* X10315Y37159D01* X10347Y37141D01* X10380Y37127D01* X10414Y37115D01* X10423Y37113D01* X10425D01* Y35881D01* X10393Y35870D01* X10361Y35855D01* X10329Y35837D01* X10300Y35816D01* X10272Y35793D01* X10247Y35767D01* X10224Y35739D01* X10204Y35709D01* X10186Y35677D01* X10172Y35644D01* X10160Y35610D01* X10158Y35601D01* X10158Y35593D01* X10159Y35584D01* X10162Y35576D01* X10167Y35568D01* X10172Y35561D01* X10179Y35556D01* X10186Y35551D01* X10194Y35548D01* X10203Y35546D01* X10212Y35546D01* X10220Y35547D01* X10228Y35550D01* X10236Y35555D01* X10243Y35560D01* X10249Y35567D01* X10253Y35574D01* X10256Y35582D01* X10265Y35608D01* X10276Y35633D01* X10289Y35657D01* X10304Y35679D01* X10321Y35700D01* X10340Y35719D01* X10361Y35737D01* X10383Y35752D01* X10407Y35766D01* X10425Y35775D01* Y35225D01* X10411Y35231D01* X10388Y35244D01* X10365Y35259D01* X10344Y35276D01* X10325Y35295D01* X10307Y35316D01* X10292Y35338D01* X10278Y35362D01* X10267Y35386D01* X10258Y35412D01* X10254Y35420D01* X10250Y35427D01* X10244Y35434D01* X10237Y35439D01* X10229Y35443D01* X10221Y35446D01* X10212Y35447D01* X10204Y35447D01* X10195Y35445D01* X10187Y35442D01* X10180Y35437D01* X10173Y35431D01* X10168Y35424D01* X10164Y35417D01* X10161Y35409D01* X10160Y35400D01* X10160Y35391D01* X10162Y35383D01* X10174Y35349D01* X10189Y35316D01* X10207Y35284D01* X10228Y35255D01* X10252Y35227D01* X10277Y35202D01* X10305Y35179D01* X10335Y35159D01* X10367Y35141D01* X10400Y35127D01* X10425Y35118D01* Y33874D01* X10413Y33870D01* X10381Y33855D01* X10349Y33837D01* X10320Y33816D01* X10292Y33793D01* X10267Y33767D01* X10244Y33739D01* X10224Y33709D01* X10206Y33677D01* X10192Y33644D01* X10180Y33610D01* X10178Y33601D01* X10178Y33593D01* X10179Y33584D01* X10182Y33576D01* X10187Y33568D01* X10192Y33561D01* X10199Y33556D01* X10206Y33551D01* X10214Y33548D01* X10223Y33546D01* X10232Y33546D01* X10240Y33547D01* X10248Y33550D01* X10256Y33555D01* X10263Y33560D01* X10269Y33567D01* X10273Y33574D01* X10276Y33582D01* X10285Y33608D01* X10296Y33633D01* X10309Y33657D01* X10324Y33679D01* X10341Y33700D01* X10360Y33719D01* X10381Y33737D01* X10403Y33752D01* X10425Y33765D01* Y33234D01* X10408Y33244D01* X10385Y33259D01* X10364Y33276D01* X10345Y33295D01* X10327Y33316D01* X10312Y33338D01* X10298Y33362D01* X10287Y33386D01* X10278Y33412D01* X10274Y33420D01* X10270Y33427D01* X10264Y33434D01* X10257Y33439D01* X10249Y33443D01* X10241Y33446D01* X10232Y33447D01* X10224Y33447D01* X10215Y33445D01* X10207Y33442D01* X10200Y33437D01* X10193Y33431D01* X10188Y33424D01* X10184Y33417D01* X10181Y33409D01* X10180Y33400D01* X10180Y33391D01* X10182Y33383D01* X10194Y33349D01* X10209Y33316D01* X10227Y33284D01* X10248Y33255D01* X10272Y33227D01* X10297Y33202D01* X10325Y33179D01* X10355Y33159D01* X10387Y33141D01* X10420Y33127D01* X10425Y33125D01* Y31866D01* X10401Y31855D01* X10369Y31837D01* X10340Y31816D01* X10312Y31793D01* X10287Y31767D01* X10264Y31739D01* X10244Y31709D01* X10226Y31677D01* X10212Y31644D01* X10200Y31610D01* X10198Y31601D01* X10198Y31593D01* X10199Y31584D01* X10202Y31576D01* X10207Y31568D01* X10212Y31561D01* X10219Y31556D01* X10226Y31551D01* X10234Y31548D01* X10243Y31546D01* X10252Y31546D01* X10260Y31547D01* X10268Y31550D01* X10276Y31555D01* X10283Y31560D01* X10289Y31567D01* X10293Y31574D01* X10296Y31582D01* X10305Y31608D01* X10316Y31633D01* X10329Y31657D01* X10344Y31679D01* X10361Y31700D01* X10380Y31719D01* X10401Y31737D01* X10423Y31752D01* X10425Y31754D01* Y31246D01* X10405Y31259D01* X10384Y31276D01* X10365Y31295D01* X10347Y31316D01* X10332Y31338D01* X10318Y31362D01* X10307Y31386D01* X10298Y31412D01* X10294Y31420D01* X10290Y31427D01* X10284Y31434D01* X10277Y31439D01* X10269Y31443D01* X10261Y31446D01* X10252Y31447D01* X10244Y31447D01* X10235Y31445D01* X10227Y31442D01* X10220Y31437D01* X10213Y31431D01* X10208Y31424D01* X10204Y31417D01* X10201Y31409D01* X10200Y31400D01* X10200Y31391D01* X10202Y31383D01* X10214Y31349D01* X10229Y31316D01* X10247Y31284D01* X10268Y31255D01* X10292Y31227D01* X10317Y31202D01* X10345Y31179D01* X10375Y31159D01* X10407Y31141D01* X10425Y31133D01* Y29857D01* X10421Y29855D01* X10389Y29837D01* X10360Y29816D01* X10332Y29793D01* X10307Y29767D01* X10284Y29739D01* X10264Y29709D01* X10246Y29677D01* X10232Y29644D01* X10220Y29610D01* X10218Y29601D01* X10218Y29593D01* X10219Y29584D01* X10222Y29576D01* X10227Y29568D01* X10232Y29561D01* X10239Y29556D01* X10246Y29551D01* X10254Y29548D01* X10263Y29546D01* X10272Y29546D01* X10280Y29547D01* X10288Y29550D01* X10296Y29555D01* X10303Y29560D01* X10309Y29567D01* X10313Y29574D01* X10316Y29582D01* X10325Y29608D01* X10336Y29633D01* X10349Y29657D01* X10364Y29679D01* X10381Y29700D01* X10400Y29719D01* X10421Y29737D01* X10425Y29740D01* Y29259D01* X10425Y29259D01* X10404Y29276D01* X10385Y29295D01* X10367Y29316D01* X10352Y29338D01* X10338Y29362D01* X10327Y29386D01* X10318Y29412D01* X10314Y29420D01* X10310Y29427D01* X10304Y29434D01* X10297Y29439D01* X10289Y29443D01* X10281Y29446D01* X10272Y29447D01* X10264Y29447D01* X10255Y29445D01* X10247Y29442D01* X10240Y29437D01* X10233Y29431D01* X10228Y29424D01* X10224Y29417D01* X10221Y29409D01* X10220Y29400D01* X10220Y29391D01* X10222Y29383D01* X10234Y29349D01* X10249Y29316D01* X10267Y29284D01* X10288Y29255D01* X10312Y29227D01* X10337Y29202D01* X10365Y29179D01* X10395Y29159D01* X10425Y29142D01* Y27846D01* X10409Y27837D01* X10380Y27816D01* X10352Y27793D01* X10327Y27767D01* X10304Y27739D01* X10284Y27709D01* X10266Y27677D01* X10252Y27644D01* X10240Y27610D01* X10238Y27601D01* X10238Y27593D01* X10239Y27584D01* X10242Y27576D01* X10247Y27568D01* X10252Y27561D01* X10259Y27556D01* X10266Y27551D01* X10274Y27548D01* X10283Y27546D01* X10292Y27546D01* X10300Y27547D01* X10308Y27550D01* X10316Y27555D01* X10323Y27560D01* X10329Y27567D01* X10333Y27574D01* X10336Y27582D01* X10345Y27608D01* X10356Y27633D01* X10369Y27657D01* X10384Y27679D01* X10401Y27700D01* X10420Y27719D01* X10425Y27723D01* Y27276D01* X10424Y27276D01* X10405Y27295D01* X10387Y27316D01* X10372Y27338D01* X10358Y27362D01* X10347Y27386D01* X10338Y27412D01* X10334Y27420D01* X10330Y27427D01* X10324Y27434D01* X10317Y27439D01* X10309Y27443D01* X10301Y27446D01* X10292Y27447D01* X10284Y27447D01* X10275Y27445D01* X10267Y27442D01* X10260Y27437D01* X10253Y27431D01* X10248Y27424D01* X10244Y27417D01* X10241Y27409D01* X10240Y27400D01* X10240Y27391D01* X10242Y27383D01* X10254Y27349D01* X10269Y27316D01* X10287Y27284D01* X10308Y27255D01* X10332Y27227D01* X10357Y27202D01* X10385Y27179D01* X10415Y27159D01* X10425Y27153D01* Y25834D01* X10400Y25816D01* X10372Y25793D01* X10347Y25767D01* X10324Y25739D01* X10304Y25709D01* X10286Y25677D01* X10272Y25644D01* X10260Y25610D01* X10258Y25601D01* X10258Y25593D01* X10259Y25584D01* X10262Y25576D01* X10267Y25568D01* X10272Y25561D01* X10279Y25556D01* X10286Y25551D01* X10294Y25548D01* X10303Y25546D01* X10312Y25546D01* X10320Y25547D01* X10328Y25550D01* X10336Y25555D01* X10343Y25560D01* X10349Y25567D01* X10353Y25574D01* X10356Y25582D01* X10365Y25608D01* X10376Y25633D01* X10389Y25657D01* X10404Y25679D01* X10421Y25700D01* X10425Y25704D01* Y25295D01* X10425Y25295D01* X10407Y25316D01* X10392Y25338D01* X10378Y25362D01* X10367Y25386D01* X10358Y25412D01* X10354Y25420D01* X10350Y25427D01* X10344Y25434D01* X10337Y25439D01* X10329Y25443D01* X10321Y25446D01* X10312Y25447D01* X10304Y25447D01* X10295Y25445D01* X10287Y25442D01* X10280Y25437D01* X10273Y25431D01* X10268Y25424D01* X10264Y25417D01* X10261Y25409D01* X10260Y25400D01* X10260Y25391D01* X10262Y25383D01* X10274Y25349D01* X10289Y25316D01* X10307Y25284D01* X10328Y25255D01* X10352Y25227D01* X10377Y25202D01* X10405Y25179D01* X10425Y25166D01* Y23820D01* X10420Y23816D01* X10392Y23793D01* X10367Y23767D01* X10344Y23739D01* X10324Y23709D01* X10306Y23677D01* X10292Y23644D01* X10280Y23610D01* X10278Y23601D01* X10278Y23593D01* X10279Y23584D01* X10282Y23576D01* X10287Y23568D01* X10292Y23561D01* X10299Y23556D01* X10306Y23551D01* X10314Y23548D01* X10323Y23546D01* X10332Y23546D01* X10340Y23547D01* X10348Y23550D01* X10356Y23555D01* X10363Y23560D01* X10369Y23567D01* X10373Y23574D01* X10376Y23582D01* X10385Y23608D01* X10396Y23633D01* X10409Y23657D01* X10424Y23679D01* X10425Y23680D01* Y23319D01* X10412Y23338D01* X10398Y23362D01* X10387Y23386D01* X10378Y23412D01* X10374Y23420D01* X10370Y23427D01* X10364Y23434D01* X10357Y23439D01* X10349Y23443D01* X10341Y23446D01* X10332Y23447D01* X10324Y23447D01* X10315Y23445D01* X10307Y23442D01* X10300Y23437D01* X10293Y23431D01* X10288Y23424D01* X10284Y23417D01* X10281Y23409D01* X10280Y23400D01* X10280Y23391D01* X10282Y23383D01* X10294Y23349D01* X10309Y23316D01* X10327Y23284D01* X10348Y23255D01* X10372Y23227D01* X10397Y23202D01* X10425Y23179D01* Y21804D01* X10412Y21793D01* X10387Y21767D01* X10364Y21739D01* X10344Y21709D01* X10326Y21677D01* X10312Y21644D01* X10300Y21610D01* X10298Y21601D01* X10298Y21593D01* X10299Y21584D01* X10302Y21576D01* X10307Y21568D01* X10312Y21561D01* X10319Y21556D01* X10326Y21551D01* X10334Y21548D01* X10343Y21546D01* X10352Y21546D01* X10360Y21547D01* X10368Y21550D01* X10376Y21555D01* X10383Y21560D01* X10389Y21567D01* X10393Y21574D01* X10396Y21582D01* X10405Y21608D01* X10416Y21633D01* X10425Y21650D01* Y21349D01* X10418Y21362D01* X10407Y21386D01* X10398Y21412D01* X10394Y21420D01* X10390Y21427D01* X10384Y21434D01* X10377Y21439D01* X10369Y21443D01* X10361Y21446D01* X10352Y21447D01* X10344Y21447D01* X10335Y21445D01* X10327Y21442D01* X10320Y21437D01* X10313Y21431D01* X10308Y21424D01* X10304Y21417D01* X10301Y21409D01* X10300Y21400D01* X10300Y21391D01* X10302Y21383D01* X10314Y21349D01* X10329Y21316D01* X10347Y21284D01* X10368Y21255D01* X10392Y21227D01* X10417Y21202D01* X10425Y21196D01* Y19785D01* X10407Y19767D01* X10384Y19739D01* X10364Y19709D01* X10346Y19677D01* X10332Y19644D01* X10320Y19610D01* X10318Y19601D01* X10318Y19593D01* X10319Y19584D01* X10322Y19576D01* X10327Y19568D01* X10332Y19561D01* X10339Y19556D01* X10346Y19551D01* X10354Y19548D01* X10363Y19546D01* X10372Y19546D01* X10380Y19547D01* X10388Y19550D01* X10396Y19555D01* X10403Y19560D01* X10409Y19567D01* X10413Y19574D01* X10416Y19582D01* X10425Y19608D01* X10425Y19609D01* Y19391D01* X10418Y19412D01* X10414Y19420D01* X10410Y19427D01* X10404Y19434D01* X10397Y19439D01* X10389Y19443D01* X10381Y19446D01* X10372Y19447D01* X10364Y19447D01* X10355Y19445D01* X10347Y19442D01* X10340Y19437D01* X10333Y19431D01* X10328Y19424D01* X10324Y19417D01* X10321Y19409D01* X10320Y19400D01* X10320Y19391D01* X10322Y19383D01* X10334Y19349D01* X10349Y19316D01* X10367Y19284D01* X10388Y19255D01* X10412Y19227D01* X10425Y19214D01* Y17765D01* X10404Y17739D01* X10384Y17709D01* X10366Y17677D01* X10352Y17644D01* X10340Y17610D01* X10338Y17601D01* X10338Y17593D01* X10339Y17584D01* X10342Y17576D01* X10347Y17568D01* X10352Y17561D01* X10359Y17556D01* X10366Y17551D01* X10374Y17548D01* X10383Y17546D01* X10392Y17546D01* X10400Y17547D01* X10408Y17550D01* X10416Y17555D01* X10423Y17560D01* X10425Y17563D01* Y17432D01* X10424Y17434D01* X10417Y17439D01* X10409Y17443D01* X10401Y17446D01* X10392Y17447D01* X10384Y17447D01* X10375Y17445D01* X10367Y17442D01* X10360Y17437D01* X10353Y17431D01* X10348Y17424D01* X10344Y17417D01* X10341Y17409D01* X10340Y17400D01* X10340Y17391D01* X10342Y17383D01* X10354Y17349D01* X10369Y17316D01* X10387Y17284D01* X10408Y17255D01* X10425Y17235D01* Y15740D01* X10424Y15739D01* X10404Y15709D01* X10386Y15677D01* X10372Y15644D01* X10360Y15610D01* X10358Y15601D01* X10358Y15593D01* X10359Y15584D01* X10362Y15576D01* X10367Y15568D01* X10372Y15561D01* X10379Y15556D01* X10386Y15551D01* X10394Y15548D01* X10403Y15546D01* X10412Y15546D01* X10420Y15547D01* X10425Y15549D01* Y15445D01* X10421Y15446D01* X10412Y15447D01* X10404Y15447D01* X10395Y15445D01* X10387Y15442D01* X10380Y15437D01* X10373Y15431D01* X10368Y15424D01* X10364Y15417D01* X10361Y15409D01* X10360Y15400D01* X10360Y15391D01* X10362Y15383D01* X10374Y15349D01* X10389Y15316D01* X10407Y15284D01* X10425Y15259D01* Y13711D01* X10424Y13709D01* X10406Y13677D01* X10392Y13644D01* X10380Y13610D01* X10378Y13601D01* X10378Y13593D01* X10379Y13584D01* X10382Y13576D01* X10387Y13568D01* X10392Y13561D01* X10399Y13556D01* X10406Y13551D01* X10414Y13548D01* X10423Y13546D01* X10425D01* Y13447D01* X10424Y13447D01* X10415Y13445D01* X10407Y13442D01* X10400Y13437D01* X10393Y13431D01* X10388Y13424D01* X10384Y13417D01* X10381Y13409D01* X10380Y13400D01* X10380Y13391D01* X10382Y13383D01* X10394Y13349D01* X10409Y13316D01* X10425Y13288D01* Y11675D01* X10412Y11644D01* X10400Y11610D01* X10398Y11601D01* X10398Y11593D01* X10399Y11584D01* X10402Y11576D01* X10407Y11568D01* X10412Y11561D01* X10419Y11556D01* X10425Y11552D01* Y11441D01* X10420Y11437D01* X10413Y11431D01* X10408Y11424D01* X10404Y11417D01* X10401Y11409D01* X10400Y11400D01* X10400Y11391D01* X10402Y11383D01* X10414Y11349D01* X10425Y11325D01* Y9625D01* X10420Y9610D01* X10418Y9601D01* X10418Y9593D01* X10419Y9584D01* X10422Y9576D01* X10425Y9571D01* Y9419D01* X10424Y9417D01* X10421Y9409D01* X10420Y9400D01* X10420Y9391D01* X10422Y9383D01* X10425Y9374D01* Y0D01* X9104D01* Y1165D01* X9129Y1183D01* X9157Y1207D01* X9182Y1232D01* X9205Y1260D01* X9225Y1290D01* X9243Y1322D01* X9257Y1355D01* X9269Y1389D01* X9271Y1398D01* X9271Y1407D01* X9270Y1415D01* X9267Y1423D01* X9262Y1431D01* X9257Y1438D01* X9250Y1444D01* X9243Y1448D01* X9235Y1451D01* X9226Y1453D01* X9217Y1453D01* X9209Y1452D01* X9201Y1449D01* X9193Y1445D01* X9186Y1439D01* X9180Y1433D01* X9176Y1425D01* X9173Y1417D01* X9164Y1391D01* X9153Y1366D01* X9140Y1343D01* X9125Y1320D01* X9108Y1299D01* X9104Y1295D01* Y1704D01* X9104Y1704D01* X9122Y1683D01* X9137Y1661D01* X9151Y1637D01* X9162Y1613D01* X9171Y1587D01* X9175Y1579D01* X9179Y1572D01* X9185Y1565D01* X9192Y1560D01* X9200Y1556D01* X9208Y1553D01* X9217Y1552D01* X9225Y1552D01* X9234Y1554D01* X9242Y1557D01* X9249Y1562D01* X9256Y1568D01* X9261Y1575D01* X9265Y1582D01* X9268Y1591D01* X9269Y1599D01* X9269Y1608D01* X9267Y1617D01* X9255Y1651D01* X9240Y1683D01* X9222Y1715D01* X9201Y1744D01* X9177Y1772D01* X9152Y1797D01* X9124Y1820D01* X9104Y1834D01* Y3180D01* X9109Y3183D01* X9137Y3207D01* X9162Y3232D01* X9185Y3260D01* X9205Y3290D01* X9223Y3322D01* X9237Y3355D01* X9249Y3389D01* X9251Y3398D01* X9251Y3407D01* X9250Y3415D01* X9247Y3423D01* X9242Y3431D01* X9237Y3438D01* X9230Y3444D01* X9223Y3448D01* X9215Y3451D01* X9206Y3453D01* X9197Y3453D01* X9189Y3452D01* X9181Y3449D01* X9173Y3445D01* X9166Y3439D01* X9160Y3433D01* X9156Y3425D01* X9153Y3417D01* X9144Y3391D01* X9133Y3366D01* X9120Y3343D01* X9105Y3320D01* X9104Y3319D01* Y3680D01* X9117Y3661D01* X9131Y3637D01* X9142Y3613D01* X9151Y3587D01* X9155Y3579D01* X9159Y3572D01* X9165Y3565D01* X9172Y3560D01* X9180Y3556D01* X9188Y3553D01* X9197Y3552D01* X9205Y3552D01* X9214Y3554D01* X9222Y3557D01* X9229Y3562D01* X9236Y3568D01* X9241Y3575D01* X9245Y3582D01* X9248Y3591D01* X9249Y3599D01* X9249Y3608D01* X9247Y3617D01* X9235Y3651D01* X9220Y3683D01* X9202Y3715D01* X9181Y3744D01* X9157Y3772D01* X9132Y3797D01* X9104Y3820D01* Y5196D01* X9117Y5207D01* X9142Y5232D01* X9165Y5260D01* X9185Y5290D01* X9203Y5322D01* X9217Y5355D01* X9229Y5389D01* X9231Y5398D01* X9231Y5407D01* X9230Y5415D01* X9227Y5423D01* X9222Y5431D01* X9217Y5438D01* X9210Y5444D01* X9203Y5448D01* X9195Y5451D01* X9186Y5453D01* X9177Y5453D01* X9169Y5452D01* X9161Y5449D01* X9153Y5445D01* X9146Y5439D01* X9140Y5433D01* X9136Y5425D01* X9133Y5417D01* X9124Y5391D01* X9113Y5366D01* X9104Y5350D01* Y5650D01* X9111Y5637D01* X9122Y5613D01* X9131Y5587D01* X9135Y5579D01* X9139Y5572D01* X9145Y5565D01* X9152Y5560D01* X9160Y5556D01* X9168Y5553D01* X9177Y5552D01* X9185Y5552D01* X9194Y5554D01* X9202Y5557D01* X9209Y5562D01* X9216Y5568D01* X9221Y5575D01* X9225Y5582D01* X9228Y5591D01* X9229Y5599D01* X9229Y5608D01* X9227Y5617D01* X9215Y5651D01* X9200Y5683D01* X9182Y5715D01* X9161Y5744D01* X9137Y5772D01* X9112Y5797D01* X9104Y5804D01* Y7214D01* X9122Y7232D01* X9145Y7260D01* X9165Y7290D01* X9183Y7322D01* X9197Y7355D01* X9209Y7389D01* X9211Y7398D01* X9211Y7407D01* X9210Y7415D01* X9207Y7423D01* X9202Y7431D01* X9197Y7438D01* X9190Y7444D01* X9183Y7448D01* X9175Y7451D01* X9166Y7453D01* X9157Y7453D01* X9149Y7452D01* X9141Y7449D01* X9133Y7445D01* X9126Y7439D01* X9120Y7433D01* X9116Y7425D01* X9113Y7417D01* X9104Y7391D01* X9104Y7391D01* Y7608D01* X9111Y7587D01* X9115Y7579D01* X9119Y7572D01* X9125Y7565D01* X9132Y7560D01* X9140Y7556D01* X9148Y7553D01* X9157Y7552D01* X9165Y7552D01* X9174Y7554D01* X9182Y7557D01* X9189Y7562D01* X9196Y7568D01* X9201Y7575D01* X9205Y7582D01* X9208Y7591D01* X9209Y7599D01* X9209Y7608D01* X9207Y7617D01* X9195Y7651D01* X9180Y7683D01* X9162Y7715D01* X9141Y7744D01* X9117Y7772D01* X9104Y7785D01* Y9235D01* X9125Y9260D01* X9145Y9290D01* X9163Y9322D01* X9177Y9355D01* X9189Y9389D01* X9191Y9398D01* X9191Y9407D01* X9190Y9415D01* X9187Y9423D01* X9182Y9431D01* X9177Y9438D01* X9170Y9444D01* X9163Y9448D01* X9155Y9451D01* X9146Y9453D01* X9137Y9453D01* X9129Y9452D01* X9121Y9449D01* X9113Y9445D01* X9106Y9439D01* X9104Y9437D01* Y9567D01* X9105Y9565D01* X9112Y9560D01* X9120Y9556D01* X9128Y9553D01* X9137Y9552D01* X9145Y9552D01* X9154Y9554D01* X9162Y9557D01* X9169Y9562D01* X9176Y9568D01* X9181Y9575D01* X9185Y9582D01* X9188Y9591D01* X9189Y9599D01* X9189Y9608D01* X9187Y9617D01* X9175Y9651D01* X9160Y9683D01* X9142Y9715D01* X9121Y9744D01* X9104Y9764D01* Y11259D01* X9105Y11260D01* X9125Y11290D01* X9143Y11322D01* X9157Y11355D01* X9169Y11389D01* X9171Y11398D01* X9171Y11407D01* X9170Y11415D01* X9167Y11423D01* X9162Y11431D01* X9157Y11438D01* X9150Y11444D01* X9143Y11448D01* X9135Y11451D01* X9126Y11453D01* X9117Y11453D01* X9109Y11452D01* X9104Y11450D01* Y11555D01* X9108Y11553D01* X9117Y11552D01* X9125Y11552D01* X9134Y11554D01* X9142Y11557D01* X9149Y11562D01* X9156Y11568D01* X9161Y11575D01* X9165Y11582D01* X9168Y11591D01* X9169Y11599D01* X9169Y11608D01* X9167Y11617D01* X9155Y11651D01* X9140Y11683D01* X9122Y11715D01* X9104Y11740D01* Y13288D01* X9105Y13290D01* X9123Y13322D01* X9137Y13355D01* X9149Y13389D01* X9151Y13398D01* X9151Y13407D01* X9150Y13415D01* X9147Y13423D01* X9142Y13431D01* X9137Y13438D01* X9130Y13444D01* X9123Y13448D01* X9115Y13451D01* X9106Y13453D01* X9104D01* Y13552D01* X9105D01* X9114Y13554D01* X9122Y13557D01* X9129Y13562D01* X9136Y13568D01* X9141Y13575D01* X9145Y13582D01* X9148Y13591D01* X9149Y13599D01* X9149Y13608D01* X9147Y13617D01* X9135Y13651D01* X9120Y13683D01* X9104Y13711D01* Y15324D01* X9117Y15355D01* X9129Y15389D01* X9131Y15398D01* X9131Y15407D01* X9130Y15415D01* X9127Y15423D01* X9122Y15431D01* X9117Y15438D01* X9110Y15444D01* X9104Y15447D01* Y15559D01* X9109Y15562D01* X9116Y15568D01* X9121Y15575D01* X9125Y15582D01* X9128Y15591D01* X9129Y15599D01* X9129Y15608D01* X9127Y15617D01* X9115Y15651D01* X9104Y15674D01* Y17374D01* X9109Y17389D01* X9111Y17398D01* X9111Y17407D01* X9110Y17415D01* X9107Y17423D01* X9104Y17428D01* Y17580D01* X9105Y17582D01* X9108Y17591D01* X9109Y17599D01* X9109Y17608D01* X9107Y17617D01* X9104Y17625D01* Y40000D01* G37* G36* X10425D02*X10605D01* Y39886D01* X10597Y39886D01* X10589Y39885D01* X10581Y39882D01* X10573Y39878D01* X10566Y39872D01* X10560Y39865D01* X10556Y39858D01* X10553Y39850D01* X10551Y39841D01* X10551Y39833D01* X10552Y39824D01* X10555Y39816D01* X10559Y39808D01* X10565Y39801D01* X10572Y39796D01* X10579Y39791D01* X10587Y39788D01* X10605Y39782D01* Y39217D01* X10592Y39213D01* X10584Y39209D01* X10577Y39205D01* X10570Y39199D01* X10565Y39192D01* X10561Y39184D01* X10558Y39176D01* X10557Y39167D01* X10557Y39159D01* X10559Y39150D01* X10562Y39142D01* X10567Y39135D01* X10573Y39128D01* X10580Y39123D01* X10587Y39119D01* X10596Y39116D01* X10604Y39115D01* X10605D01* Y37883D01* X10601Y37882D01* X10593Y37878D01* X10586Y37872D01* X10580Y37865D01* X10576Y37858D01* X10573Y37850D01* X10571Y37841D01* X10571Y37833D01* X10572Y37824D01* X10575Y37816D01* X10579Y37808D01* X10585Y37801D01* X10592Y37796D01* X10599Y37791D01* X10605Y37789D01* Y37210D01* X10604Y37209D01* X10597Y37205D01* X10590Y37199D01* X10585Y37192D01* X10581Y37184D01* X10578Y37176D01* X10577Y37167D01* X10577Y37159D01* X10579Y37150D01* X10582Y37142D01* X10587Y37135D01* X10593Y37128D01* X10600Y37123D01* X10605Y37120D01* Y35871D01* X10600Y35865D01* X10596Y35858D01* X10593Y35850D01* X10591Y35841D01* X10591Y35833D01* X10592Y35824D01* X10595Y35816D01* X10599Y35808D01* X10605Y35801D01* X10605Y35801D01* Y35192D01* X10605Y35192D01* X10601Y35184D01* X10598Y35176D01* X10597Y35167D01* X10597Y35159D01* X10599Y35150D01* X10602Y35142D01* X10605Y35138D01* Y23859D01* X10602Y23864D01* X10596Y23871D01* X10589Y23876D01* X10582Y23880D01* X10573Y23883D01* X10565Y23884D01* X10556Y23884D01* X10548Y23882D01* X10513Y23870D01* X10481Y23855D01* X10449Y23837D01* X10425Y23820D01* Y25166D01* X10435Y25159D01* X10467Y25141D01* X10500Y25127D01* X10534Y25115D01* X10543Y25113D01* X10552Y25113D01* X10560Y25115D01* X10568Y25117D01* X10576Y25122D01* X10583Y25127D01* X10589Y25134D01* X10593Y25141D01* X10596Y25149D01* X10598Y25158D01* X10598Y25167D01* X10597Y25175D01* X10594Y25183D01* X10590Y25191D01* X10584Y25198D01* X10577Y25204D01* X10570Y25208D01* X10562Y25211D01* X10536Y25220D01* X10511Y25231D01* X10488Y25244D01* X10465Y25259D01* X10444Y25276D01* X10425Y25295D01* Y25704D01* X10440Y25719D01* X10461Y25737D01* X10483Y25752D01* X10507Y25766D01* X10531Y25777D01* X10557Y25786D01* X10565Y25790D01* X10572Y25794D01* X10579Y25800D01* X10584Y25807D01* X10588Y25815D01* X10591Y25823D01* X10592Y25832D01* X10592Y25840D01* X10590Y25849D01* X10587Y25857D01* X10582Y25864D01* X10576Y25871D01* X10569Y25876D01* X10562Y25880D01* X10553Y25883D01* X10545Y25884D01* X10536Y25884D01* X10528Y25882D01* X10493Y25870D01* X10461Y25855D01* X10429Y25837D01* X10425Y25834D01* Y27153D01* X10447Y27141D01* X10480Y27127D01* X10514Y27115D01* X10523Y27113D01* X10532Y27113D01* X10540Y27115D01* X10548Y27117D01* X10556Y27122D01* X10563Y27127D01* X10569Y27134D01* X10573Y27141D01* X10576Y27149D01* X10578Y27158D01* X10578Y27167D01* X10577Y27175D01* X10574Y27183D01* X10570Y27191D01* X10564Y27198D01* X10557Y27204D01* X10550Y27208D01* X10542Y27211D01* X10516Y27220D01* X10491Y27231D01* X10468Y27244D01* X10445Y27259D01* X10425Y27276D01* Y27723D01* X10441Y27737D01* X10463Y27752D01* X10487Y27766D01* X10511Y27777D01* X10537Y27786D01* X10545Y27790D01* X10552Y27794D01* X10559Y27800D01* X10564Y27807D01* X10568Y27815D01* X10571Y27823D01* X10572Y27832D01* X10572Y27840D01* X10570Y27849D01* X10567Y27857D01* X10562Y27864D01* X10556Y27871D01* X10549Y27876D01* X10542Y27880D01* X10533Y27883D01* X10525Y27884D01* X10516Y27884D01* X10508Y27882D01* X10473Y27870D01* X10441Y27855D01* X10425Y27846D01* Y29142D01* X10427Y29141D01* X10460Y29127D01* X10494Y29115D01* X10503Y29113D01* X10512Y29113D01* X10520Y29115D01* X10528Y29117D01* X10536Y29122D01* X10543Y29127D01* X10549Y29134D01* X10553Y29141D01* X10556Y29149D01* X10558Y29158D01* X10558Y29167D01* X10557Y29175D01* X10554Y29183D01* X10550Y29191D01* X10544Y29198D01* X10537Y29204D01* X10530Y29208D01* X10522Y29211D01* X10496Y29220D01* X10471Y29231D01* X10448Y29244D01* X10425Y29259D01* Y29740D01* X10443Y29752D01* X10467Y29766D01* X10491Y29777D01* X10517Y29786D01* X10525Y29790D01* X10532Y29794D01* X10539Y29800D01* X10544Y29807D01* X10548Y29815D01* X10551Y29823D01* X10552Y29832D01* X10552Y29840D01* X10550Y29849D01* X10547Y29857D01* X10542Y29864D01* X10536Y29871D01* X10529Y29876D01* X10522Y29880D01* X10513Y29883D01* X10505Y29884D01* X10496Y29884D01* X10488Y29882D01* X10453Y29870D01* X10425Y29857D01* Y31133D01* X10440Y31127D01* X10474Y31115D01* X10483Y31113D01* X10492Y31113D01* X10500Y31115D01* X10508Y31117D01* X10516Y31122D01* X10523Y31127D01* X10529Y31134D01* X10533Y31141D01* X10536Y31149D01* X10538Y31158D01* X10538Y31167D01* X10537Y31175D01* X10534Y31183D01* X10530Y31191D01* X10524Y31198D01* X10517Y31204D01* X10510Y31208D01* X10502Y31211D01* X10476Y31220D01* X10451Y31231D01* X10428Y31244D01* X10425Y31246D01* Y31754D01* X10447Y31766D01* X10471Y31777D01* X10497Y31786D01* X10505Y31790D01* X10512Y31794D01* X10519Y31800D01* X10524Y31807D01* X10528Y31815D01* X10531Y31823D01* X10532Y31832D01* X10532Y31840D01* X10530Y31849D01* X10527Y31857D01* X10522Y31864D01* X10516Y31871D01* X10509Y31876D01* X10502Y31880D01* X10493Y31883D01* X10485Y31884D01* X10476Y31884D01* X10468Y31882D01* X10433Y31870D01* X10425Y31866D01* Y33125D01* X10454Y33115D01* X10463Y33113D01* X10472Y33113D01* X10480Y33115D01* X10488Y33117D01* X10496Y33122D01* X10503Y33127D01* X10509Y33134D01* X10513Y33141D01* X10516Y33149D01* X10518Y33158D01* X10518Y33167D01* X10517Y33175D01* X10514Y33183D01* X10510Y33191D01* X10504Y33198D01* X10497Y33204D01* X10490Y33208D01* X10482Y33211D01* X10456Y33220D01* X10431Y33231D01* X10425Y33234D01* Y33765D01* X10427Y33766D01* X10451Y33777D01* X10477Y33786D01* X10485Y33790D01* X10492Y33794D01* X10499Y33800D01* X10504Y33807D01* X10508Y33815D01* X10511Y33823D01* X10512Y33832D01* X10512Y33840D01* X10510Y33849D01* X10507Y33857D01* X10502Y33864D01* X10496Y33871D01* X10489Y33876D01* X10482Y33880D01* X10473Y33883D01* X10465Y33884D01* X10456Y33884D01* X10448Y33882D01* X10425Y33874D01* Y35118D01* X10434Y35115D01* X10443Y35113D01* X10452Y35113D01* X10460Y35115D01* X10468Y35117D01* X10476Y35122D01* X10483Y35127D01* X10489Y35134D01* X10493Y35141D01* X10496Y35149D01* X10498Y35158D01* X10498Y35167D01* X10497Y35175D01* X10494Y35183D01* X10490Y35191D01* X10484Y35198D01* X10477Y35204D01* X10470Y35208D01* X10462Y35211D01* X10436Y35220D01* X10425Y35225D01* Y35775D01* X10431Y35777D01* X10457Y35786D01* X10465Y35790D01* X10472Y35794D01* X10479Y35800D01* X10484Y35807D01* X10488Y35815D01* X10491Y35823D01* X10492Y35832D01* X10492Y35840D01* X10490Y35849D01* X10487Y35857D01* X10482Y35864D01* X10476Y35871D01* X10469Y35876D01* X10462Y35880D01* X10453Y35883D01* X10445Y35884D01* X10436Y35884D01* X10428Y35882D01* X10425Y35881D01* Y37113D01* X10432Y37113D01* X10440Y37115D01* X10448Y37117D01* X10456Y37122D01* X10463Y37127D01* X10469Y37134D01* X10473Y37141D01* X10476Y37149D01* X10478Y37158D01* X10478Y37167D01* X10477Y37175D01* X10474Y37183D01* X10470Y37191D01* X10464Y37198D01* X10457Y37204D01* X10450Y37208D01* X10442Y37211D01* X10425Y37217D01* Y37782D01* X10437Y37786D01* X10445Y37790D01* X10452Y37794D01* X10459Y37800D01* X10464Y37807D01* X10468Y37815D01* X10471Y37823D01* X10472Y37832D01* X10472Y37840D01* X10470Y37849D01* X10467Y37857D01* X10462Y37864D01* X10456Y37871D01* X10449Y37876D01* X10442Y37880D01* X10433Y37883D01* X10425Y37884D01* Y39116D01* X10428Y39117D01* X10436Y39122D01* X10443Y39127D01* X10449Y39134D01* X10453Y39141D01* X10456Y39149D01* X10458Y39158D01* X10458Y39167D01* X10457Y39175D01* X10454Y39183D01* X10450Y39191D01* X10444Y39198D01* X10437Y39204D01* X10430Y39208D01* X10425Y39210D01* Y39790D01* X10432Y39794D01* X10439Y39800D01* X10444Y39807D01* X10448Y39815D01* X10451Y39823D01* X10452Y39832D01* X10452Y39840D01* X10450Y39849D01* X10447Y39857D01* X10442Y39864D01* X10436Y39871D01* X10429Y39876D01* X10425Y39878D01* Y40000D01* G37* G36* X10605Y0D02*X10425D01* Y9374D01* X10434Y9349D01* X10449Y9316D01* X10467Y9284D01* X10488Y9255D01* X10512Y9227D01* X10537Y9202D01* X10565Y9179D01* X10595Y9159D01* X10605Y9153D01* Y7834D01* X10580Y7816D01* X10552Y7793D01* X10527Y7767D01* X10504Y7739D01* X10484Y7709D01* X10466Y7677D01* X10452Y7644D01* X10440Y7610D01* X10438Y7601D01* X10438Y7593D01* X10439Y7584D01* X10442Y7576D01* X10447Y7568D01* X10452Y7561D01* X10459Y7556D01* X10466Y7551D01* X10474Y7548D01* X10483Y7546D01* X10492Y7546D01* X10500Y7547D01* X10508Y7550D01* X10516Y7555D01* X10523Y7560D01* X10529Y7567D01* X10533Y7574D01* X10536Y7582D01* X10545Y7608D01* X10556Y7633D01* X10569Y7657D01* X10584Y7679D01* X10601Y7700D01* X10605Y7704D01* Y7295D01* X10605Y7295D01* X10587Y7316D01* X10572Y7338D01* X10558Y7362D01* X10547Y7386D01* X10538Y7412D01* X10534Y7420D01* X10530Y7427D01* X10524Y7434D01* X10517Y7439D01* X10509Y7443D01* X10501Y7446D01* X10492Y7447D01* X10484Y7447D01* X10475Y7445D01* X10467Y7442D01* X10460Y7437D01* X10453Y7431D01* X10448Y7424D01* X10444Y7417D01* X10441Y7409D01* X10440Y7400D01* X10440Y7391D01* X10442Y7383D01* X10454Y7349D01* X10469Y7316D01* X10487Y7284D01* X10508Y7255D01* X10532Y7227D01* X10557Y7202D01* X10585Y7179D01* X10605Y7166D01* Y5820D01* X10600Y5816D01* X10572Y5793D01* X10547Y5767D01* X10524Y5739D01* X10504Y5709D01* X10486Y5677D01* X10472Y5644D01* X10460Y5610D01* X10458Y5601D01* X10458Y5593D01* X10459Y5584D01* X10462Y5576D01* X10467Y5568D01* X10472Y5561D01* X10479Y5556D01* X10486Y5551D01* X10494Y5548D01* X10503Y5546D01* X10512Y5546D01* X10520Y5547D01* X10528Y5550D01* X10536Y5555D01* X10543Y5560D01* X10549Y5567D01* X10553Y5574D01* X10556Y5582D01* X10565Y5608D01* X10576Y5633D01* X10589Y5657D01* X10604Y5679D01* X10605Y5680D01* Y5319D01* X10592Y5338D01* X10578Y5362D01* X10567Y5386D01* X10558Y5412D01* X10554Y5420D01* X10550Y5427D01* X10544Y5434D01* X10537Y5439D01* X10529Y5443D01* X10521Y5446D01* X10512Y5447D01* X10504Y5447D01* X10495Y5445D01* X10487Y5442D01* X10480Y5437D01* X10473Y5431D01* X10468Y5424D01* X10464Y5417D01* X10461Y5409D01* X10460Y5400D01* X10460Y5391D01* X10462Y5383D01* X10474Y5349D01* X10489Y5316D01* X10507Y5284D01* X10528Y5255D01* X10552Y5227D01* X10577Y5202D01* X10605Y5179D01* Y3804D01* X10592Y3793D01* X10567Y3767D01* X10544Y3739D01* X10524Y3709D01* X10506Y3677D01* X10492Y3644D01* X10480Y3610D01* X10478Y3601D01* X10478Y3593D01* X10479Y3584D01* X10482Y3576D01* X10487Y3568D01* X10492Y3561D01* X10499Y3556D01* X10506Y3551D01* X10514Y3548D01* X10523Y3546D01* X10532Y3546D01* X10540Y3547D01* X10548Y3550D01* X10556Y3555D01* X10563Y3560D01* X10569Y3567D01* X10573Y3574D01* X10576Y3582D01* X10585Y3608D01* X10596Y3633D01* X10605Y3650D01* Y3349D01* X10598Y3362D01* X10587Y3386D01* X10578Y3412D01* X10574Y3420D01* X10570Y3427D01* X10564Y3434D01* X10557Y3439D01* X10549Y3443D01* X10541Y3446D01* X10532Y3447D01* X10524Y3447D01* X10515Y3445D01* X10507Y3442D01* X10500Y3437D01* X10493Y3431D01* X10488Y3424D01* X10484Y3417D01* X10481Y3409D01* X10480Y3400D01* X10480Y3391D01* X10482Y3383D01* X10494Y3349D01* X10509Y3316D01* X10527Y3284D01* X10548Y3255D01* X10572Y3227D01* X10597Y3202D01* X10605Y3196D01* Y1785D01* X10587Y1767D01* X10564Y1739D01* X10544Y1709D01* X10526Y1677D01* X10512Y1644D01* X10500Y1610D01* X10498Y1601D01* X10498Y1593D01* X10499Y1584D01* X10502Y1576D01* X10507Y1568D01* X10512Y1561D01* X10519Y1556D01* X10526Y1551D01* X10534Y1548D01* X10543Y1546D01* X10552Y1546D01* X10560Y1547D01* X10568Y1550D01* X10576Y1555D01* X10583Y1560D01* X10589Y1567D01* X10593Y1574D01* X10596Y1582D01* X10605Y1608D01* X10605Y1609D01* Y1391D01* X10598Y1412D01* X10594Y1420D01* X10590Y1427D01* X10584Y1434D01* X10577Y1439D01* X10569Y1443D01* X10561Y1446D01* X10552Y1447D01* X10544Y1447D01* X10535Y1445D01* X10527Y1442D01* X10520Y1437D01* X10513Y1431D01* X10508Y1424D01* X10504Y1417D01* X10501Y1409D01* X10500Y1400D01* X10500Y1391D01* X10502Y1383D01* X10514Y1349D01* X10529Y1316D01* X10547Y1284D01* X10568Y1255D01* X10592Y1227D01* X10605Y1214D01* Y0D01* G37* G36* Y9276D02*X10604Y9276D01* X10585Y9295D01* X10567Y9316D01* X10552Y9338D01* X10538Y9362D01* X10527Y9386D01* X10518Y9412D01* X10514Y9420D01* X10510Y9427D01* X10504Y9434D01* X10497Y9439D01* X10489Y9443D01* X10481Y9446D01* X10472Y9447D01* X10464Y9447D01* X10455Y9445D01* X10447Y9442D01* X10440Y9437D01* X10433Y9431D01* X10428Y9424D01* X10425Y9419D01* Y9571D01* X10427Y9568D01* X10432Y9561D01* X10439Y9556D01* X10446Y9551D01* X10454Y9548D01* X10463Y9546D01* X10472Y9546D01* X10480Y9547D01* X10488Y9550D01* X10496Y9555D01* X10503Y9560D01* X10509Y9567D01* X10513Y9574D01* X10516Y9582D01* X10525Y9608D01* X10536Y9633D01* X10549Y9657D01* X10564Y9679D01* X10581Y9700D01* X10600Y9719D01* X10605Y9723D01* Y9276D01* G37* G36* Y9846D02*X10589Y9837D01* X10560Y9816D01* X10532Y9793D01* X10507Y9767D01* X10484Y9739D01* X10464Y9709D01* X10446Y9677D01* X10432Y9644D01* X10425Y9625D01* Y11325D01* X10429Y11316D01* X10447Y11284D01* X10468Y11255D01* X10492Y11227D01* X10517Y11202D01* X10545Y11179D01* X10575Y11159D01* X10605Y11142D01* Y9846D01* G37* G36* Y11259D02*X10605Y11259D01* X10584Y11276D01* X10565Y11295D01* X10547Y11316D01* X10532Y11338D01* X10518Y11362D01* X10507Y11386D01* X10498Y11412D01* X10494Y11420D01* X10490Y11427D01* X10484Y11434D01* X10477Y11439D01* X10469Y11443D01* X10461Y11446D01* X10452Y11447D01* X10444Y11447D01* X10435Y11445D01* X10427Y11442D01* X10425Y11441D01* Y11552D01* X10426Y11551D01* X10434Y11548D01* X10443Y11546D01* X10452Y11546D01* X10460Y11547D01* X10468Y11550D01* X10476Y11555D01* X10483Y11560D01* X10489Y11567D01* X10493Y11574D01* X10496Y11582D01* X10505Y11608D01* X10516Y11633D01* X10529Y11657D01* X10544Y11679D01* X10561Y11700D01* X10580Y11719D01* X10601Y11737D01* X10605Y11740D01* Y11259D01* G37* G36* Y11857D02*X10601Y11855D01* X10569Y11837D01* X10540Y11816D01* X10512Y11793D01* X10487Y11767D01* X10464Y11739D01* X10444Y11709D01* X10426Y11677D01* X10425Y11675D01* Y13288D01* X10427Y13284D01* X10448Y13255D01* X10472Y13227D01* X10497Y13202D01* X10525Y13179D01* X10555Y13159D01* X10587Y13141D01* X10605Y13133D01* Y11857D01* G37* G36* Y13246D02*X10585Y13259D01* X10564Y13276D01* X10545Y13295D01* X10527Y13316D01* X10512Y13338D01* X10498Y13362D01* X10487Y13386D01* X10478Y13412D01* X10474Y13420D01* X10470Y13427D01* X10464Y13434D01* X10457Y13439D01* X10449Y13443D01* X10441Y13446D01* X10432Y13447D01* X10425Y13447D01* Y13546D01* X10432Y13546D01* X10440Y13547D01* X10448Y13550D01* X10456Y13555D01* X10463Y13560D01* X10469Y13567D01* X10473Y13574D01* X10476Y13582D01* X10485Y13608D01* X10496Y13633D01* X10509Y13657D01* X10524Y13679D01* X10541Y13700D01* X10560Y13719D01* X10581Y13737D01* X10603Y13752D01* X10605Y13754D01* Y13246D01* G37* G36* Y13866D02*X10581Y13855D01* X10549Y13837D01* X10520Y13816D01* X10492Y13793D01* X10467Y13767D01* X10444Y13739D01* X10425Y13711D01* Y15259D01* X10428Y15255D01* X10452Y15227D01* X10477Y15202D01* X10505Y15179D01* X10535Y15159D01* X10567Y15141D01* X10600Y15127D01* X10605Y15125D01* Y13866D01* G37* G36* Y15234D02*X10588Y15244D01* X10565Y15259D01* X10544Y15276D01* X10525Y15295D01* X10507Y15316D01* X10492Y15338D01* X10478Y15362D01* X10467Y15386D01* X10458Y15412D01* X10454Y15420D01* X10450Y15427D01* X10444Y15434D01* X10437Y15439D01* X10429Y15443D01* X10425Y15445D01* Y15549D01* X10428Y15550D01* X10436Y15555D01* X10443Y15560D01* X10449Y15567D01* X10453Y15574D01* X10456Y15582D01* X10465Y15608D01* X10476Y15633D01* X10489Y15657D01* X10504Y15679D01* X10521Y15700D01* X10540Y15719D01* X10561Y15737D01* X10583Y15752D01* X10605Y15765D01* Y15234D01* G37* G36* Y15874D02*X10593Y15870D01* X10561Y15855D01* X10529Y15837D01* X10500Y15816D01* X10472Y15793D01* X10447Y15767D01* X10425Y15740D01* Y17235D01* X10432Y17227D01* X10457Y17202D01* X10485Y17179D01* X10515Y17159D01* X10547Y17141D01* X10580Y17127D01* X10605Y17118D01* Y15874D01* G37* G36* Y17225D02*X10591Y17231D01* X10568Y17244D01* X10545Y17259D01* X10524Y17276D01* X10505Y17295D01* X10487Y17316D01* X10472Y17338D01* X10458Y17362D01* X10447Y17386D01* X10438Y17412D01* X10434Y17420D01* X10430Y17427D01* X10425Y17432D01* Y17563D01* X10429Y17567D01* X10433Y17574D01* X10436Y17582D01* X10445Y17608D01* X10456Y17633D01* X10469Y17657D01* X10484Y17679D01* X10501Y17700D01* X10520Y17719D01* X10541Y17737D01* X10563Y17752D01* X10587Y17766D01* X10605Y17775D01* Y17225D01* G37* G36* Y17881D02*X10573Y17870D01* X10541Y17855D01* X10509Y17837D01* X10480Y17816D01* X10452Y17793D01* X10427Y17767D01* X10425Y17765D01* Y19214D01* X10437Y19202D01* X10465Y19179D01* X10495Y19159D01* X10527Y19141D01* X10560Y19127D01* X10594Y19115D01* X10603Y19113D01* X10605D01* Y17881D01* G37* G36* Y19217D02*X10596Y19220D01* X10571Y19231D01* X10548Y19244D01* X10525Y19259D01* X10504Y19276D01* X10485Y19295D01* X10467Y19316D01* X10452Y19338D01* X10438Y19362D01* X10427Y19386D01* X10425Y19391D01* Y19609D01* X10436Y19633D01* X10449Y19657D01* X10464Y19679D01* X10481Y19700D01* X10500Y19719D01* X10521Y19737D01* X10543Y19752D01* X10567Y19766D01* X10591Y19777D01* X10605Y19782D01* Y19217D01* G37* G36* Y19884D02*X10605Y19884D01* X10596Y19884D01* X10588Y19882D01* X10553Y19870D01* X10521Y19855D01* X10489Y19837D01* X10460Y19816D01* X10432Y19793D01* X10425Y19785D01* Y21196D01* X10445Y21179D01* X10475Y21159D01* X10507Y21141D01* X10540Y21127D01* X10574Y21115D01* X10583Y21113D01* X10592Y21113D01* X10600Y21115D01* X10605Y21116D01* Y19884D01* G37* G36* Y21210D02*X10602Y21211D01* X10576Y21220D01* X10551Y21231D01* X10528Y21244D01* X10505Y21259D01* X10484Y21276D01* X10465Y21295D01* X10447Y21316D01* X10432Y21338D01* X10425Y21349D01* Y21650D01* X10429Y21657D01* X10444Y21679D01* X10461Y21700D01* X10480Y21719D01* X10501Y21737D01* X10523Y21752D01* X10547Y21766D01* X10571Y21777D01* X10597Y21786D01* X10605Y21790D01* X10605Y21790D01* Y21210D01* G37* G36* Y21878D02*X10602Y21880D01* X10593Y21883D01* X10585Y21884D01* X10576Y21884D01* X10568Y21882D01* X10533Y21870D01* X10501Y21855D01* X10469Y21837D01* X10440Y21816D01* X10425Y21804D01* Y23179D01* X10425Y23179D01* X10455Y23159D01* X10487Y23141D01* X10520Y23127D01* X10554Y23115D01* X10563Y23113D01* X10572Y23113D01* X10580Y23115D01* X10588Y23117D01* X10596Y23122D01* X10603Y23127D01* X10605Y23130D01* Y21878D01* G37* G36* Y23197D02*X10604Y23198D01* X10597Y23204D01* X10590Y23208D01* X10582Y23211D01* X10556Y23220D01* X10531Y23231D01* X10508Y23244D01* X10485Y23259D01* X10464Y23276D01* X10445Y23295D01* X10427Y23316D01* X10425Y23319D01* Y23680D01* X10441Y23700D01* X10460Y23719D01* X10481Y23737D01* X10503Y23752D01* X10527Y23766D01* X10551Y23777D01* X10577Y23786D01* X10585Y23790D01* X10592Y23794D01* X10599Y23800D01* X10604Y23807D01* X10605Y23809D01* Y23197D01* G37* G36* Y40000D02*X10864D01* Y39674D01* X10860Y39683D01* X10842Y39715D01* X10821Y39744D01* X10797Y39772D01* X10772Y39797D01* X10744Y39820D01* X10714Y39840D01* X10682Y39858D01* X10649Y39873D01* X10615Y39884D01* X10606Y39886D01* X10605D01* Y40000D01* G37* G36* Y39782D02*X10613Y39779D01* X10638Y39768D01* X10661Y39755D01* X10684Y39740D01* X10705Y39723D01* X10724Y39704D01* X10742Y39683D01* X10757Y39661D01* X10771Y39637D01* X10782Y39613D01* X10791Y39587D01* X10795Y39579D01* X10799Y39572D01* X10805Y39565D01* X10812Y39560D01* X10820Y39556D01* X10828Y39553D01* X10837Y39552D01* X10845Y39552D01* X10854Y39554D01* X10862Y39557D01* X10864Y39559D01* Y39447D01* X10863Y39448D01* X10855Y39451D01* X10846Y39453D01* X10837Y39453D01* X10829Y39452D01* X10821Y39449D01* X10813Y39445D01* X10806Y39439D01* X10800Y39433D01* X10796Y39425D01* X10793Y39417D01* X10784Y39391D01* X10773Y39366D01* X10760Y39343D01* X10745Y39320D01* X10728Y39299D01* X10709Y39280D01* X10688Y39262D01* X10666Y39247D01* X10642Y39233D01* X10618Y39222D01* X10605Y39217D01* Y39782D01* G37* G36* Y39115D02*X10613Y39115D01* X10621Y39117D01* X10656Y39129D01* X10688Y39144D01* X10720Y39162D01* X10749Y39183D01* X10777Y39207D01* X10802Y39232D01* X10825Y39260D01* X10845Y39290D01* X10863Y39322D01* X10864Y39324D01* Y37711D01* X10862Y37715D01* X10841Y37744D01* X10817Y37772D01* X10792Y37797D01* X10764Y37820D01* X10734Y37840D01* X10702Y37858D01* X10669Y37873D01* X10635Y37884D01* X10626Y37886D01* X10617Y37886D01* X10609Y37885D01* X10605Y37883D01* Y39115D01* G37* G36* Y37789D02*X10607Y37788D01* X10633Y37779D01* X10658Y37768D01* X10681Y37755D01* X10704Y37740D01* X10725Y37723D01* X10744Y37704D01* X10762Y37683D01* X10777Y37661D01* X10791Y37637D01* X10802Y37613D01* X10811Y37587D01* X10815Y37579D01* X10819Y37572D01* X10825Y37565D01* X10832Y37560D01* X10840Y37556D01* X10848Y37553D01* X10857Y37552D01* X10864Y37552D01* Y37453D01* X10857Y37453D01* X10849Y37452D01* X10841Y37449D01* X10833Y37445D01* X10826Y37439D01* X10820Y37433D01* X10816Y37425D01* X10813Y37417D01* X10804Y37391D01* X10793Y37366D01* X10780Y37343D01* X10765Y37320D01* X10748Y37299D01* X10729Y37280D01* X10708Y37262D01* X10686Y37247D01* X10662Y37233D01* X10638Y37222D01* X10612Y37213D01* X10605Y37210D01* Y37789D01* G37* G36* Y37120D02*X10607Y37119D01* X10616Y37116D01* X10624Y37115D01* X10633Y37115D01* X10641Y37117D01* X10676Y37129D01* X10708Y37144D01* X10740Y37162D01* X10769Y37183D01* X10797Y37207D01* X10822Y37232D01* X10845Y37260D01* X10864Y37288D01* Y35740D01* X10861Y35744D01* X10837Y35772D01* X10812Y35797D01* X10784Y35820D01* X10754Y35840D01* X10722Y35858D01* X10689Y35873D01* X10655Y35884D01* X10646Y35886D01* X10637Y35886D01* X10629Y35885D01* X10621Y35882D01* X10613Y35878D01* X10606Y35872D01* X10605Y35871D01* Y37120D01* G37* G36* Y35801D02*X10612Y35796D01* X10619Y35791D01* X10627Y35788D01* X10653Y35779D01* X10678Y35768D01* X10701Y35755D01* X10724Y35740D01* X10745Y35723D01* X10764Y35704D01* X10782Y35683D01* X10797Y35661D01* X10811Y35637D01* X10822Y35613D01* X10831Y35587D01* X10835Y35579D01* X10839Y35572D01* X10845Y35565D01* X10852Y35560D01* X10860Y35556D01* X10864Y35555D01* Y35450D01* X10861Y35449D01* X10853Y35445D01* X10846Y35439D01* X10840Y35433D01* X10836Y35425D01* X10833Y35417D01* X10824Y35391D01* X10813Y35366D01* X10800Y35343D01* X10785Y35320D01* X10768Y35299D01* X10749Y35280D01* X10728Y35262D01* X10706Y35247D01* X10682Y35233D01* X10658Y35222D01* X10632Y35213D01* X10624Y35209D01* X10617Y35205D01* X10610Y35199D01* X10605Y35192D01* Y35801D01* G37* G36* Y35138D02*X10607Y35135D01* X10613Y35128D01* X10620Y35123D01* X10627Y35119D01* X10636Y35116D01* X10644Y35115D01* X10653Y35115D01* X10661Y35117D01* X10696Y35129D01* X10728Y35144D01* X10760Y35162D01* X10789Y35183D01* X10817Y35207D01* X10842Y35232D01* X10864Y35259D01* Y33764D01* X10857Y33772D01* X10832Y33797D01* X10804Y33820D01* X10774Y33840D01* X10742Y33858D01* X10709Y33873D01* X10675Y33884D01* X10666Y33886D01* X10657Y33886D01* X10649Y33885D01* X10641Y33882D01* X10633Y33878D01* X10626Y33872D01* X10620Y33865D01* X10616Y33858D01* X10613Y33850D01* X10611Y33841D01* X10611Y33833D01* X10612Y33824D01* X10615Y33816D01* X10619Y33808D01* X10625Y33801D01* X10632Y33796D01* X10639Y33791D01* X10647Y33788D01* X10673Y33779D01* X10698Y33768D01* X10721Y33755D01* X10744Y33740D01* X10765Y33723D01* X10784Y33704D01* X10802Y33683D01* X10817Y33661D01* X10831Y33637D01* X10842Y33613D01* X10851Y33587D01* X10855Y33579D01* X10859Y33572D01* X10864Y33567D01* Y33437D01* X10860Y33433D01* X10856Y33425D01* X10853Y33417D01* X10844Y33391D01* X10833Y33366D01* X10820Y33343D01* X10805Y33320D01* X10788Y33299D01* X10769Y33280D01* X10748Y33262D01* X10726Y33247D01* X10702Y33233D01* X10678Y33222D01* X10652Y33213D01* X10644Y33209D01* X10637Y33205D01* X10630Y33199D01* X10625Y33192D01* X10621Y33184D01* X10618Y33176D01* X10617Y33167D01* X10617Y33159D01* X10619Y33150D01* X10622Y33142D01* X10627Y33135D01* X10633Y33128D01* X10640Y33123D01* X10647Y33119D01* X10656Y33116D01* X10664Y33115D01* X10673Y33115D01* X10681Y33117D01* X10716Y33129D01* X10748Y33144D01* X10780Y33162D01* X10809Y33183D01* X10837Y33207D01* X10862Y33232D01* X10864Y33235D01* Y31785D01* X10852Y31797D01* X10824Y31820D01* X10794Y31840D01* X10762Y31858D01* X10729Y31873D01* X10695Y31884D01* X10686Y31886D01* X10677Y31886D01* X10669Y31885D01* X10661Y31882D01* X10653Y31878D01* X10646Y31872D01* X10640Y31865D01* X10636Y31858D01* X10633Y31850D01* X10631Y31841D01* X10631Y31833D01* X10632Y31824D01* X10635Y31816D01* X10639Y31808D01* X10645Y31801D01* X10652Y31796D01* X10659Y31791D01* X10667Y31788D01* X10693Y31779D01* X10718Y31768D01* X10741Y31755D01* X10764Y31740D01* X10785Y31723D01* X10804Y31704D01* X10822Y31683D01* X10837Y31661D01* X10851Y31637D01* X10862Y31613D01* X10864Y31608D01* Y31391D01* X10853Y31366D01* X10840Y31343D01* X10825Y31320D01* X10808Y31299D01* X10789Y31280D01* X10768Y31262D01* X10746Y31247D01* X10722Y31233D01* X10698Y31222D01* X10672Y31213D01* X10664Y31209D01* X10657Y31205D01* X10650Y31199D01* X10645Y31192D01* X10641Y31184D01* X10638Y31176D01* X10637Y31167D01* X10637Y31159D01* X10639Y31150D01* X10642Y31142D01* X10647Y31135D01* X10653Y31128D01* X10660Y31123D01* X10667Y31119D01* X10676Y31116D01* X10684Y31115D01* X10693Y31115D01* X10701Y31117D01* X10736Y31129D01* X10768Y31144D01* X10800Y31162D01* X10829Y31183D01* X10857Y31207D01* X10864Y31214D01* Y29804D01* X10844Y29820D01* X10814Y29840D01* X10782Y29858D01* X10749Y29873D01* X10715Y29884D01* X10706Y29886D01* X10697Y29886D01* X10689Y29885D01* X10681Y29882D01* X10673Y29878D01* X10666Y29872D01* X10660Y29865D01* X10656Y29858D01* X10653Y29850D01* X10651Y29841D01* X10651Y29833D01* X10652Y29824D01* X10655Y29816D01* X10659Y29808D01* X10665Y29801D01* X10672Y29796D01* X10679Y29791D01* X10687Y29788D01* X10713Y29779D01* X10738Y29768D01* X10761Y29755D01* X10784Y29740D01* X10805Y29723D01* X10824Y29704D01* X10842Y29683D01* X10857Y29661D01* X10864Y29650D01* Y29350D01* X10860Y29343D01* X10845Y29320D01* X10828Y29299D01* X10809Y29280D01* X10788Y29262D01* X10766Y29247D01* X10742Y29233D01* X10718Y29222D01* X10692Y29213D01* X10684Y29209D01* X10677Y29205D01* X10670Y29199D01* X10665Y29192D01* X10661Y29184D01* X10658Y29176D01* X10657Y29167D01* X10657Y29159D01* X10659Y29150D01* X10662Y29142D01* X10667Y29135D01* X10673Y29128D01* X10680Y29123D01* X10687Y29119D01* X10696Y29116D01* X10704Y29115D01* X10713Y29115D01* X10721Y29117D01* X10756Y29129D01* X10788Y29144D01* X10820Y29162D01* X10849Y29183D01* X10864Y29196D01* Y27820D01* X10864Y27820D01* X10834Y27840D01* X10802Y27858D01* X10769Y27873D01* X10735Y27884D01* X10726Y27886D01* X10717Y27886D01* X10709Y27885D01* X10701Y27882D01* X10693Y27878D01* X10686Y27872D01* X10680Y27865D01* X10676Y27858D01* X10673Y27850D01* X10671Y27841D01* X10671Y27833D01* X10672Y27824D01* X10675Y27816D01* X10679Y27808D01* X10685Y27801D01* X10692Y27796D01* X10699Y27791D01* X10707Y27788D01* X10733Y27779D01* X10758Y27768D01* X10781Y27755D01* X10804Y27740D01* X10825Y27723D01* X10844Y27704D01* X10862Y27683D01* X10864Y27680D01* Y27319D01* X10848Y27299D01* X10829Y27280D01* X10808Y27262D01* X10786Y27247D01* X10762Y27233D01* X10738Y27222D01* X10712Y27213D01* X10704Y27209D01* X10697Y27205D01* X10690Y27199D01* X10685Y27192D01* X10681Y27184D01* X10678Y27176D01* X10677Y27167D01* X10677Y27159D01* X10679Y27150D01* X10682Y27142D01* X10687Y27135D01* X10693Y27128D01* X10700Y27123D01* X10707Y27119D01* X10716Y27116D01* X10724Y27115D01* X10733Y27115D01* X10741Y27117D01* X10776Y27129D01* X10808Y27144D01* X10840Y27162D01* X10864Y27180D01* Y25834D01* X10854Y25840D01* X10822Y25858D01* X10789Y25873D01* X10755Y25884D01* X10746Y25886D01* X10737Y25886D01* X10729Y25885D01* X10721Y25882D01* X10713Y25878D01* X10706Y25872D01* X10700Y25865D01* X10696Y25858D01* X10693Y25850D01* X10691Y25841D01* X10691Y25833D01* X10692Y25824D01* X10695Y25816D01* X10699Y25808D01* X10705Y25801D01* X10712Y25796D01* X10719Y25791D01* X10727Y25788D01* X10753Y25779D01* X10778Y25768D01* X10801Y25755D01* X10824Y25740D01* X10845Y25723D01* X10864Y25704D01* Y25295D01* X10849Y25280D01* X10828Y25262D01* X10806Y25247D01* X10782Y25233D01* X10758Y25222D01* X10732Y25213D01* X10724Y25209D01* X10717Y25205D01* X10710Y25199D01* X10705Y25192D01* X10701Y25184D01* X10698Y25176D01* X10697Y25167D01* X10697Y25159D01* X10699Y25150D01* X10702Y25142D01* X10707Y25135D01* X10713Y25128D01* X10720Y25123D01* X10727Y25119D01* X10736Y25116D01* X10744Y25115D01* X10753Y25115D01* X10761Y25117D01* X10796Y25129D01* X10828Y25144D01* X10860Y25162D01* X10864Y25165D01* Y23846D01* X10842Y23858D01* X10809Y23873D01* X10775Y23884D01* X10766Y23886D01* X10757Y23886D01* X10749Y23885D01* X10741Y23882D01* X10733Y23878D01* X10726Y23872D01* X10720Y23865D01* X10716Y23858D01* X10713Y23850D01* X10711Y23841D01* X10711Y23833D01* X10712Y23824D01* X10715Y23816D01* X10719Y23808D01* X10725Y23801D01* X10732Y23796D01* X10739Y23791D01* X10747Y23788D01* X10773Y23779D01* X10798Y23768D01* X10821Y23755D01* X10844Y23740D01* X10864Y23724D01* Y23276D01* X10848Y23262D01* X10826Y23247D01* X10802Y23233D01* X10778Y23222D01* X10752Y23213D01* X10744Y23209D01* X10737Y23205D01* X10730Y23199D01* X10725Y23192D01* X10721Y23184D01* X10718Y23176D01* X10717Y23167D01* X10717Y23159D01* X10719Y23150D01* X10722Y23142D01* X10727Y23135D01* X10733Y23128D01* X10740Y23123D01* X10747Y23119D01* X10756Y23116D01* X10764Y23115D01* X10773Y23115D01* X10781Y23117D01* X10816Y23129D01* X10848Y23144D01* X10864Y23153D01* Y21857D01* X10862Y21858D01* X10829Y21873D01* X10795Y21884D01* X10786Y21886D01* X10777Y21886D01* X10769Y21885D01* X10761Y21882D01* X10753Y21878D01* X10746Y21872D01* X10740Y21865D01* X10736Y21858D01* X10733Y21850D01* X10731Y21841D01* X10731Y21833D01* X10732Y21824D01* X10735Y21816D01* X10739Y21808D01* X10745Y21801D01* X10752Y21796D01* X10759Y21791D01* X10767Y21788D01* X10793Y21779D01* X10818Y21768D01* X10841Y21755D01* X10864Y21740D01* Y21259D01* X10846Y21247D01* X10822Y21233D01* X10798Y21222D01* X10772Y21213D01* X10764Y21209D01* X10757Y21205D01* X10750Y21199D01* X10745Y21192D01* X10741Y21184D01* X10738Y21176D01* X10737Y21167D01* X10737Y21159D01* X10739Y21150D01* X10742Y21142D01* X10747Y21135D01* X10753Y21128D01* X10760Y21123D01* X10767Y21119D01* X10776Y21116D01* X10784Y21115D01* X10793Y21115D01* X10801Y21117D01* X10836Y21129D01* X10864Y21142D01* Y19866D01* X10849Y19873D01* X10815Y19884D01* X10806Y19886D01* X10797Y19886D01* X10789Y19885D01* X10781Y19882D01* X10773Y19878D01* X10766Y19872D01* X10760Y19865D01* X10756Y19858D01* X10753Y19850D01* X10751Y19841D01* X10751Y19833D01* X10752Y19824D01* X10755Y19816D01* X10759Y19808D01* X10765Y19801D01* X10772Y19796D01* X10779Y19791D01* X10787Y19788D01* X10813Y19779D01* X10838Y19768D01* X10861Y19755D01* X10864Y19754D01* Y19246D01* X10842Y19233D01* X10818Y19222D01* X10792Y19213D01* X10784Y19209D01* X10777Y19205D01* X10770Y19199D01* X10765Y19192D01* X10761Y19184D01* X10758Y19176D01* X10757Y19167D01* X10757Y19159D01* X10759Y19150D01* X10762Y19142D01* X10767Y19135D01* X10773Y19128D01* X10780Y19123D01* X10787Y19119D01* X10796Y19116D01* X10804Y19115D01* X10813Y19115D01* X10821Y19117D01* X10856Y19129D01* X10864Y19133D01* Y17874D01* X10835Y17884D01* X10826Y17886D01* X10817Y17886D01* X10809Y17885D01* X10801Y17882D01* X10793Y17878D01* X10786Y17872D01* X10780Y17865D01* X10776Y17858D01* X10773Y17850D01* X10771Y17841D01* X10771Y17833D01* X10772Y17824D01* X10775Y17816D01* X10779Y17808D01* X10785Y17801D01* X10792Y17796D01* X10799Y17791D01* X10807Y17788D01* X10833Y17779D01* X10858Y17768D01* X10864Y17765D01* Y17234D01* X10862Y17233D01* X10838Y17222D01* X10812Y17213D01* X10804Y17209D01* X10797Y17205D01* X10790Y17199D01* X10785Y17192D01* X10781Y17184D01* X10778Y17176D01* X10777Y17167D01* X10777Y17159D01* X10779Y17150D01* X10782Y17142D01* X10787Y17135D01* X10793Y17128D01* X10800Y17123D01* X10807Y17119D01* X10816Y17116D01* X10824Y17115D01* X10833Y17115D01* X10841Y17117D01* X10864Y17125D01* Y15881D01* X10855Y15884D01* X10846Y15886D01* X10837Y15886D01* X10829Y15885D01* X10821Y15882D01* X10813Y15878D01* X10806Y15872D01* X10800Y15865D01* X10796Y15858D01* X10793Y15850D01* X10791Y15841D01* X10791Y15833D01* X10792Y15824D01* X10795Y15816D01* X10799Y15808D01* X10805Y15801D01* X10812Y15796D01* X10819Y15791D01* X10827Y15788D01* X10853Y15779D01* X10864Y15774D01* Y15225D01* X10858Y15222D01* X10832Y15213D01* X10824Y15209D01* X10817Y15205D01* X10810Y15199D01* X10805Y15192D01* X10801Y15184D01* X10798Y15176D01* X10797Y15167D01* X10797Y15159D01* X10799Y15150D01* X10802Y15142D01* X10807Y15135D01* X10813Y15128D01* X10820Y15123D01* X10827Y15119D01* X10836Y15116D01* X10844Y15115D01* X10853Y15115D01* X10861Y15117D01* X10864Y15118D01* Y13886D01* X10857Y13886D01* X10849Y13885D01* X10841Y13882D01* X10833Y13878D01* X10826Y13872D01* X10820Y13865D01* X10816Y13858D01* X10813Y13850D01* X10811Y13841D01* X10811Y13833D01* X10812Y13824D01* X10815Y13816D01* X10819Y13808D01* X10825Y13801D01* X10832Y13796D01* X10839Y13791D01* X10847Y13788D01* X10864Y13782D01* Y13217D01* X10852Y13213D01* X10844Y13209D01* X10837Y13205D01* X10830Y13199D01* X10825Y13192D01* X10821Y13184D01* X10818Y13176D01* X10817Y13167D01* X10817Y13159D01* X10819Y13150D01* X10822Y13142D01* X10827Y13135D01* X10833Y13128D01* X10840Y13123D01* X10847Y13119D01* X10856Y13116D01* X10864Y13115D01* Y11883D01* X10861Y11882D01* X10853Y11878D01* X10846Y11872D01* X10840Y11865D01* X10836Y11858D01* X10833Y11850D01* X10831Y11841D01* X10831Y11833D01* X10832Y11824D01* X10835Y11816D01* X10839Y11808D01* X10845Y11801D01* X10852Y11796D01* X10859Y11791D01* X10864Y11789D01* Y11209D01* X10857Y11205D01* X10850Y11199D01* X10845Y11192D01* X10841Y11184D01* X10838Y11176D01* X10837Y11167D01* X10837Y11159D01* X10839Y11150D01* X10842Y11142D01* X10847Y11135D01* X10853Y11128D01* X10860Y11123D01* X10864Y11121D01* Y9870D01* X10860Y9865D01* X10856Y9858D01* X10853Y9850D01* X10851Y9841D01* X10851Y9833D01* X10852Y9824D01* X10855Y9816D01* X10859Y9808D01* X10864Y9802D01* Y9190D01* X10861Y9184D01* X10858Y9176D01* X10857Y9167D01* X10857Y9159D01* X10859Y9150D01* X10862Y9142D01* X10864Y9140D01* Y0D01* X10605D01* Y1214D01* X10617Y1202D01* X10645Y1179D01* X10675Y1159D01* X10707Y1141D01* X10740Y1127D01* X10774Y1115D01* X10783Y1113D01* X10792Y1113D01* X10800Y1115D01* X10808Y1117D01* X10816Y1122D01* X10823Y1127D01* X10829Y1134D01* X10833Y1141D01* X10836Y1149D01* X10838Y1158D01* X10838Y1167D01* X10837Y1175D01* X10834Y1183D01* X10830Y1191D01* X10824Y1198D01* X10817Y1204D01* X10810Y1208D01* X10802Y1211D01* X10776Y1220D01* X10751Y1231D01* X10728Y1244D01* X10705Y1259D01* X10684Y1276D01* X10665Y1295D01* X10647Y1316D01* X10632Y1338D01* X10618Y1362D01* X10607Y1386D01* X10605Y1391D01* Y1609D01* X10616Y1633D01* X10629Y1657D01* X10644Y1679D01* X10661Y1700D01* X10680Y1719D01* X10701Y1737D01* X10723Y1752D01* X10747Y1766D01* X10771Y1777D01* X10797Y1786D01* X10805Y1790D01* X10812Y1794D01* X10819Y1800D01* X10824Y1807D01* X10828Y1815D01* X10831Y1823D01* X10832Y1832D01* X10832Y1840D01* X10830Y1849D01* X10827Y1857D01* X10822Y1864D01* X10816Y1871D01* X10809Y1876D01* X10802Y1880D01* X10793Y1883D01* X10785Y1884D01* X10776Y1884D01* X10768Y1882D01* X10733Y1870D01* X10701Y1855D01* X10669Y1837D01* X10640Y1816D01* X10612Y1793D01* X10605Y1785D01* Y3196D01* X10625Y3179D01* X10655Y3159D01* X10687Y3141D01* X10720Y3127D01* X10754Y3115D01* X10763Y3113D01* X10772Y3113D01* X10780Y3115D01* X10788Y3117D01* X10796Y3122D01* X10803Y3127D01* X10809Y3134D01* X10813Y3141D01* X10816Y3149D01* X10818Y3158D01* X10818Y3167D01* X10817Y3175D01* X10814Y3183D01* X10810Y3191D01* X10804Y3198D01* X10797Y3204D01* X10790Y3208D01* X10782Y3211D01* X10756Y3220D01* X10731Y3231D01* X10708Y3244D01* X10685Y3259D01* X10664Y3276D01* X10645Y3295D01* X10627Y3316D01* X10612Y3338D01* X10605Y3349D01* Y3650D01* X10609Y3657D01* X10624Y3679D01* X10641Y3700D01* X10660Y3719D01* X10681Y3737D01* X10703Y3752D01* X10727Y3766D01* X10751Y3777D01* X10777Y3786D01* X10785Y3790D01* X10792Y3794D01* X10799Y3800D01* X10804Y3807D01* X10808Y3815D01* X10811Y3823D01* X10812Y3832D01* X10812Y3840D01* X10810Y3849D01* X10807Y3857D01* X10802Y3864D01* X10796Y3871D01* X10789Y3876D01* X10782Y3880D01* X10773Y3883D01* X10765Y3884D01* X10756Y3884D01* X10748Y3882D01* X10713Y3870D01* X10681Y3855D01* X10649Y3837D01* X10620Y3816D01* X10605Y3804D01* Y5179D01* X10605Y5179D01* X10635Y5159D01* X10667Y5141D01* X10700Y5127D01* X10734Y5115D01* X10743Y5113D01* X10752Y5113D01* X10760Y5115D01* X10768Y5117D01* X10776Y5122D01* X10783Y5127D01* X10789Y5134D01* X10793Y5141D01* X10796Y5149D01* X10798Y5158D01* X10798Y5167D01* X10797Y5175D01* X10794Y5183D01* X10790Y5191D01* X10784Y5198D01* X10777Y5204D01* X10770Y5208D01* X10762Y5211D01* X10736Y5220D01* X10711Y5231D01* X10688Y5244D01* X10665Y5259D01* X10644Y5276D01* X10625Y5295D01* X10607Y5316D01* X10605Y5319D01* Y5680D01* X10621Y5700D01* X10640Y5719D01* X10661Y5737D01* X10683Y5752D01* X10707Y5766D01* X10731Y5777D01* X10757Y5786D01* X10765Y5790D01* X10772Y5794D01* X10779Y5800D01* X10784Y5807D01* X10788Y5815D01* X10791Y5823D01* X10792Y5832D01* X10792Y5840D01* X10790Y5849D01* X10787Y5857D01* X10782Y5864D01* X10776Y5871D01* X10769Y5876D01* X10762Y5880D01* X10753Y5883D01* X10745Y5884D01* X10736Y5884D01* X10728Y5882D01* X10693Y5870D01* X10661Y5855D01* X10629Y5837D01* X10605Y5820D01* Y7166D01* X10615Y7159D01* X10647Y7141D01* X10680Y7127D01* X10714Y7115D01* X10723Y7113D01* X10732Y7113D01* X10740Y7115D01* X10748Y7117D01* X10756Y7122D01* X10763Y7127D01* X10769Y7134D01* X10773Y7141D01* X10776Y7149D01* X10778Y7158D01* X10778Y7167D01* X10777Y7175D01* X10774Y7183D01* X10770Y7191D01* X10764Y7198D01* X10757Y7204D01* X10750Y7208D01* X10742Y7211D01* X10716Y7220D01* X10691Y7231D01* X10668Y7244D01* X10645Y7259D01* X10624Y7276D01* X10605Y7295D01* Y7704D01* X10620Y7719D01* X10641Y7737D01* X10663Y7752D01* X10687Y7766D01* X10711Y7777D01* X10737Y7786D01* X10745Y7790D01* X10752Y7794D01* X10759Y7800D01* X10764Y7807D01* X10768Y7815D01* X10771Y7823D01* X10772Y7832D01* X10772Y7840D01* X10770Y7849D01* X10767Y7857D01* X10762Y7864D01* X10756Y7871D01* X10749Y7876D01* X10742Y7880D01* X10733Y7883D01* X10725Y7884D01* X10716Y7884D01* X10708Y7882D01* X10673Y7870D01* X10641Y7855D01* X10609Y7837D01* X10605Y7834D01* Y9153D01* X10627Y9141D01* X10660Y9127D01* X10694Y9115D01* X10703Y9113D01* X10712Y9113D01* X10720Y9115D01* X10728Y9117D01* X10736Y9122D01* X10743Y9127D01* X10749Y9134D01* X10753Y9141D01* X10756Y9149D01* X10758Y9158D01* X10758Y9167D01* X10757Y9175D01* X10754Y9183D01* X10750Y9191D01* X10744Y9198D01* X10737Y9204D01* X10730Y9208D01* X10722Y9211D01* X10696Y9220D01* X10671Y9231D01* X10648Y9244D01* X10625Y9259D01* X10605Y9276D01* Y9723D01* X10621Y9737D01* X10643Y9752D01* X10667Y9766D01* X10691Y9777D01* X10717Y9786D01* X10725Y9790D01* X10732Y9794D01* X10739Y9800D01* X10744Y9807D01* X10748Y9815D01* X10751Y9823D01* X10752Y9832D01* X10752Y9840D01* X10750Y9849D01* X10747Y9857D01* X10742Y9864D01* X10736Y9871D01* X10729Y9876D01* X10722Y9880D01* X10713Y9883D01* X10705Y9884D01* X10696Y9884D01* X10688Y9882D01* X10653Y9870D01* X10621Y9855D01* X10605Y9846D01* Y11142D01* X10607Y11141D01* X10640Y11127D01* X10674Y11115D01* X10683Y11113D01* X10692Y11113D01* X10700Y11115D01* X10708Y11117D01* X10716Y11122D01* X10723Y11127D01* X10729Y11134D01* X10733Y11141D01* X10736Y11149D01* X10738Y11158D01* X10738Y11167D01* X10737Y11175D01* X10734Y11183D01* X10730Y11191D01* X10724Y11198D01* X10717Y11204D01* X10710Y11208D01* X10702Y11211D01* X10676Y11220D01* X10651Y11231D01* X10628Y11244D01* X10605Y11259D01* Y11740D01* X10623Y11752D01* X10647Y11766D01* X10671Y11777D01* X10697Y11786D01* X10705Y11790D01* X10712Y11794D01* X10719Y11800D01* X10724Y11807D01* X10728Y11815D01* X10731Y11823D01* X10732Y11832D01* X10732Y11840D01* X10730Y11849D01* X10727Y11857D01* X10722Y11864D01* X10716Y11871D01* X10709Y11876D01* X10702Y11880D01* X10693Y11883D01* X10685Y11884D01* X10676Y11884D01* X10668Y11882D01* X10633Y11870D01* X10605Y11857D01* Y13133D01* X10620Y13127D01* X10654Y13115D01* X10663Y13113D01* X10672Y13113D01* X10680Y13115D01* X10688Y13117D01* X10696Y13122D01* X10703Y13127D01* X10709Y13134D01* X10713Y13141D01* X10716Y13149D01* X10718Y13158D01* X10718Y13167D01* X10717Y13175D01* X10714Y13183D01* X10710Y13191D01* X10704Y13198D01* X10697Y13204D01* X10690Y13208D01* X10682Y13211D01* X10656Y13220D01* X10631Y13231D01* X10608Y13244D01* X10605Y13246D01* Y13754D01* X10627Y13766D01* X10651Y13777D01* X10677Y13786D01* X10685Y13790D01* X10692Y13794D01* X10699Y13800D01* X10704Y13807D01* X10708Y13815D01* X10711Y13823D01* X10712Y13832D01* X10712Y13840D01* X10710Y13849D01* X10707Y13857D01* X10702Y13864D01* X10696Y13871D01* X10689Y13876D01* X10682Y13880D01* X10673Y13883D01* X10665Y13884D01* X10656Y13884D01* X10648Y13882D01* X10613Y13870D01* X10605Y13866D01* Y15125D01* X10634Y15115D01* X10643Y15113D01* X10652Y15113D01* X10660Y15115D01* X10668Y15117D01* X10676Y15122D01* X10683Y15127D01* X10689Y15134D01* X10693Y15141D01* X10696Y15149D01* X10698Y15158D01* X10698Y15167D01* X10697Y15175D01* X10694Y15183D01* X10690Y15191D01* X10684Y15198D01* X10677Y15204D01* X10670Y15208D01* X10662Y15211D01* X10636Y15220D01* X10611Y15231D01* X10605Y15234D01* Y15765D01* X10607Y15766D01* X10631Y15777D01* X10657Y15786D01* X10665Y15790D01* X10672Y15794D01* X10679Y15800D01* X10684Y15807D01* X10688Y15815D01* X10691Y15823D01* X10692Y15832D01* X10692Y15840D01* X10690Y15849D01* X10687Y15857D01* X10682Y15864D01* X10676Y15871D01* X10669Y15876D01* X10662Y15880D01* X10653Y15883D01* X10645Y15884D01* X10636Y15884D01* X10628Y15882D01* X10605Y15874D01* Y17118D01* X10614Y17115D01* X10623Y17113D01* X10632Y17113D01* X10640Y17115D01* X10648Y17117D01* X10656Y17122D01* X10663Y17127D01* X10669Y17134D01* X10673Y17141D01* X10676Y17149D01* X10678Y17158D01* X10678Y17167D01* X10677Y17175D01* X10674Y17183D01* X10670Y17191D01* X10664Y17198D01* X10657Y17204D01* X10650Y17208D01* X10642Y17211D01* X10616Y17220D01* X10605Y17225D01* Y17775D01* X10611Y17777D01* X10637Y17786D01* X10645Y17790D01* X10652Y17794D01* X10659Y17800D01* X10664Y17807D01* X10668Y17815D01* X10671Y17823D01* X10672Y17832D01* X10672Y17840D01* X10670Y17849D01* X10667Y17857D01* X10662Y17864D01* X10656Y17871D01* X10649Y17876D01* X10642Y17880D01* X10633Y17883D01* X10625Y17884D01* X10616Y17884D01* X10608Y17882D01* X10605Y17881D01* Y19113D01* X10612Y19113D01* X10620Y19115D01* X10628Y19117D01* X10636Y19122D01* X10643Y19127D01* X10649Y19134D01* X10653Y19141D01* X10656Y19149D01* X10658Y19158D01* X10658Y19167D01* X10657Y19175D01* X10654Y19183D01* X10650Y19191D01* X10644Y19198D01* X10637Y19204D01* X10630Y19208D01* X10622Y19211D01* X10605Y19217D01* Y19782D01* X10617Y19786D01* X10625Y19790D01* X10632Y19794D01* X10639Y19800D01* X10644Y19807D01* X10648Y19815D01* X10651Y19823D01* X10652Y19832D01* X10652Y19840D01* X10650Y19849D01* X10647Y19857D01* X10642Y19864D01* X10636Y19871D01* X10629Y19876D01* X10622Y19880D01* X10613Y19883D01* X10605Y19884D01* Y21116D01* X10608Y21117D01* X10616Y21122D01* X10623Y21127D01* X10629Y21134D01* X10633Y21141D01* X10636Y21149D01* X10638Y21158D01* X10638Y21167D01* X10637Y21175D01* X10634Y21183D01* X10630Y21191D01* X10624Y21198D01* X10617Y21204D01* X10610Y21208D01* X10605Y21210D01* Y21790D01* X10612Y21794D01* X10619Y21800D01* X10624Y21807D01* X10628Y21815D01* X10631Y21823D01* X10632Y21832D01* X10632Y21840D01* X10630Y21849D01* X10627Y21857D01* X10622Y21864D01* X10616Y21871D01* X10609Y21876D01* X10605Y21878D01* Y23130D01* X10609Y23134D01* X10613Y23141D01* X10616Y23149D01* X10618Y23158D01* X10618Y23167D01* X10617Y23175D01* X10614Y23183D01* X10610Y23191D01* X10605Y23197D01* Y23809D01* X10608Y23815D01* X10611Y23823D01* X10612Y23832D01* X10612Y23840D01* X10610Y23849D01* X10607Y23857D01* X10605Y23859D01* Y35138D01* G37* G36* X10864Y40000D02*X11044D01* Y23625D01* X11035Y23651D01* X11020Y23683D01* X11002Y23715D01* X10981Y23744D01* X10957Y23772D01* X10932Y23797D01* X10904Y23820D01* X10874Y23840D01* X10864Y23846D01* Y25165D01* X10889Y25183D01* X10917Y25207D01* X10942Y25232D01* X10965Y25260D01* X10985Y25290D01* X11003Y25322D01* X11017Y25355D01* X11029Y25389D01* X11031Y25398D01* X11031Y25407D01* X11030Y25415D01* X11027Y25423D01* X11022Y25431D01* X11017Y25438D01* X11010Y25444D01* X11003Y25448D01* X10995Y25451D01* X10986Y25453D01* X10977Y25453D01* X10969Y25452D01* X10961Y25449D01* X10953Y25445D01* X10946Y25439D01* X10940Y25433D01* X10936Y25425D01* X10933Y25417D01* X10924Y25391D01* X10913Y25366D01* X10900Y25343D01* X10885Y25320D01* X10868Y25299D01* X10864Y25295D01* Y25704D01* X10864Y25704D01* X10882Y25683D01* X10897Y25661D01* X10911Y25637D01* X10922Y25613D01* X10931Y25587D01* X10935Y25579D01* X10939Y25572D01* X10945Y25565D01* X10952Y25560D01* X10960Y25556D01* X10968Y25553D01* X10977Y25552D01* X10985Y25552D01* X10994Y25554D01* X11002Y25557D01* X11009Y25562D01* X11016Y25568D01* X11021Y25575D01* X11025Y25582D01* X11028Y25591D01* X11029Y25599D01* X11029Y25608D01* X11027Y25617D01* X11015Y25651D01* X11000Y25683D01* X10982Y25715D01* X10961Y25744D01* X10937Y25772D01* X10912Y25797D01* X10884Y25820D01* X10864Y25834D01* Y27180D01* X10869Y27183D01* X10897Y27207D01* X10922Y27232D01* X10945Y27260D01* X10965Y27290D01* X10983Y27322D01* X10997Y27355D01* X11009Y27389D01* X11011Y27398D01* X11011Y27407D01* X11010Y27415D01* X11007Y27423D01* X11002Y27431D01* X10997Y27438D01* X10990Y27444D01* X10983Y27448D01* X10975Y27451D01* X10966Y27453D01* X10957Y27453D01* X10949Y27452D01* X10941Y27449D01* X10933Y27445D01* X10926Y27439D01* X10920Y27433D01* X10916Y27425D01* X10913Y27417D01* X10904Y27391D01* X10893Y27366D01* X10880Y27343D01* X10865Y27320D01* X10864Y27319D01* Y27680D01* X10877Y27661D01* X10891Y27637D01* X10902Y27613D01* X10911Y27587D01* X10915Y27579D01* X10919Y27572D01* X10925Y27565D01* X10932Y27560D01* X10940Y27556D01* X10948Y27553D01* X10957Y27552D01* X10965Y27552D01* X10974Y27554D01* X10982Y27557D01* X10989Y27562D01* X10996Y27568D01* X11001Y27575D01* X11005Y27582D01* X11008Y27591D01* X11009Y27599D01* X11009Y27608D01* X11007Y27617D01* X10995Y27651D01* X10980Y27683D01* X10962Y27715D01* X10941Y27744D01* X10917Y27772D01* X10892Y27797D01* X10864Y27820D01* Y29196D01* X10877Y29207D01* X10902Y29232D01* X10925Y29260D01* X10945Y29290D01* X10963Y29322D01* X10977Y29355D01* X10989Y29389D01* X10991Y29398D01* X10991Y29407D01* X10990Y29415D01* X10987Y29423D01* X10982Y29431D01* X10977Y29438D01* X10970Y29444D01* X10963Y29448D01* X10955Y29451D01* X10946Y29453D01* X10937Y29453D01* X10929Y29452D01* X10921Y29449D01* X10913Y29445D01* X10906Y29439D01* X10900Y29433D01* X10896Y29425D01* X10893Y29417D01* X10884Y29391D01* X10873Y29366D01* X10864Y29350D01* Y29650D01* X10871Y29637D01* X10882Y29613D01* X10891Y29587D01* X10895Y29579D01* X10899Y29572D01* X10905Y29565D01* X10912Y29560D01* X10920Y29556D01* X10928Y29553D01* X10937Y29552D01* X10945Y29552D01* X10954Y29554D01* X10962Y29557D01* X10969Y29562D01* X10976Y29568D01* X10981Y29575D01* X10985Y29582D01* X10988Y29591D01* X10989Y29599D01* X10989Y29608D01* X10987Y29617D01* X10975Y29651D01* X10960Y29683D01* X10942Y29715D01* X10921Y29744D01* X10897Y29772D01* X10872Y29797D01* X10864Y29804D01* Y31214D01* X10882Y31232D01* X10905Y31260D01* X10925Y31290D01* X10943Y31322D01* X10957Y31355D01* X10969Y31389D01* X10971Y31398D01* X10971Y31407D01* X10970Y31415D01* X10967Y31423D01* X10962Y31431D01* X10957Y31438D01* X10950Y31444D01* X10943Y31448D01* X10935Y31451D01* X10926Y31453D01* X10917Y31453D01* X10909Y31452D01* X10901Y31449D01* X10893Y31445D01* X10886Y31439D01* X10880Y31433D01* X10876Y31425D01* X10873Y31417D01* X10864Y31391D01* X10864Y31391D01* Y31608D01* X10871Y31587D01* X10875Y31579D01* X10879Y31572D01* X10885Y31565D01* X10892Y31560D01* X10900Y31556D01* X10908Y31553D01* X10917Y31552D01* X10925Y31552D01* X10934Y31554D01* X10942Y31557D01* X10949Y31562D01* X10956Y31568D01* X10961Y31575D01* X10965Y31582D01* X10968Y31591D01* X10969Y31599D01* X10969Y31608D01* X10967Y31617D01* X10955Y31651D01* X10940Y31683D01* X10922Y31715D01* X10901Y31744D01* X10877Y31772D01* X10864Y31785D01* Y33235D01* X10885Y33260D01* X10905Y33290D01* X10923Y33322D01* X10937Y33355D01* X10949Y33389D01* X10951Y33398D01* X10951Y33407D01* X10950Y33415D01* X10947Y33423D01* X10942Y33431D01* X10937Y33438D01* X10930Y33444D01* X10923Y33448D01* X10915Y33451D01* X10906Y33453D01* X10897Y33453D01* X10889Y33452D01* X10881Y33449D01* X10873Y33445D01* X10866Y33439D01* X10864Y33437D01* Y33567D01* X10865Y33565D01* X10872Y33560D01* X10880Y33556D01* X10888Y33553D01* X10897Y33552D01* X10905Y33552D01* X10914Y33554D01* X10922Y33557D01* X10929Y33562D01* X10936Y33568D01* X10941Y33575D01* X10945Y33582D01* X10948Y33591D01* X10949Y33599D01* X10949Y33608D01* X10947Y33617D01* X10935Y33651D01* X10920Y33683D01* X10902Y33715D01* X10881Y33744D01* X10864Y33764D01* Y35259D01* X10865Y35260D01* X10885Y35290D01* X10903Y35322D01* X10917Y35355D01* X10929Y35389D01* X10931Y35398D01* X10931Y35407D01* X10930Y35415D01* X10927Y35423D01* X10922Y35431D01* X10917Y35438D01* X10910Y35444D01* X10903Y35448D01* X10895Y35451D01* X10886Y35453D01* X10877Y35453D01* X10869Y35452D01* X10864Y35450D01* Y35555D01* X10868Y35553D01* X10877Y35552D01* X10885Y35552D01* X10894Y35554D01* X10902Y35557D01* X10909Y35562D01* X10916Y35568D01* X10921Y35575D01* X10925Y35582D01* X10928Y35591D01* X10929Y35599D01* X10929Y35608D01* X10927Y35617D01* X10915Y35651D01* X10900Y35683D01* X10882Y35715D01* X10864Y35740D01* Y37288D01* X10865Y37290D01* X10883Y37322D01* X10897Y37355D01* X10909Y37389D01* X10911Y37398D01* X10911Y37407D01* X10910Y37415D01* X10907Y37423D01* X10902Y37431D01* X10897Y37438D01* X10890Y37444D01* X10883Y37448D01* X10875Y37451D01* X10866Y37453D01* X10864D01* Y37552D01* X10865D01* X10874Y37554D01* X10882Y37557D01* X10889Y37562D01* X10896Y37568D01* X10901Y37575D01* X10905Y37582D01* X10908Y37591D01* X10909Y37599D01* X10909Y37608D01* X10907Y37617D01* X10895Y37651D01* X10880Y37683D01* X10864Y37711D01* Y39324D01* X10877Y39355D01* X10889Y39389D01* X10891Y39398D01* X10891Y39407D01* X10890Y39415D01* X10887Y39423D01* X10882Y39431D01* X10877Y39438D01* X10870Y39444D01* X10864Y39447D01* Y39559D01* X10869Y39562D01* X10876Y39568D01* X10881Y39575D01* X10885Y39582D01* X10888Y39591D01* X10889Y39599D01* X10889Y39608D01* X10887Y39617D01* X10875Y39651D01* X10864Y39674D01* Y40000D01* G37* G36* X11044Y0D02*X10864D01* Y9140D01* X10867Y9135D01* X10873Y9128D01* X10880Y9123D01* X10887Y9119D01* X10896Y9116D01* X10904Y9115D01* X10913Y9115D01* X10921Y9117D01* X10956Y9129D01* X10988Y9144D01* X11020Y9162D01* X11044Y9180D01* Y7834D01* X11034Y7840D01* X11002Y7858D01* X10969Y7873D01* X10935Y7884D01* X10926Y7886D01* X10917Y7886D01* X10909Y7885D01* X10901Y7882D01* X10893Y7878D01* X10886Y7872D01* X10880Y7865D01* X10876Y7858D01* X10873Y7850D01* X10871Y7841D01* X10871Y7833D01* X10872Y7824D01* X10875Y7816D01* X10879Y7808D01* X10885Y7801D01* X10892Y7796D01* X10899Y7791D01* X10907Y7788D01* X10933Y7779D01* X10958Y7768D01* X10981Y7755D01* X11004Y7740D01* X11025Y7723D01* X11044Y7704D01* Y7295D01* X11029Y7280D01* X11008Y7262D01* X10986Y7247D01* X10962Y7233D01* X10938Y7222D01* X10912Y7213D01* X10904Y7209D01* X10897Y7205D01* X10890Y7199D01* X10885Y7192D01* X10881Y7184D01* X10878Y7176D01* X10877Y7167D01* X10877Y7159D01* X10879Y7150D01* X10882Y7142D01* X10887Y7135D01* X10893Y7128D01* X10900Y7123D01* X10907Y7119D01* X10916Y7116D01* X10924Y7115D01* X10933Y7115D01* X10941Y7117D01* X10976Y7129D01* X11008Y7144D01* X11040Y7162D01* X11044Y7165D01* Y5846D01* X11022Y5858D01* X10989Y5873D01* X10955Y5884D01* X10946Y5886D01* X10937Y5886D01* X10929Y5885D01* X10921Y5882D01* X10913Y5878D01* X10906Y5872D01* X10900Y5865D01* X10896Y5858D01* X10893Y5850D01* X10891Y5841D01* X10891Y5833D01* X10892Y5824D01* X10895Y5816D01* X10899Y5808D01* X10905Y5801D01* X10912Y5796D01* X10919Y5791D01* X10927Y5788D01* X10953Y5779D01* X10978Y5768D01* X11001Y5755D01* X11024Y5740D01* X11044Y5724D01* Y5276D01* X11028Y5262D01* X11006Y5247D01* X10982Y5233D01* X10958Y5222D01* X10932Y5213D01* X10924Y5209D01* X10917Y5205D01* X10910Y5199D01* X10905Y5192D01* X10901Y5184D01* X10898Y5176D01* X10897Y5167D01* X10897Y5159D01* X10899Y5150D01* X10902Y5142D01* X10907Y5135D01* X10913Y5128D01* X10920Y5123D01* X10927Y5119D01* X10936Y5116D01* X10944Y5115D01* X10953Y5115D01* X10961Y5117D01* X10996Y5129D01* X11028Y5144D01* X11044Y5153D01* Y3857D01* X11042Y3858D01* X11009Y3873D01* X10975Y3884D01* X10966Y3886D01* X10957Y3886D01* X10949Y3885D01* X10941Y3882D01* X10933Y3878D01* X10926Y3872D01* X10920Y3865D01* X10916Y3858D01* X10913Y3850D01* X10911Y3841D01* X10911Y3833D01* X10912Y3824D01* X10915Y3816D01* X10919Y3808D01* X10925Y3801D01* X10932Y3796D01* X10939Y3791D01* X10947Y3788D01* X10973Y3779D01* X10998Y3768D01* X11021Y3755D01* X11044Y3740D01* Y3259D01* X11026Y3247D01* X11002Y3233D01* X10978Y3222D01* X10952Y3213D01* X10944Y3209D01* X10937Y3205D01* X10930Y3199D01* X10925Y3192D01* X10921Y3184D01* X10918Y3176D01* X10917Y3167D01* X10917Y3159D01* X10919Y3150D01* X10922Y3142D01* X10927Y3135D01* X10933Y3128D01* X10940Y3123D01* X10947Y3119D01* X10956Y3116D01* X10964Y3115D01* X10973Y3115D01* X10981Y3117D01* X11016Y3129D01* X11044Y3142D01* Y1866D01* X11029Y1873D01* X10995Y1884D01* X10986Y1886D01* X10977Y1886D01* X10969Y1885D01* X10961Y1882D01* X10953Y1878D01* X10946Y1872D01* X10940Y1865D01* X10936Y1858D01* X10933Y1850D01* X10931Y1841D01* X10931Y1833D01* X10932Y1824D01* X10935Y1816D01* X10939Y1808D01* X10945Y1801D01* X10952Y1796D01* X10959Y1791D01* X10967Y1788D01* X10993Y1779D01* X11018Y1768D01* X11041Y1755D01* X11044Y1754D01* Y1246D01* X11022Y1233D01* X10998Y1222D01* X10972Y1213D01* X10964Y1209D01* X10957Y1205D01* X10950Y1199D01* X10945Y1192D01* X10941Y1184D01* X10938Y1176D01* X10937Y1167D01* X10937Y1159D01* X10939Y1150D01* X10942Y1142D01* X10947Y1135D01* X10953Y1128D01* X10960Y1123D01* X10967Y1119D01* X10976Y1116D01* X10984Y1115D01* X10993Y1115D01* X11001Y1117D01* X11036Y1129D01* X11044Y1133D01* Y0D01* G37* G36* Y9319D02*X11028Y9299D01* X11009Y9280D01* X10988Y9262D01* X10966Y9247D01* X10942Y9233D01* X10918Y9222D01* X10892Y9213D01* X10884Y9209D01* X10877Y9205D01* X10870Y9199D01* X10865Y9192D01* X10864Y9190D01* Y9802D01* X10865Y9801D01* X10872Y9796D01* X10879Y9791D01* X10887Y9788D01* X10913Y9779D01* X10938Y9768D01* X10961Y9755D01* X10984Y9740D01* X11005Y9723D01* X11024Y9704D01* X11042Y9683D01* X11044Y9680D01* Y9319D01* G37* G36* Y9820D02*X11044Y9820D01* X11014Y9840D01* X10982Y9858D01* X10949Y9873D01* X10915Y9884D01* X10906Y9886D01* X10897Y9886D01* X10889Y9885D01* X10881Y9882D01* X10873Y9878D01* X10866Y9872D01* X10864Y9870D01* Y11121D01* X10867Y11119D01* X10876Y11116D01* X10884Y11115D01* X10893Y11115D01* X10901Y11117D01* X10936Y11129D01* X10968Y11144D01* X11000Y11162D01* X11029Y11183D01* X11044Y11196D01* Y9820D01* G37* G36* Y11350D02*X11040Y11343D01* X11025Y11320D01* X11008Y11299D01* X10989Y11280D01* X10968Y11262D01* X10946Y11247D01* X10922Y11233D01* X10898Y11222D01* X10872Y11213D01* X10864Y11209D01* X10864Y11209D01* Y11789D01* X10867Y11788D01* X10893Y11779D01* X10918Y11768D01* X10941Y11755D01* X10964Y11740D01* X10985Y11723D01* X11004Y11704D01* X11022Y11683D01* X11037Y11661D01* X11044Y11650D01* Y11350D01* G37* G36* Y11804D02*X11024Y11820D01* X10994Y11840D01* X10962Y11858D01* X10929Y11873D01* X10895Y11884D01* X10886Y11886D01* X10877Y11886D01* X10869Y11885D01* X10864Y11883D01* Y13115D01* X10864D01* X10873Y13115D01* X10881Y13117D01* X10916Y13129D01* X10948Y13144D01* X10980Y13162D01* X11009Y13183D01* X11037Y13207D01* X11044Y13214D01* Y11804D01* G37* G36* Y13391D02*X11033Y13366D01* X11020Y13343D01* X11005Y13320D01* X10988Y13299D01* X10969Y13280D01* X10948Y13262D01* X10926Y13247D01* X10902Y13233D01* X10878Y13222D01* X10864Y13217D01* Y13782D01* X10873Y13779D01* X10898Y13768D01* X10921Y13755D01* X10944Y13740D01* X10965Y13723D01* X10984Y13704D01* X11002Y13683D01* X11017Y13661D01* X11031Y13637D01* X11042Y13613D01* X11044Y13608D01* Y13391D01* G37* G36* Y13785D02*X11032Y13797D01* X11004Y13820D01* X10974Y13840D01* X10942Y13858D01* X10909Y13873D01* X10875Y13884D01* X10866Y13886D01* X10864D01* Y15118D01* X10896Y15129D01* X10928Y15144D01* X10960Y15162D01* X10989Y15183D01* X11017Y15207D01* X11042Y15232D01* X11044Y15235D01* Y13785D01* G37* G36* Y15437D02*X11040Y15433D01* X11036Y15425D01* X11033Y15417D01* X11024Y15391D01* X11013Y15366D01* X11000Y15343D01* X10985Y15320D01* X10968Y15299D01* X10949Y15280D01* X10928Y15262D01* X10906Y15247D01* X10882Y15233D01* X10864Y15225D01* Y15774D01* X10878Y15768D01* X10901Y15755D01* X10924Y15740D01* X10945Y15723D01* X10964Y15704D01* X10982Y15683D01* X10997Y15661D01* X11011Y15637D01* X11022Y15613D01* X11031Y15587D01* X11035Y15579D01* X11039Y15572D01* X11044Y15567D01* Y15437D01* G37* G36* Y15764D02*X11037Y15772D01* X11012Y15797D01* X10984Y15820D01* X10954Y15840D01* X10922Y15858D01* X10889Y15873D01* X10864Y15881D01* Y17125D01* X10876Y17129D01* X10908Y17144D01* X10940Y17162D01* X10969Y17183D01* X10997Y17207D01* X11022Y17232D01* X11044Y17259D01* Y15764D01* G37* G36* Y17450D02*X11041Y17449D01* X11033Y17445D01* X11026Y17439D01* X11020Y17433D01* X11016Y17425D01* X11013Y17417D01* X11004Y17391D01* X10993Y17366D01* X10980Y17343D01* X10965Y17320D01* X10948Y17299D01* X10929Y17280D01* X10908Y17262D01* X10886Y17247D01* X10864Y17234D01* Y17765D01* X10881Y17755D01* X10904Y17740D01* X10925Y17723D01* X10944Y17704D01* X10962Y17683D01* X10977Y17661D01* X10991Y17637D01* X11002Y17613D01* X11011Y17587D01* X11015Y17579D01* X11019Y17572D01* X11025Y17565D01* X11032Y17560D01* X11040Y17556D01* X11044Y17555D01* Y17450D01* G37* G36* Y17740D02*X11041Y17744D01* X11017Y17772D01* X10992Y17797D01* X10964Y17820D01* X10934Y17840D01* X10902Y17858D01* X10869Y17873D01* X10864Y17874D01* Y19133D01* X10888Y19144D01* X10920Y19162D01* X10949Y19183D01* X10977Y19207D01* X11002Y19232D01* X11025Y19260D01* X11044Y19288D01* Y17740D01* G37* G36* Y19453D02*X11037Y19453D01* X11029Y19452D01* X11021Y19449D01* X11013Y19445D01* X11006Y19439D01* X11000Y19433D01* X10996Y19425D01* X10993Y19417D01* X10984Y19391D01* X10973Y19366D01* X10960Y19343D01* X10945Y19320D01* X10928Y19299D01* X10909Y19280D01* X10888Y19262D01* X10866Y19247D01* X10864Y19246D01* Y19754D01* X10884Y19740D01* X10905Y19723D01* X10924Y19704D01* X10942Y19683D01* X10957Y19661D01* X10971Y19637D01* X10982Y19613D01* X10991Y19587D01* X10995Y19579D01* X10999Y19572D01* X11005Y19565D01* X11012Y19560D01* X11020Y19556D01* X11028Y19553D01* X11037Y19552D01* X11044Y19552D01* Y19453D01* G37* G36* Y19711D02*X11042Y19715D01* X11021Y19744D01* X10997Y19772D01* X10972Y19797D01* X10944Y19820D01* X10914Y19840D01* X10882Y19858D01* X10864Y19866D01* Y21142D01* X10868Y21144D01* X10900Y21162D01* X10929Y21183D01* X10957Y21207D01* X10982Y21232D01* X11005Y21260D01* X11025Y21290D01* X11043Y21322D01* X11044Y21324D01* Y19711D01* G37* G36* Y21447D02*X11043Y21448D01* X11035Y21451D01* X11026Y21453D01* X11017Y21453D01* X11009Y21452D01* X11001Y21449D01* X10993Y21445D01* X10986Y21439D01* X10980Y21433D01* X10976Y21425D01* X10973Y21417D01* X10964Y21391D01* X10953Y21366D01* X10940Y21343D01* X10925Y21320D01* X10908Y21299D01* X10889Y21280D01* X10868Y21262D01* X10864Y21259D01* Y21740D01* X10885Y21723D01* X10904Y21704D01* X10922Y21683D01* X10937Y21661D01* X10951Y21637D01* X10962Y21613D01* X10971Y21587D01* X10975Y21579D01* X10979Y21572D01* X10985Y21565D01* X10992Y21560D01* X11000Y21556D01* X11008Y21553D01* X11017Y21552D01* X11025Y21552D01* X11034Y21554D01* X11042Y21557D01* X11044Y21559D01* Y21447D01* G37* G36* Y21674D02*X11040Y21683D01* X11022Y21715D01* X11001Y21744D01* X10977Y21772D01* X10952Y21797D01* X10924Y21820D01* X10894Y21840D01* X10864Y21857D01* Y23153D01* X10880Y23162D01* X10909Y23183D01* X10937Y23207D01* X10962Y23232D01* X10985Y23260D01* X11005Y23290D01* X11023Y23322D01* X11037Y23355D01* X11044Y23374D01* Y21674D01* G37* G36* Y23428D02*X11042Y23431D01* X11037Y23438D01* X11030Y23444D01* X11023Y23448D01* X11015Y23451D01* X11006Y23453D01* X10997Y23453D01* X10989Y23452D01* X10981Y23449D01* X10973Y23445D01* X10966Y23439D01* X10960Y23433D01* X10956Y23425D01* X10953Y23417D01* X10944Y23391D01* X10933Y23366D01* X10920Y23343D01* X10905Y23320D01* X10888Y23299D01* X10869Y23280D01* X10864Y23276D01* Y23724D01* X10865Y23723D01* X10884Y23704D01* X10902Y23683D01* X10917Y23661D01* X10931Y23637D01* X10942Y23613D01* X10951Y23587D01* X10955Y23579D01* X10959Y23572D01* X10965Y23565D01* X10972Y23560D01* X10980Y23556D01* X10988Y23553D01* X10997Y23552D01* X11005Y23552D01* X11014Y23554D01* X11022Y23557D01* X11029Y23562D01* X11036Y23568D01* X11041Y23575D01* X11044Y23580D01* Y23428D01* G37* G36* Y40000D02*X12285D01* Y39834D01* X12260Y39816D01* X12232Y39793D01* X12207Y39767D01* X12184Y39739D01* X12164Y39709D01* X12146Y39677D01* X12132Y39644D01* X12120Y39610D01* X12118Y39601D01* X12118Y39593D01* X12119Y39584D01* X12122Y39576D01* X12127Y39568D01* X12132Y39561D01* X12139Y39556D01* X12146Y39551D01* X12154Y39548D01* X12163Y39546D01* X12172Y39546D01* X12180Y39547D01* X12188Y39550D01* X12196Y39555D01* X12203Y39560D01* X12209Y39567D01* X12213Y39574D01* X12216Y39582D01* X12225Y39608D01* X12236Y39633D01* X12249Y39657D01* X12264Y39679D01* X12281Y39700D01* X12285Y39704D01* Y39295D01* X12285Y39295D01* X12267Y39316D01* X12252Y39338D01* X12238Y39362D01* X12227Y39386D01* X12218Y39412D01* X12214Y39420D01* X12210Y39427D01* X12204Y39434D01* X12197Y39439D01* X12189Y39443D01* X12181Y39446D01* X12172Y39447D01* X12164Y39447D01* X12155Y39445D01* X12147Y39442D01* X12140Y39437D01* X12133Y39431D01* X12128Y39424D01* X12124Y39417D01* X12121Y39409D01* X12120Y39400D01* X12120Y39391D01* X12122Y39383D01* X12134Y39349D01* X12149Y39316D01* X12167Y39284D01* X12188Y39255D01* X12212Y39227D01* X12237Y39202D01* X12265Y39179D01* X12285Y39166D01* Y37820D01* X12280Y37816D01* X12252Y37793D01* X12227Y37767D01* X12204Y37739D01* X12184Y37709D01* X12166Y37677D01* X12152Y37644D01* X12140Y37610D01* X12138Y37601D01* X12138Y37593D01* X12139Y37584D01* X12142Y37576D01* X12147Y37568D01* X12152Y37561D01* X12159Y37556D01* X12166Y37551D01* X12174Y37548D01* X12183Y37546D01* X12192Y37546D01* X12200Y37547D01* X12208Y37550D01* X12216Y37555D01* X12223Y37560D01* X12229Y37567D01* X12233Y37574D01* X12236Y37582D01* X12245Y37608D01* X12256Y37633D01* X12269Y37657D01* X12284Y37679D01* X12285Y37680D01* Y37319D01* X12272Y37338D01* X12258Y37362D01* X12247Y37386D01* X12238Y37412D01* X12234Y37420D01* X12230Y37427D01* X12224Y37434D01* X12217Y37439D01* X12209Y37443D01* X12201Y37446D01* X12192Y37447D01* X12184Y37447D01* X12175Y37445D01* X12167Y37442D01* X12160Y37437D01* X12153Y37431D01* X12148Y37424D01* X12144Y37417D01* X12141Y37409D01* X12140Y37400D01* X12140Y37391D01* X12142Y37383D01* X12154Y37349D01* X12169Y37316D01* X12187Y37284D01* X12208Y37255D01* X12232Y37227D01* X12257Y37202D01* X12285Y37179D01* Y35804D01* X12272Y35793D01* X12247Y35767D01* X12224Y35739D01* X12204Y35709D01* X12186Y35677D01* X12172Y35644D01* X12160Y35610D01* X12158Y35601D01* X12158Y35593D01* X12159Y35584D01* X12162Y35576D01* X12167Y35568D01* X12172Y35561D01* X12179Y35556D01* X12186Y35551D01* X12194Y35548D01* X12203Y35546D01* X12212Y35546D01* X12220Y35547D01* X12228Y35550D01* X12236Y35555D01* X12243Y35560D01* X12249Y35567D01* X12253Y35574D01* X12256Y35582D01* X12265Y35608D01* X12276Y35633D01* X12285Y35650D01* Y35349D01* X12278Y35362D01* X12267Y35386D01* X12258Y35412D01* X12254Y35420D01* X12250Y35427D01* X12244Y35434D01* X12237Y35439D01* X12229Y35443D01* X12221Y35446D01* X12212Y35447D01* X12204Y35447D01* X12195Y35445D01* X12187Y35442D01* X12180Y35437D01* X12173Y35431D01* X12168Y35424D01* X12164Y35417D01* X12161Y35409D01* X12160Y35400D01* X12160Y35391D01* X12162Y35383D01* X12174Y35349D01* X12189Y35316D01* X12207Y35284D01* X12228Y35255D01* X12252Y35227D01* X12277Y35202D01* X12285Y35196D01* Y33785D01* X12267Y33767D01* X12244Y33739D01* X12224Y33709D01* X12206Y33677D01* X12192Y33644D01* X12180Y33610D01* X12178Y33601D01* X12178Y33593D01* X12179Y33584D01* X12182Y33576D01* X12187Y33568D01* X12192Y33561D01* X12199Y33556D01* X12206Y33551D01* X12214Y33548D01* X12223Y33546D01* X12232Y33546D01* X12240Y33547D01* X12248Y33550D01* X12256Y33555D01* X12263Y33560D01* X12269Y33567D01* X12273Y33574D01* X12276Y33582D01* X12285Y33608D01* X12285Y33609D01* Y33391D01* X12278Y33412D01* X12274Y33420D01* X12270Y33427D01* X12264Y33434D01* X12257Y33439D01* X12249Y33443D01* X12241Y33446D01* X12232Y33447D01* X12224Y33447D01* X12215Y33445D01* X12207Y33442D01* X12200Y33437D01* X12193Y33431D01* X12188Y33424D01* X12184Y33417D01* X12181Y33409D01* X12180Y33400D01* X12180Y33391D01* X12182Y33383D01* X12194Y33349D01* X12209Y33316D01* X12227Y33284D01* X12248Y33255D01* X12272Y33227D01* X12285Y33214D01* Y31765D01* X12264Y31739D01* X12244Y31709D01* X12226Y31677D01* X12212Y31644D01* X12200Y31610D01* X12198Y31601D01* X12198Y31593D01* X12199Y31584D01* X12202Y31576D01* X12207Y31568D01* X12212Y31561D01* X12219Y31556D01* X12226Y31551D01* X12234Y31548D01* X12243Y31546D01* X12252Y31546D01* X12260Y31547D01* X12268Y31550D01* X12276Y31555D01* X12283Y31560D01* X12285Y31563D01* Y31432D01* X12284Y31434D01* X12277Y31439D01* X12269Y31443D01* X12261Y31446D01* X12252Y31447D01* X12244Y31447D01* X12235Y31445D01* X12227Y31442D01* X12220Y31437D01* X12213Y31431D01* X12208Y31424D01* X12204Y31417D01* X12201Y31409D01* X12200Y31400D01* X12200Y31391D01* X12202Y31383D01* X12214Y31349D01* X12229Y31316D01* X12247Y31284D01* X12268Y31255D01* X12285Y31235D01* Y29740D01* X12284Y29739D01* X12264Y29709D01* X12246Y29677D01* X12232Y29644D01* X12220Y29610D01* X12218Y29601D01* X12218Y29593D01* X12219Y29584D01* X12222Y29576D01* X12227Y29568D01* X12232Y29561D01* X12239Y29556D01* X12246Y29551D01* X12254Y29548D01* X12263Y29546D01* X12272Y29546D01* X12280Y29547D01* X12285Y29549D01* Y29445D01* X12281Y29446D01* X12272Y29447D01* X12264Y29447D01* X12255Y29445D01* X12247Y29442D01* X12240Y29437D01* X12233Y29431D01* X12228Y29424D01* X12224Y29417D01* X12221Y29409D01* X12220Y29400D01* X12220Y29391D01* X12222Y29383D01* X12234Y29349D01* X12249Y29316D01* X12267Y29284D01* X12285Y29259D01* Y27711D01* X12284Y27709D01* X12266Y27677D01* X12252Y27644D01* X12240Y27610D01* X12238Y27601D01* X12238Y27593D01* X12239Y27584D01* X12242Y27576D01* X12247Y27568D01* X12252Y27561D01* X12259Y27556D01* X12266Y27551D01* X12274Y27548D01* X12283Y27546D01* X12285D01* Y27447D01* X12284Y27447D01* X12275Y27445D01* X12267Y27442D01* X12260Y27437D01* X12253Y27431D01* X12248Y27424D01* X12244Y27417D01* X12241Y27409D01* X12240Y27400D01* X12240Y27391D01* X12242Y27383D01* X12254Y27349D01* X12269Y27316D01* X12285Y27288D01* Y25675D01* X12272Y25644D01* X12260Y25610D01* X12258Y25601D01* X12258Y25593D01* X12259Y25584D01* X12262Y25576D01* X12267Y25568D01* X12272Y25561D01* X12279Y25556D01* X12285Y25552D01* Y25441D01* X12280Y25437D01* X12273Y25431D01* X12268Y25424D01* X12264Y25417D01* X12261Y25409D01* X12260Y25400D01* X12260Y25391D01* X12262Y25383D01* X12274Y25349D01* X12285Y25325D01* Y23625D01* X12280Y23610D01* X12278Y23601D01* X12278Y23593D01* X12279Y23584D01* X12282Y23576D01* X12285Y23571D01* Y23419D01* X12284Y23417D01* X12281Y23409D01* X12280Y23400D01* X12280Y23391D01* X12282Y23383D01* X12285Y23374D01* Y0D01* X11044D01* Y1133D01* X11068Y1144D01* X11100Y1162D01* X11129Y1183D01* X11157Y1207D01* X11182Y1232D01* X11205Y1260D01* X11225Y1290D01* X11243Y1322D01* X11257Y1355D01* X11269Y1389D01* X11271Y1398D01* X11271Y1407D01* X11270Y1415D01* X11267Y1423D01* X11262Y1431D01* X11257Y1438D01* X11250Y1444D01* X11243Y1448D01* X11235Y1451D01* X11226Y1453D01* X11217Y1453D01* X11209Y1452D01* X11201Y1449D01* X11193Y1445D01* X11186Y1439D01* X11180Y1433D01* X11176Y1425D01* X11173Y1417D01* X11164Y1391D01* X11153Y1366D01* X11140Y1343D01* X11125Y1320D01* X11108Y1299D01* X11089Y1280D01* X11068Y1262D01* X11046Y1247D01* X11044Y1246D01* Y1754D01* X11064Y1740D01* X11085Y1723D01* X11104Y1704D01* X11122Y1683D01* X11137Y1661D01* X11151Y1637D01* X11162Y1613D01* X11171Y1587D01* X11175Y1579D01* X11179Y1572D01* X11185Y1565D01* X11192Y1560D01* X11200Y1556D01* X11208Y1553D01* X11217Y1552D01* X11225Y1552D01* X11234Y1554D01* X11242Y1557D01* X11249Y1562D01* X11256Y1568D01* X11261Y1575D01* X11265Y1582D01* X11268Y1591D01* X11269Y1599D01* X11269Y1608D01* X11267Y1617D01* X11255Y1651D01* X11240Y1683D01* X11222Y1715D01* X11201Y1744D01* X11177Y1772D01* X11152Y1797D01* X11124Y1820D01* X11094Y1840D01* X11062Y1858D01* X11044Y1866D01* Y3142D01* X11048Y3144D01* X11080Y3162D01* X11109Y3183D01* X11137Y3207D01* X11162Y3232D01* X11185Y3260D01* X11205Y3290D01* X11223Y3322D01* X11237Y3355D01* X11249Y3389D01* X11251Y3398D01* X11251Y3407D01* X11250Y3415D01* X11247Y3423D01* X11242Y3431D01* X11237Y3438D01* X11230Y3444D01* X11223Y3448D01* X11215Y3451D01* X11206Y3453D01* X11197Y3453D01* X11189Y3452D01* X11181Y3449D01* X11173Y3445D01* X11166Y3439D01* X11160Y3433D01* X11156Y3425D01* X11153Y3417D01* X11144Y3391D01* X11133Y3366D01* X11120Y3343D01* X11105Y3320D01* X11088Y3299D01* X11069Y3280D01* X11048Y3262D01* X11044Y3259D01* Y3740D01* X11065Y3723D01* X11084Y3704D01* X11102Y3683D01* X11117Y3661D01* X11131Y3637D01* X11142Y3613D01* X11151Y3587D01* X11155Y3579D01* X11159Y3572D01* X11165Y3565D01* X11172Y3560D01* X11180Y3556D01* X11188Y3553D01* X11197Y3552D01* X11205Y3552D01* X11214Y3554D01* X11222Y3557D01* X11229Y3562D01* X11236Y3568D01* X11241Y3575D01* X11245Y3582D01* X11248Y3591D01* X11249Y3599D01* X11249Y3608D01* X11247Y3617D01* X11235Y3651D01* X11220Y3683D01* X11202Y3715D01* X11181Y3744D01* X11157Y3772D01* X11132Y3797D01* X11104Y3820D01* X11074Y3840D01* X11044Y3857D01* Y5153D01* X11060Y5162D01* X11089Y5183D01* X11117Y5207D01* X11142Y5232D01* X11165Y5260D01* X11185Y5290D01* X11203Y5322D01* X11217Y5355D01* X11229Y5389D01* X11231Y5398D01* X11231Y5407D01* X11230Y5415D01* X11227Y5423D01* X11222Y5431D01* X11217Y5438D01* X11210Y5444D01* X11203Y5448D01* X11195Y5451D01* X11186Y5453D01* X11177Y5453D01* X11169Y5452D01* X11161Y5449D01* X11153Y5445D01* X11146Y5439D01* X11140Y5433D01* X11136Y5425D01* X11133Y5417D01* X11124Y5391D01* X11113Y5366D01* X11100Y5343D01* X11085Y5320D01* X11068Y5299D01* X11049Y5280D01* X11044Y5276D01* Y5724D01* X11045Y5723D01* X11064Y5704D01* X11082Y5683D01* X11097Y5661D01* X11111Y5637D01* X11122Y5613D01* X11131Y5587D01* X11135Y5579D01* X11139Y5572D01* X11145Y5565D01* X11152Y5560D01* X11160Y5556D01* X11168Y5553D01* X11177Y5552D01* X11185Y5552D01* X11194Y5554D01* X11202Y5557D01* X11209Y5562D01* X11216Y5568D01* X11221Y5575D01* X11225Y5582D01* X11228Y5591D01* X11229Y5599D01* X11229Y5608D01* X11227Y5617D01* X11215Y5651D01* X11200Y5683D01* X11182Y5715D01* X11161Y5744D01* X11137Y5772D01* X11112Y5797D01* X11084Y5820D01* X11054Y5840D01* X11044Y5846D01* Y7165D01* X11069Y7183D01* X11097Y7207D01* X11122Y7232D01* X11145Y7260D01* X11165Y7290D01* X11183Y7322D01* X11197Y7355D01* X11209Y7389D01* X11211Y7398D01* X11211Y7407D01* X11210Y7415D01* X11207Y7423D01* X11202Y7431D01* X11197Y7438D01* X11190Y7444D01* X11183Y7448D01* X11175Y7451D01* X11166Y7453D01* X11157Y7453D01* X11149Y7452D01* X11141Y7449D01* X11133Y7445D01* X11126Y7439D01* X11120Y7433D01* X11116Y7425D01* X11113Y7417D01* X11104Y7391D01* X11093Y7366D01* X11080Y7343D01* X11065Y7320D01* X11048Y7299D01* X11044Y7295D01* Y7704D01* X11044Y7704D01* X11062Y7683D01* X11077Y7661D01* X11091Y7637D01* X11102Y7613D01* X11111Y7587D01* X11115Y7579D01* X11119Y7572D01* X11125Y7565D01* X11132Y7560D01* X11140Y7556D01* X11148Y7553D01* X11157Y7552D01* X11165Y7552D01* X11174Y7554D01* X11182Y7557D01* X11189Y7562D01* X11196Y7568D01* X11201Y7575D01* X11205Y7582D01* X11208Y7591D01* X11209Y7599D01* X11209Y7608D01* X11207Y7617D01* X11195Y7651D01* X11180Y7683D01* X11162Y7715D01* X11141Y7744D01* X11117Y7772D01* X11092Y7797D01* X11064Y7820D01* X11044Y7834D01* Y9180D01* X11049Y9183D01* X11077Y9207D01* X11102Y9232D01* X11125Y9260D01* X11145Y9290D01* X11163Y9322D01* X11177Y9355D01* X11189Y9389D01* X11191Y9398D01* X11191Y9407D01* X11190Y9415D01* X11187Y9423D01* X11182Y9431D01* X11177Y9438D01* X11170Y9444D01* X11163Y9448D01* X11155Y9451D01* X11146Y9453D01* X11137Y9453D01* X11129Y9452D01* X11121Y9449D01* X11113Y9445D01* X11106Y9439D01* X11100Y9433D01* X11096Y9425D01* X11093Y9417D01* X11084Y9391D01* X11073Y9366D01* X11060Y9343D01* X11045Y9320D01* X11044Y9319D01* Y9680D01* X11057Y9661D01* X11071Y9637D01* X11082Y9613D01* X11091Y9587D01* X11095Y9579D01* X11099Y9572D01* X11105Y9565D01* X11112Y9560D01* X11120Y9556D01* X11128Y9553D01* X11137Y9552D01* X11145Y9552D01* X11154Y9554D01* X11162Y9557D01* X11169Y9562D01* X11176Y9568D01* X11181Y9575D01* X11185Y9582D01* X11188Y9591D01* X11189Y9599D01* X11189Y9608D01* X11187Y9617D01* X11175Y9651D01* X11160Y9683D01* X11142Y9715D01* X11121Y9744D01* X11097Y9772D01* X11072Y9797D01* X11044Y9820D01* Y11196D01* X11057Y11207D01* X11082Y11232D01* X11105Y11260D01* X11125Y11290D01* X11143Y11322D01* X11157Y11355D01* X11169Y11389D01* X11171Y11398D01* X11171Y11407D01* X11170Y11415D01* X11167Y11423D01* X11162Y11431D01* X11157Y11438D01* X11150Y11444D01* X11143Y11448D01* X11135Y11451D01* X11126Y11453D01* X11117Y11453D01* X11109Y11452D01* X11101Y11449D01* X11093Y11445D01* X11086Y11439D01* X11080Y11433D01* X11076Y11425D01* X11073Y11417D01* X11064Y11391D01* X11053Y11366D01* X11044Y11350D01* Y11650D01* X11051Y11637D01* X11062Y11613D01* X11071Y11587D01* X11075Y11579D01* X11079Y11572D01* X11085Y11565D01* X11092Y11560D01* X11100Y11556D01* X11108Y11553D01* X11117Y11552D01* X11125Y11552D01* X11134Y11554D01* X11142Y11557D01* X11149Y11562D01* X11156Y11568D01* X11161Y11575D01* X11165Y11582D01* X11168Y11591D01* X11169Y11599D01* X11169Y11608D01* X11167Y11617D01* X11155Y11651D01* X11140Y11683D01* X11122Y11715D01* X11101Y11744D01* X11077Y11772D01* X11052Y11797D01* X11044Y11804D01* Y13214D01* X11062Y13232D01* X11085Y13260D01* X11105Y13290D01* X11123Y13322D01* X11137Y13355D01* X11149Y13389D01* X11151Y13398D01* X11151Y13407D01* X11150Y13415D01* X11147Y13423D01* X11142Y13431D01* X11137Y13438D01* X11130Y13444D01* X11123Y13448D01* X11115Y13451D01* X11106Y13453D01* X11097Y13453D01* X11089Y13452D01* X11081Y13449D01* X11073Y13445D01* X11066Y13439D01* X11060Y13433D01* X11056Y13425D01* X11053Y13417D01* X11044Y13391D01* X11044Y13391D01* Y13608D01* X11051Y13587D01* X11055Y13579D01* X11059Y13572D01* X11065Y13565D01* X11072Y13560D01* X11080Y13556D01* X11088Y13553D01* X11097Y13552D01* X11105Y13552D01* X11114Y13554D01* X11122Y13557D01* X11129Y13562D01* X11136Y13568D01* X11141Y13575D01* X11145Y13582D01* X11148Y13591D01* X11149Y13599D01* X11149Y13608D01* X11147Y13617D01* X11135Y13651D01* X11120Y13683D01* X11102Y13715D01* X11081Y13744D01* X11057Y13772D01* X11044Y13785D01* Y15235D01* X11065Y15260D01* X11085Y15290D01* X11103Y15322D01* X11117Y15355D01* X11129Y15389D01* X11131Y15398D01* X11131Y15407D01* X11130Y15415D01* X11127Y15423D01* X11122Y15431D01* X11117Y15438D01* X11110Y15444D01* X11103Y15448D01* X11095Y15451D01* X11086Y15453D01* X11077Y15453D01* X11069Y15452D01* X11061Y15449D01* X11053Y15445D01* X11046Y15439D01* X11044Y15437D01* Y15567D01* X11045Y15565D01* X11052Y15560D01* X11060Y15556D01* X11068Y15553D01* X11077Y15552D01* X11085Y15552D01* X11094Y15554D01* X11102Y15557D01* X11109Y15562D01* X11116Y15568D01* X11121Y15575D01* X11125Y15582D01* X11128Y15591D01* X11129Y15599D01* X11129Y15608D01* X11127Y15617D01* X11115Y15651D01* X11100Y15683D01* X11082Y15715D01* X11061Y15744D01* X11044Y15764D01* Y17259D01* X11045Y17260D01* X11065Y17290D01* X11083Y17322D01* X11097Y17355D01* X11109Y17389D01* X11111Y17398D01* X11111Y17407D01* X11110Y17415D01* X11107Y17423D01* X11102Y17431D01* X11097Y17438D01* X11090Y17444D01* X11083Y17448D01* X11075Y17451D01* X11066Y17453D01* X11057Y17453D01* X11049Y17452D01* X11044Y17450D01* Y17555D01* X11048Y17553D01* X11057Y17552D01* X11065Y17552D01* X11074Y17554D01* X11082Y17557D01* X11089Y17562D01* X11096Y17568D01* X11101Y17575D01* X11105Y17582D01* X11108Y17591D01* X11109Y17599D01* X11109Y17608D01* X11107Y17617D01* X11095Y17651D01* X11080Y17683D01* X11062Y17715D01* X11044Y17740D01* Y19288D01* X11045Y19290D01* X11063Y19322D01* X11077Y19355D01* X11089Y19389D01* X11091Y19398D01* X11091Y19407D01* X11090Y19415D01* X11087Y19423D01* X11082Y19431D01* X11077Y19438D01* X11070Y19444D01* X11063Y19448D01* X11055Y19451D01* X11046Y19453D01* X11044D01* Y19552D01* X11045D01* X11054Y19554D01* X11062Y19557D01* X11069Y19562D01* X11076Y19568D01* X11081Y19575D01* X11085Y19582D01* X11088Y19591D01* X11089Y19599D01* X11089Y19608D01* X11087Y19617D01* X11075Y19651D01* X11060Y19683D01* X11044Y19711D01* Y21324D01* X11057Y21355D01* X11069Y21389D01* X11071Y21398D01* X11071Y21407D01* X11070Y21415D01* X11067Y21423D01* X11062Y21431D01* X11057Y21438D01* X11050Y21444D01* X11044Y21447D01* Y21559D01* X11049Y21562D01* X11056Y21568D01* X11061Y21575D01* X11065Y21582D01* X11068Y21591D01* X11069Y21599D01* X11069Y21608D01* X11067Y21617D01* X11055Y21651D01* X11044Y21674D01* Y23374D01* X11049Y23389D01* X11051Y23398D01* X11051Y23407D01* X11050Y23415D01* X11047Y23423D01* X11044Y23428D01* Y23580D01* X11045Y23582D01* X11048Y23591D01* X11049Y23599D01* X11049Y23608D01* X11047Y23617D01* X11044Y23625D01* Y40000D01* G37* G36* X12285D02*X12485D01* Y35859D01* X12482Y35864D01* X12476Y35871D01* X12469Y35876D01* X12462Y35880D01* X12453Y35883D01* X12445Y35884D01* X12436Y35884D01* X12428Y35882D01* X12393Y35870D01* X12361Y35855D01* X12329Y35837D01* X12300Y35816D01* X12285Y35804D01* Y37179D01* X12285Y37179D01* X12315Y37159D01* X12347Y37141D01* X12380Y37127D01* X12414Y37115D01* X12423Y37113D01* X12432Y37113D01* X12440Y37115D01* X12448Y37117D01* X12456Y37122D01* X12463Y37127D01* X12469Y37134D01* X12473Y37141D01* X12476Y37149D01* X12478Y37158D01* X12478Y37167D01* X12477Y37175D01* X12474Y37183D01* X12470Y37191D01* X12464Y37198D01* X12457Y37204D01* X12450Y37208D01* X12442Y37211D01* X12416Y37220D01* X12391Y37231D01* X12368Y37244D01* X12345Y37259D01* X12324Y37276D01* X12305Y37295D01* X12287Y37316D01* X12285Y37319D01* Y37680D01* X12301Y37700D01* X12320Y37719D01* X12341Y37737D01* X12363Y37752D01* X12387Y37766D01* X12411Y37777D01* X12437Y37786D01* X12445Y37790D01* X12452Y37794D01* X12459Y37800D01* X12464Y37807D01* X12468Y37815D01* X12471Y37823D01* X12472Y37832D01* X12472Y37840D01* X12470Y37849D01* X12467Y37857D01* X12462Y37864D01* X12456Y37871D01* X12449Y37876D01* X12442Y37880D01* X12433Y37883D01* X12425Y37884D01* X12416Y37884D01* X12408Y37882D01* X12373Y37870D01* X12341Y37855D01* X12309Y37837D01* X12285Y37820D01* Y39166D01* X12295Y39159D01* X12327Y39141D01* X12360Y39127D01* X12394Y39115D01* X12403Y39113D01* X12412Y39113D01* X12420Y39115D01* X12428Y39117D01* X12436Y39122D01* X12443Y39127D01* X12449Y39134D01* X12453Y39141D01* X12456Y39149D01* X12458Y39158D01* X12458Y39167D01* X12457Y39175D01* X12454Y39183D01* X12450Y39191D01* X12444Y39198D01* X12437Y39204D01* X12430Y39208D01* X12422Y39211D01* X12396Y39220D01* X12371Y39231D01* X12348Y39244D01* X12325Y39259D01* X12304Y39276D01* X12285Y39295D01* Y39704D01* X12300Y39719D01* X12321Y39737D01* X12343Y39752D01* X12367Y39766D01* X12391Y39777D01* X12417Y39786D01* X12425Y39790D01* X12432Y39794D01* X12439Y39800D01* X12444Y39807D01* X12448Y39815D01* X12451Y39823D01* X12452Y39832D01* X12452Y39840D01* X12450Y39849D01* X12447Y39857D01* X12442Y39864D01* X12436Y39871D01* X12429Y39876D01* X12422Y39880D01* X12413Y39883D01* X12405Y39884D01* X12396Y39884D01* X12388Y39882D01* X12353Y39870D01* X12321Y39855D01* X12289Y39837D01* X12285Y39834D01* Y40000D01* G37* G36* Y35650D02*X12289Y35657D01* X12304Y35679D01* X12321Y35700D01* X12340Y35719D01* X12361Y35737D01* X12383Y35752D01* X12407Y35766D01* X12431Y35777D01* X12457Y35786D01* X12465Y35790D01* X12472Y35794D01* X12479Y35800D01* X12484Y35807D01* X12485Y35809D01* Y35197D01* X12484Y35198D01* X12477Y35204D01* X12470Y35208D01* X12462Y35211D01* X12436Y35220D01* X12411Y35231D01* X12388Y35244D01* X12365Y35259D01* X12344Y35276D01* X12325Y35295D01* X12307Y35316D01* X12292Y35338D01* X12285Y35349D01* Y35650D01* G37* G36* Y35196D02*X12305Y35179D01* X12335Y35159D01* X12367Y35141D01* X12400Y35127D01* X12434Y35115D01* X12443Y35113D01* X12452Y35113D01* X12460Y35115D01* X12468Y35117D01* X12476Y35122D01* X12483Y35127D01* X12485Y35130D01* Y33878D01* X12482Y33880D01* X12473Y33883D01* X12465Y33884D01* X12456Y33884D01* X12448Y33882D01* X12413Y33870D01* X12381Y33855D01* X12349Y33837D01* X12320Y33816D01* X12292Y33793D01* X12285Y33785D01* Y35196D01* G37* G36* Y33609D02*X12296Y33633D01* X12309Y33657D01* X12324Y33679D01* X12341Y33700D01* X12360Y33719D01* X12381Y33737D01* X12403Y33752D01* X12427Y33766D01* X12451Y33777D01* X12477Y33786D01* X12485Y33790D01* X12485Y33790D01* Y33210D01* X12482Y33211D01* X12456Y33220D01* X12431Y33231D01* X12408Y33244D01* X12385Y33259D01* X12364Y33276D01* X12345Y33295D01* X12327Y33316D01* X12312Y33338D01* X12298Y33362D01* X12287Y33386D01* X12285Y33391D01* Y33609D01* G37* G36* Y33214D02*X12297Y33202D01* X12325Y33179D01* X12355Y33159D01* X12387Y33141D01* X12420Y33127D01* X12454Y33115D01* X12463Y33113D01* X12472Y33113D01* X12480Y33115D01* X12485Y33116D01* Y31884D01* X12485Y31884D01* X12476Y31884D01* X12468Y31882D01* X12433Y31870D01* X12401Y31855D01* X12369Y31837D01* X12340Y31816D01* X12312Y31793D01* X12287Y31767D01* X12285Y31765D01* Y33214D01* G37* G36* Y31563D02*X12289Y31567D01* X12293Y31574D01* X12296Y31582D01* X12305Y31608D01* X12316Y31633D01* X12329Y31657D01* X12344Y31679D01* X12361Y31700D01* X12380Y31719D01* X12401Y31737D01* X12423Y31752D01* X12447Y31766D01* X12471Y31777D01* X12485Y31782D01* Y31217D01* X12476Y31220D01* X12451Y31231D01* X12428Y31244D01* X12405Y31259D01* X12384Y31276D01* X12365Y31295D01* X12347Y31316D01* X12332Y31338D01* X12318Y31362D01* X12307Y31386D01* X12298Y31412D01* X12294Y31420D01* X12290Y31427D01* X12285Y31432D01* Y31563D01* G37* G36* Y31235D02*X12292Y31227D01* X12317Y31202D01* X12345Y31179D01* X12375Y31159D01* X12407Y31141D01* X12440Y31127D01* X12474Y31115D01* X12483Y31113D01* X12485D01* Y29881D01* X12453Y29870D01* X12421Y29855D01* X12389Y29837D01* X12360Y29816D01* X12332Y29793D01* X12307Y29767D01* X12285Y29740D01* Y31235D01* G37* G36* Y29549D02*X12288Y29550D01* X12296Y29555D01* X12303Y29560D01* X12309Y29567D01* X12313Y29574D01* X12316Y29582D01* X12325Y29608D01* X12336Y29633D01* X12349Y29657D01* X12364Y29679D01* X12381Y29700D01* X12400Y29719D01* X12421Y29737D01* X12443Y29752D01* X12467Y29766D01* X12485Y29775D01* Y29225D01* X12471Y29231D01* X12448Y29244D01* X12425Y29259D01* X12404Y29276D01* X12385Y29295D01* X12367Y29316D01* X12352Y29338D01* X12338Y29362D01* X12327Y29386D01* X12318Y29412D01* X12314Y29420D01* X12310Y29427D01* X12304Y29434D01* X12297Y29439D01* X12289Y29443D01* X12285Y29445D01* Y29549D01* G37* G36* Y29259D02*X12288Y29255D01* X12312Y29227D01* X12337Y29202D01* X12365Y29179D01* X12395Y29159D01* X12427Y29141D01* X12460Y29127D01* X12485Y29118D01* Y27874D01* X12473Y27870D01* X12441Y27855D01* X12409Y27837D01* X12380Y27816D01* X12352Y27793D01* X12327Y27767D01* X12304Y27739D01* X12285Y27711D01* Y29259D01* G37* G36* Y27546D02*X12292Y27546D01* X12300Y27547D01* X12308Y27550D01* X12316Y27555D01* X12323Y27560D01* X12329Y27567D01* X12333Y27574D01* X12336Y27582D01* X12345Y27608D01* X12356Y27633D01* X12369Y27657D01* X12384Y27679D01* X12401Y27700D01* X12420Y27719D01* X12441Y27737D01* X12463Y27752D01* X12485Y27765D01* Y27234D01* X12468Y27244D01* X12445Y27259D01* X12424Y27276D01* X12405Y27295D01* X12387Y27316D01* X12372Y27338D01* X12358Y27362D01* X12347Y27386D01* X12338Y27412D01* X12334Y27420D01* X12330Y27427D01* X12324Y27434D01* X12317Y27439D01* X12309Y27443D01* X12301Y27446D01* X12292Y27447D01* X12285Y27447D01* Y27546D01* G37* G36* Y27288D02*X12287Y27284D01* X12308Y27255D01* X12332Y27227D01* X12357Y27202D01* X12385Y27179D01* X12415Y27159D01* X12447Y27141D01* X12480Y27127D01* X12485Y27125D01* Y25866D01* X12461Y25855D01* X12429Y25837D01* X12400Y25816D01* X12372Y25793D01* X12347Y25767D01* X12324Y25739D01* X12304Y25709D01* X12286Y25677D01* X12285Y25675D01* Y27288D01* G37* G36* Y25552D02*X12286Y25551D01* X12294Y25548D01* X12303Y25546D01* X12312Y25546D01* X12320Y25547D01* X12328Y25550D01* X12336Y25555D01* X12343Y25560D01* X12349Y25567D01* X12353Y25574D01* X12356Y25582D01* X12365Y25608D01* X12376Y25633D01* X12389Y25657D01* X12404Y25679D01* X12421Y25700D01* X12440Y25719D01* X12461Y25737D01* X12483Y25752D01* X12485Y25754D01* Y25246D01* X12465Y25259D01* X12444Y25276D01* X12425Y25295D01* X12407Y25316D01* X12392Y25338D01* X12378Y25362D01* X12367Y25386D01* X12358Y25412D01* X12354Y25420D01* X12350Y25427D01* X12344Y25434D01* X12337Y25439D01* X12329Y25443D01* X12321Y25446D01* X12312Y25447D01* X12304Y25447D01* X12295Y25445D01* X12287Y25442D01* X12285Y25441D01* Y25552D01* G37* G36* Y25325D02*X12289Y25316D01* X12307Y25284D01* X12328Y25255D01* X12352Y25227D01* X12377Y25202D01* X12405Y25179D01* X12435Y25159D01* X12467Y25141D01* X12485Y25133D01* Y23857D01* X12481Y23855D01* X12449Y23837D01* X12420Y23816D01* X12392Y23793D01* X12367Y23767D01* X12344Y23739D01* X12324Y23709D01* X12306Y23677D01* X12292Y23644D01* X12285Y23625D01* Y25325D01* G37* G36* Y23571D02*X12287Y23568D01* X12292Y23561D01* X12299Y23556D01* X12306Y23551D01* X12314Y23548D01* X12323Y23546D01* X12332Y23546D01* X12340Y23547D01* X12348Y23550D01* X12356Y23555D01* X12363Y23560D01* X12369Y23567D01* X12373Y23574D01* X12376Y23582D01* X12385Y23608D01* X12396Y23633D01* X12409Y23657D01* X12424Y23679D01* X12441Y23700D01* X12460Y23719D01* X12481Y23737D01* X12485Y23740D01* Y23259D01* X12485Y23259D01* X12464Y23276D01* X12445Y23295D01* X12427Y23316D01* X12412Y23338D01* X12398Y23362D01* X12387Y23386D01* X12378Y23412D01* X12374Y23420D01* X12370Y23427D01* X12364Y23434D01* X12357Y23439D01* X12349Y23443D01* X12341Y23446D01* X12332Y23447D01* X12324Y23447D01* X12315Y23445D01* X12307Y23442D01* X12300Y23437D01* X12293Y23431D01* X12288Y23424D01* X12285Y23419D01* Y23571D01* G37* G36* Y23374D02*X12294Y23349D01* X12309Y23316D01* X12327Y23284D01* X12348Y23255D01* X12372Y23227D01* X12397Y23202D01* X12425Y23179D01* X12455Y23159D01* X12485Y23142D01* Y21846D01* X12469Y21837D01* X12440Y21816D01* X12412Y21793D01* X12387Y21767D01* X12364Y21739D01* X12344Y21709D01* X12326Y21677D01* X12312Y21644D01* X12300Y21610D01* X12298Y21601D01* X12298Y21593D01* X12299Y21584D01* X12302Y21576D01* X12307Y21568D01* X12312Y21561D01* X12319Y21556D01* X12326Y21551D01* X12334Y21548D01* X12343Y21546D01* X12352Y21546D01* X12360Y21547D01* X12368Y21550D01* X12376Y21555D01* X12383Y21560D01* X12389Y21567D01* X12393Y21574D01* X12396Y21582D01* X12405Y21608D01* X12416Y21633D01* X12429Y21657D01* X12444Y21679D01* X12461Y21700D01* X12480Y21719D01* X12485Y21723D01* Y21276D01* X12484Y21276D01* X12465Y21295D01* X12447Y21316D01* X12432Y21338D01* X12418Y21362D01* X12407Y21386D01* X12398Y21412D01* X12394Y21420D01* X12390Y21427D01* X12384Y21434D01* X12377Y21439D01* X12369Y21443D01* X12361Y21446D01* X12352Y21447D01* X12344Y21447D01* X12335Y21445D01* X12327Y21442D01* X12320Y21437D01* X12313Y21431D01* X12308Y21424D01* X12304Y21417D01* X12301Y21409D01* X12300Y21400D01* X12300Y21391D01* X12302Y21383D01* X12314Y21349D01* X12329Y21316D01* X12347Y21284D01* X12368Y21255D01* X12392Y21227D01* X12417Y21202D01* X12445Y21179D01* X12475Y21159D01* X12485Y21153D01* Y19834D01* X12460Y19816D01* X12432Y19793D01* X12407Y19767D01* X12384Y19739D01* X12364Y19709D01* X12346Y19677D01* X12332Y19644D01* X12320Y19610D01* X12318Y19601D01* X12318Y19593D01* X12319Y19584D01* X12322Y19576D01* X12327Y19568D01* X12332Y19561D01* X12339Y19556D01* X12346Y19551D01* X12354Y19548D01* X12363Y19546D01* X12372Y19546D01* X12380Y19547D01* X12388Y19550D01* X12396Y19555D01* X12403Y19560D01* X12409Y19567D01* X12413Y19574D01* X12416Y19582D01* X12425Y19608D01* X12436Y19633D01* X12449Y19657D01* X12464Y19679D01* X12481Y19700D01* X12485Y19704D01* Y19295D01* X12485Y19295D01* X12467Y19316D01* X12452Y19338D01* X12438Y19362D01* X12427Y19386D01* X12418Y19412D01* X12414Y19420D01* X12410Y19427D01* X12404Y19434D01* X12397Y19439D01* X12389Y19443D01* X12381Y19446D01* X12372Y19447D01* X12364Y19447D01* X12355Y19445D01* X12347Y19442D01* X12340Y19437D01* X12333Y19431D01* X12328Y19424D01* X12324Y19417D01* X12321Y19409D01* X12320Y19400D01* X12320Y19391D01* X12322Y19383D01* X12334Y19349D01* X12349Y19316D01* X12367Y19284D01* X12388Y19255D01* X12412Y19227D01* X12437Y19202D01* X12465Y19179D01* X12485Y19166D01* Y17820D01* X12480Y17816D01* X12452Y17793D01* X12427Y17767D01* X12404Y17739D01* X12384Y17709D01* X12366Y17677D01* X12352Y17644D01* X12340Y17610D01* X12338Y17601D01* X12338Y17593D01* X12339Y17584D01* X12342Y17576D01* X12347Y17568D01* X12352Y17561D01* X12359Y17556D01* X12366Y17551D01* X12374Y17548D01* X12383Y17546D01* X12392Y17546D01* X12400Y17547D01* X12408Y17550D01* X12416Y17555D01* X12423Y17560D01* X12429Y17567D01* X12433Y17574D01* X12436Y17582D01* X12445Y17608D01* X12456Y17633D01* X12469Y17657D01* X12484Y17679D01* X12485Y17680D01* Y17319D01* X12472Y17338D01* X12458Y17362D01* X12447Y17386D01* X12438Y17412D01* X12434Y17420D01* X12430Y17427D01* X12424Y17434D01* X12417Y17439D01* X12409Y17443D01* X12401Y17446D01* X12392Y17447D01* X12384Y17447D01* X12375Y17445D01* X12367Y17442D01* X12360Y17437D01* X12353Y17431D01* X12348Y17424D01* X12344Y17417D01* X12341Y17409D01* X12340Y17400D01* X12340Y17391D01* X12342Y17383D01* X12354Y17349D01* X12369Y17316D01* X12387Y17284D01* X12408Y17255D01* X12432Y17227D01* X12457Y17202D01* X12485Y17179D01* Y15804D01* X12472Y15793D01* X12447Y15767D01* X12424Y15739D01* X12404Y15709D01* X12386Y15677D01* X12372Y15644D01* X12360Y15610D01* X12358Y15601D01* X12358Y15593D01* X12359Y15584D01* X12362Y15576D01* X12367Y15568D01* X12372Y15561D01* X12379Y15556D01* X12386Y15551D01* X12394Y15548D01* X12403Y15546D01* X12412Y15546D01* X12420Y15547D01* X12428Y15550D01* X12436Y15555D01* X12443Y15560D01* X12449Y15567D01* X12453Y15574D01* X12456Y15582D01* X12465Y15608D01* X12476Y15633D01* X12485Y15650D01* Y15349D01* X12478Y15362D01* X12467Y15386D01* X12458Y15412D01* X12454Y15420D01* X12450Y15427D01* X12444Y15434D01* X12437Y15439D01* X12429Y15443D01* X12421Y15446D01* X12412Y15447D01* X12404Y15447D01* X12395Y15445D01* X12387Y15442D01* X12380Y15437D01* X12373Y15431D01* X12368Y15424D01* X12364Y15417D01* X12361Y15409D01* X12360Y15400D01* X12360Y15391D01* X12362Y15383D01* X12374Y15349D01* X12389Y15316D01* X12407Y15284D01* X12428Y15255D01* X12452Y15227D01* X12477Y15202D01* X12485Y15196D01* Y13785D01* X12467Y13767D01* X12444Y13739D01* X12424Y13709D01* X12406Y13677D01* X12392Y13644D01* X12380Y13610D01* X12378Y13601D01* X12378Y13593D01* X12379Y13584D01* X12382Y13576D01* X12387Y13568D01* X12392Y13561D01* X12399Y13556D01* X12406Y13551D01* X12414Y13548D01* X12423Y13546D01* X12432Y13546D01* X12440Y13547D01* X12448Y13550D01* X12456Y13555D01* X12463Y13560D01* X12469Y13567D01* X12473Y13574D01* X12476Y13582D01* X12485Y13608D01* X12485Y13609D01* Y13391D01* X12478Y13412D01* X12474Y13420D01* X12470Y13427D01* X12464Y13434D01* X12457Y13439D01* X12449Y13443D01* X12441Y13446D01* X12432Y13447D01* X12424Y13447D01* X12415Y13445D01* X12407Y13442D01* X12400Y13437D01* X12393Y13431D01* X12388Y13424D01* X12384Y13417D01* X12381Y13409D01* X12380Y13400D01* X12380Y13391D01* X12382Y13383D01* X12394Y13349D01* X12409Y13316D01* X12427Y13284D01* X12448Y13255D01* X12472Y13227D01* X12485Y13214D01* Y11765D01* X12464Y11739D01* X12444Y11709D01* X12426Y11677D01* X12412Y11644D01* X12400Y11610D01* X12398Y11601D01* X12398Y11593D01* X12399Y11584D01* X12402Y11576D01* X12407Y11568D01* X12412Y11561D01* X12419Y11556D01* X12426Y11551D01* X12434Y11548D01* X12443Y11546D01* X12452Y11546D01* X12460Y11547D01* X12468Y11550D01* X12476Y11555D01* X12483Y11560D01* X12485Y11563D01* Y11432D01* X12484Y11434D01* X12477Y11439D01* X12469Y11443D01* X12461Y11446D01* X12452Y11447D01* X12444Y11447D01* X12435Y11445D01* X12427Y11442D01* X12420Y11437D01* X12413Y11431D01* X12408Y11424D01* X12404Y11417D01* X12401Y11409D01* X12400Y11400D01* X12400Y11391D01* X12402Y11383D01* X12414Y11349D01* X12429Y11316D01* X12447Y11284D01* X12468Y11255D01* X12485Y11235D01* Y9740D01* X12484Y9739D01* X12464Y9709D01* X12446Y9677D01* X12432Y9644D01* X12420Y9610D01* X12418Y9601D01* X12418Y9593D01* X12419Y9584D01* X12422Y9576D01* X12427Y9568D01* X12432Y9561D01* X12439Y9556D01* X12446Y9551D01* X12454Y9548D01* X12463Y9546D01* X12472Y9546D01* X12480Y9547D01* X12485Y9549D01* Y9445D01* X12481Y9446D01* X12472Y9447D01* X12464Y9447D01* X12455Y9445D01* X12447Y9442D01* X12440Y9437D01* X12433Y9431D01* X12428Y9424D01* X12424Y9417D01* X12421Y9409D01* X12420Y9400D01* X12420Y9391D01* X12422Y9383D01* X12434Y9349D01* X12449Y9316D01* X12467Y9284D01* X12485Y9259D01* Y7711D01* X12484Y7709D01* X12466Y7677D01* X12452Y7644D01* X12440Y7610D01* X12438Y7601D01* X12438Y7593D01* X12439Y7584D01* X12442Y7576D01* X12447Y7568D01* X12452Y7561D01* X12459Y7556D01* X12466Y7551D01* X12474Y7548D01* X12483Y7546D01* X12485D01* Y7447D01* X12484Y7447D01* X12475Y7445D01* X12467Y7442D01* X12460Y7437D01* X12453Y7431D01* X12448Y7424D01* X12444Y7417D01* X12441Y7409D01* X12440Y7400D01* X12440Y7391D01* X12442Y7383D01* X12454Y7349D01* X12469Y7316D01* X12485Y7288D01* Y5675D01* X12472Y5644D01* X12460Y5610D01* X12458Y5601D01* X12458Y5593D01* X12459Y5584D01* X12462Y5576D01* X12467Y5568D01* X12472Y5561D01* X12479Y5556D01* X12485Y5552D01* Y5441D01* X12480Y5437D01* X12473Y5431D01* X12468Y5424D01* X12464Y5417D01* X12461Y5409D01* X12460Y5400D01* X12460Y5391D01* X12462Y5383D01* X12474Y5349D01* X12485Y5325D01* Y3625D01* X12480Y3610D01* X12478Y3601D01* X12478Y3593D01* X12479Y3584D01* X12482Y3576D01* X12485Y3571D01* Y3419D01* X12484Y3417D01* X12481Y3409D01* X12480Y3400D01* X12480Y3391D01* X12482Y3383D01* X12485Y3374D01* Y0D01* X12285D01* Y23374D01* G37* G36* X12485Y40000D02*X12665D01* Y39865D01* X12649Y39873D01* X12615Y39884D01* X12606Y39886D01* X12597Y39886D01* X12589Y39885D01* X12581Y39882D01* X12573Y39878D01* X12566Y39872D01* X12560Y39865D01* X12556Y39858D01* X12553Y39850D01* X12551Y39841D01* X12551Y39833D01* X12552Y39824D01* X12555Y39816D01* X12559Y39808D01* X12565Y39801D01* X12572Y39796D01* X12579Y39791D01* X12587Y39788D01* X12613Y39779D01* X12638Y39768D01* X12661Y39755D01* X12665Y39753D01* Y39246D01* X12642Y39233D01* X12618Y39222D01* X12592Y39213D01* X12584Y39209D01* X12577Y39205D01* X12570Y39199D01* X12565Y39192D01* X12561Y39184D01* X12558Y39176D01* X12557Y39167D01* X12557Y39159D01* X12559Y39150D01* X12562Y39142D01* X12567Y39135D01* X12573Y39128D01* X12580Y39123D01* X12587Y39119D01* X12596Y39116D01* X12604Y39115D01* X12613Y39115D01* X12621Y39117D01* X12656Y39129D01* X12665Y39134D01* Y37874D01* X12635Y37884D01* X12626Y37886D01* X12617Y37886D01* X12609Y37885D01* X12601Y37882D01* X12593Y37878D01* X12586Y37872D01* X12580Y37865D01* X12576Y37858D01* X12573Y37850D01* X12571Y37841D01* X12571Y37833D01* X12572Y37824D01* X12575Y37816D01* X12579Y37808D01* X12585Y37801D01* X12592Y37796D01* X12599Y37791D01* X12607Y37788D01* X12633Y37779D01* X12658Y37768D01* X12665Y37764D01* Y37235D01* X12662Y37233D01* X12638Y37222D01* X12612Y37213D01* X12604Y37209D01* X12597Y37205D01* X12590Y37199D01* X12585Y37192D01* X12581Y37184D01* X12578Y37176D01* X12577Y37167D01* X12577Y37159D01* X12579Y37150D01* X12582Y37142D01* X12587Y37135D01* X12593Y37128D01* X12600Y37123D01* X12607Y37119D01* X12616Y37116D01* X12624Y37115D01* X12633Y37115D01* X12641Y37117D01* X12665Y37126D01* Y35881D01* X12655Y35884D01* X12646Y35886D01* X12637Y35886D01* X12629Y35885D01* X12621Y35882D01* X12613Y35878D01* X12606Y35872D01* X12600Y35865D01* X12596Y35858D01* X12593Y35850D01* X12591Y35841D01* X12591Y35833D01* X12592Y35824D01* X12595Y35816D01* X12599Y35808D01* X12605Y35801D01* X12612Y35796D01* X12619Y35791D01* X12627Y35788D01* X12653Y35779D01* X12665Y35774D01* Y35225D01* X12658Y35222D01* X12632Y35213D01* X12624Y35209D01* X12617Y35205D01* X12610Y35199D01* X12605Y35192D01* X12601Y35184D01* X12598Y35176D01* X12597Y35167D01* X12597Y35159D01* X12599Y35150D01* X12602Y35142D01* X12607Y35135D01* X12613Y35128D01* X12620Y35123D01* X12627Y35119D01* X12636Y35116D01* X12644Y35115D01* X12653Y35115D01* X12661Y35117D01* X12665Y35118D01* Y33886D01* X12657Y33886D01* X12649Y33885D01* X12641Y33882D01* X12633Y33878D01* X12626Y33872D01* X12620Y33865D01* X12616Y33858D01* X12613Y33850D01* X12611Y33841D01* X12611Y33833D01* X12612Y33824D01* X12615Y33816D01* X12619Y33808D01* X12625Y33801D01* X12632Y33796D01* X12639Y33791D01* X12647Y33788D01* X12665Y33782D01* Y33217D01* X12652Y33213D01* X12644Y33209D01* X12637Y33205D01* X12630Y33199D01* X12625Y33192D01* X12621Y33184D01* X12618Y33176D01* X12617Y33167D01* X12617Y33159D01* X12619Y33150D01* X12622Y33142D01* X12627Y33135D01* X12633Y33128D01* X12640Y33123D01* X12647Y33119D01* X12656Y33116D01* X12664Y33115D01* X12665D01* Y31883D01* X12661Y31882D01* X12653Y31878D01* X12646Y31872D01* X12640Y31865D01* X12636Y31858D01* X12633Y31850D01* X12631Y31841D01* X12631Y31833D01* X12632Y31824D01* X12635Y31816D01* X12639Y31808D01* X12645Y31801D01* X12652Y31796D01* X12659Y31791D01* X12665Y31789D01* Y31210D01* X12664Y31209D01* X12657Y31205D01* X12650Y31199D01* X12645Y31192D01* X12641Y31184D01* X12638Y31176D01* X12637Y31167D01* X12637Y31159D01* X12639Y31150D01* X12642Y31142D01* X12647Y31135D01* X12653Y31128D01* X12660Y31123D01* X12665Y31120D01* Y29871D01* X12660Y29865D01* X12656Y29858D01* X12653Y29850D01* X12651Y29841D01* X12651Y29833D01* X12652Y29824D01* X12655Y29816D01* X12659Y29808D01* X12665Y29801D01* X12665Y29801D01* Y29192D01* X12665Y29192D01* X12661Y29184D01* X12658Y29176D01* X12657Y29167D01* X12657Y29159D01* X12659Y29150D01* X12662Y29142D01* X12665Y29138D01* Y17859D01* X12662Y17864D01* X12656Y17871D01* X12649Y17876D01* X12642Y17880D01* X12633Y17883D01* X12625Y17884D01* X12616Y17884D01* X12608Y17882D01* X12573Y17870D01* X12541Y17855D01* X12509Y17837D01* X12485Y17820D01* Y19166D01* X12495Y19159D01* X12527Y19141D01* X12560Y19127D01* X12594Y19115D01* X12603Y19113D01* X12612Y19113D01* X12620Y19115D01* X12628Y19117D01* X12636Y19122D01* X12643Y19127D01* X12649Y19134D01* X12653Y19141D01* X12656Y19149D01* X12658Y19158D01* X12658Y19167D01* X12657Y19175D01* X12654Y19183D01* X12650Y19191D01* X12644Y19198D01* X12637Y19204D01* X12630Y19208D01* X12622Y19211D01* X12596Y19220D01* X12571Y19231D01* X12548Y19244D01* X12525Y19259D01* X12504Y19276D01* X12485Y19295D01* Y19704D01* X12500Y19719D01* X12521Y19737D01* X12543Y19752D01* X12567Y19766D01* X12591Y19777D01* X12617Y19786D01* X12625Y19790D01* X12632Y19794D01* X12639Y19800D01* X12644Y19807D01* X12648Y19815D01* X12651Y19823D01* X12652Y19832D01* X12652Y19840D01* X12650Y19849D01* X12647Y19857D01* X12642Y19864D01* X12636Y19871D01* X12629Y19876D01* X12622Y19880D01* X12613Y19883D01* X12605Y19884D01* X12596Y19884D01* X12588Y19882D01* X12553Y19870D01* X12521Y19855D01* X12489Y19837D01* X12485Y19834D01* Y21153D01* X12507Y21141D01* X12540Y21127D01* X12574Y21115D01* X12583Y21113D01* X12592Y21113D01* X12600Y21115D01* X12608Y21117D01* X12616Y21122D01* X12623Y21127D01* X12629Y21134D01* X12633Y21141D01* X12636Y21149D01* X12638Y21158D01* X12638Y21167D01* X12637Y21175D01* X12634Y21183D01* X12630Y21191D01* X12624Y21198D01* X12617Y21204D01* X12610Y21208D01* X12602Y21211D01* X12576Y21220D01* X12551Y21231D01* X12528Y21244D01* X12505Y21259D01* X12485Y21276D01* Y21723D01* X12501Y21737D01* X12523Y21752D01* X12547Y21766D01* X12571Y21777D01* X12597Y21786D01* X12605Y21790D01* X12612Y21794D01* X12619Y21800D01* X12624Y21807D01* X12628Y21815D01* X12631Y21823D01* X12632Y21832D01* X12632Y21840D01* X12630Y21849D01* X12627Y21857D01* X12622Y21864D01* X12616Y21871D01* X12609Y21876D01* X12602Y21880D01* X12593Y21883D01* X12585Y21884D01* X12576Y21884D01* X12568Y21882D01* X12533Y21870D01* X12501Y21855D01* X12485Y21846D01* Y23142D01* X12487Y23141D01* X12520Y23127D01* X12554Y23115D01* X12563Y23113D01* X12572Y23113D01* X12580Y23115D01* X12588Y23117D01* X12596Y23122D01* X12603Y23127D01* X12609Y23134D01* X12613Y23141D01* X12616Y23149D01* X12618Y23158D01* X12618Y23167D01* X12617Y23175D01* X12614Y23183D01* X12610Y23191D01* X12604Y23198D01* X12597Y23204D01* X12590Y23208D01* X12582Y23211D01* X12556Y23220D01* X12531Y23231D01* X12508Y23244D01* X12485Y23259D01* Y23740D01* X12503Y23752D01* X12527Y23766D01* X12551Y23777D01* X12577Y23786D01* X12585Y23790D01* X12592Y23794D01* X12599Y23800D01* X12604Y23807D01* X12608Y23815D01* X12611Y23823D01* X12612Y23832D01* X12612Y23840D01* X12610Y23849D01* X12607Y23857D01* X12602Y23864D01* X12596Y23871D01* X12589Y23876D01* X12582Y23880D01* X12573Y23883D01* X12565Y23884D01* X12556Y23884D01* X12548Y23882D01* X12513Y23870D01* X12485Y23857D01* Y25133D01* X12500Y25127D01* X12534Y25115D01* X12543Y25113D01* X12552Y25113D01* X12560Y25115D01* X12568Y25117D01* X12576Y25122D01* X12583Y25127D01* X12589Y25134D01* X12593Y25141D01* X12596Y25149D01* X12598Y25158D01* X12598Y25167D01* X12597Y25175D01* X12594Y25183D01* X12590Y25191D01* X12584Y25198D01* X12577Y25204D01* X12570Y25208D01* X12562Y25211D01* X12536Y25220D01* X12511Y25231D01* X12488Y25244D01* X12485Y25246D01* Y25754D01* X12507Y25766D01* X12531Y25777D01* X12557Y25786D01* X12565Y25790D01* X12572Y25794D01* X12579Y25800D01* X12584Y25807D01* X12588Y25815D01* X12591Y25823D01* X12592Y25832D01* X12592Y25840D01* X12590Y25849D01* X12587Y25857D01* X12582Y25864D01* X12576Y25871D01* X12569Y25876D01* X12562Y25880D01* X12553Y25883D01* X12545Y25884D01* X12536Y25884D01* X12528Y25882D01* X12493Y25870D01* X12485Y25866D01* Y27125D01* X12514Y27115D01* X12523Y27113D01* X12532Y27113D01* X12540Y27115D01* X12548Y27117D01* X12556Y27122D01* X12563Y27127D01* X12569Y27134D01* X12573Y27141D01* X12576Y27149D01* X12578Y27158D01* X12578Y27167D01* X12577Y27175D01* X12574Y27183D01* X12570Y27191D01* X12564Y27198D01* X12557Y27204D01* X12550Y27208D01* X12542Y27211D01* X12516Y27220D01* X12491Y27231D01* X12485Y27234D01* Y27765D01* X12487Y27766D01* X12511Y27777D01* X12537Y27786D01* X12545Y27790D01* X12552Y27794D01* X12559Y27800D01* X12564Y27807D01* X12568Y27815D01* X12571Y27823D01* X12572Y27832D01* X12572Y27840D01* X12570Y27849D01* X12567Y27857D01* X12562Y27864D01* X12556Y27871D01* X12549Y27876D01* X12542Y27880D01* X12533Y27883D01* X12525Y27884D01* X12516Y27884D01* X12508Y27882D01* X12485Y27874D01* Y29118D01* X12494Y29115D01* X12503Y29113D01* X12512Y29113D01* X12520Y29115D01* X12528Y29117D01* X12536Y29122D01* X12543Y29127D01* X12549Y29134D01* X12553Y29141D01* X12556Y29149D01* X12558Y29158D01* X12558Y29167D01* X12557Y29175D01* X12554Y29183D01* X12550Y29191D01* X12544Y29198D01* X12537Y29204D01* X12530Y29208D01* X12522Y29211D01* X12496Y29220D01* X12485Y29225D01* Y29775D01* X12491Y29777D01* X12517Y29786D01* X12525Y29790D01* X12532Y29794D01* X12539Y29800D01* X12544Y29807D01* X12548Y29815D01* X12551Y29823D01* X12552Y29832D01* X12552Y29840D01* X12550Y29849D01* X12547Y29857D01* X12542Y29864D01* X12536Y29871D01* X12529Y29876D01* X12522Y29880D01* X12513Y29883D01* X12505Y29884D01* X12496Y29884D01* X12488Y29882D01* X12485Y29881D01* Y31113D01* X12492Y31113D01* X12500Y31115D01* X12508Y31117D01* X12516Y31122D01* X12523Y31127D01* X12529Y31134D01* X12533Y31141D01* X12536Y31149D01* X12538Y31158D01* X12538Y31167D01* X12537Y31175D01* X12534Y31183D01* X12530Y31191D01* X12524Y31198D01* X12517Y31204D01* X12510Y31208D01* X12502Y31211D01* X12485Y31217D01* Y31782D01* X12497Y31786D01* X12505Y31790D01* X12512Y31794D01* X12519Y31800D01* X12524Y31807D01* X12528Y31815D01* X12531Y31823D01* X12532Y31832D01* X12532Y31840D01* X12530Y31849D01* X12527Y31857D01* X12522Y31864D01* X12516Y31871D01* X12509Y31876D01* X12502Y31880D01* X12493Y31883D01* X12485Y31884D01* Y33116D01* X12488Y33117D01* X12496Y33122D01* X12503Y33127D01* X12509Y33134D01* X12513Y33141D01* X12516Y33149D01* X12518Y33158D01* X12518Y33167D01* X12517Y33175D01* X12514Y33183D01* X12510Y33191D01* X12504Y33198D01* X12497Y33204D01* X12490Y33208D01* X12485Y33210D01* Y33790D01* X12492Y33794D01* X12499Y33800D01* X12504Y33807D01* X12508Y33815D01* X12511Y33823D01* X12512Y33832D01* X12512Y33840D01* X12510Y33849D01* X12507Y33857D01* X12502Y33864D01* X12496Y33871D01* X12489Y33876D01* X12485Y33878D01* Y35130D01* X12489Y35134D01* X12493Y35141D01* X12496Y35149D01* X12498Y35158D01* X12498Y35167D01* X12497Y35175D01* X12494Y35183D01* X12490Y35191D01* X12485Y35197D01* Y35809D01* X12488Y35815D01* X12491Y35823D01* X12492Y35832D01* X12492Y35840D01* X12490Y35849D01* X12487Y35857D01* X12485Y35859D01* Y40000D01* G37* G36* X12665Y0D02*X12485D01* Y3374D01* X12494Y3349D01* X12509Y3316D01* X12527Y3284D01* X12548Y3255D01* X12572Y3227D01* X12597Y3202D01* X12625Y3179D01* X12655Y3159D01* X12665Y3153D01* Y1834D01* X12640Y1816D01* X12612Y1793D01* X12587Y1767D01* X12564Y1739D01* X12544Y1709D01* X12526Y1677D01* X12512Y1644D01* X12500Y1610D01* X12498Y1601D01* X12498Y1593D01* X12499Y1584D01* X12502Y1576D01* X12507Y1568D01* X12512Y1561D01* X12519Y1556D01* X12526Y1551D01* X12534Y1548D01* X12543Y1546D01* X12552Y1546D01* X12560Y1547D01* X12568Y1550D01* X12576Y1555D01* X12583Y1560D01* X12589Y1567D01* X12593Y1574D01* X12596Y1582D01* X12605Y1608D01* X12616Y1633D01* X12629Y1657D01* X12644Y1679D01* X12661Y1700D01* X12665Y1704D01* Y1295D01* X12665Y1295D01* X12647Y1316D01* X12632Y1338D01* X12618Y1362D01* X12607Y1386D01* X12598Y1412D01* X12594Y1420D01* X12590Y1427D01* X12584Y1434D01* X12577Y1439D01* X12569Y1443D01* X12561Y1446D01* X12552Y1447D01* X12544Y1447D01* X12535Y1445D01* X12527Y1442D01* X12520Y1437D01* X12513Y1431D01* X12508Y1424D01* X12504Y1417D01* X12501Y1409D01* X12500Y1400D01* X12500Y1391D01* X12502Y1383D01* X12514Y1349D01* X12529Y1316D01* X12547Y1284D01* X12568Y1255D01* X12592Y1227D01* X12617Y1202D01* X12645Y1179D01* X12665Y1166D01* Y0D01* G37* G36* Y3276D02*X12664Y3276D01* X12645Y3295D01* X12627Y3316D01* X12612Y3338D01* X12598Y3362D01* X12587Y3386D01* X12578Y3412D01* X12574Y3420D01* X12570Y3427D01* X12564Y3434D01* X12557Y3439D01* X12549Y3443D01* X12541Y3446D01* X12532Y3447D01* X12524Y3447D01* X12515Y3445D01* X12507Y3442D01* X12500Y3437D01* X12493Y3431D01* X12488Y3424D01* X12485Y3419D01* Y3571D01* X12487Y3568D01* X12492Y3561D01* X12499Y3556D01* X12506Y3551D01* X12514Y3548D01* X12523Y3546D01* X12532Y3546D01* X12540Y3547D01* X12548Y3550D01* X12556Y3555D01* X12563Y3560D01* X12569Y3567D01* X12573Y3574D01* X12576Y3582D01* X12585Y3608D01* X12596Y3633D01* X12609Y3657D01* X12624Y3679D01* X12641Y3700D01* X12660Y3719D01* X12665Y3723D01* Y3276D01* G37* G36* Y3846D02*X12649Y3837D01* X12620Y3816D01* X12592Y3793D01* X12567Y3767D01* X12544Y3739D01* X12524Y3709D01* X12506Y3677D01* X12492Y3644D01* X12485Y3625D01* Y5325D01* X12489Y5316D01* X12507Y5284D01* X12528Y5255D01* X12552Y5227D01* X12577Y5202D01* X12605Y5179D01* X12635Y5159D01* X12665Y5142D01* Y3846D01* G37* G36* Y5259D02*X12665Y5259D01* X12644Y5276D01* X12625Y5295D01* X12607Y5316D01* X12592Y5338D01* X12578Y5362D01* X12567Y5386D01* X12558Y5412D01* X12554Y5420D01* X12550Y5427D01* X12544Y5434D01* X12537Y5439D01* X12529Y5443D01* X12521Y5446D01* X12512Y5447D01* X12504Y5447D01* X12495Y5445D01* X12487Y5442D01* X12485Y5441D01* Y5552D01* X12486Y5551D01* X12494Y5548D01* X12503Y5546D01* X12512Y5546D01* X12520Y5547D01* X12528Y5550D01* X12536Y5555D01* X12543Y5560D01* X12549Y5567D01* X12553Y5574D01* X12556Y5582D01* X12565Y5608D01* X12576Y5633D01* X12589Y5657D01* X12604Y5679D01* X12621Y5700D01* X12640Y5719D01* X12661Y5737D01* X12665Y5740D01* Y5259D01* G37* G36* Y5857D02*X12661Y5855D01* X12629Y5837D01* X12600Y5816D01* X12572Y5793D01* X12547Y5767D01* X12524Y5739D01* X12504Y5709D01* X12486Y5677D01* X12485Y5675D01* Y7288D01* X12487Y7284D01* X12508Y7255D01* X12532Y7227D01* X12557Y7202D01* X12585Y7179D01* X12615Y7159D01* X12647Y7141D01* X12665Y7133D01* Y5857D01* G37* G36* Y7246D02*X12645Y7259D01* X12624Y7276D01* X12605Y7295D01* X12587Y7316D01* X12572Y7338D01* X12558Y7362D01* X12547Y7386D01* X12538Y7412D01* X12534Y7420D01* X12530Y7427D01* X12524Y7434D01* X12517Y7439D01* X12509Y7443D01* X12501Y7446D01* X12492Y7447D01* X12485Y7447D01* Y7546D01* X12492Y7546D01* X12500Y7547D01* X12508Y7550D01* X12516Y7555D01* X12523Y7560D01* X12529Y7567D01* X12533Y7574D01* X12536Y7582D01* X12545Y7608D01* X12556Y7633D01* X12569Y7657D01* X12584Y7679D01* X12601Y7700D01* X12620Y7719D01* X12641Y7737D01* X12663Y7752D01* X12665Y7754D01* Y7246D01* G37* G36* Y7866D02*X12641Y7855D01* X12609Y7837D01* X12580Y7816D01* X12552Y7793D01* X12527Y7767D01* X12504Y7739D01* X12485Y7711D01* Y9259D01* X12488Y9255D01* X12512Y9227D01* X12537Y9202D01* X12565Y9179D01* X12595Y9159D01* X12627Y9141D01* X12660Y9127D01* X12665Y9125D01* Y7866D01* G37* G36* Y9234D02*X12648Y9244D01* X12625Y9259D01* X12604Y9276D01* X12585Y9295D01* X12567Y9316D01* X12552Y9338D01* X12538Y9362D01* X12527Y9386D01* X12518Y9412D01* X12514Y9420D01* X12510Y9427D01* X12504Y9434D01* X12497Y9439D01* X12489Y9443D01* X12485Y9445D01* Y9549D01* X12488Y9550D01* X12496Y9555D01* X12503Y9560D01* X12509Y9567D01* X12513Y9574D01* X12516Y9582D01* X12525Y9608D01* X12536Y9633D01* X12549Y9657D01* X12564Y9679D01* X12581Y9700D01* X12600Y9719D01* X12621Y9737D01* X12643Y9752D01* X12665Y9765D01* Y9234D01* G37* G36* Y9874D02*X12653Y9870D01* X12621Y9855D01* X12589Y9837D01* X12560Y9816D01* X12532Y9793D01* X12507Y9767D01* X12485Y9740D01* Y11235D01* X12492Y11227D01* X12517Y11202D01* X12545Y11179D01* X12575Y11159D01* X12607Y11141D01* X12640Y11127D01* X12665Y11118D01* Y9874D01* G37* G36* Y11225D02*X12651Y11231D01* X12628Y11244D01* X12605Y11259D01* X12584Y11276D01* X12565Y11295D01* X12547Y11316D01* X12532Y11338D01* X12518Y11362D01* X12507Y11386D01* X12498Y11412D01* X12494Y11420D01* X12490Y11427D01* X12485Y11432D01* Y11563D01* X12489Y11567D01* X12493Y11574D01* X12496Y11582D01* X12505Y11608D01* X12516Y11633D01* X12529Y11657D01* X12544Y11679D01* X12561Y11700D01* X12580Y11719D01* X12601Y11737D01* X12623Y11752D01* X12647Y11766D01* X12665Y11775D01* Y11225D01* G37* G36* Y11881D02*X12633Y11870D01* X12601Y11855D01* X12569Y11837D01* X12540Y11816D01* X12512Y11793D01* X12487Y11767D01* X12485Y11765D01* Y13214D01* X12497Y13202D01* X12525Y13179D01* X12555Y13159D01* X12587Y13141D01* X12620Y13127D01* X12654Y13115D01* X12663Y13113D01* X12665D01* Y11881D01* G37* G36* Y13217D02*X12656Y13220D01* X12631Y13231D01* X12608Y13244D01* X12585Y13259D01* X12564Y13276D01* X12545Y13295D01* X12527Y13316D01* X12512Y13338D01* X12498Y13362D01* X12487Y13386D01* X12485Y13391D01* Y13609D01* X12496Y13633D01* X12509Y13657D01* X12524Y13679D01* X12541Y13700D01* X12560Y13719D01* X12581Y13737D01* X12603Y13752D01* X12627Y13766D01* X12651Y13777D01* X12665Y13782D01* Y13217D01* G37* G36* Y13884D02*X12665Y13884D01* X12656Y13884D01* X12648Y13882D01* X12613Y13870D01* X12581Y13855D01* X12549Y13837D01* X12520Y13816D01* X12492Y13793D01* X12485Y13785D01* Y15196D01* X12505Y15179D01* X12535Y15159D01* X12567Y15141D01* X12600Y15127D01* X12634Y15115D01* X12643Y15113D01* X12652Y15113D01* X12660Y15115D01* X12665Y15116D01* Y13884D01* G37* G36* Y15210D02*X12662Y15211D01* X12636Y15220D01* X12611Y15231D01* X12588Y15244D01* X12565Y15259D01* X12544Y15276D01* X12525Y15295D01* X12507Y15316D01* X12492Y15338D01* X12485Y15349D01* Y15650D01* X12489Y15657D01* X12504Y15679D01* X12521Y15700D01* X12540Y15719D01* X12561Y15737D01* X12583Y15752D01* X12607Y15766D01* X12631Y15777D01* X12657Y15786D01* X12665Y15790D01* X12665Y15790D01* Y15210D01* G37* G36* Y15878D02*X12662Y15880D01* X12653Y15883D01* X12645Y15884D01* X12636Y15884D01* X12628Y15882D01* X12593Y15870D01* X12561Y15855D01* X12529Y15837D01* X12500Y15816D01* X12485Y15804D01* Y17179D01* X12485Y17179D01* X12515Y17159D01* X12547Y17141D01* X12580Y17127D01* X12614Y17115D01* X12623Y17113D01* X12632Y17113D01* X12640Y17115D01* X12648Y17117D01* X12656Y17122D01* X12663Y17127D01* X12665Y17130D01* Y15878D01* G37* G36* Y17197D02*X12664Y17198D01* X12657Y17204D01* X12650Y17208D01* X12642Y17211D01* X12616Y17220D01* X12591Y17231D01* X12568Y17244D01* X12545Y17259D01* X12524Y17276D01* X12505Y17295D01* X12487Y17316D01* X12485Y17319D01* Y17680D01* X12501Y17700D01* X12520Y17719D01* X12541Y17737D01* X12563Y17752D01* X12587Y17766D01* X12611Y17777D01* X12637Y17786D01* X12645Y17790D01* X12652Y17794D01* X12659Y17800D01* X12664Y17807D01* X12665Y17809D01* Y17197D01* G37* G36* Y40000D02*X12924D01* Y35625D01* X12915Y35651D01* X12900Y35683D01* X12882Y35715D01* X12861Y35744D01* X12837Y35772D01* X12812Y35797D01* X12784Y35820D01* X12754Y35840D01* X12722Y35858D01* X12689Y35873D01* X12665Y35881D01* Y37126D01* X12676Y37129D01* X12708Y37144D01* X12740Y37162D01* X12769Y37183D01* X12797Y37207D01* X12822Y37232D01* X12845Y37260D01* X12865Y37290D01* X12883Y37322D01* X12897Y37355D01* X12909Y37389D01* X12911Y37398D01* X12911Y37407D01* X12910Y37415D01* X12907Y37423D01* X12902Y37431D01* X12897Y37438D01* X12890Y37444D01* X12883Y37448D01* X12875Y37451D01* X12866Y37453D01* X12857Y37453D01* X12849Y37452D01* X12841Y37449D01* X12833Y37445D01* X12826Y37439D01* X12820Y37433D01* X12816Y37425D01* X12813Y37417D01* X12804Y37391D01* X12793Y37366D01* X12780Y37343D01* X12765Y37320D01* X12748Y37299D01* X12729Y37280D01* X12708Y37262D01* X12686Y37247D01* X12665Y37235D01* Y37764D01* X12681Y37755D01* X12704Y37740D01* X12725Y37723D01* X12744Y37704D01* X12762Y37683D01* X12777Y37661D01* X12791Y37637D01* X12802Y37613D01* X12811Y37587D01* X12815Y37579D01* X12819Y37572D01* X12825Y37565D01* X12832Y37560D01* X12840Y37556D01* X12848Y37553D01* X12857Y37552D01* X12865Y37552D01* X12874Y37554D01* X12882Y37557D01* X12889Y37562D01* X12896Y37568D01* X12901Y37575D01* X12905Y37582D01* X12908Y37591D01* X12909Y37599D01* X12909Y37608D01* X12907Y37617D01* X12895Y37651D01* X12880Y37683D01* X12862Y37715D01* X12841Y37744D01* X12817Y37772D01* X12792Y37797D01* X12764Y37820D01* X12734Y37840D01* X12702Y37858D01* X12669Y37873D01* X12665Y37874D01* Y39134D01* X12688Y39144D01* X12720Y39162D01* X12749Y39183D01* X12777Y39207D01* X12802Y39232D01* X12825Y39260D01* X12845Y39290D01* X12863Y39322D01* X12877Y39355D01* X12889Y39389D01* X12891Y39398D01* X12891Y39407D01* X12890Y39415D01* X12887Y39423D01* X12882Y39431D01* X12877Y39438D01* X12870Y39444D01* X12863Y39448D01* X12855Y39451D01* X12846Y39453D01* X12837Y39453D01* X12829Y39452D01* X12821Y39449D01* X12813Y39445D01* X12806Y39439D01* X12800Y39433D01* X12796Y39425D01* X12793Y39417D01* X12784Y39391D01* X12773Y39366D01* X12760Y39343D01* X12745Y39320D01* X12728Y39299D01* X12709Y39280D01* X12688Y39262D01* X12666Y39247D01* X12665Y39246D01* Y39753D01* X12684Y39740D01* X12705Y39723D01* X12724Y39704D01* X12742Y39683D01* X12757Y39661D01* X12771Y39637D01* X12782Y39613D01* X12791Y39587D01* X12795Y39579D01* X12799Y39572D01* X12805Y39565D01* X12812Y39560D01* X12820Y39556D01* X12828Y39553D01* X12837Y39552D01* X12845Y39552D01* X12854Y39554D01* X12862Y39557D01* X12869Y39562D01* X12876Y39568D01* X12881Y39575D01* X12885Y39582D01* X12888Y39591D01* X12889Y39599D01* X12889Y39608D01* X12887Y39617D01* X12875Y39651D01* X12860Y39683D01* X12842Y39715D01* X12821Y39744D01* X12797Y39772D01* X12772Y39797D01* X12744Y39820D01* X12714Y39840D01* X12682Y39858D01* X12665Y39865D01* Y40000D01* G37* G36* Y35774D02*X12678Y35768D01* X12701Y35755D01* X12724Y35740D01* X12745Y35723D01* X12764Y35704D01* X12782Y35683D01* X12797Y35661D01* X12811Y35637D01* X12822Y35613D01* X12831Y35587D01* X12835Y35579D01* X12839Y35572D01* X12845Y35565D01* X12852Y35560D01* X12860Y35556D01* X12868Y35553D01* X12877Y35552D01* X12885Y35552D01* X12894Y35554D01* X12902Y35557D01* X12909Y35562D01* X12916Y35568D01* X12921Y35575D01* X12924Y35580D01* Y35428D01* X12922Y35431D01* X12917Y35438D01* X12910Y35444D01* X12903Y35448D01* X12895Y35451D01* X12886Y35453D01* X12877Y35453D01* X12869Y35452D01* X12861Y35449D01* X12853Y35445D01* X12846Y35439D01* X12840Y35433D01* X12836Y35425D01* X12833Y35417D01* X12824Y35391D01* X12813Y35366D01* X12800Y35343D01* X12785Y35320D01* X12768Y35299D01* X12749Y35280D01* X12728Y35262D01* X12706Y35247D01* X12682Y35233D01* X12665Y35225D01* Y35774D01* G37* G36* Y35118D02*X12696Y35129D01* X12728Y35144D01* X12760Y35162D01* X12789Y35183D01* X12817Y35207D01* X12842Y35232D01* X12865Y35260D01* X12885Y35290D01* X12903Y35322D01* X12917Y35355D01* X12924Y35374D01* Y33674D01* X12920Y33683D01* X12902Y33715D01* X12881Y33744D01* X12857Y33772D01* X12832Y33797D01* X12804Y33820D01* X12774Y33840D01* X12742Y33858D01* X12709Y33873D01* X12675Y33884D01* X12666Y33886D01* X12665D01* Y35118D01* G37* G36* Y33782D02*X12673Y33779D01* X12698Y33768D01* X12721Y33755D01* X12744Y33740D01* X12765Y33723D01* X12784Y33704D01* X12802Y33683D01* X12817Y33661D01* X12831Y33637D01* X12842Y33613D01* X12851Y33587D01* X12855Y33579D01* X12859Y33572D01* X12865Y33565D01* X12872Y33560D01* X12880Y33556D01* X12888Y33553D01* X12897Y33552D01* X12905Y33552D01* X12914Y33554D01* X12922Y33557D01* X12924Y33559D01* Y33447D01* X12923Y33448D01* X12915Y33451D01* X12906Y33453D01* X12897Y33453D01* X12889Y33452D01* X12881Y33449D01* X12873Y33445D01* X12866Y33439D01* X12860Y33433D01* X12856Y33425D01* X12853Y33417D01* X12844Y33391D01* X12833Y33366D01* X12820Y33343D01* X12805Y33320D01* X12788Y33299D01* X12769Y33280D01* X12748Y33262D01* X12726Y33247D01* X12702Y33233D01* X12678Y33222D01* X12665Y33217D01* Y33782D01* G37* G36* Y33115D02*X12673Y33115D01* X12681Y33117D01* X12716Y33129D01* X12748Y33144D01* X12780Y33162D01* X12809Y33183D01* X12837Y33207D01* X12862Y33232D01* X12885Y33260D01* X12905Y33290D01* X12923Y33322D01* X12924Y33324D01* Y31711D01* X12922Y31715D01* X12901Y31744D01* X12877Y31772D01* X12852Y31797D01* X12824Y31820D01* X12794Y31840D01* X12762Y31858D01* X12729Y31873D01* X12695Y31884D01* X12686Y31886D01* X12677Y31886D01* X12669Y31885D01* X12665Y31883D01* Y33115D01* G37* G36* Y31789D02*X12667Y31788D01* X12693Y31779D01* X12718Y31768D01* X12741Y31755D01* X12764Y31740D01* X12785Y31723D01* X12804Y31704D01* X12822Y31683D01* X12837Y31661D01* X12851Y31637D01* X12862Y31613D01* X12871Y31587D01* X12875Y31579D01* X12879Y31572D01* X12885Y31565D01* X12892Y31560D01* X12900Y31556D01* X12908Y31553D01* X12917Y31552D01* X12924Y31552D01* Y31453D01* X12917Y31453D01* X12909Y31452D01* X12901Y31449D01* X12893Y31445D01* X12886Y31439D01* X12880Y31433D01* X12876Y31425D01* X12873Y31417D01* X12864Y31391D01* X12853Y31366D01* X12840Y31343D01* X12825Y31320D01* X12808Y31299D01* X12789Y31280D01* X12768Y31262D01* X12746Y31247D01* X12722Y31233D01* X12698Y31222D01* X12672Y31213D01* X12665Y31210D01* Y31789D01* G37* G36* Y31120D02*X12667Y31119D01* X12676Y31116D01* X12684Y31115D01* X12693Y31115D01* X12701Y31117D01* X12736Y31129D01* X12768Y31144D01* X12800Y31162D01* X12829Y31183D01* X12857Y31207D01* X12882Y31232D01* X12905Y31260D01* X12924Y31288D01* Y29740D01* X12921Y29744D01* X12897Y29772D01* X12872Y29797D01* X12844Y29820D01* X12814Y29840D01* X12782Y29858D01* X12749Y29873D01* X12715Y29884D01* X12706Y29886D01* X12697Y29886D01* X12689Y29885D01* X12681Y29882D01* X12673Y29878D01* X12666Y29872D01* X12665Y29871D01* Y31120D01* G37* G36* Y29801D02*X12672Y29796D01* X12679Y29791D01* X12687Y29788D01* X12713Y29779D01* X12738Y29768D01* X12761Y29755D01* X12784Y29740D01* X12805Y29723D01* X12824Y29704D01* X12842Y29683D01* X12857Y29661D01* X12871Y29637D01* X12882Y29613D01* X12891Y29587D01* X12895Y29579D01* X12899Y29572D01* X12905Y29565D01* X12912Y29560D01* X12920Y29556D01* X12924Y29555D01* Y29450D01* X12921Y29449D01* X12913Y29445D01* X12906Y29439D01* X12900Y29433D01* X12896Y29425D01* X12893Y29417D01* X12884Y29391D01* X12873Y29366D01* X12860Y29343D01* X12845Y29320D01* X12828Y29299D01* X12809Y29280D01* X12788Y29262D01* X12766Y29247D01* X12742Y29233D01* X12718Y29222D01* X12692Y29213D01* X12684Y29209D01* X12677Y29205D01* X12670Y29199D01* X12665Y29192D01* Y29801D01* G37* G36* Y29138D02*X12667Y29135D01* X12673Y29128D01* X12680Y29123D01* X12687Y29119D01* X12696Y29116D01* X12704Y29115D01* X12713Y29115D01* X12721Y29117D01* X12756Y29129D01* X12788Y29144D01* X12820Y29162D01* X12849Y29183D01* X12877Y29207D01* X12902Y29232D01* X12924Y29259D01* Y27764D01* X12917Y27772D01* X12892Y27797D01* X12864Y27820D01* X12834Y27840D01* X12802Y27858D01* X12769Y27873D01* X12735Y27884D01* X12726Y27886D01* X12717Y27886D01* X12709Y27885D01* X12701Y27882D01* X12693Y27878D01* X12686Y27872D01* X12680Y27865D01* X12676Y27858D01* X12673Y27850D01* X12671Y27841D01* X12671Y27833D01* X12672Y27824D01* X12675Y27816D01* X12679Y27808D01* X12685Y27801D01* X12692Y27796D01* X12699Y27791D01* X12707Y27788D01* X12733Y27779D01* X12758Y27768D01* X12781Y27755D01* X12804Y27740D01* X12825Y27723D01* X12844Y27704D01* X12862Y27683D01* X12877Y27661D01* X12891Y27637D01* X12902Y27613D01* X12911Y27587D01* X12915Y27579D01* X12919Y27572D01* X12924Y27567D01* Y27437D01* X12920Y27433D01* X12916Y27425D01* X12913Y27417D01* X12904Y27391D01* X12893Y27366D01* X12880Y27343D01* X12865Y27320D01* X12848Y27299D01* X12829Y27280D01* X12808Y27262D01* X12786Y27247D01* X12762Y27233D01* X12738Y27222D01* X12712Y27213D01* X12704Y27209D01* X12697Y27205D01* X12690Y27199D01* X12685Y27192D01* X12681Y27184D01* X12678Y27176D01* X12677Y27167D01* X12677Y27159D01* X12679Y27150D01* X12682Y27142D01* X12687Y27135D01* X12693Y27128D01* X12700Y27123D01* X12707Y27119D01* X12716Y27116D01* X12724Y27115D01* X12733Y27115D01* X12741Y27117D01* X12776Y27129D01* X12808Y27144D01* X12840Y27162D01* X12869Y27183D01* X12897Y27207D01* X12922Y27232D01* X12924Y27235D01* Y25785D01* X12912Y25797D01* X12884Y25820D01* X12854Y25840D01* X12822Y25858D01* X12789Y25873D01* X12755Y25884D01* X12746Y25886D01* X12737Y25886D01* X12729Y25885D01* X12721Y25882D01* X12713Y25878D01* X12706Y25872D01* X12700Y25865D01* X12696Y25858D01* X12693Y25850D01* X12691Y25841D01* X12691Y25833D01* X12692Y25824D01* X12695Y25816D01* X12699Y25808D01* X12705Y25801D01* X12712Y25796D01* X12719Y25791D01* X12727Y25788D01* X12753Y25779D01* X12778Y25768D01* X12801Y25755D01* X12824Y25740D01* X12845Y25723D01* X12864Y25704D01* X12882Y25683D01* X12897Y25661D01* X12911Y25637D01* X12922Y25613D01* X12924Y25608D01* Y25391D01* X12913Y25366D01* X12900Y25343D01* X12885Y25320D01* X12868Y25299D01* X12849Y25280D01* X12828Y25262D01* X12806Y25247D01* X12782Y25233D01* X12758Y25222D01* X12732Y25213D01* X12724Y25209D01* X12717Y25205D01* X12710Y25199D01* X12705Y25192D01* X12701Y25184D01* X12698Y25176D01* X12697Y25167D01* X12697Y25159D01* X12699Y25150D01* X12702Y25142D01* X12707Y25135D01* X12713Y25128D01* X12720Y25123D01* X12727Y25119D01* X12736Y25116D01* X12744Y25115D01* X12753Y25115D01* X12761Y25117D01* X12796Y25129D01* X12828Y25144D01* X12860Y25162D01* X12889Y25183D01* X12917Y25207D01* X12924Y25214D01* Y23804D01* X12904Y23820D01* X12874Y23840D01* X12842Y23858D01* X12809Y23873D01* X12775Y23884D01* X12766Y23886D01* X12757Y23886D01* X12749Y23885D01* X12741Y23882D01* X12733Y23878D01* X12726Y23872D01* X12720Y23865D01* X12716Y23858D01* X12713Y23850D01* X12711Y23841D01* X12711Y23833D01* X12712Y23824D01* X12715Y23816D01* X12719Y23808D01* X12725Y23801D01* X12732Y23796D01* X12739Y23791D01* X12747Y23788D01* X12773Y23779D01* X12798Y23768D01* X12821Y23755D01* X12844Y23740D01* X12865Y23723D01* X12884Y23704D01* X12902Y23683D01* X12917Y23661D01* X12924Y23650D01* Y23350D01* X12920Y23343D01* X12905Y23320D01* X12888Y23299D01* X12869Y23280D01* X12848Y23262D01* X12826Y23247D01* X12802Y23233D01* X12778Y23222D01* X12752Y23213D01* X12744Y23209D01* X12737Y23205D01* X12730Y23199D01* X12725Y23192D01* X12721Y23184D01* X12718Y23176D01* X12717Y23167D01* X12717Y23159D01* X12719Y23150D01* X12722Y23142D01* X12727Y23135D01* X12733Y23128D01* X12740Y23123D01* X12747Y23119D01* X12756Y23116D01* X12764Y23115D01* X12773Y23115D01* X12781Y23117D01* X12816Y23129D01* X12848Y23144D01* X12880Y23162D01* X12909Y23183D01* X12924Y23196D01* Y21820D01* X12924Y21820D01* X12894Y21840D01* X12862Y21858D01* X12829Y21873D01* X12795Y21884D01* X12786Y21886D01* X12777Y21886D01* X12769Y21885D01* X12761Y21882D01* X12753Y21878D01* X12746Y21872D01* X12740Y21865D01* X12736Y21858D01* X12733Y21850D01* X12731Y21841D01* X12731Y21833D01* X12732Y21824D01* X12735Y21816D01* X12739Y21808D01* X12745Y21801D01* X12752Y21796D01* X12759Y21791D01* X12767Y21788D01* X12793Y21779D01* X12818Y21768D01* X12841Y21755D01* X12864Y21740D01* X12885Y21723D01* X12904Y21704D01* X12922Y21683D01* X12924Y21680D01* Y21319D01* X12908Y21299D01* X12889Y21280D01* X12868Y21262D01* X12846Y21247D01* X12822Y21233D01* X12798Y21222D01* X12772Y21213D01* X12764Y21209D01* X12757Y21205D01* X12750Y21199D01* X12745Y21192D01* X12741Y21184D01* X12738Y21176D01* X12737Y21167D01* X12737Y21159D01* X12739Y21150D01* X12742Y21142D01* X12747Y21135D01* X12753Y21128D01* X12760Y21123D01* X12767Y21119D01* X12776Y21116D01* X12784Y21115D01* X12793Y21115D01* X12801Y21117D01* X12836Y21129D01* X12868Y21144D01* X12900Y21162D01* X12924Y21180D01* Y19834D01* X12914Y19840D01* X12882Y19858D01* X12849Y19873D01* X12815Y19884D01* X12806Y19886D01* X12797Y19886D01* X12789Y19885D01* X12781Y19882D01* X12773Y19878D01* X12766Y19872D01* X12760Y19865D01* X12756Y19858D01* X12753Y19850D01* X12751Y19841D01* X12751Y19833D01* X12752Y19824D01* X12755Y19816D01* X12759Y19808D01* X12765Y19801D01* X12772Y19796D01* X12779Y19791D01* X12787Y19788D01* X12813Y19779D01* X12838Y19768D01* X12861Y19755D01* X12884Y19740D01* X12905Y19723D01* X12924Y19704D01* Y19295D01* X12909Y19280D01* X12888Y19262D01* X12866Y19247D01* X12842Y19233D01* X12818Y19222D01* X12792Y19213D01* X12784Y19209D01* X12777Y19205D01* X12770Y19199D01* X12765Y19192D01* X12761Y19184D01* X12758Y19176D01* X12757Y19167D01* X12757Y19159D01* X12759Y19150D01* X12762Y19142D01* X12767Y19135D01* X12773Y19128D01* X12780Y19123D01* X12787Y19119D01* X12796Y19116D01* X12804Y19115D01* X12813Y19115D01* X12821Y19117D01* X12856Y19129D01* X12888Y19144D01* X12920Y19162D01* X12924Y19165D01* Y17846D01* X12902Y17858D01* X12869Y17873D01* X12835Y17884D01* X12826Y17886D01* X12817Y17886D01* X12809Y17885D01* X12801Y17882D01* X12793Y17878D01* X12786Y17872D01* X12780Y17865D01* X12776Y17858D01* X12773Y17850D01* X12771Y17841D01* X12771Y17833D01* X12772Y17824D01* X12775Y17816D01* X12779Y17808D01* X12785Y17801D01* X12792Y17796D01* X12799Y17791D01* X12807Y17788D01* X12833Y17779D01* X12858Y17768D01* X12881Y17755D01* X12904Y17740D01* X12924Y17724D01* Y17276D01* X12908Y17262D01* X12886Y17247D01* X12862Y17233D01* X12838Y17222D01* X12812Y17213D01* X12804Y17209D01* X12797Y17205D01* X12790Y17199D01* X12785Y17192D01* X12781Y17184D01* X12778Y17176D01* X12777Y17167D01* X12777Y17159D01* X12779Y17150D01* X12782Y17142D01* X12787Y17135D01* X12793Y17128D01* X12800Y17123D01* X12807Y17119D01* X12816Y17116D01* X12824Y17115D01* X12833Y17115D01* X12841Y17117D01* X12876Y17129D01* X12908Y17144D01* X12924Y17153D01* Y15857D01* X12922Y15858D01* X12889Y15873D01* X12855Y15884D01* X12846Y15886D01* X12837Y15886D01* X12829Y15885D01* X12821Y15882D01* X12813Y15878D01* X12806Y15872D01* X12800Y15865D01* X12796Y15858D01* X12793Y15850D01* X12791Y15841D01* X12791Y15833D01* X12792Y15824D01* X12795Y15816D01* X12799Y15808D01* X12805Y15801D01* X12812Y15796D01* X12819Y15791D01* X12827Y15788D01* X12853Y15779D01* X12878Y15768D01* X12901Y15755D01* X12924Y15740D01* Y15259D01* X12906Y15247D01* X12882Y15233D01* X12858Y15222D01* X12832Y15213D01* X12824Y15209D01* X12817Y15205D01* X12810Y15199D01* X12805Y15192D01* X12801Y15184D01* X12798Y15176D01* X12797Y15167D01* X12797Y15159D01* X12799Y15150D01* X12802Y15142D01* X12807Y15135D01* X12813Y15128D01* X12820Y15123D01* X12827Y15119D01* X12836Y15116D01* X12844Y15115D01* X12853Y15115D01* X12861Y15117D01* X12896Y15129D01* X12924Y15142D01* Y13866D01* X12909Y13873D01* X12875Y13884D01* X12866Y13886D01* X12857Y13886D01* X12849Y13885D01* X12841Y13882D01* X12833Y13878D01* X12826Y13872D01* X12820Y13865D01* X12816Y13858D01* X12813Y13850D01* X12811Y13841D01* X12811Y13833D01* X12812Y13824D01* X12815Y13816D01* X12819Y13808D01* X12825Y13801D01* X12832Y13796D01* X12839Y13791D01* X12847Y13788D01* X12873Y13779D01* X12898Y13768D01* X12921Y13755D01* X12924Y13754D01* Y13246D01* X12902Y13233D01* X12878Y13222D01* X12852Y13213D01* X12844Y13209D01* X12837Y13205D01* X12830Y13199D01* X12825Y13192D01* X12821Y13184D01* X12818Y13176D01* X12817Y13167D01* X12817Y13159D01* X12819Y13150D01* X12822Y13142D01* X12827Y13135D01* X12833Y13128D01* X12840Y13123D01* X12847Y13119D01* X12856Y13116D01* X12864Y13115D01* X12873Y13115D01* X12881Y13117D01* X12916Y13129D01* X12924Y13133D01* Y11874D01* X12895Y11884D01* X12886Y11886D01* X12877Y11886D01* X12869Y11885D01* X12861Y11882D01* X12853Y11878D01* X12846Y11872D01* X12840Y11865D01* X12836Y11858D01* X12833Y11850D01* X12831Y11841D01* X12831Y11833D01* X12832Y11824D01* X12835Y11816D01* X12839Y11808D01* X12845Y11801D01* X12852Y11796D01* X12859Y11791D01* X12867Y11788D01* X12893Y11779D01* X12918Y11768D01* X12924Y11765D01* Y11234D01* X12922Y11233D01* X12898Y11222D01* X12872Y11213D01* X12864Y11209D01* X12857Y11205D01* X12850Y11199D01* X12845Y11192D01* X12841Y11184D01* X12838Y11176D01* X12837Y11167D01* X12837Y11159D01* X12839Y11150D01* X12842Y11142D01* X12847Y11135D01* X12853Y11128D01* X12860Y11123D01* X12867Y11119D01* X12876Y11116D01* X12884Y11115D01* X12893Y11115D01* X12901Y11117D01* X12924Y11125D01* Y9881D01* X12915Y9884D01* X12906Y9886D01* X12897Y9886D01* X12889Y9885D01* X12881Y9882D01* X12873Y9878D01* X12866Y9872D01* X12860Y9865D01* X12856Y9858D01* X12853Y9850D01* X12851Y9841D01* X12851Y9833D01* X12852Y9824D01* X12855Y9816D01* X12859Y9808D01* X12865Y9801D01* X12872Y9796D01* X12879Y9791D01* X12887Y9788D01* X12913Y9779D01* X12924Y9774D01* Y9225D01* X12918Y9222D01* X12892Y9213D01* X12884Y9209D01* X12877Y9205D01* X12870Y9199D01* X12865Y9192D01* X12861Y9184D01* X12858Y9176D01* X12857Y9167D01* X12857Y9159D01* X12859Y9150D01* X12862Y9142D01* X12867Y9135D01* X12873Y9128D01* X12880Y9123D01* X12887Y9119D01* X12896Y9116D01* X12904Y9115D01* X12913Y9115D01* X12921Y9117D01* X12924Y9118D01* Y7886D01* X12917Y7886D01* X12909Y7885D01* X12901Y7882D01* X12893Y7878D01* X12886Y7872D01* X12880Y7865D01* X12876Y7858D01* X12873Y7850D01* X12871Y7841D01* X12871Y7833D01* X12872Y7824D01* X12875Y7816D01* X12879Y7808D01* X12885Y7801D01* X12892Y7796D01* X12899Y7791D01* X12907Y7788D01* X12924Y7782D01* Y7217D01* X12912Y7213D01* X12904Y7209D01* X12897Y7205D01* X12890Y7199D01* X12885Y7192D01* X12881Y7184D01* X12878Y7176D01* X12877Y7167D01* X12877Y7159D01* X12879Y7150D01* X12882Y7142D01* X12887Y7135D01* X12893Y7128D01* X12900Y7123D01* X12907Y7119D01* X12916Y7116D01* X12924Y7115D01* Y5883D01* X12921Y5882D01* X12913Y5878D01* X12906Y5872D01* X12900Y5865D01* X12896Y5858D01* X12893Y5850D01* X12891Y5841D01* X12891Y5833D01* X12892Y5824D01* X12895Y5816D01* X12899Y5808D01* X12905Y5801D01* X12912Y5796D01* X12919Y5791D01* X12924Y5789D01* Y5209D01* X12917Y5205D01* X12910Y5199D01* X12905Y5192D01* X12901Y5184D01* X12898Y5176D01* X12897Y5167D01* X12897Y5159D01* X12899Y5150D01* X12902Y5142D01* X12907Y5135D01* X12913Y5128D01* X12920Y5123D01* X12924Y5121D01* Y3870D01* X12920Y3865D01* X12916Y3858D01* X12913Y3850D01* X12911Y3841D01* X12911Y3833D01* X12912Y3824D01* X12915Y3816D01* X12919Y3808D01* X12924Y3802D01* Y3190D01* X12921Y3184D01* X12918Y3176D01* X12917Y3167D01* X12917Y3159D01* X12919Y3150D01* X12922Y3142D01* X12924Y3140D01* Y0D01* X12665D01* Y1166D01* X12675Y1159D01* X12707Y1141D01* X12740Y1127D01* X12774Y1115D01* X12783Y1113D01* X12792Y1113D01* X12800Y1115D01* X12808Y1117D01* X12816Y1122D01* X12823Y1127D01* X12829Y1134D01* X12833Y1141D01* X12836Y1149D01* X12838Y1158D01* X12838Y1167D01* X12837Y1175D01* X12834Y1183D01* X12830Y1191D01* X12824Y1198D01* X12817Y1204D01* X12810Y1208D01* X12802Y1211D01* X12776Y1220D01* X12751Y1231D01* X12728Y1244D01* X12705Y1259D01* X12684Y1276D01* X12665Y1295D01* Y1704D01* X12680Y1719D01* X12701Y1737D01* X12723Y1752D01* X12747Y1766D01* X12771Y1777D01* X12797Y1786D01* X12805Y1790D01* X12812Y1794D01* X12819Y1800D01* X12824Y1807D01* X12828Y1815D01* X12831Y1823D01* X12832Y1832D01* X12832Y1840D01* X12830Y1849D01* X12827Y1857D01* X12822Y1864D01* X12816Y1871D01* X12809Y1876D01* X12802Y1880D01* X12793Y1883D01* X12785Y1884D01* X12776Y1884D01* X12768Y1882D01* X12733Y1870D01* X12701Y1855D01* X12669Y1837D01* X12665Y1834D01* Y3153D01* X12687Y3141D01* X12720Y3127D01* X12754Y3115D01* X12763Y3113D01* X12772Y3113D01* X12780Y3115D01* X12788Y3117D01* X12796Y3122D01* X12803Y3127D01* X12809Y3134D01* X12813Y3141D01* X12816Y3149D01* X12818Y3158D01* X12818Y3167D01* X12817Y3175D01* X12814Y3183D01* X12810Y3191D01* X12804Y3198D01* X12797Y3204D01* X12790Y3208D01* X12782Y3211D01* X12756Y3220D01* X12731Y3231D01* X12708Y3244D01* X12685Y3259D01* X12665Y3276D01* Y3723D01* X12681Y3737D01* X12703Y3752D01* X12727Y3766D01* X12751Y3777D01* X12777Y3786D01* X12785Y3790D01* X12792Y3794D01* X12799Y3800D01* X12804Y3807D01* X12808Y3815D01* X12811Y3823D01* X12812Y3832D01* X12812Y3840D01* X12810Y3849D01* X12807Y3857D01* X12802Y3864D01* X12796Y3871D01* X12789Y3876D01* X12782Y3880D01* X12773Y3883D01* X12765Y3884D01* X12756Y3884D01* X12748Y3882D01* X12713Y3870D01* X12681Y3855D01* X12665Y3846D01* Y5142D01* X12667Y5141D01* X12700Y5127D01* X12734Y5115D01* X12743Y5113D01* X12752Y5113D01* X12760Y5115D01* X12768Y5117D01* X12776Y5122D01* X12783Y5127D01* X12789Y5134D01* X12793Y5141D01* X12796Y5149D01* X12798Y5158D01* X12798Y5167D01* X12797Y5175D01* X12794Y5183D01* X12790Y5191D01* X12784Y5198D01* X12777Y5204D01* X12770Y5208D01* X12762Y5211D01* X12736Y5220D01* X12711Y5231D01* X12688Y5244D01* X12665Y5259D01* Y5740D01* X12683Y5752D01* X12707Y5766D01* X12731Y5777D01* X12757Y5786D01* X12765Y5790D01* X12772Y5794D01* X12779Y5800D01* X12784Y5807D01* X12788Y5815D01* X12791Y5823D01* X12792Y5832D01* X12792Y5840D01* X12790Y5849D01* X12787Y5857D01* X12782Y5864D01* X12776Y5871D01* X12769Y5876D01* X12762Y5880D01* X12753Y5883D01* X12745Y5884D01* X12736Y5884D01* X12728Y5882D01* X12693Y5870D01* X12665Y5857D01* Y7133D01* X12680Y7127D01* X12714Y7115D01* X12723Y7113D01* X12732Y7113D01* X12740Y7115D01* X12748Y7117D01* X12756Y7122D01* X12763Y7127D01* X12769Y7134D01* X12773Y7141D01* X12776Y7149D01* X12778Y7158D01* X12778Y7167D01* X12777Y7175D01* X12774Y7183D01* X12770Y7191D01* X12764Y7198D01* X12757Y7204D01* X12750Y7208D01* X12742Y7211D01* X12716Y7220D01* X12691Y7231D01* X12668Y7244D01* X12665Y7246D01* Y7754D01* X12687Y7766D01* X12711Y7777D01* X12737Y7786D01* X12745Y7790D01* X12752Y7794D01* X12759Y7800D01* X12764Y7807D01* X12768Y7815D01* X12771Y7823D01* X12772Y7832D01* X12772Y7840D01* X12770Y7849D01* X12767Y7857D01* X12762Y7864D01* X12756Y7871D01* X12749Y7876D01* X12742Y7880D01* X12733Y7883D01* X12725Y7884D01* X12716Y7884D01* X12708Y7882D01* X12673Y7870D01* X12665Y7866D01* Y9125D01* X12694Y9115D01* X12703Y9113D01* X12712Y9113D01* X12720Y9115D01* X12728Y9117D01* X12736Y9122D01* X12743Y9127D01* X12749Y9134D01* X12753Y9141D01* X12756Y9149D01* X12758Y9158D01* X12758Y9167D01* X12757Y9175D01* X12754Y9183D01* X12750Y9191D01* X12744Y9198D01* X12737Y9204D01* X12730Y9208D01* X12722Y9211D01* X12696Y9220D01* X12671Y9231D01* X12665Y9234D01* Y9765D01* X12667Y9766D01* X12691Y9777D01* X12717Y9786D01* X12725Y9790D01* X12732Y9794D01* X12739Y9800D01* X12744Y9807D01* X12748Y9815D01* X12751Y9823D01* X12752Y9832D01* X12752Y9840D01* X12750Y9849D01* X12747Y9857D01* X12742Y9864D01* X12736Y9871D01* X12729Y9876D01* X12722Y9880D01* X12713Y9883D01* X12705Y9884D01* X12696Y9884D01* X12688Y9882D01* X12665Y9874D01* Y11118D01* X12674Y11115D01* X12683Y11113D01* X12692Y11113D01* X12700Y11115D01* X12708Y11117D01* X12716Y11122D01* X12723Y11127D01* X12729Y11134D01* X12733Y11141D01* X12736Y11149D01* X12738Y11158D01* X12738Y11167D01* X12737Y11175D01* X12734Y11183D01* X12730Y11191D01* X12724Y11198D01* X12717Y11204D01* X12710Y11208D01* X12702Y11211D01* X12676Y11220D01* X12665Y11225D01* Y11775D01* X12671Y11777D01* X12697Y11786D01* X12705Y11790D01* X12712Y11794D01* X12719Y11800D01* X12724Y11807D01* X12728Y11815D01* X12731Y11823D01* X12732Y11832D01* X12732Y11840D01* X12730Y11849D01* X12727Y11857D01* X12722Y11864D01* X12716Y11871D01* X12709Y11876D01* X12702Y11880D01* X12693Y11883D01* X12685Y11884D01* X12676Y11884D01* X12668Y11882D01* X12665Y11881D01* Y13113D01* X12672Y13113D01* X12680Y13115D01* X12688Y13117D01* X12696Y13122D01* X12703Y13127D01* X12709Y13134D01* X12713Y13141D01* X12716Y13149D01* X12718Y13158D01* X12718Y13167D01* X12717Y13175D01* X12714Y13183D01* X12710Y13191D01* X12704Y13198D01* X12697Y13204D01* X12690Y13208D01* X12682Y13211D01* X12665Y13217D01* Y13782D01* X12677Y13786D01* X12685Y13790D01* X12692Y13794D01* X12699Y13800D01* X12704Y13807D01* X12708Y13815D01* X12711Y13823D01* X12712Y13832D01* X12712Y13840D01* X12710Y13849D01* X12707Y13857D01* X12702Y13864D01* X12696Y13871D01* X12689Y13876D01* X12682Y13880D01* X12673Y13883D01* X12665Y13884D01* Y15116D01* X12668Y15117D01* X12676Y15122D01* X12683Y15127D01* X12689Y15134D01* X12693Y15141D01* X12696Y15149D01* X12698Y15158D01* X12698Y15167D01* X12697Y15175D01* X12694Y15183D01* X12690Y15191D01* X12684Y15198D01* X12677Y15204D01* X12670Y15208D01* X12665Y15210D01* Y15790D01* X12672Y15794D01* X12679Y15800D01* X12684Y15807D01* X12688Y15815D01* X12691Y15823D01* X12692Y15832D01* X12692Y15840D01* X12690Y15849D01* X12687Y15857D01* X12682Y15864D01* X12676Y15871D01* X12669Y15876D01* X12665Y15878D01* Y17130D01* X12669Y17134D01* X12673Y17141D01* X12676Y17149D01* X12678Y17158D01* X12678Y17167D01* X12677Y17175D01* X12674Y17183D01* X12670Y17191D01* X12665Y17197D01* Y17809D01* X12668Y17815D01* X12671Y17823D01* X12672Y17832D01* X12672Y17840D01* X12670Y17849D01* X12667Y17857D01* X12665Y17859D01* Y29138D01* G37* G36* X12924Y40000D02*X13104D01* Y17625D01* X13095Y17651D01* X13080Y17683D01* X13062Y17715D01* X13041Y17744D01* X13017Y17772D01* X12992Y17797D01* X12964Y17820D01* X12934Y17840D01* X12924Y17846D01* Y19165D01* X12949Y19183D01* X12977Y19207D01* X13002Y19232D01* X13025Y19260D01* X13045Y19290D01* X13063Y19322D01* X13077Y19355D01* X13089Y19389D01* X13091Y19398D01* X13091Y19407D01* X13090Y19415D01* X13087Y19423D01* X13082Y19431D01* X13077Y19438D01* X13070Y19444D01* X13063Y19448D01* X13055Y19451D01* X13046Y19453D01* X13037Y19453D01* X13029Y19452D01* X13021Y19449D01* X13013Y19445D01* X13006Y19439D01* X13000Y19433D01* X12996Y19425D01* X12993Y19417D01* X12984Y19391D01* X12973Y19366D01* X12960Y19343D01* X12945Y19320D01* X12928Y19299D01* X12924Y19295D01* Y19704D01* X12924Y19704D01* X12942Y19683D01* X12957Y19661D01* X12971Y19637D01* X12982Y19613D01* X12991Y19587D01* X12995Y19579D01* X12999Y19572D01* X13005Y19565D01* X13012Y19560D01* X13020Y19556D01* X13028Y19553D01* X13037Y19552D01* X13045Y19552D01* X13054Y19554D01* X13062Y19557D01* X13069Y19562D01* X13076Y19568D01* X13081Y19575D01* X13085Y19582D01* X13088Y19591D01* X13089Y19599D01* X13089Y19608D01* X13087Y19617D01* X13075Y19651D01* X13060Y19683D01* X13042Y19715D01* X13021Y19744D01* X12997Y19772D01* X12972Y19797D01* X12944Y19820D01* X12924Y19834D01* Y21180D01* X12929Y21183D01* X12957Y21207D01* X12982Y21232D01* X13005Y21260D01* X13025Y21290D01* X13043Y21322D01* X13057Y21355D01* X13069Y21389D01* X13071Y21398D01* X13071Y21407D01* X13070Y21415D01* X13067Y21423D01* X13062Y21431D01* X13057Y21438D01* X13050Y21444D01* X13043Y21448D01* X13035Y21451D01* X13026Y21453D01* X13017Y21453D01* X13009Y21452D01* X13001Y21449D01* X12993Y21445D01* X12986Y21439D01* X12980Y21433D01* X12976Y21425D01* X12973Y21417D01* X12964Y21391D01* X12953Y21366D01* X12940Y21343D01* X12925Y21320D01* X12924Y21319D01* Y21680D01* X12937Y21661D01* X12951Y21637D01* X12962Y21613D01* X12971Y21587D01* X12975Y21579D01* X12979Y21572D01* X12985Y21565D01* X12992Y21560D01* X13000Y21556D01* X13008Y21553D01* X13017Y21552D01* X13025Y21552D01* X13034Y21554D01* X13042Y21557D01* X13049Y21562D01* X13056Y21568D01* X13061Y21575D01* X13065Y21582D01* X13068Y21591D01* X13069Y21599D01* X13069Y21608D01* X13067Y21617D01* X13055Y21651D01* X13040Y21683D01* X13022Y21715D01* X13001Y21744D01* X12977Y21772D01* X12952Y21797D01* X12924Y21820D01* Y23196D01* X12937Y23207D01* X12962Y23232D01* X12985Y23260D01* X13005Y23290D01* X13023Y23322D01* X13037Y23355D01* X13049Y23389D01* X13051Y23398D01* X13051Y23407D01* X13050Y23415D01* X13047Y23423D01* X13042Y23431D01* X13037Y23438D01* X13030Y23444D01* X13023Y23448D01* X13015Y23451D01* X13006Y23453D01* X12997Y23453D01* X12989Y23452D01* X12981Y23449D01* X12973Y23445D01* X12966Y23439D01* X12960Y23433D01* X12956Y23425D01* X12953Y23417D01* X12944Y23391D01* X12933Y23366D01* X12924Y23350D01* Y23650D01* X12931Y23637D01* X12942Y23613D01* X12951Y23587D01* X12955Y23579D01* X12959Y23572D01* X12965Y23565D01* X12972Y23560D01* X12980Y23556D01* X12988Y23553D01* X12997Y23552D01* X13005Y23552D01* X13014Y23554D01* X13022Y23557D01* X13029Y23562D01* X13036Y23568D01* X13041Y23575D01* X13045Y23582D01* X13048Y23591D01* X13049Y23599D01* X13049Y23608D01* X13047Y23617D01* X13035Y23651D01* X13020Y23683D01* X13002Y23715D01* X12981Y23744D01* X12957Y23772D01* X12932Y23797D01* X12924Y23804D01* Y25214D01* X12942Y25232D01* X12965Y25260D01* X12985Y25290D01* X13003Y25322D01* X13017Y25355D01* X13029Y25389D01* X13031Y25398D01* X13031Y25407D01* X13030Y25415D01* X13027Y25423D01* X13022Y25431D01* X13017Y25438D01* X13010Y25444D01* X13003Y25448D01* X12995Y25451D01* X12986Y25453D01* X12977Y25453D01* X12969Y25452D01* X12961Y25449D01* X12953Y25445D01* X12946Y25439D01* X12940Y25433D01* X12936Y25425D01* X12933Y25417D01* X12924Y25391D01* X12924Y25391D01* Y25608D01* X12931Y25587D01* X12935Y25579D01* X12939Y25572D01* X12945Y25565D01* X12952Y25560D01* X12960Y25556D01* X12968Y25553D01* X12977Y25552D01* X12985Y25552D01* X12994Y25554D01* X13002Y25557D01* X13009Y25562D01* X13016Y25568D01* X13021Y25575D01* X13025Y25582D01* X13028Y25591D01* X13029Y25599D01* X13029Y25608D01* X13027Y25617D01* X13015Y25651D01* X13000Y25683D01* X12982Y25715D01* X12961Y25744D01* X12937Y25772D01* X12924Y25785D01* Y27235D01* X12945Y27260D01* X12965Y27290D01* X12983Y27322D01* X12997Y27355D01* X13009Y27389D01* X13011Y27398D01* X13011Y27407D01* X13010Y27415D01* X13007Y27423D01* X13002Y27431D01* X12997Y27438D01* X12990Y27444D01* X12983Y27448D01* X12975Y27451D01* X12966Y27453D01* X12957Y27453D01* X12949Y27452D01* X12941Y27449D01* X12933Y27445D01* X12926Y27439D01* X12924Y27437D01* Y27567D01* X12925Y27565D01* X12932Y27560D01* X12940Y27556D01* X12948Y27553D01* X12957Y27552D01* X12965Y27552D01* X12974Y27554D01* X12982Y27557D01* X12989Y27562D01* X12996Y27568D01* X13001Y27575D01* X13005Y27582D01* X13008Y27591D01* X13009Y27599D01* X13009Y27608D01* X13007Y27617D01* X12995Y27651D01* X12980Y27683D01* X12962Y27715D01* X12941Y27744D01* X12924Y27764D01* Y29259D01* X12925Y29260D01* X12945Y29290D01* X12963Y29322D01* X12977Y29355D01* X12989Y29389D01* X12991Y29398D01* X12991Y29407D01* X12990Y29415D01* X12987Y29423D01* X12982Y29431D01* X12977Y29438D01* X12970Y29444D01* X12963Y29448D01* X12955Y29451D01* X12946Y29453D01* X12937Y29453D01* X12929Y29452D01* X12924Y29450D01* Y29555D01* X12928Y29553D01* X12937Y29552D01* X12945Y29552D01* X12954Y29554D01* X12962Y29557D01* X12969Y29562D01* X12976Y29568D01* X12981Y29575D01* X12985Y29582D01* X12988Y29591D01* X12989Y29599D01* X12989Y29608D01* X12987Y29617D01* X12975Y29651D01* X12960Y29683D01* X12942Y29715D01* X12924Y29740D01* Y31288D01* X12925Y31290D01* X12943Y31322D01* X12957Y31355D01* X12969Y31389D01* X12971Y31398D01* X12971Y31407D01* X12970Y31415D01* X12967Y31423D01* X12962Y31431D01* X12957Y31438D01* X12950Y31444D01* X12943Y31448D01* X12935Y31451D01* X12926Y31453D01* X12924D01* Y31552D01* X12925D01* X12934Y31554D01* X12942Y31557D01* X12949Y31562D01* X12956Y31568D01* X12961Y31575D01* X12965Y31582D01* X12968Y31591D01* X12969Y31599D01* X12969Y31608D01* X12967Y31617D01* X12955Y31651D01* X12940Y31683D01* X12924Y31711D01* Y33324D01* X12937Y33355D01* X12949Y33389D01* X12951Y33398D01* X12951Y33407D01* X12950Y33415D01* X12947Y33423D01* X12942Y33431D01* X12937Y33438D01* X12930Y33444D01* X12924Y33447D01* Y33559D01* X12929Y33562D01* X12936Y33568D01* X12941Y33575D01* X12945Y33582D01* X12948Y33591D01* X12949Y33599D01* X12949Y33608D01* X12947Y33617D01* X12935Y33651D01* X12924Y33674D01* Y35374D01* X12929Y35389D01* X12931Y35398D01* X12931Y35407D01* X12930Y35415D01* X12927Y35423D01* X12924Y35428D01* Y35580D01* X12925Y35582D01* X12928Y35591D01* X12929Y35599D01* X12929Y35608D01* X12927Y35617D01* X12924Y35625D01* Y40000D01* G37* G36* X13104Y0D02*X12924D01* Y3140D01* X12927Y3135D01* X12933Y3128D01* X12940Y3123D01* X12947Y3119D01* X12956Y3116D01* X12964Y3115D01* X12973Y3115D01* X12981Y3117D01* X13016Y3129D01* X13048Y3144D01* X13080Y3162D01* X13104Y3180D01* Y1834D01* X13094Y1840D01* X13062Y1858D01* X13029Y1873D01* X12995Y1884D01* X12986Y1886D01* X12977Y1886D01* X12969Y1885D01* X12961Y1882D01* X12953Y1878D01* X12946Y1872D01* X12940Y1865D01* X12936Y1858D01* X12933Y1850D01* X12931Y1841D01* X12931Y1833D01* X12932Y1824D01* X12935Y1816D01* X12939Y1808D01* X12945Y1801D01* X12952Y1796D01* X12959Y1791D01* X12967Y1788D01* X12993Y1779D01* X13018Y1768D01* X13041Y1755D01* X13064Y1740D01* X13085Y1723D01* X13104Y1704D01* Y1295D01* X13089Y1280D01* X13068Y1262D01* X13046Y1247D01* X13022Y1233D01* X12998Y1222D01* X12972Y1213D01* X12964Y1209D01* X12957Y1205D01* X12950Y1199D01* X12945Y1192D01* X12941Y1184D01* X12938Y1176D01* X12937Y1167D01* X12937Y1159D01* X12939Y1150D01* X12942Y1142D01* X12947Y1135D01* X12953Y1128D01* X12960Y1123D01* X12967Y1119D01* X12976Y1116D01* X12984Y1115D01* X12993Y1115D01* X13001Y1117D01* X13036Y1129D01* X13068Y1144D01* X13100Y1162D01* X13104Y1165D01* Y0D01* G37* G36* Y3319D02*X13088Y3299D01* X13069Y3280D01* X13048Y3262D01* X13026Y3247D01* X13002Y3233D01* X12978Y3222D01* X12952Y3213D01* X12944Y3209D01* X12937Y3205D01* X12930Y3199D01* X12925Y3192D01* X12924Y3190D01* Y3802D01* X12925Y3801D01* X12932Y3796D01* X12939Y3791D01* X12947Y3788D01* X12973Y3779D01* X12998Y3768D01* X13021Y3755D01* X13044Y3740D01* X13065Y3723D01* X13084Y3704D01* X13102Y3683D01* X13104Y3680D01* Y3319D01* G37* G36* Y3820D02*X13104Y3820D01* X13074Y3840D01* X13042Y3858D01* X13009Y3873D01* X12975Y3884D01* X12966Y3886D01* X12957Y3886D01* X12949Y3885D01* X12941Y3882D01* X12933Y3878D01* X12926Y3872D01* X12924Y3870D01* Y5121D01* X12927Y5119D01* X12936Y5116D01* X12944Y5115D01* X12953Y5115D01* X12961Y5117D01* X12996Y5129D01* X13028Y5144D01* X13060Y5162D01* X13089Y5183D01* X13104Y5196D01* Y3820D01* G37* G36* Y5350D02*X13100Y5343D01* X13085Y5320D01* X13068Y5299D01* X13049Y5280D01* X13028Y5262D01* X13006Y5247D01* X12982Y5233D01* X12958Y5222D01* X12932Y5213D01* X12924Y5209D01* X12924Y5209D01* Y5789D01* X12927Y5788D01* X12953Y5779D01* X12978Y5768D01* X13001Y5755D01* X13024Y5740D01* X13045Y5723D01* X13064Y5704D01* X13082Y5683D01* X13097Y5661D01* X13104Y5650D01* Y5350D01* G37* G36* Y5804D02*X13084Y5820D01* X13054Y5840D01* X13022Y5858D01* X12989Y5873D01* X12955Y5884D01* X12946Y5886D01* X12937Y5886D01* X12929Y5885D01* X12924Y5883D01* Y7115D01* X12924D01* X12933Y7115D01* X12941Y7117D01* X12976Y7129D01* X13008Y7144D01* X13040Y7162D01* X13069Y7183D01* X13097Y7207D01* X13104Y7214D01* Y5804D01* G37* G36* Y7391D02*X13093Y7366D01* X13080Y7343D01* X13065Y7320D01* X13048Y7299D01* X13029Y7280D01* X13008Y7262D01* X12986Y7247D01* X12962Y7233D01* X12938Y7222D01* X12924Y7217D01* Y7782D01* X12933Y7779D01* X12958Y7768D01* X12981Y7755D01* X13004Y7740D01* X13025Y7723D01* X13044Y7704D01* X13062Y7683D01* X13077Y7661D01* X13091Y7637D01* X13102Y7613D01* X13104Y7608D01* Y7391D01* G37* G36* Y7785D02*X13092Y7797D01* X13064Y7820D01* X13034Y7840D01* X13002Y7858D01* X12969Y7873D01* X12935Y7884D01* X12926Y7886D01* X12924D01* Y9118D01* X12956Y9129D01* X12988Y9144D01* X13020Y9162D01* X13049Y9183D01* X13077Y9207D01* X13102Y9232D01* X13104Y9235D01* Y7785D01* G37* G36* Y9437D02*X13100Y9433D01* X13096Y9425D01* X13093Y9417D01* X13084Y9391D01* X13073Y9366D01* X13060Y9343D01* X13045Y9320D01* X13028Y9299D01* X13009Y9280D01* X12988Y9262D01* X12966Y9247D01* X12942Y9233D01* X12924Y9225D01* Y9774D01* X12938Y9768D01* X12961Y9755D01* X12984Y9740D01* X13005Y9723D01* X13024Y9704D01* X13042Y9683D01* X13057Y9661D01* X13071Y9637D01* X13082Y9613D01* X13091Y9587D01* X13095Y9579D01* X13099Y9572D01* X13104Y9567D01* Y9437D01* G37* G36* Y9764D02*X13097Y9772D01* X13072Y9797D01* X13044Y9820D01* X13014Y9840D01* X12982Y9858D01* X12949Y9873D01* X12924Y9881D01* Y11125D01* X12936Y11129D01* X12968Y11144D01* X13000Y11162D01* X13029Y11183D01* X13057Y11207D01* X13082Y11232D01* X13104Y11259D01* Y9764D01* G37* G36* Y11450D02*X13101Y11449D01* X13093Y11445D01* X13086Y11439D01* X13080Y11433D01* X13076Y11425D01* X13073Y11417D01* X13064Y11391D01* X13053Y11366D01* X13040Y11343D01* X13025Y11320D01* X13008Y11299D01* X12989Y11280D01* X12968Y11262D01* X12946Y11247D01* X12924Y11234D01* Y11765D01* X12941Y11755D01* X12964Y11740D01* X12985Y11723D01* X13004Y11704D01* X13022Y11683D01* X13037Y11661D01* X13051Y11637D01* X13062Y11613D01* X13071Y11587D01* X13075Y11579D01* X13079Y11572D01* X13085Y11565D01* X13092Y11560D01* X13100Y11556D01* X13104Y11555D01* Y11450D01* G37* G36* Y11740D02*X13101Y11744D01* X13077Y11772D01* X13052Y11797D01* X13024Y11820D01* X12994Y11840D01* X12962Y11858D01* X12929Y11873D01* X12924Y11874D01* Y13133D01* X12948Y13144D01* X12980Y13162D01* X13009Y13183D01* X13037Y13207D01* X13062Y13232D01* X13085Y13260D01* X13104Y13288D01* Y11740D01* G37* G36* Y13453D02*X13097Y13453D01* X13089Y13452D01* X13081Y13449D01* X13073Y13445D01* X13066Y13439D01* X13060Y13433D01* X13056Y13425D01* X13053Y13417D01* X13044Y13391D01* X13033Y13366D01* X13020Y13343D01* X13005Y13320D01* X12988Y13299D01* X12969Y13280D01* X12948Y13262D01* X12926Y13247D01* X12924Y13246D01* Y13754D01* X12944Y13740D01* X12965Y13723D01* X12984Y13704D01* X13002Y13683D01* X13017Y13661D01* X13031Y13637D01* X13042Y13613D01* X13051Y13587D01* X13055Y13579D01* X13059Y13572D01* X13065Y13565D01* X13072Y13560D01* X13080Y13556D01* X13088Y13553D01* X13097Y13552D01* X13104Y13552D01* Y13453D01* G37* G36* Y13711D02*X13102Y13715D01* X13081Y13744D01* X13057Y13772D01* X13032Y13797D01* X13004Y13820D01* X12974Y13840D01* X12942Y13858D01* X12924Y13866D01* Y15142D01* X12928Y15144D01* X12960Y15162D01* X12989Y15183D01* X13017Y15207D01* X13042Y15232D01* X13065Y15260D01* X13085Y15290D01* X13103Y15322D01* X13104Y15324D01* Y13711D01* G37* G36* Y15447D02*X13103Y15448D01* X13095Y15451D01* X13086Y15453D01* X13077Y15453D01* X13069Y15452D01* X13061Y15449D01* X13053Y15445D01* X13046Y15439D01* X13040Y15433D01* X13036Y15425D01* X13033Y15417D01* X13024Y15391D01* X13013Y15366D01* X13000Y15343D01* X12985Y15320D01* X12968Y15299D01* X12949Y15280D01* X12928Y15262D01* X12924Y15259D01* Y15740D01* X12945Y15723D01* X12964Y15704D01* X12982Y15683D01* X12997Y15661D01* X13011Y15637D01* X13022Y15613D01* X13031Y15587D01* X13035Y15579D01* X13039Y15572D01* X13045Y15565D01* X13052Y15560D01* X13060Y15556D01* X13068Y15553D01* X13077Y15552D01* X13085Y15552D01* X13094Y15554D01* X13102Y15557D01* X13104Y15559D01* Y15447D01* G37* G36* Y15674D02*X13100Y15683D01* X13082Y15715D01* X13061Y15744D01* X13037Y15772D01* X13012Y15797D01* X12984Y15820D01* X12954Y15840D01* X12924Y15857D01* Y17153D01* X12940Y17162D01* X12969Y17183D01* X12997Y17207D01* X13022Y17232D01* X13045Y17260D01* X13065Y17290D01* X13083Y17322D01* X13097Y17355D01* X13104Y17374D01* Y15674D01* G37* G36* Y17428D02*X13102Y17431D01* X13097Y17438D01* X13090Y17444D01* X13083Y17448D01* X13075Y17451D01* X13066Y17453D01* X13057Y17453D01* X13049Y17452D01* X13041Y17449D01* X13033Y17445D01* X13026Y17439D01* X13020Y17433D01* X13016Y17425D01* X13013Y17417D01* X13004Y17391D01* X12993Y17366D01* X12980Y17343D01* X12965Y17320D01* X12948Y17299D01* X12929Y17280D01* X12924Y17276D01* Y17724D01* X12925Y17723D01* X12944Y17704D01* X12962Y17683D01* X12977Y17661D01* X12991Y17637D01* X13002Y17613D01* X13011Y17587D01* X13015Y17579D01* X13019Y17572D01* X13025Y17565D01* X13032Y17560D01* X13040Y17556D01* X13048Y17553D01* X13057Y17552D01* X13065Y17552D01* X13074Y17554D01* X13082Y17557D01* X13089Y17562D01* X13096Y17568D01* X13101Y17575D01* X13104Y17580D01* Y17428D01* G37* G36* Y40000D02*X14445D01* Y39859D01* X14442Y39864D01* X14436Y39871D01* X14429Y39876D01* X14422Y39880D01* X14413Y39883D01* X14405Y39884D01* X14396Y39884D01* X14388Y39882D01* X14353Y39870D01* X14321Y39855D01* X14289Y39837D01* X14260Y39816D01* X14232Y39793D01* X14207Y39767D01* X14184Y39739D01* X14164Y39709D01* X14146Y39677D01* X14132Y39644D01* X14120Y39610D01* X14118Y39601D01* X14118Y39593D01* X14119Y39584D01* X14122Y39576D01* X14127Y39568D01* X14132Y39561D01* X14139Y39556D01* X14146Y39551D01* X14154Y39548D01* X14163Y39546D01* X14172Y39546D01* X14180Y39547D01* X14188Y39550D01* X14196Y39555D01* X14203Y39560D01* X14209Y39567D01* X14213Y39574D01* X14216Y39582D01* X14225Y39608D01* X14236Y39633D01* X14249Y39657D01* X14264Y39679D01* X14281Y39700D01* X14300Y39719D01* X14321Y39737D01* X14343Y39752D01* X14367Y39766D01* X14391Y39777D01* X14417Y39786D01* X14425Y39790D01* X14432Y39794D01* X14439Y39800D01* X14444Y39807D01* X14445Y39809D01* Y39197D01* X14444Y39198D01* X14437Y39204D01* X14430Y39208D01* X14422Y39211D01* X14396Y39220D01* X14371Y39231D01* X14348Y39244D01* X14325Y39259D01* X14304Y39276D01* X14285Y39295D01* X14267Y39316D01* X14252Y39338D01* X14238Y39362D01* X14227Y39386D01* X14218Y39412D01* X14214Y39420D01* X14210Y39427D01* X14204Y39434D01* X14197Y39439D01* X14189Y39443D01* X14181Y39446D01* X14172Y39447D01* X14164Y39447D01* X14155Y39445D01* X14147Y39442D01* X14140Y39437D01* X14133Y39431D01* X14128Y39424D01* X14124Y39417D01* X14121Y39409D01* X14120Y39400D01* X14120Y39391D01* X14122Y39383D01* X14134Y39349D01* X14149Y39316D01* X14167Y39284D01* X14188Y39255D01* X14212Y39227D01* X14237Y39202D01* X14265Y39179D01* X14295Y39159D01* X14327Y39141D01* X14360Y39127D01* X14394Y39115D01* X14403Y39113D01* X14412Y39113D01* X14420Y39115D01* X14428Y39117D01* X14436Y39122D01* X14443Y39127D01* X14445Y39130D01* Y37878D01* X14442Y37880D01* X14433Y37883D01* X14425Y37884D01* X14416Y37884D01* X14408Y37882D01* X14373Y37870D01* X14341Y37855D01* X14309Y37837D01* X14280Y37816D01* X14252Y37793D01* X14227Y37767D01* X14204Y37739D01* X14184Y37709D01* X14166Y37677D01* X14152Y37644D01* X14140Y37610D01* X14138Y37601D01* X14138Y37593D01* X14139Y37584D01* X14142Y37576D01* X14147Y37568D01* X14152Y37561D01* X14159Y37556D01* X14166Y37551D01* X14174Y37548D01* X14183Y37546D01* X14192Y37546D01* X14200Y37547D01* X14208Y37550D01* X14216Y37555D01* X14223Y37560D01* X14229Y37567D01* X14233Y37574D01* X14236Y37582D01* X14245Y37608D01* X14256Y37633D01* X14269Y37657D01* X14284Y37679D01* X14301Y37700D01* X14320Y37719D01* X14341Y37737D01* X14363Y37752D01* X14387Y37766D01* X14411Y37777D01* X14437Y37786D01* X14445Y37790D01* X14445Y37790D01* Y37210D01* X14442Y37211D01* X14416Y37220D01* X14391Y37231D01* X14368Y37244D01* X14345Y37259D01* X14324Y37276D01* X14305Y37295D01* X14287Y37316D01* X14272Y37338D01* X14258Y37362D01* X14247Y37386D01* X14238Y37412D01* X14234Y37420D01* X14230Y37427D01* X14224Y37434D01* X14217Y37439D01* X14209Y37443D01* X14201Y37446D01* X14192Y37447D01* X14184Y37447D01* X14175Y37445D01* X14167Y37442D01* X14160Y37437D01* X14153Y37431D01* X14148Y37424D01* X14144Y37417D01* X14141Y37409D01* X14140Y37400D01* X14140Y37391D01* X14142Y37383D01* X14154Y37349D01* X14169Y37316D01* X14187Y37284D01* X14208Y37255D01* X14232Y37227D01* X14257Y37202D01* X14285Y37179D01* X14315Y37159D01* X14347Y37141D01* X14380Y37127D01* X14414Y37115D01* X14423Y37113D01* X14432Y37113D01* X14440Y37115D01* X14445Y37116D01* Y35884D01* X14445Y35884D01* X14436Y35884D01* X14428Y35882D01* X14393Y35870D01* X14361Y35855D01* X14329Y35837D01* X14300Y35816D01* X14272Y35793D01* X14247Y35767D01* X14224Y35739D01* X14204Y35709D01* X14186Y35677D01* X14172Y35644D01* X14160Y35610D01* X14158Y35601D01* X14158Y35593D01* X14159Y35584D01* X14162Y35576D01* X14167Y35568D01* X14172Y35561D01* X14179Y35556D01* X14186Y35551D01* X14194Y35548D01* X14203Y35546D01* X14212Y35546D01* X14220Y35547D01* X14228Y35550D01* X14236Y35555D01* X14243Y35560D01* X14249Y35567D01* X14253Y35574D01* X14256Y35582D01* X14265Y35608D01* X14276Y35633D01* X14289Y35657D01* X14304Y35679D01* X14321Y35700D01* X14340Y35719D01* X14361Y35737D01* X14383Y35752D01* X14407Y35766D01* X14431Y35777D01* X14445Y35782D01* Y35217D01* X14436Y35220D01* X14411Y35231D01* X14388Y35244D01* X14365Y35259D01* X14344Y35276D01* X14325Y35295D01* X14307Y35316D01* X14292Y35338D01* X14278Y35362D01* X14267Y35386D01* X14258Y35412D01* X14254Y35420D01* X14250Y35427D01* X14244Y35434D01* X14237Y35439D01* X14229Y35443D01* X14221Y35446D01* X14212Y35447D01* X14204Y35447D01* X14195Y35445D01* X14187Y35442D01* X14180Y35437D01* X14173Y35431D01* X14168Y35424D01* X14164Y35417D01* X14161Y35409D01* X14160Y35400D01* X14160Y35391D01* X14162Y35383D01* X14174Y35349D01* X14189Y35316D01* X14207Y35284D01* X14228Y35255D01* X14252Y35227D01* X14277Y35202D01* X14305Y35179D01* X14335Y35159D01* X14367Y35141D01* X14400Y35127D01* X14434Y35115D01* X14443Y35113D01* X14445D01* Y33881D01* X14413Y33870D01* X14381Y33855D01* X14349Y33837D01* X14320Y33816D01* X14292Y33793D01* X14267Y33767D01* X14244Y33739D01* X14224Y33709D01* X14206Y33677D01* X14192Y33644D01* X14180Y33610D01* X14178Y33601D01* X14178Y33593D01* X14179Y33584D01* X14182Y33576D01* X14187Y33568D01* X14192Y33561D01* X14199Y33556D01* X14206Y33551D01* X14214Y33548D01* X14223Y33546D01* X14232Y33546D01* X14240Y33547D01* X14248Y33550D01* X14256Y33555D01* X14263Y33560D01* X14269Y33567D01* X14273Y33574D01* X14276Y33582D01* X14285Y33608D01* X14296Y33633D01* X14309Y33657D01* X14324Y33679D01* X14341Y33700D01* X14360Y33719D01* X14381Y33737D01* X14403Y33752D01* X14427Y33766D01* X14445Y33775D01* Y33225D01* X14431Y33231D01* X14408Y33244D01* X14385Y33259D01* X14364Y33276D01* X14345Y33295D01* X14327Y33316D01* X14312Y33338D01* X14298Y33362D01* X14287Y33386D01* X14278Y33412D01* X14274Y33420D01* X14270Y33427D01* X14264Y33434D01* X14257Y33439D01* X14249Y33443D01* X14241Y33446D01* X14232Y33447D01* X14224Y33447D01* X14215Y33445D01* X14207Y33442D01* X14200Y33437D01* X14193Y33431D01* X14188Y33424D01* X14184Y33417D01* X14181Y33409D01* X14180Y33400D01* X14180Y33391D01* X14182Y33383D01* X14194Y33349D01* X14209Y33316D01* X14227Y33284D01* X14248Y33255D01* X14272Y33227D01* X14297Y33202D01* X14325Y33179D01* X14355Y33159D01* X14387Y33141D01* X14420Y33127D01* X14445Y33118D01* Y31874D01* X14433Y31870D01* X14401Y31855D01* X14369Y31837D01* X14340Y31816D01* X14312Y31793D01* X14287Y31767D01* X14264Y31739D01* X14244Y31709D01* X14226Y31677D01* X14212Y31644D01* X14200Y31610D01* X14198Y31601D01* X14198Y31593D01* X14199Y31584D01* X14202Y31576D01* X14207Y31568D01* X14212Y31561D01* X14219Y31556D01* X14226Y31551D01* X14234Y31548D01* X14243Y31546D01* X14252Y31546D01* X14260Y31547D01* X14268Y31550D01* X14276Y31555D01* X14283Y31560D01* X14289Y31567D01* X14293Y31574D01* X14296Y31582D01* X14305Y31608D01* X14316Y31633D01* X14329Y31657D01* X14344Y31679D01* X14361Y31700D01* X14380Y31719D01* X14401Y31737D01* X14423Y31752D01* X14445Y31765D01* Y31234D01* X14428Y31244D01* X14405Y31259D01* X14384Y31276D01* X14365Y31295D01* X14347Y31316D01* X14332Y31338D01* X14318Y31362D01* X14307Y31386D01* X14298Y31412D01* X14294Y31420D01* X14290Y31427D01* X14284Y31434D01* X14277Y31439D01* X14269Y31443D01* X14261Y31446D01* X14252Y31447D01* X14244Y31447D01* X14235Y31445D01* X14227Y31442D01* X14220Y31437D01* X14213Y31431D01* X14208Y31424D01* X14204Y31417D01* X14201Y31409D01* X14200Y31400D01* X14200Y31391D01* X14202Y31383D01* X14214Y31349D01* X14229Y31316D01* X14247Y31284D01* X14268Y31255D01* X14292Y31227D01* X14317Y31202D01* X14345Y31179D01* X14375Y31159D01* X14407Y31141D01* X14440Y31127D01* X14445Y31125D01* Y29866D01* X14421Y29855D01* X14389Y29837D01* X14360Y29816D01* X14332Y29793D01* X14307Y29767D01* X14284Y29739D01* X14264Y29709D01* X14246Y29677D01* X14232Y29644D01* X14220Y29610D01* X14218Y29601D01* X14218Y29593D01* X14219Y29584D01* X14222Y29576D01* X14227Y29568D01* X14232Y29561D01* X14239Y29556D01* X14246Y29551D01* X14254Y29548D01* X14263Y29546D01* X14272Y29546D01* X14280Y29547D01* X14288Y29550D01* X14296Y29555D01* X14303Y29560D01* X14309Y29567D01* X14313Y29574D01* X14316Y29582D01* X14325Y29608D01* X14336Y29633D01* X14349Y29657D01* X14364Y29679D01* X14381Y29700D01* X14400Y29719D01* X14421Y29737D01* X14443Y29752D01* X14445Y29754D01* Y29246D01* X14425Y29259D01* X14404Y29276D01* X14385Y29295D01* X14367Y29316D01* X14352Y29338D01* X14338Y29362D01* X14327Y29386D01* X14318Y29412D01* X14314Y29420D01* X14310Y29427D01* X14304Y29434D01* X14297Y29439D01* X14289Y29443D01* X14281Y29446D01* X14272Y29447D01* X14264Y29447D01* X14255Y29445D01* X14247Y29442D01* X14240Y29437D01* X14233Y29431D01* X14228Y29424D01* X14224Y29417D01* X14221Y29409D01* X14220Y29400D01* X14220Y29391D01* X14222Y29383D01* X14234Y29349D01* X14249Y29316D01* X14267Y29284D01* X14288Y29255D01* X14312Y29227D01* X14337Y29202D01* X14365Y29179D01* X14395Y29159D01* X14427Y29141D01* X14445Y29133D01* Y27857D01* X14441Y27855D01* X14409Y27837D01* X14380Y27816D01* X14352Y27793D01* X14327Y27767D01* X14304Y27739D01* X14284Y27709D01* X14266Y27677D01* X14252Y27644D01* X14240Y27610D01* X14238Y27601D01* X14238Y27593D01* X14239Y27584D01* X14242Y27576D01* X14247Y27568D01* X14252Y27561D01* X14259Y27556D01* X14266Y27551D01* X14274Y27548D01* X14283Y27546D01* X14292Y27546D01* X14300Y27547D01* X14308Y27550D01* X14316Y27555D01* X14323Y27560D01* X14329Y27567D01* X14333Y27574D01* X14336Y27582D01* X14345Y27608D01* X14356Y27633D01* X14369Y27657D01* X14384Y27679D01* X14401Y27700D01* X14420Y27719D01* X14441Y27737D01* X14445Y27740D01* Y27259D01* X14445Y27259D01* X14424Y27276D01* X14405Y27295D01* X14387Y27316D01* X14372Y27338D01* X14358Y27362D01* X14347Y27386D01* X14338Y27412D01* X14334Y27420D01* X14330Y27427D01* X14324Y27434D01* X14317Y27439D01* X14309Y27443D01* X14301Y27446D01* X14292Y27447D01* X14284Y27447D01* X14275Y27445D01* X14267Y27442D01* X14260Y27437D01* X14253Y27431D01* X14248Y27424D01* X14244Y27417D01* X14241Y27409D01* X14240Y27400D01* X14240Y27391D01* X14242Y27383D01* X14254Y27349D01* X14269Y27316D01* X14287Y27284D01* X14308Y27255D01* X14332Y27227D01* X14357Y27202D01* X14385Y27179D01* X14415Y27159D01* X14445Y27142D01* Y25846D01* X14429Y25837D01* X14400Y25816D01* X14372Y25793D01* X14347Y25767D01* X14324Y25739D01* X14304Y25709D01* X14286Y25677D01* X14272Y25644D01* X14260Y25610D01* X14258Y25601D01* X14258Y25593D01* X14259Y25584D01* X14262Y25576D01* X14267Y25568D01* X14272Y25561D01* X14279Y25556D01* X14286Y25551D01* X14294Y25548D01* X14303Y25546D01* X14312Y25546D01* X14320Y25547D01* X14328Y25550D01* X14336Y25555D01* X14343Y25560D01* X14349Y25567D01* X14353Y25574D01* X14356Y25582D01* X14365Y25608D01* X14376Y25633D01* X14389Y25657D01* X14404Y25679D01* X14421Y25700D01* X14440Y25719D01* X14445Y25723D01* Y25276D01* X14444Y25276D01* X14425Y25295D01* X14407Y25316D01* X14392Y25338D01* X14378Y25362D01* X14367Y25386D01* X14358Y25412D01* X14354Y25420D01* X14350Y25427D01* X14344Y25434D01* X14337Y25439D01* X14329Y25443D01* X14321Y25446D01* X14312Y25447D01* X14304Y25447D01* X14295Y25445D01* X14287Y25442D01* X14280Y25437D01* X14273Y25431D01* X14268Y25424D01* X14264Y25417D01* X14261Y25409D01* X14260Y25400D01* X14260Y25391D01* X14262Y25383D01* X14274Y25349D01* X14289Y25316D01* X14307Y25284D01* X14328Y25255D01* X14352Y25227D01* X14377Y25202D01* X14405Y25179D01* X14435Y25159D01* X14445Y25153D01* Y23834D01* X14420Y23816D01* X14392Y23793D01* X14367Y23767D01* X14344Y23739D01* X14324Y23709D01* X14306Y23677D01* X14292Y23644D01* X14280Y23610D01* X14278Y23601D01* X14278Y23593D01* X14279Y23584D01* X14282Y23576D01* X14287Y23568D01* X14292Y23561D01* X14299Y23556D01* X14306Y23551D01* X14314Y23548D01* X14323Y23546D01* X14332Y23546D01* X14340Y23547D01* X14348Y23550D01* X14356Y23555D01* X14363Y23560D01* X14369Y23567D01* X14373Y23574D01* X14376Y23582D01* X14385Y23608D01* X14396Y23633D01* X14409Y23657D01* X14424Y23679D01* X14441Y23700D01* X14445Y23704D01* Y23295D01* X14445Y23295D01* X14427Y23316D01* X14412Y23338D01* X14398Y23362D01* X14387Y23386D01* X14378Y23412D01* X14374Y23420D01* X14370Y23427D01* X14364Y23434D01* X14357Y23439D01* X14349Y23443D01* X14341Y23446D01* X14332Y23447D01* X14324Y23447D01* X14315Y23445D01* X14307Y23442D01* X14300Y23437D01* X14293Y23431D01* X14288Y23424D01* X14284Y23417D01* X14281Y23409D01* X14280Y23400D01* X14280Y23391D01* X14282Y23383D01* X14294Y23349D01* X14309Y23316D01* X14327Y23284D01* X14348Y23255D01* X14372Y23227D01* X14397Y23202D01* X14425Y23179D01* X14445Y23166D01* Y21820D01* X14440Y21816D01* X14412Y21793D01* X14387Y21767D01* X14364Y21739D01* X14344Y21709D01* X14326Y21677D01* X14312Y21644D01* X14300Y21610D01* X14298Y21601D01* X14298Y21593D01* X14299Y21584D01* X14302Y21576D01* X14307Y21568D01* X14312Y21561D01* X14319Y21556D01* X14326Y21551D01* X14334Y21548D01* X14343Y21546D01* X14352Y21546D01* X14360Y21547D01* X14368Y21550D01* X14376Y21555D01* X14383Y21560D01* X14389Y21567D01* X14393Y21574D01* X14396Y21582D01* X14405Y21608D01* X14416Y21633D01* X14429Y21657D01* X14444Y21679D01* X14445Y21680D01* Y21319D01* X14432Y21338D01* X14418Y21362D01* X14407Y21386D01* X14398Y21412D01* X14394Y21420D01* X14390Y21427D01* X14384Y21434D01* X14377Y21439D01* X14369Y21443D01* X14361Y21446D01* X14352Y21447D01* X14344Y21447D01* X14335Y21445D01* X14327Y21442D01* X14320Y21437D01* X14313Y21431D01* X14308Y21424D01* X14304Y21417D01* X14301Y21409D01* X14300Y21400D01* X14300Y21391D01* X14302Y21383D01* X14314Y21349D01* X14329Y21316D01* X14347Y21284D01* X14368Y21255D01* X14392Y21227D01* X14417Y21202D01* X14445Y21179D01* Y19804D01* X14432Y19793D01* X14407Y19767D01* X14384Y19739D01* X14364Y19709D01* X14346Y19677D01* X14332Y19644D01* X14320Y19610D01* X14318Y19601D01* X14318Y19593D01* X14319Y19584D01* X14322Y19576D01* X14327Y19568D01* X14332Y19561D01* X14339Y19556D01* X14346Y19551D01* X14354Y19548D01* X14363Y19546D01* X14372Y19546D01* X14380Y19547D01* X14388Y19550D01* X14396Y19555D01* X14403Y19560D01* X14409Y19567D01* X14413Y19574D01* X14416Y19582D01* X14425Y19608D01* X14436Y19633D01* X14445Y19650D01* Y19349D01* X14438Y19362D01* X14427Y19386D01* X14418Y19412D01* X14414Y19420D01* X14410Y19427D01* X14404Y19434D01* X14397Y19439D01* X14389Y19443D01* X14381Y19446D01* X14372Y19447D01* X14364Y19447D01* X14355Y19445D01* X14347Y19442D01* X14340Y19437D01* X14333Y19431D01* X14328Y19424D01* X14324Y19417D01* X14321Y19409D01* X14320Y19400D01* X14320Y19391D01* X14322Y19383D01* X14334Y19349D01* X14349Y19316D01* X14367Y19284D01* X14388Y19255D01* X14412Y19227D01* X14437Y19202D01* X14445Y19196D01* Y17785D01* X14427Y17767D01* X14404Y17739D01* X14384Y17709D01* X14366Y17677D01* X14352Y17644D01* X14340Y17610D01* X14338Y17601D01* X14338Y17593D01* X14339Y17584D01* X14342Y17576D01* X14347Y17568D01* X14352Y17561D01* X14359Y17556D01* X14366Y17551D01* X14374Y17548D01* X14383Y17546D01* X14392Y17546D01* X14400Y17547D01* X14408Y17550D01* X14416Y17555D01* X14423Y17560D01* X14429Y17567D01* X14433Y17574D01* X14436Y17582D01* X14445Y17608D01* X14445Y17609D01* Y17391D01* X14438Y17412D01* X14434Y17420D01* X14430Y17427D01* X14424Y17434D01* X14417Y17439D01* X14409Y17443D01* X14401Y17446D01* X14392Y17447D01* X14384Y17447D01* X14375Y17445D01* X14367Y17442D01* X14360Y17437D01* X14353Y17431D01* X14348Y17424D01* X14344Y17417D01* X14341Y17409D01* X14340Y17400D01* X14340Y17391D01* X14342Y17383D01* X14354Y17349D01* X14369Y17316D01* X14387Y17284D01* X14408Y17255D01* X14432Y17227D01* X14445Y17214D01* Y15765D01* X14424Y15739D01* X14404Y15709D01* X14386Y15677D01* X14372Y15644D01* X14360Y15610D01* X14358Y15601D01* X14358Y15593D01* X14359Y15584D01* X14362Y15576D01* X14367Y15568D01* X14372Y15561D01* X14379Y15556D01* X14386Y15551D01* X14394Y15548D01* X14403Y15546D01* X14412Y15546D01* X14420Y15547D01* X14428Y15550D01* X14436Y15555D01* X14443Y15560D01* X14445Y15563D01* Y15432D01* X14444Y15434D01* X14437Y15439D01* X14429Y15443D01* X14421Y15446D01* X14412Y15447D01* X14404Y15447D01* X14395Y15445D01* X14387Y15442D01* X14380Y15437D01* X14373Y15431D01* X14368Y15424D01* X14364Y15417D01* X14361Y15409D01* X14360Y15400D01* X14360Y15391D01* X14362Y15383D01* X14374Y15349D01* X14389Y15316D01* X14407Y15284D01* X14428Y15255D01* X14445Y15235D01* Y13740D01* X14444Y13739D01* X14424Y13709D01* X14406Y13677D01* X14392Y13644D01* X14380Y13610D01* X14378Y13601D01* X14378Y13593D01* X14379Y13584D01* X14382Y13576D01* X14387Y13568D01* X14392Y13561D01* X14399Y13556D01* X14406Y13551D01* X14414Y13548D01* X14423Y13546D01* X14432Y13546D01* X14440Y13547D01* X14445Y13549D01* Y13445D01* X14441Y13446D01* X14432Y13447D01* X14424Y13447D01* X14415Y13445D01* X14407Y13442D01* X14400Y13437D01* X14393Y13431D01* X14388Y13424D01* X14384Y13417D01* X14381Y13409D01* X14380Y13400D01* X14380Y13391D01* X14382Y13383D01* X14394Y13349D01* X14409Y13316D01* X14427Y13284D01* X14445Y13259D01* Y11711D01* X14444Y11709D01* X14426Y11677D01* X14412Y11644D01* X14400Y11610D01* X14398Y11601D01* X14398Y11593D01* X14399Y11584D01* X14402Y11576D01* X14407Y11568D01* X14412Y11561D01* X14419Y11556D01* X14426Y11551D01* X14434Y11548D01* X14443Y11546D01* X14445D01* Y11447D01* X14444Y11447D01* X14435Y11445D01* X14427Y11442D01* X14420Y11437D01* X14413Y11431D01* X14408Y11424D01* X14404Y11417D01* X14401Y11409D01* X14400Y11400D01* X14400Y11391D01* X14402Y11383D01* X14414Y11349D01* X14429Y11316D01* X14445Y11288D01* Y9675D01* X14432Y9644D01* X14420Y9610D01* X14418Y9601D01* X14418Y9593D01* X14419Y9584D01* X14422Y9576D01* X14427Y9568D01* X14432Y9561D01* X14439Y9556D01* X14445Y9552D01* Y9441D01* X14440Y9437D01* X14433Y9431D01* X14428Y9424D01* X14424Y9417D01* X14421Y9409D01* X14420Y9400D01* X14420Y9391D01* X14422Y9383D01* X14434Y9349D01* X14445Y9325D01* Y7625D01* X14440Y7610D01* X14438Y7601D01* X14438Y7593D01* X14439Y7584D01* X14442Y7576D01* X14445Y7571D01* Y7419D01* X14444Y7417D01* X14441Y7409D01* X14440Y7400D01* X14440Y7391D01* X14442Y7383D01* X14445Y7374D01* Y0D01* X13104D01* Y1165D01* X13129Y1183D01* X13157Y1207D01* X13182Y1232D01* X13205Y1260D01* X13225Y1290D01* X13243Y1322D01* X13257Y1355D01* X13269Y1389D01* X13271Y1398D01* X13271Y1407D01* X13270Y1415D01* X13267Y1423D01* X13262Y1431D01* X13257Y1438D01* X13250Y1444D01* X13243Y1448D01* X13235Y1451D01* X13226Y1453D01* X13217Y1453D01* X13209Y1452D01* X13201Y1449D01* X13193Y1445D01* X13186Y1439D01* X13180Y1433D01* X13176Y1425D01* X13173Y1417D01* X13164Y1391D01* X13153Y1366D01* X13140Y1343D01* X13125Y1320D01* X13108Y1299D01* X13104Y1295D01* Y1704D01* X13104Y1704D01* X13122Y1683D01* X13137Y1661D01* X13151Y1637D01* X13162Y1613D01* X13171Y1587D01* X13175Y1579D01* X13179Y1572D01* X13185Y1565D01* X13192Y1560D01* X13200Y1556D01* X13208Y1553D01* X13217Y1552D01* X13225Y1552D01* X13234Y1554D01* X13242Y1557D01* X13249Y1562D01* X13256Y1568D01* X13261Y1575D01* X13265Y1582D01* X13268Y1591D01* X13269Y1599D01* X13269Y1608D01* X13267Y1617D01* X13255Y1651D01* X13240Y1683D01* X13222Y1715D01* X13201Y1744D01* X13177Y1772D01* X13152Y1797D01* X13124Y1820D01* X13104Y1834D01* Y3180D01* X13109Y3183D01* X13137Y3207D01* X13162Y3232D01* X13185Y3260D01* X13205Y3290D01* X13223Y3322D01* X13237Y3355D01* X13249Y3389D01* X13251Y3398D01* X13251Y3407D01* X13250Y3415D01* X13247Y3423D01* X13242Y3431D01* X13237Y3438D01* X13230Y3444D01* X13223Y3448D01* X13215Y3451D01* X13206Y3453D01* X13197Y3453D01* X13189Y3452D01* X13181Y3449D01* X13173Y3445D01* X13166Y3439D01* X13160Y3433D01* X13156Y3425D01* X13153Y3417D01* X13144Y3391D01* X13133Y3366D01* X13120Y3343D01* X13105Y3320D01* X13104Y3319D01* Y3680D01* X13117Y3661D01* X13131Y3637D01* X13142Y3613D01* X13151Y3587D01* X13155Y3579D01* X13159Y3572D01* X13165Y3565D01* X13172Y3560D01* X13180Y3556D01* X13188Y3553D01* X13197Y3552D01* X13205Y3552D01* X13214Y3554D01* X13222Y3557D01* X13229Y3562D01* X13236Y3568D01* X13241Y3575D01* X13245Y3582D01* X13248Y3591D01* X13249Y3599D01* X13249Y3608D01* X13247Y3617D01* X13235Y3651D01* X13220Y3683D01* X13202Y3715D01* X13181Y3744D01* X13157Y3772D01* X13132Y3797D01* X13104Y3820D01* Y5196D01* X13117Y5207D01* X13142Y5232D01* X13165Y5260D01* X13185Y5290D01* X13203Y5322D01* X13217Y5355D01* X13229Y5389D01* X13231Y5398D01* X13231Y5407D01* X13230Y5415D01* X13227Y5423D01* X13222Y5431D01* X13217Y5438D01* X13210Y5444D01* X13203Y5448D01* X13195Y5451D01* X13186Y5453D01* X13177Y5453D01* X13169Y5452D01* X13161Y5449D01* X13153Y5445D01* X13146Y5439D01* X13140Y5433D01* X13136Y5425D01* X13133Y5417D01* X13124Y5391D01* X13113Y5366D01* X13104Y5350D01* Y5650D01* X13111Y5637D01* X13122Y5613D01* X13131Y5587D01* X13135Y5579D01* X13139Y5572D01* X13145Y5565D01* X13152Y5560D01* X13160Y5556D01* X13168Y5553D01* X13177Y5552D01* X13185Y5552D01* X13194Y5554D01* X13202Y5557D01* X13209Y5562D01* X13216Y5568D01* X13221Y5575D01* X13225Y5582D01* X13228Y5591D01* X13229Y5599D01* X13229Y5608D01* X13227Y5617D01* X13215Y5651D01* X13200Y5683D01* X13182Y5715D01* X13161Y5744D01* X13137Y5772D01* X13112Y5797D01* X13104Y5804D01* Y7214D01* X13122Y7232D01* X13145Y7260D01* X13165Y7290D01* X13183Y7322D01* X13197Y7355D01* X13209Y7389D01* X13211Y7398D01* X13211Y7407D01* X13210Y7415D01* X13207Y7423D01* X13202Y7431D01* X13197Y7438D01* X13190Y7444D01* X13183Y7448D01* X13175Y7451D01* X13166Y7453D01* X13157Y7453D01* X13149Y7452D01* X13141Y7449D01* X13133Y7445D01* X13126Y7439D01* X13120Y7433D01* X13116Y7425D01* X13113Y7417D01* X13104Y7391D01* X13104Y7391D01* Y7608D01* X13111Y7587D01* X13115Y7579D01* X13119Y7572D01* X13125Y7565D01* X13132Y7560D01* X13140Y7556D01* X13148Y7553D01* X13157Y7552D01* X13165Y7552D01* X13174Y7554D01* X13182Y7557D01* X13189Y7562D01* X13196Y7568D01* X13201Y7575D01* X13205Y7582D01* X13208Y7591D01* X13209Y7599D01* X13209Y7608D01* X13207Y7617D01* X13195Y7651D01* X13180Y7683D01* X13162Y7715D01* X13141Y7744D01* X13117Y7772D01* X13104Y7785D01* Y9235D01* X13125Y9260D01* X13145Y9290D01* X13163Y9322D01* X13177Y9355D01* X13189Y9389D01* X13191Y9398D01* X13191Y9407D01* X13190Y9415D01* X13187Y9423D01* X13182Y9431D01* X13177Y9438D01* X13170Y9444D01* X13163Y9448D01* X13155Y9451D01* X13146Y9453D01* X13137Y9453D01* X13129Y9452D01* X13121Y9449D01* X13113Y9445D01* X13106Y9439D01* X13104Y9437D01* Y9567D01* X13105Y9565D01* X13112Y9560D01* X13120Y9556D01* X13128Y9553D01* X13137Y9552D01* X13145Y9552D01* X13154Y9554D01* X13162Y9557D01* X13169Y9562D01* X13176Y9568D01* X13181Y9575D01* X13185Y9582D01* X13188Y9591D01* X13189Y9599D01* X13189Y9608D01* X13187Y9617D01* X13175Y9651D01* X13160Y9683D01* X13142Y9715D01* X13121Y9744D01* X13104Y9764D01* Y11259D01* X13105Y11260D01* X13125Y11290D01* X13143Y11322D01* X13157Y11355D01* X13169Y11389D01* X13171Y11398D01* X13171Y11407D01* X13170Y11415D01* X13167Y11423D01* X13162Y11431D01* X13157Y11438D01* X13150Y11444D01* X13143Y11448D01* X13135Y11451D01* X13126Y11453D01* X13117Y11453D01* X13109Y11452D01* X13104Y11450D01* Y11555D01* X13108Y11553D01* X13117Y11552D01* X13125Y11552D01* X13134Y11554D01* X13142Y11557D01* X13149Y11562D01* X13156Y11568D01* X13161Y11575D01* X13165Y11582D01* X13168Y11591D01* X13169Y11599D01* X13169Y11608D01* X13167Y11617D01* X13155Y11651D01* X13140Y11683D01* X13122Y11715D01* X13104Y11740D01* Y13288D01* X13105Y13290D01* X13123Y13322D01* X13137Y13355D01* X13149Y13389D01* X13151Y13398D01* X13151Y13407D01* X13150Y13415D01* X13147Y13423D01* X13142Y13431D01* X13137Y13438D01* X13130Y13444D01* X13123Y13448D01* X13115Y13451D01* X13106Y13453D01* X13104D01* Y13552D01* X13105D01* X13114Y13554D01* X13122Y13557D01* X13129Y13562D01* X13136Y13568D01* X13141Y13575D01* X13145Y13582D01* X13148Y13591D01* X13149Y13599D01* X13149Y13608D01* X13147Y13617D01* X13135Y13651D01* X13120Y13683D01* X13104Y13711D01* Y15324D01* X13117Y15355D01* X13129Y15389D01* X13131Y15398D01* X13131Y15407D01* X13130Y15415D01* X13127Y15423D01* X13122Y15431D01* X13117Y15438D01* X13110Y15444D01* X13104Y15447D01* Y15559D01* X13109Y15562D01* X13116Y15568D01* X13121Y15575D01* X13125Y15582D01* X13128Y15591D01* X13129Y15599D01* X13129Y15608D01* X13127Y15617D01* X13115Y15651D01* X13104Y15674D01* Y17374D01* X13109Y17389D01* X13111Y17398D01* X13111Y17407D01* X13110Y17415D01* X13107Y17423D01* X13104Y17428D01* Y17580D01* X13105Y17582D01* X13108Y17591D01* X13109Y17599D01* X13109Y17608D01* X13107Y17617D01* X13104Y17625D01* Y40000D01* G37* G36* X14445D02*X14625D01* Y39881D01* X14615Y39884D01* X14606Y39886D01* X14597Y39886D01* X14589Y39885D01* X14581Y39882D01* X14573Y39878D01* X14566Y39872D01* X14560Y39865D01* X14556Y39858D01* X14553Y39850D01* X14551Y39841D01* X14551Y39833D01* X14552Y39824D01* X14555Y39816D01* X14559Y39808D01* X14565Y39801D01* X14572Y39796D01* X14579Y39791D01* X14587Y39788D01* X14613Y39779D01* X14625Y39774D01* Y39225D01* X14618Y39222D01* X14592Y39213D01* X14584Y39209D01* X14577Y39205D01* X14570Y39199D01* X14565Y39192D01* X14561Y39184D01* X14558Y39176D01* X14557Y39167D01* X14557Y39159D01* X14559Y39150D01* X14562Y39142D01* X14567Y39135D01* X14573Y39128D01* X14580Y39123D01* X14587Y39119D01* X14596Y39116D01* X14604Y39115D01* X14613Y39115D01* X14621Y39117D01* X14625Y39118D01* Y37886D01* X14617Y37886D01* X14609Y37885D01* X14601Y37882D01* X14593Y37878D01* X14586Y37872D01* X14580Y37865D01* X14576Y37858D01* X14573Y37850D01* X14571Y37841D01* X14571Y37833D01* X14572Y37824D01* X14575Y37816D01* X14579Y37808D01* X14585Y37801D01* X14592Y37796D01* X14599Y37791D01* X14607Y37788D01* X14625Y37782D01* Y37217D01* X14612Y37213D01* X14604Y37209D01* X14597Y37205D01* X14590Y37199D01* X14585Y37192D01* X14581Y37184D01* X14578Y37176D01* X14577Y37167D01* X14577Y37159D01* X14579Y37150D01* X14582Y37142D01* X14587Y37135D01* X14593Y37128D01* X14600Y37123D01* X14607Y37119D01* X14616Y37116D01* X14624Y37115D01* X14625D01* Y35883D01* X14621Y35882D01* X14613Y35878D01* X14606Y35872D01* X14600Y35865D01* X14596Y35858D01* X14593Y35850D01* X14591Y35841D01* X14591Y35833D01* X14592Y35824D01* X14595Y35816D01* X14599Y35808D01* X14605Y35801D01* X14612Y35796D01* X14619Y35791D01* X14625Y35789D01* Y35210D01* X14624Y35209D01* X14617Y35205D01* X14610Y35199D01* X14605Y35192D01* X14601Y35184D01* X14598Y35176D01* X14597Y35167D01* X14597Y35159D01* X14599Y35150D01* X14602Y35142D01* X14607Y35135D01* X14613Y35128D01* X14620Y35123D01* X14625Y35120D01* Y33871D01* X14620Y33865D01* X14616Y33858D01* X14613Y33850D01* X14611Y33841D01* X14611Y33833D01* X14612Y33824D01* X14615Y33816D01* X14619Y33808D01* X14625Y33801D01* X14625Y33801D01* Y33192D01* X14625Y33192D01* X14621Y33184D01* X14618Y33176D01* X14617Y33167D01* X14617Y33159D01* X14619Y33150D01* X14622Y33142D01* X14625Y33138D01* Y21859D01* X14622Y21864D01* X14616Y21871D01* X14609Y21876D01* X14602Y21880D01* X14593Y21883D01* X14585Y21884D01* X14576Y21884D01* X14568Y21882D01* X14533Y21870D01* X14501Y21855D01* X14469Y21837D01* X14445Y21820D01* Y23166D01* X14455Y23159D01* X14487Y23141D01* X14520Y23127D01* X14554Y23115D01* X14563Y23113D01* X14572Y23113D01* X14580Y23115D01* X14588Y23117D01* X14596Y23122D01* X14603Y23127D01* X14609Y23134D01* X14613Y23141D01* X14616Y23149D01* X14618Y23158D01* X14618Y23167D01* X14617Y23175D01* X14614Y23183D01* X14610Y23191D01* X14604Y23198D01* X14597Y23204D01* X14590Y23208D01* X14582Y23211D01* X14556Y23220D01* X14531Y23231D01* X14508Y23244D01* X14485Y23259D01* X14464Y23276D01* X14445Y23295D01* Y23704D01* X14460Y23719D01* X14481Y23737D01* X14503Y23752D01* X14527Y23766D01* X14551Y23777D01* X14577Y23786D01* X14585Y23790D01* X14592Y23794D01* X14599Y23800D01* X14604Y23807D01* X14608Y23815D01* X14611Y23823D01* X14612Y23832D01* X14612Y23840D01* X14610Y23849D01* X14607Y23857D01* X14602Y23864D01* X14596Y23871D01* X14589Y23876D01* X14582Y23880D01* X14573Y23883D01* X14565Y23884D01* X14556Y23884D01* X14548Y23882D01* X14513Y23870D01* X14481Y23855D01* X14449Y23837D01* X14445Y23834D01* Y25153D01* X14467Y25141D01* X14500Y25127D01* X14534Y25115D01* X14543Y25113D01* X14552Y25113D01* X14560Y25115D01* X14568Y25117D01* X14576Y25122D01* X14583Y25127D01* X14589Y25134D01* X14593Y25141D01* X14596Y25149D01* X14598Y25158D01* X14598Y25167D01* X14597Y25175D01* X14594Y25183D01* X14590Y25191D01* X14584Y25198D01* X14577Y25204D01* X14570Y25208D01* X14562Y25211D01* X14536Y25220D01* X14511Y25231D01* X14488Y25244D01* X14465Y25259D01* X14445Y25276D01* Y25723D01* X14461Y25737D01* X14483Y25752D01* X14507Y25766D01* X14531Y25777D01* X14557Y25786D01* X14565Y25790D01* X14572Y25794D01* X14579Y25800D01* X14584Y25807D01* X14588Y25815D01* X14591Y25823D01* X14592Y25832D01* X14592Y25840D01* X14590Y25849D01* X14587Y25857D01* X14582Y25864D01* X14576Y25871D01* X14569Y25876D01* X14562Y25880D01* X14553Y25883D01* X14545Y25884D01* X14536Y25884D01* X14528Y25882D01* X14493Y25870D01* X14461Y25855D01* X14445Y25846D01* Y27142D01* X14447Y27141D01* X14480Y27127D01* X14514Y27115D01* X14523Y27113D01* X14532Y27113D01* X14540Y27115D01* X14548Y27117D01* X14556Y27122D01* X14563Y27127D01* X14569Y27134D01* X14573Y27141D01* X14576Y27149D01* X14578Y27158D01* X14578Y27167D01* X14577Y27175D01* X14574Y27183D01* X14570Y27191D01* X14564Y27198D01* X14557Y27204D01* X14550Y27208D01* X14542Y27211D01* X14516Y27220D01* X14491Y27231D01* X14468Y27244D01* X14445Y27259D01* Y27740D01* X14463Y27752D01* X14487Y27766D01* X14511Y27777D01* X14537Y27786D01* X14545Y27790D01* X14552Y27794D01* X14559Y27800D01* X14564Y27807D01* X14568Y27815D01* X14571Y27823D01* X14572Y27832D01* X14572Y27840D01* X14570Y27849D01* X14567Y27857D01* X14562Y27864D01* X14556Y27871D01* X14549Y27876D01* X14542Y27880D01* X14533Y27883D01* X14525Y27884D01* X14516Y27884D01* X14508Y27882D01* X14473Y27870D01* X14445Y27857D01* Y29133D01* X14460Y29127D01* X14494Y29115D01* X14503Y29113D01* X14512Y29113D01* X14520Y29115D01* X14528Y29117D01* X14536Y29122D01* X14543Y29127D01* X14549Y29134D01* X14553Y29141D01* X14556Y29149D01* X14558Y29158D01* X14558Y29167D01* X14557Y29175D01* X14554Y29183D01* X14550Y29191D01* X14544Y29198D01* X14537Y29204D01* X14530Y29208D01* X14522Y29211D01* X14496Y29220D01* X14471Y29231D01* X14448Y29244D01* X14445Y29246D01* Y29754D01* X14467Y29766D01* X14491Y29777D01* X14517Y29786D01* X14525Y29790D01* X14532Y29794D01* X14539Y29800D01* X14544Y29807D01* X14548Y29815D01* X14551Y29823D01* X14552Y29832D01* X14552Y29840D01* X14550Y29849D01* X14547Y29857D01* X14542Y29864D01* X14536Y29871D01* X14529Y29876D01* X14522Y29880D01* X14513Y29883D01* X14505Y29884D01* X14496Y29884D01* X14488Y29882D01* X14453Y29870D01* X14445Y29866D01* Y31125D01* X14474Y31115D01* X14483Y31113D01* X14492Y31113D01* X14500Y31115D01* X14508Y31117D01* X14516Y31122D01* X14523Y31127D01* X14529Y31134D01* X14533Y31141D01* X14536Y31149D01* X14538Y31158D01* X14538Y31167D01* X14537Y31175D01* X14534Y31183D01* X14530Y31191D01* X14524Y31198D01* X14517Y31204D01* X14510Y31208D01* X14502Y31211D01* X14476Y31220D01* X14451Y31231D01* X14445Y31234D01* Y31765D01* X14447Y31766D01* X14471Y31777D01* X14497Y31786D01* X14505Y31790D01* X14512Y31794D01* X14519Y31800D01* X14524Y31807D01* X14528Y31815D01* X14531Y31823D01* X14532Y31832D01* X14532Y31840D01* X14530Y31849D01* X14527Y31857D01* X14522Y31864D01* X14516Y31871D01* X14509Y31876D01* X14502Y31880D01* X14493Y31883D01* X14485Y31884D01* X14476Y31884D01* X14468Y31882D01* X14445Y31874D01* Y33118D01* X14454Y33115D01* X14463Y33113D01* X14472Y33113D01* X14480Y33115D01* X14488Y33117D01* X14496Y33122D01* X14503Y33127D01* X14509Y33134D01* X14513Y33141D01* X14516Y33149D01* X14518Y33158D01* X14518Y33167D01* X14517Y33175D01* X14514Y33183D01* X14510Y33191D01* X14504Y33198D01* X14497Y33204D01* X14490Y33208D01* X14482Y33211D01* X14456Y33220D01* X14445Y33225D01* Y33775D01* X14451Y33777D01* X14477Y33786D01* X14485Y33790D01* X14492Y33794D01* X14499Y33800D01* X14504Y33807D01* X14508Y33815D01* X14511Y33823D01* X14512Y33832D01* X14512Y33840D01* X14510Y33849D01* X14507Y33857D01* X14502Y33864D01* X14496Y33871D01* X14489Y33876D01* X14482Y33880D01* X14473Y33883D01* X14465Y33884D01* X14456Y33884D01* X14448Y33882D01* X14445Y33881D01* Y35113D01* X14452Y35113D01* X14460Y35115D01* X14468Y35117D01* X14476Y35122D01* X14483Y35127D01* X14489Y35134D01* X14493Y35141D01* X14496Y35149D01* X14498Y35158D01* X14498Y35167D01* X14497Y35175D01* X14494Y35183D01* X14490Y35191D01* X14484Y35198D01* X14477Y35204D01* X14470Y35208D01* X14462Y35211D01* X14445Y35217D01* Y35782D01* X14457Y35786D01* X14465Y35790D01* X14472Y35794D01* X14479Y35800D01* X14484Y35807D01* X14488Y35815D01* X14491Y35823D01* X14492Y35832D01* X14492Y35840D01* X14490Y35849D01* X14487Y35857D01* X14482Y35864D01* X14476Y35871D01* X14469Y35876D01* X14462Y35880D01* X14453Y35883D01* X14445Y35884D01* Y37116D01* X14448Y37117D01* X14456Y37122D01* X14463Y37127D01* X14469Y37134D01* X14473Y37141D01* X14476Y37149D01* X14478Y37158D01* X14478Y37167D01* X14477Y37175D01* X14474Y37183D01* X14470Y37191D01* X14464Y37198D01* X14457Y37204D01* X14450Y37208D01* X14445Y37210D01* Y37790D01* X14452Y37794D01* X14459Y37800D01* X14464Y37807D01* X14468Y37815D01* X14471Y37823D01* X14472Y37832D01* X14472Y37840D01* X14470Y37849D01* X14467Y37857D01* X14462Y37864D01* X14456Y37871D01* X14449Y37876D01* X14445Y37878D01* Y39130D01* X14449Y39134D01* X14453Y39141D01* X14456Y39149D01* X14458Y39158D01* X14458Y39167D01* X14457Y39175D01* X14454Y39183D01* X14450Y39191D01* X14445Y39197D01* Y39809D01* X14448Y39815D01* X14451Y39823D01* X14452Y39832D01* X14452Y39840D01* X14450Y39849D01* X14447Y39857D01* X14445Y39859D01* Y40000D01* G37* G36* X14625Y0D02*X14445D01* Y7374D01* X14454Y7349D01* X14469Y7316D01* X14487Y7284D01* X14508Y7255D01* X14532Y7227D01* X14557Y7202D01* X14585Y7179D01* X14615Y7159D01* X14625Y7153D01* Y5834D01* X14600Y5816D01* X14572Y5793D01* X14547Y5767D01* X14524Y5739D01* X14504Y5709D01* X14486Y5677D01* X14472Y5644D01* X14460Y5610D01* X14458Y5601D01* X14458Y5593D01* X14459Y5584D01* X14462Y5576D01* X14467Y5568D01* X14472Y5561D01* X14479Y5556D01* X14486Y5551D01* X14494Y5548D01* X14503Y5546D01* X14512Y5546D01* X14520Y5547D01* X14528Y5550D01* X14536Y5555D01* X14543Y5560D01* X14549Y5567D01* X14553Y5574D01* X14556Y5582D01* X14565Y5608D01* X14576Y5633D01* X14589Y5657D01* X14604Y5679D01* X14621Y5700D01* X14625Y5704D01* Y5295D01* X14625Y5295D01* X14607Y5316D01* X14592Y5338D01* X14578Y5362D01* X14567Y5386D01* X14558Y5412D01* X14554Y5420D01* X14550Y5427D01* X14544Y5434D01* X14537Y5439D01* X14529Y5443D01* X14521Y5446D01* X14512Y5447D01* X14504Y5447D01* X14495Y5445D01* X14487Y5442D01* X14480Y5437D01* X14473Y5431D01* X14468Y5424D01* X14464Y5417D01* X14461Y5409D01* X14460Y5400D01* X14460Y5391D01* X14462Y5383D01* X14474Y5349D01* X14489Y5316D01* X14507Y5284D01* X14528Y5255D01* X14552Y5227D01* X14577Y5202D01* X14605Y5179D01* X14625Y5166D01* Y3820D01* X14620Y3816D01* X14592Y3793D01* X14567Y3767D01* X14544Y3739D01* X14524Y3709D01* X14506Y3677D01* X14492Y3644D01* X14480Y3610D01* X14478Y3601D01* X14478Y3593D01* X14479Y3584D01* X14482Y3576D01* X14487Y3568D01* X14492Y3561D01* X14499Y3556D01* X14506Y3551D01* X14514Y3548D01* X14523Y3546D01* X14532Y3546D01* X14540Y3547D01* X14548Y3550D01* X14556Y3555D01* X14563Y3560D01* X14569Y3567D01* X14573Y3574D01* X14576Y3582D01* X14585Y3608D01* X14596Y3633D01* X14609Y3657D01* X14624Y3679D01* X14625Y3680D01* Y3319D01* X14612Y3338D01* X14598Y3362D01* X14587Y3386D01* X14578Y3412D01* X14574Y3420D01* X14570Y3427D01* X14564Y3434D01* X14557Y3439D01* X14549Y3443D01* X14541Y3446D01* X14532Y3447D01* X14524Y3447D01* X14515Y3445D01* X14507Y3442D01* X14500Y3437D01* X14493Y3431D01* X14488Y3424D01* X14484Y3417D01* X14481Y3409D01* X14480Y3400D01* X14480Y3391D01* X14482Y3383D01* X14494Y3349D01* X14509Y3316D01* X14527Y3284D01* X14548Y3255D01* X14572Y3227D01* X14597Y3202D01* X14625Y3179D01* Y1804D01* X14612Y1793D01* X14587Y1767D01* X14564Y1739D01* X14544Y1709D01* X14526Y1677D01* X14512Y1644D01* X14500Y1610D01* X14498Y1601D01* X14498Y1593D01* X14499Y1584D01* X14502Y1576D01* X14507Y1568D01* X14512Y1561D01* X14519Y1556D01* X14526Y1551D01* X14534Y1548D01* X14543Y1546D01* X14552Y1546D01* X14560Y1547D01* X14568Y1550D01* X14576Y1555D01* X14583Y1560D01* X14589Y1567D01* X14593Y1574D01* X14596Y1582D01* X14605Y1608D01* X14616Y1633D01* X14625Y1650D01* Y1349D01* X14618Y1362D01* X14607Y1386D01* X14598Y1412D01* X14594Y1420D01* X14590Y1427D01* X14584Y1434D01* X14577Y1439D01* X14569Y1443D01* X14561Y1446D01* X14552Y1447D01* X14544Y1447D01* X14535Y1445D01* X14527Y1442D01* X14520Y1437D01* X14513Y1431D01* X14508Y1424D01* X14504Y1417D01* X14501Y1409D01* X14500Y1400D01* X14500Y1391D01* X14502Y1383D01* X14514Y1349D01* X14529Y1316D01* X14547Y1284D01* X14568Y1255D01* X14592Y1227D01* X14617Y1202D01* X14625Y1196D01* Y0D01* G37* G36* Y7276D02*X14624Y7276D01* X14605Y7295D01* X14587Y7316D01* X14572Y7338D01* X14558Y7362D01* X14547Y7386D01* X14538Y7412D01* X14534Y7420D01* X14530Y7427D01* X14524Y7434D01* X14517Y7439D01* X14509Y7443D01* X14501Y7446D01* X14492Y7447D01* X14484Y7447D01* X14475Y7445D01* X14467Y7442D01* X14460Y7437D01* X14453Y7431D01* X14448Y7424D01* X14445Y7419D01* Y7571D01* X14447Y7568D01* X14452Y7561D01* X14459Y7556D01* X14466Y7551D01* X14474Y7548D01* X14483Y7546D01* X14492Y7546D01* X14500Y7547D01* X14508Y7550D01* X14516Y7555D01* X14523Y7560D01* X14529Y7567D01* X14533Y7574D01* X14536Y7582D01* X14545Y7608D01* X14556Y7633D01* X14569Y7657D01* X14584Y7679D01* X14601Y7700D01* X14620Y7719D01* X14625Y7723D01* Y7276D01* G37* G36* Y7846D02*X14609Y7837D01* X14580Y7816D01* X14552Y7793D01* X14527Y7767D01* X14504Y7739D01* X14484Y7709D01* X14466Y7677D01* X14452Y7644D01* X14445Y7625D01* Y9325D01* X14449Y9316D01* X14467Y9284D01* X14488Y9255D01* X14512Y9227D01* X14537Y9202D01* X14565Y9179D01* X14595Y9159D01* X14625Y9142D01* Y7846D01* G37* G36* Y9259D02*X14625Y9259D01* X14604Y9276D01* X14585Y9295D01* X14567Y9316D01* X14552Y9338D01* X14538Y9362D01* X14527Y9386D01* X14518Y9412D01* X14514Y9420D01* X14510Y9427D01* X14504Y9434D01* X14497Y9439D01* X14489Y9443D01* X14481Y9446D01* X14472Y9447D01* X14464Y9447D01* X14455Y9445D01* X14447Y9442D01* X14445Y9441D01* Y9552D01* X14446Y9551D01* X14454Y9548D01* X14463Y9546D01* X14472Y9546D01* X14480Y9547D01* X14488Y9550D01* X14496Y9555D01* X14503Y9560D01* X14509Y9567D01* X14513Y9574D01* X14516Y9582D01* X14525Y9608D01* X14536Y9633D01* X14549Y9657D01* X14564Y9679D01* X14581Y9700D01* X14600Y9719D01* X14621Y9737D01* X14625Y9740D01* Y9259D01* G37* G36* Y9857D02*X14621Y9855D01* X14589Y9837D01* X14560Y9816D01* X14532Y9793D01* X14507Y9767D01* X14484Y9739D01* X14464Y9709D01* X14446Y9677D01* X14445Y9675D01* Y11288D01* X14447Y11284D01* X14468Y11255D01* X14492Y11227D01* X14517Y11202D01* X14545Y11179D01* X14575Y11159D01* X14607Y11141D01* X14625Y11133D01* Y9857D01* G37* G36* Y11246D02*X14605Y11259D01* X14584Y11276D01* X14565Y11295D01* X14547Y11316D01* X14532Y11338D01* X14518Y11362D01* X14507Y11386D01* X14498Y11412D01* X14494Y11420D01* X14490Y11427D01* X14484Y11434D01* X14477Y11439D01* X14469Y11443D01* X14461Y11446D01* X14452Y11447D01* X14445Y11447D01* Y11546D01* X14452Y11546D01* X14460Y11547D01* X14468Y11550D01* X14476Y11555D01* X14483Y11560D01* X14489Y11567D01* X14493Y11574D01* X14496Y11582D01* X14505Y11608D01* X14516Y11633D01* X14529Y11657D01* X14544Y11679D01* X14561Y11700D01* X14580Y11719D01* X14601Y11737D01* X14623Y11752D01* X14625Y11754D01* Y11246D01* G37* G36* Y11866D02*X14601Y11855D01* X14569Y11837D01* X14540Y11816D01* X14512Y11793D01* X14487Y11767D01* X14464Y11739D01* X14445Y11711D01* Y13259D01* X14448Y13255D01* X14472Y13227D01* X14497Y13202D01* X14525Y13179D01* X14555Y13159D01* X14587Y13141D01* X14620Y13127D01* X14625Y13125D01* Y11866D01* G37* G36* Y13234D02*X14608Y13244D01* X14585Y13259D01* X14564Y13276D01* X14545Y13295D01* X14527Y13316D01* X14512Y13338D01* X14498Y13362D01* X14487Y13386D01* X14478Y13412D01* X14474Y13420D01* X14470Y13427D01* X14464Y13434D01* X14457Y13439D01* X14449Y13443D01* X14445Y13445D01* Y13549D01* X14448Y13550D01* X14456Y13555D01* X14463Y13560D01* X14469Y13567D01* X14473Y13574D01* X14476Y13582D01* X14485Y13608D01* X14496Y13633D01* X14509Y13657D01* X14524Y13679D01* X14541Y13700D01* X14560Y13719D01* X14581Y13737D01* X14603Y13752D01* X14625Y13765D01* Y13234D01* G37* G36* Y13874D02*X14613Y13870D01* X14581Y13855D01* X14549Y13837D01* X14520Y13816D01* X14492Y13793D01* X14467Y13767D01* X14445Y13740D01* Y15235D01* X14452Y15227D01* X14477Y15202D01* X14505Y15179D01* X14535Y15159D01* X14567Y15141D01* X14600Y15127D01* X14625Y15118D01* Y13874D01* G37* G36* Y15225D02*X14611Y15231D01* X14588Y15244D01* X14565Y15259D01* X14544Y15276D01* X14525Y15295D01* X14507Y15316D01* X14492Y15338D01* X14478Y15362D01* X14467Y15386D01* X14458Y15412D01* X14454Y15420D01* X14450Y15427D01* X14445Y15432D01* Y15563D01* X14449Y15567D01* X14453Y15574D01* X14456Y15582D01* X14465Y15608D01* X14476Y15633D01* X14489Y15657D01* X14504Y15679D01* X14521Y15700D01* X14540Y15719D01* X14561Y15737D01* X14583Y15752D01* X14607Y15766D01* X14625Y15775D01* Y15225D01* G37* G36* Y15881D02*X14593Y15870D01* X14561Y15855D01* X14529Y15837D01* X14500Y15816D01* X14472Y15793D01* X14447Y15767D01* X14445Y15765D01* Y17214D01* X14457Y17202D01* X14485Y17179D01* X14515Y17159D01* X14547Y17141D01* X14580Y17127D01* X14614Y17115D01* X14623Y17113D01* X14625D01* Y15881D01* G37* G36* Y17217D02*X14616Y17220D01* X14591Y17231D01* X14568Y17244D01* X14545Y17259D01* X14524Y17276D01* X14505Y17295D01* X14487Y17316D01* X14472Y17338D01* X14458Y17362D01* X14447Y17386D01* X14445Y17391D01* Y17609D01* X14456Y17633D01* X14469Y17657D01* X14484Y17679D01* X14501Y17700D01* X14520Y17719D01* X14541Y17737D01* X14563Y17752D01* X14587Y17766D01* X14611Y17777D01* X14625Y17782D01* Y17217D01* G37* G36* Y17884D02*X14625Y17884D01* X14616Y17884D01* X14608Y17882D01* X14573Y17870D01* X14541Y17855D01* X14509Y17837D01* X14480Y17816D01* X14452Y17793D01* X14445Y17785D01* Y19196D01* X14465Y19179D01* X14495Y19159D01* X14527Y19141D01* X14560Y19127D01* X14594Y19115D01* X14603Y19113D01* X14612Y19113D01* X14620Y19115D01* X14625Y19116D01* Y17884D01* G37* G36* Y19210D02*X14622Y19211D01* X14596Y19220D01* X14571Y19231D01* X14548Y19244D01* X14525Y19259D01* X14504Y19276D01* X14485Y19295D01* X14467Y19316D01* X14452Y19338D01* X14445Y19349D01* Y19650D01* X14449Y19657D01* X14464Y19679D01* X14481Y19700D01* X14500Y19719D01* X14521Y19737D01* X14543Y19752D01* X14567Y19766D01* X14591Y19777D01* X14617Y19786D01* X14625Y19790D01* X14625Y19790D01* Y19210D01* G37* G36* Y19878D02*X14622Y19880D01* X14613Y19883D01* X14605Y19884D01* X14596Y19884D01* X14588Y19882D01* X14553Y19870D01* X14521Y19855D01* X14489Y19837D01* X14460Y19816D01* X14445Y19804D01* Y21179D01* X14445Y21179D01* X14475Y21159D01* X14507Y21141D01* X14540Y21127D01* X14574Y21115D01* X14583Y21113D01* X14592Y21113D01* X14600Y21115D01* X14608Y21117D01* X14616Y21122D01* X14623Y21127D01* X14625Y21130D01* Y19878D01* G37* G36* Y21197D02*X14624Y21198D01* X14617Y21204D01* X14610Y21208D01* X14602Y21211D01* X14576Y21220D01* X14551Y21231D01* X14528Y21244D01* X14505Y21259D01* X14484Y21276D01* X14465Y21295D01* X14447Y21316D01* X14445Y21319D01* Y21680D01* X14461Y21700D01* X14480Y21719D01* X14501Y21737D01* X14523Y21752D01* X14547Y21766D01* X14571Y21777D01* X14597Y21786D01* X14605Y21790D01* X14612Y21794D01* X14619Y21800D01* X14624Y21807D01* X14625Y21809D01* Y21197D01* G37* G36* Y40000D02*X14884D01* Y39625D01* X14875Y39651D01* X14860Y39683D01* X14842Y39715D01* X14821Y39744D01* X14797Y39772D01* X14772Y39797D01* X14744Y39820D01* X14714Y39840D01* X14682Y39858D01* X14649Y39873D01* X14625Y39881D01* Y40000D01* G37* G36* Y39774D02*X14638Y39768D01* X14661Y39755D01* X14684Y39740D01* X14705Y39723D01* X14724Y39704D01* X14742Y39683D01* X14757Y39661D01* X14771Y39637D01* X14782Y39613D01* X14791Y39587D01* X14795Y39579D01* X14799Y39572D01* X14805Y39565D01* X14812Y39560D01* X14820Y39556D01* X14828Y39553D01* X14837Y39552D01* X14845Y39552D01* X14854Y39554D01* X14862Y39557D01* X14869Y39562D01* X14876Y39568D01* X14881Y39575D01* X14884Y39580D01* Y39428D01* X14882Y39431D01* X14877Y39438D01* X14870Y39444D01* X14863Y39448D01* X14855Y39451D01* X14846Y39453D01* X14837Y39453D01* X14829Y39452D01* X14821Y39449D01* X14813Y39445D01* X14806Y39439D01* X14800Y39433D01* X14796Y39425D01* X14793Y39417D01* X14784Y39391D01* X14773Y39366D01* X14760Y39343D01* X14745Y39320D01* X14728Y39299D01* X14709Y39280D01* X14688Y39262D01* X14666Y39247D01* X14642Y39233D01* X14625Y39225D01* Y39774D01* G37* G36* Y39118D02*X14656Y39129D01* X14688Y39144D01* X14720Y39162D01* X14749Y39183D01* X14777Y39207D01* X14802Y39232D01* X14825Y39260D01* X14845Y39290D01* X14863Y39322D01* X14877Y39355D01* X14884Y39374D01* Y37674D01* X14880Y37683D01* X14862Y37715D01* X14841Y37744D01* X14817Y37772D01* X14792Y37797D01* X14764Y37820D01* X14734Y37840D01* X14702Y37858D01* X14669Y37873D01* X14635Y37884D01* X14626Y37886D01* X14625D01* Y39118D01* G37* G36* Y37782D02*X14633Y37779D01* X14658Y37768D01* X14681Y37755D01* X14704Y37740D01* X14725Y37723D01* X14744Y37704D01* X14762Y37683D01* X14777Y37661D01* X14791Y37637D01* X14802Y37613D01* X14811Y37587D01* X14815Y37579D01* X14819Y37572D01* X14825Y37565D01* X14832Y37560D01* X14840Y37556D01* X14848Y37553D01* X14857Y37552D01* X14865Y37552D01* X14874Y37554D01* X14882Y37557D01* X14884Y37559D01* Y37447D01* X14883Y37448D01* X14875Y37451D01* X14866Y37453D01* X14857Y37453D01* X14849Y37452D01* X14841Y37449D01* X14833Y37445D01* X14826Y37439D01* X14820Y37433D01* X14816Y37425D01* X14813Y37417D01* X14804Y37391D01* X14793Y37366D01* X14780Y37343D01* X14765Y37320D01* X14748Y37299D01* X14729Y37280D01* X14708Y37262D01* X14686Y37247D01* X14662Y37233D01* X14638Y37222D01* X14625Y37217D01* Y37782D01* G37* G36* Y37115D02*X14633Y37115D01* X14641Y37117D01* X14676Y37129D01* X14708Y37144D01* X14740Y37162D01* X14769Y37183D01* X14797Y37207D01* X14822Y37232D01* X14845Y37260D01* X14865Y37290D01* X14883Y37322D01* X14884Y37324D01* Y35711D01* X14882Y35715D01* X14861Y35744D01* X14837Y35772D01* X14812Y35797D01* X14784Y35820D01* X14754Y35840D01* X14722Y35858D01* X14689Y35873D01* X14655Y35884D01* X14646Y35886D01* X14637Y35886D01* X14629Y35885D01* X14625Y35883D01* Y37115D01* G37* G36* Y35789D02*X14627Y35788D01* X14653Y35779D01* X14678Y35768D01* X14701Y35755D01* X14724Y35740D01* X14745Y35723D01* X14764Y35704D01* X14782Y35683D01* X14797Y35661D01* X14811Y35637D01* X14822Y35613D01* X14831Y35587D01* X14835Y35579D01* X14839Y35572D01* X14845Y35565D01* X14852Y35560D01* X14860Y35556D01* X14868Y35553D01* X14877Y35552D01* X14884Y35552D01* Y35453D01* X14877Y35453D01* X14869Y35452D01* X14861Y35449D01* X14853Y35445D01* X14846Y35439D01* X14840Y35433D01* X14836Y35425D01* X14833Y35417D01* X14824Y35391D01* X14813Y35366D01* X14800Y35343D01* X14785Y35320D01* X14768Y35299D01* X14749Y35280D01* X14728Y35262D01* X14706Y35247D01* X14682Y35233D01* X14658Y35222D01* X14632Y35213D01* X14625Y35210D01* Y35789D01* G37* G36* Y35120D02*X14627Y35119D01* X14636Y35116D01* X14644Y35115D01* X14653Y35115D01* X14661Y35117D01* X14696Y35129D01* X14728Y35144D01* X14760Y35162D01* X14789Y35183D01* X14817Y35207D01* X14842Y35232D01* X14865Y35260D01* X14884Y35288D01* Y33740D01* X14881Y33744D01* X14857Y33772D01* X14832Y33797D01* X14804Y33820D01* X14774Y33840D01* X14742Y33858D01* X14709Y33873D01* X14675Y33884D01* X14666Y33886D01* X14657Y33886D01* X14649Y33885D01* X14641Y33882D01* X14633Y33878D01* X14626Y33872D01* X14625Y33871D01* Y35120D01* G37* G36* Y33801D02*X14632Y33796D01* X14639Y33791D01* X14647Y33788D01* X14673Y33779D01* X14698Y33768D01* X14721Y33755D01* X14744Y33740D01* X14765Y33723D01* X14784Y33704D01* X14802Y33683D01* X14817Y33661D01* X14831Y33637D01* X14842Y33613D01* X14851Y33587D01* X14855Y33579D01* X14859Y33572D01* X14865Y33565D01* X14872Y33560D01* X14880Y33556D01* X14884Y33555D01* Y33450D01* X14881Y33449D01* X14873Y33445D01* X14866Y33439D01* X14860Y33433D01* X14856Y33425D01* X14853Y33417D01* X14844Y33391D01* X14833Y33366D01* X14820Y33343D01* X14805Y33320D01* X14788Y33299D01* X14769Y33280D01* X14748Y33262D01* X14726Y33247D01* X14702Y33233D01* X14678Y33222D01* X14652Y33213D01* X14644Y33209D01* X14637Y33205D01* X14630Y33199D01* X14625Y33192D01* Y33801D01* G37* G36* Y33138D02*X14627Y33135D01* X14633Y33128D01* X14640Y33123D01* X14647Y33119D01* X14656Y33116D01* X14664Y33115D01* X14673Y33115D01* X14681Y33117D01* X14716Y33129D01* X14748Y33144D01* X14780Y33162D01* X14809Y33183D01* X14837Y33207D01* X14862Y33232D01* X14884Y33259D01* Y31764D01* X14877Y31772D01* X14852Y31797D01* X14824Y31820D01* X14794Y31840D01* X14762Y31858D01* X14729Y31873D01* X14695Y31884D01* X14686Y31886D01* X14677Y31886D01* X14669Y31885D01* X14661Y31882D01* X14653Y31878D01* X14646Y31872D01* X14640Y31865D01* X14636Y31858D01* X14633Y31850D01* X14631Y31841D01* X14631Y31833D01* X14632Y31824D01* X14635Y31816D01* X14639Y31808D01* X14645Y31801D01* X14652Y31796D01* X14659Y31791D01* X14667Y31788D01* X14693Y31779D01* X14718Y31768D01* X14741Y31755D01* X14764Y31740D01* X14785Y31723D01* X14804Y31704D01* X14822Y31683D01* X14837Y31661D01* X14851Y31637D01* X14862Y31613D01* X14871Y31587D01* X14875Y31579D01* X14879Y31572D01* X14884Y31567D01* Y31437D01* X14880Y31433D01* X14876Y31425D01* X14873Y31417D01* X14864Y31391D01* X14853Y31366D01* X14840Y31343D01* X14825Y31320D01* X14808Y31299D01* X14789Y31280D01* X14768Y31262D01* X14746Y31247D01* X14722Y31233D01* X14698Y31222D01* X14672Y31213D01* X14664Y31209D01* X14657Y31205D01* X14650Y31199D01* X14645Y31192D01* X14641Y31184D01* X14638Y31176D01* X14637Y31167D01* X14637Y31159D01* X14639Y31150D01* X14642Y31142D01* X14647Y31135D01* X14653Y31128D01* X14660Y31123D01* X14667Y31119D01* X14676Y31116D01* X14684Y31115D01* X14693Y31115D01* X14701Y31117D01* X14736Y31129D01* X14768Y31144D01* X14800Y31162D01* X14829Y31183D01* X14857Y31207D01* X14882Y31232D01* X14884Y31235D01* Y29785D01* X14872Y29797D01* X14844Y29820D01* X14814Y29840D01* X14782Y29858D01* X14749Y29873D01* X14715Y29884D01* X14706Y29886D01* X14697Y29886D01* X14689Y29885D01* X14681Y29882D01* X14673Y29878D01* X14666Y29872D01* X14660Y29865D01* X14656Y29858D01* X14653Y29850D01* X14651Y29841D01* X14651Y29833D01* X14652Y29824D01* X14655Y29816D01* X14659Y29808D01* X14665Y29801D01* X14672Y29796D01* X14679Y29791D01* X14687Y29788D01* X14713Y29779D01* X14738Y29768D01* X14761Y29755D01* X14784Y29740D01* X14805Y29723D01* X14824Y29704D01* X14842Y29683D01* X14857Y29661D01* X14871Y29637D01* X14882Y29613D01* X14884Y29608D01* Y29391D01* X14873Y29366D01* X14860Y29343D01* X14845Y29320D01* X14828Y29299D01* X14809Y29280D01* X14788Y29262D01* X14766Y29247D01* X14742Y29233D01* X14718Y29222D01* X14692Y29213D01* X14684Y29209D01* X14677Y29205D01* X14670Y29199D01* X14665Y29192D01* X14661Y29184D01* X14658Y29176D01* X14657Y29167D01* X14657Y29159D01* X14659Y29150D01* X14662Y29142D01* X14667Y29135D01* X14673Y29128D01* X14680Y29123D01* X14687Y29119D01* X14696Y29116D01* X14704Y29115D01* X14713Y29115D01* X14721Y29117D01* X14756Y29129D01* X14788Y29144D01* X14820Y29162D01* X14849Y29183D01* X14877Y29207D01* X14884Y29214D01* Y27804D01* X14864Y27820D01* X14834Y27840D01* X14802Y27858D01* X14769Y27873D01* X14735Y27884D01* X14726Y27886D01* X14717Y27886D01* X14709Y27885D01* X14701Y27882D01* X14693Y27878D01* X14686Y27872D01* X14680Y27865D01* X14676Y27858D01* X14673Y27850D01* X14671Y27841D01* X14671Y27833D01* X14672Y27824D01* X14675Y27816D01* X14679Y27808D01* X14685Y27801D01* X14692Y27796D01* X14699Y27791D01* X14707Y27788D01* X14733Y27779D01* X14758Y27768D01* X14781Y27755D01* X14804Y27740D01* X14825Y27723D01* X14844Y27704D01* X14862Y27683D01* X14877Y27661D01* X14884Y27650D01* Y27350D01* X14880Y27343D01* X14865Y27320D01* X14848Y27299D01* X14829Y27280D01* X14808Y27262D01* X14786Y27247D01* X14762Y27233D01* X14738Y27222D01* X14712Y27213D01* X14704Y27209D01* X14697Y27205D01* X14690Y27199D01* X14685Y27192D01* X14681Y27184D01* X14678Y27176D01* X14677Y27167D01* X14677Y27159D01* X14679Y27150D01* X14682Y27142D01* X14687Y27135D01* X14693Y27128D01* X14700Y27123D01* X14707Y27119D01* X14716Y27116D01* X14724Y27115D01* X14733Y27115D01* X14741Y27117D01* X14776Y27129D01* X14808Y27144D01* X14840Y27162D01* X14869Y27183D01* X14884Y27196D01* Y25820D01* X14884Y25820D01* X14854Y25840D01* X14822Y25858D01* X14789Y25873D01* X14755Y25884D01* X14746Y25886D01* X14737Y25886D01* X14729Y25885D01* X14721Y25882D01* X14713Y25878D01* X14706Y25872D01* X14700Y25865D01* X14696Y25858D01* X14693Y25850D01* X14691Y25841D01* X14691Y25833D01* X14692Y25824D01* X14695Y25816D01* X14699Y25808D01* X14705Y25801D01* X14712Y25796D01* X14719Y25791D01* X14727Y25788D01* X14753Y25779D01* X14778Y25768D01* X14801Y25755D01* X14824Y25740D01* X14845Y25723D01* X14864Y25704D01* X14882Y25683D01* X14884Y25680D01* Y25319D01* X14868Y25299D01* X14849Y25280D01* X14828Y25262D01* X14806Y25247D01* X14782Y25233D01* X14758Y25222D01* X14732Y25213D01* X14724Y25209D01* X14717Y25205D01* X14710Y25199D01* X14705Y25192D01* X14701Y25184D01* X14698Y25176D01* X14697Y25167D01* X14697Y25159D01* X14699Y25150D01* X14702Y25142D01* X14707Y25135D01* X14713Y25128D01* X14720Y25123D01* X14727Y25119D01* X14736Y25116D01* X14744Y25115D01* X14753Y25115D01* X14761Y25117D01* X14796Y25129D01* X14828Y25144D01* X14860Y25162D01* X14884Y25180D01* Y23834D01* X14874Y23840D01* X14842Y23858D01* X14809Y23873D01* X14775Y23884D01* X14766Y23886D01* X14757Y23886D01* X14749Y23885D01* X14741Y23882D01* X14733Y23878D01* X14726Y23872D01* X14720Y23865D01* X14716Y23858D01* X14713Y23850D01* X14711Y23841D01* X14711Y23833D01* X14712Y23824D01* X14715Y23816D01* X14719Y23808D01* X14725Y23801D01* X14732Y23796D01* X14739Y23791D01* X14747Y23788D01* X14773Y23779D01* X14798Y23768D01* X14821Y23755D01* X14844Y23740D01* X14865Y23723D01* X14884Y23704D01* Y23295D01* X14869Y23280D01* X14848Y23262D01* X14826Y23247D01* X14802Y23233D01* X14778Y23222D01* X14752Y23213D01* X14744Y23209D01* X14737Y23205D01* X14730Y23199D01* X14725Y23192D01* X14721Y23184D01* X14718Y23176D01* X14717Y23167D01* X14717Y23159D01* X14719Y23150D01* X14722Y23142D01* X14727Y23135D01* X14733Y23128D01* X14740Y23123D01* X14747Y23119D01* X14756Y23116D01* X14764Y23115D01* X14773Y23115D01* X14781Y23117D01* X14816Y23129D01* X14848Y23144D01* X14880Y23162D01* X14884Y23165D01* Y21846D01* X14862Y21858D01* X14829Y21873D01* X14795Y21884D01* X14786Y21886D01* X14777Y21886D01* X14769Y21885D01* X14761Y21882D01* X14753Y21878D01* X14746Y21872D01* X14740Y21865D01* X14736Y21858D01* X14733Y21850D01* X14731Y21841D01* X14731Y21833D01* X14732Y21824D01* X14735Y21816D01* X14739Y21808D01* X14745Y21801D01* X14752Y21796D01* X14759Y21791D01* X14767Y21788D01* X14793Y21779D01* X14818Y21768D01* X14841Y21755D01* X14864Y21740D01* X14884Y21724D01* Y21276D01* X14868Y21262D01* X14846Y21247D01* X14822Y21233D01* X14798Y21222D01* X14772Y21213D01* X14764Y21209D01* X14757Y21205D01* X14750Y21199D01* X14745Y21192D01* X14741Y21184D01* X14738Y21176D01* X14737Y21167D01* X14737Y21159D01* X14739Y21150D01* X14742Y21142D01* X14747Y21135D01* X14753Y21128D01* X14760Y21123D01* X14767Y21119D01* X14776Y21116D01* X14784Y21115D01* X14793Y21115D01* X14801Y21117D01* X14836Y21129D01* X14868Y21144D01* X14884Y21153D01* Y19857D01* X14882Y19858D01* X14849Y19873D01* X14815Y19884D01* X14806Y19886D01* X14797Y19886D01* X14789Y19885D01* X14781Y19882D01* X14773Y19878D01* X14766Y19872D01* X14760Y19865D01* X14756Y19858D01* X14753Y19850D01* X14751Y19841D01* X14751Y19833D01* X14752Y19824D01* X14755Y19816D01* X14759Y19808D01* X14765Y19801D01* X14772Y19796D01* X14779Y19791D01* X14787Y19788D01* X14813Y19779D01* X14838Y19768D01* X14861Y19755D01* X14884Y19740D01* Y19259D01* X14866Y19247D01* X14842Y19233D01* X14818Y19222D01* X14792Y19213D01* X14784Y19209D01* X14777Y19205D01* X14770Y19199D01* X14765Y19192D01* X14761Y19184D01* X14758Y19176D01* X14757Y19167D01* X14757Y19159D01* X14759Y19150D01* X14762Y19142D01* X14767Y19135D01* X14773Y19128D01* X14780Y19123D01* X14787Y19119D01* X14796Y19116D01* X14804Y19115D01* X14813Y19115D01* X14821Y19117D01* X14856Y19129D01* X14884Y19142D01* Y17866D01* X14869Y17873D01* X14835Y17884D01* X14826Y17886D01* X14817Y17886D01* X14809Y17885D01* X14801Y17882D01* X14793Y17878D01* X14786Y17872D01* X14780Y17865D01* X14776Y17858D01* X14773Y17850D01* X14771Y17841D01* X14771Y17833D01* X14772Y17824D01* X14775Y17816D01* X14779Y17808D01* X14785Y17801D01* X14792Y17796D01* X14799Y17791D01* X14807Y17788D01* X14833Y17779D01* X14858Y17768D01* X14881Y17755D01* X14884Y17754D01* Y17246D01* X14862Y17233D01* X14838Y17222D01* X14812Y17213D01* X14804Y17209D01* X14797Y17205D01* X14790Y17199D01* X14785Y17192D01* X14781Y17184D01* X14778Y17176D01* X14777Y17167D01* X14777Y17159D01* X14779Y17150D01* X14782Y17142D01* X14787Y17135D01* X14793Y17128D01* X14800Y17123D01* X14807Y17119D01* X14816Y17116D01* X14824Y17115D01* X14833Y17115D01* X14841Y17117D01* X14876Y17129D01* X14884Y17133D01* Y15874D01* X14855Y15884D01* X14846Y15886D01* X14837Y15886D01* X14829Y15885D01* X14821Y15882D01* X14813Y15878D01* X14806Y15872D01* X14800Y15865D01* X14796Y15858D01* X14793Y15850D01* X14791Y15841D01* X14791Y15833D01* X14792Y15824D01* X14795Y15816D01* X14799Y15808D01* X14805Y15801D01* X14812Y15796D01* X14819Y15791D01* X14827Y15788D01* X14853Y15779D01* X14878Y15768D01* X14884Y15765D01* Y15234D01* X14882Y15233D01* X14858Y15222D01* X14832Y15213D01* X14824Y15209D01* X14817Y15205D01* X14810Y15199D01* X14805Y15192D01* X14801Y15184D01* X14798Y15176D01* X14797Y15167D01* X14797Y15159D01* X14799Y15150D01* X14802Y15142D01* X14807Y15135D01* X14813Y15128D01* X14820Y15123D01* X14827Y15119D01* X14836Y15116D01* X14844Y15115D01* X14853Y15115D01* X14861Y15117D01* X14884Y15125D01* Y13881D01* X14875Y13884D01* X14866Y13886D01* X14857Y13886D01* X14849Y13885D01* X14841Y13882D01* X14833Y13878D01* X14826Y13872D01* X14820Y13865D01* X14816Y13858D01* X14813Y13850D01* X14811Y13841D01* X14811Y13833D01* X14812Y13824D01* X14815Y13816D01* X14819Y13808D01* X14825Y13801D01* X14832Y13796D01* X14839Y13791D01* X14847Y13788D01* X14873Y13779D01* X14884Y13774D01* Y13225D01* X14878Y13222D01* X14852Y13213D01* X14844Y13209D01* X14837Y13205D01* X14830Y13199D01* X14825Y13192D01* X14821Y13184D01* X14818Y13176D01* X14817Y13167D01* X14817Y13159D01* X14819Y13150D01* X14822Y13142D01* X14827Y13135D01* X14833Y13128D01* X14840Y13123D01* X14847Y13119D01* X14856Y13116D01* X14864Y13115D01* X14873Y13115D01* X14881Y13117D01* X14884Y13118D01* Y11886D01* X14877Y11886D01* X14869Y11885D01* X14861Y11882D01* X14853Y11878D01* X14846Y11872D01* X14840Y11865D01* X14836Y11858D01* X14833Y11850D01* X14831Y11841D01* X14831Y11833D01* X14832Y11824D01* X14835Y11816D01* X14839Y11808D01* X14845Y11801D01* X14852Y11796D01* X14859Y11791D01* X14867Y11788D01* X14884Y11782D01* Y11217D01* X14872Y11213D01* X14864Y11209D01* X14857Y11205D01* X14850Y11199D01* X14845Y11192D01* X14841Y11184D01* X14838Y11176D01* X14837Y11167D01* X14837Y11159D01* X14839Y11150D01* X14842Y11142D01* X14847Y11135D01* X14853Y11128D01* X14860Y11123D01* X14867Y11119D01* X14876Y11116D01* X14884Y11115D01* Y9883D01* X14881Y9882D01* X14873Y9878D01* X14866Y9872D01* X14860Y9865D01* X14856Y9858D01* X14853Y9850D01* X14851Y9841D01* X14851Y9833D01* X14852Y9824D01* X14855Y9816D01* X14859Y9808D01* X14865Y9801D01* X14872Y9796D01* X14879Y9791D01* X14884Y9789D01* Y9209D01* X14877Y9205D01* X14870Y9199D01* X14865Y9192D01* X14861Y9184D01* X14858Y9176D01* X14857Y9167D01* X14857Y9159D01* X14859Y9150D01* X14862Y9142D01* X14867Y9135D01* X14873Y9128D01* X14880Y9123D01* X14884Y9121D01* Y7870D01* X14880Y7865D01* X14876Y7858D01* X14873Y7850D01* X14871Y7841D01* X14871Y7833D01* X14872Y7824D01* X14875Y7816D01* X14879Y7808D01* X14884Y7802D01* Y7190D01* X14881Y7184D01* X14878Y7176D01* X14877Y7167D01* X14877Y7159D01* X14879Y7150D01* X14882Y7142D01* X14884Y7140D01* Y0D01* X14625D01* Y1196D01* X14645Y1179D01* X14675Y1159D01* X14707Y1141D01* X14740Y1127D01* X14774Y1115D01* X14783Y1113D01* X14792Y1113D01* X14800Y1115D01* X14808Y1117D01* X14816Y1122D01* X14823Y1127D01* X14829Y1134D01* X14833Y1141D01* X14836Y1149D01* X14838Y1158D01* X14838Y1167D01* X14837Y1175D01* X14834Y1183D01* X14830Y1191D01* X14824Y1198D01* X14817Y1204D01* X14810Y1208D01* X14802Y1211D01* X14776Y1220D01* X14751Y1231D01* X14728Y1244D01* X14705Y1259D01* X14684Y1276D01* X14665Y1295D01* X14647Y1316D01* X14632Y1338D01* X14625Y1349D01* Y1650D01* X14629Y1657D01* X14644Y1679D01* X14661Y1700D01* X14680Y1719D01* X14701Y1737D01* X14723Y1752D01* X14747Y1766D01* X14771Y1777D01* X14797Y1786D01* X14805Y1790D01* X14812Y1794D01* X14819Y1800D01* X14824Y1807D01* X14828Y1815D01* X14831Y1823D01* X14832Y1832D01* X14832Y1840D01* X14830Y1849D01* X14827Y1857D01* X14822Y1864D01* X14816Y1871D01* X14809Y1876D01* X14802Y1880D01* X14793Y1883D01* X14785Y1884D01* X14776Y1884D01* X14768Y1882D01* X14733Y1870D01* X14701Y1855D01* X14669Y1837D01* X14640Y1816D01* X14625Y1804D01* Y3179D01* X14625Y3179D01* X14655Y3159D01* X14687Y3141D01* X14720Y3127D01* X14754Y3115D01* X14763Y3113D01* X14772Y3113D01* X14780Y3115D01* X14788Y3117D01* X14796Y3122D01* X14803Y3127D01* X14809Y3134D01* X14813Y3141D01* X14816Y3149D01* X14818Y3158D01* X14818Y3167D01* X14817Y3175D01* X14814Y3183D01* X14810Y3191D01* X14804Y3198D01* X14797Y3204D01* X14790Y3208D01* X14782Y3211D01* X14756Y3220D01* X14731Y3231D01* X14708Y3244D01* X14685Y3259D01* X14664Y3276D01* X14645Y3295D01* X14627Y3316D01* X14625Y3319D01* Y3680D01* X14641Y3700D01* X14660Y3719D01* X14681Y3737D01* X14703Y3752D01* X14727Y3766D01* X14751Y3777D01* X14777Y3786D01* X14785Y3790D01* X14792Y3794D01* X14799Y3800D01* X14804Y3807D01* X14808Y3815D01* X14811Y3823D01* X14812Y3832D01* X14812Y3840D01* X14810Y3849D01* X14807Y3857D01* X14802Y3864D01* X14796Y3871D01* X14789Y3876D01* X14782Y3880D01* X14773Y3883D01* X14765Y3884D01* X14756Y3884D01* X14748Y3882D01* X14713Y3870D01* X14681Y3855D01* X14649Y3837D01* X14625Y3820D01* Y5166D01* X14635Y5159D01* X14667Y5141D01* X14700Y5127D01* X14734Y5115D01* X14743Y5113D01* X14752Y5113D01* X14760Y5115D01* X14768Y5117D01* X14776Y5122D01* X14783Y5127D01* X14789Y5134D01* X14793Y5141D01* X14796Y5149D01* X14798Y5158D01* X14798Y5167D01* X14797Y5175D01* X14794Y5183D01* X14790Y5191D01* X14784Y5198D01* X14777Y5204D01* X14770Y5208D01* X14762Y5211D01* X14736Y5220D01* X14711Y5231D01* X14688Y5244D01* X14665Y5259D01* X14644Y5276D01* X14625Y5295D01* Y5704D01* X14640Y5719D01* X14661Y5737D01* X14683Y5752D01* X14707Y5766D01* X14731Y5777D01* X14757Y5786D01* X14765Y5790D01* X14772Y5794D01* X14779Y5800D01* X14784Y5807D01* X14788Y5815D01* X14791Y5823D01* X14792Y5832D01* X14792Y5840D01* X14790Y5849D01* X14787Y5857D01* X14782Y5864D01* X14776Y5871D01* X14769Y5876D01* X14762Y5880D01* X14753Y5883D01* X14745Y5884D01* X14736Y5884D01* X14728Y5882D01* X14693Y5870D01* X14661Y5855D01* X14629Y5837D01* X14625Y5834D01* Y7153D01* X14647Y7141D01* X14680Y7127D01* X14714Y7115D01* X14723Y7113D01* X14732Y7113D01* X14740Y7115D01* X14748Y7117D01* X14756Y7122D01* X14763Y7127D01* X14769Y7134D01* X14773Y7141D01* X14776Y7149D01* X14778Y7158D01* X14778Y7167D01* X14777Y7175D01* X14774Y7183D01* X14770Y7191D01* X14764Y7198D01* X14757Y7204D01* X14750Y7208D01* X14742Y7211D01* X14716Y7220D01* X14691Y7231D01* X14668Y7244D01* X14645Y7259D01* X14625Y7276D01* Y7723D01* X14641Y7737D01* X14663Y7752D01* X14687Y7766D01* X14711Y7777D01* X14737Y7786D01* X14745Y7790D01* X14752Y7794D01* X14759Y7800D01* X14764Y7807D01* X14768Y7815D01* X14771Y7823D01* X14772Y7832D01* X14772Y7840D01* X14770Y7849D01* X14767Y7857D01* X14762Y7864D01* X14756Y7871D01* X14749Y7876D01* X14742Y7880D01* X14733Y7883D01* X14725Y7884D01* X14716Y7884D01* X14708Y7882D01* X14673Y7870D01* X14641Y7855D01* X14625Y7846D01* Y9142D01* X14627Y9141D01* X14660Y9127D01* X14694Y9115D01* X14703Y9113D01* X14712Y9113D01* X14720Y9115D01* X14728Y9117D01* X14736Y9122D01* X14743Y9127D01* X14749Y9134D01* X14753Y9141D01* X14756Y9149D01* X14758Y9158D01* X14758Y9167D01* X14757Y9175D01* X14754Y9183D01* X14750Y9191D01* X14744Y9198D01* X14737Y9204D01* X14730Y9208D01* X14722Y9211D01* X14696Y9220D01* X14671Y9231D01* X14648Y9244D01* X14625Y9259D01* Y9740D01* X14643Y9752D01* X14667Y9766D01* X14691Y9777D01* X14717Y9786D01* X14725Y9790D01* X14732Y9794D01* X14739Y9800D01* X14744Y9807D01* X14748Y9815D01* X14751Y9823D01* X14752Y9832D01* X14752Y9840D01* X14750Y9849D01* X14747Y9857D01* X14742Y9864D01* X14736Y9871D01* X14729Y9876D01* X14722Y9880D01* X14713Y9883D01* X14705Y9884D01* X14696Y9884D01* X14688Y9882D01* X14653Y9870D01* X14625Y9857D01* Y11133D01* X14640Y11127D01* X14674Y11115D01* X14683Y11113D01* X14692Y11113D01* X14700Y11115D01* X14708Y11117D01* X14716Y11122D01* X14723Y11127D01* X14729Y11134D01* X14733Y11141D01* X14736Y11149D01* X14738Y11158D01* X14738Y11167D01* X14737Y11175D01* X14734Y11183D01* X14730Y11191D01* X14724Y11198D01* X14717Y11204D01* X14710Y11208D01* X14702Y11211D01* X14676Y11220D01* X14651Y11231D01* X14628Y11244D01* X14625Y11246D01* Y11754D01* X14647Y11766D01* X14671Y11777D01* X14697Y11786D01* X14705Y11790D01* X14712Y11794D01* X14719Y11800D01* X14724Y11807D01* X14728Y11815D01* X14731Y11823D01* X14732Y11832D01* X14732Y11840D01* X14730Y11849D01* X14727Y11857D01* X14722Y11864D01* X14716Y11871D01* X14709Y11876D01* X14702Y11880D01* X14693Y11883D01* X14685Y11884D01* X14676Y11884D01* X14668Y11882D01* X14633Y11870D01* X14625Y11866D01* Y13125D01* X14654Y13115D01* X14663Y13113D01* X14672Y13113D01* X14680Y13115D01* X14688Y13117D01* X14696Y13122D01* X14703Y13127D01* X14709Y13134D01* X14713Y13141D01* X14716Y13149D01* X14718Y13158D01* X14718Y13167D01* X14717Y13175D01* X14714Y13183D01* X14710Y13191D01* X14704Y13198D01* X14697Y13204D01* X14690Y13208D01* X14682Y13211D01* X14656Y13220D01* X14631Y13231D01* X14625Y13234D01* Y13765D01* X14627Y13766D01* X14651Y13777D01* X14677Y13786D01* X14685Y13790D01* X14692Y13794D01* X14699Y13800D01* X14704Y13807D01* X14708Y13815D01* X14711Y13823D01* X14712Y13832D01* X14712Y13840D01* X14710Y13849D01* X14707Y13857D01* X14702Y13864D01* X14696Y13871D01* X14689Y13876D01* X14682Y13880D01* X14673Y13883D01* X14665Y13884D01* X14656Y13884D01* X14648Y13882D01* X14625Y13874D01* Y15118D01* X14634Y15115D01* X14643Y15113D01* X14652Y15113D01* X14660Y15115D01* X14668Y15117D01* X14676Y15122D01* X14683Y15127D01* X14689Y15134D01* X14693Y15141D01* X14696Y15149D01* X14698Y15158D01* X14698Y15167D01* X14697Y15175D01* X14694Y15183D01* X14690Y15191D01* X14684Y15198D01* X14677Y15204D01* X14670Y15208D01* X14662Y15211D01* X14636Y15220D01* X14625Y15225D01* Y15775D01* X14631Y15777D01* X14657Y15786D01* X14665Y15790D01* X14672Y15794D01* X14679Y15800D01* X14684Y15807D01* X14688Y15815D01* X14691Y15823D01* X14692Y15832D01* X14692Y15840D01* X14690Y15849D01* X14687Y15857D01* X14682Y15864D01* X14676Y15871D01* X14669Y15876D01* X14662Y15880D01* X14653Y15883D01* X14645Y15884D01* X14636Y15884D01* X14628Y15882D01* X14625Y15881D01* Y17113D01* X14632Y17113D01* X14640Y17115D01* X14648Y17117D01* X14656Y17122D01* X14663Y17127D01* X14669Y17134D01* X14673Y17141D01* X14676Y17149D01* X14678Y17158D01* X14678Y17167D01* X14677Y17175D01* X14674Y17183D01* X14670Y17191D01* X14664Y17198D01* X14657Y17204D01* X14650Y17208D01* X14642Y17211D01* X14625Y17217D01* Y17782D01* X14637Y17786D01* X14645Y17790D01* X14652Y17794D01* X14659Y17800D01* X14664Y17807D01* X14668Y17815D01* X14671Y17823D01* X14672Y17832D01* X14672Y17840D01* X14670Y17849D01* X14667Y17857D01* X14662Y17864D01* X14656Y17871D01* X14649Y17876D01* X14642Y17880D01* X14633Y17883D01* X14625Y17884D01* Y19116D01* X14628Y19117D01* X14636Y19122D01* X14643Y19127D01* X14649Y19134D01* X14653Y19141D01* X14656Y19149D01* X14658Y19158D01* X14658Y19167D01* X14657Y19175D01* X14654Y19183D01* X14650Y19191D01* X14644Y19198D01* X14637Y19204D01* X14630Y19208D01* X14625Y19210D01* Y19790D01* X14632Y19794D01* X14639Y19800D01* X14644Y19807D01* X14648Y19815D01* X14651Y19823D01* X14652Y19832D01* X14652Y19840D01* X14650Y19849D01* X14647Y19857D01* X14642Y19864D01* X14636Y19871D01* X14629Y19876D01* X14625Y19878D01* Y21130D01* X14629Y21134D01* X14633Y21141D01* X14636Y21149D01* X14638Y21158D01* X14638Y21167D01* X14637Y21175D01* X14634Y21183D01* X14630Y21191D01* X14625Y21197D01* Y21809D01* X14628Y21815D01* X14631Y21823D01* X14632Y21832D01* X14632Y21840D01* X14630Y21849D01* X14627Y21857D01* X14625Y21859D01* Y33138D01* G37* G36* X14884Y40000D02*X15064D01* Y21625D01* X15055Y21651D01* X15040Y21683D01* X15022Y21715D01* X15001Y21744D01* X14977Y21772D01* X14952Y21797D01* X14924Y21820D01* X14894Y21840D01* X14884Y21846D01* Y23165D01* X14909Y23183D01* X14937Y23207D01* X14962Y23232D01* X14985Y23260D01* X15005Y23290D01* X15023Y23322D01* X15037Y23355D01* X15049Y23389D01* X15051Y23398D01* X15051Y23407D01* X15050Y23415D01* X15047Y23423D01* X15042Y23431D01* X15037Y23438D01* X15030Y23444D01* X15023Y23448D01* X15015Y23451D01* X15006Y23453D01* X14997Y23453D01* X14989Y23452D01* X14981Y23449D01* X14973Y23445D01* X14966Y23439D01* X14960Y23433D01* X14956Y23425D01* X14953Y23417D01* X14944Y23391D01* X14933Y23366D01* X14920Y23343D01* X14905Y23320D01* X14888Y23299D01* X14884Y23295D01* Y23704D01* X14884Y23704D01* X14902Y23683D01* X14917Y23661D01* X14931Y23637D01* X14942Y23613D01* X14951Y23587D01* X14955Y23579D01* X14959Y23572D01* X14965Y23565D01* X14972Y23560D01* X14980Y23556D01* X14988Y23553D01* X14997Y23552D01* X15005Y23552D01* X15014Y23554D01* X15022Y23557D01* X15029Y23562D01* X15036Y23568D01* X15041Y23575D01* X15045Y23582D01* X15048Y23591D01* X15049Y23599D01* X15049Y23608D01* X15047Y23617D01* X15035Y23651D01* X15020Y23683D01* X15002Y23715D01* X14981Y23744D01* X14957Y23772D01* X14932Y23797D01* X14904Y23820D01* X14884Y23834D01* Y25180D01* X14889Y25183D01* X14917Y25207D01* X14942Y25232D01* X14965Y25260D01* X14985Y25290D01* X15003Y25322D01* X15017Y25355D01* X15029Y25389D01* X15031Y25398D01* X15031Y25407D01* X15030Y25415D01* X15027Y25423D01* X15022Y25431D01* X15017Y25438D01* X15010Y25444D01* X15003Y25448D01* X14995Y25451D01* X14986Y25453D01* X14977Y25453D01* X14969Y25452D01* X14961Y25449D01* X14953Y25445D01* X14946Y25439D01* X14940Y25433D01* X14936Y25425D01* X14933Y25417D01* X14924Y25391D01* X14913Y25366D01* X14900Y25343D01* X14885Y25320D01* X14884Y25319D01* Y25680D01* X14897Y25661D01* X14911Y25637D01* X14922Y25613D01* X14931Y25587D01* X14935Y25579D01* X14939Y25572D01* X14945Y25565D01* X14952Y25560D01* X14960Y25556D01* X14968Y25553D01* X14977Y25552D01* X14985Y25552D01* X14994Y25554D01* X15002Y25557D01* X15009Y25562D01* X15016Y25568D01* X15021Y25575D01* X15025Y25582D01* X15028Y25591D01* X15029Y25599D01* X15029Y25608D01* X15027Y25617D01* X15015Y25651D01* X15000Y25683D01* X14982Y25715D01* X14961Y25744D01* X14937Y25772D01* X14912Y25797D01* X14884Y25820D01* Y27196D01* X14897Y27207D01* X14922Y27232D01* X14945Y27260D01* X14965Y27290D01* X14983Y27322D01* X14997Y27355D01* X15009Y27389D01* X15011Y27398D01* X15011Y27407D01* X15010Y27415D01* X15007Y27423D01* X15002Y27431D01* X14997Y27438D01* X14990Y27444D01* X14983Y27448D01* X14975Y27451D01* X14966Y27453D01* X14957Y27453D01* X14949Y27452D01* X14941Y27449D01* X14933Y27445D01* X14926Y27439D01* X14920Y27433D01* X14916Y27425D01* X14913Y27417D01* X14904Y27391D01* X14893Y27366D01* X14884Y27350D01* Y27650D01* X14891Y27637D01* X14902Y27613D01* X14911Y27587D01* X14915Y27579D01* X14919Y27572D01* X14925Y27565D01* X14932Y27560D01* X14940Y27556D01* X14948Y27553D01* X14957Y27552D01* X14965Y27552D01* X14974Y27554D01* X14982Y27557D01* X14989Y27562D01* X14996Y27568D01* X15001Y27575D01* X15005Y27582D01* X15008Y27591D01* X15009Y27599D01* X15009Y27608D01* X15007Y27617D01* X14995Y27651D01* X14980Y27683D01* X14962Y27715D01* X14941Y27744D01* X14917Y27772D01* X14892Y27797D01* X14884Y27804D01* Y29214D01* X14902Y29232D01* X14925Y29260D01* X14945Y29290D01* X14963Y29322D01* X14977Y29355D01* X14989Y29389D01* X14991Y29398D01* X14991Y29407D01* X14990Y29415D01* X14987Y29423D01* X14982Y29431D01* X14977Y29438D01* X14970Y29444D01* X14963Y29448D01* X14955Y29451D01* X14946Y29453D01* X14937Y29453D01* X14929Y29452D01* X14921Y29449D01* X14913Y29445D01* X14906Y29439D01* X14900Y29433D01* X14896Y29425D01* X14893Y29417D01* X14884Y29391D01* X14884Y29391D01* Y29608D01* X14891Y29587D01* X14895Y29579D01* X14899Y29572D01* X14905Y29565D01* X14912Y29560D01* X14920Y29556D01* X14928Y29553D01* X14937Y29552D01* X14945Y29552D01* X14954Y29554D01* X14962Y29557D01* X14969Y29562D01* X14976Y29568D01* X14981Y29575D01* X14985Y29582D01* X14988Y29591D01* X14989Y29599D01* X14989Y29608D01* X14987Y29617D01* X14975Y29651D01* X14960Y29683D01* X14942Y29715D01* X14921Y29744D01* X14897Y29772D01* X14884Y29785D01* Y31235D01* X14905Y31260D01* X14925Y31290D01* X14943Y31322D01* X14957Y31355D01* X14969Y31389D01* X14971Y31398D01* X14971Y31407D01* X14970Y31415D01* X14967Y31423D01* X14962Y31431D01* X14957Y31438D01* X14950Y31444D01* X14943Y31448D01* X14935Y31451D01* X14926Y31453D01* X14917Y31453D01* X14909Y31452D01* X14901Y31449D01* X14893Y31445D01* X14886Y31439D01* X14884Y31437D01* Y31567D01* X14885Y31565D01* X14892Y31560D01* X14900Y31556D01* X14908Y31553D01* X14917Y31552D01* X14925Y31552D01* X14934Y31554D01* X14942Y31557D01* X14949Y31562D01* X14956Y31568D01* X14961Y31575D01* X14965Y31582D01* X14968Y31591D01* X14969Y31599D01* X14969Y31608D01* X14967Y31617D01* X14955Y31651D01* X14940Y31683D01* X14922Y31715D01* X14901Y31744D01* X14884Y31764D01* Y33259D01* X14885Y33260D01* X14905Y33290D01* X14923Y33322D01* X14937Y33355D01* X14949Y33389D01* X14951Y33398D01* X14951Y33407D01* X14950Y33415D01* X14947Y33423D01* X14942Y33431D01* X14937Y33438D01* X14930Y33444D01* X14923Y33448D01* X14915Y33451D01* X14906Y33453D01* X14897Y33453D01* X14889Y33452D01* X14884Y33450D01* Y33555D01* X14888Y33553D01* X14897Y33552D01* X14905Y33552D01* X14914Y33554D01* X14922Y33557D01* X14929Y33562D01* X14936Y33568D01* X14941Y33575D01* X14945Y33582D01* X14948Y33591D01* X14949Y33599D01* X14949Y33608D01* X14947Y33617D01* X14935Y33651D01* X14920Y33683D01* X14902Y33715D01* X14884Y33740D01* Y35288D01* X14885Y35290D01* X14903Y35322D01* X14917Y35355D01* X14929Y35389D01* X14931Y35398D01* X14931Y35407D01* X14930Y35415D01* X14927Y35423D01* X14922Y35431D01* X14917Y35438D01* X14910Y35444D01* X14903Y35448D01* X14895Y35451D01* X14886Y35453D01* X14884D01* Y35552D01* X14885D01* X14894Y35554D01* X14902Y35557D01* X14909Y35562D01* X14916Y35568D01* X14921Y35575D01* X14925Y35582D01* X14928Y35591D01* X14929Y35599D01* X14929Y35608D01* X14927Y35617D01* X14915Y35651D01* X14900Y35683D01* X14884Y35711D01* Y37324D01* X14897Y37355D01* X14909Y37389D01* X14911Y37398D01* X14911Y37407D01* X14910Y37415D01* X14907Y37423D01* X14902Y37431D01* X14897Y37438D01* X14890Y37444D01* X14884Y37447D01* Y37559D01* X14889Y37562D01* X14896Y37568D01* X14901Y37575D01* X14905Y37582D01* X14908Y37591D01* X14909Y37599D01* X14909Y37608D01* X14907Y37617D01* X14895Y37651D01* X14884Y37674D01* Y39374D01* X14889Y39389D01* X14891Y39398D01* X14891Y39407D01* X14890Y39415D01* X14887Y39423D01* X14884Y39428D01* Y39580D01* X14885Y39582D01* X14888Y39591D01* X14889Y39599D01* X14889Y39608D01* X14887Y39617D01* X14884Y39625D01* Y40000D01* G37* G36* X15064Y0D02*X14884D01* Y7140D01* X14887Y7135D01* X14893Y7128D01* X14900Y7123D01* X14907Y7119D01* X14916Y7116D01* X14924Y7115D01* X14933Y7115D01* X14941Y7117D01* X14976Y7129D01* X15008Y7144D01* X15040Y7162D01* X15064Y7180D01* Y5834D01* X15054Y5840D01* X15022Y5858D01* X14989Y5873D01* X14955Y5884D01* X14946Y5886D01* X14937Y5886D01* X14929Y5885D01* X14921Y5882D01* X14913Y5878D01* X14906Y5872D01* X14900Y5865D01* X14896Y5858D01* X14893Y5850D01* X14891Y5841D01* X14891Y5833D01* X14892Y5824D01* X14895Y5816D01* X14899Y5808D01* X14905Y5801D01* X14912Y5796D01* X14919Y5791D01* X14927Y5788D01* X14953Y5779D01* X14978Y5768D01* X15001Y5755D01* X15024Y5740D01* X15045Y5723D01* X15064Y5704D01* Y5295D01* X15049Y5280D01* X15028Y5262D01* X15006Y5247D01* X14982Y5233D01* X14958Y5222D01* X14932Y5213D01* X14924Y5209D01* X14917Y5205D01* X14910Y5199D01* X14905Y5192D01* X14901Y5184D01* X14898Y5176D01* X14897Y5167D01* X14897Y5159D01* X14899Y5150D01* X14902Y5142D01* X14907Y5135D01* X14913Y5128D01* X14920Y5123D01* X14927Y5119D01* X14936Y5116D01* X14944Y5115D01* X14953Y5115D01* X14961Y5117D01* X14996Y5129D01* X15028Y5144D01* X15060Y5162D01* X15064Y5165D01* Y3846D01* X15042Y3858D01* X15009Y3873D01* X14975Y3884D01* X14966Y3886D01* X14957Y3886D01* X14949Y3885D01* X14941Y3882D01* X14933Y3878D01* X14926Y3872D01* X14920Y3865D01* X14916Y3858D01* X14913Y3850D01* X14911Y3841D01* X14911Y3833D01* X14912Y3824D01* X14915Y3816D01* X14919Y3808D01* X14925Y3801D01* X14932Y3796D01* X14939Y3791D01* X14947Y3788D01* X14973Y3779D01* X14998Y3768D01* X15021Y3755D01* X15044Y3740D01* X15064Y3724D01* Y3276D01* X15048Y3262D01* X15026Y3247D01* X15002Y3233D01* X14978Y3222D01* X14952Y3213D01* X14944Y3209D01* X14937Y3205D01* X14930Y3199D01* X14925Y3192D01* X14921Y3184D01* X14918Y3176D01* X14917Y3167D01* X14917Y3159D01* X14919Y3150D01* X14922Y3142D01* X14927Y3135D01* X14933Y3128D01* X14940Y3123D01* X14947Y3119D01* X14956Y3116D01* X14964Y3115D01* X14973Y3115D01* X14981Y3117D01* X15016Y3129D01* X15048Y3144D01* X15064Y3153D01* Y1857D01* X15062Y1858D01* X15029Y1873D01* X14995Y1884D01* X14986Y1886D01* X14977Y1886D01* X14969Y1885D01* X14961Y1882D01* X14953Y1878D01* X14946Y1872D01* X14940Y1865D01* X14936Y1858D01* X14933Y1850D01* X14931Y1841D01* X14931Y1833D01* X14932Y1824D01* X14935Y1816D01* X14939Y1808D01* X14945Y1801D01* X14952Y1796D01* X14959Y1791D01* X14967Y1788D01* X14993Y1779D01* X15018Y1768D01* X15041Y1755D01* X15064Y1740D01* Y1259D01* X15046Y1247D01* X15022Y1233D01* X14998Y1222D01* X14972Y1213D01* X14964Y1209D01* X14957Y1205D01* X14950Y1199D01* X14945Y1192D01* X14941Y1184D01* X14938Y1176D01* X14937Y1167D01* X14937Y1159D01* X14939Y1150D01* X14942Y1142D01* X14947Y1135D01* X14953Y1128D01* X14960Y1123D01* X14967Y1119D01* X14976Y1116D01* X14984Y1115D01* X14993Y1115D01* X15001Y1117D01* X15036Y1129D01* X15064Y1142D01* Y0D01* G37* G36* Y7319D02*X15048Y7299D01* X15029Y7280D01* X15008Y7262D01* X14986Y7247D01* X14962Y7233D01* X14938Y7222D01* X14912Y7213D01* X14904Y7209D01* X14897Y7205D01* X14890Y7199D01* X14885Y7192D01* X14884Y7190D01* Y7802D01* X14885Y7801D01* X14892Y7796D01* X14899Y7791D01* X14907Y7788D01* X14933Y7779D01* X14958Y7768D01* X14981Y7755D01* X15004Y7740D01* X15025Y7723D01* X15044Y7704D01* X15062Y7683D01* X15064Y7680D01* Y7319D01* G37* G36* Y7820D02*X15064Y7820D01* X15034Y7840D01* X15002Y7858D01* X14969Y7873D01* X14935Y7884D01* X14926Y7886D01* X14917Y7886D01* X14909Y7885D01* X14901Y7882D01* X14893Y7878D01* X14886Y7872D01* X14884Y7870D01* Y9121D01* X14887Y9119D01* X14896Y9116D01* X14904Y9115D01* X14913Y9115D01* X14921Y9117D01* X14956Y9129D01* X14988Y9144D01* X15020Y9162D01* X15049Y9183D01* X15064Y9196D01* Y7820D01* G37* G36* Y9350D02*X15060Y9343D01* X15045Y9320D01* X15028Y9299D01* X15009Y9280D01* X14988Y9262D01* X14966Y9247D01* X14942Y9233D01* X14918Y9222D01* X14892Y9213D01* X14884Y9209D01* X14884Y9209D01* Y9789D01* X14887Y9788D01* X14913Y9779D01* X14938Y9768D01* X14961Y9755D01* X14984Y9740D01* X15005Y9723D01* X15024Y9704D01* X15042Y9683D01* X15057Y9661D01* X15064Y9650D01* Y9350D01* G37* G36* Y9804D02*X15044Y9820D01* X15014Y9840D01* X14982Y9858D01* X14949Y9873D01* X14915Y9884D01* X14906Y9886D01* X14897Y9886D01* X14889Y9885D01* X14884Y9883D01* Y11115D01* X14884D01* X14893Y11115D01* X14901Y11117D01* X14936Y11129D01* X14968Y11144D01* X15000Y11162D01* X15029Y11183D01* X15057Y11207D01* X15064Y11214D01* Y9804D01* G37* G36* Y11391D02*X15053Y11366D01* X15040Y11343D01* X15025Y11320D01* X15008Y11299D01* X14989Y11280D01* X14968Y11262D01* X14946Y11247D01* X14922Y11233D01* X14898Y11222D01* X14884Y11217D01* Y11782D01* X14893Y11779D01* X14918Y11768D01* X14941Y11755D01* X14964Y11740D01* X14985Y11723D01* X15004Y11704D01* X15022Y11683D01* X15037Y11661D01* X15051Y11637D01* X15062Y11613D01* X15064Y11608D01* Y11391D01* G37* G36* Y11785D02*X15052Y11797D01* X15024Y11820D01* X14994Y11840D01* X14962Y11858D01* X14929Y11873D01* X14895Y11884D01* X14886Y11886D01* X14884D01* Y13118D01* X14916Y13129D01* X14948Y13144D01* X14980Y13162D01* X15009Y13183D01* X15037Y13207D01* X15062Y13232D01* X15064Y13235D01* Y11785D01* G37* G36* Y13437D02*X15060Y13433D01* X15056Y13425D01* X15053Y13417D01* X15044Y13391D01* X15033Y13366D01* X15020Y13343D01* X15005Y13320D01* X14988Y13299D01* X14969Y13280D01* X14948Y13262D01* X14926Y13247D01* X14902Y13233D01* X14884Y13225D01* Y13774D01* X14898Y13768D01* X14921Y13755D01* X14944Y13740D01* X14965Y13723D01* X14984Y13704D01* X15002Y13683D01* X15017Y13661D01* X15031Y13637D01* X15042Y13613D01* X15051Y13587D01* X15055Y13579D01* X15059Y13572D01* X15064Y13567D01* Y13437D01* G37* G36* Y13764D02*X15057Y13772D01* X15032Y13797D01* X15004Y13820D01* X14974Y13840D01* X14942Y13858D01* X14909Y13873D01* X14884Y13881D01* Y15125D01* X14896Y15129D01* X14928Y15144D01* X14960Y15162D01* X14989Y15183D01* X15017Y15207D01* X15042Y15232D01* X15064Y15259D01* Y13764D01* G37* G36* Y15450D02*X15061Y15449D01* X15053Y15445D01* X15046Y15439D01* X15040Y15433D01* X15036Y15425D01* X15033Y15417D01* X15024Y15391D01* X15013Y15366D01* X15000Y15343D01* X14985Y15320D01* X14968Y15299D01* X14949Y15280D01* X14928Y15262D01* X14906Y15247D01* X14884Y15234D01* Y15765D01* X14901Y15755D01* X14924Y15740D01* X14945Y15723D01* X14964Y15704D01* X14982Y15683D01* X14997Y15661D01* X15011Y15637D01* X15022Y15613D01* X15031Y15587D01* X15035Y15579D01* X15039Y15572D01* X15045Y15565D01* X15052Y15560D01* X15060Y15556D01* X15064Y15555D01* Y15450D01* G37* G36* Y15740D02*X15061Y15744D01* X15037Y15772D01* X15012Y15797D01* X14984Y15820D01* X14954Y15840D01* X14922Y15858D01* X14889Y15873D01* X14884Y15874D01* Y17133D01* X14908Y17144D01* X14940Y17162D01* X14969Y17183D01* X14997Y17207D01* X15022Y17232D01* X15045Y17260D01* X15064Y17288D01* Y15740D01* G37* G36* Y17453D02*X15057Y17453D01* X15049Y17452D01* X15041Y17449D01* X15033Y17445D01* X15026Y17439D01* X15020Y17433D01* X15016Y17425D01* X15013Y17417D01* X15004Y17391D01* X14993Y17366D01* X14980Y17343D01* X14965Y17320D01* X14948Y17299D01* X14929Y17280D01* X14908Y17262D01* X14886Y17247D01* X14884Y17246D01* Y17754D01* X14904Y17740D01* X14925Y17723D01* X14944Y17704D01* X14962Y17683D01* X14977Y17661D01* X14991Y17637D01* X15002Y17613D01* X15011Y17587D01* X15015Y17579D01* X15019Y17572D01* X15025Y17565D01* X15032Y17560D01* X15040Y17556D01* X15048Y17553D01* X15057Y17552D01* X15064Y17552D01* Y17453D01* G37* G36* Y17711D02*X15062Y17715D01* X15041Y17744D01* X15017Y17772D01* X14992Y17797D01* X14964Y17820D01* X14934Y17840D01* X14902Y17858D01* X14884Y17866D01* Y19142D01* X14888Y19144D01* X14920Y19162D01* X14949Y19183D01* X14977Y19207D01* X15002Y19232D01* X15025Y19260D01* X15045Y19290D01* X15063Y19322D01* X15064Y19324D01* Y17711D01* G37* G36* Y19447D02*X15063Y19448D01* X15055Y19451D01* X15046Y19453D01* X15037Y19453D01* X15029Y19452D01* X15021Y19449D01* X15013Y19445D01* X15006Y19439D01* X15000Y19433D01* X14996Y19425D01* X14993Y19417D01* X14984Y19391D01* X14973Y19366D01* X14960Y19343D01* X14945Y19320D01* X14928Y19299D01* X14909Y19280D01* X14888Y19262D01* X14884Y19259D01* Y19740D01* X14905Y19723D01* X14924Y19704D01* X14942Y19683D01* X14957Y19661D01* X14971Y19637D01* X14982Y19613D01* X14991Y19587D01* X14995Y19579D01* X14999Y19572D01* X15005Y19565D01* X15012Y19560D01* X15020Y19556D01* X15028Y19553D01* X15037Y19552D01* X15045Y19552D01* X15054Y19554D01* X15062Y19557D01* X15064Y19559D01* Y19447D01* G37* G36* Y19674D02*X15060Y19683D01* X15042Y19715D01* X15021Y19744D01* X14997Y19772D01* X14972Y19797D01* X14944Y19820D01* X14914Y19840D01* X14884Y19857D01* Y21153D01* X14900Y21162D01* X14929Y21183D01* X14957Y21207D01* X14982Y21232D01* X15005Y21260D01* X15025Y21290D01* X15043Y21322D01* X15057Y21355D01* X15064Y21374D01* Y19674D01* G37* G36* Y21428D02*X15062Y21431D01* X15057Y21438D01* X15050Y21444D01* X15043Y21448D01* X15035Y21451D01* X15026Y21453D01* X15017Y21453D01* X15009Y21452D01* X15001Y21449D01* X14993Y21445D01* X14986Y21439D01* X14980Y21433D01* X14976Y21425D01* X14973Y21417D01* X14964Y21391D01* X14953Y21366D01* X14940Y21343D01* X14925Y21320D01* X14908Y21299D01* X14889Y21280D01* X14884Y21276D01* Y21724D01* X14885Y21723D01* X14904Y21704D01* X14922Y21683D01* X14937Y21661D01* X14951Y21637D01* X14962Y21613D01* X14971Y21587D01* X14975Y21579D01* X14979Y21572D01* X14985Y21565D01* X14992Y21560D01* X15000Y21556D01* X15008Y21553D01* X15017Y21552D01* X15025Y21552D01* X15034Y21554D01* X15042Y21557D01* X15049Y21562D01* X15056Y21568D01* X15061Y21575D01* X15064Y21580D01* Y21428D01* G37* G36* Y40000D02*X16445D01* Y39859D01* X16442Y39864D01* X16436Y39871D01* X16429Y39876D01* X16422Y39880D01* X16413Y39883D01* X16405Y39884D01* X16396Y39884D01* X16388Y39882D01* X16353Y39870D01* X16321Y39855D01* X16289Y39837D01* X16260Y39816D01* X16232Y39793D01* X16207Y39767D01* X16184Y39739D01* X16164Y39709D01* X16146Y39677D01* X16132Y39644D01* X16120Y39610D01* X16118Y39601D01* X16118Y39593D01* X16119Y39584D01* X16122Y39576D01* X16127Y39568D01* X16132Y39561D01* X16139Y39556D01* X16146Y39551D01* X16154Y39548D01* X16163Y39546D01* X16172Y39546D01* X16180Y39547D01* X16188Y39550D01* X16196Y39555D01* X16203Y39560D01* X16209Y39567D01* X16213Y39574D01* X16216Y39582D01* X16225Y39608D01* X16236Y39633D01* X16249Y39657D01* X16264Y39679D01* X16281Y39700D01* X16300Y39719D01* X16321Y39737D01* X16343Y39752D01* X16367Y39766D01* X16391Y39777D01* X16417Y39786D01* X16425Y39790D01* X16432Y39794D01* X16439Y39800D01* X16444Y39807D01* X16445Y39809D01* Y39197D01* X16444Y39198D01* X16437Y39204D01* X16430Y39208D01* X16422Y39211D01* X16396Y39220D01* X16371Y39231D01* X16348Y39244D01* X16325Y39259D01* X16304Y39276D01* X16285Y39295D01* X16267Y39316D01* X16252Y39338D01* X16238Y39362D01* X16227Y39386D01* X16218Y39412D01* X16214Y39420D01* X16210Y39427D01* X16204Y39434D01* X16197Y39439D01* X16189Y39443D01* X16181Y39446D01* X16172Y39447D01* X16164Y39447D01* X16155Y39445D01* X16147Y39442D01* X16140Y39437D01* X16133Y39431D01* X16128Y39424D01* X16124Y39417D01* X16121Y39409D01* X16120Y39400D01* X16120Y39391D01* X16122Y39383D01* X16134Y39349D01* X16149Y39316D01* X16167Y39284D01* X16188Y39255D01* X16212Y39227D01* X16237Y39202D01* X16265Y39179D01* X16295Y39159D01* X16327Y39141D01* X16360Y39127D01* X16394Y39115D01* X16403Y39113D01* X16412Y39113D01* X16420Y39115D01* X16428Y39117D01* X16436Y39122D01* X16443Y39127D01* X16445Y39130D01* Y37878D01* X16442Y37880D01* X16433Y37883D01* X16425Y37884D01* X16416Y37884D01* X16408Y37882D01* X16373Y37870D01* X16341Y37855D01* X16309Y37837D01* X16280Y37816D01* X16252Y37793D01* X16227Y37767D01* X16204Y37739D01* X16184Y37709D01* X16166Y37677D01* X16152Y37644D01* X16140Y37610D01* X16138Y37601D01* X16138Y37593D01* X16139Y37584D01* X16142Y37576D01* X16147Y37568D01* X16152Y37561D01* X16159Y37556D01* X16166Y37551D01* X16174Y37548D01* X16183Y37546D01* X16192Y37546D01* X16200Y37547D01* X16208Y37550D01* X16216Y37555D01* X16223Y37560D01* X16229Y37567D01* X16233Y37574D01* X16236Y37582D01* X16245Y37608D01* X16256Y37633D01* X16269Y37657D01* X16284Y37679D01* X16301Y37700D01* X16320Y37719D01* X16341Y37737D01* X16363Y37752D01* X16387Y37766D01* X16411Y37777D01* X16437Y37786D01* X16445Y37790D01* X16445Y37790D01* Y37210D01* X16442Y37211D01* X16416Y37220D01* X16391Y37231D01* X16368Y37244D01* X16345Y37259D01* X16324Y37276D01* X16305Y37295D01* X16287Y37316D01* X16272Y37338D01* X16258Y37362D01* X16247Y37386D01* X16238Y37412D01* X16234Y37420D01* X16230Y37427D01* X16224Y37434D01* X16217Y37439D01* X16209Y37443D01* X16201Y37446D01* X16192Y37447D01* X16184Y37447D01* X16175Y37445D01* X16167Y37442D01* X16160Y37437D01* X16153Y37431D01* X16148Y37424D01* X16144Y37417D01* X16141Y37409D01* X16140Y37400D01* X16140Y37391D01* X16142Y37383D01* X16154Y37349D01* X16169Y37316D01* X16187Y37284D01* X16208Y37255D01* X16232Y37227D01* X16257Y37202D01* X16285Y37179D01* X16315Y37159D01* X16347Y37141D01* X16380Y37127D01* X16414Y37115D01* X16423Y37113D01* X16432Y37113D01* X16440Y37115D01* X16445Y37116D01* Y35884D01* X16445Y35884D01* X16436Y35884D01* X16428Y35882D01* X16393Y35870D01* X16361Y35855D01* X16329Y35837D01* X16300Y35816D01* X16272Y35793D01* X16247Y35767D01* X16224Y35739D01* X16204Y35709D01* X16186Y35677D01* X16172Y35644D01* X16160Y35610D01* X16158Y35601D01* X16158Y35593D01* X16159Y35584D01* X16162Y35576D01* X16167Y35568D01* X16172Y35561D01* X16179Y35556D01* X16186Y35551D01* X16194Y35548D01* X16203Y35546D01* X16212Y35546D01* X16220Y35547D01* X16228Y35550D01* X16236Y35555D01* X16243Y35560D01* X16249Y35567D01* X16253Y35574D01* X16256Y35582D01* X16265Y35608D01* X16276Y35633D01* X16289Y35657D01* X16304Y35679D01* X16321Y35700D01* X16340Y35719D01* X16361Y35737D01* X16383Y35752D01* X16407Y35766D01* X16431Y35777D01* X16445Y35782D01* Y35217D01* X16436Y35220D01* X16411Y35231D01* X16388Y35244D01* X16365Y35259D01* X16344Y35276D01* X16325Y35295D01* X16307Y35316D01* X16292Y35338D01* X16278Y35362D01* X16267Y35386D01* X16258Y35412D01* X16254Y35420D01* X16250Y35427D01* X16244Y35434D01* X16237Y35439D01* X16229Y35443D01* X16221Y35446D01* X16212Y35447D01* X16204Y35447D01* X16195Y35445D01* X16187Y35442D01* X16180Y35437D01* X16173Y35431D01* X16168Y35424D01* X16164Y35417D01* X16161Y35409D01* X16160Y35400D01* X16160Y35391D01* X16162Y35383D01* X16174Y35349D01* X16189Y35316D01* X16207Y35284D01* X16228Y35255D01* X16252Y35227D01* X16277Y35202D01* X16305Y35179D01* X16335Y35159D01* X16367Y35141D01* X16400Y35127D01* X16434Y35115D01* X16443Y35113D01* X16445D01* Y33881D01* X16413Y33870D01* X16381Y33855D01* X16349Y33837D01* X16320Y33816D01* X16292Y33793D01* X16267Y33767D01* X16244Y33739D01* X16224Y33709D01* X16206Y33677D01* X16192Y33644D01* X16180Y33610D01* X16178Y33601D01* X16178Y33593D01* X16179Y33584D01* X16182Y33576D01* X16187Y33568D01* X16192Y33561D01* X16199Y33556D01* X16206Y33551D01* X16214Y33548D01* X16223Y33546D01* X16232Y33546D01* X16240Y33547D01* X16248Y33550D01* X16256Y33555D01* X16263Y33560D01* X16269Y33567D01* X16273Y33574D01* X16276Y33582D01* X16285Y33608D01* X16296Y33633D01* X16309Y33657D01* X16324Y33679D01* X16341Y33700D01* X16360Y33719D01* X16381Y33737D01* X16403Y33752D01* X16427Y33766D01* X16445Y33775D01* Y33225D01* X16431Y33231D01* X16408Y33244D01* X16385Y33259D01* X16364Y33276D01* X16345Y33295D01* X16327Y33316D01* X16312Y33338D01* X16298Y33362D01* X16287Y33386D01* X16278Y33412D01* X16274Y33420D01* X16270Y33427D01* X16264Y33434D01* X16257Y33439D01* X16249Y33443D01* X16241Y33446D01* X16232Y33447D01* X16224Y33447D01* X16215Y33445D01* X16207Y33442D01* X16200Y33437D01* X16193Y33431D01* X16188Y33424D01* X16184Y33417D01* X16181Y33409D01* X16180Y33400D01* X16180Y33391D01* X16182Y33383D01* X16194Y33349D01* X16209Y33316D01* X16227Y33284D01* X16248Y33255D01* X16272Y33227D01* X16297Y33202D01* X16325Y33179D01* X16355Y33159D01* X16387Y33141D01* X16420Y33127D01* X16445Y33118D01* Y31874D01* X16433Y31870D01* X16401Y31855D01* X16369Y31837D01* X16340Y31816D01* X16312Y31793D01* X16287Y31767D01* X16264Y31739D01* X16244Y31709D01* X16226Y31677D01* X16212Y31644D01* X16200Y31610D01* X16198Y31601D01* X16198Y31593D01* X16199Y31584D01* X16202Y31576D01* X16207Y31568D01* X16212Y31561D01* X16219Y31556D01* X16226Y31551D01* X16234Y31548D01* X16243Y31546D01* X16252Y31546D01* X16260Y31547D01* X16268Y31550D01* X16276Y31555D01* X16283Y31560D01* X16289Y31567D01* X16293Y31574D01* X16296Y31582D01* X16305Y31608D01* X16316Y31633D01* X16329Y31657D01* X16344Y31679D01* X16361Y31700D01* X16380Y31719D01* X16401Y31737D01* X16423Y31752D01* X16445Y31765D01* Y31234D01* X16428Y31244D01* X16405Y31259D01* X16384Y31276D01* X16365Y31295D01* X16347Y31316D01* X16332Y31338D01* X16318Y31362D01* X16307Y31386D01* X16298Y31412D01* X16294Y31420D01* X16290Y31427D01* X16284Y31434D01* X16277Y31439D01* X16269Y31443D01* X16261Y31446D01* X16252Y31447D01* X16244Y31447D01* X16235Y31445D01* X16227Y31442D01* X16220Y31437D01* X16213Y31431D01* X16208Y31424D01* X16204Y31417D01* X16201Y31409D01* X16200Y31400D01* X16200Y31391D01* X16202Y31383D01* X16214Y31349D01* X16229Y31316D01* X16247Y31284D01* X16268Y31255D01* X16292Y31227D01* X16317Y31202D01* X16345Y31179D01* X16375Y31159D01* X16407Y31141D01* X16440Y31127D01* X16445Y31125D01* Y29866D01* X16421Y29855D01* X16389Y29837D01* X16360Y29816D01* X16332Y29793D01* X16307Y29767D01* X16284Y29739D01* X16264Y29709D01* X16246Y29677D01* X16232Y29644D01* X16220Y29610D01* X16218Y29601D01* X16218Y29593D01* X16219Y29584D01* X16222Y29576D01* X16227Y29568D01* X16232Y29561D01* X16239Y29556D01* X16246Y29551D01* X16254Y29548D01* X16263Y29546D01* X16272Y29546D01* X16280Y29547D01* X16288Y29550D01* X16296Y29555D01* X16303Y29560D01* X16309Y29567D01* X16313Y29574D01* X16316Y29582D01* X16325Y29608D01* X16336Y29633D01* X16349Y29657D01* X16364Y29679D01* X16381Y29700D01* X16400Y29719D01* X16421Y29737D01* X16443Y29752D01* X16445Y29754D01* Y29246D01* X16425Y29259D01* X16404Y29276D01* X16385Y29295D01* X16367Y29316D01* X16352Y29338D01* X16338Y29362D01* X16327Y29386D01* X16318Y29412D01* X16314Y29420D01* X16310Y29427D01* X16304Y29434D01* X16297Y29439D01* X16289Y29443D01* X16281Y29446D01* X16272Y29447D01* X16264Y29447D01* X16255Y29445D01* X16247Y29442D01* X16240Y29437D01* X16233Y29431D01* X16228Y29424D01* X16224Y29417D01* X16221Y29409D01* X16220Y29400D01* X16220Y29391D01* X16222Y29383D01* X16234Y29349D01* X16249Y29316D01* X16267Y29284D01* X16288Y29255D01* X16312Y29227D01* X16337Y29202D01* X16365Y29179D01* X16395Y29159D01* X16427Y29141D01* X16445Y29133D01* Y27857D01* X16441Y27855D01* X16409Y27837D01* X16380Y27816D01* X16352Y27793D01* X16327Y27767D01* X16304Y27739D01* X16284Y27709D01* X16266Y27677D01* X16252Y27644D01* X16240Y27610D01* X16238Y27601D01* X16238Y27593D01* X16239Y27584D01* X16242Y27576D01* X16247Y27568D01* X16252Y27561D01* X16259Y27556D01* X16266Y27551D01* X16274Y27548D01* X16283Y27546D01* X16292Y27546D01* X16300Y27547D01* X16308Y27550D01* X16316Y27555D01* X16323Y27560D01* X16329Y27567D01* X16333Y27574D01* X16336Y27582D01* X16345Y27608D01* X16356Y27633D01* X16369Y27657D01* X16384Y27679D01* X16401Y27700D01* X16420Y27719D01* X16441Y27737D01* X16445Y27740D01* Y27259D01* X16445Y27259D01* X16424Y27276D01* X16405Y27295D01* X16387Y27316D01* X16372Y27338D01* X16358Y27362D01* X16347Y27386D01* X16338Y27412D01* X16334Y27420D01* X16330Y27427D01* X16324Y27434D01* X16317Y27439D01* X16309Y27443D01* X16301Y27446D01* X16292Y27447D01* X16284Y27447D01* X16275Y27445D01* X16267Y27442D01* X16260Y27437D01* X16253Y27431D01* X16248Y27424D01* X16244Y27417D01* X16241Y27409D01* X16240Y27400D01* X16240Y27391D01* X16242Y27383D01* X16254Y27349D01* X16269Y27316D01* X16287Y27284D01* X16308Y27255D01* X16332Y27227D01* X16357Y27202D01* X16385Y27179D01* X16415Y27159D01* X16445Y27142D01* Y25846D01* X16429Y25837D01* X16400Y25816D01* X16372Y25793D01* X16347Y25767D01* X16324Y25739D01* X16304Y25709D01* X16286Y25677D01* X16272Y25644D01* X16260Y25610D01* X16258Y25601D01* X16258Y25593D01* X16259Y25584D01* X16262Y25576D01* X16267Y25568D01* X16272Y25561D01* X16279Y25556D01* X16286Y25551D01* X16294Y25548D01* X16303Y25546D01* X16312Y25546D01* X16320Y25547D01* X16328Y25550D01* X16336Y25555D01* X16343Y25560D01* X16349Y25567D01* X16353Y25574D01* X16356Y25582D01* X16365Y25608D01* X16376Y25633D01* X16389Y25657D01* X16404Y25679D01* X16421Y25700D01* X16440Y25719D01* X16445Y25723D01* Y25276D01* X16444Y25276D01* X16425Y25295D01* X16407Y25316D01* X16392Y25338D01* X16378Y25362D01* X16367Y25386D01* X16358Y25412D01* X16354Y25420D01* X16350Y25427D01* X16344Y25434D01* X16337Y25439D01* X16329Y25443D01* X16321Y25446D01* X16312Y25447D01* X16304Y25447D01* X16295Y25445D01* X16287Y25442D01* X16280Y25437D01* X16273Y25431D01* X16268Y25424D01* X16264Y25417D01* X16261Y25409D01* X16260Y25400D01* X16260Y25391D01* X16262Y25383D01* X16274Y25349D01* X16289Y25316D01* X16307Y25284D01* X16328Y25255D01* X16352Y25227D01* X16377Y25202D01* X16405Y25179D01* X16435Y25159D01* X16445Y25153D01* Y23834D01* X16420Y23816D01* X16392Y23793D01* X16367Y23767D01* X16344Y23739D01* X16324Y23709D01* X16306Y23677D01* X16292Y23644D01* X16280Y23610D01* X16278Y23601D01* X16278Y23593D01* X16279Y23584D01* X16282Y23576D01* X16287Y23568D01* X16292Y23561D01* X16299Y23556D01* X16306Y23551D01* X16314Y23548D01* X16323Y23546D01* X16332Y23546D01* X16340Y23547D01* X16348Y23550D01* X16356Y23555D01* X16363Y23560D01* X16369Y23567D01* X16373Y23574D01* X16376Y23582D01* X16385Y23608D01* X16396Y23633D01* X16409Y23657D01* X16424Y23679D01* X16441Y23700D01* X16445Y23704D01* Y23295D01* X16445Y23295D01* X16427Y23316D01* X16412Y23338D01* X16398Y23362D01* X16387Y23386D01* X16378Y23412D01* X16374Y23420D01* X16370Y23427D01* X16364Y23434D01* X16357Y23439D01* X16349Y23443D01* X16341Y23446D01* X16332Y23447D01* X16324Y23447D01* X16315Y23445D01* X16307Y23442D01* X16300Y23437D01* X16293Y23431D01* X16288Y23424D01* X16284Y23417D01* X16281Y23409D01* X16280Y23400D01* X16280Y23391D01* X16282Y23383D01* X16294Y23349D01* X16309Y23316D01* X16327Y23284D01* X16348Y23255D01* X16372Y23227D01* X16397Y23202D01* X16425Y23179D01* X16445Y23166D01* Y21820D01* X16440Y21816D01* X16412Y21793D01* X16387Y21767D01* X16364Y21739D01* X16344Y21709D01* X16326Y21677D01* X16312Y21644D01* X16300Y21610D01* X16298Y21601D01* X16298Y21593D01* X16299Y21584D01* X16302Y21576D01* X16307Y21568D01* X16312Y21561D01* X16319Y21556D01* X16326Y21551D01* X16334Y21548D01* X16343Y21546D01* X16352Y21546D01* X16360Y21547D01* X16368Y21550D01* X16376Y21555D01* X16383Y21560D01* X16389Y21567D01* X16393Y21574D01* X16396Y21582D01* X16405Y21608D01* X16416Y21633D01* X16429Y21657D01* X16444Y21679D01* X16445Y21680D01* Y21319D01* X16432Y21338D01* X16418Y21362D01* X16407Y21386D01* X16398Y21412D01* X16394Y21420D01* X16390Y21427D01* X16384Y21434D01* X16377Y21439D01* X16369Y21443D01* X16361Y21446D01* X16352Y21447D01* X16344Y21447D01* X16335Y21445D01* X16327Y21442D01* X16320Y21437D01* X16313Y21431D01* X16308Y21424D01* X16304Y21417D01* X16301Y21409D01* X16300Y21400D01* X16300Y21391D01* X16302Y21383D01* X16314Y21349D01* X16329Y21316D01* X16347Y21284D01* X16368Y21255D01* X16392Y21227D01* X16417Y21202D01* X16445Y21179D01* Y19804D01* X16432Y19793D01* X16407Y19767D01* X16384Y19739D01* X16364Y19709D01* X16346Y19677D01* X16332Y19644D01* X16320Y19610D01* X16318Y19601D01* X16318Y19593D01* X16319Y19584D01* X16322Y19576D01* X16327Y19568D01* X16332Y19561D01* X16339Y19556D01* X16346Y19551D01* X16354Y19548D01* X16363Y19546D01* X16372Y19546D01* X16380Y19547D01* X16388Y19550D01* X16396Y19555D01* X16403Y19560D01* X16409Y19567D01* X16413Y19574D01* X16416Y19582D01* X16425Y19608D01* X16436Y19633D01* X16445Y19650D01* Y19349D01* X16438Y19362D01* X16427Y19386D01* X16418Y19412D01* X16414Y19420D01* X16410Y19427D01* X16404Y19434D01* X16397Y19439D01* X16389Y19443D01* X16381Y19446D01* X16372Y19447D01* X16364Y19447D01* X16355Y19445D01* X16347Y19442D01* X16340Y19437D01* X16333Y19431D01* X16328Y19424D01* X16324Y19417D01* X16321Y19409D01* X16320Y19400D01* X16320Y19391D01* X16322Y19383D01* X16334Y19349D01* X16349Y19316D01* X16367Y19284D01* X16388Y19255D01* X16412Y19227D01* X16437Y19202D01* X16445Y19196D01* Y17785D01* X16427Y17767D01* X16404Y17739D01* X16384Y17709D01* X16366Y17677D01* X16352Y17644D01* X16340Y17610D01* X16338Y17601D01* X16338Y17593D01* X16339Y17584D01* X16342Y17576D01* X16347Y17568D01* X16352Y17561D01* X16359Y17556D01* X16366Y17551D01* X16374Y17548D01* X16383Y17546D01* X16392Y17546D01* X16400Y17547D01* X16408Y17550D01* X16416Y17555D01* X16423Y17560D01* X16429Y17567D01* X16433Y17574D01* X16436Y17582D01* X16445Y17608D01* X16445Y17609D01* Y17391D01* X16438Y17412D01* X16434Y17420D01* X16430Y17427D01* X16424Y17434D01* X16417Y17439D01* X16409Y17443D01* X16401Y17446D01* X16392Y17447D01* X16384Y17447D01* X16375Y17445D01* X16367Y17442D01* X16360Y17437D01* X16353Y17431D01* X16348Y17424D01* X16344Y17417D01* X16341Y17409D01* X16340Y17400D01* X16340Y17391D01* X16342Y17383D01* X16354Y17349D01* X16369Y17316D01* X16387Y17284D01* X16408Y17255D01* X16432Y17227D01* X16445Y17214D01* Y15765D01* X16424Y15739D01* X16404Y15709D01* X16386Y15677D01* X16372Y15644D01* X16360Y15610D01* X16358Y15601D01* X16358Y15593D01* X16359Y15584D01* X16362Y15576D01* X16367Y15568D01* X16372Y15561D01* X16379Y15556D01* X16386Y15551D01* X16394Y15548D01* X16403Y15546D01* X16412Y15546D01* X16420Y15547D01* X16428Y15550D01* X16436Y15555D01* X16443Y15560D01* X16445Y15563D01* Y15432D01* X16444Y15434D01* X16437Y15439D01* X16429Y15443D01* X16421Y15446D01* X16412Y15447D01* X16404Y15447D01* X16395Y15445D01* X16387Y15442D01* X16380Y15437D01* X16373Y15431D01* X16368Y15424D01* X16364Y15417D01* X16361Y15409D01* X16360Y15400D01* X16360Y15391D01* X16362Y15383D01* X16374Y15349D01* X16389Y15316D01* X16407Y15284D01* X16428Y15255D01* X16445Y15235D01* Y13740D01* X16444Y13739D01* X16424Y13709D01* X16406Y13677D01* X16392Y13644D01* X16380Y13610D01* X16378Y13601D01* X16378Y13593D01* X16379Y13584D01* X16382Y13576D01* X16387Y13568D01* X16392Y13561D01* X16399Y13556D01* X16406Y13551D01* X16414Y13548D01* X16423Y13546D01* X16432Y13546D01* X16440Y13547D01* X16445Y13549D01* Y13445D01* X16441Y13446D01* X16432Y13447D01* X16424Y13447D01* X16415Y13445D01* X16407Y13442D01* X16400Y13437D01* X16393Y13431D01* X16388Y13424D01* X16384Y13417D01* X16381Y13409D01* X16380Y13400D01* X16380Y13391D01* X16382Y13383D01* X16394Y13349D01* X16409Y13316D01* X16427Y13284D01* X16445Y13259D01* Y11711D01* X16444Y11709D01* X16426Y11677D01* X16412Y11644D01* X16400Y11610D01* X16398Y11601D01* X16398Y11593D01* X16399Y11584D01* X16402Y11576D01* X16407Y11568D01* X16412Y11561D01* X16419Y11556D01* X16426Y11551D01* X16434Y11548D01* X16443Y11546D01* X16445D01* Y11447D01* X16444Y11447D01* X16435Y11445D01* X16427Y11442D01* X16420Y11437D01* X16413Y11431D01* X16408Y11424D01* X16404Y11417D01* X16401Y11409D01* X16400Y11400D01* X16400Y11391D01* X16402Y11383D01* X16414Y11349D01* X16429Y11316D01* X16445Y11288D01* Y9675D01* X16432Y9644D01* X16420Y9610D01* X16418Y9601D01* X16418Y9593D01* X16419Y9584D01* X16422Y9576D01* X16427Y9568D01* X16432Y9561D01* X16439Y9556D01* X16445Y9552D01* Y9441D01* X16440Y9437D01* X16433Y9431D01* X16428Y9424D01* X16424Y9417D01* X16421Y9409D01* X16420Y9400D01* X16420Y9391D01* X16422Y9383D01* X16434Y9349D01* X16445Y9325D01* Y7625D01* X16440Y7610D01* X16438Y7601D01* X16438Y7593D01* X16439Y7584D01* X16442Y7576D01* X16445Y7571D01* Y7419D01* X16444Y7417D01* X16441Y7409D01* X16440Y7400D01* X16440Y7391D01* X16442Y7383D01* X16445Y7374D01* Y0D01* X15064D01* Y1142D01* X15068Y1144D01* X15100Y1162D01* X15129Y1183D01* X15157Y1207D01* X15182Y1232D01* X15205Y1260D01* X15225Y1290D01* X15243Y1322D01* X15257Y1355D01* X15269Y1389D01* X15271Y1398D01* X15271Y1407D01* X15270Y1415D01* X15267Y1423D01* X15262Y1431D01* X15257Y1438D01* X15250Y1444D01* X15243Y1448D01* X15235Y1451D01* X15226Y1453D01* X15217Y1453D01* X15209Y1452D01* X15201Y1449D01* X15193Y1445D01* X15186Y1439D01* X15180Y1433D01* X15176Y1425D01* X15173Y1417D01* X15164Y1391D01* X15153Y1366D01* X15140Y1343D01* X15125Y1320D01* X15108Y1299D01* X15089Y1280D01* X15068Y1262D01* X15064Y1259D01* Y1740D01* X15085Y1723D01* X15104Y1704D01* X15122Y1683D01* X15137Y1661D01* X15151Y1637D01* X15162Y1613D01* X15171Y1587D01* X15175Y1579D01* X15179Y1572D01* X15185Y1565D01* X15192Y1560D01* X15200Y1556D01* X15208Y1553D01* X15217Y1552D01* X15225Y1552D01* X15234Y1554D01* X15242Y1557D01* X15249Y1562D01* X15256Y1568D01* X15261Y1575D01* X15265Y1582D01* X15268Y1591D01* X15269Y1599D01* X15269Y1608D01* X15267Y1617D01* X15255Y1651D01* X15240Y1683D01* X15222Y1715D01* X15201Y1744D01* X15177Y1772D01* X15152Y1797D01* X15124Y1820D01* X15094Y1840D01* X15064Y1857D01* Y3153D01* X15080Y3162D01* X15109Y3183D01* X15137Y3207D01* X15162Y3232D01* X15185Y3260D01* X15205Y3290D01* X15223Y3322D01* X15237Y3355D01* X15249Y3389D01* X15251Y3398D01* X15251Y3407D01* X15250Y3415D01* X15247Y3423D01* X15242Y3431D01* X15237Y3438D01* X15230Y3444D01* X15223Y3448D01* X15215Y3451D01* X15206Y3453D01* X15197Y3453D01* X15189Y3452D01* X15181Y3449D01* X15173Y3445D01* X15166Y3439D01* X15160Y3433D01* X15156Y3425D01* X15153Y3417D01* X15144Y3391D01* X15133Y3366D01* X15120Y3343D01* X15105Y3320D01* X15088Y3299D01* X15069Y3280D01* X15064Y3276D01* Y3724D01* X15065Y3723D01* X15084Y3704D01* X15102Y3683D01* X15117Y3661D01* X15131Y3637D01* X15142Y3613D01* X15151Y3587D01* X15155Y3579D01* X15159Y3572D01* X15165Y3565D01* X15172Y3560D01* X15180Y3556D01* X15188Y3553D01* X15197Y3552D01* X15205Y3552D01* X15214Y3554D01* X15222Y3557D01* X15229Y3562D01* X15236Y3568D01* X15241Y3575D01* X15245Y3582D01* X15248Y3591D01* X15249Y3599D01* X15249Y3608D01* X15247Y3617D01* X15235Y3651D01* X15220Y3683D01* X15202Y3715D01* X15181Y3744D01* X15157Y3772D01* X15132Y3797D01* X15104Y3820D01* X15074Y3840D01* X15064Y3846D01* Y5165D01* X15089Y5183D01* X15117Y5207D01* X15142Y5232D01* X15165Y5260D01* X15185Y5290D01* X15203Y5322D01* X15217Y5355D01* X15229Y5389D01* X15231Y5398D01* X15231Y5407D01* X15230Y5415D01* X15227Y5423D01* X15222Y5431D01* X15217Y5438D01* X15210Y5444D01* X15203Y5448D01* X15195Y5451D01* X15186Y5453D01* X15177Y5453D01* X15169Y5452D01* X15161Y5449D01* X15153Y5445D01* X15146Y5439D01* X15140Y5433D01* X15136Y5425D01* X15133Y5417D01* X15124Y5391D01* X15113Y5366D01* X15100Y5343D01* X15085Y5320D01* X15068Y5299D01* X15064Y5295D01* Y5704D01* X15064Y5704D01* X15082Y5683D01* X15097Y5661D01* X15111Y5637D01* X15122Y5613D01* X15131Y5587D01* X15135Y5579D01* X15139Y5572D01* X15145Y5565D01* X15152Y5560D01* X15160Y5556D01* X15168Y5553D01* X15177Y5552D01* X15185Y5552D01* X15194Y5554D01* X15202Y5557D01* X15209Y5562D01* X15216Y5568D01* X15221Y5575D01* X15225Y5582D01* X15228Y5591D01* X15229Y5599D01* X15229Y5608D01* X15227Y5617D01* X15215Y5651D01* X15200Y5683D01* X15182Y5715D01* X15161Y5744D01* X15137Y5772D01* X15112Y5797D01* X15084Y5820D01* X15064Y5834D01* Y7180D01* X15069Y7183D01* X15097Y7207D01* X15122Y7232D01* X15145Y7260D01* X15165Y7290D01* X15183Y7322D01* X15197Y7355D01* X15209Y7389D01* X15211Y7398D01* X15211Y7407D01* X15210Y7415D01* X15207Y7423D01* X15202Y7431D01* X15197Y7438D01* X15190Y7444D01* X15183Y7448D01* X15175Y7451D01* X15166Y7453D01* X15157Y7453D01* X15149Y7452D01* X15141Y7449D01* X15133Y7445D01* X15126Y7439D01* X15120Y7433D01* X15116Y7425D01* X15113Y7417D01* X15104Y7391D01* X15093Y7366D01* X15080Y7343D01* X15065Y7320D01* X15064Y7319D01* Y7680D01* X15077Y7661D01* X15091Y7637D01* X15102Y7613D01* X15111Y7587D01* X15115Y7579D01* X15119Y7572D01* X15125Y7565D01* X15132Y7560D01* X15140Y7556D01* X15148Y7553D01* X15157Y7552D01* X15165Y7552D01* X15174Y7554D01* X15182Y7557D01* X15189Y7562D01* X15196Y7568D01* X15201Y7575D01* X15205Y7582D01* X15208Y7591D01* X15209Y7599D01* X15209Y7608D01* X15207Y7617D01* X15195Y7651D01* X15180Y7683D01* X15162Y7715D01* X15141Y7744D01* X15117Y7772D01* X15092Y7797D01* X15064Y7820D01* Y9196D01* X15077Y9207D01* X15102Y9232D01* X15125Y9260D01* X15145Y9290D01* X15163Y9322D01* X15177Y9355D01* X15189Y9389D01* X15191Y9398D01* X15191Y9407D01* X15190Y9415D01* X15187Y9423D01* X15182Y9431D01* X15177Y9438D01* X15170Y9444D01* X15163Y9448D01* X15155Y9451D01* X15146Y9453D01* X15137Y9453D01* X15129Y9452D01* X15121Y9449D01* X15113Y9445D01* X15106Y9439D01* X15100Y9433D01* X15096Y9425D01* X15093Y9417D01* X15084Y9391D01* X15073Y9366D01* X15064Y9350D01* Y9650D01* X15071Y9637D01* X15082Y9613D01* X15091Y9587D01* X15095Y9579D01* X15099Y9572D01* X15105Y9565D01* X15112Y9560D01* X15120Y9556D01* X15128Y9553D01* X15137Y9552D01* X15145Y9552D01* X15154Y9554D01* X15162Y9557D01* X15169Y9562D01* X15176Y9568D01* X15181Y9575D01* X15185Y9582D01* X15188Y9591D01* X15189Y9599D01* X15189Y9608D01* X15187Y9617D01* X15175Y9651D01* X15160Y9683D01* X15142Y9715D01* X15121Y9744D01* X15097Y9772D01* X15072Y9797D01* X15064Y9804D01* Y11214D01* X15082Y11232D01* X15105Y11260D01* X15125Y11290D01* X15143Y11322D01* X15157Y11355D01* X15169Y11389D01* X15171Y11398D01* X15171Y11407D01* X15170Y11415D01* X15167Y11423D01* X15162Y11431D01* X15157Y11438D01* X15150Y11444D01* X15143Y11448D01* X15135Y11451D01* X15126Y11453D01* X15117Y11453D01* X15109Y11452D01* X15101Y11449D01* X15093Y11445D01* X15086Y11439D01* X15080Y11433D01* X15076Y11425D01* X15073Y11417D01* X15064Y11391D01* X15064Y11391D01* Y11608D01* X15071Y11587D01* X15075Y11579D01* X15079Y11572D01* X15085Y11565D01* X15092Y11560D01* X15100Y11556D01* X15108Y11553D01* X15117Y11552D01* X15125Y11552D01* X15134Y11554D01* X15142Y11557D01* X15149Y11562D01* X15156Y11568D01* X15161Y11575D01* X15165Y11582D01* X15168Y11591D01* X15169Y11599D01* X15169Y11608D01* X15167Y11617D01* X15155Y11651D01* X15140Y11683D01* X15122Y11715D01* X15101Y11744D01* X15077Y11772D01* X15064Y11785D01* Y13235D01* X15085Y13260D01* X15105Y13290D01* X15123Y13322D01* X15137Y13355D01* X15149Y13389D01* X15151Y13398D01* X15151Y13407D01* X15150Y13415D01* X15147Y13423D01* X15142Y13431D01* X15137Y13438D01* X15130Y13444D01* X15123Y13448D01* X15115Y13451D01* X15106Y13453D01* X15097Y13453D01* X15089Y13452D01* X15081Y13449D01* X15073Y13445D01* X15066Y13439D01* X15064Y13437D01* Y13567D01* X15065Y13565D01* X15072Y13560D01* X15080Y13556D01* X15088Y13553D01* X15097Y13552D01* X15105Y13552D01* X15114Y13554D01* X15122Y13557D01* X15129Y13562D01* X15136Y13568D01* X15141Y13575D01* X15145Y13582D01* X15148Y13591D01* X15149Y13599D01* X15149Y13608D01* X15147Y13617D01* X15135Y13651D01* X15120Y13683D01* X15102Y13715D01* X15081Y13744D01* X15064Y13764D01* Y15259D01* X15065Y15260D01* X15085Y15290D01* X15103Y15322D01* X15117Y15355D01* X15129Y15389D01* X15131Y15398D01* X15131Y15407D01* X15130Y15415D01* X15127Y15423D01* X15122Y15431D01* X15117Y15438D01* X15110Y15444D01* X15103Y15448D01* X15095Y15451D01* X15086Y15453D01* X15077Y15453D01* X15069Y15452D01* X15064Y15450D01* Y15555D01* X15068Y15553D01* X15077Y15552D01* X15085Y15552D01* X15094Y15554D01* X15102Y15557D01* X15109Y15562D01* X15116Y15568D01* X15121Y15575D01* X15125Y15582D01* X15128Y15591D01* X15129Y15599D01* X15129Y15608D01* X15127Y15617D01* X15115Y15651D01* X15100Y15683D01* X15082Y15715D01* X15064Y15740D01* Y17288D01* X15065Y17290D01* X15083Y17322D01* X15097Y17355D01* X15109Y17389D01* X15111Y17398D01* X15111Y17407D01* X15110Y17415D01* X15107Y17423D01* X15102Y17431D01* X15097Y17438D01* X15090Y17444D01* X15083Y17448D01* X15075Y17451D01* X15066Y17453D01* X15064D01* Y17552D01* X15065D01* X15074Y17554D01* X15082Y17557D01* X15089Y17562D01* X15096Y17568D01* X15101Y17575D01* X15105Y17582D01* X15108Y17591D01* X15109Y17599D01* X15109Y17608D01* X15107Y17617D01* X15095Y17651D01* X15080Y17683D01* X15064Y17711D01* Y19324D01* X15077Y19355D01* X15089Y19389D01* X15091Y19398D01* X15091Y19407D01* X15090Y19415D01* X15087Y19423D01* X15082Y19431D01* X15077Y19438D01* X15070Y19444D01* X15064Y19447D01* Y19559D01* X15069Y19562D01* X15076Y19568D01* X15081Y19575D01* X15085Y19582D01* X15088Y19591D01* X15089Y19599D01* X15089Y19608D01* X15087Y19617D01* X15075Y19651D01* X15064Y19674D01* Y21374D01* X15069Y21389D01* X15071Y21398D01* X15071Y21407D01* X15070Y21415D01* X15067Y21423D01* X15064Y21428D01* Y21580D01* X15065Y21582D01* X15068Y21591D01* X15069Y21599D01* X15069Y21608D01* X15067Y21617D01* X15064Y21625D01* Y40000D01* G37* G36* X16445D02*X16625D01* Y39881D01* X16615Y39884D01* X16606Y39886D01* X16597Y39886D01* X16589Y39885D01* X16581Y39882D01* X16573Y39878D01* X16566Y39872D01* X16560Y39865D01* X16556Y39858D01* X16553Y39850D01* X16551Y39841D01* X16551Y39833D01* X16552Y39824D01* X16555Y39816D01* X16559Y39808D01* X16565Y39801D01* X16572Y39796D01* X16579Y39791D01* X16587Y39788D01* X16613Y39779D01* X16625Y39774D01* Y39225D01* X16618Y39222D01* X16592Y39213D01* X16584Y39209D01* X16577Y39205D01* X16570Y39199D01* X16565Y39192D01* X16561Y39184D01* X16558Y39176D01* X16557Y39167D01* X16557Y39159D01* X16559Y39150D01* X16562Y39142D01* X16567Y39135D01* X16573Y39128D01* X16580Y39123D01* X16587Y39119D01* X16596Y39116D01* X16604Y39115D01* X16613Y39115D01* X16621Y39117D01* X16625Y39118D01* Y37886D01* X16617Y37886D01* X16609Y37885D01* X16601Y37882D01* X16593Y37878D01* X16586Y37872D01* X16580Y37865D01* X16576Y37858D01* X16573Y37850D01* X16571Y37841D01* X16571Y37833D01* X16572Y37824D01* X16575Y37816D01* X16579Y37808D01* X16585Y37801D01* X16592Y37796D01* X16599Y37791D01* X16607Y37788D01* X16625Y37782D01* Y37217D01* X16612Y37213D01* X16604Y37209D01* X16597Y37205D01* X16590Y37199D01* X16585Y37192D01* X16581Y37184D01* X16578Y37176D01* X16577Y37167D01* X16577Y37159D01* X16579Y37150D01* X16582Y37142D01* X16587Y37135D01* X16593Y37128D01* X16600Y37123D01* X16607Y37119D01* X16616Y37116D01* X16624Y37115D01* X16625D01* Y35883D01* X16621Y35882D01* X16613Y35878D01* X16606Y35872D01* X16600Y35865D01* X16596Y35858D01* X16593Y35850D01* X16591Y35841D01* X16591Y35833D01* X16592Y35824D01* X16595Y35816D01* X16599Y35808D01* X16605Y35801D01* X16612Y35796D01* X16619Y35791D01* X16625Y35789D01* Y35210D01* X16624Y35209D01* X16617Y35205D01* X16610Y35199D01* X16605Y35192D01* X16601Y35184D01* X16598Y35176D01* X16597Y35167D01* X16597Y35159D01* X16599Y35150D01* X16602Y35142D01* X16607Y35135D01* X16613Y35128D01* X16620Y35123D01* X16625Y35120D01* Y33871D01* X16620Y33865D01* X16616Y33858D01* X16613Y33850D01* X16611Y33841D01* X16611Y33833D01* X16612Y33824D01* X16615Y33816D01* X16619Y33808D01* X16625Y33801D01* X16625Y33801D01* Y33192D01* X16625Y33192D01* X16621Y33184D01* X16618Y33176D01* X16617Y33167D01* X16617Y33159D01* X16619Y33150D01* X16622Y33142D01* X16625Y33138D01* Y21859D01* X16622Y21864D01* X16616Y21871D01* X16609Y21876D01* X16602Y21880D01* X16593Y21883D01* X16585Y21884D01* X16576Y21884D01* X16568Y21882D01* X16533Y21870D01* X16501Y21855D01* X16469Y21837D01* X16445Y21820D01* Y23166D01* X16455Y23159D01* X16487Y23141D01* X16520Y23127D01* X16554Y23115D01* X16563Y23113D01* X16572Y23113D01* X16580Y23115D01* X16588Y23117D01* X16596Y23122D01* X16603Y23127D01* X16609Y23134D01* X16613Y23141D01* X16616Y23149D01* X16618Y23158D01* X16618Y23167D01* X16617Y23175D01* X16614Y23183D01* X16610Y23191D01* X16604Y23198D01* X16597Y23204D01* X16590Y23208D01* X16582Y23211D01* X16556Y23220D01* X16531Y23231D01* X16508Y23244D01* X16485Y23259D01* X16464Y23276D01* X16445Y23295D01* Y23704D01* X16460Y23719D01* X16481Y23737D01* X16503Y23752D01* X16527Y23766D01* X16551Y23777D01* X16577Y23786D01* X16585Y23790D01* X16592Y23794D01* X16599Y23800D01* X16604Y23807D01* X16608Y23815D01* X16611Y23823D01* X16612Y23832D01* X16612Y23840D01* X16610Y23849D01* X16607Y23857D01* X16602Y23864D01* X16596Y23871D01* X16589Y23876D01* X16582Y23880D01* X16573Y23883D01* X16565Y23884D01* X16556Y23884D01* X16548Y23882D01* X16513Y23870D01* X16481Y23855D01* X16449Y23837D01* X16445Y23834D01* Y25153D01* X16467Y25141D01* X16500Y25127D01* X16534Y25115D01* X16543Y25113D01* X16552Y25113D01* X16560Y25115D01* X16568Y25117D01* X16576Y25122D01* X16583Y25127D01* X16589Y25134D01* X16593Y25141D01* X16596Y25149D01* X16598Y25158D01* X16598Y25167D01* X16597Y25175D01* X16594Y25183D01* X16590Y25191D01* X16584Y25198D01* X16577Y25204D01* X16570Y25208D01* X16562Y25211D01* X16536Y25220D01* X16511Y25231D01* X16488Y25244D01* X16465Y25259D01* X16445Y25276D01* Y25723D01* X16461Y25737D01* X16483Y25752D01* X16507Y25766D01* X16531Y25777D01* X16557Y25786D01* X16565Y25790D01* X16572Y25794D01* X16579Y25800D01* X16584Y25807D01* X16588Y25815D01* X16591Y25823D01* X16592Y25832D01* X16592Y25840D01* X16590Y25849D01* X16587Y25857D01* X16582Y25864D01* X16576Y25871D01* X16569Y25876D01* X16562Y25880D01* X16553Y25883D01* X16545Y25884D01* X16536Y25884D01* X16528Y25882D01* X16493Y25870D01* X16461Y25855D01* X16445Y25846D01* Y27142D01* X16447Y27141D01* X16480Y27127D01* X16514Y27115D01* X16523Y27113D01* X16532Y27113D01* X16540Y27115D01* X16548Y27117D01* X16556Y27122D01* X16563Y27127D01* X16569Y27134D01* X16573Y27141D01* X16576Y27149D01* X16578Y27158D01* X16578Y27167D01* X16577Y27175D01* X16574Y27183D01* X16570Y27191D01* X16564Y27198D01* X16557Y27204D01* X16550Y27208D01* X16542Y27211D01* X16516Y27220D01* X16491Y27231D01* X16468Y27244D01* X16445Y27259D01* Y27740D01* X16463Y27752D01* X16487Y27766D01* X16511Y27777D01* X16537Y27786D01* X16545Y27790D01* X16552Y27794D01* X16559Y27800D01* X16564Y27807D01* X16568Y27815D01* X16571Y27823D01* X16572Y27832D01* X16572Y27840D01* X16570Y27849D01* X16567Y27857D01* X16562Y27864D01* X16556Y27871D01* X16549Y27876D01* X16542Y27880D01* X16533Y27883D01* X16525Y27884D01* X16516Y27884D01* X16508Y27882D01* X16473Y27870D01* X16445Y27857D01* Y29133D01* X16460Y29127D01* X16494Y29115D01* X16503Y29113D01* X16512Y29113D01* X16520Y29115D01* X16528Y29117D01* X16536Y29122D01* X16543Y29127D01* X16549Y29134D01* X16553Y29141D01* X16556Y29149D01* X16558Y29158D01* X16558Y29167D01* X16557Y29175D01* X16554Y29183D01* X16550Y29191D01* X16544Y29198D01* X16537Y29204D01* X16530Y29208D01* X16522Y29211D01* X16496Y29220D01* X16471Y29231D01* X16448Y29244D01* X16445Y29246D01* Y29754D01* X16467Y29766D01* X16491Y29777D01* X16517Y29786D01* X16525Y29790D01* X16532Y29794D01* X16539Y29800D01* X16544Y29807D01* X16548Y29815D01* X16551Y29823D01* X16552Y29832D01* X16552Y29840D01* X16550Y29849D01* X16547Y29857D01* X16542Y29864D01* X16536Y29871D01* X16529Y29876D01* X16522Y29880D01* X16513Y29883D01* X16505Y29884D01* X16496Y29884D01* X16488Y29882D01* X16453Y29870D01* X16445Y29866D01* Y31125D01* X16474Y31115D01* X16483Y31113D01* X16492Y31113D01* X16500Y31115D01* X16508Y31117D01* X16516Y31122D01* X16523Y31127D01* X16529Y31134D01* X16533Y31141D01* X16536Y31149D01* X16538Y31158D01* X16538Y31167D01* X16537Y31175D01* X16534Y31183D01* X16530Y31191D01* X16524Y31198D01* X16517Y31204D01* X16510Y31208D01* X16502Y31211D01* X16476Y31220D01* X16451Y31231D01* X16445Y31234D01* Y31765D01* X16447Y31766D01* X16471Y31777D01* X16497Y31786D01* X16505Y31790D01* X16512Y31794D01* X16519Y31800D01* X16524Y31807D01* X16528Y31815D01* X16531Y31823D01* X16532Y31832D01* X16532Y31840D01* X16530Y31849D01* X16527Y31857D01* X16522Y31864D01* X16516Y31871D01* X16509Y31876D01* X16502Y31880D01* X16493Y31883D01* X16485Y31884D01* X16476Y31884D01* X16468Y31882D01* X16445Y31874D01* Y33118D01* X16454Y33115D01* X16463Y33113D01* X16472Y33113D01* X16480Y33115D01* X16488Y33117D01* X16496Y33122D01* X16503Y33127D01* X16509Y33134D01* X16513Y33141D01* X16516Y33149D01* X16518Y33158D01* X16518Y33167D01* X16517Y33175D01* X16514Y33183D01* X16510Y33191D01* X16504Y33198D01* X16497Y33204D01* X16490Y33208D01* X16482Y33211D01* X16456Y33220D01* X16445Y33225D01* Y33775D01* X16451Y33777D01* X16477Y33786D01* X16485Y33790D01* X16492Y33794D01* X16499Y33800D01* X16504Y33807D01* X16508Y33815D01* X16511Y33823D01* X16512Y33832D01* X16512Y33840D01* X16510Y33849D01* X16507Y33857D01* X16502Y33864D01* X16496Y33871D01* X16489Y33876D01* X16482Y33880D01* X16473Y33883D01* X16465Y33884D01* X16456Y33884D01* X16448Y33882D01* X16445Y33881D01* Y35113D01* X16452Y35113D01* X16460Y35115D01* X16468Y35117D01* X16476Y35122D01* X16483Y35127D01* X16489Y35134D01* X16493Y35141D01* X16496Y35149D01* X16498Y35158D01* X16498Y35167D01* X16497Y35175D01* X16494Y35183D01* X16490Y35191D01* X16484Y35198D01* X16477Y35204D01* X16470Y35208D01* X16462Y35211D01* X16445Y35217D01* Y35782D01* X16457Y35786D01* X16465Y35790D01* X16472Y35794D01* X16479Y35800D01* X16484Y35807D01* X16488Y35815D01* X16491Y35823D01* X16492Y35832D01* X16492Y35840D01* X16490Y35849D01* X16487Y35857D01* X16482Y35864D01* X16476Y35871D01* X16469Y35876D01* X16462Y35880D01* X16453Y35883D01* X16445Y35884D01* Y37116D01* X16448Y37117D01* X16456Y37122D01* X16463Y37127D01* X16469Y37134D01* X16473Y37141D01* X16476Y37149D01* X16478Y37158D01* X16478Y37167D01* X16477Y37175D01* X16474Y37183D01* X16470Y37191D01* X16464Y37198D01* X16457Y37204D01* X16450Y37208D01* X16445Y37210D01* Y37790D01* X16452Y37794D01* X16459Y37800D01* X16464Y37807D01* X16468Y37815D01* X16471Y37823D01* X16472Y37832D01* X16472Y37840D01* X16470Y37849D01* X16467Y37857D01* X16462Y37864D01* X16456Y37871D01* X16449Y37876D01* X16445Y37878D01* Y39130D01* X16449Y39134D01* X16453Y39141D01* X16456Y39149D01* X16458Y39158D01* X16458Y39167D01* X16457Y39175D01* X16454Y39183D01* X16450Y39191D01* X16445Y39197D01* Y39809D01* X16448Y39815D01* X16451Y39823D01* X16452Y39832D01* X16452Y39840D01* X16450Y39849D01* X16447Y39857D01* X16445Y39859D01* Y40000D01* G37* G36* X16625Y0D02*X16445D01* Y7374D01* X16454Y7349D01* X16469Y7316D01* X16487Y7284D01* X16508Y7255D01* X16532Y7227D01* X16557Y7202D01* X16585Y7179D01* X16615Y7159D01* X16625Y7153D01* Y5834D01* X16600Y5816D01* X16572Y5793D01* X16547Y5767D01* X16524Y5739D01* X16504Y5709D01* X16486Y5677D01* X16472Y5644D01* X16460Y5610D01* X16458Y5601D01* X16458Y5593D01* X16459Y5584D01* X16462Y5576D01* X16467Y5568D01* X16472Y5561D01* X16479Y5556D01* X16486Y5551D01* X16494Y5548D01* X16503Y5546D01* X16512Y5546D01* X16520Y5547D01* X16528Y5550D01* X16536Y5555D01* X16543Y5560D01* X16549Y5567D01* X16553Y5574D01* X16556Y5582D01* X16565Y5608D01* X16576Y5633D01* X16589Y5657D01* X16604Y5679D01* X16621Y5700D01* X16625Y5704D01* Y5295D01* X16625Y5295D01* X16607Y5316D01* X16592Y5338D01* X16578Y5362D01* X16567Y5386D01* X16558Y5412D01* X16554Y5420D01* X16550Y5427D01* X16544Y5434D01* X16537Y5439D01* X16529Y5443D01* X16521Y5446D01* X16512Y5447D01* X16504Y5447D01* X16495Y5445D01* X16487Y5442D01* X16480Y5437D01* X16473Y5431D01* X16468Y5424D01* X16464Y5417D01* X16461Y5409D01* X16460Y5400D01* X16460Y5391D01* X16462Y5383D01* X16474Y5349D01* X16489Y5316D01* X16507Y5284D01* X16528Y5255D01* X16552Y5227D01* X16577Y5202D01* X16605Y5179D01* X16625Y5166D01* Y3820D01* X16620Y3816D01* X16592Y3793D01* X16567Y3767D01* X16544Y3739D01* X16524Y3709D01* X16506Y3677D01* X16492Y3644D01* X16480Y3610D01* X16478Y3601D01* X16478Y3593D01* X16479Y3584D01* X16482Y3576D01* X16487Y3568D01* X16492Y3561D01* X16499Y3556D01* X16506Y3551D01* X16514Y3548D01* X16523Y3546D01* X16532Y3546D01* X16540Y3547D01* X16548Y3550D01* X16556Y3555D01* X16563Y3560D01* X16569Y3567D01* X16573Y3574D01* X16576Y3582D01* X16585Y3608D01* X16596Y3633D01* X16609Y3657D01* X16624Y3679D01* X16625Y3680D01* Y3319D01* X16612Y3338D01* X16598Y3362D01* X16587Y3386D01* X16578Y3412D01* X16574Y3420D01* X16570Y3427D01* X16564Y3434D01* X16557Y3439D01* X16549Y3443D01* X16541Y3446D01* X16532Y3447D01* X16524Y3447D01* X16515Y3445D01* X16507Y3442D01* X16500Y3437D01* X16493Y3431D01* X16488Y3424D01* X16484Y3417D01* X16481Y3409D01* X16480Y3400D01* X16480Y3391D01* X16482Y3383D01* X16494Y3349D01* X16509Y3316D01* X16527Y3284D01* X16548Y3255D01* X16572Y3227D01* X16597Y3202D01* X16625Y3179D01* Y1804D01* X16612Y1793D01* X16587Y1767D01* X16564Y1739D01* X16544Y1709D01* X16526Y1677D01* X16512Y1644D01* X16500Y1610D01* X16498Y1601D01* X16498Y1593D01* X16499Y1584D01* X16502Y1576D01* X16507Y1568D01* X16512Y1561D01* X16519Y1556D01* X16526Y1551D01* X16534Y1548D01* X16543Y1546D01* X16552Y1546D01* X16560Y1547D01* X16568Y1550D01* X16576Y1555D01* X16583Y1560D01* X16589Y1567D01* X16593Y1574D01* X16596Y1582D01* X16605Y1608D01* X16616Y1633D01* X16625Y1650D01* Y1349D01* X16618Y1362D01* X16607Y1386D01* X16598Y1412D01* X16594Y1420D01* X16590Y1427D01* X16584Y1434D01* X16577Y1439D01* X16569Y1443D01* X16561Y1446D01* X16552Y1447D01* X16544Y1447D01* X16535Y1445D01* X16527Y1442D01* X16520Y1437D01* X16513Y1431D01* X16508Y1424D01* X16504Y1417D01* X16501Y1409D01* X16500Y1400D01* X16500Y1391D01* X16502Y1383D01* X16514Y1349D01* X16529Y1316D01* X16547Y1284D01* X16568Y1255D01* X16592Y1227D01* X16617Y1202D01* X16625Y1196D01* Y0D01* G37* G36* Y7276D02*X16624Y7276D01* X16605Y7295D01* X16587Y7316D01* X16572Y7338D01* X16558Y7362D01* X16547Y7386D01* X16538Y7412D01* X16534Y7420D01* X16530Y7427D01* X16524Y7434D01* X16517Y7439D01* X16509Y7443D01* X16501Y7446D01* X16492Y7447D01* X16484Y7447D01* X16475Y7445D01* X16467Y7442D01* X16460Y7437D01* X16453Y7431D01* X16448Y7424D01* X16445Y7419D01* Y7571D01* X16447Y7568D01* X16452Y7561D01* X16459Y7556D01* X16466Y7551D01* X16474Y7548D01* X16483Y7546D01* X16492Y7546D01* X16500Y7547D01* X16508Y7550D01* X16516Y7555D01* X16523Y7560D01* X16529Y7567D01* X16533Y7574D01* X16536Y7582D01* X16545Y7608D01* X16556Y7633D01* X16569Y7657D01* X16584Y7679D01* X16601Y7700D01* X16620Y7719D01* X16625Y7723D01* Y7276D01* G37* G36* Y7846D02*X16609Y7837D01* X16580Y7816D01* X16552Y7793D01* X16527Y7767D01* X16504Y7739D01* X16484Y7709D01* X16466Y7677D01* X16452Y7644D01* X16445Y7625D01* Y9325D01* X16449Y9316D01* X16467Y9284D01* X16488Y9255D01* X16512Y9227D01* X16537Y9202D01* X16565Y9179D01* X16595Y9159D01* X16625Y9142D01* Y7846D01* G37* G36* Y9259D02*X16625Y9259D01* X16604Y9276D01* X16585Y9295D01* X16567Y9316D01* X16552Y9338D01* X16538Y9362D01* X16527Y9386D01* X16518Y9412D01* X16514Y9420D01* X16510Y9427D01* X16504Y9434D01* X16497Y9439D01* X16489Y9443D01* X16481Y9446D01* X16472Y9447D01* X16464Y9447D01* X16455Y9445D01* X16447Y9442D01* X16445Y9441D01* Y9552D01* X16446Y9551D01* X16454Y9548D01* X16463Y9546D01* X16472Y9546D01* X16480Y9547D01* X16488Y9550D01* X16496Y9555D01* X16503Y9560D01* X16509Y9567D01* X16513Y9574D01* X16516Y9582D01* X16525Y9608D01* X16536Y9633D01* X16549Y9657D01* X16564Y9679D01* X16581Y9700D01* X16600Y9719D01* X16621Y9737D01* X16625Y9740D01* Y9259D01* G37* G36* Y9857D02*X16621Y9855D01* X16589Y9837D01* X16560Y9816D01* X16532Y9793D01* X16507Y9767D01* X16484Y9739D01* X16464Y9709D01* X16446Y9677D01* X16445Y9675D01* Y11288D01* X16447Y11284D01* X16468Y11255D01* X16492Y11227D01* X16517Y11202D01* X16545Y11179D01* X16575Y11159D01* X16607Y11141D01* X16625Y11133D01* Y9857D01* G37* G36* Y11246D02*X16605Y11259D01* X16584Y11276D01* X16565Y11295D01* X16547Y11316D01* X16532Y11338D01* X16518Y11362D01* X16507Y11386D01* X16498Y11412D01* X16494Y11420D01* X16490Y11427D01* X16484Y11434D01* X16477Y11439D01* X16469Y11443D01* X16461Y11446D01* X16452Y11447D01* X16445Y11447D01* Y11546D01* X16452Y11546D01* X16460Y11547D01* X16468Y11550D01* X16476Y11555D01* X16483Y11560D01* X16489Y11567D01* X16493Y11574D01* X16496Y11582D01* X16505Y11608D01* X16516Y11633D01* X16529Y11657D01* X16544Y11679D01* X16561Y11700D01* X16580Y11719D01* X16601Y11737D01* X16623Y11752D01* X16625Y11754D01* Y11246D01* G37* G36* Y11866D02*X16601Y11855D01* X16569Y11837D01* X16540Y11816D01* X16512Y11793D01* X16487Y11767D01* X16464Y11739D01* X16445Y11711D01* Y13259D01* X16448Y13255D01* X16472Y13227D01* X16497Y13202D01* X16525Y13179D01* X16555Y13159D01* X16587Y13141D01* X16620Y13127D01* X16625Y13125D01* Y11866D01* G37* G36* Y13234D02*X16608Y13244D01* X16585Y13259D01* X16564Y13276D01* X16545Y13295D01* X16527Y13316D01* X16512Y13338D01* X16498Y13362D01* X16487Y13386D01* X16478Y13412D01* X16474Y13420D01* X16470Y13427D01* X16464Y13434D01* X16457Y13439D01* X16449Y13443D01* X16445Y13445D01* Y13549D01* X16448Y13550D01* X16456Y13555D01* X16463Y13560D01* X16469Y13567D01* X16473Y13574D01* X16476Y13582D01* X16485Y13608D01* X16496Y13633D01* X16509Y13657D01* X16524Y13679D01* X16541Y13700D01* X16560Y13719D01* X16581Y13737D01* X16603Y13752D01* X16625Y13765D01* Y13234D01* G37* G36* Y13874D02*X16613Y13870D01* X16581Y13855D01* X16549Y13837D01* X16520Y13816D01* X16492Y13793D01* X16467Y13767D01* X16445Y13740D01* Y15235D01* X16452Y15227D01* X16477Y15202D01* X16505Y15179D01* X16535Y15159D01* X16567Y15141D01* X16600Y15127D01* X16625Y15118D01* Y13874D01* G37* G36* Y15225D02*X16611Y15231D01* X16588Y15244D01* X16565Y15259D01* X16544Y15276D01* X16525Y15295D01* X16507Y15316D01* X16492Y15338D01* X16478Y15362D01* X16467Y15386D01* X16458Y15412D01* X16454Y15420D01* X16450Y15427D01* X16445Y15432D01* Y15563D01* X16449Y15567D01* X16453Y15574D01* X16456Y15582D01* X16465Y15608D01* X16476Y15633D01* X16489Y15657D01* X16504Y15679D01* X16521Y15700D01* X16540Y15719D01* X16561Y15737D01* X16583Y15752D01* X16607Y15766D01* X16625Y15775D01* Y15225D01* G37* G36* Y15881D02*X16593Y15870D01* X16561Y15855D01* X16529Y15837D01* X16500Y15816D01* X16472Y15793D01* X16447Y15767D01* X16445Y15765D01* Y17214D01* X16457Y17202D01* X16485Y17179D01* X16515Y17159D01* X16547Y17141D01* X16580Y17127D01* X16614Y17115D01* X16623Y17113D01* X16625D01* Y15881D01* G37* G36* Y17217D02*X16616Y17220D01* X16591Y17231D01* X16568Y17244D01* X16545Y17259D01* X16524Y17276D01* X16505Y17295D01* X16487Y17316D01* X16472Y17338D01* X16458Y17362D01* X16447Y17386D01* X16445Y17391D01* Y17609D01* X16456Y17633D01* X16469Y17657D01* X16484Y17679D01* X16501Y17700D01* X16520Y17719D01* X16541Y17737D01* X16563Y17752D01* X16587Y17766D01* X16611Y17777D01* X16625Y17782D01* Y17217D01* G37* G36* Y17884D02*X16625Y17884D01* X16616Y17884D01* X16608Y17882D01* X16573Y17870D01* X16541Y17855D01* X16509Y17837D01* X16480Y17816D01* X16452Y17793D01* X16445Y17785D01* Y19196D01* X16465Y19179D01* X16495Y19159D01* X16527Y19141D01* X16560Y19127D01* X16594Y19115D01* X16603Y19113D01* X16612Y19113D01* X16620Y19115D01* X16625Y19116D01* Y17884D01* G37* G36* Y19210D02*X16622Y19211D01* X16596Y19220D01* X16571Y19231D01* X16548Y19244D01* X16525Y19259D01* X16504Y19276D01* X16485Y19295D01* X16467Y19316D01* X16452Y19338D01* X16445Y19349D01* Y19650D01* X16449Y19657D01* X16464Y19679D01* X16481Y19700D01* X16500Y19719D01* X16521Y19737D01* X16543Y19752D01* X16567Y19766D01* X16591Y19777D01* X16617Y19786D01* X16625Y19790D01* X16625Y19790D01* Y19210D01* G37* G36* Y19878D02*X16622Y19880D01* X16613Y19883D01* X16605Y19884D01* X16596Y19884D01* X16588Y19882D01* X16553Y19870D01* X16521Y19855D01* X16489Y19837D01* X16460Y19816D01* X16445Y19804D01* Y21179D01* X16445Y21179D01* X16475Y21159D01* X16507Y21141D01* X16540Y21127D01* X16574Y21115D01* X16583Y21113D01* X16592Y21113D01* X16600Y21115D01* X16608Y21117D01* X16616Y21122D01* X16623Y21127D01* X16625Y21130D01* Y19878D01* G37* G36* Y21197D02*X16624Y21198D01* X16617Y21204D01* X16610Y21208D01* X16602Y21211D01* X16576Y21220D01* X16551Y21231D01* X16528Y21244D01* X16505Y21259D01* X16484Y21276D01* X16465Y21295D01* X16447Y21316D01* X16445Y21319D01* Y21680D01* X16461Y21700D01* X16480Y21719D01* X16501Y21737D01* X16523Y21752D01* X16547Y21766D01* X16571Y21777D01* X16597Y21786D01* X16605Y21790D01* X16612Y21794D01* X16619Y21800D01* X16624Y21807D01* X16625Y21809D01* Y21197D01* G37* G36* Y40000D02*X16884D01* Y39625D01* X16875Y39651D01* X16860Y39683D01* X16842Y39715D01* X16821Y39744D01* X16797Y39772D01* X16772Y39797D01* X16744Y39820D01* X16714Y39840D01* X16682Y39858D01* X16649Y39873D01* X16625Y39881D01* Y40000D01* G37* G36* Y39774D02*X16638Y39768D01* X16661Y39755D01* X16684Y39740D01* X16705Y39723D01* X16724Y39704D01* X16742Y39683D01* X16757Y39661D01* X16771Y39637D01* X16782Y39613D01* X16791Y39587D01* X16795Y39579D01* X16799Y39572D01* X16805Y39565D01* X16812Y39560D01* X16820Y39556D01* X16828Y39553D01* X16837Y39552D01* X16845Y39552D01* X16854Y39554D01* X16862Y39557D01* X16869Y39562D01* X16876Y39568D01* X16881Y39575D01* X16884Y39580D01* Y39428D01* X16882Y39431D01* X16877Y39438D01* X16870Y39444D01* X16863Y39448D01* X16855Y39451D01* X16846Y39453D01* X16837Y39453D01* X16829Y39452D01* X16821Y39449D01* X16813Y39445D01* X16806Y39439D01* X16800Y39433D01* X16796Y39425D01* X16793Y39417D01* X16784Y39391D01* X16773Y39366D01* X16760Y39343D01* X16745Y39320D01* X16728Y39299D01* X16709Y39280D01* X16688Y39262D01* X16666Y39247D01* X16642Y39233D01* X16625Y39225D01* Y39774D01* G37* G36* Y39118D02*X16656Y39129D01* X16688Y39144D01* X16720Y39162D01* X16749Y39183D01* X16777Y39207D01* X16802Y39232D01* X16825Y39260D01* X16845Y39290D01* X16863Y39322D01* X16877Y39355D01* X16884Y39374D01* Y37674D01* X16880Y37683D01* X16862Y37715D01* X16841Y37744D01* X16817Y37772D01* X16792Y37797D01* X16764Y37820D01* X16734Y37840D01* X16702Y37858D01* X16669Y37873D01* X16635Y37884D01* X16626Y37886D01* X16625D01* Y39118D01* G37* G36* Y37782D02*X16633Y37779D01* X16658Y37768D01* X16681Y37755D01* X16704Y37740D01* X16725Y37723D01* X16744Y37704D01* X16762Y37683D01* X16777Y37661D01* X16791Y37637D01* X16802Y37613D01* X16811Y37587D01* X16815Y37579D01* X16819Y37572D01* X16825Y37565D01* X16832Y37560D01* X16840Y37556D01* X16848Y37553D01* X16857Y37552D01* X16865Y37552D01* X16874Y37554D01* X16882Y37557D01* X16884Y37559D01* Y37447D01* X16883Y37448D01* X16875Y37451D01* X16866Y37453D01* X16857Y37453D01* X16849Y37452D01* X16841Y37449D01* X16833Y37445D01* X16826Y37439D01* X16820Y37433D01* X16816Y37425D01* X16813Y37417D01* X16804Y37391D01* X16793Y37366D01* X16780Y37343D01* X16765Y37320D01* X16748Y37299D01* X16729Y37280D01* X16708Y37262D01* X16686Y37247D01* X16662Y37233D01* X16638Y37222D01* X16625Y37217D01* Y37782D01* G37* G36* Y37115D02*X16633Y37115D01* X16641Y37117D01* X16676Y37129D01* X16708Y37144D01* X16740Y37162D01* X16769Y37183D01* X16797Y37207D01* X16822Y37232D01* X16845Y37260D01* X16865Y37290D01* X16883Y37322D01* X16884Y37324D01* Y35711D01* X16882Y35715D01* X16861Y35744D01* X16837Y35772D01* X16812Y35797D01* X16784Y35820D01* X16754Y35840D01* X16722Y35858D01* X16689Y35873D01* X16655Y35884D01* X16646Y35886D01* X16637Y35886D01* X16629Y35885D01* X16625Y35883D01* Y37115D01* G37* G36* Y35789D02*X16627Y35788D01* X16653Y35779D01* X16678Y35768D01* X16701Y35755D01* X16724Y35740D01* X16745Y35723D01* X16764Y35704D01* X16782Y35683D01* X16797Y35661D01* X16811Y35637D01* X16822Y35613D01* X16831Y35587D01* X16835Y35579D01* X16839Y35572D01* X16845Y35565D01* X16852Y35560D01* X16860Y35556D01* X16868Y35553D01* X16877Y35552D01* X16884Y35552D01* Y35453D01* X16877Y35453D01* X16869Y35452D01* X16861Y35449D01* X16853Y35445D01* X16846Y35439D01* X16840Y35433D01* X16836Y35425D01* X16833Y35417D01* X16824Y35391D01* X16813Y35366D01* X16800Y35343D01* X16785Y35320D01* X16768Y35299D01* X16749Y35280D01* X16728Y35262D01* X16706Y35247D01* X16682Y35233D01* X16658Y35222D01* X16632Y35213D01* X16625Y35210D01* Y35789D01* G37* G36* Y35120D02*X16627Y35119D01* X16636Y35116D01* X16644Y35115D01* X16653Y35115D01* X16661Y35117D01* X16696Y35129D01* X16728Y35144D01* X16760Y35162D01* X16789Y35183D01* X16817Y35207D01* X16842Y35232D01* X16865Y35260D01* X16884Y35288D01* Y33740D01* X16881Y33744D01* X16857Y33772D01* X16832Y33797D01* X16804Y33820D01* X16774Y33840D01* X16742Y33858D01* X16709Y33873D01* X16675Y33884D01* X16666Y33886D01* X16657Y33886D01* X16649Y33885D01* X16641Y33882D01* X16633Y33878D01* X16626Y33872D01* X16625Y33871D01* Y35120D01* G37* G36* Y33801D02*X16632Y33796D01* X16639Y33791D01* X16647Y33788D01* X16673Y33779D01* X16698Y33768D01* X16721Y33755D01* X16744Y33740D01* X16765Y33723D01* X16784Y33704D01* X16802Y33683D01* X16817Y33661D01* X16831Y33637D01* X16842Y33613D01* X16851Y33587D01* X16855Y33579D01* X16859Y33572D01* X16865Y33565D01* X16872Y33560D01* X16880Y33556D01* X16884Y33555D01* Y33450D01* X16881Y33449D01* X16873Y33445D01* X16866Y33439D01* X16860Y33433D01* X16856Y33425D01* X16853Y33417D01* X16844Y33391D01* X16833Y33366D01* X16820Y33343D01* X16805Y33320D01* X16788Y33299D01* X16769Y33280D01* X16748Y33262D01* X16726Y33247D01* X16702Y33233D01* X16678Y33222D01* X16652Y33213D01* X16644Y33209D01* X16637Y33205D01* X16630Y33199D01* X16625Y33192D01* Y33801D01* G37* G36* Y33138D02*X16627Y33135D01* X16633Y33128D01* X16640Y33123D01* X16647Y33119D01* X16656Y33116D01* X16664Y33115D01* X16673Y33115D01* X16681Y33117D01* X16716Y33129D01* X16748Y33144D01* X16780Y33162D01* X16809Y33183D01* X16837Y33207D01* X16862Y33232D01* X16884Y33259D01* Y31764D01* X16877Y31772D01* X16852Y31797D01* X16824Y31820D01* X16794Y31840D01* X16762Y31858D01* X16729Y31873D01* X16695Y31884D01* X16686Y31886D01* X16677Y31886D01* X16669Y31885D01* X16661Y31882D01* X16653Y31878D01* X16646Y31872D01* X16640Y31865D01* X16636Y31858D01* X16633Y31850D01* X16631Y31841D01* X16631Y31833D01* X16632Y31824D01* X16635Y31816D01* X16639Y31808D01* X16645Y31801D01* X16652Y31796D01* X16659Y31791D01* X16667Y31788D01* X16693Y31779D01* X16718Y31768D01* X16741Y31755D01* X16764Y31740D01* X16785Y31723D01* X16804Y31704D01* X16822Y31683D01* X16837Y31661D01* X16851Y31637D01* X16862Y31613D01* X16871Y31587D01* X16875Y31579D01* X16879Y31572D01* X16884Y31567D01* Y31437D01* X16880Y31433D01* X16876Y31425D01* X16873Y31417D01* X16864Y31391D01* X16853Y31366D01* X16840Y31343D01* X16825Y31320D01* X16808Y31299D01* X16789Y31280D01* X16768Y31262D01* X16746Y31247D01* X16722Y31233D01* X16698Y31222D01* X16672Y31213D01* X16664Y31209D01* X16657Y31205D01* X16650Y31199D01* X16645Y31192D01* X16641Y31184D01* X16638Y31176D01* X16637Y31167D01* X16637Y31159D01* X16639Y31150D01* X16642Y31142D01* X16647Y31135D01* X16653Y31128D01* X16660Y31123D01* X16667Y31119D01* X16676Y31116D01* X16684Y31115D01* X16693Y31115D01* X16701Y31117D01* X16736Y31129D01* X16768Y31144D01* X16800Y31162D01* X16829Y31183D01* X16857Y31207D01* X16882Y31232D01* X16884Y31235D01* Y29785D01* X16872Y29797D01* X16844Y29820D01* X16814Y29840D01* X16782Y29858D01* X16749Y29873D01* X16715Y29884D01* X16706Y29886D01* X16697Y29886D01* X16689Y29885D01* X16681Y29882D01* X16673Y29878D01* X16666Y29872D01* X16660Y29865D01* X16656Y29858D01* X16653Y29850D01* X16651Y29841D01* X16651Y29833D01* X16652Y29824D01* X16655Y29816D01* X16659Y29808D01* X16665Y29801D01* X16672Y29796D01* X16679Y29791D01* X16687Y29788D01* X16713Y29779D01* X16738Y29768D01* X16761Y29755D01* X16784Y29740D01* X16805Y29723D01* X16824Y29704D01* X16842Y29683D01* X16857Y29661D01* X16871Y29637D01* X16882Y29613D01* X16884Y29608D01* Y29391D01* X16873Y29366D01* X16860Y29343D01* X16845Y29320D01* X16828Y29299D01* X16809Y29280D01* X16788Y29262D01* X16766Y29247D01* X16742Y29233D01* X16718Y29222D01* X16692Y29213D01* X16684Y29209D01* X16677Y29205D01* X16670Y29199D01* X16665Y29192D01* X16661Y29184D01* X16658Y29176D01* X16657Y29167D01* X16657Y29159D01* X16659Y29150D01* X16662Y29142D01* X16667Y29135D01* X16673Y29128D01* X16680Y29123D01* X16687Y29119D01* X16696Y29116D01* X16704Y29115D01* X16713Y29115D01* X16721Y29117D01* X16756Y29129D01* X16788Y29144D01* X16820Y29162D01* X16849Y29183D01* X16877Y29207D01* X16884Y29214D01* Y27804D01* X16864Y27820D01* X16834Y27840D01* X16802Y27858D01* X16769Y27873D01* X16735Y27884D01* X16726Y27886D01* X16717Y27886D01* X16709Y27885D01* X16701Y27882D01* X16693Y27878D01* X16686Y27872D01* X16680Y27865D01* X16676Y27858D01* X16673Y27850D01* X16671Y27841D01* X16671Y27833D01* X16672Y27824D01* X16675Y27816D01* X16679Y27808D01* X16685Y27801D01* X16692Y27796D01* X16699Y27791D01* X16707Y27788D01* X16733Y27779D01* X16758Y27768D01* X16781Y27755D01* X16804Y27740D01* X16825Y27723D01* X16844Y27704D01* X16862Y27683D01* X16877Y27661D01* X16884Y27650D01* Y27350D01* X16880Y27343D01* X16865Y27320D01* X16848Y27299D01* X16829Y27280D01* X16808Y27262D01* X16786Y27247D01* X16762Y27233D01* X16738Y27222D01* X16712Y27213D01* X16704Y27209D01* X16697Y27205D01* X16690Y27199D01* X16685Y27192D01* X16681Y27184D01* X16678Y27176D01* X16677Y27167D01* X16677Y27159D01* X16679Y27150D01* X16682Y27142D01* X16687Y27135D01* X16693Y27128D01* X16700Y27123D01* X16707Y27119D01* X16716Y27116D01* X16724Y27115D01* X16733Y27115D01* X16741Y27117D01* X16776Y27129D01* X16808Y27144D01* X16840Y27162D01* X16869Y27183D01* X16884Y27196D01* Y25820D01* X16884Y25820D01* X16854Y25840D01* X16822Y25858D01* X16789Y25873D01* X16755Y25884D01* X16746Y25886D01* X16737Y25886D01* X16729Y25885D01* X16721Y25882D01* X16713Y25878D01* X16706Y25872D01* X16700Y25865D01* X16696Y25858D01* X16693Y25850D01* X16691Y25841D01* X16691Y25833D01* X16692Y25824D01* X16695Y25816D01* X16699Y25808D01* X16705Y25801D01* X16712Y25796D01* X16719Y25791D01* X16727Y25788D01* X16753Y25779D01* X16778Y25768D01* X16801Y25755D01* X16824Y25740D01* X16845Y25723D01* X16864Y25704D01* X16882Y25683D01* X16884Y25680D01* Y25319D01* X16868Y25299D01* X16849Y25280D01* X16828Y25262D01* X16806Y25247D01* X16782Y25233D01* X16758Y25222D01* X16732Y25213D01* X16724Y25209D01* X16717Y25205D01* X16710Y25199D01* X16705Y25192D01* X16701Y25184D01* X16698Y25176D01* X16697Y25167D01* X16697Y25159D01* X16699Y25150D01* X16702Y25142D01* X16707Y25135D01* X16713Y25128D01* X16720Y25123D01* X16727Y25119D01* X16736Y25116D01* X16744Y25115D01* X16753Y25115D01* X16761Y25117D01* X16796Y25129D01* X16828Y25144D01* X16860Y25162D01* X16884Y25180D01* Y23834D01* X16874Y23840D01* X16842Y23858D01* X16809Y23873D01* X16775Y23884D01* X16766Y23886D01* X16757Y23886D01* X16749Y23885D01* X16741Y23882D01* X16733Y23878D01* X16726Y23872D01* X16720Y23865D01* X16716Y23858D01* X16713Y23850D01* X16711Y23841D01* X16711Y23833D01* X16712Y23824D01* X16715Y23816D01* X16719Y23808D01* X16725Y23801D01* X16732Y23796D01* X16739Y23791D01* X16747Y23788D01* X16773Y23779D01* X16798Y23768D01* X16821Y23755D01* X16844Y23740D01* X16865Y23723D01* X16884Y23704D01* Y23295D01* X16869Y23280D01* X16848Y23262D01* X16826Y23247D01* X16802Y23233D01* X16778Y23222D01* X16752Y23213D01* X16744Y23209D01* X16737Y23205D01* X16730Y23199D01* X16725Y23192D01* X16721Y23184D01* X16718Y23176D01* X16717Y23167D01* X16717Y23159D01* X16719Y23150D01* X16722Y23142D01* X16727Y23135D01* X16733Y23128D01* X16740Y23123D01* X16747Y23119D01* X16756Y23116D01* X16764Y23115D01* X16773Y23115D01* X16781Y23117D01* X16816Y23129D01* X16848Y23144D01* X16880Y23162D01* X16884Y23165D01* Y21846D01* X16862Y21858D01* X16829Y21873D01* X16795Y21884D01* X16786Y21886D01* X16777Y21886D01* X16769Y21885D01* X16761Y21882D01* X16753Y21878D01* X16746Y21872D01* X16740Y21865D01* X16736Y21858D01* X16733Y21850D01* X16731Y21841D01* X16731Y21833D01* X16732Y21824D01* X16735Y21816D01* X16739Y21808D01* X16745Y21801D01* X16752Y21796D01* X16759Y21791D01* X16767Y21788D01* X16793Y21779D01* X16818Y21768D01* X16841Y21755D01* X16864Y21740D01* X16884Y21724D01* Y21276D01* X16868Y21262D01* X16846Y21247D01* X16822Y21233D01* X16798Y21222D01* X16772Y21213D01* X16764Y21209D01* X16757Y21205D01* X16750Y21199D01* X16745Y21192D01* X16741Y21184D01* X16738Y21176D01* X16737Y21167D01* X16737Y21159D01* X16739Y21150D01* X16742Y21142D01* X16747Y21135D01* X16753Y21128D01* X16760Y21123D01* X16767Y21119D01* X16776Y21116D01* X16784Y21115D01* X16793Y21115D01* X16801Y21117D01* X16836Y21129D01* X16868Y21144D01* X16884Y21153D01* Y19857D01* X16882Y19858D01* X16849Y19873D01* X16815Y19884D01* X16806Y19886D01* X16797Y19886D01* X16789Y19885D01* X16781Y19882D01* X16773Y19878D01* X16766Y19872D01* X16760Y19865D01* X16756Y19858D01* X16753Y19850D01* X16751Y19841D01* X16751Y19833D01* X16752Y19824D01* X16755Y19816D01* X16759Y19808D01* X16765Y19801D01* X16772Y19796D01* X16779Y19791D01* X16787Y19788D01* X16813Y19779D01* X16838Y19768D01* X16861Y19755D01* X16884Y19740D01* Y19259D01* X16866Y19247D01* X16842Y19233D01* X16818Y19222D01* X16792Y19213D01* X16784Y19209D01* X16777Y19205D01* X16770Y19199D01* X16765Y19192D01* X16761Y19184D01* X16758Y19176D01* X16757Y19167D01* X16757Y19159D01* X16759Y19150D01* X16762Y19142D01* X16767Y19135D01* X16773Y19128D01* X16780Y19123D01* X16787Y19119D01* X16796Y19116D01* X16804Y19115D01* X16813Y19115D01* X16821Y19117D01* X16856Y19129D01* X16884Y19142D01* Y17866D01* X16869Y17873D01* X16835Y17884D01* X16826Y17886D01* X16817Y17886D01* X16809Y17885D01* X16801Y17882D01* X16793Y17878D01* X16786Y17872D01* X16780Y17865D01* X16776Y17858D01* X16773Y17850D01* X16771Y17841D01* X16771Y17833D01* X16772Y17824D01* X16775Y17816D01* X16779Y17808D01* X16785Y17801D01* X16792Y17796D01* X16799Y17791D01* X16807Y17788D01* X16833Y17779D01* X16858Y17768D01* X16881Y17755D01* X16884Y17754D01* Y17246D01* X16862Y17233D01* X16838Y17222D01* X16812Y17213D01* X16804Y17209D01* X16797Y17205D01* X16790Y17199D01* X16785Y17192D01* X16781Y17184D01* X16778Y17176D01* X16777Y17167D01* X16777Y17159D01* X16779Y17150D01* X16782Y17142D01* X16787Y17135D01* X16793Y17128D01* X16800Y17123D01* X16807Y17119D01* X16816Y17116D01* X16824Y17115D01* X16833Y17115D01* X16841Y17117D01* X16876Y17129D01* X16884Y17133D01* Y15874D01* X16855Y15884D01* X16846Y15886D01* X16837Y15886D01* X16829Y15885D01* X16821Y15882D01* X16813Y15878D01* X16806Y15872D01* X16800Y15865D01* X16796Y15858D01* X16793Y15850D01* X16791Y15841D01* X16791Y15833D01* X16792Y15824D01* X16795Y15816D01* X16799Y15808D01* X16805Y15801D01* X16812Y15796D01* X16819Y15791D01* X16827Y15788D01* X16853Y15779D01* X16878Y15768D01* X16884Y15765D01* Y15234D01* X16882Y15233D01* X16858Y15222D01* X16832Y15213D01* X16824Y15209D01* X16817Y15205D01* X16810Y15199D01* X16805Y15192D01* X16801Y15184D01* X16798Y15176D01* X16797Y15167D01* X16797Y15159D01* X16799Y15150D01* X16802Y15142D01* X16807Y15135D01* X16813Y15128D01* X16820Y15123D01* X16827Y15119D01* X16836Y15116D01* X16844Y15115D01* X16853Y15115D01* X16861Y15117D01* X16884Y15125D01* Y13881D01* X16875Y13884D01* X16866Y13886D01* X16857Y13886D01* X16849Y13885D01* X16841Y13882D01* X16833Y13878D01* X16826Y13872D01* X16820Y13865D01* X16816Y13858D01* X16813Y13850D01* X16811Y13841D01* X16811Y13833D01* X16812Y13824D01* X16815Y13816D01* X16819Y13808D01* X16825Y13801D01* X16832Y13796D01* X16839Y13791D01* X16847Y13788D01* X16873Y13779D01* X16884Y13774D01* Y13225D01* X16878Y13222D01* X16852Y13213D01* X16844Y13209D01* X16837Y13205D01* X16830Y13199D01* X16825Y13192D01* X16821Y13184D01* X16818Y13176D01* X16817Y13167D01* X16817Y13159D01* X16819Y13150D01* X16822Y13142D01* X16827Y13135D01* X16833Y13128D01* X16840Y13123D01* X16847Y13119D01* X16856Y13116D01* X16864Y13115D01* X16873Y13115D01* X16881Y13117D01* X16884Y13118D01* Y11886D01* X16877Y11886D01* X16869Y11885D01* X16861Y11882D01* X16853Y11878D01* X16846Y11872D01* X16840Y11865D01* X16836Y11858D01* X16833Y11850D01* X16831Y11841D01* X16831Y11833D01* X16832Y11824D01* X16835Y11816D01* X16839Y11808D01* X16845Y11801D01* X16852Y11796D01* X16859Y11791D01* X16867Y11788D01* X16884Y11782D01* Y11217D01* X16872Y11213D01* X16864Y11209D01* X16857Y11205D01* X16850Y11199D01* X16845Y11192D01* X16841Y11184D01* X16838Y11176D01* X16837Y11167D01* X16837Y11159D01* X16839Y11150D01* X16842Y11142D01* X16847Y11135D01* X16853Y11128D01* X16860Y11123D01* X16867Y11119D01* X16876Y11116D01* X16884Y11115D01* Y9883D01* X16881Y9882D01* X16873Y9878D01* X16866Y9872D01* X16860Y9865D01* X16856Y9858D01* X16853Y9850D01* X16851Y9841D01* X16851Y9833D01* X16852Y9824D01* X16855Y9816D01* X16859Y9808D01* X16865Y9801D01* X16872Y9796D01* X16879Y9791D01* X16884Y9789D01* Y9209D01* X16877Y9205D01* X16870Y9199D01* X16865Y9192D01* X16861Y9184D01* X16858Y9176D01* X16857Y9167D01* X16857Y9159D01* X16859Y9150D01* X16862Y9142D01* X16867Y9135D01* X16873Y9128D01* X16880Y9123D01* X16884Y9121D01* Y7870D01* X16880Y7865D01* X16876Y7858D01* X16873Y7850D01* X16871Y7841D01* X16871Y7833D01* X16872Y7824D01* X16875Y7816D01* X16879Y7808D01* X16884Y7802D01* Y7190D01* X16881Y7184D01* X16878Y7176D01* X16877Y7167D01* X16877Y7159D01* X16879Y7150D01* X16882Y7142D01* X16884Y7140D01* Y0D01* X16625D01* Y1196D01* X16645Y1179D01* X16675Y1159D01* X16707Y1141D01* X16740Y1127D01* X16774Y1115D01* X16783Y1113D01* X16792Y1113D01* X16800Y1115D01* X16808Y1117D01* X16816Y1122D01* X16823Y1127D01* X16829Y1134D01* X16833Y1141D01* X16836Y1149D01* X16838Y1158D01* X16838Y1167D01* X16837Y1175D01* X16834Y1183D01* X16830Y1191D01* X16824Y1198D01* X16817Y1204D01* X16810Y1208D01* X16802Y1211D01* X16776Y1220D01* X16751Y1231D01* X16728Y1244D01* X16705Y1259D01* X16684Y1276D01* X16665Y1295D01* X16647Y1316D01* X16632Y1338D01* X16625Y1349D01* Y1650D01* X16629Y1657D01* X16644Y1679D01* X16661Y1700D01* X16680Y1719D01* X16701Y1737D01* X16723Y1752D01* X16747Y1766D01* X16771Y1777D01* X16797Y1786D01* X16805Y1790D01* X16812Y1794D01* X16819Y1800D01* X16824Y1807D01* X16828Y1815D01* X16831Y1823D01* X16832Y1832D01* X16832Y1840D01* X16830Y1849D01* X16827Y1857D01* X16822Y1864D01* X16816Y1871D01* X16809Y1876D01* X16802Y1880D01* X16793Y1883D01* X16785Y1884D01* X16776Y1884D01* X16768Y1882D01* X16733Y1870D01* X16701Y1855D01* X16669Y1837D01* X16640Y1816D01* X16625Y1804D01* Y3179D01* X16625Y3179D01* X16655Y3159D01* X16687Y3141D01* X16720Y3127D01* X16754Y3115D01* X16763Y3113D01* X16772Y3113D01* X16780Y3115D01* X16788Y3117D01* X16796Y3122D01* X16803Y3127D01* X16809Y3134D01* X16813Y3141D01* X16816Y3149D01* X16818Y3158D01* X16818Y3167D01* X16817Y3175D01* X16814Y3183D01* X16810Y3191D01* X16804Y3198D01* X16797Y3204D01* X16790Y3208D01* X16782Y3211D01* X16756Y3220D01* X16731Y3231D01* X16708Y3244D01* X16685Y3259D01* X16664Y3276D01* X16645Y3295D01* X16627Y3316D01* X16625Y3319D01* Y3680D01* X16641Y3700D01* X16660Y3719D01* X16681Y3737D01* X16703Y3752D01* X16727Y3766D01* X16751Y3777D01* X16777Y3786D01* X16785Y3790D01* X16792Y3794D01* X16799Y3800D01* X16804Y3807D01* X16808Y3815D01* X16811Y3823D01* X16812Y3832D01* X16812Y3840D01* X16810Y3849D01* X16807Y3857D01* X16802Y3864D01* X16796Y3871D01* X16789Y3876D01* X16782Y3880D01* X16773Y3883D01* X16765Y3884D01* X16756Y3884D01* X16748Y3882D01* X16713Y3870D01* X16681Y3855D01* X16649Y3837D01* X16625Y3820D01* Y5166D01* X16635Y5159D01* X16667Y5141D01* X16700Y5127D01* X16734Y5115D01* X16743Y5113D01* X16752Y5113D01* X16760Y5115D01* X16768Y5117D01* X16776Y5122D01* X16783Y5127D01* X16789Y5134D01* X16793Y5141D01* X16796Y5149D01* X16798Y5158D01* X16798Y5167D01* X16797Y5175D01* X16794Y5183D01* X16790Y5191D01* X16784Y5198D01* X16777Y5204D01* X16770Y5208D01* X16762Y5211D01* X16736Y5220D01* X16711Y5231D01* X16688Y5244D01* X16665Y5259D01* X16644Y5276D01* X16625Y5295D01* Y5704D01* X16640Y5719D01* X16661Y5737D01* X16683Y5752D01* X16707Y5766D01* X16731Y5777D01* X16757Y5786D01* X16765Y5790D01* X16772Y5794D01* X16779Y5800D01* X16784Y5807D01* X16788Y5815D01* X16791Y5823D01* X16792Y5832D01* X16792Y5840D01* X16790Y5849D01* X16787Y5857D01* X16782Y5864D01* X16776Y5871D01* X16769Y5876D01* X16762Y5880D01* X16753Y5883D01* X16745Y5884D01* X16736Y5884D01* X16728Y5882D01* X16693Y5870D01* X16661Y5855D01* X16629Y5837D01* X16625Y5834D01* Y7153D01* X16647Y7141D01* X16680Y7127D01* X16714Y7115D01* X16723Y7113D01* X16732Y7113D01* X16740Y7115D01* X16748Y7117D01* X16756Y7122D01* X16763Y7127D01* X16769Y7134D01* X16773Y7141D01* X16776Y7149D01* X16778Y7158D01* X16778Y7167D01* X16777Y7175D01* X16774Y7183D01* X16770Y7191D01* X16764Y7198D01* X16757Y7204D01* X16750Y7208D01* X16742Y7211D01* X16716Y7220D01* X16691Y7231D01* X16668Y7244D01* X16645Y7259D01* X16625Y7276D01* Y7723D01* X16641Y7737D01* X16663Y7752D01* X16687Y7766D01* X16711Y7777D01* X16737Y7786D01* X16745Y7790D01* X16752Y7794D01* X16759Y7800D01* X16764Y7807D01* X16768Y7815D01* X16771Y7823D01* X16772Y7832D01* X16772Y7840D01* X16770Y7849D01* X16767Y7857D01* X16762Y7864D01* X16756Y7871D01* X16749Y7876D01* X16742Y7880D01* X16733Y7883D01* X16725Y7884D01* X16716Y7884D01* X16708Y7882D01* X16673Y7870D01* X16641Y7855D01* X16625Y7846D01* Y9142D01* X16627Y9141D01* X16660Y9127D01* X16694Y9115D01* X16703Y9113D01* X16712Y9113D01* X16720Y9115D01* X16728Y9117D01* X16736Y9122D01* X16743Y9127D01* X16749Y9134D01* X16753Y9141D01* X16756Y9149D01* X16758Y9158D01* X16758Y9167D01* X16757Y9175D01* X16754Y9183D01* X16750Y9191D01* X16744Y9198D01* X16737Y9204D01* X16730Y9208D01* X16722Y9211D01* X16696Y9220D01* X16671Y9231D01* X16648Y9244D01* X16625Y9259D01* Y9740D01* X16643Y9752D01* X16667Y9766D01* X16691Y9777D01* X16717Y9786D01* X16725Y9790D01* X16732Y9794D01* X16739Y9800D01* X16744Y9807D01* X16748Y9815D01* X16751Y9823D01* X16752Y9832D01* X16752Y9840D01* X16750Y9849D01* X16747Y9857D01* X16742Y9864D01* X16736Y9871D01* X16729Y9876D01* X16722Y9880D01* X16713Y9883D01* X16705Y9884D01* X16696Y9884D01* X16688Y9882D01* X16653Y9870D01* X16625Y9857D01* Y11133D01* X16640Y11127D01* X16674Y11115D01* X16683Y11113D01* X16692Y11113D01* X16700Y11115D01* X16708Y11117D01* X16716Y11122D01* X16723Y11127D01* X16729Y11134D01* X16733Y11141D01* X16736Y11149D01* X16738Y11158D01* X16738Y11167D01* X16737Y11175D01* X16734Y11183D01* X16730Y11191D01* X16724Y11198D01* X16717Y11204D01* X16710Y11208D01* X16702Y11211D01* X16676Y11220D01* X16651Y11231D01* X16628Y11244D01* X16625Y11246D01* Y11754D01* X16647Y11766D01* X16671Y11777D01* X16697Y11786D01* X16705Y11790D01* X16712Y11794D01* X16719Y11800D01* X16724Y11807D01* X16728Y11815D01* X16731Y11823D01* X16732Y11832D01* X16732Y11840D01* X16730Y11849D01* X16727Y11857D01* X16722Y11864D01* X16716Y11871D01* X16709Y11876D01* X16702Y11880D01* X16693Y11883D01* X16685Y11884D01* X16676Y11884D01* X16668Y11882D01* X16633Y11870D01* X16625Y11866D01* Y13125D01* X16654Y13115D01* X16663Y13113D01* X16672Y13113D01* X16680Y13115D01* X16688Y13117D01* X16696Y13122D01* X16703Y13127D01* X16709Y13134D01* X16713Y13141D01* X16716Y13149D01* X16718Y13158D01* X16718Y13167D01* X16717Y13175D01* X16714Y13183D01* X16710Y13191D01* X16704Y13198D01* X16697Y13204D01* X16690Y13208D01* X16682Y13211D01* X16656Y13220D01* X16631Y13231D01* X16625Y13234D01* Y13765D01* X16627Y13766D01* X16651Y13777D01* X16677Y13786D01* X16685Y13790D01* X16692Y13794D01* X16699Y13800D01* X16704Y13807D01* X16708Y13815D01* X16711Y13823D01* X16712Y13832D01* X16712Y13840D01* X16710Y13849D01* X16707Y13857D01* X16702Y13864D01* X16696Y13871D01* X16689Y13876D01* X16682Y13880D01* X16673Y13883D01* X16665Y13884D01* X16656Y13884D01* X16648Y13882D01* X16625Y13874D01* Y15118D01* X16634Y15115D01* X16643Y15113D01* X16652Y15113D01* X16660Y15115D01* X16668Y15117D01* X16676Y15122D01* X16683Y15127D01* X16689Y15134D01* X16693Y15141D01* X16696Y15149D01* X16698Y15158D01* X16698Y15167D01* X16697Y15175D01* X16694Y15183D01* X16690Y15191D01* X16684Y15198D01* X16677Y15204D01* X16670Y15208D01* X16662Y15211D01* X16636Y15220D01* X16625Y15225D01* Y15775D01* X16631Y15777D01* X16657Y15786D01* X16665Y15790D01* X16672Y15794D01* X16679Y15800D01* X16684Y15807D01* X16688Y15815D01* X16691Y15823D01* X16692Y15832D01* X16692Y15840D01* X16690Y15849D01* X16687Y15857D01* X16682Y15864D01* X16676Y15871D01* X16669Y15876D01* X16662Y15880D01* X16653Y15883D01* X16645Y15884D01* X16636Y15884D01* X16628Y15882D01* X16625Y15881D01* Y17113D01* X16632Y17113D01* X16640Y17115D01* X16648Y17117D01* X16656Y17122D01* X16663Y17127D01* X16669Y17134D01* X16673Y17141D01* X16676Y17149D01* X16678Y17158D01* X16678Y17167D01* X16677Y17175D01* X16674Y17183D01* X16670Y17191D01* X16664Y17198D01* X16657Y17204D01* X16650Y17208D01* X16642Y17211D01* X16625Y17217D01* Y17782D01* X16637Y17786D01* X16645Y17790D01* X16652Y17794D01* X16659Y17800D01* X16664Y17807D01* X16668Y17815D01* X16671Y17823D01* X16672Y17832D01* X16672Y17840D01* X16670Y17849D01* X16667Y17857D01* X16662Y17864D01* X16656Y17871D01* X16649Y17876D01* X16642Y17880D01* X16633Y17883D01* X16625Y17884D01* Y19116D01* X16628Y19117D01* X16636Y19122D01* X16643Y19127D01* X16649Y19134D01* X16653Y19141D01* X16656Y19149D01* X16658Y19158D01* X16658Y19167D01* X16657Y19175D01* X16654Y19183D01* X16650Y19191D01* X16644Y19198D01* X16637Y19204D01* X16630Y19208D01* X16625Y19210D01* Y19790D01* X16632Y19794D01* X16639Y19800D01* X16644Y19807D01* X16648Y19815D01* X16651Y19823D01* X16652Y19832D01* X16652Y19840D01* X16650Y19849D01* X16647Y19857D01* X16642Y19864D01* X16636Y19871D01* X16629Y19876D01* X16625Y19878D01* Y21130D01* X16629Y21134D01* X16633Y21141D01* X16636Y21149D01* X16638Y21158D01* X16638Y21167D01* X16637Y21175D01* X16634Y21183D01* X16630Y21191D01* X16625Y21197D01* Y21809D01* X16628Y21815D01* X16631Y21823D01* X16632Y21832D01* X16632Y21840D01* X16630Y21849D01* X16627Y21857D01* X16625Y21859D01* Y33138D01* G37* G36* X16884Y40000D02*X17064D01* Y21625D01* X17055Y21651D01* X17040Y21683D01* X17022Y21715D01* X17001Y21744D01* X16977Y21772D01* X16952Y21797D01* X16924Y21820D01* X16894Y21840D01* X16884Y21846D01* Y23165D01* X16909Y23183D01* X16937Y23207D01* X16962Y23232D01* X16985Y23260D01* X17005Y23290D01* X17023Y23322D01* X17037Y23355D01* X17049Y23389D01* X17051Y23398D01* X17051Y23407D01* X17050Y23415D01* X17047Y23423D01* X17042Y23431D01* X17037Y23438D01* X17030Y23444D01* X17023Y23448D01* X17015Y23451D01* X17006Y23453D01* X16997Y23453D01* X16989Y23452D01* X16981Y23449D01* X16973Y23445D01* X16966Y23439D01* X16960Y23433D01* X16956Y23425D01* X16953Y23417D01* X16944Y23391D01* X16933Y23366D01* X16920Y23343D01* X16905Y23320D01* X16888Y23299D01* X16884Y23295D01* Y23704D01* X16884Y23704D01* X16902Y23683D01* X16917Y23661D01* X16931Y23637D01* X16942Y23613D01* X16951Y23587D01* X16955Y23579D01* X16959Y23572D01* X16965Y23565D01* X16972Y23560D01* X16980Y23556D01* X16988Y23553D01* X16997Y23552D01* X17005Y23552D01* X17014Y23554D01* X17022Y23557D01* X17029Y23562D01* X17036Y23568D01* X17041Y23575D01* X17045Y23582D01* X17048Y23591D01* X17049Y23599D01* X17049Y23608D01* X17047Y23617D01* X17035Y23651D01* X17020Y23683D01* X17002Y23715D01* X16981Y23744D01* X16957Y23772D01* X16932Y23797D01* X16904Y23820D01* X16884Y23834D01* Y25180D01* X16889Y25183D01* X16917Y25207D01* X16942Y25232D01* X16965Y25260D01* X16985Y25290D01* X17003Y25322D01* X17017Y25355D01* X17029Y25389D01* X17031Y25398D01* X17031Y25407D01* X17030Y25415D01* X17027Y25423D01* X17022Y25431D01* X17017Y25438D01* X17010Y25444D01* X17003Y25448D01* X16995Y25451D01* X16986Y25453D01* X16977Y25453D01* X16969Y25452D01* X16961Y25449D01* X16953Y25445D01* X16946Y25439D01* X16940Y25433D01* X16936Y25425D01* X16933Y25417D01* X16924Y25391D01* X16913Y25366D01* X16900Y25343D01* X16885Y25320D01* X16884Y25319D01* Y25680D01* X16897Y25661D01* X16911Y25637D01* X16922Y25613D01* X16931Y25587D01* X16935Y25579D01* X16939Y25572D01* X16945Y25565D01* X16952Y25560D01* X16960Y25556D01* X16968Y25553D01* X16977Y25552D01* X16985Y25552D01* X16994Y25554D01* X17002Y25557D01* X17009Y25562D01* X17016Y25568D01* X17021Y25575D01* X17025Y25582D01* X17028Y25591D01* X17029Y25599D01* X17029Y25608D01* X17027Y25617D01* X17015Y25651D01* X17000Y25683D01* X16982Y25715D01* X16961Y25744D01* X16937Y25772D01* X16912Y25797D01* X16884Y25820D01* Y27196D01* X16897Y27207D01* X16922Y27232D01* X16945Y27260D01* X16965Y27290D01* X16983Y27322D01* X16997Y27355D01* X17009Y27389D01* X17011Y27398D01* X17011Y27407D01* X17010Y27415D01* X17007Y27423D01* X17002Y27431D01* X16997Y27438D01* X16990Y27444D01* X16983Y27448D01* X16975Y27451D01* X16966Y27453D01* X16957Y27453D01* X16949Y27452D01* X16941Y27449D01* X16933Y27445D01* X16926Y27439D01* X16920Y27433D01* X16916Y27425D01* X16913Y27417D01* X16904Y27391D01* X16893Y27366D01* X16884Y27350D01* Y27650D01* X16891Y27637D01* X16902Y27613D01* X16911Y27587D01* X16915Y27579D01* X16919Y27572D01* X16925Y27565D01* X16932Y27560D01* X16940Y27556D01* X16948Y27553D01* X16957Y27552D01* X16965Y27552D01* X16974Y27554D01* X16982Y27557D01* X16989Y27562D01* X16996Y27568D01* X17001Y27575D01* X17005Y27582D01* X17008Y27591D01* X17009Y27599D01* X17009Y27608D01* X17007Y27617D01* X16995Y27651D01* X16980Y27683D01* X16962Y27715D01* X16941Y27744D01* X16917Y27772D01* X16892Y27797D01* X16884Y27804D01* Y29214D01* X16902Y29232D01* X16925Y29260D01* X16945Y29290D01* X16963Y29322D01* X16977Y29355D01* X16989Y29389D01* X16991Y29398D01* X16991Y29407D01* X16990Y29415D01* X16987Y29423D01* X16982Y29431D01* X16977Y29438D01* X16970Y29444D01* X16963Y29448D01* X16955Y29451D01* X16946Y29453D01* X16937Y29453D01* X16929Y29452D01* X16921Y29449D01* X16913Y29445D01* X16906Y29439D01* X16900Y29433D01* X16896Y29425D01* X16893Y29417D01* X16884Y29391D01* X16884Y29391D01* Y29608D01* X16891Y29587D01* X16895Y29579D01* X16899Y29572D01* X16905Y29565D01* X16912Y29560D01* X16920Y29556D01* X16928Y29553D01* X16937Y29552D01* X16945Y29552D01* X16954Y29554D01* X16962Y29557D01* X16969Y29562D01* X16976Y29568D01* X16981Y29575D01* X16985Y29582D01* X16988Y29591D01* X16989Y29599D01* X16989Y29608D01* X16987Y29617D01* X16975Y29651D01* X16960Y29683D01* X16942Y29715D01* X16921Y29744D01* X16897Y29772D01* X16884Y29785D01* Y31235D01* X16905Y31260D01* X16925Y31290D01* X16943Y31322D01* X16957Y31355D01* X16969Y31389D01* X16971Y31398D01* X16971Y31407D01* X16970Y31415D01* X16967Y31423D01* X16962Y31431D01* X16957Y31438D01* X16950Y31444D01* X16943Y31448D01* X16935Y31451D01* X16926Y31453D01* X16917Y31453D01* X16909Y31452D01* X16901Y31449D01* X16893Y31445D01* X16886Y31439D01* X16884Y31437D01* Y31567D01* X16885Y31565D01* X16892Y31560D01* X16900Y31556D01* X16908Y31553D01* X16917Y31552D01* X16925Y31552D01* X16934Y31554D01* X16942Y31557D01* X16949Y31562D01* X16956Y31568D01* X16961Y31575D01* X16965Y31582D01* X16968Y31591D01* X16969Y31599D01* X16969Y31608D01* X16967Y31617D01* X16955Y31651D01* X16940Y31683D01* X16922Y31715D01* X16901Y31744D01* X16884Y31764D01* Y33259D01* X16885Y33260D01* X16905Y33290D01* X16923Y33322D01* X16937Y33355D01* X16949Y33389D01* X16951Y33398D01* X16951Y33407D01* X16950Y33415D01* X16947Y33423D01* X16942Y33431D01* X16937Y33438D01* X16930Y33444D01* X16923Y33448D01* X16915Y33451D01* X16906Y33453D01* X16897Y33453D01* X16889Y33452D01* X16884Y33450D01* Y33555D01* X16888Y33553D01* X16897Y33552D01* X16905Y33552D01* X16914Y33554D01* X16922Y33557D01* X16929Y33562D01* X16936Y33568D01* X16941Y33575D01* X16945Y33582D01* X16948Y33591D01* X16949Y33599D01* X16949Y33608D01* X16947Y33617D01* X16935Y33651D01* X16920Y33683D01* X16902Y33715D01* X16884Y33740D01* Y35288D01* X16885Y35290D01* X16903Y35322D01* X16917Y35355D01* X16929Y35389D01* X16931Y35398D01* X16931Y35407D01* X16930Y35415D01* X16927Y35423D01* X16922Y35431D01* X16917Y35438D01* X16910Y35444D01* X16903Y35448D01* X16895Y35451D01* X16886Y35453D01* X16884D01* Y35552D01* X16885D01* X16894Y35554D01* X16902Y35557D01* X16909Y35562D01* X16916Y35568D01* X16921Y35575D01* X16925Y35582D01* X16928Y35591D01* X16929Y35599D01* X16929Y35608D01* X16927Y35617D01* X16915Y35651D01* X16900Y35683D01* X16884Y35711D01* Y37324D01* X16897Y37355D01* X16909Y37389D01* X16911Y37398D01* X16911Y37407D01* X16910Y37415D01* X16907Y37423D01* X16902Y37431D01* X16897Y37438D01* X16890Y37444D01* X16884Y37447D01* Y37559D01* X16889Y37562D01* X16896Y37568D01* X16901Y37575D01* X16905Y37582D01* X16908Y37591D01* X16909Y37599D01* X16909Y37608D01* X16907Y37617D01* X16895Y37651D01* X16884Y37674D01* Y39374D01* X16889Y39389D01* X16891Y39398D01* X16891Y39407D01* X16890Y39415D01* X16887Y39423D01* X16884Y39428D01* Y39580D01* X16885Y39582D01* X16888Y39591D01* X16889Y39599D01* X16889Y39608D01* X16887Y39617D01* X16884Y39625D01* Y40000D01* G37* G36* X17064Y0D02*X16884D01* Y7140D01* X16887Y7135D01* X16893Y7128D01* X16900Y7123D01* X16907Y7119D01* X16916Y7116D01* X16924Y7115D01* X16933Y7115D01* X16941Y7117D01* X16976Y7129D01* X17008Y7144D01* X17040Y7162D01* X17064Y7180D01* Y5834D01* X17054Y5840D01* X17022Y5858D01* X16989Y5873D01* X16955Y5884D01* X16946Y5886D01* X16937Y5886D01* X16929Y5885D01* X16921Y5882D01* X16913Y5878D01* X16906Y5872D01* X16900Y5865D01* X16896Y5858D01* X16893Y5850D01* X16891Y5841D01* X16891Y5833D01* X16892Y5824D01* X16895Y5816D01* X16899Y5808D01* X16905Y5801D01* X16912Y5796D01* X16919Y5791D01* X16927Y5788D01* X16953Y5779D01* X16978Y5768D01* X17001Y5755D01* X17024Y5740D01* X17045Y5723D01* X17064Y5704D01* Y5295D01* X17049Y5280D01* X17028Y5262D01* X17006Y5247D01* X16982Y5233D01* X16958Y5222D01* X16932Y5213D01* X16924Y5209D01* X16917Y5205D01* X16910Y5199D01* X16905Y5192D01* X16901Y5184D01* X16898Y5176D01* X16897Y5167D01* X16897Y5159D01* X16899Y5150D01* X16902Y5142D01* X16907Y5135D01* X16913Y5128D01* X16920Y5123D01* X16927Y5119D01* X16936Y5116D01* X16944Y5115D01* X16953Y5115D01* X16961Y5117D01* X16996Y5129D01* X17028Y5144D01* X17060Y5162D01* X17064Y5165D01* Y3846D01* X17042Y3858D01* X17009Y3873D01* X16975Y3884D01* X16966Y3886D01* X16957Y3886D01* X16949Y3885D01* X16941Y3882D01* X16933Y3878D01* X16926Y3872D01* X16920Y3865D01* X16916Y3858D01* X16913Y3850D01* X16911Y3841D01* X16911Y3833D01* X16912Y3824D01* X16915Y3816D01* X16919Y3808D01* X16925Y3801D01* X16932Y3796D01* X16939Y3791D01* X16947Y3788D01* X16973Y3779D01* X16998Y3768D01* X17021Y3755D01* X17044Y3740D01* X17064Y3724D01* Y3276D01* X17048Y3262D01* X17026Y3247D01* X17002Y3233D01* X16978Y3222D01* X16952Y3213D01* X16944Y3209D01* X16937Y3205D01* X16930Y3199D01* X16925Y3192D01* X16921Y3184D01* X16918Y3176D01* X16917Y3167D01* X16917Y3159D01* X16919Y3150D01* X16922Y3142D01* X16927Y3135D01* X16933Y3128D01* X16940Y3123D01* X16947Y3119D01* X16956Y3116D01* X16964Y3115D01* X16973Y3115D01* X16981Y3117D01* X17016Y3129D01* X17048Y3144D01* X17064Y3153D01* Y1857D01* X17062Y1858D01* X17029Y1873D01* X16995Y1884D01* X16986Y1886D01* X16977Y1886D01* X16969Y1885D01* X16961Y1882D01* X16953Y1878D01* X16946Y1872D01* X16940Y1865D01* X16936Y1858D01* X16933Y1850D01* X16931Y1841D01* X16931Y1833D01* X16932Y1824D01* X16935Y1816D01* X16939Y1808D01* X16945Y1801D01* X16952Y1796D01* X16959Y1791D01* X16967Y1788D01* X16993Y1779D01* X17018Y1768D01* X17041Y1755D01* X17064Y1740D01* Y1259D01* X17046Y1247D01* X17022Y1233D01* X16998Y1222D01* X16972Y1213D01* X16964Y1209D01* X16957Y1205D01* X16950Y1199D01* X16945Y1192D01* X16941Y1184D01* X16938Y1176D01* X16937Y1167D01* X16937Y1159D01* X16939Y1150D01* X16942Y1142D01* X16947Y1135D01* X16953Y1128D01* X16960Y1123D01* X16967Y1119D01* X16976Y1116D01* X16984Y1115D01* X16993Y1115D01* X17001Y1117D01* X17036Y1129D01* X17064Y1142D01* Y0D01* G37* G36* Y7319D02*X17048Y7299D01* X17029Y7280D01* X17008Y7262D01* X16986Y7247D01* X16962Y7233D01* X16938Y7222D01* X16912Y7213D01* X16904Y7209D01* X16897Y7205D01* X16890Y7199D01* X16885Y7192D01* X16884Y7190D01* Y7802D01* X16885Y7801D01* X16892Y7796D01* X16899Y7791D01* X16907Y7788D01* X16933Y7779D01* X16958Y7768D01* X16981Y7755D01* X17004Y7740D01* X17025Y7723D01* X17044Y7704D01* X17062Y7683D01* X17064Y7680D01* Y7319D01* G37* G36* Y7820D02*X17064Y7820D01* X17034Y7840D01* X17002Y7858D01* X16969Y7873D01* X16935Y7884D01* X16926Y7886D01* X16917Y7886D01* X16909Y7885D01* X16901Y7882D01* X16893Y7878D01* X16886Y7872D01* X16884Y7870D01* Y9121D01* X16887Y9119D01* X16896Y9116D01* X16904Y9115D01* X16913Y9115D01* X16921Y9117D01* X16956Y9129D01* X16988Y9144D01* X17020Y9162D01* X17049Y9183D01* X17064Y9196D01* Y7820D01* G37* G36* Y9350D02*X17060Y9343D01* X17045Y9320D01* X17028Y9299D01* X17009Y9280D01* X16988Y9262D01* X16966Y9247D01* X16942Y9233D01* X16918Y9222D01* X16892Y9213D01* X16884Y9209D01* X16884Y9209D01* Y9789D01* X16887Y9788D01* X16913Y9779D01* X16938Y9768D01* X16961Y9755D01* X16984Y9740D01* X17005Y9723D01* X17024Y9704D01* X17042Y9683D01* X17057Y9661D01* X17064Y9650D01* Y9350D01* G37* G36* Y9804D02*X17044Y9820D01* X17014Y9840D01* X16982Y9858D01* X16949Y9873D01* X16915Y9884D01* X16906Y9886D01* X16897Y9886D01* X16889Y9885D01* X16884Y9883D01* Y11115D01* X16884D01* X16893Y11115D01* X16901Y11117D01* X16936Y11129D01* X16968Y11144D01* X17000Y11162D01* X17029Y11183D01* X17057Y11207D01* X17064Y11214D01* Y9804D01* G37* G36* Y11391D02*X17053Y11366D01* X17040Y11343D01* X17025Y11320D01* X17008Y11299D01* X16989Y11280D01* X16968Y11262D01* X16946Y11247D01* X16922Y11233D01* X16898Y11222D01* X16884Y11217D01* Y11782D01* X16893Y11779D01* X16918Y11768D01* X16941Y11755D01* X16964Y11740D01* X16985Y11723D01* X17004Y11704D01* X17022Y11683D01* X17037Y11661D01* X17051Y11637D01* X17062Y11613D01* X17064Y11608D01* Y11391D01* G37* G36* Y11785D02*X17052Y11797D01* X17024Y11820D01* X16994Y11840D01* X16962Y11858D01* X16929Y11873D01* X16895Y11884D01* X16886Y11886D01* X16884D01* Y13118D01* X16916Y13129D01* X16948Y13144D01* X16980Y13162D01* X17009Y13183D01* X17037Y13207D01* X17062Y13232D01* X17064Y13235D01* Y11785D01* G37* G36* Y13437D02*X17060Y13433D01* X17056Y13425D01* X17053Y13417D01* X17044Y13391D01* X17033Y13366D01* X17020Y13343D01* X17005Y13320D01* X16988Y13299D01* X16969Y13280D01* X16948Y13262D01* X16926Y13247D01* X16902Y13233D01* X16884Y13225D01* Y13774D01* X16898Y13768D01* X16921Y13755D01* X16944Y13740D01* X16965Y13723D01* X16984Y13704D01* X17002Y13683D01* X17017Y13661D01* X17031Y13637D01* X17042Y13613D01* X17051Y13587D01* X17055Y13579D01* X17059Y13572D01* X17064Y13567D01* Y13437D01* G37* G36* Y13764D02*X17057Y13772D01* X17032Y13797D01* X17004Y13820D01* X16974Y13840D01* X16942Y13858D01* X16909Y13873D01* X16884Y13881D01* Y15125D01* X16896Y15129D01* X16928Y15144D01* X16960Y15162D01* X16989Y15183D01* X17017Y15207D01* X17042Y15232D01* X17064Y15259D01* Y13764D01* G37* G36* Y15450D02*X17061Y15449D01* X17053Y15445D01* X17046Y15439D01* X17040Y15433D01* X17036Y15425D01* X17033Y15417D01* X17024Y15391D01* X17013Y15366D01* X17000Y15343D01* X16985Y15320D01* X16968Y15299D01* X16949Y15280D01* X16928Y15262D01* X16906Y15247D01* X16884Y15234D01* Y15765D01* X16901Y15755D01* X16924Y15740D01* X16945Y15723D01* X16964Y15704D01* X16982Y15683D01* X16997Y15661D01* X17011Y15637D01* X17022Y15613D01* X17031Y15587D01* X17035Y15579D01* X17039Y15572D01* X17045Y15565D01* X17052Y15560D01* X17060Y15556D01* X17064Y15555D01* Y15450D01* G37* G36* Y15740D02*X17061Y15744D01* X17037Y15772D01* X17012Y15797D01* X16984Y15820D01* X16954Y15840D01* X16922Y15858D01* X16889Y15873D01* X16884Y15874D01* Y17133D01* X16908Y17144D01* X16940Y17162D01* X16969Y17183D01* X16997Y17207D01* X17022Y17232D01* X17045Y17260D01* X17064Y17288D01* Y15740D01* G37* G36* Y17453D02*X17057Y17453D01* X17049Y17452D01* X17041Y17449D01* X17033Y17445D01* X17026Y17439D01* X17020Y17433D01* X17016Y17425D01* X17013Y17417D01* X17004Y17391D01* X16993Y17366D01* X16980Y17343D01* X16965Y17320D01* X16948Y17299D01* X16929Y17280D01* X16908Y17262D01* X16886Y17247D01* X16884Y17246D01* Y17754D01* X16904Y17740D01* X16925Y17723D01* X16944Y17704D01* X16962Y17683D01* X16977Y17661D01* X16991Y17637D01* X17002Y17613D01* X17011Y17587D01* X17015Y17579D01* X17019Y17572D01* X17025Y17565D01* X17032Y17560D01* X17040Y17556D01* X17048Y17553D01* X17057Y17552D01* X17064Y17552D01* Y17453D01* G37* G36* Y17711D02*X17062Y17715D01* X17041Y17744D01* X17017Y17772D01* X16992Y17797D01* X16964Y17820D01* X16934Y17840D01* X16902Y17858D01* X16884Y17866D01* Y19142D01* X16888Y19144D01* X16920Y19162D01* X16949Y19183D01* X16977Y19207D01* X17002Y19232D01* X17025Y19260D01* X17045Y19290D01* X17063Y19322D01* X17064Y19324D01* Y17711D01* G37* G36* Y19447D02*X17063Y19448D01* X17055Y19451D01* X17046Y19453D01* X17037Y19453D01* X17029Y19452D01* X17021Y19449D01* X17013Y19445D01* X17006Y19439D01* X17000Y19433D01* X16996Y19425D01* X16993Y19417D01* X16984Y19391D01* X16973Y19366D01* X16960Y19343D01* X16945Y19320D01* X16928Y19299D01* X16909Y19280D01* X16888Y19262D01* X16884Y19259D01* Y19740D01* X16905Y19723D01* X16924Y19704D01* X16942Y19683D01* X16957Y19661D01* X16971Y19637D01* X16982Y19613D01* X16991Y19587D01* X16995Y19579D01* X16999Y19572D01* X17005Y19565D01* X17012Y19560D01* X17020Y19556D01* X17028Y19553D01* X17037Y19552D01* X17045Y19552D01* X17054Y19554D01* X17062Y19557D01* X17064Y19559D01* Y19447D01* G37* G36* Y19674D02*X17060Y19683D01* X17042Y19715D01* X17021Y19744D01* X16997Y19772D01* X16972Y19797D01* X16944Y19820D01* X16914Y19840D01* X16884Y19857D01* Y21153D01* X16900Y21162D01* X16929Y21183D01* X16957Y21207D01* X16982Y21232D01* X17005Y21260D01* X17025Y21290D01* X17043Y21322D01* X17057Y21355D01* X17064Y21374D01* Y19674D01* G37* G36* Y21428D02*X17062Y21431D01* X17057Y21438D01* X17050Y21444D01* X17043Y21448D01* X17035Y21451D01* X17026Y21453D01* X17017Y21453D01* X17009Y21452D01* X17001Y21449D01* X16993Y21445D01* X16986Y21439D01* X16980Y21433D01* X16976Y21425D01* X16973Y21417D01* X16964Y21391D01* X16953Y21366D01* X16940Y21343D01* X16925Y21320D01* X16908Y21299D01* X16889Y21280D01* X16884Y21276D01* Y21724D01* X16885Y21723D01* X16904Y21704D01* X16922Y21683D01* X16937Y21661D01* X16951Y21637D01* X16962Y21613D01* X16971Y21587D01* X16975Y21579D01* X16979Y21572D01* X16985Y21565D01* X16992Y21560D01* X17000Y21556D01* X17008Y21553D01* X17017Y21552D01* X17025Y21552D01* X17034Y21554D01* X17042Y21557D01* X17049Y21562D01* X17056Y21568D01* X17061Y21575D01* X17064Y21580D01* Y21428D01* G37* G36* Y40000D02*X18445D01* Y39859D01* X18442Y39864D01* X18436Y39871D01* X18429Y39876D01* X18422Y39880D01* X18413Y39883D01* X18405Y39884D01* X18396Y39884D01* X18388Y39882D01* X18353Y39870D01* X18321Y39855D01* X18289Y39837D01* X18260Y39816D01* X18232Y39793D01* X18207Y39767D01* X18184Y39739D01* X18164Y39709D01* X18146Y39677D01* X18132Y39644D01* X18120Y39610D01* X18118Y39601D01* X18118Y39593D01* X18119Y39584D01* X18122Y39576D01* X18127Y39568D01* X18132Y39561D01* X18139Y39556D01* X18146Y39551D01* X18154Y39548D01* X18163Y39546D01* X18172Y39546D01* X18180Y39547D01* X18188Y39550D01* X18196Y39555D01* X18203Y39560D01* X18209Y39567D01* X18213Y39574D01* X18216Y39582D01* X18225Y39608D01* X18236Y39633D01* X18249Y39657D01* X18264Y39679D01* X18281Y39700D01* X18300Y39719D01* X18321Y39737D01* X18343Y39752D01* X18367Y39766D01* X18391Y39777D01* X18417Y39786D01* X18425Y39790D01* X18432Y39794D01* X18439Y39800D01* X18444Y39807D01* X18445Y39809D01* Y39197D01* X18444Y39198D01* X18437Y39204D01* X18430Y39208D01* X18422Y39211D01* X18396Y39220D01* X18371Y39231D01* X18348Y39244D01* X18325Y39259D01* X18304Y39276D01* X18285Y39295D01* X18267Y39316D01* X18252Y39338D01* X18238Y39362D01* X18227Y39386D01* X18218Y39412D01* X18214Y39420D01* X18210Y39427D01* X18204Y39434D01* X18197Y39439D01* X18189Y39443D01* X18181Y39446D01* X18172Y39447D01* X18164Y39447D01* X18155Y39445D01* X18147Y39442D01* X18140Y39437D01* X18133Y39431D01* X18128Y39424D01* X18124Y39417D01* X18121Y39409D01* X18120Y39400D01* X18120Y39391D01* X18122Y39383D01* X18134Y39349D01* X18149Y39316D01* X18167Y39284D01* X18188Y39255D01* X18212Y39227D01* X18237Y39202D01* X18265Y39179D01* X18295Y39159D01* X18327Y39141D01* X18360Y39127D01* X18394Y39115D01* X18403Y39113D01* X18412Y39113D01* X18420Y39115D01* X18428Y39117D01* X18436Y39122D01* X18443Y39127D01* X18445Y39130D01* Y37878D01* X18442Y37880D01* X18433Y37883D01* X18425Y37884D01* X18416Y37884D01* X18408Y37882D01* X18373Y37870D01* X18341Y37855D01* X18309Y37837D01* X18280Y37816D01* X18252Y37793D01* X18227Y37767D01* X18204Y37739D01* X18184Y37709D01* X18166Y37677D01* X18152Y37644D01* X18140Y37610D01* X18138Y37601D01* X18138Y37593D01* X18139Y37584D01* X18142Y37576D01* X18147Y37568D01* X18152Y37561D01* X18159Y37556D01* X18166Y37551D01* X18174Y37548D01* X18183Y37546D01* X18192Y37546D01* X18200Y37547D01* X18208Y37550D01* X18216Y37555D01* X18223Y37560D01* X18229Y37567D01* X18233Y37574D01* X18236Y37582D01* X18245Y37608D01* X18256Y37633D01* X18269Y37657D01* X18284Y37679D01* X18301Y37700D01* X18320Y37719D01* X18341Y37737D01* X18363Y37752D01* X18387Y37766D01* X18411Y37777D01* X18437Y37786D01* X18445Y37790D01* X18445Y37790D01* Y37210D01* X18442Y37211D01* X18416Y37220D01* X18391Y37231D01* X18368Y37244D01* X18345Y37259D01* X18324Y37276D01* X18305Y37295D01* X18287Y37316D01* X18272Y37338D01* X18258Y37362D01* X18247Y37386D01* X18238Y37412D01* X18234Y37420D01* X18230Y37427D01* X18224Y37434D01* X18217Y37439D01* X18209Y37443D01* X18201Y37446D01* X18192Y37447D01* X18184Y37447D01* X18175Y37445D01* X18167Y37442D01* X18160Y37437D01* X18153Y37431D01* X18148Y37424D01* X18144Y37417D01* X18141Y37409D01* X18140Y37400D01* X18140Y37391D01* X18142Y37383D01* X18154Y37349D01* X18169Y37316D01* X18187Y37284D01* X18208Y37255D01* X18232Y37227D01* X18257Y37202D01* X18285Y37179D01* X18315Y37159D01* X18347Y37141D01* X18380Y37127D01* X18414Y37115D01* X18423Y37113D01* X18432Y37113D01* X18440Y37115D01* X18445Y37116D01* Y35884D01* X18445Y35884D01* X18436Y35884D01* X18428Y35882D01* X18393Y35870D01* X18361Y35855D01* X18329Y35837D01* X18300Y35816D01* X18272Y35793D01* X18247Y35767D01* X18224Y35739D01* X18204Y35709D01* X18186Y35677D01* X18172Y35644D01* X18160Y35610D01* X18158Y35601D01* X18158Y35593D01* X18159Y35584D01* X18162Y35576D01* X18167Y35568D01* X18172Y35561D01* X18179Y35556D01* X18186Y35551D01* X18194Y35548D01* X18203Y35546D01* X18212Y35546D01* X18220Y35547D01* X18228Y35550D01* X18236Y35555D01* X18243Y35560D01* X18249Y35567D01* X18253Y35574D01* X18256Y35582D01* X18265Y35608D01* X18276Y35633D01* X18289Y35657D01* X18304Y35679D01* X18321Y35700D01* X18340Y35719D01* X18361Y35737D01* X18383Y35752D01* X18407Y35766D01* X18431Y35777D01* X18445Y35782D01* Y35217D01* X18436Y35220D01* X18411Y35231D01* X18388Y35244D01* X18365Y35259D01* X18344Y35276D01* X18325Y35295D01* X18307Y35316D01* X18292Y35338D01* X18278Y35362D01* X18267Y35386D01* X18258Y35412D01* X18254Y35420D01* X18250Y35427D01* X18244Y35434D01* X18237Y35439D01* X18229Y35443D01* X18221Y35446D01* X18212Y35447D01* X18204Y35447D01* X18195Y35445D01* X18187Y35442D01* X18180Y35437D01* X18173Y35431D01* X18168Y35424D01* X18164Y35417D01* X18161Y35409D01* X18160Y35400D01* X18160Y35391D01* X18162Y35383D01* X18174Y35349D01* X18189Y35316D01* X18207Y35284D01* X18228Y35255D01* X18252Y35227D01* X18277Y35202D01* X18305Y35179D01* X18335Y35159D01* X18367Y35141D01* X18400Y35127D01* X18434Y35115D01* X18443Y35113D01* X18445D01* Y33881D01* X18413Y33870D01* X18381Y33855D01* X18349Y33837D01* X18320Y33816D01* X18292Y33793D01* X18267Y33767D01* X18244Y33739D01* X18224Y33709D01* X18206Y33677D01* X18192Y33644D01* X18180Y33610D01* X18178Y33601D01* X18178Y33593D01* X18179Y33584D01* X18182Y33576D01* X18187Y33568D01* X18192Y33561D01* X18199Y33556D01* X18206Y33551D01* X18214Y33548D01* X18223Y33546D01* X18232Y33546D01* X18240Y33547D01* X18248Y33550D01* X18256Y33555D01* X18263Y33560D01* X18269Y33567D01* X18273Y33574D01* X18276Y33582D01* X18285Y33608D01* X18296Y33633D01* X18309Y33657D01* X18324Y33679D01* X18341Y33700D01* X18360Y33719D01* X18381Y33737D01* X18403Y33752D01* X18427Y33766D01* X18445Y33775D01* Y33225D01* X18431Y33231D01* X18408Y33244D01* X18385Y33259D01* X18364Y33276D01* X18345Y33295D01* X18327Y33316D01* X18312Y33338D01* X18298Y33362D01* X18287Y33386D01* X18278Y33412D01* X18274Y33420D01* X18270Y33427D01* X18264Y33434D01* X18257Y33439D01* X18249Y33443D01* X18241Y33446D01* X18232Y33447D01* X18224Y33447D01* X18215Y33445D01* X18207Y33442D01* X18200Y33437D01* X18193Y33431D01* X18188Y33424D01* X18184Y33417D01* X18181Y33409D01* X18180Y33400D01* X18180Y33391D01* X18182Y33383D01* X18194Y33349D01* X18209Y33316D01* X18227Y33284D01* X18248Y33255D01* X18272Y33227D01* X18297Y33202D01* X18325Y33179D01* X18355Y33159D01* X18387Y33141D01* X18420Y33127D01* X18445Y33118D01* Y31874D01* X18433Y31870D01* X18401Y31855D01* X18369Y31837D01* X18340Y31816D01* X18312Y31793D01* X18287Y31767D01* X18264Y31739D01* X18244Y31709D01* X18226Y31677D01* X18212Y31644D01* X18200Y31610D01* X18198Y31601D01* X18198Y31593D01* X18199Y31584D01* X18202Y31576D01* X18207Y31568D01* X18212Y31561D01* X18219Y31556D01* X18226Y31551D01* X18234Y31548D01* X18243Y31546D01* X18252Y31546D01* X18260Y31547D01* X18268Y31550D01* X18276Y31555D01* X18283Y31560D01* X18289Y31567D01* X18293Y31574D01* X18296Y31582D01* X18305Y31608D01* X18316Y31633D01* X18329Y31657D01* X18344Y31679D01* X18361Y31700D01* X18380Y31719D01* X18401Y31737D01* X18423Y31752D01* X18445Y31765D01* Y31234D01* X18428Y31244D01* X18405Y31259D01* X18384Y31276D01* X18365Y31295D01* X18347Y31316D01* X18332Y31338D01* X18318Y31362D01* X18307Y31386D01* X18298Y31412D01* X18294Y31420D01* X18290Y31427D01* X18284Y31434D01* X18277Y31439D01* X18269Y31443D01* X18261Y31446D01* X18252Y31447D01* X18244Y31447D01* X18235Y31445D01* X18227Y31442D01* X18220Y31437D01* X18213Y31431D01* X18208Y31424D01* X18204Y31417D01* X18201Y31409D01* X18200Y31400D01* X18200Y31391D01* X18202Y31383D01* X18214Y31349D01* X18229Y31316D01* X18247Y31284D01* X18268Y31255D01* X18292Y31227D01* X18317Y31202D01* X18345Y31179D01* X18375Y31159D01* X18407Y31141D01* X18440Y31127D01* X18445Y31125D01* Y29866D01* X18421Y29855D01* X18389Y29837D01* X18360Y29816D01* X18332Y29793D01* X18307Y29767D01* X18284Y29739D01* X18264Y29709D01* X18246Y29677D01* X18232Y29644D01* X18220Y29610D01* X18218Y29601D01* X18218Y29593D01* X18219Y29584D01* X18222Y29576D01* X18227Y29568D01* X18232Y29561D01* X18239Y29556D01* X18246Y29551D01* X18254Y29548D01* X18263Y29546D01* X18272Y29546D01* X18280Y29547D01* X18288Y29550D01* X18296Y29555D01* X18303Y29560D01* X18309Y29567D01* X18313Y29574D01* X18316Y29582D01* X18325Y29608D01* X18336Y29633D01* X18349Y29657D01* X18364Y29679D01* X18381Y29700D01* X18400Y29719D01* X18421Y29737D01* X18443Y29752D01* X18445Y29754D01* Y29246D01* X18425Y29259D01* X18404Y29276D01* X18385Y29295D01* X18367Y29316D01* X18352Y29338D01* X18338Y29362D01* X18327Y29386D01* X18318Y29412D01* X18314Y29420D01* X18310Y29427D01* X18304Y29434D01* X18297Y29439D01* X18289Y29443D01* X18281Y29446D01* X18272Y29447D01* X18264Y29447D01* X18255Y29445D01* X18247Y29442D01* X18240Y29437D01* X18233Y29431D01* X18228Y29424D01* X18224Y29417D01* X18221Y29409D01* X18220Y29400D01* X18220Y29391D01* X18222Y29383D01* X18234Y29349D01* X18249Y29316D01* X18267Y29284D01* X18288Y29255D01* X18312Y29227D01* X18337Y29202D01* X18365Y29179D01* X18395Y29159D01* X18427Y29141D01* X18445Y29133D01* Y27857D01* X18441Y27855D01* X18409Y27837D01* X18380Y27816D01* X18352Y27793D01* X18327Y27767D01* X18304Y27739D01* X18284Y27709D01* X18266Y27677D01* X18252Y27644D01* X18240Y27610D01* X18238Y27601D01* X18238Y27593D01* X18239Y27584D01* X18242Y27576D01* X18247Y27568D01* X18252Y27561D01* X18259Y27556D01* X18266Y27551D01* X18274Y27548D01* X18283Y27546D01* X18292Y27546D01* X18300Y27547D01* X18308Y27550D01* X18316Y27555D01* X18323Y27560D01* X18329Y27567D01* X18333Y27574D01* X18336Y27582D01* X18345Y27608D01* X18356Y27633D01* X18369Y27657D01* X18384Y27679D01* X18401Y27700D01* X18420Y27719D01* X18441Y27737D01* X18445Y27740D01* Y27259D01* X18445Y27259D01* X18424Y27276D01* X18405Y27295D01* X18387Y27316D01* X18372Y27338D01* X18358Y27362D01* X18347Y27386D01* X18338Y27412D01* X18334Y27420D01* X18330Y27427D01* X18324Y27434D01* X18317Y27439D01* X18309Y27443D01* X18301Y27446D01* X18292Y27447D01* X18284Y27447D01* X18275Y27445D01* X18267Y27442D01* X18260Y27437D01* X18253Y27431D01* X18248Y27424D01* X18244Y27417D01* X18241Y27409D01* X18240Y27400D01* X18240Y27391D01* X18242Y27383D01* X18254Y27349D01* X18269Y27316D01* X18287Y27284D01* X18308Y27255D01* X18332Y27227D01* X18357Y27202D01* X18385Y27179D01* X18415Y27159D01* X18445Y27142D01* Y25846D01* X18429Y25837D01* X18400Y25816D01* X18372Y25793D01* X18347Y25767D01* X18324Y25739D01* X18304Y25709D01* X18286Y25677D01* X18272Y25644D01* X18260Y25610D01* X18258Y25601D01* X18258Y25593D01* X18259Y25584D01* X18262Y25576D01* X18267Y25568D01* X18272Y25561D01* X18279Y25556D01* X18286Y25551D01* X18294Y25548D01* X18303Y25546D01* X18312Y25546D01* X18320Y25547D01* X18328Y25550D01* X18336Y25555D01* X18343Y25560D01* X18349Y25567D01* X18353Y25574D01* X18356Y25582D01* X18365Y25608D01* X18376Y25633D01* X18389Y25657D01* X18404Y25679D01* X18421Y25700D01* X18440Y25719D01* X18445Y25723D01* Y25276D01* X18444Y25276D01* X18425Y25295D01* X18407Y25316D01* X18392Y25338D01* X18378Y25362D01* X18367Y25386D01* X18358Y25412D01* X18354Y25420D01* X18350Y25427D01* X18344Y25434D01* X18337Y25439D01* X18329Y25443D01* X18321Y25446D01* X18312Y25447D01* X18304Y25447D01* X18295Y25445D01* X18287Y25442D01* X18280Y25437D01* X18273Y25431D01* X18268Y25424D01* X18264Y25417D01* X18261Y25409D01* X18260Y25400D01* X18260Y25391D01* X18262Y25383D01* X18274Y25349D01* X18289Y25316D01* X18307Y25284D01* X18328Y25255D01* X18352Y25227D01* X18377Y25202D01* X18405Y25179D01* X18435Y25159D01* X18445Y25153D01* Y23834D01* X18420Y23816D01* X18392Y23793D01* X18367Y23767D01* X18344Y23739D01* X18324Y23709D01* X18306Y23677D01* X18292Y23644D01* X18280Y23610D01* X18278Y23601D01* X18278Y23593D01* X18279Y23584D01* X18282Y23576D01* X18287Y23568D01* X18292Y23561D01* X18299Y23556D01* X18306Y23551D01* X18314Y23548D01* X18323Y23546D01* X18332Y23546D01* X18340Y23547D01* X18348Y23550D01* X18356Y23555D01* X18363Y23560D01* X18369Y23567D01* X18373Y23574D01* X18376Y23582D01* X18385Y23608D01* X18396Y23633D01* X18409Y23657D01* X18424Y23679D01* X18441Y23700D01* X18445Y23704D01* Y23295D01* X18445Y23295D01* X18427Y23316D01* X18412Y23338D01* X18398Y23362D01* X18387Y23386D01* X18378Y23412D01* X18374Y23420D01* X18370Y23427D01* X18364Y23434D01* X18357Y23439D01* X18349Y23443D01* X18341Y23446D01* X18332Y23447D01* X18324Y23447D01* X18315Y23445D01* X18307Y23442D01* X18300Y23437D01* X18293Y23431D01* X18288Y23424D01* X18284Y23417D01* X18281Y23409D01* X18280Y23400D01* X18280Y23391D01* X18282Y23383D01* X18294Y23349D01* X18309Y23316D01* X18327Y23284D01* X18348Y23255D01* X18372Y23227D01* X18397Y23202D01* X18425Y23179D01* X18445Y23166D01* Y21820D01* X18440Y21816D01* X18412Y21793D01* X18387Y21767D01* X18364Y21739D01* X18344Y21709D01* X18326Y21677D01* X18312Y21644D01* X18300Y21610D01* X18298Y21601D01* X18298Y21593D01* X18299Y21584D01* X18302Y21576D01* X18307Y21568D01* X18312Y21561D01* X18319Y21556D01* X18326Y21551D01* X18334Y21548D01* X18343Y21546D01* X18352Y21546D01* X18360Y21547D01* X18368Y21550D01* X18376Y21555D01* X18383Y21560D01* X18389Y21567D01* X18393Y21574D01* X18396Y21582D01* X18405Y21608D01* X18416Y21633D01* X18429Y21657D01* X18444Y21679D01* X18445Y21680D01* Y21319D01* X18432Y21338D01* X18418Y21362D01* X18407Y21386D01* X18398Y21412D01* X18394Y21420D01* X18390Y21427D01* X18384Y21434D01* X18377Y21439D01* X18369Y21443D01* X18361Y21446D01* X18352Y21447D01* X18344Y21447D01* X18335Y21445D01* X18327Y21442D01* X18320Y21437D01* X18313Y21431D01* X18308Y21424D01* X18304Y21417D01* X18301Y21409D01* X18300Y21400D01* X18300Y21391D01* X18302Y21383D01* X18314Y21349D01* X18329Y21316D01* X18347Y21284D01* X18368Y21255D01* X18392Y21227D01* X18417Y21202D01* X18445Y21179D01* Y19804D01* X18432Y19793D01* X18407Y19767D01* X18384Y19739D01* X18364Y19709D01* X18346Y19677D01* X18332Y19644D01* X18320Y19610D01* X18318Y19601D01* X18318Y19593D01* X18319Y19584D01* X18322Y19576D01* X18327Y19568D01* X18332Y19561D01* X18339Y19556D01* X18346Y19551D01* X18354Y19548D01* X18363Y19546D01* X18372Y19546D01* X18380Y19547D01* X18388Y19550D01* X18396Y19555D01* X18403Y19560D01* X18409Y19567D01* X18413Y19574D01* X18416Y19582D01* X18425Y19608D01* X18436Y19633D01* X18445Y19650D01* Y19349D01* X18438Y19362D01* X18427Y19386D01* X18418Y19412D01* X18414Y19420D01* X18410Y19427D01* X18404Y19434D01* X18397Y19439D01* X18389Y19443D01* X18381Y19446D01* X18372Y19447D01* X18364Y19447D01* X18355Y19445D01* X18347Y19442D01* X18340Y19437D01* X18333Y19431D01* X18328Y19424D01* X18324Y19417D01* X18321Y19409D01* X18320Y19400D01* X18320Y19391D01* X18322Y19383D01* X18334Y19349D01* X18349Y19316D01* X18367Y19284D01* X18388Y19255D01* X18412Y19227D01* X18437Y19202D01* X18445Y19196D01* Y17785D01* X18427Y17767D01* X18404Y17739D01* X18384Y17709D01* X18366Y17677D01* X18352Y17644D01* X18340Y17610D01* X18338Y17601D01* X18338Y17593D01* X18339Y17584D01* X18342Y17576D01* X18347Y17568D01* X18352Y17561D01* X18359Y17556D01* X18366Y17551D01* X18374Y17548D01* X18383Y17546D01* X18392Y17546D01* X18400Y17547D01* X18408Y17550D01* X18416Y17555D01* X18423Y17560D01* X18429Y17567D01* X18433Y17574D01* X18436Y17582D01* X18445Y17608D01* X18445Y17609D01* Y17391D01* X18438Y17412D01* X18434Y17420D01* X18430Y17427D01* X18424Y17434D01* X18417Y17439D01* X18409Y17443D01* X18401Y17446D01* X18392Y17447D01* X18384Y17447D01* X18375Y17445D01* X18367Y17442D01* X18360Y17437D01* X18353Y17431D01* X18348Y17424D01* X18344Y17417D01* X18341Y17409D01* X18340Y17400D01* X18340Y17391D01* X18342Y17383D01* X18354Y17349D01* X18369Y17316D01* X18387Y17284D01* X18408Y17255D01* X18432Y17227D01* X18445Y17214D01* Y15765D01* X18424Y15739D01* X18404Y15709D01* X18386Y15677D01* X18372Y15644D01* X18360Y15610D01* X18358Y15601D01* X18358Y15593D01* X18359Y15584D01* X18362Y15576D01* X18367Y15568D01* X18372Y15561D01* X18379Y15556D01* X18386Y15551D01* X18394Y15548D01* X18403Y15546D01* X18412Y15546D01* X18420Y15547D01* X18428Y15550D01* X18436Y15555D01* X18443Y15560D01* X18445Y15563D01* Y15432D01* X18444Y15434D01* X18437Y15439D01* X18429Y15443D01* X18421Y15446D01* X18412Y15447D01* X18404Y15447D01* X18395Y15445D01* X18387Y15442D01* X18380Y15437D01* X18373Y15431D01* X18368Y15424D01* X18364Y15417D01* X18361Y15409D01* X18360Y15400D01* X18360Y15391D01* X18362Y15383D01* X18374Y15349D01* X18389Y15316D01* X18407Y15284D01* X18428Y15255D01* X18445Y15235D01* Y13740D01* X18444Y13739D01* X18424Y13709D01* X18406Y13677D01* X18392Y13644D01* X18380Y13610D01* X18378Y13601D01* X18378Y13593D01* X18379Y13584D01* X18382Y13576D01* X18387Y13568D01* X18392Y13561D01* X18399Y13556D01* X18406Y13551D01* X18414Y13548D01* X18423Y13546D01* X18432Y13546D01* X18440Y13547D01* X18445Y13549D01* Y13445D01* X18441Y13446D01* X18432Y13447D01* X18424Y13447D01* X18415Y13445D01* X18407Y13442D01* X18400Y13437D01* X18393Y13431D01* X18388Y13424D01* X18384Y13417D01* X18381Y13409D01* X18380Y13400D01* X18380Y13391D01* X18382Y13383D01* X18394Y13349D01* X18409Y13316D01* X18427Y13284D01* X18445Y13259D01* Y11711D01* X18444Y11709D01* X18426Y11677D01* X18412Y11644D01* X18400Y11610D01* X18398Y11601D01* X18398Y11593D01* X18399Y11584D01* X18402Y11576D01* X18407Y11568D01* X18412Y11561D01* X18419Y11556D01* X18426Y11551D01* X18434Y11548D01* X18443Y11546D01* X18445D01* Y11447D01* X18444Y11447D01* X18435Y11445D01* X18427Y11442D01* X18420Y11437D01* X18413Y11431D01* X18408Y11424D01* X18404Y11417D01* X18401Y11409D01* X18400Y11400D01* X18400Y11391D01* X18402Y11383D01* X18414Y11349D01* X18429Y11316D01* X18445Y11288D01* Y9675D01* X18432Y9644D01* X18420Y9610D01* X18418Y9601D01* X18418Y9593D01* X18419Y9584D01* X18422Y9576D01* X18427Y9568D01* X18432Y9561D01* X18439Y9556D01* X18445Y9552D01* Y9441D01* X18440Y9437D01* X18433Y9431D01* X18428Y9424D01* X18424Y9417D01* X18421Y9409D01* X18420Y9400D01* X18420Y9391D01* X18422Y9383D01* X18434Y9349D01* X18445Y9325D01* Y7625D01* X18440Y7610D01* X18438Y7601D01* X18438Y7593D01* X18439Y7584D01* X18442Y7576D01* X18445Y7571D01* Y7419D01* X18444Y7417D01* X18441Y7409D01* X18440Y7400D01* X18440Y7391D01* X18442Y7383D01* X18445Y7374D01* Y0D01* X17064D01* Y1142D01* X17068Y1144D01* X17100Y1162D01* X17129Y1183D01* X17157Y1207D01* X17182Y1232D01* X17205Y1260D01* X17225Y1290D01* X17243Y1322D01* X17257Y1355D01* X17269Y1389D01* X17271Y1398D01* X17271Y1407D01* X17270Y1415D01* X17267Y1423D01* X17262Y1431D01* X17257Y1438D01* X17250Y1444D01* X17243Y1448D01* X17235Y1451D01* X17226Y1453D01* X17217Y1453D01* X17209Y1452D01* X17201Y1449D01* X17193Y1445D01* X17186Y1439D01* X17180Y1433D01* X17176Y1425D01* X17173Y1417D01* X17164Y1391D01* X17153Y1366D01* X17140Y1343D01* X17125Y1320D01* X17108Y1299D01* X17089Y1280D01* X17068Y1262D01* X17064Y1259D01* Y1740D01* X17085Y1723D01* X17104Y1704D01* X17122Y1683D01* X17137Y1661D01* X17151Y1637D01* X17162Y1613D01* X17171Y1587D01* X17175Y1579D01* X17179Y1572D01* X17185Y1565D01* X17192Y1560D01* X17200Y1556D01* X17208Y1553D01* X17217Y1552D01* X17225Y1552D01* X17234Y1554D01* X17242Y1557D01* X17249Y1562D01* X17256Y1568D01* X17261Y1575D01* X17265Y1582D01* X17268Y1591D01* X17269Y1599D01* X17269Y1608D01* X17267Y1617D01* X17255Y1651D01* X17240Y1683D01* X17222Y1715D01* X17201Y1744D01* X17177Y1772D01* X17152Y1797D01* X17124Y1820D01* X17094Y1840D01* X17064Y1857D01* Y3153D01* X17080Y3162D01* X17109Y3183D01* X17137Y3207D01* X17162Y3232D01* X17185Y3260D01* X17205Y3290D01* X17223Y3322D01* X17237Y3355D01* X17249Y3389D01* X17251Y3398D01* X17251Y3407D01* X17250Y3415D01* X17247Y3423D01* X17242Y3431D01* X17237Y3438D01* X17230Y3444D01* X17223Y3448D01* X17215Y3451D01* X17206Y3453D01* X17197Y3453D01* X17189Y3452D01* X17181Y3449D01* X17173Y3445D01* X17166Y3439D01* X17160Y3433D01* X17156Y3425D01* X17153Y3417D01* X17144Y3391D01* X17133Y3366D01* X17120Y3343D01* X17105Y3320D01* X17088Y3299D01* X17069Y3280D01* X17064Y3276D01* Y3724D01* X17065Y3723D01* X17084Y3704D01* X17102Y3683D01* X17117Y3661D01* X17131Y3637D01* X17142Y3613D01* X17151Y3587D01* X17155Y3579D01* X17159Y3572D01* X17165Y3565D01* X17172Y3560D01* X17180Y3556D01* X17188Y3553D01* X17197Y3552D01* X17205Y3552D01* X17214Y3554D01* X17222Y3557D01* X17229Y3562D01* X17236Y3568D01* X17241Y3575D01* X17245Y3582D01* X17248Y3591D01* X17249Y3599D01* X17249Y3608D01* X17247Y3617D01* X17235Y3651D01* X17220Y3683D01* X17202Y3715D01* X17181Y3744D01* X17157Y3772D01* X17132Y3797D01* X17104Y3820D01* X17074Y3840D01* X17064Y3846D01* Y5165D01* X17089Y5183D01* X17117Y5207D01* X17142Y5232D01* X17165Y5260D01* X17185Y5290D01* X17203Y5322D01* X17217Y5355D01* X17229Y5389D01* X17231Y5398D01* X17231Y5407D01* X17230Y5415D01* X17227Y5423D01* X17222Y5431D01* X17217Y5438D01* X17210Y5444D01* X17203Y5448D01* X17195Y5451D01* X17186Y5453D01* X17177Y5453D01* X17169Y5452D01* X17161Y5449D01* X17153Y5445D01* X17146Y5439D01* X17140Y5433D01* X17136Y5425D01* X17133Y5417D01* X17124Y5391D01* X17113Y5366D01* X17100Y5343D01* X17085Y5320D01* X17068Y5299D01* X17064Y5295D01* Y5704D01* X17064Y5704D01* X17082Y5683D01* X17097Y5661D01* X17111Y5637D01* X17122Y5613D01* X17131Y5587D01* X17135Y5579D01* X17139Y5572D01* X17145Y5565D01* X17152Y5560D01* X17160Y5556D01* X17168Y5553D01* X17177Y5552D01* X17185Y5552D01* X17194Y5554D01* X17202Y5557D01* X17209Y5562D01* X17216Y5568D01* X17221Y5575D01* X17225Y5582D01* X17228Y5591D01* X17229Y5599D01* X17229Y5608D01* X17227Y5617D01* X17215Y5651D01* X17200Y5683D01* X17182Y5715D01* X17161Y5744D01* X17137Y5772D01* X17112Y5797D01* X17084Y5820D01* X17064Y5834D01* Y7180D01* X17069Y7183D01* X17097Y7207D01* X17122Y7232D01* X17145Y7260D01* X17165Y7290D01* X17183Y7322D01* X17197Y7355D01* X17209Y7389D01* X17211Y7398D01* X17211Y7407D01* X17210Y7415D01* X17207Y7423D01* X17202Y7431D01* X17197Y7438D01* X17190Y7444D01* X17183Y7448D01* X17175Y7451D01* X17166Y7453D01* X17157Y7453D01* X17149Y7452D01* X17141Y7449D01* X17133Y7445D01* X17126Y7439D01* X17120Y7433D01* X17116Y7425D01* X17113Y7417D01* X17104Y7391D01* X17093Y7366D01* X17080Y7343D01* X17065Y7320D01* X17064Y7319D01* Y7680D01* X17077Y7661D01* X17091Y7637D01* X17102Y7613D01* X17111Y7587D01* X17115Y7579D01* X17119Y7572D01* X17125Y7565D01* X17132Y7560D01* X17140Y7556D01* X17148Y7553D01* X17157Y7552D01* X17165Y7552D01* X17174Y7554D01* X17182Y7557D01* X17189Y7562D01* X17196Y7568D01* X17201Y7575D01* X17205Y7582D01* X17208Y7591D01* X17209Y7599D01* X17209Y7608D01* X17207Y7617D01* X17195Y7651D01* X17180Y7683D01* X17162Y7715D01* X17141Y7744D01* X17117Y7772D01* X17092Y7797D01* X17064Y7820D01* Y9196D01* X17077Y9207D01* X17102Y9232D01* X17125Y9260D01* X17145Y9290D01* X17163Y9322D01* X17177Y9355D01* X17189Y9389D01* X17191Y9398D01* X17191Y9407D01* X17190Y9415D01* X17187Y9423D01* X17182Y9431D01* X17177Y9438D01* X17170Y9444D01* X17163Y9448D01* X17155Y9451D01* X17146Y9453D01* X17137Y9453D01* X17129Y9452D01* X17121Y9449D01* X17113Y9445D01* X17106Y9439D01* X17100Y9433D01* X17096Y9425D01* X17093Y9417D01* X17084Y9391D01* X17073Y9366D01* X17064Y9350D01* Y9650D01* X17071Y9637D01* X17082Y9613D01* X17091Y9587D01* X17095Y9579D01* X17099Y9572D01* X17105Y9565D01* X17112Y9560D01* X17120Y9556D01* X17128Y9553D01* X17137Y9552D01* X17145Y9552D01* X17154Y9554D01* X17162Y9557D01* X17169Y9562D01* X17176Y9568D01* X17181Y9575D01* X17185Y9582D01* X17188Y9591D01* X17189Y9599D01* X17189Y9608D01* X17187Y9617D01* X17175Y9651D01* X17160Y9683D01* X17142Y9715D01* X17121Y9744D01* X17097Y9772D01* X17072Y9797D01* X17064Y9804D01* Y11214D01* X17082Y11232D01* X17105Y11260D01* X17125Y11290D01* X17143Y11322D01* X17157Y11355D01* X17169Y11389D01* X17171Y11398D01* X17171Y11407D01* X17170Y11415D01* X17167Y11423D01* X17162Y11431D01* X17157Y11438D01* X17150Y11444D01* X17143Y11448D01* X17135Y11451D01* X17126Y11453D01* X17117Y11453D01* X17109Y11452D01* X17101Y11449D01* X17093Y11445D01* X17086Y11439D01* X17080Y11433D01* X17076Y11425D01* X17073Y11417D01* X17064Y11391D01* X17064Y11391D01* Y11608D01* X17071Y11587D01* X17075Y11579D01* X17079Y11572D01* X17085Y11565D01* X17092Y11560D01* X17100Y11556D01* X17108Y11553D01* X17117Y11552D01* X17125Y11552D01* X17134Y11554D01* X17142Y11557D01* X17149Y11562D01* X17156Y11568D01* X17161Y11575D01* X17165Y11582D01* X17168Y11591D01* X17169Y11599D01* X17169Y11608D01* X17167Y11617D01* X17155Y11651D01* X17140Y11683D01* X17122Y11715D01* X17101Y11744D01* X17077Y11772D01* X17064Y11785D01* Y13235D01* X17085Y13260D01* X17105Y13290D01* X17123Y13322D01* X17137Y13355D01* X17149Y13389D01* X17151Y13398D01* X17151Y13407D01* X17150Y13415D01* X17147Y13423D01* X17142Y13431D01* X17137Y13438D01* X17130Y13444D01* X17123Y13448D01* X17115Y13451D01* X17106Y13453D01* X17097Y13453D01* X17089Y13452D01* X17081Y13449D01* X17073Y13445D01* X17066Y13439D01* X17064Y13437D01* Y13567D01* X17065Y13565D01* X17072Y13560D01* X17080Y13556D01* X17088Y13553D01* X17097Y13552D01* X17105Y13552D01* X17114Y13554D01* X17122Y13557D01* X17129Y13562D01* X17136Y13568D01* X17141Y13575D01* X17145Y13582D01* X17148Y13591D01* X17149Y13599D01* X17149Y13608D01* X17147Y13617D01* X17135Y13651D01* X17120Y13683D01* X17102Y13715D01* X17081Y13744D01* X17064Y13764D01* Y15259D01* X17065Y15260D01* X17085Y15290D01* X17103Y15322D01* X17117Y15355D01* X17129Y15389D01* X17131Y15398D01* X17131Y15407D01* X17130Y15415D01* X17127Y15423D01* X17122Y15431D01* X17117Y15438D01* X17110Y15444D01* X17103Y15448D01* X17095Y15451D01* X17086Y15453D01* X17077Y15453D01* X17069Y15452D01* X17064Y15450D01* Y15555D01* X17068Y15553D01* X17077Y15552D01* X17085Y15552D01* X17094Y15554D01* X17102Y15557D01* X17109Y15562D01* X17116Y15568D01* X17121Y15575D01* X17125Y15582D01* X17128Y15591D01* X17129Y15599D01* X17129Y15608D01* X17127Y15617D01* X17115Y15651D01* X17100Y15683D01* X17082Y15715D01* X17064Y15740D01* Y17288D01* X17065Y17290D01* X17083Y17322D01* X17097Y17355D01* X17109Y17389D01* X17111Y17398D01* X17111Y17407D01* X17110Y17415D01* X17107Y17423D01* X17102Y17431D01* X17097Y17438D01* X17090Y17444D01* X17083Y17448D01* X17075Y17451D01* X17066Y17453D01* X17064D01* Y17552D01* X17065D01* X17074Y17554D01* X17082Y17557D01* X17089Y17562D01* X17096Y17568D01* X17101Y17575D01* X17105Y17582D01* X17108Y17591D01* X17109Y17599D01* X17109Y17608D01* X17107Y17617D01* X17095Y17651D01* X17080Y17683D01* X17064Y17711D01* Y19324D01* X17077Y19355D01* X17089Y19389D01* X17091Y19398D01* X17091Y19407D01* X17090Y19415D01* X17087Y19423D01* X17082Y19431D01* X17077Y19438D01* X17070Y19444D01* X17064Y19447D01* Y19559D01* X17069Y19562D01* X17076Y19568D01* X17081Y19575D01* X17085Y19582D01* X17088Y19591D01* X17089Y19599D01* X17089Y19608D01* X17087Y19617D01* X17075Y19651D01* X17064Y19674D01* Y21374D01* X17069Y21389D01* X17071Y21398D01* X17071Y21407D01* X17070Y21415D01* X17067Y21423D01* X17064Y21428D01* Y21580D01* X17065Y21582D01* X17068Y21591D01* X17069Y21599D01* X17069Y21608D01* X17067Y21617D01* X17064Y21625D01* Y40000D01* G37* G36* X18445D02*X18625D01* Y39881D01* X18615Y39884D01* X18606Y39886D01* X18597Y39886D01* X18589Y39885D01* X18581Y39882D01* X18573Y39878D01* X18566Y39872D01* X18560Y39865D01* X18556Y39858D01* X18553Y39850D01* X18551Y39841D01* X18551Y39833D01* X18552Y39824D01* X18555Y39816D01* X18559Y39808D01* X18565Y39801D01* X18572Y39796D01* X18579Y39791D01* X18587Y39788D01* X18613Y39779D01* X18625Y39774D01* Y39225D01* X18618Y39222D01* X18592Y39213D01* X18584Y39209D01* X18577Y39205D01* X18570Y39199D01* X18565Y39192D01* X18561Y39184D01* X18558Y39176D01* X18557Y39167D01* X18557Y39159D01* X18559Y39150D01* X18562Y39142D01* X18567Y39135D01* X18573Y39128D01* X18580Y39123D01* X18587Y39119D01* X18596Y39116D01* X18604Y39115D01* X18613Y39115D01* X18621Y39117D01* X18625Y39118D01* Y37886D01* X18617Y37886D01* X18609Y37885D01* X18601Y37882D01* X18593Y37878D01* X18586Y37872D01* X18580Y37865D01* X18576Y37858D01* X18573Y37850D01* X18571Y37841D01* X18571Y37833D01* X18572Y37824D01* X18575Y37816D01* X18579Y37808D01* X18585Y37801D01* X18592Y37796D01* X18599Y37791D01* X18607Y37788D01* X18625Y37782D01* Y37217D01* X18612Y37213D01* X18604Y37209D01* X18597Y37205D01* X18590Y37199D01* X18585Y37192D01* X18581Y37184D01* X18578Y37176D01* X18577Y37167D01* X18577Y37159D01* X18579Y37150D01* X18582Y37142D01* X18587Y37135D01* X18593Y37128D01* X18600Y37123D01* X18607Y37119D01* X18616Y37116D01* X18624Y37115D01* X18625D01* Y35883D01* X18621Y35882D01* X18613Y35878D01* X18606Y35872D01* X18600Y35865D01* X18596Y35858D01* X18593Y35850D01* X18591Y35841D01* X18591Y35833D01* X18592Y35824D01* X18595Y35816D01* X18599Y35808D01* X18605Y35801D01* X18612Y35796D01* X18619Y35791D01* X18625Y35789D01* Y35210D01* X18624Y35209D01* X18617Y35205D01* X18610Y35199D01* X18605Y35192D01* X18601Y35184D01* X18598Y35176D01* X18597Y35167D01* X18597Y35159D01* X18599Y35150D01* X18602Y35142D01* X18607Y35135D01* X18613Y35128D01* X18620Y35123D01* X18625Y35120D01* Y33871D01* X18620Y33865D01* X18616Y33858D01* X18613Y33850D01* X18611Y33841D01* X18611Y33833D01* X18612Y33824D01* X18615Y33816D01* X18619Y33808D01* X18625Y33801D01* X18625Y33801D01* Y33192D01* X18625Y33192D01* X18621Y33184D01* X18618Y33176D01* X18617Y33167D01* X18617Y33159D01* X18619Y33150D01* X18622Y33142D01* X18625Y33138D01* Y21859D01* X18622Y21864D01* X18616Y21871D01* X18609Y21876D01* X18602Y21880D01* X18593Y21883D01* X18585Y21884D01* X18576Y21884D01* X18568Y21882D01* X18533Y21870D01* X18501Y21855D01* X18469Y21837D01* X18445Y21820D01* Y23166D01* X18455Y23159D01* X18487Y23141D01* X18520Y23127D01* X18554Y23115D01* X18563Y23113D01* X18572Y23113D01* X18580Y23115D01* X18588Y23117D01* X18596Y23122D01* X18603Y23127D01* X18609Y23134D01* X18613Y23141D01* X18616Y23149D01* X18618Y23158D01* X18618Y23167D01* X18617Y23175D01* X18614Y23183D01* X18610Y23191D01* X18604Y23198D01* X18597Y23204D01* X18590Y23208D01* X18582Y23211D01* X18556Y23220D01* X18531Y23231D01* X18508Y23244D01* X18485Y23259D01* X18464Y23276D01* X18445Y23295D01* Y23704D01* X18460Y23719D01* X18481Y23737D01* X18503Y23752D01* X18527Y23766D01* X18551Y23777D01* X18577Y23786D01* X18585Y23790D01* X18592Y23794D01* X18599Y23800D01* X18604Y23807D01* X18608Y23815D01* X18611Y23823D01* X18612Y23832D01* X18612Y23840D01* X18610Y23849D01* X18607Y23857D01* X18602Y23864D01* X18596Y23871D01* X18589Y23876D01* X18582Y23880D01* X18573Y23883D01* X18565Y23884D01* X18556Y23884D01* X18548Y23882D01* X18513Y23870D01* X18481Y23855D01* X18449Y23837D01* X18445Y23834D01* Y25153D01* X18467Y25141D01* X18500Y25127D01* X18534Y25115D01* X18543Y25113D01* X18552Y25113D01* X18560Y25115D01* X18568Y25117D01* X18576Y25122D01* X18583Y25127D01* X18589Y25134D01* X18593Y25141D01* X18596Y25149D01* X18598Y25158D01* X18598Y25167D01* X18597Y25175D01* X18594Y25183D01* X18590Y25191D01* X18584Y25198D01* X18577Y25204D01* X18570Y25208D01* X18562Y25211D01* X18536Y25220D01* X18511Y25231D01* X18488Y25244D01* X18465Y25259D01* X18445Y25276D01* Y25723D01* X18461Y25737D01* X18483Y25752D01* X18507Y25766D01* X18531Y25777D01* X18557Y25786D01* X18565Y25790D01* X18572Y25794D01* X18579Y25800D01* X18584Y25807D01* X18588Y25815D01* X18591Y25823D01* X18592Y25832D01* X18592Y25840D01* X18590Y25849D01* X18587Y25857D01* X18582Y25864D01* X18576Y25871D01* X18569Y25876D01* X18562Y25880D01* X18553Y25883D01* X18545Y25884D01* X18536Y25884D01* X18528Y25882D01* X18493Y25870D01* X18461Y25855D01* X18445Y25846D01* Y27142D01* X18447Y27141D01* X18480Y27127D01* X18514Y27115D01* X18523Y27113D01* X18532Y27113D01* X18540Y27115D01* X18548Y27117D01* X18556Y27122D01* X18563Y27127D01* X18569Y27134D01* X18573Y27141D01* X18576Y27149D01* X18578Y27158D01* X18578Y27167D01* X18577Y27175D01* X18574Y27183D01* X18570Y27191D01* X18564Y27198D01* X18557Y27204D01* X18550Y27208D01* X18542Y27211D01* X18516Y27220D01* X18491Y27231D01* X18468Y27244D01* X18445Y27259D01* Y27740D01* X18463Y27752D01* X18487Y27766D01* X18511Y27777D01* X18537Y27786D01* X18545Y27790D01* X18552Y27794D01* X18559Y27800D01* X18564Y27807D01* X18568Y27815D01* X18571Y27823D01* X18572Y27832D01* X18572Y27840D01* X18570Y27849D01* X18567Y27857D01* X18562Y27864D01* X18556Y27871D01* X18549Y27876D01* X18542Y27880D01* X18533Y27883D01* X18525Y27884D01* X18516Y27884D01* X18508Y27882D01* X18473Y27870D01* X18445Y27857D01* Y29133D01* X18460Y29127D01* X18494Y29115D01* X18503Y29113D01* X18512Y29113D01* X18520Y29115D01* X18528Y29117D01* X18536Y29122D01* X18543Y29127D01* X18549Y29134D01* X18553Y29141D01* X18556Y29149D01* X18558Y29158D01* X18558Y29167D01* X18557Y29175D01* X18554Y29183D01* X18550Y29191D01* X18544Y29198D01* X18537Y29204D01* X18530Y29208D01* X18522Y29211D01* X18496Y29220D01* X18471Y29231D01* X18448Y29244D01* X18445Y29246D01* Y29754D01* X18467Y29766D01* X18491Y29777D01* X18517Y29786D01* X18525Y29790D01* X18532Y29794D01* X18539Y29800D01* X18544Y29807D01* X18548Y29815D01* X18551Y29823D01* X18552Y29832D01* X18552Y29840D01* X18550Y29849D01* X18547Y29857D01* X18542Y29864D01* X18536Y29871D01* X18529Y29876D01* X18522Y29880D01* X18513Y29883D01* X18505Y29884D01* X18496Y29884D01* X18488Y29882D01* X18453Y29870D01* X18445Y29866D01* Y31125D01* X18474Y31115D01* X18483Y31113D01* X18492Y31113D01* X18500Y31115D01* X18508Y31117D01* X18516Y31122D01* X18523Y31127D01* X18529Y31134D01* X18533Y31141D01* X18536Y31149D01* X18538Y31158D01* X18538Y31167D01* X18537Y31175D01* X18534Y31183D01* X18530Y31191D01* X18524Y31198D01* X18517Y31204D01* X18510Y31208D01* X18502Y31211D01* X18476Y31220D01* X18451Y31231D01* X18445Y31234D01* Y31765D01* X18447Y31766D01* X18471Y31777D01* X18497Y31786D01* X18505Y31790D01* X18512Y31794D01* X18519Y31800D01* X18524Y31807D01* X18528Y31815D01* X18531Y31823D01* X18532Y31832D01* X18532Y31840D01* X18530Y31849D01* X18527Y31857D01* X18522Y31864D01* X18516Y31871D01* X18509Y31876D01* X18502Y31880D01* X18493Y31883D01* X18485Y31884D01* X18476Y31884D01* X18468Y31882D01* X18445Y31874D01* Y33118D01* X18454Y33115D01* X18463Y33113D01* X18472Y33113D01* X18480Y33115D01* X18488Y33117D01* X18496Y33122D01* X18503Y33127D01* X18509Y33134D01* X18513Y33141D01* X18516Y33149D01* X18518Y33158D01* X18518Y33167D01* X18517Y33175D01* X18514Y33183D01* X18510Y33191D01* X18504Y33198D01* X18497Y33204D01* X18490Y33208D01* X18482Y33211D01* X18456Y33220D01* X18445Y33225D01* Y33775D01* X18451Y33777D01* X18477Y33786D01* X18485Y33790D01* X18492Y33794D01* X18499Y33800D01* X18504Y33807D01* X18508Y33815D01* X18511Y33823D01* X18512Y33832D01* X18512Y33840D01* X18510Y33849D01* X18507Y33857D01* X18502Y33864D01* X18496Y33871D01* X18489Y33876D01* X18482Y33880D01* X18473Y33883D01* X18465Y33884D01* X18456Y33884D01* X18448Y33882D01* X18445Y33881D01* Y35113D01* X18452Y35113D01* X18460Y35115D01* X18468Y35117D01* X18476Y35122D01* X18483Y35127D01* X18489Y35134D01* X18493Y35141D01* X18496Y35149D01* X18498Y35158D01* X18498Y35167D01* X18497Y35175D01* X18494Y35183D01* X18490Y35191D01* X18484Y35198D01* X18477Y35204D01* X18470Y35208D01* X18462Y35211D01* X18445Y35217D01* Y35782D01* X18457Y35786D01* X18465Y35790D01* X18472Y35794D01* X18479Y35800D01* X18484Y35807D01* X18488Y35815D01* X18491Y35823D01* X18492Y35832D01* X18492Y35840D01* X18490Y35849D01* X18487Y35857D01* X18482Y35864D01* X18476Y35871D01* X18469Y35876D01* X18462Y35880D01* X18453Y35883D01* X18445Y35884D01* Y37116D01* X18448Y37117D01* X18456Y37122D01* X18463Y37127D01* X18469Y37134D01* X18473Y37141D01* X18476Y37149D01* X18478Y37158D01* X18478Y37167D01* X18477Y37175D01* X18474Y37183D01* X18470Y37191D01* X18464Y37198D01* X18457Y37204D01* X18450Y37208D01* X18445Y37210D01* Y37790D01* X18452Y37794D01* X18459Y37800D01* X18464Y37807D01* X18468Y37815D01* X18471Y37823D01* X18472Y37832D01* X18472Y37840D01* X18470Y37849D01* X18467Y37857D01* X18462Y37864D01* X18456Y37871D01* X18449Y37876D01* X18445Y37878D01* Y39130D01* X18449Y39134D01* X18453Y39141D01* X18456Y39149D01* X18458Y39158D01* X18458Y39167D01* X18457Y39175D01* X18454Y39183D01* X18450Y39191D01* X18445Y39197D01* Y39809D01* X18448Y39815D01* X18451Y39823D01* X18452Y39832D01* X18452Y39840D01* X18450Y39849D01* X18447Y39857D01* X18445Y39859D01* Y40000D01* G37* G36* X18625Y0D02*X18445D01* Y7374D01* X18454Y7349D01* X18469Y7316D01* X18487Y7284D01* X18508Y7255D01* X18532Y7227D01* X18557Y7202D01* X18585Y7179D01* X18615Y7159D01* X18625Y7153D01* Y5834D01* X18600Y5816D01* X18572Y5793D01* X18547Y5767D01* X18524Y5739D01* X18504Y5709D01* X18486Y5677D01* X18472Y5644D01* X18460Y5610D01* X18458Y5601D01* X18458Y5593D01* X18459Y5584D01* X18462Y5576D01* X18467Y5568D01* X18472Y5561D01* X18479Y5556D01* X18486Y5551D01* X18494Y5548D01* X18503Y5546D01* X18512Y5546D01* X18520Y5547D01* X18528Y5550D01* X18536Y5555D01* X18543Y5560D01* X18549Y5567D01* X18553Y5574D01* X18556Y5582D01* X18565Y5608D01* X18576Y5633D01* X18589Y5657D01* X18604Y5679D01* X18621Y5700D01* X18625Y5704D01* Y5295D01* X18625Y5295D01* X18607Y5316D01* X18592Y5338D01* X18578Y5362D01* X18567Y5386D01* X18558Y5412D01* X18554Y5420D01* X18550Y5427D01* X18544Y5434D01* X18537Y5439D01* X18529Y5443D01* X18521Y5446D01* X18512Y5447D01* X18504Y5447D01* X18495Y5445D01* X18487Y5442D01* X18480Y5437D01* X18473Y5431D01* X18468Y5424D01* X18464Y5417D01* X18461Y5409D01* X18460Y5400D01* X18460Y5391D01* X18462Y5383D01* X18474Y5349D01* X18489Y5316D01* X18507Y5284D01* X18528Y5255D01* X18552Y5227D01* X18577Y5202D01* X18605Y5179D01* X18625Y5166D01* Y3820D01* X18620Y3816D01* X18592Y3793D01* X18567Y3767D01* X18544Y3739D01* X18524Y3709D01* X18506Y3677D01* X18492Y3644D01* X18480Y3610D01* X18478Y3601D01* X18478Y3593D01* X18479Y3584D01* X18482Y3576D01* X18487Y3568D01* X18492Y3561D01* X18499Y3556D01* X18506Y3551D01* X18514Y3548D01* X18523Y3546D01* X18532Y3546D01* X18540Y3547D01* X18548Y3550D01* X18556Y3555D01* X18563Y3560D01* X18569Y3567D01* X18573Y3574D01* X18576Y3582D01* X18585Y3608D01* X18596Y3633D01* X18609Y3657D01* X18624Y3679D01* X18625Y3680D01* Y3319D01* X18612Y3338D01* X18598Y3362D01* X18587Y3386D01* X18578Y3412D01* X18574Y3420D01* X18570Y3427D01* X18564Y3434D01* X18557Y3439D01* X18549Y3443D01* X18541Y3446D01* X18532Y3447D01* X18524Y3447D01* X18515Y3445D01* X18507Y3442D01* X18500Y3437D01* X18493Y3431D01* X18488Y3424D01* X18484Y3417D01* X18481Y3409D01* X18480Y3400D01* X18480Y3391D01* X18482Y3383D01* X18494Y3349D01* X18509Y3316D01* X18527Y3284D01* X18548Y3255D01* X18572Y3227D01* X18597Y3202D01* X18625Y3179D01* Y1804D01* X18612Y1793D01* X18587Y1767D01* X18564Y1739D01* X18544Y1709D01* X18526Y1677D01* X18512Y1644D01* X18500Y1610D01* X18498Y1601D01* X18498Y1593D01* X18499Y1584D01* X18502Y1576D01* X18507Y1568D01* X18512Y1561D01* X18519Y1556D01* X18526Y1551D01* X18534Y1548D01* X18543Y1546D01* X18552Y1546D01* X18560Y1547D01* X18568Y1550D01* X18576Y1555D01* X18583Y1560D01* X18589Y1567D01* X18593Y1574D01* X18596Y1582D01* X18605Y1608D01* X18616Y1633D01* X18625Y1650D01* Y1349D01* X18618Y1362D01* X18607Y1386D01* X18598Y1412D01* X18594Y1420D01* X18590Y1427D01* X18584Y1434D01* X18577Y1439D01* X18569Y1443D01* X18561Y1446D01* X18552Y1447D01* X18544Y1447D01* X18535Y1445D01* X18527Y1442D01* X18520Y1437D01* X18513Y1431D01* X18508Y1424D01* X18504Y1417D01* X18501Y1409D01* X18500Y1400D01* X18500Y1391D01* X18502Y1383D01* X18514Y1349D01* X18529Y1316D01* X18547Y1284D01* X18568Y1255D01* X18592Y1227D01* X18617Y1202D01* X18625Y1196D01* Y0D01* G37* G36* Y7276D02*X18624Y7276D01* X18605Y7295D01* X18587Y7316D01* X18572Y7338D01* X18558Y7362D01* X18547Y7386D01* X18538Y7412D01* X18534Y7420D01* X18530Y7427D01* X18524Y7434D01* X18517Y7439D01* X18509Y7443D01* X18501Y7446D01* X18492Y7447D01* X18484Y7447D01* X18475Y7445D01* X18467Y7442D01* X18460Y7437D01* X18453Y7431D01* X18448Y7424D01* X18445Y7419D01* Y7571D01* X18447Y7568D01* X18452Y7561D01* X18459Y7556D01* X18466Y7551D01* X18474Y7548D01* X18483Y7546D01* X18492Y7546D01* X18500Y7547D01* X18508Y7550D01* X18516Y7555D01* X18523Y7560D01* X18529Y7567D01* X18533Y7574D01* X18536Y7582D01* X18545Y7608D01* X18556Y7633D01* X18569Y7657D01* X18584Y7679D01* X18601Y7700D01* X18620Y7719D01* X18625Y7723D01* Y7276D01* G37* G36* Y7846D02*X18609Y7837D01* X18580Y7816D01* X18552Y7793D01* X18527Y7767D01* X18504Y7739D01* X18484Y7709D01* X18466Y7677D01* X18452Y7644D01* X18445Y7625D01* Y9325D01* X18449Y9316D01* X18467Y9284D01* X18488Y9255D01* X18512Y9227D01* X18537Y9202D01* X18565Y9179D01* X18595Y9159D01* X18625Y9142D01* Y7846D01* G37* G36* Y9259D02*X18625Y9259D01* X18604Y9276D01* X18585Y9295D01* X18567Y9316D01* X18552Y9338D01* X18538Y9362D01* X18527Y9386D01* X18518Y9412D01* X18514Y9420D01* X18510Y9427D01* X18504Y9434D01* X18497Y9439D01* X18489Y9443D01* X18481Y9446D01* X18472Y9447D01* X18464Y9447D01* X18455Y9445D01* X18447Y9442D01* X18445Y9441D01* Y9552D01* X18446Y9551D01* X18454Y9548D01* X18463Y9546D01* X18472Y9546D01* X18480Y9547D01* X18488Y9550D01* X18496Y9555D01* X18503Y9560D01* X18509Y9567D01* X18513Y9574D01* X18516Y9582D01* X18525Y9608D01* X18536Y9633D01* X18549Y9657D01* X18564Y9679D01* X18581Y9700D01* X18600Y9719D01* X18621Y9737D01* X18625Y9740D01* Y9259D01* G37* G36* Y9857D02*X18621Y9855D01* X18589Y9837D01* X18560Y9816D01* X18532Y9793D01* X18507Y9767D01* X18484Y9739D01* X18464Y9709D01* X18446Y9677D01* X18445Y9675D01* Y11288D01* X18447Y11284D01* X18468Y11255D01* X18492Y11227D01* X18517Y11202D01* X18545Y11179D01* X18575Y11159D01* X18607Y11141D01* X18625Y11133D01* Y9857D01* G37* G36* Y11246D02*X18605Y11259D01* X18584Y11276D01* X18565Y11295D01* X18547Y11316D01* X18532Y11338D01* X18518Y11362D01* X18507Y11386D01* X18498Y11412D01* X18494Y11420D01* X18490Y11427D01* X18484Y11434D01* X18477Y11439D01* X18469Y11443D01* X18461Y11446D01* X18452Y11447D01* X18445Y11447D01* Y11546D01* X18452Y11546D01* X18460Y11547D01* X18468Y11550D01* X18476Y11555D01* X18483Y11560D01* X18489Y11567D01* X18493Y11574D01* X18496Y11582D01* X18505Y11608D01* X18516Y11633D01* X18529Y11657D01* X18544Y11679D01* X18561Y11700D01* X18580Y11719D01* X18601Y11737D01* X18623Y11752D01* X18625Y11754D01* Y11246D01* G37* G36* Y11866D02*X18601Y11855D01* X18569Y11837D01* X18540Y11816D01* X18512Y11793D01* X18487Y11767D01* X18464Y11739D01* X18445Y11711D01* Y13259D01* X18448Y13255D01* X18472Y13227D01* X18497Y13202D01* X18525Y13179D01* X18555Y13159D01* X18587Y13141D01* X18620Y13127D01* X18625Y13125D01* Y11866D01* G37* G36* Y13234D02*X18608Y13244D01* X18585Y13259D01* X18564Y13276D01* X18545Y13295D01* X18527Y13316D01* X18512Y13338D01* X18498Y13362D01* X18487Y13386D01* X18478Y13412D01* X18474Y13420D01* X18470Y13427D01* X18464Y13434D01* X18457Y13439D01* X18449Y13443D01* X18445Y13445D01* Y13549D01* X18448Y13550D01* X18456Y13555D01* X18463Y13560D01* X18469Y13567D01* X18473Y13574D01* X18476Y13582D01* X18485Y13608D01* X18496Y13633D01* X18509Y13657D01* X18524Y13679D01* X18541Y13700D01* X18560Y13719D01* X18581Y13737D01* X18603Y13752D01* X18625Y13765D01* Y13234D01* G37* G36* Y13874D02*X18613Y13870D01* X18581Y13855D01* X18549Y13837D01* X18520Y13816D01* X18492Y13793D01* X18467Y13767D01* X18445Y13740D01* Y15235D01* X18452Y15227D01* X18477Y15202D01* X18505Y15179D01* X18535Y15159D01* X18567Y15141D01* X18600Y15127D01* X18625Y15118D01* Y13874D01* G37* G36* Y15225D02*X18611Y15231D01* X18588Y15244D01* X18565Y15259D01* X18544Y15276D01* X18525Y15295D01* X18507Y15316D01* X18492Y15338D01* X18478Y15362D01* X18467Y15386D01* X18458Y15412D01* X18454Y15420D01* X18450Y15427D01* X18445Y15432D01* Y15563D01* X18449Y15567D01* X18453Y15574D01* X18456Y15582D01* X18465Y15608D01* X18476Y15633D01* X18489Y15657D01* X18504Y15679D01* X18521Y15700D01* X18540Y15719D01* X18561Y15737D01* X18583Y15752D01* X18607Y15766D01* X18625Y15775D01* Y15225D01* G37* G36* Y15881D02*X18593Y15870D01* X18561Y15855D01* X18529Y15837D01* X18500Y15816D01* X18472Y15793D01* X18447Y15767D01* X18445Y15765D01* Y17214D01* X18457Y17202D01* X18485Y17179D01* X18515Y17159D01* X18547Y17141D01* X18580Y17127D01* X18614Y17115D01* X18623Y17113D01* X18625D01* Y15881D01* G37* G36* Y17217D02*X18616Y17220D01* X18591Y17231D01* X18568Y17244D01* X18545Y17259D01* X18524Y17276D01* X18505Y17295D01* X18487Y17316D01* X18472Y17338D01* X18458Y17362D01* X18447Y17386D01* X18445Y17391D01* Y17609D01* X18456Y17633D01* X18469Y17657D01* X18484Y17679D01* X18501Y17700D01* X18520Y17719D01* X18541Y17737D01* X18563Y17752D01* X18587Y17766D01* X18611Y17777D01* X18625Y17782D01* Y17217D01* G37* G36* Y17884D02*X18625Y17884D01* X18616Y17884D01* X18608Y17882D01* X18573Y17870D01* X18541Y17855D01* X18509Y17837D01* X18480Y17816D01* X18452Y17793D01* X18445Y17785D01* Y19196D01* X18465Y19179D01* X18495Y19159D01* X18527Y19141D01* X18560Y19127D01* X18594Y19115D01* X18603Y19113D01* X18612Y19113D01* X18620Y19115D01* X18625Y19116D01* Y17884D01* G37* G36* Y19210D02*X18622Y19211D01* X18596Y19220D01* X18571Y19231D01* X18548Y19244D01* X18525Y19259D01* X18504Y19276D01* X18485Y19295D01* X18467Y19316D01* X18452Y19338D01* X18445Y19349D01* Y19650D01* X18449Y19657D01* X18464Y19679D01* X18481Y19700D01* X18500Y19719D01* X18521Y19737D01* X18543Y19752D01* X18567Y19766D01* X18591Y19777D01* X18617Y19786D01* X18625Y19790D01* X18625Y19790D01* Y19210D01* G37* G36* Y19878D02*X18622Y19880D01* X18613Y19883D01* X18605Y19884D01* X18596Y19884D01* X18588Y19882D01* X18553Y19870D01* X18521Y19855D01* X18489Y19837D01* X18460Y19816D01* X18445Y19804D01* Y21179D01* X18445Y21179D01* X18475Y21159D01* X18507Y21141D01* X18540Y21127D01* X18574Y21115D01* X18583Y21113D01* X18592Y21113D01* X18600Y21115D01* X18608Y21117D01* X18616Y21122D01* X18623Y21127D01* X18625Y21130D01* Y19878D01* G37* G36* Y21197D02*X18624Y21198D01* X18617Y21204D01* X18610Y21208D01* X18602Y21211D01* X18576Y21220D01* X18551Y21231D01* X18528Y21244D01* X18505Y21259D01* X18484Y21276D01* X18465Y21295D01* X18447Y21316D01* X18445Y21319D01* Y21680D01* X18461Y21700D01* X18480Y21719D01* X18501Y21737D01* X18523Y21752D01* X18547Y21766D01* X18571Y21777D01* X18597Y21786D01* X18605Y21790D01* X18612Y21794D01* X18619Y21800D01* X18624Y21807D01* X18625Y21809D01* Y21197D01* G37* G36* Y40000D02*X18884D01* Y39625D01* X18875Y39651D01* X18860Y39683D01* X18842Y39715D01* X18821Y39744D01* X18797Y39772D01* X18772Y39797D01* X18744Y39820D01* X18714Y39840D01* X18682Y39858D01* X18649Y39873D01* X18625Y39881D01* Y40000D01* G37* G36* Y39774D02*X18638Y39768D01* X18661Y39755D01* X18684Y39740D01* X18705Y39723D01* X18724Y39704D01* X18742Y39683D01* X18757Y39661D01* X18771Y39637D01* X18782Y39613D01* X18791Y39587D01* X18795Y39579D01* X18799Y39572D01* X18805Y39565D01* X18812Y39560D01* X18820Y39556D01* X18828Y39553D01* X18837Y39552D01* X18845Y39552D01* X18854Y39554D01* X18862Y39557D01* X18869Y39562D01* X18876Y39568D01* X18881Y39575D01* X18884Y39580D01* Y39428D01* X18882Y39431D01* X18877Y39438D01* X18870Y39444D01* X18863Y39448D01* X18855Y39451D01* X18846Y39453D01* X18837Y39453D01* X18829Y39452D01* X18821Y39449D01* X18813Y39445D01* X18806Y39439D01* X18800Y39433D01* X18796Y39425D01* X18793Y39417D01* X18784Y39391D01* X18773Y39366D01* X18760Y39343D01* X18745Y39320D01* X18728Y39299D01* X18709Y39280D01* X18688Y39262D01* X18666Y39247D01* X18642Y39233D01* X18625Y39225D01* Y39774D01* G37* G36* Y39118D02*X18656Y39129D01* X18688Y39144D01* X18720Y39162D01* X18749Y39183D01* X18777Y39207D01* X18802Y39232D01* X18825Y39260D01* X18845Y39290D01* X18863Y39322D01* X18877Y39355D01* X18884Y39374D01* Y37674D01* X18880Y37683D01* X18862Y37715D01* X18841Y37744D01* X18817Y37772D01* X18792Y37797D01* X18764Y37820D01* X18734Y37840D01* X18702Y37858D01* X18669Y37873D01* X18635Y37884D01* X18626Y37886D01* X18625D01* Y39118D01* G37* G36* Y37782D02*X18633Y37779D01* X18658Y37768D01* X18681Y37755D01* X18704Y37740D01* X18725Y37723D01* X18744Y37704D01* X18762Y37683D01* X18777Y37661D01* X18791Y37637D01* X18802Y37613D01* X18811Y37587D01* X18815Y37579D01* X18819Y37572D01* X18825Y37565D01* X18832Y37560D01* X18840Y37556D01* X18848Y37553D01* X18857Y37552D01* X18865Y37552D01* X18874Y37554D01* X18882Y37557D01* X18884Y37559D01* Y37447D01* X18883Y37448D01* X18875Y37451D01* X18866Y37453D01* X18857Y37453D01* X18849Y37452D01* X18841Y37449D01* X18833Y37445D01* X18826Y37439D01* X18820Y37433D01* X18816Y37425D01* X18813Y37417D01* X18804Y37391D01* X18793Y37366D01* X18780Y37343D01* X18765Y37320D01* X18748Y37299D01* X18729Y37280D01* X18708Y37262D01* X18686Y37247D01* X18662Y37233D01* X18638Y37222D01* X18625Y37217D01* Y37782D01* G37* G36* Y37115D02*X18633Y37115D01* X18641Y37117D01* X18676Y37129D01* X18708Y37144D01* X18740Y37162D01* X18769Y37183D01* X18797Y37207D01* X18822Y37232D01* X18845Y37260D01* X18865Y37290D01* X18883Y37322D01* X18884Y37324D01* Y35711D01* X18882Y35715D01* X18861Y35744D01* X18837Y35772D01* X18812Y35797D01* X18784Y35820D01* X18754Y35840D01* X18722Y35858D01* X18689Y35873D01* X18655Y35884D01* X18646Y35886D01* X18637Y35886D01* X18629Y35885D01* X18625Y35883D01* Y37115D01* G37* G36* Y35789D02*X18627Y35788D01* X18653Y35779D01* X18678Y35768D01* X18701Y35755D01* X18724Y35740D01* X18745Y35723D01* X18764Y35704D01* X18782Y35683D01* X18797Y35661D01* X18811Y35637D01* X18822Y35613D01* X18831Y35587D01* X18835Y35579D01* X18839Y35572D01* X18845Y35565D01* X18852Y35560D01* X18860Y35556D01* X18868Y35553D01* X18877Y35552D01* X18884Y35552D01* Y35453D01* X18877Y35453D01* X18869Y35452D01* X18861Y35449D01* X18853Y35445D01* X18846Y35439D01* X18840Y35433D01* X18836Y35425D01* X18833Y35417D01* X18824Y35391D01* X18813Y35366D01* X18800Y35343D01* X18785Y35320D01* X18768Y35299D01* X18749Y35280D01* X18728Y35262D01* X18706Y35247D01* X18682Y35233D01* X18658Y35222D01* X18632Y35213D01* X18625Y35210D01* Y35789D01* G37* G36* Y35120D02*X18627Y35119D01* X18636Y35116D01* X18644Y35115D01* X18653Y35115D01* X18661Y35117D01* X18696Y35129D01* X18728Y35144D01* X18760Y35162D01* X18789Y35183D01* X18817Y35207D01* X18842Y35232D01* X18865Y35260D01* X18884Y35288D01* Y33740D01* X18881Y33744D01* X18857Y33772D01* X18832Y33797D01* X18804Y33820D01* X18774Y33840D01* X18742Y33858D01* X18709Y33873D01* X18675Y33884D01* X18666Y33886D01* X18657Y33886D01* X18649Y33885D01* X18641Y33882D01* X18633Y33878D01* X18626Y33872D01* X18625Y33871D01* Y35120D01* G37* G36* Y33801D02*X18632Y33796D01* X18639Y33791D01* X18647Y33788D01* X18673Y33779D01* X18698Y33768D01* X18721Y33755D01* X18744Y33740D01* X18765Y33723D01* X18784Y33704D01* X18802Y33683D01* X18817Y33661D01* X18831Y33637D01* X18842Y33613D01* X18851Y33587D01* X18855Y33579D01* X18859Y33572D01* X18865Y33565D01* X18872Y33560D01* X18880Y33556D01* X18884Y33555D01* Y33450D01* X18881Y33449D01* X18873Y33445D01* X18866Y33439D01* X18860Y33433D01* X18856Y33425D01* X18853Y33417D01* X18844Y33391D01* X18833Y33366D01* X18820Y33343D01* X18805Y33320D01* X18788Y33299D01* X18769Y33280D01* X18748Y33262D01* X18726Y33247D01* X18702Y33233D01* X18678Y33222D01* X18652Y33213D01* X18644Y33209D01* X18637Y33205D01* X18630Y33199D01* X18625Y33192D01* Y33801D01* G37* G36* Y33138D02*X18627Y33135D01* X18633Y33128D01* X18640Y33123D01* X18647Y33119D01* X18656Y33116D01* X18664Y33115D01* X18673Y33115D01* X18681Y33117D01* X18716Y33129D01* X18748Y33144D01* X18780Y33162D01* X18809Y33183D01* X18837Y33207D01* X18862Y33232D01* X18884Y33259D01* Y31764D01* X18877Y31772D01* X18852Y31797D01* X18824Y31820D01* X18794Y31840D01* X18762Y31858D01* X18729Y31873D01* X18695Y31884D01* X18686Y31886D01* X18677Y31886D01* X18669Y31885D01* X18661Y31882D01* X18653Y31878D01* X18646Y31872D01* X18640Y31865D01* X18636Y31858D01* X18633Y31850D01* X18631Y31841D01* X18631Y31833D01* X18632Y31824D01* X18635Y31816D01* X18639Y31808D01* X18645Y31801D01* X18652Y31796D01* X18659Y31791D01* X18667Y31788D01* X18693Y31779D01* X18718Y31768D01* X18741Y31755D01* X18764Y31740D01* X18785Y31723D01* X18804Y31704D01* X18822Y31683D01* X18837Y31661D01* X18851Y31637D01* X18862Y31613D01* X18871Y31587D01* X18875Y31579D01* X18879Y31572D01* X18884Y31567D01* Y31437D01* X18880Y31433D01* X18876Y31425D01* X18873Y31417D01* X18864Y31391D01* X18853Y31366D01* X18840Y31343D01* X18825Y31320D01* X18808Y31299D01* X18789Y31280D01* X18768Y31262D01* X18746Y31247D01* X18722Y31233D01* X18698Y31222D01* X18672Y31213D01* X18664Y31209D01* X18657Y31205D01* X18650Y31199D01* X18645Y31192D01* X18641Y31184D01* X18638Y31176D01* X18637Y31167D01* X18637Y31159D01* X18639Y31150D01* X18642Y31142D01* X18647Y31135D01* X18653Y31128D01* X18660Y31123D01* X18667Y31119D01* X18676Y31116D01* X18684Y31115D01* X18693Y31115D01* X18701Y31117D01* X18736Y31129D01* X18768Y31144D01* X18800Y31162D01* X18829Y31183D01* X18857Y31207D01* X18882Y31232D01* X18884Y31235D01* Y29785D01* X18872Y29797D01* X18844Y29820D01* X18814Y29840D01* X18782Y29858D01* X18749Y29873D01* X18715Y29884D01* X18706Y29886D01* X18697Y29886D01* X18689Y29885D01* X18681Y29882D01* X18673Y29878D01* X18666Y29872D01* X18660Y29865D01* X18656Y29858D01* X18653Y29850D01* X18651Y29841D01* X18651Y29833D01* X18652Y29824D01* X18655Y29816D01* X18659Y29808D01* X18665Y29801D01* X18672Y29796D01* X18679Y29791D01* X18687Y29788D01* X18713Y29779D01* X18738Y29768D01* X18761Y29755D01* X18784Y29740D01* X18805Y29723D01* X18824Y29704D01* X18842Y29683D01* X18857Y29661D01* X18871Y29637D01* X18882Y29613D01* X18884Y29608D01* Y29391D01* X18873Y29366D01* X18860Y29343D01* X18845Y29320D01* X18828Y29299D01* X18809Y29280D01* X18788Y29262D01* X18766Y29247D01* X18742Y29233D01* X18718Y29222D01* X18692Y29213D01* X18684Y29209D01* X18677Y29205D01* X18670Y29199D01* X18665Y29192D01* X18661Y29184D01* X18658Y29176D01* X18657Y29167D01* X18657Y29159D01* X18659Y29150D01* X18662Y29142D01* X18667Y29135D01* X18673Y29128D01* X18680Y29123D01* X18687Y29119D01* X18696Y29116D01* X18704Y29115D01* X18713Y29115D01* X18721Y29117D01* X18756Y29129D01* X18788Y29144D01* X18820Y29162D01* X18849Y29183D01* X18877Y29207D01* X18884Y29214D01* Y27804D01* X18864Y27820D01* X18834Y27840D01* X18802Y27858D01* X18769Y27873D01* X18735Y27884D01* X18726Y27886D01* X18717Y27886D01* X18709Y27885D01* X18701Y27882D01* X18693Y27878D01* X18686Y27872D01* X18680Y27865D01* X18676Y27858D01* X18673Y27850D01* X18671Y27841D01* X18671Y27833D01* X18672Y27824D01* X18675Y27816D01* X18679Y27808D01* X18685Y27801D01* X18692Y27796D01* X18699Y27791D01* X18707Y27788D01* X18733Y27779D01* X18758Y27768D01* X18781Y27755D01* X18804Y27740D01* X18825Y27723D01* X18844Y27704D01* X18862Y27683D01* X18877Y27661D01* X18884Y27650D01* Y27350D01* X18880Y27343D01* X18865Y27320D01* X18848Y27299D01* X18829Y27280D01* X18808Y27262D01* X18786Y27247D01* X18762Y27233D01* X18738Y27222D01* X18712Y27213D01* X18704Y27209D01* X18697Y27205D01* X18690Y27199D01* X18685Y27192D01* X18681Y27184D01* X18678Y27176D01* X18677Y27167D01* X18677Y27159D01* X18679Y27150D01* X18682Y27142D01* X18687Y27135D01* X18693Y27128D01* X18700Y27123D01* X18707Y27119D01* X18716Y27116D01* X18724Y27115D01* X18733Y27115D01* X18741Y27117D01* X18776Y27129D01* X18808Y27144D01* X18840Y27162D01* X18869Y27183D01* X18884Y27196D01* Y25820D01* X18884Y25820D01* X18854Y25840D01* X18822Y25858D01* X18789Y25873D01* X18755Y25884D01* X18746Y25886D01* X18737Y25886D01* X18729Y25885D01* X18721Y25882D01* X18713Y25878D01* X18706Y25872D01* X18700Y25865D01* X18696Y25858D01* X18693Y25850D01* X18691Y25841D01* X18691Y25833D01* X18692Y25824D01* X18695Y25816D01* X18699Y25808D01* X18705Y25801D01* X18712Y25796D01* X18719Y25791D01* X18727Y25788D01* X18753Y25779D01* X18778Y25768D01* X18801Y25755D01* X18824Y25740D01* X18845Y25723D01* X18864Y25704D01* X18882Y25683D01* X18884Y25680D01* Y25319D01* X18868Y25299D01* X18849Y25280D01* X18828Y25262D01* X18806Y25247D01* X18782Y25233D01* X18758Y25222D01* X18732Y25213D01* X18724Y25209D01* X18717Y25205D01* X18710Y25199D01* X18705Y25192D01* X18701Y25184D01* X18698Y25176D01* X18697Y25167D01* X18697Y25159D01* X18699Y25150D01* X18702Y25142D01* X18707Y25135D01* X18713Y25128D01* X18720Y25123D01* X18727Y25119D01* X18736Y25116D01* X18744Y25115D01* X18753Y25115D01* X18761Y25117D01* X18796Y25129D01* X18828Y25144D01* X18860Y25162D01* X18884Y25180D01* Y23834D01* X18874Y23840D01* X18842Y23858D01* X18809Y23873D01* X18775Y23884D01* X18766Y23886D01* X18757Y23886D01* X18749Y23885D01* X18741Y23882D01* X18733Y23878D01* X18726Y23872D01* X18720Y23865D01* X18716Y23858D01* X18713Y23850D01* X18711Y23841D01* X18711Y23833D01* X18712Y23824D01* X18715Y23816D01* X18719Y23808D01* X18725Y23801D01* X18732Y23796D01* X18739Y23791D01* X18747Y23788D01* X18773Y23779D01* X18798Y23768D01* X18821Y23755D01* X18844Y23740D01* X18865Y23723D01* X18884Y23704D01* Y23295D01* X18869Y23280D01* X18848Y23262D01* X18826Y23247D01* X18802Y23233D01* X18778Y23222D01* X18752Y23213D01* X18744Y23209D01* X18737Y23205D01* X18730Y23199D01* X18725Y23192D01* X18721Y23184D01* X18718Y23176D01* X18717Y23167D01* X18717Y23159D01* X18719Y23150D01* X18722Y23142D01* X18727Y23135D01* X18733Y23128D01* X18740Y23123D01* X18747Y23119D01* X18756Y23116D01* X18764Y23115D01* X18773Y23115D01* X18781Y23117D01* X18816Y23129D01* X18848Y23144D01* X18880Y23162D01* X18884Y23165D01* Y21846D01* X18862Y21858D01* X18829Y21873D01* X18795Y21884D01* X18786Y21886D01* X18777Y21886D01* X18769Y21885D01* X18761Y21882D01* X18753Y21878D01* X18746Y21872D01* X18740Y21865D01* X18736Y21858D01* X18733Y21850D01* X18731Y21841D01* X18731Y21833D01* X18732Y21824D01* X18735Y21816D01* X18739Y21808D01* X18745Y21801D01* X18752Y21796D01* X18759Y21791D01* X18767Y21788D01* X18793Y21779D01* X18818Y21768D01* X18841Y21755D01* X18864Y21740D01* X18884Y21724D01* Y21276D01* X18868Y21262D01* X18846Y21247D01* X18822Y21233D01* X18798Y21222D01* X18772Y21213D01* X18764Y21209D01* X18757Y21205D01* X18750Y21199D01* X18745Y21192D01* X18741Y21184D01* X18738Y21176D01* X18737Y21167D01* X18737Y21159D01* X18739Y21150D01* X18742Y21142D01* X18747Y21135D01* X18753Y21128D01* X18760Y21123D01* X18767Y21119D01* X18776Y21116D01* X18784Y21115D01* X18793Y21115D01* X18801Y21117D01* X18836Y21129D01* X18868Y21144D01* X18884Y21153D01* Y19857D01* X18882Y19858D01* X18849Y19873D01* X18815Y19884D01* X18806Y19886D01* X18797Y19886D01* X18789Y19885D01* X18781Y19882D01* X18773Y19878D01* X18766Y19872D01* X18760Y19865D01* X18756Y19858D01* X18753Y19850D01* X18751Y19841D01* X18751Y19833D01* X18752Y19824D01* X18755Y19816D01* X18759Y19808D01* X18765Y19801D01* X18772Y19796D01* X18779Y19791D01* X18787Y19788D01* X18813Y19779D01* X18838Y19768D01* X18861Y19755D01* X18884Y19740D01* Y19259D01* X18866Y19247D01* X18842Y19233D01* X18818Y19222D01* X18792Y19213D01* X18784Y19209D01* X18777Y19205D01* X18770Y19199D01* X18765Y19192D01* X18761Y19184D01* X18758Y19176D01* X18757Y19167D01* X18757Y19159D01* X18759Y19150D01* X18762Y19142D01* X18767Y19135D01* X18773Y19128D01* X18780Y19123D01* X18787Y19119D01* X18796Y19116D01* X18804Y19115D01* X18813Y19115D01* X18821Y19117D01* X18856Y19129D01* X18884Y19142D01* Y17866D01* X18869Y17873D01* X18835Y17884D01* X18826Y17886D01* X18817Y17886D01* X18809Y17885D01* X18801Y17882D01* X18793Y17878D01* X18786Y17872D01* X18780Y17865D01* X18776Y17858D01* X18773Y17850D01* X18771Y17841D01* X18771Y17833D01* X18772Y17824D01* X18775Y17816D01* X18779Y17808D01* X18785Y17801D01* X18792Y17796D01* X18799Y17791D01* X18807Y17788D01* X18833Y17779D01* X18858Y17768D01* X18881Y17755D01* X18884Y17754D01* Y17246D01* X18862Y17233D01* X18838Y17222D01* X18812Y17213D01* X18804Y17209D01* X18797Y17205D01* X18790Y17199D01* X18785Y17192D01* X18781Y17184D01* X18778Y17176D01* X18777Y17167D01* X18777Y17159D01* X18779Y17150D01* X18782Y17142D01* X18787Y17135D01* X18793Y17128D01* X18800Y17123D01* X18807Y17119D01* X18816Y17116D01* X18824Y17115D01* X18833Y17115D01* X18841Y17117D01* X18876Y17129D01* X18884Y17133D01* Y15874D01* X18855Y15884D01* X18846Y15886D01* X18837Y15886D01* X18829Y15885D01* X18821Y15882D01* X18813Y15878D01* X18806Y15872D01* X18800Y15865D01* X18796Y15858D01* X18793Y15850D01* X18791Y15841D01* X18791Y15833D01* X18792Y15824D01* X18795Y15816D01* X18799Y15808D01* X18805Y15801D01* X18812Y15796D01* X18819Y15791D01* X18827Y15788D01* X18853Y15779D01* X18878Y15768D01* X18884Y15765D01* Y15234D01* X18882Y15233D01* X18858Y15222D01* X18832Y15213D01* X18824Y15209D01* X18817Y15205D01* X18810Y15199D01* X18805Y15192D01* X18801Y15184D01* X18798Y15176D01* X18797Y15167D01* X18797Y15159D01* X18799Y15150D01* X18802Y15142D01* X18807Y15135D01* X18813Y15128D01* X18820Y15123D01* X18827Y15119D01* X18836Y15116D01* X18844Y15115D01* X18853Y15115D01* X18861Y15117D01* X18884Y15125D01* Y13881D01* X18875Y13884D01* X18866Y13886D01* X18857Y13886D01* X18849Y13885D01* X18841Y13882D01* X18833Y13878D01* X18826Y13872D01* X18820Y13865D01* X18816Y13858D01* X18813Y13850D01* X18811Y13841D01* X18811Y13833D01* X18812Y13824D01* X18815Y13816D01* X18819Y13808D01* X18825Y13801D01* X18832Y13796D01* X18839Y13791D01* X18847Y13788D01* X18873Y13779D01* X18884Y13774D01* Y13225D01* X18878Y13222D01* X18852Y13213D01* X18844Y13209D01* X18837Y13205D01* X18830Y13199D01* X18825Y13192D01* X18821Y13184D01* X18818Y13176D01* X18817Y13167D01* X18817Y13159D01* X18819Y13150D01* X18822Y13142D01* X18827Y13135D01* X18833Y13128D01* X18840Y13123D01* X18847Y13119D01* X18856Y13116D01* X18864Y13115D01* X18873Y13115D01* X18881Y13117D01* X18884Y13118D01* Y11886D01* X18877Y11886D01* X18869Y11885D01* X18861Y11882D01* X18853Y11878D01* X18846Y11872D01* X18840Y11865D01* X18836Y11858D01* X18833Y11850D01* X18831Y11841D01* X18831Y11833D01* X18832Y11824D01* X18835Y11816D01* X18839Y11808D01* X18845Y11801D01* X18852Y11796D01* X18859Y11791D01* X18867Y11788D01* X18884Y11782D01* Y11217D01* X18872Y11213D01* X18864Y11209D01* X18857Y11205D01* X18850Y11199D01* X18845Y11192D01* X18841Y11184D01* X18838Y11176D01* X18837Y11167D01* X18837Y11159D01* X18839Y11150D01* X18842Y11142D01* X18847Y11135D01* X18853Y11128D01* X18860Y11123D01* X18867Y11119D01* X18876Y11116D01* X18884Y11115D01* Y9883D01* X18881Y9882D01* X18873Y9878D01* X18866Y9872D01* X18860Y9865D01* X18856Y9858D01* X18853Y9850D01* X18851Y9841D01* X18851Y9833D01* X18852Y9824D01* X18855Y9816D01* X18859Y9808D01* X18865Y9801D01* X18872Y9796D01* X18879Y9791D01* X18884Y9789D01* Y9209D01* X18877Y9205D01* X18870Y9199D01* X18865Y9192D01* X18861Y9184D01* X18858Y9176D01* X18857Y9167D01* X18857Y9159D01* X18859Y9150D01* X18862Y9142D01* X18867Y9135D01* X18873Y9128D01* X18880Y9123D01* X18884Y9121D01* Y7870D01* X18880Y7865D01* X18876Y7858D01* X18873Y7850D01* X18871Y7841D01* X18871Y7833D01* X18872Y7824D01* X18875Y7816D01* X18879Y7808D01* X18884Y7802D01* Y7190D01* X18881Y7184D01* X18878Y7176D01* X18877Y7167D01* X18877Y7159D01* X18879Y7150D01* X18882Y7142D01* X18884Y7140D01* Y0D01* X18625D01* Y1196D01* X18645Y1179D01* X18675Y1159D01* X18707Y1141D01* X18740Y1127D01* X18774Y1115D01* X18783Y1113D01* X18792Y1113D01* X18800Y1115D01* X18808Y1117D01* X18816Y1122D01* X18823Y1127D01* X18829Y1134D01* X18833Y1141D01* X18836Y1149D01* X18838Y1158D01* X18838Y1167D01* X18837Y1175D01* X18834Y1183D01* X18830Y1191D01* X18824Y1198D01* X18817Y1204D01* X18810Y1208D01* X18802Y1211D01* X18776Y1220D01* X18751Y1231D01* X18728Y1244D01* X18705Y1259D01* X18684Y1276D01* X18665Y1295D01* X18647Y1316D01* X18632Y1338D01* X18625Y1349D01* Y1650D01* X18629Y1657D01* X18644Y1679D01* X18661Y1700D01* X18680Y1719D01* X18701Y1737D01* X18723Y1752D01* X18747Y1766D01* X18771Y1777D01* X18797Y1786D01* X18805Y1790D01* X18812Y1794D01* X18819Y1800D01* X18824Y1807D01* X18828Y1815D01* X18831Y1823D01* X18832Y1832D01* X18832Y1840D01* X18830Y1849D01* X18827Y1857D01* X18822Y1864D01* X18816Y1871D01* X18809Y1876D01* X18802Y1880D01* X18793Y1883D01* X18785Y1884D01* X18776Y1884D01* X18768Y1882D01* X18733Y1870D01* X18701Y1855D01* X18669Y1837D01* X18640Y1816D01* X18625Y1804D01* Y3179D01* X18625Y3179D01* X18655Y3159D01* X18687Y3141D01* X18720Y3127D01* X18754Y3115D01* X18763Y3113D01* X18772Y3113D01* X18780Y3115D01* X18788Y3117D01* X18796Y3122D01* X18803Y3127D01* X18809Y3134D01* X18813Y3141D01* X18816Y3149D01* X18818Y3158D01* X18818Y3167D01* X18817Y3175D01* X18814Y3183D01* X18810Y3191D01* X18804Y3198D01* X18797Y3204D01* X18790Y3208D01* X18782Y3211D01* X18756Y3220D01* X18731Y3231D01* X18708Y3244D01* X18685Y3259D01* X18664Y3276D01* X18645Y3295D01* X18627Y3316D01* X18625Y3319D01* Y3680D01* X18641Y3700D01* X18660Y3719D01* X18681Y3737D01* X18703Y3752D01* X18727Y3766D01* X18751Y3777D01* X18777Y3786D01* X18785Y3790D01* X18792Y3794D01* X18799Y3800D01* X18804Y3807D01* X18808Y3815D01* X18811Y3823D01* X18812Y3832D01* X18812Y3840D01* X18810Y3849D01* X18807Y3857D01* X18802Y3864D01* X18796Y3871D01* X18789Y3876D01* X18782Y3880D01* X18773Y3883D01* X18765Y3884D01* X18756Y3884D01* X18748Y3882D01* X18713Y3870D01* X18681Y3855D01* X18649Y3837D01* X18625Y3820D01* Y5166D01* X18635Y5159D01* X18667Y5141D01* X18700Y5127D01* X18734Y5115D01* X18743Y5113D01* X18752Y5113D01* X18760Y5115D01* X18768Y5117D01* X18776Y5122D01* X18783Y5127D01* X18789Y5134D01* X18793Y5141D01* X18796Y5149D01* X18798Y5158D01* X18798Y5167D01* X18797Y5175D01* X18794Y5183D01* X18790Y5191D01* X18784Y5198D01* X18777Y5204D01* X18770Y5208D01* X18762Y5211D01* X18736Y5220D01* X18711Y5231D01* X18688Y5244D01* X18665Y5259D01* X18644Y5276D01* X18625Y5295D01* Y5704D01* X18640Y5719D01* X18661Y5737D01* X18683Y5752D01* X18707Y5766D01* X18731Y5777D01* X18757Y5786D01* X18765Y5790D01* X18772Y5794D01* X18779Y5800D01* X18784Y5807D01* X18788Y5815D01* X18791Y5823D01* X18792Y5832D01* X18792Y5840D01* X18790Y5849D01* X18787Y5857D01* X18782Y5864D01* X18776Y5871D01* X18769Y5876D01* X18762Y5880D01* X18753Y5883D01* X18745Y5884D01* X18736Y5884D01* X18728Y5882D01* X18693Y5870D01* X18661Y5855D01* X18629Y5837D01* X18625Y5834D01* Y7153D01* X18647Y7141D01* X18680Y7127D01* X18714Y7115D01* X18723Y7113D01* X18732Y7113D01* X18740Y7115D01* X18748Y7117D01* X18756Y7122D01* X18763Y7127D01* X18769Y7134D01* X18773Y7141D01* X18776Y7149D01* X18778Y7158D01* X18778Y7167D01* X18777Y7175D01* X18774Y7183D01* X18770Y7191D01* X18764Y7198D01* X18757Y7204D01* X18750Y7208D01* X18742Y7211D01* X18716Y7220D01* X18691Y7231D01* X18668Y7244D01* X18645Y7259D01* X18625Y7276D01* Y7723D01* X18641Y7737D01* X18663Y7752D01* X18687Y7766D01* X18711Y7777D01* X18737Y7786D01* X18745Y7790D01* X18752Y7794D01* X18759Y7800D01* X18764Y7807D01* X18768Y7815D01* X18771Y7823D01* X18772Y7832D01* X18772Y7840D01* X18770Y7849D01* X18767Y7857D01* X18762Y7864D01* X18756Y7871D01* X18749Y7876D01* X18742Y7880D01* X18733Y7883D01* X18725Y7884D01* X18716Y7884D01* X18708Y7882D01* X18673Y7870D01* X18641Y7855D01* X18625Y7846D01* Y9142D01* X18627Y9141D01* X18660Y9127D01* X18694Y9115D01* X18703Y9113D01* X18712Y9113D01* X18720Y9115D01* X18728Y9117D01* X18736Y9122D01* X18743Y9127D01* X18749Y9134D01* X18753Y9141D01* X18756Y9149D01* X18758Y9158D01* X18758Y9167D01* X18757Y9175D01* X18754Y9183D01* X18750Y9191D01* X18744Y9198D01* X18737Y9204D01* X18730Y9208D01* X18722Y9211D01* X18696Y9220D01* X18671Y9231D01* X18648Y9244D01* X18625Y9259D01* Y9740D01* X18643Y9752D01* X18667Y9766D01* X18691Y9777D01* X18717Y9786D01* X18725Y9790D01* X18732Y9794D01* X18739Y9800D01* X18744Y9807D01* X18748Y9815D01* X18751Y9823D01* X18752Y9832D01* X18752Y9840D01* X18750Y9849D01* X18747Y9857D01* X18742Y9864D01* X18736Y9871D01* X18729Y9876D01* X18722Y9880D01* X18713Y9883D01* X18705Y9884D01* X18696Y9884D01* X18688Y9882D01* X18653Y9870D01* X18625Y9857D01* Y11133D01* X18640Y11127D01* X18674Y11115D01* X18683Y11113D01* X18692Y11113D01* X18700Y11115D01* X18708Y11117D01* X18716Y11122D01* X18723Y11127D01* X18729Y11134D01* X18733Y11141D01* X18736Y11149D01* X18738Y11158D01* X18738Y11167D01* X18737Y11175D01* X18734Y11183D01* X18730Y11191D01* X18724Y11198D01* X18717Y11204D01* X18710Y11208D01* X18702Y11211D01* X18676Y11220D01* X18651Y11231D01* X18628Y11244D01* X18625Y11246D01* Y11754D01* X18647Y11766D01* X18671Y11777D01* X18697Y11786D01* X18705Y11790D01* X18712Y11794D01* X18719Y11800D01* X18724Y11807D01* X18728Y11815D01* X18731Y11823D01* X18732Y11832D01* X18732Y11840D01* X18730Y11849D01* X18727Y11857D01* X18722Y11864D01* X18716Y11871D01* X18709Y11876D01* X18702Y11880D01* X18693Y11883D01* X18685Y11884D01* X18676Y11884D01* X18668Y11882D01* X18633Y11870D01* X18625Y11866D01* Y13125D01* X18654Y13115D01* X18663Y13113D01* X18672Y13113D01* X18680Y13115D01* X18688Y13117D01* X18696Y13122D01* X18703Y13127D01* X18709Y13134D01* X18713Y13141D01* X18716Y13149D01* X18718Y13158D01* X18718Y13167D01* X18717Y13175D01* X18714Y13183D01* X18710Y13191D01* X18704Y13198D01* X18697Y13204D01* X18690Y13208D01* X18682Y13211D01* X18656Y13220D01* X18631Y13231D01* X18625Y13234D01* Y13765D01* X18627Y13766D01* X18651Y13777D01* X18677Y13786D01* X18685Y13790D01* X18692Y13794D01* X18699Y13800D01* X18704Y13807D01* X18708Y13815D01* X18711Y13823D01* X18712Y13832D01* X18712Y13840D01* X18710Y13849D01* X18707Y13857D01* X18702Y13864D01* X18696Y13871D01* X18689Y13876D01* X18682Y13880D01* X18673Y13883D01* X18665Y13884D01* X18656Y13884D01* X18648Y13882D01* X18625Y13874D01* Y15118D01* X18634Y15115D01* X18643Y15113D01* X18652Y15113D01* X18660Y15115D01* X18668Y15117D01* X18676Y15122D01* X18683Y15127D01* X18689Y15134D01* X18693Y15141D01* X18696Y15149D01* X18698Y15158D01* X18698Y15167D01* X18697Y15175D01* X18694Y15183D01* X18690Y15191D01* X18684Y15198D01* X18677Y15204D01* X18670Y15208D01* X18662Y15211D01* X18636Y15220D01* X18625Y15225D01* Y15775D01* X18631Y15777D01* X18657Y15786D01* X18665Y15790D01* X18672Y15794D01* X18679Y15800D01* X18684Y15807D01* X18688Y15815D01* X18691Y15823D01* X18692Y15832D01* X18692Y15840D01* X18690Y15849D01* X18687Y15857D01* X18682Y15864D01* X18676Y15871D01* X18669Y15876D01* X18662Y15880D01* X18653Y15883D01* X18645Y15884D01* X18636Y15884D01* X18628Y15882D01* X18625Y15881D01* Y17113D01* X18632Y17113D01* X18640Y17115D01* X18648Y17117D01* X18656Y17122D01* X18663Y17127D01* X18669Y17134D01* X18673Y17141D01* X18676Y17149D01* X18678Y17158D01* X18678Y17167D01* X18677Y17175D01* X18674Y17183D01* X18670Y17191D01* X18664Y17198D01* X18657Y17204D01* X18650Y17208D01* X18642Y17211D01* X18625Y17217D01* Y17782D01* X18637Y17786D01* X18645Y17790D01* X18652Y17794D01* X18659Y17800D01* X18664Y17807D01* X18668Y17815D01* X18671Y17823D01* X18672Y17832D01* X18672Y17840D01* X18670Y17849D01* X18667Y17857D01* X18662Y17864D01* X18656Y17871D01* X18649Y17876D01* X18642Y17880D01* X18633Y17883D01* X18625Y17884D01* Y19116D01* X18628Y19117D01* X18636Y19122D01* X18643Y19127D01* X18649Y19134D01* X18653Y19141D01* X18656Y19149D01* X18658Y19158D01* X18658Y19167D01* X18657Y19175D01* X18654Y19183D01* X18650Y19191D01* X18644Y19198D01* X18637Y19204D01* X18630Y19208D01* X18625Y19210D01* Y19790D01* X18632Y19794D01* X18639Y19800D01* X18644Y19807D01* X18648Y19815D01* X18651Y19823D01* X18652Y19832D01* X18652Y19840D01* X18650Y19849D01* X18647Y19857D01* X18642Y19864D01* X18636Y19871D01* X18629Y19876D01* X18625Y19878D01* Y21130D01* X18629Y21134D01* X18633Y21141D01* X18636Y21149D01* X18638Y21158D01* X18638Y21167D01* X18637Y21175D01* X18634Y21183D01* X18630Y21191D01* X18625Y21197D01* Y21809D01* X18628Y21815D01* X18631Y21823D01* X18632Y21832D01* X18632Y21840D01* X18630Y21849D01* X18627Y21857D01* X18625Y21859D01* Y33138D01* G37* G36* X18884Y40000D02*X19064D01* Y21625D01* X19055Y21651D01* X19040Y21683D01* X19022Y21715D01* X19001Y21744D01* X18977Y21772D01* X18952Y21797D01* X18924Y21820D01* X18894Y21840D01* X18884Y21846D01* Y23165D01* X18909Y23183D01* X18937Y23207D01* X18962Y23232D01* X18985Y23260D01* X19005Y23290D01* X19023Y23322D01* X19037Y23355D01* X19049Y23389D01* X19051Y23398D01* X19051Y23407D01* X19050Y23415D01* X19047Y23423D01* X19042Y23431D01* X19037Y23438D01* X19030Y23444D01* X19023Y23448D01* X19015Y23451D01* X19006Y23453D01* X18997Y23453D01* X18989Y23452D01* X18981Y23449D01* X18973Y23445D01* X18966Y23439D01* X18960Y23433D01* X18956Y23425D01* X18953Y23417D01* X18944Y23391D01* X18933Y23366D01* X18920Y23343D01* X18905Y23320D01* X18888Y23299D01* X18884Y23295D01* Y23704D01* X18884Y23704D01* X18902Y23683D01* X18917Y23661D01* X18931Y23637D01* X18942Y23613D01* X18951Y23587D01* X18955Y23579D01* X18959Y23572D01* X18965Y23565D01* X18972Y23560D01* X18980Y23556D01* X18988Y23553D01* X18997Y23552D01* X19005Y23552D01* X19014Y23554D01* X19022Y23557D01* X19029Y23562D01* X19036Y23568D01* X19041Y23575D01* X19045Y23582D01* X19048Y23591D01* X19049Y23599D01* X19049Y23608D01* X19047Y23617D01* X19035Y23651D01* X19020Y23683D01* X19002Y23715D01* X18981Y23744D01* X18957Y23772D01* X18932Y23797D01* X18904Y23820D01* X18884Y23834D01* Y25180D01* X18889Y25183D01* X18917Y25207D01* X18942Y25232D01* X18965Y25260D01* X18985Y25290D01* X19003Y25322D01* X19017Y25355D01* X19029Y25389D01* X19031Y25398D01* X19031Y25407D01* X19030Y25415D01* X19027Y25423D01* X19022Y25431D01* X19017Y25438D01* X19010Y25444D01* X19003Y25448D01* X18995Y25451D01* X18986Y25453D01* X18977Y25453D01* X18969Y25452D01* X18961Y25449D01* X18953Y25445D01* X18946Y25439D01* X18940Y25433D01* X18936Y25425D01* X18933Y25417D01* X18924Y25391D01* X18913Y25366D01* X18900Y25343D01* X18885Y25320D01* X18884Y25319D01* Y25680D01* X18897Y25661D01* X18911Y25637D01* X18922Y25613D01* X18931Y25587D01* X18935Y25579D01* X18939Y25572D01* X18945Y25565D01* X18952Y25560D01* X18960Y25556D01* X18968Y25553D01* X18977Y25552D01* X18985Y25552D01* X18994Y25554D01* X19002Y25557D01* X19009Y25562D01* X19016Y25568D01* X19021Y25575D01* X19025Y25582D01* X19028Y25591D01* X19029Y25599D01* X19029Y25608D01* X19027Y25617D01* X19015Y25651D01* X19000Y25683D01* X18982Y25715D01* X18961Y25744D01* X18937Y25772D01* X18912Y25797D01* X18884Y25820D01* Y27196D01* X18897Y27207D01* X18922Y27232D01* X18945Y27260D01* X18965Y27290D01* X18983Y27322D01* X18997Y27355D01* X19009Y27389D01* X19011Y27398D01* X19011Y27407D01* X19010Y27415D01* X19007Y27423D01* X19002Y27431D01* X18997Y27438D01* X18990Y27444D01* X18983Y27448D01* X18975Y27451D01* X18966Y27453D01* X18957Y27453D01* X18949Y27452D01* X18941Y27449D01* X18933Y27445D01* X18926Y27439D01* X18920Y27433D01* X18916Y27425D01* X18913Y27417D01* X18904Y27391D01* X18893Y27366D01* X18884Y27350D01* Y27650D01* X18891Y27637D01* X18902Y27613D01* X18911Y27587D01* X18915Y27579D01* X18919Y27572D01* X18925Y27565D01* X18932Y27560D01* X18940Y27556D01* X18948Y27553D01* X18957Y27552D01* X18965Y27552D01* X18974Y27554D01* X18982Y27557D01* X18989Y27562D01* X18996Y27568D01* X19001Y27575D01* X19005Y27582D01* X19008Y27591D01* X19009Y27599D01* X19009Y27608D01* X19007Y27617D01* X18995Y27651D01* X18980Y27683D01* X18962Y27715D01* X18941Y27744D01* X18917Y27772D01* X18892Y27797D01* X18884Y27804D01* Y29214D01* X18902Y29232D01* X18925Y29260D01* X18945Y29290D01* X18963Y29322D01* X18977Y29355D01* X18989Y29389D01* X18991Y29398D01* X18991Y29407D01* X18990Y29415D01* X18987Y29423D01* X18982Y29431D01* X18977Y29438D01* X18970Y29444D01* X18963Y29448D01* X18955Y29451D01* X18946Y29453D01* X18937Y29453D01* X18929Y29452D01* X18921Y29449D01* X18913Y29445D01* X18906Y29439D01* X18900Y29433D01* X18896Y29425D01* X18893Y29417D01* X18884Y29391D01* X18884Y29391D01* Y29608D01* X18891Y29587D01* X18895Y29579D01* X18899Y29572D01* X18905Y29565D01* X18912Y29560D01* X18920Y29556D01* X18928Y29553D01* X18937Y29552D01* X18945Y29552D01* X18954Y29554D01* X18962Y29557D01* X18969Y29562D01* X18976Y29568D01* X18981Y29575D01* X18985Y29582D01* X18988Y29591D01* X18989Y29599D01* X18989Y29608D01* X18987Y29617D01* X18975Y29651D01* X18960Y29683D01* X18942Y29715D01* X18921Y29744D01* X18897Y29772D01* X18884Y29785D01* Y31235D01* X18905Y31260D01* X18925Y31290D01* X18943Y31322D01* X18957Y31355D01* X18969Y31389D01* X18971Y31398D01* X18971Y31407D01* X18970Y31415D01* X18967Y31423D01* X18962Y31431D01* X18957Y31438D01* X18950Y31444D01* X18943Y31448D01* X18935Y31451D01* X18926Y31453D01* X18917Y31453D01* X18909Y31452D01* X18901Y31449D01* X18893Y31445D01* X18886Y31439D01* X18884Y31437D01* Y31567D01* X18885Y31565D01* X18892Y31560D01* X18900Y31556D01* X18908Y31553D01* X18917Y31552D01* X18925Y31552D01* X18934Y31554D01* X18942Y31557D01* X18949Y31562D01* X18956Y31568D01* X18961Y31575D01* X18965Y31582D01* X18968Y31591D01* X18969Y31599D01* X18969Y31608D01* X18967Y31617D01* X18955Y31651D01* X18940Y31683D01* X18922Y31715D01* X18901Y31744D01* X18884Y31764D01* Y33259D01* X18885Y33260D01* X18905Y33290D01* X18923Y33322D01* X18937Y33355D01* X18949Y33389D01* X18951Y33398D01* X18951Y33407D01* X18950Y33415D01* X18947Y33423D01* X18942Y33431D01* X18937Y33438D01* X18930Y33444D01* X18923Y33448D01* X18915Y33451D01* X18906Y33453D01* X18897Y33453D01* X18889Y33452D01* X18884Y33450D01* Y33555D01* X18888Y33553D01* X18897Y33552D01* X18905Y33552D01* X18914Y33554D01* X18922Y33557D01* X18929Y33562D01* X18936Y33568D01* X18941Y33575D01* X18945Y33582D01* X18948Y33591D01* X18949Y33599D01* X18949Y33608D01* X18947Y33617D01* X18935Y33651D01* X18920Y33683D01* X18902Y33715D01* X18884Y33740D01* Y35288D01* X18885Y35290D01* X18903Y35322D01* X18917Y35355D01* X18929Y35389D01* X18931Y35398D01* X18931Y35407D01* X18930Y35415D01* X18927Y35423D01* X18922Y35431D01* X18917Y35438D01* X18910Y35444D01* X18903Y35448D01* X18895Y35451D01* X18886Y35453D01* X18884D01* Y35552D01* X18885D01* X18894Y35554D01* X18902Y35557D01* X18909Y35562D01* X18916Y35568D01* X18921Y35575D01* X18925Y35582D01* X18928Y35591D01* X18929Y35599D01* X18929Y35608D01* X18927Y35617D01* X18915Y35651D01* X18900Y35683D01* X18884Y35711D01* Y37324D01* X18897Y37355D01* X18909Y37389D01* X18911Y37398D01* X18911Y37407D01* X18910Y37415D01* X18907Y37423D01* X18902Y37431D01* X18897Y37438D01* X18890Y37444D01* X18884Y37447D01* Y37559D01* X18889Y37562D01* X18896Y37568D01* X18901Y37575D01* X18905Y37582D01* X18908Y37591D01* X18909Y37599D01* X18909Y37608D01* X18907Y37617D01* X18895Y37651D01* X18884Y37674D01* Y39374D01* X18889Y39389D01* X18891Y39398D01* X18891Y39407D01* X18890Y39415D01* X18887Y39423D01* X18884Y39428D01* Y39580D01* X18885Y39582D01* X18888Y39591D01* X18889Y39599D01* X18889Y39608D01* X18887Y39617D01* X18884Y39625D01* Y40000D01* G37* G36* X19064Y0D02*X18884D01* Y7140D01* X18887Y7135D01* X18893Y7128D01* X18900Y7123D01* X18907Y7119D01* X18916Y7116D01* X18924Y7115D01* X18933Y7115D01* X18941Y7117D01* X18976Y7129D01* X19008Y7144D01* X19040Y7162D01* X19064Y7180D01* Y5834D01* X19054Y5840D01* X19022Y5858D01* X18989Y5873D01* X18955Y5884D01* X18946Y5886D01* X18937Y5886D01* X18929Y5885D01* X18921Y5882D01* X18913Y5878D01* X18906Y5872D01* X18900Y5865D01* X18896Y5858D01* X18893Y5850D01* X18891Y5841D01* X18891Y5833D01* X18892Y5824D01* X18895Y5816D01* X18899Y5808D01* X18905Y5801D01* X18912Y5796D01* X18919Y5791D01* X18927Y5788D01* X18953Y5779D01* X18978Y5768D01* X19001Y5755D01* X19024Y5740D01* X19045Y5723D01* X19064Y5704D01* Y5295D01* X19049Y5280D01* X19028Y5262D01* X19006Y5247D01* X18982Y5233D01* X18958Y5222D01* X18932Y5213D01* X18924Y5209D01* X18917Y5205D01* X18910Y5199D01* X18905Y5192D01* X18901Y5184D01* X18898Y5176D01* X18897Y5167D01* X18897Y5159D01* X18899Y5150D01* X18902Y5142D01* X18907Y5135D01* X18913Y5128D01* X18920Y5123D01* X18927Y5119D01* X18936Y5116D01* X18944Y5115D01* X18953Y5115D01* X18961Y5117D01* X18996Y5129D01* X19028Y5144D01* X19060Y5162D01* X19064Y5165D01* Y3846D01* X19042Y3858D01* X19009Y3873D01* X18975Y3884D01* X18966Y3886D01* X18957Y3886D01* X18949Y3885D01* X18941Y3882D01* X18933Y3878D01* X18926Y3872D01* X18920Y3865D01* X18916Y3858D01* X18913Y3850D01* X18911Y3841D01* X18911Y3833D01* X18912Y3824D01* X18915Y3816D01* X18919Y3808D01* X18925Y3801D01* X18932Y3796D01* X18939Y3791D01* X18947Y3788D01* X18973Y3779D01* X18998Y3768D01* X19021Y3755D01* X19044Y3740D01* X19064Y3724D01* Y3276D01* X19048Y3262D01* X19026Y3247D01* X19002Y3233D01* X18978Y3222D01* X18952Y3213D01* X18944Y3209D01* X18937Y3205D01* X18930Y3199D01* X18925Y3192D01* X18921Y3184D01* X18918Y3176D01* X18917Y3167D01* X18917Y3159D01* X18919Y3150D01* X18922Y3142D01* X18927Y3135D01* X18933Y3128D01* X18940Y3123D01* X18947Y3119D01* X18956Y3116D01* X18964Y3115D01* X18973Y3115D01* X18981Y3117D01* X19016Y3129D01* X19048Y3144D01* X19064Y3153D01* Y1857D01* X19062Y1858D01* X19029Y1873D01* X18995Y1884D01* X18986Y1886D01* X18977Y1886D01* X18969Y1885D01* X18961Y1882D01* X18953Y1878D01* X18946Y1872D01* X18940Y1865D01* X18936Y1858D01* X18933Y1850D01* X18931Y1841D01* X18931Y1833D01* X18932Y1824D01* X18935Y1816D01* X18939Y1808D01* X18945Y1801D01* X18952Y1796D01* X18959Y1791D01* X18967Y1788D01* X18993Y1779D01* X19018Y1768D01* X19041Y1755D01* X19064Y1740D01* Y1259D01* X19046Y1247D01* X19022Y1233D01* X18998Y1222D01* X18972Y1213D01* X18964Y1209D01* X18957Y1205D01* X18950Y1199D01* X18945Y1192D01* X18941Y1184D01* X18938Y1176D01* X18937Y1167D01* X18937Y1159D01* X18939Y1150D01* X18942Y1142D01* X18947Y1135D01* X18953Y1128D01* X18960Y1123D01* X18967Y1119D01* X18976Y1116D01* X18984Y1115D01* X18993Y1115D01* X19001Y1117D01* X19036Y1129D01* X19064Y1142D01* Y0D01* G37* G36* Y7319D02*X19048Y7299D01* X19029Y7280D01* X19008Y7262D01* X18986Y7247D01* X18962Y7233D01* X18938Y7222D01* X18912Y7213D01* X18904Y7209D01* X18897Y7205D01* X18890Y7199D01* X18885Y7192D01* X18884Y7190D01* Y7802D01* X18885Y7801D01* X18892Y7796D01* X18899Y7791D01* X18907Y7788D01* X18933Y7779D01* X18958Y7768D01* X18981Y7755D01* X19004Y7740D01* X19025Y7723D01* X19044Y7704D01* X19062Y7683D01* X19064Y7680D01* Y7319D01* G37* G36* Y7820D02*X19064Y7820D01* X19034Y7840D01* X19002Y7858D01* X18969Y7873D01* X18935Y7884D01* X18926Y7886D01* X18917Y7886D01* X18909Y7885D01* X18901Y7882D01* X18893Y7878D01* X18886Y7872D01* X18884Y7870D01* Y9121D01* X18887Y9119D01* X18896Y9116D01* X18904Y9115D01* X18913Y9115D01* X18921Y9117D01* X18956Y9129D01* X18988Y9144D01* X19020Y9162D01* X19049Y9183D01* X19064Y9196D01* Y7820D01* G37* G36* Y9350D02*X19060Y9343D01* X19045Y9320D01* X19028Y9299D01* X19009Y9280D01* X18988Y9262D01* X18966Y9247D01* X18942Y9233D01* X18918Y9222D01* X18892Y9213D01* X18884Y9209D01* X18884Y9209D01* Y9789D01* X18887Y9788D01* X18913Y9779D01* X18938Y9768D01* X18961Y9755D01* X18984Y9740D01* X19005Y9723D01* X19024Y9704D01* X19042Y9683D01* X19057Y9661D01* X19064Y9650D01* Y9350D01* G37* G36* Y9804D02*X19044Y9820D01* X19014Y9840D01* X18982Y9858D01* X18949Y9873D01* X18915Y9884D01* X18906Y9886D01* X18897Y9886D01* X18889Y9885D01* X18884Y9883D01* Y11115D01* X18884D01* X18893Y11115D01* X18901Y11117D01* X18936Y11129D01* X18968Y11144D01* X19000Y11162D01* X19029Y11183D01* X19057Y11207D01* X19064Y11214D01* Y9804D01* G37* G36* Y11391D02*X19053Y11366D01* X19040Y11343D01* X19025Y11320D01* X19008Y11299D01* X18989Y11280D01* X18968Y11262D01* X18946Y11247D01* X18922Y11233D01* X18898Y11222D01* X18884Y11217D01* Y11782D01* X18893Y11779D01* X18918Y11768D01* X18941Y11755D01* X18964Y11740D01* X18985Y11723D01* X19004Y11704D01* X19022Y11683D01* X19037Y11661D01* X19051Y11637D01* X19062Y11613D01* X19064Y11608D01* Y11391D01* G37* G36* Y11785D02*X19052Y11797D01* X19024Y11820D01* X18994Y11840D01* X18962Y11858D01* X18929Y11873D01* X18895Y11884D01* X18886Y11886D01* X18884D01* Y13118D01* X18916Y13129D01* X18948Y13144D01* X18980Y13162D01* X19009Y13183D01* X19037Y13207D01* X19062Y13232D01* X19064Y13235D01* Y11785D01* G37* G36* Y13437D02*X19060Y13433D01* X19056Y13425D01* X19053Y13417D01* X19044Y13391D01* X19033Y13366D01* X19020Y13343D01* X19005Y13320D01* X18988Y13299D01* X18969Y13280D01* X18948Y13262D01* X18926Y13247D01* X18902Y13233D01* X18884Y13225D01* Y13774D01* X18898Y13768D01* X18921Y13755D01* X18944Y13740D01* X18965Y13723D01* X18984Y13704D01* X19002Y13683D01* X19017Y13661D01* X19031Y13637D01* X19042Y13613D01* X19051Y13587D01* X19055Y13579D01* X19059Y13572D01* X19064Y13567D01* Y13437D01* G37* G36* Y13764D02*X19057Y13772D01* X19032Y13797D01* X19004Y13820D01* X18974Y13840D01* X18942Y13858D01* X18909Y13873D01* X18884Y13881D01* Y15125D01* X18896Y15129D01* X18928Y15144D01* X18960Y15162D01* X18989Y15183D01* X19017Y15207D01* X19042Y15232D01* X19064Y15259D01* Y13764D01* G37* G36* Y15450D02*X19061Y15449D01* X19053Y15445D01* X19046Y15439D01* X19040Y15433D01* X19036Y15425D01* X19033Y15417D01* X19024Y15391D01* X19013Y15366D01* X19000Y15343D01* X18985Y15320D01* X18968Y15299D01* X18949Y15280D01* X18928Y15262D01* X18906Y15247D01* X18884Y15234D01* Y15765D01* X18901Y15755D01* X18924Y15740D01* X18945Y15723D01* X18964Y15704D01* X18982Y15683D01* X18997Y15661D01* X19011Y15637D01* X19022Y15613D01* X19031Y15587D01* X19035Y15579D01* X19039Y15572D01* X19045Y15565D01* X19052Y15560D01* X19060Y15556D01* X19064Y15555D01* Y15450D01* G37* G36* Y15740D02*X19061Y15744D01* X19037Y15772D01* X19012Y15797D01* X18984Y15820D01* X18954Y15840D01* X18922Y15858D01* X18889Y15873D01* X18884Y15874D01* Y17133D01* X18908Y17144D01* X18940Y17162D01* X18969Y17183D01* X18997Y17207D01* X19022Y17232D01* X19045Y17260D01* X19064Y17288D01* Y15740D01* G37* G36* Y17453D02*X19057Y17453D01* X19049Y17452D01* X19041Y17449D01* X19033Y17445D01* X19026Y17439D01* X19020Y17433D01* X19016Y17425D01* X19013Y17417D01* X19004Y17391D01* X18993Y17366D01* X18980Y17343D01* X18965Y17320D01* X18948Y17299D01* X18929Y17280D01* X18908Y17262D01* X18886Y17247D01* X18884Y17246D01* Y17754D01* X18904Y17740D01* X18925Y17723D01* X18944Y17704D01* X18962Y17683D01* X18977Y17661D01* X18991Y17637D01* X19002Y17613D01* X19011Y17587D01* X19015Y17579D01* X19019Y17572D01* X19025Y17565D01* X19032Y17560D01* X19040Y17556D01* X19048Y17553D01* X19057Y17552D01* X19064Y17552D01* Y17453D01* G37* G36* Y17711D02*X19062Y17715D01* X19041Y17744D01* X19017Y17772D01* X18992Y17797D01* X18964Y17820D01* X18934Y17840D01* X18902Y17858D01* X18884Y17866D01* Y19142D01* X18888Y19144D01* X18920Y19162D01* X18949Y19183D01* X18977Y19207D01* X19002Y19232D01* X19025Y19260D01* X19045Y19290D01* X19063Y19322D01* X19064Y19324D01* Y17711D01* G37* G36* Y19447D02*X19063Y19448D01* X19055Y19451D01* X19046Y19453D01* X19037Y19453D01* X19029Y19452D01* X19021Y19449D01* X19013Y19445D01* X19006Y19439D01* X19000Y19433D01* X18996Y19425D01* X18993Y19417D01* X18984Y19391D01* X18973Y19366D01* X18960Y19343D01* X18945Y19320D01* X18928Y19299D01* X18909Y19280D01* X18888Y19262D01* X18884Y19259D01* Y19740D01* X18905Y19723D01* X18924Y19704D01* X18942Y19683D01* X18957Y19661D01* X18971Y19637D01* X18982Y19613D01* X18991Y19587D01* X18995Y19579D01* X18999Y19572D01* X19005Y19565D01* X19012Y19560D01* X19020Y19556D01* X19028Y19553D01* X19037Y19552D01* X19045Y19552D01* X19054Y19554D01* X19062Y19557D01* X19064Y19559D01* Y19447D01* G37* G36* Y19674D02*X19060Y19683D01* X19042Y19715D01* X19021Y19744D01* X18997Y19772D01* X18972Y19797D01* X18944Y19820D01* X18914Y19840D01* X18884Y19857D01* Y21153D01* X18900Y21162D01* X18929Y21183D01* X18957Y21207D01* X18982Y21232D01* X19005Y21260D01* X19025Y21290D01* X19043Y21322D01* X19057Y21355D01* X19064Y21374D01* Y19674D01* G37* G36* Y21428D02*X19062Y21431D01* X19057Y21438D01* X19050Y21444D01* X19043Y21448D01* X19035Y21451D01* X19026Y21453D01* X19017Y21453D01* X19009Y21452D01* X19001Y21449D01* X18993Y21445D01* X18986Y21439D01* X18980Y21433D01* X18976Y21425D01* X18973Y21417D01* X18964Y21391D01* X18953Y21366D01* X18940Y21343D01* X18925Y21320D01* X18908Y21299D01* X18889Y21280D01* X18884Y21276D01* Y21724D01* X18885Y21723D01* X18904Y21704D01* X18922Y21683D01* X18937Y21661D01* X18951Y21637D01* X18962Y21613D01* X18971Y21587D01* X18975Y21579D01* X18979Y21572D01* X18985Y21565D01* X18992Y21560D01* X19000Y21556D01* X19008Y21553D01* X19017Y21552D01* X19025Y21552D01* X19034Y21554D01* X19042Y21557D01* X19049Y21562D01* X19056Y21568D01* X19061Y21575D01* X19064Y21580D01* Y21428D01* G37* G36* Y40000D02*X20325D01* Y39857D01* X20321Y39855D01* X20289Y39837D01* X20260Y39816D01* X20232Y39793D01* X20207Y39767D01* X20184Y39739D01* X20164Y39709D01* X20146Y39677D01* X20132Y39644D01* X20120Y39610D01* X20118Y39601D01* X20118Y39593D01* X20119Y39584D01* X20122Y39576D01* X20127Y39568D01* X20132Y39561D01* X20139Y39556D01* X20146Y39551D01* X20154Y39548D01* X20163Y39546D01* X20172Y39546D01* X20180Y39547D01* X20188Y39550D01* X20196Y39555D01* X20203Y39560D01* X20209Y39567D01* X20213Y39574D01* X20216Y39582D01* X20225Y39608D01* X20236Y39633D01* X20249Y39657D01* X20264Y39679D01* X20281Y39700D01* X20300Y39719D01* X20321Y39737D01* X20325Y39740D01* Y39259D01* X20325Y39259D01* X20304Y39276D01* X20285Y39295D01* X20267Y39316D01* X20252Y39338D01* X20238Y39362D01* X20227Y39386D01* X20218Y39412D01* X20214Y39420D01* X20210Y39427D01* X20204Y39434D01* X20197Y39439D01* X20189Y39443D01* X20181Y39446D01* X20172Y39447D01* X20164Y39447D01* X20155Y39445D01* X20147Y39442D01* X20140Y39437D01* X20133Y39431D01* X20128Y39424D01* X20124Y39417D01* X20121Y39409D01* X20120Y39400D01* X20120Y39391D01* X20122Y39383D01* X20134Y39349D01* X20149Y39316D01* X20167Y39284D01* X20188Y39255D01* X20212Y39227D01* X20237Y39202D01* X20265Y39179D01* X20295Y39159D01* X20325Y39142D01* Y37846D01* X20309Y37837D01* X20280Y37816D01* X20252Y37793D01* X20227Y37767D01* X20204Y37739D01* X20184Y37709D01* X20166Y37677D01* X20152Y37644D01* X20140Y37610D01* X20138Y37601D01* X20138Y37593D01* X20139Y37584D01* X20142Y37576D01* X20147Y37568D01* X20152Y37561D01* X20159Y37556D01* X20166Y37551D01* X20174Y37548D01* X20183Y37546D01* X20192Y37546D01* X20200Y37547D01* X20208Y37550D01* X20216Y37555D01* X20223Y37560D01* X20229Y37567D01* X20233Y37574D01* X20236Y37582D01* X20245Y37608D01* X20256Y37633D01* X20269Y37657D01* X20284Y37679D01* X20301Y37700D01* X20320Y37719D01* X20325Y37723D01* Y37276D01* X20324Y37276D01* X20305Y37295D01* X20287Y37316D01* X20272Y37338D01* X20258Y37362D01* X20247Y37386D01* X20238Y37412D01* X20234Y37420D01* X20230Y37427D01* X20224Y37434D01* X20217Y37439D01* X20209Y37443D01* X20201Y37446D01* X20192Y37447D01* X20184Y37447D01* X20175Y37445D01* X20167Y37442D01* X20160Y37437D01* X20153Y37431D01* X20148Y37424D01* X20144Y37417D01* X20141Y37409D01* X20140Y37400D01* X20140Y37391D01* X20142Y37383D01* X20154Y37349D01* X20169Y37316D01* X20187Y37284D01* X20208Y37255D01* X20232Y37227D01* X20257Y37202D01* X20285Y37179D01* X20315Y37159D01* X20325Y37153D01* Y35834D01* X20300Y35816D01* X20272Y35793D01* X20247Y35767D01* X20224Y35739D01* X20204Y35709D01* X20186Y35677D01* X20172Y35644D01* X20160Y35610D01* X20158Y35601D01* X20158Y35593D01* X20159Y35584D01* X20162Y35576D01* X20167Y35568D01* X20172Y35561D01* X20179Y35556D01* X20186Y35551D01* X20194Y35548D01* X20203Y35546D01* X20212Y35546D01* X20220Y35547D01* X20228Y35550D01* X20236Y35555D01* X20243Y35560D01* X20249Y35567D01* X20253Y35574D01* X20256Y35582D01* X20265Y35608D01* X20276Y35633D01* X20289Y35657D01* X20304Y35679D01* X20321Y35700D01* X20325Y35704D01* Y35295D01* X20325Y35295D01* X20307Y35316D01* X20292Y35338D01* X20278Y35362D01* X20267Y35386D01* X20258Y35412D01* X20254Y35420D01* X20250Y35427D01* X20244Y35434D01* X20237Y35439D01* X20229Y35443D01* X20221Y35446D01* X20212Y35447D01* X20204Y35447D01* X20195Y35445D01* X20187Y35442D01* X20180Y35437D01* X20173Y35431D01* X20168Y35424D01* X20164Y35417D01* X20161Y35409D01* X20160Y35400D01* X20160Y35391D01* X20162Y35383D01* X20174Y35349D01* X20189Y35316D01* X20207Y35284D01* X20228Y35255D01* X20252Y35227D01* X20277Y35202D01* X20305Y35179D01* X20325Y35166D01* Y33820D01* X20320Y33816D01* X20292Y33793D01* X20267Y33767D01* X20244Y33739D01* X20224Y33709D01* X20206Y33677D01* X20192Y33644D01* X20180Y33610D01* X20178Y33601D01* X20178Y33593D01* X20179Y33584D01* X20182Y33576D01* X20187Y33568D01* X20192Y33561D01* X20199Y33556D01* X20206Y33551D01* X20214Y33548D01* X20223Y33546D01* X20232Y33546D01* X20240Y33547D01* X20248Y33550D01* X20256Y33555D01* X20263Y33560D01* X20269Y33567D01* X20273Y33574D01* X20276Y33582D01* X20285Y33608D01* X20296Y33633D01* X20309Y33657D01* X20324Y33679D01* X20325Y33680D01* Y33319D01* X20312Y33338D01* X20298Y33362D01* X20287Y33386D01* X20278Y33412D01* X20274Y33420D01* X20270Y33427D01* X20264Y33434D01* X20257Y33439D01* X20249Y33443D01* X20241Y33446D01* X20232Y33447D01* X20224Y33447D01* X20215Y33445D01* X20207Y33442D01* X20200Y33437D01* X20193Y33431D01* X20188Y33424D01* X20184Y33417D01* X20181Y33409D01* X20180Y33400D01* X20180Y33391D01* X20182Y33383D01* X20194Y33349D01* X20209Y33316D01* X20227Y33284D01* X20248Y33255D01* X20272Y33227D01* X20297Y33202D01* X20325Y33179D01* Y31804D01* X20312Y31793D01* X20287Y31767D01* X20264Y31739D01* X20244Y31709D01* X20226Y31677D01* X20212Y31644D01* X20200Y31610D01* X20198Y31601D01* X20198Y31593D01* X20199Y31584D01* X20202Y31576D01* X20207Y31568D01* X20212Y31561D01* X20219Y31556D01* X20226Y31551D01* X20234Y31548D01* X20243Y31546D01* X20252Y31546D01* X20260Y31547D01* X20268Y31550D01* X20276Y31555D01* X20283Y31560D01* X20289Y31567D01* X20293Y31574D01* X20296Y31582D01* X20305Y31608D01* X20316Y31633D01* X20325Y31650D01* Y31349D01* X20318Y31362D01* X20307Y31386D01* X20298Y31412D01* X20294Y31420D01* X20290Y31427D01* X20284Y31434D01* X20277Y31439D01* X20269Y31443D01* X20261Y31446D01* X20252Y31447D01* X20244Y31447D01* X20235Y31445D01* X20227Y31442D01* X20220Y31437D01* X20213Y31431D01* X20208Y31424D01* X20204Y31417D01* X20201Y31409D01* X20200Y31400D01* X20200Y31391D01* X20202Y31383D01* X20214Y31349D01* X20229Y31316D01* X20247Y31284D01* X20268Y31255D01* X20292Y31227D01* X20317Y31202D01* X20325Y31196D01* Y29785D01* X20307Y29767D01* X20284Y29739D01* X20264Y29709D01* X20246Y29677D01* X20232Y29644D01* X20220Y29610D01* X20218Y29601D01* X20218Y29593D01* X20219Y29584D01* X20222Y29576D01* X20227Y29568D01* X20232Y29561D01* X20239Y29556D01* X20246Y29551D01* X20254Y29548D01* X20263Y29546D01* X20272Y29546D01* X20280Y29547D01* X20288Y29550D01* X20296Y29555D01* X20303Y29560D01* X20309Y29567D01* X20313Y29574D01* X20316Y29582D01* X20325Y29608D01* X20325Y29609D01* Y29391D01* X20318Y29412D01* X20314Y29420D01* X20310Y29427D01* X20304Y29434D01* X20297Y29439D01* X20289Y29443D01* X20281Y29446D01* X20272Y29447D01* X20264Y29447D01* X20255Y29445D01* X20247Y29442D01* X20240Y29437D01* X20233Y29431D01* X20228Y29424D01* X20224Y29417D01* X20221Y29409D01* X20220Y29400D01* X20220Y29391D01* X20222Y29383D01* X20234Y29349D01* X20249Y29316D01* X20267Y29284D01* X20288Y29255D01* X20312Y29227D01* X20325Y29214D01* Y27765D01* X20304Y27739D01* X20284Y27709D01* X20266Y27677D01* X20252Y27644D01* X20240Y27610D01* X20238Y27601D01* X20238Y27593D01* X20239Y27584D01* X20242Y27576D01* X20247Y27568D01* X20252Y27561D01* X20259Y27556D01* X20266Y27551D01* X20274Y27548D01* X20283Y27546D01* X20292Y27546D01* X20300Y27547D01* X20308Y27550D01* X20316Y27555D01* X20323Y27560D01* X20325Y27563D01* Y27432D01* X20324Y27434D01* X20317Y27439D01* X20309Y27443D01* X20301Y27446D01* X20292Y27447D01* X20284Y27447D01* X20275Y27445D01* X20267Y27442D01* X20260Y27437D01* X20253Y27431D01* X20248Y27424D01* X20244Y27417D01* X20241Y27409D01* X20240Y27400D01* X20240Y27391D01* X20242Y27383D01* X20254Y27349D01* X20269Y27316D01* X20287Y27284D01* X20308Y27255D01* X20325Y27235D01* Y25740D01* X20324Y25739D01* X20304Y25709D01* X20286Y25677D01* X20272Y25644D01* X20260Y25610D01* X20258Y25601D01* X20258Y25593D01* X20259Y25584D01* X20262Y25576D01* X20267Y25568D01* X20272Y25561D01* X20279Y25556D01* X20286Y25551D01* X20294Y25548D01* X20303Y25546D01* X20312Y25546D01* X20320Y25547D01* X20325Y25549D01* Y25445D01* X20321Y25446D01* X20312Y25447D01* X20304Y25447D01* X20295Y25445D01* X20287Y25442D01* X20280Y25437D01* X20273Y25431D01* X20268Y25424D01* X20264Y25417D01* X20261Y25409D01* X20260Y25400D01* X20260Y25391D01* X20262Y25383D01* X20274Y25349D01* X20289Y25316D01* X20307Y25284D01* X20325Y25259D01* Y23711D01* X20324Y23709D01* X20306Y23677D01* X20292Y23644D01* X20280Y23610D01* X20278Y23601D01* X20278Y23593D01* X20279Y23584D01* X20282Y23576D01* X20287Y23568D01* X20292Y23561D01* X20299Y23556D01* X20306Y23551D01* X20314Y23548D01* X20323Y23546D01* X20325D01* Y23447D01* X20324Y23447D01* X20315Y23445D01* X20307Y23442D01* X20300Y23437D01* X20293Y23431D01* X20288Y23424D01* X20284Y23417D01* X20281Y23409D01* X20280Y23400D01* X20280Y23391D01* X20282Y23383D01* X20294Y23349D01* X20309Y23316D01* X20325Y23288D01* Y21675D01* X20312Y21644D01* X20300Y21610D01* X20298Y21601D01* X20298Y21593D01* X20299Y21584D01* X20302Y21576D01* X20307Y21568D01* X20312Y21561D01* X20319Y21556D01* X20325Y21552D01* Y21441D01* X20320Y21437D01* X20313Y21431D01* X20308Y21424D01* X20304Y21417D01* X20301Y21409D01* X20300Y21400D01* X20300Y21391D01* X20302Y21383D01* X20314Y21349D01* X20325Y21325D01* Y19625D01* X20320Y19610D01* X20318Y19601D01* X20318Y19593D01* X20319Y19584D01* X20322Y19576D01* X20325Y19571D01* Y19419D01* X20324Y19417D01* X20321Y19409D01* X20320Y19400D01* X20320Y19391D01* X20322Y19383D01* X20325Y19374D01* Y0D01* X19064D01* Y1142D01* X19068Y1144D01* X19100Y1162D01* X19129Y1183D01* X19157Y1207D01* X19182Y1232D01* X19205Y1260D01* X19225Y1290D01* X19243Y1322D01* X19257Y1355D01* X19269Y1389D01* X19271Y1398D01* X19271Y1407D01* X19270Y1415D01* X19267Y1423D01* X19262Y1431D01* X19257Y1438D01* X19250Y1444D01* X19243Y1448D01* X19235Y1451D01* X19226Y1453D01* X19217Y1453D01* X19209Y1452D01* X19201Y1449D01* X19193Y1445D01* X19186Y1439D01* X19180Y1433D01* X19176Y1425D01* X19173Y1417D01* X19164Y1391D01* X19153Y1366D01* X19140Y1343D01* X19125Y1320D01* X19108Y1299D01* X19089Y1280D01* X19068Y1262D01* X19064Y1259D01* Y1740D01* X19085Y1723D01* X19104Y1704D01* X19122Y1683D01* X19137Y1661D01* X19151Y1637D01* X19162Y1613D01* X19171Y1587D01* X19175Y1579D01* X19179Y1572D01* X19185Y1565D01* X19192Y1560D01* X19200Y1556D01* X19208Y1553D01* X19217Y1552D01* X19225Y1552D01* X19234Y1554D01* X19242Y1557D01* X19249Y1562D01* X19256Y1568D01* X19261Y1575D01* X19265Y1582D01* X19268Y1591D01* X19269Y1599D01* X19269Y1608D01* X19267Y1617D01* X19255Y1651D01* X19240Y1683D01* X19222Y1715D01* X19201Y1744D01* X19177Y1772D01* X19152Y1797D01* X19124Y1820D01* X19094Y1840D01* X19064Y1857D01* Y3153D01* X19080Y3162D01* X19109Y3183D01* X19137Y3207D01* X19162Y3232D01* X19185Y3260D01* X19205Y3290D01* X19223Y3322D01* X19237Y3355D01* X19249Y3389D01* X19251Y3398D01* X19251Y3407D01* X19250Y3415D01* X19247Y3423D01* X19242Y3431D01* X19237Y3438D01* X19230Y3444D01* X19223Y3448D01* X19215Y3451D01* X19206Y3453D01* X19197Y3453D01* X19189Y3452D01* X19181Y3449D01* X19173Y3445D01* X19166Y3439D01* X19160Y3433D01* X19156Y3425D01* X19153Y3417D01* X19144Y3391D01* X19133Y3366D01* X19120Y3343D01* X19105Y3320D01* X19088Y3299D01* X19069Y3280D01* X19064Y3276D01* Y3724D01* X19065Y3723D01* X19084Y3704D01* X19102Y3683D01* X19117Y3661D01* X19131Y3637D01* X19142Y3613D01* X19151Y3587D01* X19155Y3579D01* X19159Y3572D01* X19165Y3565D01* X19172Y3560D01* X19180Y3556D01* X19188Y3553D01* X19197Y3552D01* X19205Y3552D01* X19214Y3554D01* X19222Y3557D01* X19229Y3562D01* X19236Y3568D01* X19241Y3575D01* X19245Y3582D01* X19248Y3591D01* X19249Y3599D01* X19249Y3608D01* X19247Y3617D01* X19235Y3651D01* X19220Y3683D01* X19202Y3715D01* X19181Y3744D01* X19157Y3772D01* X19132Y3797D01* X19104Y3820D01* X19074Y3840D01* X19064Y3846D01* Y5165D01* X19089Y5183D01* X19117Y5207D01* X19142Y5232D01* X19165Y5260D01* X19185Y5290D01* X19203Y5322D01* X19217Y5355D01* X19229Y5389D01* X19231Y5398D01* X19231Y5407D01* X19230Y5415D01* X19227Y5423D01* X19222Y5431D01* X19217Y5438D01* X19210Y5444D01* X19203Y5448D01* X19195Y5451D01* X19186Y5453D01* X19177Y5453D01* X19169Y5452D01* X19161Y5449D01* X19153Y5445D01* X19146Y5439D01* X19140Y5433D01* X19136Y5425D01* X19133Y5417D01* X19124Y5391D01* X19113Y5366D01* X19100Y5343D01* X19085Y5320D01* X19068Y5299D01* X19064Y5295D01* Y5704D01* X19064Y5704D01* X19082Y5683D01* X19097Y5661D01* X19111Y5637D01* X19122Y5613D01* X19131Y5587D01* X19135Y5579D01* X19139Y5572D01* X19145Y5565D01* X19152Y5560D01* X19160Y5556D01* X19168Y5553D01* X19177Y5552D01* X19185Y5552D01* X19194Y5554D01* X19202Y5557D01* X19209Y5562D01* X19216Y5568D01* X19221Y5575D01* X19225Y5582D01* X19228Y5591D01* X19229Y5599D01* X19229Y5608D01* X19227Y5617D01* X19215Y5651D01* X19200Y5683D01* X19182Y5715D01* X19161Y5744D01* X19137Y5772D01* X19112Y5797D01* X19084Y5820D01* X19064Y5834D01* Y7180D01* X19069Y7183D01* X19097Y7207D01* X19122Y7232D01* X19145Y7260D01* X19165Y7290D01* X19183Y7322D01* X19197Y7355D01* X19209Y7389D01* X19211Y7398D01* X19211Y7407D01* X19210Y7415D01* X19207Y7423D01* X19202Y7431D01* X19197Y7438D01* X19190Y7444D01* X19183Y7448D01* X19175Y7451D01* X19166Y7453D01* X19157Y7453D01* X19149Y7452D01* X19141Y7449D01* X19133Y7445D01* X19126Y7439D01* X19120Y7433D01* X19116Y7425D01* X19113Y7417D01* X19104Y7391D01* X19093Y7366D01* X19080Y7343D01* X19065Y7320D01* X19064Y7319D01* Y7680D01* X19077Y7661D01* X19091Y7637D01* X19102Y7613D01* X19111Y7587D01* X19115Y7579D01* X19119Y7572D01* X19125Y7565D01* X19132Y7560D01* X19140Y7556D01* X19148Y7553D01* X19157Y7552D01* X19165Y7552D01* X19174Y7554D01* X19182Y7557D01* X19189Y7562D01* X19196Y7568D01* X19201Y7575D01* X19205Y7582D01* X19208Y7591D01* X19209Y7599D01* X19209Y7608D01* X19207Y7617D01* X19195Y7651D01* X19180Y7683D01* X19162Y7715D01* X19141Y7744D01* X19117Y7772D01* X19092Y7797D01* X19064Y7820D01* Y9196D01* X19077Y9207D01* X19102Y9232D01* X19125Y9260D01* X19145Y9290D01* X19163Y9322D01* X19177Y9355D01* X19189Y9389D01* X19191Y9398D01* X19191Y9407D01* X19190Y9415D01* X19187Y9423D01* X19182Y9431D01* X19177Y9438D01* X19170Y9444D01* X19163Y9448D01* X19155Y9451D01* X19146Y9453D01* X19137Y9453D01* X19129Y9452D01* X19121Y9449D01* X19113Y9445D01* X19106Y9439D01* X19100Y9433D01* X19096Y9425D01* X19093Y9417D01* X19084Y9391D01* X19073Y9366D01* X19064Y9350D01* Y9650D01* X19071Y9637D01* X19082Y9613D01* X19091Y9587D01* X19095Y9579D01* X19099Y9572D01* X19105Y9565D01* X19112Y9560D01* X19120Y9556D01* X19128Y9553D01* X19137Y9552D01* X19145Y9552D01* X19154Y9554D01* X19162Y9557D01* X19169Y9562D01* X19176Y9568D01* X19181Y9575D01* X19185Y9582D01* X19188Y9591D01* X19189Y9599D01* X19189Y9608D01* X19187Y9617D01* X19175Y9651D01* X19160Y9683D01* X19142Y9715D01* X19121Y9744D01* X19097Y9772D01* X19072Y9797D01* X19064Y9804D01* Y11214D01* X19082Y11232D01* X19105Y11260D01* X19125Y11290D01* X19143Y11322D01* X19157Y11355D01* X19169Y11389D01* X19171Y11398D01* X19171Y11407D01* X19170Y11415D01* X19167Y11423D01* X19162Y11431D01* X19157Y11438D01* X19150Y11444D01* X19143Y11448D01* X19135Y11451D01* X19126Y11453D01* X19117Y11453D01* X19109Y11452D01* X19101Y11449D01* X19093Y11445D01* X19086Y11439D01* X19080Y11433D01* X19076Y11425D01* X19073Y11417D01* X19064Y11391D01* X19064Y11391D01* Y11608D01* X19071Y11587D01* X19075Y11579D01* X19079Y11572D01* X19085Y11565D01* X19092Y11560D01* X19100Y11556D01* X19108Y11553D01* X19117Y11552D01* X19125Y11552D01* X19134Y11554D01* X19142Y11557D01* X19149Y11562D01* X19156Y11568D01* X19161Y11575D01* X19165Y11582D01* X19168Y11591D01* X19169Y11599D01* X19169Y11608D01* X19167Y11617D01* X19155Y11651D01* X19140Y11683D01* X19122Y11715D01* X19101Y11744D01* X19077Y11772D01* X19064Y11785D01* Y13235D01* X19085Y13260D01* X19105Y13290D01* X19123Y13322D01* X19137Y13355D01* X19149Y13389D01* X19151Y13398D01* X19151Y13407D01* X19150Y13415D01* X19147Y13423D01* X19142Y13431D01* X19137Y13438D01* X19130Y13444D01* X19123Y13448D01* X19115Y13451D01* X19106Y13453D01* X19097Y13453D01* X19089Y13452D01* X19081Y13449D01* X19073Y13445D01* X19066Y13439D01* X19064Y13437D01* Y13567D01* X19065Y13565D01* X19072Y13560D01* X19080Y13556D01* X19088Y13553D01* X19097Y13552D01* X19105Y13552D01* X19114Y13554D01* X19122Y13557D01* X19129Y13562D01* X19136Y13568D01* X19141Y13575D01* X19145Y13582D01* X19148Y13591D01* X19149Y13599D01* X19149Y13608D01* X19147Y13617D01* X19135Y13651D01* X19120Y13683D01* X19102Y13715D01* X19081Y13744D01* X19064Y13764D01* Y15259D01* X19065Y15260D01* X19085Y15290D01* X19103Y15322D01* X19117Y15355D01* X19129Y15389D01* X19131Y15398D01* X19131Y15407D01* X19130Y15415D01* X19127Y15423D01* X19122Y15431D01* X19117Y15438D01* X19110Y15444D01* X19103Y15448D01* X19095Y15451D01* X19086Y15453D01* X19077Y15453D01* X19069Y15452D01* X19064Y15450D01* Y15555D01* X19068Y15553D01* X19077Y15552D01* X19085Y15552D01* X19094Y15554D01* X19102Y15557D01* X19109Y15562D01* X19116Y15568D01* X19121Y15575D01* X19125Y15582D01* X19128Y15591D01* X19129Y15599D01* X19129Y15608D01* X19127Y15617D01* X19115Y15651D01* X19100Y15683D01* X19082Y15715D01* X19064Y15740D01* Y17288D01* X19065Y17290D01* X19083Y17322D01* X19097Y17355D01* X19109Y17389D01* X19111Y17398D01* X19111Y17407D01* X19110Y17415D01* X19107Y17423D01* X19102Y17431D01* X19097Y17438D01* X19090Y17444D01* X19083Y17448D01* X19075Y17451D01* X19066Y17453D01* X19064D01* Y17552D01* X19065D01* X19074Y17554D01* X19082Y17557D01* X19089Y17562D01* X19096Y17568D01* X19101Y17575D01* X19105Y17582D01* X19108Y17591D01* X19109Y17599D01* X19109Y17608D01* X19107Y17617D01* X19095Y17651D01* X19080Y17683D01* X19064Y17711D01* Y19324D01* X19077Y19355D01* X19089Y19389D01* X19091Y19398D01* X19091Y19407D01* X19090Y19415D01* X19087Y19423D01* X19082Y19431D01* X19077Y19438D01* X19070Y19444D01* X19064Y19447D01* Y19559D01* X19069Y19562D01* X19076Y19568D01* X19081Y19575D01* X19085Y19582D01* X19088Y19591D01* X19089Y19599D01* X19089Y19608D01* X19087Y19617D01* X19075Y19651D01* X19064Y19674D01* Y21374D01* X19069Y21389D01* X19071Y21398D01* X19071Y21407D01* X19070Y21415D01* X19067Y21423D01* X19064Y21428D01* Y21580D01* X19065Y21582D01* X19068Y21591D01* X19069Y21599D01* X19069Y21608D01* X19067Y21617D01* X19064Y21625D01* Y40000D01* G37* G36* X20325D02*X20505D01* Y33859D01* X20502Y33864D01* X20496Y33871D01* X20489Y33876D01* X20482Y33880D01* X20473Y33883D01* X20465Y33884D01* X20456Y33884D01* X20448Y33882D01* X20413Y33870D01* X20381Y33855D01* X20349Y33837D01* X20325Y33820D01* Y35166D01* X20335Y35159D01* X20367Y35141D01* X20400Y35127D01* X20434Y35115D01* X20443Y35113D01* X20452Y35113D01* X20460Y35115D01* X20468Y35117D01* X20476Y35122D01* X20483Y35127D01* X20489Y35134D01* X20493Y35141D01* X20496Y35149D01* X20498Y35158D01* X20498Y35167D01* X20497Y35175D01* X20494Y35183D01* X20490Y35191D01* X20484Y35198D01* X20477Y35204D01* X20470Y35208D01* X20462Y35211D01* X20436Y35220D01* X20411Y35231D01* X20388Y35244D01* X20365Y35259D01* X20344Y35276D01* X20325Y35295D01* Y35704D01* X20340Y35719D01* X20361Y35737D01* X20383Y35752D01* X20407Y35766D01* X20431Y35777D01* X20457Y35786D01* X20465Y35790D01* X20472Y35794D01* X20479Y35800D01* X20484Y35807D01* X20488Y35815D01* X20491Y35823D01* X20492Y35832D01* X20492Y35840D01* X20490Y35849D01* X20487Y35857D01* X20482Y35864D01* X20476Y35871D01* X20469Y35876D01* X20462Y35880D01* X20453Y35883D01* X20445Y35884D01* X20436Y35884D01* X20428Y35882D01* X20393Y35870D01* X20361Y35855D01* X20329Y35837D01* X20325Y35834D01* Y37153D01* X20347Y37141D01* X20380Y37127D01* X20414Y37115D01* X20423Y37113D01* X20432Y37113D01* X20440Y37115D01* X20448Y37117D01* X20456Y37122D01* X20463Y37127D01* X20469Y37134D01* X20473Y37141D01* X20476Y37149D01* X20478Y37158D01* X20478Y37167D01* X20477Y37175D01* X20474Y37183D01* X20470Y37191D01* X20464Y37198D01* X20457Y37204D01* X20450Y37208D01* X20442Y37211D01* X20416Y37220D01* X20391Y37231D01* X20368Y37244D01* X20345Y37259D01* X20325Y37276D01* Y37723D01* X20341Y37737D01* X20363Y37752D01* X20387Y37766D01* X20411Y37777D01* X20437Y37786D01* X20445Y37790D01* X20452Y37794D01* X20459Y37800D01* X20464Y37807D01* X20468Y37815D01* X20471Y37823D01* X20472Y37832D01* X20472Y37840D01* X20470Y37849D01* X20467Y37857D01* X20462Y37864D01* X20456Y37871D01* X20449Y37876D01* X20442Y37880D01* X20433Y37883D01* X20425Y37884D01* X20416Y37884D01* X20408Y37882D01* X20373Y37870D01* X20341Y37855D01* X20325Y37846D01* Y39142D01* X20327Y39141D01* X20360Y39127D01* X20394Y39115D01* X20403Y39113D01* X20412Y39113D01* X20420Y39115D01* X20428Y39117D01* X20436Y39122D01* X20443Y39127D01* X20449Y39134D01* X20453Y39141D01* X20456Y39149D01* X20458Y39158D01* X20458Y39167D01* X20457Y39175D01* X20454Y39183D01* X20450Y39191D01* X20444Y39198D01* X20437Y39204D01* X20430Y39208D01* X20422Y39211D01* X20396Y39220D01* X20371Y39231D01* X20348Y39244D01* X20325Y39259D01* Y39740D01* X20343Y39752D01* X20367Y39766D01* X20391Y39777D01* X20417Y39786D01* X20425Y39790D01* X20432Y39794D01* X20439Y39800D01* X20444Y39807D01* X20448Y39815D01* X20451Y39823D01* X20452Y39832D01* X20452Y39840D01* X20450Y39849D01* X20447Y39857D01* X20442Y39864D01* X20436Y39871D01* X20429Y39876D01* X20422Y39880D01* X20413Y39883D01* X20405Y39884D01* X20396Y39884D01* X20388Y39882D01* X20353Y39870D01* X20325Y39857D01* Y40000D01* G37* G36* X20505Y7740D02*X20504Y7739D01* X20484Y7709D01* X20466Y7677D01* X20452Y7644D01* X20440Y7610D01* X20438Y7601D01* X20438Y7593D01* X20439Y7584D01* X20442Y7576D01* X20447Y7568D01* X20452Y7561D01* X20459Y7556D01* X20466Y7551D01* X20474Y7548D01* X20483Y7546D01* X20492Y7546D01* X20500Y7547D01* X20505Y7549D01* Y7445D01* X20501Y7446D01* X20492Y7447D01* X20484Y7447D01* X20475Y7445D01* X20467Y7442D01* X20460Y7437D01* X20453Y7431D01* X20448Y7424D01* X20444Y7417D01* X20441Y7409D01* X20440Y7400D01* X20440Y7391D01* X20442Y7383D01* X20454Y7349D01* X20469Y7316D01* X20487Y7284D01* X20505Y7259D01* Y5711D01* X20504Y5709D01* X20486Y5677D01* X20472Y5644D01* X20460Y5610D01* X20458Y5601D01* X20458Y5593D01* X20459Y5584D01* X20462Y5576D01* X20467Y5568D01* X20472Y5561D01* X20479Y5556D01* X20486Y5551D01* X20494Y5548D01* X20503Y5546D01* X20505D01* Y5447D01* X20504Y5447D01* X20495Y5445D01* X20487Y5442D01* X20480Y5437D01* X20473Y5431D01* X20468Y5424D01* X20464Y5417D01* X20461Y5409D01* X20460Y5400D01* X20460Y5391D01* X20462Y5383D01* X20474Y5349D01* X20489Y5316D01* X20505Y5288D01* Y3675D01* X20492Y3644D01* X20480Y3610D01* X20478Y3601D01* X20478Y3593D01* X20479Y3584D01* X20482Y3576D01* X20487Y3568D01* X20492Y3561D01* X20499Y3556D01* X20505Y3552D01* Y3441D01* X20500Y3437D01* X20493Y3431D01* X20488Y3424D01* X20484Y3417D01* X20481Y3409D01* X20480Y3400D01* X20480Y3391D01* X20482Y3383D01* X20494Y3349D01* X20505Y3325D01* Y1625D01* X20500Y1610D01* X20498Y1601D01* X20498Y1593D01* X20499Y1584D01* X20502Y1576D01* X20505Y1571D01* Y1419D01* X20504Y1417D01* X20501Y1409D01* X20500Y1400D01* X20500Y1391D01* X20502Y1383D01* X20505Y1374D01* Y0D01* X20325D01* Y19374D01* X20334Y19349D01* X20349Y19316D01* X20367Y19284D01* X20388Y19255D01* X20412Y19227D01* X20437Y19202D01* X20465Y19179D01* X20495Y19159D01* X20505Y19153D01* Y17834D01* X20480Y17816D01* X20452Y17793D01* X20427Y17767D01* X20404Y17739D01* X20384Y17709D01* X20366Y17677D01* X20352Y17644D01* X20340Y17610D01* X20338Y17601D01* X20338Y17593D01* X20339Y17584D01* X20342Y17576D01* X20347Y17568D01* X20352Y17561D01* X20359Y17556D01* X20366Y17551D01* X20374Y17548D01* X20383Y17546D01* X20392Y17546D01* X20400Y17547D01* X20408Y17550D01* X20416Y17555D01* X20423Y17560D01* X20429Y17567D01* X20433Y17574D01* X20436Y17582D01* X20445Y17608D01* X20456Y17633D01* X20469Y17657D01* X20484Y17679D01* X20501Y17700D01* X20505Y17704D01* Y17295D01* X20505Y17295D01* X20487Y17316D01* X20472Y17338D01* X20458Y17362D01* X20447Y17386D01* X20438Y17412D01* X20434Y17420D01* X20430Y17427D01* X20424Y17434D01* X20417Y17439D01* X20409Y17443D01* X20401Y17446D01* X20392Y17447D01* X20384Y17447D01* X20375Y17445D01* X20367Y17442D01* X20360Y17437D01* X20353Y17431D01* X20348Y17424D01* X20344Y17417D01* X20341Y17409D01* X20340Y17400D01* X20340Y17391D01* X20342Y17383D01* X20354Y17349D01* X20369Y17316D01* X20387Y17284D01* X20408Y17255D01* X20432Y17227D01* X20457Y17202D01* X20485Y17179D01* X20505Y17166D01* Y15820D01* X20500Y15816D01* X20472Y15793D01* X20447Y15767D01* X20424Y15739D01* X20404Y15709D01* X20386Y15677D01* X20372Y15644D01* X20360Y15610D01* X20358Y15601D01* X20358Y15593D01* X20359Y15584D01* X20362Y15576D01* X20367Y15568D01* X20372Y15561D01* X20379Y15556D01* X20386Y15551D01* X20394Y15548D01* X20403Y15546D01* X20412Y15546D01* X20420Y15547D01* X20428Y15550D01* X20436Y15555D01* X20443Y15560D01* X20449Y15567D01* X20453Y15574D01* X20456Y15582D01* X20465Y15608D01* X20476Y15633D01* X20489Y15657D01* X20504Y15679D01* X20505Y15680D01* Y15319D01* X20492Y15338D01* X20478Y15362D01* X20467Y15386D01* X20458Y15412D01* X20454Y15420D01* X20450Y15427D01* X20444Y15434D01* X20437Y15439D01* X20429Y15443D01* X20421Y15446D01* X20412Y15447D01* X20404Y15447D01* X20395Y15445D01* X20387Y15442D01* X20380Y15437D01* X20373Y15431D01* X20368Y15424D01* X20364Y15417D01* X20361Y15409D01* X20360Y15400D01* X20360Y15391D01* X20362Y15383D01* X20374Y15349D01* X20389Y15316D01* X20407Y15284D01* X20428Y15255D01* X20452Y15227D01* X20477Y15202D01* X20505Y15179D01* Y13804D01* X20492Y13793D01* X20467Y13767D01* X20444Y13739D01* X20424Y13709D01* X20406Y13677D01* X20392Y13644D01* X20380Y13610D01* X20378Y13601D01* X20378Y13593D01* X20379Y13584D01* X20382Y13576D01* X20387Y13568D01* X20392Y13561D01* X20399Y13556D01* X20406Y13551D01* X20414Y13548D01* X20423Y13546D01* X20432Y13546D01* X20440Y13547D01* X20448Y13550D01* X20456Y13555D01* X20463Y13560D01* X20469Y13567D01* X20473Y13574D01* X20476Y13582D01* X20485Y13608D01* X20496Y13633D01* X20505Y13650D01* Y13349D01* X20498Y13362D01* X20487Y13386D01* X20478Y13412D01* X20474Y13420D01* X20470Y13427D01* X20464Y13434D01* X20457Y13439D01* X20449Y13443D01* X20441Y13446D01* X20432Y13447D01* X20424Y13447D01* X20415Y13445D01* X20407Y13442D01* X20400Y13437D01* X20393Y13431D01* X20388Y13424D01* X20384Y13417D01* X20381Y13409D01* X20380Y13400D01* X20380Y13391D01* X20382Y13383D01* X20394Y13349D01* X20409Y13316D01* X20427Y13284D01* X20448Y13255D01* X20472Y13227D01* X20497Y13202D01* X20505Y13196D01* Y11785D01* X20487Y11767D01* X20464Y11739D01* X20444Y11709D01* X20426Y11677D01* X20412Y11644D01* X20400Y11610D01* X20398Y11601D01* X20398Y11593D01* X20399Y11584D01* X20402Y11576D01* X20407Y11568D01* X20412Y11561D01* X20419Y11556D01* X20426Y11551D01* X20434Y11548D01* X20443Y11546D01* X20452Y11546D01* X20460Y11547D01* X20468Y11550D01* X20476Y11555D01* X20483Y11560D01* X20489Y11567D01* X20493Y11574D01* X20496Y11582D01* X20505Y11608D01* X20505Y11609D01* Y11391D01* X20498Y11412D01* X20494Y11420D01* X20490Y11427D01* X20484Y11434D01* X20477Y11439D01* X20469Y11443D01* X20461Y11446D01* X20452Y11447D01* X20444Y11447D01* X20435Y11445D01* X20427Y11442D01* X20420Y11437D01* X20413Y11431D01* X20408Y11424D01* X20404Y11417D01* X20401Y11409D01* X20400Y11400D01* X20400Y11391D01* X20402Y11383D01* X20414Y11349D01* X20429Y11316D01* X20447Y11284D01* X20468Y11255D01* X20492Y11227D01* X20505Y11214D01* Y9765D01* X20484Y9739D01* X20464Y9709D01* X20446Y9677D01* X20432Y9644D01* X20420Y9610D01* X20418Y9601D01* X20418Y9593D01* X20419Y9584D01* X20422Y9576D01* X20427Y9568D01* X20432Y9561D01* X20439Y9556D01* X20446Y9551D01* X20454Y9548D01* X20463Y9546D01* X20472Y9546D01* X20480Y9547D01* X20488Y9550D01* X20496Y9555D01* X20503Y9560D01* X20505Y9563D01* Y9432D01* X20504Y9434D01* X20497Y9439D01* X20489Y9443D01* X20481Y9446D01* X20472Y9447D01* X20464Y9447D01* X20455Y9445D01* X20447Y9442D01* X20440Y9437D01* X20433Y9431D01* X20428Y9424D01* X20424Y9417D01* X20421Y9409D01* X20420Y9400D01* X20420Y9391D01* X20422Y9383D01* X20434Y9349D01* X20449Y9316D01* X20467Y9284D01* X20488Y9255D01* X20505Y9235D01* Y7740D01* G37* G36* Y19276D02*X20504Y19276D01* X20485Y19295D01* X20467Y19316D01* X20452Y19338D01* X20438Y19362D01* X20427Y19386D01* X20418Y19412D01* X20414Y19420D01* X20410Y19427D01* X20404Y19434D01* X20397Y19439D01* X20389Y19443D01* X20381Y19446D01* X20372Y19447D01* X20364Y19447D01* X20355Y19445D01* X20347Y19442D01* X20340Y19437D01* X20333Y19431D01* X20328Y19424D01* X20325Y19419D01* Y19571D01* X20327Y19568D01* X20332Y19561D01* X20339Y19556D01* X20346Y19551D01* X20354Y19548D01* X20363Y19546D01* X20372Y19546D01* X20380Y19547D01* X20388Y19550D01* X20396Y19555D01* X20403Y19560D01* X20409Y19567D01* X20413Y19574D01* X20416Y19582D01* X20425Y19608D01* X20436Y19633D01* X20449Y19657D01* X20464Y19679D01* X20481Y19700D01* X20500Y19719D01* X20505Y19723D01* Y19276D01* G37* G36* Y19846D02*X20489Y19837D01* X20460Y19816D01* X20432Y19793D01* X20407Y19767D01* X20384Y19739D01* X20364Y19709D01* X20346Y19677D01* X20332Y19644D01* X20325Y19625D01* Y21325D01* X20329Y21316D01* X20347Y21284D01* X20368Y21255D01* X20392Y21227D01* X20417Y21202D01* X20445Y21179D01* X20475Y21159D01* X20505Y21142D01* Y19846D01* G37* G36* Y21259D02*X20505Y21259D01* X20484Y21276D01* X20465Y21295D01* X20447Y21316D01* X20432Y21338D01* X20418Y21362D01* X20407Y21386D01* X20398Y21412D01* X20394Y21420D01* X20390Y21427D01* X20384Y21434D01* X20377Y21439D01* X20369Y21443D01* X20361Y21446D01* X20352Y21447D01* X20344Y21447D01* X20335Y21445D01* X20327Y21442D01* X20325Y21441D01* Y21552D01* X20326Y21551D01* X20334Y21548D01* X20343Y21546D01* X20352Y21546D01* X20360Y21547D01* X20368Y21550D01* X20376Y21555D01* X20383Y21560D01* X20389Y21567D01* X20393Y21574D01* X20396Y21582D01* X20405Y21608D01* X20416Y21633D01* X20429Y21657D01* X20444Y21679D01* X20461Y21700D01* X20480Y21719D01* X20501Y21737D01* X20505Y21740D01* Y21259D01* G37* G36* Y21857D02*X20501Y21855D01* X20469Y21837D01* X20440Y21816D01* X20412Y21793D01* X20387Y21767D01* X20364Y21739D01* X20344Y21709D01* X20326Y21677D01* X20325Y21675D01* Y23288D01* X20327Y23284D01* X20348Y23255D01* X20372Y23227D01* X20397Y23202D01* X20425Y23179D01* X20455Y23159D01* X20487Y23141D01* X20505Y23133D01* Y21857D01* G37* G36* Y23246D02*X20485Y23259D01* X20464Y23276D01* X20445Y23295D01* X20427Y23316D01* X20412Y23338D01* X20398Y23362D01* X20387Y23386D01* X20378Y23412D01* X20374Y23420D01* X20370Y23427D01* X20364Y23434D01* X20357Y23439D01* X20349Y23443D01* X20341Y23446D01* X20332Y23447D01* X20325Y23447D01* Y23546D01* X20332Y23546D01* X20340Y23547D01* X20348Y23550D01* X20356Y23555D01* X20363Y23560D01* X20369Y23567D01* X20373Y23574D01* X20376Y23582D01* X20385Y23608D01* X20396Y23633D01* X20409Y23657D01* X20424Y23679D01* X20441Y23700D01* X20460Y23719D01* X20481Y23737D01* X20503Y23752D01* X20505Y23754D01* Y23246D01* G37* G36* Y23866D02*X20481Y23855D01* X20449Y23837D01* X20420Y23816D01* X20392Y23793D01* X20367Y23767D01* X20344Y23739D01* X20325Y23711D01* Y25259D01* X20328Y25255D01* X20352Y25227D01* X20377Y25202D01* X20405Y25179D01* X20435Y25159D01* X20467Y25141D01* X20500Y25127D01* X20505Y25125D01* Y23866D01* G37* G36* Y25234D02*X20488Y25244D01* X20465Y25259D01* X20444Y25276D01* X20425Y25295D01* X20407Y25316D01* X20392Y25338D01* X20378Y25362D01* X20367Y25386D01* X20358Y25412D01* X20354Y25420D01* X20350Y25427D01* X20344Y25434D01* X20337Y25439D01* X20329Y25443D01* X20325Y25445D01* Y25549D01* X20328Y25550D01* X20336Y25555D01* X20343Y25560D01* X20349Y25567D01* X20353Y25574D01* X20356Y25582D01* X20365Y25608D01* X20376Y25633D01* X20389Y25657D01* X20404Y25679D01* X20421Y25700D01* X20440Y25719D01* X20461Y25737D01* X20483Y25752D01* X20505Y25765D01* Y25234D01* G37* G36* Y25874D02*X20493Y25870D01* X20461Y25855D01* X20429Y25837D01* X20400Y25816D01* X20372Y25793D01* X20347Y25767D01* X20325Y25740D01* Y27235D01* X20332Y27227D01* X20357Y27202D01* X20385Y27179D01* X20415Y27159D01* X20447Y27141D01* X20480Y27127D01* X20505Y27118D01* Y25874D01* G37* G36* Y27225D02*X20491Y27231D01* X20468Y27244D01* X20445Y27259D01* X20424Y27276D01* X20405Y27295D01* X20387Y27316D01* X20372Y27338D01* X20358Y27362D01* X20347Y27386D01* X20338Y27412D01* X20334Y27420D01* X20330Y27427D01* X20325Y27432D01* Y27563D01* X20329Y27567D01* X20333Y27574D01* X20336Y27582D01* X20345Y27608D01* X20356Y27633D01* X20369Y27657D01* X20384Y27679D01* X20401Y27700D01* X20420Y27719D01* X20441Y27737D01* X20463Y27752D01* X20487Y27766D01* X20505Y27775D01* Y27225D01* G37* G36* Y27881D02*X20473Y27870D01* X20441Y27855D01* X20409Y27837D01* X20380Y27816D01* X20352Y27793D01* X20327Y27767D01* X20325Y27765D01* Y29214D01* X20337Y29202D01* X20365Y29179D01* X20395Y29159D01* X20427Y29141D01* X20460Y29127D01* X20494Y29115D01* X20503Y29113D01* X20505D01* Y27881D01* G37* G36* Y29217D02*X20496Y29220D01* X20471Y29231D01* X20448Y29244D01* X20425Y29259D01* X20404Y29276D01* X20385Y29295D01* X20367Y29316D01* X20352Y29338D01* X20338Y29362D01* X20327Y29386D01* X20325Y29391D01* Y29609D01* X20336Y29633D01* X20349Y29657D01* X20364Y29679D01* X20381Y29700D01* X20400Y29719D01* X20421Y29737D01* X20443Y29752D01* X20467Y29766D01* X20491Y29777D01* X20505Y29782D01* Y29217D01* G37* G36* Y29884D02*X20505Y29884D01* X20496Y29884D01* X20488Y29882D01* X20453Y29870D01* X20421Y29855D01* X20389Y29837D01* X20360Y29816D01* X20332Y29793D01* X20325Y29785D01* Y31196D01* X20345Y31179D01* X20375Y31159D01* X20407Y31141D01* X20440Y31127D01* X20474Y31115D01* X20483Y31113D01* X20492Y31113D01* X20500Y31115D01* X20505Y31116D01* Y29884D01* G37* G36* Y31210D02*X20502Y31211D01* X20476Y31220D01* X20451Y31231D01* X20428Y31244D01* X20405Y31259D01* X20384Y31276D01* X20365Y31295D01* X20347Y31316D01* X20332Y31338D01* X20325Y31349D01* Y31650D01* X20329Y31657D01* X20344Y31679D01* X20361Y31700D01* X20380Y31719D01* X20401Y31737D01* X20423Y31752D01* X20447Y31766D01* X20471Y31777D01* X20497Y31786D01* X20505Y31790D01* X20505Y31790D01* Y31210D01* G37* G36* Y31878D02*X20502Y31880D01* X20493Y31883D01* X20485Y31884D01* X20476Y31884D01* X20468Y31882D01* X20433Y31870D01* X20401Y31855D01* X20369Y31837D01* X20340Y31816D01* X20325Y31804D01* Y33179D01* X20325Y33179D01* X20355Y33159D01* X20387Y33141D01* X20420Y33127D01* X20454Y33115D01* X20463Y33113D01* X20472Y33113D01* X20480Y33115D01* X20488Y33117D01* X20496Y33122D01* X20503Y33127D01* X20505Y33130D01* Y31878D01* G37* G36* Y33197D02*X20504Y33198D01* X20497Y33204D01* X20490Y33208D01* X20482Y33211D01* X20456Y33220D01* X20431Y33231D01* X20408Y33244D01* X20385Y33259D01* X20364Y33276D01* X20345Y33295D01* X20327Y33316D01* X20325Y33319D01* Y33680D01* X20341Y33700D01* X20360Y33719D01* X20381Y33737D01* X20403Y33752D01* X20427Y33766D01* X20451Y33777D01* X20477Y33786D01* X20485Y33790D01* X20492Y33794D01* X20499Y33800D01* X20504Y33807D01* X20505Y33809D01* Y33197D01* G37* G36* Y40000D02*X20764D01* Y39804D01* X20744Y39820D01* X20714Y39840D01* X20682Y39858D01* X20649Y39873D01* X20615Y39884D01* X20606Y39886D01* X20597Y39886D01* X20589Y39885D01* X20581Y39882D01* X20573Y39878D01* X20566Y39872D01* X20560Y39865D01* X20556Y39858D01* X20553Y39850D01* X20551Y39841D01* X20551Y39833D01* X20552Y39824D01* X20555Y39816D01* X20559Y39808D01* X20565Y39801D01* X20572Y39796D01* X20579Y39791D01* X20587Y39788D01* X20613Y39779D01* X20638Y39768D01* X20661Y39755D01* X20684Y39740D01* X20705Y39723D01* X20724Y39704D01* X20742Y39683D01* X20757Y39661D01* X20764Y39650D01* Y39350D01* X20760Y39343D01* X20745Y39320D01* X20728Y39299D01* X20709Y39280D01* X20688Y39262D01* X20666Y39247D01* X20642Y39233D01* X20618Y39222D01* X20592Y39213D01* X20584Y39209D01* X20577Y39205D01* X20570Y39199D01* X20565Y39192D01* X20561Y39184D01* X20558Y39176D01* X20557Y39167D01* X20557Y39159D01* X20559Y39150D01* X20562Y39142D01* X20567Y39135D01* X20573Y39128D01* X20580Y39123D01* X20587Y39119D01* X20596Y39116D01* X20604Y39115D01* X20613Y39115D01* X20621Y39117D01* X20656Y39129D01* X20688Y39144D01* X20720Y39162D01* X20749Y39183D01* X20764Y39196D01* Y37820D01* X20764Y37820D01* X20734Y37840D01* X20702Y37858D01* X20669Y37873D01* X20635Y37884D01* X20626Y37886D01* X20617Y37886D01* X20609Y37885D01* X20601Y37882D01* X20593Y37878D01* X20586Y37872D01* X20580Y37865D01* X20576Y37858D01* X20573Y37850D01* X20571Y37841D01* X20571Y37833D01* X20572Y37824D01* X20575Y37816D01* X20579Y37808D01* X20585Y37801D01* X20592Y37796D01* X20599Y37791D01* X20607Y37788D01* X20633Y37779D01* X20658Y37768D01* X20681Y37755D01* X20704Y37740D01* X20725Y37723D01* X20744Y37704D01* X20762Y37683D01* X20764Y37680D01* Y37319D01* X20748Y37299D01* X20729Y37280D01* X20708Y37262D01* X20686Y37247D01* X20662Y37233D01* X20638Y37222D01* X20612Y37213D01* X20604Y37209D01* X20597Y37205D01* X20590Y37199D01* X20585Y37192D01* X20581Y37184D01* X20578Y37176D01* X20577Y37167D01* X20577Y37159D01* X20579Y37150D01* X20582Y37142D01* X20587Y37135D01* X20593Y37128D01* X20600Y37123D01* X20607Y37119D01* X20616Y37116D01* X20624Y37115D01* X20633Y37115D01* X20641Y37117D01* X20676Y37129D01* X20708Y37144D01* X20740Y37162D01* X20764Y37180D01* Y35834D01* X20754Y35840D01* X20722Y35858D01* X20689Y35873D01* X20655Y35884D01* X20646Y35886D01* X20637Y35886D01* X20629Y35885D01* X20621Y35882D01* X20613Y35878D01* X20606Y35872D01* X20600Y35865D01* X20596Y35858D01* X20593Y35850D01* X20591Y35841D01* X20591Y35833D01* X20592Y35824D01* X20595Y35816D01* X20599Y35808D01* X20605Y35801D01* X20612Y35796D01* X20619Y35791D01* X20627Y35788D01* X20653Y35779D01* X20678Y35768D01* X20701Y35755D01* X20724Y35740D01* X20745Y35723D01* X20764Y35704D01* Y35295D01* X20749Y35280D01* X20728Y35262D01* X20706Y35247D01* X20682Y35233D01* X20658Y35222D01* X20632Y35213D01* X20624Y35209D01* X20617Y35205D01* X20610Y35199D01* X20605Y35192D01* X20601Y35184D01* X20598Y35176D01* X20597Y35167D01* X20597Y35159D01* X20599Y35150D01* X20602Y35142D01* X20607Y35135D01* X20613Y35128D01* X20620Y35123D01* X20627Y35119D01* X20636Y35116D01* X20644Y35115D01* X20653Y35115D01* X20661Y35117D01* X20696Y35129D01* X20728Y35144D01* X20760Y35162D01* X20764Y35165D01* Y33846D01* X20742Y33858D01* X20709Y33873D01* X20675Y33884D01* X20666Y33886D01* X20657Y33886D01* X20649Y33885D01* X20641Y33882D01* X20633Y33878D01* X20626Y33872D01* X20620Y33865D01* X20616Y33858D01* X20613Y33850D01* X20611Y33841D01* X20611Y33833D01* X20612Y33824D01* X20615Y33816D01* X20619Y33808D01* X20625Y33801D01* X20632Y33796D01* X20639Y33791D01* X20647Y33788D01* X20673Y33779D01* X20698Y33768D01* X20721Y33755D01* X20744Y33740D01* X20764Y33724D01* Y33276D01* X20748Y33262D01* X20726Y33247D01* X20702Y33233D01* X20678Y33222D01* X20652Y33213D01* X20644Y33209D01* X20637Y33205D01* X20630Y33199D01* X20625Y33192D01* X20621Y33184D01* X20618Y33176D01* X20617Y33167D01* X20617Y33159D01* X20619Y33150D01* X20622Y33142D01* X20627Y33135D01* X20633Y33128D01* X20640Y33123D01* X20647Y33119D01* X20656Y33116D01* X20664Y33115D01* X20673Y33115D01* X20681Y33117D01* X20716Y33129D01* X20748Y33144D01* X20764Y33153D01* Y31857D01* X20762Y31858D01* X20729Y31873D01* X20695Y31884D01* X20686Y31886D01* X20677Y31886D01* X20669Y31885D01* X20661Y31882D01* X20653Y31878D01* X20646Y31872D01* X20640Y31865D01* X20636Y31858D01* X20633Y31850D01* X20631Y31841D01* X20631Y31833D01* X20632Y31824D01* X20635Y31816D01* X20639Y31808D01* X20645Y31801D01* X20652Y31796D01* X20659Y31791D01* X20667Y31788D01* X20693Y31779D01* X20718Y31768D01* X20741Y31755D01* X20764Y31740D01* Y31259D01* X20746Y31247D01* X20722Y31233D01* X20698Y31222D01* X20672Y31213D01* X20664Y31209D01* X20657Y31205D01* X20650Y31199D01* X20645Y31192D01* X20641Y31184D01* X20638Y31176D01* X20637Y31167D01* X20637Y31159D01* X20639Y31150D01* X20642Y31142D01* X20647Y31135D01* X20653Y31128D01* X20660Y31123D01* X20667Y31119D01* X20676Y31116D01* X20684Y31115D01* X20693Y31115D01* X20701Y31117D01* X20736Y31129D01* X20764Y31142D01* Y29866D01* X20749Y29873D01* X20715Y29884D01* X20706Y29886D01* X20697Y29886D01* X20689Y29885D01* X20681Y29882D01* X20673Y29878D01* X20666Y29872D01* X20660Y29865D01* X20656Y29858D01* X20653Y29850D01* X20651Y29841D01* X20651Y29833D01* X20652Y29824D01* X20655Y29816D01* X20659Y29808D01* X20665Y29801D01* X20672Y29796D01* X20679Y29791D01* X20687Y29788D01* X20713Y29779D01* X20738Y29768D01* X20761Y29755D01* X20764Y29754D01* Y29246D01* X20742Y29233D01* X20718Y29222D01* X20692Y29213D01* X20684Y29209D01* X20677Y29205D01* X20670Y29199D01* X20665Y29192D01* X20661Y29184D01* X20658Y29176D01* X20657Y29167D01* X20657Y29159D01* X20659Y29150D01* X20662Y29142D01* X20667Y29135D01* X20673Y29128D01* X20680Y29123D01* X20687Y29119D01* X20696Y29116D01* X20704Y29115D01* X20713Y29115D01* X20721Y29117D01* X20756Y29129D01* X20764Y29133D01* Y27874D01* X20735Y27884D01* X20726Y27886D01* X20717Y27886D01* X20709Y27885D01* X20701Y27882D01* X20693Y27878D01* X20686Y27872D01* X20680Y27865D01* X20676Y27858D01* X20673Y27850D01* X20671Y27841D01* X20671Y27833D01* X20672Y27824D01* X20675Y27816D01* X20679Y27808D01* X20685Y27801D01* X20692Y27796D01* X20699Y27791D01* X20707Y27788D01* X20733Y27779D01* X20758Y27768D01* X20764Y27765D01* Y27234D01* X20762Y27233D01* X20738Y27222D01* X20712Y27213D01* X20704Y27209D01* X20697Y27205D01* X20690Y27199D01* X20685Y27192D01* X20681Y27184D01* X20678Y27176D01* X20677Y27167D01* X20677Y27159D01* X20679Y27150D01* X20682Y27142D01* X20687Y27135D01* X20693Y27128D01* X20700Y27123D01* X20707Y27119D01* X20716Y27116D01* X20724Y27115D01* X20733Y27115D01* X20741Y27117D01* X20764Y27125D01* Y25881D01* X20755Y25884D01* X20746Y25886D01* X20737Y25886D01* X20729Y25885D01* X20721Y25882D01* X20713Y25878D01* X20706Y25872D01* X20700Y25865D01* X20696Y25858D01* X20693Y25850D01* X20691Y25841D01* X20691Y25833D01* X20692Y25824D01* X20695Y25816D01* X20699Y25808D01* X20705Y25801D01* X20712Y25796D01* X20719Y25791D01* X20727Y25788D01* X20753Y25779D01* X20764Y25774D01* Y25225D01* X20758Y25222D01* X20732Y25213D01* X20724Y25209D01* X20717Y25205D01* X20710Y25199D01* X20705Y25192D01* X20701Y25184D01* X20698Y25176D01* X20697Y25167D01* X20697Y25159D01* X20699Y25150D01* X20702Y25142D01* X20707Y25135D01* X20713Y25128D01* X20720Y25123D01* X20727Y25119D01* X20736Y25116D01* X20744Y25115D01* X20753Y25115D01* X20761Y25117D01* X20764Y25118D01* Y23886D01* X20757Y23886D01* X20749Y23885D01* X20741Y23882D01* X20733Y23878D01* X20726Y23872D01* X20720Y23865D01* X20716Y23858D01* X20713Y23850D01* X20711Y23841D01* X20711Y23833D01* X20712Y23824D01* X20715Y23816D01* X20719Y23808D01* X20725Y23801D01* X20732Y23796D01* X20739Y23791D01* X20747Y23788D01* X20764Y23782D01* Y23217D01* X20752Y23213D01* X20744Y23209D01* X20737Y23205D01* X20730Y23199D01* X20725Y23192D01* X20721Y23184D01* X20718Y23176D01* X20717Y23167D01* X20717Y23159D01* X20719Y23150D01* X20722Y23142D01* X20727Y23135D01* X20733Y23128D01* X20740Y23123D01* X20747Y23119D01* X20756Y23116D01* X20764Y23115D01* Y21883D01* X20761Y21882D01* X20753Y21878D01* X20746Y21872D01* X20740Y21865D01* X20736Y21858D01* X20733Y21850D01* X20731Y21841D01* X20731Y21833D01* X20732Y21824D01* X20735Y21816D01* X20739Y21808D01* X20745Y21801D01* X20752Y21796D01* X20759Y21791D01* X20764Y21789D01* Y21209D01* X20757Y21205D01* X20750Y21199D01* X20745Y21192D01* X20741Y21184D01* X20738Y21176D01* X20737Y21167D01* X20737Y21159D01* X20739Y21150D01* X20742Y21142D01* X20747Y21135D01* X20753Y21128D01* X20760Y21123D01* X20764Y21121D01* Y19870D01* X20760Y19865D01* X20756Y19858D01* X20753Y19850D01* X20751Y19841D01* X20751Y19833D01* X20752Y19824D01* X20755Y19816D01* X20759Y19808D01* X20764Y19802D01* Y19190D01* X20761Y19184D01* X20758Y19176D01* X20757Y19167D01* X20757Y19159D01* X20759Y19150D01* X20762Y19142D01* X20764Y19140D01* Y7861D01* X20762Y7864D01* X20756Y7871D01* X20749Y7876D01* X20742Y7880D01* X20733Y7883D01* X20725Y7884D01* X20716Y7884D01* X20708Y7882D01* X20673Y7870D01* X20641Y7855D01* X20609Y7837D01* X20580Y7816D01* X20552Y7793D01* X20527Y7767D01* X20505Y7740D01* Y9235D01* X20512Y9227D01* X20537Y9202D01* X20565Y9179D01* X20595Y9159D01* X20627Y9141D01* X20660Y9127D01* X20694Y9115D01* X20703Y9113D01* X20712Y9113D01* X20720Y9115D01* X20728Y9117D01* X20736Y9122D01* X20743Y9127D01* X20749Y9134D01* X20753Y9141D01* X20756Y9149D01* X20758Y9158D01* X20758Y9167D01* X20757Y9175D01* X20754Y9183D01* X20750Y9191D01* X20744Y9198D01* X20737Y9204D01* X20730Y9208D01* X20722Y9211D01* X20696Y9220D01* X20671Y9231D01* X20648Y9244D01* X20625Y9259D01* X20604Y9276D01* X20585Y9295D01* X20567Y9316D01* X20552Y9338D01* X20538Y9362D01* X20527Y9386D01* X20518Y9412D01* X20514Y9420D01* X20510Y9427D01* X20505Y9432D01* Y9563D01* X20509Y9567D01* X20513Y9574D01* X20516Y9582D01* X20525Y9608D01* X20536Y9633D01* X20549Y9657D01* X20564Y9679D01* X20581Y9700D01* X20600Y9719D01* X20621Y9737D01* X20643Y9752D01* X20667Y9766D01* X20691Y9777D01* X20717Y9786D01* X20725Y9790D01* X20732Y9794D01* X20739Y9800D01* X20744Y9807D01* X20748Y9815D01* X20751Y9823D01* X20752Y9832D01* X20752Y9840D01* X20750Y9849D01* X20747Y9857D01* X20742Y9864D01* X20736Y9871D01* X20729Y9876D01* X20722Y9880D01* X20713Y9883D01* X20705Y9884D01* X20696Y9884D01* X20688Y9882D01* X20653Y9870D01* X20621Y9855D01* X20589Y9837D01* X20560Y9816D01* X20532Y9793D01* X20507Y9767D01* X20505Y9765D01* Y11214D01* X20517Y11202D01* X20545Y11179D01* X20575Y11159D01* X20607Y11141D01* X20640Y11127D01* X20674Y11115D01* X20683Y11113D01* X20692Y11113D01* X20700Y11115D01* X20708Y11117D01* X20716Y11122D01* X20723Y11127D01* X20729Y11134D01* X20733Y11141D01* X20736Y11149D01* X20738Y11158D01* X20738Y11167D01* X20737Y11175D01* X20734Y11183D01* X20730Y11191D01* X20724Y11198D01* X20717Y11204D01* X20710Y11208D01* X20702Y11211D01* X20676Y11220D01* X20651Y11231D01* X20628Y11244D01* X20605Y11259D01* X20584Y11276D01* X20565Y11295D01* X20547Y11316D01* X20532Y11338D01* X20518Y11362D01* X20507Y11386D01* X20505Y11391D01* Y11609D01* X20516Y11633D01* X20529Y11657D01* X20544Y11679D01* X20561Y11700D01* X20580Y11719D01* X20601Y11737D01* X20623Y11752D01* X20647Y11766D01* X20671Y11777D01* X20697Y11786D01* X20705Y11790D01* X20712Y11794D01* X20719Y11800D01* X20724Y11807D01* X20728Y11815D01* X20731Y11823D01* X20732Y11832D01* X20732Y11840D01* X20730Y11849D01* X20727Y11857D01* X20722Y11864D01* X20716Y11871D01* X20709Y11876D01* X20702Y11880D01* X20693Y11883D01* X20685Y11884D01* X20676Y11884D01* X20668Y11882D01* X20633Y11870D01* X20601Y11855D01* X20569Y11837D01* X20540Y11816D01* X20512Y11793D01* X20505Y11785D01* Y13196D01* X20525Y13179D01* X20555Y13159D01* X20587Y13141D01* X20620Y13127D01* X20654Y13115D01* X20663Y13113D01* X20672Y13113D01* X20680Y13115D01* X20688Y13117D01* X20696Y13122D01* X20703Y13127D01* X20709Y13134D01* X20713Y13141D01* X20716Y13149D01* X20718Y13158D01* X20718Y13167D01* X20717Y13175D01* X20714Y13183D01* X20710Y13191D01* X20704Y13198D01* X20697Y13204D01* X20690Y13208D01* X20682Y13211D01* X20656Y13220D01* X20631Y13231D01* X20608Y13244D01* X20585Y13259D01* X20564Y13276D01* X20545Y13295D01* X20527Y13316D01* X20512Y13338D01* X20505Y13349D01* Y13650D01* X20509Y13657D01* X20524Y13679D01* X20541Y13700D01* X20560Y13719D01* X20581Y13737D01* X20603Y13752D01* X20627Y13766D01* X20651Y13777D01* X20677Y13786D01* X20685Y13790D01* X20692Y13794D01* X20699Y13800D01* X20704Y13807D01* X20708Y13815D01* X20711Y13823D01* X20712Y13832D01* X20712Y13840D01* X20710Y13849D01* X20707Y13857D01* X20702Y13864D01* X20696Y13871D01* X20689Y13876D01* X20682Y13880D01* X20673Y13883D01* X20665Y13884D01* X20656Y13884D01* X20648Y13882D01* X20613Y13870D01* X20581Y13855D01* X20549Y13837D01* X20520Y13816D01* X20505Y13804D01* Y15179D01* X20505Y15179D01* X20535Y15159D01* X20567Y15141D01* X20600Y15127D01* X20634Y15115D01* X20643Y15113D01* X20652Y15113D01* X20660Y15115D01* X20668Y15117D01* X20676Y15122D01* X20683Y15127D01* X20689Y15134D01* X20693Y15141D01* X20696Y15149D01* X20698Y15158D01* X20698Y15167D01* X20697Y15175D01* X20694Y15183D01* X20690Y15191D01* X20684Y15198D01* X20677Y15204D01* X20670Y15208D01* X20662Y15211D01* X20636Y15220D01* X20611Y15231D01* X20588Y15244D01* X20565Y15259D01* X20544Y15276D01* X20525Y15295D01* X20507Y15316D01* X20505Y15319D01* Y15680D01* X20521Y15700D01* X20540Y15719D01* X20561Y15737D01* X20583Y15752D01* X20607Y15766D01* X20631Y15777D01* X20657Y15786D01* X20665Y15790D01* X20672Y15794D01* X20679Y15800D01* X20684Y15807D01* X20688Y15815D01* X20691Y15823D01* X20692Y15832D01* X20692Y15840D01* X20690Y15849D01* X20687Y15857D01* X20682Y15864D01* X20676Y15871D01* X20669Y15876D01* X20662Y15880D01* X20653Y15883D01* X20645Y15884D01* X20636Y15884D01* X20628Y15882D01* X20593Y15870D01* X20561Y15855D01* X20529Y15837D01* X20505Y15820D01* Y17166D01* X20515Y17159D01* X20547Y17141D01* X20580Y17127D01* X20614Y17115D01* X20623Y17113D01* X20632Y17113D01* X20640Y17115D01* X20648Y17117D01* X20656Y17122D01* X20663Y17127D01* X20669Y17134D01* X20673Y17141D01* X20676Y17149D01* X20678Y17158D01* X20678Y17167D01* X20677Y17175D01* X20674Y17183D01* X20670Y17191D01* X20664Y17198D01* X20657Y17204D01* X20650Y17208D01* X20642Y17211D01* X20616Y17220D01* X20591Y17231D01* X20568Y17244D01* X20545Y17259D01* X20524Y17276D01* X20505Y17295D01* Y17704D01* X20520Y17719D01* X20541Y17737D01* X20563Y17752D01* X20587Y17766D01* X20611Y17777D01* X20637Y17786D01* X20645Y17790D01* X20652Y17794D01* X20659Y17800D01* X20664Y17807D01* X20668Y17815D01* X20671Y17823D01* X20672Y17832D01* X20672Y17840D01* X20670Y17849D01* X20667Y17857D01* X20662Y17864D01* X20656Y17871D01* X20649Y17876D01* X20642Y17880D01* X20633Y17883D01* X20625Y17884D01* X20616Y17884D01* X20608Y17882D01* X20573Y17870D01* X20541Y17855D01* X20509Y17837D01* X20505Y17834D01* Y19153D01* X20527Y19141D01* X20560Y19127D01* X20594Y19115D01* X20603Y19113D01* X20612Y19113D01* X20620Y19115D01* X20628Y19117D01* X20636Y19122D01* X20643Y19127D01* X20649Y19134D01* X20653Y19141D01* X20656Y19149D01* X20658Y19158D01* X20658Y19167D01* X20657Y19175D01* X20654Y19183D01* X20650Y19191D01* X20644Y19198D01* X20637Y19204D01* X20630Y19208D01* X20622Y19211D01* X20596Y19220D01* X20571Y19231D01* X20548Y19244D01* X20525Y19259D01* X20505Y19276D01* Y19723D01* X20521Y19737D01* X20543Y19752D01* X20567Y19766D01* X20591Y19777D01* X20617Y19786D01* X20625Y19790D01* X20632Y19794D01* X20639Y19800D01* X20644Y19807D01* X20648Y19815D01* X20651Y19823D01* X20652Y19832D01* X20652Y19840D01* X20650Y19849D01* X20647Y19857D01* X20642Y19864D01* X20636Y19871D01* X20629Y19876D01* X20622Y19880D01* X20613Y19883D01* X20605Y19884D01* X20596Y19884D01* X20588Y19882D01* X20553Y19870D01* X20521Y19855D01* X20505Y19846D01* Y21142D01* X20507Y21141D01* X20540Y21127D01* X20574Y21115D01* X20583Y21113D01* X20592Y21113D01* X20600Y21115D01* X20608Y21117D01* X20616Y21122D01* X20623Y21127D01* X20629Y21134D01* X20633Y21141D01* X20636Y21149D01* X20638Y21158D01* X20638Y21167D01* X20637Y21175D01* X20634Y21183D01* X20630Y21191D01* X20624Y21198D01* X20617Y21204D01* X20610Y21208D01* X20602Y21211D01* X20576Y21220D01* X20551Y21231D01* X20528Y21244D01* X20505Y21259D01* Y21740D01* X20523Y21752D01* X20547Y21766D01* X20571Y21777D01* X20597Y21786D01* X20605Y21790D01* X20612Y21794D01* X20619Y21800D01* X20624Y21807D01* X20628Y21815D01* X20631Y21823D01* X20632Y21832D01* X20632Y21840D01* X20630Y21849D01* X20627Y21857D01* X20622Y21864D01* X20616Y21871D01* X20609Y21876D01* X20602Y21880D01* X20593Y21883D01* X20585Y21884D01* X20576Y21884D01* X20568Y21882D01* X20533Y21870D01* X20505Y21857D01* Y23133D01* X20520Y23127D01* X20554Y23115D01* X20563Y23113D01* X20572Y23113D01* X20580Y23115D01* X20588Y23117D01* X20596Y23122D01* X20603Y23127D01* X20609Y23134D01* X20613Y23141D01* X20616Y23149D01* X20618Y23158D01* X20618Y23167D01* X20617Y23175D01* X20614Y23183D01* X20610Y23191D01* X20604Y23198D01* X20597Y23204D01* X20590Y23208D01* X20582Y23211D01* X20556Y23220D01* X20531Y23231D01* X20508Y23244D01* X20505Y23246D01* Y23754D01* X20527Y23766D01* X20551Y23777D01* X20577Y23786D01* X20585Y23790D01* X20592Y23794D01* X20599Y23800D01* X20604Y23807D01* X20608Y23815D01* X20611Y23823D01* X20612Y23832D01* X20612Y23840D01* X20610Y23849D01* X20607Y23857D01* X20602Y23864D01* X20596Y23871D01* X20589Y23876D01* X20582Y23880D01* X20573Y23883D01* X20565Y23884D01* X20556Y23884D01* X20548Y23882D01* X20513Y23870D01* X20505Y23866D01* Y25125D01* X20534Y25115D01* X20543Y25113D01* X20552Y25113D01* X20560Y25115D01* X20568Y25117D01* X20576Y25122D01* X20583Y25127D01* X20589Y25134D01* X20593Y25141D01* X20596Y25149D01* X20598Y25158D01* X20598Y25167D01* X20597Y25175D01* X20594Y25183D01* X20590Y25191D01* X20584Y25198D01* X20577Y25204D01* X20570Y25208D01* X20562Y25211D01* X20536Y25220D01* X20511Y25231D01* X20505Y25234D01* Y25765D01* X20507Y25766D01* X20531Y25777D01* X20557Y25786D01* X20565Y25790D01* X20572Y25794D01* X20579Y25800D01* X20584Y25807D01* X20588Y25815D01* X20591Y25823D01* X20592Y25832D01* X20592Y25840D01* X20590Y25849D01* X20587Y25857D01* X20582Y25864D01* X20576Y25871D01* X20569Y25876D01* X20562Y25880D01* X20553Y25883D01* X20545Y25884D01* X20536Y25884D01* X20528Y25882D01* X20505Y25874D01* Y27118D01* X20514Y27115D01* X20523Y27113D01* X20532Y27113D01* X20540Y27115D01* X20548Y27117D01* X20556Y27122D01* X20563Y27127D01* X20569Y27134D01* X20573Y27141D01* X20576Y27149D01* X20578Y27158D01* X20578Y27167D01* X20577Y27175D01* X20574Y27183D01* X20570Y27191D01* X20564Y27198D01* X20557Y27204D01* X20550Y27208D01* X20542Y27211D01* X20516Y27220D01* X20505Y27225D01* Y27775D01* X20511Y27777D01* X20537Y27786D01* X20545Y27790D01* X20552Y27794D01* X20559Y27800D01* X20564Y27807D01* X20568Y27815D01* X20571Y27823D01* X20572Y27832D01* X20572Y27840D01* X20570Y27849D01* X20567Y27857D01* X20562Y27864D01* X20556Y27871D01* X20549Y27876D01* X20542Y27880D01* X20533Y27883D01* X20525Y27884D01* X20516Y27884D01* X20508Y27882D01* X20505Y27881D01* Y29113D01* X20512Y29113D01* X20520Y29115D01* X20528Y29117D01* X20536Y29122D01* X20543Y29127D01* X20549Y29134D01* X20553Y29141D01* X20556Y29149D01* X20558Y29158D01* X20558Y29167D01* X20557Y29175D01* X20554Y29183D01* X20550Y29191D01* X20544Y29198D01* X20537Y29204D01* X20530Y29208D01* X20522Y29211D01* X20505Y29217D01* Y29782D01* X20517Y29786D01* X20525Y29790D01* X20532Y29794D01* X20539Y29800D01* X20544Y29807D01* X20548Y29815D01* X20551Y29823D01* X20552Y29832D01* X20552Y29840D01* X20550Y29849D01* X20547Y29857D01* X20542Y29864D01* X20536Y29871D01* X20529Y29876D01* X20522Y29880D01* X20513Y29883D01* X20505Y29884D01* Y31116D01* X20508Y31117D01* X20516Y31122D01* X20523Y31127D01* X20529Y31134D01* X20533Y31141D01* X20536Y31149D01* X20538Y31158D01* X20538Y31167D01* X20537Y31175D01* X20534Y31183D01* X20530Y31191D01* X20524Y31198D01* X20517Y31204D01* X20510Y31208D01* X20505Y31210D01* Y31790D01* X20512Y31794D01* X20519Y31800D01* X20524Y31807D01* X20528Y31815D01* X20531Y31823D01* X20532Y31832D01* X20532Y31840D01* X20530Y31849D01* X20527Y31857D01* X20522Y31864D01* X20516Y31871D01* X20509Y31876D01* X20505Y31878D01* Y33130D01* X20509Y33134D01* X20513Y33141D01* X20516Y33149D01* X20518Y33158D01* X20518Y33167D01* X20517Y33175D01* X20514Y33183D01* X20510Y33191D01* X20505Y33197D01* Y33809D01* X20508Y33815D01* X20511Y33823D01* X20512Y33832D01* X20512Y33840D01* X20510Y33849D01* X20507Y33857D01* X20505Y33859D01* Y40000D01* G37* G36* Y7549D02*X20508Y7550D01* X20516Y7555D01* X20523Y7560D01* X20529Y7567D01* X20533Y7574D01* X20536Y7582D01* X20545Y7608D01* X20556Y7633D01* X20569Y7657D01* X20584Y7679D01* X20601Y7700D01* X20620Y7719D01* X20641Y7737D01* X20663Y7752D01* X20687Y7766D01* X20711Y7777D01* X20737Y7786D01* X20745Y7790D01* X20752Y7794D01* X20759Y7800D01* X20764Y7807D01* Y7198D01* X20757Y7204D01* X20750Y7208D01* X20742Y7211D01* X20716Y7220D01* X20691Y7231D01* X20668Y7244D01* X20645Y7259D01* X20624Y7276D01* X20605Y7295D01* X20587Y7316D01* X20572Y7338D01* X20558Y7362D01* X20547Y7386D01* X20538Y7412D01* X20534Y7420D01* X20530Y7427D01* X20524Y7434D01* X20517Y7439D01* X20509Y7443D01* X20505Y7445D01* Y7549D01* G37* G36* Y7259D02*X20508Y7255D01* X20532Y7227D01* X20557Y7202D01* X20585Y7179D01* X20615Y7159D01* X20647Y7141D01* X20680Y7127D01* X20714Y7115D01* X20723Y7113D01* X20732Y7113D01* X20740Y7115D01* X20748Y7117D01* X20756Y7122D01* X20763Y7127D01* X20764Y7128D01* Y5879D01* X20762Y5880D01* X20753Y5883D01* X20745Y5884D01* X20736Y5884D01* X20728Y5882D01* X20693Y5870D01* X20661Y5855D01* X20629Y5837D01* X20600Y5816D01* X20572Y5793D01* X20547Y5767D01* X20524Y5739D01* X20505Y5711D01* Y7259D01* G37* G36* Y5546D02*X20512Y5546D01* X20520Y5547D01* X20528Y5550D01* X20536Y5555D01* X20543Y5560D01* X20549Y5567D01* X20553Y5574D01* X20556Y5582D01* X20565Y5608D01* X20576Y5633D01* X20589Y5657D01* X20604Y5679D01* X20621Y5700D01* X20640Y5719D01* X20661Y5737D01* X20683Y5752D01* X20707Y5766D01* X20731Y5777D01* X20757Y5786D01* X20764Y5789D01* Y5210D01* X20762Y5211D01* X20736Y5220D01* X20711Y5231D01* X20688Y5244D01* X20665Y5259D01* X20644Y5276D01* X20625Y5295D01* X20607Y5316D01* X20592Y5338D01* X20578Y5362D01* X20567Y5386D01* X20558Y5412D01* X20554Y5420D01* X20550Y5427D01* X20544Y5434D01* X20537Y5439D01* X20529Y5443D01* X20521Y5446D01* X20512Y5447D01* X20505Y5447D01* Y5546D01* G37* G36* Y5288D02*X20507Y5284D01* X20528Y5255D01* X20552Y5227D01* X20577Y5202D01* X20605Y5179D01* X20635Y5159D01* X20667Y5141D01* X20700Y5127D01* X20734Y5115D01* X20743Y5113D01* X20752Y5113D01* X20760Y5115D01* X20764Y5116D01* Y3884D01* X20756Y3884D01* X20748Y3882D01* X20713Y3870D01* X20681Y3855D01* X20649Y3837D01* X20620Y3816D01* X20592Y3793D01* X20567Y3767D01* X20544Y3739D01* X20524Y3709D01* X20506Y3677D01* X20505Y3675D01* Y5288D01* G37* G36* Y3552D02*X20506Y3551D01* X20514Y3548D01* X20523Y3546D01* X20532Y3546D01* X20540Y3547D01* X20548Y3550D01* X20556Y3555D01* X20563Y3560D01* X20569Y3567D01* X20573Y3574D01* X20576Y3582D01* X20585Y3608D01* X20596Y3633D01* X20609Y3657D01* X20624Y3679D01* X20641Y3700D01* X20660Y3719D01* X20681Y3737D01* X20703Y3752D01* X20727Y3766D01* X20751Y3777D01* X20764Y3782D01* Y3217D01* X20756Y3220D01* X20731Y3231D01* X20708Y3244D01* X20685Y3259D01* X20664Y3276D01* X20645Y3295D01* X20627Y3316D01* X20612Y3338D01* X20598Y3362D01* X20587Y3386D01* X20578Y3412D01* X20574Y3420D01* X20570Y3427D01* X20564Y3434D01* X20557Y3439D01* X20549Y3443D01* X20541Y3446D01* X20532Y3447D01* X20524Y3447D01* X20515Y3445D01* X20507Y3442D01* X20505Y3441D01* Y3552D01* G37* G36* Y3325D02*X20509Y3316D01* X20527Y3284D01* X20548Y3255D01* X20572Y3227D01* X20597Y3202D01* X20625Y3179D01* X20655Y3159D01* X20687Y3141D01* X20720Y3127D01* X20754Y3115D01* X20763Y3113D01* X20764D01* Y1881D01* X20733Y1870D01* X20701Y1855D01* X20669Y1837D01* X20640Y1816D01* X20612Y1793D01* X20587Y1767D01* X20564Y1739D01* X20544Y1709D01* X20526Y1677D01* X20512Y1644D01* X20505Y1625D01* Y3325D01* G37* G36* Y1571D02*X20507Y1568D01* X20512Y1561D01* X20519Y1556D01* X20526Y1551D01* X20534Y1548D01* X20543Y1546D01* X20552Y1546D01* X20560Y1547D01* X20568Y1550D01* X20576Y1555D01* X20583Y1560D01* X20589Y1567D01* X20593Y1574D01* X20596Y1582D01* X20605Y1608D01* X20616Y1633D01* X20629Y1657D01* X20644Y1679D01* X20661Y1700D01* X20680Y1719D01* X20701Y1737D01* X20723Y1752D01* X20747Y1766D01* X20764Y1774D01* Y1225D01* X20751Y1231D01* X20728Y1244D01* X20705Y1259D01* X20684Y1276D01* X20665Y1295D01* X20647Y1316D01* X20632Y1338D01* X20618Y1362D01* X20607Y1386D01* X20598Y1412D01* X20594Y1420D01* X20590Y1427D01* X20584Y1434D01* X20577Y1439D01* X20569Y1443D01* X20561Y1446D01* X20552Y1447D01* X20544Y1447D01* X20535Y1445D01* X20527Y1442D01* X20520Y1437D01* X20513Y1431D01* X20508Y1424D01* X20505Y1419D01* Y1571D01* G37* G36* Y1374D02*X20514Y1349D01* X20529Y1316D01* X20547Y1284D01* X20568Y1255D01* X20592Y1227D01* X20617Y1202D01* X20645Y1179D01* X20675Y1159D01* X20707Y1141D01* X20740Y1127D01* X20764Y1119D01* Y0D01* X20505D01* Y1374D01* G37* G36* X20764Y40000D02*X20944D01* Y33625D01* X20935Y33651D01* X20920Y33683D01* X20902Y33715D01* X20881Y33744D01* X20857Y33772D01* X20832Y33797D01* X20804Y33820D01* X20774Y33840D01* X20764Y33846D01* Y35165D01* X20789Y35183D01* X20817Y35207D01* X20842Y35232D01* X20865Y35260D01* X20885Y35290D01* X20903Y35322D01* X20917Y35355D01* X20929Y35389D01* X20931Y35398D01* X20931Y35407D01* X20930Y35415D01* X20927Y35423D01* X20922Y35431D01* X20917Y35438D01* X20910Y35444D01* X20903Y35448D01* X20895Y35451D01* X20886Y35453D01* X20877Y35453D01* X20869Y35452D01* X20861Y35449D01* X20853Y35445D01* X20846Y35439D01* X20840Y35433D01* X20836Y35425D01* X20833Y35417D01* X20824Y35391D01* X20813Y35366D01* X20800Y35343D01* X20785Y35320D01* X20768Y35299D01* X20764Y35295D01* Y35704D01* X20764Y35704D01* X20782Y35683D01* X20797Y35661D01* X20811Y35637D01* X20822Y35613D01* X20831Y35587D01* X20835Y35579D01* X20839Y35572D01* X20845Y35565D01* X20852Y35560D01* X20860Y35556D01* X20868Y35553D01* X20877Y35552D01* X20885Y35552D01* X20894Y35554D01* X20902Y35557D01* X20909Y35562D01* X20916Y35568D01* X20921Y35575D01* X20925Y35582D01* X20928Y35591D01* X20929Y35599D01* X20929Y35608D01* X20927Y35617D01* X20915Y35651D01* X20900Y35683D01* X20882Y35715D01* X20861Y35744D01* X20837Y35772D01* X20812Y35797D01* X20784Y35820D01* X20764Y35834D01* Y37180D01* X20769Y37183D01* X20797Y37207D01* X20822Y37232D01* X20845Y37260D01* X20865Y37290D01* X20883Y37322D01* X20897Y37355D01* X20909Y37389D01* X20911Y37398D01* X20911Y37407D01* X20910Y37415D01* X20907Y37423D01* X20902Y37431D01* X20897Y37438D01* X20890Y37444D01* X20883Y37448D01* X20875Y37451D01* X20866Y37453D01* X20857Y37453D01* X20849Y37452D01* X20841Y37449D01* X20833Y37445D01* X20826Y37439D01* X20820Y37433D01* X20816Y37425D01* X20813Y37417D01* X20804Y37391D01* X20793Y37366D01* X20780Y37343D01* X20765Y37320D01* X20764Y37319D01* Y37680D01* X20777Y37661D01* X20791Y37637D01* X20802Y37613D01* X20811Y37587D01* X20815Y37579D01* X20819Y37572D01* X20825Y37565D01* X20832Y37560D01* X20840Y37556D01* X20848Y37553D01* X20857Y37552D01* X20865Y37552D01* X20874Y37554D01* X20882Y37557D01* X20889Y37562D01* X20896Y37568D01* X20901Y37575D01* X20905Y37582D01* X20908Y37591D01* X20909Y37599D01* X20909Y37608D01* X20907Y37617D01* X20895Y37651D01* X20880Y37683D01* X20862Y37715D01* X20841Y37744D01* X20817Y37772D01* X20792Y37797D01* X20764Y37820D01* Y39196D01* X20777Y39207D01* X20802Y39232D01* X20825Y39260D01* X20845Y39290D01* X20863Y39322D01* X20877Y39355D01* X20889Y39389D01* X20891Y39398D01* X20891Y39407D01* X20890Y39415D01* X20887Y39423D01* X20882Y39431D01* X20877Y39438D01* X20870Y39444D01* X20863Y39448D01* X20855Y39451D01* X20846Y39453D01* X20837Y39453D01* X20829Y39452D01* X20821Y39449D01* X20813Y39445D01* X20806Y39439D01* X20800Y39433D01* X20796Y39425D01* X20793Y39417D01* X20784Y39391D01* X20773Y39366D01* X20764Y39350D01* Y39650D01* X20771Y39637D01* X20782Y39613D01* X20791Y39587D01* X20795Y39579D01* X20799Y39572D01* X20805Y39565D01* X20812Y39560D01* X20820Y39556D01* X20828Y39553D01* X20837Y39552D01* X20845Y39552D01* X20854Y39554D01* X20862Y39557D01* X20869Y39562D01* X20876Y39568D01* X20881Y39575D01* X20885Y39582D01* X20888Y39591D01* X20889Y39599D01* X20889Y39608D01* X20887Y39617D01* X20875Y39651D01* X20860Y39683D01* X20842Y39715D01* X20821Y39744D01* X20797Y39772D01* X20772Y39797D01* X20764Y39804D01* Y40000D01* G37* G36* X20944Y0D02*X20764D01* Y1119D01* X20774Y1115D01* X20783Y1113D01* X20792Y1113D01* X20800Y1115D01* X20808Y1117D01* X20816Y1122D01* X20823Y1127D01* X20829Y1134D01* X20833Y1141D01* X20836Y1149D01* X20838Y1158D01* X20838Y1167D01* X20837Y1175D01* X20834Y1183D01* X20830Y1191D01* X20824Y1198D01* X20817Y1204D01* X20810Y1208D01* X20802Y1211D01* X20776Y1220D01* X20764Y1225D01* Y1774D01* X20771Y1777D01* X20797Y1786D01* X20805Y1790D01* X20812Y1794D01* X20819Y1800D01* X20824Y1807D01* X20828Y1815D01* X20831Y1823D01* X20832Y1832D01* X20832Y1840D01* X20830Y1849D01* X20827Y1857D01* X20822Y1864D01* X20816Y1871D01* X20809Y1876D01* X20802Y1880D01* X20793Y1883D01* X20785Y1884D01* X20776Y1884D01* X20768Y1882D01* X20764Y1881D01* Y3113D01* X20772Y3113D01* X20780Y3115D01* X20788Y3117D01* X20796Y3122D01* X20803Y3127D01* X20809Y3134D01* X20813Y3141D01* X20816Y3149D01* X20818Y3158D01* X20818Y3167D01* X20817Y3175D01* X20814Y3183D01* X20810Y3191D01* X20804Y3198D01* X20797Y3204D01* X20790Y3208D01* X20782Y3211D01* X20764Y3217D01* Y3782D01* X20777Y3786D01* X20785Y3790D01* X20792Y3794D01* X20799Y3800D01* X20804Y3807D01* X20808Y3815D01* X20811Y3823D01* X20812Y3832D01* X20812Y3840D01* X20810Y3849D01* X20807Y3857D01* X20802Y3864D01* X20796Y3871D01* X20789Y3876D01* X20782Y3880D01* X20773Y3883D01* X20765Y3884D01* X20764D01* Y5116D01* X20768Y5117D01* X20776Y5122D01* X20783Y5127D01* X20789Y5134D01* X20793Y5141D01* X20796Y5149D01* X20798Y5158D01* X20798Y5167D01* X20797Y5175D01* X20794Y5183D01* X20790Y5191D01* X20784Y5198D01* X20777Y5204D01* X20770Y5208D01* X20764Y5210D01* Y5789D01* X20765Y5790D01* X20772Y5794D01* X20779Y5800D01* X20784Y5807D01* X20788Y5815D01* X20791Y5823D01* X20792Y5832D01* X20792Y5840D01* X20790Y5849D01* X20787Y5857D01* X20782Y5864D01* X20776Y5871D01* X20769Y5876D01* X20764Y5879D01* Y7128D01* X20769Y7134D01* X20773Y7141D01* X20776Y7149D01* X20778Y7158D01* X20778Y7167D01* X20777Y7175D01* X20774Y7183D01* X20770Y7191D01* X20764Y7198D01* X20764Y7198D01* Y7807D01* X20764Y7807D01* X20768Y7815D01* X20771Y7823D01* X20772Y7832D01* X20772Y7840D01* X20770Y7849D01* X20767Y7857D01* X20764Y7861D01* Y19140D01* X20767Y19135D01* X20773Y19128D01* X20780Y19123D01* X20787Y19119D01* X20796Y19116D01* X20804Y19115D01* X20813Y19115D01* X20821Y19117D01* X20856Y19129D01* X20888Y19144D01* X20920Y19162D01* X20944Y19180D01* Y17834D01* X20934Y17840D01* X20902Y17858D01* X20869Y17873D01* X20835Y17884D01* X20826Y17886D01* X20817Y17886D01* X20809Y17885D01* X20801Y17882D01* X20793Y17878D01* X20786Y17872D01* X20780Y17865D01* X20776Y17858D01* X20773Y17850D01* X20771Y17841D01* X20771Y17833D01* X20772Y17824D01* X20775Y17816D01* X20779Y17808D01* X20785Y17801D01* X20792Y17796D01* X20799Y17791D01* X20807Y17788D01* X20833Y17779D01* X20858Y17768D01* X20881Y17755D01* X20904Y17740D01* X20925Y17723D01* X20944Y17704D01* Y17295D01* X20929Y17280D01* X20908Y17262D01* X20886Y17247D01* X20862Y17233D01* X20838Y17222D01* X20812Y17213D01* X20804Y17209D01* X20797Y17205D01* X20790Y17199D01* X20785Y17192D01* X20781Y17184D01* X20778Y17176D01* X20777Y17167D01* X20777Y17159D01* X20779Y17150D01* X20782Y17142D01* X20787Y17135D01* X20793Y17128D01* X20800Y17123D01* X20807Y17119D01* X20816Y17116D01* X20824Y17115D01* X20833Y17115D01* X20841Y17117D01* X20876Y17129D01* X20908Y17144D01* X20940Y17162D01* X20944Y17165D01* Y15846D01* X20922Y15858D01* X20889Y15873D01* X20855Y15884D01* X20846Y15886D01* X20837Y15886D01* X20829Y15885D01* X20821Y15882D01* X20813Y15878D01* X20806Y15872D01* X20800Y15865D01* X20796Y15858D01* X20793Y15850D01* X20791Y15841D01* X20791Y15833D01* X20792Y15824D01* X20795Y15816D01* X20799Y15808D01* X20805Y15801D01* X20812Y15796D01* X20819Y15791D01* X20827Y15788D01* X20853Y15779D01* X20878Y15768D01* X20901Y15755D01* X20924Y15740D01* X20944Y15724D01* Y15276D01* X20928Y15262D01* X20906Y15247D01* X20882Y15233D01* X20858Y15222D01* X20832Y15213D01* X20824Y15209D01* X20817Y15205D01* X20810Y15199D01* X20805Y15192D01* X20801Y15184D01* X20798Y15176D01* X20797Y15167D01* X20797Y15159D01* X20799Y15150D01* X20802Y15142D01* X20807Y15135D01* X20813Y15128D01* X20820Y15123D01* X20827Y15119D01* X20836Y15116D01* X20844Y15115D01* X20853Y15115D01* X20861Y15117D01* X20896Y15129D01* X20928Y15144D01* X20944Y15153D01* Y13857D01* X20942Y13858D01* X20909Y13873D01* X20875Y13884D01* X20866Y13886D01* X20857Y13886D01* X20849Y13885D01* X20841Y13882D01* X20833Y13878D01* X20826Y13872D01* X20820Y13865D01* X20816Y13858D01* X20813Y13850D01* X20811Y13841D01* X20811Y13833D01* X20812Y13824D01* X20815Y13816D01* X20819Y13808D01* X20825Y13801D01* X20832Y13796D01* X20839Y13791D01* X20847Y13788D01* X20873Y13779D01* X20898Y13768D01* X20921Y13755D01* X20944Y13740D01* Y13259D01* X20926Y13247D01* X20902Y13233D01* X20878Y13222D01* X20852Y13213D01* X20844Y13209D01* X20837Y13205D01* X20830Y13199D01* X20825Y13192D01* X20821Y13184D01* X20818Y13176D01* X20817Y13167D01* X20817Y13159D01* X20819Y13150D01* X20822Y13142D01* X20827Y13135D01* X20833Y13128D01* X20840Y13123D01* X20847Y13119D01* X20856Y13116D01* X20864Y13115D01* X20873Y13115D01* X20881Y13117D01* X20916Y13129D01* X20944Y13142D01* Y11866D01* X20929Y11873D01* X20895Y11884D01* X20886Y11886D01* X20877Y11886D01* X20869Y11885D01* X20861Y11882D01* X20853Y11878D01* X20846Y11872D01* X20840Y11865D01* X20836Y11858D01* X20833Y11850D01* X20831Y11841D01* X20831Y11833D01* X20832Y11824D01* X20835Y11816D01* X20839Y11808D01* X20845Y11801D01* X20852Y11796D01* X20859Y11791D01* X20867Y11788D01* X20893Y11779D01* X20918Y11768D01* X20941Y11755D01* X20944Y11754D01* Y11246D01* X20922Y11233D01* X20898Y11222D01* X20872Y11213D01* X20864Y11209D01* X20857Y11205D01* X20850Y11199D01* X20845Y11192D01* X20841Y11184D01* X20838Y11176D01* X20837Y11167D01* X20837Y11159D01* X20839Y11150D01* X20842Y11142D01* X20847Y11135D01* X20853Y11128D01* X20860Y11123D01* X20867Y11119D01* X20876Y11116D01* X20884Y11115D01* X20893Y11115D01* X20901Y11117D01* X20936Y11129D01* X20944Y11133D01* Y9874D01* X20915Y9884D01* X20906Y9886D01* X20897Y9886D01* X20889Y9885D01* X20881Y9882D01* X20873Y9878D01* X20866Y9872D01* X20860Y9865D01* X20856Y9858D01* X20853Y9850D01* X20851Y9841D01* X20851Y9833D01* X20852Y9824D01* X20855Y9816D01* X20859Y9808D01* X20865Y9801D01* X20872Y9796D01* X20879Y9791D01* X20887Y9788D01* X20913Y9779D01* X20938Y9768D01* X20944Y9765D01* Y9234D01* X20942Y9233D01* X20918Y9222D01* X20892Y9213D01* X20884Y9209D01* X20877Y9205D01* X20870Y9199D01* X20865Y9192D01* X20861Y9184D01* X20858Y9176D01* X20857Y9167D01* X20857Y9159D01* X20859Y9150D01* X20862Y9142D01* X20867Y9135D01* X20873Y9128D01* X20880Y9123D01* X20887Y9119D01* X20896Y9116D01* X20904Y9115D01* X20913Y9115D01* X20921Y9117D01* X20944Y9125D01* Y7881D01* X20935Y7884D01* X20926Y7886D01* X20917Y7886D01* X20909Y7885D01* X20901Y7882D01* X20893Y7878D01* X20886Y7872D01* X20880Y7865D01* X20876Y7858D01* X20873Y7850D01* X20871Y7841D01* X20871Y7833D01* X20872Y7824D01* X20875Y7816D01* X20879Y7808D01* X20885Y7801D01* X20892Y7796D01* X20899Y7791D01* X20907Y7788D01* X20933Y7779D01* X20944Y7774D01* Y7225D01* X20938Y7222D01* X20912Y7213D01* X20904Y7209D01* X20897Y7205D01* X20890Y7199D01* X20885Y7192D01* X20881Y7184D01* X20878Y7176D01* X20877Y7167D01* X20877Y7159D01* X20879Y7150D01* X20882Y7142D01* X20887Y7135D01* X20893Y7128D01* X20900Y7123D01* X20907Y7119D01* X20916Y7116D01* X20924Y7115D01* X20933Y7115D01* X20941Y7117D01* X20944Y7118D01* Y5886D01* X20937Y5886D01* X20929Y5885D01* X20921Y5882D01* X20913Y5878D01* X20906Y5872D01* X20900Y5865D01* X20896Y5858D01* X20893Y5850D01* X20891Y5841D01* X20891Y5833D01* X20892Y5824D01* X20895Y5816D01* X20899Y5808D01* X20905Y5801D01* X20912Y5796D01* X20919Y5791D01* X20927Y5788D01* X20944Y5782D01* Y5217D01* X20932Y5213D01* X20924Y5209D01* X20917Y5205D01* X20910Y5199D01* X20905Y5192D01* X20901Y5184D01* X20898Y5176D01* X20897Y5167D01* X20897Y5159D01* X20899Y5150D01* X20902Y5142D01* X20907Y5135D01* X20913Y5128D01* X20920Y5123D01* X20927Y5119D01* X20936Y5116D01* X20944Y5115D01* Y3883D01* X20941Y3882D01* X20933Y3878D01* X20926Y3872D01* X20920Y3865D01* X20916Y3858D01* X20913Y3850D01* X20911Y3841D01* X20911Y3833D01* X20912Y3824D01* X20915Y3816D01* X20919Y3808D01* X20925Y3801D01* X20932Y3796D01* X20939Y3791D01* X20944Y3789D01* Y3209D01* X20937Y3205D01* X20930Y3199D01* X20925Y3192D01* X20921Y3184D01* X20918Y3176D01* X20917Y3167D01* X20917Y3159D01* X20919Y3150D01* X20922Y3142D01* X20927Y3135D01* X20933Y3128D01* X20940Y3123D01* X20944Y3121D01* Y1870D01* X20940Y1865D01* X20936Y1858D01* X20933Y1850D01* X20931Y1841D01* X20931Y1833D01* X20932Y1824D01* X20935Y1816D01* X20939Y1808D01* X20944Y1802D01* Y1190D01* X20941Y1184D01* X20938Y1176D01* X20937Y1167D01* X20937Y1159D01* X20939Y1150D01* X20942Y1142D01* X20944Y1140D01* Y0D01* G37* G36* Y19319D02*X20928Y19299D01* X20909Y19280D01* X20888Y19262D01* X20866Y19247D01* X20842Y19233D01* X20818Y19222D01* X20792Y19213D01* X20784Y19209D01* X20777Y19205D01* X20770Y19199D01* X20765Y19192D01* X20764Y19190D01* Y19802D01* X20765Y19801D01* X20772Y19796D01* X20779Y19791D01* X20787Y19788D01* X20813Y19779D01* X20838Y19768D01* X20861Y19755D01* X20884Y19740D01* X20905Y19723D01* X20924Y19704D01* X20942Y19683D01* X20944Y19680D01* Y19319D01* G37* G36* Y19820D02*X20944Y19820D01* X20914Y19840D01* X20882Y19858D01* X20849Y19873D01* X20815Y19884D01* X20806Y19886D01* X20797Y19886D01* X20789Y19885D01* X20781Y19882D01* X20773Y19878D01* X20766Y19872D01* X20764Y19870D01* Y21121D01* X20767Y21119D01* X20776Y21116D01* X20784Y21115D01* X20793Y21115D01* X20801Y21117D01* X20836Y21129D01* X20868Y21144D01* X20900Y21162D01* X20929Y21183D01* X20944Y21196D01* Y19820D01* G37* G36* Y21350D02*X20940Y21343D01* X20925Y21320D01* X20908Y21299D01* X20889Y21280D01* X20868Y21262D01* X20846Y21247D01* X20822Y21233D01* X20798Y21222D01* X20772Y21213D01* X20764Y21209D01* X20764Y21209D01* Y21789D01* X20767Y21788D01* X20793Y21779D01* X20818Y21768D01* X20841Y21755D01* X20864Y21740D01* X20885Y21723D01* X20904Y21704D01* X20922Y21683D01* X20937Y21661D01* X20944Y21650D01* Y21350D01* G37* G36* Y21804D02*X20924Y21820D01* X20894Y21840D01* X20862Y21858D01* X20829Y21873D01* X20795Y21884D01* X20786Y21886D01* X20777Y21886D01* X20769Y21885D01* X20764Y21883D01* Y23115D01* X20764D01* X20773Y23115D01* X20781Y23117D01* X20816Y23129D01* X20848Y23144D01* X20880Y23162D01* X20909Y23183D01* X20937Y23207D01* X20944Y23214D01* Y21804D01* G37* G36* Y23391D02*X20933Y23366D01* X20920Y23343D01* X20905Y23320D01* X20888Y23299D01* X20869Y23280D01* X20848Y23262D01* X20826Y23247D01* X20802Y23233D01* X20778Y23222D01* X20764Y23217D01* Y23782D01* X20773Y23779D01* X20798Y23768D01* X20821Y23755D01* X20844Y23740D01* X20865Y23723D01* X20884Y23704D01* X20902Y23683D01* X20917Y23661D01* X20931Y23637D01* X20942Y23613D01* X20944Y23608D01* Y23391D01* G37* G36* Y23785D02*X20932Y23797D01* X20904Y23820D01* X20874Y23840D01* X20842Y23858D01* X20809Y23873D01* X20775Y23884D01* X20766Y23886D01* X20764D01* Y25118D01* X20796Y25129D01* X20828Y25144D01* X20860Y25162D01* X20889Y25183D01* X20917Y25207D01* X20942Y25232D01* X20944Y25235D01* Y23785D01* G37* G36* Y25437D02*X20940Y25433D01* X20936Y25425D01* X20933Y25417D01* X20924Y25391D01* X20913Y25366D01* X20900Y25343D01* X20885Y25320D01* X20868Y25299D01* X20849Y25280D01* X20828Y25262D01* X20806Y25247D01* X20782Y25233D01* X20764Y25225D01* Y25774D01* X20778Y25768D01* X20801Y25755D01* X20824Y25740D01* X20845Y25723D01* X20864Y25704D01* X20882Y25683D01* X20897Y25661D01* X20911Y25637D01* X20922Y25613D01* X20931Y25587D01* X20935Y25579D01* X20939Y25572D01* X20944Y25567D01* Y25437D01* G37* G36* Y25764D02*X20937Y25772D01* X20912Y25797D01* X20884Y25820D01* X20854Y25840D01* X20822Y25858D01* X20789Y25873D01* X20764Y25881D01* Y27125D01* X20776Y27129D01* X20808Y27144D01* X20840Y27162D01* X20869Y27183D01* X20897Y27207D01* X20922Y27232D01* X20944Y27259D01* Y25764D01* G37* G36* Y27450D02*X20941Y27449D01* X20933Y27445D01* X20926Y27439D01* X20920Y27433D01* X20916Y27425D01* X20913Y27417D01* X20904Y27391D01* X20893Y27366D01* X20880Y27343D01* X20865Y27320D01* X20848Y27299D01* X20829Y27280D01* X20808Y27262D01* X20786Y27247D01* X20764Y27234D01* Y27765D01* X20781Y27755D01* X20804Y27740D01* X20825Y27723D01* X20844Y27704D01* X20862Y27683D01* X20877Y27661D01* X20891Y27637D01* X20902Y27613D01* X20911Y27587D01* X20915Y27579D01* X20919Y27572D01* X20925Y27565D01* X20932Y27560D01* X20940Y27556D01* X20944Y27555D01* Y27450D01* G37* G36* Y27740D02*X20941Y27744D01* X20917Y27772D01* X20892Y27797D01* X20864Y27820D01* X20834Y27840D01* X20802Y27858D01* X20769Y27873D01* X20764Y27874D01* Y29133D01* X20788Y29144D01* X20820Y29162D01* X20849Y29183D01* X20877Y29207D01* X20902Y29232D01* X20925Y29260D01* X20944Y29288D01* Y27740D01* G37* G36* Y29453D02*X20937Y29453D01* X20929Y29452D01* X20921Y29449D01* X20913Y29445D01* X20906Y29439D01* X20900Y29433D01* X20896Y29425D01* X20893Y29417D01* X20884Y29391D01* X20873Y29366D01* X20860Y29343D01* X20845Y29320D01* X20828Y29299D01* X20809Y29280D01* X20788Y29262D01* X20766Y29247D01* X20764Y29246D01* Y29754D01* X20784Y29740D01* X20805Y29723D01* X20824Y29704D01* X20842Y29683D01* X20857Y29661D01* X20871Y29637D01* X20882Y29613D01* X20891Y29587D01* X20895Y29579D01* X20899Y29572D01* X20905Y29565D01* X20912Y29560D01* X20920Y29556D01* X20928Y29553D01* X20937Y29552D01* X20944Y29552D01* Y29453D01* G37* G36* Y29711D02*X20942Y29715D01* X20921Y29744D01* X20897Y29772D01* X20872Y29797D01* X20844Y29820D01* X20814Y29840D01* X20782Y29858D01* X20764Y29866D01* Y31142D01* X20768Y31144D01* X20800Y31162D01* X20829Y31183D01* X20857Y31207D01* X20882Y31232D01* X20905Y31260D01* X20925Y31290D01* X20943Y31322D01* X20944Y31324D01* Y29711D01* G37* G36* Y31447D02*X20943Y31448D01* X20935Y31451D01* X20926Y31453D01* X20917Y31453D01* X20909Y31452D01* X20901Y31449D01* X20893Y31445D01* X20886Y31439D01* X20880Y31433D01* X20876Y31425D01* X20873Y31417D01* X20864Y31391D01* X20853Y31366D01* X20840Y31343D01* X20825Y31320D01* X20808Y31299D01* X20789Y31280D01* X20768Y31262D01* X20764Y31259D01* Y31740D01* X20785Y31723D01* X20804Y31704D01* X20822Y31683D01* X20837Y31661D01* X20851Y31637D01* X20862Y31613D01* X20871Y31587D01* X20875Y31579D01* X20879Y31572D01* X20885Y31565D01* X20892Y31560D01* X20900Y31556D01* X20908Y31553D01* X20917Y31552D01* X20925Y31552D01* X20934Y31554D01* X20942Y31557D01* X20944Y31559D01* Y31447D01* G37* G36* Y31674D02*X20940Y31683D01* X20922Y31715D01* X20901Y31744D01* X20877Y31772D01* X20852Y31797D01* X20824Y31820D01* X20794Y31840D01* X20764Y31857D01* Y33153D01* X20780Y33162D01* X20809Y33183D01* X20837Y33207D01* X20862Y33232D01* X20885Y33260D01* X20905Y33290D01* X20923Y33322D01* X20937Y33355D01* X20944Y33374D01* Y31674D01* G37* G36* Y33428D02*X20942Y33431D01* X20937Y33438D01* X20930Y33444D01* X20923Y33448D01* X20915Y33451D01* X20906Y33453D01* X20897Y33453D01* X20889Y33452D01* X20881Y33449D01* X20873Y33445D01* X20866Y33439D01* X20860Y33433D01* X20856Y33425D01* X20853Y33417D01* X20844Y33391D01* X20833Y33366D01* X20820Y33343D01* X20805Y33320D01* X20788Y33299D01* X20769Y33280D01* X20764Y33276D01* Y33724D01* X20765Y33723D01* X20784Y33704D01* X20802Y33683D01* X20817Y33661D01* X20831Y33637D01* X20842Y33613D01* X20851Y33587D01* X20855Y33579D01* X20859Y33572D01* X20865Y33565D01* X20872Y33560D01* X20880Y33556D01* X20888Y33553D01* X20897Y33552D01* X20905Y33552D01* X20914Y33554D01* X20922Y33557D01* X20929Y33562D01* X20936Y33568D01* X20941Y33575D01* X20944Y33580D01* Y33428D01* G37* G36* Y40000D02*X22285D01* Y39834D01* X22260Y39816D01* X22232Y39793D01* X22207Y39767D01* X22184Y39739D01* X22164Y39709D01* X22146Y39677D01* X22132Y39644D01* X22120Y39610D01* X22118Y39601D01* X22118Y39593D01* X22119Y39584D01* X22122Y39576D01* X22127Y39568D01* X22132Y39561D01* X22139Y39556D01* X22146Y39551D01* X22154Y39548D01* X22163Y39546D01* X22172Y39546D01* X22180Y39547D01* X22188Y39550D01* X22196Y39555D01* X22203Y39560D01* X22209Y39567D01* X22213Y39574D01* X22216Y39582D01* X22225Y39608D01* X22236Y39633D01* X22249Y39657D01* X22264Y39679D01* X22281Y39700D01* X22285Y39704D01* Y39295D01* X22285Y39295D01* X22267Y39316D01* X22252Y39338D01* X22238Y39362D01* X22227Y39386D01* X22218Y39412D01* X22214Y39420D01* X22210Y39427D01* X22204Y39434D01* X22197Y39439D01* X22189Y39443D01* X22181Y39446D01* X22172Y39447D01* X22164Y39447D01* X22155Y39445D01* X22147Y39442D01* X22140Y39437D01* X22133Y39431D01* X22128Y39424D01* X22124Y39417D01* X22121Y39409D01* X22120Y39400D01* X22120Y39391D01* X22122Y39383D01* X22134Y39349D01* X22149Y39316D01* X22167Y39284D01* X22188Y39255D01* X22212Y39227D01* X22237Y39202D01* X22265Y39179D01* X22285Y39166D01* Y37820D01* X22280Y37816D01* X22252Y37793D01* X22227Y37767D01* X22204Y37739D01* X22184Y37709D01* X22166Y37677D01* X22152Y37644D01* X22140Y37610D01* X22138Y37601D01* X22138Y37593D01* X22139Y37584D01* X22142Y37576D01* X22147Y37568D01* X22152Y37561D01* X22159Y37556D01* X22166Y37551D01* X22174Y37548D01* X22183Y37546D01* X22192Y37546D01* X22200Y37547D01* X22208Y37550D01* X22216Y37555D01* X22223Y37560D01* X22229Y37567D01* X22233Y37574D01* X22236Y37582D01* X22245Y37608D01* X22256Y37633D01* X22269Y37657D01* X22284Y37679D01* X22285Y37680D01* Y37319D01* X22272Y37338D01* X22258Y37362D01* X22247Y37386D01* X22238Y37412D01* X22234Y37420D01* X22230Y37427D01* X22224Y37434D01* X22217Y37439D01* X22209Y37443D01* X22201Y37446D01* X22192Y37447D01* X22184Y37447D01* X22175Y37445D01* X22167Y37442D01* X22160Y37437D01* X22153Y37431D01* X22148Y37424D01* X22144Y37417D01* X22141Y37409D01* X22140Y37400D01* X22140Y37391D01* X22142Y37383D01* X22154Y37349D01* X22169Y37316D01* X22187Y37284D01* X22208Y37255D01* X22232Y37227D01* X22257Y37202D01* X22285Y37179D01* Y35804D01* X22272Y35793D01* X22247Y35767D01* X22224Y35739D01* X22204Y35709D01* X22186Y35677D01* X22172Y35644D01* X22160Y35610D01* X22158Y35601D01* X22158Y35593D01* X22159Y35584D01* X22162Y35576D01* X22167Y35568D01* X22172Y35561D01* X22179Y35556D01* X22186Y35551D01* X22194Y35548D01* X22203Y35546D01* X22212Y35546D01* X22220Y35547D01* X22228Y35550D01* X22236Y35555D01* X22243Y35560D01* X22249Y35567D01* X22253Y35574D01* X22256Y35582D01* X22265Y35608D01* X22276Y35633D01* X22285Y35650D01* Y35349D01* X22278Y35362D01* X22267Y35386D01* X22258Y35412D01* X22254Y35420D01* X22250Y35427D01* X22244Y35434D01* X22237Y35439D01* X22229Y35443D01* X22221Y35446D01* X22212Y35447D01* X22204Y35447D01* X22195Y35445D01* X22187Y35442D01* X22180Y35437D01* X22173Y35431D01* X22168Y35424D01* X22164Y35417D01* X22161Y35409D01* X22160Y35400D01* X22160Y35391D01* X22162Y35383D01* X22174Y35349D01* X22189Y35316D01* X22207Y35284D01* X22228Y35255D01* X22252Y35227D01* X22277Y35202D01* X22285Y35196D01* Y33785D01* X22267Y33767D01* X22244Y33739D01* X22224Y33709D01* X22206Y33677D01* X22192Y33644D01* X22180Y33610D01* X22178Y33601D01* X22178Y33593D01* X22179Y33584D01* X22182Y33576D01* X22187Y33568D01* X22192Y33561D01* X22199Y33556D01* X22206Y33551D01* X22214Y33548D01* X22223Y33546D01* X22232Y33546D01* X22240Y33547D01* X22248Y33550D01* X22256Y33555D01* X22263Y33560D01* X22269Y33567D01* X22273Y33574D01* X22276Y33582D01* X22285Y33608D01* X22285Y33609D01* Y33391D01* X22278Y33412D01* X22274Y33420D01* X22270Y33427D01* X22264Y33434D01* X22257Y33439D01* X22249Y33443D01* X22241Y33446D01* X22232Y33447D01* X22224Y33447D01* X22215Y33445D01* X22207Y33442D01* X22200Y33437D01* X22193Y33431D01* X22188Y33424D01* X22184Y33417D01* X22181Y33409D01* X22180Y33400D01* X22180Y33391D01* X22182Y33383D01* X22194Y33349D01* X22209Y33316D01* X22227Y33284D01* X22248Y33255D01* X22272Y33227D01* X22285Y33214D01* Y31765D01* X22264Y31739D01* X22244Y31709D01* X22226Y31677D01* X22212Y31644D01* X22200Y31610D01* X22198Y31601D01* X22198Y31593D01* X22199Y31584D01* X22202Y31576D01* X22207Y31568D01* X22212Y31561D01* X22219Y31556D01* X22226Y31551D01* X22234Y31548D01* X22243Y31546D01* X22252Y31546D01* X22260Y31547D01* X22268Y31550D01* X22276Y31555D01* X22283Y31560D01* X22285Y31563D01* Y31432D01* X22284Y31434D01* X22277Y31439D01* X22269Y31443D01* X22261Y31446D01* X22252Y31447D01* X22244Y31447D01* X22235Y31445D01* X22227Y31442D01* X22220Y31437D01* X22213Y31431D01* X22208Y31424D01* X22204Y31417D01* X22201Y31409D01* X22200Y31400D01* X22200Y31391D01* X22202Y31383D01* X22214Y31349D01* X22229Y31316D01* X22247Y31284D01* X22268Y31255D01* X22285Y31235D01* Y29740D01* X22284Y29739D01* X22264Y29709D01* X22246Y29677D01* X22232Y29644D01* X22220Y29610D01* X22218Y29601D01* X22218Y29593D01* X22219Y29584D01* X22222Y29576D01* X22227Y29568D01* X22232Y29561D01* X22239Y29556D01* X22246Y29551D01* X22254Y29548D01* X22263Y29546D01* X22272Y29546D01* X22280Y29547D01* X22285Y29549D01* Y29445D01* X22281Y29446D01* X22272Y29447D01* X22264Y29447D01* X22255Y29445D01* X22247Y29442D01* X22240Y29437D01* X22233Y29431D01* X22228Y29424D01* X22224Y29417D01* X22221Y29409D01* X22220Y29400D01* X22220Y29391D01* X22222Y29383D01* X22234Y29349D01* X22249Y29316D01* X22267Y29284D01* X22285Y29259D01* Y27711D01* X22284Y27709D01* X22266Y27677D01* X22252Y27644D01* X22240Y27610D01* X22238Y27601D01* X22238Y27593D01* X22239Y27584D01* X22242Y27576D01* X22247Y27568D01* X22252Y27561D01* X22259Y27556D01* X22266Y27551D01* X22274Y27548D01* X22283Y27546D01* X22285D01* Y27447D01* X22284Y27447D01* X22275Y27445D01* X22267Y27442D01* X22260Y27437D01* X22253Y27431D01* X22248Y27424D01* X22244Y27417D01* X22241Y27409D01* X22240Y27400D01* X22240Y27391D01* X22242Y27383D01* X22254Y27349D01* X22269Y27316D01* X22285Y27288D01* Y25675D01* X22272Y25644D01* X22260Y25610D01* X22258Y25601D01* X22258Y25593D01* X22259Y25584D01* X22262Y25576D01* X22267Y25568D01* X22272Y25561D01* X22279Y25556D01* X22285Y25552D01* Y25441D01* X22280Y25437D01* X22273Y25431D01* X22268Y25424D01* X22264Y25417D01* X22261Y25409D01* X22260Y25400D01* X22260Y25391D01* X22262Y25383D01* X22274Y25349D01* X22285Y25325D01* Y23625D01* X22280Y23610D01* X22278Y23601D01* X22278Y23593D01* X22279Y23584D01* X22282Y23576D01* X22285Y23571D01* Y23419D01* X22284Y23417D01* X22281Y23409D01* X22280Y23400D01* X22280Y23391D01* X22282Y23383D01* X22285Y23374D01* Y0D01* X20944D01* Y1140D01* X20947Y1135D01* X20953Y1128D01* X20960Y1123D01* X20967Y1119D01* X20976Y1116D01* X20984Y1115D01* X20993Y1115D01* X21001Y1117D01* X21036Y1129D01* X21068Y1144D01* X21100Y1162D01* X21129Y1183D01* X21157Y1207D01* X21182Y1232D01* X21205Y1260D01* X21225Y1290D01* X21243Y1322D01* X21257Y1355D01* X21269Y1389D01* X21271Y1398D01* X21271Y1407D01* X21270Y1415D01* X21267Y1423D01* X21262Y1431D01* X21257Y1438D01* X21250Y1444D01* X21243Y1448D01* X21235Y1451D01* X21226Y1453D01* X21217Y1453D01* X21209Y1452D01* X21201Y1449D01* X21193Y1445D01* X21186Y1439D01* X21180Y1433D01* X21176Y1425D01* X21173Y1417D01* X21164Y1391D01* X21153Y1366D01* X21140Y1343D01* X21125Y1320D01* X21108Y1299D01* X21089Y1280D01* X21068Y1262D01* X21046Y1247D01* X21022Y1233D01* X20998Y1222D01* X20972Y1213D01* X20964Y1209D01* X20957Y1205D01* X20950Y1199D01* X20945Y1192D01* X20944Y1190D01* Y1802D01* X20945Y1801D01* X20952Y1796D01* X20959Y1791D01* X20967Y1788D01* X20993Y1779D01* X21018Y1768D01* X21041Y1755D01* X21064Y1740D01* X21085Y1723D01* X21104Y1704D01* X21122Y1683D01* X21137Y1661D01* X21151Y1637D01* X21162Y1613D01* X21171Y1587D01* X21175Y1579D01* X21179Y1572D01* X21185Y1565D01* X21192Y1560D01* X21200Y1556D01* X21208Y1553D01* X21217Y1552D01* X21225Y1552D01* X21234Y1554D01* X21242Y1557D01* X21249Y1562D01* X21256Y1568D01* X21261Y1575D01* X21265Y1582D01* X21268Y1591D01* X21269Y1599D01* X21269Y1608D01* X21267Y1617D01* X21255Y1651D01* X21240Y1683D01* X21222Y1715D01* X21201Y1744D01* X21177Y1772D01* X21152Y1797D01* X21124Y1820D01* X21094Y1840D01* X21062Y1858D01* X21029Y1873D01* X20995Y1884D01* X20986Y1886D01* X20977Y1886D01* X20969Y1885D01* X20961Y1882D01* X20953Y1878D01* X20946Y1872D01* X20944Y1870D01* Y3121D01* X20947Y3119D01* X20956Y3116D01* X20964Y3115D01* X20973Y3115D01* X20981Y3117D01* X21016Y3129D01* X21048Y3144D01* X21080Y3162D01* X21109Y3183D01* X21137Y3207D01* X21162Y3232D01* X21185Y3260D01* X21205Y3290D01* X21223Y3322D01* X21237Y3355D01* X21249Y3389D01* X21251Y3398D01* X21251Y3407D01* X21250Y3415D01* X21247Y3423D01* X21242Y3431D01* X21237Y3438D01* X21230Y3444D01* X21223Y3448D01* X21215Y3451D01* X21206Y3453D01* X21197Y3453D01* X21189Y3452D01* X21181Y3449D01* X21173Y3445D01* X21166Y3439D01* X21160Y3433D01* X21156Y3425D01* X21153Y3417D01* X21144Y3391D01* X21133Y3366D01* X21120Y3343D01* X21105Y3320D01* X21088Y3299D01* X21069Y3280D01* X21048Y3262D01* X21026Y3247D01* X21002Y3233D01* X20978Y3222D01* X20952Y3213D01* X20944Y3209D01* X20944Y3209D01* Y3789D01* X20947Y3788D01* X20973Y3779D01* X20998Y3768D01* X21021Y3755D01* X21044Y3740D01* X21065Y3723D01* X21084Y3704D01* X21102Y3683D01* X21117Y3661D01* X21131Y3637D01* X21142Y3613D01* X21151Y3587D01* X21155Y3579D01* X21159Y3572D01* X21165Y3565D01* X21172Y3560D01* X21180Y3556D01* X21188Y3553D01* X21197Y3552D01* X21205Y3552D01* X21214Y3554D01* X21222Y3557D01* X21229Y3562D01* X21236Y3568D01* X21241Y3575D01* X21245Y3582D01* X21248Y3591D01* X21249Y3599D01* X21249Y3608D01* X21247Y3617D01* X21235Y3651D01* X21220Y3683D01* X21202Y3715D01* X21181Y3744D01* X21157Y3772D01* X21132Y3797D01* X21104Y3820D01* X21074Y3840D01* X21042Y3858D01* X21009Y3873D01* X20975Y3884D01* X20966Y3886D01* X20957Y3886D01* X20949Y3885D01* X20944Y3883D01* Y5115D01* X20944D01* X20953Y5115D01* X20961Y5117D01* X20996Y5129D01* X21028Y5144D01* X21060Y5162D01* X21089Y5183D01* X21117Y5207D01* X21142Y5232D01* X21165Y5260D01* X21185Y5290D01* X21203Y5322D01* X21217Y5355D01* X21229Y5389D01* X21231Y5398D01* X21231Y5407D01* X21230Y5415D01* X21227Y5423D01* X21222Y5431D01* X21217Y5438D01* X21210Y5444D01* X21203Y5448D01* X21195Y5451D01* X21186Y5453D01* X21177Y5453D01* X21169Y5452D01* X21161Y5449D01* X21153Y5445D01* X21146Y5439D01* X21140Y5433D01* X21136Y5425D01* X21133Y5417D01* X21124Y5391D01* X21113Y5366D01* X21100Y5343D01* X21085Y5320D01* X21068Y5299D01* X21049Y5280D01* X21028Y5262D01* X21006Y5247D01* X20982Y5233D01* X20958Y5222D01* X20944Y5217D01* Y5782D01* X20953Y5779D01* X20978Y5768D01* X21001Y5755D01* X21024Y5740D01* X21045Y5723D01* X21064Y5704D01* X21082Y5683D01* X21097Y5661D01* X21111Y5637D01* X21122Y5613D01* X21131Y5587D01* X21135Y5579D01* X21139Y5572D01* X21145Y5565D01* X21152Y5560D01* X21160Y5556D01* X21168Y5553D01* X21177Y5552D01* X21185Y5552D01* X21194Y5554D01* X21202Y5557D01* X21209Y5562D01* X21216Y5568D01* X21221Y5575D01* X21225Y5582D01* X21228Y5591D01* X21229Y5599D01* X21229Y5608D01* X21227Y5617D01* X21215Y5651D01* X21200Y5683D01* X21182Y5715D01* X21161Y5744D01* X21137Y5772D01* X21112Y5797D01* X21084Y5820D01* X21054Y5840D01* X21022Y5858D01* X20989Y5873D01* X20955Y5884D01* X20946Y5886D01* X20944D01* Y7118D01* X20976Y7129D01* X21008Y7144D01* X21040Y7162D01* X21069Y7183D01* X21097Y7207D01* X21122Y7232D01* X21145Y7260D01* X21165Y7290D01* X21183Y7322D01* X21197Y7355D01* X21209Y7389D01* X21211Y7398D01* X21211Y7407D01* X21210Y7415D01* X21207Y7423D01* X21202Y7431D01* X21197Y7438D01* X21190Y7444D01* X21183Y7448D01* X21175Y7451D01* X21166Y7453D01* X21157Y7453D01* X21149Y7452D01* X21141Y7449D01* X21133Y7445D01* X21126Y7439D01* X21120Y7433D01* X21116Y7425D01* X21113Y7417D01* X21104Y7391D01* X21093Y7366D01* X21080Y7343D01* X21065Y7320D01* X21048Y7299D01* X21029Y7280D01* X21008Y7262D01* X20986Y7247D01* X20962Y7233D01* X20944Y7225D01* Y7774D01* X20958Y7768D01* X20981Y7755D01* X21004Y7740D01* X21025Y7723D01* X21044Y7704D01* X21062Y7683D01* X21077Y7661D01* X21091Y7637D01* X21102Y7613D01* X21111Y7587D01* X21115Y7579D01* X21119Y7572D01* X21125Y7565D01* X21132Y7560D01* X21140Y7556D01* X21148Y7553D01* X21157Y7552D01* X21165Y7552D01* X21174Y7554D01* X21182Y7557D01* X21189Y7562D01* X21196Y7568D01* X21201Y7575D01* X21205Y7582D01* X21208Y7591D01* X21209Y7599D01* X21209Y7608D01* X21207Y7617D01* X21195Y7651D01* X21180Y7683D01* X21162Y7715D01* X21141Y7744D01* X21117Y7772D01* X21092Y7797D01* X21064Y7820D01* X21034Y7840D01* X21002Y7858D01* X20969Y7873D01* X20944Y7881D01* Y9125D01* X20956Y9129D01* X20988Y9144D01* X21020Y9162D01* X21049Y9183D01* X21077Y9207D01* X21102Y9232D01* X21125Y9260D01* X21145Y9290D01* X21163Y9322D01* X21177Y9355D01* X21189Y9389D01* X21191Y9398D01* X21191Y9407D01* X21190Y9415D01* X21187Y9423D01* X21182Y9431D01* X21177Y9438D01* X21170Y9444D01* X21163Y9448D01* X21155Y9451D01* X21146Y9453D01* X21137Y9453D01* X21129Y9452D01* X21121Y9449D01* X21113Y9445D01* X21106Y9439D01* X21100Y9433D01* X21096Y9425D01* X21093Y9417D01* X21084Y9391D01* X21073Y9366D01* X21060Y9343D01* X21045Y9320D01* X21028Y9299D01* X21009Y9280D01* X20988Y9262D01* X20966Y9247D01* X20944Y9234D01* Y9765D01* X20961Y9755D01* X20984Y9740D01* X21005Y9723D01* X21024Y9704D01* X21042Y9683D01* X21057Y9661D01* X21071Y9637D01* X21082Y9613D01* X21091Y9587D01* X21095Y9579D01* X21099Y9572D01* X21105Y9565D01* X21112Y9560D01* X21120Y9556D01* X21128Y9553D01* X21137Y9552D01* X21145Y9552D01* X21154Y9554D01* X21162Y9557D01* X21169Y9562D01* X21176Y9568D01* X21181Y9575D01* X21185Y9582D01* X21188Y9591D01* X21189Y9599D01* X21189Y9608D01* X21187Y9617D01* X21175Y9651D01* X21160Y9683D01* X21142Y9715D01* X21121Y9744D01* X21097Y9772D01* X21072Y9797D01* X21044Y9820D01* X21014Y9840D01* X20982Y9858D01* X20949Y9873D01* X20944Y9874D01* Y11133D01* X20968Y11144D01* X21000Y11162D01* X21029Y11183D01* X21057Y11207D01* X21082Y11232D01* X21105Y11260D01* X21125Y11290D01* X21143Y11322D01* X21157Y11355D01* X21169Y11389D01* X21171Y11398D01* X21171Y11407D01* X21170Y11415D01* X21167Y11423D01* X21162Y11431D01* X21157Y11438D01* X21150Y11444D01* X21143Y11448D01* X21135Y11451D01* X21126Y11453D01* X21117Y11453D01* X21109Y11452D01* X21101Y11449D01* X21093Y11445D01* X21086Y11439D01* X21080Y11433D01* X21076Y11425D01* X21073Y11417D01* X21064Y11391D01* X21053Y11366D01* X21040Y11343D01* X21025Y11320D01* X21008Y11299D01* X20989Y11280D01* X20968Y11262D01* X20946Y11247D01* X20944Y11246D01* Y11754D01* X20964Y11740D01* X20985Y11723D01* X21004Y11704D01* X21022Y11683D01* X21037Y11661D01* X21051Y11637D01* X21062Y11613D01* X21071Y11587D01* X21075Y11579D01* X21079Y11572D01* X21085Y11565D01* X21092Y11560D01* X21100Y11556D01* X21108Y11553D01* X21117Y11552D01* X21125Y11552D01* X21134Y11554D01* X21142Y11557D01* X21149Y11562D01* X21156Y11568D01* X21161Y11575D01* X21165Y11582D01* X21168Y11591D01* X21169Y11599D01* X21169Y11608D01* X21167Y11617D01* X21155Y11651D01* X21140Y11683D01* X21122Y11715D01* X21101Y11744D01* X21077Y11772D01* X21052Y11797D01* X21024Y11820D01* X20994Y11840D01* X20962Y11858D01* X20944Y11866D01* Y13142D01* X20948Y13144D01* X20980Y13162D01* X21009Y13183D01* X21037Y13207D01* X21062Y13232D01* X21085Y13260D01* X21105Y13290D01* X21123Y13322D01* X21137Y13355D01* X21149Y13389D01* X21151Y13398D01* X21151Y13407D01* X21150Y13415D01* X21147Y13423D01* X21142Y13431D01* X21137Y13438D01* X21130Y13444D01* X21123Y13448D01* X21115Y13451D01* X21106Y13453D01* X21097Y13453D01* X21089Y13452D01* X21081Y13449D01* X21073Y13445D01* X21066Y13439D01* X21060Y13433D01* X21056Y13425D01* X21053Y13417D01* X21044Y13391D01* X21033Y13366D01* X21020Y13343D01* X21005Y13320D01* X20988Y13299D01* X20969Y13280D01* X20948Y13262D01* X20944Y13259D01* Y13740D01* X20965Y13723D01* X20984Y13704D01* X21002Y13683D01* X21017Y13661D01* X21031Y13637D01* X21042Y13613D01* X21051Y13587D01* X21055Y13579D01* X21059Y13572D01* X21065Y13565D01* X21072Y13560D01* X21080Y13556D01* X21088Y13553D01* X21097Y13552D01* X21105Y13552D01* X21114Y13554D01* X21122Y13557D01* X21129Y13562D01* X21136Y13568D01* X21141Y13575D01* X21145Y13582D01* X21148Y13591D01* X21149Y13599D01* X21149Y13608D01* X21147Y13617D01* X21135Y13651D01* X21120Y13683D01* X21102Y13715D01* X21081Y13744D01* X21057Y13772D01* X21032Y13797D01* X21004Y13820D01* X20974Y13840D01* X20944Y13857D01* Y15153D01* X20960Y15162D01* X20989Y15183D01* X21017Y15207D01* X21042Y15232D01* X21065Y15260D01* X21085Y15290D01* X21103Y15322D01* X21117Y15355D01* X21129Y15389D01* X21131Y15398D01* X21131Y15407D01* X21130Y15415D01* X21127Y15423D01* X21122Y15431D01* X21117Y15438D01* X21110Y15444D01* X21103Y15448D01* X21095Y15451D01* X21086Y15453D01* X21077Y15453D01* X21069Y15452D01* X21061Y15449D01* X21053Y15445D01* X21046Y15439D01* X21040Y15433D01* X21036Y15425D01* X21033Y15417D01* X21024Y15391D01* X21013Y15366D01* X21000Y15343D01* X20985Y15320D01* X20968Y15299D01* X20949Y15280D01* X20944Y15276D01* Y15724D01* X20945Y15723D01* X20964Y15704D01* X20982Y15683D01* X20997Y15661D01* X21011Y15637D01* X21022Y15613D01* X21031Y15587D01* X21035Y15579D01* X21039Y15572D01* X21045Y15565D01* X21052Y15560D01* X21060Y15556D01* X21068Y15553D01* X21077Y15552D01* X21085Y15552D01* X21094Y15554D01* X21102Y15557D01* X21109Y15562D01* X21116Y15568D01* X21121Y15575D01* X21125Y15582D01* X21128Y15591D01* X21129Y15599D01* X21129Y15608D01* X21127Y15617D01* X21115Y15651D01* X21100Y15683D01* X21082Y15715D01* X21061Y15744D01* X21037Y15772D01* X21012Y15797D01* X20984Y15820D01* X20954Y15840D01* X20944Y15846D01* Y17165D01* X20969Y17183D01* X20997Y17207D01* X21022Y17232D01* X21045Y17260D01* X21065Y17290D01* X21083Y17322D01* X21097Y17355D01* X21109Y17389D01* X21111Y17398D01* X21111Y17407D01* X21110Y17415D01* X21107Y17423D01* X21102Y17431D01* X21097Y17438D01* X21090Y17444D01* X21083Y17448D01* X21075Y17451D01* X21066Y17453D01* X21057Y17453D01* X21049Y17452D01* X21041Y17449D01* X21033Y17445D01* X21026Y17439D01* X21020Y17433D01* X21016Y17425D01* X21013Y17417D01* X21004Y17391D01* X20993Y17366D01* X20980Y17343D01* X20965Y17320D01* X20948Y17299D01* X20944Y17295D01* Y17704D01* X20944Y17704D01* X20962Y17683D01* X20977Y17661D01* X20991Y17637D01* X21002Y17613D01* X21011Y17587D01* X21015Y17579D01* X21019Y17572D01* X21025Y17565D01* X21032Y17560D01* X21040Y17556D01* X21048Y17553D01* X21057Y17552D01* X21065Y17552D01* X21074Y17554D01* X21082Y17557D01* X21089Y17562D01* X21096Y17568D01* X21101Y17575D01* X21105Y17582D01* X21108Y17591D01* X21109Y17599D01* X21109Y17608D01* X21107Y17617D01* X21095Y17651D01* X21080Y17683D01* X21062Y17715D01* X21041Y17744D01* X21017Y17772D01* X20992Y17797D01* X20964Y17820D01* X20944Y17834D01* Y19180D01* X20949Y19183D01* X20977Y19207D01* X21002Y19232D01* X21025Y19260D01* X21045Y19290D01* X21063Y19322D01* X21077Y19355D01* X21089Y19389D01* X21091Y19398D01* X21091Y19407D01* X21090Y19415D01* X21087Y19423D01* X21082Y19431D01* X21077Y19438D01* X21070Y19444D01* X21063Y19448D01* X21055Y19451D01* X21046Y19453D01* X21037Y19453D01* X21029Y19452D01* X21021Y19449D01* X21013Y19445D01* X21006Y19439D01* X21000Y19433D01* X20996Y19425D01* X20993Y19417D01* X20984Y19391D01* X20973Y19366D01* X20960Y19343D01* X20945Y19320D01* X20944Y19319D01* Y19680D01* X20957Y19661D01* X20971Y19637D01* X20982Y19613D01* X20991Y19587D01* X20995Y19579D01* X20999Y19572D01* X21005Y19565D01* X21012Y19560D01* X21020Y19556D01* X21028Y19553D01* X21037Y19552D01* X21045Y19552D01* X21054Y19554D01* X21062Y19557D01* X21069Y19562D01* X21076Y19568D01* X21081Y19575D01* X21085Y19582D01* X21088Y19591D01* X21089Y19599D01* X21089Y19608D01* X21087Y19617D01* X21075Y19651D01* X21060Y19683D01* X21042Y19715D01* X21021Y19744D01* X20997Y19772D01* X20972Y19797D01* X20944Y19820D01* Y21196D01* X20957Y21207D01* X20982Y21232D01* X21005Y21260D01* X21025Y21290D01* X21043Y21322D01* X21057Y21355D01* X21069Y21389D01* X21071Y21398D01* X21071Y21407D01* X21070Y21415D01* X21067Y21423D01* X21062Y21431D01* X21057Y21438D01* X21050Y21444D01* X21043Y21448D01* X21035Y21451D01* X21026Y21453D01* X21017Y21453D01* X21009Y21452D01* X21001Y21449D01* X20993Y21445D01* X20986Y21439D01* X20980Y21433D01* X20976Y21425D01* X20973Y21417D01* X20964Y21391D01* X20953Y21366D01* X20944Y21350D01* Y21650D01* X20951Y21637D01* X20962Y21613D01* X20971Y21587D01* X20975Y21579D01* X20979Y21572D01* X20985Y21565D01* X20992Y21560D01* X21000Y21556D01* X21008Y21553D01* X21017Y21552D01* X21025Y21552D01* X21034Y21554D01* X21042Y21557D01* X21049Y21562D01* X21056Y21568D01* X21061Y21575D01* X21065Y21582D01* X21068Y21591D01* X21069Y21599D01* X21069Y21608D01* X21067Y21617D01* X21055Y21651D01* X21040Y21683D01* X21022Y21715D01* X21001Y21744D01* X20977Y21772D01* X20952Y21797D01* X20944Y21804D01* Y23214D01* X20962Y23232D01* X20985Y23260D01* X21005Y23290D01* X21023Y23322D01* X21037Y23355D01* X21049Y23389D01* X21051Y23398D01* X21051Y23407D01* X21050Y23415D01* X21047Y23423D01* X21042Y23431D01* X21037Y23438D01* X21030Y23444D01* X21023Y23448D01* X21015Y23451D01* X21006Y23453D01* X20997Y23453D01* X20989Y23452D01* X20981Y23449D01* X20973Y23445D01* X20966Y23439D01* X20960Y23433D01* X20956Y23425D01* X20953Y23417D01* X20944Y23391D01* X20944Y23391D01* Y23608D01* X20951Y23587D01* X20955Y23579D01* X20959Y23572D01* X20965Y23565D01* X20972Y23560D01* X20980Y23556D01* X20988Y23553D01* X20997Y23552D01* X21005Y23552D01* X21014Y23554D01* X21022Y23557D01* X21029Y23562D01* X21036Y23568D01* X21041Y23575D01* X21045Y23582D01* X21048Y23591D01* X21049Y23599D01* X21049Y23608D01* X21047Y23617D01* X21035Y23651D01* X21020Y23683D01* X21002Y23715D01* X20981Y23744D01* X20957Y23772D01* X20944Y23785D01* Y25235D01* X20965Y25260D01* X20985Y25290D01* X21003Y25322D01* X21017Y25355D01* X21029Y25389D01* X21031Y25398D01* X21031Y25407D01* X21030Y25415D01* X21027Y25423D01* X21022Y25431D01* X21017Y25438D01* X21010Y25444D01* X21003Y25448D01* X20995Y25451D01* X20986Y25453D01* X20977Y25453D01* X20969Y25452D01* X20961Y25449D01* X20953Y25445D01* X20946Y25439D01* X20944Y25437D01* Y25567D01* X20945Y25565D01* X20952Y25560D01* X20960Y25556D01* X20968Y25553D01* X20977Y25552D01* X20985Y25552D01* X20994Y25554D01* X21002Y25557D01* X21009Y25562D01* X21016Y25568D01* X21021Y25575D01* X21025Y25582D01* X21028Y25591D01* X21029Y25599D01* X21029Y25608D01* X21027Y25617D01* X21015Y25651D01* X21000Y25683D01* X20982Y25715D01* X20961Y25744D01* X20944Y25764D01* Y27259D01* X20945Y27260D01* X20965Y27290D01* X20983Y27322D01* X20997Y27355D01* X21009Y27389D01* X21011Y27398D01* X21011Y27407D01* X21010Y27415D01* X21007Y27423D01* X21002Y27431D01* X20997Y27438D01* X20990Y27444D01* X20983Y27448D01* X20975Y27451D01* X20966Y27453D01* X20957Y27453D01* X20949Y27452D01* X20944Y27450D01* Y27555D01* X20948Y27553D01* X20957Y27552D01* X20965Y27552D01* X20974Y27554D01* X20982Y27557D01* X20989Y27562D01* X20996Y27568D01* X21001Y27575D01* X21005Y27582D01* X21008Y27591D01* X21009Y27599D01* X21009Y27608D01* X21007Y27617D01* X20995Y27651D01* X20980Y27683D01* X20962Y27715D01* X20944Y27740D01* Y29288D01* X20945Y29290D01* X20963Y29322D01* X20977Y29355D01* X20989Y29389D01* X20991Y29398D01* X20991Y29407D01* X20990Y29415D01* X20987Y29423D01* X20982Y29431D01* X20977Y29438D01* X20970Y29444D01* X20963Y29448D01* X20955Y29451D01* X20946Y29453D01* X20944D01* Y29552D01* X20945D01* X20954Y29554D01* X20962Y29557D01* X20969Y29562D01* X20976Y29568D01* X20981Y29575D01* X20985Y29582D01* X20988Y29591D01* X20989Y29599D01* X20989Y29608D01* X20987Y29617D01* X20975Y29651D01* X20960Y29683D01* X20944Y29711D01* Y31324D01* X20957Y31355D01* X20969Y31389D01* X20971Y31398D01* X20971Y31407D01* X20970Y31415D01* X20967Y31423D01* X20962Y31431D01* X20957Y31438D01* X20950Y31444D01* X20944Y31447D01* Y31559D01* X20949Y31562D01* X20956Y31568D01* X20961Y31575D01* X20965Y31582D01* X20968Y31591D01* X20969Y31599D01* X20969Y31608D01* X20967Y31617D01* X20955Y31651D01* X20944Y31674D01* Y33374D01* X20949Y33389D01* X20951Y33398D01* X20951Y33407D01* X20950Y33415D01* X20947Y33423D01* X20944Y33428D01* Y33580D01* X20945Y33582D01* X20948Y33591D01* X20949Y33599D01* X20949Y33608D01* X20947Y33617D01* X20944Y33625D01* Y40000D01* G37* G36* X22285D02*X22465D01* Y37859D01* X22462Y37864D01* X22456Y37871D01* X22449Y37876D01* X22442Y37880D01* X22433Y37883D01* X22425Y37884D01* X22416Y37884D01* X22408Y37882D01* X22373Y37870D01* X22341Y37855D01* X22309Y37837D01* X22285Y37820D01* Y39166D01* X22295Y39159D01* X22327Y39141D01* X22360Y39127D01* X22394Y39115D01* X22403Y39113D01* X22412Y39113D01* X22420Y39115D01* X22428Y39117D01* X22436Y39122D01* X22443Y39127D01* X22449Y39134D01* X22453Y39141D01* X22456Y39149D01* X22458Y39158D01* X22458Y39167D01* X22457Y39175D01* X22454Y39183D01* X22450Y39191D01* X22444Y39198D01* X22437Y39204D01* X22430Y39208D01* X22422Y39211D01* X22396Y39220D01* X22371Y39231D01* X22348Y39244D01* X22325Y39259D01* X22304Y39276D01* X22285Y39295D01* Y39704D01* X22300Y39719D01* X22321Y39737D01* X22343Y39752D01* X22367Y39766D01* X22391Y39777D01* X22417Y39786D01* X22425Y39790D01* X22432Y39794D01* X22439Y39800D01* X22444Y39807D01* X22448Y39815D01* X22451Y39823D01* X22452Y39832D01* X22452Y39840D01* X22450Y39849D01* X22447Y39857D01* X22442Y39864D01* X22436Y39871D01* X22429Y39876D01* X22422Y39880D01* X22413Y39883D01* X22405Y39884D01* X22396Y39884D01* X22388Y39882D01* X22353Y39870D01* X22321Y39855D01* X22289Y39837D01* X22285Y39834D01* Y40000D01* G37* G36* X22465Y11740D02*X22464Y11739D01* X22444Y11709D01* X22426Y11677D01* X22412Y11644D01* X22400Y11610D01* X22398Y11601D01* X22398Y11593D01* X22399Y11584D01* X22402Y11576D01* X22407Y11568D01* X22412Y11561D01* X22419Y11556D01* X22426Y11551D01* X22434Y11548D01* X22443Y11546D01* X22452Y11546D01* X22460Y11547D01* X22465Y11549D01* Y11445D01* X22461Y11446D01* X22452Y11447D01* X22444Y11447D01* X22435Y11445D01* X22427Y11442D01* X22420Y11437D01* X22413Y11431D01* X22408Y11424D01* X22404Y11417D01* X22401Y11409D01* X22400Y11400D01* X22400Y11391D01* X22402Y11383D01* X22414Y11349D01* X22429Y11316D01* X22447Y11284D01* X22465Y11259D01* Y9711D01* X22464Y9709D01* X22446Y9677D01* X22432Y9644D01* X22420Y9610D01* X22418Y9601D01* X22418Y9593D01* X22419Y9584D01* X22422Y9576D01* X22427Y9568D01* X22432Y9561D01* X22439Y9556D01* X22446Y9551D01* X22454Y9548D01* X22463Y9546D01* X22465D01* Y9447D01* X22464Y9447D01* X22455Y9445D01* X22447Y9442D01* X22440Y9437D01* X22433Y9431D01* X22428Y9424D01* X22424Y9417D01* X22421Y9409D01* X22420Y9400D01* X22420Y9391D01* X22422Y9383D01* X22434Y9349D01* X22449Y9316D01* X22465Y9288D01* Y7675D01* X22452Y7644D01* X22440Y7610D01* X22438Y7601D01* X22438Y7593D01* X22439Y7584D01* X22442Y7576D01* X22447Y7568D01* X22452Y7561D01* X22459Y7556D01* X22465Y7552D01* Y7441D01* X22460Y7437D01* X22453Y7431D01* X22448Y7424D01* X22444Y7417D01* X22441Y7409D01* X22440Y7400D01* X22440Y7391D01* X22442Y7383D01* X22454Y7349D01* X22465Y7325D01* Y5625D01* X22460Y5610D01* X22458Y5601D01* X22458Y5593D01* X22459Y5584D01* X22462Y5576D01* X22465Y5571D01* Y5419D01* X22464Y5417D01* X22461Y5409D01* X22460Y5400D01* X22460Y5391D01* X22462Y5383D01* X22465Y5374D01* Y0D01* X22285D01* Y23374D01* X22294Y23349D01* X22309Y23316D01* X22327Y23284D01* X22348Y23255D01* X22372Y23227D01* X22397Y23202D01* X22425Y23179D01* X22455Y23159D01* X22465Y23153D01* Y21834D01* X22440Y21816D01* X22412Y21793D01* X22387Y21767D01* X22364Y21739D01* X22344Y21709D01* X22326Y21677D01* X22312Y21644D01* X22300Y21610D01* X22298Y21601D01* X22298Y21593D01* X22299Y21584D01* X22302Y21576D01* X22307Y21568D01* X22312Y21561D01* X22319Y21556D01* X22326Y21551D01* X22334Y21548D01* X22343Y21546D01* X22352Y21546D01* X22360Y21547D01* X22368Y21550D01* X22376Y21555D01* X22383Y21560D01* X22389Y21567D01* X22393Y21574D01* X22396Y21582D01* X22405Y21608D01* X22416Y21633D01* X22429Y21657D01* X22444Y21679D01* X22461Y21700D01* X22465Y21704D01* Y21295D01* X22465Y21295D01* X22447Y21316D01* X22432Y21338D01* X22418Y21362D01* X22407Y21386D01* X22398Y21412D01* X22394Y21420D01* X22390Y21427D01* X22384Y21434D01* X22377Y21439D01* X22369Y21443D01* X22361Y21446D01* X22352Y21447D01* X22344Y21447D01* X22335Y21445D01* X22327Y21442D01* X22320Y21437D01* X22313Y21431D01* X22308Y21424D01* X22304Y21417D01* X22301Y21409D01* X22300Y21400D01* X22300Y21391D01* X22302Y21383D01* X22314Y21349D01* X22329Y21316D01* X22347Y21284D01* X22368Y21255D01* X22392Y21227D01* X22417Y21202D01* X22445Y21179D01* X22465Y21166D01* Y19820D01* X22460Y19816D01* X22432Y19793D01* X22407Y19767D01* X22384Y19739D01* X22364Y19709D01* X22346Y19677D01* X22332Y19644D01* X22320Y19610D01* X22318Y19601D01* X22318Y19593D01* X22319Y19584D01* X22322Y19576D01* X22327Y19568D01* X22332Y19561D01* X22339Y19556D01* X22346Y19551D01* X22354Y19548D01* X22363Y19546D01* X22372Y19546D01* X22380Y19547D01* X22388Y19550D01* X22396Y19555D01* X22403Y19560D01* X22409Y19567D01* X22413Y19574D01* X22416Y19582D01* X22425Y19608D01* X22436Y19633D01* X22449Y19657D01* X22464Y19679D01* X22465Y19680D01* Y19319D01* X22452Y19338D01* X22438Y19362D01* X22427Y19386D01* X22418Y19412D01* X22414Y19420D01* X22410Y19427D01* X22404Y19434D01* X22397Y19439D01* X22389Y19443D01* X22381Y19446D01* X22372Y19447D01* X22364Y19447D01* X22355Y19445D01* X22347Y19442D01* X22340Y19437D01* X22333Y19431D01* X22328Y19424D01* X22324Y19417D01* X22321Y19409D01* X22320Y19400D01* X22320Y19391D01* X22322Y19383D01* X22334Y19349D01* X22349Y19316D01* X22367Y19284D01* X22388Y19255D01* X22412Y19227D01* X22437Y19202D01* X22465Y19179D01* Y17804D01* X22452Y17793D01* X22427Y17767D01* X22404Y17739D01* X22384Y17709D01* X22366Y17677D01* X22352Y17644D01* X22340Y17610D01* X22338Y17601D01* X22338Y17593D01* X22339Y17584D01* X22342Y17576D01* X22347Y17568D01* X22352Y17561D01* X22359Y17556D01* X22366Y17551D01* X22374Y17548D01* X22383Y17546D01* X22392Y17546D01* X22400Y17547D01* X22408Y17550D01* X22416Y17555D01* X22423Y17560D01* X22429Y17567D01* X22433Y17574D01* X22436Y17582D01* X22445Y17608D01* X22456Y17633D01* X22465Y17650D01* Y17349D01* X22458Y17362D01* X22447Y17386D01* X22438Y17412D01* X22434Y17420D01* X22430Y17427D01* X22424Y17434D01* X22417Y17439D01* X22409Y17443D01* X22401Y17446D01* X22392Y17447D01* X22384Y17447D01* X22375Y17445D01* X22367Y17442D01* X22360Y17437D01* X22353Y17431D01* X22348Y17424D01* X22344Y17417D01* X22341Y17409D01* X22340Y17400D01* X22340Y17391D01* X22342Y17383D01* X22354Y17349D01* X22369Y17316D01* X22387Y17284D01* X22408Y17255D01* X22432Y17227D01* X22457Y17202D01* X22465Y17196D01* Y15785D01* X22447Y15767D01* X22424Y15739D01* X22404Y15709D01* X22386Y15677D01* X22372Y15644D01* X22360Y15610D01* X22358Y15601D01* X22358Y15593D01* X22359Y15584D01* X22362Y15576D01* X22367Y15568D01* X22372Y15561D01* X22379Y15556D01* X22386Y15551D01* X22394Y15548D01* X22403Y15546D01* X22412Y15546D01* X22420Y15547D01* X22428Y15550D01* X22436Y15555D01* X22443Y15560D01* X22449Y15567D01* X22453Y15574D01* X22456Y15582D01* X22465Y15608D01* X22465Y15609D01* Y15391D01* X22458Y15412D01* X22454Y15420D01* X22450Y15427D01* X22444Y15434D01* X22437Y15439D01* X22429Y15443D01* X22421Y15446D01* X22412Y15447D01* X22404Y15447D01* X22395Y15445D01* X22387Y15442D01* X22380Y15437D01* X22373Y15431D01* X22368Y15424D01* X22364Y15417D01* X22361Y15409D01* X22360Y15400D01* X22360Y15391D01* X22362Y15383D01* X22374Y15349D01* X22389Y15316D01* X22407Y15284D01* X22428Y15255D01* X22452Y15227D01* X22465Y15214D01* Y13765D01* X22444Y13739D01* X22424Y13709D01* X22406Y13677D01* X22392Y13644D01* X22380Y13610D01* X22378Y13601D01* X22378Y13593D01* X22379Y13584D01* X22382Y13576D01* X22387Y13568D01* X22392Y13561D01* X22399Y13556D01* X22406Y13551D01* X22414Y13548D01* X22423Y13546D01* X22432Y13546D01* X22440Y13547D01* X22448Y13550D01* X22456Y13555D01* X22463Y13560D01* X22465Y13563D01* Y13432D01* X22464Y13434D01* X22457Y13439D01* X22449Y13443D01* X22441Y13446D01* X22432Y13447D01* X22424Y13447D01* X22415Y13445D01* X22407Y13442D01* X22400Y13437D01* X22393Y13431D01* X22388Y13424D01* X22384Y13417D01* X22381Y13409D01* X22380Y13400D01* X22380Y13391D01* X22382Y13383D01* X22394Y13349D01* X22409Y13316D01* X22427Y13284D01* X22448Y13255D01* X22465Y13235D01* Y11740D01* G37* G36* Y23276D02*X22464Y23276D01* X22445Y23295D01* X22427Y23316D01* X22412Y23338D01* X22398Y23362D01* X22387Y23386D01* X22378Y23412D01* X22374Y23420D01* X22370Y23427D01* X22364Y23434D01* X22357Y23439D01* X22349Y23443D01* X22341Y23446D01* X22332Y23447D01* X22324Y23447D01* X22315Y23445D01* X22307Y23442D01* X22300Y23437D01* X22293Y23431D01* X22288Y23424D01* X22285Y23419D01* Y23571D01* X22287Y23568D01* X22292Y23561D01* X22299Y23556D01* X22306Y23551D01* X22314Y23548D01* X22323Y23546D01* X22332Y23546D01* X22340Y23547D01* X22348Y23550D01* X22356Y23555D01* X22363Y23560D01* X22369Y23567D01* X22373Y23574D01* X22376Y23582D01* X22385Y23608D01* X22396Y23633D01* X22409Y23657D01* X22424Y23679D01* X22441Y23700D01* X22460Y23719D01* X22465Y23723D01* Y23276D01* G37* G36* Y23846D02*X22449Y23837D01* X22420Y23816D01* X22392Y23793D01* X22367Y23767D01* X22344Y23739D01* X22324Y23709D01* X22306Y23677D01* X22292Y23644D01* X22285Y23625D01* Y25325D01* X22289Y25316D01* X22307Y25284D01* X22328Y25255D01* X22352Y25227D01* X22377Y25202D01* X22405Y25179D01* X22435Y25159D01* X22465Y25142D01* Y23846D01* G37* G36* Y25259D02*X22465Y25259D01* X22444Y25276D01* X22425Y25295D01* X22407Y25316D01* X22392Y25338D01* X22378Y25362D01* X22367Y25386D01* X22358Y25412D01* X22354Y25420D01* X22350Y25427D01* X22344Y25434D01* X22337Y25439D01* X22329Y25443D01* X22321Y25446D01* X22312Y25447D01* X22304Y25447D01* X22295Y25445D01* X22287Y25442D01* X22285Y25441D01* Y25552D01* X22286Y25551D01* X22294Y25548D01* X22303Y25546D01* X22312Y25546D01* X22320Y25547D01* X22328Y25550D01* X22336Y25555D01* X22343Y25560D01* X22349Y25567D01* X22353Y25574D01* X22356Y25582D01* X22365Y25608D01* X22376Y25633D01* X22389Y25657D01* X22404Y25679D01* X22421Y25700D01* X22440Y25719D01* X22461Y25737D01* X22465Y25740D01* Y25259D01* G37* G36* Y25857D02*X22461Y25855D01* X22429Y25837D01* X22400Y25816D01* X22372Y25793D01* X22347Y25767D01* X22324Y25739D01* X22304Y25709D01* X22286Y25677D01* X22285Y25675D01* Y27288D01* X22287Y27284D01* X22308Y27255D01* X22332Y27227D01* X22357Y27202D01* X22385Y27179D01* X22415Y27159D01* X22447Y27141D01* X22465Y27133D01* Y25857D01* G37* G36* Y27246D02*X22445Y27259D01* X22424Y27276D01* X22405Y27295D01* X22387Y27316D01* X22372Y27338D01* X22358Y27362D01* X22347Y27386D01* X22338Y27412D01* X22334Y27420D01* X22330Y27427D01* X22324Y27434D01* X22317Y27439D01* X22309Y27443D01* X22301Y27446D01* X22292Y27447D01* X22285Y27447D01* Y27546D01* X22292Y27546D01* X22300Y27547D01* X22308Y27550D01* X22316Y27555D01* X22323Y27560D01* X22329Y27567D01* X22333Y27574D01* X22336Y27582D01* X22345Y27608D01* X22356Y27633D01* X22369Y27657D01* X22384Y27679D01* X22401Y27700D01* X22420Y27719D01* X22441Y27737D01* X22463Y27752D01* X22465Y27754D01* Y27246D01* G37* G36* Y27866D02*X22441Y27855D01* X22409Y27837D01* X22380Y27816D01* X22352Y27793D01* X22327Y27767D01* X22304Y27739D01* X22285Y27711D01* Y29259D01* X22288Y29255D01* X22312Y29227D01* X22337Y29202D01* X22365Y29179D01* X22395Y29159D01* X22427Y29141D01* X22460Y29127D01* X22465Y29125D01* Y27866D01* G37* G36* Y29234D02*X22448Y29244D01* X22425Y29259D01* X22404Y29276D01* X22385Y29295D01* X22367Y29316D01* X22352Y29338D01* X22338Y29362D01* X22327Y29386D01* X22318Y29412D01* X22314Y29420D01* X22310Y29427D01* X22304Y29434D01* X22297Y29439D01* X22289Y29443D01* X22285Y29445D01* Y29549D01* X22288Y29550D01* X22296Y29555D01* X22303Y29560D01* X22309Y29567D01* X22313Y29574D01* X22316Y29582D01* X22325Y29608D01* X22336Y29633D01* X22349Y29657D01* X22364Y29679D01* X22381Y29700D01* X22400Y29719D01* X22421Y29737D01* X22443Y29752D01* X22465Y29765D01* Y29234D01* G37* G36* Y29874D02*X22453Y29870D01* X22421Y29855D01* X22389Y29837D01* X22360Y29816D01* X22332Y29793D01* X22307Y29767D01* X22285Y29740D01* Y31235D01* X22292Y31227D01* X22317Y31202D01* X22345Y31179D01* X22375Y31159D01* X22407Y31141D01* X22440Y31127D01* X22465Y31118D01* Y29874D01* G37* G36* Y31225D02*X22451Y31231D01* X22428Y31244D01* X22405Y31259D01* X22384Y31276D01* X22365Y31295D01* X22347Y31316D01* X22332Y31338D01* X22318Y31362D01* X22307Y31386D01* X22298Y31412D01* X22294Y31420D01* X22290Y31427D01* X22285Y31432D01* Y31563D01* X22289Y31567D01* X22293Y31574D01* X22296Y31582D01* X22305Y31608D01* X22316Y31633D01* X22329Y31657D01* X22344Y31679D01* X22361Y31700D01* X22380Y31719D01* X22401Y31737D01* X22423Y31752D01* X22447Y31766D01* X22465Y31775D01* Y31225D01* G37* G36* Y31881D02*X22433Y31870D01* X22401Y31855D01* X22369Y31837D01* X22340Y31816D01* X22312Y31793D01* X22287Y31767D01* X22285Y31765D01* Y33214D01* X22297Y33202D01* X22325Y33179D01* X22355Y33159D01* X22387Y33141D01* X22420Y33127D01* X22454Y33115D01* X22463Y33113D01* X22465D01* Y31881D01* G37* G36* Y33217D02*X22456Y33220D01* X22431Y33231D01* X22408Y33244D01* X22385Y33259D01* X22364Y33276D01* X22345Y33295D01* X22327Y33316D01* X22312Y33338D01* X22298Y33362D01* X22287Y33386D01* X22285Y33391D01* Y33609D01* X22296Y33633D01* X22309Y33657D01* X22324Y33679D01* X22341Y33700D01* X22360Y33719D01* X22381Y33737D01* X22403Y33752D01* X22427Y33766D01* X22451Y33777D01* X22465Y33782D01* Y33217D01* G37* G36* Y33884D02*X22465Y33884D01* X22456Y33884D01* X22448Y33882D01* X22413Y33870D01* X22381Y33855D01* X22349Y33837D01* X22320Y33816D01* X22292Y33793D01* X22285Y33785D01* Y35196D01* X22305Y35179D01* X22335Y35159D01* X22367Y35141D01* X22400Y35127D01* X22434Y35115D01* X22443Y35113D01* X22452Y35113D01* X22460Y35115D01* X22465Y35116D01* Y33884D01* G37* G36* Y35210D02*X22462Y35211D01* X22436Y35220D01* X22411Y35231D01* X22388Y35244D01* X22365Y35259D01* X22344Y35276D01* X22325Y35295D01* X22307Y35316D01* X22292Y35338D01* X22285Y35349D01* Y35650D01* X22289Y35657D01* X22304Y35679D01* X22321Y35700D01* X22340Y35719D01* X22361Y35737D01* X22383Y35752D01* X22407Y35766D01* X22431Y35777D01* X22457Y35786D01* X22465Y35790D01* X22465Y35790D01* Y35210D01* G37* G36* Y35878D02*X22462Y35880D01* X22453Y35883D01* X22445Y35884D01* X22436Y35884D01* X22428Y35882D01* X22393Y35870D01* X22361Y35855D01* X22329Y35837D01* X22300Y35816D01* X22285Y35804D01* Y37179D01* X22285Y37179D01* X22315Y37159D01* X22347Y37141D01* X22380Y37127D01* X22414Y37115D01* X22423Y37113D01* X22432Y37113D01* X22440Y37115D01* X22448Y37117D01* X22456Y37122D01* X22463Y37127D01* X22465Y37130D01* Y35878D01* G37* G36* Y37197D02*X22464Y37198D01* X22457Y37204D01* X22450Y37208D01* X22442Y37211D01* X22416Y37220D01* X22391Y37231D01* X22368Y37244D01* X22345Y37259D01* X22324Y37276D01* X22305Y37295D01* X22287Y37316D01* X22285Y37319D01* Y37680D01* X22301Y37700D01* X22320Y37719D01* X22341Y37737D01* X22363Y37752D01* X22387Y37766D01* X22411Y37777D01* X22437Y37786D01* X22445Y37790D01* X22452Y37794D01* X22459Y37800D01* X22464Y37807D01* X22465Y37809D01* Y37197D01* G37* G36* Y40000D02*X22724D01* Y39834D01* X22714Y39840D01* X22682Y39858D01* X22649Y39873D01* X22615Y39884D01* X22606Y39886D01* X22597Y39886D01* X22589Y39885D01* X22581Y39882D01* X22573Y39878D01* X22566Y39872D01* X22560Y39865D01* X22556Y39858D01* X22553Y39850D01* X22551Y39841D01* X22551Y39833D01* X22552Y39824D01* X22555Y39816D01* X22559Y39808D01* X22565Y39801D01* X22572Y39796D01* X22579Y39791D01* X22587Y39788D01* X22613Y39779D01* X22638Y39768D01* X22661Y39755D01* X22684Y39740D01* X22705Y39723D01* X22724Y39704D01* Y39295D01* X22709Y39280D01* X22688Y39262D01* X22666Y39247D01* X22642Y39233D01* X22618Y39222D01* X22592Y39213D01* X22584Y39209D01* X22577Y39205D01* X22570Y39199D01* X22565Y39192D01* X22561Y39184D01* X22558Y39176D01* X22557Y39167D01* X22557Y39159D01* X22559Y39150D01* X22562Y39142D01* X22567Y39135D01* X22573Y39128D01* X22580Y39123D01* X22587Y39119D01* X22596Y39116D01* X22604Y39115D01* X22613Y39115D01* X22621Y39117D01* X22656Y39129D01* X22688Y39144D01* X22720Y39162D01* X22724Y39165D01* Y37846D01* X22702Y37858D01* X22669Y37873D01* X22635Y37884D01* X22626Y37886D01* X22617Y37886D01* X22609Y37885D01* X22601Y37882D01* X22593Y37878D01* X22586Y37872D01* X22580Y37865D01* X22576Y37858D01* X22573Y37850D01* X22571Y37841D01* X22571Y37833D01* X22572Y37824D01* X22575Y37816D01* X22579Y37808D01* X22585Y37801D01* X22592Y37796D01* X22599Y37791D01* X22607Y37788D01* X22633Y37779D01* X22658Y37768D01* X22681Y37755D01* X22704Y37740D01* X22724Y37724D01* Y37276D01* X22708Y37262D01* X22686Y37247D01* X22662Y37233D01* X22638Y37222D01* X22612Y37213D01* X22604Y37209D01* X22597Y37205D01* X22590Y37199D01* X22585Y37192D01* X22581Y37184D01* X22578Y37176D01* X22577Y37167D01* X22577Y37159D01* X22579Y37150D01* X22582Y37142D01* X22587Y37135D01* X22593Y37128D01* X22600Y37123D01* X22607Y37119D01* X22616Y37116D01* X22624Y37115D01* X22633Y37115D01* X22641Y37117D01* X22676Y37129D01* X22708Y37144D01* X22724Y37153D01* Y35857D01* X22722Y35858D01* X22689Y35873D01* X22655Y35884D01* X22646Y35886D01* X22637Y35886D01* X22629Y35885D01* X22621Y35882D01* X22613Y35878D01* X22606Y35872D01* X22600Y35865D01* X22596Y35858D01* X22593Y35850D01* X22591Y35841D01* X22591Y35833D01* X22592Y35824D01* X22595Y35816D01* X22599Y35808D01* X22605Y35801D01* X22612Y35796D01* X22619Y35791D01* X22627Y35788D01* X22653Y35779D01* X22678Y35768D01* X22701Y35755D01* X22724Y35740D01* Y35259D01* X22706Y35247D01* X22682Y35233D01* X22658Y35222D01* X22632Y35213D01* X22624Y35209D01* X22617Y35205D01* X22610Y35199D01* X22605Y35192D01* X22601Y35184D01* X22598Y35176D01* X22597Y35167D01* X22597Y35159D01* X22599Y35150D01* X22602Y35142D01* X22607Y35135D01* X22613Y35128D01* X22620Y35123D01* X22627Y35119D01* X22636Y35116D01* X22644Y35115D01* X22653Y35115D01* X22661Y35117D01* X22696Y35129D01* X22724Y35142D01* Y33866D01* X22709Y33873D01* X22675Y33884D01* X22666Y33886D01* X22657Y33886D01* X22649Y33885D01* X22641Y33882D01* X22633Y33878D01* X22626Y33872D01* X22620Y33865D01* X22616Y33858D01* X22613Y33850D01* X22611Y33841D01* X22611Y33833D01* X22612Y33824D01* X22615Y33816D01* X22619Y33808D01* X22625Y33801D01* X22632Y33796D01* X22639Y33791D01* X22647Y33788D01* X22673Y33779D01* X22698Y33768D01* X22721Y33755D01* X22724Y33754D01* Y33246D01* X22702Y33233D01* X22678Y33222D01* X22652Y33213D01* X22644Y33209D01* X22637Y33205D01* X22630Y33199D01* X22625Y33192D01* X22621Y33184D01* X22618Y33176D01* X22617Y33167D01* X22617Y33159D01* X22619Y33150D01* X22622Y33142D01* X22627Y33135D01* X22633Y33128D01* X22640Y33123D01* X22647Y33119D01* X22656Y33116D01* X22664Y33115D01* X22673Y33115D01* X22681Y33117D01* X22716Y33129D01* X22724Y33133D01* Y31874D01* X22695Y31884D01* X22686Y31886D01* X22677Y31886D01* X22669Y31885D01* X22661Y31882D01* X22653Y31878D01* X22646Y31872D01* X22640Y31865D01* X22636Y31858D01* X22633Y31850D01* X22631Y31841D01* X22631Y31833D01* X22632Y31824D01* X22635Y31816D01* X22639Y31808D01* X22645Y31801D01* X22652Y31796D01* X22659Y31791D01* X22667Y31788D01* X22693Y31779D01* X22718Y31768D01* X22724Y31765D01* Y31234D01* X22722Y31233D01* X22698Y31222D01* X22672Y31213D01* X22664Y31209D01* X22657Y31205D01* X22650Y31199D01* X22645Y31192D01* X22641Y31184D01* X22638Y31176D01* X22637Y31167D01* X22637Y31159D01* X22639Y31150D01* X22642Y31142D01* X22647Y31135D01* X22653Y31128D01* X22660Y31123D01* X22667Y31119D01* X22676Y31116D01* X22684Y31115D01* X22693Y31115D01* X22701Y31117D01* X22724Y31125D01* Y29881D01* X22715Y29884D01* X22706Y29886D01* X22697Y29886D01* X22689Y29885D01* X22681Y29882D01* X22673Y29878D01* X22666Y29872D01* X22660Y29865D01* X22656Y29858D01* X22653Y29850D01* X22651Y29841D01* X22651Y29833D01* X22652Y29824D01* X22655Y29816D01* X22659Y29808D01* X22665Y29801D01* X22672Y29796D01* X22679Y29791D01* X22687Y29788D01* X22713Y29779D01* X22724Y29774D01* Y29225D01* X22718Y29222D01* X22692Y29213D01* X22684Y29209D01* X22677Y29205D01* X22670Y29199D01* X22665Y29192D01* X22661Y29184D01* X22658Y29176D01* X22657Y29167D01* X22657Y29159D01* X22659Y29150D01* X22662Y29142D01* X22667Y29135D01* X22673Y29128D01* X22680Y29123D01* X22687Y29119D01* X22696Y29116D01* X22704Y29115D01* X22713Y29115D01* X22721Y29117D01* X22724Y29118D01* Y27886D01* X22717Y27886D01* X22709Y27885D01* X22701Y27882D01* X22693Y27878D01* X22686Y27872D01* X22680Y27865D01* X22676Y27858D01* X22673Y27850D01* X22671Y27841D01* X22671Y27833D01* X22672Y27824D01* X22675Y27816D01* X22679Y27808D01* X22685Y27801D01* X22692Y27796D01* X22699Y27791D01* X22707Y27788D01* X22724Y27782D01* Y27217D01* X22712Y27213D01* X22704Y27209D01* X22697Y27205D01* X22690Y27199D01* X22685Y27192D01* X22681Y27184D01* X22678Y27176D01* X22677Y27167D01* X22677Y27159D01* X22679Y27150D01* X22682Y27142D01* X22687Y27135D01* X22693Y27128D01* X22700Y27123D01* X22707Y27119D01* X22716Y27116D01* X22724Y27115D01* Y25883D01* X22721Y25882D01* X22713Y25878D01* X22706Y25872D01* X22700Y25865D01* X22696Y25858D01* X22693Y25850D01* X22691Y25841D01* X22691Y25833D01* X22692Y25824D01* X22695Y25816D01* X22699Y25808D01* X22705Y25801D01* X22712Y25796D01* X22719Y25791D01* X22724Y25789D01* Y25209D01* X22717Y25205D01* X22710Y25199D01* X22705Y25192D01* X22701Y25184D01* X22698Y25176D01* X22697Y25167D01* X22697Y25159D01* X22699Y25150D01* X22702Y25142D01* X22707Y25135D01* X22713Y25128D01* X22720Y25123D01* X22724Y25121D01* Y23870D01* X22720Y23865D01* X22716Y23858D01* X22713Y23850D01* X22711Y23841D01* X22711Y23833D01* X22712Y23824D01* X22715Y23816D01* X22719Y23808D01* X22724Y23802D01* Y23190D01* X22721Y23184D01* X22718Y23176D01* X22717Y23167D01* X22717Y23159D01* X22719Y23150D01* X22722Y23142D01* X22724Y23140D01* Y11861D01* X22722Y11864D01* X22716Y11871D01* X22709Y11876D01* X22702Y11880D01* X22693Y11883D01* X22685Y11884D01* X22676Y11884D01* X22668Y11882D01* X22633Y11870D01* X22601Y11855D01* X22569Y11837D01* X22540Y11816D01* X22512Y11793D01* X22487Y11767D01* X22465Y11740D01* Y13235D01* X22472Y13227D01* X22497Y13202D01* X22525Y13179D01* X22555Y13159D01* X22587Y13141D01* X22620Y13127D01* X22654Y13115D01* X22663Y13113D01* X22672Y13113D01* X22680Y13115D01* X22688Y13117D01* X22696Y13122D01* X22703Y13127D01* X22709Y13134D01* X22713Y13141D01* X22716Y13149D01* X22718Y13158D01* X22718Y13167D01* X22717Y13175D01* X22714Y13183D01* X22710Y13191D01* X22704Y13198D01* X22697Y13204D01* X22690Y13208D01* X22682Y13211D01* X22656Y13220D01* X22631Y13231D01* X22608Y13244D01* X22585Y13259D01* X22564Y13276D01* X22545Y13295D01* X22527Y13316D01* X22512Y13338D01* X22498Y13362D01* X22487Y13386D01* X22478Y13412D01* X22474Y13420D01* X22470Y13427D01* X22465Y13432D01* Y13563D01* X22469Y13567D01* X22473Y13574D01* X22476Y13582D01* X22485Y13608D01* X22496Y13633D01* X22509Y13657D01* X22524Y13679D01* X22541Y13700D01* X22560Y13719D01* X22581Y13737D01* X22603Y13752D01* X22627Y13766D01* X22651Y13777D01* X22677Y13786D01* X22685Y13790D01* X22692Y13794D01* X22699Y13800D01* X22704Y13807D01* X22708Y13815D01* X22711Y13823D01* X22712Y13832D01* X22712Y13840D01* X22710Y13849D01* X22707Y13857D01* X22702Y13864D01* X22696Y13871D01* X22689Y13876D01* X22682Y13880D01* X22673Y13883D01* X22665Y13884D01* X22656Y13884D01* X22648Y13882D01* X22613Y13870D01* X22581Y13855D01* X22549Y13837D01* X22520Y13816D01* X22492Y13793D01* X22467Y13767D01* X22465Y13765D01* Y15214D01* X22477Y15202D01* X22505Y15179D01* X22535Y15159D01* X22567Y15141D01* X22600Y15127D01* X22634Y15115D01* X22643Y15113D01* X22652Y15113D01* X22660Y15115D01* X22668Y15117D01* X22676Y15122D01* X22683Y15127D01* X22689Y15134D01* X22693Y15141D01* X22696Y15149D01* X22698Y15158D01* X22698Y15167D01* X22697Y15175D01* X22694Y15183D01* X22690Y15191D01* X22684Y15198D01* X22677Y15204D01* X22670Y15208D01* X22662Y15211D01* X22636Y15220D01* X22611Y15231D01* X22588Y15244D01* X22565Y15259D01* X22544Y15276D01* X22525Y15295D01* X22507Y15316D01* X22492Y15338D01* X22478Y15362D01* X22467Y15386D01* X22465Y15391D01* Y15609D01* X22476Y15633D01* X22489Y15657D01* X22504Y15679D01* X22521Y15700D01* X22540Y15719D01* X22561Y15737D01* X22583Y15752D01* X22607Y15766D01* X22631Y15777D01* X22657Y15786D01* X22665Y15790D01* X22672Y15794D01* X22679Y15800D01* X22684Y15807D01* X22688Y15815D01* X22691Y15823D01* X22692Y15832D01* X22692Y15840D01* X22690Y15849D01* X22687Y15857D01* X22682Y15864D01* X22676Y15871D01* X22669Y15876D01* X22662Y15880D01* X22653Y15883D01* X22645Y15884D01* X22636Y15884D01* X22628Y15882D01* X22593Y15870D01* X22561Y15855D01* X22529Y15837D01* X22500Y15816D01* X22472Y15793D01* X22465Y15785D01* Y17196D01* X22485Y17179D01* X22515Y17159D01* X22547Y17141D01* X22580Y17127D01* X22614Y17115D01* X22623Y17113D01* X22632Y17113D01* X22640Y17115D01* X22648Y17117D01* X22656Y17122D01* X22663Y17127D01* X22669Y17134D01* X22673Y17141D01* X22676Y17149D01* X22678Y17158D01* X22678Y17167D01* X22677Y17175D01* X22674Y17183D01* X22670Y17191D01* X22664Y17198D01* X22657Y17204D01* X22650Y17208D01* X22642Y17211D01* X22616Y17220D01* X22591Y17231D01* X22568Y17244D01* X22545Y17259D01* X22524Y17276D01* X22505Y17295D01* X22487Y17316D01* X22472Y17338D01* X22465Y17349D01* Y17650D01* X22469Y17657D01* X22484Y17679D01* X22501Y17700D01* X22520Y17719D01* X22541Y17737D01* X22563Y17752D01* X22587Y17766D01* X22611Y17777D01* X22637Y17786D01* X22645Y17790D01* X22652Y17794D01* X22659Y17800D01* X22664Y17807D01* X22668Y17815D01* X22671Y17823D01* X22672Y17832D01* X22672Y17840D01* X22670Y17849D01* X22667Y17857D01* X22662Y17864D01* X22656Y17871D01* X22649Y17876D01* X22642Y17880D01* X22633Y17883D01* X22625Y17884D01* X22616Y17884D01* X22608Y17882D01* X22573Y17870D01* X22541Y17855D01* X22509Y17837D01* X22480Y17816D01* X22465Y17804D01* Y19179D01* X22465Y19179D01* X22495Y19159D01* X22527Y19141D01* X22560Y19127D01* X22594Y19115D01* X22603Y19113D01* X22612Y19113D01* X22620Y19115D01* X22628Y19117D01* X22636Y19122D01* X22643Y19127D01* X22649Y19134D01* X22653Y19141D01* X22656Y19149D01* X22658Y19158D01* X22658Y19167D01* X22657Y19175D01* X22654Y19183D01* X22650Y19191D01* X22644Y19198D01* X22637Y19204D01* X22630Y19208D01* X22622Y19211D01* X22596Y19220D01* X22571Y19231D01* X22548Y19244D01* X22525Y19259D01* X22504Y19276D01* X22485Y19295D01* X22467Y19316D01* X22465Y19319D01* Y19680D01* X22481Y19700D01* X22500Y19719D01* X22521Y19737D01* X22543Y19752D01* X22567Y19766D01* X22591Y19777D01* X22617Y19786D01* X22625Y19790D01* X22632Y19794D01* X22639Y19800D01* X22644Y19807D01* X22648Y19815D01* X22651Y19823D01* X22652Y19832D01* X22652Y19840D01* X22650Y19849D01* X22647Y19857D01* X22642Y19864D01* X22636Y19871D01* X22629Y19876D01* X22622Y19880D01* X22613Y19883D01* X22605Y19884D01* X22596Y19884D01* X22588Y19882D01* X22553Y19870D01* X22521Y19855D01* X22489Y19837D01* X22465Y19820D01* Y21166D01* X22475Y21159D01* X22507Y21141D01* X22540Y21127D01* X22574Y21115D01* X22583Y21113D01* X22592Y21113D01* X22600Y21115D01* X22608Y21117D01* X22616Y21122D01* X22623Y21127D01* X22629Y21134D01* X22633Y21141D01* X22636Y21149D01* X22638Y21158D01* X22638Y21167D01* X22637Y21175D01* X22634Y21183D01* X22630Y21191D01* X22624Y21198D01* X22617Y21204D01* X22610Y21208D01* X22602Y21211D01* X22576Y21220D01* X22551Y21231D01* X22528Y21244D01* X22505Y21259D01* X22484Y21276D01* X22465Y21295D01* Y21704D01* X22480Y21719D01* X22501Y21737D01* X22523Y21752D01* X22547Y21766D01* X22571Y21777D01* X22597Y21786D01* X22605Y21790D01* X22612Y21794D01* X22619Y21800D01* X22624Y21807D01* X22628Y21815D01* X22631Y21823D01* X22632Y21832D01* X22632Y21840D01* X22630Y21849D01* X22627Y21857D01* X22622Y21864D01* X22616Y21871D01* X22609Y21876D01* X22602Y21880D01* X22593Y21883D01* X22585Y21884D01* X22576Y21884D01* X22568Y21882D01* X22533Y21870D01* X22501Y21855D01* X22469Y21837D01* X22465Y21834D01* Y23153D01* X22487Y23141D01* X22520Y23127D01* X22554Y23115D01* X22563Y23113D01* X22572Y23113D01* X22580Y23115D01* X22588Y23117D01* X22596Y23122D01* X22603Y23127D01* X22609Y23134D01* X22613Y23141D01* X22616Y23149D01* X22618Y23158D01* X22618Y23167D01* X22617Y23175D01* X22614Y23183D01* X22610Y23191D01* X22604Y23198D01* X22597Y23204D01* X22590Y23208D01* X22582Y23211D01* X22556Y23220D01* X22531Y23231D01* X22508Y23244D01* X22485Y23259D01* X22465Y23276D01* Y23723D01* X22481Y23737D01* X22503Y23752D01* X22527Y23766D01* X22551Y23777D01* X22577Y23786D01* X22585Y23790D01* X22592Y23794D01* X22599Y23800D01* X22604Y23807D01* X22608Y23815D01* X22611Y23823D01* X22612Y23832D01* X22612Y23840D01* X22610Y23849D01* X22607Y23857D01* X22602Y23864D01* X22596Y23871D01* X22589Y23876D01* X22582Y23880D01* X22573Y23883D01* X22565Y23884D01* X22556Y23884D01* X22548Y23882D01* X22513Y23870D01* X22481Y23855D01* X22465Y23846D01* Y25142D01* X22467Y25141D01* X22500Y25127D01* X22534Y25115D01* X22543Y25113D01* X22552Y25113D01* X22560Y25115D01* X22568Y25117D01* X22576Y25122D01* X22583Y25127D01* X22589Y25134D01* X22593Y25141D01* X22596Y25149D01* X22598Y25158D01* X22598Y25167D01* X22597Y25175D01* X22594Y25183D01* X22590Y25191D01* X22584Y25198D01* X22577Y25204D01* X22570Y25208D01* X22562Y25211D01* X22536Y25220D01* X22511Y25231D01* X22488Y25244D01* X22465Y25259D01* Y25740D01* X22483Y25752D01* X22507Y25766D01* X22531Y25777D01* X22557Y25786D01* X22565Y25790D01* X22572Y25794D01* X22579Y25800D01* X22584Y25807D01* X22588Y25815D01* X22591Y25823D01* X22592Y25832D01* X22592Y25840D01* X22590Y25849D01* X22587Y25857D01* X22582Y25864D01* X22576Y25871D01* X22569Y25876D01* X22562Y25880D01* X22553Y25883D01* X22545Y25884D01* X22536Y25884D01* X22528Y25882D01* X22493Y25870D01* X22465Y25857D01* Y27133D01* X22480Y27127D01* X22514Y27115D01* X22523Y27113D01* X22532Y27113D01* X22540Y27115D01* X22548Y27117D01* X22556Y27122D01* X22563Y27127D01* X22569Y27134D01* X22573Y27141D01* X22576Y27149D01* X22578Y27158D01* X22578Y27167D01* X22577Y27175D01* X22574Y27183D01* X22570Y27191D01* X22564Y27198D01* X22557Y27204D01* X22550Y27208D01* X22542Y27211D01* X22516Y27220D01* X22491Y27231D01* X22468Y27244D01* X22465Y27246D01* Y27754D01* X22487Y27766D01* X22511Y27777D01* X22537Y27786D01* X22545Y27790D01* X22552Y27794D01* X22559Y27800D01* X22564Y27807D01* X22568Y27815D01* X22571Y27823D01* X22572Y27832D01* X22572Y27840D01* X22570Y27849D01* X22567Y27857D01* X22562Y27864D01* X22556Y27871D01* X22549Y27876D01* X22542Y27880D01* X22533Y27883D01* X22525Y27884D01* X22516Y27884D01* X22508Y27882D01* X22473Y27870D01* X22465Y27866D01* Y29125D01* X22494Y29115D01* X22503Y29113D01* X22512Y29113D01* X22520Y29115D01* X22528Y29117D01* X22536Y29122D01* X22543Y29127D01* X22549Y29134D01* X22553Y29141D01* X22556Y29149D01* X22558Y29158D01* X22558Y29167D01* X22557Y29175D01* X22554Y29183D01* X22550Y29191D01* X22544Y29198D01* X22537Y29204D01* X22530Y29208D01* X22522Y29211D01* X22496Y29220D01* X22471Y29231D01* X22465Y29234D01* Y29765D01* X22467Y29766D01* X22491Y29777D01* X22517Y29786D01* X22525Y29790D01* X22532Y29794D01* X22539Y29800D01* X22544Y29807D01* X22548Y29815D01* X22551Y29823D01* X22552Y29832D01* X22552Y29840D01* X22550Y29849D01* X22547Y29857D01* X22542Y29864D01* X22536Y29871D01* X22529Y29876D01* X22522Y29880D01* X22513Y29883D01* X22505Y29884D01* X22496Y29884D01* X22488Y29882D01* X22465Y29874D01* Y31118D01* X22474Y31115D01* X22483Y31113D01* X22492Y31113D01* X22500Y31115D01* X22508Y31117D01* X22516Y31122D01* X22523Y31127D01* X22529Y31134D01* X22533Y31141D01* X22536Y31149D01* X22538Y31158D01* X22538Y31167D01* X22537Y31175D01* X22534Y31183D01* X22530Y31191D01* X22524Y31198D01* X22517Y31204D01* X22510Y31208D01* X22502Y31211D01* X22476Y31220D01* X22465Y31225D01* Y31775D01* X22471Y31777D01* X22497Y31786D01* X22505Y31790D01* X22512Y31794D01* X22519Y31800D01* X22524Y31807D01* X22528Y31815D01* X22531Y31823D01* X22532Y31832D01* X22532Y31840D01* X22530Y31849D01* X22527Y31857D01* X22522Y31864D01* X22516Y31871D01* X22509Y31876D01* X22502Y31880D01* X22493Y31883D01* X22485Y31884D01* X22476Y31884D01* X22468Y31882D01* X22465Y31881D01* Y33113D01* X22472Y33113D01* X22480Y33115D01* X22488Y33117D01* X22496Y33122D01* X22503Y33127D01* X22509Y33134D01* X22513Y33141D01* X22516Y33149D01* X22518Y33158D01* X22518Y33167D01* X22517Y33175D01* X22514Y33183D01* X22510Y33191D01* X22504Y33198D01* X22497Y33204D01* X22490Y33208D01* X22482Y33211D01* X22465Y33217D01* Y33782D01* X22477Y33786D01* X22485Y33790D01* X22492Y33794D01* X22499Y33800D01* X22504Y33807D01* X22508Y33815D01* X22511Y33823D01* X22512Y33832D01* X22512Y33840D01* X22510Y33849D01* X22507Y33857D01* X22502Y33864D01* X22496Y33871D01* X22489Y33876D01* X22482Y33880D01* X22473Y33883D01* X22465Y33884D01* Y35116D01* X22468Y35117D01* X22476Y35122D01* X22483Y35127D01* X22489Y35134D01* X22493Y35141D01* X22496Y35149D01* X22498Y35158D01* X22498Y35167D01* X22497Y35175D01* X22494Y35183D01* X22490Y35191D01* X22484Y35198D01* X22477Y35204D01* X22470Y35208D01* X22465Y35210D01* Y35790D01* X22472Y35794D01* X22479Y35800D01* X22484Y35807D01* X22488Y35815D01* X22491Y35823D01* X22492Y35832D01* X22492Y35840D01* X22490Y35849D01* X22487Y35857D01* X22482Y35864D01* X22476Y35871D01* X22469Y35876D01* X22465Y35878D01* Y37130D01* X22469Y37134D01* X22473Y37141D01* X22476Y37149D01* X22478Y37158D01* X22478Y37167D01* X22477Y37175D01* X22474Y37183D01* X22470Y37191D01* X22465Y37197D01* Y37809D01* X22468Y37815D01* X22471Y37823D01* X22472Y37832D01* X22472Y37840D01* X22470Y37849D01* X22467Y37857D01* X22465Y37859D01* Y40000D01* G37* G36* Y11549D02*X22468Y11550D01* X22476Y11555D01* X22483Y11560D01* X22489Y11567D01* X22493Y11574D01* X22496Y11582D01* X22505Y11608D01* X22516Y11633D01* X22529Y11657D01* X22544Y11679D01* X22561Y11700D01* X22580Y11719D01* X22601Y11737D01* X22623Y11752D01* X22647Y11766D01* X22671Y11777D01* X22697Y11786D01* X22705Y11790D01* X22712Y11794D01* X22719Y11800D01* X22724Y11807D01* Y11198D01* X22717Y11204D01* X22710Y11208D01* X22702Y11211D01* X22676Y11220D01* X22651Y11231D01* X22628Y11244D01* X22605Y11259D01* X22584Y11276D01* X22565Y11295D01* X22547Y11316D01* X22532Y11338D01* X22518Y11362D01* X22507Y11386D01* X22498Y11412D01* X22494Y11420D01* X22490Y11427D01* X22484Y11434D01* X22477Y11439D01* X22469Y11443D01* X22465Y11445D01* Y11549D01* G37* G36* Y11259D02*X22468Y11255D01* X22492Y11227D01* X22517Y11202D01* X22545Y11179D01* X22575Y11159D01* X22607Y11141D01* X22640Y11127D01* X22674Y11115D01* X22683Y11113D01* X22692Y11113D01* X22700Y11115D01* X22708Y11117D01* X22716Y11122D01* X22723Y11127D01* X22724Y11128D01* Y9879D01* X22722Y9880D01* X22713Y9883D01* X22705Y9884D01* X22696Y9884D01* X22688Y9882D01* X22653Y9870D01* X22621Y9855D01* X22589Y9837D01* X22560Y9816D01* X22532Y9793D01* X22507Y9767D01* X22484Y9739D01* X22465Y9711D01* Y11259D01* G37* G36* Y9546D02*X22472Y9546D01* X22480Y9547D01* X22488Y9550D01* X22496Y9555D01* X22503Y9560D01* X22509Y9567D01* X22513Y9574D01* X22516Y9582D01* X22525Y9608D01* X22536Y9633D01* X22549Y9657D01* X22564Y9679D01* X22581Y9700D01* X22600Y9719D01* X22621Y9737D01* X22643Y9752D01* X22667Y9766D01* X22691Y9777D01* X22717Y9786D01* X22724Y9789D01* Y9210D01* X22722Y9211D01* X22696Y9220D01* X22671Y9231D01* X22648Y9244D01* X22625Y9259D01* X22604Y9276D01* X22585Y9295D01* X22567Y9316D01* X22552Y9338D01* X22538Y9362D01* X22527Y9386D01* X22518Y9412D01* X22514Y9420D01* X22510Y9427D01* X22504Y9434D01* X22497Y9439D01* X22489Y9443D01* X22481Y9446D01* X22472Y9447D01* X22465Y9447D01* Y9546D01* G37* G36* Y9288D02*X22467Y9284D01* X22488Y9255D01* X22512Y9227D01* X22537Y9202D01* X22565Y9179D01* X22595Y9159D01* X22627Y9141D01* X22660Y9127D01* X22694Y9115D01* X22703Y9113D01* X22712Y9113D01* X22720Y9115D01* X22724Y9116D01* Y7884D01* X22716Y7884D01* X22708Y7882D01* X22673Y7870D01* X22641Y7855D01* X22609Y7837D01* X22580Y7816D01* X22552Y7793D01* X22527Y7767D01* X22504Y7739D01* X22484Y7709D01* X22466Y7677D01* X22465Y7675D01* Y9288D01* G37* G36* Y7552D02*X22466Y7551D01* X22474Y7548D01* X22483Y7546D01* X22492Y7546D01* X22500Y7547D01* X22508Y7550D01* X22516Y7555D01* X22523Y7560D01* X22529Y7567D01* X22533Y7574D01* X22536Y7582D01* X22545Y7608D01* X22556Y7633D01* X22569Y7657D01* X22584Y7679D01* X22601Y7700D01* X22620Y7719D01* X22641Y7737D01* X22663Y7752D01* X22687Y7766D01* X22711Y7777D01* X22724Y7782D01* Y7217D01* X22716Y7220D01* X22691Y7231D01* X22668Y7244D01* X22645Y7259D01* X22624Y7276D01* X22605Y7295D01* X22587Y7316D01* X22572Y7338D01* X22558Y7362D01* X22547Y7386D01* X22538Y7412D01* X22534Y7420D01* X22530Y7427D01* X22524Y7434D01* X22517Y7439D01* X22509Y7443D01* X22501Y7446D01* X22492Y7447D01* X22484Y7447D01* X22475Y7445D01* X22467Y7442D01* X22465Y7441D01* Y7552D01* G37* G36* Y7325D02*X22469Y7316D01* X22487Y7284D01* X22508Y7255D01* X22532Y7227D01* X22557Y7202D01* X22585Y7179D01* X22615Y7159D01* X22647Y7141D01* X22680Y7127D01* X22714Y7115D01* X22723Y7113D01* X22724D01* Y5881D01* X22693Y5870D01* X22661Y5855D01* X22629Y5837D01* X22600Y5816D01* X22572Y5793D01* X22547Y5767D01* X22524Y5739D01* X22504Y5709D01* X22486Y5677D01* X22472Y5644D01* X22465Y5625D01* Y7325D01* G37* G36* Y5571D02*X22467Y5568D01* X22472Y5561D01* X22479Y5556D01* X22486Y5551D01* X22494Y5548D01* X22503Y5546D01* X22512Y5546D01* X22520Y5547D01* X22528Y5550D01* X22536Y5555D01* X22543Y5560D01* X22549Y5567D01* X22553Y5574D01* X22556Y5582D01* X22565Y5608D01* X22576Y5633D01* X22589Y5657D01* X22604Y5679D01* X22621Y5700D01* X22640Y5719D01* X22661Y5737D01* X22683Y5752D01* X22707Y5766D01* X22724Y5774D01* Y5225D01* X22711Y5231D01* X22688Y5244D01* X22665Y5259D01* X22644Y5276D01* X22625Y5295D01* X22607Y5316D01* X22592Y5338D01* X22578Y5362D01* X22567Y5386D01* X22558Y5412D01* X22554Y5420D01* X22550Y5427D01* X22544Y5434D01* X22537Y5439D01* X22529Y5443D01* X22521Y5446D01* X22512Y5447D01* X22504Y5447D01* X22495Y5445D01* X22487Y5442D01* X22480Y5437D01* X22473Y5431D01* X22468Y5424D01* X22465Y5419D01* Y5571D01* G37* G36* Y5374D02*X22474Y5349D01* X22489Y5316D01* X22507Y5284D01* X22528Y5255D01* X22552Y5227D01* X22577Y5202D01* X22605Y5179D01* X22635Y5159D01* X22667Y5141D01* X22700Y5127D01* X22724Y5119D01* Y3874D01* X22713Y3870D01* X22681Y3855D01* X22649Y3837D01* X22620Y3816D01* X22592Y3793D01* X22567Y3767D01* X22544Y3739D01* X22524Y3709D01* X22506Y3677D01* X22492Y3644D01* X22480Y3610D01* X22478Y3601D01* X22478Y3593D01* X22479Y3584D01* X22482Y3576D01* X22487Y3568D01* X22492Y3561D01* X22499Y3556D01* X22506Y3551D01* X22514Y3548D01* X22523Y3546D01* X22532Y3546D01* X22540Y3547D01* X22548Y3550D01* X22556Y3555D01* X22563Y3560D01* X22569Y3567D01* X22573Y3574D01* X22576Y3582D01* X22585Y3608D01* X22596Y3633D01* X22609Y3657D01* X22624Y3679D01* X22641Y3700D01* X22660Y3719D01* X22681Y3737D01* X22703Y3752D01* X22724Y3764D01* Y3235D01* X22708Y3244D01* X22685Y3259D01* X22664Y3276D01* X22645Y3295D01* X22627Y3316D01* X22612Y3338D01* X22598Y3362D01* X22587Y3386D01* X22578Y3412D01* X22574Y3420D01* X22570Y3427D01* X22564Y3434D01* X22557Y3439D01* X22549Y3443D01* X22541Y3446D01* X22532Y3447D01* X22524Y3447D01* X22515Y3445D01* X22507Y3442D01* X22500Y3437D01* X22493Y3431D01* X22488Y3424D01* X22484Y3417D01* X22481Y3409D01* X22480Y3400D01* X22480Y3391D01* X22482Y3383D01* X22494Y3349D01* X22509Y3316D01* X22527Y3284D01* X22548Y3255D01* X22572Y3227D01* X22597Y3202D01* X22625Y3179D01* X22655Y3159D01* X22687Y3141D01* X22720Y3127D01* X22724Y3125D01* Y1866D01* X22701Y1855D01* X22669Y1837D01* X22640Y1816D01* X22612Y1793D01* X22587Y1767D01* X22564Y1739D01* X22544Y1709D01* X22526Y1677D01* X22512Y1644D01* X22500Y1610D01* X22498Y1601D01* X22498Y1593D01* X22499Y1584D01* X22502Y1576D01* X22507Y1568D01* X22512Y1561D01* X22519Y1556D01* X22526Y1551D01* X22534Y1548D01* X22543Y1546D01* X22552Y1546D01* X22560Y1547D01* X22568Y1550D01* X22576Y1555D01* X22583Y1560D01* X22589Y1567D01* X22593Y1574D01* X22596Y1582D01* X22605Y1608D01* X22616Y1633D01* X22629Y1657D01* X22644Y1679D01* X22661Y1700D01* X22680Y1719D01* X22701Y1737D01* X22723Y1752D01* X22724Y1753D01* Y1246D01* X22705Y1259D01* X22684Y1276D01* X22665Y1295D01* X22647Y1316D01* X22632Y1338D01* X22618Y1362D01* X22607Y1386D01* X22598Y1412D01* X22594Y1420D01* X22590Y1427D01* X22584Y1434D01* X22577Y1439D01* X22569Y1443D01* X22561Y1446D01* X22552Y1447D01* X22544Y1447D01* X22535Y1445D01* X22527Y1442D01* X22520Y1437D01* X22513Y1431D01* X22508Y1424D01* X22504Y1417D01* X22501Y1409D01* X22500Y1400D01* X22500Y1391D01* X22502Y1383D01* X22514Y1349D01* X22529Y1316D01* X22547Y1284D01* X22568Y1255D01* X22592Y1227D01* X22617Y1202D01* X22645Y1179D01* X22675Y1159D01* X22707Y1141D01* X22724Y1134D01* Y0D01* X22465D01* Y5374D01* G37* G36* X22724Y40000D02*X22904D01* Y37625D01* X22895Y37651D01* X22880Y37683D01* X22862Y37715D01* X22841Y37744D01* X22817Y37772D01* X22792Y37797D01* X22764Y37820D01* X22734Y37840D01* X22724Y37846D01* Y39165D01* X22749Y39183D01* X22777Y39207D01* X22802Y39232D01* X22825Y39260D01* X22845Y39290D01* X22863Y39322D01* X22877Y39355D01* X22889Y39389D01* X22891Y39398D01* X22891Y39407D01* X22890Y39415D01* X22887Y39423D01* X22882Y39431D01* X22877Y39438D01* X22870Y39444D01* X22863Y39448D01* X22855Y39451D01* X22846Y39453D01* X22837Y39453D01* X22829Y39452D01* X22821Y39449D01* X22813Y39445D01* X22806Y39439D01* X22800Y39433D01* X22796Y39425D01* X22793Y39417D01* X22784Y39391D01* X22773Y39366D01* X22760Y39343D01* X22745Y39320D01* X22728Y39299D01* X22724Y39295D01* Y39704D01* X22724Y39704D01* X22742Y39683D01* X22757Y39661D01* X22771Y39637D01* X22782Y39613D01* X22791Y39587D01* X22795Y39579D01* X22799Y39572D01* X22805Y39565D01* X22812Y39560D01* X22820Y39556D01* X22828Y39553D01* X22837Y39552D01* X22845Y39552D01* X22854Y39554D01* X22862Y39557D01* X22869Y39562D01* X22876Y39568D01* X22881Y39575D01* X22885Y39582D01* X22888Y39591D01* X22889Y39599D01* X22889Y39608D01* X22887Y39617D01* X22875Y39651D01* X22860Y39683D01* X22842Y39715D01* X22821Y39744D01* X22797Y39772D01* X22772Y39797D01* X22744Y39820D01* X22724Y39834D01* Y40000D01* G37* G36* X22904Y0D02*X22724D01* Y1134D01* X22740Y1127D01* X22774Y1115D01* X22783Y1113D01* X22792Y1113D01* X22800Y1115D01* X22808Y1117D01* X22816Y1122D01* X22823Y1127D01* X22829Y1134D01* X22833Y1141D01* X22836Y1149D01* X22838Y1158D01* X22838Y1167D01* X22837Y1175D01* X22834Y1183D01* X22830Y1191D01* X22824Y1198D01* X22817Y1204D01* X22810Y1208D01* X22802Y1211D01* X22776Y1220D01* X22751Y1231D01* X22728Y1244D01* X22724Y1246D01* Y1753D01* X22747Y1766D01* X22771Y1777D01* X22797Y1786D01* X22805Y1790D01* X22812Y1794D01* X22819Y1800D01* X22824Y1807D01* X22828Y1815D01* X22831Y1823D01* X22832Y1832D01* X22832Y1840D01* X22830Y1849D01* X22827Y1857D01* X22822Y1864D01* X22816Y1871D01* X22809Y1876D01* X22802Y1880D01* X22793Y1883D01* X22785Y1884D01* X22776Y1884D01* X22768Y1882D01* X22733Y1870D01* X22724Y1866D01* Y3125D01* X22754Y3115D01* X22763Y3113D01* X22772Y3113D01* X22780Y3115D01* X22788Y3117D01* X22796Y3122D01* X22803Y3127D01* X22809Y3134D01* X22813Y3141D01* X22816Y3149D01* X22818Y3158D01* X22818Y3167D01* X22817Y3175D01* X22814Y3183D01* X22810Y3191D01* X22804Y3198D01* X22797Y3204D01* X22790Y3208D01* X22782Y3211D01* X22756Y3220D01* X22731Y3231D01* X22724Y3235D01* Y3764D01* X22727Y3766D01* X22751Y3777D01* X22777Y3786D01* X22785Y3790D01* X22792Y3794D01* X22799Y3800D01* X22804Y3807D01* X22808Y3815D01* X22811Y3823D01* X22812Y3832D01* X22812Y3840D01* X22810Y3849D01* X22807Y3857D01* X22802Y3864D01* X22796Y3871D01* X22789Y3876D01* X22782Y3880D01* X22773Y3883D01* X22765Y3884D01* X22756Y3884D01* X22748Y3882D01* X22724Y3874D01* Y5119D01* X22734Y5115D01* X22743Y5113D01* X22752Y5113D01* X22760Y5115D01* X22768Y5117D01* X22776Y5122D01* X22783Y5127D01* X22789Y5134D01* X22793Y5141D01* X22796Y5149D01* X22798Y5158D01* X22798Y5167D01* X22797Y5175D01* X22794Y5183D01* X22790Y5191D01* X22784Y5198D01* X22777Y5204D01* X22770Y5208D01* X22762Y5211D01* X22736Y5220D01* X22724Y5225D01* Y5774D01* X22731Y5777D01* X22757Y5786D01* X22765Y5790D01* X22772Y5794D01* X22779Y5800D01* X22784Y5807D01* X22788Y5815D01* X22791Y5823D01* X22792Y5832D01* X22792Y5840D01* X22790Y5849D01* X22787Y5857D01* X22782Y5864D01* X22776Y5871D01* X22769Y5876D01* X22762Y5880D01* X22753Y5883D01* X22745Y5884D01* X22736Y5884D01* X22728Y5882D01* X22724Y5881D01* Y7113D01* X22732Y7113D01* X22740Y7115D01* X22748Y7117D01* X22756Y7122D01* X22763Y7127D01* X22769Y7134D01* X22773Y7141D01* X22776Y7149D01* X22778Y7158D01* X22778Y7167D01* X22777Y7175D01* X22774Y7183D01* X22770Y7191D01* X22764Y7198D01* X22757Y7204D01* X22750Y7208D01* X22742Y7211D01* X22724Y7217D01* Y7782D01* X22737Y7786D01* X22745Y7790D01* X22752Y7794D01* X22759Y7800D01* X22764Y7807D01* X22768Y7815D01* X22771Y7823D01* X22772Y7832D01* X22772Y7840D01* X22770Y7849D01* X22767Y7857D01* X22762Y7864D01* X22756Y7871D01* X22749Y7876D01* X22742Y7880D01* X22733Y7883D01* X22725Y7884D01* X22724D01* Y9116D01* X22728Y9117D01* X22736Y9122D01* X22743Y9127D01* X22749Y9134D01* X22753Y9141D01* X22756Y9149D01* X22758Y9158D01* X22758Y9167D01* X22757Y9175D01* X22754Y9183D01* X22750Y9191D01* X22744Y9198D01* X22737Y9204D01* X22730Y9208D01* X22724Y9210D01* Y9789D01* X22725Y9790D01* X22732Y9794D01* X22739Y9800D01* X22744Y9807D01* X22748Y9815D01* X22751Y9823D01* X22752Y9832D01* X22752Y9840D01* X22750Y9849D01* X22747Y9857D01* X22742Y9864D01* X22736Y9871D01* X22729Y9876D01* X22724Y9879D01* Y11128D01* X22729Y11134D01* X22733Y11141D01* X22736Y11149D01* X22738Y11158D01* X22738Y11167D01* X22737Y11175D01* X22734Y11183D01* X22730Y11191D01* X22724Y11198D01* X22724Y11198D01* Y11807D01* X22724Y11807D01* X22728Y11815D01* X22731Y11823D01* X22732Y11832D01* X22732Y11840D01* X22730Y11849D01* X22727Y11857D01* X22724Y11861D01* Y23140D01* X22727Y23135D01* X22733Y23128D01* X22740Y23123D01* X22747Y23119D01* X22756Y23116D01* X22764Y23115D01* X22773Y23115D01* X22781Y23117D01* X22816Y23129D01* X22848Y23144D01* X22880Y23162D01* X22904Y23180D01* Y21834D01* X22894Y21840D01* X22862Y21858D01* X22829Y21873D01* X22795Y21884D01* X22786Y21886D01* X22777Y21886D01* X22769Y21885D01* X22761Y21882D01* X22753Y21878D01* X22746Y21872D01* X22740Y21865D01* X22736Y21858D01* X22733Y21850D01* X22731Y21841D01* X22731Y21833D01* X22732Y21824D01* X22735Y21816D01* X22739Y21808D01* X22745Y21801D01* X22752Y21796D01* X22759Y21791D01* X22767Y21788D01* X22793Y21779D01* X22818Y21768D01* X22841Y21755D01* X22864Y21740D01* X22885Y21723D01* X22904Y21704D01* Y21295D01* X22889Y21280D01* X22868Y21262D01* X22846Y21247D01* X22822Y21233D01* X22798Y21222D01* X22772Y21213D01* X22764Y21209D01* X22757Y21205D01* X22750Y21199D01* X22745Y21192D01* X22741Y21184D01* X22738Y21176D01* X22737Y21167D01* X22737Y21159D01* X22739Y21150D01* X22742Y21142D01* X22747Y21135D01* X22753Y21128D01* X22760Y21123D01* X22767Y21119D01* X22776Y21116D01* X22784Y21115D01* X22793Y21115D01* X22801Y21117D01* X22836Y21129D01* X22868Y21144D01* X22900Y21162D01* X22904Y21165D01* Y19846D01* X22882Y19858D01* X22849Y19873D01* X22815Y19884D01* X22806Y19886D01* X22797Y19886D01* X22789Y19885D01* X22781Y19882D01* X22773Y19878D01* X22766Y19872D01* X22760Y19865D01* X22756Y19858D01* X22753Y19850D01* X22751Y19841D01* X22751Y19833D01* X22752Y19824D01* X22755Y19816D01* X22759Y19808D01* X22765Y19801D01* X22772Y19796D01* X22779Y19791D01* X22787Y19788D01* X22813Y19779D01* X22838Y19768D01* X22861Y19755D01* X22884Y19740D01* X22904Y19724D01* Y19276D01* X22888Y19262D01* X22866Y19247D01* X22842Y19233D01* X22818Y19222D01* X22792Y19213D01* X22784Y19209D01* X22777Y19205D01* X22770Y19199D01* X22765Y19192D01* X22761Y19184D01* X22758Y19176D01* X22757Y19167D01* X22757Y19159D01* X22759Y19150D01* X22762Y19142D01* X22767Y19135D01* X22773Y19128D01* X22780Y19123D01* X22787Y19119D01* X22796Y19116D01* X22804Y19115D01* X22813Y19115D01* X22821Y19117D01* X22856Y19129D01* X22888Y19144D01* X22904Y19153D01* Y17857D01* X22902Y17858D01* X22869Y17873D01* X22835Y17884D01* X22826Y17886D01* X22817Y17886D01* X22809Y17885D01* X22801Y17882D01* X22793Y17878D01* X22786Y17872D01* X22780Y17865D01* X22776Y17858D01* X22773Y17850D01* X22771Y17841D01* X22771Y17833D01* X22772Y17824D01* X22775Y17816D01* X22779Y17808D01* X22785Y17801D01* X22792Y17796D01* X22799Y17791D01* X22807Y17788D01* X22833Y17779D01* X22858Y17768D01* X22881Y17755D01* X22904Y17740D01* Y17259D01* X22886Y17247D01* X22862Y17233D01* X22838Y17222D01* X22812Y17213D01* X22804Y17209D01* X22797Y17205D01* X22790Y17199D01* X22785Y17192D01* X22781Y17184D01* X22778Y17176D01* X22777Y17167D01* X22777Y17159D01* X22779Y17150D01* X22782Y17142D01* X22787Y17135D01* X22793Y17128D01* X22800Y17123D01* X22807Y17119D01* X22816Y17116D01* X22824Y17115D01* X22833Y17115D01* X22841Y17117D01* X22876Y17129D01* X22904Y17142D01* Y15866D01* X22889Y15873D01* X22855Y15884D01* X22846Y15886D01* X22837Y15886D01* X22829Y15885D01* X22821Y15882D01* X22813Y15878D01* X22806Y15872D01* X22800Y15865D01* X22796Y15858D01* X22793Y15850D01* X22791Y15841D01* X22791Y15833D01* X22792Y15824D01* X22795Y15816D01* X22799Y15808D01* X22805Y15801D01* X22812Y15796D01* X22819Y15791D01* X22827Y15788D01* X22853Y15779D01* X22878Y15768D01* X22901Y15755D01* X22904Y15754D01* Y15246D01* X22882Y15233D01* X22858Y15222D01* X22832Y15213D01* X22824Y15209D01* X22817Y15205D01* X22810Y15199D01* X22805Y15192D01* X22801Y15184D01* X22798Y15176D01* X22797Y15167D01* X22797Y15159D01* X22799Y15150D01* X22802Y15142D01* X22807Y15135D01* X22813Y15128D01* X22820Y15123D01* X22827Y15119D01* X22836Y15116D01* X22844Y15115D01* X22853Y15115D01* X22861Y15117D01* X22896Y15129D01* X22904Y15133D01* Y13874D01* X22875Y13884D01* X22866Y13886D01* X22857Y13886D01* X22849Y13885D01* X22841Y13882D01* X22833Y13878D01* X22826Y13872D01* X22820Y13865D01* X22816Y13858D01* X22813Y13850D01* X22811Y13841D01* X22811Y13833D01* X22812Y13824D01* X22815Y13816D01* X22819Y13808D01* X22825Y13801D01* X22832Y13796D01* X22839Y13791D01* X22847Y13788D01* X22873Y13779D01* X22898Y13768D01* X22904Y13765D01* Y13234D01* X22902Y13233D01* X22878Y13222D01* X22852Y13213D01* X22844Y13209D01* X22837Y13205D01* X22830Y13199D01* X22825Y13192D01* X22821Y13184D01* X22818Y13176D01* X22817Y13167D01* X22817Y13159D01* X22819Y13150D01* X22822Y13142D01* X22827Y13135D01* X22833Y13128D01* X22840Y13123D01* X22847Y13119D01* X22856Y13116D01* X22864Y13115D01* X22873Y13115D01* X22881Y13117D01* X22904Y13125D01* Y11881D01* X22895Y11884D01* X22886Y11886D01* X22877Y11886D01* X22869Y11885D01* X22861Y11882D01* X22853Y11878D01* X22846Y11872D01* X22840Y11865D01* X22836Y11858D01* X22833Y11850D01* X22831Y11841D01* X22831Y11833D01* X22832Y11824D01* X22835Y11816D01* X22839Y11808D01* X22845Y11801D01* X22852Y11796D01* X22859Y11791D01* X22867Y11788D01* X22893Y11779D01* X22904Y11774D01* Y11225D01* X22898Y11222D01* X22872Y11213D01* X22864Y11209D01* X22857Y11205D01* X22850Y11199D01* X22845Y11192D01* X22841Y11184D01* X22838Y11176D01* X22837Y11167D01* X22837Y11159D01* X22839Y11150D01* X22842Y11142D01* X22847Y11135D01* X22853Y11128D01* X22860Y11123D01* X22867Y11119D01* X22876Y11116D01* X22884Y11115D01* X22893Y11115D01* X22901Y11117D01* X22904Y11118D01* Y9886D01* X22897Y9886D01* X22889Y9885D01* X22881Y9882D01* X22873Y9878D01* X22866Y9872D01* X22860Y9865D01* X22856Y9858D01* X22853Y9850D01* X22851Y9841D01* X22851Y9833D01* X22852Y9824D01* X22855Y9816D01* X22859Y9808D01* X22865Y9801D01* X22872Y9796D01* X22879Y9791D01* X22887Y9788D01* X22904Y9782D01* Y9217D01* X22892Y9213D01* X22884Y9209D01* X22877Y9205D01* X22870Y9199D01* X22865Y9192D01* X22861Y9184D01* X22858Y9176D01* X22857Y9167D01* X22857Y9159D01* X22859Y9150D01* X22862Y9142D01* X22867Y9135D01* X22873Y9128D01* X22880Y9123D01* X22887Y9119D01* X22896Y9116D01* X22904Y9115D01* Y7883D01* X22901Y7882D01* X22893Y7878D01* X22886Y7872D01* X22880Y7865D01* X22876Y7858D01* X22873Y7850D01* X22871Y7841D01* X22871Y7833D01* X22872Y7824D01* X22875Y7816D01* X22879Y7808D01* X22885Y7801D01* X22892Y7796D01* X22899Y7791D01* X22904Y7789D01* Y7209D01* X22897Y7205D01* X22890Y7199D01* X22885Y7192D01* X22881Y7184D01* X22878Y7176D01* X22877Y7167D01* X22877Y7159D01* X22879Y7150D01* X22882Y7142D01* X22887Y7135D01* X22893Y7128D01* X22900Y7123D01* X22904Y7121D01* Y5870D01* X22900Y5865D01* X22896Y5858D01* X22893Y5850D01* X22891Y5841D01* X22891Y5833D01* X22892Y5824D01* X22895Y5816D01* X22899Y5808D01* X22904Y5802D01* Y5190D01* X22901Y5184D01* X22898Y5176D01* X22897Y5167D01* X22897Y5159D01* X22899Y5150D01* X22902Y5142D01* X22904Y5140D01* Y0D01* G37* G36* Y23319D02*X22888Y23299D01* X22869Y23280D01* X22848Y23262D01* X22826Y23247D01* X22802Y23233D01* X22778Y23222D01* X22752Y23213D01* X22744Y23209D01* X22737Y23205D01* X22730Y23199D01* X22725Y23192D01* X22724Y23190D01* Y23802D01* X22725Y23801D01* X22732Y23796D01* X22739Y23791D01* X22747Y23788D01* X22773Y23779D01* X22798Y23768D01* X22821Y23755D01* X22844Y23740D01* X22865Y23723D01* X22884Y23704D01* X22902Y23683D01* X22904Y23680D01* Y23319D01* G37* G36* Y23820D02*X22904Y23820D01* X22874Y23840D01* X22842Y23858D01* X22809Y23873D01* X22775Y23884D01* X22766Y23886D01* X22757Y23886D01* X22749Y23885D01* X22741Y23882D01* X22733Y23878D01* X22726Y23872D01* X22724Y23870D01* Y25121D01* X22727Y25119D01* X22736Y25116D01* X22744Y25115D01* X22753Y25115D01* X22761Y25117D01* X22796Y25129D01* X22828Y25144D01* X22860Y25162D01* X22889Y25183D01* X22904Y25196D01* Y23820D01* G37* G36* Y25350D02*X22900Y25343D01* X22885Y25320D01* X22868Y25299D01* X22849Y25280D01* X22828Y25262D01* X22806Y25247D01* X22782Y25233D01* X22758Y25222D01* X22732Y25213D01* X22724Y25209D01* X22724Y25209D01* Y25789D01* X22727Y25788D01* X22753Y25779D01* X22778Y25768D01* X22801Y25755D01* X22824Y25740D01* X22845Y25723D01* X22864Y25704D01* X22882Y25683D01* X22897Y25661D01* X22904Y25650D01* Y25350D01* G37* G36* Y25804D02*X22884Y25820D01* X22854Y25840D01* X22822Y25858D01* X22789Y25873D01* X22755Y25884D01* X22746Y25886D01* X22737Y25886D01* X22729Y25885D01* X22724Y25883D01* Y27115D01* X22724D01* X22733Y27115D01* X22741Y27117D01* X22776Y27129D01* X22808Y27144D01* X22840Y27162D01* X22869Y27183D01* X22897Y27207D01* X22904Y27214D01* Y25804D01* G37* G36* Y27391D02*X22893Y27366D01* X22880Y27343D01* X22865Y27320D01* X22848Y27299D01* X22829Y27280D01* X22808Y27262D01* X22786Y27247D01* X22762Y27233D01* X22738Y27222D01* X22724Y27217D01* Y27782D01* X22733Y27779D01* X22758Y27768D01* X22781Y27755D01* X22804Y27740D01* X22825Y27723D01* X22844Y27704D01* X22862Y27683D01* X22877Y27661D01* X22891Y27637D01* X22902Y27613D01* X22904Y27608D01* Y27391D01* G37* G36* Y27785D02*X22892Y27797D01* X22864Y27820D01* X22834Y27840D01* X22802Y27858D01* X22769Y27873D01* X22735Y27884D01* X22726Y27886D01* X22724D01* Y29118D01* X22756Y29129D01* X22788Y29144D01* X22820Y29162D01* X22849Y29183D01* X22877Y29207D01* X22902Y29232D01* X22904Y29235D01* Y27785D01* G37* G36* Y29437D02*X22900Y29433D01* X22896Y29425D01* X22893Y29417D01* X22884Y29391D01* X22873Y29366D01* X22860Y29343D01* X22845Y29320D01* X22828Y29299D01* X22809Y29280D01* X22788Y29262D01* X22766Y29247D01* X22742Y29233D01* X22724Y29225D01* Y29774D01* X22738Y29768D01* X22761Y29755D01* X22784Y29740D01* X22805Y29723D01* X22824Y29704D01* X22842Y29683D01* X22857Y29661D01* X22871Y29637D01* X22882Y29613D01* X22891Y29587D01* X22895Y29579D01* X22899Y29572D01* X22904Y29567D01* Y29437D01* G37* G36* Y29764D02*X22897Y29772D01* X22872Y29797D01* X22844Y29820D01* X22814Y29840D01* X22782Y29858D01* X22749Y29873D01* X22724Y29881D01* Y31125D01* X22736Y31129D01* X22768Y31144D01* X22800Y31162D01* X22829Y31183D01* X22857Y31207D01* X22882Y31232D01* X22904Y31259D01* Y29764D01* G37* G36* Y31450D02*X22901Y31449D01* X22893Y31445D01* X22886Y31439D01* X22880Y31433D01* X22876Y31425D01* X22873Y31417D01* X22864Y31391D01* X22853Y31366D01* X22840Y31343D01* X22825Y31320D01* X22808Y31299D01* X22789Y31280D01* X22768Y31262D01* X22746Y31247D01* X22724Y31234D01* Y31765D01* X22741Y31755D01* X22764Y31740D01* X22785Y31723D01* X22804Y31704D01* X22822Y31683D01* X22837Y31661D01* X22851Y31637D01* X22862Y31613D01* X22871Y31587D01* X22875Y31579D01* X22879Y31572D01* X22885Y31565D01* X22892Y31560D01* X22900Y31556D01* X22904Y31555D01* Y31450D01* G37* G36* Y31740D02*X22901Y31744D01* X22877Y31772D01* X22852Y31797D01* X22824Y31820D01* X22794Y31840D01* X22762Y31858D01* X22729Y31873D01* X22724Y31874D01* Y33133D01* X22748Y33144D01* X22780Y33162D01* X22809Y33183D01* X22837Y33207D01* X22862Y33232D01* X22885Y33260D01* X22904Y33288D01* Y31740D01* G37* G36* Y33453D02*X22897Y33453D01* X22889Y33452D01* X22881Y33449D01* X22873Y33445D01* X22866Y33439D01* X22860Y33433D01* X22856Y33425D01* X22853Y33417D01* X22844Y33391D01* X22833Y33366D01* X22820Y33343D01* X22805Y33320D01* X22788Y33299D01* X22769Y33280D01* X22748Y33262D01* X22726Y33247D01* X22724Y33246D01* Y33754D01* X22744Y33740D01* X22765Y33723D01* X22784Y33704D01* X22802Y33683D01* X22817Y33661D01* X22831Y33637D01* X22842Y33613D01* X22851Y33587D01* X22855Y33579D01* X22859Y33572D01* X22865Y33565D01* X22872Y33560D01* X22880Y33556D01* X22888Y33553D01* X22897Y33552D01* X22904Y33552D01* Y33453D01* G37* G36* Y33711D02*X22902Y33715D01* X22881Y33744D01* X22857Y33772D01* X22832Y33797D01* X22804Y33820D01* X22774Y33840D01* X22742Y33858D01* X22724Y33866D01* Y35142D01* X22728Y35144D01* X22760Y35162D01* X22789Y35183D01* X22817Y35207D01* X22842Y35232D01* X22865Y35260D01* X22885Y35290D01* X22903Y35322D01* X22904Y35324D01* Y33711D01* G37* G36* Y35447D02*X22903Y35448D01* X22895Y35451D01* X22886Y35453D01* X22877Y35453D01* X22869Y35452D01* X22861Y35449D01* X22853Y35445D01* X22846Y35439D01* X22840Y35433D01* X22836Y35425D01* X22833Y35417D01* X22824Y35391D01* X22813Y35366D01* X22800Y35343D01* X22785Y35320D01* X22768Y35299D01* X22749Y35280D01* X22728Y35262D01* X22724Y35259D01* Y35740D01* X22745Y35723D01* X22764Y35704D01* X22782Y35683D01* X22797Y35661D01* X22811Y35637D01* X22822Y35613D01* X22831Y35587D01* X22835Y35579D01* X22839Y35572D01* X22845Y35565D01* X22852Y35560D01* X22860Y35556D01* X22868Y35553D01* X22877Y35552D01* X22885Y35552D01* X22894Y35554D01* X22902Y35557D01* X22904Y35559D01* Y35447D01* G37* G36* Y35674D02*X22900Y35683D01* X22882Y35715D01* X22861Y35744D01* X22837Y35772D01* X22812Y35797D01* X22784Y35820D01* X22754Y35840D01* X22724Y35857D01* Y37153D01* X22740Y37162D01* X22769Y37183D01* X22797Y37207D01* X22822Y37232D01* X22845Y37260D01* X22865Y37290D01* X22883Y37322D01* X22897Y37355D01* X22904Y37374D01* Y35674D01* G37* G36* Y37428D02*X22902Y37431D01* X22897Y37438D01* X22890Y37444D01* X22883Y37448D01* X22875Y37451D01* X22866Y37453D01* X22857Y37453D01* X22849Y37452D01* X22841Y37449D01* X22833Y37445D01* X22826Y37439D01* X22820Y37433D01* X22816Y37425D01* X22813Y37417D01* X22804Y37391D01* X22793Y37366D01* X22780Y37343D01* X22765Y37320D01* X22748Y37299D01* X22729Y37280D01* X22724Y37276D01* Y37724D01* X22725Y37723D01* X22744Y37704D01* X22762Y37683D01* X22777Y37661D01* X22791Y37637D01* X22802Y37613D01* X22811Y37587D01* X22815Y37579D01* X22819Y37572D01* X22825Y37565D01* X22832Y37560D01* X22840Y37556D01* X22848Y37553D01* X22857Y37552D01* X22865Y37552D01* X22874Y37554D01* X22882Y37557D01* X22889Y37562D01* X22896Y37568D01* X22901Y37575D01* X22904Y37580D01* Y37428D01* G37* G36* Y40000D02*X23084D01* Y19625D01* X23075Y19651D01* X23060Y19683D01* X23042Y19715D01* X23021Y19744D01* X22997Y19772D01* X22972Y19797D01* X22944Y19820D01* X22914Y19840D01* X22904Y19846D01* Y21165D01* X22929Y21183D01* X22957Y21207D01* X22982Y21232D01* X23005Y21260D01* X23025Y21290D01* X23043Y21322D01* X23057Y21355D01* X23069Y21389D01* X23071Y21398D01* X23071Y21407D01* X23070Y21415D01* X23067Y21423D01* X23062Y21431D01* X23057Y21438D01* X23050Y21444D01* X23043Y21448D01* X23035Y21451D01* X23026Y21453D01* X23017Y21453D01* X23009Y21452D01* X23001Y21449D01* X22993Y21445D01* X22986Y21439D01* X22980Y21433D01* X22976Y21425D01* X22973Y21417D01* X22964Y21391D01* X22953Y21366D01* X22940Y21343D01* X22925Y21320D01* X22908Y21299D01* X22904Y21295D01* Y21704D01* X22904Y21704D01* X22922Y21683D01* X22937Y21661D01* X22951Y21637D01* X22962Y21613D01* X22971Y21587D01* X22975Y21579D01* X22979Y21572D01* X22985Y21565D01* X22992Y21560D01* X23000Y21556D01* X23008Y21553D01* X23017Y21552D01* X23025Y21552D01* X23034Y21554D01* X23042Y21557D01* X23049Y21562D01* X23056Y21568D01* X23061Y21575D01* X23065Y21582D01* X23068Y21591D01* X23069Y21599D01* X23069Y21608D01* X23067Y21617D01* X23055Y21651D01* X23040Y21683D01* X23022Y21715D01* X23001Y21744D01* X22977Y21772D01* X22952Y21797D01* X22924Y21820D01* X22904Y21834D01* Y23180D01* X22909Y23183D01* X22937Y23207D01* X22962Y23232D01* X22985Y23260D01* X23005Y23290D01* X23023Y23322D01* X23037Y23355D01* X23049Y23389D01* X23051Y23398D01* X23051Y23407D01* X23050Y23415D01* X23047Y23423D01* X23042Y23431D01* X23037Y23438D01* X23030Y23444D01* X23023Y23448D01* X23015Y23451D01* X23006Y23453D01* X22997Y23453D01* X22989Y23452D01* X22981Y23449D01* X22973Y23445D01* X22966Y23439D01* X22960Y23433D01* X22956Y23425D01* X22953Y23417D01* X22944Y23391D01* X22933Y23366D01* X22920Y23343D01* X22905Y23320D01* X22904Y23319D01* Y23680D01* X22917Y23661D01* X22931Y23637D01* X22942Y23613D01* X22951Y23587D01* X22955Y23579D01* X22959Y23572D01* X22965Y23565D01* X22972Y23560D01* X22980Y23556D01* X22988Y23553D01* X22997Y23552D01* X23005Y23552D01* X23014Y23554D01* X23022Y23557D01* X23029Y23562D01* X23036Y23568D01* X23041Y23575D01* X23045Y23582D01* X23048Y23591D01* X23049Y23599D01* X23049Y23608D01* X23047Y23617D01* X23035Y23651D01* X23020Y23683D01* X23002Y23715D01* X22981Y23744D01* X22957Y23772D01* X22932Y23797D01* X22904Y23820D01* Y25196D01* X22917Y25207D01* X22942Y25232D01* X22965Y25260D01* X22985Y25290D01* X23003Y25322D01* X23017Y25355D01* X23029Y25389D01* X23031Y25398D01* X23031Y25407D01* X23030Y25415D01* X23027Y25423D01* X23022Y25431D01* X23017Y25438D01* X23010Y25444D01* X23003Y25448D01* X22995Y25451D01* X22986Y25453D01* X22977Y25453D01* X22969Y25452D01* X22961Y25449D01* X22953Y25445D01* X22946Y25439D01* X22940Y25433D01* X22936Y25425D01* X22933Y25417D01* X22924Y25391D01* X22913Y25366D01* X22904Y25350D01* Y25650D01* X22911Y25637D01* X22922Y25613D01* X22931Y25587D01* X22935Y25579D01* X22939Y25572D01* X22945Y25565D01* X22952Y25560D01* X22960Y25556D01* X22968Y25553D01* X22977Y25552D01* X22985Y25552D01* X22994Y25554D01* X23002Y25557D01* X23009Y25562D01* X23016Y25568D01* X23021Y25575D01* X23025Y25582D01* X23028Y25591D01* X23029Y25599D01* X23029Y25608D01* X23027Y25617D01* X23015Y25651D01* X23000Y25683D01* X22982Y25715D01* X22961Y25744D01* X22937Y25772D01* X22912Y25797D01* X22904Y25804D01* Y27214D01* X22922Y27232D01* X22945Y27260D01* X22965Y27290D01* X22983Y27322D01* X22997Y27355D01* X23009Y27389D01* X23011Y27398D01* X23011Y27407D01* X23010Y27415D01* X23007Y27423D01* X23002Y27431D01* X22997Y27438D01* X22990Y27444D01* X22983Y27448D01* X22975Y27451D01* X22966Y27453D01* X22957Y27453D01* X22949Y27452D01* X22941Y27449D01* X22933Y27445D01* X22926Y27439D01* X22920Y27433D01* X22916Y27425D01* X22913Y27417D01* X22904Y27391D01* X22904Y27391D01* Y27608D01* X22911Y27587D01* X22915Y27579D01* X22919Y27572D01* X22925Y27565D01* X22932Y27560D01* X22940Y27556D01* X22948Y27553D01* X22957Y27552D01* X22965Y27552D01* X22974Y27554D01* X22982Y27557D01* X22989Y27562D01* X22996Y27568D01* X23001Y27575D01* X23005Y27582D01* X23008Y27591D01* X23009Y27599D01* X23009Y27608D01* X23007Y27617D01* X22995Y27651D01* X22980Y27683D01* X22962Y27715D01* X22941Y27744D01* X22917Y27772D01* X22904Y27785D01* Y29235D01* X22925Y29260D01* X22945Y29290D01* X22963Y29322D01* X22977Y29355D01* X22989Y29389D01* X22991Y29398D01* X22991Y29407D01* X22990Y29415D01* X22987Y29423D01* X22982Y29431D01* X22977Y29438D01* X22970Y29444D01* X22963Y29448D01* X22955Y29451D01* X22946Y29453D01* X22937Y29453D01* X22929Y29452D01* X22921Y29449D01* X22913Y29445D01* X22906Y29439D01* X22904Y29437D01* Y29567D01* X22905Y29565D01* X22912Y29560D01* X22920Y29556D01* X22928Y29553D01* X22937Y29552D01* X22945Y29552D01* X22954Y29554D01* X22962Y29557D01* X22969Y29562D01* X22976Y29568D01* X22981Y29575D01* X22985Y29582D01* X22988Y29591D01* X22989Y29599D01* X22989Y29608D01* X22987Y29617D01* X22975Y29651D01* X22960Y29683D01* X22942Y29715D01* X22921Y29744D01* X22904Y29764D01* Y31259D01* X22905Y31260D01* X22925Y31290D01* X22943Y31322D01* X22957Y31355D01* X22969Y31389D01* X22971Y31398D01* X22971Y31407D01* X22970Y31415D01* X22967Y31423D01* X22962Y31431D01* X22957Y31438D01* X22950Y31444D01* X22943Y31448D01* X22935Y31451D01* X22926Y31453D01* X22917Y31453D01* X22909Y31452D01* X22904Y31450D01* Y31555D01* X22908Y31553D01* X22917Y31552D01* X22925Y31552D01* X22934Y31554D01* X22942Y31557D01* X22949Y31562D01* X22956Y31568D01* X22961Y31575D01* X22965Y31582D01* X22968Y31591D01* X22969Y31599D01* X22969Y31608D01* X22967Y31617D01* X22955Y31651D01* X22940Y31683D01* X22922Y31715D01* X22904Y31740D01* Y33288D01* X22905Y33290D01* X22923Y33322D01* X22937Y33355D01* X22949Y33389D01* X22951Y33398D01* X22951Y33407D01* X22950Y33415D01* X22947Y33423D01* X22942Y33431D01* X22937Y33438D01* X22930Y33444D01* X22923Y33448D01* X22915Y33451D01* X22906Y33453D01* X22904D01* Y33552D01* X22905D01* X22914Y33554D01* X22922Y33557D01* X22929Y33562D01* X22936Y33568D01* X22941Y33575D01* X22945Y33582D01* X22948Y33591D01* X22949Y33599D01* X22949Y33608D01* X22947Y33617D01* X22935Y33651D01* X22920Y33683D01* X22904Y33711D01* Y35324D01* X22917Y35355D01* X22929Y35389D01* X22931Y35398D01* X22931Y35407D01* X22930Y35415D01* X22927Y35423D01* X22922Y35431D01* X22917Y35438D01* X22910Y35444D01* X22904Y35447D01* Y35559D01* X22909Y35562D01* X22916Y35568D01* X22921Y35575D01* X22925Y35582D01* X22928Y35591D01* X22929Y35599D01* X22929Y35608D01* X22927Y35617D01* X22915Y35651D01* X22904Y35674D01* Y37374D01* X22909Y37389D01* X22911Y37398D01* X22911Y37407D01* X22910Y37415D01* X22907Y37423D01* X22904Y37428D01* Y37580D01* X22905Y37582D01* X22908Y37591D01* X22909Y37599D01* X22909Y37608D01* X22907Y37617D01* X22904Y37625D01* Y40000D01* G37* G36* X23084Y0D02*X22904D01* Y5140D01* X22907Y5135D01* X22913Y5128D01* X22920Y5123D01* X22927Y5119D01* X22936Y5116D01* X22944Y5115D01* X22953Y5115D01* X22961Y5117D01* X22996Y5129D01* X23028Y5144D01* X23060Y5162D01* X23084Y5180D01* Y3834D01* X23074Y3840D01* X23042Y3858D01* X23009Y3873D01* X22975Y3884D01* X22966Y3886D01* X22957Y3886D01* X22949Y3885D01* X22941Y3882D01* X22933Y3878D01* X22926Y3872D01* X22920Y3865D01* X22916Y3858D01* X22913Y3850D01* X22911Y3841D01* X22911Y3833D01* X22912Y3824D01* X22915Y3816D01* X22919Y3808D01* X22925Y3801D01* X22932Y3796D01* X22939Y3791D01* X22947Y3788D01* X22973Y3779D01* X22998Y3768D01* X23021Y3755D01* X23044Y3740D01* X23065Y3723D01* X23084Y3704D01* Y3295D01* X23069Y3280D01* X23048Y3262D01* X23026Y3247D01* X23002Y3233D01* X22978Y3222D01* X22952Y3213D01* X22944Y3209D01* X22937Y3205D01* X22930Y3199D01* X22925Y3192D01* X22921Y3184D01* X22918Y3176D01* X22917Y3167D01* X22917Y3159D01* X22919Y3150D01* X22922Y3142D01* X22927Y3135D01* X22933Y3128D01* X22940Y3123D01* X22947Y3119D01* X22956Y3116D01* X22964Y3115D01* X22973Y3115D01* X22981Y3117D01* X23016Y3129D01* X23048Y3144D01* X23080Y3162D01* X23084Y3165D01* Y1846D01* X23062Y1858D01* X23029Y1873D01* X22995Y1884D01* X22986Y1886D01* X22977Y1886D01* X22969Y1885D01* X22961Y1882D01* X22953Y1878D01* X22946Y1872D01* X22940Y1865D01* X22936Y1858D01* X22933Y1850D01* X22931Y1841D01* X22931Y1833D01* X22932Y1824D01* X22935Y1816D01* X22939Y1808D01* X22945Y1801D01* X22952Y1796D01* X22959Y1791D01* X22967Y1788D01* X22993Y1779D01* X23018Y1768D01* X23041Y1755D01* X23064Y1740D01* X23084Y1724D01* Y1276D01* X23068Y1262D01* X23046Y1247D01* X23022Y1233D01* X22998Y1222D01* X22972Y1213D01* X22964Y1209D01* X22957Y1205D01* X22950Y1199D01* X22945Y1192D01* X22941Y1184D01* X22938Y1176D01* X22937Y1167D01* X22937Y1159D01* X22939Y1150D01* X22942Y1142D01* X22947Y1135D01* X22953Y1128D01* X22960Y1123D01* X22967Y1119D01* X22976Y1116D01* X22984Y1115D01* X22993Y1115D01* X23001Y1117D01* X23036Y1129D01* X23068Y1144D01* X23084Y1153D01* Y0D01* G37* G36* Y5319D02*X23068Y5299D01* X23049Y5280D01* X23028Y5262D01* X23006Y5247D01* X22982Y5233D01* X22958Y5222D01* X22932Y5213D01* X22924Y5209D01* X22917Y5205D01* X22910Y5199D01* X22905Y5192D01* X22904Y5190D01* Y5802D01* X22905Y5801D01* X22912Y5796D01* X22919Y5791D01* X22927Y5788D01* X22953Y5779D01* X22978Y5768D01* X23001Y5755D01* X23024Y5740D01* X23045Y5723D01* X23064Y5704D01* X23082Y5683D01* X23084Y5680D01* Y5319D01* G37* G36* Y5820D02*X23084Y5820D01* X23054Y5840D01* X23022Y5858D01* X22989Y5873D01* X22955Y5884D01* X22946Y5886D01* X22937Y5886D01* X22929Y5885D01* X22921Y5882D01* X22913Y5878D01* X22906Y5872D01* X22904Y5870D01* Y7121D01* X22907Y7119D01* X22916Y7116D01* X22924Y7115D01* X22933Y7115D01* X22941Y7117D01* X22976Y7129D01* X23008Y7144D01* X23040Y7162D01* X23069Y7183D01* X23084Y7196D01* Y5820D01* G37* G36* Y7350D02*X23080Y7343D01* X23065Y7320D01* X23048Y7299D01* X23029Y7280D01* X23008Y7262D01* X22986Y7247D01* X22962Y7233D01* X22938Y7222D01* X22912Y7213D01* X22904Y7209D01* X22904Y7209D01* Y7789D01* X22907Y7788D01* X22933Y7779D01* X22958Y7768D01* X22981Y7755D01* X23004Y7740D01* X23025Y7723D01* X23044Y7704D01* X23062Y7683D01* X23077Y7661D01* X23084Y7650D01* Y7350D01* G37* G36* Y7804D02*X23064Y7820D01* X23034Y7840D01* X23002Y7858D01* X22969Y7873D01* X22935Y7884D01* X22926Y7886D01* X22917Y7886D01* X22909Y7885D01* X22904Y7883D01* Y9115D01* X22904D01* X22913Y9115D01* X22921Y9117D01* X22956Y9129D01* X22988Y9144D01* X23020Y9162D01* X23049Y9183D01* X23077Y9207D01* X23084Y9214D01* Y7804D01* G37* G36* Y9391D02*X23073Y9366D01* X23060Y9343D01* X23045Y9320D01* X23028Y9299D01* X23009Y9280D01* X22988Y9262D01* X22966Y9247D01* X22942Y9233D01* X22918Y9222D01* X22904Y9217D01* Y9782D01* X22913Y9779D01* X22938Y9768D01* X22961Y9755D01* X22984Y9740D01* X23005Y9723D01* X23024Y9704D01* X23042Y9683D01* X23057Y9661D01* X23071Y9637D01* X23082Y9613D01* X23084Y9608D01* Y9391D01* G37* G36* Y9785D02*X23072Y9797D01* X23044Y9820D01* X23014Y9840D01* X22982Y9858D01* X22949Y9873D01* X22915Y9884D01* X22906Y9886D01* X22904D01* Y11118D01* X22936Y11129D01* X22968Y11144D01* X23000Y11162D01* X23029Y11183D01* X23057Y11207D01* X23082Y11232D01* X23084Y11235D01* Y9785D01* G37* G36* Y11437D02*X23080Y11433D01* X23076Y11425D01* X23073Y11417D01* X23064Y11391D01* X23053Y11366D01* X23040Y11343D01* X23025Y11320D01* X23008Y11299D01* X22989Y11280D01* X22968Y11262D01* X22946Y11247D01* X22922Y11233D01* X22904Y11225D01* Y11774D01* X22918Y11768D01* X22941Y11755D01* X22964Y11740D01* X22985Y11723D01* X23004Y11704D01* X23022Y11683D01* X23037Y11661D01* X23051Y11637D01* X23062Y11613D01* X23071Y11587D01* X23075Y11579D01* X23079Y11572D01* X23084Y11567D01* Y11437D01* G37* G36* Y11764D02*X23077Y11772D01* X23052Y11797D01* X23024Y11820D01* X22994Y11840D01* X22962Y11858D01* X22929Y11873D01* X22904Y11881D01* Y13125D01* X22916Y13129D01* X22948Y13144D01* X22980Y13162D01* X23009Y13183D01* X23037Y13207D01* X23062Y13232D01* X23084Y13259D01* Y11764D01* G37* G36* Y13450D02*X23081Y13449D01* X23073Y13445D01* X23066Y13439D01* X23060Y13433D01* X23056Y13425D01* X23053Y13417D01* X23044Y13391D01* X23033Y13366D01* X23020Y13343D01* X23005Y13320D01* X22988Y13299D01* X22969Y13280D01* X22948Y13262D01* X22926Y13247D01* X22904Y13234D01* Y13765D01* X22921Y13755D01* X22944Y13740D01* X22965Y13723D01* X22984Y13704D01* X23002Y13683D01* X23017Y13661D01* X23031Y13637D01* X23042Y13613D01* X23051Y13587D01* X23055Y13579D01* X23059Y13572D01* X23065Y13565D01* X23072Y13560D01* X23080Y13556D01* X23084Y13555D01* Y13450D01* G37* G36* Y13740D02*X23081Y13744D01* X23057Y13772D01* X23032Y13797D01* X23004Y13820D01* X22974Y13840D01* X22942Y13858D01* X22909Y13873D01* X22904Y13874D01* Y15133D01* X22928Y15144D01* X22960Y15162D01* X22989Y15183D01* X23017Y15207D01* X23042Y15232D01* X23065Y15260D01* X23084Y15288D01* Y13740D01* G37* G36* Y15453D02*X23077Y15453D01* X23069Y15452D01* X23061Y15449D01* X23053Y15445D01* X23046Y15439D01* X23040Y15433D01* X23036Y15425D01* X23033Y15417D01* X23024Y15391D01* X23013Y15366D01* X23000Y15343D01* X22985Y15320D01* X22968Y15299D01* X22949Y15280D01* X22928Y15262D01* X22906Y15247D01* X22904Y15246D01* Y15754D01* X22924Y15740D01* X22945Y15723D01* X22964Y15704D01* X22982Y15683D01* X22997Y15661D01* X23011Y15637D01* X23022Y15613D01* X23031Y15587D01* X23035Y15579D01* X23039Y15572D01* X23045Y15565D01* X23052Y15560D01* X23060Y15556D01* X23068Y15553D01* X23077Y15552D01* X23084Y15552D01* Y15453D01* G37* G36* Y15711D02*X23082Y15715D01* X23061Y15744D01* X23037Y15772D01* X23012Y15797D01* X22984Y15820D01* X22954Y15840D01* X22922Y15858D01* X22904Y15866D01* Y17142D01* X22908Y17144D01* X22940Y17162D01* X22969Y17183D01* X22997Y17207D01* X23022Y17232D01* X23045Y17260D01* X23065Y17290D01* X23083Y17322D01* X23084Y17324D01* Y15711D01* G37* G36* Y17447D02*X23083Y17448D01* X23075Y17451D01* X23066Y17453D01* X23057Y17453D01* X23049Y17452D01* X23041Y17449D01* X23033Y17445D01* X23026Y17439D01* X23020Y17433D01* X23016Y17425D01* X23013Y17417D01* X23004Y17391D01* X22993Y17366D01* X22980Y17343D01* X22965Y17320D01* X22948Y17299D01* X22929Y17280D01* X22908Y17262D01* X22904Y17259D01* Y17740D01* X22925Y17723D01* X22944Y17704D01* X22962Y17683D01* X22977Y17661D01* X22991Y17637D01* X23002Y17613D01* X23011Y17587D01* X23015Y17579D01* X23019Y17572D01* X23025Y17565D01* X23032Y17560D01* X23040Y17556D01* X23048Y17553D01* X23057Y17552D01* X23065Y17552D01* X23074Y17554D01* X23082Y17557D01* X23084Y17559D01* Y17447D01* G37* G36* Y17674D02*X23080Y17683D01* X23062Y17715D01* X23041Y17744D01* X23017Y17772D01* X22992Y17797D01* X22964Y17820D01* X22934Y17840D01* X22904Y17857D01* Y19153D01* X22920Y19162D01* X22949Y19183D01* X22977Y19207D01* X23002Y19232D01* X23025Y19260D01* X23045Y19290D01* X23063Y19322D01* X23077Y19355D01* X23084Y19374D01* Y17674D01* G37* G36* Y19428D02*X23082Y19431D01* X23077Y19438D01* X23070Y19444D01* X23063Y19448D01* X23055Y19451D01* X23046Y19453D01* X23037Y19453D01* X23029Y19452D01* X23021Y19449D01* X23013Y19445D01* X23006Y19439D01* X23000Y19433D01* X22996Y19425D01* X22993Y19417D01* X22984Y19391D01* X22973Y19366D01* X22960Y19343D01* X22945Y19320D01* X22928Y19299D01* X22909Y19280D01* X22904Y19276D01* Y19724D01* X22905Y19723D01* X22924Y19704D01* X22942Y19683D01* X22957Y19661D01* X22971Y19637D01* X22982Y19613D01* X22991Y19587D01* X22995Y19579D01* X22999Y19572D01* X23005Y19565D01* X23012Y19560D01* X23020Y19556D01* X23028Y19553D01* X23037Y19552D01* X23045Y19552D01* X23054Y19554D01* X23062Y19557D01* X23069Y19562D01* X23076Y19568D01* X23081Y19575D01* X23084Y19580D01* Y19428D01* G37* G36* Y40000D02*X24285D01* Y39834D01* X24260Y39816D01* X24232Y39793D01* X24207Y39767D01* X24184Y39739D01* X24164Y39709D01* X24146Y39677D01* X24132Y39644D01* X24120Y39610D01* X24118Y39601D01* X24118Y39593D01* X24119Y39584D01* X24122Y39576D01* X24127Y39568D01* X24132Y39561D01* X24139Y39556D01* X24146Y39551D01* X24154Y39548D01* X24163Y39546D01* X24172Y39546D01* X24180Y39547D01* X24188Y39550D01* X24196Y39555D01* X24203Y39560D01* X24209Y39567D01* X24213Y39574D01* X24216Y39582D01* X24225Y39608D01* X24236Y39633D01* X24249Y39657D01* X24264Y39679D01* X24281Y39700D01* X24285Y39704D01* Y39295D01* X24285Y39295D01* X24267Y39316D01* X24252Y39338D01* X24238Y39362D01* X24227Y39386D01* X24218Y39412D01* X24214Y39420D01* X24210Y39427D01* X24204Y39434D01* X24197Y39439D01* X24189Y39443D01* X24181Y39446D01* X24172Y39447D01* X24164Y39447D01* X24155Y39445D01* X24147Y39442D01* X24140Y39437D01* X24133Y39431D01* X24128Y39424D01* X24124Y39417D01* X24121Y39409D01* X24120Y39400D01* X24120Y39391D01* X24122Y39383D01* X24134Y39349D01* X24149Y39316D01* X24167Y39284D01* X24188Y39255D01* X24212Y39227D01* X24237Y39202D01* X24265Y39179D01* X24285Y39166D01* Y37820D01* X24280Y37816D01* X24252Y37793D01* X24227Y37767D01* X24204Y37739D01* X24184Y37709D01* X24166Y37677D01* X24152Y37644D01* X24140Y37610D01* X24138Y37601D01* X24138Y37593D01* X24139Y37584D01* X24142Y37576D01* X24147Y37568D01* X24152Y37561D01* X24159Y37556D01* X24166Y37551D01* X24174Y37548D01* X24183Y37546D01* X24192Y37546D01* X24200Y37547D01* X24208Y37550D01* X24216Y37555D01* X24223Y37560D01* X24229Y37567D01* X24233Y37574D01* X24236Y37582D01* X24245Y37608D01* X24256Y37633D01* X24269Y37657D01* X24284Y37679D01* X24285Y37680D01* Y37319D01* X24272Y37338D01* X24258Y37362D01* X24247Y37386D01* X24238Y37412D01* X24234Y37420D01* X24230Y37427D01* X24224Y37434D01* X24217Y37439D01* X24209Y37443D01* X24201Y37446D01* X24192Y37447D01* X24184Y37447D01* X24175Y37445D01* X24167Y37442D01* X24160Y37437D01* X24153Y37431D01* X24148Y37424D01* X24144Y37417D01* X24141Y37409D01* X24140Y37400D01* X24140Y37391D01* X24142Y37383D01* X24154Y37349D01* X24169Y37316D01* X24187Y37284D01* X24208Y37255D01* X24232Y37227D01* X24257Y37202D01* X24285Y37179D01* Y35804D01* X24272Y35793D01* X24247Y35767D01* X24224Y35739D01* X24204Y35709D01* X24186Y35677D01* X24172Y35644D01* X24160Y35610D01* X24158Y35601D01* X24158Y35593D01* X24159Y35584D01* X24162Y35576D01* X24167Y35568D01* X24172Y35561D01* X24179Y35556D01* X24186Y35551D01* X24194Y35548D01* X24203Y35546D01* X24212Y35546D01* X24220Y35547D01* X24228Y35550D01* X24236Y35555D01* X24243Y35560D01* X24249Y35567D01* X24253Y35574D01* X24256Y35582D01* X24265Y35608D01* X24276Y35633D01* X24285Y35650D01* Y35349D01* X24278Y35362D01* X24267Y35386D01* X24258Y35412D01* X24254Y35420D01* X24250Y35427D01* X24244Y35434D01* X24237Y35439D01* X24229Y35443D01* X24221Y35446D01* X24212Y35447D01* X24204Y35447D01* X24195Y35445D01* X24187Y35442D01* X24180Y35437D01* X24173Y35431D01* X24168Y35424D01* X24164Y35417D01* X24161Y35409D01* X24160Y35400D01* X24160Y35391D01* X24162Y35383D01* X24174Y35349D01* X24189Y35316D01* X24207Y35284D01* X24228Y35255D01* X24252Y35227D01* X24277Y35202D01* X24285Y35196D01* Y33785D01* X24267Y33767D01* X24244Y33739D01* X24224Y33709D01* X24206Y33677D01* X24192Y33644D01* X24180Y33610D01* X24178Y33601D01* X24178Y33593D01* X24179Y33584D01* X24182Y33576D01* X24187Y33568D01* X24192Y33561D01* X24199Y33556D01* X24206Y33551D01* X24214Y33548D01* X24223Y33546D01* X24232Y33546D01* X24240Y33547D01* X24248Y33550D01* X24256Y33555D01* X24263Y33560D01* X24269Y33567D01* X24273Y33574D01* X24276Y33582D01* X24285Y33608D01* X24285Y33609D01* Y33391D01* X24278Y33412D01* X24274Y33420D01* X24270Y33427D01* X24264Y33434D01* X24257Y33439D01* X24249Y33443D01* X24241Y33446D01* X24232Y33447D01* X24224Y33447D01* X24215Y33445D01* X24207Y33442D01* X24200Y33437D01* X24193Y33431D01* X24188Y33424D01* X24184Y33417D01* X24181Y33409D01* X24180Y33400D01* X24180Y33391D01* X24182Y33383D01* X24194Y33349D01* X24209Y33316D01* X24227Y33284D01* X24248Y33255D01* X24272Y33227D01* X24285Y33214D01* Y31765D01* X24264Y31739D01* X24244Y31709D01* X24226Y31677D01* X24212Y31644D01* X24200Y31610D01* X24198Y31601D01* X24198Y31593D01* X24199Y31584D01* X24202Y31576D01* X24207Y31568D01* X24212Y31561D01* X24219Y31556D01* X24226Y31551D01* X24234Y31548D01* X24243Y31546D01* X24252Y31546D01* X24260Y31547D01* X24268Y31550D01* X24276Y31555D01* X24283Y31560D01* X24285Y31563D01* Y31432D01* X24284Y31434D01* X24277Y31439D01* X24269Y31443D01* X24261Y31446D01* X24252Y31447D01* X24244Y31447D01* X24235Y31445D01* X24227Y31442D01* X24220Y31437D01* X24213Y31431D01* X24208Y31424D01* X24204Y31417D01* X24201Y31409D01* X24200Y31400D01* X24200Y31391D01* X24202Y31383D01* X24214Y31349D01* X24229Y31316D01* X24247Y31284D01* X24268Y31255D01* X24285Y31235D01* Y29740D01* X24284Y29739D01* X24264Y29709D01* X24246Y29677D01* X24232Y29644D01* X24220Y29610D01* X24218Y29601D01* X24218Y29593D01* X24219Y29584D01* X24222Y29576D01* X24227Y29568D01* X24232Y29561D01* X24239Y29556D01* X24246Y29551D01* X24254Y29548D01* X24263Y29546D01* X24272Y29546D01* X24280Y29547D01* X24285Y29549D01* Y29445D01* X24281Y29446D01* X24272Y29447D01* X24264Y29447D01* X24255Y29445D01* X24247Y29442D01* X24240Y29437D01* X24233Y29431D01* X24228Y29424D01* X24224Y29417D01* X24221Y29409D01* X24220Y29400D01* X24220Y29391D01* X24222Y29383D01* X24234Y29349D01* X24249Y29316D01* X24267Y29284D01* X24285Y29259D01* Y27711D01* X24284Y27709D01* X24266Y27677D01* X24252Y27644D01* X24240Y27610D01* X24238Y27601D01* X24238Y27593D01* X24239Y27584D01* X24242Y27576D01* X24247Y27568D01* X24252Y27561D01* X24259Y27556D01* X24266Y27551D01* X24274Y27548D01* X24283Y27546D01* X24285D01* Y27447D01* X24284Y27447D01* X24275Y27445D01* X24267Y27442D01* X24260Y27437D01* X24253Y27431D01* X24248Y27424D01* X24244Y27417D01* X24241Y27409D01* X24240Y27400D01* X24240Y27391D01* X24242Y27383D01* X24254Y27349D01* X24269Y27316D01* X24285Y27288D01* Y25675D01* X24272Y25644D01* X24260Y25610D01* X24258Y25601D01* X24258Y25593D01* X24259Y25584D01* X24262Y25576D01* X24267Y25568D01* X24272Y25561D01* X24279Y25556D01* X24285Y25552D01* Y25441D01* X24280Y25437D01* X24273Y25431D01* X24268Y25424D01* X24264Y25417D01* X24261Y25409D01* X24260Y25400D01* X24260Y25391D01* X24262Y25383D01* X24274Y25349D01* X24285Y25325D01* Y23625D01* X24280Y23610D01* X24278Y23601D01* X24278Y23593D01* X24279Y23584D01* X24282Y23576D01* X24285Y23571D01* Y23419D01* X24284Y23417D01* X24281Y23409D01* X24280Y23400D01* X24280Y23391D01* X24282Y23383D01* X24285Y23374D01* Y0D01* X23084D01* Y1153D01* X23100Y1162D01* X23129Y1183D01* X23157Y1207D01* X23182Y1232D01* X23205Y1260D01* X23225Y1290D01* X23243Y1322D01* X23257Y1355D01* X23269Y1389D01* X23271Y1398D01* X23271Y1407D01* X23270Y1415D01* X23267Y1423D01* X23262Y1431D01* X23257Y1438D01* X23250Y1444D01* X23243Y1448D01* X23235Y1451D01* X23226Y1453D01* X23217Y1453D01* X23209Y1452D01* X23201Y1449D01* X23193Y1445D01* X23186Y1439D01* X23180Y1433D01* X23176Y1425D01* X23173Y1417D01* X23164Y1391D01* X23153Y1366D01* X23140Y1343D01* X23125Y1320D01* X23108Y1299D01* X23089Y1280D01* X23084Y1276D01* Y1724D01* X23085Y1723D01* X23104Y1704D01* X23122Y1683D01* X23137Y1661D01* X23151Y1637D01* X23162Y1613D01* X23171Y1587D01* X23175Y1579D01* X23179Y1572D01* X23185Y1565D01* X23192Y1560D01* X23200Y1556D01* X23208Y1553D01* X23217Y1552D01* X23225Y1552D01* X23234Y1554D01* X23242Y1557D01* X23249Y1562D01* X23256Y1568D01* X23261Y1575D01* X23265Y1582D01* X23268Y1591D01* X23269Y1599D01* X23269Y1608D01* X23267Y1617D01* X23255Y1651D01* X23240Y1683D01* X23222Y1715D01* X23201Y1744D01* X23177Y1772D01* X23152Y1797D01* X23124Y1820D01* X23094Y1840D01* X23084Y1846D01* Y3165D01* X23109Y3183D01* X23137Y3207D01* X23162Y3232D01* X23185Y3260D01* X23205Y3290D01* X23223Y3322D01* X23237Y3355D01* X23249Y3389D01* X23251Y3398D01* X23251Y3407D01* X23250Y3415D01* X23247Y3423D01* X23242Y3431D01* X23237Y3438D01* X23230Y3444D01* X23223Y3448D01* X23215Y3451D01* X23206Y3453D01* X23197Y3453D01* X23189Y3452D01* X23181Y3449D01* X23173Y3445D01* X23166Y3439D01* X23160Y3433D01* X23156Y3425D01* X23153Y3417D01* X23144Y3391D01* X23133Y3366D01* X23120Y3343D01* X23105Y3320D01* X23088Y3299D01* X23084Y3295D01* Y3704D01* X23084Y3704D01* X23102Y3683D01* X23117Y3661D01* X23131Y3637D01* X23142Y3613D01* X23151Y3587D01* X23155Y3579D01* X23159Y3572D01* X23165Y3565D01* X23172Y3560D01* X23180Y3556D01* X23188Y3553D01* X23197Y3552D01* X23205Y3552D01* X23214Y3554D01* X23222Y3557D01* X23229Y3562D01* X23236Y3568D01* X23241Y3575D01* X23245Y3582D01* X23248Y3591D01* X23249Y3599D01* X23249Y3608D01* X23247Y3617D01* X23235Y3651D01* X23220Y3683D01* X23202Y3715D01* X23181Y3744D01* X23157Y3772D01* X23132Y3797D01* X23104Y3820D01* X23084Y3834D01* Y5180D01* X23089Y5183D01* X23117Y5207D01* X23142Y5232D01* X23165Y5260D01* X23185Y5290D01* X23203Y5322D01* X23217Y5355D01* X23229Y5389D01* X23231Y5398D01* X23231Y5407D01* X23230Y5415D01* X23227Y5423D01* X23222Y5431D01* X23217Y5438D01* X23210Y5444D01* X23203Y5448D01* X23195Y5451D01* X23186Y5453D01* X23177Y5453D01* X23169Y5452D01* X23161Y5449D01* X23153Y5445D01* X23146Y5439D01* X23140Y5433D01* X23136Y5425D01* X23133Y5417D01* X23124Y5391D01* X23113Y5366D01* X23100Y5343D01* X23085Y5320D01* X23084Y5319D01* Y5680D01* X23097Y5661D01* X23111Y5637D01* X23122Y5613D01* X23131Y5587D01* X23135Y5579D01* X23139Y5572D01* X23145Y5565D01* X23152Y5560D01* X23160Y5556D01* X23168Y5553D01* X23177Y5552D01* X23185Y5552D01* X23194Y5554D01* X23202Y5557D01* X23209Y5562D01* X23216Y5568D01* X23221Y5575D01* X23225Y5582D01* X23228Y5591D01* X23229Y5599D01* X23229Y5608D01* X23227Y5617D01* X23215Y5651D01* X23200Y5683D01* X23182Y5715D01* X23161Y5744D01* X23137Y5772D01* X23112Y5797D01* X23084Y5820D01* Y7196D01* X23097Y7207D01* X23122Y7232D01* X23145Y7260D01* X23165Y7290D01* X23183Y7322D01* X23197Y7355D01* X23209Y7389D01* X23211Y7398D01* X23211Y7407D01* X23210Y7415D01* X23207Y7423D01* X23202Y7431D01* X23197Y7438D01* X23190Y7444D01* X23183Y7448D01* X23175Y7451D01* X23166Y7453D01* X23157Y7453D01* X23149Y7452D01* X23141Y7449D01* X23133Y7445D01* X23126Y7439D01* X23120Y7433D01* X23116Y7425D01* X23113Y7417D01* X23104Y7391D01* X23093Y7366D01* X23084Y7350D01* Y7650D01* X23091Y7637D01* X23102Y7613D01* X23111Y7587D01* X23115Y7579D01* X23119Y7572D01* X23125Y7565D01* X23132Y7560D01* X23140Y7556D01* X23148Y7553D01* X23157Y7552D01* X23165Y7552D01* X23174Y7554D01* X23182Y7557D01* X23189Y7562D01* X23196Y7568D01* X23201Y7575D01* X23205Y7582D01* X23208Y7591D01* X23209Y7599D01* X23209Y7608D01* X23207Y7617D01* X23195Y7651D01* X23180Y7683D01* X23162Y7715D01* X23141Y7744D01* X23117Y7772D01* X23092Y7797D01* X23084Y7804D01* Y9214D01* X23102Y9232D01* X23125Y9260D01* X23145Y9290D01* X23163Y9322D01* X23177Y9355D01* X23189Y9389D01* X23191Y9398D01* X23191Y9407D01* X23190Y9415D01* X23187Y9423D01* X23182Y9431D01* X23177Y9438D01* X23170Y9444D01* X23163Y9448D01* X23155Y9451D01* X23146Y9453D01* X23137Y9453D01* X23129Y9452D01* X23121Y9449D01* X23113Y9445D01* X23106Y9439D01* X23100Y9433D01* X23096Y9425D01* X23093Y9417D01* X23084Y9391D01* X23084Y9391D01* Y9608D01* X23091Y9587D01* X23095Y9579D01* X23099Y9572D01* X23105Y9565D01* X23112Y9560D01* X23120Y9556D01* X23128Y9553D01* X23137Y9552D01* X23145Y9552D01* X23154Y9554D01* X23162Y9557D01* X23169Y9562D01* X23176Y9568D01* X23181Y9575D01* X23185Y9582D01* X23188Y9591D01* X23189Y9599D01* X23189Y9608D01* X23187Y9617D01* X23175Y9651D01* X23160Y9683D01* X23142Y9715D01* X23121Y9744D01* X23097Y9772D01* X23084Y9785D01* Y11235D01* X23105Y11260D01* X23125Y11290D01* X23143Y11322D01* X23157Y11355D01* X23169Y11389D01* X23171Y11398D01* X23171Y11407D01* X23170Y11415D01* X23167Y11423D01* X23162Y11431D01* X23157Y11438D01* X23150Y11444D01* X23143Y11448D01* X23135Y11451D01* X23126Y11453D01* X23117Y11453D01* X23109Y11452D01* X23101Y11449D01* X23093Y11445D01* X23086Y11439D01* X23084Y11437D01* Y11567D01* X23085Y11565D01* X23092Y11560D01* X23100Y11556D01* X23108Y11553D01* X23117Y11552D01* X23125Y11552D01* X23134Y11554D01* X23142Y11557D01* X23149Y11562D01* X23156Y11568D01* X23161Y11575D01* X23165Y11582D01* X23168Y11591D01* X23169Y11599D01* X23169Y11608D01* X23167Y11617D01* X23155Y11651D01* X23140Y11683D01* X23122Y11715D01* X23101Y11744D01* X23084Y11764D01* Y13259D01* X23085Y13260D01* X23105Y13290D01* X23123Y13322D01* X23137Y13355D01* X23149Y13389D01* X23151Y13398D01* X23151Y13407D01* X23150Y13415D01* X23147Y13423D01* X23142Y13431D01* X23137Y13438D01* X23130Y13444D01* X23123Y13448D01* X23115Y13451D01* X23106Y13453D01* X23097Y13453D01* X23089Y13452D01* X23084Y13450D01* Y13555D01* X23088Y13553D01* X23097Y13552D01* X23105Y13552D01* X23114Y13554D01* X23122Y13557D01* X23129Y13562D01* X23136Y13568D01* X23141Y13575D01* X23145Y13582D01* X23148Y13591D01* X23149Y13599D01* X23149Y13608D01* X23147Y13617D01* X23135Y13651D01* X23120Y13683D01* X23102Y13715D01* X23084Y13740D01* Y15288D01* X23085Y15290D01* X23103Y15322D01* X23117Y15355D01* X23129Y15389D01* X23131Y15398D01* X23131Y15407D01* X23130Y15415D01* X23127Y15423D01* X23122Y15431D01* X23117Y15438D01* X23110Y15444D01* X23103Y15448D01* X23095Y15451D01* X23086Y15453D01* X23084D01* Y15552D01* X23085D01* X23094Y15554D01* X23102Y15557D01* X23109Y15562D01* X23116Y15568D01* X23121Y15575D01* X23125Y15582D01* X23128Y15591D01* X23129Y15599D01* X23129Y15608D01* X23127Y15617D01* X23115Y15651D01* X23100Y15683D01* X23084Y15711D01* Y17324D01* X23097Y17355D01* X23109Y17389D01* X23111Y17398D01* X23111Y17407D01* X23110Y17415D01* X23107Y17423D01* X23102Y17431D01* X23097Y17438D01* X23090Y17444D01* X23084Y17447D01* Y17559D01* X23089Y17562D01* X23096Y17568D01* X23101Y17575D01* X23105Y17582D01* X23108Y17591D01* X23109Y17599D01* X23109Y17608D01* X23107Y17617D01* X23095Y17651D01* X23084Y17674D01* Y19374D01* X23089Y19389D01* X23091Y19398D01* X23091Y19407D01* X23090Y19415D01* X23087Y19423D01* X23084Y19428D01* Y19580D01* X23085Y19582D01* X23088Y19591D01* X23089Y19599D01* X23089Y19608D01* X23087Y19617D01* X23084Y19625D01* Y40000D01* G37* G36* X24285D02*X24465D01* Y37859D01* X24462Y37864D01* X24456Y37871D01* X24449Y37876D01* X24442Y37880D01* X24433Y37883D01* X24425Y37884D01* X24416Y37884D01* X24408Y37882D01* X24373Y37870D01* X24341Y37855D01* X24309Y37837D01* X24285Y37820D01* Y39166D01* X24295Y39159D01* X24327Y39141D01* X24360Y39127D01* X24394Y39115D01* X24403Y39113D01* X24412Y39113D01* X24420Y39115D01* X24428Y39117D01* X24436Y39122D01* X24443Y39127D01* X24449Y39134D01* X24453Y39141D01* X24456Y39149D01* X24458Y39158D01* X24458Y39167D01* X24457Y39175D01* X24454Y39183D01* X24450Y39191D01* X24444Y39198D01* X24437Y39204D01* X24430Y39208D01* X24422Y39211D01* X24396Y39220D01* X24371Y39231D01* X24348Y39244D01* X24325Y39259D01* X24304Y39276D01* X24285Y39295D01* Y39704D01* X24300Y39719D01* X24321Y39737D01* X24343Y39752D01* X24367Y39766D01* X24391Y39777D01* X24417Y39786D01* X24425Y39790D01* X24432Y39794D01* X24439Y39800D01* X24444Y39807D01* X24448Y39815D01* X24451Y39823D01* X24452Y39832D01* X24452Y39840D01* X24450Y39849D01* X24447Y39857D01* X24442Y39864D01* X24436Y39871D01* X24429Y39876D01* X24422Y39880D01* X24413Y39883D01* X24405Y39884D01* X24396Y39884D01* X24388Y39882D01* X24353Y39870D01* X24321Y39855D01* X24289Y39837D01* X24285Y39834D01* Y40000D01* G37* G36* X24465Y11740D02*X24464Y11739D01* X24444Y11709D01* X24426Y11677D01* X24412Y11644D01* X24400Y11610D01* X24398Y11601D01* X24398Y11593D01* X24399Y11584D01* X24402Y11576D01* X24407Y11568D01* X24412Y11561D01* X24419Y11556D01* X24426Y11551D01* X24434Y11548D01* X24443Y11546D01* X24452Y11546D01* X24460Y11547D01* X24465Y11549D01* Y11445D01* X24461Y11446D01* X24452Y11447D01* X24444Y11447D01* X24435Y11445D01* X24427Y11442D01* X24420Y11437D01* X24413Y11431D01* X24408Y11424D01* X24404Y11417D01* X24401Y11409D01* X24400Y11400D01* X24400Y11391D01* X24402Y11383D01* X24414Y11349D01* X24429Y11316D01* X24447Y11284D01* X24465Y11259D01* Y9711D01* X24464Y9709D01* X24446Y9677D01* X24432Y9644D01* X24420Y9610D01* X24418Y9601D01* X24418Y9593D01* X24419Y9584D01* X24422Y9576D01* X24427Y9568D01* X24432Y9561D01* X24439Y9556D01* X24446Y9551D01* X24454Y9548D01* X24463Y9546D01* X24465D01* Y9447D01* X24464Y9447D01* X24455Y9445D01* X24447Y9442D01* X24440Y9437D01* X24433Y9431D01* X24428Y9424D01* X24424Y9417D01* X24421Y9409D01* X24420Y9400D01* X24420Y9391D01* X24422Y9383D01* X24434Y9349D01* X24449Y9316D01* X24465Y9288D01* Y7675D01* X24452Y7644D01* X24440Y7610D01* X24438Y7601D01* X24438Y7593D01* X24439Y7584D01* X24442Y7576D01* X24447Y7568D01* X24452Y7561D01* X24459Y7556D01* X24465Y7552D01* Y7441D01* X24460Y7437D01* X24453Y7431D01* X24448Y7424D01* X24444Y7417D01* X24441Y7409D01* X24440Y7400D01* X24440Y7391D01* X24442Y7383D01* X24454Y7349D01* X24465Y7325D01* Y5625D01* X24460Y5610D01* X24458Y5601D01* X24458Y5593D01* X24459Y5584D01* X24462Y5576D01* X24465Y5571D01* Y5419D01* X24464Y5417D01* X24461Y5409D01* X24460Y5400D01* X24460Y5391D01* X24462Y5383D01* X24465Y5374D01* Y0D01* X24285D01* Y23374D01* X24294Y23349D01* X24309Y23316D01* X24327Y23284D01* X24348Y23255D01* X24372Y23227D01* X24397Y23202D01* X24425Y23179D01* X24455Y23159D01* X24465Y23153D01* Y21834D01* X24440Y21816D01* X24412Y21793D01* X24387Y21767D01* X24364Y21739D01* X24344Y21709D01* X24326Y21677D01* X24312Y21644D01* X24300Y21610D01* X24298Y21601D01* X24298Y21593D01* X24299Y21584D01* X24302Y21576D01* X24307Y21568D01* X24312Y21561D01* X24319Y21556D01* X24326Y21551D01* X24334Y21548D01* X24343Y21546D01* X24352Y21546D01* X24360Y21547D01* X24368Y21550D01* X24376Y21555D01* X24383Y21560D01* X24389Y21567D01* X24393Y21574D01* X24396Y21582D01* X24405Y21608D01* X24416Y21633D01* X24429Y21657D01* X24444Y21679D01* X24461Y21700D01* X24465Y21704D01* Y21295D01* X24465Y21295D01* X24447Y21316D01* X24432Y21338D01* X24418Y21362D01* X24407Y21386D01* X24398Y21412D01* X24394Y21420D01* X24390Y21427D01* X24384Y21434D01* X24377Y21439D01* X24369Y21443D01* X24361Y21446D01* X24352Y21447D01* X24344Y21447D01* X24335Y21445D01* X24327Y21442D01* X24320Y21437D01* X24313Y21431D01* X24308Y21424D01* X24304Y21417D01* X24301Y21409D01* X24300Y21400D01* X24300Y21391D01* X24302Y21383D01* X24314Y21349D01* X24329Y21316D01* X24347Y21284D01* X24368Y21255D01* X24392Y21227D01* X24417Y21202D01* X24445Y21179D01* X24465Y21166D01* Y19820D01* X24460Y19816D01* X24432Y19793D01* X24407Y19767D01* X24384Y19739D01* X24364Y19709D01* X24346Y19677D01* X24332Y19644D01* X24320Y19610D01* X24318Y19601D01* X24318Y19593D01* X24319Y19584D01* X24322Y19576D01* X24327Y19568D01* X24332Y19561D01* X24339Y19556D01* X24346Y19551D01* X24354Y19548D01* X24363Y19546D01* X24372Y19546D01* X24380Y19547D01* X24388Y19550D01* X24396Y19555D01* X24403Y19560D01* X24409Y19567D01* X24413Y19574D01* X24416Y19582D01* X24425Y19608D01* X24436Y19633D01* X24449Y19657D01* X24464Y19679D01* X24465Y19680D01* Y19319D01* X24452Y19338D01* X24438Y19362D01* X24427Y19386D01* X24418Y19412D01* X24414Y19420D01* X24410Y19427D01* X24404Y19434D01* X24397Y19439D01* X24389Y19443D01* X24381Y19446D01* X24372Y19447D01* X24364Y19447D01* X24355Y19445D01* X24347Y19442D01* X24340Y19437D01* X24333Y19431D01* X24328Y19424D01* X24324Y19417D01* X24321Y19409D01* X24320Y19400D01* X24320Y19391D01* X24322Y19383D01* X24334Y19349D01* X24349Y19316D01* X24367Y19284D01* X24388Y19255D01* X24412Y19227D01* X24437Y19202D01* X24465Y19179D01* Y17804D01* X24452Y17793D01* X24427Y17767D01* X24404Y17739D01* X24384Y17709D01* X24366Y17677D01* X24352Y17644D01* X24340Y17610D01* X24338Y17601D01* X24338Y17593D01* X24339Y17584D01* X24342Y17576D01* X24347Y17568D01* X24352Y17561D01* X24359Y17556D01* X24366Y17551D01* X24374Y17548D01* X24383Y17546D01* X24392Y17546D01* X24400Y17547D01* X24408Y17550D01* X24416Y17555D01* X24423Y17560D01* X24429Y17567D01* X24433Y17574D01* X24436Y17582D01* X24445Y17608D01* X24456Y17633D01* X24465Y17650D01* Y17349D01* X24458Y17362D01* X24447Y17386D01* X24438Y17412D01* X24434Y17420D01* X24430Y17427D01* X24424Y17434D01* X24417Y17439D01* X24409Y17443D01* X24401Y17446D01* X24392Y17447D01* X24384Y17447D01* X24375Y17445D01* X24367Y17442D01* X24360Y17437D01* X24353Y17431D01* X24348Y17424D01* X24344Y17417D01* X24341Y17409D01* X24340Y17400D01* X24340Y17391D01* X24342Y17383D01* X24354Y17349D01* X24369Y17316D01* X24387Y17284D01* X24408Y17255D01* X24432Y17227D01* X24457Y17202D01* X24465Y17196D01* Y15785D01* X24447Y15767D01* X24424Y15739D01* X24404Y15709D01* X24386Y15677D01* X24372Y15644D01* X24360Y15610D01* X24358Y15601D01* X24358Y15593D01* X24359Y15584D01* X24362Y15576D01* X24367Y15568D01* X24372Y15561D01* X24379Y15556D01* X24386Y15551D01* X24394Y15548D01* X24403Y15546D01* X24412Y15546D01* X24420Y15547D01* X24428Y15550D01* X24436Y15555D01* X24443Y15560D01* X24449Y15567D01* X24453Y15574D01* X24456Y15582D01* X24465Y15608D01* X24465Y15609D01* Y15391D01* X24458Y15412D01* X24454Y15420D01* X24450Y15427D01* X24444Y15434D01* X24437Y15439D01* X24429Y15443D01* X24421Y15446D01* X24412Y15447D01* X24404Y15447D01* X24395Y15445D01* X24387Y15442D01* X24380Y15437D01* X24373Y15431D01* X24368Y15424D01* X24364Y15417D01* X24361Y15409D01* X24360Y15400D01* X24360Y15391D01* X24362Y15383D01* X24374Y15349D01* X24389Y15316D01* X24407Y15284D01* X24428Y15255D01* X24452Y15227D01* X24465Y15214D01* Y13765D01* X24444Y13739D01* X24424Y13709D01* X24406Y13677D01* X24392Y13644D01* X24380Y13610D01* X24378Y13601D01* X24378Y13593D01* X24379Y13584D01* X24382Y13576D01* X24387Y13568D01* X24392Y13561D01* X24399Y13556D01* X24406Y13551D01* X24414Y13548D01* X24423Y13546D01* X24432Y13546D01* X24440Y13547D01* X24448Y13550D01* X24456Y13555D01* X24463Y13560D01* X24465Y13563D01* Y13432D01* X24464Y13434D01* X24457Y13439D01* X24449Y13443D01* X24441Y13446D01* X24432Y13447D01* X24424Y13447D01* X24415Y13445D01* X24407Y13442D01* X24400Y13437D01* X24393Y13431D01* X24388Y13424D01* X24384Y13417D01* X24381Y13409D01* X24380Y13400D01* X24380Y13391D01* X24382Y13383D01* X24394Y13349D01* X24409Y13316D01* X24427Y13284D01* X24448Y13255D01* X24465Y13235D01* Y11740D01* G37* G36* Y23276D02*X24464Y23276D01* X24445Y23295D01* X24427Y23316D01* X24412Y23338D01* X24398Y23362D01* X24387Y23386D01* X24378Y23412D01* X24374Y23420D01* X24370Y23427D01* X24364Y23434D01* X24357Y23439D01* X24349Y23443D01* X24341Y23446D01* X24332Y23447D01* X24324Y23447D01* X24315Y23445D01* X24307Y23442D01* X24300Y23437D01* X24293Y23431D01* X24288Y23424D01* X24285Y23419D01* Y23571D01* X24287Y23568D01* X24292Y23561D01* X24299Y23556D01* X24306Y23551D01* X24314Y23548D01* X24323Y23546D01* X24332Y23546D01* X24340Y23547D01* X24348Y23550D01* X24356Y23555D01* X24363Y23560D01* X24369Y23567D01* X24373Y23574D01* X24376Y23582D01* X24385Y23608D01* X24396Y23633D01* X24409Y23657D01* X24424Y23679D01* X24441Y23700D01* X24460Y23719D01* X24465Y23723D01* Y23276D01* G37* G36* Y23846D02*X24449Y23837D01* X24420Y23816D01* X24392Y23793D01* X24367Y23767D01* X24344Y23739D01* X24324Y23709D01* X24306Y23677D01* X24292Y23644D01* X24285Y23625D01* Y25325D01* X24289Y25316D01* X24307Y25284D01* X24328Y25255D01* X24352Y25227D01* X24377Y25202D01* X24405Y25179D01* X24435Y25159D01* X24465Y25142D01* Y23846D01* G37* G36* Y25259D02*X24465Y25259D01* X24444Y25276D01* X24425Y25295D01* X24407Y25316D01* X24392Y25338D01* X24378Y25362D01* X24367Y25386D01* X24358Y25412D01* X24354Y25420D01* X24350Y25427D01* X24344Y25434D01* X24337Y25439D01* X24329Y25443D01* X24321Y25446D01* X24312Y25447D01* X24304Y25447D01* X24295Y25445D01* X24287Y25442D01* X24285Y25441D01* Y25552D01* X24286Y25551D01* X24294Y25548D01* X24303Y25546D01* X24312Y25546D01* X24320Y25547D01* X24328Y25550D01* X24336Y25555D01* X24343Y25560D01* X24349Y25567D01* X24353Y25574D01* X24356Y25582D01* X24365Y25608D01* X24376Y25633D01* X24389Y25657D01* X24404Y25679D01* X24421Y25700D01* X24440Y25719D01* X24461Y25737D01* X24465Y25740D01* Y25259D01* G37* G36* Y25857D02*X24461Y25855D01* X24429Y25837D01* X24400Y25816D01* X24372Y25793D01* X24347Y25767D01* X24324Y25739D01* X24304Y25709D01* X24286Y25677D01* X24285Y25675D01* Y27288D01* X24287Y27284D01* X24308Y27255D01* X24332Y27227D01* X24357Y27202D01* X24385Y27179D01* X24415Y27159D01* X24447Y27141D01* X24465Y27133D01* Y25857D01* G37* G36* Y27246D02*X24445Y27259D01* X24424Y27276D01* X24405Y27295D01* X24387Y27316D01* X24372Y27338D01* X24358Y27362D01* X24347Y27386D01* X24338Y27412D01* X24334Y27420D01* X24330Y27427D01* X24324Y27434D01* X24317Y27439D01* X24309Y27443D01* X24301Y27446D01* X24292Y27447D01* X24285Y27447D01* Y27546D01* X24292Y27546D01* X24300Y27547D01* X24308Y27550D01* X24316Y27555D01* X24323Y27560D01* X24329Y27567D01* X24333Y27574D01* X24336Y27582D01* X24345Y27608D01* X24356Y27633D01* X24369Y27657D01* X24384Y27679D01* X24401Y27700D01* X24420Y27719D01* X24441Y27737D01* X24463Y27752D01* X24465Y27754D01* Y27246D01* G37* G36* Y27866D02*X24441Y27855D01* X24409Y27837D01* X24380Y27816D01* X24352Y27793D01* X24327Y27767D01* X24304Y27739D01* X24285Y27711D01* Y29259D01* X24288Y29255D01* X24312Y29227D01* X24337Y29202D01* X24365Y29179D01* X24395Y29159D01* X24427Y29141D01* X24460Y29127D01* X24465Y29125D01* Y27866D01* G37* G36* Y29234D02*X24448Y29244D01* X24425Y29259D01* X24404Y29276D01* X24385Y29295D01* X24367Y29316D01* X24352Y29338D01* X24338Y29362D01* X24327Y29386D01* X24318Y29412D01* X24314Y29420D01* X24310Y29427D01* X24304Y29434D01* X24297Y29439D01* X24289Y29443D01* X24285Y29445D01* Y29549D01* X24288Y29550D01* X24296Y29555D01* X24303Y29560D01* X24309Y29567D01* X24313Y29574D01* X24316Y29582D01* X24325Y29608D01* X24336Y29633D01* X24349Y29657D01* X24364Y29679D01* X24381Y29700D01* X24400Y29719D01* X24421Y29737D01* X24443Y29752D01* X24465Y29765D01* Y29234D01* G37* G36* Y29874D02*X24453Y29870D01* X24421Y29855D01* X24389Y29837D01* X24360Y29816D01* X24332Y29793D01* X24307Y29767D01* X24285Y29740D01* Y31235D01* X24292Y31227D01* X24317Y31202D01* X24345Y31179D01* X24375Y31159D01* X24407Y31141D01* X24440Y31127D01* X24465Y31118D01* Y29874D01* G37* G36* Y31225D02*X24451Y31231D01* X24428Y31244D01* X24405Y31259D01* X24384Y31276D01* X24365Y31295D01* X24347Y31316D01* X24332Y31338D01* X24318Y31362D01* X24307Y31386D01* X24298Y31412D01* X24294Y31420D01* X24290Y31427D01* X24285Y31432D01* Y31563D01* X24289Y31567D01* X24293Y31574D01* X24296Y31582D01* X24305Y31608D01* X24316Y31633D01* X24329Y31657D01* X24344Y31679D01* X24361Y31700D01* X24380Y31719D01* X24401Y31737D01* X24423Y31752D01* X24447Y31766D01* X24465Y31775D01* Y31225D01* G37* G36* Y31881D02*X24433Y31870D01* X24401Y31855D01* X24369Y31837D01* X24340Y31816D01* X24312Y31793D01* X24287Y31767D01* X24285Y31765D01* Y33214D01* X24297Y33202D01* X24325Y33179D01* X24355Y33159D01* X24387Y33141D01* X24420Y33127D01* X24454Y33115D01* X24463Y33113D01* X24465D01* Y31881D01* G37* G36* Y33217D02*X24456Y33220D01* X24431Y33231D01* X24408Y33244D01* X24385Y33259D01* X24364Y33276D01* X24345Y33295D01* X24327Y33316D01* X24312Y33338D01* X24298Y33362D01* X24287Y33386D01* X24285Y33391D01* Y33609D01* X24296Y33633D01* X24309Y33657D01* X24324Y33679D01* X24341Y33700D01* X24360Y33719D01* X24381Y33737D01* X24403Y33752D01* X24427Y33766D01* X24451Y33777D01* X24465Y33782D01* Y33217D01* G37* G36* Y33884D02*X24465Y33884D01* X24456Y33884D01* X24448Y33882D01* X24413Y33870D01* X24381Y33855D01* X24349Y33837D01* X24320Y33816D01* X24292Y33793D01* X24285Y33785D01* Y35196D01* X24305Y35179D01* X24335Y35159D01* X24367Y35141D01* X24400Y35127D01* X24434Y35115D01* X24443Y35113D01* X24452Y35113D01* X24460Y35115D01* X24465Y35116D01* Y33884D01* G37* G36* Y35210D02*X24462Y35211D01* X24436Y35220D01* X24411Y35231D01* X24388Y35244D01* X24365Y35259D01* X24344Y35276D01* X24325Y35295D01* X24307Y35316D01* X24292Y35338D01* X24285Y35349D01* Y35650D01* X24289Y35657D01* X24304Y35679D01* X24321Y35700D01* X24340Y35719D01* X24361Y35737D01* X24383Y35752D01* X24407Y35766D01* X24431Y35777D01* X24457Y35786D01* X24465Y35790D01* X24465Y35790D01* Y35210D01* G37* G36* Y35878D02*X24462Y35880D01* X24453Y35883D01* X24445Y35884D01* X24436Y35884D01* X24428Y35882D01* X24393Y35870D01* X24361Y35855D01* X24329Y35837D01* X24300Y35816D01* X24285Y35804D01* Y37179D01* X24285Y37179D01* X24315Y37159D01* X24347Y37141D01* X24380Y37127D01* X24414Y37115D01* X24423Y37113D01* X24432Y37113D01* X24440Y37115D01* X24448Y37117D01* X24456Y37122D01* X24463Y37127D01* X24465Y37130D01* Y35878D01* G37* G36* Y37197D02*X24464Y37198D01* X24457Y37204D01* X24450Y37208D01* X24442Y37211D01* X24416Y37220D01* X24391Y37231D01* X24368Y37244D01* X24345Y37259D01* X24324Y37276D01* X24305Y37295D01* X24287Y37316D01* X24285Y37319D01* Y37680D01* X24301Y37700D01* X24320Y37719D01* X24341Y37737D01* X24363Y37752D01* X24387Y37766D01* X24411Y37777D01* X24437Y37786D01* X24445Y37790D01* X24452Y37794D01* X24459Y37800D01* X24464Y37807D01* X24465Y37809D01* Y37197D01* G37* G36* Y40000D02*X24724D01* Y39834D01* X24714Y39840D01* X24682Y39858D01* X24649Y39873D01* X24615Y39884D01* X24606Y39886D01* X24597Y39886D01* X24589Y39885D01* X24581Y39882D01* X24573Y39878D01* X24566Y39872D01* X24560Y39865D01* X24556Y39858D01* X24553Y39850D01* X24551Y39841D01* X24551Y39833D01* X24552Y39824D01* X24555Y39816D01* X24559Y39808D01* X24565Y39801D01* X24572Y39796D01* X24579Y39791D01* X24587Y39788D01* X24613Y39779D01* X24638Y39768D01* X24661Y39755D01* X24684Y39740D01* X24705Y39723D01* X24724Y39704D01* Y39295D01* X24709Y39280D01* X24688Y39262D01* X24666Y39247D01* X24642Y39233D01* X24618Y39222D01* X24592Y39213D01* X24584Y39209D01* X24577Y39205D01* X24570Y39199D01* X24565Y39192D01* X24561Y39184D01* X24558Y39176D01* X24557Y39167D01* X24557Y39159D01* X24559Y39150D01* X24562Y39142D01* X24567Y39135D01* X24573Y39128D01* X24580Y39123D01* X24587Y39119D01* X24596Y39116D01* X24604Y39115D01* X24613Y39115D01* X24621Y39117D01* X24656Y39129D01* X24688Y39144D01* X24720Y39162D01* X24724Y39165D01* Y37846D01* X24702Y37858D01* X24669Y37873D01* X24635Y37884D01* X24626Y37886D01* X24617Y37886D01* X24609Y37885D01* X24601Y37882D01* X24593Y37878D01* X24586Y37872D01* X24580Y37865D01* X24576Y37858D01* X24573Y37850D01* X24571Y37841D01* X24571Y37833D01* X24572Y37824D01* X24575Y37816D01* X24579Y37808D01* X24585Y37801D01* X24592Y37796D01* X24599Y37791D01* X24607Y37788D01* X24633Y37779D01* X24658Y37768D01* X24681Y37755D01* X24704Y37740D01* X24724Y37724D01* Y37276D01* X24708Y37262D01* X24686Y37247D01* X24662Y37233D01* X24638Y37222D01* X24612Y37213D01* X24604Y37209D01* X24597Y37205D01* X24590Y37199D01* X24585Y37192D01* X24581Y37184D01* X24578Y37176D01* X24577Y37167D01* X24577Y37159D01* X24579Y37150D01* X24582Y37142D01* X24587Y37135D01* X24593Y37128D01* X24600Y37123D01* X24607Y37119D01* X24616Y37116D01* X24624Y37115D01* X24633Y37115D01* X24641Y37117D01* X24676Y37129D01* X24708Y37144D01* X24724Y37153D01* Y35857D01* X24722Y35858D01* X24689Y35873D01* X24655Y35884D01* X24646Y35886D01* X24637Y35886D01* X24629Y35885D01* X24621Y35882D01* X24613Y35878D01* X24606Y35872D01* X24600Y35865D01* X24596Y35858D01* X24593Y35850D01* X24591Y35841D01* X24591Y35833D01* X24592Y35824D01* X24595Y35816D01* X24599Y35808D01* X24605Y35801D01* X24612Y35796D01* X24619Y35791D01* X24627Y35788D01* X24653Y35779D01* X24678Y35768D01* X24701Y35755D01* X24724Y35740D01* Y35259D01* X24706Y35247D01* X24682Y35233D01* X24658Y35222D01* X24632Y35213D01* X24624Y35209D01* X24617Y35205D01* X24610Y35199D01* X24605Y35192D01* X24601Y35184D01* X24598Y35176D01* X24597Y35167D01* X24597Y35159D01* X24599Y35150D01* X24602Y35142D01* X24607Y35135D01* X24613Y35128D01* X24620Y35123D01* X24627Y35119D01* X24636Y35116D01* X24644Y35115D01* X24653Y35115D01* X24661Y35117D01* X24696Y35129D01* X24724Y35142D01* Y33866D01* X24709Y33873D01* X24675Y33884D01* X24666Y33886D01* X24657Y33886D01* X24649Y33885D01* X24641Y33882D01* X24633Y33878D01* X24626Y33872D01* X24620Y33865D01* X24616Y33858D01* X24613Y33850D01* X24611Y33841D01* X24611Y33833D01* X24612Y33824D01* X24615Y33816D01* X24619Y33808D01* X24625Y33801D01* X24632Y33796D01* X24639Y33791D01* X24647Y33788D01* X24673Y33779D01* X24698Y33768D01* X24721Y33755D01* X24724Y33754D01* Y33246D01* X24702Y33233D01* X24678Y33222D01* X24652Y33213D01* X24644Y33209D01* X24637Y33205D01* X24630Y33199D01* X24625Y33192D01* X24621Y33184D01* X24618Y33176D01* X24617Y33167D01* X24617Y33159D01* X24619Y33150D01* X24622Y33142D01* X24627Y33135D01* X24633Y33128D01* X24640Y33123D01* X24647Y33119D01* X24656Y33116D01* X24664Y33115D01* X24673Y33115D01* X24681Y33117D01* X24716Y33129D01* X24724Y33133D01* Y31874D01* X24695Y31884D01* X24686Y31886D01* X24677Y31886D01* X24669Y31885D01* X24661Y31882D01* X24653Y31878D01* X24646Y31872D01* X24640Y31865D01* X24636Y31858D01* X24633Y31850D01* X24631Y31841D01* X24631Y31833D01* X24632Y31824D01* X24635Y31816D01* X24639Y31808D01* X24645Y31801D01* X24652Y31796D01* X24659Y31791D01* X24667Y31788D01* X24693Y31779D01* X24718Y31768D01* X24724Y31765D01* Y31234D01* X24722Y31233D01* X24698Y31222D01* X24672Y31213D01* X24664Y31209D01* X24657Y31205D01* X24650Y31199D01* X24645Y31192D01* X24641Y31184D01* X24638Y31176D01* X24637Y31167D01* X24637Y31159D01* X24639Y31150D01* X24642Y31142D01* X24647Y31135D01* X24653Y31128D01* X24660Y31123D01* X24667Y31119D01* X24676Y31116D01* X24684Y31115D01* X24693Y31115D01* X24701Y31117D01* X24724Y31125D01* Y29881D01* X24715Y29884D01* X24706Y29886D01* X24697Y29886D01* X24689Y29885D01* X24681Y29882D01* X24673Y29878D01* X24666Y29872D01* X24660Y29865D01* X24656Y29858D01* X24653Y29850D01* X24651Y29841D01* X24651Y29833D01* X24652Y29824D01* X24655Y29816D01* X24659Y29808D01* X24665Y29801D01* X24672Y29796D01* X24679Y29791D01* X24687Y29788D01* X24713Y29779D01* X24724Y29774D01* Y29225D01* X24718Y29222D01* X24692Y29213D01* X24684Y29209D01* X24677Y29205D01* X24670Y29199D01* X24665Y29192D01* X24661Y29184D01* X24658Y29176D01* X24657Y29167D01* X24657Y29159D01* X24659Y29150D01* X24662Y29142D01* X24667Y29135D01* X24673Y29128D01* X24680Y29123D01* X24687Y29119D01* X24696Y29116D01* X24704Y29115D01* X24713Y29115D01* X24721Y29117D01* X24724Y29118D01* Y27886D01* X24717Y27886D01* X24709Y27885D01* X24701Y27882D01* X24693Y27878D01* X24686Y27872D01* X24680Y27865D01* X24676Y27858D01* X24673Y27850D01* X24671Y27841D01* X24671Y27833D01* X24672Y27824D01* X24675Y27816D01* X24679Y27808D01* X24685Y27801D01* X24692Y27796D01* X24699Y27791D01* X24707Y27788D01* X24724Y27782D01* Y27217D01* X24712Y27213D01* X24704Y27209D01* X24697Y27205D01* X24690Y27199D01* X24685Y27192D01* X24681Y27184D01* X24678Y27176D01* X24677Y27167D01* X24677Y27159D01* X24679Y27150D01* X24682Y27142D01* X24687Y27135D01* X24693Y27128D01* X24700Y27123D01* X24707Y27119D01* X24716Y27116D01* X24724Y27115D01* Y25883D01* X24721Y25882D01* X24713Y25878D01* X24706Y25872D01* X24700Y25865D01* X24696Y25858D01* X24693Y25850D01* X24691Y25841D01* X24691Y25833D01* X24692Y25824D01* X24695Y25816D01* X24699Y25808D01* X24705Y25801D01* X24712Y25796D01* X24719Y25791D01* X24724Y25789D01* Y25209D01* X24717Y25205D01* X24710Y25199D01* X24705Y25192D01* X24701Y25184D01* X24698Y25176D01* X24697Y25167D01* X24697Y25159D01* X24699Y25150D01* X24702Y25142D01* X24707Y25135D01* X24713Y25128D01* X24720Y25123D01* X24724Y25121D01* Y23870D01* X24720Y23865D01* X24716Y23858D01* X24713Y23850D01* X24711Y23841D01* X24711Y23833D01* X24712Y23824D01* X24715Y23816D01* X24719Y23808D01* X24724Y23802D01* Y23190D01* X24721Y23184D01* X24718Y23176D01* X24717Y23167D01* X24717Y23159D01* X24719Y23150D01* X24722Y23142D01* X24724Y23140D01* Y11861D01* X24722Y11864D01* X24716Y11871D01* X24709Y11876D01* X24702Y11880D01* X24693Y11883D01* X24685Y11884D01* X24676Y11884D01* X24668Y11882D01* X24633Y11870D01* X24601Y11855D01* X24569Y11837D01* X24540Y11816D01* X24512Y11793D01* X24487Y11767D01* X24465Y11740D01* Y13235D01* X24472Y13227D01* X24497Y13202D01* X24525Y13179D01* X24555Y13159D01* X24587Y13141D01* X24620Y13127D01* X24654Y13115D01* X24663Y13113D01* X24672Y13113D01* X24680Y13115D01* X24688Y13117D01* X24696Y13122D01* X24703Y13127D01* X24709Y13134D01* X24713Y13141D01* X24716Y13149D01* X24718Y13158D01* X24718Y13167D01* X24717Y13175D01* X24714Y13183D01* X24710Y13191D01* X24704Y13198D01* X24697Y13204D01* X24690Y13208D01* X24682Y13211D01* X24656Y13220D01* X24631Y13231D01* X24608Y13244D01* X24585Y13259D01* X24564Y13276D01* X24545Y13295D01* X24527Y13316D01* X24512Y13338D01* X24498Y13362D01* X24487Y13386D01* X24478Y13412D01* X24474Y13420D01* X24470Y13427D01* X24465Y13432D01* Y13563D01* X24469Y13567D01* X24473Y13574D01* X24476Y13582D01* X24485Y13608D01* X24496Y13633D01* X24509Y13657D01* X24524Y13679D01* X24541Y13700D01* X24560Y13719D01* X24581Y13737D01* X24603Y13752D01* X24627Y13766D01* X24651Y13777D01* X24677Y13786D01* X24685Y13790D01* X24692Y13794D01* X24699Y13800D01* X24704Y13807D01* X24708Y13815D01* X24711Y13823D01* X24712Y13832D01* X24712Y13840D01* X24710Y13849D01* X24707Y13857D01* X24702Y13864D01* X24696Y13871D01* X24689Y13876D01* X24682Y13880D01* X24673Y13883D01* X24665Y13884D01* X24656Y13884D01* X24648Y13882D01* X24613Y13870D01* X24581Y13855D01* X24549Y13837D01* X24520Y13816D01* X24492Y13793D01* X24467Y13767D01* X24465Y13765D01* Y15214D01* X24477Y15202D01* X24505Y15179D01* X24535Y15159D01* X24567Y15141D01* X24600Y15127D01* X24634Y15115D01* X24643Y15113D01* X24652Y15113D01* X24660Y15115D01* X24668Y15117D01* X24676Y15122D01* X24683Y15127D01* X24689Y15134D01* X24693Y15141D01* X24696Y15149D01* X24698Y15158D01* X24698Y15167D01* X24697Y15175D01* X24694Y15183D01* X24690Y15191D01* X24684Y15198D01* X24677Y15204D01* X24670Y15208D01* X24662Y15211D01* X24636Y15220D01* X24611Y15231D01* X24588Y15244D01* X24565Y15259D01* X24544Y15276D01* X24525Y15295D01* X24507Y15316D01* X24492Y15338D01* X24478Y15362D01* X24467Y15386D01* X24465Y15391D01* Y15609D01* X24476Y15633D01* X24489Y15657D01* X24504Y15679D01* X24521Y15700D01* X24540Y15719D01* X24561Y15737D01* X24583Y15752D01* X24607Y15766D01* X24631Y15777D01* X24657Y15786D01* X24665Y15790D01* X24672Y15794D01* X24679Y15800D01* X24684Y15807D01* X24688Y15815D01* X24691Y15823D01* X24692Y15832D01* X24692Y15840D01* X24690Y15849D01* X24687Y15857D01* X24682Y15864D01* X24676Y15871D01* X24669Y15876D01* X24662Y15880D01* X24653Y15883D01* X24645Y15884D01* X24636Y15884D01* X24628Y15882D01* X24593Y15870D01* X24561Y15855D01* X24529Y15837D01* X24500Y15816D01* X24472Y15793D01* X24465Y15785D01* Y17196D01* X24485Y17179D01* X24515Y17159D01* X24547Y17141D01* X24580Y17127D01* X24614Y17115D01* X24623Y17113D01* X24632Y17113D01* X24640Y17115D01* X24648Y17117D01* X24656Y17122D01* X24663Y17127D01* X24669Y17134D01* X24673Y17141D01* X24676Y17149D01* X24678Y17158D01* X24678Y17167D01* X24677Y17175D01* X24674Y17183D01* X24670Y17191D01* X24664Y17198D01* X24657Y17204D01* X24650Y17208D01* X24642Y17211D01* X24616Y17220D01* X24591Y17231D01* X24568Y17244D01* X24545Y17259D01* X24524Y17276D01* X24505Y17295D01* X24487Y17316D01* X24472Y17338D01* X24465Y17349D01* Y17650D01* X24469Y17657D01* X24484Y17679D01* X24501Y17700D01* X24520Y17719D01* X24541Y17737D01* X24563Y17752D01* X24587Y17766D01* X24611Y17777D01* X24637Y17786D01* X24645Y17790D01* X24652Y17794D01* X24659Y17800D01* X24664Y17807D01* X24668Y17815D01* X24671Y17823D01* X24672Y17832D01* X24672Y17840D01* X24670Y17849D01* X24667Y17857D01* X24662Y17864D01* X24656Y17871D01* X24649Y17876D01* X24642Y17880D01* X24633Y17883D01* X24625Y17884D01* X24616Y17884D01* X24608Y17882D01* X24573Y17870D01* X24541Y17855D01* X24509Y17837D01* X24480Y17816D01* X24465Y17804D01* Y19179D01* X24465Y19179D01* X24495Y19159D01* X24527Y19141D01* X24560Y19127D01* X24594Y19115D01* X24603Y19113D01* X24612Y19113D01* X24620Y19115D01* X24628Y19117D01* X24636Y19122D01* X24643Y19127D01* X24649Y19134D01* X24653Y19141D01* X24656Y19149D01* X24658Y19158D01* X24658Y19167D01* X24657Y19175D01* X24654Y19183D01* X24650Y19191D01* X24644Y19198D01* X24637Y19204D01* X24630Y19208D01* X24622Y19211D01* X24596Y19220D01* X24571Y19231D01* X24548Y19244D01* X24525Y19259D01* X24504Y19276D01* X24485Y19295D01* X24467Y19316D01* X24465Y19319D01* Y19680D01* X24481Y19700D01* X24500Y19719D01* X24521Y19737D01* X24543Y19752D01* X24567Y19766D01* X24591Y19777D01* X24617Y19786D01* X24625Y19790D01* X24632Y19794D01* X24639Y19800D01* X24644Y19807D01* X24648Y19815D01* X24651Y19823D01* X24652Y19832D01* X24652Y19840D01* X24650Y19849D01* X24647Y19857D01* X24642Y19864D01* X24636Y19871D01* X24629Y19876D01* X24622Y19880D01* X24613Y19883D01* X24605Y19884D01* X24596Y19884D01* X24588Y19882D01* X24553Y19870D01* X24521Y19855D01* X24489Y19837D01* X24465Y19820D01* Y21166D01* X24475Y21159D01* X24507Y21141D01* X24540Y21127D01* X24574Y21115D01* X24583Y21113D01* X24592Y21113D01* X24600Y21115D01* X24608Y21117D01* X24616Y21122D01* X24623Y21127D01* X24629Y21134D01* X24633Y21141D01* X24636Y21149D01* X24638Y21158D01* X24638Y21167D01* X24637Y21175D01* X24634Y21183D01* X24630Y21191D01* X24624Y21198D01* X24617Y21204D01* X24610Y21208D01* X24602Y21211D01* X24576Y21220D01* X24551Y21231D01* X24528Y21244D01* X24505Y21259D01* X24484Y21276D01* X24465Y21295D01* Y21704D01* X24480Y21719D01* X24501Y21737D01* X24523Y21752D01* X24547Y21766D01* X24571Y21777D01* X24597Y21786D01* X24605Y21790D01* X24612Y21794D01* X24619Y21800D01* X24624Y21807D01* X24628Y21815D01* X24631Y21823D01* X24632Y21832D01* X24632Y21840D01* X24630Y21849D01* X24627Y21857D01* X24622Y21864D01* X24616Y21871D01* X24609Y21876D01* X24602Y21880D01* X24593Y21883D01* X24585Y21884D01* X24576Y21884D01* X24568Y21882D01* X24533Y21870D01* X24501Y21855D01* X24469Y21837D01* X24465Y21834D01* Y23153D01* X24487Y23141D01* X24520Y23127D01* X24554Y23115D01* X24563Y23113D01* X24572Y23113D01* X24580Y23115D01* X24588Y23117D01* X24596Y23122D01* X24603Y23127D01* X24609Y23134D01* X24613Y23141D01* X24616Y23149D01* X24618Y23158D01* X24618Y23167D01* X24617Y23175D01* X24614Y23183D01* X24610Y23191D01* X24604Y23198D01* X24597Y23204D01* X24590Y23208D01* X24582Y23211D01* X24556Y23220D01* X24531Y23231D01* X24508Y23244D01* X24485Y23259D01* X24465Y23276D01* Y23723D01* X24481Y23737D01* X24503Y23752D01* X24527Y23766D01* X24551Y23777D01* X24577Y23786D01* X24585Y23790D01* X24592Y23794D01* X24599Y23800D01* X24604Y23807D01* X24608Y23815D01* X24611Y23823D01* X24612Y23832D01* X24612Y23840D01* X24610Y23849D01* X24607Y23857D01* X24602Y23864D01* X24596Y23871D01* X24589Y23876D01* X24582Y23880D01* X24573Y23883D01* X24565Y23884D01* X24556Y23884D01* X24548Y23882D01* X24513Y23870D01* X24481Y23855D01* X24465Y23846D01* Y25142D01* X24467Y25141D01* X24500Y25127D01* X24534Y25115D01* X24543Y25113D01* X24552Y25113D01* X24560Y25115D01* X24568Y25117D01* X24576Y25122D01* X24583Y25127D01* X24589Y25134D01* X24593Y25141D01* X24596Y25149D01* X24598Y25158D01* X24598Y25167D01* X24597Y25175D01* X24594Y25183D01* X24590Y25191D01* X24584Y25198D01* X24577Y25204D01* X24570Y25208D01* X24562Y25211D01* X24536Y25220D01* X24511Y25231D01* X24488Y25244D01* X24465Y25259D01* Y25740D01* X24483Y25752D01* X24507Y25766D01* X24531Y25777D01* X24557Y25786D01* X24565Y25790D01* X24572Y25794D01* X24579Y25800D01* X24584Y25807D01* X24588Y25815D01* X24591Y25823D01* X24592Y25832D01* X24592Y25840D01* X24590Y25849D01* X24587Y25857D01* X24582Y25864D01* X24576Y25871D01* X24569Y25876D01* X24562Y25880D01* X24553Y25883D01* X24545Y25884D01* X24536Y25884D01* X24528Y25882D01* X24493Y25870D01* X24465Y25857D01* Y27133D01* X24480Y27127D01* X24514Y27115D01* X24523Y27113D01* X24532Y27113D01* X24540Y27115D01* X24548Y27117D01* X24556Y27122D01* X24563Y27127D01* X24569Y27134D01* X24573Y27141D01* X24576Y27149D01* X24578Y27158D01* X24578Y27167D01* X24577Y27175D01* X24574Y27183D01* X24570Y27191D01* X24564Y27198D01* X24557Y27204D01* X24550Y27208D01* X24542Y27211D01* X24516Y27220D01* X24491Y27231D01* X24468Y27244D01* X24465Y27246D01* Y27754D01* X24487Y27766D01* X24511Y27777D01* X24537Y27786D01* X24545Y27790D01* X24552Y27794D01* X24559Y27800D01* X24564Y27807D01* X24568Y27815D01* X24571Y27823D01* X24572Y27832D01* X24572Y27840D01* X24570Y27849D01* X24567Y27857D01* X24562Y27864D01* X24556Y27871D01* X24549Y27876D01* X24542Y27880D01* X24533Y27883D01* X24525Y27884D01* X24516Y27884D01* X24508Y27882D01* X24473Y27870D01* X24465Y27866D01* Y29125D01* X24494Y29115D01* X24503Y29113D01* X24512Y29113D01* X24520Y29115D01* X24528Y29117D01* X24536Y29122D01* X24543Y29127D01* X24549Y29134D01* X24553Y29141D01* X24556Y29149D01* X24558Y29158D01* X24558Y29167D01* X24557Y29175D01* X24554Y29183D01* X24550Y29191D01* X24544Y29198D01* X24537Y29204D01* X24530Y29208D01* X24522Y29211D01* X24496Y29220D01* X24471Y29231D01* X24465Y29234D01* Y29765D01* X24467Y29766D01* X24491Y29777D01* X24517Y29786D01* X24525Y29790D01* X24532Y29794D01* X24539Y29800D01* X24544Y29807D01* X24548Y29815D01* X24551Y29823D01* X24552Y29832D01* X24552Y29840D01* X24550Y29849D01* X24547Y29857D01* X24542Y29864D01* X24536Y29871D01* X24529Y29876D01* X24522Y29880D01* X24513Y29883D01* X24505Y29884D01* X24496Y29884D01* X24488Y29882D01* X24465Y29874D01* Y31118D01* X24474Y31115D01* X24483Y31113D01* X24492Y31113D01* X24500Y31115D01* X24508Y31117D01* X24516Y31122D01* X24523Y31127D01* X24529Y31134D01* X24533Y31141D01* X24536Y31149D01* X24538Y31158D01* X24538Y31167D01* X24537Y31175D01* X24534Y31183D01* X24530Y31191D01* X24524Y31198D01* X24517Y31204D01* X24510Y31208D01* X24502Y31211D01* X24476Y31220D01* X24465Y31225D01* Y31775D01* X24471Y31777D01* X24497Y31786D01* X24505Y31790D01* X24512Y31794D01* X24519Y31800D01* X24524Y31807D01* X24528Y31815D01* X24531Y31823D01* X24532Y31832D01* X24532Y31840D01* X24530Y31849D01* X24527Y31857D01* X24522Y31864D01* X24516Y31871D01* X24509Y31876D01* X24502Y31880D01* X24493Y31883D01* X24485Y31884D01* X24476Y31884D01* X24468Y31882D01* X24465Y31881D01* Y33113D01* X24472Y33113D01* X24480Y33115D01* X24488Y33117D01* X24496Y33122D01* X24503Y33127D01* X24509Y33134D01* X24513Y33141D01* X24516Y33149D01* X24518Y33158D01* X24518Y33167D01* X24517Y33175D01* X24514Y33183D01* X24510Y33191D01* X24504Y33198D01* X24497Y33204D01* X24490Y33208D01* X24482Y33211D01* X24465Y33217D01* Y33782D01* X24477Y33786D01* X24485Y33790D01* X24492Y33794D01* X24499Y33800D01* X24504Y33807D01* X24508Y33815D01* X24511Y33823D01* X24512Y33832D01* X24512Y33840D01* X24510Y33849D01* X24507Y33857D01* X24502Y33864D01* X24496Y33871D01* X24489Y33876D01* X24482Y33880D01* X24473Y33883D01* X24465Y33884D01* Y35116D01* X24468Y35117D01* X24476Y35122D01* X24483Y35127D01* X24489Y35134D01* X24493Y35141D01* X24496Y35149D01* X24498Y35158D01* X24498Y35167D01* X24497Y35175D01* X24494Y35183D01* X24490Y35191D01* X24484Y35198D01* X24477Y35204D01* X24470Y35208D01* X24465Y35210D01* Y35790D01* X24472Y35794D01* X24479Y35800D01* X24484Y35807D01* X24488Y35815D01* X24491Y35823D01* X24492Y35832D01* X24492Y35840D01* X24490Y35849D01* X24487Y35857D01* X24482Y35864D01* X24476Y35871D01* X24469Y35876D01* X24465Y35878D01* Y37130D01* X24469Y37134D01* X24473Y37141D01* X24476Y37149D01* X24478Y37158D01* X24478Y37167D01* X24477Y37175D01* X24474Y37183D01* X24470Y37191D01* X24465Y37197D01* Y37809D01* X24468Y37815D01* X24471Y37823D01* X24472Y37832D01* X24472Y37840D01* X24470Y37849D01* X24467Y37857D01* X24465Y37859D01* Y40000D01* G37* G36* Y11549D02*X24468Y11550D01* X24476Y11555D01* X24483Y11560D01* X24489Y11567D01* X24493Y11574D01* X24496Y11582D01* X24505Y11608D01* X24516Y11633D01* X24529Y11657D01* X24544Y11679D01* X24561Y11700D01* X24580Y11719D01* X24601Y11737D01* X24623Y11752D01* X24647Y11766D01* X24671Y11777D01* X24697Y11786D01* X24705Y11790D01* X24712Y11794D01* X24719Y11800D01* X24724Y11807D01* Y11198D01* X24717Y11204D01* X24710Y11208D01* X24702Y11211D01* X24676Y11220D01* X24651Y11231D01* X24628Y11244D01* X24605Y11259D01* X24584Y11276D01* X24565Y11295D01* X24547Y11316D01* X24532Y11338D01* X24518Y11362D01* X24507Y11386D01* X24498Y11412D01* X24494Y11420D01* X24490Y11427D01* X24484Y11434D01* X24477Y11439D01* X24469Y11443D01* X24465Y11445D01* Y11549D01* G37* G36* Y11259D02*X24468Y11255D01* X24492Y11227D01* X24517Y11202D01* X24545Y11179D01* X24575Y11159D01* X24607Y11141D01* X24640Y11127D01* X24674Y11115D01* X24683Y11113D01* X24692Y11113D01* X24700Y11115D01* X24708Y11117D01* X24716Y11122D01* X24723Y11127D01* X24724Y11128D01* Y9879D01* X24722Y9880D01* X24713Y9883D01* X24705Y9884D01* X24696Y9884D01* X24688Y9882D01* X24653Y9870D01* X24621Y9855D01* X24589Y9837D01* X24560Y9816D01* X24532Y9793D01* X24507Y9767D01* X24484Y9739D01* X24465Y9711D01* Y11259D01* G37* G36* Y9546D02*X24472Y9546D01* X24480Y9547D01* X24488Y9550D01* X24496Y9555D01* X24503Y9560D01* X24509Y9567D01* X24513Y9574D01* X24516Y9582D01* X24525Y9608D01* X24536Y9633D01* X24549Y9657D01* X24564Y9679D01* X24581Y9700D01* X24600Y9719D01* X24621Y9737D01* X24643Y9752D01* X24667Y9766D01* X24691Y9777D01* X24717Y9786D01* X24724Y9789D01* Y9210D01* X24722Y9211D01* X24696Y9220D01* X24671Y9231D01* X24648Y9244D01* X24625Y9259D01* X24604Y9276D01* X24585Y9295D01* X24567Y9316D01* X24552Y9338D01* X24538Y9362D01* X24527Y9386D01* X24518Y9412D01* X24514Y9420D01* X24510Y9427D01* X24504Y9434D01* X24497Y9439D01* X24489Y9443D01* X24481Y9446D01* X24472Y9447D01* X24465Y9447D01* Y9546D01* G37* G36* Y9288D02*X24467Y9284D01* X24488Y9255D01* X24512Y9227D01* X24537Y9202D01* X24565Y9179D01* X24595Y9159D01* X24627Y9141D01* X24660Y9127D01* X24694Y9115D01* X24703Y9113D01* X24712Y9113D01* X24720Y9115D01* X24724Y9116D01* Y7884D01* X24716Y7884D01* X24708Y7882D01* X24673Y7870D01* X24641Y7855D01* X24609Y7837D01* X24580Y7816D01* X24552Y7793D01* X24527Y7767D01* X24504Y7739D01* X24484Y7709D01* X24466Y7677D01* X24465Y7675D01* Y9288D01* G37* G36* Y7552D02*X24466Y7551D01* X24474Y7548D01* X24483Y7546D01* X24492Y7546D01* X24500Y7547D01* X24508Y7550D01* X24516Y7555D01* X24523Y7560D01* X24529Y7567D01* X24533Y7574D01* X24536Y7582D01* X24545Y7608D01* X24556Y7633D01* X24569Y7657D01* X24584Y7679D01* X24601Y7700D01* X24620Y7719D01* X24641Y7737D01* X24663Y7752D01* X24687Y7766D01* X24711Y7777D01* X24724Y7782D01* Y7217D01* X24716Y7220D01* X24691Y7231D01* X24668Y7244D01* X24645Y7259D01* X24624Y7276D01* X24605Y7295D01* X24587Y7316D01* X24572Y7338D01* X24558Y7362D01* X24547Y7386D01* X24538Y7412D01* X24534Y7420D01* X24530Y7427D01* X24524Y7434D01* X24517Y7439D01* X24509Y7443D01* X24501Y7446D01* X24492Y7447D01* X24484Y7447D01* X24475Y7445D01* X24467Y7442D01* X24465Y7441D01* Y7552D01* G37* G36* Y7325D02*X24469Y7316D01* X24487Y7284D01* X24508Y7255D01* X24532Y7227D01* X24557Y7202D01* X24585Y7179D01* X24615Y7159D01* X24647Y7141D01* X24680Y7127D01* X24714Y7115D01* X24723Y7113D01* X24724D01* Y5881D01* X24693Y5870D01* X24661Y5855D01* X24629Y5837D01* X24600Y5816D01* X24572Y5793D01* X24547Y5767D01* X24524Y5739D01* X24504Y5709D01* X24486Y5677D01* X24472Y5644D01* X24465Y5625D01* Y7325D01* G37* G36* Y5571D02*X24467Y5568D01* X24472Y5561D01* X24479Y5556D01* X24486Y5551D01* X24494Y5548D01* X24503Y5546D01* X24512Y5546D01* X24520Y5547D01* X24528Y5550D01* X24536Y5555D01* X24543Y5560D01* X24549Y5567D01* X24553Y5574D01* X24556Y5582D01* X24565Y5608D01* X24576Y5633D01* X24589Y5657D01* X24604Y5679D01* X24621Y5700D01* X24640Y5719D01* X24661Y5737D01* X24683Y5752D01* X24707Y5766D01* X24724Y5774D01* Y5225D01* X24711Y5231D01* X24688Y5244D01* X24665Y5259D01* X24644Y5276D01* X24625Y5295D01* X24607Y5316D01* X24592Y5338D01* X24578Y5362D01* X24567Y5386D01* X24558Y5412D01* X24554Y5420D01* X24550Y5427D01* X24544Y5434D01* X24537Y5439D01* X24529Y5443D01* X24521Y5446D01* X24512Y5447D01* X24504Y5447D01* X24495Y5445D01* X24487Y5442D01* X24480Y5437D01* X24473Y5431D01* X24468Y5424D01* X24465Y5419D01* Y5571D01* G37* G36* Y5374D02*X24474Y5349D01* X24489Y5316D01* X24507Y5284D01* X24528Y5255D01* X24552Y5227D01* X24577Y5202D01* X24605Y5179D01* X24635Y5159D01* X24667Y5141D01* X24700Y5127D01* X24724Y5119D01* Y3874D01* X24713Y3870D01* X24681Y3855D01* X24649Y3837D01* X24620Y3816D01* X24592Y3793D01* X24567Y3767D01* X24544Y3739D01* X24524Y3709D01* X24506Y3677D01* X24492Y3644D01* X24480Y3610D01* X24478Y3601D01* X24478Y3593D01* X24479Y3584D01* X24482Y3576D01* X24487Y3568D01* X24492Y3561D01* X24499Y3556D01* X24506Y3551D01* X24514Y3548D01* X24523Y3546D01* X24532Y3546D01* X24540Y3547D01* X24548Y3550D01* X24556Y3555D01* X24563Y3560D01* X24569Y3567D01* X24573Y3574D01* X24576Y3582D01* X24585Y3608D01* X24596Y3633D01* X24609Y3657D01* X24624Y3679D01* X24641Y3700D01* X24660Y3719D01* X24681Y3737D01* X24703Y3752D01* X24724Y3764D01* Y3235D01* X24708Y3244D01* X24685Y3259D01* X24664Y3276D01* X24645Y3295D01* X24627Y3316D01* X24612Y3338D01* X24598Y3362D01* X24587Y3386D01* X24578Y3412D01* X24574Y3420D01* X24570Y3427D01* X24564Y3434D01* X24557Y3439D01* X24549Y3443D01* X24541Y3446D01* X24532Y3447D01* X24524Y3447D01* X24515Y3445D01* X24507Y3442D01* X24500Y3437D01* X24493Y3431D01* X24488Y3424D01* X24484Y3417D01* X24481Y3409D01* X24480Y3400D01* X24480Y3391D01* X24482Y3383D01* X24494Y3349D01* X24509Y3316D01* X24527Y3284D01* X24548Y3255D01* X24572Y3227D01* X24597Y3202D01* X24625Y3179D01* X24655Y3159D01* X24687Y3141D01* X24720Y3127D01* X24724Y3125D01* Y1866D01* X24701Y1855D01* X24669Y1837D01* X24640Y1816D01* X24612Y1793D01* X24587Y1767D01* X24564Y1739D01* X24544Y1709D01* X24526Y1677D01* X24512Y1644D01* X24500Y1610D01* X24498Y1601D01* X24498Y1593D01* X24499Y1584D01* X24502Y1576D01* X24507Y1568D01* X24512Y1561D01* X24519Y1556D01* X24526Y1551D01* X24534Y1548D01* X24543Y1546D01* X24552Y1546D01* X24560Y1547D01* X24568Y1550D01* X24576Y1555D01* X24583Y1560D01* X24589Y1567D01* X24593Y1574D01* X24596Y1582D01* X24605Y1608D01* X24616Y1633D01* X24629Y1657D01* X24644Y1679D01* X24661Y1700D01* X24680Y1719D01* X24701Y1737D01* X24723Y1752D01* X24724Y1753D01* Y1246D01* X24705Y1259D01* X24684Y1276D01* X24665Y1295D01* X24647Y1316D01* X24632Y1338D01* X24618Y1362D01* X24607Y1386D01* X24598Y1412D01* X24594Y1420D01* X24590Y1427D01* X24584Y1434D01* X24577Y1439D01* X24569Y1443D01* X24561Y1446D01* X24552Y1447D01* X24544Y1447D01* X24535Y1445D01* X24527Y1442D01* X24520Y1437D01* X24513Y1431D01* X24508Y1424D01* X24504Y1417D01* X24501Y1409D01* X24500Y1400D01* X24500Y1391D01* X24502Y1383D01* X24514Y1349D01* X24529Y1316D01* X24547Y1284D01* X24568Y1255D01* X24592Y1227D01* X24617Y1202D01* X24645Y1179D01* X24675Y1159D01* X24707Y1141D01* X24724Y1134D01* Y0D01* X24465D01* Y5374D01* G37* G36* X24724Y40000D02*X24904D01* Y37625D01* X24895Y37651D01* X24880Y37683D01* X24862Y37715D01* X24841Y37744D01* X24817Y37772D01* X24792Y37797D01* X24764Y37820D01* X24734Y37840D01* X24724Y37846D01* Y39165D01* X24749Y39183D01* X24777Y39207D01* X24802Y39232D01* X24825Y39260D01* X24845Y39290D01* X24863Y39322D01* X24877Y39355D01* X24889Y39389D01* X24891Y39398D01* X24891Y39407D01* X24890Y39415D01* X24887Y39423D01* X24882Y39431D01* X24877Y39438D01* X24870Y39444D01* X24863Y39448D01* X24855Y39451D01* X24846Y39453D01* X24837Y39453D01* X24829Y39452D01* X24821Y39449D01* X24813Y39445D01* X24806Y39439D01* X24800Y39433D01* X24796Y39425D01* X24793Y39417D01* X24784Y39391D01* X24773Y39366D01* X24760Y39343D01* X24745Y39320D01* X24728Y39299D01* X24724Y39295D01* Y39704D01* X24724Y39704D01* X24742Y39683D01* X24757Y39661D01* X24771Y39637D01* X24782Y39613D01* X24791Y39587D01* X24795Y39579D01* X24799Y39572D01* X24805Y39565D01* X24812Y39560D01* X24820Y39556D01* X24828Y39553D01* X24837Y39552D01* X24845Y39552D01* X24854Y39554D01* X24862Y39557D01* X24869Y39562D01* X24876Y39568D01* X24881Y39575D01* X24885Y39582D01* X24888Y39591D01* X24889Y39599D01* X24889Y39608D01* X24887Y39617D01* X24875Y39651D01* X24860Y39683D01* X24842Y39715D01* X24821Y39744D01* X24797Y39772D01* X24772Y39797D01* X24744Y39820D01* X24724Y39834D01* Y40000D01* G37* G36* X24904Y0D02*X24724D01* Y1134D01* X24740Y1127D01* X24774Y1115D01* X24783Y1113D01* X24792Y1113D01* X24800Y1115D01* X24808Y1117D01* X24816Y1122D01* X24823Y1127D01* X24829Y1134D01* X24833Y1141D01* X24836Y1149D01* X24838Y1158D01* X24838Y1167D01* X24837Y1175D01* X24834Y1183D01* X24830Y1191D01* X24824Y1198D01* X24817Y1204D01* X24810Y1208D01* X24802Y1211D01* X24776Y1220D01* X24751Y1231D01* X24728Y1244D01* X24724Y1246D01* Y1753D01* X24747Y1766D01* X24771Y1777D01* X24797Y1786D01* X24805Y1790D01* X24812Y1794D01* X24819Y1800D01* X24824Y1807D01* X24828Y1815D01* X24831Y1823D01* X24832Y1832D01* X24832Y1840D01* X24830Y1849D01* X24827Y1857D01* X24822Y1864D01* X24816Y1871D01* X24809Y1876D01* X24802Y1880D01* X24793Y1883D01* X24785Y1884D01* X24776Y1884D01* X24768Y1882D01* X24733Y1870D01* X24724Y1866D01* Y3125D01* X24754Y3115D01* X24763Y3113D01* X24772Y3113D01* X24780Y3115D01* X24788Y3117D01* X24796Y3122D01* X24803Y3127D01* X24809Y3134D01* X24813Y3141D01* X24816Y3149D01* X24818Y3158D01* X24818Y3167D01* X24817Y3175D01* X24814Y3183D01* X24810Y3191D01* X24804Y3198D01* X24797Y3204D01* X24790Y3208D01* X24782Y3211D01* X24756Y3220D01* X24731Y3231D01* X24724Y3235D01* Y3764D01* X24727Y3766D01* X24751Y3777D01* X24777Y3786D01* X24785Y3790D01* X24792Y3794D01* X24799Y3800D01* X24804Y3807D01* X24808Y3815D01* X24811Y3823D01* X24812Y3832D01* X24812Y3840D01* X24810Y3849D01* X24807Y3857D01* X24802Y3864D01* X24796Y3871D01* X24789Y3876D01* X24782Y3880D01* X24773Y3883D01* X24765Y3884D01* X24756Y3884D01* X24748Y3882D01* X24724Y3874D01* Y5119D01* X24734Y5115D01* X24743Y5113D01* X24752Y5113D01* X24760Y5115D01* X24768Y5117D01* X24776Y5122D01* X24783Y5127D01* X24789Y5134D01* X24793Y5141D01* X24796Y5149D01* X24798Y5158D01* X24798Y5167D01* X24797Y5175D01* X24794Y5183D01* X24790Y5191D01* X24784Y5198D01* X24777Y5204D01* X24770Y5208D01* X24762Y5211D01* X24736Y5220D01* X24724Y5225D01* Y5774D01* X24731Y5777D01* X24757Y5786D01* X24765Y5790D01* X24772Y5794D01* X24779Y5800D01* X24784Y5807D01* X24788Y5815D01* X24791Y5823D01* X24792Y5832D01* X24792Y5840D01* X24790Y5849D01* X24787Y5857D01* X24782Y5864D01* X24776Y5871D01* X24769Y5876D01* X24762Y5880D01* X24753Y5883D01* X24745Y5884D01* X24736Y5884D01* X24728Y5882D01* X24724Y5881D01* Y7113D01* X24732Y7113D01* X24740Y7115D01* X24748Y7117D01* X24756Y7122D01* X24763Y7127D01* X24769Y7134D01* X24773Y7141D01* X24776Y7149D01* X24778Y7158D01* X24778Y7167D01* X24777Y7175D01* X24774Y7183D01* X24770Y7191D01* X24764Y7198D01* X24757Y7204D01* X24750Y7208D01* X24742Y7211D01* X24724Y7217D01* Y7782D01* X24737Y7786D01* X24745Y7790D01* X24752Y7794D01* X24759Y7800D01* X24764Y7807D01* X24768Y7815D01* X24771Y7823D01* X24772Y7832D01* X24772Y7840D01* X24770Y7849D01* X24767Y7857D01* X24762Y7864D01* X24756Y7871D01* X24749Y7876D01* X24742Y7880D01* X24733Y7883D01* X24725Y7884D01* X24724D01* Y9116D01* X24728Y9117D01* X24736Y9122D01* X24743Y9127D01* X24749Y9134D01* X24753Y9141D01* X24756Y9149D01* X24758Y9158D01* X24758Y9167D01* X24757Y9175D01* X24754Y9183D01* X24750Y9191D01* X24744Y9198D01* X24737Y9204D01* X24730Y9208D01* X24724Y9210D01* Y9789D01* X24725Y9790D01* X24732Y9794D01* X24739Y9800D01* X24744Y9807D01* X24748Y9815D01* X24751Y9823D01* X24752Y9832D01* X24752Y9840D01* X24750Y9849D01* X24747Y9857D01* X24742Y9864D01* X24736Y9871D01* X24729Y9876D01* X24724Y9879D01* Y11128D01* X24729Y11134D01* X24733Y11141D01* X24736Y11149D01* X24738Y11158D01* X24738Y11167D01* X24737Y11175D01* X24734Y11183D01* X24730Y11191D01* X24724Y11198D01* X24724Y11198D01* Y11807D01* X24724Y11807D01* X24728Y11815D01* X24731Y11823D01* X24732Y11832D01* X24732Y11840D01* X24730Y11849D01* X24727Y11857D01* X24724Y11861D01* Y23140D01* X24727Y23135D01* X24733Y23128D01* X24740Y23123D01* X24747Y23119D01* X24756Y23116D01* X24764Y23115D01* X24773Y23115D01* X24781Y23117D01* X24816Y23129D01* X24848Y23144D01* X24880Y23162D01* X24904Y23180D01* Y21834D01* X24894Y21840D01* X24862Y21858D01* X24829Y21873D01* X24795Y21884D01* X24786Y21886D01* X24777Y21886D01* X24769Y21885D01* X24761Y21882D01* X24753Y21878D01* X24746Y21872D01* X24740Y21865D01* X24736Y21858D01* X24733Y21850D01* X24731Y21841D01* X24731Y21833D01* X24732Y21824D01* X24735Y21816D01* X24739Y21808D01* X24745Y21801D01* X24752Y21796D01* X24759Y21791D01* X24767Y21788D01* X24793Y21779D01* X24818Y21768D01* X24841Y21755D01* X24864Y21740D01* X24885Y21723D01* X24904Y21704D01* Y21295D01* X24889Y21280D01* X24868Y21262D01* X24846Y21247D01* X24822Y21233D01* X24798Y21222D01* X24772Y21213D01* X24764Y21209D01* X24757Y21205D01* X24750Y21199D01* X24745Y21192D01* X24741Y21184D01* X24738Y21176D01* X24737Y21167D01* X24737Y21159D01* X24739Y21150D01* X24742Y21142D01* X24747Y21135D01* X24753Y21128D01* X24760Y21123D01* X24767Y21119D01* X24776Y21116D01* X24784Y21115D01* X24793Y21115D01* X24801Y21117D01* X24836Y21129D01* X24868Y21144D01* X24900Y21162D01* X24904Y21165D01* Y19846D01* X24882Y19858D01* X24849Y19873D01* X24815Y19884D01* X24806Y19886D01* X24797Y19886D01* X24789Y19885D01* X24781Y19882D01* X24773Y19878D01* X24766Y19872D01* X24760Y19865D01* X24756Y19858D01* X24753Y19850D01* X24751Y19841D01* X24751Y19833D01* X24752Y19824D01* X24755Y19816D01* X24759Y19808D01* X24765Y19801D01* X24772Y19796D01* X24779Y19791D01* X24787Y19788D01* X24813Y19779D01* X24838Y19768D01* X24861Y19755D01* X24884Y19740D01* X24904Y19724D01* Y19276D01* X24888Y19262D01* X24866Y19247D01* X24842Y19233D01* X24818Y19222D01* X24792Y19213D01* X24784Y19209D01* X24777Y19205D01* X24770Y19199D01* X24765Y19192D01* X24761Y19184D01* X24758Y19176D01* X24757Y19167D01* X24757Y19159D01* X24759Y19150D01* X24762Y19142D01* X24767Y19135D01* X24773Y19128D01* X24780Y19123D01* X24787Y19119D01* X24796Y19116D01* X24804Y19115D01* X24813Y19115D01* X24821Y19117D01* X24856Y19129D01* X24888Y19144D01* X24904Y19153D01* Y17857D01* X24902Y17858D01* X24869Y17873D01* X24835Y17884D01* X24826Y17886D01* X24817Y17886D01* X24809Y17885D01* X24801Y17882D01* X24793Y17878D01* X24786Y17872D01* X24780Y17865D01* X24776Y17858D01* X24773Y17850D01* X24771Y17841D01* X24771Y17833D01* X24772Y17824D01* X24775Y17816D01* X24779Y17808D01* X24785Y17801D01* X24792Y17796D01* X24799Y17791D01* X24807Y17788D01* X24833Y17779D01* X24858Y17768D01* X24881Y17755D01* X24904Y17740D01* Y17259D01* X24886Y17247D01* X24862Y17233D01* X24838Y17222D01* X24812Y17213D01* X24804Y17209D01* X24797Y17205D01* X24790Y17199D01* X24785Y17192D01* X24781Y17184D01* X24778Y17176D01* X24777Y17167D01* X24777Y17159D01* X24779Y17150D01* X24782Y17142D01* X24787Y17135D01* X24793Y17128D01* X24800Y17123D01* X24807Y17119D01* X24816Y17116D01* X24824Y17115D01* X24833Y17115D01* X24841Y17117D01* X24876Y17129D01* X24904Y17142D01* Y15866D01* X24889Y15873D01* X24855Y15884D01* X24846Y15886D01* X24837Y15886D01* X24829Y15885D01* X24821Y15882D01* X24813Y15878D01* X24806Y15872D01* X24800Y15865D01* X24796Y15858D01* X24793Y15850D01* X24791Y15841D01* X24791Y15833D01* X24792Y15824D01* X24795Y15816D01* X24799Y15808D01* X24805Y15801D01* X24812Y15796D01* X24819Y15791D01* X24827Y15788D01* X24853Y15779D01* X24878Y15768D01* X24901Y15755D01* X24904Y15754D01* Y15246D01* X24882Y15233D01* X24858Y15222D01* X24832Y15213D01* X24824Y15209D01* X24817Y15205D01* X24810Y15199D01* X24805Y15192D01* X24801Y15184D01* X24798Y15176D01* X24797Y15167D01* X24797Y15159D01* X24799Y15150D01* X24802Y15142D01* X24807Y15135D01* X24813Y15128D01* X24820Y15123D01* X24827Y15119D01* X24836Y15116D01* X24844Y15115D01* X24853Y15115D01* X24861Y15117D01* X24896Y15129D01* X24904Y15133D01* Y13874D01* X24875Y13884D01* X24866Y13886D01* X24857Y13886D01* X24849Y13885D01* X24841Y13882D01* X24833Y13878D01* X24826Y13872D01* X24820Y13865D01* X24816Y13858D01* X24813Y13850D01* X24811Y13841D01* X24811Y13833D01* X24812Y13824D01* X24815Y13816D01* X24819Y13808D01* X24825Y13801D01* X24832Y13796D01* X24839Y13791D01* X24847Y13788D01* X24873Y13779D01* X24898Y13768D01* X24904Y13765D01* Y13234D01* X24902Y13233D01* X24878Y13222D01* X24852Y13213D01* X24844Y13209D01* X24837Y13205D01* X24830Y13199D01* X24825Y13192D01* X24821Y13184D01* X24818Y13176D01* X24817Y13167D01* X24817Y13159D01* X24819Y13150D01* X24822Y13142D01* X24827Y13135D01* X24833Y13128D01* X24840Y13123D01* X24847Y13119D01* X24856Y13116D01* X24864Y13115D01* X24873Y13115D01* X24881Y13117D01* X24904Y13125D01* Y11881D01* X24895Y11884D01* X24886Y11886D01* X24877Y11886D01* X24869Y11885D01* X24861Y11882D01* X24853Y11878D01* X24846Y11872D01* X24840Y11865D01* X24836Y11858D01* X24833Y11850D01* X24831Y11841D01* X24831Y11833D01* X24832Y11824D01* X24835Y11816D01* X24839Y11808D01* X24845Y11801D01* X24852Y11796D01* X24859Y11791D01* X24867Y11788D01* X24893Y11779D01* X24904Y11774D01* Y11225D01* X24898Y11222D01* X24872Y11213D01* X24864Y11209D01* X24857Y11205D01* X24850Y11199D01* X24845Y11192D01* X24841Y11184D01* X24838Y11176D01* X24837Y11167D01* X24837Y11159D01* X24839Y11150D01* X24842Y11142D01* X24847Y11135D01* X24853Y11128D01* X24860Y11123D01* X24867Y11119D01* X24876Y11116D01* X24884Y11115D01* X24893Y11115D01* X24901Y11117D01* X24904Y11118D01* Y9886D01* X24897Y9886D01* X24889Y9885D01* X24881Y9882D01* X24873Y9878D01* X24866Y9872D01* X24860Y9865D01* X24856Y9858D01* X24853Y9850D01* X24851Y9841D01* X24851Y9833D01* X24852Y9824D01* X24855Y9816D01* X24859Y9808D01* X24865Y9801D01* X24872Y9796D01* X24879Y9791D01* X24887Y9788D01* X24904Y9782D01* Y9217D01* X24892Y9213D01* X24884Y9209D01* X24877Y9205D01* X24870Y9199D01* X24865Y9192D01* X24861Y9184D01* X24858Y9176D01* X24857Y9167D01* X24857Y9159D01* X24859Y9150D01* X24862Y9142D01* X24867Y9135D01* X24873Y9128D01* X24880Y9123D01* X24887Y9119D01* X24896Y9116D01* X24904Y9115D01* Y7883D01* X24901Y7882D01* X24893Y7878D01* X24886Y7872D01* X24880Y7865D01* X24876Y7858D01* X24873Y7850D01* X24871Y7841D01* X24871Y7833D01* X24872Y7824D01* X24875Y7816D01* X24879Y7808D01* X24885Y7801D01* X24892Y7796D01* X24899Y7791D01* X24904Y7789D01* Y7209D01* X24897Y7205D01* X24890Y7199D01* X24885Y7192D01* X24881Y7184D01* X24878Y7176D01* X24877Y7167D01* X24877Y7159D01* X24879Y7150D01* X24882Y7142D01* X24887Y7135D01* X24893Y7128D01* X24900Y7123D01* X24904Y7121D01* Y5870D01* X24900Y5865D01* X24896Y5858D01* X24893Y5850D01* X24891Y5841D01* X24891Y5833D01* X24892Y5824D01* X24895Y5816D01* X24899Y5808D01* X24904Y5802D01* Y5190D01* X24901Y5184D01* X24898Y5176D01* X24897Y5167D01* X24897Y5159D01* X24899Y5150D01* X24902Y5142D01* X24904Y5140D01* Y0D01* G37* G36* Y23319D02*X24888Y23299D01* X24869Y23280D01* X24848Y23262D01* X24826Y23247D01* X24802Y23233D01* X24778Y23222D01* X24752Y23213D01* X24744Y23209D01* X24737Y23205D01* X24730Y23199D01* X24725Y23192D01* X24724Y23190D01* Y23802D01* X24725Y23801D01* X24732Y23796D01* X24739Y23791D01* X24747Y23788D01* X24773Y23779D01* X24798Y23768D01* X24821Y23755D01* X24844Y23740D01* X24865Y23723D01* X24884Y23704D01* X24902Y23683D01* X24904Y23680D01* Y23319D01* G37* G36* Y23820D02*X24904Y23820D01* X24874Y23840D01* X24842Y23858D01* X24809Y23873D01* X24775Y23884D01* X24766Y23886D01* X24757Y23886D01* X24749Y23885D01* X24741Y23882D01* X24733Y23878D01* X24726Y23872D01* X24724Y23870D01* Y25121D01* X24727Y25119D01* X24736Y25116D01* X24744Y25115D01* X24753Y25115D01* X24761Y25117D01* X24796Y25129D01* X24828Y25144D01* X24860Y25162D01* X24889Y25183D01* X24904Y25196D01* Y23820D01* G37* G36* Y25350D02*X24900Y25343D01* X24885Y25320D01* X24868Y25299D01* X24849Y25280D01* X24828Y25262D01* X24806Y25247D01* X24782Y25233D01* X24758Y25222D01* X24732Y25213D01* X24724Y25209D01* X24724Y25209D01* Y25789D01* X24727Y25788D01* X24753Y25779D01* X24778Y25768D01* X24801Y25755D01* X24824Y25740D01* X24845Y25723D01* X24864Y25704D01* X24882Y25683D01* X24897Y25661D01* X24904Y25650D01* Y25350D01* G37* G36* Y25804D02*X24884Y25820D01* X24854Y25840D01* X24822Y25858D01* X24789Y25873D01* X24755Y25884D01* X24746Y25886D01* X24737Y25886D01* X24729Y25885D01* X24724Y25883D01* Y27115D01* X24724D01* X24733Y27115D01* X24741Y27117D01* X24776Y27129D01* X24808Y27144D01* X24840Y27162D01* X24869Y27183D01* X24897Y27207D01* X24904Y27214D01* Y25804D01* G37* G36* Y27391D02*X24893Y27366D01* X24880Y27343D01* X24865Y27320D01* X24848Y27299D01* X24829Y27280D01* X24808Y27262D01* X24786Y27247D01* X24762Y27233D01* X24738Y27222D01* X24724Y27217D01* Y27782D01* X24733Y27779D01* X24758Y27768D01* X24781Y27755D01* X24804Y27740D01* X24825Y27723D01* X24844Y27704D01* X24862Y27683D01* X24877Y27661D01* X24891Y27637D01* X24902Y27613D01* X24904Y27608D01* Y27391D01* G37* G36* Y27785D02*X24892Y27797D01* X24864Y27820D01* X24834Y27840D01* X24802Y27858D01* X24769Y27873D01* X24735Y27884D01* X24726Y27886D01* X24724D01* Y29118D01* X24756Y29129D01* X24788Y29144D01* X24820Y29162D01* X24849Y29183D01* X24877Y29207D01* X24902Y29232D01* X24904Y29235D01* Y27785D01* G37* G36* Y29437D02*X24900Y29433D01* X24896Y29425D01* X24893Y29417D01* X24884Y29391D01* X24873Y29366D01* X24860Y29343D01* X24845Y29320D01* X24828Y29299D01* X24809Y29280D01* X24788Y29262D01* X24766Y29247D01* X24742Y29233D01* X24724Y29225D01* Y29774D01* X24738Y29768D01* X24761Y29755D01* X24784Y29740D01* X24805Y29723D01* X24824Y29704D01* X24842Y29683D01* X24857Y29661D01* X24871Y29637D01* X24882Y29613D01* X24891Y29587D01* X24895Y29579D01* X24899Y29572D01* X24904Y29567D01* Y29437D01* G37* G36* Y29764D02*X24897Y29772D01* X24872Y29797D01* X24844Y29820D01* X24814Y29840D01* X24782Y29858D01* X24749Y29873D01* X24724Y29881D01* Y31125D01* X24736Y31129D01* X24768Y31144D01* X24800Y31162D01* X24829Y31183D01* X24857Y31207D01* X24882Y31232D01* X24904Y31259D01* Y29764D01* G37* G36* Y31450D02*X24901Y31449D01* X24893Y31445D01* X24886Y31439D01* X24880Y31433D01* X24876Y31425D01* X24873Y31417D01* X24864Y31391D01* X24853Y31366D01* X24840Y31343D01* X24825Y31320D01* X24808Y31299D01* X24789Y31280D01* X24768Y31262D01* X24746Y31247D01* X24724Y31234D01* Y31765D01* X24741Y31755D01* X24764Y31740D01* X24785Y31723D01* X24804Y31704D01* X24822Y31683D01* X24837Y31661D01* X24851Y31637D01* X24862Y31613D01* X24871Y31587D01* X24875Y31579D01* X24879Y31572D01* X24885Y31565D01* X24892Y31560D01* X24900Y31556D01* X24904Y31555D01* Y31450D01* G37* G36* Y31740D02*X24901Y31744D01* X24877Y31772D01* X24852Y31797D01* X24824Y31820D01* X24794Y31840D01* X24762Y31858D01* X24729Y31873D01* X24724Y31874D01* Y33133D01* X24748Y33144D01* X24780Y33162D01* X24809Y33183D01* X24837Y33207D01* X24862Y33232D01* X24885Y33260D01* X24904Y33288D01* Y31740D01* G37* G36* Y33453D02*X24897Y33453D01* X24889Y33452D01* X24881Y33449D01* X24873Y33445D01* X24866Y33439D01* X24860Y33433D01* X24856Y33425D01* X24853Y33417D01* X24844Y33391D01* X24833Y33366D01* X24820Y33343D01* X24805Y33320D01* X24788Y33299D01* X24769Y33280D01* X24748Y33262D01* X24726Y33247D01* X24724Y33246D01* Y33754D01* X24744Y33740D01* X24765Y33723D01* X24784Y33704D01* X24802Y33683D01* X24817Y33661D01* X24831Y33637D01* X24842Y33613D01* X24851Y33587D01* X24855Y33579D01* X24859Y33572D01* X24865Y33565D01* X24872Y33560D01* X24880Y33556D01* X24888Y33553D01* X24897Y33552D01* X24904Y33552D01* Y33453D01* G37* G36* Y33711D02*X24902Y33715D01* X24881Y33744D01* X24857Y33772D01* X24832Y33797D01* X24804Y33820D01* X24774Y33840D01* X24742Y33858D01* X24724Y33866D01* Y35142D01* X24728Y35144D01* X24760Y35162D01* X24789Y35183D01* X24817Y35207D01* X24842Y35232D01* X24865Y35260D01* X24885Y35290D01* X24903Y35322D01* X24904Y35324D01* Y33711D01* G37* G36* Y35447D02*X24903Y35448D01* X24895Y35451D01* X24886Y35453D01* X24877Y35453D01* X24869Y35452D01* X24861Y35449D01* X24853Y35445D01* X24846Y35439D01* X24840Y35433D01* X24836Y35425D01* X24833Y35417D01* X24824Y35391D01* X24813Y35366D01* X24800Y35343D01* X24785Y35320D01* X24768Y35299D01* X24749Y35280D01* X24728Y35262D01* X24724Y35259D01* Y35740D01* X24745Y35723D01* X24764Y35704D01* X24782Y35683D01* X24797Y35661D01* X24811Y35637D01* X24822Y35613D01* X24831Y35587D01* X24835Y35579D01* X24839Y35572D01* X24845Y35565D01* X24852Y35560D01* X24860Y35556D01* X24868Y35553D01* X24877Y35552D01* X24885Y35552D01* X24894Y35554D01* X24902Y35557D01* X24904Y35559D01* Y35447D01* G37* G36* Y35674D02*X24900Y35683D01* X24882Y35715D01* X24861Y35744D01* X24837Y35772D01* X24812Y35797D01* X24784Y35820D01* X24754Y35840D01* X24724Y35857D01* Y37153D01* X24740Y37162D01* X24769Y37183D01* X24797Y37207D01* X24822Y37232D01* X24845Y37260D01* X24865Y37290D01* X24883Y37322D01* X24897Y37355D01* X24904Y37374D01* Y35674D01* G37* G36* Y37428D02*X24902Y37431D01* X24897Y37438D01* X24890Y37444D01* X24883Y37448D01* X24875Y37451D01* X24866Y37453D01* X24857Y37453D01* X24849Y37452D01* X24841Y37449D01* X24833Y37445D01* X24826Y37439D01* X24820Y37433D01* X24816Y37425D01* X24813Y37417D01* X24804Y37391D01* X24793Y37366D01* X24780Y37343D01* X24765Y37320D01* X24748Y37299D01* X24729Y37280D01* X24724Y37276D01* Y37724D01* X24725Y37723D01* X24744Y37704D01* X24762Y37683D01* X24777Y37661D01* X24791Y37637D01* X24802Y37613D01* X24811Y37587D01* X24815Y37579D01* X24819Y37572D01* X24825Y37565D01* X24832Y37560D01* X24840Y37556D01* X24848Y37553D01* X24857Y37552D01* X24865Y37552D01* X24874Y37554D01* X24882Y37557D01* X24889Y37562D01* X24896Y37568D01* X24901Y37575D01* X24904Y37580D01* Y37428D01* G37* G36* Y40000D02*X25084D01* Y19625D01* X25075Y19651D01* X25060Y19683D01* X25042Y19715D01* X25021Y19744D01* X24997Y19772D01* X24972Y19797D01* X24944Y19820D01* X24914Y19840D01* X24904Y19846D01* Y21165D01* X24929Y21183D01* X24957Y21207D01* X24982Y21232D01* X25005Y21260D01* X25025Y21290D01* X25043Y21322D01* X25057Y21355D01* X25069Y21389D01* X25071Y21398D01* X25071Y21407D01* X25070Y21415D01* X25067Y21423D01* X25062Y21431D01* X25057Y21438D01* X25050Y21444D01* X25043Y21448D01* X25035Y21451D01* X25026Y21453D01* X25017Y21453D01* X25009Y21452D01* X25001Y21449D01* X24993Y21445D01* X24986Y21439D01* X24980Y21433D01* X24976Y21425D01* X24973Y21417D01* X24964Y21391D01* X24953Y21366D01* X24940Y21343D01* X24925Y21320D01* X24908Y21299D01* X24904Y21295D01* Y21704D01* X24904Y21704D01* X24922Y21683D01* X24937Y21661D01* X24951Y21637D01* X24962Y21613D01* X24971Y21587D01* X24975Y21579D01* X24979Y21572D01* X24985Y21565D01* X24992Y21560D01* X25000Y21556D01* X25008Y21553D01* X25017Y21552D01* X25025Y21552D01* X25034Y21554D01* X25042Y21557D01* X25049Y21562D01* X25056Y21568D01* X25061Y21575D01* X25065Y21582D01* X25068Y21591D01* X25069Y21599D01* X25069Y21608D01* X25067Y21617D01* X25055Y21651D01* X25040Y21683D01* X25022Y21715D01* X25001Y21744D01* X24977Y21772D01* X24952Y21797D01* X24924Y21820D01* X24904Y21834D01* Y23180D01* X24909Y23183D01* X24937Y23207D01* X24962Y23232D01* X24985Y23260D01* X25005Y23290D01* X25023Y23322D01* X25037Y23355D01* X25049Y23389D01* X25051Y23398D01* X25051Y23407D01* X25050Y23415D01* X25047Y23423D01* X25042Y23431D01* X25037Y23438D01* X25030Y23444D01* X25023Y23448D01* X25015Y23451D01* X25006Y23453D01* X24997Y23453D01* X24989Y23452D01* X24981Y23449D01* X24973Y23445D01* X24966Y23439D01* X24960Y23433D01* X24956Y23425D01* X24953Y23417D01* X24944Y23391D01* X24933Y23366D01* X24920Y23343D01* X24905Y23320D01* X24904Y23319D01* Y23680D01* X24917Y23661D01* X24931Y23637D01* X24942Y23613D01* X24951Y23587D01* X24955Y23579D01* X24959Y23572D01* X24965Y23565D01* X24972Y23560D01* X24980Y23556D01* X24988Y23553D01* X24997Y23552D01* X25005Y23552D01* X25014Y23554D01* X25022Y23557D01* X25029Y23562D01* X25036Y23568D01* X25041Y23575D01* X25045Y23582D01* X25048Y23591D01* X25049Y23599D01* X25049Y23608D01* X25047Y23617D01* X25035Y23651D01* X25020Y23683D01* X25002Y23715D01* X24981Y23744D01* X24957Y23772D01* X24932Y23797D01* X24904Y23820D01* Y25196D01* X24917Y25207D01* X24942Y25232D01* X24965Y25260D01* X24985Y25290D01* X25003Y25322D01* X25017Y25355D01* X25029Y25389D01* X25031Y25398D01* X25031Y25407D01* X25030Y25415D01* X25027Y25423D01* X25022Y25431D01* X25017Y25438D01* X25010Y25444D01* X25003Y25448D01* X24995Y25451D01* X24986Y25453D01* X24977Y25453D01* X24969Y25452D01* X24961Y25449D01* X24953Y25445D01* X24946Y25439D01* X24940Y25433D01* X24936Y25425D01* X24933Y25417D01* X24924Y25391D01* X24913Y25366D01* X24904Y25350D01* Y25650D01* X24911Y25637D01* X24922Y25613D01* X24931Y25587D01* X24935Y25579D01* X24939Y25572D01* X24945Y25565D01* X24952Y25560D01* X24960Y25556D01* X24968Y25553D01* X24977Y25552D01* X24985Y25552D01* X24994Y25554D01* X25002Y25557D01* X25009Y25562D01* X25016Y25568D01* X25021Y25575D01* X25025Y25582D01* X25028Y25591D01* X25029Y25599D01* X25029Y25608D01* X25027Y25617D01* X25015Y25651D01* X25000Y25683D01* X24982Y25715D01* X24961Y25744D01* X24937Y25772D01* X24912Y25797D01* X24904Y25804D01* Y27214D01* X24922Y27232D01* X24945Y27260D01* X24965Y27290D01* X24983Y27322D01* X24997Y27355D01* X25009Y27389D01* X25011Y27398D01* X25011Y27407D01* X25010Y27415D01* X25007Y27423D01* X25002Y27431D01* X24997Y27438D01* X24990Y27444D01* X24983Y27448D01* X24975Y27451D01* X24966Y27453D01* X24957Y27453D01* X24949Y27452D01* X24941Y27449D01* X24933Y27445D01* X24926Y27439D01* X24920Y27433D01* X24916Y27425D01* X24913Y27417D01* X24904Y27391D01* X24904Y27391D01* Y27608D01* X24911Y27587D01* X24915Y27579D01* X24919Y27572D01* X24925Y27565D01* X24932Y27560D01* X24940Y27556D01* X24948Y27553D01* X24957Y27552D01* X24965Y27552D01* X24974Y27554D01* X24982Y27557D01* X24989Y27562D01* X24996Y27568D01* X25001Y27575D01* X25005Y27582D01* X25008Y27591D01* X25009Y27599D01* X25009Y27608D01* X25007Y27617D01* X24995Y27651D01* X24980Y27683D01* X24962Y27715D01* X24941Y27744D01* X24917Y27772D01* X24904Y27785D01* Y29235D01* X24925Y29260D01* X24945Y29290D01* X24963Y29322D01* X24977Y29355D01* X24989Y29389D01* X24991Y29398D01* X24991Y29407D01* X24990Y29415D01* X24987Y29423D01* X24982Y29431D01* X24977Y29438D01* X24970Y29444D01* X24963Y29448D01* X24955Y29451D01* X24946Y29453D01* X24937Y29453D01* X24929Y29452D01* X24921Y29449D01* X24913Y29445D01* X24906Y29439D01* X24904Y29437D01* Y29567D01* X24905Y29565D01* X24912Y29560D01* X24920Y29556D01* X24928Y29553D01* X24937Y29552D01* X24945Y29552D01* X24954Y29554D01* X24962Y29557D01* X24969Y29562D01* X24976Y29568D01* X24981Y29575D01* X24985Y29582D01* X24988Y29591D01* X24989Y29599D01* X24989Y29608D01* X24987Y29617D01* X24975Y29651D01* X24960Y29683D01* X24942Y29715D01* X24921Y29744D01* X24904Y29764D01* Y31259D01* X24905Y31260D01* X24925Y31290D01* X24943Y31322D01* X24957Y31355D01* X24969Y31389D01* X24971Y31398D01* X24971Y31407D01* X24970Y31415D01* X24967Y31423D01* X24962Y31431D01* X24957Y31438D01* X24950Y31444D01* X24943Y31448D01* X24935Y31451D01* X24926Y31453D01* X24917Y31453D01* X24909Y31452D01* X24904Y31450D01* Y31555D01* X24908Y31553D01* X24917Y31552D01* X24925Y31552D01* X24934Y31554D01* X24942Y31557D01* X24949Y31562D01* X24956Y31568D01* X24961Y31575D01* X24965Y31582D01* X24968Y31591D01* X24969Y31599D01* X24969Y31608D01* X24967Y31617D01* X24955Y31651D01* X24940Y31683D01* X24922Y31715D01* X24904Y31740D01* Y33288D01* X24905Y33290D01* X24923Y33322D01* X24937Y33355D01* X24949Y33389D01* X24951Y33398D01* X24951Y33407D01* X24950Y33415D01* X24947Y33423D01* X24942Y33431D01* X24937Y33438D01* X24930Y33444D01* X24923Y33448D01* X24915Y33451D01* X24906Y33453D01* X24904D01* Y33552D01* X24905D01* X24914Y33554D01* X24922Y33557D01* X24929Y33562D01* X24936Y33568D01* X24941Y33575D01* X24945Y33582D01* X24948Y33591D01* X24949Y33599D01* X24949Y33608D01* X24947Y33617D01* X24935Y33651D01* X24920Y33683D01* X24904Y33711D01* Y35324D01* X24917Y35355D01* X24929Y35389D01* X24931Y35398D01* X24931Y35407D01* X24930Y35415D01* X24927Y35423D01* X24922Y35431D01* X24917Y35438D01* X24910Y35444D01* X24904Y35447D01* Y35559D01* X24909Y35562D01* X24916Y35568D01* X24921Y35575D01* X24925Y35582D01* X24928Y35591D01* X24929Y35599D01* X24929Y35608D01* X24927Y35617D01* X24915Y35651D01* X24904Y35674D01* Y37374D01* X24909Y37389D01* X24911Y37398D01* X24911Y37407D01* X24910Y37415D01* X24907Y37423D01* X24904Y37428D01* Y37580D01* X24905Y37582D01* X24908Y37591D01* X24909Y37599D01* X24909Y37608D01* X24907Y37617D01* X24904Y37625D01* Y40000D01* G37* G36* X25084Y0D02*X24904D01* Y5140D01* X24907Y5135D01* X24913Y5128D01* X24920Y5123D01* X24927Y5119D01* X24936Y5116D01* X24944Y5115D01* X24953Y5115D01* X24961Y5117D01* X24996Y5129D01* X25028Y5144D01* X25060Y5162D01* X25084Y5180D01* Y3834D01* X25074Y3840D01* X25042Y3858D01* X25009Y3873D01* X24975Y3884D01* X24966Y3886D01* X24957Y3886D01* X24949Y3885D01* X24941Y3882D01* X24933Y3878D01* X24926Y3872D01* X24920Y3865D01* X24916Y3858D01* X24913Y3850D01* X24911Y3841D01* X24911Y3833D01* X24912Y3824D01* X24915Y3816D01* X24919Y3808D01* X24925Y3801D01* X24932Y3796D01* X24939Y3791D01* X24947Y3788D01* X24973Y3779D01* X24998Y3768D01* X25021Y3755D01* X25044Y3740D01* X25065Y3723D01* X25084Y3704D01* Y3295D01* X25069Y3280D01* X25048Y3262D01* X25026Y3247D01* X25002Y3233D01* X24978Y3222D01* X24952Y3213D01* X24944Y3209D01* X24937Y3205D01* X24930Y3199D01* X24925Y3192D01* X24921Y3184D01* X24918Y3176D01* X24917Y3167D01* X24917Y3159D01* X24919Y3150D01* X24922Y3142D01* X24927Y3135D01* X24933Y3128D01* X24940Y3123D01* X24947Y3119D01* X24956Y3116D01* X24964Y3115D01* X24973Y3115D01* X24981Y3117D01* X25016Y3129D01* X25048Y3144D01* X25080Y3162D01* X25084Y3165D01* Y1846D01* X25062Y1858D01* X25029Y1873D01* X24995Y1884D01* X24986Y1886D01* X24977Y1886D01* X24969Y1885D01* X24961Y1882D01* X24953Y1878D01* X24946Y1872D01* X24940Y1865D01* X24936Y1858D01* X24933Y1850D01* X24931Y1841D01* X24931Y1833D01* X24932Y1824D01* X24935Y1816D01* X24939Y1808D01* X24945Y1801D01* X24952Y1796D01* X24959Y1791D01* X24967Y1788D01* X24993Y1779D01* X25018Y1768D01* X25041Y1755D01* X25064Y1740D01* X25084Y1724D01* Y1276D01* X25068Y1262D01* X25046Y1247D01* X25022Y1233D01* X24998Y1222D01* X24972Y1213D01* X24964Y1209D01* X24957Y1205D01* X24950Y1199D01* X24945Y1192D01* X24941Y1184D01* X24938Y1176D01* X24937Y1167D01* X24937Y1159D01* X24939Y1150D01* X24942Y1142D01* X24947Y1135D01* X24953Y1128D01* X24960Y1123D01* X24967Y1119D01* X24976Y1116D01* X24984Y1115D01* X24993Y1115D01* X25001Y1117D01* X25036Y1129D01* X25068Y1144D01* X25084Y1153D01* Y0D01* G37* G36* Y5319D02*X25068Y5299D01* X25049Y5280D01* X25028Y5262D01* X25006Y5247D01* X24982Y5233D01* X24958Y5222D01* X24932Y5213D01* X24924Y5209D01* X24917Y5205D01* X24910Y5199D01* X24905Y5192D01* X24904Y5190D01* Y5802D01* X24905Y5801D01* X24912Y5796D01* X24919Y5791D01* X24927Y5788D01* X24953Y5779D01* X24978Y5768D01* X25001Y5755D01* X25024Y5740D01* X25045Y5723D01* X25064Y5704D01* X25082Y5683D01* X25084Y5680D01* Y5319D01* G37* G36* Y5820D02*X25084Y5820D01* X25054Y5840D01* X25022Y5858D01* X24989Y5873D01* X24955Y5884D01* X24946Y5886D01* X24937Y5886D01* X24929Y5885D01* X24921Y5882D01* X24913Y5878D01* X24906Y5872D01* X24904Y5870D01* Y7121D01* X24907Y7119D01* X24916Y7116D01* X24924Y7115D01* X24933Y7115D01* X24941Y7117D01* X24976Y7129D01* X25008Y7144D01* X25040Y7162D01* X25069Y7183D01* X25084Y7196D01* Y5820D01* G37* G36* Y7350D02*X25080Y7343D01* X25065Y7320D01* X25048Y7299D01* X25029Y7280D01* X25008Y7262D01* X24986Y7247D01* X24962Y7233D01* X24938Y7222D01* X24912Y7213D01* X24904Y7209D01* X24904Y7209D01* Y7789D01* X24907Y7788D01* X24933Y7779D01* X24958Y7768D01* X24981Y7755D01* X25004Y7740D01* X25025Y7723D01* X25044Y7704D01* X25062Y7683D01* X25077Y7661D01* X25084Y7650D01* Y7350D01* G37* G36* Y7804D02*X25064Y7820D01* X25034Y7840D01* X25002Y7858D01* X24969Y7873D01* X24935Y7884D01* X24926Y7886D01* X24917Y7886D01* X24909Y7885D01* X24904Y7883D01* Y9115D01* X24904D01* X24913Y9115D01* X24921Y9117D01* X24956Y9129D01* X24988Y9144D01* X25020Y9162D01* X25049Y9183D01* X25077Y9207D01* X25084Y9214D01* Y7804D01* G37* G36* Y9391D02*X25073Y9366D01* X25060Y9343D01* X25045Y9320D01* X25028Y9299D01* X25009Y9280D01* X24988Y9262D01* X24966Y9247D01* X24942Y9233D01* X24918Y9222D01* X24904Y9217D01* Y9782D01* X24913Y9779D01* X24938Y9768D01* X24961Y9755D01* X24984Y9740D01* X25005Y9723D01* X25024Y9704D01* X25042Y9683D01* X25057Y9661D01* X25071Y9637D01* X25082Y9613D01* X25084Y9608D01* Y9391D01* G37* G36* Y9785D02*X25072Y9797D01* X25044Y9820D01* X25014Y9840D01* X24982Y9858D01* X24949Y9873D01* X24915Y9884D01* X24906Y9886D01* X24904D01* Y11118D01* X24936Y11129D01* X24968Y11144D01* X25000Y11162D01* X25029Y11183D01* X25057Y11207D01* X25082Y11232D01* X25084Y11235D01* Y9785D01* G37* G36* Y11437D02*X25080Y11433D01* X25076Y11425D01* X25073Y11417D01* X25064Y11391D01* X25053Y11366D01* X25040Y11343D01* X25025Y11320D01* X25008Y11299D01* X24989Y11280D01* X24968Y11262D01* X24946Y11247D01* X24922Y11233D01* X24904Y11225D01* Y11774D01* X24918Y11768D01* X24941Y11755D01* X24964Y11740D01* X24985Y11723D01* X25004Y11704D01* X25022Y11683D01* X25037Y11661D01* X25051Y11637D01* X25062Y11613D01* X25071Y11587D01* X25075Y11579D01* X25079Y11572D01* X25084Y11567D01* Y11437D01* G37* G36* Y11764D02*X25077Y11772D01* X25052Y11797D01* X25024Y11820D01* X24994Y11840D01* X24962Y11858D01* X24929Y11873D01* X24904Y11881D01* Y13125D01* X24916Y13129D01* X24948Y13144D01* X24980Y13162D01* X25009Y13183D01* X25037Y13207D01* X25062Y13232D01* X25084Y13259D01* Y11764D01* G37* G36* Y13450D02*X25081Y13449D01* X25073Y13445D01* X25066Y13439D01* X25060Y13433D01* X25056Y13425D01* X25053Y13417D01* X25044Y13391D01* X25033Y13366D01* X25020Y13343D01* X25005Y13320D01* X24988Y13299D01* X24969Y13280D01* X24948Y13262D01* X24926Y13247D01* X24904Y13234D01* Y13765D01* X24921Y13755D01* X24944Y13740D01* X24965Y13723D01* X24984Y13704D01* X25002Y13683D01* X25017Y13661D01* X25031Y13637D01* X25042Y13613D01* X25051Y13587D01* X25055Y13579D01* X25059Y13572D01* X25065Y13565D01* X25072Y13560D01* X25080Y13556D01* X25084Y13555D01* Y13450D01* G37* G36* Y13740D02*X25081Y13744D01* X25057Y13772D01* X25032Y13797D01* X25004Y13820D01* X24974Y13840D01* X24942Y13858D01* X24909Y13873D01* X24904Y13874D01* Y15133D01* X24928Y15144D01* X24960Y15162D01* X24989Y15183D01* X25017Y15207D01* X25042Y15232D01* X25065Y15260D01* X25084Y15288D01* Y13740D01* G37* G36* Y15453D02*X25077Y15453D01* X25069Y15452D01* X25061Y15449D01* X25053Y15445D01* X25046Y15439D01* X25040Y15433D01* X25036Y15425D01* X25033Y15417D01* X25024Y15391D01* X25013Y15366D01* X25000Y15343D01* X24985Y15320D01* X24968Y15299D01* X24949Y15280D01* X24928Y15262D01* X24906Y15247D01* X24904Y15246D01* Y15754D01* X24924Y15740D01* X24945Y15723D01* X24964Y15704D01* X24982Y15683D01* X24997Y15661D01* X25011Y15637D01* X25022Y15613D01* X25031Y15587D01* X25035Y15579D01* X25039Y15572D01* X25045Y15565D01* X25052Y15560D01* X25060Y15556D01* X25068Y15553D01* X25077Y15552D01* X25084Y15552D01* Y15453D01* G37* G36* Y15711D02*X25082Y15715D01* X25061Y15744D01* X25037Y15772D01* X25012Y15797D01* X24984Y15820D01* X24954Y15840D01* X24922Y15858D01* X24904Y15866D01* Y17142D01* X24908Y17144D01* X24940Y17162D01* X24969Y17183D01* X24997Y17207D01* X25022Y17232D01* X25045Y17260D01* X25065Y17290D01* X25083Y17322D01* X25084Y17324D01* Y15711D01* G37* G36* Y17447D02*X25083Y17448D01* X25075Y17451D01* X25066Y17453D01* X25057Y17453D01* X25049Y17452D01* X25041Y17449D01* X25033Y17445D01* X25026Y17439D01* X25020Y17433D01* X25016Y17425D01* X25013Y17417D01* X25004Y17391D01* X24993Y17366D01* X24980Y17343D01* X24965Y17320D01* X24948Y17299D01* X24929Y17280D01* X24908Y17262D01* X24904Y17259D01* Y17740D01* X24925Y17723D01* X24944Y17704D01* X24962Y17683D01* X24977Y17661D01* X24991Y17637D01* X25002Y17613D01* X25011Y17587D01* X25015Y17579D01* X25019Y17572D01* X25025Y17565D01* X25032Y17560D01* X25040Y17556D01* X25048Y17553D01* X25057Y17552D01* X25065Y17552D01* X25074Y17554D01* X25082Y17557D01* X25084Y17559D01* Y17447D01* G37* G36* Y17674D02*X25080Y17683D01* X25062Y17715D01* X25041Y17744D01* X25017Y17772D01* X24992Y17797D01* X24964Y17820D01* X24934Y17840D01* X24904Y17857D01* Y19153D01* X24920Y19162D01* X24949Y19183D01* X24977Y19207D01* X25002Y19232D01* X25025Y19260D01* X25045Y19290D01* X25063Y19322D01* X25077Y19355D01* X25084Y19374D01* Y17674D01* G37* G36* Y19428D02*X25082Y19431D01* X25077Y19438D01* X25070Y19444D01* X25063Y19448D01* X25055Y19451D01* X25046Y19453D01* X25037Y19453D01* X25029Y19452D01* X25021Y19449D01* X25013Y19445D01* X25006Y19439D01* X25000Y19433D01* X24996Y19425D01* X24993Y19417D01* X24984Y19391D01* X24973Y19366D01* X24960Y19343D01* X24945Y19320D01* X24928Y19299D01* X24909Y19280D01* X24904Y19276D01* Y19724D01* X24905Y19723D01* X24924Y19704D01* X24942Y19683D01* X24957Y19661D01* X24971Y19637D01* X24982Y19613D01* X24991Y19587D01* X24995Y19579D01* X24999Y19572D01* X25005Y19565D01* X25012Y19560D01* X25020Y19556D01* X25028Y19553D01* X25037Y19552D01* X25045Y19552D01* X25054Y19554D01* X25062Y19557D01* X25069Y19562D01* X25076Y19568D01* X25081Y19575D01* X25084Y19580D01* Y19428D01* G37* G36* Y40000D02*X26285D01* Y39834D01* X26260Y39816D01* X26232Y39793D01* X26207Y39767D01* X26184Y39739D01* X26164Y39709D01* X26146Y39677D01* X26132Y39644D01* X26120Y39610D01* X26118Y39601D01* X26118Y39593D01* X26119Y39584D01* X26122Y39576D01* X26127Y39568D01* X26132Y39561D01* X26139Y39556D01* X26146Y39551D01* X26154Y39548D01* X26163Y39546D01* X26172Y39546D01* X26180Y39547D01* X26188Y39550D01* X26196Y39555D01* X26203Y39560D01* X26209Y39567D01* X26213Y39574D01* X26216Y39582D01* X26225Y39608D01* X26236Y39633D01* X26249Y39657D01* X26264Y39679D01* X26281Y39700D01* X26285Y39704D01* Y39295D01* X26285Y39295D01* X26267Y39316D01* X26252Y39338D01* X26238Y39362D01* X26227Y39386D01* X26218Y39412D01* X26214Y39420D01* X26210Y39427D01* X26204Y39434D01* X26197Y39439D01* X26189Y39443D01* X26181Y39446D01* X26172Y39447D01* X26164Y39447D01* X26155Y39445D01* X26147Y39442D01* X26140Y39437D01* X26133Y39431D01* X26128Y39424D01* X26124Y39417D01* X26121Y39409D01* X26120Y39400D01* X26120Y39391D01* X26122Y39383D01* X26134Y39349D01* X26149Y39316D01* X26167Y39284D01* X26188Y39255D01* X26212Y39227D01* X26237Y39202D01* X26265Y39179D01* X26285Y39166D01* Y37820D01* X26280Y37816D01* X26252Y37793D01* X26227Y37767D01* X26204Y37739D01* X26184Y37709D01* X26166Y37677D01* X26152Y37644D01* X26140Y37610D01* X26138Y37601D01* X26138Y37593D01* X26139Y37584D01* X26142Y37576D01* X26147Y37568D01* X26152Y37561D01* X26159Y37556D01* X26166Y37551D01* X26174Y37548D01* X26183Y37546D01* X26192Y37546D01* X26200Y37547D01* X26208Y37550D01* X26216Y37555D01* X26223Y37560D01* X26229Y37567D01* X26233Y37574D01* X26236Y37582D01* X26245Y37608D01* X26256Y37633D01* X26269Y37657D01* X26284Y37679D01* X26285Y37680D01* Y37319D01* X26272Y37338D01* X26258Y37362D01* X26247Y37386D01* X26238Y37412D01* X26234Y37420D01* X26230Y37427D01* X26224Y37434D01* X26217Y37439D01* X26209Y37443D01* X26201Y37446D01* X26192Y37447D01* X26184Y37447D01* X26175Y37445D01* X26167Y37442D01* X26160Y37437D01* X26153Y37431D01* X26148Y37424D01* X26144Y37417D01* X26141Y37409D01* X26140Y37400D01* X26140Y37391D01* X26142Y37383D01* X26154Y37349D01* X26169Y37316D01* X26187Y37284D01* X26208Y37255D01* X26232Y37227D01* X26257Y37202D01* X26285Y37179D01* Y35804D01* X26272Y35793D01* X26247Y35767D01* X26224Y35739D01* X26204Y35709D01* X26186Y35677D01* X26172Y35644D01* X26160Y35610D01* X26158Y35601D01* X26158Y35593D01* X26159Y35584D01* X26162Y35576D01* X26167Y35568D01* X26172Y35561D01* X26179Y35556D01* X26186Y35551D01* X26194Y35548D01* X26203Y35546D01* X26212Y35546D01* X26220Y35547D01* X26228Y35550D01* X26236Y35555D01* X26243Y35560D01* X26249Y35567D01* X26253Y35574D01* X26256Y35582D01* X26265Y35608D01* X26276Y35633D01* X26285Y35650D01* Y35349D01* X26278Y35362D01* X26267Y35386D01* X26258Y35412D01* X26254Y35420D01* X26250Y35427D01* X26244Y35434D01* X26237Y35439D01* X26229Y35443D01* X26221Y35446D01* X26212Y35447D01* X26204Y35447D01* X26195Y35445D01* X26187Y35442D01* X26180Y35437D01* X26173Y35431D01* X26168Y35424D01* X26164Y35417D01* X26161Y35409D01* X26160Y35400D01* X26160Y35391D01* X26162Y35383D01* X26174Y35349D01* X26189Y35316D01* X26207Y35284D01* X26228Y35255D01* X26252Y35227D01* X26277Y35202D01* X26285Y35196D01* Y33785D01* X26267Y33767D01* X26244Y33739D01* X26224Y33709D01* X26206Y33677D01* X26192Y33644D01* X26180Y33610D01* X26178Y33601D01* X26178Y33593D01* X26179Y33584D01* X26182Y33576D01* X26187Y33568D01* X26192Y33561D01* X26199Y33556D01* X26206Y33551D01* X26214Y33548D01* X26223Y33546D01* X26232Y33546D01* X26240Y33547D01* X26248Y33550D01* X26256Y33555D01* X26263Y33560D01* X26269Y33567D01* X26273Y33574D01* X26276Y33582D01* X26285Y33608D01* X26285Y33609D01* Y33391D01* X26278Y33412D01* X26274Y33420D01* X26270Y33427D01* X26264Y33434D01* X26257Y33439D01* X26249Y33443D01* X26241Y33446D01* X26232Y33447D01* X26224Y33447D01* X26215Y33445D01* X26207Y33442D01* X26200Y33437D01* X26193Y33431D01* X26188Y33424D01* X26184Y33417D01* X26181Y33409D01* X26180Y33400D01* X26180Y33391D01* X26182Y33383D01* X26194Y33349D01* X26209Y33316D01* X26227Y33284D01* X26248Y33255D01* X26272Y33227D01* X26285Y33214D01* Y31765D01* X26264Y31739D01* X26244Y31709D01* X26226Y31677D01* X26212Y31644D01* X26200Y31610D01* X26198Y31601D01* X26198Y31593D01* X26199Y31584D01* X26202Y31576D01* X26207Y31568D01* X26212Y31561D01* X26219Y31556D01* X26226Y31551D01* X26234Y31548D01* X26243Y31546D01* X26252Y31546D01* X26260Y31547D01* X26268Y31550D01* X26276Y31555D01* X26283Y31560D01* X26285Y31563D01* Y31432D01* X26284Y31434D01* X26277Y31439D01* X26269Y31443D01* X26261Y31446D01* X26252Y31447D01* X26244Y31447D01* X26235Y31445D01* X26227Y31442D01* X26220Y31437D01* X26213Y31431D01* X26208Y31424D01* X26204Y31417D01* X26201Y31409D01* X26200Y31400D01* X26200Y31391D01* X26202Y31383D01* X26214Y31349D01* X26229Y31316D01* X26247Y31284D01* X26268Y31255D01* X26285Y31235D01* Y29740D01* X26284Y29739D01* X26264Y29709D01* X26246Y29677D01* X26232Y29644D01* X26220Y29610D01* X26218Y29601D01* X26218Y29593D01* X26219Y29584D01* X26222Y29576D01* X26227Y29568D01* X26232Y29561D01* X26239Y29556D01* X26246Y29551D01* X26254Y29548D01* X26263Y29546D01* X26272Y29546D01* X26280Y29547D01* X26285Y29549D01* Y29445D01* X26281Y29446D01* X26272Y29447D01* X26264Y29447D01* X26255Y29445D01* X26247Y29442D01* X26240Y29437D01* X26233Y29431D01* X26228Y29424D01* X26224Y29417D01* X26221Y29409D01* X26220Y29400D01* X26220Y29391D01* X26222Y29383D01* X26234Y29349D01* X26249Y29316D01* X26267Y29284D01* X26285Y29259D01* Y27711D01* X26284Y27709D01* X26266Y27677D01* X26252Y27644D01* X26240Y27610D01* X26238Y27601D01* X26238Y27593D01* X26239Y27584D01* X26242Y27576D01* X26247Y27568D01* X26252Y27561D01* X26259Y27556D01* X26266Y27551D01* X26274Y27548D01* X26283Y27546D01* X26285D01* Y27447D01* X26284Y27447D01* X26275Y27445D01* X26267Y27442D01* X26260Y27437D01* X26253Y27431D01* X26248Y27424D01* X26244Y27417D01* X26241Y27409D01* X26240Y27400D01* X26240Y27391D01* X26242Y27383D01* X26254Y27349D01* X26269Y27316D01* X26285Y27288D01* Y25675D01* X26272Y25644D01* X26260Y25610D01* X26258Y25601D01* X26258Y25593D01* X26259Y25584D01* X26262Y25576D01* X26267Y25568D01* X26272Y25561D01* X26279Y25556D01* X26285Y25552D01* Y25441D01* X26280Y25437D01* X26273Y25431D01* X26268Y25424D01* X26264Y25417D01* X26261Y25409D01* X26260Y25400D01* X26260Y25391D01* X26262Y25383D01* X26274Y25349D01* X26285Y25325D01* Y23625D01* X26280Y23610D01* X26278Y23601D01* X26278Y23593D01* X26279Y23584D01* X26282Y23576D01* X26285Y23571D01* Y23419D01* X26284Y23417D01* X26281Y23409D01* X26280Y23400D01* X26280Y23391D01* X26282Y23383D01* X26285Y23374D01* Y0D01* X25084D01* Y1153D01* X25100Y1162D01* X25129Y1183D01* X25157Y1207D01* X25182Y1232D01* X25205Y1260D01* X25225Y1290D01* X25243Y1322D01* X25257Y1355D01* X25269Y1389D01* X25271Y1398D01* X25271Y1407D01* X25270Y1415D01* X25267Y1423D01* X25262Y1431D01* X25257Y1438D01* X25250Y1444D01* X25243Y1448D01* X25235Y1451D01* X25226Y1453D01* X25217Y1453D01* X25209Y1452D01* X25201Y1449D01* X25193Y1445D01* X25186Y1439D01* X25180Y1433D01* X25176Y1425D01* X25173Y1417D01* X25164Y1391D01* X25153Y1366D01* X25140Y1343D01* X25125Y1320D01* X25108Y1299D01* X25089Y1280D01* X25084Y1276D01* Y1724D01* X25085Y1723D01* X25104Y1704D01* X25122Y1683D01* X25137Y1661D01* X25151Y1637D01* X25162Y1613D01* X25171Y1587D01* X25175Y1579D01* X25179Y1572D01* X25185Y1565D01* X25192Y1560D01* X25200Y1556D01* X25208Y1553D01* X25217Y1552D01* X25225Y1552D01* X25234Y1554D01* X25242Y1557D01* X25249Y1562D01* X25256Y1568D01* X25261Y1575D01* X25265Y1582D01* X25268Y1591D01* X25269Y1599D01* X25269Y1608D01* X25267Y1617D01* X25255Y1651D01* X25240Y1683D01* X25222Y1715D01* X25201Y1744D01* X25177Y1772D01* X25152Y1797D01* X25124Y1820D01* X25094Y1840D01* X25084Y1846D01* Y3165D01* X25109Y3183D01* X25137Y3207D01* X25162Y3232D01* X25185Y3260D01* X25205Y3290D01* X25223Y3322D01* X25237Y3355D01* X25249Y3389D01* X25251Y3398D01* X25251Y3407D01* X25250Y3415D01* X25247Y3423D01* X25242Y3431D01* X25237Y3438D01* X25230Y3444D01* X25223Y3448D01* X25215Y3451D01* X25206Y3453D01* X25197Y3453D01* X25189Y3452D01* X25181Y3449D01* X25173Y3445D01* X25166Y3439D01* X25160Y3433D01* X25156Y3425D01* X25153Y3417D01* X25144Y3391D01* X25133Y3366D01* X25120Y3343D01* X25105Y3320D01* X25088Y3299D01* X25084Y3295D01* Y3704D01* X25084Y3704D01* X25102Y3683D01* X25117Y3661D01* X25131Y3637D01* X25142Y3613D01* X25151Y3587D01* X25155Y3579D01* X25159Y3572D01* X25165Y3565D01* X25172Y3560D01* X25180Y3556D01* X25188Y3553D01* X25197Y3552D01* X25205Y3552D01* X25214Y3554D01* X25222Y3557D01* X25229Y3562D01* X25236Y3568D01* X25241Y3575D01* X25245Y3582D01* X25248Y3591D01* X25249Y3599D01* X25249Y3608D01* X25247Y3617D01* X25235Y3651D01* X25220Y3683D01* X25202Y3715D01* X25181Y3744D01* X25157Y3772D01* X25132Y3797D01* X25104Y3820D01* X25084Y3834D01* Y5180D01* X25089Y5183D01* X25117Y5207D01* X25142Y5232D01* X25165Y5260D01* X25185Y5290D01* X25203Y5322D01* X25217Y5355D01* X25229Y5389D01* X25231Y5398D01* X25231Y5407D01* X25230Y5415D01* X25227Y5423D01* X25222Y5431D01* X25217Y5438D01* X25210Y5444D01* X25203Y5448D01* X25195Y5451D01* X25186Y5453D01* X25177Y5453D01* X25169Y5452D01* X25161Y5449D01* X25153Y5445D01* X25146Y5439D01* X25140Y5433D01* X25136Y5425D01* X25133Y5417D01* X25124Y5391D01* X25113Y5366D01* X25100Y5343D01* X25085Y5320D01* X25084Y5319D01* Y5680D01* X25097Y5661D01* X25111Y5637D01* X25122Y5613D01* X25131Y5587D01* X25135Y5579D01* X25139Y5572D01* X25145Y5565D01* X25152Y5560D01* X25160Y5556D01* X25168Y5553D01* X25177Y5552D01* X25185Y5552D01* X25194Y5554D01* X25202Y5557D01* X25209Y5562D01* X25216Y5568D01* X25221Y5575D01* X25225Y5582D01* X25228Y5591D01* X25229Y5599D01* X25229Y5608D01* X25227Y5617D01* X25215Y5651D01* X25200Y5683D01* X25182Y5715D01* X25161Y5744D01* X25137Y5772D01* X25112Y5797D01* X25084Y5820D01* Y7196D01* X25097Y7207D01* X25122Y7232D01* X25145Y7260D01* X25165Y7290D01* X25183Y7322D01* X25197Y7355D01* X25209Y7389D01* X25211Y7398D01* X25211Y7407D01* X25210Y7415D01* X25207Y7423D01* X25202Y7431D01* X25197Y7438D01* X25190Y7444D01* X25183Y7448D01* X25175Y7451D01* X25166Y7453D01* X25157Y7453D01* X25149Y7452D01* X25141Y7449D01* X25133Y7445D01* X25126Y7439D01* X25120Y7433D01* X25116Y7425D01* X25113Y7417D01* X25104Y7391D01* X25093Y7366D01* X25084Y7350D01* Y7650D01* X25091Y7637D01* X25102Y7613D01* X25111Y7587D01* X25115Y7579D01* X25119Y7572D01* X25125Y7565D01* X25132Y7560D01* X25140Y7556D01* X25148Y7553D01* X25157Y7552D01* X25165Y7552D01* X25174Y7554D01* X25182Y7557D01* X25189Y7562D01* X25196Y7568D01* X25201Y7575D01* X25205Y7582D01* X25208Y7591D01* X25209Y7599D01* X25209Y7608D01* X25207Y7617D01* X25195Y7651D01* X25180Y7683D01* X25162Y7715D01* X25141Y7744D01* X25117Y7772D01* X25092Y7797D01* X25084Y7804D01* Y9214D01* X25102Y9232D01* X25125Y9260D01* X25145Y9290D01* X25163Y9322D01* X25177Y9355D01* X25189Y9389D01* X25191Y9398D01* X25191Y9407D01* X25190Y9415D01* X25187Y9423D01* X25182Y9431D01* X25177Y9438D01* X25170Y9444D01* X25163Y9448D01* X25155Y9451D01* X25146Y9453D01* X25137Y9453D01* X25129Y9452D01* X25121Y9449D01* X25113Y9445D01* X25106Y9439D01* X25100Y9433D01* X25096Y9425D01* X25093Y9417D01* X25084Y9391D01* X25084Y9391D01* Y9608D01* X25091Y9587D01* X25095Y9579D01* X25099Y9572D01* X25105Y9565D01* X25112Y9560D01* X25120Y9556D01* X25128Y9553D01* X25137Y9552D01* X25145Y9552D01* X25154Y9554D01* X25162Y9557D01* X25169Y9562D01* X25176Y9568D01* X25181Y9575D01* X25185Y9582D01* X25188Y9591D01* X25189Y9599D01* X25189Y9608D01* X25187Y9617D01* X25175Y9651D01* X25160Y9683D01* X25142Y9715D01* X25121Y9744D01* X25097Y9772D01* X25084Y9785D01* Y11235D01* X25105Y11260D01* X25125Y11290D01* X25143Y11322D01* X25157Y11355D01* X25169Y11389D01* X25171Y11398D01* X25171Y11407D01* X25170Y11415D01* X25167Y11423D01* X25162Y11431D01* X25157Y11438D01* X25150Y11444D01* X25143Y11448D01* X25135Y11451D01* X25126Y11453D01* X25117Y11453D01* X25109Y11452D01* X25101Y11449D01* X25093Y11445D01* X25086Y11439D01* X25084Y11437D01* Y11567D01* X25085Y11565D01* X25092Y11560D01* X25100Y11556D01* X25108Y11553D01* X25117Y11552D01* X25125Y11552D01* X25134Y11554D01* X25142Y11557D01* X25149Y11562D01* X25156Y11568D01* X25161Y11575D01* X25165Y11582D01* X25168Y11591D01* X25169Y11599D01* X25169Y11608D01* X25167Y11617D01* X25155Y11651D01* X25140Y11683D01* X25122Y11715D01* X25101Y11744D01* X25084Y11764D01* Y13259D01* X25085Y13260D01* X25105Y13290D01* X25123Y13322D01* X25137Y13355D01* X25149Y13389D01* X25151Y13398D01* X25151Y13407D01* X25150Y13415D01* X25147Y13423D01* X25142Y13431D01* X25137Y13438D01* X25130Y13444D01* X25123Y13448D01* X25115Y13451D01* X25106Y13453D01* X25097Y13453D01* X25089Y13452D01* X25084Y13450D01* Y13555D01* X25088Y13553D01* X25097Y13552D01* X25105Y13552D01* X25114Y13554D01* X25122Y13557D01* X25129Y13562D01* X25136Y13568D01* X25141Y13575D01* X25145Y13582D01* X25148Y13591D01* X25149Y13599D01* X25149Y13608D01* X25147Y13617D01* X25135Y13651D01* X25120Y13683D01* X25102Y13715D01* X25084Y13740D01* Y15288D01* X25085Y15290D01* X25103Y15322D01* X25117Y15355D01* X25129Y15389D01* X25131Y15398D01* X25131Y15407D01* X25130Y15415D01* X25127Y15423D01* X25122Y15431D01* X25117Y15438D01* X25110Y15444D01* X25103Y15448D01* X25095Y15451D01* X25086Y15453D01* X25084D01* Y15552D01* X25085D01* X25094Y15554D01* X25102Y15557D01* X25109Y15562D01* X25116Y15568D01* X25121Y15575D01* X25125Y15582D01* X25128Y15591D01* X25129Y15599D01* X25129Y15608D01* X25127Y15617D01* X25115Y15651D01* X25100Y15683D01* X25084Y15711D01* Y17324D01* X25097Y17355D01* X25109Y17389D01* X25111Y17398D01* X25111Y17407D01* X25110Y17415D01* X25107Y17423D01* X25102Y17431D01* X25097Y17438D01* X25090Y17444D01* X25084Y17447D01* Y17559D01* X25089Y17562D01* X25096Y17568D01* X25101Y17575D01* X25105Y17582D01* X25108Y17591D01* X25109Y17599D01* X25109Y17608D01* X25107Y17617D01* X25095Y17651D01* X25084Y17674D01* Y19374D01* X25089Y19389D01* X25091Y19398D01* X25091Y19407D01* X25090Y19415D01* X25087Y19423D01* X25084Y19428D01* Y19580D01* X25085Y19582D01* X25088Y19591D01* X25089Y19599D01* X25089Y19608D01* X25087Y19617D01* X25084Y19625D01* Y40000D01* G37* G36* X26285D02*X26485D01* Y35859D01* X26482Y35864D01* X26476Y35871D01* X26469Y35876D01* X26462Y35880D01* X26453Y35883D01* X26445Y35884D01* X26436Y35884D01* X26428Y35882D01* X26393Y35870D01* X26361Y35855D01* X26329Y35837D01* X26300Y35816D01* X26285Y35804D01* Y37179D01* X26285Y37179D01* X26315Y37159D01* X26347Y37141D01* X26380Y37127D01* X26414Y37115D01* X26423Y37113D01* X26432Y37113D01* X26440Y37115D01* X26448Y37117D01* X26456Y37122D01* X26463Y37127D01* X26469Y37134D01* X26473Y37141D01* X26476Y37149D01* X26478Y37158D01* X26478Y37167D01* X26477Y37175D01* X26474Y37183D01* X26470Y37191D01* X26464Y37198D01* X26457Y37204D01* X26450Y37208D01* X26442Y37211D01* X26416Y37220D01* X26391Y37231D01* X26368Y37244D01* X26345Y37259D01* X26324Y37276D01* X26305Y37295D01* X26287Y37316D01* X26285Y37319D01* Y37680D01* X26301Y37700D01* X26320Y37719D01* X26341Y37737D01* X26363Y37752D01* X26387Y37766D01* X26411Y37777D01* X26437Y37786D01* X26445Y37790D01* X26452Y37794D01* X26459Y37800D01* X26464Y37807D01* X26468Y37815D01* X26471Y37823D01* X26472Y37832D01* X26472Y37840D01* X26470Y37849D01* X26467Y37857D01* X26462Y37864D01* X26456Y37871D01* X26449Y37876D01* X26442Y37880D01* X26433Y37883D01* X26425Y37884D01* X26416Y37884D01* X26408Y37882D01* X26373Y37870D01* X26341Y37855D01* X26309Y37837D01* X26285Y37820D01* Y39166D01* X26295Y39159D01* X26327Y39141D01* X26360Y39127D01* X26394Y39115D01* X26403Y39113D01* X26412Y39113D01* X26420Y39115D01* X26428Y39117D01* X26436Y39122D01* X26443Y39127D01* X26449Y39134D01* X26453Y39141D01* X26456Y39149D01* X26458Y39158D01* X26458Y39167D01* X26457Y39175D01* X26454Y39183D01* X26450Y39191D01* X26444Y39198D01* X26437Y39204D01* X26430Y39208D01* X26422Y39211D01* X26396Y39220D01* X26371Y39231D01* X26348Y39244D01* X26325Y39259D01* X26304Y39276D01* X26285Y39295D01* Y39704D01* X26300Y39719D01* X26321Y39737D01* X26343Y39752D01* X26367Y39766D01* X26391Y39777D01* X26417Y39786D01* X26425Y39790D01* X26432Y39794D01* X26439Y39800D01* X26444Y39807D01* X26448Y39815D01* X26451Y39823D01* X26452Y39832D01* X26452Y39840D01* X26450Y39849D01* X26447Y39857D01* X26442Y39864D01* X26436Y39871D01* X26429Y39876D01* X26422Y39880D01* X26413Y39883D01* X26405Y39884D01* X26396Y39884D01* X26388Y39882D01* X26353Y39870D01* X26321Y39855D01* X26289Y39837D01* X26285Y39834D01* Y40000D01* G37* G36* X26485Y11765D02*X26464Y11739D01* X26444Y11709D01* X26426Y11677D01* X26412Y11644D01* X26400Y11610D01* X26398Y11601D01* X26398Y11593D01* X26399Y11584D01* X26402Y11576D01* X26407Y11568D01* X26412Y11561D01* X26419Y11556D01* X26426Y11551D01* X26434Y11548D01* X26443Y11546D01* X26452Y11546D01* X26460Y11547D01* X26468Y11550D01* X26476Y11555D01* X26483Y11560D01* X26485Y11563D01* Y11432D01* X26484Y11434D01* X26477Y11439D01* X26469Y11443D01* X26461Y11446D01* X26452Y11447D01* X26444Y11447D01* X26435Y11445D01* X26427Y11442D01* X26420Y11437D01* X26413Y11431D01* X26408Y11424D01* X26404Y11417D01* X26401Y11409D01* X26400Y11400D01* X26400Y11391D01* X26402Y11383D01* X26414Y11349D01* X26429Y11316D01* X26447Y11284D01* X26468Y11255D01* X26485Y11235D01* Y9740D01* X26484Y9739D01* X26464Y9709D01* X26446Y9677D01* X26432Y9644D01* X26420Y9610D01* X26418Y9601D01* X26418Y9593D01* X26419Y9584D01* X26422Y9576D01* X26427Y9568D01* X26432Y9561D01* X26439Y9556D01* X26446Y9551D01* X26454Y9548D01* X26463Y9546D01* X26472Y9546D01* X26480Y9547D01* X26485Y9549D01* Y9445D01* X26481Y9446D01* X26472Y9447D01* X26464Y9447D01* X26455Y9445D01* X26447Y9442D01* X26440Y9437D01* X26433Y9431D01* X26428Y9424D01* X26424Y9417D01* X26421Y9409D01* X26420Y9400D01* X26420Y9391D01* X26422Y9383D01* X26434Y9349D01* X26449Y9316D01* X26467Y9284D01* X26485Y9259D01* Y7711D01* X26484Y7709D01* X26466Y7677D01* X26452Y7644D01* X26440Y7610D01* X26438Y7601D01* X26438Y7593D01* X26439Y7584D01* X26442Y7576D01* X26447Y7568D01* X26452Y7561D01* X26459Y7556D01* X26466Y7551D01* X26474Y7548D01* X26483Y7546D01* X26485D01* Y7447D01* X26484Y7447D01* X26475Y7445D01* X26467Y7442D01* X26460Y7437D01* X26453Y7431D01* X26448Y7424D01* X26444Y7417D01* X26441Y7409D01* X26440Y7400D01* X26440Y7391D01* X26442Y7383D01* X26454Y7349D01* X26469Y7316D01* X26485Y7288D01* Y5675D01* X26472Y5644D01* X26460Y5610D01* X26458Y5601D01* X26458Y5593D01* X26459Y5584D01* X26462Y5576D01* X26467Y5568D01* X26472Y5561D01* X26479Y5556D01* X26485Y5552D01* Y5441D01* X26480Y5437D01* X26473Y5431D01* X26468Y5424D01* X26464Y5417D01* X26461Y5409D01* X26460Y5400D01* X26460Y5391D01* X26462Y5383D01* X26474Y5349D01* X26485Y5325D01* Y3625D01* X26480Y3610D01* X26478Y3601D01* X26478Y3593D01* X26479Y3584D01* X26482Y3576D01* X26485Y3571D01* Y3419D01* X26484Y3417D01* X26481Y3409D01* X26480Y3400D01* X26480Y3391D01* X26482Y3383D01* X26485Y3374D01* Y0D01* X26285D01* Y23374D01* X26294Y23349D01* X26309Y23316D01* X26327Y23284D01* X26348Y23255D01* X26372Y23227D01* X26397Y23202D01* X26425Y23179D01* X26455Y23159D01* X26485Y23142D01* Y21846D01* X26469Y21837D01* X26440Y21816D01* X26412Y21793D01* X26387Y21767D01* X26364Y21739D01* X26344Y21709D01* X26326Y21677D01* X26312Y21644D01* X26300Y21610D01* X26298Y21601D01* X26298Y21593D01* X26299Y21584D01* X26302Y21576D01* X26307Y21568D01* X26312Y21561D01* X26319Y21556D01* X26326Y21551D01* X26334Y21548D01* X26343Y21546D01* X26352Y21546D01* X26360Y21547D01* X26368Y21550D01* X26376Y21555D01* X26383Y21560D01* X26389Y21567D01* X26393Y21574D01* X26396Y21582D01* X26405Y21608D01* X26416Y21633D01* X26429Y21657D01* X26444Y21679D01* X26461Y21700D01* X26480Y21719D01* X26485Y21723D01* Y21276D01* X26484Y21276D01* X26465Y21295D01* X26447Y21316D01* X26432Y21338D01* X26418Y21362D01* X26407Y21386D01* X26398Y21412D01* X26394Y21420D01* X26390Y21427D01* X26384Y21434D01* X26377Y21439D01* X26369Y21443D01* X26361Y21446D01* X26352Y21447D01* X26344Y21447D01* X26335Y21445D01* X26327Y21442D01* X26320Y21437D01* X26313Y21431D01* X26308Y21424D01* X26304Y21417D01* X26301Y21409D01* X26300Y21400D01* X26300Y21391D01* X26302Y21383D01* X26314Y21349D01* X26329Y21316D01* X26347Y21284D01* X26368Y21255D01* X26392Y21227D01* X26417Y21202D01* X26445Y21179D01* X26475Y21159D01* X26485Y21153D01* Y19834D01* X26460Y19816D01* X26432Y19793D01* X26407Y19767D01* X26384Y19739D01* X26364Y19709D01* X26346Y19677D01* X26332Y19644D01* X26320Y19610D01* X26318Y19601D01* X26318Y19593D01* X26319Y19584D01* X26322Y19576D01* X26327Y19568D01* X26332Y19561D01* X26339Y19556D01* X26346Y19551D01* X26354Y19548D01* X26363Y19546D01* X26372Y19546D01* X26380Y19547D01* X26388Y19550D01* X26396Y19555D01* X26403Y19560D01* X26409Y19567D01* X26413Y19574D01* X26416Y19582D01* X26425Y19608D01* X26436Y19633D01* X26449Y19657D01* X26464Y19679D01* X26481Y19700D01* X26485Y19704D01* Y19295D01* X26485Y19295D01* X26467Y19316D01* X26452Y19338D01* X26438Y19362D01* X26427Y19386D01* X26418Y19412D01* X26414Y19420D01* X26410Y19427D01* X26404Y19434D01* X26397Y19439D01* X26389Y19443D01* X26381Y19446D01* X26372Y19447D01* X26364Y19447D01* X26355Y19445D01* X26347Y19442D01* X26340Y19437D01* X26333Y19431D01* X26328Y19424D01* X26324Y19417D01* X26321Y19409D01* X26320Y19400D01* X26320Y19391D01* X26322Y19383D01* X26334Y19349D01* X26349Y19316D01* X26367Y19284D01* X26388Y19255D01* X26412Y19227D01* X26437Y19202D01* X26465Y19179D01* X26485Y19166D01* Y17820D01* X26480Y17816D01* X26452Y17793D01* X26427Y17767D01* X26404Y17739D01* X26384Y17709D01* X26366Y17677D01* X26352Y17644D01* X26340Y17610D01* X26338Y17601D01* X26338Y17593D01* X26339Y17584D01* X26342Y17576D01* X26347Y17568D01* X26352Y17561D01* X26359Y17556D01* X26366Y17551D01* X26374Y17548D01* X26383Y17546D01* X26392Y17546D01* X26400Y17547D01* X26408Y17550D01* X26416Y17555D01* X26423Y17560D01* X26429Y17567D01* X26433Y17574D01* X26436Y17582D01* X26445Y17608D01* X26456Y17633D01* X26469Y17657D01* X26484Y17679D01* X26485Y17680D01* Y17319D01* X26472Y17338D01* X26458Y17362D01* X26447Y17386D01* X26438Y17412D01* X26434Y17420D01* X26430Y17427D01* X26424Y17434D01* X26417Y17439D01* X26409Y17443D01* X26401Y17446D01* X26392Y17447D01* X26384Y17447D01* X26375Y17445D01* X26367Y17442D01* X26360Y17437D01* X26353Y17431D01* X26348Y17424D01* X26344Y17417D01* X26341Y17409D01* X26340Y17400D01* X26340Y17391D01* X26342Y17383D01* X26354Y17349D01* X26369Y17316D01* X26387Y17284D01* X26408Y17255D01* X26432Y17227D01* X26457Y17202D01* X26485Y17179D01* Y15804D01* X26472Y15793D01* X26447Y15767D01* X26424Y15739D01* X26404Y15709D01* X26386Y15677D01* X26372Y15644D01* X26360Y15610D01* X26358Y15601D01* X26358Y15593D01* X26359Y15584D01* X26362Y15576D01* X26367Y15568D01* X26372Y15561D01* X26379Y15556D01* X26386Y15551D01* X26394Y15548D01* X26403Y15546D01* X26412Y15546D01* X26420Y15547D01* X26428Y15550D01* X26436Y15555D01* X26443Y15560D01* X26449Y15567D01* X26453Y15574D01* X26456Y15582D01* X26465Y15608D01* X26476Y15633D01* X26485Y15650D01* Y15349D01* X26478Y15362D01* X26467Y15386D01* X26458Y15412D01* X26454Y15420D01* X26450Y15427D01* X26444Y15434D01* X26437Y15439D01* X26429Y15443D01* X26421Y15446D01* X26412Y15447D01* X26404Y15447D01* X26395Y15445D01* X26387Y15442D01* X26380Y15437D01* X26373Y15431D01* X26368Y15424D01* X26364Y15417D01* X26361Y15409D01* X26360Y15400D01* X26360Y15391D01* X26362Y15383D01* X26374Y15349D01* X26389Y15316D01* X26407Y15284D01* X26428Y15255D01* X26452Y15227D01* X26477Y15202D01* X26485Y15196D01* Y13785D01* X26467Y13767D01* X26444Y13739D01* X26424Y13709D01* X26406Y13677D01* X26392Y13644D01* X26380Y13610D01* X26378Y13601D01* X26378Y13593D01* X26379Y13584D01* X26382Y13576D01* X26387Y13568D01* X26392Y13561D01* X26399Y13556D01* X26406Y13551D01* X26414Y13548D01* X26423Y13546D01* X26432Y13546D01* X26440Y13547D01* X26448Y13550D01* X26456Y13555D01* X26463Y13560D01* X26469Y13567D01* X26473Y13574D01* X26476Y13582D01* X26485Y13608D01* X26485Y13609D01* Y13391D01* X26478Y13412D01* X26474Y13420D01* X26470Y13427D01* X26464Y13434D01* X26457Y13439D01* X26449Y13443D01* X26441Y13446D01* X26432Y13447D01* X26424Y13447D01* X26415Y13445D01* X26407Y13442D01* X26400Y13437D01* X26393Y13431D01* X26388Y13424D01* X26384Y13417D01* X26381Y13409D01* X26380Y13400D01* X26380Y13391D01* X26382Y13383D01* X26394Y13349D01* X26409Y13316D01* X26427Y13284D01* X26448Y13255D01* X26472Y13227D01* X26485Y13214D01* Y11765D01* G37* G36* Y23259D02*X26485Y23259D01* X26464Y23276D01* X26445Y23295D01* X26427Y23316D01* X26412Y23338D01* X26398Y23362D01* X26387Y23386D01* X26378Y23412D01* X26374Y23420D01* X26370Y23427D01* X26364Y23434D01* X26357Y23439D01* X26349Y23443D01* X26341Y23446D01* X26332Y23447D01* X26324Y23447D01* X26315Y23445D01* X26307Y23442D01* X26300Y23437D01* X26293Y23431D01* X26288Y23424D01* X26285Y23419D01* Y23571D01* X26287Y23568D01* X26292Y23561D01* X26299Y23556D01* X26306Y23551D01* X26314Y23548D01* X26323Y23546D01* X26332Y23546D01* X26340Y23547D01* X26348Y23550D01* X26356Y23555D01* X26363Y23560D01* X26369Y23567D01* X26373Y23574D01* X26376Y23582D01* X26385Y23608D01* X26396Y23633D01* X26409Y23657D01* X26424Y23679D01* X26441Y23700D01* X26460Y23719D01* X26481Y23737D01* X26485Y23740D01* Y23259D01* G37* G36* Y23857D02*X26481Y23855D01* X26449Y23837D01* X26420Y23816D01* X26392Y23793D01* X26367Y23767D01* X26344Y23739D01* X26324Y23709D01* X26306Y23677D01* X26292Y23644D01* X26285Y23625D01* Y25325D01* X26289Y25316D01* X26307Y25284D01* X26328Y25255D01* X26352Y25227D01* X26377Y25202D01* X26405Y25179D01* X26435Y25159D01* X26467Y25141D01* X26485Y25133D01* Y23857D01* G37* G36* Y25246D02*X26465Y25259D01* X26444Y25276D01* X26425Y25295D01* X26407Y25316D01* X26392Y25338D01* X26378Y25362D01* X26367Y25386D01* X26358Y25412D01* X26354Y25420D01* X26350Y25427D01* X26344Y25434D01* X26337Y25439D01* X26329Y25443D01* X26321Y25446D01* X26312Y25447D01* X26304Y25447D01* X26295Y25445D01* X26287Y25442D01* X26285Y25441D01* Y25552D01* X26286Y25551D01* X26294Y25548D01* X26303Y25546D01* X26312Y25546D01* X26320Y25547D01* X26328Y25550D01* X26336Y25555D01* X26343Y25560D01* X26349Y25567D01* X26353Y25574D01* X26356Y25582D01* X26365Y25608D01* X26376Y25633D01* X26389Y25657D01* X26404Y25679D01* X26421Y25700D01* X26440Y25719D01* X26461Y25737D01* X26483Y25752D01* X26485Y25754D01* Y25246D01* G37* G36* Y25866D02*X26461Y25855D01* X26429Y25837D01* X26400Y25816D01* X26372Y25793D01* X26347Y25767D01* X26324Y25739D01* X26304Y25709D01* X26286Y25677D01* X26285Y25675D01* Y27288D01* X26287Y27284D01* X26308Y27255D01* X26332Y27227D01* X26357Y27202D01* X26385Y27179D01* X26415Y27159D01* X26447Y27141D01* X26480Y27127D01* X26485Y27125D01* Y25866D01* G37* G36* Y27234D02*X26468Y27244D01* X26445Y27259D01* X26424Y27276D01* X26405Y27295D01* X26387Y27316D01* X26372Y27338D01* X26358Y27362D01* X26347Y27386D01* X26338Y27412D01* X26334Y27420D01* X26330Y27427D01* X26324Y27434D01* X26317Y27439D01* X26309Y27443D01* X26301Y27446D01* X26292Y27447D01* X26285Y27447D01* Y27546D01* X26292Y27546D01* X26300Y27547D01* X26308Y27550D01* X26316Y27555D01* X26323Y27560D01* X26329Y27567D01* X26333Y27574D01* X26336Y27582D01* X26345Y27608D01* X26356Y27633D01* X26369Y27657D01* X26384Y27679D01* X26401Y27700D01* X26420Y27719D01* X26441Y27737D01* X26463Y27752D01* X26485Y27765D01* Y27234D01* G37* G36* Y27874D02*X26473Y27870D01* X26441Y27855D01* X26409Y27837D01* X26380Y27816D01* X26352Y27793D01* X26327Y27767D01* X26304Y27739D01* X26285Y27711D01* Y29259D01* X26288Y29255D01* X26312Y29227D01* X26337Y29202D01* X26365Y29179D01* X26395Y29159D01* X26427Y29141D01* X26460Y29127D01* X26485Y29118D01* Y27874D01* G37* G36* Y29225D02*X26471Y29231D01* X26448Y29244D01* X26425Y29259D01* X26404Y29276D01* X26385Y29295D01* X26367Y29316D01* X26352Y29338D01* X26338Y29362D01* X26327Y29386D01* X26318Y29412D01* X26314Y29420D01* X26310Y29427D01* X26304Y29434D01* X26297Y29439D01* X26289Y29443D01* X26285Y29445D01* Y29549D01* X26288Y29550D01* X26296Y29555D01* X26303Y29560D01* X26309Y29567D01* X26313Y29574D01* X26316Y29582D01* X26325Y29608D01* X26336Y29633D01* X26349Y29657D01* X26364Y29679D01* X26381Y29700D01* X26400Y29719D01* X26421Y29737D01* X26443Y29752D01* X26467Y29766D01* X26485Y29775D01* Y29225D01* G37* G36* Y29881D02*X26453Y29870D01* X26421Y29855D01* X26389Y29837D01* X26360Y29816D01* X26332Y29793D01* X26307Y29767D01* X26285Y29740D01* Y31235D01* X26292Y31227D01* X26317Y31202D01* X26345Y31179D01* X26375Y31159D01* X26407Y31141D01* X26440Y31127D01* X26474Y31115D01* X26483Y31113D01* X26485D01* Y29881D01* G37* G36* Y31217D02*X26476Y31220D01* X26451Y31231D01* X26428Y31244D01* X26405Y31259D01* X26384Y31276D01* X26365Y31295D01* X26347Y31316D01* X26332Y31338D01* X26318Y31362D01* X26307Y31386D01* X26298Y31412D01* X26294Y31420D01* X26290Y31427D01* X26285Y31432D01* Y31563D01* X26289Y31567D01* X26293Y31574D01* X26296Y31582D01* X26305Y31608D01* X26316Y31633D01* X26329Y31657D01* X26344Y31679D01* X26361Y31700D01* X26380Y31719D01* X26401Y31737D01* X26423Y31752D01* X26447Y31766D01* X26471Y31777D01* X26485Y31782D01* Y31217D01* G37* G36* Y31884D02*X26485Y31884D01* X26476Y31884D01* X26468Y31882D01* X26433Y31870D01* X26401Y31855D01* X26369Y31837D01* X26340Y31816D01* X26312Y31793D01* X26287Y31767D01* X26285Y31765D01* Y33214D01* X26297Y33202D01* X26325Y33179D01* X26355Y33159D01* X26387Y33141D01* X26420Y33127D01* X26454Y33115D01* X26463Y33113D01* X26472Y33113D01* X26480Y33115D01* X26485Y33116D01* Y31884D01* G37* G36* Y33210D02*X26482Y33211D01* X26456Y33220D01* X26431Y33231D01* X26408Y33244D01* X26385Y33259D01* X26364Y33276D01* X26345Y33295D01* X26327Y33316D01* X26312Y33338D01* X26298Y33362D01* X26287Y33386D01* X26285Y33391D01* Y33609D01* X26296Y33633D01* X26309Y33657D01* X26324Y33679D01* X26341Y33700D01* X26360Y33719D01* X26381Y33737D01* X26403Y33752D01* X26427Y33766D01* X26451Y33777D01* X26477Y33786D01* X26485Y33790D01* X26485Y33790D01* Y33210D01* G37* G36* Y33878D02*X26482Y33880D01* X26473Y33883D01* X26465Y33884D01* X26456Y33884D01* X26448Y33882D01* X26413Y33870D01* X26381Y33855D01* X26349Y33837D01* X26320Y33816D01* X26292Y33793D01* X26285Y33785D01* Y35196D01* X26305Y35179D01* X26335Y35159D01* X26367Y35141D01* X26400Y35127D01* X26434Y35115D01* X26443Y35113D01* X26452Y35113D01* X26460Y35115D01* X26468Y35117D01* X26476Y35122D01* X26483Y35127D01* X26485Y35130D01* Y33878D01* G37* G36* Y35197D02*X26484Y35198D01* X26477Y35204D01* X26470Y35208D01* X26462Y35211D01* X26436Y35220D01* X26411Y35231D01* X26388Y35244D01* X26365Y35259D01* X26344Y35276D01* X26325Y35295D01* X26307Y35316D01* X26292Y35338D01* X26285Y35349D01* Y35650D01* X26289Y35657D01* X26304Y35679D01* X26321Y35700D01* X26340Y35719D01* X26361Y35737D01* X26383Y35752D01* X26407Y35766D01* X26431Y35777D01* X26457Y35786D01* X26465Y35790D01* X26472Y35794D01* X26479Y35800D01* X26484Y35807D01* X26485Y35809D01* Y35197D01* G37* G36* Y40000D02*X26724D01* Y39834D01* X26714Y39840D01* X26682Y39858D01* X26649Y39873D01* X26615Y39884D01* X26606Y39886D01* X26597Y39886D01* X26589Y39885D01* X26581Y39882D01* X26573Y39878D01* X26566Y39872D01* X26560Y39865D01* X26556Y39858D01* X26553Y39850D01* X26551Y39841D01* X26551Y39833D01* X26552Y39824D01* X26555Y39816D01* X26559Y39808D01* X26565Y39801D01* X26572Y39796D01* X26579Y39791D01* X26587Y39788D01* X26613Y39779D01* X26638Y39768D01* X26661Y39755D01* X26684Y39740D01* X26705Y39723D01* X26724Y39704D01* Y39295D01* X26709Y39280D01* X26688Y39262D01* X26666Y39247D01* X26642Y39233D01* X26618Y39222D01* X26592Y39213D01* X26584Y39209D01* X26577Y39205D01* X26570Y39199D01* X26565Y39192D01* X26561Y39184D01* X26558Y39176D01* X26557Y39167D01* X26557Y39159D01* X26559Y39150D01* X26562Y39142D01* X26567Y39135D01* X26573Y39128D01* X26580Y39123D01* X26587Y39119D01* X26596Y39116D01* X26604Y39115D01* X26613Y39115D01* X26621Y39117D01* X26656Y39129D01* X26688Y39144D01* X26720Y39162D01* X26724Y39165D01* Y37846D01* X26702Y37858D01* X26669Y37873D01* X26635Y37884D01* X26626Y37886D01* X26617Y37886D01* X26609Y37885D01* X26601Y37882D01* X26593Y37878D01* X26586Y37872D01* X26580Y37865D01* X26576Y37858D01* X26573Y37850D01* X26571Y37841D01* X26571Y37833D01* X26572Y37824D01* X26575Y37816D01* X26579Y37808D01* X26585Y37801D01* X26592Y37796D01* X26599Y37791D01* X26607Y37788D01* X26633Y37779D01* X26658Y37768D01* X26681Y37755D01* X26704Y37740D01* X26724Y37724D01* Y37276D01* X26708Y37262D01* X26686Y37247D01* X26662Y37233D01* X26638Y37222D01* X26612Y37213D01* X26604Y37209D01* X26597Y37205D01* X26590Y37199D01* X26585Y37192D01* X26581Y37184D01* X26578Y37176D01* X26577Y37167D01* X26577Y37159D01* X26579Y37150D01* X26582Y37142D01* X26587Y37135D01* X26593Y37128D01* X26600Y37123D01* X26607Y37119D01* X26616Y37116D01* X26624Y37115D01* X26633Y37115D01* X26641Y37117D01* X26676Y37129D01* X26708Y37144D01* X26724Y37153D01* Y35857D01* X26722Y35858D01* X26689Y35873D01* X26655Y35884D01* X26646Y35886D01* X26637Y35886D01* X26629Y35885D01* X26621Y35882D01* X26613Y35878D01* X26606Y35872D01* X26600Y35865D01* X26596Y35858D01* X26593Y35850D01* X26591Y35841D01* X26591Y35833D01* X26592Y35824D01* X26595Y35816D01* X26599Y35808D01* X26605Y35801D01* X26612Y35796D01* X26619Y35791D01* X26627Y35788D01* X26653Y35779D01* X26678Y35768D01* X26701Y35755D01* X26724Y35740D01* Y35259D01* X26706Y35247D01* X26682Y35233D01* X26658Y35222D01* X26632Y35213D01* X26624Y35209D01* X26617Y35205D01* X26610Y35199D01* X26605Y35192D01* X26601Y35184D01* X26598Y35176D01* X26597Y35167D01* X26597Y35159D01* X26599Y35150D01* X26602Y35142D01* X26607Y35135D01* X26613Y35128D01* X26620Y35123D01* X26627Y35119D01* X26636Y35116D01* X26644Y35115D01* X26653Y35115D01* X26661Y35117D01* X26696Y35129D01* X26724Y35142D01* Y33866D01* X26709Y33873D01* X26675Y33884D01* X26666Y33886D01* X26657Y33886D01* X26649Y33885D01* X26641Y33882D01* X26633Y33878D01* X26626Y33872D01* X26620Y33865D01* X26616Y33858D01* X26613Y33850D01* X26611Y33841D01* X26611Y33833D01* X26612Y33824D01* X26615Y33816D01* X26619Y33808D01* X26625Y33801D01* X26632Y33796D01* X26639Y33791D01* X26647Y33788D01* X26673Y33779D01* X26698Y33768D01* X26721Y33755D01* X26724Y33754D01* Y33246D01* X26702Y33233D01* X26678Y33222D01* X26652Y33213D01* X26644Y33209D01* X26637Y33205D01* X26630Y33199D01* X26625Y33192D01* X26621Y33184D01* X26618Y33176D01* X26617Y33167D01* X26617Y33159D01* X26619Y33150D01* X26622Y33142D01* X26627Y33135D01* X26633Y33128D01* X26640Y33123D01* X26647Y33119D01* X26656Y33116D01* X26664Y33115D01* X26673Y33115D01* X26681Y33117D01* X26716Y33129D01* X26724Y33133D01* Y31874D01* X26695Y31884D01* X26686Y31886D01* X26677Y31886D01* X26669Y31885D01* X26661Y31882D01* X26653Y31878D01* X26646Y31872D01* X26640Y31865D01* X26636Y31858D01* X26633Y31850D01* X26631Y31841D01* X26631Y31833D01* X26632Y31824D01* X26635Y31816D01* X26639Y31808D01* X26645Y31801D01* X26652Y31796D01* X26659Y31791D01* X26667Y31788D01* X26693Y31779D01* X26718Y31768D01* X26724Y31765D01* Y31234D01* X26722Y31233D01* X26698Y31222D01* X26672Y31213D01* X26664Y31209D01* X26657Y31205D01* X26650Y31199D01* X26645Y31192D01* X26641Y31184D01* X26638Y31176D01* X26637Y31167D01* X26637Y31159D01* X26639Y31150D01* X26642Y31142D01* X26647Y31135D01* X26653Y31128D01* X26660Y31123D01* X26667Y31119D01* X26676Y31116D01* X26684Y31115D01* X26693Y31115D01* X26701Y31117D01* X26724Y31125D01* Y29881D01* X26715Y29884D01* X26706Y29886D01* X26697Y29886D01* X26689Y29885D01* X26681Y29882D01* X26673Y29878D01* X26666Y29872D01* X26660Y29865D01* X26656Y29858D01* X26653Y29850D01* X26651Y29841D01* X26651Y29833D01* X26652Y29824D01* X26655Y29816D01* X26659Y29808D01* X26665Y29801D01* X26672Y29796D01* X26679Y29791D01* X26687Y29788D01* X26713Y29779D01* X26724Y29774D01* Y29225D01* X26718Y29222D01* X26692Y29213D01* X26684Y29209D01* X26677Y29205D01* X26670Y29199D01* X26665Y29192D01* X26661Y29184D01* X26658Y29176D01* X26657Y29167D01* X26657Y29159D01* X26659Y29150D01* X26662Y29142D01* X26667Y29135D01* X26673Y29128D01* X26680Y29123D01* X26687Y29119D01* X26696Y29116D01* X26704Y29115D01* X26713Y29115D01* X26721Y29117D01* X26724Y29118D01* Y27886D01* X26717Y27886D01* X26709Y27885D01* X26701Y27882D01* X26693Y27878D01* X26686Y27872D01* X26680Y27865D01* X26676Y27858D01* X26673Y27850D01* X26671Y27841D01* X26671Y27833D01* X26672Y27824D01* X26675Y27816D01* X26679Y27808D01* X26685Y27801D01* X26692Y27796D01* X26699Y27791D01* X26707Y27788D01* X26724Y27782D01* Y27217D01* X26712Y27213D01* X26704Y27209D01* X26697Y27205D01* X26690Y27199D01* X26685Y27192D01* X26681Y27184D01* X26678Y27176D01* X26677Y27167D01* X26677Y27159D01* X26679Y27150D01* X26682Y27142D01* X26687Y27135D01* X26693Y27128D01* X26700Y27123D01* X26707Y27119D01* X26716Y27116D01* X26724Y27115D01* Y25883D01* X26721Y25882D01* X26713Y25878D01* X26706Y25872D01* X26700Y25865D01* X26696Y25858D01* X26693Y25850D01* X26691Y25841D01* X26691Y25833D01* X26692Y25824D01* X26695Y25816D01* X26699Y25808D01* X26705Y25801D01* X26712Y25796D01* X26719Y25791D01* X26724Y25789D01* Y25209D01* X26717Y25205D01* X26710Y25199D01* X26705Y25192D01* X26701Y25184D01* X26698Y25176D01* X26697Y25167D01* X26697Y25159D01* X26699Y25150D01* X26702Y25142D01* X26707Y25135D01* X26713Y25128D01* X26720Y25123D01* X26724Y25121D01* Y23870D01* X26720Y23865D01* X26716Y23858D01* X26713Y23850D01* X26711Y23841D01* X26711Y23833D01* X26712Y23824D01* X26715Y23816D01* X26719Y23808D01* X26724Y23802D01* Y23190D01* X26721Y23184D01* X26718Y23176D01* X26717Y23167D01* X26717Y23159D01* X26719Y23150D01* X26722Y23142D01* X26724Y23140D01* Y11861D01* X26722Y11864D01* X26716Y11871D01* X26709Y11876D01* X26702Y11880D01* X26693Y11883D01* X26685Y11884D01* X26676Y11884D01* X26668Y11882D01* X26633Y11870D01* X26601Y11855D01* X26569Y11837D01* X26540Y11816D01* X26512Y11793D01* X26487Y11767D01* X26485Y11765D01* Y13214D01* X26497Y13202D01* X26525Y13179D01* X26555Y13159D01* X26587Y13141D01* X26620Y13127D01* X26654Y13115D01* X26663Y13113D01* X26672Y13113D01* X26680Y13115D01* X26688Y13117D01* X26696Y13122D01* X26703Y13127D01* X26709Y13134D01* X26713Y13141D01* X26716Y13149D01* X26718Y13158D01* X26718Y13167D01* X26717Y13175D01* X26714Y13183D01* X26710Y13191D01* X26704Y13198D01* X26697Y13204D01* X26690Y13208D01* X26682Y13211D01* X26656Y13220D01* X26631Y13231D01* X26608Y13244D01* X26585Y13259D01* X26564Y13276D01* X26545Y13295D01* X26527Y13316D01* X26512Y13338D01* X26498Y13362D01* X26487Y13386D01* X26485Y13391D01* Y13609D01* X26496Y13633D01* X26509Y13657D01* X26524Y13679D01* X26541Y13700D01* X26560Y13719D01* X26581Y13737D01* X26603Y13752D01* X26627Y13766D01* X26651Y13777D01* X26677Y13786D01* X26685Y13790D01* X26692Y13794D01* X26699Y13800D01* X26704Y13807D01* X26708Y13815D01* X26711Y13823D01* X26712Y13832D01* X26712Y13840D01* X26710Y13849D01* X26707Y13857D01* X26702Y13864D01* X26696Y13871D01* X26689Y13876D01* X26682Y13880D01* X26673Y13883D01* X26665Y13884D01* X26656Y13884D01* X26648Y13882D01* X26613Y13870D01* X26581Y13855D01* X26549Y13837D01* X26520Y13816D01* X26492Y13793D01* X26485Y13785D01* Y15196D01* X26505Y15179D01* X26535Y15159D01* X26567Y15141D01* X26600Y15127D01* X26634Y15115D01* X26643Y15113D01* X26652Y15113D01* X26660Y15115D01* X26668Y15117D01* X26676Y15122D01* X26683Y15127D01* X26689Y15134D01* X26693Y15141D01* X26696Y15149D01* X26698Y15158D01* X26698Y15167D01* X26697Y15175D01* X26694Y15183D01* X26690Y15191D01* X26684Y15198D01* X26677Y15204D01* X26670Y15208D01* X26662Y15211D01* X26636Y15220D01* X26611Y15231D01* X26588Y15244D01* X26565Y15259D01* X26544Y15276D01* X26525Y15295D01* X26507Y15316D01* X26492Y15338D01* X26485Y15349D01* Y15650D01* X26489Y15657D01* X26504Y15679D01* X26521Y15700D01* X26540Y15719D01* X26561Y15737D01* X26583Y15752D01* X26607Y15766D01* X26631Y15777D01* X26657Y15786D01* X26665Y15790D01* X26672Y15794D01* X26679Y15800D01* X26684Y15807D01* X26688Y15815D01* X26691Y15823D01* X26692Y15832D01* X26692Y15840D01* X26690Y15849D01* X26687Y15857D01* X26682Y15864D01* X26676Y15871D01* X26669Y15876D01* X26662Y15880D01* X26653Y15883D01* X26645Y15884D01* X26636Y15884D01* X26628Y15882D01* X26593Y15870D01* X26561Y15855D01* X26529Y15837D01* X26500Y15816D01* X26485Y15804D01* Y17179D01* X26485Y17179D01* X26515Y17159D01* X26547Y17141D01* X26580Y17127D01* X26614Y17115D01* X26623Y17113D01* X26632Y17113D01* X26640Y17115D01* X26648Y17117D01* X26656Y17122D01* X26663Y17127D01* X26669Y17134D01* X26673Y17141D01* X26676Y17149D01* X26678Y17158D01* X26678Y17167D01* X26677Y17175D01* X26674Y17183D01* X26670Y17191D01* X26664Y17198D01* X26657Y17204D01* X26650Y17208D01* X26642Y17211D01* X26616Y17220D01* X26591Y17231D01* X26568Y17244D01* X26545Y17259D01* X26524Y17276D01* X26505Y17295D01* X26487Y17316D01* X26485Y17319D01* Y17680D01* X26501Y17700D01* X26520Y17719D01* X26541Y17737D01* X26563Y17752D01* X26587Y17766D01* X26611Y17777D01* X26637Y17786D01* X26645Y17790D01* X26652Y17794D01* X26659Y17800D01* X26664Y17807D01* X26668Y17815D01* X26671Y17823D01* X26672Y17832D01* X26672Y17840D01* X26670Y17849D01* X26667Y17857D01* X26662Y17864D01* X26656Y17871D01* X26649Y17876D01* X26642Y17880D01* X26633Y17883D01* X26625Y17884D01* X26616Y17884D01* X26608Y17882D01* X26573Y17870D01* X26541Y17855D01* X26509Y17837D01* X26485Y17820D01* Y19166D01* X26495Y19159D01* X26527Y19141D01* X26560Y19127D01* X26594Y19115D01* X26603Y19113D01* X26612Y19113D01* X26620Y19115D01* X26628Y19117D01* X26636Y19122D01* X26643Y19127D01* X26649Y19134D01* X26653Y19141D01* X26656Y19149D01* X26658Y19158D01* X26658Y19167D01* X26657Y19175D01* X26654Y19183D01* X26650Y19191D01* X26644Y19198D01* X26637Y19204D01* X26630Y19208D01* X26622Y19211D01* X26596Y19220D01* X26571Y19231D01* X26548Y19244D01* X26525Y19259D01* X26504Y19276D01* X26485Y19295D01* Y19704D01* X26500Y19719D01* X26521Y19737D01* X26543Y19752D01* X26567Y19766D01* X26591Y19777D01* X26617Y19786D01* X26625Y19790D01* X26632Y19794D01* X26639Y19800D01* X26644Y19807D01* X26648Y19815D01* X26651Y19823D01* X26652Y19832D01* X26652Y19840D01* X26650Y19849D01* X26647Y19857D01* X26642Y19864D01* X26636Y19871D01* X26629Y19876D01* X26622Y19880D01* X26613Y19883D01* X26605Y19884D01* X26596Y19884D01* X26588Y19882D01* X26553Y19870D01* X26521Y19855D01* X26489Y19837D01* X26485Y19834D01* Y21153D01* X26507Y21141D01* X26540Y21127D01* X26574Y21115D01* X26583Y21113D01* X26592Y21113D01* X26600Y21115D01* X26608Y21117D01* X26616Y21122D01* X26623Y21127D01* X26629Y21134D01* X26633Y21141D01* X26636Y21149D01* X26638Y21158D01* X26638Y21167D01* X26637Y21175D01* X26634Y21183D01* X26630Y21191D01* X26624Y21198D01* X26617Y21204D01* X26610Y21208D01* X26602Y21211D01* X26576Y21220D01* X26551Y21231D01* X26528Y21244D01* X26505Y21259D01* X26485Y21276D01* Y21723D01* X26501Y21737D01* X26523Y21752D01* X26547Y21766D01* X26571Y21777D01* X26597Y21786D01* X26605Y21790D01* X26612Y21794D01* X26619Y21800D01* X26624Y21807D01* X26628Y21815D01* X26631Y21823D01* X26632Y21832D01* X26632Y21840D01* X26630Y21849D01* X26627Y21857D01* X26622Y21864D01* X26616Y21871D01* X26609Y21876D01* X26602Y21880D01* X26593Y21883D01* X26585Y21884D01* X26576Y21884D01* X26568Y21882D01* X26533Y21870D01* X26501Y21855D01* X26485Y21846D01* Y23142D01* X26487Y23141D01* X26520Y23127D01* X26554Y23115D01* X26563Y23113D01* X26572Y23113D01* X26580Y23115D01* X26588Y23117D01* X26596Y23122D01* X26603Y23127D01* X26609Y23134D01* X26613Y23141D01* X26616Y23149D01* X26618Y23158D01* X26618Y23167D01* X26617Y23175D01* X26614Y23183D01* X26610Y23191D01* X26604Y23198D01* X26597Y23204D01* X26590Y23208D01* X26582Y23211D01* X26556Y23220D01* X26531Y23231D01* X26508Y23244D01* X26485Y23259D01* Y23740D01* X26503Y23752D01* X26527Y23766D01* X26551Y23777D01* X26577Y23786D01* X26585Y23790D01* X26592Y23794D01* X26599Y23800D01* X26604Y23807D01* X26608Y23815D01* X26611Y23823D01* X26612Y23832D01* X26612Y23840D01* X26610Y23849D01* X26607Y23857D01* X26602Y23864D01* X26596Y23871D01* X26589Y23876D01* X26582Y23880D01* X26573Y23883D01* X26565Y23884D01* X26556Y23884D01* X26548Y23882D01* X26513Y23870D01* X26485Y23857D01* Y25133D01* X26500Y25127D01* X26534Y25115D01* X26543Y25113D01* X26552Y25113D01* X26560Y25115D01* X26568Y25117D01* X26576Y25122D01* X26583Y25127D01* X26589Y25134D01* X26593Y25141D01* X26596Y25149D01* X26598Y25158D01* X26598Y25167D01* X26597Y25175D01* X26594Y25183D01* X26590Y25191D01* X26584Y25198D01* X26577Y25204D01* X26570Y25208D01* X26562Y25211D01* X26536Y25220D01* X26511Y25231D01* X26488Y25244D01* X26485Y25246D01* Y25754D01* X26507Y25766D01* X26531Y25777D01* X26557Y25786D01* X26565Y25790D01* X26572Y25794D01* X26579Y25800D01* X26584Y25807D01* X26588Y25815D01* X26591Y25823D01* X26592Y25832D01* X26592Y25840D01* X26590Y25849D01* X26587Y25857D01* X26582Y25864D01* X26576Y25871D01* X26569Y25876D01* X26562Y25880D01* X26553Y25883D01* X26545Y25884D01* X26536Y25884D01* X26528Y25882D01* X26493Y25870D01* X26485Y25866D01* Y27125D01* X26514Y27115D01* X26523Y27113D01* X26532Y27113D01* X26540Y27115D01* X26548Y27117D01* X26556Y27122D01* X26563Y27127D01* X26569Y27134D01* X26573Y27141D01* X26576Y27149D01* X26578Y27158D01* X26578Y27167D01* X26577Y27175D01* X26574Y27183D01* X26570Y27191D01* X26564Y27198D01* X26557Y27204D01* X26550Y27208D01* X26542Y27211D01* X26516Y27220D01* X26491Y27231D01* X26485Y27234D01* Y27765D01* X26487Y27766D01* X26511Y27777D01* X26537Y27786D01* X26545Y27790D01* X26552Y27794D01* X26559Y27800D01* X26564Y27807D01* X26568Y27815D01* X26571Y27823D01* X26572Y27832D01* X26572Y27840D01* X26570Y27849D01* X26567Y27857D01* X26562Y27864D01* X26556Y27871D01* X26549Y27876D01* X26542Y27880D01* X26533Y27883D01* X26525Y27884D01* X26516Y27884D01* X26508Y27882D01* X26485Y27874D01* Y29118D01* X26494Y29115D01* X26503Y29113D01* X26512Y29113D01* X26520Y29115D01* X26528Y29117D01* X26536Y29122D01* X26543Y29127D01* X26549Y29134D01* X26553Y29141D01* X26556Y29149D01* X26558Y29158D01* X26558Y29167D01* X26557Y29175D01* X26554Y29183D01* X26550Y29191D01* X26544Y29198D01* X26537Y29204D01* X26530Y29208D01* X26522Y29211D01* X26496Y29220D01* X26485Y29225D01* Y29775D01* X26491Y29777D01* X26517Y29786D01* X26525Y29790D01* X26532Y29794D01* X26539Y29800D01* X26544Y29807D01* X26548Y29815D01* X26551Y29823D01* X26552Y29832D01* X26552Y29840D01* X26550Y29849D01* X26547Y29857D01* X26542Y29864D01* X26536Y29871D01* X26529Y29876D01* X26522Y29880D01* X26513Y29883D01* X26505Y29884D01* X26496Y29884D01* X26488Y29882D01* X26485Y29881D01* Y31113D01* X26492Y31113D01* X26500Y31115D01* X26508Y31117D01* X26516Y31122D01* X26523Y31127D01* X26529Y31134D01* X26533Y31141D01* X26536Y31149D01* X26538Y31158D01* X26538Y31167D01* X26537Y31175D01* X26534Y31183D01* X26530Y31191D01* X26524Y31198D01* X26517Y31204D01* X26510Y31208D01* X26502Y31211D01* X26485Y31217D01* Y31782D01* X26497Y31786D01* X26505Y31790D01* X26512Y31794D01* X26519Y31800D01* X26524Y31807D01* X26528Y31815D01* X26531Y31823D01* X26532Y31832D01* X26532Y31840D01* X26530Y31849D01* X26527Y31857D01* X26522Y31864D01* X26516Y31871D01* X26509Y31876D01* X26502Y31880D01* X26493Y31883D01* X26485Y31884D01* Y33116D01* X26488Y33117D01* X26496Y33122D01* X26503Y33127D01* X26509Y33134D01* X26513Y33141D01* X26516Y33149D01* X26518Y33158D01* X26518Y33167D01* X26517Y33175D01* X26514Y33183D01* X26510Y33191D01* X26504Y33198D01* X26497Y33204D01* X26490Y33208D01* X26485Y33210D01* Y33790D01* X26492Y33794D01* X26499Y33800D01* X26504Y33807D01* X26508Y33815D01* X26511Y33823D01* X26512Y33832D01* X26512Y33840D01* X26510Y33849D01* X26507Y33857D01* X26502Y33864D01* X26496Y33871D01* X26489Y33876D01* X26485Y33878D01* Y35130D01* X26489Y35134D01* X26493Y35141D01* X26496Y35149D01* X26498Y35158D01* X26498Y35167D01* X26497Y35175D01* X26494Y35183D01* X26490Y35191D01* X26485Y35197D01* Y35809D01* X26488Y35815D01* X26491Y35823D01* X26492Y35832D01* X26492Y35840D01* X26490Y35849D01* X26487Y35857D01* X26485Y35859D01* Y40000D01* G37* G36* Y11563D02*X26489Y11567D01* X26493Y11574D01* X26496Y11582D01* X26505Y11608D01* X26516Y11633D01* X26529Y11657D01* X26544Y11679D01* X26561Y11700D01* X26580Y11719D01* X26601Y11737D01* X26623Y11752D01* X26647Y11766D01* X26671Y11777D01* X26697Y11786D01* X26705Y11790D01* X26712Y11794D01* X26719Y11800D01* X26724Y11807D01* Y11198D01* X26717Y11204D01* X26710Y11208D01* X26702Y11211D01* X26676Y11220D01* X26651Y11231D01* X26628Y11244D01* X26605Y11259D01* X26584Y11276D01* X26565Y11295D01* X26547Y11316D01* X26532Y11338D01* X26518Y11362D01* X26507Y11386D01* X26498Y11412D01* X26494Y11420D01* X26490Y11427D01* X26485Y11432D01* Y11563D01* G37* G36* Y11235D02*X26492Y11227D01* X26517Y11202D01* X26545Y11179D01* X26575Y11159D01* X26607Y11141D01* X26640Y11127D01* X26674Y11115D01* X26683Y11113D01* X26692Y11113D01* X26700Y11115D01* X26708Y11117D01* X26716Y11122D01* X26723Y11127D01* X26724Y11128D01* Y9879D01* X26722Y9880D01* X26713Y9883D01* X26705Y9884D01* X26696Y9884D01* X26688Y9882D01* X26653Y9870D01* X26621Y9855D01* X26589Y9837D01* X26560Y9816D01* X26532Y9793D01* X26507Y9767D01* X26485Y9740D01* Y11235D01* G37* G36* Y9549D02*X26488Y9550D01* X26496Y9555D01* X26503Y9560D01* X26509Y9567D01* X26513Y9574D01* X26516Y9582D01* X26525Y9608D01* X26536Y9633D01* X26549Y9657D01* X26564Y9679D01* X26581Y9700D01* X26600Y9719D01* X26621Y9737D01* X26643Y9752D01* X26667Y9766D01* X26691Y9777D01* X26717Y9786D01* X26724Y9789D01* Y9210D01* X26722Y9211D01* X26696Y9220D01* X26671Y9231D01* X26648Y9244D01* X26625Y9259D01* X26604Y9276D01* X26585Y9295D01* X26567Y9316D01* X26552Y9338D01* X26538Y9362D01* X26527Y9386D01* X26518Y9412D01* X26514Y9420D01* X26510Y9427D01* X26504Y9434D01* X26497Y9439D01* X26489Y9443D01* X26485Y9445D01* Y9549D01* G37* G36* Y9259D02*X26488Y9255D01* X26512Y9227D01* X26537Y9202D01* X26565Y9179D01* X26595Y9159D01* X26627Y9141D01* X26660Y9127D01* X26694Y9115D01* X26703Y9113D01* X26712Y9113D01* X26720Y9115D01* X26724Y9116D01* Y7884D01* X26716Y7884D01* X26708Y7882D01* X26673Y7870D01* X26641Y7855D01* X26609Y7837D01* X26580Y7816D01* X26552Y7793D01* X26527Y7767D01* X26504Y7739D01* X26485Y7711D01* Y9259D01* G37* G36* Y7546D02*X26492Y7546D01* X26500Y7547D01* X26508Y7550D01* X26516Y7555D01* X26523Y7560D01* X26529Y7567D01* X26533Y7574D01* X26536Y7582D01* X26545Y7608D01* X26556Y7633D01* X26569Y7657D01* X26584Y7679D01* X26601Y7700D01* X26620Y7719D01* X26641Y7737D01* X26663Y7752D01* X26687Y7766D01* X26711Y7777D01* X26724Y7782D01* Y7217D01* X26716Y7220D01* X26691Y7231D01* X26668Y7244D01* X26645Y7259D01* X26624Y7276D01* X26605Y7295D01* X26587Y7316D01* X26572Y7338D01* X26558Y7362D01* X26547Y7386D01* X26538Y7412D01* X26534Y7420D01* X26530Y7427D01* X26524Y7434D01* X26517Y7439D01* X26509Y7443D01* X26501Y7446D01* X26492Y7447D01* X26485Y7447D01* Y7546D01* G37* G36* Y7288D02*X26487Y7284D01* X26508Y7255D01* X26532Y7227D01* X26557Y7202D01* X26585Y7179D01* X26615Y7159D01* X26647Y7141D01* X26680Y7127D01* X26714Y7115D01* X26723Y7113D01* X26724D01* Y5881D01* X26693Y5870D01* X26661Y5855D01* X26629Y5837D01* X26600Y5816D01* X26572Y5793D01* X26547Y5767D01* X26524Y5739D01* X26504Y5709D01* X26486Y5677D01* X26485Y5675D01* Y7288D01* G37* G36* Y5552D02*X26486Y5551D01* X26494Y5548D01* X26503Y5546D01* X26512Y5546D01* X26520Y5547D01* X26528Y5550D01* X26536Y5555D01* X26543Y5560D01* X26549Y5567D01* X26553Y5574D01* X26556Y5582D01* X26565Y5608D01* X26576Y5633D01* X26589Y5657D01* X26604Y5679D01* X26621Y5700D01* X26640Y5719D01* X26661Y5737D01* X26683Y5752D01* X26707Y5766D01* X26724Y5774D01* Y5225D01* X26711Y5231D01* X26688Y5244D01* X26665Y5259D01* X26644Y5276D01* X26625Y5295D01* X26607Y5316D01* X26592Y5338D01* X26578Y5362D01* X26567Y5386D01* X26558Y5412D01* X26554Y5420D01* X26550Y5427D01* X26544Y5434D01* X26537Y5439D01* X26529Y5443D01* X26521Y5446D01* X26512Y5447D01* X26504Y5447D01* X26495Y5445D01* X26487Y5442D01* X26485Y5441D01* Y5552D01* G37* G36* Y5325D02*X26489Y5316D01* X26507Y5284D01* X26528Y5255D01* X26552Y5227D01* X26577Y5202D01* X26605Y5179D01* X26635Y5159D01* X26667Y5141D01* X26700Y5127D01* X26724Y5119D01* Y3874D01* X26713Y3870D01* X26681Y3855D01* X26649Y3837D01* X26620Y3816D01* X26592Y3793D01* X26567Y3767D01* X26544Y3739D01* X26524Y3709D01* X26506Y3677D01* X26492Y3644D01* X26485Y3625D01* Y5325D01* G37* G36* Y3571D02*X26487Y3568D01* X26492Y3561D01* X26499Y3556D01* X26506Y3551D01* X26514Y3548D01* X26523Y3546D01* X26532Y3546D01* X26540Y3547D01* X26548Y3550D01* X26556Y3555D01* X26563Y3560D01* X26569Y3567D01* X26573Y3574D01* X26576Y3582D01* X26585Y3608D01* X26596Y3633D01* X26609Y3657D01* X26624Y3679D01* X26641Y3700D01* X26660Y3719D01* X26681Y3737D01* X26703Y3752D01* X26724Y3764D01* Y3235D01* X26708Y3244D01* X26685Y3259D01* X26664Y3276D01* X26645Y3295D01* X26627Y3316D01* X26612Y3338D01* X26598Y3362D01* X26587Y3386D01* X26578Y3412D01* X26574Y3420D01* X26570Y3427D01* X26564Y3434D01* X26557Y3439D01* X26549Y3443D01* X26541Y3446D01* X26532Y3447D01* X26524Y3447D01* X26515Y3445D01* X26507Y3442D01* X26500Y3437D01* X26493Y3431D01* X26488Y3424D01* X26485Y3419D01* Y3571D01* G37* G36* Y3374D02*X26494Y3349D01* X26509Y3316D01* X26527Y3284D01* X26548Y3255D01* X26572Y3227D01* X26597Y3202D01* X26625Y3179D01* X26655Y3159D01* X26687Y3141D01* X26720Y3127D01* X26724Y3125D01* Y1866D01* X26701Y1855D01* X26669Y1837D01* X26640Y1816D01* X26612Y1793D01* X26587Y1767D01* X26564Y1739D01* X26544Y1709D01* X26526Y1677D01* X26512Y1644D01* X26500Y1610D01* X26498Y1601D01* X26498Y1593D01* X26499Y1584D01* X26502Y1576D01* X26507Y1568D01* X26512Y1561D01* X26519Y1556D01* X26526Y1551D01* X26534Y1548D01* X26543Y1546D01* X26552Y1546D01* X26560Y1547D01* X26568Y1550D01* X26576Y1555D01* X26583Y1560D01* X26589Y1567D01* X26593Y1574D01* X26596Y1582D01* X26605Y1608D01* X26616Y1633D01* X26629Y1657D01* X26644Y1679D01* X26661Y1700D01* X26680Y1719D01* X26701Y1737D01* X26723Y1752D01* X26724Y1753D01* Y1246D01* X26705Y1259D01* X26684Y1276D01* X26665Y1295D01* X26647Y1316D01* X26632Y1338D01* X26618Y1362D01* X26607Y1386D01* X26598Y1412D01* X26594Y1420D01* X26590Y1427D01* X26584Y1434D01* X26577Y1439D01* X26569Y1443D01* X26561Y1446D01* X26552Y1447D01* X26544Y1447D01* X26535Y1445D01* X26527Y1442D01* X26520Y1437D01* X26513Y1431D01* X26508Y1424D01* X26504Y1417D01* X26501Y1409D01* X26500Y1400D01* X26500Y1391D01* X26502Y1383D01* X26514Y1349D01* X26529Y1316D01* X26547Y1284D01* X26568Y1255D01* X26592Y1227D01* X26617Y1202D01* X26645Y1179D01* X26675Y1159D01* X26707Y1141D01* X26724Y1134D01* Y0D01* X26485D01* Y3374D01* G37* G36* X26724Y40000D02*X26924D01* Y35625D01* X26915Y35651D01* X26900Y35683D01* X26882Y35715D01* X26861Y35744D01* X26837Y35772D01* X26812Y35797D01* X26784Y35820D01* X26754Y35840D01* X26724Y35857D01* Y37153D01* X26740Y37162D01* X26769Y37183D01* X26797Y37207D01* X26822Y37232D01* X26845Y37260D01* X26865Y37290D01* X26883Y37322D01* X26897Y37355D01* X26909Y37389D01* X26911Y37398D01* X26911Y37407D01* X26910Y37415D01* X26907Y37423D01* X26902Y37431D01* X26897Y37438D01* X26890Y37444D01* X26883Y37448D01* X26875Y37451D01* X26866Y37453D01* X26857Y37453D01* X26849Y37452D01* X26841Y37449D01* X26833Y37445D01* X26826Y37439D01* X26820Y37433D01* X26816Y37425D01* X26813Y37417D01* X26804Y37391D01* X26793Y37366D01* X26780Y37343D01* X26765Y37320D01* X26748Y37299D01* X26729Y37280D01* X26724Y37276D01* Y37724D01* X26725Y37723D01* X26744Y37704D01* X26762Y37683D01* X26777Y37661D01* X26791Y37637D01* X26802Y37613D01* X26811Y37587D01* X26815Y37579D01* X26819Y37572D01* X26825Y37565D01* X26832Y37560D01* X26840Y37556D01* X26848Y37553D01* X26857Y37552D01* X26865Y37552D01* X26874Y37554D01* X26882Y37557D01* X26889Y37562D01* X26896Y37568D01* X26901Y37575D01* X26905Y37582D01* X26908Y37591D01* X26909Y37599D01* X26909Y37608D01* X26907Y37617D01* X26895Y37651D01* X26880Y37683D01* X26862Y37715D01* X26841Y37744D01* X26817Y37772D01* X26792Y37797D01* X26764Y37820D01* X26734Y37840D01* X26724Y37846D01* Y39165D01* X26749Y39183D01* X26777Y39207D01* X26802Y39232D01* X26825Y39260D01* X26845Y39290D01* X26863Y39322D01* X26877Y39355D01* X26889Y39389D01* X26891Y39398D01* X26891Y39407D01* X26890Y39415D01* X26887Y39423D01* X26882Y39431D01* X26877Y39438D01* X26870Y39444D01* X26863Y39448D01* X26855Y39451D01* X26846Y39453D01* X26837Y39453D01* X26829Y39452D01* X26821Y39449D01* X26813Y39445D01* X26806Y39439D01* X26800Y39433D01* X26796Y39425D01* X26793Y39417D01* X26784Y39391D01* X26773Y39366D01* X26760Y39343D01* X26745Y39320D01* X26728Y39299D01* X26724Y39295D01* Y39704D01* X26724Y39704D01* X26742Y39683D01* X26757Y39661D01* X26771Y39637D01* X26782Y39613D01* X26791Y39587D01* X26795Y39579D01* X26799Y39572D01* X26805Y39565D01* X26812Y39560D01* X26820Y39556D01* X26828Y39553D01* X26837Y39552D01* X26845Y39552D01* X26854Y39554D01* X26862Y39557D01* X26869Y39562D01* X26876Y39568D01* X26881Y39575D01* X26885Y39582D01* X26888Y39591D01* X26889Y39599D01* X26889Y39608D01* X26887Y39617D01* X26875Y39651D01* X26860Y39683D01* X26842Y39715D01* X26821Y39744D01* X26797Y39772D01* X26772Y39797D01* X26744Y39820D01* X26724Y39834D01* Y40000D01* G37* G36* X26924Y0D02*X26724D01* Y1134D01* X26740Y1127D01* X26774Y1115D01* X26783Y1113D01* X26792Y1113D01* X26800Y1115D01* X26808Y1117D01* X26816Y1122D01* X26823Y1127D01* X26829Y1134D01* X26833Y1141D01* X26836Y1149D01* X26838Y1158D01* X26838Y1167D01* X26837Y1175D01* X26834Y1183D01* X26830Y1191D01* X26824Y1198D01* X26817Y1204D01* X26810Y1208D01* X26802Y1211D01* X26776Y1220D01* X26751Y1231D01* X26728Y1244D01* X26724Y1246D01* Y1753D01* X26747Y1766D01* X26771Y1777D01* X26797Y1786D01* X26805Y1790D01* X26812Y1794D01* X26819Y1800D01* X26824Y1807D01* X26828Y1815D01* X26831Y1823D01* X26832Y1832D01* X26832Y1840D01* X26830Y1849D01* X26827Y1857D01* X26822Y1864D01* X26816Y1871D01* X26809Y1876D01* X26802Y1880D01* X26793Y1883D01* X26785Y1884D01* X26776Y1884D01* X26768Y1882D01* X26733Y1870D01* X26724Y1866D01* Y3125D01* X26754Y3115D01* X26763Y3113D01* X26772Y3113D01* X26780Y3115D01* X26788Y3117D01* X26796Y3122D01* X26803Y3127D01* X26809Y3134D01* X26813Y3141D01* X26816Y3149D01* X26818Y3158D01* X26818Y3167D01* X26817Y3175D01* X26814Y3183D01* X26810Y3191D01* X26804Y3198D01* X26797Y3204D01* X26790Y3208D01* X26782Y3211D01* X26756Y3220D01* X26731Y3231D01* X26724Y3235D01* Y3764D01* X26727Y3766D01* X26751Y3777D01* X26777Y3786D01* X26785Y3790D01* X26792Y3794D01* X26799Y3800D01* X26804Y3807D01* X26808Y3815D01* X26811Y3823D01* X26812Y3832D01* X26812Y3840D01* X26810Y3849D01* X26807Y3857D01* X26802Y3864D01* X26796Y3871D01* X26789Y3876D01* X26782Y3880D01* X26773Y3883D01* X26765Y3884D01* X26756Y3884D01* X26748Y3882D01* X26724Y3874D01* Y5119D01* X26734Y5115D01* X26743Y5113D01* X26752Y5113D01* X26760Y5115D01* X26768Y5117D01* X26776Y5122D01* X26783Y5127D01* X26789Y5134D01* X26793Y5141D01* X26796Y5149D01* X26798Y5158D01* X26798Y5167D01* X26797Y5175D01* X26794Y5183D01* X26790Y5191D01* X26784Y5198D01* X26777Y5204D01* X26770Y5208D01* X26762Y5211D01* X26736Y5220D01* X26724Y5225D01* Y5774D01* X26731Y5777D01* X26757Y5786D01* X26765Y5790D01* X26772Y5794D01* X26779Y5800D01* X26784Y5807D01* X26788Y5815D01* X26791Y5823D01* X26792Y5832D01* X26792Y5840D01* X26790Y5849D01* X26787Y5857D01* X26782Y5864D01* X26776Y5871D01* X26769Y5876D01* X26762Y5880D01* X26753Y5883D01* X26745Y5884D01* X26736Y5884D01* X26728Y5882D01* X26724Y5881D01* Y7113D01* X26732Y7113D01* X26740Y7115D01* X26748Y7117D01* X26756Y7122D01* X26763Y7127D01* X26769Y7134D01* X26773Y7141D01* X26776Y7149D01* X26778Y7158D01* X26778Y7167D01* X26777Y7175D01* X26774Y7183D01* X26770Y7191D01* X26764Y7198D01* X26757Y7204D01* X26750Y7208D01* X26742Y7211D01* X26724Y7217D01* Y7782D01* X26737Y7786D01* X26745Y7790D01* X26752Y7794D01* X26759Y7800D01* X26764Y7807D01* X26768Y7815D01* X26771Y7823D01* X26772Y7832D01* X26772Y7840D01* X26770Y7849D01* X26767Y7857D01* X26762Y7864D01* X26756Y7871D01* X26749Y7876D01* X26742Y7880D01* X26733Y7883D01* X26725Y7884D01* X26724D01* Y9116D01* X26728Y9117D01* X26736Y9122D01* X26743Y9127D01* X26749Y9134D01* X26753Y9141D01* X26756Y9149D01* X26758Y9158D01* X26758Y9167D01* X26757Y9175D01* X26754Y9183D01* X26750Y9191D01* X26744Y9198D01* X26737Y9204D01* X26730Y9208D01* X26724Y9210D01* Y9789D01* X26725Y9790D01* X26732Y9794D01* X26739Y9800D01* X26744Y9807D01* X26748Y9815D01* X26751Y9823D01* X26752Y9832D01* X26752Y9840D01* X26750Y9849D01* X26747Y9857D01* X26742Y9864D01* X26736Y9871D01* X26729Y9876D01* X26724Y9879D01* Y11128D01* X26729Y11134D01* X26733Y11141D01* X26736Y11149D01* X26738Y11158D01* X26738Y11167D01* X26737Y11175D01* X26734Y11183D01* X26730Y11191D01* X26724Y11198D01* X26724Y11198D01* Y11807D01* X26724Y11807D01* X26728Y11815D01* X26731Y11823D01* X26732Y11832D01* X26732Y11840D01* X26730Y11849D01* X26727Y11857D01* X26724Y11861D01* Y23140D01* X26727Y23135D01* X26733Y23128D01* X26740Y23123D01* X26747Y23119D01* X26756Y23116D01* X26764Y23115D01* X26773Y23115D01* X26781Y23117D01* X26816Y23129D01* X26848Y23144D01* X26880Y23162D01* X26909Y23183D01* X26924Y23196D01* Y21820D01* X26924Y21820D01* X26894Y21840D01* X26862Y21858D01* X26829Y21873D01* X26795Y21884D01* X26786Y21886D01* X26777Y21886D01* X26769Y21885D01* X26761Y21882D01* X26753Y21878D01* X26746Y21872D01* X26740Y21865D01* X26736Y21858D01* X26733Y21850D01* X26731Y21841D01* X26731Y21833D01* X26732Y21824D01* X26735Y21816D01* X26739Y21808D01* X26745Y21801D01* X26752Y21796D01* X26759Y21791D01* X26767Y21788D01* X26793Y21779D01* X26818Y21768D01* X26841Y21755D01* X26864Y21740D01* X26885Y21723D01* X26904Y21704D01* X26922Y21683D01* X26924Y21680D01* Y21319D01* X26908Y21299D01* X26889Y21280D01* X26868Y21262D01* X26846Y21247D01* X26822Y21233D01* X26798Y21222D01* X26772Y21213D01* X26764Y21209D01* X26757Y21205D01* X26750Y21199D01* X26745Y21192D01* X26741Y21184D01* X26738Y21176D01* X26737Y21167D01* X26737Y21159D01* X26739Y21150D01* X26742Y21142D01* X26747Y21135D01* X26753Y21128D01* X26760Y21123D01* X26767Y21119D01* X26776Y21116D01* X26784Y21115D01* X26793Y21115D01* X26801Y21117D01* X26836Y21129D01* X26868Y21144D01* X26900Y21162D01* X26924Y21180D01* Y19834D01* X26914Y19840D01* X26882Y19858D01* X26849Y19873D01* X26815Y19884D01* X26806Y19886D01* X26797Y19886D01* X26789Y19885D01* X26781Y19882D01* X26773Y19878D01* X26766Y19872D01* X26760Y19865D01* X26756Y19858D01* X26753Y19850D01* X26751Y19841D01* X26751Y19833D01* X26752Y19824D01* X26755Y19816D01* X26759Y19808D01* X26765Y19801D01* X26772Y19796D01* X26779Y19791D01* X26787Y19788D01* X26813Y19779D01* X26838Y19768D01* X26861Y19755D01* X26884Y19740D01* X26905Y19723D01* X26924Y19704D01* Y19295D01* X26909Y19280D01* X26888Y19262D01* X26866Y19247D01* X26842Y19233D01* X26818Y19222D01* X26792Y19213D01* X26784Y19209D01* X26777Y19205D01* X26770Y19199D01* X26765Y19192D01* X26761Y19184D01* X26758Y19176D01* X26757Y19167D01* X26757Y19159D01* X26759Y19150D01* X26762Y19142D01* X26767Y19135D01* X26773Y19128D01* X26780Y19123D01* X26787Y19119D01* X26796Y19116D01* X26804Y19115D01* X26813Y19115D01* X26821Y19117D01* X26856Y19129D01* X26888Y19144D01* X26920Y19162D01* X26924Y19165D01* Y17846D01* X26902Y17858D01* X26869Y17873D01* X26835Y17884D01* X26826Y17886D01* X26817Y17886D01* X26809Y17885D01* X26801Y17882D01* X26793Y17878D01* X26786Y17872D01* X26780Y17865D01* X26776Y17858D01* X26773Y17850D01* X26771Y17841D01* X26771Y17833D01* X26772Y17824D01* X26775Y17816D01* X26779Y17808D01* X26785Y17801D01* X26792Y17796D01* X26799Y17791D01* X26807Y17788D01* X26833Y17779D01* X26858Y17768D01* X26881Y17755D01* X26904Y17740D01* X26924Y17724D01* Y17276D01* X26908Y17262D01* X26886Y17247D01* X26862Y17233D01* X26838Y17222D01* X26812Y17213D01* X26804Y17209D01* X26797Y17205D01* X26790Y17199D01* X26785Y17192D01* X26781Y17184D01* X26778Y17176D01* X26777Y17167D01* X26777Y17159D01* X26779Y17150D01* X26782Y17142D01* X26787Y17135D01* X26793Y17128D01* X26800Y17123D01* X26807Y17119D01* X26816Y17116D01* X26824Y17115D01* X26833Y17115D01* X26841Y17117D01* X26876Y17129D01* X26908Y17144D01* X26924Y17153D01* Y15857D01* X26922Y15858D01* X26889Y15873D01* X26855Y15884D01* X26846Y15886D01* X26837Y15886D01* X26829Y15885D01* X26821Y15882D01* X26813Y15878D01* X26806Y15872D01* X26800Y15865D01* X26796Y15858D01* X26793Y15850D01* X26791Y15841D01* X26791Y15833D01* X26792Y15824D01* X26795Y15816D01* X26799Y15808D01* X26805Y15801D01* X26812Y15796D01* X26819Y15791D01* X26827Y15788D01* X26853Y15779D01* X26878Y15768D01* X26901Y15755D01* X26924Y15740D01* Y15259D01* X26906Y15247D01* X26882Y15233D01* X26858Y15222D01* X26832Y15213D01* X26824Y15209D01* X26817Y15205D01* X26810Y15199D01* X26805Y15192D01* X26801Y15184D01* X26798Y15176D01* X26797Y15167D01* X26797Y15159D01* X26799Y15150D01* X26802Y15142D01* X26807Y15135D01* X26813Y15128D01* X26820Y15123D01* X26827Y15119D01* X26836Y15116D01* X26844Y15115D01* X26853Y15115D01* X26861Y15117D01* X26896Y15129D01* X26924Y15142D01* Y13866D01* X26909Y13873D01* X26875Y13884D01* X26866Y13886D01* X26857Y13886D01* X26849Y13885D01* X26841Y13882D01* X26833Y13878D01* X26826Y13872D01* X26820Y13865D01* X26816Y13858D01* X26813Y13850D01* X26811Y13841D01* X26811Y13833D01* X26812Y13824D01* X26815Y13816D01* X26819Y13808D01* X26825Y13801D01* X26832Y13796D01* X26839Y13791D01* X26847Y13788D01* X26873Y13779D01* X26898Y13768D01* X26921Y13755D01* X26924Y13754D01* Y13246D01* X26902Y13233D01* X26878Y13222D01* X26852Y13213D01* X26844Y13209D01* X26837Y13205D01* X26830Y13199D01* X26825Y13192D01* X26821Y13184D01* X26818Y13176D01* X26817Y13167D01* X26817Y13159D01* X26819Y13150D01* X26822Y13142D01* X26827Y13135D01* X26833Y13128D01* X26840Y13123D01* X26847Y13119D01* X26856Y13116D01* X26864Y13115D01* X26873Y13115D01* X26881Y13117D01* X26916Y13129D01* X26924Y13133D01* Y11874D01* X26895Y11884D01* X26886Y11886D01* X26877Y11886D01* X26869Y11885D01* X26861Y11882D01* X26853Y11878D01* X26846Y11872D01* X26840Y11865D01* X26836Y11858D01* X26833Y11850D01* X26831Y11841D01* X26831Y11833D01* X26832Y11824D01* X26835Y11816D01* X26839Y11808D01* X26845Y11801D01* X26852Y11796D01* X26859Y11791D01* X26867Y11788D01* X26893Y11779D01* X26918Y11768D01* X26924Y11765D01* Y11234D01* X26922Y11233D01* X26898Y11222D01* X26872Y11213D01* X26864Y11209D01* X26857Y11205D01* X26850Y11199D01* X26845Y11192D01* X26841Y11184D01* X26838Y11176D01* X26837Y11167D01* X26837Y11159D01* X26839Y11150D01* X26842Y11142D01* X26847Y11135D01* X26853Y11128D01* X26860Y11123D01* X26867Y11119D01* X26876Y11116D01* X26884Y11115D01* X26893Y11115D01* X26901Y11117D01* X26924Y11125D01* Y9881D01* X26915Y9884D01* X26906Y9886D01* X26897Y9886D01* X26889Y9885D01* X26881Y9882D01* X26873Y9878D01* X26866Y9872D01* X26860Y9865D01* X26856Y9858D01* X26853Y9850D01* X26851Y9841D01* X26851Y9833D01* X26852Y9824D01* X26855Y9816D01* X26859Y9808D01* X26865Y9801D01* X26872Y9796D01* X26879Y9791D01* X26887Y9788D01* X26913Y9779D01* X26924Y9774D01* Y9225D01* X26918Y9222D01* X26892Y9213D01* X26884Y9209D01* X26877Y9205D01* X26870Y9199D01* X26865Y9192D01* X26861Y9184D01* X26858Y9176D01* X26857Y9167D01* X26857Y9159D01* X26859Y9150D01* X26862Y9142D01* X26867Y9135D01* X26873Y9128D01* X26880Y9123D01* X26887Y9119D01* X26896Y9116D01* X26904Y9115D01* X26913Y9115D01* X26921Y9117D01* X26924Y9118D01* Y7886D01* X26917Y7886D01* X26909Y7885D01* X26901Y7882D01* X26893Y7878D01* X26886Y7872D01* X26880Y7865D01* X26876Y7858D01* X26873Y7850D01* X26871Y7841D01* X26871Y7833D01* X26872Y7824D01* X26875Y7816D01* X26879Y7808D01* X26885Y7801D01* X26892Y7796D01* X26899Y7791D01* X26907Y7788D01* X26924Y7782D01* Y7217D01* X26912Y7213D01* X26904Y7209D01* X26897Y7205D01* X26890Y7199D01* X26885Y7192D01* X26881Y7184D01* X26878Y7176D01* X26877Y7167D01* X26877Y7159D01* X26879Y7150D01* X26882Y7142D01* X26887Y7135D01* X26893Y7128D01* X26900Y7123D01* X26907Y7119D01* X26916Y7116D01* X26924Y7115D01* Y5883D01* X26921Y5882D01* X26913Y5878D01* X26906Y5872D01* X26900Y5865D01* X26896Y5858D01* X26893Y5850D01* X26891Y5841D01* X26891Y5833D01* X26892Y5824D01* X26895Y5816D01* X26899Y5808D01* X26905Y5801D01* X26912Y5796D01* X26919Y5791D01* X26924Y5789D01* Y5209D01* X26917Y5205D01* X26910Y5199D01* X26905Y5192D01* X26901Y5184D01* X26898Y5176D01* X26897Y5167D01* X26897Y5159D01* X26899Y5150D01* X26902Y5142D01* X26907Y5135D01* X26913Y5128D01* X26920Y5123D01* X26924Y5121D01* Y3870D01* X26920Y3865D01* X26916Y3858D01* X26913Y3850D01* X26911Y3841D01* X26911Y3833D01* X26912Y3824D01* X26915Y3816D01* X26919Y3808D01* X26924Y3802D01* Y3190D01* X26921Y3184D01* X26918Y3176D01* X26917Y3167D01* X26917Y3159D01* X26919Y3150D01* X26922Y3142D01* X26924Y3140D01* Y0D01* G37* G36* Y23350D02*X26920Y23343D01* X26905Y23320D01* X26888Y23299D01* X26869Y23280D01* X26848Y23262D01* X26826Y23247D01* X26802Y23233D01* X26778Y23222D01* X26752Y23213D01* X26744Y23209D01* X26737Y23205D01* X26730Y23199D01* X26725Y23192D01* X26724Y23190D01* Y23802D01* X26725Y23801D01* X26732Y23796D01* X26739Y23791D01* X26747Y23788D01* X26773Y23779D01* X26798Y23768D01* X26821Y23755D01* X26844Y23740D01* X26865Y23723D01* X26884Y23704D01* X26902Y23683D01* X26917Y23661D01* X26924Y23650D01* Y23350D01* G37* G36* Y23804D02*X26904Y23820D01* X26874Y23840D01* X26842Y23858D01* X26809Y23873D01* X26775Y23884D01* X26766Y23886D01* X26757Y23886D01* X26749Y23885D01* X26741Y23882D01* X26733Y23878D01* X26726Y23872D01* X26724Y23870D01* Y25121D01* X26727Y25119D01* X26736Y25116D01* X26744Y25115D01* X26753Y25115D01* X26761Y25117D01* X26796Y25129D01* X26828Y25144D01* X26860Y25162D01* X26889Y25183D01* X26917Y25207D01* X26924Y25214D01* Y23804D01* G37* G36* Y25391D02*X26913Y25366D01* X26900Y25343D01* X26885Y25320D01* X26868Y25299D01* X26849Y25280D01* X26828Y25262D01* X26806Y25247D01* X26782Y25233D01* X26758Y25222D01* X26732Y25213D01* X26724Y25209D01* X26724Y25209D01* Y25789D01* X26727Y25788D01* X26753Y25779D01* X26778Y25768D01* X26801Y25755D01* X26824Y25740D01* X26845Y25723D01* X26864Y25704D01* X26882Y25683D01* X26897Y25661D01* X26911Y25637D01* X26922Y25613D01* X26924Y25608D01* Y25391D01* G37* G36* Y25785D02*X26912Y25797D01* X26884Y25820D01* X26854Y25840D01* X26822Y25858D01* X26789Y25873D01* X26755Y25884D01* X26746Y25886D01* X26737Y25886D01* X26729Y25885D01* X26724Y25883D01* Y27115D01* X26724D01* X26733Y27115D01* X26741Y27117D01* X26776Y27129D01* X26808Y27144D01* X26840Y27162D01* X26869Y27183D01* X26897Y27207D01* X26922Y27232D01* X26924Y27235D01* Y25785D01* G37* G36* Y27437D02*X26920Y27433D01* X26916Y27425D01* X26913Y27417D01* X26904Y27391D01* X26893Y27366D01* X26880Y27343D01* X26865Y27320D01* X26848Y27299D01* X26829Y27280D01* X26808Y27262D01* X26786Y27247D01* X26762Y27233D01* X26738Y27222D01* X26724Y27217D01* Y27782D01* X26733Y27779D01* X26758Y27768D01* X26781Y27755D01* X26804Y27740D01* X26825Y27723D01* X26844Y27704D01* X26862Y27683D01* X26877Y27661D01* X26891Y27637D01* X26902Y27613D01* X26911Y27587D01* X26915Y27579D01* X26919Y27572D01* X26924Y27567D01* Y27437D01* G37* G36* Y27764D02*X26917Y27772D01* X26892Y27797D01* X26864Y27820D01* X26834Y27840D01* X26802Y27858D01* X26769Y27873D01* X26735Y27884D01* X26726Y27886D01* X26724D01* Y29118D01* X26756Y29129D01* X26788Y29144D01* X26820Y29162D01* X26849Y29183D01* X26877Y29207D01* X26902Y29232D01* X26924Y29259D01* Y27764D01* G37* G36* Y29450D02*X26921Y29449D01* X26913Y29445D01* X26906Y29439D01* X26900Y29433D01* X26896Y29425D01* X26893Y29417D01* X26884Y29391D01* X26873Y29366D01* X26860Y29343D01* X26845Y29320D01* X26828Y29299D01* X26809Y29280D01* X26788Y29262D01* X26766Y29247D01* X26742Y29233D01* X26724Y29225D01* Y29774D01* X26738Y29768D01* X26761Y29755D01* X26784Y29740D01* X26805Y29723D01* X26824Y29704D01* X26842Y29683D01* X26857Y29661D01* X26871Y29637D01* X26882Y29613D01* X26891Y29587D01* X26895Y29579D01* X26899Y29572D01* X26905Y29565D01* X26912Y29560D01* X26920Y29556D01* X26924Y29555D01* Y29450D01* G37* G36* Y29740D02*X26921Y29744D01* X26897Y29772D01* X26872Y29797D01* X26844Y29820D01* X26814Y29840D01* X26782Y29858D01* X26749Y29873D01* X26724Y29881D01* Y31125D01* X26736Y31129D01* X26768Y31144D01* X26800Y31162D01* X26829Y31183D01* X26857Y31207D01* X26882Y31232D01* X26905Y31260D01* X26924Y31288D01* Y29740D01* G37* G36* Y31453D02*X26917Y31453D01* X26909Y31452D01* X26901Y31449D01* X26893Y31445D01* X26886Y31439D01* X26880Y31433D01* X26876Y31425D01* X26873Y31417D01* X26864Y31391D01* X26853Y31366D01* X26840Y31343D01* X26825Y31320D01* X26808Y31299D01* X26789Y31280D01* X26768Y31262D01* X26746Y31247D01* X26724Y31234D01* Y31765D01* X26741Y31755D01* X26764Y31740D01* X26785Y31723D01* X26804Y31704D01* X26822Y31683D01* X26837Y31661D01* X26851Y31637D01* X26862Y31613D01* X26871Y31587D01* X26875Y31579D01* X26879Y31572D01* X26885Y31565D01* X26892Y31560D01* X26900Y31556D01* X26908Y31553D01* X26917Y31552D01* X26924Y31552D01* Y31453D01* G37* G36* Y31711D02*X26922Y31715D01* X26901Y31744D01* X26877Y31772D01* X26852Y31797D01* X26824Y31820D01* X26794Y31840D01* X26762Y31858D01* X26729Y31873D01* X26724Y31874D01* Y33133D01* X26748Y33144D01* X26780Y33162D01* X26809Y33183D01* X26837Y33207D01* X26862Y33232D01* X26885Y33260D01* X26905Y33290D01* X26923Y33322D01* X26924Y33324D01* Y31711D01* G37* G36* Y33447D02*X26923Y33448D01* X26915Y33451D01* X26906Y33453D01* X26897Y33453D01* X26889Y33452D01* X26881Y33449D01* X26873Y33445D01* X26866Y33439D01* X26860Y33433D01* X26856Y33425D01* X26853Y33417D01* X26844Y33391D01* X26833Y33366D01* X26820Y33343D01* X26805Y33320D01* X26788Y33299D01* X26769Y33280D01* X26748Y33262D01* X26726Y33247D01* X26724Y33246D01* Y33754D01* X26744Y33740D01* X26765Y33723D01* X26784Y33704D01* X26802Y33683D01* X26817Y33661D01* X26831Y33637D01* X26842Y33613D01* X26851Y33587D01* X26855Y33579D01* X26859Y33572D01* X26865Y33565D01* X26872Y33560D01* X26880Y33556D01* X26888Y33553D01* X26897Y33552D01* X26905Y33552D01* X26914Y33554D01* X26922Y33557D01* X26924Y33559D01* Y33447D01* G37* G36* Y33674D02*X26920Y33683D01* X26902Y33715D01* X26881Y33744D01* X26857Y33772D01* X26832Y33797D01* X26804Y33820D01* X26774Y33840D01* X26742Y33858D01* X26724Y33866D01* Y35142D01* X26728Y35144D01* X26760Y35162D01* X26789Y35183D01* X26817Y35207D01* X26842Y35232D01* X26865Y35260D01* X26885Y35290D01* X26903Y35322D01* X26917Y35355D01* X26924Y35374D01* Y33674D01* G37* G36* Y35428D02*X26922Y35431D01* X26917Y35438D01* X26910Y35444D01* X26903Y35448D01* X26895Y35451D01* X26886Y35453D01* X26877Y35453D01* X26869Y35452D01* X26861Y35449D01* X26853Y35445D01* X26846Y35439D01* X26840Y35433D01* X26836Y35425D01* X26833Y35417D01* X26824Y35391D01* X26813Y35366D01* X26800Y35343D01* X26785Y35320D01* X26768Y35299D01* X26749Y35280D01* X26728Y35262D01* X26724Y35259D01* Y35740D01* X26745Y35723D01* X26764Y35704D01* X26782Y35683D01* X26797Y35661D01* X26811Y35637D01* X26822Y35613D01* X26831Y35587D01* X26835Y35579D01* X26839Y35572D01* X26845Y35565D01* X26852Y35560D01* X26860Y35556D01* X26868Y35553D01* X26877Y35552D01* X26885Y35552D01* X26894Y35554D01* X26902Y35557D01* X26909Y35562D01* X26916Y35568D01* X26921Y35575D01* X26924Y35580D01* Y35428D01* G37* G36* Y40000D02*X27104D01* Y17625D01* X27095Y17651D01* X27080Y17683D01* X27062Y17715D01* X27041Y17744D01* X27017Y17772D01* X26992Y17797D01* X26964Y17820D01* X26934Y17840D01* X26924Y17846D01* Y19165D01* X26949Y19183D01* X26977Y19207D01* X27002Y19232D01* X27025Y19260D01* X27045Y19290D01* X27063Y19322D01* X27077Y19355D01* X27089Y19389D01* X27091Y19398D01* X27091Y19407D01* X27090Y19415D01* X27087Y19423D01* X27082Y19431D01* X27077Y19438D01* X27070Y19444D01* X27063Y19448D01* X27055Y19451D01* X27046Y19453D01* X27037Y19453D01* X27029Y19452D01* X27021Y19449D01* X27013Y19445D01* X27006Y19439D01* X27000Y19433D01* X26996Y19425D01* X26993Y19417D01* X26984Y19391D01* X26973Y19366D01* X26960Y19343D01* X26945Y19320D01* X26928Y19299D01* X26924Y19295D01* Y19704D01* X26924Y19704D01* X26942Y19683D01* X26957Y19661D01* X26971Y19637D01* X26982Y19613D01* X26991Y19587D01* X26995Y19579D01* X26999Y19572D01* X27005Y19565D01* X27012Y19560D01* X27020Y19556D01* X27028Y19553D01* X27037Y19552D01* X27045Y19552D01* X27054Y19554D01* X27062Y19557D01* X27069Y19562D01* X27076Y19568D01* X27081Y19575D01* X27085Y19582D01* X27088Y19591D01* X27089Y19599D01* X27089Y19608D01* X27087Y19617D01* X27075Y19651D01* X27060Y19683D01* X27042Y19715D01* X27021Y19744D01* X26997Y19772D01* X26972Y19797D01* X26944Y19820D01* X26924Y19834D01* Y21180D01* X26929Y21183D01* X26957Y21207D01* X26982Y21232D01* X27005Y21260D01* X27025Y21290D01* X27043Y21322D01* X27057Y21355D01* X27069Y21389D01* X27071Y21398D01* X27071Y21407D01* X27070Y21415D01* X27067Y21423D01* X27062Y21431D01* X27057Y21438D01* X27050Y21444D01* X27043Y21448D01* X27035Y21451D01* X27026Y21453D01* X27017Y21453D01* X27009Y21452D01* X27001Y21449D01* X26993Y21445D01* X26986Y21439D01* X26980Y21433D01* X26976Y21425D01* X26973Y21417D01* X26964Y21391D01* X26953Y21366D01* X26940Y21343D01* X26925Y21320D01* X26924Y21319D01* Y21680D01* X26937Y21661D01* X26951Y21637D01* X26962Y21613D01* X26971Y21587D01* X26975Y21579D01* X26979Y21572D01* X26985Y21565D01* X26992Y21560D01* X27000Y21556D01* X27008Y21553D01* X27017Y21552D01* X27025Y21552D01* X27034Y21554D01* X27042Y21557D01* X27049Y21562D01* X27056Y21568D01* X27061Y21575D01* X27065Y21582D01* X27068Y21591D01* X27069Y21599D01* X27069Y21608D01* X27067Y21617D01* X27055Y21651D01* X27040Y21683D01* X27022Y21715D01* X27001Y21744D01* X26977Y21772D01* X26952Y21797D01* X26924Y21820D01* Y23196D01* X26937Y23207D01* X26962Y23232D01* X26985Y23260D01* X27005Y23290D01* X27023Y23322D01* X27037Y23355D01* X27049Y23389D01* X27051Y23398D01* X27051Y23407D01* X27050Y23415D01* X27047Y23423D01* X27042Y23431D01* X27037Y23438D01* X27030Y23444D01* X27023Y23448D01* X27015Y23451D01* X27006Y23453D01* X26997Y23453D01* X26989Y23452D01* X26981Y23449D01* X26973Y23445D01* X26966Y23439D01* X26960Y23433D01* X26956Y23425D01* X26953Y23417D01* X26944Y23391D01* X26933Y23366D01* X26924Y23350D01* Y23650D01* X26931Y23637D01* X26942Y23613D01* X26951Y23587D01* X26955Y23579D01* X26959Y23572D01* X26965Y23565D01* X26972Y23560D01* X26980Y23556D01* X26988Y23553D01* X26997Y23552D01* X27005Y23552D01* X27014Y23554D01* X27022Y23557D01* X27029Y23562D01* X27036Y23568D01* X27041Y23575D01* X27045Y23582D01* X27048Y23591D01* X27049Y23599D01* X27049Y23608D01* X27047Y23617D01* X27035Y23651D01* X27020Y23683D01* X27002Y23715D01* X26981Y23744D01* X26957Y23772D01* X26932Y23797D01* X26924Y23804D01* Y25214D01* X26942Y25232D01* X26965Y25260D01* X26985Y25290D01* X27003Y25322D01* X27017Y25355D01* X27029Y25389D01* X27031Y25398D01* X27031Y25407D01* X27030Y25415D01* X27027Y25423D01* X27022Y25431D01* X27017Y25438D01* X27010Y25444D01* X27003Y25448D01* X26995Y25451D01* X26986Y25453D01* X26977Y25453D01* X26969Y25452D01* X26961Y25449D01* X26953Y25445D01* X26946Y25439D01* X26940Y25433D01* X26936Y25425D01* X26933Y25417D01* X26924Y25391D01* X26924Y25391D01* Y25608D01* X26931Y25587D01* X26935Y25579D01* X26939Y25572D01* X26945Y25565D01* X26952Y25560D01* X26960Y25556D01* X26968Y25553D01* X26977Y25552D01* X26985Y25552D01* X26994Y25554D01* X27002Y25557D01* X27009Y25562D01* X27016Y25568D01* X27021Y25575D01* X27025Y25582D01* X27028Y25591D01* X27029Y25599D01* X27029Y25608D01* X27027Y25617D01* X27015Y25651D01* X27000Y25683D01* X26982Y25715D01* X26961Y25744D01* X26937Y25772D01* X26924Y25785D01* Y27235D01* X26945Y27260D01* X26965Y27290D01* X26983Y27322D01* X26997Y27355D01* X27009Y27389D01* X27011Y27398D01* X27011Y27407D01* X27010Y27415D01* X27007Y27423D01* X27002Y27431D01* X26997Y27438D01* X26990Y27444D01* X26983Y27448D01* X26975Y27451D01* X26966Y27453D01* X26957Y27453D01* X26949Y27452D01* X26941Y27449D01* X26933Y27445D01* X26926Y27439D01* X26924Y27437D01* Y27567D01* X26925Y27565D01* X26932Y27560D01* X26940Y27556D01* X26948Y27553D01* X26957Y27552D01* X26965Y27552D01* X26974Y27554D01* X26982Y27557D01* X26989Y27562D01* X26996Y27568D01* X27001Y27575D01* X27005Y27582D01* X27008Y27591D01* X27009Y27599D01* X27009Y27608D01* X27007Y27617D01* X26995Y27651D01* X26980Y27683D01* X26962Y27715D01* X26941Y27744D01* X26924Y27764D01* Y29259D01* X26925Y29260D01* X26945Y29290D01* X26963Y29322D01* X26977Y29355D01* X26989Y29389D01* X26991Y29398D01* X26991Y29407D01* X26990Y29415D01* X26987Y29423D01* X26982Y29431D01* X26977Y29438D01* X26970Y29444D01* X26963Y29448D01* X26955Y29451D01* X26946Y29453D01* X26937Y29453D01* X26929Y29452D01* X26924Y29450D01* Y29555D01* X26928Y29553D01* X26937Y29552D01* X26945Y29552D01* X26954Y29554D01* X26962Y29557D01* X26969Y29562D01* X26976Y29568D01* X26981Y29575D01* X26985Y29582D01* X26988Y29591D01* X26989Y29599D01* X26989Y29608D01* X26987Y29617D01* X26975Y29651D01* X26960Y29683D01* X26942Y29715D01* X26924Y29740D01* Y31288D01* X26925Y31290D01* X26943Y31322D01* X26957Y31355D01* X26969Y31389D01* X26971Y31398D01* X26971Y31407D01* X26970Y31415D01* X26967Y31423D01* X26962Y31431D01* X26957Y31438D01* X26950Y31444D01* X26943Y31448D01* X26935Y31451D01* X26926Y31453D01* X26924D01* Y31552D01* X26925D01* X26934Y31554D01* X26942Y31557D01* X26949Y31562D01* X26956Y31568D01* X26961Y31575D01* X26965Y31582D01* X26968Y31591D01* X26969Y31599D01* X26969Y31608D01* X26967Y31617D01* X26955Y31651D01* X26940Y31683D01* X26924Y31711D01* Y33324D01* X26937Y33355D01* X26949Y33389D01* X26951Y33398D01* X26951Y33407D01* X26950Y33415D01* X26947Y33423D01* X26942Y33431D01* X26937Y33438D01* X26930Y33444D01* X26924Y33447D01* Y33559D01* X26929Y33562D01* X26936Y33568D01* X26941Y33575D01* X26945Y33582D01* X26948Y33591D01* X26949Y33599D01* X26949Y33608D01* X26947Y33617D01* X26935Y33651D01* X26924Y33674D01* Y35374D01* X26929Y35389D01* X26931Y35398D01* X26931Y35407D01* X26930Y35415D01* X26927Y35423D01* X26924Y35428D01* Y35580D01* X26925Y35582D01* X26928Y35591D01* X26929Y35599D01* X26929Y35608D01* X26927Y35617D01* X26924Y35625D01* Y40000D01* G37* G36* X27104Y0D02*X26924D01* Y3140D01* X26927Y3135D01* X26933Y3128D01* X26940Y3123D01* X26947Y3119D01* X26956Y3116D01* X26964Y3115D01* X26973Y3115D01* X26981Y3117D01* X27016Y3129D01* X27048Y3144D01* X27080Y3162D01* X27104Y3180D01* Y1834D01* X27094Y1840D01* X27062Y1858D01* X27029Y1873D01* X26995Y1884D01* X26986Y1886D01* X26977Y1886D01* X26969Y1885D01* X26961Y1882D01* X26953Y1878D01* X26946Y1872D01* X26940Y1865D01* X26936Y1858D01* X26933Y1850D01* X26931Y1841D01* X26931Y1833D01* X26932Y1824D01* X26935Y1816D01* X26939Y1808D01* X26945Y1801D01* X26952Y1796D01* X26959Y1791D01* X26967Y1788D01* X26993Y1779D01* X27018Y1768D01* X27041Y1755D01* X27064Y1740D01* X27085Y1723D01* X27104Y1704D01* Y1295D01* X27089Y1280D01* X27068Y1262D01* X27046Y1247D01* X27022Y1233D01* X26998Y1222D01* X26972Y1213D01* X26964Y1209D01* X26957Y1205D01* X26950Y1199D01* X26945Y1192D01* X26941Y1184D01* X26938Y1176D01* X26937Y1167D01* X26937Y1159D01* X26939Y1150D01* X26942Y1142D01* X26947Y1135D01* X26953Y1128D01* X26960Y1123D01* X26967Y1119D01* X26976Y1116D01* X26984Y1115D01* X26993Y1115D01* X27001Y1117D01* X27036Y1129D01* X27068Y1144D01* X27100Y1162D01* X27104Y1165D01* Y0D01* G37* G36* Y3319D02*X27088Y3299D01* X27069Y3280D01* X27048Y3262D01* X27026Y3247D01* X27002Y3233D01* X26978Y3222D01* X26952Y3213D01* X26944Y3209D01* X26937Y3205D01* X26930Y3199D01* X26925Y3192D01* X26924Y3190D01* Y3802D01* X26925Y3801D01* X26932Y3796D01* X26939Y3791D01* X26947Y3788D01* X26973Y3779D01* X26998Y3768D01* X27021Y3755D01* X27044Y3740D01* X27065Y3723D01* X27084Y3704D01* X27102Y3683D01* X27104Y3680D01* Y3319D01* G37* G36* Y3820D02*X27104Y3820D01* X27074Y3840D01* X27042Y3858D01* X27009Y3873D01* X26975Y3884D01* X26966Y3886D01* X26957Y3886D01* X26949Y3885D01* X26941Y3882D01* X26933Y3878D01* X26926Y3872D01* X26924Y3870D01* Y5121D01* X26927Y5119D01* X26936Y5116D01* X26944Y5115D01* X26953Y5115D01* X26961Y5117D01* X26996Y5129D01* X27028Y5144D01* X27060Y5162D01* X27089Y5183D01* X27104Y5196D01* Y3820D01* G37* G36* Y5350D02*X27100Y5343D01* X27085Y5320D01* X27068Y5299D01* X27049Y5280D01* X27028Y5262D01* X27006Y5247D01* X26982Y5233D01* X26958Y5222D01* X26932Y5213D01* X26924Y5209D01* X26924Y5209D01* Y5789D01* X26927Y5788D01* X26953Y5779D01* X26978Y5768D01* X27001Y5755D01* X27024Y5740D01* X27045Y5723D01* X27064Y5704D01* X27082Y5683D01* X27097Y5661D01* X27104Y5650D01* Y5350D01* G37* G36* Y5804D02*X27084Y5820D01* X27054Y5840D01* X27022Y5858D01* X26989Y5873D01* X26955Y5884D01* X26946Y5886D01* X26937Y5886D01* X26929Y5885D01* X26924Y5883D01* Y7115D01* X26924D01* X26933Y7115D01* X26941Y7117D01* X26976Y7129D01* X27008Y7144D01* X27040Y7162D01* X27069Y7183D01* X27097Y7207D01* X27104Y7214D01* Y5804D01* G37* G36* Y7391D02*X27093Y7366D01* X27080Y7343D01* X27065Y7320D01* X27048Y7299D01* X27029Y7280D01* X27008Y7262D01* X26986Y7247D01* X26962Y7233D01* X26938Y7222D01* X26924Y7217D01* Y7782D01* X26933Y7779D01* X26958Y7768D01* X26981Y7755D01* X27004Y7740D01* X27025Y7723D01* X27044Y7704D01* X27062Y7683D01* X27077Y7661D01* X27091Y7637D01* X27102Y7613D01* X27104Y7608D01* Y7391D01* G37* G36* Y7785D02*X27092Y7797D01* X27064Y7820D01* X27034Y7840D01* X27002Y7858D01* X26969Y7873D01* X26935Y7884D01* X26926Y7886D01* X26924D01* Y9118D01* X26956Y9129D01* X26988Y9144D01* X27020Y9162D01* X27049Y9183D01* X27077Y9207D01* X27102Y9232D01* X27104Y9235D01* Y7785D01* G37* G36* Y9437D02*X27100Y9433D01* X27096Y9425D01* X27093Y9417D01* X27084Y9391D01* X27073Y9366D01* X27060Y9343D01* X27045Y9320D01* X27028Y9299D01* X27009Y9280D01* X26988Y9262D01* X26966Y9247D01* X26942Y9233D01* X26924Y9225D01* Y9774D01* X26938Y9768D01* X26961Y9755D01* X26984Y9740D01* X27005Y9723D01* X27024Y9704D01* X27042Y9683D01* X27057Y9661D01* X27071Y9637D01* X27082Y9613D01* X27091Y9587D01* X27095Y9579D01* X27099Y9572D01* X27104Y9567D01* Y9437D01* G37* G36* Y9764D02*X27097Y9772D01* X27072Y9797D01* X27044Y9820D01* X27014Y9840D01* X26982Y9858D01* X26949Y9873D01* X26924Y9881D01* Y11125D01* X26936Y11129D01* X26968Y11144D01* X27000Y11162D01* X27029Y11183D01* X27057Y11207D01* X27082Y11232D01* X27104Y11259D01* Y9764D01* G37* G36* Y11450D02*X27101Y11449D01* X27093Y11445D01* X27086Y11439D01* X27080Y11433D01* X27076Y11425D01* X27073Y11417D01* X27064Y11391D01* X27053Y11366D01* X27040Y11343D01* X27025Y11320D01* X27008Y11299D01* X26989Y11280D01* X26968Y11262D01* X26946Y11247D01* X26924Y11234D01* Y11765D01* X26941Y11755D01* X26964Y11740D01* X26985Y11723D01* X27004Y11704D01* X27022Y11683D01* X27037Y11661D01* X27051Y11637D01* X27062Y11613D01* X27071Y11587D01* X27075Y11579D01* X27079Y11572D01* X27085Y11565D01* X27092Y11560D01* X27100Y11556D01* X27104Y11555D01* Y11450D01* G37* G36* Y11740D02*X27101Y11744D01* X27077Y11772D01* X27052Y11797D01* X27024Y11820D01* X26994Y11840D01* X26962Y11858D01* X26929Y11873D01* X26924Y11874D01* Y13133D01* X26948Y13144D01* X26980Y13162D01* X27009Y13183D01* X27037Y13207D01* X27062Y13232D01* X27085Y13260D01* X27104Y13288D01* Y11740D01* G37* G36* Y13453D02*X27097Y13453D01* X27089Y13452D01* X27081Y13449D01* X27073Y13445D01* X27066Y13439D01* X27060Y13433D01* X27056Y13425D01* X27053Y13417D01* X27044Y13391D01* X27033Y13366D01* X27020Y13343D01* X27005Y13320D01* X26988Y13299D01* X26969Y13280D01* X26948Y13262D01* X26926Y13247D01* X26924Y13246D01* Y13754D01* X26944Y13740D01* X26965Y13723D01* X26984Y13704D01* X27002Y13683D01* X27017Y13661D01* X27031Y13637D01* X27042Y13613D01* X27051Y13587D01* X27055Y13579D01* X27059Y13572D01* X27065Y13565D01* X27072Y13560D01* X27080Y13556D01* X27088Y13553D01* X27097Y13552D01* X27104Y13552D01* Y13453D01* G37* G36* Y13711D02*X27102Y13715D01* X27081Y13744D01* X27057Y13772D01* X27032Y13797D01* X27004Y13820D01* X26974Y13840D01* X26942Y13858D01* X26924Y13866D01* Y15142D01* X26928Y15144D01* X26960Y15162D01* X26989Y15183D01* X27017Y15207D01* X27042Y15232D01* X27065Y15260D01* X27085Y15290D01* X27103Y15322D01* X27104Y15324D01* Y13711D01* G37* G36* Y15447D02*X27103Y15448D01* X27095Y15451D01* X27086Y15453D01* X27077Y15453D01* X27069Y15452D01* X27061Y15449D01* X27053Y15445D01* X27046Y15439D01* X27040Y15433D01* X27036Y15425D01* X27033Y15417D01* X27024Y15391D01* X27013Y15366D01* X27000Y15343D01* X26985Y15320D01* X26968Y15299D01* X26949Y15280D01* X26928Y15262D01* X26924Y15259D01* Y15740D01* X26945Y15723D01* X26964Y15704D01* X26982Y15683D01* X26997Y15661D01* X27011Y15637D01* X27022Y15613D01* X27031Y15587D01* X27035Y15579D01* X27039Y15572D01* X27045Y15565D01* X27052Y15560D01* X27060Y15556D01* X27068Y15553D01* X27077Y15552D01* X27085Y15552D01* X27094Y15554D01* X27102Y15557D01* X27104Y15559D01* Y15447D01* G37* G36* Y15674D02*X27100Y15683D01* X27082Y15715D01* X27061Y15744D01* X27037Y15772D01* X27012Y15797D01* X26984Y15820D01* X26954Y15840D01* X26924Y15857D01* Y17153D01* X26940Y17162D01* X26969Y17183D01* X26997Y17207D01* X27022Y17232D01* X27045Y17260D01* X27065Y17290D01* X27083Y17322D01* X27097Y17355D01* X27104Y17374D01* Y15674D01* G37* G36* Y17428D02*X27102Y17431D01* X27097Y17438D01* X27090Y17444D01* X27083Y17448D01* X27075Y17451D01* X27066Y17453D01* X27057Y17453D01* X27049Y17452D01* X27041Y17449D01* X27033Y17445D01* X27026Y17439D01* X27020Y17433D01* X27016Y17425D01* X27013Y17417D01* X27004Y17391D01* X26993Y17366D01* X26980Y17343D01* X26965Y17320D01* X26948Y17299D01* X26929Y17280D01* X26924Y17276D01* Y17724D01* X26925Y17723D01* X26944Y17704D01* X26962Y17683D01* X26977Y17661D01* X26991Y17637D01* X27002Y17613D01* X27011Y17587D01* X27015Y17579D01* X27019Y17572D01* X27025Y17565D01* X27032Y17560D01* X27040Y17556D01* X27048Y17553D01* X27057Y17552D01* X27065Y17552D01* X27074Y17554D01* X27082Y17557D01* X27089Y17562D01* X27096Y17568D01* X27101Y17575D01* X27104Y17580D01* Y17428D01* G37* G36* Y40000D02*X28285D01* Y39834D01* X28260Y39816D01* X28232Y39793D01* X28207Y39767D01* X28184Y39739D01* X28164Y39709D01* X28146Y39677D01* X28132Y39644D01* X28120Y39610D01* X28118Y39601D01* X28118Y39593D01* X28119Y39584D01* X28122Y39576D01* X28127Y39568D01* X28132Y39561D01* X28139Y39556D01* X28146Y39551D01* X28154Y39548D01* X28163Y39546D01* X28172Y39546D01* X28180Y39547D01* X28188Y39550D01* X28196Y39555D01* X28203Y39560D01* X28209Y39567D01* X28213Y39574D01* X28216Y39582D01* X28225Y39608D01* X28236Y39633D01* X28249Y39657D01* X28264Y39679D01* X28281Y39700D01* X28285Y39704D01* Y39295D01* X28285Y39295D01* X28267Y39316D01* X28252Y39338D01* X28238Y39362D01* X28227Y39386D01* X28218Y39412D01* X28214Y39420D01* X28210Y39427D01* X28204Y39434D01* X28197Y39439D01* X28189Y39443D01* X28181Y39446D01* X28172Y39447D01* X28164Y39447D01* X28155Y39445D01* X28147Y39442D01* X28140Y39437D01* X28133Y39431D01* X28128Y39424D01* X28124Y39417D01* X28121Y39409D01* X28120Y39400D01* X28120Y39391D01* X28122Y39383D01* X28134Y39349D01* X28149Y39316D01* X28167Y39284D01* X28188Y39255D01* X28212Y39227D01* X28237Y39202D01* X28265Y39179D01* X28285Y39166D01* Y37820D01* X28280Y37816D01* X28252Y37793D01* X28227Y37767D01* X28204Y37739D01* X28184Y37709D01* X28166Y37677D01* X28152Y37644D01* X28140Y37610D01* X28138Y37601D01* X28138Y37593D01* X28139Y37584D01* X28142Y37576D01* X28147Y37568D01* X28152Y37561D01* X28159Y37556D01* X28166Y37551D01* X28174Y37548D01* X28183Y37546D01* X28192Y37546D01* X28200Y37547D01* X28208Y37550D01* X28216Y37555D01* X28223Y37560D01* X28229Y37567D01* X28233Y37574D01* X28236Y37582D01* X28245Y37608D01* X28256Y37633D01* X28269Y37657D01* X28284Y37679D01* X28285Y37680D01* Y37319D01* X28272Y37338D01* X28258Y37362D01* X28247Y37386D01* X28238Y37412D01* X28234Y37420D01* X28230Y37427D01* X28224Y37434D01* X28217Y37439D01* X28209Y37443D01* X28201Y37446D01* X28192Y37447D01* X28184Y37447D01* X28175Y37445D01* X28167Y37442D01* X28160Y37437D01* X28153Y37431D01* X28148Y37424D01* X28144Y37417D01* X28141Y37409D01* X28140Y37400D01* X28140Y37391D01* X28142Y37383D01* X28154Y37349D01* X28169Y37316D01* X28187Y37284D01* X28208Y37255D01* X28232Y37227D01* X28257Y37202D01* X28285Y37179D01* Y35804D01* X28272Y35793D01* X28247Y35767D01* X28224Y35739D01* X28204Y35709D01* X28186Y35677D01* X28172Y35644D01* X28160Y35610D01* X28158Y35601D01* X28158Y35593D01* X28159Y35584D01* X28162Y35576D01* X28167Y35568D01* X28172Y35561D01* X28179Y35556D01* X28186Y35551D01* X28194Y35548D01* X28203Y35546D01* X28212Y35546D01* X28220Y35547D01* X28228Y35550D01* X28236Y35555D01* X28243Y35560D01* X28249Y35567D01* X28253Y35574D01* X28256Y35582D01* X28265Y35608D01* X28276Y35633D01* X28285Y35650D01* Y35349D01* X28278Y35362D01* X28267Y35386D01* X28258Y35412D01* X28254Y35420D01* X28250Y35427D01* X28244Y35434D01* X28237Y35439D01* X28229Y35443D01* X28221Y35446D01* X28212Y35447D01* X28204Y35447D01* X28195Y35445D01* X28187Y35442D01* X28180Y35437D01* X28173Y35431D01* X28168Y35424D01* X28164Y35417D01* X28161Y35409D01* X28160Y35400D01* X28160Y35391D01* X28162Y35383D01* X28174Y35349D01* X28189Y35316D01* X28207Y35284D01* X28228Y35255D01* X28252Y35227D01* X28277Y35202D01* X28285Y35196D01* Y33785D01* X28267Y33767D01* X28244Y33739D01* X28224Y33709D01* X28206Y33677D01* X28192Y33644D01* X28180Y33610D01* X28178Y33601D01* X28178Y33593D01* X28179Y33584D01* X28182Y33576D01* X28187Y33568D01* X28192Y33561D01* X28199Y33556D01* X28206Y33551D01* X28214Y33548D01* X28223Y33546D01* X28232Y33546D01* X28240Y33547D01* X28248Y33550D01* X28256Y33555D01* X28263Y33560D01* X28269Y33567D01* X28273Y33574D01* X28276Y33582D01* X28285Y33608D01* X28285Y33609D01* Y33391D01* X28278Y33412D01* X28274Y33420D01* X28270Y33427D01* X28264Y33434D01* X28257Y33439D01* X28249Y33443D01* X28241Y33446D01* X28232Y33447D01* X28224Y33447D01* X28215Y33445D01* X28207Y33442D01* X28200Y33437D01* X28193Y33431D01* X28188Y33424D01* X28184Y33417D01* X28181Y33409D01* X28180Y33400D01* X28180Y33391D01* X28182Y33383D01* X28194Y33349D01* X28209Y33316D01* X28227Y33284D01* X28248Y33255D01* X28272Y33227D01* X28285Y33214D01* Y31765D01* X28264Y31739D01* X28244Y31709D01* X28226Y31677D01* X28212Y31644D01* X28200Y31610D01* X28198Y31601D01* X28198Y31593D01* X28199Y31584D01* X28202Y31576D01* X28207Y31568D01* X28212Y31561D01* X28219Y31556D01* X28226Y31551D01* X28234Y31548D01* X28243Y31546D01* X28252Y31546D01* X28260Y31547D01* X28268Y31550D01* X28276Y31555D01* X28283Y31560D01* X28285Y31563D01* Y31432D01* X28284Y31434D01* X28277Y31439D01* X28269Y31443D01* X28261Y31446D01* X28252Y31447D01* X28244Y31447D01* X28235Y31445D01* X28227Y31442D01* X28220Y31437D01* X28213Y31431D01* X28208Y31424D01* X28204Y31417D01* X28201Y31409D01* X28200Y31400D01* X28200Y31391D01* X28202Y31383D01* X28214Y31349D01* X28229Y31316D01* X28247Y31284D01* X28268Y31255D01* X28285Y31235D01* Y29740D01* X28284Y29739D01* X28264Y29709D01* X28246Y29677D01* X28232Y29644D01* X28220Y29610D01* X28218Y29601D01* X28218Y29593D01* X28219Y29584D01* X28222Y29576D01* X28227Y29568D01* X28232Y29561D01* X28239Y29556D01* X28246Y29551D01* X28254Y29548D01* X28263Y29546D01* X28272Y29546D01* X28280Y29547D01* X28285Y29549D01* Y29445D01* X28281Y29446D01* X28272Y29447D01* X28264Y29447D01* X28255Y29445D01* X28247Y29442D01* X28240Y29437D01* X28233Y29431D01* X28228Y29424D01* X28224Y29417D01* X28221Y29409D01* X28220Y29400D01* X28220Y29391D01* X28222Y29383D01* X28234Y29349D01* X28249Y29316D01* X28267Y29284D01* X28285Y29259D01* Y27711D01* X28284Y27709D01* X28266Y27677D01* X28252Y27644D01* X28240Y27610D01* X28238Y27601D01* X28238Y27593D01* X28239Y27584D01* X28242Y27576D01* X28247Y27568D01* X28252Y27561D01* X28259Y27556D01* X28266Y27551D01* X28274Y27548D01* X28283Y27546D01* X28285D01* Y27447D01* X28284Y27447D01* X28275Y27445D01* X28267Y27442D01* X28260Y27437D01* X28253Y27431D01* X28248Y27424D01* X28244Y27417D01* X28241Y27409D01* X28240Y27400D01* X28240Y27391D01* X28242Y27383D01* X28254Y27349D01* X28269Y27316D01* X28285Y27288D01* Y25675D01* X28272Y25644D01* X28260Y25610D01* X28258Y25601D01* X28258Y25593D01* X28259Y25584D01* X28262Y25576D01* X28267Y25568D01* X28272Y25561D01* X28279Y25556D01* X28285Y25552D01* Y25441D01* X28280Y25437D01* X28273Y25431D01* X28268Y25424D01* X28264Y25417D01* X28261Y25409D01* X28260Y25400D01* X28260Y25391D01* X28262Y25383D01* X28274Y25349D01* X28285Y25325D01* Y23625D01* X28280Y23610D01* X28278Y23601D01* X28278Y23593D01* X28279Y23584D01* X28282Y23576D01* X28285Y23571D01* Y23419D01* X28284Y23417D01* X28281Y23409D01* X28280Y23400D01* X28280Y23391D01* X28282Y23383D01* X28285Y23374D01* Y0D01* X27104D01* Y1165D01* X27129Y1183D01* X27157Y1207D01* X27182Y1232D01* X27205Y1260D01* X27225Y1290D01* X27243Y1322D01* X27257Y1355D01* X27269Y1389D01* X27271Y1398D01* X27271Y1407D01* X27270Y1415D01* X27267Y1423D01* X27262Y1431D01* X27257Y1438D01* X27250Y1444D01* X27243Y1448D01* X27235Y1451D01* X27226Y1453D01* X27217Y1453D01* X27209Y1452D01* X27201Y1449D01* X27193Y1445D01* X27186Y1439D01* X27180Y1433D01* X27176Y1425D01* X27173Y1417D01* X27164Y1391D01* X27153Y1366D01* X27140Y1343D01* X27125Y1320D01* X27108Y1299D01* X27104Y1295D01* Y1704D01* X27104Y1704D01* X27122Y1683D01* X27137Y1661D01* X27151Y1637D01* X27162Y1613D01* X27171Y1587D01* X27175Y1579D01* X27179Y1572D01* X27185Y1565D01* X27192Y1560D01* X27200Y1556D01* X27208Y1553D01* X27217Y1552D01* X27225Y1552D01* X27234Y1554D01* X27242Y1557D01* X27249Y1562D01* X27256Y1568D01* X27261Y1575D01* X27265Y1582D01* X27268Y1591D01* X27269Y1599D01* X27269Y1608D01* X27267Y1617D01* X27255Y1651D01* X27240Y1683D01* X27222Y1715D01* X27201Y1744D01* X27177Y1772D01* X27152Y1797D01* X27124Y1820D01* X27104Y1834D01* Y3180D01* X27109Y3183D01* X27137Y3207D01* X27162Y3232D01* X27185Y3260D01* X27205Y3290D01* X27223Y3322D01* X27237Y3355D01* X27249Y3389D01* X27251Y3398D01* X27251Y3407D01* X27250Y3415D01* X27247Y3423D01* X27242Y3431D01* X27237Y3438D01* X27230Y3444D01* X27223Y3448D01* X27215Y3451D01* X27206Y3453D01* X27197Y3453D01* X27189Y3452D01* X27181Y3449D01* X27173Y3445D01* X27166Y3439D01* X27160Y3433D01* X27156Y3425D01* X27153Y3417D01* X27144Y3391D01* X27133Y3366D01* X27120Y3343D01* X27105Y3320D01* X27104Y3319D01* Y3680D01* X27117Y3661D01* X27131Y3637D01* X27142Y3613D01* X27151Y3587D01* X27155Y3579D01* X27159Y3572D01* X27165Y3565D01* X27172Y3560D01* X27180Y3556D01* X27188Y3553D01* X27197Y3552D01* X27205Y3552D01* X27214Y3554D01* X27222Y3557D01* X27229Y3562D01* X27236Y3568D01* X27241Y3575D01* X27245Y3582D01* X27248Y3591D01* X27249Y3599D01* X27249Y3608D01* X27247Y3617D01* X27235Y3651D01* X27220Y3683D01* X27202Y3715D01* X27181Y3744D01* X27157Y3772D01* X27132Y3797D01* X27104Y3820D01* Y5196D01* X27117Y5207D01* X27142Y5232D01* X27165Y5260D01* X27185Y5290D01* X27203Y5322D01* X27217Y5355D01* X27229Y5389D01* X27231Y5398D01* X27231Y5407D01* X27230Y5415D01* X27227Y5423D01* X27222Y5431D01* X27217Y5438D01* X27210Y5444D01* X27203Y5448D01* X27195Y5451D01* X27186Y5453D01* X27177Y5453D01* X27169Y5452D01* X27161Y5449D01* X27153Y5445D01* X27146Y5439D01* X27140Y5433D01* X27136Y5425D01* X27133Y5417D01* X27124Y5391D01* X27113Y5366D01* X27104Y5350D01* Y5650D01* X27111Y5637D01* X27122Y5613D01* X27131Y5587D01* X27135Y5579D01* X27139Y5572D01* X27145Y5565D01* X27152Y5560D01* X27160Y5556D01* X27168Y5553D01* X27177Y5552D01* X27185Y5552D01* X27194Y5554D01* X27202Y5557D01* X27209Y5562D01* X27216Y5568D01* X27221Y5575D01* X27225Y5582D01* X27228Y5591D01* X27229Y5599D01* X27229Y5608D01* X27227Y5617D01* X27215Y5651D01* X27200Y5683D01* X27182Y5715D01* X27161Y5744D01* X27137Y5772D01* X27112Y5797D01* X27104Y5804D01* Y7214D01* X27122Y7232D01* X27145Y7260D01* X27165Y7290D01* X27183Y7322D01* X27197Y7355D01* X27209Y7389D01* X27211Y7398D01* X27211Y7407D01* X27210Y7415D01* X27207Y7423D01* X27202Y7431D01* X27197Y7438D01* X27190Y7444D01* X27183Y7448D01* X27175Y7451D01* X27166Y7453D01* X27157Y7453D01* X27149Y7452D01* X27141Y7449D01* X27133Y7445D01* X27126Y7439D01* X27120Y7433D01* X27116Y7425D01* X27113Y7417D01* X27104Y7391D01* X27104Y7391D01* Y7608D01* X27111Y7587D01* X27115Y7579D01* X27119Y7572D01* X27125Y7565D01* X27132Y7560D01* X27140Y7556D01* X27148Y7553D01* X27157Y7552D01* X27165Y7552D01* X27174Y7554D01* X27182Y7557D01* X27189Y7562D01* X27196Y7568D01* X27201Y7575D01* X27205Y7582D01* X27208Y7591D01* X27209Y7599D01* X27209Y7608D01* X27207Y7617D01* X27195Y7651D01* X27180Y7683D01* X27162Y7715D01* X27141Y7744D01* X27117Y7772D01* X27104Y7785D01* Y9235D01* X27125Y9260D01* X27145Y9290D01* X27163Y9322D01* X27177Y9355D01* X27189Y9389D01* X27191Y9398D01* X27191Y9407D01* X27190Y9415D01* X27187Y9423D01* X27182Y9431D01* X27177Y9438D01* X27170Y9444D01* X27163Y9448D01* X27155Y9451D01* X27146Y9453D01* X27137Y9453D01* X27129Y9452D01* X27121Y9449D01* X27113Y9445D01* X27106Y9439D01* X27104Y9437D01* Y9567D01* X27105Y9565D01* X27112Y9560D01* X27120Y9556D01* X27128Y9553D01* X27137Y9552D01* X27145Y9552D01* X27154Y9554D01* X27162Y9557D01* X27169Y9562D01* X27176Y9568D01* X27181Y9575D01* X27185Y9582D01* X27188Y9591D01* X27189Y9599D01* X27189Y9608D01* X27187Y9617D01* X27175Y9651D01* X27160Y9683D01* X27142Y9715D01* X27121Y9744D01* X27104Y9764D01* Y11259D01* X27105Y11260D01* X27125Y11290D01* X27143Y11322D01* X27157Y11355D01* X27169Y11389D01* X27171Y11398D01* X27171Y11407D01* X27170Y11415D01* X27167Y11423D01* X27162Y11431D01* X27157Y11438D01* X27150Y11444D01* X27143Y11448D01* X27135Y11451D01* X27126Y11453D01* X27117Y11453D01* X27109Y11452D01* X27104Y11450D01* Y11555D01* X27108Y11553D01* X27117Y11552D01* X27125Y11552D01* X27134Y11554D01* X27142Y11557D01* X27149Y11562D01* X27156Y11568D01* X27161Y11575D01* X27165Y11582D01* X27168Y11591D01* X27169Y11599D01* X27169Y11608D01* X27167Y11617D01* X27155Y11651D01* X27140Y11683D01* X27122Y11715D01* X27104Y11740D01* Y13288D01* X27105Y13290D01* X27123Y13322D01* X27137Y13355D01* X27149Y13389D01* X27151Y13398D01* X27151Y13407D01* X27150Y13415D01* X27147Y13423D01* X27142Y13431D01* X27137Y13438D01* X27130Y13444D01* X27123Y13448D01* X27115Y13451D01* X27106Y13453D01* X27104D01* Y13552D01* X27105D01* X27114Y13554D01* X27122Y13557D01* X27129Y13562D01* X27136Y13568D01* X27141Y13575D01* X27145Y13582D01* X27148Y13591D01* X27149Y13599D01* X27149Y13608D01* X27147Y13617D01* X27135Y13651D01* X27120Y13683D01* X27104Y13711D01* Y15324D01* X27117Y15355D01* X27129Y15389D01* X27131Y15398D01* X27131Y15407D01* X27130Y15415D01* X27127Y15423D01* X27122Y15431D01* X27117Y15438D01* X27110Y15444D01* X27104Y15447D01* Y15559D01* X27109Y15562D01* X27116Y15568D01* X27121Y15575D01* X27125Y15582D01* X27128Y15591D01* X27129Y15599D01* X27129Y15608D01* X27127Y15617D01* X27115Y15651D01* X27104Y15674D01* Y17374D01* X27109Y17389D01* X27111Y17398D01* X27111Y17407D01* X27110Y17415D01* X27107Y17423D01* X27104Y17428D01* Y17580D01* X27105Y17582D01* X27108Y17591D01* X27109Y17599D01* X27109Y17608D01* X27107Y17617D01* X27104Y17625D01* Y40000D01* G37* G36* X28285D02*X28465D01* Y37859D01* X28462Y37864D01* X28456Y37871D01* X28449Y37876D01* X28442Y37880D01* X28433Y37883D01* X28425Y37884D01* X28416Y37884D01* X28408Y37882D01* X28373Y37870D01* X28341Y37855D01* X28309Y37837D01* X28285Y37820D01* Y39166D01* X28295Y39159D01* X28327Y39141D01* X28360Y39127D01* X28394Y39115D01* X28403Y39113D01* X28412Y39113D01* X28420Y39115D01* X28428Y39117D01* X28436Y39122D01* X28443Y39127D01* X28449Y39134D01* X28453Y39141D01* X28456Y39149D01* X28458Y39158D01* X28458Y39167D01* X28457Y39175D01* X28454Y39183D01* X28450Y39191D01* X28444Y39198D01* X28437Y39204D01* X28430Y39208D01* X28422Y39211D01* X28396Y39220D01* X28371Y39231D01* X28348Y39244D01* X28325Y39259D01* X28304Y39276D01* X28285Y39295D01* Y39704D01* X28300Y39719D01* X28321Y39737D01* X28343Y39752D01* X28367Y39766D01* X28391Y39777D01* X28417Y39786D01* X28425Y39790D01* X28432Y39794D01* X28439Y39800D01* X28444Y39807D01* X28448Y39815D01* X28451Y39823D01* X28452Y39832D01* X28452Y39840D01* X28450Y39849D01* X28447Y39857D01* X28442Y39864D01* X28436Y39871D01* X28429Y39876D01* X28422Y39880D01* X28413Y39883D01* X28405Y39884D01* X28396Y39884D01* X28388Y39882D01* X28353Y39870D01* X28321Y39855D01* X28289Y39837D01* X28285Y39834D01* Y40000D01* G37* G36* X28465Y11740D02*X28464Y11739D01* X28444Y11709D01* X28426Y11677D01* X28412Y11644D01* X28400Y11610D01* X28398Y11601D01* X28398Y11593D01* X28399Y11584D01* X28402Y11576D01* X28407Y11568D01* X28412Y11561D01* X28419Y11556D01* X28426Y11551D01* X28434Y11548D01* X28443Y11546D01* X28452Y11546D01* X28460Y11547D01* X28465Y11549D01* Y11445D01* X28461Y11446D01* X28452Y11447D01* X28444Y11447D01* X28435Y11445D01* X28427Y11442D01* X28420Y11437D01* X28413Y11431D01* X28408Y11424D01* X28404Y11417D01* X28401Y11409D01* X28400Y11400D01* X28400Y11391D01* X28402Y11383D01* X28414Y11349D01* X28429Y11316D01* X28447Y11284D01* X28465Y11259D01* Y9711D01* X28464Y9709D01* X28446Y9677D01* X28432Y9644D01* X28420Y9610D01* X28418Y9601D01* X28418Y9593D01* X28419Y9584D01* X28422Y9576D01* X28427Y9568D01* X28432Y9561D01* X28439Y9556D01* X28446Y9551D01* X28454Y9548D01* X28463Y9546D01* X28465D01* Y9447D01* X28464Y9447D01* X28455Y9445D01* X28447Y9442D01* X28440Y9437D01* X28433Y9431D01* X28428Y9424D01* X28424Y9417D01* X28421Y9409D01* X28420Y9400D01* X28420Y9391D01* X28422Y9383D01* X28434Y9349D01* X28449Y9316D01* X28465Y9288D01* Y7675D01* X28452Y7644D01* X28440Y7610D01* X28438Y7601D01* X28438Y7593D01* X28439Y7584D01* X28442Y7576D01* X28447Y7568D01* X28452Y7561D01* X28459Y7556D01* X28465Y7552D01* Y7441D01* X28460Y7437D01* X28453Y7431D01* X28448Y7424D01* X28444Y7417D01* X28441Y7409D01* X28440Y7400D01* X28440Y7391D01* X28442Y7383D01* X28454Y7349D01* X28465Y7325D01* Y5625D01* X28460Y5610D01* X28458Y5601D01* X28458Y5593D01* X28459Y5584D01* X28462Y5576D01* X28465Y5571D01* Y5419D01* X28464Y5417D01* X28461Y5409D01* X28460Y5400D01* X28460Y5391D01* X28462Y5383D01* X28465Y5374D01* Y0D01* X28285D01* Y23374D01* X28294Y23349D01* X28309Y23316D01* X28327Y23284D01* X28348Y23255D01* X28372Y23227D01* X28397Y23202D01* X28425Y23179D01* X28455Y23159D01* X28465Y23153D01* Y21834D01* X28440Y21816D01* X28412Y21793D01* X28387Y21767D01* X28364Y21739D01* X28344Y21709D01* X28326Y21677D01* X28312Y21644D01* X28300Y21610D01* X28298Y21601D01* X28298Y21593D01* X28299Y21584D01* X28302Y21576D01* X28307Y21568D01* X28312Y21561D01* X28319Y21556D01* X28326Y21551D01* X28334Y21548D01* X28343Y21546D01* X28352Y21546D01* X28360Y21547D01* X28368Y21550D01* X28376Y21555D01* X28383Y21560D01* X28389Y21567D01* X28393Y21574D01* X28396Y21582D01* X28405Y21608D01* X28416Y21633D01* X28429Y21657D01* X28444Y21679D01* X28461Y21700D01* X28465Y21704D01* Y21295D01* X28465Y21295D01* X28447Y21316D01* X28432Y21338D01* X28418Y21362D01* X28407Y21386D01* X28398Y21412D01* X28394Y21420D01* X28390Y21427D01* X28384Y21434D01* X28377Y21439D01* X28369Y21443D01* X28361Y21446D01* X28352Y21447D01* X28344Y21447D01* X28335Y21445D01* X28327Y21442D01* X28320Y21437D01* X28313Y21431D01* X28308Y21424D01* X28304Y21417D01* X28301Y21409D01* X28300Y21400D01* X28300Y21391D01* X28302Y21383D01* X28314Y21349D01* X28329Y21316D01* X28347Y21284D01* X28368Y21255D01* X28392Y21227D01* X28417Y21202D01* X28445Y21179D01* X28465Y21166D01* Y19820D01* X28460Y19816D01* X28432Y19793D01* X28407Y19767D01* X28384Y19739D01* X28364Y19709D01* X28346Y19677D01* X28332Y19644D01* X28320Y19610D01* X28318Y19601D01* X28318Y19593D01* X28319Y19584D01* X28322Y19576D01* X28327Y19568D01* X28332Y19561D01* X28339Y19556D01* X28346Y19551D01* X28354Y19548D01* X28363Y19546D01* X28372Y19546D01* X28380Y19547D01* X28388Y19550D01* X28396Y19555D01* X28403Y19560D01* X28409Y19567D01* X28413Y19574D01* X28416Y19582D01* X28425Y19608D01* X28436Y19633D01* X28449Y19657D01* X28464Y19679D01* X28465Y19680D01* Y19319D01* X28452Y19338D01* X28438Y19362D01* X28427Y19386D01* X28418Y19412D01* X28414Y19420D01* X28410Y19427D01* X28404Y19434D01* X28397Y19439D01* X28389Y19443D01* X28381Y19446D01* X28372Y19447D01* X28364Y19447D01* X28355Y19445D01* X28347Y19442D01* X28340Y19437D01* X28333Y19431D01* X28328Y19424D01* X28324Y19417D01* X28321Y19409D01* X28320Y19400D01* X28320Y19391D01* X28322Y19383D01* X28334Y19349D01* X28349Y19316D01* X28367Y19284D01* X28388Y19255D01* X28412Y19227D01* X28437Y19202D01* X28465Y19179D01* Y17804D01* X28452Y17793D01* X28427Y17767D01* X28404Y17739D01* X28384Y17709D01* X28366Y17677D01* X28352Y17644D01* X28340Y17610D01* X28338Y17601D01* X28338Y17593D01* X28339Y17584D01* X28342Y17576D01* X28347Y17568D01* X28352Y17561D01* X28359Y17556D01* X28366Y17551D01* X28374Y17548D01* X28383Y17546D01* X28392Y17546D01* X28400Y17547D01* X28408Y17550D01* X28416Y17555D01* X28423Y17560D01* X28429Y17567D01* X28433Y17574D01* X28436Y17582D01* X28445Y17608D01* X28456Y17633D01* X28465Y17650D01* Y17349D01* X28458Y17362D01* X28447Y17386D01* X28438Y17412D01* X28434Y17420D01* X28430Y17427D01* X28424Y17434D01* X28417Y17439D01* X28409Y17443D01* X28401Y17446D01* X28392Y17447D01* X28384Y17447D01* X28375Y17445D01* X28367Y17442D01* X28360Y17437D01* X28353Y17431D01* X28348Y17424D01* X28344Y17417D01* X28341Y17409D01* X28340Y17400D01* X28340Y17391D01* X28342Y17383D01* X28354Y17349D01* X28369Y17316D01* X28387Y17284D01* X28408Y17255D01* X28432Y17227D01* X28457Y17202D01* X28465Y17196D01* Y15785D01* X28447Y15767D01* X28424Y15739D01* X28404Y15709D01* X28386Y15677D01* X28372Y15644D01* X28360Y15610D01* X28358Y15601D01* X28358Y15593D01* X28359Y15584D01* X28362Y15576D01* X28367Y15568D01* X28372Y15561D01* X28379Y15556D01* X28386Y15551D01* X28394Y15548D01* X28403Y15546D01* X28412Y15546D01* X28420Y15547D01* X28428Y15550D01* X28436Y15555D01* X28443Y15560D01* X28449Y15567D01* X28453Y15574D01* X28456Y15582D01* X28465Y15608D01* X28465Y15609D01* Y15391D01* X28458Y15412D01* X28454Y15420D01* X28450Y15427D01* X28444Y15434D01* X28437Y15439D01* X28429Y15443D01* X28421Y15446D01* X28412Y15447D01* X28404Y15447D01* X28395Y15445D01* X28387Y15442D01* X28380Y15437D01* X28373Y15431D01* X28368Y15424D01* X28364Y15417D01* X28361Y15409D01* X28360Y15400D01* X28360Y15391D01* X28362Y15383D01* X28374Y15349D01* X28389Y15316D01* X28407Y15284D01* X28428Y15255D01* X28452Y15227D01* X28465Y15214D01* Y13765D01* X28444Y13739D01* X28424Y13709D01* X28406Y13677D01* X28392Y13644D01* X28380Y13610D01* X28378Y13601D01* X28378Y13593D01* X28379Y13584D01* X28382Y13576D01* X28387Y13568D01* X28392Y13561D01* X28399Y13556D01* X28406Y13551D01* X28414Y13548D01* X28423Y13546D01* X28432Y13546D01* X28440Y13547D01* X28448Y13550D01* X28456Y13555D01* X28463Y13560D01* X28465Y13563D01* Y13432D01* X28464Y13434D01* X28457Y13439D01* X28449Y13443D01* X28441Y13446D01* X28432Y13447D01* X28424Y13447D01* X28415Y13445D01* X28407Y13442D01* X28400Y13437D01* X28393Y13431D01* X28388Y13424D01* X28384Y13417D01* X28381Y13409D01* X28380Y13400D01* X28380Y13391D01* X28382Y13383D01* X28394Y13349D01* X28409Y13316D01* X28427Y13284D01* X28448Y13255D01* X28465Y13235D01* Y11740D01* G37* G36* Y23276D02*X28464Y23276D01* X28445Y23295D01* X28427Y23316D01* X28412Y23338D01* X28398Y23362D01* X28387Y23386D01* X28378Y23412D01* X28374Y23420D01* X28370Y23427D01* X28364Y23434D01* X28357Y23439D01* X28349Y23443D01* X28341Y23446D01* X28332Y23447D01* X28324Y23447D01* X28315Y23445D01* X28307Y23442D01* X28300Y23437D01* X28293Y23431D01* X28288Y23424D01* X28285Y23419D01* Y23571D01* X28287Y23568D01* X28292Y23561D01* X28299Y23556D01* X28306Y23551D01* X28314Y23548D01* X28323Y23546D01* X28332Y23546D01* X28340Y23547D01* X28348Y23550D01* X28356Y23555D01* X28363Y23560D01* X28369Y23567D01* X28373Y23574D01* X28376Y23582D01* X28385Y23608D01* X28396Y23633D01* X28409Y23657D01* X28424Y23679D01* X28441Y23700D01* X28460Y23719D01* X28465Y23723D01* Y23276D01* G37* G36* Y23846D02*X28449Y23837D01* X28420Y23816D01* X28392Y23793D01* X28367Y23767D01* X28344Y23739D01* X28324Y23709D01* X28306Y23677D01* X28292Y23644D01* X28285Y23625D01* Y25325D01* X28289Y25316D01* X28307Y25284D01* X28328Y25255D01* X28352Y25227D01* X28377Y25202D01* X28405Y25179D01* X28435Y25159D01* X28465Y25142D01* Y23846D01* G37* G36* Y25259D02*X28465Y25259D01* X28444Y25276D01* X28425Y25295D01* X28407Y25316D01* X28392Y25338D01* X28378Y25362D01* X28367Y25386D01* X28358Y25412D01* X28354Y25420D01* X28350Y25427D01* X28344Y25434D01* X28337Y25439D01* X28329Y25443D01* X28321Y25446D01* X28312Y25447D01* X28304Y25447D01* X28295Y25445D01* X28287Y25442D01* X28285Y25441D01* Y25552D01* X28286Y25551D01* X28294Y25548D01* X28303Y25546D01* X28312Y25546D01* X28320Y25547D01* X28328Y25550D01* X28336Y25555D01* X28343Y25560D01* X28349Y25567D01* X28353Y25574D01* X28356Y25582D01* X28365Y25608D01* X28376Y25633D01* X28389Y25657D01* X28404Y25679D01* X28421Y25700D01* X28440Y25719D01* X28461Y25737D01* X28465Y25740D01* Y25259D01* G37* G36* Y25857D02*X28461Y25855D01* X28429Y25837D01* X28400Y25816D01* X28372Y25793D01* X28347Y25767D01* X28324Y25739D01* X28304Y25709D01* X28286Y25677D01* X28285Y25675D01* Y27288D01* X28287Y27284D01* X28308Y27255D01* X28332Y27227D01* X28357Y27202D01* X28385Y27179D01* X28415Y27159D01* X28447Y27141D01* X28465Y27133D01* Y25857D01* G37* G36* Y27246D02*X28445Y27259D01* X28424Y27276D01* X28405Y27295D01* X28387Y27316D01* X28372Y27338D01* X28358Y27362D01* X28347Y27386D01* X28338Y27412D01* X28334Y27420D01* X28330Y27427D01* X28324Y27434D01* X28317Y27439D01* X28309Y27443D01* X28301Y27446D01* X28292Y27447D01* X28285Y27447D01* Y27546D01* X28292Y27546D01* X28300Y27547D01* X28308Y27550D01* X28316Y27555D01* X28323Y27560D01* X28329Y27567D01* X28333Y27574D01* X28336Y27582D01* X28345Y27608D01* X28356Y27633D01* X28369Y27657D01* X28384Y27679D01* X28401Y27700D01* X28420Y27719D01* X28441Y27737D01* X28463Y27752D01* X28465Y27754D01* Y27246D01* G37* G36* Y27866D02*X28441Y27855D01* X28409Y27837D01* X28380Y27816D01* X28352Y27793D01* X28327Y27767D01* X28304Y27739D01* X28285Y27711D01* Y29259D01* X28288Y29255D01* X28312Y29227D01* X28337Y29202D01* X28365Y29179D01* X28395Y29159D01* X28427Y29141D01* X28460Y29127D01* X28465Y29125D01* Y27866D01* G37* G36* Y29234D02*X28448Y29244D01* X28425Y29259D01* X28404Y29276D01* X28385Y29295D01* X28367Y29316D01* X28352Y29338D01* X28338Y29362D01* X28327Y29386D01* X28318Y29412D01* X28314Y29420D01* X28310Y29427D01* X28304Y29434D01* X28297Y29439D01* X28289Y29443D01* X28285Y29445D01* Y29549D01* X28288Y29550D01* X28296Y29555D01* X28303Y29560D01* X28309Y29567D01* X28313Y29574D01* X28316Y29582D01* X28325Y29608D01* X28336Y29633D01* X28349Y29657D01* X28364Y29679D01* X28381Y29700D01* X28400Y29719D01* X28421Y29737D01* X28443Y29752D01* X28465Y29765D01* Y29234D01* G37* G36* Y29874D02*X28453Y29870D01* X28421Y29855D01* X28389Y29837D01* X28360Y29816D01* X28332Y29793D01* X28307Y29767D01* X28285Y29740D01* Y31235D01* X28292Y31227D01* X28317Y31202D01* X28345Y31179D01* X28375Y31159D01* X28407Y31141D01* X28440Y31127D01* X28465Y31118D01* Y29874D01* G37* G36* Y31225D02*X28451Y31231D01* X28428Y31244D01* X28405Y31259D01* X28384Y31276D01* X28365Y31295D01* X28347Y31316D01* X28332Y31338D01* X28318Y31362D01* X28307Y31386D01* X28298Y31412D01* X28294Y31420D01* X28290Y31427D01* X28285Y31432D01* Y31563D01* X28289Y31567D01* X28293Y31574D01* X28296Y31582D01* X28305Y31608D01* X28316Y31633D01* X28329Y31657D01* X28344Y31679D01* X28361Y31700D01* X28380Y31719D01* X28401Y31737D01* X28423Y31752D01* X28447Y31766D01* X28465Y31775D01* Y31225D01* G37* G36* Y31881D02*X28433Y31870D01* X28401Y31855D01* X28369Y31837D01* X28340Y31816D01* X28312Y31793D01* X28287Y31767D01* X28285Y31765D01* Y33214D01* X28297Y33202D01* X28325Y33179D01* X28355Y33159D01* X28387Y33141D01* X28420Y33127D01* X28454Y33115D01* X28463Y33113D01* X28465D01* Y31881D01* G37* G36* Y33217D02*X28456Y33220D01* X28431Y33231D01* X28408Y33244D01* X28385Y33259D01* X28364Y33276D01* X28345Y33295D01* X28327Y33316D01* X28312Y33338D01* X28298Y33362D01* X28287Y33386D01* X28285Y33391D01* Y33609D01* X28296Y33633D01* X28309Y33657D01* X28324Y33679D01* X28341Y33700D01* X28360Y33719D01* X28381Y33737D01* X28403Y33752D01* X28427Y33766D01* X28451Y33777D01* X28465Y33782D01* Y33217D01* G37* G36* Y33884D02*X28465Y33884D01* X28456Y33884D01* X28448Y33882D01* X28413Y33870D01* X28381Y33855D01* X28349Y33837D01* X28320Y33816D01* X28292Y33793D01* X28285Y33785D01* Y35196D01* X28305Y35179D01* X28335Y35159D01* X28367Y35141D01* X28400Y35127D01* X28434Y35115D01* X28443Y35113D01* X28452Y35113D01* X28460Y35115D01* X28465Y35116D01* Y33884D01* G37* G36* Y35210D02*X28462Y35211D01* X28436Y35220D01* X28411Y35231D01* X28388Y35244D01* X28365Y35259D01* X28344Y35276D01* X28325Y35295D01* X28307Y35316D01* X28292Y35338D01* X28285Y35349D01* Y35650D01* X28289Y35657D01* X28304Y35679D01* X28321Y35700D01* X28340Y35719D01* X28361Y35737D01* X28383Y35752D01* X28407Y35766D01* X28431Y35777D01* X28457Y35786D01* X28465Y35790D01* X28465Y35790D01* Y35210D01* G37* G36* Y35878D02*X28462Y35880D01* X28453Y35883D01* X28445Y35884D01* X28436Y35884D01* X28428Y35882D01* X28393Y35870D01* X28361Y35855D01* X28329Y35837D01* X28300Y35816D01* X28285Y35804D01* Y37179D01* X28285Y37179D01* X28315Y37159D01* X28347Y37141D01* X28380Y37127D01* X28414Y37115D01* X28423Y37113D01* X28432Y37113D01* X28440Y37115D01* X28448Y37117D01* X28456Y37122D01* X28463Y37127D01* X28465Y37130D01* Y35878D01* G37* G36* Y37197D02*X28464Y37198D01* X28457Y37204D01* X28450Y37208D01* X28442Y37211D01* X28416Y37220D01* X28391Y37231D01* X28368Y37244D01* X28345Y37259D01* X28324Y37276D01* X28305Y37295D01* X28287Y37316D01* X28285Y37319D01* Y37680D01* X28301Y37700D01* X28320Y37719D01* X28341Y37737D01* X28363Y37752D01* X28387Y37766D01* X28411Y37777D01* X28437Y37786D01* X28445Y37790D01* X28452Y37794D01* X28459Y37800D01* X28464Y37807D01* X28465Y37809D01* Y37197D01* G37* G36* Y40000D02*X28724D01* Y39834D01* X28714Y39840D01* X28682Y39858D01* X28649Y39873D01* X28615Y39884D01* X28606Y39886D01* X28597Y39886D01* X28589Y39885D01* X28581Y39882D01* X28573Y39878D01* X28566Y39872D01* X28560Y39865D01* X28556Y39858D01* X28553Y39850D01* X28551Y39841D01* X28551Y39833D01* X28552Y39824D01* X28555Y39816D01* X28559Y39808D01* X28565Y39801D01* X28572Y39796D01* X28579Y39791D01* X28587Y39788D01* X28613Y39779D01* X28638Y39768D01* X28661Y39755D01* X28684Y39740D01* X28705Y39723D01* X28724Y39704D01* Y39295D01* X28709Y39280D01* X28688Y39262D01* X28666Y39247D01* X28642Y39233D01* X28618Y39222D01* X28592Y39213D01* X28584Y39209D01* X28577Y39205D01* X28570Y39199D01* X28565Y39192D01* X28561Y39184D01* X28558Y39176D01* X28557Y39167D01* X28557Y39159D01* X28559Y39150D01* X28562Y39142D01* X28567Y39135D01* X28573Y39128D01* X28580Y39123D01* X28587Y39119D01* X28596Y39116D01* X28604Y39115D01* X28613Y39115D01* X28621Y39117D01* X28656Y39129D01* X28688Y39144D01* X28720Y39162D01* X28724Y39165D01* Y37846D01* X28702Y37858D01* X28669Y37873D01* X28635Y37884D01* X28626Y37886D01* X28617Y37886D01* X28609Y37885D01* X28601Y37882D01* X28593Y37878D01* X28586Y37872D01* X28580Y37865D01* X28576Y37858D01* X28573Y37850D01* X28571Y37841D01* X28571Y37833D01* X28572Y37824D01* X28575Y37816D01* X28579Y37808D01* X28585Y37801D01* X28592Y37796D01* X28599Y37791D01* X28607Y37788D01* X28633Y37779D01* X28658Y37768D01* X28681Y37755D01* X28704Y37740D01* X28724Y37724D01* Y37276D01* X28708Y37262D01* X28686Y37247D01* X28662Y37233D01* X28638Y37222D01* X28612Y37213D01* X28604Y37209D01* X28597Y37205D01* X28590Y37199D01* X28585Y37192D01* X28581Y37184D01* X28578Y37176D01* X28577Y37167D01* X28577Y37159D01* X28579Y37150D01* X28582Y37142D01* X28587Y37135D01* X28593Y37128D01* X28600Y37123D01* X28607Y37119D01* X28616Y37116D01* X28624Y37115D01* X28633Y37115D01* X28641Y37117D01* X28676Y37129D01* X28708Y37144D01* X28724Y37153D01* Y35857D01* X28722Y35858D01* X28689Y35873D01* X28655Y35884D01* X28646Y35886D01* X28637Y35886D01* X28629Y35885D01* X28621Y35882D01* X28613Y35878D01* X28606Y35872D01* X28600Y35865D01* X28596Y35858D01* X28593Y35850D01* X28591Y35841D01* X28591Y35833D01* X28592Y35824D01* X28595Y35816D01* X28599Y35808D01* X28605Y35801D01* X28612Y35796D01* X28619Y35791D01* X28627Y35788D01* X28653Y35779D01* X28678Y35768D01* X28701Y35755D01* X28724Y35740D01* Y35259D01* X28706Y35247D01* X28682Y35233D01* X28658Y35222D01* X28632Y35213D01* X28624Y35209D01* X28617Y35205D01* X28610Y35199D01* X28605Y35192D01* X28601Y35184D01* X28598Y35176D01* X28597Y35167D01* X28597Y35159D01* X28599Y35150D01* X28602Y35142D01* X28607Y35135D01* X28613Y35128D01* X28620Y35123D01* X28627Y35119D01* X28636Y35116D01* X28644Y35115D01* X28653Y35115D01* X28661Y35117D01* X28696Y35129D01* X28724Y35142D01* Y33866D01* X28709Y33873D01* X28675Y33884D01* X28666Y33886D01* X28657Y33886D01* X28649Y33885D01* X28641Y33882D01* X28633Y33878D01* X28626Y33872D01* X28620Y33865D01* X28616Y33858D01* X28613Y33850D01* X28611Y33841D01* X28611Y33833D01* X28612Y33824D01* X28615Y33816D01* X28619Y33808D01* X28625Y33801D01* X28632Y33796D01* X28639Y33791D01* X28647Y33788D01* X28673Y33779D01* X28698Y33768D01* X28721Y33755D01* X28724Y33754D01* Y33246D01* X28702Y33233D01* X28678Y33222D01* X28652Y33213D01* X28644Y33209D01* X28637Y33205D01* X28630Y33199D01* X28625Y33192D01* X28621Y33184D01* X28618Y33176D01* X28617Y33167D01* X28617Y33159D01* X28619Y33150D01* X28622Y33142D01* X28627Y33135D01* X28633Y33128D01* X28640Y33123D01* X28647Y33119D01* X28656Y33116D01* X28664Y33115D01* X28673Y33115D01* X28681Y33117D01* X28716Y33129D01* X28724Y33133D01* Y31874D01* X28695Y31884D01* X28686Y31886D01* X28677Y31886D01* X28669Y31885D01* X28661Y31882D01* X28653Y31878D01* X28646Y31872D01* X28640Y31865D01* X28636Y31858D01* X28633Y31850D01* X28631Y31841D01* X28631Y31833D01* X28632Y31824D01* X28635Y31816D01* X28639Y31808D01* X28645Y31801D01* X28652Y31796D01* X28659Y31791D01* X28667Y31788D01* X28693Y31779D01* X28718Y31768D01* X28724Y31765D01* Y31234D01* X28722Y31233D01* X28698Y31222D01* X28672Y31213D01* X28664Y31209D01* X28657Y31205D01* X28650Y31199D01* X28645Y31192D01* X28641Y31184D01* X28638Y31176D01* X28637Y31167D01* X28637Y31159D01* X28639Y31150D01* X28642Y31142D01* X28647Y31135D01* X28653Y31128D01* X28660Y31123D01* X28667Y31119D01* X28676Y31116D01* X28684Y31115D01* X28693Y31115D01* X28701Y31117D01* X28724Y31125D01* Y29881D01* X28715Y29884D01* X28706Y29886D01* X28697Y29886D01* X28689Y29885D01* X28681Y29882D01* X28673Y29878D01* X28666Y29872D01* X28660Y29865D01* X28656Y29858D01* X28653Y29850D01* X28651Y29841D01* X28651Y29833D01* X28652Y29824D01* X28655Y29816D01* X28659Y29808D01* X28665Y29801D01* X28672Y29796D01* X28679Y29791D01* X28687Y29788D01* X28713Y29779D01* X28724Y29774D01* Y29225D01* X28718Y29222D01* X28692Y29213D01* X28684Y29209D01* X28677Y29205D01* X28670Y29199D01* X28665Y29192D01* X28661Y29184D01* X28658Y29176D01* X28657Y29167D01* X28657Y29159D01* X28659Y29150D01* X28662Y29142D01* X28667Y29135D01* X28673Y29128D01* X28680Y29123D01* X28687Y29119D01* X28696Y29116D01* X28704Y29115D01* X28713Y29115D01* X28721Y29117D01* X28724Y29118D01* Y27886D01* X28717Y27886D01* X28709Y27885D01* X28701Y27882D01* X28693Y27878D01* X28686Y27872D01* X28680Y27865D01* X28676Y27858D01* X28673Y27850D01* X28671Y27841D01* X28671Y27833D01* X28672Y27824D01* X28675Y27816D01* X28679Y27808D01* X28685Y27801D01* X28692Y27796D01* X28699Y27791D01* X28707Y27788D01* X28724Y27782D01* Y27217D01* X28712Y27213D01* X28704Y27209D01* X28697Y27205D01* X28690Y27199D01* X28685Y27192D01* X28681Y27184D01* X28678Y27176D01* X28677Y27167D01* X28677Y27159D01* X28679Y27150D01* X28682Y27142D01* X28687Y27135D01* X28693Y27128D01* X28700Y27123D01* X28707Y27119D01* X28716Y27116D01* X28724Y27115D01* Y25883D01* X28721Y25882D01* X28713Y25878D01* X28706Y25872D01* X28700Y25865D01* X28696Y25858D01* X28693Y25850D01* X28691Y25841D01* X28691Y25833D01* X28692Y25824D01* X28695Y25816D01* X28699Y25808D01* X28705Y25801D01* X28712Y25796D01* X28719Y25791D01* X28724Y25789D01* Y25209D01* X28717Y25205D01* X28710Y25199D01* X28705Y25192D01* X28701Y25184D01* X28698Y25176D01* X28697Y25167D01* X28697Y25159D01* X28699Y25150D01* X28702Y25142D01* X28707Y25135D01* X28713Y25128D01* X28720Y25123D01* X28724Y25121D01* Y23870D01* X28720Y23865D01* X28716Y23858D01* X28713Y23850D01* X28711Y23841D01* X28711Y23833D01* X28712Y23824D01* X28715Y23816D01* X28719Y23808D01* X28724Y23802D01* Y23190D01* X28721Y23184D01* X28718Y23176D01* X28717Y23167D01* X28717Y23159D01* X28719Y23150D01* X28722Y23142D01* X28724Y23140D01* Y11861D01* X28722Y11864D01* X28716Y11871D01* X28709Y11876D01* X28702Y11880D01* X28693Y11883D01* X28685Y11884D01* X28676Y11884D01* X28668Y11882D01* X28633Y11870D01* X28601Y11855D01* X28569Y11837D01* X28540Y11816D01* X28512Y11793D01* X28487Y11767D01* X28465Y11740D01* Y13235D01* X28472Y13227D01* X28497Y13202D01* X28525Y13179D01* X28555Y13159D01* X28587Y13141D01* X28620Y13127D01* X28654Y13115D01* X28663Y13113D01* X28672Y13113D01* X28680Y13115D01* X28688Y13117D01* X28696Y13122D01* X28703Y13127D01* X28709Y13134D01* X28713Y13141D01* X28716Y13149D01* X28718Y13158D01* X28718Y13167D01* X28717Y13175D01* X28714Y13183D01* X28710Y13191D01* X28704Y13198D01* X28697Y13204D01* X28690Y13208D01* X28682Y13211D01* X28656Y13220D01* X28631Y13231D01* X28608Y13244D01* X28585Y13259D01* X28564Y13276D01* X28545Y13295D01* X28527Y13316D01* X28512Y13338D01* X28498Y13362D01* X28487Y13386D01* X28478Y13412D01* X28474Y13420D01* X28470Y13427D01* X28465Y13432D01* Y13563D01* X28469Y13567D01* X28473Y13574D01* X28476Y13582D01* X28485Y13608D01* X28496Y13633D01* X28509Y13657D01* X28524Y13679D01* X28541Y13700D01* X28560Y13719D01* X28581Y13737D01* X28603Y13752D01* X28627Y13766D01* X28651Y13777D01* X28677Y13786D01* X28685Y13790D01* X28692Y13794D01* X28699Y13800D01* X28704Y13807D01* X28708Y13815D01* X28711Y13823D01* X28712Y13832D01* X28712Y13840D01* X28710Y13849D01* X28707Y13857D01* X28702Y13864D01* X28696Y13871D01* X28689Y13876D01* X28682Y13880D01* X28673Y13883D01* X28665Y13884D01* X28656Y13884D01* X28648Y13882D01* X28613Y13870D01* X28581Y13855D01* X28549Y13837D01* X28520Y13816D01* X28492Y13793D01* X28467Y13767D01* X28465Y13765D01* Y15214D01* X28477Y15202D01* X28505Y15179D01* X28535Y15159D01* X28567Y15141D01* X28600Y15127D01* X28634Y15115D01* X28643Y15113D01* X28652Y15113D01* X28660Y15115D01* X28668Y15117D01* X28676Y15122D01* X28683Y15127D01* X28689Y15134D01* X28693Y15141D01* X28696Y15149D01* X28698Y15158D01* X28698Y15167D01* X28697Y15175D01* X28694Y15183D01* X28690Y15191D01* X28684Y15198D01* X28677Y15204D01* X28670Y15208D01* X28662Y15211D01* X28636Y15220D01* X28611Y15231D01* X28588Y15244D01* X28565Y15259D01* X28544Y15276D01* X28525Y15295D01* X28507Y15316D01* X28492Y15338D01* X28478Y15362D01* X28467Y15386D01* X28465Y15391D01* Y15609D01* X28476Y15633D01* X28489Y15657D01* X28504Y15679D01* X28521Y15700D01* X28540Y15719D01* X28561Y15737D01* X28583Y15752D01* X28607Y15766D01* X28631Y15777D01* X28657Y15786D01* X28665Y15790D01* X28672Y15794D01* X28679Y15800D01* X28684Y15807D01* X28688Y15815D01* X28691Y15823D01* X28692Y15832D01* X28692Y15840D01* X28690Y15849D01* X28687Y15857D01* X28682Y15864D01* X28676Y15871D01* X28669Y15876D01* X28662Y15880D01* X28653Y15883D01* X28645Y15884D01* X28636Y15884D01* X28628Y15882D01* X28593Y15870D01* X28561Y15855D01* X28529Y15837D01* X28500Y15816D01* X28472Y15793D01* X28465Y15785D01* Y17196D01* X28485Y17179D01* X28515Y17159D01* X28547Y17141D01* X28580Y17127D01* X28614Y17115D01* X28623Y17113D01* X28632Y17113D01* X28640Y17115D01* X28648Y17117D01* X28656Y17122D01* X28663Y17127D01* X28669Y17134D01* X28673Y17141D01* X28676Y17149D01* X28678Y17158D01* X28678Y17167D01* X28677Y17175D01* X28674Y17183D01* X28670Y17191D01* X28664Y17198D01* X28657Y17204D01* X28650Y17208D01* X28642Y17211D01* X28616Y17220D01* X28591Y17231D01* X28568Y17244D01* X28545Y17259D01* X28524Y17276D01* X28505Y17295D01* X28487Y17316D01* X28472Y17338D01* X28465Y17349D01* Y17650D01* X28469Y17657D01* X28484Y17679D01* X28501Y17700D01* X28520Y17719D01* X28541Y17737D01* X28563Y17752D01* X28587Y17766D01* X28611Y17777D01* X28637Y17786D01* X28645Y17790D01* X28652Y17794D01* X28659Y17800D01* X28664Y17807D01* X28668Y17815D01* X28671Y17823D01* X28672Y17832D01* X28672Y17840D01* X28670Y17849D01* X28667Y17857D01* X28662Y17864D01* X28656Y17871D01* X28649Y17876D01* X28642Y17880D01* X28633Y17883D01* X28625Y17884D01* X28616Y17884D01* X28608Y17882D01* X28573Y17870D01* X28541Y17855D01* X28509Y17837D01* X28480Y17816D01* X28465Y17804D01* Y19179D01* X28465Y19179D01* X28495Y19159D01* X28527Y19141D01* X28560Y19127D01* X28594Y19115D01* X28603Y19113D01* X28612Y19113D01* X28620Y19115D01* X28628Y19117D01* X28636Y19122D01* X28643Y19127D01* X28649Y19134D01* X28653Y19141D01* X28656Y19149D01* X28658Y19158D01* X28658Y19167D01* X28657Y19175D01* X28654Y19183D01* X28650Y19191D01* X28644Y19198D01* X28637Y19204D01* X28630Y19208D01* X28622Y19211D01* X28596Y19220D01* X28571Y19231D01* X28548Y19244D01* X28525Y19259D01* X28504Y19276D01* X28485Y19295D01* X28467Y19316D01* X28465Y19319D01* Y19680D01* X28481Y19700D01* X28500Y19719D01* X28521Y19737D01* X28543Y19752D01* X28567Y19766D01* X28591Y19777D01* X28617Y19786D01* X28625Y19790D01* X28632Y19794D01* X28639Y19800D01* X28644Y19807D01* X28648Y19815D01* X28651Y19823D01* X28652Y19832D01* X28652Y19840D01* X28650Y19849D01* X28647Y19857D01* X28642Y19864D01* X28636Y19871D01* X28629Y19876D01* X28622Y19880D01* X28613Y19883D01* X28605Y19884D01* X28596Y19884D01* X28588Y19882D01* X28553Y19870D01* X28521Y19855D01* X28489Y19837D01* X28465Y19820D01* Y21166D01* X28475Y21159D01* X28507Y21141D01* X28540Y21127D01* X28574Y21115D01* X28583Y21113D01* X28592Y21113D01* X28600Y21115D01* X28608Y21117D01* X28616Y21122D01* X28623Y21127D01* X28629Y21134D01* X28633Y21141D01* X28636Y21149D01* X28638Y21158D01* X28638Y21167D01* X28637Y21175D01* X28634Y21183D01* X28630Y21191D01* X28624Y21198D01* X28617Y21204D01* X28610Y21208D01* X28602Y21211D01* X28576Y21220D01* X28551Y21231D01* X28528Y21244D01* X28505Y21259D01* X28484Y21276D01* X28465Y21295D01* Y21704D01* X28480Y21719D01* X28501Y21737D01* X28523Y21752D01* X28547Y21766D01* X28571Y21777D01* X28597Y21786D01* X28605Y21790D01* X28612Y21794D01* X28619Y21800D01* X28624Y21807D01* X28628Y21815D01* X28631Y21823D01* X28632Y21832D01* X28632Y21840D01* X28630Y21849D01* X28627Y21857D01* X28622Y21864D01* X28616Y21871D01* X28609Y21876D01* X28602Y21880D01* X28593Y21883D01* X28585Y21884D01* X28576Y21884D01* X28568Y21882D01* X28533Y21870D01* X28501Y21855D01* X28469Y21837D01* X28465Y21834D01* Y23153D01* X28487Y23141D01* X28520Y23127D01* X28554Y23115D01* X28563Y23113D01* X28572Y23113D01* X28580Y23115D01* X28588Y23117D01* X28596Y23122D01* X28603Y23127D01* X28609Y23134D01* X28613Y23141D01* X28616Y23149D01* X28618Y23158D01* X28618Y23167D01* X28617Y23175D01* X28614Y23183D01* X28610Y23191D01* X28604Y23198D01* X28597Y23204D01* X28590Y23208D01* X28582Y23211D01* X28556Y23220D01* X28531Y23231D01* X28508Y23244D01* X28485Y23259D01* X28465Y23276D01* Y23723D01* X28481Y23737D01* X28503Y23752D01* X28527Y23766D01* X28551Y23777D01* X28577Y23786D01* X28585Y23790D01* X28592Y23794D01* X28599Y23800D01* X28604Y23807D01* X28608Y23815D01* X28611Y23823D01* X28612Y23832D01* X28612Y23840D01* X28610Y23849D01* X28607Y23857D01* X28602Y23864D01* X28596Y23871D01* X28589Y23876D01* X28582Y23880D01* X28573Y23883D01* X28565Y23884D01* X28556Y23884D01* X28548Y23882D01* X28513Y23870D01* X28481Y23855D01* X28465Y23846D01* Y25142D01* X28467Y25141D01* X28500Y25127D01* X28534Y25115D01* X28543Y25113D01* X28552Y25113D01* X28560Y25115D01* X28568Y25117D01* X28576Y25122D01* X28583Y25127D01* X28589Y25134D01* X28593Y25141D01* X28596Y25149D01* X28598Y25158D01* X28598Y25167D01* X28597Y25175D01* X28594Y25183D01* X28590Y25191D01* X28584Y25198D01* X28577Y25204D01* X28570Y25208D01* X28562Y25211D01* X28536Y25220D01* X28511Y25231D01* X28488Y25244D01* X28465Y25259D01* Y25740D01* X28483Y25752D01* X28507Y25766D01* X28531Y25777D01* X28557Y25786D01* X28565Y25790D01* X28572Y25794D01* X28579Y25800D01* X28584Y25807D01* X28588Y25815D01* X28591Y25823D01* X28592Y25832D01* X28592Y25840D01* X28590Y25849D01* X28587Y25857D01* X28582Y25864D01* X28576Y25871D01* X28569Y25876D01* X28562Y25880D01* X28553Y25883D01* X28545Y25884D01* X28536Y25884D01* X28528Y25882D01* X28493Y25870D01* X28465Y25857D01* Y27133D01* X28480Y27127D01* X28514Y27115D01* X28523Y27113D01* X28532Y27113D01* X28540Y27115D01* X28548Y27117D01* X28556Y27122D01* X28563Y27127D01* X28569Y27134D01* X28573Y27141D01* X28576Y27149D01* X28578Y27158D01* X28578Y27167D01* X28577Y27175D01* X28574Y27183D01* X28570Y27191D01* X28564Y27198D01* X28557Y27204D01* X28550Y27208D01* X28542Y27211D01* X28516Y27220D01* X28491Y27231D01* X28468Y27244D01* X28465Y27246D01* Y27754D01* X28487Y27766D01* X28511Y27777D01* X28537Y27786D01* X28545Y27790D01* X28552Y27794D01* X28559Y27800D01* X28564Y27807D01* X28568Y27815D01* X28571Y27823D01* X28572Y27832D01* X28572Y27840D01* X28570Y27849D01* X28567Y27857D01* X28562Y27864D01* X28556Y27871D01* X28549Y27876D01* X28542Y27880D01* X28533Y27883D01* X28525Y27884D01* X28516Y27884D01* X28508Y27882D01* X28473Y27870D01* X28465Y27866D01* Y29125D01* X28494Y29115D01* X28503Y29113D01* X28512Y29113D01* X28520Y29115D01* X28528Y29117D01* X28536Y29122D01* X28543Y29127D01* X28549Y29134D01* X28553Y29141D01* X28556Y29149D01* X28558Y29158D01* X28558Y29167D01* X28557Y29175D01* X28554Y29183D01* X28550Y29191D01* X28544Y29198D01* X28537Y29204D01* X28530Y29208D01* X28522Y29211D01* X28496Y29220D01* X28471Y29231D01* X28465Y29234D01* Y29765D01* X28467Y29766D01* X28491Y29777D01* X28517Y29786D01* X28525Y29790D01* X28532Y29794D01* X28539Y29800D01* X28544Y29807D01* X28548Y29815D01* X28551Y29823D01* X28552Y29832D01* X28552Y29840D01* X28550Y29849D01* X28547Y29857D01* X28542Y29864D01* X28536Y29871D01* X28529Y29876D01* X28522Y29880D01* X28513Y29883D01* X28505Y29884D01* X28496Y29884D01* X28488Y29882D01* X28465Y29874D01* Y31118D01* X28474Y31115D01* X28483Y31113D01* X28492Y31113D01* X28500Y31115D01* X28508Y31117D01* X28516Y31122D01* X28523Y31127D01* X28529Y31134D01* X28533Y31141D01* X28536Y31149D01* X28538Y31158D01* X28538Y31167D01* X28537Y31175D01* X28534Y31183D01* X28530Y31191D01* X28524Y31198D01* X28517Y31204D01* X28510Y31208D01* X28502Y31211D01* X28476Y31220D01* X28465Y31225D01* Y31775D01* X28471Y31777D01* X28497Y31786D01* X28505Y31790D01* X28512Y31794D01* X28519Y31800D01* X28524Y31807D01* X28528Y31815D01* X28531Y31823D01* X28532Y31832D01* X28532Y31840D01* X28530Y31849D01* X28527Y31857D01* X28522Y31864D01* X28516Y31871D01* X28509Y31876D01* X28502Y31880D01* X28493Y31883D01* X28485Y31884D01* X28476Y31884D01* X28468Y31882D01* X28465Y31881D01* Y33113D01* X28472Y33113D01* X28480Y33115D01* X28488Y33117D01* X28496Y33122D01* X28503Y33127D01* X28509Y33134D01* X28513Y33141D01* X28516Y33149D01* X28518Y33158D01* X28518Y33167D01* X28517Y33175D01* X28514Y33183D01* X28510Y33191D01* X28504Y33198D01* X28497Y33204D01* X28490Y33208D01* X28482Y33211D01* X28465Y33217D01* Y33782D01* X28477Y33786D01* X28485Y33790D01* X28492Y33794D01* X28499Y33800D01* X28504Y33807D01* X28508Y33815D01* X28511Y33823D01* X28512Y33832D01* X28512Y33840D01* X28510Y33849D01* X28507Y33857D01* X28502Y33864D01* X28496Y33871D01* X28489Y33876D01* X28482Y33880D01* X28473Y33883D01* X28465Y33884D01* Y35116D01* X28468Y35117D01* X28476Y35122D01* X28483Y35127D01* X28489Y35134D01* X28493Y35141D01* X28496Y35149D01* X28498Y35158D01* X28498Y35167D01* X28497Y35175D01* X28494Y35183D01* X28490Y35191D01* X28484Y35198D01* X28477Y35204D01* X28470Y35208D01* X28465Y35210D01* Y35790D01* X28472Y35794D01* X28479Y35800D01* X28484Y35807D01* X28488Y35815D01* X28491Y35823D01* X28492Y35832D01* X28492Y35840D01* X28490Y35849D01* X28487Y35857D01* X28482Y35864D01* X28476Y35871D01* X28469Y35876D01* X28465Y35878D01* Y37130D01* X28469Y37134D01* X28473Y37141D01* X28476Y37149D01* X28478Y37158D01* X28478Y37167D01* X28477Y37175D01* X28474Y37183D01* X28470Y37191D01* X28465Y37197D01* Y37809D01* X28468Y37815D01* X28471Y37823D01* X28472Y37832D01* X28472Y37840D01* X28470Y37849D01* X28467Y37857D01* X28465Y37859D01* Y40000D01* G37* G36* Y11549D02*X28468Y11550D01* X28476Y11555D01* X28483Y11560D01* X28489Y11567D01* X28493Y11574D01* X28496Y11582D01* X28505Y11608D01* X28516Y11633D01* X28529Y11657D01* X28544Y11679D01* X28561Y11700D01* X28580Y11719D01* X28601Y11737D01* X28623Y11752D01* X28647Y11766D01* X28671Y11777D01* X28697Y11786D01* X28705Y11790D01* X28712Y11794D01* X28719Y11800D01* X28724Y11807D01* Y11198D01* X28717Y11204D01* X28710Y11208D01* X28702Y11211D01* X28676Y11220D01* X28651Y11231D01* X28628Y11244D01* X28605Y11259D01* X28584Y11276D01* X28565Y11295D01* X28547Y11316D01* X28532Y11338D01* X28518Y11362D01* X28507Y11386D01* X28498Y11412D01* X28494Y11420D01* X28490Y11427D01* X28484Y11434D01* X28477Y11439D01* X28469Y11443D01* X28465Y11445D01* Y11549D01* G37* G36* Y11259D02*X28468Y11255D01* X28492Y11227D01* X28517Y11202D01* X28545Y11179D01* X28575Y11159D01* X28607Y11141D01* X28640Y11127D01* X28674Y11115D01* X28683Y11113D01* X28692Y11113D01* X28700Y11115D01* X28708Y11117D01* X28716Y11122D01* X28723Y11127D01* X28724Y11128D01* Y9879D01* X28722Y9880D01* X28713Y9883D01* X28705Y9884D01* X28696Y9884D01* X28688Y9882D01* X28653Y9870D01* X28621Y9855D01* X28589Y9837D01* X28560Y9816D01* X28532Y9793D01* X28507Y9767D01* X28484Y9739D01* X28465Y9711D01* Y11259D01* G37* G36* Y9546D02*X28472Y9546D01* X28480Y9547D01* X28488Y9550D01* X28496Y9555D01* X28503Y9560D01* X28509Y9567D01* X28513Y9574D01* X28516Y9582D01* X28525Y9608D01* X28536Y9633D01* X28549Y9657D01* X28564Y9679D01* X28581Y9700D01* X28600Y9719D01* X28621Y9737D01* X28643Y9752D01* X28667Y9766D01* X28691Y9777D01* X28717Y9786D01* X28724Y9789D01* Y9210D01* X28722Y9211D01* X28696Y9220D01* X28671Y9231D01* X28648Y9244D01* X28625Y9259D01* X28604Y9276D01* X28585Y9295D01* X28567Y9316D01* X28552Y9338D01* X28538Y9362D01* X28527Y9386D01* X28518Y9412D01* X28514Y9420D01* X28510Y9427D01* X28504Y9434D01* X28497Y9439D01* X28489Y9443D01* X28481Y9446D01* X28472Y9447D01* X28465Y9447D01* Y9546D01* G37* G36* Y9288D02*X28467Y9284D01* X28488Y9255D01* X28512Y9227D01* X28537Y9202D01* X28565Y9179D01* X28595Y9159D01* X28627Y9141D01* X28660Y9127D01* X28694Y9115D01* X28703Y9113D01* X28712Y9113D01* X28720Y9115D01* X28724Y9116D01* Y7884D01* X28716Y7884D01* X28708Y7882D01* X28673Y7870D01* X28641Y7855D01* X28609Y7837D01* X28580Y7816D01* X28552Y7793D01* X28527Y7767D01* X28504Y7739D01* X28484Y7709D01* X28466Y7677D01* X28465Y7675D01* Y9288D01* G37* G36* Y7552D02*X28466Y7551D01* X28474Y7548D01* X28483Y7546D01* X28492Y7546D01* X28500Y7547D01* X28508Y7550D01* X28516Y7555D01* X28523Y7560D01* X28529Y7567D01* X28533Y7574D01* X28536Y7582D01* X28545Y7608D01* X28556Y7633D01* X28569Y7657D01* X28584Y7679D01* X28601Y7700D01* X28620Y7719D01* X28641Y7737D01* X28663Y7752D01* X28687Y7766D01* X28711Y7777D01* X28724Y7782D01* Y7217D01* X28716Y7220D01* X28691Y7231D01* X28668Y7244D01* X28645Y7259D01* X28624Y7276D01* X28605Y7295D01* X28587Y7316D01* X28572Y7338D01* X28558Y7362D01* X28547Y7386D01* X28538Y7412D01* X28534Y7420D01* X28530Y7427D01* X28524Y7434D01* X28517Y7439D01* X28509Y7443D01* X28501Y7446D01* X28492Y7447D01* X28484Y7447D01* X28475Y7445D01* X28467Y7442D01* X28465Y7441D01* Y7552D01* G37* G36* Y7325D02*X28469Y7316D01* X28487Y7284D01* X28508Y7255D01* X28532Y7227D01* X28557Y7202D01* X28585Y7179D01* X28615Y7159D01* X28647Y7141D01* X28680Y7127D01* X28714Y7115D01* X28723Y7113D01* X28724D01* Y5881D01* X28693Y5870D01* X28661Y5855D01* X28629Y5837D01* X28600Y5816D01* X28572Y5793D01* X28547Y5767D01* X28524Y5739D01* X28504Y5709D01* X28486Y5677D01* X28472Y5644D01* X28465Y5625D01* Y7325D01* G37* G36* Y5571D02*X28467Y5568D01* X28472Y5561D01* X28479Y5556D01* X28486Y5551D01* X28494Y5548D01* X28503Y5546D01* X28512Y5546D01* X28520Y5547D01* X28528Y5550D01* X28536Y5555D01* X28543Y5560D01* X28549Y5567D01* X28553Y5574D01* X28556Y5582D01* X28565Y5608D01* X28576Y5633D01* X28589Y5657D01* X28604Y5679D01* X28621Y5700D01* X28640Y5719D01* X28661Y5737D01* X28683Y5752D01* X28707Y5766D01* X28724Y5774D01* Y5225D01* X28711Y5231D01* X28688Y5244D01* X28665Y5259D01* X28644Y5276D01* X28625Y5295D01* X28607Y5316D01* X28592Y5338D01* X28578Y5362D01* X28567Y5386D01* X28558Y5412D01* X28554Y5420D01* X28550Y5427D01* X28544Y5434D01* X28537Y5439D01* X28529Y5443D01* X28521Y5446D01* X28512Y5447D01* X28504Y5447D01* X28495Y5445D01* X28487Y5442D01* X28480Y5437D01* X28473Y5431D01* X28468Y5424D01* X28465Y5419D01* Y5571D01* G37* G36* Y5374D02*X28474Y5349D01* X28489Y5316D01* X28507Y5284D01* X28528Y5255D01* X28552Y5227D01* X28577Y5202D01* X28605Y5179D01* X28635Y5159D01* X28667Y5141D01* X28700Y5127D01* X28724Y5119D01* Y3874D01* X28713Y3870D01* X28681Y3855D01* X28649Y3837D01* X28620Y3816D01* X28592Y3793D01* X28567Y3767D01* X28544Y3739D01* X28524Y3709D01* X28506Y3677D01* X28492Y3644D01* X28480Y3610D01* X28478Y3601D01* X28478Y3593D01* X28479Y3584D01* X28482Y3576D01* X28487Y3568D01* X28492Y3561D01* X28499Y3556D01* X28506Y3551D01* X28514Y3548D01* X28523Y3546D01* X28532Y3546D01* X28540Y3547D01* X28548Y3550D01* X28556Y3555D01* X28563Y3560D01* X28569Y3567D01* X28573Y3574D01* X28576Y3582D01* X28585Y3608D01* X28596Y3633D01* X28609Y3657D01* X28624Y3679D01* X28641Y3700D01* X28660Y3719D01* X28681Y3737D01* X28703Y3752D01* X28724Y3764D01* Y3235D01* X28708Y3244D01* X28685Y3259D01* X28664Y3276D01* X28645Y3295D01* X28627Y3316D01* X28612Y3338D01* X28598Y3362D01* X28587Y3386D01* X28578Y3412D01* X28574Y3420D01* X28570Y3427D01* X28564Y3434D01* X28557Y3439D01* X28549Y3443D01* X28541Y3446D01* X28532Y3447D01* X28524Y3447D01* X28515Y3445D01* X28507Y3442D01* X28500Y3437D01* X28493Y3431D01* X28488Y3424D01* X28484Y3417D01* X28481Y3409D01* X28480Y3400D01* X28480Y3391D01* X28482Y3383D01* X28494Y3349D01* X28509Y3316D01* X28527Y3284D01* X28548Y3255D01* X28572Y3227D01* X28597Y3202D01* X28625Y3179D01* X28655Y3159D01* X28687Y3141D01* X28720Y3127D01* X28724Y3125D01* Y1866D01* X28701Y1855D01* X28669Y1837D01* X28640Y1816D01* X28612Y1793D01* X28587Y1767D01* X28564Y1739D01* X28544Y1709D01* X28526Y1677D01* X28512Y1644D01* X28500Y1610D01* X28498Y1601D01* X28498Y1593D01* X28499Y1584D01* X28502Y1576D01* X28507Y1568D01* X28512Y1561D01* X28519Y1556D01* X28526Y1551D01* X28534Y1548D01* X28543Y1546D01* X28552Y1546D01* X28560Y1547D01* X28568Y1550D01* X28576Y1555D01* X28583Y1560D01* X28589Y1567D01* X28593Y1574D01* X28596Y1582D01* X28605Y1608D01* X28616Y1633D01* X28629Y1657D01* X28644Y1679D01* X28661Y1700D01* X28680Y1719D01* X28701Y1737D01* X28723Y1752D01* X28724Y1753D01* Y1246D01* X28705Y1259D01* X28684Y1276D01* X28665Y1295D01* X28647Y1316D01* X28632Y1338D01* X28618Y1362D01* X28607Y1386D01* X28598Y1412D01* X28594Y1420D01* X28590Y1427D01* X28584Y1434D01* X28577Y1439D01* X28569Y1443D01* X28561Y1446D01* X28552Y1447D01* X28544Y1447D01* X28535Y1445D01* X28527Y1442D01* X28520Y1437D01* X28513Y1431D01* X28508Y1424D01* X28504Y1417D01* X28501Y1409D01* X28500Y1400D01* X28500Y1391D01* X28502Y1383D01* X28514Y1349D01* X28529Y1316D01* X28547Y1284D01* X28568Y1255D01* X28592Y1227D01* X28617Y1202D01* X28645Y1179D01* X28675Y1159D01* X28707Y1141D01* X28724Y1134D01* Y0D01* X28465D01* Y5374D01* G37* G36* X28724Y40000D02*X28904D01* Y37625D01* X28895Y37651D01* X28880Y37683D01* X28862Y37715D01* X28841Y37744D01* X28817Y37772D01* X28792Y37797D01* X28764Y37820D01* X28734Y37840D01* X28724Y37846D01* Y39165D01* X28749Y39183D01* X28777Y39207D01* X28802Y39232D01* X28825Y39260D01* X28845Y39290D01* X28863Y39322D01* X28877Y39355D01* X28889Y39389D01* X28891Y39398D01* X28891Y39407D01* X28890Y39415D01* X28887Y39423D01* X28882Y39431D01* X28877Y39438D01* X28870Y39444D01* X28863Y39448D01* X28855Y39451D01* X28846Y39453D01* X28837Y39453D01* X28829Y39452D01* X28821Y39449D01* X28813Y39445D01* X28806Y39439D01* X28800Y39433D01* X28796Y39425D01* X28793Y39417D01* X28784Y39391D01* X28773Y39366D01* X28760Y39343D01* X28745Y39320D01* X28728Y39299D01* X28724Y39295D01* Y39704D01* X28724Y39704D01* X28742Y39683D01* X28757Y39661D01* X28771Y39637D01* X28782Y39613D01* X28791Y39587D01* X28795Y39579D01* X28799Y39572D01* X28805Y39565D01* X28812Y39560D01* X28820Y39556D01* X28828Y39553D01* X28837Y39552D01* X28845Y39552D01* X28854Y39554D01* X28862Y39557D01* X28869Y39562D01* X28876Y39568D01* X28881Y39575D01* X28885Y39582D01* X28888Y39591D01* X28889Y39599D01* X28889Y39608D01* X28887Y39617D01* X28875Y39651D01* X28860Y39683D01* X28842Y39715D01* X28821Y39744D01* X28797Y39772D01* X28772Y39797D01* X28744Y39820D01* X28724Y39834D01* Y40000D01* G37* G36* X28904Y0D02*X28724D01* Y1134D01* X28740Y1127D01* X28774Y1115D01* X28783Y1113D01* X28792Y1113D01* X28800Y1115D01* X28808Y1117D01* X28816Y1122D01* X28823Y1127D01* X28829Y1134D01* X28833Y1141D01* X28836Y1149D01* X28838Y1158D01* X28838Y1167D01* X28837Y1175D01* X28834Y1183D01* X28830Y1191D01* X28824Y1198D01* X28817Y1204D01* X28810Y1208D01* X28802Y1211D01* X28776Y1220D01* X28751Y1231D01* X28728Y1244D01* X28724Y1246D01* Y1753D01* X28747Y1766D01* X28771Y1777D01* X28797Y1786D01* X28805Y1790D01* X28812Y1794D01* X28819Y1800D01* X28824Y1807D01* X28828Y1815D01* X28831Y1823D01* X28832Y1832D01* X28832Y1840D01* X28830Y1849D01* X28827Y1857D01* X28822Y1864D01* X28816Y1871D01* X28809Y1876D01* X28802Y1880D01* X28793Y1883D01* X28785Y1884D01* X28776Y1884D01* X28768Y1882D01* X28733Y1870D01* X28724Y1866D01* Y3125D01* X28754Y3115D01* X28763Y3113D01* X28772Y3113D01* X28780Y3115D01* X28788Y3117D01* X28796Y3122D01* X28803Y3127D01* X28809Y3134D01* X28813Y3141D01* X28816Y3149D01* X28818Y3158D01* X28818Y3167D01* X28817Y3175D01* X28814Y3183D01* X28810Y3191D01* X28804Y3198D01* X28797Y3204D01* X28790Y3208D01* X28782Y3211D01* X28756Y3220D01* X28731Y3231D01* X28724Y3235D01* Y3764D01* X28727Y3766D01* X28751Y3777D01* X28777Y3786D01* X28785Y3790D01* X28792Y3794D01* X28799Y3800D01* X28804Y3807D01* X28808Y3815D01* X28811Y3823D01* X28812Y3832D01* X28812Y3840D01* X28810Y3849D01* X28807Y3857D01* X28802Y3864D01* X28796Y3871D01* X28789Y3876D01* X28782Y3880D01* X28773Y3883D01* X28765Y3884D01* X28756Y3884D01* X28748Y3882D01* X28724Y3874D01* Y5119D01* X28734Y5115D01* X28743Y5113D01* X28752Y5113D01* X28760Y5115D01* X28768Y5117D01* X28776Y5122D01* X28783Y5127D01* X28789Y5134D01* X28793Y5141D01* X28796Y5149D01* X28798Y5158D01* X28798Y5167D01* X28797Y5175D01* X28794Y5183D01* X28790Y5191D01* X28784Y5198D01* X28777Y5204D01* X28770Y5208D01* X28762Y5211D01* X28736Y5220D01* X28724Y5225D01* Y5774D01* X28731Y5777D01* X28757Y5786D01* X28765Y5790D01* X28772Y5794D01* X28779Y5800D01* X28784Y5807D01* X28788Y5815D01* X28791Y5823D01* X28792Y5832D01* X28792Y5840D01* X28790Y5849D01* X28787Y5857D01* X28782Y5864D01* X28776Y5871D01* X28769Y5876D01* X28762Y5880D01* X28753Y5883D01* X28745Y5884D01* X28736Y5884D01* X28728Y5882D01* X28724Y5881D01* Y7113D01* X28732Y7113D01* X28740Y7115D01* X28748Y7117D01* X28756Y7122D01* X28763Y7127D01* X28769Y7134D01* X28773Y7141D01* X28776Y7149D01* X28778Y7158D01* X28778Y7167D01* X28777Y7175D01* X28774Y7183D01* X28770Y7191D01* X28764Y7198D01* X28757Y7204D01* X28750Y7208D01* X28742Y7211D01* X28724Y7217D01* Y7782D01* X28737Y7786D01* X28745Y7790D01* X28752Y7794D01* X28759Y7800D01* X28764Y7807D01* X28768Y7815D01* X28771Y7823D01* X28772Y7832D01* X28772Y7840D01* X28770Y7849D01* X28767Y7857D01* X28762Y7864D01* X28756Y7871D01* X28749Y7876D01* X28742Y7880D01* X28733Y7883D01* X28725Y7884D01* X28724D01* Y9116D01* X28728Y9117D01* X28736Y9122D01* X28743Y9127D01* X28749Y9134D01* X28753Y9141D01* X28756Y9149D01* X28758Y9158D01* X28758Y9167D01* X28757Y9175D01* X28754Y9183D01* X28750Y9191D01* X28744Y9198D01* X28737Y9204D01* X28730Y9208D01* X28724Y9210D01* Y9789D01* X28725Y9790D01* X28732Y9794D01* X28739Y9800D01* X28744Y9807D01* X28748Y9815D01* X28751Y9823D01* X28752Y9832D01* X28752Y9840D01* X28750Y9849D01* X28747Y9857D01* X28742Y9864D01* X28736Y9871D01* X28729Y9876D01* X28724Y9879D01* Y11128D01* X28729Y11134D01* X28733Y11141D01* X28736Y11149D01* X28738Y11158D01* X28738Y11167D01* X28737Y11175D01* X28734Y11183D01* X28730Y11191D01* X28724Y11198D01* X28724Y11198D01* Y11807D01* X28724Y11807D01* X28728Y11815D01* X28731Y11823D01* X28732Y11832D01* X28732Y11840D01* X28730Y11849D01* X28727Y11857D01* X28724Y11861D01* Y23140D01* X28727Y23135D01* X28733Y23128D01* X28740Y23123D01* X28747Y23119D01* X28756Y23116D01* X28764Y23115D01* X28773Y23115D01* X28781Y23117D01* X28816Y23129D01* X28848Y23144D01* X28880Y23162D01* X28904Y23180D01* Y21834D01* X28894Y21840D01* X28862Y21858D01* X28829Y21873D01* X28795Y21884D01* X28786Y21886D01* X28777Y21886D01* X28769Y21885D01* X28761Y21882D01* X28753Y21878D01* X28746Y21872D01* X28740Y21865D01* X28736Y21858D01* X28733Y21850D01* X28731Y21841D01* X28731Y21833D01* X28732Y21824D01* X28735Y21816D01* X28739Y21808D01* X28745Y21801D01* X28752Y21796D01* X28759Y21791D01* X28767Y21788D01* X28793Y21779D01* X28818Y21768D01* X28841Y21755D01* X28864Y21740D01* X28885Y21723D01* X28904Y21704D01* Y21295D01* X28889Y21280D01* X28868Y21262D01* X28846Y21247D01* X28822Y21233D01* X28798Y21222D01* X28772Y21213D01* X28764Y21209D01* X28757Y21205D01* X28750Y21199D01* X28745Y21192D01* X28741Y21184D01* X28738Y21176D01* X28737Y21167D01* X28737Y21159D01* X28739Y21150D01* X28742Y21142D01* X28747Y21135D01* X28753Y21128D01* X28760Y21123D01* X28767Y21119D01* X28776Y21116D01* X28784Y21115D01* X28793Y21115D01* X28801Y21117D01* X28836Y21129D01* X28868Y21144D01* X28900Y21162D01* X28904Y21165D01* Y19846D01* X28882Y19858D01* X28849Y19873D01* X28815Y19884D01* X28806Y19886D01* X28797Y19886D01* X28789Y19885D01* X28781Y19882D01* X28773Y19878D01* X28766Y19872D01* X28760Y19865D01* X28756Y19858D01* X28753Y19850D01* X28751Y19841D01* X28751Y19833D01* X28752Y19824D01* X28755Y19816D01* X28759Y19808D01* X28765Y19801D01* X28772Y19796D01* X28779Y19791D01* X28787Y19788D01* X28813Y19779D01* X28838Y19768D01* X28861Y19755D01* X28884Y19740D01* X28904Y19724D01* Y19276D01* X28888Y19262D01* X28866Y19247D01* X28842Y19233D01* X28818Y19222D01* X28792Y19213D01* X28784Y19209D01* X28777Y19205D01* X28770Y19199D01* X28765Y19192D01* X28761Y19184D01* X28758Y19176D01* X28757Y19167D01* X28757Y19159D01* X28759Y19150D01* X28762Y19142D01* X28767Y19135D01* X28773Y19128D01* X28780Y19123D01* X28787Y19119D01* X28796Y19116D01* X28804Y19115D01* X28813Y19115D01* X28821Y19117D01* X28856Y19129D01* X28888Y19144D01* X28904Y19153D01* Y17857D01* X28902Y17858D01* X28869Y17873D01* X28835Y17884D01* X28826Y17886D01* X28817Y17886D01* X28809Y17885D01* X28801Y17882D01* X28793Y17878D01* X28786Y17872D01* X28780Y17865D01* X28776Y17858D01* X28773Y17850D01* X28771Y17841D01* X28771Y17833D01* X28772Y17824D01* X28775Y17816D01* X28779Y17808D01* X28785Y17801D01* X28792Y17796D01* X28799Y17791D01* X28807Y17788D01* X28833Y17779D01* X28858Y17768D01* X28881Y17755D01* X28904Y17740D01* Y17259D01* X28886Y17247D01* X28862Y17233D01* X28838Y17222D01* X28812Y17213D01* X28804Y17209D01* X28797Y17205D01* X28790Y17199D01* X28785Y17192D01* X28781Y17184D01* X28778Y17176D01* X28777Y17167D01* X28777Y17159D01* X28779Y17150D01* X28782Y17142D01* X28787Y17135D01* X28793Y17128D01* X28800Y17123D01* X28807Y17119D01* X28816Y17116D01* X28824Y17115D01* X28833Y17115D01* X28841Y17117D01* X28876Y17129D01* X28904Y17142D01* Y15866D01* X28889Y15873D01* X28855Y15884D01* X28846Y15886D01* X28837Y15886D01* X28829Y15885D01* X28821Y15882D01* X28813Y15878D01* X28806Y15872D01* X28800Y15865D01* X28796Y15858D01* X28793Y15850D01* X28791Y15841D01* X28791Y15833D01* X28792Y15824D01* X28795Y15816D01* X28799Y15808D01* X28805Y15801D01* X28812Y15796D01* X28819Y15791D01* X28827Y15788D01* X28853Y15779D01* X28878Y15768D01* X28901Y15755D01* X28904Y15754D01* Y15246D01* X28882Y15233D01* X28858Y15222D01* X28832Y15213D01* X28824Y15209D01* X28817Y15205D01* X28810Y15199D01* X28805Y15192D01* X28801Y15184D01* X28798Y15176D01* X28797Y15167D01* X28797Y15159D01* X28799Y15150D01* X28802Y15142D01* X28807Y15135D01* X28813Y15128D01* X28820Y15123D01* X28827Y15119D01* X28836Y15116D01* X28844Y15115D01* X28853Y15115D01* X28861Y15117D01* X28896Y15129D01* X28904Y15133D01* Y13874D01* X28875Y13884D01* X28866Y13886D01* X28857Y13886D01* X28849Y13885D01* X28841Y13882D01* X28833Y13878D01* X28826Y13872D01* X28820Y13865D01* X28816Y13858D01* X28813Y13850D01* X28811Y13841D01* X28811Y13833D01* X28812Y13824D01* X28815Y13816D01* X28819Y13808D01* X28825Y13801D01* X28832Y13796D01* X28839Y13791D01* X28847Y13788D01* X28873Y13779D01* X28898Y13768D01* X28904Y13765D01* Y13234D01* X28902Y13233D01* X28878Y13222D01* X28852Y13213D01* X28844Y13209D01* X28837Y13205D01* X28830Y13199D01* X28825Y13192D01* X28821Y13184D01* X28818Y13176D01* X28817Y13167D01* X28817Y13159D01* X28819Y13150D01* X28822Y13142D01* X28827Y13135D01* X28833Y13128D01* X28840Y13123D01* X28847Y13119D01* X28856Y13116D01* X28864Y13115D01* X28873Y13115D01* X28881Y13117D01* X28904Y13125D01* Y11881D01* X28895Y11884D01* X28886Y11886D01* X28877Y11886D01* X28869Y11885D01* X28861Y11882D01* X28853Y11878D01* X28846Y11872D01* X28840Y11865D01* X28836Y11858D01* X28833Y11850D01* X28831Y11841D01* X28831Y11833D01* X28832Y11824D01* X28835Y11816D01* X28839Y11808D01* X28845Y11801D01* X28852Y11796D01* X28859Y11791D01* X28867Y11788D01* X28893Y11779D01* X28904Y11774D01* Y11225D01* X28898Y11222D01* X28872Y11213D01* X28864Y11209D01* X28857Y11205D01* X28850Y11199D01* X28845Y11192D01* X28841Y11184D01* X28838Y11176D01* X28837Y11167D01* X28837Y11159D01* X28839Y11150D01* X28842Y11142D01* X28847Y11135D01* X28853Y11128D01* X28860Y11123D01* X28867Y11119D01* X28876Y11116D01* X28884Y11115D01* X28893Y11115D01* X28901Y11117D01* X28904Y11118D01* Y9886D01* X28897Y9886D01* X28889Y9885D01* X28881Y9882D01* X28873Y9878D01* X28866Y9872D01* X28860Y9865D01* X28856Y9858D01* X28853Y9850D01* X28851Y9841D01* X28851Y9833D01* X28852Y9824D01* X28855Y9816D01* X28859Y9808D01* X28865Y9801D01* X28872Y9796D01* X28879Y9791D01* X28887Y9788D01* X28904Y9782D01* Y9217D01* X28892Y9213D01* X28884Y9209D01* X28877Y9205D01* X28870Y9199D01* X28865Y9192D01* X28861Y9184D01* X28858Y9176D01* X28857Y9167D01* X28857Y9159D01* X28859Y9150D01* X28862Y9142D01* X28867Y9135D01* X28873Y9128D01* X28880Y9123D01* X28887Y9119D01* X28896Y9116D01* X28904Y9115D01* Y7883D01* X28901Y7882D01* X28893Y7878D01* X28886Y7872D01* X28880Y7865D01* X28876Y7858D01* X28873Y7850D01* X28871Y7841D01* X28871Y7833D01* X28872Y7824D01* X28875Y7816D01* X28879Y7808D01* X28885Y7801D01* X28892Y7796D01* X28899Y7791D01* X28904Y7789D01* Y7209D01* X28897Y7205D01* X28890Y7199D01* X28885Y7192D01* X28881Y7184D01* X28878Y7176D01* X28877Y7167D01* X28877Y7159D01* X28879Y7150D01* X28882Y7142D01* X28887Y7135D01* X28893Y7128D01* X28900Y7123D01* X28904Y7121D01* Y5870D01* X28900Y5865D01* X28896Y5858D01* X28893Y5850D01* X28891Y5841D01* X28891Y5833D01* X28892Y5824D01* X28895Y5816D01* X28899Y5808D01* X28904Y5802D01* Y5190D01* X28901Y5184D01* X28898Y5176D01* X28897Y5167D01* X28897Y5159D01* X28899Y5150D01* X28902Y5142D01* X28904Y5140D01* Y0D01* G37* G36* Y23319D02*X28888Y23299D01* X28869Y23280D01* X28848Y23262D01* X28826Y23247D01* X28802Y23233D01* X28778Y23222D01* X28752Y23213D01* X28744Y23209D01* X28737Y23205D01* X28730Y23199D01* X28725Y23192D01* X28724Y23190D01* Y23802D01* X28725Y23801D01* X28732Y23796D01* X28739Y23791D01* X28747Y23788D01* X28773Y23779D01* X28798Y23768D01* X28821Y23755D01* X28844Y23740D01* X28865Y23723D01* X28884Y23704D01* X28902Y23683D01* X28904Y23680D01* Y23319D01* G37* G36* Y23820D02*X28904Y23820D01* X28874Y23840D01* X28842Y23858D01* X28809Y23873D01* X28775Y23884D01* X28766Y23886D01* X28757Y23886D01* X28749Y23885D01* X28741Y23882D01* X28733Y23878D01* X28726Y23872D01* X28724Y23870D01* Y25121D01* X28727Y25119D01* X28736Y25116D01* X28744Y25115D01* X28753Y25115D01* X28761Y25117D01* X28796Y25129D01* X28828Y25144D01* X28860Y25162D01* X28889Y25183D01* X28904Y25196D01* Y23820D01* G37* G36* Y25350D02*X28900Y25343D01* X28885Y25320D01* X28868Y25299D01* X28849Y25280D01* X28828Y25262D01* X28806Y25247D01* X28782Y25233D01* X28758Y25222D01* X28732Y25213D01* X28724Y25209D01* X28724Y25209D01* Y25789D01* X28727Y25788D01* X28753Y25779D01* X28778Y25768D01* X28801Y25755D01* X28824Y25740D01* X28845Y25723D01* X28864Y25704D01* X28882Y25683D01* X28897Y25661D01* X28904Y25650D01* Y25350D01* G37* G36* Y25804D02*X28884Y25820D01* X28854Y25840D01* X28822Y25858D01* X28789Y25873D01* X28755Y25884D01* X28746Y25886D01* X28737Y25886D01* X28729Y25885D01* X28724Y25883D01* Y27115D01* X28724D01* X28733Y27115D01* X28741Y27117D01* X28776Y27129D01* X28808Y27144D01* X28840Y27162D01* X28869Y27183D01* X28897Y27207D01* X28904Y27214D01* Y25804D01* G37* G36* Y27391D02*X28893Y27366D01* X28880Y27343D01* X28865Y27320D01* X28848Y27299D01* X28829Y27280D01* X28808Y27262D01* X28786Y27247D01* X28762Y27233D01* X28738Y27222D01* X28724Y27217D01* Y27782D01* X28733Y27779D01* X28758Y27768D01* X28781Y27755D01* X28804Y27740D01* X28825Y27723D01* X28844Y27704D01* X28862Y27683D01* X28877Y27661D01* X28891Y27637D01* X28902Y27613D01* X28904Y27608D01* Y27391D01* G37* G36* Y27785D02*X28892Y27797D01* X28864Y27820D01* X28834Y27840D01* X28802Y27858D01* X28769Y27873D01* X28735Y27884D01* X28726Y27886D01* X28724D01* Y29118D01* X28756Y29129D01* X28788Y29144D01* X28820Y29162D01* X28849Y29183D01* X28877Y29207D01* X28902Y29232D01* X28904Y29235D01* Y27785D01* G37* G36* Y29437D02*X28900Y29433D01* X28896Y29425D01* X28893Y29417D01* X28884Y29391D01* X28873Y29366D01* X28860Y29343D01* X28845Y29320D01* X28828Y29299D01* X28809Y29280D01* X28788Y29262D01* X28766Y29247D01* X28742Y29233D01* X28724Y29225D01* Y29774D01* X28738Y29768D01* X28761Y29755D01* X28784Y29740D01* X28805Y29723D01* X28824Y29704D01* X28842Y29683D01* X28857Y29661D01* X28871Y29637D01* X28882Y29613D01* X28891Y29587D01* X28895Y29579D01* X28899Y29572D01* X28904Y29567D01* Y29437D01* G37* G36* Y29764D02*X28897Y29772D01* X28872Y29797D01* X28844Y29820D01* X28814Y29840D01* X28782Y29858D01* X28749Y29873D01* X28724Y29881D01* Y31125D01* X28736Y31129D01* X28768Y31144D01* X28800Y31162D01* X28829Y31183D01* X28857Y31207D01* X28882Y31232D01* X28904Y31259D01* Y29764D01* G37* G36* Y31450D02*X28901Y31449D01* X28893Y31445D01* X28886Y31439D01* X28880Y31433D01* X28876Y31425D01* X28873Y31417D01* X28864Y31391D01* X28853Y31366D01* X28840Y31343D01* X28825Y31320D01* X28808Y31299D01* X28789Y31280D01* X28768Y31262D01* X28746Y31247D01* X28724Y31234D01* Y31765D01* X28741Y31755D01* X28764Y31740D01* X28785Y31723D01* X28804Y31704D01* X28822Y31683D01* X28837Y31661D01* X28851Y31637D01* X28862Y31613D01* X28871Y31587D01* X28875Y31579D01* X28879Y31572D01* X28885Y31565D01* X28892Y31560D01* X28900Y31556D01* X28904Y31555D01* Y31450D01* G37* G36* Y31740D02*X28901Y31744D01* X28877Y31772D01* X28852Y31797D01* X28824Y31820D01* X28794Y31840D01* X28762Y31858D01* X28729Y31873D01* X28724Y31874D01* Y33133D01* X28748Y33144D01* X28780Y33162D01* X28809Y33183D01* X28837Y33207D01* X28862Y33232D01* X28885Y33260D01* X28904Y33288D01* Y31740D01* G37* G36* Y33453D02*X28897Y33453D01* X28889Y33452D01* X28881Y33449D01* X28873Y33445D01* X28866Y33439D01* X28860Y33433D01* X28856Y33425D01* X28853Y33417D01* X28844Y33391D01* X28833Y33366D01* X28820Y33343D01* X28805Y33320D01* X28788Y33299D01* X28769Y33280D01* X28748Y33262D01* X28726Y33247D01* X28724Y33246D01* Y33754D01* X28744Y33740D01* X28765Y33723D01* X28784Y33704D01* X28802Y33683D01* X28817Y33661D01* X28831Y33637D01* X28842Y33613D01* X28851Y33587D01* X28855Y33579D01* X28859Y33572D01* X28865Y33565D01* X28872Y33560D01* X28880Y33556D01* X28888Y33553D01* X28897Y33552D01* X28904Y33552D01* Y33453D01* G37* G36* Y33711D02*X28902Y33715D01* X28881Y33744D01* X28857Y33772D01* X28832Y33797D01* X28804Y33820D01* X28774Y33840D01* X28742Y33858D01* X28724Y33866D01* Y35142D01* X28728Y35144D01* X28760Y35162D01* X28789Y35183D01* X28817Y35207D01* X28842Y35232D01* X28865Y35260D01* X28885Y35290D01* X28903Y35322D01* X28904Y35324D01* Y33711D01* G37* G36* Y35447D02*X28903Y35448D01* X28895Y35451D01* X28886Y35453D01* X28877Y35453D01* X28869Y35452D01* X28861Y35449D01* X28853Y35445D01* X28846Y35439D01* X28840Y35433D01* X28836Y35425D01* X28833Y35417D01* X28824Y35391D01* X28813Y35366D01* X28800Y35343D01* X28785Y35320D01* X28768Y35299D01* X28749Y35280D01* X28728Y35262D01* X28724Y35259D01* Y35740D01* X28745Y35723D01* X28764Y35704D01* X28782Y35683D01* X28797Y35661D01* X28811Y35637D01* X28822Y35613D01* X28831Y35587D01* X28835Y35579D01* X28839Y35572D01* X28845Y35565D01* X28852Y35560D01* X28860Y35556D01* X28868Y35553D01* X28877Y35552D01* X28885Y35552D01* X28894Y35554D01* X28902Y35557D01* X28904Y35559D01* Y35447D01* G37* G36* Y35674D02*X28900Y35683D01* X28882Y35715D01* X28861Y35744D01* X28837Y35772D01* X28812Y35797D01* X28784Y35820D01* X28754Y35840D01* X28724Y35857D01* Y37153D01* X28740Y37162D01* X28769Y37183D01* X28797Y37207D01* X28822Y37232D01* X28845Y37260D01* X28865Y37290D01* X28883Y37322D01* X28897Y37355D01* X28904Y37374D01* Y35674D01* G37* G36* Y37428D02*X28902Y37431D01* X28897Y37438D01* X28890Y37444D01* X28883Y37448D01* X28875Y37451D01* X28866Y37453D01* X28857Y37453D01* X28849Y37452D01* X28841Y37449D01* X28833Y37445D01* X28826Y37439D01* X28820Y37433D01* X28816Y37425D01* X28813Y37417D01* X28804Y37391D01* X28793Y37366D01* X28780Y37343D01* X28765Y37320D01* X28748Y37299D01* X28729Y37280D01* X28724Y37276D01* Y37724D01* X28725Y37723D01* X28744Y37704D01* X28762Y37683D01* X28777Y37661D01* X28791Y37637D01* X28802Y37613D01* X28811Y37587D01* X28815Y37579D01* X28819Y37572D01* X28825Y37565D01* X28832Y37560D01* X28840Y37556D01* X28848Y37553D01* X28857Y37552D01* X28865Y37552D01* X28874Y37554D01* X28882Y37557D01* X28889Y37562D01* X28896Y37568D01* X28901Y37575D01* X28904Y37580D01* Y37428D01* G37* G36* Y40000D02*X29084D01* Y19625D01* X29075Y19651D01* X29060Y19683D01* X29042Y19715D01* X29021Y19744D01* X28997Y19772D01* X28972Y19797D01* X28944Y19820D01* X28914Y19840D01* X28904Y19846D01* Y21165D01* X28929Y21183D01* X28957Y21207D01* X28982Y21232D01* X29005Y21260D01* X29025Y21290D01* X29043Y21322D01* X29057Y21355D01* X29069Y21389D01* X29071Y21398D01* X29071Y21407D01* X29070Y21415D01* X29067Y21423D01* X29062Y21431D01* X29057Y21438D01* X29050Y21444D01* X29043Y21448D01* X29035Y21451D01* X29026Y21453D01* X29017Y21453D01* X29009Y21452D01* X29001Y21449D01* X28993Y21445D01* X28986Y21439D01* X28980Y21433D01* X28976Y21425D01* X28973Y21417D01* X28964Y21391D01* X28953Y21366D01* X28940Y21343D01* X28925Y21320D01* X28908Y21299D01* X28904Y21295D01* Y21704D01* X28904Y21704D01* X28922Y21683D01* X28937Y21661D01* X28951Y21637D01* X28962Y21613D01* X28971Y21587D01* X28975Y21579D01* X28979Y21572D01* X28985Y21565D01* X28992Y21560D01* X29000Y21556D01* X29008Y21553D01* X29017Y21552D01* X29025Y21552D01* X29034Y21554D01* X29042Y21557D01* X29049Y21562D01* X29056Y21568D01* X29061Y21575D01* X29065Y21582D01* X29068Y21591D01* X29069Y21599D01* X29069Y21608D01* X29067Y21617D01* X29055Y21651D01* X29040Y21683D01* X29022Y21715D01* X29001Y21744D01* X28977Y21772D01* X28952Y21797D01* X28924Y21820D01* X28904Y21834D01* Y23180D01* X28909Y23183D01* X28937Y23207D01* X28962Y23232D01* X28985Y23260D01* X29005Y23290D01* X29023Y23322D01* X29037Y23355D01* X29049Y23389D01* X29051Y23398D01* X29051Y23407D01* X29050Y23415D01* X29047Y23423D01* X29042Y23431D01* X29037Y23438D01* X29030Y23444D01* X29023Y23448D01* X29015Y23451D01* X29006Y23453D01* X28997Y23453D01* X28989Y23452D01* X28981Y23449D01* X28973Y23445D01* X28966Y23439D01* X28960Y23433D01* X28956Y23425D01* X28953Y23417D01* X28944Y23391D01* X28933Y23366D01* X28920Y23343D01* X28905Y23320D01* X28904Y23319D01* Y23680D01* X28917Y23661D01* X28931Y23637D01* X28942Y23613D01* X28951Y23587D01* X28955Y23579D01* X28959Y23572D01* X28965Y23565D01* X28972Y23560D01* X28980Y23556D01* X28988Y23553D01* X28997Y23552D01* X29005Y23552D01* X29014Y23554D01* X29022Y23557D01* X29029Y23562D01* X29036Y23568D01* X29041Y23575D01* X29045Y23582D01* X29048Y23591D01* X29049Y23599D01* X29049Y23608D01* X29047Y23617D01* X29035Y23651D01* X29020Y23683D01* X29002Y23715D01* X28981Y23744D01* X28957Y23772D01* X28932Y23797D01* X28904Y23820D01* Y25196D01* X28917Y25207D01* X28942Y25232D01* X28965Y25260D01* X28985Y25290D01* X29003Y25322D01* X29017Y25355D01* X29029Y25389D01* X29031Y25398D01* X29031Y25407D01* X29030Y25415D01* X29027Y25423D01* X29022Y25431D01* X29017Y25438D01* X29010Y25444D01* X29003Y25448D01* X28995Y25451D01* X28986Y25453D01* X28977Y25453D01* X28969Y25452D01* X28961Y25449D01* X28953Y25445D01* X28946Y25439D01* X28940Y25433D01* X28936Y25425D01* X28933Y25417D01* X28924Y25391D01* X28913Y25366D01* X28904Y25350D01* Y25650D01* X28911Y25637D01* X28922Y25613D01* X28931Y25587D01* X28935Y25579D01* X28939Y25572D01* X28945Y25565D01* X28952Y25560D01* X28960Y25556D01* X28968Y25553D01* X28977Y25552D01* X28985Y25552D01* X28994Y25554D01* X29002Y25557D01* X29009Y25562D01* X29016Y25568D01* X29021Y25575D01* X29025Y25582D01* X29028Y25591D01* X29029Y25599D01* X29029Y25608D01* X29027Y25617D01* X29015Y25651D01* X29000Y25683D01* X28982Y25715D01* X28961Y25744D01* X28937Y25772D01* X28912Y25797D01* X28904Y25804D01* Y27214D01* X28922Y27232D01* X28945Y27260D01* X28965Y27290D01* X28983Y27322D01* X28997Y27355D01* X29009Y27389D01* X29011Y27398D01* X29011Y27407D01* X29010Y27415D01* X29007Y27423D01* X29002Y27431D01* X28997Y27438D01* X28990Y27444D01* X28983Y27448D01* X28975Y27451D01* X28966Y27453D01* X28957Y27453D01* X28949Y27452D01* X28941Y27449D01* X28933Y27445D01* X28926Y27439D01* X28920Y27433D01* X28916Y27425D01* X28913Y27417D01* X28904Y27391D01* X28904Y27391D01* Y27608D01* X28911Y27587D01* X28915Y27579D01* X28919Y27572D01* X28925Y27565D01* X28932Y27560D01* X28940Y27556D01* X28948Y27553D01* X28957Y27552D01* X28965Y27552D01* X28974Y27554D01* X28982Y27557D01* X28989Y27562D01* X28996Y27568D01* X29001Y27575D01* X29005Y27582D01* X29008Y27591D01* X29009Y27599D01* X29009Y27608D01* X29007Y27617D01* X28995Y27651D01* X28980Y27683D01* X28962Y27715D01* X28941Y27744D01* X28917Y27772D01* X28904Y27785D01* Y29235D01* X28925Y29260D01* X28945Y29290D01* X28963Y29322D01* X28977Y29355D01* X28989Y29389D01* X28991Y29398D01* X28991Y29407D01* X28990Y29415D01* X28987Y29423D01* X28982Y29431D01* X28977Y29438D01* X28970Y29444D01* X28963Y29448D01* X28955Y29451D01* X28946Y29453D01* X28937Y29453D01* X28929Y29452D01* X28921Y29449D01* X28913Y29445D01* X28906Y29439D01* X28904Y29437D01* Y29567D01* X28905Y29565D01* X28912Y29560D01* X28920Y29556D01* X28928Y29553D01* X28937Y29552D01* X28945Y29552D01* X28954Y29554D01* X28962Y29557D01* X28969Y29562D01* X28976Y29568D01* X28981Y29575D01* X28985Y29582D01* X28988Y29591D01* X28989Y29599D01* X28989Y29608D01* X28987Y29617D01* X28975Y29651D01* X28960Y29683D01* X28942Y29715D01* X28921Y29744D01* X28904Y29764D01* Y31259D01* X28905Y31260D01* X28925Y31290D01* X28943Y31322D01* X28957Y31355D01* X28969Y31389D01* X28971Y31398D01* X28971Y31407D01* X28970Y31415D01* X28967Y31423D01* X28962Y31431D01* X28957Y31438D01* X28950Y31444D01* X28943Y31448D01* X28935Y31451D01* X28926Y31453D01* X28917Y31453D01* X28909Y31452D01* X28904Y31450D01* Y31555D01* X28908Y31553D01* X28917Y31552D01* X28925Y31552D01* X28934Y31554D01* X28942Y31557D01* X28949Y31562D01* X28956Y31568D01* X28961Y31575D01* X28965Y31582D01* X28968Y31591D01* X28969Y31599D01* X28969Y31608D01* X28967Y31617D01* X28955Y31651D01* X28940Y31683D01* X28922Y31715D01* X28904Y31740D01* Y33288D01* X28905Y33290D01* X28923Y33322D01* X28937Y33355D01* X28949Y33389D01* X28951Y33398D01* X28951Y33407D01* X28950Y33415D01* X28947Y33423D01* X28942Y33431D01* X28937Y33438D01* X28930Y33444D01* X28923Y33448D01* X28915Y33451D01* X28906Y33453D01* X28904D01* Y33552D01* X28905D01* X28914Y33554D01* X28922Y33557D01* X28929Y33562D01* X28936Y33568D01* X28941Y33575D01* X28945Y33582D01* X28948Y33591D01* X28949Y33599D01* X28949Y33608D01* X28947Y33617D01* X28935Y33651D01* X28920Y33683D01* X28904Y33711D01* Y35324D01* X28917Y35355D01* X28929Y35389D01* X28931Y35398D01* X28931Y35407D01* X28930Y35415D01* X28927Y35423D01* X28922Y35431D01* X28917Y35438D01* X28910Y35444D01* X28904Y35447D01* Y35559D01* X28909Y35562D01* X28916Y35568D01* X28921Y35575D01* X28925Y35582D01* X28928Y35591D01* X28929Y35599D01* X28929Y35608D01* X28927Y35617D01* X28915Y35651D01* X28904Y35674D01* Y37374D01* X28909Y37389D01* X28911Y37398D01* X28911Y37407D01* X28910Y37415D01* X28907Y37423D01* X28904Y37428D01* Y37580D01* X28905Y37582D01* X28908Y37591D01* X28909Y37599D01* X28909Y37608D01* X28907Y37617D01* X28904Y37625D01* Y40000D01* G37* G36* X29084Y0D02*X28904D01* Y5140D01* X28907Y5135D01* X28913Y5128D01* X28920Y5123D01* X28927Y5119D01* X28936Y5116D01* X28944Y5115D01* X28953Y5115D01* X28961Y5117D01* X28996Y5129D01* X29028Y5144D01* X29060Y5162D01* X29084Y5180D01* Y3834D01* X29074Y3840D01* X29042Y3858D01* X29009Y3873D01* X28975Y3884D01* X28966Y3886D01* X28957Y3886D01* X28949Y3885D01* X28941Y3882D01* X28933Y3878D01* X28926Y3872D01* X28920Y3865D01* X28916Y3858D01* X28913Y3850D01* X28911Y3841D01* X28911Y3833D01* X28912Y3824D01* X28915Y3816D01* X28919Y3808D01* X28925Y3801D01* X28932Y3796D01* X28939Y3791D01* X28947Y3788D01* X28973Y3779D01* X28998Y3768D01* X29021Y3755D01* X29044Y3740D01* X29065Y3723D01* X29084Y3704D01* Y3295D01* X29069Y3280D01* X29048Y3262D01* X29026Y3247D01* X29002Y3233D01* X28978Y3222D01* X28952Y3213D01* X28944Y3209D01* X28937Y3205D01* X28930Y3199D01* X28925Y3192D01* X28921Y3184D01* X28918Y3176D01* X28917Y3167D01* X28917Y3159D01* X28919Y3150D01* X28922Y3142D01* X28927Y3135D01* X28933Y3128D01* X28940Y3123D01* X28947Y3119D01* X28956Y3116D01* X28964Y3115D01* X28973Y3115D01* X28981Y3117D01* X29016Y3129D01* X29048Y3144D01* X29080Y3162D01* X29084Y3165D01* Y1846D01* X29062Y1858D01* X29029Y1873D01* X28995Y1884D01* X28986Y1886D01* X28977Y1886D01* X28969Y1885D01* X28961Y1882D01* X28953Y1878D01* X28946Y1872D01* X28940Y1865D01* X28936Y1858D01* X28933Y1850D01* X28931Y1841D01* X28931Y1833D01* X28932Y1824D01* X28935Y1816D01* X28939Y1808D01* X28945Y1801D01* X28952Y1796D01* X28959Y1791D01* X28967Y1788D01* X28993Y1779D01* X29018Y1768D01* X29041Y1755D01* X29064Y1740D01* X29084Y1724D01* Y1276D01* X29068Y1262D01* X29046Y1247D01* X29022Y1233D01* X28998Y1222D01* X28972Y1213D01* X28964Y1209D01* X28957Y1205D01* X28950Y1199D01* X28945Y1192D01* X28941Y1184D01* X28938Y1176D01* X28937Y1167D01* X28937Y1159D01* X28939Y1150D01* X28942Y1142D01* X28947Y1135D01* X28953Y1128D01* X28960Y1123D01* X28967Y1119D01* X28976Y1116D01* X28984Y1115D01* X28993Y1115D01* X29001Y1117D01* X29036Y1129D01* X29068Y1144D01* X29084Y1153D01* Y0D01* G37* G36* Y5319D02*X29068Y5299D01* X29049Y5280D01* X29028Y5262D01* X29006Y5247D01* X28982Y5233D01* X28958Y5222D01* X28932Y5213D01* X28924Y5209D01* X28917Y5205D01* X28910Y5199D01* X28905Y5192D01* X28904Y5190D01* Y5802D01* X28905Y5801D01* X28912Y5796D01* X28919Y5791D01* X28927Y5788D01* X28953Y5779D01* X28978Y5768D01* X29001Y5755D01* X29024Y5740D01* X29045Y5723D01* X29064Y5704D01* X29082Y5683D01* X29084Y5680D01* Y5319D01* G37* G36* Y5820D02*X29084Y5820D01* X29054Y5840D01* X29022Y5858D01* X28989Y5873D01* X28955Y5884D01* X28946Y5886D01* X28937Y5886D01* X28929Y5885D01* X28921Y5882D01* X28913Y5878D01* X28906Y5872D01* X28904Y5870D01* Y7121D01* X28907Y7119D01* X28916Y7116D01* X28924Y7115D01* X28933Y7115D01* X28941Y7117D01* X28976Y7129D01* X29008Y7144D01* X29040Y7162D01* X29069Y7183D01* X29084Y7196D01* Y5820D01* G37* G36* Y7350D02*X29080Y7343D01* X29065Y7320D01* X29048Y7299D01* X29029Y7280D01* X29008Y7262D01* X28986Y7247D01* X28962Y7233D01* X28938Y7222D01* X28912Y7213D01* X28904Y7209D01* X28904Y7209D01* Y7789D01* X28907Y7788D01* X28933Y7779D01* X28958Y7768D01* X28981Y7755D01* X29004Y7740D01* X29025Y7723D01* X29044Y7704D01* X29062Y7683D01* X29077Y7661D01* X29084Y7650D01* Y7350D01* G37* G36* Y7804D02*X29064Y7820D01* X29034Y7840D01* X29002Y7858D01* X28969Y7873D01* X28935Y7884D01* X28926Y7886D01* X28917Y7886D01* X28909Y7885D01* X28904Y7883D01* Y9115D01* X28904D01* X28913Y9115D01* X28921Y9117D01* X28956Y9129D01* X28988Y9144D01* X29020Y9162D01* X29049Y9183D01* X29077Y9207D01* X29084Y9214D01* Y7804D01* G37* G36* Y9391D02*X29073Y9366D01* X29060Y9343D01* X29045Y9320D01* X29028Y9299D01* X29009Y9280D01* X28988Y9262D01* X28966Y9247D01* X28942Y9233D01* X28918Y9222D01* X28904Y9217D01* Y9782D01* X28913Y9779D01* X28938Y9768D01* X28961Y9755D01* X28984Y9740D01* X29005Y9723D01* X29024Y9704D01* X29042Y9683D01* X29057Y9661D01* X29071Y9637D01* X29082Y9613D01* X29084Y9608D01* Y9391D01* G37* G36* Y9785D02*X29072Y9797D01* X29044Y9820D01* X29014Y9840D01* X28982Y9858D01* X28949Y9873D01* X28915Y9884D01* X28906Y9886D01* X28904D01* Y11118D01* X28936Y11129D01* X28968Y11144D01* X29000Y11162D01* X29029Y11183D01* X29057Y11207D01* X29082Y11232D01* X29084Y11235D01* Y9785D01* G37* G36* Y11437D02*X29080Y11433D01* X29076Y11425D01* X29073Y11417D01* X29064Y11391D01* X29053Y11366D01* X29040Y11343D01* X29025Y11320D01* X29008Y11299D01* X28989Y11280D01* X28968Y11262D01* X28946Y11247D01* X28922Y11233D01* X28904Y11225D01* Y11774D01* X28918Y11768D01* X28941Y11755D01* X28964Y11740D01* X28985Y11723D01* X29004Y11704D01* X29022Y11683D01* X29037Y11661D01* X29051Y11637D01* X29062Y11613D01* X29071Y11587D01* X29075Y11579D01* X29079Y11572D01* X29084Y11567D01* Y11437D01* G37* G36* Y11764D02*X29077Y11772D01* X29052Y11797D01* X29024Y11820D01* X28994Y11840D01* X28962Y11858D01* X28929Y11873D01* X28904Y11881D01* Y13125D01* X28916Y13129D01* X28948Y13144D01* X28980Y13162D01* X29009Y13183D01* X29037Y13207D01* X29062Y13232D01* X29084Y13259D01* Y11764D01* G37* G36* Y13450D02*X29081Y13449D01* X29073Y13445D01* X29066Y13439D01* X29060Y13433D01* X29056Y13425D01* X29053Y13417D01* X29044Y13391D01* X29033Y13366D01* X29020Y13343D01* X29005Y13320D01* X28988Y13299D01* X28969Y13280D01* X28948Y13262D01* X28926Y13247D01* X28904Y13234D01* Y13765D01* X28921Y13755D01* X28944Y13740D01* X28965Y13723D01* X28984Y13704D01* X29002Y13683D01* X29017Y13661D01* X29031Y13637D01* X29042Y13613D01* X29051Y13587D01* X29055Y13579D01* X29059Y13572D01* X29065Y13565D01* X29072Y13560D01* X29080Y13556D01* X29084Y13555D01* Y13450D01* G37* G36* Y13740D02*X29081Y13744D01* X29057Y13772D01* X29032Y13797D01* X29004Y13820D01* X28974Y13840D01* X28942Y13858D01* X28909Y13873D01* X28904Y13874D01* Y15133D01* X28928Y15144D01* X28960Y15162D01* X28989Y15183D01* X29017Y15207D01* X29042Y15232D01* X29065Y15260D01* X29084Y15288D01* Y13740D01* G37* G36* Y15453D02*X29077Y15453D01* X29069Y15452D01* X29061Y15449D01* X29053Y15445D01* X29046Y15439D01* X29040Y15433D01* X29036Y15425D01* X29033Y15417D01* X29024Y15391D01* X29013Y15366D01* X29000Y15343D01* X28985Y15320D01* X28968Y15299D01* X28949Y15280D01* X28928Y15262D01* X28906Y15247D01* X28904Y15246D01* Y15754D01* X28924Y15740D01* X28945Y15723D01* X28964Y15704D01* X28982Y15683D01* X28997Y15661D01* X29011Y15637D01* X29022Y15613D01* X29031Y15587D01* X29035Y15579D01* X29039Y15572D01* X29045Y15565D01* X29052Y15560D01* X29060Y15556D01* X29068Y15553D01* X29077Y15552D01* X29084Y15552D01* Y15453D01* G37* G36* Y15711D02*X29082Y15715D01* X29061Y15744D01* X29037Y15772D01* X29012Y15797D01* X28984Y15820D01* X28954Y15840D01* X28922Y15858D01* X28904Y15866D01* Y17142D01* X28908Y17144D01* X28940Y17162D01* X28969Y17183D01* X28997Y17207D01* X29022Y17232D01* X29045Y17260D01* X29065Y17290D01* X29083Y17322D01* X29084Y17324D01* Y15711D01* G37* G36* Y17447D02*X29083Y17448D01* X29075Y17451D01* X29066Y17453D01* X29057Y17453D01* X29049Y17452D01* X29041Y17449D01* X29033Y17445D01* X29026Y17439D01* X29020Y17433D01* X29016Y17425D01* X29013Y17417D01* X29004Y17391D01* X28993Y17366D01* X28980Y17343D01* X28965Y17320D01* X28948Y17299D01* X28929Y17280D01* X28908Y17262D01* X28904Y17259D01* Y17740D01* X28925Y17723D01* X28944Y17704D01* X28962Y17683D01* X28977Y17661D01* X28991Y17637D01* X29002Y17613D01* X29011Y17587D01* X29015Y17579D01* X29019Y17572D01* X29025Y17565D01* X29032Y17560D01* X29040Y17556D01* X29048Y17553D01* X29057Y17552D01* X29065Y17552D01* X29074Y17554D01* X29082Y17557D01* X29084Y17559D01* Y17447D01* G37* G36* Y17674D02*X29080Y17683D01* X29062Y17715D01* X29041Y17744D01* X29017Y17772D01* X28992Y17797D01* X28964Y17820D01* X28934Y17840D01* X28904Y17857D01* Y19153D01* X28920Y19162D01* X28949Y19183D01* X28977Y19207D01* X29002Y19232D01* X29025Y19260D01* X29045Y19290D01* X29063Y19322D01* X29077Y19355D01* X29084Y19374D01* Y17674D01* G37* G36* Y19428D02*X29082Y19431D01* X29077Y19438D01* X29070Y19444D01* X29063Y19448D01* X29055Y19451D01* X29046Y19453D01* X29037Y19453D01* X29029Y19452D01* X29021Y19449D01* X29013Y19445D01* X29006Y19439D01* X29000Y19433D01* X28996Y19425D01* X28993Y19417D01* X28984Y19391D01* X28973Y19366D01* X28960Y19343D01* X28945Y19320D01* X28928Y19299D01* X28909Y19280D01* X28904Y19276D01* Y19724D01* X28905Y19723D01* X28924Y19704D01* X28942Y19683D01* X28957Y19661D01* X28971Y19637D01* X28982Y19613D01* X28991Y19587D01* X28995Y19579D01* X28999Y19572D01* X29005Y19565D01* X29012Y19560D01* X29020Y19556D01* X29028Y19553D01* X29037Y19552D01* X29045Y19552D01* X29054Y19554D01* X29062Y19557D01* X29069Y19562D01* X29076Y19568D01* X29081Y19575D01* X29084Y19580D01* Y19428D01* G37* G36* Y40000D02*X30285D01* Y39834D01* X30260Y39816D01* X30232Y39793D01* X30207Y39767D01* X30184Y39739D01* X30164Y39709D01* X30146Y39677D01* X30132Y39644D01* X30120Y39610D01* X30118Y39601D01* X30118Y39593D01* X30119Y39584D01* X30122Y39576D01* X30127Y39568D01* X30132Y39561D01* X30139Y39556D01* X30146Y39551D01* X30154Y39548D01* X30163Y39546D01* X30172Y39546D01* X30180Y39547D01* X30188Y39550D01* X30196Y39555D01* X30203Y39560D01* X30209Y39567D01* X30213Y39574D01* X30216Y39582D01* X30225Y39608D01* X30236Y39633D01* X30249Y39657D01* X30264Y39679D01* X30281Y39700D01* X30285Y39704D01* Y39295D01* X30285Y39295D01* X30267Y39316D01* X30252Y39338D01* X30238Y39362D01* X30227Y39386D01* X30218Y39412D01* X30214Y39420D01* X30210Y39427D01* X30204Y39434D01* X30197Y39439D01* X30189Y39443D01* X30181Y39446D01* X30172Y39447D01* X30164Y39447D01* X30155Y39445D01* X30147Y39442D01* X30140Y39437D01* X30133Y39431D01* X30128Y39424D01* X30124Y39417D01* X30121Y39409D01* X30120Y39400D01* X30120Y39391D01* X30122Y39383D01* X30134Y39349D01* X30149Y39316D01* X30167Y39284D01* X30188Y39255D01* X30212Y39227D01* X30237Y39202D01* X30265Y39179D01* X30285Y39166D01* Y37820D01* X30280Y37816D01* X30252Y37793D01* X30227Y37767D01* X30204Y37739D01* X30184Y37709D01* X30166Y37677D01* X30152Y37644D01* X30140Y37610D01* X30138Y37601D01* X30138Y37593D01* X30139Y37584D01* X30142Y37576D01* X30147Y37568D01* X30152Y37561D01* X30159Y37556D01* X30166Y37551D01* X30174Y37548D01* X30183Y37546D01* X30192Y37546D01* X30200Y37547D01* X30208Y37550D01* X30216Y37555D01* X30223Y37560D01* X30229Y37567D01* X30233Y37574D01* X30236Y37582D01* X30245Y37608D01* X30256Y37633D01* X30269Y37657D01* X30284Y37679D01* X30285Y37680D01* Y37319D01* X30272Y37338D01* X30258Y37362D01* X30247Y37386D01* X30238Y37412D01* X30234Y37420D01* X30230Y37427D01* X30224Y37434D01* X30217Y37439D01* X30209Y37443D01* X30201Y37446D01* X30192Y37447D01* X30184Y37447D01* X30175Y37445D01* X30167Y37442D01* X30160Y37437D01* X30153Y37431D01* X30148Y37424D01* X30144Y37417D01* X30141Y37409D01* X30140Y37400D01* X30140Y37391D01* X30142Y37383D01* X30154Y37349D01* X30169Y37316D01* X30187Y37284D01* X30208Y37255D01* X30232Y37227D01* X30257Y37202D01* X30285Y37179D01* Y35804D01* X30272Y35793D01* X30247Y35767D01* X30224Y35739D01* X30204Y35709D01* X30186Y35677D01* X30172Y35644D01* X30160Y35610D01* X30158Y35601D01* X30158Y35593D01* X30159Y35584D01* X30162Y35576D01* X30167Y35568D01* X30172Y35561D01* X30179Y35556D01* X30186Y35551D01* X30194Y35548D01* X30203Y35546D01* X30212Y35546D01* X30220Y35547D01* X30228Y35550D01* X30236Y35555D01* X30243Y35560D01* X30249Y35567D01* X30253Y35574D01* X30256Y35582D01* X30265Y35608D01* X30276Y35633D01* X30285Y35650D01* Y35349D01* X30278Y35362D01* X30267Y35386D01* X30258Y35412D01* X30254Y35420D01* X30250Y35427D01* X30244Y35434D01* X30237Y35439D01* X30229Y35443D01* X30221Y35446D01* X30212Y35447D01* X30204Y35447D01* X30195Y35445D01* X30187Y35442D01* X30180Y35437D01* X30173Y35431D01* X30168Y35424D01* X30164Y35417D01* X30161Y35409D01* X30160Y35400D01* X30160Y35391D01* X30162Y35383D01* X30174Y35349D01* X30189Y35316D01* X30207Y35284D01* X30228Y35255D01* X30252Y35227D01* X30277Y35202D01* X30285Y35196D01* Y33785D01* X30267Y33767D01* X30244Y33739D01* X30224Y33709D01* X30206Y33677D01* X30192Y33644D01* X30180Y33610D01* X30178Y33601D01* X30178Y33593D01* X30179Y33584D01* X30182Y33576D01* X30187Y33568D01* X30192Y33561D01* X30199Y33556D01* X30206Y33551D01* X30214Y33548D01* X30223Y33546D01* X30232Y33546D01* X30240Y33547D01* X30248Y33550D01* X30256Y33555D01* X30263Y33560D01* X30269Y33567D01* X30273Y33574D01* X30276Y33582D01* X30285Y33608D01* X30285Y33609D01* Y33391D01* X30278Y33412D01* X30274Y33420D01* X30270Y33427D01* X30264Y33434D01* X30257Y33439D01* X30249Y33443D01* X30241Y33446D01* X30232Y33447D01* X30224Y33447D01* X30215Y33445D01* X30207Y33442D01* X30200Y33437D01* X30193Y33431D01* X30188Y33424D01* X30184Y33417D01* X30181Y33409D01* X30180Y33400D01* X30180Y33391D01* X30182Y33383D01* X30194Y33349D01* X30209Y33316D01* X30227Y33284D01* X30248Y33255D01* X30272Y33227D01* X30285Y33214D01* Y31765D01* X30264Y31739D01* X30244Y31709D01* X30226Y31677D01* X30212Y31644D01* X30200Y31610D01* X30198Y31601D01* X30198Y31593D01* X30199Y31584D01* X30202Y31576D01* X30207Y31568D01* X30212Y31561D01* X30219Y31556D01* X30226Y31551D01* X30234Y31548D01* X30243Y31546D01* X30252Y31546D01* X30260Y31547D01* X30268Y31550D01* X30276Y31555D01* X30283Y31560D01* X30285Y31563D01* Y31432D01* X30284Y31434D01* X30277Y31439D01* X30269Y31443D01* X30261Y31446D01* X30252Y31447D01* X30244Y31447D01* X30235Y31445D01* X30227Y31442D01* X30220Y31437D01* X30213Y31431D01* X30208Y31424D01* X30204Y31417D01* X30201Y31409D01* X30200Y31400D01* X30200Y31391D01* X30202Y31383D01* X30214Y31349D01* X30229Y31316D01* X30247Y31284D01* X30268Y31255D01* X30285Y31235D01* Y29740D01* X30284Y29739D01* X30264Y29709D01* X30246Y29677D01* X30232Y29644D01* X30220Y29610D01* X30218Y29601D01* X30218Y29593D01* X30219Y29584D01* X30222Y29576D01* X30227Y29568D01* X30232Y29561D01* X30239Y29556D01* X30246Y29551D01* X30254Y29548D01* X30263Y29546D01* X30272Y29546D01* X30280Y29547D01* X30285Y29549D01* Y29445D01* X30281Y29446D01* X30272Y29447D01* X30264Y29447D01* X30255Y29445D01* X30247Y29442D01* X30240Y29437D01* X30233Y29431D01* X30228Y29424D01* X30224Y29417D01* X30221Y29409D01* X30220Y29400D01* X30220Y29391D01* X30222Y29383D01* X30234Y29349D01* X30249Y29316D01* X30267Y29284D01* X30285Y29259D01* Y27711D01* X30284Y27709D01* X30266Y27677D01* X30252Y27644D01* X30240Y27610D01* X30238Y27601D01* X30238Y27593D01* X30239Y27584D01* X30242Y27576D01* X30247Y27568D01* X30252Y27561D01* X30259Y27556D01* X30266Y27551D01* X30274Y27548D01* X30283Y27546D01* X30285D01* Y27447D01* X30284Y27447D01* X30275Y27445D01* X30267Y27442D01* X30260Y27437D01* X30253Y27431D01* X30248Y27424D01* X30244Y27417D01* X30241Y27409D01* X30240Y27400D01* X30240Y27391D01* X30242Y27383D01* X30254Y27349D01* X30269Y27316D01* X30285Y27288D01* Y25675D01* X30272Y25644D01* X30260Y25610D01* X30258Y25601D01* X30258Y25593D01* X30259Y25584D01* X30262Y25576D01* X30267Y25568D01* X30272Y25561D01* X30279Y25556D01* X30285Y25552D01* Y25441D01* X30280Y25437D01* X30273Y25431D01* X30268Y25424D01* X30264Y25417D01* X30261Y25409D01* X30260Y25400D01* X30260Y25391D01* X30262Y25383D01* X30274Y25349D01* X30285Y25325D01* Y23625D01* X30280Y23610D01* X30278Y23601D01* X30278Y23593D01* X30279Y23584D01* X30282Y23576D01* X30285Y23571D01* Y23419D01* X30284Y23417D01* X30281Y23409D01* X30280Y23400D01* X30280Y23391D01* X30282Y23383D01* X30285Y23374D01* Y0D01* X29084D01* Y1153D01* X29100Y1162D01* X29129Y1183D01* X29157Y1207D01* X29182Y1232D01* X29205Y1260D01* X29225Y1290D01* X29243Y1322D01* X29257Y1355D01* X29269Y1389D01* X29271Y1398D01* X29271Y1407D01* X29270Y1415D01* X29267Y1423D01* X29262Y1431D01* X29257Y1438D01* X29250Y1444D01* X29243Y1448D01* X29235Y1451D01* X29226Y1453D01* X29217Y1453D01* X29209Y1452D01* X29201Y1449D01* X29193Y1445D01* X29186Y1439D01* X29180Y1433D01* X29176Y1425D01* X29173Y1417D01* X29164Y1391D01* X29153Y1366D01* X29140Y1343D01* X29125Y1320D01* X29108Y1299D01* X29089Y1280D01* X29084Y1276D01* Y1724D01* X29085Y1723D01* X29104Y1704D01* X29122Y1683D01* X29137Y1661D01* X29151Y1637D01* X29162Y1613D01* X29171Y1587D01* X29175Y1579D01* X29179Y1572D01* X29185Y1565D01* X29192Y1560D01* X29200Y1556D01* X29208Y1553D01* X29217Y1552D01* X29225Y1552D01* X29234Y1554D01* X29242Y1557D01* X29249Y1562D01* X29256Y1568D01* X29261Y1575D01* X29265Y1582D01* X29268Y1591D01* X29269Y1599D01* X29269Y1608D01* X29267Y1617D01* X29255Y1651D01* X29240Y1683D01* X29222Y1715D01* X29201Y1744D01* X29177Y1772D01* X29152Y1797D01* X29124Y1820D01* X29094Y1840D01* X29084Y1846D01* Y3165D01* X29109Y3183D01* X29137Y3207D01* X29162Y3232D01* X29185Y3260D01* X29205Y3290D01* X29223Y3322D01* X29237Y3355D01* X29249Y3389D01* X29251Y3398D01* X29251Y3407D01* X29250Y3415D01* X29247Y3423D01* X29242Y3431D01* X29237Y3438D01* X29230Y3444D01* X29223Y3448D01* X29215Y3451D01* X29206Y3453D01* X29197Y3453D01* X29189Y3452D01* X29181Y3449D01* X29173Y3445D01* X29166Y3439D01* X29160Y3433D01* X29156Y3425D01* X29153Y3417D01* X29144Y3391D01* X29133Y3366D01* X29120Y3343D01* X29105Y3320D01* X29088Y3299D01* X29084Y3295D01* Y3704D01* X29084Y3704D01* X29102Y3683D01* X29117Y3661D01* X29131Y3637D01* X29142Y3613D01* X29151Y3587D01* X29155Y3579D01* X29159Y3572D01* X29165Y3565D01* X29172Y3560D01* X29180Y3556D01* X29188Y3553D01* X29197Y3552D01* X29205Y3552D01* X29214Y3554D01* X29222Y3557D01* X29229Y3562D01* X29236Y3568D01* X29241Y3575D01* X29245Y3582D01* X29248Y3591D01* X29249Y3599D01* X29249Y3608D01* X29247Y3617D01* X29235Y3651D01* X29220Y3683D01* X29202Y3715D01* X29181Y3744D01* X29157Y3772D01* X29132Y3797D01* X29104Y3820D01* X29084Y3834D01* Y5180D01* X29089Y5183D01* X29117Y5207D01* X29142Y5232D01* X29165Y5260D01* X29185Y5290D01* X29203Y5322D01* X29217Y5355D01* X29229Y5389D01* X29231Y5398D01* X29231Y5407D01* X29230Y5415D01* X29227Y5423D01* X29222Y5431D01* X29217Y5438D01* X29210Y5444D01* X29203Y5448D01* X29195Y5451D01* X29186Y5453D01* X29177Y5453D01* X29169Y5452D01* X29161Y5449D01* X29153Y5445D01* X29146Y5439D01* X29140Y5433D01* X29136Y5425D01* X29133Y5417D01* X29124Y5391D01* X29113Y5366D01* X29100Y5343D01* X29085Y5320D01* X29084Y5319D01* Y5680D01* X29097Y5661D01* X29111Y5637D01* X29122Y5613D01* X29131Y5587D01* X29135Y5579D01* X29139Y5572D01* X29145Y5565D01* X29152Y5560D01* X29160Y5556D01* X29168Y5553D01* X29177Y5552D01* X29185Y5552D01* X29194Y5554D01* X29202Y5557D01* X29209Y5562D01* X29216Y5568D01* X29221Y5575D01* X29225Y5582D01* X29228Y5591D01* X29229Y5599D01* X29229Y5608D01* X29227Y5617D01* X29215Y5651D01* X29200Y5683D01* X29182Y5715D01* X29161Y5744D01* X29137Y5772D01* X29112Y5797D01* X29084Y5820D01* Y7196D01* X29097Y7207D01* X29122Y7232D01* X29145Y7260D01* X29165Y7290D01* X29183Y7322D01* X29197Y7355D01* X29209Y7389D01* X29211Y7398D01* X29211Y7407D01* X29210Y7415D01* X29207Y7423D01* X29202Y7431D01* X29197Y7438D01* X29190Y7444D01* X29183Y7448D01* X29175Y7451D01* X29166Y7453D01* X29157Y7453D01* X29149Y7452D01* X29141Y7449D01* X29133Y7445D01* X29126Y7439D01* X29120Y7433D01* X29116Y7425D01* X29113Y7417D01* X29104Y7391D01* X29093Y7366D01* X29084Y7350D01* Y7650D01* X29091Y7637D01* X29102Y7613D01* X29111Y7587D01* X29115Y7579D01* X29119Y7572D01* X29125Y7565D01* X29132Y7560D01* X29140Y7556D01* X29148Y7553D01* X29157Y7552D01* X29165Y7552D01* X29174Y7554D01* X29182Y7557D01* X29189Y7562D01* X29196Y7568D01* X29201Y7575D01* X29205Y7582D01* X29208Y7591D01* X29209Y7599D01* X29209Y7608D01* X29207Y7617D01* X29195Y7651D01* X29180Y7683D01* X29162Y7715D01* X29141Y7744D01* X29117Y7772D01* X29092Y7797D01* X29084Y7804D01* Y9214D01* X29102Y9232D01* X29125Y9260D01* X29145Y9290D01* X29163Y9322D01* X29177Y9355D01* X29189Y9389D01* X29191Y9398D01* X29191Y9407D01* X29190Y9415D01* X29187Y9423D01* X29182Y9431D01* X29177Y9438D01* X29170Y9444D01* X29163Y9448D01* X29155Y9451D01* X29146Y9453D01* X29137Y9453D01* X29129Y9452D01* X29121Y9449D01* X29113Y9445D01* X29106Y9439D01* X29100Y9433D01* X29096Y9425D01* X29093Y9417D01* X29084Y9391D01* X29084Y9391D01* Y9608D01* X29091Y9587D01* X29095Y9579D01* X29099Y9572D01* X29105Y9565D01* X29112Y9560D01* X29120Y9556D01* X29128Y9553D01* X29137Y9552D01* X29145Y9552D01* X29154Y9554D01* X29162Y9557D01* X29169Y9562D01* X29176Y9568D01* X29181Y9575D01* X29185Y9582D01* X29188Y9591D01* X29189Y9599D01* X29189Y9608D01* X29187Y9617D01* X29175Y9651D01* X29160Y9683D01* X29142Y9715D01* X29121Y9744D01* X29097Y9772D01* X29084Y9785D01* Y11235D01* X29105Y11260D01* X29125Y11290D01* X29143Y11322D01* X29157Y11355D01* X29169Y11389D01* X29171Y11398D01* X29171Y11407D01* X29170Y11415D01* X29167Y11423D01* X29162Y11431D01* X29157Y11438D01* X29150Y11444D01* X29143Y11448D01* X29135Y11451D01* X29126Y11453D01* X29117Y11453D01* X29109Y11452D01* X29101Y11449D01* X29093Y11445D01* X29086Y11439D01* X29084Y11437D01* Y11567D01* X29085Y11565D01* X29092Y11560D01* X29100Y11556D01* X29108Y11553D01* X29117Y11552D01* X29125Y11552D01* X29134Y11554D01* X29142Y11557D01* X29149Y11562D01* X29156Y11568D01* X29161Y11575D01* X29165Y11582D01* X29168Y11591D01* X29169Y11599D01* X29169Y11608D01* X29167Y11617D01* X29155Y11651D01* X29140Y11683D01* X29122Y11715D01* X29101Y11744D01* X29084Y11764D01* Y13259D01* X29085Y13260D01* X29105Y13290D01* X29123Y13322D01* X29137Y13355D01* X29149Y13389D01* X29151Y13398D01* X29151Y13407D01* X29150Y13415D01* X29147Y13423D01* X29142Y13431D01* X29137Y13438D01* X29130Y13444D01* X29123Y13448D01* X29115Y13451D01* X29106Y13453D01* X29097Y13453D01* X29089Y13452D01* X29084Y13450D01* Y13555D01* X29088Y13553D01* X29097Y13552D01* X29105Y13552D01* X29114Y13554D01* X29122Y13557D01* X29129Y13562D01* X29136Y13568D01* X29141Y13575D01* X29145Y13582D01* X29148Y13591D01* X29149Y13599D01* X29149Y13608D01* X29147Y13617D01* X29135Y13651D01* X29120Y13683D01* X29102Y13715D01* X29084Y13740D01* Y15288D01* X29085Y15290D01* X29103Y15322D01* X29117Y15355D01* X29129Y15389D01* X29131Y15398D01* X29131Y15407D01* X29130Y15415D01* X29127Y15423D01* X29122Y15431D01* X29117Y15438D01* X29110Y15444D01* X29103Y15448D01* X29095Y15451D01* X29086Y15453D01* X29084D01* Y15552D01* X29085D01* X29094Y15554D01* X29102Y15557D01* X29109Y15562D01* X29116Y15568D01* X29121Y15575D01* X29125Y15582D01* X29128Y15591D01* X29129Y15599D01* X29129Y15608D01* X29127Y15617D01* X29115Y15651D01* X29100Y15683D01* X29084Y15711D01* Y17324D01* X29097Y17355D01* X29109Y17389D01* X29111Y17398D01* X29111Y17407D01* X29110Y17415D01* X29107Y17423D01* X29102Y17431D01* X29097Y17438D01* X29090Y17444D01* X29084Y17447D01* Y17559D01* X29089Y17562D01* X29096Y17568D01* X29101Y17575D01* X29105Y17582D01* X29108Y17591D01* X29109Y17599D01* X29109Y17608D01* X29107Y17617D01* X29095Y17651D01* X29084Y17674D01* Y19374D01* X29089Y19389D01* X29091Y19398D01* X29091Y19407D01* X29090Y19415D01* X29087Y19423D01* X29084Y19428D01* Y19580D01* X29085Y19582D01* X29088Y19591D01* X29089Y19599D01* X29089Y19608D01* X29087Y19617D01* X29084Y19625D01* Y40000D01* G37* G36* X30285D02*X30465D01* Y37859D01* X30462Y37864D01* X30456Y37871D01* X30449Y37876D01* X30442Y37880D01* X30433Y37883D01* X30425Y37884D01* X30416Y37884D01* X30408Y37882D01* X30373Y37870D01* X30341Y37855D01* X30309Y37837D01* X30285Y37820D01* Y39166D01* X30295Y39159D01* X30327Y39141D01* X30360Y39127D01* X30394Y39115D01* X30403Y39113D01* X30412Y39113D01* X30420Y39115D01* X30428Y39117D01* X30436Y39122D01* X30443Y39127D01* X30449Y39134D01* X30453Y39141D01* X30456Y39149D01* X30458Y39158D01* X30458Y39167D01* X30457Y39175D01* X30454Y39183D01* X30450Y39191D01* X30444Y39198D01* X30437Y39204D01* X30430Y39208D01* X30422Y39211D01* X30396Y39220D01* X30371Y39231D01* X30348Y39244D01* X30325Y39259D01* X30304Y39276D01* X30285Y39295D01* Y39704D01* X30300Y39719D01* X30321Y39737D01* X30343Y39752D01* X30367Y39766D01* X30391Y39777D01* X30417Y39786D01* X30425Y39790D01* X30432Y39794D01* X30439Y39800D01* X30444Y39807D01* X30448Y39815D01* X30451Y39823D01* X30452Y39832D01* X30452Y39840D01* X30450Y39849D01* X30447Y39857D01* X30442Y39864D01* X30436Y39871D01* X30429Y39876D01* X30422Y39880D01* X30413Y39883D01* X30405Y39884D01* X30396Y39884D01* X30388Y39882D01* X30353Y39870D01* X30321Y39855D01* X30289Y39837D01* X30285Y39834D01* Y40000D01* G37* G36* X30465Y11740D02*X30464Y11739D01* X30444Y11709D01* X30426Y11677D01* X30412Y11644D01* X30400Y11610D01* X30398Y11601D01* X30398Y11593D01* X30399Y11584D01* X30402Y11576D01* X30407Y11568D01* X30412Y11561D01* X30419Y11556D01* X30426Y11551D01* X30434Y11548D01* X30443Y11546D01* X30452Y11546D01* X30460Y11547D01* X30465Y11549D01* Y11445D01* X30461Y11446D01* X30452Y11447D01* X30444Y11447D01* X30435Y11445D01* X30427Y11442D01* X30420Y11437D01* X30413Y11431D01* X30408Y11424D01* X30404Y11417D01* X30401Y11409D01* X30400Y11400D01* X30400Y11391D01* X30402Y11383D01* X30414Y11349D01* X30429Y11316D01* X30447Y11284D01* X30465Y11259D01* Y9711D01* X30464Y9709D01* X30446Y9677D01* X30432Y9644D01* X30420Y9610D01* X30418Y9601D01* X30418Y9593D01* X30419Y9584D01* X30422Y9576D01* X30427Y9568D01* X30432Y9561D01* X30439Y9556D01* X30446Y9551D01* X30454Y9548D01* X30463Y9546D01* X30465D01* Y9447D01* X30464Y9447D01* X30455Y9445D01* X30447Y9442D01* X30440Y9437D01* X30433Y9431D01* X30428Y9424D01* X30424Y9417D01* X30421Y9409D01* X30420Y9400D01* X30420Y9391D01* X30422Y9383D01* X30434Y9349D01* X30449Y9316D01* X30465Y9288D01* Y7675D01* X30452Y7644D01* X30440Y7610D01* X30438Y7601D01* X30438Y7593D01* X30439Y7584D01* X30442Y7576D01* X30447Y7568D01* X30452Y7561D01* X30459Y7556D01* X30465Y7552D01* Y7441D01* X30460Y7437D01* X30453Y7431D01* X30448Y7424D01* X30444Y7417D01* X30441Y7409D01* X30440Y7400D01* X30440Y7391D01* X30442Y7383D01* X30454Y7349D01* X30465Y7325D01* Y5625D01* X30460Y5610D01* X30458Y5601D01* X30458Y5593D01* X30459Y5584D01* X30462Y5576D01* X30465Y5571D01* Y5419D01* X30464Y5417D01* X30461Y5409D01* X30460Y5400D01* X30460Y5391D01* X30462Y5383D01* X30465Y5374D01* Y0D01* X30285D01* Y23374D01* X30294Y23349D01* X30309Y23316D01* X30327Y23284D01* X30348Y23255D01* X30372Y23227D01* X30397Y23202D01* X30425Y23179D01* X30455Y23159D01* X30465Y23153D01* Y21834D01* X30440Y21816D01* X30412Y21793D01* X30387Y21767D01* X30364Y21739D01* X30344Y21709D01* X30326Y21677D01* X30312Y21644D01* X30300Y21610D01* X30298Y21601D01* X30298Y21593D01* X30299Y21584D01* X30302Y21576D01* X30307Y21568D01* X30312Y21561D01* X30319Y21556D01* X30326Y21551D01* X30334Y21548D01* X30343Y21546D01* X30352Y21546D01* X30360Y21547D01* X30368Y21550D01* X30376Y21555D01* X30383Y21560D01* X30389Y21567D01* X30393Y21574D01* X30396Y21582D01* X30405Y21608D01* X30416Y21633D01* X30429Y21657D01* X30444Y21679D01* X30461Y21700D01* X30465Y21704D01* Y21295D01* X30465Y21295D01* X30447Y21316D01* X30432Y21338D01* X30418Y21362D01* X30407Y21386D01* X30398Y21412D01* X30394Y21420D01* X30390Y21427D01* X30384Y21434D01* X30377Y21439D01* X30369Y21443D01* X30361Y21446D01* X30352Y21447D01* X30344Y21447D01* X30335Y21445D01* X30327Y21442D01* X30320Y21437D01* X30313Y21431D01* X30308Y21424D01* X30304Y21417D01* X30301Y21409D01* X30300Y21400D01* X30300Y21391D01* X30302Y21383D01* X30314Y21349D01* X30329Y21316D01* X30347Y21284D01* X30368Y21255D01* X30392Y21227D01* X30417Y21202D01* X30445Y21179D01* X30465Y21166D01* Y19820D01* X30460Y19816D01* X30432Y19793D01* X30407Y19767D01* X30384Y19739D01* X30364Y19709D01* X30346Y19677D01* X30332Y19644D01* X30320Y19610D01* X30318Y19601D01* X30318Y19593D01* X30319Y19584D01* X30322Y19576D01* X30327Y19568D01* X30332Y19561D01* X30339Y19556D01* X30346Y19551D01* X30354Y19548D01* X30363Y19546D01* X30372Y19546D01* X30380Y19547D01* X30388Y19550D01* X30396Y19555D01* X30403Y19560D01* X30409Y19567D01* X30413Y19574D01* X30416Y19582D01* X30425Y19608D01* X30436Y19633D01* X30449Y19657D01* X30464Y19679D01* X30465Y19680D01* Y19319D01* X30452Y19338D01* X30438Y19362D01* X30427Y19386D01* X30418Y19412D01* X30414Y19420D01* X30410Y19427D01* X30404Y19434D01* X30397Y19439D01* X30389Y19443D01* X30381Y19446D01* X30372Y19447D01* X30364Y19447D01* X30355Y19445D01* X30347Y19442D01* X30340Y19437D01* X30333Y19431D01* X30328Y19424D01* X30324Y19417D01* X30321Y19409D01* X30320Y19400D01* X30320Y19391D01* X30322Y19383D01* X30334Y19349D01* X30349Y19316D01* X30367Y19284D01* X30388Y19255D01* X30412Y19227D01* X30437Y19202D01* X30465Y19179D01* Y17804D01* X30452Y17793D01* X30427Y17767D01* X30404Y17739D01* X30384Y17709D01* X30366Y17677D01* X30352Y17644D01* X30340Y17610D01* X30338Y17601D01* X30338Y17593D01* X30339Y17584D01* X30342Y17576D01* X30347Y17568D01* X30352Y17561D01* X30359Y17556D01* X30366Y17551D01* X30374Y17548D01* X30383Y17546D01* X30392Y17546D01* X30400Y17547D01* X30408Y17550D01* X30416Y17555D01* X30423Y17560D01* X30429Y17567D01* X30433Y17574D01* X30436Y17582D01* X30445Y17608D01* X30456Y17633D01* X30465Y17650D01* Y17349D01* X30458Y17362D01* X30447Y17386D01* X30438Y17412D01* X30434Y17420D01* X30430Y17427D01* X30424Y17434D01* X30417Y17439D01* X30409Y17443D01* X30401Y17446D01* X30392Y17447D01* X30384Y17447D01* X30375Y17445D01* X30367Y17442D01* X30360Y17437D01* X30353Y17431D01* X30348Y17424D01* X30344Y17417D01* X30341Y17409D01* X30340Y17400D01* X30340Y17391D01* X30342Y17383D01* X30354Y17349D01* X30369Y17316D01* X30387Y17284D01* X30408Y17255D01* X30432Y17227D01* X30457Y17202D01* X30465Y17196D01* Y15785D01* X30447Y15767D01* X30424Y15739D01* X30404Y15709D01* X30386Y15677D01* X30372Y15644D01* X30360Y15610D01* X30358Y15601D01* X30358Y15593D01* X30359Y15584D01* X30362Y15576D01* X30367Y15568D01* X30372Y15561D01* X30379Y15556D01* X30386Y15551D01* X30394Y15548D01* X30403Y15546D01* X30412Y15546D01* X30420Y15547D01* X30428Y15550D01* X30436Y15555D01* X30443Y15560D01* X30449Y15567D01* X30453Y15574D01* X30456Y15582D01* X30465Y15608D01* X30465Y15609D01* Y15391D01* X30458Y15412D01* X30454Y15420D01* X30450Y15427D01* X30444Y15434D01* X30437Y15439D01* X30429Y15443D01* X30421Y15446D01* X30412Y15447D01* X30404Y15447D01* X30395Y15445D01* X30387Y15442D01* X30380Y15437D01* X30373Y15431D01* X30368Y15424D01* X30364Y15417D01* X30361Y15409D01* X30360Y15400D01* X30360Y15391D01* X30362Y15383D01* X30374Y15349D01* X30389Y15316D01* X30407Y15284D01* X30428Y15255D01* X30452Y15227D01* X30465Y15214D01* Y13765D01* X30444Y13739D01* X30424Y13709D01* X30406Y13677D01* X30392Y13644D01* X30380Y13610D01* X30378Y13601D01* X30378Y13593D01* X30379Y13584D01* X30382Y13576D01* X30387Y13568D01* X30392Y13561D01* X30399Y13556D01* X30406Y13551D01* X30414Y13548D01* X30423Y13546D01* X30432Y13546D01* X30440Y13547D01* X30448Y13550D01* X30456Y13555D01* X30463Y13560D01* X30465Y13563D01* Y13432D01* X30464Y13434D01* X30457Y13439D01* X30449Y13443D01* X30441Y13446D01* X30432Y13447D01* X30424Y13447D01* X30415Y13445D01* X30407Y13442D01* X30400Y13437D01* X30393Y13431D01* X30388Y13424D01* X30384Y13417D01* X30381Y13409D01* X30380Y13400D01* X30380Y13391D01* X30382Y13383D01* X30394Y13349D01* X30409Y13316D01* X30427Y13284D01* X30448Y13255D01* X30465Y13235D01* Y11740D01* G37* G36* Y23276D02*X30464Y23276D01* X30445Y23295D01* X30427Y23316D01* X30412Y23338D01* X30398Y23362D01* X30387Y23386D01* X30378Y23412D01* X30374Y23420D01* X30370Y23427D01* X30364Y23434D01* X30357Y23439D01* X30349Y23443D01* X30341Y23446D01* X30332Y23447D01* X30324Y23447D01* X30315Y23445D01* X30307Y23442D01* X30300Y23437D01* X30293Y23431D01* X30288Y23424D01* X30285Y23419D01* Y23571D01* X30287Y23568D01* X30292Y23561D01* X30299Y23556D01* X30306Y23551D01* X30314Y23548D01* X30323Y23546D01* X30332Y23546D01* X30340Y23547D01* X30348Y23550D01* X30356Y23555D01* X30363Y23560D01* X30369Y23567D01* X30373Y23574D01* X30376Y23582D01* X30385Y23608D01* X30396Y23633D01* X30409Y23657D01* X30424Y23679D01* X30441Y23700D01* X30460Y23719D01* X30465Y23723D01* Y23276D01* G37* G36* Y23846D02*X30449Y23837D01* X30420Y23816D01* X30392Y23793D01* X30367Y23767D01* X30344Y23739D01* X30324Y23709D01* X30306Y23677D01* X30292Y23644D01* X30285Y23625D01* Y25325D01* X30289Y25316D01* X30307Y25284D01* X30328Y25255D01* X30352Y25227D01* X30377Y25202D01* X30405Y25179D01* X30435Y25159D01* X30465Y25142D01* Y23846D01* G37* G36* Y25259D02*X30465Y25259D01* X30444Y25276D01* X30425Y25295D01* X30407Y25316D01* X30392Y25338D01* X30378Y25362D01* X30367Y25386D01* X30358Y25412D01* X30354Y25420D01* X30350Y25427D01* X30344Y25434D01* X30337Y25439D01* X30329Y25443D01* X30321Y25446D01* X30312Y25447D01* X30304Y25447D01* X30295Y25445D01* X30287Y25442D01* X30285Y25441D01* Y25552D01* X30286Y25551D01* X30294Y25548D01* X30303Y25546D01* X30312Y25546D01* X30320Y25547D01* X30328Y25550D01* X30336Y25555D01* X30343Y25560D01* X30349Y25567D01* X30353Y25574D01* X30356Y25582D01* X30365Y25608D01* X30376Y25633D01* X30389Y25657D01* X30404Y25679D01* X30421Y25700D01* X30440Y25719D01* X30461Y25737D01* X30465Y25740D01* Y25259D01* G37* G36* Y25857D02*X30461Y25855D01* X30429Y25837D01* X30400Y25816D01* X30372Y25793D01* X30347Y25767D01* X30324Y25739D01* X30304Y25709D01* X30286Y25677D01* X30285Y25675D01* Y27288D01* X30287Y27284D01* X30308Y27255D01* X30332Y27227D01* X30357Y27202D01* X30385Y27179D01* X30415Y27159D01* X30447Y27141D01* X30465Y27133D01* Y25857D01* G37* G36* Y27246D02*X30445Y27259D01* X30424Y27276D01* X30405Y27295D01* X30387Y27316D01* X30372Y27338D01* X30358Y27362D01* X30347Y27386D01* X30338Y27412D01* X30334Y27420D01* X30330Y27427D01* X30324Y27434D01* X30317Y27439D01* X30309Y27443D01* X30301Y27446D01* X30292Y27447D01* X30285Y27447D01* Y27546D01* X30292Y27546D01* X30300Y27547D01* X30308Y27550D01* X30316Y27555D01* X30323Y27560D01* X30329Y27567D01* X30333Y27574D01* X30336Y27582D01* X30345Y27608D01* X30356Y27633D01* X30369Y27657D01* X30384Y27679D01* X30401Y27700D01* X30420Y27719D01* X30441Y27737D01* X30463Y27752D01* X30465Y27754D01* Y27246D01* G37* G36* Y27866D02*X30441Y27855D01* X30409Y27837D01* X30380Y27816D01* X30352Y27793D01* X30327Y27767D01* X30304Y27739D01* X30285Y27711D01* Y29259D01* X30288Y29255D01* X30312Y29227D01* X30337Y29202D01* X30365Y29179D01* X30395Y29159D01* X30427Y29141D01* X30460Y29127D01* X30465Y29125D01* Y27866D01* G37* G36* Y29234D02*X30448Y29244D01* X30425Y29259D01* X30404Y29276D01* X30385Y29295D01* X30367Y29316D01* X30352Y29338D01* X30338Y29362D01* X30327Y29386D01* X30318Y29412D01* X30314Y29420D01* X30310Y29427D01* X30304Y29434D01* X30297Y29439D01* X30289Y29443D01* X30285Y29445D01* Y29549D01* X30288Y29550D01* X30296Y29555D01* X30303Y29560D01* X30309Y29567D01* X30313Y29574D01* X30316Y29582D01* X30325Y29608D01* X30336Y29633D01* X30349Y29657D01* X30364Y29679D01* X30381Y29700D01* X30400Y29719D01* X30421Y29737D01* X30443Y29752D01* X30465Y29765D01* Y29234D01* G37* G36* Y29874D02*X30453Y29870D01* X30421Y29855D01* X30389Y29837D01* X30360Y29816D01* X30332Y29793D01* X30307Y29767D01* X30285Y29740D01* Y31235D01* X30292Y31227D01* X30317Y31202D01* X30345Y31179D01* X30375Y31159D01* X30407Y31141D01* X30440Y31127D01* X30465Y31118D01* Y29874D01* G37* G36* Y31225D02*X30451Y31231D01* X30428Y31244D01* X30405Y31259D01* X30384Y31276D01* X30365Y31295D01* X30347Y31316D01* X30332Y31338D01* X30318Y31362D01* X30307Y31386D01* X30298Y31412D01* X30294Y31420D01* X30290Y31427D01* X30285Y31432D01* Y31563D01* X30289Y31567D01* X30293Y31574D01* X30296Y31582D01* X30305Y31608D01* X30316Y31633D01* X30329Y31657D01* X30344Y31679D01* X30361Y31700D01* X30380Y31719D01* X30401Y31737D01* X30423Y31752D01* X30447Y31766D01* X30465Y31775D01* Y31225D01* G37* G36* Y31881D02*X30433Y31870D01* X30401Y31855D01* X30369Y31837D01* X30340Y31816D01* X30312Y31793D01* X30287Y31767D01* X30285Y31765D01* Y33214D01* X30297Y33202D01* X30325Y33179D01* X30355Y33159D01* X30387Y33141D01* X30420Y33127D01* X30454Y33115D01* X30463Y33113D01* X30465D01* Y31881D01* G37* G36* Y33217D02*X30456Y33220D01* X30431Y33231D01* X30408Y33244D01* X30385Y33259D01* X30364Y33276D01* X30345Y33295D01* X30327Y33316D01* X30312Y33338D01* X30298Y33362D01* X30287Y33386D01* X30285Y33391D01* Y33609D01* X30296Y33633D01* X30309Y33657D01* X30324Y33679D01* X30341Y33700D01* X30360Y33719D01* X30381Y33737D01* X30403Y33752D01* X30427Y33766D01* X30451Y33777D01* X30465Y33782D01* Y33217D01* G37* G36* Y33884D02*X30465Y33884D01* X30456Y33884D01* X30448Y33882D01* X30413Y33870D01* X30381Y33855D01* X30349Y33837D01* X30320Y33816D01* X30292Y33793D01* X30285Y33785D01* Y35196D01* X30305Y35179D01* X30335Y35159D01* X30367Y35141D01* X30400Y35127D01* X30434Y35115D01* X30443Y35113D01* X30452Y35113D01* X30460Y35115D01* X30465Y35116D01* Y33884D01* G37* G36* Y35210D02*X30462Y35211D01* X30436Y35220D01* X30411Y35231D01* X30388Y35244D01* X30365Y35259D01* X30344Y35276D01* X30325Y35295D01* X30307Y35316D01* X30292Y35338D01* X30285Y35349D01* Y35650D01* X30289Y35657D01* X30304Y35679D01* X30321Y35700D01* X30340Y35719D01* X30361Y35737D01* X30383Y35752D01* X30407Y35766D01* X30431Y35777D01* X30457Y35786D01* X30465Y35790D01* X30465Y35790D01* Y35210D01* G37* G36* Y35878D02*X30462Y35880D01* X30453Y35883D01* X30445Y35884D01* X30436Y35884D01* X30428Y35882D01* X30393Y35870D01* X30361Y35855D01* X30329Y35837D01* X30300Y35816D01* X30285Y35804D01* Y37179D01* X30285Y37179D01* X30315Y37159D01* X30347Y37141D01* X30380Y37127D01* X30414Y37115D01* X30423Y37113D01* X30432Y37113D01* X30440Y37115D01* X30448Y37117D01* X30456Y37122D01* X30463Y37127D01* X30465Y37130D01* Y35878D01* G37* G36* Y37197D02*X30464Y37198D01* X30457Y37204D01* X30450Y37208D01* X30442Y37211D01* X30416Y37220D01* X30391Y37231D01* X30368Y37244D01* X30345Y37259D01* X30324Y37276D01* X30305Y37295D01* X30287Y37316D01* X30285Y37319D01* Y37680D01* X30301Y37700D01* X30320Y37719D01* X30341Y37737D01* X30363Y37752D01* X30387Y37766D01* X30411Y37777D01* X30437Y37786D01* X30445Y37790D01* X30452Y37794D01* X30459Y37800D01* X30464Y37807D01* X30465Y37809D01* Y37197D01* G37* G36* Y40000D02*X30724D01* Y39834D01* X30714Y39840D01* X30682Y39858D01* X30649Y39873D01* X30615Y39884D01* X30606Y39886D01* X30597Y39886D01* X30589Y39885D01* X30581Y39882D01* X30573Y39878D01* X30566Y39872D01* X30560Y39865D01* X30556Y39858D01* X30553Y39850D01* X30551Y39841D01* X30551Y39833D01* X30552Y39824D01* X30555Y39816D01* X30559Y39808D01* X30565Y39801D01* X30572Y39796D01* X30579Y39791D01* X30587Y39788D01* X30613Y39779D01* X30638Y39768D01* X30661Y39755D01* X30684Y39740D01* X30705Y39723D01* X30724Y39704D01* Y39295D01* X30709Y39280D01* X30688Y39262D01* X30666Y39247D01* X30642Y39233D01* X30618Y39222D01* X30592Y39213D01* X30584Y39209D01* X30577Y39205D01* X30570Y39199D01* X30565Y39192D01* X30561Y39184D01* X30558Y39176D01* X30557Y39167D01* X30557Y39159D01* X30559Y39150D01* X30562Y39142D01* X30567Y39135D01* X30573Y39128D01* X30580Y39123D01* X30587Y39119D01* X30596Y39116D01* X30604Y39115D01* X30613Y39115D01* X30621Y39117D01* X30656Y39129D01* X30688Y39144D01* X30720Y39162D01* X30724Y39165D01* Y37846D01* X30702Y37858D01* X30669Y37873D01* X30635Y37884D01* X30626Y37886D01* X30617Y37886D01* X30609Y37885D01* X30601Y37882D01* X30593Y37878D01* X30586Y37872D01* X30580Y37865D01* X30576Y37858D01* X30573Y37850D01* X30571Y37841D01* X30571Y37833D01* X30572Y37824D01* X30575Y37816D01* X30579Y37808D01* X30585Y37801D01* X30592Y37796D01* X30599Y37791D01* X30607Y37788D01* X30633Y37779D01* X30658Y37768D01* X30681Y37755D01* X30704Y37740D01* X30724Y37724D01* Y37276D01* X30708Y37262D01* X30686Y37247D01* X30662Y37233D01* X30638Y37222D01* X30612Y37213D01* X30604Y37209D01* X30597Y37205D01* X30590Y37199D01* X30585Y37192D01* X30581Y37184D01* X30578Y37176D01* X30577Y37167D01* X30577Y37159D01* X30579Y37150D01* X30582Y37142D01* X30587Y37135D01* X30593Y37128D01* X30600Y37123D01* X30607Y37119D01* X30616Y37116D01* X30624Y37115D01* X30633Y37115D01* X30641Y37117D01* X30676Y37129D01* X30708Y37144D01* X30724Y37153D01* Y35857D01* X30722Y35858D01* X30689Y35873D01* X30655Y35884D01* X30646Y35886D01* X30637Y35886D01* X30629Y35885D01* X30621Y35882D01* X30613Y35878D01* X30606Y35872D01* X30600Y35865D01* X30596Y35858D01* X30593Y35850D01* X30591Y35841D01* X30591Y35833D01* X30592Y35824D01* X30595Y35816D01* X30599Y35808D01* X30605Y35801D01* X30612Y35796D01* X30619Y35791D01* X30627Y35788D01* X30653Y35779D01* X30678Y35768D01* X30701Y35755D01* X30724Y35740D01* Y35259D01* X30706Y35247D01* X30682Y35233D01* X30658Y35222D01* X30632Y35213D01* X30624Y35209D01* X30617Y35205D01* X30610Y35199D01* X30605Y35192D01* X30601Y35184D01* X30598Y35176D01* X30597Y35167D01* X30597Y35159D01* X30599Y35150D01* X30602Y35142D01* X30607Y35135D01* X30613Y35128D01* X30620Y35123D01* X30627Y35119D01* X30636Y35116D01* X30644Y35115D01* X30653Y35115D01* X30661Y35117D01* X30696Y35129D01* X30724Y35142D01* Y33866D01* X30709Y33873D01* X30675Y33884D01* X30666Y33886D01* X30657Y33886D01* X30649Y33885D01* X30641Y33882D01* X30633Y33878D01* X30626Y33872D01* X30620Y33865D01* X30616Y33858D01* X30613Y33850D01* X30611Y33841D01* X30611Y33833D01* X30612Y33824D01* X30615Y33816D01* X30619Y33808D01* X30625Y33801D01* X30632Y33796D01* X30639Y33791D01* X30647Y33788D01* X30673Y33779D01* X30698Y33768D01* X30721Y33755D01* X30724Y33754D01* Y33246D01* X30702Y33233D01* X30678Y33222D01* X30652Y33213D01* X30644Y33209D01* X30637Y33205D01* X30630Y33199D01* X30625Y33192D01* X30621Y33184D01* X30618Y33176D01* X30617Y33167D01* X30617Y33159D01* X30619Y33150D01* X30622Y33142D01* X30627Y33135D01* X30633Y33128D01* X30640Y33123D01* X30647Y33119D01* X30656Y33116D01* X30664Y33115D01* X30673Y33115D01* X30681Y33117D01* X30716Y33129D01* X30724Y33133D01* Y31874D01* X30695Y31884D01* X30686Y31886D01* X30677Y31886D01* X30669Y31885D01* X30661Y31882D01* X30653Y31878D01* X30646Y31872D01* X30640Y31865D01* X30636Y31858D01* X30633Y31850D01* X30631Y31841D01* X30631Y31833D01* X30632Y31824D01* X30635Y31816D01* X30639Y31808D01* X30645Y31801D01* X30652Y31796D01* X30659Y31791D01* X30667Y31788D01* X30693Y31779D01* X30718Y31768D01* X30724Y31765D01* Y31234D01* X30722Y31233D01* X30698Y31222D01* X30672Y31213D01* X30664Y31209D01* X30657Y31205D01* X30650Y31199D01* X30645Y31192D01* X30641Y31184D01* X30638Y31176D01* X30637Y31167D01* X30637Y31159D01* X30639Y31150D01* X30642Y31142D01* X30647Y31135D01* X30653Y31128D01* X30660Y31123D01* X30667Y31119D01* X30676Y31116D01* X30684Y31115D01* X30693Y31115D01* X30701Y31117D01* X30724Y31125D01* Y29881D01* X30715Y29884D01* X30706Y29886D01* X30697Y29886D01* X30689Y29885D01* X30681Y29882D01* X30673Y29878D01* X30666Y29872D01* X30660Y29865D01* X30656Y29858D01* X30653Y29850D01* X30651Y29841D01* X30651Y29833D01* X30652Y29824D01* X30655Y29816D01* X30659Y29808D01* X30665Y29801D01* X30672Y29796D01* X30679Y29791D01* X30687Y29788D01* X30713Y29779D01* X30724Y29774D01* Y29225D01* X30718Y29222D01* X30692Y29213D01* X30684Y29209D01* X30677Y29205D01* X30670Y29199D01* X30665Y29192D01* X30661Y29184D01* X30658Y29176D01* X30657Y29167D01* X30657Y29159D01* X30659Y29150D01* X30662Y29142D01* X30667Y29135D01* X30673Y29128D01* X30680Y29123D01* X30687Y29119D01* X30696Y29116D01* X30704Y29115D01* X30713Y29115D01* X30721Y29117D01* X30724Y29118D01* Y27886D01* X30717Y27886D01* X30709Y27885D01* X30701Y27882D01* X30693Y27878D01* X30686Y27872D01* X30680Y27865D01* X30676Y27858D01* X30673Y27850D01* X30671Y27841D01* X30671Y27833D01* X30672Y27824D01* X30675Y27816D01* X30679Y27808D01* X30685Y27801D01* X30692Y27796D01* X30699Y27791D01* X30707Y27788D01* X30724Y27782D01* Y27217D01* X30712Y27213D01* X30704Y27209D01* X30697Y27205D01* X30690Y27199D01* X30685Y27192D01* X30681Y27184D01* X30678Y27176D01* X30677Y27167D01* X30677Y27159D01* X30679Y27150D01* X30682Y27142D01* X30687Y27135D01* X30693Y27128D01* X30700Y27123D01* X30707Y27119D01* X30716Y27116D01* X30724Y27115D01* Y25883D01* X30721Y25882D01* X30713Y25878D01* X30706Y25872D01* X30700Y25865D01* X30696Y25858D01* X30693Y25850D01* X30691Y25841D01* X30691Y25833D01* X30692Y25824D01* X30695Y25816D01* X30699Y25808D01* X30705Y25801D01* X30712Y25796D01* X30719Y25791D01* X30724Y25789D01* Y25209D01* X30717Y25205D01* X30710Y25199D01* X30705Y25192D01* X30701Y25184D01* X30698Y25176D01* X30697Y25167D01* X30697Y25159D01* X30699Y25150D01* X30702Y25142D01* X30707Y25135D01* X30713Y25128D01* X30720Y25123D01* X30724Y25121D01* Y23870D01* X30720Y23865D01* X30716Y23858D01* X30713Y23850D01* X30711Y23841D01* X30711Y23833D01* X30712Y23824D01* X30715Y23816D01* X30719Y23808D01* X30724Y23802D01* Y23190D01* X30721Y23184D01* X30718Y23176D01* X30717Y23167D01* X30717Y23159D01* X30719Y23150D01* X30722Y23142D01* X30724Y23140D01* Y11861D01* X30722Y11864D01* X30716Y11871D01* X30709Y11876D01* X30702Y11880D01* X30693Y11883D01* X30685Y11884D01* X30676Y11884D01* X30668Y11882D01* X30633Y11870D01* X30601Y11855D01* X30569Y11837D01* X30540Y11816D01* X30512Y11793D01* X30487Y11767D01* X30465Y11740D01* Y13235D01* X30472Y13227D01* X30497Y13202D01* X30525Y13179D01* X30555Y13159D01* X30587Y13141D01* X30620Y13127D01* X30654Y13115D01* X30663Y13113D01* X30672Y13113D01* X30680Y13115D01* X30688Y13117D01* X30696Y13122D01* X30703Y13127D01* X30709Y13134D01* X30713Y13141D01* X30716Y13149D01* X30718Y13158D01* X30718Y13167D01* X30717Y13175D01* X30714Y13183D01* X30710Y13191D01* X30704Y13198D01* X30697Y13204D01* X30690Y13208D01* X30682Y13211D01* X30656Y13220D01* X30631Y13231D01* X30608Y13244D01* X30585Y13259D01* X30564Y13276D01* X30545Y13295D01* X30527Y13316D01* X30512Y13338D01* X30498Y13362D01* X30487Y13386D01* X30478Y13412D01* X30474Y13420D01* X30470Y13427D01* X30465Y13432D01* Y13563D01* X30469Y13567D01* X30473Y13574D01* X30476Y13582D01* X30485Y13608D01* X30496Y13633D01* X30509Y13657D01* X30524Y13679D01* X30541Y13700D01* X30560Y13719D01* X30581Y13737D01* X30603Y13752D01* X30627Y13766D01* X30651Y13777D01* X30677Y13786D01* X30685Y13790D01* X30692Y13794D01* X30699Y13800D01* X30704Y13807D01* X30708Y13815D01* X30711Y13823D01* X30712Y13832D01* X30712Y13840D01* X30710Y13849D01* X30707Y13857D01* X30702Y13864D01* X30696Y13871D01* X30689Y13876D01* X30682Y13880D01* X30673Y13883D01* X30665Y13884D01* X30656Y13884D01* X30648Y13882D01* X30613Y13870D01* X30581Y13855D01* X30549Y13837D01* X30520Y13816D01* X30492Y13793D01* X30467Y13767D01* X30465Y13765D01* Y15214D01* X30477Y15202D01* X30505Y15179D01* X30535Y15159D01* X30567Y15141D01* X30600Y15127D01* X30634Y15115D01* X30643Y15113D01* X30652Y15113D01* X30660Y15115D01* X30668Y15117D01* X30676Y15122D01* X30683Y15127D01* X30689Y15134D01* X30693Y15141D01* X30696Y15149D01* X30698Y15158D01* X30698Y15167D01* X30697Y15175D01* X30694Y15183D01* X30690Y15191D01* X30684Y15198D01* X30677Y15204D01* X30670Y15208D01* X30662Y15211D01* X30636Y15220D01* X30611Y15231D01* X30588Y15244D01* X30565Y15259D01* X30544Y15276D01* X30525Y15295D01* X30507Y15316D01* X30492Y15338D01* X30478Y15362D01* X30467Y15386D01* X30465Y15391D01* Y15609D01* X30476Y15633D01* X30489Y15657D01* X30504Y15679D01* X30521Y15700D01* X30540Y15719D01* X30561Y15737D01* X30583Y15752D01* X30607Y15766D01* X30631Y15777D01* X30657Y15786D01* X30665Y15790D01* X30672Y15794D01* X30679Y15800D01* X30684Y15807D01* X30688Y15815D01* X30691Y15823D01* X30692Y15832D01* X30692Y15840D01* X30690Y15849D01* X30687Y15857D01* X30682Y15864D01* X30676Y15871D01* X30669Y15876D01* X30662Y15880D01* X30653Y15883D01* X30645Y15884D01* X30636Y15884D01* X30628Y15882D01* X30593Y15870D01* X30561Y15855D01* X30529Y15837D01* X30500Y15816D01* X30472Y15793D01* X30465Y15785D01* Y17196D01* X30485Y17179D01* X30515Y17159D01* X30547Y17141D01* X30580Y17127D01* X30614Y17115D01* X30623Y17113D01* X30632Y17113D01* X30640Y17115D01* X30648Y17117D01* X30656Y17122D01* X30663Y17127D01* X30669Y17134D01* X30673Y17141D01* X30676Y17149D01* X30678Y17158D01* X30678Y17167D01* X30677Y17175D01* X30674Y17183D01* X30670Y17191D01* X30664Y17198D01* X30657Y17204D01* X30650Y17208D01* X30642Y17211D01* X30616Y17220D01* X30591Y17231D01* X30568Y17244D01* X30545Y17259D01* X30524Y17276D01* X30505Y17295D01* X30487Y17316D01* X30472Y17338D01* X30465Y17349D01* Y17650D01* X30469Y17657D01* X30484Y17679D01* X30501Y17700D01* X30520Y17719D01* X30541Y17737D01* X30563Y17752D01* X30587Y17766D01* X30611Y17777D01* X30637Y17786D01* X30645Y17790D01* X30652Y17794D01* X30659Y17800D01* X30664Y17807D01* X30668Y17815D01* X30671Y17823D01* X30672Y17832D01* X30672Y17840D01* X30670Y17849D01* X30667Y17857D01* X30662Y17864D01* X30656Y17871D01* X30649Y17876D01* X30642Y17880D01* X30633Y17883D01* X30625Y17884D01* X30616Y17884D01* X30608Y17882D01* X30573Y17870D01* X30541Y17855D01* X30509Y17837D01* X30480Y17816D01* X30465Y17804D01* Y19179D01* X30465Y19179D01* X30495Y19159D01* X30527Y19141D01* X30560Y19127D01* X30594Y19115D01* X30603Y19113D01* X30612Y19113D01* X30620Y19115D01* X30628Y19117D01* X30636Y19122D01* X30643Y19127D01* X30649Y19134D01* X30653Y19141D01* X30656Y19149D01* X30658Y19158D01* X30658Y19167D01* X30657Y19175D01* X30654Y19183D01* X30650Y19191D01* X30644Y19198D01* X30637Y19204D01* X30630Y19208D01* X30622Y19211D01* X30596Y19220D01* X30571Y19231D01* X30548Y19244D01* X30525Y19259D01* X30504Y19276D01* X30485Y19295D01* X30467Y19316D01* X30465Y19319D01* Y19680D01* X30481Y19700D01* X30500Y19719D01* X30521Y19737D01* X30543Y19752D01* X30567Y19766D01* X30591Y19777D01* X30617Y19786D01* X30625Y19790D01* X30632Y19794D01* X30639Y19800D01* X30644Y19807D01* X30648Y19815D01* X30651Y19823D01* X30652Y19832D01* X30652Y19840D01* X30650Y19849D01* X30647Y19857D01* X30642Y19864D01* X30636Y19871D01* X30629Y19876D01* X30622Y19880D01* X30613Y19883D01* X30605Y19884D01* X30596Y19884D01* X30588Y19882D01* X30553Y19870D01* X30521Y19855D01* X30489Y19837D01* X30465Y19820D01* Y21166D01* X30475Y21159D01* X30507Y21141D01* X30540Y21127D01* X30574Y21115D01* X30583Y21113D01* X30592Y21113D01* X30600Y21115D01* X30608Y21117D01* X30616Y21122D01* X30623Y21127D01* X30629Y21134D01* X30633Y21141D01* X30636Y21149D01* X30638Y21158D01* X30638Y21167D01* X30637Y21175D01* X30634Y21183D01* X30630Y21191D01* X30624Y21198D01* X30617Y21204D01* X30610Y21208D01* X30602Y21211D01* X30576Y21220D01* X30551Y21231D01* X30528Y21244D01* X30505Y21259D01* X30484Y21276D01* X30465Y21295D01* Y21704D01* X30480Y21719D01* X30501Y21737D01* X30523Y21752D01* X30547Y21766D01* X30571Y21777D01* X30597Y21786D01* X30605Y21790D01* X30612Y21794D01* X30619Y21800D01* X30624Y21807D01* X30628Y21815D01* X30631Y21823D01* X30632Y21832D01* X30632Y21840D01* X30630Y21849D01* X30627Y21857D01* X30622Y21864D01* X30616Y21871D01* X30609Y21876D01* X30602Y21880D01* X30593Y21883D01* X30585Y21884D01* X30576Y21884D01* X30568Y21882D01* X30533Y21870D01* X30501Y21855D01* X30469Y21837D01* X30465Y21834D01* Y23153D01* X30487Y23141D01* X30520Y23127D01* X30554Y23115D01* X30563Y23113D01* X30572Y23113D01* X30580Y23115D01* X30588Y23117D01* X30596Y23122D01* X30603Y23127D01* X30609Y23134D01* X30613Y23141D01* X30616Y23149D01* X30618Y23158D01* X30618Y23167D01* X30617Y23175D01* X30614Y23183D01* X30610Y23191D01* X30604Y23198D01* X30597Y23204D01* X30590Y23208D01* X30582Y23211D01* X30556Y23220D01* X30531Y23231D01* X30508Y23244D01* X30485Y23259D01* X30465Y23276D01* Y23723D01* X30481Y23737D01* X30503Y23752D01* X30527Y23766D01* X30551Y23777D01* X30577Y23786D01* X30585Y23790D01* X30592Y23794D01* X30599Y23800D01* X30604Y23807D01* X30608Y23815D01* X30611Y23823D01* X30612Y23832D01* X30612Y23840D01* X30610Y23849D01* X30607Y23857D01* X30602Y23864D01* X30596Y23871D01* X30589Y23876D01* X30582Y23880D01* X30573Y23883D01* X30565Y23884D01* X30556Y23884D01* X30548Y23882D01* X30513Y23870D01* X30481Y23855D01* X30465Y23846D01* Y25142D01* X30467Y25141D01* X30500Y25127D01* X30534Y25115D01* X30543Y25113D01* X30552Y25113D01* X30560Y25115D01* X30568Y25117D01* X30576Y25122D01* X30583Y25127D01* X30589Y25134D01* X30593Y25141D01* X30596Y25149D01* X30598Y25158D01* X30598Y25167D01* X30597Y25175D01* X30594Y25183D01* X30590Y25191D01* X30584Y25198D01* X30577Y25204D01* X30570Y25208D01* X30562Y25211D01* X30536Y25220D01* X30511Y25231D01* X30488Y25244D01* X30465Y25259D01* Y25740D01* X30483Y25752D01* X30507Y25766D01* X30531Y25777D01* X30557Y25786D01* X30565Y25790D01* X30572Y25794D01* X30579Y25800D01* X30584Y25807D01* X30588Y25815D01* X30591Y25823D01* X30592Y25832D01* X30592Y25840D01* X30590Y25849D01* X30587Y25857D01* X30582Y25864D01* X30576Y25871D01* X30569Y25876D01* X30562Y25880D01* X30553Y25883D01* X30545Y25884D01* X30536Y25884D01* X30528Y25882D01* X30493Y25870D01* X30465Y25857D01* Y27133D01* X30480Y27127D01* X30514Y27115D01* X30523Y27113D01* X30532Y27113D01* X30540Y27115D01* X30548Y27117D01* X30556Y27122D01* X30563Y27127D01* X30569Y27134D01* X30573Y27141D01* X30576Y27149D01* X30578Y27158D01* X30578Y27167D01* X30577Y27175D01* X30574Y27183D01* X30570Y27191D01* X30564Y27198D01* X30557Y27204D01* X30550Y27208D01* X30542Y27211D01* X30516Y27220D01* X30491Y27231D01* X30468Y27244D01* X30465Y27246D01* Y27754D01* X30487Y27766D01* X30511Y27777D01* X30537Y27786D01* X30545Y27790D01* X30552Y27794D01* X30559Y27800D01* X30564Y27807D01* X30568Y27815D01* X30571Y27823D01* X30572Y27832D01* X30572Y27840D01* X30570Y27849D01* X30567Y27857D01* X30562Y27864D01* X30556Y27871D01* X30549Y27876D01* X30542Y27880D01* X30533Y27883D01* X30525Y27884D01* X30516Y27884D01* X30508Y27882D01* X30473Y27870D01* X30465Y27866D01* Y29125D01* X30494Y29115D01* X30503Y29113D01* X30512Y29113D01* X30520Y29115D01* X30528Y29117D01* X30536Y29122D01* X30543Y29127D01* X30549Y29134D01* X30553Y29141D01* X30556Y29149D01* X30558Y29158D01* X30558Y29167D01* X30557Y29175D01* X30554Y29183D01* X30550Y29191D01* X30544Y29198D01* X30537Y29204D01* X30530Y29208D01* X30522Y29211D01* X30496Y29220D01* X30471Y29231D01* X30465Y29234D01* Y29765D01* X30467Y29766D01* X30491Y29777D01* X30517Y29786D01* X30525Y29790D01* X30532Y29794D01* X30539Y29800D01* X30544Y29807D01* X30548Y29815D01* X30551Y29823D01* X30552Y29832D01* X30552Y29840D01* X30550Y29849D01* X30547Y29857D01* X30542Y29864D01* X30536Y29871D01* X30529Y29876D01* X30522Y29880D01* X30513Y29883D01* X30505Y29884D01* X30496Y29884D01* X30488Y29882D01* X30465Y29874D01* Y31118D01* X30474Y31115D01* X30483Y31113D01* X30492Y31113D01* X30500Y31115D01* X30508Y31117D01* X30516Y31122D01* X30523Y31127D01* X30529Y31134D01* X30533Y31141D01* X30536Y31149D01* X30538Y31158D01* X30538Y31167D01* X30537Y31175D01* X30534Y31183D01* X30530Y31191D01* X30524Y31198D01* X30517Y31204D01* X30510Y31208D01* X30502Y31211D01* X30476Y31220D01* X30465Y31225D01* Y31775D01* X30471Y31777D01* X30497Y31786D01* X30505Y31790D01* X30512Y31794D01* X30519Y31800D01* X30524Y31807D01* X30528Y31815D01* X30531Y31823D01* X30532Y31832D01* X30532Y31840D01* X30530Y31849D01* X30527Y31857D01* X30522Y31864D01* X30516Y31871D01* X30509Y31876D01* X30502Y31880D01* X30493Y31883D01* X30485Y31884D01* X30476Y31884D01* X30468Y31882D01* X30465Y31881D01* Y33113D01* X30472Y33113D01* X30480Y33115D01* X30488Y33117D01* X30496Y33122D01* X30503Y33127D01* X30509Y33134D01* X30513Y33141D01* X30516Y33149D01* X30518Y33158D01* X30518Y33167D01* X30517Y33175D01* X30514Y33183D01* X30510Y33191D01* X30504Y33198D01* X30497Y33204D01* X30490Y33208D01* X30482Y33211D01* X30465Y33217D01* Y33782D01* X30477Y33786D01* X30485Y33790D01* X30492Y33794D01* X30499Y33800D01* X30504Y33807D01* X30508Y33815D01* X30511Y33823D01* X30512Y33832D01* X30512Y33840D01* X30510Y33849D01* X30507Y33857D01* X30502Y33864D01* X30496Y33871D01* X30489Y33876D01* X30482Y33880D01* X30473Y33883D01* X30465Y33884D01* Y35116D01* X30468Y35117D01* X30476Y35122D01* X30483Y35127D01* X30489Y35134D01* X30493Y35141D01* X30496Y35149D01* X30498Y35158D01* X30498Y35167D01* X30497Y35175D01* X30494Y35183D01* X30490Y35191D01* X30484Y35198D01* X30477Y35204D01* X30470Y35208D01* X30465Y35210D01* Y35790D01* X30472Y35794D01* X30479Y35800D01* X30484Y35807D01* X30488Y35815D01* X30491Y35823D01* X30492Y35832D01* X30492Y35840D01* X30490Y35849D01* X30487Y35857D01* X30482Y35864D01* X30476Y35871D01* X30469Y35876D01* X30465Y35878D01* Y37130D01* X30469Y37134D01* X30473Y37141D01* X30476Y37149D01* X30478Y37158D01* X30478Y37167D01* X30477Y37175D01* X30474Y37183D01* X30470Y37191D01* X30465Y37197D01* Y37809D01* X30468Y37815D01* X30471Y37823D01* X30472Y37832D01* X30472Y37840D01* X30470Y37849D01* X30467Y37857D01* X30465Y37859D01* Y40000D01* G37* G36* Y11549D02*X30468Y11550D01* X30476Y11555D01* X30483Y11560D01* X30489Y11567D01* X30493Y11574D01* X30496Y11582D01* X30505Y11608D01* X30516Y11633D01* X30529Y11657D01* X30544Y11679D01* X30561Y11700D01* X30580Y11719D01* X30601Y11737D01* X30623Y11752D01* X30647Y11766D01* X30671Y11777D01* X30697Y11786D01* X30705Y11790D01* X30712Y11794D01* X30719Y11800D01* X30724Y11807D01* Y11198D01* X30717Y11204D01* X30710Y11208D01* X30702Y11211D01* X30676Y11220D01* X30651Y11231D01* X30628Y11244D01* X30605Y11259D01* X30584Y11276D01* X30565Y11295D01* X30547Y11316D01* X30532Y11338D01* X30518Y11362D01* X30507Y11386D01* X30498Y11412D01* X30494Y11420D01* X30490Y11427D01* X30484Y11434D01* X30477Y11439D01* X30469Y11443D01* X30465Y11445D01* Y11549D01* G37* G36* Y11259D02*X30468Y11255D01* X30492Y11227D01* X30517Y11202D01* X30545Y11179D01* X30575Y11159D01* X30607Y11141D01* X30640Y11127D01* X30674Y11115D01* X30683Y11113D01* X30692Y11113D01* X30700Y11115D01* X30708Y11117D01* X30716Y11122D01* X30723Y11127D01* X30724Y11128D01* Y9879D01* X30722Y9880D01* X30713Y9883D01* X30705Y9884D01* X30696Y9884D01* X30688Y9882D01* X30653Y9870D01* X30621Y9855D01* X30589Y9837D01* X30560Y9816D01* X30532Y9793D01* X30507Y9767D01* X30484Y9739D01* X30465Y9711D01* Y11259D01* G37* G36* Y9546D02*X30472Y9546D01* X30480Y9547D01* X30488Y9550D01* X30496Y9555D01* X30503Y9560D01* X30509Y9567D01* X30513Y9574D01* X30516Y9582D01* X30525Y9608D01* X30536Y9633D01* X30549Y9657D01* X30564Y9679D01* X30581Y9700D01* X30600Y9719D01* X30621Y9737D01* X30643Y9752D01* X30667Y9766D01* X30691Y9777D01* X30717Y9786D01* X30724Y9789D01* Y9210D01* X30722Y9211D01* X30696Y9220D01* X30671Y9231D01* X30648Y9244D01* X30625Y9259D01* X30604Y9276D01* X30585Y9295D01* X30567Y9316D01* X30552Y9338D01* X30538Y9362D01* X30527Y9386D01* X30518Y9412D01* X30514Y9420D01* X30510Y9427D01* X30504Y9434D01* X30497Y9439D01* X30489Y9443D01* X30481Y9446D01* X30472Y9447D01* X30465Y9447D01* Y9546D01* G37* G36* Y9288D02*X30467Y9284D01* X30488Y9255D01* X30512Y9227D01* X30537Y9202D01* X30565Y9179D01* X30595Y9159D01* X30627Y9141D01* X30660Y9127D01* X30694Y9115D01* X30703Y9113D01* X30712Y9113D01* X30720Y9115D01* X30724Y9116D01* Y7884D01* X30716Y7884D01* X30708Y7882D01* X30673Y7870D01* X30641Y7855D01* X30609Y7837D01* X30580Y7816D01* X30552Y7793D01* X30527Y7767D01* X30504Y7739D01* X30484Y7709D01* X30466Y7677D01* X30465Y7675D01* Y9288D01* G37* G36* Y7552D02*X30466Y7551D01* X30474Y7548D01* X30483Y7546D01* X30492Y7546D01* X30500Y7547D01* X30508Y7550D01* X30516Y7555D01* X30523Y7560D01* X30529Y7567D01* X30533Y7574D01* X30536Y7582D01* X30545Y7608D01* X30556Y7633D01* X30569Y7657D01* X30584Y7679D01* X30601Y7700D01* X30620Y7719D01* X30641Y7737D01* X30663Y7752D01* X30687Y7766D01* X30711Y7777D01* X30724Y7782D01* Y7217D01* X30716Y7220D01* X30691Y7231D01* X30668Y7244D01* X30645Y7259D01* X30624Y7276D01* X30605Y7295D01* X30587Y7316D01* X30572Y7338D01* X30558Y7362D01* X30547Y7386D01* X30538Y7412D01* X30534Y7420D01* X30530Y7427D01* X30524Y7434D01* X30517Y7439D01* X30509Y7443D01* X30501Y7446D01* X30492Y7447D01* X30484Y7447D01* X30475Y7445D01* X30467Y7442D01* X30465Y7441D01* Y7552D01* G37* G36* Y7325D02*X30469Y7316D01* X30487Y7284D01* X30508Y7255D01* X30532Y7227D01* X30557Y7202D01* X30585Y7179D01* X30615Y7159D01* X30647Y7141D01* X30680Y7127D01* X30714Y7115D01* X30723Y7113D01* X30724D01* Y5881D01* X30693Y5870D01* X30661Y5855D01* X30629Y5837D01* X30600Y5816D01* X30572Y5793D01* X30547Y5767D01* X30524Y5739D01* X30504Y5709D01* X30486Y5677D01* X30472Y5644D01* X30465Y5625D01* Y7325D01* G37* G36* Y5571D02*X30467Y5568D01* X30472Y5561D01* X30479Y5556D01* X30486Y5551D01* X30494Y5548D01* X30503Y5546D01* X30512Y5546D01* X30520Y5547D01* X30528Y5550D01* X30536Y5555D01* X30543Y5560D01* X30549Y5567D01* X30553Y5574D01* X30556Y5582D01* X30565Y5608D01* X30576Y5633D01* X30589Y5657D01* X30604Y5679D01* X30621Y5700D01* X30640Y5719D01* X30661Y5737D01* X30683Y5752D01* X30707Y5766D01* X30724Y5774D01* Y5225D01* X30711Y5231D01* X30688Y5244D01* X30665Y5259D01* X30644Y5276D01* X30625Y5295D01* X30607Y5316D01* X30592Y5338D01* X30578Y5362D01* X30567Y5386D01* X30558Y5412D01* X30554Y5420D01* X30550Y5427D01* X30544Y5434D01* X30537Y5439D01* X30529Y5443D01* X30521Y5446D01* X30512Y5447D01* X30504Y5447D01* X30495Y5445D01* X30487Y5442D01* X30480Y5437D01* X30473Y5431D01* X30468Y5424D01* X30465Y5419D01* Y5571D01* G37* G36* Y5374D02*X30474Y5349D01* X30489Y5316D01* X30507Y5284D01* X30528Y5255D01* X30552Y5227D01* X30577Y5202D01* X30605Y5179D01* X30635Y5159D01* X30667Y5141D01* X30700Y5127D01* X30724Y5119D01* Y3874D01* X30713Y3870D01* X30681Y3855D01* X30649Y3837D01* X30620Y3816D01* X30592Y3793D01* X30567Y3767D01* X30544Y3739D01* X30524Y3709D01* X30506Y3677D01* X30492Y3644D01* X30480Y3610D01* X30478Y3601D01* X30478Y3593D01* X30479Y3584D01* X30482Y3576D01* X30487Y3568D01* X30492Y3561D01* X30499Y3556D01* X30506Y3551D01* X30514Y3548D01* X30523Y3546D01* X30532Y3546D01* X30540Y3547D01* X30548Y3550D01* X30556Y3555D01* X30563Y3560D01* X30569Y3567D01* X30573Y3574D01* X30576Y3582D01* X30585Y3608D01* X30596Y3633D01* X30609Y3657D01* X30624Y3679D01* X30641Y3700D01* X30660Y3719D01* X30681Y3737D01* X30703Y3752D01* X30724Y3764D01* Y3235D01* X30708Y3244D01* X30685Y3259D01* X30664Y3276D01* X30645Y3295D01* X30627Y3316D01* X30612Y3338D01* X30598Y3362D01* X30587Y3386D01* X30578Y3412D01* X30574Y3420D01* X30570Y3427D01* X30564Y3434D01* X30557Y3439D01* X30549Y3443D01* X30541Y3446D01* X30532Y3447D01* X30524Y3447D01* X30515Y3445D01* X30507Y3442D01* X30500Y3437D01* X30493Y3431D01* X30488Y3424D01* X30484Y3417D01* X30481Y3409D01* X30480Y3400D01* X30480Y3391D01* X30482Y3383D01* X30494Y3349D01* X30509Y3316D01* X30527Y3284D01* X30548Y3255D01* X30572Y3227D01* X30597Y3202D01* X30625Y3179D01* X30655Y3159D01* X30687Y3141D01* X30720Y3127D01* X30724Y3125D01* Y1866D01* X30701Y1855D01* X30669Y1837D01* X30640Y1816D01* X30612Y1793D01* X30587Y1767D01* X30564Y1739D01* X30544Y1709D01* X30526Y1677D01* X30512Y1644D01* X30500Y1610D01* X30498Y1601D01* X30498Y1593D01* X30499Y1584D01* X30502Y1576D01* X30507Y1568D01* X30512Y1561D01* X30519Y1556D01* X30526Y1551D01* X30534Y1548D01* X30543Y1546D01* X30552Y1546D01* X30560Y1547D01* X30568Y1550D01* X30576Y1555D01* X30583Y1560D01* X30589Y1567D01* X30593Y1574D01* X30596Y1582D01* X30605Y1608D01* X30616Y1633D01* X30629Y1657D01* X30644Y1679D01* X30661Y1700D01* X30680Y1719D01* X30701Y1737D01* X30723Y1752D01* X30724Y1753D01* Y1246D01* X30705Y1259D01* X30684Y1276D01* X30665Y1295D01* X30647Y1316D01* X30632Y1338D01* X30618Y1362D01* X30607Y1386D01* X30598Y1412D01* X30594Y1420D01* X30590Y1427D01* X30584Y1434D01* X30577Y1439D01* X30569Y1443D01* X30561Y1446D01* X30552Y1447D01* X30544Y1447D01* X30535Y1445D01* X30527Y1442D01* X30520Y1437D01* X30513Y1431D01* X30508Y1424D01* X30504Y1417D01* X30501Y1409D01* X30500Y1400D01* X30500Y1391D01* X30502Y1383D01* X30514Y1349D01* X30529Y1316D01* X30547Y1284D01* X30568Y1255D01* X30592Y1227D01* X30617Y1202D01* X30645Y1179D01* X30675Y1159D01* X30707Y1141D01* X30724Y1134D01* Y0D01* X30465D01* Y5374D01* G37* G36* X30724Y40000D02*X30904D01* Y37625D01* X30895Y37651D01* X30880Y37683D01* X30862Y37715D01* X30841Y37744D01* X30817Y37772D01* X30792Y37797D01* X30764Y37820D01* X30734Y37840D01* X30724Y37846D01* Y39165D01* X30749Y39183D01* X30777Y39207D01* X30802Y39232D01* X30825Y39260D01* X30845Y39290D01* X30863Y39322D01* X30877Y39355D01* X30889Y39389D01* X30891Y39398D01* X30891Y39407D01* X30890Y39415D01* X30887Y39423D01* X30882Y39431D01* X30877Y39438D01* X30870Y39444D01* X30863Y39448D01* X30855Y39451D01* X30846Y39453D01* X30837Y39453D01* X30829Y39452D01* X30821Y39449D01* X30813Y39445D01* X30806Y39439D01* X30800Y39433D01* X30796Y39425D01* X30793Y39417D01* X30784Y39391D01* X30773Y39366D01* X30760Y39343D01* X30745Y39320D01* X30728Y39299D01* X30724Y39295D01* Y39704D01* X30724Y39704D01* X30742Y39683D01* X30757Y39661D01* X30771Y39637D01* X30782Y39613D01* X30791Y39587D01* X30795Y39579D01* X30799Y39572D01* X30805Y39565D01* X30812Y39560D01* X30820Y39556D01* X30828Y39553D01* X30837Y39552D01* X30845Y39552D01* X30854Y39554D01* X30862Y39557D01* X30869Y39562D01* X30876Y39568D01* X30881Y39575D01* X30885Y39582D01* X30888Y39591D01* X30889Y39599D01* X30889Y39608D01* X30887Y39617D01* X30875Y39651D01* X30860Y39683D01* X30842Y39715D01* X30821Y39744D01* X30797Y39772D01* X30772Y39797D01* X30744Y39820D01* X30724Y39834D01* Y40000D01* G37* G36* X30904Y0D02*X30724D01* Y1134D01* X30740Y1127D01* X30774Y1115D01* X30783Y1113D01* X30792Y1113D01* X30800Y1115D01* X30808Y1117D01* X30816Y1122D01* X30823Y1127D01* X30829Y1134D01* X30833Y1141D01* X30836Y1149D01* X30838Y1158D01* X30838Y1167D01* X30837Y1175D01* X30834Y1183D01* X30830Y1191D01* X30824Y1198D01* X30817Y1204D01* X30810Y1208D01* X30802Y1211D01* X30776Y1220D01* X30751Y1231D01* X30728Y1244D01* X30724Y1246D01* Y1753D01* X30747Y1766D01* X30771Y1777D01* X30797Y1786D01* X30805Y1790D01* X30812Y1794D01* X30819Y1800D01* X30824Y1807D01* X30828Y1815D01* X30831Y1823D01* X30832Y1832D01* X30832Y1840D01* X30830Y1849D01* X30827Y1857D01* X30822Y1864D01* X30816Y1871D01* X30809Y1876D01* X30802Y1880D01* X30793Y1883D01* X30785Y1884D01* X30776Y1884D01* X30768Y1882D01* X30733Y1870D01* X30724Y1866D01* Y3125D01* X30754Y3115D01* X30763Y3113D01* X30772Y3113D01* X30780Y3115D01* X30788Y3117D01* X30796Y3122D01* X30803Y3127D01* X30809Y3134D01* X30813Y3141D01* X30816Y3149D01* X30818Y3158D01* X30818Y3167D01* X30817Y3175D01* X30814Y3183D01* X30810Y3191D01* X30804Y3198D01* X30797Y3204D01* X30790Y3208D01* X30782Y3211D01* X30756Y3220D01* X30731Y3231D01* X30724Y3235D01* Y3764D01* X30727Y3766D01* X30751Y3777D01* X30777Y3786D01* X30785Y3790D01* X30792Y3794D01* X30799Y3800D01* X30804Y3807D01* X30808Y3815D01* X30811Y3823D01* X30812Y3832D01* X30812Y3840D01* X30810Y3849D01* X30807Y3857D01* X30802Y3864D01* X30796Y3871D01* X30789Y3876D01* X30782Y3880D01* X30773Y3883D01* X30765Y3884D01* X30756Y3884D01* X30748Y3882D01* X30724Y3874D01* Y5119D01* X30734Y5115D01* X30743Y5113D01* X30752Y5113D01* X30760Y5115D01* X30768Y5117D01* X30776Y5122D01* X30783Y5127D01* X30789Y5134D01* X30793Y5141D01* X30796Y5149D01* X30798Y5158D01* X30798Y5167D01* X30797Y5175D01* X30794Y5183D01* X30790Y5191D01* X30784Y5198D01* X30777Y5204D01* X30770Y5208D01* X30762Y5211D01* X30736Y5220D01* X30724Y5225D01* Y5774D01* X30731Y5777D01* X30757Y5786D01* X30765Y5790D01* X30772Y5794D01* X30779Y5800D01* X30784Y5807D01* X30788Y5815D01* X30791Y5823D01* X30792Y5832D01* X30792Y5840D01* X30790Y5849D01* X30787Y5857D01* X30782Y5864D01* X30776Y5871D01* X30769Y5876D01* X30762Y5880D01* X30753Y5883D01* X30745Y5884D01* X30736Y5884D01* X30728Y5882D01* X30724Y5881D01* Y7113D01* X30732Y7113D01* X30740Y7115D01* X30748Y7117D01* X30756Y7122D01* X30763Y7127D01* X30769Y7134D01* X30773Y7141D01* X30776Y7149D01* X30778Y7158D01* X30778Y7167D01* X30777Y7175D01* X30774Y7183D01* X30770Y7191D01* X30764Y7198D01* X30757Y7204D01* X30750Y7208D01* X30742Y7211D01* X30724Y7217D01* Y7782D01* X30737Y7786D01* X30745Y7790D01* X30752Y7794D01* X30759Y7800D01* X30764Y7807D01* X30768Y7815D01* X30771Y7823D01* X30772Y7832D01* X30772Y7840D01* X30770Y7849D01* X30767Y7857D01* X30762Y7864D01* X30756Y7871D01* X30749Y7876D01* X30742Y7880D01* X30733Y7883D01* X30725Y7884D01* X30724D01* Y9116D01* X30728Y9117D01* X30736Y9122D01* X30743Y9127D01* X30749Y9134D01* X30753Y9141D01* X30756Y9149D01* X30758Y9158D01* X30758Y9167D01* X30757Y9175D01* X30754Y9183D01* X30750Y9191D01* X30744Y9198D01* X30737Y9204D01* X30730Y9208D01* X30724Y9210D01* Y9789D01* X30725Y9790D01* X30732Y9794D01* X30739Y9800D01* X30744Y9807D01* X30748Y9815D01* X30751Y9823D01* X30752Y9832D01* X30752Y9840D01* X30750Y9849D01* X30747Y9857D01* X30742Y9864D01* X30736Y9871D01* X30729Y9876D01* X30724Y9879D01* Y11128D01* X30729Y11134D01* X30733Y11141D01* X30736Y11149D01* X30738Y11158D01* X30738Y11167D01* X30737Y11175D01* X30734Y11183D01* X30730Y11191D01* X30724Y11198D01* X30724Y11198D01* Y11807D01* X30724Y11807D01* X30728Y11815D01* X30731Y11823D01* X30732Y11832D01* X30732Y11840D01* X30730Y11849D01* X30727Y11857D01* X30724Y11861D01* Y23140D01* X30727Y23135D01* X30733Y23128D01* X30740Y23123D01* X30747Y23119D01* X30756Y23116D01* X30764Y23115D01* X30773Y23115D01* X30781Y23117D01* X30816Y23129D01* X30848Y23144D01* X30880Y23162D01* X30904Y23180D01* Y21834D01* X30894Y21840D01* X30862Y21858D01* X30829Y21873D01* X30795Y21884D01* X30786Y21886D01* X30777Y21886D01* X30769Y21885D01* X30761Y21882D01* X30753Y21878D01* X30746Y21872D01* X30740Y21865D01* X30736Y21858D01* X30733Y21850D01* X30731Y21841D01* X30731Y21833D01* X30732Y21824D01* X30735Y21816D01* X30739Y21808D01* X30745Y21801D01* X30752Y21796D01* X30759Y21791D01* X30767Y21788D01* X30793Y21779D01* X30818Y21768D01* X30841Y21755D01* X30864Y21740D01* X30885Y21723D01* X30904Y21704D01* Y21295D01* X30889Y21280D01* X30868Y21262D01* X30846Y21247D01* X30822Y21233D01* X30798Y21222D01* X30772Y21213D01* X30764Y21209D01* X30757Y21205D01* X30750Y21199D01* X30745Y21192D01* X30741Y21184D01* X30738Y21176D01* X30737Y21167D01* X30737Y21159D01* X30739Y21150D01* X30742Y21142D01* X30747Y21135D01* X30753Y21128D01* X30760Y21123D01* X30767Y21119D01* X30776Y21116D01* X30784Y21115D01* X30793Y21115D01* X30801Y21117D01* X30836Y21129D01* X30868Y21144D01* X30900Y21162D01* X30904Y21165D01* Y19846D01* X30882Y19858D01* X30849Y19873D01* X30815Y19884D01* X30806Y19886D01* X30797Y19886D01* X30789Y19885D01* X30781Y19882D01* X30773Y19878D01* X30766Y19872D01* X30760Y19865D01* X30756Y19858D01* X30753Y19850D01* X30751Y19841D01* X30751Y19833D01* X30752Y19824D01* X30755Y19816D01* X30759Y19808D01* X30765Y19801D01* X30772Y19796D01* X30779Y19791D01* X30787Y19788D01* X30813Y19779D01* X30838Y19768D01* X30861Y19755D01* X30884Y19740D01* X30904Y19724D01* Y19276D01* X30888Y19262D01* X30866Y19247D01* X30842Y19233D01* X30818Y19222D01* X30792Y19213D01* X30784Y19209D01* X30777Y19205D01* X30770Y19199D01* X30765Y19192D01* X30761Y19184D01* X30758Y19176D01* X30757Y19167D01* X30757Y19159D01* X30759Y19150D01* X30762Y19142D01* X30767Y19135D01* X30773Y19128D01* X30780Y19123D01* X30787Y19119D01* X30796Y19116D01* X30804Y19115D01* X30813Y19115D01* X30821Y19117D01* X30856Y19129D01* X30888Y19144D01* X30904Y19153D01* Y17857D01* X30902Y17858D01* X30869Y17873D01* X30835Y17884D01* X30826Y17886D01* X30817Y17886D01* X30809Y17885D01* X30801Y17882D01* X30793Y17878D01* X30786Y17872D01* X30780Y17865D01* X30776Y17858D01* X30773Y17850D01* X30771Y17841D01* X30771Y17833D01* X30772Y17824D01* X30775Y17816D01* X30779Y17808D01* X30785Y17801D01* X30792Y17796D01* X30799Y17791D01* X30807Y17788D01* X30833Y17779D01* X30858Y17768D01* X30881Y17755D01* X30904Y17740D01* Y17259D01* X30886Y17247D01* X30862Y17233D01* X30838Y17222D01* X30812Y17213D01* X30804Y17209D01* X30797Y17205D01* X30790Y17199D01* X30785Y17192D01* X30781Y17184D01* X30778Y17176D01* X30777Y17167D01* X30777Y17159D01* X30779Y17150D01* X30782Y17142D01* X30787Y17135D01* X30793Y17128D01* X30800Y17123D01* X30807Y17119D01* X30816Y17116D01* X30824Y17115D01* X30833Y17115D01* X30841Y17117D01* X30876Y17129D01* X30904Y17142D01* Y15866D01* X30889Y15873D01* X30855Y15884D01* X30846Y15886D01* X30837Y15886D01* X30829Y15885D01* X30821Y15882D01* X30813Y15878D01* X30806Y15872D01* X30800Y15865D01* X30796Y15858D01* X30793Y15850D01* X30791Y15841D01* X30791Y15833D01* X30792Y15824D01* X30795Y15816D01* X30799Y15808D01* X30805Y15801D01* X30812Y15796D01* X30819Y15791D01* X30827Y15788D01* X30853Y15779D01* X30878Y15768D01* X30901Y15755D01* X30904Y15754D01* Y15246D01* X30882Y15233D01* X30858Y15222D01* X30832Y15213D01* X30824Y15209D01* X30817Y15205D01* X30810Y15199D01* X30805Y15192D01* X30801Y15184D01* X30798Y15176D01* X30797Y15167D01* X30797Y15159D01* X30799Y15150D01* X30802Y15142D01* X30807Y15135D01* X30813Y15128D01* X30820Y15123D01* X30827Y15119D01* X30836Y15116D01* X30844Y15115D01* X30853Y15115D01* X30861Y15117D01* X30896Y15129D01* X30904Y15133D01* Y13874D01* X30875Y13884D01* X30866Y13886D01* X30857Y13886D01* X30849Y13885D01* X30841Y13882D01* X30833Y13878D01* X30826Y13872D01* X30820Y13865D01* X30816Y13858D01* X30813Y13850D01* X30811Y13841D01* X30811Y13833D01* X30812Y13824D01* X30815Y13816D01* X30819Y13808D01* X30825Y13801D01* X30832Y13796D01* X30839Y13791D01* X30847Y13788D01* X30873Y13779D01* X30898Y13768D01* X30904Y13765D01* Y13234D01* X30902Y13233D01* X30878Y13222D01* X30852Y13213D01* X30844Y13209D01* X30837Y13205D01* X30830Y13199D01* X30825Y13192D01* X30821Y13184D01* X30818Y13176D01* X30817Y13167D01* X30817Y13159D01* X30819Y13150D01* X30822Y13142D01* X30827Y13135D01* X30833Y13128D01* X30840Y13123D01* X30847Y13119D01* X30856Y13116D01* X30864Y13115D01* X30873Y13115D01* X30881Y13117D01* X30904Y13125D01* Y11881D01* X30895Y11884D01* X30886Y11886D01* X30877Y11886D01* X30869Y11885D01* X30861Y11882D01* X30853Y11878D01* X30846Y11872D01* X30840Y11865D01* X30836Y11858D01* X30833Y11850D01* X30831Y11841D01* X30831Y11833D01* X30832Y11824D01* X30835Y11816D01* X30839Y11808D01* X30845Y11801D01* X30852Y11796D01* X30859Y11791D01* X30867Y11788D01* X30893Y11779D01* X30904Y11774D01* Y11225D01* X30898Y11222D01* X30872Y11213D01* X30864Y11209D01* X30857Y11205D01* X30850Y11199D01* X30845Y11192D01* X30841Y11184D01* X30838Y11176D01* X30837Y11167D01* X30837Y11159D01* X30839Y11150D01* X30842Y11142D01* X30847Y11135D01* X30853Y11128D01* X30860Y11123D01* X30867Y11119D01* X30876Y11116D01* X30884Y11115D01* X30893Y11115D01* X30901Y11117D01* X30904Y11118D01* Y9886D01* X30897Y9886D01* X30889Y9885D01* X30881Y9882D01* X30873Y9878D01* X30866Y9872D01* X30860Y9865D01* X30856Y9858D01* X30853Y9850D01* X30851Y9841D01* X30851Y9833D01* X30852Y9824D01* X30855Y9816D01* X30859Y9808D01* X30865Y9801D01* X30872Y9796D01* X30879Y9791D01* X30887Y9788D01* X30904Y9782D01* Y9217D01* X30892Y9213D01* X30884Y9209D01* X30877Y9205D01* X30870Y9199D01* X30865Y9192D01* X30861Y9184D01* X30858Y9176D01* X30857Y9167D01* X30857Y9159D01* X30859Y9150D01* X30862Y9142D01* X30867Y9135D01* X30873Y9128D01* X30880Y9123D01* X30887Y9119D01* X30896Y9116D01* X30904Y9115D01* Y7883D01* X30901Y7882D01* X30893Y7878D01* X30886Y7872D01* X30880Y7865D01* X30876Y7858D01* X30873Y7850D01* X30871Y7841D01* X30871Y7833D01* X30872Y7824D01* X30875Y7816D01* X30879Y7808D01* X30885Y7801D01* X30892Y7796D01* X30899Y7791D01* X30904Y7789D01* Y7209D01* X30897Y7205D01* X30890Y7199D01* X30885Y7192D01* X30881Y7184D01* X30878Y7176D01* X30877Y7167D01* X30877Y7159D01* X30879Y7150D01* X30882Y7142D01* X30887Y7135D01* X30893Y7128D01* X30900Y7123D01* X30904Y7121D01* Y5870D01* X30900Y5865D01* X30896Y5858D01* X30893Y5850D01* X30891Y5841D01* X30891Y5833D01* X30892Y5824D01* X30895Y5816D01* X30899Y5808D01* X30904Y5802D01* Y5190D01* X30901Y5184D01* X30898Y5176D01* X30897Y5167D01* X30897Y5159D01* X30899Y5150D01* X30902Y5142D01* X30904Y5140D01* Y0D01* G37* G36* Y23319D02*X30888Y23299D01* X30869Y23280D01* X30848Y23262D01* X30826Y23247D01* X30802Y23233D01* X30778Y23222D01* X30752Y23213D01* X30744Y23209D01* X30737Y23205D01* X30730Y23199D01* X30725Y23192D01* X30724Y23190D01* Y23802D01* X30725Y23801D01* X30732Y23796D01* X30739Y23791D01* X30747Y23788D01* X30773Y23779D01* X30798Y23768D01* X30821Y23755D01* X30844Y23740D01* X30865Y23723D01* X30884Y23704D01* X30902Y23683D01* X30904Y23680D01* Y23319D01* G37* G36* Y23820D02*X30904Y23820D01* X30874Y23840D01* X30842Y23858D01* X30809Y23873D01* X30775Y23884D01* X30766Y23886D01* X30757Y23886D01* X30749Y23885D01* X30741Y23882D01* X30733Y23878D01* X30726Y23872D01* X30724Y23870D01* Y25121D01* X30727Y25119D01* X30736Y25116D01* X30744Y25115D01* X30753Y25115D01* X30761Y25117D01* X30796Y25129D01* X30828Y25144D01* X30860Y25162D01* X30889Y25183D01* X30904Y25196D01* Y23820D01* G37* G36* Y25350D02*X30900Y25343D01* X30885Y25320D01* X30868Y25299D01* X30849Y25280D01* X30828Y25262D01* X30806Y25247D01* X30782Y25233D01* X30758Y25222D01* X30732Y25213D01* X30724Y25209D01* X30724Y25209D01* Y25789D01* X30727Y25788D01* X30753Y25779D01* X30778Y25768D01* X30801Y25755D01* X30824Y25740D01* X30845Y25723D01* X30864Y25704D01* X30882Y25683D01* X30897Y25661D01* X30904Y25650D01* Y25350D01* G37* G36* Y25804D02*X30884Y25820D01* X30854Y25840D01* X30822Y25858D01* X30789Y25873D01* X30755Y25884D01* X30746Y25886D01* X30737Y25886D01* X30729Y25885D01* X30724Y25883D01* Y27115D01* X30724D01* X30733Y27115D01* X30741Y27117D01* X30776Y27129D01* X30808Y27144D01* X30840Y27162D01* X30869Y27183D01* X30897Y27207D01* X30904Y27214D01* Y25804D01* G37* G36* Y27391D02*X30893Y27366D01* X30880Y27343D01* X30865Y27320D01* X30848Y27299D01* X30829Y27280D01* X30808Y27262D01* X30786Y27247D01* X30762Y27233D01* X30738Y27222D01* X30724Y27217D01* Y27782D01* X30733Y27779D01* X30758Y27768D01* X30781Y27755D01* X30804Y27740D01* X30825Y27723D01* X30844Y27704D01* X30862Y27683D01* X30877Y27661D01* X30891Y27637D01* X30902Y27613D01* X30904Y27608D01* Y27391D01* G37* G36* Y27785D02*X30892Y27797D01* X30864Y27820D01* X30834Y27840D01* X30802Y27858D01* X30769Y27873D01* X30735Y27884D01* X30726Y27886D01* X30724D01* Y29118D01* X30756Y29129D01* X30788Y29144D01* X30820Y29162D01* X30849Y29183D01* X30877Y29207D01* X30902Y29232D01* X30904Y29235D01* Y27785D01* G37* G36* Y29437D02*X30900Y29433D01* X30896Y29425D01* X30893Y29417D01* X30884Y29391D01* X30873Y29366D01* X30860Y29343D01* X30845Y29320D01* X30828Y29299D01* X30809Y29280D01* X30788Y29262D01* X30766Y29247D01* X30742Y29233D01* X30724Y29225D01* Y29774D01* X30738Y29768D01* X30761Y29755D01* X30784Y29740D01* X30805Y29723D01* X30824Y29704D01* X30842Y29683D01* X30857Y29661D01* X30871Y29637D01* X30882Y29613D01* X30891Y29587D01* X30895Y29579D01* X30899Y29572D01* X30904Y29567D01* Y29437D01* G37* G36* Y29764D02*X30897Y29772D01* X30872Y29797D01* X30844Y29820D01* X30814Y29840D01* X30782Y29858D01* X30749Y29873D01* X30724Y29881D01* Y31125D01* X30736Y31129D01* X30768Y31144D01* X30800Y31162D01* X30829Y31183D01* X30857Y31207D01* X30882Y31232D01* X30904Y31259D01* Y29764D01* G37* G36* Y31450D02*X30901Y31449D01* X30893Y31445D01* X30886Y31439D01* X30880Y31433D01* X30876Y31425D01* X30873Y31417D01* X30864Y31391D01* X30853Y31366D01* X30840Y31343D01* X30825Y31320D01* X30808Y31299D01* X30789Y31280D01* X30768Y31262D01* X30746Y31247D01* X30724Y31234D01* Y31765D01* X30741Y31755D01* X30764Y31740D01* X30785Y31723D01* X30804Y31704D01* X30822Y31683D01* X30837Y31661D01* X30851Y31637D01* X30862Y31613D01* X30871Y31587D01* X30875Y31579D01* X30879Y31572D01* X30885Y31565D01* X30892Y31560D01* X30900Y31556D01* X30904Y31555D01* Y31450D01* G37* G36* Y31740D02*X30901Y31744D01* X30877Y31772D01* X30852Y31797D01* X30824Y31820D01* X30794Y31840D01* X30762Y31858D01* X30729Y31873D01* X30724Y31874D01* Y33133D01* X30748Y33144D01* X30780Y33162D01* X30809Y33183D01* X30837Y33207D01* X30862Y33232D01* X30885Y33260D01* X30904Y33288D01* Y31740D01* G37* G36* Y33453D02*X30897Y33453D01* X30889Y33452D01* X30881Y33449D01* X30873Y33445D01* X30866Y33439D01* X30860Y33433D01* X30856Y33425D01* X30853Y33417D01* X30844Y33391D01* X30833Y33366D01* X30820Y33343D01* X30805Y33320D01* X30788Y33299D01* X30769Y33280D01* X30748Y33262D01* X30726Y33247D01* X30724Y33246D01* Y33754D01* X30744Y33740D01* X30765Y33723D01* X30784Y33704D01* X30802Y33683D01* X30817Y33661D01* X30831Y33637D01* X30842Y33613D01* X30851Y33587D01* X30855Y33579D01* X30859Y33572D01* X30865Y33565D01* X30872Y33560D01* X30880Y33556D01* X30888Y33553D01* X30897Y33552D01* X30904Y33552D01* Y33453D01* G37* G36* Y33711D02*X30902Y33715D01* X30881Y33744D01* X30857Y33772D01* X30832Y33797D01* X30804Y33820D01* X30774Y33840D01* X30742Y33858D01* X30724Y33866D01* Y35142D01* X30728Y35144D01* X30760Y35162D01* X30789Y35183D01* X30817Y35207D01* X30842Y35232D01* X30865Y35260D01* X30885Y35290D01* X30903Y35322D01* X30904Y35324D01* Y33711D01* G37* G36* Y35447D02*X30903Y35448D01* X30895Y35451D01* X30886Y35453D01* X30877Y35453D01* X30869Y35452D01* X30861Y35449D01* X30853Y35445D01* X30846Y35439D01* X30840Y35433D01* X30836Y35425D01* X30833Y35417D01* X30824Y35391D01* X30813Y35366D01* X30800Y35343D01* X30785Y35320D01* X30768Y35299D01* X30749Y35280D01* X30728Y35262D01* X30724Y35259D01* Y35740D01* X30745Y35723D01* X30764Y35704D01* X30782Y35683D01* X30797Y35661D01* X30811Y35637D01* X30822Y35613D01* X30831Y35587D01* X30835Y35579D01* X30839Y35572D01* X30845Y35565D01* X30852Y35560D01* X30860Y35556D01* X30868Y35553D01* X30877Y35552D01* X30885Y35552D01* X30894Y35554D01* X30902Y35557D01* X30904Y35559D01* Y35447D01* G37* G36* Y35674D02*X30900Y35683D01* X30882Y35715D01* X30861Y35744D01* X30837Y35772D01* X30812Y35797D01* X30784Y35820D01* X30754Y35840D01* X30724Y35857D01* Y37153D01* X30740Y37162D01* X30769Y37183D01* X30797Y37207D01* X30822Y37232D01* X30845Y37260D01* X30865Y37290D01* X30883Y37322D01* X30897Y37355D01* X30904Y37374D01* Y35674D01* G37* G36* Y37428D02*X30902Y37431D01* X30897Y37438D01* X30890Y37444D01* X30883Y37448D01* X30875Y37451D01* X30866Y37453D01* X30857Y37453D01* X30849Y37452D01* X30841Y37449D01* X30833Y37445D01* X30826Y37439D01* X30820Y37433D01* X30816Y37425D01* X30813Y37417D01* X30804Y37391D01* X30793Y37366D01* X30780Y37343D01* X30765Y37320D01* X30748Y37299D01* X30729Y37280D01* X30724Y37276D01* Y37724D01* X30725Y37723D01* X30744Y37704D01* X30762Y37683D01* X30777Y37661D01* X30791Y37637D01* X30802Y37613D01* X30811Y37587D01* X30815Y37579D01* X30819Y37572D01* X30825Y37565D01* X30832Y37560D01* X30840Y37556D01* X30848Y37553D01* X30857Y37552D01* X30865Y37552D01* X30874Y37554D01* X30882Y37557D01* X30889Y37562D01* X30896Y37568D01* X30901Y37575D01* X30904Y37580D01* Y37428D01* G37* G36* Y40000D02*X31084D01* Y19625D01* X31075Y19651D01* X31060Y19683D01* X31042Y19715D01* X31021Y19744D01* X30997Y19772D01* X30972Y19797D01* X30944Y19820D01* X30914Y19840D01* X30904Y19846D01* Y21165D01* X30929Y21183D01* X30957Y21207D01* X30982Y21232D01* X31005Y21260D01* X31025Y21290D01* X31043Y21322D01* X31057Y21355D01* X31069Y21389D01* X31071Y21398D01* X31071Y21407D01* X31070Y21415D01* X31067Y21423D01* X31062Y21431D01* X31057Y21438D01* X31050Y21444D01* X31043Y21448D01* X31035Y21451D01* X31026Y21453D01* X31017Y21453D01* X31009Y21452D01* X31001Y21449D01* X30993Y21445D01* X30986Y21439D01* X30980Y21433D01* X30976Y21425D01* X30973Y21417D01* X30964Y21391D01* X30953Y21366D01* X30940Y21343D01* X30925Y21320D01* X30908Y21299D01* X30904Y21295D01* Y21704D01* X30904Y21704D01* X30922Y21683D01* X30937Y21661D01* X30951Y21637D01* X30962Y21613D01* X30971Y21587D01* X30975Y21579D01* X30979Y21572D01* X30985Y21565D01* X30992Y21560D01* X31000Y21556D01* X31008Y21553D01* X31017Y21552D01* X31025Y21552D01* X31034Y21554D01* X31042Y21557D01* X31049Y21562D01* X31056Y21568D01* X31061Y21575D01* X31065Y21582D01* X31068Y21591D01* X31069Y21599D01* X31069Y21608D01* X31067Y21617D01* X31055Y21651D01* X31040Y21683D01* X31022Y21715D01* X31001Y21744D01* X30977Y21772D01* X30952Y21797D01* X30924Y21820D01* X30904Y21834D01* Y23180D01* X30909Y23183D01* X30937Y23207D01* X30962Y23232D01* X30985Y23260D01* X31005Y23290D01* X31023Y23322D01* X31037Y23355D01* X31049Y23389D01* X31051Y23398D01* X31051Y23407D01* X31050Y23415D01* X31047Y23423D01* X31042Y23431D01* X31037Y23438D01* X31030Y23444D01* X31023Y23448D01* X31015Y23451D01* X31006Y23453D01* X30997Y23453D01* X30989Y23452D01* X30981Y23449D01* X30973Y23445D01* X30966Y23439D01* X30960Y23433D01* X30956Y23425D01* X30953Y23417D01* X30944Y23391D01* X30933Y23366D01* X30920Y23343D01* X30905Y23320D01* X30904Y23319D01* Y23680D01* X30917Y23661D01* X30931Y23637D01* X30942Y23613D01* X30951Y23587D01* X30955Y23579D01* X30959Y23572D01* X30965Y23565D01* X30972Y23560D01* X30980Y23556D01* X30988Y23553D01* X30997Y23552D01* X31005Y23552D01* X31014Y23554D01* X31022Y23557D01* X31029Y23562D01* X31036Y23568D01* X31041Y23575D01* X31045Y23582D01* X31048Y23591D01* X31049Y23599D01* X31049Y23608D01* X31047Y23617D01* X31035Y23651D01* X31020Y23683D01* X31002Y23715D01* X30981Y23744D01* X30957Y23772D01* X30932Y23797D01* X30904Y23820D01* Y25196D01* X30917Y25207D01* X30942Y25232D01* X30965Y25260D01* X30985Y25290D01* X31003Y25322D01* X31017Y25355D01* X31029Y25389D01* X31031Y25398D01* X31031Y25407D01* X31030Y25415D01* X31027Y25423D01* X31022Y25431D01* X31017Y25438D01* X31010Y25444D01* X31003Y25448D01* X30995Y25451D01* X30986Y25453D01* X30977Y25453D01* X30969Y25452D01* X30961Y25449D01* X30953Y25445D01* X30946Y25439D01* X30940Y25433D01* X30936Y25425D01* X30933Y25417D01* X30924Y25391D01* X30913Y25366D01* X30904Y25350D01* Y25650D01* X30911Y25637D01* X30922Y25613D01* X30931Y25587D01* X30935Y25579D01* X30939Y25572D01* X30945Y25565D01* X30952Y25560D01* X30960Y25556D01* X30968Y25553D01* X30977Y25552D01* X30985Y25552D01* X30994Y25554D01* X31002Y25557D01* X31009Y25562D01* X31016Y25568D01* X31021Y25575D01* X31025Y25582D01* X31028Y25591D01* X31029Y25599D01* X31029Y25608D01* X31027Y25617D01* X31015Y25651D01* X31000Y25683D01* X30982Y25715D01* X30961Y25744D01* X30937Y25772D01* X30912Y25797D01* X30904Y25804D01* Y27214D01* X30922Y27232D01* X30945Y27260D01* X30965Y27290D01* X30983Y27322D01* X30997Y27355D01* X31009Y27389D01* X31011Y27398D01* X31011Y27407D01* X31010Y27415D01* X31007Y27423D01* X31002Y27431D01* X30997Y27438D01* X30990Y27444D01* X30983Y27448D01* X30975Y27451D01* X30966Y27453D01* X30957Y27453D01* X30949Y27452D01* X30941Y27449D01* X30933Y27445D01* X30926Y27439D01* X30920Y27433D01* X30916Y27425D01* X30913Y27417D01* X30904Y27391D01* X30904Y27391D01* Y27608D01* X30911Y27587D01* X30915Y27579D01* X30919Y27572D01* X30925Y27565D01* X30932Y27560D01* X30940Y27556D01* X30948Y27553D01* X30957Y27552D01* X30965Y27552D01* X30974Y27554D01* X30982Y27557D01* X30989Y27562D01* X30996Y27568D01* X31001Y27575D01* X31005Y27582D01* X31008Y27591D01* X31009Y27599D01* X31009Y27608D01* X31007Y27617D01* X30995Y27651D01* X30980Y27683D01* X30962Y27715D01* X30941Y27744D01* X30917Y27772D01* X30904Y27785D01* Y29235D01* X30925Y29260D01* X30945Y29290D01* X30963Y29322D01* X30977Y29355D01* X30989Y29389D01* X30991Y29398D01* X30991Y29407D01* X30990Y29415D01* X30987Y29423D01* X30982Y29431D01* X30977Y29438D01* X30970Y29444D01* X30963Y29448D01* X30955Y29451D01* X30946Y29453D01* X30937Y29453D01* X30929Y29452D01* X30921Y29449D01* X30913Y29445D01* X30906Y29439D01* X30904Y29437D01* Y29567D01* X30905Y29565D01* X30912Y29560D01* X30920Y29556D01* X30928Y29553D01* X30937Y29552D01* X30945Y29552D01* X30954Y29554D01* X30962Y29557D01* X30969Y29562D01* X30976Y29568D01* X30981Y29575D01* X30985Y29582D01* X30988Y29591D01* X30989Y29599D01* X30989Y29608D01* X30987Y29617D01* X30975Y29651D01* X30960Y29683D01* X30942Y29715D01* X30921Y29744D01* X30904Y29764D01* Y31259D01* X30905Y31260D01* X30925Y31290D01* X30943Y31322D01* X30957Y31355D01* X30969Y31389D01* X30971Y31398D01* X30971Y31407D01* X30970Y31415D01* X30967Y31423D01* X30962Y31431D01* X30957Y31438D01* X30950Y31444D01* X30943Y31448D01* X30935Y31451D01* X30926Y31453D01* X30917Y31453D01* X30909Y31452D01* X30904Y31450D01* Y31555D01* X30908Y31553D01* X30917Y31552D01* X30925Y31552D01* X30934Y31554D01* X30942Y31557D01* X30949Y31562D01* X30956Y31568D01* X30961Y31575D01* X30965Y31582D01* X30968Y31591D01* X30969Y31599D01* X30969Y31608D01* X30967Y31617D01* X30955Y31651D01* X30940Y31683D01* X30922Y31715D01* X30904Y31740D01* Y33288D01* X30905Y33290D01* X30923Y33322D01* X30937Y33355D01* X30949Y33389D01* X30951Y33398D01* X30951Y33407D01* X30950Y33415D01* X30947Y33423D01* X30942Y33431D01* X30937Y33438D01* X30930Y33444D01* X30923Y33448D01* X30915Y33451D01* X30906Y33453D01* X30904D01* Y33552D01* X30905D01* X30914Y33554D01* X30922Y33557D01* X30929Y33562D01* X30936Y33568D01* X30941Y33575D01* X30945Y33582D01* X30948Y33591D01* X30949Y33599D01* X30949Y33608D01* X30947Y33617D01* X30935Y33651D01* X30920Y33683D01* X30904Y33711D01* Y35324D01* X30917Y35355D01* X30929Y35389D01* X30931Y35398D01* X30931Y35407D01* X30930Y35415D01* X30927Y35423D01* X30922Y35431D01* X30917Y35438D01* X30910Y35444D01* X30904Y35447D01* Y35559D01* X30909Y35562D01* X30916Y35568D01* X30921Y35575D01* X30925Y35582D01* X30928Y35591D01* X30929Y35599D01* X30929Y35608D01* X30927Y35617D01* X30915Y35651D01* X30904Y35674D01* Y37374D01* X30909Y37389D01* X30911Y37398D01* X30911Y37407D01* X30910Y37415D01* X30907Y37423D01* X30904Y37428D01* Y37580D01* X30905Y37582D01* X30908Y37591D01* X30909Y37599D01* X30909Y37608D01* X30907Y37617D01* X30904Y37625D01* Y40000D01* G37* G36* X31084Y0D02*X30904D01* Y5140D01* X30907Y5135D01* X30913Y5128D01* X30920Y5123D01* X30927Y5119D01* X30936Y5116D01* X30944Y5115D01* X30953Y5115D01* X30961Y5117D01* X30996Y5129D01* X31028Y5144D01* X31060Y5162D01* X31084Y5180D01* Y3834D01* X31074Y3840D01* X31042Y3858D01* X31009Y3873D01* X30975Y3884D01* X30966Y3886D01* X30957Y3886D01* X30949Y3885D01* X30941Y3882D01* X30933Y3878D01* X30926Y3872D01* X30920Y3865D01* X30916Y3858D01* X30913Y3850D01* X30911Y3841D01* X30911Y3833D01* X30912Y3824D01* X30915Y3816D01* X30919Y3808D01* X30925Y3801D01* X30932Y3796D01* X30939Y3791D01* X30947Y3788D01* X30973Y3779D01* X30998Y3768D01* X31021Y3755D01* X31044Y3740D01* X31065Y3723D01* X31084Y3704D01* Y3295D01* X31069Y3280D01* X31048Y3262D01* X31026Y3247D01* X31002Y3233D01* X30978Y3222D01* X30952Y3213D01* X30944Y3209D01* X30937Y3205D01* X30930Y3199D01* X30925Y3192D01* X30921Y3184D01* X30918Y3176D01* X30917Y3167D01* X30917Y3159D01* X30919Y3150D01* X30922Y3142D01* X30927Y3135D01* X30933Y3128D01* X30940Y3123D01* X30947Y3119D01* X30956Y3116D01* X30964Y3115D01* X30973Y3115D01* X30981Y3117D01* X31016Y3129D01* X31048Y3144D01* X31080Y3162D01* X31084Y3165D01* Y1846D01* X31062Y1858D01* X31029Y1873D01* X30995Y1884D01* X30986Y1886D01* X30977Y1886D01* X30969Y1885D01* X30961Y1882D01* X30953Y1878D01* X30946Y1872D01* X30940Y1865D01* X30936Y1858D01* X30933Y1850D01* X30931Y1841D01* X30931Y1833D01* X30932Y1824D01* X30935Y1816D01* X30939Y1808D01* X30945Y1801D01* X30952Y1796D01* X30959Y1791D01* X30967Y1788D01* X30993Y1779D01* X31018Y1768D01* X31041Y1755D01* X31064Y1740D01* X31084Y1724D01* Y1276D01* X31068Y1262D01* X31046Y1247D01* X31022Y1233D01* X30998Y1222D01* X30972Y1213D01* X30964Y1209D01* X30957Y1205D01* X30950Y1199D01* X30945Y1192D01* X30941Y1184D01* X30938Y1176D01* X30937Y1167D01* X30937Y1159D01* X30939Y1150D01* X30942Y1142D01* X30947Y1135D01* X30953Y1128D01* X30960Y1123D01* X30967Y1119D01* X30976Y1116D01* X30984Y1115D01* X30993Y1115D01* X31001Y1117D01* X31036Y1129D01* X31068Y1144D01* X31084Y1153D01* Y0D01* G37* G36* Y5319D02*X31068Y5299D01* X31049Y5280D01* X31028Y5262D01* X31006Y5247D01* X30982Y5233D01* X30958Y5222D01* X30932Y5213D01* X30924Y5209D01* X30917Y5205D01* X30910Y5199D01* X30905Y5192D01* X30904Y5190D01* Y5802D01* X30905Y5801D01* X30912Y5796D01* X30919Y5791D01* X30927Y5788D01* X30953Y5779D01* X30978Y5768D01* X31001Y5755D01* X31024Y5740D01* X31045Y5723D01* X31064Y5704D01* X31082Y5683D01* X31084Y5680D01* Y5319D01* G37* G36* Y5820D02*X31084Y5820D01* X31054Y5840D01* X31022Y5858D01* X30989Y5873D01* X30955Y5884D01* X30946Y5886D01* X30937Y5886D01* X30929Y5885D01* X30921Y5882D01* X30913Y5878D01* X30906Y5872D01* X30904Y5870D01* Y7121D01* X30907Y7119D01* X30916Y7116D01* X30924Y7115D01* X30933Y7115D01* X30941Y7117D01* X30976Y7129D01* X31008Y7144D01* X31040Y7162D01* X31069Y7183D01* X31084Y7196D01* Y5820D01* G37* G36* Y7350D02*X31080Y7343D01* X31065Y7320D01* X31048Y7299D01* X31029Y7280D01* X31008Y7262D01* X30986Y7247D01* X30962Y7233D01* X30938Y7222D01* X30912Y7213D01* X30904Y7209D01* X30904Y7209D01* Y7789D01* X30907Y7788D01* X30933Y7779D01* X30958Y7768D01* X30981Y7755D01* X31004Y7740D01* X31025Y7723D01* X31044Y7704D01* X31062Y7683D01* X31077Y7661D01* X31084Y7650D01* Y7350D01* G37* G36* Y7804D02*X31064Y7820D01* X31034Y7840D01* X31002Y7858D01* X30969Y7873D01* X30935Y7884D01* X30926Y7886D01* X30917Y7886D01* X30909Y7885D01* X30904Y7883D01* Y9115D01* X30904D01* X30913Y9115D01* X30921Y9117D01* X30956Y9129D01* X30988Y9144D01* X31020Y9162D01* X31049Y9183D01* X31077Y9207D01* X31084Y9214D01* Y7804D01* G37* G36* Y9391D02*X31073Y9366D01* X31060Y9343D01* X31045Y9320D01* X31028Y9299D01* X31009Y9280D01* X30988Y9262D01* X30966Y9247D01* X30942Y9233D01* X30918Y9222D01* X30904Y9217D01* Y9782D01* X30913Y9779D01* X30938Y9768D01* X30961Y9755D01* X30984Y9740D01* X31005Y9723D01* X31024Y9704D01* X31042Y9683D01* X31057Y9661D01* X31071Y9637D01* X31082Y9613D01* X31084Y9608D01* Y9391D01* G37* G36* Y9785D02*X31072Y9797D01* X31044Y9820D01* X31014Y9840D01* X30982Y9858D01* X30949Y9873D01* X30915Y9884D01* X30906Y9886D01* X30904D01* Y11118D01* X30936Y11129D01* X30968Y11144D01* X31000Y11162D01* X31029Y11183D01* X31057Y11207D01* X31082Y11232D01* X31084Y11235D01* Y9785D01* G37* G36* Y11437D02*X31080Y11433D01* X31076Y11425D01* X31073Y11417D01* X31064Y11391D01* X31053Y11366D01* X31040Y11343D01* X31025Y11320D01* X31008Y11299D01* X30989Y11280D01* X30968Y11262D01* X30946Y11247D01* X30922Y11233D01* X30904Y11225D01* Y11774D01* X30918Y11768D01* X30941Y11755D01* X30964Y11740D01* X30985Y11723D01* X31004Y11704D01* X31022Y11683D01* X31037Y11661D01* X31051Y11637D01* X31062Y11613D01* X31071Y11587D01* X31075Y11579D01* X31079Y11572D01* X31084Y11567D01* Y11437D01* G37* G36* Y11764D02*X31077Y11772D01* X31052Y11797D01* X31024Y11820D01* X30994Y11840D01* X30962Y11858D01* X30929Y11873D01* X30904Y11881D01* Y13125D01* X30916Y13129D01* X30948Y13144D01* X30980Y13162D01* X31009Y13183D01* X31037Y13207D01* X31062Y13232D01* X31084Y13259D01* Y11764D01* G37* G36* Y13450D02*X31081Y13449D01* X31073Y13445D01* X31066Y13439D01* X31060Y13433D01* X31056Y13425D01* X31053Y13417D01* X31044Y13391D01* X31033Y13366D01* X31020Y13343D01* X31005Y13320D01* X30988Y13299D01* X30969Y13280D01* X30948Y13262D01* X30926Y13247D01* X30904Y13234D01* Y13765D01* X30921Y13755D01* X30944Y13740D01* X30965Y13723D01* X30984Y13704D01* X31002Y13683D01* X31017Y13661D01* X31031Y13637D01* X31042Y13613D01* X31051Y13587D01* X31055Y13579D01* X31059Y13572D01* X31065Y13565D01* X31072Y13560D01* X31080Y13556D01* X31084Y13555D01* Y13450D01* G37* G36* Y13740D02*X31081Y13744D01* X31057Y13772D01* X31032Y13797D01* X31004Y13820D01* X30974Y13840D01* X30942Y13858D01* X30909Y13873D01* X30904Y13874D01* Y15133D01* X30928Y15144D01* X30960Y15162D01* X30989Y15183D01* X31017Y15207D01* X31042Y15232D01* X31065Y15260D01* X31084Y15288D01* Y13740D01* G37* G36* Y15453D02*X31077Y15453D01* X31069Y15452D01* X31061Y15449D01* X31053Y15445D01* X31046Y15439D01* X31040Y15433D01* X31036Y15425D01* X31033Y15417D01* X31024Y15391D01* X31013Y15366D01* X31000Y15343D01* X30985Y15320D01* X30968Y15299D01* X30949Y15280D01* X30928Y15262D01* X30906Y15247D01* X30904Y15246D01* Y15754D01* X30924Y15740D01* X30945Y15723D01* X30964Y15704D01* X30982Y15683D01* X30997Y15661D01* X31011Y15637D01* X31022Y15613D01* X31031Y15587D01* X31035Y15579D01* X31039Y15572D01* X31045Y15565D01* X31052Y15560D01* X31060Y15556D01* X31068Y15553D01* X31077Y15552D01* X31084Y15552D01* Y15453D01* G37* G36* Y15711D02*X31082Y15715D01* X31061Y15744D01* X31037Y15772D01* X31012Y15797D01* X30984Y15820D01* X30954Y15840D01* X30922Y15858D01* X30904Y15866D01* Y17142D01* X30908Y17144D01* X30940Y17162D01* X30969Y17183D01* X30997Y17207D01* X31022Y17232D01* X31045Y17260D01* X31065Y17290D01* X31083Y17322D01* X31084Y17324D01* Y15711D01* G37* G36* Y17447D02*X31083Y17448D01* X31075Y17451D01* X31066Y17453D01* X31057Y17453D01* X31049Y17452D01* X31041Y17449D01* X31033Y17445D01* X31026Y17439D01* X31020Y17433D01* X31016Y17425D01* X31013Y17417D01* X31004Y17391D01* X30993Y17366D01* X30980Y17343D01* X30965Y17320D01* X30948Y17299D01* X30929Y17280D01* X30908Y17262D01* X30904Y17259D01* Y17740D01* X30925Y17723D01* X30944Y17704D01* X30962Y17683D01* X30977Y17661D01* X30991Y17637D01* X31002Y17613D01* X31011Y17587D01* X31015Y17579D01* X31019Y17572D01* X31025Y17565D01* X31032Y17560D01* X31040Y17556D01* X31048Y17553D01* X31057Y17552D01* X31065Y17552D01* X31074Y17554D01* X31082Y17557D01* X31084Y17559D01* Y17447D01* G37* G36* Y17674D02*X31080Y17683D01* X31062Y17715D01* X31041Y17744D01* X31017Y17772D01* X30992Y17797D01* X30964Y17820D01* X30934Y17840D01* X30904Y17857D01* Y19153D01* X30920Y19162D01* X30949Y19183D01* X30977Y19207D01* X31002Y19232D01* X31025Y19260D01* X31045Y19290D01* X31063Y19322D01* X31077Y19355D01* X31084Y19374D01* Y17674D01* G37* G36* Y19428D02*X31082Y19431D01* X31077Y19438D01* X31070Y19444D01* X31063Y19448D01* X31055Y19451D01* X31046Y19453D01* X31037Y19453D01* X31029Y19452D01* X31021Y19449D01* X31013Y19445D01* X31006Y19439D01* X31000Y19433D01* X30996Y19425D01* X30993Y19417D01* X30984Y19391D01* X30973Y19366D01* X30960Y19343D01* X30945Y19320D01* X30928Y19299D01* X30909Y19280D01* X30904Y19276D01* Y19724D01* X30905Y19723D01* X30924Y19704D01* X30942Y19683D01* X30957Y19661D01* X30971Y19637D01* X30982Y19613D01* X30991Y19587D01* X30995Y19579D01* X30999Y19572D01* X31005Y19565D01* X31012Y19560D01* X31020Y19556D01* X31028Y19553D01* X31037Y19552D01* X31045Y19552D01* X31054Y19554D01* X31062Y19557D01* X31069Y19562D01* X31076Y19568D01* X31081Y19575D01* X31084Y19580D01* Y19428D01* G37* G36* Y40000D02*X32285D01* Y39834D01* X32260Y39816D01* X32232Y39793D01* X32207Y39767D01* X32184Y39739D01* X32164Y39709D01* X32146Y39677D01* X32132Y39644D01* X32120Y39610D01* X32118Y39601D01* X32118Y39593D01* X32119Y39584D01* X32122Y39576D01* X32127Y39568D01* X32132Y39561D01* X32139Y39556D01* X32146Y39551D01* X32154Y39548D01* X32163Y39546D01* X32172Y39546D01* X32180Y39547D01* X32188Y39550D01* X32196Y39555D01* X32203Y39560D01* X32209Y39567D01* X32213Y39574D01* X32216Y39582D01* X32225Y39608D01* X32236Y39633D01* X32249Y39657D01* X32264Y39679D01* X32281Y39700D01* X32285Y39704D01* Y39295D01* X32285Y39295D01* X32267Y39316D01* X32252Y39338D01* X32238Y39362D01* X32227Y39386D01* X32218Y39412D01* X32214Y39420D01* X32210Y39427D01* X32204Y39434D01* X32197Y39439D01* X32189Y39443D01* X32181Y39446D01* X32172Y39447D01* X32164Y39447D01* X32155Y39445D01* X32147Y39442D01* X32140Y39437D01* X32133Y39431D01* X32128Y39424D01* X32124Y39417D01* X32121Y39409D01* X32120Y39400D01* X32120Y39391D01* X32122Y39383D01* X32134Y39349D01* X32149Y39316D01* X32167Y39284D01* X32188Y39255D01* X32212Y39227D01* X32237Y39202D01* X32265Y39179D01* X32285Y39166D01* Y37820D01* X32280Y37816D01* X32252Y37793D01* X32227Y37767D01* X32204Y37739D01* X32184Y37709D01* X32166Y37677D01* X32152Y37644D01* X32140Y37610D01* X32138Y37601D01* X32138Y37593D01* X32139Y37584D01* X32142Y37576D01* X32147Y37568D01* X32152Y37561D01* X32159Y37556D01* X32166Y37551D01* X32174Y37548D01* X32183Y37546D01* X32192Y37546D01* X32200Y37547D01* X32208Y37550D01* X32216Y37555D01* X32223Y37560D01* X32229Y37567D01* X32233Y37574D01* X32236Y37582D01* X32245Y37608D01* X32256Y37633D01* X32269Y37657D01* X32284Y37679D01* X32285Y37680D01* Y37319D01* X32272Y37338D01* X32258Y37362D01* X32247Y37386D01* X32238Y37412D01* X32234Y37420D01* X32230Y37427D01* X32224Y37434D01* X32217Y37439D01* X32209Y37443D01* X32201Y37446D01* X32192Y37447D01* X32184Y37447D01* X32175Y37445D01* X32167Y37442D01* X32160Y37437D01* X32153Y37431D01* X32148Y37424D01* X32144Y37417D01* X32141Y37409D01* X32140Y37400D01* X32140Y37391D01* X32142Y37383D01* X32154Y37349D01* X32169Y37316D01* X32187Y37284D01* X32208Y37255D01* X32232Y37227D01* X32257Y37202D01* X32285Y37179D01* Y35804D01* X32272Y35793D01* X32247Y35767D01* X32224Y35739D01* X32204Y35709D01* X32186Y35677D01* X32172Y35644D01* X32160Y35610D01* X32158Y35601D01* X32158Y35593D01* X32159Y35584D01* X32162Y35576D01* X32167Y35568D01* X32172Y35561D01* X32179Y35556D01* X32186Y35551D01* X32194Y35548D01* X32203Y35546D01* X32212Y35546D01* X32220Y35547D01* X32228Y35550D01* X32236Y35555D01* X32243Y35560D01* X32249Y35567D01* X32253Y35574D01* X32256Y35582D01* X32265Y35608D01* X32276Y35633D01* X32285Y35650D01* Y35349D01* X32278Y35362D01* X32267Y35386D01* X32258Y35412D01* X32254Y35420D01* X32250Y35427D01* X32244Y35434D01* X32237Y35439D01* X32229Y35443D01* X32221Y35446D01* X32212Y35447D01* X32204Y35447D01* X32195Y35445D01* X32187Y35442D01* X32180Y35437D01* X32173Y35431D01* X32168Y35424D01* X32164Y35417D01* X32161Y35409D01* X32160Y35400D01* X32160Y35391D01* X32162Y35383D01* X32174Y35349D01* X32189Y35316D01* X32207Y35284D01* X32228Y35255D01* X32252Y35227D01* X32277Y35202D01* X32285Y35196D01* Y33785D01* X32267Y33767D01* X32244Y33739D01* X32224Y33709D01* X32206Y33677D01* X32192Y33644D01* X32180Y33610D01* X32178Y33601D01* X32178Y33593D01* X32179Y33584D01* X32182Y33576D01* X32187Y33568D01* X32192Y33561D01* X32199Y33556D01* X32206Y33551D01* X32214Y33548D01* X32223Y33546D01* X32232Y33546D01* X32240Y33547D01* X32248Y33550D01* X32256Y33555D01* X32263Y33560D01* X32269Y33567D01* X32273Y33574D01* X32276Y33582D01* X32285Y33608D01* X32285Y33609D01* Y33391D01* X32278Y33412D01* X32274Y33420D01* X32270Y33427D01* X32264Y33434D01* X32257Y33439D01* X32249Y33443D01* X32241Y33446D01* X32232Y33447D01* X32224Y33447D01* X32215Y33445D01* X32207Y33442D01* X32200Y33437D01* X32193Y33431D01* X32188Y33424D01* X32184Y33417D01* X32181Y33409D01* X32180Y33400D01* X32180Y33391D01* X32182Y33383D01* X32194Y33349D01* X32209Y33316D01* X32227Y33284D01* X32248Y33255D01* X32272Y33227D01* X32285Y33214D01* Y31765D01* X32264Y31739D01* X32244Y31709D01* X32226Y31677D01* X32212Y31644D01* X32200Y31610D01* X32198Y31601D01* X32198Y31593D01* X32199Y31584D01* X32202Y31576D01* X32207Y31568D01* X32212Y31561D01* X32219Y31556D01* X32226Y31551D01* X32234Y31548D01* X32243Y31546D01* X32252Y31546D01* X32260Y31547D01* X32268Y31550D01* X32276Y31555D01* X32283Y31560D01* X32285Y31563D01* Y31432D01* X32284Y31434D01* X32277Y31439D01* X32269Y31443D01* X32261Y31446D01* X32252Y31447D01* X32244Y31447D01* X32235Y31445D01* X32227Y31442D01* X32220Y31437D01* X32213Y31431D01* X32208Y31424D01* X32204Y31417D01* X32201Y31409D01* X32200Y31400D01* X32200Y31391D01* X32202Y31383D01* X32214Y31349D01* X32229Y31316D01* X32247Y31284D01* X32268Y31255D01* X32285Y31235D01* Y29740D01* X32284Y29739D01* X32264Y29709D01* X32246Y29677D01* X32232Y29644D01* X32220Y29610D01* X32218Y29601D01* X32218Y29593D01* X32219Y29584D01* X32222Y29576D01* X32227Y29568D01* X32232Y29561D01* X32239Y29556D01* X32246Y29551D01* X32254Y29548D01* X32263Y29546D01* X32272Y29546D01* X32280Y29547D01* X32285Y29549D01* Y29445D01* X32281Y29446D01* X32272Y29447D01* X32264Y29447D01* X32255Y29445D01* X32247Y29442D01* X32240Y29437D01* X32233Y29431D01* X32228Y29424D01* X32224Y29417D01* X32221Y29409D01* X32220Y29400D01* X32220Y29391D01* X32222Y29383D01* X32234Y29349D01* X32249Y29316D01* X32267Y29284D01* X32285Y29259D01* Y27711D01* X32284Y27709D01* X32266Y27677D01* X32252Y27644D01* X32240Y27610D01* X32238Y27601D01* X32238Y27593D01* X32239Y27584D01* X32242Y27576D01* X32247Y27568D01* X32252Y27561D01* X32259Y27556D01* X32266Y27551D01* X32274Y27548D01* X32283Y27546D01* X32285D01* Y27447D01* X32284Y27447D01* X32275Y27445D01* X32267Y27442D01* X32260Y27437D01* X32253Y27431D01* X32248Y27424D01* X32244Y27417D01* X32241Y27409D01* X32240Y27400D01* X32240Y27391D01* X32242Y27383D01* X32254Y27349D01* X32269Y27316D01* X32285Y27288D01* Y25675D01* X32272Y25644D01* X32260Y25610D01* X32258Y25601D01* X32258Y25593D01* X32259Y25584D01* X32262Y25576D01* X32267Y25568D01* X32272Y25561D01* X32279Y25556D01* X32285Y25552D01* Y25441D01* X32280Y25437D01* X32273Y25431D01* X32268Y25424D01* X32264Y25417D01* X32261Y25409D01* X32260Y25400D01* X32260Y25391D01* X32262Y25383D01* X32274Y25349D01* X32285Y25325D01* Y23625D01* X32280Y23610D01* X32278Y23601D01* X32278Y23593D01* X32279Y23584D01* X32282Y23576D01* X32285Y23571D01* Y23419D01* X32284Y23417D01* X32281Y23409D01* X32280Y23400D01* X32280Y23391D01* X32282Y23383D01* X32285Y23374D01* Y0D01* X31084D01* Y1153D01* X31100Y1162D01* X31129Y1183D01* X31157Y1207D01* X31182Y1232D01* X31205Y1260D01* X31225Y1290D01* X31243Y1322D01* X31257Y1355D01* X31269Y1389D01* X31271Y1398D01* X31271Y1407D01* X31270Y1415D01* X31267Y1423D01* X31262Y1431D01* X31257Y1438D01* X31250Y1444D01* X31243Y1448D01* X31235Y1451D01* X31226Y1453D01* X31217Y1453D01* X31209Y1452D01* X31201Y1449D01* X31193Y1445D01* X31186Y1439D01* X31180Y1433D01* X31176Y1425D01* X31173Y1417D01* X31164Y1391D01* X31153Y1366D01* X31140Y1343D01* X31125Y1320D01* X31108Y1299D01* X31089Y1280D01* X31084Y1276D01* Y1724D01* X31085Y1723D01* X31104Y1704D01* X31122Y1683D01* X31137Y1661D01* X31151Y1637D01* X31162Y1613D01* X31171Y1587D01* X31175Y1579D01* X31179Y1572D01* X31185Y1565D01* X31192Y1560D01* X31200Y1556D01* X31208Y1553D01* X31217Y1552D01* X31225Y1552D01* X31234Y1554D01* X31242Y1557D01* X31249Y1562D01* X31256Y1568D01* X31261Y1575D01* X31265Y1582D01* X31268Y1591D01* X31269Y1599D01* X31269Y1608D01* X31267Y1617D01* X31255Y1651D01* X31240Y1683D01* X31222Y1715D01* X31201Y1744D01* X31177Y1772D01* X31152Y1797D01* X31124Y1820D01* X31094Y1840D01* X31084Y1846D01* Y3165D01* X31109Y3183D01* X31137Y3207D01* X31162Y3232D01* X31185Y3260D01* X31205Y3290D01* X31223Y3322D01* X31237Y3355D01* X31249Y3389D01* X31251Y3398D01* X31251Y3407D01* X31250Y3415D01* X31247Y3423D01* X31242Y3431D01* X31237Y3438D01* X31230Y3444D01* X31223Y3448D01* X31215Y3451D01* X31206Y3453D01* X31197Y3453D01* X31189Y3452D01* X31181Y3449D01* X31173Y3445D01* X31166Y3439D01* X31160Y3433D01* X31156Y3425D01* X31153Y3417D01* X31144Y3391D01* X31133Y3366D01* X31120Y3343D01* X31105Y3320D01* X31088Y3299D01* X31084Y3295D01* Y3704D01* X31084Y3704D01* X31102Y3683D01* X31117Y3661D01* X31131Y3637D01* X31142Y3613D01* X31151Y3587D01* X31155Y3579D01* X31159Y3572D01* X31165Y3565D01* X31172Y3560D01* X31180Y3556D01* X31188Y3553D01* X31197Y3552D01* X31205Y3552D01* X31214Y3554D01* X31222Y3557D01* X31229Y3562D01* X31236Y3568D01* X31241Y3575D01* X31245Y3582D01* X31248Y3591D01* X31249Y3599D01* X31249Y3608D01* X31247Y3617D01* X31235Y3651D01* X31220Y3683D01* X31202Y3715D01* X31181Y3744D01* X31157Y3772D01* X31132Y3797D01* X31104Y3820D01* X31084Y3834D01* Y5180D01* X31089Y5183D01* X31117Y5207D01* X31142Y5232D01* X31165Y5260D01* X31185Y5290D01* X31203Y5322D01* X31217Y5355D01* X31229Y5389D01* X31231Y5398D01* X31231Y5407D01* X31230Y5415D01* X31227Y5423D01* X31222Y5431D01* X31217Y5438D01* X31210Y5444D01* X31203Y5448D01* X31195Y5451D01* X31186Y5453D01* X31177Y5453D01* X31169Y5452D01* X31161Y5449D01* X31153Y5445D01* X31146Y5439D01* X31140Y5433D01* X31136Y5425D01* X31133Y5417D01* X31124Y5391D01* X31113Y5366D01* X31100Y5343D01* X31085Y5320D01* X31084Y5319D01* Y5680D01* X31097Y5661D01* X31111Y5637D01* X31122Y5613D01* X31131Y5587D01* X31135Y5579D01* X31139Y5572D01* X31145Y5565D01* X31152Y5560D01* X31160Y5556D01* X31168Y5553D01* X31177Y5552D01* X31185Y5552D01* X31194Y5554D01* X31202Y5557D01* X31209Y5562D01* X31216Y5568D01* X31221Y5575D01* X31225Y5582D01* X31228Y5591D01* X31229Y5599D01* X31229Y5608D01* X31227Y5617D01* X31215Y5651D01* X31200Y5683D01* X31182Y5715D01* X31161Y5744D01* X31137Y5772D01* X31112Y5797D01* X31084Y5820D01* Y7196D01* X31097Y7207D01* X31122Y7232D01* X31145Y7260D01* X31165Y7290D01* X31183Y7322D01* X31197Y7355D01* X31209Y7389D01* X31211Y7398D01* X31211Y7407D01* X31210Y7415D01* X31207Y7423D01* X31202Y7431D01* X31197Y7438D01* X31190Y7444D01* X31183Y7448D01* X31175Y7451D01* X31166Y7453D01* X31157Y7453D01* X31149Y7452D01* X31141Y7449D01* X31133Y7445D01* X31126Y7439D01* X31120Y7433D01* X31116Y7425D01* X31113Y7417D01* X31104Y7391D01* X31093Y7366D01* X31084Y7350D01* Y7650D01* X31091Y7637D01* X31102Y7613D01* X31111Y7587D01* X31115Y7579D01* X31119Y7572D01* X31125Y7565D01* X31132Y7560D01* X31140Y7556D01* X31148Y7553D01* X31157Y7552D01* X31165Y7552D01* X31174Y7554D01* X31182Y7557D01* X31189Y7562D01* X31196Y7568D01* X31201Y7575D01* X31205Y7582D01* X31208Y7591D01* X31209Y7599D01* X31209Y7608D01* X31207Y7617D01* X31195Y7651D01* X31180Y7683D01* X31162Y7715D01* X31141Y7744D01* X31117Y7772D01* X31092Y7797D01* X31084Y7804D01* Y9214D01* X31102Y9232D01* X31125Y9260D01* X31145Y9290D01* X31163Y9322D01* X31177Y9355D01* X31189Y9389D01* X31191Y9398D01* X31191Y9407D01* X31190Y9415D01* X31187Y9423D01* X31182Y9431D01* X31177Y9438D01* X31170Y9444D01* X31163Y9448D01* X31155Y9451D01* X31146Y9453D01* X31137Y9453D01* X31129Y9452D01* X31121Y9449D01* X31113Y9445D01* X31106Y9439D01* X31100Y9433D01* X31096Y9425D01* X31093Y9417D01* X31084Y9391D01* X31084Y9391D01* Y9608D01* X31091Y9587D01* X31095Y9579D01* X31099Y9572D01* X31105Y9565D01* X31112Y9560D01* X31120Y9556D01* X31128Y9553D01* X31137Y9552D01* X31145Y9552D01* X31154Y9554D01* X31162Y9557D01* X31169Y9562D01* X31176Y9568D01* X31181Y9575D01* X31185Y9582D01* X31188Y9591D01* X31189Y9599D01* X31189Y9608D01* X31187Y9617D01* X31175Y9651D01* X31160Y9683D01* X31142Y9715D01* X31121Y9744D01* X31097Y9772D01* X31084Y9785D01* Y11235D01* X31105Y11260D01* X31125Y11290D01* X31143Y11322D01* X31157Y11355D01* X31169Y11389D01* X31171Y11398D01* X31171Y11407D01* X31170Y11415D01* X31167Y11423D01* X31162Y11431D01* X31157Y11438D01* X31150Y11444D01* X31143Y11448D01* X31135Y11451D01* X31126Y11453D01* X31117Y11453D01* X31109Y11452D01* X31101Y11449D01* X31093Y11445D01* X31086Y11439D01* X31084Y11437D01* Y11567D01* X31085Y11565D01* X31092Y11560D01* X31100Y11556D01* X31108Y11553D01* X31117Y11552D01* X31125Y11552D01* X31134Y11554D01* X31142Y11557D01* X31149Y11562D01* X31156Y11568D01* X31161Y11575D01* X31165Y11582D01* X31168Y11591D01* X31169Y11599D01* X31169Y11608D01* X31167Y11617D01* X31155Y11651D01* X31140Y11683D01* X31122Y11715D01* X31101Y11744D01* X31084Y11764D01* Y13259D01* X31085Y13260D01* X31105Y13290D01* X31123Y13322D01* X31137Y13355D01* X31149Y13389D01* X31151Y13398D01* X31151Y13407D01* X31150Y13415D01* X31147Y13423D01* X31142Y13431D01* X31137Y13438D01* X31130Y13444D01* X31123Y13448D01* X31115Y13451D01* X31106Y13453D01* X31097Y13453D01* X31089Y13452D01* X31084Y13450D01* Y13555D01* X31088Y13553D01* X31097Y13552D01* X31105Y13552D01* X31114Y13554D01* X31122Y13557D01* X31129Y13562D01* X31136Y13568D01* X31141Y13575D01* X31145Y13582D01* X31148Y13591D01* X31149Y13599D01* X31149Y13608D01* X31147Y13617D01* X31135Y13651D01* X31120Y13683D01* X31102Y13715D01* X31084Y13740D01* Y15288D01* X31085Y15290D01* X31103Y15322D01* X31117Y15355D01* X31129Y15389D01* X31131Y15398D01* X31131Y15407D01* X31130Y15415D01* X31127Y15423D01* X31122Y15431D01* X31117Y15438D01* X31110Y15444D01* X31103Y15448D01* X31095Y15451D01* X31086Y15453D01* X31084D01* Y15552D01* X31085D01* X31094Y15554D01* X31102Y15557D01* X31109Y15562D01* X31116Y15568D01* X31121Y15575D01* X31125Y15582D01* X31128Y15591D01* X31129Y15599D01* X31129Y15608D01* X31127Y15617D01* X31115Y15651D01* X31100Y15683D01* X31084Y15711D01* Y17324D01* X31097Y17355D01* X31109Y17389D01* X31111Y17398D01* X31111Y17407D01* X31110Y17415D01* X31107Y17423D01* X31102Y17431D01* X31097Y17438D01* X31090Y17444D01* X31084Y17447D01* Y17559D01* X31089Y17562D01* X31096Y17568D01* X31101Y17575D01* X31105Y17582D01* X31108Y17591D01* X31109Y17599D01* X31109Y17608D01* X31107Y17617D01* X31095Y17651D01* X31084Y17674D01* Y19374D01* X31089Y19389D01* X31091Y19398D01* X31091Y19407D01* X31090Y19415D01* X31087Y19423D01* X31084Y19428D01* Y19580D01* X31085Y19582D01* X31088Y19591D01* X31089Y19599D01* X31089Y19608D01* X31087Y19617D01* X31084Y19625D01* Y40000D01* G37* G36* X32285D02*X32465D01* Y37859D01* X32462Y37864D01* X32456Y37871D01* X32449Y37876D01* X32442Y37880D01* X32433Y37883D01* X32425Y37884D01* X32416Y37884D01* X32408Y37882D01* X32373Y37870D01* X32341Y37855D01* X32309Y37837D01* X32285Y37820D01* Y39166D01* X32295Y39159D01* X32327Y39141D01* X32360Y39127D01* X32394Y39115D01* X32403Y39113D01* X32412Y39113D01* X32420Y39115D01* X32428Y39117D01* X32436Y39122D01* X32443Y39127D01* X32449Y39134D01* X32453Y39141D01* X32456Y39149D01* X32458Y39158D01* X32458Y39167D01* X32457Y39175D01* X32454Y39183D01* X32450Y39191D01* X32444Y39198D01* X32437Y39204D01* X32430Y39208D01* X32422Y39211D01* X32396Y39220D01* X32371Y39231D01* X32348Y39244D01* X32325Y39259D01* X32304Y39276D01* X32285Y39295D01* Y39704D01* X32300Y39719D01* X32321Y39737D01* X32343Y39752D01* X32367Y39766D01* X32391Y39777D01* X32417Y39786D01* X32425Y39790D01* X32432Y39794D01* X32439Y39800D01* X32444Y39807D01* X32448Y39815D01* X32451Y39823D01* X32452Y39832D01* X32452Y39840D01* X32450Y39849D01* X32447Y39857D01* X32442Y39864D01* X32436Y39871D01* X32429Y39876D01* X32422Y39880D01* X32413Y39883D01* X32405Y39884D01* X32396Y39884D01* X32388Y39882D01* X32353Y39870D01* X32321Y39855D01* X32289Y39837D01* X32285Y39834D01* Y40000D01* G37* G36* X32465Y11740D02*X32464Y11739D01* X32444Y11709D01* X32426Y11677D01* X32412Y11644D01* X32400Y11610D01* X32398Y11601D01* X32398Y11593D01* X32399Y11584D01* X32402Y11576D01* X32407Y11568D01* X32412Y11561D01* X32419Y11556D01* X32426Y11551D01* X32434Y11548D01* X32443Y11546D01* X32452Y11546D01* X32460Y11547D01* X32465Y11549D01* Y11445D01* X32461Y11446D01* X32452Y11447D01* X32444Y11447D01* X32435Y11445D01* X32427Y11442D01* X32420Y11437D01* X32413Y11431D01* X32408Y11424D01* X32404Y11417D01* X32401Y11409D01* X32400Y11400D01* X32400Y11391D01* X32402Y11383D01* X32414Y11349D01* X32429Y11316D01* X32447Y11284D01* X32465Y11259D01* Y9711D01* X32464Y9709D01* X32446Y9677D01* X32432Y9644D01* X32420Y9610D01* X32418Y9601D01* X32418Y9593D01* X32419Y9584D01* X32422Y9576D01* X32427Y9568D01* X32432Y9561D01* X32439Y9556D01* X32446Y9551D01* X32454Y9548D01* X32463Y9546D01* X32465D01* Y9447D01* X32464Y9447D01* X32455Y9445D01* X32447Y9442D01* X32440Y9437D01* X32433Y9431D01* X32428Y9424D01* X32424Y9417D01* X32421Y9409D01* X32420Y9400D01* X32420Y9391D01* X32422Y9383D01* X32434Y9349D01* X32449Y9316D01* X32465Y9288D01* Y7675D01* X32452Y7644D01* X32440Y7610D01* X32438Y7601D01* X32438Y7593D01* X32439Y7584D01* X32442Y7576D01* X32447Y7568D01* X32452Y7561D01* X32459Y7556D01* X32465Y7552D01* Y7441D01* X32460Y7437D01* X32453Y7431D01* X32448Y7424D01* X32444Y7417D01* X32441Y7409D01* X32440Y7400D01* X32440Y7391D01* X32442Y7383D01* X32454Y7349D01* X32465Y7325D01* Y5625D01* X32460Y5610D01* X32458Y5601D01* X32458Y5593D01* X32459Y5584D01* X32462Y5576D01* X32465Y5571D01* Y5419D01* X32464Y5417D01* X32461Y5409D01* X32460Y5400D01* X32460Y5391D01* X32462Y5383D01* X32465Y5374D01* Y0D01* X32285D01* Y23374D01* X32294Y23349D01* X32309Y23316D01* X32327Y23284D01* X32348Y23255D01* X32372Y23227D01* X32397Y23202D01* X32425Y23179D01* X32455Y23159D01* X32465Y23153D01* Y21834D01* X32440Y21816D01* X32412Y21793D01* X32387Y21767D01* X32364Y21739D01* X32344Y21709D01* X32326Y21677D01* X32312Y21644D01* X32300Y21610D01* X32298Y21601D01* X32298Y21593D01* X32299Y21584D01* X32302Y21576D01* X32307Y21568D01* X32312Y21561D01* X32319Y21556D01* X32326Y21551D01* X32334Y21548D01* X32343Y21546D01* X32352Y21546D01* X32360Y21547D01* X32368Y21550D01* X32376Y21555D01* X32383Y21560D01* X32389Y21567D01* X32393Y21574D01* X32396Y21582D01* X32405Y21608D01* X32416Y21633D01* X32429Y21657D01* X32444Y21679D01* X32461Y21700D01* X32465Y21704D01* Y21295D01* X32465Y21295D01* X32447Y21316D01* X32432Y21338D01* X32418Y21362D01* X32407Y21386D01* X32398Y21412D01* X32394Y21420D01* X32390Y21427D01* X32384Y21434D01* X32377Y21439D01* X32369Y21443D01* X32361Y21446D01* X32352Y21447D01* X32344Y21447D01* X32335Y21445D01* X32327Y21442D01* X32320Y21437D01* X32313Y21431D01* X32308Y21424D01* X32304Y21417D01* X32301Y21409D01* X32300Y21400D01* X32300Y21391D01* X32302Y21383D01* X32314Y21349D01* X32329Y21316D01* X32347Y21284D01* X32368Y21255D01* X32392Y21227D01* X32417Y21202D01* X32445Y21179D01* X32465Y21166D01* Y19820D01* X32460Y19816D01* X32432Y19793D01* X32407Y19767D01* X32384Y19739D01* X32364Y19709D01* X32346Y19677D01* X32332Y19644D01* X32320Y19610D01* X32318Y19601D01* X32318Y19593D01* X32319Y19584D01* X32322Y19576D01* X32327Y19568D01* X32332Y19561D01* X32339Y19556D01* X32346Y19551D01* X32354Y19548D01* X32363Y19546D01* X32372Y19546D01* X32380Y19547D01* X32388Y19550D01* X32396Y19555D01* X32403Y19560D01* X32409Y19567D01* X32413Y19574D01* X32416Y19582D01* X32425Y19608D01* X32436Y19633D01* X32449Y19657D01* X32464Y19679D01* X32465Y19680D01* Y19319D01* X32452Y19338D01* X32438Y19362D01* X32427Y19386D01* X32418Y19412D01* X32414Y19420D01* X32410Y19427D01* X32404Y19434D01* X32397Y19439D01* X32389Y19443D01* X32381Y19446D01* X32372Y19447D01* X32364Y19447D01* X32355Y19445D01* X32347Y19442D01* X32340Y19437D01* X32333Y19431D01* X32328Y19424D01* X32324Y19417D01* X32321Y19409D01* X32320Y19400D01* X32320Y19391D01* X32322Y19383D01* X32334Y19349D01* X32349Y19316D01* X32367Y19284D01* X32388Y19255D01* X32412Y19227D01* X32437Y19202D01* X32465Y19179D01* Y17804D01* X32452Y17793D01* X32427Y17767D01* X32404Y17739D01* X32384Y17709D01* X32366Y17677D01* X32352Y17644D01* X32340Y17610D01* X32338Y17601D01* X32338Y17593D01* X32339Y17584D01* X32342Y17576D01* X32347Y17568D01* X32352Y17561D01* X32359Y17556D01* X32366Y17551D01* X32374Y17548D01* X32383Y17546D01* X32392Y17546D01* X32400Y17547D01* X32408Y17550D01* X32416Y17555D01* X32423Y17560D01* X32429Y17567D01* X32433Y17574D01* X32436Y17582D01* X32445Y17608D01* X32456Y17633D01* X32465Y17650D01* Y17349D01* X32458Y17362D01* X32447Y17386D01* X32438Y17412D01* X32434Y17420D01* X32430Y17427D01* X32424Y17434D01* X32417Y17439D01* X32409Y17443D01* X32401Y17446D01* X32392Y17447D01* X32384Y17447D01* X32375Y17445D01* X32367Y17442D01* X32360Y17437D01* X32353Y17431D01* X32348Y17424D01* X32344Y17417D01* X32341Y17409D01* X32340Y17400D01* X32340Y17391D01* X32342Y17383D01* X32354Y17349D01* X32369Y17316D01* X32387Y17284D01* X32408Y17255D01* X32432Y17227D01* X32457Y17202D01* X32465Y17196D01* Y15785D01* X32447Y15767D01* X32424Y15739D01* X32404Y15709D01* X32386Y15677D01* X32372Y15644D01* X32360Y15610D01* X32358Y15601D01* X32358Y15593D01* X32359Y15584D01* X32362Y15576D01* X32367Y15568D01* X32372Y15561D01* X32379Y15556D01* X32386Y15551D01* X32394Y15548D01* X32403Y15546D01* X32412Y15546D01* X32420Y15547D01* X32428Y15550D01* X32436Y15555D01* X32443Y15560D01* X32449Y15567D01* X32453Y15574D01* X32456Y15582D01* X32465Y15608D01* X32465Y15609D01* Y15391D01* X32458Y15412D01* X32454Y15420D01* X32450Y15427D01* X32444Y15434D01* X32437Y15439D01* X32429Y15443D01* X32421Y15446D01* X32412Y15447D01* X32404Y15447D01* X32395Y15445D01* X32387Y15442D01* X32380Y15437D01* X32373Y15431D01* X32368Y15424D01* X32364Y15417D01* X32361Y15409D01* X32360Y15400D01* X32360Y15391D01* X32362Y15383D01* X32374Y15349D01* X32389Y15316D01* X32407Y15284D01* X32428Y15255D01* X32452Y15227D01* X32465Y15214D01* Y13765D01* X32444Y13739D01* X32424Y13709D01* X32406Y13677D01* X32392Y13644D01* X32380Y13610D01* X32378Y13601D01* X32378Y13593D01* X32379Y13584D01* X32382Y13576D01* X32387Y13568D01* X32392Y13561D01* X32399Y13556D01* X32406Y13551D01* X32414Y13548D01* X32423Y13546D01* X32432Y13546D01* X32440Y13547D01* X32448Y13550D01* X32456Y13555D01* X32463Y13560D01* X32465Y13563D01* Y13432D01* X32464Y13434D01* X32457Y13439D01* X32449Y13443D01* X32441Y13446D01* X32432Y13447D01* X32424Y13447D01* X32415Y13445D01* X32407Y13442D01* X32400Y13437D01* X32393Y13431D01* X32388Y13424D01* X32384Y13417D01* X32381Y13409D01* X32380Y13400D01* X32380Y13391D01* X32382Y13383D01* X32394Y13349D01* X32409Y13316D01* X32427Y13284D01* X32448Y13255D01* X32465Y13235D01* Y11740D01* G37* G36* Y23276D02*X32464Y23276D01* X32445Y23295D01* X32427Y23316D01* X32412Y23338D01* X32398Y23362D01* X32387Y23386D01* X32378Y23412D01* X32374Y23420D01* X32370Y23427D01* X32364Y23434D01* X32357Y23439D01* X32349Y23443D01* X32341Y23446D01* X32332Y23447D01* X32324Y23447D01* X32315Y23445D01* X32307Y23442D01* X32300Y23437D01* X32293Y23431D01* X32288Y23424D01* X32285Y23419D01* Y23571D01* X32287Y23568D01* X32292Y23561D01* X32299Y23556D01* X32306Y23551D01* X32314Y23548D01* X32323Y23546D01* X32332Y23546D01* X32340Y23547D01* X32348Y23550D01* X32356Y23555D01* X32363Y23560D01* X32369Y23567D01* X32373Y23574D01* X32376Y23582D01* X32385Y23608D01* X32396Y23633D01* X32409Y23657D01* X32424Y23679D01* X32441Y23700D01* X32460Y23719D01* X32465Y23723D01* Y23276D01* G37* G36* Y23846D02*X32449Y23837D01* X32420Y23816D01* X32392Y23793D01* X32367Y23767D01* X32344Y23739D01* X32324Y23709D01* X32306Y23677D01* X32292Y23644D01* X32285Y23625D01* Y25325D01* X32289Y25316D01* X32307Y25284D01* X32328Y25255D01* X32352Y25227D01* X32377Y25202D01* X32405Y25179D01* X32435Y25159D01* X32465Y25142D01* Y23846D01* G37* G36* Y25259D02*X32465Y25259D01* X32444Y25276D01* X32425Y25295D01* X32407Y25316D01* X32392Y25338D01* X32378Y25362D01* X32367Y25386D01* X32358Y25412D01* X32354Y25420D01* X32350Y25427D01* X32344Y25434D01* X32337Y25439D01* X32329Y25443D01* X32321Y25446D01* X32312Y25447D01* X32304Y25447D01* X32295Y25445D01* X32287Y25442D01* X32285Y25441D01* Y25552D01* X32286Y25551D01* X32294Y25548D01* X32303Y25546D01* X32312Y25546D01* X32320Y25547D01* X32328Y25550D01* X32336Y25555D01* X32343Y25560D01* X32349Y25567D01* X32353Y25574D01* X32356Y25582D01* X32365Y25608D01* X32376Y25633D01* X32389Y25657D01* X32404Y25679D01* X32421Y25700D01* X32440Y25719D01* X32461Y25737D01* X32465Y25740D01* Y25259D01* G37* G36* Y25857D02*X32461Y25855D01* X32429Y25837D01* X32400Y25816D01* X32372Y25793D01* X32347Y25767D01* X32324Y25739D01* X32304Y25709D01* X32286Y25677D01* X32285Y25675D01* Y27288D01* X32287Y27284D01* X32308Y27255D01* X32332Y27227D01* X32357Y27202D01* X32385Y27179D01* X32415Y27159D01* X32447Y27141D01* X32465Y27133D01* Y25857D01* G37* G36* Y27246D02*X32445Y27259D01* X32424Y27276D01* X32405Y27295D01* X32387Y27316D01* X32372Y27338D01* X32358Y27362D01* X32347Y27386D01* X32338Y27412D01* X32334Y27420D01* X32330Y27427D01* X32324Y27434D01* X32317Y27439D01* X32309Y27443D01* X32301Y27446D01* X32292Y27447D01* X32285Y27447D01* Y27546D01* X32292Y27546D01* X32300Y27547D01* X32308Y27550D01* X32316Y27555D01* X32323Y27560D01* X32329Y27567D01* X32333Y27574D01* X32336Y27582D01* X32345Y27608D01* X32356Y27633D01* X32369Y27657D01* X32384Y27679D01* X32401Y27700D01* X32420Y27719D01* X32441Y27737D01* X32463Y27752D01* X32465Y27754D01* Y27246D01* G37* G36* Y27866D02*X32441Y27855D01* X32409Y27837D01* X32380Y27816D01* X32352Y27793D01* X32327Y27767D01* X32304Y27739D01* X32285Y27711D01* Y29259D01* X32288Y29255D01* X32312Y29227D01* X32337Y29202D01* X32365Y29179D01* X32395Y29159D01* X32427Y29141D01* X32460Y29127D01* X32465Y29125D01* Y27866D01* G37* G36* Y29234D02*X32448Y29244D01* X32425Y29259D01* X32404Y29276D01* X32385Y29295D01* X32367Y29316D01* X32352Y29338D01* X32338Y29362D01* X32327Y29386D01* X32318Y29412D01* X32314Y29420D01* X32310Y29427D01* X32304Y29434D01* X32297Y29439D01* X32289Y29443D01* X32285Y29445D01* Y29549D01* X32288Y29550D01* X32296Y29555D01* X32303Y29560D01* X32309Y29567D01* X32313Y29574D01* X32316Y29582D01* X32325Y29608D01* X32336Y29633D01* X32349Y29657D01* X32364Y29679D01* X32381Y29700D01* X32400Y29719D01* X32421Y29737D01* X32443Y29752D01* X32465Y29765D01* Y29234D01* G37* G36* Y29874D02*X32453Y29870D01* X32421Y29855D01* X32389Y29837D01* X32360Y29816D01* X32332Y29793D01* X32307Y29767D01* X32285Y29740D01* Y31235D01* X32292Y31227D01* X32317Y31202D01* X32345Y31179D01* X32375Y31159D01* X32407Y31141D01* X32440Y31127D01* X32465Y31118D01* Y29874D01* G37* G36* Y31225D02*X32451Y31231D01* X32428Y31244D01* X32405Y31259D01* X32384Y31276D01* X32365Y31295D01* X32347Y31316D01* X32332Y31338D01* X32318Y31362D01* X32307Y31386D01* X32298Y31412D01* X32294Y31420D01* X32290Y31427D01* X32285Y31432D01* Y31563D01* X32289Y31567D01* X32293Y31574D01* X32296Y31582D01* X32305Y31608D01* X32316Y31633D01* X32329Y31657D01* X32344Y31679D01* X32361Y31700D01* X32380Y31719D01* X32401Y31737D01* X32423Y31752D01* X32447Y31766D01* X32465Y31775D01* Y31225D01* G37* G36* Y31881D02*X32433Y31870D01* X32401Y31855D01* X32369Y31837D01* X32340Y31816D01* X32312Y31793D01* X32287Y31767D01* X32285Y31765D01* Y33214D01* X32297Y33202D01* X32325Y33179D01* X32355Y33159D01* X32387Y33141D01* X32420Y33127D01* X32454Y33115D01* X32463Y33113D01* X32465D01* Y31881D01* G37* G36* Y33217D02*X32456Y33220D01* X32431Y33231D01* X32408Y33244D01* X32385Y33259D01* X32364Y33276D01* X32345Y33295D01* X32327Y33316D01* X32312Y33338D01* X32298Y33362D01* X32287Y33386D01* X32285Y33391D01* Y33609D01* X32296Y33633D01* X32309Y33657D01* X32324Y33679D01* X32341Y33700D01* X32360Y33719D01* X32381Y33737D01* X32403Y33752D01* X32427Y33766D01* X32451Y33777D01* X32465Y33782D01* Y33217D01* G37* G36* Y33884D02*X32465Y33884D01* X32456Y33884D01* X32448Y33882D01* X32413Y33870D01* X32381Y33855D01* X32349Y33837D01* X32320Y33816D01* X32292Y33793D01* X32285Y33785D01* Y35196D01* X32305Y35179D01* X32335Y35159D01* X32367Y35141D01* X32400Y35127D01* X32434Y35115D01* X32443Y35113D01* X32452Y35113D01* X32460Y35115D01* X32465Y35116D01* Y33884D01* G37* G36* Y35210D02*X32462Y35211D01* X32436Y35220D01* X32411Y35231D01* X32388Y35244D01* X32365Y35259D01* X32344Y35276D01* X32325Y35295D01* X32307Y35316D01* X32292Y35338D01* X32285Y35349D01* Y35650D01* X32289Y35657D01* X32304Y35679D01* X32321Y35700D01* X32340Y35719D01* X32361Y35737D01* X32383Y35752D01* X32407Y35766D01* X32431Y35777D01* X32457Y35786D01* X32465Y35790D01* X32465Y35790D01* Y35210D01* G37* G36* Y35878D02*X32462Y35880D01* X32453Y35883D01* X32445Y35884D01* X32436Y35884D01* X32428Y35882D01* X32393Y35870D01* X32361Y35855D01* X32329Y35837D01* X32300Y35816D01* X32285Y35804D01* Y37179D01* X32285Y37179D01* X32315Y37159D01* X32347Y37141D01* X32380Y37127D01* X32414Y37115D01* X32423Y37113D01* X32432Y37113D01* X32440Y37115D01* X32448Y37117D01* X32456Y37122D01* X32463Y37127D01* X32465Y37130D01* Y35878D01* G37* G36* Y37197D02*X32464Y37198D01* X32457Y37204D01* X32450Y37208D01* X32442Y37211D01* X32416Y37220D01* X32391Y37231D01* X32368Y37244D01* X32345Y37259D01* X32324Y37276D01* X32305Y37295D01* X32287Y37316D01* X32285Y37319D01* Y37680D01* X32301Y37700D01* X32320Y37719D01* X32341Y37737D01* X32363Y37752D01* X32387Y37766D01* X32411Y37777D01* X32437Y37786D01* X32445Y37790D01* X32452Y37794D01* X32459Y37800D01* X32464Y37807D01* X32465Y37809D01* Y37197D01* G37* G36* Y40000D02*X32724D01* Y39834D01* X32714Y39840D01* X32682Y39858D01* X32649Y39873D01* X32615Y39884D01* X32606Y39886D01* X32597Y39886D01* X32589Y39885D01* X32581Y39882D01* X32573Y39878D01* X32566Y39872D01* X32560Y39865D01* X32556Y39858D01* X32553Y39850D01* X32551Y39841D01* X32551Y39833D01* X32552Y39824D01* X32555Y39816D01* X32559Y39808D01* X32565Y39801D01* X32572Y39796D01* X32579Y39791D01* X32587Y39788D01* X32613Y39779D01* X32638Y39768D01* X32661Y39755D01* X32684Y39740D01* X32705Y39723D01* X32724Y39704D01* Y39295D01* X32709Y39280D01* X32688Y39262D01* X32666Y39247D01* X32642Y39233D01* X32618Y39222D01* X32592Y39213D01* X32584Y39209D01* X32577Y39205D01* X32570Y39199D01* X32565Y39192D01* X32561Y39184D01* X32558Y39176D01* X32557Y39167D01* X32557Y39159D01* X32559Y39150D01* X32562Y39142D01* X32567Y39135D01* X32573Y39128D01* X32580Y39123D01* X32587Y39119D01* X32596Y39116D01* X32604Y39115D01* X32613Y39115D01* X32621Y39117D01* X32656Y39129D01* X32688Y39144D01* X32720Y39162D01* X32724Y39165D01* Y37846D01* X32702Y37858D01* X32669Y37873D01* X32635Y37884D01* X32626Y37886D01* X32617Y37886D01* X32609Y37885D01* X32601Y37882D01* X32593Y37878D01* X32586Y37872D01* X32580Y37865D01* X32576Y37858D01* X32573Y37850D01* X32571Y37841D01* X32571Y37833D01* X32572Y37824D01* X32575Y37816D01* X32579Y37808D01* X32585Y37801D01* X32592Y37796D01* X32599Y37791D01* X32607Y37788D01* X32633Y37779D01* X32658Y37768D01* X32681Y37755D01* X32704Y37740D01* X32724Y37724D01* Y37276D01* X32708Y37262D01* X32686Y37247D01* X32662Y37233D01* X32638Y37222D01* X32612Y37213D01* X32604Y37209D01* X32597Y37205D01* X32590Y37199D01* X32585Y37192D01* X32581Y37184D01* X32578Y37176D01* X32577Y37167D01* X32577Y37159D01* X32579Y37150D01* X32582Y37142D01* X32587Y37135D01* X32593Y37128D01* X32600Y37123D01* X32607Y37119D01* X32616Y37116D01* X32624Y37115D01* X32633Y37115D01* X32641Y37117D01* X32676Y37129D01* X32708Y37144D01* X32724Y37153D01* Y35857D01* X32722Y35858D01* X32689Y35873D01* X32655Y35884D01* X32646Y35886D01* X32637Y35886D01* X32629Y35885D01* X32621Y35882D01* X32613Y35878D01* X32606Y35872D01* X32600Y35865D01* X32596Y35858D01* X32593Y35850D01* X32591Y35841D01* X32591Y35833D01* X32592Y35824D01* X32595Y35816D01* X32599Y35808D01* X32605Y35801D01* X32612Y35796D01* X32619Y35791D01* X32627Y35788D01* X32653Y35779D01* X32678Y35768D01* X32701Y35755D01* X32724Y35740D01* Y35259D01* X32706Y35247D01* X32682Y35233D01* X32658Y35222D01* X32632Y35213D01* X32624Y35209D01* X32617Y35205D01* X32610Y35199D01* X32605Y35192D01* X32601Y35184D01* X32598Y35176D01* X32597Y35167D01* X32597Y35159D01* X32599Y35150D01* X32602Y35142D01* X32607Y35135D01* X32613Y35128D01* X32620Y35123D01* X32627Y35119D01* X32636Y35116D01* X32644Y35115D01* X32653Y35115D01* X32661Y35117D01* X32696Y35129D01* X32724Y35142D01* Y33866D01* X32709Y33873D01* X32675Y33884D01* X32666Y33886D01* X32657Y33886D01* X32649Y33885D01* X32641Y33882D01* X32633Y33878D01* X32626Y33872D01* X32620Y33865D01* X32616Y33858D01* X32613Y33850D01* X32611Y33841D01* X32611Y33833D01* X32612Y33824D01* X32615Y33816D01* X32619Y33808D01* X32625Y33801D01* X32632Y33796D01* X32639Y33791D01* X32647Y33788D01* X32673Y33779D01* X32698Y33768D01* X32721Y33755D01* X32724Y33754D01* Y33246D01* X32702Y33233D01* X32678Y33222D01* X32652Y33213D01* X32644Y33209D01* X32637Y33205D01* X32630Y33199D01* X32625Y33192D01* X32621Y33184D01* X32618Y33176D01* X32617Y33167D01* X32617Y33159D01* X32619Y33150D01* X32622Y33142D01* X32627Y33135D01* X32633Y33128D01* X32640Y33123D01* X32647Y33119D01* X32656Y33116D01* X32664Y33115D01* X32673Y33115D01* X32681Y33117D01* X32716Y33129D01* X32724Y33133D01* Y31874D01* X32695Y31884D01* X32686Y31886D01* X32677Y31886D01* X32669Y31885D01* X32661Y31882D01* X32653Y31878D01* X32646Y31872D01* X32640Y31865D01* X32636Y31858D01* X32633Y31850D01* X32631Y31841D01* X32631Y31833D01* X32632Y31824D01* X32635Y31816D01* X32639Y31808D01* X32645Y31801D01* X32652Y31796D01* X32659Y31791D01* X32667Y31788D01* X32693Y31779D01* X32718Y31768D01* X32724Y31765D01* Y31234D01* X32722Y31233D01* X32698Y31222D01* X32672Y31213D01* X32664Y31209D01* X32657Y31205D01* X32650Y31199D01* X32645Y31192D01* X32641Y31184D01* X32638Y31176D01* X32637Y31167D01* X32637Y31159D01* X32639Y31150D01* X32642Y31142D01* X32647Y31135D01* X32653Y31128D01* X32660Y31123D01* X32667Y31119D01* X32676Y31116D01* X32684Y31115D01* X32693Y31115D01* X32701Y31117D01* X32724Y31125D01* Y29881D01* X32715Y29884D01* X32706Y29886D01* X32697Y29886D01* X32689Y29885D01* X32681Y29882D01* X32673Y29878D01* X32666Y29872D01* X32660Y29865D01* X32656Y29858D01* X32653Y29850D01* X32651Y29841D01* X32651Y29833D01* X32652Y29824D01* X32655Y29816D01* X32659Y29808D01* X32665Y29801D01* X32672Y29796D01* X32679Y29791D01* X32687Y29788D01* X32713Y29779D01* X32724Y29774D01* Y29225D01* X32718Y29222D01* X32692Y29213D01* X32684Y29209D01* X32677Y29205D01* X32670Y29199D01* X32665Y29192D01* X32661Y29184D01* X32658Y29176D01* X32657Y29167D01* X32657Y29159D01* X32659Y29150D01* X32662Y29142D01* X32667Y29135D01* X32673Y29128D01* X32680Y29123D01* X32687Y29119D01* X32696Y29116D01* X32704Y29115D01* X32713Y29115D01* X32721Y29117D01* X32724Y29118D01* Y27886D01* X32717Y27886D01* X32709Y27885D01* X32701Y27882D01* X32693Y27878D01* X32686Y27872D01* X32680Y27865D01* X32676Y27858D01* X32673Y27850D01* X32671Y27841D01* X32671Y27833D01* X32672Y27824D01* X32675Y27816D01* X32679Y27808D01* X32685Y27801D01* X32692Y27796D01* X32699Y27791D01* X32707Y27788D01* X32724Y27782D01* Y27217D01* X32712Y27213D01* X32704Y27209D01* X32697Y27205D01* X32690Y27199D01* X32685Y27192D01* X32681Y27184D01* X32678Y27176D01* X32677Y27167D01* X32677Y27159D01* X32679Y27150D01* X32682Y27142D01* X32687Y27135D01* X32693Y27128D01* X32700Y27123D01* X32707Y27119D01* X32716Y27116D01* X32724Y27115D01* Y25883D01* X32721Y25882D01* X32713Y25878D01* X32706Y25872D01* X32700Y25865D01* X32696Y25858D01* X32693Y25850D01* X32691Y25841D01* X32691Y25833D01* X32692Y25824D01* X32695Y25816D01* X32699Y25808D01* X32705Y25801D01* X32712Y25796D01* X32719Y25791D01* X32724Y25789D01* Y25209D01* X32717Y25205D01* X32710Y25199D01* X32705Y25192D01* X32701Y25184D01* X32698Y25176D01* X32697Y25167D01* X32697Y25159D01* X32699Y25150D01* X32702Y25142D01* X32707Y25135D01* X32713Y25128D01* X32720Y25123D01* X32724Y25121D01* Y23870D01* X32720Y23865D01* X32716Y23858D01* X32713Y23850D01* X32711Y23841D01* X32711Y23833D01* X32712Y23824D01* X32715Y23816D01* X32719Y23808D01* X32724Y23802D01* Y23190D01* X32721Y23184D01* X32718Y23176D01* X32717Y23167D01* X32717Y23159D01* X32719Y23150D01* X32722Y23142D01* X32724Y23140D01* Y11861D01* X32722Y11864D01* X32716Y11871D01* X32709Y11876D01* X32702Y11880D01* X32693Y11883D01* X32685Y11884D01* X32676Y11884D01* X32668Y11882D01* X32633Y11870D01* X32601Y11855D01* X32569Y11837D01* X32540Y11816D01* X32512Y11793D01* X32487Y11767D01* X32465Y11740D01* Y13235D01* X32472Y13227D01* X32497Y13202D01* X32525Y13179D01* X32555Y13159D01* X32587Y13141D01* X32620Y13127D01* X32654Y13115D01* X32663Y13113D01* X32672Y13113D01* X32680Y13115D01* X32688Y13117D01* X32696Y13122D01* X32703Y13127D01* X32709Y13134D01* X32713Y13141D01* X32716Y13149D01* X32718Y13158D01* X32718Y13167D01* X32717Y13175D01* X32714Y13183D01* X32710Y13191D01* X32704Y13198D01* X32697Y13204D01* X32690Y13208D01* X32682Y13211D01* X32656Y13220D01* X32631Y13231D01* X32608Y13244D01* X32585Y13259D01* X32564Y13276D01* X32545Y13295D01* X32527Y13316D01* X32512Y13338D01* X32498Y13362D01* X32487Y13386D01* X32478Y13412D01* X32474Y13420D01* X32470Y13427D01* X32465Y13432D01* Y13563D01* X32469Y13567D01* X32473Y13574D01* X32476Y13582D01* X32485Y13608D01* X32496Y13633D01* X32509Y13657D01* X32524Y13679D01* X32541Y13700D01* X32560Y13719D01* X32581Y13737D01* X32603Y13752D01* X32627Y13766D01* X32651Y13777D01* X32677Y13786D01* X32685Y13790D01* X32692Y13794D01* X32699Y13800D01* X32704Y13807D01* X32708Y13815D01* X32711Y13823D01* X32712Y13832D01* X32712Y13840D01* X32710Y13849D01* X32707Y13857D01* X32702Y13864D01* X32696Y13871D01* X32689Y13876D01* X32682Y13880D01* X32673Y13883D01* X32665Y13884D01* X32656Y13884D01* X32648Y13882D01* X32613Y13870D01* X32581Y13855D01* X32549Y13837D01* X32520Y13816D01* X32492Y13793D01* X32467Y13767D01* X32465Y13765D01* Y15214D01* X32477Y15202D01* X32505Y15179D01* X32535Y15159D01* X32567Y15141D01* X32600Y15127D01* X32634Y15115D01* X32643Y15113D01* X32652Y15113D01* X32660Y15115D01* X32668Y15117D01* X32676Y15122D01* X32683Y15127D01* X32689Y15134D01* X32693Y15141D01* X32696Y15149D01* X32698Y15158D01* X32698Y15167D01* X32697Y15175D01* X32694Y15183D01* X32690Y15191D01* X32684Y15198D01* X32677Y15204D01* X32670Y15208D01* X32662Y15211D01* X32636Y15220D01* X32611Y15231D01* X32588Y15244D01* X32565Y15259D01* X32544Y15276D01* X32525Y15295D01* X32507Y15316D01* X32492Y15338D01* X32478Y15362D01* X32467Y15386D01* X32465Y15391D01* Y15609D01* X32476Y15633D01* X32489Y15657D01* X32504Y15679D01* X32521Y15700D01* X32540Y15719D01* X32561Y15737D01* X32583Y15752D01* X32607Y15766D01* X32631Y15777D01* X32657Y15786D01* X32665Y15790D01* X32672Y15794D01* X32679Y15800D01* X32684Y15807D01* X32688Y15815D01* X32691Y15823D01* X32692Y15832D01* X32692Y15840D01* X32690Y15849D01* X32687Y15857D01* X32682Y15864D01* X32676Y15871D01* X32669Y15876D01* X32662Y15880D01* X32653Y15883D01* X32645Y15884D01* X32636Y15884D01* X32628Y15882D01* X32593Y15870D01* X32561Y15855D01* X32529Y15837D01* X32500Y15816D01* X32472Y15793D01* X32465Y15785D01* Y17196D01* X32485Y17179D01* X32515Y17159D01* X32547Y17141D01* X32580Y17127D01* X32614Y17115D01* X32623Y17113D01* X32632Y17113D01* X32640Y17115D01* X32648Y17117D01* X32656Y17122D01* X32663Y17127D01* X32669Y17134D01* X32673Y17141D01* X32676Y17149D01* X32678Y17158D01* X32678Y17167D01* X32677Y17175D01* X32674Y17183D01* X32670Y17191D01* X32664Y17198D01* X32657Y17204D01* X32650Y17208D01* X32642Y17211D01* X32616Y17220D01* X32591Y17231D01* X32568Y17244D01* X32545Y17259D01* X32524Y17276D01* X32505Y17295D01* X32487Y17316D01* X32472Y17338D01* X32465Y17349D01* Y17650D01* X32469Y17657D01* X32484Y17679D01* X32501Y17700D01* X32520Y17719D01* X32541Y17737D01* X32563Y17752D01* X32587Y17766D01* X32611Y17777D01* X32637Y17786D01* X32645Y17790D01* X32652Y17794D01* X32659Y17800D01* X32664Y17807D01* X32668Y17815D01* X32671Y17823D01* X32672Y17832D01* X32672Y17840D01* X32670Y17849D01* X32667Y17857D01* X32662Y17864D01* X32656Y17871D01* X32649Y17876D01* X32642Y17880D01* X32633Y17883D01* X32625Y17884D01* X32616Y17884D01* X32608Y17882D01* X32573Y17870D01* X32541Y17855D01* X32509Y17837D01* X32480Y17816D01* X32465Y17804D01* Y19179D01* X32465Y19179D01* X32495Y19159D01* X32527Y19141D01* X32560Y19127D01* X32594Y19115D01* X32603Y19113D01* X32612Y19113D01* X32620Y19115D01* X32628Y19117D01* X32636Y19122D01* X32643Y19127D01* X32649Y19134D01* X32653Y19141D01* X32656Y19149D01* X32658Y19158D01* X32658Y19167D01* X32657Y19175D01* X32654Y19183D01* X32650Y19191D01* X32644Y19198D01* X32637Y19204D01* X32630Y19208D01* X32622Y19211D01* X32596Y19220D01* X32571Y19231D01* X32548Y19244D01* X32525Y19259D01* X32504Y19276D01* X32485Y19295D01* X32467Y19316D01* X32465Y19319D01* Y19680D01* X32481Y19700D01* X32500Y19719D01* X32521Y19737D01* X32543Y19752D01* X32567Y19766D01* X32591Y19777D01* X32617Y19786D01* X32625Y19790D01* X32632Y19794D01* X32639Y19800D01* X32644Y19807D01* X32648Y19815D01* X32651Y19823D01* X32652Y19832D01* X32652Y19840D01* X32650Y19849D01* X32647Y19857D01* X32642Y19864D01* X32636Y19871D01* X32629Y19876D01* X32622Y19880D01* X32613Y19883D01* X32605Y19884D01* X32596Y19884D01* X32588Y19882D01* X32553Y19870D01* X32521Y19855D01* X32489Y19837D01* X32465Y19820D01* Y21166D01* X32475Y21159D01* X32507Y21141D01* X32540Y21127D01* X32574Y21115D01* X32583Y21113D01* X32592Y21113D01* X32600Y21115D01* X32608Y21117D01* X32616Y21122D01* X32623Y21127D01* X32629Y21134D01* X32633Y21141D01* X32636Y21149D01* X32638Y21158D01* X32638Y21167D01* X32637Y21175D01* X32634Y21183D01* X32630Y21191D01* X32624Y21198D01* X32617Y21204D01* X32610Y21208D01* X32602Y21211D01* X32576Y21220D01* X32551Y21231D01* X32528Y21244D01* X32505Y21259D01* X32484Y21276D01* X32465Y21295D01* Y21704D01* X32480Y21719D01* X32501Y21737D01* X32523Y21752D01* X32547Y21766D01* X32571Y21777D01* X32597Y21786D01* X32605Y21790D01* X32612Y21794D01* X32619Y21800D01* X32624Y21807D01* X32628Y21815D01* X32631Y21823D01* X32632Y21832D01* X32632Y21840D01* X32630Y21849D01* X32627Y21857D01* X32622Y21864D01* X32616Y21871D01* X32609Y21876D01* X32602Y21880D01* X32593Y21883D01* X32585Y21884D01* X32576Y21884D01* X32568Y21882D01* X32533Y21870D01* X32501Y21855D01* X32469Y21837D01* X32465Y21834D01* Y23153D01* X32487Y23141D01* X32520Y23127D01* X32554Y23115D01* X32563Y23113D01* X32572Y23113D01* X32580Y23115D01* X32588Y23117D01* X32596Y23122D01* X32603Y23127D01* X32609Y23134D01* X32613Y23141D01* X32616Y23149D01* X32618Y23158D01* X32618Y23167D01* X32617Y23175D01* X32614Y23183D01* X32610Y23191D01* X32604Y23198D01* X32597Y23204D01* X32590Y23208D01* X32582Y23211D01* X32556Y23220D01* X32531Y23231D01* X32508Y23244D01* X32485Y23259D01* X32465Y23276D01* Y23723D01* X32481Y23737D01* X32503Y23752D01* X32527Y23766D01* X32551Y23777D01* X32577Y23786D01* X32585Y23790D01* X32592Y23794D01* X32599Y23800D01* X32604Y23807D01* X32608Y23815D01* X32611Y23823D01* X32612Y23832D01* X32612Y23840D01* X32610Y23849D01* X32607Y23857D01* X32602Y23864D01* X32596Y23871D01* X32589Y23876D01* X32582Y23880D01* X32573Y23883D01* X32565Y23884D01* X32556Y23884D01* X32548Y23882D01* X32513Y23870D01* X32481Y23855D01* X32465Y23846D01* Y25142D01* X32467Y25141D01* X32500Y25127D01* X32534Y25115D01* X32543Y25113D01* X32552Y25113D01* X32560Y25115D01* X32568Y25117D01* X32576Y25122D01* X32583Y25127D01* X32589Y25134D01* X32593Y25141D01* X32596Y25149D01* X32598Y25158D01* X32598Y25167D01* X32597Y25175D01* X32594Y25183D01* X32590Y25191D01* X32584Y25198D01* X32577Y25204D01* X32570Y25208D01* X32562Y25211D01* X32536Y25220D01* X32511Y25231D01* X32488Y25244D01* X32465Y25259D01* Y25740D01* X32483Y25752D01* X32507Y25766D01* X32531Y25777D01* X32557Y25786D01* X32565Y25790D01* X32572Y25794D01* X32579Y25800D01* X32584Y25807D01* X32588Y25815D01* X32591Y25823D01* X32592Y25832D01* X32592Y25840D01* X32590Y25849D01* X32587Y25857D01* X32582Y25864D01* X32576Y25871D01* X32569Y25876D01* X32562Y25880D01* X32553Y25883D01* X32545Y25884D01* X32536Y25884D01* X32528Y25882D01* X32493Y25870D01* X32465Y25857D01* Y27133D01* X32480Y27127D01* X32514Y27115D01* X32523Y27113D01* X32532Y27113D01* X32540Y27115D01* X32548Y27117D01* X32556Y27122D01* X32563Y27127D01* X32569Y27134D01* X32573Y27141D01* X32576Y27149D01* X32578Y27158D01* X32578Y27167D01* X32577Y27175D01* X32574Y27183D01* X32570Y27191D01* X32564Y27198D01* X32557Y27204D01* X32550Y27208D01* X32542Y27211D01* X32516Y27220D01* X32491Y27231D01* X32468Y27244D01* X32465Y27246D01* Y27754D01* X32487Y27766D01* X32511Y27777D01* X32537Y27786D01* X32545Y27790D01* X32552Y27794D01* X32559Y27800D01* X32564Y27807D01* X32568Y27815D01* X32571Y27823D01* X32572Y27832D01* X32572Y27840D01* X32570Y27849D01* X32567Y27857D01* X32562Y27864D01* X32556Y27871D01* X32549Y27876D01* X32542Y27880D01* X32533Y27883D01* X32525Y27884D01* X32516Y27884D01* X32508Y27882D01* X32473Y27870D01* X32465Y27866D01* Y29125D01* X32494Y29115D01* X32503Y29113D01* X32512Y29113D01* X32520Y29115D01* X32528Y29117D01* X32536Y29122D01* X32543Y29127D01* X32549Y29134D01* X32553Y29141D01* X32556Y29149D01* X32558Y29158D01* X32558Y29167D01* X32557Y29175D01* X32554Y29183D01* X32550Y29191D01* X32544Y29198D01* X32537Y29204D01* X32530Y29208D01* X32522Y29211D01* X32496Y29220D01* X32471Y29231D01* X32465Y29234D01* Y29765D01* X32467Y29766D01* X32491Y29777D01* X32517Y29786D01* X32525Y29790D01* X32532Y29794D01* X32539Y29800D01* X32544Y29807D01* X32548Y29815D01* X32551Y29823D01* X32552Y29832D01* X32552Y29840D01* X32550Y29849D01* X32547Y29857D01* X32542Y29864D01* X32536Y29871D01* X32529Y29876D01* X32522Y29880D01* X32513Y29883D01* X32505Y29884D01* X32496Y29884D01* X32488Y29882D01* X32465Y29874D01* Y31118D01* X32474Y31115D01* X32483Y31113D01* X32492Y31113D01* X32500Y31115D01* X32508Y31117D01* X32516Y31122D01* X32523Y31127D01* X32529Y31134D01* X32533Y31141D01* X32536Y31149D01* X32538Y31158D01* X32538Y31167D01* X32537Y31175D01* X32534Y31183D01* X32530Y31191D01* X32524Y31198D01* X32517Y31204D01* X32510Y31208D01* X32502Y31211D01* X32476Y31220D01* X32465Y31225D01* Y31775D01* X32471Y31777D01* X32497Y31786D01* X32505Y31790D01* X32512Y31794D01* X32519Y31800D01* X32524Y31807D01* X32528Y31815D01* X32531Y31823D01* X32532Y31832D01* X32532Y31840D01* X32530Y31849D01* X32527Y31857D01* X32522Y31864D01* X32516Y31871D01* X32509Y31876D01* X32502Y31880D01* X32493Y31883D01* X32485Y31884D01* X32476Y31884D01* X32468Y31882D01* X32465Y31881D01* Y33113D01* X32472Y33113D01* X32480Y33115D01* X32488Y33117D01* X32496Y33122D01* X32503Y33127D01* X32509Y33134D01* X32513Y33141D01* X32516Y33149D01* X32518Y33158D01* X32518Y33167D01* X32517Y33175D01* X32514Y33183D01* X32510Y33191D01* X32504Y33198D01* X32497Y33204D01* X32490Y33208D01* X32482Y33211D01* X32465Y33217D01* Y33782D01* X32477Y33786D01* X32485Y33790D01* X32492Y33794D01* X32499Y33800D01* X32504Y33807D01* X32508Y33815D01* X32511Y33823D01* X32512Y33832D01* X32512Y33840D01* X32510Y33849D01* X32507Y33857D01* X32502Y33864D01* X32496Y33871D01* X32489Y33876D01* X32482Y33880D01* X32473Y33883D01* X32465Y33884D01* Y35116D01* X32468Y35117D01* X32476Y35122D01* X32483Y35127D01* X32489Y35134D01* X32493Y35141D01* X32496Y35149D01* X32498Y35158D01* X32498Y35167D01* X32497Y35175D01* X32494Y35183D01* X32490Y35191D01* X32484Y35198D01* X32477Y35204D01* X32470Y35208D01* X32465Y35210D01* Y35790D01* X32472Y35794D01* X32479Y35800D01* X32484Y35807D01* X32488Y35815D01* X32491Y35823D01* X32492Y35832D01* X32492Y35840D01* X32490Y35849D01* X32487Y35857D01* X32482Y35864D01* X32476Y35871D01* X32469Y35876D01* X32465Y35878D01* Y37130D01* X32469Y37134D01* X32473Y37141D01* X32476Y37149D01* X32478Y37158D01* X32478Y37167D01* X32477Y37175D01* X32474Y37183D01* X32470Y37191D01* X32465Y37197D01* Y37809D01* X32468Y37815D01* X32471Y37823D01* X32472Y37832D01* X32472Y37840D01* X32470Y37849D01* X32467Y37857D01* X32465Y37859D01* Y40000D01* G37* G36* Y11549D02*X32468Y11550D01* X32476Y11555D01* X32483Y11560D01* X32489Y11567D01* X32493Y11574D01* X32496Y11582D01* X32505Y11608D01* X32516Y11633D01* X32529Y11657D01* X32544Y11679D01* X32561Y11700D01* X32580Y11719D01* X32601Y11737D01* X32623Y11752D01* X32647Y11766D01* X32671Y11777D01* X32697Y11786D01* X32705Y11790D01* X32712Y11794D01* X32719Y11800D01* X32724Y11807D01* Y11198D01* X32717Y11204D01* X32710Y11208D01* X32702Y11211D01* X32676Y11220D01* X32651Y11231D01* X32628Y11244D01* X32605Y11259D01* X32584Y11276D01* X32565Y11295D01* X32547Y11316D01* X32532Y11338D01* X32518Y11362D01* X32507Y11386D01* X32498Y11412D01* X32494Y11420D01* X32490Y11427D01* X32484Y11434D01* X32477Y11439D01* X32469Y11443D01* X32465Y11445D01* Y11549D01* G37* G36* Y11259D02*X32468Y11255D01* X32492Y11227D01* X32517Y11202D01* X32545Y11179D01* X32575Y11159D01* X32607Y11141D01* X32640Y11127D01* X32674Y11115D01* X32683Y11113D01* X32692Y11113D01* X32700Y11115D01* X32708Y11117D01* X32716Y11122D01* X32723Y11127D01* X32724Y11128D01* Y9879D01* X32722Y9880D01* X32713Y9883D01* X32705Y9884D01* X32696Y9884D01* X32688Y9882D01* X32653Y9870D01* X32621Y9855D01* X32589Y9837D01* X32560Y9816D01* X32532Y9793D01* X32507Y9767D01* X32484Y9739D01* X32465Y9711D01* Y11259D01* G37* G36* Y9546D02*X32472Y9546D01* X32480Y9547D01* X32488Y9550D01* X32496Y9555D01* X32503Y9560D01* X32509Y9567D01* X32513Y9574D01* X32516Y9582D01* X32525Y9608D01* X32536Y9633D01* X32549Y9657D01* X32564Y9679D01* X32581Y9700D01* X32600Y9719D01* X32621Y9737D01* X32643Y9752D01* X32667Y9766D01* X32691Y9777D01* X32717Y9786D01* X32724Y9789D01* Y9210D01* X32722Y9211D01* X32696Y9220D01* X32671Y9231D01* X32648Y9244D01* X32625Y9259D01* X32604Y9276D01* X32585Y9295D01* X32567Y9316D01* X32552Y9338D01* X32538Y9362D01* X32527Y9386D01* X32518Y9412D01* X32514Y9420D01* X32510Y9427D01* X32504Y9434D01* X32497Y9439D01* X32489Y9443D01* X32481Y9446D01* X32472Y9447D01* X32465Y9447D01* Y9546D01* G37* G36* Y9288D02*X32467Y9284D01* X32488Y9255D01* X32512Y9227D01* X32537Y9202D01* X32565Y9179D01* X32595Y9159D01* X32627Y9141D01* X32660Y9127D01* X32694Y9115D01* X32703Y9113D01* X32712Y9113D01* X32720Y9115D01* X32724Y9116D01* Y7884D01* X32716Y7884D01* X32708Y7882D01* X32673Y7870D01* X32641Y7855D01* X32609Y7837D01* X32580Y7816D01* X32552Y7793D01* X32527Y7767D01* X32504Y7739D01* X32484Y7709D01* X32466Y7677D01* X32465Y7675D01* Y9288D01* G37* G36* Y7552D02*X32466Y7551D01* X32474Y7548D01* X32483Y7546D01* X32492Y7546D01* X32500Y7547D01* X32508Y7550D01* X32516Y7555D01* X32523Y7560D01* X32529Y7567D01* X32533Y7574D01* X32536Y7582D01* X32545Y7608D01* X32556Y7633D01* X32569Y7657D01* X32584Y7679D01* X32601Y7700D01* X32620Y7719D01* X32641Y7737D01* X32663Y7752D01* X32687Y7766D01* X32711Y7777D01* X32724Y7782D01* Y7217D01* X32716Y7220D01* X32691Y7231D01* X32668Y7244D01* X32645Y7259D01* X32624Y7276D01* X32605Y7295D01* X32587Y7316D01* X32572Y7338D01* X32558Y7362D01* X32547Y7386D01* X32538Y7412D01* X32534Y7420D01* X32530Y7427D01* X32524Y7434D01* X32517Y7439D01* X32509Y7443D01* X32501Y7446D01* X32492Y7447D01* X32484Y7447D01* X32475Y7445D01* X32467Y7442D01* X32465Y7441D01* Y7552D01* G37* G36* Y7325D02*X32469Y7316D01* X32487Y7284D01* X32508Y7255D01* X32532Y7227D01* X32557Y7202D01* X32585Y7179D01* X32615Y7159D01* X32647Y7141D01* X32680Y7127D01* X32714Y7115D01* X32723Y7113D01* X32724D01* Y5881D01* X32693Y5870D01* X32661Y5855D01* X32629Y5837D01* X32600Y5816D01* X32572Y5793D01* X32547Y5767D01* X32524Y5739D01* X32504Y5709D01* X32486Y5677D01* X32472Y5644D01* X32465Y5625D01* Y7325D01* G37* G36* Y5571D02*X32467Y5568D01* X32472Y5561D01* X32479Y5556D01* X32486Y5551D01* X32494Y5548D01* X32503Y5546D01* X32512Y5546D01* X32520Y5547D01* X32528Y5550D01* X32536Y5555D01* X32543Y5560D01* X32549Y5567D01* X32553Y5574D01* X32556Y5582D01* X32565Y5608D01* X32576Y5633D01* X32589Y5657D01* X32604Y5679D01* X32621Y5700D01* X32640Y5719D01* X32661Y5737D01* X32683Y5752D01* X32707Y5766D01* X32724Y5774D01* Y5225D01* X32711Y5231D01* X32688Y5244D01* X32665Y5259D01* X32644Y5276D01* X32625Y5295D01* X32607Y5316D01* X32592Y5338D01* X32578Y5362D01* X32567Y5386D01* X32558Y5412D01* X32554Y5420D01* X32550Y5427D01* X32544Y5434D01* X32537Y5439D01* X32529Y5443D01* X32521Y5446D01* X32512Y5447D01* X32504Y5447D01* X32495Y5445D01* X32487Y5442D01* X32480Y5437D01* X32473Y5431D01* X32468Y5424D01* X32465Y5419D01* Y5571D01* G37* G36* Y5374D02*X32474Y5349D01* X32489Y5316D01* X32507Y5284D01* X32528Y5255D01* X32552Y5227D01* X32577Y5202D01* X32605Y5179D01* X32635Y5159D01* X32667Y5141D01* X32700Y5127D01* X32724Y5119D01* Y3874D01* X32713Y3870D01* X32681Y3855D01* X32649Y3837D01* X32620Y3816D01* X32592Y3793D01* X32567Y3767D01* X32544Y3739D01* X32524Y3709D01* X32506Y3677D01* X32492Y3644D01* X32480Y3610D01* X32478Y3601D01* X32478Y3593D01* X32479Y3584D01* X32482Y3576D01* X32487Y3568D01* X32492Y3561D01* X32499Y3556D01* X32506Y3551D01* X32514Y3548D01* X32523Y3546D01* X32532Y3546D01* X32540Y3547D01* X32548Y3550D01* X32556Y3555D01* X32563Y3560D01* X32569Y3567D01* X32573Y3574D01* X32576Y3582D01* X32585Y3608D01* X32596Y3633D01* X32609Y3657D01* X32624Y3679D01* X32641Y3700D01* X32660Y3719D01* X32681Y3737D01* X32703Y3752D01* X32724Y3764D01* Y3235D01* X32708Y3244D01* X32685Y3259D01* X32664Y3276D01* X32645Y3295D01* X32627Y3316D01* X32612Y3338D01* X32598Y3362D01* X32587Y3386D01* X32578Y3412D01* X32574Y3420D01* X32570Y3427D01* X32564Y3434D01* X32557Y3439D01* X32549Y3443D01* X32541Y3446D01* X32532Y3447D01* X32524Y3447D01* X32515Y3445D01* X32507Y3442D01* X32500Y3437D01* X32493Y3431D01* X32488Y3424D01* X32484Y3417D01* X32481Y3409D01* X32480Y3400D01* X32480Y3391D01* X32482Y3383D01* X32494Y3349D01* X32509Y3316D01* X32527Y3284D01* X32548Y3255D01* X32572Y3227D01* X32597Y3202D01* X32625Y3179D01* X32655Y3159D01* X32687Y3141D01* X32720Y3127D01* X32724Y3125D01* Y1866D01* X32701Y1855D01* X32669Y1837D01* X32640Y1816D01* X32612Y1793D01* X32587Y1767D01* X32564Y1739D01* X32544Y1709D01* X32526Y1677D01* X32512Y1644D01* X32500Y1610D01* X32498Y1601D01* X32498Y1593D01* X32499Y1584D01* X32502Y1576D01* X32507Y1568D01* X32512Y1561D01* X32519Y1556D01* X32526Y1551D01* X32534Y1548D01* X32543Y1546D01* X32552Y1546D01* X32560Y1547D01* X32568Y1550D01* X32576Y1555D01* X32583Y1560D01* X32589Y1567D01* X32593Y1574D01* X32596Y1582D01* X32605Y1608D01* X32616Y1633D01* X32629Y1657D01* X32644Y1679D01* X32661Y1700D01* X32680Y1719D01* X32701Y1737D01* X32723Y1752D01* X32724Y1753D01* Y1246D01* X32705Y1259D01* X32684Y1276D01* X32665Y1295D01* X32647Y1316D01* X32632Y1338D01* X32618Y1362D01* X32607Y1386D01* X32598Y1412D01* X32594Y1420D01* X32590Y1427D01* X32584Y1434D01* X32577Y1439D01* X32569Y1443D01* X32561Y1446D01* X32552Y1447D01* X32544Y1447D01* X32535Y1445D01* X32527Y1442D01* X32520Y1437D01* X32513Y1431D01* X32508Y1424D01* X32504Y1417D01* X32501Y1409D01* X32500Y1400D01* X32500Y1391D01* X32502Y1383D01* X32514Y1349D01* X32529Y1316D01* X32547Y1284D01* X32568Y1255D01* X32592Y1227D01* X32617Y1202D01* X32645Y1179D01* X32675Y1159D01* X32707Y1141D01* X32724Y1134D01* Y0D01* X32465D01* Y5374D01* G37* G36* X32724Y40000D02*X32904D01* Y37625D01* X32895Y37651D01* X32880Y37683D01* X32862Y37715D01* X32841Y37744D01* X32817Y37772D01* X32792Y37797D01* X32764Y37820D01* X32734Y37840D01* X32724Y37846D01* Y39165D01* X32749Y39183D01* X32777Y39207D01* X32802Y39232D01* X32825Y39260D01* X32845Y39290D01* X32863Y39322D01* X32877Y39355D01* X32889Y39389D01* X32891Y39398D01* X32891Y39407D01* X32890Y39415D01* X32887Y39423D01* X32882Y39431D01* X32877Y39438D01* X32870Y39444D01* X32863Y39448D01* X32855Y39451D01* X32846Y39453D01* X32837Y39453D01* X32829Y39452D01* X32821Y39449D01* X32813Y39445D01* X32806Y39439D01* X32800Y39433D01* X32796Y39425D01* X32793Y39417D01* X32784Y39391D01* X32773Y39366D01* X32760Y39343D01* X32745Y39320D01* X32728Y39299D01* X32724Y39295D01* Y39704D01* X32724Y39704D01* X32742Y39683D01* X32757Y39661D01* X32771Y39637D01* X32782Y39613D01* X32791Y39587D01* X32795Y39579D01* X32799Y39572D01* X32805Y39565D01* X32812Y39560D01* X32820Y39556D01* X32828Y39553D01* X32837Y39552D01* X32845Y39552D01* X32854Y39554D01* X32862Y39557D01* X32869Y39562D01* X32876Y39568D01* X32881Y39575D01* X32885Y39582D01* X32888Y39591D01* X32889Y39599D01* X32889Y39608D01* X32887Y39617D01* X32875Y39651D01* X32860Y39683D01* X32842Y39715D01* X32821Y39744D01* X32797Y39772D01* X32772Y39797D01* X32744Y39820D01* X32724Y39834D01* Y40000D01* G37* G36* X32904Y0D02*X32724D01* Y1134D01* X32740Y1127D01* X32774Y1115D01* X32783Y1113D01* X32792Y1113D01* X32800Y1115D01* X32808Y1117D01* X32816Y1122D01* X32823Y1127D01* X32829Y1134D01* X32833Y1141D01* X32836Y1149D01* X32838Y1158D01* X32838Y1167D01* X32837Y1175D01* X32834Y1183D01* X32830Y1191D01* X32824Y1198D01* X32817Y1204D01* X32810Y1208D01* X32802Y1211D01* X32776Y1220D01* X32751Y1231D01* X32728Y1244D01* X32724Y1246D01* Y1753D01* X32747Y1766D01* X32771Y1777D01* X32797Y1786D01* X32805Y1790D01* X32812Y1794D01* X32819Y1800D01* X32824Y1807D01* X32828Y1815D01* X32831Y1823D01* X32832Y1832D01* X32832Y1840D01* X32830Y1849D01* X32827Y1857D01* X32822Y1864D01* X32816Y1871D01* X32809Y1876D01* X32802Y1880D01* X32793Y1883D01* X32785Y1884D01* X32776Y1884D01* X32768Y1882D01* X32733Y1870D01* X32724Y1866D01* Y3125D01* X32754Y3115D01* X32763Y3113D01* X32772Y3113D01* X32780Y3115D01* X32788Y3117D01* X32796Y3122D01* X32803Y3127D01* X32809Y3134D01* X32813Y3141D01* X32816Y3149D01* X32818Y3158D01* X32818Y3167D01* X32817Y3175D01* X32814Y3183D01* X32810Y3191D01* X32804Y3198D01* X32797Y3204D01* X32790Y3208D01* X32782Y3211D01* X32756Y3220D01* X32731Y3231D01* X32724Y3235D01* Y3764D01* X32727Y3766D01* X32751Y3777D01* X32777Y3786D01* X32785Y3790D01* X32792Y3794D01* X32799Y3800D01* X32804Y3807D01* X32808Y3815D01* X32811Y3823D01* X32812Y3832D01* X32812Y3840D01* X32810Y3849D01* X32807Y3857D01* X32802Y3864D01* X32796Y3871D01* X32789Y3876D01* X32782Y3880D01* X32773Y3883D01* X32765Y3884D01* X32756Y3884D01* X32748Y3882D01* X32724Y3874D01* Y5119D01* X32734Y5115D01* X32743Y5113D01* X32752Y5113D01* X32760Y5115D01* X32768Y5117D01* X32776Y5122D01* X32783Y5127D01* X32789Y5134D01* X32793Y5141D01* X32796Y5149D01* X32798Y5158D01* X32798Y5167D01* X32797Y5175D01* X32794Y5183D01* X32790Y5191D01* X32784Y5198D01* X32777Y5204D01* X32770Y5208D01* X32762Y5211D01* X32736Y5220D01* X32724Y5225D01* Y5774D01* X32731Y5777D01* X32757Y5786D01* X32765Y5790D01* X32772Y5794D01* X32779Y5800D01* X32784Y5807D01* X32788Y5815D01* X32791Y5823D01* X32792Y5832D01* X32792Y5840D01* X32790Y5849D01* X32787Y5857D01* X32782Y5864D01* X32776Y5871D01* X32769Y5876D01* X32762Y5880D01* X32753Y5883D01* X32745Y5884D01* X32736Y5884D01* X32728Y5882D01* X32724Y5881D01* Y7113D01* X32732Y7113D01* X32740Y7115D01* X32748Y7117D01* X32756Y7122D01* X32763Y7127D01* X32769Y7134D01* X32773Y7141D01* X32776Y7149D01* X32778Y7158D01* X32778Y7167D01* X32777Y7175D01* X32774Y7183D01* X32770Y7191D01* X32764Y7198D01* X32757Y7204D01* X32750Y7208D01* X32742Y7211D01* X32724Y7217D01* Y7782D01* X32737Y7786D01* X32745Y7790D01* X32752Y7794D01* X32759Y7800D01* X32764Y7807D01* X32768Y7815D01* X32771Y7823D01* X32772Y7832D01* X32772Y7840D01* X32770Y7849D01* X32767Y7857D01* X32762Y7864D01* X32756Y7871D01* X32749Y7876D01* X32742Y7880D01* X32733Y7883D01* X32725Y7884D01* X32724D01* Y9116D01* X32728Y9117D01* X32736Y9122D01* X32743Y9127D01* X32749Y9134D01* X32753Y9141D01* X32756Y9149D01* X32758Y9158D01* X32758Y9167D01* X32757Y9175D01* X32754Y9183D01* X32750Y9191D01* X32744Y9198D01* X32737Y9204D01* X32730Y9208D01* X32724Y9210D01* Y9789D01* X32725Y9790D01* X32732Y9794D01* X32739Y9800D01* X32744Y9807D01* X32748Y9815D01* X32751Y9823D01* X32752Y9832D01* X32752Y9840D01* X32750Y9849D01* X32747Y9857D01* X32742Y9864D01* X32736Y9871D01* X32729Y9876D01* X32724Y9879D01* Y11128D01* X32729Y11134D01* X32733Y11141D01* X32736Y11149D01* X32738Y11158D01* X32738Y11167D01* X32737Y11175D01* X32734Y11183D01* X32730Y11191D01* X32724Y11198D01* X32724Y11198D01* Y11807D01* X32724Y11807D01* X32728Y11815D01* X32731Y11823D01* X32732Y11832D01* X32732Y11840D01* X32730Y11849D01* X32727Y11857D01* X32724Y11861D01* Y23140D01* X32727Y23135D01* X32733Y23128D01* X32740Y23123D01* X32747Y23119D01* X32756Y23116D01* X32764Y23115D01* X32773Y23115D01* X32781Y23117D01* X32816Y23129D01* X32848Y23144D01* X32880Y23162D01* X32904Y23180D01* Y21834D01* X32894Y21840D01* X32862Y21858D01* X32829Y21873D01* X32795Y21884D01* X32786Y21886D01* X32777Y21886D01* X32769Y21885D01* X32761Y21882D01* X32753Y21878D01* X32746Y21872D01* X32740Y21865D01* X32736Y21858D01* X32733Y21850D01* X32731Y21841D01* X32731Y21833D01* X32732Y21824D01* X32735Y21816D01* X32739Y21808D01* X32745Y21801D01* X32752Y21796D01* X32759Y21791D01* X32767Y21788D01* X32793Y21779D01* X32818Y21768D01* X32841Y21755D01* X32864Y21740D01* X32885Y21723D01* X32904Y21704D01* Y21295D01* X32889Y21280D01* X32868Y21262D01* X32846Y21247D01* X32822Y21233D01* X32798Y21222D01* X32772Y21213D01* X32764Y21209D01* X32757Y21205D01* X32750Y21199D01* X32745Y21192D01* X32741Y21184D01* X32738Y21176D01* X32737Y21167D01* X32737Y21159D01* X32739Y21150D01* X32742Y21142D01* X32747Y21135D01* X32753Y21128D01* X32760Y21123D01* X32767Y21119D01* X32776Y21116D01* X32784Y21115D01* X32793Y21115D01* X32801Y21117D01* X32836Y21129D01* X32868Y21144D01* X32900Y21162D01* X32904Y21165D01* Y19846D01* X32882Y19858D01* X32849Y19873D01* X32815Y19884D01* X32806Y19886D01* X32797Y19886D01* X32789Y19885D01* X32781Y19882D01* X32773Y19878D01* X32766Y19872D01* X32760Y19865D01* X32756Y19858D01* X32753Y19850D01* X32751Y19841D01* X32751Y19833D01* X32752Y19824D01* X32755Y19816D01* X32759Y19808D01* X32765Y19801D01* X32772Y19796D01* X32779Y19791D01* X32787Y19788D01* X32813Y19779D01* X32838Y19768D01* X32861Y19755D01* X32884Y19740D01* X32904Y19724D01* Y19276D01* X32888Y19262D01* X32866Y19247D01* X32842Y19233D01* X32818Y19222D01* X32792Y19213D01* X32784Y19209D01* X32777Y19205D01* X32770Y19199D01* X32765Y19192D01* X32761Y19184D01* X32758Y19176D01* X32757Y19167D01* X32757Y19159D01* X32759Y19150D01* X32762Y19142D01* X32767Y19135D01* X32773Y19128D01* X32780Y19123D01* X32787Y19119D01* X32796Y19116D01* X32804Y19115D01* X32813Y19115D01* X32821Y19117D01* X32856Y19129D01* X32888Y19144D01* X32904Y19153D01* Y17857D01* X32902Y17858D01* X32869Y17873D01* X32835Y17884D01* X32826Y17886D01* X32817Y17886D01* X32809Y17885D01* X32801Y17882D01* X32793Y17878D01* X32786Y17872D01* X32780Y17865D01* X32776Y17858D01* X32773Y17850D01* X32771Y17841D01* X32771Y17833D01* X32772Y17824D01* X32775Y17816D01* X32779Y17808D01* X32785Y17801D01* X32792Y17796D01* X32799Y17791D01* X32807Y17788D01* X32833Y17779D01* X32858Y17768D01* X32881Y17755D01* X32904Y17740D01* Y17259D01* X32886Y17247D01* X32862Y17233D01* X32838Y17222D01* X32812Y17213D01* X32804Y17209D01* X32797Y17205D01* X32790Y17199D01* X32785Y17192D01* X32781Y17184D01* X32778Y17176D01* X32777Y17167D01* X32777Y17159D01* X32779Y17150D01* X32782Y17142D01* X32787Y17135D01* X32793Y17128D01* X32800Y17123D01* X32807Y17119D01* X32816Y17116D01* X32824Y17115D01* X32833Y17115D01* X32841Y17117D01* X32876Y17129D01* X32904Y17142D01* Y15866D01* X32889Y15873D01* X32855Y15884D01* X32846Y15886D01* X32837Y15886D01* X32829Y15885D01* X32821Y15882D01* X32813Y15878D01* X32806Y15872D01* X32800Y15865D01* X32796Y15858D01* X32793Y15850D01* X32791Y15841D01* X32791Y15833D01* X32792Y15824D01* X32795Y15816D01* X32799Y15808D01* X32805Y15801D01* X32812Y15796D01* X32819Y15791D01* X32827Y15788D01* X32853Y15779D01* X32878Y15768D01* X32901Y15755D01* X32904Y15754D01* Y15246D01* X32882Y15233D01* X32858Y15222D01* X32832Y15213D01* X32824Y15209D01* X32817Y15205D01* X32810Y15199D01* X32805Y15192D01* X32801Y15184D01* X32798Y15176D01* X32797Y15167D01* X32797Y15159D01* X32799Y15150D01* X32802Y15142D01* X32807Y15135D01* X32813Y15128D01* X32820Y15123D01* X32827Y15119D01* X32836Y15116D01* X32844Y15115D01* X32853Y15115D01* X32861Y15117D01* X32896Y15129D01* X32904Y15133D01* Y13874D01* X32875Y13884D01* X32866Y13886D01* X32857Y13886D01* X32849Y13885D01* X32841Y13882D01* X32833Y13878D01* X32826Y13872D01* X32820Y13865D01* X32816Y13858D01* X32813Y13850D01* X32811Y13841D01* X32811Y13833D01* X32812Y13824D01* X32815Y13816D01* X32819Y13808D01* X32825Y13801D01* X32832Y13796D01* X32839Y13791D01* X32847Y13788D01* X32873Y13779D01* X32898Y13768D01* X32904Y13765D01* Y13234D01* X32902Y13233D01* X32878Y13222D01* X32852Y13213D01* X32844Y13209D01* X32837Y13205D01* X32830Y13199D01* X32825Y13192D01* X32821Y13184D01* X32818Y13176D01* X32817Y13167D01* X32817Y13159D01* X32819Y13150D01* X32822Y13142D01* X32827Y13135D01* X32833Y13128D01* X32840Y13123D01* X32847Y13119D01* X32856Y13116D01* X32864Y13115D01* X32873Y13115D01* X32881Y13117D01* X32904Y13125D01* Y11881D01* X32895Y11884D01* X32886Y11886D01* X32877Y11886D01* X32869Y11885D01* X32861Y11882D01* X32853Y11878D01* X32846Y11872D01* X32840Y11865D01* X32836Y11858D01* X32833Y11850D01* X32831Y11841D01* X32831Y11833D01* X32832Y11824D01* X32835Y11816D01* X32839Y11808D01* X32845Y11801D01* X32852Y11796D01* X32859Y11791D01* X32867Y11788D01* X32893Y11779D01* X32904Y11774D01* Y11225D01* X32898Y11222D01* X32872Y11213D01* X32864Y11209D01* X32857Y11205D01* X32850Y11199D01* X32845Y11192D01* X32841Y11184D01* X32838Y11176D01* X32837Y11167D01* X32837Y11159D01* X32839Y11150D01* X32842Y11142D01* X32847Y11135D01* X32853Y11128D01* X32860Y11123D01* X32867Y11119D01* X32876Y11116D01* X32884Y11115D01* X32893Y11115D01* X32901Y11117D01* X32904Y11118D01* Y9886D01* X32897Y9886D01* X32889Y9885D01* X32881Y9882D01* X32873Y9878D01* X32866Y9872D01* X32860Y9865D01* X32856Y9858D01* X32853Y9850D01* X32851Y9841D01* X32851Y9833D01* X32852Y9824D01* X32855Y9816D01* X32859Y9808D01* X32865Y9801D01* X32872Y9796D01* X32879Y9791D01* X32887Y9788D01* X32904Y9782D01* Y9217D01* X32892Y9213D01* X32884Y9209D01* X32877Y9205D01* X32870Y9199D01* X32865Y9192D01* X32861Y9184D01* X32858Y9176D01* X32857Y9167D01* X32857Y9159D01* X32859Y9150D01* X32862Y9142D01* X32867Y9135D01* X32873Y9128D01* X32880Y9123D01* X32887Y9119D01* X32896Y9116D01* X32904Y9115D01* Y7883D01* X32901Y7882D01* X32893Y7878D01* X32886Y7872D01* X32880Y7865D01* X32876Y7858D01* X32873Y7850D01* X32871Y7841D01* X32871Y7833D01* X32872Y7824D01* X32875Y7816D01* X32879Y7808D01* X32885Y7801D01* X32892Y7796D01* X32899Y7791D01* X32904Y7789D01* Y7209D01* X32897Y7205D01* X32890Y7199D01* X32885Y7192D01* X32881Y7184D01* X32878Y7176D01* X32877Y7167D01* X32877Y7159D01* X32879Y7150D01* X32882Y7142D01* X32887Y7135D01* X32893Y7128D01* X32900Y7123D01* X32904Y7121D01* Y5870D01* X32900Y5865D01* X32896Y5858D01* X32893Y5850D01* X32891Y5841D01* X32891Y5833D01* X32892Y5824D01* X32895Y5816D01* X32899Y5808D01* X32904Y5802D01* Y5190D01* X32901Y5184D01* X32898Y5176D01* X32897Y5167D01* X32897Y5159D01* X32899Y5150D01* X32902Y5142D01* X32904Y5140D01* Y0D01* G37* G36* Y23319D02*X32888Y23299D01* X32869Y23280D01* X32848Y23262D01* X32826Y23247D01* X32802Y23233D01* X32778Y23222D01* X32752Y23213D01* X32744Y23209D01* X32737Y23205D01* X32730Y23199D01* X32725Y23192D01* X32724Y23190D01* Y23802D01* X32725Y23801D01* X32732Y23796D01* X32739Y23791D01* X32747Y23788D01* X32773Y23779D01* X32798Y23768D01* X32821Y23755D01* X32844Y23740D01* X32865Y23723D01* X32884Y23704D01* X32902Y23683D01* X32904Y23680D01* Y23319D01* G37* G36* Y23820D02*X32904Y23820D01* X32874Y23840D01* X32842Y23858D01* X32809Y23873D01* X32775Y23884D01* X32766Y23886D01* X32757Y23886D01* X32749Y23885D01* X32741Y23882D01* X32733Y23878D01* X32726Y23872D01* X32724Y23870D01* Y25121D01* X32727Y25119D01* X32736Y25116D01* X32744Y25115D01* X32753Y25115D01* X32761Y25117D01* X32796Y25129D01* X32828Y25144D01* X32860Y25162D01* X32889Y25183D01* X32904Y25196D01* Y23820D01* G37* G36* Y25350D02*X32900Y25343D01* X32885Y25320D01* X32868Y25299D01* X32849Y25280D01* X32828Y25262D01* X32806Y25247D01* X32782Y25233D01* X32758Y25222D01* X32732Y25213D01* X32724Y25209D01* X32724Y25209D01* Y25789D01* X32727Y25788D01* X32753Y25779D01* X32778Y25768D01* X32801Y25755D01* X32824Y25740D01* X32845Y25723D01* X32864Y25704D01* X32882Y25683D01* X32897Y25661D01* X32904Y25650D01* Y25350D01* G37* G36* Y25804D02*X32884Y25820D01* X32854Y25840D01* X32822Y25858D01* X32789Y25873D01* X32755Y25884D01* X32746Y25886D01* X32737Y25886D01* X32729Y25885D01* X32724Y25883D01* Y27115D01* X32724D01* X32733Y27115D01* X32741Y27117D01* X32776Y27129D01* X32808Y27144D01* X32840Y27162D01* X32869Y27183D01* X32897Y27207D01* X32904Y27214D01* Y25804D01* G37* G36* Y27391D02*X32893Y27366D01* X32880Y27343D01* X32865Y27320D01* X32848Y27299D01* X32829Y27280D01* X32808Y27262D01* X32786Y27247D01* X32762Y27233D01* X32738Y27222D01* X32724Y27217D01* Y27782D01* X32733Y27779D01* X32758Y27768D01* X32781Y27755D01* X32804Y27740D01* X32825Y27723D01* X32844Y27704D01* X32862Y27683D01* X32877Y27661D01* X32891Y27637D01* X32902Y27613D01* X32904Y27608D01* Y27391D01* G37* G36* Y27785D02*X32892Y27797D01* X32864Y27820D01* X32834Y27840D01* X32802Y27858D01* X32769Y27873D01* X32735Y27884D01* X32726Y27886D01* X32724D01* Y29118D01* X32756Y29129D01* X32788Y29144D01* X32820Y29162D01* X32849Y29183D01* X32877Y29207D01* X32902Y29232D01* X32904Y29235D01* Y27785D01* G37* G36* Y29437D02*X32900Y29433D01* X32896Y29425D01* X32893Y29417D01* X32884Y29391D01* X32873Y29366D01* X32860Y29343D01* X32845Y29320D01* X32828Y29299D01* X32809Y29280D01* X32788Y29262D01* X32766Y29247D01* X32742Y29233D01* X32724Y29225D01* Y29774D01* X32738Y29768D01* X32761Y29755D01* X32784Y29740D01* X32805Y29723D01* X32824Y29704D01* X32842Y29683D01* X32857Y29661D01* X32871Y29637D01* X32882Y29613D01* X32891Y29587D01* X32895Y29579D01* X32899Y29572D01* X32904Y29567D01* Y29437D01* G37* G36* Y29764D02*X32897Y29772D01* X32872Y29797D01* X32844Y29820D01* X32814Y29840D01* X32782Y29858D01* X32749Y29873D01* X32724Y29881D01* Y31125D01* X32736Y31129D01* X32768Y31144D01* X32800Y31162D01* X32829Y31183D01* X32857Y31207D01* X32882Y31232D01* X32904Y31259D01* Y29764D01* G37* G36* Y31450D02*X32901Y31449D01* X32893Y31445D01* X32886Y31439D01* X32880Y31433D01* X32876Y31425D01* X32873Y31417D01* X32864Y31391D01* X32853Y31366D01* X32840Y31343D01* X32825Y31320D01* X32808Y31299D01* X32789Y31280D01* X32768Y31262D01* X32746Y31247D01* X32724Y31234D01* Y31765D01* X32741Y31755D01* X32764Y31740D01* X32785Y31723D01* X32804Y31704D01* X32822Y31683D01* X32837Y31661D01* X32851Y31637D01* X32862Y31613D01* X32871Y31587D01* X32875Y31579D01* X32879Y31572D01* X32885Y31565D01* X32892Y31560D01* X32900Y31556D01* X32904Y31555D01* Y31450D01* G37* G36* Y31740D02*X32901Y31744D01* X32877Y31772D01* X32852Y31797D01* X32824Y31820D01* X32794Y31840D01* X32762Y31858D01* X32729Y31873D01* X32724Y31874D01* Y33133D01* X32748Y33144D01* X32780Y33162D01* X32809Y33183D01* X32837Y33207D01* X32862Y33232D01* X32885Y33260D01* X32904Y33288D01* Y31740D01* G37* G36* Y33453D02*X32897Y33453D01* X32889Y33452D01* X32881Y33449D01* X32873Y33445D01* X32866Y33439D01* X32860Y33433D01* X32856Y33425D01* X32853Y33417D01* X32844Y33391D01* X32833Y33366D01* X32820Y33343D01* X32805Y33320D01* X32788Y33299D01* X32769Y33280D01* X32748Y33262D01* X32726Y33247D01* X32724Y33246D01* Y33754D01* X32744Y33740D01* X32765Y33723D01* X32784Y33704D01* X32802Y33683D01* X32817Y33661D01* X32831Y33637D01* X32842Y33613D01* X32851Y33587D01* X32855Y33579D01* X32859Y33572D01* X32865Y33565D01* X32872Y33560D01* X32880Y33556D01* X32888Y33553D01* X32897Y33552D01* X32904Y33552D01* Y33453D01* G37* G36* Y33711D02*X32902Y33715D01* X32881Y33744D01* X32857Y33772D01* X32832Y33797D01* X32804Y33820D01* X32774Y33840D01* X32742Y33858D01* X32724Y33866D01* Y35142D01* X32728Y35144D01* X32760Y35162D01* X32789Y35183D01* X32817Y35207D01* X32842Y35232D01* X32865Y35260D01* X32885Y35290D01* X32903Y35322D01* X32904Y35324D01* Y33711D01* G37* G36* Y35447D02*X32903Y35448D01* X32895Y35451D01* X32886Y35453D01* X32877Y35453D01* X32869Y35452D01* X32861Y35449D01* X32853Y35445D01* X32846Y35439D01* X32840Y35433D01* X32836Y35425D01* X32833Y35417D01* X32824Y35391D01* X32813Y35366D01* X32800Y35343D01* X32785Y35320D01* X32768Y35299D01* X32749Y35280D01* X32728Y35262D01* X32724Y35259D01* Y35740D01* X32745Y35723D01* X32764Y35704D01* X32782Y35683D01* X32797Y35661D01* X32811Y35637D01* X32822Y35613D01* X32831Y35587D01* X32835Y35579D01* X32839Y35572D01* X32845Y35565D01* X32852Y35560D01* X32860Y35556D01* X32868Y35553D01* X32877Y35552D01* X32885Y35552D01* X32894Y35554D01* X32902Y35557D01* X32904Y35559D01* Y35447D01* G37* G36* Y35674D02*X32900Y35683D01* X32882Y35715D01* X32861Y35744D01* X32837Y35772D01* X32812Y35797D01* X32784Y35820D01* X32754Y35840D01* X32724Y35857D01* Y37153D01* X32740Y37162D01* X32769Y37183D01* X32797Y37207D01* X32822Y37232D01* X32845Y37260D01* X32865Y37290D01* X32883Y37322D01* X32897Y37355D01* X32904Y37374D01* Y35674D01* G37* G36* Y37428D02*X32902Y37431D01* X32897Y37438D01* X32890Y37444D01* X32883Y37448D01* X32875Y37451D01* X32866Y37453D01* X32857Y37453D01* X32849Y37452D01* X32841Y37449D01* X32833Y37445D01* X32826Y37439D01* X32820Y37433D01* X32816Y37425D01* X32813Y37417D01* X32804Y37391D01* X32793Y37366D01* X32780Y37343D01* X32765Y37320D01* X32748Y37299D01* X32729Y37280D01* X32724Y37276D01* Y37724D01* X32725Y37723D01* X32744Y37704D01* X32762Y37683D01* X32777Y37661D01* X32791Y37637D01* X32802Y37613D01* X32811Y37587D01* X32815Y37579D01* X32819Y37572D01* X32825Y37565D01* X32832Y37560D01* X32840Y37556D01* X32848Y37553D01* X32857Y37552D01* X32865Y37552D01* X32874Y37554D01* X32882Y37557D01* X32889Y37562D01* X32896Y37568D01* X32901Y37575D01* X32904Y37580D01* Y37428D01* G37* G36* Y40000D02*X33084D01* Y19625D01* X33075Y19651D01* X33060Y19683D01* X33042Y19715D01* X33021Y19744D01* X32997Y19772D01* X32972Y19797D01* X32944Y19820D01* X32914Y19840D01* X32904Y19846D01* Y21165D01* X32929Y21183D01* X32957Y21207D01* X32982Y21232D01* X33005Y21260D01* X33025Y21290D01* X33043Y21322D01* X33057Y21355D01* X33069Y21389D01* X33071Y21398D01* X33071Y21407D01* X33070Y21415D01* X33067Y21423D01* X33062Y21431D01* X33057Y21438D01* X33050Y21444D01* X33043Y21448D01* X33035Y21451D01* X33026Y21453D01* X33017Y21453D01* X33009Y21452D01* X33001Y21449D01* X32993Y21445D01* X32986Y21439D01* X32980Y21433D01* X32976Y21425D01* X32973Y21417D01* X32964Y21391D01* X32953Y21366D01* X32940Y21343D01* X32925Y21320D01* X32908Y21299D01* X32904Y21295D01* Y21704D01* X32904Y21704D01* X32922Y21683D01* X32937Y21661D01* X32951Y21637D01* X32962Y21613D01* X32971Y21587D01* X32975Y21579D01* X32979Y21572D01* X32985Y21565D01* X32992Y21560D01* X33000Y21556D01* X33008Y21553D01* X33017Y21552D01* X33025Y21552D01* X33034Y21554D01* X33042Y21557D01* X33049Y21562D01* X33056Y21568D01* X33061Y21575D01* X33065Y21582D01* X33068Y21591D01* X33069Y21599D01* X33069Y21608D01* X33067Y21617D01* X33055Y21651D01* X33040Y21683D01* X33022Y21715D01* X33001Y21744D01* X32977Y21772D01* X32952Y21797D01* X32924Y21820D01* X32904Y21834D01* Y23180D01* X32909Y23183D01* X32937Y23207D01* X32962Y23232D01* X32985Y23260D01* X33005Y23290D01* X33023Y23322D01* X33037Y23355D01* X33049Y23389D01* X33051Y23398D01* X33051Y23407D01* X33050Y23415D01* X33047Y23423D01* X33042Y23431D01* X33037Y23438D01* X33030Y23444D01* X33023Y23448D01* X33015Y23451D01* X33006Y23453D01* X32997Y23453D01* X32989Y23452D01* X32981Y23449D01* X32973Y23445D01* X32966Y23439D01* X32960Y23433D01* X32956Y23425D01* X32953Y23417D01* X32944Y23391D01* X32933Y23366D01* X32920Y23343D01* X32905Y23320D01* X32904Y23319D01* Y23680D01* X32917Y23661D01* X32931Y23637D01* X32942Y23613D01* X32951Y23587D01* X32955Y23579D01* X32959Y23572D01* X32965Y23565D01* X32972Y23560D01* X32980Y23556D01* X32988Y23553D01* X32997Y23552D01* X33005Y23552D01* X33014Y23554D01* X33022Y23557D01* X33029Y23562D01* X33036Y23568D01* X33041Y23575D01* X33045Y23582D01* X33048Y23591D01* X33049Y23599D01* X33049Y23608D01* X33047Y23617D01* X33035Y23651D01* X33020Y23683D01* X33002Y23715D01* X32981Y23744D01* X32957Y23772D01* X32932Y23797D01* X32904Y23820D01* Y25196D01* X32917Y25207D01* X32942Y25232D01* X32965Y25260D01* X32985Y25290D01* X33003Y25322D01* X33017Y25355D01* X33029Y25389D01* X33031Y25398D01* X33031Y25407D01* X33030Y25415D01* X33027Y25423D01* X33022Y25431D01* X33017Y25438D01* X33010Y25444D01* X33003Y25448D01* X32995Y25451D01* X32986Y25453D01* X32977Y25453D01* X32969Y25452D01* X32961Y25449D01* X32953Y25445D01* X32946Y25439D01* X32940Y25433D01* X32936Y25425D01* X32933Y25417D01* X32924Y25391D01* X32913Y25366D01* X32904Y25350D01* Y25650D01* X32911Y25637D01* X32922Y25613D01* X32931Y25587D01* X32935Y25579D01* X32939Y25572D01* X32945Y25565D01* X32952Y25560D01* X32960Y25556D01* X32968Y25553D01* X32977Y25552D01* X32985Y25552D01* X32994Y25554D01* X33002Y25557D01* X33009Y25562D01* X33016Y25568D01* X33021Y25575D01* X33025Y25582D01* X33028Y25591D01* X33029Y25599D01* X33029Y25608D01* X33027Y25617D01* X33015Y25651D01* X33000Y25683D01* X32982Y25715D01* X32961Y25744D01* X32937Y25772D01* X32912Y25797D01* X32904Y25804D01* Y27214D01* X32922Y27232D01* X32945Y27260D01* X32965Y27290D01* X32983Y27322D01* X32997Y27355D01* X33009Y27389D01* X33011Y27398D01* X33011Y27407D01* X33010Y27415D01* X33007Y27423D01* X33002Y27431D01* X32997Y27438D01* X32990Y27444D01* X32983Y27448D01* X32975Y27451D01* X32966Y27453D01* X32957Y27453D01* X32949Y27452D01* X32941Y27449D01* X32933Y27445D01* X32926Y27439D01* X32920Y27433D01* X32916Y27425D01* X32913Y27417D01* X32904Y27391D01* X32904Y27391D01* Y27608D01* X32911Y27587D01* X32915Y27579D01* X32919Y27572D01* X32925Y27565D01* X32932Y27560D01* X32940Y27556D01* X32948Y27553D01* X32957Y27552D01* X32965Y27552D01* X32974Y27554D01* X32982Y27557D01* X32989Y27562D01* X32996Y27568D01* X33001Y27575D01* X33005Y27582D01* X33008Y27591D01* X33009Y27599D01* X33009Y27608D01* X33007Y27617D01* X32995Y27651D01* X32980Y27683D01* X32962Y27715D01* X32941Y27744D01* X32917Y27772D01* X32904Y27785D01* Y29235D01* X32925Y29260D01* X32945Y29290D01* X32963Y29322D01* X32977Y29355D01* X32989Y29389D01* X32991Y29398D01* X32991Y29407D01* X32990Y29415D01* X32987Y29423D01* X32982Y29431D01* X32977Y29438D01* X32970Y29444D01* X32963Y29448D01* X32955Y29451D01* X32946Y29453D01* X32937Y29453D01* X32929Y29452D01* X32921Y29449D01* X32913Y29445D01* X32906Y29439D01* X32904Y29437D01* Y29567D01* X32905Y29565D01* X32912Y29560D01* X32920Y29556D01* X32928Y29553D01* X32937Y29552D01* X32945Y29552D01* X32954Y29554D01* X32962Y29557D01* X32969Y29562D01* X32976Y29568D01* X32981Y29575D01* X32985Y29582D01* X32988Y29591D01* X32989Y29599D01* X32989Y29608D01* X32987Y29617D01* X32975Y29651D01* X32960Y29683D01* X32942Y29715D01* X32921Y29744D01* X32904Y29764D01* Y31259D01* X32905Y31260D01* X32925Y31290D01* X32943Y31322D01* X32957Y31355D01* X32969Y31389D01* X32971Y31398D01* X32971Y31407D01* X32970Y31415D01* X32967Y31423D01* X32962Y31431D01* X32957Y31438D01* X32950Y31444D01* X32943Y31448D01* X32935Y31451D01* X32926Y31453D01* X32917Y31453D01* X32909Y31452D01* X32904Y31450D01* Y31555D01* X32908Y31553D01* X32917Y31552D01* X32925Y31552D01* X32934Y31554D01* X32942Y31557D01* X32949Y31562D01* X32956Y31568D01* X32961Y31575D01* X32965Y31582D01* X32968Y31591D01* X32969Y31599D01* X32969Y31608D01* X32967Y31617D01* X32955Y31651D01* X32940Y31683D01* X32922Y31715D01* X32904Y31740D01* Y33288D01* X32905Y33290D01* X32923Y33322D01* X32937Y33355D01* X32949Y33389D01* X32951Y33398D01* X32951Y33407D01* X32950Y33415D01* X32947Y33423D01* X32942Y33431D01* X32937Y33438D01* X32930Y33444D01* X32923Y33448D01* X32915Y33451D01* X32906Y33453D01* X32904D01* Y33552D01* X32905D01* X32914Y33554D01* X32922Y33557D01* X32929Y33562D01* X32936Y33568D01* X32941Y33575D01* X32945Y33582D01* X32948Y33591D01* X32949Y33599D01* X32949Y33608D01* X32947Y33617D01* X32935Y33651D01* X32920Y33683D01* X32904Y33711D01* Y35324D01* X32917Y35355D01* X32929Y35389D01* X32931Y35398D01* X32931Y35407D01* X32930Y35415D01* X32927Y35423D01* X32922Y35431D01* X32917Y35438D01* X32910Y35444D01* X32904Y35447D01* Y35559D01* X32909Y35562D01* X32916Y35568D01* X32921Y35575D01* X32925Y35582D01* X32928Y35591D01* X32929Y35599D01* X32929Y35608D01* X32927Y35617D01* X32915Y35651D01* X32904Y35674D01* Y37374D01* X32909Y37389D01* X32911Y37398D01* X32911Y37407D01* X32910Y37415D01* X32907Y37423D01* X32904Y37428D01* Y37580D01* X32905Y37582D01* X32908Y37591D01* X32909Y37599D01* X32909Y37608D01* X32907Y37617D01* X32904Y37625D01* Y40000D01* G37* G36* X33084Y0D02*X32904D01* Y5140D01* X32907Y5135D01* X32913Y5128D01* X32920Y5123D01* X32927Y5119D01* X32936Y5116D01* X32944Y5115D01* X32953Y5115D01* X32961Y5117D01* X32996Y5129D01* X33028Y5144D01* X33060Y5162D01* X33084Y5180D01* Y3834D01* X33074Y3840D01* X33042Y3858D01* X33009Y3873D01* X32975Y3884D01* X32966Y3886D01* X32957Y3886D01* X32949Y3885D01* X32941Y3882D01* X32933Y3878D01* X32926Y3872D01* X32920Y3865D01* X32916Y3858D01* X32913Y3850D01* X32911Y3841D01* X32911Y3833D01* X32912Y3824D01* X32915Y3816D01* X32919Y3808D01* X32925Y3801D01* X32932Y3796D01* X32939Y3791D01* X32947Y3788D01* X32973Y3779D01* X32998Y3768D01* X33021Y3755D01* X33044Y3740D01* X33065Y3723D01* X33084Y3704D01* Y3295D01* X33069Y3280D01* X33048Y3262D01* X33026Y3247D01* X33002Y3233D01* X32978Y3222D01* X32952Y3213D01* X32944Y3209D01* X32937Y3205D01* X32930Y3199D01* X32925Y3192D01* X32921Y3184D01* X32918Y3176D01* X32917Y3167D01* X32917Y3159D01* X32919Y3150D01* X32922Y3142D01* X32927Y3135D01* X32933Y3128D01* X32940Y3123D01* X32947Y3119D01* X32956Y3116D01* X32964Y3115D01* X32973Y3115D01* X32981Y3117D01* X33016Y3129D01* X33048Y3144D01* X33080Y3162D01* X33084Y3165D01* Y1846D01* X33062Y1858D01* X33029Y1873D01* X32995Y1884D01* X32986Y1886D01* X32977Y1886D01* X32969Y1885D01* X32961Y1882D01* X32953Y1878D01* X32946Y1872D01* X32940Y1865D01* X32936Y1858D01* X32933Y1850D01* X32931Y1841D01* X32931Y1833D01* X32932Y1824D01* X32935Y1816D01* X32939Y1808D01* X32945Y1801D01* X32952Y1796D01* X32959Y1791D01* X32967Y1788D01* X32993Y1779D01* X33018Y1768D01* X33041Y1755D01* X33064Y1740D01* X33084Y1724D01* Y1276D01* X33068Y1262D01* X33046Y1247D01* X33022Y1233D01* X32998Y1222D01* X32972Y1213D01* X32964Y1209D01* X32957Y1205D01* X32950Y1199D01* X32945Y1192D01* X32941Y1184D01* X32938Y1176D01* X32937Y1167D01* X32937Y1159D01* X32939Y1150D01* X32942Y1142D01* X32947Y1135D01* X32953Y1128D01* X32960Y1123D01* X32967Y1119D01* X32976Y1116D01* X32984Y1115D01* X32993Y1115D01* X33001Y1117D01* X33036Y1129D01* X33068Y1144D01* X33084Y1153D01* Y0D01* G37* G36* Y5319D02*X33068Y5299D01* X33049Y5280D01* X33028Y5262D01* X33006Y5247D01* X32982Y5233D01* X32958Y5222D01* X32932Y5213D01* X32924Y5209D01* X32917Y5205D01* X32910Y5199D01* X32905Y5192D01* X32904Y5190D01* Y5802D01* X32905Y5801D01* X32912Y5796D01* X32919Y5791D01* X32927Y5788D01* X32953Y5779D01* X32978Y5768D01* X33001Y5755D01* X33024Y5740D01* X33045Y5723D01* X33064Y5704D01* X33082Y5683D01* X33084Y5680D01* Y5319D01* G37* G36* Y5820D02*X33084Y5820D01* X33054Y5840D01* X33022Y5858D01* X32989Y5873D01* X32955Y5884D01* X32946Y5886D01* X32937Y5886D01* X32929Y5885D01* X32921Y5882D01* X32913Y5878D01* X32906Y5872D01* X32904Y5870D01* Y7121D01* X32907Y7119D01* X32916Y7116D01* X32924Y7115D01* X32933Y7115D01* X32941Y7117D01* X32976Y7129D01* X33008Y7144D01* X33040Y7162D01* X33069Y7183D01* X33084Y7196D01* Y5820D01* G37* G36* Y7350D02*X33080Y7343D01* X33065Y7320D01* X33048Y7299D01* X33029Y7280D01* X33008Y7262D01* X32986Y7247D01* X32962Y7233D01* X32938Y7222D01* X32912Y7213D01* X32904Y7209D01* X32904Y7209D01* Y7789D01* X32907Y7788D01* X32933Y7779D01* X32958Y7768D01* X32981Y7755D01* X33004Y7740D01* X33025Y7723D01* X33044Y7704D01* X33062Y7683D01* X33077Y7661D01* X33084Y7650D01* Y7350D01* G37* G36* Y7804D02*X33064Y7820D01* X33034Y7840D01* X33002Y7858D01* X32969Y7873D01* X32935Y7884D01* X32926Y7886D01* X32917Y7886D01* X32909Y7885D01* X32904Y7883D01* Y9115D01* X32904D01* X32913Y9115D01* X32921Y9117D01* X32956Y9129D01* X32988Y9144D01* X33020Y9162D01* X33049Y9183D01* X33077Y9207D01* X33084Y9214D01* Y7804D01* G37* G36* Y9391D02*X33073Y9366D01* X33060Y9343D01* X33045Y9320D01* X33028Y9299D01* X33009Y9280D01* X32988Y9262D01* X32966Y9247D01* X32942Y9233D01* X32918Y9222D01* X32904Y9217D01* Y9782D01* X32913Y9779D01* X32938Y9768D01* X32961Y9755D01* X32984Y9740D01* X33005Y9723D01* X33024Y9704D01* X33042Y9683D01* X33057Y9661D01* X33071Y9637D01* X33082Y9613D01* X33084Y9608D01* Y9391D01* G37* G36* Y9785D02*X33072Y9797D01* X33044Y9820D01* X33014Y9840D01* X32982Y9858D01* X32949Y9873D01* X32915Y9884D01* X32906Y9886D01* X32904D01* Y11118D01* X32936Y11129D01* X32968Y11144D01* X33000Y11162D01* X33029Y11183D01* X33057Y11207D01* X33082Y11232D01* X33084Y11235D01* Y9785D01* G37* G36* Y11437D02*X33080Y11433D01* X33076Y11425D01* X33073Y11417D01* X33064Y11391D01* X33053Y11366D01* X33040Y11343D01* X33025Y11320D01* X33008Y11299D01* X32989Y11280D01* X32968Y11262D01* X32946Y11247D01* X32922Y11233D01* X32904Y11225D01* Y11774D01* X32918Y11768D01* X32941Y11755D01* X32964Y11740D01* X32985Y11723D01* X33004Y11704D01* X33022Y11683D01* X33037Y11661D01* X33051Y11637D01* X33062Y11613D01* X33071Y11587D01* X33075Y11579D01* X33079Y11572D01* X33084Y11567D01* Y11437D01* G37* G36* Y11764D02*X33077Y11772D01* X33052Y11797D01* X33024Y11820D01* X32994Y11840D01* X32962Y11858D01* X32929Y11873D01* X32904Y11881D01* Y13125D01* X32916Y13129D01* X32948Y13144D01* X32980Y13162D01* X33009Y13183D01* X33037Y13207D01* X33062Y13232D01* X33084Y13259D01* Y11764D01* G37* G36* Y13450D02*X33081Y13449D01* X33073Y13445D01* X33066Y13439D01* X33060Y13433D01* X33056Y13425D01* X33053Y13417D01* X33044Y13391D01* X33033Y13366D01* X33020Y13343D01* X33005Y13320D01* X32988Y13299D01* X32969Y13280D01* X32948Y13262D01* X32926Y13247D01* X32904Y13234D01* Y13765D01* X32921Y13755D01* X32944Y13740D01* X32965Y13723D01* X32984Y13704D01* X33002Y13683D01* X33017Y13661D01* X33031Y13637D01* X33042Y13613D01* X33051Y13587D01* X33055Y13579D01* X33059Y13572D01* X33065Y13565D01* X33072Y13560D01* X33080Y13556D01* X33084Y13555D01* Y13450D01* G37* G36* Y13740D02*X33081Y13744D01* X33057Y13772D01* X33032Y13797D01* X33004Y13820D01* X32974Y13840D01* X32942Y13858D01* X32909Y13873D01* X32904Y13874D01* Y15133D01* X32928Y15144D01* X32960Y15162D01* X32989Y15183D01* X33017Y15207D01* X33042Y15232D01* X33065Y15260D01* X33084Y15288D01* Y13740D01* G37* G36* Y15453D02*X33077Y15453D01* X33069Y15452D01* X33061Y15449D01* X33053Y15445D01* X33046Y15439D01* X33040Y15433D01* X33036Y15425D01* X33033Y15417D01* X33024Y15391D01* X33013Y15366D01* X33000Y15343D01* X32985Y15320D01* X32968Y15299D01* X32949Y15280D01* X32928Y15262D01* X32906Y15247D01* X32904Y15246D01* Y15754D01* X32924Y15740D01* X32945Y15723D01* X32964Y15704D01* X32982Y15683D01* X32997Y15661D01* X33011Y15637D01* X33022Y15613D01* X33031Y15587D01* X33035Y15579D01* X33039Y15572D01* X33045Y15565D01* X33052Y15560D01* X33060Y15556D01* X33068Y15553D01* X33077Y15552D01* X33084Y15552D01* Y15453D01* G37* G36* Y15711D02*X33082Y15715D01* X33061Y15744D01* X33037Y15772D01* X33012Y15797D01* X32984Y15820D01* X32954Y15840D01* X32922Y15858D01* X32904Y15866D01* Y17142D01* X32908Y17144D01* X32940Y17162D01* X32969Y17183D01* X32997Y17207D01* X33022Y17232D01* X33045Y17260D01* X33065Y17290D01* X33083Y17322D01* X33084Y17324D01* Y15711D01* G37* G36* Y17447D02*X33083Y17448D01* X33075Y17451D01* X33066Y17453D01* X33057Y17453D01* X33049Y17452D01* X33041Y17449D01* X33033Y17445D01* X33026Y17439D01* X33020Y17433D01* X33016Y17425D01* X33013Y17417D01* X33004Y17391D01* X32993Y17366D01* X32980Y17343D01* X32965Y17320D01* X32948Y17299D01* X32929Y17280D01* X32908Y17262D01* X32904Y17259D01* Y17740D01* X32925Y17723D01* X32944Y17704D01* X32962Y17683D01* X32977Y17661D01* X32991Y17637D01* X33002Y17613D01* X33011Y17587D01* X33015Y17579D01* X33019Y17572D01* X33025Y17565D01* X33032Y17560D01* X33040Y17556D01* X33048Y17553D01* X33057Y17552D01* X33065Y17552D01* X33074Y17554D01* X33082Y17557D01* X33084Y17559D01* Y17447D01* G37* G36* Y17674D02*X33080Y17683D01* X33062Y17715D01* X33041Y17744D01* X33017Y17772D01* X32992Y17797D01* X32964Y17820D01* X32934Y17840D01* X32904Y17857D01* Y19153D01* X32920Y19162D01* X32949Y19183D01* X32977Y19207D01* X33002Y19232D01* X33025Y19260D01* X33045Y19290D01* X33063Y19322D01* X33077Y19355D01* X33084Y19374D01* Y17674D01* G37* G36* Y19428D02*X33082Y19431D01* X33077Y19438D01* X33070Y19444D01* X33063Y19448D01* X33055Y19451D01* X33046Y19453D01* X33037Y19453D01* X33029Y19452D01* X33021Y19449D01* X33013Y19445D01* X33006Y19439D01* X33000Y19433D01* X32996Y19425D01* X32993Y19417D01* X32984Y19391D01* X32973Y19366D01* X32960Y19343D01* X32945Y19320D01* X32928Y19299D01* X32909Y19280D01* X32904Y19276D01* Y19724D01* X32905Y19723D01* X32924Y19704D01* X32942Y19683D01* X32957Y19661D01* X32971Y19637D01* X32982Y19613D01* X32991Y19587D01* X32995Y19579D01* X32999Y19572D01* X33005Y19565D01* X33012Y19560D01* X33020Y19556D01* X33028Y19553D01* X33037Y19552D01* X33045Y19552D01* X33054Y19554D01* X33062Y19557D01* X33069Y19562D01* X33076Y19568D01* X33081Y19575D01* X33084Y19580D01* Y19428D01* G37* G36* Y40000D02*X34305D01* Y39846D01* X34289Y39837D01* X34260Y39816D01* X34232Y39793D01* X34207Y39767D01* X34184Y39739D01* X34164Y39709D01* X34146Y39677D01* X34132Y39644D01* X34120Y39610D01* X34118Y39601D01* X34118Y39593D01* X34119Y39584D01* X34122Y39576D01* X34127Y39568D01* X34132Y39561D01* X34139Y39556D01* X34146Y39551D01* X34154Y39548D01* X34163Y39546D01* X34172Y39546D01* X34180Y39547D01* X34188Y39550D01* X34196Y39555D01* X34203Y39560D01* X34209Y39567D01* X34213Y39574D01* X34216Y39582D01* X34225Y39608D01* X34236Y39633D01* X34249Y39657D01* X34264Y39679D01* X34281Y39700D01* X34300Y39719D01* X34305Y39723D01* Y39276D01* X34304Y39276D01* X34285Y39295D01* X34267Y39316D01* X34252Y39338D01* X34238Y39362D01* X34227Y39386D01* X34218Y39412D01* X34214Y39420D01* X34210Y39427D01* X34204Y39434D01* X34197Y39439D01* X34189Y39443D01* X34181Y39446D01* X34172Y39447D01* X34164Y39447D01* X34155Y39445D01* X34147Y39442D01* X34140Y39437D01* X34133Y39431D01* X34128Y39424D01* X34124Y39417D01* X34121Y39409D01* X34120Y39400D01* X34120Y39391D01* X34122Y39383D01* X34134Y39349D01* X34149Y39316D01* X34167Y39284D01* X34188Y39255D01* X34212Y39227D01* X34237Y39202D01* X34265Y39179D01* X34295Y39159D01* X34305Y39153D01* Y37834D01* X34280Y37816D01* X34252Y37793D01* X34227Y37767D01* X34204Y37739D01* X34184Y37709D01* X34166Y37677D01* X34152Y37644D01* X34140Y37610D01* X34138Y37601D01* X34138Y37593D01* X34139Y37584D01* X34142Y37576D01* X34147Y37568D01* X34152Y37561D01* X34159Y37556D01* X34166Y37551D01* X34174Y37548D01* X34183Y37546D01* X34192Y37546D01* X34200Y37547D01* X34208Y37550D01* X34216Y37555D01* X34223Y37560D01* X34229Y37567D01* X34233Y37574D01* X34236Y37582D01* X34245Y37608D01* X34256Y37633D01* X34269Y37657D01* X34284Y37679D01* X34301Y37700D01* X34305Y37704D01* Y37295D01* X34305Y37295D01* X34287Y37316D01* X34272Y37338D01* X34258Y37362D01* X34247Y37386D01* X34238Y37412D01* X34234Y37420D01* X34230Y37427D01* X34224Y37434D01* X34217Y37439D01* X34209Y37443D01* X34201Y37446D01* X34192Y37447D01* X34184Y37447D01* X34175Y37445D01* X34167Y37442D01* X34160Y37437D01* X34153Y37431D01* X34148Y37424D01* X34144Y37417D01* X34141Y37409D01* X34140Y37400D01* X34140Y37391D01* X34142Y37383D01* X34154Y37349D01* X34169Y37316D01* X34187Y37284D01* X34208Y37255D01* X34232Y37227D01* X34257Y37202D01* X34285Y37179D01* X34305Y37166D01* Y35820D01* X34300Y35816D01* X34272Y35793D01* X34247Y35767D01* X34224Y35739D01* X34204Y35709D01* X34186Y35677D01* X34172Y35644D01* X34160Y35610D01* X34158Y35601D01* X34158Y35593D01* X34159Y35584D01* X34162Y35576D01* X34167Y35568D01* X34172Y35561D01* X34179Y35556D01* X34186Y35551D01* X34194Y35548D01* X34203Y35546D01* X34212Y35546D01* X34220Y35547D01* X34228Y35550D01* X34236Y35555D01* X34243Y35560D01* X34249Y35567D01* X34253Y35574D01* X34256Y35582D01* X34265Y35608D01* X34276Y35633D01* X34289Y35657D01* X34304Y35679D01* X34305Y35680D01* Y35319D01* X34292Y35338D01* X34278Y35362D01* X34267Y35386D01* X34258Y35412D01* X34254Y35420D01* X34250Y35427D01* X34244Y35434D01* X34237Y35439D01* X34229Y35443D01* X34221Y35446D01* X34212Y35447D01* X34204Y35447D01* X34195Y35445D01* X34187Y35442D01* X34180Y35437D01* X34173Y35431D01* X34168Y35424D01* X34164Y35417D01* X34161Y35409D01* X34160Y35400D01* X34160Y35391D01* X34162Y35383D01* X34174Y35349D01* X34189Y35316D01* X34207Y35284D01* X34228Y35255D01* X34252Y35227D01* X34277Y35202D01* X34305Y35179D01* Y33804D01* X34292Y33793D01* X34267Y33767D01* X34244Y33739D01* X34224Y33709D01* X34206Y33677D01* X34192Y33644D01* X34180Y33610D01* X34178Y33601D01* X34178Y33593D01* X34179Y33584D01* X34182Y33576D01* X34187Y33568D01* X34192Y33561D01* X34199Y33556D01* X34206Y33551D01* X34214Y33548D01* X34223Y33546D01* X34232Y33546D01* X34240Y33547D01* X34248Y33550D01* X34256Y33555D01* X34263Y33560D01* X34269Y33567D01* X34273Y33574D01* X34276Y33582D01* X34285Y33608D01* X34296Y33633D01* X34305Y33650D01* Y33349D01* X34298Y33362D01* X34287Y33386D01* X34278Y33412D01* X34274Y33420D01* X34270Y33427D01* X34264Y33434D01* X34257Y33439D01* X34249Y33443D01* X34241Y33446D01* X34232Y33447D01* X34224Y33447D01* X34215Y33445D01* X34207Y33442D01* X34200Y33437D01* X34193Y33431D01* X34188Y33424D01* X34184Y33417D01* X34181Y33409D01* X34180Y33400D01* X34180Y33391D01* X34182Y33383D01* X34194Y33349D01* X34209Y33316D01* X34227Y33284D01* X34248Y33255D01* X34272Y33227D01* X34297Y33202D01* X34305Y33196D01* Y31785D01* X34287Y31767D01* X34264Y31739D01* X34244Y31709D01* X34226Y31677D01* X34212Y31644D01* X34200Y31610D01* X34198Y31601D01* X34198Y31593D01* X34199Y31584D01* X34202Y31576D01* X34207Y31568D01* X34212Y31561D01* X34219Y31556D01* X34226Y31551D01* X34234Y31548D01* X34243Y31546D01* X34252Y31546D01* X34260Y31547D01* X34268Y31550D01* X34276Y31555D01* X34283Y31560D01* X34289Y31567D01* X34293Y31574D01* X34296Y31582D01* X34305Y31608D01* X34305Y31609D01* Y31391D01* X34298Y31412D01* X34294Y31420D01* X34290Y31427D01* X34284Y31434D01* X34277Y31439D01* X34269Y31443D01* X34261Y31446D01* X34252Y31447D01* X34244Y31447D01* X34235Y31445D01* X34227Y31442D01* X34220Y31437D01* X34213Y31431D01* X34208Y31424D01* X34204Y31417D01* X34201Y31409D01* X34200Y31400D01* X34200Y31391D01* X34202Y31383D01* X34214Y31349D01* X34229Y31316D01* X34247Y31284D01* X34268Y31255D01* X34292Y31227D01* X34305Y31214D01* Y29765D01* X34284Y29739D01* X34264Y29709D01* X34246Y29677D01* X34232Y29644D01* X34220Y29610D01* X34218Y29601D01* X34218Y29593D01* X34219Y29584D01* X34222Y29576D01* X34227Y29568D01* X34232Y29561D01* X34239Y29556D01* X34246Y29551D01* X34254Y29548D01* X34263Y29546D01* X34272Y29546D01* X34280Y29547D01* X34288Y29550D01* X34296Y29555D01* X34303Y29560D01* X34305Y29563D01* Y29432D01* X34304Y29434D01* X34297Y29439D01* X34289Y29443D01* X34281Y29446D01* X34272Y29447D01* X34264Y29447D01* X34255Y29445D01* X34247Y29442D01* X34240Y29437D01* X34233Y29431D01* X34228Y29424D01* X34224Y29417D01* X34221Y29409D01* X34220Y29400D01* X34220Y29391D01* X34222Y29383D01* X34234Y29349D01* X34249Y29316D01* X34267Y29284D01* X34288Y29255D01* X34305Y29235D01* Y27740D01* X34304Y27739D01* X34284Y27709D01* X34266Y27677D01* X34252Y27644D01* X34240Y27610D01* X34238Y27601D01* X34238Y27593D01* X34239Y27584D01* X34242Y27576D01* X34247Y27568D01* X34252Y27561D01* X34259Y27556D01* X34266Y27551D01* X34274Y27548D01* X34283Y27546D01* X34292Y27546D01* X34300Y27547D01* X34305Y27549D01* Y27445D01* X34301Y27446D01* X34292Y27447D01* X34284Y27447D01* X34275Y27445D01* X34267Y27442D01* X34260Y27437D01* X34253Y27431D01* X34248Y27424D01* X34244Y27417D01* X34241Y27409D01* X34240Y27400D01* X34240Y27391D01* X34242Y27383D01* X34254Y27349D01* X34269Y27316D01* X34287Y27284D01* X34305Y27259D01* Y25711D01* X34304Y25709D01* X34286Y25677D01* X34272Y25644D01* X34260Y25610D01* X34258Y25601D01* X34258Y25593D01* X34259Y25584D01* X34262Y25576D01* X34267Y25568D01* X34272Y25561D01* X34279Y25556D01* X34286Y25551D01* X34294Y25548D01* X34303Y25546D01* X34305D01* Y25447D01* X34304Y25447D01* X34295Y25445D01* X34287Y25442D01* X34280Y25437D01* X34273Y25431D01* X34268Y25424D01* X34264Y25417D01* X34261Y25409D01* X34260Y25400D01* X34260Y25391D01* X34262Y25383D01* X34274Y25349D01* X34289Y25316D01* X34305Y25288D01* Y23675D01* X34292Y23644D01* X34280Y23610D01* X34278Y23601D01* X34278Y23593D01* X34279Y23584D01* X34282Y23576D01* X34287Y23568D01* X34292Y23561D01* X34299Y23556D01* X34305Y23552D01* Y23441D01* X34300Y23437D01* X34293Y23431D01* X34288Y23424D01* X34284Y23417D01* X34281Y23409D01* X34280Y23400D01* X34280Y23391D01* X34282Y23383D01* X34294Y23349D01* X34305Y23325D01* Y21625D01* X34300Y21610D01* X34298Y21601D01* X34298Y21593D01* X34299Y21584D01* X34302Y21576D01* X34305Y21571D01* Y21419D01* X34304Y21417D01* X34301Y21409D01* X34300Y21400D01* X34300Y21391D01* X34302Y21383D01* X34305Y21374D01* Y0D01* X33084D01* Y1153D01* X33100Y1162D01* X33129Y1183D01* X33157Y1207D01* X33182Y1232D01* X33205Y1260D01* X33225Y1290D01* X33243Y1322D01* X33257Y1355D01* X33269Y1389D01* X33271Y1398D01* X33271Y1407D01* X33270Y1415D01* X33267Y1423D01* X33262Y1431D01* X33257Y1438D01* X33250Y1444D01* X33243Y1448D01* X33235Y1451D01* X33226Y1453D01* X33217Y1453D01* X33209Y1452D01* X33201Y1449D01* X33193Y1445D01* X33186Y1439D01* X33180Y1433D01* X33176Y1425D01* X33173Y1417D01* X33164Y1391D01* X33153Y1366D01* X33140Y1343D01* X33125Y1320D01* X33108Y1299D01* X33089Y1280D01* X33084Y1276D01* Y1724D01* X33085Y1723D01* X33104Y1704D01* X33122Y1683D01* X33137Y1661D01* X33151Y1637D01* X33162Y1613D01* X33171Y1587D01* X33175Y1579D01* X33179Y1572D01* X33185Y1565D01* X33192Y1560D01* X33200Y1556D01* X33208Y1553D01* X33217Y1552D01* X33225Y1552D01* X33234Y1554D01* X33242Y1557D01* X33249Y1562D01* X33256Y1568D01* X33261Y1575D01* X33265Y1582D01* X33268Y1591D01* X33269Y1599D01* X33269Y1608D01* X33267Y1617D01* X33255Y1651D01* X33240Y1683D01* X33222Y1715D01* X33201Y1744D01* X33177Y1772D01* X33152Y1797D01* X33124Y1820D01* X33094Y1840D01* X33084Y1846D01* Y3165D01* X33109Y3183D01* X33137Y3207D01* X33162Y3232D01* X33185Y3260D01* X33205Y3290D01* X33223Y3322D01* X33237Y3355D01* X33249Y3389D01* X33251Y3398D01* X33251Y3407D01* X33250Y3415D01* X33247Y3423D01* X33242Y3431D01* X33237Y3438D01* X33230Y3444D01* X33223Y3448D01* X33215Y3451D01* X33206Y3453D01* X33197Y3453D01* X33189Y3452D01* X33181Y3449D01* X33173Y3445D01* X33166Y3439D01* X33160Y3433D01* X33156Y3425D01* X33153Y3417D01* X33144Y3391D01* X33133Y3366D01* X33120Y3343D01* X33105Y3320D01* X33088Y3299D01* X33084Y3295D01* Y3704D01* X33084Y3704D01* X33102Y3683D01* X33117Y3661D01* X33131Y3637D01* X33142Y3613D01* X33151Y3587D01* X33155Y3579D01* X33159Y3572D01* X33165Y3565D01* X33172Y3560D01* X33180Y3556D01* X33188Y3553D01* X33197Y3552D01* X33205Y3552D01* X33214Y3554D01* X33222Y3557D01* X33229Y3562D01* X33236Y3568D01* X33241Y3575D01* X33245Y3582D01* X33248Y3591D01* X33249Y3599D01* X33249Y3608D01* X33247Y3617D01* X33235Y3651D01* X33220Y3683D01* X33202Y3715D01* X33181Y3744D01* X33157Y3772D01* X33132Y3797D01* X33104Y3820D01* X33084Y3834D01* Y5180D01* X33089Y5183D01* X33117Y5207D01* X33142Y5232D01* X33165Y5260D01* X33185Y5290D01* X33203Y5322D01* X33217Y5355D01* X33229Y5389D01* X33231Y5398D01* X33231Y5407D01* X33230Y5415D01* X33227Y5423D01* X33222Y5431D01* X33217Y5438D01* X33210Y5444D01* X33203Y5448D01* X33195Y5451D01* X33186Y5453D01* X33177Y5453D01* X33169Y5452D01* X33161Y5449D01* X33153Y5445D01* X33146Y5439D01* X33140Y5433D01* X33136Y5425D01* X33133Y5417D01* X33124Y5391D01* X33113Y5366D01* X33100Y5343D01* X33085Y5320D01* X33084Y5319D01* Y5680D01* X33097Y5661D01* X33111Y5637D01* X33122Y5613D01* X33131Y5587D01* X33135Y5579D01* X33139Y5572D01* X33145Y5565D01* X33152Y5560D01* X33160Y5556D01* X33168Y5553D01* X33177Y5552D01* X33185Y5552D01* X33194Y5554D01* X33202Y5557D01* X33209Y5562D01* X33216Y5568D01* X33221Y5575D01* X33225Y5582D01* X33228Y5591D01* X33229Y5599D01* X33229Y5608D01* X33227Y5617D01* X33215Y5651D01* X33200Y5683D01* X33182Y5715D01* X33161Y5744D01* X33137Y5772D01* X33112Y5797D01* X33084Y5820D01* Y7196D01* X33097Y7207D01* X33122Y7232D01* X33145Y7260D01* X33165Y7290D01* X33183Y7322D01* X33197Y7355D01* X33209Y7389D01* X33211Y7398D01* X33211Y7407D01* X33210Y7415D01* X33207Y7423D01* X33202Y7431D01* X33197Y7438D01* X33190Y7444D01* X33183Y7448D01* X33175Y7451D01* X33166Y7453D01* X33157Y7453D01* X33149Y7452D01* X33141Y7449D01* X33133Y7445D01* X33126Y7439D01* X33120Y7433D01* X33116Y7425D01* X33113Y7417D01* X33104Y7391D01* X33093Y7366D01* X33084Y7350D01* Y7650D01* X33091Y7637D01* X33102Y7613D01* X33111Y7587D01* X33115Y7579D01* X33119Y7572D01* X33125Y7565D01* X33132Y7560D01* X33140Y7556D01* X33148Y7553D01* X33157Y7552D01* X33165Y7552D01* X33174Y7554D01* X33182Y7557D01* X33189Y7562D01* X33196Y7568D01* X33201Y7575D01* X33205Y7582D01* X33208Y7591D01* X33209Y7599D01* X33209Y7608D01* X33207Y7617D01* X33195Y7651D01* X33180Y7683D01* X33162Y7715D01* X33141Y7744D01* X33117Y7772D01* X33092Y7797D01* X33084Y7804D01* Y9214D01* X33102Y9232D01* X33125Y9260D01* X33145Y9290D01* X33163Y9322D01* X33177Y9355D01* X33189Y9389D01* X33191Y9398D01* X33191Y9407D01* X33190Y9415D01* X33187Y9423D01* X33182Y9431D01* X33177Y9438D01* X33170Y9444D01* X33163Y9448D01* X33155Y9451D01* X33146Y9453D01* X33137Y9453D01* X33129Y9452D01* X33121Y9449D01* X33113Y9445D01* X33106Y9439D01* X33100Y9433D01* X33096Y9425D01* X33093Y9417D01* X33084Y9391D01* X33084Y9391D01* Y9608D01* X33091Y9587D01* X33095Y9579D01* X33099Y9572D01* X33105Y9565D01* X33112Y9560D01* X33120Y9556D01* X33128Y9553D01* X33137Y9552D01* X33145Y9552D01* X33154Y9554D01* X33162Y9557D01* X33169Y9562D01* X33176Y9568D01* X33181Y9575D01* X33185Y9582D01* X33188Y9591D01* X33189Y9599D01* X33189Y9608D01* X33187Y9617D01* X33175Y9651D01* X33160Y9683D01* X33142Y9715D01* X33121Y9744D01* X33097Y9772D01* X33084Y9785D01* Y11235D01* X33105Y11260D01* X33125Y11290D01* X33143Y11322D01* X33157Y11355D01* X33169Y11389D01* X33171Y11398D01* X33171Y11407D01* X33170Y11415D01* X33167Y11423D01* X33162Y11431D01* X33157Y11438D01* X33150Y11444D01* X33143Y11448D01* X33135Y11451D01* X33126Y11453D01* X33117Y11453D01* X33109Y11452D01* X33101Y11449D01* X33093Y11445D01* X33086Y11439D01* X33084Y11437D01* Y11567D01* X33085Y11565D01* X33092Y11560D01* X33100Y11556D01* X33108Y11553D01* X33117Y11552D01* X33125Y11552D01* X33134Y11554D01* X33142Y11557D01* X33149Y11562D01* X33156Y11568D01* X33161Y11575D01* X33165Y11582D01* X33168Y11591D01* X33169Y11599D01* X33169Y11608D01* X33167Y11617D01* X33155Y11651D01* X33140Y11683D01* X33122Y11715D01* X33101Y11744D01* X33084Y11764D01* Y13259D01* X33085Y13260D01* X33105Y13290D01* X33123Y13322D01* X33137Y13355D01* X33149Y13389D01* X33151Y13398D01* X33151Y13407D01* X33150Y13415D01* X33147Y13423D01* X33142Y13431D01* X33137Y13438D01* X33130Y13444D01* X33123Y13448D01* X33115Y13451D01* X33106Y13453D01* X33097Y13453D01* X33089Y13452D01* X33084Y13450D01* Y13555D01* X33088Y13553D01* X33097Y13552D01* X33105Y13552D01* X33114Y13554D01* X33122Y13557D01* X33129Y13562D01* X33136Y13568D01* X33141Y13575D01* X33145Y13582D01* X33148Y13591D01* X33149Y13599D01* X33149Y13608D01* X33147Y13617D01* X33135Y13651D01* X33120Y13683D01* X33102Y13715D01* X33084Y13740D01* Y15288D01* X33085Y15290D01* X33103Y15322D01* X33117Y15355D01* X33129Y15389D01* X33131Y15398D01* X33131Y15407D01* X33130Y15415D01* X33127Y15423D01* X33122Y15431D01* X33117Y15438D01* X33110Y15444D01* X33103Y15448D01* X33095Y15451D01* X33086Y15453D01* X33084D01* Y15552D01* X33085D01* X33094Y15554D01* X33102Y15557D01* X33109Y15562D01* X33116Y15568D01* X33121Y15575D01* X33125Y15582D01* X33128Y15591D01* X33129Y15599D01* X33129Y15608D01* X33127Y15617D01* X33115Y15651D01* X33100Y15683D01* X33084Y15711D01* Y17324D01* X33097Y17355D01* X33109Y17389D01* X33111Y17398D01* X33111Y17407D01* X33110Y17415D01* X33107Y17423D01* X33102Y17431D01* X33097Y17438D01* X33090Y17444D01* X33084Y17447D01* Y17559D01* X33089Y17562D01* X33096Y17568D01* X33101Y17575D01* X33105Y17582D01* X33108Y17591D01* X33109Y17599D01* X33109Y17608D01* X33107Y17617D01* X33095Y17651D01* X33084Y17674D01* Y19374D01* X33089Y19389D01* X33091Y19398D01* X33091Y19407D01* X33090Y19415D01* X33087Y19423D01* X33084Y19428D01* Y19580D01* X33085Y19582D01* X33088Y19591D01* X33089Y19599D01* X33089Y19608D01* X33087Y19617D01* X33084Y19625D01* Y40000D01* G37* G36* X34305D02*X34485D01* Y35859D01* X34482Y35864D01* X34476Y35871D01* X34469Y35876D01* X34462Y35880D01* X34453Y35883D01* X34445Y35884D01* X34436Y35884D01* X34428Y35882D01* X34393Y35870D01* X34361Y35855D01* X34329Y35837D01* X34305Y35820D01* Y37166D01* X34315Y37159D01* X34347Y37141D01* X34380Y37127D01* X34414Y37115D01* X34423Y37113D01* X34432Y37113D01* X34440Y37115D01* X34448Y37117D01* X34456Y37122D01* X34463Y37127D01* X34469Y37134D01* X34473Y37141D01* X34476Y37149D01* X34478Y37158D01* X34478Y37167D01* X34477Y37175D01* X34474Y37183D01* X34470Y37191D01* X34464Y37198D01* X34457Y37204D01* X34450Y37208D01* X34442Y37211D01* X34416Y37220D01* X34391Y37231D01* X34368Y37244D01* X34345Y37259D01* X34324Y37276D01* X34305Y37295D01* Y37704D01* X34320Y37719D01* X34341Y37737D01* X34363Y37752D01* X34387Y37766D01* X34411Y37777D01* X34437Y37786D01* X34445Y37790D01* X34452Y37794D01* X34459Y37800D01* X34464Y37807D01* X34468Y37815D01* X34471Y37823D01* X34472Y37832D01* X34472Y37840D01* X34470Y37849D01* X34467Y37857D01* X34462Y37864D01* X34456Y37871D01* X34449Y37876D01* X34442Y37880D01* X34433Y37883D01* X34425Y37884D01* X34416Y37884D01* X34408Y37882D01* X34373Y37870D01* X34341Y37855D01* X34309Y37837D01* X34305Y37834D01* Y39153D01* X34327Y39141D01* X34360Y39127D01* X34394Y39115D01* X34403Y39113D01* X34412Y39113D01* X34420Y39115D01* X34428Y39117D01* X34436Y39122D01* X34443Y39127D01* X34449Y39134D01* X34453Y39141D01* X34456Y39149D01* X34458Y39158D01* X34458Y39167D01* X34457Y39175D01* X34454Y39183D01* X34450Y39191D01* X34444Y39198D01* X34437Y39204D01* X34430Y39208D01* X34422Y39211D01* X34396Y39220D01* X34371Y39231D01* X34348Y39244D01* X34325Y39259D01* X34305Y39276D01* Y39723D01* X34321Y39737D01* X34343Y39752D01* X34367Y39766D01* X34391Y39777D01* X34417Y39786D01* X34425Y39790D01* X34432Y39794D01* X34439Y39800D01* X34444Y39807D01* X34448Y39815D01* X34451Y39823D01* X34452Y39832D01* X34452Y39840D01* X34450Y39849D01* X34447Y39857D01* X34442Y39864D01* X34436Y39871D01* X34429Y39876D01* X34422Y39880D01* X34413Y39883D01* X34405Y39884D01* X34396Y39884D01* X34388Y39882D01* X34353Y39870D01* X34321Y39855D01* X34305Y39846D01* Y40000D01* G37* G36* X34485Y9740D02*X34484Y9739D01* X34464Y9709D01* X34446Y9677D01* X34432Y9644D01* X34420Y9610D01* X34418Y9601D01* X34418Y9593D01* X34419Y9584D01* X34422Y9576D01* X34427Y9568D01* X34432Y9561D01* X34439Y9556D01* X34446Y9551D01* X34454Y9548D01* X34463Y9546D01* X34472Y9546D01* X34480Y9547D01* X34485Y9549D01* Y9445D01* X34481Y9446D01* X34472Y9447D01* X34464Y9447D01* X34455Y9445D01* X34447Y9442D01* X34440Y9437D01* X34433Y9431D01* X34428Y9424D01* X34424Y9417D01* X34421Y9409D01* X34420Y9400D01* X34420Y9391D01* X34422Y9383D01* X34434Y9349D01* X34449Y9316D01* X34467Y9284D01* X34485Y9259D01* Y7711D01* X34484Y7709D01* X34466Y7677D01* X34452Y7644D01* X34440Y7610D01* X34438Y7601D01* X34438Y7593D01* X34439Y7584D01* X34442Y7576D01* X34447Y7568D01* X34452Y7561D01* X34459Y7556D01* X34466Y7551D01* X34474Y7548D01* X34483Y7546D01* X34485D01* Y7447D01* X34484Y7447D01* X34475Y7445D01* X34467Y7442D01* X34460Y7437D01* X34453Y7431D01* X34448Y7424D01* X34444Y7417D01* X34441Y7409D01* X34440Y7400D01* X34440Y7391D01* X34442Y7383D01* X34454Y7349D01* X34469Y7316D01* X34485Y7288D01* Y5675D01* X34472Y5644D01* X34460Y5610D01* X34458Y5601D01* X34458Y5593D01* X34459Y5584D01* X34462Y5576D01* X34467Y5568D01* X34472Y5561D01* X34479Y5556D01* X34485Y5552D01* Y5441D01* X34480Y5437D01* X34473Y5431D01* X34468Y5424D01* X34464Y5417D01* X34461Y5409D01* X34460Y5400D01* X34460Y5391D01* X34462Y5383D01* X34474Y5349D01* X34485Y5325D01* Y3625D01* X34480Y3610D01* X34478Y3601D01* X34478Y3593D01* X34479Y3584D01* X34482Y3576D01* X34485Y3571D01* Y3419D01* X34484Y3417D01* X34481Y3409D01* X34480Y3400D01* X34480Y3391D01* X34482Y3383D01* X34485Y3374D01* Y0D01* X34305D01* Y21374D01* X34314Y21349D01* X34329Y21316D01* X34347Y21284D01* X34368Y21255D01* X34392Y21227D01* X34417Y21202D01* X34445Y21179D01* X34475Y21159D01* X34485Y21153D01* Y19834D01* X34460Y19816D01* X34432Y19793D01* X34407Y19767D01* X34384Y19739D01* X34364Y19709D01* X34346Y19677D01* X34332Y19644D01* X34320Y19610D01* X34318Y19601D01* X34318Y19593D01* X34319Y19584D01* X34322Y19576D01* X34327Y19568D01* X34332Y19561D01* X34339Y19556D01* X34346Y19551D01* X34354Y19548D01* X34363Y19546D01* X34372Y19546D01* X34380Y19547D01* X34388Y19550D01* X34396Y19555D01* X34403Y19560D01* X34409Y19567D01* X34413Y19574D01* X34416Y19582D01* X34425Y19608D01* X34436Y19633D01* X34449Y19657D01* X34464Y19679D01* X34481Y19700D01* X34485Y19704D01* Y19295D01* X34485Y19295D01* X34467Y19316D01* X34452Y19338D01* X34438Y19362D01* X34427Y19386D01* X34418Y19412D01* X34414Y19420D01* X34410Y19427D01* X34404Y19434D01* X34397Y19439D01* X34389Y19443D01* X34381Y19446D01* X34372Y19447D01* X34364Y19447D01* X34355Y19445D01* X34347Y19442D01* X34340Y19437D01* X34333Y19431D01* X34328Y19424D01* X34324Y19417D01* X34321Y19409D01* X34320Y19400D01* X34320Y19391D01* X34322Y19383D01* X34334Y19349D01* X34349Y19316D01* X34367Y19284D01* X34388Y19255D01* X34412Y19227D01* X34437Y19202D01* X34465Y19179D01* X34485Y19166D01* Y17820D01* X34480Y17816D01* X34452Y17793D01* X34427Y17767D01* X34404Y17739D01* X34384Y17709D01* X34366Y17677D01* X34352Y17644D01* X34340Y17610D01* X34338Y17601D01* X34338Y17593D01* X34339Y17584D01* X34342Y17576D01* X34347Y17568D01* X34352Y17561D01* X34359Y17556D01* X34366Y17551D01* X34374Y17548D01* X34383Y17546D01* X34392Y17546D01* X34400Y17547D01* X34408Y17550D01* X34416Y17555D01* X34423Y17560D01* X34429Y17567D01* X34433Y17574D01* X34436Y17582D01* X34445Y17608D01* X34456Y17633D01* X34469Y17657D01* X34484Y17679D01* X34485Y17680D01* Y17319D01* X34472Y17338D01* X34458Y17362D01* X34447Y17386D01* X34438Y17412D01* X34434Y17420D01* X34430Y17427D01* X34424Y17434D01* X34417Y17439D01* X34409Y17443D01* X34401Y17446D01* X34392Y17447D01* X34384Y17447D01* X34375Y17445D01* X34367Y17442D01* X34360Y17437D01* X34353Y17431D01* X34348Y17424D01* X34344Y17417D01* X34341Y17409D01* X34340Y17400D01* X34340Y17391D01* X34342Y17383D01* X34354Y17349D01* X34369Y17316D01* X34387Y17284D01* X34408Y17255D01* X34432Y17227D01* X34457Y17202D01* X34485Y17179D01* Y15804D01* X34472Y15793D01* X34447Y15767D01* X34424Y15739D01* X34404Y15709D01* X34386Y15677D01* X34372Y15644D01* X34360Y15610D01* X34358Y15601D01* X34358Y15593D01* X34359Y15584D01* X34362Y15576D01* X34367Y15568D01* X34372Y15561D01* X34379Y15556D01* X34386Y15551D01* X34394Y15548D01* X34403Y15546D01* X34412Y15546D01* X34420Y15547D01* X34428Y15550D01* X34436Y15555D01* X34443Y15560D01* X34449Y15567D01* X34453Y15574D01* X34456Y15582D01* X34465Y15608D01* X34476Y15633D01* X34485Y15650D01* Y15349D01* X34478Y15362D01* X34467Y15386D01* X34458Y15412D01* X34454Y15420D01* X34450Y15427D01* X34444Y15434D01* X34437Y15439D01* X34429Y15443D01* X34421Y15446D01* X34412Y15447D01* X34404Y15447D01* X34395Y15445D01* X34387Y15442D01* X34380Y15437D01* X34373Y15431D01* X34368Y15424D01* X34364Y15417D01* X34361Y15409D01* X34360Y15400D01* X34360Y15391D01* X34362Y15383D01* X34374Y15349D01* X34389Y15316D01* X34407Y15284D01* X34428Y15255D01* X34452Y15227D01* X34477Y15202D01* X34485Y15196D01* Y13785D01* X34467Y13767D01* X34444Y13739D01* X34424Y13709D01* X34406Y13677D01* X34392Y13644D01* X34380Y13610D01* X34378Y13601D01* X34378Y13593D01* X34379Y13584D01* X34382Y13576D01* X34387Y13568D01* X34392Y13561D01* X34399Y13556D01* X34406Y13551D01* X34414Y13548D01* X34423Y13546D01* X34432Y13546D01* X34440Y13547D01* X34448Y13550D01* X34456Y13555D01* X34463Y13560D01* X34469Y13567D01* X34473Y13574D01* X34476Y13582D01* X34485Y13608D01* X34485Y13609D01* Y13391D01* X34478Y13412D01* X34474Y13420D01* X34470Y13427D01* X34464Y13434D01* X34457Y13439D01* X34449Y13443D01* X34441Y13446D01* X34432Y13447D01* X34424Y13447D01* X34415Y13445D01* X34407Y13442D01* X34400Y13437D01* X34393Y13431D01* X34388Y13424D01* X34384Y13417D01* X34381Y13409D01* X34380Y13400D01* X34380Y13391D01* X34382Y13383D01* X34394Y13349D01* X34409Y13316D01* X34427Y13284D01* X34448Y13255D01* X34472Y13227D01* X34485Y13214D01* Y11765D01* X34464Y11739D01* X34444Y11709D01* X34426Y11677D01* X34412Y11644D01* X34400Y11610D01* X34398Y11601D01* X34398Y11593D01* X34399Y11584D01* X34402Y11576D01* X34407Y11568D01* X34412Y11561D01* X34419Y11556D01* X34426Y11551D01* X34434Y11548D01* X34443Y11546D01* X34452Y11546D01* X34460Y11547D01* X34468Y11550D01* X34476Y11555D01* X34483Y11560D01* X34485Y11563D01* Y11432D01* X34484Y11434D01* X34477Y11439D01* X34469Y11443D01* X34461Y11446D01* X34452Y11447D01* X34444Y11447D01* X34435Y11445D01* X34427Y11442D01* X34420Y11437D01* X34413Y11431D01* X34408Y11424D01* X34404Y11417D01* X34401Y11409D01* X34400Y11400D01* X34400Y11391D01* X34402Y11383D01* X34414Y11349D01* X34429Y11316D01* X34447Y11284D01* X34468Y11255D01* X34485Y11235D01* Y9740D01* G37* G36* Y21276D02*X34484Y21276D01* X34465Y21295D01* X34447Y21316D01* X34432Y21338D01* X34418Y21362D01* X34407Y21386D01* X34398Y21412D01* X34394Y21420D01* X34390Y21427D01* X34384Y21434D01* X34377Y21439D01* X34369Y21443D01* X34361Y21446D01* X34352Y21447D01* X34344Y21447D01* X34335Y21445D01* X34327Y21442D01* X34320Y21437D01* X34313Y21431D01* X34308Y21424D01* X34305Y21419D01* Y21571D01* X34307Y21568D01* X34312Y21561D01* X34319Y21556D01* X34326Y21551D01* X34334Y21548D01* X34343Y21546D01* X34352Y21546D01* X34360Y21547D01* X34368Y21550D01* X34376Y21555D01* X34383Y21560D01* X34389Y21567D01* X34393Y21574D01* X34396Y21582D01* X34405Y21608D01* X34416Y21633D01* X34429Y21657D01* X34444Y21679D01* X34461Y21700D01* X34480Y21719D01* X34485Y21723D01* Y21276D01* G37* G36* Y21846D02*X34469Y21837D01* X34440Y21816D01* X34412Y21793D01* X34387Y21767D01* X34364Y21739D01* X34344Y21709D01* X34326Y21677D01* X34312Y21644D01* X34305Y21625D01* Y23325D01* X34309Y23316D01* X34327Y23284D01* X34348Y23255D01* X34372Y23227D01* X34397Y23202D01* X34425Y23179D01* X34455Y23159D01* X34485Y23142D01* Y21846D01* G37* G36* Y23259D02*X34485Y23259D01* X34464Y23276D01* X34445Y23295D01* X34427Y23316D01* X34412Y23338D01* X34398Y23362D01* X34387Y23386D01* X34378Y23412D01* X34374Y23420D01* X34370Y23427D01* X34364Y23434D01* X34357Y23439D01* X34349Y23443D01* X34341Y23446D01* X34332Y23447D01* X34324Y23447D01* X34315Y23445D01* X34307Y23442D01* X34305Y23441D01* Y23552D01* X34306Y23551D01* X34314Y23548D01* X34323Y23546D01* X34332Y23546D01* X34340Y23547D01* X34348Y23550D01* X34356Y23555D01* X34363Y23560D01* X34369Y23567D01* X34373Y23574D01* X34376Y23582D01* X34385Y23608D01* X34396Y23633D01* X34409Y23657D01* X34424Y23679D01* X34441Y23700D01* X34460Y23719D01* X34481Y23737D01* X34485Y23740D01* Y23259D01* G37* G36* Y23857D02*X34481Y23855D01* X34449Y23837D01* X34420Y23816D01* X34392Y23793D01* X34367Y23767D01* X34344Y23739D01* X34324Y23709D01* X34306Y23677D01* X34305Y23675D01* Y25288D01* X34307Y25284D01* X34328Y25255D01* X34352Y25227D01* X34377Y25202D01* X34405Y25179D01* X34435Y25159D01* X34467Y25141D01* X34485Y25133D01* Y23857D01* G37* G36* Y25246D02*X34465Y25259D01* X34444Y25276D01* X34425Y25295D01* X34407Y25316D01* X34392Y25338D01* X34378Y25362D01* X34367Y25386D01* X34358Y25412D01* X34354Y25420D01* X34350Y25427D01* X34344Y25434D01* X34337Y25439D01* X34329Y25443D01* X34321Y25446D01* X34312Y25447D01* X34305Y25447D01* Y25546D01* X34312Y25546D01* X34320Y25547D01* X34328Y25550D01* X34336Y25555D01* X34343Y25560D01* X34349Y25567D01* X34353Y25574D01* X34356Y25582D01* X34365Y25608D01* X34376Y25633D01* X34389Y25657D01* X34404Y25679D01* X34421Y25700D01* X34440Y25719D01* X34461Y25737D01* X34483Y25752D01* X34485Y25754D01* Y25246D01* G37* G36* Y25866D02*X34461Y25855D01* X34429Y25837D01* X34400Y25816D01* X34372Y25793D01* X34347Y25767D01* X34324Y25739D01* X34305Y25711D01* Y27259D01* X34308Y27255D01* X34332Y27227D01* X34357Y27202D01* X34385Y27179D01* X34415Y27159D01* X34447Y27141D01* X34480Y27127D01* X34485Y27125D01* Y25866D01* G37* G36* Y27234D02*X34468Y27244D01* X34445Y27259D01* X34424Y27276D01* X34405Y27295D01* X34387Y27316D01* X34372Y27338D01* X34358Y27362D01* X34347Y27386D01* X34338Y27412D01* X34334Y27420D01* X34330Y27427D01* X34324Y27434D01* X34317Y27439D01* X34309Y27443D01* X34305Y27445D01* Y27549D01* X34308Y27550D01* X34316Y27555D01* X34323Y27560D01* X34329Y27567D01* X34333Y27574D01* X34336Y27582D01* X34345Y27608D01* X34356Y27633D01* X34369Y27657D01* X34384Y27679D01* X34401Y27700D01* X34420Y27719D01* X34441Y27737D01* X34463Y27752D01* X34485Y27765D01* Y27234D01* G37* G36* Y27874D02*X34473Y27870D01* X34441Y27855D01* X34409Y27837D01* X34380Y27816D01* X34352Y27793D01* X34327Y27767D01* X34305Y27740D01* Y29235D01* X34312Y29227D01* X34337Y29202D01* X34365Y29179D01* X34395Y29159D01* X34427Y29141D01* X34460Y29127D01* X34485Y29118D01* Y27874D01* G37* G36* Y29225D02*X34471Y29231D01* X34448Y29244D01* X34425Y29259D01* X34404Y29276D01* X34385Y29295D01* X34367Y29316D01* X34352Y29338D01* X34338Y29362D01* X34327Y29386D01* X34318Y29412D01* X34314Y29420D01* X34310Y29427D01* X34305Y29432D01* Y29563D01* X34309Y29567D01* X34313Y29574D01* X34316Y29582D01* X34325Y29608D01* X34336Y29633D01* X34349Y29657D01* X34364Y29679D01* X34381Y29700D01* X34400Y29719D01* X34421Y29737D01* X34443Y29752D01* X34467Y29766D01* X34485Y29775D01* Y29225D01* G37* G36* Y29881D02*X34453Y29870D01* X34421Y29855D01* X34389Y29837D01* X34360Y29816D01* X34332Y29793D01* X34307Y29767D01* X34305Y29765D01* Y31214D01* X34317Y31202D01* X34345Y31179D01* X34375Y31159D01* X34407Y31141D01* X34440Y31127D01* X34474Y31115D01* X34483Y31113D01* X34485D01* Y29881D01* G37* G36* Y31217D02*X34476Y31220D01* X34451Y31231D01* X34428Y31244D01* X34405Y31259D01* X34384Y31276D01* X34365Y31295D01* X34347Y31316D01* X34332Y31338D01* X34318Y31362D01* X34307Y31386D01* X34305Y31391D01* Y31609D01* X34316Y31633D01* X34329Y31657D01* X34344Y31679D01* X34361Y31700D01* X34380Y31719D01* X34401Y31737D01* X34423Y31752D01* X34447Y31766D01* X34471Y31777D01* X34485Y31782D01* Y31217D01* G37* G36* Y31884D02*X34485Y31884D01* X34476Y31884D01* X34468Y31882D01* X34433Y31870D01* X34401Y31855D01* X34369Y31837D01* X34340Y31816D01* X34312Y31793D01* X34305Y31785D01* Y33196D01* X34325Y33179D01* X34355Y33159D01* X34387Y33141D01* X34420Y33127D01* X34454Y33115D01* X34463Y33113D01* X34472Y33113D01* X34480Y33115D01* X34485Y33116D01* Y31884D01* G37* G36* Y33210D02*X34482Y33211D01* X34456Y33220D01* X34431Y33231D01* X34408Y33244D01* X34385Y33259D01* X34364Y33276D01* X34345Y33295D01* X34327Y33316D01* X34312Y33338D01* X34305Y33349D01* Y33650D01* X34309Y33657D01* X34324Y33679D01* X34341Y33700D01* X34360Y33719D01* X34381Y33737D01* X34403Y33752D01* X34427Y33766D01* X34451Y33777D01* X34477Y33786D01* X34485Y33790D01* X34485Y33790D01* Y33210D01* G37* G36* Y33878D02*X34482Y33880D01* X34473Y33883D01* X34465Y33884D01* X34456Y33884D01* X34448Y33882D01* X34413Y33870D01* X34381Y33855D01* X34349Y33837D01* X34320Y33816D01* X34305Y33804D01* Y35179D01* X34305Y35179D01* X34335Y35159D01* X34367Y35141D01* X34400Y35127D01* X34434Y35115D01* X34443Y35113D01* X34452Y35113D01* X34460Y35115D01* X34468Y35117D01* X34476Y35122D01* X34483Y35127D01* X34485Y35130D01* Y33878D01* G37* G36* Y35197D02*X34484Y35198D01* X34477Y35204D01* X34470Y35208D01* X34462Y35211D01* X34436Y35220D01* X34411Y35231D01* X34388Y35244D01* X34365Y35259D01* X34344Y35276D01* X34325Y35295D01* X34307Y35316D01* X34305Y35319D01* Y35680D01* X34321Y35700D01* X34340Y35719D01* X34361Y35737D01* X34383Y35752D01* X34407Y35766D01* X34431Y35777D01* X34457Y35786D01* X34465Y35790D01* X34472Y35794D01* X34479Y35800D01* X34484Y35807D01* X34485Y35809D01* Y35197D01* G37* G36* Y40000D02*X34744D01* Y39820D01* X34744Y39820D01* X34714Y39840D01* X34682Y39858D01* X34649Y39873D01* X34615Y39884D01* X34606Y39886D01* X34597Y39886D01* X34589Y39885D01* X34581Y39882D01* X34573Y39878D01* X34566Y39872D01* X34560Y39865D01* X34556Y39858D01* X34553Y39850D01* X34551Y39841D01* X34551Y39833D01* X34552Y39824D01* X34555Y39816D01* X34559Y39808D01* X34565Y39801D01* X34572Y39796D01* X34579Y39791D01* X34587Y39788D01* X34613Y39779D01* X34638Y39768D01* X34661Y39755D01* X34684Y39740D01* X34705Y39723D01* X34724Y39704D01* X34742Y39683D01* X34744Y39680D01* Y39319D01* X34728Y39299D01* X34709Y39280D01* X34688Y39262D01* X34666Y39247D01* X34642Y39233D01* X34618Y39222D01* X34592Y39213D01* X34584Y39209D01* X34577Y39205D01* X34570Y39199D01* X34565Y39192D01* X34561Y39184D01* X34558Y39176D01* X34557Y39167D01* X34557Y39159D01* X34559Y39150D01* X34562Y39142D01* X34567Y39135D01* X34573Y39128D01* X34580Y39123D01* X34587Y39119D01* X34596Y39116D01* X34604Y39115D01* X34613Y39115D01* X34621Y39117D01* X34656Y39129D01* X34688Y39144D01* X34720Y39162D01* X34744Y39180D01* Y37834D01* X34734Y37840D01* X34702Y37858D01* X34669Y37873D01* X34635Y37884D01* X34626Y37886D01* X34617Y37886D01* X34609Y37885D01* X34601Y37882D01* X34593Y37878D01* X34586Y37872D01* X34580Y37865D01* X34576Y37858D01* X34573Y37850D01* X34571Y37841D01* X34571Y37833D01* X34572Y37824D01* X34575Y37816D01* X34579Y37808D01* X34585Y37801D01* X34592Y37796D01* X34599Y37791D01* X34607Y37788D01* X34633Y37779D01* X34658Y37768D01* X34681Y37755D01* X34704Y37740D01* X34725Y37723D01* X34744Y37704D01* Y37295D01* X34729Y37280D01* X34708Y37262D01* X34686Y37247D01* X34662Y37233D01* X34638Y37222D01* X34612Y37213D01* X34604Y37209D01* X34597Y37205D01* X34590Y37199D01* X34585Y37192D01* X34581Y37184D01* X34578Y37176D01* X34577Y37167D01* X34577Y37159D01* X34579Y37150D01* X34582Y37142D01* X34587Y37135D01* X34593Y37128D01* X34600Y37123D01* X34607Y37119D01* X34616Y37116D01* X34624Y37115D01* X34633Y37115D01* X34641Y37117D01* X34676Y37129D01* X34708Y37144D01* X34740Y37162D01* X34744Y37165D01* Y35846D01* X34722Y35858D01* X34689Y35873D01* X34655Y35884D01* X34646Y35886D01* X34637Y35886D01* X34629Y35885D01* X34621Y35882D01* X34613Y35878D01* X34606Y35872D01* X34600Y35865D01* X34596Y35858D01* X34593Y35850D01* X34591Y35841D01* X34591Y35833D01* X34592Y35824D01* X34595Y35816D01* X34599Y35808D01* X34605Y35801D01* X34612Y35796D01* X34619Y35791D01* X34627Y35788D01* X34653Y35779D01* X34678Y35768D01* X34701Y35755D01* X34724Y35740D01* X34744Y35724D01* Y35276D01* X34728Y35262D01* X34706Y35247D01* X34682Y35233D01* X34658Y35222D01* X34632Y35213D01* X34624Y35209D01* X34617Y35205D01* X34610Y35199D01* X34605Y35192D01* X34601Y35184D01* X34598Y35176D01* X34597Y35167D01* X34597Y35159D01* X34599Y35150D01* X34602Y35142D01* X34607Y35135D01* X34613Y35128D01* X34620Y35123D01* X34627Y35119D01* X34636Y35116D01* X34644Y35115D01* X34653Y35115D01* X34661Y35117D01* X34696Y35129D01* X34728Y35144D01* X34744Y35153D01* Y33857D01* X34742Y33858D01* X34709Y33873D01* X34675Y33884D01* X34666Y33886D01* X34657Y33886D01* X34649Y33885D01* X34641Y33882D01* X34633Y33878D01* X34626Y33872D01* X34620Y33865D01* X34616Y33858D01* X34613Y33850D01* X34611Y33841D01* X34611Y33833D01* X34612Y33824D01* X34615Y33816D01* X34619Y33808D01* X34625Y33801D01* X34632Y33796D01* X34639Y33791D01* X34647Y33788D01* X34673Y33779D01* X34698Y33768D01* X34721Y33755D01* X34744Y33740D01* Y33259D01* X34726Y33247D01* X34702Y33233D01* X34678Y33222D01* X34652Y33213D01* X34644Y33209D01* X34637Y33205D01* X34630Y33199D01* X34625Y33192D01* X34621Y33184D01* X34618Y33176D01* X34617Y33167D01* X34617Y33159D01* X34619Y33150D01* X34622Y33142D01* X34627Y33135D01* X34633Y33128D01* X34640Y33123D01* X34647Y33119D01* X34656Y33116D01* X34664Y33115D01* X34673Y33115D01* X34681Y33117D01* X34716Y33129D01* X34744Y33142D01* Y31866D01* X34729Y31873D01* X34695Y31884D01* X34686Y31886D01* X34677Y31886D01* X34669Y31885D01* X34661Y31882D01* X34653Y31878D01* X34646Y31872D01* X34640Y31865D01* X34636Y31858D01* X34633Y31850D01* X34631Y31841D01* X34631Y31833D01* X34632Y31824D01* X34635Y31816D01* X34639Y31808D01* X34645Y31801D01* X34652Y31796D01* X34659Y31791D01* X34667Y31788D01* X34693Y31779D01* X34718Y31768D01* X34741Y31755D01* X34744Y31754D01* Y31246D01* X34722Y31233D01* X34698Y31222D01* X34672Y31213D01* X34664Y31209D01* X34657Y31205D01* X34650Y31199D01* X34645Y31192D01* X34641Y31184D01* X34638Y31176D01* X34637Y31167D01* X34637Y31159D01* X34639Y31150D01* X34642Y31142D01* X34647Y31135D01* X34653Y31128D01* X34660Y31123D01* X34667Y31119D01* X34676Y31116D01* X34684Y31115D01* X34693Y31115D01* X34701Y31117D01* X34736Y31129D01* X34744Y31133D01* Y29874D01* X34715Y29884D01* X34706Y29886D01* X34697Y29886D01* X34689Y29885D01* X34681Y29882D01* X34673Y29878D01* X34666Y29872D01* X34660Y29865D01* X34656Y29858D01* X34653Y29850D01* X34651Y29841D01* X34651Y29833D01* X34652Y29824D01* X34655Y29816D01* X34659Y29808D01* X34665Y29801D01* X34672Y29796D01* X34679Y29791D01* X34687Y29788D01* X34713Y29779D01* X34738Y29768D01* X34744Y29765D01* Y29234D01* X34742Y29233D01* X34718Y29222D01* X34692Y29213D01* X34684Y29209D01* X34677Y29205D01* X34670Y29199D01* X34665Y29192D01* X34661Y29184D01* X34658Y29176D01* X34657Y29167D01* X34657Y29159D01* X34659Y29150D01* X34662Y29142D01* X34667Y29135D01* X34673Y29128D01* X34680Y29123D01* X34687Y29119D01* X34696Y29116D01* X34704Y29115D01* X34713Y29115D01* X34721Y29117D01* X34744Y29125D01* Y27881D01* X34735Y27884D01* X34726Y27886D01* X34717Y27886D01* X34709Y27885D01* X34701Y27882D01* X34693Y27878D01* X34686Y27872D01* X34680Y27865D01* X34676Y27858D01* X34673Y27850D01* X34671Y27841D01* X34671Y27833D01* X34672Y27824D01* X34675Y27816D01* X34679Y27808D01* X34685Y27801D01* X34692Y27796D01* X34699Y27791D01* X34707Y27788D01* X34733Y27779D01* X34744Y27774D01* Y27225D01* X34738Y27222D01* X34712Y27213D01* X34704Y27209D01* X34697Y27205D01* X34690Y27199D01* X34685Y27192D01* X34681Y27184D01* X34678Y27176D01* X34677Y27167D01* X34677Y27159D01* X34679Y27150D01* X34682Y27142D01* X34687Y27135D01* X34693Y27128D01* X34700Y27123D01* X34707Y27119D01* X34716Y27116D01* X34724Y27115D01* X34733Y27115D01* X34741Y27117D01* X34744Y27118D01* Y25886D01* X34737Y25886D01* X34729Y25885D01* X34721Y25882D01* X34713Y25878D01* X34706Y25872D01* X34700Y25865D01* X34696Y25858D01* X34693Y25850D01* X34691Y25841D01* X34691Y25833D01* X34692Y25824D01* X34695Y25816D01* X34699Y25808D01* X34705Y25801D01* X34712Y25796D01* X34719Y25791D01* X34727Y25788D01* X34744Y25782D01* Y25217D01* X34732Y25213D01* X34724Y25209D01* X34717Y25205D01* X34710Y25199D01* X34705Y25192D01* X34701Y25184D01* X34698Y25176D01* X34697Y25167D01* X34697Y25159D01* X34699Y25150D01* X34702Y25142D01* X34707Y25135D01* X34713Y25128D01* X34720Y25123D01* X34727Y25119D01* X34736Y25116D01* X34744Y25115D01* Y23883D01* X34741Y23882D01* X34733Y23878D01* X34726Y23872D01* X34720Y23865D01* X34716Y23858D01* X34713Y23850D01* X34711Y23841D01* X34711Y23833D01* X34712Y23824D01* X34715Y23816D01* X34719Y23808D01* X34725Y23801D01* X34732Y23796D01* X34739Y23791D01* X34744Y23789D01* Y23209D01* X34737Y23205D01* X34730Y23199D01* X34725Y23192D01* X34721Y23184D01* X34718Y23176D01* X34717Y23167D01* X34717Y23159D01* X34719Y23150D01* X34722Y23142D01* X34727Y23135D01* X34733Y23128D01* X34740Y23123D01* X34744Y23121D01* Y21870D01* X34740Y21865D01* X34736Y21858D01* X34733Y21850D01* X34731Y21841D01* X34731Y21833D01* X34732Y21824D01* X34735Y21816D01* X34739Y21808D01* X34744Y21802D01* Y21190D01* X34741Y21184D01* X34738Y21176D01* X34737Y21167D01* X34737Y21159D01* X34739Y21150D01* X34742Y21142D01* X34744Y21140D01* Y9861D01* X34742Y9864D01* X34736Y9871D01* X34729Y9876D01* X34722Y9880D01* X34713Y9883D01* X34705Y9884D01* X34696Y9884D01* X34688Y9882D01* X34653Y9870D01* X34621Y9855D01* X34589Y9837D01* X34560Y9816D01* X34532Y9793D01* X34507Y9767D01* X34485Y9740D01* Y11235D01* X34492Y11227D01* X34517Y11202D01* X34545Y11179D01* X34575Y11159D01* X34607Y11141D01* X34640Y11127D01* X34674Y11115D01* X34683Y11113D01* X34692Y11113D01* X34700Y11115D01* X34708Y11117D01* X34716Y11122D01* X34723Y11127D01* X34729Y11134D01* X34733Y11141D01* X34736Y11149D01* X34738Y11158D01* X34738Y11167D01* X34737Y11175D01* X34734Y11183D01* X34730Y11191D01* X34724Y11198D01* X34717Y11204D01* X34710Y11208D01* X34702Y11211D01* X34676Y11220D01* X34651Y11231D01* X34628Y11244D01* X34605Y11259D01* X34584Y11276D01* X34565Y11295D01* X34547Y11316D01* X34532Y11338D01* X34518Y11362D01* X34507Y11386D01* X34498Y11412D01* X34494Y11420D01* X34490Y11427D01* X34485Y11432D01* Y11563D01* X34489Y11567D01* X34493Y11574D01* X34496Y11582D01* X34505Y11608D01* X34516Y11633D01* X34529Y11657D01* X34544Y11679D01* X34561Y11700D01* X34580Y11719D01* X34601Y11737D01* X34623Y11752D01* X34647Y11766D01* X34671Y11777D01* X34697Y11786D01* X34705Y11790D01* X34712Y11794D01* X34719Y11800D01* X34724Y11807D01* X34728Y11815D01* X34731Y11823D01* X34732Y11832D01* X34732Y11840D01* X34730Y11849D01* X34727Y11857D01* X34722Y11864D01* X34716Y11871D01* X34709Y11876D01* X34702Y11880D01* X34693Y11883D01* X34685Y11884D01* X34676Y11884D01* X34668Y11882D01* X34633Y11870D01* X34601Y11855D01* X34569Y11837D01* X34540Y11816D01* X34512Y11793D01* X34487Y11767D01* X34485Y11765D01* Y13214D01* X34497Y13202D01* X34525Y13179D01* X34555Y13159D01* X34587Y13141D01* X34620Y13127D01* X34654Y13115D01* X34663Y13113D01* X34672Y13113D01* X34680Y13115D01* X34688Y13117D01* X34696Y13122D01* X34703Y13127D01* X34709Y13134D01* X34713Y13141D01* X34716Y13149D01* X34718Y13158D01* X34718Y13167D01* X34717Y13175D01* X34714Y13183D01* X34710Y13191D01* X34704Y13198D01* X34697Y13204D01* X34690Y13208D01* X34682Y13211D01* X34656Y13220D01* X34631Y13231D01* X34608Y13244D01* X34585Y13259D01* X34564Y13276D01* X34545Y13295D01* X34527Y13316D01* X34512Y13338D01* X34498Y13362D01* X34487Y13386D01* X34485Y13391D01* Y13609D01* X34496Y13633D01* X34509Y13657D01* X34524Y13679D01* X34541Y13700D01* X34560Y13719D01* X34581Y13737D01* X34603Y13752D01* X34627Y13766D01* X34651Y13777D01* X34677Y13786D01* X34685Y13790D01* X34692Y13794D01* X34699Y13800D01* X34704Y13807D01* X34708Y13815D01* X34711Y13823D01* X34712Y13832D01* X34712Y13840D01* X34710Y13849D01* X34707Y13857D01* X34702Y13864D01* X34696Y13871D01* X34689Y13876D01* X34682Y13880D01* X34673Y13883D01* X34665Y13884D01* X34656Y13884D01* X34648Y13882D01* X34613Y13870D01* X34581Y13855D01* X34549Y13837D01* X34520Y13816D01* X34492Y13793D01* X34485Y13785D01* Y15196D01* X34505Y15179D01* X34535Y15159D01* X34567Y15141D01* X34600Y15127D01* X34634Y15115D01* X34643Y15113D01* X34652Y15113D01* X34660Y15115D01* X34668Y15117D01* X34676Y15122D01* X34683Y15127D01* X34689Y15134D01* X34693Y15141D01* X34696Y15149D01* X34698Y15158D01* X34698Y15167D01* X34697Y15175D01* X34694Y15183D01* X34690Y15191D01* X34684Y15198D01* X34677Y15204D01* X34670Y15208D01* X34662Y15211D01* X34636Y15220D01* X34611Y15231D01* X34588Y15244D01* X34565Y15259D01* X34544Y15276D01* X34525Y15295D01* X34507Y15316D01* X34492Y15338D01* X34485Y15349D01* Y15650D01* X34489Y15657D01* X34504Y15679D01* X34521Y15700D01* X34540Y15719D01* X34561Y15737D01* X34583Y15752D01* X34607Y15766D01* X34631Y15777D01* X34657Y15786D01* X34665Y15790D01* X34672Y15794D01* X34679Y15800D01* X34684Y15807D01* X34688Y15815D01* X34691Y15823D01* X34692Y15832D01* X34692Y15840D01* X34690Y15849D01* X34687Y15857D01* X34682Y15864D01* X34676Y15871D01* X34669Y15876D01* X34662Y15880D01* X34653Y15883D01* X34645Y15884D01* X34636Y15884D01* X34628Y15882D01* X34593Y15870D01* X34561Y15855D01* X34529Y15837D01* X34500Y15816D01* X34485Y15804D01* Y17179D01* X34485Y17179D01* X34515Y17159D01* X34547Y17141D01* X34580Y17127D01* X34614Y17115D01* X34623Y17113D01* X34632Y17113D01* X34640Y17115D01* X34648Y17117D01* X34656Y17122D01* X34663Y17127D01* X34669Y17134D01* X34673Y17141D01* X34676Y17149D01* X34678Y17158D01* X34678Y17167D01* X34677Y17175D01* X34674Y17183D01* X34670Y17191D01* X34664Y17198D01* X34657Y17204D01* X34650Y17208D01* X34642Y17211D01* X34616Y17220D01* X34591Y17231D01* X34568Y17244D01* X34545Y17259D01* X34524Y17276D01* X34505Y17295D01* X34487Y17316D01* X34485Y17319D01* Y17680D01* X34501Y17700D01* X34520Y17719D01* X34541Y17737D01* X34563Y17752D01* X34587Y17766D01* X34611Y17777D01* X34637Y17786D01* X34645Y17790D01* X34652Y17794D01* X34659Y17800D01* X34664Y17807D01* X34668Y17815D01* X34671Y17823D01* X34672Y17832D01* X34672Y17840D01* X34670Y17849D01* X34667Y17857D01* X34662Y17864D01* X34656Y17871D01* X34649Y17876D01* X34642Y17880D01* X34633Y17883D01* X34625Y17884D01* X34616Y17884D01* X34608Y17882D01* X34573Y17870D01* X34541Y17855D01* X34509Y17837D01* X34485Y17820D01* Y19166D01* X34495Y19159D01* X34527Y19141D01* X34560Y19127D01* X34594Y19115D01* X34603Y19113D01* X34612Y19113D01* X34620Y19115D01* X34628Y19117D01* X34636Y19122D01* X34643Y19127D01* X34649Y19134D01* X34653Y19141D01* X34656Y19149D01* X34658Y19158D01* X34658Y19167D01* X34657Y19175D01* X34654Y19183D01* X34650Y19191D01* X34644Y19198D01* X34637Y19204D01* X34630Y19208D01* X34622Y19211D01* X34596Y19220D01* X34571Y19231D01* X34548Y19244D01* X34525Y19259D01* X34504Y19276D01* X34485Y19295D01* Y19704D01* X34500Y19719D01* X34521Y19737D01* X34543Y19752D01* X34567Y19766D01* X34591Y19777D01* X34617Y19786D01* X34625Y19790D01* X34632Y19794D01* X34639Y19800D01* X34644Y19807D01* X34648Y19815D01* X34651Y19823D01* X34652Y19832D01* X34652Y19840D01* X34650Y19849D01* X34647Y19857D01* X34642Y19864D01* X34636Y19871D01* X34629Y19876D01* X34622Y19880D01* X34613Y19883D01* X34605Y19884D01* X34596Y19884D01* X34588Y19882D01* X34553Y19870D01* X34521Y19855D01* X34489Y19837D01* X34485Y19834D01* Y21153D01* X34507Y21141D01* X34540Y21127D01* X34574Y21115D01* X34583Y21113D01* X34592Y21113D01* X34600Y21115D01* X34608Y21117D01* X34616Y21122D01* X34623Y21127D01* X34629Y21134D01* X34633Y21141D01* X34636Y21149D01* X34638Y21158D01* X34638Y21167D01* X34637Y21175D01* X34634Y21183D01* X34630Y21191D01* X34624Y21198D01* X34617Y21204D01* X34610Y21208D01* X34602Y21211D01* X34576Y21220D01* X34551Y21231D01* X34528Y21244D01* X34505Y21259D01* X34485Y21276D01* Y21723D01* X34501Y21737D01* X34523Y21752D01* X34547Y21766D01* X34571Y21777D01* X34597Y21786D01* X34605Y21790D01* X34612Y21794D01* X34619Y21800D01* X34624Y21807D01* X34628Y21815D01* X34631Y21823D01* X34632Y21832D01* X34632Y21840D01* X34630Y21849D01* X34627Y21857D01* X34622Y21864D01* X34616Y21871D01* X34609Y21876D01* X34602Y21880D01* X34593Y21883D01* X34585Y21884D01* X34576Y21884D01* X34568Y21882D01* X34533Y21870D01* X34501Y21855D01* X34485Y21846D01* Y23142D01* X34487Y23141D01* X34520Y23127D01* X34554Y23115D01* X34563Y23113D01* X34572Y23113D01* X34580Y23115D01* X34588Y23117D01* X34596Y23122D01* X34603Y23127D01* X34609Y23134D01* X34613Y23141D01* X34616Y23149D01* X34618Y23158D01* X34618Y23167D01* X34617Y23175D01* X34614Y23183D01* X34610Y23191D01* X34604Y23198D01* X34597Y23204D01* X34590Y23208D01* X34582Y23211D01* X34556Y23220D01* X34531Y23231D01* X34508Y23244D01* X34485Y23259D01* Y23740D01* X34503Y23752D01* X34527Y23766D01* X34551Y23777D01* X34577Y23786D01* X34585Y23790D01* X34592Y23794D01* X34599Y23800D01* X34604Y23807D01* X34608Y23815D01* X34611Y23823D01* X34612Y23832D01* X34612Y23840D01* X34610Y23849D01* X34607Y23857D01* X34602Y23864D01* X34596Y23871D01* X34589Y23876D01* X34582Y23880D01* X34573Y23883D01* X34565Y23884D01* X34556Y23884D01* X34548Y23882D01* X34513Y23870D01* X34485Y23857D01* Y25133D01* X34500Y25127D01* X34534Y25115D01* X34543Y25113D01* X34552Y25113D01* X34560Y25115D01* X34568Y25117D01* X34576Y25122D01* X34583Y25127D01* X34589Y25134D01* X34593Y25141D01* X34596Y25149D01* X34598Y25158D01* X34598Y25167D01* X34597Y25175D01* X34594Y25183D01* X34590Y25191D01* X34584Y25198D01* X34577Y25204D01* X34570Y25208D01* X34562Y25211D01* X34536Y25220D01* X34511Y25231D01* X34488Y25244D01* X34485Y25246D01* Y25754D01* X34507Y25766D01* X34531Y25777D01* X34557Y25786D01* X34565Y25790D01* X34572Y25794D01* X34579Y25800D01* X34584Y25807D01* X34588Y25815D01* X34591Y25823D01* X34592Y25832D01* X34592Y25840D01* X34590Y25849D01* X34587Y25857D01* X34582Y25864D01* X34576Y25871D01* X34569Y25876D01* X34562Y25880D01* X34553Y25883D01* X34545Y25884D01* X34536Y25884D01* X34528Y25882D01* X34493Y25870D01* X34485Y25866D01* Y27125D01* X34514Y27115D01* X34523Y27113D01* X34532Y27113D01* X34540Y27115D01* X34548Y27117D01* X34556Y27122D01* X34563Y27127D01* X34569Y27134D01* X34573Y27141D01* X34576Y27149D01* X34578Y27158D01* X34578Y27167D01* X34577Y27175D01* X34574Y27183D01* X34570Y27191D01* X34564Y27198D01* X34557Y27204D01* X34550Y27208D01* X34542Y27211D01* X34516Y27220D01* X34491Y27231D01* X34485Y27234D01* Y27765D01* X34487Y27766D01* X34511Y27777D01* X34537Y27786D01* X34545Y27790D01* X34552Y27794D01* X34559Y27800D01* X34564Y27807D01* X34568Y27815D01* X34571Y27823D01* X34572Y27832D01* X34572Y27840D01* X34570Y27849D01* X34567Y27857D01* X34562Y27864D01* X34556Y27871D01* X34549Y27876D01* X34542Y27880D01* X34533Y27883D01* X34525Y27884D01* X34516Y27884D01* X34508Y27882D01* X34485Y27874D01* Y29118D01* X34494Y29115D01* X34503Y29113D01* X34512Y29113D01* X34520Y29115D01* X34528Y29117D01* X34536Y29122D01* X34543Y29127D01* X34549Y29134D01* X34553Y29141D01* X34556Y29149D01* X34558Y29158D01* X34558Y29167D01* X34557Y29175D01* X34554Y29183D01* X34550Y29191D01* X34544Y29198D01* X34537Y29204D01* X34530Y29208D01* X34522Y29211D01* X34496Y29220D01* X34485Y29225D01* Y29775D01* X34491Y29777D01* X34517Y29786D01* X34525Y29790D01* X34532Y29794D01* X34539Y29800D01* X34544Y29807D01* X34548Y29815D01* X34551Y29823D01* X34552Y29832D01* X34552Y29840D01* X34550Y29849D01* X34547Y29857D01* X34542Y29864D01* X34536Y29871D01* X34529Y29876D01* X34522Y29880D01* X34513Y29883D01* X34505Y29884D01* X34496Y29884D01* X34488Y29882D01* X34485Y29881D01* Y31113D01* X34492Y31113D01* X34500Y31115D01* X34508Y31117D01* X34516Y31122D01* X34523Y31127D01* X34529Y31134D01* X34533Y31141D01* X34536Y31149D01* X34538Y31158D01* X34538Y31167D01* X34537Y31175D01* X34534Y31183D01* X34530Y31191D01* X34524Y31198D01* X34517Y31204D01* X34510Y31208D01* X34502Y31211D01* X34485Y31217D01* Y31782D01* X34497Y31786D01* X34505Y31790D01* X34512Y31794D01* X34519Y31800D01* X34524Y31807D01* X34528Y31815D01* X34531Y31823D01* X34532Y31832D01* X34532Y31840D01* X34530Y31849D01* X34527Y31857D01* X34522Y31864D01* X34516Y31871D01* X34509Y31876D01* X34502Y31880D01* X34493Y31883D01* X34485Y31884D01* Y33116D01* X34488Y33117D01* X34496Y33122D01* X34503Y33127D01* X34509Y33134D01* X34513Y33141D01* X34516Y33149D01* X34518Y33158D01* X34518Y33167D01* X34517Y33175D01* X34514Y33183D01* X34510Y33191D01* X34504Y33198D01* X34497Y33204D01* X34490Y33208D01* X34485Y33210D01* Y33790D01* X34492Y33794D01* X34499Y33800D01* X34504Y33807D01* X34508Y33815D01* X34511Y33823D01* X34512Y33832D01* X34512Y33840D01* X34510Y33849D01* X34507Y33857D01* X34502Y33864D01* X34496Y33871D01* X34489Y33876D01* X34485Y33878D01* Y35130D01* X34489Y35134D01* X34493Y35141D01* X34496Y35149D01* X34498Y35158D01* X34498Y35167D01* X34497Y35175D01* X34494Y35183D01* X34490Y35191D01* X34485Y35197D01* Y35809D01* X34488Y35815D01* X34491Y35823D01* X34492Y35832D01* X34492Y35840D01* X34490Y35849D01* X34487Y35857D01* X34485Y35859D01* Y40000D01* G37* G36* Y9549D02*X34488Y9550D01* X34496Y9555D01* X34503Y9560D01* X34509Y9567D01* X34513Y9574D01* X34516Y9582D01* X34525Y9608D01* X34536Y9633D01* X34549Y9657D01* X34564Y9679D01* X34581Y9700D01* X34600Y9719D01* X34621Y9737D01* X34643Y9752D01* X34667Y9766D01* X34691Y9777D01* X34717Y9786D01* X34725Y9790D01* X34732Y9794D01* X34739Y9800D01* X34744Y9807D01* Y9198D01* X34737Y9204D01* X34730Y9208D01* X34722Y9211D01* X34696Y9220D01* X34671Y9231D01* X34648Y9244D01* X34625Y9259D01* X34604Y9276D01* X34585Y9295D01* X34567Y9316D01* X34552Y9338D01* X34538Y9362D01* X34527Y9386D01* X34518Y9412D01* X34514Y9420D01* X34510Y9427D01* X34504Y9434D01* X34497Y9439D01* X34489Y9443D01* X34485Y9445D01* Y9549D01* G37* G36* Y9259D02*X34488Y9255D01* X34512Y9227D01* X34537Y9202D01* X34565Y9179D01* X34595Y9159D01* X34627Y9141D01* X34660Y9127D01* X34694Y9115D01* X34703Y9113D01* X34712Y9113D01* X34720Y9115D01* X34728Y9117D01* X34736Y9122D01* X34743Y9127D01* X34744Y9128D01* Y7879D01* X34742Y7880D01* X34733Y7883D01* X34725Y7884D01* X34716Y7884D01* X34708Y7882D01* X34673Y7870D01* X34641Y7855D01* X34609Y7837D01* X34580Y7816D01* X34552Y7793D01* X34527Y7767D01* X34504Y7739D01* X34485Y7711D01* Y9259D01* G37* G36* Y7546D02*X34492Y7546D01* X34500Y7547D01* X34508Y7550D01* X34516Y7555D01* X34523Y7560D01* X34529Y7567D01* X34533Y7574D01* X34536Y7582D01* X34545Y7608D01* X34556Y7633D01* X34569Y7657D01* X34584Y7679D01* X34601Y7700D01* X34620Y7719D01* X34641Y7737D01* X34663Y7752D01* X34687Y7766D01* X34711Y7777D01* X34737Y7786D01* X34744Y7789D01* Y7210D01* X34742Y7211D01* X34716Y7220D01* X34691Y7231D01* X34668Y7244D01* X34645Y7259D01* X34624Y7276D01* X34605Y7295D01* X34587Y7316D01* X34572Y7338D01* X34558Y7362D01* X34547Y7386D01* X34538Y7412D01* X34534Y7420D01* X34530Y7427D01* X34524Y7434D01* X34517Y7439D01* X34509Y7443D01* X34501Y7446D01* X34492Y7447D01* X34485Y7447D01* Y7546D01* G37* G36* Y7288D02*X34487Y7284D01* X34508Y7255D01* X34532Y7227D01* X34557Y7202D01* X34585Y7179D01* X34615Y7159D01* X34647Y7141D01* X34680Y7127D01* X34714Y7115D01* X34723Y7113D01* X34732Y7113D01* X34740Y7115D01* X34744Y7116D01* Y5884D01* X34736Y5884D01* X34728Y5882D01* X34693Y5870D01* X34661Y5855D01* X34629Y5837D01* X34600Y5816D01* X34572Y5793D01* X34547Y5767D01* X34524Y5739D01* X34504Y5709D01* X34486Y5677D01* X34485Y5675D01* Y7288D01* G37* G36* Y5552D02*X34486Y5551D01* X34494Y5548D01* X34503Y5546D01* X34512Y5546D01* X34520Y5547D01* X34528Y5550D01* X34536Y5555D01* X34543Y5560D01* X34549Y5567D01* X34553Y5574D01* X34556Y5582D01* X34565Y5608D01* X34576Y5633D01* X34589Y5657D01* X34604Y5679D01* X34621Y5700D01* X34640Y5719D01* X34661Y5737D01* X34683Y5752D01* X34707Y5766D01* X34731Y5777D01* X34744Y5782D01* Y5217D01* X34736Y5220D01* X34711Y5231D01* X34688Y5244D01* X34665Y5259D01* X34644Y5276D01* X34625Y5295D01* X34607Y5316D01* X34592Y5338D01* X34578Y5362D01* X34567Y5386D01* X34558Y5412D01* X34554Y5420D01* X34550Y5427D01* X34544Y5434D01* X34537Y5439D01* X34529Y5443D01* X34521Y5446D01* X34512Y5447D01* X34504Y5447D01* X34495Y5445D01* X34487Y5442D01* X34485Y5441D01* Y5552D01* G37* G36* Y5325D02*X34489Y5316D01* X34507Y5284D01* X34528Y5255D01* X34552Y5227D01* X34577Y5202D01* X34605Y5179D01* X34635Y5159D01* X34667Y5141D01* X34700Y5127D01* X34734Y5115D01* X34743Y5113D01* X34744D01* Y3881D01* X34713Y3870D01* X34681Y3855D01* X34649Y3837D01* X34620Y3816D01* X34592Y3793D01* X34567Y3767D01* X34544Y3739D01* X34524Y3709D01* X34506Y3677D01* X34492Y3644D01* X34485Y3625D01* Y5325D01* G37* G36* Y3571D02*X34487Y3568D01* X34492Y3561D01* X34499Y3556D01* X34506Y3551D01* X34514Y3548D01* X34523Y3546D01* X34532Y3546D01* X34540Y3547D01* X34548Y3550D01* X34556Y3555D01* X34563Y3560D01* X34569Y3567D01* X34573Y3574D01* X34576Y3582D01* X34585Y3608D01* X34596Y3633D01* X34609Y3657D01* X34624Y3679D01* X34641Y3700D01* X34660Y3719D01* X34681Y3737D01* X34703Y3752D01* X34727Y3766D01* X34744Y3774D01* Y3225D01* X34731Y3231D01* X34708Y3244D01* X34685Y3259D01* X34664Y3276D01* X34645Y3295D01* X34627Y3316D01* X34612Y3338D01* X34598Y3362D01* X34587Y3386D01* X34578Y3412D01* X34574Y3420D01* X34570Y3427D01* X34564Y3434D01* X34557Y3439D01* X34549Y3443D01* X34541Y3446D01* X34532Y3447D01* X34524Y3447D01* X34515Y3445D01* X34507Y3442D01* X34500Y3437D01* X34493Y3431D01* X34488Y3424D01* X34485Y3419D01* Y3571D01* G37* G36* Y3374D02*X34494Y3349D01* X34509Y3316D01* X34527Y3284D01* X34548Y3255D01* X34572Y3227D01* X34597Y3202D01* X34625Y3179D01* X34655Y3159D01* X34687Y3141D01* X34720Y3127D01* X34744Y3119D01* Y1874D01* X34733Y1870D01* X34701Y1855D01* X34669Y1837D01* X34640Y1816D01* X34612Y1793D01* X34587Y1767D01* X34564Y1739D01* X34544Y1709D01* X34526Y1677D01* X34512Y1644D01* X34500Y1610D01* X34498Y1601D01* X34498Y1593D01* X34499Y1584D01* X34502Y1576D01* X34507Y1568D01* X34512Y1561D01* X34519Y1556D01* X34526Y1551D01* X34534Y1548D01* X34543Y1546D01* X34552Y1546D01* X34560Y1547D01* X34568Y1550D01* X34576Y1555D01* X34583Y1560D01* X34589Y1567D01* X34593Y1574D01* X34596Y1582D01* X34605Y1608D01* X34616Y1633D01* X34629Y1657D01* X34644Y1679D01* X34661Y1700D01* X34680Y1719D01* X34701Y1737D01* X34723Y1752D01* X34744Y1764D01* Y1235D01* X34728Y1244D01* X34705Y1259D01* X34684Y1276D01* X34665Y1295D01* X34647Y1316D01* X34632Y1338D01* X34618Y1362D01* X34607Y1386D01* X34598Y1412D01* X34594Y1420D01* X34590Y1427D01* X34584Y1434D01* X34577Y1439D01* X34569Y1443D01* X34561Y1446D01* X34552Y1447D01* X34544Y1447D01* X34535Y1445D01* X34527Y1442D01* X34520Y1437D01* X34513Y1431D01* X34508Y1424D01* X34504Y1417D01* X34501Y1409D01* X34500Y1400D01* X34500Y1391D01* X34502Y1383D01* X34514Y1349D01* X34529Y1316D01* X34547Y1284D01* X34568Y1255D01* X34592Y1227D01* X34617Y1202D01* X34645Y1179D01* X34675Y1159D01* X34707Y1141D01* X34740Y1127D01* X34744Y1125D01* Y0D01* X34485D01* Y3374D01* G37* G36* X34744Y40000D02*X34924D01* Y35625D01* X34915Y35651D01* X34900Y35683D01* X34882Y35715D01* X34861Y35744D01* X34837Y35772D01* X34812Y35797D01* X34784Y35820D01* X34754Y35840D01* X34744Y35846D01* Y37165D01* X34769Y37183D01* X34797Y37207D01* X34822Y37232D01* X34845Y37260D01* X34865Y37290D01* X34883Y37322D01* X34897Y37355D01* X34909Y37389D01* X34911Y37398D01* X34911Y37407D01* X34910Y37415D01* X34907Y37423D01* X34902Y37431D01* X34897Y37438D01* X34890Y37444D01* X34883Y37448D01* X34875Y37451D01* X34866Y37453D01* X34857Y37453D01* X34849Y37452D01* X34841Y37449D01* X34833Y37445D01* X34826Y37439D01* X34820Y37433D01* X34816Y37425D01* X34813Y37417D01* X34804Y37391D01* X34793Y37366D01* X34780Y37343D01* X34765Y37320D01* X34748Y37299D01* X34744Y37295D01* Y37704D01* X34744Y37704D01* X34762Y37683D01* X34777Y37661D01* X34791Y37637D01* X34802Y37613D01* X34811Y37587D01* X34815Y37579D01* X34819Y37572D01* X34825Y37565D01* X34832Y37560D01* X34840Y37556D01* X34848Y37553D01* X34857Y37552D01* X34865Y37552D01* X34874Y37554D01* X34882Y37557D01* X34889Y37562D01* X34896Y37568D01* X34901Y37575D01* X34905Y37582D01* X34908Y37591D01* X34909Y37599D01* X34909Y37608D01* X34907Y37617D01* X34895Y37651D01* X34880Y37683D01* X34862Y37715D01* X34841Y37744D01* X34817Y37772D01* X34792Y37797D01* X34764Y37820D01* X34744Y37834D01* Y39180D01* X34749Y39183D01* X34777Y39207D01* X34802Y39232D01* X34825Y39260D01* X34845Y39290D01* X34863Y39322D01* X34877Y39355D01* X34889Y39389D01* X34891Y39398D01* X34891Y39407D01* X34890Y39415D01* X34887Y39423D01* X34882Y39431D01* X34877Y39438D01* X34870Y39444D01* X34863Y39448D01* X34855Y39451D01* X34846Y39453D01* X34837Y39453D01* X34829Y39452D01* X34821Y39449D01* X34813Y39445D01* X34806Y39439D01* X34800Y39433D01* X34796Y39425D01* X34793Y39417D01* X34784Y39391D01* X34773Y39366D01* X34760Y39343D01* X34745Y39320D01* X34744Y39319D01* Y39680D01* X34757Y39661D01* X34771Y39637D01* X34782Y39613D01* X34791Y39587D01* X34795Y39579D01* X34799Y39572D01* X34805Y39565D01* X34812Y39560D01* X34820Y39556D01* X34828Y39553D01* X34837Y39552D01* X34845Y39552D01* X34854Y39554D01* X34862Y39557D01* X34869Y39562D01* X34876Y39568D01* X34881Y39575D01* X34885Y39582D01* X34888Y39591D01* X34889Y39599D01* X34889Y39608D01* X34887Y39617D01* X34875Y39651D01* X34860Y39683D01* X34842Y39715D01* X34821Y39744D01* X34797Y39772D01* X34772Y39797D01* X34744Y39820D01* Y40000D01* G37* G36* X34924Y0D02*X34744D01* Y1125D01* X34774Y1115D01* X34783Y1113D01* X34792Y1113D01* X34800Y1115D01* X34808Y1117D01* X34816Y1122D01* X34823Y1127D01* X34829Y1134D01* X34833Y1141D01* X34836Y1149D01* X34838Y1158D01* X34838Y1167D01* X34837Y1175D01* X34834Y1183D01* X34830Y1191D01* X34824Y1198D01* X34817Y1204D01* X34810Y1208D01* X34802Y1211D01* X34776Y1220D01* X34751Y1231D01* X34744Y1235D01* Y1764D01* X34747Y1766D01* X34771Y1777D01* X34797Y1786D01* X34805Y1790D01* X34812Y1794D01* X34819Y1800D01* X34824Y1807D01* X34828Y1815D01* X34831Y1823D01* X34832Y1832D01* X34832Y1840D01* X34830Y1849D01* X34827Y1857D01* X34822Y1864D01* X34816Y1871D01* X34809Y1876D01* X34802Y1880D01* X34793Y1883D01* X34785Y1884D01* X34776Y1884D01* X34768Y1882D01* X34744Y1874D01* Y3119D01* X34754Y3115D01* X34763Y3113D01* X34772Y3113D01* X34780Y3115D01* X34788Y3117D01* X34796Y3122D01* X34803Y3127D01* X34809Y3134D01* X34813Y3141D01* X34816Y3149D01* X34818Y3158D01* X34818Y3167D01* X34817Y3175D01* X34814Y3183D01* X34810Y3191D01* X34804Y3198D01* X34797Y3204D01* X34790Y3208D01* X34782Y3211D01* X34756Y3220D01* X34744Y3225D01* Y3774D01* X34751Y3777D01* X34777Y3786D01* X34785Y3790D01* X34792Y3794D01* X34799Y3800D01* X34804Y3807D01* X34808Y3815D01* X34811Y3823D01* X34812Y3832D01* X34812Y3840D01* X34810Y3849D01* X34807Y3857D01* X34802Y3864D01* X34796Y3871D01* X34789Y3876D01* X34782Y3880D01* X34773Y3883D01* X34765Y3884D01* X34756Y3884D01* X34748Y3882D01* X34744Y3881D01* Y5113D01* X34752Y5113D01* X34760Y5115D01* X34768Y5117D01* X34776Y5122D01* X34783Y5127D01* X34789Y5134D01* X34793Y5141D01* X34796Y5149D01* X34798Y5158D01* X34798Y5167D01* X34797Y5175D01* X34794Y5183D01* X34790Y5191D01* X34784Y5198D01* X34777Y5204D01* X34770Y5208D01* X34762Y5211D01* X34744Y5217D01* Y5782D01* X34757Y5786D01* X34765Y5790D01* X34772Y5794D01* X34779Y5800D01* X34784Y5807D01* X34788Y5815D01* X34791Y5823D01* X34792Y5832D01* X34792Y5840D01* X34790Y5849D01* X34787Y5857D01* X34782Y5864D01* X34776Y5871D01* X34769Y5876D01* X34762Y5880D01* X34753Y5883D01* X34745Y5884D01* X34744D01* Y7116D01* X34748Y7117D01* X34756Y7122D01* X34763Y7127D01* X34769Y7134D01* X34773Y7141D01* X34776Y7149D01* X34778Y7158D01* X34778Y7167D01* X34777Y7175D01* X34774Y7183D01* X34770Y7191D01* X34764Y7198D01* X34757Y7204D01* X34750Y7208D01* X34744Y7210D01* Y7789D01* X34745Y7790D01* X34752Y7794D01* X34759Y7800D01* X34764Y7807D01* X34768Y7815D01* X34771Y7823D01* X34772Y7832D01* X34772Y7840D01* X34770Y7849D01* X34767Y7857D01* X34762Y7864D01* X34756Y7871D01* X34749Y7876D01* X34744Y7879D01* Y9128D01* X34749Y9134D01* X34753Y9141D01* X34756Y9149D01* X34758Y9158D01* X34758Y9167D01* X34757Y9175D01* X34754Y9183D01* X34750Y9191D01* X34744Y9198D01* X34744Y9198D01* Y9807D01* X34744Y9807D01* X34748Y9815D01* X34751Y9823D01* X34752Y9832D01* X34752Y9840D01* X34750Y9849D01* X34747Y9857D01* X34744Y9861D01* Y21140D01* X34747Y21135D01* X34753Y21128D01* X34760Y21123D01* X34767Y21119D01* X34776Y21116D01* X34784Y21115D01* X34793Y21115D01* X34801Y21117D01* X34836Y21129D01* X34868Y21144D01* X34900Y21162D01* X34924Y21180D01* Y19834D01* X34914Y19840D01* X34882Y19858D01* X34849Y19873D01* X34815Y19884D01* X34806Y19886D01* X34797Y19886D01* X34789Y19885D01* X34781Y19882D01* X34773Y19878D01* X34766Y19872D01* X34760Y19865D01* X34756Y19858D01* X34753Y19850D01* X34751Y19841D01* X34751Y19833D01* X34752Y19824D01* X34755Y19816D01* X34759Y19808D01* X34765Y19801D01* X34772Y19796D01* X34779Y19791D01* X34787Y19788D01* X34813Y19779D01* X34838Y19768D01* X34861Y19755D01* X34884Y19740D01* X34905Y19723D01* X34924Y19704D01* Y19295D01* X34909Y19280D01* X34888Y19262D01* X34866Y19247D01* X34842Y19233D01* X34818Y19222D01* X34792Y19213D01* X34784Y19209D01* X34777Y19205D01* X34770Y19199D01* X34765Y19192D01* X34761Y19184D01* X34758Y19176D01* X34757Y19167D01* X34757Y19159D01* X34759Y19150D01* X34762Y19142D01* X34767Y19135D01* X34773Y19128D01* X34780Y19123D01* X34787Y19119D01* X34796Y19116D01* X34804Y19115D01* X34813Y19115D01* X34821Y19117D01* X34856Y19129D01* X34888Y19144D01* X34920Y19162D01* X34924Y19165D01* Y17846D01* X34902Y17858D01* X34869Y17873D01* X34835Y17884D01* X34826Y17886D01* X34817Y17886D01* X34809Y17885D01* X34801Y17882D01* X34793Y17878D01* X34786Y17872D01* X34780Y17865D01* X34776Y17858D01* X34773Y17850D01* X34771Y17841D01* X34771Y17833D01* X34772Y17824D01* X34775Y17816D01* X34779Y17808D01* X34785Y17801D01* X34792Y17796D01* X34799Y17791D01* X34807Y17788D01* X34833Y17779D01* X34858Y17768D01* X34881Y17755D01* X34904Y17740D01* X34924Y17724D01* Y17276D01* X34908Y17262D01* X34886Y17247D01* X34862Y17233D01* X34838Y17222D01* X34812Y17213D01* X34804Y17209D01* X34797Y17205D01* X34790Y17199D01* X34785Y17192D01* X34781Y17184D01* X34778Y17176D01* X34777Y17167D01* X34777Y17159D01* X34779Y17150D01* X34782Y17142D01* X34787Y17135D01* X34793Y17128D01* X34800Y17123D01* X34807Y17119D01* X34816Y17116D01* X34824Y17115D01* X34833Y17115D01* X34841Y17117D01* X34876Y17129D01* X34908Y17144D01* X34924Y17153D01* Y15857D01* X34922Y15858D01* X34889Y15873D01* X34855Y15884D01* X34846Y15886D01* X34837Y15886D01* X34829Y15885D01* X34821Y15882D01* X34813Y15878D01* X34806Y15872D01* X34800Y15865D01* X34796Y15858D01* X34793Y15850D01* X34791Y15841D01* X34791Y15833D01* X34792Y15824D01* X34795Y15816D01* X34799Y15808D01* X34805Y15801D01* X34812Y15796D01* X34819Y15791D01* X34827Y15788D01* X34853Y15779D01* X34878Y15768D01* X34901Y15755D01* X34924Y15740D01* Y15259D01* X34906Y15247D01* X34882Y15233D01* X34858Y15222D01* X34832Y15213D01* X34824Y15209D01* X34817Y15205D01* X34810Y15199D01* X34805Y15192D01* X34801Y15184D01* X34798Y15176D01* X34797Y15167D01* X34797Y15159D01* X34799Y15150D01* X34802Y15142D01* X34807Y15135D01* X34813Y15128D01* X34820Y15123D01* X34827Y15119D01* X34836Y15116D01* X34844Y15115D01* X34853Y15115D01* X34861Y15117D01* X34896Y15129D01* X34924Y15142D01* Y13866D01* X34909Y13873D01* X34875Y13884D01* X34866Y13886D01* X34857Y13886D01* X34849Y13885D01* X34841Y13882D01* X34833Y13878D01* X34826Y13872D01* X34820Y13865D01* X34816Y13858D01* X34813Y13850D01* X34811Y13841D01* X34811Y13833D01* X34812Y13824D01* X34815Y13816D01* X34819Y13808D01* X34825Y13801D01* X34832Y13796D01* X34839Y13791D01* X34847Y13788D01* X34873Y13779D01* X34898Y13768D01* X34921Y13755D01* X34924Y13754D01* Y13246D01* X34902Y13233D01* X34878Y13222D01* X34852Y13213D01* X34844Y13209D01* X34837Y13205D01* X34830Y13199D01* X34825Y13192D01* X34821Y13184D01* X34818Y13176D01* X34817Y13167D01* X34817Y13159D01* X34819Y13150D01* X34822Y13142D01* X34827Y13135D01* X34833Y13128D01* X34840Y13123D01* X34847Y13119D01* X34856Y13116D01* X34864Y13115D01* X34873Y13115D01* X34881Y13117D01* X34916Y13129D01* X34924Y13133D01* Y11874D01* X34895Y11884D01* X34886Y11886D01* X34877Y11886D01* X34869Y11885D01* X34861Y11882D01* X34853Y11878D01* X34846Y11872D01* X34840Y11865D01* X34836Y11858D01* X34833Y11850D01* X34831Y11841D01* X34831Y11833D01* X34832Y11824D01* X34835Y11816D01* X34839Y11808D01* X34845Y11801D01* X34852Y11796D01* X34859Y11791D01* X34867Y11788D01* X34893Y11779D01* X34918Y11768D01* X34924Y11765D01* Y11234D01* X34922Y11233D01* X34898Y11222D01* X34872Y11213D01* X34864Y11209D01* X34857Y11205D01* X34850Y11199D01* X34845Y11192D01* X34841Y11184D01* X34838Y11176D01* X34837Y11167D01* X34837Y11159D01* X34839Y11150D01* X34842Y11142D01* X34847Y11135D01* X34853Y11128D01* X34860Y11123D01* X34867Y11119D01* X34876Y11116D01* X34884Y11115D01* X34893Y11115D01* X34901Y11117D01* X34924Y11125D01* Y9881D01* X34915Y9884D01* X34906Y9886D01* X34897Y9886D01* X34889Y9885D01* X34881Y9882D01* X34873Y9878D01* X34866Y9872D01* X34860Y9865D01* X34856Y9858D01* X34853Y9850D01* X34851Y9841D01* X34851Y9833D01* X34852Y9824D01* X34855Y9816D01* X34859Y9808D01* X34865Y9801D01* X34872Y9796D01* X34879Y9791D01* X34887Y9788D01* X34913Y9779D01* X34924Y9774D01* Y9225D01* X34918Y9222D01* X34892Y9213D01* X34884Y9209D01* X34877Y9205D01* X34870Y9199D01* X34865Y9192D01* X34861Y9184D01* X34858Y9176D01* X34857Y9167D01* X34857Y9159D01* X34859Y9150D01* X34862Y9142D01* X34867Y9135D01* X34873Y9128D01* X34880Y9123D01* X34887Y9119D01* X34896Y9116D01* X34904Y9115D01* X34913Y9115D01* X34921Y9117D01* X34924Y9118D01* Y7886D01* X34917Y7886D01* X34909Y7885D01* X34901Y7882D01* X34893Y7878D01* X34886Y7872D01* X34880Y7865D01* X34876Y7858D01* X34873Y7850D01* X34871Y7841D01* X34871Y7833D01* X34872Y7824D01* X34875Y7816D01* X34879Y7808D01* X34885Y7801D01* X34892Y7796D01* X34899Y7791D01* X34907Y7788D01* X34924Y7782D01* Y7217D01* X34912Y7213D01* X34904Y7209D01* X34897Y7205D01* X34890Y7199D01* X34885Y7192D01* X34881Y7184D01* X34878Y7176D01* X34877Y7167D01* X34877Y7159D01* X34879Y7150D01* X34882Y7142D01* X34887Y7135D01* X34893Y7128D01* X34900Y7123D01* X34907Y7119D01* X34916Y7116D01* X34924Y7115D01* Y5883D01* X34921Y5882D01* X34913Y5878D01* X34906Y5872D01* X34900Y5865D01* X34896Y5858D01* X34893Y5850D01* X34891Y5841D01* X34891Y5833D01* X34892Y5824D01* X34895Y5816D01* X34899Y5808D01* X34905Y5801D01* X34912Y5796D01* X34919Y5791D01* X34924Y5789D01* Y5209D01* X34917Y5205D01* X34910Y5199D01* X34905Y5192D01* X34901Y5184D01* X34898Y5176D01* X34897Y5167D01* X34897Y5159D01* X34899Y5150D01* X34902Y5142D01* X34907Y5135D01* X34913Y5128D01* X34920Y5123D01* X34924Y5121D01* Y3870D01* X34920Y3865D01* X34916Y3858D01* X34913Y3850D01* X34911Y3841D01* X34911Y3833D01* X34912Y3824D01* X34915Y3816D01* X34919Y3808D01* X34924Y3802D01* Y3190D01* X34921Y3184D01* X34918Y3176D01* X34917Y3167D01* X34917Y3159D01* X34919Y3150D01* X34922Y3142D01* X34924Y3140D01* Y0D01* G37* G36* Y21319D02*X34908Y21299D01* X34889Y21280D01* X34868Y21262D01* X34846Y21247D01* X34822Y21233D01* X34798Y21222D01* X34772Y21213D01* X34764Y21209D01* X34757Y21205D01* X34750Y21199D01* X34745Y21192D01* X34744Y21190D01* Y21802D01* X34745Y21801D01* X34752Y21796D01* X34759Y21791D01* X34767Y21788D01* X34793Y21779D01* X34818Y21768D01* X34841Y21755D01* X34864Y21740D01* X34885Y21723D01* X34904Y21704D01* X34922Y21683D01* X34924Y21680D01* Y21319D01* G37* G36* Y21820D02*X34924Y21820D01* X34894Y21840D01* X34862Y21858D01* X34829Y21873D01* X34795Y21884D01* X34786Y21886D01* X34777Y21886D01* X34769Y21885D01* X34761Y21882D01* X34753Y21878D01* X34746Y21872D01* X34744Y21870D01* Y23121D01* X34747Y23119D01* X34756Y23116D01* X34764Y23115D01* X34773Y23115D01* X34781Y23117D01* X34816Y23129D01* X34848Y23144D01* X34880Y23162D01* X34909Y23183D01* X34924Y23196D01* Y21820D01* G37* G36* Y23350D02*X34920Y23343D01* X34905Y23320D01* X34888Y23299D01* X34869Y23280D01* X34848Y23262D01* X34826Y23247D01* X34802Y23233D01* X34778Y23222D01* X34752Y23213D01* X34744Y23209D01* X34744Y23209D01* Y23789D01* X34747Y23788D01* X34773Y23779D01* X34798Y23768D01* X34821Y23755D01* X34844Y23740D01* X34865Y23723D01* X34884Y23704D01* X34902Y23683D01* X34917Y23661D01* X34924Y23650D01* Y23350D01* G37* G36* Y23804D02*X34904Y23820D01* X34874Y23840D01* X34842Y23858D01* X34809Y23873D01* X34775Y23884D01* X34766Y23886D01* X34757Y23886D01* X34749Y23885D01* X34744Y23883D01* Y25115D01* X34744D01* X34753Y25115D01* X34761Y25117D01* X34796Y25129D01* X34828Y25144D01* X34860Y25162D01* X34889Y25183D01* X34917Y25207D01* X34924Y25214D01* Y23804D01* G37* G36* Y25391D02*X34913Y25366D01* X34900Y25343D01* X34885Y25320D01* X34868Y25299D01* X34849Y25280D01* X34828Y25262D01* X34806Y25247D01* X34782Y25233D01* X34758Y25222D01* X34744Y25217D01* Y25782D01* X34753Y25779D01* X34778Y25768D01* X34801Y25755D01* X34824Y25740D01* X34845Y25723D01* X34864Y25704D01* X34882Y25683D01* X34897Y25661D01* X34911Y25637D01* X34922Y25613D01* X34924Y25608D01* Y25391D01* G37* G36* Y25785D02*X34912Y25797D01* X34884Y25820D01* X34854Y25840D01* X34822Y25858D01* X34789Y25873D01* X34755Y25884D01* X34746Y25886D01* X34744D01* Y27118D01* X34776Y27129D01* X34808Y27144D01* X34840Y27162D01* X34869Y27183D01* X34897Y27207D01* X34922Y27232D01* X34924Y27235D01* Y25785D01* G37* G36* Y27437D02*X34920Y27433D01* X34916Y27425D01* X34913Y27417D01* X34904Y27391D01* X34893Y27366D01* X34880Y27343D01* X34865Y27320D01* X34848Y27299D01* X34829Y27280D01* X34808Y27262D01* X34786Y27247D01* X34762Y27233D01* X34744Y27225D01* Y27774D01* X34758Y27768D01* X34781Y27755D01* X34804Y27740D01* X34825Y27723D01* X34844Y27704D01* X34862Y27683D01* X34877Y27661D01* X34891Y27637D01* X34902Y27613D01* X34911Y27587D01* X34915Y27579D01* X34919Y27572D01* X34924Y27567D01* Y27437D01* G37* G36* Y27764D02*X34917Y27772D01* X34892Y27797D01* X34864Y27820D01* X34834Y27840D01* X34802Y27858D01* X34769Y27873D01* X34744Y27881D01* Y29125D01* X34756Y29129D01* X34788Y29144D01* X34820Y29162D01* X34849Y29183D01* X34877Y29207D01* X34902Y29232D01* X34924Y29259D01* Y27764D01* G37* G36* Y29450D02*X34921Y29449D01* X34913Y29445D01* X34906Y29439D01* X34900Y29433D01* X34896Y29425D01* X34893Y29417D01* X34884Y29391D01* X34873Y29366D01* X34860Y29343D01* X34845Y29320D01* X34828Y29299D01* X34809Y29280D01* X34788Y29262D01* X34766Y29247D01* X34744Y29234D01* Y29765D01* X34761Y29755D01* X34784Y29740D01* X34805Y29723D01* X34824Y29704D01* X34842Y29683D01* X34857Y29661D01* X34871Y29637D01* X34882Y29613D01* X34891Y29587D01* X34895Y29579D01* X34899Y29572D01* X34905Y29565D01* X34912Y29560D01* X34920Y29556D01* X34924Y29555D01* Y29450D01* G37* G36* Y29740D02*X34921Y29744D01* X34897Y29772D01* X34872Y29797D01* X34844Y29820D01* X34814Y29840D01* X34782Y29858D01* X34749Y29873D01* X34744Y29874D01* Y31133D01* X34768Y31144D01* X34800Y31162D01* X34829Y31183D01* X34857Y31207D01* X34882Y31232D01* X34905Y31260D01* X34924Y31288D01* Y29740D01* G37* G36* Y31453D02*X34917Y31453D01* X34909Y31452D01* X34901Y31449D01* X34893Y31445D01* X34886Y31439D01* X34880Y31433D01* X34876Y31425D01* X34873Y31417D01* X34864Y31391D01* X34853Y31366D01* X34840Y31343D01* X34825Y31320D01* X34808Y31299D01* X34789Y31280D01* X34768Y31262D01* X34746Y31247D01* X34744Y31246D01* Y31754D01* X34764Y31740D01* X34785Y31723D01* X34804Y31704D01* X34822Y31683D01* X34837Y31661D01* X34851Y31637D01* X34862Y31613D01* X34871Y31587D01* X34875Y31579D01* X34879Y31572D01* X34885Y31565D01* X34892Y31560D01* X34900Y31556D01* X34908Y31553D01* X34917Y31552D01* X34924Y31552D01* Y31453D01* G37* G36* Y31711D02*X34922Y31715D01* X34901Y31744D01* X34877Y31772D01* X34852Y31797D01* X34824Y31820D01* X34794Y31840D01* X34762Y31858D01* X34744Y31866D01* Y33142D01* X34748Y33144D01* X34780Y33162D01* X34809Y33183D01* X34837Y33207D01* X34862Y33232D01* X34885Y33260D01* X34905Y33290D01* X34923Y33322D01* X34924Y33324D01* Y31711D01* G37* G36* Y33447D02*X34923Y33448D01* X34915Y33451D01* X34906Y33453D01* X34897Y33453D01* X34889Y33452D01* X34881Y33449D01* X34873Y33445D01* X34866Y33439D01* X34860Y33433D01* X34856Y33425D01* X34853Y33417D01* X34844Y33391D01* X34833Y33366D01* X34820Y33343D01* X34805Y33320D01* X34788Y33299D01* X34769Y33280D01* X34748Y33262D01* X34744Y33259D01* Y33740D01* X34765Y33723D01* X34784Y33704D01* X34802Y33683D01* X34817Y33661D01* X34831Y33637D01* X34842Y33613D01* X34851Y33587D01* X34855Y33579D01* X34859Y33572D01* X34865Y33565D01* X34872Y33560D01* X34880Y33556D01* X34888Y33553D01* X34897Y33552D01* X34905Y33552D01* X34914Y33554D01* X34922Y33557D01* X34924Y33559D01* Y33447D01* G37* G36* Y33674D02*X34920Y33683D01* X34902Y33715D01* X34881Y33744D01* X34857Y33772D01* X34832Y33797D01* X34804Y33820D01* X34774Y33840D01* X34744Y33857D01* Y35153D01* X34760Y35162D01* X34789Y35183D01* X34817Y35207D01* X34842Y35232D01* X34865Y35260D01* X34885Y35290D01* X34903Y35322D01* X34917Y35355D01* X34924Y35374D01* Y33674D01* G37* G36* Y35428D02*X34922Y35431D01* X34917Y35438D01* X34910Y35444D01* X34903Y35448D01* X34895Y35451D01* X34886Y35453D01* X34877Y35453D01* X34869Y35452D01* X34861Y35449D01* X34853Y35445D01* X34846Y35439D01* X34840Y35433D01* X34836Y35425D01* X34833Y35417D01* X34824Y35391D01* X34813Y35366D01* X34800Y35343D01* X34785Y35320D01* X34768Y35299D01* X34749Y35280D01* X34744Y35276D01* Y35724D01* X34745Y35723D01* X34764Y35704D01* X34782Y35683D01* X34797Y35661D01* X34811Y35637D01* X34822Y35613D01* X34831Y35587D01* X34835Y35579D01* X34839Y35572D01* X34845Y35565D01* X34852Y35560D01* X34860Y35556D01* X34868Y35553D01* X34877Y35552D01* X34885Y35552D01* X34894Y35554D01* X34902Y35557D01* X34909Y35562D01* X34916Y35568D01* X34921Y35575D01* X34924Y35580D01* Y35428D01* G37* G36* Y40000D02*X35104D01* Y17625D01* X35095Y17651D01* X35080Y17683D01* X35062Y17715D01* X35041Y17744D01* X35017Y17772D01* X34992Y17797D01* X34964Y17820D01* X34934Y17840D01* X34924Y17846D01* Y19165D01* X34949Y19183D01* X34977Y19207D01* X35002Y19232D01* X35025Y19260D01* X35045Y19290D01* X35063Y19322D01* X35077Y19355D01* X35089Y19389D01* X35091Y19398D01* X35091Y19407D01* X35090Y19415D01* X35087Y19423D01* X35082Y19431D01* X35077Y19438D01* X35070Y19444D01* X35063Y19448D01* X35055Y19451D01* X35046Y19453D01* X35037Y19453D01* X35029Y19452D01* X35021Y19449D01* X35013Y19445D01* X35006Y19439D01* X35000Y19433D01* X34996Y19425D01* X34993Y19417D01* X34984Y19391D01* X34973Y19366D01* X34960Y19343D01* X34945Y19320D01* X34928Y19299D01* X34924Y19295D01* Y19704D01* X34924Y19704D01* X34942Y19683D01* X34957Y19661D01* X34971Y19637D01* X34982Y19613D01* X34991Y19587D01* X34995Y19579D01* X34999Y19572D01* X35005Y19565D01* X35012Y19560D01* X35020Y19556D01* X35028Y19553D01* X35037Y19552D01* X35045Y19552D01* X35054Y19554D01* X35062Y19557D01* X35069Y19562D01* X35076Y19568D01* X35081Y19575D01* X35085Y19582D01* X35088Y19591D01* X35089Y19599D01* X35089Y19608D01* X35087Y19617D01* X35075Y19651D01* X35060Y19683D01* X35042Y19715D01* X35021Y19744D01* X34997Y19772D01* X34972Y19797D01* X34944Y19820D01* X34924Y19834D01* Y21180D01* X34929Y21183D01* X34957Y21207D01* X34982Y21232D01* X35005Y21260D01* X35025Y21290D01* X35043Y21322D01* X35057Y21355D01* X35069Y21389D01* X35071Y21398D01* X35071Y21407D01* X35070Y21415D01* X35067Y21423D01* X35062Y21431D01* X35057Y21438D01* X35050Y21444D01* X35043Y21448D01* X35035Y21451D01* X35026Y21453D01* X35017Y21453D01* X35009Y21452D01* X35001Y21449D01* X34993Y21445D01* X34986Y21439D01* X34980Y21433D01* X34976Y21425D01* X34973Y21417D01* X34964Y21391D01* X34953Y21366D01* X34940Y21343D01* X34925Y21320D01* X34924Y21319D01* Y21680D01* X34937Y21661D01* X34951Y21637D01* X34962Y21613D01* X34971Y21587D01* X34975Y21579D01* X34979Y21572D01* X34985Y21565D01* X34992Y21560D01* X35000Y21556D01* X35008Y21553D01* X35017Y21552D01* X35025Y21552D01* X35034Y21554D01* X35042Y21557D01* X35049Y21562D01* X35056Y21568D01* X35061Y21575D01* X35065Y21582D01* X35068Y21591D01* X35069Y21599D01* X35069Y21608D01* X35067Y21617D01* X35055Y21651D01* X35040Y21683D01* X35022Y21715D01* X35001Y21744D01* X34977Y21772D01* X34952Y21797D01* X34924Y21820D01* Y23196D01* X34937Y23207D01* X34962Y23232D01* X34985Y23260D01* X35005Y23290D01* X35023Y23322D01* X35037Y23355D01* X35049Y23389D01* X35051Y23398D01* X35051Y23407D01* X35050Y23415D01* X35047Y23423D01* X35042Y23431D01* X35037Y23438D01* X35030Y23444D01* X35023Y23448D01* X35015Y23451D01* X35006Y23453D01* X34997Y23453D01* X34989Y23452D01* X34981Y23449D01* X34973Y23445D01* X34966Y23439D01* X34960Y23433D01* X34956Y23425D01* X34953Y23417D01* X34944Y23391D01* X34933Y23366D01* X34924Y23350D01* Y23650D01* X34931Y23637D01* X34942Y23613D01* X34951Y23587D01* X34955Y23579D01* X34959Y23572D01* X34965Y23565D01* X34972Y23560D01* X34980Y23556D01* X34988Y23553D01* X34997Y23552D01* X35005Y23552D01* X35014Y23554D01* X35022Y23557D01* X35029Y23562D01* X35036Y23568D01* X35041Y23575D01* X35045Y23582D01* X35048Y23591D01* X35049Y23599D01* X35049Y23608D01* X35047Y23617D01* X35035Y23651D01* X35020Y23683D01* X35002Y23715D01* X34981Y23744D01* X34957Y23772D01* X34932Y23797D01* X34924Y23804D01* Y25214D01* X34942Y25232D01* X34965Y25260D01* X34985Y25290D01* X35003Y25322D01* X35017Y25355D01* X35029Y25389D01* X35031Y25398D01* X35031Y25407D01* X35030Y25415D01* X35027Y25423D01* X35022Y25431D01* X35017Y25438D01* X35010Y25444D01* X35003Y25448D01* X34995Y25451D01* X34986Y25453D01* X34977Y25453D01* X34969Y25452D01* X34961Y25449D01* X34953Y25445D01* X34946Y25439D01* X34940Y25433D01* X34936Y25425D01* X34933Y25417D01* X34924Y25391D01* X34924Y25391D01* Y25608D01* X34931Y25587D01* X34935Y25579D01* X34939Y25572D01* X34945Y25565D01* X34952Y25560D01* X34960Y25556D01* X34968Y25553D01* X34977Y25552D01* X34985Y25552D01* X34994Y25554D01* X35002Y25557D01* X35009Y25562D01* X35016Y25568D01* X35021Y25575D01* X35025Y25582D01* X35028Y25591D01* X35029Y25599D01* X35029Y25608D01* X35027Y25617D01* X35015Y25651D01* X35000Y25683D01* X34982Y25715D01* X34961Y25744D01* X34937Y25772D01* X34924Y25785D01* Y27235D01* X34945Y27260D01* X34965Y27290D01* X34983Y27322D01* X34997Y27355D01* X35009Y27389D01* X35011Y27398D01* X35011Y27407D01* X35010Y27415D01* X35007Y27423D01* X35002Y27431D01* X34997Y27438D01* X34990Y27444D01* X34983Y27448D01* X34975Y27451D01* X34966Y27453D01* X34957Y27453D01* X34949Y27452D01* X34941Y27449D01* X34933Y27445D01* X34926Y27439D01* X34924Y27437D01* Y27567D01* X34925Y27565D01* X34932Y27560D01* X34940Y27556D01* X34948Y27553D01* X34957Y27552D01* X34965Y27552D01* X34974Y27554D01* X34982Y27557D01* X34989Y27562D01* X34996Y27568D01* X35001Y27575D01* X35005Y27582D01* X35008Y27591D01* X35009Y27599D01* X35009Y27608D01* X35007Y27617D01* X34995Y27651D01* X34980Y27683D01* X34962Y27715D01* X34941Y27744D01* X34924Y27764D01* Y29259D01* X34925Y29260D01* X34945Y29290D01* X34963Y29322D01* X34977Y29355D01* X34989Y29389D01* X34991Y29398D01* X34991Y29407D01* X34990Y29415D01* X34987Y29423D01* X34982Y29431D01* X34977Y29438D01* X34970Y29444D01* X34963Y29448D01* X34955Y29451D01* X34946Y29453D01* X34937Y29453D01* X34929Y29452D01* X34924Y29450D01* Y29555D01* X34928Y29553D01* X34937Y29552D01* X34945Y29552D01* X34954Y29554D01* X34962Y29557D01* X34969Y29562D01* X34976Y29568D01* X34981Y29575D01* X34985Y29582D01* X34988Y29591D01* X34989Y29599D01* X34989Y29608D01* X34987Y29617D01* X34975Y29651D01* X34960Y29683D01* X34942Y29715D01* X34924Y29740D01* Y31288D01* X34925Y31290D01* X34943Y31322D01* X34957Y31355D01* X34969Y31389D01* X34971Y31398D01* X34971Y31407D01* X34970Y31415D01* X34967Y31423D01* X34962Y31431D01* X34957Y31438D01* X34950Y31444D01* X34943Y31448D01* X34935Y31451D01* X34926Y31453D01* X34924D01* Y31552D01* X34925D01* X34934Y31554D01* X34942Y31557D01* X34949Y31562D01* X34956Y31568D01* X34961Y31575D01* X34965Y31582D01* X34968Y31591D01* X34969Y31599D01* X34969Y31608D01* X34967Y31617D01* X34955Y31651D01* X34940Y31683D01* X34924Y31711D01* Y33324D01* X34937Y33355D01* X34949Y33389D01* X34951Y33398D01* X34951Y33407D01* X34950Y33415D01* X34947Y33423D01* X34942Y33431D01* X34937Y33438D01* X34930Y33444D01* X34924Y33447D01* Y33559D01* X34929Y33562D01* X34936Y33568D01* X34941Y33575D01* X34945Y33582D01* X34948Y33591D01* X34949Y33599D01* X34949Y33608D01* X34947Y33617D01* X34935Y33651D01* X34924Y33674D01* Y35374D01* X34929Y35389D01* X34931Y35398D01* X34931Y35407D01* X34930Y35415D01* X34927Y35423D01* X34924Y35428D01* Y35580D01* X34925Y35582D01* X34928Y35591D01* X34929Y35599D01* X34929Y35608D01* X34927Y35617D01* X34924Y35625D01* Y40000D01* G37* G36* X35104Y0D02*X34924D01* Y3140D01* X34927Y3135D01* X34933Y3128D01* X34940Y3123D01* X34947Y3119D01* X34956Y3116D01* X34964Y3115D01* X34973Y3115D01* X34981Y3117D01* X35016Y3129D01* X35048Y3144D01* X35080Y3162D01* X35104Y3180D01* Y1834D01* X35094Y1840D01* X35062Y1858D01* X35029Y1873D01* X34995Y1884D01* X34986Y1886D01* X34977Y1886D01* X34969Y1885D01* X34961Y1882D01* X34953Y1878D01* X34946Y1872D01* X34940Y1865D01* X34936Y1858D01* X34933Y1850D01* X34931Y1841D01* X34931Y1833D01* X34932Y1824D01* X34935Y1816D01* X34939Y1808D01* X34945Y1801D01* X34952Y1796D01* X34959Y1791D01* X34967Y1788D01* X34993Y1779D01* X35018Y1768D01* X35041Y1755D01* X35064Y1740D01* X35085Y1723D01* X35104Y1704D01* Y1295D01* X35089Y1280D01* X35068Y1262D01* X35046Y1247D01* X35022Y1233D01* X34998Y1222D01* X34972Y1213D01* X34964Y1209D01* X34957Y1205D01* X34950Y1199D01* X34945Y1192D01* X34941Y1184D01* X34938Y1176D01* X34937Y1167D01* X34937Y1159D01* X34939Y1150D01* X34942Y1142D01* X34947Y1135D01* X34953Y1128D01* X34960Y1123D01* X34967Y1119D01* X34976Y1116D01* X34984Y1115D01* X34993Y1115D01* X35001Y1117D01* X35036Y1129D01* X35068Y1144D01* X35100Y1162D01* X35104Y1165D01* Y0D01* G37* G36* Y3319D02*X35088Y3299D01* X35069Y3280D01* X35048Y3262D01* X35026Y3247D01* X35002Y3233D01* X34978Y3222D01* X34952Y3213D01* X34944Y3209D01* X34937Y3205D01* X34930Y3199D01* X34925Y3192D01* X34924Y3190D01* Y3802D01* X34925Y3801D01* X34932Y3796D01* X34939Y3791D01* X34947Y3788D01* X34973Y3779D01* X34998Y3768D01* X35021Y3755D01* X35044Y3740D01* X35065Y3723D01* X35084Y3704D01* X35102Y3683D01* X35104Y3680D01* Y3319D01* G37* G36* Y3820D02*X35104Y3820D01* X35074Y3840D01* X35042Y3858D01* X35009Y3873D01* X34975Y3884D01* X34966Y3886D01* X34957Y3886D01* X34949Y3885D01* X34941Y3882D01* X34933Y3878D01* X34926Y3872D01* X34924Y3870D01* Y5121D01* X34927Y5119D01* X34936Y5116D01* X34944Y5115D01* X34953Y5115D01* X34961Y5117D01* X34996Y5129D01* X35028Y5144D01* X35060Y5162D01* X35089Y5183D01* X35104Y5196D01* Y3820D01* G37* G36* Y5350D02*X35100Y5343D01* X35085Y5320D01* X35068Y5299D01* X35049Y5280D01* X35028Y5262D01* X35006Y5247D01* X34982Y5233D01* X34958Y5222D01* X34932Y5213D01* X34924Y5209D01* X34924Y5209D01* Y5789D01* X34927Y5788D01* X34953Y5779D01* X34978Y5768D01* X35001Y5755D01* X35024Y5740D01* X35045Y5723D01* X35064Y5704D01* X35082Y5683D01* X35097Y5661D01* X35104Y5650D01* Y5350D01* G37* G36* Y5804D02*X35084Y5820D01* X35054Y5840D01* X35022Y5858D01* X34989Y5873D01* X34955Y5884D01* X34946Y5886D01* X34937Y5886D01* X34929Y5885D01* X34924Y5883D01* Y7115D01* X34924D01* X34933Y7115D01* X34941Y7117D01* X34976Y7129D01* X35008Y7144D01* X35040Y7162D01* X35069Y7183D01* X35097Y7207D01* X35104Y7214D01* Y5804D01* G37* G36* Y7391D02*X35093Y7366D01* X35080Y7343D01* X35065Y7320D01* X35048Y7299D01* X35029Y7280D01* X35008Y7262D01* X34986Y7247D01* X34962Y7233D01* X34938Y7222D01* X34924Y7217D01* Y7782D01* X34933Y7779D01* X34958Y7768D01* X34981Y7755D01* X35004Y7740D01* X35025Y7723D01* X35044Y7704D01* X35062Y7683D01* X35077Y7661D01* X35091Y7637D01* X35102Y7613D01* X35104Y7608D01* Y7391D01* G37* G36* Y7785D02*X35092Y7797D01* X35064Y7820D01* X35034Y7840D01* X35002Y7858D01* X34969Y7873D01* X34935Y7884D01* X34926Y7886D01* X34924D01* Y9118D01* X34956Y9129D01* X34988Y9144D01* X35020Y9162D01* X35049Y9183D01* X35077Y9207D01* X35102Y9232D01* X35104Y9235D01* Y7785D01* G37* G36* Y9437D02*X35100Y9433D01* X35096Y9425D01* X35093Y9417D01* X35084Y9391D01* X35073Y9366D01* X35060Y9343D01* X35045Y9320D01* X35028Y9299D01* X35009Y9280D01* X34988Y9262D01* X34966Y9247D01* X34942Y9233D01* X34924Y9225D01* Y9774D01* X34938Y9768D01* X34961Y9755D01* X34984Y9740D01* X35005Y9723D01* X35024Y9704D01* X35042Y9683D01* X35057Y9661D01* X35071Y9637D01* X35082Y9613D01* X35091Y9587D01* X35095Y9579D01* X35099Y9572D01* X35104Y9567D01* Y9437D01* G37* G36* Y9764D02*X35097Y9772D01* X35072Y9797D01* X35044Y9820D01* X35014Y9840D01* X34982Y9858D01* X34949Y9873D01* X34924Y9881D01* Y11125D01* X34936Y11129D01* X34968Y11144D01* X35000Y11162D01* X35029Y11183D01* X35057Y11207D01* X35082Y11232D01* X35104Y11259D01* Y9764D01* G37* G36* Y11450D02*X35101Y11449D01* X35093Y11445D01* X35086Y11439D01* X35080Y11433D01* X35076Y11425D01* X35073Y11417D01* X35064Y11391D01* X35053Y11366D01* X35040Y11343D01* X35025Y11320D01* X35008Y11299D01* X34989Y11280D01* X34968Y11262D01* X34946Y11247D01* X34924Y11234D01* Y11765D01* X34941Y11755D01* X34964Y11740D01* X34985Y11723D01* X35004Y11704D01* X35022Y11683D01* X35037Y11661D01* X35051Y11637D01* X35062Y11613D01* X35071Y11587D01* X35075Y11579D01* X35079Y11572D01* X35085Y11565D01* X35092Y11560D01* X35100Y11556D01* X35104Y11555D01* Y11450D01* G37* G36* Y11740D02*X35101Y11744D01* X35077Y11772D01* X35052Y11797D01* X35024Y11820D01* X34994Y11840D01* X34962Y11858D01* X34929Y11873D01* X34924Y11874D01* Y13133D01* X34948Y13144D01* X34980Y13162D01* X35009Y13183D01* X35037Y13207D01* X35062Y13232D01* X35085Y13260D01* X35104Y13288D01* Y11740D01* G37* G36* Y13453D02*X35097Y13453D01* X35089Y13452D01* X35081Y13449D01* X35073Y13445D01* X35066Y13439D01* X35060Y13433D01* X35056Y13425D01* X35053Y13417D01* X35044Y13391D01* X35033Y13366D01* X35020Y13343D01* X35005Y13320D01* X34988Y13299D01* X34969Y13280D01* X34948Y13262D01* X34926Y13247D01* X34924Y13246D01* Y13754D01* X34944Y13740D01* X34965Y13723D01* X34984Y13704D01* X35002Y13683D01* X35017Y13661D01* X35031Y13637D01* X35042Y13613D01* X35051Y13587D01* X35055Y13579D01* X35059Y13572D01* X35065Y13565D01* X35072Y13560D01* X35080Y13556D01* X35088Y13553D01* X35097Y13552D01* X35104Y13552D01* Y13453D01* G37* G36* Y13711D02*X35102Y13715D01* X35081Y13744D01* X35057Y13772D01* X35032Y13797D01* X35004Y13820D01* X34974Y13840D01* X34942Y13858D01* X34924Y13866D01* Y15142D01* X34928Y15144D01* X34960Y15162D01* X34989Y15183D01* X35017Y15207D01* X35042Y15232D01* X35065Y15260D01* X35085Y15290D01* X35103Y15322D01* X35104Y15324D01* Y13711D01* G37* G36* Y15447D02*X35103Y15448D01* X35095Y15451D01* X35086Y15453D01* X35077Y15453D01* X35069Y15452D01* X35061Y15449D01* X35053Y15445D01* X35046Y15439D01* X35040Y15433D01* X35036Y15425D01* X35033Y15417D01* X35024Y15391D01* X35013Y15366D01* X35000Y15343D01* X34985Y15320D01* X34968Y15299D01* X34949Y15280D01* X34928Y15262D01* X34924Y15259D01* Y15740D01* X34945Y15723D01* X34964Y15704D01* X34982Y15683D01* X34997Y15661D01* X35011Y15637D01* X35022Y15613D01* X35031Y15587D01* X35035Y15579D01* X35039Y15572D01* X35045Y15565D01* X35052Y15560D01* X35060Y15556D01* X35068Y15553D01* X35077Y15552D01* X35085Y15552D01* X35094Y15554D01* X35102Y15557D01* X35104Y15559D01* Y15447D01* G37* G36* Y15674D02*X35100Y15683D01* X35082Y15715D01* X35061Y15744D01* X35037Y15772D01* X35012Y15797D01* X34984Y15820D01* X34954Y15840D01* X34924Y15857D01* Y17153D01* X34940Y17162D01* X34969Y17183D01* X34997Y17207D01* X35022Y17232D01* X35045Y17260D01* X35065Y17290D01* X35083Y17322D01* X35097Y17355D01* X35104Y17374D01* Y15674D01* G37* G36* Y17428D02*X35102Y17431D01* X35097Y17438D01* X35090Y17444D01* X35083Y17448D01* X35075Y17451D01* X35066Y17453D01* X35057Y17453D01* X35049Y17452D01* X35041Y17449D01* X35033Y17445D01* X35026Y17439D01* X35020Y17433D01* X35016Y17425D01* X35013Y17417D01* X35004Y17391D01* X34993Y17366D01* X34980Y17343D01* X34965Y17320D01* X34948Y17299D01* X34929Y17280D01* X34924Y17276D01* Y17724D01* X34925Y17723D01* X34944Y17704D01* X34962Y17683D01* X34977Y17661D01* X34991Y17637D01* X35002Y17613D01* X35011Y17587D01* X35015Y17579D01* X35019Y17572D01* X35025Y17565D01* X35032Y17560D01* X35040Y17556D01* X35048Y17553D01* X35057Y17552D01* X35065Y17552D01* X35074Y17554D01* X35082Y17557D01* X35089Y17562D01* X35096Y17568D01* X35101Y17575D01* X35104Y17580D01* Y17428D01* G37* G36* Y40000D02*X40000D01* Y0D01* X35104D01* Y1165D01* X35129Y1183D01* X35157Y1207D01* X35182Y1232D01* X35205Y1260D01* X35225Y1290D01* X35243Y1322D01* X35257Y1355D01* X35269Y1389D01* X35271Y1398D01* X35271Y1407D01* X35270Y1415D01* X35267Y1423D01* X35262Y1431D01* X35257Y1438D01* X35250Y1444D01* X35243Y1448D01* X35235Y1451D01* X35226Y1453D01* X35217Y1453D01* X35209Y1452D01* X35201Y1449D01* X35193Y1445D01* X35186Y1439D01* X35180Y1433D01* X35176Y1425D01* X35173Y1417D01* X35164Y1391D01* X35153Y1366D01* X35140Y1343D01* X35125Y1320D01* X35108Y1299D01* X35104Y1295D01* Y1704D01* X35104Y1704D01* X35122Y1683D01* X35137Y1661D01* X35151Y1637D01* X35162Y1613D01* X35171Y1587D01* X35175Y1579D01* X35179Y1572D01* X35185Y1565D01* X35192Y1560D01* X35200Y1556D01* X35208Y1553D01* X35217Y1552D01* X35225Y1552D01* X35234Y1554D01* X35242Y1557D01* X35249Y1562D01* X35256Y1568D01* X35261Y1575D01* X35265Y1582D01* X35268Y1591D01* X35269Y1599D01* X35269Y1608D01* X35267Y1617D01* X35255Y1651D01* X35240Y1683D01* X35222Y1715D01* X35201Y1744D01* X35177Y1772D01* X35152Y1797D01* X35124Y1820D01* X35104Y1834D01* Y3180D01* X35109Y3183D01* X35137Y3207D01* X35162Y3232D01* X35185Y3260D01* X35205Y3290D01* X35223Y3322D01* X35237Y3355D01* X35249Y3389D01* X35251Y3398D01* X35251Y3407D01* X35250Y3415D01* X35247Y3423D01* X35242Y3431D01* X35237Y3438D01* X35230Y3444D01* X35223Y3448D01* X35215Y3451D01* X35206Y3453D01* X35197Y3453D01* X35189Y3452D01* X35181Y3449D01* X35173Y3445D01* X35166Y3439D01* X35160Y3433D01* X35156Y3425D01* X35153Y3417D01* X35144Y3391D01* X35133Y3366D01* X35120Y3343D01* X35105Y3320D01* X35104Y3319D01* Y3680D01* X35117Y3661D01* X35131Y3637D01* X35142Y3613D01* X35151Y3587D01* X35155Y3579D01* X35159Y3572D01* X35165Y3565D01* X35172Y3560D01* X35180Y3556D01* X35188Y3553D01* X35197Y3552D01* X35205Y3552D01* X35214Y3554D01* X35222Y3557D01* X35229Y3562D01* X35236Y3568D01* X35241Y3575D01* X35245Y3582D01* X35248Y3591D01* X35249Y3599D01* X35249Y3608D01* X35247Y3617D01* X35235Y3651D01* X35220Y3683D01* X35202Y3715D01* X35181Y3744D01* X35157Y3772D01* X35132Y3797D01* X35104Y3820D01* Y5196D01* X35117Y5207D01* X35142Y5232D01* X35165Y5260D01* X35185Y5290D01* X35203Y5322D01* X35217Y5355D01* X35229Y5389D01* X35231Y5398D01* X35231Y5407D01* X35230Y5415D01* X35227Y5423D01* X35222Y5431D01* X35217Y5438D01* X35210Y5444D01* X35203Y5448D01* X35195Y5451D01* X35186Y5453D01* X35177Y5453D01* X35169Y5452D01* X35161Y5449D01* X35153Y5445D01* X35146Y5439D01* X35140Y5433D01* X35136Y5425D01* X35133Y5417D01* X35124Y5391D01* X35113Y5366D01* X35104Y5350D01* Y5650D01* X35111Y5637D01* X35122Y5613D01* X35131Y5587D01* X35135Y5579D01* X35139Y5572D01* X35145Y5565D01* X35152Y5560D01* X35160Y5556D01* X35168Y5553D01* X35177Y5552D01* X35185Y5552D01* X35194Y5554D01* X35202Y5557D01* X35209Y5562D01* X35216Y5568D01* X35221Y5575D01* X35225Y5582D01* X35228Y5591D01* X35229Y5599D01* X35229Y5608D01* X35227Y5617D01* X35215Y5651D01* X35200Y5683D01* X35182Y5715D01* X35161Y5744D01* X35137Y5772D01* X35112Y5797D01* X35104Y5804D01* Y7214D01* X35122Y7232D01* X35145Y7260D01* X35165Y7290D01* X35183Y7322D01* X35197Y7355D01* X35209Y7389D01* X35211Y7398D01* X35211Y7407D01* X35210Y7415D01* X35207Y7423D01* X35202Y7431D01* X35197Y7438D01* X35190Y7444D01* X35183Y7448D01* X35175Y7451D01* X35166Y7453D01* X35157Y7453D01* X35149Y7452D01* X35141Y7449D01* X35133Y7445D01* X35126Y7439D01* X35120Y7433D01* X35116Y7425D01* X35113Y7417D01* X35104Y7391D01* X35104Y7391D01* Y7608D01* X35111Y7587D01* X35115Y7579D01* X35119Y7572D01* X35125Y7565D01* X35132Y7560D01* X35140Y7556D01* X35148Y7553D01* X35157Y7552D01* X35165Y7552D01* X35174Y7554D01* X35182Y7557D01* X35189Y7562D01* X35196Y7568D01* X35201Y7575D01* X35205Y7582D01* X35208Y7591D01* X35209Y7599D01* X35209Y7608D01* X35207Y7617D01* X35195Y7651D01* X35180Y7683D01* X35162Y7715D01* X35141Y7744D01* X35117Y7772D01* X35104Y7785D01* Y9235D01* X35125Y9260D01* X35145Y9290D01* X35163Y9322D01* X35177Y9355D01* X35189Y9389D01* X35191Y9398D01* X35191Y9407D01* X35190Y9415D01* X35187Y9423D01* X35182Y9431D01* X35177Y9438D01* X35170Y9444D01* X35163Y9448D01* X35155Y9451D01* X35146Y9453D01* X35137Y9453D01* X35129Y9452D01* X35121Y9449D01* X35113Y9445D01* X35106Y9439D01* X35104Y9437D01* Y9567D01* X35105Y9565D01* X35112Y9560D01* X35120Y9556D01* X35128Y9553D01* X35137Y9552D01* X35145Y9552D01* X35154Y9554D01* X35162Y9557D01* X35169Y9562D01* X35176Y9568D01* X35181Y9575D01* X35185Y9582D01* X35188Y9591D01* X35189Y9599D01* X35189Y9608D01* X35187Y9617D01* X35175Y9651D01* X35160Y9683D01* X35142Y9715D01* X35121Y9744D01* X35104Y9764D01* Y11259D01* X35105Y11260D01* X35125Y11290D01* X35143Y11322D01* X35157Y11355D01* X35169Y11389D01* X35171Y11398D01* X35171Y11407D01* X35170Y11415D01* X35167Y11423D01* X35162Y11431D01* X35157Y11438D01* X35150Y11444D01* X35143Y11448D01* X35135Y11451D01* X35126Y11453D01* X35117Y11453D01* X35109Y11452D01* X35104Y11450D01* Y11555D01* X35108Y11553D01* X35117Y11552D01* X35125Y11552D01* X35134Y11554D01* X35142Y11557D01* X35149Y11562D01* X35156Y11568D01* X35161Y11575D01* X35165Y11582D01* X35168Y11591D01* X35169Y11599D01* X35169Y11608D01* X35167Y11617D01* X35155Y11651D01* X35140Y11683D01* X35122Y11715D01* X35104Y11740D01* Y13288D01* X35105Y13290D01* X35123Y13322D01* X35137Y13355D01* X35149Y13389D01* X35151Y13398D01* X35151Y13407D01* X35150Y13415D01* X35147Y13423D01* X35142Y13431D01* X35137Y13438D01* X35130Y13444D01* X35123Y13448D01* X35115Y13451D01* X35106Y13453D01* X35104D01* Y13552D01* X35105D01* X35114Y13554D01* X35122Y13557D01* X35129Y13562D01* X35136Y13568D01* X35141Y13575D01* X35145Y13582D01* X35148Y13591D01* X35149Y13599D01* X35149Y13608D01* X35147Y13617D01* X35135Y13651D01* X35120Y13683D01* X35104Y13711D01* Y15324D01* X35117Y15355D01* X35129Y15389D01* X35131Y15398D01* X35131Y15407D01* X35130Y15415D01* X35127Y15423D01* X35122Y15431D01* X35117Y15438D01* X35110Y15444D01* X35104Y15447D01* Y15559D01* X35109Y15562D01* X35116Y15568D01* X35121Y15575D01* X35125Y15582D01* X35128Y15591D01* X35129Y15599D01* X35129Y15608D01* X35127Y15617D01* X35115Y15651D01* X35104Y15674D01* Y17374D01* X35109Y17389D01* X35111Y17398D01* X35111Y17407D01* X35110Y17415D01* X35107Y17423D01* X35104Y17428D01* Y17580D01* X35105Y17582D01* X35108Y17591D01* X35109Y17599D01* X35109Y17608D01* X35107Y17617D01* X35104Y17625D01* Y40000D01* G37* G54D12*X665Y23500D03* X685Y21500D03* X705Y19500D03* X725Y17500D03* X745Y15500D03* X765Y13500D03* X785Y11500D03* X805Y9500D03* X825Y7500D03* X845Y5500D03* X865Y3500D03* X885Y1500D03* X2725Y17500D03* X2745Y15500D03* X2765Y13500D03* X2785Y11500D03* X2805Y9500D03* X2825Y7500D03* X2845Y5500D03* X2865Y3500D03* X2885Y1500D03* X4665Y23500D03* X4685Y21500D03* X4705Y19500D03* X4725Y17500D03* X4745Y15500D03* X4765Y13500D03* X4785Y11500D03* X4805Y9500D03* X4825Y7500D03* X4845Y5500D03* X4865Y3500D03* X4885Y1500D03* X6665Y23500D03* X6685Y21500D03* X6705Y19500D03* X6725Y17500D03* X6745Y15500D03* X6765Y13500D03* X6785Y11500D03* X6805Y9500D03* X6825Y7500D03* X6845Y5500D03* X6865Y3500D03* X6885Y1500D03* X8705Y19500D03* X8725Y17500D03* X8745Y15500D03* X8765Y13500D03* X8785Y11500D03* X8805Y9500D03* X8825Y7500D03* X8845Y5500D03* X8865Y3500D03* X8885Y1500D03* X645Y25500D03* X2645D03* X2605Y29500D03* X2625Y27500D03* X2665Y23500D03* X2685Y21500D03* X2705Y19500D03* X6585Y31500D03* X6605Y29500D03* X6625Y27500D03* X6645Y25500D03* X8585Y31500D03* X8605Y29500D03* X8625Y27500D03* X8645Y25500D03* X8665Y23500D03* X8685Y21500D03* X10645Y25500D03* X10665Y23500D03* X10685Y21500D03* X10705Y19500D03* X10725Y17500D03* X10745Y15500D03* X10765Y13500D03* X10785Y11500D03* X10805Y9500D03* X10825Y7500D03* X10845Y5500D03* X10865Y3500D03* X10885Y1500D03* X12705Y19500D03* X12725Y17500D03* X12745Y15500D03* X12765Y13500D03* X12785Y11500D03* X12805Y9500D03* X12825Y7500D03* X12845Y5500D03* X12865Y3500D03* X12885Y1500D03* X14665Y23500D03* X14685Y21500D03* X14705Y19500D03* X14725Y17500D03* X14745Y15500D03* X14765Y13500D03* X14785Y11500D03* X14805Y9500D03* X14825Y7500D03* X14845Y5500D03* X14865Y3500D03* X14885Y1500D03* X16665Y23500D03* X16685Y21500D03* X16705Y19500D03* X16725Y17500D03* X16745Y15500D03* X16765Y13500D03* X16785Y11500D03* X16805Y9500D03* X16825Y7500D03* X16845Y5500D03* X16865Y3500D03* X16885Y1500D03* X10565Y33500D03* X10585Y31500D03* X10605Y29500D03* X10625Y27500D03* X12605Y29500D03* X12625Y27500D03* X12645Y25500D03* X12665Y23500D03* X12685Y21500D03* X18665Y23500D03* X18685Y21500D03* X18705Y19500D03* X18725Y17500D03* X18745Y15500D03* X18765Y13500D03* X18785Y11500D03* X18805Y9500D03* X18825Y7500D03* X18845Y5500D03* X18865Y3500D03* X18885Y1500D03* X18585Y31500D03* X18605Y29500D03* X18625Y27500D03* X18645Y25500D03* X20545Y35500D03* X20565Y33500D03* X20585Y31500D03* X20605Y29500D03* X20625Y27500D03* X20645Y25500D03* X20665Y23500D03* X20685Y21500D03* X20705Y19500D03* X20725Y17500D03* X20745Y15500D03* X20765Y13500D03* X20785Y11500D03* X20805Y9500D03* X20825Y7500D03* X20845Y5500D03* X20865Y3500D03* X20885Y1500D03* X565Y33500D03* X585Y31500D03* X605Y29500D03* X625Y27500D03* X505Y39500D03* X525Y37500D03* X545Y35500D03* X2545D03* X2565Y33500D03* X2585Y31500D03* X2505Y39500D03* X4505D03* X4545Y35500D03* X4565Y33500D03* X4585Y31500D03* X4605Y29500D03* X4625Y27500D03* X4645Y25500D03* X2525Y37500D03* X4525D03* X6505Y39500D03* X6525Y37500D03* X6545Y35500D03* X6565Y33500D03* X8505Y39500D03* X8525Y37500D03* X8545Y35500D03* X8565Y33500D03* X10505Y39500D03* X10525Y37500D03* X10545Y35500D03* X12505Y39500D03* X12525Y37500D03* X14525D03* X12545Y35500D03* X12565Y33500D03* X12585Y31500D03* X14505Y39500D03* X14545Y35500D03* X14565Y33500D03* X14585Y31500D03* X14605Y29500D03* X14625Y27500D03* X14645Y25500D03* X16505Y39500D03* X16525Y37500D03* X16545Y35500D03* X16565Y33500D03* X16585Y31500D03* X16605Y29500D03* X16625Y27500D03* X16645Y25500D03* X18505Y39500D03* X18525Y37500D03* X18545Y35500D03* X18565Y33500D03* X20505Y39500D03* X20525Y37500D03* X22505Y39500D03* X22525Y37500D03* X22545Y35500D03* X22565Y33500D03* X22585Y31500D03* X22605Y29500D03* X22625Y27500D03* X22645Y25500D03* X22665Y23500D03* X24505Y39500D03* X24525Y37500D03* X24545Y35500D03* X26505Y39500D03* X26525Y37500D03* X28505Y39500D03* X22685Y21500D03* X22705Y19500D03* X22725Y17500D03* X22745Y15500D03* X22765Y13500D03* X22785Y11500D03* X22805Y9500D03* X22825Y7500D03* X22845Y5500D03* X22865Y3500D03* X22885Y1500D03* X24665Y23500D03* X24685Y21500D03* X24705Y19500D03* X24725Y17500D03* X24745Y15500D03* X24765Y13500D03* X24785Y11500D03* X24805Y9500D03* X24825Y7500D03* X24845Y5500D03* X24865Y3500D03* X24885Y1500D03* X26705Y19500D03* X26725Y17500D03* X26745Y15500D03* X26765Y13500D03* X26785Y11500D03* X26805Y9500D03* X26825Y7500D03* X26845Y5500D03* X26865Y3500D03* X26885Y1500D03* X24565Y33500D03* X24585Y31500D03* X24605Y29500D03* X24625Y27500D03* X24645Y25500D03* X26645D03* X26605Y29500D03* X26625Y27500D03* X26665Y23500D03* X26685Y21500D03* X26545Y35500D03* X26565Y33500D03* X26585Y31500D03* X28585D03* X28605Y29500D03* X28625Y27500D03* X28645Y25500D03* X28665Y23500D03* X28525Y37500D03* X28545Y35500D03* X28565Y33500D03* X30505Y39500D03* X30525Y37500D03* X30545Y35500D03* X32505Y39500D03* X32525Y37500D03* X34525D03* X30565Y33500D03* X30585Y31500D03* X30605Y29500D03* X30625Y27500D03* X32605Y29500D03* X32625Y27500D03* X32645Y25500D03* X32665Y23500D03* X32685Y21500D03* X32545Y35500D03* X32565Y33500D03* X32585Y31500D03* X34505Y39500D03* X34545Y35500D03* X34565Y33500D03* X34585Y31500D03* X34605Y29500D03* X34625Y27500D03* X34645Y25500D03* X34665Y23500D03* X34685Y21500D03* X34705Y19500D03* X34725Y17500D03* X34745Y15500D03* X34765Y13500D03* X34785Y11500D03* X34805Y9500D03* X34825Y7500D03* X34845Y5500D03* X34865Y3500D03* X34885Y1500D03* X28685Y21500D03* X28705Y19500D03* X28725Y17500D03* X28745Y15500D03* X28765Y13500D03* X28785Y11500D03* X28805Y9500D03* X28825Y7500D03* X28845Y5500D03* X28865Y3500D03* X28885Y1500D03* X30645Y25500D03* X30665Y23500D03* X30685Y21500D03* X30705Y19500D03* X30725Y17500D03* X30745Y15500D03* X30765Y13500D03* X30785Y11500D03* X30805Y9500D03* X30825Y7500D03* X30845Y5500D03* X30865Y3500D03* X30885Y1500D03* X32705Y19500D03* X32725Y17500D03* X32745Y15500D03* X32765Y13500D03* X32785Y11500D03* X32805Y9500D03* X32825Y7500D03* X32845Y5500D03* X32865Y3500D03* X32885Y1500D03* G54D13*M02* gerbv-2.7.0/example/hellboard/hellboard.plated-drill.cnc0000644000175000017500000001324613421555714023106 0ustar carstencarstenM48 INCH,TZ T13C0.028 % T13 X000665Y023500 X000685Y021500 X000705Y019500 X000725Y017500 X000745Y015500 X000765Y013500 X000785Y011500 X000805Y009500 X000825Y007500 X000845Y005500 X000865Y003500 X000885Y001500 X002725Y017500 X002745Y015500 X002765Y013500 X002785Y011500 X002805Y009500 X002825Y007500 X002845Y005500 X002865Y003500 X002885Y001500 X004665Y023500 X004685Y021500 X004705Y019500 X004725Y017500 X004745Y015500 X004765Y013500 X004785Y011500 X004805Y009500 X004825Y007500 X004845Y005500 X004865Y003500 X004885Y001500 X006665Y023500 X006685Y021500 X006705Y019500 X006725Y017500 X006745Y015500 X006765Y013500 X006785Y011500 X006805Y009500 X006825Y007500 X006845Y005500 X006865Y003500 X006885Y001500 X008705Y019500 X008725Y017500 X008745Y015500 X008765Y013500 X008785Y011500 X008805Y009500 X008825Y007500 X008845Y005500 X008865Y003500 X008885Y001500 X000645Y025500 X002645Y025500 X002605Y029500 X002625Y027500 X002665Y023500 X002685Y021500 X002705Y019500 X006585Y031500 X006605Y029500 X006625Y027500 X006645Y025500 X008585Y031500 X008605Y029500 X008625Y027500 X008645Y025500 X008665Y023500 X008685Y021500 X010645Y025500 X010665Y023500 X010685Y021500 X010705Y019500 X010725Y017500 X010745Y015500 X010765Y013500 X010785Y011500 X010805Y009500 X010825Y007500 X010845Y005500 X010865Y003500 X010885Y001500 X012705Y019500 X012725Y017500 X012745Y015500 X012765Y013500 X012785Y011500 X012805Y009500 X012825Y007500 X012845Y005500 X012865Y003500 X012885Y001500 X014665Y023500 X014685Y021500 X014705Y019500 X014725Y017500 X014745Y015500 X014765Y013500 X014785Y011500 X014805Y009500 X014825Y007500 X014845Y005500 X014865Y003500 X014885Y001500 X016665Y023500 X016685Y021500 X016705Y019500 X016725Y017500 X016745Y015500 X016765Y013500 X016785Y011500 X016805Y009500 X016825Y007500 X016845Y005500 X016865Y003500 X016885Y001500 X010565Y033500 X010585Y031500 X010605Y029500 X010625Y027500 X012605Y029500 X012625Y027500 X012645Y025500 X012665Y023500 X012685Y021500 X018665Y023500 X018685Y021500 X018705Y019500 X018725Y017500 X018745Y015500 X018765Y013500 X018785Y011500 X018805Y009500 X018825Y007500 X018845Y005500 X018865Y003500 X018885Y001500 X018585Y031500 X018605Y029500 X018625Y027500 X018645Y025500 X020545Y035500 X020565Y033500 X020585Y031500 X020605Y029500 X020625Y027500 X020645Y025500 X020665Y023500 X020685Y021500 X020705Y019500 X020725Y017500 X020745Y015500 X020765Y013500 X020785Y011500 X020805Y009500 X020825Y007500 X020845Y005500 X020865Y003500 X020885Y001500 X000565Y033500 X000585Y031500 X000605Y029500 X000625Y027500 X000505Y039500 X000525Y037500 X000545Y035500 X002545Y035500 X002565Y033500 X002585Y031500 X002505Y039500 X004505Y039500 X004545Y035500 X004565Y033500 X004585Y031500 X004605Y029500 X004625Y027500 X004645Y025500 X002525Y037500 X004525Y037500 X006505Y039500 X006525Y037500 X006545Y035500 X006565Y033500 X008505Y039500 X008525Y037500 X008545Y035500 X008565Y033500 X010505Y039500 X010525Y037500 X010545Y035500 X012505Y039500 X012525Y037500 X014525Y037500 X012545Y035500 X012565Y033500 X012585Y031500 X014505Y039500 X014545Y035500 X014565Y033500 X014585Y031500 X014605Y029500 X014625Y027500 X014645Y025500 X016505Y039500 X016525Y037500 X016545Y035500 X016565Y033500 X016585Y031500 X016605Y029500 X016625Y027500 X016645Y025500 X018505Y039500 X018525Y037500 X018545Y035500 X018565Y033500 X020505Y039500 X020525Y037500 X022505Y039500 X022525Y037500 X022545Y035500 X022565Y033500 X022585Y031500 X022605Y029500 X022625Y027500 X022645Y025500 X022665Y023500 X024505Y039500 X024525Y037500 X024545Y035500 X026505Y039500 X026525Y037500 X028505Y039500 X022685Y021500 X022705Y019500 X022725Y017500 X022745Y015500 X022765Y013500 X022785Y011500 X022805Y009500 X022825Y007500 X022845Y005500 X022865Y003500 X022885Y001500 X024665Y023500 X024685Y021500 X024705Y019500 X024725Y017500 X024745Y015500 X024765Y013500 X024785Y011500 X024805Y009500 X024825Y007500 X024845Y005500 X024865Y003500 X024885Y001500 X026705Y019500 X026725Y017500 X026745Y015500 X026765Y013500 X026785Y011500 X026805Y009500 X026825Y007500 X026845Y005500 X026865Y003500 X026885Y001500 X024565Y033500 X024585Y031500 X024605Y029500 X024625Y027500 X024645Y025500 X026645Y025500 X026605Y029500 X026625Y027500 X026665Y023500 X026685Y021500 X026545Y035500 X026565Y033500 X026585Y031500 X028585Y031500 X028605Y029500 X028625Y027500 X028645Y025500 X028665Y023500 X028525Y037500 X028545Y035500 X028565Y033500 X030505Y039500 X030525Y037500 X030545Y035500 X032505Y039500 X032525Y037500 X034525Y037500 X030565Y033500 X030585Y031500 X030605Y029500 X030625Y027500 X032605Y029500 X032625Y027500 X032645Y025500 X032665Y023500 X032685Y021500 X032545Y035500 X032565Y033500 X032585Y031500 X034505Y039500 X034545Y035500 X034565Y033500 X034585Y031500 X034605Y029500 X034625Y027500 X034645Y025500 X034665Y023500 X034685Y021500 X034705Y019500 X034725Y017500 X034745Y015500 X034765Y013500 X034785Y011500 X034805Y009500 X034825Y007500 X034845Y005500 X034865Y003500 X034885Y001500 X028685Y021500 X028705Y019500 X028725Y017500 X028745Y015500 X028765Y013500 X028785Y011500 X028805Y009500 X028825Y007500 X028845Y005500 X028865Y003500 X028885Y001500 X030645Y025500 X030665Y023500 X030685Y021500 X030705Y019500 X030725Y017500 X030745Y015500 X030765Y013500 X030785Y011500 X030805Y009500 X030825Y007500 X030845Y005500 X030865Y003500 X030885Y001500 X032705Y019500 X032725Y017500 X032745Y015500 X032765Y013500 X032785Y011500 X032805Y009500 X032825Y007500 X032845Y005500 X032865Y003500 X032885Y001500 M30 gerbv-2.7.0/example/hellboard/hellboard.group2.gbr0000644000175000017500000613110313421555714021755 0ustar carstencarstenG04 start of page 4 for group 2 idx 2 G04 Title: (unknown), power * G04 Creator: pcb 1.99v * G04 CreationDate: Thu Jan 24 03:52:10 2008 UTC * G04 For: sdb * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 400000 400000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNGROUP2*% %ADD11C,0.0200*% %ADD12C,0.0600*% %ADD13C,0.0280*% G54D11*G36* X0Y0D02*Y40000D01* X445D01* Y39859D01* X442Y39864D01* X436Y39871D01* X429Y39876D01* X422Y39880D01* X413Y39883D01* X405Y39884D01* X396Y39884D01* X388Y39882D01* X353Y39870D01* X321Y39855D01* X289Y39837D01* X260Y39816D01* X232Y39793D01* X207Y39767D01* X184Y39739D01* X164Y39709D01* X146Y39677D01* X132Y39644D01* X120Y39610D01* X118Y39601D01* X118Y39593D01* X119Y39584D01* X122Y39576D01* X127Y39568D01* X132Y39561D01* X139Y39556D01* X146Y39551D01* X154Y39548D01* X163Y39546D01* X172Y39546D01* X180Y39547D01* X188Y39550D01* X196Y39555D01* X203Y39560D01* X209Y39567D01* X213Y39574D01* X216Y39582D01* X225Y39608D01* X236Y39633D01* X249Y39657D01* X264Y39679D01* X281Y39700D01* X300Y39719D01* X321Y39737D01* X343Y39752D01* X367Y39766D01* X391Y39777D01* X417Y39786D01* X425Y39790D01* X432Y39794D01* X439Y39800D01* X444Y39807D01* X445Y39809D01* Y39197D01* X444Y39198D01* X437Y39204D01* X430Y39208D01* X422Y39211D01* X396Y39220D01* X371Y39231D01* X348Y39244D01* X325Y39259D01* X304Y39276D01* X285Y39295D01* X267Y39316D01* X252Y39338D01* X238Y39362D01* X227Y39386D01* X218Y39412D01* X214Y39420D01* X210Y39427D01* X204Y39434D01* X197Y39439D01* X189Y39443D01* X181Y39446D01* X172Y39447D01* X164Y39447D01* X155Y39445D01* X147Y39442D01* X140Y39437D01* X133Y39431D01* X128Y39424D01* X124Y39417D01* X121Y39409D01* X120Y39400D01* X120Y39391D01* X122Y39383D01* X134Y39349D01* X149Y39316D01* X167Y39284D01* X188Y39255D01* X212Y39227D01* X237Y39202D01* X265Y39179D01* X295Y39159D01* X327Y39141D01* X360Y39127D01* X394Y39115D01* X403Y39113D01* X412Y39113D01* X420Y39115D01* X428Y39117D01* X436Y39122D01* X443Y39127D01* X445Y39130D01* Y37878D01* X442Y37880D01* X433Y37883D01* X425Y37884D01* X416Y37884D01* X408Y37882D01* X373Y37870D01* X341Y37855D01* X309Y37837D01* X280Y37816D01* X252Y37793D01* X227Y37767D01* X204Y37739D01* X184Y37709D01* X166Y37677D01* X152Y37644D01* X140Y37610D01* X138Y37601D01* X138Y37593D01* X139Y37584D01* X142Y37576D01* X147Y37568D01* X152Y37561D01* X159Y37556D01* X166Y37551D01* X174Y37548D01* X183Y37546D01* X192Y37546D01* X200Y37547D01* X208Y37550D01* X216Y37555D01* X223Y37560D01* X229Y37567D01* X233Y37574D01* X236Y37582D01* X245Y37608D01* X256Y37633D01* X269Y37657D01* X284Y37679D01* X301Y37700D01* X320Y37719D01* X341Y37737D01* X363Y37752D01* X387Y37766D01* X411Y37777D01* X437Y37786D01* X445Y37790D01* X445Y37790D01* Y37210D01* X442Y37211D01* X416Y37220D01* X391Y37231D01* X368Y37244D01* X345Y37259D01* X324Y37276D01* X305Y37295D01* X287Y37316D01* X272Y37338D01* X258Y37362D01* X247Y37386D01* X238Y37412D01* X234Y37420D01* X230Y37427D01* X224Y37434D01* X217Y37439D01* X209Y37443D01* X201Y37446D01* X192Y37447D01* X184Y37447D01* X175Y37445D01* X167Y37442D01* X160Y37437D01* X153Y37431D01* X148Y37424D01* X144Y37417D01* X141Y37409D01* X140Y37400D01* X140Y37391D01* X142Y37383D01* X154Y37349D01* X169Y37316D01* X187Y37284D01* X208Y37255D01* X232Y37227D01* X257Y37202D01* X285Y37179D01* X315Y37159D01* X347Y37141D01* X380Y37127D01* X414Y37115D01* X423Y37113D01* X432Y37113D01* X440Y37115D01* X445Y37116D01* Y35884D01* X445Y35884D01* X436Y35884D01* X428Y35882D01* X393Y35870D01* X361Y35855D01* X329Y35837D01* X300Y35816D01* X272Y35793D01* X247Y35767D01* X224Y35739D01* X204Y35709D01* X186Y35677D01* X172Y35644D01* X160Y35610D01* X158Y35601D01* X158Y35593D01* X159Y35584D01* X162Y35576D01* X167Y35568D01* X172Y35561D01* X179Y35556D01* X186Y35551D01* X194Y35548D01* X203Y35546D01* X212Y35546D01* X220Y35547D01* X228Y35550D01* X236Y35555D01* X243Y35560D01* X249Y35567D01* X253Y35574D01* X256Y35582D01* X265Y35608D01* X276Y35633D01* X289Y35657D01* X304Y35679D01* X321Y35700D01* X340Y35719D01* X361Y35737D01* X383Y35752D01* X407Y35766D01* X431Y35777D01* X445Y35782D01* Y35217D01* X436Y35220D01* X411Y35231D01* X388Y35244D01* X365Y35259D01* X344Y35276D01* X325Y35295D01* X307Y35316D01* X292Y35338D01* X278Y35362D01* X267Y35386D01* X258Y35412D01* X254Y35420D01* X250Y35427D01* X244Y35434D01* X237Y35439D01* X229Y35443D01* X221Y35446D01* X212Y35447D01* X204Y35447D01* X195Y35445D01* X187Y35442D01* X180Y35437D01* X173Y35431D01* X168Y35424D01* X164Y35417D01* X161Y35409D01* X160Y35400D01* X160Y35391D01* X162Y35383D01* X174Y35349D01* X189Y35316D01* X207Y35284D01* X228Y35255D01* X252Y35227D01* X277Y35202D01* X305Y35179D01* X335Y35159D01* X367Y35141D01* X400Y35127D01* X434Y35115D01* X443Y35113D01* X445D01* Y33881D01* X413Y33870D01* X381Y33855D01* X349Y33837D01* X320Y33816D01* X292Y33793D01* X267Y33767D01* X244Y33739D01* X224Y33709D01* X206Y33677D01* X192Y33644D01* X180Y33610D01* X178Y33601D01* X178Y33593D01* X179Y33584D01* X182Y33576D01* X187Y33568D01* X192Y33561D01* X199Y33556D01* X206Y33551D01* X214Y33548D01* X223Y33546D01* X232Y33546D01* X240Y33547D01* X248Y33550D01* X256Y33555D01* X263Y33560D01* X269Y33567D01* X273Y33574D01* X276Y33582D01* X285Y33608D01* X296Y33633D01* X309Y33657D01* X324Y33679D01* X341Y33700D01* X360Y33719D01* X381Y33737D01* X403Y33752D01* X427Y33766D01* X445Y33775D01* Y33225D01* X431Y33231D01* X408Y33244D01* X385Y33259D01* X364Y33276D01* X345Y33295D01* X327Y33316D01* X312Y33338D01* X298Y33362D01* X287Y33386D01* X278Y33412D01* X274Y33420D01* X270Y33427D01* X264Y33434D01* X257Y33439D01* X249Y33443D01* X241Y33446D01* X232Y33447D01* X224Y33447D01* X215Y33445D01* X207Y33442D01* X200Y33437D01* X193Y33431D01* X188Y33424D01* X184Y33417D01* X181Y33409D01* X180Y33400D01* X180Y33391D01* X182Y33383D01* X194Y33349D01* X209Y33316D01* X227Y33284D01* X248Y33255D01* X272Y33227D01* X297Y33202D01* X325Y33179D01* X355Y33159D01* X387Y33141D01* X420Y33127D01* X445Y33118D01* Y31874D01* X433Y31870D01* X401Y31855D01* X369Y31837D01* X340Y31816D01* X312Y31793D01* X287Y31767D01* X264Y31739D01* X244Y31709D01* X226Y31677D01* X212Y31644D01* X200Y31610D01* X198Y31601D01* X198Y31593D01* X199Y31584D01* X202Y31576D01* X207Y31568D01* X212Y31561D01* X219Y31556D01* X226Y31551D01* X234Y31548D01* X243Y31546D01* X252Y31546D01* X260Y31547D01* X268Y31550D01* X276Y31555D01* X283Y31560D01* X289Y31567D01* X293Y31574D01* X296Y31582D01* X305Y31608D01* X316Y31633D01* X329Y31657D01* X344Y31679D01* X361Y31700D01* X380Y31719D01* X401Y31737D01* X423Y31752D01* X445Y31765D01* Y31234D01* X428Y31244D01* X405Y31259D01* X384Y31276D01* X365Y31295D01* X347Y31316D01* X332Y31338D01* X318Y31362D01* X307Y31386D01* X298Y31412D01* X294Y31420D01* X290Y31427D01* X284Y31434D01* X277Y31439D01* X269Y31443D01* X261Y31446D01* X252Y31447D01* X244Y31447D01* X235Y31445D01* X227Y31442D01* X220Y31437D01* X213Y31431D01* X208Y31424D01* X204Y31417D01* X201Y31409D01* X200Y31400D01* X200Y31391D01* X202Y31383D01* X214Y31349D01* X229Y31316D01* X247Y31284D01* X268Y31255D01* X292Y31227D01* X317Y31202D01* X345Y31179D01* X375Y31159D01* X407Y31141D01* X440Y31127D01* X445Y31125D01* Y29866D01* X421Y29855D01* X389Y29837D01* X360Y29816D01* X332Y29793D01* X307Y29767D01* X284Y29739D01* X264Y29709D01* X246Y29677D01* X232Y29644D01* X220Y29610D01* X218Y29601D01* X218Y29593D01* X219Y29584D01* X222Y29576D01* X227Y29568D01* X232Y29561D01* X239Y29556D01* X246Y29551D01* X254Y29548D01* X263Y29546D01* X272Y29546D01* X280Y29547D01* X288Y29550D01* X296Y29555D01* X303Y29560D01* X309Y29567D01* X313Y29574D01* X316Y29582D01* X325Y29608D01* X336Y29633D01* X349Y29657D01* X364Y29679D01* X381Y29700D01* X400Y29719D01* X421Y29737D01* X443Y29752D01* X445Y29754D01* Y29246D01* X425Y29259D01* X404Y29276D01* X385Y29295D01* X367Y29316D01* X352Y29338D01* X338Y29362D01* X327Y29386D01* X318Y29412D01* X314Y29420D01* X310Y29427D01* X304Y29434D01* X297Y29439D01* X289Y29443D01* X281Y29446D01* X272Y29447D01* X264Y29447D01* X255Y29445D01* X247Y29442D01* X240Y29437D01* X233Y29431D01* X228Y29424D01* X224Y29417D01* X221Y29409D01* X220Y29400D01* X220Y29391D01* X222Y29383D01* X234Y29349D01* X249Y29316D01* X267Y29284D01* X288Y29255D01* X312Y29227D01* X337Y29202D01* X365Y29179D01* X395Y29159D01* X427Y29141D01* X445Y29133D01* Y27857D01* X441Y27855D01* X409Y27837D01* X380Y27816D01* X352Y27793D01* X327Y27767D01* X304Y27739D01* X284Y27709D01* X266Y27677D01* X252Y27644D01* X240Y27610D01* X238Y27601D01* X238Y27593D01* X239Y27584D01* X242Y27576D01* X247Y27568D01* X252Y27561D01* X259Y27556D01* X266Y27551D01* X274Y27548D01* X283Y27546D01* X292Y27546D01* X300Y27547D01* X308Y27550D01* X316Y27555D01* X323Y27560D01* X329Y27567D01* X333Y27574D01* X336Y27582D01* X345Y27608D01* X356Y27633D01* X369Y27657D01* X384Y27679D01* X401Y27700D01* X420Y27719D01* X441Y27737D01* X445Y27740D01* Y27259D01* X445Y27259D01* X424Y27276D01* X405Y27295D01* X387Y27316D01* X372Y27338D01* X358Y27362D01* X347Y27386D01* X338Y27412D01* X334Y27420D01* X330Y27427D01* X324Y27434D01* X317Y27439D01* X309Y27443D01* X301Y27446D01* X292Y27447D01* X284Y27447D01* X275Y27445D01* X267Y27442D01* X260Y27437D01* X253Y27431D01* X248Y27424D01* X244Y27417D01* X241Y27409D01* X240Y27400D01* X240Y27391D01* X242Y27383D01* X254Y27349D01* X269Y27316D01* X287Y27284D01* X308Y27255D01* X332Y27227D01* X357Y27202D01* X385Y27179D01* X415Y27159D01* X445Y27142D01* Y25846D01* X429Y25837D01* X400Y25816D01* X372Y25793D01* X347Y25767D01* X324Y25739D01* X304Y25709D01* X286Y25677D01* X272Y25644D01* X260Y25610D01* X258Y25601D01* X258Y25593D01* X259Y25584D01* X262Y25576D01* X267Y25568D01* X272Y25561D01* X279Y25556D01* X286Y25551D01* X294Y25548D01* X303Y25546D01* X312Y25546D01* X320Y25547D01* X328Y25550D01* X336Y25555D01* X343Y25560D01* X349Y25567D01* X353Y25574D01* X356Y25582D01* X365Y25608D01* X376Y25633D01* X389Y25657D01* X404Y25679D01* X421Y25700D01* X440Y25719D01* X445Y25723D01* Y25276D01* X444Y25276D01* X425Y25295D01* X407Y25316D01* X392Y25338D01* X378Y25362D01* X367Y25386D01* X358Y25412D01* X354Y25420D01* X350Y25427D01* X344Y25434D01* X337Y25439D01* X329Y25443D01* X321Y25446D01* X312Y25447D01* X304Y25447D01* X295Y25445D01* X287Y25442D01* X280Y25437D01* X273Y25431D01* X268Y25424D01* X264Y25417D01* X261Y25409D01* X260Y25400D01* X260Y25391D01* X262Y25383D01* X274Y25349D01* X289Y25316D01* X307Y25284D01* X328Y25255D01* X352Y25227D01* X377Y25202D01* X405Y25179D01* X435Y25159D01* X445Y25153D01* Y23834D01* X420Y23816D01* X392Y23793D01* X367Y23767D01* X344Y23739D01* X324Y23709D01* X306Y23677D01* X292Y23644D01* X280Y23610D01* X278Y23601D01* X278Y23593D01* X279Y23584D01* X282Y23576D01* X287Y23568D01* X292Y23561D01* X299Y23556D01* X306Y23551D01* X314Y23548D01* X323Y23546D01* X332Y23546D01* X340Y23547D01* X348Y23550D01* X356Y23555D01* X363Y23560D01* X369Y23567D01* X373Y23574D01* X376Y23582D01* X385Y23608D01* X396Y23633D01* X409Y23657D01* X424Y23679D01* X441Y23700D01* X445Y23704D01* Y23295D01* X445Y23295D01* X427Y23316D01* X412Y23338D01* X398Y23362D01* X387Y23386D01* X378Y23412D01* X374Y23420D01* X370Y23427D01* X364Y23434D01* X357Y23439D01* X349Y23443D01* X341Y23446D01* X332Y23447D01* X324Y23447D01* X315Y23445D01* X307Y23442D01* X300Y23437D01* X293Y23431D01* X288Y23424D01* X284Y23417D01* X281Y23409D01* X280Y23400D01* X280Y23391D01* X282Y23383D01* X294Y23349D01* X309Y23316D01* X327Y23284D01* X348Y23255D01* X372Y23227D01* X397Y23202D01* X425Y23179D01* X445Y23166D01* Y21820D01* X440Y21816D01* X412Y21793D01* X387Y21767D01* X364Y21739D01* X344Y21709D01* X326Y21677D01* X312Y21644D01* X300Y21610D01* X298Y21601D01* X298Y21593D01* X299Y21584D01* X302Y21576D01* X307Y21568D01* X312Y21561D01* X319Y21556D01* X326Y21551D01* X334Y21548D01* X343Y21546D01* X352Y21546D01* X360Y21547D01* X368Y21550D01* X376Y21555D01* X383Y21560D01* X389Y21567D01* X393Y21574D01* X396Y21582D01* X405Y21608D01* X416Y21633D01* X429Y21657D01* X444Y21679D01* X445Y21680D01* Y21319D01* X432Y21338D01* X418Y21362D01* X407Y21386D01* X398Y21412D01* X394Y21420D01* X390Y21427D01* X384Y21434D01* X377Y21439D01* X369Y21443D01* X361Y21446D01* X352Y21447D01* X344Y21447D01* X335Y21445D01* X327Y21442D01* X320Y21437D01* X313Y21431D01* X308Y21424D01* X304Y21417D01* X301Y21409D01* X300Y21400D01* X300Y21391D01* X302Y21383D01* X314Y21349D01* X329Y21316D01* X347Y21284D01* X368Y21255D01* X392Y21227D01* X417Y21202D01* X445Y21179D01* Y19804D01* X432Y19793D01* X407Y19767D01* X384Y19739D01* X364Y19709D01* X346Y19677D01* X332Y19644D01* X320Y19610D01* X318Y19601D01* X318Y19593D01* X319Y19584D01* X322Y19576D01* X327Y19568D01* X332Y19561D01* X339Y19556D01* X346Y19551D01* X354Y19548D01* X363Y19546D01* X372Y19546D01* X380Y19547D01* X388Y19550D01* X396Y19555D01* X403Y19560D01* X409Y19567D01* X413Y19574D01* X416Y19582D01* X425Y19608D01* X436Y19633D01* X445Y19650D01* Y19349D01* X438Y19362D01* X427Y19386D01* X418Y19412D01* X414Y19420D01* X410Y19427D01* X404Y19434D01* X397Y19439D01* X389Y19443D01* X381Y19446D01* X372Y19447D01* X364Y19447D01* X355Y19445D01* X347Y19442D01* X340Y19437D01* X333Y19431D01* X328Y19424D01* X324Y19417D01* X321Y19409D01* X320Y19400D01* X320Y19391D01* X322Y19383D01* X334Y19349D01* X349Y19316D01* X367Y19284D01* X388Y19255D01* X412Y19227D01* X437Y19202D01* X445Y19196D01* Y17785D01* X427Y17767D01* X404Y17739D01* X384Y17709D01* X366Y17677D01* X352Y17644D01* X340Y17610D01* X338Y17601D01* X338Y17593D01* X339Y17584D01* X342Y17576D01* X347Y17568D01* X352Y17561D01* X359Y17556D01* X366Y17551D01* X374Y17548D01* X383Y17546D01* X392Y17546D01* X400Y17547D01* X408Y17550D01* X416Y17555D01* X423Y17560D01* X429Y17567D01* X433Y17574D01* X436Y17582D01* X445Y17608D01* X445Y17609D01* Y17391D01* X438Y17412D01* X434Y17420D01* X430Y17427D01* X424Y17434D01* X417Y17439D01* X409Y17443D01* X401Y17446D01* X392Y17447D01* X384Y17447D01* X375Y17445D01* X367Y17442D01* X360Y17437D01* X353Y17431D01* X348Y17424D01* X344Y17417D01* X341Y17409D01* X340Y17400D01* X340Y17391D01* X342Y17383D01* X354Y17349D01* X369Y17316D01* X387Y17284D01* X408Y17255D01* X432Y17227D01* X445Y17214D01* Y15765D01* X424Y15739D01* X404Y15709D01* X386Y15677D01* X372Y15644D01* X360Y15610D01* X358Y15601D01* X358Y15593D01* X359Y15584D01* X362Y15576D01* X367Y15568D01* X372Y15561D01* X379Y15556D01* X386Y15551D01* X394Y15548D01* X403Y15546D01* X412Y15546D01* X420Y15547D01* X428Y15550D01* X436Y15555D01* X443Y15560D01* X445Y15563D01* Y15432D01* X444Y15434D01* X437Y15439D01* X429Y15443D01* X421Y15446D01* X412Y15447D01* X404Y15447D01* X395Y15445D01* X387Y15442D01* X380Y15437D01* X373Y15431D01* X368Y15424D01* X364Y15417D01* X361Y15409D01* X360Y15400D01* X360Y15391D01* X362Y15383D01* X374Y15349D01* X389Y15316D01* X407Y15284D01* X428Y15255D01* X445Y15235D01* Y13740D01* X444Y13739D01* X424Y13709D01* X406Y13677D01* X392Y13644D01* X380Y13610D01* X378Y13601D01* X378Y13593D01* X379Y13584D01* X382Y13576D01* X387Y13568D01* X392Y13561D01* X399Y13556D01* X406Y13551D01* X414Y13548D01* X423Y13546D01* X432Y13546D01* X440Y13547D01* X445Y13549D01* Y13445D01* X441Y13446D01* X432Y13447D01* X424Y13447D01* X415Y13445D01* X407Y13442D01* X400Y13437D01* X393Y13431D01* X388Y13424D01* X384Y13417D01* X381Y13409D01* X380Y13400D01* X380Y13391D01* X382Y13383D01* X394Y13349D01* X409Y13316D01* X427Y13284D01* X445Y13259D01* Y11711D01* X444Y11709D01* X426Y11677D01* X412Y11644D01* X400Y11610D01* X398Y11601D01* X398Y11593D01* X399Y11584D01* X402Y11576D01* X407Y11568D01* X412Y11561D01* X419Y11556D01* X426Y11551D01* X434Y11548D01* X443Y11546D01* X445D01* Y11447D01* X444Y11447D01* X435Y11445D01* X427Y11442D01* X420Y11437D01* X413Y11431D01* X408Y11424D01* X404Y11417D01* X401Y11409D01* X400Y11400D01* X400Y11391D01* X402Y11383D01* X414Y11349D01* X429Y11316D01* X445Y11288D01* Y9675D01* X432Y9644D01* X420Y9610D01* X418Y9601D01* X418Y9593D01* X419Y9584D01* X422Y9576D01* X427Y9568D01* X432Y9561D01* X439Y9556D01* X445Y9552D01* Y9441D01* X440Y9437D01* X433Y9431D01* X428Y9424D01* X424Y9417D01* X421Y9409D01* X420Y9400D01* X420Y9391D01* X422Y9383D01* X434Y9349D01* X445Y9325D01* Y7625D01* X440Y7610D01* X438Y7601D01* X438Y7593D01* X439Y7584D01* X442Y7576D01* X445Y7571D01* Y7419D01* X444Y7417D01* X441Y7409D01* X440Y7400D01* X440Y7391D01* X442Y7383D01* X445Y7374D01* Y0D01* X0D01* G37* G36* X445Y40000D02*X625D01* Y39881D01* X615Y39884D01* X606Y39886D01* X597Y39886D01* X589Y39885D01* X581Y39882D01* X573Y39878D01* X566Y39872D01* X560Y39865D01* X556Y39858D01* X553Y39850D01* X551Y39841D01* X551Y39833D01* X552Y39824D01* X555Y39816D01* X559Y39808D01* X565Y39801D01* X572Y39796D01* X579Y39791D01* X587Y39788D01* X613Y39779D01* X625Y39774D01* Y39225D01* X618Y39222D01* X592Y39213D01* X584Y39209D01* X577Y39205D01* X570Y39199D01* X565Y39192D01* X561Y39184D01* X558Y39176D01* X557Y39167D01* X557Y39159D01* X559Y39150D01* X562Y39142D01* X567Y39135D01* X573Y39128D01* X580Y39123D01* X587Y39119D01* X596Y39116D01* X604Y39115D01* X613Y39115D01* X621Y39117D01* X625Y39118D01* Y37886D01* X617Y37886D01* X609Y37885D01* X601Y37882D01* X593Y37878D01* X586Y37872D01* X580Y37865D01* X576Y37858D01* X573Y37850D01* X571Y37841D01* X571Y37833D01* X572Y37824D01* X575Y37816D01* X579Y37808D01* X585Y37801D01* X592Y37796D01* X599Y37791D01* X607Y37788D01* X625Y37782D01* Y37217D01* X612Y37213D01* X604Y37209D01* X597Y37205D01* X590Y37199D01* X585Y37192D01* X581Y37184D01* X578Y37176D01* X577Y37167D01* X577Y37159D01* X579Y37150D01* X582Y37142D01* X587Y37135D01* X593Y37128D01* X600Y37123D01* X607Y37119D01* X616Y37116D01* X624Y37115D01* X625D01* Y35883D01* X621Y35882D01* X613Y35878D01* X606Y35872D01* X600Y35865D01* X596Y35858D01* X593Y35850D01* X591Y35841D01* X591Y35833D01* X592Y35824D01* X595Y35816D01* X599Y35808D01* X605Y35801D01* X612Y35796D01* X619Y35791D01* X625Y35789D01* Y35210D01* X624Y35209D01* X617Y35205D01* X610Y35199D01* X605Y35192D01* X601Y35184D01* X598Y35176D01* X597Y35167D01* X597Y35159D01* X599Y35150D01* X602Y35142D01* X607Y35135D01* X613Y35128D01* X620Y35123D01* X625Y35120D01* Y33871D01* X620Y33865D01* X616Y33858D01* X613Y33850D01* X611Y33841D01* X611Y33833D01* X612Y33824D01* X615Y33816D01* X619Y33808D01* X625Y33801D01* X625Y33801D01* Y33192D01* X625Y33192D01* X621Y33184D01* X618Y33176D01* X617Y33167D01* X617Y33159D01* X619Y33150D01* X622Y33142D01* X625Y33138D01* Y21859D01* X622Y21864D01* X616Y21871D01* X609Y21876D01* X602Y21880D01* X593Y21883D01* X585Y21884D01* X576Y21884D01* X568Y21882D01* X533Y21870D01* X501Y21855D01* X469Y21837D01* X445Y21820D01* Y23166D01* X455Y23159D01* X487Y23141D01* X520Y23127D01* X554Y23115D01* X563Y23113D01* X572Y23113D01* X580Y23115D01* X588Y23117D01* X596Y23122D01* X603Y23127D01* X609Y23134D01* X613Y23141D01* X616Y23149D01* X618Y23158D01* X618Y23167D01* X617Y23175D01* X614Y23183D01* X610Y23191D01* X604Y23198D01* X597Y23204D01* X590Y23208D01* X582Y23211D01* X556Y23220D01* X531Y23231D01* X508Y23244D01* X485Y23259D01* X464Y23276D01* X445Y23295D01* Y23704D01* X460Y23719D01* X481Y23737D01* X503Y23752D01* X527Y23766D01* X551Y23777D01* X577Y23786D01* X585Y23790D01* X592Y23794D01* X599Y23800D01* X604Y23807D01* X608Y23815D01* X611Y23823D01* X612Y23832D01* X612Y23840D01* X610Y23849D01* X607Y23857D01* X602Y23864D01* X596Y23871D01* X589Y23876D01* X582Y23880D01* X573Y23883D01* X565Y23884D01* X556Y23884D01* X548Y23882D01* X513Y23870D01* X481Y23855D01* X449Y23837D01* X445Y23834D01* Y25153D01* X467Y25141D01* X500Y25127D01* X534Y25115D01* X543Y25113D01* X552Y25113D01* X560Y25115D01* X568Y25117D01* X576Y25122D01* X583Y25127D01* X589Y25134D01* X593Y25141D01* X596Y25149D01* X598Y25158D01* X598Y25167D01* X597Y25175D01* X594Y25183D01* X590Y25191D01* X584Y25198D01* X577Y25204D01* X570Y25208D01* X562Y25211D01* X536Y25220D01* X511Y25231D01* X488Y25244D01* X465Y25259D01* X445Y25276D01* Y25723D01* X461Y25737D01* X483Y25752D01* X507Y25766D01* X531Y25777D01* X557Y25786D01* X565Y25790D01* X572Y25794D01* X579Y25800D01* X584Y25807D01* X588Y25815D01* X591Y25823D01* X592Y25832D01* X592Y25840D01* X590Y25849D01* X587Y25857D01* X582Y25864D01* X576Y25871D01* X569Y25876D01* X562Y25880D01* X553Y25883D01* X545Y25884D01* X536Y25884D01* X528Y25882D01* X493Y25870D01* X461Y25855D01* X445Y25846D01* Y27142D01* X447Y27141D01* X480Y27127D01* X514Y27115D01* X523Y27113D01* X532Y27113D01* X540Y27115D01* X548Y27117D01* X556Y27122D01* X563Y27127D01* X569Y27134D01* X573Y27141D01* X576Y27149D01* X578Y27158D01* X578Y27167D01* X577Y27175D01* X574Y27183D01* X570Y27191D01* X564Y27198D01* X557Y27204D01* X550Y27208D01* X542Y27211D01* X516Y27220D01* X491Y27231D01* X468Y27244D01* X445Y27259D01* Y27740D01* X463Y27752D01* X487Y27766D01* X511Y27777D01* X537Y27786D01* X545Y27790D01* X552Y27794D01* X559Y27800D01* X564Y27807D01* X568Y27815D01* X571Y27823D01* X572Y27832D01* X572Y27840D01* X570Y27849D01* X567Y27857D01* X562Y27864D01* X556Y27871D01* X549Y27876D01* X542Y27880D01* X533Y27883D01* X525Y27884D01* X516Y27884D01* X508Y27882D01* X473Y27870D01* X445Y27857D01* Y29133D01* X460Y29127D01* X494Y29115D01* X503Y29113D01* X512Y29113D01* X520Y29115D01* X528Y29117D01* X536Y29122D01* X543Y29127D01* X549Y29134D01* X553Y29141D01* X556Y29149D01* X558Y29158D01* X558Y29167D01* X557Y29175D01* X554Y29183D01* X550Y29191D01* X544Y29198D01* X537Y29204D01* X530Y29208D01* X522Y29211D01* X496Y29220D01* X471Y29231D01* X448Y29244D01* X445Y29246D01* Y29754D01* X467Y29766D01* X491Y29777D01* X517Y29786D01* X525Y29790D01* X532Y29794D01* X539Y29800D01* X544Y29807D01* X548Y29815D01* X551Y29823D01* X552Y29832D01* X552Y29840D01* X550Y29849D01* X547Y29857D01* X542Y29864D01* X536Y29871D01* X529Y29876D01* X522Y29880D01* X513Y29883D01* X505Y29884D01* X496Y29884D01* X488Y29882D01* X453Y29870D01* X445Y29866D01* Y31125D01* X474Y31115D01* X483Y31113D01* X492Y31113D01* X500Y31115D01* X508Y31117D01* X516Y31122D01* X523Y31127D01* X529Y31134D01* X533Y31141D01* X536Y31149D01* X538Y31158D01* X538Y31167D01* X537Y31175D01* X534Y31183D01* X530Y31191D01* X524Y31198D01* X517Y31204D01* X510Y31208D01* X502Y31211D01* X476Y31220D01* X451Y31231D01* X445Y31234D01* Y31765D01* X447Y31766D01* X471Y31777D01* X497Y31786D01* X505Y31790D01* X512Y31794D01* X519Y31800D01* X524Y31807D01* X528Y31815D01* X531Y31823D01* X532Y31832D01* X532Y31840D01* X530Y31849D01* X527Y31857D01* X522Y31864D01* X516Y31871D01* X509Y31876D01* X502Y31880D01* X493Y31883D01* X485Y31884D01* X476Y31884D01* X468Y31882D01* X445Y31874D01* Y33118D01* X454Y33115D01* X463Y33113D01* X472Y33113D01* X480Y33115D01* X488Y33117D01* X496Y33122D01* X503Y33127D01* X509Y33134D01* X513Y33141D01* X516Y33149D01* X518Y33158D01* X518Y33167D01* X517Y33175D01* X514Y33183D01* X510Y33191D01* X504Y33198D01* X497Y33204D01* X490Y33208D01* X482Y33211D01* X456Y33220D01* X445Y33225D01* Y33775D01* X451Y33777D01* X477Y33786D01* X485Y33790D01* X492Y33794D01* X499Y33800D01* X504Y33807D01* X508Y33815D01* X511Y33823D01* X512Y33832D01* X512Y33840D01* X510Y33849D01* X507Y33857D01* X502Y33864D01* X496Y33871D01* X489Y33876D01* X482Y33880D01* X473Y33883D01* X465Y33884D01* X456Y33884D01* X448Y33882D01* X445Y33881D01* Y35113D01* X452Y35113D01* X460Y35115D01* X468Y35117D01* X476Y35122D01* X483Y35127D01* X489Y35134D01* X493Y35141D01* X496Y35149D01* X498Y35158D01* X498Y35167D01* X497Y35175D01* X494Y35183D01* X490Y35191D01* X484Y35198D01* X477Y35204D01* X470Y35208D01* X462Y35211D01* X445Y35217D01* Y35782D01* X457Y35786D01* X465Y35790D01* X472Y35794D01* X479Y35800D01* X484Y35807D01* X488Y35815D01* X491Y35823D01* X492Y35832D01* X492Y35840D01* X490Y35849D01* X487Y35857D01* X482Y35864D01* X476Y35871D01* X469Y35876D01* X462Y35880D01* X453Y35883D01* X445Y35884D01* Y37116D01* X448Y37117D01* X456Y37122D01* X463Y37127D01* X469Y37134D01* X473Y37141D01* X476Y37149D01* X478Y37158D01* X478Y37167D01* X477Y37175D01* X474Y37183D01* X470Y37191D01* X464Y37198D01* X457Y37204D01* X450Y37208D01* X445Y37210D01* Y37790D01* X452Y37794D01* X459Y37800D01* X464Y37807D01* X468Y37815D01* X471Y37823D01* X472Y37832D01* X472Y37840D01* X470Y37849D01* X467Y37857D01* X462Y37864D01* X456Y37871D01* X449Y37876D01* X445Y37878D01* Y39130D01* X449Y39134D01* X453Y39141D01* X456Y39149D01* X458Y39158D01* X458Y39167D01* X457Y39175D01* X454Y39183D01* X450Y39191D01* X445Y39197D01* Y39809D01* X448Y39815D01* X451Y39823D01* X452Y39832D01* X452Y39840D01* X450Y39849D01* X447Y39857D01* X445Y39859D01* Y40000D01* G37* G36* X625Y0D02*X445D01* Y7374D01* X454Y7349D01* X469Y7316D01* X487Y7284D01* X508Y7255D01* X532Y7227D01* X557Y7202D01* X585Y7179D01* X615Y7159D01* X625Y7153D01* Y5834D01* X600Y5816D01* X572Y5793D01* X547Y5767D01* X524Y5739D01* X504Y5709D01* X486Y5677D01* X472Y5644D01* X460Y5610D01* X458Y5601D01* X458Y5593D01* X459Y5584D01* X462Y5576D01* X467Y5568D01* X472Y5561D01* X479Y5556D01* X486Y5551D01* X494Y5548D01* X503Y5546D01* X512Y5546D01* X520Y5547D01* X528Y5550D01* X536Y5555D01* X543Y5560D01* X549Y5567D01* X553Y5574D01* X556Y5582D01* X565Y5608D01* X576Y5633D01* X589Y5657D01* X604Y5679D01* X621Y5700D01* X625Y5704D01* Y5295D01* X625Y5295D01* X607Y5316D01* X592Y5338D01* X578Y5362D01* X567Y5386D01* X558Y5412D01* X554Y5420D01* X550Y5427D01* X544Y5434D01* X537Y5439D01* X529Y5443D01* X521Y5446D01* X512Y5447D01* X504Y5447D01* X495Y5445D01* X487Y5442D01* X480Y5437D01* X473Y5431D01* X468Y5424D01* X464Y5417D01* X461Y5409D01* X460Y5400D01* X460Y5391D01* X462Y5383D01* X474Y5349D01* X489Y5316D01* X507Y5284D01* X528Y5255D01* X552Y5227D01* X577Y5202D01* X605Y5179D01* X625Y5166D01* Y3820D01* X620Y3816D01* X592Y3793D01* X567Y3767D01* X544Y3739D01* X524Y3709D01* X506Y3677D01* X492Y3644D01* X480Y3610D01* X478Y3601D01* X478Y3593D01* X479Y3584D01* X482Y3576D01* X487Y3568D01* X492Y3561D01* X499Y3556D01* X506Y3551D01* X514Y3548D01* X523Y3546D01* X532Y3546D01* X540Y3547D01* X548Y3550D01* X556Y3555D01* X563Y3560D01* X569Y3567D01* X573Y3574D01* X576Y3582D01* X585Y3608D01* X596Y3633D01* X609Y3657D01* X624Y3679D01* X625Y3680D01* Y3319D01* X612Y3338D01* X598Y3362D01* X587Y3386D01* X578Y3412D01* X574Y3420D01* X570Y3427D01* X564Y3434D01* X557Y3439D01* X549Y3443D01* X541Y3446D01* X532Y3447D01* X524Y3447D01* X515Y3445D01* X507Y3442D01* X500Y3437D01* X493Y3431D01* X488Y3424D01* X484Y3417D01* X481Y3409D01* X480Y3400D01* X480Y3391D01* X482Y3383D01* X494Y3349D01* X509Y3316D01* X527Y3284D01* X548Y3255D01* X572Y3227D01* X597Y3202D01* X625Y3179D01* Y1804D01* X612Y1793D01* X587Y1767D01* X564Y1739D01* X544Y1709D01* X526Y1677D01* X512Y1644D01* X500Y1610D01* X498Y1601D01* X498Y1593D01* X499Y1584D01* X502Y1576D01* X507Y1568D01* X512Y1561D01* X519Y1556D01* X526Y1551D01* X534Y1548D01* X543Y1546D01* X552Y1546D01* X560Y1547D01* X568Y1550D01* X576Y1555D01* X583Y1560D01* X589Y1567D01* X593Y1574D01* X596Y1582D01* X605Y1608D01* X616Y1633D01* X625Y1650D01* Y1349D01* X618Y1362D01* X607Y1386D01* X598Y1412D01* X594Y1420D01* X590Y1427D01* X584Y1434D01* X577Y1439D01* X569Y1443D01* X561Y1446D01* X552Y1447D01* X544Y1447D01* X535Y1445D01* X527Y1442D01* X520Y1437D01* X513Y1431D01* X508Y1424D01* X504Y1417D01* X501Y1409D01* X500Y1400D01* X500Y1391D01* X502Y1383D01* X514Y1349D01* X529Y1316D01* X547Y1284D01* X568Y1255D01* X592Y1227D01* X617Y1202D01* X625Y1196D01* Y0D01* G37* G36* Y7276D02*X624Y7276D01* X605Y7295D01* X587Y7316D01* X572Y7338D01* X558Y7362D01* X547Y7386D01* X538Y7412D01* X534Y7420D01* X530Y7427D01* X524Y7434D01* X517Y7439D01* X509Y7443D01* X501Y7446D01* X492Y7447D01* X484Y7447D01* X475Y7445D01* X467Y7442D01* X460Y7437D01* X453Y7431D01* X448Y7424D01* X445Y7419D01* Y7571D01* X447Y7568D01* X452Y7561D01* X459Y7556D01* X466Y7551D01* X474Y7548D01* X483Y7546D01* X492Y7546D01* X500Y7547D01* X508Y7550D01* X516Y7555D01* X523Y7560D01* X529Y7567D01* X533Y7574D01* X536Y7582D01* X545Y7608D01* X556Y7633D01* X569Y7657D01* X584Y7679D01* X601Y7700D01* X620Y7719D01* X625Y7723D01* Y7276D01* G37* G36* Y7846D02*X609Y7837D01* X580Y7816D01* X552Y7793D01* X527Y7767D01* X504Y7739D01* X484Y7709D01* X466Y7677D01* X452Y7644D01* X445Y7625D01* Y9325D01* X449Y9316D01* X467Y9284D01* X488Y9255D01* X512Y9227D01* X537Y9202D01* X565Y9179D01* X595Y9159D01* X625Y9142D01* Y7846D01* G37* G36* Y9259D02*X625Y9259D01* X604Y9276D01* X585Y9295D01* X567Y9316D01* X552Y9338D01* X538Y9362D01* X527Y9386D01* X518Y9412D01* X514Y9420D01* X510Y9427D01* X504Y9434D01* X497Y9439D01* X489Y9443D01* X481Y9446D01* X472Y9447D01* X464Y9447D01* X455Y9445D01* X447Y9442D01* X445Y9441D01* Y9552D01* X446Y9551D01* X454Y9548D01* X463Y9546D01* X472Y9546D01* X480Y9547D01* X488Y9550D01* X496Y9555D01* X503Y9560D01* X509Y9567D01* X513Y9574D01* X516Y9582D01* X525Y9608D01* X536Y9633D01* X549Y9657D01* X564Y9679D01* X581Y9700D01* X600Y9719D01* X621Y9737D01* X625Y9740D01* Y9259D01* G37* G36* Y9857D02*X621Y9855D01* X589Y9837D01* X560Y9816D01* X532Y9793D01* X507Y9767D01* X484Y9739D01* X464Y9709D01* X446Y9677D01* X445Y9675D01* Y11288D01* X447Y11284D01* X468Y11255D01* X492Y11227D01* X517Y11202D01* X545Y11179D01* X575Y11159D01* X607Y11141D01* X625Y11133D01* Y9857D01* G37* G36* Y11246D02*X605Y11259D01* X584Y11276D01* X565Y11295D01* X547Y11316D01* X532Y11338D01* X518Y11362D01* X507Y11386D01* X498Y11412D01* X494Y11420D01* X490Y11427D01* X484Y11434D01* X477Y11439D01* X469Y11443D01* X461Y11446D01* X452Y11447D01* X445Y11447D01* Y11546D01* X452Y11546D01* X460Y11547D01* X468Y11550D01* X476Y11555D01* X483Y11560D01* X489Y11567D01* X493Y11574D01* X496Y11582D01* X505Y11608D01* X516Y11633D01* X529Y11657D01* X544Y11679D01* X561Y11700D01* X580Y11719D01* X601Y11737D01* X623Y11752D01* X625Y11754D01* Y11246D01* G37* G36* Y11866D02*X601Y11855D01* X569Y11837D01* X540Y11816D01* X512Y11793D01* X487Y11767D01* X464Y11739D01* X445Y11711D01* Y13259D01* X448Y13255D01* X472Y13227D01* X497Y13202D01* X525Y13179D01* X555Y13159D01* X587Y13141D01* X620Y13127D01* X625Y13125D01* Y11866D01* G37* G36* Y13234D02*X608Y13244D01* X585Y13259D01* X564Y13276D01* X545Y13295D01* X527Y13316D01* X512Y13338D01* X498Y13362D01* X487Y13386D01* X478Y13412D01* X474Y13420D01* X470Y13427D01* X464Y13434D01* X457Y13439D01* X449Y13443D01* X445Y13445D01* Y13549D01* X448Y13550D01* X456Y13555D01* X463Y13560D01* X469Y13567D01* X473Y13574D01* X476Y13582D01* X485Y13608D01* X496Y13633D01* X509Y13657D01* X524Y13679D01* X541Y13700D01* X560Y13719D01* X581Y13737D01* X603Y13752D01* X625Y13765D01* Y13234D01* G37* G36* Y13874D02*X613Y13870D01* X581Y13855D01* X549Y13837D01* X520Y13816D01* X492Y13793D01* X467Y13767D01* X445Y13740D01* Y15235D01* X452Y15227D01* X477Y15202D01* X505Y15179D01* X535Y15159D01* X567Y15141D01* X600Y15127D01* X625Y15118D01* Y13874D01* G37* G36* Y15225D02*X611Y15231D01* X588Y15244D01* X565Y15259D01* X544Y15276D01* X525Y15295D01* X507Y15316D01* X492Y15338D01* X478Y15362D01* X467Y15386D01* X458Y15412D01* X454Y15420D01* X450Y15427D01* X445Y15432D01* Y15563D01* X449Y15567D01* X453Y15574D01* X456Y15582D01* X465Y15608D01* X476Y15633D01* X489Y15657D01* X504Y15679D01* X521Y15700D01* X540Y15719D01* X561Y15737D01* X583Y15752D01* X607Y15766D01* X625Y15775D01* Y15225D01* G37* G36* Y15881D02*X593Y15870D01* X561Y15855D01* X529Y15837D01* X500Y15816D01* X472Y15793D01* X447Y15767D01* X445Y15765D01* Y17214D01* X457Y17202D01* X485Y17179D01* X515Y17159D01* X547Y17141D01* X580Y17127D01* X614Y17115D01* X623Y17113D01* X625D01* Y15881D01* G37* G36* Y17217D02*X616Y17220D01* X591Y17231D01* X568Y17244D01* X545Y17259D01* X524Y17276D01* X505Y17295D01* X487Y17316D01* X472Y17338D01* X458Y17362D01* X447Y17386D01* X445Y17391D01* Y17609D01* X456Y17633D01* X469Y17657D01* X484Y17679D01* X501Y17700D01* X520Y17719D01* X541Y17737D01* X563Y17752D01* X587Y17766D01* X611Y17777D01* X625Y17782D01* Y17217D01* G37* G36* Y17884D02*X625Y17884D01* X616Y17884D01* X608Y17882D01* X573Y17870D01* X541Y17855D01* X509Y17837D01* X480Y17816D01* X452Y17793D01* X445Y17785D01* Y19196D01* X465Y19179D01* X495Y19159D01* X527Y19141D01* X560Y19127D01* X594Y19115D01* X603Y19113D01* X612Y19113D01* X620Y19115D01* X625Y19116D01* Y17884D01* G37* G36* Y19210D02*X622Y19211D01* X596Y19220D01* X571Y19231D01* X548Y19244D01* X525Y19259D01* X504Y19276D01* X485Y19295D01* X467Y19316D01* X452Y19338D01* X445Y19349D01* Y19650D01* X449Y19657D01* X464Y19679D01* X481Y19700D01* X500Y19719D01* X521Y19737D01* X543Y19752D01* X567Y19766D01* X591Y19777D01* X617Y19786D01* X625Y19790D01* X625Y19790D01* Y19210D01* G37* G36* Y19878D02*X622Y19880D01* X613Y19883D01* X605Y19884D01* X596Y19884D01* X588Y19882D01* X553Y19870D01* X521Y19855D01* X489Y19837D01* X460Y19816D01* X445Y19804D01* Y21179D01* X445Y21179D01* X475Y21159D01* X507Y21141D01* X540Y21127D01* X574Y21115D01* X583Y21113D01* X592Y21113D01* X600Y21115D01* X608Y21117D01* X616Y21122D01* X623Y21127D01* X625Y21130D01* Y19878D01* G37* G36* Y21197D02*X624Y21198D01* X617Y21204D01* X610Y21208D01* X602Y21211D01* X576Y21220D01* X551Y21231D01* X528Y21244D01* X505Y21259D01* X484Y21276D01* X465Y21295D01* X447Y21316D01* X445Y21319D01* Y21680D01* X461Y21700D01* X480Y21719D01* X501Y21737D01* X523Y21752D01* X547Y21766D01* X571Y21777D01* X597Y21786D01* X605Y21790D01* X612Y21794D01* X619Y21800D01* X624Y21807D01* X625Y21809D01* Y21197D01* G37* G36* Y40000D02*X884D01* Y39625D01* X875Y39651D01* X860Y39683D01* X842Y39715D01* X821Y39744D01* X797Y39772D01* X772Y39797D01* X744Y39820D01* X714Y39840D01* X682Y39858D01* X649Y39873D01* X625Y39881D01* Y40000D01* G37* G36* Y39774D02*X638Y39768D01* X661Y39755D01* X684Y39740D01* X705Y39723D01* X724Y39704D01* X742Y39683D01* X757Y39661D01* X771Y39637D01* X782Y39613D01* X791Y39587D01* X795Y39579D01* X799Y39572D01* X805Y39565D01* X812Y39560D01* X820Y39556D01* X828Y39553D01* X837Y39552D01* X845Y39552D01* X854Y39554D01* X862Y39557D01* X869Y39562D01* X876Y39568D01* X881Y39575D01* X884Y39580D01* Y39428D01* X882Y39431D01* X877Y39438D01* X870Y39444D01* X863Y39448D01* X855Y39451D01* X846Y39453D01* X837Y39453D01* X829Y39452D01* X821Y39449D01* X813Y39445D01* X806Y39439D01* X800Y39433D01* X796Y39425D01* X793Y39417D01* X784Y39391D01* X773Y39366D01* X760Y39343D01* X745Y39320D01* X728Y39299D01* X709Y39280D01* X688Y39262D01* X666Y39247D01* X642Y39233D01* X625Y39225D01* Y39774D01* G37* G36* Y39118D02*X656Y39129D01* X688Y39144D01* X720Y39162D01* X749Y39183D01* X777Y39207D01* X802Y39232D01* X825Y39260D01* X845Y39290D01* X863Y39322D01* X877Y39355D01* X884Y39374D01* Y37674D01* X880Y37683D01* X862Y37715D01* X841Y37744D01* X817Y37772D01* X792Y37797D01* X764Y37820D01* X734Y37840D01* X702Y37858D01* X669Y37873D01* X635Y37884D01* X626Y37886D01* X625D01* Y39118D01* G37* G36* Y37782D02*X633Y37779D01* X658Y37768D01* X681Y37755D01* X704Y37740D01* X725Y37723D01* X744Y37704D01* X762Y37683D01* X777Y37661D01* X791Y37637D01* X802Y37613D01* X811Y37587D01* X815Y37579D01* X819Y37572D01* X825Y37565D01* X832Y37560D01* X840Y37556D01* X848Y37553D01* X857Y37552D01* X865Y37552D01* X874Y37554D01* X882Y37557D01* X884Y37559D01* Y37447D01* X883Y37448D01* X875Y37451D01* X866Y37453D01* X857Y37453D01* X849Y37452D01* X841Y37449D01* X833Y37445D01* X826Y37439D01* X820Y37433D01* X816Y37425D01* X813Y37417D01* X804Y37391D01* X793Y37366D01* X780Y37343D01* X765Y37320D01* X748Y37299D01* X729Y37280D01* X708Y37262D01* X686Y37247D01* X662Y37233D01* X638Y37222D01* X625Y37217D01* Y37782D01* G37* G36* Y37115D02*X633Y37115D01* X641Y37117D01* X676Y37129D01* X708Y37144D01* X740Y37162D01* X769Y37183D01* X797Y37207D01* X822Y37232D01* X845Y37260D01* X865Y37290D01* X883Y37322D01* X884Y37324D01* Y35711D01* X882Y35715D01* X861Y35744D01* X837Y35772D01* X812Y35797D01* X784Y35820D01* X754Y35840D01* X722Y35858D01* X689Y35873D01* X655Y35884D01* X646Y35886D01* X637Y35886D01* X629Y35885D01* X625Y35883D01* Y37115D01* G37* G36* Y35789D02*X627Y35788D01* X653Y35779D01* X678Y35768D01* X701Y35755D01* X724Y35740D01* X745Y35723D01* X764Y35704D01* X782Y35683D01* X797Y35661D01* X811Y35637D01* X822Y35613D01* X831Y35587D01* X835Y35579D01* X839Y35572D01* X845Y35565D01* X852Y35560D01* X860Y35556D01* X868Y35553D01* X877Y35552D01* X884Y35552D01* Y35453D01* X877Y35453D01* X869Y35452D01* X861Y35449D01* X853Y35445D01* X846Y35439D01* X840Y35433D01* X836Y35425D01* X833Y35417D01* X824Y35391D01* X813Y35366D01* X800Y35343D01* X785Y35320D01* X768Y35299D01* X749Y35280D01* X728Y35262D01* X706Y35247D01* X682Y35233D01* X658Y35222D01* X632Y35213D01* X625Y35210D01* Y35789D01* G37* G36* Y35120D02*X627Y35119D01* X636Y35116D01* X644Y35115D01* X653Y35115D01* X661Y35117D01* X696Y35129D01* X728Y35144D01* X760Y35162D01* X789Y35183D01* X817Y35207D01* X842Y35232D01* X865Y35260D01* X884Y35288D01* Y33740D01* X881Y33744D01* X857Y33772D01* X832Y33797D01* X804Y33820D01* X774Y33840D01* X742Y33858D01* X709Y33873D01* X675Y33884D01* X666Y33886D01* X657Y33886D01* X649Y33885D01* X641Y33882D01* X633Y33878D01* X626Y33872D01* X625Y33871D01* Y35120D01* G37* G36* Y33801D02*X632Y33796D01* X639Y33791D01* X647Y33788D01* X673Y33779D01* X698Y33768D01* X721Y33755D01* X744Y33740D01* X765Y33723D01* X784Y33704D01* X802Y33683D01* X817Y33661D01* X831Y33637D01* X842Y33613D01* X851Y33587D01* X855Y33579D01* X859Y33572D01* X865Y33565D01* X872Y33560D01* X880Y33556D01* X884Y33555D01* Y33450D01* X881Y33449D01* X873Y33445D01* X866Y33439D01* X860Y33433D01* X856Y33425D01* X853Y33417D01* X844Y33391D01* X833Y33366D01* X820Y33343D01* X805Y33320D01* X788Y33299D01* X769Y33280D01* X748Y33262D01* X726Y33247D01* X702Y33233D01* X678Y33222D01* X652Y33213D01* X644Y33209D01* X637Y33205D01* X630Y33199D01* X625Y33192D01* Y33801D01* G37* G36* Y33138D02*X627Y33135D01* X633Y33128D01* X640Y33123D01* X647Y33119D01* X656Y33116D01* X664Y33115D01* X673Y33115D01* X681Y33117D01* X716Y33129D01* X748Y33144D01* X780Y33162D01* X809Y33183D01* X837Y33207D01* X862Y33232D01* X884Y33259D01* Y31764D01* X877Y31772D01* X852Y31797D01* X824Y31820D01* X794Y31840D01* X762Y31858D01* X729Y31873D01* X695Y31884D01* X686Y31886D01* X677Y31886D01* X669Y31885D01* X661Y31882D01* X653Y31878D01* X646Y31872D01* X640Y31865D01* X636Y31858D01* X633Y31850D01* X631Y31841D01* X631Y31833D01* X632Y31824D01* X635Y31816D01* X639Y31808D01* X645Y31801D01* X652Y31796D01* X659Y31791D01* X667Y31788D01* X693Y31779D01* X718Y31768D01* X741Y31755D01* X764Y31740D01* X785Y31723D01* X804Y31704D01* X822Y31683D01* X837Y31661D01* X851Y31637D01* X862Y31613D01* X871Y31587D01* X875Y31579D01* X879Y31572D01* X884Y31567D01* Y31437D01* X880Y31433D01* X876Y31425D01* X873Y31417D01* X864Y31391D01* X853Y31366D01* X840Y31343D01* X825Y31320D01* X808Y31299D01* X789Y31280D01* X768Y31262D01* X746Y31247D01* X722Y31233D01* X698Y31222D01* X672Y31213D01* X664Y31209D01* X657Y31205D01* X650Y31199D01* X645Y31192D01* X641Y31184D01* X638Y31176D01* X637Y31167D01* X637Y31159D01* X639Y31150D01* X642Y31142D01* X647Y31135D01* X653Y31128D01* X660Y31123D01* X667Y31119D01* X676Y31116D01* X684Y31115D01* X693Y31115D01* X701Y31117D01* X736Y31129D01* X768Y31144D01* X800Y31162D01* X829Y31183D01* X857Y31207D01* X882Y31232D01* X884Y31235D01* Y29785D01* X872Y29797D01* X844Y29820D01* X814Y29840D01* X782Y29858D01* X749Y29873D01* X715Y29884D01* X706Y29886D01* X697Y29886D01* X689Y29885D01* X681Y29882D01* X673Y29878D01* X666Y29872D01* X660Y29865D01* X656Y29858D01* X653Y29850D01* X651Y29841D01* X651Y29833D01* X652Y29824D01* X655Y29816D01* X659Y29808D01* X665Y29801D01* X672Y29796D01* X679Y29791D01* X687Y29788D01* X713Y29779D01* X738Y29768D01* X761Y29755D01* X784Y29740D01* X805Y29723D01* X824Y29704D01* X842Y29683D01* X857Y29661D01* X871Y29637D01* X882Y29613D01* X884Y29608D01* Y29391D01* X873Y29366D01* X860Y29343D01* X845Y29320D01* X828Y29299D01* X809Y29280D01* X788Y29262D01* X766Y29247D01* X742Y29233D01* X718Y29222D01* X692Y29213D01* X684Y29209D01* X677Y29205D01* X670Y29199D01* X665Y29192D01* X661Y29184D01* X658Y29176D01* X657Y29167D01* X657Y29159D01* X659Y29150D01* X662Y29142D01* X667Y29135D01* X673Y29128D01* X680Y29123D01* X687Y29119D01* X696Y29116D01* X704Y29115D01* X713Y29115D01* X721Y29117D01* X756Y29129D01* X788Y29144D01* X820Y29162D01* X849Y29183D01* X877Y29207D01* X884Y29214D01* Y27804D01* X864Y27820D01* X834Y27840D01* X802Y27858D01* X769Y27873D01* X735Y27884D01* X726Y27886D01* X717Y27886D01* X709Y27885D01* X701Y27882D01* X693Y27878D01* X686Y27872D01* X680Y27865D01* X676Y27858D01* X673Y27850D01* X671Y27841D01* X671Y27833D01* X672Y27824D01* X675Y27816D01* X679Y27808D01* X685Y27801D01* X692Y27796D01* X699Y27791D01* X707Y27788D01* X733Y27779D01* X758Y27768D01* X781Y27755D01* X804Y27740D01* X825Y27723D01* X844Y27704D01* X862Y27683D01* X877Y27661D01* X884Y27650D01* Y27350D01* X880Y27343D01* X865Y27320D01* X848Y27299D01* X829Y27280D01* X808Y27262D01* X786Y27247D01* X762Y27233D01* X738Y27222D01* X712Y27213D01* X704Y27209D01* X697Y27205D01* X690Y27199D01* X685Y27192D01* X681Y27184D01* X678Y27176D01* X677Y27167D01* X677Y27159D01* X679Y27150D01* X682Y27142D01* X687Y27135D01* X693Y27128D01* X700Y27123D01* X707Y27119D01* X716Y27116D01* X724Y27115D01* X733Y27115D01* X741Y27117D01* X776Y27129D01* X808Y27144D01* X840Y27162D01* X869Y27183D01* X884Y27196D01* Y25820D01* X884Y25820D01* X854Y25840D01* X822Y25858D01* X789Y25873D01* X755Y25884D01* X746Y25886D01* X737Y25886D01* X729Y25885D01* X721Y25882D01* X713Y25878D01* X706Y25872D01* X700Y25865D01* X696Y25858D01* X693Y25850D01* X691Y25841D01* X691Y25833D01* X692Y25824D01* X695Y25816D01* X699Y25808D01* X705Y25801D01* X712Y25796D01* X719Y25791D01* X727Y25788D01* X753Y25779D01* X778Y25768D01* X801Y25755D01* X824Y25740D01* X845Y25723D01* X864Y25704D01* X882Y25683D01* X884Y25680D01* Y25319D01* X868Y25299D01* X849Y25280D01* X828Y25262D01* X806Y25247D01* X782Y25233D01* X758Y25222D01* X732Y25213D01* X724Y25209D01* X717Y25205D01* X710Y25199D01* X705Y25192D01* X701Y25184D01* X698Y25176D01* X697Y25167D01* X697Y25159D01* X699Y25150D01* X702Y25142D01* X707Y25135D01* X713Y25128D01* X720Y25123D01* X727Y25119D01* X736Y25116D01* X744Y25115D01* X753Y25115D01* X761Y25117D01* X796Y25129D01* X828Y25144D01* X860Y25162D01* X884Y25180D01* Y23834D01* X874Y23840D01* X842Y23858D01* X809Y23873D01* X775Y23884D01* X766Y23886D01* X757Y23886D01* X749Y23885D01* X741Y23882D01* X733Y23878D01* X726Y23872D01* X720Y23865D01* X716Y23858D01* X713Y23850D01* X711Y23841D01* X711Y23833D01* X712Y23824D01* X715Y23816D01* X719Y23808D01* X725Y23801D01* X732Y23796D01* X739Y23791D01* X747Y23788D01* X773Y23779D01* X798Y23768D01* X821Y23755D01* X844Y23740D01* X865Y23723D01* X884Y23704D01* Y23295D01* X869Y23280D01* X848Y23262D01* X826Y23247D01* X802Y23233D01* X778Y23222D01* X752Y23213D01* X744Y23209D01* X737Y23205D01* X730Y23199D01* X725Y23192D01* X721Y23184D01* X718Y23176D01* X717Y23167D01* X717Y23159D01* X719Y23150D01* X722Y23142D01* X727Y23135D01* X733Y23128D01* X740Y23123D01* X747Y23119D01* X756Y23116D01* X764Y23115D01* X773Y23115D01* X781Y23117D01* X816Y23129D01* X848Y23144D01* X880Y23162D01* X884Y23165D01* Y21846D01* X862Y21858D01* X829Y21873D01* X795Y21884D01* X786Y21886D01* X777Y21886D01* X769Y21885D01* X761Y21882D01* X753Y21878D01* X746Y21872D01* X740Y21865D01* X736Y21858D01* X733Y21850D01* X731Y21841D01* X731Y21833D01* X732Y21824D01* X735Y21816D01* X739Y21808D01* X745Y21801D01* X752Y21796D01* X759Y21791D01* X767Y21788D01* X793Y21779D01* X818Y21768D01* X841Y21755D01* X864Y21740D01* X884Y21724D01* Y21276D01* X868Y21262D01* X846Y21247D01* X822Y21233D01* X798Y21222D01* X772Y21213D01* X764Y21209D01* X757Y21205D01* X750Y21199D01* X745Y21192D01* X741Y21184D01* X738Y21176D01* X737Y21167D01* X737Y21159D01* X739Y21150D01* X742Y21142D01* X747Y21135D01* X753Y21128D01* X760Y21123D01* X767Y21119D01* X776Y21116D01* X784Y21115D01* X793Y21115D01* X801Y21117D01* X836Y21129D01* X868Y21144D01* X884Y21153D01* Y19857D01* X882Y19858D01* X849Y19873D01* X815Y19884D01* X806Y19886D01* X797Y19886D01* X789Y19885D01* X781Y19882D01* X773Y19878D01* X766Y19872D01* X760Y19865D01* X756Y19858D01* X753Y19850D01* X751Y19841D01* X751Y19833D01* X752Y19824D01* X755Y19816D01* X759Y19808D01* X765Y19801D01* X772Y19796D01* X779Y19791D01* X787Y19788D01* X813Y19779D01* X838Y19768D01* X861Y19755D01* X884Y19740D01* Y19259D01* X866Y19247D01* X842Y19233D01* X818Y19222D01* X792Y19213D01* X784Y19209D01* X777Y19205D01* X770Y19199D01* X765Y19192D01* X761Y19184D01* X758Y19176D01* X757Y19167D01* X757Y19159D01* X759Y19150D01* X762Y19142D01* X767Y19135D01* X773Y19128D01* X780Y19123D01* X787Y19119D01* X796Y19116D01* X804Y19115D01* X813Y19115D01* X821Y19117D01* X856Y19129D01* X884Y19142D01* Y17866D01* X869Y17873D01* X835Y17884D01* X826Y17886D01* X817Y17886D01* X809Y17885D01* X801Y17882D01* X793Y17878D01* X786Y17872D01* X780Y17865D01* X776Y17858D01* X773Y17850D01* X771Y17841D01* X771Y17833D01* X772Y17824D01* X775Y17816D01* X779Y17808D01* X785Y17801D01* X792Y17796D01* X799Y17791D01* X807Y17788D01* X833Y17779D01* X858Y17768D01* X881Y17755D01* X884Y17754D01* Y17246D01* X862Y17233D01* X838Y17222D01* X812Y17213D01* X804Y17209D01* X797Y17205D01* X790Y17199D01* X785Y17192D01* X781Y17184D01* X778Y17176D01* X777Y17167D01* X777Y17159D01* X779Y17150D01* X782Y17142D01* X787Y17135D01* X793Y17128D01* X800Y17123D01* X807Y17119D01* X816Y17116D01* X824Y17115D01* X833Y17115D01* X841Y17117D01* X876Y17129D01* X884Y17133D01* Y15874D01* X855Y15884D01* X846Y15886D01* X837Y15886D01* X829Y15885D01* X821Y15882D01* X813Y15878D01* X806Y15872D01* X800Y15865D01* X796Y15858D01* X793Y15850D01* X791Y15841D01* X791Y15833D01* X792Y15824D01* X795Y15816D01* X799Y15808D01* X805Y15801D01* X812Y15796D01* X819Y15791D01* X827Y15788D01* X853Y15779D01* X878Y15768D01* X884Y15765D01* Y15234D01* X882Y15233D01* X858Y15222D01* X832Y15213D01* X824Y15209D01* X817Y15205D01* X810Y15199D01* X805Y15192D01* X801Y15184D01* X798Y15176D01* X797Y15167D01* X797Y15159D01* X799Y15150D01* X802Y15142D01* X807Y15135D01* X813Y15128D01* X820Y15123D01* X827Y15119D01* X836Y15116D01* X844Y15115D01* X853Y15115D01* X861Y15117D01* X884Y15125D01* Y13881D01* X875Y13884D01* X866Y13886D01* X857Y13886D01* X849Y13885D01* X841Y13882D01* X833Y13878D01* X826Y13872D01* X820Y13865D01* X816Y13858D01* X813Y13850D01* X811Y13841D01* X811Y13833D01* X812Y13824D01* X815Y13816D01* X819Y13808D01* X825Y13801D01* X832Y13796D01* X839Y13791D01* X847Y13788D01* X873Y13779D01* X884Y13774D01* Y13225D01* X878Y13222D01* X852Y13213D01* X844Y13209D01* X837Y13205D01* X830Y13199D01* X825Y13192D01* X821Y13184D01* X818Y13176D01* X817Y13167D01* X817Y13159D01* X819Y13150D01* X822Y13142D01* X827Y13135D01* X833Y13128D01* X840Y13123D01* X847Y13119D01* X856Y13116D01* X864Y13115D01* X873Y13115D01* X881Y13117D01* X884Y13118D01* Y11886D01* X877Y11886D01* X869Y11885D01* X861Y11882D01* X853Y11878D01* X846Y11872D01* X840Y11865D01* X836Y11858D01* X833Y11850D01* X831Y11841D01* X831Y11833D01* X832Y11824D01* X835Y11816D01* X839Y11808D01* X845Y11801D01* X852Y11796D01* X859Y11791D01* X867Y11788D01* X884Y11782D01* Y11217D01* X872Y11213D01* X864Y11209D01* X857Y11205D01* X850Y11199D01* X845Y11192D01* X841Y11184D01* X838Y11176D01* X837Y11167D01* X837Y11159D01* X839Y11150D01* X842Y11142D01* X847Y11135D01* X853Y11128D01* X860Y11123D01* X867Y11119D01* X876Y11116D01* X884Y11115D01* Y9883D01* X881Y9882D01* X873Y9878D01* X866Y9872D01* X860Y9865D01* X856Y9858D01* X853Y9850D01* X851Y9841D01* X851Y9833D01* X852Y9824D01* X855Y9816D01* X859Y9808D01* X865Y9801D01* X872Y9796D01* X879Y9791D01* X884Y9789D01* Y9209D01* X877Y9205D01* X870Y9199D01* X865Y9192D01* X861Y9184D01* X858Y9176D01* X857Y9167D01* X857Y9159D01* X859Y9150D01* X862Y9142D01* X867Y9135D01* X873Y9128D01* X880Y9123D01* X884Y9121D01* Y7870D01* X880Y7865D01* X876Y7858D01* X873Y7850D01* X871Y7841D01* X871Y7833D01* X872Y7824D01* X875Y7816D01* X879Y7808D01* X884Y7802D01* Y7190D01* X881Y7184D01* X878Y7176D01* X877Y7167D01* X877Y7159D01* X879Y7150D01* X882Y7142D01* X884Y7140D01* Y0D01* X625D01* Y1196D01* X645Y1179D01* X675Y1159D01* X707Y1141D01* X740Y1127D01* X774Y1115D01* X783Y1113D01* X792Y1113D01* X800Y1115D01* X808Y1117D01* X816Y1122D01* X823Y1127D01* X829Y1134D01* X833Y1141D01* X836Y1149D01* X838Y1158D01* X838Y1167D01* X837Y1175D01* X834Y1183D01* X830Y1191D01* X824Y1198D01* X817Y1204D01* X810Y1208D01* X802Y1211D01* X776Y1220D01* X751Y1231D01* X728Y1244D01* X705Y1259D01* X684Y1276D01* X665Y1295D01* X647Y1316D01* X632Y1338D01* X625Y1349D01* Y1650D01* X629Y1657D01* X644Y1679D01* X661Y1700D01* X680Y1719D01* X701Y1737D01* X723Y1752D01* X747Y1766D01* X771Y1777D01* X797Y1786D01* X805Y1790D01* X812Y1794D01* X819Y1800D01* X824Y1807D01* X828Y1815D01* X831Y1823D01* X832Y1832D01* X832Y1840D01* X830Y1849D01* X827Y1857D01* X822Y1864D01* X816Y1871D01* X809Y1876D01* X802Y1880D01* X793Y1883D01* X785Y1884D01* X776Y1884D01* X768Y1882D01* X733Y1870D01* X701Y1855D01* X669Y1837D01* X640Y1816D01* X625Y1804D01* Y3179D01* X625Y3179D01* X655Y3159D01* X687Y3141D01* X720Y3127D01* X754Y3115D01* X763Y3113D01* X772Y3113D01* X780Y3115D01* X788Y3117D01* X796Y3122D01* X803Y3127D01* X809Y3134D01* X813Y3141D01* X816Y3149D01* X818Y3158D01* X818Y3167D01* X817Y3175D01* X814Y3183D01* X810Y3191D01* X804Y3198D01* X797Y3204D01* X790Y3208D01* X782Y3211D01* X756Y3220D01* X731Y3231D01* X708Y3244D01* X685Y3259D01* X664Y3276D01* X645Y3295D01* X627Y3316D01* X625Y3319D01* Y3680D01* X641Y3700D01* X660Y3719D01* X681Y3737D01* X703Y3752D01* X727Y3766D01* X751Y3777D01* X777Y3786D01* X785Y3790D01* X792Y3794D01* X799Y3800D01* X804Y3807D01* X808Y3815D01* X811Y3823D01* X812Y3832D01* X812Y3840D01* X810Y3849D01* X807Y3857D01* X802Y3864D01* X796Y3871D01* X789Y3876D01* X782Y3880D01* X773Y3883D01* X765Y3884D01* X756Y3884D01* X748Y3882D01* X713Y3870D01* X681Y3855D01* X649Y3837D01* X625Y3820D01* Y5166D01* X635Y5159D01* X667Y5141D01* X700Y5127D01* X734Y5115D01* X743Y5113D01* X752Y5113D01* X760Y5115D01* X768Y5117D01* X776Y5122D01* X783Y5127D01* X789Y5134D01* X793Y5141D01* X796Y5149D01* X798Y5158D01* X798Y5167D01* X797Y5175D01* X794Y5183D01* X790Y5191D01* X784Y5198D01* X777Y5204D01* X770Y5208D01* X762Y5211D01* X736Y5220D01* X711Y5231D01* X688Y5244D01* X665Y5259D01* X644Y5276D01* X625Y5295D01* Y5704D01* X640Y5719D01* X661Y5737D01* X683Y5752D01* X707Y5766D01* X731Y5777D01* X757Y5786D01* X765Y5790D01* X772Y5794D01* X779Y5800D01* X784Y5807D01* X788Y5815D01* X791Y5823D01* X792Y5832D01* X792Y5840D01* X790Y5849D01* X787Y5857D01* X782Y5864D01* X776Y5871D01* X769Y5876D01* X762Y5880D01* X753Y5883D01* X745Y5884D01* X736Y5884D01* X728Y5882D01* X693Y5870D01* X661Y5855D01* X629Y5837D01* X625Y5834D01* Y7153D01* X647Y7141D01* X680Y7127D01* X714Y7115D01* X723Y7113D01* X732Y7113D01* X740Y7115D01* X748Y7117D01* X756Y7122D01* X763Y7127D01* X769Y7134D01* X773Y7141D01* X776Y7149D01* X778Y7158D01* X778Y7167D01* X777Y7175D01* X774Y7183D01* X770Y7191D01* X764Y7198D01* X757Y7204D01* X750Y7208D01* X742Y7211D01* X716Y7220D01* X691Y7231D01* X668Y7244D01* X645Y7259D01* X625Y7276D01* Y7723D01* X641Y7737D01* X663Y7752D01* X687Y7766D01* X711Y7777D01* X737Y7786D01* X745Y7790D01* X752Y7794D01* X759Y7800D01* X764Y7807D01* X768Y7815D01* X771Y7823D01* X772Y7832D01* X772Y7840D01* X770Y7849D01* X767Y7857D01* X762Y7864D01* X756Y7871D01* X749Y7876D01* X742Y7880D01* X733Y7883D01* X725Y7884D01* X716Y7884D01* X708Y7882D01* X673Y7870D01* X641Y7855D01* X625Y7846D01* Y9142D01* X627Y9141D01* X660Y9127D01* X694Y9115D01* X703Y9113D01* X712Y9113D01* X720Y9115D01* X728Y9117D01* X736Y9122D01* X743Y9127D01* X749Y9134D01* X753Y9141D01* X756Y9149D01* X758Y9158D01* X758Y9167D01* X757Y9175D01* X754Y9183D01* X750Y9191D01* X744Y9198D01* X737Y9204D01* X730Y9208D01* X722Y9211D01* X696Y9220D01* X671Y9231D01* X648Y9244D01* X625Y9259D01* Y9740D01* X643Y9752D01* X667Y9766D01* X691Y9777D01* X717Y9786D01* X725Y9790D01* X732Y9794D01* X739Y9800D01* X744Y9807D01* X748Y9815D01* X751Y9823D01* X752Y9832D01* X752Y9840D01* X750Y9849D01* X747Y9857D01* X742Y9864D01* X736Y9871D01* X729Y9876D01* X722Y9880D01* X713Y9883D01* X705Y9884D01* X696Y9884D01* X688Y9882D01* X653Y9870D01* X625Y9857D01* Y11133D01* X640Y11127D01* X674Y11115D01* X683Y11113D01* X692Y11113D01* X700Y11115D01* X708Y11117D01* X716Y11122D01* X723Y11127D01* X729Y11134D01* X733Y11141D01* X736Y11149D01* X738Y11158D01* X738Y11167D01* X737Y11175D01* X734Y11183D01* X730Y11191D01* X724Y11198D01* X717Y11204D01* X710Y11208D01* X702Y11211D01* X676Y11220D01* X651Y11231D01* X628Y11244D01* X625Y11246D01* Y11754D01* X647Y11766D01* X671Y11777D01* X697Y11786D01* X705Y11790D01* X712Y11794D01* X719Y11800D01* X724Y11807D01* X728Y11815D01* X731Y11823D01* X732Y11832D01* X732Y11840D01* X730Y11849D01* X727Y11857D01* X722Y11864D01* X716Y11871D01* X709Y11876D01* X702Y11880D01* X693Y11883D01* X685Y11884D01* X676Y11884D01* X668Y11882D01* X633Y11870D01* X625Y11866D01* Y13125D01* X654Y13115D01* X663Y13113D01* X672Y13113D01* X680Y13115D01* X688Y13117D01* X696Y13122D01* X703Y13127D01* X709Y13134D01* X713Y13141D01* X716Y13149D01* X718Y13158D01* X718Y13167D01* X717Y13175D01* X714Y13183D01* X710Y13191D01* X704Y13198D01* X697Y13204D01* X690Y13208D01* X682Y13211D01* X656Y13220D01* X631Y13231D01* X625Y13234D01* Y13765D01* X627Y13766D01* X651Y13777D01* X677Y13786D01* X685Y13790D01* X692Y13794D01* X699Y13800D01* X704Y13807D01* X708Y13815D01* X711Y13823D01* X712Y13832D01* X712Y13840D01* X710Y13849D01* X707Y13857D01* X702Y13864D01* X696Y13871D01* X689Y13876D01* X682Y13880D01* X673Y13883D01* X665Y13884D01* X656Y13884D01* X648Y13882D01* X625Y13874D01* Y15118D01* X634Y15115D01* X643Y15113D01* X652Y15113D01* X660Y15115D01* X668Y15117D01* X676Y15122D01* X683Y15127D01* X689Y15134D01* X693Y15141D01* X696Y15149D01* X698Y15158D01* X698Y15167D01* X697Y15175D01* X694Y15183D01* X690Y15191D01* X684Y15198D01* X677Y15204D01* X670Y15208D01* X662Y15211D01* X636Y15220D01* X625Y15225D01* Y15775D01* X631Y15777D01* X657Y15786D01* X665Y15790D01* X672Y15794D01* X679Y15800D01* X684Y15807D01* X688Y15815D01* X691Y15823D01* X692Y15832D01* X692Y15840D01* X690Y15849D01* X687Y15857D01* X682Y15864D01* X676Y15871D01* X669Y15876D01* X662Y15880D01* X653Y15883D01* X645Y15884D01* X636Y15884D01* X628Y15882D01* X625Y15881D01* Y17113D01* X632Y17113D01* X640Y17115D01* X648Y17117D01* X656Y17122D01* X663Y17127D01* X669Y17134D01* X673Y17141D01* X676Y17149D01* X678Y17158D01* X678Y17167D01* X677Y17175D01* X674Y17183D01* X670Y17191D01* X664Y17198D01* X657Y17204D01* X650Y17208D01* X642Y17211D01* X625Y17217D01* Y17782D01* X637Y17786D01* X645Y17790D01* X652Y17794D01* X659Y17800D01* X664Y17807D01* X668Y17815D01* X671Y17823D01* X672Y17832D01* X672Y17840D01* X670Y17849D01* X667Y17857D01* X662Y17864D01* X656Y17871D01* X649Y17876D01* X642Y17880D01* X633Y17883D01* X625Y17884D01* Y19116D01* X628Y19117D01* X636Y19122D01* X643Y19127D01* X649Y19134D01* X653Y19141D01* X656Y19149D01* X658Y19158D01* X658Y19167D01* X657Y19175D01* X654Y19183D01* X650Y19191D01* X644Y19198D01* X637Y19204D01* X630Y19208D01* X625Y19210D01* Y19790D01* X632Y19794D01* X639Y19800D01* X644Y19807D01* X648Y19815D01* X651Y19823D01* X652Y19832D01* X652Y19840D01* X650Y19849D01* X647Y19857D01* X642Y19864D01* X636Y19871D01* X629Y19876D01* X625Y19878D01* Y21130D01* X629Y21134D01* X633Y21141D01* X636Y21149D01* X638Y21158D01* X638Y21167D01* X637Y21175D01* X634Y21183D01* X630Y21191D01* X625Y21197D01* Y21809D01* X628Y21815D01* X631Y21823D01* X632Y21832D01* X632Y21840D01* X630Y21849D01* X627Y21857D01* X625Y21859D01* Y33138D01* G37* G36* X884Y40000D02*X1064D01* Y21625D01* X1055Y21651D01* X1040Y21683D01* X1022Y21715D01* X1001Y21744D01* X977Y21772D01* X952Y21797D01* X924Y21820D01* X894Y21840D01* X884Y21846D01* Y23165D01* X909Y23183D01* X937Y23207D01* X962Y23232D01* X985Y23260D01* X1005Y23290D01* X1023Y23322D01* X1037Y23355D01* X1049Y23389D01* X1051Y23398D01* X1051Y23407D01* X1050Y23415D01* X1047Y23423D01* X1042Y23431D01* X1037Y23438D01* X1030Y23444D01* X1023Y23448D01* X1015Y23451D01* X1006Y23453D01* X997Y23453D01* X989Y23452D01* X981Y23449D01* X973Y23445D01* X966Y23439D01* X960Y23433D01* X956Y23425D01* X953Y23417D01* X944Y23391D01* X933Y23366D01* X920Y23343D01* X905Y23320D01* X888Y23299D01* X884Y23295D01* Y23704D01* X884Y23704D01* X902Y23683D01* X917Y23661D01* X931Y23637D01* X942Y23613D01* X951Y23587D01* X955Y23579D01* X959Y23572D01* X965Y23565D01* X972Y23560D01* X980Y23556D01* X988Y23553D01* X997Y23552D01* X1005Y23552D01* X1014Y23554D01* X1022Y23557D01* X1029Y23562D01* X1036Y23568D01* X1041Y23575D01* X1045Y23582D01* X1048Y23591D01* X1049Y23599D01* X1049Y23608D01* X1047Y23617D01* X1035Y23651D01* X1020Y23683D01* X1002Y23715D01* X981Y23744D01* X957Y23772D01* X932Y23797D01* X904Y23820D01* X884Y23834D01* Y25180D01* X889Y25183D01* X917Y25207D01* X942Y25232D01* X965Y25260D01* X985Y25290D01* X1003Y25322D01* X1017Y25355D01* X1029Y25389D01* X1031Y25398D01* X1031Y25407D01* X1030Y25415D01* X1027Y25423D01* X1022Y25431D01* X1017Y25438D01* X1010Y25444D01* X1003Y25448D01* X995Y25451D01* X986Y25453D01* X977Y25453D01* X969Y25452D01* X961Y25449D01* X953Y25445D01* X946Y25439D01* X940Y25433D01* X936Y25425D01* X933Y25417D01* X924Y25391D01* X913Y25366D01* X900Y25343D01* X885Y25320D01* X884Y25319D01* Y25680D01* X897Y25661D01* X911Y25637D01* X922Y25613D01* X931Y25587D01* X935Y25579D01* X939Y25572D01* X945Y25565D01* X952Y25560D01* X960Y25556D01* X968Y25553D01* X977Y25552D01* X985Y25552D01* X994Y25554D01* X1002Y25557D01* X1009Y25562D01* X1016Y25568D01* X1021Y25575D01* X1025Y25582D01* X1028Y25591D01* X1029Y25599D01* X1029Y25608D01* X1027Y25617D01* X1015Y25651D01* X1000Y25683D01* X982Y25715D01* X961Y25744D01* X937Y25772D01* X912Y25797D01* X884Y25820D01* Y27196D01* X897Y27207D01* X922Y27232D01* X945Y27260D01* X965Y27290D01* X983Y27322D01* X997Y27355D01* X1009Y27389D01* X1011Y27398D01* X1011Y27407D01* X1010Y27415D01* X1007Y27423D01* X1002Y27431D01* X997Y27438D01* X990Y27444D01* X983Y27448D01* X975Y27451D01* X966Y27453D01* X957Y27453D01* X949Y27452D01* X941Y27449D01* X933Y27445D01* X926Y27439D01* X920Y27433D01* X916Y27425D01* X913Y27417D01* X904Y27391D01* X893Y27366D01* X884Y27350D01* Y27650D01* X891Y27637D01* X902Y27613D01* X911Y27587D01* X915Y27579D01* X919Y27572D01* X925Y27565D01* X932Y27560D01* X940Y27556D01* X948Y27553D01* X957Y27552D01* X965Y27552D01* X974Y27554D01* X982Y27557D01* X989Y27562D01* X996Y27568D01* X1001Y27575D01* X1005Y27582D01* X1008Y27591D01* X1009Y27599D01* X1009Y27608D01* X1007Y27617D01* X995Y27651D01* X980Y27683D01* X962Y27715D01* X941Y27744D01* X917Y27772D01* X892Y27797D01* X884Y27804D01* Y29214D01* X902Y29232D01* X925Y29260D01* X945Y29290D01* X963Y29322D01* X977Y29355D01* X989Y29389D01* X991Y29398D01* X991Y29407D01* X990Y29415D01* X987Y29423D01* X982Y29431D01* X977Y29438D01* X970Y29444D01* X963Y29448D01* X955Y29451D01* X946Y29453D01* X937Y29453D01* X929Y29452D01* X921Y29449D01* X913Y29445D01* X906Y29439D01* X900Y29433D01* X896Y29425D01* X893Y29417D01* X884Y29391D01* X884Y29391D01* Y29608D01* X891Y29587D01* X895Y29579D01* X899Y29572D01* X905Y29565D01* X912Y29560D01* X920Y29556D01* X928Y29553D01* X937Y29552D01* X945Y29552D01* X954Y29554D01* X962Y29557D01* X969Y29562D01* X976Y29568D01* X981Y29575D01* X985Y29582D01* X988Y29591D01* X989Y29599D01* X989Y29608D01* X987Y29617D01* X975Y29651D01* X960Y29683D01* X942Y29715D01* X921Y29744D01* X897Y29772D01* X884Y29785D01* Y31235D01* X905Y31260D01* X925Y31290D01* X943Y31322D01* X957Y31355D01* X969Y31389D01* X971Y31398D01* X971Y31407D01* X970Y31415D01* X967Y31423D01* X962Y31431D01* X957Y31438D01* X950Y31444D01* X943Y31448D01* X935Y31451D01* X926Y31453D01* X917Y31453D01* X909Y31452D01* X901Y31449D01* X893Y31445D01* X886Y31439D01* X884Y31437D01* Y31567D01* X885Y31565D01* X892Y31560D01* X900Y31556D01* X908Y31553D01* X917Y31552D01* X925Y31552D01* X934Y31554D01* X942Y31557D01* X949Y31562D01* X956Y31568D01* X961Y31575D01* X965Y31582D01* X968Y31591D01* X969Y31599D01* X969Y31608D01* X967Y31617D01* X955Y31651D01* X940Y31683D01* X922Y31715D01* X901Y31744D01* X884Y31764D01* Y33259D01* X885Y33260D01* X905Y33290D01* X923Y33322D01* X937Y33355D01* X949Y33389D01* X951Y33398D01* X951Y33407D01* X950Y33415D01* X947Y33423D01* X942Y33431D01* X937Y33438D01* X930Y33444D01* X923Y33448D01* X915Y33451D01* X906Y33453D01* X897Y33453D01* X889Y33452D01* X884Y33450D01* Y33555D01* X888Y33553D01* X897Y33552D01* X905Y33552D01* X914Y33554D01* X922Y33557D01* X929Y33562D01* X936Y33568D01* X941Y33575D01* X945Y33582D01* X948Y33591D01* X949Y33599D01* X949Y33608D01* X947Y33617D01* X935Y33651D01* X920Y33683D01* X902Y33715D01* X884Y33740D01* Y35288D01* X885Y35290D01* X903Y35322D01* X917Y35355D01* X929Y35389D01* X931Y35398D01* X931Y35407D01* X930Y35415D01* X927Y35423D01* X922Y35431D01* X917Y35438D01* X910Y35444D01* X903Y35448D01* X895Y35451D01* X886Y35453D01* X884D01* Y35552D01* X885D01* X894Y35554D01* X902Y35557D01* X909Y35562D01* X916Y35568D01* X921Y35575D01* X925Y35582D01* X928Y35591D01* X929Y35599D01* X929Y35608D01* X927Y35617D01* X915Y35651D01* X900Y35683D01* X884Y35711D01* Y37324D01* X897Y37355D01* X909Y37389D01* X911Y37398D01* X911Y37407D01* X910Y37415D01* X907Y37423D01* X902Y37431D01* X897Y37438D01* X890Y37444D01* X884Y37447D01* Y37559D01* X889Y37562D01* X896Y37568D01* X901Y37575D01* X905Y37582D01* X908Y37591D01* X909Y37599D01* X909Y37608D01* X907Y37617D01* X895Y37651D01* X884Y37674D01* Y39374D01* X889Y39389D01* X891Y39398D01* X891Y39407D01* X890Y39415D01* X887Y39423D01* X884Y39428D01* Y39580D01* X885Y39582D01* X888Y39591D01* X889Y39599D01* X889Y39608D01* X887Y39617D01* X884Y39625D01* Y40000D01* G37* G36* X1064Y0D02*X884D01* Y7140D01* X887Y7135D01* X893Y7128D01* X900Y7123D01* X907Y7119D01* X916Y7116D01* X924Y7115D01* X933Y7115D01* X941Y7117D01* X976Y7129D01* X1008Y7144D01* X1040Y7162D01* X1064Y7180D01* Y5834D01* X1054Y5840D01* X1022Y5858D01* X989Y5873D01* X955Y5884D01* X946Y5886D01* X937Y5886D01* X929Y5885D01* X921Y5882D01* X913Y5878D01* X906Y5872D01* X900Y5865D01* X896Y5858D01* X893Y5850D01* X891Y5841D01* X891Y5833D01* X892Y5824D01* X895Y5816D01* X899Y5808D01* X905Y5801D01* X912Y5796D01* X919Y5791D01* X927Y5788D01* X953Y5779D01* X978Y5768D01* X1001Y5755D01* X1024Y5740D01* X1045Y5723D01* X1064Y5704D01* Y5295D01* X1049Y5280D01* X1028Y5262D01* X1006Y5247D01* X982Y5233D01* X958Y5222D01* X932Y5213D01* X924Y5209D01* X917Y5205D01* X910Y5199D01* X905Y5192D01* X901Y5184D01* X898Y5176D01* X897Y5167D01* X897Y5159D01* X899Y5150D01* X902Y5142D01* X907Y5135D01* X913Y5128D01* X920Y5123D01* X927Y5119D01* X936Y5116D01* X944Y5115D01* X953Y5115D01* X961Y5117D01* X996Y5129D01* X1028Y5144D01* X1060Y5162D01* X1064Y5165D01* Y3846D01* X1042Y3858D01* X1009Y3873D01* X975Y3884D01* X966Y3886D01* X957Y3886D01* X949Y3885D01* X941Y3882D01* X933Y3878D01* X926Y3872D01* X920Y3865D01* X916Y3858D01* X913Y3850D01* X911Y3841D01* X911Y3833D01* X912Y3824D01* X915Y3816D01* X919Y3808D01* X925Y3801D01* X932Y3796D01* X939Y3791D01* X947Y3788D01* X973Y3779D01* X998Y3768D01* X1021Y3755D01* X1044Y3740D01* X1064Y3724D01* Y3276D01* X1048Y3262D01* X1026Y3247D01* X1002Y3233D01* X978Y3222D01* X952Y3213D01* X944Y3209D01* X937Y3205D01* X930Y3199D01* X925Y3192D01* X921Y3184D01* X918Y3176D01* X917Y3167D01* X917Y3159D01* X919Y3150D01* X922Y3142D01* X927Y3135D01* X933Y3128D01* X940Y3123D01* X947Y3119D01* X956Y3116D01* X964Y3115D01* X973Y3115D01* X981Y3117D01* X1016Y3129D01* X1048Y3144D01* X1064Y3153D01* Y1857D01* X1062Y1858D01* X1029Y1873D01* X995Y1884D01* X986Y1886D01* X977Y1886D01* X969Y1885D01* X961Y1882D01* X953Y1878D01* X946Y1872D01* X940Y1865D01* X936Y1858D01* X933Y1850D01* X931Y1841D01* X931Y1833D01* X932Y1824D01* X935Y1816D01* X939Y1808D01* X945Y1801D01* X952Y1796D01* X959Y1791D01* X967Y1788D01* X993Y1779D01* X1018Y1768D01* X1041Y1755D01* X1064Y1740D01* Y1259D01* X1046Y1247D01* X1022Y1233D01* X998Y1222D01* X972Y1213D01* X964Y1209D01* X957Y1205D01* X950Y1199D01* X945Y1192D01* X941Y1184D01* X938Y1176D01* X937Y1167D01* X937Y1159D01* X939Y1150D01* X942Y1142D01* X947Y1135D01* X953Y1128D01* X960Y1123D01* X967Y1119D01* X976Y1116D01* X984Y1115D01* X993Y1115D01* X1001Y1117D01* X1036Y1129D01* X1064Y1142D01* Y0D01* G37* G36* Y7319D02*X1048Y7299D01* X1029Y7280D01* X1008Y7262D01* X986Y7247D01* X962Y7233D01* X938Y7222D01* X912Y7213D01* X904Y7209D01* X897Y7205D01* X890Y7199D01* X885Y7192D01* X884Y7190D01* Y7802D01* X885Y7801D01* X892Y7796D01* X899Y7791D01* X907Y7788D01* X933Y7779D01* X958Y7768D01* X981Y7755D01* X1004Y7740D01* X1025Y7723D01* X1044Y7704D01* X1062Y7683D01* X1064Y7680D01* Y7319D01* G37* G36* Y7820D02*X1064Y7820D01* X1034Y7840D01* X1002Y7858D01* X969Y7873D01* X935Y7884D01* X926Y7886D01* X917Y7886D01* X909Y7885D01* X901Y7882D01* X893Y7878D01* X886Y7872D01* X884Y7870D01* Y9121D01* X887Y9119D01* X896Y9116D01* X904Y9115D01* X913Y9115D01* X921Y9117D01* X956Y9129D01* X988Y9144D01* X1020Y9162D01* X1049Y9183D01* X1064Y9196D01* Y7820D01* G37* G36* Y9350D02*X1060Y9343D01* X1045Y9320D01* X1028Y9299D01* X1009Y9280D01* X988Y9262D01* X966Y9247D01* X942Y9233D01* X918Y9222D01* X892Y9213D01* X884Y9209D01* X884Y9209D01* Y9789D01* X887Y9788D01* X913Y9779D01* X938Y9768D01* X961Y9755D01* X984Y9740D01* X1005Y9723D01* X1024Y9704D01* X1042Y9683D01* X1057Y9661D01* X1064Y9650D01* Y9350D01* G37* G36* Y9804D02*X1044Y9820D01* X1014Y9840D01* X982Y9858D01* X949Y9873D01* X915Y9884D01* X906Y9886D01* X897Y9886D01* X889Y9885D01* X884Y9883D01* Y11115D01* X884D01* X893Y11115D01* X901Y11117D01* X936Y11129D01* X968Y11144D01* X1000Y11162D01* X1029Y11183D01* X1057Y11207D01* X1064Y11214D01* Y9804D01* G37* G36* Y11391D02*X1053Y11366D01* X1040Y11343D01* X1025Y11320D01* X1008Y11299D01* X989Y11280D01* X968Y11262D01* X946Y11247D01* X922Y11233D01* X898Y11222D01* X884Y11217D01* Y11782D01* X893Y11779D01* X918Y11768D01* X941Y11755D01* X964Y11740D01* X985Y11723D01* X1004Y11704D01* X1022Y11683D01* X1037Y11661D01* X1051Y11637D01* X1062Y11613D01* X1064Y11608D01* Y11391D01* G37* G36* Y11785D02*X1052Y11797D01* X1024Y11820D01* X994Y11840D01* X962Y11858D01* X929Y11873D01* X895Y11884D01* X886Y11886D01* X884D01* Y13118D01* X916Y13129D01* X948Y13144D01* X980Y13162D01* X1009Y13183D01* X1037Y13207D01* X1062Y13232D01* X1064Y13235D01* Y11785D01* G37* G36* Y13437D02*X1060Y13433D01* X1056Y13425D01* X1053Y13417D01* X1044Y13391D01* X1033Y13366D01* X1020Y13343D01* X1005Y13320D01* X988Y13299D01* X969Y13280D01* X948Y13262D01* X926Y13247D01* X902Y13233D01* X884Y13225D01* Y13774D01* X898Y13768D01* X921Y13755D01* X944Y13740D01* X965Y13723D01* X984Y13704D01* X1002Y13683D01* X1017Y13661D01* X1031Y13637D01* X1042Y13613D01* X1051Y13587D01* X1055Y13579D01* X1059Y13572D01* X1064Y13567D01* Y13437D01* G37* G36* Y13764D02*X1057Y13772D01* X1032Y13797D01* X1004Y13820D01* X974Y13840D01* X942Y13858D01* X909Y13873D01* X884Y13881D01* Y15125D01* X896Y15129D01* X928Y15144D01* X960Y15162D01* X989Y15183D01* X1017Y15207D01* X1042Y15232D01* X1064Y15259D01* Y13764D01* G37* G36* Y15450D02*X1061Y15449D01* X1053Y15445D01* X1046Y15439D01* X1040Y15433D01* X1036Y15425D01* X1033Y15417D01* X1024Y15391D01* X1013Y15366D01* X1000Y15343D01* X985Y15320D01* X968Y15299D01* X949Y15280D01* X928Y15262D01* X906Y15247D01* X884Y15234D01* Y15765D01* X901Y15755D01* X924Y15740D01* X945Y15723D01* X964Y15704D01* X982Y15683D01* X997Y15661D01* X1011Y15637D01* X1022Y15613D01* X1031Y15587D01* X1035Y15579D01* X1039Y15572D01* X1045Y15565D01* X1052Y15560D01* X1060Y15556D01* X1064Y15555D01* Y15450D01* G37* G36* Y15740D02*X1061Y15744D01* X1037Y15772D01* X1012Y15797D01* X984Y15820D01* X954Y15840D01* X922Y15858D01* X889Y15873D01* X884Y15874D01* Y17133D01* X908Y17144D01* X940Y17162D01* X969Y17183D01* X997Y17207D01* X1022Y17232D01* X1045Y17260D01* X1064Y17288D01* Y15740D01* G37* G36* Y17453D02*X1057Y17453D01* X1049Y17452D01* X1041Y17449D01* X1033Y17445D01* X1026Y17439D01* X1020Y17433D01* X1016Y17425D01* X1013Y17417D01* X1004Y17391D01* X993Y17366D01* X980Y17343D01* X965Y17320D01* X948Y17299D01* X929Y17280D01* X908Y17262D01* X886Y17247D01* X884Y17246D01* Y17754D01* X904Y17740D01* X925Y17723D01* X944Y17704D01* X962Y17683D01* X977Y17661D01* X991Y17637D01* X1002Y17613D01* X1011Y17587D01* X1015Y17579D01* X1019Y17572D01* X1025Y17565D01* X1032Y17560D01* X1040Y17556D01* X1048Y17553D01* X1057Y17552D01* X1064Y17552D01* Y17453D01* G37* G36* Y17711D02*X1062Y17715D01* X1041Y17744D01* X1017Y17772D01* X992Y17797D01* X964Y17820D01* X934Y17840D01* X902Y17858D01* X884Y17866D01* Y19142D01* X888Y19144D01* X920Y19162D01* X949Y19183D01* X977Y19207D01* X1002Y19232D01* X1025Y19260D01* X1045Y19290D01* X1063Y19322D01* X1064Y19324D01* Y17711D01* G37* G36* Y19447D02*X1063Y19448D01* X1055Y19451D01* X1046Y19453D01* X1037Y19453D01* X1029Y19452D01* X1021Y19449D01* X1013Y19445D01* X1006Y19439D01* X1000Y19433D01* X996Y19425D01* X993Y19417D01* X984Y19391D01* X973Y19366D01* X960Y19343D01* X945Y19320D01* X928Y19299D01* X909Y19280D01* X888Y19262D01* X884Y19259D01* Y19740D01* X905Y19723D01* X924Y19704D01* X942Y19683D01* X957Y19661D01* X971Y19637D01* X982Y19613D01* X991Y19587D01* X995Y19579D01* X999Y19572D01* X1005Y19565D01* X1012Y19560D01* X1020Y19556D01* X1028Y19553D01* X1037Y19552D01* X1045Y19552D01* X1054Y19554D01* X1062Y19557D01* X1064Y19559D01* Y19447D01* G37* G36* Y19674D02*X1060Y19683D01* X1042Y19715D01* X1021Y19744D01* X997Y19772D01* X972Y19797D01* X944Y19820D01* X914Y19840D01* X884Y19857D01* Y21153D01* X900Y21162D01* X929Y21183D01* X957Y21207D01* X982Y21232D01* X1005Y21260D01* X1025Y21290D01* X1043Y21322D01* X1057Y21355D01* X1064Y21374D01* Y19674D01* G37* G36* Y21428D02*X1062Y21431D01* X1057Y21438D01* X1050Y21444D01* X1043Y21448D01* X1035Y21451D01* X1026Y21453D01* X1017Y21453D01* X1009Y21452D01* X1001Y21449D01* X993Y21445D01* X986Y21439D01* X980Y21433D01* X976Y21425D01* X973Y21417D01* X964Y21391D01* X953Y21366D01* X940Y21343D01* X925Y21320D01* X908Y21299D01* X889Y21280D01* X884Y21276D01* Y21724D01* X885Y21723D01* X904Y21704D01* X922Y21683D01* X937Y21661D01* X951Y21637D01* X962Y21613D01* X971Y21587D01* X975Y21579D01* X979Y21572D01* X985Y21565D01* X992Y21560D01* X1000Y21556D01* X1008Y21553D01* X1017Y21552D01* X1025Y21552D01* X1034Y21554D01* X1042Y21557D01* X1049Y21562D01* X1056Y21568D01* X1061Y21575D01* X1064Y21580D01* Y21428D01* G37* G36* Y40000D02*X2325D01* Y39857D01* X2321Y39855D01* X2289Y39837D01* X2260Y39816D01* X2232Y39793D01* X2207Y39767D01* X2184Y39739D01* X2164Y39709D01* X2146Y39677D01* X2132Y39644D01* X2120Y39610D01* X2118Y39601D01* X2118Y39593D01* X2119Y39584D01* X2122Y39576D01* X2127Y39568D01* X2132Y39561D01* X2139Y39556D01* X2146Y39551D01* X2154Y39548D01* X2163Y39546D01* X2172Y39546D01* X2180Y39547D01* X2188Y39550D01* X2196Y39555D01* X2203Y39560D01* X2209Y39567D01* X2213Y39574D01* X2216Y39582D01* X2225Y39608D01* X2236Y39633D01* X2249Y39657D01* X2264Y39679D01* X2281Y39700D01* X2300Y39719D01* X2321Y39737D01* X2325Y39740D01* Y39259D01* X2325Y39259D01* X2304Y39276D01* X2285Y39295D01* X2267Y39316D01* X2252Y39338D01* X2238Y39362D01* X2227Y39386D01* X2218Y39412D01* X2214Y39420D01* X2210Y39427D01* X2204Y39434D01* X2197Y39439D01* X2189Y39443D01* X2181Y39446D01* X2172Y39447D01* X2164Y39447D01* X2155Y39445D01* X2147Y39442D01* X2140Y39437D01* X2133Y39431D01* X2128Y39424D01* X2124Y39417D01* X2121Y39409D01* X2120Y39400D01* X2120Y39391D01* X2122Y39383D01* X2134Y39349D01* X2149Y39316D01* X2167Y39284D01* X2188Y39255D01* X2212Y39227D01* X2237Y39202D01* X2265Y39179D01* X2295Y39159D01* X2325Y39142D01* Y37846D01* X2309Y37837D01* X2280Y37816D01* X2252Y37793D01* X2227Y37767D01* X2204Y37739D01* X2184Y37709D01* X2166Y37677D01* X2152Y37644D01* X2140Y37610D01* X2138Y37601D01* X2138Y37593D01* X2139Y37584D01* X2142Y37576D01* X2147Y37568D01* X2152Y37561D01* X2159Y37556D01* X2166Y37551D01* X2174Y37548D01* X2183Y37546D01* X2192Y37546D01* X2200Y37547D01* X2208Y37550D01* X2216Y37555D01* X2223Y37560D01* X2229Y37567D01* X2233Y37574D01* X2236Y37582D01* X2245Y37608D01* X2256Y37633D01* X2269Y37657D01* X2284Y37679D01* X2301Y37700D01* X2320Y37719D01* X2325Y37723D01* Y37276D01* X2324Y37276D01* X2305Y37295D01* X2287Y37316D01* X2272Y37338D01* X2258Y37362D01* X2247Y37386D01* X2238Y37412D01* X2234Y37420D01* X2230Y37427D01* X2224Y37434D01* X2217Y37439D01* X2209Y37443D01* X2201Y37446D01* X2192Y37447D01* X2184Y37447D01* X2175Y37445D01* X2167Y37442D01* X2160Y37437D01* X2153Y37431D01* X2148Y37424D01* X2144Y37417D01* X2141Y37409D01* X2140Y37400D01* X2140Y37391D01* X2142Y37383D01* X2154Y37349D01* X2169Y37316D01* X2187Y37284D01* X2208Y37255D01* X2232Y37227D01* X2257Y37202D01* X2285Y37179D01* X2315Y37159D01* X2325Y37153D01* Y35834D01* X2300Y35816D01* X2272Y35793D01* X2247Y35767D01* X2224Y35739D01* X2204Y35709D01* X2186Y35677D01* X2172Y35644D01* X2160Y35610D01* X2158Y35601D01* X2158Y35593D01* X2159Y35584D01* X2162Y35576D01* X2167Y35568D01* X2172Y35561D01* X2179Y35556D01* X2186Y35551D01* X2194Y35548D01* X2203Y35546D01* X2212Y35546D01* X2220Y35547D01* X2228Y35550D01* X2236Y35555D01* X2243Y35560D01* X2249Y35567D01* X2253Y35574D01* X2256Y35582D01* X2265Y35608D01* X2276Y35633D01* X2289Y35657D01* X2304Y35679D01* X2321Y35700D01* X2325Y35704D01* Y35295D01* X2325Y35295D01* X2307Y35316D01* X2292Y35338D01* X2278Y35362D01* X2267Y35386D01* X2258Y35412D01* X2254Y35420D01* X2250Y35427D01* X2244Y35434D01* X2237Y35439D01* X2229Y35443D01* X2221Y35446D01* X2212Y35447D01* X2204Y35447D01* X2195Y35445D01* X2187Y35442D01* X2180Y35437D01* X2173Y35431D01* X2168Y35424D01* X2164Y35417D01* X2161Y35409D01* X2160Y35400D01* X2160Y35391D01* X2162Y35383D01* X2174Y35349D01* X2189Y35316D01* X2207Y35284D01* X2228Y35255D01* X2252Y35227D01* X2277Y35202D01* X2305Y35179D01* X2325Y35166D01* Y33820D01* X2320Y33816D01* X2292Y33793D01* X2267Y33767D01* X2244Y33739D01* X2224Y33709D01* X2206Y33677D01* X2192Y33644D01* X2180Y33610D01* X2178Y33601D01* X2178Y33593D01* X2179Y33584D01* X2182Y33576D01* X2187Y33568D01* X2192Y33561D01* X2199Y33556D01* X2206Y33551D01* X2214Y33548D01* X2223Y33546D01* X2232Y33546D01* X2240Y33547D01* X2248Y33550D01* X2256Y33555D01* X2263Y33560D01* X2269Y33567D01* X2273Y33574D01* X2276Y33582D01* X2285Y33608D01* X2296Y33633D01* X2309Y33657D01* X2324Y33679D01* X2325Y33680D01* Y33319D01* X2312Y33338D01* X2298Y33362D01* X2287Y33386D01* X2278Y33412D01* X2274Y33420D01* X2270Y33427D01* X2264Y33434D01* X2257Y33439D01* X2249Y33443D01* X2241Y33446D01* X2232Y33447D01* X2224Y33447D01* X2215Y33445D01* X2207Y33442D01* X2200Y33437D01* X2193Y33431D01* X2188Y33424D01* X2184Y33417D01* X2181Y33409D01* X2180Y33400D01* X2180Y33391D01* X2182Y33383D01* X2194Y33349D01* X2209Y33316D01* X2227Y33284D01* X2248Y33255D01* X2272Y33227D01* X2297Y33202D01* X2325Y33179D01* Y31804D01* X2312Y31793D01* X2287Y31767D01* X2264Y31739D01* X2244Y31709D01* X2226Y31677D01* X2212Y31644D01* X2200Y31610D01* X2198Y31601D01* X2198Y31593D01* X2199Y31584D01* X2202Y31576D01* X2207Y31568D01* X2212Y31561D01* X2219Y31556D01* X2226Y31551D01* X2234Y31548D01* X2243Y31546D01* X2252Y31546D01* X2260Y31547D01* X2268Y31550D01* X2276Y31555D01* X2283Y31560D01* X2289Y31567D01* X2293Y31574D01* X2296Y31582D01* X2305Y31608D01* X2316Y31633D01* X2325Y31650D01* Y31349D01* X2318Y31362D01* X2307Y31386D01* X2298Y31412D01* X2294Y31420D01* X2290Y31427D01* X2284Y31434D01* X2277Y31439D01* X2269Y31443D01* X2261Y31446D01* X2252Y31447D01* X2244Y31447D01* X2235Y31445D01* X2227Y31442D01* X2220Y31437D01* X2213Y31431D01* X2208Y31424D01* X2204Y31417D01* X2201Y31409D01* X2200Y31400D01* X2200Y31391D01* X2202Y31383D01* X2214Y31349D01* X2229Y31316D01* X2247Y31284D01* X2268Y31255D01* X2292Y31227D01* X2317Y31202D01* X2325Y31196D01* Y29785D01* X2307Y29767D01* X2284Y29739D01* X2264Y29709D01* X2246Y29677D01* X2232Y29644D01* X2220Y29610D01* X2218Y29601D01* X2218Y29593D01* X2219Y29584D01* X2222Y29576D01* X2227Y29568D01* X2232Y29561D01* X2239Y29556D01* X2246Y29551D01* X2254Y29548D01* X2263Y29546D01* X2272Y29546D01* X2280Y29547D01* X2288Y29550D01* X2296Y29555D01* X2303Y29560D01* X2309Y29567D01* X2313Y29574D01* X2316Y29582D01* X2325Y29608D01* X2325Y29609D01* Y29391D01* X2318Y29412D01* X2314Y29420D01* X2310Y29427D01* X2304Y29434D01* X2297Y29439D01* X2289Y29443D01* X2281Y29446D01* X2272Y29447D01* X2264Y29447D01* X2255Y29445D01* X2247Y29442D01* X2240Y29437D01* X2233Y29431D01* X2228Y29424D01* X2224Y29417D01* X2221Y29409D01* X2220Y29400D01* X2220Y29391D01* X2222Y29383D01* X2234Y29349D01* X2249Y29316D01* X2267Y29284D01* X2288Y29255D01* X2312Y29227D01* X2325Y29214D01* Y27765D01* X2304Y27739D01* X2284Y27709D01* X2266Y27677D01* X2252Y27644D01* X2240Y27610D01* X2238Y27601D01* X2238Y27593D01* X2239Y27584D01* X2242Y27576D01* X2247Y27568D01* X2252Y27561D01* X2259Y27556D01* X2266Y27551D01* X2274Y27548D01* X2283Y27546D01* X2292Y27546D01* X2300Y27547D01* X2308Y27550D01* X2316Y27555D01* X2323Y27560D01* X2325Y27563D01* Y27432D01* X2324Y27434D01* X2317Y27439D01* X2309Y27443D01* X2301Y27446D01* X2292Y27447D01* X2284Y27447D01* X2275Y27445D01* X2267Y27442D01* X2260Y27437D01* X2253Y27431D01* X2248Y27424D01* X2244Y27417D01* X2241Y27409D01* X2240Y27400D01* X2240Y27391D01* X2242Y27383D01* X2254Y27349D01* X2269Y27316D01* X2287Y27284D01* X2308Y27255D01* X2325Y27235D01* Y25740D01* X2324Y25739D01* X2304Y25709D01* X2286Y25677D01* X2272Y25644D01* X2260Y25610D01* X2258Y25601D01* X2258Y25593D01* X2259Y25584D01* X2262Y25576D01* X2267Y25568D01* X2272Y25561D01* X2279Y25556D01* X2286Y25551D01* X2294Y25548D01* X2303Y25546D01* X2312Y25546D01* X2320Y25547D01* X2325Y25549D01* Y25445D01* X2321Y25446D01* X2312Y25447D01* X2304Y25447D01* X2295Y25445D01* X2287Y25442D01* X2280Y25437D01* X2273Y25431D01* X2268Y25424D01* X2264Y25417D01* X2261Y25409D01* X2260Y25400D01* X2260Y25391D01* X2262Y25383D01* X2274Y25349D01* X2289Y25316D01* X2307Y25284D01* X2325Y25259D01* Y23711D01* X2324Y23709D01* X2306Y23677D01* X2292Y23644D01* X2280Y23610D01* X2278Y23601D01* X2278Y23593D01* X2279Y23584D01* X2282Y23576D01* X2287Y23568D01* X2292Y23561D01* X2299Y23556D01* X2306Y23551D01* X2314Y23548D01* X2323Y23546D01* X2325D01* Y23447D01* X2324Y23447D01* X2315Y23445D01* X2307Y23442D01* X2300Y23437D01* X2293Y23431D01* X2288Y23424D01* X2284Y23417D01* X2281Y23409D01* X2280Y23400D01* X2280Y23391D01* X2282Y23383D01* X2294Y23349D01* X2309Y23316D01* X2325Y23288D01* Y21675D01* X2312Y21644D01* X2300Y21610D01* X2298Y21601D01* X2298Y21593D01* X2299Y21584D01* X2302Y21576D01* X2307Y21568D01* X2312Y21561D01* X2319Y21556D01* X2325Y21552D01* Y21441D01* X2320Y21437D01* X2313Y21431D01* X2308Y21424D01* X2304Y21417D01* X2301Y21409D01* X2300Y21400D01* X2300Y21391D01* X2302Y21383D01* X2314Y21349D01* X2325Y21325D01* Y19625D01* X2320Y19610D01* X2318Y19601D01* X2318Y19593D01* X2319Y19584D01* X2322Y19576D01* X2325Y19571D01* Y19419D01* X2324Y19417D01* X2321Y19409D01* X2320Y19400D01* X2320Y19391D01* X2322Y19383D01* X2325Y19374D01* Y0D01* X1064D01* Y1142D01* X1068Y1144D01* X1100Y1162D01* X1129Y1183D01* X1157Y1207D01* X1182Y1232D01* X1205Y1260D01* X1225Y1290D01* X1243Y1322D01* X1257Y1355D01* X1269Y1389D01* X1271Y1398D01* X1271Y1407D01* X1270Y1415D01* X1267Y1423D01* X1262Y1431D01* X1257Y1438D01* X1250Y1444D01* X1243Y1448D01* X1235Y1451D01* X1226Y1453D01* X1217Y1453D01* X1209Y1452D01* X1201Y1449D01* X1193Y1445D01* X1186Y1439D01* X1180Y1433D01* X1176Y1425D01* X1173Y1417D01* X1164Y1391D01* X1153Y1366D01* X1140Y1343D01* X1125Y1320D01* X1108Y1299D01* X1089Y1280D01* X1068Y1262D01* X1064Y1259D01* Y1740D01* X1085Y1723D01* X1104Y1704D01* X1122Y1683D01* X1137Y1661D01* X1151Y1637D01* X1162Y1613D01* X1171Y1587D01* X1175Y1579D01* X1179Y1572D01* X1185Y1565D01* X1192Y1560D01* X1200Y1556D01* X1208Y1553D01* X1217Y1552D01* X1225Y1552D01* X1234Y1554D01* X1242Y1557D01* X1249Y1562D01* X1256Y1568D01* X1261Y1575D01* X1265Y1582D01* X1268Y1591D01* X1269Y1599D01* X1269Y1608D01* X1267Y1617D01* X1255Y1651D01* X1240Y1683D01* X1222Y1715D01* X1201Y1744D01* X1177Y1772D01* X1152Y1797D01* X1124Y1820D01* X1094Y1840D01* X1064Y1857D01* Y3153D01* X1080Y3162D01* X1109Y3183D01* X1137Y3207D01* X1162Y3232D01* X1185Y3260D01* X1205Y3290D01* X1223Y3322D01* X1237Y3355D01* X1249Y3389D01* X1251Y3398D01* X1251Y3407D01* X1250Y3415D01* X1247Y3423D01* X1242Y3431D01* X1237Y3438D01* X1230Y3444D01* X1223Y3448D01* X1215Y3451D01* X1206Y3453D01* X1197Y3453D01* X1189Y3452D01* X1181Y3449D01* X1173Y3445D01* X1166Y3439D01* X1160Y3433D01* X1156Y3425D01* X1153Y3417D01* X1144Y3391D01* X1133Y3366D01* X1120Y3343D01* X1105Y3320D01* X1088Y3299D01* X1069Y3280D01* X1064Y3276D01* Y3724D01* X1065Y3723D01* X1084Y3704D01* X1102Y3683D01* X1117Y3661D01* X1131Y3637D01* X1142Y3613D01* X1151Y3587D01* X1155Y3579D01* X1159Y3572D01* X1165Y3565D01* X1172Y3560D01* X1180Y3556D01* X1188Y3553D01* X1197Y3552D01* X1205Y3552D01* X1214Y3554D01* X1222Y3557D01* X1229Y3562D01* X1236Y3568D01* X1241Y3575D01* X1245Y3582D01* X1248Y3591D01* X1249Y3599D01* X1249Y3608D01* X1247Y3617D01* X1235Y3651D01* X1220Y3683D01* X1202Y3715D01* X1181Y3744D01* X1157Y3772D01* X1132Y3797D01* X1104Y3820D01* X1074Y3840D01* X1064Y3846D01* Y5165D01* X1089Y5183D01* X1117Y5207D01* X1142Y5232D01* X1165Y5260D01* X1185Y5290D01* X1203Y5322D01* X1217Y5355D01* X1229Y5389D01* X1231Y5398D01* X1231Y5407D01* X1230Y5415D01* X1227Y5423D01* X1222Y5431D01* X1217Y5438D01* X1210Y5444D01* X1203Y5448D01* X1195Y5451D01* X1186Y5453D01* X1177Y5453D01* X1169Y5452D01* X1161Y5449D01* X1153Y5445D01* X1146Y5439D01* X1140Y5433D01* X1136Y5425D01* X1133Y5417D01* X1124Y5391D01* X1113Y5366D01* X1100Y5343D01* X1085Y5320D01* X1068Y5299D01* X1064Y5295D01* Y5704D01* X1064Y5704D01* X1082Y5683D01* X1097Y5661D01* X1111Y5637D01* X1122Y5613D01* X1131Y5587D01* X1135Y5579D01* X1139Y5572D01* X1145Y5565D01* X1152Y5560D01* X1160Y5556D01* X1168Y5553D01* X1177Y5552D01* X1185Y5552D01* X1194Y5554D01* X1202Y5557D01* X1209Y5562D01* X1216Y5568D01* X1221Y5575D01* X1225Y5582D01* X1228Y5591D01* X1229Y5599D01* X1229Y5608D01* X1227Y5617D01* X1215Y5651D01* X1200Y5683D01* X1182Y5715D01* X1161Y5744D01* X1137Y5772D01* X1112Y5797D01* X1084Y5820D01* X1064Y5834D01* Y7180D01* X1069Y7183D01* X1097Y7207D01* X1122Y7232D01* X1145Y7260D01* X1165Y7290D01* X1183Y7322D01* X1197Y7355D01* X1209Y7389D01* X1211Y7398D01* X1211Y7407D01* X1210Y7415D01* X1207Y7423D01* X1202Y7431D01* X1197Y7438D01* X1190Y7444D01* X1183Y7448D01* X1175Y7451D01* X1166Y7453D01* X1157Y7453D01* X1149Y7452D01* X1141Y7449D01* X1133Y7445D01* X1126Y7439D01* X1120Y7433D01* X1116Y7425D01* X1113Y7417D01* X1104Y7391D01* X1093Y7366D01* X1080Y7343D01* X1065Y7320D01* X1064Y7319D01* Y7680D01* X1077Y7661D01* X1091Y7637D01* X1102Y7613D01* X1111Y7587D01* X1115Y7579D01* X1119Y7572D01* X1125Y7565D01* X1132Y7560D01* X1140Y7556D01* X1148Y7553D01* X1157Y7552D01* X1165Y7552D01* X1174Y7554D01* X1182Y7557D01* X1189Y7562D01* X1196Y7568D01* X1201Y7575D01* X1205Y7582D01* X1208Y7591D01* X1209Y7599D01* X1209Y7608D01* X1207Y7617D01* X1195Y7651D01* X1180Y7683D01* X1162Y7715D01* X1141Y7744D01* X1117Y7772D01* X1092Y7797D01* X1064Y7820D01* Y9196D01* X1077Y9207D01* X1102Y9232D01* X1125Y9260D01* X1145Y9290D01* X1163Y9322D01* X1177Y9355D01* X1189Y9389D01* X1191Y9398D01* X1191Y9407D01* X1190Y9415D01* X1187Y9423D01* X1182Y9431D01* X1177Y9438D01* X1170Y9444D01* X1163Y9448D01* X1155Y9451D01* X1146Y9453D01* X1137Y9453D01* X1129Y9452D01* X1121Y9449D01* X1113Y9445D01* X1106Y9439D01* X1100Y9433D01* X1096Y9425D01* X1093Y9417D01* X1084Y9391D01* X1073Y9366D01* X1064Y9350D01* Y9650D01* X1071Y9637D01* X1082Y9613D01* X1091Y9587D01* X1095Y9579D01* X1099Y9572D01* X1105Y9565D01* X1112Y9560D01* X1120Y9556D01* X1128Y9553D01* X1137Y9552D01* X1145Y9552D01* X1154Y9554D01* X1162Y9557D01* X1169Y9562D01* X1176Y9568D01* X1181Y9575D01* X1185Y9582D01* X1188Y9591D01* X1189Y9599D01* X1189Y9608D01* X1187Y9617D01* X1175Y9651D01* X1160Y9683D01* X1142Y9715D01* X1121Y9744D01* X1097Y9772D01* X1072Y9797D01* X1064Y9804D01* Y11214D01* X1082Y11232D01* X1105Y11260D01* X1125Y11290D01* X1143Y11322D01* X1157Y11355D01* X1169Y11389D01* X1171Y11398D01* X1171Y11407D01* X1170Y11415D01* X1167Y11423D01* X1162Y11431D01* X1157Y11438D01* X1150Y11444D01* X1143Y11448D01* X1135Y11451D01* X1126Y11453D01* X1117Y11453D01* X1109Y11452D01* X1101Y11449D01* X1093Y11445D01* X1086Y11439D01* X1080Y11433D01* X1076Y11425D01* X1073Y11417D01* X1064Y11391D01* X1064Y11391D01* Y11608D01* X1071Y11587D01* X1075Y11579D01* X1079Y11572D01* X1085Y11565D01* X1092Y11560D01* X1100Y11556D01* X1108Y11553D01* X1117Y11552D01* X1125Y11552D01* X1134Y11554D01* X1142Y11557D01* X1149Y11562D01* X1156Y11568D01* X1161Y11575D01* X1165Y11582D01* X1168Y11591D01* X1169Y11599D01* X1169Y11608D01* X1167Y11617D01* X1155Y11651D01* X1140Y11683D01* X1122Y11715D01* X1101Y11744D01* X1077Y11772D01* X1064Y11785D01* Y13235D01* X1085Y13260D01* X1105Y13290D01* X1123Y13322D01* X1137Y13355D01* X1149Y13389D01* X1151Y13398D01* X1151Y13407D01* X1150Y13415D01* X1147Y13423D01* X1142Y13431D01* X1137Y13438D01* X1130Y13444D01* X1123Y13448D01* X1115Y13451D01* X1106Y13453D01* X1097Y13453D01* X1089Y13452D01* X1081Y13449D01* X1073Y13445D01* X1066Y13439D01* X1064Y13437D01* Y13567D01* X1065Y13565D01* X1072Y13560D01* X1080Y13556D01* X1088Y13553D01* X1097Y13552D01* X1105Y13552D01* X1114Y13554D01* X1122Y13557D01* X1129Y13562D01* X1136Y13568D01* X1141Y13575D01* X1145Y13582D01* X1148Y13591D01* X1149Y13599D01* X1149Y13608D01* X1147Y13617D01* X1135Y13651D01* X1120Y13683D01* X1102Y13715D01* X1081Y13744D01* X1064Y13764D01* Y15259D01* X1065Y15260D01* X1085Y15290D01* X1103Y15322D01* X1117Y15355D01* X1129Y15389D01* X1131Y15398D01* X1131Y15407D01* X1130Y15415D01* X1127Y15423D01* X1122Y15431D01* X1117Y15438D01* X1110Y15444D01* X1103Y15448D01* X1095Y15451D01* X1086Y15453D01* X1077Y15453D01* X1069Y15452D01* X1064Y15450D01* Y15555D01* X1068Y15553D01* X1077Y15552D01* X1085Y15552D01* X1094Y15554D01* X1102Y15557D01* X1109Y15562D01* X1116Y15568D01* X1121Y15575D01* X1125Y15582D01* X1128Y15591D01* X1129Y15599D01* X1129Y15608D01* X1127Y15617D01* X1115Y15651D01* X1100Y15683D01* X1082Y15715D01* X1064Y15740D01* Y17288D01* X1065Y17290D01* X1083Y17322D01* X1097Y17355D01* X1109Y17389D01* X1111Y17398D01* X1111Y17407D01* X1110Y17415D01* X1107Y17423D01* X1102Y17431D01* X1097Y17438D01* X1090Y17444D01* X1083Y17448D01* X1075Y17451D01* X1066Y17453D01* X1064D01* Y17552D01* X1065D01* X1074Y17554D01* X1082Y17557D01* X1089Y17562D01* X1096Y17568D01* X1101Y17575D01* X1105Y17582D01* X1108Y17591D01* X1109Y17599D01* X1109Y17608D01* X1107Y17617D01* X1095Y17651D01* X1080Y17683D01* X1064Y17711D01* Y19324D01* X1077Y19355D01* X1089Y19389D01* X1091Y19398D01* X1091Y19407D01* X1090Y19415D01* X1087Y19423D01* X1082Y19431D01* X1077Y19438D01* X1070Y19444D01* X1064Y19447D01* Y19559D01* X1069Y19562D01* X1076Y19568D01* X1081Y19575D01* X1085Y19582D01* X1088Y19591D01* X1089Y19599D01* X1089Y19608D01* X1087Y19617D01* X1075Y19651D01* X1064Y19674D01* Y21374D01* X1069Y21389D01* X1071Y21398D01* X1071Y21407D01* X1070Y21415D01* X1067Y21423D01* X1064Y21428D01* Y21580D01* X1065Y21582D01* X1068Y21591D01* X1069Y21599D01* X1069Y21608D01* X1067Y21617D01* X1064Y21625D01* Y40000D01* G37* G36* X2325D02*X2505D01* Y33859D01* X2502Y33864D01* X2496Y33871D01* X2489Y33876D01* X2482Y33880D01* X2473Y33883D01* X2465Y33884D01* X2456Y33884D01* X2448Y33882D01* X2413Y33870D01* X2381Y33855D01* X2349Y33837D01* X2325Y33820D01* Y35166D01* X2335Y35159D01* X2367Y35141D01* X2400Y35127D01* X2434Y35115D01* X2443Y35113D01* X2452Y35113D01* X2460Y35115D01* X2468Y35117D01* X2476Y35122D01* X2483Y35127D01* X2489Y35134D01* X2493Y35141D01* X2496Y35149D01* X2498Y35158D01* X2498Y35167D01* X2497Y35175D01* X2494Y35183D01* X2490Y35191D01* X2484Y35198D01* X2477Y35204D01* X2470Y35208D01* X2462Y35211D01* X2436Y35220D01* X2411Y35231D01* X2388Y35244D01* X2365Y35259D01* X2344Y35276D01* X2325Y35295D01* Y35704D01* X2340Y35719D01* X2361Y35737D01* X2383Y35752D01* X2407Y35766D01* X2431Y35777D01* X2457Y35786D01* X2465Y35790D01* X2472Y35794D01* X2479Y35800D01* X2484Y35807D01* X2488Y35815D01* X2491Y35823D01* X2492Y35832D01* X2492Y35840D01* X2490Y35849D01* X2487Y35857D01* X2482Y35864D01* X2476Y35871D01* X2469Y35876D01* X2462Y35880D01* X2453Y35883D01* X2445Y35884D01* X2436Y35884D01* X2428Y35882D01* X2393Y35870D01* X2361Y35855D01* X2329Y35837D01* X2325Y35834D01* Y37153D01* X2347Y37141D01* X2380Y37127D01* X2414Y37115D01* X2423Y37113D01* X2432Y37113D01* X2440Y37115D01* X2448Y37117D01* X2456Y37122D01* X2463Y37127D01* X2469Y37134D01* X2473Y37141D01* X2476Y37149D01* X2478Y37158D01* X2478Y37167D01* X2477Y37175D01* X2474Y37183D01* X2470Y37191D01* X2464Y37198D01* X2457Y37204D01* X2450Y37208D01* X2442Y37211D01* X2416Y37220D01* X2391Y37231D01* X2368Y37244D01* X2345Y37259D01* X2325Y37276D01* Y37723D01* X2341Y37737D01* X2363Y37752D01* X2387Y37766D01* X2411Y37777D01* X2437Y37786D01* X2445Y37790D01* X2452Y37794D01* X2459Y37800D01* X2464Y37807D01* X2468Y37815D01* X2471Y37823D01* X2472Y37832D01* X2472Y37840D01* X2470Y37849D01* X2467Y37857D01* X2462Y37864D01* X2456Y37871D01* X2449Y37876D01* X2442Y37880D01* X2433Y37883D01* X2425Y37884D01* X2416Y37884D01* X2408Y37882D01* X2373Y37870D01* X2341Y37855D01* X2325Y37846D01* Y39142D01* X2327Y39141D01* X2360Y39127D01* X2394Y39115D01* X2403Y39113D01* X2412Y39113D01* X2420Y39115D01* X2428Y39117D01* X2436Y39122D01* X2443Y39127D01* X2449Y39134D01* X2453Y39141D01* X2456Y39149D01* X2458Y39158D01* X2458Y39167D01* X2457Y39175D01* X2454Y39183D01* X2450Y39191D01* X2444Y39198D01* X2437Y39204D01* X2430Y39208D01* X2422Y39211D01* X2396Y39220D01* X2371Y39231D01* X2348Y39244D01* X2325Y39259D01* Y39740D01* X2343Y39752D01* X2367Y39766D01* X2391Y39777D01* X2417Y39786D01* X2425Y39790D01* X2432Y39794D01* X2439Y39800D01* X2444Y39807D01* X2448Y39815D01* X2451Y39823D01* X2452Y39832D01* X2452Y39840D01* X2450Y39849D01* X2447Y39857D01* X2442Y39864D01* X2436Y39871D01* X2429Y39876D01* X2422Y39880D01* X2413Y39883D01* X2405Y39884D01* X2396Y39884D01* X2388Y39882D01* X2353Y39870D01* X2325Y39857D01* Y40000D01* G37* G36* Y33680D02*X2341Y33700D01* X2360Y33719D01* X2381Y33737D01* X2403Y33752D01* X2427Y33766D01* X2451Y33777D01* X2477Y33786D01* X2485Y33790D01* X2492Y33794D01* X2499Y33800D01* X2504Y33807D01* X2505Y33809D01* Y33197D01* X2504Y33198D01* X2497Y33204D01* X2490Y33208D01* X2482Y33211D01* X2456Y33220D01* X2431Y33231D01* X2408Y33244D01* X2385Y33259D01* X2364Y33276D01* X2345Y33295D01* X2327Y33316D01* X2325Y33319D01* Y33680D01* G37* G36* Y33179D02*X2325Y33179D01* X2355Y33159D01* X2387Y33141D01* X2420Y33127D01* X2454Y33115D01* X2463Y33113D01* X2472Y33113D01* X2480Y33115D01* X2488Y33117D01* X2496Y33122D01* X2503Y33127D01* X2505Y33130D01* Y31878D01* X2502Y31880D01* X2493Y31883D01* X2485Y31884D01* X2476Y31884D01* X2468Y31882D01* X2433Y31870D01* X2401Y31855D01* X2369Y31837D01* X2340Y31816D01* X2325Y31804D01* Y33179D01* G37* G36* Y31650D02*X2329Y31657D01* X2344Y31679D01* X2361Y31700D01* X2380Y31719D01* X2401Y31737D01* X2423Y31752D01* X2447Y31766D01* X2471Y31777D01* X2497Y31786D01* X2505Y31790D01* X2505Y31790D01* Y31210D01* X2502Y31211D01* X2476Y31220D01* X2451Y31231D01* X2428Y31244D01* X2405Y31259D01* X2384Y31276D01* X2365Y31295D01* X2347Y31316D01* X2332Y31338D01* X2325Y31349D01* Y31650D01* G37* G36* Y31196D02*X2345Y31179D01* X2375Y31159D01* X2407Y31141D01* X2440Y31127D01* X2474Y31115D01* X2483Y31113D01* X2492Y31113D01* X2500Y31115D01* X2505Y31116D01* Y29884D01* X2505Y29884D01* X2496Y29884D01* X2488Y29882D01* X2453Y29870D01* X2421Y29855D01* X2389Y29837D01* X2360Y29816D01* X2332Y29793D01* X2325Y29785D01* Y31196D01* G37* G36* Y29609D02*X2336Y29633D01* X2349Y29657D01* X2364Y29679D01* X2381Y29700D01* X2400Y29719D01* X2421Y29737D01* X2443Y29752D01* X2467Y29766D01* X2491Y29777D01* X2505Y29782D01* Y29217D01* X2496Y29220D01* X2471Y29231D01* X2448Y29244D01* X2425Y29259D01* X2404Y29276D01* X2385Y29295D01* X2367Y29316D01* X2352Y29338D01* X2338Y29362D01* X2327Y29386D01* X2325Y29391D01* Y29609D01* G37* G36* Y29214D02*X2337Y29202D01* X2365Y29179D01* X2395Y29159D01* X2427Y29141D01* X2460Y29127D01* X2494Y29115D01* X2503Y29113D01* X2505D01* Y27881D01* X2473Y27870D01* X2441Y27855D01* X2409Y27837D01* X2380Y27816D01* X2352Y27793D01* X2327Y27767D01* X2325Y27765D01* Y29214D01* G37* G36* Y27563D02*X2329Y27567D01* X2333Y27574D01* X2336Y27582D01* X2345Y27608D01* X2356Y27633D01* X2369Y27657D01* X2384Y27679D01* X2401Y27700D01* X2420Y27719D01* X2441Y27737D01* X2463Y27752D01* X2487Y27766D01* X2505Y27775D01* Y27225D01* X2491Y27231D01* X2468Y27244D01* X2445Y27259D01* X2424Y27276D01* X2405Y27295D01* X2387Y27316D01* X2372Y27338D01* X2358Y27362D01* X2347Y27386D01* X2338Y27412D01* X2334Y27420D01* X2330Y27427D01* X2325Y27432D01* Y27563D01* G37* G36* Y27235D02*X2332Y27227D01* X2357Y27202D01* X2385Y27179D01* X2415Y27159D01* X2447Y27141D01* X2480Y27127D01* X2505Y27118D01* Y25874D01* X2493Y25870D01* X2461Y25855D01* X2429Y25837D01* X2400Y25816D01* X2372Y25793D01* X2347Y25767D01* X2325Y25740D01* Y27235D01* G37* G36* Y25549D02*X2328Y25550D01* X2336Y25555D01* X2343Y25560D01* X2349Y25567D01* X2353Y25574D01* X2356Y25582D01* X2365Y25608D01* X2376Y25633D01* X2389Y25657D01* X2404Y25679D01* X2421Y25700D01* X2440Y25719D01* X2461Y25737D01* X2483Y25752D01* X2505Y25765D01* Y25234D01* X2488Y25244D01* X2465Y25259D01* X2444Y25276D01* X2425Y25295D01* X2407Y25316D01* X2392Y25338D01* X2378Y25362D01* X2367Y25386D01* X2358Y25412D01* X2354Y25420D01* X2350Y25427D01* X2344Y25434D01* X2337Y25439D01* X2329Y25443D01* X2325Y25445D01* Y25549D01* G37* G36* Y25259D02*X2328Y25255D01* X2352Y25227D01* X2377Y25202D01* X2405Y25179D01* X2435Y25159D01* X2467Y25141D01* X2500Y25127D01* X2505Y25125D01* Y23866D01* X2481Y23855D01* X2449Y23837D01* X2420Y23816D01* X2392Y23793D01* X2367Y23767D01* X2344Y23739D01* X2325Y23711D01* Y25259D01* G37* G36* Y23546D02*X2332Y23546D01* X2340Y23547D01* X2348Y23550D01* X2356Y23555D01* X2363Y23560D01* X2369Y23567D01* X2373Y23574D01* X2376Y23582D01* X2385Y23608D01* X2396Y23633D01* X2409Y23657D01* X2424Y23679D01* X2441Y23700D01* X2460Y23719D01* X2481Y23737D01* X2503Y23752D01* X2505Y23754D01* Y23246D01* X2485Y23259D01* X2464Y23276D01* X2445Y23295D01* X2427Y23316D01* X2412Y23338D01* X2398Y23362D01* X2387Y23386D01* X2378Y23412D01* X2374Y23420D01* X2370Y23427D01* X2364Y23434D01* X2357Y23439D01* X2349Y23443D01* X2341Y23446D01* X2332Y23447D01* X2325Y23447D01* Y23546D01* G37* G36* Y23288D02*X2327Y23284D01* X2348Y23255D01* X2372Y23227D01* X2397Y23202D01* X2425Y23179D01* X2455Y23159D01* X2487Y23141D01* X2505Y23133D01* Y21857D01* X2501Y21855D01* X2469Y21837D01* X2440Y21816D01* X2412Y21793D01* X2387Y21767D01* X2364Y21739D01* X2344Y21709D01* X2326Y21677D01* X2325Y21675D01* Y23288D01* G37* G36* Y21552D02*X2326Y21551D01* X2334Y21548D01* X2343Y21546D01* X2352Y21546D01* X2360Y21547D01* X2368Y21550D01* X2376Y21555D01* X2383Y21560D01* X2389Y21567D01* X2393Y21574D01* X2396Y21582D01* X2405Y21608D01* X2416Y21633D01* X2429Y21657D01* X2444Y21679D01* X2461Y21700D01* X2480Y21719D01* X2501Y21737D01* X2505Y21740D01* Y21259D01* X2505Y21259D01* X2484Y21276D01* X2465Y21295D01* X2447Y21316D01* X2432Y21338D01* X2418Y21362D01* X2407Y21386D01* X2398Y21412D01* X2394Y21420D01* X2390Y21427D01* X2384Y21434D01* X2377Y21439D01* X2369Y21443D01* X2361Y21446D01* X2352Y21447D01* X2344Y21447D01* X2335Y21445D01* X2327Y21442D01* X2325Y21441D01* Y21552D01* G37* G36* Y21325D02*X2329Y21316D01* X2347Y21284D01* X2368Y21255D01* X2392Y21227D01* X2417Y21202D01* X2445Y21179D01* X2475Y21159D01* X2505Y21142D01* Y19846D01* X2489Y19837D01* X2460Y19816D01* X2432Y19793D01* X2407Y19767D01* X2384Y19739D01* X2364Y19709D01* X2346Y19677D01* X2332Y19644D01* X2325Y19625D01* Y21325D01* G37* G36* Y19571D02*X2327Y19568D01* X2332Y19561D01* X2339Y19556D01* X2346Y19551D01* X2354Y19548D01* X2363Y19546D01* X2372Y19546D01* X2380Y19547D01* X2388Y19550D01* X2396Y19555D01* X2403Y19560D01* X2409Y19567D01* X2413Y19574D01* X2416Y19582D01* X2425Y19608D01* X2436Y19633D01* X2449Y19657D01* X2464Y19679D01* X2481Y19700D01* X2500Y19719D01* X2505Y19723D01* Y19276D01* X2504Y19276D01* X2485Y19295D01* X2467Y19316D01* X2452Y19338D01* X2438Y19362D01* X2427Y19386D01* X2418Y19412D01* X2414Y19420D01* X2410Y19427D01* X2404Y19434D01* X2397Y19439D01* X2389Y19443D01* X2381Y19446D01* X2372Y19447D01* X2364Y19447D01* X2355Y19445D01* X2347Y19442D01* X2340Y19437D01* X2333Y19431D01* X2328Y19424D01* X2325Y19419D01* Y19571D01* G37* G36* Y19374D02*X2334Y19349D01* X2349Y19316D01* X2367Y19284D01* X2388Y19255D01* X2412Y19227D01* X2437Y19202D01* X2465Y19179D01* X2495Y19159D01* X2505Y19153D01* Y17834D01* X2480Y17816D01* X2452Y17793D01* X2427Y17767D01* X2404Y17739D01* X2384Y17709D01* X2366Y17677D01* X2352Y17644D01* X2340Y17610D01* X2338Y17601D01* X2338Y17593D01* X2339Y17584D01* X2342Y17576D01* X2347Y17568D01* X2352Y17561D01* X2359Y17556D01* X2366Y17551D01* X2374Y17548D01* X2383Y17546D01* X2392Y17546D01* X2400Y17547D01* X2408Y17550D01* X2416Y17555D01* X2423Y17560D01* X2429Y17567D01* X2433Y17574D01* X2436Y17582D01* X2445Y17608D01* X2456Y17633D01* X2469Y17657D01* X2484Y17679D01* X2501Y17700D01* X2505Y17704D01* Y17295D01* X2505Y17295D01* X2487Y17316D01* X2472Y17338D01* X2458Y17362D01* X2447Y17386D01* X2438Y17412D01* X2434Y17420D01* X2430Y17427D01* X2424Y17434D01* X2417Y17439D01* X2409Y17443D01* X2401Y17446D01* X2392Y17447D01* X2384Y17447D01* X2375Y17445D01* X2367Y17442D01* X2360Y17437D01* X2353Y17431D01* X2348Y17424D01* X2344Y17417D01* X2341Y17409D01* X2340Y17400D01* X2340Y17391D01* X2342Y17383D01* X2354Y17349D01* X2369Y17316D01* X2387Y17284D01* X2408Y17255D01* X2432Y17227D01* X2457Y17202D01* X2485Y17179D01* X2505Y17166D01* Y15820D01* X2500Y15816D01* X2472Y15793D01* X2447Y15767D01* X2424Y15739D01* X2404Y15709D01* X2386Y15677D01* X2372Y15644D01* X2360Y15610D01* X2358Y15601D01* X2358Y15593D01* X2359Y15584D01* X2362Y15576D01* X2367Y15568D01* X2372Y15561D01* X2379Y15556D01* X2386Y15551D01* X2394Y15548D01* X2403Y15546D01* X2412Y15546D01* X2420Y15547D01* X2428Y15550D01* X2436Y15555D01* X2443Y15560D01* X2449Y15567D01* X2453Y15574D01* X2456Y15582D01* X2465Y15608D01* X2476Y15633D01* X2489Y15657D01* X2504Y15679D01* X2505Y15680D01* Y15319D01* X2492Y15338D01* X2478Y15362D01* X2467Y15386D01* X2458Y15412D01* X2454Y15420D01* X2450Y15427D01* X2444Y15434D01* X2437Y15439D01* X2429Y15443D01* X2421Y15446D01* X2412Y15447D01* X2404Y15447D01* X2395Y15445D01* X2387Y15442D01* X2380Y15437D01* X2373Y15431D01* X2368Y15424D01* X2364Y15417D01* X2361Y15409D01* X2360Y15400D01* X2360Y15391D01* X2362Y15383D01* X2374Y15349D01* X2389Y15316D01* X2407Y15284D01* X2428Y15255D01* X2452Y15227D01* X2477Y15202D01* X2505Y15179D01* Y13804D01* X2492Y13793D01* X2467Y13767D01* X2444Y13739D01* X2424Y13709D01* X2406Y13677D01* X2392Y13644D01* X2380Y13610D01* X2378Y13601D01* X2378Y13593D01* X2379Y13584D01* X2382Y13576D01* X2387Y13568D01* X2392Y13561D01* X2399Y13556D01* X2406Y13551D01* X2414Y13548D01* X2423Y13546D01* X2432Y13546D01* X2440Y13547D01* X2448Y13550D01* X2456Y13555D01* X2463Y13560D01* X2469Y13567D01* X2473Y13574D01* X2476Y13582D01* X2485Y13608D01* X2496Y13633D01* X2505Y13650D01* Y13349D01* X2498Y13362D01* X2487Y13386D01* X2478Y13412D01* X2474Y13420D01* X2470Y13427D01* X2464Y13434D01* X2457Y13439D01* X2449Y13443D01* X2441Y13446D01* X2432Y13447D01* X2424Y13447D01* X2415Y13445D01* X2407Y13442D01* X2400Y13437D01* X2393Y13431D01* X2388Y13424D01* X2384Y13417D01* X2381Y13409D01* X2380Y13400D01* X2380Y13391D01* X2382Y13383D01* X2394Y13349D01* X2409Y13316D01* X2427Y13284D01* X2448Y13255D01* X2472Y13227D01* X2497Y13202D01* X2505Y13196D01* Y11785D01* X2487Y11767D01* X2464Y11739D01* X2444Y11709D01* X2426Y11677D01* X2412Y11644D01* X2400Y11610D01* X2398Y11601D01* X2398Y11593D01* X2399Y11584D01* X2402Y11576D01* X2407Y11568D01* X2412Y11561D01* X2419Y11556D01* X2426Y11551D01* X2434Y11548D01* X2443Y11546D01* X2452Y11546D01* X2460Y11547D01* X2468Y11550D01* X2476Y11555D01* X2483Y11560D01* X2489Y11567D01* X2493Y11574D01* X2496Y11582D01* X2505Y11608D01* X2505Y11609D01* Y11391D01* X2498Y11412D01* X2494Y11420D01* X2490Y11427D01* X2484Y11434D01* X2477Y11439D01* X2469Y11443D01* X2461Y11446D01* X2452Y11447D01* X2444Y11447D01* X2435Y11445D01* X2427Y11442D01* X2420Y11437D01* X2413Y11431D01* X2408Y11424D01* X2404Y11417D01* X2401Y11409D01* X2400Y11400D01* X2400Y11391D01* X2402Y11383D01* X2414Y11349D01* X2429Y11316D01* X2447Y11284D01* X2468Y11255D01* X2492Y11227D01* X2505Y11214D01* Y9765D01* X2484Y9739D01* X2464Y9709D01* X2446Y9677D01* X2432Y9644D01* X2420Y9610D01* X2418Y9601D01* X2418Y9593D01* X2419Y9584D01* X2422Y9576D01* X2427Y9568D01* X2432Y9561D01* X2439Y9556D01* X2446Y9551D01* X2454Y9548D01* X2463Y9546D01* X2472Y9546D01* X2480Y9547D01* X2488Y9550D01* X2496Y9555D01* X2503Y9560D01* X2505Y9563D01* Y9432D01* X2504Y9434D01* X2497Y9439D01* X2489Y9443D01* X2481Y9446D01* X2472Y9447D01* X2464Y9447D01* X2455Y9445D01* X2447Y9442D01* X2440Y9437D01* X2433Y9431D01* X2428Y9424D01* X2424Y9417D01* X2421Y9409D01* X2420Y9400D01* X2420Y9391D01* X2422Y9383D01* X2434Y9349D01* X2449Y9316D01* X2467Y9284D01* X2488Y9255D01* X2505Y9235D01* Y7740D01* X2504Y7739D01* X2484Y7709D01* X2466Y7677D01* X2452Y7644D01* X2440Y7610D01* X2438Y7601D01* X2438Y7593D01* X2439Y7584D01* X2442Y7576D01* X2447Y7568D01* X2452Y7561D01* X2459Y7556D01* X2466Y7551D01* X2474Y7548D01* X2483Y7546D01* X2492Y7546D01* X2500Y7547D01* X2505Y7549D01* Y7445D01* X2501Y7446D01* X2492Y7447D01* X2484Y7447D01* X2475Y7445D01* X2467Y7442D01* X2460Y7437D01* X2453Y7431D01* X2448Y7424D01* X2444Y7417D01* X2441Y7409D01* X2440Y7400D01* X2440Y7391D01* X2442Y7383D01* X2454Y7349D01* X2469Y7316D01* X2487Y7284D01* X2505Y7259D01* Y5711D01* X2504Y5709D01* X2486Y5677D01* X2472Y5644D01* X2460Y5610D01* X2458Y5601D01* X2458Y5593D01* X2459Y5584D01* X2462Y5576D01* X2467Y5568D01* X2472Y5561D01* X2479Y5556D01* X2486Y5551D01* X2494Y5548D01* X2503Y5546D01* X2505D01* Y5447D01* X2504Y5447D01* X2495Y5445D01* X2487Y5442D01* X2480Y5437D01* X2473Y5431D01* X2468Y5424D01* X2464Y5417D01* X2461Y5409D01* X2460Y5400D01* X2460Y5391D01* X2462Y5383D01* X2474Y5349D01* X2489Y5316D01* X2505Y5288D01* Y3675D01* X2492Y3644D01* X2480Y3610D01* X2478Y3601D01* X2478Y3593D01* X2479Y3584D01* X2482Y3576D01* X2487Y3568D01* X2492Y3561D01* X2499Y3556D01* X2505Y3552D01* Y3441D01* X2500Y3437D01* X2493Y3431D01* X2488Y3424D01* X2484Y3417D01* X2481Y3409D01* X2480Y3400D01* X2480Y3391D01* X2482Y3383D01* X2494Y3349D01* X2505Y3325D01* Y1625D01* X2500Y1610D01* X2498Y1601D01* X2498Y1593D01* X2499Y1584D01* X2502Y1576D01* X2505Y1571D01* Y1419D01* X2504Y1417D01* X2501Y1409D01* X2500Y1400D01* X2500Y1391D01* X2502Y1383D01* X2505Y1374D01* Y0D01* X2325D01* Y19374D01* G37* G36* X2505Y40000D02*X2764D01* Y39804D01* X2744Y39820D01* X2714Y39840D01* X2682Y39858D01* X2649Y39873D01* X2615Y39884D01* X2606Y39886D01* X2597Y39886D01* X2589Y39885D01* X2581Y39882D01* X2573Y39878D01* X2566Y39872D01* X2560Y39865D01* X2556Y39858D01* X2553Y39850D01* X2551Y39841D01* X2551Y39833D01* X2552Y39824D01* X2555Y39816D01* X2559Y39808D01* X2565Y39801D01* X2572Y39796D01* X2579Y39791D01* X2587Y39788D01* X2613Y39779D01* X2638Y39768D01* X2661Y39755D01* X2684Y39740D01* X2705Y39723D01* X2724Y39704D01* X2742Y39683D01* X2757Y39661D01* X2764Y39650D01* Y39350D01* X2760Y39343D01* X2745Y39320D01* X2728Y39299D01* X2709Y39280D01* X2688Y39262D01* X2666Y39247D01* X2642Y39233D01* X2618Y39222D01* X2592Y39213D01* X2584Y39209D01* X2577Y39205D01* X2570Y39199D01* X2565Y39192D01* X2561Y39184D01* X2558Y39176D01* X2557Y39167D01* X2557Y39159D01* X2559Y39150D01* X2562Y39142D01* X2567Y39135D01* X2573Y39128D01* X2580Y39123D01* X2587Y39119D01* X2596Y39116D01* X2604Y39115D01* X2613Y39115D01* X2621Y39117D01* X2656Y39129D01* X2688Y39144D01* X2720Y39162D01* X2749Y39183D01* X2764Y39196D01* Y37820D01* X2764Y37820D01* X2734Y37840D01* X2702Y37858D01* X2669Y37873D01* X2635Y37884D01* X2626Y37886D01* X2617Y37886D01* X2609Y37885D01* X2601Y37882D01* X2593Y37878D01* X2586Y37872D01* X2580Y37865D01* X2576Y37858D01* X2573Y37850D01* X2571Y37841D01* X2571Y37833D01* X2572Y37824D01* X2575Y37816D01* X2579Y37808D01* X2585Y37801D01* X2592Y37796D01* X2599Y37791D01* X2607Y37788D01* X2633Y37779D01* X2658Y37768D01* X2681Y37755D01* X2704Y37740D01* X2725Y37723D01* X2744Y37704D01* X2762Y37683D01* X2764Y37680D01* Y37319D01* X2748Y37299D01* X2729Y37280D01* X2708Y37262D01* X2686Y37247D01* X2662Y37233D01* X2638Y37222D01* X2612Y37213D01* X2604Y37209D01* X2597Y37205D01* X2590Y37199D01* X2585Y37192D01* X2581Y37184D01* X2578Y37176D01* X2577Y37167D01* X2577Y37159D01* X2579Y37150D01* X2582Y37142D01* X2587Y37135D01* X2593Y37128D01* X2600Y37123D01* X2607Y37119D01* X2616Y37116D01* X2624Y37115D01* X2633Y37115D01* X2641Y37117D01* X2676Y37129D01* X2708Y37144D01* X2740Y37162D01* X2764Y37180D01* Y35834D01* X2754Y35840D01* X2722Y35858D01* X2689Y35873D01* X2655Y35884D01* X2646Y35886D01* X2637Y35886D01* X2629Y35885D01* X2621Y35882D01* X2613Y35878D01* X2606Y35872D01* X2600Y35865D01* X2596Y35858D01* X2593Y35850D01* X2591Y35841D01* X2591Y35833D01* X2592Y35824D01* X2595Y35816D01* X2599Y35808D01* X2605Y35801D01* X2612Y35796D01* X2619Y35791D01* X2627Y35788D01* X2653Y35779D01* X2678Y35768D01* X2701Y35755D01* X2724Y35740D01* X2745Y35723D01* X2764Y35704D01* Y35295D01* X2749Y35280D01* X2728Y35262D01* X2706Y35247D01* X2682Y35233D01* X2658Y35222D01* X2632Y35213D01* X2624Y35209D01* X2617Y35205D01* X2610Y35199D01* X2605Y35192D01* X2601Y35184D01* X2598Y35176D01* X2597Y35167D01* X2597Y35159D01* X2599Y35150D01* X2602Y35142D01* X2607Y35135D01* X2613Y35128D01* X2620Y35123D01* X2627Y35119D01* X2636Y35116D01* X2644Y35115D01* X2653Y35115D01* X2661Y35117D01* X2696Y35129D01* X2728Y35144D01* X2760Y35162D01* X2764Y35165D01* Y33846D01* X2742Y33858D01* X2709Y33873D01* X2675Y33884D01* X2666Y33886D01* X2657Y33886D01* X2649Y33885D01* X2641Y33882D01* X2633Y33878D01* X2626Y33872D01* X2620Y33865D01* X2616Y33858D01* X2613Y33850D01* X2611Y33841D01* X2611Y33833D01* X2612Y33824D01* X2615Y33816D01* X2619Y33808D01* X2625Y33801D01* X2632Y33796D01* X2639Y33791D01* X2647Y33788D01* X2673Y33779D01* X2698Y33768D01* X2721Y33755D01* X2744Y33740D01* X2764Y33724D01* Y33276D01* X2748Y33262D01* X2726Y33247D01* X2702Y33233D01* X2678Y33222D01* X2652Y33213D01* X2644Y33209D01* X2637Y33205D01* X2630Y33199D01* X2625Y33192D01* X2621Y33184D01* X2618Y33176D01* X2617Y33167D01* X2617Y33159D01* X2619Y33150D01* X2622Y33142D01* X2627Y33135D01* X2633Y33128D01* X2640Y33123D01* X2647Y33119D01* X2656Y33116D01* X2664Y33115D01* X2673Y33115D01* X2681Y33117D01* X2716Y33129D01* X2748Y33144D01* X2764Y33153D01* Y31857D01* X2762Y31858D01* X2729Y31873D01* X2695Y31884D01* X2686Y31886D01* X2677Y31886D01* X2669Y31885D01* X2661Y31882D01* X2653Y31878D01* X2646Y31872D01* X2640Y31865D01* X2636Y31858D01* X2633Y31850D01* X2631Y31841D01* X2631Y31833D01* X2632Y31824D01* X2635Y31816D01* X2639Y31808D01* X2645Y31801D01* X2652Y31796D01* X2659Y31791D01* X2667Y31788D01* X2693Y31779D01* X2718Y31768D01* X2741Y31755D01* X2764Y31740D01* Y31259D01* X2746Y31247D01* X2722Y31233D01* X2698Y31222D01* X2672Y31213D01* X2664Y31209D01* X2657Y31205D01* X2650Y31199D01* X2645Y31192D01* X2641Y31184D01* X2638Y31176D01* X2637Y31167D01* X2637Y31159D01* X2639Y31150D01* X2642Y31142D01* X2647Y31135D01* X2653Y31128D01* X2660Y31123D01* X2667Y31119D01* X2676Y31116D01* X2684Y31115D01* X2693Y31115D01* X2701Y31117D01* X2736Y31129D01* X2764Y31142D01* Y29866D01* X2749Y29873D01* X2715Y29884D01* X2706Y29886D01* X2697Y29886D01* X2689Y29885D01* X2681Y29882D01* X2673Y29878D01* X2666Y29872D01* X2660Y29865D01* X2656Y29858D01* X2653Y29850D01* X2651Y29841D01* X2651Y29833D01* X2652Y29824D01* X2655Y29816D01* X2659Y29808D01* X2665Y29801D01* X2672Y29796D01* X2679Y29791D01* X2687Y29788D01* X2713Y29779D01* X2738Y29768D01* X2761Y29755D01* X2764Y29754D01* Y29246D01* X2742Y29233D01* X2718Y29222D01* X2692Y29213D01* X2684Y29209D01* X2677Y29205D01* X2670Y29199D01* X2665Y29192D01* X2661Y29184D01* X2658Y29176D01* X2657Y29167D01* X2657Y29159D01* X2659Y29150D01* X2662Y29142D01* X2667Y29135D01* X2673Y29128D01* X2680Y29123D01* X2687Y29119D01* X2696Y29116D01* X2704Y29115D01* X2713Y29115D01* X2721Y29117D01* X2756Y29129D01* X2764Y29133D01* Y27874D01* X2735Y27884D01* X2726Y27886D01* X2717Y27886D01* X2709Y27885D01* X2701Y27882D01* X2693Y27878D01* X2686Y27872D01* X2680Y27865D01* X2676Y27858D01* X2673Y27850D01* X2671Y27841D01* X2671Y27833D01* X2672Y27824D01* X2675Y27816D01* X2679Y27808D01* X2685Y27801D01* X2692Y27796D01* X2699Y27791D01* X2707Y27788D01* X2733Y27779D01* X2758Y27768D01* X2764Y27765D01* Y27234D01* X2762Y27233D01* X2738Y27222D01* X2712Y27213D01* X2704Y27209D01* X2697Y27205D01* X2690Y27199D01* X2685Y27192D01* X2681Y27184D01* X2678Y27176D01* X2677Y27167D01* X2677Y27159D01* X2679Y27150D01* X2682Y27142D01* X2687Y27135D01* X2693Y27128D01* X2700Y27123D01* X2707Y27119D01* X2716Y27116D01* X2724Y27115D01* X2733Y27115D01* X2741Y27117D01* X2764Y27125D01* Y25881D01* X2755Y25884D01* X2746Y25886D01* X2737Y25886D01* X2729Y25885D01* X2721Y25882D01* X2713Y25878D01* X2706Y25872D01* X2700Y25865D01* X2696Y25858D01* X2693Y25850D01* X2691Y25841D01* X2691Y25833D01* X2692Y25824D01* X2695Y25816D01* X2699Y25808D01* X2705Y25801D01* X2712Y25796D01* X2719Y25791D01* X2727Y25788D01* X2753Y25779D01* X2764Y25774D01* Y25225D01* X2758Y25222D01* X2732Y25213D01* X2724Y25209D01* X2717Y25205D01* X2710Y25199D01* X2705Y25192D01* X2701Y25184D01* X2698Y25176D01* X2697Y25167D01* X2697Y25159D01* X2699Y25150D01* X2702Y25142D01* X2707Y25135D01* X2713Y25128D01* X2720Y25123D01* X2727Y25119D01* X2736Y25116D01* X2744Y25115D01* X2753Y25115D01* X2761Y25117D01* X2764Y25118D01* Y23886D01* X2757Y23886D01* X2749Y23885D01* X2741Y23882D01* X2733Y23878D01* X2726Y23872D01* X2720Y23865D01* X2716Y23858D01* X2713Y23850D01* X2711Y23841D01* X2711Y23833D01* X2712Y23824D01* X2715Y23816D01* X2719Y23808D01* X2725Y23801D01* X2732Y23796D01* X2739Y23791D01* X2747Y23788D01* X2764Y23782D01* Y23217D01* X2752Y23213D01* X2744Y23209D01* X2737Y23205D01* X2730Y23199D01* X2725Y23192D01* X2721Y23184D01* X2718Y23176D01* X2717Y23167D01* X2717Y23159D01* X2719Y23150D01* X2722Y23142D01* X2727Y23135D01* X2733Y23128D01* X2740Y23123D01* X2747Y23119D01* X2756Y23116D01* X2764Y23115D01* Y21883D01* X2761Y21882D01* X2753Y21878D01* X2746Y21872D01* X2740Y21865D01* X2736Y21858D01* X2733Y21850D01* X2731Y21841D01* X2731Y21833D01* X2732Y21824D01* X2735Y21816D01* X2739Y21808D01* X2745Y21801D01* X2752Y21796D01* X2759Y21791D01* X2764Y21789D01* Y21209D01* X2757Y21205D01* X2750Y21199D01* X2745Y21192D01* X2741Y21184D01* X2738Y21176D01* X2737Y21167D01* X2737Y21159D01* X2739Y21150D01* X2742Y21142D01* X2747Y21135D01* X2753Y21128D01* X2760Y21123D01* X2764Y21121D01* Y19870D01* X2760Y19865D01* X2756Y19858D01* X2753Y19850D01* X2751Y19841D01* X2751Y19833D01* X2752Y19824D01* X2755Y19816D01* X2759Y19808D01* X2764Y19802D01* Y19190D01* X2761Y19184D01* X2758Y19176D01* X2757Y19167D01* X2757Y19159D01* X2759Y19150D01* X2762Y19142D01* X2764Y19140D01* Y7861D01* X2762Y7864D01* X2756Y7871D01* X2749Y7876D01* X2742Y7880D01* X2733Y7883D01* X2725Y7884D01* X2716Y7884D01* X2708Y7882D01* X2673Y7870D01* X2641Y7855D01* X2609Y7837D01* X2580Y7816D01* X2552Y7793D01* X2527Y7767D01* X2505Y7740D01* Y9235D01* X2512Y9227D01* X2537Y9202D01* X2565Y9179D01* X2595Y9159D01* X2627Y9141D01* X2660Y9127D01* X2694Y9115D01* X2703Y9113D01* X2712Y9113D01* X2720Y9115D01* X2728Y9117D01* X2736Y9122D01* X2743Y9127D01* X2749Y9134D01* X2753Y9141D01* X2756Y9149D01* X2758Y9158D01* X2758Y9167D01* X2757Y9175D01* X2754Y9183D01* X2750Y9191D01* X2744Y9198D01* X2737Y9204D01* X2730Y9208D01* X2722Y9211D01* X2696Y9220D01* X2671Y9231D01* X2648Y9244D01* X2625Y9259D01* X2604Y9276D01* X2585Y9295D01* X2567Y9316D01* X2552Y9338D01* X2538Y9362D01* X2527Y9386D01* X2518Y9412D01* X2514Y9420D01* X2510Y9427D01* X2505Y9432D01* Y9563D01* X2509Y9567D01* X2513Y9574D01* X2516Y9582D01* X2525Y9608D01* X2536Y9633D01* X2549Y9657D01* X2564Y9679D01* X2581Y9700D01* X2600Y9719D01* X2621Y9737D01* X2643Y9752D01* X2667Y9766D01* X2691Y9777D01* X2717Y9786D01* X2725Y9790D01* X2732Y9794D01* X2739Y9800D01* X2744Y9807D01* X2748Y9815D01* X2751Y9823D01* X2752Y9832D01* X2752Y9840D01* X2750Y9849D01* X2747Y9857D01* X2742Y9864D01* X2736Y9871D01* X2729Y9876D01* X2722Y9880D01* X2713Y9883D01* X2705Y9884D01* X2696Y9884D01* X2688Y9882D01* X2653Y9870D01* X2621Y9855D01* X2589Y9837D01* X2560Y9816D01* X2532Y9793D01* X2507Y9767D01* X2505Y9765D01* Y11214D01* X2517Y11202D01* X2545Y11179D01* X2575Y11159D01* X2607Y11141D01* X2640Y11127D01* X2674Y11115D01* X2683Y11113D01* X2692Y11113D01* X2700Y11115D01* X2708Y11117D01* X2716Y11122D01* X2723Y11127D01* X2729Y11134D01* X2733Y11141D01* X2736Y11149D01* X2738Y11158D01* X2738Y11167D01* X2737Y11175D01* X2734Y11183D01* X2730Y11191D01* X2724Y11198D01* X2717Y11204D01* X2710Y11208D01* X2702Y11211D01* X2676Y11220D01* X2651Y11231D01* X2628Y11244D01* X2605Y11259D01* X2584Y11276D01* X2565Y11295D01* X2547Y11316D01* X2532Y11338D01* X2518Y11362D01* X2507Y11386D01* X2505Y11391D01* Y11609D01* X2516Y11633D01* X2529Y11657D01* X2544Y11679D01* X2561Y11700D01* X2580Y11719D01* X2601Y11737D01* X2623Y11752D01* X2647Y11766D01* X2671Y11777D01* X2697Y11786D01* X2705Y11790D01* X2712Y11794D01* X2719Y11800D01* X2724Y11807D01* X2728Y11815D01* X2731Y11823D01* X2732Y11832D01* X2732Y11840D01* X2730Y11849D01* X2727Y11857D01* X2722Y11864D01* X2716Y11871D01* X2709Y11876D01* X2702Y11880D01* X2693Y11883D01* X2685Y11884D01* X2676Y11884D01* X2668Y11882D01* X2633Y11870D01* X2601Y11855D01* X2569Y11837D01* X2540Y11816D01* X2512Y11793D01* X2505Y11785D01* Y13196D01* X2525Y13179D01* X2555Y13159D01* X2587Y13141D01* X2620Y13127D01* X2654Y13115D01* X2663Y13113D01* X2672Y13113D01* X2680Y13115D01* X2688Y13117D01* X2696Y13122D01* X2703Y13127D01* X2709Y13134D01* X2713Y13141D01* X2716Y13149D01* X2718Y13158D01* X2718Y13167D01* X2717Y13175D01* X2714Y13183D01* X2710Y13191D01* X2704Y13198D01* X2697Y13204D01* X2690Y13208D01* X2682Y13211D01* X2656Y13220D01* X2631Y13231D01* X2608Y13244D01* X2585Y13259D01* X2564Y13276D01* X2545Y13295D01* X2527Y13316D01* X2512Y13338D01* X2505Y13349D01* Y13650D01* X2509Y13657D01* X2524Y13679D01* X2541Y13700D01* X2560Y13719D01* X2581Y13737D01* X2603Y13752D01* X2627Y13766D01* X2651Y13777D01* X2677Y13786D01* X2685Y13790D01* X2692Y13794D01* X2699Y13800D01* X2704Y13807D01* X2708Y13815D01* X2711Y13823D01* X2712Y13832D01* X2712Y13840D01* X2710Y13849D01* X2707Y13857D01* X2702Y13864D01* X2696Y13871D01* X2689Y13876D01* X2682Y13880D01* X2673Y13883D01* X2665Y13884D01* X2656Y13884D01* X2648Y13882D01* X2613Y13870D01* X2581Y13855D01* X2549Y13837D01* X2520Y13816D01* X2505Y13804D01* Y15179D01* X2505Y15179D01* X2535Y15159D01* X2567Y15141D01* X2600Y15127D01* X2634Y15115D01* X2643Y15113D01* X2652Y15113D01* X2660Y15115D01* X2668Y15117D01* X2676Y15122D01* X2683Y15127D01* X2689Y15134D01* X2693Y15141D01* X2696Y15149D01* X2698Y15158D01* X2698Y15167D01* X2697Y15175D01* X2694Y15183D01* X2690Y15191D01* X2684Y15198D01* X2677Y15204D01* X2670Y15208D01* X2662Y15211D01* X2636Y15220D01* X2611Y15231D01* X2588Y15244D01* X2565Y15259D01* X2544Y15276D01* X2525Y15295D01* X2507Y15316D01* X2505Y15319D01* Y15680D01* X2521Y15700D01* X2540Y15719D01* X2561Y15737D01* X2583Y15752D01* X2607Y15766D01* X2631Y15777D01* X2657Y15786D01* X2665Y15790D01* X2672Y15794D01* X2679Y15800D01* X2684Y15807D01* X2688Y15815D01* X2691Y15823D01* X2692Y15832D01* X2692Y15840D01* X2690Y15849D01* X2687Y15857D01* X2682Y15864D01* X2676Y15871D01* X2669Y15876D01* X2662Y15880D01* X2653Y15883D01* X2645Y15884D01* X2636Y15884D01* X2628Y15882D01* X2593Y15870D01* X2561Y15855D01* X2529Y15837D01* X2505Y15820D01* Y17166D01* X2515Y17159D01* X2547Y17141D01* X2580Y17127D01* X2614Y17115D01* X2623Y17113D01* X2632Y17113D01* X2640Y17115D01* X2648Y17117D01* X2656Y17122D01* X2663Y17127D01* X2669Y17134D01* X2673Y17141D01* X2676Y17149D01* X2678Y17158D01* X2678Y17167D01* X2677Y17175D01* X2674Y17183D01* X2670Y17191D01* X2664Y17198D01* X2657Y17204D01* X2650Y17208D01* X2642Y17211D01* X2616Y17220D01* X2591Y17231D01* X2568Y17244D01* X2545Y17259D01* X2524Y17276D01* X2505Y17295D01* Y17704D01* X2520Y17719D01* X2541Y17737D01* X2563Y17752D01* X2587Y17766D01* X2611Y17777D01* X2637Y17786D01* X2645Y17790D01* X2652Y17794D01* X2659Y17800D01* X2664Y17807D01* X2668Y17815D01* X2671Y17823D01* X2672Y17832D01* X2672Y17840D01* X2670Y17849D01* X2667Y17857D01* X2662Y17864D01* X2656Y17871D01* X2649Y17876D01* X2642Y17880D01* X2633Y17883D01* X2625Y17884D01* X2616Y17884D01* X2608Y17882D01* X2573Y17870D01* X2541Y17855D01* X2509Y17837D01* X2505Y17834D01* Y19153D01* X2527Y19141D01* X2560Y19127D01* X2594Y19115D01* X2603Y19113D01* X2612Y19113D01* X2620Y19115D01* X2628Y19117D01* X2636Y19122D01* X2643Y19127D01* X2649Y19134D01* X2653Y19141D01* X2656Y19149D01* X2658Y19158D01* X2658Y19167D01* X2657Y19175D01* X2654Y19183D01* X2650Y19191D01* X2644Y19198D01* X2637Y19204D01* X2630Y19208D01* X2622Y19211D01* X2596Y19220D01* X2571Y19231D01* X2548Y19244D01* X2525Y19259D01* X2505Y19276D01* Y19723D01* X2521Y19737D01* X2543Y19752D01* X2567Y19766D01* X2591Y19777D01* X2617Y19786D01* X2625Y19790D01* X2632Y19794D01* X2639Y19800D01* X2644Y19807D01* X2648Y19815D01* X2651Y19823D01* X2652Y19832D01* X2652Y19840D01* X2650Y19849D01* X2647Y19857D01* X2642Y19864D01* X2636Y19871D01* X2629Y19876D01* X2622Y19880D01* X2613Y19883D01* X2605Y19884D01* X2596Y19884D01* X2588Y19882D01* X2553Y19870D01* X2521Y19855D01* X2505Y19846D01* Y21142D01* X2507Y21141D01* X2540Y21127D01* X2574Y21115D01* X2583Y21113D01* X2592Y21113D01* X2600Y21115D01* X2608Y21117D01* X2616Y21122D01* X2623Y21127D01* X2629Y21134D01* X2633Y21141D01* X2636Y21149D01* X2638Y21158D01* X2638Y21167D01* X2637Y21175D01* X2634Y21183D01* X2630Y21191D01* X2624Y21198D01* X2617Y21204D01* X2610Y21208D01* X2602Y21211D01* X2576Y21220D01* X2551Y21231D01* X2528Y21244D01* X2505Y21259D01* Y21740D01* X2523Y21752D01* X2547Y21766D01* X2571Y21777D01* X2597Y21786D01* X2605Y21790D01* X2612Y21794D01* X2619Y21800D01* X2624Y21807D01* X2628Y21815D01* X2631Y21823D01* X2632Y21832D01* X2632Y21840D01* X2630Y21849D01* X2627Y21857D01* X2622Y21864D01* X2616Y21871D01* X2609Y21876D01* X2602Y21880D01* X2593Y21883D01* X2585Y21884D01* X2576Y21884D01* X2568Y21882D01* X2533Y21870D01* X2505Y21857D01* Y23133D01* X2520Y23127D01* X2554Y23115D01* X2563Y23113D01* X2572Y23113D01* X2580Y23115D01* X2588Y23117D01* X2596Y23122D01* X2603Y23127D01* X2609Y23134D01* X2613Y23141D01* X2616Y23149D01* X2618Y23158D01* X2618Y23167D01* X2617Y23175D01* X2614Y23183D01* X2610Y23191D01* X2604Y23198D01* X2597Y23204D01* X2590Y23208D01* X2582Y23211D01* X2556Y23220D01* X2531Y23231D01* X2508Y23244D01* X2505Y23246D01* Y23754D01* X2527Y23766D01* X2551Y23777D01* X2577Y23786D01* X2585Y23790D01* X2592Y23794D01* X2599Y23800D01* X2604Y23807D01* X2608Y23815D01* X2611Y23823D01* X2612Y23832D01* X2612Y23840D01* X2610Y23849D01* X2607Y23857D01* X2602Y23864D01* X2596Y23871D01* X2589Y23876D01* X2582Y23880D01* X2573Y23883D01* X2565Y23884D01* X2556Y23884D01* X2548Y23882D01* X2513Y23870D01* X2505Y23866D01* Y25125D01* X2534Y25115D01* X2543Y25113D01* X2552Y25113D01* X2560Y25115D01* X2568Y25117D01* X2576Y25122D01* X2583Y25127D01* X2589Y25134D01* X2593Y25141D01* X2596Y25149D01* X2598Y25158D01* X2598Y25167D01* X2597Y25175D01* X2594Y25183D01* X2590Y25191D01* X2584Y25198D01* X2577Y25204D01* X2570Y25208D01* X2562Y25211D01* X2536Y25220D01* X2511Y25231D01* X2505Y25234D01* Y25765D01* X2507Y25766D01* X2531Y25777D01* X2557Y25786D01* X2565Y25790D01* X2572Y25794D01* X2579Y25800D01* X2584Y25807D01* X2588Y25815D01* X2591Y25823D01* X2592Y25832D01* X2592Y25840D01* X2590Y25849D01* X2587Y25857D01* X2582Y25864D01* X2576Y25871D01* X2569Y25876D01* X2562Y25880D01* X2553Y25883D01* X2545Y25884D01* X2536Y25884D01* X2528Y25882D01* X2505Y25874D01* Y27118D01* X2514Y27115D01* X2523Y27113D01* X2532Y27113D01* X2540Y27115D01* X2548Y27117D01* X2556Y27122D01* X2563Y27127D01* X2569Y27134D01* X2573Y27141D01* X2576Y27149D01* X2578Y27158D01* X2578Y27167D01* X2577Y27175D01* X2574Y27183D01* X2570Y27191D01* X2564Y27198D01* X2557Y27204D01* X2550Y27208D01* X2542Y27211D01* X2516Y27220D01* X2505Y27225D01* Y27775D01* X2511Y27777D01* X2537Y27786D01* X2545Y27790D01* X2552Y27794D01* X2559Y27800D01* X2564Y27807D01* X2568Y27815D01* X2571Y27823D01* X2572Y27832D01* X2572Y27840D01* X2570Y27849D01* X2567Y27857D01* X2562Y27864D01* X2556Y27871D01* X2549Y27876D01* X2542Y27880D01* X2533Y27883D01* X2525Y27884D01* X2516Y27884D01* X2508Y27882D01* X2505Y27881D01* Y29113D01* X2512Y29113D01* X2520Y29115D01* X2528Y29117D01* X2536Y29122D01* X2543Y29127D01* X2549Y29134D01* X2553Y29141D01* X2556Y29149D01* X2558Y29158D01* X2558Y29167D01* X2557Y29175D01* X2554Y29183D01* X2550Y29191D01* X2544Y29198D01* X2537Y29204D01* X2530Y29208D01* X2522Y29211D01* X2505Y29217D01* Y29782D01* X2517Y29786D01* X2525Y29790D01* X2532Y29794D01* X2539Y29800D01* X2544Y29807D01* X2548Y29815D01* X2551Y29823D01* X2552Y29832D01* X2552Y29840D01* X2550Y29849D01* X2547Y29857D01* X2542Y29864D01* X2536Y29871D01* X2529Y29876D01* X2522Y29880D01* X2513Y29883D01* X2505Y29884D01* Y31116D01* X2508Y31117D01* X2516Y31122D01* X2523Y31127D01* X2529Y31134D01* X2533Y31141D01* X2536Y31149D01* X2538Y31158D01* X2538Y31167D01* X2537Y31175D01* X2534Y31183D01* X2530Y31191D01* X2524Y31198D01* X2517Y31204D01* X2510Y31208D01* X2505Y31210D01* Y31790D01* X2512Y31794D01* X2519Y31800D01* X2524Y31807D01* X2528Y31815D01* X2531Y31823D01* X2532Y31832D01* X2532Y31840D01* X2530Y31849D01* X2527Y31857D01* X2522Y31864D01* X2516Y31871D01* X2509Y31876D01* X2505Y31878D01* Y33130D01* X2509Y33134D01* X2513Y33141D01* X2516Y33149D01* X2518Y33158D01* X2518Y33167D01* X2517Y33175D01* X2514Y33183D01* X2510Y33191D01* X2505Y33197D01* Y33809D01* X2508Y33815D01* X2511Y33823D01* X2512Y33832D01* X2512Y33840D01* X2510Y33849D01* X2507Y33857D01* X2505Y33859D01* Y40000D01* G37* G36* X2764Y0D02*X2505D01* Y1374D01* X2514Y1349D01* X2529Y1316D01* X2547Y1284D01* X2568Y1255D01* X2592Y1227D01* X2617Y1202D01* X2645Y1179D01* X2675Y1159D01* X2707Y1141D01* X2740Y1127D01* X2764Y1119D01* Y0D01* G37* G36* Y1225D02*X2751Y1231D01* X2728Y1244D01* X2705Y1259D01* X2684Y1276D01* X2665Y1295D01* X2647Y1316D01* X2632Y1338D01* X2618Y1362D01* X2607Y1386D01* X2598Y1412D01* X2594Y1420D01* X2590Y1427D01* X2584Y1434D01* X2577Y1439D01* X2569Y1443D01* X2561Y1446D01* X2552Y1447D01* X2544Y1447D01* X2535Y1445D01* X2527Y1442D01* X2520Y1437D01* X2513Y1431D01* X2508Y1424D01* X2505Y1419D01* Y1571D01* X2507Y1568D01* X2512Y1561D01* X2519Y1556D01* X2526Y1551D01* X2534Y1548D01* X2543Y1546D01* X2552Y1546D01* X2560Y1547D01* X2568Y1550D01* X2576Y1555D01* X2583Y1560D01* X2589Y1567D01* X2593Y1574D01* X2596Y1582D01* X2605Y1608D01* X2616Y1633D01* X2629Y1657D01* X2644Y1679D01* X2661Y1700D01* X2680Y1719D01* X2701Y1737D01* X2723Y1752D01* X2747Y1766D01* X2764Y1774D01* Y1225D01* G37* G36* Y1881D02*X2733Y1870D01* X2701Y1855D01* X2669Y1837D01* X2640Y1816D01* X2612Y1793D01* X2587Y1767D01* X2564Y1739D01* X2544Y1709D01* X2526Y1677D01* X2512Y1644D01* X2505Y1625D01* Y3325D01* X2509Y3316D01* X2527Y3284D01* X2548Y3255D01* X2572Y3227D01* X2597Y3202D01* X2625Y3179D01* X2655Y3159D01* X2687Y3141D01* X2720Y3127D01* X2754Y3115D01* X2763Y3113D01* X2764D01* Y1881D01* G37* G36* Y3217D02*X2756Y3220D01* X2731Y3231D01* X2708Y3244D01* X2685Y3259D01* X2664Y3276D01* X2645Y3295D01* X2627Y3316D01* X2612Y3338D01* X2598Y3362D01* X2587Y3386D01* X2578Y3412D01* X2574Y3420D01* X2570Y3427D01* X2564Y3434D01* X2557Y3439D01* X2549Y3443D01* X2541Y3446D01* X2532Y3447D01* X2524Y3447D01* X2515Y3445D01* X2507Y3442D01* X2505Y3441D01* Y3552D01* X2506Y3551D01* X2514Y3548D01* X2523Y3546D01* X2532Y3546D01* X2540Y3547D01* X2548Y3550D01* X2556Y3555D01* X2563Y3560D01* X2569Y3567D01* X2573Y3574D01* X2576Y3582D01* X2585Y3608D01* X2596Y3633D01* X2609Y3657D01* X2624Y3679D01* X2641Y3700D01* X2660Y3719D01* X2681Y3737D01* X2703Y3752D01* X2727Y3766D01* X2751Y3777D01* X2764Y3782D01* Y3217D01* G37* G36* Y3884D02*X2756Y3884D01* X2748Y3882D01* X2713Y3870D01* X2681Y3855D01* X2649Y3837D01* X2620Y3816D01* X2592Y3793D01* X2567Y3767D01* X2544Y3739D01* X2524Y3709D01* X2506Y3677D01* X2505Y3675D01* Y5288D01* X2507Y5284D01* X2528Y5255D01* X2552Y5227D01* X2577Y5202D01* X2605Y5179D01* X2635Y5159D01* X2667Y5141D01* X2700Y5127D01* X2734Y5115D01* X2743Y5113D01* X2752Y5113D01* X2760Y5115D01* X2764Y5116D01* Y3884D01* G37* G36* Y5210D02*X2762Y5211D01* X2736Y5220D01* X2711Y5231D01* X2688Y5244D01* X2665Y5259D01* X2644Y5276D01* X2625Y5295D01* X2607Y5316D01* X2592Y5338D01* X2578Y5362D01* X2567Y5386D01* X2558Y5412D01* X2554Y5420D01* X2550Y5427D01* X2544Y5434D01* X2537Y5439D01* X2529Y5443D01* X2521Y5446D01* X2512Y5447D01* X2505Y5447D01* Y5546D01* X2512Y5546D01* X2520Y5547D01* X2528Y5550D01* X2536Y5555D01* X2543Y5560D01* X2549Y5567D01* X2553Y5574D01* X2556Y5582D01* X2565Y5608D01* X2576Y5633D01* X2589Y5657D01* X2604Y5679D01* X2621Y5700D01* X2640Y5719D01* X2661Y5737D01* X2683Y5752D01* X2707Y5766D01* X2731Y5777D01* X2757Y5786D01* X2764Y5789D01* Y5210D01* G37* G36* Y5879D02*X2762Y5880D01* X2753Y5883D01* X2745Y5884D01* X2736Y5884D01* X2728Y5882D01* X2693Y5870D01* X2661Y5855D01* X2629Y5837D01* X2600Y5816D01* X2572Y5793D01* X2547Y5767D01* X2524Y5739D01* X2505Y5711D01* Y7259D01* X2508Y7255D01* X2532Y7227D01* X2557Y7202D01* X2585Y7179D01* X2615Y7159D01* X2647Y7141D01* X2680Y7127D01* X2714Y7115D01* X2723Y7113D01* X2732Y7113D01* X2740Y7115D01* X2748Y7117D01* X2756Y7122D01* X2763Y7127D01* X2764Y7128D01* Y5879D01* G37* G36* Y7198D02*X2757Y7204D01* X2750Y7208D01* X2742Y7211D01* X2716Y7220D01* X2691Y7231D01* X2668Y7244D01* X2645Y7259D01* X2624Y7276D01* X2605Y7295D01* X2587Y7316D01* X2572Y7338D01* X2558Y7362D01* X2547Y7386D01* X2538Y7412D01* X2534Y7420D01* X2530Y7427D01* X2524Y7434D01* X2517Y7439D01* X2509Y7443D01* X2505Y7445D01* Y7549D01* X2508Y7550D01* X2516Y7555D01* X2523Y7560D01* X2529Y7567D01* X2533Y7574D01* X2536Y7582D01* X2545Y7608D01* X2556Y7633D01* X2569Y7657D01* X2584Y7679D01* X2601Y7700D01* X2620Y7719D01* X2641Y7737D01* X2663Y7752D01* X2687Y7766D01* X2711Y7777D01* X2737Y7786D01* X2745Y7790D01* X2752Y7794D01* X2759Y7800D01* X2764Y7807D01* Y7198D01* G37* G36* Y40000D02*X2944D01* Y33625D01* X2935Y33651D01* X2920Y33683D01* X2902Y33715D01* X2881Y33744D01* X2857Y33772D01* X2832Y33797D01* X2804Y33820D01* X2774Y33840D01* X2764Y33846D01* Y35165D01* X2789Y35183D01* X2817Y35207D01* X2842Y35232D01* X2865Y35260D01* X2885Y35290D01* X2903Y35322D01* X2917Y35355D01* X2929Y35389D01* X2931Y35398D01* X2931Y35407D01* X2930Y35415D01* X2927Y35423D01* X2922Y35431D01* X2917Y35438D01* X2910Y35444D01* X2903Y35448D01* X2895Y35451D01* X2886Y35453D01* X2877Y35453D01* X2869Y35452D01* X2861Y35449D01* X2853Y35445D01* X2846Y35439D01* X2840Y35433D01* X2836Y35425D01* X2833Y35417D01* X2824Y35391D01* X2813Y35366D01* X2800Y35343D01* X2785Y35320D01* X2768Y35299D01* X2764Y35295D01* Y35704D01* X2764Y35704D01* X2782Y35683D01* X2797Y35661D01* X2811Y35637D01* X2822Y35613D01* X2831Y35587D01* X2835Y35579D01* X2839Y35572D01* X2845Y35565D01* X2852Y35560D01* X2860Y35556D01* X2868Y35553D01* X2877Y35552D01* X2885Y35552D01* X2894Y35554D01* X2902Y35557D01* X2909Y35562D01* X2916Y35568D01* X2921Y35575D01* X2925Y35582D01* X2928Y35591D01* X2929Y35599D01* X2929Y35608D01* X2927Y35617D01* X2915Y35651D01* X2900Y35683D01* X2882Y35715D01* X2861Y35744D01* X2837Y35772D01* X2812Y35797D01* X2784Y35820D01* X2764Y35834D01* Y37180D01* X2769Y37183D01* X2797Y37207D01* X2822Y37232D01* X2845Y37260D01* X2865Y37290D01* X2883Y37322D01* X2897Y37355D01* X2909Y37389D01* X2911Y37398D01* X2911Y37407D01* X2910Y37415D01* X2907Y37423D01* X2902Y37431D01* X2897Y37438D01* X2890Y37444D01* X2883Y37448D01* X2875Y37451D01* X2866Y37453D01* X2857Y37453D01* X2849Y37452D01* X2841Y37449D01* X2833Y37445D01* X2826Y37439D01* X2820Y37433D01* X2816Y37425D01* X2813Y37417D01* X2804Y37391D01* X2793Y37366D01* X2780Y37343D01* X2765Y37320D01* X2764Y37319D01* Y37680D01* X2777Y37661D01* X2791Y37637D01* X2802Y37613D01* X2811Y37587D01* X2815Y37579D01* X2819Y37572D01* X2825Y37565D01* X2832Y37560D01* X2840Y37556D01* X2848Y37553D01* X2857Y37552D01* X2865Y37552D01* X2874Y37554D01* X2882Y37557D01* X2889Y37562D01* X2896Y37568D01* X2901Y37575D01* X2905Y37582D01* X2908Y37591D01* X2909Y37599D01* X2909Y37608D01* X2907Y37617D01* X2895Y37651D01* X2880Y37683D01* X2862Y37715D01* X2841Y37744D01* X2817Y37772D01* X2792Y37797D01* X2764Y37820D01* Y39196D01* X2777Y39207D01* X2802Y39232D01* X2825Y39260D01* X2845Y39290D01* X2863Y39322D01* X2877Y39355D01* X2889Y39389D01* X2891Y39398D01* X2891Y39407D01* X2890Y39415D01* X2887Y39423D01* X2882Y39431D01* X2877Y39438D01* X2870Y39444D01* X2863Y39448D01* X2855Y39451D01* X2846Y39453D01* X2837Y39453D01* X2829Y39452D01* X2821Y39449D01* X2813Y39445D01* X2806Y39439D01* X2800Y39433D01* X2796Y39425D01* X2793Y39417D01* X2784Y39391D01* X2773Y39366D01* X2764Y39350D01* Y39650D01* X2771Y39637D01* X2782Y39613D01* X2791Y39587D01* X2795Y39579D01* X2799Y39572D01* X2805Y39565D01* X2812Y39560D01* X2820Y39556D01* X2828Y39553D01* X2837Y39552D01* X2845Y39552D01* X2854Y39554D01* X2862Y39557D01* X2869Y39562D01* X2876Y39568D01* X2881Y39575D01* X2885Y39582D01* X2888Y39591D01* X2889Y39599D01* X2889Y39608D01* X2887Y39617D01* X2875Y39651D01* X2860Y39683D01* X2842Y39715D01* X2821Y39744D01* X2797Y39772D01* X2772Y39797D01* X2764Y39804D01* Y40000D01* G37* G36* Y33724D02*X2765Y33723D01* X2784Y33704D01* X2802Y33683D01* X2817Y33661D01* X2831Y33637D01* X2842Y33613D01* X2851Y33587D01* X2855Y33579D01* X2859Y33572D01* X2865Y33565D01* X2872Y33560D01* X2880Y33556D01* X2888Y33553D01* X2897Y33552D01* X2905Y33552D01* X2914Y33554D01* X2922Y33557D01* X2929Y33562D01* X2936Y33568D01* X2941Y33575D01* X2944Y33580D01* Y33428D01* X2942Y33431D01* X2937Y33438D01* X2930Y33444D01* X2923Y33448D01* X2915Y33451D01* X2906Y33453D01* X2897Y33453D01* X2889Y33452D01* X2881Y33449D01* X2873Y33445D01* X2866Y33439D01* X2860Y33433D01* X2856Y33425D01* X2853Y33417D01* X2844Y33391D01* X2833Y33366D01* X2820Y33343D01* X2805Y33320D01* X2788Y33299D01* X2769Y33280D01* X2764Y33276D01* Y33724D01* G37* G36* Y33153D02*X2780Y33162D01* X2809Y33183D01* X2837Y33207D01* X2862Y33232D01* X2885Y33260D01* X2905Y33290D01* X2923Y33322D01* X2937Y33355D01* X2944Y33374D01* Y31674D01* X2940Y31683D01* X2922Y31715D01* X2901Y31744D01* X2877Y31772D01* X2852Y31797D01* X2824Y31820D01* X2794Y31840D01* X2764Y31857D01* Y33153D01* G37* G36* Y31740D02*X2785Y31723D01* X2804Y31704D01* X2822Y31683D01* X2837Y31661D01* X2851Y31637D01* X2862Y31613D01* X2871Y31587D01* X2875Y31579D01* X2879Y31572D01* X2885Y31565D01* X2892Y31560D01* X2900Y31556D01* X2908Y31553D01* X2917Y31552D01* X2925Y31552D01* X2934Y31554D01* X2942Y31557D01* X2944Y31559D01* Y31447D01* X2943Y31448D01* X2935Y31451D01* X2926Y31453D01* X2917Y31453D01* X2909Y31452D01* X2901Y31449D01* X2893Y31445D01* X2886Y31439D01* X2880Y31433D01* X2876Y31425D01* X2873Y31417D01* X2864Y31391D01* X2853Y31366D01* X2840Y31343D01* X2825Y31320D01* X2808Y31299D01* X2789Y31280D01* X2768Y31262D01* X2764Y31259D01* Y31740D01* G37* G36* Y31142D02*X2768Y31144D01* X2800Y31162D01* X2829Y31183D01* X2857Y31207D01* X2882Y31232D01* X2905Y31260D01* X2925Y31290D01* X2943Y31322D01* X2944Y31324D01* Y29711D01* X2942Y29715D01* X2921Y29744D01* X2897Y29772D01* X2872Y29797D01* X2844Y29820D01* X2814Y29840D01* X2782Y29858D01* X2764Y29866D01* Y31142D01* G37* G36* Y29754D02*X2784Y29740D01* X2805Y29723D01* X2824Y29704D01* X2842Y29683D01* X2857Y29661D01* X2871Y29637D01* X2882Y29613D01* X2891Y29587D01* X2895Y29579D01* X2899Y29572D01* X2905Y29565D01* X2912Y29560D01* X2920Y29556D01* X2928Y29553D01* X2937Y29552D01* X2944Y29552D01* Y29453D01* X2937Y29453D01* X2929Y29452D01* X2921Y29449D01* X2913Y29445D01* X2906Y29439D01* X2900Y29433D01* X2896Y29425D01* X2893Y29417D01* X2884Y29391D01* X2873Y29366D01* X2860Y29343D01* X2845Y29320D01* X2828Y29299D01* X2809Y29280D01* X2788Y29262D01* X2766Y29247D01* X2764Y29246D01* Y29754D01* G37* G36* Y29133D02*X2788Y29144D01* X2820Y29162D01* X2849Y29183D01* X2877Y29207D01* X2902Y29232D01* X2925Y29260D01* X2944Y29288D01* Y27740D01* X2941Y27744D01* X2917Y27772D01* X2892Y27797D01* X2864Y27820D01* X2834Y27840D01* X2802Y27858D01* X2769Y27873D01* X2764Y27874D01* Y29133D01* G37* G36* Y27765D02*X2781Y27755D01* X2804Y27740D01* X2825Y27723D01* X2844Y27704D01* X2862Y27683D01* X2877Y27661D01* X2891Y27637D01* X2902Y27613D01* X2911Y27587D01* X2915Y27579D01* X2919Y27572D01* X2925Y27565D01* X2932Y27560D01* X2940Y27556D01* X2944Y27555D01* Y27450D01* X2941Y27449D01* X2933Y27445D01* X2926Y27439D01* X2920Y27433D01* X2916Y27425D01* X2913Y27417D01* X2904Y27391D01* X2893Y27366D01* X2880Y27343D01* X2865Y27320D01* X2848Y27299D01* X2829Y27280D01* X2808Y27262D01* X2786Y27247D01* X2764Y27234D01* Y27765D01* G37* G36* Y27125D02*X2776Y27129D01* X2808Y27144D01* X2840Y27162D01* X2869Y27183D01* X2897Y27207D01* X2922Y27232D01* X2944Y27259D01* Y25764D01* X2937Y25772D01* X2912Y25797D01* X2884Y25820D01* X2854Y25840D01* X2822Y25858D01* X2789Y25873D01* X2764Y25881D01* Y27125D01* G37* G36* Y25774D02*X2778Y25768D01* X2801Y25755D01* X2824Y25740D01* X2845Y25723D01* X2864Y25704D01* X2882Y25683D01* X2897Y25661D01* X2911Y25637D01* X2922Y25613D01* X2931Y25587D01* X2935Y25579D01* X2939Y25572D01* X2944Y25567D01* Y25437D01* X2940Y25433D01* X2936Y25425D01* X2933Y25417D01* X2924Y25391D01* X2913Y25366D01* X2900Y25343D01* X2885Y25320D01* X2868Y25299D01* X2849Y25280D01* X2828Y25262D01* X2806Y25247D01* X2782Y25233D01* X2764Y25225D01* Y25774D01* G37* G36* Y25118D02*X2796Y25129D01* X2828Y25144D01* X2860Y25162D01* X2889Y25183D01* X2917Y25207D01* X2942Y25232D01* X2944Y25235D01* Y23785D01* X2932Y23797D01* X2904Y23820D01* X2874Y23840D01* X2842Y23858D01* X2809Y23873D01* X2775Y23884D01* X2766Y23886D01* X2764D01* Y25118D01* G37* G36* Y23782D02*X2773Y23779D01* X2798Y23768D01* X2821Y23755D01* X2844Y23740D01* X2865Y23723D01* X2884Y23704D01* X2902Y23683D01* X2917Y23661D01* X2931Y23637D01* X2942Y23613D01* X2944Y23608D01* Y23391D01* X2933Y23366D01* X2920Y23343D01* X2905Y23320D01* X2888Y23299D01* X2869Y23280D01* X2848Y23262D01* X2826Y23247D01* X2802Y23233D01* X2778Y23222D01* X2764Y23217D01* Y23782D01* G37* G36* Y23115D02*X2764D01* X2773Y23115D01* X2781Y23117D01* X2816Y23129D01* X2848Y23144D01* X2880Y23162D01* X2909Y23183D01* X2937Y23207D01* X2944Y23214D01* Y21804D01* X2924Y21820D01* X2894Y21840D01* X2862Y21858D01* X2829Y21873D01* X2795Y21884D01* X2786Y21886D01* X2777Y21886D01* X2769Y21885D01* X2764Y21883D01* Y23115D01* G37* G36* Y21789D02*X2767Y21788D01* X2793Y21779D01* X2818Y21768D01* X2841Y21755D01* X2864Y21740D01* X2885Y21723D01* X2904Y21704D01* X2922Y21683D01* X2937Y21661D01* X2944Y21650D01* Y21350D01* X2940Y21343D01* X2925Y21320D01* X2908Y21299D01* X2889Y21280D01* X2868Y21262D01* X2846Y21247D01* X2822Y21233D01* X2798Y21222D01* X2772Y21213D01* X2764Y21209D01* X2764Y21209D01* Y21789D01* G37* G36* Y21121D02*X2767Y21119D01* X2776Y21116D01* X2784Y21115D01* X2793Y21115D01* X2801Y21117D01* X2836Y21129D01* X2868Y21144D01* X2900Y21162D01* X2929Y21183D01* X2944Y21196D01* Y19820D01* X2944Y19820D01* X2914Y19840D01* X2882Y19858D01* X2849Y19873D01* X2815Y19884D01* X2806Y19886D01* X2797Y19886D01* X2789Y19885D01* X2781Y19882D01* X2773Y19878D01* X2766Y19872D01* X2764Y19870D01* Y21121D01* G37* G36* Y19802D02*X2765Y19801D01* X2772Y19796D01* X2779Y19791D01* X2787Y19788D01* X2813Y19779D01* X2838Y19768D01* X2861Y19755D01* X2884Y19740D01* X2905Y19723D01* X2924Y19704D01* X2942Y19683D01* X2944Y19680D01* Y19319D01* X2928Y19299D01* X2909Y19280D01* X2888Y19262D01* X2866Y19247D01* X2842Y19233D01* X2818Y19222D01* X2792Y19213D01* X2784Y19209D01* X2777Y19205D01* X2770Y19199D01* X2765Y19192D01* X2764Y19190D01* Y19802D01* G37* G36* Y19140D02*X2767Y19135D01* X2773Y19128D01* X2780Y19123D01* X2787Y19119D01* X2796Y19116D01* X2804Y19115D01* X2813Y19115D01* X2821Y19117D01* X2856Y19129D01* X2888Y19144D01* X2920Y19162D01* X2944Y19180D01* Y17834D01* X2934Y17840D01* X2902Y17858D01* X2869Y17873D01* X2835Y17884D01* X2826Y17886D01* X2817Y17886D01* X2809Y17885D01* X2801Y17882D01* X2793Y17878D01* X2786Y17872D01* X2780Y17865D01* X2776Y17858D01* X2773Y17850D01* X2771Y17841D01* X2771Y17833D01* X2772Y17824D01* X2775Y17816D01* X2779Y17808D01* X2785Y17801D01* X2792Y17796D01* X2799Y17791D01* X2807Y17788D01* X2833Y17779D01* X2858Y17768D01* X2881Y17755D01* X2904Y17740D01* X2925Y17723D01* X2944Y17704D01* Y17295D01* X2929Y17280D01* X2908Y17262D01* X2886Y17247D01* X2862Y17233D01* X2838Y17222D01* X2812Y17213D01* X2804Y17209D01* X2797Y17205D01* X2790Y17199D01* X2785Y17192D01* X2781Y17184D01* X2778Y17176D01* X2777Y17167D01* X2777Y17159D01* X2779Y17150D01* X2782Y17142D01* X2787Y17135D01* X2793Y17128D01* X2800Y17123D01* X2807Y17119D01* X2816Y17116D01* X2824Y17115D01* X2833Y17115D01* X2841Y17117D01* X2876Y17129D01* X2908Y17144D01* X2940Y17162D01* X2944Y17165D01* Y15846D01* X2922Y15858D01* X2889Y15873D01* X2855Y15884D01* X2846Y15886D01* X2837Y15886D01* X2829Y15885D01* X2821Y15882D01* X2813Y15878D01* X2806Y15872D01* X2800Y15865D01* X2796Y15858D01* X2793Y15850D01* X2791Y15841D01* X2791Y15833D01* X2792Y15824D01* X2795Y15816D01* X2799Y15808D01* X2805Y15801D01* X2812Y15796D01* X2819Y15791D01* X2827Y15788D01* X2853Y15779D01* X2878Y15768D01* X2901Y15755D01* X2924Y15740D01* X2944Y15724D01* Y15276D01* X2928Y15262D01* X2906Y15247D01* X2882Y15233D01* X2858Y15222D01* X2832Y15213D01* X2824Y15209D01* X2817Y15205D01* X2810Y15199D01* X2805Y15192D01* X2801Y15184D01* X2798Y15176D01* X2797Y15167D01* X2797Y15159D01* X2799Y15150D01* X2802Y15142D01* X2807Y15135D01* X2813Y15128D01* X2820Y15123D01* X2827Y15119D01* X2836Y15116D01* X2844Y15115D01* X2853Y15115D01* X2861Y15117D01* X2896Y15129D01* X2928Y15144D01* X2944Y15153D01* Y13857D01* X2942Y13858D01* X2909Y13873D01* X2875Y13884D01* X2866Y13886D01* X2857Y13886D01* X2849Y13885D01* X2841Y13882D01* X2833Y13878D01* X2826Y13872D01* X2820Y13865D01* X2816Y13858D01* X2813Y13850D01* X2811Y13841D01* X2811Y13833D01* X2812Y13824D01* X2815Y13816D01* X2819Y13808D01* X2825Y13801D01* X2832Y13796D01* X2839Y13791D01* X2847Y13788D01* X2873Y13779D01* X2898Y13768D01* X2921Y13755D01* X2944Y13740D01* Y13259D01* X2926Y13247D01* X2902Y13233D01* X2878Y13222D01* X2852Y13213D01* X2844Y13209D01* X2837Y13205D01* X2830Y13199D01* X2825Y13192D01* X2821Y13184D01* X2818Y13176D01* X2817Y13167D01* X2817Y13159D01* X2819Y13150D01* X2822Y13142D01* X2827Y13135D01* X2833Y13128D01* X2840Y13123D01* X2847Y13119D01* X2856Y13116D01* X2864Y13115D01* X2873Y13115D01* X2881Y13117D01* X2916Y13129D01* X2944Y13142D01* Y11866D01* X2929Y11873D01* X2895Y11884D01* X2886Y11886D01* X2877Y11886D01* X2869Y11885D01* X2861Y11882D01* X2853Y11878D01* X2846Y11872D01* X2840Y11865D01* X2836Y11858D01* X2833Y11850D01* X2831Y11841D01* X2831Y11833D01* X2832Y11824D01* X2835Y11816D01* X2839Y11808D01* X2845Y11801D01* X2852Y11796D01* X2859Y11791D01* X2867Y11788D01* X2893Y11779D01* X2918Y11768D01* X2941Y11755D01* X2944Y11754D01* Y11246D01* X2922Y11233D01* X2898Y11222D01* X2872Y11213D01* X2864Y11209D01* X2857Y11205D01* X2850Y11199D01* X2845Y11192D01* X2841Y11184D01* X2838Y11176D01* X2837Y11167D01* X2837Y11159D01* X2839Y11150D01* X2842Y11142D01* X2847Y11135D01* X2853Y11128D01* X2860Y11123D01* X2867Y11119D01* X2876Y11116D01* X2884Y11115D01* X2893Y11115D01* X2901Y11117D01* X2936Y11129D01* X2944Y11133D01* Y9874D01* X2915Y9884D01* X2906Y9886D01* X2897Y9886D01* X2889Y9885D01* X2881Y9882D01* X2873Y9878D01* X2866Y9872D01* X2860Y9865D01* X2856Y9858D01* X2853Y9850D01* X2851Y9841D01* X2851Y9833D01* X2852Y9824D01* X2855Y9816D01* X2859Y9808D01* X2865Y9801D01* X2872Y9796D01* X2879Y9791D01* X2887Y9788D01* X2913Y9779D01* X2938Y9768D01* X2944Y9765D01* Y9234D01* X2942Y9233D01* X2918Y9222D01* X2892Y9213D01* X2884Y9209D01* X2877Y9205D01* X2870Y9199D01* X2865Y9192D01* X2861Y9184D01* X2858Y9176D01* X2857Y9167D01* X2857Y9159D01* X2859Y9150D01* X2862Y9142D01* X2867Y9135D01* X2873Y9128D01* X2880Y9123D01* X2887Y9119D01* X2896Y9116D01* X2904Y9115D01* X2913Y9115D01* X2921Y9117D01* X2944Y9125D01* Y7881D01* X2935Y7884D01* X2926Y7886D01* X2917Y7886D01* X2909Y7885D01* X2901Y7882D01* X2893Y7878D01* X2886Y7872D01* X2880Y7865D01* X2876Y7858D01* X2873Y7850D01* X2871Y7841D01* X2871Y7833D01* X2872Y7824D01* X2875Y7816D01* X2879Y7808D01* X2885Y7801D01* X2892Y7796D01* X2899Y7791D01* X2907Y7788D01* X2933Y7779D01* X2944Y7774D01* Y7225D01* X2938Y7222D01* X2912Y7213D01* X2904Y7209D01* X2897Y7205D01* X2890Y7199D01* X2885Y7192D01* X2881Y7184D01* X2878Y7176D01* X2877Y7167D01* X2877Y7159D01* X2879Y7150D01* X2882Y7142D01* X2887Y7135D01* X2893Y7128D01* X2900Y7123D01* X2907Y7119D01* X2916Y7116D01* X2924Y7115D01* X2933Y7115D01* X2941Y7117D01* X2944Y7118D01* Y5886D01* X2937Y5886D01* X2929Y5885D01* X2921Y5882D01* X2913Y5878D01* X2906Y5872D01* X2900Y5865D01* X2896Y5858D01* X2893Y5850D01* X2891Y5841D01* X2891Y5833D01* X2892Y5824D01* X2895Y5816D01* X2899Y5808D01* X2905Y5801D01* X2912Y5796D01* X2919Y5791D01* X2927Y5788D01* X2944Y5782D01* Y5217D01* X2932Y5213D01* X2924Y5209D01* X2917Y5205D01* X2910Y5199D01* X2905Y5192D01* X2901Y5184D01* X2898Y5176D01* X2897Y5167D01* X2897Y5159D01* X2899Y5150D01* X2902Y5142D01* X2907Y5135D01* X2913Y5128D01* X2920Y5123D01* X2927Y5119D01* X2936Y5116D01* X2944Y5115D01* Y3883D01* X2941Y3882D01* X2933Y3878D01* X2926Y3872D01* X2920Y3865D01* X2916Y3858D01* X2913Y3850D01* X2911Y3841D01* X2911Y3833D01* X2912Y3824D01* X2915Y3816D01* X2919Y3808D01* X2925Y3801D01* X2932Y3796D01* X2939Y3791D01* X2944Y3789D01* Y3209D01* X2937Y3205D01* X2930Y3199D01* X2925Y3192D01* X2921Y3184D01* X2918Y3176D01* X2917Y3167D01* X2917Y3159D01* X2919Y3150D01* X2922Y3142D01* X2927Y3135D01* X2933Y3128D01* X2940Y3123D01* X2944Y3121D01* Y1870D01* X2940Y1865D01* X2936Y1858D01* X2933Y1850D01* X2931Y1841D01* X2931Y1833D01* X2932Y1824D01* X2935Y1816D01* X2939Y1808D01* X2944Y1802D01* Y1190D01* X2941Y1184D01* X2938Y1176D01* X2937Y1167D01* X2937Y1159D01* X2939Y1150D01* X2942Y1142D01* X2944Y1140D01* Y0D01* X2764D01* Y1119D01* X2774Y1115D01* X2783Y1113D01* X2792Y1113D01* X2800Y1115D01* X2808Y1117D01* X2816Y1122D01* X2823Y1127D01* X2829Y1134D01* X2833Y1141D01* X2836Y1149D01* X2838Y1158D01* X2838Y1167D01* X2837Y1175D01* X2834Y1183D01* X2830Y1191D01* X2824Y1198D01* X2817Y1204D01* X2810Y1208D01* X2802Y1211D01* X2776Y1220D01* X2764Y1225D01* Y1774D01* X2771Y1777D01* X2797Y1786D01* X2805Y1790D01* X2812Y1794D01* X2819Y1800D01* X2824Y1807D01* X2828Y1815D01* X2831Y1823D01* X2832Y1832D01* X2832Y1840D01* X2830Y1849D01* X2827Y1857D01* X2822Y1864D01* X2816Y1871D01* X2809Y1876D01* X2802Y1880D01* X2793Y1883D01* X2785Y1884D01* X2776Y1884D01* X2768Y1882D01* X2764Y1881D01* Y3113D01* X2772Y3113D01* X2780Y3115D01* X2788Y3117D01* X2796Y3122D01* X2803Y3127D01* X2809Y3134D01* X2813Y3141D01* X2816Y3149D01* X2818Y3158D01* X2818Y3167D01* X2817Y3175D01* X2814Y3183D01* X2810Y3191D01* X2804Y3198D01* X2797Y3204D01* X2790Y3208D01* X2782Y3211D01* X2764Y3217D01* Y3782D01* X2777Y3786D01* X2785Y3790D01* X2792Y3794D01* X2799Y3800D01* X2804Y3807D01* X2808Y3815D01* X2811Y3823D01* X2812Y3832D01* X2812Y3840D01* X2810Y3849D01* X2807Y3857D01* X2802Y3864D01* X2796Y3871D01* X2789Y3876D01* X2782Y3880D01* X2773Y3883D01* X2765Y3884D01* X2764D01* Y5116D01* X2768Y5117D01* X2776Y5122D01* X2783Y5127D01* X2789Y5134D01* X2793Y5141D01* X2796Y5149D01* X2798Y5158D01* X2798Y5167D01* X2797Y5175D01* X2794Y5183D01* X2790Y5191D01* X2784Y5198D01* X2777Y5204D01* X2770Y5208D01* X2764Y5210D01* Y5789D01* X2765Y5790D01* X2772Y5794D01* X2779Y5800D01* X2784Y5807D01* X2788Y5815D01* X2791Y5823D01* X2792Y5832D01* X2792Y5840D01* X2790Y5849D01* X2787Y5857D01* X2782Y5864D01* X2776Y5871D01* X2769Y5876D01* X2764Y5879D01* Y7128D01* X2769Y7134D01* X2773Y7141D01* X2776Y7149D01* X2778Y7158D01* X2778Y7167D01* X2777Y7175D01* X2774Y7183D01* X2770Y7191D01* X2764Y7198D01* X2764Y7198D01* Y7807D01* X2764Y7807D01* X2768Y7815D01* X2771Y7823D01* X2772Y7832D01* X2772Y7840D01* X2770Y7849D01* X2767Y7857D01* X2764Y7861D01* Y19140D01* G37* G36* X2944Y40000D02*X4445D01* Y39859D01* X4442Y39864D01* X4436Y39871D01* X4429Y39876D01* X4422Y39880D01* X4413Y39883D01* X4405Y39884D01* X4396Y39884D01* X4388Y39882D01* X4353Y39870D01* X4321Y39855D01* X4289Y39837D01* X4260Y39816D01* X4232Y39793D01* X4207Y39767D01* X4184Y39739D01* X4164Y39709D01* X4146Y39677D01* X4132Y39644D01* X4120Y39610D01* X4118Y39601D01* X4118Y39593D01* X4119Y39584D01* X4122Y39576D01* X4127Y39568D01* X4132Y39561D01* X4139Y39556D01* X4146Y39551D01* X4154Y39548D01* X4163Y39546D01* X4172Y39546D01* X4180Y39547D01* X4188Y39550D01* X4196Y39555D01* X4203Y39560D01* X4209Y39567D01* X4213Y39574D01* X4216Y39582D01* X4225Y39608D01* X4236Y39633D01* X4249Y39657D01* X4264Y39679D01* X4281Y39700D01* X4300Y39719D01* X4321Y39737D01* X4343Y39752D01* X4367Y39766D01* X4391Y39777D01* X4417Y39786D01* X4425Y39790D01* X4432Y39794D01* X4439Y39800D01* X4444Y39807D01* X4445Y39809D01* Y39197D01* X4444Y39198D01* X4437Y39204D01* X4430Y39208D01* X4422Y39211D01* X4396Y39220D01* X4371Y39231D01* X4348Y39244D01* X4325Y39259D01* X4304Y39276D01* X4285Y39295D01* X4267Y39316D01* X4252Y39338D01* X4238Y39362D01* X4227Y39386D01* X4218Y39412D01* X4214Y39420D01* X4210Y39427D01* X4204Y39434D01* X4197Y39439D01* X4189Y39443D01* X4181Y39446D01* X4172Y39447D01* X4164Y39447D01* X4155Y39445D01* X4147Y39442D01* X4140Y39437D01* X4133Y39431D01* X4128Y39424D01* X4124Y39417D01* X4121Y39409D01* X4120Y39400D01* X4120Y39391D01* X4122Y39383D01* X4134Y39349D01* X4149Y39316D01* X4167Y39284D01* X4188Y39255D01* X4212Y39227D01* X4237Y39202D01* X4265Y39179D01* X4295Y39159D01* X4327Y39141D01* X4360Y39127D01* X4394Y39115D01* X4403Y39113D01* X4412Y39113D01* X4420Y39115D01* X4428Y39117D01* X4436Y39122D01* X4443Y39127D01* X4445Y39130D01* Y37878D01* X4442Y37880D01* X4433Y37883D01* X4425Y37884D01* X4416Y37884D01* X4408Y37882D01* X4373Y37870D01* X4341Y37855D01* X4309Y37837D01* X4280Y37816D01* X4252Y37793D01* X4227Y37767D01* X4204Y37739D01* X4184Y37709D01* X4166Y37677D01* X4152Y37644D01* X4140Y37610D01* X4138Y37601D01* X4138Y37593D01* X4139Y37584D01* X4142Y37576D01* X4147Y37568D01* X4152Y37561D01* X4159Y37556D01* X4166Y37551D01* X4174Y37548D01* X4183Y37546D01* X4192Y37546D01* X4200Y37547D01* X4208Y37550D01* X4216Y37555D01* X4223Y37560D01* X4229Y37567D01* X4233Y37574D01* X4236Y37582D01* X4245Y37608D01* X4256Y37633D01* X4269Y37657D01* X4284Y37679D01* X4301Y37700D01* X4320Y37719D01* X4341Y37737D01* X4363Y37752D01* X4387Y37766D01* X4411Y37777D01* X4437Y37786D01* X4445Y37790D01* X4445Y37790D01* Y37210D01* X4442Y37211D01* X4416Y37220D01* X4391Y37231D01* X4368Y37244D01* X4345Y37259D01* X4324Y37276D01* X4305Y37295D01* X4287Y37316D01* X4272Y37338D01* X4258Y37362D01* X4247Y37386D01* X4238Y37412D01* X4234Y37420D01* X4230Y37427D01* X4224Y37434D01* X4217Y37439D01* X4209Y37443D01* X4201Y37446D01* X4192Y37447D01* X4184Y37447D01* X4175Y37445D01* X4167Y37442D01* X4160Y37437D01* X4153Y37431D01* X4148Y37424D01* X4144Y37417D01* X4141Y37409D01* X4140Y37400D01* X4140Y37391D01* X4142Y37383D01* X4154Y37349D01* X4169Y37316D01* X4187Y37284D01* X4208Y37255D01* X4232Y37227D01* X4257Y37202D01* X4285Y37179D01* X4315Y37159D01* X4347Y37141D01* X4380Y37127D01* X4414Y37115D01* X4423Y37113D01* X4432Y37113D01* X4440Y37115D01* X4445Y37116D01* Y35884D01* X4445Y35884D01* X4436Y35884D01* X4428Y35882D01* X4393Y35870D01* X4361Y35855D01* X4329Y35837D01* X4300Y35816D01* X4272Y35793D01* X4247Y35767D01* X4224Y35739D01* X4204Y35709D01* X4186Y35677D01* X4172Y35644D01* X4160Y35610D01* X4158Y35601D01* X4158Y35593D01* X4159Y35584D01* X4162Y35576D01* X4167Y35568D01* X4172Y35561D01* X4179Y35556D01* X4186Y35551D01* X4194Y35548D01* X4203Y35546D01* X4212Y35546D01* X4220Y35547D01* X4228Y35550D01* X4236Y35555D01* X4243Y35560D01* X4249Y35567D01* X4253Y35574D01* X4256Y35582D01* X4265Y35608D01* X4276Y35633D01* X4289Y35657D01* X4304Y35679D01* X4321Y35700D01* X4340Y35719D01* X4361Y35737D01* X4383Y35752D01* X4407Y35766D01* X4431Y35777D01* X4445Y35782D01* Y35217D01* X4436Y35220D01* X4411Y35231D01* X4388Y35244D01* X4365Y35259D01* X4344Y35276D01* X4325Y35295D01* X4307Y35316D01* X4292Y35338D01* X4278Y35362D01* X4267Y35386D01* X4258Y35412D01* X4254Y35420D01* X4250Y35427D01* X4244Y35434D01* X4237Y35439D01* X4229Y35443D01* X4221Y35446D01* X4212Y35447D01* X4204Y35447D01* X4195Y35445D01* X4187Y35442D01* X4180Y35437D01* X4173Y35431D01* X4168Y35424D01* X4164Y35417D01* X4161Y35409D01* X4160Y35400D01* X4160Y35391D01* X4162Y35383D01* X4174Y35349D01* X4189Y35316D01* X4207Y35284D01* X4228Y35255D01* X4252Y35227D01* X4277Y35202D01* X4305Y35179D01* X4335Y35159D01* X4367Y35141D01* X4400Y35127D01* X4434Y35115D01* X4443Y35113D01* X4445D01* Y33881D01* X4413Y33870D01* X4381Y33855D01* X4349Y33837D01* X4320Y33816D01* X4292Y33793D01* X4267Y33767D01* X4244Y33739D01* X4224Y33709D01* X4206Y33677D01* X4192Y33644D01* X4180Y33610D01* X4178Y33601D01* X4178Y33593D01* X4179Y33584D01* X4182Y33576D01* X4187Y33568D01* X4192Y33561D01* X4199Y33556D01* X4206Y33551D01* X4214Y33548D01* X4223Y33546D01* X4232Y33546D01* X4240Y33547D01* X4248Y33550D01* X4256Y33555D01* X4263Y33560D01* X4269Y33567D01* X4273Y33574D01* X4276Y33582D01* X4285Y33608D01* X4296Y33633D01* X4309Y33657D01* X4324Y33679D01* X4341Y33700D01* X4360Y33719D01* X4381Y33737D01* X4403Y33752D01* X4427Y33766D01* X4445Y33775D01* Y33225D01* X4431Y33231D01* X4408Y33244D01* X4385Y33259D01* X4364Y33276D01* X4345Y33295D01* X4327Y33316D01* X4312Y33338D01* X4298Y33362D01* X4287Y33386D01* X4278Y33412D01* X4274Y33420D01* X4270Y33427D01* X4264Y33434D01* X4257Y33439D01* X4249Y33443D01* X4241Y33446D01* X4232Y33447D01* X4224Y33447D01* X4215Y33445D01* X4207Y33442D01* X4200Y33437D01* X4193Y33431D01* X4188Y33424D01* X4184Y33417D01* X4181Y33409D01* X4180Y33400D01* X4180Y33391D01* X4182Y33383D01* X4194Y33349D01* X4209Y33316D01* X4227Y33284D01* X4248Y33255D01* X4272Y33227D01* X4297Y33202D01* X4325Y33179D01* X4355Y33159D01* X4387Y33141D01* X4420Y33127D01* X4445Y33118D01* Y31874D01* X4433Y31870D01* X4401Y31855D01* X4369Y31837D01* X4340Y31816D01* X4312Y31793D01* X4287Y31767D01* X4264Y31739D01* X4244Y31709D01* X4226Y31677D01* X4212Y31644D01* X4200Y31610D01* X4198Y31601D01* X4198Y31593D01* X4199Y31584D01* X4202Y31576D01* X4207Y31568D01* X4212Y31561D01* X4219Y31556D01* X4226Y31551D01* X4234Y31548D01* X4243Y31546D01* X4252Y31546D01* X4260Y31547D01* X4268Y31550D01* X4276Y31555D01* X4283Y31560D01* X4289Y31567D01* X4293Y31574D01* X4296Y31582D01* X4305Y31608D01* X4316Y31633D01* X4329Y31657D01* X4344Y31679D01* X4361Y31700D01* X4380Y31719D01* X4401Y31737D01* X4423Y31752D01* X4445Y31765D01* Y31234D01* X4428Y31244D01* X4405Y31259D01* X4384Y31276D01* X4365Y31295D01* X4347Y31316D01* X4332Y31338D01* X4318Y31362D01* X4307Y31386D01* X4298Y31412D01* X4294Y31420D01* X4290Y31427D01* X4284Y31434D01* X4277Y31439D01* X4269Y31443D01* X4261Y31446D01* X4252Y31447D01* X4244Y31447D01* X4235Y31445D01* X4227Y31442D01* X4220Y31437D01* X4213Y31431D01* X4208Y31424D01* X4204Y31417D01* X4201Y31409D01* X4200Y31400D01* X4200Y31391D01* X4202Y31383D01* X4214Y31349D01* X4229Y31316D01* X4247Y31284D01* X4268Y31255D01* X4292Y31227D01* X4317Y31202D01* X4345Y31179D01* X4375Y31159D01* X4407Y31141D01* X4440Y31127D01* X4445Y31125D01* Y29866D01* X4421Y29855D01* X4389Y29837D01* X4360Y29816D01* X4332Y29793D01* X4307Y29767D01* X4284Y29739D01* X4264Y29709D01* X4246Y29677D01* X4232Y29644D01* X4220Y29610D01* X4218Y29601D01* X4218Y29593D01* X4219Y29584D01* X4222Y29576D01* X4227Y29568D01* X4232Y29561D01* X4239Y29556D01* X4246Y29551D01* X4254Y29548D01* X4263Y29546D01* X4272Y29546D01* X4280Y29547D01* X4288Y29550D01* X4296Y29555D01* X4303Y29560D01* X4309Y29567D01* X4313Y29574D01* X4316Y29582D01* X4325Y29608D01* X4336Y29633D01* X4349Y29657D01* X4364Y29679D01* X4381Y29700D01* X4400Y29719D01* X4421Y29737D01* X4443Y29752D01* X4445Y29754D01* Y29246D01* X4425Y29259D01* X4404Y29276D01* X4385Y29295D01* X4367Y29316D01* X4352Y29338D01* X4338Y29362D01* X4327Y29386D01* X4318Y29412D01* X4314Y29420D01* X4310Y29427D01* X4304Y29434D01* X4297Y29439D01* X4289Y29443D01* X4281Y29446D01* X4272Y29447D01* X4264Y29447D01* X4255Y29445D01* X4247Y29442D01* X4240Y29437D01* X4233Y29431D01* X4228Y29424D01* X4224Y29417D01* X4221Y29409D01* X4220Y29400D01* X4220Y29391D01* X4222Y29383D01* X4234Y29349D01* X4249Y29316D01* X4267Y29284D01* X4288Y29255D01* X4312Y29227D01* X4337Y29202D01* X4365Y29179D01* X4395Y29159D01* X4427Y29141D01* X4445Y29133D01* Y27857D01* X4441Y27855D01* X4409Y27837D01* X4380Y27816D01* X4352Y27793D01* X4327Y27767D01* X4304Y27739D01* X4284Y27709D01* X4266Y27677D01* X4252Y27644D01* X4240Y27610D01* X4238Y27601D01* X4238Y27593D01* X4239Y27584D01* X4242Y27576D01* X4247Y27568D01* X4252Y27561D01* X4259Y27556D01* X4266Y27551D01* X4274Y27548D01* X4283Y27546D01* X4292Y27546D01* X4300Y27547D01* X4308Y27550D01* X4316Y27555D01* X4323Y27560D01* X4329Y27567D01* X4333Y27574D01* X4336Y27582D01* X4345Y27608D01* X4356Y27633D01* X4369Y27657D01* X4384Y27679D01* X4401Y27700D01* X4420Y27719D01* X4441Y27737D01* X4445Y27740D01* Y27259D01* X4445Y27259D01* X4424Y27276D01* X4405Y27295D01* X4387Y27316D01* X4372Y27338D01* X4358Y27362D01* X4347Y27386D01* X4338Y27412D01* X4334Y27420D01* X4330Y27427D01* X4324Y27434D01* X4317Y27439D01* X4309Y27443D01* X4301Y27446D01* X4292Y27447D01* X4284Y27447D01* X4275Y27445D01* X4267Y27442D01* X4260Y27437D01* X4253Y27431D01* X4248Y27424D01* X4244Y27417D01* X4241Y27409D01* X4240Y27400D01* X4240Y27391D01* X4242Y27383D01* X4254Y27349D01* X4269Y27316D01* X4287Y27284D01* X4308Y27255D01* X4332Y27227D01* X4357Y27202D01* X4385Y27179D01* X4415Y27159D01* X4445Y27142D01* Y25846D01* X4429Y25837D01* X4400Y25816D01* X4372Y25793D01* X4347Y25767D01* X4324Y25739D01* X4304Y25709D01* X4286Y25677D01* X4272Y25644D01* X4260Y25610D01* X4258Y25601D01* X4258Y25593D01* X4259Y25584D01* X4262Y25576D01* X4267Y25568D01* X4272Y25561D01* X4279Y25556D01* X4286Y25551D01* X4294Y25548D01* X4303Y25546D01* X4312Y25546D01* X4320Y25547D01* X4328Y25550D01* X4336Y25555D01* X4343Y25560D01* X4349Y25567D01* X4353Y25574D01* X4356Y25582D01* X4365Y25608D01* X4376Y25633D01* X4389Y25657D01* X4404Y25679D01* X4421Y25700D01* X4440Y25719D01* X4445Y25723D01* Y25276D01* X4444Y25276D01* X4425Y25295D01* X4407Y25316D01* X4392Y25338D01* X4378Y25362D01* X4367Y25386D01* X4358Y25412D01* X4354Y25420D01* X4350Y25427D01* X4344Y25434D01* X4337Y25439D01* X4329Y25443D01* X4321Y25446D01* X4312Y25447D01* X4304Y25447D01* X4295Y25445D01* X4287Y25442D01* X4280Y25437D01* X4273Y25431D01* X4268Y25424D01* X4264Y25417D01* X4261Y25409D01* X4260Y25400D01* X4260Y25391D01* X4262Y25383D01* X4274Y25349D01* X4289Y25316D01* X4307Y25284D01* X4328Y25255D01* X4352Y25227D01* X4377Y25202D01* X4405Y25179D01* X4435Y25159D01* X4445Y25153D01* Y23834D01* X4420Y23816D01* X4392Y23793D01* X4367Y23767D01* X4344Y23739D01* X4324Y23709D01* X4306Y23677D01* X4292Y23644D01* X4280Y23610D01* X4278Y23601D01* X4278Y23593D01* X4279Y23584D01* X4282Y23576D01* X4287Y23568D01* X4292Y23561D01* X4299Y23556D01* X4306Y23551D01* X4314Y23548D01* X4323Y23546D01* X4332Y23546D01* X4340Y23547D01* X4348Y23550D01* X4356Y23555D01* X4363Y23560D01* X4369Y23567D01* X4373Y23574D01* X4376Y23582D01* X4385Y23608D01* X4396Y23633D01* X4409Y23657D01* X4424Y23679D01* X4441Y23700D01* X4445Y23704D01* Y23295D01* X4445Y23295D01* X4427Y23316D01* X4412Y23338D01* X4398Y23362D01* X4387Y23386D01* X4378Y23412D01* X4374Y23420D01* X4370Y23427D01* X4364Y23434D01* X4357Y23439D01* X4349Y23443D01* X4341Y23446D01* X4332Y23447D01* X4324Y23447D01* X4315Y23445D01* X4307Y23442D01* X4300Y23437D01* X4293Y23431D01* X4288Y23424D01* X4284Y23417D01* X4281Y23409D01* X4280Y23400D01* X4280Y23391D01* X4282Y23383D01* X4294Y23349D01* X4309Y23316D01* X4327Y23284D01* X4348Y23255D01* X4372Y23227D01* X4397Y23202D01* X4425Y23179D01* X4445Y23166D01* Y21820D01* X4440Y21816D01* X4412Y21793D01* X4387Y21767D01* X4364Y21739D01* X4344Y21709D01* X4326Y21677D01* X4312Y21644D01* X4300Y21610D01* X4298Y21601D01* X4298Y21593D01* X4299Y21584D01* X4302Y21576D01* X4307Y21568D01* X4312Y21561D01* X4319Y21556D01* X4326Y21551D01* X4334Y21548D01* X4343Y21546D01* X4352Y21546D01* X4360Y21547D01* X4368Y21550D01* X4376Y21555D01* X4383Y21560D01* X4389Y21567D01* X4393Y21574D01* X4396Y21582D01* X4405Y21608D01* X4416Y21633D01* X4429Y21657D01* X4444Y21679D01* X4445Y21680D01* Y21319D01* X4432Y21338D01* X4418Y21362D01* X4407Y21386D01* X4398Y21412D01* X4394Y21420D01* X4390Y21427D01* X4384Y21434D01* X4377Y21439D01* X4369Y21443D01* X4361Y21446D01* X4352Y21447D01* X4344Y21447D01* X4335Y21445D01* X4327Y21442D01* X4320Y21437D01* X4313Y21431D01* X4308Y21424D01* X4304Y21417D01* X4301Y21409D01* X4300Y21400D01* X4300Y21391D01* X4302Y21383D01* X4314Y21349D01* X4329Y21316D01* X4347Y21284D01* X4368Y21255D01* X4392Y21227D01* X4417Y21202D01* X4445Y21179D01* Y19804D01* X4432Y19793D01* X4407Y19767D01* X4384Y19739D01* X4364Y19709D01* X4346Y19677D01* X4332Y19644D01* X4320Y19610D01* X4318Y19601D01* X4318Y19593D01* X4319Y19584D01* X4322Y19576D01* X4327Y19568D01* X4332Y19561D01* X4339Y19556D01* X4346Y19551D01* X4354Y19548D01* X4363Y19546D01* X4372Y19546D01* X4380Y19547D01* X4388Y19550D01* X4396Y19555D01* X4403Y19560D01* X4409Y19567D01* X4413Y19574D01* X4416Y19582D01* X4425Y19608D01* X4436Y19633D01* X4445Y19650D01* Y19349D01* X4438Y19362D01* X4427Y19386D01* X4418Y19412D01* X4414Y19420D01* X4410Y19427D01* X4404Y19434D01* X4397Y19439D01* X4389Y19443D01* X4381Y19446D01* X4372Y19447D01* X4364Y19447D01* X4355Y19445D01* X4347Y19442D01* X4340Y19437D01* X4333Y19431D01* X4328Y19424D01* X4324Y19417D01* X4321Y19409D01* X4320Y19400D01* X4320Y19391D01* X4322Y19383D01* X4334Y19349D01* X4349Y19316D01* X4367Y19284D01* X4388Y19255D01* X4412Y19227D01* X4437Y19202D01* X4445Y19196D01* Y17785D01* X4427Y17767D01* X4404Y17739D01* X4384Y17709D01* X4366Y17677D01* X4352Y17644D01* X4340Y17610D01* X4338Y17601D01* X4338Y17593D01* X4339Y17584D01* X4342Y17576D01* X4347Y17568D01* X4352Y17561D01* X4359Y17556D01* X4366Y17551D01* X4374Y17548D01* X4383Y17546D01* X4392Y17546D01* X4400Y17547D01* X4408Y17550D01* X4416Y17555D01* X4423Y17560D01* X4429Y17567D01* X4433Y17574D01* X4436Y17582D01* X4445Y17608D01* X4445Y17609D01* Y17391D01* X4438Y17412D01* X4434Y17420D01* X4430Y17427D01* X4424Y17434D01* X4417Y17439D01* X4409Y17443D01* X4401Y17446D01* X4392Y17447D01* X4384Y17447D01* X4375Y17445D01* X4367Y17442D01* X4360Y17437D01* X4353Y17431D01* X4348Y17424D01* X4344Y17417D01* X4341Y17409D01* X4340Y17400D01* X4340Y17391D01* X4342Y17383D01* X4354Y17349D01* X4369Y17316D01* X4387Y17284D01* X4408Y17255D01* X4432Y17227D01* X4445Y17214D01* Y15765D01* X4424Y15739D01* X4404Y15709D01* X4386Y15677D01* X4372Y15644D01* X4360Y15610D01* X4358Y15601D01* X4358Y15593D01* X4359Y15584D01* X4362Y15576D01* X4367Y15568D01* X4372Y15561D01* X4379Y15556D01* X4386Y15551D01* X4394Y15548D01* X4403Y15546D01* X4412Y15546D01* X4420Y15547D01* X4428Y15550D01* X4436Y15555D01* X4443Y15560D01* X4445Y15563D01* Y15432D01* X4444Y15434D01* X4437Y15439D01* X4429Y15443D01* X4421Y15446D01* X4412Y15447D01* X4404Y15447D01* X4395Y15445D01* X4387Y15442D01* X4380Y15437D01* X4373Y15431D01* X4368Y15424D01* X4364Y15417D01* X4361Y15409D01* X4360Y15400D01* X4360Y15391D01* X4362Y15383D01* X4374Y15349D01* X4389Y15316D01* X4407Y15284D01* X4428Y15255D01* X4445Y15235D01* Y13740D01* X4444Y13739D01* X4424Y13709D01* X4406Y13677D01* X4392Y13644D01* X4380Y13610D01* X4378Y13601D01* X4378Y13593D01* X4379Y13584D01* X4382Y13576D01* X4387Y13568D01* X4392Y13561D01* X4399Y13556D01* X4406Y13551D01* X4414Y13548D01* X4423Y13546D01* X4432Y13546D01* X4440Y13547D01* X4445Y13549D01* Y13445D01* X4441Y13446D01* X4432Y13447D01* X4424Y13447D01* X4415Y13445D01* X4407Y13442D01* X4400Y13437D01* X4393Y13431D01* X4388Y13424D01* X4384Y13417D01* X4381Y13409D01* X4380Y13400D01* X4380Y13391D01* X4382Y13383D01* X4394Y13349D01* X4409Y13316D01* X4427Y13284D01* X4445Y13259D01* Y11711D01* X4444Y11709D01* X4426Y11677D01* X4412Y11644D01* X4400Y11610D01* X4398Y11601D01* X4398Y11593D01* X4399Y11584D01* X4402Y11576D01* X4407Y11568D01* X4412Y11561D01* X4419Y11556D01* X4426Y11551D01* X4434Y11548D01* X4443Y11546D01* X4445D01* Y11447D01* X4444Y11447D01* X4435Y11445D01* X4427Y11442D01* X4420Y11437D01* X4413Y11431D01* X4408Y11424D01* X4404Y11417D01* X4401Y11409D01* X4400Y11400D01* X4400Y11391D01* X4402Y11383D01* X4414Y11349D01* X4429Y11316D01* X4445Y11288D01* Y9675D01* X4432Y9644D01* X4420Y9610D01* X4418Y9601D01* X4418Y9593D01* X4419Y9584D01* X4422Y9576D01* X4427Y9568D01* X4432Y9561D01* X4439Y9556D01* X4445Y9552D01* Y9441D01* X4440Y9437D01* X4433Y9431D01* X4428Y9424D01* X4424Y9417D01* X4421Y9409D01* X4420Y9400D01* X4420Y9391D01* X4422Y9383D01* X4434Y9349D01* X4445Y9325D01* Y7625D01* X4440Y7610D01* X4438Y7601D01* X4438Y7593D01* X4439Y7584D01* X4442Y7576D01* X4445Y7571D01* Y7419D01* X4444Y7417D01* X4441Y7409D01* X4440Y7400D01* X4440Y7391D01* X4442Y7383D01* X4445Y7374D01* Y0D01* X2944D01* Y1140D01* X2947Y1135D01* X2953Y1128D01* X2960Y1123D01* X2967Y1119D01* X2976Y1116D01* X2984Y1115D01* X2993Y1115D01* X3001Y1117D01* X3036Y1129D01* X3068Y1144D01* X3100Y1162D01* X3129Y1183D01* X3157Y1207D01* X3182Y1232D01* X3205Y1260D01* X3225Y1290D01* X3243Y1322D01* X3257Y1355D01* X3269Y1389D01* X3271Y1398D01* X3271Y1407D01* X3270Y1415D01* X3267Y1423D01* X3262Y1431D01* X3257Y1438D01* X3250Y1444D01* X3243Y1448D01* X3235Y1451D01* X3226Y1453D01* X3217Y1453D01* X3209Y1452D01* X3201Y1449D01* X3193Y1445D01* X3186Y1439D01* X3180Y1433D01* X3176Y1425D01* X3173Y1417D01* X3164Y1391D01* X3153Y1366D01* X3140Y1343D01* X3125Y1320D01* X3108Y1299D01* X3089Y1280D01* X3068Y1262D01* X3046Y1247D01* X3022Y1233D01* X2998Y1222D01* X2972Y1213D01* X2964Y1209D01* X2957Y1205D01* X2950Y1199D01* X2945Y1192D01* X2944Y1190D01* Y1802D01* X2945Y1801D01* X2952Y1796D01* X2959Y1791D01* X2967Y1788D01* X2993Y1779D01* X3018Y1768D01* X3041Y1755D01* X3064Y1740D01* X3085Y1723D01* X3104Y1704D01* X3122Y1683D01* X3137Y1661D01* X3151Y1637D01* X3162Y1613D01* X3171Y1587D01* X3175Y1579D01* X3179Y1572D01* X3185Y1565D01* X3192Y1560D01* X3200Y1556D01* X3208Y1553D01* X3217Y1552D01* X3225Y1552D01* X3234Y1554D01* X3242Y1557D01* X3249Y1562D01* X3256Y1568D01* X3261Y1575D01* X3265Y1582D01* X3268Y1591D01* X3269Y1599D01* X3269Y1608D01* X3267Y1617D01* X3255Y1651D01* X3240Y1683D01* X3222Y1715D01* X3201Y1744D01* X3177Y1772D01* X3152Y1797D01* X3124Y1820D01* X3094Y1840D01* X3062Y1858D01* X3029Y1873D01* X2995Y1884D01* X2986Y1886D01* X2977Y1886D01* X2969Y1885D01* X2961Y1882D01* X2953Y1878D01* X2946Y1872D01* X2944Y1870D01* Y3121D01* X2947Y3119D01* X2956Y3116D01* X2964Y3115D01* X2973Y3115D01* X2981Y3117D01* X3016Y3129D01* X3048Y3144D01* X3080Y3162D01* X3109Y3183D01* X3137Y3207D01* X3162Y3232D01* X3185Y3260D01* X3205Y3290D01* X3223Y3322D01* X3237Y3355D01* X3249Y3389D01* X3251Y3398D01* X3251Y3407D01* X3250Y3415D01* X3247Y3423D01* X3242Y3431D01* X3237Y3438D01* X3230Y3444D01* X3223Y3448D01* X3215Y3451D01* X3206Y3453D01* X3197Y3453D01* X3189Y3452D01* X3181Y3449D01* X3173Y3445D01* X3166Y3439D01* X3160Y3433D01* X3156Y3425D01* X3153Y3417D01* X3144Y3391D01* X3133Y3366D01* X3120Y3343D01* X3105Y3320D01* X3088Y3299D01* X3069Y3280D01* X3048Y3262D01* X3026Y3247D01* X3002Y3233D01* X2978Y3222D01* X2952Y3213D01* X2944Y3209D01* X2944Y3209D01* Y3789D01* X2947Y3788D01* X2973Y3779D01* X2998Y3768D01* X3021Y3755D01* X3044Y3740D01* X3065Y3723D01* X3084Y3704D01* X3102Y3683D01* X3117Y3661D01* X3131Y3637D01* X3142Y3613D01* X3151Y3587D01* X3155Y3579D01* X3159Y3572D01* X3165Y3565D01* X3172Y3560D01* X3180Y3556D01* X3188Y3553D01* X3197Y3552D01* X3205Y3552D01* X3214Y3554D01* X3222Y3557D01* X3229Y3562D01* X3236Y3568D01* X3241Y3575D01* X3245Y3582D01* X3248Y3591D01* X3249Y3599D01* X3249Y3608D01* X3247Y3617D01* X3235Y3651D01* X3220Y3683D01* X3202Y3715D01* X3181Y3744D01* X3157Y3772D01* X3132Y3797D01* X3104Y3820D01* X3074Y3840D01* X3042Y3858D01* X3009Y3873D01* X2975Y3884D01* X2966Y3886D01* X2957Y3886D01* X2949Y3885D01* X2944Y3883D01* Y5115D01* X2944D01* X2953Y5115D01* X2961Y5117D01* X2996Y5129D01* X3028Y5144D01* X3060Y5162D01* X3089Y5183D01* X3117Y5207D01* X3142Y5232D01* X3165Y5260D01* X3185Y5290D01* X3203Y5322D01* X3217Y5355D01* X3229Y5389D01* X3231Y5398D01* X3231Y5407D01* X3230Y5415D01* X3227Y5423D01* X3222Y5431D01* X3217Y5438D01* X3210Y5444D01* X3203Y5448D01* X3195Y5451D01* X3186Y5453D01* X3177Y5453D01* X3169Y5452D01* X3161Y5449D01* X3153Y5445D01* X3146Y5439D01* X3140Y5433D01* X3136Y5425D01* X3133Y5417D01* X3124Y5391D01* X3113Y5366D01* X3100Y5343D01* X3085Y5320D01* X3068Y5299D01* X3049Y5280D01* X3028Y5262D01* X3006Y5247D01* X2982Y5233D01* X2958Y5222D01* X2944Y5217D01* Y5782D01* X2953Y5779D01* X2978Y5768D01* X3001Y5755D01* X3024Y5740D01* X3045Y5723D01* X3064Y5704D01* X3082Y5683D01* X3097Y5661D01* X3111Y5637D01* X3122Y5613D01* X3131Y5587D01* X3135Y5579D01* X3139Y5572D01* X3145Y5565D01* X3152Y5560D01* X3160Y5556D01* X3168Y5553D01* X3177Y5552D01* X3185Y5552D01* X3194Y5554D01* X3202Y5557D01* X3209Y5562D01* X3216Y5568D01* X3221Y5575D01* X3225Y5582D01* X3228Y5591D01* X3229Y5599D01* X3229Y5608D01* X3227Y5617D01* X3215Y5651D01* X3200Y5683D01* X3182Y5715D01* X3161Y5744D01* X3137Y5772D01* X3112Y5797D01* X3084Y5820D01* X3054Y5840D01* X3022Y5858D01* X2989Y5873D01* X2955Y5884D01* X2946Y5886D01* X2944D01* Y7118D01* X2976Y7129D01* X3008Y7144D01* X3040Y7162D01* X3069Y7183D01* X3097Y7207D01* X3122Y7232D01* X3145Y7260D01* X3165Y7290D01* X3183Y7322D01* X3197Y7355D01* X3209Y7389D01* X3211Y7398D01* X3211Y7407D01* X3210Y7415D01* X3207Y7423D01* X3202Y7431D01* X3197Y7438D01* X3190Y7444D01* X3183Y7448D01* X3175Y7451D01* X3166Y7453D01* X3157Y7453D01* X3149Y7452D01* X3141Y7449D01* X3133Y7445D01* X3126Y7439D01* X3120Y7433D01* X3116Y7425D01* X3113Y7417D01* X3104Y7391D01* X3093Y7366D01* X3080Y7343D01* X3065Y7320D01* X3048Y7299D01* X3029Y7280D01* X3008Y7262D01* X2986Y7247D01* X2962Y7233D01* X2944Y7225D01* Y7774D01* X2958Y7768D01* X2981Y7755D01* X3004Y7740D01* X3025Y7723D01* X3044Y7704D01* X3062Y7683D01* X3077Y7661D01* X3091Y7637D01* X3102Y7613D01* X3111Y7587D01* X3115Y7579D01* X3119Y7572D01* X3125Y7565D01* X3132Y7560D01* X3140Y7556D01* X3148Y7553D01* X3157Y7552D01* X3165Y7552D01* X3174Y7554D01* X3182Y7557D01* X3189Y7562D01* X3196Y7568D01* X3201Y7575D01* X3205Y7582D01* X3208Y7591D01* X3209Y7599D01* X3209Y7608D01* X3207Y7617D01* X3195Y7651D01* X3180Y7683D01* X3162Y7715D01* X3141Y7744D01* X3117Y7772D01* X3092Y7797D01* X3064Y7820D01* X3034Y7840D01* X3002Y7858D01* X2969Y7873D01* X2944Y7881D01* Y9125D01* X2956Y9129D01* X2988Y9144D01* X3020Y9162D01* X3049Y9183D01* X3077Y9207D01* X3102Y9232D01* X3125Y9260D01* X3145Y9290D01* X3163Y9322D01* X3177Y9355D01* X3189Y9389D01* X3191Y9398D01* X3191Y9407D01* X3190Y9415D01* X3187Y9423D01* X3182Y9431D01* X3177Y9438D01* X3170Y9444D01* X3163Y9448D01* X3155Y9451D01* X3146Y9453D01* X3137Y9453D01* X3129Y9452D01* X3121Y9449D01* X3113Y9445D01* X3106Y9439D01* X3100Y9433D01* X3096Y9425D01* X3093Y9417D01* X3084Y9391D01* X3073Y9366D01* X3060Y9343D01* X3045Y9320D01* X3028Y9299D01* X3009Y9280D01* X2988Y9262D01* X2966Y9247D01* X2944Y9234D01* Y9765D01* X2961Y9755D01* X2984Y9740D01* X3005Y9723D01* X3024Y9704D01* X3042Y9683D01* X3057Y9661D01* X3071Y9637D01* X3082Y9613D01* X3091Y9587D01* X3095Y9579D01* X3099Y9572D01* X3105Y9565D01* X3112Y9560D01* X3120Y9556D01* X3128Y9553D01* X3137Y9552D01* X3145Y9552D01* X3154Y9554D01* X3162Y9557D01* X3169Y9562D01* X3176Y9568D01* X3181Y9575D01* X3185Y9582D01* X3188Y9591D01* X3189Y9599D01* X3189Y9608D01* X3187Y9617D01* X3175Y9651D01* X3160Y9683D01* X3142Y9715D01* X3121Y9744D01* X3097Y9772D01* X3072Y9797D01* X3044Y9820D01* X3014Y9840D01* X2982Y9858D01* X2949Y9873D01* X2944Y9874D01* Y11133D01* X2968Y11144D01* X3000Y11162D01* X3029Y11183D01* X3057Y11207D01* X3082Y11232D01* X3105Y11260D01* X3125Y11290D01* X3143Y11322D01* X3157Y11355D01* X3169Y11389D01* X3171Y11398D01* X3171Y11407D01* X3170Y11415D01* X3167Y11423D01* X3162Y11431D01* X3157Y11438D01* X3150Y11444D01* X3143Y11448D01* X3135Y11451D01* X3126Y11453D01* X3117Y11453D01* X3109Y11452D01* X3101Y11449D01* X3093Y11445D01* X3086Y11439D01* X3080Y11433D01* X3076Y11425D01* X3073Y11417D01* X3064Y11391D01* X3053Y11366D01* X3040Y11343D01* X3025Y11320D01* X3008Y11299D01* X2989Y11280D01* X2968Y11262D01* X2946Y11247D01* X2944Y11246D01* Y11754D01* X2964Y11740D01* X2985Y11723D01* X3004Y11704D01* X3022Y11683D01* X3037Y11661D01* X3051Y11637D01* X3062Y11613D01* X3071Y11587D01* X3075Y11579D01* X3079Y11572D01* X3085Y11565D01* X3092Y11560D01* X3100Y11556D01* X3108Y11553D01* X3117Y11552D01* X3125Y11552D01* X3134Y11554D01* X3142Y11557D01* X3149Y11562D01* X3156Y11568D01* X3161Y11575D01* X3165Y11582D01* X3168Y11591D01* X3169Y11599D01* X3169Y11608D01* X3167Y11617D01* X3155Y11651D01* X3140Y11683D01* X3122Y11715D01* X3101Y11744D01* X3077Y11772D01* X3052Y11797D01* X3024Y11820D01* X2994Y11840D01* X2962Y11858D01* X2944Y11866D01* Y13142D01* X2948Y13144D01* X2980Y13162D01* X3009Y13183D01* X3037Y13207D01* X3062Y13232D01* X3085Y13260D01* X3105Y13290D01* X3123Y13322D01* X3137Y13355D01* X3149Y13389D01* X3151Y13398D01* X3151Y13407D01* X3150Y13415D01* X3147Y13423D01* X3142Y13431D01* X3137Y13438D01* X3130Y13444D01* X3123Y13448D01* X3115Y13451D01* X3106Y13453D01* X3097Y13453D01* X3089Y13452D01* X3081Y13449D01* X3073Y13445D01* X3066Y13439D01* X3060Y13433D01* X3056Y13425D01* X3053Y13417D01* X3044Y13391D01* X3033Y13366D01* X3020Y13343D01* X3005Y13320D01* X2988Y13299D01* X2969Y13280D01* X2948Y13262D01* X2944Y13259D01* Y13740D01* X2965Y13723D01* X2984Y13704D01* X3002Y13683D01* X3017Y13661D01* X3031Y13637D01* X3042Y13613D01* X3051Y13587D01* X3055Y13579D01* X3059Y13572D01* X3065Y13565D01* X3072Y13560D01* X3080Y13556D01* X3088Y13553D01* X3097Y13552D01* X3105Y13552D01* X3114Y13554D01* X3122Y13557D01* X3129Y13562D01* X3136Y13568D01* X3141Y13575D01* X3145Y13582D01* X3148Y13591D01* X3149Y13599D01* X3149Y13608D01* X3147Y13617D01* X3135Y13651D01* X3120Y13683D01* X3102Y13715D01* X3081Y13744D01* X3057Y13772D01* X3032Y13797D01* X3004Y13820D01* X2974Y13840D01* X2944Y13857D01* Y15153D01* X2960Y15162D01* X2989Y15183D01* X3017Y15207D01* X3042Y15232D01* X3065Y15260D01* X3085Y15290D01* X3103Y15322D01* X3117Y15355D01* X3129Y15389D01* X3131Y15398D01* X3131Y15407D01* X3130Y15415D01* X3127Y15423D01* X3122Y15431D01* X3117Y15438D01* X3110Y15444D01* X3103Y15448D01* X3095Y15451D01* X3086Y15453D01* X3077Y15453D01* X3069Y15452D01* X3061Y15449D01* X3053Y15445D01* X3046Y15439D01* X3040Y15433D01* X3036Y15425D01* X3033Y15417D01* X3024Y15391D01* X3013Y15366D01* X3000Y15343D01* X2985Y15320D01* X2968Y15299D01* X2949Y15280D01* X2944Y15276D01* Y15724D01* X2945Y15723D01* X2964Y15704D01* X2982Y15683D01* X2997Y15661D01* X3011Y15637D01* X3022Y15613D01* X3031Y15587D01* X3035Y15579D01* X3039Y15572D01* X3045Y15565D01* X3052Y15560D01* X3060Y15556D01* X3068Y15553D01* X3077Y15552D01* X3085Y15552D01* X3094Y15554D01* X3102Y15557D01* X3109Y15562D01* X3116Y15568D01* X3121Y15575D01* X3125Y15582D01* X3128Y15591D01* X3129Y15599D01* X3129Y15608D01* X3127Y15617D01* X3115Y15651D01* X3100Y15683D01* X3082Y15715D01* X3061Y15744D01* X3037Y15772D01* X3012Y15797D01* X2984Y15820D01* X2954Y15840D01* X2944Y15846D01* Y17165D01* X2969Y17183D01* X2997Y17207D01* X3022Y17232D01* X3045Y17260D01* X3065Y17290D01* X3083Y17322D01* X3097Y17355D01* X3109Y17389D01* X3111Y17398D01* X3111Y17407D01* X3110Y17415D01* X3107Y17423D01* X3102Y17431D01* X3097Y17438D01* X3090Y17444D01* X3083Y17448D01* X3075Y17451D01* X3066Y17453D01* X3057Y17453D01* X3049Y17452D01* X3041Y17449D01* X3033Y17445D01* X3026Y17439D01* X3020Y17433D01* X3016Y17425D01* X3013Y17417D01* X3004Y17391D01* X2993Y17366D01* X2980Y17343D01* X2965Y17320D01* X2948Y17299D01* X2944Y17295D01* Y17704D01* X2944Y17704D01* X2962Y17683D01* X2977Y17661D01* X2991Y17637D01* X3002Y17613D01* X3011Y17587D01* X3015Y17579D01* X3019Y17572D01* X3025Y17565D01* X3032Y17560D01* X3040Y17556D01* X3048Y17553D01* X3057Y17552D01* X3065Y17552D01* X3074Y17554D01* X3082Y17557D01* X3089Y17562D01* X3096Y17568D01* X3101Y17575D01* X3105Y17582D01* X3108Y17591D01* X3109Y17599D01* X3109Y17608D01* X3107Y17617D01* X3095Y17651D01* X3080Y17683D01* X3062Y17715D01* X3041Y17744D01* X3017Y17772D01* X2992Y17797D01* X2964Y17820D01* X2944Y17834D01* Y19180D01* X2949Y19183D01* X2977Y19207D01* X3002Y19232D01* X3025Y19260D01* X3045Y19290D01* X3063Y19322D01* X3077Y19355D01* X3089Y19389D01* X3091Y19398D01* X3091Y19407D01* X3090Y19415D01* X3087Y19423D01* X3082Y19431D01* X3077Y19438D01* X3070Y19444D01* X3063Y19448D01* X3055Y19451D01* X3046Y19453D01* X3037Y19453D01* X3029Y19452D01* X3021Y19449D01* X3013Y19445D01* X3006Y19439D01* X3000Y19433D01* X2996Y19425D01* X2993Y19417D01* X2984Y19391D01* X2973Y19366D01* X2960Y19343D01* X2945Y19320D01* X2944Y19319D01* Y19680D01* X2957Y19661D01* X2971Y19637D01* X2982Y19613D01* X2991Y19587D01* X2995Y19579D01* X2999Y19572D01* X3005Y19565D01* X3012Y19560D01* X3020Y19556D01* X3028Y19553D01* X3037Y19552D01* X3045Y19552D01* X3054Y19554D01* X3062Y19557D01* X3069Y19562D01* X3076Y19568D01* X3081Y19575D01* X3085Y19582D01* X3088Y19591D01* X3089Y19599D01* X3089Y19608D01* X3087Y19617D01* X3075Y19651D01* X3060Y19683D01* X3042Y19715D01* X3021Y19744D01* X2997Y19772D01* X2972Y19797D01* X2944Y19820D01* Y21196D01* X2957Y21207D01* X2982Y21232D01* X3005Y21260D01* X3025Y21290D01* X3043Y21322D01* X3057Y21355D01* X3069Y21389D01* X3071Y21398D01* X3071Y21407D01* X3070Y21415D01* X3067Y21423D01* X3062Y21431D01* X3057Y21438D01* X3050Y21444D01* X3043Y21448D01* X3035Y21451D01* X3026Y21453D01* X3017Y21453D01* X3009Y21452D01* X3001Y21449D01* X2993Y21445D01* X2986Y21439D01* X2980Y21433D01* X2976Y21425D01* X2973Y21417D01* X2964Y21391D01* X2953Y21366D01* X2944Y21350D01* Y21650D01* X2951Y21637D01* X2962Y21613D01* X2971Y21587D01* X2975Y21579D01* X2979Y21572D01* X2985Y21565D01* X2992Y21560D01* X3000Y21556D01* X3008Y21553D01* X3017Y21552D01* X3025Y21552D01* X3034Y21554D01* X3042Y21557D01* X3049Y21562D01* X3056Y21568D01* X3061Y21575D01* X3065Y21582D01* X3068Y21591D01* X3069Y21599D01* X3069Y21608D01* X3067Y21617D01* X3055Y21651D01* X3040Y21683D01* X3022Y21715D01* X3001Y21744D01* X2977Y21772D01* X2952Y21797D01* X2944Y21804D01* Y23214D01* X2962Y23232D01* X2985Y23260D01* X3005Y23290D01* X3023Y23322D01* X3037Y23355D01* X3049Y23389D01* X3051Y23398D01* X3051Y23407D01* X3050Y23415D01* X3047Y23423D01* X3042Y23431D01* X3037Y23438D01* X3030Y23444D01* X3023Y23448D01* X3015Y23451D01* X3006Y23453D01* X2997Y23453D01* X2989Y23452D01* X2981Y23449D01* X2973Y23445D01* X2966Y23439D01* X2960Y23433D01* X2956Y23425D01* X2953Y23417D01* X2944Y23391D01* X2944Y23391D01* Y23608D01* X2951Y23587D01* X2955Y23579D01* X2959Y23572D01* X2965Y23565D01* X2972Y23560D01* X2980Y23556D01* X2988Y23553D01* X2997Y23552D01* X3005Y23552D01* X3014Y23554D01* X3022Y23557D01* X3029Y23562D01* X3036Y23568D01* X3041Y23575D01* X3045Y23582D01* X3048Y23591D01* X3049Y23599D01* X3049Y23608D01* X3047Y23617D01* X3035Y23651D01* X3020Y23683D01* X3002Y23715D01* X2981Y23744D01* X2957Y23772D01* X2944Y23785D01* Y25235D01* X2965Y25260D01* X2985Y25290D01* X3003Y25322D01* X3017Y25355D01* X3029Y25389D01* X3031Y25398D01* X3031Y25407D01* X3030Y25415D01* X3027Y25423D01* X3022Y25431D01* X3017Y25438D01* X3010Y25444D01* X3003Y25448D01* X2995Y25451D01* X2986Y25453D01* X2977Y25453D01* X2969Y25452D01* X2961Y25449D01* X2953Y25445D01* X2946Y25439D01* X2944Y25437D01* Y25567D01* X2945Y25565D01* X2952Y25560D01* X2960Y25556D01* X2968Y25553D01* X2977Y25552D01* X2985Y25552D01* X2994Y25554D01* X3002Y25557D01* X3009Y25562D01* X3016Y25568D01* X3021Y25575D01* X3025Y25582D01* X3028Y25591D01* X3029Y25599D01* X3029Y25608D01* X3027Y25617D01* X3015Y25651D01* X3000Y25683D01* X2982Y25715D01* X2961Y25744D01* X2944Y25764D01* Y27259D01* X2945Y27260D01* X2965Y27290D01* X2983Y27322D01* X2997Y27355D01* X3009Y27389D01* X3011Y27398D01* X3011Y27407D01* X3010Y27415D01* X3007Y27423D01* X3002Y27431D01* X2997Y27438D01* X2990Y27444D01* X2983Y27448D01* X2975Y27451D01* X2966Y27453D01* X2957Y27453D01* X2949Y27452D01* X2944Y27450D01* Y27555D01* X2948Y27553D01* X2957Y27552D01* X2965Y27552D01* X2974Y27554D01* X2982Y27557D01* X2989Y27562D01* X2996Y27568D01* X3001Y27575D01* X3005Y27582D01* X3008Y27591D01* X3009Y27599D01* X3009Y27608D01* X3007Y27617D01* X2995Y27651D01* X2980Y27683D01* X2962Y27715D01* X2944Y27740D01* Y29288D01* X2945Y29290D01* X2963Y29322D01* X2977Y29355D01* X2989Y29389D01* X2991Y29398D01* X2991Y29407D01* X2990Y29415D01* X2987Y29423D01* X2982Y29431D01* X2977Y29438D01* X2970Y29444D01* X2963Y29448D01* X2955Y29451D01* X2946Y29453D01* X2944D01* Y29552D01* X2945D01* X2954Y29554D01* X2962Y29557D01* X2969Y29562D01* X2976Y29568D01* X2981Y29575D01* X2985Y29582D01* X2988Y29591D01* X2989Y29599D01* X2989Y29608D01* X2987Y29617D01* X2975Y29651D01* X2960Y29683D01* X2944Y29711D01* Y31324D01* X2957Y31355D01* X2969Y31389D01* X2971Y31398D01* X2971Y31407D01* X2970Y31415D01* X2967Y31423D01* X2962Y31431D01* X2957Y31438D01* X2950Y31444D01* X2944Y31447D01* Y31559D01* X2949Y31562D01* X2956Y31568D01* X2961Y31575D01* X2965Y31582D01* X2968Y31591D01* X2969Y31599D01* X2969Y31608D01* X2967Y31617D01* X2955Y31651D01* X2944Y31674D01* Y33374D01* X2949Y33389D01* X2951Y33398D01* X2951Y33407D01* X2950Y33415D01* X2947Y33423D01* X2944Y33428D01* Y33580D01* X2945Y33582D01* X2948Y33591D01* X2949Y33599D01* X2949Y33608D01* X2947Y33617D01* X2944Y33625D01* Y40000D01* G37* G36* X4445D02*X4625D01* Y39881D01* X4615Y39884D01* X4606Y39886D01* X4597Y39886D01* X4589Y39885D01* X4581Y39882D01* X4573Y39878D01* X4566Y39872D01* X4560Y39865D01* X4556Y39858D01* X4553Y39850D01* X4551Y39841D01* X4551Y39833D01* X4552Y39824D01* X4555Y39816D01* X4559Y39808D01* X4565Y39801D01* X4572Y39796D01* X4579Y39791D01* X4587Y39788D01* X4613Y39779D01* X4625Y39774D01* Y39225D01* X4618Y39222D01* X4592Y39213D01* X4584Y39209D01* X4577Y39205D01* X4570Y39199D01* X4565Y39192D01* X4561Y39184D01* X4558Y39176D01* X4557Y39167D01* X4557Y39159D01* X4559Y39150D01* X4562Y39142D01* X4567Y39135D01* X4573Y39128D01* X4580Y39123D01* X4587Y39119D01* X4596Y39116D01* X4604Y39115D01* X4613Y39115D01* X4621Y39117D01* X4625Y39118D01* Y37886D01* X4617Y37886D01* X4609Y37885D01* X4601Y37882D01* X4593Y37878D01* X4586Y37872D01* X4580Y37865D01* X4576Y37858D01* X4573Y37850D01* X4571Y37841D01* X4571Y37833D01* X4572Y37824D01* X4575Y37816D01* X4579Y37808D01* X4585Y37801D01* X4592Y37796D01* X4599Y37791D01* X4607Y37788D01* X4625Y37782D01* Y37217D01* X4612Y37213D01* X4604Y37209D01* X4597Y37205D01* X4590Y37199D01* X4585Y37192D01* X4581Y37184D01* X4578Y37176D01* X4577Y37167D01* X4577Y37159D01* X4579Y37150D01* X4582Y37142D01* X4587Y37135D01* X4593Y37128D01* X4600Y37123D01* X4607Y37119D01* X4616Y37116D01* X4624Y37115D01* X4625D01* Y35883D01* X4621Y35882D01* X4613Y35878D01* X4606Y35872D01* X4600Y35865D01* X4596Y35858D01* X4593Y35850D01* X4591Y35841D01* X4591Y35833D01* X4592Y35824D01* X4595Y35816D01* X4599Y35808D01* X4605Y35801D01* X4612Y35796D01* X4619Y35791D01* X4625Y35789D01* Y35210D01* X4624Y35209D01* X4617Y35205D01* X4610Y35199D01* X4605Y35192D01* X4601Y35184D01* X4598Y35176D01* X4597Y35167D01* X4597Y35159D01* X4599Y35150D01* X4602Y35142D01* X4607Y35135D01* X4613Y35128D01* X4620Y35123D01* X4625Y35120D01* Y33871D01* X4620Y33865D01* X4616Y33858D01* X4613Y33850D01* X4611Y33841D01* X4611Y33833D01* X4612Y33824D01* X4615Y33816D01* X4619Y33808D01* X4625Y33801D01* X4625Y33801D01* Y33192D01* X4625Y33192D01* X4621Y33184D01* X4618Y33176D01* X4617Y33167D01* X4617Y33159D01* X4619Y33150D01* X4622Y33142D01* X4625Y33138D01* Y21859D01* X4622Y21864D01* X4616Y21871D01* X4609Y21876D01* X4602Y21880D01* X4593Y21883D01* X4585Y21884D01* X4576Y21884D01* X4568Y21882D01* X4533Y21870D01* X4501Y21855D01* X4469Y21837D01* X4445Y21820D01* Y23166D01* X4455Y23159D01* X4487Y23141D01* X4520Y23127D01* X4554Y23115D01* X4563Y23113D01* X4572Y23113D01* X4580Y23115D01* X4588Y23117D01* X4596Y23122D01* X4603Y23127D01* X4609Y23134D01* X4613Y23141D01* X4616Y23149D01* X4618Y23158D01* X4618Y23167D01* X4617Y23175D01* X4614Y23183D01* X4610Y23191D01* X4604Y23198D01* X4597Y23204D01* X4590Y23208D01* X4582Y23211D01* X4556Y23220D01* X4531Y23231D01* X4508Y23244D01* X4485Y23259D01* X4464Y23276D01* X4445Y23295D01* Y23704D01* X4460Y23719D01* X4481Y23737D01* X4503Y23752D01* X4527Y23766D01* X4551Y23777D01* X4577Y23786D01* X4585Y23790D01* X4592Y23794D01* X4599Y23800D01* X4604Y23807D01* X4608Y23815D01* X4611Y23823D01* X4612Y23832D01* X4612Y23840D01* X4610Y23849D01* X4607Y23857D01* X4602Y23864D01* X4596Y23871D01* X4589Y23876D01* X4582Y23880D01* X4573Y23883D01* X4565Y23884D01* X4556Y23884D01* X4548Y23882D01* X4513Y23870D01* X4481Y23855D01* X4449Y23837D01* X4445Y23834D01* Y25153D01* X4467Y25141D01* X4500Y25127D01* X4534Y25115D01* X4543Y25113D01* X4552Y25113D01* X4560Y25115D01* X4568Y25117D01* X4576Y25122D01* X4583Y25127D01* X4589Y25134D01* X4593Y25141D01* X4596Y25149D01* X4598Y25158D01* X4598Y25167D01* X4597Y25175D01* X4594Y25183D01* X4590Y25191D01* X4584Y25198D01* X4577Y25204D01* X4570Y25208D01* X4562Y25211D01* X4536Y25220D01* X4511Y25231D01* X4488Y25244D01* X4465Y25259D01* X4445Y25276D01* Y25723D01* X4461Y25737D01* X4483Y25752D01* X4507Y25766D01* X4531Y25777D01* X4557Y25786D01* X4565Y25790D01* X4572Y25794D01* X4579Y25800D01* X4584Y25807D01* X4588Y25815D01* X4591Y25823D01* X4592Y25832D01* X4592Y25840D01* X4590Y25849D01* X4587Y25857D01* X4582Y25864D01* X4576Y25871D01* X4569Y25876D01* X4562Y25880D01* X4553Y25883D01* X4545Y25884D01* X4536Y25884D01* X4528Y25882D01* X4493Y25870D01* X4461Y25855D01* X4445Y25846D01* Y27142D01* X4447Y27141D01* X4480Y27127D01* X4514Y27115D01* X4523Y27113D01* X4532Y27113D01* X4540Y27115D01* X4548Y27117D01* X4556Y27122D01* X4563Y27127D01* X4569Y27134D01* X4573Y27141D01* X4576Y27149D01* X4578Y27158D01* X4578Y27167D01* X4577Y27175D01* X4574Y27183D01* X4570Y27191D01* X4564Y27198D01* X4557Y27204D01* X4550Y27208D01* X4542Y27211D01* X4516Y27220D01* X4491Y27231D01* X4468Y27244D01* X4445Y27259D01* Y27740D01* X4463Y27752D01* X4487Y27766D01* X4511Y27777D01* X4537Y27786D01* X4545Y27790D01* X4552Y27794D01* X4559Y27800D01* X4564Y27807D01* X4568Y27815D01* X4571Y27823D01* X4572Y27832D01* X4572Y27840D01* X4570Y27849D01* X4567Y27857D01* X4562Y27864D01* X4556Y27871D01* X4549Y27876D01* X4542Y27880D01* X4533Y27883D01* X4525Y27884D01* X4516Y27884D01* X4508Y27882D01* X4473Y27870D01* X4445Y27857D01* Y29133D01* X4460Y29127D01* X4494Y29115D01* X4503Y29113D01* X4512Y29113D01* X4520Y29115D01* X4528Y29117D01* X4536Y29122D01* X4543Y29127D01* X4549Y29134D01* X4553Y29141D01* X4556Y29149D01* X4558Y29158D01* X4558Y29167D01* X4557Y29175D01* X4554Y29183D01* X4550Y29191D01* X4544Y29198D01* X4537Y29204D01* X4530Y29208D01* X4522Y29211D01* X4496Y29220D01* X4471Y29231D01* X4448Y29244D01* X4445Y29246D01* Y29754D01* X4467Y29766D01* X4491Y29777D01* X4517Y29786D01* X4525Y29790D01* X4532Y29794D01* X4539Y29800D01* X4544Y29807D01* X4548Y29815D01* X4551Y29823D01* X4552Y29832D01* X4552Y29840D01* X4550Y29849D01* X4547Y29857D01* X4542Y29864D01* X4536Y29871D01* X4529Y29876D01* X4522Y29880D01* X4513Y29883D01* X4505Y29884D01* X4496Y29884D01* X4488Y29882D01* X4453Y29870D01* X4445Y29866D01* Y31125D01* X4474Y31115D01* X4483Y31113D01* X4492Y31113D01* X4500Y31115D01* X4508Y31117D01* X4516Y31122D01* X4523Y31127D01* X4529Y31134D01* X4533Y31141D01* X4536Y31149D01* X4538Y31158D01* X4538Y31167D01* X4537Y31175D01* X4534Y31183D01* X4530Y31191D01* X4524Y31198D01* X4517Y31204D01* X4510Y31208D01* X4502Y31211D01* X4476Y31220D01* X4451Y31231D01* X4445Y31234D01* Y31765D01* X4447Y31766D01* X4471Y31777D01* X4497Y31786D01* X4505Y31790D01* X4512Y31794D01* X4519Y31800D01* X4524Y31807D01* X4528Y31815D01* X4531Y31823D01* X4532Y31832D01* X4532Y31840D01* X4530Y31849D01* X4527Y31857D01* X4522Y31864D01* X4516Y31871D01* X4509Y31876D01* X4502Y31880D01* X4493Y31883D01* X4485Y31884D01* X4476Y31884D01* X4468Y31882D01* X4445Y31874D01* Y33118D01* X4454Y33115D01* X4463Y33113D01* X4472Y33113D01* X4480Y33115D01* X4488Y33117D01* X4496Y33122D01* X4503Y33127D01* X4509Y33134D01* X4513Y33141D01* X4516Y33149D01* X4518Y33158D01* X4518Y33167D01* X4517Y33175D01* X4514Y33183D01* X4510Y33191D01* X4504Y33198D01* X4497Y33204D01* X4490Y33208D01* X4482Y33211D01* X4456Y33220D01* X4445Y33225D01* Y33775D01* X4451Y33777D01* X4477Y33786D01* X4485Y33790D01* X4492Y33794D01* X4499Y33800D01* X4504Y33807D01* X4508Y33815D01* X4511Y33823D01* X4512Y33832D01* X4512Y33840D01* X4510Y33849D01* X4507Y33857D01* X4502Y33864D01* X4496Y33871D01* X4489Y33876D01* X4482Y33880D01* X4473Y33883D01* X4465Y33884D01* X4456Y33884D01* X4448Y33882D01* X4445Y33881D01* Y35113D01* X4452Y35113D01* X4460Y35115D01* X4468Y35117D01* X4476Y35122D01* X4483Y35127D01* X4489Y35134D01* X4493Y35141D01* X4496Y35149D01* X4498Y35158D01* X4498Y35167D01* X4497Y35175D01* X4494Y35183D01* X4490Y35191D01* X4484Y35198D01* X4477Y35204D01* X4470Y35208D01* X4462Y35211D01* X4445Y35217D01* Y35782D01* X4457Y35786D01* X4465Y35790D01* X4472Y35794D01* X4479Y35800D01* X4484Y35807D01* X4488Y35815D01* X4491Y35823D01* X4492Y35832D01* X4492Y35840D01* X4490Y35849D01* X4487Y35857D01* X4482Y35864D01* X4476Y35871D01* X4469Y35876D01* X4462Y35880D01* X4453Y35883D01* X4445Y35884D01* Y37116D01* X4448Y37117D01* X4456Y37122D01* X4463Y37127D01* X4469Y37134D01* X4473Y37141D01* X4476Y37149D01* X4478Y37158D01* X4478Y37167D01* X4477Y37175D01* X4474Y37183D01* X4470Y37191D01* X4464Y37198D01* X4457Y37204D01* X4450Y37208D01* X4445Y37210D01* Y37790D01* X4452Y37794D01* X4459Y37800D01* X4464Y37807D01* X4468Y37815D01* X4471Y37823D01* X4472Y37832D01* X4472Y37840D01* X4470Y37849D01* X4467Y37857D01* X4462Y37864D01* X4456Y37871D01* X4449Y37876D01* X4445Y37878D01* Y39130D01* X4449Y39134D01* X4453Y39141D01* X4456Y39149D01* X4458Y39158D01* X4458Y39167D01* X4457Y39175D01* X4454Y39183D01* X4450Y39191D01* X4445Y39197D01* Y39809D01* X4448Y39815D01* X4451Y39823D01* X4452Y39832D01* X4452Y39840D01* X4450Y39849D01* X4447Y39857D01* X4445Y39859D01* Y40000D01* G37* G36* X4625Y0D02*X4445D01* Y7374D01* X4454Y7349D01* X4469Y7316D01* X4487Y7284D01* X4508Y7255D01* X4532Y7227D01* X4557Y7202D01* X4585Y7179D01* X4615Y7159D01* X4625Y7153D01* Y5834D01* X4600Y5816D01* X4572Y5793D01* X4547Y5767D01* X4524Y5739D01* X4504Y5709D01* X4486Y5677D01* X4472Y5644D01* X4460Y5610D01* X4458Y5601D01* X4458Y5593D01* X4459Y5584D01* X4462Y5576D01* X4467Y5568D01* X4472Y5561D01* X4479Y5556D01* X4486Y5551D01* X4494Y5548D01* X4503Y5546D01* X4512Y5546D01* X4520Y5547D01* X4528Y5550D01* X4536Y5555D01* X4543Y5560D01* X4549Y5567D01* X4553Y5574D01* X4556Y5582D01* X4565Y5608D01* X4576Y5633D01* X4589Y5657D01* X4604Y5679D01* X4621Y5700D01* X4625Y5704D01* Y5295D01* X4625Y5295D01* X4607Y5316D01* X4592Y5338D01* X4578Y5362D01* X4567Y5386D01* X4558Y5412D01* X4554Y5420D01* X4550Y5427D01* X4544Y5434D01* X4537Y5439D01* X4529Y5443D01* X4521Y5446D01* X4512Y5447D01* X4504Y5447D01* X4495Y5445D01* X4487Y5442D01* X4480Y5437D01* X4473Y5431D01* X4468Y5424D01* X4464Y5417D01* X4461Y5409D01* X4460Y5400D01* X4460Y5391D01* X4462Y5383D01* X4474Y5349D01* X4489Y5316D01* X4507Y5284D01* X4528Y5255D01* X4552Y5227D01* X4577Y5202D01* X4605Y5179D01* X4625Y5166D01* Y3820D01* X4620Y3816D01* X4592Y3793D01* X4567Y3767D01* X4544Y3739D01* X4524Y3709D01* X4506Y3677D01* X4492Y3644D01* X4480Y3610D01* X4478Y3601D01* X4478Y3593D01* X4479Y3584D01* X4482Y3576D01* X4487Y3568D01* X4492Y3561D01* X4499Y3556D01* X4506Y3551D01* X4514Y3548D01* X4523Y3546D01* X4532Y3546D01* X4540Y3547D01* X4548Y3550D01* X4556Y3555D01* X4563Y3560D01* X4569Y3567D01* X4573Y3574D01* X4576Y3582D01* X4585Y3608D01* X4596Y3633D01* X4609Y3657D01* X4624Y3679D01* X4625Y3680D01* Y3319D01* X4612Y3338D01* X4598Y3362D01* X4587Y3386D01* X4578Y3412D01* X4574Y3420D01* X4570Y3427D01* X4564Y3434D01* X4557Y3439D01* X4549Y3443D01* X4541Y3446D01* X4532Y3447D01* X4524Y3447D01* X4515Y3445D01* X4507Y3442D01* X4500Y3437D01* X4493Y3431D01* X4488Y3424D01* X4484Y3417D01* X4481Y3409D01* X4480Y3400D01* X4480Y3391D01* X4482Y3383D01* X4494Y3349D01* X4509Y3316D01* X4527Y3284D01* X4548Y3255D01* X4572Y3227D01* X4597Y3202D01* X4625Y3179D01* Y1804D01* X4612Y1793D01* X4587Y1767D01* X4564Y1739D01* X4544Y1709D01* X4526Y1677D01* X4512Y1644D01* X4500Y1610D01* X4498Y1601D01* X4498Y1593D01* X4499Y1584D01* X4502Y1576D01* X4507Y1568D01* X4512Y1561D01* X4519Y1556D01* X4526Y1551D01* X4534Y1548D01* X4543Y1546D01* X4552Y1546D01* X4560Y1547D01* X4568Y1550D01* X4576Y1555D01* X4583Y1560D01* X4589Y1567D01* X4593Y1574D01* X4596Y1582D01* X4605Y1608D01* X4616Y1633D01* X4625Y1650D01* Y1349D01* X4618Y1362D01* X4607Y1386D01* X4598Y1412D01* X4594Y1420D01* X4590Y1427D01* X4584Y1434D01* X4577Y1439D01* X4569Y1443D01* X4561Y1446D01* X4552Y1447D01* X4544Y1447D01* X4535Y1445D01* X4527Y1442D01* X4520Y1437D01* X4513Y1431D01* X4508Y1424D01* X4504Y1417D01* X4501Y1409D01* X4500Y1400D01* X4500Y1391D01* X4502Y1383D01* X4514Y1349D01* X4529Y1316D01* X4547Y1284D01* X4568Y1255D01* X4592Y1227D01* X4617Y1202D01* X4625Y1196D01* Y0D01* G37* G36* Y7276D02*X4624Y7276D01* X4605Y7295D01* X4587Y7316D01* X4572Y7338D01* X4558Y7362D01* X4547Y7386D01* X4538Y7412D01* X4534Y7420D01* X4530Y7427D01* X4524Y7434D01* X4517Y7439D01* X4509Y7443D01* X4501Y7446D01* X4492Y7447D01* X4484Y7447D01* X4475Y7445D01* X4467Y7442D01* X4460Y7437D01* X4453Y7431D01* X4448Y7424D01* X4445Y7419D01* Y7571D01* X4447Y7568D01* X4452Y7561D01* X4459Y7556D01* X4466Y7551D01* X4474Y7548D01* X4483Y7546D01* X4492Y7546D01* X4500Y7547D01* X4508Y7550D01* X4516Y7555D01* X4523Y7560D01* X4529Y7567D01* X4533Y7574D01* X4536Y7582D01* X4545Y7608D01* X4556Y7633D01* X4569Y7657D01* X4584Y7679D01* X4601Y7700D01* X4620Y7719D01* X4625Y7723D01* Y7276D01* G37* G36* Y7846D02*X4609Y7837D01* X4580Y7816D01* X4552Y7793D01* X4527Y7767D01* X4504Y7739D01* X4484Y7709D01* X4466Y7677D01* X4452Y7644D01* X4445Y7625D01* Y9325D01* X4449Y9316D01* X4467Y9284D01* X4488Y9255D01* X4512Y9227D01* X4537Y9202D01* X4565Y9179D01* X4595Y9159D01* X4625Y9142D01* Y7846D01* G37* G36* Y9259D02*X4625Y9259D01* X4604Y9276D01* X4585Y9295D01* X4567Y9316D01* X4552Y9338D01* X4538Y9362D01* X4527Y9386D01* X4518Y9412D01* X4514Y9420D01* X4510Y9427D01* X4504Y9434D01* X4497Y9439D01* X4489Y9443D01* X4481Y9446D01* X4472Y9447D01* X4464Y9447D01* X4455Y9445D01* X4447Y9442D01* X4445Y9441D01* Y9552D01* X4446Y9551D01* X4454Y9548D01* X4463Y9546D01* X4472Y9546D01* X4480Y9547D01* X4488Y9550D01* X4496Y9555D01* X4503Y9560D01* X4509Y9567D01* X4513Y9574D01* X4516Y9582D01* X4525Y9608D01* X4536Y9633D01* X4549Y9657D01* X4564Y9679D01* X4581Y9700D01* X4600Y9719D01* X4621Y9737D01* X4625Y9740D01* Y9259D01* G37* G36* Y9857D02*X4621Y9855D01* X4589Y9837D01* X4560Y9816D01* X4532Y9793D01* X4507Y9767D01* X4484Y9739D01* X4464Y9709D01* X4446Y9677D01* X4445Y9675D01* Y11288D01* X4447Y11284D01* X4468Y11255D01* X4492Y11227D01* X4517Y11202D01* X4545Y11179D01* X4575Y11159D01* X4607Y11141D01* X4625Y11133D01* Y9857D01* G37* G36* Y11246D02*X4605Y11259D01* X4584Y11276D01* X4565Y11295D01* X4547Y11316D01* X4532Y11338D01* X4518Y11362D01* X4507Y11386D01* X4498Y11412D01* X4494Y11420D01* X4490Y11427D01* X4484Y11434D01* X4477Y11439D01* X4469Y11443D01* X4461Y11446D01* X4452Y11447D01* X4445Y11447D01* Y11546D01* X4452Y11546D01* X4460Y11547D01* X4468Y11550D01* X4476Y11555D01* X4483Y11560D01* X4489Y11567D01* X4493Y11574D01* X4496Y11582D01* X4505Y11608D01* X4516Y11633D01* X4529Y11657D01* X4544Y11679D01* X4561Y11700D01* X4580Y11719D01* X4601Y11737D01* X4623Y11752D01* X4625Y11754D01* Y11246D01* G37* G36* Y11866D02*X4601Y11855D01* X4569Y11837D01* X4540Y11816D01* X4512Y11793D01* X4487Y11767D01* X4464Y11739D01* X4445Y11711D01* Y13259D01* X4448Y13255D01* X4472Y13227D01* X4497Y13202D01* X4525Y13179D01* X4555Y13159D01* X4587Y13141D01* X4620Y13127D01* X4625Y13125D01* Y11866D01* G37* G36* Y13234D02*X4608Y13244D01* X4585Y13259D01* X4564Y13276D01* X4545Y13295D01* X4527Y13316D01* X4512Y13338D01* X4498Y13362D01* X4487Y13386D01* X4478Y13412D01* X4474Y13420D01* X4470Y13427D01* X4464Y13434D01* X4457Y13439D01* X4449Y13443D01* X4445Y13445D01* Y13549D01* X4448Y13550D01* X4456Y13555D01* X4463Y13560D01* X4469Y13567D01* X4473Y13574D01* X4476Y13582D01* X4485Y13608D01* X4496Y13633D01* X4509Y13657D01* X4524Y13679D01* X4541Y13700D01* X4560Y13719D01* X4581Y13737D01* X4603Y13752D01* X4625Y13765D01* Y13234D01* G37* G36* Y13874D02*X4613Y13870D01* X4581Y13855D01* X4549Y13837D01* X4520Y13816D01* X4492Y13793D01* X4467Y13767D01* X4445Y13740D01* Y15235D01* X4452Y15227D01* X4477Y15202D01* X4505Y15179D01* X4535Y15159D01* X4567Y15141D01* X4600Y15127D01* X4625Y15118D01* Y13874D01* G37* G36* Y15225D02*X4611Y15231D01* X4588Y15244D01* X4565Y15259D01* X4544Y15276D01* X4525Y15295D01* X4507Y15316D01* X4492Y15338D01* X4478Y15362D01* X4467Y15386D01* X4458Y15412D01* X4454Y15420D01* X4450Y15427D01* X4445Y15432D01* Y15563D01* X4449Y15567D01* X4453Y15574D01* X4456Y15582D01* X4465Y15608D01* X4476Y15633D01* X4489Y15657D01* X4504Y15679D01* X4521Y15700D01* X4540Y15719D01* X4561Y15737D01* X4583Y15752D01* X4607Y15766D01* X4625Y15775D01* Y15225D01* G37* G36* Y15881D02*X4593Y15870D01* X4561Y15855D01* X4529Y15837D01* X4500Y15816D01* X4472Y15793D01* X4447Y15767D01* X4445Y15765D01* Y17214D01* X4457Y17202D01* X4485Y17179D01* X4515Y17159D01* X4547Y17141D01* X4580Y17127D01* X4614Y17115D01* X4623Y17113D01* X4625D01* Y15881D01* G37* G36* Y17217D02*X4616Y17220D01* X4591Y17231D01* X4568Y17244D01* X4545Y17259D01* X4524Y17276D01* X4505Y17295D01* X4487Y17316D01* X4472Y17338D01* X4458Y17362D01* X4447Y17386D01* X4445Y17391D01* Y17609D01* X4456Y17633D01* X4469Y17657D01* X4484Y17679D01* X4501Y17700D01* X4520Y17719D01* X4541Y17737D01* X4563Y17752D01* X4587Y17766D01* X4611Y17777D01* X4625Y17782D01* Y17217D01* G37* G36* Y17884D02*X4625Y17884D01* X4616Y17884D01* X4608Y17882D01* X4573Y17870D01* X4541Y17855D01* X4509Y17837D01* X4480Y17816D01* X4452Y17793D01* X4445Y17785D01* Y19196D01* X4465Y19179D01* X4495Y19159D01* X4527Y19141D01* X4560Y19127D01* X4594Y19115D01* X4603Y19113D01* X4612Y19113D01* X4620Y19115D01* X4625Y19116D01* Y17884D01* G37* G36* Y19210D02*X4622Y19211D01* X4596Y19220D01* X4571Y19231D01* X4548Y19244D01* X4525Y19259D01* X4504Y19276D01* X4485Y19295D01* X4467Y19316D01* X4452Y19338D01* X4445Y19349D01* Y19650D01* X4449Y19657D01* X4464Y19679D01* X4481Y19700D01* X4500Y19719D01* X4521Y19737D01* X4543Y19752D01* X4567Y19766D01* X4591Y19777D01* X4617Y19786D01* X4625Y19790D01* X4625Y19790D01* Y19210D01* G37* G36* Y19878D02*X4622Y19880D01* X4613Y19883D01* X4605Y19884D01* X4596Y19884D01* X4588Y19882D01* X4553Y19870D01* X4521Y19855D01* X4489Y19837D01* X4460Y19816D01* X4445Y19804D01* Y21179D01* X4445Y21179D01* X4475Y21159D01* X4507Y21141D01* X4540Y21127D01* X4574Y21115D01* X4583Y21113D01* X4592Y21113D01* X4600Y21115D01* X4608Y21117D01* X4616Y21122D01* X4623Y21127D01* X4625Y21130D01* Y19878D01* G37* G36* Y21197D02*X4624Y21198D01* X4617Y21204D01* X4610Y21208D01* X4602Y21211D01* X4576Y21220D01* X4551Y21231D01* X4528Y21244D01* X4505Y21259D01* X4484Y21276D01* X4465Y21295D01* X4447Y21316D01* X4445Y21319D01* Y21680D01* X4461Y21700D01* X4480Y21719D01* X4501Y21737D01* X4523Y21752D01* X4547Y21766D01* X4571Y21777D01* X4597Y21786D01* X4605Y21790D01* X4612Y21794D01* X4619Y21800D01* X4624Y21807D01* X4625Y21809D01* Y21197D01* G37* G36* Y40000D02*X4884D01* Y39625D01* X4875Y39651D01* X4860Y39683D01* X4842Y39715D01* X4821Y39744D01* X4797Y39772D01* X4772Y39797D01* X4744Y39820D01* X4714Y39840D01* X4682Y39858D01* X4649Y39873D01* X4625Y39881D01* Y40000D01* G37* G36* Y39774D02*X4638Y39768D01* X4661Y39755D01* X4684Y39740D01* X4705Y39723D01* X4724Y39704D01* X4742Y39683D01* X4757Y39661D01* X4771Y39637D01* X4782Y39613D01* X4791Y39587D01* X4795Y39579D01* X4799Y39572D01* X4805Y39565D01* X4812Y39560D01* X4820Y39556D01* X4828Y39553D01* X4837Y39552D01* X4845Y39552D01* X4854Y39554D01* X4862Y39557D01* X4869Y39562D01* X4876Y39568D01* X4881Y39575D01* X4884Y39580D01* Y39428D01* X4882Y39431D01* X4877Y39438D01* X4870Y39444D01* X4863Y39448D01* X4855Y39451D01* X4846Y39453D01* X4837Y39453D01* X4829Y39452D01* X4821Y39449D01* X4813Y39445D01* X4806Y39439D01* X4800Y39433D01* X4796Y39425D01* X4793Y39417D01* X4784Y39391D01* X4773Y39366D01* X4760Y39343D01* X4745Y39320D01* X4728Y39299D01* X4709Y39280D01* X4688Y39262D01* X4666Y39247D01* X4642Y39233D01* X4625Y39225D01* Y39774D01* G37* G36* Y39118D02*X4656Y39129D01* X4688Y39144D01* X4720Y39162D01* X4749Y39183D01* X4777Y39207D01* X4802Y39232D01* X4825Y39260D01* X4845Y39290D01* X4863Y39322D01* X4877Y39355D01* X4884Y39374D01* Y37674D01* X4880Y37683D01* X4862Y37715D01* X4841Y37744D01* X4817Y37772D01* X4792Y37797D01* X4764Y37820D01* X4734Y37840D01* X4702Y37858D01* X4669Y37873D01* X4635Y37884D01* X4626Y37886D01* X4625D01* Y39118D01* G37* G36* Y37782D02*X4633Y37779D01* X4658Y37768D01* X4681Y37755D01* X4704Y37740D01* X4725Y37723D01* X4744Y37704D01* X4762Y37683D01* X4777Y37661D01* X4791Y37637D01* X4802Y37613D01* X4811Y37587D01* X4815Y37579D01* X4819Y37572D01* X4825Y37565D01* X4832Y37560D01* X4840Y37556D01* X4848Y37553D01* X4857Y37552D01* X4865Y37552D01* X4874Y37554D01* X4882Y37557D01* X4884Y37559D01* Y37447D01* X4883Y37448D01* X4875Y37451D01* X4866Y37453D01* X4857Y37453D01* X4849Y37452D01* X4841Y37449D01* X4833Y37445D01* X4826Y37439D01* X4820Y37433D01* X4816Y37425D01* X4813Y37417D01* X4804Y37391D01* X4793Y37366D01* X4780Y37343D01* X4765Y37320D01* X4748Y37299D01* X4729Y37280D01* X4708Y37262D01* X4686Y37247D01* X4662Y37233D01* X4638Y37222D01* X4625Y37217D01* Y37782D01* G37* G36* Y37115D02*X4633Y37115D01* X4641Y37117D01* X4676Y37129D01* X4708Y37144D01* X4740Y37162D01* X4769Y37183D01* X4797Y37207D01* X4822Y37232D01* X4845Y37260D01* X4865Y37290D01* X4883Y37322D01* X4884Y37324D01* Y35711D01* X4882Y35715D01* X4861Y35744D01* X4837Y35772D01* X4812Y35797D01* X4784Y35820D01* X4754Y35840D01* X4722Y35858D01* X4689Y35873D01* X4655Y35884D01* X4646Y35886D01* X4637Y35886D01* X4629Y35885D01* X4625Y35883D01* Y37115D01* G37* G36* Y35789D02*X4627Y35788D01* X4653Y35779D01* X4678Y35768D01* X4701Y35755D01* X4724Y35740D01* X4745Y35723D01* X4764Y35704D01* X4782Y35683D01* X4797Y35661D01* X4811Y35637D01* X4822Y35613D01* X4831Y35587D01* X4835Y35579D01* X4839Y35572D01* X4845Y35565D01* X4852Y35560D01* X4860Y35556D01* X4868Y35553D01* X4877Y35552D01* X4884Y35552D01* Y35453D01* X4877Y35453D01* X4869Y35452D01* X4861Y35449D01* X4853Y35445D01* X4846Y35439D01* X4840Y35433D01* X4836Y35425D01* X4833Y35417D01* X4824Y35391D01* X4813Y35366D01* X4800Y35343D01* X4785Y35320D01* X4768Y35299D01* X4749Y35280D01* X4728Y35262D01* X4706Y35247D01* X4682Y35233D01* X4658Y35222D01* X4632Y35213D01* X4625Y35210D01* Y35789D01* G37* G36* Y35120D02*X4627Y35119D01* X4636Y35116D01* X4644Y35115D01* X4653Y35115D01* X4661Y35117D01* X4696Y35129D01* X4728Y35144D01* X4760Y35162D01* X4789Y35183D01* X4817Y35207D01* X4842Y35232D01* X4865Y35260D01* X4884Y35288D01* Y33740D01* X4881Y33744D01* X4857Y33772D01* X4832Y33797D01* X4804Y33820D01* X4774Y33840D01* X4742Y33858D01* X4709Y33873D01* X4675Y33884D01* X4666Y33886D01* X4657Y33886D01* X4649Y33885D01* X4641Y33882D01* X4633Y33878D01* X4626Y33872D01* X4625Y33871D01* Y35120D01* G37* G36* Y33801D02*X4632Y33796D01* X4639Y33791D01* X4647Y33788D01* X4673Y33779D01* X4698Y33768D01* X4721Y33755D01* X4744Y33740D01* X4765Y33723D01* X4784Y33704D01* X4802Y33683D01* X4817Y33661D01* X4831Y33637D01* X4842Y33613D01* X4851Y33587D01* X4855Y33579D01* X4859Y33572D01* X4865Y33565D01* X4872Y33560D01* X4880Y33556D01* X4884Y33555D01* Y33450D01* X4881Y33449D01* X4873Y33445D01* X4866Y33439D01* X4860Y33433D01* X4856Y33425D01* X4853Y33417D01* X4844Y33391D01* X4833Y33366D01* X4820Y33343D01* X4805Y33320D01* X4788Y33299D01* X4769Y33280D01* X4748Y33262D01* X4726Y33247D01* X4702Y33233D01* X4678Y33222D01* X4652Y33213D01* X4644Y33209D01* X4637Y33205D01* X4630Y33199D01* X4625Y33192D01* Y33801D01* G37* G36* Y33138D02*X4627Y33135D01* X4633Y33128D01* X4640Y33123D01* X4647Y33119D01* X4656Y33116D01* X4664Y33115D01* X4673Y33115D01* X4681Y33117D01* X4716Y33129D01* X4748Y33144D01* X4780Y33162D01* X4809Y33183D01* X4837Y33207D01* X4862Y33232D01* X4884Y33259D01* Y31764D01* X4877Y31772D01* X4852Y31797D01* X4824Y31820D01* X4794Y31840D01* X4762Y31858D01* X4729Y31873D01* X4695Y31884D01* X4686Y31886D01* X4677Y31886D01* X4669Y31885D01* X4661Y31882D01* X4653Y31878D01* X4646Y31872D01* X4640Y31865D01* X4636Y31858D01* X4633Y31850D01* X4631Y31841D01* X4631Y31833D01* X4632Y31824D01* X4635Y31816D01* X4639Y31808D01* X4645Y31801D01* X4652Y31796D01* X4659Y31791D01* X4667Y31788D01* X4693Y31779D01* X4718Y31768D01* X4741Y31755D01* X4764Y31740D01* X4785Y31723D01* X4804Y31704D01* X4822Y31683D01* X4837Y31661D01* X4851Y31637D01* X4862Y31613D01* X4871Y31587D01* X4875Y31579D01* X4879Y31572D01* X4884Y31567D01* Y31437D01* X4880Y31433D01* X4876Y31425D01* X4873Y31417D01* X4864Y31391D01* X4853Y31366D01* X4840Y31343D01* X4825Y31320D01* X4808Y31299D01* X4789Y31280D01* X4768Y31262D01* X4746Y31247D01* X4722Y31233D01* X4698Y31222D01* X4672Y31213D01* X4664Y31209D01* X4657Y31205D01* X4650Y31199D01* X4645Y31192D01* X4641Y31184D01* X4638Y31176D01* X4637Y31167D01* X4637Y31159D01* X4639Y31150D01* X4642Y31142D01* X4647Y31135D01* X4653Y31128D01* X4660Y31123D01* X4667Y31119D01* X4676Y31116D01* X4684Y31115D01* X4693Y31115D01* X4701Y31117D01* X4736Y31129D01* X4768Y31144D01* X4800Y31162D01* X4829Y31183D01* X4857Y31207D01* X4882Y31232D01* X4884Y31235D01* Y29785D01* X4872Y29797D01* X4844Y29820D01* X4814Y29840D01* X4782Y29858D01* X4749Y29873D01* X4715Y29884D01* X4706Y29886D01* X4697Y29886D01* X4689Y29885D01* X4681Y29882D01* X4673Y29878D01* X4666Y29872D01* X4660Y29865D01* X4656Y29858D01* X4653Y29850D01* X4651Y29841D01* X4651Y29833D01* X4652Y29824D01* X4655Y29816D01* X4659Y29808D01* X4665Y29801D01* X4672Y29796D01* X4679Y29791D01* X4687Y29788D01* X4713Y29779D01* X4738Y29768D01* X4761Y29755D01* X4784Y29740D01* X4805Y29723D01* X4824Y29704D01* X4842Y29683D01* X4857Y29661D01* X4871Y29637D01* X4882Y29613D01* X4884Y29608D01* Y29391D01* X4873Y29366D01* X4860Y29343D01* X4845Y29320D01* X4828Y29299D01* X4809Y29280D01* X4788Y29262D01* X4766Y29247D01* X4742Y29233D01* X4718Y29222D01* X4692Y29213D01* X4684Y29209D01* X4677Y29205D01* X4670Y29199D01* X4665Y29192D01* X4661Y29184D01* X4658Y29176D01* X4657Y29167D01* X4657Y29159D01* X4659Y29150D01* X4662Y29142D01* X4667Y29135D01* X4673Y29128D01* X4680Y29123D01* X4687Y29119D01* X4696Y29116D01* X4704Y29115D01* X4713Y29115D01* X4721Y29117D01* X4756Y29129D01* X4788Y29144D01* X4820Y29162D01* X4849Y29183D01* X4877Y29207D01* X4884Y29214D01* Y27804D01* X4864Y27820D01* X4834Y27840D01* X4802Y27858D01* X4769Y27873D01* X4735Y27884D01* X4726Y27886D01* X4717Y27886D01* X4709Y27885D01* X4701Y27882D01* X4693Y27878D01* X4686Y27872D01* X4680Y27865D01* X4676Y27858D01* X4673Y27850D01* X4671Y27841D01* X4671Y27833D01* X4672Y27824D01* X4675Y27816D01* X4679Y27808D01* X4685Y27801D01* X4692Y27796D01* X4699Y27791D01* X4707Y27788D01* X4733Y27779D01* X4758Y27768D01* X4781Y27755D01* X4804Y27740D01* X4825Y27723D01* X4844Y27704D01* X4862Y27683D01* X4877Y27661D01* X4884Y27650D01* Y27350D01* X4880Y27343D01* X4865Y27320D01* X4848Y27299D01* X4829Y27280D01* X4808Y27262D01* X4786Y27247D01* X4762Y27233D01* X4738Y27222D01* X4712Y27213D01* X4704Y27209D01* X4697Y27205D01* X4690Y27199D01* X4685Y27192D01* X4681Y27184D01* X4678Y27176D01* X4677Y27167D01* X4677Y27159D01* X4679Y27150D01* X4682Y27142D01* X4687Y27135D01* X4693Y27128D01* X4700Y27123D01* X4707Y27119D01* X4716Y27116D01* X4724Y27115D01* X4733Y27115D01* X4741Y27117D01* X4776Y27129D01* X4808Y27144D01* X4840Y27162D01* X4869Y27183D01* X4884Y27196D01* Y25820D01* X4884Y25820D01* X4854Y25840D01* X4822Y25858D01* X4789Y25873D01* X4755Y25884D01* X4746Y25886D01* X4737Y25886D01* X4729Y25885D01* X4721Y25882D01* X4713Y25878D01* X4706Y25872D01* X4700Y25865D01* X4696Y25858D01* X4693Y25850D01* X4691Y25841D01* X4691Y25833D01* X4692Y25824D01* X4695Y25816D01* X4699Y25808D01* X4705Y25801D01* X4712Y25796D01* X4719Y25791D01* X4727Y25788D01* X4753Y25779D01* X4778Y25768D01* X4801Y25755D01* X4824Y25740D01* X4845Y25723D01* X4864Y25704D01* X4882Y25683D01* X4884Y25680D01* Y25319D01* X4868Y25299D01* X4849Y25280D01* X4828Y25262D01* X4806Y25247D01* X4782Y25233D01* X4758Y25222D01* X4732Y25213D01* X4724Y25209D01* X4717Y25205D01* X4710Y25199D01* X4705Y25192D01* X4701Y25184D01* X4698Y25176D01* X4697Y25167D01* X4697Y25159D01* X4699Y25150D01* X4702Y25142D01* X4707Y25135D01* X4713Y25128D01* X4720Y25123D01* X4727Y25119D01* X4736Y25116D01* X4744Y25115D01* X4753Y25115D01* X4761Y25117D01* X4796Y25129D01* X4828Y25144D01* X4860Y25162D01* X4884Y25180D01* Y23834D01* X4874Y23840D01* X4842Y23858D01* X4809Y23873D01* X4775Y23884D01* X4766Y23886D01* X4757Y23886D01* X4749Y23885D01* X4741Y23882D01* X4733Y23878D01* X4726Y23872D01* X4720Y23865D01* X4716Y23858D01* X4713Y23850D01* X4711Y23841D01* X4711Y23833D01* X4712Y23824D01* X4715Y23816D01* X4719Y23808D01* X4725Y23801D01* X4732Y23796D01* X4739Y23791D01* X4747Y23788D01* X4773Y23779D01* X4798Y23768D01* X4821Y23755D01* X4844Y23740D01* X4865Y23723D01* X4884Y23704D01* Y23295D01* X4869Y23280D01* X4848Y23262D01* X4826Y23247D01* X4802Y23233D01* X4778Y23222D01* X4752Y23213D01* X4744Y23209D01* X4737Y23205D01* X4730Y23199D01* X4725Y23192D01* X4721Y23184D01* X4718Y23176D01* X4717Y23167D01* X4717Y23159D01* X4719Y23150D01* X4722Y23142D01* X4727Y23135D01* X4733Y23128D01* X4740Y23123D01* X4747Y23119D01* X4756Y23116D01* X4764Y23115D01* X4773Y23115D01* X4781Y23117D01* X4816Y23129D01* X4848Y23144D01* X4880Y23162D01* X4884Y23165D01* Y21846D01* X4862Y21858D01* X4829Y21873D01* X4795Y21884D01* X4786Y21886D01* X4777Y21886D01* X4769Y21885D01* X4761Y21882D01* X4753Y21878D01* X4746Y21872D01* X4740Y21865D01* X4736Y21858D01* X4733Y21850D01* X4731Y21841D01* X4731Y21833D01* X4732Y21824D01* X4735Y21816D01* X4739Y21808D01* X4745Y21801D01* X4752Y21796D01* X4759Y21791D01* X4767Y21788D01* X4793Y21779D01* X4818Y21768D01* X4841Y21755D01* X4864Y21740D01* X4884Y21724D01* Y21276D01* X4868Y21262D01* X4846Y21247D01* X4822Y21233D01* X4798Y21222D01* X4772Y21213D01* X4764Y21209D01* X4757Y21205D01* X4750Y21199D01* X4745Y21192D01* X4741Y21184D01* X4738Y21176D01* X4737Y21167D01* X4737Y21159D01* X4739Y21150D01* X4742Y21142D01* X4747Y21135D01* X4753Y21128D01* X4760Y21123D01* X4767Y21119D01* X4776Y21116D01* X4784Y21115D01* X4793Y21115D01* X4801Y21117D01* X4836Y21129D01* X4868Y21144D01* X4884Y21153D01* Y19857D01* X4882Y19858D01* X4849Y19873D01* X4815Y19884D01* X4806Y19886D01* X4797Y19886D01* X4789Y19885D01* X4781Y19882D01* X4773Y19878D01* X4766Y19872D01* X4760Y19865D01* X4756Y19858D01* X4753Y19850D01* X4751Y19841D01* X4751Y19833D01* X4752Y19824D01* X4755Y19816D01* X4759Y19808D01* X4765Y19801D01* X4772Y19796D01* X4779Y19791D01* X4787Y19788D01* X4813Y19779D01* X4838Y19768D01* X4861Y19755D01* X4884Y19740D01* Y19259D01* X4866Y19247D01* X4842Y19233D01* X4818Y19222D01* X4792Y19213D01* X4784Y19209D01* X4777Y19205D01* X4770Y19199D01* X4765Y19192D01* X4761Y19184D01* X4758Y19176D01* X4757Y19167D01* X4757Y19159D01* X4759Y19150D01* X4762Y19142D01* X4767Y19135D01* X4773Y19128D01* X4780Y19123D01* X4787Y19119D01* X4796Y19116D01* X4804Y19115D01* X4813Y19115D01* X4821Y19117D01* X4856Y19129D01* X4884Y19142D01* Y17866D01* X4869Y17873D01* X4835Y17884D01* X4826Y17886D01* X4817Y17886D01* X4809Y17885D01* X4801Y17882D01* X4793Y17878D01* X4786Y17872D01* X4780Y17865D01* X4776Y17858D01* X4773Y17850D01* X4771Y17841D01* X4771Y17833D01* X4772Y17824D01* X4775Y17816D01* X4779Y17808D01* X4785Y17801D01* X4792Y17796D01* X4799Y17791D01* X4807Y17788D01* X4833Y17779D01* X4858Y17768D01* X4881Y17755D01* X4884Y17754D01* Y17246D01* X4862Y17233D01* X4838Y17222D01* X4812Y17213D01* X4804Y17209D01* X4797Y17205D01* X4790Y17199D01* X4785Y17192D01* X4781Y17184D01* X4778Y17176D01* X4777Y17167D01* X4777Y17159D01* X4779Y17150D01* X4782Y17142D01* X4787Y17135D01* X4793Y17128D01* X4800Y17123D01* X4807Y17119D01* X4816Y17116D01* X4824Y17115D01* X4833Y17115D01* X4841Y17117D01* X4876Y17129D01* X4884Y17133D01* Y15874D01* X4855Y15884D01* X4846Y15886D01* X4837Y15886D01* X4829Y15885D01* X4821Y15882D01* X4813Y15878D01* X4806Y15872D01* X4800Y15865D01* X4796Y15858D01* X4793Y15850D01* X4791Y15841D01* X4791Y15833D01* X4792Y15824D01* X4795Y15816D01* X4799Y15808D01* X4805Y15801D01* X4812Y15796D01* X4819Y15791D01* X4827Y15788D01* X4853Y15779D01* X4878Y15768D01* X4884Y15765D01* Y15234D01* X4882Y15233D01* X4858Y15222D01* X4832Y15213D01* X4824Y15209D01* X4817Y15205D01* X4810Y15199D01* X4805Y15192D01* X4801Y15184D01* X4798Y15176D01* X4797Y15167D01* X4797Y15159D01* X4799Y15150D01* X4802Y15142D01* X4807Y15135D01* X4813Y15128D01* X4820Y15123D01* X4827Y15119D01* X4836Y15116D01* X4844Y15115D01* X4853Y15115D01* X4861Y15117D01* X4884Y15125D01* Y13881D01* X4875Y13884D01* X4866Y13886D01* X4857Y13886D01* X4849Y13885D01* X4841Y13882D01* X4833Y13878D01* X4826Y13872D01* X4820Y13865D01* X4816Y13858D01* X4813Y13850D01* X4811Y13841D01* X4811Y13833D01* X4812Y13824D01* X4815Y13816D01* X4819Y13808D01* X4825Y13801D01* X4832Y13796D01* X4839Y13791D01* X4847Y13788D01* X4873Y13779D01* X4884Y13774D01* Y13225D01* X4878Y13222D01* X4852Y13213D01* X4844Y13209D01* X4837Y13205D01* X4830Y13199D01* X4825Y13192D01* X4821Y13184D01* X4818Y13176D01* X4817Y13167D01* X4817Y13159D01* X4819Y13150D01* X4822Y13142D01* X4827Y13135D01* X4833Y13128D01* X4840Y13123D01* X4847Y13119D01* X4856Y13116D01* X4864Y13115D01* X4873Y13115D01* X4881Y13117D01* X4884Y13118D01* Y11886D01* X4877Y11886D01* X4869Y11885D01* X4861Y11882D01* X4853Y11878D01* X4846Y11872D01* X4840Y11865D01* X4836Y11858D01* X4833Y11850D01* X4831Y11841D01* X4831Y11833D01* X4832Y11824D01* X4835Y11816D01* X4839Y11808D01* X4845Y11801D01* X4852Y11796D01* X4859Y11791D01* X4867Y11788D01* X4884Y11782D01* Y11217D01* X4872Y11213D01* X4864Y11209D01* X4857Y11205D01* X4850Y11199D01* X4845Y11192D01* X4841Y11184D01* X4838Y11176D01* X4837Y11167D01* X4837Y11159D01* X4839Y11150D01* X4842Y11142D01* X4847Y11135D01* X4853Y11128D01* X4860Y11123D01* X4867Y11119D01* X4876Y11116D01* X4884Y11115D01* Y9883D01* X4881Y9882D01* X4873Y9878D01* X4866Y9872D01* X4860Y9865D01* X4856Y9858D01* X4853Y9850D01* X4851Y9841D01* X4851Y9833D01* X4852Y9824D01* X4855Y9816D01* X4859Y9808D01* X4865Y9801D01* X4872Y9796D01* X4879Y9791D01* X4884Y9789D01* Y9209D01* X4877Y9205D01* X4870Y9199D01* X4865Y9192D01* X4861Y9184D01* X4858Y9176D01* X4857Y9167D01* X4857Y9159D01* X4859Y9150D01* X4862Y9142D01* X4867Y9135D01* X4873Y9128D01* X4880Y9123D01* X4884Y9121D01* Y7870D01* X4880Y7865D01* X4876Y7858D01* X4873Y7850D01* X4871Y7841D01* X4871Y7833D01* X4872Y7824D01* X4875Y7816D01* X4879Y7808D01* X4884Y7802D01* Y7190D01* X4881Y7184D01* X4878Y7176D01* X4877Y7167D01* X4877Y7159D01* X4879Y7150D01* X4882Y7142D01* X4884Y7140D01* Y0D01* X4625D01* Y1196D01* X4645Y1179D01* X4675Y1159D01* X4707Y1141D01* X4740Y1127D01* X4774Y1115D01* X4783Y1113D01* X4792Y1113D01* X4800Y1115D01* X4808Y1117D01* X4816Y1122D01* X4823Y1127D01* X4829Y1134D01* X4833Y1141D01* X4836Y1149D01* X4838Y1158D01* X4838Y1167D01* X4837Y1175D01* X4834Y1183D01* X4830Y1191D01* X4824Y1198D01* X4817Y1204D01* X4810Y1208D01* X4802Y1211D01* X4776Y1220D01* X4751Y1231D01* X4728Y1244D01* X4705Y1259D01* X4684Y1276D01* X4665Y1295D01* X4647Y1316D01* X4632Y1338D01* X4625Y1349D01* Y1650D01* X4629Y1657D01* X4644Y1679D01* X4661Y1700D01* X4680Y1719D01* X4701Y1737D01* X4723Y1752D01* X4747Y1766D01* X4771Y1777D01* X4797Y1786D01* X4805Y1790D01* X4812Y1794D01* X4819Y1800D01* X4824Y1807D01* X4828Y1815D01* X4831Y1823D01* X4832Y1832D01* X4832Y1840D01* X4830Y1849D01* X4827Y1857D01* X4822Y1864D01* X4816Y1871D01* X4809Y1876D01* X4802Y1880D01* X4793Y1883D01* X4785Y1884D01* X4776Y1884D01* X4768Y1882D01* X4733Y1870D01* X4701Y1855D01* X4669Y1837D01* X4640Y1816D01* X4625Y1804D01* Y3179D01* X4625Y3179D01* X4655Y3159D01* X4687Y3141D01* X4720Y3127D01* X4754Y3115D01* X4763Y3113D01* X4772Y3113D01* X4780Y3115D01* X4788Y3117D01* X4796Y3122D01* X4803Y3127D01* X4809Y3134D01* X4813Y3141D01* X4816Y3149D01* X4818Y3158D01* X4818Y3167D01* X4817Y3175D01* X4814Y3183D01* X4810Y3191D01* X4804Y3198D01* X4797Y3204D01* X4790Y3208D01* X4782Y3211D01* X4756Y3220D01* X4731Y3231D01* X4708Y3244D01* X4685Y3259D01* X4664Y3276D01* X4645Y3295D01* X4627Y3316D01* X4625Y3319D01* Y3680D01* X4641Y3700D01* X4660Y3719D01* X4681Y3737D01* X4703Y3752D01* X4727Y3766D01* X4751Y3777D01* X4777Y3786D01* X4785Y3790D01* X4792Y3794D01* X4799Y3800D01* X4804Y3807D01* X4808Y3815D01* X4811Y3823D01* X4812Y3832D01* X4812Y3840D01* X4810Y3849D01* X4807Y3857D01* X4802Y3864D01* X4796Y3871D01* X4789Y3876D01* X4782Y3880D01* X4773Y3883D01* X4765Y3884D01* X4756Y3884D01* X4748Y3882D01* X4713Y3870D01* X4681Y3855D01* X4649Y3837D01* X4625Y3820D01* Y5166D01* X4635Y5159D01* X4667Y5141D01* X4700Y5127D01* X4734Y5115D01* X4743Y5113D01* X4752Y5113D01* X4760Y5115D01* X4768Y5117D01* X4776Y5122D01* X4783Y5127D01* X4789Y5134D01* X4793Y5141D01* X4796Y5149D01* X4798Y5158D01* X4798Y5167D01* X4797Y5175D01* X4794Y5183D01* X4790Y5191D01* X4784Y5198D01* X4777Y5204D01* X4770Y5208D01* X4762Y5211D01* X4736Y5220D01* X4711Y5231D01* X4688Y5244D01* X4665Y5259D01* X4644Y5276D01* X4625Y5295D01* Y5704D01* X4640Y5719D01* X4661Y5737D01* X4683Y5752D01* X4707Y5766D01* X4731Y5777D01* X4757Y5786D01* X4765Y5790D01* X4772Y5794D01* X4779Y5800D01* X4784Y5807D01* X4788Y5815D01* X4791Y5823D01* X4792Y5832D01* X4792Y5840D01* X4790Y5849D01* X4787Y5857D01* X4782Y5864D01* X4776Y5871D01* X4769Y5876D01* X4762Y5880D01* X4753Y5883D01* X4745Y5884D01* X4736Y5884D01* X4728Y5882D01* X4693Y5870D01* X4661Y5855D01* X4629Y5837D01* X4625Y5834D01* Y7153D01* X4647Y7141D01* X4680Y7127D01* X4714Y7115D01* X4723Y7113D01* X4732Y7113D01* X4740Y7115D01* X4748Y7117D01* X4756Y7122D01* X4763Y7127D01* X4769Y7134D01* X4773Y7141D01* X4776Y7149D01* X4778Y7158D01* X4778Y7167D01* X4777Y7175D01* X4774Y7183D01* X4770Y7191D01* X4764Y7198D01* X4757Y7204D01* X4750Y7208D01* X4742Y7211D01* X4716Y7220D01* X4691Y7231D01* X4668Y7244D01* X4645Y7259D01* X4625Y7276D01* Y7723D01* X4641Y7737D01* X4663Y7752D01* X4687Y7766D01* X4711Y7777D01* X4737Y7786D01* X4745Y7790D01* X4752Y7794D01* X4759Y7800D01* X4764Y7807D01* X4768Y7815D01* X4771Y7823D01* X4772Y7832D01* X4772Y7840D01* X4770Y7849D01* X4767Y7857D01* X4762Y7864D01* X4756Y7871D01* X4749Y7876D01* X4742Y7880D01* X4733Y7883D01* X4725Y7884D01* X4716Y7884D01* X4708Y7882D01* X4673Y7870D01* X4641Y7855D01* X4625Y7846D01* Y9142D01* X4627Y9141D01* X4660Y9127D01* X4694Y9115D01* X4703Y9113D01* X4712Y9113D01* X4720Y9115D01* X4728Y9117D01* X4736Y9122D01* X4743Y9127D01* X4749Y9134D01* X4753Y9141D01* X4756Y9149D01* X4758Y9158D01* X4758Y9167D01* X4757Y9175D01* X4754Y9183D01* X4750Y9191D01* X4744Y9198D01* X4737Y9204D01* X4730Y9208D01* X4722Y9211D01* X4696Y9220D01* X4671Y9231D01* X4648Y9244D01* X4625Y9259D01* Y9740D01* X4643Y9752D01* X4667Y9766D01* X4691Y9777D01* X4717Y9786D01* X4725Y9790D01* X4732Y9794D01* X4739Y9800D01* X4744Y9807D01* X4748Y9815D01* X4751Y9823D01* X4752Y9832D01* X4752Y9840D01* X4750Y9849D01* X4747Y9857D01* X4742Y9864D01* X4736Y9871D01* X4729Y9876D01* X4722Y9880D01* X4713Y9883D01* X4705Y9884D01* X4696Y9884D01* X4688Y9882D01* X4653Y9870D01* X4625Y9857D01* Y11133D01* X4640Y11127D01* X4674Y11115D01* X4683Y11113D01* X4692Y11113D01* X4700Y11115D01* X4708Y11117D01* X4716Y11122D01* X4723Y11127D01* X4729Y11134D01* X4733Y11141D01* X4736Y11149D01* X4738Y11158D01* X4738Y11167D01* X4737Y11175D01* X4734Y11183D01* X4730Y11191D01* X4724Y11198D01* X4717Y11204D01* X4710Y11208D01* X4702Y11211D01* X4676Y11220D01* X4651Y11231D01* X4628Y11244D01* X4625Y11246D01* Y11754D01* X4647Y11766D01* X4671Y11777D01* X4697Y11786D01* X4705Y11790D01* X4712Y11794D01* X4719Y11800D01* X4724Y11807D01* X4728Y11815D01* X4731Y11823D01* X4732Y11832D01* X4732Y11840D01* X4730Y11849D01* X4727Y11857D01* X4722Y11864D01* X4716Y11871D01* X4709Y11876D01* X4702Y11880D01* X4693Y11883D01* X4685Y11884D01* X4676Y11884D01* X4668Y11882D01* X4633Y11870D01* X4625Y11866D01* Y13125D01* X4654Y13115D01* X4663Y13113D01* X4672Y13113D01* X4680Y13115D01* X4688Y13117D01* X4696Y13122D01* X4703Y13127D01* X4709Y13134D01* X4713Y13141D01* X4716Y13149D01* X4718Y13158D01* X4718Y13167D01* X4717Y13175D01* X4714Y13183D01* X4710Y13191D01* X4704Y13198D01* X4697Y13204D01* X4690Y13208D01* X4682Y13211D01* X4656Y13220D01* X4631Y13231D01* X4625Y13234D01* Y13765D01* X4627Y13766D01* X4651Y13777D01* X4677Y13786D01* X4685Y13790D01* X4692Y13794D01* X4699Y13800D01* X4704Y13807D01* X4708Y13815D01* X4711Y13823D01* X4712Y13832D01* X4712Y13840D01* X4710Y13849D01* X4707Y13857D01* X4702Y13864D01* X4696Y13871D01* X4689Y13876D01* X4682Y13880D01* X4673Y13883D01* X4665Y13884D01* X4656Y13884D01* X4648Y13882D01* X4625Y13874D01* Y15118D01* X4634Y15115D01* X4643Y15113D01* X4652Y15113D01* X4660Y15115D01* X4668Y15117D01* X4676Y15122D01* X4683Y15127D01* X4689Y15134D01* X4693Y15141D01* X4696Y15149D01* X4698Y15158D01* X4698Y15167D01* X4697Y15175D01* X4694Y15183D01* X4690Y15191D01* X4684Y15198D01* X4677Y15204D01* X4670Y15208D01* X4662Y15211D01* X4636Y15220D01* X4625Y15225D01* Y15775D01* X4631Y15777D01* X4657Y15786D01* X4665Y15790D01* X4672Y15794D01* X4679Y15800D01* X4684Y15807D01* X4688Y15815D01* X4691Y15823D01* X4692Y15832D01* X4692Y15840D01* X4690Y15849D01* X4687Y15857D01* X4682Y15864D01* X4676Y15871D01* X4669Y15876D01* X4662Y15880D01* X4653Y15883D01* X4645Y15884D01* X4636Y15884D01* X4628Y15882D01* X4625Y15881D01* Y17113D01* X4632Y17113D01* X4640Y17115D01* X4648Y17117D01* X4656Y17122D01* X4663Y17127D01* X4669Y17134D01* X4673Y17141D01* X4676Y17149D01* X4678Y17158D01* X4678Y17167D01* X4677Y17175D01* X4674Y17183D01* X4670Y17191D01* X4664Y17198D01* X4657Y17204D01* X4650Y17208D01* X4642Y17211D01* X4625Y17217D01* Y17782D01* X4637Y17786D01* X4645Y17790D01* X4652Y17794D01* X4659Y17800D01* X4664Y17807D01* X4668Y17815D01* X4671Y17823D01* X4672Y17832D01* X4672Y17840D01* X4670Y17849D01* X4667Y17857D01* X4662Y17864D01* X4656Y17871D01* X4649Y17876D01* X4642Y17880D01* X4633Y17883D01* X4625Y17884D01* Y19116D01* X4628Y19117D01* X4636Y19122D01* X4643Y19127D01* X4649Y19134D01* X4653Y19141D01* X4656Y19149D01* X4658Y19158D01* X4658Y19167D01* X4657Y19175D01* X4654Y19183D01* X4650Y19191D01* X4644Y19198D01* X4637Y19204D01* X4630Y19208D01* X4625Y19210D01* Y19790D01* X4632Y19794D01* X4639Y19800D01* X4644Y19807D01* X4648Y19815D01* X4651Y19823D01* X4652Y19832D01* X4652Y19840D01* X4650Y19849D01* X4647Y19857D01* X4642Y19864D01* X4636Y19871D01* X4629Y19876D01* X4625Y19878D01* Y21130D01* X4629Y21134D01* X4633Y21141D01* X4636Y21149D01* X4638Y21158D01* X4638Y21167D01* X4637Y21175D01* X4634Y21183D01* X4630Y21191D01* X4625Y21197D01* Y21809D01* X4628Y21815D01* X4631Y21823D01* X4632Y21832D01* X4632Y21840D01* X4630Y21849D01* X4627Y21857D01* X4625Y21859D01* Y33138D01* G37* G36* X4884Y40000D02*X5064D01* Y21625D01* X5055Y21651D01* X5040Y21683D01* X5022Y21715D01* X5001Y21744D01* X4977Y21772D01* X4952Y21797D01* X4924Y21820D01* X4894Y21840D01* X4884Y21846D01* Y23165D01* X4909Y23183D01* X4937Y23207D01* X4962Y23232D01* X4985Y23260D01* X5005Y23290D01* X5023Y23322D01* X5037Y23355D01* X5049Y23389D01* X5051Y23398D01* X5051Y23407D01* X5050Y23415D01* X5047Y23423D01* X5042Y23431D01* X5037Y23438D01* X5030Y23444D01* X5023Y23448D01* X5015Y23451D01* X5006Y23453D01* X4997Y23453D01* X4989Y23452D01* X4981Y23449D01* X4973Y23445D01* X4966Y23439D01* X4960Y23433D01* X4956Y23425D01* X4953Y23417D01* X4944Y23391D01* X4933Y23366D01* X4920Y23343D01* X4905Y23320D01* X4888Y23299D01* X4884Y23295D01* Y23704D01* X4884Y23704D01* X4902Y23683D01* X4917Y23661D01* X4931Y23637D01* X4942Y23613D01* X4951Y23587D01* X4955Y23579D01* X4959Y23572D01* X4965Y23565D01* X4972Y23560D01* X4980Y23556D01* X4988Y23553D01* X4997Y23552D01* X5005Y23552D01* X5014Y23554D01* X5022Y23557D01* X5029Y23562D01* X5036Y23568D01* X5041Y23575D01* X5045Y23582D01* X5048Y23591D01* X5049Y23599D01* X5049Y23608D01* X5047Y23617D01* X5035Y23651D01* X5020Y23683D01* X5002Y23715D01* X4981Y23744D01* X4957Y23772D01* X4932Y23797D01* X4904Y23820D01* X4884Y23834D01* Y25180D01* X4889Y25183D01* X4917Y25207D01* X4942Y25232D01* X4965Y25260D01* X4985Y25290D01* X5003Y25322D01* X5017Y25355D01* X5029Y25389D01* X5031Y25398D01* X5031Y25407D01* X5030Y25415D01* X5027Y25423D01* X5022Y25431D01* X5017Y25438D01* X5010Y25444D01* X5003Y25448D01* X4995Y25451D01* X4986Y25453D01* X4977Y25453D01* X4969Y25452D01* X4961Y25449D01* X4953Y25445D01* X4946Y25439D01* X4940Y25433D01* X4936Y25425D01* X4933Y25417D01* X4924Y25391D01* X4913Y25366D01* X4900Y25343D01* X4885Y25320D01* X4884Y25319D01* Y25680D01* X4897Y25661D01* X4911Y25637D01* X4922Y25613D01* X4931Y25587D01* X4935Y25579D01* X4939Y25572D01* X4945Y25565D01* X4952Y25560D01* X4960Y25556D01* X4968Y25553D01* X4977Y25552D01* X4985Y25552D01* X4994Y25554D01* X5002Y25557D01* X5009Y25562D01* X5016Y25568D01* X5021Y25575D01* X5025Y25582D01* X5028Y25591D01* X5029Y25599D01* X5029Y25608D01* X5027Y25617D01* X5015Y25651D01* X5000Y25683D01* X4982Y25715D01* X4961Y25744D01* X4937Y25772D01* X4912Y25797D01* X4884Y25820D01* Y27196D01* X4897Y27207D01* X4922Y27232D01* X4945Y27260D01* X4965Y27290D01* X4983Y27322D01* X4997Y27355D01* X5009Y27389D01* X5011Y27398D01* X5011Y27407D01* X5010Y27415D01* X5007Y27423D01* X5002Y27431D01* X4997Y27438D01* X4990Y27444D01* X4983Y27448D01* X4975Y27451D01* X4966Y27453D01* X4957Y27453D01* X4949Y27452D01* X4941Y27449D01* X4933Y27445D01* X4926Y27439D01* X4920Y27433D01* X4916Y27425D01* X4913Y27417D01* X4904Y27391D01* X4893Y27366D01* X4884Y27350D01* Y27650D01* X4891Y27637D01* X4902Y27613D01* X4911Y27587D01* X4915Y27579D01* X4919Y27572D01* X4925Y27565D01* X4932Y27560D01* X4940Y27556D01* X4948Y27553D01* X4957Y27552D01* X4965Y27552D01* X4974Y27554D01* X4982Y27557D01* X4989Y27562D01* X4996Y27568D01* X5001Y27575D01* X5005Y27582D01* X5008Y27591D01* X5009Y27599D01* X5009Y27608D01* X5007Y27617D01* X4995Y27651D01* X4980Y27683D01* X4962Y27715D01* X4941Y27744D01* X4917Y27772D01* X4892Y27797D01* X4884Y27804D01* Y29214D01* X4902Y29232D01* X4925Y29260D01* X4945Y29290D01* X4963Y29322D01* X4977Y29355D01* X4989Y29389D01* X4991Y29398D01* X4991Y29407D01* X4990Y29415D01* X4987Y29423D01* X4982Y29431D01* X4977Y29438D01* X4970Y29444D01* X4963Y29448D01* X4955Y29451D01* X4946Y29453D01* X4937Y29453D01* X4929Y29452D01* X4921Y29449D01* X4913Y29445D01* X4906Y29439D01* X4900Y29433D01* X4896Y29425D01* X4893Y29417D01* X4884Y29391D01* X4884Y29391D01* Y29608D01* X4891Y29587D01* X4895Y29579D01* X4899Y29572D01* X4905Y29565D01* X4912Y29560D01* X4920Y29556D01* X4928Y29553D01* X4937Y29552D01* X4945Y29552D01* X4954Y29554D01* X4962Y29557D01* X4969Y29562D01* X4976Y29568D01* X4981Y29575D01* X4985Y29582D01* X4988Y29591D01* X4989Y29599D01* X4989Y29608D01* X4987Y29617D01* X4975Y29651D01* X4960Y29683D01* X4942Y29715D01* X4921Y29744D01* X4897Y29772D01* X4884Y29785D01* Y31235D01* X4905Y31260D01* X4925Y31290D01* X4943Y31322D01* X4957Y31355D01* X4969Y31389D01* X4971Y31398D01* X4971Y31407D01* X4970Y31415D01* X4967Y31423D01* X4962Y31431D01* X4957Y31438D01* X4950Y31444D01* X4943Y31448D01* X4935Y31451D01* X4926Y31453D01* X4917Y31453D01* X4909Y31452D01* X4901Y31449D01* X4893Y31445D01* X4886Y31439D01* X4884Y31437D01* Y31567D01* X4885Y31565D01* X4892Y31560D01* X4900Y31556D01* X4908Y31553D01* X4917Y31552D01* X4925Y31552D01* X4934Y31554D01* X4942Y31557D01* X4949Y31562D01* X4956Y31568D01* X4961Y31575D01* X4965Y31582D01* X4968Y31591D01* X4969Y31599D01* X4969Y31608D01* X4967Y31617D01* X4955Y31651D01* X4940Y31683D01* X4922Y31715D01* X4901Y31744D01* X4884Y31764D01* Y33259D01* X4885Y33260D01* X4905Y33290D01* X4923Y33322D01* X4937Y33355D01* X4949Y33389D01* X4951Y33398D01* X4951Y33407D01* X4950Y33415D01* X4947Y33423D01* X4942Y33431D01* X4937Y33438D01* X4930Y33444D01* X4923Y33448D01* X4915Y33451D01* X4906Y33453D01* X4897Y33453D01* X4889Y33452D01* X4884Y33450D01* Y33555D01* X4888Y33553D01* X4897Y33552D01* X4905Y33552D01* X4914Y33554D01* X4922Y33557D01* X4929Y33562D01* X4936Y33568D01* X4941Y33575D01* X4945Y33582D01* X4948Y33591D01* X4949Y33599D01* X4949Y33608D01* X4947Y33617D01* X4935Y33651D01* X4920Y33683D01* X4902Y33715D01* X4884Y33740D01* Y35288D01* X4885Y35290D01* X4903Y35322D01* X4917Y35355D01* X4929Y35389D01* X4931Y35398D01* X4931Y35407D01* X4930Y35415D01* X4927Y35423D01* X4922Y35431D01* X4917Y35438D01* X4910Y35444D01* X4903Y35448D01* X4895Y35451D01* X4886Y35453D01* X4884D01* Y35552D01* X4885D01* X4894Y35554D01* X4902Y35557D01* X4909Y35562D01* X4916Y35568D01* X4921Y35575D01* X4925Y35582D01* X4928Y35591D01* X4929Y35599D01* X4929Y35608D01* X4927Y35617D01* X4915Y35651D01* X4900Y35683D01* X4884Y35711D01* Y37324D01* X4897Y37355D01* X4909Y37389D01* X4911Y37398D01* X4911Y37407D01* X4910Y37415D01* X4907Y37423D01* X4902Y37431D01* X4897Y37438D01* X4890Y37444D01* X4884Y37447D01* Y37559D01* X4889Y37562D01* X4896Y37568D01* X4901Y37575D01* X4905Y37582D01* X4908Y37591D01* X4909Y37599D01* X4909Y37608D01* X4907Y37617D01* X4895Y37651D01* X4884Y37674D01* Y39374D01* X4889Y39389D01* X4891Y39398D01* X4891Y39407D01* X4890Y39415D01* X4887Y39423D01* X4884Y39428D01* Y39580D01* X4885Y39582D01* X4888Y39591D01* X4889Y39599D01* X4889Y39608D01* X4887Y39617D01* X4884Y39625D01* Y40000D01* G37* G36* X5064Y0D02*X4884D01* Y7140D01* X4887Y7135D01* X4893Y7128D01* X4900Y7123D01* X4907Y7119D01* X4916Y7116D01* X4924Y7115D01* X4933Y7115D01* X4941Y7117D01* X4976Y7129D01* X5008Y7144D01* X5040Y7162D01* X5064Y7180D01* Y5834D01* X5054Y5840D01* X5022Y5858D01* X4989Y5873D01* X4955Y5884D01* X4946Y5886D01* X4937Y5886D01* X4929Y5885D01* X4921Y5882D01* X4913Y5878D01* X4906Y5872D01* X4900Y5865D01* X4896Y5858D01* X4893Y5850D01* X4891Y5841D01* X4891Y5833D01* X4892Y5824D01* X4895Y5816D01* X4899Y5808D01* X4905Y5801D01* X4912Y5796D01* X4919Y5791D01* X4927Y5788D01* X4953Y5779D01* X4978Y5768D01* X5001Y5755D01* X5024Y5740D01* X5045Y5723D01* X5064Y5704D01* Y5295D01* X5049Y5280D01* X5028Y5262D01* X5006Y5247D01* X4982Y5233D01* X4958Y5222D01* X4932Y5213D01* X4924Y5209D01* X4917Y5205D01* X4910Y5199D01* X4905Y5192D01* X4901Y5184D01* X4898Y5176D01* X4897Y5167D01* X4897Y5159D01* X4899Y5150D01* X4902Y5142D01* X4907Y5135D01* X4913Y5128D01* X4920Y5123D01* X4927Y5119D01* X4936Y5116D01* X4944Y5115D01* X4953Y5115D01* X4961Y5117D01* X4996Y5129D01* X5028Y5144D01* X5060Y5162D01* X5064Y5165D01* Y3846D01* X5042Y3858D01* X5009Y3873D01* X4975Y3884D01* X4966Y3886D01* X4957Y3886D01* X4949Y3885D01* X4941Y3882D01* X4933Y3878D01* X4926Y3872D01* X4920Y3865D01* X4916Y3858D01* X4913Y3850D01* X4911Y3841D01* X4911Y3833D01* X4912Y3824D01* X4915Y3816D01* X4919Y3808D01* X4925Y3801D01* X4932Y3796D01* X4939Y3791D01* X4947Y3788D01* X4973Y3779D01* X4998Y3768D01* X5021Y3755D01* X5044Y3740D01* X5064Y3724D01* Y3276D01* X5048Y3262D01* X5026Y3247D01* X5002Y3233D01* X4978Y3222D01* X4952Y3213D01* X4944Y3209D01* X4937Y3205D01* X4930Y3199D01* X4925Y3192D01* X4921Y3184D01* X4918Y3176D01* X4917Y3167D01* X4917Y3159D01* X4919Y3150D01* X4922Y3142D01* X4927Y3135D01* X4933Y3128D01* X4940Y3123D01* X4947Y3119D01* X4956Y3116D01* X4964Y3115D01* X4973Y3115D01* X4981Y3117D01* X5016Y3129D01* X5048Y3144D01* X5064Y3153D01* Y1857D01* X5062Y1858D01* X5029Y1873D01* X4995Y1884D01* X4986Y1886D01* X4977Y1886D01* X4969Y1885D01* X4961Y1882D01* X4953Y1878D01* X4946Y1872D01* X4940Y1865D01* X4936Y1858D01* X4933Y1850D01* X4931Y1841D01* X4931Y1833D01* X4932Y1824D01* X4935Y1816D01* X4939Y1808D01* X4945Y1801D01* X4952Y1796D01* X4959Y1791D01* X4967Y1788D01* X4993Y1779D01* X5018Y1768D01* X5041Y1755D01* X5064Y1740D01* Y1259D01* X5046Y1247D01* X5022Y1233D01* X4998Y1222D01* X4972Y1213D01* X4964Y1209D01* X4957Y1205D01* X4950Y1199D01* X4945Y1192D01* X4941Y1184D01* X4938Y1176D01* X4937Y1167D01* X4937Y1159D01* X4939Y1150D01* X4942Y1142D01* X4947Y1135D01* X4953Y1128D01* X4960Y1123D01* X4967Y1119D01* X4976Y1116D01* X4984Y1115D01* X4993Y1115D01* X5001Y1117D01* X5036Y1129D01* X5064Y1142D01* Y0D01* G37* G36* Y7319D02*X5048Y7299D01* X5029Y7280D01* X5008Y7262D01* X4986Y7247D01* X4962Y7233D01* X4938Y7222D01* X4912Y7213D01* X4904Y7209D01* X4897Y7205D01* X4890Y7199D01* X4885Y7192D01* X4884Y7190D01* Y7802D01* X4885Y7801D01* X4892Y7796D01* X4899Y7791D01* X4907Y7788D01* X4933Y7779D01* X4958Y7768D01* X4981Y7755D01* X5004Y7740D01* X5025Y7723D01* X5044Y7704D01* X5062Y7683D01* X5064Y7680D01* Y7319D01* G37* G36* Y7820D02*X5064Y7820D01* X5034Y7840D01* X5002Y7858D01* X4969Y7873D01* X4935Y7884D01* X4926Y7886D01* X4917Y7886D01* X4909Y7885D01* X4901Y7882D01* X4893Y7878D01* X4886Y7872D01* X4884Y7870D01* Y9121D01* X4887Y9119D01* X4896Y9116D01* X4904Y9115D01* X4913Y9115D01* X4921Y9117D01* X4956Y9129D01* X4988Y9144D01* X5020Y9162D01* X5049Y9183D01* X5064Y9196D01* Y7820D01* G37* G36* Y9350D02*X5060Y9343D01* X5045Y9320D01* X5028Y9299D01* X5009Y9280D01* X4988Y9262D01* X4966Y9247D01* X4942Y9233D01* X4918Y9222D01* X4892Y9213D01* X4884Y9209D01* X4884Y9209D01* Y9789D01* X4887Y9788D01* X4913Y9779D01* X4938Y9768D01* X4961Y9755D01* X4984Y9740D01* X5005Y9723D01* X5024Y9704D01* X5042Y9683D01* X5057Y9661D01* X5064Y9650D01* Y9350D01* G37* G36* Y9804D02*X5044Y9820D01* X5014Y9840D01* X4982Y9858D01* X4949Y9873D01* X4915Y9884D01* X4906Y9886D01* X4897Y9886D01* X4889Y9885D01* X4884Y9883D01* Y11115D01* X4884D01* X4893Y11115D01* X4901Y11117D01* X4936Y11129D01* X4968Y11144D01* X5000Y11162D01* X5029Y11183D01* X5057Y11207D01* X5064Y11214D01* Y9804D01* G37* G36* Y11391D02*X5053Y11366D01* X5040Y11343D01* X5025Y11320D01* X5008Y11299D01* X4989Y11280D01* X4968Y11262D01* X4946Y11247D01* X4922Y11233D01* X4898Y11222D01* X4884Y11217D01* Y11782D01* X4893Y11779D01* X4918Y11768D01* X4941Y11755D01* X4964Y11740D01* X4985Y11723D01* X5004Y11704D01* X5022Y11683D01* X5037Y11661D01* X5051Y11637D01* X5062Y11613D01* X5064Y11608D01* Y11391D01* G37* G36* Y11785D02*X5052Y11797D01* X5024Y11820D01* X4994Y11840D01* X4962Y11858D01* X4929Y11873D01* X4895Y11884D01* X4886Y11886D01* X4884D01* Y13118D01* X4916Y13129D01* X4948Y13144D01* X4980Y13162D01* X5009Y13183D01* X5037Y13207D01* X5062Y13232D01* X5064Y13235D01* Y11785D01* G37* G36* Y13437D02*X5060Y13433D01* X5056Y13425D01* X5053Y13417D01* X5044Y13391D01* X5033Y13366D01* X5020Y13343D01* X5005Y13320D01* X4988Y13299D01* X4969Y13280D01* X4948Y13262D01* X4926Y13247D01* X4902Y13233D01* X4884Y13225D01* Y13774D01* X4898Y13768D01* X4921Y13755D01* X4944Y13740D01* X4965Y13723D01* X4984Y13704D01* X5002Y13683D01* X5017Y13661D01* X5031Y13637D01* X5042Y13613D01* X5051Y13587D01* X5055Y13579D01* X5059Y13572D01* X5064Y13567D01* Y13437D01* G37* G36* Y13764D02*X5057Y13772D01* X5032Y13797D01* X5004Y13820D01* X4974Y13840D01* X4942Y13858D01* X4909Y13873D01* X4884Y13881D01* Y15125D01* X4896Y15129D01* X4928Y15144D01* X4960Y15162D01* X4989Y15183D01* X5017Y15207D01* X5042Y15232D01* X5064Y15259D01* Y13764D01* G37* G36* Y15450D02*X5061Y15449D01* X5053Y15445D01* X5046Y15439D01* X5040Y15433D01* X5036Y15425D01* X5033Y15417D01* X5024Y15391D01* X5013Y15366D01* X5000Y15343D01* X4985Y15320D01* X4968Y15299D01* X4949Y15280D01* X4928Y15262D01* X4906Y15247D01* X4884Y15234D01* Y15765D01* X4901Y15755D01* X4924Y15740D01* X4945Y15723D01* X4964Y15704D01* X4982Y15683D01* X4997Y15661D01* X5011Y15637D01* X5022Y15613D01* X5031Y15587D01* X5035Y15579D01* X5039Y15572D01* X5045Y15565D01* X5052Y15560D01* X5060Y15556D01* X5064Y15555D01* Y15450D01* G37* G36* Y15740D02*X5061Y15744D01* X5037Y15772D01* X5012Y15797D01* X4984Y15820D01* X4954Y15840D01* X4922Y15858D01* X4889Y15873D01* X4884Y15874D01* Y17133D01* X4908Y17144D01* X4940Y17162D01* X4969Y17183D01* X4997Y17207D01* X5022Y17232D01* X5045Y17260D01* X5064Y17288D01* Y15740D01* G37* G36* Y17453D02*X5057Y17453D01* X5049Y17452D01* X5041Y17449D01* X5033Y17445D01* X5026Y17439D01* X5020Y17433D01* X5016Y17425D01* X5013Y17417D01* X5004Y17391D01* X4993Y17366D01* X4980Y17343D01* X4965Y17320D01* X4948Y17299D01* X4929Y17280D01* X4908Y17262D01* X4886Y17247D01* X4884Y17246D01* Y17754D01* X4904Y17740D01* X4925Y17723D01* X4944Y17704D01* X4962Y17683D01* X4977Y17661D01* X4991Y17637D01* X5002Y17613D01* X5011Y17587D01* X5015Y17579D01* X5019Y17572D01* X5025Y17565D01* X5032Y17560D01* X5040Y17556D01* X5048Y17553D01* X5057Y17552D01* X5064Y17552D01* Y17453D01* G37* G36* Y17711D02*X5062Y17715D01* X5041Y17744D01* X5017Y17772D01* X4992Y17797D01* X4964Y17820D01* X4934Y17840D01* X4902Y17858D01* X4884Y17866D01* Y19142D01* X4888Y19144D01* X4920Y19162D01* X4949Y19183D01* X4977Y19207D01* X5002Y19232D01* X5025Y19260D01* X5045Y19290D01* X5063Y19322D01* X5064Y19324D01* Y17711D01* G37* G36* Y19447D02*X5063Y19448D01* X5055Y19451D01* X5046Y19453D01* X5037Y19453D01* X5029Y19452D01* X5021Y19449D01* X5013Y19445D01* X5006Y19439D01* X5000Y19433D01* X4996Y19425D01* X4993Y19417D01* X4984Y19391D01* X4973Y19366D01* X4960Y19343D01* X4945Y19320D01* X4928Y19299D01* X4909Y19280D01* X4888Y19262D01* X4884Y19259D01* Y19740D01* X4905Y19723D01* X4924Y19704D01* X4942Y19683D01* X4957Y19661D01* X4971Y19637D01* X4982Y19613D01* X4991Y19587D01* X4995Y19579D01* X4999Y19572D01* X5005Y19565D01* X5012Y19560D01* X5020Y19556D01* X5028Y19553D01* X5037Y19552D01* X5045Y19552D01* X5054Y19554D01* X5062Y19557D01* X5064Y19559D01* Y19447D01* G37* G36* Y19674D02*X5060Y19683D01* X5042Y19715D01* X5021Y19744D01* X4997Y19772D01* X4972Y19797D01* X4944Y19820D01* X4914Y19840D01* X4884Y19857D01* Y21153D01* X4900Y21162D01* X4929Y21183D01* X4957Y21207D01* X4982Y21232D01* X5005Y21260D01* X5025Y21290D01* X5043Y21322D01* X5057Y21355D01* X5064Y21374D01* Y19674D01* G37* G36* Y21428D02*X5062Y21431D01* X5057Y21438D01* X5050Y21444D01* X5043Y21448D01* X5035Y21451D01* X5026Y21453D01* X5017Y21453D01* X5009Y21452D01* X5001Y21449D01* X4993Y21445D01* X4986Y21439D01* X4980Y21433D01* X4976Y21425D01* X4973Y21417D01* X4964Y21391D01* X4953Y21366D01* X4940Y21343D01* X4925Y21320D01* X4908Y21299D01* X4889Y21280D01* X4884Y21276D01* Y21724D01* X4885Y21723D01* X4904Y21704D01* X4922Y21683D01* X4937Y21661D01* X4951Y21637D01* X4962Y21613D01* X4971Y21587D01* X4975Y21579D01* X4979Y21572D01* X4985Y21565D01* X4992Y21560D01* X5000Y21556D01* X5008Y21553D01* X5017Y21552D01* X5025Y21552D01* X5034Y21554D01* X5042Y21557D01* X5049Y21562D01* X5056Y21568D01* X5061Y21575D01* X5064Y21580D01* Y21428D01* G37* G36* Y40000D02*X6445D01* Y39859D01* X6442Y39864D01* X6436Y39871D01* X6429Y39876D01* X6422Y39880D01* X6413Y39883D01* X6405Y39884D01* X6396Y39884D01* X6388Y39882D01* X6353Y39870D01* X6321Y39855D01* X6289Y39837D01* X6260Y39816D01* X6232Y39793D01* X6207Y39767D01* X6184Y39739D01* X6164Y39709D01* X6146Y39677D01* X6132Y39644D01* X6120Y39610D01* X6118Y39601D01* X6118Y39593D01* X6119Y39584D01* X6122Y39576D01* X6127Y39568D01* X6132Y39561D01* X6139Y39556D01* X6146Y39551D01* X6154Y39548D01* X6163Y39546D01* X6172Y39546D01* X6180Y39547D01* X6188Y39550D01* X6196Y39555D01* X6203Y39560D01* X6209Y39567D01* X6213Y39574D01* X6216Y39582D01* X6225Y39608D01* X6236Y39633D01* X6249Y39657D01* X6264Y39679D01* X6281Y39700D01* X6300Y39719D01* X6321Y39737D01* X6343Y39752D01* X6367Y39766D01* X6391Y39777D01* X6417Y39786D01* X6425Y39790D01* X6432Y39794D01* X6439Y39800D01* X6444Y39807D01* X6445Y39809D01* Y39197D01* X6444Y39198D01* X6437Y39204D01* X6430Y39208D01* X6422Y39211D01* X6396Y39220D01* X6371Y39231D01* X6348Y39244D01* X6325Y39259D01* X6304Y39276D01* X6285Y39295D01* X6267Y39316D01* X6252Y39338D01* X6238Y39362D01* X6227Y39386D01* X6218Y39412D01* X6214Y39420D01* X6210Y39427D01* X6204Y39434D01* X6197Y39439D01* X6189Y39443D01* X6181Y39446D01* X6172Y39447D01* X6164Y39447D01* X6155Y39445D01* X6147Y39442D01* X6140Y39437D01* X6133Y39431D01* X6128Y39424D01* X6124Y39417D01* X6121Y39409D01* X6120Y39400D01* X6120Y39391D01* X6122Y39383D01* X6134Y39349D01* X6149Y39316D01* X6167Y39284D01* X6188Y39255D01* X6212Y39227D01* X6237Y39202D01* X6265Y39179D01* X6295Y39159D01* X6327Y39141D01* X6360Y39127D01* X6394Y39115D01* X6403Y39113D01* X6412Y39113D01* X6420Y39115D01* X6428Y39117D01* X6436Y39122D01* X6443Y39127D01* X6445Y39130D01* Y37878D01* X6442Y37880D01* X6433Y37883D01* X6425Y37884D01* X6416Y37884D01* X6408Y37882D01* X6373Y37870D01* X6341Y37855D01* X6309Y37837D01* X6280Y37816D01* X6252Y37793D01* X6227Y37767D01* X6204Y37739D01* X6184Y37709D01* X6166Y37677D01* X6152Y37644D01* X6140Y37610D01* X6138Y37601D01* X6138Y37593D01* X6139Y37584D01* X6142Y37576D01* X6147Y37568D01* X6152Y37561D01* X6159Y37556D01* X6166Y37551D01* X6174Y37548D01* X6183Y37546D01* X6192Y37546D01* X6200Y37547D01* X6208Y37550D01* X6216Y37555D01* X6223Y37560D01* X6229Y37567D01* X6233Y37574D01* X6236Y37582D01* X6245Y37608D01* X6256Y37633D01* X6269Y37657D01* X6284Y37679D01* X6301Y37700D01* X6320Y37719D01* X6341Y37737D01* X6363Y37752D01* X6387Y37766D01* X6411Y37777D01* X6437Y37786D01* X6445Y37790D01* X6445Y37790D01* Y37210D01* X6442Y37211D01* X6416Y37220D01* X6391Y37231D01* X6368Y37244D01* X6345Y37259D01* X6324Y37276D01* X6305Y37295D01* X6287Y37316D01* X6272Y37338D01* X6258Y37362D01* X6247Y37386D01* X6238Y37412D01* X6234Y37420D01* X6230Y37427D01* X6224Y37434D01* X6217Y37439D01* X6209Y37443D01* X6201Y37446D01* X6192Y37447D01* X6184Y37447D01* X6175Y37445D01* X6167Y37442D01* X6160Y37437D01* X6153Y37431D01* X6148Y37424D01* X6144Y37417D01* X6141Y37409D01* X6140Y37400D01* X6140Y37391D01* X6142Y37383D01* X6154Y37349D01* X6169Y37316D01* X6187Y37284D01* X6208Y37255D01* X6232Y37227D01* X6257Y37202D01* X6285Y37179D01* X6315Y37159D01* X6347Y37141D01* X6380Y37127D01* X6414Y37115D01* X6423Y37113D01* X6432Y37113D01* X6440Y37115D01* X6445Y37116D01* Y35884D01* X6445Y35884D01* X6436Y35884D01* X6428Y35882D01* X6393Y35870D01* X6361Y35855D01* X6329Y35837D01* X6300Y35816D01* X6272Y35793D01* X6247Y35767D01* X6224Y35739D01* X6204Y35709D01* X6186Y35677D01* X6172Y35644D01* X6160Y35610D01* X6158Y35601D01* X6158Y35593D01* X6159Y35584D01* X6162Y35576D01* X6167Y35568D01* X6172Y35561D01* X6179Y35556D01* X6186Y35551D01* X6194Y35548D01* X6203Y35546D01* X6212Y35546D01* X6220Y35547D01* X6228Y35550D01* X6236Y35555D01* X6243Y35560D01* X6249Y35567D01* X6253Y35574D01* X6256Y35582D01* X6265Y35608D01* X6276Y35633D01* X6289Y35657D01* X6304Y35679D01* X6321Y35700D01* X6340Y35719D01* X6361Y35737D01* X6383Y35752D01* X6407Y35766D01* X6431Y35777D01* X6445Y35782D01* Y35217D01* X6436Y35220D01* X6411Y35231D01* X6388Y35244D01* X6365Y35259D01* X6344Y35276D01* X6325Y35295D01* X6307Y35316D01* X6292Y35338D01* X6278Y35362D01* X6267Y35386D01* X6258Y35412D01* X6254Y35420D01* X6250Y35427D01* X6244Y35434D01* X6237Y35439D01* X6229Y35443D01* X6221Y35446D01* X6212Y35447D01* X6204Y35447D01* X6195Y35445D01* X6187Y35442D01* X6180Y35437D01* X6173Y35431D01* X6168Y35424D01* X6164Y35417D01* X6161Y35409D01* X6160Y35400D01* X6160Y35391D01* X6162Y35383D01* X6174Y35349D01* X6189Y35316D01* X6207Y35284D01* X6228Y35255D01* X6252Y35227D01* X6277Y35202D01* X6305Y35179D01* X6335Y35159D01* X6367Y35141D01* X6400Y35127D01* X6434Y35115D01* X6443Y35113D01* X6445D01* Y33881D01* X6413Y33870D01* X6381Y33855D01* X6349Y33837D01* X6320Y33816D01* X6292Y33793D01* X6267Y33767D01* X6244Y33739D01* X6224Y33709D01* X6206Y33677D01* X6192Y33644D01* X6180Y33610D01* X6178Y33601D01* X6178Y33593D01* X6179Y33584D01* X6182Y33576D01* X6187Y33568D01* X6192Y33561D01* X6199Y33556D01* X6206Y33551D01* X6214Y33548D01* X6223Y33546D01* X6232Y33546D01* X6240Y33547D01* X6248Y33550D01* X6256Y33555D01* X6263Y33560D01* X6269Y33567D01* X6273Y33574D01* X6276Y33582D01* X6285Y33608D01* X6296Y33633D01* X6309Y33657D01* X6324Y33679D01* X6341Y33700D01* X6360Y33719D01* X6381Y33737D01* X6403Y33752D01* X6427Y33766D01* X6445Y33775D01* Y33225D01* X6431Y33231D01* X6408Y33244D01* X6385Y33259D01* X6364Y33276D01* X6345Y33295D01* X6327Y33316D01* X6312Y33338D01* X6298Y33362D01* X6287Y33386D01* X6278Y33412D01* X6274Y33420D01* X6270Y33427D01* X6264Y33434D01* X6257Y33439D01* X6249Y33443D01* X6241Y33446D01* X6232Y33447D01* X6224Y33447D01* X6215Y33445D01* X6207Y33442D01* X6200Y33437D01* X6193Y33431D01* X6188Y33424D01* X6184Y33417D01* X6181Y33409D01* X6180Y33400D01* X6180Y33391D01* X6182Y33383D01* X6194Y33349D01* X6209Y33316D01* X6227Y33284D01* X6248Y33255D01* X6272Y33227D01* X6297Y33202D01* X6325Y33179D01* X6355Y33159D01* X6387Y33141D01* X6420Y33127D01* X6445Y33118D01* Y31874D01* X6433Y31870D01* X6401Y31855D01* X6369Y31837D01* X6340Y31816D01* X6312Y31793D01* X6287Y31767D01* X6264Y31739D01* X6244Y31709D01* X6226Y31677D01* X6212Y31644D01* X6200Y31610D01* X6198Y31601D01* X6198Y31593D01* X6199Y31584D01* X6202Y31576D01* X6207Y31568D01* X6212Y31561D01* X6219Y31556D01* X6226Y31551D01* X6234Y31548D01* X6243Y31546D01* X6252Y31546D01* X6260Y31547D01* X6268Y31550D01* X6276Y31555D01* X6283Y31560D01* X6289Y31567D01* X6293Y31574D01* X6296Y31582D01* X6305Y31608D01* X6316Y31633D01* X6329Y31657D01* X6344Y31679D01* X6361Y31700D01* X6380Y31719D01* X6401Y31737D01* X6423Y31752D01* X6445Y31765D01* Y31234D01* X6428Y31244D01* X6405Y31259D01* X6384Y31276D01* X6365Y31295D01* X6347Y31316D01* X6332Y31338D01* X6318Y31362D01* X6307Y31386D01* X6298Y31412D01* X6294Y31420D01* X6290Y31427D01* X6284Y31434D01* X6277Y31439D01* X6269Y31443D01* X6261Y31446D01* X6252Y31447D01* X6244Y31447D01* X6235Y31445D01* X6227Y31442D01* X6220Y31437D01* X6213Y31431D01* X6208Y31424D01* X6204Y31417D01* X6201Y31409D01* X6200Y31400D01* X6200Y31391D01* X6202Y31383D01* X6214Y31349D01* X6229Y31316D01* X6247Y31284D01* X6268Y31255D01* X6292Y31227D01* X6317Y31202D01* X6345Y31179D01* X6375Y31159D01* X6407Y31141D01* X6440Y31127D01* X6445Y31125D01* Y29866D01* X6421Y29855D01* X6389Y29837D01* X6360Y29816D01* X6332Y29793D01* X6307Y29767D01* X6284Y29739D01* X6264Y29709D01* X6246Y29677D01* X6232Y29644D01* X6220Y29610D01* X6218Y29601D01* X6218Y29593D01* X6219Y29584D01* X6222Y29576D01* X6227Y29568D01* X6232Y29561D01* X6239Y29556D01* X6246Y29551D01* X6254Y29548D01* X6263Y29546D01* X6272Y29546D01* X6280Y29547D01* X6288Y29550D01* X6296Y29555D01* X6303Y29560D01* X6309Y29567D01* X6313Y29574D01* X6316Y29582D01* X6325Y29608D01* X6336Y29633D01* X6349Y29657D01* X6364Y29679D01* X6381Y29700D01* X6400Y29719D01* X6421Y29737D01* X6443Y29752D01* X6445Y29754D01* Y29246D01* X6425Y29259D01* X6404Y29276D01* X6385Y29295D01* X6367Y29316D01* X6352Y29338D01* X6338Y29362D01* X6327Y29386D01* X6318Y29412D01* X6314Y29420D01* X6310Y29427D01* X6304Y29434D01* X6297Y29439D01* X6289Y29443D01* X6281Y29446D01* X6272Y29447D01* X6264Y29447D01* X6255Y29445D01* X6247Y29442D01* X6240Y29437D01* X6233Y29431D01* X6228Y29424D01* X6224Y29417D01* X6221Y29409D01* X6220Y29400D01* X6220Y29391D01* X6222Y29383D01* X6234Y29349D01* X6249Y29316D01* X6267Y29284D01* X6288Y29255D01* X6312Y29227D01* X6337Y29202D01* X6365Y29179D01* X6395Y29159D01* X6427Y29141D01* X6445Y29133D01* Y27857D01* X6441Y27855D01* X6409Y27837D01* X6380Y27816D01* X6352Y27793D01* X6327Y27767D01* X6304Y27739D01* X6284Y27709D01* X6266Y27677D01* X6252Y27644D01* X6240Y27610D01* X6238Y27601D01* X6238Y27593D01* X6239Y27584D01* X6242Y27576D01* X6247Y27568D01* X6252Y27561D01* X6259Y27556D01* X6266Y27551D01* X6274Y27548D01* X6283Y27546D01* X6292Y27546D01* X6300Y27547D01* X6308Y27550D01* X6316Y27555D01* X6323Y27560D01* X6329Y27567D01* X6333Y27574D01* X6336Y27582D01* X6345Y27608D01* X6356Y27633D01* X6369Y27657D01* X6384Y27679D01* X6401Y27700D01* X6420Y27719D01* X6441Y27737D01* X6445Y27740D01* Y27259D01* X6445Y27259D01* X6424Y27276D01* X6405Y27295D01* X6387Y27316D01* X6372Y27338D01* X6358Y27362D01* X6347Y27386D01* X6338Y27412D01* X6334Y27420D01* X6330Y27427D01* X6324Y27434D01* X6317Y27439D01* X6309Y27443D01* X6301Y27446D01* X6292Y27447D01* X6284Y27447D01* X6275Y27445D01* X6267Y27442D01* X6260Y27437D01* X6253Y27431D01* X6248Y27424D01* X6244Y27417D01* X6241Y27409D01* X6240Y27400D01* X6240Y27391D01* X6242Y27383D01* X6254Y27349D01* X6269Y27316D01* X6287Y27284D01* X6308Y27255D01* X6332Y27227D01* X6357Y27202D01* X6385Y27179D01* X6415Y27159D01* X6445Y27142D01* Y25846D01* X6429Y25837D01* X6400Y25816D01* X6372Y25793D01* X6347Y25767D01* X6324Y25739D01* X6304Y25709D01* X6286Y25677D01* X6272Y25644D01* X6260Y25610D01* X6258Y25601D01* X6258Y25593D01* X6259Y25584D01* X6262Y25576D01* X6267Y25568D01* X6272Y25561D01* X6279Y25556D01* X6286Y25551D01* X6294Y25548D01* X6303Y25546D01* X6312Y25546D01* X6320Y25547D01* X6328Y25550D01* X6336Y25555D01* X6343Y25560D01* X6349Y25567D01* X6353Y25574D01* X6356Y25582D01* X6365Y25608D01* X6376Y25633D01* X6389Y25657D01* X6404Y25679D01* X6421Y25700D01* X6440Y25719D01* X6445Y25723D01* Y25276D01* X6444Y25276D01* X6425Y25295D01* X6407Y25316D01* X6392Y25338D01* X6378Y25362D01* X6367Y25386D01* X6358Y25412D01* X6354Y25420D01* X6350Y25427D01* X6344Y25434D01* X6337Y25439D01* X6329Y25443D01* X6321Y25446D01* X6312Y25447D01* X6304Y25447D01* X6295Y25445D01* X6287Y25442D01* X6280Y25437D01* X6273Y25431D01* X6268Y25424D01* X6264Y25417D01* X6261Y25409D01* X6260Y25400D01* X6260Y25391D01* X6262Y25383D01* X6274Y25349D01* X6289Y25316D01* X6307Y25284D01* X6328Y25255D01* X6352Y25227D01* X6377Y25202D01* X6405Y25179D01* X6435Y25159D01* X6445Y25153D01* Y23834D01* X6420Y23816D01* X6392Y23793D01* X6367Y23767D01* X6344Y23739D01* X6324Y23709D01* X6306Y23677D01* X6292Y23644D01* X6280Y23610D01* X6278Y23601D01* X6278Y23593D01* X6279Y23584D01* X6282Y23576D01* X6287Y23568D01* X6292Y23561D01* X6299Y23556D01* X6306Y23551D01* X6314Y23548D01* X6323Y23546D01* X6332Y23546D01* X6340Y23547D01* X6348Y23550D01* X6356Y23555D01* X6363Y23560D01* X6369Y23567D01* X6373Y23574D01* X6376Y23582D01* X6385Y23608D01* X6396Y23633D01* X6409Y23657D01* X6424Y23679D01* X6441Y23700D01* X6445Y23704D01* Y23295D01* X6445Y23295D01* X6427Y23316D01* X6412Y23338D01* X6398Y23362D01* X6387Y23386D01* X6378Y23412D01* X6374Y23420D01* X6370Y23427D01* X6364Y23434D01* X6357Y23439D01* X6349Y23443D01* X6341Y23446D01* X6332Y23447D01* X6324Y23447D01* X6315Y23445D01* X6307Y23442D01* X6300Y23437D01* X6293Y23431D01* X6288Y23424D01* X6284Y23417D01* X6281Y23409D01* X6280Y23400D01* X6280Y23391D01* X6282Y23383D01* X6294Y23349D01* X6309Y23316D01* X6327Y23284D01* X6348Y23255D01* X6372Y23227D01* X6397Y23202D01* X6425Y23179D01* X6445Y23166D01* Y21820D01* X6440Y21816D01* X6412Y21793D01* X6387Y21767D01* X6364Y21739D01* X6344Y21709D01* X6326Y21677D01* X6312Y21644D01* X6300Y21610D01* X6298Y21601D01* X6298Y21593D01* X6299Y21584D01* X6302Y21576D01* X6307Y21568D01* X6312Y21561D01* X6319Y21556D01* X6326Y21551D01* X6334Y21548D01* X6343Y21546D01* X6352Y21546D01* X6360Y21547D01* X6368Y21550D01* X6376Y21555D01* X6383Y21560D01* X6389Y21567D01* X6393Y21574D01* X6396Y21582D01* X6405Y21608D01* X6416Y21633D01* X6429Y21657D01* X6444Y21679D01* X6445Y21680D01* Y21319D01* X6432Y21338D01* X6418Y21362D01* X6407Y21386D01* X6398Y21412D01* X6394Y21420D01* X6390Y21427D01* X6384Y21434D01* X6377Y21439D01* X6369Y21443D01* X6361Y21446D01* X6352Y21447D01* X6344Y21447D01* X6335Y21445D01* X6327Y21442D01* X6320Y21437D01* X6313Y21431D01* X6308Y21424D01* X6304Y21417D01* X6301Y21409D01* X6300Y21400D01* X6300Y21391D01* X6302Y21383D01* X6314Y21349D01* X6329Y21316D01* X6347Y21284D01* X6368Y21255D01* X6392Y21227D01* X6417Y21202D01* X6445Y21179D01* Y19804D01* X6432Y19793D01* X6407Y19767D01* X6384Y19739D01* X6364Y19709D01* X6346Y19677D01* X6332Y19644D01* X6320Y19610D01* X6318Y19601D01* X6318Y19593D01* X6319Y19584D01* X6322Y19576D01* X6327Y19568D01* X6332Y19561D01* X6339Y19556D01* X6346Y19551D01* X6354Y19548D01* X6363Y19546D01* X6372Y19546D01* X6380Y19547D01* X6388Y19550D01* X6396Y19555D01* X6403Y19560D01* X6409Y19567D01* X6413Y19574D01* X6416Y19582D01* X6425Y19608D01* X6436Y19633D01* X6445Y19650D01* Y19349D01* X6438Y19362D01* X6427Y19386D01* X6418Y19412D01* X6414Y19420D01* X6410Y19427D01* X6404Y19434D01* X6397Y19439D01* X6389Y19443D01* X6381Y19446D01* X6372Y19447D01* X6364Y19447D01* X6355Y19445D01* X6347Y19442D01* X6340Y19437D01* X6333Y19431D01* X6328Y19424D01* X6324Y19417D01* X6321Y19409D01* X6320Y19400D01* X6320Y19391D01* X6322Y19383D01* X6334Y19349D01* X6349Y19316D01* X6367Y19284D01* X6388Y19255D01* X6412Y19227D01* X6437Y19202D01* X6445Y19196D01* Y17785D01* X6427Y17767D01* X6404Y17739D01* X6384Y17709D01* X6366Y17677D01* X6352Y17644D01* X6340Y17610D01* X6338Y17601D01* X6338Y17593D01* X6339Y17584D01* X6342Y17576D01* X6347Y17568D01* X6352Y17561D01* X6359Y17556D01* X6366Y17551D01* X6374Y17548D01* X6383Y17546D01* X6392Y17546D01* X6400Y17547D01* X6408Y17550D01* X6416Y17555D01* X6423Y17560D01* X6429Y17567D01* X6433Y17574D01* X6436Y17582D01* X6445Y17608D01* X6445Y17609D01* Y17391D01* X6438Y17412D01* X6434Y17420D01* X6430Y17427D01* X6424Y17434D01* X6417Y17439D01* X6409Y17443D01* X6401Y17446D01* X6392Y17447D01* X6384Y17447D01* X6375Y17445D01* X6367Y17442D01* X6360Y17437D01* X6353Y17431D01* X6348Y17424D01* X6344Y17417D01* X6341Y17409D01* X6340Y17400D01* X6340Y17391D01* X6342Y17383D01* X6354Y17349D01* X6369Y17316D01* X6387Y17284D01* X6408Y17255D01* X6432Y17227D01* X6445Y17214D01* Y15765D01* X6424Y15739D01* X6404Y15709D01* X6386Y15677D01* X6372Y15644D01* X6360Y15610D01* X6358Y15601D01* X6358Y15593D01* X6359Y15584D01* X6362Y15576D01* X6367Y15568D01* X6372Y15561D01* X6379Y15556D01* X6386Y15551D01* X6394Y15548D01* X6403Y15546D01* X6412Y15546D01* X6420Y15547D01* X6428Y15550D01* X6436Y15555D01* X6443Y15560D01* X6445Y15563D01* Y15432D01* X6444Y15434D01* X6437Y15439D01* X6429Y15443D01* X6421Y15446D01* X6412Y15447D01* X6404Y15447D01* X6395Y15445D01* X6387Y15442D01* X6380Y15437D01* X6373Y15431D01* X6368Y15424D01* X6364Y15417D01* X6361Y15409D01* X6360Y15400D01* X6360Y15391D01* X6362Y15383D01* X6374Y15349D01* X6389Y15316D01* X6407Y15284D01* X6428Y15255D01* X6445Y15235D01* Y13740D01* X6444Y13739D01* X6424Y13709D01* X6406Y13677D01* X6392Y13644D01* X6380Y13610D01* X6378Y13601D01* X6378Y13593D01* X6379Y13584D01* X6382Y13576D01* X6387Y13568D01* X6392Y13561D01* X6399Y13556D01* X6406Y13551D01* X6414Y13548D01* X6423Y13546D01* X6432Y13546D01* X6440Y13547D01* X6445Y13549D01* Y13445D01* X6441Y13446D01* X6432Y13447D01* X6424Y13447D01* X6415Y13445D01* X6407Y13442D01* X6400Y13437D01* X6393Y13431D01* X6388Y13424D01* X6384Y13417D01* X6381Y13409D01* X6380Y13400D01* X6380Y13391D01* X6382Y13383D01* X6394Y13349D01* X6409Y13316D01* X6427Y13284D01* X6445Y13259D01* Y11711D01* X6444Y11709D01* X6426Y11677D01* X6412Y11644D01* X6400Y11610D01* X6398Y11601D01* X6398Y11593D01* X6399Y11584D01* X6402Y11576D01* X6407Y11568D01* X6412Y11561D01* X6419Y11556D01* X6426Y11551D01* X6434Y11548D01* X6443Y11546D01* X6445D01* Y11447D01* X6444Y11447D01* X6435Y11445D01* X6427Y11442D01* X6420Y11437D01* X6413Y11431D01* X6408Y11424D01* X6404Y11417D01* X6401Y11409D01* X6400Y11400D01* X6400Y11391D01* X6402Y11383D01* X6414Y11349D01* X6429Y11316D01* X6445Y11288D01* Y9675D01* X6432Y9644D01* X6420Y9610D01* X6418Y9601D01* X6418Y9593D01* X6419Y9584D01* X6422Y9576D01* X6427Y9568D01* X6432Y9561D01* X6439Y9556D01* X6445Y9552D01* Y9441D01* X6440Y9437D01* X6433Y9431D01* X6428Y9424D01* X6424Y9417D01* X6421Y9409D01* X6420Y9400D01* X6420Y9391D01* X6422Y9383D01* X6434Y9349D01* X6445Y9325D01* Y7625D01* X6440Y7610D01* X6438Y7601D01* X6438Y7593D01* X6439Y7584D01* X6442Y7576D01* X6445Y7571D01* Y7419D01* X6444Y7417D01* X6441Y7409D01* X6440Y7400D01* X6440Y7391D01* X6442Y7383D01* X6445Y7374D01* Y0D01* X5064D01* Y1142D01* X5068Y1144D01* X5100Y1162D01* X5129Y1183D01* X5157Y1207D01* X5182Y1232D01* X5205Y1260D01* X5225Y1290D01* X5243Y1322D01* X5257Y1355D01* X5269Y1389D01* X5271Y1398D01* X5271Y1407D01* X5270Y1415D01* X5267Y1423D01* X5262Y1431D01* X5257Y1438D01* X5250Y1444D01* X5243Y1448D01* X5235Y1451D01* X5226Y1453D01* X5217Y1453D01* X5209Y1452D01* X5201Y1449D01* X5193Y1445D01* X5186Y1439D01* X5180Y1433D01* X5176Y1425D01* X5173Y1417D01* X5164Y1391D01* X5153Y1366D01* X5140Y1343D01* X5125Y1320D01* X5108Y1299D01* X5089Y1280D01* X5068Y1262D01* X5064Y1259D01* Y1740D01* X5085Y1723D01* X5104Y1704D01* X5122Y1683D01* X5137Y1661D01* X5151Y1637D01* X5162Y1613D01* X5171Y1587D01* X5175Y1579D01* X5179Y1572D01* X5185Y1565D01* X5192Y1560D01* X5200Y1556D01* X5208Y1553D01* X5217Y1552D01* X5225Y1552D01* X5234Y1554D01* X5242Y1557D01* X5249Y1562D01* X5256Y1568D01* X5261Y1575D01* X5265Y1582D01* X5268Y1591D01* X5269Y1599D01* X5269Y1608D01* X5267Y1617D01* X5255Y1651D01* X5240Y1683D01* X5222Y1715D01* X5201Y1744D01* X5177Y1772D01* X5152Y1797D01* X5124Y1820D01* X5094Y1840D01* X5064Y1857D01* Y3153D01* X5080Y3162D01* X5109Y3183D01* X5137Y3207D01* X5162Y3232D01* X5185Y3260D01* X5205Y3290D01* X5223Y3322D01* X5237Y3355D01* X5249Y3389D01* X5251Y3398D01* X5251Y3407D01* X5250Y3415D01* X5247Y3423D01* X5242Y3431D01* X5237Y3438D01* X5230Y3444D01* X5223Y3448D01* X5215Y3451D01* X5206Y3453D01* X5197Y3453D01* X5189Y3452D01* X5181Y3449D01* X5173Y3445D01* X5166Y3439D01* X5160Y3433D01* X5156Y3425D01* X5153Y3417D01* X5144Y3391D01* X5133Y3366D01* X5120Y3343D01* X5105Y3320D01* X5088Y3299D01* X5069Y3280D01* X5064Y3276D01* Y3724D01* X5065Y3723D01* X5084Y3704D01* X5102Y3683D01* X5117Y3661D01* X5131Y3637D01* X5142Y3613D01* X5151Y3587D01* X5155Y3579D01* X5159Y3572D01* X5165Y3565D01* X5172Y3560D01* X5180Y3556D01* X5188Y3553D01* X5197Y3552D01* X5205Y3552D01* X5214Y3554D01* X5222Y3557D01* X5229Y3562D01* X5236Y3568D01* X5241Y3575D01* X5245Y3582D01* X5248Y3591D01* X5249Y3599D01* X5249Y3608D01* X5247Y3617D01* X5235Y3651D01* X5220Y3683D01* X5202Y3715D01* X5181Y3744D01* X5157Y3772D01* X5132Y3797D01* X5104Y3820D01* X5074Y3840D01* X5064Y3846D01* Y5165D01* X5089Y5183D01* X5117Y5207D01* X5142Y5232D01* X5165Y5260D01* X5185Y5290D01* X5203Y5322D01* X5217Y5355D01* X5229Y5389D01* X5231Y5398D01* X5231Y5407D01* X5230Y5415D01* X5227Y5423D01* X5222Y5431D01* X5217Y5438D01* X5210Y5444D01* X5203Y5448D01* X5195Y5451D01* X5186Y5453D01* X5177Y5453D01* X5169Y5452D01* X5161Y5449D01* X5153Y5445D01* X5146Y5439D01* X5140Y5433D01* X5136Y5425D01* X5133Y5417D01* X5124Y5391D01* X5113Y5366D01* X5100Y5343D01* X5085Y5320D01* X5068Y5299D01* X5064Y5295D01* Y5704D01* X5064Y5704D01* X5082Y5683D01* X5097Y5661D01* X5111Y5637D01* X5122Y5613D01* X5131Y5587D01* X5135Y5579D01* X5139Y5572D01* X5145Y5565D01* X5152Y5560D01* X5160Y5556D01* X5168Y5553D01* X5177Y5552D01* X5185Y5552D01* X5194Y5554D01* X5202Y5557D01* X5209Y5562D01* X5216Y5568D01* X5221Y5575D01* X5225Y5582D01* X5228Y5591D01* X5229Y5599D01* X5229Y5608D01* X5227Y5617D01* X5215Y5651D01* X5200Y5683D01* X5182Y5715D01* X5161Y5744D01* X5137Y5772D01* X5112Y5797D01* X5084Y5820D01* X5064Y5834D01* Y7180D01* X5069Y7183D01* X5097Y7207D01* X5122Y7232D01* X5145Y7260D01* X5165Y7290D01* X5183Y7322D01* X5197Y7355D01* X5209Y7389D01* X5211Y7398D01* X5211Y7407D01* X5210Y7415D01* X5207Y7423D01* X5202Y7431D01* X5197Y7438D01* X5190Y7444D01* X5183Y7448D01* X5175Y7451D01* X5166Y7453D01* X5157Y7453D01* X5149Y7452D01* X5141Y7449D01* X5133Y7445D01* X5126Y7439D01* X5120Y7433D01* X5116Y7425D01* X5113Y7417D01* X5104Y7391D01* X5093Y7366D01* X5080Y7343D01* X5065Y7320D01* X5064Y7319D01* Y7680D01* X5077Y7661D01* X5091Y7637D01* X5102Y7613D01* X5111Y7587D01* X5115Y7579D01* X5119Y7572D01* X5125Y7565D01* X5132Y7560D01* X5140Y7556D01* X5148Y7553D01* X5157Y7552D01* X5165Y7552D01* X5174Y7554D01* X5182Y7557D01* X5189Y7562D01* X5196Y7568D01* X5201Y7575D01* X5205Y7582D01* X5208Y7591D01* X5209Y7599D01* X5209Y7608D01* X5207Y7617D01* X5195Y7651D01* X5180Y7683D01* X5162Y7715D01* X5141Y7744D01* X5117Y7772D01* X5092Y7797D01* X5064Y7820D01* Y9196D01* X5077Y9207D01* X5102Y9232D01* X5125Y9260D01* X5145Y9290D01* X5163Y9322D01* X5177Y9355D01* X5189Y9389D01* X5191Y9398D01* X5191Y9407D01* X5190Y9415D01* X5187Y9423D01* X5182Y9431D01* X5177Y9438D01* X5170Y9444D01* X5163Y9448D01* X5155Y9451D01* X5146Y9453D01* X5137Y9453D01* X5129Y9452D01* X5121Y9449D01* X5113Y9445D01* X5106Y9439D01* X5100Y9433D01* X5096Y9425D01* X5093Y9417D01* X5084Y9391D01* X5073Y9366D01* X5064Y9350D01* Y9650D01* X5071Y9637D01* X5082Y9613D01* X5091Y9587D01* X5095Y9579D01* X5099Y9572D01* X5105Y9565D01* X5112Y9560D01* X5120Y9556D01* X5128Y9553D01* X5137Y9552D01* X5145Y9552D01* X5154Y9554D01* X5162Y9557D01* X5169Y9562D01* X5176Y9568D01* X5181Y9575D01* X5185Y9582D01* X5188Y9591D01* X5189Y9599D01* X5189Y9608D01* X5187Y9617D01* X5175Y9651D01* X5160Y9683D01* X5142Y9715D01* X5121Y9744D01* X5097Y9772D01* X5072Y9797D01* X5064Y9804D01* Y11214D01* X5082Y11232D01* X5105Y11260D01* X5125Y11290D01* X5143Y11322D01* X5157Y11355D01* X5169Y11389D01* X5171Y11398D01* X5171Y11407D01* X5170Y11415D01* X5167Y11423D01* X5162Y11431D01* X5157Y11438D01* X5150Y11444D01* X5143Y11448D01* X5135Y11451D01* X5126Y11453D01* X5117Y11453D01* X5109Y11452D01* X5101Y11449D01* X5093Y11445D01* X5086Y11439D01* X5080Y11433D01* X5076Y11425D01* X5073Y11417D01* X5064Y11391D01* X5064Y11391D01* Y11608D01* X5071Y11587D01* X5075Y11579D01* X5079Y11572D01* X5085Y11565D01* X5092Y11560D01* X5100Y11556D01* X5108Y11553D01* X5117Y11552D01* X5125Y11552D01* X5134Y11554D01* X5142Y11557D01* X5149Y11562D01* X5156Y11568D01* X5161Y11575D01* X5165Y11582D01* X5168Y11591D01* X5169Y11599D01* X5169Y11608D01* X5167Y11617D01* X5155Y11651D01* X5140Y11683D01* X5122Y11715D01* X5101Y11744D01* X5077Y11772D01* X5064Y11785D01* Y13235D01* X5085Y13260D01* X5105Y13290D01* X5123Y13322D01* X5137Y13355D01* X5149Y13389D01* X5151Y13398D01* X5151Y13407D01* X5150Y13415D01* X5147Y13423D01* X5142Y13431D01* X5137Y13438D01* X5130Y13444D01* X5123Y13448D01* X5115Y13451D01* X5106Y13453D01* X5097Y13453D01* X5089Y13452D01* X5081Y13449D01* X5073Y13445D01* X5066Y13439D01* X5064Y13437D01* Y13567D01* X5065Y13565D01* X5072Y13560D01* X5080Y13556D01* X5088Y13553D01* X5097Y13552D01* X5105Y13552D01* X5114Y13554D01* X5122Y13557D01* X5129Y13562D01* X5136Y13568D01* X5141Y13575D01* X5145Y13582D01* X5148Y13591D01* X5149Y13599D01* X5149Y13608D01* X5147Y13617D01* X5135Y13651D01* X5120Y13683D01* X5102Y13715D01* X5081Y13744D01* X5064Y13764D01* Y15259D01* X5065Y15260D01* X5085Y15290D01* X5103Y15322D01* X5117Y15355D01* X5129Y15389D01* X5131Y15398D01* X5131Y15407D01* X5130Y15415D01* X5127Y15423D01* X5122Y15431D01* X5117Y15438D01* X5110Y15444D01* X5103Y15448D01* X5095Y15451D01* X5086Y15453D01* X5077Y15453D01* X5069Y15452D01* X5064Y15450D01* Y15555D01* X5068Y15553D01* X5077Y15552D01* X5085Y15552D01* X5094Y15554D01* X5102Y15557D01* X5109Y15562D01* X5116Y15568D01* X5121Y15575D01* X5125Y15582D01* X5128Y15591D01* X5129Y15599D01* X5129Y15608D01* X5127Y15617D01* X5115Y15651D01* X5100Y15683D01* X5082Y15715D01* X5064Y15740D01* Y17288D01* X5065Y17290D01* X5083Y17322D01* X5097Y17355D01* X5109Y17389D01* X5111Y17398D01* X5111Y17407D01* X5110Y17415D01* X5107Y17423D01* X5102Y17431D01* X5097Y17438D01* X5090Y17444D01* X5083Y17448D01* X5075Y17451D01* X5066Y17453D01* X5064D01* Y17552D01* X5065D01* X5074Y17554D01* X5082Y17557D01* X5089Y17562D01* X5096Y17568D01* X5101Y17575D01* X5105Y17582D01* X5108Y17591D01* X5109Y17599D01* X5109Y17608D01* X5107Y17617D01* X5095Y17651D01* X5080Y17683D01* X5064Y17711D01* Y19324D01* X5077Y19355D01* X5089Y19389D01* X5091Y19398D01* X5091Y19407D01* X5090Y19415D01* X5087Y19423D01* X5082Y19431D01* X5077Y19438D01* X5070Y19444D01* X5064Y19447D01* Y19559D01* X5069Y19562D01* X5076Y19568D01* X5081Y19575D01* X5085Y19582D01* X5088Y19591D01* X5089Y19599D01* X5089Y19608D01* X5087Y19617D01* X5075Y19651D01* X5064Y19674D01* Y21374D01* X5069Y21389D01* X5071Y21398D01* X5071Y21407D01* X5070Y21415D01* X5067Y21423D01* X5064Y21428D01* Y21580D01* X5065Y21582D01* X5068Y21591D01* X5069Y21599D01* X5069Y21608D01* X5067Y21617D01* X5064Y21625D01* Y40000D01* G37* G36* X6445D02*X6625D01* Y39881D01* X6615Y39884D01* X6606Y39886D01* X6597Y39886D01* X6589Y39885D01* X6581Y39882D01* X6573Y39878D01* X6566Y39872D01* X6560Y39865D01* X6556Y39858D01* X6553Y39850D01* X6551Y39841D01* X6551Y39833D01* X6552Y39824D01* X6555Y39816D01* X6559Y39808D01* X6565Y39801D01* X6572Y39796D01* X6579Y39791D01* X6587Y39788D01* X6613Y39779D01* X6625Y39774D01* Y39225D01* X6618Y39222D01* X6592Y39213D01* X6584Y39209D01* X6577Y39205D01* X6570Y39199D01* X6565Y39192D01* X6561Y39184D01* X6558Y39176D01* X6557Y39167D01* X6557Y39159D01* X6559Y39150D01* X6562Y39142D01* X6567Y39135D01* X6573Y39128D01* X6580Y39123D01* X6587Y39119D01* X6596Y39116D01* X6604Y39115D01* X6613Y39115D01* X6621Y39117D01* X6625Y39118D01* Y37886D01* X6617Y37886D01* X6609Y37885D01* X6601Y37882D01* X6593Y37878D01* X6586Y37872D01* X6580Y37865D01* X6576Y37858D01* X6573Y37850D01* X6571Y37841D01* X6571Y37833D01* X6572Y37824D01* X6575Y37816D01* X6579Y37808D01* X6585Y37801D01* X6592Y37796D01* X6599Y37791D01* X6607Y37788D01* X6625Y37782D01* Y37217D01* X6612Y37213D01* X6604Y37209D01* X6597Y37205D01* X6590Y37199D01* X6585Y37192D01* X6581Y37184D01* X6578Y37176D01* X6577Y37167D01* X6577Y37159D01* X6579Y37150D01* X6582Y37142D01* X6587Y37135D01* X6593Y37128D01* X6600Y37123D01* X6607Y37119D01* X6616Y37116D01* X6624Y37115D01* X6625D01* Y35883D01* X6621Y35882D01* X6613Y35878D01* X6606Y35872D01* X6600Y35865D01* X6596Y35858D01* X6593Y35850D01* X6591Y35841D01* X6591Y35833D01* X6592Y35824D01* X6595Y35816D01* X6599Y35808D01* X6605Y35801D01* X6612Y35796D01* X6619Y35791D01* X6625Y35789D01* Y35210D01* X6624Y35209D01* X6617Y35205D01* X6610Y35199D01* X6605Y35192D01* X6601Y35184D01* X6598Y35176D01* X6597Y35167D01* X6597Y35159D01* X6599Y35150D01* X6602Y35142D01* X6607Y35135D01* X6613Y35128D01* X6620Y35123D01* X6625Y35120D01* Y33871D01* X6620Y33865D01* X6616Y33858D01* X6613Y33850D01* X6611Y33841D01* X6611Y33833D01* X6612Y33824D01* X6615Y33816D01* X6619Y33808D01* X6625Y33801D01* X6625Y33801D01* Y33192D01* X6625Y33192D01* X6621Y33184D01* X6618Y33176D01* X6617Y33167D01* X6617Y33159D01* X6619Y33150D01* X6622Y33142D01* X6625Y33138D01* Y21859D01* X6622Y21864D01* X6616Y21871D01* X6609Y21876D01* X6602Y21880D01* X6593Y21883D01* X6585Y21884D01* X6576Y21884D01* X6568Y21882D01* X6533Y21870D01* X6501Y21855D01* X6469Y21837D01* X6445Y21820D01* Y23166D01* X6455Y23159D01* X6487Y23141D01* X6520Y23127D01* X6554Y23115D01* X6563Y23113D01* X6572Y23113D01* X6580Y23115D01* X6588Y23117D01* X6596Y23122D01* X6603Y23127D01* X6609Y23134D01* X6613Y23141D01* X6616Y23149D01* X6618Y23158D01* X6618Y23167D01* X6617Y23175D01* X6614Y23183D01* X6610Y23191D01* X6604Y23198D01* X6597Y23204D01* X6590Y23208D01* X6582Y23211D01* X6556Y23220D01* X6531Y23231D01* X6508Y23244D01* X6485Y23259D01* X6464Y23276D01* X6445Y23295D01* Y23704D01* X6460Y23719D01* X6481Y23737D01* X6503Y23752D01* X6527Y23766D01* X6551Y23777D01* X6577Y23786D01* X6585Y23790D01* X6592Y23794D01* X6599Y23800D01* X6604Y23807D01* X6608Y23815D01* X6611Y23823D01* X6612Y23832D01* X6612Y23840D01* X6610Y23849D01* X6607Y23857D01* X6602Y23864D01* X6596Y23871D01* X6589Y23876D01* X6582Y23880D01* X6573Y23883D01* X6565Y23884D01* X6556Y23884D01* X6548Y23882D01* X6513Y23870D01* X6481Y23855D01* X6449Y23837D01* X6445Y23834D01* Y25153D01* X6467Y25141D01* X6500Y25127D01* X6534Y25115D01* X6543Y25113D01* X6552Y25113D01* X6560Y25115D01* X6568Y25117D01* X6576Y25122D01* X6583Y25127D01* X6589Y25134D01* X6593Y25141D01* X6596Y25149D01* X6598Y25158D01* X6598Y25167D01* X6597Y25175D01* X6594Y25183D01* X6590Y25191D01* X6584Y25198D01* X6577Y25204D01* X6570Y25208D01* X6562Y25211D01* X6536Y25220D01* X6511Y25231D01* X6488Y25244D01* X6465Y25259D01* X6445Y25276D01* Y25723D01* X6461Y25737D01* X6483Y25752D01* X6507Y25766D01* X6531Y25777D01* X6557Y25786D01* X6565Y25790D01* X6572Y25794D01* X6579Y25800D01* X6584Y25807D01* X6588Y25815D01* X6591Y25823D01* X6592Y25832D01* X6592Y25840D01* X6590Y25849D01* X6587Y25857D01* X6582Y25864D01* X6576Y25871D01* X6569Y25876D01* X6562Y25880D01* X6553Y25883D01* X6545Y25884D01* X6536Y25884D01* X6528Y25882D01* X6493Y25870D01* X6461Y25855D01* X6445Y25846D01* Y27142D01* X6447Y27141D01* X6480Y27127D01* X6514Y27115D01* X6523Y27113D01* X6532Y27113D01* X6540Y27115D01* X6548Y27117D01* X6556Y27122D01* X6563Y27127D01* X6569Y27134D01* X6573Y27141D01* X6576Y27149D01* X6578Y27158D01* X6578Y27167D01* X6577Y27175D01* X6574Y27183D01* X6570Y27191D01* X6564Y27198D01* X6557Y27204D01* X6550Y27208D01* X6542Y27211D01* X6516Y27220D01* X6491Y27231D01* X6468Y27244D01* X6445Y27259D01* Y27740D01* X6463Y27752D01* X6487Y27766D01* X6511Y27777D01* X6537Y27786D01* X6545Y27790D01* X6552Y27794D01* X6559Y27800D01* X6564Y27807D01* X6568Y27815D01* X6571Y27823D01* X6572Y27832D01* X6572Y27840D01* X6570Y27849D01* X6567Y27857D01* X6562Y27864D01* X6556Y27871D01* X6549Y27876D01* X6542Y27880D01* X6533Y27883D01* X6525Y27884D01* X6516Y27884D01* X6508Y27882D01* X6473Y27870D01* X6445Y27857D01* Y29133D01* X6460Y29127D01* X6494Y29115D01* X6503Y29113D01* X6512Y29113D01* X6520Y29115D01* X6528Y29117D01* X6536Y29122D01* X6543Y29127D01* X6549Y29134D01* X6553Y29141D01* X6556Y29149D01* X6558Y29158D01* X6558Y29167D01* X6557Y29175D01* X6554Y29183D01* X6550Y29191D01* X6544Y29198D01* X6537Y29204D01* X6530Y29208D01* X6522Y29211D01* X6496Y29220D01* X6471Y29231D01* X6448Y29244D01* X6445Y29246D01* Y29754D01* X6467Y29766D01* X6491Y29777D01* X6517Y29786D01* X6525Y29790D01* X6532Y29794D01* X6539Y29800D01* X6544Y29807D01* X6548Y29815D01* X6551Y29823D01* X6552Y29832D01* X6552Y29840D01* X6550Y29849D01* X6547Y29857D01* X6542Y29864D01* X6536Y29871D01* X6529Y29876D01* X6522Y29880D01* X6513Y29883D01* X6505Y29884D01* X6496Y29884D01* X6488Y29882D01* X6453Y29870D01* X6445Y29866D01* Y31125D01* X6474Y31115D01* X6483Y31113D01* X6492Y31113D01* X6500Y31115D01* X6508Y31117D01* X6516Y31122D01* X6523Y31127D01* X6529Y31134D01* X6533Y31141D01* X6536Y31149D01* X6538Y31158D01* X6538Y31167D01* X6537Y31175D01* X6534Y31183D01* X6530Y31191D01* X6524Y31198D01* X6517Y31204D01* X6510Y31208D01* X6502Y31211D01* X6476Y31220D01* X6451Y31231D01* X6445Y31234D01* Y31765D01* X6447Y31766D01* X6471Y31777D01* X6497Y31786D01* X6505Y31790D01* X6512Y31794D01* X6519Y31800D01* X6524Y31807D01* X6528Y31815D01* X6531Y31823D01* X6532Y31832D01* X6532Y31840D01* X6530Y31849D01* X6527Y31857D01* X6522Y31864D01* X6516Y31871D01* X6509Y31876D01* X6502Y31880D01* X6493Y31883D01* X6485Y31884D01* X6476Y31884D01* X6468Y31882D01* X6445Y31874D01* Y33118D01* X6454Y33115D01* X6463Y33113D01* X6472Y33113D01* X6480Y33115D01* X6488Y33117D01* X6496Y33122D01* X6503Y33127D01* X6509Y33134D01* X6513Y33141D01* X6516Y33149D01* X6518Y33158D01* X6518Y33167D01* X6517Y33175D01* X6514Y33183D01* X6510Y33191D01* X6504Y33198D01* X6497Y33204D01* X6490Y33208D01* X6482Y33211D01* X6456Y33220D01* X6445Y33225D01* Y33775D01* X6451Y33777D01* X6477Y33786D01* X6485Y33790D01* X6492Y33794D01* X6499Y33800D01* X6504Y33807D01* X6508Y33815D01* X6511Y33823D01* X6512Y33832D01* X6512Y33840D01* X6510Y33849D01* X6507Y33857D01* X6502Y33864D01* X6496Y33871D01* X6489Y33876D01* X6482Y33880D01* X6473Y33883D01* X6465Y33884D01* X6456Y33884D01* X6448Y33882D01* X6445Y33881D01* Y35113D01* X6452Y35113D01* X6460Y35115D01* X6468Y35117D01* X6476Y35122D01* X6483Y35127D01* X6489Y35134D01* X6493Y35141D01* X6496Y35149D01* X6498Y35158D01* X6498Y35167D01* X6497Y35175D01* X6494Y35183D01* X6490Y35191D01* X6484Y35198D01* X6477Y35204D01* X6470Y35208D01* X6462Y35211D01* X6445Y35217D01* Y35782D01* X6457Y35786D01* X6465Y35790D01* X6472Y35794D01* X6479Y35800D01* X6484Y35807D01* X6488Y35815D01* X6491Y35823D01* X6492Y35832D01* X6492Y35840D01* X6490Y35849D01* X6487Y35857D01* X6482Y35864D01* X6476Y35871D01* X6469Y35876D01* X6462Y35880D01* X6453Y35883D01* X6445Y35884D01* Y37116D01* X6448Y37117D01* X6456Y37122D01* X6463Y37127D01* X6469Y37134D01* X6473Y37141D01* X6476Y37149D01* X6478Y37158D01* X6478Y37167D01* X6477Y37175D01* X6474Y37183D01* X6470Y37191D01* X6464Y37198D01* X6457Y37204D01* X6450Y37208D01* X6445Y37210D01* Y37790D01* X6452Y37794D01* X6459Y37800D01* X6464Y37807D01* X6468Y37815D01* X6471Y37823D01* X6472Y37832D01* X6472Y37840D01* X6470Y37849D01* X6467Y37857D01* X6462Y37864D01* X6456Y37871D01* X6449Y37876D01* X6445Y37878D01* Y39130D01* X6449Y39134D01* X6453Y39141D01* X6456Y39149D01* X6458Y39158D01* X6458Y39167D01* X6457Y39175D01* X6454Y39183D01* X6450Y39191D01* X6445Y39197D01* Y39809D01* X6448Y39815D01* X6451Y39823D01* X6452Y39832D01* X6452Y39840D01* X6450Y39849D01* X6447Y39857D01* X6445Y39859D01* Y40000D01* G37* G36* X6625Y0D02*X6445D01* Y7374D01* X6454Y7349D01* X6469Y7316D01* X6487Y7284D01* X6508Y7255D01* X6532Y7227D01* X6557Y7202D01* X6585Y7179D01* X6615Y7159D01* X6625Y7153D01* Y5834D01* X6600Y5816D01* X6572Y5793D01* X6547Y5767D01* X6524Y5739D01* X6504Y5709D01* X6486Y5677D01* X6472Y5644D01* X6460Y5610D01* X6458Y5601D01* X6458Y5593D01* X6459Y5584D01* X6462Y5576D01* X6467Y5568D01* X6472Y5561D01* X6479Y5556D01* X6486Y5551D01* X6494Y5548D01* X6503Y5546D01* X6512Y5546D01* X6520Y5547D01* X6528Y5550D01* X6536Y5555D01* X6543Y5560D01* X6549Y5567D01* X6553Y5574D01* X6556Y5582D01* X6565Y5608D01* X6576Y5633D01* X6589Y5657D01* X6604Y5679D01* X6621Y5700D01* X6625Y5704D01* Y5295D01* X6625Y5295D01* X6607Y5316D01* X6592Y5338D01* X6578Y5362D01* X6567Y5386D01* X6558Y5412D01* X6554Y5420D01* X6550Y5427D01* X6544Y5434D01* X6537Y5439D01* X6529Y5443D01* X6521Y5446D01* X6512Y5447D01* X6504Y5447D01* X6495Y5445D01* X6487Y5442D01* X6480Y5437D01* X6473Y5431D01* X6468Y5424D01* X6464Y5417D01* X6461Y5409D01* X6460Y5400D01* X6460Y5391D01* X6462Y5383D01* X6474Y5349D01* X6489Y5316D01* X6507Y5284D01* X6528Y5255D01* X6552Y5227D01* X6577Y5202D01* X6605Y5179D01* X6625Y5166D01* Y3820D01* X6620Y3816D01* X6592Y3793D01* X6567Y3767D01* X6544Y3739D01* X6524Y3709D01* X6506Y3677D01* X6492Y3644D01* X6480Y3610D01* X6478Y3601D01* X6478Y3593D01* X6479Y3584D01* X6482Y3576D01* X6487Y3568D01* X6492Y3561D01* X6499Y3556D01* X6506Y3551D01* X6514Y3548D01* X6523Y3546D01* X6532Y3546D01* X6540Y3547D01* X6548Y3550D01* X6556Y3555D01* X6563Y3560D01* X6569Y3567D01* X6573Y3574D01* X6576Y3582D01* X6585Y3608D01* X6596Y3633D01* X6609Y3657D01* X6624Y3679D01* X6625Y3680D01* Y3319D01* X6612Y3338D01* X6598Y3362D01* X6587Y3386D01* X6578Y3412D01* X6574Y3420D01* X6570Y3427D01* X6564Y3434D01* X6557Y3439D01* X6549Y3443D01* X6541Y3446D01* X6532Y3447D01* X6524Y3447D01* X6515Y3445D01* X6507Y3442D01* X6500Y3437D01* X6493Y3431D01* X6488Y3424D01* X6484Y3417D01* X6481Y3409D01* X6480Y3400D01* X6480Y3391D01* X6482Y3383D01* X6494Y3349D01* X6509Y3316D01* X6527Y3284D01* X6548Y3255D01* X6572Y3227D01* X6597Y3202D01* X6625Y3179D01* Y1804D01* X6612Y1793D01* X6587Y1767D01* X6564Y1739D01* X6544Y1709D01* X6526Y1677D01* X6512Y1644D01* X6500Y1610D01* X6498Y1601D01* X6498Y1593D01* X6499Y1584D01* X6502Y1576D01* X6507Y1568D01* X6512Y1561D01* X6519Y1556D01* X6526Y1551D01* X6534Y1548D01* X6543Y1546D01* X6552Y1546D01* X6560Y1547D01* X6568Y1550D01* X6576Y1555D01* X6583Y1560D01* X6589Y1567D01* X6593Y1574D01* X6596Y1582D01* X6605Y1608D01* X6616Y1633D01* X6625Y1650D01* Y1349D01* X6618Y1362D01* X6607Y1386D01* X6598Y1412D01* X6594Y1420D01* X6590Y1427D01* X6584Y1434D01* X6577Y1439D01* X6569Y1443D01* X6561Y1446D01* X6552Y1447D01* X6544Y1447D01* X6535Y1445D01* X6527Y1442D01* X6520Y1437D01* X6513Y1431D01* X6508Y1424D01* X6504Y1417D01* X6501Y1409D01* X6500Y1400D01* X6500Y1391D01* X6502Y1383D01* X6514Y1349D01* X6529Y1316D01* X6547Y1284D01* X6568Y1255D01* X6592Y1227D01* X6617Y1202D01* X6625Y1196D01* Y0D01* G37* G36* Y7276D02*X6624Y7276D01* X6605Y7295D01* X6587Y7316D01* X6572Y7338D01* X6558Y7362D01* X6547Y7386D01* X6538Y7412D01* X6534Y7420D01* X6530Y7427D01* X6524Y7434D01* X6517Y7439D01* X6509Y7443D01* X6501Y7446D01* X6492Y7447D01* X6484Y7447D01* X6475Y7445D01* X6467Y7442D01* X6460Y7437D01* X6453Y7431D01* X6448Y7424D01* X6445Y7419D01* Y7571D01* X6447Y7568D01* X6452Y7561D01* X6459Y7556D01* X6466Y7551D01* X6474Y7548D01* X6483Y7546D01* X6492Y7546D01* X6500Y7547D01* X6508Y7550D01* X6516Y7555D01* X6523Y7560D01* X6529Y7567D01* X6533Y7574D01* X6536Y7582D01* X6545Y7608D01* X6556Y7633D01* X6569Y7657D01* X6584Y7679D01* X6601Y7700D01* X6620Y7719D01* X6625Y7723D01* Y7276D01* G37* G36* Y7846D02*X6609Y7837D01* X6580Y7816D01* X6552Y7793D01* X6527Y7767D01* X6504Y7739D01* X6484Y7709D01* X6466Y7677D01* X6452Y7644D01* X6445Y7625D01* Y9325D01* X6449Y9316D01* X6467Y9284D01* X6488Y9255D01* X6512Y9227D01* X6537Y9202D01* X6565Y9179D01* X6595Y9159D01* X6625Y9142D01* Y7846D01* G37* G36* Y9259D02*X6625Y9259D01* X6604Y9276D01* X6585Y9295D01* X6567Y9316D01* X6552Y9338D01* X6538Y9362D01* X6527Y9386D01* X6518Y9412D01* X6514Y9420D01* X6510Y9427D01* X6504Y9434D01* X6497Y9439D01* X6489Y9443D01* X6481Y9446D01* X6472Y9447D01* X6464Y9447D01* X6455Y9445D01* X6447Y9442D01* X6445Y9441D01* Y9552D01* X6446Y9551D01* X6454Y9548D01* X6463Y9546D01* X6472Y9546D01* X6480Y9547D01* X6488Y9550D01* X6496Y9555D01* X6503Y9560D01* X6509Y9567D01* X6513Y9574D01* X6516Y9582D01* X6525Y9608D01* X6536Y9633D01* X6549Y9657D01* X6564Y9679D01* X6581Y9700D01* X6600Y9719D01* X6621Y9737D01* X6625Y9740D01* Y9259D01* G37* G36* Y9857D02*X6621Y9855D01* X6589Y9837D01* X6560Y9816D01* X6532Y9793D01* X6507Y9767D01* X6484Y9739D01* X6464Y9709D01* X6446Y9677D01* X6445Y9675D01* Y11288D01* X6447Y11284D01* X6468Y11255D01* X6492Y11227D01* X6517Y11202D01* X6545Y11179D01* X6575Y11159D01* X6607Y11141D01* X6625Y11133D01* Y9857D01* G37* G36* Y11246D02*X6605Y11259D01* X6584Y11276D01* X6565Y11295D01* X6547Y11316D01* X6532Y11338D01* X6518Y11362D01* X6507Y11386D01* X6498Y11412D01* X6494Y11420D01* X6490Y11427D01* X6484Y11434D01* X6477Y11439D01* X6469Y11443D01* X6461Y11446D01* X6452Y11447D01* X6445Y11447D01* Y11546D01* X6452Y11546D01* X6460Y11547D01* X6468Y11550D01* X6476Y11555D01* X6483Y11560D01* X6489Y11567D01* X6493Y11574D01* X6496Y11582D01* X6505Y11608D01* X6516Y11633D01* X6529Y11657D01* X6544Y11679D01* X6561Y11700D01* X6580Y11719D01* X6601Y11737D01* X6623Y11752D01* X6625Y11754D01* Y11246D01* G37* G36* Y11866D02*X6601Y11855D01* X6569Y11837D01* X6540Y11816D01* X6512Y11793D01* X6487Y11767D01* X6464Y11739D01* X6445Y11711D01* Y13259D01* X6448Y13255D01* X6472Y13227D01* X6497Y13202D01* X6525Y13179D01* X6555Y13159D01* X6587Y13141D01* X6620Y13127D01* X6625Y13125D01* Y11866D01* G37* G36* Y13234D02*X6608Y13244D01* X6585Y13259D01* X6564Y13276D01* X6545Y13295D01* X6527Y13316D01* X6512Y13338D01* X6498Y13362D01* X6487Y13386D01* X6478Y13412D01* X6474Y13420D01* X6470Y13427D01* X6464Y13434D01* X6457Y13439D01* X6449Y13443D01* X6445Y13445D01* Y13549D01* X6448Y13550D01* X6456Y13555D01* X6463Y13560D01* X6469Y13567D01* X6473Y13574D01* X6476Y13582D01* X6485Y13608D01* X6496Y13633D01* X6509Y13657D01* X6524Y13679D01* X6541Y13700D01* X6560Y13719D01* X6581Y13737D01* X6603Y13752D01* X6625Y13765D01* Y13234D01* G37* G36* Y13874D02*X6613Y13870D01* X6581Y13855D01* X6549Y13837D01* X6520Y13816D01* X6492Y13793D01* X6467Y13767D01* X6445Y13740D01* Y15235D01* X6452Y15227D01* X6477Y15202D01* X6505Y15179D01* X6535Y15159D01* X6567Y15141D01* X6600Y15127D01* X6625Y15118D01* Y13874D01* G37* G36* Y15225D02*X6611Y15231D01* X6588Y15244D01* X6565Y15259D01* X6544Y15276D01* X6525Y15295D01* X6507Y15316D01* X6492Y15338D01* X6478Y15362D01* X6467Y15386D01* X6458Y15412D01* X6454Y15420D01* X6450Y15427D01* X6445Y15432D01* Y15563D01* X6449Y15567D01* X6453Y15574D01* X6456Y15582D01* X6465Y15608D01* X6476Y15633D01* X6489Y15657D01* X6504Y15679D01* X6521Y15700D01* X6540Y15719D01* X6561Y15737D01* X6583Y15752D01* X6607Y15766D01* X6625Y15775D01* Y15225D01* G37* G36* Y15881D02*X6593Y15870D01* X6561Y15855D01* X6529Y15837D01* X6500Y15816D01* X6472Y15793D01* X6447Y15767D01* X6445Y15765D01* Y17214D01* X6457Y17202D01* X6485Y17179D01* X6515Y17159D01* X6547Y17141D01* X6580Y17127D01* X6614Y17115D01* X6623Y17113D01* X6625D01* Y15881D01* G37* G36* Y17217D02*X6616Y17220D01* X6591Y17231D01* X6568Y17244D01* X6545Y17259D01* X6524Y17276D01* X6505Y17295D01* X6487Y17316D01* X6472Y17338D01* X6458Y17362D01* X6447Y17386D01* X6445Y17391D01* Y17609D01* X6456Y17633D01* X6469Y17657D01* X6484Y17679D01* X6501Y17700D01* X6520Y17719D01* X6541Y17737D01* X6563Y17752D01* X6587Y17766D01* X6611Y17777D01* X6625Y17782D01* Y17217D01* G37* G36* Y17884D02*X6625Y17884D01* X6616Y17884D01* X6608Y17882D01* X6573Y17870D01* X6541Y17855D01* X6509Y17837D01* X6480Y17816D01* X6452Y17793D01* X6445Y17785D01* Y19196D01* X6465Y19179D01* X6495Y19159D01* X6527Y19141D01* X6560Y19127D01* X6594Y19115D01* X6603Y19113D01* X6612Y19113D01* X6620Y19115D01* X6625Y19116D01* Y17884D01* G37* G36* Y19210D02*X6622Y19211D01* X6596Y19220D01* X6571Y19231D01* X6548Y19244D01* X6525Y19259D01* X6504Y19276D01* X6485Y19295D01* X6467Y19316D01* X6452Y19338D01* X6445Y19349D01* Y19650D01* X6449Y19657D01* X6464Y19679D01* X6481Y19700D01* X6500Y19719D01* X6521Y19737D01* X6543Y19752D01* X6567Y19766D01* X6591Y19777D01* X6617Y19786D01* X6625Y19790D01* X6625Y19790D01* Y19210D01* G37* G36* Y19878D02*X6622Y19880D01* X6613Y19883D01* X6605Y19884D01* X6596Y19884D01* X6588Y19882D01* X6553Y19870D01* X6521Y19855D01* X6489Y19837D01* X6460Y19816D01* X6445Y19804D01* Y21179D01* X6445Y21179D01* X6475Y21159D01* X6507Y21141D01* X6540Y21127D01* X6574Y21115D01* X6583Y21113D01* X6592Y21113D01* X6600Y21115D01* X6608Y21117D01* X6616Y21122D01* X6623Y21127D01* X6625Y21130D01* Y19878D01* G37* G36* Y21197D02*X6624Y21198D01* X6617Y21204D01* X6610Y21208D01* X6602Y21211D01* X6576Y21220D01* X6551Y21231D01* X6528Y21244D01* X6505Y21259D01* X6484Y21276D01* X6465Y21295D01* X6447Y21316D01* X6445Y21319D01* Y21680D01* X6461Y21700D01* X6480Y21719D01* X6501Y21737D01* X6523Y21752D01* X6547Y21766D01* X6571Y21777D01* X6597Y21786D01* X6605Y21790D01* X6612Y21794D01* X6619Y21800D01* X6624Y21807D01* X6625Y21809D01* Y21197D01* G37* G36* Y40000D02*X6884D01* Y39625D01* X6875Y39651D01* X6860Y39683D01* X6842Y39715D01* X6821Y39744D01* X6797Y39772D01* X6772Y39797D01* X6744Y39820D01* X6714Y39840D01* X6682Y39858D01* X6649Y39873D01* X6625Y39881D01* Y40000D01* G37* G36* Y39774D02*X6638Y39768D01* X6661Y39755D01* X6684Y39740D01* X6705Y39723D01* X6724Y39704D01* X6742Y39683D01* X6757Y39661D01* X6771Y39637D01* X6782Y39613D01* X6791Y39587D01* X6795Y39579D01* X6799Y39572D01* X6805Y39565D01* X6812Y39560D01* X6820Y39556D01* X6828Y39553D01* X6837Y39552D01* X6845Y39552D01* X6854Y39554D01* X6862Y39557D01* X6869Y39562D01* X6876Y39568D01* X6881Y39575D01* X6884Y39580D01* Y39428D01* X6882Y39431D01* X6877Y39438D01* X6870Y39444D01* X6863Y39448D01* X6855Y39451D01* X6846Y39453D01* X6837Y39453D01* X6829Y39452D01* X6821Y39449D01* X6813Y39445D01* X6806Y39439D01* X6800Y39433D01* X6796Y39425D01* X6793Y39417D01* X6784Y39391D01* X6773Y39366D01* X6760Y39343D01* X6745Y39320D01* X6728Y39299D01* X6709Y39280D01* X6688Y39262D01* X6666Y39247D01* X6642Y39233D01* X6625Y39225D01* Y39774D01* G37* G36* Y39118D02*X6656Y39129D01* X6688Y39144D01* X6720Y39162D01* X6749Y39183D01* X6777Y39207D01* X6802Y39232D01* X6825Y39260D01* X6845Y39290D01* X6863Y39322D01* X6877Y39355D01* X6884Y39374D01* Y37674D01* X6880Y37683D01* X6862Y37715D01* X6841Y37744D01* X6817Y37772D01* X6792Y37797D01* X6764Y37820D01* X6734Y37840D01* X6702Y37858D01* X6669Y37873D01* X6635Y37884D01* X6626Y37886D01* X6625D01* Y39118D01* G37* G36* Y37782D02*X6633Y37779D01* X6658Y37768D01* X6681Y37755D01* X6704Y37740D01* X6725Y37723D01* X6744Y37704D01* X6762Y37683D01* X6777Y37661D01* X6791Y37637D01* X6802Y37613D01* X6811Y37587D01* X6815Y37579D01* X6819Y37572D01* X6825Y37565D01* X6832Y37560D01* X6840Y37556D01* X6848Y37553D01* X6857Y37552D01* X6865Y37552D01* X6874Y37554D01* X6882Y37557D01* X6884Y37559D01* Y37447D01* X6883Y37448D01* X6875Y37451D01* X6866Y37453D01* X6857Y37453D01* X6849Y37452D01* X6841Y37449D01* X6833Y37445D01* X6826Y37439D01* X6820Y37433D01* X6816Y37425D01* X6813Y37417D01* X6804Y37391D01* X6793Y37366D01* X6780Y37343D01* X6765Y37320D01* X6748Y37299D01* X6729Y37280D01* X6708Y37262D01* X6686Y37247D01* X6662Y37233D01* X6638Y37222D01* X6625Y37217D01* Y37782D01* G37* G36* Y37115D02*X6633Y37115D01* X6641Y37117D01* X6676Y37129D01* X6708Y37144D01* X6740Y37162D01* X6769Y37183D01* X6797Y37207D01* X6822Y37232D01* X6845Y37260D01* X6865Y37290D01* X6883Y37322D01* X6884Y37324D01* Y35711D01* X6882Y35715D01* X6861Y35744D01* X6837Y35772D01* X6812Y35797D01* X6784Y35820D01* X6754Y35840D01* X6722Y35858D01* X6689Y35873D01* X6655Y35884D01* X6646Y35886D01* X6637Y35886D01* X6629Y35885D01* X6625Y35883D01* Y37115D01* G37* G36* Y35789D02*X6627Y35788D01* X6653Y35779D01* X6678Y35768D01* X6701Y35755D01* X6724Y35740D01* X6745Y35723D01* X6764Y35704D01* X6782Y35683D01* X6797Y35661D01* X6811Y35637D01* X6822Y35613D01* X6831Y35587D01* X6835Y35579D01* X6839Y35572D01* X6845Y35565D01* X6852Y35560D01* X6860Y35556D01* X6868Y35553D01* X6877Y35552D01* X6884Y35552D01* Y35453D01* X6877Y35453D01* X6869Y35452D01* X6861Y35449D01* X6853Y35445D01* X6846Y35439D01* X6840Y35433D01* X6836Y35425D01* X6833Y35417D01* X6824Y35391D01* X6813Y35366D01* X6800Y35343D01* X6785Y35320D01* X6768Y35299D01* X6749Y35280D01* X6728Y35262D01* X6706Y35247D01* X6682Y35233D01* X6658Y35222D01* X6632Y35213D01* X6625Y35210D01* Y35789D01* G37* G36* Y35120D02*X6627Y35119D01* X6636Y35116D01* X6644Y35115D01* X6653Y35115D01* X6661Y35117D01* X6696Y35129D01* X6728Y35144D01* X6760Y35162D01* X6789Y35183D01* X6817Y35207D01* X6842Y35232D01* X6865Y35260D01* X6884Y35288D01* Y33740D01* X6881Y33744D01* X6857Y33772D01* X6832Y33797D01* X6804Y33820D01* X6774Y33840D01* X6742Y33858D01* X6709Y33873D01* X6675Y33884D01* X6666Y33886D01* X6657Y33886D01* X6649Y33885D01* X6641Y33882D01* X6633Y33878D01* X6626Y33872D01* X6625Y33871D01* Y35120D01* G37* G36* Y33801D02*X6632Y33796D01* X6639Y33791D01* X6647Y33788D01* X6673Y33779D01* X6698Y33768D01* X6721Y33755D01* X6744Y33740D01* X6765Y33723D01* X6784Y33704D01* X6802Y33683D01* X6817Y33661D01* X6831Y33637D01* X6842Y33613D01* X6851Y33587D01* X6855Y33579D01* X6859Y33572D01* X6865Y33565D01* X6872Y33560D01* X6880Y33556D01* X6884Y33555D01* Y33450D01* X6881Y33449D01* X6873Y33445D01* X6866Y33439D01* X6860Y33433D01* X6856Y33425D01* X6853Y33417D01* X6844Y33391D01* X6833Y33366D01* X6820Y33343D01* X6805Y33320D01* X6788Y33299D01* X6769Y33280D01* X6748Y33262D01* X6726Y33247D01* X6702Y33233D01* X6678Y33222D01* X6652Y33213D01* X6644Y33209D01* X6637Y33205D01* X6630Y33199D01* X6625Y33192D01* Y33801D01* G37* G36* Y33138D02*X6627Y33135D01* X6633Y33128D01* X6640Y33123D01* X6647Y33119D01* X6656Y33116D01* X6664Y33115D01* X6673Y33115D01* X6681Y33117D01* X6716Y33129D01* X6748Y33144D01* X6780Y33162D01* X6809Y33183D01* X6837Y33207D01* X6862Y33232D01* X6884Y33259D01* Y31764D01* X6877Y31772D01* X6852Y31797D01* X6824Y31820D01* X6794Y31840D01* X6762Y31858D01* X6729Y31873D01* X6695Y31884D01* X6686Y31886D01* X6677Y31886D01* X6669Y31885D01* X6661Y31882D01* X6653Y31878D01* X6646Y31872D01* X6640Y31865D01* X6636Y31858D01* X6633Y31850D01* X6631Y31841D01* X6631Y31833D01* X6632Y31824D01* X6635Y31816D01* X6639Y31808D01* X6645Y31801D01* X6652Y31796D01* X6659Y31791D01* X6667Y31788D01* X6693Y31779D01* X6718Y31768D01* X6741Y31755D01* X6764Y31740D01* X6785Y31723D01* X6804Y31704D01* X6822Y31683D01* X6837Y31661D01* X6851Y31637D01* X6862Y31613D01* X6871Y31587D01* X6875Y31579D01* X6879Y31572D01* X6884Y31567D01* Y31437D01* X6880Y31433D01* X6876Y31425D01* X6873Y31417D01* X6864Y31391D01* X6853Y31366D01* X6840Y31343D01* X6825Y31320D01* X6808Y31299D01* X6789Y31280D01* X6768Y31262D01* X6746Y31247D01* X6722Y31233D01* X6698Y31222D01* X6672Y31213D01* X6664Y31209D01* X6657Y31205D01* X6650Y31199D01* X6645Y31192D01* X6641Y31184D01* X6638Y31176D01* X6637Y31167D01* X6637Y31159D01* X6639Y31150D01* X6642Y31142D01* X6647Y31135D01* X6653Y31128D01* X6660Y31123D01* X6667Y31119D01* X6676Y31116D01* X6684Y31115D01* X6693Y31115D01* X6701Y31117D01* X6736Y31129D01* X6768Y31144D01* X6800Y31162D01* X6829Y31183D01* X6857Y31207D01* X6882Y31232D01* X6884Y31235D01* Y29785D01* X6872Y29797D01* X6844Y29820D01* X6814Y29840D01* X6782Y29858D01* X6749Y29873D01* X6715Y29884D01* X6706Y29886D01* X6697Y29886D01* X6689Y29885D01* X6681Y29882D01* X6673Y29878D01* X6666Y29872D01* X6660Y29865D01* X6656Y29858D01* X6653Y29850D01* X6651Y29841D01* X6651Y29833D01* X6652Y29824D01* X6655Y29816D01* X6659Y29808D01* X6665Y29801D01* X6672Y29796D01* X6679Y29791D01* X6687Y29788D01* X6713Y29779D01* X6738Y29768D01* X6761Y29755D01* X6784Y29740D01* X6805Y29723D01* X6824Y29704D01* X6842Y29683D01* X6857Y29661D01* X6871Y29637D01* X6882Y29613D01* X6884Y29608D01* Y29391D01* X6873Y29366D01* X6860Y29343D01* X6845Y29320D01* X6828Y29299D01* X6809Y29280D01* X6788Y29262D01* X6766Y29247D01* X6742Y29233D01* X6718Y29222D01* X6692Y29213D01* X6684Y29209D01* X6677Y29205D01* X6670Y29199D01* X6665Y29192D01* X6661Y29184D01* X6658Y29176D01* X6657Y29167D01* X6657Y29159D01* X6659Y29150D01* X6662Y29142D01* X6667Y29135D01* X6673Y29128D01* X6680Y29123D01* X6687Y29119D01* X6696Y29116D01* X6704Y29115D01* X6713Y29115D01* X6721Y29117D01* X6756Y29129D01* X6788Y29144D01* X6820Y29162D01* X6849Y29183D01* X6877Y29207D01* X6884Y29214D01* Y27804D01* X6864Y27820D01* X6834Y27840D01* X6802Y27858D01* X6769Y27873D01* X6735Y27884D01* X6726Y27886D01* X6717Y27886D01* X6709Y27885D01* X6701Y27882D01* X6693Y27878D01* X6686Y27872D01* X6680Y27865D01* X6676Y27858D01* X6673Y27850D01* X6671Y27841D01* X6671Y27833D01* X6672Y27824D01* X6675Y27816D01* X6679Y27808D01* X6685Y27801D01* X6692Y27796D01* X6699Y27791D01* X6707Y27788D01* X6733Y27779D01* X6758Y27768D01* X6781Y27755D01* X6804Y27740D01* X6825Y27723D01* X6844Y27704D01* X6862Y27683D01* X6877Y27661D01* X6884Y27650D01* Y27350D01* X6880Y27343D01* X6865Y27320D01* X6848Y27299D01* X6829Y27280D01* X6808Y27262D01* X6786Y27247D01* X6762Y27233D01* X6738Y27222D01* X6712Y27213D01* X6704Y27209D01* X6697Y27205D01* X6690Y27199D01* X6685Y27192D01* X6681Y27184D01* X6678Y27176D01* X6677Y27167D01* X6677Y27159D01* X6679Y27150D01* X6682Y27142D01* X6687Y27135D01* X6693Y27128D01* X6700Y27123D01* X6707Y27119D01* X6716Y27116D01* X6724Y27115D01* X6733Y27115D01* X6741Y27117D01* X6776Y27129D01* X6808Y27144D01* X6840Y27162D01* X6869Y27183D01* X6884Y27196D01* Y25820D01* X6884Y25820D01* X6854Y25840D01* X6822Y25858D01* X6789Y25873D01* X6755Y25884D01* X6746Y25886D01* X6737Y25886D01* X6729Y25885D01* X6721Y25882D01* X6713Y25878D01* X6706Y25872D01* X6700Y25865D01* X6696Y25858D01* X6693Y25850D01* X6691Y25841D01* X6691Y25833D01* X6692Y25824D01* X6695Y25816D01* X6699Y25808D01* X6705Y25801D01* X6712Y25796D01* X6719Y25791D01* X6727Y25788D01* X6753Y25779D01* X6778Y25768D01* X6801Y25755D01* X6824Y25740D01* X6845Y25723D01* X6864Y25704D01* X6882Y25683D01* X6884Y25680D01* Y25319D01* X6868Y25299D01* X6849Y25280D01* X6828Y25262D01* X6806Y25247D01* X6782Y25233D01* X6758Y25222D01* X6732Y25213D01* X6724Y25209D01* X6717Y25205D01* X6710Y25199D01* X6705Y25192D01* X6701Y25184D01* X6698Y25176D01* X6697Y25167D01* X6697Y25159D01* X6699Y25150D01* X6702Y25142D01* X6707Y25135D01* X6713Y25128D01* X6720Y25123D01* X6727Y25119D01* X6736Y25116D01* X6744Y25115D01* X6753Y25115D01* X6761Y25117D01* X6796Y25129D01* X6828Y25144D01* X6860Y25162D01* X6884Y25180D01* Y23834D01* X6874Y23840D01* X6842Y23858D01* X6809Y23873D01* X6775Y23884D01* X6766Y23886D01* X6757Y23886D01* X6749Y23885D01* X6741Y23882D01* X6733Y23878D01* X6726Y23872D01* X6720Y23865D01* X6716Y23858D01* X6713Y23850D01* X6711Y23841D01* X6711Y23833D01* X6712Y23824D01* X6715Y23816D01* X6719Y23808D01* X6725Y23801D01* X6732Y23796D01* X6739Y23791D01* X6747Y23788D01* X6773Y23779D01* X6798Y23768D01* X6821Y23755D01* X6844Y23740D01* X6865Y23723D01* X6884Y23704D01* Y23295D01* X6869Y23280D01* X6848Y23262D01* X6826Y23247D01* X6802Y23233D01* X6778Y23222D01* X6752Y23213D01* X6744Y23209D01* X6737Y23205D01* X6730Y23199D01* X6725Y23192D01* X6721Y23184D01* X6718Y23176D01* X6717Y23167D01* X6717Y23159D01* X6719Y23150D01* X6722Y23142D01* X6727Y23135D01* X6733Y23128D01* X6740Y23123D01* X6747Y23119D01* X6756Y23116D01* X6764Y23115D01* X6773Y23115D01* X6781Y23117D01* X6816Y23129D01* X6848Y23144D01* X6880Y23162D01* X6884Y23165D01* Y21846D01* X6862Y21858D01* X6829Y21873D01* X6795Y21884D01* X6786Y21886D01* X6777Y21886D01* X6769Y21885D01* X6761Y21882D01* X6753Y21878D01* X6746Y21872D01* X6740Y21865D01* X6736Y21858D01* X6733Y21850D01* X6731Y21841D01* X6731Y21833D01* X6732Y21824D01* X6735Y21816D01* X6739Y21808D01* X6745Y21801D01* X6752Y21796D01* X6759Y21791D01* X6767Y21788D01* X6793Y21779D01* X6818Y21768D01* X6841Y21755D01* X6864Y21740D01* X6884Y21724D01* Y21276D01* X6868Y21262D01* X6846Y21247D01* X6822Y21233D01* X6798Y21222D01* X6772Y21213D01* X6764Y21209D01* X6757Y21205D01* X6750Y21199D01* X6745Y21192D01* X6741Y21184D01* X6738Y21176D01* X6737Y21167D01* X6737Y21159D01* X6739Y21150D01* X6742Y21142D01* X6747Y21135D01* X6753Y21128D01* X6760Y21123D01* X6767Y21119D01* X6776Y21116D01* X6784Y21115D01* X6793Y21115D01* X6801Y21117D01* X6836Y21129D01* X6868Y21144D01* X6884Y21153D01* Y19857D01* X6882Y19858D01* X6849Y19873D01* X6815Y19884D01* X6806Y19886D01* X6797Y19886D01* X6789Y19885D01* X6781Y19882D01* X6773Y19878D01* X6766Y19872D01* X6760Y19865D01* X6756Y19858D01* X6753Y19850D01* X6751Y19841D01* X6751Y19833D01* X6752Y19824D01* X6755Y19816D01* X6759Y19808D01* X6765Y19801D01* X6772Y19796D01* X6779Y19791D01* X6787Y19788D01* X6813Y19779D01* X6838Y19768D01* X6861Y19755D01* X6884Y19740D01* Y19259D01* X6866Y19247D01* X6842Y19233D01* X6818Y19222D01* X6792Y19213D01* X6784Y19209D01* X6777Y19205D01* X6770Y19199D01* X6765Y19192D01* X6761Y19184D01* X6758Y19176D01* X6757Y19167D01* X6757Y19159D01* X6759Y19150D01* X6762Y19142D01* X6767Y19135D01* X6773Y19128D01* X6780Y19123D01* X6787Y19119D01* X6796Y19116D01* X6804Y19115D01* X6813Y19115D01* X6821Y19117D01* X6856Y19129D01* X6884Y19142D01* Y17866D01* X6869Y17873D01* X6835Y17884D01* X6826Y17886D01* X6817Y17886D01* X6809Y17885D01* X6801Y17882D01* X6793Y17878D01* X6786Y17872D01* X6780Y17865D01* X6776Y17858D01* X6773Y17850D01* X6771Y17841D01* X6771Y17833D01* X6772Y17824D01* X6775Y17816D01* X6779Y17808D01* X6785Y17801D01* X6792Y17796D01* X6799Y17791D01* X6807Y17788D01* X6833Y17779D01* X6858Y17768D01* X6881Y17755D01* X6884Y17754D01* Y17246D01* X6862Y17233D01* X6838Y17222D01* X6812Y17213D01* X6804Y17209D01* X6797Y17205D01* X6790Y17199D01* X6785Y17192D01* X6781Y17184D01* X6778Y17176D01* X6777Y17167D01* X6777Y17159D01* X6779Y17150D01* X6782Y17142D01* X6787Y17135D01* X6793Y17128D01* X6800Y17123D01* X6807Y17119D01* X6816Y17116D01* X6824Y17115D01* X6833Y17115D01* X6841Y17117D01* X6876Y17129D01* X6884Y17133D01* Y15874D01* X6855Y15884D01* X6846Y15886D01* X6837Y15886D01* X6829Y15885D01* X6821Y15882D01* X6813Y15878D01* X6806Y15872D01* X6800Y15865D01* X6796Y15858D01* X6793Y15850D01* X6791Y15841D01* X6791Y15833D01* X6792Y15824D01* X6795Y15816D01* X6799Y15808D01* X6805Y15801D01* X6812Y15796D01* X6819Y15791D01* X6827Y15788D01* X6853Y15779D01* X6878Y15768D01* X6884Y15765D01* Y15234D01* X6882Y15233D01* X6858Y15222D01* X6832Y15213D01* X6824Y15209D01* X6817Y15205D01* X6810Y15199D01* X6805Y15192D01* X6801Y15184D01* X6798Y15176D01* X6797Y15167D01* X6797Y15159D01* X6799Y15150D01* X6802Y15142D01* X6807Y15135D01* X6813Y15128D01* X6820Y15123D01* X6827Y15119D01* X6836Y15116D01* X6844Y15115D01* X6853Y15115D01* X6861Y15117D01* X6884Y15125D01* Y13881D01* X6875Y13884D01* X6866Y13886D01* X6857Y13886D01* X6849Y13885D01* X6841Y13882D01* X6833Y13878D01* X6826Y13872D01* X6820Y13865D01* X6816Y13858D01* X6813Y13850D01* X6811Y13841D01* X6811Y13833D01* X6812Y13824D01* X6815Y13816D01* X6819Y13808D01* X6825Y13801D01* X6832Y13796D01* X6839Y13791D01* X6847Y13788D01* X6873Y13779D01* X6884Y13774D01* Y13225D01* X6878Y13222D01* X6852Y13213D01* X6844Y13209D01* X6837Y13205D01* X6830Y13199D01* X6825Y13192D01* X6821Y13184D01* X6818Y13176D01* X6817Y13167D01* X6817Y13159D01* X6819Y13150D01* X6822Y13142D01* X6827Y13135D01* X6833Y13128D01* X6840Y13123D01* X6847Y13119D01* X6856Y13116D01* X6864Y13115D01* X6873Y13115D01* X6881Y13117D01* X6884Y13118D01* Y11886D01* X6877Y11886D01* X6869Y11885D01* X6861Y11882D01* X6853Y11878D01* X6846Y11872D01* X6840Y11865D01* X6836Y11858D01* X6833Y11850D01* X6831Y11841D01* X6831Y11833D01* X6832Y11824D01* X6835Y11816D01* X6839Y11808D01* X6845Y11801D01* X6852Y11796D01* X6859Y11791D01* X6867Y11788D01* X6884Y11782D01* Y11217D01* X6872Y11213D01* X6864Y11209D01* X6857Y11205D01* X6850Y11199D01* X6845Y11192D01* X6841Y11184D01* X6838Y11176D01* X6837Y11167D01* X6837Y11159D01* X6839Y11150D01* X6842Y11142D01* X6847Y11135D01* X6853Y11128D01* X6860Y11123D01* X6867Y11119D01* X6876Y11116D01* X6884Y11115D01* Y9883D01* X6881Y9882D01* X6873Y9878D01* X6866Y9872D01* X6860Y9865D01* X6856Y9858D01* X6853Y9850D01* X6851Y9841D01* X6851Y9833D01* X6852Y9824D01* X6855Y9816D01* X6859Y9808D01* X6865Y9801D01* X6872Y9796D01* X6879Y9791D01* X6884Y9789D01* Y9209D01* X6877Y9205D01* X6870Y9199D01* X6865Y9192D01* X6861Y9184D01* X6858Y9176D01* X6857Y9167D01* X6857Y9159D01* X6859Y9150D01* X6862Y9142D01* X6867Y9135D01* X6873Y9128D01* X6880Y9123D01* X6884Y9121D01* Y7870D01* X6880Y7865D01* X6876Y7858D01* X6873Y7850D01* X6871Y7841D01* X6871Y7833D01* X6872Y7824D01* X6875Y7816D01* X6879Y7808D01* X6884Y7802D01* Y7190D01* X6881Y7184D01* X6878Y7176D01* X6877Y7167D01* X6877Y7159D01* X6879Y7150D01* X6882Y7142D01* X6884Y7140D01* Y0D01* X6625D01* Y1196D01* X6645Y1179D01* X6675Y1159D01* X6707Y1141D01* X6740Y1127D01* X6774Y1115D01* X6783Y1113D01* X6792Y1113D01* X6800Y1115D01* X6808Y1117D01* X6816Y1122D01* X6823Y1127D01* X6829Y1134D01* X6833Y1141D01* X6836Y1149D01* X6838Y1158D01* X6838Y1167D01* X6837Y1175D01* X6834Y1183D01* X6830Y1191D01* X6824Y1198D01* X6817Y1204D01* X6810Y1208D01* X6802Y1211D01* X6776Y1220D01* X6751Y1231D01* X6728Y1244D01* X6705Y1259D01* X6684Y1276D01* X6665Y1295D01* X6647Y1316D01* X6632Y1338D01* X6625Y1349D01* Y1650D01* X6629Y1657D01* X6644Y1679D01* X6661Y1700D01* X6680Y1719D01* X6701Y1737D01* X6723Y1752D01* X6747Y1766D01* X6771Y1777D01* X6797Y1786D01* X6805Y1790D01* X6812Y1794D01* X6819Y1800D01* X6824Y1807D01* X6828Y1815D01* X6831Y1823D01* X6832Y1832D01* X6832Y1840D01* X6830Y1849D01* X6827Y1857D01* X6822Y1864D01* X6816Y1871D01* X6809Y1876D01* X6802Y1880D01* X6793Y1883D01* X6785Y1884D01* X6776Y1884D01* X6768Y1882D01* X6733Y1870D01* X6701Y1855D01* X6669Y1837D01* X6640Y1816D01* X6625Y1804D01* Y3179D01* X6625Y3179D01* X6655Y3159D01* X6687Y3141D01* X6720Y3127D01* X6754Y3115D01* X6763Y3113D01* X6772Y3113D01* X6780Y3115D01* X6788Y3117D01* X6796Y3122D01* X6803Y3127D01* X6809Y3134D01* X6813Y3141D01* X6816Y3149D01* X6818Y3158D01* X6818Y3167D01* X6817Y3175D01* X6814Y3183D01* X6810Y3191D01* X6804Y3198D01* X6797Y3204D01* X6790Y3208D01* X6782Y3211D01* X6756Y3220D01* X6731Y3231D01* X6708Y3244D01* X6685Y3259D01* X6664Y3276D01* X6645Y3295D01* X6627Y3316D01* X6625Y3319D01* Y3680D01* X6641Y3700D01* X6660Y3719D01* X6681Y3737D01* X6703Y3752D01* X6727Y3766D01* X6751Y3777D01* X6777Y3786D01* X6785Y3790D01* X6792Y3794D01* X6799Y3800D01* X6804Y3807D01* X6808Y3815D01* X6811Y3823D01* X6812Y3832D01* X6812Y3840D01* X6810Y3849D01* X6807Y3857D01* X6802Y3864D01* X6796Y3871D01* X6789Y3876D01* X6782Y3880D01* X6773Y3883D01* X6765Y3884D01* X6756Y3884D01* X6748Y3882D01* X6713Y3870D01* X6681Y3855D01* X6649Y3837D01* X6625Y3820D01* Y5166D01* X6635Y5159D01* X6667Y5141D01* X6700Y5127D01* X6734Y5115D01* X6743Y5113D01* X6752Y5113D01* X6760Y5115D01* X6768Y5117D01* X6776Y5122D01* X6783Y5127D01* X6789Y5134D01* X6793Y5141D01* X6796Y5149D01* X6798Y5158D01* X6798Y5167D01* X6797Y5175D01* X6794Y5183D01* X6790Y5191D01* X6784Y5198D01* X6777Y5204D01* X6770Y5208D01* X6762Y5211D01* X6736Y5220D01* X6711Y5231D01* X6688Y5244D01* X6665Y5259D01* X6644Y5276D01* X6625Y5295D01* Y5704D01* X6640Y5719D01* X6661Y5737D01* X6683Y5752D01* X6707Y5766D01* X6731Y5777D01* X6757Y5786D01* X6765Y5790D01* X6772Y5794D01* X6779Y5800D01* X6784Y5807D01* X6788Y5815D01* X6791Y5823D01* X6792Y5832D01* X6792Y5840D01* X6790Y5849D01* X6787Y5857D01* X6782Y5864D01* X6776Y5871D01* X6769Y5876D01* X6762Y5880D01* X6753Y5883D01* X6745Y5884D01* X6736Y5884D01* X6728Y5882D01* X6693Y5870D01* X6661Y5855D01* X6629Y5837D01* X6625Y5834D01* Y7153D01* X6647Y7141D01* X6680Y7127D01* X6714Y7115D01* X6723Y7113D01* X6732Y7113D01* X6740Y7115D01* X6748Y7117D01* X6756Y7122D01* X6763Y7127D01* X6769Y7134D01* X6773Y7141D01* X6776Y7149D01* X6778Y7158D01* X6778Y7167D01* X6777Y7175D01* X6774Y7183D01* X6770Y7191D01* X6764Y7198D01* X6757Y7204D01* X6750Y7208D01* X6742Y7211D01* X6716Y7220D01* X6691Y7231D01* X6668Y7244D01* X6645Y7259D01* X6625Y7276D01* Y7723D01* X6641Y7737D01* X6663Y7752D01* X6687Y7766D01* X6711Y7777D01* X6737Y7786D01* X6745Y7790D01* X6752Y7794D01* X6759Y7800D01* X6764Y7807D01* X6768Y7815D01* X6771Y7823D01* X6772Y7832D01* X6772Y7840D01* X6770Y7849D01* X6767Y7857D01* X6762Y7864D01* X6756Y7871D01* X6749Y7876D01* X6742Y7880D01* X6733Y7883D01* X6725Y7884D01* X6716Y7884D01* X6708Y7882D01* X6673Y7870D01* X6641Y7855D01* X6625Y7846D01* Y9142D01* X6627Y9141D01* X6660Y9127D01* X6694Y9115D01* X6703Y9113D01* X6712Y9113D01* X6720Y9115D01* X6728Y9117D01* X6736Y9122D01* X6743Y9127D01* X6749Y9134D01* X6753Y9141D01* X6756Y9149D01* X6758Y9158D01* X6758Y9167D01* X6757Y9175D01* X6754Y9183D01* X6750Y9191D01* X6744Y9198D01* X6737Y9204D01* X6730Y9208D01* X6722Y9211D01* X6696Y9220D01* X6671Y9231D01* X6648Y9244D01* X6625Y9259D01* Y9740D01* X6643Y9752D01* X6667Y9766D01* X6691Y9777D01* X6717Y9786D01* X6725Y9790D01* X6732Y9794D01* X6739Y9800D01* X6744Y9807D01* X6748Y9815D01* X6751Y9823D01* X6752Y9832D01* X6752Y9840D01* X6750Y9849D01* X6747Y9857D01* X6742Y9864D01* X6736Y9871D01* X6729Y9876D01* X6722Y9880D01* X6713Y9883D01* X6705Y9884D01* X6696Y9884D01* X6688Y9882D01* X6653Y9870D01* X6625Y9857D01* Y11133D01* X6640Y11127D01* X6674Y11115D01* X6683Y11113D01* X6692Y11113D01* X6700Y11115D01* X6708Y11117D01* X6716Y11122D01* X6723Y11127D01* X6729Y11134D01* X6733Y11141D01* X6736Y11149D01* X6738Y11158D01* X6738Y11167D01* X6737Y11175D01* X6734Y11183D01* X6730Y11191D01* X6724Y11198D01* X6717Y11204D01* X6710Y11208D01* X6702Y11211D01* X6676Y11220D01* X6651Y11231D01* X6628Y11244D01* X6625Y11246D01* Y11754D01* X6647Y11766D01* X6671Y11777D01* X6697Y11786D01* X6705Y11790D01* X6712Y11794D01* X6719Y11800D01* X6724Y11807D01* X6728Y11815D01* X6731Y11823D01* X6732Y11832D01* X6732Y11840D01* X6730Y11849D01* X6727Y11857D01* X6722Y11864D01* X6716Y11871D01* X6709Y11876D01* X6702Y11880D01* X6693Y11883D01* X6685Y11884D01* X6676Y11884D01* X6668Y11882D01* X6633Y11870D01* X6625Y11866D01* Y13125D01* X6654Y13115D01* X6663Y13113D01* X6672Y13113D01* X6680Y13115D01* X6688Y13117D01* X6696Y13122D01* X6703Y13127D01* X6709Y13134D01* X6713Y13141D01* X6716Y13149D01* X6718Y13158D01* X6718Y13167D01* X6717Y13175D01* X6714Y13183D01* X6710Y13191D01* X6704Y13198D01* X6697Y13204D01* X6690Y13208D01* X6682Y13211D01* X6656Y13220D01* X6631Y13231D01* X6625Y13234D01* Y13765D01* X6627Y13766D01* X6651Y13777D01* X6677Y13786D01* X6685Y13790D01* X6692Y13794D01* X6699Y13800D01* X6704Y13807D01* X6708Y13815D01* X6711Y13823D01* X6712Y13832D01* X6712Y13840D01* X6710Y13849D01* X6707Y13857D01* X6702Y13864D01* X6696Y13871D01* X6689Y13876D01* X6682Y13880D01* X6673Y13883D01* X6665Y13884D01* X6656Y13884D01* X6648Y13882D01* X6625Y13874D01* Y15118D01* X6634Y15115D01* X6643Y15113D01* X6652Y15113D01* X6660Y15115D01* X6668Y15117D01* X6676Y15122D01* X6683Y15127D01* X6689Y15134D01* X6693Y15141D01* X6696Y15149D01* X6698Y15158D01* X6698Y15167D01* X6697Y15175D01* X6694Y15183D01* X6690Y15191D01* X6684Y15198D01* X6677Y15204D01* X6670Y15208D01* X6662Y15211D01* X6636Y15220D01* X6625Y15225D01* Y15775D01* X6631Y15777D01* X6657Y15786D01* X6665Y15790D01* X6672Y15794D01* X6679Y15800D01* X6684Y15807D01* X6688Y15815D01* X6691Y15823D01* X6692Y15832D01* X6692Y15840D01* X6690Y15849D01* X6687Y15857D01* X6682Y15864D01* X6676Y15871D01* X6669Y15876D01* X6662Y15880D01* X6653Y15883D01* X6645Y15884D01* X6636Y15884D01* X6628Y15882D01* X6625Y15881D01* Y17113D01* X6632Y17113D01* X6640Y17115D01* X6648Y17117D01* X6656Y17122D01* X6663Y17127D01* X6669Y17134D01* X6673Y17141D01* X6676Y17149D01* X6678Y17158D01* X6678Y17167D01* X6677Y17175D01* X6674Y17183D01* X6670Y17191D01* X6664Y17198D01* X6657Y17204D01* X6650Y17208D01* X6642Y17211D01* X6625Y17217D01* Y17782D01* X6637Y17786D01* X6645Y17790D01* X6652Y17794D01* X6659Y17800D01* X6664Y17807D01* X6668Y17815D01* X6671Y17823D01* X6672Y17832D01* X6672Y17840D01* X6670Y17849D01* X6667Y17857D01* X6662Y17864D01* X6656Y17871D01* X6649Y17876D01* X6642Y17880D01* X6633Y17883D01* X6625Y17884D01* Y19116D01* X6628Y19117D01* X6636Y19122D01* X6643Y19127D01* X6649Y19134D01* X6653Y19141D01* X6656Y19149D01* X6658Y19158D01* X6658Y19167D01* X6657Y19175D01* X6654Y19183D01* X6650Y19191D01* X6644Y19198D01* X6637Y19204D01* X6630Y19208D01* X6625Y19210D01* Y19790D01* X6632Y19794D01* X6639Y19800D01* X6644Y19807D01* X6648Y19815D01* X6651Y19823D01* X6652Y19832D01* X6652Y19840D01* X6650Y19849D01* X6647Y19857D01* X6642Y19864D01* X6636Y19871D01* X6629Y19876D01* X6625Y19878D01* Y21130D01* X6629Y21134D01* X6633Y21141D01* X6636Y21149D01* X6638Y21158D01* X6638Y21167D01* X6637Y21175D01* X6634Y21183D01* X6630Y21191D01* X6625Y21197D01* Y21809D01* X6628Y21815D01* X6631Y21823D01* X6632Y21832D01* X6632Y21840D01* X6630Y21849D01* X6627Y21857D01* X6625Y21859D01* Y33138D01* G37* G36* X6884Y40000D02*X7064D01* Y21625D01* X7055Y21651D01* X7040Y21683D01* X7022Y21715D01* X7001Y21744D01* X6977Y21772D01* X6952Y21797D01* X6924Y21820D01* X6894Y21840D01* X6884Y21846D01* Y23165D01* X6909Y23183D01* X6937Y23207D01* X6962Y23232D01* X6985Y23260D01* X7005Y23290D01* X7023Y23322D01* X7037Y23355D01* X7049Y23389D01* X7051Y23398D01* X7051Y23407D01* X7050Y23415D01* X7047Y23423D01* X7042Y23431D01* X7037Y23438D01* X7030Y23444D01* X7023Y23448D01* X7015Y23451D01* X7006Y23453D01* X6997Y23453D01* X6989Y23452D01* X6981Y23449D01* X6973Y23445D01* X6966Y23439D01* X6960Y23433D01* X6956Y23425D01* X6953Y23417D01* X6944Y23391D01* X6933Y23366D01* X6920Y23343D01* X6905Y23320D01* X6888Y23299D01* X6884Y23295D01* Y23704D01* X6884Y23704D01* X6902Y23683D01* X6917Y23661D01* X6931Y23637D01* X6942Y23613D01* X6951Y23587D01* X6955Y23579D01* X6959Y23572D01* X6965Y23565D01* X6972Y23560D01* X6980Y23556D01* X6988Y23553D01* X6997Y23552D01* X7005Y23552D01* X7014Y23554D01* X7022Y23557D01* X7029Y23562D01* X7036Y23568D01* X7041Y23575D01* X7045Y23582D01* X7048Y23591D01* X7049Y23599D01* X7049Y23608D01* X7047Y23617D01* X7035Y23651D01* X7020Y23683D01* X7002Y23715D01* X6981Y23744D01* X6957Y23772D01* X6932Y23797D01* X6904Y23820D01* X6884Y23834D01* Y25180D01* X6889Y25183D01* X6917Y25207D01* X6942Y25232D01* X6965Y25260D01* X6985Y25290D01* X7003Y25322D01* X7017Y25355D01* X7029Y25389D01* X7031Y25398D01* X7031Y25407D01* X7030Y25415D01* X7027Y25423D01* X7022Y25431D01* X7017Y25438D01* X7010Y25444D01* X7003Y25448D01* X6995Y25451D01* X6986Y25453D01* X6977Y25453D01* X6969Y25452D01* X6961Y25449D01* X6953Y25445D01* X6946Y25439D01* X6940Y25433D01* X6936Y25425D01* X6933Y25417D01* X6924Y25391D01* X6913Y25366D01* X6900Y25343D01* X6885Y25320D01* X6884Y25319D01* Y25680D01* X6897Y25661D01* X6911Y25637D01* X6922Y25613D01* X6931Y25587D01* X6935Y25579D01* X6939Y25572D01* X6945Y25565D01* X6952Y25560D01* X6960Y25556D01* X6968Y25553D01* X6977Y25552D01* X6985Y25552D01* X6994Y25554D01* X7002Y25557D01* X7009Y25562D01* X7016Y25568D01* X7021Y25575D01* X7025Y25582D01* X7028Y25591D01* X7029Y25599D01* X7029Y25608D01* X7027Y25617D01* X7015Y25651D01* X7000Y25683D01* X6982Y25715D01* X6961Y25744D01* X6937Y25772D01* X6912Y25797D01* X6884Y25820D01* Y27196D01* X6897Y27207D01* X6922Y27232D01* X6945Y27260D01* X6965Y27290D01* X6983Y27322D01* X6997Y27355D01* X7009Y27389D01* X7011Y27398D01* X7011Y27407D01* X7010Y27415D01* X7007Y27423D01* X7002Y27431D01* X6997Y27438D01* X6990Y27444D01* X6983Y27448D01* X6975Y27451D01* X6966Y27453D01* X6957Y27453D01* X6949Y27452D01* X6941Y27449D01* X6933Y27445D01* X6926Y27439D01* X6920Y27433D01* X6916Y27425D01* X6913Y27417D01* X6904Y27391D01* X6893Y27366D01* X6884Y27350D01* Y27650D01* X6891Y27637D01* X6902Y27613D01* X6911Y27587D01* X6915Y27579D01* X6919Y27572D01* X6925Y27565D01* X6932Y27560D01* X6940Y27556D01* X6948Y27553D01* X6957Y27552D01* X6965Y27552D01* X6974Y27554D01* X6982Y27557D01* X6989Y27562D01* X6996Y27568D01* X7001Y27575D01* X7005Y27582D01* X7008Y27591D01* X7009Y27599D01* X7009Y27608D01* X7007Y27617D01* X6995Y27651D01* X6980Y27683D01* X6962Y27715D01* X6941Y27744D01* X6917Y27772D01* X6892Y27797D01* X6884Y27804D01* Y29214D01* X6902Y29232D01* X6925Y29260D01* X6945Y29290D01* X6963Y29322D01* X6977Y29355D01* X6989Y29389D01* X6991Y29398D01* X6991Y29407D01* X6990Y29415D01* X6987Y29423D01* X6982Y29431D01* X6977Y29438D01* X6970Y29444D01* X6963Y29448D01* X6955Y29451D01* X6946Y29453D01* X6937Y29453D01* X6929Y29452D01* X6921Y29449D01* X6913Y29445D01* X6906Y29439D01* X6900Y29433D01* X6896Y29425D01* X6893Y29417D01* X6884Y29391D01* X6884Y29391D01* Y29608D01* X6891Y29587D01* X6895Y29579D01* X6899Y29572D01* X6905Y29565D01* X6912Y29560D01* X6920Y29556D01* X6928Y29553D01* X6937Y29552D01* X6945Y29552D01* X6954Y29554D01* X6962Y29557D01* X6969Y29562D01* X6976Y29568D01* X6981Y29575D01* X6985Y29582D01* X6988Y29591D01* X6989Y29599D01* X6989Y29608D01* X6987Y29617D01* X6975Y29651D01* X6960Y29683D01* X6942Y29715D01* X6921Y29744D01* X6897Y29772D01* X6884Y29785D01* Y31235D01* X6905Y31260D01* X6925Y31290D01* X6943Y31322D01* X6957Y31355D01* X6969Y31389D01* X6971Y31398D01* X6971Y31407D01* X6970Y31415D01* X6967Y31423D01* X6962Y31431D01* X6957Y31438D01* X6950Y31444D01* X6943Y31448D01* X6935Y31451D01* X6926Y31453D01* X6917Y31453D01* X6909Y31452D01* X6901Y31449D01* X6893Y31445D01* X6886Y31439D01* X6884Y31437D01* Y31567D01* X6885Y31565D01* X6892Y31560D01* X6900Y31556D01* X6908Y31553D01* X6917Y31552D01* X6925Y31552D01* X6934Y31554D01* X6942Y31557D01* X6949Y31562D01* X6956Y31568D01* X6961Y31575D01* X6965Y31582D01* X6968Y31591D01* X6969Y31599D01* X6969Y31608D01* X6967Y31617D01* X6955Y31651D01* X6940Y31683D01* X6922Y31715D01* X6901Y31744D01* X6884Y31764D01* Y33259D01* X6885Y33260D01* X6905Y33290D01* X6923Y33322D01* X6937Y33355D01* X6949Y33389D01* X6951Y33398D01* X6951Y33407D01* X6950Y33415D01* X6947Y33423D01* X6942Y33431D01* X6937Y33438D01* X6930Y33444D01* X6923Y33448D01* X6915Y33451D01* X6906Y33453D01* X6897Y33453D01* X6889Y33452D01* X6884Y33450D01* Y33555D01* X6888Y33553D01* X6897Y33552D01* X6905Y33552D01* X6914Y33554D01* X6922Y33557D01* X6929Y33562D01* X6936Y33568D01* X6941Y33575D01* X6945Y33582D01* X6948Y33591D01* X6949Y33599D01* X6949Y33608D01* X6947Y33617D01* X6935Y33651D01* X6920Y33683D01* X6902Y33715D01* X6884Y33740D01* Y35288D01* X6885Y35290D01* X6903Y35322D01* X6917Y35355D01* X6929Y35389D01* X6931Y35398D01* X6931Y35407D01* X6930Y35415D01* X6927Y35423D01* X6922Y35431D01* X6917Y35438D01* X6910Y35444D01* X6903Y35448D01* X6895Y35451D01* X6886Y35453D01* X6884D01* Y35552D01* X6885D01* X6894Y35554D01* X6902Y35557D01* X6909Y35562D01* X6916Y35568D01* X6921Y35575D01* X6925Y35582D01* X6928Y35591D01* X6929Y35599D01* X6929Y35608D01* X6927Y35617D01* X6915Y35651D01* X6900Y35683D01* X6884Y35711D01* Y37324D01* X6897Y37355D01* X6909Y37389D01* X6911Y37398D01* X6911Y37407D01* X6910Y37415D01* X6907Y37423D01* X6902Y37431D01* X6897Y37438D01* X6890Y37444D01* X6884Y37447D01* Y37559D01* X6889Y37562D01* X6896Y37568D01* X6901Y37575D01* X6905Y37582D01* X6908Y37591D01* X6909Y37599D01* X6909Y37608D01* X6907Y37617D01* X6895Y37651D01* X6884Y37674D01* Y39374D01* X6889Y39389D01* X6891Y39398D01* X6891Y39407D01* X6890Y39415D01* X6887Y39423D01* X6884Y39428D01* Y39580D01* X6885Y39582D01* X6888Y39591D01* X6889Y39599D01* X6889Y39608D01* X6887Y39617D01* X6884Y39625D01* Y40000D01* G37* G36* X7064Y0D02*X6884D01* Y7140D01* X6887Y7135D01* X6893Y7128D01* X6900Y7123D01* X6907Y7119D01* X6916Y7116D01* X6924Y7115D01* X6933Y7115D01* X6941Y7117D01* X6976Y7129D01* X7008Y7144D01* X7040Y7162D01* X7064Y7180D01* Y5834D01* X7054Y5840D01* X7022Y5858D01* X6989Y5873D01* X6955Y5884D01* X6946Y5886D01* X6937Y5886D01* X6929Y5885D01* X6921Y5882D01* X6913Y5878D01* X6906Y5872D01* X6900Y5865D01* X6896Y5858D01* X6893Y5850D01* X6891Y5841D01* X6891Y5833D01* X6892Y5824D01* X6895Y5816D01* X6899Y5808D01* X6905Y5801D01* X6912Y5796D01* X6919Y5791D01* X6927Y5788D01* X6953Y5779D01* X6978Y5768D01* X7001Y5755D01* X7024Y5740D01* X7045Y5723D01* X7064Y5704D01* Y5295D01* X7049Y5280D01* X7028Y5262D01* X7006Y5247D01* X6982Y5233D01* X6958Y5222D01* X6932Y5213D01* X6924Y5209D01* X6917Y5205D01* X6910Y5199D01* X6905Y5192D01* X6901Y5184D01* X6898Y5176D01* X6897Y5167D01* X6897Y5159D01* X6899Y5150D01* X6902Y5142D01* X6907Y5135D01* X6913Y5128D01* X6920Y5123D01* X6927Y5119D01* X6936Y5116D01* X6944Y5115D01* X6953Y5115D01* X6961Y5117D01* X6996Y5129D01* X7028Y5144D01* X7060Y5162D01* X7064Y5165D01* Y3846D01* X7042Y3858D01* X7009Y3873D01* X6975Y3884D01* X6966Y3886D01* X6957Y3886D01* X6949Y3885D01* X6941Y3882D01* X6933Y3878D01* X6926Y3872D01* X6920Y3865D01* X6916Y3858D01* X6913Y3850D01* X6911Y3841D01* X6911Y3833D01* X6912Y3824D01* X6915Y3816D01* X6919Y3808D01* X6925Y3801D01* X6932Y3796D01* X6939Y3791D01* X6947Y3788D01* X6973Y3779D01* X6998Y3768D01* X7021Y3755D01* X7044Y3740D01* X7064Y3724D01* Y3276D01* X7048Y3262D01* X7026Y3247D01* X7002Y3233D01* X6978Y3222D01* X6952Y3213D01* X6944Y3209D01* X6937Y3205D01* X6930Y3199D01* X6925Y3192D01* X6921Y3184D01* X6918Y3176D01* X6917Y3167D01* X6917Y3159D01* X6919Y3150D01* X6922Y3142D01* X6927Y3135D01* X6933Y3128D01* X6940Y3123D01* X6947Y3119D01* X6956Y3116D01* X6964Y3115D01* X6973Y3115D01* X6981Y3117D01* X7016Y3129D01* X7048Y3144D01* X7064Y3153D01* Y1857D01* X7062Y1858D01* X7029Y1873D01* X6995Y1884D01* X6986Y1886D01* X6977Y1886D01* X6969Y1885D01* X6961Y1882D01* X6953Y1878D01* X6946Y1872D01* X6940Y1865D01* X6936Y1858D01* X6933Y1850D01* X6931Y1841D01* X6931Y1833D01* X6932Y1824D01* X6935Y1816D01* X6939Y1808D01* X6945Y1801D01* X6952Y1796D01* X6959Y1791D01* X6967Y1788D01* X6993Y1779D01* X7018Y1768D01* X7041Y1755D01* X7064Y1740D01* Y1259D01* X7046Y1247D01* X7022Y1233D01* X6998Y1222D01* X6972Y1213D01* X6964Y1209D01* X6957Y1205D01* X6950Y1199D01* X6945Y1192D01* X6941Y1184D01* X6938Y1176D01* X6937Y1167D01* X6937Y1159D01* X6939Y1150D01* X6942Y1142D01* X6947Y1135D01* X6953Y1128D01* X6960Y1123D01* X6967Y1119D01* X6976Y1116D01* X6984Y1115D01* X6993Y1115D01* X7001Y1117D01* X7036Y1129D01* X7064Y1142D01* Y0D01* G37* G36* Y7319D02*X7048Y7299D01* X7029Y7280D01* X7008Y7262D01* X6986Y7247D01* X6962Y7233D01* X6938Y7222D01* X6912Y7213D01* X6904Y7209D01* X6897Y7205D01* X6890Y7199D01* X6885Y7192D01* X6884Y7190D01* Y7802D01* X6885Y7801D01* X6892Y7796D01* X6899Y7791D01* X6907Y7788D01* X6933Y7779D01* X6958Y7768D01* X6981Y7755D01* X7004Y7740D01* X7025Y7723D01* X7044Y7704D01* X7062Y7683D01* X7064Y7680D01* Y7319D01* G37* G36* Y7820D02*X7064Y7820D01* X7034Y7840D01* X7002Y7858D01* X6969Y7873D01* X6935Y7884D01* X6926Y7886D01* X6917Y7886D01* X6909Y7885D01* X6901Y7882D01* X6893Y7878D01* X6886Y7872D01* X6884Y7870D01* Y9121D01* X6887Y9119D01* X6896Y9116D01* X6904Y9115D01* X6913Y9115D01* X6921Y9117D01* X6956Y9129D01* X6988Y9144D01* X7020Y9162D01* X7049Y9183D01* X7064Y9196D01* Y7820D01* G37* G36* Y9350D02*X7060Y9343D01* X7045Y9320D01* X7028Y9299D01* X7009Y9280D01* X6988Y9262D01* X6966Y9247D01* X6942Y9233D01* X6918Y9222D01* X6892Y9213D01* X6884Y9209D01* X6884Y9209D01* Y9789D01* X6887Y9788D01* X6913Y9779D01* X6938Y9768D01* X6961Y9755D01* X6984Y9740D01* X7005Y9723D01* X7024Y9704D01* X7042Y9683D01* X7057Y9661D01* X7064Y9650D01* Y9350D01* G37* G36* Y9804D02*X7044Y9820D01* X7014Y9840D01* X6982Y9858D01* X6949Y9873D01* X6915Y9884D01* X6906Y9886D01* X6897Y9886D01* X6889Y9885D01* X6884Y9883D01* Y11115D01* X6884D01* X6893Y11115D01* X6901Y11117D01* X6936Y11129D01* X6968Y11144D01* X7000Y11162D01* X7029Y11183D01* X7057Y11207D01* X7064Y11214D01* Y9804D01* G37* G36* Y11391D02*X7053Y11366D01* X7040Y11343D01* X7025Y11320D01* X7008Y11299D01* X6989Y11280D01* X6968Y11262D01* X6946Y11247D01* X6922Y11233D01* X6898Y11222D01* X6884Y11217D01* Y11782D01* X6893Y11779D01* X6918Y11768D01* X6941Y11755D01* X6964Y11740D01* X6985Y11723D01* X7004Y11704D01* X7022Y11683D01* X7037Y11661D01* X7051Y11637D01* X7062Y11613D01* X7064Y11608D01* Y11391D01* G37* G36* Y11785D02*X7052Y11797D01* X7024Y11820D01* X6994Y11840D01* X6962Y11858D01* X6929Y11873D01* X6895Y11884D01* X6886Y11886D01* X6884D01* Y13118D01* X6916Y13129D01* X6948Y13144D01* X6980Y13162D01* X7009Y13183D01* X7037Y13207D01* X7062Y13232D01* X7064Y13235D01* Y11785D01* G37* G36* Y13437D02*X7060Y13433D01* X7056Y13425D01* X7053Y13417D01* X7044Y13391D01* X7033Y13366D01* X7020Y13343D01* X7005Y13320D01* X6988Y13299D01* X6969Y13280D01* X6948Y13262D01* X6926Y13247D01* X6902Y13233D01* X6884Y13225D01* Y13774D01* X6898Y13768D01* X6921Y13755D01* X6944Y13740D01* X6965Y13723D01* X6984Y13704D01* X7002Y13683D01* X7017Y13661D01* X7031Y13637D01* X7042Y13613D01* X7051Y13587D01* X7055Y13579D01* X7059Y13572D01* X7064Y13567D01* Y13437D01* G37* G36* Y13764D02*X7057Y13772D01* X7032Y13797D01* X7004Y13820D01* X6974Y13840D01* X6942Y13858D01* X6909Y13873D01* X6884Y13881D01* Y15125D01* X6896Y15129D01* X6928Y15144D01* X6960Y15162D01* X6989Y15183D01* X7017Y15207D01* X7042Y15232D01* X7064Y15259D01* Y13764D01* G37* G36* Y15450D02*X7061Y15449D01* X7053Y15445D01* X7046Y15439D01* X7040Y15433D01* X7036Y15425D01* X7033Y15417D01* X7024Y15391D01* X7013Y15366D01* X7000Y15343D01* X6985Y15320D01* X6968Y15299D01* X6949Y15280D01* X6928Y15262D01* X6906Y15247D01* X6884Y15234D01* Y15765D01* X6901Y15755D01* X6924Y15740D01* X6945Y15723D01* X6964Y15704D01* X6982Y15683D01* X6997Y15661D01* X7011Y15637D01* X7022Y15613D01* X7031Y15587D01* X7035Y15579D01* X7039Y15572D01* X7045Y15565D01* X7052Y15560D01* X7060Y15556D01* X7064Y15555D01* Y15450D01* G37* G36* Y15740D02*X7061Y15744D01* X7037Y15772D01* X7012Y15797D01* X6984Y15820D01* X6954Y15840D01* X6922Y15858D01* X6889Y15873D01* X6884Y15874D01* Y17133D01* X6908Y17144D01* X6940Y17162D01* X6969Y17183D01* X6997Y17207D01* X7022Y17232D01* X7045Y17260D01* X7064Y17288D01* Y15740D01* G37* G36* Y17453D02*X7057Y17453D01* X7049Y17452D01* X7041Y17449D01* X7033Y17445D01* X7026Y17439D01* X7020Y17433D01* X7016Y17425D01* X7013Y17417D01* X7004Y17391D01* X6993Y17366D01* X6980Y17343D01* X6965Y17320D01* X6948Y17299D01* X6929Y17280D01* X6908Y17262D01* X6886Y17247D01* X6884Y17246D01* Y17754D01* X6904Y17740D01* X6925Y17723D01* X6944Y17704D01* X6962Y17683D01* X6977Y17661D01* X6991Y17637D01* X7002Y17613D01* X7011Y17587D01* X7015Y17579D01* X7019Y17572D01* X7025Y17565D01* X7032Y17560D01* X7040Y17556D01* X7048Y17553D01* X7057Y17552D01* X7064Y17552D01* Y17453D01* G37* G36* Y17711D02*X7062Y17715D01* X7041Y17744D01* X7017Y17772D01* X6992Y17797D01* X6964Y17820D01* X6934Y17840D01* X6902Y17858D01* X6884Y17866D01* Y19142D01* X6888Y19144D01* X6920Y19162D01* X6949Y19183D01* X6977Y19207D01* X7002Y19232D01* X7025Y19260D01* X7045Y19290D01* X7063Y19322D01* X7064Y19324D01* Y17711D01* G37* G36* Y19447D02*X7063Y19448D01* X7055Y19451D01* X7046Y19453D01* X7037Y19453D01* X7029Y19452D01* X7021Y19449D01* X7013Y19445D01* X7006Y19439D01* X7000Y19433D01* X6996Y19425D01* X6993Y19417D01* X6984Y19391D01* X6973Y19366D01* X6960Y19343D01* X6945Y19320D01* X6928Y19299D01* X6909Y19280D01* X6888Y19262D01* X6884Y19259D01* Y19740D01* X6905Y19723D01* X6924Y19704D01* X6942Y19683D01* X6957Y19661D01* X6971Y19637D01* X6982Y19613D01* X6991Y19587D01* X6995Y19579D01* X6999Y19572D01* X7005Y19565D01* X7012Y19560D01* X7020Y19556D01* X7028Y19553D01* X7037Y19552D01* X7045Y19552D01* X7054Y19554D01* X7062Y19557D01* X7064Y19559D01* Y19447D01* G37* G36* Y19674D02*X7060Y19683D01* X7042Y19715D01* X7021Y19744D01* X6997Y19772D01* X6972Y19797D01* X6944Y19820D01* X6914Y19840D01* X6884Y19857D01* Y21153D01* X6900Y21162D01* X6929Y21183D01* X6957Y21207D01* X6982Y21232D01* X7005Y21260D01* X7025Y21290D01* X7043Y21322D01* X7057Y21355D01* X7064Y21374D01* Y19674D01* G37* G36* Y21428D02*X7062Y21431D01* X7057Y21438D01* X7050Y21444D01* X7043Y21448D01* X7035Y21451D01* X7026Y21453D01* X7017Y21453D01* X7009Y21452D01* X7001Y21449D01* X6993Y21445D01* X6986Y21439D01* X6980Y21433D01* X6976Y21425D01* X6973Y21417D01* X6964Y21391D01* X6953Y21366D01* X6940Y21343D01* X6925Y21320D01* X6908Y21299D01* X6889Y21280D01* X6884Y21276D01* Y21724D01* X6885Y21723D01* X6904Y21704D01* X6922Y21683D01* X6937Y21661D01* X6951Y21637D01* X6962Y21613D01* X6971Y21587D01* X6975Y21579D01* X6979Y21572D01* X6985Y21565D01* X6992Y21560D01* X7000Y21556D01* X7008Y21553D01* X7017Y21552D01* X7025Y21552D01* X7034Y21554D01* X7042Y21557D01* X7049Y21562D01* X7056Y21568D01* X7061Y21575D01* X7064Y21580D01* Y21428D01* G37* G36* Y40000D02*X8285D01* Y39834D01* X8260Y39816D01* X8232Y39793D01* X8207Y39767D01* X8184Y39739D01* X8164Y39709D01* X8146Y39677D01* X8132Y39644D01* X8120Y39610D01* X8118Y39601D01* X8118Y39593D01* X8119Y39584D01* X8122Y39576D01* X8127Y39568D01* X8132Y39561D01* X8139Y39556D01* X8146Y39551D01* X8154Y39548D01* X8163Y39546D01* X8172Y39546D01* X8180Y39547D01* X8188Y39550D01* X8196Y39555D01* X8203Y39560D01* X8209Y39567D01* X8213Y39574D01* X8216Y39582D01* X8225Y39608D01* X8236Y39633D01* X8249Y39657D01* X8264Y39679D01* X8281Y39700D01* X8285Y39704D01* Y39295D01* X8285Y39295D01* X8267Y39316D01* X8252Y39338D01* X8238Y39362D01* X8227Y39386D01* X8218Y39412D01* X8214Y39420D01* X8210Y39427D01* X8204Y39434D01* X8197Y39439D01* X8189Y39443D01* X8181Y39446D01* X8172Y39447D01* X8164Y39447D01* X8155Y39445D01* X8147Y39442D01* X8140Y39437D01* X8133Y39431D01* X8128Y39424D01* X8124Y39417D01* X8121Y39409D01* X8120Y39400D01* X8120Y39391D01* X8122Y39383D01* X8134Y39349D01* X8149Y39316D01* X8167Y39284D01* X8188Y39255D01* X8212Y39227D01* X8237Y39202D01* X8265Y39179D01* X8285Y39166D01* Y37820D01* X8280Y37816D01* X8252Y37793D01* X8227Y37767D01* X8204Y37739D01* X8184Y37709D01* X8166Y37677D01* X8152Y37644D01* X8140Y37610D01* X8138Y37601D01* X8138Y37593D01* X8139Y37584D01* X8142Y37576D01* X8147Y37568D01* X8152Y37561D01* X8159Y37556D01* X8166Y37551D01* X8174Y37548D01* X8183Y37546D01* X8192Y37546D01* X8200Y37547D01* X8208Y37550D01* X8216Y37555D01* X8223Y37560D01* X8229Y37567D01* X8233Y37574D01* X8236Y37582D01* X8245Y37608D01* X8256Y37633D01* X8269Y37657D01* X8284Y37679D01* X8285Y37680D01* Y37319D01* X8272Y37338D01* X8258Y37362D01* X8247Y37386D01* X8238Y37412D01* X8234Y37420D01* X8230Y37427D01* X8224Y37434D01* X8217Y37439D01* X8209Y37443D01* X8201Y37446D01* X8192Y37447D01* X8184Y37447D01* X8175Y37445D01* X8167Y37442D01* X8160Y37437D01* X8153Y37431D01* X8148Y37424D01* X8144Y37417D01* X8141Y37409D01* X8140Y37400D01* X8140Y37391D01* X8142Y37383D01* X8154Y37349D01* X8169Y37316D01* X8187Y37284D01* X8208Y37255D01* X8232Y37227D01* X8257Y37202D01* X8285Y37179D01* Y35804D01* X8272Y35793D01* X8247Y35767D01* X8224Y35739D01* X8204Y35709D01* X8186Y35677D01* X8172Y35644D01* X8160Y35610D01* X8158Y35601D01* X8158Y35593D01* X8159Y35584D01* X8162Y35576D01* X8167Y35568D01* X8172Y35561D01* X8179Y35556D01* X8186Y35551D01* X8194Y35548D01* X8203Y35546D01* X8212Y35546D01* X8220Y35547D01* X8228Y35550D01* X8236Y35555D01* X8243Y35560D01* X8249Y35567D01* X8253Y35574D01* X8256Y35582D01* X8265Y35608D01* X8276Y35633D01* X8285Y35650D01* Y35349D01* X8278Y35362D01* X8267Y35386D01* X8258Y35412D01* X8254Y35420D01* X8250Y35427D01* X8244Y35434D01* X8237Y35439D01* X8229Y35443D01* X8221Y35446D01* X8212Y35447D01* X8204Y35447D01* X8195Y35445D01* X8187Y35442D01* X8180Y35437D01* X8173Y35431D01* X8168Y35424D01* X8164Y35417D01* X8161Y35409D01* X8160Y35400D01* X8160Y35391D01* X8162Y35383D01* X8174Y35349D01* X8189Y35316D01* X8207Y35284D01* X8228Y35255D01* X8252Y35227D01* X8277Y35202D01* X8285Y35196D01* Y33785D01* X8267Y33767D01* X8244Y33739D01* X8224Y33709D01* X8206Y33677D01* X8192Y33644D01* X8180Y33610D01* X8178Y33601D01* X8178Y33593D01* X8179Y33584D01* X8182Y33576D01* X8187Y33568D01* X8192Y33561D01* X8199Y33556D01* X8206Y33551D01* X8214Y33548D01* X8223Y33546D01* X8232Y33546D01* X8240Y33547D01* X8248Y33550D01* X8256Y33555D01* X8263Y33560D01* X8269Y33567D01* X8273Y33574D01* X8276Y33582D01* X8285Y33608D01* X8285Y33609D01* Y33391D01* X8278Y33412D01* X8274Y33420D01* X8270Y33427D01* X8264Y33434D01* X8257Y33439D01* X8249Y33443D01* X8241Y33446D01* X8232Y33447D01* X8224Y33447D01* X8215Y33445D01* X8207Y33442D01* X8200Y33437D01* X8193Y33431D01* X8188Y33424D01* X8184Y33417D01* X8181Y33409D01* X8180Y33400D01* X8180Y33391D01* X8182Y33383D01* X8194Y33349D01* X8209Y33316D01* X8227Y33284D01* X8248Y33255D01* X8272Y33227D01* X8285Y33214D01* Y31765D01* X8264Y31739D01* X8244Y31709D01* X8226Y31677D01* X8212Y31644D01* X8200Y31610D01* X8198Y31601D01* X8198Y31593D01* X8199Y31584D01* X8202Y31576D01* X8207Y31568D01* X8212Y31561D01* X8219Y31556D01* X8226Y31551D01* X8234Y31548D01* X8243Y31546D01* X8252Y31546D01* X8260Y31547D01* X8268Y31550D01* X8276Y31555D01* X8283Y31560D01* X8285Y31563D01* Y31432D01* X8284Y31434D01* X8277Y31439D01* X8269Y31443D01* X8261Y31446D01* X8252Y31447D01* X8244Y31447D01* X8235Y31445D01* X8227Y31442D01* X8220Y31437D01* X8213Y31431D01* X8208Y31424D01* X8204Y31417D01* X8201Y31409D01* X8200Y31400D01* X8200Y31391D01* X8202Y31383D01* X8214Y31349D01* X8229Y31316D01* X8247Y31284D01* X8268Y31255D01* X8285Y31235D01* Y29740D01* X8284Y29739D01* X8264Y29709D01* X8246Y29677D01* X8232Y29644D01* X8220Y29610D01* X8218Y29601D01* X8218Y29593D01* X8219Y29584D01* X8222Y29576D01* X8227Y29568D01* X8232Y29561D01* X8239Y29556D01* X8246Y29551D01* X8254Y29548D01* X8263Y29546D01* X8272Y29546D01* X8280Y29547D01* X8285Y29549D01* Y29445D01* X8281Y29446D01* X8272Y29447D01* X8264Y29447D01* X8255Y29445D01* X8247Y29442D01* X8240Y29437D01* X8233Y29431D01* X8228Y29424D01* X8224Y29417D01* X8221Y29409D01* X8220Y29400D01* X8220Y29391D01* X8222Y29383D01* X8234Y29349D01* X8249Y29316D01* X8267Y29284D01* X8285Y29259D01* Y27711D01* X8284Y27709D01* X8266Y27677D01* X8252Y27644D01* X8240Y27610D01* X8238Y27601D01* X8238Y27593D01* X8239Y27584D01* X8242Y27576D01* X8247Y27568D01* X8252Y27561D01* X8259Y27556D01* X8266Y27551D01* X8274Y27548D01* X8283Y27546D01* X8285D01* Y27447D01* X8284Y27447D01* X8275Y27445D01* X8267Y27442D01* X8260Y27437D01* X8253Y27431D01* X8248Y27424D01* X8244Y27417D01* X8241Y27409D01* X8240Y27400D01* X8240Y27391D01* X8242Y27383D01* X8254Y27349D01* X8269Y27316D01* X8285Y27288D01* Y25675D01* X8272Y25644D01* X8260Y25610D01* X8258Y25601D01* X8258Y25593D01* X8259Y25584D01* X8262Y25576D01* X8267Y25568D01* X8272Y25561D01* X8279Y25556D01* X8285Y25552D01* Y25441D01* X8280Y25437D01* X8273Y25431D01* X8268Y25424D01* X8264Y25417D01* X8261Y25409D01* X8260Y25400D01* X8260Y25391D01* X8262Y25383D01* X8274Y25349D01* X8285Y25325D01* Y23625D01* X8280Y23610D01* X8278Y23601D01* X8278Y23593D01* X8279Y23584D01* X8282Y23576D01* X8285Y23571D01* Y23419D01* X8284Y23417D01* X8281Y23409D01* X8280Y23400D01* X8280Y23391D01* X8282Y23383D01* X8285Y23374D01* Y0D01* X7064D01* Y1142D01* X7068Y1144D01* X7100Y1162D01* X7129Y1183D01* X7157Y1207D01* X7182Y1232D01* X7205Y1260D01* X7225Y1290D01* X7243Y1322D01* X7257Y1355D01* X7269Y1389D01* X7271Y1398D01* X7271Y1407D01* X7270Y1415D01* X7267Y1423D01* X7262Y1431D01* X7257Y1438D01* X7250Y1444D01* X7243Y1448D01* X7235Y1451D01* X7226Y1453D01* X7217Y1453D01* X7209Y1452D01* X7201Y1449D01* X7193Y1445D01* X7186Y1439D01* X7180Y1433D01* X7176Y1425D01* X7173Y1417D01* X7164Y1391D01* X7153Y1366D01* X7140Y1343D01* X7125Y1320D01* X7108Y1299D01* X7089Y1280D01* X7068Y1262D01* X7064Y1259D01* Y1740D01* X7085Y1723D01* X7104Y1704D01* X7122Y1683D01* X7137Y1661D01* X7151Y1637D01* X7162Y1613D01* X7171Y1587D01* X7175Y1579D01* X7179Y1572D01* X7185Y1565D01* X7192Y1560D01* X7200Y1556D01* X7208Y1553D01* X7217Y1552D01* X7225Y1552D01* X7234Y1554D01* X7242Y1557D01* X7249Y1562D01* X7256Y1568D01* X7261Y1575D01* X7265Y1582D01* X7268Y1591D01* X7269Y1599D01* X7269Y1608D01* X7267Y1617D01* X7255Y1651D01* X7240Y1683D01* X7222Y1715D01* X7201Y1744D01* X7177Y1772D01* X7152Y1797D01* X7124Y1820D01* X7094Y1840D01* X7064Y1857D01* Y3153D01* X7080Y3162D01* X7109Y3183D01* X7137Y3207D01* X7162Y3232D01* X7185Y3260D01* X7205Y3290D01* X7223Y3322D01* X7237Y3355D01* X7249Y3389D01* X7251Y3398D01* X7251Y3407D01* X7250Y3415D01* X7247Y3423D01* X7242Y3431D01* X7237Y3438D01* X7230Y3444D01* X7223Y3448D01* X7215Y3451D01* X7206Y3453D01* X7197Y3453D01* X7189Y3452D01* X7181Y3449D01* X7173Y3445D01* X7166Y3439D01* X7160Y3433D01* X7156Y3425D01* X7153Y3417D01* X7144Y3391D01* X7133Y3366D01* X7120Y3343D01* X7105Y3320D01* X7088Y3299D01* X7069Y3280D01* X7064Y3276D01* Y3724D01* X7065Y3723D01* X7084Y3704D01* X7102Y3683D01* X7117Y3661D01* X7131Y3637D01* X7142Y3613D01* X7151Y3587D01* X7155Y3579D01* X7159Y3572D01* X7165Y3565D01* X7172Y3560D01* X7180Y3556D01* X7188Y3553D01* X7197Y3552D01* X7205Y3552D01* X7214Y3554D01* X7222Y3557D01* X7229Y3562D01* X7236Y3568D01* X7241Y3575D01* X7245Y3582D01* X7248Y3591D01* X7249Y3599D01* X7249Y3608D01* X7247Y3617D01* X7235Y3651D01* X7220Y3683D01* X7202Y3715D01* X7181Y3744D01* X7157Y3772D01* X7132Y3797D01* X7104Y3820D01* X7074Y3840D01* X7064Y3846D01* Y5165D01* X7089Y5183D01* X7117Y5207D01* X7142Y5232D01* X7165Y5260D01* X7185Y5290D01* X7203Y5322D01* X7217Y5355D01* X7229Y5389D01* X7231Y5398D01* X7231Y5407D01* X7230Y5415D01* X7227Y5423D01* X7222Y5431D01* X7217Y5438D01* X7210Y5444D01* X7203Y5448D01* X7195Y5451D01* X7186Y5453D01* X7177Y5453D01* X7169Y5452D01* X7161Y5449D01* X7153Y5445D01* X7146Y5439D01* X7140Y5433D01* X7136Y5425D01* X7133Y5417D01* X7124Y5391D01* X7113Y5366D01* X7100Y5343D01* X7085Y5320D01* X7068Y5299D01* X7064Y5295D01* Y5704D01* X7064Y5704D01* X7082Y5683D01* X7097Y5661D01* X7111Y5637D01* X7122Y5613D01* X7131Y5587D01* X7135Y5579D01* X7139Y5572D01* X7145Y5565D01* X7152Y5560D01* X7160Y5556D01* X7168Y5553D01* X7177Y5552D01* X7185Y5552D01* X7194Y5554D01* X7202Y5557D01* X7209Y5562D01* X7216Y5568D01* X7221Y5575D01* X7225Y5582D01* X7228Y5591D01* X7229Y5599D01* X7229Y5608D01* X7227Y5617D01* X7215Y5651D01* X7200Y5683D01* X7182Y5715D01* X7161Y5744D01* X7137Y5772D01* X7112Y5797D01* X7084Y5820D01* X7064Y5834D01* Y7180D01* X7069Y7183D01* X7097Y7207D01* X7122Y7232D01* X7145Y7260D01* X7165Y7290D01* X7183Y7322D01* X7197Y7355D01* X7209Y7389D01* X7211Y7398D01* X7211Y7407D01* X7210Y7415D01* X7207Y7423D01* X7202Y7431D01* X7197Y7438D01* X7190Y7444D01* X7183Y7448D01* X7175Y7451D01* X7166Y7453D01* X7157Y7453D01* X7149Y7452D01* X7141Y7449D01* X7133Y7445D01* X7126Y7439D01* X7120Y7433D01* X7116Y7425D01* X7113Y7417D01* X7104Y7391D01* X7093Y7366D01* X7080Y7343D01* X7065Y7320D01* X7064Y7319D01* Y7680D01* X7077Y7661D01* X7091Y7637D01* X7102Y7613D01* X7111Y7587D01* X7115Y7579D01* X7119Y7572D01* X7125Y7565D01* X7132Y7560D01* X7140Y7556D01* X7148Y7553D01* X7157Y7552D01* X7165Y7552D01* X7174Y7554D01* X7182Y7557D01* X7189Y7562D01* X7196Y7568D01* X7201Y7575D01* X7205Y7582D01* X7208Y7591D01* X7209Y7599D01* X7209Y7608D01* X7207Y7617D01* X7195Y7651D01* X7180Y7683D01* X7162Y7715D01* X7141Y7744D01* X7117Y7772D01* X7092Y7797D01* X7064Y7820D01* Y9196D01* X7077Y9207D01* X7102Y9232D01* X7125Y9260D01* X7145Y9290D01* X7163Y9322D01* X7177Y9355D01* X7189Y9389D01* X7191Y9398D01* X7191Y9407D01* X7190Y9415D01* X7187Y9423D01* X7182Y9431D01* X7177Y9438D01* X7170Y9444D01* X7163Y9448D01* X7155Y9451D01* X7146Y9453D01* X7137Y9453D01* X7129Y9452D01* X7121Y9449D01* X7113Y9445D01* X7106Y9439D01* X7100Y9433D01* X7096Y9425D01* X7093Y9417D01* X7084Y9391D01* X7073Y9366D01* X7064Y9350D01* Y9650D01* X7071Y9637D01* X7082Y9613D01* X7091Y9587D01* X7095Y9579D01* X7099Y9572D01* X7105Y9565D01* X7112Y9560D01* X7120Y9556D01* X7128Y9553D01* X7137Y9552D01* X7145Y9552D01* X7154Y9554D01* X7162Y9557D01* X7169Y9562D01* X7176Y9568D01* X7181Y9575D01* X7185Y9582D01* X7188Y9591D01* X7189Y9599D01* X7189Y9608D01* X7187Y9617D01* X7175Y9651D01* X7160Y9683D01* X7142Y9715D01* X7121Y9744D01* X7097Y9772D01* X7072Y9797D01* X7064Y9804D01* Y11214D01* X7082Y11232D01* X7105Y11260D01* X7125Y11290D01* X7143Y11322D01* X7157Y11355D01* X7169Y11389D01* X7171Y11398D01* X7171Y11407D01* X7170Y11415D01* X7167Y11423D01* X7162Y11431D01* X7157Y11438D01* X7150Y11444D01* X7143Y11448D01* X7135Y11451D01* X7126Y11453D01* X7117Y11453D01* X7109Y11452D01* X7101Y11449D01* X7093Y11445D01* X7086Y11439D01* X7080Y11433D01* X7076Y11425D01* X7073Y11417D01* X7064Y11391D01* X7064Y11391D01* Y11608D01* X7071Y11587D01* X7075Y11579D01* X7079Y11572D01* X7085Y11565D01* X7092Y11560D01* X7100Y11556D01* X7108Y11553D01* X7117Y11552D01* X7125Y11552D01* X7134Y11554D01* X7142Y11557D01* X7149Y11562D01* X7156Y11568D01* X7161Y11575D01* X7165Y11582D01* X7168Y11591D01* X7169Y11599D01* X7169Y11608D01* X7167Y11617D01* X7155Y11651D01* X7140Y11683D01* X7122Y11715D01* X7101Y11744D01* X7077Y11772D01* X7064Y11785D01* Y13235D01* X7085Y13260D01* X7105Y13290D01* X7123Y13322D01* X7137Y13355D01* X7149Y13389D01* X7151Y13398D01* X7151Y13407D01* X7150Y13415D01* X7147Y13423D01* X7142Y13431D01* X7137Y13438D01* X7130Y13444D01* X7123Y13448D01* X7115Y13451D01* X7106Y13453D01* X7097Y13453D01* X7089Y13452D01* X7081Y13449D01* X7073Y13445D01* X7066Y13439D01* X7064Y13437D01* Y13567D01* X7065Y13565D01* X7072Y13560D01* X7080Y13556D01* X7088Y13553D01* X7097Y13552D01* X7105Y13552D01* X7114Y13554D01* X7122Y13557D01* X7129Y13562D01* X7136Y13568D01* X7141Y13575D01* X7145Y13582D01* X7148Y13591D01* X7149Y13599D01* X7149Y13608D01* X7147Y13617D01* X7135Y13651D01* X7120Y13683D01* X7102Y13715D01* X7081Y13744D01* X7064Y13764D01* Y15259D01* X7065Y15260D01* X7085Y15290D01* X7103Y15322D01* X7117Y15355D01* X7129Y15389D01* X7131Y15398D01* X7131Y15407D01* X7130Y15415D01* X7127Y15423D01* X7122Y15431D01* X7117Y15438D01* X7110Y15444D01* X7103Y15448D01* X7095Y15451D01* X7086Y15453D01* X7077Y15453D01* X7069Y15452D01* X7064Y15450D01* Y15555D01* X7068Y15553D01* X7077Y15552D01* X7085Y15552D01* X7094Y15554D01* X7102Y15557D01* X7109Y15562D01* X7116Y15568D01* X7121Y15575D01* X7125Y15582D01* X7128Y15591D01* X7129Y15599D01* X7129Y15608D01* X7127Y15617D01* X7115Y15651D01* X7100Y15683D01* X7082Y15715D01* X7064Y15740D01* Y17288D01* X7065Y17290D01* X7083Y17322D01* X7097Y17355D01* X7109Y17389D01* X7111Y17398D01* X7111Y17407D01* X7110Y17415D01* X7107Y17423D01* X7102Y17431D01* X7097Y17438D01* X7090Y17444D01* X7083Y17448D01* X7075Y17451D01* X7066Y17453D01* X7064D01* Y17552D01* X7065D01* X7074Y17554D01* X7082Y17557D01* X7089Y17562D01* X7096Y17568D01* X7101Y17575D01* X7105Y17582D01* X7108Y17591D01* X7109Y17599D01* X7109Y17608D01* X7107Y17617D01* X7095Y17651D01* X7080Y17683D01* X7064Y17711D01* Y19324D01* X7077Y19355D01* X7089Y19389D01* X7091Y19398D01* X7091Y19407D01* X7090Y19415D01* X7087Y19423D01* X7082Y19431D01* X7077Y19438D01* X7070Y19444D01* X7064Y19447D01* Y19559D01* X7069Y19562D01* X7076Y19568D01* X7081Y19575D01* X7085Y19582D01* X7088Y19591D01* X7089Y19599D01* X7089Y19608D01* X7087Y19617D01* X7075Y19651D01* X7064Y19674D01* Y21374D01* X7069Y21389D01* X7071Y21398D01* X7071Y21407D01* X7070Y21415D01* X7067Y21423D01* X7064Y21428D01* Y21580D01* X7065Y21582D01* X7068Y21591D01* X7069Y21599D01* X7069Y21608D01* X7067Y21617D01* X7064Y21625D01* Y40000D01* G37* G36* X8285D02*X8485D01* Y35859D01* X8482Y35864D01* X8476Y35871D01* X8469Y35876D01* X8462Y35880D01* X8453Y35883D01* X8445Y35884D01* X8436Y35884D01* X8428Y35882D01* X8393Y35870D01* X8361Y35855D01* X8329Y35837D01* X8300Y35816D01* X8285Y35804D01* Y37179D01* X8285Y37179D01* X8315Y37159D01* X8347Y37141D01* X8380Y37127D01* X8414Y37115D01* X8423Y37113D01* X8432Y37113D01* X8440Y37115D01* X8448Y37117D01* X8456Y37122D01* X8463Y37127D01* X8469Y37134D01* X8473Y37141D01* X8476Y37149D01* X8478Y37158D01* X8478Y37167D01* X8477Y37175D01* X8474Y37183D01* X8470Y37191D01* X8464Y37198D01* X8457Y37204D01* X8450Y37208D01* X8442Y37211D01* X8416Y37220D01* X8391Y37231D01* X8368Y37244D01* X8345Y37259D01* X8324Y37276D01* X8305Y37295D01* X8287Y37316D01* X8285Y37319D01* Y37680D01* X8301Y37700D01* X8320Y37719D01* X8341Y37737D01* X8363Y37752D01* X8387Y37766D01* X8411Y37777D01* X8437Y37786D01* X8445Y37790D01* X8452Y37794D01* X8459Y37800D01* X8464Y37807D01* X8468Y37815D01* X8471Y37823D01* X8472Y37832D01* X8472Y37840D01* X8470Y37849D01* X8467Y37857D01* X8462Y37864D01* X8456Y37871D01* X8449Y37876D01* X8442Y37880D01* X8433Y37883D01* X8425Y37884D01* X8416Y37884D01* X8408Y37882D01* X8373Y37870D01* X8341Y37855D01* X8309Y37837D01* X8285Y37820D01* Y39166D01* X8295Y39159D01* X8327Y39141D01* X8360Y39127D01* X8394Y39115D01* X8403Y39113D01* X8412Y39113D01* X8420Y39115D01* X8428Y39117D01* X8436Y39122D01* X8443Y39127D01* X8449Y39134D01* X8453Y39141D01* X8456Y39149D01* X8458Y39158D01* X8458Y39167D01* X8457Y39175D01* X8454Y39183D01* X8450Y39191D01* X8444Y39198D01* X8437Y39204D01* X8430Y39208D01* X8422Y39211D01* X8396Y39220D01* X8371Y39231D01* X8348Y39244D01* X8325Y39259D01* X8304Y39276D01* X8285Y39295D01* Y39704D01* X8300Y39719D01* X8321Y39737D01* X8343Y39752D01* X8367Y39766D01* X8391Y39777D01* X8417Y39786D01* X8425Y39790D01* X8432Y39794D01* X8439Y39800D01* X8444Y39807D01* X8448Y39815D01* X8451Y39823D01* X8452Y39832D01* X8452Y39840D01* X8450Y39849D01* X8447Y39857D01* X8442Y39864D01* X8436Y39871D01* X8429Y39876D01* X8422Y39880D01* X8413Y39883D01* X8405Y39884D01* X8396Y39884D01* X8388Y39882D01* X8353Y39870D01* X8321Y39855D01* X8289Y39837D01* X8285Y39834D01* Y40000D01* G37* G36* Y35650D02*X8289Y35657D01* X8304Y35679D01* X8321Y35700D01* X8340Y35719D01* X8361Y35737D01* X8383Y35752D01* X8407Y35766D01* X8431Y35777D01* X8457Y35786D01* X8465Y35790D01* X8472Y35794D01* X8479Y35800D01* X8484Y35807D01* X8485Y35809D01* Y35197D01* X8484Y35198D01* X8477Y35204D01* X8470Y35208D01* X8462Y35211D01* X8436Y35220D01* X8411Y35231D01* X8388Y35244D01* X8365Y35259D01* X8344Y35276D01* X8325Y35295D01* X8307Y35316D01* X8292Y35338D01* X8285Y35349D01* Y35650D01* G37* G36* Y35196D02*X8305Y35179D01* X8335Y35159D01* X8367Y35141D01* X8400Y35127D01* X8434Y35115D01* X8443Y35113D01* X8452Y35113D01* X8460Y35115D01* X8468Y35117D01* X8476Y35122D01* X8483Y35127D01* X8485Y35130D01* Y33878D01* X8482Y33880D01* X8473Y33883D01* X8465Y33884D01* X8456Y33884D01* X8448Y33882D01* X8413Y33870D01* X8381Y33855D01* X8349Y33837D01* X8320Y33816D01* X8292Y33793D01* X8285Y33785D01* Y35196D01* G37* G36* Y33609D02*X8296Y33633D01* X8309Y33657D01* X8324Y33679D01* X8341Y33700D01* X8360Y33719D01* X8381Y33737D01* X8403Y33752D01* X8427Y33766D01* X8451Y33777D01* X8477Y33786D01* X8485Y33790D01* X8485Y33790D01* Y33210D01* X8482Y33211D01* X8456Y33220D01* X8431Y33231D01* X8408Y33244D01* X8385Y33259D01* X8364Y33276D01* X8345Y33295D01* X8327Y33316D01* X8312Y33338D01* X8298Y33362D01* X8287Y33386D01* X8285Y33391D01* Y33609D01* G37* G36* Y33214D02*X8297Y33202D01* X8325Y33179D01* X8355Y33159D01* X8387Y33141D01* X8420Y33127D01* X8454Y33115D01* X8463Y33113D01* X8472Y33113D01* X8480Y33115D01* X8485Y33116D01* Y31884D01* X8485Y31884D01* X8476Y31884D01* X8468Y31882D01* X8433Y31870D01* X8401Y31855D01* X8369Y31837D01* X8340Y31816D01* X8312Y31793D01* X8287Y31767D01* X8285Y31765D01* Y33214D01* G37* G36* Y31563D02*X8289Y31567D01* X8293Y31574D01* X8296Y31582D01* X8305Y31608D01* X8316Y31633D01* X8329Y31657D01* X8344Y31679D01* X8361Y31700D01* X8380Y31719D01* X8401Y31737D01* X8423Y31752D01* X8447Y31766D01* X8471Y31777D01* X8485Y31782D01* Y31217D01* X8476Y31220D01* X8451Y31231D01* X8428Y31244D01* X8405Y31259D01* X8384Y31276D01* X8365Y31295D01* X8347Y31316D01* X8332Y31338D01* X8318Y31362D01* X8307Y31386D01* X8298Y31412D01* X8294Y31420D01* X8290Y31427D01* X8285Y31432D01* Y31563D01* G37* G36* Y31235D02*X8292Y31227D01* X8317Y31202D01* X8345Y31179D01* X8375Y31159D01* X8407Y31141D01* X8440Y31127D01* X8474Y31115D01* X8483Y31113D01* X8485D01* Y29881D01* X8453Y29870D01* X8421Y29855D01* X8389Y29837D01* X8360Y29816D01* X8332Y29793D01* X8307Y29767D01* X8285Y29740D01* Y31235D01* G37* G36* Y29549D02*X8288Y29550D01* X8296Y29555D01* X8303Y29560D01* X8309Y29567D01* X8313Y29574D01* X8316Y29582D01* X8325Y29608D01* X8336Y29633D01* X8349Y29657D01* X8364Y29679D01* X8381Y29700D01* X8400Y29719D01* X8421Y29737D01* X8443Y29752D01* X8467Y29766D01* X8485Y29775D01* Y29225D01* X8471Y29231D01* X8448Y29244D01* X8425Y29259D01* X8404Y29276D01* X8385Y29295D01* X8367Y29316D01* X8352Y29338D01* X8338Y29362D01* X8327Y29386D01* X8318Y29412D01* X8314Y29420D01* X8310Y29427D01* X8304Y29434D01* X8297Y29439D01* X8289Y29443D01* X8285Y29445D01* Y29549D01* G37* G36* Y29259D02*X8288Y29255D01* X8312Y29227D01* X8337Y29202D01* X8365Y29179D01* X8395Y29159D01* X8427Y29141D01* X8460Y29127D01* X8485Y29118D01* Y27874D01* X8473Y27870D01* X8441Y27855D01* X8409Y27837D01* X8380Y27816D01* X8352Y27793D01* X8327Y27767D01* X8304Y27739D01* X8285Y27711D01* Y29259D01* G37* G36* Y27546D02*X8292Y27546D01* X8300Y27547D01* X8308Y27550D01* X8316Y27555D01* X8323Y27560D01* X8329Y27567D01* X8333Y27574D01* X8336Y27582D01* X8345Y27608D01* X8356Y27633D01* X8369Y27657D01* X8384Y27679D01* X8401Y27700D01* X8420Y27719D01* X8441Y27737D01* X8463Y27752D01* X8485Y27765D01* Y27234D01* X8468Y27244D01* X8445Y27259D01* X8424Y27276D01* X8405Y27295D01* X8387Y27316D01* X8372Y27338D01* X8358Y27362D01* X8347Y27386D01* X8338Y27412D01* X8334Y27420D01* X8330Y27427D01* X8324Y27434D01* X8317Y27439D01* X8309Y27443D01* X8301Y27446D01* X8292Y27447D01* X8285Y27447D01* Y27546D01* G37* G36* Y27288D02*X8287Y27284D01* X8308Y27255D01* X8332Y27227D01* X8357Y27202D01* X8385Y27179D01* X8415Y27159D01* X8447Y27141D01* X8480Y27127D01* X8485Y27125D01* Y25866D01* X8461Y25855D01* X8429Y25837D01* X8400Y25816D01* X8372Y25793D01* X8347Y25767D01* X8324Y25739D01* X8304Y25709D01* X8286Y25677D01* X8285Y25675D01* Y27288D01* G37* G36* Y25552D02*X8286Y25551D01* X8294Y25548D01* X8303Y25546D01* X8312Y25546D01* X8320Y25547D01* X8328Y25550D01* X8336Y25555D01* X8343Y25560D01* X8349Y25567D01* X8353Y25574D01* X8356Y25582D01* X8365Y25608D01* X8376Y25633D01* X8389Y25657D01* X8404Y25679D01* X8421Y25700D01* X8440Y25719D01* X8461Y25737D01* X8483Y25752D01* X8485Y25754D01* Y25246D01* X8465Y25259D01* X8444Y25276D01* X8425Y25295D01* X8407Y25316D01* X8392Y25338D01* X8378Y25362D01* X8367Y25386D01* X8358Y25412D01* X8354Y25420D01* X8350Y25427D01* X8344Y25434D01* X8337Y25439D01* X8329Y25443D01* X8321Y25446D01* X8312Y25447D01* X8304Y25447D01* X8295Y25445D01* X8287Y25442D01* X8285Y25441D01* Y25552D01* G37* G36* Y25325D02*X8289Y25316D01* X8307Y25284D01* X8328Y25255D01* X8352Y25227D01* X8377Y25202D01* X8405Y25179D01* X8435Y25159D01* X8467Y25141D01* X8485Y25133D01* Y23857D01* X8481Y23855D01* X8449Y23837D01* X8420Y23816D01* X8392Y23793D01* X8367Y23767D01* X8344Y23739D01* X8324Y23709D01* X8306Y23677D01* X8292Y23644D01* X8285Y23625D01* Y25325D01* G37* G36* Y23571D02*X8287Y23568D01* X8292Y23561D01* X8299Y23556D01* X8306Y23551D01* X8314Y23548D01* X8323Y23546D01* X8332Y23546D01* X8340Y23547D01* X8348Y23550D01* X8356Y23555D01* X8363Y23560D01* X8369Y23567D01* X8373Y23574D01* X8376Y23582D01* X8385Y23608D01* X8396Y23633D01* X8409Y23657D01* X8424Y23679D01* X8441Y23700D01* X8460Y23719D01* X8481Y23737D01* X8485Y23740D01* Y23259D01* X8485Y23259D01* X8464Y23276D01* X8445Y23295D01* X8427Y23316D01* X8412Y23338D01* X8398Y23362D01* X8387Y23386D01* X8378Y23412D01* X8374Y23420D01* X8370Y23427D01* X8364Y23434D01* X8357Y23439D01* X8349Y23443D01* X8341Y23446D01* X8332Y23447D01* X8324Y23447D01* X8315Y23445D01* X8307Y23442D01* X8300Y23437D01* X8293Y23431D01* X8288Y23424D01* X8285Y23419D01* Y23571D01* G37* G36* Y23374D02*X8294Y23349D01* X8309Y23316D01* X8327Y23284D01* X8348Y23255D01* X8372Y23227D01* X8397Y23202D01* X8425Y23179D01* X8455Y23159D01* X8485Y23142D01* Y21846D01* X8469Y21837D01* X8440Y21816D01* X8412Y21793D01* X8387Y21767D01* X8364Y21739D01* X8344Y21709D01* X8326Y21677D01* X8312Y21644D01* X8300Y21610D01* X8298Y21601D01* X8298Y21593D01* X8299Y21584D01* X8302Y21576D01* X8307Y21568D01* X8312Y21561D01* X8319Y21556D01* X8326Y21551D01* X8334Y21548D01* X8343Y21546D01* X8352Y21546D01* X8360Y21547D01* X8368Y21550D01* X8376Y21555D01* X8383Y21560D01* X8389Y21567D01* X8393Y21574D01* X8396Y21582D01* X8405Y21608D01* X8416Y21633D01* X8429Y21657D01* X8444Y21679D01* X8461Y21700D01* X8480Y21719D01* X8485Y21723D01* Y21276D01* X8484Y21276D01* X8465Y21295D01* X8447Y21316D01* X8432Y21338D01* X8418Y21362D01* X8407Y21386D01* X8398Y21412D01* X8394Y21420D01* X8390Y21427D01* X8384Y21434D01* X8377Y21439D01* X8369Y21443D01* X8361Y21446D01* X8352Y21447D01* X8344Y21447D01* X8335Y21445D01* X8327Y21442D01* X8320Y21437D01* X8313Y21431D01* X8308Y21424D01* X8304Y21417D01* X8301Y21409D01* X8300Y21400D01* X8300Y21391D01* X8302Y21383D01* X8314Y21349D01* X8329Y21316D01* X8347Y21284D01* X8368Y21255D01* X8392Y21227D01* X8417Y21202D01* X8445Y21179D01* X8475Y21159D01* X8485Y21153D01* Y19834D01* X8460Y19816D01* X8432Y19793D01* X8407Y19767D01* X8384Y19739D01* X8364Y19709D01* X8346Y19677D01* X8332Y19644D01* X8320Y19610D01* X8318Y19601D01* X8318Y19593D01* X8319Y19584D01* X8322Y19576D01* X8327Y19568D01* X8332Y19561D01* X8339Y19556D01* X8346Y19551D01* X8354Y19548D01* X8363Y19546D01* X8372Y19546D01* X8380Y19547D01* X8388Y19550D01* X8396Y19555D01* X8403Y19560D01* X8409Y19567D01* X8413Y19574D01* X8416Y19582D01* X8425Y19608D01* X8436Y19633D01* X8449Y19657D01* X8464Y19679D01* X8481Y19700D01* X8485Y19704D01* Y19295D01* X8485Y19295D01* X8467Y19316D01* X8452Y19338D01* X8438Y19362D01* X8427Y19386D01* X8418Y19412D01* X8414Y19420D01* X8410Y19427D01* X8404Y19434D01* X8397Y19439D01* X8389Y19443D01* X8381Y19446D01* X8372Y19447D01* X8364Y19447D01* X8355Y19445D01* X8347Y19442D01* X8340Y19437D01* X8333Y19431D01* X8328Y19424D01* X8324Y19417D01* X8321Y19409D01* X8320Y19400D01* X8320Y19391D01* X8322Y19383D01* X8334Y19349D01* X8349Y19316D01* X8367Y19284D01* X8388Y19255D01* X8412Y19227D01* X8437Y19202D01* X8465Y19179D01* X8485Y19166D01* Y17820D01* X8480Y17816D01* X8452Y17793D01* X8427Y17767D01* X8404Y17739D01* X8384Y17709D01* X8366Y17677D01* X8352Y17644D01* X8340Y17610D01* X8338Y17601D01* X8338Y17593D01* X8339Y17584D01* X8342Y17576D01* X8347Y17568D01* X8352Y17561D01* X8359Y17556D01* X8366Y17551D01* X8374Y17548D01* X8383Y17546D01* X8392Y17546D01* X8400Y17547D01* X8408Y17550D01* X8416Y17555D01* X8423Y17560D01* X8429Y17567D01* X8433Y17574D01* X8436Y17582D01* X8445Y17608D01* X8456Y17633D01* X8469Y17657D01* X8484Y17679D01* X8485Y17680D01* Y17319D01* X8472Y17338D01* X8458Y17362D01* X8447Y17386D01* X8438Y17412D01* X8434Y17420D01* X8430Y17427D01* X8424Y17434D01* X8417Y17439D01* X8409Y17443D01* X8401Y17446D01* X8392Y17447D01* X8384Y17447D01* X8375Y17445D01* X8367Y17442D01* X8360Y17437D01* X8353Y17431D01* X8348Y17424D01* X8344Y17417D01* X8341Y17409D01* X8340Y17400D01* X8340Y17391D01* X8342Y17383D01* X8354Y17349D01* X8369Y17316D01* X8387Y17284D01* X8408Y17255D01* X8432Y17227D01* X8457Y17202D01* X8485Y17179D01* Y15804D01* X8472Y15793D01* X8447Y15767D01* X8424Y15739D01* X8404Y15709D01* X8386Y15677D01* X8372Y15644D01* X8360Y15610D01* X8358Y15601D01* X8358Y15593D01* X8359Y15584D01* X8362Y15576D01* X8367Y15568D01* X8372Y15561D01* X8379Y15556D01* X8386Y15551D01* X8394Y15548D01* X8403Y15546D01* X8412Y15546D01* X8420Y15547D01* X8428Y15550D01* X8436Y15555D01* X8443Y15560D01* X8449Y15567D01* X8453Y15574D01* X8456Y15582D01* X8465Y15608D01* X8476Y15633D01* X8485Y15650D01* Y15349D01* X8478Y15362D01* X8467Y15386D01* X8458Y15412D01* X8454Y15420D01* X8450Y15427D01* X8444Y15434D01* X8437Y15439D01* X8429Y15443D01* X8421Y15446D01* X8412Y15447D01* X8404Y15447D01* X8395Y15445D01* X8387Y15442D01* X8380Y15437D01* X8373Y15431D01* X8368Y15424D01* X8364Y15417D01* X8361Y15409D01* X8360Y15400D01* X8360Y15391D01* X8362Y15383D01* X8374Y15349D01* X8389Y15316D01* X8407Y15284D01* X8428Y15255D01* X8452Y15227D01* X8477Y15202D01* X8485Y15196D01* Y13785D01* X8467Y13767D01* X8444Y13739D01* X8424Y13709D01* X8406Y13677D01* X8392Y13644D01* X8380Y13610D01* X8378Y13601D01* X8378Y13593D01* X8379Y13584D01* X8382Y13576D01* X8387Y13568D01* X8392Y13561D01* X8399Y13556D01* X8406Y13551D01* X8414Y13548D01* X8423Y13546D01* X8432Y13546D01* X8440Y13547D01* X8448Y13550D01* X8456Y13555D01* X8463Y13560D01* X8469Y13567D01* X8473Y13574D01* X8476Y13582D01* X8485Y13608D01* X8485Y13609D01* Y13391D01* X8478Y13412D01* X8474Y13420D01* X8470Y13427D01* X8464Y13434D01* X8457Y13439D01* X8449Y13443D01* X8441Y13446D01* X8432Y13447D01* X8424Y13447D01* X8415Y13445D01* X8407Y13442D01* X8400Y13437D01* X8393Y13431D01* X8388Y13424D01* X8384Y13417D01* X8381Y13409D01* X8380Y13400D01* X8380Y13391D01* X8382Y13383D01* X8394Y13349D01* X8409Y13316D01* X8427Y13284D01* X8448Y13255D01* X8472Y13227D01* X8485Y13214D01* Y11765D01* X8464Y11739D01* X8444Y11709D01* X8426Y11677D01* X8412Y11644D01* X8400Y11610D01* X8398Y11601D01* X8398Y11593D01* X8399Y11584D01* X8402Y11576D01* X8407Y11568D01* X8412Y11561D01* X8419Y11556D01* X8426Y11551D01* X8434Y11548D01* X8443Y11546D01* X8452Y11546D01* X8460Y11547D01* X8468Y11550D01* X8476Y11555D01* X8483Y11560D01* X8485Y11563D01* Y11432D01* X8484Y11434D01* X8477Y11439D01* X8469Y11443D01* X8461Y11446D01* X8452Y11447D01* X8444Y11447D01* X8435Y11445D01* X8427Y11442D01* X8420Y11437D01* X8413Y11431D01* X8408Y11424D01* X8404Y11417D01* X8401Y11409D01* X8400Y11400D01* X8400Y11391D01* X8402Y11383D01* X8414Y11349D01* X8429Y11316D01* X8447Y11284D01* X8468Y11255D01* X8485Y11235D01* Y9740D01* X8484Y9739D01* X8464Y9709D01* X8446Y9677D01* X8432Y9644D01* X8420Y9610D01* X8418Y9601D01* X8418Y9593D01* X8419Y9584D01* X8422Y9576D01* X8427Y9568D01* X8432Y9561D01* X8439Y9556D01* X8446Y9551D01* X8454Y9548D01* X8463Y9546D01* X8472Y9546D01* X8480Y9547D01* X8485Y9549D01* Y9445D01* X8481Y9446D01* X8472Y9447D01* X8464Y9447D01* X8455Y9445D01* X8447Y9442D01* X8440Y9437D01* X8433Y9431D01* X8428Y9424D01* X8424Y9417D01* X8421Y9409D01* X8420Y9400D01* X8420Y9391D01* X8422Y9383D01* X8434Y9349D01* X8449Y9316D01* X8467Y9284D01* X8485Y9259D01* Y7711D01* X8484Y7709D01* X8466Y7677D01* X8452Y7644D01* X8440Y7610D01* X8438Y7601D01* X8438Y7593D01* X8439Y7584D01* X8442Y7576D01* X8447Y7568D01* X8452Y7561D01* X8459Y7556D01* X8466Y7551D01* X8474Y7548D01* X8483Y7546D01* X8485D01* Y7447D01* X8484Y7447D01* X8475Y7445D01* X8467Y7442D01* X8460Y7437D01* X8453Y7431D01* X8448Y7424D01* X8444Y7417D01* X8441Y7409D01* X8440Y7400D01* X8440Y7391D01* X8442Y7383D01* X8454Y7349D01* X8469Y7316D01* X8485Y7288D01* Y5675D01* X8472Y5644D01* X8460Y5610D01* X8458Y5601D01* X8458Y5593D01* X8459Y5584D01* X8462Y5576D01* X8467Y5568D01* X8472Y5561D01* X8479Y5556D01* X8485Y5552D01* Y5441D01* X8480Y5437D01* X8473Y5431D01* X8468Y5424D01* X8464Y5417D01* X8461Y5409D01* X8460Y5400D01* X8460Y5391D01* X8462Y5383D01* X8474Y5349D01* X8485Y5325D01* Y3625D01* X8480Y3610D01* X8478Y3601D01* X8478Y3593D01* X8479Y3584D01* X8482Y3576D01* X8485Y3571D01* Y3419D01* X8484Y3417D01* X8481Y3409D01* X8480Y3400D01* X8480Y3391D01* X8482Y3383D01* X8485Y3374D01* Y0D01* X8285D01* Y23374D01* G37* G36* X8485Y40000D02*X8665D01* Y39865D01* X8649Y39873D01* X8615Y39884D01* X8606Y39886D01* X8597Y39886D01* X8589Y39885D01* X8581Y39882D01* X8573Y39878D01* X8566Y39872D01* X8560Y39865D01* X8556Y39858D01* X8553Y39850D01* X8551Y39841D01* X8551Y39833D01* X8552Y39824D01* X8555Y39816D01* X8559Y39808D01* X8565Y39801D01* X8572Y39796D01* X8579Y39791D01* X8587Y39788D01* X8613Y39779D01* X8638Y39768D01* X8661Y39755D01* X8665Y39753D01* Y39246D01* X8642Y39233D01* X8618Y39222D01* X8592Y39213D01* X8584Y39209D01* X8577Y39205D01* X8570Y39199D01* X8565Y39192D01* X8561Y39184D01* X8558Y39176D01* X8557Y39167D01* X8557Y39159D01* X8559Y39150D01* X8562Y39142D01* X8567Y39135D01* X8573Y39128D01* X8580Y39123D01* X8587Y39119D01* X8596Y39116D01* X8604Y39115D01* X8613Y39115D01* X8621Y39117D01* X8656Y39129D01* X8665Y39134D01* Y37874D01* X8635Y37884D01* X8626Y37886D01* X8617Y37886D01* X8609Y37885D01* X8601Y37882D01* X8593Y37878D01* X8586Y37872D01* X8580Y37865D01* X8576Y37858D01* X8573Y37850D01* X8571Y37841D01* X8571Y37833D01* X8572Y37824D01* X8575Y37816D01* X8579Y37808D01* X8585Y37801D01* X8592Y37796D01* X8599Y37791D01* X8607Y37788D01* X8633Y37779D01* X8658Y37768D01* X8665Y37764D01* Y37235D01* X8662Y37233D01* X8638Y37222D01* X8612Y37213D01* X8604Y37209D01* X8597Y37205D01* X8590Y37199D01* X8585Y37192D01* X8581Y37184D01* X8578Y37176D01* X8577Y37167D01* X8577Y37159D01* X8579Y37150D01* X8582Y37142D01* X8587Y37135D01* X8593Y37128D01* X8600Y37123D01* X8607Y37119D01* X8616Y37116D01* X8624Y37115D01* X8633Y37115D01* X8641Y37117D01* X8665Y37126D01* Y35881D01* X8655Y35884D01* X8646Y35886D01* X8637Y35886D01* X8629Y35885D01* X8621Y35882D01* X8613Y35878D01* X8606Y35872D01* X8600Y35865D01* X8596Y35858D01* X8593Y35850D01* X8591Y35841D01* X8591Y35833D01* X8592Y35824D01* X8595Y35816D01* X8599Y35808D01* X8605Y35801D01* X8612Y35796D01* X8619Y35791D01* X8627Y35788D01* X8653Y35779D01* X8665Y35774D01* Y35225D01* X8658Y35222D01* X8632Y35213D01* X8624Y35209D01* X8617Y35205D01* X8610Y35199D01* X8605Y35192D01* X8601Y35184D01* X8598Y35176D01* X8597Y35167D01* X8597Y35159D01* X8599Y35150D01* X8602Y35142D01* X8607Y35135D01* X8613Y35128D01* X8620Y35123D01* X8627Y35119D01* X8636Y35116D01* X8644Y35115D01* X8653Y35115D01* X8661Y35117D01* X8665Y35118D01* Y33886D01* X8657Y33886D01* X8649Y33885D01* X8641Y33882D01* X8633Y33878D01* X8626Y33872D01* X8620Y33865D01* X8616Y33858D01* X8613Y33850D01* X8611Y33841D01* X8611Y33833D01* X8612Y33824D01* X8615Y33816D01* X8619Y33808D01* X8625Y33801D01* X8632Y33796D01* X8639Y33791D01* X8647Y33788D01* X8665Y33782D01* Y33217D01* X8652Y33213D01* X8644Y33209D01* X8637Y33205D01* X8630Y33199D01* X8625Y33192D01* X8621Y33184D01* X8618Y33176D01* X8617Y33167D01* X8617Y33159D01* X8619Y33150D01* X8622Y33142D01* X8627Y33135D01* X8633Y33128D01* X8640Y33123D01* X8647Y33119D01* X8656Y33116D01* X8664Y33115D01* X8665D01* Y31883D01* X8661Y31882D01* X8653Y31878D01* X8646Y31872D01* X8640Y31865D01* X8636Y31858D01* X8633Y31850D01* X8631Y31841D01* X8631Y31833D01* X8632Y31824D01* X8635Y31816D01* X8639Y31808D01* X8645Y31801D01* X8652Y31796D01* X8659Y31791D01* X8665Y31789D01* Y31210D01* X8664Y31209D01* X8657Y31205D01* X8650Y31199D01* X8645Y31192D01* X8641Y31184D01* X8638Y31176D01* X8637Y31167D01* X8637Y31159D01* X8639Y31150D01* X8642Y31142D01* X8647Y31135D01* X8653Y31128D01* X8660Y31123D01* X8665Y31120D01* Y29871D01* X8660Y29865D01* X8656Y29858D01* X8653Y29850D01* X8651Y29841D01* X8651Y29833D01* X8652Y29824D01* X8655Y29816D01* X8659Y29808D01* X8665Y29801D01* X8665Y29801D01* Y29192D01* X8665Y29192D01* X8661Y29184D01* X8658Y29176D01* X8657Y29167D01* X8657Y29159D01* X8659Y29150D01* X8662Y29142D01* X8665Y29138D01* Y17859D01* X8662Y17864D01* X8656Y17871D01* X8649Y17876D01* X8642Y17880D01* X8633Y17883D01* X8625Y17884D01* X8616Y17884D01* X8608Y17882D01* X8573Y17870D01* X8541Y17855D01* X8509Y17837D01* X8485Y17820D01* Y19166D01* X8495Y19159D01* X8527Y19141D01* X8560Y19127D01* X8594Y19115D01* X8603Y19113D01* X8612Y19113D01* X8620Y19115D01* X8628Y19117D01* X8636Y19122D01* X8643Y19127D01* X8649Y19134D01* X8653Y19141D01* X8656Y19149D01* X8658Y19158D01* X8658Y19167D01* X8657Y19175D01* X8654Y19183D01* X8650Y19191D01* X8644Y19198D01* X8637Y19204D01* X8630Y19208D01* X8622Y19211D01* X8596Y19220D01* X8571Y19231D01* X8548Y19244D01* X8525Y19259D01* X8504Y19276D01* X8485Y19295D01* Y19704D01* X8500Y19719D01* X8521Y19737D01* X8543Y19752D01* X8567Y19766D01* X8591Y19777D01* X8617Y19786D01* X8625Y19790D01* X8632Y19794D01* X8639Y19800D01* X8644Y19807D01* X8648Y19815D01* X8651Y19823D01* X8652Y19832D01* X8652Y19840D01* X8650Y19849D01* X8647Y19857D01* X8642Y19864D01* X8636Y19871D01* X8629Y19876D01* X8622Y19880D01* X8613Y19883D01* X8605Y19884D01* X8596Y19884D01* X8588Y19882D01* X8553Y19870D01* X8521Y19855D01* X8489Y19837D01* X8485Y19834D01* Y21153D01* X8507Y21141D01* X8540Y21127D01* X8574Y21115D01* X8583Y21113D01* X8592Y21113D01* X8600Y21115D01* X8608Y21117D01* X8616Y21122D01* X8623Y21127D01* X8629Y21134D01* X8633Y21141D01* X8636Y21149D01* X8638Y21158D01* X8638Y21167D01* X8637Y21175D01* X8634Y21183D01* X8630Y21191D01* X8624Y21198D01* X8617Y21204D01* X8610Y21208D01* X8602Y21211D01* X8576Y21220D01* X8551Y21231D01* X8528Y21244D01* X8505Y21259D01* X8485Y21276D01* Y21723D01* X8501Y21737D01* X8523Y21752D01* X8547Y21766D01* X8571Y21777D01* X8597Y21786D01* X8605Y21790D01* X8612Y21794D01* X8619Y21800D01* X8624Y21807D01* X8628Y21815D01* X8631Y21823D01* X8632Y21832D01* X8632Y21840D01* X8630Y21849D01* X8627Y21857D01* X8622Y21864D01* X8616Y21871D01* X8609Y21876D01* X8602Y21880D01* X8593Y21883D01* X8585Y21884D01* X8576Y21884D01* X8568Y21882D01* X8533Y21870D01* X8501Y21855D01* X8485Y21846D01* Y23142D01* X8487Y23141D01* X8520Y23127D01* X8554Y23115D01* X8563Y23113D01* X8572Y23113D01* X8580Y23115D01* X8588Y23117D01* X8596Y23122D01* X8603Y23127D01* X8609Y23134D01* X8613Y23141D01* X8616Y23149D01* X8618Y23158D01* X8618Y23167D01* X8617Y23175D01* X8614Y23183D01* X8610Y23191D01* X8604Y23198D01* X8597Y23204D01* X8590Y23208D01* X8582Y23211D01* X8556Y23220D01* X8531Y23231D01* X8508Y23244D01* X8485Y23259D01* Y23740D01* X8503Y23752D01* X8527Y23766D01* X8551Y23777D01* X8577Y23786D01* X8585Y23790D01* X8592Y23794D01* X8599Y23800D01* X8604Y23807D01* X8608Y23815D01* X8611Y23823D01* X8612Y23832D01* X8612Y23840D01* X8610Y23849D01* X8607Y23857D01* X8602Y23864D01* X8596Y23871D01* X8589Y23876D01* X8582Y23880D01* X8573Y23883D01* X8565Y23884D01* X8556Y23884D01* X8548Y23882D01* X8513Y23870D01* X8485Y23857D01* Y25133D01* X8500Y25127D01* X8534Y25115D01* X8543Y25113D01* X8552Y25113D01* X8560Y25115D01* X8568Y25117D01* X8576Y25122D01* X8583Y25127D01* X8589Y25134D01* X8593Y25141D01* X8596Y25149D01* X8598Y25158D01* X8598Y25167D01* X8597Y25175D01* X8594Y25183D01* X8590Y25191D01* X8584Y25198D01* X8577Y25204D01* X8570Y25208D01* X8562Y25211D01* X8536Y25220D01* X8511Y25231D01* X8488Y25244D01* X8485Y25246D01* Y25754D01* X8507Y25766D01* X8531Y25777D01* X8557Y25786D01* X8565Y25790D01* X8572Y25794D01* X8579Y25800D01* X8584Y25807D01* X8588Y25815D01* X8591Y25823D01* X8592Y25832D01* X8592Y25840D01* X8590Y25849D01* X8587Y25857D01* X8582Y25864D01* X8576Y25871D01* X8569Y25876D01* X8562Y25880D01* X8553Y25883D01* X8545Y25884D01* X8536Y25884D01* X8528Y25882D01* X8493Y25870D01* X8485Y25866D01* Y27125D01* X8514Y27115D01* X8523Y27113D01* X8532Y27113D01* X8540Y27115D01* X8548Y27117D01* X8556Y27122D01* X8563Y27127D01* X8569Y27134D01* X8573Y27141D01* X8576Y27149D01* X8578Y27158D01* X8578Y27167D01* X8577Y27175D01* X8574Y27183D01* X8570Y27191D01* X8564Y27198D01* X8557Y27204D01* X8550Y27208D01* X8542Y27211D01* X8516Y27220D01* X8491Y27231D01* X8485Y27234D01* Y27765D01* X8487Y27766D01* X8511Y27777D01* X8537Y27786D01* X8545Y27790D01* X8552Y27794D01* X8559Y27800D01* X8564Y27807D01* X8568Y27815D01* X8571Y27823D01* X8572Y27832D01* X8572Y27840D01* X8570Y27849D01* X8567Y27857D01* X8562Y27864D01* X8556Y27871D01* X8549Y27876D01* X8542Y27880D01* X8533Y27883D01* X8525Y27884D01* X8516Y27884D01* X8508Y27882D01* X8485Y27874D01* Y29118D01* X8494Y29115D01* X8503Y29113D01* X8512Y29113D01* X8520Y29115D01* X8528Y29117D01* X8536Y29122D01* X8543Y29127D01* X8549Y29134D01* X8553Y29141D01* X8556Y29149D01* X8558Y29158D01* X8558Y29167D01* X8557Y29175D01* X8554Y29183D01* X8550Y29191D01* X8544Y29198D01* X8537Y29204D01* X8530Y29208D01* X8522Y29211D01* X8496Y29220D01* X8485Y29225D01* Y29775D01* X8491Y29777D01* X8517Y29786D01* X8525Y29790D01* X8532Y29794D01* X8539Y29800D01* X8544Y29807D01* X8548Y29815D01* X8551Y29823D01* X8552Y29832D01* X8552Y29840D01* X8550Y29849D01* X8547Y29857D01* X8542Y29864D01* X8536Y29871D01* X8529Y29876D01* X8522Y29880D01* X8513Y29883D01* X8505Y29884D01* X8496Y29884D01* X8488Y29882D01* X8485Y29881D01* Y31113D01* X8492Y31113D01* X8500Y31115D01* X8508Y31117D01* X8516Y31122D01* X8523Y31127D01* X8529Y31134D01* X8533Y31141D01* X8536Y31149D01* X8538Y31158D01* X8538Y31167D01* X8537Y31175D01* X8534Y31183D01* X8530Y31191D01* X8524Y31198D01* X8517Y31204D01* X8510Y31208D01* X8502Y31211D01* X8485Y31217D01* Y31782D01* X8497Y31786D01* X8505Y31790D01* X8512Y31794D01* X8519Y31800D01* X8524Y31807D01* X8528Y31815D01* X8531Y31823D01* X8532Y31832D01* X8532Y31840D01* X8530Y31849D01* X8527Y31857D01* X8522Y31864D01* X8516Y31871D01* X8509Y31876D01* X8502Y31880D01* X8493Y31883D01* X8485Y31884D01* Y33116D01* X8488Y33117D01* X8496Y33122D01* X8503Y33127D01* X8509Y33134D01* X8513Y33141D01* X8516Y33149D01* X8518Y33158D01* X8518Y33167D01* X8517Y33175D01* X8514Y33183D01* X8510Y33191D01* X8504Y33198D01* X8497Y33204D01* X8490Y33208D01* X8485Y33210D01* Y33790D01* X8492Y33794D01* X8499Y33800D01* X8504Y33807D01* X8508Y33815D01* X8511Y33823D01* X8512Y33832D01* X8512Y33840D01* X8510Y33849D01* X8507Y33857D01* X8502Y33864D01* X8496Y33871D01* X8489Y33876D01* X8485Y33878D01* Y35130D01* X8489Y35134D01* X8493Y35141D01* X8496Y35149D01* X8498Y35158D01* X8498Y35167D01* X8497Y35175D01* X8494Y35183D01* X8490Y35191D01* X8485Y35197D01* Y35809D01* X8488Y35815D01* X8491Y35823D01* X8492Y35832D01* X8492Y35840D01* X8490Y35849D01* X8487Y35857D01* X8485Y35859D01* Y40000D01* G37* G36* X8665Y0D02*X8485D01* Y3374D01* X8494Y3349D01* X8509Y3316D01* X8527Y3284D01* X8548Y3255D01* X8572Y3227D01* X8597Y3202D01* X8625Y3179D01* X8655Y3159D01* X8665Y3153D01* Y1834D01* X8640Y1816D01* X8612Y1793D01* X8587Y1767D01* X8564Y1739D01* X8544Y1709D01* X8526Y1677D01* X8512Y1644D01* X8500Y1610D01* X8498Y1601D01* X8498Y1593D01* X8499Y1584D01* X8502Y1576D01* X8507Y1568D01* X8512Y1561D01* X8519Y1556D01* X8526Y1551D01* X8534Y1548D01* X8543Y1546D01* X8552Y1546D01* X8560Y1547D01* X8568Y1550D01* X8576Y1555D01* X8583Y1560D01* X8589Y1567D01* X8593Y1574D01* X8596Y1582D01* X8605Y1608D01* X8616Y1633D01* X8629Y1657D01* X8644Y1679D01* X8661Y1700D01* X8665Y1704D01* Y1295D01* X8665Y1295D01* X8647Y1316D01* X8632Y1338D01* X8618Y1362D01* X8607Y1386D01* X8598Y1412D01* X8594Y1420D01* X8590Y1427D01* X8584Y1434D01* X8577Y1439D01* X8569Y1443D01* X8561Y1446D01* X8552Y1447D01* X8544Y1447D01* X8535Y1445D01* X8527Y1442D01* X8520Y1437D01* X8513Y1431D01* X8508Y1424D01* X8504Y1417D01* X8501Y1409D01* X8500Y1400D01* X8500Y1391D01* X8502Y1383D01* X8514Y1349D01* X8529Y1316D01* X8547Y1284D01* X8568Y1255D01* X8592Y1227D01* X8617Y1202D01* X8645Y1179D01* X8665Y1166D01* Y0D01* G37* G36* Y3276D02*X8664Y3276D01* X8645Y3295D01* X8627Y3316D01* X8612Y3338D01* X8598Y3362D01* X8587Y3386D01* X8578Y3412D01* X8574Y3420D01* X8570Y3427D01* X8564Y3434D01* X8557Y3439D01* X8549Y3443D01* X8541Y3446D01* X8532Y3447D01* X8524Y3447D01* X8515Y3445D01* X8507Y3442D01* X8500Y3437D01* X8493Y3431D01* X8488Y3424D01* X8485Y3419D01* Y3571D01* X8487Y3568D01* X8492Y3561D01* X8499Y3556D01* X8506Y3551D01* X8514Y3548D01* X8523Y3546D01* X8532Y3546D01* X8540Y3547D01* X8548Y3550D01* X8556Y3555D01* X8563Y3560D01* X8569Y3567D01* X8573Y3574D01* X8576Y3582D01* X8585Y3608D01* X8596Y3633D01* X8609Y3657D01* X8624Y3679D01* X8641Y3700D01* X8660Y3719D01* X8665Y3723D01* Y3276D01* G37* G36* Y3846D02*X8649Y3837D01* X8620Y3816D01* X8592Y3793D01* X8567Y3767D01* X8544Y3739D01* X8524Y3709D01* X8506Y3677D01* X8492Y3644D01* X8485Y3625D01* Y5325D01* X8489Y5316D01* X8507Y5284D01* X8528Y5255D01* X8552Y5227D01* X8577Y5202D01* X8605Y5179D01* X8635Y5159D01* X8665Y5142D01* Y3846D01* G37* G36* Y5259D02*X8665Y5259D01* X8644Y5276D01* X8625Y5295D01* X8607Y5316D01* X8592Y5338D01* X8578Y5362D01* X8567Y5386D01* X8558Y5412D01* X8554Y5420D01* X8550Y5427D01* X8544Y5434D01* X8537Y5439D01* X8529Y5443D01* X8521Y5446D01* X8512Y5447D01* X8504Y5447D01* X8495Y5445D01* X8487Y5442D01* X8485Y5441D01* Y5552D01* X8486Y5551D01* X8494Y5548D01* X8503Y5546D01* X8512Y5546D01* X8520Y5547D01* X8528Y5550D01* X8536Y5555D01* X8543Y5560D01* X8549Y5567D01* X8553Y5574D01* X8556Y5582D01* X8565Y5608D01* X8576Y5633D01* X8589Y5657D01* X8604Y5679D01* X8621Y5700D01* X8640Y5719D01* X8661Y5737D01* X8665Y5740D01* Y5259D01* G37* G36* Y5857D02*X8661Y5855D01* X8629Y5837D01* X8600Y5816D01* X8572Y5793D01* X8547Y5767D01* X8524Y5739D01* X8504Y5709D01* X8486Y5677D01* X8485Y5675D01* Y7288D01* X8487Y7284D01* X8508Y7255D01* X8532Y7227D01* X8557Y7202D01* X8585Y7179D01* X8615Y7159D01* X8647Y7141D01* X8665Y7133D01* Y5857D01* G37* G36* Y7246D02*X8645Y7259D01* X8624Y7276D01* X8605Y7295D01* X8587Y7316D01* X8572Y7338D01* X8558Y7362D01* X8547Y7386D01* X8538Y7412D01* X8534Y7420D01* X8530Y7427D01* X8524Y7434D01* X8517Y7439D01* X8509Y7443D01* X8501Y7446D01* X8492Y7447D01* X8485Y7447D01* Y7546D01* X8492Y7546D01* X8500Y7547D01* X8508Y7550D01* X8516Y7555D01* X8523Y7560D01* X8529Y7567D01* X8533Y7574D01* X8536Y7582D01* X8545Y7608D01* X8556Y7633D01* X8569Y7657D01* X8584Y7679D01* X8601Y7700D01* X8620Y7719D01* X8641Y7737D01* X8663Y7752D01* X8665Y7754D01* Y7246D01* G37* G36* Y7866D02*X8641Y7855D01* X8609Y7837D01* X8580Y7816D01* X8552Y7793D01* X8527Y7767D01* X8504Y7739D01* X8485Y7711D01* Y9259D01* X8488Y9255D01* X8512Y9227D01* X8537Y9202D01* X8565Y9179D01* X8595Y9159D01* X8627Y9141D01* X8660Y9127D01* X8665Y9125D01* Y7866D01* G37* G36* Y9234D02*X8648Y9244D01* X8625Y9259D01* X8604Y9276D01* X8585Y9295D01* X8567Y9316D01* X8552Y9338D01* X8538Y9362D01* X8527Y9386D01* X8518Y9412D01* X8514Y9420D01* X8510Y9427D01* X8504Y9434D01* X8497Y9439D01* X8489Y9443D01* X8485Y9445D01* Y9549D01* X8488Y9550D01* X8496Y9555D01* X8503Y9560D01* X8509Y9567D01* X8513Y9574D01* X8516Y9582D01* X8525Y9608D01* X8536Y9633D01* X8549Y9657D01* X8564Y9679D01* X8581Y9700D01* X8600Y9719D01* X8621Y9737D01* X8643Y9752D01* X8665Y9765D01* Y9234D01* G37* G36* Y9874D02*X8653Y9870D01* X8621Y9855D01* X8589Y9837D01* X8560Y9816D01* X8532Y9793D01* X8507Y9767D01* X8485Y9740D01* Y11235D01* X8492Y11227D01* X8517Y11202D01* X8545Y11179D01* X8575Y11159D01* X8607Y11141D01* X8640Y11127D01* X8665Y11118D01* Y9874D01* G37* G36* Y11225D02*X8651Y11231D01* X8628Y11244D01* X8605Y11259D01* X8584Y11276D01* X8565Y11295D01* X8547Y11316D01* X8532Y11338D01* X8518Y11362D01* X8507Y11386D01* X8498Y11412D01* X8494Y11420D01* X8490Y11427D01* X8485Y11432D01* Y11563D01* X8489Y11567D01* X8493Y11574D01* X8496Y11582D01* X8505Y11608D01* X8516Y11633D01* X8529Y11657D01* X8544Y11679D01* X8561Y11700D01* X8580Y11719D01* X8601Y11737D01* X8623Y11752D01* X8647Y11766D01* X8665Y11775D01* Y11225D01* G37* G36* Y11881D02*X8633Y11870D01* X8601Y11855D01* X8569Y11837D01* X8540Y11816D01* X8512Y11793D01* X8487Y11767D01* X8485Y11765D01* Y13214D01* X8497Y13202D01* X8525Y13179D01* X8555Y13159D01* X8587Y13141D01* X8620Y13127D01* X8654Y13115D01* X8663Y13113D01* X8665D01* Y11881D01* G37* G36* Y13217D02*X8656Y13220D01* X8631Y13231D01* X8608Y13244D01* X8585Y13259D01* X8564Y13276D01* X8545Y13295D01* X8527Y13316D01* X8512Y13338D01* X8498Y13362D01* X8487Y13386D01* X8485Y13391D01* Y13609D01* X8496Y13633D01* X8509Y13657D01* X8524Y13679D01* X8541Y13700D01* X8560Y13719D01* X8581Y13737D01* X8603Y13752D01* X8627Y13766D01* X8651Y13777D01* X8665Y13782D01* Y13217D01* G37* G36* Y13884D02*X8665Y13884D01* X8656Y13884D01* X8648Y13882D01* X8613Y13870D01* X8581Y13855D01* X8549Y13837D01* X8520Y13816D01* X8492Y13793D01* X8485Y13785D01* Y15196D01* X8505Y15179D01* X8535Y15159D01* X8567Y15141D01* X8600Y15127D01* X8634Y15115D01* X8643Y15113D01* X8652Y15113D01* X8660Y15115D01* X8665Y15116D01* Y13884D01* G37* G36* Y15210D02*X8662Y15211D01* X8636Y15220D01* X8611Y15231D01* X8588Y15244D01* X8565Y15259D01* X8544Y15276D01* X8525Y15295D01* X8507Y15316D01* X8492Y15338D01* X8485Y15349D01* Y15650D01* X8489Y15657D01* X8504Y15679D01* X8521Y15700D01* X8540Y15719D01* X8561Y15737D01* X8583Y15752D01* X8607Y15766D01* X8631Y15777D01* X8657Y15786D01* X8665Y15790D01* X8665Y15790D01* Y15210D01* G37* G36* Y15878D02*X8662Y15880D01* X8653Y15883D01* X8645Y15884D01* X8636Y15884D01* X8628Y15882D01* X8593Y15870D01* X8561Y15855D01* X8529Y15837D01* X8500Y15816D01* X8485Y15804D01* Y17179D01* X8485Y17179D01* X8515Y17159D01* X8547Y17141D01* X8580Y17127D01* X8614Y17115D01* X8623Y17113D01* X8632Y17113D01* X8640Y17115D01* X8648Y17117D01* X8656Y17122D01* X8663Y17127D01* X8665Y17130D01* Y15878D01* G37* G36* Y17197D02*X8664Y17198D01* X8657Y17204D01* X8650Y17208D01* X8642Y17211D01* X8616Y17220D01* X8591Y17231D01* X8568Y17244D01* X8545Y17259D01* X8524Y17276D01* X8505Y17295D01* X8487Y17316D01* X8485Y17319D01* Y17680D01* X8501Y17700D01* X8520Y17719D01* X8541Y17737D01* X8563Y17752D01* X8587Y17766D01* X8611Y17777D01* X8637Y17786D01* X8645Y17790D01* X8652Y17794D01* X8659Y17800D01* X8664Y17807D01* X8665Y17809D01* Y17197D01* G37* G36* Y40000D02*X8924D01* Y35625D01* X8915Y35651D01* X8900Y35683D01* X8882Y35715D01* X8861Y35744D01* X8837Y35772D01* X8812Y35797D01* X8784Y35820D01* X8754Y35840D01* X8722Y35858D01* X8689Y35873D01* X8665Y35881D01* Y37126D01* X8676Y37129D01* X8708Y37144D01* X8740Y37162D01* X8769Y37183D01* X8797Y37207D01* X8822Y37232D01* X8845Y37260D01* X8865Y37290D01* X8883Y37322D01* X8897Y37355D01* X8909Y37389D01* X8911Y37398D01* X8911Y37407D01* X8910Y37415D01* X8907Y37423D01* X8902Y37431D01* X8897Y37438D01* X8890Y37444D01* X8883Y37448D01* X8875Y37451D01* X8866Y37453D01* X8857Y37453D01* X8849Y37452D01* X8841Y37449D01* X8833Y37445D01* X8826Y37439D01* X8820Y37433D01* X8816Y37425D01* X8813Y37417D01* X8804Y37391D01* X8793Y37366D01* X8780Y37343D01* X8765Y37320D01* X8748Y37299D01* X8729Y37280D01* X8708Y37262D01* X8686Y37247D01* X8665Y37235D01* Y37764D01* X8681Y37755D01* X8704Y37740D01* X8725Y37723D01* X8744Y37704D01* X8762Y37683D01* X8777Y37661D01* X8791Y37637D01* X8802Y37613D01* X8811Y37587D01* X8815Y37579D01* X8819Y37572D01* X8825Y37565D01* X8832Y37560D01* X8840Y37556D01* X8848Y37553D01* X8857Y37552D01* X8865Y37552D01* X8874Y37554D01* X8882Y37557D01* X8889Y37562D01* X8896Y37568D01* X8901Y37575D01* X8905Y37582D01* X8908Y37591D01* X8909Y37599D01* X8909Y37608D01* X8907Y37617D01* X8895Y37651D01* X8880Y37683D01* X8862Y37715D01* X8841Y37744D01* X8817Y37772D01* X8792Y37797D01* X8764Y37820D01* X8734Y37840D01* X8702Y37858D01* X8669Y37873D01* X8665Y37874D01* Y39134D01* X8688Y39144D01* X8720Y39162D01* X8749Y39183D01* X8777Y39207D01* X8802Y39232D01* X8825Y39260D01* X8845Y39290D01* X8863Y39322D01* X8877Y39355D01* X8889Y39389D01* X8891Y39398D01* X8891Y39407D01* X8890Y39415D01* X8887Y39423D01* X8882Y39431D01* X8877Y39438D01* X8870Y39444D01* X8863Y39448D01* X8855Y39451D01* X8846Y39453D01* X8837Y39453D01* X8829Y39452D01* X8821Y39449D01* X8813Y39445D01* X8806Y39439D01* X8800Y39433D01* X8796Y39425D01* X8793Y39417D01* X8784Y39391D01* X8773Y39366D01* X8760Y39343D01* X8745Y39320D01* X8728Y39299D01* X8709Y39280D01* X8688Y39262D01* X8666Y39247D01* X8665Y39246D01* Y39753D01* X8684Y39740D01* X8705Y39723D01* X8724Y39704D01* X8742Y39683D01* X8757Y39661D01* X8771Y39637D01* X8782Y39613D01* X8791Y39587D01* X8795Y39579D01* X8799Y39572D01* X8805Y39565D01* X8812Y39560D01* X8820Y39556D01* X8828Y39553D01* X8837Y39552D01* X8845Y39552D01* X8854Y39554D01* X8862Y39557D01* X8869Y39562D01* X8876Y39568D01* X8881Y39575D01* X8885Y39582D01* X8888Y39591D01* X8889Y39599D01* X8889Y39608D01* X8887Y39617D01* X8875Y39651D01* X8860Y39683D01* X8842Y39715D01* X8821Y39744D01* X8797Y39772D01* X8772Y39797D01* X8744Y39820D01* X8714Y39840D01* X8682Y39858D01* X8665Y39865D01* Y40000D01* G37* G36* Y35774D02*X8678Y35768D01* X8701Y35755D01* X8724Y35740D01* X8745Y35723D01* X8764Y35704D01* X8782Y35683D01* X8797Y35661D01* X8811Y35637D01* X8822Y35613D01* X8831Y35587D01* X8835Y35579D01* X8839Y35572D01* X8845Y35565D01* X8852Y35560D01* X8860Y35556D01* X8868Y35553D01* X8877Y35552D01* X8885Y35552D01* X8894Y35554D01* X8902Y35557D01* X8909Y35562D01* X8916Y35568D01* X8921Y35575D01* X8924Y35580D01* Y35428D01* X8922Y35431D01* X8917Y35438D01* X8910Y35444D01* X8903Y35448D01* X8895Y35451D01* X8886Y35453D01* X8877Y35453D01* X8869Y35452D01* X8861Y35449D01* X8853Y35445D01* X8846Y35439D01* X8840Y35433D01* X8836Y35425D01* X8833Y35417D01* X8824Y35391D01* X8813Y35366D01* X8800Y35343D01* X8785Y35320D01* X8768Y35299D01* X8749Y35280D01* X8728Y35262D01* X8706Y35247D01* X8682Y35233D01* X8665Y35225D01* Y35774D01* G37* G36* Y35118D02*X8696Y35129D01* X8728Y35144D01* X8760Y35162D01* X8789Y35183D01* X8817Y35207D01* X8842Y35232D01* X8865Y35260D01* X8885Y35290D01* X8903Y35322D01* X8917Y35355D01* X8924Y35374D01* Y33674D01* X8920Y33683D01* X8902Y33715D01* X8881Y33744D01* X8857Y33772D01* X8832Y33797D01* X8804Y33820D01* X8774Y33840D01* X8742Y33858D01* X8709Y33873D01* X8675Y33884D01* X8666Y33886D01* X8665D01* Y35118D01* G37* G36* Y33782D02*X8673Y33779D01* X8698Y33768D01* X8721Y33755D01* X8744Y33740D01* X8765Y33723D01* X8784Y33704D01* X8802Y33683D01* X8817Y33661D01* X8831Y33637D01* X8842Y33613D01* X8851Y33587D01* X8855Y33579D01* X8859Y33572D01* X8865Y33565D01* X8872Y33560D01* X8880Y33556D01* X8888Y33553D01* X8897Y33552D01* X8905Y33552D01* X8914Y33554D01* X8922Y33557D01* X8924Y33559D01* Y33447D01* X8923Y33448D01* X8915Y33451D01* X8906Y33453D01* X8897Y33453D01* X8889Y33452D01* X8881Y33449D01* X8873Y33445D01* X8866Y33439D01* X8860Y33433D01* X8856Y33425D01* X8853Y33417D01* X8844Y33391D01* X8833Y33366D01* X8820Y33343D01* X8805Y33320D01* X8788Y33299D01* X8769Y33280D01* X8748Y33262D01* X8726Y33247D01* X8702Y33233D01* X8678Y33222D01* X8665Y33217D01* Y33782D01* G37* G36* Y33115D02*X8673Y33115D01* X8681Y33117D01* X8716Y33129D01* X8748Y33144D01* X8780Y33162D01* X8809Y33183D01* X8837Y33207D01* X8862Y33232D01* X8885Y33260D01* X8905Y33290D01* X8923Y33322D01* X8924Y33324D01* Y31711D01* X8922Y31715D01* X8901Y31744D01* X8877Y31772D01* X8852Y31797D01* X8824Y31820D01* X8794Y31840D01* X8762Y31858D01* X8729Y31873D01* X8695Y31884D01* X8686Y31886D01* X8677Y31886D01* X8669Y31885D01* X8665Y31883D01* Y33115D01* G37* G36* Y31789D02*X8667Y31788D01* X8693Y31779D01* X8718Y31768D01* X8741Y31755D01* X8764Y31740D01* X8785Y31723D01* X8804Y31704D01* X8822Y31683D01* X8837Y31661D01* X8851Y31637D01* X8862Y31613D01* X8871Y31587D01* X8875Y31579D01* X8879Y31572D01* X8885Y31565D01* X8892Y31560D01* X8900Y31556D01* X8908Y31553D01* X8917Y31552D01* X8924Y31552D01* Y31453D01* X8917Y31453D01* X8909Y31452D01* X8901Y31449D01* X8893Y31445D01* X8886Y31439D01* X8880Y31433D01* X8876Y31425D01* X8873Y31417D01* X8864Y31391D01* X8853Y31366D01* X8840Y31343D01* X8825Y31320D01* X8808Y31299D01* X8789Y31280D01* X8768Y31262D01* X8746Y31247D01* X8722Y31233D01* X8698Y31222D01* X8672Y31213D01* X8665Y31210D01* Y31789D01* G37* G36* Y31120D02*X8667Y31119D01* X8676Y31116D01* X8684Y31115D01* X8693Y31115D01* X8701Y31117D01* X8736Y31129D01* X8768Y31144D01* X8800Y31162D01* X8829Y31183D01* X8857Y31207D01* X8882Y31232D01* X8905Y31260D01* X8924Y31288D01* Y29740D01* X8921Y29744D01* X8897Y29772D01* X8872Y29797D01* X8844Y29820D01* X8814Y29840D01* X8782Y29858D01* X8749Y29873D01* X8715Y29884D01* X8706Y29886D01* X8697Y29886D01* X8689Y29885D01* X8681Y29882D01* X8673Y29878D01* X8666Y29872D01* X8665Y29871D01* Y31120D01* G37* G36* Y29801D02*X8672Y29796D01* X8679Y29791D01* X8687Y29788D01* X8713Y29779D01* X8738Y29768D01* X8761Y29755D01* X8784Y29740D01* X8805Y29723D01* X8824Y29704D01* X8842Y29683D01* X8857Y29661D01* X8871Y29637D01* X8882Y29613D01* X8891Y29587D01* X8895Y29579D01* X8899Y29572D01* X8905Y29565D01* X8912Y29560D01* X8920Y29556D01* X8924Y29555D01* Y29450D01* X8921Y29449D01* X8913Y29445D01* X8906Y29439D01* X8900Y29433D01* X8896Y29425D01* X8893Y29417D01* X8884Y29391D01* X8873Y29366D01* X8860Y29343D01* X8845Y29320D01* X8828Y29299D01* X8809Y29280D01* X8788Y29262D01* X8766Y29247D01* X8742Y29233D01* X8718Y29222D01* X8692Y29213D01* X8684Y29209D01* X8677Y29205D01* X8670Y29199D01* X8665Y29192D01* Y29801D01* G37* G36* Y29138D02*X8667Y29135D01* X8673Y29128D01* X8680Y29123D01* X8687Y29119D01* X8696Y29116D01* X8704Y29115D01* X8713Y29115D01* X8721Y29117D01* X8756Y29129D01* X8788Y29144D01* X8820Y29162D01* X8849Y29183D01* X8877Y29207D01* X8902Y29232D01* X8924Y29259D01* Y27764D01* X8917Y27772D01* X8892Y27797D01* X8864Y27820D01* X8834Y27840D01* X8802Y27858D01* X8769Y27873D01* X8735Y27884D01* X8726Y27886D01* X8717Y27886D01* X8709Y27885D01* X8701Y27882D01* X8693Y27878D01* X8686Y27872D01* X8680Y27865D01* X8676Y27858D01* X8673Y27850D01* X8671Y27841D01* X8671Y27833D01* X8672Y27824D01* X8675Y27816D01* X8679Y27808D01* X8685Y27801D01* X8692Y27796D01* X8699Y27791D01* X8707Y27788D01* X8733Y27779D01* X8758Y27768D01* X8781Y27755D01* X8804Y27740D01* X8825Y27723D01* X8844Y27704D01* X8862Y27683D01* X8877Y27661D01* X8891Y27637D01* X8902Y27613D01* X8911Y27587D01* X8915Y27579D01* X8919Y27572D01* X8924Y27567D01* Y27437D01* X8920Y27433D01* X8916Y27425D01* X8913Y27417D01* X8904Y27391D01* X8893Y27366D01* X8880Y27343D01* X8865Y27320D01* X8848Y27299D01* X8829Y27280D01* X8808Y27262D01* X8786Y27247D01* X8762Y27233D01* X8738Y27222D01* X8712Y27213D01* X8704Y27209D01* X8697Y27205D01* X8690Y27199D01* X8685Y27192D01* X8681Y27184D01* X8678Y27176D01* X8677Y27167D01* X8677Y27159D01* X8679Y27150D01* X8682Y27142D01* X8687Y27135D01* X8693Y27128D01* X8700Y27123D01* X8707Y27119D01* X8716Y27116D01* X8724Y27115D01* X8733Y27115D01* X8741Y27117D01* X8776Y27129D01* X8808Y27144D01* X8840Y27162D01* X8869Y27183D01* X8897Y27207D01* X8922Y27232D01* X8924Y27235D01* Y25785D01* X8912Y25797D01* X8884Y25820D01* X8854Y25840D01* X8822Y25858D01* X8789Y25873D01* X8755Y25884D01* X8746Y25886D01* X8737Y25886D01* X8729Y25885D01* X8721Y25882D01* X8713Y25878D01* X8706Y25872D01* X8700Y25865D01* X8696Y25858D01* X8693Y25850D01* X8691Y25841D01* X8691Y25833D01* X8692Y25824D01* X8695Y25816D01* X8699Y25808D01* X8705Y25801D01* X8712Y25796D01* X8719Y25791D01* X8727Y25788D01* X8753Y25779D01* X8778Y25768D01* X8801Y25755D01* X8824Y25740D01* X8845Y25723D01* X8864Y25704D01* X8882Y25683D01* X8897Y25661D01* X8911Y25637D01* X8922Y25613D01* X8924Y25608D01* Y25391D01* X8913Y25366D01* X8900Y25343D01* X8885Y25320D01* X8868Y25299D01* X8849Y25280D01* X8828Y25262D01* X8806Y25247D01* X8782Y25233D01* X8758Y25222D01* X8732Y25213D01* X8724Y25209D01* X8717Y25205D01* X8710Y25199D01* X8705Y25192D01* X8701Y25184D01* X8698Y25176D01* X8697Y25167D01* X8697Y25159D01* X8699Y25150D01* X8702Y25142D01* X8707Y25135D01* X8713Y25128D01* X8720Y25123D01* X8727Y25119D01* X8736Y25116D01* X8744Y25115D01* X8753Y25115D01* X8761Y25117D01* X8796Y25129D01* X8828Y25144D01* X8860Y25162D01* X8889Y25183D01* X8917Y25207D01* X8924Y25214D01* Y23804D01* X8904Y23820D01* X8874Y23840D01* X8842Y23858D01* X8809Y23873D01* X8775Y23884D01* X8766Y23886D01* X8757Y23886D01* X8749Y23885D01* X8741Y23882D01* X8733Y23878D01* X8726Y23872D01* X8720Y23865D01* X8716Y23858D01* X8713Y23850D01* X8711Y23841D01* X8711Y23833D01* X8712Y23824D01* X8715Y23816D01* X8719Y23808D01* X8725Y23801D01* X8732Y23796D01* X8739Y23791D01* X8747Y23788D01* X8773Y23779D01* X8798Y23768D01* X8821Y23755D01* X8844Y23740D01* X8865Y23723D01* X8884Y23704D01* X8902Y23683D01* X8917Y23661D01* X8924Y23650D01* Y23350D01* X8920Y23343D01* X8905Y23320D01* X8888Y23299D01* X8869Y23280D01* X8848Y23262D01* X8826Y23247D01* X8802Y23233D01* X8778Y23222D01* X8752Y23213D01* X8744Y23209D01* X8737Y23205D01* X8730Y23199D01* X8725Y23192D01* X8721Y23184D01* X8718Y23176D01* X8717Y23167D01* X8717Y23159D01* X8719Y23150D01* X8722Y23142D01* X8727Y23135D01* X8733Y23128D01* X8740Y23123D01* X8747Y23119D01* X8756Y23116D01* X8764Y23115D01* X8773Y23115D01* X8781Y23117D01* X8816Y23129D01* X8848Y23144D01* X8880Y23162D01* X8909Y23183D01* X8924Y23196D01* Y21820D01* X8924Y21820D01* X8894Y21840D01* X8862Y21858D01* X8829Y21873D01* X8795Y21884D01* X8786Y21886D01* X8777Y21886D01* X8769Y21885D01* X8761Y21882D01* X8753Y21878D01* X8746Y21872D01* X8740Y21865D01* X8736Y21858D01* X8733Y21850D01* X8731Y21841D01* X8731Y21833D01* X8732Y21824D01* X8735Y21816D01* X8739Y21808D01* X8745Y21801D01* X8752Y21796D01* X8759Y21791D01* X8767Y21788D01* X8793Y21779D01* X8818Y21768D01* X8841Y21755D01* X8864Y21740D01* X8885Y21723D01* X8904Y21704D01* X8922Y21683D01* X8924Y21680D01* Y21319D01* X8908Y21299D01* X8889Y21280D01* X8868Y21262D01* X8846Y21247D01* X8822Y21233D01* X8798Y21222D01* X8772Y21213D01* X8764Y21209D01* X8757Y21205D01* X8750Y21199D01* X8745Y21192D01* X8741Y21184D01* X8738Y21176D01* X8737Y21167D01* X8737Y21159D01* X8739Y21150D01* X8742Y21142D01* X8747Y21135D01* X8753Y21128D01* X8760Y21123D01* X8767Y21119D01* X8776Y21116D01* X8784Y21115D01* X8793Y21115D01* X8801Y21117D01* X8836Y21129D01* X8868Y21144D01* X8900Y21162D01* X8924Y21180D01* Y19834D01* X8914Y19840D01* X8882Y19858D01* X8849Y19873D01* X8815Y19884D01* X8806Y19886D01* X8797Y19886D01* X8789Y19885D01* X8781Y19882D01* X8773Y19878D01* X8766Y19872D01* X8760Y19865D01* X8756Y19858D01* X8753Y19850D01* X8751Y19841D01* X8751Y19833D01* X8752Y19824D01* X8755Y19816D01* X8759Y19808D01* X8765Y19801D01* X8772Y19796D01* X8779Y19791D01* X8787Y19788D01* X8813Y19779D01* X8838Y19768D01* X8861Y19755D01* X8884Y19740D01* X8905Y19723D01* X8924Y19704D01* Y19295D01* X8909Y19280D01* X8888Y19262D01* X8866Y19247D01* X8842Y19233D01* X8818Y19222D01* X8792Y19213D01* X8784Y19209D01* X8777Y19205D01* X8770Y19199D01* X8765Y19192D01* X8761Y19184D01* X8758Y19176D01* X8757Y19167D01* X8757Y19159D01* X8759Y19150D01* X8762Y19142D01* X8767Y19135D01* X8773Y19128D01* X8780Y19123D01* X8787Y19119D01* X8796Y19116D01* X8804Y19115D01* X8813Y19115D01* X8821Y19117D01* X8856Y19129D01* X8888Y19144D01* X8920Y19162D01* X8924Y19165D01* Y17846D01* X8902Y17858D01* X8869Y17873D01* X8835Y17884D01* X8826Y17886D01* X8817Y17886D01* X8809Y17885D01* X8801Y17882D01* X8793Y17878D01* X8786Y17872D01* X8780Y17865D01* X8776Y17858D01* X8773Y17850D01* X8771Y17841D01* X8771Y17833D01* X8772Y17824D01* X8775Y17816D01* X8779Y17808D01* X8785Y17801D01* X8792Y17796D01* X8799Y17791D01* X8807Y17788D01* X8833Y17779D01* X8858Y17768D01* X8881Y17755D01* X8904Y17740D01* X8924Y17724D01* Y17276D01* X8908Y17262D01* X8886Y17247D01* X8862Y17233D01* X8838Y17222D01* X8812Y17213D01* X8804Y17209D01* X8797Y17205D01* X8790Y17199D01* X8785Y17192D01* X8781Y17184D01* X8778Y17176D01* X8777Y17167D01* X8777Y17159D01* X8779Y17150D01* X8782Y17142D01* X8787Y17135D01* X8793Y17128D01* X8800Y17123D01* X8807Y17119D01* X8816Y17116D01* X8824Y17115D01* X8833Y17115D01* X8841Y17117D01* X8876Y17129D01* X8908Y17144D01* X8924Y17153D01* Y15857D01* X8922Y15858D01* X8889Y15873D01* X8855Y15884D01* X8846Y15886D01* X8837Y15886D01* X8829Y15885D01* X8821Y15882D01* X8813Y15878D01* X8806Y15872D01* X8800Y15865D01* X8796Y15858D01* X8793Y15850D01* X8791Y15841D01* X8791Y15833D01* X8792Y15824D01* X8795Y15816D01* X8799Y15808D01* X8805Y15801D01* X8812Y15796D01* X8819Y15791D01* X8827Y15788D01* X8853Y15779D01* X8878Y15768D01* X8901Y15755D01* X8924Y15740D01* Y15259D01* X8906Y15247D01* X8882Y15233D01* X8858Y15222D01* X8832Y15213D01* X8824Y15209D01* X8817Y15205D01* X8810Y15199D01* X8805Y15192D01* X8801Y15184D01* X8798Y15176D01* X8797Y15167D01* X8797Y15159D01* X8799Y15150D01* X8802Y15142D01* X8807Y15135D01* X8813Y15128D01* X8820Y15123D01* X8827Y15119D01* X8836Y15116D01* X8844Y15115D01* X8853Y15115D01* X8861Y15117D01* X8896Y15129D01* X8924Y15142D01* Y13866D01* X8909Y13873D01* X8875Y13884D01* X8866Y13886D01* X8857Y13886D01* X8849Y13885D01* X8841Y13882D01* X8833Y13878D01* X8826Y13872D01* X8820Y13865D01* X8816Y13858D01* X8813Y13850D01* X8811Y13841D01* X8811Y13833D01* X8812Y13824D01* X8815Y13816D01* X8819Y13808D01* X8825Y13801D01* X8832Y13796D01* X8839Y13791D01* X8847Y13788D01* X8873Y13779D01* X8898Y13768D01* X8921Y13755D01* X8924Y13754D01* Y13246D01* X8902Y13233D01* X8878Y13222D01* X8852Y13213D01* X8844Y13209D01* X8837Y13205D01* X8830Y13199D01* X8825Y13192D01* X8821Y13184D01* X8818Y13176D01* X8817Y13167D01* X8817Y13159D01* X8819Y13150D01* X8822Y13142D01* X8827Y13135D01* X8833Y13128D01* X8840Y13123D01* X8847Y13119D01* X8856Y13116D01* X8864Y13115D01* X8873Y13115D01* X8881Y13117D01* X8916Y13129D01* X8924Y13133D01* Y11874D01* X8895Y11884D01* X8886Y11886D01* X8877Y11886D01* X8869Y11885D01* X8861Y11882D01* X8853Y11878D01* X8846Y11872D01* X8840Y11865D01* X8836Y11858D01* X8833Y11850D01* X8831Y11841D01* X8831Y11833D01* X8832Y11824D01* X8835Y11816D01* X8839Y11808D01* X8845Y11801D01* X8852Y11796D01* X8859Y11791D01* X8867Y11788D01* X8893Y11779D01* X8918Y11768D01* X8924Y11765D01* Y11234D01* X8922Y11233D01* X8898Y11222D01* X8872Y11213D01* X8864Y11209D01* X8857Y11205D01* X8850Y11199D01* X8845Y11192D01* X8841Y11184D01* X8838Y11176D01* X8837Y11167D01* X8837Y11159D01* X8839Y11150D01* X8842Y11142D01* X8847Y11135D01* X8853Y11128D01* X8860Y11123D01* X8867Y11119D01* X8876Y11116D01* X8884Y11115D01* X8893Y11115D01* X8901Y11117D01* X8924Y11125D01* Y9881D01* X8915Y9884D01* X8906Y9886D01* X8897Y9886D01* X8889Y9885D01* X8881Y9882D01* X8873Y9878D01* X8866Y9872D01* X8860Y9865D01* X8856Y9858D01* X8853Y9850D01* X8851Y9841D01* X8851Y9833D01* X8852Y9824D01* X8855Y9816D01* X8859Y9808D01* X8865Y9801D01* X8872Y9796D01* X8879Y9791D01* X8887Y9788D01* X8913Y9779D01* X8924Y9774D01* Y9225D01* X8918Y9222D01* X8892Y9213D01* X8884Y9209D01* X8877Y9205D01* X8870Y9199D01* X8865Y9192D01* X8861Y9184D01* X8858Y9176D01* X8857Y9167D01* X8857Y9159D01* X8859Y9150D01* X8862Y9142D01* X8867Y9135D01* X8873Y9128D01* X8880Y9123D01* X8887Y9119D01* X8896Y9116D01* X8904Y9115D01* X8913Y9115D01* X8921Y9117D01* X8924Y9118D01* Y7886D01* X8917Y7886D01* X8909Y7885D01* X8901Y7882D01* X8893Y7878D01* X8886Y7872D01* X8880Y7865D01* X8876Y7858D01* X8873Y7850D01* X8871Y7841D01* X8871Y7833D01* X8872Y7824D01* X8875Y7816D01* X8879Y7808D01* X8885Y7801D01* X8892Y7796D01* X8899Y7791D01* X8907Y7788D01* X8924Y7782D01* Y7217D01* X8912Y7213D01* X8904Y7209D01* X8897Y7205D01* X8890Y7199D01* X8885Y7192D01* X8881Y7184D01* X8878Y7176D01* X8877Y7167D01* X8877Y7159D01* X8879Y7150D01* X8882Y7142D01* X8887Y7135D01* X8893Y7128D01* X8900Y7123D01* X8907Y7119D01* X8916Y7116D01* X8924Y7115D01* Y5883D01* X8921Y5882D01* X8913Y5878D01* X8906Y5872D01* X8900Y5865D01* X8896Y5858D01* X8893Y5850D01* X8891Y5841D01* X8891Y5833D01* X8892Y5824D01* X8895Y5816D01* X8899Y5808D01* X8905Y5801D01* X8912Y5796D01* X8919Y5791D01* X8924Y5789D01* Y5209D01* X8917Y5205D01* X8910Y5199D01* X8905Y5192D01* X8901Y5184D01* X8898Y5176D01* X8897Y5167D01* X8897Y5159D01* X8899Y5150D01* X8902Y5142D01* X8907Y5135D01* X8913Y5128D01* X8920Y5123D01* X8924Y5121D01* Y3870D01* X8920Y3865D01* X8916Y3858D01* X8913Y3850D01* X8911Y3841D01* X8911Y3833D01* X8912Y3824D01* X8915Y3816D01* X8919Y3808D01* X8924Y3802D01* Y3190D01* X8921Y3184D01* X8918Y3176D01* X8917Y3167D01* X8917Y3159D01* X8919Y3150D01* X8922Y3142D01* X8924Y3140D01* Y0D01* X8665D01* Y1166D01* X8675Y1159D01* X8707Y1141D01* X8740Y1127D01* X8774Y1115D01* X8783Y1113D01* X8792Y1113D01* X8800Y1115D01* X8808Y1117D01* X8816Y1122D01* X8823Y1127D01* X8829Y1134D01* X8833Y1141D01* X8836Y1149D01* X8838Y1158D01* X8838Y1167D01* X8837Y1175D01* X8834Y1183D01* X8830Y1191D01* X8824Y1198D01* X8817Y1204D01* X8810Y1208D01* X8802Y1211D01* X8776Y1220D01* X8751Y1231D01* X8728Y1244D01* X8705Y1259D01* X8684Y1276D01* X8665Y1295D01* Y1704D01* X8680Y1719D01* X8701Y1737D01* X8723Y1752D01* X8747Y1766D01* X8771Y1777D01* X8797Y1786D01* X8805Y1790D01* X8812Y1794D01* X8819Y1800D01* X8824Y1807D01* X8828Y1815D01* X8831Y1823D01* X8832Y1832D01* X8832Y1840D01* X8830Y1849D01* X8827Y1857D01* X8822Y1864D01* X8816Y1871D01* X8809Y1876D01* X8802Y1880D01* X8793Y1883D01* X8785Y1884D01* X8776Y1884D01* X8768Y1882D01* X8733Y1870D01* X8701Y1855D01* X8669Y1837D01* X8665Y1834D01* Y3153D01* X8687Y3141D01* X8720Y3127D01* X8754Y3115D01* X8763Y3113D01* X8772Y3113D01* X8780Y3115D01* X8788Y3117D01* X8796Y3122D01* X8803Y3127D01* X8809Y3134D01* X8813Y3141D01* X8816Y3149D01* X8818Y3158D01* X8818Y3167D01* X8817Y3175D01* X8814Y3183D01* X8810Y3191D01* X8804Y3198D01* X8797Y3204D01* X8790Y3208D01* X8782Y3211D01* X8756Y3220D01* X8731Y3231D01* X8708Y3244D01* X8685Y3259D01* X8665Y3276D01* Y3723D01* X8681Y3737D01* X8703Y3752D01* X8727Y3766D01* X8751Y3777D01* X8777Y3786D01* X8785Y3790D01* X8792Y3794D01* X8799Y3800D01* X8804Y3807D01* X8808Y3815D01* X8811Y3823D01* X8812Y3832D01* X8812Y3840D01* X8810Y3849D01* X8807Y3857D01* X8802Y3864D01* X8796Y3871D01* X8789Y3876D01* X8782Y3880D01* X8773Y3883D01* X8765Y3884D01* X8756Y3884D01* X8748Y3882D01* X8713Y3870D01* X8681Y3855D01* X8665Y3846D01* Y5142D01* X8667Y5141D01* X8700Y5127D01* X8734Y5115D01* X8743Y5113D01* X8752Y5113D01* X8760Y5115D01* X8768Y5117D01* X8776Y5122D01* X8783Y5127D01* X8789Y5134D01* X8793Y5141D01* X8796Y5149D01* X8798Y5158D01* X8798Y5167D01* X8797Y5175D01* X8794Y5183D01* X8790Y5191D01* X8784Y5198D01* X8777Y5204D01* X8770Y5208D01* X8762Y5211D01* X8736Y5220D01* X8711Y5231D01* X8688Y5244D01* X8665Y5259D01* Y5740D01* X8683Y5752D01* X8707Y5766D01* X8731Y5777D01* X8757Y5786D01* X8765Y5790D01* X8772Y5794D01* X8779Y5800D01* X8784Y5807D01* X8788Y5815D01* X8791Y5823D01* X8792Y5832D01* X8792Y5840D01* X8790Y5849D01* X8787Y5857D01* X8782Y5864D01* X8776Y5871D01* X8769Y5876D01* X8762Y5880D01* X8753Y5883D01* X8745Y5884D01* X8736Y5884D01* X8728Y5882D01* X8693Y5870D01* X8665Y5857D01* Y7133D01* X8680Y7127D01* X8714Y7115D01* X8723Y7113D01* X8732Y7113D01* X8740Y7115D01* X8748Y7117D01* X8756Y7122D01* X8763Y7127D01* X8769Y7134D01* X8773Y7141D01* X8776Y7149D01* X8778Y7158D01* X8778Y7167D01* X8777Y7175D01* X8774Y7183D01* X8770Y7191D01* X8764Y7198D01* X8757Y7204D01* X8750Y7208D01* X8742Y7211D01* X8716Y7220D01* X8691Y7231D01* X8668Y7244D01* X8665Y7246D01* Y7754D01* X8687Y7766D01* X8711Y7777D01* X8737Y7786D01* X8745Y7790D01* X8752Y7794D01* X8759Y7800D01* X8764Y7807D01* X8768Y7815D01* X8771Y7823D01* X8772Y7832D01* X8772Y7840D01* X8770Y7849D01* X8767Y7857D01* X8762Y7864D01* X8756Y7871D01* X8749Y7876D01* X8742Y7880D01* X8733Y7883D01* X8725Y7884D01* X8716Y7884D01* X8708Y7882D01* X8673Y7870D01* X8665Y7866D01* Y9125D01* X8694Y9115D01* X8703Y9113D01* X8712Y9113D01* X8720Y9115D01* X8728Y9117D01* X8736Y9122D01* X8743Y9127D01* X8749Y9134D01* X8753Y9141D01* X8756Y9149D01* X8758Y9158D01* X8758Y9167D01* X8757Y9175D01* X8754Y9183D01* X8750Y9191D01* X8744Y9198D01* X8737Y9204D01* X8730Y9208D01* X8722Y9211D01* X8696Y9220D01* X8671Y9231D01* X8665Y9234D01* Y9765D01* X8667Y9766D01* X8691Y9777D01* X8717Y9786D01* X8725Y9790D01* X8732Y9794D01* X8739Y9800D01* X8744Y9807D01* X8748Y9815D01* X8751Y9823D01* X8752Y9832D01* X8752Y9840D01* X8750Y9849D01* X8747Y9857D01* X8742Y9864D01* X8736Y9871D01* X8729Y9876D01* X8722Y9880D01* X8713Y9883D01* X8705Y9884D01* X8696Y9884D01* X8688Y9882D01* X8665Y9874D01* Y11118D01* X8674Y11115D01* X8683Y11113D01* X8692Y11113D01* X8700Y11115D01* X8708Y11117D01* X8716Y11122D01* X8723Y11127D01* X8729Y11134D01* X8733Y11141D01* X8736Y11149D01* X8738Y11158D01* X8738Y11167D01* X8737Y11175D01* X8734Y11183D01* X8730Y11191D01* X8724Y11198D01* X8717Y11204D01* X8710Y11208D01* X8702Y11211D01* X8676Y11220D01* X8665Y11225D01* Y11775D01* X8671Y11777D01* X8697Y11786D01* X8705Y11790D01* X8712Y11794D01* X8719Y11800D01* X8724Y11807D01* X8728Y11815D01* X8731Y11823D01* X8732Y11832D01* X8732Y11840D01* X8730Y11849D01* X8727Y11857D01* X8722Y11864D01* X8716Y11871D01* X8709Y11876D01* X8702Y11880D01* X8693Y11883D01* X8685Y11884D01* X8676Y11884D01* X8668Y11882D01* X8665Y11881D01* Y13113D01* X8672Y13113D01* X8680Y13115D01* X8688Y13117D01* X8696Y13122D01* X8703Y13127D01* X8709Y13134D01* X8713Y13141D01* X8716Y13149D01* X8718Y13158D01* X8718Y13167D01* X8717Y13175D01* X8714Y13183D01* X8710Y13191D01* X8704Y13198D01* X8697Y13204D01* X8690Y13208D01* X8682Y13211D01* X8665Y13217D01* Y13782D01* X8677Y13786D01* X8685Y13790D01* X8692Y13794D01* X8699Y13800D01* X8704Y13807D01* X8708Y13815D01* X8711Y13823D01* X8712Y13832D01* X8712Y13840D01* X8710Y13849D01* X8707Y13857D01* X8702Y13864D01* X8696Y13871D01* X8689Y13876D01* X8682Y13880D01* X8673Y13883D01* X8665Y13884D01* Y15116D01* X8668Y15117D01* X8676Y15122D01* X8683Y15127D01* X8689Y15134D01* X8693Y15141D01* X8696Y15149D01* X8698Y15158D01* X8698Y15167D01* X8697Y15175D01* X8694Y15183D01* X8690Y15191D01* X8684Y15198D01* X8677Y15204D01* X8670Y15208D01* X8665Y15210D01* Y15790D01* X8672Y15794D01* X8679Y15800D01* X8684Y15807D01* X8688Y15815D01* X8691Y15823D01* X8692Y15832D01* X8692Y15840D01* X8690Y15849D01* X8687Y15857D01* X8682Y15864D01* X8676Y15871D01* X8669Y15876D01* X8665Y15878D01* Y17130D01* X8669Y17134D01* X8673Y17141D01* X8676Y17149D01* X8678Y17158D01* X8678Y17167D01* X8677Y17175D01* X8674Y17183D01* X8670Y17191D01* X8665Y17197D01* Y17809D01* X8668Y17815D01* X8671Y17823D01* X8672Y17832D01* X8672Y17840D01* X8670Y17849D01* X8667Y17857D01* X8665Y17859D01* Y29138D01* G37* G36* X8924Y40000D02*X9104D01* Y17625D01* X9095Y17651D01* X9080Y17683D01* X9062Y17715D01* X9041Y17744D01* X9017Y17772D01* X8992Y17797D01* X8964Y17820D01* X8934Y17840D01* X8924Y17846D01* Y19165D01* X8949Y19183D01* X8977Y19207D01* X9002Y19232D01* X9025Y19260D01* X9045Y19290D01* X9063Y19322D01* X9077Y19355D01* X9089Y19389D01* X9091Y19398D01* X9091Y19407D01* X9090Y19415D01* X9087Y19423D01* X9082Y19431D01* X9077Y19438D01* X9070Y19444D01* X9063Y19448D01* X9055Y19451D01* X9046Y19453D01* X9037Y19453D01* X9029Y19452D01* X9021Y19449D01* X9013Y19445D01* X9006Y19439D01* X9000Y19433D01* X8996Y19425D01* X8993Y19417D01* X8984Y19391D01* X8973Y19366D01* X8960Y19343D01* X8945Y19320D01* X8928Y19299D01* X8924Y19295D01* Y19704D01* X8924Y19704D01* X8942Y19683D01* X8957Y19661D01* X8971Y19637D01* X8982Y19613D01* X8991Y19587D01* X8995Y19579D01* X8999Y19572D01* X9005Y19565D01* X9012Y19560D01* X9020Y19556D01* X9028Y19553D01* X9037Y19552D01* X9045Y19552D01* X9054Y19554D01* X9062Y19557D01* X9069Y19562D01* X9076Y19568D01* X9081Y19575D01* X9085Y19582D01* X9088Y19591D01* X9089Y19599D01* X9089Y19608D01* X9087Y19617D01* X9075Y19651D01* X9060Y19683D01* X9042Y19715D01* X9021Y19744D01* X8997Y19772D01* X8972Y19797D01* X8944Y19820D01* X8924Y19834D01* Y21180D01* X8929Y21183D01* X8957Y21207D01* X8982Y21232D01* X9005Y21260D01* X9025Y21290D01* X9043Y21322D01* X9057Y21355D01* X9069Y21389D01* X9071Y21398D01* X9071Y21407D01* X9070Y21415D01* X9067Y21423D01* X9062Y21431D01* X9057Y21438D01* X9050Y21444D01* X9043Y21448D01* X9035Y21451D01* X9026Y21453D01* X9017Y21453D01* X9009Y21452D01* X9001Y21449D01* X8993Y21445D01* X8986Y21439D01* X8980Y21433D01* X8976Y21425D01* X8973Y21417D01* X8964Y21391D01* X8953Y21366D01* X8940Y21343D01* X8925Y21320D01* X8924Y21319D01* Y21680D01* X8937Y21661D01* X8951Y21637D01* X8962Y21613D01* X8971Y21587D01* X8975Y21579D01* X8979Y21572D01* X8985Y21565D01* X8992Y21560D01* X9000Y21556D01* X9008Y21553D01* X9017Y21552D01* X9025Y21552D01* X9034Y21554D01* X9042Y21557D01* X9049Y21562D01* X9056Y21568D01* X9061Y21575D01* X9065Y21582D01* X9068Y21591D01* X9069Y21599D01* X9069Y21608D01* X9067Y21617D01* X9055Y21651D01* X9040Y21683D01* X9022Y21715D01* X9001Y21744D01* X8977Y21772D01* X8952Y21797D01* X8924Y21820D01* Y23196D01* X8937Y23207D01* X8962Y23232D01* X8985Y23260D01* X9005Y23290D01* X9023Y23322D01* X9037Y23355D01* X9049Y23389D01* X9051Y23398D01* X9051Y23407D01* X9050Y23415D01* X9047Y23423D01* X9042Y23431D01* X9037Y23438D01* X9030Y23444D01* X9023Y23448D01* X9015Y23451D01* X9006Y23453D01* X8997Y23453D01* X8989Y23452D01* X8981Y23449D01* X8973Y23445D01* X8966Y23439D01* X8960Y23433D01* X8956Y23425D01* X8953Y23417D01* X8944Y23391D01* X8933Y23366D01* X8924Y23350D01* Y23650D01* X8931Y23637D01* X8942Y23613D01* X8951Y23587D01* X8955Y23579D01* X8959Y23572D01* X8965Y23565D01* X8972Y23560D01* X8980Y23556D01* X8988Y23553D01* X8997Y23552D01* X9005Y23552D01* X9014Y23554D01* X9022Y23557D01* X9029Y23562D01* X9036Y23568D01* X9041Y23575D01* X9045Y23582D01* X9048Y23591D01* X9049Y23599D01* X9049Y23608D01* X9047Y23617D01* X9035Y23651D01* X9020Y23683D01* X9002Y23715D01* X8981Y23744D01* X8957Y23772D01* X8932Y23797D01* X8924Y23804D01* Y25214D01* X8942Y25232D01* X8965Y25260D01* X8985Y25290D01* X9003Y25322D01* X9017Y25355D01* X9029Y25389D01* X9031Y25398D01* X9031Y25407D01* X9030Y25415D01* X9027Y25423D01* X9022Y25431D01* X9017Y25438D01* X9010Y25444D01* X9003Y25448D01* X8995Y25451D01* X8986Y25453D01* X8977Y25453D01* X8969Y25452D01* X8961Y25449D01* X8953Y25445D01* X8946Y25439D01* X8940Y25433D01* X8936Y25425D01* X8933Y25417D01* X8924Y25391D01* X8924Y25391D01* Y25608D01* X8931Y25587D01* X8935Y25579D01* X8939Y25572D01* X8945Y25565D01* X8952Y25560D01* X8960Y25556D01* X8968Y25553D01* X8977Y25552D01* X8985Y25552D01* X8994Y25554D01* X9002Y25557D01* X9009Y25562D01* X9016Y25568D01* X9021Y25575D01* X9025Y25582D01* X9028Y25591D01* X9029Y25599D01* X9029Y25608D01* X9027Y25617D01* X9015Y25651D01* X9000Y25683D01* X8982Y25715D01* X8961Y25744D01* X8937Y25772D01* X8924Y25785D01* Y27235D01* X8945Y27260D01* X8965Y27290D01* X8983Y27322D01* X8997Y27355D01* X9009Y27389D01* X9011Y27398D01* X9011Y27407D01* X9010Y27415D01* X9007Y27423D01* X9002Y27431D01* X8997Y27438D01* X8990Y27444D01* X8983Y27448D01* X8975Y27451D01* X8966Y27453D01* X8957Y27453D01* X8949Y27452D01* X8941Y27449D01* X8933Y27445D01* X8926Y27439D01* X8924Y27437D01* Y27567D01* X8925Y27565D01* X8932Y27560D01* X8940Y27556D01* X8948Y27553D01* X8957Y27552D01* X8965Y27552D01* X8974Y27554D01* X8982Y27557D01* X8989Y27562D01* X8996Y27568D01* X9001Y27575D01* X9005Y27582D01* X9008Y27591D01* X9009Y27599D01* X9009Y27608D01* X9007Y27617D01* X8995Y27651D01* X8980Y27683D01* X8962Y27715D01* X8941Y27744D01* X8924Y27764D01* Y29259D01* X8925Y29260D01* X8945Y29290D01* X8963Y29322D01* X8977Y29355D01* X8989Y29389D01* X8991Y29398D01* X8991Y29407D01* X8990Y29415D01* X8987Y29423D01* X8982Y29431D01* X8977Y29438D01* X8970Y29444D01* X8963Y29448D01* X8955Y29451D01* X8946Y29453D01* X8937Y29453D01* X8929Y29452D01* X8924Y29450D01* Y29555D01* X8928Y29553D01* X8937Y29552D01* X8945Y29552D01* X8954Y29554D01* X8962Y29557D01* X8969Y29562D01* X8976Y29568D01* X8981Y29575D01* X8985Y29582D01* X8988Y29591D01* X8989Y29599D01* X8989Y29608D01* X8987Y29617D01* X8975Y29651D01* X8960Y29683D01* X8942Y29715D01* X8924Y29740D01* Y31288D01* X8925Y31290D01* X8943Y31322D01* X8957Y31355D01* X8969Y31389D01* X8971Y31398D01* X8971Y31407D01* X8970Y31415D01* X8967Y31423D01* X8962Y31431D01* X8957Y31438D01* X8950Y31444D01* X8943Y31448D01* X8935Y31451D01* X8926Y31453D01* X8924D01* Y31552D01* X8925D01* X8934Y31554D01* X8942Y31557D01* X8949Y31562D01* X8956Y31568D01* X8961Y31575D01* X8965Y31582D01* X8968Y31591D01* X8969Y31599D01* X8969Y31608D01* X8967Y31617D01* X8955Y31651D01* X8940Y31683D01* X8924Y31711D01* Y33324D01* X8937Y33355D01* X8949Y33389D01* X8951Y33398D01* X8951Y33407D01* X8950Y33415D01* X8947Y33423D01* X8942Y33431D01* X8937Y33438D01* X8930Y33444D01* X8924Y33447D01* Y33559D01* X8929Y33562D01* X8936Y33568D01* X8941Y33575D01* X8945Y33582D01* X8948Y33591D01* X8949Y33599D01* X8949Y33608D01* X8947Y33617D01* X8935Y33651D01* X8924Y33674D01* Y35374D01* X8929Y35389D01* X8931Y35398D01* X8931Y35407D01* X8930Y35415D01* X8927Y35423D01* X8924Y35428D01* Y35580D01* X8925Y35582D01* X8928Y35591D01* X8929Y35599D01* X8929Y35608D01* X8927Y35617D01* X8924Y35625D01* Y40000D01* G37* G36* X9104Y0D02*X8924D01* Y3140D01* X8927Y3135D01* X8933Y3128D01* X8940Y3123D01* X8947Y3119D01* X8956Y3116D01* X8964Y3115D01* X8973Y3115D01* X8981Y3117D01* X9016Y3129D01* X9048Y3144D01* X9080Y3162D01* X9104Y3180D01* Y1834D01* X9094Y1840D01* X9062Y1858D01* X9029Y1873D01* X8995Y1884D01* X8986Y1886D01* X8977Y1886D01* X8969Y1885D01* X8961Y1882D01* X8953Y1878D01* X8946Y1872D01* X8940Y1865D01* X8936Y1858D01* X8933Y1850D01* X8931Y1841D01* X8931Y1833D01* X8932Y1824D01* X8935Y1816D01* X8939Y1808D01* X8945Y1801D01* X8952Y1796D01* X8959Y1791D01* X8967Y1788D01* X8993Y1779D01* X9018Y1768D01* X9041Y1755D01* X9064Y1740D01* X9085Y1723D01* X9104Y1704D01* Y1295D01* X9089Y1280D01* X9068Y1262D01* X9046Y1247D01* X9022Y1233D01* X8998Y1222D01* X8972Y1213D01* X8964Y1209D01* X8957Y1205D01* X8950Y1199D01* X8945Y1192D01* X8941Y1184D01* X8938Y1176D01* X8937Y1167D01* X8937Y1159D01* X8939Y1150D01* X8942Y1142D01* X8947Y1135D01* X8953Y1128D01* X8960Y1123D01* X8967Y1119D01* X8976Y1116D01* X8984Y1115D01* X8993Y1115D01* X9001Y1117D01* X9036Y1129D01* X9068Y1144D01* X9100Y1162D01* X9104Y1165D01* Y0D01* G37* G36* Y3319D02*X9088Y3299D01* X9069Y3280D01* X9048Y3262D01* X9026Y3247D01* X9002Y3233D01* X8978Y3222D01* X8952Y3213D01* X8944Y3209D01* X8937Y3205D01* X8930Y3199D01* X8925Y3192D01* X8924Y3190D01* Y3802D01* X8925Y3801D01* X8932Y3796D01* X8939Y3791D01* X8947Y3788D01* X8973Y3779D01* X8998Y3768D01* X9021Y3755D01* X9044Y3740D01* X9065Y3723D01* X9084Y3704D01* X9102Y3683D01* X9104Y3680D01* Y3319D01* G37* G36* Y3820D02*X9104Y3820D01* X9074Y3840D01* X9042Y3858D01* X9009Y3873D01* X8975Y3884D01* X8966Y3886D01* X8957Y3886D01* X8949Y3885D01* X8941Y3882D01* X8933Y3878D01* X8926Y3872D01* X8924Y3870D01* Y5121D01* X8927Y5119D01* X8936Y5116D01* X8944Y5115D01* X8953Y5115D01* X8961Y5117D01* X8996Y5129D01* X9028Y5144D01* X9060Y5162D01* X9089Y5183D01* X9104Y5196D01* Y3820D01* G37* G36* Y5350D02*X9100Y5343D01* X9085Y5320D01* X9068Y5299D01* X9049Y5280D01* X9028Y5262D01* X9006Y5247D01* X8982Y5233D01* X8958Y5222D01* X8932Y5213D01* X8924Y5209D01* X8924Y5209D01* Y5789D01* X8927Y5788D01* X8953Y5779D01* X8978Y5768D01* X9001Y5755D01* X9024Y5740D01* X9045Y5723D01* X9064Y5704D01* X9082Y5683D01* X9097Y5661D01* X9104Y5650D01* Y5350D01* G37* G36* Y5804D02*X9084Y5820D01* X9054Y5840D01* X9022Y5858D01* X8989Y5873D01* X8955Y5884D01* X8946Y5886D01* X8937Y5886D01* X8929Y5885D01* X8924Y5883D01* Y7115D01* X8924D01* X8933Y7115D01* X8941Y7117D01* X8976Y7129D01* X9008Y7144D01* X9040Y7162D01* X9069Y7183D01* X9097Y7207D01* X9104Y7214D01* Y5804D01* G37* G36* Y7391D02*X9093Y7366D01* X9080Y7343D01* X9065Y7320D01* X9048Y7299D01* X9029Y7280D01* X9008Y7262D01* X8986Y7247D01* X8962Y7233D01* X8938Y7222D01* X8924Y7217D01* Y7782D01* X8933Y7779D01* X8958Y7768D01* X8981Y7755D01* X9004Y7740D01* X9025Y7723D01* X9044Y7704D01* X9062Y7683D01* X9077Y7661D01* X9091Y7637D01* X9102Y7613D01* X9104Y7608D01* Y7391D01* G37* G36* Y7785D02*X9092Y7797D01* X9064Y7820D01* X9034Y7840D01* X9002Y7858D01* X8969Y7873D01* X8935Y7884D01* X8926Y7886D01* X8924D01* Y9118D01* X8956Y9129D01* X8988Y9144D01* X9020Y9162D01* X9049Y9183D01* X9077Y9207D01* X9102Y9232D01* X9104Y9235D01* Y7785D01* G37* G36* Y9437D02*X9100Y9433D01* X9096Y9425D01* X9093Y9417D01* X9084Y9391D01* X9073Y9366D01* X9060Y9343D01* X9045Y9320D01* X9028Y9299D01* X9009Y9280D01* X8988Y9262D01* X8966Y9247D01* X8942Y9233D01* X8924Y9225D01* Y9774D01* X8938Y9768D01* X8961Y9755D01* X8984Y9740D01* X9005Y9723D01* X9024Y9704D01* X9042Y9683D01* X9057Y9661D01* X9071Y9637D01* X9082Y9613D01* X9091Y9587D01* X9095Y9579D01* X9099Y9572D01* X9104Y9567D01* Y9437D01* G37* G36* Y9764D02*X9097Y9772D01* X9072Y9797D01* X9044Y9820D01* X9014Y9840D01* X8982Y9858D01* X8949Y9873D01* X8924Y9881D01* Y11125D01* X8936Y11129D01* X8968Y11144D01* X9000Y11162D01* X9029Y11183D01* X9057Y11207D01* X9082Y11232D01* X9104Y11259D01* Y9764D01* G37* G36* Y11450D02*X9101Y11449D01* X9093Y11445D01* X9086Y11439D01* X9080Y11433D01* X9076Y11425D01* X9073Y11417D01* X9064Y11391D01* X9053Y11366D01* X9040Y11343D01* X9025Y11320D01* X9008Y11299D01* X8989Y11280D01* X8968Y11262D01* X8946Y11247D01* X8924Y11234D01* Y11765D01* X8941Y11755D01* X8964Y11740D01* X8985Y11723D01* X9004Y11704D01* X9022Y11683D01* X9037Y11661D01* X9051Y11637D01* X9062Y11613D01* X9071Y11587D01* X9075Y11579D01* X9079Y11572D01* X9085Y11565D01* X9092Y11560D01* X9100Y11556D01* X9104Y11555D01* Y11450D01* G37* G36* Y11740D02*X9101Y11744D01* X9077Y11772D01* X9052Y11797D01* X9024Y11820D01* X8994Y11840D01* X8962Y11858D01* X8929Y11873D01* X8924Y11874D01* Y13133D01* X8948Y13144D01* X8980Y13162D01* X9009Y13183D01* X9037Y13207D01* X9062Y13232D01* X9085Y13260D01* X9104Y13288D01* Y11740D01* G37* G36* Y13453D02*X9097Y13453D01* X9089Y13452D01* X9081Y13449D01* X9073Y13445D01* X9066Y13439D01* X9060Y13433D01* X9056Y13425D01* X9053Y13417D01* X9044Y13391D01* X9033Y13366D01* X9020Y13343D01* X9005Y13320D01* X8988Y13299D01* X8969Y13280D01* X8948Y13262D01* X8926Y13247D01* X8924Y13246D01* Y13754D01* X8944Y13740D01* X8965Y13723D01* X8984Y13704D01* X9002Y13683D01* X9017Y13661D01* X9031Y13637D01* X9042Y13613D01* X9051Y13587D01* X9055Y13579D01* X9059Y13572D01* X9065Y13565D01* X9072Y13560D01* X9080Y13556D01* X9088Y13553D01* X9097Y13552D01* X9104Y13552D01* Y13453D01* G37* G36* Y13711D02*X9102Y13715D01* X9081Y13744D01* X9057Y13772D01* X9032Y13797D01* X9004Y13820D01* X8974Y13840D01* X8942Y13858D01* X8924Y13866D01* Y15142D01* X8928Y15144D01* X8960Y15162D01* X8989Y15183D01* X9017Y15207D01* X9042Y15232D01* X9065Y15260D01* X9085Y15290D01* X9103Y15322D01* X9104Y15324D01* Y13711D01* G37* G36* Y15447D02*X9103Y15448D01* X9095Y15451D01* X9086Y15453D01* X9077Y15453D01* X9069Y15452D01* X9061Y15449D01* X9053Y15445D01* X9046Y15439D01* X9040Y15433D01* X9036Y15425D01* X9033Y15417D01* X9024Y15391D01* X9013Y15366D01* X9000Y15343D01* X8985Y15320D01* X8968Y15299D01* X8949Y15280D01* X8928Y15262D01* X8924Y15259D01* Y15740D01* X8945Y15723D01* X8964Y15704D01* X8982Y15683D01* X8997Y15661D01* X9011Y15637D01* X9022Y15613D01* X9031Y15587D01* X9035Y15579D01* X9039Y15572D01* X9045Y15565D01* X9052Y15560D01* X9060Y15556D01* X9068Y15553D01* X9077Y15552D01* X9085Y15552D01* X9094Y15554D01* X9102Y15557D01* X9104Y15559D01* Y15447D01* G37* G36* Y15674D02*X9100Y15683D01* X9082Y15715D01* X9061Y15744D01* X9037Y15772D01* X9012Y15797D01* X8984Y15820D01* X8954Y15840D01* X8924Y15857D01* Y17153D01* X8940Y17162D01* X8969Y17183D01* X8997Y17207D01* X9022Y17232D01* X9045Y17260D01* X9065Y17290D01* X9083Y17322D01* X9097Y17355D01* X9104Y17374D01* Y15674D01* G37* G36* Y17428D02*X9102Y17431D01* X9097Y17438D01* X9090Y17444D01* X9083Y17448D01* X9075Y17451D01* X9066Y17453D01* X9057Y17453D01* X9049Y17452D01* X9041Y17449D01* X9033Y17445D01* X9026Y17439D01* X9020Y17433D01* X9016Y17425D01* X9013Y17417D01* X9004Y17391D01* X8993Y17366D01* X8980Y17343D01* X8965Y17320D01* X8948Y17299D01* X8929Y17280D01* X8924Y17276D01* Y17724D01* X8925Y17723D01* X8944Y17704D01* X8962Y17683D01* X8977Y17661D01* X8991Y17637D01* X9002Y17613D01* X9011Y17587D01* X9015Y17579D01* X9019Y17572D01* X9025Y17565D01* X9032Y17560D01* X9040Y17556D01* X9048Y17553D01* X9057Y17552D01* X9065Y17552D01* X9074Y17554D01* X9082Y17557D01* X9089Y17562D01* X9096Y17568D01* X9101Y17575D01* X9104Y17580D01* Y17428D01* G37* G36* Y40000D02*X10425D01* Y39878D01* X10422Y39880D01* X10413Y39883D01* X10405Y39884D01* X10396Y39884D01* X10388Y39882D01* X10353Y39870D01* X10321Y39855D01* X10289Y39837D01* X10260Y39816D01* X10232Y39793D01* X10207Y39767D01* X10184Y39739D01* X10164Y39709D01* X10146Y39677D01* X10132Y39644D01* X10120Y39610D01* X10118Y39601D01* X10118Y39593D01* X10119Y39584D01* X10122Y39576D01* X10127Y39568D01* X10132Y39561D01* X10139Y39556D01* X10146Y39551D01* X10154Y39548D01* X10163Y39546D01* X10172Y39546D01* X10180Y39547D01* X10188Y39550D01* X10196Y39555D01* X10203Y39560D01* X10209Y39567D01* X10213Y39574D01* X10216Y39582D01* X10225Y39608D01* X10236Y39633D01* X10249Y39657D01* X10264Y39679D01* X10281Y39700D01* X10300Y39719D01* X10321Y39737D01* X10343Y39752D01* X10367Y39766D01* X10391Y39777D01* X10417Y39786D01* X10425Y39790D01* X10425Y39790D01* Y39210D01* X10422Y39211D01* X10396Y39220D01* X10371Y39231D01* X10348Y39244D01* X10325Y39259D01* X10304Y39276D01* X10285Y39295D01* X10267Y39316D01* X10252Y39338D01* X10238Y39362D01* X10227Y39386D01* X10218Y39412D01* X10214Y39420D01* X10210Y39427D01* X10204Y39434D01* X10197Y39439D01* X10189Y39443D01* X10181Y39446D01* X10172Y39447D01* X10164Y39447D01* X10155Y39445D01* X10147Y39442D01* X10140Y39437D01* X10133Y39431D01* X10128Y39424D01* X10124Y39417D01* X10121Y39409D01* X10120Y39400D01* X10120Y39391D01* X10122Y39383D01* X10134Y39349D01* X10149Y39316D01* X10167Y39284D01* X10188Y39255D01* X10212Y39227D01* X10237Y39202D01* X10265Y39179D01* X10295Y39159D01* X10327Y39141D01* X10360Y39127D01* X10394Y39115D01* X10403Y39113D01* X10412Y39113D01* X10420Y39115D01* X10425Y39116D01* Y37884D01* X10425Y37884D01* X10416Y37884D01* X10408Y37882D01* X10373Y37870D01* X10341Y37855D01* X10309Y37837D01* X10280Y37816D01* X10252Y37793D01* X10227Y37767D01* X10204Y37739D01* X10184Y37709D01* X10166Y37677D01* X10152Y37644D01* X10140Y37610D01* X10138Y37601D01* X10138Y37593D01* X10139Y37584D01* X10142Y37576D01* X10147Y37568D01* X10152Y37561D01* X10159Y37556D01* X10166Y37551D01* X10174Y37548D01* X10183Y37546D01* X10192Y37546D01* X10200Y37547D01* X10208Y37550D01* X10216Y37555D01* X10223Y37560D01* X10229Y37567D01* X10233Y37574D01* X10236Y37582D01* X10245Y37608D01* X10256Y37633D01* X10269Y37657D01* X10284Y37679D01* X10301Y37700D01* X10320Y37719D01* X10341Y37737D01* X10363Y37752D01* X10387Y37766D01* X10411Y37777D01* X10425Y37782D01* Y37217D01* X10416Y37220D01* X10391Y37231D01* X10368Y37244D01* X10345Y37259D01* X10324Y37276D01* X10305Y37295D01* X10287Y37316D01* X10272Y37338D01* X10258Y37362D01* X10247Y37386D01* X10238Y37412D01* X10234Y37420D01* X10230Y37427D01* X10224Y37434D01* X10217Y37439D01* X10209Y37443D01* X10201Y37446D01* X10192Y37447D01* X10184Y37447D01* X10175Y37445D01* X10167Y37442D01* X10160Y37437D01* X10153Y37431D01* X10148Y37424D01* X10144Y37417D01* X10141Y37409D01* X10140Y37400D01* X10140Y37391D01* X10142Y37383D01* X10154Y37349D01* X10169Y37316D01* X10187Y37284D01* X10208Y37255D01* X10232Y37227D01* X10257Y37202D01* X10285Y37179D01* X10315Y37159D01* X10347Y37141D01* X10380Y37127D01* X10414Y37115D01* X10423Y37113D01* X10425D01* Y35881D01* X10393Y35870D01* X10361Y35855D01* X10329Y35837D01* X10300Y35816D01* X10272Y35793D01* X10247Y35767D01* X10224Y35739D01* X10204Y35709D01* X10186Y35677D01* X10172Y35644D01* X10160Y35610D01* X10158Y35601D01* X10158Y35593D01* X10159Y35584D01* X10162Y35576D01* X10167Y35568D01* X10172Y35561D01* X10179Y35556D01* X10186Y35551D01* X10194Y35548D01* X10203Y35546D01* X10212Y35546D01* X10220Y35547D01* X10228Y35550D01* X10236Y35555D01* X10243Y35560D01* X10249Y35567D01* X10253Y35574D01* X10256Y35582D01* X10265Y35608D01* X10276Y35633D01* X10289Y35657D01* X10304Y35679D01* X10321Y35700D01* X10340Y35719D01* X10361Y35737D01* X10383Y35752D01* X10407Y35766D01* X10425Y35775D01* Y35225D01* X10411Y35231D01* X10388Y35244D01* X10365Y35259D01* X10344Y35276D01* X10325Y35295D01* X10307Y35316D01* X10292Y35338D01* X10278Y35362D01* X10267Y35386D01* X10258Y35412D01* X10254Y35420D01* X10250Y35427D01* X10244Y35434D01* X10237Y35439D01* X10229Y35443D01* X10221Y35446D01* X10212Y35447D01* X10204Y35447D01* X10195Y35445D01* X10187Y35442D01* X10180Y35437D01* X10173Y35431D01* X10168Y35424D01* X10164Y35417D01* X10161Y35409D01* X10160Y35400D01* X10160Y35391D01* X10162Y35383D01* X10174Y35349D01* X10189Y35316D01* X10207Y35284D01* X10228Y35255D01* X10252Y35227D01* X10277Y35202D01* X10305Y35179D01* X10335Y35159D01* X10367Y35141D01* X10400Y35127D01* X10425Y35118D01* Y33874D01* X10413Y33870D01* X10381Y33855D01* X10349Y33837D01* X10320Y33816D01* X10292Y33793D01* X10267Y33767D01* X10244Y33739D01* X10224Y33709D01* X10206Y33677D01* X10192Y33644D01* X10180Y33610D01* X10178Y33601D01* X10178Y33593D01* X10179Y33584D01* X10182Y33576D01* X10187Y33568D01* X10192Y33561D01* X10199Y33556D01* X10206Y33551D01* X10214Y33548D01* X10223Y33546D01* X10232Y33546D01* X10240Y33547D01* X10248Y33550D01* X10256Y33555D01* X10263Y33560D01* X10269Y33567D01* X10273Y33574D01* X10276Y33582D01* X10285Y33608D01* X10296Y33633D01* X10309Y33657D01* X10324Y33679D01* X10341Y33700D01* X10360Y33719D01* X10381Y33737D01* X10403Y33752D01* X10425Y33765D01* Y33234D01* X10408Y33244D01* X10385Y33259D01* X10364Y33276D01* X10345Y33295D01* X10327Y33316D01* X10312Y33338D01* X10298Y33362D01* X10287Y33386D01* X10278Y33412D01* X10274Y33420D01* X10270Y33427D01* X10264Y33434D01* X10257Y33439D01* X10249Y33443D01* X10241Y33446D01* X10232Y33447D01* X10224Y33447D01* X10215Y33445D01* X10207Y33442D01* X10200Y33437D01* X10193Y33431D01* X10188Y33424D01* X10184Y33417D01* X10181Y33409D01* X10180Y33400D01* X10180Y33391D01* X10182Y33383D01* X10194Y33349D01* X10209Y33316D01* X10227Y33284D01* X10248Y33255D01* X10272Y33227D01* X10297Y33202D01* X10325Y33179D01* X10355Y33159D01* X10387Y33141D01* X10420Y33127D01* X10425Y33125D01* Y31866D01* X10401Y31855D01* X10369Y31837D01* X10340Y31816D01* X10312Y31793D01* X10287Y31767D01* X10264Y31739D01* X10244Y31709D01* X10226Y31677D01* X10212Y31644D01* X10200Y31610D01* X10198Y31601D01* X10198Y31593D01* X10199Y31584D01* X10202Y31576D01* X10207Y31568D01* X10212Y31561D01* X10219Y31556D01* X10226Y31551D01* X10234Y31548D01* X10243Y31546D01* X10252Y31546D01* X10260Y31547D01* X10268Y31550D01* X10276Y31555D01* X10283Y31560D01* X10289Y31567D01* X10293Y31574D01* X10296Y31582D01* X10305Y31608D01* X10316Y31633D01* X10329Y31657D01* X10344Y31679D01* X10361Y31700D01* X10380Y31719D01* X10401Y31737D01* X10423Y31752D01* X10425Y31754D01* Y31246D01* X10405Y31259D01* X10384Y31276D01* X10365Y31295D01* X10347Y31316D01* X10332Y31338D01* X10318Y31362D01* X10307Y31386D01* X10298Y31412D01* X10294Y31420D01* X10290Y31427D01* X10284Y31434D01* X10277Y31439D01* X10269Y31443D01* X10261Y31446D01* X10252Y31447D01* X10244Y31447D01* X10235Y31445D01* X10227Y31442D01* X10220Y31437D01* X10213Y31431D01* X10208Y31424D01* X10204Y31417D01* X10201Y31409D01* X10200Y31400D01* X10200Y31391D01* X10202Y31383D01* X10214Y31349D01* X10229Y31316D01* X10247Y31284D01* X10268Y31255D01* X10292Y31227D01* X10317Y31202D01* X10345Y31179D01* X10375Y31159D01* X10407Y31141D01* X10425Y31133D01* Y29857D01* X10421Y29855D01* X10389Y29837D01* X10360Y29816D01* X10332Y29793D01* X10307Y29767D01* X10284Y29739D01* X10264Y29709D01* X10246Y29677D01* X10232Y29644D01* X10220Y29610D01* X10218Y29601D01* X10218Y29593D01* X10219Y29584D01* X10222Y29576D01* X10227Y29568D01* X10232Y29561D01* X10239Y29556D01* X10246Y29551D01* X10254Y29548D01* X10263Y29546D01* X10272Y29546D01* X10280Y29547D01* X10288Y29550D01* X10296Y29555D01* X10303Y29560D01* X10309Y29567D01* X10313Y29574D01* X10316Y29582D01* X10325Y29608D01* X10336Y29633D01* X10349Y29657D01* X10364Y29679D01* X10381Y29700D01* X10400Y29719D01* X10421Y29737D01* X10425Y29740D01* Y29259D01* X10425Y29259D01* X10404Y29276D01* X10385Y29295D01* X10367Y29316D01* X10352Y29338D01* X10338Y29362D01* X10327Y29386D01* X10318Y29412D01* X10314Y29420D01* X10310Y29427D01* X10304Y29434D01* X10297Y29439D01* X10289Y29443D01* X10281Y29446D01* X10272Y29447D01* X10264Y29447D01* X10255Y29445D01* X10247Y29442D01* X10240Y29437D01* X10233Y29431D01* X10228Y29424D01* X10224Y29417D01* X10221Y29409D01* X10220Y29400D01* X10220Y29391D01* X10222Y29383D01* X10234Y29349D01* X10249Y29316D01* X10267Y29284D01* X10288Y29255D01* X10312Y29227D01* X10337Y29202D01* X10365Y29179D01* X10395Y29159D01* X10425Y29142D01* Y27846D01* X10409Y27837D01* X10380Y27816D01* X10352Y27793D01* X10327Y27767D01* X10304Y27739D01* X10284Y27709D01* X10266Y27677D01* X10252Y27644D01* X10240Y27610D01* X10238Y27601D01* X10238Y27593D01* X10239Y27584D01* X10242Y27576D01* X10247Y27568D01* X10252Y27561D01* X10259Y27556D01* X10266Y27551D01* X10274Y27548D01* X10283Y27546D01* X10292Y27546D01* X10300Y27547D01* X10308Y27550D01* X10316Y27555D01* X10323Y27560D01* X10329Y27567D01* X10333Y27574D01* X10336Y27582D01* X10345Y27608D01* X10356Y27633D01* X10369Y27657D01* X10384Y27679D01* X10401Y27700D01* X10420Y27719D01* X10425Y27723D01* Y27276D01* X10424Y27276D01* X10405Y27295D01* X10387Y27316D01* X10372Y27338D01* X10358Y27362D01* X10347Y27386D01* X10338Y27412D01* X10334Y27420D01* X10330Y27427D01* X10324Y27434D01* X10317Y27439D01* X10309Y27443D01* X10301Y27446D01* X10292Y27447D01* X10284Y27447D01* X10275Y27445D01* X10267Y27442D01* X10260Y27437D01* X10253Y27431D01* X10248Y27424D01* X10244Y27417D01* X10241Y27409D01* X10240Y27400D01* X10240Y27391D01* X10242Y27383D01* X10254Y27349D01* X10269Y27316D01* X10287Y27284D01* X10308Y27255D01* X10332Y27227D01* X10357Y27202D01* X10385Y27179D01* X10415Y27159D01* X10425Y27153D01* Y25834D01* X10400Y25816D01* X10372Y25793D01* X10347Y25767D01* X10324Y25739D01* X10304Y25709D01* X10286Y25677D01* X10272Y25644D01* X10260Y25610D01* X10258Y25601D01* X10258Y25593D01* X10259Y25584D01* X10262Y25576D01* X10267Y25568D01* X10272Y25561D01* X10279Y25556D01* X10286Y25551D01* X10294Y25548D01* X10303Y25546D01* X10312Y25546D01* X10320Y25547D01* X10328Y25550D01* X10336Y25555D01* X10343Y25560D01* X10349Y25567D01* X10353Y25574D01* X10356Y25582D01* X10365Y25608D01* X10376Y25633D01* X10389Y25657D01* X10404Y25679D01* X10421Y25700D01* X10425Y25704D01* Y25295D01* X10425Y25295D01* X10407Y25316D01* X10392Y25338D01* X10378Y25362D01* X10367Y25386D01* X10358Y25412D01* X10354Y25420D01* X10350Y25427D01* X10344Y25434D01* X10337Y25439D01* X10329Y25443D01* X10321Y25446D01* X10312Y25447D01* X10304Y25447D01* X10295Y25445D01* X10287Y25442D01* X10280Y25437D01* X10273Y25431D01* X10268Y25424D01* X10264Y25417D01* X10261Y25409D01* X10260Y25400D01* X10260Y25391D01* X10262Y25383D01* X10274Y25349D01* X10289Y25316D01* X10307Y25284D01* X10328Y25255D01* X10352Y25227D01* X10377Y25202D01* X10405Y25179D01* X10425Y25166D01* Y23820D01* X10420Y23816D01* X10392Y23793D01* X10367Y23767D01* X10344Y23739D01* X10324Y23709D01* X10306Y23677D01* X10292Y23644D01* X10280Y23610D01* X10278Y23601D01* X10278Y23593D01* X10279Y23584D01* X10282Y23576D01* X10287Y23568D01* X10292Y23561D01* X10299Y23556D01* X10306Y23551D01* X10314Y23548D01* X10323Y23546D01* X10332Y23546D01* X10340Y23547D01* X10348Y23550D01* X10356Y23555D01* X10363Y23560D01* X10369Y23567D01* X10373Y23574D01* X10376Y23582D01* X10385Y23608D01* X10396Y23633D01* X10409Y23657D01* X10424Y23679D01* X10425Y23680D01* Y23319D01* X10412Y23338D01* X10398Y23362D01* X10387Y23386D01* X10378Y23412D01* X10374Y23420D01* X10370Y23427D01* X10364Y23434D01* X10357Y23439D01* X10349Y23443D01* X10341Y23446D01* X10332Y23447D01* X10324Y23447D01* X10315Y23445D01* X10307Y23442D01* X10300Y23437D01* X10293Y23431D01* X10288Y23424D01* X10284Y23417D01* X10281Y23409D01* X10280Y23400D01* X10280Y23391D01* X10282Y23383D01* X10294Y23349D01* X10309Y23316D01* X10327Y23284D01* X10348Y23255D01* X10372Y23227D01* X10397Y23202D01* X10425Y23179D01* Y21804D01* X10412Y21793D01* X10387Y21767D01* X10364Y21739D01* X10344Y21709D01* X10326Y21677D01* X10312Y21644D01* X10300Y21610D01* X10298Y21601D01* X10298Y21593D01* X10299Y21584D01* X10302Y21576D01* X10307Y21568D01* X10312Y21561D01* X10319Y21556D01* X10326Y21551D01* X10334Y21548D01* X10343Y21546D01* X10352Y21546D01* X10360Y21547D01* X10368Y21550D01* X10376Y21555D01* X10383Y21560D01* X10389Y21567D01* X10393Y21574D01* X10396Y21582D01* X10405Y21608D01* X10416Y21633D01* X10425Y21650D01* Y21349D01* X10418Y21362D01* X10407Y21386D01* X10398Y21412D01* X10394Y21420D01* X10390Y21427D01* X10384Y21434D01* X10377Y21439D01* X10369Y21443D01* X10361Y21446D01* X10352Y21447D01* X10344Y21447D01* X10335Y21445D01* X10327Y21442D01* X10320Y21437D01* X10313Y21431D01* X10308Y21424D01* X10304Y21417D01* X10301Y21409D01* X10300Y21400D01* X10300Y21391D01* X10302Y21383D01* X10314Y21349D01* X10329Y21316D01* X10347Y21284D01* X10368Y21255D01* X10392Y21227D01* X10417Y21202D01* X10425Y21196D01* Y19785D01* X10407Y19767D01* X10384Y19739D01* X10364Y19709D01* X10346Y19677D01* X10332Y19644D01* X10320Y19610D01* X10318Y19601D01* X10318Y19593D01* X10319Y19584D01* X10322Y19576D01* X10327Y19568D01* X10332Y19561D01* X10339Y19556D01* X10346Y19551D01* X10354Y19548D01* X10363Y19546D01* X10372Y19546D01* X10380Y19547D01* X10388Y19550D01* X10396Y19555D01* X10403Y19560D01* X10409Y19567D01* X10413Y19574D01* X10416Y19582D01* X10425Y19608D01* X10425Y19609D01* Y19391D01* X10418Y19412D01* X10414Y19420D01* X10410Y19427D01* X10404Y19434D01* X10397Y19439D01* X10389Y19443D01* X10381Y19446D01* X10372Y19447D01* X10364Y19447D01* X10355Y19445D01* X10347Y19442D01* X10340Y19437D01* X10333Y19431D01* X10328Y19424D01* X10324Y19417D01* X10321Y19409D01* X10320Y19400D01* X10320Y19391D01* X10322Y19383D01* X10334Y19349D01* X10349Y19316D01* X10367Y19284D01* X10388Y19255D01* X10412Y19227D01* X10425Y19214D01* Y17765D01* X10404Y17739D01* X10384Y17709D01* X10366Y17677D01* X10352Y17644D01* X10340Y17610D01* X10338Y17601D01* X10338Y17593D01* X10339Y17584D01* X10342Y17576D01* X10347Y17568D01* X10352Y17561D01* X10359Y17556D01* X10366Y17551D01* X10374Y17548D01* X10383Y17546D01* X10392Y17546D01* X10400Y17547D01* X10408Y17550D01* X10416Y17555D01* X10423Y17560D01* X10425Y17563D01* Y17432D01* X10424Y17434D01* X10417Y17439D01* X10409Y17443D01* X10401Y17446D01* X10392Y17447D01* X10384Y17447D01* X10375Y17445D01* X10367Y17442D01* X10360Y17437D01* X10353Y17431D01* X10348Y17424D01* X10344Y17417D01* X10341Y17409D01* X10340Y17400D01* X10340Y17391D01* X10342Y17383D01* X10354Y17349D01* X10369Y17316D01* X10387Y17284D01* X10408Y17255D01* X10425Y17235D01* Y15740D01* X10424Y15739D01* X10404Y15709D01* X10386Y15677D01* X10372Y15644D01* X10360Y15610D01* X10358Y15601D01* X10358Y15593D01* X10359Y15584D01* X10362Y15576D01* X10367Y15568D01* X10372Y15561D01* X10379Y15556D01* X10386Y15551D01* X10394Y15548D01* X10403Y15546D01* X10412Y15546D01* X10420Y15547D01* X10425Y15549D01* Y15445D01* X10421Y15446D01* X10412Y15447D01* X10404Y15447D01* X10395Y15445D01* X10387Y15442D01* X10380Y15437D01* X10373Y15431D01* X10368Y15424D01* X10364Y15417D01* X10361Y15409D01* X10360Y15400D01* X10360Y15391D01* X10362Y15383D01* X10374Y15349D01* X10389Y15316D01* X10407Y15284D01* X10425Y15259D01* Y13711D01* X10424Y13709D01* X10406Y13677D01* X10392Y13644D01* X10380Y13610D01* X10378Y13601D01* X10378Y13593D01* X10379Y13584D01* X10382Y13576D01* X10387Y13568D01* X10392Y13561D01* X10399Y13556D01* X10406Y13551D01* X10414Y13548D01* X10423Y13546D01* X10425D01* Y13447D01* X10424Y13447D01* X10415Y13445D01* X10407Y13442D01* X10400Y13437D01* X10393Y13431D01* X10388Y13424D01* X10384Y13417D01* X10381Y13409D01* X10380Y13400D01* X10380Y13391D01* X10382Y13383D01* X10394Y13349D01* X10409Y13316D01* X10425Y13288D01* Y11675D01* X10412Y11644D01* X10400Y11610D01* X10398Y11601D01* X10398Y11593D01* X10399Y11584D01* X10402Y11576D01* X10407Y11568D01* X10412Y11561D01* X10419Y11556D01* X10425Y11552D01* Y11441D01* X10420Y11437D01* X10413Y11431D01* X10408Y11424D01* X10404Y11417D01* X10401Y11409D01* X10400Y11400D01* X10400Y11391D01* X10402Y11383D01* X10414Y11349D01* X10425Y11325D01* Y9625D01* X10420Y9610D01* X10418Y9601D01* X10418Y9593D01* X10419Y9584D01* X10422Y9576D01* X10425Y9571D01* Y9419D01* X10424Y9417D01* X10421Y9409D01* X10420Y9400D01* X10420Y9391D01* X10422Y9383D01* X10425Y9374D01* Y0D01* X9104D01* Y1165D01* X9129Y1183D01* X9157Y1207D01* X9182Y1232D01* X9205Y1260D01* X9225Y1290D01* X9243Y1322D01* X9257Y1355D01* X9269Y1389D01* X9271Y1398D01* X9271Y1407D01* X9270Y1415D01* X9267Y1423D01* X9262Y1431D01* X9257Y1438D01* X9250Y1444D01* X9243Y1448D01* X9235Y1451D01* X9226Y1453D01* X9217Y1453D01* X9209Y1452D01* X9201Y1449D01* X9193Y1445D01* X9186Y1439D01* X9180Y1433D01* X9176Y1425D01* X9173Y1417D01* X9164Y1391D01* X9153Y1366D01* X9140Y1343D01* X9125Y1320D01* X9108Y1299D01* X9104Y1295D01* Y1704D01* X9104Y1704D01* X9122Y1683D01* X9137Y1661D01* X9151Y1637D01* X9162Y1613D01* X9171Y1587D01* X9175Y1579D01* X9179Y1572D01* X9185Y1565D01* X9192Y1560D01* X9200Y1556D01* X9208Y1553D01* X9217Y1552D01* X9225Y1552D01* X9234Y1554D01* X9242Y1557D01* X9249Y1562D01* X9256Y1568D01* X9261Y1575D01* X9265Y1582D01* X9268Y1591D01* X9269Y1599D01* X9269Y1608D01* X9267Y1617D01* X9255Y1651D01* X9240Y1683D01* X9222Y1715D01* X9201Y1744D01* X9177Y1772D01* X9152Y1797D01* X9124Y1820D01* X9104Y1834D01* Y3180D01* X9109Y3183D01* X9137Y3207D01* X9162Y3232D01* X9185Y3260D01* X9205Y3290D01* X9223Y3322D01* X9237Y3355D01* X9249Y3389D01* X9251Y3398D01* X9251Y3407D01* X9250Y3415D01* X9247Y3423D01* X9242Y3431D01* X9237Y3438D01* X9230Y3444D01* X9223Y3448D01* X9215Y3451D01* X9206Y3453D01* X9197Y3453D01* X9189Y3452D01* X9181Y3449D01* X9173Y3445D01* X9166Y3439D01* X9160Y3433D01* X9156Y3425D01* X9153Y3417D01* X9144Y3391D01* X9133Y3366D01* X9120Y3343D01* X9105Y3320D01* X9104Y3319D01* Y3680D01* X9117Y3661D01* X9131Y3637D01* X9142Y3613D01* X9151Y3587D01* X9155Y3579D01* X9159Y3572D01* X9165Y3565D01* X9172Y3560D01* X9180Y3556D01* X9188Y3553D01* X9197Y3552D01* X9205Y3552D01* X9214Y3554D01* X9222Y3557D01* X9229Y3562D01* X9236Y3568D01* X9241Y3575D01* X9245Y3582D01* X9248Y3591D01* X9249Y3599D01* X9249Y3608D01* X9247Y3617D01* X9235Y3651D01* X9220Y3683D01* X9202Y3715D01* X9181Y3744D01* X9157Y3772D01* X9132Y3797D01* X9104Y3820D01* Y5196D01* X9117Y5207D01* X9142Y5232D01* X9165Y5260D01* X9185Y5290D01* X9203Y5322D01* X9217Y5355D01* X9229Y5389D01* X9231Y5398D01* X9231Y5407D01* X9230Y5415D01* X9227Y5423D01* X9222Y5431D01* X9217Y5438D01* X9210Y5444D01* X9203Y5448D01* X9195Y5451D01* X9186Y5453D01* X9177Y5453D01* X9169Y5452D01* X9161Y5449D01* X9153Y5445D01* X9146Y5439D01* X9140Y5433D01* X9136Y5425D01* X9133Y5417D01* X9124Y5391D01* X9113Y5366D01* X9104Y5350D01* Y5650D01* X9111Y5637D01* X9122Y5613D01* X9131Y5587D01* X9135Y5579D01* X9139Y5572D01* X9145Y5565D01* X9152Y5560D01* X9160Y5556D01* X9168Y5553D01* X9177Y5552D01* X9185Y5552D01* X9194Y5554D01* X9202Y5557D01* X9209Y5562D01* X9216Y5568D01* X9221Y5575D01* X9225Y5582D01* X9228Y5591D01* X9229Y5599D01* X9229Y5608D01* X9227Y5617D01* X9215Y5651D01* X9200Y5683D01* X9182Y5715D01* X9161Y5744D01* X9137Y5772D01* X9112Y5797D01* X9104Y5804D01* Y7214D01* X9122Y7232D01* X9145Y7260D01* X9165Y7290D01* X9183Y7322D01* X9197Y7355D01* X9209Y7389D01* X9211Y7398D01* X9211Y7407D01* X9210Y7415D01* X9207Y7423D01* X9202Y7431D01* X9197Y7438D01* X9190Y7444D01* X9183Y7448D01* X9175Y7451D01* X9166Y7453D01* X9157Y7453D01* X9149Y7452D01* X9141Y7449D01* X9133Y7445D01* X9126Y7439D01* X9120Y7433D01* X9116Y7425D01* X9113Y7417D01* X9104Y7391D01* X9104Y7391D01* Y7608D01* X9111Y7587D01* X9115Y7579D01* X9119Y7572D01* X9125Y7565D01* X9132Y7560D01* X9140Y7556D01* X9148Y7553D01* X9157Y7552D01* X9165Y7552D01* X9174Y7554D01* X9182Y7557D01* X9189Y7562D01* X9196Y7568D01* X9201Y7575D01* X9205Y7582D01* X9208Y7591D01* X9209Y7599D01* X9209Y7608D01* X9207Y7617D01* X9195Y7651D01* X9180Y7683D01* X9162Y7715D01* X9141Y7744D01* X9117Y7772D01* X9104Y7785D01* Y9235D01* X9125Y9260D01* X9145Y9290D01* X9163Y9322D01* X9177Y9355D01* X9189Y9389D01* X9191Y9398D01* X9191Y9407D01* X9190Y9415D01* X9187Y9423D01* X9182Y9431D01* X9177Y9438D01* X9170Y9444D01* X9163Y9448D01* X9155Y9451D01* X9146Y9453D01* X9137Y9453D01* X9129Y9452D01* X9121Y9449D01* X9113Y9445D01* X9106Y9439D01* X9104Y9437D01* Y9567D01* X9105Y9565D01* X9112Y9560D01* X9120Y9556D01* X9128Y9553D01* X9137Y9552D01* X9145Y9552D01* X9154Y9554D01* X9162Y9557D01* X9169Y9562D01* X9176Y9568D01* X9181Y9575D01* X9185Y9582D01* X9188Y9591D01* X9189Y9599D01* X9189Y9608D01* X9187Y9617D01* X9175Y9651D01* X9160Y9683D01* X9142Y9715D01* X9121Y9744D01* X9104Y9764D01* Y11259D01* X9105Y11260D01* X9125Y11290D01* X9143Y11322D01* X9157Y11355D01* X9169Y11389D01* X9171Y11398D01* X9171Y11407D01* X9170Y11415D01* X9167Y11423D01* X9162Y11431D01* X9157Y11438D01* X9150Y11444D01* X9143Y11448D01* X9135Y11451D01* X9126Y11453D01* X9117Y11453D01* X9109Y11452D01* X9104Y11450D01* Y11555D01* X9108Y11553D01* X9117Y11552D01* X9125Y11552D01* X9134Y11554D01* X9142Y11557D01* X9149Y11562D01* X9156Y11568D01* X9161Y11575D01* X9165Y11582D01* X9168Y11591D01* X9169Y11599D01* X9169Y11608D01* X9167Y11617D01* X9155Y11651D01* X9140Y11683D01* X9122Y11715D01* X9104Y11740D01* Y13288D01* X9105Y13290D01* X9123Y13322D01* X9137Y13355D01* X9149Y13389D01* X9151Y13398D01* X9151Y13407D01* X9150Y13415D01* X9147Y13423D01* X9142Y13431D01* X9137Y13438D01* X9130Y13444D01* X9123Y13448D01* X9115Y13451D01* X9106Y13453D01* X9104D01* Y13552D01* X9105D01* X9114Y13554D01* X9122Y13557D01* X9129Y13562D01* X9136Y13568D01* X9141Y13575D01* X9145Y13582D01* X9148Y13591D01* X9149Y13599D01* X9149Y13608D01* X9147Y13617D01* X9135Y13651D01* X9120Y13683D01* X9104Y13711D01* Y15324D01* X9117Y15355D01* X9129Y15389D01* X9131Y15398D01* X9131Y15407D01* X9130Y15415D01* X9127Y15423D01* X9122Y15431D01* X9117Y15438D01* X9110Y15444D01* X9104Y15447D01* Y15559D01* X9109Y15562D01* X9116Y15568D01* X9121Y15575D01* X9125Y15582D01* X9128Y15591D01* X9129Y15599D01* X9129Y15608D01* X9127Y15617D01* X9115Y15651D01* X9104Y15674D01* Y17374D01* X9109Y17389D01* X9111Y17398D01* X9111Y17407D01* X9110Y17415D01* X9107Y17423D01* X9104Y17428D01* Y17580D01* X9105Y17582D01* X9108Y17591D01* X9109Y17599D01* X9109Y17608D01* X9107Y17617D01* X9104Y17625D01* Y40000D01* G37* G36* X10425D02*X10605D01* Y39886D01* X10597Y39886D01* X10589Y39885D01* X10581Y39882D01* X10573Y39878D01* X10566Y39872D01* X10560Y39865D01* X10556Y39858D01* X10553Y39850D01* X10551Y39841D01* X10551Y39833D01* X10552Y39824D01* X10555Y39816D01* X10559Y39808D01* X10565Y39801D01* X10572Y39796D01* X10579Y39791D01* X10587Y39788D01* X10605Y39782D01* Y39217D01* X10592Y39213D01* X10584Y39209D01* X10577Y39205D01* X10570Y39199D01* X10565Y39192D01* X10561Y39184D01* X10558Y39176D01* X10557Y39167D01* X10557Y39159D01* X10559Y39150D01* X10562Y39142D01* X10567Y39135D01* X10573Y39128D01* X10580Y39123D01* X10587Y39119D01* X10596Y39116D01* X10604Y39115D01* X10605D01* Y37883D01* X10601Y37882D01* X10593Y37878D01* X10586Y37872D01* X10580Y37865D01* X10576Y37858D01* X10573Y37850D01* X10571Y37841D01* X10571Y37833D01* X10572Y37824D01* X10575Y37816D01* X10579Y37808D01* X10585Y37801D01* X10592Y37796D01* X10599Y37791D01* X10605Y37789D01* Y37210D01* X10604Y37209D01* X10597Y37205D01* X10590Y37199D01* X10585Y37192D01* X10581Y37184D01* X10578Y37176D01* X10577Y37167D01* X10577Y37159D01* X10579Y37150D01* X10582Y37142D01* X10587Y37135D01* X10593Y37128D01* X10600Y37123D01* X10605Y37120D01* Y35871D01* X10600Y35865D01* X10596Y35858D01* X10593Y35850D01* X10591Y35841D01* X10591Y35833D01* X10592Y35824D01* X10595Y35816D01* X10599Y35808D01* X10605Y35801D01* X10605Y35801D01* Y35192D01* X10605Y35192D01* X10601Y35184D01* X10598Y35176D01* X10597Y35167D01* X10597Y35159D01* X10599Y35150D01* X10602Y35142D01* X10605Y35138D01* Y23859D01* X10602Y23864D01* X10596Y23871D01* X10589Y23876D01* X10582Y23880D01* X10573Y23883D01* X10565Y23884D01* X10556Y23884D01* X10548Y23882D01* X10513Y23870D01* X10481Y23855D01* X10449Y23837D01* X10425Y23820D01* Y25166D01* X10435Y25159D01* X10467Y25141D01* X10500Y25127D01* X10534Y25115D01* X10543Y25113D01* X10552Y25113D01* X10560Y25115D01* X10568Y25117D01* X10576Y25122D01* X10583Y25127D01* X10589Y25134D01* X10593Y25141D01* X10596Y25149D01* X10598Y25158D01* X10598Y25167D01* X10597Y25175D01* X10594Y25183D01* X10590Y25191D01* X10584Y25198D01* X10577Y25204D01* X10570Y25208D01* X10562Y25211D01* X10536Y25220D01* X10511Y25231D01* X10488Y25244D01* X10465Y25259D01* X10444Y25276D01* X10425Y25295D01* Y25704D01* X10440Y25719D01* X10461Y25737D01* X10483Y25752D01* X10507Y25766D01* X10531Y25777D01* X10557Y25786D01* X10565Y25790D01* X10572Y25794D01* X10579Y25800D01* X10584Y25807D01* X10588Y25815D01* X10591Y25823D01* X10592Y25832D01* X10592Y25840D01* X10590Y25849D01* X10587Y25857D01* X10582Y25864D01* X10576Y25871D01* X10569Y25876D01* X10562Y25880D01* X10553Y25883D01* X10545Y25884D01* X10536Y25884D01* X10528Y25882D01* X10493Y25870D01* X10461Y25855D01* X10429Y25837D01* X10425Y25834D01* Y27153D01* X10447Y27141D01* X10480Y27127D01* X10514Y27115D01* X10523Y27113D01* X10532Y27113D01* X10540Y27115D01* X10548Y27117D01* X10556Y27122D01* X10563Y27127D01* X10569Y27134D01* X10573Y27141D01* X10576Y27149D01* X10578Y27158D01* X10578Y27167D01* X10577Y27175D01* X10574Y27183D01* X10570Y27191D01* X10564Y27198D01* X10557Y27204D01* X10550Y27208D01* X10542Y27211D01* X10516Y27220D01* X10491Y27231D01* X10468Y27244D01* X10445Y27259D01* X10425Y27276D01* Y27723D01* X10441Y27737D01* X10463Y27752D01* X10487Y27766D01* X10511Y27777D01* X10537Y27786D01* X10545Y27790D01* X10552Y27794D01* X10559Y27800D01* X10564Y27807D01* X10568Y27815D01* X10571Y27823D01* X10572Y27832D01* X10572Y27840D01* X10570Y27849D01* X10567Y27857D01* X10562Y27864D01* X10556Y27871D01* X10549Y27876D01* X10542Y27880D01* X10533Y27883D01* X10525Y27884D01* X10516Y27884D01* X10508Y27882D01* X10473Y27870D01* X10441Y27855D01* X10425Y27846D01* Y29142D01* X10427Y29141D01* X10460Y29127D01* X10494Y29115D01* X10503Y29113D01* X10512Y29113D01* X10520Y29115D01* X10528Y29117D01* X10536Y29122D01* X10543Y29127D01* X10549Y29134D01* X10553Y29141D01* X10556Y29149D01* X10558Y29158D01* X10558Y29167D01* X10557Y29175D01* X10554Y29183D01* X10550Y29191D01* X10544Y29198D01* X10537Y29204D01* X10530Y29208D01* X10522Y29211D01* X10496Y29220D01* X10471Y29231D01* X10448Y29244D01* X10425Y29259D01* Y29740D01* X10443Y29752D01* X10467Y29766D01* X10491Y29777D01* X10517Y29786D01* X10525Y29790D01* X10532Y29794D01* X10539Y29800D01* X10544Y29807D01* X10548Y29815D01* X10551Y29823D01* X10552Y29832D01* X10552Y29840D01* X10550Y29849D01* X10547Y29857D01* X10542Y29864D01* X10536Y29871D01* X10529Y29876D01* X10522Y29880D01* X10513Y29883D01* X10505Y29884D01* X10496Y29884D01* X10488Y29882D01* X10453Y29870D01* X10425Y29857D01* Y31133D01* X10440Y31127D01* X10474Y31115D01* X10483Y31113D01* X10492Y31113D01* X10500Y31115D01* X10508Y31117D01* X10516Y31122D01* X10523Y31127D01* X10529Y31134D01* X10533Y31141D01* X10536Y31149D01* X10538Y31158D01* X10538Y31167D01* X10537Y31175D01* X10534Y31183D01* X10530Y31191D01* X10524Y31198D01* X10517Y31204D01* X10510Y31208D01* X10502Y31211D01* X10476Y31220D01* X10451Y31231D01* X10428Y31244D01* X10425Y31246D01* Y31754D01* X10447Y31766D01* X10471Y31777D01* X10497Y31786D01* X10505Y31790D01* X10512Y31794D01* X10519Y31800D01* X10524Y31807D01* X10528Y31815D01* X10531Y31823D01* X10532Y31832D01* X10532Y31840D01* X10530Y31849D01* X10527Y31857D01* X10522Y31864D01* X10516Y31871D01* X10509Y31876D01* X10502Y31880D01* X10493Y31883D01* X10485Y31884D01* X10476Y31884D01* X10468Y31882D01* X10433Y31870D01* X10425Y31866D01* Y33125D01* X10454Y33115D01* X10463Y33113D01* X10472Y33113D01* X10480Y33115D01* X10488Y33117D01* X10496Y33122D01* X10503Y33127D01* X10509Y33134D01* X10513Y33141D01* X10516Y33149D01* X10518Y33158D01* X10518Y33167D01* X10517Y33175D01* X10514Y33183D01* X10510Y33191D01* X10504Y33198D01* X10497Y33204D01* X10490Y33208D01* X10482Y33211D01* X10456Y33220D01* X10431Y33231D01* X10425Y33234D01* Y33765D01* X10427Y33766D01* X10451Y33777D01* X10477Y33786D01* X10485Y33790D01* X10492Y33794D01* X10499Y33800D01* X10504Y33807D01* X10508Y33815D01* X10511Y33823D01* X10512Y33832D01* X10512Y33840D01* X10510Y33849D01* X10507Y33857D01* X10502Y33864D01* X10496Y33871D01* X10489Y33876D01* X10482Y33880D01* X10473Y33883D01* X10465Y33884D01* X10456Y33884D01* X10448Y33882D01* X10425Y33874D01* Y35118D01* X10434Y35115D01* X10443Y35113D01* X10452Y35113D01* X10460Y35115D01* X10468Y35117D01* X10476Y35122D01* X10483Y35127D01* X10489Y35134D01* X10493Y35141D01* X10496Y35149D01* X10498Y35158D01* X10498Y35167D01* X10497Y35175D01* X10494Y35183D01* X10490Y35191D01* X10484Y35198D01* X10477Y35204D01* X10470Y35208D01* X10462Y35211D01* X10436Y35220D01* X10425Y35225D01* Y35775D01* X10431Y35777D01* X10457Y35786D01* X10465Y35790D01* X10472Y35794D01* X10479Y35800D01* X10484Y35807D01* X10488Y35815D01* X10491Y35823D01* X10492Y35832D01* X10492Y35840D01* X10490Y35849D01* X10487Y35857D01* X10482Y35864D01* X10476Y35871D01* X10469Y35876D01* X10462Y35880D01* X10453Y35883D01* X10445Y35884D01* X10436Y35884D01* X10428Y35882D01* X10425Y35881D01* Y37113D01* X10432Y37113D01* X10440Y37115D01* X10448Y37117D01* X10456Y37122D01* X10463Y37127D01* X10469Y37134D01* X10473Y37141D01* X10476Y37149D01* X10478Y37158D01* X10478Y37167D01* X10477Y37175D01* X10474Y37183D01* X10470Y37191D01* X10464Y37198D01* X10457Y37204D01* X10450Y37208D01* X10442Y37211D01* X10425Y37217D01* Y37782D01* X10437Y37786D01* X10445Y37790D01* X10452Y37794D01* X10459Y37800D01* X10464Y37807D01* X10468Y37815D01* X10471Y37823D01* X10472Y37832D01* X10472Y37840D01* X10470Y37849D01* X10467Y37857D01* X10462Y37864D01* X10456Y37871D01* X10449Y37876D01* X10442Y37880D01* X10433Y37883D01* X10425Y37884D01* Y39116D01* X10428Y39117D01* X10436Y39122D01* X10443Y39127D01* X10449Y39134D01* X10453Y39141D01* X10456Y39149D01* X10458Y39158D01* X10458Y39167D01* X10457Y39175D01* X10454Y39183D01* X10450Y39191D01* X10444Y39198D01* X10437Y39204D01* X10430Y39208D01* X10425Y39210D01* Y39790D01* X10432Y39794D01* X10439Y39800D01* X10444Y39807D01* X10448Y39815D01* X10451Y39823D01* X10452Y39832D01* X10452Y39840D01* X10450Y39849D01* X10447Y39857D01* X10442Y39864D01* X10436Y39871D01* X10429Y39876D01* X10425Y39878D01* Y40000D01* G37* G36* X10605Y0D02*X10425D01* Y9374D01* X10434Y9349D01* X10449Y9316D01* X10467Y9284D01* X10488Y9255D01* X10512Y9227D01* X10537Y9202D01* X10565Y9179D01* X10595Y9159D01* X10605Y9153D01* Y7834D01* X10580Y7816D01* X10552Y7793D01* X10527Y7767D01* X10504Y7739D01* X10484Y7709D01* X10466Y7677D01* X10452Y7644D01* X10440Y7610D01* X10438Y7601D01* X10438Y7593D01* X10439Y7584D01* X10442Y7576D01* X10447Y7568D01* X10452Y7561D01* X10459Y7556D01* X10466Y7551D01* X10474Y7548D01* X10483Y7546D01* X10492Y7546D01* X10500Y7547D01* X10508Y7550D01* X10516Y7555D01* X10523Y7560D01* X10529Y7567D01* X10533Y7574D01* X10536Y7582D01* X10545Y7608D01* X10556Y7633D01* X10569Y7657D01* X10584Y7679D01* X10601Y7700D01* X10605Y7704D01* Y7295D01* X10605Y7295D01* X10587Y7316D01* X10572Y7338D01* X10558Y7362D01* X10547Y7386D01* X10538Y7412D01* X10534Y7420D01* X10530Y7427D01* X10524Y7434D01* X10517Y7439D01* X10509Y7443D01* X10501Y7446D01* X10492Y7447D01* X10484Y7447D01* X10475Y7445D01* X10467Y7442D01* X10460Y7437D01* X10453Y7431D01* X10448Y7424D01* X10444Y7417D01* X10441Y7409D01* X10440Y7400D01* X10440Y7391D01* X10442Y7383D01* X10454Y7349D01* X10469Y7316D01* X10487Y7284D01* X10508Y7255D01* X10532Y7227D01* X10557Y7202D01* X10585Y7179D01* X10605Y7166D01* Y5820D01* X10600Y5816D01* X10572Y5793D01* X10547Y5767D01* X10524Y5739D01* X10504Y5709D01* X10486Y5677D01* X10472Y5644D01* X10460Y5610D01* X10458Y5601D01* X10458Y5593D01* X10459Y5584D01* X10462Y5576D01* X10467Y5568D01* X10472Y5561D01* X10479Y5556D01* X10486Y5551D01* X10494Y5548D01* X10503Y5546D01* X10512Y5546D01* X10520Y5547D01* X10528Y5550D01* X10536Y5555D01* X10543Y5560D01* X10549Y5567D01* X10553Y5574D01* X10556Y5582D01* X10565Y5608D01* X10576Y5633D01* X10589Y5657D01* X10604Y5679D01* X10605Y5680D01* Y5319D01* X10592Y5338D01* X10578Y5362D01* X10567Y5386D01* X10558Y5412D01* X10554Y5420D01* X10550Y5427D01* X10544Y5434D01* X10537Y5439D01* X10529Y5443D01* X10521Y5446D01* X10512Y5447D01* X10504Y5447D01* X10495Y5445D01* X10487Y5442D01* X10480Y5437D01* X10473Y5431D01* X10468Y5424D01* X10464Y5417D01* X10461Y5409D01* X10460Y5400D01* X10460Y5391D01* X10462Y5383D01* X10474Y5349D01* X10489Y5316D01* X10507Y5284D01* X10528Y5255D01* X10552Y5227D01* X10577Y5202D01* X10605Y5179D01* Y3804D01* X10592Y3793D01* X10567Y3767D01* X10544Y3739D01* X10524Y3709D01* X10506Y3677D01* X10492Y3644D01* X10480Y3610D01* X10478Y3601D01* X10478Y3593D01* X10479Y3584D01* X10482Y3576D01* X10487Y3568D01* X10492Y3561D01* X10499Y3556D01* X10506Y3551D01* X10514Y3548D01* X10523Y3546D01* X10532Y3546D01* X10540Y3547D01* X10548Y3550D01* X10556Y3555D01* X10563Y3560D01* X10569Y3567D01* X10573Y3574D01* X10576Y3582D01* X10585Y3608D01* X10596Y3633D01* X10605Y3650D01* Y3349D01* X10598Y3362D01* X10587Y3386D01* X10578Y3412D01* X10574Y3420D01* X10570Y3427D01* X10564Y3434D01* X10557Y3439D01* X10549Y3443D01* X10541Y3446D01* X10532Y3447D01* X10524Y3447D01* X10515Y3445D01* X10507Y3442D01* X10500Y3437D01* X10493Y3431D01* X10488Y3424D01* X10484Y3417D01* X10481Y3409D01* X10480Y3400D01* X10480Y3391D01* X10482Y3383D01* X10494Y3349D01* X10509Y3316D01* X10527Y3284D01* X10548Y3255D01* X10572Y3227D01* X10597Y3202D01* X10605Y3196D01* Y1785D01* X10587Y1767D01* X10564Y1739D01* X10544Y1709D01* X10526Y1677D01* X10512Y1644D01* X10500Y1610D01* X10498Y1601D01* X10498Y1593D01* X10499Y1584D01* X10502Y1576D01* X10507Y1568D01* X10512Y1561D01* X10519Y1556D01* X10526Y1551D01* X10534Y1548D01* X10543Y1546D01* X10552Y1546D01* X10560Y1547D01* X10568Y1550D01* X10576Y1555D01* X10583Y1560D01* X10589Y1567D01* X10593Y1574D01* X10596Y1582D01* X10605Y1608D01* X10605Y1609D01* Y1391D01* X10598Y1412D01* X10594Y1420D01* X10590Y1427D01* X10584Y1434D01* X10577Y1439D01* X10569Y1443D01* X10561Y1446D01* X10552Y1447D01* X10544Y1447D01* X10535Y1445D01* X10527Y1442D01* X10520Y1437D01* X10513Y1431D01* X10508Y1424D01* X10504Y1417D01* X10501Y1409D01* X10500Y1400D01* X10500Y1391D01* X10502Y1383D01* X10514Y1349D01* X10529Y1316D01* X10547Y1284D01* X10568Y1255D01* X10592Y1227D01* X10605Y1214D01* Y0D01* G37* G36* Y9276D02*X10604Y9276D01* X10585Y9295D01* X10567Y9316D01* X10552Y9338D01* X10538Y9362D01* X10527Y9386D01* X10518Y9412D01* X10514Y9420D01* X10510Y9427D01* X10504Y9434D01* X10497Y9439D01* X10489Y9443D01* X10481Y9446D01* X10472Y9447D01* X10464Y9447D01* X10455Y9445D01* X10447Y9442D01* X10440Y9437D01* X10433Y9431D01* X10428Y9424D01* X10425Y9419D01* Y9571D01* X10427Y9568D01* X10432Y9561D01* X10439Y9556D01* X10446Y9551D01* X10454Y9548D01* X10463Y9546D01* X10472Y9546D01* X10480Y9547D01* X10488Y9550D01* X10496Y9555D01* X10503Y9560D01* X10509Y9567D01* X10513Y9574D01* X10516Y9582D01* X10525Y9608D01* X10536Y9633D01* X10549Y9657D01* X10564Y9679D01* X10581Y9700D01* X10600Y9719D01* X10605Y9723D01* Y9276D01* G37* G36* Y9846D02*X10589Y9837D01* X10560Y9816D01* X10532Y9793D01* X10507Y9767D01* X10484Y9739D01* X10464Y9709D01* X10446Y9677D01* X10432Y9644D01* X10425Y9625D01* Y11325D01* X10429Y11316D01* X10447Y11284D01* X10468Y11255D01* X10492Y11227D01* X10517Y11202D01* X10545Y11179D01* X10575Y11159D01* X10605Y11142D01* Y9846D01* G37* G36* Y11259D02*X10605Y11259D01* X10584Y11276D01* X10565Y11295D01* X10547Y11316D01* X10532Y11338D01* X10518Y11362D01* X10507Y11386D01* X10498Y11412D01* X10494Y11420D01* X10490Y11427D01* X10484Y11434D01* X10477Y11439D01* X10469Y11443D01* X10461Y11446D01* X10452Y11447D01* X10444Y11447D01* X10435Y11445D01* X10427Y11442D01* X10425Y11441D01* Y11552D01* X10426Y11551D01* X10434Y11548D01* X10443Y11546D01* X10452Y11546D01* X10460Y11547D01* X10468Y11550D01* X10476Y11555D01* X10483Y11560D01* X10489Y11567D01* X10493Y11574D01* X10496Y11582D01* X10505Y11608D01* X10516Y11633D01* X10529Y11657D01* X10544Y11679D01* X10561Y11700D01* X10580Y11719D01* X10601Y11737D01* X10605Y11740D01* Y11259D01* G37* G36* Y11857D02*X10601Y11855D01* X10569Y11837D01* X10540Y11816D01* X10512Y11793D01* X10487Y11767D01* X10464Y11739D01* X10444Y11709D01* X10426Y11677D01* X10425Y11675D01* Y13288D01* X10427Y13284D01* X10448Y13255D01* X10472Y13227D01* X10497Y13202D01* X10525Y13179D01* X10555Y13159D01* X10587Y13141D01* X10605Y13133D01* Y11857D01* G37* G36* Y13246D02*X10585Y13259D01* X10564Y13276D01* X10545Y13295D01* X10527Y13316D01* X10512Y13338D01* X10498Y13362D01* X10487Y13386D01* X10478Y13412D01* X10474Y13420D01* X10470Y13427D01* X10464Y13434D01* X10457Y13439D01* X10449Y13443D01* X10441Y13446D01* X10432Y13447D01* X10425Y13447D01* Y13546D01* X10432Y13546D01* X10440Y13547D01* X10448Y13550D01* X10456Y13555D01* X10463Y13560D01* X10469Y13567D01* X10473Y13574D01* X10476Y13582D01* X10485Y13608D01* X10496Y13633D01* X10509Y13657D01* X10524Y13679D01* X10541Y13700D01* X10560Y13719D01* X10581Y13737D01* X10603Y13752D01* X10605Y13754D01* Y13246D01* G37* G36* Y13866D02*X10581Y13855D01* X10549Y13837D01* X10520Y13816D01* X10492Y13793D01* X10467Y13767D01* X10444Y13739D01* X10425Y13711D01* Y15259D01* X10428Y15255D01* X10452Y15227D01* X10477Y15202D01* X10505Y15179D01* X10535Y15159D01* X10567Y15141D01* X10600Y15127D01* X10605Y15125D01* Y13866D01* G37* G36* Y15234D02*X10588Y15244D01* X10565Y15259D01* X10544Y15276D01* X10525Y15295D01* X10507Y15316D01* X10492Y15338D01* X10478Y15362D01* X10467Y15386D01* X10458Y15412D01* X10454Y15420D01* X10450Y15427D01* X10444Y15434D01* X10437Y15439D01* X10429Y15443D01* X10425Y15445D01* Y15549D01* X10428Y15550D01* X10436Y15555D01* X10443Y15560D01* X10449Y15567D01* X10453Y15574D01* X10456Y15582D01* X10465Y15608D01* X10476Y15633D01* X10489Y15657D01* X10504Y15679D01* X10521Y15700D01* X10540Y15719D01* X10561Y15737D01* X10583Y15752D01* X10605Y15765D01* Y15234D01* G37* G36* Y15874D02*X10593Y15870D01* X10561Y15855D01* X10529Y15837D01* X10500Y15816D01* X10472Y15793D01* X10447Y15767D01* X10425Y15740D01* Y17235D01* X10432Y17227D01* X10457Y17202D01* X10485Y17179D01* X10515Y17159D01* X10547Y17141D01* X10580Y17127D01* X10605Y17118D01* Y15874D01* G37* G36* Y17225D02*X10591Y17231D01* X10568Y17244D01* X10545Y17259D01* X10524Y17276D01* X10505Y17295D01* X10487Y17316D01* X10472Y17338D01* X10458Y17362D01* X10447Y17386D01* X10438Y17412D01* X10434Y17420D01* X10430Y17427D01* X10425Y17432D01* Y17563D01* X10429Y17567D01* X10433Y17574D01* X10436Y17582D01* X10445Y17608D01* X10456Y17633D01* X10469Y17657D01* X10484Y17679D01* X10501Y17700D01* X10520Y17719D01* X10541Y17737D01* X10563Y17752D01* X10587Y17766D01* X10605Y17775D01* Y17225D01* G37* G36* Y17881D02*X10573Y17870D01* X10541Y17855D01* X10509Y17837D01* X10480Y17816D01* X10452Y17793D01* X10427Y17767D01* X10425Y17765D01* Y19214D01* X10437Y19202D01* X10465Y19179D01* X10495Y19159D01* X10527Y19141D01* X10560Y19127D01* X10594Y19115D01* X10603Y19113D01* X10605D01* Y17881D01* G37* G36* Y19217D02*X10596Y19220D01* X10571Y19231D01* X10548Y19244D01* X10525Y19259D01* X10504Y19276D01* X10485Y19295D01* X10467Y19316D01* X10452Y19338D01* X10438Y19362D01* X10427Y19386D01* X10425Y19391D01* Y19609D01* X10436Y19633D01* X10449Y19657D01* X10464Y19679D01* X10481Y19700D01* X10500Y19719D01* X10521Y19737D01* X10543Y19752D01* X10567Y19766D01* X10591Y19777D01* X10605Y19782D01* Y19217D01* G37* G36* Y19884D02*X10605Y19884D01* X10596Y19884D01* X10588Y19882D01* X10553Y19870D01* X10521Y19855D01* X10489Y19837D01* X10460Y19816D01* X10432Y19793D01* X10425Y19785D01* Y21196D01* X10445Y21179D01* X10475Y21159D01* X10507Y21141D01* X10540Y21127D01* X10574Y21115D01* X10583Y21113D01* X10592Y21113D01* X10600Y21115D01* X10605Y21116D01* Y19884D01* G37* G36* Y21210D02*X10602Y21211D01* X10576Y21220D01* X10551Y21231D01* X10528Y21244D01* X10505Y21259D01* X10484Y21276D01* X10465Y21295D01* X10447Y21316D01* X10432Y21338D01* X10425Y21349D01* Y21650D01* X10429Y21657D01* X10444Y21679D01* X10461Y21700D01* X10480Y21719D01* X10501Y21737D01* X10523Y21752D01* X10547Y21766D01* X10571Y21777D01* X10597Y21786D01* X10605Y21790D01* X10605Y21790D01* Y21210D01* G37* G36* Y21878D02*X10602Y21880D01* X10593Y21883D01* X10585Y21884D01* X10576Y21884D01* X10568Y21882D01* X10533Y21870D01* X10501Y21855D01* X10469Y21837D01* X10440Y21816D01* X10425Y21804D01* Y23179D01* X10425Y23179D01* X10455Y23159D01* X10487Y23141D01* X10520Y23127D01* X10554Y23115D01* X10563Y23113D01* X10572Y23113D01* X10580Y23115D01* X10588Y23117D01* X10596Y23122D01* X10603Y23127D01* X10605Y23130D01* Y21878D01* G37* G36* Y23197D02*X10604Y23198D01* X10597Y23204D01* X10590Y23208D01* X10582Y23211D01* X10556Y23220D01* X10531Y23231D01* X10508Y23244D01* X10485Y23259D01* X10464Y23276D01* X10445Y23295D01* X10427Y23316D01* X10425Y23319D01* Y23680D01* X10441Y23700D01* X10460Y23719D01* X10481Y23737D01* X10503Y23752D01* X10527Y23766D01* X10551Y23777D01* X10577Y23786D01* X10585Y23790D01* X10592Y23794D01* X10599Y23800D01* X10604Y23807D01* X10605Y23809D01* Y23197D01* G37* G36* Y40000D02*X10864D01* Y39674D01* X10860Y39683D01* X10842Y39715D01* X10821Y39744D01* X10797Y39772D01* X10772Y39797D01* X10744Y39820D01* X10714Y39840D01* X10682Y39858D01* X10649Y39873D01* X10615Y39884D01* X10606Y39886D01* X10605D01* Y40000D01* G37* G36* Y39782D02*X10613Y39779D01* X10638Y39768D01* X10661Y39755D01* X10684Y39740D01* X10705Y39723D01* X10724Y39704D01* X10742Y39683D01* X10757Y39661D01* X10771Y39637D01* X10782Y39613D01* X10791Y39587D01* X10795Y39579D01* X10799Y39572D01* X10805Y39565D01* X10812Y39560D01* X10820Y39556D01* X10828Y39553D01* X10837Y39552D01* X10845Y39552D01* X10854Y39554D01* X10862Y39557D01* X10864Y39559D01* Y39447D01* X10863Y39448D01* X10855Y39451D01* X10846Y39453D01* X10837Y39453D01* X10829Y39452D01* X10821Y39449D01* X10813Y39445D01* X10806Y39439D01* X10800Y39433D01* X10796Y39425D01* X10793Y39417D01* X10784Y39391D01* X10773Y39366D01* X10760Y39343D01* X10745Y39320D01* X10728Y39299D01* X10709Y39280D01* X10688Y39262D01* X10666Y39247D01* X10642Y39233D01* X10618Y39222D01* X10605Y39217D01* Y39782D01* G37* G36* Y39115D02*X10613Y39115D01* X10621Y39117D01* X10656Y39129D01* X10688Y39144D01* X10720Y39162D01* X10749Y39183D01* X10777Y39207D01* X10802Y39232D01* X10825Y39260D01* X10845Y39290D01* X10863Y39322D01* X10864Y39324D01* Y37711D01* X10862Y37715D01* X10841Y37744D01* X10817Y37772D01* X10792Y37797D01* X10764Y37820D01* X10734Y37840D01* X10702Y37858D01* X10669Y37873D01* X10635Y37884D01* X10626Y37886D01* X10617Y37886D01* X10609Y37885D01* X10605Y37883D01* Y39115D01* G37* G36* Y37789D02*X10607Y37788D01* X10633Y37779D01* X10658Y37768D01* X10681Y37755D01* X10704Y37740D01* X10725Y37723D01* X10744Y37704D01* X10762Y37683D01* X10777Y37661D01* X10791Y37637D01* X10802Y37613D01* X10811Y37587D01* X10815Y37579D01* X10819Y37572D01* X10825Y37565D01* X10832Y37560D01* X10840Y37556D01* X10848Y37553D01* X10857Y37552D01* X10864Y37552D01* Y37453D01* X10857Y37453D01* X10849Y37452D01* X10841Y37449D01* X10833Y37445D01* X10826Y37439D01* X10820Y37433D01* X10816Y37425D01* X10813Y37417D01* X10804Y37391D01* X10793Y37366D01* X10780Y37343D01* X10765Y37320D01* X10748Y37299D01* X10729Y37280D01* X10708Y37262D01* X10686Y37247D01* X10662Y37233D01* X10638Y37222D01* X10612Y37213D01* X10605Y37210D01* Y37789D01* G37* G36* Y37120D02*X10607Y37119D01* X10616Y37116D01* X10624Y37115D01* X10633Y37115D01* X10641Y37117D01* X10676Y37129D01* X10708Y37144D01* X10740Y37162D01* X10769Y37183D01* X10797Y37207D01* X10822Y37232D01* X10845Y37260D01* X10864Y37288D01* Y35740D01* X10861Y35744D01* X10837Y35772D01* X10812Y35797D01* X10784Y35820D01* X10754Y35840D01* X10722Y35858D01* X10689Y35873D01* X10655Y35884D01* X10646Y35886D01* X10637Y35886D01* X10629Y35885D01* X10621Y35882D01* X10613Y35878D01* X10606Y35872D01* X10605Y35871D01* Y37120D01* G37* G36* Y35801D02*X10612Y35796D01* X10619Y35791D01* X10627Y35788D01* X10653Y35779D01* X10678Y35768D01* X10701Y35755D01* X10724Y35740D01* X10745Y35723D01* X10764Y35704D01* X10782Y35683D01* X10797Y35661D01* X10811Y35637D01* X10822Y35613D01* X10831Y35587D01* X10835Y35579D01* X10839Y35572D01* X10845Y35565D01* X10852Y35560D01* X10860Y35556D01* X10864Y35555D01* Y35450D01* X10861Y35449D01* X10853Y35445D01* X10846Y35439D01* X10840Y35433D01* X10836Y35425D01* X10833Y35417D01* X10824Y35391D01* X10813Y35366D01* X10800Y35343D01* X10785Y35320D01* X10768Y35299D01* X10749Y35280D01* X10728Y35262D01* X10706Y35247D01* X10682Y35233D01* X10658Y35222D01* X10632Y35213D01* X10624Y35209D01* X10617Y35205D01* X10610Y35199D01* X10605Y35192D01* Y35801D01* G37* G36* Y35138D02*X10607Y35135D01* X10613Y35128D01* X10620Y35123D01* X10627Y35119D01* X10636Y35116D01* X10644Y35115D01* X10653Y35115D01* X10661Y35117D01* X10696Y35129D01* X10728Y35144D01* X10760Y35162D01* X10789Y35183D01* X10817Y35207D01* X10842Y35232D01* X10864Y35259D01* Y33764D01* X10857Y33772D01* X10832Y33797D01* X10804Y33820D01* X10774Y33840D01* X10742Y33858D01* X10709Y33873D01* X10675Y33884D01* X10666Y33886D01* X10657Y33886D01* X10649Y33885D01* X10641Y33882D01* X10633Y33878D01* X10626Y33872D01* X10620Y33865D01* X10616Y33858D01* X10613Y33850D01* X10611Y33841D01* X10611Y33833D01* X10612Y33824D01* X10615Y33816D01* X10619Y33808D01* X10625Y33801D01* X10632Y33796D01* X10639Y33791D01* X10647Y33788D01* X10673Y33779D01* X10698Y33768D01* X10721Y33755D01* X10744Y33740D01* X10765Y33723D01* X10784Y33704D01* X10802Y33683D01* X10817Y33661D01* X10831Y33637D01* X10842Y33613D01* X10851Y33587D01* X10855Y33579D01* X10859Y33572D01* X10864Y33567D01* Y33437D01* X10860Y33433D01* X10856Y33425D01* X10853Y33417D01* X10844Y33391D01* X10833Y33366D01* X10820Y33343D01* X10805Y33320D01* X10788Y33299D01* X10769Y33280D01* X10748Y33262D01* X10726Y33247D01* X10702Y33233D01* X10678Y33222D01* X10652Y33213D01* X10644Y33209D01* X10637Y33205D01* X10630Y33199D01* X10625Y33192D01* X10621Y33184D01* X10618Y33176D01* X10617Y33167D01* X10617Y33159D01* X10619Y33150D01* X10622Y33142D01* X10627Y33135D01* X10633Y33128D01* X10640Y33123D01* X10647Y33119D01* X10656Y33116D01* X10664Y33115D01* X10673Y33115D01* X10681Y33117D01* X10716Y33129D01* X10748Y33144D01* X10780Y33162D01* X10809Y33183D01* X10837Y33207D01* X10862Y33232D01* X10864Y33235D01* Y31785D01* X10852Y31797D01* X10824Y31820D01* X10794Y31840D01* X10762Y31858D01* X10729Y31873D01* X10695Y31884D01* X10686Y31886D01* X10677Y31886D01* X10669Y31885D01* X10661Y31882D01* X10653Y31878D01* X10646Y31872D01* X10640Y31865D01* X10636Y31858D01* X10633Y31850D01* X10631Y31841D01* X10631Y31833D01* X10632Y31824D01* X10635Y31816D01* X10639Y31808D01* X10645Y31801D01* X10652Y31796D01* X10659Y31791D01* X10667Y31788D01* X10693Y31779D01* X10718Y31768D01* X10741Y31755D01* X10764Y31740D01* X10785Y31723D01* X10804Y31704D01* X10822Y31683D01* X10837Y31661D01* X10851Y31637D01* X10862Y31613D01* X10864Y31608D01* Y31391D01* X10853Y31366D01* X10840Y31343D01* X10825Y31320D01* X10808Y31299D01* X10789Y31280D01* X10768Y31262D01* X10746Y31247D01* X10722Y31233D01* X10698Y31222D01* X10672Y31213D01* X10664Y31209D01* X10657Y31205D01* X10650Y31199D01* X10645Y31192D01* X10641Y31184D01* X10638Y31176D01* X10637Y31167D01* X10637Y31159D01* X10639Y31150D01* X10642Y31142D01* X10647Y31135D01* X10653Y31128D01* X10660Y31123D01* X10667Y31119D01* X10676Y31116D01* X10684Y31115D01* X10693Y31115D01* X10701Y31117D01* X10736Y31129D01* X10768Y31144D01* X10800Y31162D01* X10829Y31183D01* X10857Y31207D01* X10864Y31214D01* Y29804D01* X10844Y29820D01* X10814Y29840D01* X10782Y29858D01* X10749Y29873D01* X10715Y29884D01* X10706Y29886D01* X10697Y29886D01* X10689Y29885D01* X10681Y29882D01* X10673Y29878D01* X10666Y29872D01* X10660Y29865D01* X10656Y29858D01* X10653Y29850D01* X10651Y29841D01* X10651Y29833D01* X10652Y29824D01* X10655Y29816D01* X10659Y29808D01* X10665Y29801D01* X10672Y29796D01* X10679Y29791D01* X10687Y29788D01* X10713Y29779D01* X10738Y29768D01* X10761Y29755D01* X10784Y29740D01* X10805Y29723D01* X10824Y29704D01* X10842Y29683D01* X10857Y29661D01* X10864Y29650D01* Y29350D01* X10860Y29343D01* X10845Y29320D01* X10828Y29299D01* X10809Y29280D01* X10788Y29262D01* X10766Y29247D01* X10742Y29233D01* X10718Y29222D01* X10692Y29213D01* X10684Y29209D01* X10677Y29205D01* X10670Y29199D01* X10665Y29192D01* X10661Y29184D01* X10658Y29176D01* X10657Y29167D01* X10657Y29159D01* X10659Y29150D01* X10662Y29142D01* X10667Y29135D01* X10673Y29128D01* X10680Y29123D01* X10687Y29119D01* X10696Y29116D01* X10704Y29115D01* X10713Y29115D01* X10721Y29117D01* X10756Y29129D01* X10788Y29144D01* X10820Y29162D01* X10849Y29183D01* X10864Y29196D01* Y27820D01* X10864Y27820D01* X10834Y27840D01* X10802Y27858D01* X10769Y27873D01* X10735Y27884D01* X10726Y27886D01* X10717Y27886D01* X10709Y27885D01* X10701Y27882D01* X10693Y27878D01* X10686Y27872D01* X10680Y27865D01* X10676Y27858D01* X10673Y27850D01* X10671Y27841D01* X10671Y27833D01* X10672Y27824D01* X10675Y27816D01* X10679Y27808D01* X10685Y27801D01* X10692Y27796D01* X10699Y27791D01* X10707Y27788D01* X10733Y27779D01* X10758Y27768D01* X10781Y27755D01* X10804Y27740D01* X10825Y27723D01* X10844Y27704D01* X10862Y27683D01* X10864Y27680D01* Y27319D01* X10848Y27299D01* X10829Y27280D01* X10808Y27262D01* X10786Y27247D01* X10762Y27233D01* X10738Y27222D01* X10712Y27213D01* X10704Y27209D01* X10697Y27205D01* X10690Y27199D01* X10685Y27192D01* X10681Y27184D01* X10678Y27176D01* X10677Y27167D01* X10677Y27159D01* X10679Y27150D01* X10682Y27142D01* X10687Y27135D01* X10693Y27128D01* X10700Y27123D01* X10707Y27119D01* X10716Y27116D01* X10724Y27115D01* X10733Y27115D01* X10741Y27117D01* X10776Y27129D01* X10808Y27144D01* X10840Y27162D01* X10864Y27180D01* Y25834D01* X10854Y25840D01* X10822Y25858D01* X10789Y25873D01* X10755Y25884D01* X10746Y25886D01* X10737Y25886D01* X10729Y25885D01* X10721Y25882D01* X10713Y25878D01* X10706Y25872D01* X10700Y25865D01* X10696Y25858D01* X10693Y25850D01* X10691Y25841D01* X10691Y25833D01* X10692Y25824D01* X10695Y25816D01* X10699Y25808D01* X10705Y25801D01* X10712Y25796D01* X10719Y25791D01* X10727Y25788D01* X10753Y25779D01* X10778Y25768D01* X10801Y25755D01* X10824Y25740D01* X10845Y25723D01* X10864Y25704D01* Y25295D01* X10849Y25280D01* X10828Y25262D01* X10806Y25247D01* X10782Y25233D01* X10758Y25222D01* X10732Y25213D01* X10724Y25209D01* X10717Y25205D01* X10710Y25199D01* X10705Y25192D01* X10701Y25184D01* X10698Y25176D01* X10697Y25167D01* X10697Y25159D01* X10699Y25150D01* X10702Y25142D01* X10707Y25135D01* X10713Y25128D01* X10720Y25123D01* X10727Y25119D01* X10736Y25116D01* X10744Y25115D01* X10753Y25115D01* X10761Y25117D01* X10796Y25129D01* X10828Y25144D01* X10860Y25162D01* X10864Y25165D01* Y23846D01* X10842Y23858D01* X10809Y23873D01* X10775Y23884D01* X10766Y23886D01* X10757Y23886D01* X10749Y23885D01* X10741Y23882D01* X10733Y23878D01* X10726Y23872D01* X10720Y23865D01* X10716Y23858D01* X10713Y23850D01* X10711Y23841D01* X10711Y23833D01* X10712Y23824D01* X10715Y23816D01* X10719Y23808D01* X10725Y23801D01* X10732Y23796D01* X10739Y23791D01* X10747Y23788D01* X10773Y23779D01* X10798Y23768D01* X10821Y23755D01* X10844Y23740D01* X10864Y23724D01* Y23276D01* X10848Y23262D01* X10826Y23247D01* X10802Y23233D01* X10778Y23222D01* X10752Y23213D01* X10744Y23209D01* X10737Y23205D01* X10730Y23199D01* X10725Y23192D01* X10721Y23184D01* X10718Y23176D01* X10717Y23167D01* X10717Y23159D01* X10719Y23150D01* X10722Y23142D01* X10727Y23135D01* X10733Y23128D01* X10740Y23123D01* X10747Y23119D01* X10756Y23116D01* X10764Y23115D01* X10773Y23115D01* X10781Y23117D01* X10816Y23129D01* X10848Y23144D01* X10864Y23153D01* Y21857D01* X10862Y21858D01* X10829Y21873D01* X10795Y21884D01* X10786Y21886D01* X10777Y21886D01* X10769Y21885D01* X10761Y21882D01* X10753Y21878D01* X10746Y21872D01* X10740Y21865D01* X10736Y21858D01* X10733Y21850D01* X10731Y21841D01* X10731Y21833D01* X10732Y21824D01* X10735Y21816D01* X10739Y21808D01* X10745Y21801D01* X10752Y21796D01* X10759Y21791D01* X10767Y21788D01* X10793Y21779D01* X10818Y21768D01* X10841Y21755D01* X10864Y21740D01* Y21259D01* X10846Y21247D01* X10822Y21233D01* X10798Y21222D01* X10772Y21213D01* X10764Y21209D01* X10757Y21205D01* X10750Y21199D01* X10745Y21192D01* X10741Y21184D01* X10738Y21176D01* X10737Y21167D01* X10737Y21159D01* X10739Y21150D01* X10742Y21142D01* X10747Y21135D01* X10753Y21128D01* X10760Y21123D01* X10767Y21119D01* X10776Y21116D01* X10784Y21115D01* X10793Y21115D01* X10801Y21117D01* X10836Y21129D01* X10864Y21142D01* Y19866D01* X10849Y19873D01* X10815Y19884D01* X10806Y19886D01* X10797Y19886D01* X10789Y19885D01* X10781Y19882D01* X10773Y19878D01* X10766Y19872D01* X10760Y19865D01* X10756Y19858D01* X10753Y19850D01* X10751Y19841D01* X10751Y19833D01* X10752Y19824D01* X10755Y19816D01* X10759Y19808D01* X10765Y19801D01* X10772Y19796D01* X10779Y19791D01* X10787Y19788D01* X10813Y19779D01* X10838Y19768D01* X10861Y19755D01* X10864Y19754D01* Y19246D01* X10842Y19233D01* X10818Y19222D01* X10792Y19213D01* X10784Y19209D01* X10777Y19205D01* X10770Y19199D01* X10765Y19192D01* X10761Y19184D01* X10758Y19176D01* X10757Y19167D01* X10757Y19159D01* X10759Y19150D01* X10762Y19142D01* X10767Y19135D01* X10773Y19128D01* X10780Y19123D01* X10787Y19119D01* X10796Y19116D01* X10804Y19115D01* X10813Y19115D01* X10821Y19117D01* X10856Y19129D01* X10864Y19133D01* Y17874D01* X10835Y17884D01* X10826Y17886D01* X10817Y17886D01* X10809Y17885D01* X10801Y17882D01* X10793Y17878D01* X10786Y17872D01* X10780Y17865D01* X10776Y17858D01* X10773Y17850D01* X10771Y17841D01* X10771Y17833D01* X10772Y17824D01* X10775Y17816D01* X10779Y17808D01* X10785Y17801D01* X10792Y17796D01* X10799Y17791D01* X10807Y17788D01* X10833Y17779D01* X10858Y17768D01* X10864Y17765D01* Y17234D01* X10862Y17233D01* X10838Y17222D01* X10812Y17213D01* X10804Y17209D01* X10797Y17205D01* X10790Y17199D01* X10785Y17192D01* X10781Y17184D01* X10778Y17176D01* X10777Y17167D01* X10777Y17159D01* X10779Y17150D01* X10782Y17142D01* X10787Y17135D01* X10793Y17128D01* X10800Y17123D01* X10807Y17119D01* X10816Y17116D01* X10824Y17115D01* X10833Y17115D01* X10841Y17117D01* X10864Y17125D01* Y15881D01* X10855Y15884D01* X10846Y15886D01* X10837Y15886D01* X10829Y15885D01* X10821Y15882D01* X10813Y15878D01* X10806Y15872D01* X10800Y15865D01* X10796Y15858D01* X10793Y15850D01* X10791Y15841D01* X10791Y15833D01* X10792Y15824D01* X10795Y15816D01* X10799Y15808D01* X10805Y15801D01* X10812Y15796D01* X10819Y15791D01* X10827Y15788D01* X10853Y15779D01* X10864Y15774D01* Y15225D01* X10858Y15222D01* X10832Y15213D01* X10824Y15209D01* X10817Y15205D01* X10810Y15199D01* X10805Y15192D01* X10801Y15184D01* X10798Y15176D01* X10797Y15167D01* X10797Y15159D01* X10799Y15150D01* X10802Y15142D01* X10807Y15135D01* X10813Y15128D01* X10820Y15123D01* X10827Y15119D01* X10836Y15116D01* X10844Y15115D01* X10853Y15115D01* X10861Y15117D01* X10864Y15118D01* Y13886D01* X10857Y13886D01* X10849Y13885D01* X10841Y13882D01* X10833Y13878D01* X10826Y13872D01* X10820Y13865D01* X10816Y13858D01* X10813Y13850D01* X10811Y13841D01* X10811Y13833D01* X10812Y13824D01* X10815Y13816D01* X10819Y13808D01* X10825Y13801D01* X10832Y13796D01* X10839Y13791D01* X10847Y13788D01* X10864Y13782D01* Y13217D01* X10852Y13213D01* X10844Y13209D01* X10837Y13205D01* X10830Y13199D01* X10825Y13192D01* X10821Y13184D01* X10818Y13176D01* X10817Y13167D01* X10817Y13159D01* X10819Y13150D01* X10822Y13142D01* X10827Y13135D01* X10833Y13128D01* X10840Y13123D01* X10847Y13119D01* X10856Y13116D01* X10864Y13115D01* Y11883D01* X10861Y11882D01* X10853Y11878D01* X10846Y11872D01* X10840Y11865D01* X10836Y11858D01* X10833Y11850D01* X10831Y11841D01* X10831Y11833D01* X10832Y11824D01* X10835Y11816D01* X10839Y11808D01* X10845Y11801D01* X10852Y11796D01* X10859Y11791D01* X10864Y11789D01* Y11209D01* X10857Y11205D01* X10850Y11199D01* X10845Y11192D01* X10841Y11184D01* X10838Y11176D01* X10837Y11167D01* X10837Y11159D01* X10839Y11150D01* X10842Y11142D01* X10847Y11135D01* X10853Y11128D01* X10860Y11123D01* X10864Y11121D01* Y9870D01* X10860Y9865D01* X10856Y9858D01* X10853Y9850D01* X10851Y9841D01* X10851Y9833D01* X10852Y9824D01* X10855Y9816D01* X10859Y9808D01* X10864Y9802D01* Y9190D01* X10861Y9184D01* X10858Y9176D01* X10857Y9167D01* X10857Y9159D01* X10859Y9150D01* X10862Y9142D01* X10864Y9140D01* Y0D01* X10605D01* Y1214D01* X10617Y1202D01* X10645Y1179D01* X10675Y1159D01* X10707Y1141D01* X10740Y1127D01* X10774Y1115D01* X10783Y1113D01* X10792Y1113D01* X10800Y1115D01* X10808Y1117D01* X10816Y1122D01* X10823Y1127D01* X10829Y1134D01* X10833Y1141D01* X10836Y1149D01* X10838Y1158D01* X10838Y1167D01* X10837Y1175D01* X10834Y1183D01* X10830Y1191D01* X10824Y1198D01* X10817Y1204D01* X10810Y1208D01* X10802Y1211D01* X10776Y1220D01* X10751Y1231D01* X10728Y1244D01* X10705Y1259D01* X10684Y1276D01* X10665Y1295D01* X10647Y1316D01* X10632Y1338D01* X10618Y1362D01* X10607Y1386D01* X10605Y1391D01* Y1609D01* X10616Y1633D01* X10629Y1657D01* X10644Y1679D01* X10661Y1700D01* X10680Y1719D01* X10701Y1737D01* X10723Y1752D01* X10747Y1766D01* X10771Y1777D01* X10797Y1786D01* X10805Y1790D01* X10812Y1794D01* X10819Y1800D01* X10824Y1807D01* X10828Y1815D01* X10831Y1823D01* X10832Y1832D01* X10832Y1840D01* X10830Y1849D01* X10827Y1857D01* X10822Y1864D01* X10816Y1871D01* X10809Y1876D01* X10802Y1880D01* X10793Y1883D01* X10785Y1884D01* X10776Y1884D01* X10768Y1882D01* X10733Y1870D01* X10701Y1855D01* X10669Y1837D01* X10640Y1816D01* X10612Y1793D01* X10605Y1785D01* Y3196D01* X10625Y3179D01* X10655Y3159D01* X10687Y3141D01* X10720Y3127D01* X10754Y3115D01* X10763Y3113D01* X10772Y3113D01* X10780Y3115D01* X10788Y3117D01* X10796Y3122D01* X10803Y3127D01* X10809Y3134D01* X10813Y3141D01* X10816Y3149D01* X10818Y3158D01* X10818Y3167D01* X10817Y3175D01* X10814Y3183D01* X10810Y3191D01* X10804Y3198D01* X10797Y3204D01* X10790Y3208D01* X10782Y3211D01* X10756Y3220D01* X10731Y3231D01* X10708Y3244D01* X10685Y3259D01* X10664Y3276D01* X10645Y3295D01* X10627Y3316D01* X10612Y3338D01* X10605Y3349D01* Y3650D01* X10609Y3657D01* X10624Y3679D01* X10641Y3700D01* X10660Y3719D01* X10681Y3737D01* X10703Y3752D01* X10727Y3766D01* X10751Y3777D01* X10777Y3786D01* X10785Y3790D01* X10792Y3794D01* X10799Y3800D01* X10804Y3807D01* X10808Y3815D01* X10811Y3823D01* X10812Y3832D01* X10812Y3840D01* X10810Y3849D01* X10807Y3857D01* X10802Y3864D01* X10796Y3871D01* X10789Y3876D01* X10782Y3880D01* X10773Y3883D01* X10765Y3884D01* X10756Y3884D01* X10748Y3882D01* X10713Y3870D01* X10681Y3855D01* X10649Y3837D01* X10620Y3816D01* X10605Y3804D01* Y5179D01* X10605Y5179D01* X10635Y5159D01* X10667Y5141D01* X10700Y5127D01* X10734Y5115D01* X10743Y5113D01* X10752Y5113D01* X10760Y5115D01* X10768Y5117D01* X10776Y5122D01* X10783Y5127D01* X10789Y5134D01* X10793Y5141D01* X10796Y5149D01* X10798Y5158D01* X10798Y5167D01* X10797Y5175D01* X10794Y5183D01* X10790Y5191D01* X10784Y5198D01* X10777Y5204D01* X10770Y5208D01* X10762Y5211D01* X10736Y5220D01* X10711Y5231D01* X10688Y5244D01* X10665Y5259D01* X10644Y5276D01* X10625Y5295D01* X10607Y5316D01* X10605Y5319D01* Y5680D01* X10621Y5700D01* X10640Y5719D01* X10661Y5737D01* X10683Y5752D01* X10707Y5766D01* X10731Y5777D01* X10757Y5786D01* X10765Y5790D01* X10772Y5794D01* X10779Y5800D01* X10784Y5807D01* X10788Y5815D01* X10791Y5823D01* X10792Y5832D01* X10792Y5840D01* X10790Y5849D01* X10787Y5857D01* X10782Y5864D01* X10776Y5871D01* X10769Y5876D01* X10762Y5880D01* X10753Y5883D01* X10745Y5884D01* X10736Y5884D01* X10728Y5882D01* X10693Y5870D01* X10661Y5855D01* X10629Y5837D01* X10605Y5820D01* Y7166D01* X10615Y7159D01* X10647Y7141D01* X10680Y7127D01* X10714Y7115D01* X10723Y7113D01* X10732Y7113D01* X10740Y7115D01* X10748Y7117D01* X10756Y7122D01* X10763Y7127D01* X10769Y7134D01* X10773Y7141D01* X10776Y7149D01* X10778Y7158D01* X10778Y7167D01* X10777Y7175D01* X10774Y7183D01* X10770Y7191D01* X10764Y7198D01* X10757Y7204D01* X10750Y7208D01* X10742Y7211D01* X10716Y7220D01* X10691Y7231D01* X10668Y7244D01* X10645Y7259D01* X10624Y7276D01* X10605Y7295D01* Y7704D01* X10620Y7719D01* X10641Y7737D01* X10663Y7752D01* X10687Y7766D01* X10711Y7777D01* X10737Y7786D01* X10745Y7790D01* X10752Y7794D01* X10759Y7800D01* X10764Y7807D01* X10768Y7815D01* X10771Y7823D01* X10772Y7832D01* X10772Y7840D01* X10770Y7849D01* X10767Y7857D01* X10762Y7864D01* X10756Y7871D01* X10749Y7876D01* X10742Y7880D01* X10733Y7883D01* X10725Y7884D01* X10716Y7884D01* X10708Y7882D01* X10673Y7870D01* X10641Y7855D01* X10609Y7837D01* X10605Y7834D01* Y9153D01* X10627Y9141D01* X10660Y9127D01* X10694Y9115D01* X10703Y9113D01* X10712Y9113D01* X10720Y9115D01* X10728Y9117D01* X10736Y9122D01* X10743Y9127D01* X10749Y9134D01* X10753Y9141D01* X10756Y9149D01* X10758Y9158D01* X10758Y9167D01* X10757Y9175D01* X10754Y9183D01* X10750Y9191D01* X10744Y9198D01* X10737Y9204D01* X10730Y9208D01* X10722Y9211D01* X10696Y9220D01* X10671Y9231D01* X10648Y9244D01* X10625Y9259D01* X10605Y9276D01* Y9723D01* X10621Y9737D01* X10643Y9752D01* X10667Y9766D01* X10691Y9777D01* X10717Y9786D01* X10725Y9790D01* X10732Y9794D01* X10739Y9800D01* X10744Y9807D01* X10748Y9815D01* X10751Y9823D01* X10752Y9832D01* X10752Y9840D01* X10750Y9849D01* X10747Y9857D01* X10742Y9864D01* X10736Y9871D01* X10729Y9876D01* X10722Y9880D01* X10713Y9883D01* X10705Y9884D01* X10696Y9884D01* X10688Y9882D01* X10653Y9870D01* X10621Y9855D01* X10605Y9846D01* Y11142D01* X10607Y11141D01* X10640Y11127D01* X10674Y11115D01* X10683Y11113D01* X10692Y11113D01* X10700Y11115D01* X10708Y11117D01* X10716Y11122D01* X10723Y11127D01* X10729Y11134D01* X10733Y11141D01* X10736Y11149D01* X10738Y11158D01* X10738Y11167D01* X10737Y11175D01* X10734Y11183D01* X10730Y11191D01* X10724Y11198D01* X10717Y11204D01* X10710Y11208D01* X10702Y11211D01* X10676Y11220D01* X10651Y11231D01* X10628Y11244D01* X10605Y11259D01* Y11740D01* X10623Y11752D01* X10647Y11766D01* X10671Y11777D01* X10697Y11786D01* X10705Y11790D01* X10712Y11794D01* X10719Y11800D01* X10724Y11807D01* X10728Y11815D01* X10731Y11823D01* X10732Y11832D01* X10732Y11840D01* X10730Y11849D01* X10727Y11857D01* X10722Y11864D01* X10716Y11871D01* X10709Y11876D01* X10702Y11880D01* X10693Y11883D01* X10685Y11884D01* X10676Y11884D01* X10668Y11882D01* X10633Y11870D01* X10605Y11857D01* Y13133D01* X10620Y13127D01* X10654Y13115D01* X10663Y13113D01* X10672Y13113D01* X10680Y13115D01* X10688Y13117D01* X10696Y13122D01* X10703Y13127D01* X10709Y13134D01* X10713Y13141D01* X10716Y13149D01* X10718Y13158D01* X10718Y13167D01* X10717Y13175D01* X10714Y13183D01* X10710Y13191D01* X10704Y13198D01* X10697Y13204D01* X10690Y13208D01* X10682Y13211D01* X10656Y13220D01* X10631Y13231D01* X10608Y13244D01* X10605Y13246D01* Y13754D01* X10627Y13766D01* X10651Y13777D01* X10677Y13786D01* X10685Y13790D01* X10692Y13794D01* X10699Y13800D01* X10704Y13807D01* X10708Y13815D01* X10711Y13823D01* X10712Y13832D01* X10712Y13840D01* X10710Y13849D01* X10707Y13857D01* X10702Y13864D01* X10696Y13871D01* X10689Y13876D01* X10682Y13880D01* X10673Y13883D01* X10665Y13884D01* X10656Y13884D01* X10648Y13882D01* X10613Y13870D01* X10605Y13866D01* Y15125D01* X10634Y15115D01* X10643Y15113D01* X10652Y15113D01* X10660Y15115D01* X10668Y15117D01* X10676Y15122D01* X10683Y15127D01* X10689Y15134D01* X10693Y15141D01* X10696Y15149D01* X10698Y15158D01* X10698Y15167D01* X10697Y15175D01* X10694Y15183D01* X10690Y15191D01* X10684Y15198D01* X10677Y15204D01* X10670Y15208D01* X10662Y15211D01* X10636Y15220D01* X10611Y15231D01* X10605Y15234D01* Y15765D01* X10607Y15766D01* X10631Y15777D01* X10657Y15786D01* X10665Y15790D01* X10672Y15794D01* X10679Y15800D01* X10684Y15807D01* X10688Y15815D01* X10691Y15823D01* X10692Y15832D01* X10692Y15840D01* X10690Y15849D01* X10687Y15857D01* X10682Y15864D01* X10676Y15871D01* X10669Y15876D01* X10662Y15880D01* X10653Y15883D01* X10645Y15884D01* X10636Y15884D01* X10628Y15882D01* X10605Y15874D01* Y17118D01* X10614Y17115D01* X10623Y17113D01* X10632Y17113D01* X10640Y17115D01* X10648Y17117D01* X10656Y17122D01* X10663Y17127D01* X10669Y17134D01* X10673Y17141D01* X10676Y17149D01* X10678Y17158D01* X10678Y17167D01* X10677Y17175D01* X10674Y17183D01* X10670Y17191D01* X10664Y17198D01* X10657Y17204D01* X10650Y17208D01* X10642Y17211D01* X10616Y17220D01* X10605Y17225D01* Y17775D01* X10611Y17777D01* X10637Y17786D01* X10645Y17790D01* X10652Y17794D01* X10659Y17800D01* X10664Y17807D01* X10668Y17815D01* X10671Y17823D01* X10672Y17832D01* X10672Y17840D01* X10670Y17849D01* X10667Y17857D01* X10662Y17864D01* X10656Y17871D01* X10649Y17876D01* X10642Y17880D01* X10633Y17883D01* X10625Y17884D01* X10616Y17884D01* X10608Y17882D01* X10605Y17881D01* Y19113D01* X10612Y19113D01* X10620Y19115D01* X10628Y19117D01* X10636Y19122D01* X10643Y19127D01* X10649Y19134D01* X10653Y19141D01* X10656Y19149D01* X10658Y19158D01* X10658Y19167D01* X10657Y19175D01* X10654Y19183D01* X10650Y19191D01* X10644Y19198D01* X10637Y19204D01* X10630Y19208D01* X10622Y19211D01* X10605Y19217D01* Y19782D01* X10617Y19786D01* X10625Y19790D01* X10632Y19794D01* X10639Y19800D01* X10644Y19807D01* X10648Y19815D01* X10651Y19823D01* X10652Y19832D01* X10652Y19840D01* X10650Y19849D01* X10647Y19857D01* X10642Y19864D01* X10636Y19871D01* X10629Y19876D01* X10622Y19880D01* X10613Y19883D01* X10605Y19884D01* Y21116D01* X10608Y21117D01* X10616Y21122D01* X10623Y21127D01* X10629Y21134D01* X10633Y21141D01* X10636Y21149D01* X10638Y21158D01* X10638Y21167D01* X10637Y21175D01* X10634Y21183D01* X10630Y21191D01* X10624Y21198D01* X10617Y21204D01* X10610Y21208D01* X10605Y21210D01* Y21790D01* X10612Y21794D01* X10619Y21800D01* X10624Y21807D01* X10628Y21815D01* X10631Y21823D01* X10632Y21832D01* X10632Y21840D01* X10630Y21849D01* X10627Y21857D01* X10622Y21864D01* X10616Y21871D01* X10609Y21876D01* X10605Y21878D01* Y23130D01* X10609Y23134D01* X10613Y23141D01* X10616Y23149D01* X10618Y23158D01* X10618Y23167D01* X10617Y23175D01* X10614Y23183D01* X10610Y23191D01* X10605Y23197D01* Y23809D01* X10608Y23815D01* X10611Y23823D01* X10612Y23832D01* X10612Y23840D01* X10610Y23849D01* X10607Y23857D01* X10605Y23859D01* Y35138D01* G37* G36* X10864Y40000D02*X11044D01* Y23625D01* X11035Y23651D01* X11020Y23683D01* X11002Y23715D01* X10981Y23744D01* X10957Y23772D01* X10932Y23797D01* X10904Y23820D01* X10874Y23840D01* X10864Y23846D01* Y25165D01* X10889Y25183D01* X10917Y25207D01* X10942Y25232D01* X10965Y25260D01* X10985Y25290D01* X11003Y25322D01* X11017Y25355D01* X11029Y25389D01* X11031Y25398D01* X11031Y25407D01* X11030Y25415D01* X11027Y25423D01* X11022Y25431D01* X11017Y25438D01* X11010Y25444D01* X11003Y25448D01* X10995Y25451D01* X10986Y25453D01* X10977Y25453D01* X10969Y25452D01* X10961Y25449D01* X10953Y25445D01* X10946Y25439D01* X10940Y25433D01* X10936Y25425D01* X10933Y25417D01* X10924Y25391D01* X10913Y25366D01* X10900Y25343D01* X10885Y25320D01* X10868Y25299D01* X10864Y25295D01* Y25704D01* X10864Y25704D01* X10882Y25683D01* X10897Y25661D01* X10911Y25637D01* X10922Y25613D01* X10931Y25587D01* X10935Y25579D01* X10939Y25572D01* X10945Y25565D01* X10952Y25560D01* X10960Y25556D01* X10968Y25553D01* X10977Y25552D01* X10985Y25552D01* X10994Y25554D01* X11002Y25557D01* X11009Y25562D01* X11016Y25568D01* X11021Y25575D01* X11025Y25582D01* X11028Y25591D01* X11029Y25599D01* X11029Y25608D01* X11027Y25617D01* X11015Y25651D01* X11000Y25683D01* X10982Y25715D01* X10961Y25744D01* X10937Y25772D01* X10912Y25797D01* X10884Y25820D01* X10864Y25834D01* Y27180D01* X10869Y27183D01* X10897Y27207D01* X10922Y27232D01* X10945Y27260D01* X10965Y27290D01* X10983Y27322D01* X10997Y27355D01* X11009Y27389D01* X11011Y27398D01* X11011Y27407D01* X11010Y27415D01* X11007Y27423D01* X11002Y27431D01* X10997Y27438D01* X10990Y27444D01* X10983Y27448D01* X10975Y27451D01* X10966Y27453D01* X10957Y27453D01* X10949Y27452D01* X10941Y27449D01* X10933Y27445D01* X10926Y27439D01* X10920Y27433D01* X10916Y27425D01* X10913Y27417D01* X10904Y27391D01* X10893Y27366D01* X10880Y27343D01* X10865Y27320D01* X10864Y27319D01* Y27680D01* X10877Y27661D01* X10891Y27637D01* X10902Y27613D01* X10911Y27587D01* X10915Y27579D01* X10919Y27572D01* X10925Y27565D01* X10932Y27560D01* X10940Y27556D01* X10948Y27553D01* X10957Y27552D01* X10965Y27552D01* X10974Y27554D01* X10982Y27557D01* X10989Y27562D01* X10996Y27568D01* X11001Y27575D01* X11005Y27582D01* X11008Y27591D01* X11009Y27599D01* X11009Y27608D01* X11007Y27617D01* X10995Y27651D01* X10980Y27683D01* X10962Y27715D01* X10941Y27744D01* X10917Y27772D01* X10892Y27797D01* X10864Y27820D01* Y29196D01* X10877Y29207D01* X10902Y29232D01* X10925Y29260D01* X10945Y29290D01* X10963Y29322D01* X10977Y29355D01* X10989Y29389D01* X10991Y29398D01* X10991Y29407D01* X10990Y29415D01* X10987Y29423D01* X10982Y29431D01* X10977Y29438D01* X10970Y29444D01* X10963Y29448D01* X10955Y29451D01* X10946Y29453D01* X10937Y29453D01* X10929Y29452D01* X10921Y29449D01* X10913Y29445D01* X10906Y29439D01* X10900Y29433D01* X10896Y29425D01* X10893Y29417D01* X10884Y29391D01* X10873Y29366D01* X10864Y29350D01* Y29650D01* X10871Y29637D01* X10882Y29613D01* X10891Y29587D01* X10895Y29579D01* X10899Y29572D01* X10905Y29565D01* X10912Y29560D01* X10920Y29556D01* X10928Y29553D01* X10937Y29552D01* X10945Y29552D01* X10954Y29554D01* X10962Y29557D01* X10969Y29562D01* X10976Y29568D01* X10981Y29575D01* X10985Y29582D01* X10988Y29591D01* X10989Y29599D01* X10989Y29608D01* X10987Y29617D01* X10975Y29651D01* X10960Y29683D01* X10942Y29715D01* X10921Y29744D01* X10897Y29772D01* X10872Y29797D01* X10864Y29804D01* Y31214D01* X10882Y31232D01* X10905Y31260D01* X10925Y31290D01* X10943Y31322D01* X10957Y31355D01* X10969Y31389D01* X10971Y31398D01* X10971Y31407D01* X10970Y31415D01* X10967Y31423D01* X10962Y31431D01* X10957Y31438D01* X10950Y31444D01* X10943Y31448D01* X10935Y31451D01* X10926Y31453D01* X10917Y31453D01* X10909Y31452D01* X10901Y31449D01* X10893Y31445D01* X10886Y31439D01* X10880Y31433D01* X10876Y31425D01* X10873Y31417D01* X10864Y31391D01* X10864Y31391D01* Y31608D01* X10871Y31587D01* X10875Y31579D01* X10879Y31572D01* X10885Y31565D01* X10892Y31560D01* X10900Y31556D01* X10908Y31553D01* X10917Y31552D01* X10925Y31552D01* X10934Y31554D01* X10942Y31557D01* X10949Y31562D01* X10956Y31568D01* X10961Y31575D01* X10965Y31582D01* X10968Y31591D01* X10969Y31599D01* X10969Y31608D01* X10967Y31617D01* X10955Y31651D01* X10940Y31683D01* X10922Y31715D01* X10901Y31744D01* X10877Y31772D01* X10864Y31785D01* Y33235D01* X10885Y33260D01* X10905Y33290D01* X10923Y33322D01* X10937Y33355D01* X10949Y33389D01* X10951Y33398D01* X10951Y33407D01* X10950Y33415D01* X10947Y33423D01* X10942Y33431D01* X10937Y33438D01* X10930Y33444D01* X10923Y33448D01* X10915Y33451D01* X10906Y33453D01* X10897Y33453D01* X10889Y33452D01* X10881Y33449D01* X10873Y33445D01* X10866Y33439D01* X10864Y33437D01* Y33567D01* X10865Y33565D01* X10872Y33560D01* X10880Y33556D01* X10888Y33553D01* X10897Y33552D01* X10905Y33552D01* X10914Y33554D01* X10922Y33557D01* X10929Y33562D01* X10936Y33568D01* X10941Y33575D01* X10945Y33582D01* X10948Y33591D01* X10949Y33599D01* X10949Y33608D01* X10947Y33617D01* X10935Y33651D01* X10920Y33683D01* X10902Y33715D01* X10881Y33744D01* X10864Y33764D01* Y35259D01* X10865Y35260D01* X10885Y35290D01* X10903Y35322D01* X10917Y35355D01* X10929Y35389D01* X10931Y35398D01* X10931Y35407D01* X10930Y35415D01* X10927Y35423D01* X10922Y35431D01* X10917Y35438D01* X10910Y35444D01* X10903Y35448D01* X10895Y35451D01* X10886Y35453D01* X10877Y35453D01* X10869Y35452D01* X10864Y35450D01* Y35555D01* X10868Y35553D01* X10877Y35552D01* X10885Y35552D01* X10894Y35554D01* X10902Y35557D01* X10909Y35562D01* X10916Y35568D01* X10921Y35575D01* X10925Y35582D01* X10928Y35591D01* X10929Y35599D01* X10929Y35608D01* X10927Y35617D01* X10915Y35651D01* X10900Y35683D01* X10882Y35715D01* X10864Y35740D01* Y37288D01* X10865Y37290D01* X10883Y37322D01* X10897Y37355D01* X10909Y37389D01* X10911Y37398D01* X10911Y37407D01* X10910Y37415D01* X10907Y37423D01* X10902Y37431D01* X10897Y37438D01* X10890Y37444D01* X10883Y37448D01* X10875Y37451D01* X10866Y37453D01* X10864D01* Y37552D01* X10865D01* X10874Y37554D01* X10882Y37557D01* X10889Y37562D01* X10896Y37568D01* X10901Y37575D01* X10905Y37582D01* X10908Y37591D01* X10909Y37599D01* X10909Y37608D01* X10907Y37617D01* X10895Y37651D01* X10880Y37683D01* X10864Y37711D01* Y39324D01* X10877Y39355D01* X10889Y39389D01* X10891Y39398D01* X10891Y39407D01* X10890Y39415D01* X10887Y39423D01* X10882Y39431D01* X10877Y39438D01* X10870Y39444D01* X10864Y39447D01* Y39559D01* X10869Y39562D01* X10876Y39568D01* X10881Y39575D01* X10885Y39582D01* X10888Y39591D01* X10889Y39599D01* X10889Y39608D01* X10887Y39617D01* X10875Y39651D01* X10864Y39674D01* Y40000D01* G37* G36* X11044Y0D02*X10864D01* Y9140D01* X10867Y9135D01* X10873Y9128D01* X10880Y9123D01* X10887Y9119D01* X10896Y9116D01* X10904Y9115D01* X10913Y9115D01* X10921Y9117D01* X10956Y9129D01* X10988Y9144D01* X11020Y9162D01* X11044Y9180D01* Y7834D01* X11034Y7840D01* X11002Y7858D01* X10969Y7873D01* X10935Y7884D01* X10926Y7886D01* X10917Y7886D01* X10909Y7885D01* X10901Y7882D01* X10893Y7878D01* X10886Y7872D01* X10880Y7865D01* X10876Y7858D01* X10873Y7850D01* X10871Y7841D01* X10871Y7833D01* X10872Y7824D01* X10875Y7816D01* X10879Y7808D01* X10885Y7801D01* X10892Y7796D01* X10899Y7791D01* X10907Y7788D01* X10933Y7779D01* X10958Y7768D01* X10981Y7755D01* X11004Y7740D01* X11025Y7723D01* X11044Y7704D01* Y7295D01* X11029Y7280D01* X11008Y7262D01* X10986Y7247D01* X10962Y7233D01* X10938Y7222D01* X10912Y7213D01* X10904Y7209D01* X10897Y7205D01* X10890Y7199D01* X10885Y7192D01* X10881Y7184D01* X10878Y7176D01* X10877Y7167D01* X10877Y7159D01* X10879Y7150D01* X10882Y7142D01* X10887Y7135D01* X10893Y7128D01* X10900Y7123D01* X10907Y7119D01* X10916Y7116D01* X10924Y7115D01* X10933Y7115D01* X10941Y7117D01* X10976Y7129D01* X11008Y7144D01* X11040Y7162D01* X11044Y7165D01* Y5846D01* X11022Y5858D01* X10989Y5873D01* X10955Y5884D01* X10946Y5886D01* X10937Y5886D01* X10929Y5885D01* X10921Y5882D01* X10913Y5878D01* X10906Y5872D01* X10900Y5865D01* X10896Y5858D01* X10893Y5850D01* X10891Y5841D01* X10891Y5833D01* X10892Y5824D01* X10895Y5816D01* X10899Y5808D01* X10905Y5801D01* X10912Y5796D01* X10919Y5791D01* X10927Y5788D01* X10953Y5779D01* X10978Y5768D01* X11001Y5755D01* X11024Y5740D01* X11044Y5724D01* Y5276D01* X11028Y5262D01* X11006Y5247D01* X10982Y5233D01* X10958Y5222D01* X10932Y5213D01* X10924Y5209D01* X10917Y5205D01* X10910Y5199D01* X10905Y5192D01* X10901Y5184D01* X10898Y5176D01* X10897Y5167D01* X10897Y5159D01* X10899Y5150D01* X10902Y5142D01* X10907Y5135D01* X10913Y5128D01* X10920Y5123D01* X10927Y5119D01* X10936Y5116D01* X10944Y5115D01* X10953Y5115D01* X10961Y5117D01* X10996Y5129D01* X11028Y5144D01* X11044Y5153D01* Y3857D01* X11042Y3858D01* X11009Y3873D01* X10975Y3884D01* X10966Y3886D01* X10957Y3886D01* X10949Y3885D01* X10941Y3882D01* X10933Y3878D01* X10926Y3872D01* X10920Y3865D01* X10916Y3858D01* X10913Y3850D01* X10911Y3841D01* X10911Y3833D01* X10912Y3824D01* X10915Y3816D01* X10919Y3808D01* X10925Y3801D01* X10932Y3796D01* X10939Y3791D01* X10947Y3788D01* X10973Y3779D01* X10998Y3768D01* X11021Y3755D01* X11044Y3740D01* Y3259D01* X11026Y3247D01* X11002Y3233D01* X10978Y3222D01* X10952Y3213D01* X10944Y3209D01* X10937Y3205D01* X10930Y3199D01* X10925Y3192D01* X10921Y3184D01* X10918Y3176D01* X10917Y3167D01* X10917Y3159D01* X10919Y3150D01* X10922Y3142D01* X10927Y3135D01* X10933Y3128D01* X10940Y3123D01* X10947Y3119D01* X10956Y3116D01* X10964Y3115D01* X10973Y3115D01* X10981Y3117D01* X11016Y3129D01* X11044Y3142D01* Y1866D01* X11029Y1873D01* X10995Y1884D01* X10986Y1886D01* X10977Y1886D01* X10969Y1885D01* X10961Y1882D01* X10953Y1878D01* X10946Y1872D01* X10940Y1865D01* X10936Y1858D01* X10933Y1850D01* X10931Y1841D01* X10931Y1833D01* X10932Y1824D01* X10935Y1816D01* X10939Y1808D01* X10945Y1801D01* X10952Y1796D01* X10959Y1791D01* X10967Y1788D01* X10993Y1779D01* X11018Y1768D01* X11041Y1755D01* X11044Y1754D01* Y1246D01* X11022Y1233D01* X10998Y1222D01* X10972Y1213D01* X10964Y1209D01* X10957Y1205D01* X10950Y1199D01* X10945Y1192D01* X10941Y1184D01* X10938Y1176D01* X10937Y1167D01* X10937Y1159D01* X10939Y1150D01* X10942Y1142D01* X10947Y1135D01* X10953Y1128D01* X10960Y1123D01* X10967Y1119D01* X10976Y1116D01* X10984Y1115D01* X10993Y1115D01* X11001Y1117D01* X11036Y1129D01* X11044Y1133D01* Y0D01* G37* G36* Y9319D02*X11028Y9299D01* X11009Y9280D01* X10988Y9262D01* X10966Y9247D01* X10942Y9233D01* X10918Y9222D01* X10892Y9213D01* X10884Y9209D01* X10877Y9205D01* X10870Y9199D01* X10865Y9192D01* X10864Y9190D01* Y9802D01* X10865Y9801D01* X10872Y9796D01* X10879Y9791D01* X10887Y9788D01* X10913Y9779D01* X10938Y9768D01* X10961Y9755D01* X10984Y9740D01* X11005Y9723D01* X11024Y9704D01* X11042Y9683D01* X11044Y9680D01* Y9319D01* G37* G36* Y9820D02*X11044Y9820D01* X11014Y9840D01* X10982Y9858D01* X10949Y9873D01* X10915Y9884D01* X10906Y9886D01* X10897Y9886D01* X10889Y9885D01* X10881Y9882D01* X10873Y9878D01* X10866Y9872D01* X10864Y9870D01* Y11121D01* X10867Y11119D01* X10876Y11116D01* X10884Y11115D01* X10893Y11115D01* X10901Y11117D01* X10936Y11129D01* X10968Y11144D01* X11000Y11162D01* X11029Y11183D01* X11044Y11196D01* Y9820D01* G37* G36* Y11350D02*X11040Y11343D01* X11025Y11320D01* X11008Y11299D01* X10989Y11280D01* X10968Y11262D01* X10946Y11247D01* X10922Y11233D01* X10898Y11222D01* X10872Y11213D01* X10864Y11209D01* X10864Y11209D01* Y11789D01* X10867Y11788D01* X10893Y11779D01* X10918Y11768D01* X10941Y11755D01* X10964Y11740D01* X10985Y11723D01* X11004Y11704D01* X11022Y11683D01* X11037Y11661D01* X11044Y11650D01* Y11350D01* G37* G36* Y11804D02*X11024Y11820D01* X10994Y11840D01* X10962Y11858D01* X10929Y11873D01* X10895Y11884D01* X10886Y11886D01* X10877Y11886D01* X10869Y11885D01* X10864Y11883D01* Y13115D01* X10864D01* X10873Y13115D01* X10881Y13117D01* X10916Y13129D01* X10948Y13144D01* X10980Y13162D01* X11009Y13183D01* X11037Y13207D01* X11044Y13214D01* Y11804D01* G37* G36* Y13391D02*X11033Y13366D01* X11020Y13343D01* X11005Y13320D01* X10988Y13299D01* X10969Y13280D01* X10948Y13262D01* X10926Y13247D01* X10902Y13233D01* X10878Y13222D01* X10864Y13217D01* Y13782D01* X10873Y13779D01* X10898Y13768D01* X10921Y13755D01* X10944Y13740D01* X10965Y13723D01* X10984Y13704D01* X11002Y13683D01* X11017Y13661D01* X11031Y13637D01* X11042Y13613D01* X11044Y13608D01* Y13391D01* G37* G36* Y13785D02*X11032Y13797D01* X11004Y13820D01* X10974Y13840D01* X10942Y13858D01* X10909Y13873D01* X10875Y13884D01* X10866Y13886D01* X10864D01* Y15118D01* X10896Y15129D01* X10928Y15144D01* X10960Y15162D01* X10989Y15183D01* X11017Y15207D01* X11042Y15232D01* X11044Y15235D01* Y13785D01* G37* G36* Y15437D02*X11040Y15433D01* X11036Y15425D01* X11033Y15417D01* X11024Y15391D01* X11013Y15366D01* X11000Y15343D01* X10985Y15320D01* X10968Y15299D01* X10949Y15280D01* X10928Y15262D01* X10906Y15247D01* X10882Y15233D01* X10864Y15225D01* Y15774D01* X10878Y15768D01* X10901Y15755D01* X10924Y15740D01* X10945Y15723D01* X10964Y15704D01* X10982Y15683D01* X10997Y15661D01* X11011Y15637D01* X11022Y15613D01* X11031Y15587D01* X11035Y15579D01* X11039Y15572D01* X11044Y15567D01* Y15437D01* G37* G36* Y15764D02*X11037Y15772D01* X11012Y15797D01* X10984Y15820D01* X10954Y15840D01* X10922Y15858D01* X10889Y15873D01* X10864Y15881D01* Y17125D01* X10876Y17129D01* X10908Y17144D01* X10940Y17162D01* X10969Y17183D01* X10997Y17207D01* X11022Y17232D01* X11044Y17259D01* Y15764D01* G37* G36* Y17450D02*X11041Y17449D01* X11033Y17445D01* X11026Y17439D01* X11020Y17433D01* X11016Y17425D01* X11013Y17417D01* X11004Y17391D01* X10993Y17366D01* X10980Y17343D01* X10965Y17320D01* X10948Y17299D01* X10929Y17280D01* X10908Y17262D01* X10886Y17247D01* X10864Y17234D01* Y17765D01* X10881Y17755D01* X10904Y17740D01* X10925Y17723D01* X10944Y17704D01* X10962Y17683D01* X10977Y17661D01* X10991Y17637D01* X11002Y17613D01* X11011Y17587D01* X11015Y17579D01* X11019Y17572D01* X11025Y17565D01* X11032Y17560D01* X11040Y17556D01* X11044Y17555D01* Y17450D01* G37* G36* Y17740D02*X11041Y17744D01* X11017Y17772D01* X10992Y17797D01* X10964Y17820D01* X10934Y17840D01* X10902Y17858D01* X10869Y17873D01* X10864Y17874D01* Y19133D01* X10888Y19144D01* X10920Y19162D01* X10949Y19183D01* X10977Y19207D01* X11002Y19232D01* X11025Y19260D01* X11044Y19288D01* Y17740D01* G37* G36* Y19453D02*X11037Y19453D01* X11029Y19452D01* X11021Y19449D01* X11013Y19445D01* X11006Y19439D01* X11000Y19433D01* X10996Y19425D01* X10993Y19417D01* X10984Y19391D01* X10973Y19366D01* X10960Y19343D01* X10945Y19320D01* X10928Y19299D01* X10909Y19280D01* X10888Y19262D01* X10866Y19247D01* X10864Y19246D01* Y19754D01* X10884Y19740D01* X10905Y19723D01* X10924Y19704D01* X10942Y19683D01* X10957Y19661D01* X10971Y19637D01* X10982Y19613D01* X10991Y19587D01* X10995Y19579D01* X10999Y19572D01* X11005Y19565D01* X11012Y19560D01* X11020Y19556D01* X11028Y19553D01* X11037Y19552D01* X11044Y19552D01* Y19453D01* G37* G36* Y19711D02*X11042Y19715D01* X11021Y19744D01* X10997Y19772D01* X10972Y19797D01* X10944Y19820D01* X10914Y19840D01* X10882Y19858D01* X10864Y19866D01* Y21142D01* X10868Y21144D01* X10900Y21162D01* X10929Y21183D01* X10957Y21207D01* X10982Y21232D01* X11005Y21260D01* X11025Y21290D01* X11043Y21322D01* X11044Y21324D01* Y19711D01* G37* G36* Y21447D02*X11043Y21448D01* X11035Y21451D01* X11026Y21453D01* X11017Y21453D01* X11009Y21452D01* X11001Y21449D01* X10993Y21445D01* X10986Y21439D01* X10980Y21433D01* X10976Y21425D01* X10973Y21417D01* X10964Y21391D01* X10953Y21366D01* X10940Y21343D01* X10925Y21320D01* X10908Y21299D01* X10889Y21280D01* X10868Y21262D01* X10864Y21259D01* Y21740D01* X10885Y21723D01* X10904Y21704D01* X10922Y21683D01* X10937Y21661D01* X10951Y21637D01* X10962Y21613D01* X10971Y21587D01* X10975Y21579D01* X10979Y21572D01* X10985Y21565D01* X10992Y21560D01* X11000Y21556D01* X11008Y21553D01* X11017Y21552D01* X11025Y21552D01* X11034Y21554D01* X11042Y21557D01* X11044Y21559D01* Y21447D01* G37* G36* Y21674D02*X11040Y21683D01* X11022Y21715D01* X11001Y21744D01* X10977Y21772D01* X10952Y21797D01* X10924Y21820D01* X10894Y21840D01* X10864Y21857D01* Y23153D01* X10880Y23162D01* X10909Y23183D01* X10937Y23207D01* X10962Y23232D01* X10985Y23260D01* X11005Y23290D01* X11023Y23322D01* X11037Y23355D01* X11044Y23374D01* Y21674D01* G37* G36* Y23428D02*X11042Y23431D01* X11037Y23438D01* X11030Y23444D01* X11023Y23448D01* X11015Y23451D01* X11006Y23453D01* X10997Y23453D01* X10989Y23452D01* X10981Y23449D01* X10973Y23445D01* X10966Y23439D01* X10960Y23433D01* X10956Y23425D01* X10953Y23417D01* X10944Y23391D01* X10933Y23366D01* X10920Y23343D01* X10905Y23320D01* X10888Y23299D01* X10869Y23280D01* X10864Y23276D01* Y23724D01* X10865Y23723D01* X10884Y23704D01* X10902Y23683D01* X10917Y23661D01* X10931Y23637D01* X10942Y23613D01* X10951Y23587D01* X10955Y23579D01* X10959Y23572D01* X10965Y23565D01* X10972Y23560D01* X10980Y23556D01* X10988Y23553D01* X10997Y23552D01* X11005Y23552D01* X11014Y23554D01* X11022Y23557D01* X11029Y23562D01* X11036Y23568D01* X11041Y23575D01* X11044Y23580D01* Y23428D01* G37* G36* Y40000D02*X12285D01* Y39834D01* X12260Y39816D01* X12232Y39793D01* X12207Y39767D01* X12184Y39739D01* X12164Y39709D01* X12146Y39677D01* X12132Y39644D01* X12120Y39610D01* X12118Y39601D01* X12118Y39593D01* X12119Y39584D01* X12122Y39576D01* X12127Y39568D01* X12132Y39561D01* X12139Y39556D01* X12146Y39551D01* X12154Y39548D01* X12163Y39546D01* X12172Y39546D01* X12180Y39547D01* X12188Y39550D01* X12196Y39555D01* X12203Y39560D01* X12209Y39567D01* X12213Y39574D01* X12216Y39582D01* X12225Y39608D01* X12236Y39633D01* X12249Y39657D01* X12264Y39679D01* X12281Y39700D01* X12285Y39704D01* Y39295D01* X12285Y39295D01* X12267Y39316D01* X12252Y39338D01* X12238Y39362D01* X12227Y39386D01* X12218Y39412D01* X12214Y39420D01* X12210Y39427D01* X12204Y39434D01* X12197Y39439D01* X12189Y39443D01* X12181Y39446D01* X12172Y39447D01* X12164Y39447D01* X12155Y39445D01* X12147Y39442D01* X12140Y39437D01* X12133Y39431D01* X12128Y39424D01* X12124Y39417D01* X12121Y39409D01* X12120Y39400D01* X12120Y39391D01* X12122Y39383D01* X12134Y39349D01* X12149Y39316D01* X12167Y39284D01* X12188Y39255D01* X12212Y39227D01* X12237Y39202D01* X12265Y39179D01* X12285Y39166D01* Y37820D01* X12280Y37816D01* X12252Y37793D01* X12227Y37767D01* X12204Y37739D01* X12184Y37709D01* X12166Y37677D01* X12152Y37644D01* X12140Y37610D01* X12138Y37601D01* X12138Y37593D01* X12139Y37584D01* X12142Y37576D01* X12147Y37568D01* X12152Y37561D01* X12159Y37556D01* X12166Y37551D01* X12174Y37548D01* X12183Y37546D01* X12192Y37546D01* X12200Y37547D01* X12208Y37550D01* X12216Y37555D01* X12223Y37560D01* X12229Y37567D01* X12233Y37574D01* X12236Y37582D01* X12245Y37608D01* X12256Y37633D01* X12269Y37657D01* X12284Y37679D01* X12285Y37680D01* Y37319D01* X12272Y37338D01* X12258Y37362D01* X12247Y37386D01* X12238Y37412D01* X12234Y37420D01* X12230Y37427D01* X12224Y37434D01* X12217Y37439D01* X12209Y37443D01* X12201Y37446D01* X12192Y37447D01* X12184Y37447D01* X12175Y37445D01* X12167Y37442D01* X12160Y37437D01* X12153Y37431D01* X12148Y37424D01* X12144Y37417D01* X12141Y37409D01* X12140Y37400D01* X12140Y37391D01* X12142Y37383D01* X12154Y37349D01* X12169Y37316D01* X12187Y37284D01* X12208Y37255D01* X12232Y37227D01* X12257Y37202D01* X12285Y37179D01* Y35804D01* X12272Y35793D01* X12247Y35767D01* X12224Y35739D01* X12204Y35709D01* X12186Y35677D01* X12172Y35644D01* X12160Y35610D01* X12158Y35601D01* X12158Y35593D01* X12159Y35584D01* X12162Y35576D01* X12167Y35568D01* X12172Y35561D01* X12179Y35556D01* X12186Y35551D01* X12194Y35548D01* X12203Y35546D01* X12212Y35546D01* X12220Y35547D01* X12228Y35550D01* X12236Y35555D01* X12243Y35560D01* X12249Y35567D01* X12253Y35574D01* X12256Y35582D01* X12265Y35608D01* X12276Y35633D01* X12285Y35650D01* Y35349D01* X12278Y35362D01* X12267Y35386D01* X12258Y35412D01* X12254Y35420D01* X12250Y35427D01* X12244Y35434D01* X12237Y35439D01* X12229Y35443D01* X12221Y35446D01* X12212Y35447D01* X12204Y35447D01* X12195Y35445D01* X12187Y35442D01* X12180Y35437D01* X12173Y35431D01* X12168Y35424D01* X12164Y35417D01* X12161Y35409D01* X12160Y35400D01* X12160Y35391D01* X12162Y35383D01* X12174Y35349D01* X12189Y35316D01* X12207Y35284D01* X12228Y35255D01* X12252Y35227D01* X12277Y35202D01* X12285Y35196D01* Y33785D01* X12267Y33767D01* X12244Y33739D01* X12224Y33709D01* X12206Y33677D01* X12192Y33644D01* X12180Y33610D01* X12178Y33601D01* X12178Y33593D01* X12179Y33584D01* X12182Y33576D01* X12187Y33568D01* X12192Y33561D01* X12199Y33556D01* X12206Y33551D01* X12214Y33548D01* X12223Y33546D01* X12232Y33546D01* X12240Y33547D01* X12248Y33550D01* X12256Y33555D01* X12263Y33560D01* X12269Y33567D01* X12273Y33574D01* X12276Y33582D01* X12285Y33608D01* X12285Y33609D01* Y33391D01* X12278Y33412D01* X12274Y33420D01* X12270Y33427D01* X12264Y33434D01* X12257Y33439D01* X12249Y33443D01* X12241Y33446D01* X12232Y33447D01* X12224Y33447D01* X12215Y33445D01* X12207Y33442D01* X12200Y33437D01* X12193Y33431D01* X12188Y33424D01* X12184Y33417D01* X12181Y33409D01* X12180Y33400D01* X12180Y33391D01* X12182Y33383D01* X12194Y33349D01* X12209Y33316D01* X12227Y33284D01* X12248Y33255D01* X12272Y33227D01* X12285Y33214D01* Y31765D01* X12264Y31739D01* X12244Y31709D01* X12226Y31677D01* X12212Y31644D01* X12200Y31610D01* X12198Y31601D01* X12198Y31593D01* X12199Y31584D01* X12202Y31576D01* X12207Y31568D01* X12212Y31561D01* X12219Y31556D01* X12226Y31551D01* X12234Y31548D01* X12243Y31546D01* X12252Y31546D01* X12260Y31547D01* X12268Y31550D01* X12276Y31555D01* X12283Y31560D01* X12285Y31563D01* Y31432D01* X12284Y31434D01* X12277Y31439D01* X12269Y31443D01* X12261Y31446D01* X12252Y31447D01* X12244Y31447D01* X12235Y31445D01* X12227Y31442D01* X12220Y31437D01* X12213Y31431D01* X12208Y31424D01* X12204Y31417D01* X12201Y31409D01* X12200Y31400D01* X12200Y31391D01* X12202Y31383D01* X12214Y31349D01* X12229Y31316D01* X12247Y31284D01* X12268Y31255D01* X12285Y31235D01* Y29740D01* X12284Y29739D01* X12264Y29709D01* X12246Y29677D01* X12232Y29644D01* X12220Y29610D01* X12218Y29601D01* X12218Y29593D01* X12219Y29584D01* X12222Y29576D01* X12227Y29568D01* X12232Y29561D01* X12239Y29556D01* X12246Y29551D01* X12254Y29548D01* X12263Y29546D01* X12272Y29546D01* X12280Y29547D01* X12285Y29549D01* Y29445D01* X12281Y29446D01* X12272Y29447D01* X12264Y29447D01* X12255Y29445D01* X12247Y29442D01* X12240Y29437D01* X12233Y29431D01* X12228Y29424D01* X12224Y29417D01* X12221Y29409D01* X12220Y29400D01* X12220Y29391D01* X12222Y29383D01* X12234Y29349D01* X12249Y29316D01* X12267Y29284D01* X12285Y29259D01* Y27711D01* X12284Y27709D01* X12266Y27677D01* X12252Y27644D01* X12240Y27610D01* X12238Y27601D01* X12238Y27593D01* X12239Y27584D01* X12242Y27576D01* X12247Y27568D01* X12252Y27561D01* X12259Y27556D01* X12266Y27551D01* X12274Y27548D01* X12283Y27546D01* X12285D01* Y27447D01* X12284Y27447D01* X12275Y27445D01* X12267Y27442D01* X12260Y27437D01* X12253Y27431D01* X12248Y27424D01* X12244Y27417D01* X12241Y27409D01* X12240Y27400D01* X12240Y27391D01* X12242Y27383D01* X12254Y27349D01* X12269Y27316D01* X12285Y27288D01* Y25675D01* X12272Y25644D01* X12260Y25610D01* X12258Y25601D01* X12258Y25593D01* X12259Y25584D01* X12262Y25576D01* X12267Y25568D01* X12272Y25561D01* X12279Y25556D01* X12285Y25552D01* Y25441D01* X12280Y25437D01* X12273Y25431D01* X12268Y25424D01* X12264Y25417D01* X12261Y25409D01* X12260Y25400D01* X12260Y25391D01* X12262Y25383D01* X12274Y25349D01* X12285Y25325D01* Y23625D01* X12280Y23610D01* X12278Y23601D01* X12278Y23593D01* X12279Y23584D01* X12282Y23576D01* X12285Y23571D01* Y23419D01* X12284Y23417D01* X12281Y23409D01* X12280Y23400D01* X12280Y23391D01* X12282Y23383D01* X12285Y23374D01* Y0D01* X11044D01* Y1133D01* X11068Y1144D01* X11100Y1162D01* X11129Y1183D01* X11157Y1207D01* X11182Y1232D01* X11205Y1260D01* X11225Y1290D01* X11243Y1322D01* X11257Y1355D01* X11269Y1389D01* X11271Y1398D01* X11271Y1407D01* X11270Y1415D01* X11267Y1423D01* X11262Y1431D01* X11257Y1438D01* X11250Y1444D01* X11243Y1448D01* X11235Y1451D01* X11226Y1453D01* X11217Y1453D01* X11209Y1452D01* X11201Y1449D01* X11193Y1445D01* X11186Y1439D01* X11180Y1433D01* X11176Y1425D01* X11173Y1417D01* X11164Y1391D01* X11153Y1366D01* X11140Y1343D01* X11125Y1320D01* X11108Y1299D01* X11089Y1280D01* X11068Y1262D01* X11046Y1247D01* X11044Y1246D01* Y1754D01* X11064Y1740D01* X11085Y1723D01* X11104Y1704D01* X11122Y1683D01* X11137Y1661D01* X11151Y1637D01* X11162Y1613D01* X11171Y1587D01* X11175Y1579D01* X11179Y1572D01* X11185Y1565D01* X11192Y1560D01* X11200Y1556D01* X11208Y1553D01* X11217Y1552D01* X11225Y1552D01* X11234Y1554D01* X11242Y1557D01* X11249Y1562D01* X11256Y1568D01* X11261Y1575D01* X11265Y1582D01* X11268Y1591D01* X11269Y1599D01* X11269Y1608D01* X11267Y1617D01* X11255Y1651D01* X11240Y1683D01* X11222Y1715D01* X11201Y1744D01* X11177Y1772D01* X11152Y1797D01* X11124Y1820D01* X11094Y1840D01* X11062Y1858D01* X11044Y1866D01* Y3142D01* X11048Y3144D01* X11080Y3162D01* X11109Y3183D01* X11137Y3207D01* X11162Y3232D01* X11185Y3260D01* X11205Y3290D01* X11223Y3322D01* X11237Y3355D01* X11249Y3389D01* X11251Y3398D01* X11251Y3407D01* X11250Y3415D01* X11247Y3423D01* X11242Y3431D01* X11237Y3438D01* X11230Y3444D01* X11223Y3448D01* X11215Y3451D01* X11206Y3453D01* X11197Y3453D01* X11189Y3452D01* X11181Y3449D01* X11173Y3445D01* X11166Y3439D01* X11160Y3433D01* X11156Y3425D01* X11153Y3417D01* X11144Y3391D01* X11133Y3366D01* X11120Y3343D01* X11105Y3320D01* X11088Y3299D01* X11069Y3280D01* X11048Y3262D01* X11044Y3259D01* Y3740D01* X11065Y3723D01* X11084Y3704D01* X11102Y3683D01* X11117Y3661D01* X11131Y3637D01* X11142Y3613D01* X11151Y3587D01* X11155Y3579D01* X11159Y3572D01* X11165Y3565D01* X11172Y3560D01* X11180Y3556D01* X11188Y3553D01* X11197Y3552D01* X11205Y3552D01* X11214Y3554D01* X11222Y3557D01* X11229Y3562D01* X11236Y3568D01* X11241Y3575D01* X11245Y3582D01* X11248Y3591D01* X11249Y3599D01* X11249Y3608D01* X11247Y3617D01* X11235Y3651D01* X11220Y3683D01* X11202Y3715D01* X11181Y3744D01* X11157Y3772D01* X11132Y3797D01* X11104Y3820D01* X11074Y3840D01* X11044Y3857D01* Y5153D01* X11060Y5162D01* X11089Y5183D01* X11117Y5207D01* X11142Y5232D01* X11165Y5260D01* X11185Y5290D01* X11203Y5322D01* X11217Y5355D01* X11229Y5389D01* X11231Y5398D01* X11231Y5407D01* X11230Y5415D01* X11227Y5423D01* X11222Y5431D01* X11217Y5438D01* X11210Y5444D01* X11203Y5448D01* X11195Y5451D01* X11186Y5453D01* X11177Y5453D01* X11169Y5452D01* X11161Y5449D01* X11153Y5445D01* X11146Y5439D01* X11140Y5433D01* X11136Y5425D01* X11133Y5417D01* X11124Y5391D01* X11113Y5366D01* X11100Y5343D01* X11085Y5320D01* X11068Y5299D01* X11049Y5280D01* X11044Y5276D01* Y5724D01* X11045Y5723D01* X11064Y5704D01* X11082Y5683D01* X11097Y5661D01* X11111Y5637D01* X11122Y5613D01* X11131Y5587D01* X11135Y5579D01* X11139Y5572D01* X11145Y5565D01* X11152Y5560D01* X11160Y5556D01* X11168Y5553D01* X11177Y5552D01* X11185Y5552D01* X11194Y5554D01* X11202Y5557D01* X11209Y5562D01* X11216Y5568D01* X11221Y5575D01* X11225Y5582D01* X11228Y5591D01* X11229Y5599D01* X11229Y5608D01* X11227Y5617D01* X11215Y5651D01* X11200Y5683D01* X11182Y5715D01* X11161Y5744D01* X11137Y5772D01* X11112Y5797D01* X11084Y5820D01* X11054Y5840D01* X11044Y5846D01* Y7165D01* X11069Y7183D01* X11097Y7207D01* X11122Y7232D01* X11145Y7260D01* X11165Y7290D01* X11183Y7322D01* X11197Y7355D01* X11209Y7389D01* X11211Y7398D01* X11211Y7407D01* X11210Y7415D01* X11207Y7423D01* X11202Y7431D01* X11197Y7438D01* X11190Y7444D01* X11183Y7448D01* X11175Y7451D01* X11166Y7453D01* X11157Y7453D01* X11149Y7452D01* X11141Y7449D01* X11133Y7445D01* X11126Y7439D01* X11120Y7433D01* X11116Y7425D01* X11113Y7417D01* X11104Y7391D01* X11093Y7366D01* X11080Y7343D01* X11065Y7320D01* X11048Y7299D01* X11044Y7295D01* Y7704D01* X11044Y7704D01* X11062Y7683D01* X11077Y7661D01* X11091Y7637D01* X11102Y7613D01* X11111Y7587D01* X11115Y7579D01* X11119Y7572D01* X11125Y7565D01* X11132Y7560D01* X11140Y7556D01* X11148Y7553D01* X11157Y7552D01* X11165Y7552D01* X11174Y7554D01* X11182Y7557D01* X11189Y7562D01* X11196Y7568D01* X11201Y7575D01* X11205Y7582D01* X11208Y7591D01* X11209Y7599D01* X11209Y7608D01* X11207Y7617D01* X11195Y7651D01* X11180Y7683D01* X11162Y7715D01* X11141Y7744D01* X11117Y7772D01* X11092Y7797D01* X11064Y7820D01* X11044Y7834D01* Y9180D01* X11049Y9183D01* X11077Y9207D01* X11102Y9232D01* X11125Y9260D01* X11145Y9290D01* X11163Y9322D01* X11177Y9355D01* X11189Y9389D01* X11191Y9398D01* X11191Y9407D01* X11190Y9415D01* X11187Y9423D01* X11182Y9431D01* X11177Y9438D01* X11170Y9444D01* X11163Y9448D01* X11155Y9451D01* X11146Y9453D01* X11137Y9453D01* X11129Y9452D01* X11121Y9449D01* X11113Y9445D01* X11106Y9439D01* X11100Y9433D01* X11096Y9425D01* X11093Y9417D01* X11084Y9391D01* X11073Y9366D01* X11060Y9343D01* X11045Y9320D01* X11044Y9319D01* Y9680D01* X11057Y9661D01* X11071Y9637D01* X11082Y9613D01* X11091Y9587D01* X11095Y9579D01* X11099Y9572D01* X11105Y9565D01* X11112Y9560D01* X11120Y9556D01* X11128Y9553D01* X11137Y9552D01* X11145Y9552D01* X11154Y9554D01* X11162Y9557D01* X11169Y9562D01* X11176Y9568D01* X11181Y9575D01* X11185Y9582D01* X11188Y9591D01* X11189Y9599D01* X11189Y9608D01* X11187Y9617D01* X11175Y9651D01* X11160Y9683D01* X11142Y9715D01* X11121Y9744D01* X11097Y9772D01* X11072Y9797D01* X11044Y9820D01* Y11196D01* X11057Y11207D01* X11082Y11232D01* X11105Y11260D01* X11125Y11290D01* X11143Y11322D01* X11157Y11355D01* X11169Y11389D01* X11171Y11398D01* X11171Y11407D01* X11170Y11415D01* X11167Y11423D01* X11162Y11431D01* X11157Y11438D01* X11150Y11444D01* X11143Y11448D01* X11135Y11451D01* X11126Y11453D01* X11117Y11453D01* X11109Y11452D01* X11101Y11449D01* X11093Y11445D01* X11086Y11439D01* X11080Y11433D01* X11076Y11425D01* X11073Y11417D01* X11064Y11391D01* X11053Y11366D01* X11044Y11350D01* Y11650D01* X11051Y11637D01* X11062Y11613D01* X11071Y11587D01* X11075Y11579D01* X11079Y11572D01* X11085Y11565D01* X11092Y11560D01* X11100Y11556D01* X11108Y11553D01* X11117Y11552D01* X11125Y11552D01* X11134Y11554D01* X11142Y11557D01* X11149Y11562D01* X11156Y11568D01* X11161Y11575D01* X11165Y11582D01* X11168Y11591D01* X11169Y11599D01* X11169Y11608D01* X11167Y11617D01* X11155Y11651D01* X11140Y11683D01* X11122Y11715D01* X11101Y11744D01* X11077Y11772D01* X11052Y11797D01* X11044Y11804D01* Y13214D01* X11062Y13232D01* X11085Y13260D01* X11105Y13290D01* X11123Y13322D01* X11137Y13355D01* X11149Y13389D01* X11151Y13398D01* X11151Y13407D01* X11150Y13415D01* X11147Y13423D01* X11142Y13431D01* X11137Y13438D01* X11130Y13444D01* X11123Y13448D01* X11115Y13451D01* X11106Y13453D01* X11097Y13453D01* X11089Y13452D01* X11081Y13449D01* X11073Y13445D01* X11066Y13439D01* X11060Y13433D01* X11056Y13425D01* X11053Y13417D01* X11044Y13391D01* X11044Y13391D01* Y13608D01* X11051Y13587D01* X11055Y13579D01* X11059Y13572D01* X11065Y13565D01* X11072Y13560D01* X11080Y13556D01* X11088Y13553D01* X11097Y13552D01* X11105Y13552D01* X11114Y13554D01* X11122Y13557D01* X11129Y13562D01* X11136Y13568D01* X11141Y13575D01* X11145Y13582D01* X11148Y13591D01* X11149Y13599D01* X11149Y13608D01* X11147Y13617D01* X11135Y13651D01* X11120Y13683D01* X11102Y13715D01* X11081Y13744D01* X11057Y13772D01* X11044Y13785D01* Y15235D01* X11065Y15260D01* X11085Y15290D01* X11103Y15322D01* X11117Y15355D01* X11129Y15389D01* X11131Y15398D01* X11131Y15407D01* X11130Y15415D01* X11127Y15423D01* X11122Y15431D01* X11117Y15438D01* X11110Y15444D01* X11103Y15448D01* X11095Y15451D01* X11086Y15453D01* X11077Y15453D01* X11069Y15452D01* X11061Y15449D01* X11053Y15445D01* X11046Y15439D01* X11044Y15437D01* Y15567D01* X11045Y15565D01* X11052Y15560D01* X11060Y15556D01* X11068Y15553D01* X11077Y15552D01* X11085Y15552D01* X11094Y15554D01* X11102Y15557D01* X11109Y15562D01* X11116Y15568D01* X11121Y15575D01* X11125Y15582D01* X11128Y15591D01* X11129Y15599D01* X11129Y15608D01* X11127Y15617D01* X11115Y15651D01* X11100Y15683D01* X11082Y15715D01* X11061Y15744D01* X11044Y15764D01* Y17259D01* X11045Y17260D01* X11065Y17290D01* X11083Y17322D01* X11097Y17355D01* X11109Y17389D01* X11111Y17398D01* X11111Y17407D01* X11110Y17415D01* X11107Y17423D01* X11102Y17431D01* X11097Y17438D01* X11090Y17444D01* X11083Y17448D01* X11075Y17451D01* X11066Y17453D01* X11057Y17453D01* X11049Y17452D01* X11044Y17450D01* Y17555D01* X11048Y17553D01* X11057Y17552D01* X11065Y17552D01* X11074Y17554D01* X11082Y17557D01* X11089Y17562D01* X11096Y17568D01* X11101Y17575D01* X11105Y17582D01* X11108Y17591D01* X11109Y17599D01* X11109Y17608D01* X11107Y17617D01* X11095Y17651D01* X11080Y17683D01* X11062Y17715D01* X11044Y17740D01* Y19288D01* X11045Y19290D01* X11063Y19322D01* X11077Y19355D01* X11089Y19389D01* X11091Y19398D01* X11091Y19407D01* X11090Y19415D01* X11087Y19423D01* X11082Y19431D01* X11077Y19438D01* X11070Y19444D01* X11063Y19448D01* X11055Y19451D01* X11046Y19453D01* X11044D01* Y19552D01* X11045D01* X11054Y19554D01* X11062Y19557D01* X11069Y19562D01* X11076Y19568D01* X11081Y19575D01* X11085Y19582D01* X11088Y19591D01* X11089Y19599D01* X11089Y19608D01* X11087Y19617D01* X11075Y19651D01* X11060Y19683D01* X11044Y19711D01* Y21324D01* X11057Y21355D01* X11069Y21389D01* X11071Y21398D01* X11071Y21407D01* X11070Y21415D01* X11067Y21423D01* X11062Y21431D01* X11057Y21438D01* X11050Y21444D01* X11044Y21447D01* Y21559D01* X11049Y21562D01* X11056Y21568D01* X11061Y21575D01* X11065Y21582D01* X11068Y21591D01* X11069Y21599D01* X11069Y21608D01* X11067Y21617D01* X11055Y21651D01* X11044Y21674D01* Y23374D01* X11049Y23389D01* X11051Y23398D01* X11051Y23407D01* X11050Y23415D01* X11047Y23423D01* X11044Y23428D01* Y23580D01* X11045Y23582D01* X11048Y23591D01* X11049Y23599D01* X11049Y23608D01* X11047Y23617D01* X11044Y23625D01* Y40000D01* G37* G36* X12285D02*X12485D01* Y35859D01* X12482Y35864D01* X12476Y35871D01* X12469Y35876D01* X12462Y35880D01* X12453Y35883D01* X12445Y35884D01* X12436Y35884D01* X12428Y35882D01* X12393Y35870D01* X12361Y35855D01* X12329Y35837D01* X12300Y35816D01* X12285Y35804D01* Y37179D01* X12285Y37179D01* X12315Y37159D01* X12347Y37141D01* X12380Y37127D01* X12414Y37115D01* X12423Y37113D01* X12432Y37113D01* X12440Y37115D01* X12448Y37117D01* X12456Y37122D01* X12463Y37127D01* X12469Y37134D01* X12473Y37141D01* X12476Y37149D01* X12478Y37158D01* X12478Y37167D01* X12477Y37175D01* X12474Y37183D01* X12470Y37191D01* X12464Y37198D01* X12457Y37204D01* X12450Y37208D01* X12442Y37211D01* X12416Y37220D01* X12391Y37231D01* X12368Y37244D01* X12345Y37259D01* X12324Y37276D01* X12305Y37295D01* X12287Y37316D01* X12285Y37319D01* Y37680D01* X12301Y37700D01* X12320Y37719D01* X12341Y37737D01* X12363Y37752D01* X12387Y37766D01* X12411Y37777D01* X12437Y37786D01* X12445Y37790D01* X12452Y37794D01* X12459Y37800D01* X12464Y37807D01* X12468Y37815D01* X12471Y37823D01* X12472Y37832D01* X12472Y37840D01* X12470Y37849D01* X12467Y37857D01* X12462Y37864D01* X12456Y37871D01* X12449Y37876D01* X12442Y37880D01* X12433Y37883D01* X12425Y37884D01* X12416Y37884D01* X12408Y37882D01* X12373Y37870D01* X12341Y37855D01* X12309Y37837D01* X12285Y37820D01* Y39166D01* X12295Y39159D01* X12327Y39141D01* X12360Y39127D01* X12394Y39115D01* X12403Y39113D01* X12412Y39113D01* X12420Y39115D01* X12428Y39117D01* X12436Y39122D01* X12443Y39127D01* X12449Y39134D01* X12453Y39141D01* X12456Y39149D01* X12458Y39158D01* X12458Y39167D01* X12457Y39175D01* X12454Y39183D01* X12450Y39191D01* X12444Y39198D01* X12437Y39204D01* X12430Y39208D01* X12422Y39211D01* X12396Y39220D01* X12371Y39231D01* X12348Y39244D01* X12325Y39259D01* X12304Y39276D01* X12285Y39295D01* Y39704D01* X12300Y39719D01* X12321Y39737D01* X12343Y39752D01* X12367Y39766D01* X12391Y39777D01* X12417Y39786D01* X12425Y39790D01* X12432Y39794D01* X12439Y39800D01* X12444Y39807D01* X12448Y39815D01* X12451Y39823D01* X12452Y39832D01* X12452Y39840D01* X12450Y39849D01* X12447Y39857D01* X12442Y39864D01* X12436Y39871D01* X12429Y39876D01* X12422Y39880D01* X12413Y39883D01* X12405Y39884D01* X12396Y39884D01* X12388Y39882D01* X12353Y39870D01* X12321Y39855D01* X12289Y39837D01* X12285Y39834D01* Y40000D01* G37* G36* Y35650D02*X12289Y35657D01* X12304Y35679D01* X12321Y35700D01* X12340Y35719D01* X12361Y35737D01* X12383Y35752D01* X12407Y35766D01* X12431Y35777D01* X12457Y35786D01* X12465Y35790D01* X12472Y35794D01* X12479Y35800D01* X12484Y35807D01* X12485Y35809D01* Y35197D01* X12484Y35198D01* X12477Y35204D01* X12470Y35208D01* X12462Y35211D01* X12436Y35220D01* X12411Y35231D01* X12388Y35244D01* X12365Y35259D01* X12344Y35276D01* X12325Y35295D01* X12307Y35316D01* X12292Y35338D01* X12285Y35349D01* Y35650D01* G37* G36* Y35196D02*X12305Y35179D01* X12335Y35159D01* X12367Y35141D01* X12400Y35127D01* X12434Y35115D01* X12443Y35113D01* X12452Y35113D01* X12460Y35115D01* X12468Y35117D01* X12476Y35122D01* X12483Y35127D01* X12485Y35130D01* Y33878D01* X12482Y33880D01* X12473Y33883D01* X12465Y33884D01* X12456Y33884D01* X12448Y33882D01* X12413Y33870D01* X12381Y33855D01* X12349Y33837D01* X12320Y33816D01* X12292Y33793D01* X12285Y33785D01* Y35196D01* G37* G36* Y33609D02*X12296Y33633D01* X12309Y33657D01* X12324Y33679D01* X12341Y33700D01* X12360Y33719D01* X12381Y33737D01* X12403Y33752D01* X12427Y33766D01* X12451Y33777D01* X12477Y33786D01* X12485Y33790D01* X12485Y33790D01* Y33210D01* X12482Y33211D01* X12456Y33220D01* X12431Y33231D01* X12408Y33244D01* X12385Y33259D01* X12364Y33276D01* X12345Y33295D01* X12327Y33316D01* X12312Y33338D01* X12298Y33362D01* X12287Y33386D01* X12285Y33391D01* Y33609D01* G37* G36* Y33214D02*X12297Y33202D01* X12325Y33179D01* X12355Y33159D01* X12387Y33141D01* X12420Y33127D01* X12454Y33115D01* X12463Y33113D01* X12472Y33113D01* X12480Y33115D01* X12485Y33116D01* Y31884D01* X12485Y31884D01* X12476Y31884D01* X12468Y31882D01* X12433Y31870D01* X12401Y31855D01* X12369Y31837D01* X12340Y31816D01* X12312Y31793D01* X12287Y31767D01* X12285Y31765D01* Y33214D01* G37* G36* Y31563D02*X12289Y31567D01* X12293Y31574D01* X12296Y31582D01* X12305Y31608D01* X12316Y31633D01* X12329Y31657D01* X12344Y31679D01* X12361Y31700D01* X12380Y31719D01* X12401Y31737D01* X12423Y31752D01* X12447Y31766D01* X12471Y31777D01* X12485Y31782D01* Y31217D01* X12476Y31220D01* X12451Y31231D01* X12428Y31244D01* X12405Y31259D01* X12384Y31276D01* X12365Y31295D01* X12347Y31316D01* X12332Y31338D01* X12318Y31362D01* X12307Y31386D01* X12298Y31412D01* X12294Y31420D01* X12290Y31427D01* X12285Y31432D01* Y31563D01* G37* G36* Y31235D02*X12292Y31227D01* X12317Y31202D01* X12345Y31179D01* X12375Y31159D01* X12407Y31141D01* X12440Y31127D01* X12474Y31115D01* X12483Y31113D01* X12485D01* Y29881D01* X12453Y29870D01* X12421Y29855D01* X12389Y29837D01* X12360Y29816D01* X12332Y29793D01* X12307Y29767D01* X12285Y29740D01* Y31235D01* G37* G36* Y29549D02*X12288Y29550D01* X12296Y29555D01* X12303Y29560D01* X12309Y29567D01* X12313Y29574D01* X12316Y29582D01* X12325Y29608D01* X12336Y29633D01* X12349Y29657D01* X12364Y29679D01* X12381Y29700D01* X12400Y29719D01* X12421Y29737D01* X12443Y29752D01* X12467Y29766D01* X12485Y29775D01* Y29225D01* X12471Y29231D01* X12448Y29244D01* X12425Y29259D01* X12404Y29276D01* X12385Y29295D01* X12367Y29316D01* X12352Y29338D01* X12338Y29362D01* X12327Y29386D01* X12318Y29412D01* X12314Y29420D01* X12310Y29427D01* X12304Y29434D01* X12297Y29439D01* X12289Y29443D01* X12285Y29445D01* Y29549D01* G37* G36* Y29259D02*X12288Y29255D01* X12312Y29227D01* X12337Y29202D01* X12365Y29179D01* X12395Y29159D01* X12427Y29141D01* X12460Y29127D01* X12485Y29118D01* Y27874D01* X12473Y27870D01* X12441Y27855D01* X12409Y27837D01* X12380Y27816D01* X12352Y27793D01* X12327Y27767D01* X12304Y27739D01* X12285Y27711D01* Y29259D01* G37* G36* Y27546D02*X12292Y27546D01* X12300Y27547D01* X12308Y27550D01* X12316Y27555D01* X12323Y27560D01* X12329Y27567D01* X12333Y27574D01* X12336Y27582D01* X12345Y27608D01* X12356Y27633D01* X12369Y27657D01* X12384Y27679D01* X12401Y27700D01* X12420Y27719D01* X12441Y27737D01* X12463Y27752D01* X12485Y27765D01* Y27234D01* X12468Y27244D01* X12445Y27259D01* X12424Y27276D01* X12405Y27295D01* X12387Y27316D01* X12372Y27338D01* X12358Y27362D01* X12347Y27386D01* X12338Y27412D01* X12334Y27420D01* X12330Y27427D01* X12324Y27434D01* X12317Y27439D01* X12309Y27443D01* X12301Y27446D01* X12292Y27447D01* X12285Y27447D01* Y27546D01* G37* G36* Y27288D02*X12287Y27284D01* X12308Y27255D01* X12332Y27227D01* X12357Y27202D01* X12385Y27179D01* X12415Y27159D01* X12447Y27141D01* X12480Y27127D01* X12485Y27125D01* Y25866D01* X12461Y25855D01* X12429Y25837D01* X12400Y25816D01* X12372Y25793D01* X12347Y25767D01* X12324Y25739D01* X12304Y25709D01* X12286Y25677D01* X12285Y25675D01* Y27288D01* G37* G36* Y25552D02*X12286Y25551D01* X12294Y25548D01* X12303Y25546D01* X12312Y25546D01* X12320Y25547D01* X12328Y25550D01* X12336Y25555D01* X12343Y25560D01* X12349Y25567D01* X12353Y25574D01* X12356Y25582D01* X12365Y25608D01* X12376Y25633D01* X12389Y25657D01* X12404Y25679D01* X12421Y25700D01* X12440Y25719D01* X12461Y25737D01* X12483Y25752D01* X12485Y25754D01* Y25246D01* X12465Y25259D01* X12444Y25276D01* X12425Y25295D01* X12407Y25316D01* X12392Y25338D01* X12378Y25362D01* X12367Y25386D01* X12358Y25412D01* X12354Y25420D01* X12350Y25427D01* X12344Y25434D01* X12337Y25439D01* X12329Y25443D01* X12321Y25446D01* X12312Y25447D01* X12304Y25447D01* X12295Y25445D01* X12287Y25442D01* X12285Y25441D01* Y25552D01* G37* G36* Y25325D02*X12289Y25316D01* X12307Y25284D01* X12328Y25255D01* X12352Y25227D01* X12377Y25202D01* X12405Y25179D01* X12435Y25159D01* X12467Y25141D01* X12485Y25133D01* Y23857D01* X12481Y23855D01* X12449Y23837D01* X12420Y23816D01* X12392Y23793D01* X12367Y23767D01* X12344Y23739D01* X12324Y23709D01* X12306Y23677D01* X12292Y23644D01* X12285Y23625D01* Y25325D01* G37* G36* Y23571D02*X12287Y23568D01* X12292Y23561D01* X12299Y23556D01* X12306Y23551D01* X12314Y23548D01* X12323Y23546D01* X12332Y23546D01* X12340Y23547D01* X12348Y23550D01* X12356Y23555D01* X12363Y23560D01* X12369Y23567D01* X12373Y23574D01* X12376Y23582D01* X12385Y23608D01* X12396Y23633D01* X12409Y23657D01* X12424Y23679D01* X12441Y23700D01* X12460Y23719D01* X12481Y23737D01* X12485Y23740D01* Y23259D01* X12485Y23259D01* X12464Y23276D01* X12445Y23295D01* X12427Y23316D01* X12412Y23338D01* X12398Y23362D01* X12387Y23386D01* X12378Y23412D01* X12374Y23420D01* X12370Y23427D01* X12364Y23434D01* X12357Y23439D01* X12349Y23443D01* X12341Y23446D01* X12332Y23447D01* X12324Y23447D01* X12315Y23445D01* X12307Y23442D01* X12300Y23437D01* X12293Y23431D01* X12288Y23424D01* X12285Y23419D01* Y23571D01* G37* G36* Y23374D02*X12294Y23349D01* X12309Y23316D01* X12327Y23284D01* X12348Y23255D01* X12372Y23227D01* X12397Y23202D01* X12425Y23179D01* X12455Y23159D01* X12485Y23142D01* Y21846D01* X12469Y21837D01* X12440Y21816D01* X12412Y21793D01* X12387Y21767D01* X12364Y21739D01* X12344Y21709D01* X12326Y21677D01* X12312Y21644D01* X12300Y21610D01* X12298Y21601D01* X12298Y21593D01* X12299Y21584D01* X12302Y21576D01* X12307Y21568D01* X12312Y21561D01* X12319Y21556D01* X12326Y21551D01* X12334Y21548D01* X12343Y21546D01* X12352Y21546D01* X12360Y21547D01* X12368Y21550D01* X12376Y21555D01* X12383Y21560D01* X12389Y21567D01* X12393Y21574D01* X12396Y21582D01* X12405Y21608D01* X12416Y21633D01* X12429Y21657D01* X12444Y21679D01* X12461Y21700D01* X12480Y21719D01* X12485Y21723D01* Y21276D01* X12484Y21276D01* X12465Y21295D01* X12447Y21316D01* X12432Y21338D01* X12418Y21362D01* X12407Y21386D01* X12398Y21412D01* X12394Y21420D01* X12390Y21427D01* X12384Y21434D01* X12377Y21439D01* X12369Y21443D01* X12361Y21446D01* X12352Y21447D01* X12344Y21447D01* X12335Y21445D01* X12327Y21442D01* X12320Y21437D01* X12313Y21431D01* X12308Y21424D01* X12304Y21417D01* X12301Y21409D01* X12300Y21400D01* X12300Y21391D01* X12302Y21383D01* X12314Y21349D01* X12329Y21316D01* X12347Y21284D01* X12368Y21255D01* X12392Y21227D01* X12417Y21202D01* X12445Y21179D01* X12475Y21159D01* X12485Y21153D01* Y19834D01* X12460Y19816D01* X12432Y19793D01* X12407Y19767D01* X12384Y19739D01* X12364Y19709D01* X12346Y19677D01* X12332Y19644D01* X12320Y19610D01* X12318Y19601D01* X12318Y19593D01* X12319Y19584D01* X12322Y19576D01* X12327Y19568D01* X12332Y19561D01* X12339Y19556D01* X12346Y19551D01* X12354Y19548D01* X12363Y19546D01* X12372Y19546D01* X12380Y19547D01* X12388Y19550D01* X12396Y19555D01* X12403Y19560D01* X12409Y19567D01* X12413Y19574D01* X12416Y19582D01* X12425Y19608D01* X12436Y19633D01* X12449Y19657D01* X12464Y19679D01* X12481Y19700D01* X12485Y19704D01* Y19295D01* X12485Y19295D01* X12467Y19316D01* X12452Y19338D01* X12438Y19362D01* X12427Y19386D01* X12418Y19412D01* X12414Y19420D01* X12410Y19427D01* X12404Y19434D01* X12397Y19439D01* X12389Y19443D01* X12381Y19446D01* X12372Y19447D01* X12364Y19447D01* X12355Y19445D01* X12347Y19442D01* X12340Y19437D01* X12333Y19431D01* X12328Y19424D01* X12324Y19417D01* X12321Y19409D01* X12320Y19400D01* X12320Y19391D01* X12322Y19383D01* X12334Y19349D01* X12349Y19316D01* X12367Y19284D01* X12388Y19255D01* X12412Y19227D01* X12437Y19202D01* X12465Y19179D01* X12485Y19166D01* Y17820D01* X12480Y17816D01* X12452Y17793D01* X12427Y17767D01* X12404Y17739D01* X12384Y17709D01* X12366Y17677D01* X12352Y17644D01* X12340Y17610D01* X12338Y17601D01* X12338Y17593D01* X12339Y17584D01* X12342Y17576D01* X12347Y17568D01* X12352Y17561D01* X12359Y17556D01* X12366Y17551D01* X12374Y17548D01* X12383Y17546D01* X12392Y17546D01* X12400Y17547D01* X12408Y17550D01* X12416Y17555D01* X12423Y17560D01* X12429Y17567D01* X12433Y17574D01* X12436Y17582D01* X12445Y17608D01* X12456Y17633D01* X12469Y17657D01* X12484Y17679D01* X12485Y17680D01* Y17319D01* X12472Y17338D01* X12458Y17362D01* X12447Y17386D01* X12438Y17412D01* X12434Y17420D01* X12430Y17427D01* X12424Y17434D01* X12417Y17439D01* X12409Y17443D01* X12401Y17446D01* X12392Y17447D01* X12384Y17447D01* X12375Y17445D01* X12367Y17442D01* X12360Y17437D01* X12353Y17431D01* X12348Y17424D01* X12344Y17417D01* X12341Y17409D01* X12340Y17400D01* X12340Y17391D01* X12342Y17383D01* X12354Y17349D01* X12369Y17316D01* X12387Y17284D01* X12408Y17255D01* X12432Y17227D01* X12457Y17202D01* X12485Y17179D01* Y15804D01* X12472Y15793D01* X12447Y15767D01* X12424Y15739D01* X12404Y15709D01* X12386Y15677D01* X12372Y15644D01* X12360Y15610D01* X12358Y15601D01* X12358Y15593D01* X12359Y15584D01* X12362Y15576D01* X12367Y15568D01* X12372Y15561D01* X12379Y15556D01* X12386Y15551D01* X12394Y15548D01* X12403Y15546D01* X12412Y15546D01* X12420Y15547D01* X12428Y15550D01* X12436Y15555D01* X12443Y15560D01* X12449Y15567D01* X12453Y15574D01* X12456Y15582D01* X12465Y15608D01* X12476Y15633D01* X12485Y15650D01* Y15349D01* X12478Y15362D01* X12467Y15386D01* X12458Y15412D01* X12454Y15420D01* X12450Y15427D01* X12444Y15434D01* X12437Y15439D01* X12429Y15443D01* X12421Y15446D01* X12412Y15447D01* X12404Y15447D01* X12395Y15445D01* X12387Y15442D01* X12380Y15437D01* X12373Y15431D01* X12368Y15424D01* X12364Y15417D01* X12361Y15409D01* X12360Y15400D01* X12360Y15391D01* X12362Y15383D01* X12374Y15349D01* X12389Y15316D01* X12407Y15284D01* X12428Y15255D01* X12452Y15227D01* X12477Y15202D01* X12485Y15196D01* Y13785D01* X12467Y13767D01* X12444Y13739D01* X12424Y13709D01* X12406Y13677D01* X12392Y13644D01* X12380Y13610D01* X12378Y13601D01* X12378Y13593D01* X12379Y13584D01* X12382Y13576D01* X12387Y13568D01* X12392Y13561D01* X12399Y13556D01* X12406Y13551D01* X12414Y13548D01* X12423Y13546D01* X12432Y13546D01* X12440Y13547D01* X12448Y13550D01* X12456Y13555D01* X12463Y13560D01* X12469Y13567D01* X12473Y13574D01* X12476Y13582D01* X12485Y13608D01* X12485Y13609D01* Y13391D01* X12478Y13412D01* X12474Y13420D01* X12470Y13427D01* X12464Y13434D01* X12457Y13439D01* X12449Y13443D01* X12441Y13446D01* X12432Y13447D01* X12424Y13447D01* X12415Y13445D01* X12407Y13442D01* X12400Y13437D01* X12393Y13431D01* X12388Y13424D01* X12384Y13417D01* X12381Y13409D01* X12380Y13400D01* X12380Y13391D01* X12382Y13383D01* X12394Y13349D01* X12409Y13316D01* X12427Y13284D01* X12448Y13255D01* X12472Y13227D01* X12485Y13214D01* Y11765D01* X12464Y11739D01* X12444Y11709D01* X12426Y11677D01* X12412Y11644D01* X12400Y11610D01* X12398Y11601D01* X12398Y11593D01* X12399Y11584D01* X12402Y11576D01* X12407Y11568D01* X12412Y11561D01* X12419Y11556D01* X12426Y11551D01* X12434Y11548D01* X12443Y11546D01* X12452Y11546D01* X12460Y11547D01* X12468Y11550D01* X12476Y11555D01* X12483Y11560D01* X12485Y11563D01* Y11432D01* X12484Y11434D01* X12477Y11439D01* X12469Y11443D01* X12461Y11446D01* X12452Y11447D01* X12444Y11447D01* X12435Y11445D01* X12427Y11442D01* X12420Y11437D01* X12413Y11431D01* X12408Y11424D01* X12404Y11417D01* X12401Y11409D01* X12400Y11400D01* X12400Y11391D01* X12402Y11383D01* X12414Y11349D01* X12429Y11316D01* X12447Y11284D01* X12468Y11255D01* X12485Y11235D01* Y9740D01* X12484Y9739D01* X12464Y9709D01* X12446Y9677D01* X12432Y9644D01* X12420Y9610D01* X12418Y9601D01* X12418Y9593D01* X12419Y9584D01* X12422Y9576D01* X12427Y9568D01* X12432Y9561D01* X12439Y9556D01* X12446Y9551D01* X12454Y9548D01* X12463Y9546D01* X12472Y9546D01* X12480Y9547D01* X12485Y9549D01* Y9445D01* X12481Y9446D01* X12472Y9447D01* X12464Y9447D01* X12455Y9445D01* X12447Y9442D01* X12440Y9437D01* X12433Y9431D01* X12428Y9424D01* X12424Y9417D01* X12421Y9409D01* X12420Y9400D01* X12420Y9391D01* X12422Y9383D01* X12434Y9349D01* X12449Y9316D01* X12467Y9284D01* X12485Y9259D01* Y7711D01* X12484Y7709D01* X12466Y7677D01* X12452Y7644D01* X12440Y7610D01* X12438Y7601D01* X12438Y7593D01* X12439Y7584D01* X12442Y7576D01* X12447Y7568D01* X12452Y7561D01* X12459Y7556D01* X12466Y7551D01* X12474Y7548D01* X12483Y7546D01* X12485D01* Y7447D01* X12484Y7447D01* X12475Y7445D01* X12467Y7442D01* X12460Y7437D01* X12453Y7431D01* X12448Y7424D01* X12444Y7417D01* X12441Y7409D01* X12440Y7400D01* X12440Y7391D01* X12442Y7383D01* X12454Y7349D01* X12469Y7316D01* X12485Y7288D01* Y5675D01* X12472Y5644D01* X12460Y5610D01* X12458Y5601D01* X12458Y5593D01* X12459Y5584D01* X12462Y5576D01* X12467Y5568D01* X12472Y5561D01* X12479Y5556D01* X12485Y5552D01* Y5441D01* X12480Y5437D01* X12473Y5431D01* X12468Y5424D01* X12464Y5417D01* X12461Y5409D01* X12460Y5400D01* X12460Y5391D01* X12462Y5383D01* X12474Y5349D01* X12485Y5325D01* Y3625D01* X12480Y3610D01* X12478Y3601D01* X12478Y3593D01* X12479Y3584D01* X12482Y3576D01* X12485Y3571D01* Y3419D01* X12484Y3417D01* X12481Y3409D01* X12480Y3400D01* X12480Y3391D01* X12482Y3383D01* X12485Y3374D01* Y0D01* X12285D01* Y23374D01* G37* G36* X12485Y40000D02*X12665D01* Y39865D01* X12649Y39873D01* X12615Y39884D01* X12606Y39886D01* X12597Y39886D01* X12589Y39885D01* X12581Y39882D01* X12573Y39878D01* X12566Y39872D01* X12560Y39865D01* X12556Y39858D01* X12553Y39850D01* X12551Y39841D01* X12551Y39833D01* X12552Y39824D01* X12555Y39816D01* X12559Y39808D01* X12565Y39801D01* X12572Y39796D01* X12579Y39791D01* X12587Y39788D01* X12613Y39779D01* X12638Y39768D01* X12661Y39755D01* X12665Y39753D01* Y39246D01* X12642Y39233D01* X12618Y39222D01* X12592Y39213D01* X12584Y39209D01* X12577Y39205D01* X12570Y39199D01* X12565Y39192D01* X12561Y39184D01* X12558Y39176D01* X12557Y39167D01* X12557Y39159D01* X12559Y39150D01* X12562Y39142D01* X12567Y39135D01* X12573Y39128D01* X12580Y39123D01* X12587Y39119D01* X12596Y39116D01* X12604Y39115D01* X12613Y39115D01* X12621Y39117D01* X12656Y39129D01* X12665Y39134D01* Y37874D01* X12635Y37884D01* X12626Y37886D01* X12617Y37886D01* X12609Y37885D01* X12601Y37882D01* X12593Y37878D01* X12586Y37872D01* X12580Y37865D01* X12576Y37858D01* X12573Y37850D01* X12571Y37841D01* X12571Y37833D01* X12572Y37824D01* X12575Y37816D01* X12579Y37808D01* X12585Y37801D01* X12592Y37796D01* X12599Y37791D01* X12607Y37788D01* X12633Y37779D01* X12658Y37768D01* X12665Y37764D01* Y37235D01* X12662Y37233D01* X12638Y37222D01* X12612Y37213D01* X12604Y37209D01* X12597Y37205D01* X12590Y37199D01* X12585Y37192D01* X12581Y37184D01* X12578Y37176D01* X12577Y37167D01* X12577Y37159D01* X12579Y37150D01* X12582Y37142D01* X12587Y37135D01* X12593Y37128D01* X12600Y37123D01* X12607Y37119D01* X12616Y37116D01* X12624Y37115D01* X12633Y37115D01* X12641Y37117D01* X12665Y37126D01* Y35881D01* X12655Y35884D01* X12646Y35886D01* X12637Y35886D01* X12629Y35885D01* X12621Y35882D01* X12613Y35878D01* X12606Y35872D01* X12600Y35865D01* X12596Y35858D01* X12593Y35850D01* X12591Y35841D01* X12591Y35833D01* X12592Y35824D01* X12595Y35816D01* X12599Y35808D01* X12605Y35801D01* X12612Y35796D01* X12619Y35791D01* X12627Y35788D01* X12653Y35779D01* X12665Y35774D01* Y35225D01* X12658Y35222D01* X12632Y35213D01* X12624Y35209D01* X12617Y35205D01* X12610Y35199D01* X12605Y35192D01* X12601Y35184D01* X12598Y35176D01* X12597Y35167D01* X12597Y35159D01* X12599Y35150D01* X12602Y35142D01* X12607Y35135D01* X12613Y35128D01* X12620Y35123D01* X12627Y35119D01* X12636Y35116D01* X12644Y35115D01* X12653Y35115D01* X12661Y35117D01* X12665Y35118D01* Y33886D01* X12657Y33886D01* X12649Y33885D01* X12641Y33882D01* X12633Y33878D01* X12626Y33872D01* X12620Y33865D01* X12616Y33858D01* X12613Y33850D01* X12611Y33841D01* X12611Y33833D01* X12612Y33824D01* X12615Y33816D01* X12619Y33808D01* X12625Y33801D01* X12632Y33796D01* X12639Y33791D01* X12647Y33788D01* X12665Y33782D01* Y33217D01* X12652Y33213D01* X12644Y33209D01* X12637Y33205D01* X12630Y33199D01* X12625Y33192D01* X12621Y33184D01* X12618Y33176D01* X12617Y33167D01* X12617Y33159D01* X12619Y33150D01* X12622Y33142D01* X12627Y33135D01* X12633Y33128D01* X12640Y33123D01* X12647Y33119D01* X12656Y33116D01* X12664Y33115D01* X12665D01* Y31883D01* X12661Y31882D01* X12653Y31878D01* X12646Y31872D01* X12640Y31865D01* X12636Y31858D01* X12633Y31850D01* X12631Y31841D01* X12631Y31833D01* X12632Y31824D01* X12635Y31816D01* X12639Y31808D01* X12645Y31801D01* X12652Y31796D01* X12659Y31791D01* X12665Y31789D01* Y31210D01* X12664Y31209D01* X12657Y31205D01* X12650Y31199D01* X12645Y31192D01* X12641Y31184D01* X12638Y31176D01* X12637Y31167D01* X12637Y31159D01* X12639Y31150D01* X12642Y31142D01* X12647Y31135D01* X12653Y31128D01* X12660Y31123D01* X12665Y31120D01* Y29871D01* X12660Y29865D01* X12656Y29858D01* X12653Y29850D01* X12651Y29841D01* X12651Y29833D01* X12652Y29824D01* X12655Y29816D01* X12659Y29808D01* X12665Y29801D01* X12665Y29801D01* Y29192D01* X12665Y29192D01* X12661Y29184D01* X12658Y29176D01* X12657Y29167D01* X12657Y29159D01* X12659Y29150D01* X12662Y29142D01* X12665Y29138D01* Y17859D01* X12662Y17864D01* X12656Y17871D01* X12649Y17876D01* X12642Y17880D01* X12633Y17883D01* X12625Y17884D01* X12616Y17884D01* X12608Y17882D01* X12573Y17870D01* X12541Y17855D01* X12509Y17837D01* X12485Y17820D01* Y19166D01* X12495Y19159D01* X12527Y19141D01* X12560Y19127D01* X12594Y19115D01* X12603Y19113D01* X12612Y19113D01* X12620Y19115D01* X12628Y19117D01* X12636Y19122D01* X12643Y19127D01* X12649Y19134D01* X12653Y19141D01* X12656Y19149D01* X12658Y19158D01* X12658Y19167D01* X12657Y19175D01* X12654Y19183D01* X12650Y19191D01* X12644Y19198D01* X12637Y19204D01* X12630Y19208D01* X12622Y19211D01* X12596Y19220D01* X12571Y19231D01* X12548Y19244D01* X12525Y19259D01* X12504Y19276D01* X12485Y19295D01* Y19704D01* X12500Y19719D01* X12521Y19737D01* X12543Y19752D01* X12567Y19766D01* X12591Y19777D01* X12617Y19786D01* X12625Y19790D01* X12632Y19794D01* X12639Y19800D01* X12644Y19807D01* X12648Y19815D01* X12651Y19823D01* X12652Y19832D01* X12652Y19840D01* X12650Y19849D01* X12647Y19857D01* X12642Y19864D01* X12636Y19871D01* X12629Y19876D01* X12622Y19880D01* X12613Y19883D01* X12605Y19884D01* X12596Y19884D01* X12588Y19882D01* X12553Y19870D01* X12521Y19855D01* X12489Y19837D01* X12485Y19834D01* Y21153D01* X12507Y21141D01* X12540Y21127D01* X12574Y21115D01* X12583Y21113D01* X12592Y21113D01* X12600Y21115D01* X12608Y21117D01* X12616Y21122D01* X12623Y21127D01* X12629Y21134D01* X12633Y21141D01* X12636Y21149D01* X12638Y21158D01* X12638Y21167D01* X12637Y21175D01* X12634Y21183D01* X12630Y21191D01* X12624Y21198D01* X12617Y21204D01* X12610Y21208D01* X12602Y21211D01* X12576Y21220D01* X12551Y21231D01* X12528Y21244D01* X12505Y21259D01* X12485Y21276D01* Y21723D01* X12501Y21737D01* X12523Y21752D01* X12547Y21766D01* X12571Y21777D01* X12597Y21786D01* X12605Y21790D01* X12612Y21794D01* X12619Y21800D01* X12624Y21807D01* X12628Y21815D01* X12631Y21823D01* X12632Y21832D01* X12632Y21840D01* X12630Y21849D01* X12627Y21857D01* X12622Y21864D01* X12616Y21871D01* X12609Y21876D01* X12602Y21880D01* X12593Y21883D01* X12585Y21884D01* X12576Y21884D01* X12568Y21882D01* X12533Y21870D01* X12501Y21855D01* X12485Y21846D01* Y23142D01* X12487Y23141D01* X12520Y23127D01* X12554Y23115D01* X12563Y23113D01* X12572Y23113D01* X12580Y23115D01* X12588Y23117D01* X12596Y23122D01* X12603Y23127D01* X12609Y23134D01* X12613Y23141D01* X12616Y23149D01* X12618Y23158D01* X12618Y23167D01* X12617Y23175D01* X12614Y23183D01* X12610Y23191D01* X12604Y23198D01* X12597Y23204D01* X12590Y23208D01* X12582Y23211D01* X12556Y23220D01* X12531Y23231D01* X12508Y23244D01* X12485Y23259D01* Y23740D01* X12503Y23752D01* X12527Y23766D01* X12551Y23777D01* X12577Y23786D01* X12585Y23790D01* X12592Y23794D01* X12599Y23800D01* X12604Y23807D01* X12608Y23815D01* X12611Y23823D01* X12612Y23832D01* X12612Y23840D01* X12610Y23849D01* X12607Y23857D01* X12602Y23864D01* X12596Y23871D01* X12589Y23876D01* X12582Y23880D01* X12573Y23883D01* X12565Y23884D01* X12556Y23884D01* X12548Y23882D01* X12513Y23870D01* X12485Y23857D01* Y25133D01* X12500Y25127D01* X12534Y25115D01* X12543Y25113D01* X12552Y25113D01* X12560Y25115D01* X12568Y25117D01* X12576Y25122D01* X12583Y25127D01* X12589Y25134D01* X12593Y25141D01* X12596Y25149D01* X12598Y25158D01* X12598Y25167D01* X12597Y25175D01* X12594Y25183D01* X12590Y25191D01* X12584Y25198D01* X12577Y25204D01* X12570Y25208D01* X12562Y25211D01* X12536Y25220D01* X12511Y25231D01* X12488Y25244D01* X12485Y25246D01* Y25754D01* X12507Y25766D01* X12531Y25777D01* X12557Y25786D01* X12565Y25790D01* X12572Y25794D01* X12579Y25800D01* X12584Y25807D01* X12588Y25815D01* X12591Y25823D01* X12592Y25832D01* X12592Y25840D01* X12590Y25849D01* X12587Y25857D01* X12582Y25864D01* X12576Y25871D01* X12569Y25876D01* X12562Y25880D01* X12553Y25883D01* X12545Y25884D01* X12536Y25884D01* X12528Y25882D01* X12493Y25870D01* X12485Y25866D01* Y27125D01* X12514Y27115D01* X12523Y27113D01* X12532Y27113D01* X12540Y27115D01* X12548Y27117D01* X12556Y27122D01* X12563Y27127D01* X12569Y27134D01* X12573Y27141D01* X12576Y27149D01* X12578Y27158D01* X12578Y27167D01* X12577Y27175D01* X12574Y27183D01* X12570Y27191D01* X12564Y27198D01* X12557Y27204D01* X12550Y27208D01* X12542Y27211D01* X12516Y27220D01* X12491Y27231D01* X12485Y27234D01* Y27765D01* X12487Y27766D01* X12511Y27777D01* X12537Y27786D01* X12545Y27790D01* X12552Y27794D01* X12559Y27800D01* X12564Y27807D01* X12568Y27815D01* X12571Y27823D01* X12572Y27832D01* X12572Y27840D01* X12570Y27849D01* X12567Y27857D01* X12562Y27864D01* X12556Y27871D01* X12549Y27876D01* X12542Y27880D01* X12533Y27883D01* X12525Y27884D01* X12516Y27884D01* X12508Y27882D01* X12485Y27874D01* Y29118D01* X12494Y29115D01* X12503Y29113D01* X12512Y29113D01* X12520Y29115D01* X12528Y29117D01* X12536Y29122D01* X12543Y29127D01* X12549Y29134D01* X12553Y29141D01* X12556Y29149D01* X12558Y29158D01* X12558Y29167D01* X12557Y29175D01* X12554Y29183D01* X12550Y29191D01* X12544Y29198D01* X12537Y29204D01* X12530Y29208D01* X12522Y29211D01* X12496Y29220D01* X12485Y29225D01* Y29775D01* X12491Y29777D01* X12517Y29786D01* X12525Y29790D01* X12532Y29794D01* X12539Y29800D01* X12544Y29807D01* X12548Y29815D01* X12551Y29823D01* X12552Y29832D01* X12552Y29840D01* X12550Y29849D01* X12547Y29857D01* X12542Y29864D01* X12536Y29871D01* X12529Y29876D01* X12522Y29880D01* X12513Y29883D01* X12505Y29884D01* X12496Y29884D01* X12488Y29882D01* X12485Y29881D01* Y31113D01* X12492Y31113D01* X12500Y31115D01* X12508Y31117D01* X12516Y31122D01* X12523Y31127D01* X12529Y31134D01* X12533Y31141D01* X12536Y31149D01* X12538Y31158D01* X12538Y31167D01* X12537Y31175D01* X12534Y31183D01* X12530Y31191D01* X12524Y31198D01* X12517Y31204D01* X12510Y31208D01* X12502Y31211D01* X12485Y31217D01* Y31782D01* X12497Y31786D01* X12505Y31790D01* X12512Y31794D01* X12519Y31800D01* X12524Y31807D01* X12528Y31815D01* X12531Y31823D01* X12532Y31832D01* X12532Y31840D01* X12530Y31849D01* X12527Y31857D01* X12522Y31864D01* X12516Y31871D01* X12509Y31876D01* X12502Y31880D01* X12493Y31883D01* X12485Y31884D01* Y33116D01* X12488Y33117D01* X12496Y33122D01* X12503Y33127D01* X12509Y33134D01* X12513Y33141D01* X12516Y33149D01* X12518Y33158D01* X12518Y33167D01* X12517Y33175D01* X12514Y33183D01* X12510Y33191D01* X12504Y33198D01* X12497Y33204D01* X12490Y33208D01* X12485Y33210D01* Y33790D01* X12492Y33794D01* X12499Y33800D01* X12504Y33807D01* X12508Y33815D01* X12511Y33823D01* X12512Y33832D01* X12512Y33840D01* X12510Y33849D01* X12507Y33857D01* X12502Y33864D01* X12496Y33871D01* X12489Y33876D01* X12485Y33878D01* Y35130D01* X12489Y35134D01* X12493Y35141D01* X12496Y35149D01* X12498Y35158D01* X12498Y35167D01* X12497Y35175D01* X12494Y35183D01* X12490Y35191D01* X12485Y35197D01* Y35809D01* X12488Y35815D01* X12491Y35823D01* X12492Y35832D01* X12492Y35840D01* X12490Y35849D01* X12487Y35857D01* X12485Y35859D01* Y40000D01* G37* G36* X12665Y0D02*X12485D01* Y3374D01* X12494Y3349D01* X12509Y3316D01* X12527Y3284D01* X12548Y3255D01* X12572Y3227D01* X12597Y3202D01* X12625Y3179D01* X12655Y3159D01* X12665Y3153D01* Y1834D01* X12640Y1816D01* X12612Y1793D01* X12587Y1767D01* X12564Y1739D01* X12544Y1709D01* X12526Y1677D01* X12512Y1644D01* X12500Y1610D01* X12498Y1601D01* X12498Y1593D01* X12499Y1584D01* X12502Y1576D01* X12507Y1568D01* X12512Y1561D01* X12519Y1556D01* X12526Y1551D01* X12534Y1548D01* X12543Y1546D01* X12552Y1546D01* X12560Y1547D01* X12568Y1550D01* X12576Y1555D01* X12583Y1560D01* X12589Y1567D01* X12593Y1574D01* X12596Y1582D01* X12605Y1608D01* X12616Y1633D01* X12629Y1657D01* X12644Y1679D01* X12661Y1700D01* X12665Y1704D01* Y1295D01* X12665Y1295D01* X12647Y1316D01* X12632Y1338D01* X12618Y1362D01* X12607Y1386D01* X12598Y1412D01* X12594Y1420D01* X12590Y1427D01* X12584Y1434D01* X12577Y1439D01* X12569Y1443D01* X12561Y1446D01* X12552Y1447D01* X12544Y1447D01* X12535Y1445D01* X12527Y1442D01* X12520Y1437D01* X12513Y1431D01* X12508Y1424D01* X12504Y1417D01* X12501Y1409D01* X12500Y1400D01* X12500Y1391D01* X12502Y1383D01* X12514Y1349D01* X12529Y1316D01* X12547Y1284D01* X12568Y1255D01* X12592Y1227D01* X12617Y1202D01* X12645Y1179D01* X12665Y1166D01* Y0D01* G37* G36* Y3276D02*X12664Y3276D01* X12645Y3295D01* X12627Y3316D01* X12612Y3338D01* X12598Y3362D01* X12587Y3386D01* X12578Y3412D01* X12574Y3420D01* X12570Y3427D01* X12564Y3434D01* X12557Y3439D01* X12549Y3443D01* X12541Y3446D01* X12532Y3447D01* X12524Y3447D01* X12515Y3445D01* X12507Y3442D01* X12500Y3437D01* X12493Y3431D01* X12488Y3424D01* X12485Y3419D01* Y3571D01* X12487Y3568D01* X12492Y3561D01* X12499Y3556D01* X12506Y3551D01* X12514Y3548D01* X12523Y3546D01* X12532Y3546D01* X12540Y3547D01* X12548Y3550D01* X12556Y3555D01* X12563Y3560D01* X12569Y3567D01* X12573Y3574D01* X12576Y3582D01* X12585Y3608D01* X12596Y3633D01* X12609Y3657D01* X12624Y3679D01* X12641Y3700D01* X12660Y3719D01* X12665Y3723D01* Y3276D01* G37* G36* Y3846D02*X12649Y3837D01* X12620Y3816D01* X12592Y3793D01* X12567Y3767D01* X12544Y3739D01* X12524Y3709D01* X12506Y3677D01* X12492Y3644D01* X12485Y3625D01* Y5325D01* X12489Y5316D01* X12507Y5284D01* X12528Y5255D01* X12552Y5227D01* X12577Y5202D01* X12605Y5179D01* X12635Y5159D01* X12665Y5142D01* Y3846D01* G37* G36* Y5259D02*X12665Y5259D01* X12644Y5276D01* X12625Y5295D01* X12607Y5316D01* X12592Y5338D01* X12578Y5362D01* X12567Y5386D01* X12558Y5412D01* X12554Y5420D01* X12550Y5427D01* X12544Y5434D01* X12537Y5439D01* X12529Y5443D01* X12521Y5446D01* X12512Y5447D01* X12504Y5447D01* X12495Y5445D01* X12487Y5442D01* X12485Y5441D01* Y5552D01* X12486Y5551D01* X12494Y5548D01* X12503Y5546D01* X12512Y5546D01* X12520Y5547D01* X12528Y5550D01* X12536Y5555D01* X12543Y5560D01* X12549Y5567D01* X12553Y5574D01* X12556Y5582D01* X12565Y5608D01* X12576Y5633D01* X12589Y5657D01* X12604Y5679D01* X12621Y5700D01* X12640Y5719D01* X12661Y5737D01* X12665Y5740D01* Y5259D01* G37* G36* Y5857D02*X12661Y5855D01* X12629Y5837D01* X12600Y5816D01* X12572Y5793D01* X12547Y5767D01* X12524Y5739D01* X12504Y5709D01* X12486Y5677D01* X12485Y5675D01* Y7288D01* X12487Y7284D01* X12508Y7255D01* X12532Y7227D01* X12557Y7202D01* X12585Y7179D01* X12615Y7159D01* X12647Y7141D01* X12665Y7133D01* Y5857D01* G37* G36* Y7246D02*X12645Y7259D01* X12624Y7276D01* X12605Y7295D01* X12587Y7316D01* X12572Y7338D01* X12558Y7362D01* X12547Y7386D01* X12538Y7412D01* X12534Y7420D01* X12530Y7427D01* X12524Y7434D01* X12517Y7439D01* X12509Y7443D01* X12501Y7446D01* X12492Y7447D01* X12485Y7447D01* Y7546D01* X12492Y7546D01* X12500Y7547D01* X12508Y7550D01* X12516Y7555D01* X12523Y7560D01* X12529Y7567D01* X12533Y7574D01* X12536Y7582D01* X12545Y7608D01* X12556Y7633D01* X12569Y7657D01* X12584Y7679D01* X12601Y7700D01* X12620Y7719D01* X12641Y7737D01* X12663Y7752D01* X12665Y7754D01* Y7246D01* G37* G36* Y7866D02*X12641Y7855D01* X12609Y7837D01* X12580Y7816D01* X12552Y7793D01* X12527Y7767D01* X12504Y7739D01* X12485Y7711D01* Y9259D01* X12488Y9255D01* X12512Y9227D01* X12537Y9202D01* X12565Y9179D01* X12595Y9159D01* X12627Y9141D01* X12660Y9127D01* X12665Y9125D01* Y7866D01* G37* G36* Y9234D02*X12648Y9244D01* X12625Y9259D01* X12604Y9276D01* X12585Y9295D01* X12567Y9316D01* X12552Y9338D01* X12538Y9362D01* X12527Y9386D01* X12518Y9412D01* X12514Y9420D01* X12510Y9427D01* X12504Y9434D01* X12497Y9439D01* X12489Y9443D01* X12485Y9445D01* Y9549D01* X12488Y9550D01* X12496Y9555D01* X12503Y9560D01* X12509Y9567D01* X12513Y9574D01* X12516Y9582D01* X12525Y9608D01* X12536Y9633D01* X12549Y9657D01* X12564Y9679D01* X12581Y9700D01* X12600Y9719D01* X12621Y9737D01* X12643Y9752D01* X12665Y9765D01* Y9234D01* G37* G36* Y9874D02*X12653Y9870D01* X12621Y9855D01* X12589Y9837D01* X12560Y9816D01* X12532Y9793D01* X12507Y9767D01* X12485Y9740D01* Y11235D01* X12492Y11227D01* X12517Y11202D01* X12545Y11179D01* X12575Y11159D01* X12607Y11141D01* X12640Y11127D01* X12665Y11118D01* Y9874D01* G37* G36* Y11225D02*X12651Y11231D01* X12628Y11244D01* X12605Y11259D01* X12584Y11276D01* X12565Y11295D01* X12547Y11316D01* X12532Y11338D01* X12518Y11362D01* X12507Y11386D01* X12498Y11412D01* X12494Y11420D01* X12490Y11427D01* X12485Y11432D01* Y11563D01* X12489Y11567D01* X12493Y11574D01* X12496Y11582D01* X12505Y11608D01* X12516Y11633D01* X12529Y11657D01* X12544Y11679D01* X12561Y11700D01* X12580Y11719D01* X12601Y11737D01* X12623Y11752D01* X12647Y11766D01* X12665Y11775D01* Y11225D01* G37* G36* Y11881D02*X12633Y11870D01* X12601Y11855D01* X12569Y11837D01* X12540Y11816D01* X12512Y11793D01* X12487Y11767D01* X12485Y11765D01* Y13214D01* X12497Y13202D01* X12525Y13179D01* X12555Y13159D01* X12587Y13141D01* X12620Y13127D01* X12654Y13115D01* X12663Y13113D01* X12665D01* Y11881D01* G37* G36* Y13217D02*X12656Y13220D01* X12631Y13231D01* X12608Y13244D01* X12585Y13259D01* X12564Y13276D01* X12545Y13295D01* X12527Y13316D01* X12512Y13338D01* X12498Y13362D01* X12487Y13386D01* X12485Y13391D01* Y13609D01* X12496Y13633D01* X12509Y13657D01* X12524Y13679D01* X12541Y13700D01* X12560Y13719D01* X12581Y13737D01* X12603Y13752D01* X12627Y13766D01* X12651Y13777D01* X12665Y13782D01* Y13217D01* G37* G36* Y13884D02*X12665Y13884D01* X12656Y13884D01* X12648Y13882D01* X12613Y13870D01* X12581Y13855D01* X12549Y13837D01* X12520Y13816D01* X12492Y13793D01* X12485Y13785D01* Y15196D01* X12505Y15179D01* X12535Y15159D01* X12567Y15141D01* X12600Y15127D01* X12634Y15115D01* X12643Y15113D01* X12652Y15113D01* X12660Y15115D01* X12665Y15116D01* Y13884D01* G37* G36* Y15210D02*X12662Y15211D01* X12636Y15220D01* X12611Y15231D01* X12588Y15244D01* X12565Y15259D01* X12544Y15276D01* X12525Y15295D01* X12507Y15316D01* X12492Y15338D01* X12485Y15349D01* Y15650D01* X12489Y15657D01* X12504Y15679D01* X12521Y15700D01* X12540Y15719D01* X12561Y15737D01* X12583Y15752D01* X12607Y15766D01* X12631Y15777D01* X12657Y15786D01* X12665Y15790D01* X12665Y15790D01* Y15210D01* G37* G36* Y15878D02*X12662Y15880D01* X12653Y15883D01* X12645Y15884D01* X12636Y15884D01* X12628Y15882D01* X12593Y15870D01* X12561Y15855D01* X12529Y15837D01* X12500Y15816D01* X12485Y15804D01* Y17179D01* X12485Y17179D01* X12515Y17159D01* X12547Y17141D01* X12580Y17127D01* X12614Y17115D01* X12623Y17113D01* X12632Y17113D01* X12640Y17115D01* X12648Y17117D01* X12656Y17122D01* X12663Y17127D01* X12665Y17130D01* Y15878D01* G37* G36* Y17197D02*X12664Y17198D01* X12657Y17204D01* X12650Y17208D01* X12642Y17211D01* X12616Y17220D01* X12591Y17231D01* X12568Y17244D01* X12545Y17259D01* X12524Y17276D01* X12505Y17295D01* X12487Y17316D01* X12485Y17319D01* Y17680D01* X12501Y17700D01* X12520Y17719D01* X12541Y17737D01* X12563Y17752D01* X12587Y17766D01* X12611Y17777D01* X12637Y17786D01* X12645Y17790D01* X12652Y17794D01* X12659Y17800D01* X12664Y17807D01* X12665Y17809D01* Y17197D01* G37* G36* Y40000D02*X12924D01* Y35625D01* X12915Y35651D01* X12900Y35683D01* X12882Y35715D01* X12861Y35744D01* X12837Y35772D01* X12812Y35797D01* X12784Y35820D01* X12754Y35840D01* X12722Y35858D01* X12689Y35873D01* X12665Y35881D01* Y37126D01* X12676Y37129D01* X12708Y37144D01* X12740Y37162D01* X12769Y37183D01* X12797Y37207D01* X12822Y37232D01* X12845Y37260D01* X12865Y37290D01* X12883Y37322D01* X12897Y37355D01* X12909Y37389D01* X12911Y37398D01* X12911Y37407D01* X12910Y37415D01* X12907Y37423D01* X12902Y37431D01* X12897Y37438D01* X12890Y37444D01* X12883Y37448D01* X12875Y37451D01* X12866Y37453D01* X12857Y37453D01* X12849Y37452D01* X12841Y37449D01* X12833Y37445D01* X12826Y37439D01* X12820Y37433D01* X12816Y37425D01* X12813Y37417D01* X12804Y37391D01* X12793Y37366D01* X12780Y37343D01* X12765Y37320D01* X12748Y37299D01* X12729Y37280D01* X12708Y37262D01* X12686Y37247D01* X12665Y37235D01* Y37764D01* X12681Y37755D01* X12704Y37740D01* X12725Y37723D01* X12744Y37704D01* X12762Y37683D01* X12777Y37661D01* X12791Y37637D01* X12802Y37613D01* X12811Y37587D01* X12815Y37579D01* X12819Y37572D01* X12825Y37565D01* X12832Y37560D01* X12840Y37556D01* X12848Y37553D01* X12857Y37552D01* X12865Y37552D01* X12874Y37554D01* X12882Y37557D01* X12889Y37562D01* X12896Y37568D01* X12901Y37575D01* X12905Y37582D01* X12908Y37591D01* X12909Y37599D01* X12909Y37608D01* X12907Y37617D01* X12895Y37651D01* X12880Y37683D01* X12862Y37715D01* X12841Y37744D01* X12817Y37772D01* X12792Y37797D01* X12764Y37820D01* X12734Y37840D01* X12702Y37858D01* X12669Y37873D01* X12665Y37874D01* Y39134D01* X12688Y39144D01* X12720Y39162D01* X12749Y39183D01* X12777Y39207D01* X12802Y39232D01* X12825Y39260D01* X12845Y39290D01* X12863Y39322D01* X12877Y39355D01* X12889Y39389D01* X12891Y39398D01* X12891Y39407D01* X12890Y39415D01* X12887Y39423D01* X12882Y39431D01* X12877Y39438D01* X12870Y39444D01* X12863Y39448D01* X12855Y39451D01* X12846Y39453D01* X12837Y39453D01* X12829Y39452D01* X12821Y39449D01* X12813Y39445D01* X12806Y39439D01* X12800Y39433D01* X12796Y39425D01* X12793Y39417D01* X12784Y39391D01* X12773Y39366D01* X12760Y39343D01* X12745Y39320D01* X12728Y39299D01* X12709Y39280D01* X12688Y39262D01* X12666Y39247D01* X12665Y39246D01* Y39753D01* X12684Y39740D01* X12705Y39723D01* X12724Y39704D01* X12742Y39683D01* X12757Y39661D01* X12771Y39637D01* X12782Y39613D01* X12791Y39587D01* X12795Y39579D01* X12799Y39572D01* X12805Y39565D01* X12812Y39560D01* X12820Y39556D01* X12828Y39553D01* X12837Y39552D01* X12845Y39552D01* X12854Y39554D01* X12862Y39557D01* X12869Y39562D01* X12876Y39568D01* X12881Y39575D01* X12885Y39582D01* X12888Y39591D01* X12889Y39599D01* X12889Y39608D01* X12887Y39617D01* X12875Y39651D01* X12860Y39683D01* X12842Y39715D01* X12821Y39744D01* X12797Y39772D01* X12772Y39797D01* X12744Y39820D01* X12714Y39840D01* X12682Y39858D01* X12665Y39865D01* Y40000D01* G37* G36* Y35774D02*X12678Y35768D01* X12701Y35755D01* X12724Y35740D01* X12745Y35723D01* X12764Y35704D01* X12782Y35683D01* X12797Y35661D01* X12811Y35637D01* X12822Y35613D01* X12831Y35587D01* X12835Y35579D01* X12839Y35572D01* X12845Y35565D01* X12852Y35560D01* X12860Y35556D01* X12868Y35553D01* X12877Y35552D01* X12885Y35552D01* X12894Y35554D01* X12902Y35557D01* X12909Y35562D01* X12916Y35568D01* X12921Y35575D01* X12924Y35580D01* Y35428D01* X12922Y35431D01* X12917Y35438D01* X12910Y35444D01* X12903Y35448D01* X12895Y35451D01* X12886Y35453D01* X12877Y35453D01* X12869Y35452D01* X12861Y35449D01* X12853Y35445D01* X12846Y35439D01* X12840Y35433D01* X12836Y35425D01* X12833Y35417D01* X12824Y35391D01* X12813Y35366D01* X12800Y35343D01* X12785Y35320D01* X12768Y35299D01* X12749Y35280D01* X12728Y35262D01* X12706Y35247D01* X12682Y35233D01* X12665Y35225D01* Y35774D01* G37* G36* Y35118D02*X12696Y35129D01* X12728Y35144D01* X12760Y35162D01* X12789Y35183D01* X12817Y35207D01* X12842Y35232D01* X12865Y35260D01* X12885Y35290D01* X12903Y35322D01* X12917Y35355D01* X12924Y35374D01* Y33674D01* X12920Y33683D01* X12902Y33715D01* X12881Y33744D01* X12857Y33772D01* X12832Y33797D01* X12804Y33820D01* X12774Y33840D01* X12742Y33858D01* X12709Y33873D01* X12675Y33884D01* X12666Y33886D01* X12665D01* Y35118D01* G37* G36* Y33782D02*X12673Y33779D01* X12698Y33768D01* X12721Y33755D01* X12744Y33740D01* X12765Y33723D01* X12784Y33704D01* X12802Y33683D01* X12817Y33661D01* X12831Y33637D01* X12842Y33613D01* X12851Y33587D01* X12855Y33579D01* X12859Y33572D01* X12865Y33565D01* X12872Y33560D01* X12880Y33556D01* X12888Y33553D01* X12897Y33552D01* X12905Y33552D01* X12914Y33554D01* X12922Y33557D01* X12924Y33559D01* Y33447D01* X12923Y33448D01* X12915Y33451D01* X12906Y33453D01* X12897Y33453D01* X12889Y33452D01* X12881Y33449D01* X12873Y33445D01* X12866Y33439D01* X12860Y33433D01* X12856Y33425D01* X12853Y33417D01* X12844Y33391D01* X12833Y33366D01* X12820Y33343D01* X12805Y33320D01* X12788Y33299D01* X12769Y33280D01* X12748Y33262D01* X12726Y33247D01* X12702Y33233D01* X12678Y33222D01* X12665Y33217D01* Y33782D01* G37* G36* Y33115D02*X12673Y33115D01* X12681Y33117D01* X12716Y33129D01* X12748Y33144D01* X12780Y33162D01* X12809Y33183D01* X12837Y33207D01* X12862Y33232D01* X12885Y33260D01* X12905Y33290D01* X12923Y33322D01* X12924Y33324D01* Y31711D01* X12922Y31715D01* X12901Y31744D01* X12877Y31772D01* X12852Y31797D01* X12824Y31820D01* X12794Y31840D01* X12762Y31858D01* X12729Y31873D01* X12695Y31884D01* X12686Y31886D01* X12677Y31886D01* X12669Y31885D01* X12665Y31883D01* Y33115D01* G37* G36* Y31789D02*X12667Y31788D01* X12693Y31779D01* X12718Y31768D01* X12741Y31755D01* X12764Y31740D01* X12785Y31723D01* X12804Y31704D01* X12822Y31683D01* X12837Y31661D01* X12851Y31637D01* X12862Y31613D01* X12871Y31587D01* X12875Y31579D01* X12879Y31572D01* X12885Y31565D01* X12892Y31560D01* X12900Y31556D01* X12908Y31553D01* X12917Y31552D01* X12924Y31552D01* Y31453D01* X12917Y31453D01* X12909Y31452D01* X12901Y31449D01* X12893Y31445D01* X12886Y31439D01* X12880Y31433D01* X12876Y31425D01* X12873Y31417D01* X12864Y31391D01* X12853Y31366D01* X12840Y31343D01* X12825Y31320D01* X12808Y31299D01* X12789Y31280D01* X12768Y31262D01* X12746Y31247D01* X12722Y31233D01* X12698Y31222D01* X12672Y31213D01* X12665Y31210D01* Y31789D01* G37* G36* Y31120D02*X12667Y31119D01* X12676Y31116D01* X12684Y31115D01* X12693Y31115D01* X12701Y31117D01* X12736Y31129D01* X12768Y31144D01* X12800Y31162D01* X12829Y31183D01* X12857Y31207D01* X12882Y31232D01* X12905Y31260D01* X12924Y31288D01* Y29740D01* X12921Y29744D01* X12897Y29772D01* X12872Y29797D01* X12844Y29820D01* X12814Y29840D01* X12782Y29858D01* X12749Y29873D01* X12715Y29884D01* X12706Y29886D01* X12697Y29886D01* X12689Y29885D01* X12681Y29882D01* X12673Y29878D01* X12666Y29872D01* X12665Y29871D01* Y31120D01* G37* G36* Y29801D02*X12672Y29796D01* X12679Y29791D01* X12687Y29788D01* X12713Y29779D01* X12738Y29768D01* X12761Y29755D01* X12784Y29740D01* X12805Y29723D01* X12824Y29704D01* X12842Y29683D01* X12857Y29661D01* X12871Y29637D01* X12882Y29613D01* X12891Y29587D01* X12895Y29579D01* X12899Y29572D01* X12905Y29565D01* X12912Y29560D01* X12920Y29556D01* X12924Y29555D01* Y29450D01* X12921Y29449D01* X12913Y29445D01* X12906Y29439D01* X12900Y29433D01* X12896Y29425D01* X12893Y29417D01* X12884Y29391D01* X12873Y29366D01* X12860Y29343D01* X12845Y29320D01* X12828Y29299D01* X12809Y29280D01* X12788Y29262D01* X12766Y29247D01* X12742Y29233D01* X12718Y29222D01* X12692Y29213D01* X12684Y29209D01* X12677Y29205D01* X12670Y29199D01* X12665Y29192D01* Y29801D01* G37* G36* Y29138D02*X12667Y29135D01* X12673Y29128D01* X12680Y29123D01* X12687Y29119D01* X12696Y29116D01* X12704Y29115D01* X12713Y29115D01* X12721Y29117D01* X12756Y29129D01* X12788Y29144D01* X12820Y29162D01* X12849Y29183D01* X12877Y29207D01* X12902Y29232D01* X12924Y29259D01* Y27764D01* X12917Y27772D01* X12892Y27797D01* X12864Y27820D01* X12834Y27840D01* X12802Y27858D01* X12769Y27873D01* X12735Y27884D01* X12726Y27886D01* X12717Y27886D01* X12709Y27885D01* X12701Y27882D01* X12693Y27878D01* X12686Y27872D01* X12680Y27865D01* X12676Y27858D01* X12673Y27850D01* X12671Y27841D01* X12671Y27833D01* X12672Y27824D01* X12675Y27816D01* X12679Y27808D01* X12685Y27801D01* X12692Y27796D01* X12699Y27791D01* X12707Y27788D01* X12733Y27779D01* X12758Y27768D01* X12781Y27755D01* X12804Y27740D01* X12825Y27723D01* X12844Y27704D01* X12862Y27683D01* X12877Y27661D01* X12891Y27637D01* X12902Y27613D01* X12911Y27587D01* X12915Y27579D01* X12919Y27572D01* X12924Y27567D01* Y27437D01* X12920Y27433D01* X12916Y27425D01* X12913Y27417D01* X12904Y27391D01* X12893Y27366D01* X12880Y27343D01* X12865Y27320D01* X12848Y27299D01* X12829Y27280D01* X12808Y27262D01* X12786Y27247D01* X12762Y27233D01* X12738Y27222D01* X12712Y27213D01* X12704Y27209D01* X12697Y27205D01* X12690Y27199D01* X12685Y27192D01* X12681Y27184D01* X12678Y27176D01* X12677Y27167D01* X12677Y27159D01* X12679Y27150D01* X12682Y27142D01* X12687Y27135D01* X12693Y27128D01* X12700Y27123D01* X12707Y27119D01* X12716Y27116D01* X12724Y27115D01* X12733Y27115D01* X12741Y27117D01* X12776Y27129D01* X12808Y27144D01* X12840Y27162D01* X12869Y27183D01* X12897Y27207D01* X12922Y27232D01* X12924Y27235D01* Y25785D01* X12912Y25797D01* X12884Y25820D01* X12854Y25840D01* X12822Y25858D01* X12789Y25873D01* X12755Y25884D01* X12746Y25886D01* X12737Y25886D01* X12729Y25885D01* X12721Y25882D01* X12713Y25878D01* X12706Y25872D01* X12700Y25865D01* X12696Y25858D01* X12693Y25850D01* X12691Y25841D01* X12691Y25833D01* X12692Y25824D01* X12695Y25816D01* X12699Y25808D01* X12705Y25801D01* X12712Y25796D01* X12719Y25791D01* X12727Y25788D01* X12753Y25779D01* X12778Y25768D01* X12801Y25755D01* X12824Y25740D01* X12845Y25723D01* X12864Y25704D01* X12882Y25683D01* X12897Y25661D01* X12911Y25637D01* X12922Y25613D01* X12924Y25608D01* Y25391D01* X12913Y25366D01* X12900Y25343D01* X12885Y25320D01* X12868Y25299D01* X12849Y25280D01* X12828Y25262D01* X12806Y25247D01* X12782Y25233D01* X12758Y25222D01* X12732Y25213D01* X12724Y25209D01* X12717Y25205D01* X12710Y25199D01* X12705Y25192D01* X12701Y25184D01* X12698Y25176D01* X12697Y25167D01* X12697Y25159D01* X12699Y25150D01* X12702Y25142D01* X12707Y25135D01* X12713Y25128D01* X12720Y25123D01* X12727Y25119D01* X12736Y25116D01* X12744Y25115D01* X12753Y25115D01* X12761Y25117D01* X12796Y25129D01* X12828Y25144D01* X12860Y25162D01* X12889Y25183D01* X12917Y25207D01* X12924Y25214D01* Y23804D01* X12904Y23820D01* X12874Y23840D01* X12842Y23858D01* X12809Y23873D01* X12775Y23884D01* X12766Y23886D01* X12757Y23886D01* X12749Y23885D01* X12741Y23882D01* X12733Y23878D01* X12726Y23872D01* X12720Y23865D01* X12716Y23858D01* X12713Y23850D01* X12711Y23841D01* X12711Y23833D01* X12712Y23824D01* X12715Y23816D01* X12719Y23808D01* X12725Y23801D01* X12732Y23796D01* X12739Y23791D01* X12747Y23788D01* X12773Y23779D01* X12798Y23768D01* X12821Y23755D01* X12844Y23740D01* X12865Y23723D01* X12884Y23704D01* X12902Y23683D01* X12917Y23661D01* X12924Y23650D01* Y23350D01* X12920Y23343D01* X12905Y23320D01* X12888Y23299D01* X12869Y23280D01* X12848Y23262D01* X12826Y23247D01* X12802Y23233D01* X12778Y23222D01* X12752Y23213D01* X12744Y23209D01* X12737Y23205D01* X12730Y23199D01* X12725Y23192D01* X12721Y23184D01* X12718Y23176D01* X12717Y23167D01* X12717Y23159D01* X12719Y23150D01* X12722Y23142D01* X12727Y23135D01* X12733Y23128D01* X12740Y23123D01* X12747Y23119D01* X12756Y23116D01* X12764Y23115D01* X12773Y23115D01* X12781Y23117D01* X12816Y23129D01* X12848Y23144D01* X12880Y23162D01* X12909Y23183D01* X12924Y23196D01* Y21820D01* X12924Y21820D01* X12894Y21840D01* X12862Y21858D01* X12829Y21873D01* X12795Y21884D01* X12786Y21886D01* X12777Y21886D01* X12769Y21885D01* X12761Y21882D01* X12753Y21878D01* X12746Y21872D01* X12740Y21865D01* X12736Y21858D01* X12733Y21850D01* X12731Y21841D01* X12731Y21833D01* X12732Y21824D01* X12735Y21816D01* X12739Y21808D01* X12745Y21801D01* X12752Y21796D01* X12759Y21791D01* X12767Y21788D01* X12793Y21779D01* X12818Y21768D01* X12841Y21755D01* X12864Y21740D01* X12885Y21723D01* X12904Y21704D01* X12922Y21683D01* X12924Y21680D01* Y21319D01* X12908Y21299D01* X12889Y21280D01* X12868Y21262D01* X12846Y21247D01* X12822Y21233D01* X12798Y21222D01* X12772Y21213D01* X12764Y21209D01* X12757Y21205D01* X12750Y21199D01* X12745Y21192D01* X12741Y21184D01* X12738Y21176D01* X12737Y21167D01* X12737Y21159D01* X12739Y21150D01* X12742Y21142D01* X12747Y21135D01* X12753Y21128D01* X12760Y21123D01* X12767Y21119D01* X12776Y21116D01* X12784Y21115D01* X12793Y21115D01* X12801Y21117D01* X12836Y21129D01* X12868Y21144D01* X12900Y21162D01* X12924Y21180D01* Y19834D01* X12914Y19840D01* X12882Y19858D01* X12849Y19873D01* X12815Y19884D01* X12806Y19886D01* X12797Y19886D01* X12789Y19885D01* X12781Y19882D01* X12773Y19878D01* X12766Y19872D01* X12760Y19865D01* X12756Y19858D01* X12753Y19850D01* X12751Y19841D01* X12751Y19833D01* X12752Y19824D01* X12755Y19816D01* X12759Y19808D01* X12765Y19801D01* X12772Y19796D01* X12779Y19791D01* X12787Y19788D01* X12813Y19779D01* X12838Y19768D01* X12861Y19755D01* X12884Y19740D01* X12905Y19723D01* X12924Y19704D01* Y19295D01* X12909Y19280D01* X12888Y19262D01* X12866Y19247D01* X12842Y19233D01* X12818Y19222D01* X12792Y19213D01* X12784Y19209D01* X12777Y19205D01* X12770Y19199D01* X12765Y19192D01* X12761Y19184D01* X12758Y19176D01* X12757Y19167D01* X12757Y19159D01* X12759Y19150D01* X12762Y19142D01* X12767Y19135D01* X12773Y19128D01* X12780Y19123D01* X12787Y19119D01* X12796Y19116D01* X12804Y19115D01* X12813Y19115D01* X12821Y19117D01* X12856Y19129D01* X12888Y19144D01* X12920Y19162D01* X12924Y19165D01* Y17846D01* X12902Y17858D01* X12869Y17873D01* X12835Y17884D01* X12826Y17886D01* X12817Y17886D01* X12809Y17885D01* X12801Y17882D01* X12793Y17878D01* X12786Y17872D01* X12780Y17865D01* X12776Y17858D01* X12773Y17850D01* X12771Y17841D01* X12771Y17833D01* X12772Y17824D01* X12775Y17816D01* X12779Y17808D01* X12785Y17801D01* X12792Y17796D01* X12799Y17791D01* X12807Y17788D01* X12833Y17779D01* X12858Y17768D01* X12881Y17755D01* X12904Y17740D01* X12924Y17724D01* Y17276D01* X12908Y17262D01* X12886Y17247D01* X12862Y17233D01* X12838Y17222D01* X12812Y17213D01* X12804Y17209D01* X12797Y17205D01* X12790Y17199D01* X12785Y17192D01* X12781Y17184D01* X12778Y17176D01* X12777Y17167D01* X12777Y17159D01* X12779Y17150D01* X12782Y17142D01* X12787Y17135D01* X12793Y17128D01* X12800Y17123D01* X12807Y17119D01* X12816Y17116D01* X12824Y17115D01* X12833Y17115D01* X12841Y17117D01* X12876Y17129D01* X12908Y17144D01* X12924Y17153D01* Y15857D01* X12922Y15858D01* X12889Y15873D01* X12855Y15884D01* X12846Y15886D01* X12837Y15886D01* X12829Y15885D01* X12821Y15882D01* X12813Y15878D01* X12806Y15872D01* X12800Y15865D01* X12796Y15858D01* X12793Y15850D01* X12791Y15841D01* X12791Y15833D01* X12792Y15824D01* X12795Y15816D01* X12799Y15808D01* X12805Y15801D01* X12812Y15796D01* X12819Y15791D01* X12827Y15788D01* X12853Y15779D01* X12878Y15768D01* X12901Y15755D01* X12924Y15740D01* Y15259D01* X12906Y15247D01* X12882Y15233D01* X12858Y15222D01* X12832Y15213D01* X12824Y15209D01* X12817Y15205D01* X12810Y15199D01* X12805Y15192D01* X12801Y15184D01* X12798Y15176D01* X12797Y15167D01* X12797Y15159D01* X12799Y15150D01* X12802Y15142D01* X12807Y15135D01* X12813Y15128D01* X12820Y15123D01* X12827Y15119D01* X12836Y15116D01* X12844Y15115D01* X12853Y15115D01* X12861Y15117D01* X12896Y15129D01* X12924Y15142D01* Y13866D01* X12909Y13873D01* X12875Y13884D01* X12866Y13886D01* X12857Y13886D01* X12849Y13885D01* X12841Y13882D01* X12833Y13878D01* X12826Y13872D01* X12820Y13865D01* X12816Y13858D01* X12813Y13850D01* X12811Y13841D01* X12811Y13833D01* X12812Y13824D01* X12815Y13816D01* X12819Y13808D01* X12825Y13801D01* X12832Y13796D01* X12839Y13791D01* X12847Y13788D01* X12873Y13779D01* X12898Y13768D01* X12921Y13755D01* X12924Y13754D01* Y13246D01* X12902Y13233D01* X12878Y13222D01* X12852Y13213D01* X12844Y13209D01* X12837Y13205D01* X12830Y13199D01* X12825Y13192D01* X12821Y13184D01* X12818Y13176D01* X12817Y13167D01* X12817Y13159D01* X12819Y13150D01* X12822Y13142D01* X12827Y13135D01* X12833Y13128D01* X12840Y13123D01* X12847Y13119D01* X12856Y13116D01* X12864Y13115D01* X12873Y13115D01* X12881Y13117D01* X12916Y13129D01* X12924Y13133D01* Y11874D01* X12895Y11884D01* X12886Y11886D01* X12877Y11886D01* X12869Y11885D01* X12861Y11882D01* X12853Y11878D01* X12846Y11872D01* X12840Y11865D01* X12836Y11858D01* X12833Y11850D01* X12831Y11841D01* X12831Y11833D01* X12832Y11824D01* X12835Y11816D01* X12839Y11808D01* X12845Y11801D01* X12852Y11796D01* X12859Y11791D01* X12867Y11788D01* X12893Y11779D01* X12918Y11768D01* X12924Y11765D01* Y11234D01* X12922Y11233D01* X12898Y11222D01* X12872Y11213D01* X12864Y11209D01* X12857Y11205D01* X12850Y11199D01* X12845Y11192D01* X12841Y11184D01* X12838Y11176D01* X12837Y11167D01* X12837Y11159D01* X12839Y11150D01* X12842Y11142D01* X12847Y11135D01* X12853Y11128D01* X12860Y11123D01* X12867Y11119D01* X12876Y11116D01* X12884Y11115D01* X12893Y11115D01* X12901Y11117D01* X12924Y11125D01* Y9881D01* X12915Y9884D01* X12906Y9886D01* X12897Y9886D01* X12889Y9885D01* X12881Y9882D01* X12873Y9878D01* X12866Y9872D01* X12860Y9865D01* X12856Y9858D01* X12853Y9850D01* X12851Y9841D01* X12851Y9833D01* X12852Y9824D01* X12855Y9816D01* X12859Y9808D01* X12865Y9801D01* X12872Y9796D01* X12879Y9791D01* X12887Y9788D01* X12913Y9779D01* X12924Y9774D01* Y9225D01* X12918Y9222D01* X12892Y9213D01* X12884Y9209D01* X12877Y9205D01* X12870Y9199D01* X12865Y9192D01* X12861Y9184D01* X12858Y9176D01* X12857Y9167D01* X12857Y9159D01* X12859Y9150D01* X12862Y9142D01* X12867Y9135D01* X12873Y9128D01* X12880Y9123D01* X12887Y9119D01* X12896Y9116D01* X12904Y9115D01* X12913Y9115D01* X12921Y9117D01* X12924Y9118D01* Y7886D01* X12917Y7886D01* X12909Y7885D01* X12901Y7882D01* X12893Y7878D01* X12886Y7872D01* X12880Y7865D01* X12876Y7858D01* X12873Y7850D01* X12871Y7841D01* X12871Y7833D01* X12872Y7824D01* X12875Y7816D01* X12879Y7808D01* X12885Y7801D01* X12892Y7796D01* X12899Y7791D01* X12907Y7788D01* X12924Y7782D01* Y7217D01* X12912Y7213D01* X12904Y7209D01* X12897Y7205D01* X12890Y7199D01* X12885Y7192D01* X12881Y7184D01* X12878Y7176D01* X12877Y7167D01* X12877Y7159D01* X12879Y7150D01* X12882Y7142D01* X12887Y7135D01* X12893Y7128D01* X12900Y7123D01* X12907Y7119D01* X12916Y7116D01* X12924Y7115D01* Y5883D01* X12921Y5882D01* X12913Y5878D01* X12906Y5872D01* X12900Y5865D01* X12896Y5858D01* X12893Y5850D01* X12891Y5841D01* X12891Y5833D01* X12892Y5824D01* X12895Y5816D01* X12899Y5808D01* X12905Y5801D01* X12912Y5796D01* X12919Y5791D01* X12924Y5789D01* Y5209D01* X12917Y5205D01* X12910Y5199D01* X12905Y5192D01* X12901Y5184D01* X12898Y5176D01* X12897Y5167D01* X12897Y5159D01* X12899Y5150D01* X12902Y5142D01* X12907Y5135D01* X12913Y5128D01* X12920Y5123D01* X12924Y5121D01* Y3870D01* X12920Y3865D01* X12916Y3858D01* X12913Y3850D01* X12911Y3841D01* X12911Y3833D01* X12912Y3824D01* X12915Y3816D01* X12919Y3808D01* X12924Y3802D01* Y3190D01* X12921Y3184D01* X12918Y3176D01* X12917Y3167D01* X12917Y3159D01* X12919Y3150D01* X12922Y3142D01* X12924Y3140D01* Y0D01* X12665D01* Y1166D01* X12675Y1159D01* X12707Y1141D01* X12740Y1127D01* X12774Y1115D01* X12783Y1113D01* X12792Y1113D01* X12800Y1115D01* X12808Y1117D01* X12816Y1122D01* X12823Y1127D01* X12829Y1134D01* X12833Y1141D01* X12836Y1149D01* X12838Y1158D01* X12838Y1167D01* X12837Y1175D01* X12834Y1183D01* X12830Y1191D01* X12824Y1198D01* X12817Y1204D01* X12810Y1208D01* X12802Y1211D01* X12776Y1220D01* X12751Y1231D01* X12728Y1244D01* X12705Y1259D01* X12684Y1276D01* X12665Y1295D01* Y1704D01* X12680Y1719D01* X12701Y1737D01* X12723Y1752D01* X12747Y1766D01* X12771Y1777D01* X12797Y1786D01* X12805Y1790D01* X12812Y1794D01* X12819Y1800D01* X12824Y1807D01* X12828Y1815D01* X12831Y1823D01* X12832Y1832D01* X12832Y1840D01* X12830Y1849D01* X12827Y1857D01* X12822Y1864D01* X12816Y1871D01* X12809Y1876D01* X12802Y1880D01* X12793Y1883D01* X12785Y1884D01* X12776Y1884D01* X12768Y1882D01* X12733Y1870D01* X12701Y1855D01* X12669Y1837D01* X12665Y1834D01* Y3153D01* X12687Y3141D01* X12720Y3127D01* X12754Y3115D01* X12763Y3113D01* X12772Y3113D01* X12780Y3115D01* X12788Y3117D01* X12796Y3122D01* X12803Y3127D01* X12809Y3134D01* X12813Y3141D01* X12816Y3149D01* X12818Y3158D01* X12818Y3167D01* X12817Y3175D01* X12814Y3183D01* X12810Y3191D01* X12804Y3198D01* X12797Y3204D01* X12790Y3208D01* X12782Y3211D01* X12756Y3220D01* X12731Y3231D01* X12708Y3244D01* X12685Y3259D01* X12665Y3276D01* Y3723D01* X12681Y3737D01* X12703Y3752D01* X12727Y3766D01* X12751Y3777D01* X12777Y3786D01* X12785Y3790D01* X12792Y3794D01* X12799Y3800D01* X12804Y3807D01* X12808Y3815D01* X12811Y3823D01* X12812Y3832D01* X12812Y3840D01* X12810Y3849D01* X12807Y3857D01* X12802Y3864D01* X12796Y3871D01* X12789Y3876D01* X12782Y3880D01* X12773Y3883D01* X12765Y3884D01* X12756Y3884D01* X12748Y3882D01* X12713Y3870D01* X12681Y3855D01* X12665Y3846D01* Y5142D01* X12667Y5141D01* X12700Y5127D01* X12734Y5115D01* X12743Y5113D01* X12752Y5113D01* X12760Y5115D01* X12768Y5117D01* X12776Y5122D01* X12783Y5127D01* X12789Y5134D01* X12793Y5141D01* X12796Y5149D01* X12798Y5158D01* X12798Y5167D01* X12797Y5175D01* X12794Y5183D01* X12790Y5191D01* X12784Y5198D01* X12777Y5204D01* X12770Y5208D01* X12762Y5211D01* X12736Y5220D01* X12711Y5231D01* X12688Y5244D01* X12665Y5259D01* Y5740D01* X12683Y5752D01* X12707Y5766D01* X12731Y5777D01* X12757Y5786D01* X12765Y5790D01* X12772Y5794D01* X12779Y5800D01* X12784Y5807D01* X12788Y5815D01* X12791Y5823D01* X12792Y5832D01* X12792Y5840D01* X12790Y5849D01* X12787Y5857D01* X12782Y5864D01* X12776Y5871D01* X12769Y5876D01* X12762Y5880D01* X12753Y5883D01* X12745Y5884D01* X12736Y5884D01* X12728Y5882D01* X12693Y5870D01* X12665Y5857D01* Y7133D01* X12680Y7127D01* X12714Y7115D01* X12723Y7113D01* X12732Y7113D01* X12740Y7115D01* X12748Y7117D01* X12756Y7122D01* X12763Y7127D01* X12769Y7134D01* X12773Y7141D01* X12776Y7149D01* X12778Y7158D01* X12778Y7167D01* X12777Y7175D01* X12774Y7183D01* X12770Y7191D01* X12764Y7198D01* X12757Y7204D01* X12750Y7208D01* X12742Y7211D01* X12716Y7220D01* X12691Y7231D01* X12668Y7244D01* X12665Y7246D01* Y7754D01* X12687Y7766D01* X12711Y7777D01* X12737Y7786D01* X12745Y7790D01* X12752Y7794D01* X12759Y7800D01* X12764Y7807D01* X12768Y7815D01* X12771Y7823D01* X12772Y7832D01* X12772Y7840D01* X12770Y7849D01* X12767Y7857D01* X12762Y7864D01* X12756Y7871D01* X12749Y7876D01* X12742Y7880D01* X12733Y7883D01* X12725Y7884D01* X12716Y7884D01* X12708Y7882D01* X12673Y7870D01* X12665Y7866D01* Y9125D01* X12694Y9115D01* X12703Y9113D01* X12712Y9113D01* X12720Y9115D01* X12728Y9117D01* X12736Y9122D01* X12743Y9127D01* X12749Y9134D01* X12753Y9141D01* X12756Y9149D01* X12758Y9158D01* X12758Y9167D01* X12757Y9175D01* X12754Y9183D01* X12750Y9191D01* X12744Y9198D01* X12737Y9204D01* X12730Y9208D01* X12722Y9211D01* X12696Y9220D01* X12671Y9231D01* X12665Y9234D01* Y9765D01* X12667Y9766D01* X12691Y9777D01* X12717Y9786D01* X12725Y9790D01* X12732Y9794D01* X12739Y9800D01* X12744Y9807D01* X12748Y9815D01* X12751Y9823D01* X12752Y9832D01* X12752Y9840D01* X12750Y9849D01* X12747Y9857D01* X12742Y9864D01* X12736Y9871D01* X12729Y9876D01* X12722Y9880D01* X12713Y9883D01* X12705Y9884D01* X12696Y9884D01* X12688Y9882D01* X12665Y9874D01* Y11118D01* X12674Y11115D01* X12683Y11113D01* X12692Y11113D01* X12700Y11115D01* X12708Y11117D01* X12716Y11122D01* X12723Y11127D01* X12729Y11134D01* X12733Y11141D01* X12736Y11149D01* X12738Y11158D01* X12738Y11167D01* X12737Y11175D01* X12734Y11183D01* X12730Y11191D01* X12724Y11198D01* X12717Y11204D01* X12710Y11208D01* X12702Y11211D01* X12676Y11220D01* X12665Y11225D01* Y11775D01* X12671Y11777D01* X12697Y11786D01* X12705Y11790D01* X12712Y11794D01* X12719Y11800D01* X12724Y11807D01* X12728Y11815D01* X12731Y11823D01* X12732Y11832D01* X12732Y11840D01* X12730Y11849D01* X12727Y11857D01* X12722Y11864D01* X12716Y11871D01* X12709Y11876D01* X12702Y11880D01* X12693Y11883D01* X12685Y11884D01* X12676Y11884D01* X12668Y11882D01* X12665Y11881D01* Y13113D01* X12672Y13113D01* X12680Y13115D01* X12688Y13117D01* X12696Y13122D01* X12703Y13127D01* X12709Y13134D01* X12713Y13141D01* X12716Y13149D01* X12718Y13158D01* X12718Y13167D01* X12717Y13175D01* X12714Y13183D01* X12710Y13191D01* X12704Y13198D01* X12697Y13204D01* X12690Y13208D01* X12682Y13211D01* X12665Y13217D01* Y13782D01* X12677Y13786D01* X12685Y13790D01* X12692Y13794D01* X12699Y13800D01* X12704Y13807D01* X12708Y13815D01* X12711Y13823D01* X12712Y13832D01* X12712Y13840D01* X12710Y13849D01* X12707Y13857D01* X12702Y13864D01* X12696Y13871D01* X12689Y13876D01* X12682Y13880D01* X12673Y13883D01* X12665Y13884D01* Y15116D01* X12668Y15117D01* X12676Y15122D01* X12683Y15127D01* X12689Y15134D01* X12693Y15141D01* X12696Y15149D01* X12698Y15158D01* X12698Y15167D01* X12697Y15175D01* X12694Y15183D01* X12690Y15191D01* X12684Y15198D01* X12677Y15204D01* X12670Y15208D01* X12665Y15210D01* Y15790D01* X12672Y15794D01* X12679Y15800D01* X12684Y15807D01* X12688Y15815D01* X12691Y15823D01* X12692Y15832D01* X12692Y15840D01* X12690Y15849D01* X12687Y15857D01* X12682Y15864D01* X12676Y15871D01* X12669Y15876D01* X12665Y15878D01* Y17130D01* X12669Y17134D01* X12673Y17141D01* X12676Y17149D01* X12678Y17158D01* X12678Y17167D01* X12677Y17175D01* X12674Y17183D01* X12670Y17191D01* X12665Y17197D01* Y17809D01* X12668Y17815D01* X12671Y17823D01* X12672Y17832D01* X12672Y17840D01* X12670Y17849D01* X12667Y17857D01* X12665Y17859D01* Y29138D01* G37* G36* X12924Y40000D02*X13104D01* Y17625D01* X13095Y17651D01* X13080Y17683D01* X13062Y17715D01* X13041Y17744D01* X13017Y17772D01* X12992Y17797D01* X12964Y17820D01* X12934Y17840D01* X12924Y17846D01* Y19165D01* X12949Y19183D01* X12977Y19207D01* X13002Y19232D01* X13025Y19260D01* X13045Y19290D01* X13063Y19322D01* X13077Y19355D01* X13089Y19389D01* X13091Y19398D01* X13091Y19407D01* X13090Y19415D01* X13087Y19423D01* X13082Y19431D01* X13077Y19438D01* X13070Y19444D01* X13063Y19448D01* X13055Y19451D01* X13046Y19453D01* X13037Y19453D01* X13029Y19452D01* X13021Y19449D01* X13013Y19445D01* X13006Y19439D01* X13000Y19433D01* X12996Y19425D01* X12993Y19417D01* X12984Y19391D01* X12973Y19366D01* X12960Y19343D01* X12945Y19320D01* X12928Y19299D01* X12924Y19295D01* Y19704D01* X12924Y19704D01* X12942Y19683D01* X12957Y19661D01* X12971Y19637D01* X12982Y19613D01* X12991Y19587D01* X12995Y19579D01* X12999Y19572D01* X13005Y19565D01* X13012Y19560D01* X13020Y19556D01* X13028Y19553D01* X13037Y19552D01* X13045Y19552D01* X13054Y19554D01* X13062Y19557D01* X13069Y19562D01* X13076Y19568D01* X13081Y19575D01* X13085Y19582D01* X13088Y19591D01* X13089Y19599D01* X13089Y19608D01* X13087Y19617D01* X13075Y19651D01* X13060Y19683D01* X13042Y19715D01* X13021Y19744D01* X12997Y19772D01* X12972Y19797D01* X12944Y19820D01* X12924Y19834D01* Y21180D01* X12929Y21183D01* X12957Y21207D01* X12982Y21232D01* X13005Y21260D01* X13025Y21290D01* X13043Y21322D01* X13057Y21355D01* X13069Y21389D01* X13071Y21398D01* X13071Y21407D01* X13070Y21415D01* X13067Y21423D01* X13062Y21431D01* X13057Y21438D01* X13050Y21444D01* X13043Y21448D01* X13035Y21451D01* X13026Y21453D01* X13017Y21453D01* X13009Y21452D01* X13001Y21449D01* X12993Y21445D01* X12986Y21439D01* X12980Y21433D01* X12976Y21425D01* X12973Y21417D01* X12964Y21391D01* X12953Y21366D01* X12940Y21343D01* X12925Y21320D01* X12924Y21319D01* Y21680D01* X12937Y21661D01* X12951Y21637D01* X12962Y21613D01* X12971Y21587D01* X12975Y21579D01* X12979Y21572D01* X12985Y21565D01* X12992Y21560D01* X13000Y21556D01* X13008Y21553D01* X13017Y21552D01* X13025Y21552D01* X13034Y21554D01* X13042Y21557D01* X13049Y21562D01* X13056Y21568D01* X13061Y21575D01* X13065Y21582D01* X13068Y21591D01* X13069Y21599D01* X13069Y21608D01* X13067Y21617D01* X13055Y21651D01* X13040Y21683D01* X13022Y21715D01* X13001Y21744D01* X12977Y21772D01* X12952Y21797D01* X12924Y21820D01* Y23196D01* X12937Y23207D01* X12962Y23232D01* X12985Y23260D01* X13005Y23290D01* X13023Y23322D01* X13037Y23355D01* X13049Y23389D01* X13051Y23398D01* X13051Y23407D01* X13050Y23415D01* X13047Y23423D01* X13042Y23431D01* X13037Y23438D01* X13030Y23444D01* X13023Y23448D01* X13015Y23451D01* X13006Y23453D01* X12997Y23453D01* X12989Y23452D01* X12981Y23449D01* X12973Y23445D01* X12966Y23439D01* X12960Y23433D01* X12956Y23425D01* X12953Y23417D01* X12944Y23391D01* X12933Y23366D01* X12924Y23350D01* Y23650D01* X12931Y23637D01* X12942Y23613D01* X12951Y23587D01* X12955Y23579D01* X12959Y23572D01* X12965Y23565D01* X12972Y23560D01* X12980Y23556D01* X12988Y23553D01* X12997Y23552D01* X13005Y23552D01* X13014Y23554D01* X13022Y23557D01* X13029Y23562D01* X13036Y23568D01* X13041Y23575D01* X13045Y23582D01* X13048Y23591D01* X13049Y23599D01* X13049Y23608D01* X13047Y23617D01* X13035Y23651D01* X13020Y23683D01* X13002Y23715D01* X12981Y23744D01* X12957Y23772D01* X12932Y23797D01* X12924Y23804D01* Y25214D01* X12942Y25232D01* X12965Y25260D01* X12985Y25290D01* X13003Y25322D01* X13017Y25355D01* X13029Y25389D01* X13031Y25398D01* X13031Y25407D01* X13030Y25415D01* X13027Y25423D01* X13022Y25431D01* X13017Y25438D01* X13010Y25444D01* X13003Y25448D01* X12995Y25451D01* X12986Y25453D01* X12977Y25453D01* X12969Y25452D01* X12961Y25449D01* X12953Y25445D01* X12946Y25439D01* X12940Y25433D01* X12936Y25425D01* X12933Y25417D01* X12924Y25391D01* X12924Y25391D01* Y25608D01* X12931Y25587D01* X12935Y25579D01* X12939Y25572D01* X12945Y25565D01* X12952Y25560D01* X12960Y25556D01* X12968Y25553D01* X12977Y25552D01* X12985Y25552D01* X12994Y25554D01* X13002Y25557D01* X13009Y25562D01* X13016Y25568D01* X13021Y25575D01* X13025Y25582D01* X13028Y25591D01* X13029Y25599D01* X13029Y25608D01* X13027Y25617D01* X13015Y25651D01* X13000Y25683D01* X12982Y25715D01* X12961Y25744D01* X12937Y25772D01* X12924Y25785D01* Y27235D01* X12945Y27260D01* X12965Y27290D01* X12983Y27322D01* X12997Y27355D01* X13009Y27389D01* X13011Y27398D01* X13011Y27407D01* X13010Y27415D01* X13007Y27423D01* X13002Y27431D01* X12997Y27438D01* X12990Y27444D01* X12983Y27448D01* X12975Y27451D01* X12966Y27453D01* X12957Y27453D01* X12949Y27452D01* X12941Y27449D01* X12933Y27445D01* X12926Y27439D01* X12924Y27437D01* Y27567D01* X12925Y27565D01* X12932Y27560D01* X12940Y27556D01* X12948Y27553D01* X12957Y27552D01* X12965Y27552D01* X12974Y27554D01* X12982Y27557D01* X12989Y27562D01* X12996Y27568D01* X13001Y27575D01* X13005Y27582D01* X13008Y27591D01* X13009Y27599D01* X13009Y27608D01* X13007Y27617D01* X12995Y27651D01* X12980Y27683D01* X12962Y27715D01* X12941Y27744D01* X12924Y27764D01* Y29259D01* X12925Y29260D01* X12945Y29290D01* X12963Y29322D01* X12977Y29355D01* X12989Y29389D01* X12991Y29398D01* X12991Y29407D01* X12990Y29415D01* X12987Y29423D01* X12982Y29431D01* X12977Y29438D01* X12970Y29444D01* X12963Y29448D01* X12955Y29451D01* X12946Y29453D01* X12937Y29453D01* X12929Y29452D01* X12924Y29450D01* Y29555D01* X12928Y29553D01* X12937Y29552D01* X12945Y29552D01* X12954Y29554D01* X12962Y29557D01* X12969Y29562D01* X12976Y29568D01* X12981Y29575D01* X12985Y29582D01* X12988Y29591D01* X12989Y29599D01* X12989Y29608D01* X12987Y29617D01* X12975Y29651D01* X12960Y29683D01* X12942Y29715D01* X12924Y29740D01* Y31288D01* X12925Y31290D01* X12943Y31322D01* X12957Y31355D01* X12969Y31389D01* X12971Y31398D01* X12971Y31407D01* X12970Y31415D01* X12967Y31423D01* X12962Y31431D01* X12957Y31438D01* X12950Y31444D01* X12943Y31448D01* X12935Y31451D01* X12926Y31453D01* X12924D01* Y31552D01* X12925D01* X12934Y31554D01* X12942Y31557D01* X12949Y31562D01* X12956Y31568D01* X12961Y31575D01* X12965Y31582D01* X12968Y31591D01* X12969Y31599D01* X12969Y31608D01* X12967Y31617D01* X12955Y31651D01* X12940Y31683D01* X12924Y31711D01* Y33324D01* X12937Y33355D01* X12949Y33389D01* X12951Y33398D01* X12951Y33407D01* X12950Y33415D01* X12947Y33423D01* X12942Y33431D01* X12937Y33438D01* X12930Y33444D01* X12924Y33447D01* Y33559D01* X12929Y33562D01* X12936Y33568D01* X12941Y33575D01* X12945Y33582D01* X12948Y33591D01* X12949Y33599D01* X12949Y33608D01* X12947Y33617D01* X12935Y33651D01* X12924Y33674D01* Y35374D01* X12929Y35389D01* X12931Y35398D01* X12931Y35407D01* X12930Y35415D01* X12927Y35423D01* X12924Y35428D01* Y35580D01* X12925Y35582D01* X12928Y35591D01* X12929Y35599D01* X12929Y35608D01* X12927Y35617D01* X12924Y35625D01* Y40000D01* G37* G36* X13104Y0D02*X12924D01* Y3140D01* X12927Y3135D01* X12933Y3128D01* X12940Y3123D01* X12947Y3119D01* X12956Y3116D01* X12964Y3115D01* X12973Y3115D01* X12981Y3117D01* X13016Y3129D01* X13048Y3144D01* X13080Y3162D01* X13104Y3180D01* Y1834D01* X13094Y1840D01* X13062Y1858D01* X13029Y1873D01* X12995Y1884D01* X12986Y1886D01* X12977Y1886D01* X12969Y1885D01* X12961Y1882D01* X12953Y1878D01* X12946Y1872D01* X12940Y1865D01* X12936Y1858D01* X12933Y1850D01* X12931Y1841D01* X12931Y1833D01* X12932Y1824D01* X12935Y1816D01* X12939Y1808D01* X12945Y1801D01* X12952Y1796D01* X12959Y1791D01* X12967Y1788D01* X12993Y1779D01* X13018Y1768D01* X13041Y1755D01* X13064Y1740D01* X13085Y1723D01* X13104Y1704D01* Y1295D01* X13089Y1280D01* X13068Y1262D01* X13046Y1247D01* X13022Y1233D01* X12998Y1222D01* X12972Y1213D01* X12964Y1209D01* X12957Y1205D01* X12950Y1199D01* X12945Y1192D01* X12941Y1184D01* X12938Y1176D01* X12937Y1167D01* X12937Y1159D01* X12939Y1150D01* X12942Y1142D01* X12947Y1135D01* X12953Y1128D01* X12960Y1123D01* X12967Y1119D01* X12976Y1116D01* X12984Y1115D01* X12993Y1115D01* X13001Y1117D01* X13036Y1129D01* X13068Y1144D01* X13100Y1162D01* X13104Y1165D01* Y0D01* G37* G36* Y3319D02*X13088Y3299D01* X13069Y3280D01* X13048Y3262D01* X13026Y3247D01* X13002Y3233D01* X12978Y3222D01* X12952Y3213D01* X12944Y3209D01* X12937Y3205D01* X12930Y3199D01* X12925Y3192D01* X12924Y3190D01* Y3802D01* X12925Y3801D01* X12932Y3796D01* X12939Y3791D01* X12947Y3788D01* X12973Y3779D01* X12998Y3768D01* X13021Y3755D01* X13044Y3740D01* X13065Y3723D01* X13084Y3704D01* X13102Y3683D01* X13104Y3680D01* Y3319D01* G37* G36* Y3820D02*X13104Y3820D01* X13074Y3840D01* X13042Y3858D01* X13009Y3873D01* X12975Y3884D01* X12966Y3886D01* X12957Y3886D01* X12949Y3885D01* X12941Y3882D01* X12933Y3878D01* X12926Y3872D01* X12924Y3870D01* Y5121D01* X12927Y5119D01* X12936Y5116D01* X12944Y5115D01* X12953Y5115D01* X12961Y5117D01* X12996Y5129D01* X13028Y5144D01* X13060Y5162D01* X13089Y5183D01* X13104Y5196D01* Y3820D01* G37* G36* Y5350D02*X13100Y5343D01* X13085Y5320D01* X13068Y5299D01* X13049Y5280D01* X13028Y5262D01* X13006Y5247D01* X12982Y5233D01* X12958Y5222D01* X12932Y5213D01* X12924Y5209D01* X12924Y5209D01* Y5789D01* X12927Y5788D01* X12953Y5779D01* X12978Y5768D01* X13001Y5755D01* X13024Y5740D01* X13045Y5723D01* X13064Y5704D01* X13082Y5683D01* X13097Y5661D01* X13104Y5650D01* Y5350D01* G37* G36* Y5804D02*X13084Y5820D01* X13054Y5840D01* X13022Y5858D01* X12989Y5873D01* X12955Y5884D01* X12946Y5886D01* X12937Y5886D01* X12929Y5885D01* X12924Y5883D01* Y7115D01* X12924D01* X12933Y7115D01* X12941Y7117D01* X12976Y7129D01* X13008Y7144D01* X13040Y7162D01* X13069Y7183D01* X13097Y7207D01* X13104Y7214D01* Y5804D01* G37* G36* Y7391D02*X13093Y7366D01* X13080Y7343D01* X13065Y7320D01* X13048Y7299D01* X13029Y7280D01* X13008Y7262D01* X12986Y7247D01* X12962Y7233D01* X12938Y7222D01* X12924Y7217D01* Y7782D01* X12933Y7779D01* X12958Y7768D01* X12981Y7755D01* X13004Y7740D01* X13025Y7723D01* X13044Y7704D01* X13062Y7683D01* X13077Y7661D01* X13091Y7637D01* X13102Y7613D01* X13104Y7608D01* Y7391D01* G37* G36* Y7785D02*X13092Y7797D01* X13064Y7820D01* X13034Y7840D01* X13002Y7858D01* X12969Y7873D01* X12935Y7884D01* X12926Y7886D01* X12924D01* Y9118D01* X12956Y9129D01* X12988Y9144D01* X13020Y9162D01* X13049Y9183D01* X13077Y9207D01* X13102Y9232D01* X13104Y9235D01* Y7785D01* G37* G36* Y9437D02*X13100Y9433D01* X13096Y9425D01* X13093Y9417D01* X13084Y9391D01* X13073Y9366D01* X13060Y9343D01* X13045Y9320D01* X13028Y9299D01* X13009Y9280D01* X12988Y9262D01* X12966Y9247D01* X12942Y9233D01* X12924Y9225D01* Y9774D01* X12938Y9768D01* X12961Y9755D01* X12984Y9740D01* X13005Y9723D01* X13024Y9704D01* X13042Y9683D01* X13057Y9661D01* X13071Y9637D01* X13082Y9613D01* X13091Y9587D01* X13095Y9579D01* X13099Y9572D01* X13104Y9567D01* Y9437D01* G37* G36* Y9764D02*X13097Y9772D01* X13072Y9797D01* X13044Y9820D01* X13014Y9840D01* X12982Y9858D01* X12949Y9873D01* X12924Y9881D01* Y11125D01* X12936Y11129D01* X12968Y11144D01* X13000Y11162D01* X13029Y11183D01* X13057Y11207D01* X13082Y11232D01* X13104Y11259D01* Y9764D01* G37* G36* Y11450D02*X13101Y11449D01* X13093Y11445D01* X13086Y11439D01* X13080Y11433D01* X13076Y11425D01* X13073Y11417D01* X13064Y11391D01* X13053Y11366D01* X13040Y11343D01* X13025Y11320D01* X13008Y11299D01* X12989Y11280D01* X12968Y11262D01* X12946Y11247D01* X12924Y11234D01* Y11765D01* X12941Y11755D01* X12964Y11740D01* X12985Y11723D01* X13004Y11704D01* X13022Y11683D01* X13037Y11661D01* X13051Y11637D01* X13062Y11613D01* X13071Y11587D01* X13075Y11579D01* X13079Y11572D01* X13085Y11565D01* X13092Y11560D01* X13100Y11556D01* X13104Y11555D01* Y11450D01* G37* G36* Y11740D02*X13101Y11744D01* X13077Y11772D01* X13052Y11797D01* X13024Y11820D01* X12994Y11840D01* X12962Y11858D01* X12929Y11873D01* X12924Y11874D01* Y13133D01* X12948Y13144D01* X12980Y13162D01* X13009Y13183D01* X13037Y13207D01* X13062Y13232D01* X13085Y13260D01* X13104Y13288D01* Y11740D01* G37* G36* Y13453D02*X13097Y13453D01* X13089Y13452D01* X13081Y13449D01* X13073Y13445D01* X13066Y13439D01* X13060Y13433D01* X13056Y13425D01* X13053Y13417D01* X13044Y13391D01* X13033Y13366D01* X13020Y13343D01* X13005Y13320D01* X12988Y13299D01* X12969Y13280D01* X12948Y13262D01* X12926Y13247D01* X12924Y13246D01* Y13754D01* X12944Y13740D01* X12965Y13723D01* X12984Y13704D01* X13002Y13683D01* X13017Y13661D01* X13031Y13637D01* X13042Y13613D01* X13051Y13587D01* X13055Y13579D01* X13059Y13572D01* X13065Y13565D01* X13072Y13560D01* X13080Y13556D01* X13088Y13553D01* X13097Y13552D01* X13104Y13552D01* Y13453D01* G37* G36* Y13711D02*X13102Y13715D01* X13081Y13744D01* X13057Y13772D01* X13032Y13797D01* X13004Y13820D01* X12974Y13840D01* X12942Y13858D01* X12924Y13866D01* Y15142D01* X12928Y15144D01* X12960Y15162D01* X12989Y15183D01* X13017Y15207D01* X13042Y15232D01* X13065Y15260D01* X13085Y15290D01* X13103Y15322D01* X13104Y15324D01* Y13711D01* G37* G36* Y15447D02*X13103Y15448D01* X13095Y15451D01* X13086Y15453D01* X13077Y15453D01* X13069Y15452D01* X13061Y15449D01* X13053Y15445D01* X13046Y15439D01* X13040Y15433D01* X13036Y15425D01* X13033Y15417D01* X13024Y15391D01* X13013Y15366D01* X13000Y15343D01* X12985Y15320D01* X12968Y15299D01* X12949Y15280D01* X12928Y15262D01* X12924Y15259D01* Y15740D01* X12945Y15723D01* X12964Y15704D01* X12982Y15683D01* X12997Y15661D01* X13011Y15637D01* X13022Y15613D01* X13031Y15587D01* X13035Y15579D01* X13039Y15572D01* X13045Y15565D01* X13052Y15560D01* X13060Y15556D01* X13068Y15553D01* X13077Y15552D01* X13085Y15552D01* X13094Y15554D01* X13102Y15557D01* X13104Y15559D01* Y15447D01* G37* G36* Y15674D02*X13100Y15683D01* X13082Y15715D01* X13061Y15744D01* X13037Y15772D01* X13012Y15797D01* X12984Y15820D01* X12954Y15840D01* X12924Y15857D01* Y17153D01* X12940Y17162D01* X12969Y17183D01* X12997Y17207D01* X13022Y17232D01* X13045Y17260D01* X13065Y17290D01* X13083Y17322D01* X13097Y17355D01* X13104Y17374D01* Y15674D01* G37* G36* Y17428D02*X13102Y17431D01* X13097Y17438D01* X13090Y17444D01* X13083Y17448D01* X13075Y17451D01* X13066Y17453D01* X13057Y17453D01* X13049Y17452D01* X13041Y17449D01* X13033Y17445D01* X13026Y17439D01* X13020Y17433D01* X13016Y17425D01* X13013Y17417D01* X13004Y17391D01* X12993Y17366D01* X12980Y17343D01* X12965Y17320D01* X12948Y17299D01* X12929Y17280D01* X12924Y17276D01* Y17724D01* X12925Y17723D01* X12944Y17704D01* X12962Y17683D01* X12977Y17661D01* X12991Y17637D01* X13002Y17613D01* X13011Y17587D01* X13015Y17579D01* X13019Y17572D01* X13025Y17565D01* X13032Y17560D01* X13040Y17556D01* X13048Y17553D01* X13057Y17552D01* X13065Y17552D01* X13074Y17554D01* X13082Y17557D01* X13089Y17562D01* X13096Y17568D01* X13101Y17575D01* X13104Y17580D01* Y17428D01* G37* G36* Y40000D02*X14445D01* Y39859D01* X14442Y39864D01* X14436Y39871D01* X14429Y39876D01* X14422Y39880D01* X14413Y39883D01* X14405Y39884D01* X14396Y39884D01* X14388Y39882D01* X14353Y39870D01* X14321Y39855D01* X14289Y39837D01* X14260Y39816D01* X14232Y39793D01* X14207Y39767D01* X14184Y39739D01* X14164Y39709D01* X14146Y39677D01* X14132Y39644D01* X14120Y39610D01* X14118Y39601D01* X14118Y39593D01* X14119Y39584D01* X14122Y39576D01* X14127Y39568D01* X14132Y39561D01* X14139Y39556D01* X14146Y39551D01* X14154Y39548D01* X14163Y39546D01* X14172Y39546D01* X14180Y39547D01* X14188Y39550D01* X14196Y39555D01* X14203Y39560D01* X14209Y39567D01* X14213Y39574D01* X14216Y39582D01* X14225Y39608D01* X14236Y39633D01* X14249Y39657D01* X14264Y39679D01* X14281Y39700D01* X14300Y39719D01* X14321Y39737D01* X14343Y39752D01* X14367Y39766D01* X14391Y39777D01* X14417Y39786D01* X14425Y39790D01* X14432Y39794D01* X14439Y39800D01* X14444Y39807D01* X14445Y39809D01* Y39197D01* X14444Y39198D01* X14437Y39204D01* X14430Y39208D01* X14422Y39211D01* X14396Y39220D01* X14371Y39231D01* X14348Y39244D01* X14325Y39259D01* X14304Y39276D01* X14285Y39295D01* X14267Y39316D01* X14252Y39338D01* X14238Y39362D01* X14227Y39386D01* X14218Y39412D01* X14214Y39420D01* X14210Y39427D01* X14204Y39434D01* X14197Y39439D01* X14189Y39443D01* X14181Y39446D01* X14172Y39447D01* X14164Y39447D01* X14155Y39445D01* X14147Y39442D01* X14140Y39437D01* X14133Y39431D01* X14128Y39424D01* X14124Y39417D01* X14121Y39409D01* X14120Y39400D01* X14120Y39391D01* X14122Y39383D01* X14134Y39349D01* X14149Y39316D01* X14167Y39284D01* X14188Y39255D01* X14212Y39227D01* X14237Y39202D01* X14265Y39179D01* X14295Y39159D01* X14327Y39141D01* X14360Y39127D01* X14394Y39115D01* X14403Y39113D01* X14412Y39113D01* X14420Y39115D01* X14428Y39117D01* X14436Y39122D01* X14443Y39127D01* X14445Y39130D01* Y37878D01* X14442Y37880D01* X14433Y37883D01* X14425Y37884D01* X14416Y37884D01* X14408Y37882D01* X14373Y37870D01* X14341Y37855D01* X14309Y37837D01* X14280Y37816D01* X14252Y37793D01* X14227Y37767D01* X14204Y37739D01* X14184Y37709D01* X14166Y37677D01* X14152Y37644D01* X14140Y37610D01* X14138Y37601D01* X14138Y37593D01* X14139Y37584D01* X14142Y37576D01* X14147Y37568D01* X14152Y37561D01* X14159Y37556D01* X14166Y37551D01* X14174Y37548D01* X14183Y37546D01* X14192Y37546D01* X14200Y37547D01* X14208Y37550D01* X14216Y37555D01* X14223Y37560D01* X14229Y37567D01* X14233Y37574D01* X14236Y37582D01* X14245Y37608D01* X14256Y37633D01* X14269Y37657D01* X14284Y37679D01* X14301Y37700D01* X14320Y37719D01* X14341Y37737D01* X14363Y37752D01* X14387Y37766D01* X14411Y37777D01* X14437Y37786D01* X14445Y37790D01* X14445Y37790D01* Y37210D01* X14442Y37211D01* X14416Y37220D01* X14391Y37231D01* X14368Y37244D01* X14345Y37259D01* X14324Y37276D01* X14305Y37295D01* X14287Y37316D01* X14272Y37338D01* X14258Y37362D01* X14247Y37386D01* X14238Y37412D01* X14234Y37420D01* X14230Y37427D01* X14224Y37434D01* X14217Y37439D01* X14209Y37443D01* X14201Y37446D01* X14192Y37447D01* X14184Y37447D01* X14175Y37445D01* X14167Y37442D01* X14160Y37437D01* X14153Y37431D01* X14148Y37424D01* X14144Y37417D01* X14141Y37409D01* X14140Y37400D01* X14140Y37391D01* X14142Y37383D01* X14154Y37349D01* X14169Y37316D01* X14187Y37284D01* X14208Y37255D01* X14232Y37227D01* X14257Y37202D01* X14285Y37179D01* X14315Y37159D01* X14347Y37141D01* X14380Y37127D01* X14414Y37115D01* X14423Y37113D01* X14432Y37113D01* X14440Y37115D01* X14445Y37116D01* Y35884D01* X14445Y35884D01* X14436Y35884D01* X14428Y35882D01* X14393Y35870D01* X14361Y35855D01* X14329Y35837D01* X14300Y35816D01* X14272Y35793D01* X14247Y35767D01* X14224Y35739D01* X14204Y35709D01* X14186Y35677D01* X14172Y35644D01* X14160Y35610D01* X14158Y35601D01* X14158Y35593D01* X14159Y35584D01* X14162Y35576D01* X14167Y35568D01* X14172Y35561D01* X14179Y35556D01* X14186Y35551D01* X14194Y35548D01* X14203Y35546D01* X14212Y35546D01* X14220Y35547D01* X14228Y35550D01* X14236Y35555D01* X14243Y35560D01* X14249Y35567D01* X14253Y35574D01* X14256Y35582D01* X14265Y35608D01* X14276Y35633D01* X14289Y35657D01* X14304Y35679D01* X14321Y35700D01* X14340Y35719D01* X14361Y35737D01* X14383Y35752D01* X14407Y35766D01* X14431Y35777D01* X14445Y35782D01* Y35217D01* X14436Y35220D01* X14411Y35231D01* X14388Y35244D01* X14365Y35259D01* X14344Y35276D01* X14325Y35295D01* X14307Y35316D01* X14292Y35338D01* X14278Y35362D01* X14267Y35386D01* X14258Y35412D01* X14254Y35420D01* X14250Y35427D01* X14244Y35434D01* X14237Y35439D01* X14229Y35443D01* X14221Y35446D01* X14212Y35447D01* X14204Y35447D01* X14195Y35445D01* X14187Y35442D01* X14180Y35437D01* X14173Y35431D01* X14168Y35424D01* X14164Y35417D01* X14161Y35409D01* X14160Y35400D01* X14160Y35391D01* X14162Y35383D01* X14174Y35349D01* X14189Y35316D01* X14207Y35284D01* X14228Y35255D01* X14252Y35227D01* X14277Y35202D01* X14305Y35179D01* X14335Y35159D01* X14367Y35141D01* X14400Y35127D01* X14434Y35115D01* X14443Y35113D01* X14445D01* Y33881D01* X14413Y33870D01* X14381Y33855D01* X14349Y33837D01* X14320Y33816D01* X14292Y33793D01* X14267Y33767D01* X14244Y33739D01* X14224Y33709D01* X14206Y33677D01* X14192Y33644D01* X14180Y33610D01* X14178Y33601D01* X14178Y33593D01* X14179Y33584D01* X14182Y33576D01* X14187Y33568D01* X14192Y33561D01* X14199Y33556D01* X14206Y33551D01* X14214Y33548D01* X14223Y33546D01* X14232Y33546D01* X14240Y33547D01* X14248Y33550D01* X14256Y33555D01* X14263Y33560D01* X14269Y33567D01* X14273Y33574D01* X14276Y33582D01* X14285Y33608D01* X14296Y33633D01* X14309Y33657D01* X14324Y33679D01* X14341Y33700D01* X14360Y33719D01* X14381Y33737D01* X14403Y33752D01* X14427Y33766D01* X14445Y33775D01* Y33225D01* X14431Y33231D01* X14408Y33244D01* X14385Y33259D01* X14364Y33276D01* X14345Y33295D01* X14327Y33316D01* X14312Y33338D01* X14298Y33362D01* X14287Y33386D01* X14278Y33412D01* X14274Y33420D01* X14270Y33427D01* X14264Y33434D01* X14257Y33439D01* X14249Y33443D01* X14241Y33446D01* X14232Y33447D01* X14224Y33447D01* X14215Y33445D01* X14207Y33442D01* X14200Y33437D01* X14193Y33431D01* X14188Y33424D01* X14184Y33417D01* X14181Y33409D01* X14180Y33400D01* X14180Y33391D01* X14182Y33383D01* X14194Y33349D01* X14209Y33316D01* X14227Y33284D01* X14248Y33255D01* X14272Y33227D01* X14297Y33202D01* X14325Y33179D01* X14355Y33159D01* X14387Y33141D01* X14420Y33127D01* X14445Y33118D01* Y31874D01* X14433Y31870D01* X14401Y31855D01* X14369Y31837D01* X14340Y31816D01* X14312Y31793D01* X14287Y31767D01* X14264Y31739D01* X14244Y31709D01* X14226Y31677D01* X14212Y31644D01* X14200Y31610D01* X14198Y31601D01* X14198Y31593D01* X14199Y31584D01* X14202Y31576D01* X14207Y31568D01* X14212Y31561D01* X14219Y31556D01* X14226Y31551D01* X14234Y31548D01* X14243Y31546D01* X14252Y31546D01* X14260Y31547D01* X14268Y31550D01* X14276Y31555D01* X14283Y31560D01* X14289Y31567D01* X14293Y31574D01* X14296Y31582D01* X14305Y31608D01* X14316Y31633D01* X14329Y31657D01* X14344Y31679D01* X14361Y31700D01* X14380Y31719D01* X14401Y31737D01* X14423Y31752D01* X14445Y31765D01* Y31234D01* X14428Y31244D01* X14405Y31259D01* X14384Y31276D01* X14365Y31295D01* X14347Y31316D01* X14332Y31338D01* X14318Y31362D01* X14307Y31386D01* X14298Y31412D01* X14294Y31420D01* X14290Y31427D01* X14284Y31434D01* X14277Y31439D01* X14269Y31443D01* X14261Y31446D01* X14252Y31447D01* X14244Y31447D01* X14235Y31445D01* X14227Y31442D01* X14220Y31437D01* X14213Y31431D01* X14208Y31424D01* X14204Y31417D01* X14201Y31409D01* X14200Y31400D01* X14200Y31391D01* X14202Y31383D01* X14214Y31349D01* X14229Y31316D01* X14247Y31284D01* X14268Y31255D01* X14292Y31227D01* X14317Y31202D01* X14345Y31179D01* X14375Y31159D01* X14407Y31141D01* X14440Y31127D01* X14445Y31125D01* Y29866D01* X14421Y29855D01* X14389Y29837D01* X14360Y29816D01* X14332Y29793D01* X14307Y29767D01* X14284Y29739D01* X14264Y29709D01* X14246Y29677D01* X14232Y29644D01* X14220Y29610D01* X14218Y29601D01* X14218Y29593D01* X14219Y29584D01* X14222Y29576D01* X14227Y29568D01* X14232Y29561D01* X14239Y29556D01* X14246Y29551D01* X14254Y29548D01* X14263Y29546D01* X14272Y29546D01* X14280Y29547D01* X14288Y29550D01* X14296Y29555D01* X14303Y29560D01* X14309Y29567D01* X14313Y29574D01* X14316Y29582D01* X14325Y29608D01* X14336Y29633D01* X14349Y29657D01* X14364Y29679D01* X14381Y29700D01* X14400Y29719D01* X14421Y29737D01* X14443Y29752D01* X14445Y29754D01* Y29246D01* X14425Y29259D01* X14404Y29276D01* X14385Y29295D01* X14367Y29316D01* X14352Y29338D01* X14338Y29362D01* X14327Y29386D01* X14318Y29412D01* X14314Y29420D01* X14310Y29427D01* X14304Y29434D01* X14297Y29439D01* X14289Y29443D01* X14281Y29446D01* X14272Y29447D01* X14264Y29447D01* X14255Y29445D01* X14247Y29442D01* X14240Y29437D01* X14233Y29431D01* X14228Y29424D01* X14224Y29417D01* X14221Y29409D01* X14220Y29400D01* X14220Y29391D01* X14222Y29383D01* X14234Y29349D01* X14249Y29316D01* X14267Y29284D01* X14288Y29255D01* X14312Y29227D01* X14337Y29202D01* X14365Y29179D01* X14395Y29159D01* X14427Y29141D01* X14445Y29133D01* Y27857D01* X14441Y27855D01* X14409Y27837D01* X14380Y27816D01* X14352Y27793D01* X14327Y27767D01* X14304Y27739D01* X14284Y27709D01* X14266Y27677D01* X14252Y27644D01* X14240Y27610D01* X14238Y27601D01* X14238Y27593D01* X14239Y27584D01* X14242Y27576D01* X14247Y27568D01* X14252Y27561D01* X14259Y27556D01* X14266Y27551D01* X14274Y27548D01* X14283Y27546D01* X14292Y27546D01* X14300Y27547D01* X14308Y27550D01* X14316Y27555D01* X14323Y27560D01* X14329Y27567D01* X14333Y27574D01* X14336Y27582D01* X14345Y27608D01* X14356Y27633D01* X14369Y27657D01* X14384Y27679D01* X14401Y27700D01* X14420Y27719D01* X14441Y27737D01* X14445Y27740D01* Y27259D01* X14445Y27259D01* X14424Y27276D01* X14405Y27295D01* X14387Y27316D01* X14372Y27338D01* X14358Y27362D01* X14347Y27386D01* X14338Y27412D01* X14334Y27420D01* X14330Y27427D01* X14324Y27434D01* X14317Y27439D01* X14309Y27443D01* X14301Y27446D01* X14292Y27447D01* X14284Y27447D01* X14275Y27445D01* X14267Y27442D01* X14260Y27437D01* X14253Y27431D01* X14248Y27424D01* X14244Y27417D01* X14241Y27409D01* X14240Y27400D01* X14240Y27391D01* X14242Y27383D01* X14254Y27349D01* X14269Y27316D01* X14287Y27284D01* X14308Y27255D01* X14332Y27227D01* X14357Y27202D01* X14385Y27179D01* X14415Y27159D01* X14445Y27142D01* Y25846D01* X14429Y25837D01* X14400Y25816D01* X14372Y25793D01* X14347Y25767D01* X14324Y25739D01* X14304Y25709D01* X14286Y25677D01* X14272Y25644D01* X14260Y25610D01* X14258Y25601D01* X14258Y25593D01* X14259Y25584D01* X14262Y25576D01* X14267Y25568D01* X14272Y25561D01* X14279Y25556D01* X14286Y25551D01* X14294Y25548D01* X14303Y25546D01* X14312Y25546D01* X14320Y25547D01* X14328Y25550D01* X14336Y25555D01* X14343Y25560D01* X14349Y25567D01* X14353Y25574D01* X14356Y25582D01* X14365Y25608D01* X14376Y25633D01* X14389Y25657D01* X14404Y25679D01* X14421Y25700D01* X14440Y25719D01* X14445Y25723D01* Y25276D01* X14444Y25276D01* X14425Y25295D01* X14407Y25316D01* X14392Y25338D01* X14378Y25362D01* X14367Y25386D01* X14358Y25412D01* X14354Y25420D01* X14350Y25427D01* X14344Y25434D01* X14337Y25439D01* X14329Y25443D01* X14321Y25446D01* X14312Y25447D01* X14304Y25447D01* X14295Y25445D01* X14287Y25442D01* X14280Y25437D01* X14273Y25431D01* X14268Y25424D01* X14264Y25417D01* X14261Y25409D01* X14260Y25400D01* X14260Y25391D01* X14262Y25383D01* X14274Y25349D01* X14289Y25316D01* X14307Y25284D01* X14328Y25255D01* X14352Y25227D01* X14377Y25202D01* X14405Y25179D01* X14435Y25159D01* X14445Y25153D01* Y23834D01* X14420Y23816D01* X14392Y23793D01* X14367Y23767D01* X14344Y23739D01* X14324Y23709D01* X14306Y23677D01* X14292Y23644D01* X14280Y23610D01* X14278Y23601D01* X14278Y23593D01* X14279Y23584D01* X14282Y23576D01* X14287Y23568D01* X14292Y23561D01* X14299Y23556D01* X14306Y23551D01* X14314Y23548D01* X14323Y23546D01* X14332Y23546D01* X14340Y23547D01* X14348Y23550D01* X14356Y23555D01* X14363Y23560D01* X14369Y23567D01* X14373Y23574D01* X14376Y23582D01* X14385Y23608D01* X14396Y23633D01* X14409Y23657D01* X14424Y23679D01* X14441Y23700D01* X14445Y23704D01* Y23295D01* X14445Y23295D01* X14427Y23316D01* X14412Y23338D01* X14398Y23362D01* X14387Y23386D01* X14378Y23412D01* X14374Y23420D01* X14370Y23427D01* X14364Y23434D01* X14357Y23439D01* X14349Y23443D01* X14341Y23446D01* X14332Y23447D01* X14324Y23447D01* X14315Y23445D01* X14307Y23442D01* X14300Y23437D01* X14293Y23431D01* X14288Y23424D01* X14284Y23417D01* X14281Y23409D01* X14280Y23400D01* X14280Y23391D01* X14282Y23383D01* X14294Y23349D01* X14309Y23316D01* X14327Y23284D01* X14348Y23255D01* X14372Y23227D01* X14397Y23202D01* X14425Y23179D01* X14445Y23166D01* Y21820D01* X14440Y21816D01* X14412Y21793D01* X14387Y21767D01* X14364Y21739D01* X14344Y21709D01* X14326Y21677D01* X14312Y21644D01* X14300Y21610D01* X14298Y21601D01* X14298Y21593D01* X14299Y21584D01* X14302Y21576D01* X14307Y21568D01* X14312Y21561D01* X14319Y21556D01* X14326Y21551D01* X14334Y21548D01* X14343Y21546D01* X14352Y21546D01* X14360Y21547D01* X14368Y21550D01* X14376Y21555D01* X14383Y21560D01* X14389Y21567D01* X14393Y21574D01* X14396Y21582D01* X14405Y21608D01* X14416Y21633D01* X14429Y21657D01* X14444Y21679D01* X14445Y21680D01* Y21319D01* X14432Y21338D01* X14418Y21362D01* X14407Y21386D01* X14398Y21412D01* X14394Y21420D01* X14390Y21427D01* X14384Y21434D01* X14377Y21439D01* X14369Y21443D01* X14361Y21446D01* X14352Y21447D01* X14344Y21447D01* X14335Y21445D01* X14327Y21442D01* X14320Y21437D01* X14313Y21431D01* X14308Y21424D01* X14304Y21417D01* X14301Y21409D01* X14300Y21400D01* X14300Y21391D01* X14302Y21383D01* X14314Y21349D01* X14329Y21316D01* X14347Y21284D01* X14368Y21255D01* X14392Y21227D01* X14417Y21202D01* X14445Y21179D01* Y19804D01* X14432Y19793D01* X14407Y19767D01* X14384Y19739D01* X14364Y19709D01* X14346Y19677D01* X14332Y19644D01* X14320Y19610D01* X14318Y19601D01* X14318Y19593D01* X14319Y19584D01* X14322Y19576D01* X14327Y19568D01* X14332Y19561D01* X14339Y19556D01* X14346Y19551D01* X14354Y19548D01* X14363Y19546D01* X14372Y19546D01* X14380Y19547D01* X14388Y19550D01* X14396Y19555D01* X14403Y19560D01* X14409Y19567D01* X14413Y19574D01* X14416Y19582D01* X14425Y19608D01* X14436Y19633D01* X14445Y19650D01* Y19349D01* X14438Y19362D01* X14427Y19386D01* X14418Y19412D01* X14414Y19420D01* X14410Y19427D01* X14404Y19434D01* X14397Y19439D01* X14389Y19443D01* X14381Y19446D01* X14372Y19447D01* X14364Y19447D01* X14355Y19445D01* X14347Y19442D01* X14340Y19437D01* X14333Y19431D01* X14328Y19424D01* X14324Y19417D01* X14321Y19409D01* X14320Y19400D01* X14320Y19391D01* X14322Y19383D01* X14334Y19349D01* X14349Y19316D01* X14367Y19284D01* X14388Y19255D01* X14412Y19227D01* X14437Y19202D01* X14445Y19196D01* Y17785D01* X14427Y17767D01* X14404Y17739D01* X14384Y17709D01* X14366Y17677D01* X14352Y17644D01* X14340Y17610D01* X14338Y17601D01* X14338Y17593D01* X14339Y17584D01* X14342Y17576D01* X14347Y17568D01* X14352Y17561D01* X14359Y17556D01* X14366Y17551D01* X14374Y17548D01* X14383Y17546D01* X14392Y17546D01* X14400Y17547D01* X14408Y17550D01* X14416Y17555D01* X14423Y17560D01* X14429Y17567D01* X14433Y17574D01* X14436Y17582D01* X14445Y17608D01* X14445Y17609D01* Y17391D01* X14438Y17412D01* X14434Y17420D01* X14430Y17427D01* X14424Y17434D01* X14417Y17439D01* X14409Y17443D01* X14401Y17446D01* X14392Y17447D01* X14384Y17447D01* X14375Y17445D01* X14367Y17442D01* X14360Y17437D01* X14353Y17431D01* X14348Y17424D01* X14344Y17417D01* X14341Y17409D01* X14340Y17400D01* X14340Y17391D01* X14342Y17383D01* X14354Y17349D01* X14369Y17316D01* X14387Y17284D01* X14408Y17255D01* X14432Y17227D01* X14445Y17214D01* Y15765D01* X14424Y15739D01* X14404Y15709D01* X14386Y15677D01* X14372Y15644D01* X14360Y15610D01* X14358Y15601D01* X14358Y15593D01* X14359Y15584D01* X14362Y15576D01* X14367Y15568D01* X14372Y15561D01* X14379Y15556D01* X14386Y15551D01* X14394Y15548D01* X14403Y15546D01* X14412Y15546D01* X14420Y15547D01* X14428Y15550D01* X14436Y15555D01* X14443Y15560D01* X14445Y15563D01* Y15432D01* X14444Y15434D01* X14437Y15439D01* X14429Y15443D01* X14421Y15446D01* X14412Y15447D01* X14404Y15447D01* X14395Y15445D01* X14387Y15442D01* X14380Y15437D01* X14373Y15431D01* X14368Y15424D01* X14364Y15417D01* X14361Y15409D01* X14360Y15400D01* X14360Y15391D01* X14362Y15383D01* X14374Y15349D01* X14389Y15316D01* X14407Y15284D01* X14428Y15255D01* X14445Y15235D01* Y13740D01* X14444Y13739D01* X14424Y13709D01* X14406Y13677D01* X14392Y13644D01* X14380Y13610D01* X14378Y13601D01* X14378Y13593D01* X14379Y13584D01* X14382Y13576D01* X14387Y13568D01* X14392Y13561D01* X14399Y13556D01* X14406Y13551D01* X14414Y13548D01* X14423Y13546D01* X14432Y13546D01* X14440Y13547D01* X14445Y13549D01* Y13445D01* X14441Y13446D01* X14432Y13447D01* X14424Y13447D01* X14415Y13445D01* X14407Y13442D01* X14400Y13437D01* X14393Y13431D01* X14388Y13424D01* X14384Y13417D01* X14381Y13409D01* X14380Y13400D01* X14380Y13391D01* X14382Y13383D01* X14394Y13349D01* X14409Y13316D01* X14427Y13284D01* X14445Y13259D01* Y11711D01* X14444Y11709D01* X14426Y11677D01* X14412Y11644D01* X14400Y11610D01* X14398Y11601D01* X14398Y11593D01* X14399Y11584D01* X14402Y11576D01* X14407Y11568D01* X14412Y11561D01* X14419Y11556D01* X14426Y11551D01* X14434Y11548D01* X14443Y11546D01* X14445D01* Y11447D01* X14444Y11447D01* X14435Y11445D01* X14427Y11442D01* X14420Y11437D01* X14413Y11431D01* X14408Y11424D01* X14404Y11417D01* X14401Y11409D01* X14400Y11400D01* X14400Y11391D01* X14402Y11383D01* X14414Y11349D01* X14429Y11316D01* X14445Y11288D01* Y9675D01* X14432Y9644D01* X14420Y9610D01* X14418Y9601D01* X14418Y9593D01* X14419Y9584D01* X14422Y9576D01* X14427Y9568D01* X14432Y9561D01* X14439Y9556D01* X14445Y9552D01* Y9441D01* X14440Y9437D01* X14433Y9431D01* X14428Y9424D01* X14424Y9417D01* X14421Y9409D01* X14420Y9400D01* X14420Y9391D01* X14422Y9383D01* X14434Y9349D01* X14445Y9325D01* Y7625D01* X14440Y7610D01* X14438Y7601D01* X14438Y7593D01* X14439Y7584D01* X14442Y7576D01* X14445Y7571D01* Y7419D01* X14444Y7417D01* X14441Y7409D01* X14440Y7400D01* X14440Y7391D01* X14442Y7383D01* X14445Y7374D01* Y0D01* X13104D01* Y1165D01* X13129Y1183D01* X13157Y1207D01* X13182Y1232D01* X13205Y1260D01* X13225Y1290D01* X13243Y1322D01* X13257Y1355D01* X13269Y1389D01* X13271Y1398D01* X13271Y1407D01* X13270Y1415D01* X13267Y1423D01* X13262Y1431D01* X13257Y1438D01* X13250Y1444D01* X13243Y1448D01* X13235Y1451D01* X13226Y1453D01* X13217Y1453D01* X13209Y1452D01* X13201Y1449D01* X13193Y1445D01* X13186Y1439D01* X13180Y1433D01* X13176Y1425D01* X13173Y1417D01* X13164Y1391D01* X13153Y1366D01* X13140Y1343D01* X13125Y1320D01* X13108Y1299D01* X13104Y1295D01* Y1704D01* X13104Y1704D01* X13122Y1683D01* X13137Y1661D01* X13151Y1637D01* X13162Y1613D01* X13171Y1587D01* X13175Y1579D01* X13179Y1572D01* X13185Y1565D01* X13192Y1560D01* X13200Y1556D01* X13208Y1553D01* X13217Y1552D01* X13225Y1552D01* X13234Y1554D01* X13242Y1557D01* X13249Y1562D01* X13256Y1568D01* X13261Y1575D01* X13265Y1582D01* X13268Y1591D01* X13269Y1599D01* X13269Y1608D01* X13267Y1617D01* X13255Y1651D01* X13240Y1683D01* X13222Y1715D01* X13201Y1744D01* X13177Y1772D01* X13152Y1797D01* X13124Y1820D01* X13104Y1834D01* Y3180D01* X13109Y3183D01* X13137Y3207D01* X13162Y3232D01* X13185Y3260D01* X13205Y3290D01* X13223Y3322D01* X13237Y3355D01* X13249Y3389D01* X13251Y3398D01* X13251Y3407D01* X13250Y3415D01* X13247Y3423D01* X13242Y3431D01* X13237Y3438D01* X13230Y3444D01* X13223Y3448D01* X13215Y3451D01* X13206Y3453D01* X13197Y3453D01* X13189Y3452D01* X13181Y3449D01* X13173Y3445D01* X13166Y3439D01* X13160Y3433D01* X13156Y3425D01* X13153Y3417D01* X13144Y3391D01* X13133Y3366D01* X13120Y3343D01* X13105Y3320D01* X13104Y3319D01* Y3680D01* X13117Y3661D01* X13131Y3637D01* X13142Y3613D01* X13151Y3587D01* X13155Y3579D01* X13159Y3572D01* X13165Y3565D01* X13172Y3560D01* X13180Y3556D01* X13188Y3553D01* X13197Y3552D01* X13205Y3552D01* X13214Y3554D01* X13222Y3557D01* X13229Y3562D01* X13236Y3568D01* X13241Y3575D01* X13245Y3582D01* X13248Y3591D01* X13249Y3599D01* X13249Y3608D01* X13247Y3617D01* X13235Y3651D01* X13220Y3683D01* X13202Y3715D01* X13181Y3744D01* X13157Y3772D01* X13132Y3797D01* X13104Y3820D01* Y5196D01* X13117Y5207D01* X13142Y5232D01* X13165Y5260D01* X13185Y5290D01* X13203Y5322D01* X13217Y5355D01* X13229Y5389D01* X13231Y5398D01* X13231Y5407D01* X13230Y5415D01* X13227Y5423D01* X13222Y5431D01* X13217Y5438D01* X13210Y5444D01* X13203Y5448D01* X13195Y5451D01* X13186Y5453D01* X13177Y5453D01* X13169Y5452D01* X13161Y5449D01* X13153Y5445D01* X13146Y5439D01* X13140Y5433D01* X13136Y5425D01* X13133Y5417D01* X13124Y5391D01* X13113Y5366D01* X13104Y5350D01* Y5650D01* X13111Y5637D01* X13122Y5613D01* X13131Y5587D01* X13135Y5579D01* X13139Y5572D01* X13145Y5565D01* X13152Y5560D01* X13160Y5556D01* X13168Y5553D01* X13177Y5552D01* X13185Y5552D01* X13194Y5554D01* X13202Y5557D01* X13209Y5562D01* X13216Y5568D01* X13221Y5575D01* X13225Y5582D01* X13228Y5591D01* X13229Y5599D01* X13229Y5608D01* X13227Y5617D01* X13215Y5651D01* X13200Y5683D01* X13182Y5715D01* X13161Y5744D01* X13137Y5772D01* X13112Y5797D01* X13104Y5804D01* Y7214D01* X13122Y7232D01* X13145Y7260D01* X13165Y7290D01* X13183Y7322D01* X13197Y7355D01* X13209Y7389D01* X13211Y7398D01* X13211Y7407D01* X13210Y7415D01* X13207Y7423D01* X13202Y7431D01* X13197Y7438D01* X13190Y7444D01* X13183Y7448D01* X13175Y7451D01* X13166Y7453D01* X13157Y7453D01* X13149Y7452D01* X13141Y7449D01* X13133Y7445D01* X13126Y7439D01* X13120Y7433D01* X13116Y7425D01* X13113Y7417D01* X13104Y7391D01* X13104Y7391D01* Y7608D01* X13111Y7587D01* X13115Y7579D01* X13119Y7572D01* X13125Y7565D01* X13132Y7560D01* X13140Y7556D01* X13148Y7553D01* X13157Y7552D01* X13165Y7552D01* X13174Y7554D01* X13182Y7557D01* X13189Y7562D01* X13196Y7568D01* X13201Y7575D01* X13205Y7582D01* X13208Y7591D01* X13209Y7599D01* X13209Y7608D01* X13207Y7617D01* X13195Y7651D01* X13180Y7683D01* X13162Y7715D01* X13141Y7744D01* X13117Y7772D01* X13104Y7785D01* Y9235D01* X13125Y9260D01* X13145Y9290D01* X13163Y9322D01* X13177Y9355D01* X13189Y9389D01* X13191Y9398D01* X13191Y9407D01* X13190Y9415D01* X13187Y9423D01* X13182Y9431D01* X13177Y9438D01* X13170Y9444D01* X13163Y9448D01* X13155Y9451D01* X13146Y9453D01* X13137Y9453D01* X13129Y9452D01* X13121Y9449D01* X13113Y9445D01* X13106Y9439D01* X13104Y9437D01* Y9567D01* X13105Y9565D01* X13112Y9560D01* X13120Y9556D01* X13128Y9553D01* X13137Y9552D01* X13145Y9552D01* X13154Y9554D01* X13162Y9557D01* X13169Y9562D01* X13176Y9568D01* X13181Y9575D01* X13185Y9582D01* X13188Y9591D01* X13189Y9599D01* X13189Y9608D01* X13187Y9617D01* X13175Y9651D01* X13160Y9683D01* X13142Y9715D01* X13121Y9744D01* X13104Y9764D01* Y11259D01* X13105Y11260D01* X13125Y11290D01* X13143Y11322D01* X13157Y11355D01* X13169Y11389D01* X13171Y11398D01* X13171Y11407D01* X13170Y11415D01* X13167Y11423D01* X13162Y11431D01* X13157Y11438D01* X13150Y11444D01* X13143Y11448D01* X13135Y11451D01* X13126Y11453D01* X13117Y11453D01* X13109Y11452D01* X13104Y11450D01* Y11555D01* X13108Y11553D01* X13117Y11552D01* X13125Y11552D01* X13134Y11554D01* X13142Y11557D01* X13149Y11562D01* X13156Y11568D01* X13161Y11575D01* X13165Y11582D01* X13168Y11591D01* X13169Y11599D01* X13169Y11608D01* X13167Y11617D01* X13155Y11651D01* X13140Y11683D01* X13122Y11715D01* X13104Y11740D01* Y13288D01* X13105Y13290D01* X13123Y13322D01* X13137Y13355D01* X13149Y13389D01* X13151Y13398D01* X13151Y13407D01* X13150Y13415D01* X13147Y13423D01* X13142Y13431D01* X13137Y13438D01* X13130Y13444D01* X13123Y13448D01* X13115Y13451D01* X13106Y13453D01* X13104D01* Y13552D01* X13105D01* X13114Y13554D01* X13122Y13557D01* X13129Y13562D01* X13136Y13568D01* X13141Y13575D01* X13145Y13582D01* X13148Y13591D01* X13149Y13599D01* X13149Y13608D01* X13147Y13617D01* X13135Y13651D01* X13120Y13683D01* X13104Y13711D01* Y15324D01* X13117Y15355D01* X13129Y15389D01* X13131Y15398D01* X13131Y15407D01* X13130Y15415D01* X13127Y15423D01* X13122Y15431D01* X13117Y15438D01* X13110Y15444D01* X13104Y15447D01* Y15559D01* X13109Y15562D01* X13116Y15568D01* X13121Y15575D01* X13125Y15582D01* X13128Y15591D01* X13129Y15599D01* X13129Y15608D01* X13127Y15617D01* X13115Y15651D01* X13104Y15674D01* Y17374D01* X13109Y17389D01* X13111Y17398D01* X13111Y17407D01* X13110Y17415D01* X13107Y17423D01* X13104Y17428D01* Y17580D01* X13105Y17582D01* X13108Y17591D01* X13109Y17599D01* X13109Y17608D01* X13107Y17617D01* X13104Y17625D01* Y40000D01* G37* G36* X14445D02*X14625D01* Y39881D01* X14615Y39884D01* X14606Y39886D01* X14597Y39886D01* X14589Y39885D01* X14581Y39882D01* X14573Y39878D01* X14566Y39872D01* X14560Y39865D01* X14556Y39858D01* X14553Y39850D01* X14551Y39841D01* X14551Y39833D01* X14552Y39824D01* X14555Y39816D01* X14559Y39808D01* X14565Y39801D01* X14572Y39796D01* X14579Y39791D01* X14587Y39788D01* X14613Y39779D01* X14625Y39774D01* Y39225D01* X14618Y39222D01* X14592Y39213D01* X14584Y39209D01* X14577Y39205D01* X14570Y39199D01* X14565Y39192D01* X14561Y39184D01* X14558Y39176D01* X14557Y39167D01* X14557Y39159D01* X14559Y39150D01* X14562Y39142D01* X14567Y39135D01* X14573Y39128D01* X14580Y39123D01* X14587Y39119D01* X14596Y39116D01* X14604Y39115D01* X14613Y39115D01* X14621Y39117D01* X14625Y39118D01* Y37886D01* X14617Y37886D01* X14609Y37885D01* X14601Y37882D01* X14593Y37878D01* X14586Y37872D01* X14580Y37865D01* X14576Y37858D01* X14573Y37850D01* X14571Y37841D01* X14571Y37833D01* X14572Y37824D01* X14575Y37816D01* X14579Y37808D01* X14585Y37801D01* X14592Y37796D01* X14599Y37791D01* X14607Y37788D01* X14625Y37782D01* Y37217D01* X14612Y37213D01* X14604Y37209D01* X14597Y37205D01* X14590Y37199D01* X14585Y37192D01* X14581Y37184D01* X14578Y37176D01* X14577Y37167D01* X14577Y37159D01* X14579Y37150D01* X14582Y37142D01* X14587Y37135D01* X14593Y37128D01* X14600Y37123D01* X14607Y37119D01* X14616Y37116D01* X14624Y37115D01* X14625D01* Y35883D01* X14621Y35882D01* X14613Y35878D01* X14606Y35872D01* X14600Y35865D01* X14596Y35858D01* X14593Y35850D01* X14591Y35841D01* X14591Y35833D01* X14592Y35824D01* X14595Y35816D01* X14599Y35808D01* X14605Y35801D01* X14612Y35796D01* X14619Y35791D01* X14625Y35789D01* Y35210D01* X14624Y35209D01* X14617Y35205D01* X14610Y35199D01* X14605Y35192D01* X14601Y35184D01* X14598Y35176D01* X14597Y35167D01* X14597Y35159D01* X14599Y35150D01* X14602Y35142D01* X14607Y35135D01* X14613Y35128D01* X14620Y35123D01* X14625Y35120D01* Y33871D01* X14620Y33865D01* X14616Y33858D01* X14613Y33850D01* X14611Y33841D01* X14611Y33833D01* X14612Y33824D01* X14615Y33816D01* X14619Y33808D01* X14625Y33801D01* X14625Y33801D01* Y33192D01* X14625Y33192D01* X14621Y33184D01* X14618Y33176D01* X14617Y33167D01* X14617Y33159D01* X14619Y33150D01* X14622Y33142D01* X14625Y33138D01* Y21859D01* X14622Y21864D01* X14616Y21871D01* X14609Y21876D01* X14602Y21880D01* X14593Y21883D01* X14585Y21884D01* X14576Y21884D01* X14568Y21882D01* X14533Y21870D01* X14501Y21855D01* X14469Y21837D01* X14445Y21820D01* Y23166D01* X14455Y23159D01* X14487Y23141D01* X14520Y23127D01* X14554Y23115D01* X14563Y23113D01* X14572Y23113D01* X14580Y23115D01* X14588Y23117D01* X14596Y23122D01* X14603Y23127D01* X14609Y23134D01* X14613Y23141D01* X14616Y23149D01* X14618Y23158D01* X14618Y23167D01* X14617Y23175D01* X14614Y23183D01* X14610Y23191D01* X14604Y23198D01* X14597Y23204D01* X14590Y23208D01* X14582Y23211D01* X14556Y23220D01* X14531Y23231D01* X14508Y23244D01* X14485Y23259D01* X14464Y23276D01* X14445Y23295D01* Y23704D01* X14460Y23719D01* X14481Y23737D01* X14503Y23752D01* X14527Y23766D01* X14551Y23777D01* X14577Y23786D01* X14585Y23790D01* X14592Y23794D01* X14599Y23800D01* X14604Y23807D01* X14608Y23815D01* X14611Y23823D01* X14612Y23832D01* X14612Y23840D01* X14610Y23849D01* X14607Y23857D01* X14602Y23864D01* X14596Y23871D01* X14589Y23876D01* X14582Y23880D01* X14573Y23883D01* X14565Y23884D01* X14556Y23884D01* X14548Y23882D01* X14513Y23870D01* X14481Y23855D01* X14449Y23837D01* X14445Y23834D01* Y25153D01* X14467Y25141D01* X14500Y25127D01* X14534Y25115D01* X14543Y25113D01* X14552Y25113D01* X14560Y25115D01* X14568Y25117D01* X14576Y25122D01* X14583Y25127D01* X14589Y25134D01* X14593Y25141D01* X14596Y25149D01* X14598Y25158D01* X14598Y25167D01* X14597Y25175D01* X14594Y25183D01* X14590Y25191D01* X14584Y25198D01* X14577Y25204D01* X14570Y25208D01* X14562Y25211D01* X14536Y25220D01* X14511Y25231D01* X14488Y25244D01* X14465Y25259D01* X14445Y25276D01* Y25723D01* X14461Y25737D01* X14483Y25752D01* X14507Y25766D01* X14531Y25777D01* X14557Y25786D01* X14565Y25790D01* X14572Y25794D01* X14579Y25800D01* X14584Y25807D01* X14588Y25815D01* X14591Y25823D01* X14592Y25832D01* X14592Y25840D01* X14590Y25849D01* X14587Y25857D01* X14582Y25864D01* X14576Y25871D01* X14569Y25876D01* X14562Y25880D01* X14553Y25883D01* X14545Y25884D01* X14536Y25884D01* X14528Y25882D01* X14493Y25870D01* X14461Y25855D01* X14445Y25846D01* Y27142D01* X14447Y27141D01* X14480Y27127D01* X14514Y27115D01* X14523Y27113D01* X14532Y27113D01* X14540Y27115D01* X14548Y27117D01* X14556Y27122D01* X14563Y27127D01* X14569Y27134D01* X14573Y27141D01* X14576Y27149D01* X14578Y27158D01* X14578Y27167D01* X14577Y27175D01* X14574Y27183D01* X14570Y27191D01* X14564Y27198D01* X14557Y27204D01* X14550Y27208D01* X14542Y27211D01* X14516Y27220D01* X14491Y27231D01* X14468Y27244D01* X14445Y27259D01* Y27740D01* X14463Y27752D01* X14487Y27766D01* X14511Y27777D01* X14537Y27786D01* X14545Y27790D01* X14552Y27794D01* X14559Y27800D01* X14564Y27807D01* X14568Y27815D01* X14571Y27823D01* X14572Y27832D01* X14572Y27840D01* X14570Y27849D01* X14567Y27857D01* X14562Y27864D01* X14556Y27871D01* X14549Y27876D01* X14542Y27880D01* X14533Y27883D01* X14525Y27884D01* X14516Y27884D01* X14508Y27882D01* X14473Y27870D01* X14445Y27857D01* Y29133D01* X14460Y29127D01* X14494Y29115D01* X14503Y29113D01* X14512Y29113D01* X14520Y29115D01* X14528Y29117D01* X14536Y29122D01* X14543Y29127D01* X14549Y29134D01* X14553Y29141D01* X14556Y29149D01* X14558Y29158D01* X14558Y29167D01* X14557Y29175D01* X14554Y29183D01* X14550Y29191D01* X14544Y29198D01* X14537Y29204D01* X14530Y29208D01* X14522Y29211D01* X14496Y29220D01* X14471Y29231D01* X14448Y29244D01* X14445Y29246D01* Y29754D01* X14467Y29766D01* X14491Y29777D01* X14517Y29786D01* X14525Y29790D01* X14532Y29794D01* X14539Y29800D01* X14544Y29807D01* X14548Y29815D01* X14551Y29823D01* X14552Y29832D01* X14552Y29840D01* X14550Y29849D01* X14547Y29857D01* X14542Y29864D01* X14536Y29871D01* X14529Y29876D01* X14522Y29880D01* X14513Y29883D01* X14505Y29884D01* X14496Y29884D01* X14488Y29882D01* X14453Y29870D01* X14445Y29866D01* Y31125D01* X14474Y31115D01* X14483Y31113D01* X14492Y31113D01* X14500Y31115D01* X14508Y31117D01* X14516Y31122D01* X14523Y31127D01* X14529Y31134D01* X14533Y31141D01* X14536Y31149D01* X14538Y31158D01* X14538Y31167D01* X14537Y31175D01* X14534Y31183D01* X14530Y31191D01* X14524Y31198D01* X14517Y31204D01* X14510Y31208D01* X14502Y31211D01* X14476Y31220D01* X14451Y31231D01* X14445Y31234D01* Y31765D01* X14447Y31766D01* X14471Y31777D01* X14497Y31786D01* X14505Y31790D01* X14512Y31794D01* X14519Y31800D01* X14524Y31807D01* X14528Y31815D01* X14531Y31823D01* X14532Y31832D01* X14532Y31840D01* X14530Y31849D01* X14527Y31857D01* X14522Y31864D01* X14516Y31871D01* X14509Y31876D01* X14502Y31880D01* X14493Y31883D01* X14485Y31884D01* X14476Y31884D01* X14468Y31882D01* X14445Y31874D01* Y33118D01* X14454Y33115D01* X14463Y33113D01* X14472Y33113D01* X14480Y33115D01* X14488Y33117D01* X14496Y33122D01* X14503Y33127D01* X14509Y33134D01* X14513Y33141D01* X14516Y33149D01* X14518Y33158D01* X14518Y33167D01* X14517Y33175D01* X14514Y33183D01* X14510Y33191D01* X14504Y33198D01* X14497Y33204D01* X14490Y33208D01* X14482Y33211D01* X14456Y33220D01* X14445Y33225D01* Y33775D01* X14451Y33777D01* X14477Y33786D01* X14485Y33790D01* X14492Y33794D01* X14499Y33800D01* X14504Y33807D01* X14508Y33815D01* X14511Y33823D01* X14512Y33832D01* X14512Y33840D01* X14510Y33849D01* X14507Y33857D01* X14502Y33864D01* X14496Y33871D01* X14489Y33876D01* X14482Y33880D01* X14473Y33883D01* X14465Y33884D01* X14456Y33884D01* X14448Y33882D01* X14445Y33881D01* Y35113D01* X14452Y35113D01* X14460Y35115D01* X14468Y35117D01* X14476Y35122D01* X14483Y35127D01* X14489Y35134D01* X14493Y35141D01* X14496Y35149D01* X14498Y35158D01* X14498Y35167D01* X14497Y35175D01* X14494Y35183D01* X14490Y35191D01* X14484Y35198D01* X14477Y35204D01* X14470Y35208D01* X14462Y35211D01* X14445Y35217D01* Y35782D01* X14457Y35786D01* X14465Y35790D01* X14472Y35794D01* X14479Y35800D01* X14484Y35807D01* X14488Y35815D01* X14491Y35823D01* X14492Y35832D01* X14492Y35840D01* X14490Y35849D01* X14487Y35857D01* X14482Y35864D01* X14476Y35871D01* X14469Y35876D01* X14462Y35880D01* X14453Y35883D01* X14445Y35884D01* Y37116D01* X14448Y37117D01* X14456Y37122D01* X14463Y37127D01* X14469Y37134D01* X14473Y37141D01* X14476Y37149D01* X14478Y37158D01* X14478Y37167D01* X14477Y37175D01* X14474Y37183D01* X14470Y37191D01* X14464Y37198D01* X14457Y37204D01* X14450Y37208D01* X14445Y37210D01* Y37790D01* X14452Y37794D01* X14459Y37800D01* X14464Y37807D01* X14468Y37815D01* X14471Y37823D01* X14472Y37832D01* X14472Y37840D01* X14470Y37849D01* X14467Y37857D01* X14462Y37864D01* X14456Y37871D01* X14449Y37876D01* X14445Y37878D01* Y39130D01* X14449Y39134D01* X14453Y39141D01* X14456Y39149D01* X14458Y39158D01* X14458Y39167D01* X14457Y39175D01* X14454Y39183D01* X14450Y39191D01* X14445Y39197D01* Y39809D01* X14448Y39815D01* X14451Y39823D01* X14452Y39832D01* X14452Y39840D01* X14450Y39849D01* X14447Y39857D01* X14445Y39859D01* Y40000D01* G37* G36* X14625Y0D02*X14445D01* Y7374D01* X14454Y7349D01* X14469Y7316D01* X14487Y7284D01* X14508Y7255D01* X14532Y7227D01* X14557Y7202D01* X14585Y7179D01* X14615Y7159D01* X14625Y7153D01* Y5834D01* X14600Y5816D01* X14572Y5793D01* X14547Y5767D01* X14524Y5739D01* X14504Y5709D01* X14486Y5677D01* X14472Y5644D01* X14460Y5610D01* X14458Y5601D01* X14458Y5593D01* X14459Y5584D01* X14462Y5576D01* X14467Y5568D01* X14472Y5561D01* X14479Y5556D01* X14486Y5551D01* X14494Y5548D01* X14503Y5546D01* X14512Y5546D01* X14520Y5547D01* X14528Y5550D01* X14536Y5555D01* X14543Y5560D01* X14549Y5567D01* X14553Y5574D01* X14556Y5582D01* X14565Y5608D01* X14576Y5633D01* X14589Y5657D01* X14604Y5679D01* X14621Y5700D01* X14625Y5704D01* Y5295D01* X14625Y5295D01* X14607Y5316D01* X14592Y5338D01* X14578Y5362D01* X14567Y5386D01* X14558Y5412D01* X14554Y5420D01* X14550Y5427D01* X14544Y5434D01* X14537Y5439D01* X14529Y5443D01* X14521Y5446D01* X14512Y5447D01* X14504Y5447D01* X14495Y5445D01* X14487Y5442D01* X14480Y5437D01* X14473Y5431D01* X14468Y5424D01* X14464Y5417D01* X14461Y5409D01* X14460Y5400D01* X14460Y5391D01* X14462Y5383D01* X14474Y5349D01* X14489Y5316D01* X14507Y5284D01* X14528Y5255D01* X14552Y5227D01* X14577Y5202D01* X14605Y5179D01* X14625Y5166D01* Y3820D01* X14620Y3816D01* X14592Y3793D01* X14567Y3767D01* X14544Y3739D01* X14524Y3709D01* X14506Y3677D01* X14492Y3644D01* X14480Y3610D01* X14478Y3601D01* X14478Y3593D01* X14479Y3584D01* X14482Y3576D01* X14487Y3568D01* X14492Y3561D01* X14499Y3556D01* X14506Y3551D01* X14514Y3548D01* X14523Y3546D01* X14532Y3546D01* X14540Y3547D01* X14548Y3550D01* X14556Y3555D01* X14563Y3560D01* X14569Y3567D01* X14573Y3574D01* X14576Y3582D01* X14585Y3608D01* X14596Y3633D01* X14609Y3657D01* X14624Y3679D01* X14625Y3680D01* Y3319D01* X14612Y3338D01* X14598Y3362D01* X14587Y3386D01* X14578Y3412D01* X14574Y3420D01* X14570Y3427D01* X14564Y3434D01* X14557Y3439D01* X14549Y3443D01* X14541Y3446D01* X14532Y3447D01* X14524Y3447D01* X14515Y3445D01* X14507Y3442D01* X14500Y3437D01* X14493Y3431D01* X14488Y3424D01* X14484Y3417D01* X14481Y3409D01* X14480Y3400D01* X14480Y3391D01* X14482Y3383D01* X14494Y3349D01* X14509Y3316D01* X14527Y3284D01* X14548Y3255D01* X14572Y3227D01* X14597Y3202D01* X14625Y3179D01* Y1804D01* X14612Y1793D01* X14587Y1767D01* X14564Y1739D01* X14544Y1709D01* X14526Y1677D01* X14512Y1644D01* X14500Y1610D01* X14498Y1601D01* X14498Y1593D01* X14499Y1584D01* X14502Y1576D01* X14507Y1568D01* X14512Y1561D01* X14519Y1556D01* X14526Y1551D01* X14534Y1548D01* X14543Y1546D01* X14552Y1546D01* X14560Y1547D01* X14568Y1550D01* X14576Y1555D01* X14583Y1560D01* X14589Y1567D01* X14593Y1574D01* X14596Y1582D01* X14605Y1608D01* X14616Y1633D01* X14625Y1650D01* Y1349D01* X14618Y1362D01* X14607Y1386D01* X14598Y1412D01* X14594Y1420D01* X14590Y1427D01* X14584Y1434D01* X14577Y1439D01* X14569Y1443D01* X14561Y1446D01* X14552Y1447D01* X14544Y1447D01* X14535Y1445D01* X14527Y1442D01* X14520Y1437D01* X14513Y1431D01* X14508Y1424D01* X14504Y1417D01* X14501Y1409D01* X14500Y1400D01* X14500Y1391D01* X14502Y1383D01* X14514Y1349D01* X14529Y1316D01* X14547Y1284D01* X14568Y1255D01* X14592Y1227D01* X14617Y1202D01* X14625Y1196D01* Y0D01* G37* G36* Y7276D02*X14624Y7276D01* X14605Y7295D01* X14587Y7316D01* X14572Y7338D01* X14558Y7362D01* X14547Y7386D01* X14538Y7412D01* X14534Y7420D01* X14530Y7427D01* X14524Y7434D01* X14517Y7439D01* X14509Y7443D01* X14501Y7446D01* X14492Y7447D01* X14484Y7447D01* X14475Y7445D01* X14467Y7442D01* X14460Y7437D01* X14453Y7431D01* X14448Y7424D01* X14445Y7419D01* Y7571D01* X14447Y7568D01* X14452Y7561D01* X14459Y7556D01* X14466Y7551D01* X14474Y7548D01* X14483Y7546D01* X14492Y7546D01* X14500Y7547D01* X14508Y7550D01* X14516Y7555D01* X14523Y7560D01* X14529Y7567D01* X14533Y7574D01* X14536Y7582D01* X14545Y7608D01* X14556Y7633D01* X14569Y7657D01* X14584Y7679D01* X14601Y7700D01* X14620Y7719D01* X14625Y7723D01* Y7276D01* G37* G36* Y7846D02*X14609Y7837D01* X14580Y7816D01* X14552Y7793D01* X14527Y7767D01* X14504Y7739D01* X14484Y7709D01* X14466Y7677D01* X14452Y7644D01* X14445Y7625D01* Y9325D01* X14449Y9316D01* X14467Y9284D01* X14488Y9255D01* X14512Y9227D01* X14537Y9202D01* X14565Y9179D01* X14595Y9159D01* X14625Y9142D01* Y7846D01* G37* G36* Y9259D02*X14625Y9259D01* X14604Y9276D01* X14585Y9295D01* X14567Y9316D01* X14552Y9338D01* X14538Y9362D01* X14527Y9386D01* X14518Y9412D01* X14514Y9420D01* X14510Y9427D01* X14504Y9434D01* X14497Y9439D01* X14489Y9443D01* X14481Y9446D01* X14472Y9447D01* X14464Y9447D01* X14455Y9445D01* X14447Y9442D01* X14445Y9441D01* Y9552D01* X14446Y9551D01* X14454Y9548D01* X14463Y9546D01* X14472Y9546D01* X14480Y9547D01* X14488Y9550D01* X14496Y9555D01* X14503Y9560D01* X14509Y9567D01* X14513Y9574D01* X14516Y9582D01* X14525Y9608D01* X14536Y9633D01* X14549Y9657D01* X14564Y9679D01* X14581Y9700D01* X14600Y9719D01* X14621Y9737D01* X14625Y9740D01* Y9259D01* G37* G36* Y9857D02*X14621Y9855D01* X14589Y9837D01* X14560Y9816D01* X14532Y9793D01* X14507Y9767D01* X14484Y9739D01* X14464Y9709D01* X14446Y9677D01* X14445Y9675D01* Y11288D01* X14447Y11284D01* X14468Y11255D01* X14492Y11227D01* X14517Y11202D01* X14545Y11179D01* X14575Y11159D01* X14607Y11141D01* X14625Y11133D01* Y9857D01* G37* G36* Y11246D02*X14605Y11259D01* X14584Y11276D01* X14565Y11295D01* X14547Y11316D01* X14532Y11338D01* X14518Y11362D01* X14507Y11386D01* X14498Y11412D01* X14494Y11420D01* X14490Y11427D01* X14484Y11434D01* X14477Y11439D01* X14469Y11443D01* X14461Y11446D01* X14452Y11447D01* X14445Y11447D01* Y11546D01* X14452Y11546D01* X14460Y11547D01* X14468Y11550D01* X14476Y11555D01* X14483Y11560D01* X14489Y11567D01* X14493Y11574D01* X14496Y11582D01* X14505Y11608D01* X14516Y11633D01* X14529Y11657D01* X14544Y11679D01* X14561Y11700D01* X14580Y11719D01* X14601Y11737D01* X14623Y11752D01* X14625Y11754D01* Y11246D01* G37* G36* Y11866D02*X14601Y11855D01* X14569Y11837D01* X14540Y11816D01* X14512Y11793D01* X14487Y11767D01* X14464Y11739D01* X14445Y11711D01* Y13259D01* X14448Y13255D01* X14472Y13227D01* X14497Y13202D01* X14525Y13179D01* X14555Y13159D01* X14587Y13141D01* X14620Y13127D01* X14625Y13125D01* Y11866D01* G37* G36* Y13234D02*X14608Y13244D01* X14585Y13259D01* X14564Y13276D01* X14545Y13295D01* X14527Y13316D01* X14512Y13338D01* X14498Y13362D01* X14487Y13386D01* X14478Y13412D01* X14474Y13420D01* X14470Y13427D01* X14464Y13434D01* X14457Y13439D01* X14449Y13443D01* X14445Y13445D01* Y13549D01* X14448Y13550D01* X14456Y13555D01* X14463Y13560D01* X14469Y13567D01* X14473Y13574D01* X14476Y13582D01* X14485Y13608D01* X14496Y13633D01* X14509Y13657D01* X14524Y13679D01* X14541Y13700D01* X14560Y13719D01* X14581Y13737D01* X14603Y13752D01* X14625Y13765D01* Y13234D01* G37* G36* Y13874D02*X14613Y13870D01* X14581Y13855D01* X14549Y13837D01* X14520Y13816D01* X14492Y13793D01* X14467Y13767D01* X14445Y13740D01* Y15235D01* X14452Y15227D01* X14477Y15202D01* X14505Y15179D01* X14535Y15159D01* X14567Y15141D01* X14600Y15127D01* X14625Y15118D01* Y13874D01* G37* G36* Y15225D02*X14611Y15231D01* X14588Y15244D01* X14565Y15259D01* X14544Y15276D01* X14525Y15295D01* X14507Y15316D01* X14492Y15338D01* X14478Y15362D01* X14467Y15386D01* X14458Y15412D01* X14454Y15420D01* X14450Y15427D01* X14445Y15432D01* Y15563D01* X14449Y15567D01* X14453Y15574D01* X14456Y15582D01* X14465Y15608D01* X14476Y15633D01* X14489Y15657D01* X14504Y15679D01* X14521Y15700D01* X14540Y15719D01* X14561Y15737D01* X14583Y15752D01* X14607Y15766D01* X14625Y15775D01* Y15225D01* G37* G36* Y15881D02*X14593Y15870D01* X14561Y15855D01* X14529Y15837D01* X14500Y15816D01* X14472Y15793D01* X14447Y15767D01* X14445Y15765D01* Y17214D01* X14457Y17202D01* X14485Y17179D01* X14515Y17159D01* X14547Y17141D01* X14580Y17127D01* X14614Y17115D01* X14623Y17113D01* X14625D01* Y15881D01* G37* G36* Y17217D02*X14616Y17220D01* X14591Y17231D01* X14568Y17244D01* X14545Y17259D01* X14524Y17276D01* X14505Y17295D01* X14487Y17316D01* X14472Y17338D01* X14458Y17362D01* X14447Y17386D01* X14445Y17391D01* Y17609D01* X14456Y17633D01* X14469Y17657D01* X14484Y17679D01* X14501Y17700D01* X14520Y17719D01* X14541Y17737D01* X14563Y17752D01* X14587Y17766D01* X14611Y17777D01* X14625Y17782D01* Y17217D01* G37* G36* Y17884D02*X14625Y17884D01* X14616Y17884D01* X14608Y17882D01* X14573Y17870D01* X14541Y17855D01* X14509Y17837D01* X14480Y17816D01* X14452Y17793D01* X14445Y17785D01* Y19196D01* X14465Y19179D01* X14495Y19159D01* X14527Y19141D01* X14560Y19127D01* X14594Y19115D01* X14603Y19113D01* X14612Y19113D01* X14620Y19115D01* X14625Y19116D01* Y17884D01* G37* G36* Y19210D02*X14622Y19211D01* X14596Y19220D01* X14571Y19231D01* X14548Y19244D01* X14525Y19259D01* X14504Y19276D01* X14485Y19295D01* X14467Y19316D01* X14452Y19338D01* X14445Y19349D01* Y19650D01* X14449Y19657D01* X14464Y19679D01* X14481Y19700D01* X14500Y19719D01* X14521Y19737D01* X14543Y19752D01* X14567Y19766D01* X14591Y19777D01* X14617Y19786D01* X14625Y19790D01* X14625Y19790D01* Y19210D01* G37* G36* Y19878D02*X14622Y19880D01* X14613Y19883D01* X14605Y19884D01* X14596Y19884D01* X14588Y19882D01* X14553Y19870D01* X14521Y19855D01* X14489Y19837D01* X14460Y19816D01* X14445Y19804D01* Y21179D01* X14445Y21179D01* X14475Y21159D01* X14507Y21141D01* X14540Y21127D01* X14574Y21115D01* X14583Y21113D01* X14592Y21113D01* X14600Y21115D01* X14608Y21117D01* X14616Y21122D01* X14623Y21127D01* X14625Y21130D01* Y19878D01* G37* G36* Y21197D02*X14624Y21198D01* X14617Y21204D01* X14610Y21208D01* X14602Y21211D01* X14576Y21220D01* X14551Y21231D01* X14528Y21244D01* X14505Y21259D01* X14484Y21276D01* X14465Y21295D01* X14447Y21316D01* X14445Y21319D01* Y21680D01* X14461Y21700D01* X14480Y21719D01* X14501Y21737D01* X14523Y21752D01* X14547Y21766D01* X14571Y21777D01* X14597Y21786D01* X14605Y21790D01* X14612Y21794D01* X14619Y21800D01* X14624Y21807D01* X14625Y21809D01* Y21197D01* G37* G36* Y40000D02*X14884D01* Y39625D01* X14875Y39651D01* X14860Y39683D01* X14842Y39715D01* X14821Y39744D01* X14797Y39772D01* X14772Y39797D01* X14744Y39820D01* X14714Y39840D01* X14682Y39858D01* X14649Y39873D01* X14625Y39881D01* Y40000D01* G37* G36* Y39774D02*X14638Y39768D01* X14661Y39755D01* X14684Y39740D01* X14705Y39723D01* X14724Y39704D01* X14742Y39683D01* X14757Y39661D01* X14771Y39637D01* X14782Y39613D01* X14791Y39587D01* X14795Y39579D01* X14799Y39572D01* X14805Y39565D01* X14812Y39560D01* X14820Y39556D01* X14828Y39553D01* X14837Y39552D01* X14845Y39552D01* X14854Y39554D01* X14862Y39557D01* X14869Y39562D01* X14876Y39568D01* X14881Y39575D01* X14884Y39580D01* Y39428D01* X14882Y39431D01* X14877Y39438D01* X14870Y39444D01* X14863Y39448D01* X14855Y39451D01* X14846Y39453D01* X14837Y39453D01* X14829Y39452D01* X14821Y39449D01* X14813Y39445D01* X14806Y39439D01* X14800Y39433D01* X14796Y39425D01* X14793Y39417D01* X14784Y39391D01* X14773Y39366D01* X14760Y39343D01* X14745Y39320D01* X14728Y39299D01* X14709Y39280D01* X14688Y39262D01* X14666Y39247D01* X14642Y39233D01* X14625Y39225D01* Y39774D01* G37* G36* Y39118D02*X14656Y39129D01* X14688Y39144D01* X14720Y39162D01* X14749Y39183D01* X14777Y39207D01* X14802Y39232D01* X14825Y39260D01* X14845Y39290D01* X14863Y39322D01* X14877Y39355D01* X14884Y39374D01* Y37674D01* X14880Y37683D01* X14862Y37715D01* X14841Y37744D01* X14817Y37772D01* X14792Y37797D01* X14764Y37820D01* X14734Y37840D01* X14702Y37858D01* X14669Y37873D01* X14635Y37884D01* X14626Y37886D01* X14625D01* Y39118D01* G37* G36* Y37782D02*X14633Y37779D01* X14658Y37768D01* X14681Y37755D01* X14704Y37740D01* X14725Y37723D01* X14744Y37704D01* X14762Y37683D01* X14777Y37661D01* X14791Y37637D01* X14802Y37613D01* X14811Y37587D01* X14815Y37579D01* X14819Y37572D01* X14825Y37565D01* X14832Y37560D01* X14840Y37556D01* X14848Y37553D01* X14857Y37552D01* X14865Y37552D01* X14874Y37554D01* X14882Y37557D01* X14884Y37559D01* Y37447D01* X14883Y37448D01* X14875Y37451D01* X14866Y37453D01* X14857Y37453D01* X14849Y37452D01* X14841Y37449D01* X14833Y37445D01* X14826Y37439D01* X14820Y37433D01* X14816Y37425D01* X14813Y37417D01* X14804Y37391D01* X14793Y37366D01* X14780Y37343D01* X14765Y37320D01* X14748Y37299D01* X14729Y37280D01* X14708Y37262D01* X14686Y37247D01* X14662Y37233D01* X14638Y37222D01* X14625Y37217D01* Y37782D01* G37* G36* Y37115D02*X14633Y37115D01* X14641Y37117D01* X14676Y37129D01* X14708Y37144D01* X14740Y37162D01* X14769Y37183D01* X14797Y37207D01* X14822Y37232D01* X14845Y37260D01* X14865Y37290D01* X14883Y37322D01* X14884Y37324D01* Y35711D01* X14882Y35715D01* X14861Y35744D01* X14837Y35772D01* X14812Y35797D01* X14784Y35820D01* X14754Y35840D01* X14722Y35858D01* X14689Y35873D01* X14655Y35884D01* X14646Y35886D01* X14637Y35886D01* X14629Y35885D01* X14625Y35883D01* Y37115D01* G37* G36* Y35789D02*X14627Y35788D01* X14653Y35779D01* X14678Y35768D01* X14701Y35755D01* X14724Y35740D01* X14745Y35723D01* X14764Y35704D01* X14782Y35683D01* X14797Y35661D01* X14811Y35637D01* X14822Y35613D01* X14831Y35587D01* X14835Y35579D01* X14839Y35572D01* X14845Y35565D01* X14852Y35560D01* X14860Y35556D01* X14868Y35553D01* X14877Y35552D01* X14884Y35552D01* Y35453D01* X14877Y35453D01* X14869Y35452D01* X14861Y35449D01* X14853Y35445D01* X14846Y35439D01* X14840Y35433D01* X14836Y35425D01* X14833Y35417D01* X14824Y35391D01* X14813Y35366D01* X14800Y35343D01* X14785Y35320D01* X14768Y35299D01* X14749Y35280D01* X14728Y35262D01* X14706Y35247D01* X14682Y35233D01* X14658Y35222D01* X14632Y35213D01* X14625Y35210D01* Y35789D01* G37* G36* Y35120D02*X14627Y35119D01* X14636Y35116D01* X14644Y35115D01* X14653Y35115D01* X14661Y35117D01* X14696Y35129D01* X14728Y35144D01* X14760Y35162D01* X14789Y35183D01* X14817Y35207D01* X14842Y35232D01* X14865Y35260D01* X14884Y35288D01* Y33740D01* X14881Y33744D01* X14857Y33772D01* X14832Y33797D01* X14804Y33820D01* X14774Y33840D01* X14742Y33858D01* X14709Y33873D01* X14675Y33884D01* X14666Y33886D01* X14657Y33886D01* X14649Y33885D01* X14641Y33882D01* X14633Y33878D01* X14626Y33872D01* X14625Y33871D01* Y35120D01* G37* G36* Y33801D02*X14632Y33796D01* X14639Y33791D01* X14647Y33788D01* X14673Y33779D01* X14698Y33768D01* X14721Y33755D01* X14744Y33740D01* X14765Y33723D01* X14784Y33704D01* X14802Y33683D01* X14817Y33661D01* X14831Y33637D01* X14842Y33613D01* X14851Y33587D01* X14855Y33579D01* X14859Y33572D01* X14865Y33565D01* X14872Y33560D01* X14880Y33556D01* X14884Y33555D01* Y33450D01* X14881Y33449D01* X14873Y33445D01* X14866Y33439D01* X14860Y33433D01* X14856Y33425D01* X14853Y33417D01* X14844Y33391D01* X14833Y33366D01* X14820Y33343D01* X14805Y33320D01* X14788Y33299D01* X14769Y33280D01* X14748Y33262D01* X14726Y33247D01* X14702Y33233D01* X14678Y33222D01* X14652Y33213D01* X14644Y33209D01* X14637Y33205D01* X14630Y33199D01* X14625Y33192D01* Y33801D01* G37* G36* Y33138D02*X14627Y33135D01* X14633Y33128D01* X14640Y33123D01* X14647Y33119D01* X14656Y33116D01* X14664Y33115D01* X14673Y33115D01* X14681Y33117D01* X14716Y33129D01* X14748Y33144D01* X14780Y33162D01* X14809Y33183D01* X14837Y33207D01* X14862Y33232D01* X14884Y33259D01* Y31764D01* X14877Y31772D01* X14852Y31797D01* X14824Y31820D01* X14794Y31840D01* X14762Y31858D01* X14729Y31873D01* X14695Y31884D01* X14686Y31886D01* X14677Y31886D01* X14669Y31885D01* X14661Y31882D01* X14653Y31878D01* X14646Y31872D01* X14640Y31865D01* X14636Y31858D01* X14633Y31850D01* X14631Y31841D01* X14631Y31833D01* X14632Y31824D01* X14635Y31816D01* X14639Y31808D01* X14645Y31801D01* X14652Y31796D01* X14659Y31791D01* X14667Y31788D01* X14693Y31779D01* X14718Y31768D01* X14741Y31755D01* X14764Y31740D01* X14785Y31723D01* X14804Y31704D01* X14822Y31683D01* X14837Y31661D01* X14851Y31637D01* X14862Y31613D01* X14871Y31587D01* X14875Y31579D01* X14879Y31572D01* X14884Y31567D01* Y31437D01* X14880Y31433D01* X14876Y31425D01* X14873Y31417D01* X14864Y31391D01* X14853Y31366D01* X14840Y31343D01* X14825Y31320D01* X14808Y31299D01* X14789Y31280D01* X14768Y31262D01* X14746Y31247D01* X14722Y31233D01* X14698Y31222D01* X14672Y31213D01* X14664Y31209D01* X14657Y31205D01* X14650Y31199D01* X14645Y31192D01* X14641Y31184D01* X14638Y31176D01* X14637Y31167D01* X14637Y31159D01* X14639Y31150D01* X14642Y31142D01* X14647Y31135D01* X14653Y31128D01* X14660Y31123D01* X14667Y31119D01* X14676Y31116D01* X14684Y31115D01* X14693Y31115D01* X14701Y31117D01* X14736Y31129D01* X14768Y31144D01* X14800Y31162D01* X14829Y31183D01* X14857Y31207D01* X14882Y31232D01* X14884Y31235D01* Y29785D01* X14872Y29797D01* X14844Y29820D01* X14814Y29840D01* X14782Y29858D01* X14749Y29873D01* X14715Y29884D01* X14706Y29886D01* X14697Y29886D01* X14689Y29885D01* X14681Y29882D01* X14673Y29878D01* X14666Y29872D01* X14660Y29865D01* X14656Y29858D01* X14653Y29850D01* X14651Y29841D01* X14651Y29833D01* X14652Y29824D01* X14655Y29816D01* X14659Y29808D01* X14665Y29801D01* X14672Y29796D01* X14679Y29791D01* X14687Y29788D01* X14713Y29779D01* X14738Y29768D01* X14761Y29755D01* X14784Y29740D01* X14805Y29723D01* X14824Y29704D01* X14842Y29683D01* X14857Y29661D01* X14871Y29637D01* X14882Y29613D01* X14884Y29608D01* Y29391D01* X14873Y29366D01* X14860Y29343D01* X14845Y29320D01* X14828Y29299D01* X14809Y29280D01* X14788Y29262D01* X14766Y29247D01* X14742Y29233D01* X14718Y29222D01* X14692Y29213D01* X14684Y29209D01* X14677Y29205D01* X14670Y29199D01* X14665Y29192D01* X14661Y29184D01* X14658Y29176D01* X14657Y29167D01* X14657Y29159D01* X14659Y29150D01* X14662Y29142D01* X14667Y29135D01* X14673Y29128D01* X14680Y29123D01* X14687Y29119D01* X14696Y29116D01* X14704Y29115D01* X14713Y29115D01* X14721Y29117D01* X14756Y29129D01* X14788Y29144D01* X14820Y29162D01* X14849Y29183D01* X14877Y29207D01* X14884Y29214D01* Y27804D01* X14864Y27820D01* X14834Y27840D01* X14802Y27858D01* X14769Y27873D01* X14735Y27884D01* X14726Y27886D01* X14717Y27886D01* X14709Y27885D01* X14701Y27882D01* X14693Y27878D01* X14686Y27872D01* X14680Y27865D01* X14676Y27858D01* X14673Y27850D01* X14671Y27841D01* X14671Y27833D01* X14672Y27824D01* X14675Y27816D01* X14679Y27808D01* X14685Y27801D01* X14692Y27796D01* X14699Y27791D01* X14707Y27788D01* X14733Y27779D01* X14758Y27768D01* X14781Y27755D01* X14804Y27740D01* X14825Y27723D01* X14844Y27704D01* X14862Y27683D01* X14877Y27661D01* X14884Y27650D01* Y27350D01* X14880Y27343D01* X14865Y27320D01* X14848Y27299D01* X14829Y27280D01* X14808Y27262D01* X14786Y27247D01* X14762Y27233D01* X14738Y27222D01* X14712Y27213D01* X14704Y27209D01* X14697Y27205D01* X14690Y27199D01* X14685Y27192D01* X14681Y27184D01* X14678Y27176D01* X14677Y27167D01* X14677Y27159D01* X14679Y27150D01* X14682Y27142D01* X14687Y27135D01* X14693Y27128D01* X14700Y27123D01* X14707Y27119D01* X14716Y27116D01* X14724Y27115D01* X14733Y27115D01* X14741Y27117D01* X14776Y27129D01* X14808Y27144D01* X14840Y27162D01* X14869Y27183D01* X14884Y27196D01* Y25820D01* X14884Y25820D01* X14854Y25840D01* X14822Y25858D01* X14789Y25873D01* X14755Y25884D01* X14746Y25886D01* X14737Y25886D01* X14729Y25885D01* X14721Y25882D01* X14713Y25878D01* X14706Y25872D01* X14700Y25865D01* X14696Y25858D01* X14693Y25850D01* X14691Y25841D01* X14691Y25833D01* X14692Y25824D01* X14695Y25816D01* X14699Y25808D01* X14705Y25801D01* X14712Y25796D01* X14719Y25791D01* X14727Y25788D01* X14753Y25779D01* X14778Y25768D01* X14801Y25755D01* X14824Y25740D01* X14845Y25723D01* X14864Y25704D01* X14882Y25683D01* X14884Y25680D01* Y25319D01* X14868Y25299D01* X14849Y25280D01* X14828Y25262D01* X14806Y25247D01* X14782Y25233D01* X14758Y25222D01* X14732Y25213D01* X14724Y25209D01* X14717Y25205D01* X14710Y25199D01* X14705Y25192D01* X14701Y25184D01* X14698Y25176D01* X14697Y25167D01* X14697Y25159D01* X14699Y25150D01* X14702Y25142D01* X14707Y25135D01* X14713Y25128D01* X14720Y25123D01* X14727Y25119D01* X14736Y25116D01* X14744Y25115D01* X14753Y25115D01* X14761Y25117D01* X14796Y25129D01* X14828Y25144D01* X14860Y25162D01* X14884Y25180D01* Y23834D01* X14874Y23840D01* X14842Y23858D01* X14809Y23873D01* X14775Y23884D01* X14766Y23886D01* X14757Y23886D01* X14749Y23885D01* X14741Y23882D01* X14733Y23878D01* X14726Y23872D01* X14720Y23865D01* X14716Y23858D01* X14713Y23850D01* X14711Y23841D01* X14711Y23833D01* X14712Y23824D01* X14715Y23816D01* X14719Y23808D01* X14725Y23801D01* X14732Y23796D01* X14739Y23791D01* X14747Y23788D01* X14773Y23779D01* X14798Y23768D01* X14821Y23755D01* X14844Y23740D01* X14865Y23723D01* X14884Y23704D01* Y23295D01* X14869Y23280D01* X14848Y23262D01* X14826Y23247D01* X14802Y23233D01* X14778Y23222D01* X14752Y23213D01* X14744Y23209D01* X14737Y23205D01* X14730Y23199D01* X14725Y23192D01* X14721Y23184D01* X14718Y23176D01* X14717Y23167D01* X14717Y23159D01* X14719Y23150D01* X14722Y23142D01* X14727Y23135D01* X14733Y23128D01* X14740Y23123D01* X14747Y23119D01* X14756Y23116D01* X14764Y23115D01* X14773Y23115D01* X14781Y23117D01* X14816Y23129D01* X14848Y23144D01* X14880Y23162D01* X14884Y23165D01* Y21846D01* X14862Y21858D01* X14829Y21873D01* X14795Y21884D01* X14786Y21886D01* X14777Y21886D01* X14769Y21885D01* X14761Y21882D01* X14753Y21878D01* X14746Y21872D01* X14740Y21865D01* X14736Y21858D01* X14733Y21850D01* X14731Y21841D01* X14731Y21833D01* X14732Y21824D01* X14735Y21816D01* X14739Y21808D01* X14745Y21801D01* X14752Y21796D01* X14759Y21791D01* X14767Y21788D01* X14793Y21779D01* X14818Y21768D01* X14841Y21755D01* X14864Y21740D01* X14884Y21724D01* Y21276D01* X14868Y21262D01* X14846Y21247D01* X14822Y21233D01* X14798Y21222D01* X14772Y21213D01* X14764Y21209D01* X14757Y21205D01* X14750Y21199D01* X14745Y21192D01* X14741Y21184D01* X14738Y21176D01* X14737Y21167D01* X14737Y21159D01* X14739Y21150D01* X14742Y21142D01* X14747Y21135D01* X14753Y21128D01* X14760Y21123D01* X14767Y21119D01* X14776Y21116D01* X14784Y21115D01* X14793Y21115D01* X14801Y21117D01* X14836Y21129D01* X14868Y21144D01* X14884Y21153D01* Y19857D01* X14882Y19858D01* X14849Y19873D01* X14815Y19884D01* X14806Y19886D01* X14797Y19886D01* X14789Y19885D01* X14781Y19882D01* X14773Y19878D01* X14766Y19872D01* X14760Y19865D01* X14756Y19858D01* X14753Y19850D01* X14751Y19841D01* X14751Y19833D01* X14752Y19824D01* X14755Y19816D01* X14759Y19808D01* X14765Y19801D01* X14772Y19796D01* X14779Y19791D01* X14787Y19788D01* X14813Y19779D01* X14838Y19768D01* X14861Y19755D01* X14884Y19740D01* Y19259D01* X14866Y19247D01* X14842Y19233D01* X14818Y19222D01* X14792Y19213D01* X14784Y19209D01* X14777Y19205D01* X14770Y19199D01* X14765Y19192D01* X14761Y19184D01* X14758Y19176D01* X14757Y19167D01* X14757Y19159D01* X14759Y19150D01* X14762Y19142D01* X14767Y19135D01* X14773Y19128D01* X14780Y19123D01* X14787Y19119D01* X14796Y19116D01* X14804Y19115D01* X14813Y19115D01* X14821Y19117D01* X14856Y19129D01* X14884Y19142D01* Y17866D01* X14869Y17873D01* X14835Y17884D01* X14826Y17886D01* X14817Y17886D01* X14809Y17885D01* X14801Y17882D01* X14793Y17878D01* X14786Y17872D01* X14780Y17865D01* X14776Y17858D01* X14773Y17850D01* X14771Y17841D01* X14771Y17833D01* X14772Y17824D01* X14775Y17816D01* X14779Y17808D01* X14785Y17801D01* X14792Y17796D01* X14799Y17791D01* X14807Y17788D01* X14833Y17779D01* X14858Y17768D01* X14881Y17755D01* X14884Y17754D01* Y17246D01* X14862Y17233D01* X14838Y17222D01* X14812Y17213D01* X14804Y17209D01* X14797Y17205D01* X14790Y17199D01* X14785Y17192D01* X14781Y17184D01* X14778Y17176D01* X14777Y17167D01* X14777Y17159D01* X14779Y17150D01* X14782Y17142D01* X14787Y17135D01* X14793Y17128D01* X14800Y17123D01* X14807Y17119D01* X14816Y17116D01* X14824Y17115D01* X14833Y17115D01* X14841Y17117D01* X14876Y17129D01* X14884Y17133D01* Y15874D01* X14855Y15884D01* X14846Y15886D01* X14837Y15886D01* X14829Y15885D01* X14821Y15882D01* X14813Y15878D01* X14806Y15872D01* X14800Y15865D01* X14796Y15858D01* X14793Y15850D01* X14791Y15841D01* X14791Y15833D01* X14792Y15824D01* X14795Y15816D01* X14799Y15808D01* X14805Y15801D01* X14812Y15796D01* X14819Y15791D01* X14827Y15788D01* X14853Y15779D01* X14878Y15768D01* X14884Y15765D01* Y15234D01* X14882Y15233D01* X14858Y15222D01* X14832Y15213D01* X14824Y15209D01* X14817Y15205D01* X14810Y15199D01* X14805Y15192D01* X14801Y15184D01* X14798Y15176D01* X14797Y15167D01* X14797Y15159D01* X14799Y15150D01* X14802Y15142D01* X14807Y15135D01* X14813Y15128D01* X14820Y15123D01* X14827Y15119D01* X14836Y15116D01* X14844Y15115D01* X14853Y15115D01* X14861Y15117D01* X14884Y15125D01* Y13881D01* X14875Y13884D01* X14866Y13886D01* X14857Y13886D01* X14849Y13885D01* X14841Y13882D01* X14833Y13878D01* X14826Y13872D01* X14820Y13865D01* X14816Y13858D01* X14813Y13850D01* X14811Y13841D01* X14811Y13833D01* X14812Y13824D01* X14815Y13816D01* X14819Y13808D01* X14825Y13801D01* X14832Y13796D01* X14839Y13791D01* X14847Y13788D01* X14873Y13779D01* X14884Y13774D01* Y13225D01* X14878Y13222D01* X14852Y13213D01* X14844Y13209D01* X14837Y13205D01* X14830Y13199D01* X14825Y13192D01* X14821Y13184D01* X14818Y13176D01* X14817Y13167D01* X14817Y13159D01* X14819Y13150D01* X14822Y13142D01* X14827Y13135D01* X14833Y13128D01* X14840Y13123D01* X14847Y13119D01* X14856Y13116D01* X14864Y13115D01* X14873Y13115D01* X14881Y13117D01* X14884Y13118D01* Y11886D01* X14877Y11886D01* X14869Y11885D01* X14861Y11882D01* X14853Y11878D01* X14846Y11872D01* X14840Y11865D01* X14836Y11858D01* X14833Y11850D01* X14831Y11841D01* X14831Y11833D01* X14832Y11824D01* X14835Y11816D01* X14839Y11808D01* X14845Y11801D01* X14852Y11796D01* X14859Y11791D01* X14867Y11788D01* X14884Y11782D01* Y11217D01* X14872Y11213D01* X14864Y11209D01* X14857Y11205D01* X14850Y11199D01* X14845Y11192D01* X14841Y11184D01* X14838Y11176D01* X14837Y11167D01* X14837Y11159D01* X14839Y11150D01* X14842Y11142D01* X14847Y11135D01* X14853Y11128D01* X14860Y11123D01* X14867Y11119D01* X14876Y11116D01* X14884Y11115D01* Y9883D01* X14881Y9882D01* X14873Y9878D01* X14866Y9872D01* X14860Y9865D01* X14856Y9858D01* X14853Y9850D01* X14851Y9841D01* X14851Y9833D01* X14852Y9824D01* X14855Y9816D01* X14859Y9808D01* X14865Y9801D01* X14872Y9796D01* X14879Y9791D01* X14884Y9789D01* Y9209D01* X14877Y9205D01* X14870Y9199D01* X14865Y9192D01* X14861Y9184D01* X14858Y9176D01* X14857Y9167D01* X14857Y9159D01* X14859Y9150D01* X14862Y9142D01* X14867Y9135D01* X14873Y9128D01* X14880Y9123D01* X14884Y9121D01* Y7870D01* X14880Y7865D01* X14876Y7858D01* X14873Y7850D01* X14871Y7841D01* X14871Y7833D01* X14872Y7824D01* X14875Y7816D01* X14879Y7808D01* X14884Y7802D01* Y7190D01* X14881Y7184D01* X14878Y7176D01* X14877Y7167D01* X14877Y7159D01* X14879Y7150D01* X14882Y7142D01* X14884Y7140D01* Y0D01* X14625D01* Y1196D01* X14645Y1179D01* X14675Y1159D01* X14707Y1141D01* X14740Y1127D01* X14774Y1115D01* X14783Y1113D01* X14792Y1113D01* X14800Y1115D01* X14808Y1117D01* X14816Y1122D01* X14823Y1127D01* X14829Y1134D01* X14833Y1141D01* X14836Y1149D01* X14838Y1158D01* X14838Y1167D01* X14837Y1175D01* X14834Y1183D01* X14830Y1191D01* X14824Y1198D01* X14817Y1204D01* X14810Y1208D01* X14802Y1211D01* X14776Y1220D01* X14751Y1231D01* X14728Y1244D01* X14705Y1259D01* X14684Y1276D01* X14665Y1295D01* X14647Y1316D01* X14632Y1338D01* X14625Y1349D01* Y1650D01* X14629Y1657D01* X14644Y1679D01* X14661Y1700D01* X14680Y1719D01* X14701Y1737D01* X14723Y1752D01* X14747Y1766D01* X14771Y1777D01* X14797Y1786D01* X14805Y1790D01* X14812Y1794D01* X14819Y1800D01* X14824Y1807D01* X14828Y1815D01* X14831Y1823D01* X14832Y1832D01* X14832Y1840D01* X14830Y1849D01* X14827Y1857D01* X14822Y1864D01* X14816Y1871D01* X14809Y1876D01* X14802Y1880D01* X14793Y1883D01* X14785Y1884D01* X14776Y1884D01* X14768Y1882D01* X14733Y1870D01* X14701Y1855D01* X14669Y1837D01* X14640Y1816D01* X14625Y1804D01* Y3179D01* X14625Y3179D01* X14655Y3159D01* X14687Y3141D01* X14720Y3127D01* X14754Y3115D01* X14763Y3113D01* X14772Y3113D01* X14780Y3115D01* X14788Y3117D01* X14796Y3122D01* X14803Y3127D01* X14809Y3134D01* X14813Y3141D01* X14816Y3149D01* X14818Y3158D01* X14818Y3167D01* X14817Y3175D01* X14814Y3183D01* X14810Y3191D01* X14804Y3198D01* X14797Y3204D01* X14790Y3208D01* X14782Y3211D01* X14756Y3220D01* X14731Y3231D01* X14708Y3244D01* X14685Y3259D01* X14664Y3276D01* X14645Y3295D01* X14627Y3316D01* X14625Y3319D01* Y3680D01* X14641Y3700D01* X14660Y3719D01* X14681Y3737D01* X14703Y3752D01* X14727Y3766D01* X14751Y3777D01* X14777Y3786D01* X14785Y3790D01* X14792Y3794D01* X14799Y3800D01* X14804Y3807D01* X14808Y3815D01* X14811Y3823D01* X14812Y3832D01* X14812Y3840D01* X14810Y3849D01* X14807Y3857D01* X14802Y3864D01* X14796Y3871D01* X14789Y3876D01* X14782Y3880D01* X14773Y3883D01* X14765Y3884D01* X14756Y3884D01* X14748Y3882D01* X14713Y3870D01* X14681Y3855D01* X14649Y3837D01* X14625Y3820D01* Y5166D01* X14635Y5159D01* X14667Y5141D01* X14700Y5127D01* X14734Y5115D01* X14743Y5113D01* X14752Y5113D01* X14760Y5115D01* X14768Y5117D01* X14776Y5122D01* X14783Y5127D01* X14789Y5134D01* X14793Y5141D01* X14796Y5149D01* X14798Y5158D01* X14798Y5167D01* X14797Y5175D01* X14794Y5183D01* X14790Y5191D01* X14784Y5198D01* X14777Y5204D01* X14770Y5208D01* X14762Y5211D01* X14736Y5220D01* X14711Y5231D01* X14688Y5244D01* X14665Y5259D01* X14644Y5276D01* X14625Y5295D01* Y5704D01* X14640Y5719D01* X14661Y5737D01* X14683Y5752D01* X14707Y5766D01* X14731Y5777D01* X14757Y5786D01* X14765Y5790D01* X14772Y5794D01* X14779Y5800D01* X14784Y5807D01* X14788Y5815D01* X14791Y5823D01* X14792Y5832D01* X14792Y5840D01* X14790Y5849D01* X14787Y5857D01* X14782Y5864D01* X14776Y5871D01* X14769Y5876D01* X14762Y5880D01* X14753Y5883D01* X14745Y5884D01* X14736Y5884D01* X14728Y5882D01* X14693Y5870D01* X14661Y5855D01* X14629Y5837D01* X14625Y5834D01* Y7153D01* X14647Y7141D01* X14680Y7127D01* X14714Y7115D01* X14723Y7113D01* X14732Y7113D01* X14740Y7115D01* X14748Y7117D01* X14756Y7122D01* X14763Y7127D01* X14769Y7134D01* X14773Y7141D01* X14776Y7149D01* X14778Y7158D01* X14778Y7167D01* X14777Y7175D01* X14774Y7183D01* X14770Y7191D01* X14764Y7198D01* X14757Y7204D01* X14750Y7208D01* X14742Y7211D01* X14716Y7220D01* X14691Y7231D01* X14668Y7244D01* X14645Y7259D01* X14625Y7276D01* Y7723D01* X14641Y7737D01* X14663Y7752D01* X14687Y7766D01* X14711Y7777D01* X14737Y7786D01* X14745Y7790D01* X14752Y7794D01* X14759Y7800D01* X14764Y7807D01* X14768Y7815D01* X14771Y7823D01* X14772Y7832D01* X14772Y7840D01* X14770Y7849D01* X14767Y7857D01* X14762Y7864D01* X14756Y7871D01* X14749Y7876D01* X14742Y7880D01* X14733Y7883D01* X14725Y7884D01* X14716Y7884D01* X14708Y7882D01* X14673Y7870D01* X14641Y7855D01* X14625Y7846D01* Y9142D01* X14627Y9141D01* X14660Y9127D01* X14694Y9115D01* X14703Y9113D01* X14712Y9113D01* X14720Y9115D01* X14728Y9117D01* X14736Y9122D01* X14743Y9127D01* X14749Y9134D01* X14753Y9141D01* X14756Y9149D01* X14758Y9158D01* X14758Y9167D01* X14757Y9175D01* X14754Y9183D01* X14750Y9191D01* X14744Y9198D01* X14737Y9204D01* X14730Y9208D01* X14722Y9211D01* X14696Y9220D01* X14671Y9231D01* X14648Y9244D01* X14625Y9259D01* Y9740D01* X14643Y9752D01* X14667Y9766D01* X14691Y9777D01* X14717Y9786D01* X14725Y9790D01* X14732Y9794D01* X14739Y9800D01* X14744Y9807D01* X14748Y9815D01* X14751Y9823D01* X14752Y9832D01* X14752Y9840D01* X14750Y9849D01* X14747Y9857D01* X14742Y9864D01* X14736Y9871D01* X14729Y9876D01* X14722Y9880D01* X14713Y9883D01* X14705Y9884D01* X14696Y9884D01* X14688Y9882D01* X14653Y9870D01* X14625Y9857D01* Y11133D01* X14640Y11127D01* X14674Y11115D01* X14683Y11113D01* X14692Y11113D01* X14700Y11115D01* X14708Y11117D01* X14716Y11122D01* X14723Y11127D01* X14729Y11134D01* X14733Y11141D01* X14736Y11149D01* X14738Y11158D01* X14738Y11167D01* X14737Y11175D01* X14734Y11183D01* X14730Y11191D01* X14724Y11198D01* X14717Y11204D01* X14710Y11208D01* X14702Y11211D01* X14676Y11220D01* X14651Y11231D01* X14628Y11244D01* X14625Y11246D01* Y11754D01* X14647Y11766D01* X14671Y11777D01* X14697Y11786D01* X14705Y11790D01* X14712Y11794D01* X14719Y11800D01* X14724Y11807D01* X14728Y11815D01* X14731Y11823D01* X14732Y11832D01* X14732Y11840D01* X14730Y11849D01* X14727Y11857D01* X14722Y11864D01* X14716Y11871D01* X14709Y11876D01* X14702Y11880D01* X14693Y11883D01* X14685Y11884D01* X14676Y11884D01* X14668Y11882D01* X14633Y11870D01* X14625Y11866D01* Y13125D01* X14654Y13115D01* X14663Y13113D01* X14672Y13113D01* X14680Y13115D01* X14688Y13117D01* X14696Y13122D01* X14703Y13127D01* X14709Y13134D01* X14713Y13141D01* X14716Y13149D01* X14718Y13158D01* X14718Y13167D01* X14717Y13175D01* X14714Y13183D01* X14710Y13191D01* X14704Y13198D01* X14697Y13204D01* X14690Y13208D01* X14682Y13211D01* X14656Y13220D01* X14631Y13231D01* X14625Y13234D01* Y13765D01* X14627Y13766D01* X14651Y13777D01* X14677Y13786D01* X14685Y13790D01* X14692Y13794D01* X14699Y13800D01* X14704Y13807D01* X14708Y13815D01* X14711Y13823D01* X14712Y13832D01* X14712Y13840D01* X14710Y13849D01* X14707Y13857D01* X14702Y13864D01* X14696Y13871D01* X14689Y13876D01* X14682Y13880D01* X14673Y13883D01* X14665Y13884D01* X14656Y13884D01* X14648Y13882D01* X14625Y13874D01* Y15118D01* X14634Y15115D01* X14643Y15113D01* X14652Y15113D01* X14660Y15115D01* X14668Y15117D01* X14676Y15122D01* X14683Y15127D01* X14689Y15134D01* X14693Y15141D01* X14696Y15149D01* X14698Y15158D01* X14698Y15167D01* X14697Y15175D01* X14694Y15183D01* X14690Y15191D01* X14684Y15198D01* X14677Y15204D01* X14670Y15208D01* X14662Y15211D01* X14636Y15220D01* X14625Y15225D01* Y15775D01* X14631Y15777D01* X14657Y15786D01* X14665Y15790D01* X14672Y15794D01* X14679Y15800D01* X14684Y15807D01* X14688Y15815D01* X14691Y15823D01* X14692Y15832D01* X14692Y15840D01* X14690Y15849D01* X14687Y15857D01* X14682Y15864D01* X14676Y15871D01* X14669Y15876D01* X14662Y15880D01* X14653Y15883D01* X14645Y15884D01* X14636Y15884D01* X14628Y15882D01* X14625Y15881D01* Y17113D01* X14632Y17113D01* X14640Y17115D01* X14648Y17117D01* X14656Y17122D01* X14663Y17127D01* X14669Y17134D01* X14673Y17141D01* X14676Y17149D01* X14678Y17158D01* X14678Y17167D01* X14677Y17175D01* X14674Y17183D01* X14670Y17191D01* X14664Y17198D01* X14657Y17204D01* X14650Y17208D01* X14642Y17211D01* X14625Y17217D01* Y17782D01* X14637Y17786D01* X14645Y17790D01* X14652Y17794D01* X14659Y17800D01* X14664Y17807D01* X14668Y17815D01* X14671Y17823D01* X14672Y17832D01* X14672Y17840D01* X14670Y17849D01* X14667Y17857D01* X14662Y17864D01* X14656Y17871D01* X14649Y17876D01* X14642Y17880D01* X14633Y17883D01* X14625Y17884D01* Y19116D01* X14628Y19117D01* X14636Y19122D01* X14643Y19127D01* X14649Y19134D01* X14653Y19141D01* X14656Y19149D01* X14658Y19158D01* X14658Y19167D01* X14657Y19175D01* X14654Y19183D01* X14650Y19191D01* X14644Y19198D01* X14637Y19204D01* X14630Y19208D01* X14625Y19210D01* Y19790D01* X14632Y19794D01* X14639Y19800D01* X14644Y19807D01* X14648Y19815D01* X14651Y19823D01* X14652Y19832D01* X14652Y19840D01* X14650Y19849D01* X14647Y19857D01* X14642Y19864D01* X14636Y19871D01* X14629Y19876D01* X14625Y19878D01* Y21130D01* X14629Y21134D01* X14633Y21141D01* X14636Y21149D01* X14638Y21158D01* X14638Y21167D01* X14637Y21175D01* X14634Y21183D01* X14630Y21191D01* X14625Y21197D01* Y21809D01* X14628Y21815D01* X14631Y21823D01* X14632Y21832D01* X14632Y21840D01* X14630Y21849D01* X14627Y21857D01* X14625Y21859D01* Y33138D01* G37* G36* X14884Y40000D02*X15064D01* Y21625D01* X15055Y21651D01* X15040Y21683D01* X15022Y21715D01* X15001Y21744D01* X14977Y21772D01* X14952Y21797D01* X14924Y21820D01* X14894Y21840D01* X14884Y21846D01* Y23165D01* X14909Y23183D01* X14937Y23207D01* X14962Y23232D01* X14985Y23260D01* X15005Y23290D01* X15023Y23322D01* X15037Y23355D01* X15049Y23389D01* X15051Y23398D01* X15051Y23407D01* X15050Y23415D01* X15047Y23423D01* X15042Y23431D01* X15037Y23438D01* X15030Y23444D01* X15023Y23448D01* X15015Y23451D01* X15006Y23453D01* X14997Y23453D01* X14989Y23452D01* X14981Y23449D01* X14973Y23445D01* X14966Y23439D01* X14960Y23433D01* X14956Y23425D01* X14953Y23417D01* X14944Y23391D01* X14933Y23366D01* X14920Y23343D01* X14905Y23320D01* X14888Y23299D01* X14884Y23295D01* Y23704D01* X14884Y23704D01* X14902Y23683D01* X14917Y23661D01* X14931Y23637D01* X14942Y23613D01* X14951Y23587D01* X14955Y23579D01* X14959Y23572D01* X14965Y23565D01* X14972Y23560D01* X14980Y23556D01* X14988Y23553D01* X14997Y23552D01* X15005Y23552D01* X15014Y23554D01* X15022Y23557D01* X15029Y23562D01* X15036Y23568D01* X15041Y23575D01* X15045Y23582D01* X15048Y23591D01* X15049Y23599D01* X15049Y23608D01* X15047Y23617D01* X15035Y23651D01* X15020Y23683D01* X15002Y23715D01* X14981Y23744D01* X14957Y23772D01* X14932Y23797D01* X14904Y23820D01* X14884Y23834D01* Y25180D01* X14889Y25183D01* X14917Y25207D01* X14942Y25232D01* X14965Y25260D01* X14985Y25290D01* X15003Y25322D01* X15017Y25355D01* X15029Y25389D01* X15031Y25398D01* X15031Y25407D01* X15030Y25415D01* X15027Y25423D01* X15022Y25431D01* X15017Y25438D01* X15010Y25444D01* X15003Y25448D01* X14995Y25451D01* X14986Y25453D01* X14977Y25453D01* X14969Y25452D01* X14961Y25449D01* X14953Y25445D01* X14946Y25439D01* X14940Y25433D01* X14936Y25425D01* X14933Y25417D01* X14924Y25391D01* X14913Y25366D01* X14900Y25343D01* X14885Y25320D01* X14884Y25319D01* Y25680D01* X14897Y25661D01* X14911Y25637D01* X14922Y25613D01* X14931Y25587D01* X14935Y25579D01* X14939Y25572D01* X14945Y25565D01* X14952Y25560D01* X14960Y25556D01* X14968Y25553D01* X14977Y25552D01* X14985Y25552D01* X14994Y25554D01* X15002Y25557D01* X15009Y25562D01* X15016Y25568D01* X15021Y25575D01* X15025Y25582D01* X15028Y25591D01* X15029Y25599D01* X15029Y25608D01* X15027Y25617D01* X15015Y25651D01* X15000Y25683D01* X14982Y25715D01* X14961Y25744D01* X14937Y25772D01* X14912Y25797D01* X14884Y25820D01* Y27196D01* X14897Y27207D01* X14922Y27232D01* X14945Y27260D01* X14965Y27290D01* X14983Y27322D01* X14997Y27355D01* X15009Y27389D01* X15011Y27398D01* X15011Y27407D01* X15010Y27415D01* X15007Y27423D01* X15002Y27431D01* X14997Y27438D01* X14990Y27444D01* X14983Y27448D01* X14975Y27451D01* X14966Y27453D01* X14957Y27453D01* X14949Y27452D01* X14941Y27449D01* X14933Y27445D01* X14926Y27439D01* X14920Y27433D01* X14916Y27425D01* X14913Y27417D01* X14904Y27391D01* X14893Y27366D01* X14884Y27350D01* Y27650D01* X14891Y27637D01* X14902Y27613D01* X14911Y27587D01* X14915Y27579D01* X14919Y27572D01* X14925Y27565D01* X14932Y27560D01* X14940Y27556D01* X14948Y27553D01* X14957Y27552D01* X14965Y27552D01* X14974Y27554D01* X14982Y27557D01* X14989Y27562D01* X14996Y27568D01* X15001Y27575D01* X15005Y27582D01* X15008Y27591D01* X15009Y27599D01* X15009Y27608D01* X15007Y27617D01* X14995Y27651D01* X14980Y27683D01* X14962Y27715D01* X14941Y27744D01* X14917Y27772D01* X14892Y27797D01* X14884Y27804D01* Y29214D01* X14902Y29232D01* X14925Y29260D01* X14945Y29290D01* X14963Y29322D01* X14977Y29355D01* X14989Y29389D01* X14991Y29398D01* X14991Y29407D01* X14990Y29415D01* X14987Y29423D01* X14982Y29431D01* X14977Y29438D01* X14970Y29444D01* X14963Y29448D01* X14955Y29451D01* X14946Y29453D01* X14937Y29453D01* X14929Y29452D01* X14921Y29449D01* X14913Y29445D01* X14906Y29439D01* X14900Y29433D01* X14896Y29425D01* X14893Y29417D01* X14884Y29391D01* X14884Y29391D01* Y29608D01* X14891Y29587D01* X14895Y29579D01* X14899Y29572D01* X14905Y29565D01* X14912Y29560D01* X14920Y29556D01* X14928Y29553D01* X14937Y29552D01* X14945Y29552D01* X14954Y29554D01* X14962Y29557D01* X14969Y29562D01* X14976Y29568D01* X14981Y29575D01* X14985Y29582D01* X14988Y29591D01* X14989Y29599D01* X14989Y29608D01* X14987Y29617D01* X14975Y29651D01* X14960Y29683D01* X14942Y29715D01* X14921Y29744D01* X14897Y29772D01* X14884Y29785D01* Y31235D01* X14905Y31260D01* X14925Y31290D01* X14943Y31322D01* X14957Y31355D01* X14969Y31389D01* X14971Y31398D01* X14971Y31407D01* X14970Y31415D01* X14967Y31423D01* X14962Y31431D01* X14957Y31438D01* X14950Y31444D01* X14943Y31448D01* X14935Y31451D01* X14926Y31453D01* X14917Y31453D01* X14909Y31452D01* X14901Y31449D01* X14893Y31445D01* X14886Y31439D01* X14884Y31437D01* Y31567D01* X14885Y31565D01* X14892Y31560D01* X14900Y31556D01* X14908Y31553D01* X14917Y31552D01* X14925Y31552D01* X14934Y31554D01* X14942Y31557D01* X14949Y31562D01* X14956Y31568D01* X14961Y31575D01* X14965Y31582D01* X14968Y31591D01* X14969Y31599D01* X14969Y31608D01* X14967Y31617D01* X14955Y31651D01* X14940Y31683D01* X14922Y31715D01* X14901Y31744D01* X14884Y31764D01* Y33259D01* X14885Y33260D01* X14905Y33290D01* X14923Y33322D01* X14937Y33355D01* X14949Y33389D01* X14951Y33398D01* X14951Y33407D01* X14950Y33415D01* X14947Y33423D01* X14942Y33431D01* X14937Y33438D01* X14930Y33444D01* X14923Y33448D01* X14915Y33451D01* X14906Y33453D01* X14897Y33453D01* X14889Y33452D01* X14884Y33450D01* Y33555D01* X14888Y33553D01* X14897Y33552D01* X14905Y33552D01* X14914Y33554D01* X14922Y33557D01* X14929Y33562D01* X14936Y33568D01* X14941Y33575D01* X14945Y33582D01* X14948Y33591D01* X14949Y33599D01* X14949Y33608D01* X14947Y33617D01* X14935Y33651D01* X14920Y33683D01* X14902Y33715D01* X14884Y33740D01* Y35288D01* X14885Y35290D01* X14903Y35322D01* X14917Y35355D01* X14929Y35389D01* X14931Y35398D01* X14931Y35407D01* X14930Y35415D01* X14927Y35423D01* X14922Y35431D01* X14917Y35438D01* X14910Y35444D01* X14903Y35448D01* X14895Y35451D01* X14886Y35453D01* X14884D01* Y35552D01* X14885D01* X14894Y35554D01* X14902Y35557D01* X14909Y35562D01* X14916Y35568D01* X14921Y35575D01* X14925Y35582D01* X14928Y35591D01* X14929Y35599D01* X14929Y35608D01* X14927Y35617D01* X14915Y35651D01* X14900Y35683D01* X14884Y35711D01* Y37324D01* X14897Y37355D01* X14909Y37389D01* X14911Y37398D01* X14911Y37407D01* X14910Y37415D01* X14907Y37423D01* X14902Y37431D01* X14897Y37438D01* X14890Y37444D01* X14884Y37447D01* Y37559D01* X14889Y37562D01* X14896Y37568D01* X14901Y37575D01* X14905Y37582D01* X14908Y37591D01* X14909Y37599D01* X14909Y37608D01* X14907Y37617D01* X14895Y37651D01* X14884Y37674D01* Y39374D01* X14889Y39389D01* X14891Y39398D01* X14891Y39407D01* X14890Y39415D01* X14887Y39423D01* X14884Y39428D01* Y39580D01* X14885Y39582D01* X14888Y39591D01* X14889Y39599D01* X14889Y39608D01* X14887Y39617D01* X14884Y39625D01* Y40000D01* G37* G36* X15064Y0D02*X14884D01* Y7140D01* X14887Y7135D01* X14893Y7128D01* X14900Y7123D01* X14907Y7119D01* X14916Y7116D01* X14924Y7115D01* X14933Y7115D01* X14941Y7117D01* X14976Y7129D01* X15008Y7144D01* X15040Y7162D01* X15064Y7180D01* Y5834D01* X15054Y5840D01* X15022Y5858D01* X14989Y5873D01* X14955Y5884D01* X14946Y5886D01* X14937Y5886D01* X14929Y5885D01* X14921Y5882D01* X14913Y5878D01* X14906Y5872D01* X14900Y5865D01* X14896Y5858D01* X14893Y5850D01* X14891Y5841D01* X14891Y5833D01* X14892Y5824D01* X14895Y5816D01* X14899Y5808D01* X14905Y5801D01* X14912Y5796D01* X14919Y5791D01* X14927Y5788D01* X14953Y5779D01* X14978Y5768D01* X15001Y5755D01* X15024Y5740D01* X15045Y5723D01* X15064Y5704D01* Y5295D01* X15049Y5280D01* X15028Y5262D01* X15006Y5247D01* X14982Y5233D01* X14958Y5222D01* X14932Y5213D01* X14924Y5209D01* X14917Y5205D01* X14910Y5199D01* X14905Y5192D01* X14901Y5184D01* X14898Y5176D01* X14897Y5167D01* X14897Y5159D01* X14899Y5150D01* X14902Y5142D01* X14907Y5135D01* X14913Y5128D01* X14920Y5123D01* X14927Y5119D01* X14936Y5116D01* X14944Y5115D01* X14953Y5115D01* X14961Y5117D01* X14996Y5129D01* X15028Y5144D01* X15060Y5162D01* X15064Y5165D01* Y3846D01* X15042Y3858D01* X15009Y3873D01* X14975Y3884D01* X14966Y3886D01* X14957Y3886D01* X14949Y3885D01* X14941Y3882D01* X14933Y3878D01* X14926Y3872D01* X14920Y3865D01* X14916Y3858D01* X14913Y3850D01* X14911Y3841D01* X14911Y3833D01* X14912Y3824D01* X14915Y3816D01* X14919Y3808D01* X14925Y3801D01* X14932Y3796D01* X14939Y3791D01* X14947Y3788D01* X14973Y3779D01* X14998Y3768D01* X15021Y3755D01* X15044Y3740D01* X15064Y3724D01* Y3276D01* X15048Y3262D01* X15026Y3247D01* X15002Y3233D01* X14978Y3222D01* X14952Y3213D01* X14944Y3209D01* X14937Y3205D01* X14930Y3199D01* X14925Y3192D01* X14921Y3184D01* X14918Y3176D01* X14917Y3167D01* X14917Y3159D01* X14919Y3150D01* X14922Y3142D01* X14927Y3135D01* X14933Y3128D01* X14940Y3123D01* X14947Y3119D01* X14956Y3116D01* X14964Y3115D01* X14973Y3115D01* X14981Y3117D01* X15016Y3129D01* X15048Y3144D01* X15064Y3153D01* Y1857D01* X15062Y1858D01* X15029Y1873D01* X14995Y1884D01* X14986Y1886D01* X14977Y1886D01* X14969Y1885D01* X14961Y1882D01* X14953Y1878D01* X14946Y1872D01* X14940Y1865D01* X14936Y1858D01* X14933Y1850D01* X14931Y1841D01* X14931Y1833D01* X14932Y1824D01* X14935Y1816D01* X14939Y1808D01* X14945Y1801D01* X14952Y1796D01* X14959Y1791D01* X14967Y1788D01* X14993Y1779D01* X15018Y1768D01* X15041Y1755D01* X15064Y1740D01* Y1259D01* X15046Y1247D01* X15022Y1233D01* X14998Y1222D01* X14972Y1213D01* X14964Y1209D01* X14957Y1205D01* X14950Y1199D01* X14945Y1192D01* X14941Y1184D01* X14938Y1176D01* X14937Y1167D01* X14937Y1159D01* X14939Y1150D01* X14942Y1142D01* X14947Y1135D01* X14953Y1128D01* X14960Y1123D01* X14967Y1119D01* X14976Y1116D01* X14984Y1115D01* X14993Y1115D01* X15001Y1117D01* X15036Y1129D01* X15064Y1142D01* Y0D01* G37* G36* Y7319D02*X15048Y7299D01* X15029Y7280D01* X15008Y7262D01* X14986Y7247D01* X14962Y7233D01* X14938Y7222D01* X14912Y7213D01* X14904Y7209D01* X14897Y7205D01* X14890Y7199D01* X14885Y7192D01* X14884Y7190D01* Y7802D01* X14885Y7801D01* X14892Y7796D01* X14899Y7791D01* X14907Y7788D01* X14933Y7779D01* X14958Y7768D01* X14981Y7755D01* X15004Y7740D01* X15025Y7723D01* X15044Y7704D01* X15062Y7683D01* X15064Y7680D01* Y7319D01* G37* G36* Y7820D02*X15064Y7820D01* X15034Y7840D01* X15002Y7858D01* X14969Y7873D01* X14935Y7884D01* X14926Y7886D01* X14917Y7886D01* X14909Y7885D01* X14901Y7882D01* X14893Y7878D01* X14886Y7872D01* X14884Y7870D01* Y9121D01* X14887Y9119D01* X14896Y9116D01* X14904Y9115D01* X14913Y9115D01* X14921Y9117D01* X14956Y9129D01* X14988Y9144D01* X15020Y9162D01* X15049Y9183D01* X15064Y9196D01* Y7820D01* G37* G36* Y9350D02*X15060Y9343D01* X15045Y9320D01* X15028Y9299D01* X15009Y9280D01* X14988Y9262D01* X14966Y9247D01* X14942Y9233D01* X14918Y9222D01* X14892Y9213D01* X14884Y9209D01* X14884Y9209D01* Y9789D01* X14887Y9788D01* X14913Y9779D01* X14938Y9768D01* X14961Y9755D01* X14984Y9740D01* X15005Y9723D01* X15024Y9704D01* X15042Y9683D01* X15057Y9661D01* X15064Y9650D01* Y9350D01* G37* G36* Y9804D02*X15044Y9820D01* X15014Y9840D01* X14982Y9858D01* X14949Y9873D01* X14915Y9884D01* X14906Y9886D01* X14897Y9886D01* X14889Y9885D01* X14884Y9883D01* Y11115D01* X14884D01* X14893Y11115D01* X14901Y11117D01* X14936Y11129D01* X14968Y11144D01* X15000Y11162D01* X15029Y11183D01* X15057Y11207D01* X15064Y11214D01* Y9804D01* G37* G36* Y11391D02*X15053Y11366D01* X15040Y11343D01* X15025Y11320D01* X15008Y11299D01* X14989Y11280D01* X14968Y11262D01* X14946Y11247D01* X14922Y11233D01* X14898Y11222D01* X14884Y11217D01* Y11782D01* X14893Y11779D01* X14918Y11768D01* X14941Y11755D01* X14964Y11740D01* X14985Y11723D01* X15004Y11704D01* X15022Y11683D01* X15037Y11661D01* X15051Y11637D01* X15062Y11613D01* X15064Y11608D01* Y11391D01* G37* G36* Y11785D02*X15052Y11797D01* X15024Y11820D01* X14994Y11840D01* X14962Y11858D01* X14929Y11873D01* X14895Y11884D01* X14886Y11886D01* X14884D01* Y13118D01* X14916Y13129D01* X14948Y13144D01* X14980Y13162D01* X15009Y13183D01* X15037Y13207D01* X15062Y13232D01* X15064Y13235D01* Y11785D01* G37* G36* Y13437D02*X15060Y13433D01* X15056Y13425D01* X15053Y13417D01* X15044Y13391D01* X15033Y13366D01* X15020Y13343D01* X15005Y13320D01* X14988Y13299D01* X14969Y13280D01* X14948Y13262D01* X14926Y13247D01* X14902Y13233D01* X14884Y13225D01* Y13774D01* X14898Y13768D01* X14921Y13755D01* X14944Y13740D01* X14965Y13723D01* X14984Y13704D01* X15002Y13683D01* X15017Y13661D01* X15031Y13637D01* X15042Y13613D01* X15051Y13587D01* X15055Y13579D01* X15059Y13572D01* X15064Y13567D01* Y13437D01* G37* G36* Y13764D02*X15057Y13772D01* X15032Y13797D01* X15004Y13820D01* X14974Y13840D01* X14942Y13858D01* X14909Y13873D01* X14884Y13881D01* Y15125D01* X14896Y15129D01* X14928Y15144D01* X14960Y15162D01* X14989Y15183D01* X15017Y15207D01* X15042Y15232D01* X15064Y15259D01* Y13764D01* G37* G36* Y15450D02*X15061Y15449D01* X15053Y15445D01* X15046Y15439D01* X15040Y15433D01* X15036Y15425D01* X15033Y15417D01* X15024Y15391D01* X15013Y15366D01* X15000Y15343D01* X14985Y15320D01* X14968Y15299D01* X14949Y15280D01* X14928Y15262D01* X14906Y15247D01* X14884Y15234D01* Y15765D01* X14901Y15755D01* X14924Y15740D01* X14945Y15723D01* X14964Y15704D01* X14982Y15683D01* X14997Y15661D01* X15011Y15637D01* X15022Y15613D01* X15031Y15587D01* X15035Y15579D01* X15039Y15572D01* X15045Y15565D01* X15052Y15560D01* X15060Y15556D01* X15064Y15555D01* Y15450D01* G37* G36* Y15740D02*X15061Y15744D01* X15037Y15772D01* X15012Y15797D01* X14984Y15820D01* X14954Y15840D01* X14922Y15858D01* X14889Y15873D01* X14884Y15874D01* Y17133D01* X14908Y17144D01* X14940Y17162D01* X14969Y17183D01* X14997Y17207D01* X15022Y17232D01* X15045Y17260D01* X15064Y17288D01* Y15740D01* G37* G36* Y17453D02*X15057Y17453D01* X15049Y17452D01* X15041Y17449D01* X15033Y17445D01* X15026Y17439D01* X15020Y17433D01* X15016Y17425D01* X15013Y17417D01* X15004Y17391D01* X14993Y17366D01* X14980Y17343D01* X14965Y17320D01* X14948Y17299D01* X14929Y17280D01* X14908Y17262D01* X14886Y17247D01* X14884Y17246D01* Y17754D01* X14904Y17740D01* X14925Y17723D01* X14944Y17704D01* X14962Y17683D01* X14977Y17661D01* X14991Y17637D01* X15002Y17613D01* X15011Y17587D01* X15015Y17579D01* X15019Y17572D01* X15025Y17565D01* X15032Y17560D01* X15040Y17556D01* X15048Y17553D01* X15057Y17552D01* X15064Y17552D01* Y17453D01* G37* G36* Y17711D02*X15062Y17715D01* X15041Y17744D01* X15017Y17772D01* X14992Y17797D01* X14964Y17820D01* X14934Y17840D01* X14902Y17858D01* X14884Y17866D01* Y19142D01* X14888Y19144D01* X14920Y19162D01* X14949Y19183D01* X14977Y19207D01* X15002Y19232D01* X15025Y19260D01* X15045Y19290D01* X15063Y19322D01* X15064Y19324D01* Y17711D01* G37* G36* Y19447D02*X15063Y19448D01* X15055Y19451D01* X15046Y19453D01* X15037Y19453D01* X15029Y19452D01* X15021Y19449D01* X15013Y19445D01* X15006Y19439D01* X15000Y19433D01* X14996Y19425D01* X14993Y19417D01* X14984Y19391D01* X14973Y19366D01* X14960Y19343D01* X14945Y19320D01* X14928Y19299D01* X14909Y19280D01* X14888Y19262D01* X14884Y19259D01* Y19740D01* X14905Y19723D01* X14924Y19704D01* X14942Y19683D01* X14957Y19661D01* X14971Y19637D01* X14982Y19613D01* X14991Y19587D01* X14995Y19579D01* X14999Y19572D01* X15005Y19565D01* X15012Y19560D01* X15020Y19556D01* X15028Y19553D01* X15037Y19552D01* X15045Y19552D01* X15054Y19554D01* X15062Y19557D01* X15064Y19559D01* Y19447D01* G37* G36* Y19674D02*X15060Y19683D01* X15042Y19715D01* X15021Y19744D01* X14997Y19772D01* X14972Y19797D01* X14944Y19820D01* X14914Y19840D01* X14884Y19857D01* Y21153D01* X14900Y21162D01* X14929Y21183D01* X14957Y21207D01* X14982Y21232D01* X15005Y21260D01* X15025Y21290D01* X15043Y21322D01* X15057Y21355D01* X15064Y21374D01* Y19674D01* G37* G36* Y21428D02*X15062Y21431D01* X15057Y21438D01* X15050Y21444D01* X15043Y21448D01* X15035Y21451D01* X15026Y21453D01* X15017Y21453D01* X15009Y21452D01* X15001Y21449D01* X14993Y21445D01* X14986Y21439D01* X14980Y21433D01* X14976Y21425D01* X14973Y21417D01* X14964Y21391D01* X14953Y21366D01* X14940Y21343D01* X14925Y21320D01* X14908Y21299D01* X14889Y21280D01* X14884Y21276D01* Y21724D01* X14885Y21723D01* X14904Y21704D01* X14922Y21683D01* X14937Y21661D01* X14951Y21637D01* X14962Y21613D01* X14971Y21587D01* X14975Y21579D01* X14979Y21572D01* X14985Y21565D01* X14992Y21560D01* X15000Y21556D01* X15008Y21553D01* X15017Y21552D01* X15025Y21552D01* X15034Y21554D01* X15042Y21557D01* X15049Y21562D01* X15056Y21568D01* X15061Y21575D01* X15064Y21580D01* Y21428D01* G37* G36* Y40000D02*X16445D01* Y39859D01* X16442Y39864D01* X16436Y39871D01* X16429Y39876D01* X16422Y39880D01* X16413Y39883D01* X16405Y39884D01* X16396Y39884D01* X16388Y39882D01* X16353Y39870D01* X16321Y39855D01* X16289Y39837D01* X16260Y39816D01* X16232Y39793D01* X16207Y39767D01* X16184Y39739D01* X16164Y39709D01* X16146Y39677D01* X16132Y39644D01* X16120Y39610D01* X16118Y39601D01* X16118Y39593D01* X16119Y39584D01* X16122Y39576D01* X16127Y39568D01* X16132Y39561D01* X16139Y39556D01* X16146Y39551D01* X16154Y39548D01* X16163Y39546D01* X16172Y39546D01* X16180Y39547D01* X16188Y39550D01* X16196Y39555D01* X16203Y39560D01* X16209Y39567D01* X16213Y39574D01* X16216Y39582D01* X16225Y39608D01* X16236Y39633D01* X16249Y39657D01* X16264Y39679D01* X16281Y39700D01* X16300Y39719D01* X16321Y39737D01* X16343Y39752D01* X16367Y39766D01* X16391Y39777D01* X16417Y39786D01* X16425Y39790D01* X16432Y39794D01* X16439Y39800D01* X16444Y39807D01* X16445Y39809D01* Y39197D01* X16444Y39198D01* X16437Y39204D01* X16430Y39208D01* X16422Y39211D01* X16396Y39220D01* X16371Y39231D01* X16348Y39244D01* X16325Y39259D01* X16304Y39276D01* X16285Y39295D01* X16267Y39316D01* X16252Y39338D01* X16238Y39362D01* X16227Y39386D01* X16218Y39412D01* X16214Y39420D01* X16210Y39427D01* X16204Y39434D01* X16197Y39439D01* X16189Y39443D01* X16181Y39446D01* X16172Y39447D01* X16164Y39447D01* X16155Y39445D01* X16147Y39442D01* X16140Y39437D01* X16133Y39431D01* X16128Y39424D01* X16124Y39417D01* X16121Y39409D01* X16120Y39400D01* X16120Y39391D01* X16122Y39383D01* X16134Y39349D01* X16149Y39316D01* X16167Y39284D01* X16188Y39255D01* X16212Y39227D01* X16237Y39202D01* X16265Y39179D01* X16295Y39159D01* X16327Y39141D01* X16360Y39127D01* X16394Y39115D01* X16403Y39113D01* X16412Y39113D01* X16420Y39115D01* X16428Y39117D01* X16436Y39122D01* X16443Y39127D01* X16445Y39130D01* Y37878D01* X16442Y37880D01* X16433Y37883D01* X16425Y37884D01* X16416Y37884D01* X16408Y37882D01* X16373Y37870D01* X16341Y37855D01* X16309Y37837D01* X16280Y37816D01* X16252Y37793D01* X16227Y37767D01* X16204Y37739D01* X16184Y37709D01* X16166Y37677D01* X16152Y37644D01* X16140Y37610D01* X16138Y37601D01* X16138Y37593D01* X16139Y37584D01* X16142Y37576D01* X16147Y37568D01* X16152Y37561D01* X16159Y37556D01* X16166Y37551D01* X16174Y37548D01* X16183Y37546D01* X16192Y37546D01* X16200Y37547D01* X16208Y37550D01* X16216Y37555D01* X16223Y37560D01* X16229Y37567D01* X16233Y37574D01* X16236Y37582D01* X16245Y37608D01* X16256Y37633D01* X16269Y37657D01* X16284Y37679D01* X16301Y37700D01* X16320Y37719D01* X16341Y37737D01* X16363Y37752D01* X16387Y37766D01* X16411Y37777D01* X16437Y37786D01* X16445Y37790D01* X16445Y37790D01* Y37210D01* X16442Y37211D01* X16416Y37220D01* X16391Y37231D01* X16368Y37244D01* X16345Y37259D01* X16324Y37276D01* X16305Y37295D01* X16287Y37316D01* X16272Y37338D01* X16258Y37362D01* X16247Y37386D01* X16238Y37412D01* X16234Y37420D01* X16230Y37427D01* X16224Y37434D01* X16217Y37439D01* X16209Y37443D01* X16201Y37446D01* X16192Y37447D01* X16184Y37447D01* X16175Y37445D01* X16167Y37442D01* X16160Y37437D01* X16153Y37431D01* X16148Y37424D01* X16144Y37417D01* X16141Y37409D01* X16140Y37400D01* X16140Y37391D01* X16142Y37383D01* X16154Y37349D01* X16169Y37316D01* X16187Y37284D01* X16208Y37255D01* X16232Y37227D01* X16257Y37202D01* X16285Y37179D01* X16315Y37159D01* X16347Y37141D01* X16380Y37127D01* X16414Y37115D01* X16423Y37113D01* X16432Y37113D01* X16440Y37115D01* X16445Y37116D01* Y35884D01* X16445Y35884D01* X16436Y35884D01* X16428Y35882D01* X16393Y35870D01* X16361Y35855D01* X16329Y35837D01* X16300Y35816D01* X16272Y35793D01* X16247Y35767D01* X16224Y35739D01* X16204Y35709D01* X16186Y35677D01* X16172Y35644D01* X16160Y35610D01* X16158Y35601D01* X16158Y35593D01* X16159Y35584D01* X16162Y35576D01* X16167Y35568D01* X16172Y35561D01* X16179Y35556D01* X16186Y35551D01* X16194Y35548D01* X16203Y35546D01* X16212Y35546D01* X16220Y35547D01* X16228Y35550D01* X16236Y35555D01* X16243Y35560D01* X16249Y35567D01* X16253Y35574D01* X16256Y35582D01* X16265Y35608D01* X16276Y35633D01* X16289Y35657D01* X16304Y35679D01* X16321Y35700D01* X16340Y35719D01* X16361Y35737D01* X16383Y35752D01* X16407Y35766D01* X16431Y35777D01* X16445Y35782D01* Y35217D01* X16436Y35220D01* X16411Y35231D01* X16388Y35244D01* X16365Y35259D01* X16344Y35276D01* X16325Y35295D01* X16307Y35316D01* X16292Y35338D01* X16278Y35362D01* X16267Y35386D01* X16258Y35412D01* X16254Y35420D01* X16250Y35427D01* X16244Y35434D01* X16237Y35439D01* X16229Y35443D01* X16221Y35446D01* X16212Y35447D01* X16204Y35447D01* X16195Y35445D01* X16187Y35442D01* X16180Y35437D01* X16173Y35431D01* X16168Y35424D01* X16164Y35417D01* X16161Y35409D01* X16160Y35400D01* X16160Y35391D01* X16162Y35383D01* X16174Y35349D01* X16189Y35316D01* X16207Y35284D01* X16228Y35255D01* X16252Y35227D01* X16277Y35202D01* X16305Y35179D01* X16335Y35159D01* X16367Y35141D01* X16400Y35127D01* X16434Y35115D01* X16443Y35113D01* X16445D01* Y33881D01* X16413Y33870D01* X16381Y33855D01* X16349Y33837D01* X16320Y33816D01* X16292Y33793D01* X16267Y33767D01* X16244Y33739D01* X16224Y33709D01* X16206Y33677D01* X16192Y33644D01* X16180Y33610D01* X16178Y33601D01* X16178Y33593D01* X16179Y33584D01* X16182Y33576D01* X16187Y33568D01* X16192Y33561D01* X16199Y33556D01* X16206Y33551D01* X16214Y33548D01* X16223Y33546D01* X16232Y33546D01* X16240Y33547D01* X16248Y33550D01* X16256Y33555D01* X16263Y33560D01* X16269Y33567D01* X16273Y33574D01* X16276Y33582D01* X16285Y33608D01* X16296Y33633D01* X16309Y33657D01* X16324Y33679D01* X16341Y33700D01* X16360Y33719D01* X16381Y33737D01* X16403Y33752D01* X16427Y33766D01* X16445Y33775D01* Y33225D01* X16431Y33231D01* X16408Y33244D01* X16385Y33259D01* X16364Y33276D01* X16345Y33295D01* X16327Y33316D01* X16312Y33338D01* X16298Y33362D01* X16287Y33386D01* X16278Y33412D01* X16274Y33420D01* X16270Y33427D01* X16264Y33434D01* X16257Y33439D01* X16249Y33443D01* X16241Y33446D01* X16232Y33447D01* X16224Y33447D01* X16215Y33445D01* X16207Y33442D01* X16200Y33437D01* X16193Y33431D01* X16188Y33424D01* X16184Y33417D01* X16181Y33409D01* X16180Y33400D01* X16180Y33391D01* X16182Y33383D01* X16194Y33349D01* X16209Y33316D01* X16227Y33284D01* X16248Y33255D01* X16272Y33227D01* X16297Y33202D01* X16325Y33179D01* X16355Y33159D01* X16387Y33141D01* X16420Y33127D01* X16445Y33118D01* Y31874D01* X16433Y31870D01* X16401Y31855D01* X16369Y31837D01* X16340Y31816D01* X16312Y31793D01* X16287Y31767D01* X16264Y31739D01* X16244Y31709D01* X16226Y31677D01* X16212Y31644D01* X16200Y31610D01* X16198Y31601D01* X16198Y31593D01* X16199Y31584D01* X16202Y31576D01* X16207Y31568D01* X16212Y31561D01* X16219Y31556D01* X16226Y31551D01* X16234Y31548D01* X16243Y31546D01* X16252Y31546D01* X16260Y31547D01* X16268Y31550D01* X16276Y31555D01* X16283Y31560D01* X16289Y31567D01* X16293Y31574D01* X16296Y31582D01* X16305Y31608D01* X16316Y31633D01* X16329Y31657D01* X16344Y31679D01* X16361Y31700D01* X16380Y31719D01* X16401Y31737D01* X16423Y31752D01* X16445Y31765D01* Y31234D01* X16428Y31244D01* X16405Y31259D01* X16384Y31276D01* X16365Y31295D01* X16347Y31316D01* X16332Y31338D01* X16318Y31362D01* X16307Y31386D01* X16298Y31412D01* X16294Y31420D01* X16290Y31427D01* X16284Y31434D01* X16277Y31439D01* X16269Y31443D01* X16261Y31446D01* X16252Y31447D01* X16244Y31447D01* X16235Y31445D01* X16227Y31442D01* X16220Y31437D01* X16213Y31431D01* X16208Y31424D01* X16204Y31417D01* X16201Y31409D01* X16200Y31400D01* X16200Y31391D01* X16202Y31383D01* X16214Y31349D01* X16229Y31316D01* X16247Y31284D01* X16268Y31255D01* X16292Y31227D01* X16317Y31202D01* X16345Y31179D01* X16375Y31159D01* X16407Y31141D01* X16440Y31127D01* X16445Y31125D01* Y29866D01* X16421Y29855D01* X16389Y29837D01* X16360Y29816D01* X16332Y29793D01* X16307Y29767D01* X16284Y29739D01* X16264Y29709D01* X16246Y29677D01* X16232Y29644D01* X16220Y29610D01* X16218Y29601D01* X16218Y29593D01* X16219Y29584D01* X16222Y29576D01* X16227Y29568D01* X16232Y29561D01* X16239Y29556D01* X16246Y29551D01* X16254Y29548D01* X16263Y29546D01* X16272Y29546D01* X16280Y29547D01* X16288Y29550D01* X16296Y29555D01* X16303Y29560D01* X16309Y29567D01* X16313Y29574D01* X16316Y29582D01* X16325Y29608D01* X16336Y29633D01* X16349Y29657D01* X16364Y29679D01* X16381Y29700D01* X16400Y29719D01* X16421Y29737D01* X16443Y29752D01* X16445Y29754D01* Y29246D01* X16425Y29259D01* X16404Y29276D01* X16385Y29295D01* X16367Y29316D01* X16352Y29338D01* X16338Y29362D01* X16327Y29386D01* X16318Y29412D01* X16314Y29420D01* X16310Y29427D01* X16304Y29434D01* X16297Y29439D01* X16289Y29443D01* X16281Y29446D01* X16272Y29447D01* X16264Y29447D01* X16255Y29445D01* X16247Y29442D01* X16240Y29437D01* X16233Y29431D01* X16228Y29424D01* X16224Y29417D01* X16221Y29409D01* X16220Y29400D01* X16220Y29391D01* X16222Y29383D01* X16234Y29349D01* X16249Y29316D01* X16267Y29284D01* X16288Y29255D01* X16312Y29227D01* X16337Y29202D01* X16365Y29179D01* X16395Y29159D01* X16427Y29141D01* X16445Y29133D01* Y27857D01* X16441Y27855D01* X16409Y27837D01* X16380Y27816D01* X16352Y27793D01* X16327Y27767D01* X16304Y27739D01* X16284Y27709D01* X16266Y27677D01* X16252Y27644D01* X16240Y27610D01* X16238Y27601D01* X16238Y27593D01* X16239Y27584D01* X16242Y27576D01* X16247Y27568D01* X16252Y27561D01* X16259Y27556D01* X16266Y27551D01* X16274Y27548D01* X16283Y27546D01* X16292Y27546D01* X16300Y27547D01* X16308Y27550D01* X16316Y27555D01* X16323Y27560D01* X16329Y27567D01* X16333Y27574D01* X16336Y27582D01* X16345Y27608D01* X16356Y27633D01* X16369Y27657D01* X16384Y27679D01* X16401Y27700D01* X16420Y27719D01* X16441Y27737D01* X16445Y27740D01* Y27259D01* X16445Y27259D01* X16424Y27276D01* X16405Y27295D01* X16387Y27316D01* X16372Y27338D01* X16358Y27362D01* X16347Y27386D01* X16338Y27412D01* X16334Y27420D01* X16330Y27427D01* X16324Y27434D01* X16317Y27439D01* X16309Y27443D01* X16301Y27446D01* X16292Y27447D01* X16284Y27447D01* X16275Y27445D01* X16267Y27442D01* X16260Y27437D01* X16253Y27431D01* X16248Y27424D01* X16244Y27417D01* X16241Y27409D01* X16240Y27400D01* X16240Y27391D01* X16242Y27383D01* X16254Y27349D01* X16269Y27316D01* X16287Y27284D01* X16308Y27255D01* X16332Y27227D01* X16357Y27202D01* X16385Y27179D01* X16415Y27159D01* X16445Y27142D01* Y25846D01* X16429Y25837D01* X16400Y25816D01* X16372Y25793D01* X16347Y25767D01* X16324Y25739D01* X16304Y25709D01* X16286Y25677D01* X16272Y25644D01* X16260Y25610D01* X16258Y25601D01* X16258Y25593D01* X16259Y25584D01* X16262Y25576D01* X16267Y25568D01* X16272Y25561D01* X16279Y25556D01* X16286Y25551D01* X16294Y25548D01* X16303Y25546D01* X16312Y25546D01* X16320Y25547D01* X16328Y25550D01* X16336Y25555D01* X16343Y25560D01* X16349Y25567D01* X16353Y25574D01* X16356Y25582D01* X16365Y25608D01* X16376Y25633D01* X16389Y25657D01* X16404Y25679D01* X16421Y25700D01* X16440Y25719D01* X16445Y25723D01* Y25276D01* X16444Y25276D01* X16425Y25295D01* X16407Y25316D01* X16392Y25338D01* X16378Y25362D01* X16367Y25386D01* X16358Y25412D01* X16354Y25420D01* X16350Y25427D01* X16344Y25434D01* X16337Y25439D01* X16329Y25443D01* X16321Y25446D01* X16312Y25447D01* X16304Y25447D01* X16295Y25445D01* X16287Y25442D01* X16280Y25437D01* X16273Y25431D01* X16268Y25424D01* X16264Y25417D01* X16261Y25409D01* X16260Y25400D01* X16260Y25391D01* X16262Y25383D01* X16274Y25349D01* X16289Y25316D01* X16307Y25284D01* X16328Y25255D01* X16352Y25227D01* X16377Y25202D01* X16405Y25179D01* X16435Y25159D01* X16445Y25153D01* Y23834D01* X16420Y23816D01* X16392Y23793D01* X16367Y23767D01* X16344Y23739D01* X16324Y23709D01* X16306Y23677D01* X16292Y23644D01* X16280Y23610D01* X16278Y23601D01* X16278Y23593D01* X16279Y23584D01* X16282Y23576D01* X16287Y23568D01* X16292Y23561D01* X16299Y23556D01* X16306Y23551D01* X16314Y23548D01* X16323Y23546D01* X16332Y23546D01* X16340Y23547D01* X16348Y23550D01* X16356Y23555D01* X16363Y23560D01* X16369Y23567D01* X16373Y23574D01* X16376Y23582D01* X16385Y23608D01* X16396Y23633D01* X16409Y23657D01* X16424Y23679D01* X16441Y23700D01* X16445Y23704D01* Y23295D01* X16445Y23295D01* X16427Y23316D01* X16412Y23338D01* X16398Y23362D01* X16387Y23386D01* X16378Y23412D01* X16374Y23420D01* X16370Y23427D01* X16364Y23434D01* X16357Y23439D01* X16349Y23443D01* X16341Y23446D01* X16332Y23447D01* X16324Y23447D01* X16315Y23445D01* X16307Y23442D01* X16300Y23437D01* X16293Y23431D01* X16288Y23424D01* X16284Y23417D01* X16281Y23409D01* X16280Y23400D01* X16280Y23391D01* X16282Y23383D01* X16294Y23349D01* X16309Y23316D01* X16327Y23284D01* X16348Y23255D01* X16372Y23227D01* X16397Y23202D01* X16425Y23179D01* X16445Y23166D01* Y21820D01* X16440Y21816D01* X16412Y21793D01* X16387Y21767D01* X16364Y21739D01* X16344Y21709D01* X16326Y21677D01* X16312Y21644D01* X16300Y21610D01* X16298Y21601D01* X16298Y21593D01* X16299Y21584D01* X16302Y21576D01* X16307Y21568D01* X16312Y21561D01* X16319Y21556D01* X16326Y21551D01* X16334Y21548D01* X16343Y21546D01* X16352Y21546D01* X16360Y21547D01* X16368Y21550D01* X16376Y21555D01* X16383Y21560D01* X16389Y21567D01* X16393Y21574D01* X16396Y21582D01* X16405Y21608D01* X16416Y21633D01* X16429Y21657D01* X16444Y21679D01* X16445Y21680D01* Y21319D01* X16432Y21338D01* X16418Y21362D01* X16407Y21386D01* X16398Y21412D01* X16394Y21420D01* X16390Y21427D01* X16384Y21434D01* X16377Y21439D01* X16369Y21443D01* X16361Y21446D01* X16352Y21447D01* X16344Y21447D01* X16335Y21445D01* X16327Y21442D01* X16320Y21437D01* X16313Y21431D01* X16308Y21424D01* X16304Y21417D01* X16301Y21409D01* X16300Y21400D01* X16300Y21391D01* X16302Y21383D01* X16314Y21349D01* X16329Y21316D01* X16347Y21284D01* X16368Y21255D01* X16392Y21227D01* X16417Y21202D01* X16445Y21179D01* Y19804D01* X16432Y19793D01* X16407Y19767D01* X16384Y19739D01* X16364Y19709D01* X16346Y19677D01* X16332Y19644D01* X16320Y19610D01* X16318Y19601D01* X16318Y19593D01* X16319Y19584D01* X16322Y19576D01* X16327Y19568D01* X16332Y19561D01* X16339Y19556D01* X16346Y19551D01* X16354Y19548D01* X16363Y19546D01* X16372Y19546D01* X16380Y19547D01* X16388Y19550D01* X16396Y19555D01* X16403Y19560D01* X16409Y19567D01* X16413Y19574D01* X16416Y19582D01* X16425Y19608D01* X16436Y19633D01* X16445Y19650D01* Y19349D01* X16438Y19362D01* X16427Y19386D01* X16418Y19412D01* X16414Y19420D01* X16410Y19427D01* X16404Y19434D01* X16397Y19439D01* X16389Y19443D01* X16381Y19446D01* X16372Y19447D01* X16364Y19447D01* X16355Y19445D01* X16347Y19442D01* X16340Y19437D01* X16333Y19431D01* X16328Y19424D01* X16324Y19417D01* X16321Y19409D01* X16320Y19400D01* X16320Y19391D01* X16322Y19383D01* X16334Y19349D01* X16349Y19316D01* X16367Y19284D01* X16388Y19255D01* X16412Y19227D01* X16437Y19202D01* X16445Y19196D01* Y17785D01* X16427Y17767D01* X16404Y17739D01* X16384Y17709D01* X16366Y17677D01* X16352Y17644D01* X16340Y17610D01* X16338Y17601D01* X16338Y17593D01* X16339Y17584D01* X16342Y17576D01* X16347Y17568D01* X16352Y17561D01* X16359Y17556D01* X16366Y17551D01* X16374Y17548D01* X16383Y17546D01* X16392Y17546D01* X16400Y17547D01* X16408Y17550D01* X16416Y17555D01* X16423Y17560D01* X16429Y17567D01* X16433Y17574D01* X16436Y17582D01* X16445Y17608D01* X16445Y17609D01* Y17391D01* X16438Y17412D01* X16434Y17420D01* X16430Y17427D01* X16424Y17434D01* X16417Y17439D01* X16409Y17443D01* X16401Y17446D01* X16392Y17447D01* X16384Y17447D01* X16375Y17445D01* X16367Y17442D01* X16360Y17437D01* X16353Y17431D01* X16348Y17424D01* X16344Y17417D01* X16341Y17409D01* X16340Y17400D01* X16340Y17391D01* X16342Y17383D01* X16354Y17349D01* X16369Y17316D01* X16387Y17284D01* X16408Y17255D01* X16432Y17227D01* X16445Y17214D01* Y15765D01* X16424Y15739D01* X16404Y15709D01* X16386Y15677D01* X16372Y15644D01* X16360Y15610D01* X16358Y15601D01* X16358Y15593D01* X16359Y15584D01* X16362Y15576D01* X16367Y15568D01* X16372Y15561D01* X16379Y15556D01* X16386Y15551D01* X16394Y15548D01* X16403Y15546D01* X16412Y15546D01* X16420Y15547D01* X16428Y15550D01* X16436Y15555D01* X16443Y15560D01* X16445Y15563D01* Y15432D01* X16444Y15434D01* X16437Y15439D01* X16429Y15443D01* X16421Y15446D01* X16412Y15447D01* X16404Y15447D01* X16395Y15445D01* X16387Y15442D01* X16380Y15437D01* X16373Y15431D01* X16368Y15424D01* X16364Y15417D01* X16361Y15409D01* X16360Y15400D01* X16360Y15391D01* X16362Y15383D01* X16374Y15349D01* X16389Y15316D01* X16407Y15284D01* X16428Y15255D01* X16445Y15235D01* Y13740D01* X16444Y13739D01* X16424Y13709D01* X16406Y13677D01* X16392Y13644D01* X16380Y13610D01* X16378Y13601D01* X16378Y13593D01* X16379Y13584D01* X16382Y13576D01* X16387Y13568D01* X16392Y13561D01* X16399Y13556D01* X16406Y13551D01* X16414Y13548D01* X16423Y13546D01* X16432Y13546D01* X16440Y13547D01* X16445Y13549D01* Y13445D01* X16441Y13446D01* X16432Y13447D01* X16424Y13447D01* X16415Y13445D01* X16407Y13442D01* X16400Y13437D01* X16393Y13431D01* X16388Y13424D01* X16384Y13417D01* X16381Y13409D01* X16380Y13400D01* X16380Y13391D01* X16382Y13383D01* X16394Y13349D01* X16409Y13316D01* X16427Y13284D01* X16445Y13259D01* Y11711D01* X16444Y11709D01* X16426Y11677D01* X16412Y11644D01* X16400Y11610D01* X16398Y11601D01* X16398Y11593D01* X16399Y11584D01* X16402Y11576D01* X16407Y11568D01* X16412Y11561D01* X16419Y11556D01* X16426Y11551D01* X16434Y11548D01* X16443Y11546D01* X16445D01* Y11447D01* X16444Y11447D01* X16435Y11445D01* X16427Y11442D01* X16420Y11437D01* X16413Y11431D01* X16408Y11424D01* X16404Y11417D01* X16401Y11409D01* X16400Y11400D01* X16400Y11391D01* X16402Y11383D01* X16414Y11349D01* X16429Y11316D01* X16445Y11288D01* Y9675D01* X16432Y9644D01* X16420Y9610D01* X16418Y9601D01* X16418Y9593D01* X16419Y9584D01* X16422Y9576D01* X16427Y9568D01* X16432Y9561D01* X16439Y9556D01* X16445Y9552D01* Y9441D01* X16440Y9437D01* X16433Y9431D01* X16428Y9424D01* X16424Y9417D01* X16421Y9409D01* X16420Y9400D01* X16420Y9391D01* X16422Y9383D01* X16434Y9349D01* X16445Y9325D01* Y7625D01* X16440Y7610D01* X16438Y7601D01* X16438Y7593D01* X16439Y7584D01* X16442Y7576D01* X16445Y7571D01* Y7419D01* X16444Y7417D01* X16441Y7409D01* X16440Y7400D01* X16440Y7391D01* X16442Y7383D01* X16445Y7374D01* Y0D01* X15064D01* Y1142D01* X15068Y1144D01* X15100Y1162D01* X15129Y1183D01* X15157Y1207D01* X15182Y1232D01* X15205Y1260D01* X15225Y1290D01* X15243Y1322D01* X15257Y1355D01* X15269Y1389D01* X15271Y1398D01* X15271Y1407D01* X15270Y1415D01* X15267Y1423D01* X15262Y1431D01* X15257Y1438D01* X15250Y1444D01* X15243Y1448D01* X15235Y1451D01* X15226Y1453D01* X15217Y1453D01* X15209Y1452D01* X15201Y1449D01* X15193Y1445D01* X15186Y1439D01* X15180Y1433D01* X15176Y1425D01* X15173Y1417D01* X15164Y1391D01* X15153Y1366D01* X15140Y1343D01* X15125Y1320D01* X15108Y1299D01* X15089Y1280D01* X15068Y1262D01* X15064Y1259D01* Y1740D01* X15085Y1723D01* X15104Y1704D01* X15122Y1683D01* X15137Y1661D01* X15151Y1637D01* X15162Y1613D01* X15171Y1587D01* X15175Y1579D01* X15179Y1572D01* X15185Y1565D01* X15192Y1560D01* X15200Y1556D01* X15208Y1553D01* X15217Y1552D01* X15225Y1552D01* X15234Y1554D01* X15242Y1557D01* X15249Y1562D01* X15256Y1568D01* X15261Y1575D01* X15265Y1582D01* X15268Y1591D01* X15269Y1599D01* X15269Y1608D01* X15267Y1617D01* X15255Y1651D01* X15240Y1683D01* X15222Y1715D01* X15201Y1744D01* X15177Y1772D01* X15152Y1797D01* X15124Y1820D01* X15094Y1840D01* X15064Y1857D01* Y3153D01* X15080Y3162D01* X15109Y3183D01* X15137Y3207D01* X15162Y3232D01* X15185Y3260D01* X15205Y3290D01* X15223Y3322D01* X15237Y3355D01* X15249Y3389D01* X15251Y3398D01* X15251Y3407D01* X15250Y3415D01* X15247Y3423D01* X15242Y3431D01* X15237Y3438D01* X15230Y3444D01* X15223Y3448D01* X15215Y3451D01* X15206Y3453D01* X15197Y3453D01* X15189Y3452D01* X15181Y3449D01* X15173Y3445D01* X15166Y3439D01* X15160Y3433D01* X15156Y3425D01* X15153Y3417D01* X15144Y3391D01* X15133Y3366D01* X15120Y3343D01* X15105Y3320D01* X15088Y3299D01* X15069Y3280D01* X15064Y3276D01* Y3724D01* X15065Y3723D01* X15084Y3704D01* X15102Y3683D01* X15117Y3661D01* X15131Y3637D01* X15142Y3613D01* X15151Y3587D01* X15155Y3579D01* X15159Y3572D01* X15165Y3565D01* X15172Y3560D01* X15180Y3556D01* X15188Y3553D01* X15197Y3552D01* X15205Y3552D01* X15214Y3554D01* X15222Y3557D01* X15229Y3562D01* X15236Y3568D01* X15241Y3575D01* X15245Y3582D01* X15248Y3591D01* X15249Y3599D01* X15249Y3608D01* X15247Y3617D01* X15235Y3651D01* X15220Y3683D01* X15202Y3715D01* X15181Y3744D01* X15157Y3772D01* X15132Y3797D01* X15104Y3820D01* X15074Y3840D01* X15064Y3846D01* Y5165D01* X15089Y5183D01* X15117Y5207D01* X15142Y5232D01* X15165Y5260D01* X15185Y5290D01* X15203Y5322D01* X15217Y5355D01* X15229Y5389D01* X15231Y5398D01* X15231Y5407D01* X15230Y5415D01* X15227Y5423D01* X15222Y5431D01* X15217Y5438D01* X15210Y5444D01* X15203Y5448D01* X15195Y5451D01* X15186Y5453D01* X15177Y5453D01* X15169Y5452D01* X15161Y5449D01* X15153Y5445D01* X15146Y5439D01* X15140Y5433D01* X15136Y5425D01* X15133Y5417D01* X15124Y5391D01* X15113Y5366D01* X15100Y5343D01* X15085Y5320D01* X15068Y5299D01* X15064Y5295D01* Y5704D01* X15064Y5704D01* X15082Y5683D01* X15097Y5661D01* X15111Y5637D01* X15122Y5613D01* X15131Y5587D01* X15135Y5579D01* X15139Y5572D01* X15145Y5565D01* X15152Y5560D01* X15160Y5556D01* X15168Y5553D01* X15177Y5552D01* X15185Y5552D01* X15194Y5554D01* X15202Y5557D01* X15209Y5562D01* X15216Y5568D01* X15221Y5575D01* X15225Y5582D01* X15228Y5591D01* X15229Y5599D01* X15229Y5608D01* X15227Y5617D01* X15215Y5651D01* X15200Y5683D01* X15182Y5715D01* X15161Y5744D01* X15137Y5772D01* X15112Y5797D01* X15084Y5820D01* X15064Y5834D01* Y7180D01* X15069Y7183D01* X15097Y7207D01* X15122Y7232D01* X15145Y7260D01* X15165Y7290D01* X15183Y7322D01* X15197Y7355D01* X15209Y7389D01* X15211Y7398D01* X15211Y7407D01* X15210Y7415D01* X15207Y7423D01* X15202Y7431D01* X15197Y7438D01* X15190Y7444D01* X15183Y7448D01* X15175Y7451D01* X15166Y7453D01* X15157Y7453D01* X15149Y7452D01* X15141Y7449D01* X15133Y7445D01* X15126Y7439D01* X15120Y7433D01* X15116Y7425D01* X15113Y7417D01* X15104Y7391D01* X15093Y7366D01* X15080Y7343D01* X15065Y7320D01* X15064Y7319D01* Y7680D01* X15077Y7661D01* X15091Y7637D01* X15102Y7613D01* X15111Y7587D01* X15115Y7579D01* X15119Y7572D01* X15125Y7565D01* X15132Y7560D01* X15140Y7556D01* X15148Y7553D01* X15157Y7552D01* X15165Y7552D01* X15174Y7554D01* X15182Y7557D01* X15189Y7562D01* X15196Y7568D01* X15201Y7575D01* X15205Y7582D01* X15208Y7591D01* X15209Y7599D01* X15209Y7608D01* X15207Y7617D01* X15195Y7651D01* X15180Y7683D01* X15162Y7715D01* X15141Y7744D01* X15117Y7772D01* X15092Y7797D01* X15064Y7820D01* Y9196D01* X15077Y9207D01* X15102Y9232D01* X15125Y9260D01* X15145Y9290D01* X15163Y9322D01* X15177Y9355D01* X15189Y9389D01* X15191Y9398D01* X15191Y9407D01* X15190Y9415D01* X15187Y9423D01* X15182Y9431D01* X15177Y9438D01* X15170Y9444D01* X15163Y9448D01* X15155Y9451D01* X15146Y9453D01* X15137Y9453D01* X15129Y9452D01* X15121Y9449D01* X15113Y9445D01* X15106Y9439D01* X15100Y9433D01* X15096Y9425D01* X15093Y9417D01* X15084Y9391D01* X15073Y9366D01* X15064Y9350D01* Y9650D01* X15071Y9637D01* X15082Y9613D01* X15091Y9587D01* X15095Y9579D01* X15099Y9572D01* X15105Y9565D01* X15112Y9560D01* X15120Y9556D01* X15128Y9553D01* X15137Y9552D01* X15145Y9552D01* X15154Y9554D01* X15162Y9557D01* X15169Y9562D01* X15176Y9568D01* X15181Y9575D01* X15185Y9582D01* X15188Y9591D01* X15189Y9599D01* X15189Y9608D01* X15187Y9617D01* X15175Y9651D01* X15160Y9683D01* X15142Y9715D01* X15121Y9744D01* X15097Y9772D01* X15072Y9797D01* X15064Y9804D01* Y11214D01* X15082Y11232D01* X15105Y11260D01* X15125Y11290D01* X15143Y11322D01* X15157Y11355D01* X15169Y11389D01* X15171Y11398D01* X15171Y11407D01* X15170Y11415D01* X15167Y11423D01* X15162Y11431D01* X15157Y11438D01* X15150Y11444D01* X15143Y11448D01* X15135Y11451D01* X15126Y11453D01* X15117Y11453D01* X15109Y11452D01* X15101Y11449D01* X15093Y11445D01* X15086Y11439D01* X15080Y11433D01* X15076Y11425D01* X15073Y11417D01* X15064Y11391D01* X15064Y11391D01* Y11608D01* X15071Y11587D01* X15075Y11579D01* X15079Y11572D01* X15085Y11565D01* X15092Y11560D01* X15100Y11556D01* X15108Y11553D01* X15117Y11552D01* X15125Y11552D01* X15134Y11554D01* X15142Y11557D01* X15149Y11562D01* X15156Y11568D01* X15161Y11575D01* X15165Y11582D01* X15168Y11591D01* X15169Y11599D01* X15169Y11608D01* X15167Y11617D01* X15155Y11651D01* X15140Y11683D01* X15122Y11715D01* X15101Y11744D01* X15077Y11772D01* X15064Y11785D01* Y13235D01* X15085Y13260D01* X15105Y13290D01* X15123Y13322D01* X15137Y13355D01* X15149Y13389D01* X15151Y13398D01* X15151Y13407D01* X15150Y13415D01* X15147Y13423D01* X15142Y13431D01* X15137Y13438D01* X15130Y13444D01* X15123Y13448D01* X15115Y13451D01* X15106Y13453D01* X15097Y13453D01* X15089Y13452D01* X15081Y13449D01* X15073Y13445D01* X15066Y13439D01* X15064Y13437D01* Y13567D01* X15065Y13565D01* X15072Y13560D01* X15080Y13556D01* X15088Y13553D01* X15097Y13552D01* X15105Y13552D01* X15114Y13554D01* X15122Y13557D01* X15129Y13562D01* X15136Y13568D01* X15141Y13575D01* X15145Y13582D01* X15148Y13591D01* X15149Y13599D01* X15149Y13608D01* X15147Y13617D01* X15135Y13651D01* X15120Y13683D01* X15102Y13715D01* X15081Y13744D01* X15064Y13764D01* Y15259D01* X15065Y15260D01* X15085Y15290D01* X15103Y15322D01* X15117Y15355D01* X15129Y15389D01* X15131Y15398D01* X15131Y15407D01* X15130Y15415D01* X15127Y15423D01* X15122Y15431D01* X15117Y15438D01* X15110Y15444D01* X15103Y15448D01* X15095Y15451D01* X15086Y15453D01* X15077Y15453D01* X15069Y15452D01* X15064Y15450D01* Y15555D01* X15068Y15553D01* X15077Y15552D01* X15085Y15552D01* X15094Y15554D01* X15102Y15557D01* X15109Y15562D01* X15116Y15568D01* X15121Y15575D01* X15125Y15582D01* X15128Y15591D01* X15129Y15599D01* X15129Y15608D01* X15127Y15617D01* X15115Y15651D01* X15100Y15683D01* X15082Y15715D01* X15064Y15740D01* Y17288D01* X15065Y17290D01* X15083Y17322D01* X15097Y17355D01* X15109Y17389D01* X15111Y17398D01* X15111Y17407D01* X15110Y17415D01* X15107Y17423D01* X15102Y17431D01* X15097Y17438D01* X15090Y17444D01* X15083Y17448D01* X15075Y17451D01* X15066Y17453D01* X15064D01* Y17552D01* X15065D01* X15074Y17554D01* X15082Y17557D01* X15089Y17562D01* X15096Y17568D01* X15101Y17575D01* X15105Y17582D01* X15108Y17591D01* X15109Y17599D01* X15109Y17608D01* X15107Y17617D01* X15095Y17651D01* X15080Y17683D01* X15064Y17711D01* Y19324D01* X15077Y19355D01* X15089Y19389D01* X15091Y19398D01* X15091Y19407D01* X15090Y19415D01* X15087Y19423D01* X15082Y19431D01* X15077Y19438D01* X15070Y19444D01* X15064Y19447D01* Y19559D01* X15069Y19562D01* X15076Y19568D01* X15081Y19575D01* X15085Y19582D01* X15088Y19591D01* X15089Y19599D01* X15089Y19608D01* X15087Y19617D01* X15075Y19651D01* X15064Y19674D01* Y21374D01* X15069Y21389D01* X15071Y21398D01* X15071Y21407D01* X15070Y21415D01* X15067Y21423D01* X15064Y21428D01* Y21580D01* X15065Y21582D01* X15068Y21591D01* X15069Y21599D01* X15069Y21608D01* X15067Y21617D01* X15064Y21625D01* Y40000D01* G37* G36* X16445D02*X16625D01* Y39881D01* X16615Y39884D01* X16606Y39886D01* X16597Y39886D01* X16589Y39885D01* X16581Y39882D01* X16573Y39878D01* X16566Y39872D01* X16560Y39865D01* X16556Y39858D01* X16553Y39850D01* X16551Y39841D01* X16551Y39833D01* X16552Y39824D01* X16555Y39816D01* X16559Y39808D01* X16565Y39801D01* X16572Y39796D01* X16579Y39791D01* X16587Y39788D01* X16613Y39779D01* X16625Y39774D01* Y39225D01* X16618Y39222D01* X16592Y39213D01* X16584Y39209D01* X16577Y39205D01* X16570Y39199D01* X16565Y39192D01* X16561Y39184D01* X16558Y39176D01* X16557Y39167D01* X16557Y39159D01* X16559Y39150D01* X16562Y39142D01* X16567Y39135D01* X16573Y39128D01* X16580Y39123D01* X16587Y39119D01* X16596Y39116D01* X16604Y39115D01* X16613Y39115D01* X16621Y39117D01* X16625Y39118D01* Y37886D01* X16617Y37886D01* X16609Y37885D01* X16601Y37882D01* X16593Y37878D01* X16586Y37872D01* X16580Y37865D01* X16576Y37858D01* X16573Y37850D01* X16571Y37841D01* X16571Y37833D01* X16572Y37824D01* X16575Y37816D01* X16579Y37808D01* X16585Y37801D01* X16592Y37796D01* X16599Y37791D01* X16607Y37788D01* X16625Y37782D01* Y37217D01* X16612Y37213D01* X16604Y37209D01* X16597Y37205D01* X16590Y37199D01* X16585Y37192D01* X16581Y37184D01* X16578Y37176D01* X16577Y37167D01* X16577Y37159D01* X16579Y37150D01* X16582Y37142D01* X16587Y37135D01* X16593Y37128D01* X16600Y37123D01* X16607Y37119D01* X16616Y37116D01* X16624Y37115D01* X16625D01* Y35883D01* X16621Y35882D01* X16613Y35878D01* X16606Y35872D01* X16600Y35865D01* X16596Y35858D01* X16593Y35850D01* X16591Y35841D01* X16591Y35833D01* X16592Y35824D01* X16595Y35816D01* X16599Y35808D01* X16605Y35801D01* X16612Y35796D01* X16619Y35791D01* X16625Y35789D01* Y35210D01* X16624Y35209D01* X16617Y35205D01* X16610Y35199D01* X16605Y35192D01* X16601Y35184D01* X16598Y35176D01* X16597Y35167D01* X16597Y35159D01* X16599Y35150D01* X16602Y35142D01* X16607Y35135D01* X16613Y35128D01* X16620Y35123D01* X16625Y35120D01* Y33871D01* X16620Y33865D01* X16616Y33858D01* X16613Y33850D01* X16611Y33841D01* X16611Y33833D01* X16612Y33824D01* X16615Y33816D01* X16619Y33808D01* X16625Y33801D01* X16625Y33801D01* Y33192D01* X16625Y33192D01* X16621Y33184D01* X16618Y33176D01* X16617Y33167D01* X16617Y33159D01* X16619Y33150D01* X16622Y33142D01* X16625Y33138D01* Y21859D01* X16622Y21864D01* X16616Y21871D01* X16609Y21876D01* X16602Y21880D01* X16593Y21883D01* X16585Y21884D01* X16576Y21884D01* X16568Y21882D01* X16533Y21870D01* X16501Y21855D01* X16469Y21837D01* X16445Y21820D01* Y23166D01* X16455Y23159D01* X16487Y23141D01* X16520Y23127D01* X16554Y23115D01* X16563Y23113D01* X16572Y23113D01* X16580Y23115D01* X16588Y23117D01* X16596Y23122D01* X16603Y23127D01* X16609Y23134D01* X16613Y23141D01* X16616Y23149D01* X16618Y23158D01* X16618Y23167D01* X16617Y23175D01* X16614Y23183D01* X16610Y23191D01* X16604Y23198D01* X16597Y23204D01* X16590Y23208D01* X16582Y23211D01* X16556Y23220D01* X16531Y23231D01* X16508Y23244D01* X16485Y23259D01* X16464Y23276D01* X16445Y23295D01* Y23704D01* X16460Y23719D01* X16481Y23737D01* X16503Y23752D01* X16527Y23766D01* X16551Y23777D01* X16577Y23786D01* X16585Y23790D01* X16592Y23794D01* X16599Y23800D01* X16604Y23807D01* X16608Y23815D01* X16611Y23823D01* X16612Y23832D01* X16612Y23840D01* X16610Y23849D01* X16607Y23857D01* X16602Y23864D01* X16596Y23871D01* X16589Y23876D01* X16582Y23880D01* X16573Y23883D01* X16565Y23884D01* X16556Y23884D01* X16548Y23882D01* X16513Y23870D01* X16481Y23855D01* X16449Y23837D01* X16445Y23834D01* Y25153D01* X16467Y25141D01* X16500Y25127D01* X16534Y25115D01* X16543Y25113D01* X16552Y25113D01* X16560Y25115D01* X16568Y25117D01* X16576Y25122D01* X16583Y25127D01* X16589Y25134D01* X16593Y25141D01* X16596Y25149D01* X16598Y25158D01* X16598Y25167D01* X16597Y25175D01* X16594Y25183D01* X16590Y25191D01* X16584Y25198D01* X16577Y25204D01* X16570Y25208D01* X16562Y25211D01* X16536Y25220D01* X16511Y25231D01* X16488Y25244D01* X16465Y25259D01* X16445Y25276D01* Y25723D01* X16461Y25737D01* X16483Y25752D01* X16507Y25766D01* X16531Y25777D01* X16557Y25786D01* X16565Y25790D01* X16572Y25794D01* X16579Y25800D01* X16584Y25807D01* X16588Y25815D01* X16591Y25823D01* X16592Y25832D01* X16592Y25840D01* X16590Y25849D01* X16587Y25857D01* X16582Y25864D01* X16576Y25871D01* X16569Y25876D01* X16562Y25880D01* X16553Y25883D01* X16545Y25884D01* X16536Y25884D01* X16528Y25882D01* X16493Y25870D01* X16461Y25855D01* X16445Y25846D01* Y27142D01* X16447Y27141D01* X16480Y27127D01* X16514Y27115D01* X16523Y27113D01* X16532Y27113D01* X16540Y27115D01* X16548Y27117D01* X16556Y27122D01* X16563Y27127D01* X16569Y27134D01* X16573Y27141D01* X16576Y27149D01* X16578Y27158D01* X16578Y27167D01* X16577Y27175D01* X16574Y27183D01* X16570Y27191D01* X16564Y27198D01* X16557Y27204D01* X16550Y27208D01* X16542Y27211D01* X16516Y27220D01* X16491Y27231D01* X16468Y27244D01* X16445Y27259D01* Y27740D01* X16463Y27752D01* X16487Y27766D01* X16511Y27777D01* X16537Y27786D01* X16545Y27790D01* X16552Y27794D01* X16559Y27800D01* X16564Y27807D01* X16568Y27815D01* X16571Y27823D01* X16572Y27832D01* X16572Y27840D01* X16570Y27849D01* X16567Y27857D01* X16562Y27864D01* X16556Y27871D01* X16549Y27876D01* X16542Y27880D01* X16533Y27883D01* X16525Y27884D01* X16516Y27884D01* X16508Y27882D01* X16473Y27870D01* X16445Y27857D01* Y29133D01* X16460Y29127D01* X16494Y29115D01* X16503Y29113D01* X16512Y29113D01* X16520Y29115D01* X16528Y29117D01* X16536Y29122D01* X16543Y29127D01* X16549Y29134D01* X16553Y29141D01* X16556Y29149D01* X16558Y29158D01* X16558Y29167D01* X16557Y29175D01* X16554Y29183D01* X16550Y29191D01* X16544Y29198D01* X16537Y29204D01* X16530Y29208D01* X16522Y29211D01* X16496Y29220D01* X16471Y29231D01* X16448Y29244D01* X16445Y29246D01* Y29754D01* X16467Y29766D01* X16491Y29777D01* X16517Y29786D01* X16525Y29790D01* X16532Y29794D01* X16539Y29800D01* X16544Y29807D01* X16548Y29815D01* X16551Y29823D01* X16552Y29832D01* X16552Y29840D01* X16550Y29849D01* X16547Y29857D01* X16542Y29864D01* X16536Y29871D01* X16529Y29876D01* X16522Y29880D01* X16513Y29883D01* X16505Y29884D01* X16496Y29884D01* X16488Y29882D01* X16453Y29870D01* X16445Y29866D01* Y31125D01* X16474Y31115D01* X16483Y31113D01* X16492Y31113D01* X16500Y31115D01* X16508Y31117D01* X16516Y31122D01* X16523Y31127D01* X16529Y31134D01* X16533Y31141D01* X16536Y31149D01* X16538Y31158D01* X16538Y31167D01* X16537Y31175D01* X16534Y31183D01* X16530Y31191D01* X16524Y31198D01* X16517Y31204D01* X16510Y31208D01* X16502Y31211D01* X16476Y31220D01* X16451Y31231D01* X16445Y31234D01* Y31765D01* X16447Y31766D01* X16471Y31777D01* X16497Y31786D01* X16505Y31790D01* X16512Y31794D01* X16519Y31800D01* X16524Y31807D01* X16528Y31815D01* X16531Y31823D01* X16532Y31832D01* X16532Y31840D01* X16530Y31849D01* X16527Y31857D01* X16522Y31864D01* X16516Y31871D01* X16509Y31876D01* X16502Y31880D01* X16493Y31883D01* X16485Y31884D01* X16476Y31884D01* X16468Y31882D01* X16445Y31874D01* Y33118D01* X16454Y33115D01* X16463Y33113D01* X16472Y33113D01* X16480Y33115D01* X16488Y33117D01* X16496Y33122D01* X16503Y33127D01* X16509Y33134D01* X16513Y33141D01* X16516Y33149D01* X16518Y33158D01* X16518Y33167D01* X16517Y33175D01* X16514Y33183D01* X16510Y33191D01* X16504Y33198D01* X16497Y33204D01* X16490Y33208D01* X16482Y33211D01* X16456Y33220D01* X16445Y33225D01* Y33775D01* X16451Y33777D01* X16477Y33786D01* X16485Y33790D01* X16492Y33794D01* X16499Y33800D01* X16504Y33807D01* X16508Y33815D01* X16511Y33823D01* X16512Y33832D01* X16512Y33840D01* X16510Y33849D01* X16507Y33857D01* X16502Y33864D01* X16496Y33871D01* X16489Y33876D01* X16482Y33880D01* X16473Y33883D01* X16465Y33884D01* X16456Y33884D01* X16448Y33882D01* X16445Y33881D01* Y35113D01* X16452Y35113D01* X16460Y35115D01* X16468Y35117D01* X16476Y35122D01* X16483Y35127D01* X16489Y35134D01* X16493Y35141D01* X16496Y35149D01* X16498Y35158D01* X16498Y35167D01* X16497Y35175D01* X16494Y35183D01* X16490Y35191D01* X16484Y35198D01* X16477Y35204D01* X16470Y35208D01* X16462Y35211D01* X16445Y35217D01* Y35782D01* X16457Y35786D01* X16465Y35790D01* X16472Y35794D01* X16479Y35800D01* X16484Y35807D01* X16488Y35815D01* X16491Y35823D01* X16492Y35832D01* X16492Y35840D01* X16490Y35849D01* X16487Y35857D01* X16482Y35864D01* X16476Y35871D01* X16469Y35876D01* X16462Y35880D01* X16453Y35883D01* X16445Y35884D01* Y37116D01* X16448Y37117D01* X16456Y37122D01* X16463Y37127D01* X16469Y37134D01* X16473Y37141D01* X16476Y37149D01* X16478Y37158D01* X16478Y37167D01* X16477Y37175D01* X16474Y37183D01* X16470Y37191D01* X16464Y37198D01* X16457Y37204D01* X16450Y37208D01* X16445Y37210D01* Y37790D01* X16452Y37794D01* X16459Y37800D01* X16464Y37807D01* X16468Y37815D01* X16471Y37823D01* X16472Y37832D01* X16472Y37840D01* X16470Y37849D01* X16467Y37857D01* X16462Y37864D01* X16456Y37871D01* X16449Y37876D01* X16445Y37878D01* Y39130D01* X16449Y39134D01* X16453Y39141D01* X16456Y39149D01* X16458Y39158D01* X16458Y39167D01* X16457Y39175D01* X16454Y39183D01* X16450Y39191D01* X16445Y39197D01* Y39809D01* X16448Y39815D01* X16451Y39823D01* X16452Y39832D01* X16452Y39840D01* X16450Y39849D01* X16447Y39857D01* X16445Y39859D01* Y40000D01* G37* G36* X16625Y0D02*X16445D01* Y7374D01* X16454Y7349D01* X16469Y7316D01* X16487Y7284D01* X16508Y7255D01* X16532Y7227D01* X16557Y7202D01* X16585Y7179D01* X16615Y7159D01* X16625Y7153D01* Y5834D01* X16600Y5816D01* X16572Y5793D01* X16547Y5767D01* X16524Y5739D01* X16504Y5709D01* X16486Y5677D01* X16472Y5644D01* X16460Y5610D01* X16458Y5601D01* X16458Y5593D01* X16459Y5584D01* X16462Y5576D01* X16467Y5568D01* X16472Y5561D01* X16479Y5556D01* X16486Y5551D01* X16494Y5548D01* X16503Y5546D01* X16512Y5546D01* X16520Y5547D01* X16528Y5550D01* X16536Y5555D01* X16543Y5560D01* X16549Y5567D01* X16553Y5574D01* X16556Y5582D01* X16565Y5608D01* X16576Y5633D01* X16589Y5657D01* X16604Y5679D01* X16621Y5700D01* X16625Y5704D01* Y5295D01* X16625Y5295D01* X16607Y5316D01* X16592Y5338D01* X16578Y5362D01* X16567Y5386D01* X16558Y5412D01* X16554Y5420D01* X16550Y5427D01* X16544Y5434D01* X16537Y5439D01* X16529Y5443D01* X16521Y5446D01* X16512Y5447D01* X16504Y5447D01* X16495Y5445D01* X16487Y5442D01* X16480Y5437D01* X16473Y5431D01* X16468Y5424D01* X16464Y5417D01* X16461Y5409D01* X16460Y5400D01* X16460Y5391D01* X16462Y5383D01* X16474Y5349D01* X16489Y5316D01* X16507Y5284D01* X16528Y5255D01* X16552Y5227D01* X16577Y5202D01* X16605Y5179D01* X16625Y5166D01* Y3820D01* X16620Y3816D01* X16592Y3793D01* X16567Y3767D01* X16544Y3739D01* X16524Y3709D01* X16506Y3677D01* X16492Y3644D01* X16480Y3610D01* X16478Y3601D01* X16478Y3593D01* X16479Y3584D01* X16482Y3576D01* X16487Y3568D01* X16492Y3561D01* X16499Y3556D01* X16506Y3551D01* X16514Y3548D01* X16523Y3546D01* X16532Y3546D01* X16540Y3547D01* X16548Y3550D01* X16556Y3555D01* X16563Y3560D01* X16569Y3567D01* X16573Y3574D01* X16576Y3582D01* X16585Y3608D01* X16596Y3633D01* X16609Y3657D01* X16624Y3679D01* X16625Y3680D01* Y3319D01* X16612Y3338D01* X16598Y3362D01* X16587Y3386D01* X16578Y3412D01* X16574Y3420D01* X16570Y3427D01* X16564Y3434D01* X16557Y3439D01* X16549Y3443D01* X16541Y3446D01* X16532Y3447D01* X16524Y3447D01* X16515Y3445D01* X16507Y3442D01* X16500Y3437D01* X16493Y3431D01* X16488Y3424D01* X16484Y3417D01* X16481Y3409D01* X16480Y3400D01* X16480Y3391D01* X16482Y3383D01* X16494Y3349D01* X16509Y3316D01* X16527Y3284D01* X16548Y3255D01* X16572Y3227D01* X16597Y3202D01* X16625Y3179D01* Y1804D01* X16612Y1793D01* X16587Y1767D01* X16564Y1739D01* X16544Y1709D01* X16526Y1677D01* X16512Y1644D01* X16500Y1610D01* X16498Y1601D01* X16498Y1593D01* X16499Y1584D01* X16502Y1576D01* X16507Y1568D01* X16512Y1561D01* X16519Y1556D01* X16526Y1551D01* X16534Y1548D01* X16543Y1546D01* X16552Y1546D01* X16560Y1547D01* X16568Y1550D01* X16576Y1555D01* X16583Y1560D01* X16589Y1567D01* X16593Y1574D01* X16596Y1582D01* X16605Y1608D01* X16616Y1633D01* X16625Y1650D01* Y1349D01* X16618Y1362D01* X16607Y1386D01* X16598Y1412D01* X16594Y1420D01* X16590Y1427D01* X16584Y1434D01* X16577Y1439D01* X16569Y1443D01* X16561Y1446D01* X16552Y1447D01* X16544Y1447D01* X16535Y1445D01* X16527Y1442D01* X16520Y1437D01* X16513Y1431D01* X16508Y1424D01* X16504Y1417D01* X16501Y1409D01* X16500Y1400D01* X16500Y1391D01* X16502Y1383D01* X16514Y1349D01* X16529Y1316D01* X16547Y1284D01* X16568Y1255D01* X16592Y1227D01* X16617Y1202D01* X16625Y1196D01* Y0D01* G37* G36* Y7276D02*X16624Y7276D01* X16605Y7295D01* X16587Y7316D01* X16572Y7338D01* X16558Y7362D01* X16547Y7386D01* X16538Y7412D01* X16534Y7420D01* X16530Y7427D01* X16524Y7434D01* X16517Y7439D01* X16509Y7443D01* X16501Y7446D01* X16492Y7447D01* X16484Y7447D01* X16475Y7445D01* X16467Y7442D01* X16460Y7437D01* X16453Y7431D01* X16448Y7424D01* X16445Y7419D01* Y7571D01* X16447Y7568D01* X16452Y7561D01* X16459Y7556D01* X16466Y7551D01* X16474Y7548D01* X16483Y7546D01* X16492Y7546D01* X16500Y7547D01* X16508Y7550D01* X16516Y7555D01* X16523Y7560D01* X16529Y7567D01* X16533Y7574D01* X16536Y7582D01* X16545Y7608D01* X16556Y7633D01* X16569Y7657D01* X16584Y7679D01* X16601Y7700D01* X16620Y7719D01* X16625Y7723D01* Y7276D01* G37* G36* Y7846D02*X16609Y7837D01* X16580Y7816D01* X16552Y7793D01* X16527Y7767D01* X16504Y7739D01* X16484Y7709D01* X16466Y7677D01* X16452Y7644D01* X16445Y7625D01* Y9325D01* X16449Y9316D01* X16467Y9284D01* X16488Y9255D01* X16512Y9227D01* X16537Y9202D01* X16565Y9179D01* X16595Y9159D01* X16625Y9142D01* Y7846D01* G37* G36* Y9259D02*X16625Y9259D01* X16604Y9276D01* X16585Y9295D01* X16567Y9316D01* X16552Y9338D01* X16538Y9362D01* X16527Y9386D01* X16518Y9412D01* X16514Y9420D01* X16510Y9427D01* X16504Y9434D01* X16497Y9439D01* X16489Y9443D01* X16481Y9446D01* X16472Y9447D01* X16464Y9447D01* X16455Y9445D01* X16447Y9442D01* X16445Y9441D01* Y9552D01* X16446Y9551D01* X16454Y9548D01* X16463Y9546D01* X16472Y9546D01* X16480Y9547D01* X16488Y9550D01* X16496Y9555D01* X16503Y9560D01* X16509Y9567D01* X16513Y9574D01* X16516Y9582D01* X16525Y9608D01* X16536Y9633D01* X16549Y9657D01* X16564Y9679D01* X16581Y9700D01* X16600Y9719D01* X16621Y9737D01* X16625Y9740D01* Y9259D01* G37* G36* Y9857D02*X16621Y9855D01* X16589Y9837D01* X16560Y9816D01* X16532Y9793D01* X16507Y9767D01* X16484Y9739D01* X16464Y9709D01* X16446Y9677D01* X16445Y9675D01* Y11288D01* X16447Y11284D01* X16468Y11255D01* X16492Y11227D01* X16517Y11202D01* X16545Y11179D01* X16575Y11159D01* X16607Y11141D01* X16625Y11133D01* Y9857D01* G37* G36* Y11246D02*X16605Y11259D01* X16584Y11276D01* X16565Y11295D01* X16547Y11316D01* X16532Y11338D01* X16518Y11362D01* X16507Y11386D01* X16498Y11412D01* X16494Y11420D01* X16490Y11427D01* X16484Y11434D01* X16477Y11439D01* X16469Y11443D01* X16461Y11446D01* X16452Y11447D01* X16445Y11447D01* Y11546D01* X16452Y11546D01* X16460Y11547D01* X16468Y11550D01* X16476Y11555D01* X16483Y11560D01* X16489Y11567D01* X16493Y11574D01* X16496Y11582D01* X16505Y11608D01* X16516Y11633D01* X16529Y11657D01* X16544Y11679D01* X16561Y11700D01* X16580Y11719D01* X16601Y11737D01* X16623Y11752D01* X16625Y11754D01* Y11246D01* G37* G36* Y11866D02*X16601Y11855D01* X16569Y11837D01* X16540Y11816D01* X16512Y11793D01* X16487Y11767D01* X16464Y11739D01* X16445Y11711D01* Y13259D01* X16448Y13255D01* X16472Y13227D01* X16497Y13202D01* X16525Y13179D01* X16555Y13159D01* X16587Y13141D01* X16620Y13127D01* X16625Y13125D01* Y11866D01* G37* G36* Y13234D02*X16608Y13244D01* X16585Y13259D01* X16564Y13276D01* X16545Y13295D01* X16527Y13316D01* X16512Y13338D01* X16498Y13362D01* X16487Y13386D01* X16478Y13412D01* X16474Y13420D01* X16470Y13427D01* X16464Y13434D01* X16457Y13439D01* X16449Y13443D01* X16445Y13445D01* Y13549D01* X16448Y13550D01* X16456Y13555D01* X16463Y13560D01* X16469Y13567D01* X16473Y13574D01* X16476Y13582D01* X16485Y13608D01* X16496Y13633D01* X16509Y13657D01* X16524Y13679D01* X16541Y13700D01* X16560Y13719D01* X16581Y13737D01* X16603Y13752D01* X16625Y13765D01* Y13234D01* G37* G36* Y13874D02*X16613Y13870D01* X16581Y13855D01* X16549Y13837D01* X16520Y13816D01* X16492Y13793D01* X16467Y13767D01* X16445Y13740D01* Y15235D01* X16452Y15227D01* X16477Y15202D01* X16505Y15179D01* X16535Y15159D01* X16567Y15141D01* X16600Y15127D01* X16625Y15118D01* Y13874D01* G37* G36* Y15225D02*X16611Y15231D01* X16588Y15244D01* X16565Y15259D01* X16544Y15276D01* X16525Y15295D01* X16507Y15316D01* X16492Y15338D01* X16478Y15362D01* X16467Y15386D01* X16458Y15412D01* X16454Y15420D01* X16450Y15427D01* X16445Y15432D01* Y15563D01* X16449Y15567D01* X16453Y15574D01* X16456Y15582D01* X16465Y15608D01* X16476Y15633D01* X16489Y15657D01* X16504Y15679D01* X16521Y15700D01* X16540Y15719D01* X16561Y15737D01* X16583Y15752D01* X16607Y15766D01* X16625Y15775D01* Y15225D01* G37* G36* Y15881D02*X16593Y15870D01* X16561Y15855D01* X16529Y15837D01* X16500Y15816D01* X16472Y15793D01* X16447Y15767D01* X16445Y15765D01* Y17214D01* X16457Y17202D01* X16485Y17179D01* X16515Y17159D01* X16547Y17141D01* X16580Y17127D01* X16614Y17115D01* X16623Y17113D01* X16625D01* Y15881D01* G37* G36* Y17217D02*X16616Y17220D01* X16591Y17231D01* X16568Y17244D01* X16545Y17259D01* X16524Y17276D01* X16505Y17295D01* X16487Y17316D01* X16472Y17338D01* X16458Y17362D01* X16447Y17386D01* X16445Y17391D01* Y17609D01* X16456Y17633D01* X16469Y17657D01* X16484Y17679D01* X16501Y17700D01* X16520Y17719D01* X16541Y17737D01* X16563Y17752D01* X16587Y17766D01* X16611Y17777D01* X16625Y17782D01* Y17217D01* G37* G36* Y17884D02*X16625Y17884D01* X16616Y17884D01* X16608Y17882D01* X16573Y17870D01* X16541Y17855D01* X16509Y17837D01* X16480Y17816D01* X16452Y17793D01* X16445Y17785D01* Y19196D01* X16465Y19179D01* X16495Y19159D01* X16527Y19141D01* X16560Y19127D01* X16594Y19115D01* X16603Y19113D01* X16612Y19113D01* X16620Y19115D01* X16625Y19116D01* Y17884D01* G37* G36* Y19210D02*X16622Y19211D01* X16596Y19220D01* X16571Y19231D01* X16548Y19244D01* X16525Y19259D01* X16504Y19276D01* X16485Y19295D01* X16467Y19316D01* X16452Y19338D01* X16445Y19349D01* Y19650D01* X16449Y19657D01* X16464Y19679D01* X16481Y19700D01* X16500Y19719D01* X16521Y19737D01* X16543Y19752D01* X16567Y19766D01* X16591Y19777D01* X16617Y19786D01* X16625Y19790D01* X16625Y19790D01* Y19210D01* G37* G36* Y19878D02*X16622Y19880D01* X16613Y19883D01* X16605Y19884D01* X16596Y19884D01* X16588Y19882D01* X16553Y19870D01* X16521Y19855D01* X16489Y19837D01* X16460Y19816D01* X16445Y19804D01* Y21179D01* X16445Y21179D01* X16475Y21159D01* X16507Y21141D01* X16540Y21127D01* X16574Y21115D01* X16583Y21113D01* X16592Y21113D01* X16600Y21115D01* X16608Y21117D01* X16616Y21122D01* X16623Y21127D01* X16625Y21130D01* Y19878D01* G37* G36* Y21197D02*X16624Y21198D01* X16617Y21204D01* X16610Y21208D01* X16602Y21211D01* X16576Y21220D01* X16551Y21231D01* X16528Y21244D01* X16505Y21259D01* X16484Y21276D01* X16465Y21295D01* X16447Y21316D01* X16445Y21319D01* Y21680D01* X16461Y21700D01* X16480Y21719D01* X16501Y21737D01* X16523Y21752D01* X16547Y21766D01* X16571Y21777D01* X16597Y21786D01* X16605Y21790D01* X16612Y21794D01* X16619Y21800D01* X16624Y21807D01* X16625Y21809D01* Y21197D01* G37* G36* Y40000D02*X16884D01* Y39625D01* X16875Y39651D01* X16860Y39683D01* X16842Y39715D01* X16821Y39744D01* X16797Y39772D01* X16772Y39797D01* X16744Y39820D01* X16714Y39840D01* X16682Y39858D01* X16649Y39873D01* X16625Y39881D01* Y40000D01* G37* G36* Y39774D02*X16638Y39768D01* X16661Y39755D01* X16684Y39740D01* X16705Y39723D01* X16724Y39704D01* X16742Y39683D01* X16757Y39661D01* X16771Y39637D01* X16782Y39613D01* X16791Y39587D01* X16795Y39579D01* X16799Y39572D01* X16805Y39565D01* X16812Y39560D01* X16820Y39556D01* X16828Y39553D01* X16837Y39552D01* X16845Y39552D01* X16854Y39554D01* X16862Y39557D01* X16869Y39562D01* X16876Y39568D01* X16881Y39575D01* X16884Y39580D01* Y39428D01* X16882Y39431D01* X16877Y39438D01* X16870Y39444D01* X16863Y39448D01* X16855Y39451D01* X16846Y39453D01* X16837Y39453D01* X16829Y39452D01* X16821Y39449D01* X16813Y39445D01* X16806Y39439D01* X16800Y39433D01* X16796Y39425D01* X16793Y39417D01* X16784Y39391D01* X16773Y39366D01* X16760Y39343D01* X16745Y39320D01* X16728Y39299D01* X16709Y39280D01* X16688Y39262D01* X16666Y39247D01* X16642Y39233D01* X16625Y39225D01* Y39774D01* G37* G36* Y39118D02*X16656Y39129D01* X16688Y39144D01* X16720Y39162D01* X16749Y39183D01* X16777Y39207D01* X16802Y39232D01* X16825Y39260D01* X16845Y39290D01* X16863Y39322D01* X16877Y39355D01* X16884Y39374D01* Y37674D01* X16880Y37683D01* X16862Y37715D01* X16841Y37744D01* X16817Y37772D01* X16792Y37797D01* X16764Y37820D01* X16734Y37840D01* X16702Y37858D01* X16669Y37873D01* X16635Y37884D01* X16626Y37886D01* X16625D01* Y39118D01* G37* G36* Y37782D02*X16633Y37779D01* X16658Y37768D01* X16681Y37755D01* X16704Y37740D01* X16725Y37723D01* X16744Y37704D01* X16762Y37683D01* X16777Y37661D01* X16791Y37637D01* X16802Y37613D01* X16811Y37587D01* X16815Y37579D01* X16819Y37572D01* X16825Y37565D01* X16832Y37560D01* X16840Y37556D01* X16848Y37553D01* X16857Y37552D01* X16865Y37552D01* X16874Y37554D01* X16882Y37557D01* X16884Y37559D01* Y37447D01* X16883Y37448D01* X16875Y37451D01* X16866Y37453D01* X16857Y37453D01* X16849Y37452D01* X16841Y37449D01* X16833Y37445D01* X16826Y37439D01* X16820Y37433D01* X16816Y37425D01* X16813Y37417D01* X16804Y37391D01* X16793Y37366D01* X16780Y37343D01* X16765Y37320D01* X16748Y37299D01* X16729Y37280D01* X16708Y37262D01* X16686Y37247D01* X16662Y37233D01* X16638Y37222D01* X16625Y37217D01* Y37782D01* G37* G36* Y37115D02*X16633Y37115D01* X16641Y37117D01* X16676Y37129D01* X16708Y37144D01* X16740Y37162D01* X16769Y37183D01* X16797Y37207D01* X16822Y37232D01* X16845Y37260D01* X16865Y37290D01* X16883Y37322D01* X16884Y37324D01* Y35711D01* X16882Y35715D01* X16861Y35744D01* X16837Y35772D01* X16812Y35797D01* X16784Y35820D01* X16754Y35840D01* X16722Y35858D01* X16689Y35873D01* X16655Y35884D01* X16646Y35886D01* X16637Y35886D01* X16629Y35885D01* X16625Y35883D01* Y37115D01* G37* G36* Y35789D02*X16627Y35788D01* X16653Y35779D01* X16678Y35768D01* X16701Y35755D01* X16724Y35740D01* X16745Y35723D01* X16764Y35704D01* X16782Y35683D01* X16797Y35661D01* X16811Y35637D01* X16822Y35613D01* X16831Y35587D01* X16835Y35579D01* X16839Y35572D01* X16845Y35565D01* X16852Y35560D01* X16860Y35556D01* X16868Y35553D01* X16877Y35552D01* X16884Y35552D01* Y35453D01* X16877Y35453D01* X16869Y35452D01* X16861Y35449D01* X16853Y35445D01* X16846Y35439D01* X16840Y35433D01* X16836Y35425D01* X16833Y35417D01* X16824Y35391D01* X16813Y35366D01* X16800Y35343D01* X16785Y35320D01* X16768Y35299D01* X16749Y35280D01* X16728Y35262D01* X16706Y35247D01* X16682Y35233D01* X16658Y35222D01* X16632Y35213D01* X16625Y35210D01* Y35789D01* G37* G36* Y35120D02*X16627Y35119D01* X16636Y35116D01* X16644Y35115D01* X16653Y35115D01* X16661Y35117D01* X16696Y35129D01* X16728Y35144D01* X16760Y35162D01* X16789Y35183D01* X16817Y35207D01* X16842Y35232D01* X16865Y35260D01* X16884Y35288D01* Y33740D01* X16881Y33744D01* X16857Y33772D01* X16832Y33797D01* X16804Y33820D01* X16774Y33840D01* X16742Y33858D01* X16709Y33873D01* X16675Y33884D01* X16666Y33886D01* X16657Y33886D01* X16649Y33885D01* X16641Y33882D01* X16633Y33878D01* X16626Y33872D01* X16625Y33871D01* Y35120D01* G37* G36* Y33801D02*X16632Y33796D01* X16639Y33791D01* X16647Y33788D01* X16673Y33779D01* X16698Y33768D01* X16721Y33755D01* X16744Y33740D01* X16765Y33723D01* X16784Y33704D01* X16802Y33683D01* X16817Y33661D01* X16831Y33637D01* X16842Y33613D01* X16851Y33587D01* X16855Y33579D01* X16859Y33572D01* X16865Y33565D01* X16872Y33560D01* X16880Y33556D01* X16884Y33555D01* Y33450D01* X16881Y33449D01* X16873Y33445D01* X16866Y33439D01* X16860Y33433D01* X16856Y33425D01* X16853Y33417D01* X16844Y33391D01* X16833Y33366D01* X16820Y33343D01* X16805Y33320D01* X16788Y33299D01* X16769Y33280D01* X16748Y33262D01* X16726Y33247D01* X16702Y33233D01* X16678Y33222D01* X16652Y33213D01* X16644Y33209D01* X16637Y33205D01* X16630Y33199D01* X16625Y33192D01* Y33801D01* G37* G36* Y33138D02*X16627Y33135D01* X16633Y33128D01* X16640Y33123D01* X16647Y33119D01* X16656Y33116D01* X16664Y33115D01* X16673Y33115D01* X16681Y33117D01* X16716Y33129D01* X16748Y33144D01* X16780Y33162D01* X16809Y33183D01* X16837Y33207D01* X16862Y33232D01* X16884Y33259D01* Y31764D01* X16877Y31772D01* X16852Y31797D01* X16824Y31820D01* X16794Y31840D01* X16762Y31858D01* X16729Y31873D01* X16695Y31884D01* X16686Y31886D01* X16677Y31886D01* X16669Y31885D01* X16661Y31882D01* X16653Y31878D01* X16646Y31872D01* X16640Y31865D01* X16636Y31858D01* X16633Y31850D01* X16631Y31841D01* X16631Y31833D01* X16632Y31824D01* X16635Y31816D01* X16639Y31808D01* X16645Y31801D01* X16652Y31796D01* X16659Y31791D01* X16667Y31788D01* X16693Y31779D01* X16718Y31768D01* X16741Y31755D01* X16764Y31740D01* X16785Y31723D01* X16804Y31704D01* X16822Y31683D01* X16837Y31661D01* X16851Y31637D01* X16862Y31613D01* X16871Y31587D01* X16875Y31579D01* X16879Y31572D01* X16884Y31567D01* Y31437D01* X16880Y31433D01* X16876Y31425D01* X16873Y31417D01* X16864Y31391D01* X16853Y31366D01* X16840Y31343D01* X16825Y31320D01* X16808Y31299D01* X16789Y31280D01* X16768Y31262D01* X16746Y31247D01* X16722Y31233D01* X16698Y31222D01* X16672Y31213D01* X16664Y31209D01* X16657Y31205D01* X16650Y31199D01* X16645Y31192D01* X16641Y31184D01* X16638Y31176D01* X16637Y31167D01* X16637Y31159D01* X16639Y31150D01* X16642Y31142D01* X16647Y31135D01* X16653Y31128D01* X16660Y31123D01* X16667Y31119D01* X16676Y31116D01* X16684Y31115D01* X16693Y31115D01* X16701Y31117D01* X16736Y31129D01* X16768Y31144D01* X16800Y31162D01* X16829Y31183D01* X16857Y31207D01* X16882Y31232D01* X16884Y31235D01* Y29785D01* X16872Y29797D01* X16844Y29820D01* X16814Y29840D01* X16782Y29858D01* X16749Y29873D01* X16715Y29884D01* X16706Y29886D01* X16697Y29886D01* X16689Y29885D01* X16681Y29882D01* X16673Y29878D01* X16666Y29872D01* X16660Y29865D01* X16656Y29858D01* X16653Y29850D01* X16651Y29841D01* X16651Y29833D01* X16652Y29824D01* X16655Y29816D01* X16659Y29808D01* X16665Y29801D01* X16672Y29796D01* X16679Y29791D01* X16687Y29788D01* X16713Y29779D01* X16738Y29768D01* X16761Y29755D01* X16784Y29740D01* X16805Y29723D01* X16824Y29704D01* X16842Y29683D01* X16857Y29661D01* X16871Y29637D01* X16882Y29613D01* X16884Y29608D01* Y29391D01* X16873Y29366D01* X16860Y29343D01* X16845Y29320D01* X16828Y29299D01* X16809Y29280D01* X16788Y29262D01* X16766Y29247D01* X16742Y29233D01* X16718Y29222D01* X16692Y29213D01* X16684Y29209D01* X16677Y29205D01* X16670Y29199D01* X16665Y29192D01* X16661Y29184D01* X16658Y29176D01* X16657Y29167D01* X16657Y29159D01* X16659Y29150D01* X16662Y29142D01* X16667Y29135D01* X16673Y29128D01* X16680Y29123D01* X16687Y29119D01* X16696Y29116D01* X16704Y29115D01* X16713Y29115D01* X16721Y29117D01* X16756Y29129D01* X16788Y29144D01* X16820Y29162D01* X16849Y29183D01* X16877Y29207D01* X16884Y29214D01* Y27804D01* X16864Y27820D01* X16834Y27840D01* X16802Y27858D01* X16769Y27873D01* X16735Y27884D01* X16726Y27886D01* X16717Y27886D01* X16709Y27885D01* X16701Y27882D01* X16693Y27878D01* X16686Y27872D01* X16680Y27865D01* X16676Y27858D01* X16673Y27850D01* X16671Y27841D01* X16671Y27833D01* X16672Y27824D01* X16675Y27816D01* X16679Y27808D01* X16685Y27801D01* X16692Y27796D01* X16699Y27791D01* X16707Y27788D01* X16733Y27779D01* X16758Y27768D01* X16781Y27755D01* X16804Y27740D01* X16825Y27723D01* X16844Y27704D01* X16862Y27683D01* X16877Y27661D01* X16884Y27650D01* Y27350D01* X16880Y27343D01* X16865Y27320D01* X16848Y27299D01* X16829Y27280D01* X16808Y27262D01* X16786Y27247D01* X16762Y27233D01* X16738Y27222D01* X16712Y27213D01* X16704Y27209D01* X16697Y27205D01* X16690Y27199D01* X16685Y27192D01* X16681Y27184D01* X16678Y27176D01* X16677Y27167D01* X16677Y27159D01* X16679Y27150D01* X16682Y27142D01* X16687Y27135D01* X16693Y27128D01* X16700Y27123D01* X16707Y27119D01* X16716Y27116D01* X16724Y27115D01* X16733Y27115D01* X16741Y27117D01* X16776Y27129D01* X16808Y27144D01* X16840Y27162D01* X16869Y27183D01* X16884Y27196D01* Y25820D01* X16884Y25820D01* X16854Y25840D01* X16822Y25858D01* X16789Y25873D01* X16755Y25884D01* X16746Y25886D01* X16737Y25886D01* X16729Y25885D01* X16721Y25882D01* X16713Y25878D01* X16706Y25872D01* X16700Y25865D01* X16696Y25858D01* X16693Y25850D01* X16691Y25841D01* X16691Y25833D01* X16692Y25824D01* X16695Y25816D01* X16699Y25808D01* X16705Y25801D01* X16712Y25796D01* X16719Y25791D01* X16727Y25788D01* X16753Y25779D01* X16778Y25768D01* X16801Y25755D01* X16824Y25740D01* X16845Y25723D01* X16864Y25704D01* X16882Y25683D01* X16884Y25680D01* Y25319D01* X16868Y25299D01* X16849Y25280D01* X16828Y25262D01* X16806Y25247D01* X16782Y25233D01* X16758Y25222D01* X16732Y25213D01* X16724Y25209D01* X16717Y25205D01* X16710Y25199D01* X16705Y25192D01* X16701Y25184D01* X16698Y25176D01* X16697Y25167D01* X16697Y25159D01* X16699Y25150D01* X16702Y25142D01* X16707Y25135D01* X16713Y25128D01* X16720Y25123D01* X16727Y25119D01* X16736Y25116D01* X16744Y25115D01* X16753Y25115D01* X16761Y25117D01* X16796Y25129D01* X16828Y25144D01* X16860Y25162D01* X16884Y25180D01* Y23834D01* X16874Y23840D01* X16842Y23858D01* X16809Y23873D01* X16775Y23884D01* X16766Y23886D01* X16757Y23886D01* X16749Y23885D01* X16741Y23882D01* X16733Y23878D01* X16726Y23872D01* X16720Y23865D01* X16716Y23858D01* X16713Y23850D01* X16711Y23841D01* X16711Y23833D01* X16712Y23824D01* X16715Y23816D01* X16719Y23808D01* X16725Y23801D01* X16732Y23796D01* X16739Y23791D01* X16747Y23788D01* X16773Y23779D01* X16798Y23768D01* X16821Y23755D01* X16844Y23740D01* X16865Y23723D01* X16884Y23704D01* Y23295D01* X16869Y23280D01* X16848Y23262D01* X16826Y23247D01* X16802Y23233D01* X16778Y23222D01* X16752Y23213D01* X16744Y23209D01* X16737Y23205D01* X16730Y23199D01* X16725Y23192D01* X16721Y23184D01* X16718Y23176D01* X16717Y23167D01* X16717Y23159D01* X16719Y23150D01* X16722Y23142D01* X16727Y23135D01* X16733Y23128D01* X16740Y23123D01* X16747Y23119D01* X16756Y23116D01* X16764Y23115D01* X16773Y23115D01* X16781Y23117D01* X16816Y23129D01* X16848Y23144D01* X16880Y23162D01* X16884Y23165D01* Y21846D01* X16862Y21858D01* X16829Y21873D01* X16795Y21884D01* X16786Y21886D01* X16777Y21886D01* X16769Y21885D01* X16761Y21882D01* X16753Y21878D01* X16746Y21872D01* X16740Y21865D01* X16736Y21858D01* X16733Y21850D01* X16731Y21841D01* X16731Y21833D01* X16732Y21824D01* X16735Y21816D01* X16739Y21808D01* X16745Y21801D01* X16752Y21796D01* X16759Y21791D01* X16767Y21788D01* X16793Y21779D01* X16818Y21768D01* X16841Y21755D01* X16864Y21740D01* X16884Y21724D01* Y21276D01* X16868Y21262D01* X16846Y21247D01* X16822Y21233D01* X16798Y21222D01* X16772Y21213D01* X16764Y21209D01* X16757Y21205D01* X16750Y21199D01* X16745Y21192D01* X16741Y21184D01* X16738Y21176D01* X16737Y21167D01* X16737Y21159D01* X16739Y21150D01* X16742Y21142D01* X16747Y21135D01* X16753Y21128D01* X16760Y21123D01* X16767Y21119D01* X16776Y21116D01* X16784Y21115D01* X16793Y21115D01* X16801Y21117D01* X16836Y21129D01* X16868Y21144D01* X16884Y21153D01* Y19857D01* X16882Y19858D01* X16849Y19873D01* X16815Y19884D01* X16806Y19886D01* X16797Y19886D01* X16789Y19885D01* X16781Y19882D01* X16773Y19878D01* X16766Y19872D01* X16760Y19865D01* X16756Y19858D01* X16753Y19850D01* X16751Y19841D01* X16751Y19833D01* X16752Y19824D01* X16755Y19816D01* X16759Y19808D01* X16765Y19801D01* X16772Y19796D01* X16779Y19791D01* X16787Y19788D01* X16813Y19779D01* X16838Y19768D01* X16861Y19755D01* X16884Y19740D01* Y19259D01* X16866Y19247D01* X16842Y19233D01* X16818Y19222D01* X16792Y19213D01* X16784Y19209D01* X16777Y19205D01* X16770Y19199D01* X16765Y19192D01* X16761Y19184D01* X16758Y19176D01* X16757Y19167D01* X16757Y19159D01* X16759Y19150D01* X16762Y19142D01* X16767Y19135D01* X16773Y19128D01* X16780Y19123D01* X16787Y19119D01* X16796Y19116D01* X16804Y19115D01* X16813Y19115D01* X16821Y19117D01* X16856Y19129D01* X16884Y19142D01* Y17866D01* X16869Y17873D01* X16835Y17884D01* X16826Y17886D01* X16817Y17886D01* X16809Y17885D01* X16801Y17882D01* X16793Y17878D01* X16786Y17872D01* X16780Y17865D01* X16776Y17858D01* X16773Y17850D01* X16771Y17841D01* X16771Y17833D01* X16772Y17824D01* X16775Y17816D01* X16779Y17808D01* X16785Y17801D01* X16792Y17796D01* X16799Y17791D01* X16807Y17788D01* X16833Y17779D01* X16858Y17768D01* X16881Y17755D01* X16884Y17754D01* Y17246D01* X16862Y17233D01* X16838Y17222D01* X16812Y17213D01* X16804Y17209D01* X16797Y17205D01* X16790Y17199D01* X16785Y17192D01* X16781Y17184D01* X16778Y17176D01* X16777Y17167D01* X16777Y17159D01* X16779Y17150D01* X16782Y17142D01* X16787Y17135D01* X16793Y17128D01* X16800Y17123D01* X16807Y17119D01* X16816Y17116D01* X16824Y17115D01* X16833Y17115D01* X16841Y17117D01* X16876Y17129D01* X16884Y17133D01* Y15874D01* X16855Y15884D01* X16846Y15886D01* X16837Y15886D01* X16829Y15885D01* X16821Y15882D01* X16813Y15878D01* X16806Y15872D01* X16800Y15865D01* X16796Y15858D01* X16793Y15850D01* X16791Y15841D01* X16791Y15833D01* X16792Y15824D01* X16795Y15816D01* X16799Y15808D01* X16805Y15801D01* X16812Y15796D01* X16819Y15791D01* X16827Y15788D01* X16853Y15779D01* X16878Y15768D01* X16884Y15765D01* Y15234D01* X16882Y15233D01* X16858Y15222D01* X16832Y15213D01* X16824Y15209D01* X16817Y15205D01* X16810Y15199D01* X16805Y15192D01* X16801Y15184D01* X16798Y15176D01* X16797Y15167D01* X16797Y15159D01* X16799Y15150D01* X16802Y15142D01* X16807Y15135D01* X16813Y15128D01* X16820Y15123D01* X16827Y15119D01* X16836Y15116D01* X16844Y15115D01* X16853Y15115D01* X16861Y15117D01* X16884Y15125D01* Y13881D01* X16875Y13884D01* X16866Y13886D01* X16857Y13886D01* X16849Y13885D01* X16841Y13882D01* X16833Y13878D01* X16826Y13872D01* X16820Y13865D01* X16816Y13858D01* X16813Y13850D01* X16811Y13841D01* X16811Y13833D01* X16812Y13824D01* X16815Y13816D01* X16819Y13808D01* X16825Y13801D01* X16832Y13796D01* X16839Y13791D01* X16847Y13788D01* X16873Y13779D01* X16884Y13774D01* Y13225D01* X16878Y13222D01* X16852Y13213D01* X16844Y13209D01* X16837Y13205D01* X16830Y13199D01* X16825Y13192D01* X16821Y13184D01* X16818Y13176D01* X16817Y13167D01* X16817Y13159D01* X16819Y13150D01* X16822Y13142D01* X16827Y13135D01* X16833Y13128D01* X16840Y13123D01* X16847Y13119D01* X16856Y13116D01* X16864Y13115D01* X16873Y13115D01* X16881Y13117D01* X16884Y13118D01* Y11886D01* X16877Y11886D01* X16869Y11885D01* X16861Y11882D01* X16853Y11878D01* X16846Y11872D01* X16840Y11865D01* X16836Y11858D01* X16833Y11850D01* X16831Y11841D01* X16831Y11833D01* X16832Y11824D01* X16835Y11816D01* X16839Y11808D01* X16845Y11801D01* X16852Y11796D01* X16859Y11791D01* X16867Y11788D01* X16884Y11782D01* Y11217D01* X16872Y11213D01* X16864Y11209D01* X16857Y11205D01* X16850Y11199D01* X16845Y11192D01* X16841Y11184D01* X16838Y11176D01* X16837Y11167D01* X16837Y11159D01* X16839Y11150D01* X16842Y11142D01* X16847Y11135D01* X16853Y11128D01* X16860Y11123D01* X16867Y11119D01* X16876Y11116D01* X16884Y11115D01* Y9883D01* X16881Y9882D01* X16873Y9878D01* X16866Y9872D01* X16860Y9865D01* X16856Y9858D01* X16853Y9850D01* X16851Y9841D01* X16851Y9833D01* X16852Y9824D01* X16855Y9816D01* X16859Y9808D01* X16865Y9801D01* X16872Y9796D01* X16879Y9791D01* X16884Y9789D01* Y9209D01* X16877Y9205D01* X16870Y9199D01* X16865Y9192D01* X16861Y9184D01* X16858Y9176D01* X16857Y9167D01* X16857Y9159D01* X16859Y9150D01* X16862Y9142D01* X16867Y9135D01* X16873Y9128D01* X16880Y9123D01* X16884Y9121D01* Y7870D01* X16880Y7865D01* X16876Y7858D01* X16873Y7850D01* X16871Y7841D01* X16871Y7833D01* X16872Y7824D01* X16875Y7816D01* X16879Y7808D01* X16884Y7802D01* Y7190D01* X16881Y7184D01* X16878Y7176D01* X16877Y7167D01* X16877Y7159D01* X16879Y7150D01* X16882Y7142D01* X16884Y7140D01* Y0D01* X16625D01* Y1196D01* X16645Y1179D01* X16675Y1159D01* X16707Y1141D01* X16740Y1127D01* X16774Y1115D01* X16783Y1113D01* X16792Y1113D01* X16800Y1115D01* X16808Y1117D01* X16816Y1122D01* X16823Y1127D01* X16829Y1134D01* X16833Y1141D01* X16836Y1149D01* X16838Y1158D01* X16838Y1167D01* X16837Y1175D01* X16834Y1183D01* X16830Y1191D01* X16824Y1198D01* X16817Y1204D01* X16810Y1208D01* X16802Y1211D01* X16776Y1220D01* X16751Y1231D01* X16728Y1244D01* X16705Y1259D01* X16684Y1276D01* X16665Y1295D01* X16647Y1316D01* X16632Y1338D01* X16625Y1349D01* Y1650D01* X16629Y1657D01* X16644Y1679D01* X16661Y1700D01* X16680Y1719D01* X16701Y1737D01* X16723Y1752D01* X16747Y1766D01* X16771Y1777D01* X16797Y1786D01* X16805Y1790D01* X16812Y1794D01* X16819Y1800D01* X16824Y1807D01* X16828Y1815D01* X16831Y1823D01* X16832Y1832D01* X16832Y1840D01* X16830Y1849D01* X16827Y1857D01* X16822Y1864D01* X16816Y1871D01* X16809Y1876D01* X16802Y1880D01* X16793Y1883D01* X16785Y1884D01* X16776Y1884D01* X16768Y1882D01* X16733Y1870D01* X16701Y1855D01* X16669Y1837D01* X16640Y1816D01* X16625Y1804D01* Y3179D01* X16625Y3179D01* X16655Y3159D01* X16687Y3141D01* X16720Y3127D01* X16754Y3115D01* X16763Y3113D01* X16772Y3113D01* X16780Y3115D01* X16788Y3117D01* X16796Y3122D01* X16803Y3127D01* X16809Y3134D01* X16813Y3141D01* X16816Y3149D01* X16818Y3158D01* X16818Y3167D01* X16817Y3175D01* X16814Y3183D01* X16810Y3191D01* X16804Y3198D01* X16797Y3204D01* X16790Y3208D01* X16782Y3211D01* X16756Y3220D01* X16731Y3231D01* X16708Y3244D01* X16685Y3259D01* X16664Y3276D01* X16645Y3295D01* X16627Y3316D01* X16625Y3319D01* Y3680D01* X16641Y3700D01* X16660Y3719D01* X16681Y3737D01* X16703Y3752D01* X16727Y3766D01* X16751Y3777D01* X16777Y3786D01* X16785Y3790D01* X16792Y3794D01* X16799Y3800D01* X16804Y3807D01* X16808Y3815D01* X16811Y3823D01* X16812Y3832D01* X16812Y3840D01* X16810Y3849D01* X16807Y3857D01* X16802Y3864D01* X16796Y3871D01* X16789Y3876D01* X16782Y3880D01* X16773Y3883D01* X16765Y3884D01* X16756Y3884D01* X16748Y3882D01* X16713Y3870D01* X16681Y3855D01* X16649Y3837D01* X16625Y3820D01* Y5166D01* X16635Y5159D01* X16667Y5141D01* X16700Y5127D01* X16734Y5115D01* X16743Y5113D01* X16752Y5113D01* X16760Y5115D01* X16768Y5117D01* X16776Y5122D01* X16783Y5127D01* X16789Y5134D01* X16793Y5141D01* X16796Y5149D01* X16798Y5158D01* X16798Y5167D01* X16797Y5175D01* X16794Y5183D01* X16790Y5191D01* X16784Y5198D01* X16777Y5204D01* X16770Y5208D01* X16762Y5211D01* X16736Y5220D01* X16711Y5231D01* X16688Y5244D01* X16665Y5259D01* X16644Y5276D01* X16625Y5295D01* Y5704D01* X16640Y5719D01* X16661Y5737D01* X16683Y5752D01* X16707Y5766D01* X16731Y5777D01* X16757Y5786D01* X16765Y5790D01* X16772Y5794D01* X16779Y5800D01* X16784Y5807D01* X16788Y5815D01* X16791Y5823D01* X16792Y5832D01* X16792Y5840D01* X16790Y5849D01* X16787Y5857D01* X16782Y5864D01* X16776Y5871D01* X16769Y5876D01* X16762Y5880D01* X16753Y5883D01* X16745Y5884D01* X16736Y5884D01* X16728Y5882D01* X16693Y5870D01* X16661Y5855D01* X16629Y5837D01* X16625Y5834D01* Y7153D01* X16647Y7141D01* X16680Y7127D01* X16714Y7115D01* X16723Y7113D01* X16732Y7113D01* X16740Y7115D01* X16748Y7117D01* X16756Y7122D01* X16763Y7127D01* X16769Y7134D01* X16773Y7141D01* X16776Y7149D01* X16778Y7158D01* X16778Y7167D01* X16777Y7175D01* X16774Y7183D01* X16770Y7191D01* X16764Y7198D01* X16757Y7204D01* X16750Y7208D01* X16742Y7211D01* X16716Y7220D01* X16691Y7231D01* X16668Y7244D01* X16645Y7259D01* X16625Y7276D01* Y7723D01* X16641Y7737D01* X16663Y7752D01* X16687Y7766D01* X16711Y7777D01* X16737Y7786D01* X16745Y7790D01* X16752Y7794D01* X16759Y7800D01* X16764Y7807D01* X16768Y7815D01* X16771Y7823D01* X16772Y7832D01* X16772Y7840D01* X16770Y7849D01* X16767Y7857D01* X16762Y7864D01* X16756Y7871D01* X16749Y7876D01* X16742Y7880D01* X16733Y7883D01* X16725Y7884D01* X16716Y7884D01* X16708Y7882D01* X16673Y7870D01* X16641Y7855D01* X16625Y7846D01* Y9142D01* X16627Y9141D01* X16660Y9127D01* X16694Y9115D01* X16703Y9113D01* X16712Y9113D01* X16720Y9115D01* X16728Y9117D01* X16736Y9122D01* X16743Y9127D01* X16749Y9134D01* X16753Y9141D01* X16756Y9149D01* X16758Y9158D01* X16758Y9167D01* X16757Y9175D01* X16754Y9183D01* X16750Y9191D01* X16744Y9198D01* X16737Y9204D01* X16730Y9208D01* X16722Y9211D01* X16696Y9220D01* X16671Y9231D01* X16648Y9244D01* X16625Y9259D01* Y9740D01* X16643Y9752D01* X16667Y9766D01* X16691Y9777D01* X16717Y9786D01* X16725Y9790D01* X16732Y9794D01* X16739Y9800D01* X16744Y9807D01* X16748Y9815D01* X16751Y9823D01* X16752Y9832D01* X16752Y9840D01* X16750Y9849D01* X16747Y9857D01* X16742Y9864D01* X16736Y9871D01* X16729Y9876D01* X16722Y9880D01* X16713Y9883D01* X16705Y9884D01* X16696Y9884D01* X16688Y9882D01* X16653Y9870D01* X16625Y9857D01* Y11133D01* X16640Y11127D01* X16674Y11115D01* X16683Y11113D01* X16692Y11113D01* X16700Y11115D01* X16708Y11117D01* X16716Y11122D01* X16723Y11127D01* X16729Y11134D01* X16733Y11141D01* X16736Y11149D01* X16738Y11158D01* X16738Y11167D01* X16737Y11175D01* X16734Y11183D01* X16730Y11191D01* X16724Y11198D01* X16717Y11204D01* X16710Y11208D01* X16702Y11211D01* X16676Y11220D01* X16651Y11231D01* X16628Y11244D01* X16625Y11246D01* Y11754D01* X16647Y11766D01* X16671Y11777D01* X16697Y11786D01* X16705Y11790D01* X16712Y11794D01* X16719Y11800D01* X16724Y11807D01* X16728Y11815D01* X16731Y11823D01* X16732Y11832D01* X16732Y11840D01* X16730Y11849D01* X16727Y11857D01* X16722Y11864D01* X16716Y11871D01* X16709Y11876D01* X16702Y11880D01* X16693Y11883D01* X16685Y11884D01* X16676Y11884D01* X16668Y11882D01* X16633Y11870D01* X16625Y11866D01* Y13125D01* X16654Y13115D01* X16663Y13113D01* X16672Y13113D01* X16680Y13115D01* X16688Y13117D01* X16696Y13122D01* X16703Y13127D01* X16709Y13134D01* X16713Y13141D01* X16716Y13149D01* X16718Y13158D01* X16718Y13167D01* X16717Y13175D01* X16714Y13183D01* X16710Y13191D01* X16704Y13198D01* X16697Y13204D01* X16690Y13208D01* X16682Y13211D01* X16656Y13220D01* X16631Y13231D01* X16625Y13234D01* Y13765D01* X16627Y13766D01* X16651Y13777D01* X16677Y13786D01* X16685Y13790D01* X16692Y13794D01* X16699Y13800D01* X16704Y13807D01* X16708Y13815D01* X16711Y13823D01* X16712Y13832D01* X16712Y13840D01* X16710Y13849D01* X16707Y13857D01* X16702Y13864D01* X16696Y13871D01* X16689Y13876D01* X16682Y13880D01* X16673Y13883D01* X16665Y13884D01* X16656Y13884D01* X16648Y13882D01* X16625Y13874D01* Y15118D01* X16634Y15115D01* X16643Y15113D01* X16652Y15113D01* X16660Y15115D01* X16668Y15117D01* X16676Y15122D01* X16683Y15127D01* X16689Y15134D01* X16693Y15141D01* X16696Y15149D01* X16698Y15158D01* X16698Y15167D01* X16697Y15175D01* X16694Y15183D01* X16690Y15191D01* X16684Y15198D01* X16677Y15204D01* X16670Y15208D01* X16662Y15211D01* X16636Y15220D01* X16625Y15225D01* Y15775D01* X16631Y15777D01* X16657Y15786D01* X16665Y15790D01* X16672Y15794D01* X16679Y15800D01* X16684Y15807D01* X16688Y15815D01* X16691Y15823D01* X16692Y15832D01* X16692Y15840D01* X16690Y15849D01* X16687Y15857D01* X16682Y15864D01* X16676Y15871D01* X16669Y15876D01* X16662Y15880D01* X16653Y15883D01* X16645Y15884D01* X16636Y15884D01* X16628Y15882D01* X16625Y15881D01* Y17113D01* X16632Y17113D01* X16640Y17115D01* X16648Y17117D01* X16656Y17122D01* X16663Y17127D01* X16669Y17134D01* X16673Y17141D01* X16676Y17149D01* X16678Y17158D01* X16678Y17167D01* X16677Y17175D01* X16674Y17183D01* X16670Y17191D01* X16664Y17198D01* X16657Y17204D01* X16650Y17208D01* X16642Y17211D01* X16625Y17217D01* Y17782D01* X16637Y17786D01* X16645Y17790D01* X16652Y17794D01* X16659Y17800D01* X16664Y17807D01* X16668Y17815D01* X16671Y17823D01* X16672Y17832D01* X16672Y17840D01* X16670Y17849D01* X16667Y17857D01* X16662Y17864D01* X16656Y17871D01* X16649Y17876D01* X16642Y17880D01* X16633Y17883D01* X16625Y17884D01* Y19116D01* X16628Y19117D01* X16636Y19122D01* X16643Y19127D01* X16649Y19134D01* X16653Y19141D01* X16656Y19149D01* X16658Y19158D01* X16658Y19167D01* X16657Y19175D01* X16654Y19183D01* X16650Y19191D01* X16644Y19198D01* X16637Y19204D01* X16630Y19208D01* X16625Y19210D01* Y19790D01* X16632Y19794D01* X16639Y19800D01* X16644Y19807D01* X16648Y19815D01* X16651Y19823D01* X16652Y19832D01* X16652Y19840D01* X16650Y19849D01* X16647Y19857D01* X16642Y19864D01* X16636Y19871D01* X16629Y19876D01* X16625Y19878D01* Y21130D01* X16629Y21134D01* X16633Y21141D01* X16636Y21149D01* X16638Y21158D01* X16638Y21167D01* X16637Y21175D01* X16634Y21183D01* X16630Y21191D01* X16625Y21197D01* Y21809D01* X16628Y21815D01* X16631Y21823D01* X16632Y21832D01* X16632Y21840D01* X16630Y21849D01* X16627Y21857D01* X16625Y21859D01* Y33138D01* G37* G36* X16884Y40000D02*X17064D01* Y21625D01* X17055Y21651D01* X17040Y21683D01* X17022Y21715D01* X17001Y21744D01* X16977Y21772D01* X16952Y21797D01* X16924Y21820D01* X16894Y21840D01* X16884Y21846D01* Y23165D01* X16909Y23183D01* X16937Y23207D01* X16962Y23232D01* X16985Y23260D01* X17005Y23290D01* X17023Y23322D01* X17037Y23355D01* X17049Y23389D01* X17051Y23398D01* X17051Y23407D01* X17050Y23415D01* X17047Y23423D01* X17042Y23431D01* X17037Y23438D01* X17030Y23444D01* X17023Y23448D01* X17015Y23451D01* X17006Y23453D01* X16997Y23453D01* X16989Y23452D01* X16981Y23449D01* X16973Y23445D01* X16966Y23439D01* X16960Y23433D01* X16956Y23425D01* X16953Y23417D01* X16944Y23391D01* X16933Y23366D01* X16920Y23343D01* X16905Y23320D01* X16888Y23299D01* X16884Y23295D01* Y23704D01* X16884Y23704D01* X16902Y23683D01* X16917Y23661D01* X16931Y23637D01* X16942Y23613D01* X16951Y23587D01* X16955Y23579D01* X16959Y23572D01* X16965Y23565D01* X16972Y23560D01* X16980Y23556D01* X16988Y23553D01* X16997Y23552D01* X17005Y23552D01* X17014Y23554D01* X17022Y23557D01* X17029Y23562D01* X17036Y23568D01* X17041Y23575D01* X17045Y23582D01* X17048Y23591D01* X17049Y23599D01* X17049Y23608D01* X17047Y23617D01* X17035Y23651D01* X17020Y23683D01* X17002Y23715D01* X16981Y23744D01* X16957Y23772D01* X16932Y23797D01* X16904Y23820D01* X16884Y23834D01* Y25180D01* X16889Y25183D01* X16917Y25207D01* X16942Y25232D01* X16965Y25260D01* X16985Y25290D01* X17003Y25322D01* X17017Y25355D01* X17029Y25389D01* X17031Y25398D01* X17031Y25407D01* X17030Y25415D01* X17027Y25423D01* X17022Y25431D01* X17017Y25438D01* X17010Y25444D01* X17003Y25448D01* X16995Y25451D01* X16986Y25453D01* X16977Y25453D01* X16969Y25452D01* X16961Y25449D01* X16953Y25445D01* X16946Y25439D01* X16940Y25433D01* X16936Y25425D01* X16933Y25417D01* X16924Y25391D01* X16913Y25366D01* X16900Y25343D01* X16885Y25320D01* X16884Y25319D01* Y25680D01* X16897Y25661D01* X16911Y25637D01* X16922Y25613D01* X16931Y25587D01* X16935Y25579D01* X16939Y25572D01* X16945Y25565D01* X16952Y25560D01* X16960Y25556D01* X16968Y25553D01* X16977Y25552D01* X16985Y25552D01* X16994Y25554D01* X17002Y25557D01* X17009Y25562D01* X17016Y25568D01* X17021Y25575D01* X17025Y25582D01* X17028Y25591D01* X17029Y25599D01* X17029Y25608D01* X17027Y25617D01* X17015Y25651D01* X17000Y25683D01* X16982Y25715D01* X16961Y25744D01* X16937Y25772D01* X16912Y25797D01* X16884Y25820D01* Y27196D01* X16897Y27207D01* X16922Y27232D01* X16945Y27260D01* X16965Y27290D01* X16983Y27322D01* X16997Y27355D01* X17009Y27389D01* X17011Y27398D01* X17011Y27407D01* X17010Y27415D01* X17007Y27423D01* X17002Y27431D01* X16997Y27438D01* X16990Y27444D01* X16983Y27448D01* X16975Y27451D01* X16966Y27453D01* X16957Y27453D01* X16949Y27452D01* X16941Y27449D01* X16933Y27445D01* X16926Y27439D01* X16920Y27433D01* X16916Y27425D01* X16913Y27417D01* X16904Y27391D01* X16893Y27366D01* X16884Y27350D01* Y27650D01* X16891Y27637D01* X16902Y27613D01* X16911Y27587D01* X16915Y27579D01* X16919Y27572D01* X16925Y27565D01* X16932Y27560D01* X16940Y27556D01* X16948Y27553D01* X16957Y27552D01* X16965Y27552D01* X16974Y27554D01* X16982Y27557D01* X16989Y27562D01* X16996Y27568D01* X17001Y27575D01* X17005Y27582D01* X17008Y27591D01* X17009Y27599D01* X17009Y27608D01* X17007Y27617D01* X16995Y27651D01* X16980Y27683D01* X16962Y27715D01* X16941Y27744D01* X16917Y27772D01* X16892Y27797D01* X16884Y27804D01* Y29214D01* X16902Y29232D01* X16925Y29260D01* X16945Y29290D01* X16963Y29322D01* X16977Y29355D01* X16989Y29389D01* X16991Y29398D01* X16991Y29407D01* X16990Y29415D01* X16987Y29423D01* X16982Y29431D01* X16977Y29438D01* X16970Y29444D01* X16963Y29448D01* X16955Y29451D01* X16946Y29453D01* X16937Y29453D01* X16929Y29452D01* X16921Y29449D01* X16913Y29445D01* X16906Y29439D01* X16900Y29433D01* X16896Y29425D01* X16893Y29417D01* X16884Y29391D01* X16884Y29391D01* Y29608D01* X16891Y29587D01* X16895Y29579D01* X16899Y29572D01* X16905Y29565D01* X16912Y29560D01* X16920Y29556D01* X16928Y29553D01* X16937Y29552D01* X16945Y29552D01* X16954Y29554D01* X16962Y29557D01* X16969Y29562D01* X16976Y29568D01* X16981Y29575D01* X16985Y29582D01* X16988Y29591D01* X16989Y29599D01* X16989Y29608D01* X16987Y29617D01* X16975Y29651D01* X16960Y29683D01* X16942Y29715D01* X16921Y29744D01* X16897Y29772D01* X16884Y29785D01* Y31235D01* X16905Y31260D01* X16925Y31290D01* X16943Y31322D01* X16957Y31355D01* X16969Y31389D01* X16971Y31398D01* X16971Y31407D01* X16970Y31415D01* X16967Y31423D01* X16962Y31431D01* X16957Y31438D01* X16950Y31444D01* X16943Y31448D01* X16935Y31451D01* X16926Y31453D01* X16917Y31453D01* X16909Y31452D01* X16901Y31449D01* X16893Y31445D01* X16886Y31439D01* X16884Y31437D01* Y31567D01* X16885Y31565D01* X16892Y31560D01* X16900Y31556D01* X16908Y31553D01* X16917Y31552D01* X16925Y31552D01* X16934Y31554D01* X16942Y31557D01* X16949Y31562D01* X16956Y31568D01* X16961Y31575D01* X16965Y31582D01* X16968Y31591D01* X16969Y31599D01* X16969Y31608D01* X16967Y31617D01* X16955Y31651D01* X16940Y31683D01* X16922Y31715D01* X16901Y31744D01* X16884Y31764D01* Y33259D01* X16885Y33260D01* X16905Y33290D01* X16923Y33322D01* X16937Y33355D01* X16949Y33389D01* X16951Y33398D01* X16951Y33407D01* X16950Y33415D01* X16947Y33423D01* X16942Y33431D01* X16937Y33438D01* X16930Y33444D01* X16923Y33448D01* X16915Y33451D01* X16906Y33453D01* X16897Y33453D01* X16889Y33452D01* X16884Y33450D01* Y33555D01* X16888Y33553D01* X16897Y33552D01* X16905Y33552D01* X16914Y33554D01* X16922Y33557D01* X16929Y33562D01* X16936Y33568D01* X16941Y33575D01* X16945Y33582D01* X16948Y33591D01* X16949Y33599D01* X16949Y33608D01* X16947Y33617D01* X16935Y33651D01* X16920Y33683D01* X16902Y33715D01* X16884Y33740D01* Y35288D01* X16885Y35290D01* X16903Y35322D01* X16917Y35355D01* X16929Y35389D01* X16931Y35398D01* X16931Y35407D01* X16930Y35415D01* X16927Y35423D01* X16922Y35431D01* X16917Y35438D01* X16910Y35444D01* X16903Y35448D01* X16895Y35451D01* X16886Y35453D01* X16884D01* Y35552D01* X16885D01* X16894Y35554D01* X16902Y35557D01* X16909Y35562D01* X16916Y35568D01* X16921Y35575D01* X16925Y35582D01* X16928Y35591D01* X16929Y35599D01* X16929Y35608D01* X16927Y35617D01* X16915Y35651D01* X16900Y35683D01* X16884Y35711D01* Y37324D01* X16897Y37355D01* X16909Y37389D01* X16911Y37398D01* X16911Y37407D01* X16910Y37415D01* X16907Y37423D01* X16902Y37431D01* X16897Y37438D01* X16890Y37444D01* X16884Y37447D01* Y37559D01* X16889Y37562D01* X16896Y37568D01* X16901Y37575D01* X16905Y37582D01* X16908Y37591D01* X16909Y37599D01* X16909Y37608D01* X16907Y37617D01* X16895Y37651D01* X16884Y37674D01* Y39374D01* X16889Y39389D01* X16891Y39398D01* X16891Y39407D01* X16890Y39415D01* X16887Y39423D01* X16884Y39428D01* Y39580D01* X16885Y39582D01* X16888Y39591D01* X16889Y39599D01* X16889Y39608D01* X16887Y39617D01* X16884Y39625D01* Y40000D01* G37* G36* X17064Y0D02*X16884D01* Y7140D01* X16887Y7135D01* X16893Y7128D01* X16900Y7123D01* X16907Y7119D01* X16916Y7116D01* X16924Y7115D01* X16933Y7115D01* X16941Y7117D01* X16976Y7129D01* X17008Y7144D01* X17040Y7162D01* X17064Y7180D01* Y5834D01* X17054Y5840D01* X17022Y5858D01* X16989Y5873D01* X16955Y5884D01* X16946Y5886D01* X16937Y5886D01* X16929Y5885D01* X16921Y5882D01* X16913Y5878D01* X16906Y5872D01* X16900Y5865D01* X16896Y5858D01* X16893Y5850D01* X16891Y5841D01* X16891Y5833D01* X16892Y5824D01* X16895Y5816D01* X16899Y5808D01* X16905Y5801D01* X16912Y5796D01* X16919Y5791D01* X16927Y5788D01* X16953Y5779D01* X16978Y5768D01* X17001Y5755D01* X17024Y5740D01* X17045Y5723D01* X17064Y5704D01* Y5295D01* X17049Y5280D01* X17028Y5262D01* X17006Y5247D01* X16982Y5233D01* X16958Y5222D01* X16932Y5213D01* X16924Y5209D01* X16917Y5205D01* X16910Y5199D01* X16905Y5192D01* X16901Y5184D01* X16898Y5176D01* X16897Y5167D01* X16897Y5159D01* X16899Y5150D01* X16902Y5142D01* X16907Y5135D01* X16913Y5128D01* X16920Y5123D01* X16927Y5119D01* X16936Y5116D01* X16944Y5115D01* X16953Y5115D01* X16961Y5117D01* X16996Y5129D01* X17028Y5144D01* X17060Y5162D01* X17064Y5165D01* Y3846D01* X17042Y3858D01* X17009Y3873D01* X16975Y3884D01* X16966Y3886D01* X16957Y3886D01* X16949Y3885D01* X16941Y3882D01* X16933Y3878D01* X16926Y3872D01* X16920Y3865D01* X16916Y3858D01* X16913Y3850D01* X16911Y3841D01* X16911Y3833D01* X16912Y3824D01* X16915Y3816D01* X16919Y3808D01* X16925Y3801D01* X16932Y3796D01* X16939Y3791D01* X16947Y3788D01* X16973Y3779D01* X16998Y3768D01* X17021Y3755D01* X17044Y3740D01* X17064Y3724D01* Y3276D01* X17048Y3262D01* X17026Y3247D01* X17002Y3233D01* X16978Y3222D01* X16952Y3213D01* X16944Y3209D01* X16937Y3205D01* X16930Y3199D01* X16925Y3192D01* X16921Y3184D01* X16918Y3176D01* X16917Y3167D01* X16917Y3159D01* X16919Y3150D01* X16922Y3142D01* X16927Y3135D01* X16933Y3128D01* X16940Y3123D01* X16947Y3119D01* X16956Y3116D01* X16964Y3115D01* X16973Y3115D01* X16981Y3117D01* X17016Y3129D01* X17048Y3144D01* X17064Y3153D01* Y1857D01* X17062Y1858D01* X17029Y1873D01* X16995Y1884D01* X16986Y1886D01* X16977Y1886D01* X16969Y1885D01* X16961Y1882D01* X16953Y1878D01* X16946Y1872D01* X16940Y1865D01* X16936Y1858D01* X16933Y1850D01* X16931Y1841D01* X16931Y1833D01* X16932Y1824D01* X16935Y1816D01* X16939Y1808D01* X16945Y1801D01* X16952Y1796D01* X16959Y1791D01* X16967Y1788D01* X16993Y1779D01* X17018Y1768D01* X17041Y1755D01* X17064Y1740D01* Y1259D01* X17046Y1247D01* X17022Y1233D01* X16998Y1222D01* X16972Y1213D01* X16964Y1209D01* X16957Y1205D01* X16950Y1199D01* X16945Y1192D01* X16941Y1184D01* X16938Y1176D01* X16937Y1167D01* X16937Y1159D01* X16939Y1150D01* X16942Y1142D01* X16947Y1135D01* X16953Y1128D01* X16960Y1123D01* X16967Y1119D01* X16976Y1116D01* X16984Y1115D01* X16993Y1115D01* X17001Y1117D01* X17036Y1129D01* X17064Y1142D01* Y0D01* G37* G36* Y7319D02*X17048Y7299D01* X17029Y7280D01* X17008Y7262D01* X16986Y7247D01* X16962Y7233D01* X16938Y7222D01* X16912Y7213D01* X16904Y7209D01* X16897Y7205D01* X16890Y7199D01* X16885Y7192D01* X16884Y7190D01* Y7802D01* X16885Y7801D01* X16892Y7796D01* X16899Y7791D01* X16907Y7788D01* X16933Y7779D01* X16958Y7768D01* X16981Y7755D01* X17004Y7740D01* X17025Y7723D01* X17044Y7704D01* X17062Y7683D01* X17064Y7680D01* Y7319D01* G37* G36* Y7820D02*X17064Y7820D01* X17034Y7840D01* X17002Y7858D01* X16969Y7873D01* X16935Y7884D01* X16926Y7886D01* X16917Y7886D01* X16909Y7885D01* X16901Y7882D01* X16893Y7878D01* X16886Y7872D01* X16884Y7870D01* Y9121D01* X16887Y9119D01* X16896Y9116D01* X16904Y9115D01* X16913Y9115D01* X16921Y9117D01* X16956Y9129D01* X16988Y9144D01* X17020Y9162D01* X17049Y9183D01* X17064Y9196D01* Y7820D01* G37* G36* Y9350D02*X17060Y9343D01* X17045Y9320D01* X17028Y9299D01* X17009Y9280D01* X16988Y9262D01* X16966Y9247D01* X16942Y9233D01* X16918Y9222D01* X16892Y9213D01* X16884Y9209D01* X16884Y9209D01* Y9789D01* X16887Y9788D01* X16913Y9779D01* X16938Y9768D01* X16961Y9755D01* X16984Y9740D01* X17005Y9723D01* X17024Y9704D01* X17042Y9683D01* X17057Y9661D01* X17064Y9650D01* Y9350D01* G37* G36* Y9804D02*X17044Y9820D01* X17014Y9840D01* X16982Y9858D01* X16949Y9873D01* X16915Y9884D01* X16906Y9886D01* X16897Y9886D01* X16889Y9885D01* X16884Y9883D01* Y11115D01* X16884D01* X16893Y11115D01* X16901Y11117D01* X16936Y11129D01* X16968Y11144D01* X17000Y11162D01* X17029Y11183D01* X17057Y11207D01* X17064Y11214D01* Y9804D01* G37* G36* Y11391D02*X17053Y11366D01* X17040Y11343D01* X17025Y11320D01* X17008Y11299D01* X16989Y11280D01* X16968Y11262D01* X16946Y11247D01* X16922Y11233D01* X16898Y11222D01* X16884Y11217D01* Y11782D01* X16893Y11779D01* X16918Y11768D01* X16941Y11755D01* X16964Y11740D01* X16985Y11723D01* X17004Y11704D01* X17022Y11683D01* X17037Y11661D01* X17051Y11637D01* X17062Y11613D01* X17064Y11608D01* Y11391D01* G37* G36* Y11785D02*X17052Y11797D01* X17024Y11820D01* X16994Y11840D01* X16962Y11858D01* X16929Y11873D01* X16895Y11884D01* X16886Y11886D01* X16884D01* Y13118D01* X16916Y13129D01* X16948Y13144D01* X16980Y13162D01* X17009Y13183D01* X17037Y13207D01* X17062Y13232D01* X17064Y13235D01* Y11785D01* G37* G36* Y13437D02*X17060Y13433D01* X17056Y13425D01* X17053Y13417D01* X17044Y13391D01* X17033Y13366D01* X17020Y13343D01* X17005Y13320D01* X16988Y13299D01* X16969Y13280D01* X16948Y13262D01* X16926Y13247D01* X16902Y13233D01* X16884Y13225D01* Y13774D01* X16898Y13768D01* X16921Y13755D01* X16944Y13740D01* X16965Y13723D01* X16984Y13704D01* X17002Y13683D01* X17017Y13661D01* X17031Y13637D01* X17042Y13613D01* X17051Y13587D01* X17055Y13579D01* X17059Y13572D01* X17064Y13567D01* Y13437D01* G37* G36* Y13764D02*X17057Y13772D01* X17032Y13797D01* X17004Y13820D01* X16974Y13840D01* X16942Y13858D01* X16909Y13873D01* X16884Y13881D01* Y15125D01* X16896Y15129D01* X16928Y15144D01* X16960Y15162D01* X16989Y15183D01* X17017Y15207D01* X17042Y15232D01* X17064Y15259D01* Y13764D01* G37* G36* Y15450D02*X17061Y15449D01* X17053Y15445D01* X17046Y15439D01* X17040Y15433D01* X17036Y15425D01* X17033Y15417D01* X17024Y15391D01* X17013Y15366D01* X17000Y15343D01* X16985Y15320D01* X16968Y15299D01* X16949Y15280D01* X16928Y15262D01* X16906Y15247D01* X16884Y15234D01* Y15765D01* X16901Y15755D01* X16924Y15740D01* X16945Y15723D01* X16964Y15704D01* X16982Y15683D01* X16997Y15661D01* X17011Y15637D01* X17022Y15613D01* X17031Y15587D01* X17035Y15579D01* X17039Y15572D01* X17045Y15565D01* X17052Y15560D01* X17060Y15556D01* X17064Y15555D01* Y15450D01* G37* G36* Y15740D02*X17061Y15744D01* X17037Y15772D01* X17012Y15797D01* X16984Y15820D01* X16954Y15840D01* X16922Y15858D01* X16889Y15873D01* X16884Y15874D01* Y17133D01* X16908Y17144D01* X16940Y17162D01* X16969Y17183D01* X16997Y17207D01* X17022Y17232D01* X17045Y17260D01* X17064Y17288D01* Y15740D01* G37* G36* Y17453D02*X17057Y17453D01* X17049Y17452D01* X17041Y17449D01* X17033Y17445D01* X17026Y17439D01* X17020Y17433D01* X17016Y17425D01* X17013Y17417D01* X17004Y17391D01* X16993Y17366D01* X16980Y17343D01* X16965Y17320D01* X16948Y17299D01* X16929Y17280D01* X16908Y17262D01* X16886Y17247D01* X16884Y17246D01* Y17754D01* X16904Y17740D01* X16925Y17723D01* X16944Y17704D01* X16962Y17683D01* X16977Y17661D01* X16991Y17637D01* X17002Y17613D01* X17011Y17587D01* X17015Y17579D01* X17019Y17572D01* X17025Y17565D01* X17032Y17560D01* X17040Y17556D01* X17048Y17553D01* X17057Y17552D01* X17064Y17552D01* Y17453D01* G37* G36* Y17711D02*X17062Y17715D01* X17041Y17744D01* X17017Y17772D01* X16992Y17797D01* X16964Y17820D01* X16934Y17840D01* X16902Y17858D01* X16884Y17866D01* Y19142D01* X16888Y19144D01* X16920Y19162D01* X16949Y19183D01* X16977Y19207D01* X17002Y19232D01* X17025Y19260D01* X17045Y19290D01* X17063Y19322D01* X17064Y19324D01* Y17711D01* G37* G36* Y19447D02*X17063Y19448D01* X17055Y19451D01* X17046Y19453D01* X17037Y19453D01* X17029Y19452D01* X17021Y19449D01* X17013Y19445D01* X17006Y19439D01* X17000Y19433D01* X16996Y19425D01* X16993Y19417D01* X16984Y19391D01* X16973Y19366D01* X16960Y19343D01* X16945Y19320D01* X16928Y19299D01* X16909Y19280D01* X16888Y19262D01* X16884Y19259D01* Y19740D01* X16905Y19723D01* X16924Y19704D01* X16942Y19683D01* X16957Y19661D01* X16971Y19637D01* X16982Y19613D01* X16991Y19587D01* X16995Y19579D01* X16999Y19572D01* X17005Y19565D01* X17012Y19560D01* X17020Y19556D01* X17028Y19553D01* X17037Y19552D01* X17045Y19552D01* X17054Y19554D01* X17062Y19557D01* X17064Y19559D01* Y19447D01* G37* G36* Y19674D02*X17060Y19683D01* X17042Y19715D01* X17021Y19744D01* X16997Y19772D01* X16972Y19797D01* X16944Y19820D01* X16914Y19840D01* X16884Y19857D01* Y21153D01* X16900Y21162D01* X16929Y21183D01* X16957Y21207D01* X16982Y21232D01* X17005Y21260D01* X17025Y21290D01* X17043Y21322D01* X17057Y21355D01* X17064Y21374D01* Y19674D01* G37* G36* Y21428D02*X17062Y21431D01* X17057Y21438D01* X17050Y21444D01* X17043Y21448D01* X17035Y21451D01* X17026Y21453D01* X17017Y21453D01* X17009Y21452D01* X17001Y21449D01* X16993Y21445D01* X16986Y21439D01* X16980Y21433D01* X16976Y21425D01* X16973Y21417D01* X16964Y21391D01* X16953Y21366D01* X16940Y21343D01* X16925Y21320D01* X16908Y21299D01* X16889Y21280D01* X16884Y21276D01* Y21724D01* X16885Y21723D01* X16904Y21704D01* X16922Y21683D01* X16937Y21661D01* X16951Y21637D01* X16962Y21613D01* X16971Y21587D01* X16975Y21579D01* X16979Y21572D01* X16985Y21565D01* X16992Y21560D01* X17000Y21556D01* X17008Y21553D01* X17017Y21552D01* X17025Y21552D01* X17034Y21554D01* X17042Y21557D01* X17049Y21562D01* X17056Y21568D01* X17061Y21575D01* X17064Y21580D01* Y21428D01* G37* G36* Y40000D02*X18445D01* Y39859D01* X18442Y39864D01* X18436Y39871D01* X18429Y39876D01* X18422Y39880D01* X18413Y39883D01* X18405Y39884D01* X18396Y39884D01* X18388Y39882D01* X18353Y39870D01* X18321Y39855D01* X18289Y39837D01* X18260Y39816D01* X18232Y39793D01* X18207Y39767D01* X18184Y39739D01* X18164Y39709D01* X18146Y39677D01* X18132Y39644D01* X18120Y39610D01* X18118Y39601D01* X18118Y39593D01* X18119Y39584D01* X18122Y39576D01* X18127Y39568D01* X18132Y39561D01* X18139Y39556D01* X18146Y39551D01* X18154Y39548D01* X18163Y39546D01* X18172Y39546D01* X18180Y39547D01* X18188Y39550D01* X18196Y39555D01* X18203Y39560D01* X18209Y39567D01* X18213Y39574D01* X18216Y39582D01* X18225Y39608D01* X18236Y39633D01* X18249Y39657D01* X18264Y39679D01* X18281Y39700D01* X18300Y39719D01* X18321Y39737D01* X18343Y39752D01* X18367Y39766D01* X18391Y39777D01* X18417Y39786D01* X18425Y39790D01* X18432Y39794D01* X18439Y39800D01* X18444Y39807D01* X18445Y39809D01* Y39197D01* X18444Y39198D01* X18437Y39204D01* X18430Y39208D01* X18422Y39211D01* X18396Y39220D01* X18371Y39231D01* X18348Y39244D01* X18325Y39259D01* X18304Y39276D01* X18285Y39295D01* X18267Y39316D01* X18252Y39338D01* X18238Y39362D01* X18227Y39386D01* X18218Y39412D01* X18214Y39420D01* X18210Y39427D01* X18204Y39434D01* X18197Y39439D01* X18189Y39443D01* X18181Y39446D01* X18172Y39447D01* X18164Y39447D01* X18155Y39445D01* X18147Y39442D01* X18140Y39437D01* X18133Y39431D01* X18128Y39424D01* X18124Y39417D01* X18121Y39409D01* X18120Y39400D01* X18120Y39391D01* X18122Y39383D01* X18134Y39349D01* X18149Y39316D01* X18167Y39284D01* X18188Y39255D01* X18212Y39227D01* X18237Y39202D01* X18265Y39179D01* X18295Y39159D01* X18327Y39141D01* X18360Y39127D01* X18394Y39115D01* X18403Y39113D01* X18412Y39113D01* X18420Y39115D01* X18428Y39117D01* X18436Y39122D01* X18443Y39127D01* X18445Y39130D01* Y37878D01* X18442Y37880D01* X18433Y37883D01* X18425Y37884D01* X18416Y37884D01* X18408Y37882D01* X18373Y37870D01* X18341Y37855D01* X18309Y37837D01* X18280Y37816D01* X18252Y37793D01* X18227Y37767D01* X18204Y37739D01* X18184Y37709D01* X18166Y37677D01* X18152Y37644D01* X18140Y37610D01* X18138Y37601D01* X18138Y37593D01* X18139Y37584D01* X18142Y37576D01* X18147Y37568D01* X18152Y37561D01* X18159Y37556D01* X18166Y37551D01* X18174Y37548D01* X18183Y37546D01* X18192Y37546D01* X18200Y37547D01* X18208Y37550D01* X18216Y37555D01* X18223Y37560D01* X18229Y37567D01* X18233Y37574D01* X18236Y37582D01* X18245Y37608D01* X18256Y37633D01* X18269Y37657D01* X18284Y37679D01* X18301Y37700D01* X18320Y37719D01* X18341Y37737D01* X18363Y37752D01* X18387Y37766D01* X18411Y37777D01* X18437Y37786D01* X18445Y37790D01* X18445Y37790D01* Y37210D01* X18442Y37211D01* X18416Y37220D01* X18391Y37231D01* X18368Y37244D01* X18345Y37259D01* X18324Y37276D01* X18305Y37295D01* X18287Y37316D01* X18272Y37338D01* X18258Y37362D01* X18247Y37386D01* X18238Y37412D01* X18234Y37420D01* X18230Y37427D01* X18224Y37434D01* X18217Y37439D01* X18209Y37443D01* X18201Y37446D01* X18192Y37447D01* X18184Y37447D01* X18175Y37445D01* X18167Y37442D01* X18160Y37437D01* X18153Y37431D01* X18148Y37424D01* X18144Y37417D01* X18141Y37409D01* X18140Y37400D01* X18140Y37391D01* X18142Y37383D01* X18154Y37349D01* X18169Y37316D01* X18187Y37284D01* X18208Y37255D01* X18232Y37227D01* X18257Y37202D01* X18285Y37179D01* X18315Y37159D01* X18347Y37141D01* X18380Y37127D01* X18414Y37115D01* X18423Y37113D01* X18432Y37113D01* X18440Y37115D01* X18445Y37116D01* Y35884D01* X18445Y35884D01* X18436Y35884D01* X18428Y35882D01* X18393Y35870D01* X18361Y35855D01* X18329Y35837D01* X18300Y35816D01* X18272Y35793D01* X18247Y35767D01* X18224Y35739D01* X18204Y35709D01* X18186Y35677D01* X18172Y35644D01* X18160Y35610D01* X18158Y35601D01* X18158Y35593D01* X18159Y35584D01* X18162Y35576D01* X18167Y35568D01* X18172Y35561D01* X18179Y35556D01* X18186Y35551D01* X18194Y35548D01* X18203Y35546D01* X18212Y35546D01* X18220Y35547D01* X18228Y35550D01* X18236Y35555D01* X18243Y35560D01* X18249Y35567D01* X18253Y35574D01* X18256Y35582D01* X18265Y35608D01* X18276Y35633D01* X18289Y35657D01* X18304Y35679D01* X18321Y35700D01* X18340Y35719D01* X18361Y35737D01* X18383Y35752D01* X18407Y35766D01* X18431Y35777D01* X18445Y35782D01* Y35217D01* X18436Y35220D01* X18411Y35231D01* X18388Y35244D01* X18365Y35259D01* X18344Y35276D01* X18325Y35295D01* X18307Y35316D01* X18292Y35338D01* X18278Y35362D01* X18267Y35386D01* X18258Y35412D01* X18254Y35420D01* X18250Y35427D01* X18244Y35434D01* X18237Y35439D01* X18229Y35443D01* X18221Y35446D01* X18212Y35447D01* X18204Y35447D01* X18195Y35445D01* X18187Y35442D01* X18180Y35437D01* X18173Y35431D01* X18168Y35424D01* X18164Y35417D01* X18161Y35409D01* X18160Y35400D01* X18160Y35391D01* X18162Y35383D01* X18174Y35349D01* X18189Y35316D01* X18207Y35284D01* X18228Y35255D01* X18252Y35227D01* X18277Y35202D01* X18305Y35179D01* X18335Y35159D01* X18367Y35141D01* X18400Y35127D01* X18434Y35115D01* X18443Y35113D01* X18445D01* Y33881D01* X18413Y33870D01* X18381Y33855D01* X18349Y33837D01* X18320Y33816D01* X18292Y33793D01* X18267Y33767D01* X18244Y33739D01* X18224Y33709D01* X18206Y33677D01* X18192Y33644D01* X18180Y33610D01* X18178Y33601D01* X18178Y33593D01* X18179Y33584D01* X18182Y33576D01* X18187Y33568D01* X18192Y33561D01* X18199Y33556D01* X18206Y33551D01* X18214Y33548D01* X18223Y33546D01* X18232Y33546D01* X18240Y33547D01* X18248Y33550D01* X18256Y33555D01* X18263Y33560D01* X18269Y33567D01* X18273Y33574D01* X18276Y33582D01* X18285Y33608D01* X18296Y33633D01* X18309Y33657D01* X18324Y33679D01* X18341Y33700D01* X18360Y33719D01* X18381Y33737D01* X18403Y33752D01* X18427Y33766D01* X18445Y33775D01* Y33225D01* X18431Y33231D01* X18408Y33244D01* X18385Y33259D01* X18364Y33276D01* X18345Y33295D01* X18327Y33316D01* X18312Y33338D01* X18298Y33362D01* X18287Y33386D01* X18278Y33412D01* X18274Y33420D01* X18270Y33427D01* X18264Y33434D01* X18257Y33439D01* X18249Y33443D01* X18241Y33446D01* X18232Y33447D01* X18224Y33447D01* X18215Y33445D01* X18207Y33442D01* X18200Y33437D01* X18193Y33431D01* X18188Y33424D01* X18184Y33417D01* X18181Y33409D01* X18180Y33400D01* X18180Y33391D01* X18182Y33383D01* X18194Y33349D01* X18209Y33316D01* X18227Y33284D01* X18248Y33255D01* X18272Y33227D01* X18297Y33202D01* X18325Y33179D01* X18355Y33159D01* X18387Y33141D01* X18420Y33127D01* X18445Y33118D01* Y31874D01* X18433Y31870D01* X18401Y31855D01* X18369Y31837D01* X18340Y31816D01* X18312Y31793D01* X18287Y31767D01* X18264Y31739D01* X18244Y31709D01* X18226Y31677D01* X18212Y31644D01* X18200Y31610D01* X18198Y31601D01* X18198Y31593D01* X18199Y31584D01* X18202Y31576D01* X18207Y31568D01* X18212Y31561D01* X18219Y31556D01* X18226Y31551D01* X18234Y31548D01* X18243Y31546D01* X18252Y31546D01* X18260Y31547D01* X18268Y31550D01* X18276Y31555D01* X18283Y31560D01* X18289Y31567D01* X18293Y31574D01* X18296Y31582D01* X18305Y31608D01* X18316Y31633D01* X18329Y31657D01* X18344Y31679D01* X18361Y31700D01* X18380Y31719D01* X18401Y31737D01* X18423Y31752D01* X18445Y31765D01* Y31234D01* X18428Y31244D01* X18405Y31259D01* X18384Y31276D01* X18365Y31295D01* X18347Y31316D01* X18332Y31338D01* X18318Y31362D01* X18307Y31386D01* X18298Y31412D01* X18294Y31420D01* X18290Y31427D01* X18284Y31434D01* X18277Y31439D01* X18269Y31443D01* X18261Y31446D01* X18252Y31447D01* X18244Y31447D01* X18235Y31445D01* X18227Y31442D01* X18220Y31437D01* X18213Y31431D01* X18208Y31424D01* X18204Y31417D01* X18201Y31409D01* X18200Y31400D01* X18200Y31391D01* X18202Y31383D01* X18214Y31349D01* X18229Y31316D01* X18247Y31284D01* X18268Y31255D01* X18292Y31227D01* X18317Y31202D01* X18345Y31179D01* X18375Y31159D01* X18407Y31141D01* X18440Y31127D01* X18445Y31125D01* Y29866D01* X18421Y29855D01* X18389Y29837D01* X18360Y29816D01* X18332Y29793D01* X18307Y29767D01* X18284Y29739D01* X18264Y29709D01* X18246Y29677D01* X18232Y29644D01* X18220Y29610D01* X18218Y29601D01* X18218Y29593D01* X18219Y29584D01* X18222Y29576D01* X18227Y29568D01* X18232Y29561D01* X18239Y29556D01* X18246Y29551D01* X18254Y29548D01* X18263Y29546D01* X18272Y29546D01* X18280Y29547D01* X18288Y29550D01* X18296Y29555D01* X18303Y29560D01* X18309Y29567D01* X18313Y29574D01* X18316Y29582D01* X18325Y29608D01* X18336Y29633D01* X18349Y29657D01* X18364Y29679D01* X18381Y29700D01* X18400Y29719D01* X18421Y29737D01* X18443Y29752D01* X18445Y29754D01* Y29246D01* X18425Y29259D01* X18404Y29276D01* X18385Y29295D01* X18367Y29316D01* X18352Y29338D01* X18338Y29362D01* X18327Y29386D01* X18318Y29412D01* X18314Y29420D01* X18310Y29427D01* X18304Y29434D01* X18297Y29439D01* X18289Y29443D01* X18281Y29446D01* X18272Y29447D01* X18264Y29447D01* X18255Y29445D01* X18247Y29442D01* X18240Y29437D01* X18233Y29431D01* X18228Y29424D01* X18224Y29417D01* X18221Y29409D01* X18220Y29400D01* X18220Y29391D01* X18222Y29383D01* X18234Y29349D01* X18249Y29316D01* X18267Y29284D01* X18288Y29255D01* X18312Y29227D01* X18337Y29202D01* X18365Y29179D01* X18395Y29159D01* X18427Y29141D01* X18445Y29133D01* Y27857D01* X18441Y27855D01* X18409Y27837D01* X18380Y27816D01* X18352Y27793D01* X18327Y27767D01* X18304Y27739D01* X18284Y27709D01* X18266Y27677D01* X18252Y27644D01* X18240Y27610D01* X18238Y27601D01* X18238Y27593D01* X18239Y27584D01* X18242Y27576D01* X18247Y27568D01* X18252Y27561D01* X18259Y27556D01* X18266Y27551D01* X18274Y27548D01* X18283Y27546D01* X18292Y27546D01* X18300Y27547D01* X18308Y27550D01* X18316Y27555D01* X18323Y27560D01* X18329Y27567D01* X18333Y27574D01* X18336Y27582D01* X18345Y27608D01* X18356Y27633D01* X18369Y27657D01* X18384Y27679D01* X18401Y27700D01* X18420Y27719D01* X18441Y27737D01* X18445Y27740D01* Y27259D01* X18445Y27259D01* X18424Y27276D01* X18405Y27295D01* X18387Y27316D01* X18372Y27338D01* X18358Y27362D01* X18347Y27386D01* X18338Y27412D01* X18334Y27420D01* X18330Y27427D01* X18324Y27434D01* X18317Y27439D01* X18309Y27443D01* X18301Y27446D01* X18292Y27447D01* X18284Y27447D01* X18275Y27445D01* X18267Y27442D01* X18260Y27437D01* X18253Y27431D01* X18248Y27424D01* X18244Y27417D01* X18241Y27409D01* X18240Y27400D01* X18240Y27391D01* X18242Y27383D01* X18254Y27349D01* X18269Y27316D01* X18287Y27284D01* X18308Y27255D01* X18332Y27227D01* X18357Y27202D01* X18385Y27179D01* X18415Y27159D01* X18445Y27142D01* Y25846D01* X18429Y25837D01* X18400Y25816D01* X18372Y25793D01* X18347Y25767D01* X18324Y25739D01* X18304Y25709D01* X18286Y25677D01* X18272Y25644D01* X18260Y25610D01* X18258Y25601D01* X18258Y25593D01* X18259Y25584D01* X18262Y25576D01* X18267Y25568D01* X18272Y25561D01* X18279Y25556D01* X18286Y25551D01* X18294Y25548D01* X18303Y25546D01* X18312Y25546D01* X18320Y25547D01* X18328Y25550D01* X18336Y25555D01* X18343Y25560D01* X18349Y25567D01* X18353Y25574D01* X18356Y25582D01* X18365Y25608D01* X18376Y25633D01* X18389Y25657D01* X18404Y25679D01* X18421Y25700D01* X18440Y25719D01* X18445Y25723D01* Y25276D01* X18444Y25276D01* X18425Y25295D01* X18407Y25316D01* X18392Y25338D01* X18378Y25362D01* X18367Y25386D01* X18358Y25412D01* X18354Y25420D01* X18350Y25427D01* X18344Y25434D01* X18337Y25439D01* X18329Y25443D01* X18321Y25446D01* X18312Y25447D01* X18304Y25447D01* X18295Y25445D01* X18287Y25442D01* X18280Y25437D01* X18273Y25431D01* X18268Y25424D01* X18264Y25417D01* X18261Y25409D01* X18260Y25400D01* X18260Y25391D01* X18262Y25383D01* X18274Y25349D01* X18289Y25316D01* X18307Y25284D01* X18328Y25255D01* X18352Y25227D01* X18377Y25202D01* X18405Y25179D01* X18435Y25159D01* X18445Y25153D01* Y23834D01* X18420Y23816D01* X18392Y23793D01* X18367Y23767D01* X18344Y23739D01* X18324Y23709D01* X18306Y23677D01* X18292Y23644D01* X18280Y23610D01* X18278Y23601D01* X18278Y23593D01* X18279Y23584D01* X18282Y23576D01* X18287Y23568D01* X18292Y23561D01* X18299Y23556D01* X18306Y23551D01* X18314Y23548D01* X18323Y23546D01* X18332Y23546D01* X18340Y23547D01* X18348Y23550D01* X18356Y23555D01* X18363Y23560D01* X18369Y23567D01* X18373Y23574D01* X18376Y23582D01* X18385Y23608D01* X18396Y23633D01* X18409Y23657D01* X18424Y23679D01* X18441Y23700D01* X18445Y23704D01* Y23295D01* X18445Y23295D01* X18427Y23316D01* X18412Y23338D01* X18398Y23362D01* X18387Y23386D01* X18378Y23412D01* X18374Y23420D01* X18370Y23427D01* X18364Y23434D01* X18357Y23439D01* X18349Y23443D01* X18341Y23446D01* X18332Y23447D01* X18324Y23447D01* X18315Y23445D01* X18307Y23442D01* X18300Y23437D01* X18293Y23431D01* X18288Y23424D01* X18284Y23417D01* X18281Y23409D01* X18280Y23400D01* X18280Y23391D01* X18282Y23383D01* X18294Y23349D01* X18309Y23316D01* X18327Y23284D01* X18348Y23255D01* X18372Y23227D01* X18397Y23202D01* X18425Y23179D01* X18445Y23166D01* Y21820D01* X18440Y21816D01* X18412Y21793D01* X18387Y21767D01* X18364Y21739D01* X18344Y21709D01* X18326Y21677D01* X18312Y21644D01* X18300Y21610D01* X18298Y21601D01* X18298Y21593D01* X18299Y21584D01* X18302Y21576D01* X18307Y21568D01* X18312Y21561D01* X18319Y21556D01* X18326Y21551D01* X18334Y21548D01* X18343Y21546D01* X18352Y21546D01* X18360Y21547D01* X18368Y21550D01* X18376Y21555D01* X18383Y21560D01* X18389Y21567D01* X18393Y21574D01* X18396Y21582D01* X18405Y21608D01* X18416Y21633D01* X18429Y21657D01* X18444Y21679D01* X18445Y21680D01* Y21319D01* X18432Y21338D01* X18418Y21362D01* X18407Y21386D01* X18398Y21412D01* X18394Y21420D01* X18390Y21427D01* X18384Y21434D01* X18377Y21439D01* X18369Y21443D01* X18361Y21446D01* X18352Y21447D01* X18344Y21447D01* X18335Y21445D01* X18327Y21442D01* X18320Y21437D01* X18313Y21431D01* X18308Y21424D01* X18304Y21417D01* X18301Y21409D01* X18300Y21400D01* X18300Y21391D01* X18302Y21383D01* X18314Y21349D01* X18329Y21316D01* X18347Y21284D01* X18368Y21255D01* X18392Y21227D01* X18417Y21202D01* X18445Y21179D01* Y19804D01* X18432Y19793D01* X18407Y19767D01* X18384Y19739D01* X18364Y19709D01* X18346Y19677D01* X18332Y19644D01* X18320Y19610D01* X18318Y19601D01* X18318Y19593D01* X18319Y19584D01* X18322Y19576D01* X18327Y19568D01* X18332Y19561D01* X18339Y19556D01* X18346Y19551D01* X18354Y19548D01* X18363Y19546D01* X18372Y19546D01* X18380Y19547D01* X18388Y19550D01* X18396Y19555D01* X18403Y19560D01* X18409Y19567D01* X18413Y19574D01* X18416Y19582D01* X18425Y19608D01* X18436Y19633D01* X18445Y19650D01* Y19349D01* X18438Y19362D01* X18427Y19386D01* X18418Y19412D01* X18414Y19420D01* X18410Y19427D01* X18404Y19434D01* X18397Y19439D01* X18389Y19443D01* X18381Y19446D01* X18372Y19447D01* X18364Y19447D01* X18355Y19445D01* X18347Y19442D01* X18340Y19437D01* X18333Y19431D01* X18328Y19424D01* X18324Y19417D01* X18321Y19409D01* X18320Y19400D01* X18320Y19391D01* X18322Y19383D01* X18334Y19349D01* X18349Y19316D01* X18367Y19284D01* X18388Y19255D01* X18412Y19227D01* X18437Y19202D01* X18445Y19196D01* Y17785D01* X18427Y17767D01* X18404Y17739D01* X18384Y17709D01* X18366Y17677D01* X18352Y17644D01* X18340Y17610D01* X18338Y17601D01* X18338Y17593D01* X18339Y17584D01* X18342Y17576D01* X18347Y17568D01* X18352Y17561D01* X18359Y17556D01* X18366Y17551D01* X18374Y17548D01* X18383Y17546D01* X18392Y17546D01* X18400Y17547D01* X18408Y17550D01* X18416Y17555D01* X18423Y17560D01* X18429Y17567D01* X18433Y17574D01* X18436Y17582D01* X18445Y17608D01* X18445Y17609D01* Y17391D01* X18438Y17412D01* X18434Y17420D01* X18430Y17427D01* X18424Y17434D01* X18417Y17439D01* X18409Y17443D01* X18401Y17446D01* X18392Y17447D01* X18384Y17447D01* X18375Y17445D01* X18367Y17442D01* X18360Y17437D01* X18353Y17431D01* X18348Y17424D01* X18344Y17417D01* X18341Y17409D01* X18340Y17400D01* X18340Y17391D01* X18342Y17383D01* X18354Y17349D01* X18369Y17316D01* X18387Y17284D01* X18408Y17255D01* X18432Y17227D01* X18445Y17214D01* Y15765D01* X18424Y15739D01* X18404Y15709D01* X18386Y15677D01* X18372Y15644D01* X18360Y15610D01* X18358Y15601D01* X18358Y15593D01* X18359Y15584D01* X18362Y15576D01* X18367Y15568D01* X18372Y15561D01* X18379Y15556D01* X18386Y15551D01* X18394Y15548D01* X18403Y15546D01* X18412Y15546D01* X18420Y15547D01* X18428Y15550D01* X18436Y15555D01* X18443Y15560D01* X18445Y15563D01* Y15432D01* X18444Y15434D01* X18437Y15439D01* X18429Y15443D01* X18421Y15446D01* X18412Y15447D01* X18404Y15447D01* X18395Y15445D01* X18387Y15442D01* X18380Y15437D01* X18373Y15431D01* X18368Y15424D01* X18364Y15417D01* X18361Y15409D01* X18360Y15400D01* X18360Y15391D01* X18362Y15383D01* X18374Y15349D01* X18389Y15316D01* X18407Y15284D01* X18428Y15255D01* X18445Y15235D01* Y13740D01* X18444Y13739D01* X18424Y13709D01* X18406Y13677D01* X18392Y13644D01* X18380Y13610D01* X18378Y13601D01* X18378Y13593D01* X18379Y13584D01* X18382Y13576D01* X18387Y13568D01* X18392Y13561D01* X18399Y13556D01* X18406Y13551D01* X18414Y13548D01* X18423Y13546D01* X18432Y13546D01* X18440Y13547D01* X18445Y13549D01* Y13445D01* X18441Y13446D01* X18432Y13447D01* X18424Y13447D01* X18415Y13445D01* X18407Y13442D01* X18400Y13437D01* X18393Y13431D01* X18388Y13424D01* X18384Y13417D01* X18381Y13409D01* X18380Y13400D01* X18380Y13391D01* X18382Y13383D01* X18394Y13349D01* X18409Y13316D01* X18427Y13284D01* X18445Y13259D01* Y11711D01* X18444Y11709D01* X18426Y11677D01* X18412Y11644D01* X18400Y11610D01* X18398Y11601D01* X18398Y11593D01* X18399Y11584D01* X18402Y11576D01* X18407Y11568D01* X18412Y11561D01* X18419Y11556D01* X18426Y11551D01* X18434Y11548D01* X18443Y11546D01* X18445D01* Y11447D01* X18444Y11447D01* X18435Y11445D01* X18427Y11442D01* X18420Y11437D01* X18413Y11431D01* X18408Y11424D01* X18404Y11417D01* X18401Y11409D01* X18400Y11400D01* X18400Y11391D01* X18402Y11383D01* X18414Y11349D01* X18429Y11316D01* X18445Y11288D01* Y9675D01* X18432Y9644D01* X18420Y9610D01* X18418Y9601D01* X18418Y9593D01* X18419Y9584D01* X18422Y9576D01* X18427Y9568D01* X18432Y9561D01* X18439Y9556D01* X18445Y9552D01* Y9441D01* X18440Y9437D01* X18433Y9431D01* X18428Y9424D01* X18424Y9417D01* X18421Y9409D01* X18420Y9400D01* X18420Y9391D01* X18422Y9383D01* X18434Y9349D01* X18445Y9325D01* Y7625D01* X18440Y7610D01* X18438Y7601D01* X18438Y7593D01* X18439Y7584D01* X18442Y7576D01* X18445Y7571D01* Y7419D01* X18444Y7417D01* X18441Y7409D01* X18440Y7400D01* X18440Y7391D01* X18442Y7383D01* X18445Y7374D01* Y0D01* X17064D01* Y1142D01* X17068Y1144D01* X17100Y1162D01* X17129Y1183D01* X17157Y1207D01* X17182Y1232D01* X17205Y1260D01* X17225Y1290D01* X17243Y1322D01* X17257Y1355D01* X17269Y1389D01* X17271Y1398D01* X17271Y1407D01* X17270Y1415D01* X17267Y1423D01* X17262Y1431D01* X17257Y1438D01* X17250Y1444D01* X17243Y1448D01* X17235Y1451D01* X17226Y1453D01* X17217Y1453D01* X17209Y1452D01* X17201Y1449D01* X17193Y1445D01* X17186Y1439D01* X17180Y1433D01* X17176Y1425D01* X17173Y1417D01* X17164Y1391D01* X17153Y1366D01* X17140Y1343D01* X17125Y1320D01* X17108Y1299D01* X17089Y1280D01* X17068Y1262D01* X17064Y1259D01* Y1740D01* X17085Y1723D01* X17104Y1704D01* X17122Y1683D01* X17137Y1661D01* X17151Y1637D01* X17162Y1613D01* X17171Y1587D01* X17175Y1579D01* X17179Y1572D01* X17185Y1565D01* X17192Y1560D01* X17200Y1556D01* X17208Y1553D01* X17217Y1552D01* X17225Y1552D01* X17234Y1554D01* X17242Y1557D01* X17249Y1562D01* X17256Y1568D01* X17261Y1575D01* X17265Y1582D01* X17268Y1591D01* X17269Y1599D01* X17269Y1608D01* X17267Y1617D01* X17255Y1651D01* X17240Y1683D01* X17222Y1715D01* X17201Y1744D01* X17177Y1772D01* X17152Y1797D01* X17124Y1820D01* X17094Y1840D01* X17064Y1857D01* Y3153D01* X17080Y3162D01* X17109Y3183D01* X17137Y3207D01* X17162Y3232D01* X17185Y3260D01* X17205Y3290D01* X17223Y3322D01* X17237Y3355D01* X17249Y3389D01* X17251Y3398D01* X17251Y3407D01* X17250Y3415D01* X17247Y3423D01* X17242Y3431D01* X17237Y3438D01* X17230Y3444D01* X17223Y3448D01* X17215Y3451D01* X17206Y3453D01* X17197Y3453D01* X17189Y3452D01* X17181Y3449D01* X17173Y3445D01* X17166Y3439D01* X17160Y3433D01* X17156Y3425D01* X17153Y3417D01* X17144Y3391D01* X17133Y3366D01* X17120Y3343D01* X17105Y3320D01* X17088Y3299D01* X17069Y3280D01* X17064Y3276D01* Y3724D01* X17065Y3723D01* X17084Y3704D01* X17102Y3683D01* X17117Y3661D01* X17131Y3637D01* X17142Y3613D01* X17151Y3587D01* X17155Y3579D01* X17159Y3572D01* X17165Y3565D01* X17172Y3560D01* X17180Y3556D01* X17188Y3553D01* X17197Y3552D01* X17205Y3552D01* X17214Y3554D01* X17222Y3557D01* X17229Y3562D01* X17236Y3568D01* X17241Y3575D01* X17245Y3582D01* X17248Y3591D01* X17249Y3599D01* X17249Y3608D01* X17247Y3617D01* X17235Y3651D01* X17220Y3683D01* X17202Y3715D01* X17181Y3744D01* X17157Y3772D01* X17132Y3797D01* X17104Y3820D01* X17074Y3840D01* X17064Y3846D01* Y5165D01* X17089Y5183D01* X17117Y5207D01* X17142Y5232D01* X17165Y5260D01* X17185Y5290D01* X17203Y5322D01* X17217Y5355D01* X17229Y5389D01* X17231Y5398D01* X17231Y5407D01* X17230Y5415D01* X17227Y5423D01* X17222Y5431D01* X17217Y5438D01* X17210Y5444D01* X17203Y5448D01* X17195Y5451D01* X17186Y5453D01* X17177Y5453D01* X17169Y5452D01* X17161Y5449D01* X17153Y5445D01* X17146Y5439D01* X17140Y5433D01* X17136Y5425D01* X17133Y5417D01* X17124Y5391D01* X17113Y5366D01* X17100Y5343D01* X17085Y5320D01* X17068Y5299D01* X17064Y5295D01* Y5704D01* X17064Y5704D01* X17082Y5683D01* X17097Y5661D01* X17111Y5637D01* X17122Y5613D01* X17131Y5587D01* X17135Y5579D01* X17139Y5572D01* X17145Y5565D01* X17152Y5560D01* X17160Y5556D01* X17168Y5553D01* X17177Y5552D01* X17185Y5552D01* X17194Y5554D01* X17202Y5557D01* X17209Y5562D01* X17216Y5568D01* X17221Y5575D01* X17225Y5582D01* X17228Y5591D01* X17229Y5599D01* X17229Y5608D01* X17227Y5617D01* X17215Y5651D01* X17200Y5683D01* X17182Y5715D01* X17161Y5744D01* X17137Y5772D01* X17112Y5797D01* X17084Y5820D01* X17064Y5834D01* Y7180D01* X17069Y7183D01* X17097Y7207D01* X17122Y7232D01* X17145Y7260D01* X17165Y7290D01* X17183Y7322D01* X17197Y7355D01* X17209Y7389D01* X17211Y7398D01* X17211Y7407D01* X17210Y7415D01* X17207Y7423D01* X17202Y7431D01* X17197Y7438D01* X17190Y7444D01* X17183Y7448D01* X17175Y7451D01* X17166Y7453D01* X17157Y7453D01* X17149Y7452D01* X17141Y7449D01* X17133Y7445D01* X17126Y7439D01* X17120Y7433D01* X17116Y7425D01* X17113Y7417D01* X17104Y7391D01* X17093Y7366D01* X17080Y7343D01* X17065Y7320D01* X17064Y7319D01* Y7680D01* X17077Y7661D01* X17091Y7637D01* X17102Y7613D01* X17111Y7587D01* X17115Y7579D01* X17119Y7572D01* X17125Y7565D01* X17132Y7560D01* X17140Y7556D01* X17148Y7553D01* X17157Y7552D01* X17165Y7552D01* X17174Y7554D01* X17182Y7557D01* X17189Y7562D01* X17196Y7568D01* X17201Y7575D01* X17205Y7582D01* X17208Y7591D01* X17209Y7599D01* X17209Y7608D01* X17207Y7617D01* X17195Y7651D01* X17180Y7683D01* X17162Y7715D01* X17141Y7744D01* X17117Y7772D01* X17092Y7797D01* X17064Y7820D01* Y9196D01* X17077Y9207D01* X17102Y9232D01* X17125Y9260D01* X17145Y9290D01* X17163Y9322D01* X17177Y9355D01* X17189Y9389D01* X17191Y9398D01* X17191Y9407D01* X17190Y9415D01* X17187Y9423D01* X17182Y9431D01* X17177Y9438D01* X17170Y9444D01* X17163Y9448D01* X17155Y9451D01* X17146Y9453D01* X17137Y9453D01* X17129Y9452D01* X17121Y9449D01* X17113Y9445D01* X17106Y9439D01* X17100Y9433D01* X17096Y9425D01* X17093Y9417D01* X17084Y9391D01* X17073Y9366D01* X17064Y9350D01* Y9650D01* X17071Y9637D01* X17082Y9613D01* X17091Y9587D01* X17095Y9579D01* X17099Y9572D01* X17105Y9565D01* X17112Y9560D01* X17120Y9556D01* X17128Y9553D01* X17137Y9552D01* X17145Y9552D01* X17154Y9554D01* X17162Y9557D01* X17169Y9562D01* X17176Y9568D01* X17181Y9575D01* X17185Y9582D01* X17188Y9591D01* X17189Y9599D01* X17189Y9608D01* X17187Y9617D01* X17175Y9651D01* X17160Y9683D01* X17142Y9715D01* X17121Y9744D01* X17097Y9772D01* X17072Y9797D01* X17064Y9804D01* Y11214D01* X17082Y11232D01* X17105Y11260D01* X17125Y11290D01* X17143Y11322D01* X17157Y11355D01* X17169Y11389D01* X17171Y11398D01* X17171Y11407D01* X17170Y11415D01* X17167Y11423D01* X17162Y11431D01* X17157Y11438D01* X17150Y11444D01* X17143Y11448D01* X17135Y11451D01* X17126Y11453D01* X17117Y11453D01* X17109Y11452D01* X17101Y11449D01* X17093Y11445D01* X17086Y11439D01* X17080Y11433D01* X17076Y11425D01* X17073Y11417D01* X17064Y11391D01* X17064Y11391D01* Y11608D01* X17071Y11587D01* X17075Y11579D01* X17079Y11572D01* X17085Y11565D01* X17092Y11560D01* X17100Y11556D01* X17108Y11553D01* X17117Y11552D01* X17125Y11552D01* X17134Y11554D01* X17142Y11557D01* X17149Y11562D01* X17156Y11568D01* X17161Y11575D01* X17165Y11582D01* X17168Y11591D01* X17169Y11599D01* X17169Y11608D01* X17167Y11617D01* X17155Y11651D01* X17140Y11683D01* X17122Y11715D01* X17101Y11744D01* X17077Y11772D01* X17064Y11785D01* Y13235D01* X17085Y13260D01* X17105Y13290D01* X17123Y13322D01* X17137Y13355D01* X17149Y13389D01* X17151Y13398D01* X17151Y13407D01* X17150Y13415D01* X17147Y13423D01* X17142Y13431D01* X17137Y13438D01* X17130Y13444D01* X17123Y13448D01* X17115Y13451D01* X17106Y13453D01* X17097Y13453D01* X17089Y13452D01* X17081Y13449D01* X17073Y13445D01* X17066Y13439D01* X17064Y13437D01* Y13567D01* X17065Y13565D01* X17072Y13560D01* X17080Y13556D01* X17088Y13553D01* X17097Y13552D01* X17105Y13552D01* X17114Y13554D01* X17122Y13557D01* X17129Y13562D01* X17136Y13568D01* X17141Y13575D01* X17145Y13582D01* X17148Y13591D01* X17149Y13599D01* X17149Y13608D01* X17147Y13617D01* X17135Y13651D01* X17120Y13683D01* X17102Y13715D01* X17081Y13744D01* X17064Y13764D01* Y15259D01* X17065Y15260D01* X17085Y15290D01* X17103Y15322D01* X17117Y15355D01* X17129Y15389D01* X17131Y15398D01* X17131Y15407D01* X17130Y15415D01* X17127Y15423D01* X17122Y15431D01* X17117Y15438D01* X17110Y15444D01* X17103Y15448D01* X17095Y15451D01* X17086Y15453D01* X17077Y15453D01* X17069Y15452D01* X17064Y15450D01* Y15555D01* X17068Y15553D01* X17077Y15552D01* X17085Y15552D01* X17094Y15554D01* X17102Y15557D01* X17109Y15562D01* X17116Y15568D01* X17121Y15575D01* X17125Y15582D01* X17128Y15591D01* X17129Y15599D01* X17129Y15608D01* X17127Y15617D01* X17115Y15651D01* X17100Y15683D01* X17082Y15715D01* X17064Y15740D01* Y17288D01* X17065Y17290D01* X17083Y17322D01* X17097Y17355D01* X17109Y17389D01* X17111Y17398D01* X17111Y17407D01* X17110Y17415D01* X17107Y17423D01* X17102Y17431D01* X17097Y17438D01* X17090Y17444D01* X17083Y17448D01* X17075Y17451D01* X17066Y17453D01* X17064D01* Y17552D01* X17065D01* X17074Y17554D01* X17082Y17557D01* X17089Y17562D01* X17096Y17568D01* X17101Y17575D01* X17105Y17582D01* X17108Y17591D01* X17109Y17599D01* X17109Y17608D01* X17107Y17617D01* X17095Y17651D01* X17080Y17683D01* X17064Y17711D01* Y19324D01* X17077Y19355D01* X17089Y19389D01* X17091Y19398D01* X17091Y19407D01* X17090Y19415D01* X17087Y19423D01* X17082Y19431D01* X17077Y19438D01* X17070Y19444D01* X17064Y19447D01* Y19559D01* X17069Y19562D01* X17076Y19568D01* X17081Y19575D01* X17085Y19582D01* X17088Y19591D01* X17089Y19599D01* X17089Y19608D01* X17087Y19617D01* X17075Y19651D01* X17064Y19674D01* Y21374D01* X17069Y21389D01* X17071Y21398D01* X17071Y21407D01* X17070Y21415D01* X17067Y21423D01* X17064Y21428D01* Y21580D01* X17065Y21582D01* X17068Y21591D01* X17069Y21599D01* X17069Y21608D01* X17067Y21617D01* X17064Y21625D01* Y40000D01* G37* G36* X18445D02*X18625D01* Y39881D01* X18615Y39884D01* X18606Y39886D01* X18597Y39886D01* X18589Y39885D01* X18581Y39882D01* X18573Y39878D01* X18566Y39872D01* X18560Y39865D01* X18556Y39858D01* X18553Y39850D01* X18551Y39841D01* X18551Y39833D01* X18552Y39824D01* X18555Y39816D01* X18559Y39808D01* X18565Y39801D01* X18572Y39796D01* X18579Y39791D01* X18587Y39788D01* X18613Y39779D01* X18625Y39774D01* Y39225D01* X18618Y39222D01* X18592Y39213D01* X18584Y39209D01* X18577Y39205D01* X18570Y39199D01* X18565Y39192D01* X18561Y39184D01* X18558Y39176D01* X18557Y39167D01* X18557Y39159D01* X18559Y39150D01* X18562Y39142D01* X18567Y39135D01* X18573Y39128D01* X18580Y39123D01* X18587Y39119D01* X18596Y39116D01* X18604Y39115D01* X18613Y39115D01* X18621Y39117D01* X18625Y39118D01* Y37886D01* X18617Y37886D01* X18609Y37885D01* X18601Y37882D01* X18593Y37878D01* X18586Y37872D01* X18580Y37865D01* X18576Y37858D01* X18573Y37850D01* X18571Y37841D01* X18571Y37833D01* X18572Y37824D01* X18575Y37816D01* X18579Y37808D01* X18585Y37801D01* X18592Y37796D01* X18599Y37791D01* X18607Y37788D01* X18625Y37782D01* Y37217D01* X18612Y37213D01* X18604Y37209D01* X18597Y37205D01* X18590Y37199D01* X18585Y37192D01* X18581Y37184D01* X18578Y37176D01* X18577Y37167D01* X18577Y37159D01* X18579Y37150D01* X18582Y37142D01* X18587Y37135D01* X18593Y37128D01* X18600Y37123D01* X18607Y37119D01* X18616Y37116D01* X18624Y37115D01* X18625D01* Y35883D01* X18621Y35882D01* X18613Y35878D01* X18606Y35872D01* X18600Y35865D01* X18596Y35858D01* X18593Y35850D01* X18591Y35841D01* X18591Y35833D01* X18592Y35824D01* X18595Y35816D01* X18599Y35808D01* X18605Y35801D01* X18612Y35796D01* X18619Y35791D01* X18625Y35789D01* Y35210D01* X18624Y35209D01* X18617Y35205D01* X18610Y35199D01* X18605Y35192D01* X18601Y35184D01* X18598Y35176D01* X18597Y35167D01* X18597Y35159D01* X18599Y35150D01* X18602Y35142D01* X18607Y35135D01* X18613Y35128D01* X18620Y35123D01* X18625Y35120D01* Y33871D01* X18620Y33865D01* X18616Y33858D01* X18613Y33850D01* X18611Y33841D01* X18611Y33833D01* X18612Y33824D01* X18615Y33816D01* X18619Y33808D01* X18625Y33801D01* X18625Y33801D01* Y33192D01* X18625Y33192D01* X18621Y33184D01* X18618Y33176D01* X18617Y33167D01* X18617Y33159D01* X18619Y33150D01* X18622Y33142D01* X18625Y33138D01* Y21859D01* X18622Y21864D01* X18616Y21871D01* X18609Y21876D01* X18602Y21880D01* X18593Y21883D01* X18585Y21884D01* X18576Y21884D01* X18568Y21882D01* X18533Y21870D01* X18501Y21855D01* X18469Y21837D01* X18445Y21820D01* Y23166D01* X18455Y23159D01* X18487Y23141D01* X18520Y23127D01* X18554Y23115D01* X18563Y23113D01* X18572Y23113D01* X18580Y23115D01* X18588Y23117D01* X18596Y23122D01* X18603Y23127D01* X18609Y23134D01* X18613Y23141D01* X18616Y23149D01* X18618Y23158D01* X18618Y23167D01* X18617Y23175D01* X18614Y23183D01* X18610Y23191D01* X18604Y23198D01* X18597Y23204D01* X18590Y23208D01* X18582Y23211D01* X18556Y23220D01* X18531Y23231D01* X18508Y23244D01* X18485Y23259D01* X18464Y23276D01* X18445Y23295D01* Y23704D01* X18460Y23719D01* X18481Y23737D01* X18503Y23752D01* X18527Y23766D01* X18551Y23777D01* X18577Y23786D01* X18585Y23790D01* X18592Y23794D01* X18599Y23800D01* X18604Y23807D01* X18608Y23815D01* X18611Y23823D01* X18612Y23832D01* X18612Y23840D01* X18610Y23849D01* X18607Y23857D01* X18602Y23864D01* X18596Y23871D01* X18589Y23876D01* X18582Y23880D01* X18573Y23883D01* X18565Y23884D01* X18556Y23884D01* X18548Y23882D01* X18513Y23870D01* X18481Y23855D01* X18449Y23837D01* X18445Y23834D01* Y25153D01* X18467Y25141D01* X18500Y25127D01* X18534Y25115D01* X18543Y25113D01* X18552Y25113D01* X18560Y25115D01* X18568Y25117D01* X18576Y25122D01* X18583Y25127D01* X18589Y25134D01* X18593Y25141D01* X18596Y25149D01* X18598Y25158D01* X18598Y25167D01* X18597Y25175D01* X18594Y25183D01* X18590Y25191D01* X18584Y25198D01* X18577Y25204D01* X18570Y25208D01* X18562Y25211D01* X18536Y25220D01* X18511Y25231D01* X18488Y25244D01* X18465Y25259D01* X18445Y25276D01* Y25723D01* X18461Y25737D01* X18483Y25752D01* X18507Y25766D01* X18531Y25777D01* X18557Y25786D01* X18565Y25790D01* X18572Y25794D01* X18579Y25800D01* X18584Y25807D01* X18588Y25815D01* X18591Y25823D01* X18592Y25832D01* X18592Y25840D01* X18590Y25849D01* X18587Y25857D01* X18582Y25864D01* X18576Y25871D01* X18569Y25876D01* X18562Y25880D01* X18553Y25883D01* X18545Y25884D01* X18536Y25884D01* X18528Y25882D01* X18493Y25870D01* X18461Y25855D01* X18445Y25846D01* Y27142D01* X18447Y27141D01* X18480Y27127D01* X18514Y27115D01* X18523Y27113D01* X18532Y27113D01* X18540Y27115D01* X18548Y27117D01* X18556Y27122D01* X18563Y27127D01* X18569Y27134D01* X18573Y27141D01* X18576Y27149D01* X18578Y27158D01* X18578Y27167D01* X18577Y27175D01* X18574Y27183D01* X18570Y27191D01* X18564Y27198D01* X18557Y27204D01* X18550Y27208D01* X18542Y27211D01* X18516Y27220D01* X18491Y27231D01* X18468Y27244D01* X18445Y27259D01* Y27740D01* X18463Y27752D01* X18487Y27766D01* X18511Y27777D01* X18537Y27786D01* X18545Y27790D01* X18552Y27794D01* X18559Y27800D01* X18564Y27807D01* X18568Y27815D01* X18571Y27823D01* X18572Y27832D01* X18572Y27840D01* X18570Y27849D01* X18567Y27857D01* X18562Y27864D01* X18556Y27871D01* X18549Y27876D01* X18542Y27880D01* X18533Y27883D01* X18525Y27884D01* X18516Y27884D01* X18508Y27882D01* X18473Y27870D01* X18445Y27857D01* Y29133D01* X18460Y29127D01* X18494Y29115D01* X18503Y29113D01* X18512Y29113D01* X18520Y29115D01* X18528Y29117D01* X18536Y29122D01* X18543Y29127D01* X18549Y29134D01* X18553Y29141D01* X18556Y29149D01* X18558Y29158D01* X18558Y29167D01* X18557Y29175D01* X18554Y29183D01* X18550Y29191D01* X18544Y29198D01* X18537Y29204D01* X18530Y29208D01* X18522Y29211D01* X18496Y29220D01* X18471Y29231D01* X18448Y29244D01* X18445Y29246D01* Y29754D01* X18467Y29766D01* X18491Y29777D01* X18517Y29786D01* X18525Y29790D01* X18532Y29794D01* X18539Y29800D01* X18544Y29807D01* X18548Y29815D01* X18551Y29823D01* X18552Y29832D01* X18552Y29840D01* X18550Y29849D01* X18547Y29857D01* X18542Y29864D01* X18536Y29871D01* X18529Y29876D01* X18522Y29880D01* X18513Y29883D01* X18505Y29884D01* X18496Y29884D01* X18488Y29882D01* X18453Y29870D01* X18445Y29866D01* Y31125D01* X18474Y31115D01* X18483Y31113D01* X18492Y31113D01* X18500Y31115D01* X18508Y31117D01* X18516Y31122D01* X18523Y31127D01* X18529Y31134D01* X18533Y31141D01* X18536Y31149D01* X18538Y31158D01* X18538Y31167D01* X18537Y31175D01* X18534Y31183D01* X18530Y31191D01* X18524Y31198D01* X18517Y31204D01* X18510Y31208D01* X18502Y31211D01* X18476Y31220D01* X18451Y31231D01* X18445Y31234D01* Y31765D01* X18447Y31766D01* X18471Y31777D01* X18497Y31786D01* X18505Y31790D01* X18512Y31794D01* X18519Y31800D01* X18524Y31807D01* X18528Y31815D01* X18531Y31823D01* X18532Y31832D01* X18532Y31840D01* X18530Y31849D01* X18527Y31857D01* X18522Y31864D01* X18516Y31871D01* X18509Y31876D01* X18502Y31880D01* X18493Y31883D01* X18485Y31884D01* X18476Y31884D01* X18468Y31882D01* X18445Y31874D01* Y33118D01* X18454Y33115D01* X18463Y33113D01* X18472Y33113D01* X18480Y33115D01* X18488Y33117D01* X18496Y33122D01* X18503Y33127D01* X18509Y33134D01* X18513Y33141D01* X18516Y33149D01* X18518Y33158D01* X18518Y33167D01* X18517Y33175D01* X18514Y33183D01* X18510Y33191D01* X18504Y33198D01* X18497Y33204D01* X18490Y33208D01* X18482Y33211D01* X18456Y33220D01* X18445Y33225D01* Y33775D01* X18451Y33777D01* X18477Y33786D01* X18485Y33790D01* X18492Y33794D01* X18499Y33800D01* X18504Y33807D01* X18508Y33815D01* X18511Y33823D01* X18512Y33832D01* X18512Y33840D01* X18510Y33849D01* X18507Y33857D01* X18502Y33864D01* X18496Y33871D01* X18489Y33876D01* X18482Y33880D01* X18473Y33883D01* X18465Y33884D01* X18456Y33884D01* X18448Y33882D01* X18445Y33881D01* Y35113D01* X18452Y35113D01* X18460Y35115D01* X18468Y35117D01* X18476Y35122D01* X18483Y35127D01* X18489Y35134D01* X18493Y35141D01* X18496Y35149D01* X18498Y35158D01* X18498Y35167D01* X18497Y35175D01* X18494Y35183D01* X18490Y35191D01* X18484Y35198D01* X18477Y35204D01* X18470Y35208D01* X18462Y35211D01* X18445Y35217D01* Y35782D01* X18457Y35786D01* X18465Y35790D01* X18472Y35794D01* X18479Y35800D01* X18484Y35807D01* X18488Y35815D01* X18491Y35823D01* X18492Y35832D01* X18492Y35840D01* X18490Y35849D01* X18487Y35857D01* X18482Y35864D01* X18476Y35871D01* X18469Y35876D01* X18462Y35880D01* X18453Y35883D01* X18445Y35884D01* Y37116D01* X18448Y37117D01* X18456Y37122D01* X18463Y37127D01* X18469Y37134D01* X18473Y37141D01* X18476Y37149D01* X18478Y37158D01* X18478Y37167D01* X18477Y37175D01* X18474Y37183D01* X18470Y37191D01* X18464Y37198D01* X18457Y37204D01* X18450Y37208D01* X18445Y37210D01* Y37790D01* X18452Y37794D01* X18459Y37800D01* X18464Y37807D01* X18468Y37815D01* X18471Y37823D01* X18472Y37832D01* X18472Y37840D01* X18470Y37849D01* X18467Y37857D01* X18462Y37864D01* X18456Y37871D01* X18449Y37876D01* X18445Y37878D01* Y39130D01* X18449Y39134D01* X18453Y39141D01* X18456Y39149D01* X18458Y39158D01* X18458Y39167D01* X18457Y39175D01* X18454Y39183D01* X18450Y39191D01* X18445Y39197D01* Y39809D01* X18448Y39815D01* X18451Y39823D01* X18452Y39832D01* X18452Y39840D01* X18450Y39849D01* X18447Y39857D01* X18445Y39859D01* Y40000D01* G37* G36* X18625Y0D02*X18445D01* Y7374D01* X18454Y7349D01* X18469Y7316D01* X18487Y7284D01* X18508Y7255D01* X18532Y7227D01* X18557Y7202D01* X18585Y7179D01* X18615Y7159D01* X18625Y7153D01* Y5834D01* X18600Y5816D01* X18572Y5793D01* X18547Y5767D01* X18524Y5739D01* X18504Y5709D01* X18486Y5677D01* X18472Y5644D01* X18460Y5610D01* X18458Y5601D01* X18458Y5593D01* X18459Y5584D01* X18462Y5576D01* X18467Y5568D01* X18472Y5561D01* X18479Y5556D01* X18486Y5551D01* X18494Y5548D01* X18503Y5546D01* X18512Y5546D01* X18520Y5547D01* X18528Y5550D01* X18536Y5555D01* X18543Y5560D01* X18549Y5567D01* X18553Y5574D01* X18556Y5582D01* X18565Y5608D01* X18576Y5633D01* X18589Y5657D01* X18604Y5679D01* X18621Y5700D01* X18625Y5704D01* Y5295D01* X18625Y5295D01* X18607Y5316D01* X18592Y5338D01* X18578Y5362D01* X18567Y5386D01* X18558Y5412D01* X18554Y5420D01* X18550Y5427D01* X18544Y5434D01* X18537Y5439D01* X18529Y5443D01* X18521Y5446D01* X18512Y5447D01* X18504Y5447D01* X18495Y5445D01* X18487Y5442D01* X18480Y5437D01* X18473Y5431D01* X18468Y5424D01* X18464Y5417D01* X18461Y5409D01* X18460Y5400D01* X18460Y5391D01* X18462Y5383D01* X18474Y5349D01* X18489Y5316D01* X18507Y5284D01* X18528Y5255D01* X18552Y5227D01* X18577Y5202D01* X18605Y5179D01* X18625Y5166D01* Y3820D01* X18620Y3816D01* X18592Y3793D01* X18567Y3767D01* X18544Y3739D01* X18524Y3709D01* X18506Y3677D01* X18492Y3644D01* X18480Y3610D01* X18478Y3601D01* X18478Y3593D01* X18479Y3584D01* X18482Y3576D01* X18487Y3568D01* X18492Y3561D01* X18499Y3556D01* X18506Y3551D01* X18514Y3548D01* X18523Y3546D01* X18532Y3546D01* X18540Y3547D01* X18548Y3550D01* X18556Y3555D01* X18563Y3560D01* X18569Y3567D01* X18573Y3574D01* X18576Y3582D01* X18585Y3608D01* X18596Y3633D01* X18609Y3657D01* X18624Y3679D01* X18625Y3680D01* Y3319D01* X18612Y3338D01* X18598Y3362D01* X18587Y3386D01* X18578Y3412D01* X18574Y3420D01* X18570Y3427D01* X18564Y3434D01* X18557Y3439D01* X18549Y3443D01* X18541Y3446D01* X18532Y3447D01* X18524Y3447D01* X18515Y3445D01* X18507Y3442D01* X18500Y3437D01* X18493Y3431D01* X18488Y3424D01* X18484Y3417D01* X18481Y3409D01* X18480Y3400D01* X18480Y3391D01* X18482Y3383D01* X18494Y3349D01* X18509Y3316D01* X18527Y3284D01* X18548Y3255D01* X18572Y3227D01* X18597Y3202D01* X18625Y3179D01* Y1804D01* X18612Y1793D01* X18587Y1767D01* X18564Y1739D01* X18544Y1709D01* X18526Y1677D01* X18512Y1644D01* X18500Y1610D01* X18498Y1601D01* X18498Y1593D01* X18499Y1584D01* X18502Y1576D01* X18507Y1568D01* X18512Y1561D01* X18519Y1556D01* X18526Y1551D01* X18534Y1548D01* X18543Y1546D01* X18552Y1546D01* X18560Y1547D01* X18568Y1550D01* X18576Y1555D01* X18583Y1560D01* X18589Y1567D01* X18593Y1574D01* X18596Y1582D01* X18605Y1608D01* X18616Y1633D01* X18625Y1650D01* Y1349D01* X18618Y1362D01* X18607Y1386D01* X18598Y1412D01* X18594Y1420D01* X18590Y1427D01* X18584Y1434D01* X18577Y1439D01* X18569Y1443D01* X18561Y1446D01* X18552Y1447D01* X18544Y1447D01* X18535Y1445D01* X18527Y1442D01* X18520Y1437D01* X18513Y1431D01* X18508Y1424D01* X18504Y1417D01* X18501Y1409D01* X18500Y1400D01* X18500Y1391D01* X18502Y1383D01* X18514Y1349D01* X18529Y1316D01* X18547Y1284D01* X18568Y1255D01* X18592Y1227D01* X18617Y1202D01* X18625Y1196D01* Y0D01* G37* G36* Y7276D02*X18624Y7276D01* X18605Y7295D01* X18587Y7316D01* X18572Y7338D01* X18558Y7362D01* X18547Y7386D01* X18538Y7412D01* X18534Y7420D01* X18530Y7427D01* X18524Y7434D01* X18517Y7439D01* X18509Y7443D01* X18501Y7446D01* X18492Y7447D01* X18484Y7447D01* X18475Y7445D01* X18467Y7442D01* X18460Y7437D01* X18453Y7431D01* X18448Y7424D01* X18445Y7419D01* Y7571D01* X18447Y7568D01* X18452Y7561D01* X18459Y7556D01* X18466Y7551D01* X18474Y7548D01* X18483Y7546D01* X18492Y7546D01* X18500Y7547D01* X18508Y7550D01* X18516Y7555D01* X18523Y7560D01* X18529Y7567D01* X18533Y7574D01* X18536Y7582D01* X18545Y7608D01* X18556Y7633D01* X18569Y7657D01* X18584Y7679D01* X18601Y7700D01* X18620Y7719D01* X18625Y7723D01* Y7276D01* G37* G36* Y7846D02*X18609Y7837D01* X18580Y7816D01* X18552Y7793D01* X18527Y7767D01* X18504Y7739D01* X18484Y7709D01* X18466Y7677D01* X18452Y7644D01* X18445Y7625D01* Y9325D01* X18449Y9316D01* X18467Y9284D01* X18488Y9255D01* X18512Y9227D01* X18537Y9202D01* X18565Y9179D01* X18595Y9159D01* X18625Y9142D01* Y7846D01* G37* G36* Y9259D02*X18625Y9259D01* X18604Y9276D01* X18585Y9295D01* X18567Y9316D01* X18552Y9338D01* X18538Y9362D01* X18527Y9386D01* X18518Y9412D01* X18514Y9420D01* X18510Y9427D01* X18504Y9434D01* X18497Y9439D01* X18489Y9443D01* X18481Y9446D01* X18472Y9447D01* X18464Y9447D01* X18455Y9445D01* X18447Y9442D01* X18445Y9441D01* Y9552D01* X18446Y9551D01* X18454Y9548D01* X18463Y9546D01* X18472Y9546D01* X18480Y9547D01* X18488Y9550D01* X18496Y9555D01* X18503Y9560D01* X18509Y9567D01* X18513Y9574D01* X18516Y9582D01* X18525Y9608D01* X18536Y9633D01* X18549Y9657D01* X18564Y9679D01* X18581Y9700D01* X18600Y9719D01* X18621Y9737D01* X18625Y9740D01* Y9259D01* G37* G36* Y9857D02*X18621Y9855D01* X18589Y9837D01* X18560Y9816D01* X18532Y9793D01* X18507Y9767D01* X18484Y9739D01* X18464Y9709D01* X18446Y9677D01* X18445Y9675D01* Y11288D01* X18447Y11284D01* X18468Y11255D01* X18492Y11227D01* X18517Y11202D01* X18545Y11179D01* X18575Y11159D01* X18607Y11141D01* X18625Y11133D01* Y9857D01* G37* G36* Y11246D02*X18605Y11259D01* X18584Y11276D01* X18565Y11295D01* X18547Y11316D01* X18532Y11338D01* X18518Y11362D01* X18507Y11386D01* X18498Y11412D01* X18494Y11420D01* X18490Y11427D01* X18484Y11434D01* X18477Y11439D01* X18469Y11443D01* X18461Y11446D01* X18452Y11447D01* X18445Y11447D01* Y11546D01* X18452Y11546D01* X18460Y11547D01* X18468Y11550D01* X18476Y11555D01* X18483Y11560D01* X18489Y11567D01* X18493Y11574D01* X18496Y11582D01* X18505Y11608D01* X18516Y11633D01* X18529Y11657D01* X18544Y11679D01* X18561Y11700D01* X18580Y11719D01* X18601Y11737D01* X18623Y11752D01* X18625Y11754D01* Y11246D01* G37* G36* Y11866D02*X18601Y11855D01* X18569Y11837D01* X18540Y11816D01* X18512Y11793D01* X18487Y11767D01* X18464Y11739D01* X18445Y11711D01* Y13259D01* X18448Y13255D01* X18472Y13227D01* X18497Y13202D01* X18525Y13179D01* X18555Y13159D01* X18587Y13141D01* X18620Y13127D01* X18625Y13125D01* Y11866D01* G37* G36* Y13234D02*X18608Y13244D01* X18585Y13259D01* X18564Y13276D01* X18545Y13295D01* X18527Y13316D01* X18512Y13338D01* X18498Y13362D01* X18487Y13386D01* X18478Y13412D01* X18474Y13420D01* X18470Y13427D01* X18464Y13434D01* X18457Y13439D01* X18449Y13443D01* X18445Y13445D01* Y13549D01* X18448Y13550D01* X18456Y13555D01* X18463Y13560D01* X18469Y13567D01* X18473Y13574D01* X18476Y13582D01* X18485Y13608D01* X18496Y13633D01* X18509Y13657D01* X18524Y13679D01* X18541Y13700D01* X18560Y13719D01* X18581Y13737D01* X18603Y13752D01* X18625Y13765D01* Y13234D01* G37* G36* Y13874D02*X18613Y13870D01* X18581Y13855D01* X18549Y13837D01* X18520Y13816D01* X18492Y13793D01* X18467Y13767D01* X18445Y13740D01* Y15235D01* X18452Y15227D01* X18477Y15202D01* X18505Y15179D01* X18535Y15159D01* X18567Y15141D01* X18600Y15127D01* X18625Y15118D01* Y13874D01* G37* G36* Y15225D02*X18611Y15231D01* X18588Y15244D01* X18565Y15259D01* X18544Y15276D01* X18525Y15295D01* X18507Y15316D01* X18492Y15338D01* X18478Y15362D01* X18467Y15386D01* X18458Y15412D01* X18454Y15420D01* X18450Y15427D01* X18445Y15432D01* Y15563D01* X18449Y15567D01* X18453Y15574D01* X18456Y15582D01* X18465Y15608D01* X18476Y15633D01* X18489Y15657D01* X18504Y15679D01* X18521Y15700D01* X18540Y15719D01* X18561Y15737D01* X18583Y15752D01* X18607Y15766D01* X18625Y15775D01* Y15225D01* G37* G36* Y15881D02*X18593Y15870D01* X18561Y15855D01* X18529Y15837D01* X18500Y15816D01* X18472Y15793D01* X18447Y15767D01* X18445Y15765D01* Y17214D01* X18457Y17202D01* X18485Y17179D01* X18515Y17159D01* X18547Y17141D01* X18580Y17127D01* X18614Y17115D01* X18623Y17113D01* X18625D01* Y15881D01* G37* G36* Y17217D02*X18616Y17220D01* X18591Y17231D01* X18568Y17244D01* X18545Y17259D01* X18524Y17276D01* X18505Y17295D01* X18487Y17316D01* X18472Y17338D01* X18458Y17362D01* X18447Y17386D01* X18445Y17391D01* Y17609D01* X18456Y17633D01* X18469Y17657D01* X18484Y17679D01* X18501Y17700D01* X18520Y17719D01* X18541Y17737D01* X18563Y17752D01* X18587Y17766D01* X18611Y17777D01* X18625Y17782D01* Y17217D01* G37* G36* Y17884D02*X18625Y17884D01* X18616Y17884D01* X18608Y17882D01* X18573Y17870D01* X18541Y17855D01* X18509Y17837D01* X18480Y17816D01* X18452Y17793D01* X18445Y17785D01* Y19196D01* X18465Y19179D01* X18495Y19159D01* X18527Y19141D01* X18560Y19127D01* X18594Y19115D01* X18603Y19113D01* X18612Y19113D01* X18620Y19115D01* X18625Y19116D01* Y17884D01* G37* G36* Y19210D02*X18622Y19211D01* X18596Y19220D01* X18571Y19231D01* X18548Y19244D01* X18525Y19259D01* X18504Y19276D01* X18485Y19295D01* X18467Y19316D01* X18452Y19338D01* X18445Y19349D01* Y19650D01* X18449Y19657D01* X18464Y19679D01* X18481Y19700D01* X18500Y19719D01* X18521Y19737D01* X18543Y19752D01* X18567Y19766D01* X18591Y19777D01* X18617Y19786D01* X18625Y19790D01* X18625Y19790D01* Y19210D01* G37* G36* Y19878D02*X18622Y19880D01* X18613Y19883D01* X18605Y19884D01* X18596Y19884D01* X18588Y19882D01* X18553Y19870D01* X18521Y19855D01* X18489Y19837D01* X18460Y19816D01* X18445Y19804D01* Y21179D01* X18445Y21179D01* X18475Y21159D01* X18507Y21141D01* X18540Y21127D01* X18574Y21115D01* X18583Y21113D01* X18592Y21113D01* X18600Y21115D01* X18608Y21117D01* X18616Y21122D01* X18623Y21127D01* X18625Y21130D01* Y19878D01* G37* G36* Y21197D02*X18624Y21198D01* X18617Y21204D01* X18610Y21208D01* X18602Y21211D01* X18576Y21220D01* X18551Y21231D01* X18528Y21244D01* X18505Y21259D01* X18484Y21276D01* X18465Y21295D01* X18447Y21316D01* X18445Y21319D01* Y21680D01* X18461Y21700D01* X18480Y21719D01* X18501Y21737D01* X18523Y21752D01* X18547Y21766D01* X18571Y21777D01* X18597Y21786D01* X18605Y21790D01* X18612Y21794D01* X18619Y21800D01* X18624Y21807D01* X18625Y21809D01* Y21197D01* G37* G36* Y40000D02*X18884D01* Y39625D01* X18875Y39651D01* X18860Y39683D01* X18842Y39715D01* X18821Y39744D01* X18797Y39772D01* X18772Y39797D01* X18744Y39820D01* X18714Y39840D01* X18682Y39858D01* X18649Y39873D01* X18625Y39881D01* Y40000D01* G37* G36* Y39774D02*X18638Y39768D01* X18661Y39755D01* X18684Y39740D01* X18705Y39723D01* X18724Y39704D01* X18742Y39683D01* X18757Y39661D01* X18771Y39637D01* X18782Y39613D01* X18791Y39587D01* X18795Y39579D01* X18799Y39572D01* X18805Y39565D01* X18812Y39560D01* X18820Y39556D01* X18828Y39553D01* X18837Y39552D01* X18845Y39552D01* X18854Y39554D01* X18862Y39557D01* X18869Y39562D01* X18876Y39568D01* X18881Y39575D01* X18884Y39580D01* Y39428D01* X18882Y39431D01* X18877Y39438D01* X18870Y39444D01* X18863Y39448D01* X18855Y39451D01* X18846Y39453D01* X18837Y39453D01* X18829Y39452D01* X18821Y39449D01* X18813Y39445D01* X18806Y39439D01* X18800Y39433D01* X18796Y39425D01* X18793Y39417D01* X18784Y39391D01* X18773Y39366D01* X18760Y39343D01* X18745Y39320D01* X18728Y39299D01* X18709Y39280D01* X18688Y39262D01* X18666Y39247D01* X18642Y39233D01* X18625Y39225D01* Y39774D01* G37* G36* Y39118D02*X18656Y39129D01* X18688Y39144D01* X18720Y39162D01* X18749Y39183D01* X18777Y39207D01* X18802Y39232D01* X18825Y39260D01* X18845Y39290D01* X18863Y39322D01* X18877Y39355D01* X18884Y39374D01* Y37674D01* X18880Y37683D01* X18862Y37715D01* X18841Y37744D01* X18817Y37772D01* X18792Y37797D01* X18764Y37820D01* X18734Y37840D01* X18702Y37858D01* X18669Y37873D01* X18635Y37884D01* X18626Y37886D01* X18625D01* Y39118D01* G37* G36* Y37782D02*X18633Y37779D01* X18658Y37768D01* X18681Y37755D01* X18704Y37740D01* X18725Y37723D01* X18744Y37704D01* X18762Y37683D01* X18777Y37661D01* X18791Y37637D01* X18802Y37613D01* X18811Y37587D01* X18815Y37579D01* X18819Y37572D01* X18825Y37565D01* X18832Y37560D01* X18840Y37556D01* X18848Y37553D01* X18857Y37552D01* X18865Y37552D01* X18874Y37554D01* X18882Y37557D01* X18884Y37559D01* Y37447D01* X18883Y37448D01* X18875Y37451D01* X18866Y37453D01* X18857Y37453D01* X18849Y37452D01* X18841Y37449D01* X18833Y37445D01* X18826Y37439D01* X18820Y37433D01* X18816Y37425D01* X18813Y37417D01* X18804Y37391D01* X18793Y37366D01* X18780Y37343D01* X18765Y37320D01* X18748Y37299D01* X18729Y37280D01* X18708Y37262D01* X18686Y37247D01* X18662Y37233D01* X18638Y37222D01* X18625Y37217D01* Y37782D01* G37* G36* Y37115D02*X18633Y37115D01* X18641Y37117D01* X18676Y37129D01* X18708Y37144D01* X18740Y37162D01* X18769Y37183D01* X18797Y37207D01* X18822Y37232D01* X18845Y37260D01* X18865Y37290D01* X18883Y37322D01* X18884Y37324D01* Y35711D01* X18882Y35715D01* X18861Y35744D01* X18837Y35772D01* X18812Y35797D01* X18784Y35820D01* X18754Y35840D01* X18722Y35858D01* X18689Y35873D01* X18655Y35884D01* X18646Y35886D01* X18637Y35886D01* X18629Y35885D01* X18625Y35883D01* Y37115D01* G37* G36* Y35789D02*X18627Y35788D01* X18653Y35779D01* X18678Y35768D01* X18701Y35755D01* X18724Y35740D01* X18745Y35723D01* X18764Y35704D01* X18782Y35683D01* X18797Y35661D01* X18811Y35637D01* X18822Y35613D01* X18831Y35587D01* X18835Y35579D01* X18839Y35572D01* X18845Y35565D01* X18852Y35560D01* X18860Y35556D01* X18868Y35553D01* X18877Y35552D01* X18884Y35552D01* Y35453D01* X18877Y35453D01* X18869Y35452D01* X18861Y35449D01* X18853Y35445D01* X18846Y35439D01* X18840Y35433D01* X18836Y35425D01* X18833Y35417D01* X18824Y35391D01* X18813Y35366D01* X18800Y35343D01* X18785Y35320D01* X18768Y35299D01* X18749Y35280D01* X18728Y35262D01* X18706Y35247D01* X18682Y35233D01* X18658Y35222D01* X18632Y35213D01* X18625Y35210D01* Y35789D01* G37* G36* Y35120D02*X18627Y35119D01* X18636Y35116D01* X18644Y35115D01* X18653Y35115D01* X18661Y35117D01* X18696Y35129D01* X18728Y35144D01* X18760Y35162D01* X18789Y35183D01* X18817Y35207D01* X18842Y35232D01* X18865Y35260D01* X18884Y35288D01* Y33740D01* X18881Y33744D01* X18857Y33772D01* X18832Y33797D01* X18804Y33820D01* X18774Y33840D01* X18742Y33858D01* X18709Y33873D01* X18675Y33884D01* X18666Y33886D01* X18657Y33886D01* X18649Y33885D01* X18641Y33882D01* X18633Y33878D01* X18626Y33872D01* X18625Y33871D01* Y35120D01* G37* G36* Y33801D02*X18632Y33796D01* X18639Y33791D01* X18647Y33788D01* X18673Y33779D01* X18698Y33768D01* X18721Y33755D01* X18744Y33740D01* X18765Y33723D01* X18784Y33704D01* X18802Y33683D01* X18817Y33661D01* X18831Y33637D01* X18842Y33613D01* X18851Y33587D01* X18855Y33579D01* X18859Y33572D01* X18865Y33565D01* X18872Y33560D01* X18880Y33556D01* X18884Y33555D01* Y33450D01* X18881Y33449D01* X18873Y33445D01* X18866Y33439D01* X18860Y33433D01* X18856Y33425D01* X18853Y33417D01* X18844Y33391D01* X18833Y33366D01* X18820Y33343D01* X18805Y33320D01* X18788Y33299D01* X18769Y33280D01* X18748Y33262D01* X18726Y33247D01* X18702Y33233D01* X18678Y33222D01* X18652Y33213D01* X18644Y33209D01* X18637Y33205D01* X18630Y33199D01* X18625Y33192D01* Y33801D01* G37* G36* Y33138D02*X18627Y33135D01* X18633Y33128D01* X18640Y33123D01* X18647Y33119D01* X18656Y33116D01* X18664Y33115D01* X18673Y33115D01* X18681Y33117D01* X18716Y33129D01* X18748Y33144D01* X18780Y33162D01* X18809Y33183D01* X18837Y33207D01* X18862Y33232D01* X18884Y33259D01* Y31764D01* X18877Y31772D01* X18852Y31797D01* X18824Y31820D01* X18794Y31840D01* X18762Y31858D01* X18729Y31873D01* X18695Y31884D01* X18686Y31886D01* X18677Y31886D01* X18669Y31885D01* X18661Y31882D01* X18653Y31878D01* X18646Y31872D01* X18640Y31865D01* X18636Y31858D01* X18633Y31850D01* X18631Y31841D01* X18631Y31833D01* X18632Y31824D01* X18635Y31816D01* X18639Y31808D01* X18645Y31801D01* X18652Y31796D01* X18659Y31791D01* X18667Y31788D01* X18693Y31779D01* X18718Y31768D01* X18741Y31755D01* X18764Y31740D01* X18785Y31723D01* X18804Y31704D01* X18822Y31683D01* X18837Y31661D01* X18851Y31637D01* X18862Y31613D01* X18871Y31587D01* X18875Y31579D01* X18879Y31572D01* X18884Y31567D01* Y31437D01* X18880Y31433D01* X18876Y31425D01* X18873Y31417D01* X18864Y31391D01* X18853Y31366D01* X18840Y31343D01* X18825Y31320D01* X18808Y31299D01* X18789Y31280D01* X18768Y31262D01* X18746Y31247D01* X18722Y31233D01* X18698Y31222D01* X18672Y31213D01* X18664Y31209D01* X18657Y31205D01* X18650Y31199D01* X18645Y31192D01* X18641Y31184D01* X18638Y31176D01* X18637Y31167D01* X18637Y31159D01* X18639Y31150D01* X18642Y31142D01* X18647Y31135D01* X18653Y31128D01* X18660Y31123D01* X18667Y31119D01* X18676Y31116D01* X18684Y31115D01* X18693Y31115D01* X18701Y31117D01* X18736Y31129D01* X18768Y31144D01* X18800Y31162D01* X18829Y31183D01* X18857Y31207D01* X18882Y31232D01* X18884Y31235D01* Y29785D01* X18872Y29797D01* X18844Y29820D01* X18814Y29840D01* X18782Y29858D01* X18749Y29873D01* X18715Y29884D01* X18706Y29886D01* X18697Y29886D01* X18689Y29885D01* X18681Y29882D01* X18673Y29878D01* X18666Y29872D01* X18660Y29865D01* X18656Y29858D01* X18653Y29850D01* X18651Y29841D01* X18651Y29833D01* X18652Y29824D01* X18655Y29816D01* X18659Y29808D01* X18665Y29801D01* X18672Y29796D01* X18679Y29791D01* X18687Y29788D01* X18713Y29779D01* X18738Y29768D01* X18761Y29755D01* X18784Y29740D01* X18805Y29723D01* X18824Y29704D01* X18842Y29683D01* X18857Y29661D01* X18871Y29637D01* X18882Y29613D01* X18884Y29608D01* Y29391D01* X18873Y29366D01* X18860Y29343D01* X18845Y29320D01* X18828Y29299D01* X18809Y29280D01* X18788Y29262D01* X18766Y29247D01* X18742Y29233D01* X18718Y29222D01* X18692Y29213D01* X18684Y29209D01* X18677Y29205D01* X18670Y29199D01* X18665Y29192D01* X18661Y29184D01* X18658Y29176D01* X18657Y29167D01* X18657Y29159D01* X18659Y29150D01* X18662Y29142D01* X18667Y29135D01* X18673Y29128D01* X18680Y29123D01* X18687Y29119D01* X18696Y29116D01* X18704Y29115D01* X18713Y29115D01* X18721Y29117D01* X18756Y29129D01* X18788Y29144D01* X18820Y29162D01* X18849Y29183D01* X18877Y29207D01* X18884Y29214D01* Y27804D01* X18864Y27820D01* X18834Y27840D01* X18802Y27858D01* X18769Y27873D01* X18735Y27884D01* X18726Y27886D01* X18717Y27886D01* X18709Y27885D01* X18701Y27882D01* X18693Y27878D01* X18686Y27872D01* X18680Y27865D01* X18676Y27858D01* X18673Y27850D01* X18671Y27841D01* X18671Y27833D01* X18672Y27824D01* X18675Y27816D01* X18679Y27808D01* X18685Y27801D01* X18692Y27796D01* X18699Y27791D01* X18707Y27788D01* X18733Y27779D01* X18758Y27768D01* X18781Y27755D01* X18804Y27740D01* X18825Y27723D01* X18844Y27704D01* X18862Y27683D01* X18877Y27661D01* X18884Y27650D01* Y27350D01* X18880Y27343D01* X18865Y27320D01* X18848Y27299D01* X18829Y27280D01* X18808Y27262D01* X18786Y27247D01* X18762Y27233D01* X18738Y27222D01* X18712Y27213D01* X18704Y27209D01* X18697Y27205D01* X18690Y27199D01* X18685Y27192D01* X18681Y27184D01* X18678Y27176D01* X18677Y27167D01* X18677Y27159D01* X18679Y27150D01* X18682Y27142D01* X18687Y27135D01* X18693Y27128D01* X18700Y27123D01* X18707Y27119D01* X18716Y27116D01* X18724Y27115D01* X18733Y27115D01* X18741Y27117D01* X18776Y27129D01* X18808Y27144D01* X18840Y27162D01* X18869Y27183D01* X18884Y27196D01* Y25820D01* X18884Y25820D01* X18854Y25840D01* X18822Y25858D01* X18789Y25873D01* X18755Y25884D01* X18746Y25886D01* X18737Y25886D01* X18729Y25885D01* X18721Y25882D01* X18713Y25878D01* X18706Y25872D01* X18700Y25865D01* X18696Y25858D01* X18693Y25850D01* X18691Y25841D01* X18691Y25833D01* X18692Y25824D01* X18695Y25816D01* X18699Y25808D01* X18705Y25801D01* X18712Y25796D01* X18719Y25791D01* X18727Y25788D01* X18753Y25779D01* X18778Y25768D01* X18801Y25755D01* X18824Y25740D01* X18845Y25723D01* X18864Y25704D01* X18882Y25683D01* X18884Y25680D01* Y25319D01* X18868Y25299D01* X18849Y25280D01* X18828Y25262D01* X18806Y25247D01* X18782Y25233D01* X18758Y25222D01* X18732Y25213D01* X18724Y25209D01* X18717Y25205D01* X18710Y25199D01* X18705Y25192D01* X18701Y25184D01* X18698Y25176D01* X18697Y25167D01* X18697Y25159D01* X18699Y25150D01* X18702Y25142D01* X18707Y25135D01* X18713Y25128D01* X18720Y25123D01* X18727Y25119D01* X18736Y25116D01* X18744Y25115D01* X18753Y25115D01* X18761Y25117D01* X18796Y25129D01* X18828Y25144D01* X18860Y25162D01* X18884Y25180D01* Y23834D01* X18874Y23840D01* X18842Y23858D01* X18809Y23873D01* X18775Y23884D01* X18766Y23886D01* X18757Y23886D01* X18749Y23885D01* X18741Y23882D01* X18733Y23878D01* X18726Y23872D01* X18720Y23865D01* X18716Y23858D01* X18713Y23850D01* X18711Y23841D01* X18711Y23833D01* X18712Y23824D01* X18715Y23816D01* X18719Y23808D01* X18725Y23801D01* X18732Y23796D01* X18739Y23791D01* X18747Y23788D01* X18773Y23779D01* X18798Y23768D01* X18821Y23755D01* X18844Y23740D01* X18865Y23723D01* X18884Y23704D01* Y23295D01* X18869Y23280D01* X18848Y23262D01* X18826Y23247D01* X18802Y23233D01* X18778Y23222D01* X18752Y23213D01* X18744Y23209D01* X18737Y23205D01* X18730Y23199D01* X18725Y23192D01* X18721Y23184D01* X18718Y23176D01* X18717Y23167D01* X18717Y23159D01* X18719Y23150D01* X18722Y23142D01* X18727Y23135D01* X18733Y23128D01* X18740Y23123D01* X18747Y23119D01* X18756Y23116D01* X18764Y23115D01* X18773Y23115D01* X18781Y23117D01* X18816Y23129D01* X18848Y23144D01* X18880Y23162D01* X18884Y23165D01* Y21846D01* X18862Y21858D01* X18829Y21873D01* X18795Y21884D01* X18786Y21886D01* X18777Y21886D01* X18769Y21885D01* X18761Y21882D01* X18753Y21878D01* X18746Y21872D01* X18740Y21865D01* X18736Y21858D01* X18733Y21850D01* X18731Y21841D01* X18731Y21833D01* X18732Y21824D01* X18735Y21816D01* X18739Y21808D01* X18745Y21801D01* X18752Y21796D01* X18759Y21791D01* X18767Y21788D01* X18793Y21779D01* X18818Y21768D01* X18841Y21755D01* X18864Y21740D01* X18884Y21724D01* Y21276D01* X18868Y21262D01* X18846Y21247D01* X18822Y21233D01* X18798Y21222D01* X18772Y21213D01* X18764Y21209D01* X18757Y21205D01* X18750Y21199D01* X18745Y21192D01* X18741Y21184D01* X18738Y21176D01* X18737Y21167D01* X18737Y21159D01* X18739Y21150D01* X18742Y21142D01* X18747Y21135D01* X18753Y21128D01* X18760Y21123D01* X18767Y21119D01* X18776Y21116D01* X18784Y21115D01* X18793Y21115D01* X18801Y21117D01* X18836Y21129D01* X18868Y21144D01* X18884Y21153D01* Y19857D01* X18882Y19858D01* X18849Y19873D01* X18815Y19884D01* X18806Y19886D01* X18797Y19886D01* X18789Y19885D01* X18781Y19882D01* X18773Y19878D01* X18766Y19872D01* X18760Y19865D01* X18756Y19858D01* X18753Y19850D01* X18751Y19841D01* X18751Y19833D01* X18752Y19824D01* X18755Y19816D01* X18759Y19808D01* X18765Y19801D01* X18772Y19796D01* X18779Y19791D01* X18787Y19788D01* X18813Y19779D01* X18838Y19768D01* X18861Y19755D01* X18884Y19740D01* Y19259D01* X18866Y19247D01* X18842Y19233D01* X18818Y19222D01* X18792Y19213D01* X18784Y19209D01* X18777Y19205D01* X18770Y19199D01* X18765Y19192D01* X18761Y19184D01* X18758Y19176D01* X18757Y19167D01* X18757Y19159D01* X18759Y19150D01* X18762Y19142D01* X18767Y19135D01* X18773Y19128D01* X18780Y19123D01* X18787Y19119D01* X18796Y19116D01* X18804Y19115D01* X18813Y19115D01* X18821Y19117D01* X18856Y19129D01* X18884Y19142D01* Y17866D01* X18869Y17873D01* X18835Y17884D01* X18826Y17886D01* X18817Y17886D01* X18809Y17885D01* X18801Y17882D01* X18793Y17878D01* X18786Y17872D01* X18780Y17865D01* X18776Y17858D01* X18773Y17850D01* X18771Y17841D01* X18771Y17833D01* X18772Y17824D01* X18775Y17816D01* X18779Y17808D01* X18785Y17801D01* X18792Y17796D01* X18799Y17791D01* X18807Y17788D01* X18833Y17779D01* X18858Y17768D01* X18881Y17755D01* X18884Y17754D01* Y17246D01* X18862Y17233D01* X18838Y17222D01* X18812Y17213D01* X18804Y17209D01* X18797Y17205D01* X18790Y17199D01* X18785Y17192D01* X18781Y17184D01* X18778Y17176D01* X18777Y17167D01* X18777Y17159D01* X18779Y17150D01* X18782Y17142D01* X18787Y17135D01* X18793Y17128D01* X18800Y17123D01* X18807Y17119D01* X18816Y17116D01* X18824Y17115D01* X18833Y17115D01* X18841Y17117D01* X18876Y17129D01* X18884Y17133D01* Y15874D01* X18855Y15884D01* X18846Y15886D01* X18837Y15886D01* X18829Y15885D01* X18821Y15882D01* X18813Y15878D01* X18806Y15872D01* X18800Y15865D01* X18796Y15858D01* X18793Y15850D01* X18791Y15841D01* X18791Y15833D01* X18792Y15824D01* X18795Y15816D01* X18799Y15808D01* X18805Y15801D01* X18812Y15796D01* X18819Y15791D01* X18827Y15788D01* X18853Y15779D01* X18878Y15768D01* X18884Y15765D01* Y15234D01* X18882Y15233D01* X18858Y15222D01* X18832Y15213D01* X18824Y15209D01* X18817Y15205D01* X18810Y15199D01* X18805Y15192D01* X18801Y15184D01* X18798Y15176D01* X18797Y15167D01* X18797Y15159D01* X18799Y15150D01* X18802Y15142D01* X18807Y15135D01* X18813Y15128D01* X18820Y15123D01* X18827Y15119D01* X18836Y15116D01* X18844Y15115D01* X18853Y15115D01* X18861Y15117D01* X18884Y15125D01* Y13881D01* X18875Y13884D01* X18866Y13886D01* X18857Y13886D01* X18849Y13885D01* X18841Y13882D01* X18833Y13878D01* X18826Y13872D01* X18820Y13865D01* X18816Y13858D01* X18813Y13850D01* X18811Y13841D01* X18811Y13833D01* X18812Y13824D01* X18815Y13816D01* X18819Y13808D01* X18825Y13801D01* X18832Y13796D01* X18839Y13791D01* X18847Y13788D01* X18873Y13779D01* X18884Y13774D01* Y13225D01* X18878Y13222D01* X18852Y13213D01* X18844Y13209D01* X18837Y13205D01* X18830Y13199D01* X18825Y13192D01* X18821Y13184D01* X18818Y13176D01* X18817Y13167D01* X18817Y13159D01* X18819Y13150D01* X18822Y13142D01* X18827Y13135D01* X18833Y13128D01* X18840Y13123D01* X18847Y13119D01* X18856Y13116D01* X18864Y13115D01* X18873Y13115D01* X18881Y13117D01* X18884Y13118D01* Y11886D01* X18877Y11886D01* X18869Y11885D01* X18861Y11882D01* X18853Y11878D01* X18846Y11872D01* X18840Y11865D01* X18836Y11858D01* X18833Y11850D01* X18831Y11841D01* X18831Y11833D01* X18832Y11824D01* X18835Y11816D01* X18839Y11808D01* X18845Y11801D01* X18852Y11796D01* X18859Y11791D01* X18867Y11788D01* X18884Y11782D01* Y11217D01* X18872Y11213D01* X18864Y11209D01* X18857Y11205D01* X18850Y11199D01* X18845Y11192D01* X18841Y11184D01* X18838Y11176D01* X18837Y11167D01* X18837Y11159D01* X18839Y11150D01* X18842Y11142D01* X18847Y11135D01* X18853Y11128D01* X18860Y11123D01* X18867Y11119D01* X18876Y11116D01* X18884Y11115D01* Y9883D01* X18881Y9882D01* X18873Y9878D01* X18866Y9872D01* X18860Y9865D01* X18856Y9858D01* X18853Y9850D01* X18851Y9841D01* X18851Y9833D01* X18852Y9824D01* X18855Y9816D01* X18859Y9808D01* X18865Y9801D01* X18872Y9796D01* X18879Y9791D01* X18884Y9789D01* Y9209D01* X18877Y9205D01* X18870Y9199D01* X18865Y9192D01* X18861Y9184D01* X18858Y9176D01* X18857Y9167D01* X18857Y9159D01* X18859Y9150D01* X18862Y9142D01* X18867Y9135D01* X18873Y9128D01* X18880Y9123D01* X18884Y9121D01* Y7870D01* X18880Y7865D01* X18876Y7858D01* X18873Y7850D01* X18871Y7841D01* X18871Y7833D01* X18872Y7824D01* X18875Y7816D01* X18879Y7808D01* X18884Y7802D01* Y7190D01* X18881Y7184D01* X18878Y7176D01* X18877Y7167D01* X18877Y7159D01* X18879Y7150D01* X18882Y7142D01* X18884Y7140D01* Y0D01* X18625D01* Y1196D01* X18645Y1179D01* X18675Y1159D01* X18707Y1141D01* X18740Y1127D01* X18774Y1115D01* X18783Y1113D01* X18792Y1113D01* X18800Y1115D01* X18808Y1117D01* X18816Y1122D01* X18823Y1127D01* X18829Y1134D01* X18833Y1141D01* X18836Y1149D01* X18838Y1158D01* X18838Y1167D01* X18837Y1175D01* X18834Y1183D01* X18830Y1191D01* X18824Y1198D01* X18817Y1204D01* X18810Y1208D01* X18802Y1211D01* X18776Y1220D01* X18751Y1231D01* X18728Y1244D01* X18705Y1259D01* X18684Y1276D01* X18665Y1295D01* X18647Y1316D01* X18632Y1338D01* X18625Y1349D01* Y1650D01* X18629Y1657D01* X18644Y1679D01* X18661Y1700D01* X18680Y1719D01* X18701Y1737D01* X18723Y1752D01* X18747Y1766D01* X18771Y1777D01* X18797Y1786D01* X18805Y1790D01* X18812Y1794D01* X18819Y1800D01* X18824Y1807D01* X18828Y1815D01* X18831Y1823D01* X18832Y1832D01* X18832Y1840D01* X18830Y1849D01* X18827Y1857D01* X18822Y1864D01* X18816Y1871D01* X18809Y1876D01* X18802Y1880D01* X18793Y1883D01* X18785Y1884D01* X18776Y1884D01* X18768Y1882D01* X18733Y1870D01* X18701Y1855D01* X18669Y1837D01* X18640Y1816D01* X18625Y1804D01* Y3179D01* X18625Y3179D01* X18655Y3159D01* X18687Y3141D01* X18720Y3127D01* X18754Y3115D01* X18763Y3113D01* X18772Y3113D01* X18780Y3115D01* X18788Y3117D01* X18796Y3122D01* X18803Y3127D01* X18809Y3134D01* X18813Y3141D01* X18816Y3149D01* X18818Y3158D01* X18818Y3167D01* X18817Y3175D01* X18814Y3183D01* X18810Y3191D01* X18804Y3198D01* X18797Y3204D01* X18790Y3208D01* X18782Y3211D01* X18756Y3220D01* X18731Y3231D01* X18708Y3244D01* X18685Y3259D01* X18664Y3276D01* X18645Y3295D01* X18627Y3316D01* X18625Y3319D01* Y3680D01* X18641Y3700D01* X18660Y3719D01* X18681Y3737D01* X18703Y3752D01* X18727Y3766D01* X18751Y3777D01* X18777Y3786D01* X18785Y3790D01* X18792Y3794D01* X18799Y3800D01* X18804Y3807D01* X18808Y3815D01* X18811Y3823D01* X18812Y3832D01* X18812Y3840D01* X18810Y3849D01* X18807Y3857D01* X18802Y3864D01* X18796Y3871D01* X18789Y3876D01* X18782Y3880D01* X18773Y3883D01* X18765Y3884D01* X18756Y3884D01* X18748Y3882D01* X18713Y3870D01* X18681Y3855D01* X18649Y3837D01* X18625Y3820D01* Y5166D01* X18635Y5159D01* X18667Y5141D01* X18700Y5127D01* X18734Y5115D01* X18743Y5113D01* X18752Y5113D01* X18760Y5115D01* X18768Y5117D01* X18776Y5122D01* X18783Y5127D01* X18789Y5134D01* X18793Y5141D01* X18796Y5149D01* X18798Y5158D01* X18798Y5167D01* X18797Y5175D01* X18794Y5183D01* X18790Y5191D01* X18784Y5198D01* X18777Y5204D01* X18770Y5208D01* X18762Y5211D01* X18736Y5220D01* X18711Y5231D01* X18688Y5244D01* X18665Y5259D01* X18644Y5276D01* X18625Y5295D01* Y5704D01* X18640Y5719D01* X18661Y5737D01* X18683Y5752D01* X18707Y5766D01* X18731Y5777D01* X18757Y5786D01* X18765Y5790D01* X18772Y5794D01* X18779Y5800D01* X18784Y5807D01* X18788Y5815D01* X18791Y5823D01* X18792Y5832D01* X18792Y5840D01* X18790Y5849D01* X18787Y5857D01* X18782Y5864D01* X18776Y5871D01* X18769Y5876D01* X18762Y5880D01* X18753Y5883D01* X18745Y5884D01* X18736Y5884D01* X18728Y5882D01* X18693Y5870D01* X18661Y5855D01* X18629Y5837D01* X18625Y5834D01* Y7153D01* X18647Y7141D01* X18680Y7127D01* X18714Y7115D01* X18723Y7113D01* X18732Y7113D01* X18740Y7115D01* X18748Y7117D01* X18756Y7122D01* X18763Y7127D01* X18769Y7134D01* X18773Y7141D01* X18776Y7149D01* X18778Y7158D01* X18778Y7167D01* X18777Y7175D01* X18774Y7183D01* X18770Y7191D01* X18764Y7198D01* X18757Y7204D01* X18750Y7208D01* X18742Y7211D01* X18716Y7220D01* X18691Y7231D01* X18668Y7244D01* X18645Y7259D01* X18625Y7276D01* Y7723D01* X18641Y7737D01* X18663Y7752D01* X18687Y7766D01* X18711Y7777D01* X18737Y7786D01* X18745Y7790D01* X18752Y7794D01* X18759Y7800D01* X18764Y7807D01* X18768Y7815D01* X18771Y7823D01* X18772Y7832D01* X18772Y7840D01* X18770Y7849D01* X18767Y7857D01* X18762Y7864D01* X18756Y7871D01* X18749Y7876D01* X18742Y7880D01* X18733Y7883D01* X18725Y7884D01* X18716Y7884D01* X18708Y7882D01* X18673Y7870D01* X18641Y7855D01* X18625Y7846D01* Y9142D01* X18627Y9141D01* X18660Y9127D01* X18694Y9115D01* X18703Y9113D01* X18712Y9113D01* X18720Y9115D01* X18728Y9117D01* X18736Y9122D01* X18743Y9127D01* X18749Y9134D01* X18753Y9141D01* X18756Y9149D01* X18758Y9158D01* X18758Y9167D01* X18757Y9175D01* X18754Y9183D01* X18750Y9191D01* X18744Y9198D01* X18737Y9204D01* X18730Y9208D01* X18722Y9211D01* X18696Y9220D01* X18671Y9231D01* X18648Y9244D01* X18625Y9259D01* Y9740D01* X18643Y9752D01* X18667Y9766D01* X18691Y9777D01* X18717Y9786D01* X18725Y9790D01* X18732Y9794D01* X18739Y9800D01* X18744Y9807D01* X18748Y9815D01* X18751Y9823D01* X18752Y9832D01* X18752Y9840D01* X18750Y9849D01* X18747Y9857D01* X18742Y9864D01* X18736Y9871D01* X18729Y9876D01* X18722Y9880D01* X18713Y9883D01* X18705Y9884D01* X18696Y9884D01* X18688Y9882D01* X18653Y9870D01* X18625Y9857D01* Y11133D01* X18640Y11127D01* X18674Y11115D01* X18683Y11113D01* X18692Y11113D01* X18700Y11115D01* X18708Y11117D01* X18716Y11122D01* X18723Y11127D01* X18729Y11134D01* X18733Y11141D01* X18736Y11149D01* X18738Y11158D01* X18738Y11167D01* X18737Y11175D01* X18734Y11183D01* X18730Y11191D01* X18724Y11198D01* X18717Y11204D01* X18710Y11208D01* X18702Y11211D01* X18676Y11220D01* X18651Y11231D01* X18628Y11244D01* X18625Y11246D01* Y11754D01* X18647Y11766D01* X18671Y11777D01* X18697Y11786D01* X18705Y11790D01* X18712Y11794D01* X18719Y11800D01* X18724Y11807D01* X18728Y11815D01* X18731Y11823D01* X18732Y11832D01* X18732Y11840D01* X18730Y11849D01* X18727Y11857D01* X18722Y11864D01* X18716Y11871D01* X18709Y11876D01* X18702Y11880D01* X18693Y11883D01* X18685Y11884D01* X18676Y11884D01* X18668Y11882D01* X18633Y11870D01* X18625Y11866D01* Y13125D01* X18654Y13115D01* X18663Y13113D01* X18672Y13113D01* X18680Y13115D01* X18688Y13117D01* X18696Y13122D01* X18703Y13127D01* X18709Y13134D01* X18713Y13141D01* X18716Y13149D01* X18718Y13158D01* X18718Y13167D01* X18717Y13175D01* X18714Y13183D01* X18710Y13191D01* X18704Y13198D01* X18697Y13204D01* X18690Y13208D01* X18682Y13211D01* X18656Y13220D01* X18631Y13231D01* X18625Y13234D01* Y13765D01* X18627Y13766D01* X18651Y13777D01* X18677Y13786D01* X18685Y13790D01* X18692Y13794D01* X18699Y13800D01* X18704Y13807D01* X18708Y13815D01* X18711Y13823D01* X18712Y13832D01* X18712Y13840D01* X18710Y13849D01* X18707Y13857D01* X18702Y13864D01* X18696Y13871D01* X18689Y13876D01* X18682Y13880D01* X18673Y13883D01* X18665Y13884D01* X18656Y13884D01* X18648Y13882D01* X18625Y13874D01* Y15118D01* X18634Y15115D01* X18643Y15113D01* X18652Y15113D01* X18660Y15115D01* X18668Y15117D01* X18676Y15122D01* X18683Y15127D01* X18689Y15134D01* X18693Y15141D01* X18696Y15149D01* X18698Y15158D01* X18698Y15167D01* X18697Y15175D01* X18694Y15183D01* X18690Y15191D01* X18684Y15198D01* X18677Y15204D01* X18670Y15208D01* X18662Y15211D01* X18636Y15220D01* X18625Y15225D01* Y15775D01* X18631Y15777D01* X18657Y15786D01* X18665Y15790D01* X18672Y15794D01* X18679Y15800D01* X18684Y15807D01* X18688Y15815D01* X18691Y15823D01* X18692Y15832D01* X18692Y15840D01* X18690Y15849D01* X18687Y15857D01* X18682Y15864D01* X18676Y15871D01* X18669Y15876D01* X18662Y15880D01* X18653Y15883D01* X18645Y15884D01* X18636Y15884D01* X18628Y15882D01* X18625Y15881D01* Y17113D01* X18632Y17113D01* X18640Y17115D01* X18648Y17117D01* X18656Y17122D01* X18663Y17127D01* X18669Y17134D01* X18673Y17141D01* X18676Y17149D01* X18678Y17158D01* X18678Y17167D01* X18677Y17175D01* X18674Y17183D01* X18670Y17191D01* X18664Y17198D01* X18657Y17204D01* X18650Y17208D01* X18642Y17211D01* X18625Y17217D01* Y17782D01* X18637Y17786D01* X18645Y17790D01* X18652Y17794D01* X18659Y17800D01* X18664Y17807D01* X18668Y17815D01* X18671Y17823D01* X18672Y17832D01* X18672Y17840D01* X18670Y17849D01* X18667Y17857D01* X18662Y17864D01* X18656Y17871D01* X18649Y17876D01* X18642Y17880D01* X18633Y17883D01* X18625Y17884D01* Y19116D01* X18628Y19117D01* X18636Y19122D01* X18643Y19127D01* X18649Y19134D01* X18653Y19141D01* X18656Y19149D01* X18658Y19158D01* X18658Y19167D01* X18657Y19175D01* X18654Y19183D01* X18650Y19191D01* X18644Y19198D01* X18637Y19204D01* X18630Y19208D01* X18625Y19210D01* Y19790D01* X18632Y19794D01* X18639Y19800D01* X18644Y19807D01* X18648Y19815D01* X18651Y19823D01* X18652Y19832D01* X18652Y19840D01* X18650Y19849D01* X18647Y19857D01* X18642Y19864D01* X18636Y19871D01* X18629Y19876D01* X18625Y19878D01* Y21130D01* X18629Y21134D01* X18633Y21141D01* X18636Y21149D01* X18638Y21158D01* X18638Y21167D01* X18637Y21175D01* X18634Y21183D01* X18630Y21191D01* X18625Y21197D01* Y21809D01* X18628Y21815D01* X18631Y21823D01* X18632Y21832D01* X18632Y21840D01* X18630Y21849D01* X18627Y21857D01* X18625Y21859D01* Y33138D01* G37* G36* X18884Y40000D02*X19064D01* Y21625D01* X19055Y21651D01* X19040Y21683D01* X19022Y21715D01* X19001Y21744D01* X18977Y21772D01* X18952Y21797D01* X18924Y21820D01* X18894Y21840D01* X18884Y21846D01* Y23165D01* X18909Y23183D01* X18937Y23207D01* X18962Y23232D01* X18985Y23260D01* X19005Y23290D01* X19023Y23322D01* X19037Y23355D01* X19049Y23389D01* X19051Y23398D01* X19051Y23407D01* X19050Y23415D01* X19047Y23423D01* X19042Y23431D01* X19037Y23438D01* X19030Y23444D01* X19023Y23448D01* X19015Y23451D01* X19006Y23453D01* X18997Y23453D01* X18989Y23452D01* X18981Y23449D01* X18973Y23445D01* X18966Y23439D01* X18960Y23433D01* X18956Y23425D01* X18953Y23417D01* X18944Y23391D01* X18933Y23366D01* X18920Y23343D01* X18905Y23320D01* X18888Y23299D01* X18884Y23295D01* Y23704D01* X18884Y23704D01* X18902Y23683D01* X18917Y23661D01* X18931Y23637D01* X18942Y23613D01* X18951Y23587D01* X18955Y23579D01* X18959Y23572D01* X18965Y23565D01* X18972Y23560D01* X18980Y23556D01* X18988Y23553D01* X18997Y23552D01* X19005Y23552D01* X19014Y23554D01* X19022Y23557D01* X19029Y23562D01* X19036Y23568D01* X19041Y23575D01* X19045Y23582D01* X19048Y23591D01* X19049Y23599D01* X19049Y23608D01* X19047Y23617D01* X19035Y23651D01* X19020Y23683D01* X19002Y23715D01* X18981Y23744D01* X18957Y23772D01* X18932Y23797D01* X18904Y23820D01* X18884Y23834D01* Y25180D01* X18889Y25183D01* X18917Y25207D01* X18942Y25232D01* X18965Y25260D01* X18985Y25290D01* X19003Y25322D01* X19017Y25355D01* X19029Y25389D01* X19031Y25398D01* X19031Y25407D01* X19030Y25415D01* X19027Y25423D01* X19022Y25431D01* X19017Y25438D01* X19010Y25444D01* X19003Y25448D01* X18995Y25451D01* X18986Y25453D01* X18977Y25453D01* X18969Y25452D01* X18961Y25449D01* X18953Y25445D01* X18946Y25439D01* X18940Y25433D01* X18936Y25425D01* X18933Y25417D01* X18924Y25391D01* X18913Y25366D01* X18900Y25343D01* X18885Y25320D01* X18884Y25319D01* Y25680D01* X18897Y25661D01* X18911Y25637D01* X18922Y25613D01* X18931Y25587D01* X18935Y25579D01* X18939Y25572D01* X18945Y25565D01* X18952Y25560D01* X18960Y25556D01* X18968Y25553D01* X18977Y25552D01* X18985Y25552D01* X18994Y25554D01* X19002Y25557D01* X19009Y25562D01* X19016Y25568D01* X19021Y25575D01* X19025Y25582D01* X19028Y25591D01* X19029Y25599D01* X19029Y25608D01* X19027Y25617D01* X19015Y25651D01* X19000Y25683D01* X18982Y25715D01* X18961Y25744D01* X18937Y25772D01* X18912Y25797D01* X18884Y25820D01* Y27196D01* X18897Y27207D01* X18922Y27232D01* X18945Y27260D01* X18965Y27290D01* X18983Y27322D01* X18997Y27355D01* X19009Y27389D01* X19011Y27398D01* X19011Y27407D01* X19010Y27415D01* X19007Y27423D01* X19002Y27431D01* X18997Y27438D01* X18990Y27444D01* X18983Y27448D01* X18975Y27451D01* X18966Y27453D01* X18957Y27453D01* X18949Y27452D01* X18941Y27449D01* X18933Y27445D01* X18926Y27439D01* X18920Y27433D01* X18916Y27425D01* X18913Y27417D01* X18904Y27391D01* X18893Y27366D01* X18884Y27350D01* Y27650D01* X18891Y27637D01* X18902Y27613D01* X18911Y27587D01* X18915Y27579D01* X18919Y27572D01* X18925Y27565D01* X18932Y27560D01* X18940Y27556D01* X18948Y27553D01* X18957Y27552D01* X18965Y27552D01* X18974Y27554D01* X18982Y27557D01* X18989Y27562D01* X18996Y27568D01* X19001Y27575D01* X19005Y27582D01* X19008Y27591D01* X19009Y27599D01* X19009Y27608D01* X19007Y27617D01* X18995Y27651D01* X18980Y27683D01* X18962Y27715D01* X18941Y27744D01* X18917Y27772D01* X18892Y27797D01* X18884Y27804D01* Y29214D01* X18902Y29232D01* X18925Y29260D01* X18945Y29290D01* X18963Y29322D01* X18977Y29355D01* X18989Y29389D01* X18991Y29398D01* X18991Y29407D01* X18990Y29415D01* X18987Y29423D01* X18982Y29431D01* X18977Y29438D01* X18970Y29444D01* X18963Y29448D01* X18955Y29451D01* X18946Y29453D01* X18937Y29453D01* X18929Y29452D01* X18921Y29449D01* X18913Y29445D01* X18906Y29439D01* X18900Y29433D01* X18896Y29425D01* X18893Y29417D01* X18884Y29391D01* X18884Y29391D01* Y29608D01* X18891Y29587D01* X18895Y29579D01* X18899Y29572D01* X18905Y29565D01* X18912Y29560D01* X18920Y29556D01* X18928Y29553D01* X18937Y29552D01* X18945Y29552D01* X18954Y29554D01* X18962Y29557D01* X18969Y29562D01* X18976Y29568D01* X18981Y29575D01* X18985Y29582D01* X18988Y29591D01* X18989Y29599D01* X18989Y29608D01* X18987Y29617D01* X18975Y29651D01* X18960Y29683D01* X18942Y29715D01* X18921Y29744D01* X18897Y29772D01* X18884Y29785D01* Y31235D01* X18905Y31260D01* X18925Y31290D01* X18943Y31322D01* X18957Y31355D01* X18969Y31389D01* X18971Y31398D01* X18971Y31407D01* X18970Y31415D01* X18967Y31423D01* X18962Y31431D01* X18957Y31438D01* X18950Y31444D01* X18943Y31448D01* X18935Y31451D01* X18926Y31453D01* X18917Y31453D01* X18909Y31452D01* X18901Y31449D01* X18893Y31445D01* X18886Y31439D01* X18884Y31437D01* Y31567D01* X18885Y31565D01* X18892Y31560D01* X18900Y31556D01* X18908Y31553D01* X18917Y31552D01* X18925Y31552D01* X18934Y31554D01* X18942Y31557D01* X18949Y31562D01* X18956Y31568D01* X18961Y31575D01* X18965Y31582D01* X18968Y31591D01* X18969Y31599D01* X18969Y31608D01* X18967Y31617D01* X18955Y31651D01* X18940Y31683D01* X18922Y31715D01* X18901Y31744D01* X18884Y31764D01* Y33259D01* X18885Y33260D01* X18905Y33290D01* X18923Y33322D01* X18937Y33355D01* X18949Y33389D01* X18951Y33398D01* X18951Y33407D01* X18950Y33415D01* X18947Y33423D01* X18942Y33431D01* X18937Y33438D01* X18930Y33444D01* X18923Y33448D01* X18915Y33451D01* X18906Y33453D01* X18897Y33453D01* X18889Y33452D01* X18884Y33450D01* Y33555D01* X18888Y33553D01* X18897Y33552D01* X18905Y33552D01* X18914Y33554D01* X18922Y33557D01* X18929Y33562D01* X18936Y33568D01* X18941Y33575D01* X18945Y33582D01* X18948Y33591D01* X18949Y33599D01* X18949Y33608D01* X18947Y33617D01* X18935Y33651D01* X18920Y33683D01* X18902Y33715D01* X18884Y33740D01* Y35288D01* X18885Y35290D01* X18903Y35322D01* X18917Y35355D01* X18929Y35389D01* X18931Y35398D01* X18931Y35407D01* X18930Y35415D01* X18927Y35423D01* X18922Y35431D01* X18917Y35438D01* X18910Y35444D01* X18903Y35448D01* X18895Y35451D01* X18886Y35453D01* X18884D01* Y35552D01* X18885D01* X18894Y35554D01* X18902Y35557D01* X18909Y35562D01* X18916Y35568D01* X18921Y35575D01* X18925Y35582D01* X18928Y35591D01* X18929Y35599D01* X18929Y35608D01* X18927Y35617D01* X18915Y35651D01* X18900Y35683D01* X18884Y35711D01* Y37324D01* X18897Y37355D01* X18909Y37389D01* X18911Y37398D01* X18911Y37407D01* X18910Y37415D01* X18907Y37423D01* X18902Y37431D01* X18897Y37438D01* X18890Y37444D01* X18884Y37447D01* Y37559D01* X18889Y37562D01* X18896Y37568D01* X18901Y37575D01* X18905Y37582D01* X18908Y37591D01* X18909Y37599D01* X18909Y37608D01* X18907Y37617D01* X18895Y37651D01* X18884Y37674D01* Y39374D01* X18889Y39389D01* X18891Y39398D01* X18891Y39407D01* X18890Y39415D01* X18887Y39423D01* X18884Y39428D01* Y39580D01* X18885Y39582D01* X18888Y39591D01* X18889Y39599D01* X18889Y39608D01* X18887Y39617D01* X18884Y39625D01* Y40000D01* G37* G36* X19064Y0D02*X18884D01* Y7140D01* X18887Y7135D01* X18893Y7128D01* X18900Y7123D01* X18907Y7119D01* X18916Y7116D01* X18924Y7115D01* X18933Y7115D01* X18941Y7117D01* X18976Y7129D01* X19008Y7144D01* X19040Y7162D01* X19064Y7180D01* Y5834D01* X19054Y5840D01* X19022Y5858D01* X18989Y5873D01* X18955Y5884D01* X18946Y5886D01* X18937Y5886D01* X18929Y5885D01* X18921Y5882D01* X18913Y5878D01* X18906Y5872D01* X18900Y5865D01* X18896Y5858D01* X18893Y5850D01* X18891Y5841D01* X18891Y5833D01* X18892Y5824D01* X18895Y5816D01* X18899Y5808D01* X18905Y5801D01* X18912Y5796D01* X18919Y5791D01* X18927Y5788D01* X18953Y5779D01* X18978Y5768D01* X19001Y5755D01* X19024Y5740D01* X19045Y5723D01* X19064Y5704D01* Y5295D01* X19049Y5280D01* X19028Y5262D01* X19006Y5247D01* X18982Y5233D01* X18958Y5222D01* X18932Y5213D01* X18924Y5209D01* X18917Y5205D01* X18910Y5199D01* X18905Y5192D01* X18901Y5184D01* X18898Y5176D01* X18897Y5167D01* X18897Y5159D01* X18899Y5150D01* X18902Y5142D01* X18907Y5135D01* X18913Y5128D01* X18920Y5123D01* X18927Y5119D01* X18936Y5116D01* X18944Y5115D01* X18953Y5115D01* X18961Y5117D01* X18996Y5129D01* X19028Y5144D01* X19060Y5162D01* X19064Y5165D01* Y3846D01* X19042Y3858D01* X19009Y3873D01* X18975Y3884D01* X18966Y3886D01* X18957Y3886D01* X18949Y3885D01* X18941Y3882D01* X18933Y3878D01* X18926Y3872D01* X18920Y3865D01* X18916Y3858D01* X18913Y3850D01* X18911Y3841D01* X18911Y3833D01* X18912Y3824D01* X18915Y3816D01* X18919Y3808D01* X18925Y3801D01* X18932Y3796D01* X18939Y3791D01* X18947Y3788D01* X18973Y3779D01* X18998Y3768D01* X19021Y3755D01* X19044Y3740D01* X19064Y3724D01* Y3276D01* X19048Y3262D01* X19026Y3247D01* X19002Y3233D01* X18978Y3222D01* X18952Y3213D01* X18944Y3209D01* X18937Y3205D01* X18930Y3199D01* X18925Y3192D01* X18921Y3184D01* X18918Y3176D01* X18917Y3167D01* X18917Y3159D01* X18919Y3150D01* X18922Y3142D01* X18927Y3135D01* X18933Y3128D01* X18940Y3123D01* X18947Y3119D01* X18956Y3116D01* X18964Y3115D01* X18973Y3115D01* X18981Y3117D01* X19016Y3129D01* X19048Y3144D01* X19064Y3153D01* Y1857D01* X19062Y1858D01* X19029Y1873D01* X18995Y1884D01* X18986Y1886D01* X18977Y1886D01* X18969Y1885D01* X18961Y1882D01* X18953Y1878D01* X18946Y1872D01* X18940Y1865D01* X18936Y1858D01* X18933Y1850D01* X18931Y1841D01* X18931Y1833D01* X18932Y1824D01* X18935Y1816D01* X18939Y1808D01* X18945Y1801D01* X18952Y1796D01* X18959Y1791D01* X18967Y1788D01* X18993Y1779D01* X19018Y1768D01* X19041Y1755D01* X19064Y1740D01* Y1259D01* X19046Y1247D01* X19022Y1233D01* X18998Y1222D01* X18972Y1213D01* X18964Y1209D01* X18957Y1205D01* X18950Y1199D01* X18945Y1192D01* X18941Y1184D01* X18938Y1176D01* X18937Y1167D01* X18937Y1159D01* X18939Y1150D01* X18942Y1142D01* X18947Y1135D01* X18953Y1128D01* X18960Y1123D01* X18967Y1119D01* X18976Y1116D01* X18984Y1115D01* X18993Y1115D01* X19001Y1117D01* X19036Y1129D01* X19064Y1142D01* Y0D01* G37* G36* Y7319D02*X19048Y7299D01* X19029Y7280D01* X19008Y7262D01* X18986Y7247D01* X18962Y7233D01* X18938Y7222D01* X18912Y7213D01* X18904Y7209D01* X18897Y7205D01* X18890Y7199D01* X18885Y7192D01* X18884Y7190D01* Y7802D01* X18885Y7801D01* X18892Y7796D01* X18899Y7791D01* X18907Y7788D01* X18933Y7779D01* X18958Y7768D01* X18981Y7755D01* X19004Y7740D01* X19025Y7723D01* X19044Y7704D01* X19062Y7683D01* X19064Y7680D01* Y7319D01* G37* G36* Y7820D02*X19064Y7820D01* X19034Y7840D01* X19002Y7858D01* X18969Y7873D01* X18935Y7884D01* X18926Y7886D01* X18917Y7886D01* X18909Y7885D01* X18901Y7882D01* X18893Y7878D01* X18886Y7872D01* X18884Y7870D01* Y9121D01* X18887Y9119D01* X18896Y9116D01* X18904Y9115D01* X18913Y9115D01* X18921Y9117D01* X18956Y9129D01* X18988Y9144D01* X19020Y9162D01* X19049Y9183D01* X19064Y9196D01* Y7820D01* G37* G36* Y9350D02*X19060Y9343D01* X19045Y9320D01* X19028Y9299D01* X19009Y9280D01* X18988Y9262D01* X18966Y9247D01* X18942Y9233D01* X18918Y9222D01* X18892Y9213D01* X18884Y9209D01* X18884Y9209D01* Y9789D01* X18887Y9788D01* X18913Y9779D01* X18938Y9768D01* X18961Y9755D01* X18984Y9740D01* X19005Y9723D01* X19024Y9704D01* X19042Y9683D01* X19057Y9661D01* X19064Y9650D01* Y9350D01* G37* G36* Y9804D02*X19044Y9820D01* X19014Y9840D01* X18982Y9858D01* X18949Y9873D01* X18915Y9884D01* X18906Y9886D01* X18897Y9886D01* X18889Y9885D01* X18884Y9883D01* Y11115D01* X18884D01* X18893Y11115D01* X18901Y11117D01* X18936Y11129D01* X18968Y11144D01* X19000Y11162D01* X19029Y11183D01* X19057Y11207D01* X19064Y11214D01* Y9804D01* G37* G36* Y11391D02*X19053Y11366D01* X19040Y11343D01* X19025Y11320D01* X19008Y11299D01* X18989Y11280D01* X18968Y11262D01* X18946Y11247D01* X18922Y11233D01* X18898Y11222D01* X18884Y11217D01* Y11782D01* X18893Y11779D01* X18918Y11768D01* X18941Y11755D01* X18964Y11740D01* X18985Y11723D01* X19004Y11704D01* X19022Y11683D01* X19037Y11661D01* X19051Y11637D01* X19062Y11613D01* X19064Y11608D01* Y11391D01* G37* G36* Y11785D02*X19052Y11797D01* X19024Y11820D01* X18994Y11840D01* X18962Y11858D01* X18929Y11873D01* X18895Y11884D01* X18886Y11886D01* X18884D01* Y13118D01* X18916Y13129D01* X18948Y13144D01* X18980Y13162D01* X19009Y13183D01* X19037Y13207D01* X19062Y13232D01* X19064Y13235D01* Y11785D01* G37* G36* Y13437D02*X19060Y13433D01* X19056Y13425D01* X19053Y13417D01* X19044Y13391D01* X19033Y13366D01* X19020Y13343D01* X19005Y13320D01* X18988Y13299D01* X18969Y13280D01* X18948Y13262D01* X18926Y13247D01* X18902Y13233D01* X18884Y13225D01* Y13774D01* X18898Y13768D01* X18921Y13755D01* X18944Y13740D01* X18965Y13723D01* X18984Y13704D01* X19002Y13683D01* X19017Y13661D01* X19031Y13637D01* X19042Y13613D01* X19051Y13587D01* X19055Y13579D01* X19059Y13572D01* X19064Y13567D01* Y13437D01* G37* G36* Y13764D02*X19057Y13772D01* X19032Y13797D01* X19004Y13820D01* X18974Y13840D01* X18942Y13858D01* X18909Y13873D01* X18884Y13881D01* Y15125D01* X18896Y15129D01* X18928Y15144D01* X18960Y15162D01* X18989Y15183D01* X19017Y15207D01* X19042Y15232D01* X19064Y15259D01* Y13764D01* G37* G36* Y15450D02*X19061Y15449D01* X19053Y15445D01* X19046Y15439D01* X19040Y15433D01* X19036Y15425D01* X19033Y15417D01* X19024Y15391D01* X19013Y15366D01* X19000Y15343D01* X18985Y15320D01* X18968Y15299D01* X18949Y15280D01* X18928Y15262D01* X18906Y15247D01* X18884Y15234D01* Y15765D01* X18901Y15755D01* X18924Y15740D01* X18945Y15723D01* X18964Y15704D01* X18982Y15683D01* X18997Y15661D01* X19011Y15637D01* X19022Y15613D01* X19031Y15587D01* X19035Y15579D01* X19039Y15572D01* X19045Y15565D01* X19052Y15560D01* X19060Y15556D01* X19064Y15555D01* Y15450D01* G37* G36* Y15740D02*X19061Y15744D01* X19037Y15772D01* X19012Y15797D01* X18984Y15820D01* X18954Y15840D01* X18922Y15858D01* X18889Y15873D01* X18884Y15874D01* Y17133D01* X18908Y17144D01* X18940Y17162D01* X18969Y17183D01* X18997Y17207D01* X19022Y17232D01* X19045Y17260D01* X19064Y17288D01* Y15740D01* G37* G36* Y17453D02*X19057Y17453D01* X19049Y17452D01* X19041Y17449D01* X19033Y17445D01* X19026Y17439D01* X19020Y17433D01* X19016Y17425D01* X19013Y17417D01* X19004Y17391D01* X18993Y17366D01* X18980Y17343D01* X18965Y17320D01* X18948Y17299D01* X18929Y17280D01* X18908Y17262D01* X18886Y17247D01* X18884Y17246D01* Y17754D01* X18904Y17740D01* X18925Y17723D01* X18944Y17704D01* X18962Y17683D01* X18977Y17661D01* X18991Y17637D01* X19002Y17613D01* X19011Y17587D01* X19015Y17579D01* X19019Y17572D01* X19025Y17565D01* X19032Y17560D01* X19040Y17556D01* X19048Y17553D01* X19057Y17552D01* X19064Y17552D01* Y17453D01* G37* G36* Y17711D02*X19062Y17715D01* X19041Y17744D01* X19017Y17772D01* X18992Y17797D01* X18964Y17820D01* X18934Y17840D01* X18902Y17858D01* X18884Y17866D01* Y19142D01* X18888Y19144D01* X18920Y19162D01* X18949Y19183D01* X18977Y19207D01* X19002Y19232D01* X19025Y19260D01* X19045Y19290D01* X19063Y19322D01* X19064Y19324D01* Y17711D01* G37* G36* Y19447D02*X19063Y19448D01* X19055Y19451D01* X19046Y19453D01* X19037Y19453D01* X19029Y19452D01* X19021Y19449D01* X19013Y19445D01* X19006Y19439D01* X19000Y19433D01* X18996Y19425D01* X18993Y19417D01* X18984Y19391D01* X18973Y19366D01* X18960Y19343D01* X18945Y19320D01* X18928Y19299D01* X18909Y19280D01* X18888Y19262D01* X18884Y19259D01* Y19740D01* X18905Y19723D01* X18924Y19704D01* X18942Y19683D01* X18957Y19661D01* X18971Y19637D01* X18982Y19613D01* X18991Y19587D01* X18995Y19579D01* X18999Y19572D01* X19005Y19565D01* X19012Y19560D01* X19020Y19556D01* X19028Y19553D01* X19037Y19552D01* X19045Y19552D01* X19054Y19554D01* X19062Y19557D01* X19064Y19559D01* Y19447D01* G37* G36* Y19674D02*X19060Y19683D01* X19042Y19715D01* X19021Y19744D01* X18997Y19772D01* X18972Y19797D01* X18944Y19820D01* X18914Y19840D01* X18884Y19857D01* Y21153D01* X18900Y21162D01* X18929Y21183D01* X18957Y21207D01* X18982Y21232D01* X19005Y21260D01* X19025Y21290D01* X19043Y21322D01* X19057Y21355D01* X19064Y21374D01* Y19674D01* G37* G36* Y21428D02*X19062Y21431D01* X19057Y21438D01* X19050Y21444D01* X19043Y21448D01* X19035Y21451D01* X19026Y21453D01* X19017Y21453D01* X19009Y21452D01* X19001Y21449D01* X18993Y21445D01* X18986Y21439D01* X18980Y21433D01* X18976Y21425D01* X18973Y21417D01* X18964Y21391D01* X18953Y21366D01* X18940Y21343D01* X18925Y21320D01* X18908Y21299D01* X18889Y21280D01* X18884Y21276D01* Y21724D01* X18885Y21723D01* X18904Y21704D01* X18922Y21683D01* X18937Y21661D01* X18951Y21637D01* X18962Y21613D01* X18971Y21587D01* X18975Y21579D01* X18979Y21572D01* X18985Y21565D01* X18992Y21560D01* X19000Y21556D01* X19008Y21553D01* X19017Y21552D01* X19025Y21552D01* X19034Y21554D01* X19042Y21557D01* X19049Y21562D01* X19056Y21568D01* X19061Y21575D01* X19064Y21580D01* Y21428D01* G37* G36* Y40000D02*X20325D01* Y39857D01* X20321Y39855D01* X20289Y39837D01* X20260Y39816D01* X20232Y39793D01* X20207Y39767D01* X20184Y39739D01* X20164Y39709D01* X20146Y39677D01* X20132Y39644D01* X20120Y39610D01* X20118Y39601D01* X20118Y39593D01* X20119Y39584D01* X20122Y39576D01* X20127Y39568D01* X20132Y39561D01* X20139Y39556D01* X20146Y39551D01* X20154Y39548D01* X20163Y39546D01* X20172Y39546D01* X20180Y39547D01* X20188Y39550D01* X20196Y39555D01* X20203Y39560D01* X20209Y39567D01* X20213Y39574D01* X20216Y39582D01* X20225Y39608D01* X20236Y39633D01* X20249Y39657D01* X20264Y39679D01* X20281Y39700D01* X20300Y39719D01* X20321Y39737D01* X20325Y39740D01* Y39259D01* X20325Y39259D01* X20304Y39276D01* X20285Y39295D01* X20267Y39316D01* X20252Y39338D01* X20238Y39362D01* X20227Y39386D01* X20218Y39412D01* X20214Y39420D01* X20210Y39427D01* X20204Y39434D01* X20197Y39439D01* X20189Y39443D01* X20181Y39446D01* X20172Y39447D01* X20164Y39447D01* X20155Y39445D01* X20147Y39442D01* X20140Y39437D01* X20133Y39431D01* X20128Y39424D01* X20124Y39417D01* X20121Y39409D01* X20120Y39400D01* X20120Y39391D01* X20122Y39383D01* X20134Y39349D01* X20149Y39316D01* X20167Y39284D01* X20188Y39255D01* X20212Y39227D01* X20237Y39202D01* X20265Y39179D01* X20295Y39159D01* X20325Y39142D01* Y37846D01* X20309Y37837D01* X20280Y37816D01* X20252Y37793D01* X20227Y37767D01* X20204Y37739D01* X20184Y37709D01* X20166Y37677D01* X20152Y37644D01* X20140Y37610D01* X20138Y37601D01* X20138Y37593D01* X20139Y37584D01* X20142Y37576D01* X20147Y37568D01* X20152Y37561D01* X20159Y37556D01* X20166Y37551D01* X20174Y37548D01* X20183Y37546D01* X20192Y37546D01* X20200Y37547D01* X20208Y37550D01* X20216Y37555D01* X20223Y37560D01* X20229Y37567D01* X20233Y37574D01* X20236Y37582D01* X20245Y37608D01* X20256Y37633D01* X20269Y37657D01* X20284Y37679D01* X20301Y37700D01* X20320Y37719D01* X20325Y37723D01* Y37276D01* X20324Y37276D01* X20305Y37295D01* X20287Y37316D01* X20272Y37338D01* X20258Y37362D01* X20247Y37386D01* X20238Y37412D01* X20234Y37420D01* X20230Y37427D01* X20224Y37434D01* X20217Y37439D01* X20209Y37443D01* X20201Y37446D01* X20192Y37447D01* X20184Y37447D01* X20175Y37445D01* X20167Y37442D01* X20160Y37437D01* X20153Y37431D01* X20148Y37424D01* X20144Y37417D01* X20141Y37409D01* X20140Y37400D01* X20140Y37391D01* X20142Y37383D01* X20154Y37349D01* X20169Y37316D01* X20187Y37284D01* X20208Y37255D01* X20232Y37227D01* X20257Y37202D01* X20285Y37179D01* X20315Y37159D01* X20325Y37153D01* Y35834D01* X20300Y35816D01* X20272Y35793D01* X20247Y35767D01* X20224Y35739D01* X20204Y35709D01* X20186Y35677D01* X20172Y35644D01* X20160Y35610D01* X20158Y35601D01* X20158Y35593D01* X20159Y35584D01* X20162Y35576D01* X20167Y35568D01* X20172Y35561D01* X20179Y35556D01* X20186Y35551D01* X20194Y35548D01* X20203Y35546D01* X20212Y35546D01* X20220Y35547D01* X20228Y35550D01* X20236Y35555D01* X20243Y35560D01* X20249Y35567D01* X20253Y35574D01* X20256Y35582D01* X20265Y35608D01* X20276Y35633D01* X20289Y35657D01* X20304Y35679D01* X20321Y35700D01* X20325Y35704D01* Y35295D01* X20325Y35295D01* X20307Y35316D01* X20292Y35338D01* X20278Y35362D01* X20267Y35386D01* X20258Y35412D01* X20254Y35420D01* X20250Y35427D01* X20244Y35434D01* X20237Y35439D01* X20229Y35443D01* X20221Y35446D01* X20212Y35447D01* X20204Y35447D01* X20195Y35445D01* X20187Y35442D01* X20180Y35437D01* X20173Y35431D01* X20168Y35424D01* X20164Y35417D01* X20161Y35409D01* X20160Y35400D01* X20160Y35391D01* X20162Y35383D01* X20174Y35349D01* X20189Y35316D01* X20207Y35284D01* X20228Y35255D01* X20252Y35227D01* X20277Y35202D01* X20305Y35179D01* X20325Y35166D01* Y33820D01* X20320Y33816D01* X20292Y33793D01* X20267Y33767D01* X20244Y33739D01* X20224Y33709D01* X20206Y33677D01* X20192Y33644D01* X20180Y33610D01* X20178Y33601D01* X20178Y33593D01* X20179Y33584D01* X20182Y33576D01* X20187Y33568D01* X20192Y33561D01* X20199Y33556D01* X20206Y33551D01* X20214Y33548D01* X20223Y33546D01* X20232Y33546D01* X20240Y33547D01* X20248Y33550D01* X20256Y33555D01* X20263Y33560D01* X20269Y33567D01* X20273Y33574D01* X20276Y33582D01* X20285Y33608D01* X20296Y33633D01* X20309Y33657D01* X20324Y33679D01* X20325Y33680D01* Y33319D01* X20312Y33338D01* X20298Y33362D01* X20287Y33386D01* X20278Y33412D01* X20274Y33420D01* X20270Y33427D01* X20264Y33434D01* X20257Y33439D01* X20249Y33443D01* X20241Y33446D01* X20232Y33447D01* X20224Y33447D01* X20215Y33445D01* X20207Y33442D01* X20200Y33437D01* X20193Y33431D01* X20188Y33424D01* X20184Y33417D01* X20181Y33409D01* X20180Y33400D01* X20180Y33391D01* X20182Y33383D01* X20194Y33349D01* X20209Y33316D01* X20227Y33284D01* X20248Y33255D01* X20272Y33227D01* X20297Y33202D01* X20325Y33179D01* Y31804D01* X20312Y31793D01* X20287Y31767D01* X20264Y31739D01* X20244Y31709D01* X20226Y31677D01* X20212Y31644D01* X20200Y31610D01* X20198Y31601D01* X20198Y31593D01* X20199Y31584D01* X20202Y31576D01* X20207Y31568D01* X20212Y31561D01* X20219Y31556D01* X20226Y31551D01* X20234Y31548D01* X20243Y31546D01* X20252Y31546D01* X20260Y31547D01* X20268Y31550D01* X20276Y31555D01* X20283Y31560D01* X20289Y31567D01* X20293Y31574D01* X20296Y31582D01* X20305Y31608D01* X20316Y31633D01* X20325Y31650D01* Y31349D01* X20318Y31362D01* X20307Y31386D01* X20298Y31412D01* X20294Y31420D01* X20290Y31427D01* X20284Y31434D01* X20277Y31439D01* X20269Y31443D01* X20261Y31446D01* X20252Y31447D01* X20244Y31447D01* X20235Y31445D01* X20227Y31442D01* X20220Y31437D01* X20213Y31431D01* X20208Y31424D01* X20204Y31417D01* X20201Y31409D01* X20200Y31400D01* X20200Y31391D01* X20202Y31383D01* X20214Y31349D01* X20229Y31316D01* X20247Y31284D01* X20268Y31255D01* X20292Y31227D01* X20317Y31202D01* X20325Y31196D01* Y29785D01* X20307Y29767D01* X20284Y29739D01* X20264Y29709D01* X20246Y29677D01* X20232Y29644D01* X20220Y29610D01* X20218Y29601D01* X20218Y29593D01* X20219Y29584D01* X20222Y29576D01* X20227Y29568D01* X20232Y29561D01* X20239Y29556D01* X20246Y29551D01* X20254Y29548D01* X20263Y29546D01* X20272Y29546D01* X20280Y29547D01* X20288Y29550D01* X20296Y29555D01* X20303Y29560D01* X20309Y29567D01* X20313Y29574D01* X20316Y29582D01* X20325Y29608D01* X20325Y29609D01* Y29391D01* X20318Y29412D01* X20314Y29420D01* X20310Y29427D01* X20304Y29434D01* X20297Y29439D01* X20289Y29443D01* X20281Y29446D01* X20272Y29447D01* X20264Y29447D01* X20255Y29445D01* X20247Y29442D01* X20240Y29437D01* X20233Y29431D01* X20228Y29424D01* X20224Y29417D01* X20221Y29409D01* X20220Y29400D01* X20220Y29391D01* X20222Y29383D01* X20234Y29349D01* X20249Y29316D01* X20267Y29284D01* X20288Y29255D01* X20312Y29227D01* X20325Y29214D01* Y27765D01* X20304Y27739D01* X20284Y27709D01* X20266Y27677D01* X20252Y27644D01* X20240Y27610D01* X20238Y27601D01* X20238Y27593D01* X20239Y27584D01* X20242Y27576D01* X20247Y27568D01* X20252Y27561D01* X20259Y27556D01* X20266Y27551D01* X20274Y27548D01* X20283Y27546D01* X20292Y27546D01* X20300Y27547D01* X20308Y27550D01* X20316Y27555D01* X20323Y27560D01* X20325Y27563D01* Y27432D01* X20324Y27434D01* X20317Y27439D01* X20309Y27443D01* X20301Y27446D01* X20292Y27447D01* X20284Y27447D01* X20275Y27445D01* X20267Y27442D01* X20260Y27437D01* X20253Y27431D01* X20248Y27424D01* X20244Y27417D01* X20241Y27409D01* X20240Y27400D01* X20240Y27391D01* X20242Y27383D01* X20254Y27349D01* X20269Y27316D01* X20287Y27284D01* X20308Y27255D01* X20325Y27235D01* Y25740D01* X20324Y25739D01* X20304Y25709D01* X20286Y25677D01* X20272Y25644D01* X20260Y25610D01* X20258Y25601D01* X20258Y25593D01* X20259Y25584D01* X20262Y25576D01* X20267Y25568D01* X20272Y25561D01* X20279Y25556D01* X20286Y25551D01* X20294Y25548D01* X20303Y25546D01* X20312Y25546D01* X20320Y25547D01* X20325Y25549D01* Y25445D01* X20321Y25446D01* X20312Y25447D01* X20304Y25447D01* X20295Y25445D01* X20287Y25442D01* X20280Y25437D01* X20273Y25431D01* X20268Y25424D01* X20264Y25417D01* X20261Y25409D01* X20260Y25400D01* X20260Y25391D01* X20262Y25383D01* X20274Y25349D01* X20289Y25316D01* X20307Y25284D01* X20325Y25259D01* Y23711D01* X20324Y23709D01* X20306Y23677D01* X20292Y23644D01* X20280Y23610D01* X20278Y23601D01* X20278Y23593D01* X20279Y23584D01* X20282Y23576D01* X20287Y23568D01* X20292Y23561D01* X20299Y23556D01* X20306Y23551D01* X20314Y23548D01* X20323Y23546D01* X20325D01* Y23447D01* X20324Y23447D01* X20315Y23445D01* X20307Y23442D01* X20300Y23437D01* X20293Y23431D01* X20288Y23424D01* X20284Y23417D01* X20281Y23409D01* X20280Y23400D01* X20280Y23391D01* X20282Y23383D01* X20294Y23349D01* X20309Y23316D01* X20325Y23288D01* Y21675D01* X20312Y21644D01* X20300Y21610D01* X20298Y21601D01* X20298Y21593D01* X20299Y21584D01* X20302Y21576D01* X20307Y21568D01* X20312Y21561D01* X20319Y21556D01* X20325Y21552D01* Y21441D01* X20320Y21437D01* X20313Y21431D01* X20308Y21424D01* X20304Y21417D01* X20301Y21409D01* X20300Y21400D01* X20300Y21391D01* X20302Y21383D01* X20314Y21349D01* X20325Y21325D01* Y19625D01* X20320Y19610D01* X20318Y19601D01* X20318Y19593D01* X20319Y19584D01* X20322Y19576D01* X20325Y19571D01* Y19419D01* X20324Y19417D01* X20321Y19409D01* X20320Y19400D01* X20320Y19391D01* X20322Y19383D01* X20325Y19374D01* Y0D01* X19064D01* Y1142D01* X19068Y1144D01* X19100Y1162D01* X19129Y1183D01* X19157Y1207D01* X19182Y1232D01* X19205Y1260D01* X19225Y1290D01* X19243Y1322D01* X19257Y1355D01* X19269Y1389D01* X19271Y1398D01* X19271Y1407D01* X19270Y1415D01* X19267Y1423D01* X19262Y1431D01* X19257Y1438D01* X19250Y1444D01* X19243Y1448D01* X19235Y1451D01* X19226Y1453D01* X19217Y1453D01* X19209Y1452D01* X19201Y1449D01* X19193Y1445D01* X19186Y1439D01* X19180Y1433D01* X19176Y1425D01* X19173Y1417D01* X19164Y1391D01* X19153Y1366D01* X19140Y1343D01* X19125Y1320D01* X19108Y1299D01* X19089Y1280D01* X19068Y1262D01* X19064Y1259D01* Y1740D01* X19085Y1723D01* X19104Y1704D01* X19122Y1683D01* X19137Y1661D01* X19151Y1637D01* X19162Y1613D01* X19171Y1587D01* X19175Y1579D01* X19179Y1572D01* X19185Y1565D01* X19192Y1560D01* X19200Y1556D01* X19208Y1553D01* X19217Y1552D01* X19225Y1552D01* X19234Y1554D01* X19242Y1557D01* X19249Y1562D01* X19256Y1568D01* X19261Y1575D01* X19265Y1582D01* X19268Y1591D01* X19269Y1599D01* X19269Y1608D01* X19267Y1617D01* X19255Y1651D01* X19240Y1683D01* X19222Y1715D01* X19201Y1744D01* X19177Y1772D01* X19152Y1797D01* X19124Y1820D01* X19094Y1840D01* X19064Y1857D01* Y3153D01* X19080Y3162D01* X19109Y3183D01* X19137Y3207D01* X19162Y3232D01* X19185Y3260D01* X19205Y3290D01* X19223Y3322D01* X19237Y3355D01* X19249Y3389D01* X19251Y3398D01* X19251Y3407D01* X19250Y3415D01* X19247Y3423D01* X19242Y3431D01* X19237Y3438D01* X19230Y3444D01* X19223Y3448D01* X19215Y3451D01* X19206Y3453D01* X19197Y3453D01* X19189Y3452D01* X19181Y3449D01* X19173Y3445D01* X19166Y3439D01* X19160Y3433D01* X19156Y3425D01* X19153Y3417D01* X19144Y3391D01* X19133Y3366D01* X19120Y3343D01* X19105Y3320D01* X19088Y3299D01* X19069Y3280D01* X19064Y3276D01* Y3724D01* X19065Y3723D01* X19084Y3704D01* X19102Y3683D01* X19117Y3661D01* X19131Y3637D01* X19142Y3613D01* X19151Y3587D01* X19155Y3579D01* X19159Y3572D01* X19165Y3565D01* X19172Y3560D01* X19180Y3556D01* X19188Y3553D01* X19197Y3552D01* X19205Y3552D01* X19214Y3554D01* X19222Y3557D01* X19229Y3562D01* X19236Y3568D01* X19241Y3575D01* X19245Y3582D01* X19248Y3591D01* X19249Y3599D01* X19249Y3608D01* X19247Y3617D01* X19235Y3651D01* X19220Y3683D01* X19202Y3715D01* X19181Y3744D01* X19157Y3772D01* X19132Y3797D01* X19104Y3820D01* X19074Y3840D01* X19064Y3846D01* Y5165D01* X19089Y5183D01* X19117Y5207D01* X19142Y5232D01* X19165Y5260D01* X19185Y5290D01* X19203Y5322D01* X19217Y5355D01* X19229Y5389D01* X19231Y5398D01* X19231Y5407D01* X19230Y5415D01* X19227Y5423D01* X19222Y5431D01* X19217Y5438D01* X19210Y5444D01* X19203Y5448D01* X19195Y5451D01* X19186Y5453D01* X19177Y5453D01* X19169Y5452D01* X19161Y5449D01* X19153Y5445D01* X19146Y5439D01* X19140Y5433D01* X19136Y5425D01* X19133Y5417D01* X19124Y5391D01* X19113Y5366D01* X19100Y5343D01* X19085Y5320D01* X19068Y5299D01* X19064Y5295D01* Y5704D01* X19064Y5704D01* X19082Y5683D01* X19097Y5661D01* X19111Y5637D01* X19122Y5613D01* X19131Y5587D01* X19135Y5579D01* X19139Y5572D01* X19145Y5565D01* X19152Y5560D01* X19160Y5556D01* X19168Y5553D01* X19177Y5552D01* X19185Y5552D01* X19194Y5554D01* X19202Y5557D01* X19209Y5562D01* X19216Y5568D01* X19221Y5575D01* X19225Y5582D01* X19228Y5591D01* X19229Y5599D01* X19229Y5608D01* X19227Y5617D01* X19215Y5651D01* X19200Y5683D01* X19182Y5715D01* X19161Y5744D01* X19137Y5772D01* X19112Y5797D01* X19084Y5820D01* X19064Y5834D01* Y7180D01* X19069Y7183D01* X19097Y7207D01* X19122Y7232D01* X19145Y7260D01* X19165Y7290D01* X19183Y7322D01* X19197Y7355D01* X19209Y7389D01* X19211Y7398D01* X19211Y7407D01* X19210Y7415D01* X19207Y7423D01* X19202Y7431D01* X19197Y7438D01* X19190Y7444D01* X19183Y7448D01* X19175Y7451D01* X19166Y7453D01* X19157Y7453D01* X19149Y7452D01* X19141Y7449D01* X19133Y7445D01* X19126Y7439D01* X19120Y7433D01* X19116Y7425D01* X19113Y7417D01* X19104Y7391D01* X19093Y7366D01* X19080Y7343D01* X19065Y7320D01* X19064Y7319D01* Y7680D01* X19077Y7661D01* X19091Y7637D01* X19102Y7613D01* X19111Y7587D01* X19115Y7579D01* X19119Y7572D01* X19125Y7565D01* X19132Y7560D01* X19140Y7556D01* X19148Y7553D01* X19157Y7552D01* X19165Y7552D01* X19174Y7554D01* X19182Y7557D01* X19189Y7562D01* X19196Y7568D01* X19201Y7575D01* X19205Y7582D01* X19208Y7591D01* X19209Y7599D01* X19209Y7608D01* X19207Y7617D01* X19195Y7651D01* X19180Y7683D01* X19162Y7715D01* X19141Y7744D01* X19117Y7772D01* X19092Y7797D01* X19064Y7820D01* Y9196D01* X19077Y9207D01* X19102Y9232D01* X19125Y9260D01* X19145Y9290D01* X19163Y9322D01* X19177Y9355D01* X19189Y9389D01* X19191Y9398D01* X19191Y9407D01* X19190Y9415D01* X19187Y9423D01* X19182Y9431D01* X19177Y9438D01* X19170Y9444D01* X19163Y9448D01* X19155Y9451D01* X19146Y9453D01* X19137Y9453D01* X19129Y9452D01* X19121Y9449D01* X19113Y9445D01* X19106Y9439D01* X19100Y9433D01* X19096Y9425D01* X19093Y9417D01* X19084Y9391D01* X19073Y9366D01* X19064Y9350D01* Y9650D01* X19071Y9637D01* X19082Y9613D01* X19091Y9587D01* X19095Y9579D01* X19099Y9572D01* X19105Y9565D01* X19112Y9560D01* X19120Y9556D01* X19128Y9553D01* X19137Y9552D01* X19145Y9552D01* X19154Y9554D01* X19162Y9557D01* X19169Y9562D01* X19176Y9568D01* X19181Y9575D01* X19185Y9582D01* X19188Y9591D01* X19189Y9599D01* X19189Y9608D01* X19187Y9617D01* X19175Y9651D01* X19160Y9683D01* X19142Y9715D01* X19121Y9744D01* X19097Y9772D01* X19072Y9797D01* X19064Y9804D01* Y11214D01* X19082Y11232D01* X19105Y11260D01* X19125Y11290D01* X19143Y11322D01* X19157Y11355D01* X19169Y11389D01* X19171Y11398D01* X19171Y11407D01* X19170Y11415D01* X19167Y11423D01* X19162Y11431D01* X19157Y11438D01* X19150Y11444D01* X19143Y11448D01* X19135Y11451D01* X19126Y11453D01* X19117Y11453D01* X19109Y11452D01* X19101Y11449D01* X19093Y11445D01* X19086Y11439D01* X19080Y11433D01* X19076Y11425D01* X19073Y11417D01* X19064Y11391D01* X19064Y11391D01* Y11608D01* X19071Y11587D01* X19075Y11579D01* X19079Y11572D01* X19085Y11565D01* X19092Y11560D01* X19100Y11556D01* X19108Y11553D01* X19117Y11552D01* X19125Y11552D01* X19134Y11554D01* X19142Y11557D01* X19149Y11562D01* X19156Y11568D01* X19161Y11575D01* X19165Y11582D01* X19168Y11591D01* X19169Y11599D01* X19169Y11608D01* X19167Y11617D01* X19155Y11651D01* X19140Y11683D01* X19122Y11715D01* X19101Y11744D01* X19077Y11772D01* X19064Y11785D01* Y13235D01* X19085Y13260D01* X19105Y13290D01* X19123Y13322D01* X19137Y13355D01* X19149Y13389D01* X19151Y13398D01* X19151Y13407D01* X19150Y13415D01* X19147Y13423D01* X19142Y13431D01* X19137Y13438D01* X19130Y13444D01* X19123Y13448D01* X19115Y13451D01* X19106Y13453D01* X19097Y13453D01* X19089Y13452D01* X19081Y13449D01* X19073Y13445D01* X19066Y13439D01* X19064Y13437D01* Y13567D01* X19065Y13565D01* X19072Y13560D01* X19080Y13556D01* X19088Y13553D01* X19097Y13552D01* X19105Y13552D01* X19114Y13554D01* X19122Y13557D01* X19129Y13562D01* X19136Y13568D01* X19141Y13575D01* X19145Y13582D01* X19148Y13591D01* X19149Y13599D01* X19149Y13608D01* X19147Y13617D01* X19135Y13651D01* X19120Y13683D01* X19102Y13715D01* X19081Y13744D01* X19064Y13764D01* Y15259D01* X19065Y15260D01* X19085Y15290D01* X19103Y15322D01* X19117Y15355D01* X19129Y15389D01* X19131Y15398D01* X19131Y15407D01* X19130Y15415D01* X19127Y15423D01* X19122Y15431D01* X19117Y15438D01* X19110Y15444D01* X19103Y15448D01* X19095Y15451D01* X19086Y15453D01* X19077Y15453D01* X19069Y15452D01* X19064Y15450D01* Y15555D01* X19068Y15553D01* X19077Y15552D01* X19085Y15552D01* X19094Y15554D01* X19102Y15557D01* X19109Y15562D01* X19116Y15568D01* X19121Y15575D01* X19125Y15582D01* X19128Y15591D01* X19129Y15599D01* X19129Y15608D01* X19127Y15617D01* X19115Y15651D01* X19100Y15683D01* X19082Y15715D01* X19064Y15740D01* Y17288D01* X19065Y17290D01* X19083Y17322D01* X19097Y17355D01* X19109Y17389D01* X19111Y17398D01* X19111Y17407D01* X19110Y17415D01* X19107Y17423D01* X19102Y17431D01* X19097Y17438D01* X19090Y17444D01* X19083Y17448D01* X19075Y17451D01* X19066Y17453D01* X19064D01* Y17552D01* X19065D01* X19074Y17554D01* X19082Y17557D01* X19089Y17562D01* X19096Y17568D01* X19101Y17575D01* X19105Y17582D01* X19108Y17591D01* X19109Y17599D01* X19109Y17608D01* X19107Y17617D01* X19095Y17651D01* X19080Y17683D01* X19064Y17711D01* Y19324D01* X19077Y19355D01* X19089Y19389D01* X19091Y19398D01* X19091Y19407D01* X19090Y19415D01* X19087Y19423D01* X19082Y19431D01* X19077Y19438D01* X19070Y19444D01* X19064Y19447D01* Y19559D01* X19069Y19562D01* X19076Y19568D01* X19081Y19575D01* X19085Y19582D01* X19088Y19591D01* X19089Y19599D01* X19089Y19608D01* X19087Y19617D01* X19075Y19651D01* X19064Y19674D01* Y21374D01* X19069Y21389D01* X19071Y21398D01* X19071Y21407D01* X19070Y21415D01* X19067Y21423D01* X19064Y21428D01* Y21580D01* X19065Y21582D01* X19068Y21591D01* X19069Y21599D01* X19069Y21608D01* X19067Y21617D01* X19064Y21625D01* Y40000D01* G37* G36* X20325D02*X20505D01* Y33859D01* X20502Y33864D01* X20496Y33871D01* X20489Y33876D01* X20482Y33880D01* X20473Y33883D01* X20465Y33884D01* X20456Y33884D01* X20448Y33882D01* X20413Y33870D01* X20381Y33855D01* X20349Y33837D01* X20325Y33820D01* Y35166D01* X20335Y35159D01* X20367Y35141D01* X20400Y35127D01* X20434Y35115D01* X20443Y35113D01* X20452Y35113D01* X20460Y35115D01* X20468Y35117D01* X20476Y35122D01* X20483Y35127D01* X20489Y35134D01* X20493Y35141D01* X20496Y35149D01* X20498Y35158D01* X20498Y35167D01* X20497Y35175D01* X20494Y35183D01* X20490Y35191D01* X20484Y35198D01* X20477Y35204D01* X20470Y35208D01* X20462Y35211D01* X20436Y35220D01* X20411Y35231D01* X20388Y35244D01* X20365Y35259D01* X20344Y35276D01* X20325Y35295D01* Y35704D01* X20340Y35719D01* X20361Y35737D01* X20383Y35752D01* X20407Y35766D01* X20431Y35777D01* X20457Y35786D01* X20465Y35790D01* X20472Y35794D01* X20479Y35800D01* X20484Y35807D01* X20488Y35815D01* X20491Y35823D01* X20492Y35832D01* X20492Y35840D01* X20490Y35849D01* X20487Y35857D01* X20482Y35864D01* X20476Y35871D01* X20469Y35876D01* X20462Y35880D01* X20453Y35883D01* X20445Y35884D01* X20436Y35884D01* X20428Y35882D01* X20393Y35870D01* X20361Y35855D01* X20329Y35837D01* X20325Y35834D01* Y37153D01* X20347Y37141D01* X20380Y37127D01* X20414Y37115D01* X20423Y37113D01* X20432Y37113D01* X20440Y37115D01* X20448Y37117D01* X20456Y37122D01* X20463Y37127D01* X20469Y37134D01* X20473Y37141D01* X20476Y37149D01* X20478Y37158D01* X20478Y37167D01* X20477Y37175D01* X20474Y37183D01* X20470Y37191D01* X20464Y37198D01* X20457Y37204D01* X20450Y37208D01* X20442Y37211D01* X20416Y37220D01* X20391Y37231D01* X20368Y37244D01* X20345Y37259D01* X20325Y37276D01* Y37723D01* X20341Y37737D01* X20363Y37752D01* X20387Y37766D01* X20411Y37777D01* X20437Y37786D01* X20445Y37790D01* X20452Y37794D01* X20459Y37800D01* X20464Y37807D01* X20468Y37815D01* X20471Y37823D01* X20472Y37832D01* X20472Y37840D01* X20470Y37849D01* X20467Y37857D01* X20462Y37864D01* X20456Y37871D01* X20449Y37876D01* X20442Y37880D01* X20433Y37883D01* X20425Y37884D01* X20416Y37884D01* X20408Y37882D01* X20373Y37870D01* X20341Y37855D01* X20325Y37846D01* Y39142D01* X20327Y39141D01* X20360Y39127D01* X20394Y39115D01* X20403Y39113D01* X20412Y39113D01* X20420Y39115D01* X20428Y39117D01* X20436Y39122D01* X20443Y39127D01* X20449Y39134D01* X20453Y39141D01* X20456Y39149D01* X20458Y39158D01* X20458Y39167D01* X20457Y39175D01* X20454Y39183D01* X20450Y39191D01* X20444Y39198D01* X20437Y39204D01* X20430Y39208D01* X20422Y39211D01* X20396Y39220D01* X20371Y39231D01* X20348Y39244D01* X20325Y39259D01* Y39740D01* X20343Y39752D01* X20367Y39766D01* X20391Y39777D01* X20417Y39786D01* X20425Y39790D01* X20432Y39794D01* X20439Y39800D01* X20444Y39807D01* X20448Y39815D01* X20451Y39823D01* X20452Y39832D01* X20452Y39840D01* X20450Y39849D01* X20447Y39857D01* X20442Y39864D01* X20436Y39871D01* X20429Y39876D01* X20422Y39880D01* X20413Y39883D01* X20405Y39884D01* X20396Y39884D01* X20388Y39882D01* X20353Y39870D01* X20325Y39857D01* Y40000D01* G37* G36* X20505Y7740D02*X20504Y7739D01* X20484Y7709D01* X20466Y7677D01* X20452Y7644D01* X20440Y7610D01* X20438Y7601D01* X20438Y7593D01* X20439Y7584D01* X20442Y7576D01* X20447Y7568D01* X20452Y7561D01* X20459Y7556D01* X20466Y7551D01* X20474Y7548D01* X20483Y7546D01* X20492Y7546D01* X20500Y7547D01* X20505Y7549D01* Y7445D01* X20501Y7446D01* X20492Y7447D01* X20484Y7447D01* X20475Y7445D01* X20467Y7442D01* X20460Y7437D01* X20453Y7431D01* X20448Y7424D01* X20444Y7417D01* X20441Y7409D01* X20440Y7400D01* X20440Y7391D01* X20442Y7383D01* X20454Y7349D01* X20469Y7316D01* X20487Y7284D01* X20505Y7259D01* Y5711D01* X20504Y5709D01* X20486Y5677D01* X20472Y5644D01* X20460Y5610D01* X20458Y5601D01* X20458Y5593D01* X20459Y5584D01* X20462Y5576D01* X20467Y5568D01* X20472Y5561D01* X20479Y5556D01* X20486Y5551D01* X20494Y5548D01* X20503Y5546D01* X20505D01* Y5447D01* X20504Y5447D01* X20495Y5445D01* X20487Y5442D01* X20480Y5437D01* X20473Y5431D01* X20468Y5424D01* X20464Y5417D01* X20461Y5409D01* X20460Y5400D01* X20460Y5391D01* X20462Y5383D01* X20474Y5349D01* X20489Y5316D01* X20505Y5288D01* Y3675D01* X20492Y3644D01* X20480Y3610D01* X20478Y3601D01* X20478Y3593D01* X20479Y3584D01* X20482Y3576D01* X20487Y3568D01* X20492Y3561D01* X20499Y3556D01* X20505Y3552D01* Y3441D01* X20500Y3437D01* X20493Y3431D01* X20488Y3424D01* X20484Y3417D01* X20481Y3409D01* X20480Y3400D01* X20480Y3391D01* X20482Y3383D01* X20494Y3349D01* X20505Y3325D01* Y1625D01* X20500Y1610D01* X20498Y1601D01* X20498Y1593D01* X20499Y1584D01* X20502Y1576D01* X20505Y1571D01* Y1419D01* X20504Y1417D01* X20501Y1409D01* X20500Y1400D01* X20500Y1391D01* X20502Y1383D01* X20505Y1374D01* Y0D01* X20325D01* Y19374D01* X20334Y19349D01* X20349Y19316D01* X20367Y19284D01* X20388Y19255D01* X20412Y19227D01* X20437Y19202D01* X20465Y19179D01* X20495Y19159D01* X20505Y19153D01* Y17834D01* X20480Y17816D01* X20452Y17793D01* X20427Y17767D01* X20404Y17739D01* X20384Y17709D01* X20366Y17677D01* X20352Y17644D01* X20340Y17610D01* X20338Y17601D01* X20338Y17593D01* X20339Y17584D01* X20342Y17576D01* X20347Y17568D01* X20352Y17561D01* X20359Y17556D01* X20366Y17551D01* X20374Y17548D01* X20383Y17546D01* X20392Y17546D01* X20400Y17547D01* X20408Y17550D01* X20416Y17555D01* X20423Y17560D01* X20429Y17567D01* X20433Y17574D01* X20436Y17582D01* X20445Y17608D01* X20456Y17633D01* X20469Y17657D01* X20484Y17679D01* X20501Y17700D01* X20505Y17704D01* Y17295D01* X20505Y17295D01* X20487Y17316D01* X20472Y17338D01* X20458Y17362D01* X20447Y17386D01* X20438Y17412D01* X20434Y17420D01* X20430Y17427D01* X20424Y17434D01* X20417Y17439D01* X20409Y17443D01* X20401Y17446D01* X20392Y17447D01* X20384Y17447D01* X20375Y17445D01* X20367Y17442D01* X20360Y17437D01* X20353Y17431D01* X20348Y17424D01* X20344Y17417D01* X20341Y17409D01* X20340Y17400D01* X20340Y17391D01* X20342Y17383D01* X20354Y17349D01* X20369Y17316D01* X20387Y17284D01* X20408Y17255D01* X20432Y17227D01* X20457Y17202D01* X20485Y17179D01* X20505Y17166D01* Y15820D01* X20500Y15816D01* X20472Y15793D01* X20447Y15767D01* X20424Y15739D01* X20404Y15709D01* X20386Y15677D01* X20372Y15644D01* X20360Y15610D01* X20358Y15601D01* X20358Y15593D01* X20359Y15584D01* X20362Y15576D01* X20367Y15568D01* X20372Y15561D01* X20379Y15556D01* X20386Y15551D01* X20394Y15548D01* X20403Y15546D01* X20412Y15546D01* X20420Y15547D01* X20428Y15550D01* X20436Y15555D01* X20443Y15560D01* X20449Y15567D01* X20453Y15574D01* X20456Y15582D01* X20465Y15608D01* X20476Y15633D01* X20489Y15657D01* X20504Y15679D01* X20505Y15680D01* Y15319D01* X20492Y15338D01* X20478Y15362D01* X20467Y15386D01* X20458Y15412D01* X20454Y15420D01* X20450Y15427D01* X20444Y15434D01* X20437Y15439D01* X20429Y15443D01* X20421Y15446D01* X20412Y15447D01* X20404Y15447D01* X20395Y15445D01* X20387Y15442D01* X20380Y15437D01* X20373Y15431D01* X20368Y15424D01* X20364Y15417D01* X20361Y15409D01* X20360Y15400D01* X20360Y15391D01* X20362Y15383D01* X20374Y15349D01* X20389Y15316D01* X20407Y15284D01* X20428Y15255D01* X20452Y15227D01* X20477Y15202D01* X20505Y15179D01* Y13804D01* X20492Y13793D01* X20467Y13767D01* X20444Y13739D01* X20424Y13709D01* X20406Y13677D01* X20392Y13644D01* X20380Y13610D01* X20378Y13601D01* X20378Y13593D01* X20379Y13584D01* X20382Y13576D01* X20387Y13568D01* X20392Y13561D01* X20399Y13556D01* X20406Y13551D01* X20414Y13548D01* X20423Y13546D01* X20432Y13546D01* X20440Y13547D01* X20448Y13550D01* X20456Y13555D01* X20463Y13560D01* X20469Y13567D01* X20473Y13574D01* X20476Y13582D01* X20485Y13608D01* X20496Y13633D01* X20505Y13650D01* Y13349D01* X20498Y13362D01* X20487Y13386D01* X20478Y13412D01* X20474Y13420D01* X20470Y13427D01* X20464Y13434D01* X20457Y13439D01* X20449Y13443D01* X20441Y13446D01* X20432Y13447D01* X20424Y13447D01* X20415Y13445D01* X20407Y13442D01* X20400Y13437D01* X20393Y13431D01* X20388Y13424D01* X20384Y13417D01* X20381Y13409D01* X20380Y13400D01* X20380Y13391D01* X20382Y13383D01* X20394Y13349D01* X20409Y13316D01* X20427Y13284D01* X20448Y13255D01* X20472Y13227D01* X20497Y13202D01* X20505Y13196D01* Y11785D01* X20487Y11767D01* X20464Y11739D01* X20444Y11709D01* X20426Y11677D01* X20412Y11644D01* X20400Y11610D01* X20398Y11601D01* X20398Y11593D01* X20399Y11584D01* X20402Y11576D01* X20407Y11568D01* X20412Y11561D01* X20419Y11556D01* X20426Y11551D01* X20434Y11548D01* X20443Y11546D01* X20452Y11546D01* X20460Y11547D01* X20468Y11550D01* X20476Y11555D01* X20483Y11560D01* X20489Y11567D01* X20493Y11574D01* X20496Y11582D01* X20505Y11608D01* X20505Y11609D01* Y11391D01* X20498Y11412D01* X20494Y11420D01* X20490Y11427D01* X20484Y11434D01* X20477Y11439D01* X20469Y11443D01* X20461Y11446D01* X20452Y11447D01* X20444Y11447D01* X20435Y11445D01* X20427Y11442D01* X20420Y11437D01* X20413Y11431D01* X20408Y11424D01* X20404Y11417D01* X20401Y11409D01* X20400Y11400D01* X20400Y11391D01* X20402Y11383D01* X20414Y11349D01* X20429Y11316D01* X20447Y11284D01* X20468Y11255D01* X20492Y11227D01* X20505Y11214D01* Y9765D01* X20484Y9739D01* X20464Y9709D01* X20446Y9677D01* X20432Y9644D01* X20420Y9610D01* X20418Y9601D01* X20418Y9593D01* X20419Y9584D01* X20422Y9576D01* X20427Y9568D01* X20432Y9561D01* X20439Y9556D01* X20446Y9551D01* X20454Y9548D01* X20463Y9546D01* X20472Y9546D01* X20480Y9547D01* X20488Y9550D01* X20496Y9555D01* X20503Y9560D01* X20505Y9563D01* Y9432D01* X20504Y9434D01* X20497Y9439D01* X20489Y9443D01* X20481Y9446D01* X20472Y9447D01* X20464Y9447D01* X20455Y9445D01* X20447Y9442D01* X20440Y9437D01* X20433Y9431D01* X20428Y9424D01* X20424Y9417D01* X20421Y9409D01* X20420Y9400D01* X20420Y9391D01* X20422Y9383D01* X20434Y9349D01* X20449Y9316D01* X20467Y9284D01* X20488Y9255D01* X20505Y9235D01* Y7740D01* G37* G36* Y19276D02*X20504Y19276D01* X20485Y19295D01* X20467Y19316D01* X20452Y19338D01* X20438Y19362D01* X20427Y19386D01* X20418Y19412D01* X20414Y19420D01* X20410Y19427D01* X20404Y19434D01* X20397Y19439D01* X20389Y19443D01* X20381Y19446D01* X20372Y19447D01* X20364Y19447D01* X20355Y19445D01* X20347Y19442D01* X20340Y19437D01* X20333Y19431D01* X20328Y19424D01* X20325Y19419D01* Y19571D01* X20327Y19568D01* X20332Y19561D01* X20339Y19556D01* X20346Y19551D01* X20354Y19548D01* X20363Y19546D01* X20372Y19546D01* X20380Y19547D01* X20388Y19550D01* X20396Y19555D01* X20403Y19560D01* X20409Y19567D01* X20413Y19574D01* X20416Y19582D01* X20425Y19608D01* X20436Y19633D01* X20449Y19657D01* X20464Y19679D01* X20481Y19700D01* X20500Y19719D01* X20505Y19723D01* Y19276D01* G37* G36* Y19846D02*X20489Y19837D01* X20460Y19816D01* X20432Y19793D01* X20407Y19767D01* X20384Y19739D01* X20364Y19709D01* X20346Y19677D01* X20332Y19644D01* X20325Y19625D01* Y21325D01* X20329Y21316D01* X20347Y21284D01* X20368Y21255D01* X20392Y21227D01* X20417Y21202D01* X20445Y21179D01* X20475Y21159D01* X20505Y21142D01* Y19846D01* G37* G36* Y21259D02*X20505Y21259D01* X20484Y21276D01* X20465Y21295D01* X20447Y21316D01* X20432Y21338D01* X20418Y21362D01* X20407Y21386D01* X20398Y21412D01* X20394Y21420D01* X20390Y21427D01* X20384Y21434D01* X20377Y21439D01* X20369Y21443D01* X20361Y21446D01* X20352Y21447D01* X20344Y21447D01* X20335Y21445D01* X20327Y21442D01* X20325Y21441D01* Y21552D01* X20326Y21551D01* X20334Y21548D01* X20343Y21546D01* X20352Y21546D01* X20360Y21547D01* X20368Y21550D01* X20376Y21555D01* X20383Y21560D01* X20389Y21567D01* X20393Y21574D01* X20396Y21582D01* X20405Y21608D01* X20416Y21633D01* X20429Y21657D01* X20444Y21679D01* X20461Y21700D01* X20480Y21719D01* X20501Y21737D01* X20505Y21740D01* Y21259D01* G37* G36* Y21857D02*X20501Y21855D01* X20469Y21837D01* X20440Y21816D01* X20412Y21793D01* X20387Y21767D01* X20364Y21739D01* X20344Y21709D01* X20326Y21677D01* X20325Y21675D01* Y23288D01* X20327Y23284D01* X20348Y23255D01* X20372Y23227D01* X20397Y23202D01* X20425Y23179D01* X20455Y23159D01* X20487Y23141D01* X20505Y23133D01* Y21857D01* G37* G36* Y23246D02*X20485Y23259D01* X20464Y23276D01* X20445Y23295D01* X20427Y23316D01* X20412Y23338D01* X20398Y23362D01* X20387Y23386D01* X20378Y23412D01* X20374Y23420D01* X20370Y23427D01* X20364Y23434D01* X20357Y23439D01* X20349Y23443D01* X20341Y23446D01* X20332Y23447D01* X20325Y23447D01* Y23546D01* X20332Y23546D01* X20340Y23547D01* X20348Y23550D01* X20356Y23555D01* X20363Y23560D01* X20369Y23567D01* X20373Y23574D01* X20376Y23582D01* X20385Y23608D01* X20396Y23633D01* X20409Y23657D01* X20424Y23679D01* X20441Y23700D01* X20460Y23719D01* X20481Y23737D01* X20503Y23752D01* X20505Y23754D01* Y23246D01* G37* G36* Y23866D02*X20481Y23855D01* X20449Y23837D01* X20420Y23816D01* X20392Y23793D01* X20367Y23767D01* X20344Y23739D01* X20325Y23711D01* Y25259D01* X20328Y25255D01* X20352Y25227D01* X20377Y25202D01* X20405Y25179D01* X20435Y25159D01* X20467Y25141D01* X20500Y25127D01* X20505Y25125D01* Y23866D01* G37* G36* Y25234D02*X20488Y25244D01* X20465Y25259D01* X20444Y25276D01* X20425Y25295D01* X20407Y25316D01* X20392Y25338D01* X20378Y25362D01* X20367Y25386D01* X20358Y25412D01* X20354Y25420D01* X20350Y25427D01* X20344Y25434D01* X20337Y25439D01* X20329Y25443D01* X20325Y25445D01* Y25549D01* X20328Y25550D01* X20336Y25555D01* X20343Y25560D01* X20349Y25567D01* X20353Y25574D01* X20356Y25582D01* X20365Y25608D01* X20376Y25633D01* X20389Y25657D01* X20404Y25679D01* X20421Y25700D01* X20440Y25719D01* X20461Y25737D01* X20483Y25752D01* X20505Y25765D01* Y25234D01* G37* G36* Y25874D02*X20493Y25870D01* X20461Y25855D01* X20429Y25837D01* X20400Y25816D01* X20372Y25793D01* X20347Y25767D01* X20325Y25740D01* Y27235D01* X20332Y27227D01* X20357Y27202D01* X20385Y27179D01* X20415Y27159D01* X20447Y27141D01* X20480Y27127D01* X20505Y27118D01* Y25874D01* G37* G36* Y27225D02*X20491Y27231D01* X20468Y27244D01* X20445Y27259D01* X20424Y27276D01* X20405Y27295D01* X20387Y27316D01* X20372Y27338D01* X20358Y27362D01* X20347Y27386D01* X20338Y27412D01* X20334Y27420D01* X20330Y27427D01* X20325Y27432D01* Y27563D01* X20329Y27567D01* X20333Y27574D01* X20336Y27582D01* X20345Y27608D01* X20356Y27633D01* X20369Y27657D01* X20384Y27679D01* X20401Y27700D01* X20420Y27719D01* X20441Y27737D01* X20463Y27752D01* X20487Y27766D01* X20505Y27775D01* Y27225D01* G37* G36* Y27881D02*X20473Y27870D01* X20441Y27855D01* X20409Y27837D01* X20380Y27816D01* X20352Y27793D01* X20327Y27767D01* X20325Y27765D01* Y29214D01* X20337Y29202D01* X20365Y29179D01* X20395Y29159D01* X20427Y29141D01* X20460Y29127D01* X20494Y29115D01* X20503Y29113D01* X20505D01* Y27881D01* G37* G36* Y29217D02*X20496Y29220D01* X20471Y29231D01* X20448Y29244D01* X20425Y29259D01* X20404Y29276D01* X20385Y29295D01* X20367Y29316D01* X20352Y29338D01* X20338Y29362D01* X20327Y29386D01* X20325Y29391D01* Y29609D01* X20336Y29633D01* X20349Y29657D01* X20364Y29679D01* X20381Y29700D01* X20400Y29719D01* X20421Y29737D01* X20443Y29752D01* X20467Y29766D01* X20491Y29777D01* X20505Y29782D01* Y29217D01* G37* G36* Y29884D02*X20505Y29884D01* X20496Y29884D01* X20488Y29882D01* X20453Y29870D01* X20421Y29855D01* X20389Y29837D01* X20360Y29816D01* X20332Y29793D01* X20325Y29785D01* Y31196D01* X20345Y31179D01* X20375Y31159D01* X20407Y31141D01* X20440Y31127D01* X20474Y31115D01* X20483Y31113D01* X20492Y31113D01* X20500Y31115D01* X20505Y31116D01* Y29884D01* G37* G36* Y31210D02*X20502Y31211D01* X20476Y31220D01* X20451Y31231D01* X20428Y31244D01* X20405Y31259D01* X20384Y31276D01* X20365Y31295D01* X20347Y31316D01* X20332Y31338D01* X20325Y31349D01* Y31650D01* X20329Y31657D01* X20344Y31679D01* X20361Y31700D01* X20380Y31719D01* X20401Y31737D01* X20423Y31752D01* X20447Y31766D01* X20471Y31777D01* X20497Y31786D01* X20505Y31790D01* X20505Y31790D01* Y31210D01* G37* G36* Y31878D02*X20502Y31880D01* X20493Y31883D01* X20485Y31884D01* X20476Y31884D01* X20468Y31882D01* X20433Y31870D01* X20401Y31855D01* X20369Y31837D01* X20340Y31816D01* X20325Y31804D01* Y33179D01* X20325Y33179D01* X20355Y33159D01* X20387Y33141D01* X20420Y33127D01* X20454Y33115D01* X20463Y33113D01* X20472Y33113D01* X20480Y33115D01* X20488Y33117D01* X20496Y33122D01* X20503Y33127D01* X20505Y33130D01* Y31878D01* G37* G36* Y33197D02*X20504Y33198D01* X20497Y33204D01* X20490Y33208D01* X20482Y33211D01* X20456Y33220D01* X20431Y33231D01* X20408Y33244D01* X20385Y33259D01* X20364Y33276D01* X20345Y33295D01* X20327Y33316D01* X20325Y33319D01* Y33680D01* X20341Y33700D01* X20360Y33719D01* X20381Y33737D01* X20403Y33752D01* X20427Y33766D01* X20451Y33777D01* X20477Y33786D01* X20485Y33790D01* X20492Y33794D01* X20499Y33800D01* X20504Y33807D01* X20505Y33809D01* Y33197D01* G37* G36* Y40000D02*X20764D01* Y39804D01* X20744Y39820D01* X20714Y39840D01* X20682Y39858D01* X20649Y39873D01* X20615Y39884D01* X20606Y39886D01* X20597Y39886D01* X20589Y39885D01* X20581Y39882D01* X20573Y39878D01* X20566Y39872D01* X20560Y39865D01* X20556Y39858D01* X20553Y39850D01* X20551Y39841D01* X20551Y39833D01* X20552Y39824D01* X20555Y39816D01* X20559Y39808D01* X20565Y39801D01* X20572Y39796D01* X20579Y39791D01* X20587Y39788D01* X20613Y39779D01* X20638Y39768D01* X20661Y39755D01* X20684Y39740D01* X20705Y39723D01* X20724Y39704D01* X20742Y39683D01* X20757Y39661D01* X20764Y39650D01* Y39350D01* X20760Y39343D01* X20745Y39320D01* X20728Y39299D01* X20709Y39280D01* X20688Y39262D01* X20666Y39247D01* X20642Y39233D01* X20618Y39222D01* X20592Y39213D01* X20584Y39209D01* X20577Y39205D01* X20570Y39199D01* X20565Y39192D01* X20561Y39184D01* X20558Y39176D01* X20557Y39167D01* X20557Y39159D01* X20559Y39150D01* X20562Y39142D01* X20567Y39135D01* X20573Y39128D01* X20580Y39123D01* X20587Y39119D01* X20596Y39116D01* X20604Y39115D01* X20613Y39115D01* X20621Y39117D01* X20656Y39129D01* X20688Y39144D01* X20720Y39162D01* X20749Y39183D01* X20764Y39196D01* Y37820D01* X20764Y37820D01* X20734Y37840D01* X20702Y37858D01* X20669Y37873D01* X20635Y37884D01* X20626Y37886D01* X20617Y37886D01* X20609Y37885D01* X20601Y37882D01* X20593Y37878D01* X20586Y37872D01* X20580Y37865D01* X20576Y37858D01* X20573Y37850D01* X20571Y37841D01* X20571Y37833D01* X20572Y37824D01* X20575Y37816D01* X20579Y37808D01* X20585Y37801D01* X20592Y37796D01* X20599Y37791D01* X20607Y37788D01* X20633Y37779D01* X20658Y37768D01* X20681Y37755D01* X20704Y37740D01* X20725Y37723D01* X20744Y37704D01* X20762Y37683D01* X20764Y37680D01* Y37319D01* X20748Y37299D01* X20729Y37280D01* X20708Y37262D01* X20686Y37247D01* X20662Y37233D01* X20638Y37222D01* X20612Y37213D01* X20604Y37209D01* X20597Y37205D01* X20590Y37199D01* X20585Y37192D01* X20581Y37184D01* X20578Y37176D01* X20577Y37167D01* X20577Y37159D01* X20579Y37150D01* X20582Y37142D01* X20587Y37135D01* X20593Y37128D01* X20600Y37123D01* X20607Y37119D01* X20616Y37116D01* X20624Y37115D01* X20633Y37115D01* X20641Y37117D01* X20676Y37129D01* X20708Y37144D01* X20740Y37162D01* X20764Y37180D01* Y35834D01* X20754Y35840D01* X20722Y35858D01* X20689Y35873D01* X20655Y35884D01* X20646Y35886D01* X20637Y35886D01* X20629Y35885D01* X20621Y35882D01* X20613Y35878D01* X20606Y35872D01* X20600Y35865D01* X20596Y35858D01* X20593Y35850D01* X20591Y35841D01* X20591Y35833D01* X20592Y35824D01* X20595Y35816D01* X20599Y35808D01* X20605Y35801D01* X20612Y35796D01* X20619Y35791D01* X20627Y35788D01* X20653Y35779D01* X20678Y35768D01* X20701Y35755D01* X20724Y35740D01* X20745Y35723D01* X20764Y35704D01* Y35295D01* X20749Y35280D01* X20728Y35262D01* X20706Y35247D01* X20682Y35233D01* X20658Y35222D01* X20632Y35213D01* X20624Y35209D01* X20617Y35205D01* X20610Y35199D01* X20605Y35192D01* X20601Y35184D01* X20598Y35176D01* X20597Y35167D01* X20597Y35159D01* X20599Y35150D01* X20602Y35142D01* X20607Y35135D01* X20613Y35128D01* X20620Y35123D01* X20627Y35119D01* X20636Y35116D01* X20644Y35115D01* X20653Y35115D01* X20661Y35117D01* X20696Y35129D01* X20728Y35144D01* X20760Y35162D01* X20764Y35165D01* Y33846D01* X20742Y33858D01* X20709Y33873D01* X20675Y33884D01* X20666Y33886D01* X20657Y33886D01* X20649Y33885D01* X20641Y33882D01* X20633Y33878D01* X20626Y33872D01* X20620Y33865D01* X20616Y33858D01* X20613Y33850D01* X20611Y33841D01* X20611Y33833D01* X20612Y33824D01* X20615Y33816D01* X20619Y33808D01* X20625Y33801D01* X20632Y33796D01* X20639Y33791D01* X20647Y33788D01* X20673Y33779D01* X20698Y33768D01* X20721Y33755D01* X20744Y33740D01* X20764Y33724D01* Y33276D01* X20748Y33262D01* X20726Y33247D01* X20702Y33233D01* X20678Y33222D01* X20652Y33213D01* X20644Y33209D01* X20637Y33205D01* X20630Y33199D01* X20625Y33192D01* X20621Y33184D01* X20618Y33176D01* X20617Y33167D01* X20617Y33159D01* X20619Y33150D01* X20622Y33142D01* X20627Y33135D01* X20633Y33128D01* X20640Y33123D01* X20647Y33119D01* X20656Y33116D01* X20664Y33115D01* X20673Y33115D01* X20681Y33117D01* X20716Y33129D01* X20748Y33144D01* X20764Y33153D01* Y31857D01* X20762Y31858D01* X20729Y31873D01* X20695Y31884D01* X20686Y31886D01* X20677Y31886D01* X20669Y31885D01* X20661Y31882D01* X20653Y31878D01* X20646Y31872D01* X20640Y31865D01* X20636Y31858D01* X20633Y31850D01* X20631Y31841D01* X20631Y31833D01* X20632Y31824D01* X20635Y31816D01* X20639Y31808D01* X20645Y31801D01* X20652Y31796D01* X20659Y31791D01* X20667Y31788D01* X20693Y31779D01* X20718Y31768D01* X20741Y31755D01* X20764Y31740D01* Y31259D01* X20746Y31247D01* X20722Y31233D01* X20698Y31222D01* X20672Y31213D01* X20664Y31209D01* X20657Y31205D01* X20650Y31199D01* X20645Y31192D01* X20641Y31184D01* X20638Y31176D01* X20637Y31167D01* X20637Y31159D01* X20639Y31150D01* X20642Y31142D01* X20647Y31135D01* X20653Y31128D01* X20660Y31123D01* X20667Y31119D01* X20676Y31116D01* X20684Y31115D01* X20693Y31115D01* X20701Y31117D01* X20736Y31129D01* X20764Y31142D01* Y29866D01* X20749Y29873D01* X20715Y29884D01* X20706Y29886D01* X20697Y29886D01* X20689Y29885D01* X20681Y29882D01* X20673Y29878D01* X20666Y29872D01* X20660Y29865D01* X20656Y29858D01* X20653Y29850D01* X20651Y29841D01* X20651Y29833D01* X20652Y29824D01* X20655Y29816D01* X20659Y29808D01* X20665Y29801D01* X20672Y29796D01* X20679Y29791D01* X20687Y29788D01* X20713Y29779D01* X20738Y29768D01* X20761Y29755D01* X20764Y29754D01* Y29246D01* X20742Y29233D01* X20718Y29222D01* X20692Y29213D01* X20684Y29209D01* X20677Y29205D01* X20670Y29199D01* X20665Y29192D01* X20661Y29184D01* X20658Y29176D01* X20657Y29167D01* X20657Y29159D01* X20659Y29150D01* X20662Y29142D01* X20667Y29135D01* X20673Y29128D01* X20680Y29123D01* X20687Y29119D01* X20696Y29116D01* X20704Y29115D01* X20713Y29115D01* X20721Y29117D01* X20756Y29129D01* X20764Y29133D01* Y27874D01* X20735Y27884D01* X20726Y27886D01* X20717Y27886D01* X20709Y27885D01* X20701Y27882D01* X20693Y27878D01* X20686Y27872D01* X20680Y27865D01* X20676Y27858D01* X20673Y27850D01* X20671Y27841D01* X20671Y27833D01* X20672Y27824D01* X20675Y27816D01* X20679Y27808D01* X20685Y27801D01* X20692Y27796D01* X20699Y27791D01* X20707Y27788D01* X20733Y27779D01* X20758Y27768D01* X20764Y27765D01* Y27234D01* X20762Y27233D01* X20738Y27222D01* X20712Y27213D01* X20704Y27209D01* X20697Y27205D01* X20690Y27199D01* X20685Y27192D01* X20681Y27184D01* X20678Y27176D01* X20677Y27167D01* X20677Y27159D01* X20679Y27150D01* X20682Y27142D01* X20687Y27135D01* X20693Y27128D01* X20700Y27123D01* X20707Y27119D01* X20716Y27116D01* X20724Y27115D01* X20733Y27115D01* X20741Y27117D01* X20764Y27125D01* Y25881D01* X20755Y25884D01* X20746Y25886D01* X20737Y25886D01* X20729Y25885D01* X20721Y25882D01* X20713Y25878D01* X20706Y25872D01* X20700Y25865D01* X20696Y25858D01* X20693Y25850D01* X20691Y25841D01* X20691Y25833D01* X20692Y25824D01* X20695Y25816D01* X20699Y25808D01* X20705Y25801D01* X20712Y25796D01* X20719Y25791D01* X20727Y25788D01* X20753Y25779D01* X20764Y25774D01* Y25225D01* X20758Y25222D01* X20732Y25213D01* X20724Y25209D01* X20717Y25205D01* X20710Y25199D01* X20705Y25192D01* X20701Y25184D01* X20698Y25176D01* X20697Y25167D01* X20697Y25159D01* X20699Y25150D01* X20702Y25142D01* X20707Y25135D01* X20713Y25128D01* X20720Y25123D01* X20727Y25119D01* X20736Y25116D01* X20744Y25115D01* X20753Y25115D01* X20761Y25117D01* X20764Y25118D01* Y23886D01* X20757Y23886D01* X20749Y23885D01* X20741Y23882D01* X20733Y23878D01* X20726Y23872D01* X20720Y23865D01* X20716Y23858D01* X20713Y23850D01* X20711Y23841D01* X20711Y23833D01* X20712Y23824D01* X20715Y23816D01* X20719Y23808D01* X20725Y23801D01* X20732Y23796D01* X20739Y23791D01* X20747Y23788D01* X20764Y23782D01* Y23217D01* X20752Y23213D01* X20744Y23209D01* X20737Y23205D01* X20730Y23199D01* X20725Y23192D01* X20721Y23184D01* X20718Y23176D01* X20717Y23167D01* X20717Y23159D01* X20719Y23150D01* X20722Y23142D01* X20727Y23135D01* X20733Y23128D01* X20740Y23123D01* X20747Y23119D01* X20756Y23116D01* X20764Y23115D01* Y21883D01* X20761Y21882D01* X20753Y21878D01* X20746Y21872D01* X20740Y21865D01* X20736Y21858D01* X20733Y21850D01* X20731Y21841D01* X20731Y21833D01* X20732Y21824D01* X20735Y21816D01* X20739Y21808D01* X20745Y21801D01* X20752Y21796D01* X20759Y21791D01* X20764Y21789D01* Y21209D01* X20757Y21205D01* X20750Y21199D01* X20745Y21192D01* X20741Y21184D01* X20738Y21176D01* X20737Y21167D01* X20737Y21159D01* X20739Y21150D01* X20742Y21142D01* X20747Y21135D01* X20753Y21128D01* X20760Y21123D01* X20764Y21121D01* Y19870D01* X20760Y19865D01* X20756Y19858D01* X20753Y19850D01* X20751Y19841D01* X20751Y19833D01* X20752Y19824D01* X20755Y19816D01* X20759Y19808D01* X20764Y19802D01* Y19190D01* X20761Y19184D01* X20758Y19176D01* X20757Y19167D01* X20757Y19159D01* X20759Y19150D01* X20762Y19142D01* X20764Y19140D01* Y7861D01* X20762Y7864D01* X20756Y7871D01* X20749Y7876D01* X20742Y7880D01* X20733Y7883D01* X20725Y7884D01* X20716Y7884D01* X20708Y7882D01* X20673Y7870D01* X20641Y7855D01* X20609Y7837D01* X20580Y7816D01* X20552Y7793D01* X20527Y7767D01* X20505Y7740D01* Y9235D01* X20512Y9227D01* X20537Y9202D01* X20565Y9179D01* X20595Y9159D01* X20627Y9141D01* X20660Y9127D01* X20694Y9115D01* X20703Y9113D01* X20712Y9113D01* X20720Y9115D01* X20728Y9117D01* X20736Y9122D01* X20743Y9127D01* X20749Y9134D01* X20753Y9141D01* X20756Y9149D01* X20758Y9158D01* X20758Y9167D01* X20757Y9175D01* X20754Y9183D01* X20750Y9191D01* X20744Y9198D01* X20737Y9204D01* X20730Y9208D01* X20722Y9211D01* X20696Y9220D01* X20671Y9231D01* X20648Y9244D01* X20625Y9259D01* X20604Y9276D01* X20585Y9295D01* X20567Y9316D01* X20552Y9338D01* X20538Y9362D01* X20527Y9386D01* X20518Y9412D01* X20514Y9420D01* X20510Y9427D01* X20505Y9432D01* Y9563D01* X20509Y9567D01* X20513Y9574D01* X20516Y9582D01* X20525Y9608D01* X20536Y9633D01* X20549Y9657D01* X20564Y9679D01* X20581Y9700D01* X20600Y9719D01* X20621Y9737D01* X20643Y9752D01* X20667Y9766D01* X20691Y9777D01* X20717Y9786D01* X20725Y9790D01* X20732Y9794D01* X20739Y9800D01* X20744Y9807D01* X20748Y9815D01* X20751Y9823D01* X20752Y9832D01* X20752Y9840D01* X20750Y9849D01* X20747Y9857D01* X20742Y9864D01* X20736Y9871D01* X20729Y9876D01* X20722Y9880D01* X20713Y9883D01* X20705Y9884D01* X20696Y9884D01* X20688Y9882D01* X20653Y9870D01* X20621Y9855D01* X20589Y9837D01* X20560Y9816D01* X20532Y9793D01* X20507Y9767D01* X20505Y9765D01* Y11214D01* X20517Y11202D01* X20545Y11179D01* X20575Y11159D01* X20607Y11141D01* X20640Y11127D01* X20674Y11115D01* X20683Y11113D01* X20692Y11113D01* X20700Y11115D01* X20708Y11117D01* X20716Y11122D01* X20723Y11127D01* X20729Y11134D01* X20733Y11141D01* X20736Y11149D01* X20738Y11158D01* X20738Y11167D01* X20737Y11175D01* X20734Y11183D01* X20730Y11191D01* X20724Y11198D01* X20717Y11204D01* X20710Y11208D01* X20702Y11211D01* X20676Y11220D01* X20651Y11231D01* X20628Y11244D01* X20605Y11259D01* X20584Y11276D01* X20565Y11295D01* X20547Y11316D01* X20532Y11338D01* X20518Y11362D01* X20507Y11386D01* X20505Y11391D01* Y11609D01* X20516Y11633D01* X20529Y11657D01* X20544Y11679D01* X20561Y11700D01* X20580Y11719D01* X20601Y11737D01* X20623Y11752D01* X20647Y11766D01* X20671Y11777D01* X20697Y11786D01* X20705Y11790D01* X20712Y11794D01* X20719Y11800D01* X20724Y11807D01* X20728Y11815D01* X20731Y11823D01* X20732Y11832D01* X20732Y11840D01* X20730Y11849D01* X20727Y11857D01* X20722Y11864D01* X20716Y11871D01* X20709Y11876D01* X20702Y11880D01* X20693Y11883D01* X20685Y11884D01* X20676Y11884D01* X20668Y11882D01* X20633Y11870D01* X20601Y11855D01* X20569Y11837D01* X20540Y11816D01* X20512Y11793D01* X20505Y11785D01* Y13196D01* X20525Y13179D01* X20555Y13159D01* X20587Y13141D01* X20620Y13127D01* X20654Y13115D01* X20663Y13113D01* X20672Y13113D01* X20680Y13115D01* X20688Y13117D01* X20696Y13122D01* X20703Y13127D01* X20709Y13134D01* X20713Y13141D01* X20716Y13149D01* X20718Y13158D01* X20718Y13167D01* X20717Y13175D01* X20714Y13183D01* X20710Y13191D01* X20704Y13198D01* X20697Y13204D01* X20690Y13208D01* X20682Y13211D01* X20656Y13220D01* X20631Y13231D01* X20608Y13244D01* X20585Y13259D01* X20564Y13276D01* X20545Y13295D01* X20527Y13316D01* X20512Y13338D01* X20505Y13349D01* Y13650D01* X20509Y13657D01* X20524Y13679D01* X20541Y13700D01* X20560Y13719D01* X20581Y13737D01* X20603Y13752D01* X20627Y13766D01* X20651Y13777D01* X20677Y13786D01* X20685Y13790D01* X20692Y13794D01* X20699Y13800D01* X20704Y13807D01* X20708Y13815D01* X20711Y13823D01* X20712Y13832D01* X20712Y13840D01* X20710Y13849D01* X20707Y13857D01* X20702Y13864D01* X20696Y13871D01* X20689Y13876D01* X20682Y13880D01* X20673Y13883D01* X20665Y13884D01* X20656Y13884D01* X20648Y13882D01* X20613Y13870D01* X20581Y13855D01* X20549Y13837D01* X20520Y13816D01* X20505Y13804D01* Y15179D01* X20505Y15179D01* X20535Y15159D01* X20567Y15141D01* X20600Y15127D01* X20634Y15115D01* X20643Y15113D01* X20652Y15113D01* X20660Y15115D01* X20668Y15117D01* X20676Y15122D01* X20683Y15127D01* X20689Y15134D01* X20693Y15141D01* X20696Y15149D01* X20698Y15158D01* X20698Y15167D01* X20697Y15175D01* X20694Y15183D01* X20690Y15191D01* X20684Y15198D01* X20677Y15204D01* X20670Y15208D01* X20662Y15211D01* X20636Y15220D01* X20611Y15231D01* X20588Y15244D01* X20565Y15259D01* X20544Y15276D01* X20525Y15295D01* X20507Y15316D01* X20505Y15319D01* Y15680D01* X20521Y15700D01* X20540Y15719D01* X20561Y15737D01* X20583Y15752D01* X20607Y15766D01* X20631Y15777D01* X20657Y15786D01* X20665Y15790D01* X20672Y15794D01* X20679Y15800D01* X20684Y15807D01* X20688Y15815D01* X20691Y15823D01* X20692Y15832D01* X20692Y15840D01* X20690Y15849D01* X20687Y15857D01* X20682Y15864D01* X20676Y15871D01* X20669Y15876D01* X20662Y15880D01* X20653Y15883D01* X20645Y15884D01* X20636Y15884D01* X20628Y15882D01* X20593Y15870D01* X20561Y15855D01* X20529Y15837D01* X20505Y15820D01* Y17166D01* X20515Y17159D01* X20547Y17141D01* X20580Y17127D01* X20614Y17115D01* X20623Y17113D01* X20632Y17113D01* X20640Y17115D01* X20648Y17117D01* X20656Y17122D01* X20663Y17127D01* X20669Y17134D01* X20673Y17141D01* X20676Y17149D01* X20678Y17158D01* X20678Y17167D01* X20677Y17175D01* X20674Y17183D01* X20670Y17191D01* X20664Y17198D01* X20657Y17204D01* X20650Y17208D01* X20642Y17211D01* X20616Y17220D01* X20591Y17231D01* X20568Y17244D01* X20545Y17259D01* X20524Y17276D01* X20505Y17295D01* Y17704D01* X20520Y17719D01* X20541Y17737D01* X20563Y17752D01* X20587Y17766D01* X20611Y17777D01* X20637Y17786D01* X20645Y17790D01* X20652Y17794D01* X20659Y17800D01* X20664Y17807D01* X20668Y17815D01* X20671Y17823D01* X20672Y17832D01* X20672Y17840D01* X20670Y17849D01* X20667Y17857D01* X20662Y17864D01* X20656Y17871D01* X20649Y17876D01* X20642Y17880D01* X20633Y17883D01* X20625Y17884D01* X20616Y17884D01* X20608Y17882D01* X20573Y17870D01* X20541Y17855D01* X20509Y17837D01* X20505Y17834D01* Y19153D01* X20527Y19141D01* X20560Y19127D01* X20594Y19115D01* X20603Y19113D01* X20612Y19113D01* X20620Y19115D01* X20628Y19117D01* X20636Y19122D01* X20643Y19127D01* X20649Y19134D01* X20653Y19141D01* X20656Y19149D01* X20658Y19158D01* X20658Y19167D01* X20657Y19175D01* X20654Y19183D01* X20650Y19191D01* X20644Y19198D01* X20637Y19204D01* X20630Y19208D01* X20622Y19211D01* X20596Y19220D01* X20571Y19231D01* X20548Y19244D01* X20525Y19259D01* X20505Y19276D01* Y19723D01* X20521Y19737D01* X20543Y19752D01* X20567Y19766D01* X20591Y19777D01* X20617Y19786D01* X20625Y19790D01* X20632Y19794D01* X20639Y19800D01* X20644Y19807D01* X20648Y19815D01* X20651Y19823D01* X20652Y19832D01* X20652Y19840D01* X20650Y19849D01* X20647Y19857D01* X20642Y19864D01* X20636Y19871D01* X20629Y19876D01* X20622Y19880D01* X20613Y19883D01* X20605Y19884D01* X20596Y19884D01* X20588Y19882D01* X20553Y19870D01* X20521Y19855D01* X20505Y19846D01* Y21142D01* X20507Y21141D01* X20540Y21127D01* X20574Y21115D01* X20583Y21113D01* X20592Y21113D01* X20600Y21115D01* X20608Y21117D01* X20616Y21122D01* X20623Y21127D01* X20629Y21134D01* X20633Y21141D01* X20636Y21149D01* X20638Y21158D01* X20638Y21167D01* X20637Y21175D01* X20634Y21183D01* X20630Y21191D01* X20624Y21198D01* X20617Y21204D01* X20610Y21208D01* X20602Y21211D01* X20576Y21220D01* X20551Y21231D01* X20528Y21244D01* X20505Y21259D01* Y21740D01* X20523Y21752D01* X20547Y21766D01* X20571Y21777D01* X20597Y21786D01* X20605Y21790D01* X20612Y21794D01* X20619Y21800D01* X20624Y21807D01* X20628Y21815D01* X20631Y21823D01* X20632Y21832D01* X20632Y21840D01* X20630Y21849D01* X20627Y21857D01* X20622Y21864D01* X20616Y21871D01* X20609Y21876D01* X20602Y21880D01* X20593Y21883D01* X20585Y21884D01* X20576Y21884D01* X20568Y21882D01* X20533Y21870D01* X20505Y21857D01* Y23133D01* X20520Y23127D01* X20554Y23115D01* X20563Y23113D01* X20572Y23113D01* X20580Y23115D01* X20588Y23117D01* X20596Y23122D01* X20603Y23127D01* X20609Y23134D01* X20613Y23141D01* X20616Y23149D01* X20618Y23158D01* X20618Y23167D01* X20617Y23175D01* X20614Y23183D01* X20610Y23191D01* X20604Y23198D01* X20597Y23204D01* X20590Y23208D01* X20582Y23211D01* X20556Y23220D01* X20531Y23231D01* X20508Y23244D01* X20505Y23246D01* Y23754D01* X20527Y23766D01* X20551Y23777D01* X20577Y23786D01* X20585Y23790D01* X20592Y23794D01* X20599Y23800D01* X20604Y23807D01* X20608Y23815D01* X20611Y23823D01* X20612Y23832D01* X20612Y23840D01* X20610Y23849D01* X20607Y23857D01* X20602Y23864D01* X20596Y23871D01* X20589Y23876D01* X20582Y23880D01* X20573Y23883D01* X20565Y23884D01* X20556Y23884D01* X20548Y23882D01* X20513Y23870D01* X20505Y23866D01* Y25125D01* X20534Y25115D01* X20543Y25113D01* X20552Y25113D01* X20560Y25115D01* X20568Y25117D01* X20576Y25122D01* X20583Y25127D01* X20589Y25134D01* X20593Y25141D01* X20596Y25149D01* X20598Y25158D01* X20598Y25167D01* X20597Y25175D01* X20594Y25183D01* X20590Y25191D01* X20584Y25198D01* X20577Y25204D01* X20570Y25208D01* X20562Y25211D01* X20536Y25220D01* X20511Y25231D01* X20505Y25234D01* Y25765D01* X20507Y25766D01* X20531Y25777D01* X20557Y25786D01* X20565Y25790D01* X20572Y25794D01* X20579Y25800D01* X20584Y25807D01* X20588Y25815D01* X20591Y25823D01* X20592Y25832D01* X20592Y25840D01* X20590Y25849D01* X20587Y25857D01* X20582Y25864D01* X20576Y25871D01* X20569Y25876D01* X20562Y25880D01* X20553Y25883D01* X20545Y25884D01* X20536Y25884D01* X20528Y25882D01* X20505Y25874D01* Y27118D01* X20514Y27115D01* X20523Y27113D01* X20532Y27113D01* X20540Y27115D01* X20548Y27117D01* X20556Y27122D01* X20563Y27127D01* X20569Y27134D01* X20573Y27141D01* X20576Y27149D01* X20578Y27158D01* X20578Y27167D01* X20577Y27175D01* X20574Y27183D01* X20570Y27191D01* X20564Y27198D01* X20557Y27204D01* X20550Y27208D01* X20542Y27211D01* X20516Y27220D01* X20505Y27225D01* Y27775D01* X20511Y27777D01* X20537Y27786D01* X20545Y27790D01* X20552Y27794D01* X20559Y27800D01* X20564Y27807D01* X20568Y27815D01* X20571Y27823D01* X20572Y27832D01* X20572Y27840D01* X20570Y27849D01* X20567Y27857D01* X20562Y27864D01* X20556Y27871D01* X20549Y27876D01* X20542Y27880D01* X20533Y27883D01* X20525Y27884D01* X20516Y27884D01* X20508Y27882D01* X20505Y27881D01* Y29113D01* X20512Y29113D01* X20520Y29115D01* X20528Y29117D01* X20536Y29122D01* X20543Y29127D01* X20549Y29134D01* X20553Y29141D01* X20556Y29149D01* X20558Y29158D01* X20558Y29167D01* X20557Y29175D01* X20554Y29183D01* X20550Y29191D01* X20544Y29198D01* X20537Y29204D01* X20530Y29208D01* X20522Y29211D01* X20505Y29217D01* Y29782D01* X20517Y29786D01* X20525Y29790D01* X20532Y29794D01* X20539Y29800D01* X20544Y29807D01* X20548Y29815D01* X20551Y29823D01* X20552Y29832D01* X20552Y29840D01* X20550Y29849D01* X20547Y29857D01* X20542Y29864D01* X20536Y29871D01* X20529Y29876D01* X20522Y29880D01* X20513Y29883D01* X20505Y29884D01* Y31116D01* X20508Y31117D01* X20516Y31122D01* X20523Y31127D01* X20529Y31134D01* X20533Y31141D01* X20536Y31149D01* X20538Y31158D01* X20538Y31167D01* X20537Y31175D01* X20534Y31183D01* X20530Y31191D01* X20524Y31198D01* X20517Y31204D01* X20510Y31208D01* X20505Y31210D01* Y31790D01* X20512Y31794D01* X20519Y31800D01* X20524Y31807D01* X20528Y31815D01* X20531Y31823D01* X20532Y31832D01* X20532Y31840D01* X20530Y31849D01* X20527Y31857D01* X20522Y31864D01* X20516Y31871D01* X20509Y31876D01* X20505Y31878D01* Y33130D01* X20509Y33134D01* X20513Y33141D01* X20516Y33149D01* X20518Y33158D01* X20518Y33167D01* X20517Y33175D01* X20514Y33183D01* X20510Y33191D01* X20505Y33197D01* Y33809D01* X20508Y33815D01* X20511Y33823D01* X20512Y33832D01* X20512Y33840D01* X20510Y33849D01* X20507Y33857D01* X20505Y33859D01* Y40000D01* G37* G36* Y7549D02*X20508Y7550D01* X20516Y7555D01* X20523Y7560D01* X20529Y7567D01* X20533Y7574D01* X20536Y7582D01* X20545Y7608D01* X20556Y7633D01* X20569Y7657D01* X20584Y7679D01* X20601Y7700D01* X20620Y7719D01* X20641Y7737D01* X20663Y7752D01* X20687Y7766D01* X20711Y7777D01* X20737Y7786D01* X20745Y7790D01* X20752Y7794D01* X20759Y7800D01* X20764Y7807D01* Y7198D01* X20757Y7204D01* X20750Y7208D01* X20742Y7211D01* X20716Y7220D01* X20691Y7231D01* X20668Y7244D01* X20645Y7259D01* X20624Y7276D01* X20605Y7295D01* X20587Y7316D01* X20572Y7338D01* X20558Y7362D01* X20547Y7386D01* X20538Y7412D01* X20534Y7420D01* X20530Y7427D01* X20524Y7434D01* X20517Y7439D01* X20509Y7443D01* X20505Y7445D01* Y7549D01* G37* G36* Y7259D02*X20508Y7255D01* X20532Y7227D01* X20557Y7202D01* X20585Y7179D01* X20615Y7159D01* X20647Y7141D01* X20680Y7127D01* X20714Y7115D01* X20723Y7113D01* X20732Y7113D01* X20740Y7115D01* X20748Y7117D01* X20756Y7122D01* X20763Y7127D01* X20764Y7128D01* Y5879D01* X20762Y5880D01* X20753Y5883D01* X20745Y5884D01* X20736Y5884D01* X20728Y5882D01* X20693Y5870D01* X20661Y5855D01* X20629Y5837D01* X20600Y5816D01* X20572Y5793D01* X20547Y5767D01* X20524Y5739D01* X20505Y5711D01* Y7259D01* G37* G36* Y5546D02*X20512Y5546D01* X20520Y5547D01* X20528Y5550D01* X20536Y5555D01* X20543Y5560D01* X20549Y5567D01* X20553Y5574D01* X20556Y5582D01* X20565Y5608D01* X20576Y5633D01* X20589Y5657D01* X20604Y5679D01* X20621Y5700D01* X20640Y5719D01* X20661Y5737D01* X20683Y5752D01* X20707Y5766D01* X20731Y5777D01* X20757Y5786D01* X20764Y5789D01* Y5210D01* X20762Y5211D01* X20736Y5220D01* X20711Y5231D01* X20688Y5244D01* X20665Y5259D01* X20644Y5276D01* X20625Y5295D01* X20607Y5316D01* X20592Y5338D01* X20578Y5362D01* X20567Y5386D01* X20558Y5412D01* X20554Y5420D01* X20550Y5427D01* X20544Y5434D01* X20537Y5439D01* X20529Y5443D01* X20521Y5446D01* X20512Y5447D01* X20505Y5447D01* Y5546D01* G37* G36* Y5288D02*X20507Y5284D01* X20528Y5255D01* X20552Y5227D01* X20577Y5202D01* X20605Y5179D01* X20635Y5159D01* X20667Y5141D01* X20700Y5127D01* X20734Y5115D01* X20743Y5113D01* X20752Y5113D01* X20760Y5115D01* X20764Y5116D01* Y3884D01* X20756Y3884D01* X20748Y3882D01* X20713Y3870D01* X20681Y3855D01* X20649Y3837D01* X20620Y3816D01* X20592Y3793D01* X20567Y3767D01* X20544Y3739D01* X20524Y3709D01* X20506Y3677D01* X20505Y3675D01* Y5288D01* G37* G36* Y3552D02*X20506Y3551D01* X20514Y3548D01* X20523Y3546D01* X20532Y3546D01* X20540Y3547D01* X20548Y3550D01* X20556Y3555D01* X20563Y3560D01* X20569Y3567D01* X20573Y3574D01* X20576Y3582D01* X20585Y3608D01* X20596Y3633D01* X20609Y3657D01* X20624Y3679D01* X20641Y3700D01* X20660Y3719D01* X20681Y3737D01* X20703Y3752D01* X20727Y3766D01* X20751Y3777D01* X20764Y3782D01* Y3217D01* X20756Y3220D01* X20731Y3231D01* X20708Y3244D01* X20685Y3259D01* X20664Y3276D01* X20645Y3295D01* X20627Y3316D01* X20612Y3338D01* X20598Y3362D01* X20587Y3386D01* X20578Y3412D01* X20574Y3420D01* X20570Y3427D01* X20564Y3434D01* X20557Y3439D01* X20549Y3443D01* X20541Y3446D01* X20532Y3447D01* X20524Y3447D01* X20515Y3445D01* X20507Y3442D01* X20505Y3441D01* Y3552D01* G37* G36* Y3325D02*X20509Y3316D01* X20527Y3284D01* X20548Y3255D01* X20572Y3227D01* X20597Y3202D01* X20625Y3179D01* X20655Y3159D01* X20687Y3141D01* X20720Y3127D01* X20754Y3115D01* X20763Y3113D01* X20764D01* Y1881D01* X20733Y1870D01* X20701Y1855D01* X20669Y1837D01* X20640Y1816D01* X20612Y1793D01* X20587Y1767D01* X20564Y1739D01* X20544Y1709D01* X20526Y1677D01* X20512Y1644D01* X20505Y1625D01* Y3325D01* G37* G36* Y1571D02*X20507Y1568D01* X20512Y1561D01* X20519Y1556D01* X20526Y1551D01* X20534Y1548D01* X20543Y1546D01* X20552Y1546D01* X20560Y1547D01* X20568Y1550D01* X20576Y1555D01* X20583Y1560D01* X20589Y1567D01* X20593Y1574D01* X20596Y1582D01* X20605Y1608D01* X20616Y1633D01* X20629Y1657D01* X20644Y1679D01* X20661Y1700D01* X20680Y1719D01* X20701Y1737D01* X20723Y1752D01* X20747Y1766D01* X20764Y1774D01* Y1225D01* X20751Y1231D01* X20728Y1244D01* X20705Y1259D01* X20684Y1276D01* X20665Y1295D01* X20647Y1316D01* X20632Y1338D01* X20618Y1362D01* X20607Y1386D01* X20598Y1412D01* X20594Y1420D01* X20590Y1427D01* X20584Y1434D01* X20577Y1439D01* X20569Y1443D01* X20561Y1446D01* X20552Y1447D01* X20544Y1447D01* X20535Y1445D01* X20527Y1442D01* X20520Y1437D01* X20513Y1431D01* X20508Y1424D01* X20505Y1419D01* Y1571D01* G37* G36* Y1374D02*X20514Y1349D01* X20529Y1316D01* X20547Y1284D01* X20568Y1255D01* X20592Y1227D01* X20617Y1202D01* X20645Y1179D01* X20675Y1159D01* X20707Y1141D01* X20740Y1127D01* X20764Y1119D01* Y0D01* X20505D01* Y1374D01* G37* G36* X20764Y40000D02*X20944D01* Y33625D01* X20935Y33651D01* X20920Y33683D01* X20902Y33715D01* X20881Y33744D01* X20857Y33772D01* X20832Y33797D01* X20804Y33820D01* X20774Y33840D01* X20764Y33846D01* Y35165D01* X20789Y35183D01* X20817Y35207D01* X20842Y35232D01* X20865Y35260D01* X20885Y35290D01* X20903Y35322D01* X20917Y35355D01* X20929Y35389D01* X20931Y35398D01* X20931Y35407D01* X20930Y35415D01* X20927Y35423D01* X20922Y35431D01* X20917Y35438D01* X20910Y35444D01* X20903Y35448D01* X20895Y35451D01* X20886Y35453D01* X20877Y35453D01* X20869Y35452D01* X20861Y35449D01* X20853Y35445D01* X20846Y35439D01* X20840Y35433D01* X20836Y35425D01* X20833Y35417D01* X20824Y35391D01* X20813Y35366D01* X20800Y35343D01* X20785Y35320D01* X20768Y35299D01* X20764Y35295D01* Y35704D01* X20764Y35704D01* X20782Y35683D01* X20797Y35661D01* X20811Y35637D01* X20822Y35613D01* X20831Y35587D01* X20835Y35579D01* X20839Y35572D01* X20845Y35565D01* X20852Y35560D01* X20860Y35556D01* X20868Y35553D01* X20877Y35552D01* X20885Y35552D01* X20894Y35554D01* X20902Y35557D01* X20909Y35562D01* X20916Y35568D01* X20921Y35575D01* X20925Y35582D01* X20928Y35591D01* X20929Y35599D01* X20929Y35608D01* X20927Y35617D01* X20915Y35651D01* X20900Y35683D01* X20882Y35715D01* X20861Y35744D01* X20837Y35772D01* X20812Y35797D01* X20784Y35820D01* X20764Y35834D01* Y37180D01* X20769Y37183D01* X20797Y37207D01* X20822Y37232D01* X20845Y37260D01* X20865Y37290D01* X20883Y37322D01* X20897Y37355D01* X20909Y37389D01* X20911Y37398D01* X20911Y37407D01* X20910Y37415D01* X20907Y37423D01* X20902Y37431D01* X20897Y37438D01* X20890Y37444D01* X20883Y37448D01* X20875Y37451D01* X20866Y37453D01* X20857Y37453D01* X20849Y37452D01* X20841Y37449D01* X20833Y37445D01* X20826Y37439D01* X20820Y37433D01* X20816Y37425D01* X20813Y37417D01* X20804Y37391D01* X20793Y37366D01* X20780Y37343D01* X20765Y37320D01* X20764Y37319D01* Y37680D01* X20777Y37661D01* X20791Y37637D01* X20802Y37613D01* X20811Y37587D01* X20815Y37579D01* X20819Y37572D01* X20825Y37565D01* X20832Y37560D01* X20840Y37556D01* X20848Y37553D01* X20857Y37552D01* X20865Y37552D01* X20874Y37554D01* X20882Y37557D01* X20889Y37562D01* X20896Y37568D01* X20901Y37575D01* X20905Y37582D01* X20908Y37591D01* X20909Y37599D01* X20909Y37608D01* X20907Y37617D01* X20895Y37651D01* X20880Y37683D01* X20862Y37715D01* X20841Y37744D01* X20817Y37772D01* X20792Y37797D01* X20764Y37820D01* Y39196D01* X20777Y39207D01* X20802Y39232D01* X20825Y39260D01* X20845Y39290D01* X20863Y39322D01* X20877Y39355D01* X20889Y39389D01* X20891Y39398D01* X20891Y39407D01* X20890Y39415D01* X20887Y39423D01* X20882Y39431D01* X20877Y39438D01* X20870Y39444D01* X20863Y39448D01* X20855Y39451D01* X20846Y39453D01* X20837Y39453D01* X20829Y39452D01* X20821Y39449D01* X20813Y39445D01* X20806Y39439D01* X20800Y39433D01* X20796Y39425D01* X20793Y39417D01* X20784Y39391D01* X20773Y39366D01* X20764Y39350D01* Y39650D01* X20771Y39637D01* X20782Y39613D01* X20791Y39587D01* X20795Y39579D01* X20799Y39572D01* X20805Y39565D01* X20812Y39560D01* X20820Y39556D01* X20828Y39553D01* X20837Y39552D01* X20845Y39552D01* X20854Y39554D01* X20862Y39557D01* X20869Y39562D01* X20876Y39568D01* X20881Y39575D01* X20885Y39582D01* X20888Y39591D01* X20889Y39599D01* X20889Y39608D01* X20887Y39617D01* X20875Y39651D01* X20860Y39683D01* X20842Y39715D01* X20821Y39744D01* X20797Y39772D01* X20772Y39797D01* X20764Y39804D01* Y40000D01* G37* G36* X20944Y0D02*X20764D01* Y1119D01* X20774Y1115D01* X20783Y1113D01* X20792Y1113D01* X20800Y1115D01* X20808Y1117D01* X20816Y1122D01* X20823Y1127D01* X20829Y1134D01* X20833Y1141D01* X20836Y1149D01* X20838Y1158D01* X20838Y1167D01* X20837Y1175D01* X20834Y1183D01* X20830Y1191D01* X20824Y1198D01* X20817Y1204D01* X20810Y1208D01* X20802Y1211D01* X20776Y1220D01* X20764Y1225D01* Y1774D01* X20771Y1777D01* X20797Y1786D01* X20805Y1790D01* X20812Y1794D01* X20819Y1800D01* X20824Y1807D01* X20828Y1815D01* X20831Y1823D01* X20832Y1832D01* X20832Y1840D01* X20830Y1849D01* X20827Y1857D01* X20822Y1864D01* X20816Y1871D01* X20809Y1876D01* X20802Y1880D01* X20793Y1883D01* X20785Y1884D01* X20776Y1884D01* X20768Y1882D01* X20764Y1881D01* Y3113D01* X20772Y3113D01* X20780Y3115D01* X20788Y3117D01* X20796Y3122D01* X20803Y3127D01* X20809Y3134D01* X20813Y3141D01* X20816Y3149D01* X20818Y3158D01* X20818Y3167D01* X20817Y3175D01* X20814Y3183D01* X20810Y3191D01* X20804Y3198D01* X20797Y3204D01* X20790Y3208D01* X20782Y3211D01* X20764Y3217D01* Y3782D01* X20777Y3786D01* X20785Y3790D01* X20792Y3794D01* X20799Y3800D01* X20804Y3807D01* X20808Y3815D01* X20811Y3823D01* X20812Y3832D01* X20812Y3840D01* X20810Y3849D01* X20807Y3857D01* X20802Y3864D01* X20796Y3871D01* X20789Y3876D01* X20782Y3880D01* X20773Y3883D01* X20765Y3884D01* X20764D01* Y5116D01* X20768Y5117D01* X20776Y5122D01* X20783Y5127D01* X20789Y5134D01* X20793Y5141D01* X20796Y5149D01* X20798Y5158D01* X20798Y5167D01* X20797Y5175D01* X20794Y5183D01* X20790Y5191D01* X20784Y5198D01* X20777Y5204D01* X20770Y5208D01* X20764Y5210D01* Y5789D01* X20765Y5790D01* X20772Y5794D01* X20779Y5800D01* X20784Y5807D01* X20788Y5815D01* X20791Y5823D01* X20792Y5832D01* X20792Y5840D01* X20790Y5849D01* X20787Y5857D01* X20782Y5864D01* X20776Y5871D01* X20769Y5876D01* X20764Y5879D01* Y7128D01* X20769Y7134D01* X20773Y7141D01* X20776Y7149D01* X20778Y7158D01* X20778Y7167D01* X20777Y7175D01* X20774Y7183D01* X20770Y7191D01* X20764Y7198D01* X20764Y7198D01* Y7807D01* X20764Y7807D01* X20768Y7815D01* X20771Y7823D01* X20772Y7832D01* X20772Y7840D01* X20770Y7849D01* X20767Y7857D01* X20764Y7861D01* Y19140D01* X20767Y19135D01* X20773Y19128D01* X20780Y19123D01* X20787Y19119D01* X20796Y19116D01* X20804Y19115D01* X20813Y19115D01* X20821Y19117D01* X20856Y19129D01* X20888Y19144D01* X20920Y19162D01* X20944Y19180D01* Y17834D01* X20934Y17840D01* X20902Y17858D01* X20869Y17873D01* X20835Y17884D01* X20826Y17886D01* X20817Y17886D01* X20809Y17885D01* X20801Y17882D01* X20793Y17878D01* X20786Y17872D01* X20780Y17865D01* X20776Y17858D01* X20773Y17850D01* X20771Y17841D01* X20771Y17833D01* X20772Y17824D01* X20775Y17816D01* X20779Y17808D01* X20785Y17801D01* X20792Y17796D01* X20799Y17791D01* X20807Y17788D01* X20833Y17779D01* X20858Y17768D01* X20881Y17755D01* X20904Y17740D01* X20925Y17723D01* X20944Y17704D01* Y17295D01* X20929Y17280D01* X20908Y17262D01* X20886Y17247D01* X20862Y17233D01* X20838Y17222D01* X20812Y17213D01* X20804Y17209D01* X20797Y17205D01* X20790Y17199D01* X20785Y17192D01* X20781Y17184D01* X20778Y17176D01* X20777Y17167D01* X20777Y17159D01* X20779Y17150D01* X20782Y17142D01* X20787Y17135D01* X20793Y17128D01* X20800Y17123D01* X20807Y17119D01* X20816Y17116D01* X20824Y17115D01* X20833Y17115D01* X20841Y17117D01* X20876Y17129D01* X20908Y17144D01* X20940Y17162D01* X20944Y17165D01* Y15846D01* X20922Y15858D01* X20889Y15873D01* X20855Y15884D01* X20846Y15886D01* X20837Y15886D01* X20829Y15885D01* X20821Y15882D01* X20813Y15878D01* X20806Y15872D01* X20800Y15865D01* X20796Y15858D01* X20793Y15850D01* X20791Y15841D01* X20791Y15833D01* X20792Y15824D01* X20795Y15816D01* X20799Y15808D01* X20805Y15801D01* X20812Y15796D01* X20819Y15791D01* X20827Y15788D01* X20853Y15779D01* X20878Y15768D01* X20901Y15755D01* X20924Y15740D01* X20944Y15724D01* Y15276D01* X20928Y15262D01* X20906Y15247D01* X20882Y15233D01* X20858Y15222D01* X20832Y15213D01* X20824Y15209D01* X20817Y15205D01* X20810Y15199D01* X20805Y15192D01* X20801Y15184D01* X20798Y15176D01* X20797Y15167D01* X20797Y15159D01* X20799Y15150D01* X20802Y15142D01* X20807Y15135D01* X20813Y15128D01* X20820Y15123D01* X20827Y15119D01* X20836Y15116D01* X20844Y15115D01* X20853Y15115D01* X20861Y15117D01* X20896Y15129D01* X20928Y15144D01* X20944Y15153D01* Y13857D01* X20942Y13858D01* X20909Y13873D01* X20875Y13884D01* X20866Y13886D01* X20857Y13886D01* X20849Y13885D01* X20841Y13882D01* X20833Y13878D01* X20826Y13872D01* X20820Y13865D01* X20816Y13858D01* X20813Y13850D01* X20811Y13841D01* X20811Y13833D01* X20812Y13824D01* X20815Y13816D01* X20819Y13808D01* X20825Y13801D01* X20832Y13796D01* X20839Y13791D01* X20847Y13788D01* X20873Y13779D01* X20898Y13768D01* X20921Y13755D01* X20944Y13740D01* Y13259D01* X20926Y13247D01* X20902Y13233D01* X20878Y13222D01* X20852Y13213D01* X20844Y13209D01* X20837Y13205D01* X20830Y13199D01* X20825Y13192D01* X20821Y13184D01* X20818Y13176D01* X20817Y13167D01* X20817Y13159D01* X20819Y13150D01* X20822Y13142D01* X20827Y13135D01* X20833Y13128D01* X20840Y13123D01* X20847Y13119D01* X20856Y13116D01* X20864Y13115D01* X20873Y13115D01* X20881Y13117D01* X20916Y13129D01* X20944Y13142D01* Y11866D01* X20929Y11873D01* X20895Y11884D01* X20886Y11886D01* X20877Y11886D01* X20869Y11885D01* X20861Y11882D01* X20853Y11878D01* X20846Y11872D01* X20840Y11865D01* X20836Y11858D01* X20833Y11850D01* X20831Y11841D01* X20831Y11833D01* X20832Y11824D01* X20835Y11816D01* X20839Y11808D01* X20845Y11801D01* X20852Y11796D01* X20859Y11791D01* X20867Y11788D01* X20893Y11779D01* X20918Y11768D01* X20941Y11755D01* X20944Y11754D01* Y11246D01* X20922Y11233D01* X20898Y11222D01* X20872Y11213D01* X20864Y11209D01* X20857Y11205D01* X20850Y11199D01* X20845Y11192D01* X20841Y11184D01* X20838Y11176D01* X20837Y11167D01* X20837Y11159D01* X20839Y11150D01* X20842Y11142D01* X20847Y11135D01* X20853Y11128D01* X20860Y11123D01* X20867Y11119D01* X20876Y11116D01* X20884Y11115D01* X20893Y11115D01* X20901Y11117D01* X20936Y11129D01* X20944Y11133D01* Y9874D01* X20915Y9884D01* X20906Y9886D01* X20897Y9886D01* X20889Y9885D01* X20881Y9882D01* X20873Y9878D01* X20866Y9872D01* X20860Y9865D01* X20856Y9858D01* X20853Y9850D01* X20851Y9841D01* X20851Y9833D01* X20852Y9824D01* X20855Y9816D01* X20859Y9808D01* X20865Y9801D01* X20872Y9796D01* X20879Y9791D01* X20887Y9788D01* X20913Y9779D01* X20938Y9768D01* X20944Y9765D01* Y9234D01* X20942Y9233D01* X20918Y9222D01* X20892Y9213D01* X20884Y9209D01* X20877Y9205D01* X20870Y9199D01* X20865Y9192D01* X20861Y9184D01* X20858Y9176D01* X20857Y9167D01* X20857Y9159D01* X20859Y9150D01* X20862Y9142D01* X20867Y9135D01* X20873Y9128D01* X20880Y9123D01* X20887Y9119D01* X20896Y9116D01* X20904Y9115D01* X20913Y9115D01* X20921Y9117D01* X20944Y9125D01* Y7881D01* X20935Y7884D01* X20926Y7886D01* X20917Y7886D01* X20909Y7885D01* X20901Y7882D01* X20893Y7878D01* X20886Y7872D01* X20880Y7865D01* X20876Y7858D01* X20873Y7850D01* X20871Y7841D01* X20871Y7833D01* X20872Y7824D01* X20875Y7816D01* X20879Y7808D01* X20885Y7801D01* X20892Y7796D01* X20899Y7791D01* X20907Y7788D01* X20933Y7779D01* X20944Y7774D01* Y7225D01* X20938Y7222D01* X20912Y7213D01* X20904Y7209D01* X20897Y7205D01* X20890Y7199D01* X20885Y7192D01* X20881Y7184D01* X20878Y7176D01* X20877Y7167D01* X20877Y7159D01* X20879Y7150D01* X20882Y7142D01* X20887Y7135D01* X20893Y7128D01* X20900Y7123D01* X20907Y7119D01* X20916Y7116D01* X20924Y7115D01* X20933Y7115D01* X20941Y7117D01* X20944Y7118D01* Y5886D01* X20937Y5886D01* X20929Y5885D01* X20921Y5882D01* X20913Y5878D01* X20906Y5872D01* X20900Y5865D01* X20896Y5858D01* X20893Y5850D01* X20891Y5841D01* X20891Y5833D01* X20892Y5824D01* X20895Y5816D01* X20899Y5808D01* X20905Y5801D01* X20912Y5796D01* X20919Y5791D01* X20927Y5788D01* X20944Y5782D01* Y5217D01* X20932Y5213D01* X20924Y5209D01* X20917Y5205D01* X20910Y5199D01* X20905Y5192D01* X20901Y5184D01* X20898Y5176D01* X20897Y5167D01* X20897Y5159D01* X20899Y5150D01* X20902Y5142D01* X20907Y5135D01* X20913Y5128D01* X20920Y5123D01* X20927Y5119D01* X20936Y5116D01* X20944Y5115D01* Y3883D01* X20941Y3882D01* X20933Y3878D01* X20926Y3872D01* X20920Y3865D01* X20916Y3858D01* X20913Y3850D01* X20911Y3841D01* X20911Y3833D01* X20912Y3824D01* X20915Y3816D01* X20919Y3808D01* X20925Y3801D01* X20932Y3796D01* X20939Y3791D01* X20944Y3789D01* Y3209D01* X20937Y3205D01* X20930Y3199D01* X20925Y3192D01* X20921Y3184D01* X20918Y3176D01* X20917Y3167D01* X20917Y3159D01* X20919Y3150D01* X20922Y3142D01* X20927Y3135D01* X20933Y3128D01* X20940Y3123D01* X20944Y3121D01* Y1870D01* X20940Y1865D01* X20936Y1858D01* X20933Y1850D01* X20931Y1841D01* X20931Y1833D01* X20932Y1824D01* X20935Y1816D01* X20939Y1808D01* X20944Y1802D01* Y1190D01* X20941Y1184D01* X20938Y1176D01* X20937Y1167D01* X20937Y1159D01* X20939Y1150D01* X20942Y1142D01* X20944Y1140D01* Y0D01* G37* G36* Y19319D02*X20928Y19299D01* X20909Y19280D01* X20888Y19262D01* X20866Y19247D01* X20842Y19233D01* X20818Y19222D01* X20792Y19213D01* X20784Y19209D01* X20777Y19205D01* X20770Y19199D01* X20765Y19192D01* X20764Y19190D01* Y19802D01* X20765Y19801D01* X20772Y19796D01* X20779Y19791D01* X20787Y19788D01* X20813Y19779D01* X20838Y19768D01* X20861Y19755D01* X20884Y19740D01* X20905Y19723D01* X20924Y19704D01* X20942Y19683D01* X20944Y19680D01* Y19319D01* G37* G36* Y19820D02*X20944Y19820D01* X20914Y19840D01* X20882Y19858D01* X20849Y19873D01* X20815Y19884D01* X20806Y19886D01* X20797Y19886D01* X20789Y19885D01* X20781Y19882D01* X20773Y19878D01* X20766Y19872D01* X20764Y19870D01* Y21121D01* X20767Y21119D01* X20776Y21116D01* X20784Y21115D01* X20793Y21115D01* X20801Y21117D01* X20836Y21129D01* X20868Y21144D01* X20900Y21162D01* X20929Y21183D01* X20944Y21196D01* Y19820D01* G37* G36* Y21350D02*X20940Y21343D01* X20925Y21320D01* X20908Y21299D01* X20889Y21280D01* X20868Y21262D01* X20846Y21247D01* X20822Y21233D01* X20798Y21222D01* X20772Y21213D01* X20764Y21209D01* X20764Y21209D01* Y21789D01* X20767Y21788D01* X20793Y21779D01* X20818Y21768D01* X20841Y21755D01* X20864Y21740D01* X20885Y21723D01* X20904Y21704D01* X20922Y21683D01* X20937Y21661D01* X20944Y21650D01* Y21350D01* G37* G36* Y21804D02*X20924Y21820D01* X20894Y21840D01* X20862Y21858D01* X20829Y21873D01* X20795Y21884D01* X20786Y21886D01* X20777Y21886D01* X20769Y21885D01* X20764Y21883D01* Y23115D01* X20764D01* X20773Y23115D01* X20781Y23117D01* X20816Y23129D01* X20848Y23144D01* X20880Y23162D01* X20909Y23183D01* X20937Y23207D01* X20944Y23214D01* Y21804D01* G37* G36* Y23391D02*X20933Y23366D01* X20920Y23343D01* X20905Y23320D01* X20888Y23299D01* X20869Y23280D01* X20848Y23262D01* X20826Y23247D01* X20802Y23233D01* X20778Y23222D01* X20764Y23217D01* Y23782D01* X20773Y23779D01* X20798Y23768D01* X20821Y23755D01* X20844Y23740D01* X20865Y23723D01* X20884Y23704D01* X20902Y23683D01* X20917Y23661D01* X20931Y23637D01* X20942Y23613D01* X20944Y23608D01* Y23391D01* G37* G36* Y23785D02*X20932Y23797D01* X20904Y23820D01* X20874Y23840D01* X20842Y23858D01* X20809Y23873D01* X20775Y23884D01* X20766Y23886D01* X20764D01* Y25118D01* X20796Y25129D01* X20828Y25144D01* X20860Y25162D01* X20889Y25183D01* X20917Y25207D01* X20942Y25232D01* X20944Y25235D01* Y23785D01* G37* G36* Y25437D02*X20940Y25433D01* X20936Y25425D01* X20933Y25417D01* X20924Y25391D01* X20913Y25366D01* X20900Y25343D01* X20885Y25320D01* X20868Y25299D01* X20849Y25280D01* X20828Y25262D01* X20806Y25247D01* X20782Y25233D01* X20764Y25225D01* Y25774D01* X20778Y25768D01* X20801Y25755D01* X20824Y25740D01* X20845Y25723D01* X20864Y25704D01* X20882Y25683D01* X20897Y25661D01* X20911Y25637D01* X20922Y25613D01* X20931Y25587D01* X20935Y25579D01* X20939Y25572D01* X20944Y25567D01* Y25437D01* G37* G36* Y25764D02*X20937Y25772D01* X20912Y25797D01* X20884Y25820D01* X20854Y25840D01* X20822Y25858D01* X20789Y25873D01* X20764Y25881D01* Y27125D01* X20776Y27129D01* X20808Y27144D01* X20840Y27162D01* X20869Y27183D01* X20897Y27207D01* X20922Y27232D01* X20944Y27259D01* Y25764D01* G37* G36* Y27450D02*X20941Y27449D01* X20933Y27445D01* X20926Y27439D01* X20920Y27433D01* X20916Y27425D01* X20913Y27417D01* X20904Y27391D01* X20893Y27366D01* X20880Y27343D01* X20865Y27320D01* X20848Y27299D01* X20829Y27280D01* X20808Y27262D01* X20786Y27247D01* X20764Y27234D01* Y27765D01* X20781Y27755D01* X20804Y27740D01* X20825Y27723D01* X20844Y27704D01* X20862Y27683D01* X20877Y27661D01* X20891Y27637D01* X20902Y27613D01* X20911Y27587D01* X20915Y27579D01* X20919Y27572D01* X20925Y27565D01* X20932Y27560D01* X20940Y27556D01* X20944Y27555D01* Y27450D01* G37* G36* Y27740D02*X20941Y27744D01* X20917Y27772D01* X20892Y27797D01* X20864Y27820D01* X20834Y27840D01* X20802Y27858D01* X20769Y27873D01* X20764Y27874D01* Y29133D01* X20788Y29144D01* X20820Y29162D01* X20849Y29183D01* X20877Y29207D01* X20902Y29232D01* X20925Y29260D01* X20944Y29288D01* Y27740D01* G37* G36* Y29453D02*X20937Y29453D01* X20929Y29452D01* X20921Y29449D01* X20913Y29445D01* X20906Y29439D01* X20900Y29433D01* X20896Y29425D01* X20893Y29417D01* X20884Y29391D01* X20873Y29366D01* X20860Y29343D01* X20845Y29320D01* X20828Y29299D01* X20809Y29280D01* X20788Y29262D01* X20766Y29247D01* X20764Y29246D01* Y29754D01* X20784Y29740D01* X20805Y29723D01* X20824Y29704D01* X20842Y29683D01* X20857Y29661D01* X20871Y29637D01* X20882Y29613D01* X20891Y29587D01* X20895Y29579D01* X20899Y29572D01* X20905Y29565D01* X20912Y29560D01* X20920Y29556D01* X20928Y29553D01* X20937Y29552D01* X20944Y29552D01* Y29453D01* G37* G36* Y29711D02*X20942Y29715D01* X20921Y29744D01* X20897Y29772D01* X20872Y29797D01* X20844Y29820D01* X20814Y29840D01* X20782Y29858D01* X20764Y29866D01* Y31142D01* X20768Y31144D01* X20800Y31162D01* X20829Y31183D01* X20857Y31207D01* X20882Y31232D01* X20905Y31260D01* X20925Y31290D01* X20943Y31322D01* X20944Y31324D01* Y29711D01* G37* G36* Y31447D02*X20943Y31448D01* X20935Y31451D01* X20926Y31453D01* X20917Y31453D01* X20909Y31452D01* X20901Y31449D01* X20893Y31445D01* X20886Y31439D01* X20880Y31433D01* X20876Y31425D01* X20873Y31417D01* X20864Y31391D01* X20853Y31366D01* X20840Y31343D01* X20825Y31320D01* X20808Y31299D01* X20789Y31280D01* X20768Y31262D01* X20764Y31259D01* Y31740D01* X20785Y31723D01* X20804Y31704D01* X20822Y31683D01* X20837Y31661D01* X20851Y31637D01* X20862Y31613D01* X20871Y31587D01* X20875Y31579D01* X20879Y31572D01* X20885Y31565D01* X20892Y31560D01* X20900Y31556D01* X20908Y31553D01* X20917Y31552D01* X20925Y31552D01* X20934Y31554D01* X20942Y31557D01* X20944Y31559D01* Y31447D01* G37* G36* Y31674D02*X20940Y31683D01* X20922Y31715D01* X20901Y31744D01* X20877Y31772D01* X20852Y31797D01* X20824Y31820D01* X20794Y31840D01* X20764Y31857D01* Y33153D01* X20780Y33162D01* X20809Y33183D01* X20837Y33207D01* X20862Y33232D01* X20885Y33260D01* X20905Y33290D01* X20923Y33322D01* X20937Y33355D01* X20944Y33374D01* Y31674D01* G37* G36* Y33428D02*X20942Y33431D01* X20937Y33438D01* X20930Y33444D01* X20923Y33448D01* X20915Y33451D01* X20906Y33453D01* X20897Y33453D01* X20889Y33452D01* X20881Y33449D01* X20873Y33445D01* X20866Y33439D01* X20860Y33433D01* X20856Y33425D01* X20853Y33417D01* X20844Y33391D01* X20833Y33366D01* X20820Y33343D01* X20805Y33320D01* X20788Y33299D01* X20769Y33280D01* X20764Y33276D01* Y33724D01* X20765Y33723D01* X20784Y33704D01* X20802Y33683D01* X20817Y33661D01* X20831Y33637D01* X20842Y33613D01* X20851Y33587D01* X20855Y33579D01* X20859Y33572D01* X20865Y33565D01* X20872Y33560D01* X20880Y33556D01* X20888Y33553D01* X20897Y33552D01* X20905Y33552D01* X20914Y33554D01* X20922Y33557D01* X20929Y33562D01* X20936Y33568D01* X20941Y33575D01* X20944Y33580D01* Y33428D01* G37* G36* Y40000D02*X22285D01* Y39834D01* X22260Y39816D01* X22232Y39793D01* X22207Y39767D01* X22184Y39739D01* X22164Y39709D01* X22146Y39677D01* X22132Y39644D01* X22120Y39610D01* X22118Y39601D01* X22118Y39593D01* X22119Y39584D01* X22122Y39576D01* X22127Y39568D01* X22132Y39561D01* X22139Y39556D01* X22146Y39551D01* X22154Y39548D01* X22163Y39546D01* X22172Y39546D01* X22180Y39547D01* X22188Y39550D01* X22196Y39555D01* X22203Y39560D01* X22209Y39567D01* X22213Y39574D01* X22216Y39582D01* X22225Y39608D01* X22236Y39633D01* X22249Y39657D01* X22264Y39679D01* X22281Y39700D01* X22285Y39704D01* Y39295D01* X22285Y39295D01* X22267Y39316D01* X22252Y39338D01* X22238Y39362D01* X22227Y39386D01* X22218Y39412D01* X22214Y39420D01* X22210Y39427D01* X22204Y39434D01* X22197Y39439D01* X22189Y39443D01* X22181Y39446D01* X22172Y39447D01* X22164Y39447D01* X22155Y39445D01* X22147Y39442D01* X22140Y39437D01* X22133Y39431D01* X22128Y39424D01* X22124Y39417D01* X22121Y39409D01* X22120Y39400D01* X22120Y39391D01* X22122Y39383D01* X22134Y39349D01* X22149Y39316D01* X22167Y39284D01* X22188Y39255D01* X22212Y39227D01* X22237Y39202D01* X22265Y39179D01* X22285Y39166D01* Y37820D01* X22280Y37816D01* X22252Y37793D01* X22227Y37767D01* X22204Y37739D01* X22184Y37709D01* X22166Y37677D01* X22152Y37644D01* X22140Y37610D01* X22138Y37601D01* X22138Y37593D01* X22139Y37584D01* X22142Y37576D01* X22147Y37568D01* X22152Y37561D01* X22159Y37556D01* X22166Y37551D01* X22174Y37548D01* X22183Y37546D01* X22192Y37546D01* X22200Y37547D01* X22208Y37550D01* X22216Y37555D01* X22223Y37560D01* X22229Y37567D01* X22233Y37574D01* X22236Y37582D01* X22245Y37608D01* X22256Y37633D01* X22269Y37657D01* X22284Y37679D01* X22285Y37680D01* Y37319D01* X22272Y37338D01* X22258Y37362D01* X22247Y37386D01* X22238Y37412D01* X22234Y37420D01* X22230Y37427D01* X22224Y37434D01* X22217Y37439D01* X22209Y37443D01* X22201Y37446D01* X22192Y37447D01* X22184Y37447D01* X22175Y37445D01* X22167Y37442D01* X22160Y37437D01* X22153Y37431D01* X22148Y37424D01* X22144Y37417D01* X22141Y37409D01* X22140Y37400D01* X22140Y37391D01* X22142Y37383D01* X22154Y37349D01* X22169Y37316D01* X22187Y37284D01* X22208Y37255D01* X22232Y37227D01* X22257Y37202D01* X22285Y37179D01* Y35804D01* X22272Y35793D01* X22247Y35767D01* X22224Y35739D01* X22204Y35709D01* X22186Y35677D01* X22172Y35644D01* X22160Y35610D01* X22158Y35601D01* X22158Y35593D01* X22159Y35584D01* X22162Y35576D01* X22167Y35568D01* X22172Y35561D01* X22179Y35556D01* X22186Y35551D01* X22194Y35548D01* X22203Y35546D01* X22212Y35546D01* X22220Y35547D01* X22228Y35550D01* X22236Y35555D01* X22243Y35560D01* X22249Y35567D01* X22253Y35574D01* X22256Y35582D01* X22265Y35608D01* X22276Y35633D01* X22285Y35650D01* Y35349D01* X22278Y35362D01* X22267Y35386D01* X22258Y35412D01* X22254Y35420D01* X22250Y35427D01* X22244Y35434D01* X22237Y35439D01* X22229Y35443D01* X22221Y35446D01* X22212Y35447D01* X22204Y35447D01* X22195Y35445D01* X22187Y35442D01* X22180Y35437D01* X22173Y35431D01* X22168Y35424D01* X22164Y35417D01* X22161Y35409D01* X22160Y35400D01* X22160Y35391D01* X22162Y35383D01* X22174Y35349D01* X22189Y35316D01* X22207Y35284D01* X22228Y35255D01* X22252Y35227D01* X22277Y35202D01* X22285Y35196D01* Y33785D01* X22267Y33767D01* X22244Y33739D01* X22224Y33709D01* X22206Y33677D01* X22192Y33644D01* X22180Y33610D01* X22178Y33601D01* X22178Y33593D01* X22179Y33584D01* X22182Y33576D01* X22187Y33568D01* X22192Y33561D01* X22199Y33556D01* X22206Y33551D01* X22214Y33548D01* X22223Y33546D01* X22232Y33546D01* X22240Y33547D01* X22248Y33550D01* X22256Y33555D01* X22263Y33560D01* X22269Y33567D01* X22273Y33574D01* X22276Y33582D01* X22285Y33608D01* X22285Y33609D01* Y33391D01* X22278Y33412D01* X22274Y33420D01* X22270Y33427D01* X22264Y33434D01* X22257Y33439D01* X22249Y33443D01* X22241Y33446D01* X22232Y33447D01* X22224Y33447D01* X22215Y33445D01* X22207Y33442D01* X22200Y33437D01* X22193Y33431D01* X22188Y33424D01* X22184Y33417D01* X22181Y33409D01* X22180Y33400D01* X22180Y33391D01* X22182Y33383D01* X22194Y33349D01* X22209Y33316D01* X22227Y33284D01* X22248Y33255D01* X22272Y33227D01* X22285Y33214D01* Y31765D01* X22264Y31739D01* X22244Y31709D01* X22226Y31677D01* X22212Y31644D01* X22200Y31610D01* X22198Y31601D01* X22198Y31593D01* X22199Y31584D01* X22202Y31576D01* X22207Y31568D01* X22212Y31561D01* X22219Y31556D01* X22226Y31551D01* X22234Y31548D01* X22243Y31546D01* X22252Y31546D01* X22260Y31547D01* X22268Y31550D01* X22276Y31555D01* X22283Y31560D01* X22285Y31563D01* Y31432D01* X22284Y31434D01* X22277Y31439D01* X22269Y31443D01* X22261Y31446D01* X22252Y31447D01* X22244Y31447D01* X22235Y31445D01* X22227Y31442D01* X22220Y31437D01* X22213Y31431D01* X22208Y31424D01* X22204Y31417D01* X22201Y31409D01* X22200Y31400D01* X22200Y31391D01* X22202Y31383D01* X22214Y31349D01* X22229Y31316D01* X22247Y31284D01* X22268Y31255D01* X22285Y31235D01* Y29740D01* X22284Y29739D01* X22264Y29709D01* X22246Y29677D01* X22232Y29644D01* X22220Y29610D01* X22218Y29601D01* X22218Y29593D01* X22219Y29584D01* X22222Y29576D01* X22227Y29568D01* X22232Y29561D01* X22239Y29556D01* X22246Y29551D01* X22254Y29548D01* X22263Y29546D01* X22272Y29546D01* X22280Y29547D01* X22285Y29549D01* Y29445D01* X22281Y29446D01* X22272Y29447D01* X22264Y29447D01* X22255Y29445D01* X22247Y29442D01* X22240Y29437D01* X22233Y29431D01* X22228Y29424D01* X22224Y29417D01* X22221Y29409D01* X22220Y29400D01* X22220Y29391D01* X22222Y29383D01* X22234Y29349D01* X22249Y29316D01* X22267Y29284D01* X22285Y29259D01* Y27711D01* X22284Y27709D01* X22266Y27677D01* X22252Y27644D01* X22240Y27610D01* X22238Y27601D01* X22238Y27593D01* X22239Y27584D01* X22242Y27576D01* X22247Y27568D01* X22252Y27561D01* X22259Y27556D01* X22266Y27551D01* X22274Y27548D01* X22283Y27546D01* X22285D01* Y27447D01* X22284Y27447D01* X22275Y27445D01* X22267Y27442D01* X22260Y27437D01* X22253Y27431D01* X22248Y27424D01* X22244Y27417D01* X22241Y27409D01* X22240Y27400D01* X22240Y27391D01* X22242Y27383D01* X22254Y27349D01* X22269Y27316D01* X22285Y27288D01* Y25675D01* X22272Y25644D01* X22260Y25610D01* X22258Y25601D01* X22258Y25593D01* X22259Y25584D01* X22262Y25576D01* X22267Y25568D01* X22272Y25561D01* X22279Y25556D01* X22285Y25552D01* Y25441D01* X22280Y25437D01* X22273Y25431D01* X22268Y25424D01* X22264Y25417D01* X22261Y25409D01* X22260Y25400D01* X22260Y25391D01* X22262Y25383D01* X22274Y25349D01* X22285Y25325D01* Y23625D01* X22280Y23610D01* X22278Y23601D01* X22278Y23593D01* X22279Y23584D01* X22282Y23576D01* X22285Y23571D01* Y23419D01* X22284Y23417D01* X22281Y23409D01* X22280Y23400D01* X22280Y23391D01* X22282Y23383D01* X22285Y23374D01* Y0D01* X20944D01* Y1140D01* X20947Y1135D01* X20953Y1128D01* X20960Y1123D01* X20967Y1119D01* X20976Y1116D01* X20984Y1115D01* X20993Y1115D01* X21001Y1117D01* X21036Y1129D01* X21068Y1144D01* X21100Y1162D01* X21129Y1183D01* X21157Y1207D01* X21182Y1232D01* X21205Y1260D01* X21225Y1290D01* X21243Y1322D01* X21257Y1355D01* X21269Y1389D01* X21271Y1398D01* X21271Y1407D01* X21270Y1415D01* X21267Y1423D01* X21262Y1431D01* X21257Y1438D01* X21250Y1444D01* X21243Y1448D01* X21235Y1451D01* X21226Y1453D01* X21217Y1453D01* X21209Y1452D01* X21201Y1449D01* X21193Y1445D01* X21186Y1439D01* X21180Y1433D01* X21176Y1425D01* X21173Y1417D01* X21164Y1391D01* X21153Y1366D01* X21140Y1343D01* X21125Y1320D01* X21108Y1299D01* X21089Y1280D01* X21068Y1262D01* X21046Y1247D01* X21022Y1233D01* X20998Y1222D01* X20972Y1213D01* X20964Y1209D01* X20957Y1205D01* X20950Y1199D01* X20945Y1192D01* X20944Y1190D01* Y1802D01* X20945Y1801D01* X20952Y1796D01* X20959Y1791D01* X20967Y1788D01* X20993Y1779D01* X21018Y1768D01* X21041Y1755D01* X21064Y1740D01* X21085Y1723D01* X21104Y1704D01* X21122Y1683D01* X21137Y1661D01* X21151Y1637D01* X21162Y1613D01* X21171Y1587D01* X21175Y1579D01* X21179Y1572D01* X21185Y1565D01* X21192Y1560D01* X21200Y1556D01* X21208Y1553D01* X21217Y1552D01* X21225Y1552D01* X21234Y1554D01* X21242Y1557D01* X21249Y1562D01* X21256Y1568D01* X21261Y1575D01* X21265Y1582D01* X21268Y1591D01* X21269Y1599D01* X21269Y1608D01* X21267Y1617D01* X21255Y1651D01* X21240Y1683D01* X21222Y1715D01* X21201Y1744D01* X21177Y1772D01* X21152Y1797D01* X21124Y1820D01* X21094Y1840D01* X21062Y1858D01* X21029Y1873D01* X20995Y1884D01* X20986Y1886D01* X20977Y1886D01* X20969Y1885D01* X20961Y1882D01* X20953Y1878D01* X20946Y1872D01* X20944Y1870D01* Y3121D01* X20947Y3119D01* X20956Y3116D01* X20964Y3115D01* X20973Y3115D01* X20981Y3117D01* X21016Y3129D01* X21048Y3144D01* X21080Y3162D01* X21109Y3183D01* X21137Y3207D01* X21162Y3232D01* X21185Y3260D01* X21205Y3290D01* X21223Y3322D01* X21237Y3355D01* X21249Y3389D01* X21251Y3398D01* X21251Y3407D01* X21250Y3415D01* X21247Y3423D01* X21242Y3431D01* X21237Y3438D01* X21230Y3444D01* X21223Y3448D01* X21215Y3451D01* X21206Y3453D01* X21197Y3453D01* X21189Y3452D01* X21181Y3449D01* X21173Y3445D01* X21166Y3439D01* X21160Y3433D01* X21156Y3425D01* X21153Y3417D01* X21144Y3391D01* X21133Y3366D01* X21120Y3343D01* X21105Y3320D01* X21088Y3299D01* X21069Y3280D01* X21048Y3262D01* X21026Y3247D01* X21002Y3233D01* X20978Y3222D01* X20952Y3213D01* X20944Y3209D01* X20944Y3209D01* Y3789D01* X20947Y3788D01* X20973Y3779D01* X20998Y3768D01* X21021Y3755D01* X21044Y3740D01* X21065Y3723D01* X21084Y3704D01* X21102Y3683D01* X21117Y3661D01* X21131Y3637D01* X21142Y3613D01* X21151Y3587D01* X21155Y3579D01* X21159Y3572D01* X21165Y3565D01* X21172Y3560D01* X21180Y3556D01* X21188Y3553D01* X21197Y3552D01* X21205Y3552D01* X21214Y3554D01* X21222Y3557D01* X21229Y3562D01* X21236Y3568D01* X21241Y3575D01* X21245Y3582D01* X21248Y3591D01* X21249Y3599D01* X21249Y3608D01* X21247Y3617D01* X21235Y3651D01* X21220Y3683D01* X21202Y3715D01* X21181Y3744D01* X21157Y3772D01* X21132Y3797D01* X21104Y3820D01* X21074Y3840D01* X21042Y3858D01* X21009Y3873D01* X20975Y3884D01* X20966Y3886D01* X20957Y3886D01* X20949Y3885D01* X20944Y3883D01* Y5115D01* X20944D01* X20953Y5115D01* X20961Y5117D01* X20996Y5129D01* X21028Y5144D01* X21060Y5162D01* X21089Y5183D01* X21117Y5207D01* X21142Y5232D01* X21165Y5260D01* X21185Y5290D01* X21203Y5322D01* X21217Y5355D01* X21229Y5389D01* X21231Y5398D01* X21231Y5407D01* X21230Y5415D01* X21227Y5423D01* X21222Y5431D01* X21217Y5438D01* X21210Y5444D01* X21203Y5448D01* X21195Y5451D01* X21186Y5453D01* X21177Y5453D01* X21169Y5452D01* X21161Y5449D01* X21153Y5445D01* X21146Y5439D01* X21140Y5433D01* X21136Y5425D01* X21133Y5417D01* X21124Y5391D01* X21113Y5366D01* X21100Y5343D01* X21085Y5320D01* X21068Y5299D01* X21049Y5280D01* X21028Y5262D01* X21006Y5247D01* X20982Y5233D01* X20958Y5222D01* X20944Y5217D01* Y5782D01* X20953Y5779D01* X20978Y5768D01* X21001Y5755D01* X21024Y5740D01* X21045Y5723D01* X21064Y5704D01* X21082Y5683D01* X21097Y5661D01* X21111Y5637D01* X21122Y5613D01* X21131Y5587D01* X21135Y5579D01* X21139Y5572D01* X21145Y5565D01* X21152Y5560D01* X21160Y5556D01* X21168Y5553D01* X21177Y5552D01* X21185Y5552D01* X21194Y5554D01* X21202Y5557D01* X21209Y5562D01* X21216Y5568D01* X21221Y5575D01* X21225Y5582D01* X21228Y5591D01* X21229Y5599D01* X21229Y5608D01* X21227Y5617D01* X21215Y5651D01* X21200Y5683D01* X21182Y5715D01* X21161Y5744D01* X21137Y5772D01* X21112Y5797D01* X21084Y5820D01* X21054Y5840D01* X21022Y5858D01* X20989Y5873D01* X20955Y5884D01* X20946Y5886D01* X20944D01* Y7118D01* X20976Y7129D01* X21008Y7144D01* X21040Y7162D01* X21069Y7183D01* X21097Y7207D01* X21122Y7232D01* X21145Y7260D01* X21165Y7290D01* X21183Y7322D01* X21197Y7355D01* X21209Y7389D01* X21211Y7398D01* X21211Y7407D01* X21210Y7415D01* X21207Y7423D01* X21202Y7431D01* X21197Y7438D01* X21190Y7444D01* X21183Y7448D01* X21175Y7451D01* X21166Y7453D01* X21157Y7453D01* X21149Y7452D01* X21141Y7449D01* X21133Y7445D01* X21126Y7439D01* X21120Y7433D01* X21116Y7425D01* X21113Y7417D01* X21104Y7391D01* X21093Y7366D01* X21080Y7343D01* X21065Y7320D01* X21048Y7299D01* X21029Y7280D01* X21008Y7262D01* X20986Y7247D01* X20962Y7233D01* X20944Y7225D01* Y7774D01* X20958Y7768D01* X20981Y7755D01* X21004Y7740D01* X21025Y7723D01* X21044Y7704D01* X21062Y7683D01* X21077Y7661D01* X21091Y7637D01* X21102Y7613D01* X21111Y7587D01* X21115Y7579D01* X21119Y7572D01* X21125Y7565D01* X21132Y7560D01* X21140Y7556D01* X21148Y7553D01* X21157Y7552D01* X21165Y7552D01* X21174Y7554D01* X21182Y7557D01* X21189Y7562D01* X21196Y7568D01* X21201Y7575D01* X21205Y7582D01* X21208Y7591D01* X21209Y7599D01* X21209Y7608D01* X21207Y7617D01* X21195Y7651D01* X21180Y7683D01* X21162Y7715D01* X21141Y7744D01* X21117Y7772D01* X21092Y7797D01* X21064Y7820D01* X21034Y7840D01* X21002Y7858D01* X20969Y7873D01* X20944Y7881D01* Y9125D01* X20956Y9129D01* X20988Y9144D01* X21020Y9162D01* X21049Y9183D01* X21077Y9207D01* X21102Y9232D01* X21125Y9260D01* X21145Y9290D01* X21163Y9322D01* X21177Y9355D01* X21189Y9389D01* X21191Y9398D01* X21191Y9407D01* X21190Y9415D01* X21187Y9423D01* X21182Y9431D01* X21177Y9438D01* X21170Y9444D01* X21163Y9448D01* X21155Y9451D01* X21146Y9453D01* X21137Y9453D01* X21129Y9452D01* X21121Y9449D01* X21113Y9445D01* X21106Y9439D01* X21100Y9433D01* X21096Y9425D01* X21093Y9417D01* X21084Y9391D01* X21073Y9366D01* X21060Y9343D01* X21045Y9320D01* X21028Y9299D01* X21009Y9280D01* X20988Y9262D01* X20966Y9247D01* X20944Y9234D01* Y9765D01* X20961Y9755D01* X20984Y9740D01* X21005Y9723D01* X21024Y9704D01* X21042Y9683D01* X21057Y9661D01* X21071Y9637D01* X21082Y9613D01* X21091Y9587D01* X21095Y9579D01* X21099Y9572D01* X21105Y9565D01* X21112Y9560D01* X21120Y9556D01* X21128Y9553D01* X21137Y9552D01* X21145Y9552D01* X21154Y9554D01* X21162Y9557D01* X21169Y9562D01* X21176Y9568D01* X21181Y9575D01* X21185Y9582D01* X21188Y9591D01* X21189Y9599D01* X21189Y9608D01* X21187Y9617D01* X21175Y9651D01* X21160Y9683D01* X21142Y9715D01* X21121Y9744D01* X21097Y9772D01* X21072Y9797D01* X21044Y9820D01* X21014Y9840D01* X20982Y9858D01* X20949Y9873D01* X20944Y9874D01* Y11133D01* X20968Y11144D01* X21000Y11162D01* X21029Y11183D01* X21057Y11207D01* X21082Y11232D01* X21105Y11260D01* X21125Y11290D01* X21143Y11322D01* X21157Y11355D01* X21169Y11389D01* X21171Y11398D01* X21171Y11407D01* X21170Y11415D01* X21167Y11423D01* X21162Y11431D01* X21157Y11438D01* X21150Y11444D01* X21143Y11448D01* X21135Y11451D01* X21126Y11453D01* X21117Y11453D01* X21109Y11452D01* X21101Y11449D01* X21093Y11445D01* X21086Y11439D01* X21080Y11433D01* X21076Y11425D01* X21073Y11417D01* X21064Y11391D01* X21053Y11366D01* X21040Y11343D01* X21025Y11320D01* X21008Y11299D01* X20989Y11280D01* X20968Y11262D01* X20946Y11247D01* X20944Y11246D01* Y11754D01* X20964Y11740D01* X20985Y11723D01* X21004Y11704D01* X21022Y11683D01* X21037Y11661D01* X21051Y11637D01* X21062Y11613D01* X21071Y11587D01* X21075Y11579D01* X21079Y11572D01* X21085Y11565D01* X21092Y11560D01* X21100Y11556D01* X21108Y11553D01* X21117Y11552D01* X21125Y11552D01* X21134Y11554D01* X21142Y11557D01* X21149Y11562D01* X21156Y11568D01* X21161Y11575D01* X21165Y11582D01* X21168Y11591D01* X21169Y11599D01* X21169Y11608D01* X21167Y11617D01* X21155Y11651D01* X21140Y11683D01* X21122Y11715D01* X21101Y11744D01* X21077Y11772D01* X21052Y11797D01* X21024Y11820D01* X20994Y11840D01* X20962Y11858D01* X20944Y11866D01* Y13142D01* X20948Y13144D01* X20980Y13162D01* X21009Y13183D01* X21037Y13207D01* X21062Y13232D01* X21085Y13260D01* X21105Y13290D01* X21123Y13322D01* X21137Y13355D01* X21149Y13389D01* X21151Y13398D01* X21151Y13407D01* X21150Y13415D01* X21147Y13423D01* X21142Y13431D01* X21137Y13438D01* X21130Y13444D01* X21123Y13448D01* X21115Y13451D01* X21106Y13453D01* X21097Y13453D01* X21089Y13452D01* X21081Y13449D01* X21073Y13445D01* X21066Y13439D01* X21060Y13433D01* X21056Y13425D01* X21053Y13417D01* X21044Y13391D01* X21033Y13366D01* X21020Y13343D01* X21005Y13320D01* X20988Y13299D01* X20969Y13280D01* X20948Y13262D01* X20944Y13259D01* Y13740D01* X20965Y13723D01* X20984Y13704D01* X21002Y13683D01* X21017Y13661D01* X21031Y13637D01* X21042Y13613D01* X21051Y13587D01* X21055Y13579D01* X21059Y13572D01* X21065Y13565D01* X21072Y13560D01* X21080Y13556D01* X21088Y13553D01* X21097Y13552D01* X21105Y13552D01* X21114Y13554D01* X21122Y13557D01* X21129Y13562D01* X21136Y13568D01* X21141Y13575D01* X21145Y13582D01* X21148Y13591D01* X21149Y13599D01* X21149Y13608D01* X21147Y13617D01* X21135Y13651D01* X21120Y13683D01* X21102Y13715D01* X21081Y13744D01* X21057Y13772D01* X21032Y13797D01* X21004Y13820D01* X20974Y13840D01* X20944Y13857D01* Y15153D01* X20960Y15162D01* X20989Y15183D01* X21017Y15207D01* X21042Y15232D01* X21065Y15260D01* X21085Y15290D01* X21103Y15322D01* X21117Y15355D01* X21129Y15389D01* X21131Y15398D01* X21131Y15407D01* X21130Y15415D01* X21127Y15423D01* X21122Y15431D01* X21117Y15438D01* X21110Y15444D01* X21103Y15448D01* X21095Y15451D01* X21086Y15453D01* X21077Y15453D01* X21069Y15452D01* X21061Y15449D01* X21053Y15445D01* X21046Y15439D01* X21040Y15433D01* X21036Y15425D01* X21033Y15417D01* X21024Y15391D01* X21013Y15366D01* X21000Y15343D01* X20985Y15320D01* X20968Y15299D01* X20949Y15280D01* X20944Y15276D01* Y15724D01* X20945Y15723D01* X20964Y15704D01* X20982Y15683D01* X20997Y15661D01* X21011Y15637D01* X21022Y15613D01* X21031Y15587D01* X21035Y15579D01* X21039Y15572D01* X21045Y15565D01* X21052Y15560D01* X21060Y15556D01* X21068Y15553D01* X21077Y15552D01* X21085Y15552D01* X21094Y15554D01* X21102Y15557D01* X21109Y15562D01* X21116Y15568D01* X21121Y15575D01* X21125Y15582D01* X21128Y15591D01* X21129Y15599D01* X21129Y15608D01* X21127Y15617D01* X21115Y15651D01* X21100Y15683D01* X21082Y15715D01* X21061Y15744D01* X21037Y15772D01* X21012Y15797D01* X20984Y15820D01* X20954Y15840D01* X20944Y15846D01* Y17165D01* X20969Y17183D01* X20997Y17207D01* X21022Y17232D01* X21045Y17260D01* X21065Y17290D01* X21083Y17322D01* X21097Y17355D01* X21109Y17389D01* X21111Y17398D01* X21111Y17407D01* X21110Y17415D01* X21107Y17423D01* X21102Y17431D01* X21097Y17438D01* X21090Y17444D01* X21083Y17448D01* X21075Y17451D01* X21066Y17453D01* X21057Y17453D01* X21049Y17452D01* X21041Y17449D01* X21033Y17445D01* X21026Y17439D01* X21020Y17433D01* X21016Y17425D01* X21013Y17417D01* X21004Y17391D01* X20993Y17366D01* X20980Y17343D01* X20965Y17320D01* X20948Y17299D01* X20944Y17295D01* Y17704D01* X20944Y17704D01* X20962Y17683D01* X20977Y17661D01* X20991Y17637D01* X21002Y17613D01* X21011Y17587D01* X21015Y17579D01* X21019Y17572D01* X21025Y17565D01* X21032Y17560D01* X21040Y17556D01* X21048Y17553D01* X21057Y17552D01* X21065Y17552D01* X21074Y17554D01* X21082Y17557D01* X21089Y17562D01* X21096Y17568D01* X21101Y17575D01* X21105Y17582D01* X21108Y17591D01* X21109Y17599D01* X21109Y17608D01* X21107Y17617D01* X21095Y17651D01* X21080Y17683D01* X21062Y17715D01* X21041Y17744D01* X21017Y17772D01* X20992Y17797D01* X20964Y17820D01* X20944Y17834D01* Y19180D01* X20949Y19183D01* X20977Y19207D01* X21002Y19232D01* X21025Y19260D01* X21045Y19290D01* X21063Y19322D01* X21077Y19355D01* X21089Y19389D01* X21091Y19398D01* X21091Y19407D01* X21090Y19415D01* X21087Y19423D01* X21082Y19431D01* X21077Y19438D01* X21070Y19444D01* X21063Y19448D01* X21055Y19451D01* X21046Y19453D01* X21037Y19453D01* X21029Y19452D01* X21021Y19449D01* X21013Y19445D01* X21006Y19439D01* X21000Y19433D01* X20996Y19425D01* X20993Y19417D01* X20984Y19391D01* X20973Y19366D01* X20960Y19343D01* X20945Y19320D01* X20944Y19319D01* Y19680D01* X20957Y19661D01* X20971Y19637D01* X20982Y19613D01* X20991Y19587D01* X20995Y19579D01* X20999Y19572D01* X21005Y19565D01* X21012Y19560D01* X21020Y19556D01* X21028Y19553D01* X21037Y19552D01* X21045Y19552D01* X21054Y19554D01* X21062Y19557D01* X21069Y19562D01* X21076Y19568D01* X21081Y19575D01* X21085Y19582D01* X21088Y19591D01* X21089Y19599D01* X21089Y19608D01* X21087Y19617D01* X21075Y19651D01* X21060Y19683D01* X21042Y19715D01* X21021Y19744D01* X20997Y19772D01* X20972Y19797D01* X20944Y19820D01* Y21196D01* X20957Y21207D01* X20982Y21232D01* X21005Y21260D01* X21025Y21290D01* X21043Y21322D01* X21057Y21355D01* X21069Y21389D01* X21071Y21398D01* X21071Y21407D01* X21070Y21415D01* X21067Y21423D01* X21062Y21431D01* X21057Y21438D01* X21050Y21444D01* X21043Y21448D01* X21035Y21451D01* X21026Y21453D01* X21017Y21453D01* X21009Y21452D01* X21001Y21449D01* X20993Y21445D01* X20986Y21439D01* X20980Y21433D01* X20976Y21425D01* X20973Y21417D01* X20964Y21391D01* X20953Y21366D01* X20944Y21350D01* Y21650D01* X20951Y21637D01* X20962Y21613D01* X20971Y21587D01* X20975Y21579D01* X20979Y21572D01* X20985Y21565D01* X20992Y21560D01* X21000Y21556D01* X21008Y21553D01* X21017Y21552D01* X21025Y21552D01* X21034Y21554D01* X21042Y21557D01* X21049Y21562D01* X21056Y21568D01* X21061Y21575D01* X21065Y21582D01* X21068Y21591D01* X21069Y21599D01* X21069Y21608D01* X21067Y21617D01* X21055Y21651D01* X21040Y21683D01* X21022Y21715D01* X21001Y21744D01* X20977Y21772D01* X20952Y21797D01* X20944Y21804D01* Y23214D01* X20962Y23232D01* X20985Y23260D01* X21005Y23290D01* X21023Y23322D01* X21037Y23355D01* X21049Y23389D01* X21051Y23398D01* X21051Y23407D01* X21050Y23415D01* X21047Y23423D01* X21042Y23431D01* X21037Y23438D01* X21030Y23444D01* X21023Y23448D01* X21015Y23451D01* X21006Y23453D01* X20997Y23453D01* X20989Y23452D01* X20981Y23449D01* X20973Y23445D01* X20966Y23439D01* X20960Y23433D01* X20956Y23425D01* X20953Y23417D01* X20944Y23391D01* X20944Y23391D01* Y23608D01* X20951Y23587D01* X20955Y23579D01* X20959Y23572D01* X20965Y23565D01* X20972Y23560D01* X20980Y23556D01* X20988Y23553D01* X20997Y23552D01* X21005Y23552D01* X21014Y23554D01* X21022Y23557D01* X21029Y23562D01* X21036Y23568D01* X21041Y23575D01* X21045Y23582D01* X21048Y23591D01* X21049Y23599D01* X21049Y23608D01* X21047Y23617D01* X21035Y23651D01* X21020Y23683D01* X21002Y23715D01* X20981Y23744D01* X20957Y23772D01* X20944Y23785D01* Y25235D01* X20965Y25260D01* X20985Y25290D01* X21003Y25322D01* X21017Y25355D01* X21029Y25389D01* X21031Y25398D01* X21031Y25407D01* X21030Y25415D01* X21027Y25423D01* X21022Y25431D01* X21017Y25438D01* X21010Y25444D01* X21003Y25448D01* X20995Y25451D01* X20986Y25453D01* X20977Y25453D01* X20969Y25452D01* X20961Y25449D01* X20953Y25445D01* X20946Y25439D01* X20944Y25437D01* Y25567D01* X20945Y25565D01* X20952Y25560D01* X20960Y25556D01* X20968Y25553D01* X20977Y25552D01* X20985Y25552D01* X20994Y25554D01* X21002Y25557D01* X21009Y25562D01* X21016Y25568D01* X21021Y25575D01* X21025Y25582D01* X21028Y25591D01* X21029Y25599D01* X21029Y25608D01* X21027Y25617D01* X21015Y25651D01* X21000Y25683D01* X20982Y25715D01* X20961Y25744D01* X20944Y25764D01* Y27259D01* X20945Y27260D01* X20965Y27290D01* X20983Y27322D01* X20997Y27355D01* X21009Y27389D01* X21011Y27398D01* X21011Y27407D01* X21010Y27415D01* X21007Y27423D01* X21002Y27431D01* X20997Y27438D01* X20990Y27444D01* X20983Y27448D01* X20975Y27451D01* X20966Y27453D01* X20957Y27453D01* X20949Y27452D01* X20944Y27450D01* Y27555D01* X20948Y27553D01* X20957Y27552D01* X20965Y27552D01* X20974Y27554D01* X20982Y27557D01* X20989Y27562D01* X20996Y27568D01* X21001Y27575D01* X21005Y27582D01* X21008Y27591D01* X21009Y27599D01* X21009Y27608D01* X21007Y27617D01* X20995Y27651D01* X20980Y27683D01* X20962Y27715D01* X20944Y27740D01* Y29288D01* X20945Y29290D01* X20963Y29322D01* X20977Y29355D01* X20989Y29389D01* X20991Y29398D01* X20991Y29407D01* X20990Y29415D01* X20987Y29423D01* X20982Y29431D01* X20977Y29438D01* X20970Y29444D01* X20963Y29448D01* X20955Y29451D01* X20946Y29453D01* X20944D01* Y29552D01* X20945D01* X20954Y29554D01* X20962Y29557D01* X20969Y29562D01* X20976Y29568D01* X20981Y29575D01* X20985Y29582D01* X20988Y29591D01* X20989Y29599D01* X20989Y29608D01* X20987Y29617D01* X20975Y29651D01* X20960Y29683D01* X20944Y29711D01* Y31324D01* X20957Y31355D01* X20969Y31389D01* X20971Y31398D01* X20971Y31407D01* X20970Y31415D01* X20967Y31423D01* X20962Y31431D01* X20957Y31438D01* X20950Y31444D01* X20944Y31447D01* Y31559D01* X20949Y31562D01* X20956Y31568D01* X20961Y31575D01* X20965Y31582D01* X20968Y31591D01* X20969Y31599D01* X20969Y31608D01* X20967Y31617D01* X20955Y31651D01* X20944Y31674D01* Y33374D01* X20949Y33389D01* X20951Y33398D01* X20951Y33407D01* X20950Y33415D01* X20947Y33423D01* X20944Y33428D01* Y33580D01* X20945Y33582D01* X20948Y33591D01* X20949Y33599D01* X20949Y33608D01* X20947Y33617D01* X20944Y33625D01* Y40000D01* G37* G36* X22285D02*X22465D01* Y37859D01* X22462Y37864D01* X22456Y37871D01* X22449Y37876D01* X22442Y37880D01* X22433Y37883D01* X22425Y37884D01* X22416Y37884D01* X22408Y37882D01* X22373Y37870D01* X22341Y37855D01* X22309Y37837D01* X22285Y37820D01* Y39166D01* X22295Y39159D01* X22327Y39141D01* X22360Y39127D01* X22394Y39115D01* X22403Y39113D01* X22412Y39113D01* X22420Y39115D01* X22428Y39117D01* X22436Y39122D01* X22443Y39127D01* X22449Y39134D01* X22453Y39141D01* X22456Y39149D01* X22458Y39158D01* X22458Y39167D01* X22457Y39175D01* X22454Y39183D01* X22450Y39191D01* X22444Y39198D01* X22437Y39204D01* X22430Y39208D01* X22422Y39211D01* X22396Y39220D01* X22371Y39231D01* X22348Y39244D01* X22325Y39259D01* X22304Y39276D01* X22285Y39295D01* Y39704D01* X22300Y39719D01* X22321Y39737D01* X22343Y39752D01* X22367Y39766D01* X22391Y39777D01* X22417Y39786D01* X22425Y39790D01* X22432Y39794D01* X22439Y39800D01* X22444Y39807D01* X22448Y39815D01* X22451Y39823D01* X22452Y39832D01* X22452Y39840D01* X22450Y39849D01* X22447Y39857D01* X22442Y39864D01* X22436Y39871D01* X22429Y39876D01* X22422Y39880D01* X22413Y39883D01* X22405Y39884D01* X22396Y39884D01* X22388Y39882D01* X22353Y39870D01* X22321Y39855D01* X22289Y39837D01* X22285Y39834D01* Y40000D01* G37* G36* X22465Y11740D02*X22464Y11739D01* X22444Y11709D01* X22426Y11677D01* X22412Y11644D01* X22400Y11610D01* X22398Y11601D01* X22398Y11593D01* X22399Y11584D01* X22402Y11576D01* X22407Y11568D01* X22412Y11561D01* X22419Y11556D01* X22426Y11551D01* X22434Y11548D01* X22443Y11546D01* X22452Y11546D01* X22460Y11547D01* X22465Y11549D01* Y11445D01* X22461Y11446D01* X22452Y11447D01* X22444Y11447D01* X22435Y11445D01* X22427Y11442D01* X22420Y11437D01* X22413Y11431D01* X22408Y11424D01* X22404Y11417D01* X22401Y11409D01* X22400Y11400D01* X22400Y11391D01* X22402Y11383D01* X22414Y11349D01* X22429Y11316D01* X22447Y11284D01* X22465Y11259D01* Y9711D01* X22464Y9709D01* X22446Y9677D01* X22432Y9644D01* X22420Y9610D01* X22418Y9601D01* X22418Y9593D01* X22419Y9584D01* X22422Y9576D01* X22427Y9568D01* X22432Y9561D01* X22439Y9556D01* X22446Y9551D01* X22454Y9548D01* X22463Y9546D01* X22465D01* Y9447D01* X22464Y9447D01* X22455Y9445D01* X22447Y9442D01* X22440Y9437D01* X22433Y9431D01* X22428Y9424D01* X22424Y9417D01* X22421Y9409D01* X22420Y9400D01* X22420Y9391D01* X22422Y9383D01* X22434Y9349D01* X22449Y9316D01* X22465Y9288D01* Y7675D01* X22452Y7644D01* X22440Y7610D01* X22438Y7601D01* X22438Y7593D01* X22439Y7584D01* X22442Y7576D01* X22447Y7568D01* X22452Y7561D01* X22459Y7556D01* X22465Y7552D01* Y7441D01* X22460Y7437D01* X22453Y7431D01* X22448Y7424D01* X22444Y7417D01* X22441Y7409D01* X22440Y7400D01* X22440Y7391D01* X22442Y7383D01* X22454Y7349D01* X22465Y7325D01* Y5625D01* X22460Y5610D01* X22458Y5601D01* X22458Y5593D01* X22459Y5584D01* X22462Y5576D01* X22465Y5571D01* Y5419D01* X22464Y5417D01* X22461Y5409D01* X22460Y5400D01* X22460Y5391D01* X22462Y5383D01* X22465Y5374D01* Y0D01* X22285D01* Y23374D01* X22294Y23349D01* X22309Y23316D01* X22327Y23284D01* X22348Y23255D01* X22372Y23227D01* X22397Y23202D01* X22425Y23179D01* X22455Y23159D01* X22465Y23153D01* Y21834D01* X22440Y21816D01* X22412Y21793D01* X22387Y21767D01* X22364Y21739D01* X22344Y21709D01* X22326Y21677D01* X22312Y21644D01* X22300Y21610D01* X22298Y21601D01* X22298Y21593D01* X22299Y21584D01* X22302Y21576D01* X22307Y21568D01* X22312Y21561D01* X22319Y21556D01* X22326Y21551D01* X22334Y21548D01* X22343Y21546D01* X22352Y21546D01* X22360Y21547D01* X22368Y21550D01* X22376Y21555D01* X22383Y21560D01* X22389Y21567D01* X22393Y21574D01* X22396Y21582D01* X22405Y21608D01* X22416Y21633D01* X22429Y21657D01* X22444Y21679D01* X22461Y21700D01* X22465Y21704D01* Y21295D01* X22465Y21295D01* X22447Y21316D01* X22432Y21338D01* X22418Y21362D01* X22407Y21386D01* X22398Y21412D01* X22394Y21420D01* X22390Y21427D01* X22384Y21434D01* X22377Y21439D01* X22369Y21443D01* X22361Y21446D01* X22352Y21447D01* X22344Y21447D01* X22335Y21445D01* X22327Y21442D01* X22320Y21437D01* X22313Y21431D01* X22308Y21424D01* X22304Y21417D01* X22301Y21409D01* X22300Y21400D01* X22300Y21391D01* X22302Y21383D01* X22314Y21349D01* X22329Y21316D01* X22347Y21284D01* X22368Y21255D01* X22392Y21227D01* X22417Y21202D01* X22445Y21179D01* X22465Y21166D01* Y19820D01* X22460Y19816D01* X22432Y19793D01* X22407Y19767D01* X22384Y19739D01* X22364Y19709D01* X22346Y19677D01* X22332Y19644D01* X22320Y19610D01* X22318Y19601D01* X22318Y19593D01* X22319Y19584D01* X22322Y19576D01* X22327Y19568D01* X22332Y19561D01* X22339Y19556D01* X22346Y19551D01* X22354Y19548D01* X22363Y19546D01* X22372Y19546D01* X22380Y19547D01* X22388Y19550D01* X22396Y19555D01* X22403Y19560D01* X22409Y19567D01* X22413Y19574D01* X22416Y19582D01* X22425Y19608D01* X22436Y19633D01* X22449Y19657D01* X22464Y19679D01* X22465Y19680D01* Y19319D01* X22452Y19338D01* X22438Y19362D01* X22427Y19386D01* X22418Y19412D01* X22414Y19420D01* X22410Y19427D01* X22404Y19434D01* X22397Y19439D01* X22389Y19443D01* X22381Y19446D01* X22372Y19447D01* X22364Y19447D01* X22355Y19445D01* X22347Y19442D01* X22340Y19437D01* X22333Y19431D01* X22328Y19424D01* X22324Y19417D01* X22321Y19409D01* X22320Y19400D01* X22320Y19391D01* X22322Y19383D01* X22334Y19349D01* X22349Y19316D01* X22367Y19284D01* X22388Y19255D01* X22412Y19227D01* X22437Y19202D01* X22465Y19179D01* Y17804D01* X22452Y17793D01* X22427Y17767D01* X22404Y17739D01* X22384Y17709D01* X22366Y17677D01* X22352Y17644D01* X22340Y17610D01* X22338Y17601D01* X22338Y17593D01* X22339Y17584D01* X22342Y17576D01* X22347Y17568D01* X22352Y17561D01* X22359Y17556D01* X22366Y17551D01* X22374Y17548D01* X22383Y17546D01* X22392Y17546D01* X22400Y17547D01* X22408Y17550D01* X22416Y17555D01* X22423Y17560D01* X22429Y17567D01* X22433Y17574D01* X22436Y17582D01* X22445Y17608D01* X22456Y17633D01* X22465Y17650D01* Y17349D01* X22458Y17362D01* X22447Y17386D01* X22438Y17412D01* X22434Y17420D01* X22430Y17427D01* X22424Y17434D01* X22417Y17439D01* X22409Y17443D01* X22401Y17446D01* X22392Y17447D01* X22384Y17447D01* X22375Y17445D01* X22367Y17442D01* X22360Y17437D01* X22353Y17431D01* X22348Y17424D01* X22344Y17417D01* X22341Y17409D01* X22340Y17400D01* X22340Y17391D01* X22342Y17383D01* X22354Y17349D01* X22369Y17316D01* X22387Y17284D01* X22408Y17255D01* X22432Y17227D01* X22457Y17202D01* X22465Y17196D01* Y15785D01* X22447Y15767D01* X22424Y15739D01* X22404Y15709D01* X22386Y15677D01* X22372Y15644D01* X22360Y15610D01* X22358Y15601D01* X22358Y15593D01* X22359Y15584D01* X22362Y15576D01* X22367Y15568D01* X22372Y15561D01* X22379Y15556D01* X22386Y15551D01* X22394Y15548D01* X22403Y15546D01* X22412Y15546D01* X22420Y15547D01* X22428Y15550D01* X22436Y15555D01* X22443Y15560D01* X22449Y15567D01* X22453Y15574D01* X22456Y15582D01* X22465Y15608D01* X22465Y15609D01* Y15391D01* X22458Y15412D01* X22454Y15420D01* X22450Y15427D01* X22444Y15434D01* X22437Y15439D01* X22429Y15443D01* X22421Y15446D01* X22412Y15447D01* X22404Y15447D01* X22395Y15445D01* X22387Y15442D01* X22380Y15437D01* X22373Y15431D01* X22368Y15424D01* X22364Y15417D01* X22361Y15409D01* X22360Y15400D01* X22360Y15391D01* X22362Y15383D01* X22374Y15349D01* X22389Y15316D01* X22407Y15284D01* X22428Y15255D01* X22452Y15227D01* X22465Y15214D01* Y13765D01* X22444Y13739D01* X22424Y13709D01* X22406Y13677D01* X22392Y13644D01* X22380Y13610D01* X22378Y13601D01* X22378Y13593D01* X22379Y13584D01* X22382Y13576D01* X22387Y13568D01* X22392Y13561D01* X22399Y13556D01* X22406Y13551D01* X22414Y13548D01* X22423Y13546D01* X22432Y13546D01* X22440Y13547D01* X22448Y13550D01* X22456Y13555D01* X22463Y13560D01* X22465Y13563D01* Y13432D01* X22464Y13434D01* X22457Y13439D01* X22449Y13443D01* X22441Y13446D01* X22432Y13447D01* X22424Y13447D01* X22415Y13445D01* X22407Y13442D01* X22400Y13437D01* X22393Y13431D01* X22388Y13424D01* X22384Y13417D01* X22381Y13409D01* X22380Y13400D01* X22380Y13391D01* X22382Y13383D01* X22394Y13349D01* X22409Y13316D01* X22427Y13284D01* X22448Y13255D01* X22465Y13235D01* Y11740D01* G37* G36* Y23276D02*X22464Y23276D01* X22445Y23295D01* X22427Y23316D01* X22412Y23338D01* X22398Y23362D01* X22387Y23386D01* X22378Y23412D01* X22374Y23420D01* X22370Y23427D01* X22364Y23434D01* X22357Y23439D01* X22349Y23443D01* X22341Y23446D01* X22332Y23447D01* X22324Y23447D01* X22315Y23445D01* X22307Y23442D01* X22300Y23437D01* X22293Y23431D01* X22288Y23424D01* X22285Y23419D01* Y23571D01* X22287Y23568D01* X22292Y23561D01* X22299Y23556D01* X22306Y23551D01* X22314Y23548D01* X22323Y23546D01* X22332Y23546D01* X22340Y23547D01* X22348Y23550D01* X22356Y23555D01* X22363Y23560D01* X22369Y23567D01* X22373Y23574D01* X22376Y23582D01* X22385Y23608D01* X22396Y23633D01* X22409Y23657D01* X22424Y23679D01* X22441Y23700D01* X22460Y23719D01* X22465Y23723D01* Y23276D01* G37* G36* Y23846D02*X22449Y23837D01* X22420Y23816D01* X22392Y23793D01* X22367Y23767D01* X22344Y23739D01* X22324Y23709D01* X22306Y23677D01* X22292Y23644D01* X22285Y23625D01* Y25325D01* X22289Y25316D01* X22307Y25284D01* X22328Y25255D01* X22352Y25227D01* X22377Y25202D01* X22405Y25179D01* X22435Y25159D01* X22465Y25142D01* Y23846D01* G37* G36* Y25259D02*X22465Y25259D01* X22444Y25276D01* X22425Y25295D01* X22407Y25316D01* X22392Y25338D01* X22378Y25362D01* X22367Y25386D01* X22358Y25412D01* X22354Y25420D01* X22350Y25427D01* X22344Y25434D01* X22337Y25439D01* X22329Y25443D01* X22321Y25446D01* X22312Y25447D01* X22304Y25447D01* X22295Y25445D01* X22287Y25442D01* X22285Y25441D01* Y25552D01* X22286Y25551D01* X22294Y25548D01* X22303Y25546D01* X22312Y25546D01* X22320Y25547D01* X22328Y25550D01* X22336Y25555D01* X22343Y25560D01* X22349Y25567D01* X22353Y25574D01* X22356Y25582D01* X22365Y25608D01* X22376Y25633D01* X22389Y25657D01* X22404Y25679D01* X22421Y25700D01* X22440Y25719D01* X22461Y25737D01* X22465Y25740D01* Y25259D01* G37* G36* Y25857D02*X22461Y25855D01* X22429Y25837D01* X22400Y25816D01* X22372Y25793D01* X22347Y25767D01* X22324Y25739D01* X22304Y25709D01* X22286Y25677D01* X22285Y25675D01* Y27288D01* X22287Y27284D01* X22308Y27255D01* X22332Y27227D01* X22357Y27202D01* X22385Y27179D01* X22415Y27159D01* X22447Y27141D01* X22465Y27133D01* Y25857D01* G37* G36* Y27246D02*X22445Y27259D01* X22424Y27276D01* X22405Y27295D01* X22387Y27316D01* X22372Y27338D01* X22358Y27362D01* X22347Y27386D01* X22338Y27412D01* X22334Y27420D01* X22330Y27427D01* X22324Y27434D01* X22317Y27439D01* X22309Y27443D01* X22301Y27446D01* X22292Y27447D01* X22285Y27447D01* Y27546D01* X22292Y27546D01* X22300Y27547D01* X22308Y27550D01* X22316Y27555D01* X22323Y27560D01* X22329Y27567D01* X22333Y27574D01* X22336Y27582D01* X22345Y27608D01* X22356Y27633D01* X22369Y27657D01* X22384Y27679D01* X22401Y27700D01* X22420Y27719D01* X22441Y27737D01* X22463Y27752D01* X22465Y27754D01* Y27246D01* G37* G36* Y27866D02*X22441Y27855D01* X22409Y27837D01* X22380Y27816D01* X22352Y27793D01* X22327Y27767D01* X22304Y27739D01* X22285Y27711D01* Y29259D01* X22288Y29255D01* X22312Y29227D01* X22337Y29202D01* X22365Y29179D01* X22395Y29159D01* X22427Y29141D01* X22460Y29127D01* X22465Y29125D01* Y27866D01* G37* G36* Y29234D02*X22448Y29244D01* X22425Y29259D01* X22404Y29276D01* X22385Y29295D01* X22367Y29316D01* X22352Y29338D01* X22338Y29362D01* X22327Y29386D01* X22318Y29412D01* X22314Y29420D01* X22310Y29427D01* X22304Y29434D01* X22297Y29439D01* X22289Y29443D01* X22285Y29445D01* Y29549D01* X22288Y29550D01* X22296Y29555D01* X22303Y29560D01* X22309Y29567D01* X22313Y29574D01* X22316Y29582D01* X22325Y29608D01* X22336Y29633D01* X22349Y29657D01* X22364Y29679D01* X22381Y29700D01* X22400Y29719D01* X22421Y29737D01* X22443Y29752D01* X22465Y29765D01* Y29234D01* G37* G36* Y29874D02*X22453Y29870D01* X22421Y29855D01* X22389Y29837D01* X22360Y29816D01* X22332Y29793D01* X22307Y29767D01* X22285Y29740D01* Y31235D01* X22292Y31227D01* X22317Y31202D01* X22345Y31179D01* X22375Y31159D01* X22407Y31141D01* X22440Y31127D01* X22465Y31118D01* Y29874D01* G37* G36* Y31225D02*X22451Y31231D01* X22428Y31244D01* X22405Y31259D01* X22384Y31276D01* X22365Y31295D01* X22347Y31316D01* X22332Y31338D01* X22318Y31362D01* X22307Y31386D01* X22298Y31412D01* X22294Y31420D01* X22290Y31427D01* X22285Y31432D01* Y31563D01* X22289Y31567D01* X22293Y31574D01* X22296Y31582D01* X22305Y31608D01* X22316Y31633D01* X22329Y31657D01* X22344Y31679D01* X22361Y31700D01* X22380Y31719D01* X22401Y31737D01* X22423Y31752D01* X22447Y31766D01* X22465Y31775D01* Y31225D01* G37* G36* Y31881D02*X22433Y31870D01* X22401Y31855D01* X22369Y31837D01* X22340Y31816D01* X22312Y31793D01* X22287Y31767D01* X22285Y31765D01* Y33214D01* X22297Y33202D01* X22325Y33179D01* X22355Y33159D01* X22387Y33141D01* X22420Y33127D01* X22454Y33115D01* X22463Y33113D01* X22465D01* Y31881D01* G37* G36* Y33217D02*X22456Y33220D01* X22431Y33231D01* X22408Y33244D01* X22385Y33259D01* X22364Y33276D01* X22345Y33295D01* X22327Y33316D01* X22312Y33338D01* X22298Y33362D01* X22287Y33386D01* X22285Y33391D01* Y33609D01* X22296Y33633D01* X22309Y33657D01* X22324Y33679D01* X22341Y33700D01* X22360Y33719D01* X22381Y33737D01* X22403Y33752D01* X22427Y33766D01* X22451Y33777D01* X22465Y33782D01* Y33217D01* G37* G36* Y33884D02*X22465Y33884D01* X22456Y33884D01* X22448Y33882D01* X22413Y33870D01* X22381Y33855D01* X22349Y33837D01* X22320Y33816D01* X22292Y33793D01* X22285Y33785D01* Y35196D01* X22305Y35179D01* X22335Y35159D01* X22367Y35141D01* X22400Y35127D01* X22434Y35115D01* X22443Y35113D01* X22452Y35113D01* X22460Y35115D01* X22465Y35116D01* Y33884D01* G37* G36* Y35210D02*X22462Y35211D01* X22436Y35220D01* X22411Y35231D01* X22388Y35244D01* X22365Y35259D01* X22344Y35276D01* X22325Y35295D01* X22307Y35316D01* X22292Y35338D01* X22285Y35349D01* Y35650D01* X22289Y35657D01* X22304Y35679D01* X22321Y35700D01* X22340Y35719D01* X22361Y35737D01* X22383Y35752D01* X22407Y35766D01* X22431Y35777D01* X22457Y35786D01* X22465Y35790D01* X22465Y35790D01* Y35210D01* G37* G36* Y35878D02*X22462Y35880D01* X22453Y35883D01* X22445Y35884D01* X22436Y35884D01* X22428Y35882D01* X22393Y35870D01* X22361Y35855D01* X22329Y35837D01* X22300Y35816D01* X22285Y35804D01* Y37179D01* X22285Y37179D01* X22315Y37159D01* X22347Y37141D01* X22380Y37127D01* X22414Y37115D01* X22423Y37113D01* X22432Y37113D01* X22440Y37115D01* X22448Y37117D01* X22456Y37122D01* X22463Y37127D01* X22465Y37130D01* Y35878D01* G37* G36* Y37197D02*X22464Y37198D01* X22457Y37204D01* X22450Y37208D01* X22442Y37211D01* X22416Y37220D01* X22391Y37231D01* X22368Y37244D01* X22345Y37259D01* X22324Y37276D01* X22305Y37295D01* X22287Y37316D01* X22285Y37319D01* Y37680D01* X22301Y37700D01* X22320Y37719D01* X22341Y37737D01* X22363Y37752D01* X22387Y37766D01* X22411Y37777D01* X22437Y37786D01* X22445Y37790D01* X22452Y37794D01* X22459Y37800D01* X22464Y37807D01* X22465Y37809D01* Y37197D01* G37* G36* Y40000D02*X22724D01* Y39834D01* X22714Y39840D01* X22682Y39858D01* X22649Y39873D01* X22615Y39884D01* X22606Y39886D01* X22597Y39886D01* X22589Y39885D01* X22581Y39882D01* X22573Y39878D01* X22566Y39872D01* X22560Y39865D01* X22556Y39858D01* X22553Y39850D01* X22551Y39841D01* X22551Y39833D01* X22552Y39824D01* X22555Y39816D01* X22559Y39808D01* X22565Y39801D01* X22572Y39796D01* X22579Y39791D01* X22587Y39788D01* X22613Y39779D01* X22638Y39768D01* X22661Y39755D01* X22684Y39740D01* X22705Y39723D01* X22724Y39704D01* Y39295D01* X22709Y39280D01* X22688Y39262D01* X22666Y39247D01* X22642Y39233D01* X22618Y39222D01* X22592Y39213D01* X22584Y39209D01* X22577Y39205D01* X22570Y39199D01* X22565Y39192D01* X22561Y39184D01* X22558Y39176D01* X22557Y39167D01* X22557Y39159D01* X22559Y39150D01* X22562Y39142D01* X22567Y39135D01* X22573Y39128D01* X22580Y39123D01* X22587Y39119D01* X22596Y39116D01* X22604Y39115D01* X22613Y39115D01* X22621Y39117D01* X22656Y39129D01* X22688Y39144D01* X22720Y39162D01* X22724Y39165D01* Y37846D01* X22702Y37858D01* X22669Y37873D01* X22635Y37884D01* X22626Y37886D01* X22617Y37886D01* X22609Y37885D01* X22601Y37882D01* X22593Y37878D01* X22586Y37872D01* X22580Y37865D01* X22576Y37858D01* X22573Y37850D01* X22571Y37841D01* X22571Y37833D01* X22572Y37824D01* X22575Y37816D01* X22579Y37808D01* X22585Y37801D01* X22592Y37796D01* X22599Y37791D01* X22607Y37788D01* X22633Y37779D01* X22658Y37768D01* X22681Y37755D01* X22704Y37740D01* X22724Y37724D01* Y37276D01* X22708Y37262D01* X22686Y37247D01* X22662Y37233D01* X22638Y37222D01* X22612Y37213D01* X22604Y37209D01* X22597Y37205D01* X22590Y37199D01* X22585Y37192D01* X22581Y37184D01* X22578Y37176D01* X22577Y37167D01* X22577Y37159D01* X22579Y37150D01* X22582Y37142D01* X22587Y37135D01* X22593Y37128D01* X22600Y37123D01* X22607Y37119D01* X22616Y37116D01* X22624Y37115D01* X22633Y37115D01* X22641Y37117D01* X22676Y37129D01* X22708Y37144D01* X22724Y37153D01* Y35857D01* X22722Y35858D01* X22689Y35873D01* X22655Y35884D01* X22646Y35886D01* X22637Y35886D01* X22629Y35885D01* X22621Y35882D01* X22613Y35878D01* X22606Y35872D01* X22600Y35865D01* X22596Y35858D01* X22593Y35850D01* X22591Y35841D01* X22591Y35833D01* X22592Y35824D01* X22595Y35816D01* X22599Y35808D01* X22605Y35801D01* X22612Y35796D01* X22619Y35791D01* X22627Y35788D01* X22653Y35779D01* X22678Y35768D01* X22701Y35755D01* X22724Y35740D01* Y35259D01* X22706Y35247D01* X22682Y35233D01* X22658Y35222D01* X22632Y35213D01* X22624Y35209D01* X22617Y35205D01* X22610Y35199D01* X22605Y35192D01* X22601Y35184D01* X22598Y35176D01* X22597Y35167D01* X22597Y35159D01* X22599Y35150D01* X22602Y35142D01* X22607Y35135D01* X22613Y35128D01* X22620Y35123D01* X22627Y35119D01* X22636Y35116D01* X22644Y35115D01* X22653Y35115D01* X22661Y35117D01* X22696Y35129D01* X22724Y35142D01* Y33866D01* X22709Y33873D01* X22675Y33884D01* X22666Y33886D01* X22657Y33886D01* X22649Y33885D01* X22641Y33882D01* X22633Y33878D01* X22626Y33872D01* X22620Y33865D01* X22616Y33858D01* X22613Y33850D01* X22611Y33841D01* X22611Y33833D01* X22612Y33824D01* X22615Y33816D01* X22619Y33808D01* X22625Y33801D01* X22632Y33796D01* X22639Y33791D01* X22647Y33788D01* X22673Y33779D01* X22698Y33768D01* X22721Y33755D01* X22724Y33754D01* Y33246D01* X22702Y33233D01* X22678Y33222D01* X22652Y33213D01* X22644Y33209D01* X22637Y33205D01* X22630Y33199D01* X22625Y33192D01* X22621Y33184D01* X22618Y33176D01* X22617Y33167D01* X22617Y33159D01* X22619Y33150D01* X22622Y33142D01* X22627Y33135D01* X22633Y33128D01* X22640Y33123D01* X22647Y33119D01* X22656Y33116D01* X22664Y33115D01* X22673Y33115D01* X22681Y33117D01* X22716Y33129D01* X22724Y33133D01* Y31874D01* X22695Y31884D01* X22686Y31886D01* X22677Y31886D01* X22669Y31885D01* X22661Y31882D01* X22653Y31878D01* X22646Y31872D01* X22640Y31865D01* X22636Y31858D01* X22633Y31850D01* X22631Y31841D01* X22631Y31833D01* X22632Y31824D01* X22635Y31816D01* X22639Y31808D01* X22645Y31801D01* X22652Y31796D01* X22659Y31791D01* X22667Y31788D01* X22693Y31779D01* X22718Y31768D01* X22724Y31765D01* Y31234D01* X22722Y31233D01* X22698Y31222D01* X22672Y31213D01* X22664Y31209D01* X22657Y31205D01* X22650Y31199D01* X22645Y31192D01* X22641Y31184D01* X22638Y31176D01* X22637Y31167D01* X22637Y31159D01* X22639Y31150D01* X22642Y31142D01* X22647Y31135D01* X22653Y31128D01* X22660Y31123D01* X22667Y31119D01* X22676Y31116D01* X22684Y31115D01* X22693Y31115D01* X22701Y31117D01* X22724Y31125D01* Y29881D01* X22715Y29884D01* X22706Y29886D01* X22697Y29886D01* X22689Y29885D01* X22681Y29882D01* X22673Y29878D01* X22666Y29872D01* X22660Y29865D01* X22656Y29858D01* X22653Y29850D01* X22651Y29841D01* X22651Y29833D01* X22652Y29824D01* X22655Y29816D01* X22659Y29808D01* X22665Y29801D01* X22672Y29796D01* X22679Y29791D01* X22687Y29788D01* X22713Y29779D01* X22724Y29774D01* Y29225D01* X22718Y29222D01* X22692Y29213D01* X22684Y29209D01* X22677Y29205D01* X22670Y29199D01* X22665Y29192D01* X22661Y29184D01* X22658Y29176D01* X22657Y29167D01* X22657Y29159D01* X22659Y29150D01* X22662Y29142D01* X22667Y29135D01* X22673Y29128D01* X22680Y29123D01* X22687Y29119D01* X22696Y29116D01* X22704Y29115D01* X22713Y29115D01* X22721Y29117D01* X22724Y29118D01* Y27886D01* X22717Y27886D01* X22709Y27885D01* X22701Y27882D01* X22693Y27878D01* X22686Y27872D01* X22680Y27865D01* X22676Y27858D01* X22673Y27850D01* X22671Y27841D01* X22671Y27833D01* X22672Y27824D01* X22675Y27816D01* X22679Y27808D01* X22685Y27801D01* X22692Y27796D01* X22699Y27791D01* X22707Y27788D01* X22724Y27782D01* Y27217D01* X22712Y27213D01* X22704Y27209D01* X22697Y27205D01* X22690Y27199D01* X22685Y27192D01* X22681Y27184D01* X22678Y27176D01* X22677Y27167D01* X22677Y27159D01* X22679Y27150D01* X22682Y27142D01* X22687Y27135D01* X22693Y27128D01* X22700Y27123D01* X22707Y27119D01* X22716Y27116D01* X22724Y27115D01* Y25883D01* X22721Y25882D01* X22713Y25878D01* X22706Y25872D01* X22700Y25865D01* X22696Y25858D01* X22693Y25850D01* X22691Y25841D01* X22691Y25833D01* X22692Y25824D01* X22695Y25816D01* X22699Y25808D01* X22705Y25801D01* X22712Y25796D01* X22719Y25791D01* X22724Y25789D01* Y25209D01* X22717Y25205D01* X22710Y25199D01* X22705Y25192D01* X22701Y25184D01* X22698Y25176D01* X22697Y25167D01* X22697Y25159D01* X22699Y25150D01* X22702Y25142D01* X22707Y25135D01* X22713Y25128D01* X22720Y25123D01* X22724Y25121D01* Y23870D01* X22720Y23865D01* X22716Y23858D01* X22713Y23850D01* X22711Y23841D01* X22711Y23833D01* X22712Y23824D01* X22715Y23816D01* X22719Y23808D01* X22724Y23802D01* Y23190D01* X22721Y23184D01* X22718Y23176D01* X22717Y23167D01* X22717Y23159D01* X22719Y23150D01* X22722Y23142D01* X22724Y23140D01* Y11861D01* X22722Y11864D01* X22716Y11871D01* X22709Y11876D01* X22702Y11880D01* X22693Y11883D01* X22685Y11884D01* X22676Y11884D01* X22668Y11882D01* X22633Y11870D01* X22601Y11855D01* X22569Y11837D01* X22540Y11816D01* X22512Y11793D01* X22487Y11767D01* X22465Y11740D01* Y13235D01* X22472Y13227D01* X22497Y13202D01* X22525Y13179D01* X22555Y13159D01* X22587Y13141D01* X22620Y13127D01* X22654Y13115D01* X22663Y13113D01* X22672Y13113D01* X22680Y13115D01* X22688Y13117D01* X22696Y13122D01* X22703Y13127D01* X22709Y13134D01* X22713Y13141D01* X22716Y13149D01* X22718Y13158D01* X22718Y13167D01* X22717Y13175D01* X22714Y13183D01* X22710Y13191D01* X22704Y13198D01* X22697Y13204D01* X22690Y13208D01* X22682Y13211D01* X22656Y13220D01* X22631Y13231D01* X22608Y13244D01* X22585Y13259D01* X22564Y13276D01* X22545Y13295D01* X22527Y13316D01* X22512Y13338D01* X22498Y13362D01* X22487Y13386D01* X22478Y13412D01* X22474Y13420D01* X22470Y13427D01* X22465Y13432D01* Y13563D01* X22469Y13567D01* X22473Y13574D01* X22476Y13582D01* X22485Y13608D01* X22496Y13633D01* X22509Y13657D01* X22524Y13679D01* X22541Y13700D01* X22560Y13719D01* X22581Y13737D01* X22603Y13752D01* X22627Y13766D01* X22651Y13777D01* X22677Y13786D01* X22685Y13790D01* X22692Y13794D01* X22699Y13800D01* X22704Y13807D01* X22708Y13815D01* X22711Y13823D01* X22712Y13832D01* X22712Y13840D01* X22710Y13849D01* X22707Y13857D01* X22702Y13864D01* X22696Y13871D01* X22689Y13876D01* X22682Y13880D01* X22673Y13883D01* X22665Y13884D01* X22656Y13884D01* X22648Y13882D01* X22613Y13870D01* X22581Y13855D01* X22549Y13837D01* X22520Y13816D01* X22492Y13793D01* X22467Y13767D01* X22465Y13765D01* Y15214D01* X22477Y15202D01* X22505Y15179D01* X22535Y15159D01* X22567Y15141D01* X22600Y15127D01* X22634Y15115D01* X22643Y15113D01* X22652Y15113D01* X22660Y15115D01* X22668Y15117D01* X22676Y15122D01* X22683Y15127D01* X22689Y15134D01* X22693Y15141D01* X22696Y15149D01* X22698Y15158D01* X22698Y15167D01* X22697Y15175D01* X22694Y15183D01* X22690Y15191D01* X22684Y15198D01* X22677Y15204D01* X22670Y15208D01* X22662Y15211D01* X22636Y15220D01* X22611Y15231D01* X22588Y15244D01* X22565Y15259D01* X22544Y15276D01* X22525Y15295D01* X22507Y15316D01* X22492Y15338D01* X22478Y15362D01* X22467Y15386D01* X22465Y15391D01* Y15609D01* X22476Y15633D01* X22489Y15657D01* X22504Y15679D01* X22521Y15700D01* X22540Y15719D01* X22561Y15737D01* X22583Y15752D01* X22607Y15766D01* X22631Y15777D01* X22657Y15786D01* X22665Y15790D01* X22672Y15794D01* X22679Y15800D01* X22684Y15807D01* X22688Y15815D01* X22691Y15823D01* X22692Y15832D01* X22692Y15840D01* X22690Y15849D01* X22687Y15857D01* X22682Y15864D01* X22676Y15871D01* X22669Y15876D01* X22662Y15880D01* X22653Y15883D01* X22645Y15884D01* X22636Y15884D01* X22628Y15882D01* X22593Y15870D01* X22561Y15855D01* X22529Y15837D01* X22500Y15816D01* X22472Y15793D01* X22465Y15785D01* Y17196D01* X22485Y17179D01* X22515Y17159D01* X22547Y17141D01* X22580Y17127D01* X22614Y17115D01* X22623Y17113D01* X22632Y17113D01* X22640Y17115D01* X22648Y17117D01* X22656Y17122D01* X22663Y17127D01* X22669Y17134D01* X22673Y17141D01* X22676Y17149D01* X22678Y17158D01* X22678Y17167D01* X22677Y17175D01* X22674Y17183D01* X22670Y17191D01* X22664Y17198D01* X22657Y17204D01* X22650Y17208D01* X22642Y17211D01* X22616Y17220D01* X22591Y17231D01* X22568Y17244D01* X22545Y17259D01* X22524Y17276D01* X22505Y17295D01* X22487Y17316D01* X22472Y17338D01* X22465Y17349D01* Y17650D01* X22469Y17657D01* X22484Y17679D01* X22501Y17700D01* X22520Y17719D01* X22541Y17737D01* X22563Y17752D01* X22587Y17766D01* X22611Y17777D01* X22637Y17786D01* X22645Y17790D01* X22652Y17794D01* X22659Y17800D01* X22664Y17807D01* X22668Y17815D01* X22671Y17823D01* X22672Y17832D01* X22672Y17840D01* X22670Y17849D01* X22667Y17857D01* X22662Y17864D01* X22656Y17871D01* X22649Y17876D01* X22642Y17880D01* X22633Y17883D01* X22625Y17884D01* X22616Y17884D01* X22608Y17882D01* X22573Y17870D01* X22541Y17855D01* X22509Y17837D01* X22480Y17816D01* X22465Y17804D01* Y19179D01* X22465Y19179D01* X22495Y19159D01* X22527Y19141D01* X22560Y19127D01* X22594Y19115D01* X22603Y19113D01* X22612Y19113D01* X22620Y19115D01* X22628Y19117D01* X22636Y19122D01* X22643Y19127D01* X22649Y19134D01* X22653Y19141D01* X22656Y19149D01* X22658Y19158D01* X22658Y19167D01* X22657Y19175D01* X22654Y19183D01* X22650Y19191D01* X22644Y19198D01* X22637Y19204D01* X22630Y19208D01* X22622Y19211D01* X22596Y19220D01* X22571Y19231D01* X22548Y19244D01* X22525Y19259D01* X22504Y19276D01* X22485Y19295D01* X22467Y19316D01* X22465Y19319D01* Y19680D01* X22481Y19700D01* X22500Y19719D01* X22521Y19737D01* X22543Y19752D01* X22567Y19766D01* X22591Y19777D01* X22617Y19786D01* X22625Y19790D01* X22632Y19794D01* X22639Y19800D01* X22644Y19807D01* X22648Y19815D01* X22651Y19823D01* X22652Y19832D01* X22652Y19840D01* X22650Y19849D01* X22647Y19857D01* X22642Y19864D01* X22636Y19871D01* X22629Y19876D01* X22622Y19880D01* X22613Y19883D01* X22605Y19884D01* X22596Y19884D01* X22588Y19882D01* X22553Y19870D01* X22521Y19855D01* X22489Y19837D01* X22465Y19820D01* Y21166D01* X22475Y21159D01* X22507Y21141D01* X22540Y21127D01* X22574Y21115D01* X22583Y21113D01* X22592Y21113D01* X22600Y21115D01* X22608Y21117D01* X22616Y21122D01* X22623Y21127D01* X22629Y21134D01* X22633Y21141D01* X22636Y21149D01* X22638Y21158D01* X22638Y21167D01* X22637Y21175D01* X22634Y21183D01* X22630Y21191D01* X22624Y21198D01* X22617Y21204D01* X22610Y21208D01* X22602Y21211D01* X22576Y21220D01* X22551Y21231D01* X22528Y21244D01* X22505Y21259D01* X22484Y21276D01* X22465Y21295D01* Y21704D01* X22480Y21719D01* X22501Y21737D01* X22523Y21752D01* X22547Y21766D01* X22571Y21777D01* X22597Y21786D01* X22605Y21790D01* X22612Y21794D01* X22619Y21800D01* X22624Y21807D01* X22628Y21815D01* X22631Y21823D01* X22632Y21832D01* X22632Y21840D01* X22630Y21849D01* X22627Y21857D01* X22622Y21864D01* X22616Y21871D01* X22609Y21876D01* X22602Y21880D01* X22593Y21883D01* X22585Y21884D01* X22576Y21884D01* X22568Y21882D01* X22533Y21870D01* X22501Y21855D01* X22469Y21837D01* X22465Y21834D01* Y23153D01* X22487Y23141D01* X22520Y23127D01* X22554Y23115D01* X22563Y23113D01* X22572Y23113D01* X22580Y23115D01* X22588Y23117D01* X22596Y23122D01* X22603Y23127D01* X22609Y23134D01* X22613Y23141D01* X22616Y23149D01* X22618Y23158D01* X22618Y23167D01* X22617Y23175D01* X22614Y23183D01* X22610Y23191D01* X22604Y23198D01* X22597Y23204D01* X22590Y23208D01* X22582Y23211D01* X22556Y23220D01* X22531Y23231D01* X22508Y23244D01* X22485Y23259D01* X22465Y23276D01* Y23723D01* X22481Y23737D01* X22503Y23752D01* X22527Y23766D01* X22551Y23777D01* X22577Y23786D01* X22585Y23790D01* X22592Y23794D01* X22599Y23800D01* X22604Y23807D01* X22608Y23815D01* X22611Y23823D01* X22612Y23832D01* X22612Y23840D01* X22610Y23849D01* X22607Y23857D01* X22602Y23864D01* X22596Y23871D01* X22589Y23876D01* X22582Y23880D01* X22573Y23883D01* X22565Y23884D01* X22556Y23884D01* X22548Y23882D01* X22513Y23870D01* X22481Y23855D01* X22465Y23846D01* Y25142D01* X22467Y25141D01* X22500Y25127D01* X22534Y25115D01* X22543Y25113D01* X22552Y25113D01* X22560Y25115D01* X22568Y25117D01* X22576Y25122D01* X22583Y25127D01* X22589Y25134D01* X22593Y25141D01* X22596Y25149D01* X22598Y25158D01* X22598Y25167D01* X22597Y25175D01* X22594Y25183D01* X22590Y25191D01* X22584Y25198D01* X22577Y25204D01* X22570Y25208D01* X22562Y25211D01* X22536Y25220D01* X22511Y25231D01* X22488Y25244D01* X22465Y25259D01* Y25740D01* X22483Y25752D01* X22507Y25766D01* X22531Y25777D01* X22557Y25786D01* X22565Y25790D01* X22572Y25794D01* X22579Y25800D01* X22584Y25807D01* X22588Y25815D01* X22591Y25823D01* X22592Y25832D01* X22592Y25840D01* X22590Y25849D01* X22587Y25857D01* X22582Y25864D01* X22576Y25871D01* X22569Y25876D01* X22562Y25880D01* X22553Y25883D01* X22545Y25884D01* X22536Y25884D01* X22528Y25882D01* X22493Y25870D01* X22465Y25857D01* Y27133D01* X22480Y27127D01* X22514Y27115D01* X22523Y27113D01* X22532Y27113D01* X22540Y27115D01* X22548Y27117D01* X22556Y27122D01* X22563Y27127D01* X22569Y27134D01* X22573Y27141D01* X22576Y27149D01* X22578Y27158D01* X22578Y27167D01* X22577Y27175D01* X22574Y27183D01* X22570Y27191D01* X22564Y27198D01* X22557Y27204D01* X22550Y27208D01* X22542Y27211D01* X22516Y27220D01* X22491Y27231D01* X22468Y27244D01* X22465Y27246D01* Y27754D01* X22487Y27766D01* X22511Y27777D01* X22537Y27786D01* X22545Y27790D01* X22552Y27794D01* X22559Y27800D01* X22564Y27807D01* X22568Y27815D01* X22571Y27823D01* X22572Y27832D01* X22572Y27840D01* X22570Y27849D01* X22567Y27857D01* X22562Y27864D01* X22556Y27871D01* X22549Y27876D01* X22542Y27880D01* X22533Y27883D01* X22525Y27884D01* X22516Y27884D01* X22508Y27882D01* X22473Y27870D01* X22465Y27866D01* Y29125D01* X22494Y29115D01* X22503Y29113D01* X22512Y29113D01* X22520Y29115D01* X22528Y29117D01* X22536Y29122D01* X22543Y29127D01* X22549Y29134D01* X22553Y29141D01* X22556Y29149D01* X22558Y29158D01* X22558Y29167D01* X22557Y29175D01* X22554Y29183D01* X22550Y29191D01* X22544Y29198D01* X22537Y29204D01* X22530Y29208D01* X22522Y29211D01* X22496Y29220D01* X22471Y29231D01* X22465Y29234D01* Y29765D01* X22467Y29766D01* X22491Y29777D01* X22517Y29786D01* X22525Y29790D01* X22532Y29794D01* X22539Y29800D01* X22544Y29807D01* X22548Y29815D01* X22551Y29823D01* X22552Y29832D01* X22552Y29840D01* X22550Y29849D01* X22547Y29857D01* X22542Y29864D01* X22536Y29871D01* X22529Y29876D01* X22522Y29880D01* X22513Y29883D01* X22505Y29884D01* X22496Y29884D01* X22488Y29882D01* X22465Y29874D01* Y31118D01* X22474Y31115D01* X22483Y31113D01* X22492Y31113D01* X22500Y31115D01* X22508Y31117D01* X22516Y31122D01* X22523Y31127D01* X22529Y31134D01* X22533Y31141D01* X22536Y31149D01* X22538Y31158D01* X22538Y31167D01* X22537Y31175D01* X22534Y31183D01* X22530Y31191D01* X22524Y31198D01* X22517Y31204D01* X22510Y31208D01* X22502Y31211D01* X22476Y31220D01* X22465Y31225D01* Y31775D01* X22471Y31777D01* X22497Y31786D01* X22505Y31790D01* X22512Y31794D01* X22519Y31800D01* X22524Y31807D01* X22528Y31815D01* X22531Y31823D01* X22532Y31832D01* X22532Y31840D01* X22530Y31849D01* X22527Y31857D01* X22522Y31864D01* X22516Y31871D01* X22509Y31876D01* X22502Y31880D01* X22493Y31883D01* X22485Y31884D01* X22476Y31884D01* X22468Y31882D01* X22465Y31881D01* Y33113D01* X22472Y33113D01* X22480Y33115D01* X22488Y33117D01* X22496Y33122D01* X22503Y33127D01* X22509Y33134D01* X22513Y33141D01* X22516Y33149D01* X22518Y33158D01* X22518Y33167D01* X22517Y33175D01* X22514Y33183D01* X22510Y33191D01* X22504Y33198D01* X22497Y33204D01* X22490Y33208D01* X22482Y33211D01* X22465Y33217D01* Y33782D01* X22477Y33786D01* X22485Y33790D01* X22492Y33794D01* X22499Y33800D01* X22504Y33807D01* X22508Y33815D01* X22511Y33823D01* X22512Y33832D01* X22512Y33840D01* X22510Y33849D01* X22507Y33857D01* X22502Y33864D01* X22496Y33871D01* X22489Y33876D01* X22482Y33880D01* X22473Y33883D01* X22465Y33884D01* Y35116D01* X22468Y35117D01* X22476Y35122D01* X22483Y35127D01* X22489Y35134D01* X22493Y35141D01* X22496Y35149D01* X22498Y35158D01* X22498Y35167D01* X22497Y35175D01* X22494Y35183D01* X22490Y35191D01* X22484Y35198D01* X22477Y35204D01* X22470Y35208D01* X22465Y35210D01* Y35790D01* X22472Y35794D01* X22479Y35800D01* X22484Y35807D01* X22488Y35815D01* X22491Y35823D01* X22492Y35832D01* X22492Y35840D01* X22490Y35849D01* X22487Y35857D01* X22482Y35864D01* X22476Y35871D01* X22469Y35876D01* X22465Y35878D01* Y37130D01* X22469Y37134D01* X22473Y37141D01* X22476Y37149D01* X22478Y37158D01* X22478Y37167D01* X22477Y37175D01* X22474Y37183D01* X22470Y37191D01* X22465Y37197D01* Y37809D01* X22468Y37815D01* X22471Y37823D01* X22472Y37832D01* X22472Y37840D01* X22470Y37849D01* X22467Y37857D01* X22465Y37859D01* Y40000D01* G37* G36* Y11549D02*X22468Y11550D01* X22476Y11555D01* X22483Y11560D01* X22489Y11567D01* X22493Y11574D01* X22496Y11582D01* X22505Y11608D01* X22516Y11633D01* X22529Y11657D01* X22544Y11679D01* X22561Y11700D01* X22580Y11719D01* X22601Y11737D01* X22623Y11752D01* X22647Y11766D01* X22671Y11777D01* X22697Y11786D01* X22705Y11790D01* X22712Y11794D01* X22719Y11800D01* X22724Y11807D01* Y11198D01* X22717Y11204D01* X22710Y11208D01* X22702Y11211D01* X22676Y11220D01* X22651Y11231D01* X22628Y11244D01* X22605Y11259D01* X22584Y11276D01* X22565Y11295D01* X22547Y11316D01* X22532Y11338D01* X22518Y11362D01* X22507Y11386D01* X22498Y11412D01* X22494Y11420D01* X22490Y11427D01* X22484Y11434D01* X22477Y11439D01* X22469Y11443D01* X22465Y11445D01* Y11549D01* G37* G36* Y11259D02*X22468Y11255D01* X22492Y11227D01* X22517Y11202D01* X22545Y11179D01* X22575Y11159D01* X22607Y11141D01* X22640Y11127D01* X22674Y11115D01* X22683Y11113D01* X22692Y11113D01* X22700Y11115D01* X22708Y11117D01* X22716Y11122D01* X22723Y11127D01* X22724Y11128D01* Y9879D01* X22722Y9880D01* X22713Y9883D01* X22705Y9884D01* X22696Y9884D01* X22688Y9882D01* X22653Y9870D01* X22621Y9855D01* X22589Y9837D01* X22560Y9816D01* X22532Y9793D01* X22507Y9767D01* X22484Y9739D01* X22465Y9711D01* Y11259D01* G37* G36* Y9546D02*X22472Y9546D01* X22480Y9547D01* X22488Y9550D01* X22496Y9555D01* X22503Y9560D01* X22509Y9567D01* X22513Y9574D01* X22516Y9582D01* X22525Y9608D01* X22536Y9633D01* X22549Y9657D01* X22564Y9679D01* X22581Y9700D01* X22600Y9719D01* X22621Y9737D01* X22643Y9752D01* X22667Y9766D01* X22691Y9777D01* X22717Y9786D01* X22724Y9789D01* Y9210D01* X22722Y9211D01* X22696Y9220D01* X22671Y9231D01* X22648Y9244D01* X22625Y9259D01* X22604Y9276D01* X22585Y9295D01* X22567Y9316D01* X22552Y9338D01* X22538Y9362D01* X22527Y9386D01* X22518Y9412D01* X22514Y9420D01* X22510Y9427D01* X22504Y9434D01* X22497Y9439D01* X22489Y9443D01* X22481Y9446D01* X22472Y9447D01* X22465Y9447D01* Y9546D01* G37* G36* Y9288D02*X22467Y9284D01* X22488Y9255D01* X22512Y9227D01* X22537Y9202D01* X22565Y9179D01* X22595Y9159D01* X22627Y9141D01* X22660Y9127D01* X22694Y9115D01* X22703Y9113D01* X22712Y9113D01* X22720Y9115D01* X22724Y9116D01* Y7884D01* X22716Y7884D01* X22708Y7882D01* X22673Y7870D01* X22641Y7855D01* X22609Y7837D01* X22580Y7816D01* X22552Y7793D01* X22527Y7767D01* X22504Y7739D01* X22484Y7709D01* X22466Y7677D01* X22465Y7675D01* Y9288D01* G37* G36* Y7552D02*X22466Y7551D01* X22474Y7548D01* X22483Y7546D01* X22492Y7546D01* X22500Y7547D01* X22508Y7550D01* X22516Y7555D01* X22523Y7560D01* X22529Y7567D01* X22533Y7574D01* X22536Y7582D01* X22545Y7608D01* X22556Y7633D01* X22569Y7657D01* X22584Y7679D01* X22601Y7700D01* X22620Y7719D01* X22641Y7737D01* X22663Y7752D01* X22687Y7766D01* X22711Y7777D01* X22724Y7782D01* Y7217D01* X22716Y7220D01* X22691Y7231D01* X22668Y7244D01* X22645Y7259D01* X22624Y7276D01* X22605Y7295D01* X22587Y7316D01* X22572Y7338D01* X22558Y7362D01* X22547Y7386D01* X22538Y7412D01* X22534Y7420D01* X22530Y7427D01* X22524Y7434D01* X22517Y7439D01* X22509Y7443D01* X22501Y7446D01* X22492Y7447D01* X22484Y7447D01* X22475Y7445D01* X22467Y7442D01* X22465Y7441D01* Y7552D01* G37* G36* Y7325D02*X22469Y7316D01* X22487Y7284D01* X22508Y7255D01* X22532Y7227D01* X22557Y7202D01* X22585Y7179D01* X22615Y7159D01* X22647Y7141D01* X22680Y7127D01* X22714Y7115D01* X22723Y7113D01* X22724D01* Y5881D01* X22693Y5870D01* X22661Y5855D01* X22629Y5837D01* X22600Y5816D01* X22572Y5793D01* X22547Y5767D01* X22524Y5739D01* X22504Y5709D01* X22486Y5677D01* X22472Y5644D01* X22465Y5625D01* Y7325D01* G37* G36* Y5571D02*X22467Y5568D01* X22472Y5561D01* X22479Y5556D01* X22486Y5551D01* X22494Y5548D01* X22503Y5546D01* X22512Y5546D01* X22520Y5547D01* X22528Y5550D01* X22536Y5555D01* X22543Y5560D01* X22549Y5567D01* X22553Y5574D01* X22556Y5582D01* X22565Y5608D01* X22576Y5633D01* X22589Y5657D01* X22604Y5679D01* X22621Y5700D01* X22640Y5719D01* X22661Y5737D01* X22683Y5752D01* X22707Y5766D01* X22724Y5774D01* Y5225D01* X22711Y5231D01* X22688Y5244D01* X22665Y5259D01* X22644Y5276D01* X22625Y5295D01* X22607Y5316D01* X22592Y5338D01* X22578Y5362D01* X22567Y5386D01* X22558Y5412D01* X22554Y5420D01* X22550Y5427D01* X22544Y5434D01* X22537Y5439D01* X22529Y5443D01* X22521Y5446D01* X22512Y5447D01* X22504Y5447D01* X22495Y5445D01* X22487Y5442D01* X22480Y5437D01* X22473Y5431D01* X22468Y5424D01* X22465Y5419D01* Y5571D01* G37* G36* Y5374D02*X22474Y5349D01* X22489Y5316D01* X22507Y5284D01* X22528Y5255D01* X22552Y5227D01* X22577Y5202D01* X22605Y5179D01* X22635Y5159D01* X22667Y5141D01* X22700Y5127D01* X22724Y5119D01* Y3874D01* X22713Y3870D01* X22681Y3855D01* X22649Y3837D01* X22620Y3816D01* X22592Y3793D01* X22567Y3767D01* X22544Y3739D01* X22524Y3709D01* X22506Y3677D01* X22492Y3644D01* X22480Y3610D01* X22478Y3601D01* X22478Y3593D01* X22479Y3584D01* X22482Y3576D01* X22487Y3568D01* X22492Y3561D01* X22499Y3556D01* X22506Y3551D01* X22514Y3548D01* X22523Y3546D01* X22532Y3546D01* X22540Y3547D01* X22548Y3550D01* X22556Y3555D01* X22563Y3560D01* X22569Y3567D01* X22573Y3574D01* X22576Y3582D01* X22585Y3608D01* X22596Y3633D01* X22609Y3657D01* X22624Y3679D01* X22641Y3700D01* X22660Y3719D01* X22681Y3737D01* X22703Y3752D01* X22724Y3764D01* Y3235D01* X22708Y3244D01* X22685Y3259D01* X22664Y3276D01* X22645Y3295D01* X22627Y3316D01* X22612Y3338D01* X22598Y3362D01* X22587Y3386D01* X22578Y3412D01* X22574Y3420D01* X22570Y3427D01* X22564Y3434D01* X22557Y3439D01* X22549Y3443D01* X22541Y3446D01* X22532Y3447D01* X22524Y3447D01* X22515Y3445D01* X22507Y3442D01* X22500Y3437D01* X22493Y3431D01* X22488Y3424D01* X22484Y3417D01* X22481Y3409D01* X22480Y3400D01* X22480Y3391D01* X22482Y3383D01* X22494Y3349D01* X22509Y3316D01* X22527Y3284D01* X22548Y3255D01* X22572Y3227D01* X22597Y3202D01* X22625Y3179D01* X22655Y3159D01* X22687Y3141D01* X22720Y3127D01* X22724Y3125D01* Y1866D01* X22701Y1855D01* X22669Y1837D01* X22640Y1816D01* X22612Y1793D01* X22587Y1767D01* X22564Y1739D01* X22544Y1709D01* X22526Y1677D01* X22512Y1644D01* X22500Y1610D01* X22498Y1601D01* X22498Y1593D01* X22499Y1584D01* X22502Y1576D01* X22507Y1568D01* X22512Y1561D01* X22519Y1556D01* X22526Y1551D01* X22534Y1548D01* X22543Y1546D01* X22552Y1546D01* X22560Y1547D01* X22568Y1550D01* X22576Y1555D01* X22583Y1560D01* X22589Y1567D01* X22593Y1574D01* X22596Y1582D01* X22605Y1608D01* X22616Y1633D01* X22629Y1657D01* X22644Y1679D01* X22661Y1700D01* X22680Y1719D01* X22701Y1737D01* X22723Y1752D01* X22724Y1753D01* Y1246D01* X22705Y1259D01* X22684Y1276D01* X22665Y1295D01* X22647Y1316D01* X22632Y1338D01* X22618Y1362D01* X22607Y1386D01* X22598Y1412D01* X22594Y1420D01* X22590Y1427D01* X22584Y1434D01* X22577Y1439D01* X22569Y1443D01* X22561Y1446D01* X22552Y1447D01* X22544Y1447D01* X22535Y1445D01* X22527Y1442D01* X22520Y1437D01* X22513Y1431D01* X22508Y1424D01* X22504Y1417D01* X22501Y1409D01* X22500Y1400D01* X22500Y1391D01* X22502Y1383D01* X22514Y1349D01* X22529Y1316D01* X22547Y1284D01* X22568Y1255D01* X22592Y1227D01* X22617Y1202D01* X22645Y1179D01* X22675Y1159D01* X22707Y1141D01* X22724Y1134D01* Y0D01* X22465D01* Y5374D01* G37* G36* X22724Y40000D02*X22904D01* Y37625D01* X22895Y37651D01* X22880Y37683D01* X22862Y37715D01* X22841Y37744D01* X22817Y37772D01* X22792Y37797D01* X22764Y37820D01* X22734Y37840D01* X22724Y37846D01* Y39165D01* X22749Y39183D01* X22777Y39207D01* X22802Y39232D01* X22825Y39260D01* X22845Y39290D01* X22863Y39322D01* X22877Y39355D01* X22889Y39389D01* X22891Y39398D01* X22891Y39407D01* X22890Y39415D01* X22887Y39423D01* X22882Y39431D01* X22877Y39438D01* X22870Y39444D01* X22863Y39448D01* X22855Y39451D01* X22846Y39453D01* X22837Y39453D01* X22829Y39452D01* X22821Y39449D01* X22813Y39445D01* X22806Y39439D01* X22800Y39433D01* X22796Y39425D01* X22793Y39417D01* X22784Y39391D01* X22773Y39366D01* X22760Y39343D01* X22745Y39320D01* X22728Y39299D01* X22724Y39295D01* Y39704D01* X22724Y39704D01* X22742Y39683D01* X22757Y39661D01* X22771Y39637D01* X22782Y39613D01* X22791Y39587D01* X22795Y39579D01* X22799Y39572D01* X22805Y39565D01* X22812Y39560D01* X22820Y39556D01* X22828Y39553D01* X22837Y39552D01* X22845Y39552D01* X22854Y39554D01* X22862Y39557D01* X22869Y39562D01* X22876Y39568D01* X22881Y39575D01* X22885Y39582D01* X22888Y39591D01* X22889Y39599D01* X22889Y39608D01* X22887Y39617D01* X22875Y39651D01* X22860Y39683D01* X22842Y39715D01* X22821Y39744D01* X22797Y39772D01* X22772Y39797D01* X22744Y39820D01* X22724Y39834D01* Y40000D01* G37* G36* X22904Y0D02*X22724D01* Y1134D01* X22740Y1127D01* X22774Y1115D01* X22783Y1113D01* X22792Y1113D01* X22800Y1115D01* X22808Y1117D01* X22816Y1122D01* X22823Y1127D01* X22829Y1134D01* X22833Y1141D01* X22836Y1149D01* X22838Y1158D01* X22838Y1167D01* X22837Y1175D01* X22834Y1183D01* X22830Y1191D01* X22824Y1198D01* X22817Y1204D01* X22810Y1208D01* X22802Y1211D01* X22776Y1220D01* X22751Y1231D01* X22728Y1244D01* X22724Y1246D01* Y1753D01* X22747Y1766D01* X22771Y1777D01* X22797Y1786D01* X22805Y1790D01* X22812Y1794D01* X22819Y1800D01* X22824Y1807D01* X22828Y1815D01* X22831Y1823D01* X22832Y1832D01* X22832Y1840D01* X22830Y1849D01* X22827Y1857D01* X22822Y1864D01* X22816Y1871D01* X22809Y1876D01* X22802Y1880D01* X22793Y1883D01* X22785Y1884D01* X22776Y1884D01* X22768Y1882D01* X22733Y1870D01* X22724Y1866D01* Y3125D01* X22754Y3115D01* X22763Y3113D01* X22772Y3113D01* X22780Y3115D01* X22788Y3117D01* X22796Y3122D01* X22803Y3127D01* X22809Y3134D01* X22813Y3141D01* X22816Y3149D01* X22818Y3158D01* X22818Y3167D01* X22817Y3175D01* X22814Y3183D01* X22810Y3191D01* X22804Y3198D01* X22797Y3204D01* X22790Y3208D01* X22782Y3211D01* X22756Y3220D01* X22731Y3231D01* X22724Y3235D01* Y3764D01* X22727Y3766D01* X22751Y3777D01* X22777Y3786D01* X22785Y3790D01* X22792Y3794D01* X22799Y3800D01* X22804Y3807D01* X22808Y3815D01* X22811Y3823D01* X22812Y3832D01* X22812Y3840D01* X22810Y3849D01* X22807Y3857D01* X22802Y3864D01* X22796Y3871D01* X22789Y3876D01* X22782Y3880D01* X22773Y3883D01* X22765Y3884D01* X22756Y3884D01* X22748Y3882D01* X22724Y3874D01* Y5119D01* X22734Y5115D01* X22743Y5113D01* X22752Y5113D01* X22760Y5115D01* X22768Y5117D01* X22776Y5122D01* X22783Y5127D01* X22789Y5134D01* X22793Y5141D01* X22796Y5149D01* X22798Y5158D01* X22798Y5167D01* X22797Y5175D01* X22794Y5183D01* X22790Y5191D01* X22784Y5198D01* X22777Y5204D01* X22770Y5208D01* X22762Y5211D01* X22736Y5220D01* X22724Y5225D01* Y5774D01* X22731Y5777D01* X22757Y5786D01* X22765Y5790D01* X22772Y5794D01* X22779Y5800D01* X22784Y5807D01* X22788Y5815D01* X22791Y5823D01* X22792Y5832D01* X22792Y5840D01* X22790Y5849D01* X22787Y5857D01* X22782Y5864D01* X22776Y5871D01* X22769Y5876D01* X22762Y5880D01* X22753Y5883D01* X22745Y5884D01* X22736Y5884D01* X22728Y5882D01* X22724Y5881D01* Y7113D01* X22732Y7113D01* X22740Y7115D01* X22748Y7117D01* X22756Y7122D01* X22763Y7127D01* X22769Y7134D01* X22773Y7141D01* X22776Y7149D01* X22778Y7158D01* X22778Y7167D01* X22777Y7175D01* X22774Y7183D01* X22770Y7191D01* X22764Y7198D01* X22757Y7204D01* X22750Y7208D01* X22742Y7211D01* X22724Y7217D01* Y7782D01* X22737Y7786D01* X22745Y7790D01* X22752Y7794D01* X22759Y7800D01* X22764Y7807D01* X22768Y7815D01* X22771Y7823D01* X22772Y7832D01* X22772Y7840D01* X22770Y7849D01* X22767Y7857D01* X22762Y7864D01* X22756Y7871D01* X22749Y7876D01* X22742Y7880D01* X22733Y7883D01* X22725Y7884D01* X22724D01* Y9116D01* X22728Y9117D01* X22736Y9122D01* X22743Y9127D01* X22749Y9134D01* X22753Y9141D01* X22756Y9149D01* X22758Y9158D01* X22758Y9167D01* X22757Y9175D01* X22754Y9183D01* X22750Y9191D01* X22744Y9198D01* X22737Y9204D01* X22730Y9208D01* X22724Y9210D01* Y9789D01* X22725Y9790D01* X22732Y9794D01* X22739Y9800D01* X22744Y9807D01* X22748Y9815D01* X22751Y9823D01* X22752Y9832D01* X22752Y9840D01* X22750Y9849D01* X22747Y9857D01* X22742Y9864D01* X22736Y9871D01* X22729Y9876D01* X22724Y9879D01* Y11128D01* X22729Y11134D01* X22733Y11141D01* X22736Y11149D01* X22738Y11158D01* X22738Y11167D01* X22737Y11175D01* X22734Y11183D01* X22730Y11191D01* X22724Y11198D01* X22724Y11198D01* Y11807D01* X22724Y11807D01* X22728Y11815D01* X22731Y11823D01* X22732Y11832D01* X22732Y11840D01* X22730Y11849D01* X22727Y11857D01* X22724Y11861D01* Y23140D01* X22727Y23135D01* X22733Y23128D01* X22740Y23123D01* X22747Y23119D01* X22756Y23116D01* X22764Y23115D01* X22773Y23115D01* X22781Y23117D01* X22816Y23129D01* X22848Y23144D01* X22880Y23162D01* X22904Y23180D01* Y21834D01* X22894Y21840D01* X22862Y21858D01* X22829Y21873D01* X22795Y21884D01* X22786Y21886D01* X22777Y21886D01* X22769Y21885D01* X22761Y21882D01* X22753Y21878D01* X22746Y21872D01* X22740Y21865D01* X22736Y21858D01* X22733Y21850D01* X22731Y21841D01* X22731Y21833D01* X22732Y21824D01* X22735Y21816D01* X22739Y21808D01* X22745Y21801D01* X22752Y21796D01* X22759Y21791D01* X22767Y21788D01* X22793Y21779D01* X22818Y21768D01* X22841Y21755D01* X22864Y21740D01* X22885Y21723D01* X22904Y21704D01* Y21295D01* X22889Y21280D01* X22868Y21262D01* X22846Y21247D01* X22822Y21233D01* X22798Y21222D01* X22772Y21213D01* X22764Y21209D01* X22757Y21205D01* X22750Y21199D01* X22745Y21192D01* X22741Y21184D01* X22738Y21176D01* X22737Y21167D01* X22737Y21159D01* X22739Y21150D01* X22742Y21142D01* X22747Y21135D01* X22753Y21128D01* X22760Y21123D01* X22767Y21119D01* X22776Y21116D01* X22784Y21115D01* X22793Y21115D01* X22801Y21117D01* X22836Y21129D01* X22868Y21144D01* X22900Y21162D01* X22904Y21165D01* Y19846D01* X22882Y19858D01* X22849Y19873D01* X22815Y19884D01* X22806Y19886D01* X22797Y19886D01* X22789Y19885D01* X22781Y19882D01* X22773Y19878D01* X22766Y19872D01* X22760Y19865D01* X22756Y19858D01* X22753Y19850D01* X22751Y19841D01* X22751Y19833D01* X22752Y19824D01* X22755Y19816D01* X22759Y19808D01* X22765Y19801D01* X22772Y19796D01* X22779Y19791D01* X22787Y19788D01* X22813Y19779D01* X22838Y19768D01* X22861Y19755D01* X22884Y19740D01* X22904Y19724D01* Y19276D01* X22888Y19262D01* X22866Y19247D01* X22842Y19233D01* X22818Y19222D01* X22792Y19213D01* X22784Y19209D01* X22777Y19205D01* X22770Y19199D01* X22765Y19192D01* X22761Y19184D01* X22758Y19176D01* X22757Y19167D01* X22757Y19159D01* X22759Y19150D01* X22762Y19142D01* X22767Y19135D01* X22773Y19128D01* X22780Y19123D01* X22787Y19119D01* X22796Y19116D01* X22804Y19115D01* X22813Y19115D01* X22821Y19117D01* X22856Y19129D01* X22888Y19144D01* X22904Y19153D01* Y17857D01* X22902Y17858D01* X22869Y17873D01* X22835Y17884D01* X22826Y17886D01* X22817Y17886D01* X22809Y17885D01* X22801Y17882D01* X22793Y17878D01* X22786Y17872D01* X22780Y17865D01* X22776Y17858D01* X22773Y17850D01* X22771Y17841D01* X22771Y17833D01* X22772Y17824D01* X22775Y17816D01* X22779Y17808D01* X22785Y17801D01* X22792Y17796D01* X22799Y17791D01* X22807Y17788D01* X22833Y17779D01* X22858Y17768D01* X22881Y17755D01* X22904Y17740D01* Y17259D01* X22886Y17247D01* X22862Y17233D01* X22838Y17222D01* X22812Y17213D01* X22804Y17209D01* X22797Y17205D01* X22790Y17199D01* X22785Y17192D01* X22781Y17184D01* X22778Y17176D01* X22777Y17167D01* X22777Y17159D01* X22779Y17150D01* X22782Y17142D01* X22787Y17135D01* X22793Y17128D01* X22800Y17123D01* X22807Y17119D01* X22816Y17116D01* X22824Y17115D01* X22833Y17115D01* X22841Y17117D01* X22876Y17129D01* X22904Y17142D01* Y15866D01* X22889Y15873D01* X22855Y15884D01* X22846Y15886D01* X22837Y15886D01* X22829Y15885D01* X22821Y15882D01* X22813Y15878D01* X22806Y15872D01* X22800Y15865D01* X22796Y15858D01* X22793Y15850D01* X22791Y15841D01* X22791Y15833D01* X22792Y15824D01* X22795Y15816D01* X22799Y15808D01* X22805Y15801D01* X22812Y15796D01* X22819Y15791D01* X22827Y15788D01* X22853Y15779D01* X22878Y15768D01* X22901Y15755D01* X22904Y15754D01* Y15246D01* X22882Y15233D01* X22858Y15222D01* X22832Y15213D01* X22824Y15209D01* X22817Y15205D01* X22810Y15199D01* X22805Y15192D01* X22801Y15184D01* X22798Y15176D01* X22797Y15167D01* X22797Y15159D01* X22799Y15150D01* X22802Y15142D01* X22807Y15135D01* X22813Y15128D01* X22820Y15123D01* X22827Y15119D01* X22836Y15116D01* X22844Y15115D01* X22853Y15115D01* X22861Y15117D01* X22896Y15129D01* X22904Y15133D01* Y13874D01* X22875Y13884D01* X22866Y13886D01* X22857Y13886D01* X22849Y13885D01* X22841Y13882D01* X22833Y13878D01* X22826Y13872D01* X22820Y13865D01* X22816Y13858D01* X22813Y13850D01* X22811Y13841D01* X22811Y13833D01* X22812Y13824D01* X22815Y13816D01* X22819Y13808D01* X22825Y13801D01* X22832Y13796D01* X22839Y13791D01* X22847Y13788D01* X22873Y13779D01* X22898Y13768D01* X22904Y13765D01* Y13234D01* X22902Y13233D01* X22878Y13222D01* X22852Y13213D01* X22844Y13209D01* X22837Y13205D01* X22830Y13199D01* X22825Y13192D01* X22821Y13184D01* X22818Y13176D01* X22817Y13167D01* X22817Y13159D01* X22819Y13150D01* X22822Y13142D01* X22827Y13135D01* X22833Y13128D01* X22840Y13123D01* X22847Y13119D01* X22856Y13116D01* X22864Y13115D01* X22873Y13115D01* X22881Y13117D01* X22904Y13125D01* Y11881D01* X22895Y11884D01* X22886Y11886D01* X22877Y11886D01* X22869Y11885D01* X22861Y11882D01* X22853Y11878D01* X22846Y11872D01* X22840Y11865D01* X22836Y11858D01* X22833Y11850D01* X22831Y11841D01* X22831Y11833D01* X22832Y11824D01* X22835Y11816D01* X22839Y11808D01* X22845Y11801D01* X22852Y11796D01* X22859Y11791D01* X22867Y11788D01* X22893Y11779D01* X22904Y11774D01* Y11225D01* X22898Y11222D01* X22872Y11213D01* X22864Y11209D01* X22857Y11205D01* X22850Y11199D01* X22845Y11192D01* X22841Y11184D01* X22838Y11176D01* X22837Y11167D01* X22837Y11159D01* X22839Y11150D01* X22842Y11142D01* X22847Y11135D01* X22853Y11128D01* X22860Y11123D01* X22867Y11119D01* X22876Y11116D01* X22884Y11115D01* X22893Y11115D01* X22901Y11117D01* X22904Y11118D01* Y9886D01* X22897Y9886D01* X22889Y9885D01* X22881Y9882D01* X22873Y9878D01* X22866Y9872D01* X22860Y9865D01* X22856Y9858D01* X22853Y9850D01* X22851Y9841D01* X22851Y9833D01* X22852Y9824D01* X22855Y9816D01* X22859Y9808D01* X22865Y9801D01* X22872Y9796D01* X22879Y9791D01* X22887Y9788D01* X22904Y9782D01* Y9217D01* X22892Y9213D01* X22884Y9209D01* X22877Y9205D01* X22870Y9199D01* X22865Y9192D01* X22861Y9184D01* X22858Y9176D01* X22857Y9167D01* X22857Y9159D01* X22859Y9150D01* X22862Y9142D01* X22867Y9135D01* X22873Y9128D01* X22880Y9123D01* X22887Y9119D01* X22896Y9116D01* X22904Y9115D01* Y7883D01* X22901Y7882D01* X22893Y7878D01* X22886Y7872D01* X22880Y7865D01* X22876Y7858D01* X22873Y7850D01* X22871Y7841D01* X22871Y7833D01* X22872Y7824D01* X22875Y7816D01* X22879Y7808D01* X22885Y7801D01* X22892Y7796D01* X22899Y7791D01* X22904Y7789D01* Y7209D01* X22897Y7205D01* X22890Y7199D01* X22885Y7192D01* X22881Y7184D01* X22878Y7176D01* X22877Y7167D01* X22877Y7159D01* X22879Y7150D01* X22882Y7142D01* X22887Y7135D01* X22893Y7128D01* X22900Y7123D01* X22904Y7121D01* Y5870D01* X22900Y5865D01* X22896Y5858D01* X22893Y5850D01* X22891Y5841D01* X22891Y5833D01* X22892Y5824D01* X22895Y5816D01* X22899Y5808D01* X22904Y5802D01* Y5190D01* X22901Y5184D01* X22898Y5176D01* X22897Y5167D01* X22897Y5159D01* X22899Y5150D01* X22902Y5142D01* X22904Y5140D01* Y0D01* G37* G36* Y23319D02*X22888Y23299D01* X22869Y23280D01* X22848Y23262D01* X22826Y23247D01* X22802Y23233D01* X22778Y23222D01* X22752Y23213D01* X22744Y23209D01* X22737Y23205D01* X22730Y23199D01* X22725Y23192D01* X22724Y23190D01* Y23802D01* X22725Y23801D01* X22732Y23796D01* X22739Y23791D01* X22747Y23788D01* X22773Y23779D01* X22798Y23768D01* X22821Y23755D01* X22844Y23740D01* X22865Y23723D01* X22884Y23704D01* X22902Y23683D01* X22904Y23680D01* Y23319D01* G37* G36* Y23820D02*X22904Y23820D01* X22874Y23840D01* X22842Y23858D01* X22809Y23873D01* X22775Y23884D01* X22766Y23886D01* X22757Y23886D01* X22749Y23885D01* X22741Y23882D01* X22733Y23878D01* X22726Y23872D01* X22724Y23870D01* Y25121D01* X22727Y25119D01* X22736Y25116D01* X22744Y25115D01* X22753Y25115D01* X22761Y25117D01* X22796Y25129D01* X22828Y25144D01* X22860Y25162D01* X22889Y25183D01* X22904Y25196D01* Y23820D01* G37* G36* Y25350D02*X22900Y25343D01* X22885Y25320D01* X22868Y25299D01* X22849Y25280D01* X22828Y25262D01* X22806Y25247D01* X22782Y25233D01* X22758Y25222D01* X22732Y25213D01* X22724Y25209D01* X22724Y25209D01* Y25789D01* X22727Y25788D01* X22753Y25779D01* X22778Y25768D01* X22801Y25755D01* X22824Y25740D01* X22845Y25723D01* X22864Y25704D01* X22882Y25683D01* X22897Y25661D01* X22904Y25650D01* Y25350D01* G37* G36* Y25804D02*X22884Y25820D01* X22854Y25840D01* X22822Y25858D01* X22789Y25873D01* X22755Y25884D01* X22746Y25886D01* X22737Y25886D01* X22729Y25885D01* X22724Y25883D01* Y27115D01* X22724D01* X22733Y27115D01* X22741Y27117D01* X22776Y27129D01* X22808Y27144D01* X22840Y27162D01* X22869Y27183D01* X22897Y27207D01* X22904Y27214D01* Y25804D01* G37* G36* Y27391D02*X22893Y27366D01* X22880Y27343D01* X22865Y27320D01* X22848Y27299D01* X22829Y27280D01* X22808Y27262D01* X22786Y27247D01* X22762Y27233D01* X22738Y27222D01* X22724Y27217D01* Y27782D01* X22733Y27779D01* X22758Y27768D01* X22781Y27755D01* X22804Y27740D01* X22825Y27723D01* X22844Y27704D01* X22862Y27683D01* X22877Y27661D01* X22891Y27637D01* X22902Y27613D01* X22904Y27608D01* Y27391D01* G37* G36* Y27785D02*X22892Y27797D01* X22864Y27820D01* X22834Y27840D01* X22802Y27858D01* X22769Y27873D01* X22735Y27884D01* X22726Y27886D01* X22724D01* Y29118D01* X22756Y29129D01* X22788Y29144D01* X22820Y29162D01* X22849Y29183D01* X22877Y29207D01* X22902Y29232D01* X22904Y29235D01* Y27785D01* G37* G36* Y29437D02*X22900Y29433D01* X22896Y29425D01* X22893Y29417D01* X22884Y29391D01* X22873Y29366D01* X22860Y29343D01* X22845Y29320D01* X22828Y29299D01* X22809Y29280D01* X22788Y29262D01* X22766Y29247D01* X22742Y29233D01* X22724Y29225D01* Y29774D01* X22738Y29768D01* X22761Y29755D01* X22784Y29740D01* X22805Y29723D01* X22824Y29704D01* X22842Y29683D01* X22857Y29661D01* X22871Y29637D01* X22882Y29613D01* X22891Y29587D01* X22895Y29579D01* X22899Y29572D01* X22904Y29567D01* Y29437D01* G37* G36* Y29764D02*X22897Y29772D01* X22872Y29797D01* X22844Y29820D01* X22814Y29840D01* X22782Y29858D01* X22749Y29873D01* X22724Y29881D01* Y31125D01* X22736Y31129D01* X22768Y31144D01* X22800Y31162D01* X22829Y31183D01* X22857Y31207D01* X22882Y31232D01* X22904Y31259D01* Y29764D01* G37* G36* Y31450D02*X22901Y31449D01* X22893Y31445D01* X22886Y31439D01* X22880Y31433D01* X22876Y31425D01* X22873Y31417D01* X22864Y31391D01* X22853Y31366D01* X22840Y31343D01* X22825Y31320D01* X22808Y31299D01* X22789Y31280D01* X22768Y31262D01* X22746Y31247D01* X22724Y31234D01* Y31765D01* X22741Y31755D01* X22764Y31740D01* X22785Y31723D01* X22804Y31704D01* X22822Y31683D01* X22837Y31661D01* X22851Y31637D01* X22862Y31613D01* X22871Y31587D01* X22875Y31579D01* X22879Y31572D01* X22885Y31565D01* X22892Y31560D01* X22900Y31556D01* X22904Y31555D01* Y31450D01* G37* G36* Y31740D02*X22901Y31744D01* X22877Y31772D01* X22852Y31797D01* X22824Y31820D01* X22794Y31840D01* X22762Y31858D01* X22729Y31873D01* X22724Y31874D01* Y33133D01* X22748Y33144D01* X22780Y33162D01* X22809Y33183D01* X22837Y33207D01* X22862Y33232D01* X22885Y33260D01* X22904Y33288D01* Y31740D01* G37* G36* Y33453D02*X22897Y33453D01* X22889Y33452D01* X22881Y33449D01* X22873Y33445D01* X22866Y33439D01* X22860Y33433D01* X22856Y33425D01* X22853Y33417D01* X22844Y33391D01* X22833Y33366D01* X22820Y33343D01* X22805Y33320D01* X22788Y33299D01* X22769Y33280D01* X22748Y33262D01* X22726Y33247D01* X22724Y33246D01* Y33754D01* X22744Y33740D01* X22765Y33723D01* X22784Y33704D01* X22802Y33683D01* X22817Y33661D01* X22831Y33637D01* X22842Y33613D01* X22851Y33587D01* X22855Y33579D01* X22859Y33572D01* X22865Y33565D01* X22872Y33560D01* X22880Y33556D01* X22888Y33553D01* X22897Y33552D01* X22904Y33552D01* Y33453D01* G37* G36* Y33711D02*X22902Y33715D01* X22881Y33744D01* X22857Y33772D01* X22832Y33797D01* X22804Y33820D01* X22774Y33840D01* X22742Y33858D01* X22724Y33866D01* Y35142D01* X22728Y35144D01* X22760Y35162D01* X22789Y35183D01* X22817Y35207D01* X22842Y35232D01* X22865Y35260D01* X22885Y35290D01* X22903Y35322D01* X22904Y35324D01* Y33711D01* G37* G36* Y35447D02*X22903Y35448D01* X22895Y35451D01* X22886Y35453D01* X22877Y35453D01* X22869Y35452D01* X22861Y35449D01* X22853Y35445D01* X22846Y35439D01* X22840Y35433D01* X22836Y35425D01* X22833Y35417D01* X22824Y35391D01* X22813Y35366D01* X22800Y35343D01* X22785Y35320D01* X22768Y35299D01* X22749Y35280D01* X22728Y35262D01* X22724Y35259D01* Y35740D01* X22745Y35723D01* X22764Y35704D01* X22782Y35683D01* X22797Y35661D01* X22811Y35637D01* X22822Y35613D01* X22831Y35587D01* X22835Y35579D01* X22839Y35572D01* X22845Y35565D01* X22852Y35560D01* X22860Y35556D01* X22868Y35553D01* X22877Y35552D01* X22885Y35552D01* X22894Y35554D01* X22902Y35557D01* X22904Y35559D01* Y35447D01* G37* G36* Y35674D02*X22900Y35683D01* X22882Y35715D01* X22861Y35744D01* X22837Y35772D01* X22812Y35797D01* X22784Y35820D01* X22754Y35840D01* X22724Y35857D01* Y37153D01* X22740Y37162D01* X22769Y37183D01* X22797Y37207D01* X22822Y37232D01* X22845Y37260D01* X22865Y37290D01* X22883Y37322D01* X22897Y37355D01* X22904Y37374D01* Y35674D01* G37* G36* Y37428D02*X22902Y37431D01* X22897Y37438D01* X22890Y37444D01* X22883Y37448D01* X22875Y37451D01* X22866Y37453D01* X22857Y37453D01* X22849Y37452D01* X22841Y37449D01* X22833Y37445D01* X22826Y37439D01* X22820Y37433D01* X22816Y37425D01* X22813Y37417D01* X22804Y37391D01* X22793Y37366D01* X22780Y37343D01* X22765Y37320D01* X22748Y37299D01* X22729Y37280D01* X22724Y37276D01* Y37724D01* X22725Y37723D01* X22744Y37704D01* X22762Y37683D01* X22777Y37661D01* X22791Y37637D01* X22802Y37613D01* X22811Y37587D01* X22815Y37579D01* X22819Y37572D01* X22825Y37565D01* X22832Y37560D01* X22840Y37556D01* X22848Y37553D01* X22857Y37552D01* X22865Y37552D01* X22874Y37554D01* X22882Y37557D01* X22889Y37562D01* X22896Y37568D01* X22901Y37575D01* X22904Y37580D01* Y37428D01* G37* G36* Y40000D02*X23084D01* Y19625D01* X23075Y19651D01* X23060Y19683D01* X23042Y19715D01* X23021Y19744D01* X22997Y19772D01* X22972Y19797D01* X22944Y19820D01* X22914Y19840D01* X22904Y19846D01* Y21165D01* X22929Y21183D01* X22957Y21207D01* X22982Y21232D01* X23005Y21260D01* X23025Y21290D01* X23043Y21322D01* X23057Y21355D01* X23069Y21389D01* X23071Y21398D01* X23071Y21407D01* X23070Y21415D01* X23067Y21423D01* X23062Y21431D01* X23057Y21438D01* X23050Y21444D01* X23043Y21448D01* X23035Y21451D01* X23026Y21453D01* X23017Y21453D01* X23009Y21452D01* X23001Y21449D01* X22993Y21445D01* X22986Y21439D01* X22980Y21433D01* X22976Y21425D01* X22973Y21417D01* X22964Y21391D01* X22953Y21366D01* X22940Y21343D01* X22925Y21320D01* X22908Y21299D01* X22904Y21295D01* Y21704D01* X22904Y21704D01* X22922Y21683D01* X22937Y21661D01* X22951Y21637D01* X22962Y21613D01* X22971Y21587D01* X22975Y21579D01* X22979Y21572D01* X22985Y21565D01* X22992Y21560D01* X23000Y21556D01* X23008Y21553D01* X23017Y21552D01* X23025Y21552D01* X23034Y21554D01* X23042Y21557D01* X23049Y21562D01* X23056Y21568D01* X23061Y21575D01* X23065Y21582D01* X23068Y21591D01* X23069Y21599D01* X23069Y21608D01* X23067Y21617D01* X23055Y21651D01* X23040Y21683D01* X23022Y21715D01* X23001Y21744D01* X22977Y21772D01* X22952Y21797D01* X22924Y21820D01* X22904Y21834D01* Y23180D01* X22909Y23183D01* X22937Y23207D01* X22962Y23232D01* X22985Y23260D01* X23005Y23290D01* X23023Y23322D01* X23037Y23355D01* X23049Y23389D01* X23051Y23398D01* X23051Y23407D01* X23050Y23415D01* X23047Y23423D01* X23042Y23431D01* X23037Y23438D01* X23030Y23444D01* X23023Y23448D01* X23015Y23451D01* X23006Y23453D01* X22997Y23453D01* X22989Y23452D01* X22981Y23449D01* X22973Y23445D01* X22966Y23439D01* X22960Y23433D01* X22956Y23425D01* X22953Y23417D01* X22944Y23391D01* X22933Y23366D01* X22920Y23343D01* X22905Y23320D01* X22904Y23319D01* Y23680D01* X22917Y23661D01* X22931Y23637D01* X22942Y23613D01* X22951Y23587D01* X22955Y23579D01* X22959Y23572D01* X22965Y23565D01* X22972Y23560D01* X22980Y23556D01* X22988Y23553D01* X22997Y23552D01* X23005Y23552D01* X23014Y23554D01* X23022Y23557D01* X23029Y23562D01* X23036Y23568D01* X23041Y23575D01* X23045Y23582D01* X23048Y23591D01* X23049Y23599D01* X23049Y23608D01* X23047Y23617D01* X23035Y23651D01* X23020Y23683D01* X23002Y23715D01* X22981Y23744D01* X22957Y23772D01* X22932Y23797D01* X22904Y23820D01* Y25196D01* X22917Y25207D01* X22942Y25232D01* X22965Y25260D01* X22985Y25290D01* X23003Y25322D01* X23017Y25355D01* X23029Y25389D01* X23031Y25398D01* X23031Y25407D01* X23030Y25415D01* X23027Y25423D01* X23022Y25431D01* X23017Y25438D01* X23010Y25444D01* X23003Y25448D01* X22995Y25451D01* X22986Y25453D01* X22977Y25453D01* X22969Y25452D01* X22961Y25449D01* X22953Y25445D01* X22946Y25439D01* X22940Y25433D01* X22936Y25425D01* X22933Y25417D01* X22924Y25391D01* X22913Y25366D01* X22904Y25350D01* Y25650D01* X22911Y25637D01* X22922Y25613D01* X22931Y25587D01* X22935Y25579D01* X22939Y25572D01* X22945Y25565D01* X22952Y25560D01* X22960Y25556D01* X22968Y25553D01* X22977Y25552D01* X22985Y25552D01* X22994Y25554D01* X23002Y25557D01* X23009Y25562D01* X23016Y25568D01* X23021Y25575D01* X23025Y25582D01* X23028Y25591D01* X23029Y25599D01* X23029Y25608D01* X23027Y25617D01* X23015Y25651D01* X23000Y25683D01* X22982Y25715D01* X22961Y25744D01* X22937Y25772D01* X22912Y25797D01* X22904Y25804D01* Y27214D01* X22922Y27232D01* X22945Y27260D01* X22965Y27290D01* X22983Y27322D01* X22997Y27355D01* X23009Y27389D01* X23011Y27398D01* X23011Y27407D01* X23010Y27415D01* X23007Y27423D01* X23002Y27431D01* X22997Y27438D01* X22990Y27444D01* X22983Y27448D01* X22975Y27451D01* X22966Y27453D01* X22957Y27453D01* X22949Y27452D01* X22941Y27449D01* X22933Y27445D01* X22926Y27439D01* X22920Y27433D01* X22916Y27425D01* X22913Y27417D01* X22904Y27391D01* X22904Y27391D01* Y27608D01* X22911Y27587D01* X22915Y27579D01* X22919Y27572D01* X22925Y27565D01* X22932Y27560D01* X22940Y27556D01* X22948Y27553D01* X22957Y27552D01* X22965Y27552D01* X22974Y27554D01* X22982Y27557D01* X22989Y27562D01* X22996Y27568D01* X23001Y27575D01* X23005Y27582D01* X23008Y27591D01* X23009Y27599D01* X23009Y27608D01* X23007Y27617D01* X22995Y27651D01* X22980Y27683D01* X22962Y27715D01* X22941Y27744D01* X22917Y27772D01* X22904Y27785D01* Y29235D01* X22925Y29260D01* X22945Y29290D01* X22963Y29322D01* X22977Y29355D01* X22989Y29389D01* X22991Y29398D01* X22991Y29407D01* X22990Y29415D01* X22987Y29423D01* X22982Y29431D01* X22977Y29438D01* X22970Y29444D01* X22963Y29448D01* X22955Y29451D01* X22946Y29453D01* X22937Y29453D01* X22929Y29452D01* X22921Y29449D01* X22913Y29445D01* X22906Y29439D01* X22904Y29437D01* Y29567D01* X22905Y29565D01* X22912Y29560D01* X22920Y29556D01* X22928Y29553D01* X22937Y29552D01* X22945Y29552D01* X22954Y29554D01* X22962Y29557D01* X22969Y29562D01* X22976Y29568D01* X22981Y29575D01* X22985Y29582D01* X22988Y29591D01* X22989Y29599D01* X22989Y29608D01* X22987Y29617D01* X22975Y29651D01* X22960Y29683D01* X22942Y29715D01* X22921Y29744D01* X22904Y29764D01* Y31259D01* X22905Y31260D01* X22925Y31290D01* X22943Y31322D01* X22957Y31355D01* X22969Y31389D01* X22971Y31398D01* X22971Y31407D01* X22970Y31415D01* X22967Y31423D01* X22962Y31431D01* X22957Y31438D01* X22950Y31444D01* X22943Y31448D01* X22935Y31451D01* X22926Y31453D01* X22917Y31453D01* X22909Y31452D01* X22904Y31450D01* Y31555D01* X22908Y31553D01* X22917Y31552D01* X22925Y31552D01* X22934Y31554D01* X22942Y31557D01* X22949Y31562D01* X22956Y31568D01* X22961Y31575D01* X22965Y31582D01* X22968Y31591D01* X22969Y31599D01* X22969Y31608D01* X22967Y31617D01* X22955Y31651D01* X22940Y31683D01* X22922Y31715D01* X22904Y31740D01* Y33288D01* X22905Y33290D01* X22923Y33322D01* X22937Y33355D01* X22949Y33389D01* X22951Y33398D01* X22951Y33407D01* X22950Y33415D01* X22947Y33423D01* X22942Y33431D01* X22937Y33438D01* X22930Y33444D01* X22923Y33448D01* X22915Y33451D01* X22906Y33453D01* X22904D01* Y33552D01* X22905D01* X22914Y33554D01* X22922Y33557D01* X22929Y33562D01* X22936Y33568D01* X22941Y33575D01* X22945Y33582D01* X22948Y33591D01* X22949Y33599D01* X22949Y33608D01* X22947Y33617D01* X22935Y33651D01* X22920Y33683D01* X22904Y33711D01* Y35324D01* X22917Y35355D01* X22929Y35389D01* X22931Y35398D01* X22931Y35407D01* X22930Y35415D01* X22927Y35423D01* X22922Y35431D01* X22917Y35438D01* X22910Y35444D01* X22904Y35447D01* Y35559D01* X22909Y35562D01* X22916Y35568D01* X22921Y35575D01* X22925Y35582D01* X22928Y35591D01* X22929Y35599D01* X22929Y35608D01* X22927Y35617D01* X22915Y35651D01* X22904Y35674D01* Y37374D01* X22909Y37389D01* X22911Y37398D01* X22911Y37407D01* X22910Y37415D01* X22907Y37423D01* X22904Y37428D01* Y37580D01* X22905Y37582D01* X22908Y37591D01* X22909Y37599D01* X22909Y37608D01* X22907Y37617D01* X22904Y37625D01* Y40000D01* G37* G36* X23084Y0D02*X22904D01* Y5140D01* X22907Y5135D01* X22913Y5128D01* X22920Y5123D01* X22927Y5119D01* X22936Y5116D01* X22944Y5115D01* X22953Y5115D01* X22961Y5117D01* X22996Y5129D01* X23028Y5144D01* X23060Y5162D01* X23084Y5180D01* Y3834D01* X23074Y3840D01* X23042Y3858D01* X23009Y3873D01* X22975Y3884D01* X22966Y3886D01* X22957Y3886D01* X22949Y3885D01* X22941Y3882D01* X22933Y3878D01* X22926Y3872D01* X22920Y3865D01* X22916Y3858D01* X22913Y3850D01* X22911Y3841D01* X22911Y3833D01* X22912Y3824D01* X22915Y3816D01* X22919Y3808D01* X22925Y3801D01* X22932Y3796D01* X22939Y3791D01* X22947Y3788D01* X22973Y3779D01* X22998Y3768D01* X23021Y3755D01* X23044Y3740D01* X23065Y3723D01* X23084Y3704D01* Y3295D01* X23069Y3280D01* X23048Y3262D01* X23026Y3247D01* X23002Y3233D01* X22978Y3222D01* X22952Y3213D01* X22944Y3209D01* X22937Y3205D01* X22930Y3199D01* X22925Y3192D01* X22921Y3184D01* X22918Y3176D01* X22917Y3167D01* X22917Y3159D01* X22919Y3150D01* X22922Y3142D01* X22927Y3135D01* X22933Y3128D01* X22940Y3123D01* X22947Y3119D01* X22956Y3116D01* X22964Y3115D01* X22973Y3115D01* X22981Y3117D01* X23016Y3129D01* X23048Y3144D01* X23080Y3162D01* X23084Y3165D01* Y1846D01* X23062Y1858D01* X23029Y1873D01* X22995Y1884D01* X22986Y1886D01* X22977Y1886D01* X22969Y1885D01* X22961Y1882D01* X22953Y1878D01* X22946Y1872D01* X22940Y1865D01* X22936Y1858D01* X22933Y1850D01* X22931Y1841D01* X22931Y1833D01* X22932Y1824D01* X22935Y1816D01* X22939Y1808D01* X22945Y1801D01* X22952Y1796D01* X22959Y1791D01* X22967Y1788D01* X22993Y1779D01* X23018Y1768D01* X23041Y1755D01* X23064Y1740D01* X23084Y1724D01* Y1276D01* X23068Y1262D01* X23046Y1247D01* X23022Y1233D01* X22998Y1222D01* X22972Y1213D01* X22964Y1209D01* X22957Y1205D01* X22950Y1199D01* X22945Y1192D01* X22941Y1184D01* X22938Y1176D01* X22937Y1167D01* X22937Y1159D01* X22939Y1150D01* X22942Y1142D01* X22947Y1135D01* X22953Y1128D01* X22960Y1123D01* X22967Y1119D01* X22976Y1116D01* X22984Y1115D01* X22993Y1115D01* X23001Y1117D01* X23036Y1129D01* X23068Y1144D01* X23084Y1153D01* Y0D01* G37* G36* Y5319D02*X23068Y5299D01* X23049Y5280D01* X23028Y5262D01* X23006Y5247D01* X22982Y5233D01* X22958Y5222D01* X22932Y5213D01* X22924Y5209D01* X22917Y5205D01* X22910Y5199D01* X22905Y5192D01* X22904Y5190D01* Y5802D01* X22905Y5801D01* X22912Y5796D01* X22919Y5791D01* X22927Y5788D01* X22953Y5779D01* X22978Y5768D01* X23001Y5755D01* X23024Y5740D01* X23045Y5723D01* X23064Y5704D01* X23082Y5683D01* X23084Y5680D01* Y5319D01* G37* G36* Y5820D02*X23084Y5820D01* X23054Y5840D01* X23022Y5858D01* X22989Y5873D01* X22955Y5884D01* X22946Y5886D01* X22937Y5886D01* X22929Y5885D01* X22921Y5882D01* X22913Y5878D01* X22906Y5872D01* X22904Y5870D01* Y7121D01* X22907Y7119D01* X22916Y7116D01* X22924Y7115D01* X22933Y7115D01* X22941Y7117D01* X22976Y7129D01* X23008Y7144D01* X23040Y7162D01* X23069Y7183D01* X23084Y7196D01* Y5820D01* G37* G36* Y7350D02*X23080Y7343D01* X23065Y7320D01* X23048Y7299D01* X23029Y7280D01* X23008Y7262D01* X22986Y7247D01* X22962Y7233D01* X22938Y7222D01* X22912Y7213D01* X22904Y7209D01* X22904Y7209D01* Y7789D01* X22907Y7788D01* X22933Y7779D01* X22958Y7768D01* X22981Y7755D01* X23004Y7740D01* X23025Y7723D01* X23044Y7704D01* X23062Y7683D01* X23077Y7661D01* X23084Y7650D01* Y7350D01* G37* G36* Y7804D02*X23064Y7820D01* X23034Y7840D01* X23002Y7858D01* X22969Y7873D01* X22935Y7884D01* X22926Y7886D01* X22917Y7886D01* X22909Y7885D01* X22904Y7883D01* Y9115D01* X22904D01* X22913Y9115D01* X22921Y9117D01* X22956Y9129D01* X22988Y9144D01* X23020Y9162D01* X23049Y9183D01* X23077Y9207D01* X23084Y9214D01* Y7804D01* G37* G36* Y9391D02*X23073Y9366D01* X23060Y9343D01* X23045Y9320D01* X23028Y9299D01* X23009Y9280D01* X22988Y9262D01* X22966Y9247D01* X22942Y9233D01* X22918Y9222D01* X22904Y9217D01* Y9782D01* X22913Y9779D01* X22938Y9768D01* X22961Y9755D01* X22984Y9740D01* X23005Y9723D01* X23024Y9704D01* X23042Y9683D01* X23057Y9661D01* X23071Y9637D01* X23082Y9613D01* X23084Y9608D01* Y9391D01* G37* G36* Y9785D02*X23072Y9797D01* X23044Y9820D01* X23014Y9840D01* X22982Y9858D01* X22949Y9873D01* X22915Y9884D01* X22906Y9886D01* X22904D01* Y11118D01* X22936Y11129D01* X22968Y11144D01* X23000Y11162D01* X23029Y11183D01* X23057Y11207D01* X23082Y11232D01* X23084Y11235D01* Y9785D01* G37* G36* Y11437D02*X23080Y11433D01* X23076Y11425D01* X23073Y11417D01* X23064Y11391D01* X23053Y11366D01* X23040Y11343D01* X23025Y11320D01* X23008Y11299D01* X22989Y11280D01* X22968Y11262D01* X22946Y11247D01* X22922Y11233D01* X22904Y11225D01* Y11774D01* X22918Y11768D01* X22941Y11755D01* X22964Y11740D01* X22985Y11723D01* X23004Y11704D01* X23022Y11683D01* X23037Y11661D01* X23051Y11637D01* X23062Y11613D01* X23071Y11587D01* X23075Y11579D01* X23079Y11572D01* X23084Y11567D01* Y11437D01* G37* G36* Y11764D02*X23077Y11772D01* X23052Y11797D01* X23024Y11820D01* X22994Y11840D01* X22962Y11858D01* X22929Y11873D01* X22904Y11881D01* Y13125D01* X22916Y13129D01* X22948Y13144D01* X22980Y13162D01* X23009Y13183D01* X23037Y13207D01* X23062Y13232D01* X23084Y13259D01* Y11764D01* G37* G36* Y13450D02*X23081Y13449D01* X23073Y13445D01* X23066Y13439D01* X23060Y13433D01* X23056Y13425D01* X23053Y13417D01* X23044Y13391D01* X23033Y13366D01* X23020Y13343D01* X23005Y13320D01* X22988Y13299D01* X22969Y13280D01* X22948Y13262D01* X22926Y13247D01* X22904Y13234D01* Y13765D01* X22921Y13755D01* X22944Y13740D01* X22965Y13723D01* X22984Y13704D01* X23002Y13683D01* X23017Y13661D01* X23031Y13637D01* X23042Y13613D01* X23051Y13587D01* X23055Y13579D01* X23059Y13572D01* X23065Y13565D01* X23072Y13560D01* X23080Y13556D01* X23084Y13555D01* Y13450D01* G37* G36* Y13740D02*X23081Y13744D01* X23057Y13772D01* X23032Y13797D01* X23004Y13820D01* X22974Y13840D01* X22942Y13858D01* X22909Y13873D01* X22904Y13874D01* Y15133D01* X22928Y15144D01* X22960Y15162D01* X22989Y15183D01* X23017Y15207D01* X23042Y15232D01* X23065Y15260D01* X23084Y15288D01* Y13740D01* G37* G36* Y15453D02*X23077Y15453D01* X23069Y15452D01* X23061Y15449D01* X23053Y15445D01* X23046Y15439D01* X23040Y15433D01* X23036Y15425D01* X23033Y15417D01* X23024Y15391D01* X23013Y15366D01* X23000Y15343D01* X22985Y15320D01* X22968Y15299D01* X22949Y15280D01* X22928Y15262D01* X22906Y15247D01* X22904Y15246D01* Y15754D01* X22924Y15740D01* X22945Y15723D01* X22964Y15704D01* X22982Y15683D01* X22997Y15661D01* X23011Y15637D01* X23022Y15613D01* X23031Y15587D01* X23035Y15579D01* X23039Y15572D01* X23045Y15565D01* X23052Y15560D01* X23060Y15556D01* X23068Y15553D01* X23077Y15552D01* X23084Y15552D01* Y15453D01* G37* G36* Y15711D02*X23082Y15715D01* X23061Y15744D01* X23037Y15772D01* X23012Y15797D01* X22984Y15820D01* X22954Y15840D01* X22922Y15858D01* X22904Y15866D01* Y17142D01* X22908Y17144D01* X22940Y17162D01* X22969Y17183D01* X22997Y17207D01* X23022Y17232D01* X23045Y17260D01* X23065Y17290D01* X23083Y17322D01* X23084Y17324D01* Y15711D01* G37* G36* Y17447D02*X23083Y17448D01* X23075Y17451D01* X23066Y17453D01* X23057Y17453D01* X23049Y17452D01* X23041Y17449D01* X23033Y17445D01* X23026Y17439D01* X23020Y17433D01* X23016Y17425D01* X23013Y17417D01* X23004Y17391D01* X22993Y17366D01* X22980Y17343D01* X22965Y17320D01* X22948Y17299D01* X22929Y17280D01* X22908Y17262D01* X22904Y17259D01* Y17740D01* X22925Y17723D01* X22944Y17704D01* X22962Y17683D01* X22977Y17661D01* X22991Y17637D01* X23002Y17613D01* X23011Y17587D01* X23015Y17579D01* X23019Y17572D01* X23025Y17565D01* X23032Y17560D01* X23040Y17556D01* X23048Y17553D01* X23057Y17552D01* X23065Y17552D01* X23074Y17554D01* X23082Y17557D01* X23084Y17559D01* Y17447D01* G37* G36* Y17674D02*X23080Y17683D01* X23062Y17715D01* X23041Y17744D01* X23017Y17772D01* X22992Y17797D01* X22964Y17820D01* X22934Y17840D01* X22904Y17857D01* Y19153D01* X22920Y19162D01* X22949Y19183D01* X22977Y19207D01* X23002Y19232D01* X23025Y19260D01* X23045Y19290D01* X23063Y19322D01* X23077Y19355D01* X23084Y19374D01* Y17674D01* G37* G36* Y19428D02*X23082Y19431D01* X23077Y19438D01* X23070Y19444D01* X23063Y19448D01* X23055Y19451D01* X23046Y19453D01* X23037Y19453D01* X23029Y19452D01* X23021Y19449D01* X23013Y19445D01* X23006Y19439D01* X23000Y19433D01* X22996Y19425D01* X22993Y19417D01* X22984Y19391D01* X22973Y19366D01* X22960Y19343D01* X22945Y19320D01* X22928Y19299D01* X22909Y19280D01* X22904Y19276D01* Y19724D01* X22905Y19723D01* X22924Y19704D01* X22942Y19683D01* X22957Y19661D01* X22971Y19637D01* X22982Y19613D01* X22991Y19587D01* X22995Y19579D01* X22999Y19572D01* X23005Y19565D01* X23012Y19560D01* X23020Y19556D01* X23028Y19553D01* X23037Y19552D01* X23045Y19552D01* X23054Y19554D01* X23062Y19557D01* X23069Y19562D01* X23076Y19568D01* X23081Y19575D01* X23084Y19580D01* Y19428D01* G37* G36* Y40000D02*X24285D01* Y39834D01* X24260Y39816D01* X24232Y39793D01* X24207Y39767D01* X24184Y39739D01* X24164Y39709D01* X24146Y39677D01* X24132Y39644D01* X24120Y39610D01* X24118Y39601D01* X24118Y39593D01* X24119Y39584D01* X24122Y39576D01* X24127Y39568D01* X24132Y39561D01* X24139Y39556D01* X24146Y39551D01* X24154Y39548D01* X24163Y39546D01* X24172Y39546D01* X24180Y39547D01* X24188Y39550D01* X24196Y39555D01* X24203Y39560D01* X24209Y39567D01* X24213Y39574D01* X24216Y39582D01* X24225Y39608D01* X24236Y39633D01* X24249Y39657D01* X24264Y39679D01* X24281Y39700D01* X24285Y39704D01* Y39295D01* X24285Y39295D01* X24267Y39316D01* X24252Y39338D01* X24238Y39362D01* X24227Y39386D01* X24218Y39412D01* X24214Y39420D01* X24210Y39427D01* X24204Y39434D01* X24197Y39439D01* X24189Y39443D01* X24181Y39446D01* X24172Y39447D01* X24164Y39447D01* X24155Y39445D01* X24147Y39442D01* X24140Y39437D01* X24133Y39431D01* X24128Y39424D01* X24124Y39417D01* X24121Y39409D01* X24120Y39400D01* X24120Y39391D01* X24122Y39383D01* X24134Y39349D01* X24149Y39316D01* X24167Y39284D01* X24188Y39255D01* X24212Y39227D01* X24237Y39202D01* X24265Y39179D01* X24285Y39166D01* Y37820D01* X24280Y37816D01* X24252Y37793D01* X24227Y37767D01* X24204Y37739D01* X24184Y37709D01* X24166Y37677D01* X24152Y37644D01* X24140Y37610D01* X24138Y37601D01* X24138Y37593D01* X24139Y37584D01* X24142Y37576D01* X24147Y37568D01* X24152Y37561D01* X24159Y37556D01* X24166Y37551D01* X24174Y37548D01* X24183Y37546D01* X24192Y37546D01* X24200Y37547D01* X24208Y37550D01* X24216Y37555D01* X24223Y37560D01* X24229Y37567D01* X24233Y37574D01* X24236Y37582D01* X24245Y37608D01* X24256Y37633D01* X24269Y37657D01* X24284Y37679D01* X24285Y37680D01* Y37319D01* X24272Y37338D01* X24258Y37362D01* X24247Y37386D01* X24238Y37412D01* X24234Y37420D01* X24230Y37427D01* X24224Y37434D01* X24217Y37439D01* X24209Y37443D01* X24201Y37446D01* X24192Y37447D01* X24184Y37447D01* X24175Y37445D01* X24167Y37442D01* X24160Y37437D01* X24153Y37431D01* X24148Y37424D01* X24144Y37417D01* X24141Y37409D01* X24140Y37400D01* X24140Y37391D01* X24142Y37383D01* X24154Y37349D01* X24169Y37316D01* X24187Y37284D01* X24208Y37255D01* X24232Y37227D01* X24257Y37202D01* X24285Y37179D01* Y35804D01* X24272Y35793D01* X24247Y35767D01* X24224Y35739D01* X24204Y35709D01* X24186Y35677D01* X24172Y35644D01* X24160Y35610D01* X24158Y35601D01* X24158Y35593D01* X24159Y35584D01* X24162Y35576D01* X24167Y35568D01* X24172Y35561D01* X24179Y35556D01* X24186Y35551D01* X24194Y35548D01* X24203Y35546D01* X24212Y35546D01* X24220Y35547D01* X24228Y35550D01* X24236Y35555D01* X24243Y35560D01* X24249Y35567D01* X24253Y35574D01* X24256Y35582D01* X24265Y35608D01* X24276Y35633D01* X24285Y35650D01* Y35349D01* X24278Y35362D01* X24267Y35386D01* X24258Y35412D01* X24254Y35420D01* X24250Y35427D01* X24244Y35434D01* X24237Y35439D01* X24229Y35443D01* X24221Y35446D01* X24212Y35447D01* X24204Y35447D01* X24195Y35445D01* X24187Y35442D01* X24180Y35437D01* X24173Y35431D01* X24168Y35424D01* X24164Y35417D01* X24161Y35409D01* X24160Y35400D01* X24160Y35391D01* X24162Y35383D01* X24174Y35349D01* X24189Y35316D01* X24207Y35284D01* X24228Y35255D01* X24252Y35227D01* X24277Y35202D01* X24285Y35196D01* Y33785D01* X24267Y33767D01* X24244Y33739D01* X24224Y33709D01* X24206Y33677D01* X24192Y33644D01* X24180Y33610D01* X24178Y33601D01* X24178Y33593D01* X24179Y33584D01* X24182Y33576D01* X24187Y33568D01* X24192Y33561D01* X24199Y33556D01* X24206Y33551D01* X24214Y33548D01* X24223Y33546D01* X24232Y33546D01* X24240Y33547D01* X24248Y33550D01* X24256Y33555D01* X24263Y33560D01* X24269Y33567D01* X24273Y33574D01* X24276Y33582D01* X24285Y33608D01* X24285Y33609D01* Y33391D01* X24278Y33412D01* X24274Y33420D01* X24270Y33427D01* X24264Y33434D01* X24257Y33439D01* X24249Y33443D01* X24241Y33446D01* X24232Y33447D01* X24224Y33447D01* X24215Y33445D01* X24207Y33442D01* X24200Y33437D01* X24193Y33431D01* X24188Y33424D01* X24184Y33417D01* X24181Y33409D01* X24180Y33400D01* X24180Y33391D01* X24182Y33383D01* X24194Y33349D01* X24209Y33316D01* X24227Y33284D01* X24248Y33255D01* X24272Y33227D01* X24285Y33214D01* Y31765D01* X24264Y31739D01* X24244Y31709D01* X24226Y31677D01* X24212Y31644D01* X24200Y31610D01* X24198Y31601D01* X24198Y31593D01* X24199Y31584D01* X24202Y31576D01* X24207Y31568D01* X24212Y31561D01* X24219Y31556D01* X24226Y31551D01* X24234Y31548D01* X24243Y31546D01* X24252Y31546D01* X24260Y31547D01* X24268Y31550D01* X24276Y31555D01* X24283Y31560D01* X24285Y31563D01* Y31432D01* X24284Y31434D01* X24277Y31439D01* X24269Y31443D01* X24261Y31446D01* X24252Y31447D01* X24244Y31447D01* X24235Y31445D01* X24227Y31442D01* X24220Y31437D01* X24213Y31431D01* X24208Y31424D01* X24204Y31417D01* X24201Y31409D01* X24200Y31400D01* X24200Y31391D01* X24202Y31383D01* X24214Y31349D01* X24229Y31316D01* X24247Y31284D01* X24268Y31255D01* X24285Y31235D01* Y29740D01* X24284Y29739D01* X24264Y29709D01* X24246Y29677D01* X24232Y29644D01* X24220Y29610D01* X24218Y29601D01* X24218Y29593D01* X24219Y29584D01* X24222Y29576D01* X24227Y29568D01* X24232Y29561D01* X24239Y29556D01* X24246Y29551D01* X24254Y29548D01* X24263Y29546D01* X24272Y29546D01* X24280Y29547D01* X24285Y29549D01* Y29445D01* X24281Y29446D01* X24272Y29447D01* X24264Y29447D01* X24255Y29445D01* X24247Y29442D01* X24240Y29437D01* X24233Y29431D01* X24228Y29424D01* X24224Y29417D01* X24221Y29409D01* X24220Y29400D01* X24220Y29391D01* X24222Y29383D01* X24234Y29349D01* X24249Y29316D01* X24267Y29284D01* X24285Y29259D01* Y27711D01* X24284Y27709D01* X24266Y27677D01* X24252Y27644D01* X24240Y27610D01* X24238Y27601D01* X24238Y27593D01* X24239Y27584D01* X24242Y27576D01* X24247Y27568D01* X24252Y27561D01* X24259Y27556D01* X24266Y27551D01* X24274Y27548D01* X24283Y27546D01* X24285D01* Y27447D01* X24284Y27447D01* X24275Y27445D01* X24267Y27442D01* X24260Y27437D01* X24253Y27431D01* X24248Y27424D01* X24244Y27417D01* X24241Y27409D01* X24240Y27400D01* X24240Y27391D01* X24242Y27383D01* X24254Y27349D01* X24269Y27316D01* X24285Y27288D01* Y25675D01* X24272Y25644D01* X24260Y25610D01* X24258Y25601D01* X24258Y25593D01* X24259Y25584D01* X24262Y25576D01* X24267Y25568D01* X24272Y25561D01* X24279Y25556D01* X24285Y25552D01* Y25441D01* X24280Y25437D01* X24273Y25431D01* X24268Y25424D01* X24264Y25417D01* X24261Y25409D01* X24260Y25400D01* X24260Y25391D01* X24262Y25383D01* X24274Y25349D01* X24285Y25325D01* Y23625D01* X24280Y23610D01* X24278Y23601D01* X24278Y23593D01* X24279Y23584D01* X24282Y23576D01* X24285Y23571D01* Y23419D01* X24284Y23417D01* X24281Y23409D01* X24280Y23400D01* X24280Y23391D01* X24282Y23383D01* X24285Y23374D01* Y0D01* X23084D01* Y1153D01* X23100Y1162D01* X23129Y1183D01* X23157Y1207D01* X23182Y1232D01* X23205Y1260D01* X23225Y1290D01* X23243Y1322D01* X23257Y1355D01* X23269Y1389D01* X23271Y1398D01* X23271Y1407D01* X23270Y1415D01* X23267Y1423D01* X23262Y1431D01* X23257Y1438D01* X23250Y1444D01* X23243Y1448D01* X23235Y1451D01* X23226Y1453D01* X23217Y1453D01* X23209Y1452D01* X23201Y1449D01* X23193Y1445D01* X23186Y1439D01* X23180Y1433D01* X23176Y1425D01* X23173Y1417D01* X23164Y1391D01* X23153Y1366D01* X23140Y1343D01* X23125Y1320D01* X23108Y1299D01* X23089Y1280D01* X23084Y1276D01* Y1724D01* X23085Y1723D01* X23104Y1704D01* X23122Y1683D01* X23137Y1661D01* X23151Y1637D01* X23162Y1613D01* X23171Y1587D01* X23175Y1579D01* X23179Y1572D01* X23185Y1565D01* X23192Y1560D01* X23200Y1556D01* X23208Y1553D01* X23217Y1552D01* X23225Y1552D01* X23234Y1554D01* X23242Y1557D01* X23249Y1562D01* X23256Y1568D01* X23261Y1575D01* X23265Y1582D01* X23268Y1591D01* X23269Y1599D01* X23269Y1608D01* X23267Y1617D01* X23255Y1651D01* X23240Y1683D01* X23222Y1715D01* X23201Y1744D01* X23177Y1772D01* X23152Y1797D01* X23124Y1820D01* X23094Y1840D01* X23084Y1846D01* Y3165D01* X23109Y3183D01* X23137Y3207D01* X23162Y3232D01* X23185Y3260D01* X23205Y3290D01* X23223Y3322D01* X23237Y3355D01* X23249Y3389D01* X23251Y3398D01* X23251Y3407D01* X23250Y3415D01* X23247Y3423D01* X23242Y3431D01* X23237Y3438D01* X23230Y3444D01* X23223Y3448D01* X23215Y3451D01* X23206Y3453D01* X23197Y3453D01* X23189Y3452D01* X23181Y3449D01* X23173Y3445D01* X23166Y3439D01* X23160Y3433D01* X23156Y3425D01* X23153Y3417D01* X23144Y3391D01* X23133Y3366D01* X23120Y3343D01* X23105Y3320D01* X23088Y3299D01* X23084Y3295D01* Y3704D01* X23084Y3704D01* X23102Y3683D01* X23117Y3661D01* X23131Y3637D01* X23142Y3613D01* X23151Y3587D01* X23155Y3579D01* X23159Y3572D01* X23165Y3565D01* X23172Y3560D01* X23180Y3556D01* X23188Y3553D01* X23197Y3552D01* X23205Y3552D01* X23214Y3554D01* X23222Y3557D01* X23229Y3562D01* X23236Y3568D01* X23241Y3575D01* X23245Y3582D01* X23248Y3591D01* X23249Y3599D01* X23249Y3608D01* X23247Y3617D01* X23235Y3651D01* X23220Y3683D01* X23202Y3715D01* X23181Y3744D01* X23157Y3772D01* X23132Y3797D01* X23104Y3820D01* X23084Y3834D01* Y5180D01* X23089Y5183D01* X23117Y5207D01* X23142Y5232D01* X23165Y5260D01* X23185Y5290D01* X23203Y5322D01* X23217Y5355D01* X23229Y5389D01* X23231Y5398D01* X23231Y5407D01* X23230Y5415D01* X23227Y5423D01* X23222Y5431D01* X23217Y5438D01* X23210Y5444D01* X23203Y5448D01* X23195Y5451D01* X23186Y5453D01* X23177Y5453D01* X23169Y5452D01* X23161Y5449D01* X23153Y5445D01* X23146Y5439D01* X23140Y5433D01* X23136Y5425D01* X23133Y5417D01* X23124Y5391D01* X23113Y5366D01* X23100Y5343D01* X23085Y5320D01* X23084Y5319D01* Y5680D01* X23097Y5661D01* X23111Y5637D01* X23122Y5613D01* X23131Y5587D01* X23135Y5579D01* X23139Y5572D01* X23145Y5565D01* X23152Y5560D01* X23160Y5556D01* X23168Y5553D01* X23177Y5552D01* X23185Y5552D01* X23194Y5554D01* X23202Y5557D01* X23209Y5562D01* X23216Y5568D01* X23221Y5575D01* X23225Y5582D01* X23228Y5591D01* X23229Y5599D01* X23229Y5608D01* X23227Y5617D01* X23215Y5651D01* X23200Y5683D01* X23182Y5715D01* X23161Y5744D01* X23137Y5772D01* X23112Y5797D01* X23084Y5820D01* Y7196D01* X23097Y7207D01* X23122Y7232D01* X23145Y7260D01* X23165Y7290D01* X23183Y7322D01* X23197Y7355D01* X23209Y7389D01* X23211Y7398D01* X23211Y7407D01* X23210Y7415D01* X23207Y7423D01* X23202Y7431D01* X23197Y7438D01* X23190Y7444D01* X23183Y7448D01* X23175Y7451D01* X23166Y7453D01* X23157Y7453D01* X23149Y7452D01* X23141Y7449D01* X23133Y7445D01* X23126Y7439D01* X23120Y7433D01* X23116Y7425D01* X23113Y7417D01* X23104Y7391D01* X23093Y7366D01* X23084Y7350D01* Y7650D01* X23091Y7637D01* X23102Y7613D01* X23111Y7587D01* X23115Y7579D01* X23119Y7572D01* X23125Y7565D01* X23132Y7560D01* X23140Y7556D01* X23148Y7553D01* X23157Y7552D01* X23165Y7552D01* X23174Y7554D01* X23182Y7557D01* X23189Y7562D01* X23196Y7568D01* X23201Y7575D01* X23205Y7582D01* X23208Y7591D01* X23209Y7599D01* X23209Y7608D01* X23207Y7617D01* X23195Y7651D01* X23180Y7683D01* X23162Y7715D01* X23141Y7744D01* X23117Y7772D01* X23092Y7797D01* X23084Y7804D01* Y9214D01* X23102Y9232D01* X23125Y9260D01* X23145Y9290D01* X23163Y9322D01* X23177Y9355D01* X23189Y9389D01* X23191Y9398D01* X23191Y9407D01* X23190Y9415D01* X23187Y9423D01* X23182Y9431D01* X23177Y9438D01* X23170Y9444D01* X23163Y9448D01* X23155Y9451D01* X23146Y9453D01* X23137Y9453D01* X23129Y9452D01* X23121Y9449D01* X23113Y9445D01* X23106Y9439D01* X23100Y9433D01* X23096Y9425D01* X23093Y9417D01* X23084Y9391D01* X23084Y9391D01* Y9608D01* X23091Y9587D01* X23095Y9579D01* X23099Y9572D01* X23105Y9565D01* X23112Y9560D01* X23120Y9556D01* X23128Y9553D01* X23137Y9552D01* X23145Y9552D01* X23154Y9554D01* X23162Y9557D01* X23169Y9562D01* X23176Y9568D01* X23181Y9575D01* X23185Y9582D01* X23188Y9591D01* X23189Y9599D01* X23189Y9608D01* X23187Y9617D01* X23175Y9651D01* X23160Y9683D01* X23142Y9715D01* X23121Y9744D01* X23097Y9772D01* X23084Y9785D01* Y11235D01* X23105Y11260D01* X23125Y11290D01* X23143Y11322D01* X23157Y11355D01* X23169Y11389D01* X23171Y11398D01* X23171Y11407D01* X23170Y11415D01* X23167Y11423D01* X23162Y11431D01* X23157Y11438D01* X23150Y11444D01* X23143Y11448D01* X23135Y11451D01* X23126Y11453D01* X23117Y11453D01* X23109Y11452D01* X23101Y11449D01* X23093Y11445D01* X23086Y11439D01* X23084Y11437D01* Y11567D01* X23085Y11565D01* X23092Y11560D01* X23100Y11556D01* X23108Y11553D01* X23117Y11552D01* X23125Y11552D01* X23134Y11554D01* X23142Y11557D01* X23149Y11562D01* X23156Y11568D01* X23161Y11575D01* X23165Y11582D01* X23168Y11591D01* X23169Y11599D01* X23169Y11608D01* X23167Y11617D01* X23155Y11651D01* X23140Y11683D01* X23122Y11715D01* X23101Y11744D01* X23084Y11764D01* Y13259D01* X23085Y13260D01* X23105Y13290D01* X23123Y13322D01* X23137Y13355D01* X23149Y13389D01* X23151Y13398D01* X23151Y13407D01* X23150Y13415D01* X23147Y13423D01* X23142Y13431D01* X23137Y13438D01* X23130Y13444D01* X23123Y13448D01* X23115Y13451D01* X23106Y13453D01* X23097Y13453D01* X23089Y13452D01* X23084Y13450D01* Y13555D01* X23088Y13553D01* X23097Y13552D01* X23105Y13552D01* X23114Y13554D01* X23122Y13557D01* X23129Y13562D01* X23136Y13568D01* X23141Y13575D01* X23145Y13582D01* X23148Y13591D01* X23149Y13599D01* X23149Y13608D01* X23147Y13617D01* X23135Y13651D01* X23120Y13683D01* X23102Y13715D01* X23084Y13740D01* Y15288D01* X23085Y15290D01* X23103Y15322D01* X23117Y15355D01* X23129Y15389D01* X23131Y15398D01* X23131Y15407D01* X23130Y15415D01* X23127Y15423D01* X23122Y15431D01* X23117Y15438D01* X23110Y15444D01* X23103Y15448D01* X23095Y15451D01* X23086Y15453D01* X23084D01* Y15552D01* X23085D01* X23094Y15554D01* X23102Y15557D01* X23109Y15562D01* X23116Y15568D01* X23121Y15575D01* X23125Y15582D01* X23128Y15591D01* X23129Y15599D01* X23129Y15608D01* X23127Y15617D01* X23115Y15651D01* X23100Y15683D01* X23084Y15711D01* Y17324D01* X23097Y17355D01* X23109Y17389D01* X23111Y17398D01* X23111Y17407D01* X23110Y17415D01* X23107Y17423D01* X23102Y17431D01* X23097Y17438D01* X23090Y17444D01* X23084Y17447D01* Y17559D01* X23089Y17562D01* X23096Y17568D01* X23101Y17575D01* X23105Y17582D01* X23108Y17591D01* X23109Y17599D01* X23109Y17608D01* X23107Y17617D01* X23095Y17651D01* X23084Y17674D01* Y19374D01* X23089Y19389D01* X23091Y19398D01* X23091Y19407D01* X23090Y19415D01* X23087Y19423D01* X23084Y19428D01* Y19580D01* X23085Y19582D01* X23088Y19591D01* X23089Y19599D01* X23089Y19608D01* X23087Y19617D01* X23084Y19625D01* Y40000D01* G37* G36* X24285D02*X24465D01* Y37859D01* X24462Y37864D01* X24456Y37871D01* X24449Y37876D01* X24442Y37880D01* X24433Y37883D01* X24425Y37884D01* X24416Y37884D01* X24408Y37882D01* X24373Y37870D01* X24341Y37855D01* X24309Y37837D01* X24285Y37820D01* Y39166D01* X24295Y39159D01* X24327Y39141D01* X24360Y39127D01* X24394Y39115D01* X24403Y39113D01* X24412Y39113D01* X24420Y39115D01* X24428Y39117D01* X24436Y39122D01* X24443Y39127D01* X24449Y39134D01* X24453Y39141D01* X24456Y39149D01* X24458Y39158D01* X24458Y39167D01* X24457Y39175D01* X24454Y39183D01* X24450Y39191D01* X24444Y39198D01* X24437Y39204D01* X24430Y39208D01* X24422Y39211D01* X24396Y39220D01* X24371Y39231D01* X24348Y39244D01* X24325Y39259D01* X24304Y39276D01* X24285Y39295D01* Y39704D01* X24300Y39719D01* X24321Y39737D01* X24343Y39752D01* X24367Y39766D01* X24391Y39777D01* X24417Y39786D01* X24425Y39790D01* X24432Y39794D01* X24439Y39800D01* X24444Y39807D01* X24448Y39815D01* X24451Y39823D01* X24452Y39832D01* X24452Y39840D01* X24450Y39849D01* X24447Y39857D01* X24442Y39864D01* X24436Y39871D01* X24429Y39876D01* X24422Y39880D01* X24413Y39883D01* X24405Y39884D01* X24396Y39884D01* X24388Y39882D01* X24353Y39870D01* X24321Y39855D01* X24289Y39837D01* X24285Y39834D01* Y40000D01* G37* G36* X24465Y11740D02*X24464Y11739D01* X24444Y11709D01* X24426Y11677D01* X24412Y11644D01* X24400Y11610D01* X24398Y11601D01* X24398Y11593D01* X24399Y11584D01* X24402Y11576D01* X24407Y11568D01* X24412Y11561D01* X24419Y11556D01* X24426Y11551D01* X24434Y11548D01* X24443Y11546D01* X24452Y11546D01* X24460Y11547D01* X24465Y11549D01* Y11445D01* X24461Y11446D01* X24452Y11447D01* X24444Y11447D01* X24435Y11445D01* X24427Y11442D01* X24420Y11437D01* X24413Y11431D01* X24408Y11424D01* X24404Y11417D01* X24401Y11409D01* X24400Y11400D01* X24400Y11391D01* X24402Y11383D01* X24414Y11349D01* X24429Y11316D01* X24447Y11284D01* X24465Y11259D01* Y9711D01* X24464Y9709D01* X24446Y9677D01* X24432Y9644D01* X24420Y9610D01* X24418Y9601D01* X24418Y9593D01* X24419Y9584D01* X24422Y9576D01* X24427Y9568D01* X24432Y9561D01* X24439Y9556D01* X24446Y9551D01* X24454Y9548D01* X24463Y9546D01* X24465D01* Y9447D01* X24464Y9447D01* X24455Y9445D01* X24447Y9442D01* X24440Y9437D01* X24433Y9431D01* X24428Y9424D01* X24424Y9417D01* X24421Y9409D01* X24420Y9400D01* X24420Y9391D01* X24422Y9383D01* X24434Y9349D01* X24449Y9316D01* X24465Y9288D01* Y7675D01* X24452Y7644D01* X24440Y7610D01* X24438Y7601D01* X24438Y7593D01* X24439Y7584D01* X24442Y7576D01* X24447Y7568D01* X24452Y7561D01* X24459Y7556D01* X24465Y7552D01* Y7441D01* X24460Y7437D01* X24453Y7431D01* X24448Y7424D01* X24444Y7417D01* X24441Y7409D01* X24440Y7400D01* X24440Y7391D01* X24442Y7383D01* X24454Y7349D01* X24465Y7325D01* Y5625D01* X24460Y5610D01* X24458Y5601D01* X24458Y5593D01* X24459Y5584D01* X24462Y5576D01* X24465Y5571D01* Y5419D01* X24464Y5417D01* X24461Y5409D01* X24460Y5400D01* X24460Y5391D01* X24462Y5383D01* X24465Y5374D01* Y0D01* X24285D01* Y23374D01* X24294Y23349D01* X24309Y23316D01* X24327Y23284D01* X24348Y23255D01* X24372Y23227D01* X24397Y23202D01* X24425Y23179D01* X24455Y23159D01* X24465Y23153D01* Y21834D01* X24440Y21816D01* X24412Y21793D01* X24387Y21767D01* X24364Y21739D01* X24344Y21709D01* X24326Y21677D01* X24312Y21644D01* X24300Y21610D01* X24298Y21601D01* X24298Y21593D01* X24299Y21584D01* X24302Y21576D01* X24307Y21568D01* X24312Y21561D01* X24319Y21556D01* X24326Y21551D01* X24334Y21548D01* X24343Y21546D01* X24352Y21546D01* X24360Y21547D01* X24368Y21550D01* X24376Y21555D01* X24383Y21560D01* X24389Y21567D01* X24393Y21574D01* X24396Y21582D01* X24405Y21608D01* X24416Y21633D01* X24429Y21657D01* X24444Y21679D01* X24461Y21700D01* X24465Y21704D01* Y21295D01* X24465Y21295D01* X24447Y21316D01* X24432Y21338D01* X24418Y21362D01* X24407Y21386D01* X24398Y21412D01* X24394Y21420D01* X24390Y21427D01* X24384Y21434D01* X24377Y21439D01* X24369Y21443D01* X24361Y21446D01* X24352Y21447D01* X24344Y21447D01* X24335Y21445D01* X24327Y21442D01* X24320Y21437D01* X24313Y21431D01* X24308Y21424D01* X24304Y21417D01* X24301Y21409D01* X24300Y21400D01* X24300Y21391D01* X24302Y21383D01* X24314Y21349D01* X24329Y21316D01* X24347Y21284D01* X24368Y21255D01* X24392Y21227D01* X24417Y21202D01* X24445Y21179D01* X24465Y21166D01* Y19820D01* X24460Y19816D01* X24432Y19793D01* X24407Y19767D01* X24384Y19739D01* X24364Y19709D01* X24346Y19677D01* X24332Y19644D01* X24320Y19610D01* X24318Y19601D01* X24318Y19593D01* X24319Y19584D01* X24322Y19576D01* X24327Y19568D01* X24332Y19561D01* X24339Y19556D01* X24346Y19551D01* X24354Y19548D01* X24363Y19546D01* X24372Y19546D01* X24380Y19547D01* X24388Y19550D01* X24396Y19555D01* X24403Y19560D01* X24409Y19567D01* X24413Y19574D01* X24416Y19582D01* X24425Y19608D01* X24436Y19633D01* X24449Y19657D01* X24464Y19679D01* X24465Y19680D01* Y19319D01* X24452Y19338D01* X24438Y19362D01* X24427Y19386D01* X24418Y19412D01* X24414Y19420D01* X24410Y19427D01* X24404Y19434D01* X24397Y19439D01* X24389Y19443D01* X24381Y19446D01* X24372Y19447D01* X24364Y19447D01* X24355Y19445D01* X24347Y19442D01* X24340Y19437D01* X24333Y19431D01* X24328Y19424D01* X24324Y19417D01* X24321Y19409D01* X24320Y19400D01* X24320Y19391D01* X24322Y19383D01* X24334Y19349D01* X24349Y19316D01* X24367Y19284D01* X24388Y19255D01* X24412Y19227D01* X24437Y19202D01* X24465Y19179D01* Y17804D01* X24452Y17793D01* X24427Y17767D01* X24404Y17739D01* X24384Y17709D01* X24366Y17677D01* X24352Y17644D01* X24340Y17610D01* X24338Y17601D01* X24338Y17593D01* X24339Y17584D01* X24342Y17576D01* X24347Y17568D01* X24352Y17561D01* X24359Y17556D01* X24366Y17551D01* X24374Y17548D01* X24383Y17546D01* X24392Y17546D01* X24400Y17547D01* X24408Y17550D01* X24416Y17555D01* X24423Y17560D01* X24429Y17567D01* X24433Y17574D01* X24436Y17582D01* X24445Y17608D01* X24456Y17633D01* X24465Y17650D01* Y17349D01* X24458Y17362D01* X24447Y17386D01* X24438Y17412D01* X24434Y17420D01* X24430Y17427D01* X24424Y17434D01* X24417Y17439D01* X24409Y17443D01* X24401Y17446D01* X24392Y17447D01* X24384Y17447D01* X24375Y17445D01* X24367Y17442D01* X24360Y17437D01* X24353Y17431D01* X24348Y17424D01* X24344Y17417D01* X24341Y17409D01* X24340Y17400D01* X24340Y17391D01* X24342Y17383D01* X24354Y17349D01* X24369Y17316D01* X24387Y17284D01* X24408Y17255D01* X24432Y17227D01* X24457Y17202D01* X24465Y17196D01* Y15785D01* X24447Y15767D01* X24424Y15739D01* X24404Y15709D01* X24386Y15677D01* X24372Y15644D01* X24360Y15610D01* X24358Y15601D01* X24358Y15593D01* X24359Y15584D01* X24362Y15576D01* X24367Y15568D01* X24372Y15561D01* X24379Y15556D01* X24386Y15551D01* X24394Y15548D01* X24403Y15546D01* X24412Y15546D01* X24420Y15547D01* X24428Y15550D01* X24436Y15555D01* X24443Y15560D01* X24449Y15567D01* X24453Y15574D01* X24456Y15582D01* X24465Y15608D01* X24465Y15609D01* Y15391D01* X24458Y15412D01* X24454Y15420D01* X24450Y15427D01* X24444Y15434D01* X24437Y15439D01* X24429Y15443D01* X24421Y15446D01* X24412Y15447D01* X24404Y15447D01* X24395Y15445D01* X24387Y15442D01* X24380Y15437D01* X24373Y15431D01* X24368Y15424D01* X24364Y15417D01* X24361Y15409D01* X24360Y15400D01* X24360Y15391D01* X24362Y15383D01* X24374Y15349D01* X24389Y15316D01* X24407Y15284D01* X24428Y15255D01* X24452Y15227D01* X24465Y15214D01* Y13765D01* X24444Y13739D01* X24424Y13709D01* X24406Y13677D01* X24392Y13644D01* X24380Y13610D01* X24378Y13601D01* X24378Y13593D01* X24379Y13584D01* X24382Y13576D01* X24387Y13568D01* X24392Y13561D01* X24399Y13556D01* X24406Y13551D01* X24414Y13548D01* X24423Y13546D01* X24432Y13546D01* X24440Y13547D01* X24448Y13550D01* X24456Y13555D01* X24463Y13560D01* X24465Y13563D01* Y13432D01* X24464Y13434D01* X24457Y13439D01* X24449Y13443D01* X24441Y13446D01* X24432Y13447D01* X24424Y13447D01* X24415Y13445D01* X24407Y13442D01* X24400Y13437D01* X24393Y13431D01* X24388Y13424D01* X24384Y13417D01* X24381Y13409D01* X24380Y13400D01* X24380Y13391D01* X24382Y13383D01* X24394Y13349D01* X24409Y13316D01* X24427Y13284D01* X24448Y13255D01* X24465Y13235D01* Y11740D01* G37* G36* Y23276D02*X24464Y23276D01* X24445Y23295D01* X24427Y23316D01* X24412Y23338D01* X24398Y23362D01* X24387Y23386D01* X24378Y23412D01* X24374Y23420D01* X24370Y23427D01* X24364Y23434D01* X24357Y23439D01* X24349Y23443D01* X24341Y23446D01* X24332Y23447D01* X24324Y23447D01* X24315Y23445D01* X24307Y23442D01* X24300Y23437D01* X24293Y23431D01* X24288Y23424D01* X24285Y23419D01* Y23571D01* X24287Y23568D01* X24292Y23561D01* X24299Y23556D01* X24306Y23551D01* X24314Y23548D01* X24323Y23546D01* X24332Y23546D01* X24340Y23547D01* X24348Y23550D01* X24356Y23555D01* X24363Y23560D01* X24369Y23567D01* X24373Y23574D01* X24376Y23582D01* X24385Y23608D01* X24396Y23633D01* X24409Y23657D01* X24424Y23679D01* X24441Y23700D01* X24460Y23719D01* X24465Y23723D01* Y23276D01* G37* G36* Y23846D02*X24449Y23837D01* X24420Y23816D01* X24392Y23793D01* X24367Y23767D01* X24344Y23739D01* X24324Y23709D01* X24306Y23677D01* X24292Y23644D01* X24285Y23625D01* Y25325D01* X24289Y25316D01* X24307Y25284D01* X24328Y25255D01* X24352Y25227D01* X24377Y25202D01* X24405Y25179D01* X24435Y25159D01* X24465Y25142D01* Y23846D01* G37* G36* Y25259D02*X24465Y25259D01* X24444Y25276D01* X24425Y25295D01* X24407Y25316D01* X24392Y25338D01* X24378Y25362D01* X24367Y25386D01* X24358Y25412D01* X24354Y25420D01* X24350Y25427D01* X24344Y25434D01* X24337Y25439D01* X24329Y25443D01* X24321Y25446D01* X24312Y25447D01* X24304Y25447D01* X24295Y25445D01* X24287Y25442D01* X24285Y25441D01* Y25552D01* X24286Y25551D01* X24294Y25548D01* X24303Y25546D01* X24312Y25546D01* X24320Y25547D01* X24328Y25550D01* X24336Y25555D01* X24343Y25560D01* X24349Y25567D01* X24353Y25574D01* X24356Y25582D01* X24365Y25608D01* X24376Y25633D01* X24389Y25657D01* X24404Y25679D01* X24421Y25700D01* X24440Y25719D01* X24461Y25737D01* X24465Y25740D01* Y25259D01* G37* G36* Y25857D02*X24461Y25855D01* X24429Y25837D01* X24400Y25816D01* X24372Y25793D01* X24347Y25767D01* X24324Y25739D01* X24304Y25709D01* X24286Y25677D01* X24285Y25675D01* Y27288D01* X24287Y27284D01* X24308Y27255D01* X24332Y27227D01* X24357Y27202D01* X24385Y27179D01* X24415Y27159D01* X24447Y27141D01* X24465Y27133D01* Y25857D01* G37* G36* Y27246D02*X24445Y27259D01* X24424Y27276D01* X24405Y27295D01* X24387Y27316D01* X24372Y27338D01* X24358Y27362D01* X24347Y27386D01* X24338Y27412D01* X24334Y27420D01* X24330Y27427D01* X24324Y27434D01* X24317Y27439D01* X24309Y27443D01* X24301Y27446D01* X24292Y27447D01* X24285Y27447D01* Y27546D01* X24292Y27546D01* X24300Y27547D01* X24308Y27550D01* X24316Y27555D01* X24323Y27560D01* X24329Y27567D01* X24333Y27574D01* X24336Y27582D01* X24345Y27608D01* X24356Y27633D01* X24369Y27657D01* X24384Y27679D01* X24401Y27700D01* X24420Y27719D01* X24441Y27737D01* X24463Y27752D01* X24465Y27754D01* Y27246D01* G37* G36* Y27866D02*X24441Y27855D01* X24409Y27837D01* X24380Y27816D01* X24352Y27793D01* X24327Y27767D01* X24304Y27739D01* X24285Y27711D01* Y29259D01* X24288Y29255D01* X24312Y29227D01* X24337Y29202D01* X24365Y29179D01* X24395Y29159D01* X24427Y29141D01* X24460Y29127D01* X24465Y29125D01* Y27866D01* G37* G36* Y29234D02*X24448Y29244D01* X24425Y29259D01* X24404Y29276D01* X24385Y29295D01* X24367Y29316D01* X24352Y29338D01* X24338Y29362D01* X24327Y29386D01* X24318Y29412D01* X24314Y29420D01* X24310Y29427D01* X24304Y29434D01* X24297Y29439D01* X24289Y29443D01* X24285Y29445D01* Y29549D01* X24288Y29550D01* X24296Y29555D01* X24303Y29560D01* X24309Y29567D01* X24313Y29574D01* X24316Y29582D01* X24325Y29608D01* X24336Y29633D01* X24349Y29657D01* X24364Y29679D01* X24381Y29700D01* X24400Y29719D01* X24421Y29737D01* X24443Y29752D01* X24465Y29765D01* Y29234D01* G37* G36* Y29874D02*X24453Y29870D01* X24421Y29855D01* X24389Y29837D01* X24360Y29816D01* X24332Y29793D01* X24307Y29767D01* X24285Y29740D01* Y31235D01* X24292Y31227D01* X24317Y31202D01* X24345Y31179D01* X24375Y31159D01* X24407Y31141D01* X24440Y31127D01* X24465Y31118D01* Y29874D01* G37* G36* Y31225D02*X24451Y31231D01* X24428Y31244D01* X24405Y31259D01* X24384Y31276D01* X24365Y31295D01* X24347Y31316D01* X24332Y31338D01* X24318Y31362D01* X24307Y31386D01* X24298Y31412D01* X24294Y31420D01* X24290Y31427D01* X24285Y31432D01* Y31563D01* X24289Y31567D01* X24293Y31574D01* X24296Y31582D01* X24305Y31608D01* X24316Y31633D01* X24329Y31657D01* X24344Y31679D01* X24361Y31700D01* X24380Y31719D01* X24401Y31737D01* X24423Y31752D01* X24447Y31766D01* X24465Y31775D01* Y31225D01* G37* G36* Y31881D02*X24433Y31870D01* X24401Y31855D01* X24369Y31837D01* X24340Y31816D01* X24312Y31793D01* X24287Y31767D01* X24285Y31765D01* Y33214D01* X24297Y33202D01* X24325Y33179D01* X24355Y33159D01* X24387Y33141D01* X24420Y33127D01* X24454Y33115D01* X24463Y33113D01* X24465D01* Y31881D01* G37* G36* Y33217D02*X24456Y33220D01* X24431Y33231D01* X24408Y33244D01* X24385Y33259D01* X24364Y33276D01* X24345Y33295D01* X24327Y33316D01* X24312Y33338D01* X24298Y33362D01* X24287Y33386D01* X24285Y33391D01* Y33609D01* X24296Y33633D01* X24309Y33657D01* X24324Y33679D01* X24341Y33700D01* X24360Y33719D01* X24381Y33737D01* X24403Y33752D01* X24427Y33766D01* X24451Y33777D01* X24465Y33782D01* Y33217D01* G37* G36* Y33884D02*X24465Y33884D01* X24456Y33884D01* X24448Y33882D01* X24413Y33870D01* X24381Y33855D01* X24349Y33837D01* X24320Y33816D01* X24292Y33793D01* X24285Y33785D01* Y35196D01* X24305Y35179D01* X24335Y35159D01* X24367Y35141D01* X24400Y35127D01* X24434Y35115D01* X24443Y35113D01* X24452Y35113D01* X24460Y35115D01* X24465Y35116D01* Y33884D01* G37* G36* Y35210D02*X24462Y35211D01* X24436Y35220D01* X24411Y35231D01* X24388Y35244D01* X24365Y35259D01* X24344Y35276D01* X24325Y35295D01* X24307Y35316D01* X24292Y35338D01* X24285Y35349D01* Y35650D01* X24289Y35657D01* X24304Y35679D01* X24321Y35700D01* X24340Y35719D01* X24361Y35737D01* X24383Y35752D01* X24407Y35766D01* X24431Y35777D01* X24457Y35786D01* X24465Y35790D01* X24465Y35790D01* Y35210D01* G37* G36* Y35878D02*X24462Y35880D01* X24453Y35883D01* X24445Y35884D01* X24436Y35884D01* X24428Y35882D01* X24393Y35870D01* X24361Y35855D01* X24329Y35837D01* X24300Y35816D01* X24285Y35804D01* Y37179D01* X24285Y37179D01* X24315Y37159D01* X24347Y37141D01* X24380Y37127D01* X24414Y37115D01* X24423Y37113D01* X24432Y37113D01* X24440Y37115D01* X24448Y37117D01* X24456Y37122D01* X24463Y37127D01* X24465Y37130D01* Y35878D01* G37* G36* Y37197D02*X24464Y37198D01* X24457Y37204D01* X24450Y37208D01* X24442Y37211D01* X24416Y37220D01* X24391Y37231D01* X24368Y37244D01* X24345Y37259D01* X24324Y37276D01* X24305Y37295D01* X24287Y37316D01* X24285Y37319D01* Y37680D01* X24301Y37700D01* X24320Y37719D01* X24341Y37737D01* X24363Y37752D01* X24387Y37766D01* X24411Y37777D01* X24437Y37786D01* X24445Y37790D01* X24452Y37794D01* X24459Y37800D01* X24464Y37807D01* X24465Y37809D01* Y37197D01* G37* G36* Y40000D02*X24724D01* Y39834D01* X24714Y39840D01* X24682Y39858D01* X24649Y39873D01* X24615Y39884D01* X24606Y39886D01* X24597Y39886D01* X24589Y39885D01* X24581Y39882D01* X24573Y39878D01* X24566Y39872D01* X24560Y39865D01* X24556Y39858D01* X24553Y39850D01* X24551Y39841D01* X24551Y39833D01* X24552Y39824D01* X24555Y39816D01* X24559Y39808D01* X24565Y39801D01* X24572Y39796D01* X24579Y39791D01* X24587Y39788D01* X24613Y39779D01* X24638Y39768D01* X24661Y39755D01* X24684Y39740D01* X24705Y39723D01* X24724Y39704D01* Y39295D01* X24709Y39280D01* X24688Y39262D01* X24666Y39247D01* X24642Y39233D01* X24618Y39222D01* X24592Y39213D01* X24584Y39209D01* X24577Y39205D01* X24570Y39199D01* X24565Y39192D01* X24561Y39184D01* X24558Y39176D01* X24557Y39167D01* X24557Y39159D01* X24559Y39150D01* X24562Y39142D01* X24567Y39135D01* X24573Y39128D01* X24580Y39123D01* X24587Y39119D01* X24596Y39116D01* X24604Y39115D01* X24613Y39115D01* X24621Y39117D01* X24656Y39129D01* X24688Y39144D01* X24720Y39162D01* X24724Y39165D01* Y37846D01* X24702Y37858D01* X24669Y37873D01* X24635Y37884D01* X24626Y37886D01* X24617Y37886D01* X24609Y37885D01* X24601Y37882D01* X24593Y37878D01* X24586Y37872D01* X24580Y37865D01* X24576Y37858D01* X24573Y37850D01* X24571Y37841D01* X24571Y37833D01* X24572Y37824D01* X24575Y37816D01* X24579Y37808D01* X24585Y37801D01* X24592Y37796D01* X24599Y37791D01* X24607Y37788D01* X24633Y37779D01* X24658Y37768D01* X24681Y37755D01* X24704Y37740D01* X24724Y37724D01* Y37276D01* X24708Y37262D01* X24686Y37247D01* X24662Y37233D01* X24638Y37222D01* X24612Y37213D01* X24604Y37209D01* X24597Y37205D01* X24590Y37199D01* X24585Y37192D01* X24581Y37184D01* X24578Y37176D01* X24577Y37167D01* X24577Y37159D01* X24579Y37150D01* X24582Y37142D01* X24587Y37135D01* X24593Y37128D01* X24600Y37123D01* X24607Y37119D01* X24616Y37116D01* X24624Y37115D01* X24633Y37115D01* X24641Y37117D01* X24676Y37129D01* X24708Y37144D01* X24724Y37153D01* Y35857D01* X24722Y35858D01* X24689Y35873D01* X24655Y35884D01* X24646Y35886D01* X24637Y35886D01* X24629Y35885D01* X24621Y35882D01* X24613Y35878D01* X24606Y35872D01* X24600Y35865D01* X24596Y35858D01* X24593Y35850D01* X24591Y35841D01* X24591Y35833D01* X24592Y35824D01* X24595Y35816D01* X24599Y35808D01* X24605Y35801D01* X24612Y35796D01* X24619Y35791D01* X24627Y35788D01* X24653Y35779D01* X24678Y35768D01* X24701Y35755D01* X24724Y35740D01* Y35259D01* X24706Y35247D01* X24682Y35233D01* X24658Y35222D01* X24632Y35213D01* X24624Y35209D01* X24617Y35205D01* X24610Y35199D01* X24605Y35192D01* X24601Y35184D01* X24598Y35176D01* X24597Y35167D01* X24597Y35159D01* X24599Y35150D01* X24602Y35142D01* X24607Y35135D01* X24613Y35128D01* X24620Y35123D01* X24627Y35119D01* X24636Y35116D01* X24644Y35115D01* X24653Y35115D01* X24661Y35117D01* X24696Y35129D01* X24724Y35142D01* Y33866D01* X24709Y33873D01* X24675Y33884D01* X24666Y33886D01* X24657Y33886D01* X24649Y33885D01* X24641Y33882D01* X24633Y33878D01* X24626Y33872D01* X24620Y33865D01* X24616Y33858D01* X24613Y33850D01* X24611Y33841D01* X24611Y33833D01* X24612Y33824D01* X24615Y33816D01* X24619Y33808D01* X24625Y33801D01* X24632Y33796D01* X24639Y33791D01* X24647Y33788D01* X24673Y33779D01* X24698Y33768D01* X24721Y33755D01* X24724Y33754D01* Y33246D01* X24702Y33233D01* X24678Y33222D01* X24652Y33213D01* X24644Y33209D01* X24637Y33205D01* X24630Y33199D01* X24625Y33192D01* X24621Y33184D01* X24618Y33176D01* X24617Y33167D01* X24617Y33159D01* X24619Y33150D01* X24622Y33142D01* X24627Y33135D01* X24633Y33128D01* X24640Y33123D01* X24647Y33119D01* X24656Y33116D01* X24664Y33115D01* X24673Y33115D01* X24681Y33117D01* X24716Y33129D01* X24724Y33133D01* Y31874D01* X24695Y31884D01* X24686Y31886D01* X24677Y31886D01* X24669Y31885D01* X24661Y31882D01* X24653Y31878D01* X24646Y31872D01* X24640Y31865D01* X24636Y31858D01* X24633Y31850D01* X24631Y31841D01* X24631Y31833D01* X24632Y31824D01* X24635Y31816D01* X24639Y31808D01* X24645Y31801D01* X24652Y31796D01* X24659Y31791D01* X24667Y31788D01* X24693Y31779D01* X24718Y31768D01* X24724Y31765D01* Y31234D01* X24722Y31233D01* X24698Y31222D01* X24672Y31213D01* X24664Y31209D01* X24657Y31205D01* X24650Y31199D01* X24645Y31192D01* X24641Y31184D01* X24638Y31176D01* X24637Y31167D01* X24637Y31159D01* X24639Y31150D01* X24642Y31142D01* X24647Y31135D01* X24653Y31128D01* X24660Y31123D01* X24667Y31119D01* X24676Y31116D01* X24684Y31115D01* X24693Y31115D01* X24701Y31117D01* X24724Y31125D01* Y29881D01* X24715Y29884D01* X24706Y29886D01* X24697Y29886D01* X24689Y29885D01* X24681Y29882D01* X24673Y29878D01* X24666Y29872D01* X24660Y29865D01* X24656Y29858D01* X24653Y29850D01* X24651Y29841D01* X24651Y29833D01* X24652Y29824D01* X24655Y29816D01* X24659Y29808D01* X24665Y29801D01* X24672Y29796D01* X24679Y29791D01* X24687Y29788D01* X24713Y29779D01* X24724Y29774D01* Y29225D01* X24718Y29222D01* X24692Y29213D01* X24684Y29209D01* X24677Y29205D01* X24670Y29199D01* X24665Y29192D01* X24661Y29184D01* X24658Y29176D01* X24657Y29167D01* X24657Y29159D01* X24659Y29150D01* X24662Y29142D01* X24667Y29135D01* X24673Y29128D01* X24680Y29123D01* X24687Y29119D01* X24696Y29116D01* X24704Y29115D01* X24713Y29115D01* X24721Y29117D01* X24724Y29118D01* Y27886D01* X24717Y27886D01* X24709Y27885D01* X24701Y27882D01* X24693Y27878D01* X24686Y27872D01* X24680Y27865D01* X24676Y27858D01* X24673Y27850D01* X24671Y27841D01* X24671Y27833D01* X24672Y27824D01* X24675Y27816D01* X24679Y27808D01* X24685Y27801D01* X24692Y27796D01* X24699Y27791D01* X24707Y27788D01* X24724Y27782D01* Y27217D01* X24712Y27213D01* X24704Y27209D01* X24697Y27205D01* X24690Y27199D01* X24685Y27192D01* X24681Y27184D01* X24678Y27176D01* X24677Y27167D01* X24677Y27159D01* X24679Y27150D01* X24682Y27142D01* X24687Y27135D01* X24693Y27128D01* X24700Y27123D01* X24707Y27119D01* X24716Y27116D01* X24724Y27115D01* Y25883D01* X24721Y25882D01* X24713Y25878D01* X24706Y25872D01* X24700Y25865D01* X24696Y25858D01* X24693Y25850D01* X24691Y25841D01* X24691Y25833D01* X24692Y25824D01* X24695Y25816D01* X24699Y25808D01* X24705Y25801D01* X24712Y25796D01* X24719Y25791D01* X24724Y25789D01* Y25209D01* X24717Y25205D01* X24710Y25199D01* X24705Y25192D01* X24701Y25184D01* X24698Y25176D01* X24697Y25167D01* X24697Y25159D01* X24699Y25150D01* X24702Y25142D01* X24707Y25135D01* X24713Y25128D01* X24720Y25123D01* X24724Y25121D01* Y23870D01* X24720Y23865D01* X24716Y23858D01* X24713Y23850D01* X24711Y23841D01* X24711Y23833D01* X24712Y23824D01* X24715Y23816D01* X24719Y23808D01* X24724Y23802D01* Y23190D01* X24721Y23184D01* X24718Y23176D01* X24717Y23167D01* X24717Y23159D01* X24719Y23150D01* X24722Y23142D01* X24724Y23140D01* Y11861D01* X24722Y11864D01* X24716Y11871D01* X24709Y11876D01* X24702Y11880D01* X24693Y11883D01* X24685Y11884D01* X24676Y11884D01* X24668Y11882D01* X24633Y11870D01* X24601Y11855D01* X24569Y11837D01* X24540Y11816D01* X24512Y11793D01* X24487Y11767D01* X24465Y11740D01* Y13235D01* X24472Y13227D01* X24497Y13202D01* X24525Y13179D01* X24555Y13159D01* X24587Y13141D01* X24620Y13127D01* X24654Y13115D01* X24663Y13113D01* X24672Y13113D01* X24680Y13115D01* X24688Y13117D01* X24696Y13122D01* X24703Y13127D01* X24709Y13134D01* X24713Y13141D01* X24716Y13149D01* X24718Y13158D01* X24718Y13167D01* X24717Y13175D01* X24714Y13183D01* X24710Y13191D01* X24704Y13198D01* X24697Y13204D01* X24690Y13208D01* X24682Y13211D01* X24656Y13220D01* X24631Y13231D01* X24608Y13244D01* X24585Y13259D01* X24564Y13276D01* X24545Y13295D01* X24527Y13316D01* X24512Y13338D01* X24498Y13362D01* X24487Y13386D01* X24478Y13412D01* X24474Y13420D01* X24470Y13427D01* X24465Y13432D01* Y13563D01* X24469Y13567D01* X24473Y13574D01* X24476Y13582D01* X24485Y13608D01* X24496Y13633D01* X24509Y13657D01* X24524Y13679D01* X24541Y13700D01* X24560Y13719D01* X24581Y13737D01* X24603Y13752D01* X24627Y13766D01* X24651Y13777D01* X24677Y13786D01* X24685Y13790D01* X24692Y13794D01* X24699Y13800D01* X24704Y13807D01* X24708Y13815D01* X24711Y13823D01* X24712Y13832D01* X24712Y13840D01* X24710Y13849D01* X24707Y13857D01* X24702Y13864D01* X24696Y13871D01* X24689Y13876D01* X24682Y13880D01* X24673Y13883D01* X24665Y13884D01* X24656Y13884D01* X24648Y13882D01* X24613Y13870D01* X24581Y13855D01* X24549Y13837D01* X24520Y13816D01* X24492Y13793D01* X24467Y13767D01* X24465Y13765D01* Y15214D01* X24477Y15202D01* X24505Y15179D01* X24535Y15159D01* X24567Y15141D01* X24600Y15127D01* X24634Y15115D01* X24643Y15113D01* X24652Y15113D01* X24660Y15115D01* X24668Y15117D01* X24676Y15122D01* X24683Y15127D01* X24689Y15134D01* X24693Y15141D01* X24696Y15149D01* X24698Y15158D01* X24698Y15167D01* X24697Y15175D01* X24694Y15183D01* X24690Y15191D01* X24684Y15198D01* X24677Y15204D01* X24670Y15208D01* X24662Y15211D01* X24636Y15220D01* X24611Y15231D01* X24588Y15244D01* X24565Y15259D01* X24544Y15276D01* X24525Y15295D01* X24507Y15316D01* X24492Y15338D01* X24478Y15362D01* X24467Y15386D01* X24465Y15391D01* Y15609D01* X24476Y15633D01* X24489Y15657D01* X24504Y15679D01* X24521Y15700D01* X24540Y15719D01* X24561Y15737D01* X24583Y15752D01* X24607Y15766D01* X24631Y15777D01* X24657Y15786D01* X24665Y15790D01* X24672Y15794D01* X24679Y15800D01* X24684Y15807D01* X24688Y15815D01* X24691Y15823D01* X24692Y15832D01* X24692Y15840D01* X24690Y15849D01* X24687Y15857D01* X24682Y15864D01* X24676Y15871D01* X24669Y15876D01* X24662Y15880D01* X24653Y15883D01* X24645Y15884D01* X24636Y15884D01* X24628Y15882D01* X24593Y15870D01* X24561Y15855D01* X24529Y15837D01* X24500Y15816D01* X24472Y15793D01* X24465Y15785D01* Y17196D01* X24485Y17179D01* X24515Y17159D01* X24547Y17141D01* X24580Y17127D01* X24614Y17115D01* X24623Y17113D01* X24632Y17113D01* X24640Y17115D01* X24648Y17117D01* X24656Y17122D01* X24663Y17127D01* X24669Y17134D01* X24673Y17141D01* X24676Y17149D01* X24678Y17158D01* X24678Y17167D01* X24677Y17175D01* X24674Y17183D01* X24670Y17191D01* X24664Y17198D01* X24657Y17204D01* X24650Y17208D01* X24642Y17211D01* X24616Y17220D01* X24591Y17231D01* X24568Y17244D01* X24545Y17259D01* X24524Y17276D01* X24505Y17295D01* X24487Y17316D01* X24472Y17338D01* X24465Y17349D01* Y17650D01* X24469Y17657D01* X24484Y17679D01* X24501Y17700D01* X24520Y17719D01* X24541Y17737D01* X24563Y17752D01* X24587Y17766D01* X24611Y17777D01* X24637Y17786D01* X24645Y17790D01* X24652Y17794D01* X24659Y17800D01* X24664Y17807D01* X24668Y17815D01* X24671Y17823D01* X24672Y17832D01* X24672Y17840D01* X24670Y17849D01* X24667Y17857D01* X24662Y17864D01* X24656Y17871D01* X24649Y17876D01* X24642Y17880D01* X24633Y17883D01* X24625Y17884D01* X24616Y17884D01* X24608Y17882D01* X24573Y17870D01* X24541Y17855D01* X24509Y17837D01* X24480Y17816D01* X24465Y17804D01* Y19179D01* X24465Y19179D01* X24495Y19159D01* X24527Y19141D01* X24560Y19127D01* X24594Y19115D01* X24603Y19113D01* X24612Y19113D01* X24620Y19115D01* X24628Y19117D01* X24636Y19122D01* X24643Y19127D01* X24649Y19134D01* X24653Y19141D01* X24656Y19149D01* X24658Y19158D01* X24658Y19167D01* X24657Y19175D01* X24654Y19183D01* X24650Y19191D01* X24644Y19198D01* X24637Y19204D01* X24630Y19208D01* X24622Y19211D01* X24596Y19220D01* X24571Y19231D01* X24548Y19244D01* X24525Y19259D01* X24504Y19276D01* X24485Y19295D01* X24467Y19316D01* X24465Y19319D01* Y19680D01* X24481Y19700D01* X24500Y19719D01* X24521Y19737D01* X24543Y19752D01* X24567Y19766D01* X24591Y19777D01* X24617Y19786D01* X24625Y19790D01* X24632Y19794D01* X24639Y19800D01* X24644Y19807D01* X24648Y19815D01* X24651Y19823D01* X24652Y19832D01* X24652Y19840D01* X24650Y19849D01* X24647Y19857D01* X24642Y19864D01* X24636Y19871D01* X24629Y19876D01* X24622Y19880D01* X24613Y19883D01* X24605Y19884D01* X24596Y19884D01* X24588Y19882D01* X24553Y19870D01* X24521Y19855D01* X24489Y19837D01* X24465Y19820D01* Y21166D01* X24475Y21159D01* X24507Y21141D01* X24540Y21127D01* X24574Y21115D01* X24583Y21113D01* X24592Y21113D01* X24600Y21115D01* X24608Y21117D01* X24616Y21122D01* X24623Y21127D01* X24629Y21134D01* X24633Y21141D01* X24636Y21149D01* X24638Y21158D01* X24638Y21167D01* X24637Y21175D01* X24634Y21183D01* X24630Y21191D01* X24624Y21198D01* X24617Y21204D01* X24610Y21208D01* X24602Y21211D01* X24576Y21220D01* X24551Y21231D01* X24528Y21244D01* X24505Y21259D01* X24484Y21276D01* X24465Y21295D01* Y21704D01* X24480Y21719D01* X24501Y21737D01* X24523Y21752D01* X24547Y21766D01* X24571Y21777D01* X24597Y21786D01* X24605Y21790D01* X24612Y21794D01* X24619Y21800D01* X24624Y21807D01* X24628Y21815D01* X24631Y21823D01* X24632Y21832D01* X24632Y21840D01* X24630Y21849D01* X24627Y21857D01* X24622Y21864D01* X24616Y21871D01* X24609Y21876D01* X24602Y21880D01* X24593Y21883D01* X24585Y21884D01* X24576Y21884D01* X24568Y21882D01* X24533Y21870D01* X24501Y21855D01* X24469Y21837D01* X24465Y21834D01* Y23153D01* X24487Y23141D01* X24520Y23127D01* X24554Y23115D01* X24563Y23113D01* X24572Y23113D01* X24580Y23115D01* X24588Y23117D01* X24596Y23122D01* X24603Y23127D01* X24609Y23134D01* X24613Y23141D01* X24616Y23149D01* X24618Y23158D01* X24618Y23167D01* X24617Y23175D01* X24614Y23183D01* X24610Y23191D01* X24604Y23198D01* X24597Y23204D01* X24590Y23208D01* X24582Y23211D01* X24556Y23220D01* X24531Y23231D01* X24508Y23244D01* X24485Y23259D01* X24465Y23276D01* Y23723D01* X24481Y23737D01* X24503Y23752D01* X24527Y23766D01* X24551Y23777D01* X24577Y23786D01* X24585Y23790D01* X24592Y23794D01* X24599Y23800D01* X24604Y23807D01* X24608Y23815D01* X24611Y23823D01* X24612Y23832D01* X24612Y23840D01* X24610Y23849D01* X24607Y23857D01* X24602Y23864D01* X24596Y23871D01* X24589Y23876D01* X24582Y23880D01* X24573Y23883D01* X24565Y23884D01* X24556Y23884D01* X24548Y23882D01* X24513Y23870D01* X24481Y23855D01* X24465Y23846D01* Y25142D01* X24467Y25141D01* X24500Y25127D01* X24534Y25115D01* X24543Y25113D01* X24552Y25113D01* X24560Y25115D01* X24568Y25117D01* X24576Y25122D01* X24583Y25127D01* X24589Y25134D01* X24593Y25141D01* X24596Y25149D01* X24598Y25158D01* X24598Y25167D01* X24597Y25175D01* X24594Y25183D01* X24590Y25191D01* X24584Y25198D01* X24577Y25204D01* X24570Y25208D01* X24562Y25211D01* X24536Y25220D01* X24511Y25231D01* X24488Y25244D01* X24465Y25259D01* Y25740D01* X24483Y25752D01* X24507Y25766D01* X24531Y25777D01* X24557Y25786D01* X24565Y25790D01* X24572Y25794D01* X24579Y25800D01* X24584Y25807D01* X24588Y25815D01* X24591Y25823D01* X24592Y25832D01* X24592Y25840D01* X24590Y25849D01* X24587Y25857D01* X24582Y25864D01* X24576Y25871D01* X24569Y25876D01* X24562Y25880D01* X24553Y25883D01* X24545Y25884D01* X24536Y25884D01* X24528Y25882D01* X24493Y25870D01* X24465Y25857D01* Y27133D01* X24480Y27127D01* X24514Y27115D01* X24523Y27113D01* X24532Y27113D01* X24540Y27115D01* X24548Y27117D01* X24556Y27122D01* X24563Y27127D01* X24569Y27134D01* X24573Y27141D01* X24576Y27149D01* X24578Y27158D01* X24578Y27167D01* X24577Y27175D01* X24574Y27183D01* X24570Y27191D01* X24564Y27198D01* X24557Y27204D01* X24550Y27208D01* X24542Y27211D01* X24516Y27220D01* X24491Y27231D01* X24468Y27244D01* X24465Y27246D01* Y27754D01* X24487Y27766D01* X24511Y27777D01* X24537Y27786D01* X24545Y27790D01* X24552Y27794D01* X24559Y27800D01* X24564Y27807D01* X24568Y27815D01* X24571Y27823D01* X24572Y27832D01* X24572Y27840D01* X24570Y27849D01* X24567Y27857D01* X24562Y27864D01* X24556Y27871D01* X24549Y27876D01* X24542Y27880D01* X24533Y27883D01* X24525Y27884D01* X24516Y27884D01* X24508Y27882D01* X24473Y27870D01* X24465Y27866D01* Y29125D01* X24494Y29115D01* X24503Y29113D01* X24512Y29113D01* X24520Y29115D01* X24528Y29117D01* X24536Y29122D01* X24543Y29127D01* X24549Y29134D01* X24553Y29141D01* X24556Y29149D01* X24558Y29158D01* X24558Y29167D01* X24557Y29175D01* X24554Y29183D01* X24550Y29191D01* X24544Y29198D01* X24537Y29204D01* X24530Y29208D01* X24522Y29211D01* X24496Y29220D01* X24471Y29231D01* X24465Y29234D01* Y29765D01* X24467Y29766D01* X24491Y29777D01* X24517Y29786D01* X24525Y29790D01* X24532Y29794D01* X24539Y29800D01* X24544Y29807D01* X24548Y29815D01* X24551Y29823D01* X24552Y29832D01* X24552Y29840D01* X24550Y29849D01* X24547Y29857D01* X24542Y29864D01* X24536Y29871D01* X24529Y29876D01* X24522Y29880D01* X24513Y29883D01* X24505Y29884D01* X24496Y29884D01* X24488Y29882D01* X24465Y29874D01* Y31118D01* X24474Y31115D01* X24483Y31113D01* X24492Y31113D01* X24500Y31115D01* X24508Y31117D01* X24516Y31122D01* X24523Y31127D01* X24529Y31134D01* X24533Y31141D01* X24536Y31149D01* X24538Y31158D01* X24538Y31167D01* X24537Y31175D01* X24534Y31183D01* X24530Y31191D01* X24524Y31198D01* X24517Y31204D01* X24510Y31208D01* X24502Y31211D01* X24476Y31220D01* X24465Y31225D01* Y31775D01* X24471Y31777D01* X24497Y31786D01* X24505Y31790D01* X24512Y31794D01* X24519Y31800D01* X24524Y31807D01* X24528Y31815D01* X24531Y31823D01* X24532Y31832D01* X24532Y31840D01* X24530Y31849D01* X24527Y31857D01* X24522Y31864D01* X24516Y31871D01* X24509Y31876D01* X24502Y31880D01* X24493Y31883D01* X24485Y31884D01* X24476Y31884D01* X24468Y31882D01* X24465Y31881D01* Y33113D01* X24472Y33113D01* X24480Y33115D01* X24488Y33117D01* X24496Y33122D01* X24503Y33127D01* X24509Y33134D01* X24513Y33141D01* X24516Y33149D01* X24518Y33158D01* X24518Y33167D01* X24517Y33175D01* X24514Y33183D01* X24510Y33191D01* X24504Y33198D01* X24497Y33204D01* X24490Y33208D01* X24482Y33211D01* X24465Y33217D01* Y33782D01* X24477Y33786D01* X24485Y33790D01* X24492Y33794D01* X24499Y33800D01* X24504Y33807D01* X24508Y33815D01* X24511Y33823D01* X24512Y33832D01* X24512Y33840D01* X24510Y33849D01* X24507Y33857D01* X24502Y33864D01* X24496Y33871D01* X24489Y33876D01* X24482Y33880D01* X24473Y33883D01* X24465Y33884D01* Y35116D01* X24468Y35117D01* X24476Y35122D01* X24483Y35127D01* X24489Y35134D01* X24493Y35141D01* X24496Y35149D01* X24498Y35158D01* X24498Y35167D01* X24497Y35175D01* X24494Y35183D01* X24490Y35191D01* X24484Y35198D01* X24477Y35204D01* X24470Y35208D01* X24465Y35210D01* Y35790D01* X24472Y35794D01* X24479Y35800D01* X24484Y35807D01* X24488Y35815D01* X24491Y35823D01* X24492Y35832D01* X24492Y35840D01* X24490Y35849D01* X24487Y35857D01* X24482Y35864D01* X24476Y35871D01* X24469Y35876D01* X24465Y35878D01* Y37130D01* X24469Y37134D01* X24473Y37141D01* X24476Y37149D01* X24478Y37158D01* X24478Y37167D01* X24477Y37175D01* X24474Y37183D01* X24470Y37191D01* X24465Y37197D01* Y37809D01* X24468Y37815D01* X24471Y37823D01* X24472Y37832D01* X24472Y37840D01* X24470Y37849D01* X24467Y37857D01* X24465Y37859D01* Y40000D01* G37* G36* Y11549D02*X24468Y11550D01* X24476Y11555D01* X24483Y11560D01* X24489Y11567D01* X24493Y11574D01* X24496Y11582D01* X24505Y11608D01* X24516Y11633D01* X24529Y11657D01* X24544Y11679D01* X24561Y11700D01* X24580Y11719D01* X24601Y11737D01* X24623Y11752D01* X24647Y11766D01* X24671Y11777D01* X24697Y11786D01* X24705Y11790D01* X24712Y11794D01* X24719Y11800D01* X24724Y11807D01* Y11198D01* X24717Y11204D01* X24710Y11208D01* X24702Y11211D01* X24676Y11220D01* X24651Y11231D01* X24628Y11244D01* X24605Y11259D01* X24584Y11276D01* X24565Y11295D01* X24547Y11316D01* X24532Y11338D01* X24518Y11362D01* X24507Y11386D01* X24498Y11412D01* X24494Y11420D01* X24490Y11427D01* X24484Y11434D01* X24477Y11439D01* X24469Y11443D01* X24465Y11445D01* Y11549D01* G37* G36* Y11259D02*X24468Y11255D01* X24492Y11227D01* X24517Y11202D01* X24545Y11179D01* X24575Y11159D01* X24607Y11141D01* X24640Y11127D01* X24674Y11115D01* X24683Y11113D01* X24692Y11113D01* X24700Y11115D01* X24708Y11117D01* X24716Y11122D01* X24723Y11127D01* X24724Y11128D01* Y9879D01* X24722Y9880D01* X24713Y9883D01* X24705Y9884D01* X24696Y9884D01* X24688Y9882D01* X24653Y9870D01* X24621Y9855D01* X24589Y9837D01* X24560Y9816D01* X24532Y9793D01* X24507Y9767D01* X24484Y9739D01* X24465Y9711D01* Y11259D01* G37* G36* Y9546D02*X24472Y9546D01* X24480Y9547D01* X24488Y9550D01* X24496Y9555D01* X24503Y9560D01* X24509Y9567D01* X24513Y9574D01* X24516Y9582D01* X24525Y9608D01* X24536Y9633D01* X24549Y9657D01* X24564Y9679D01* X24581Y9700D01* X24600Y9719D01* X24621Y9737D01* X24643Y9752D01* X24667Y9766D01* X24691Y9777D01* X24717Y9786D01* X24724Y9789D01* Y9210D01* X24722Y9211D01* X24696Y9220D01* X24671Y9231D01* X24648Y9244D01* X24625Y9259D01* X24604Y9276D01* X24585Y9295D01* X24567Y9316D01* X24552Y9338D01* X24538Y9362D01* X24527Y9386D01* X24518Y9412D01* X24514Y9420D01* X24510Y9427D01* X24504Y9434D01* X24497Y9439D01* X24489Y9443D01* X24481Y9446D01* X24472Y9447D01* X24465Y9447D01* Y9546D01* G37* G36* Y9288D02*X24467Y9284D01* X24488Y9255D01* X24512Y9227D01* X24537Y9202D01* X24565Y9179D01* X24595Y9159D01* X24627Y9141D01* X24660Y9127D01* X24694Y9115D01* X24703Y9113D01* X24712Y9113D01* X24720Y9115D01* X24724Y9116D01* Y7884D01* X24716Y7884D01* X24708Y7882D01* X24673Y7870D01* X24641Y7855D01* X24609Y7837D01* X24580Y7816D01* X24552Y7793D01* X24527Y7767D01* X24504Y7739D01* X24484Y7709D01* X24466Y7677D01* X24465Y7675D01* Y9288D01* G37* G36* Y7552D02*X24466Y7551D01* X24474Y7548D01* X24483Y7546D01* X24492Y7546D01* X24500Y7547D01* X24508Y7550D01* X24516Y7555D01* X24523Y7560D01* X24529Y7567D01* X24533Y7574D01* X24536Y7582D01* X24545Y7608D01* X24556Y7633D01* X24569Y7657D01* X24584Y7679D01* X24601Y7700D01* X24620Y7719D01* X24641Y7737D01* X24663Y7752D01* X24687Y7766D01* X24711Y7777D01* X24724Y7782D01* Y7217D01* X24716Y7220D01* X24691Y7231D01* X24668Y7244D01* X24645Y7259D01* X24624Y7276D01* X24605Y7295D01* X24587Y7316D01* X24572Y7338D01* X24558Y7362D01* X24547Y7386D01* X24538Y7412D01* X24534Y7420D01* X24530Y7427D01* X24524Y7434D01* X24517Y7439D01* X24509Y7443D01* X24501Y7446D01* X24492Y7447D01* X24484Y7447D01* X24475Y7445D01* X24467Y7442D01* X24465Y7441D01* Y7552D01* G37* G36* Y7325D02*X24469Y7316D01* X24487Y7284D01* X24508Y7255D01* X24532Y7227D01* X24557Y7202D01* X24585Y7179D01* X24615Y7159D01* X24647Y7141D01* X24680Y7127D01* X24714Y7115D01* X24723Y7113D01* X24724D01* Y5881D01* X24693Y5870D01* X24661Y5855D01* X24629Y5837D01* X24600Y5816D01* X24572Y5793D01* X24547Y5767D01* X24524Y5739D01* X24504Y5709D01* X24486Y5677D01* X24472Y5644D01* X24465Y5625D01* Y7325D01* G37* G36* Y5571D02*X24467Y5568D01* X24472Y5561D01* X24479Y5556D01* X24486Y5551D01* X24494Y5548D01* X24503Y5546D01* X24512Y5546D01* X24520Y5547D01* X24528Y5550D01* X24536Y5555D01* X24543Y5560D01* X24549Y5567D01* X24553Y5574D01* X24556Y5582D01* X24565Y5608D01* X24576Y5633D01* X24589Y5657D01* X24604Y5679D01* X24621Y5700D01* X24640Y5719D01* X24661Y5737D01* X24683Y5752D01* X24707Y5766D01* X24724Y5774D01* Y5225D01* X24711Y5231D01* X24688Y5244D01* X24665Y5259D01* X24644Y5276D01* X24625Y5295D01* X24607Y5316D01* X24592Y5338D01* X24578Y5362D01* X24567Y5386D01* X24558Y5412D01* X24554Y5420D01* X24550Y5427D01* X24544Y5434D01* X24537Y5439D01* X24529Y5443D01* X24521Y5446D01* X24512Y5447D01* X24504Y5447D01* X24495Y5445D01* X24487Y5442D01* X24480Y5437D01* X24473Y5431D01* X24468Y5424D01* X24465Y5419D01* Y5571D01* G37* G36* Y5374D02*X24474Y5349D01* X24489Y5316D01* X24507Y5284D01* X24528Y5255D01* X24552Y5227D01* X24577Y5202D01* X24605Y5179D01* X24635Y5159D01* X24667Y5141D01* X24700Y5127D01* X24724Y5119D01* Y3874D01* X24713Y3870D01* X24681Y3855D01* X24649Y3837D01* X24620Y3816D01* X24592Y3793D01* X24567Y3767D01* X24544Y3739D01* X24524Y3709D01* X24506Y3677D01* X24492Y3644D01* X24480Y3610D01* X24478Y3601D01* X24478Y3593D01* X24479Y3584D01* X24482Y3576D01* X24487Y3568D01* X24492Y3561D01* X24499Y3556D01* X24506Y3551D01* X24514Y3548D01* X24523Y3546D01* X24532Y3546D01* X24540Y3547D01* X24548Y3550D01* X24556Y3555D01* X24563Y3560D01* X24569Y3567D01* X24573Y3574D01* X24576Y3582D01* X24585Y3608D01* X24596Y3633D01* X24609Y3657D01* X24624Y3679D01* X24641Y3700D01* X24660Y3719D01* X24681Y3737D01* X24703Y3752D01* X24724Y3764D01* Y3235D01* X24708Y3244D01* X24685Y3259D01* X24664Y3276D01* X24645Y3295D01* X24627Y3316D01* X24612Y3338D01* X24598Y3362D01* X24587Y3386D01* X24578Y3412D01* X24574Y3420D01* X24570Y3427D01* X24564Y3434D01* X24557Y3439D01* X24549Y3443D01* X24541Y3446D01* X24532Y3447D01* X24524Y3447D01* X24515Y3445D01* X24507Y3442D01* X24500Y3437D01* X24493Y3431D01* X24488Y3424D01* X24484Y3417D01* X24481Y3409D01* X24480Y3400D01* X24480Y3391D01* X24482Y3383D01* X24494Y3349D01* X24509Y3316D01* X24527Y3284D01* X24548Y3255D01* X24572Y3227D01* X24597Y3202D01* X24625Y3179D01* X24655Y3159D01* X24687Y3141D01* X24720Y3127D01* X24724Y3125D01* Y1866D01* X24701Y1855D01* X24669Y1837D01* X24640Y1816D01* X24612Y1793D01* X24587Y1767D01* X24564Y1739D01* X24544Y1709D01* X24526Y1677D01* X24512Y1644D01* X24500Y1610D01* X24498Y1601D01* X24498Y1593D01* X24499Y1584D01* X24502Y1576D01* X24507Y1568D01* X24512Y1561D01* X24519Y1556D01* X24526Y1551D01* X24534Y1548D01* X24543Y1546D01* X24552Y1546D01* X24560Y1547D01* X24568Y1550D01* X24576Y1555D01* X24583Y1560D01* X24589Y1567D01* X24593Y1574D01* X24596Y1582D01* X24605Y1608D01* X24616Y1633D01* X24629Y1657D01* X24644Y1679D01* X24661Y1700D01* X24680Y1719D01* X24701Y1737D01* X24723Y1752D01* X24724Y1753D01* Y1246D01* X24705Y1259D01* X24684Y1276D01* X24665Y1295D01* X24647Y1316D01* X24632Y1338D01* X24618Y1362D01* X24607Y1386D01* X24598Y1412D01* X24594Y1420D01* X24590Y1427D01* X24584Y1434D01* X24577Y1439D01* X24569Y1443D01* X24561Y1446D01* X24552Y1447D01* X24544Y1447D01* X24535Y1445D01* X24527Y1442D01* X24520Y1437D01* X24513Y1431D01* X24508Y1424D01* X24504Y1417D01* X24501Y1409D01* X24500Y1400D01* X24500Y1391D01* X24502Y1383D01* X24514Y1349D01* X24529Y1316D01* X24547Y1284D01* X24568Y1255D01* X24592Y1227D01* X24617Y1202D01* X24645Y1179D01* X24675Y1159D01* X24707Y1141D01* X24724Y1134D01* Y0D01* X24465D01* Y5374D01* G37* G36* X24724Y40000D02*X24904D01* Y37625D01* X24895Y37651D01* X24880Y37683D01* X24862Y37715D01* X24841Y37744D01* X24817Y37772D01* X24792Y37797D01* X24764Y37820D01* X24734Y37840D01* X24724Y37846D01* Y39165D01* X24749Y39183D01* X24777Y39207D01* X24802Y39232D01* X24825Y39260D01* X24845Y39290D01* X24863Y39322D01* X24877Y39355D01* X24889Y39389D01* X24891Y39398D01* X24891Y39407D01* X24890Y39415D01* X24887Y39423D01* X24882Y39431D01* X24877Y39438D01* X24870Y39444D01* X24863Y39448D01* X24855Y39451D01* X24846Y39453D01* X24837Y39453D01* X24829Y39452D01* X24821Y39449D01* X24813Y39445D01* X24806Y39439D01* X24800Y39433D01* X24796Y39425D01* X24793Y39417D01* X24784Y39391D01* X24773Y39366D01* X24760Y39343D01* X24745Y39320D01* X24728Y39299D01* X24724Y39295D01* Y39704D01* X24724Y39704D01* X24742Y39683D01* X24757Y39661D01* X24771Y39637D01* X24782Y39613D01* X24791Y39587D01* X24795Y39579D01* X24799Y39572D01* X24805Y39565D01* X24812Y39560D01* X24820Y39556D01* X24828Y39553D01* X24837Y39552D01* X24845Y39552D01* X24854Y39554D01* X24862Y39557D01* X24869Y39562D01* X24876Y39568D01* X24881Y39575D01* X24885Y39582D01* X24888Y39591D01* X24889Y39599D01* X24889Y39608D01* X24887Y39617D01* X24875Y39651D01* X24860Y39683D01* X24842Y39715D01* X24821Y39744D01* X24797Y39772D01* X24772Y39797D01* X24744Y39820D01* X24724Y39834D01* Y40000D01* G37* G36* X24904Y0D02*X24724D01* Y1134D01* X24740Y1127D01* X24774Y1115D01* X24783Y1113D01* X24792Y1113D01* X24800Y1115D01* X24808Y1117D01* X24816Y1122D01* X24823Y1127D01* X24829Y1134D01* X24833Y1141D01* X24836Y1149D01* X24838Y1158D01* X24838Y1167D01* X24837Y1175D01* X24834Y1183D01* X24830Y1191D01* X24824Y1198D01* X24817Y1204D01* X24810Y1208D01* X24802Y1211D01* X24776Y1220D01* X24751Y1231D01* X24728Y1244D01* X24724Y1246D01* Y1753D01* X24747Y1766D01* X24771Y1777D01* X24797Y1786D01* X24805Y1790D01* X24812Y1794D01* X24819Y1800D01* X24824Y1807D01* X24828Y1815D01* X24831Y1823D01* X24832Y1832D01* X24832Y1840D01* X24830Y1849D01* X24827Y1857D01* X24822Y1864D01* X24816Y1871D01* X24809Y1876D01* X24802Y1880D01* X24793Y1883D01* X24785Y1884D01* X24776Y1884D01* X24768Y1882D01* X24733Y1870D01* X24724Y1866D01* Y3125D01* X24754Y3115D01* X24763Y3113D01* X24772Y3113D01* X24780Y3115D01* X24788Y3117D01* X24796Y3122D01* X24803Y3127D01* X24809Y3134D01* X24813Y3141D01* X24816Y3149D01* X24818Y3158D01* X24818Y3167D01* X24817Y3175D01* X24814Y3183D01* X24810Y3191D01* X24804Y3198D01* X24797Y3204D01* X24790Y3208D01* X24782Y3211D01* X24756Y3220D01* X24731Y3231D01* X24724Y3235D01* Y3764D01* X24727Y3766D01* X24751Y3777D01* X24777Y3786D01* X24785Y3790D01* X24792Y3794D01* X24799Y3800D01* X24804Y3807D01* X24808Y3815D01* X24811Y3823D01* X24812Y3832D01* X24812Y3840D01* X24810Y3849D01* X24807Y3857D01* X24802Y3864D01* X24796Y3871D01* X24789Y3876D01* X24782Y3880D01* X24773Y3883D01* X24765Y3884D01* X24756Y3884D01* X24748Y3882D01* X24724Y3874D01* Y5119D01* X24734Y5115D01* X24743Y5113D01* X24752Y5113D01* X24760Y5115D01* X24768Y5117D01* X24776Y5122D01* X24783Y5127D01* X24789Y5134D01* X24793Y5141D01* X24796Y5149D01* X24798Y5158D01* X24798Y5167D01* X24797Y5175D01* X24794Y5183D01* X24790Y5191D01* X24784Y5198D01* X24777Y5204D01* X24770Y5208D01* X24762Y5211D01* X24736Y5220D01* X24724Y5225D01* Y5774D01* X24731Y5777D01* X24757Y5786D01* X24765Y5790D01* X24772Y5794D01* X24779Y5800D01* X24784Y5807D01* X24788Y5815D01* X24791Y5823D01* X24792Y5832D01* X24792Y5840D01* X24790Y5849D01* X24787Y5857D01* X24782Y5864D01* X24776Y5871D01* X24769Y5876D01* X24762Y5880D01* X24753Y5883D01* X24745Y5884D01* X24736Y5884D01* X24728Y5882D01* X24724Y5881D01* Y7113D01* X24732Y7113D01* X24740Y7115D01* X24748Y7117D01* X24756Y7122D01* X24763Y7127D01* X24769Y7134D01* X24773Y7141D01* X24776Y7149D01* X24778Y7158D01* X24778Y7167D01* X24777Y7175D01* X24774Y7183D01* X24770Y7191D01* X24764Y7198D01* X24757Y7204D01* X24750Y7208D01* X24742Y7211D01* X24724Y7217D01* Y7782D01* X24737Y7786D01* X24745Y7790D01* X24752Y7794D01* X24759Y7800D01* X24764Y7807D01* X24768Y7815D01* X24771Y7823D01* X24772Y7832D01* X24772Y7840D01* X24770Y7849D01* X24767Y7857D01* X24762Y7864D01* X24756Y7871D01* X24749Y7876D01* X24742Y7880D01* X24733Y7883D01* X24725Y7884D01* X24724D01* Y9116D01* X24728Y9117D01* X24736Y9122D01* X24743Y9127D01* X24749Y9134D01* X24753Y9141D01* X24756Y9149D01* X24758Y9158D01* X24758Y9167D01* X24757Y9175D01* X24754Y9183D01* X24750Y9191D01* X24744Y9198D01* X24737Y9204D01* X24730Y9208D01* X24724Y9210D01* Y9789D01* X24725Y9790D01* X24732Y9794D01* X24739Y9800D01* X24744Y9807D01* X24748Y9815D01* X24751Y9823D01* X24752Y9832D01* X24752Y9840D01* X24750Y9849D01* X24747Y9857D01* X24742Y9864D01* X24736Y9871D01* X24729Y9876D01* X24724Y9879D01* Y11128D01* X24729Y11134D01* X24733Y11141D01* X24736Y11149D01* X24738Y11158D01* X24738Y11167D01* X24737Y11175D01* X24734Y11183D01* X24730Y11191D01* X24724Y11198D01* X24724Y11198D01* Y11807D01* X24724Y11807D01* X24728Y11815D01* X24731Y11823D01* X24732Y11832D01* X24732Y11840D01* X24730Y11849D01* X24727Y11857D01* X24724Y11861D01* Y23140D01* X24727Y23135D01* X24733Y23128D01* X24740Y23123D01* X24747Y23119D01* X24756Y23116D01* X24764Y23115D01* X24773Y23115D01* X24781Y23117D01* X24816Y23129D01* X24848Y23144D01* X24880Y23162D01* X24904Y23180D01* Y21834D01* X24894Y21840D01* X24862Y21858D01* X24829Y21873D01* X24795Y21884D01* X24786Y21886D01* X24777Y21886D01* X24769Y21885D01* X24761Y21882D01* X24753Y21878D01* X24746Y21872D01* X24740Y21865D01* X24736Y21858D01* X24733Y21850D01* X24731Y21841D01* X24731Y21833D01* X24732Y21824D01* X24735Y21816D01* X24739Y21808D01* X24745Y21801D01* X24752Y21796D01* X24759Y21791D01* X24767Y21788D01* X24793Y21779D01* X24818Y21768D01* X24841Y21755D01* X24864Y21740D01* X24885Y21723D01* X24904Y21704D01* Y21295D01* X24889Y21280D01* X24868Y21262D01* X24846Y21247D01* X24822Y21233D01* X24798Y21222D01* X24772Y21213D01* X24764Y21209D01* X24757Y21205D01* X24750Y21199D01* X24745Y21192D01* X24741Y21184D01* X24738Y21176D01* X24737Y21167D01* X24737Y21159D01* X24739Y21150D01* X24742Y21142D01* X24747Y21135D01* X24753Y21128D01* X24760Y21123D01* X24767Y21119D01* X24776Y21116D01* X24784Y21115D01* X24793Y21115D01* X24801Y21117D01* X24836Y21129D01* X24868Y21144D01* X24900Y21162D01* X24904Y21165D01* Y19846D01* X24882Y19858D01* X24849Y19873D01* X24815Y19884D01* X24806Y19886D01* X24797Y19886D01* X24789Y19885D01* X24781Y19882D01* X24773Y19878D01* X24766Y19872D01* X24760Y19865D01* X24756Y19858D01* X24753Y19850D01* X24751Y19841D01* X24751Y19833D01* X24752Y19824D01* X24755Y19816D01* X24759Y19808D01* X24765Y19801D01* X24772Y19796D01* X24779Y19791D01* X24787Y19788D01* X24813Y19779D01* X24838Y19768D01* X24861Y19755D01* X24884Y19740D01* X24904Y19724D01* Y19276D01* X24888Y19262D01* X24866Y19247D01* X24842Y19233D01* X24818Y19222D01* X24792Y19213D01* X24784Y19209D01* X24777Y19205D01* X24770Y19199D01* X24765Y19192D01* X24761Y19184D01* X24758Y19176D01* X24757Y19167D01* X24757Y19159D01* X24759Y19150D01* X24762Y19142D01* X24767Y19135D01* X24773Y19128D01* X24780Y19123D01* X24787Y19119D01* X24796Y19116D01* X24804Y19115D01* X24813Y19115D01* X24821Y19117D01* X24856Y19129D01* X24888Y19144D01* X24904Y19153D01* Y17857D01* X24902Y17858D01* X24869Y17873D01* X24835Y17884D01* X24826Y17886D01* X24817Y17886D01* X24809Y17885D01* X24801Y17882D01* X24793Y17878D01* X24786Y17872D01* X24780Y17865D01* X24776Y17858D01* X24773Y17850D01* X24771Y17841D01* X24771Y17833D01* X24772Y17824D01* X24775Y17816D01* X24779Y17808D01* X24785Y17801D01* X24792Y17796D01* X24799Y17791D01* X24807Y17788D01* X24833Y17779D01* X24858Y17768D01* X24881Y17755D01* X24904Y17740D01* Y17259D01* X24886Y17247D01* X24862Y17233D01* X24838Y17222D01* X24812Y17213D01* X24804Y17209D01* X24797Y17205D01* X24790Y17199D01* X24785Y17192D01* X24781Y17184D01* X24778Y17176D01* X24777Y17167D01* X24777Y17159D01* X24779Y17150D01* X24782Y17142D01* X24787Y17135D01* X24793Y17128D01* X24800Y17123D01* X24807Y17119D01* X24816Y17116D01* X24824Y17115D01* X24833Y17115D01* X24841Y17117D01* X24876Y17129D01* X24904Y17142D01* Y15866D01* X24889Y15873D01* X24855Y15884D01* X24846Y15886D01* X24837Y15886D01* X24829Y15885D01* X24821Y15882D01* X24813Y15878D01* X24806Y15872D01* X24800Y15865D01* X24796Y15858D01* X24793Y15850D01* X24791Y15841D01* X24791Y15833D01* X24792Y15824D01* X24795Y15816D01* X24799Y15808D01* X24805Y15801D01* X24812Y15796D01* X24819Y15791D01* X24827Y15788D01* X24853Y15779D01* X24878Y15768D01* X24901Y15755D01* X24904Y15754D01* Y15246D01* X24882Y15233D01* X24858Y15222D01* X24832Y15213D01* X24824Y15209D01* X24817Y15205D01* X24810Y15199D01* X24805Y15192D01* X24801Y15184D01* X24798Y15176D01* X24797Y15167D01* X24797Y15159D01* X24799Y15150D01* X24802Y15142D01* X24807Y15135D01* X24813Y15128D01* X24820Y15123D01* X24827Y15119D01* X24836Y15116D01* X24844Y15115D01* X24853Y15115D01* X24861Y15117D01* X24896Y15129D01* X24904Y15133D01* Y13874D01* X24875Y13884D01* X24866Y13886D01* X24857Y13886D01* X24849Y13885D01* X24841Y13882D01* X24833Y13878D01* X24826Y13872D01* X24820Y13865D01* X24816Y13858D01* X24813Y13850D01* X24811Y13841D01* X24811Y13833D01* X24812Y13824D01* X24815Y13816D01* X24819Y13808D01* X24825Y13801D01* X24832Y13796D01* X24839Y13791D01* X24847Y13788D01* X24873Y13779D01* X24898Y13768D01* X24904Y13765D01* Y13234D01* X24902Y13233D01* X24878Y13222D01* X24852Y13213D01* X24844Y13209D01* X24837Y13205D01* X24830Y13199D01* X24825Y13192D01* X24821Y13184D01* X24818Y13176D01* X24817Y13167D01* X24817Y13159D01* X24819Y13150D01* X24822Y13142D01* X24827Y13135D01* X24833Y13128D01* X24840Y13123D01* X24847Y13119D01* X24856Y13116D01* X24864Y13115D01* X24873Y13115D01* X24881Y13117D01* X24904Y13125D01* Y11881D01* X24895Y11884D01* X24886Y11886D01* X24877Y11886D01* X24869Y11885D01* X24861Y11882D01* X24853Y11878D01* X24846Y11872D01* X24840Y11865D01* X24836Y11858D01* X24833Y11850D01* X24831Y11841D01* X24831Y11833D01* X24832Y11824D01* X24835Y11816D01* X24839Y11808D01* X24845Y11801D01* X24852Y11796D01* X24859Y11791D01* X24867Y11788D01* X24893Y11779D01* X24904Y11774D01* Y11225D01* X24898Y11222D01* X24872Y11213D01* X24864Y11209D01* X24857Y11205D01* X24850Y11199D01* X24845Y11192D01* X24841Y11184D01* X24838Y11176D01* X24837Y11167D01* X24837Y11159D01* X24839Y11150D01* X24842Y11142D01* X24847Y11135D01* X24853Y11128D01* X24860Y11123D01* X24867Y11119D01* X24876Y11116D01* X24884Y11115D01* X24893Y11115D01* X24901Y11117D01* X24904Y11118D01* Y9886D01* X24897Y9886D01* X24889Y9885D01* X24881Y9882D01* X24873Y9878D01* X24866Y9872D01* X24860Y9865D01* X24856Y9858D01* X24853Y9850D01* X24851Y9841D01* X24851Y9833D01* X24852Y9824D01* X24855Y9816D01* X24859Y9808D01* X24865Y9801D01* X24872Y9796D01* X24879Y9791D01* X24887Y9788D01* X24904Y9782D01* Y9217D01* X24892Y9213D01* X24884Y9209D01* X24877Y9205D01* X24870Y9199D01* X24865Y9192D01* X24861Y9184D01* X24858Y9176D01* X24857Y9167D01* X24857Y9159D01* X24859Y9150D01* X24862Y9142D01* X24867Y9135D01* X24873Y9128D01* X24880Y9123D01* X24887Y9119D01* X24896Y9116D01* X24904Y9115D01* Y7883D01* X24901Y7882D01* X24893Y7878D01* X24886Y7872D01* X24880Y7865D01* X24876Y7858D01* X24873Y7850D01* X24871Y7841D01* X24871Y7833D01* X24872Y7824D01* X24875Y7816D01* X24879Y7808D01* X24885Y7801D01* X24892Y7796D01* X24899Y7791D01* X24904Y7789D01* Y7209D01* X24897Y7205D01* X24890Y7199D01* X24885Y7192D01* X24881Y7184D01* X24878Y7176D01* X24877Y7167D01* X24877Y7159D01* X24879Y7150D01* X24882Y7142D01* X24887Y7135D01* X24893Y7128D01* X24900Y7123D01* X24904Y7121D01* Y5870D01* X24900Y5865D01* X24896Y5858D01* X24893Y5850D01* X24891Y5841D01* X24891Y5833D01* X24892Y5824D01* X24895Y5816D01* X24899Y5808D01* X24904Y5802D01* Y5190D01* X24901Y5184D01* X24898Y5176D01* X24897Y5167D01* X24897Y5159D01* X24899Y5150D01* X24902Y5142D01* X24904Y5140D01* Y0D01* G37* G36* Y23319D02*X24888Y23299D01* X24869Y23280D01* X24848Y23262D01* X24826Y23247D01* X24802Y23233D01* X24778Y23222D01* X24752Y23213D01* X24744Y23209D01* X24737Y23205D01* X24730Y23199D01* X24725Y23192D01* X24724Y23190D01* Y23802D01* X24725Y23801D01* X24732Y23796D01* X24739Y23791D01* X24747Y23788D01* X24773Y23779D01* X24798Y23768D01* X24821Y23755D01* X24844Y23740D01* X24865Y23723D01* X24884Y23704D01* X24902Y23683D01* X24904Y23680D01* Y23319D01* G37* G36* Y23820D02*X24904Y23820D01* X24874Y23840D01* X24842Y23858D01* X24809Y23873D01* X24775Y23884D01* X24766Y23886D01* X24757Y23886D01* X24749Y23885D01* X24741Y23882D01* X24733Y23878D01* X24726Y23872D01* X24724Y23870D01* Y25121D01* X24727Y25119D01* X24736Y25116D01* X24744Y25115D01* X24753Y25115D01* X24761Y25117D01* X24796Y25129D01* X24828Y25144D01* X24860Y25162D01* X24889Y25183D01* X24904Y25196D01* Y23820D01* G37* G36* Y25350D02*X24900Y25343D01* X24885Y25320D01* X24868Y25299D01* X24849Y25280D01* X24828Y25262D01* X24806Y25247D01* X24782Y25233D01* X24758Y25222D01* X24732Y25213D01* X24724Y25209D01* X24724Y25209D01* Y25789D01* X24727Y25788D01* X24753Y25779D01* X24778Y25768D01* X24801Y25755D01* X24824Y25740D01* X24845Y25723D01* X24864Y25704D01* X24882Y25683D01* X24897Y25661D01* X24904Y25650D01* Y25350D01* G37* G36* Y25804D02*X24884Y25820D01* X24854Y25840D01* X24822Y25858D01* X24789Y25873D01* X24755Y25884D01* X24746Y25886D01* X24737Y25886D01* X24729Y25885D01* X24724Y25883D01* Y27115D01* X24724D01* X24733Y27115D01* X24741Y27117D01* X24776Y27129D01* X24808Y27144D01* X24840Y27162D01* X24869Y27183D01* X24897Y27207D01* X24904Y27214D01* Y25804D01* G37* G36* Y27391D02*X24893Y27366D01* X24880Y27343D01* X24865Y27320D01* X24848Y27299D01* X24829Y27280D01* X24808Y27262D01* X24786Y27247D01* X24762Y27233D01* X24738Y27222D01* X24724Y27217D01* Y27782D01* X24733Y27779D01* X24758Y27768D01* X24781Y27755D01* X24804Y27740D01* X24825Y27723D01* X24844Y27704D01* X24862Y27683D01* X24877Y27661D01* X24891Y27637D01* X24902Y27613D01* X24904Y27608D01* Y27391D01* G37* G36* Y27785D02*X24892Y27797D01* X24864Y27820D01* X24834Y27840D01* X24802Y27858D01* X24769Y27873D01* X24735Y27884D01* X24726Y27886D01* X24724D01* Y29118D01* X24756Y29129D01* X24788Y29144D01* X24820Y29162D01* X24849Y29183D01* X24877Y29207D01* X24902Y29232D01* X24904Y29235D01* Y27785D01* G37* G36* Y29437D02*X24900Y29433D01* X24896Y29425D01* X24893Y29417D01* X24884Y29391D01* X24873Y29366D01* X24860Y29343D01* X24845Y29320D01* X24828Y29299D01* X24809Y29280D01* X24788Y29262D01* X24766Y29247D01* X24742Y29233D01* X24724Y29225D01* Y29774D01* X24738Y29768D01* X24761Y29755D01* X24784Y29740D01* X24805Y29723D01* X24824Y29704D01* X24842Y29683D01* X24857Y29661D01* X24871Y29637D01* X24882Y29613D01* X24891Y29587D01* X24895Y29579D01* X24899Y29572D01* X24904Y29567D01* Y29437D01* G37* G36* Y29764D02*X24897Y29772D01* X24872Y29797D01* X24844Y29820D01* X24814Y29840D01* X24782Y29858D01* X24749Y29873D01* X24724Y29881D01* Y31125D01* X24736Y31129D01* X24768Y31144D01* X24800Y31162D01* X24829Y31183D01* X24857Y31207D01* X24882Y31232D01* X24904Y31259D01* Y29764D01* G37* G36* Y31450D02*X24901Y31449D01* X24893Y31445D01* X24886Y31439D01* X24880Y31433D01* X24876Y31425D01* X24873Y31417D01* X24864Y31391D01* X24853Y31366D01* X24840Y31343D01* X24825Y31320D01* X24808Y31299D01* X24789Y31280D01* X24768Y31262D01* X24746Y31247D01* X24724Y31234D01* Y31765D01* X24741Y31755D01* X24764Y31740D01* X24785Y31723D01* X24804Y31704D01* X24822Y31683D01* X24837Y31661D01* X24851Y31637D01* X24862Y31613D01* X24871Y31587D01* X24875Y31579D01* X24879Y31572D01* X24885Y31565D01* X24892Y31560D01* X24900Y31556D01* X24904Y31555D01* Y31450D01* G37* G36* Y31740D02*X24901Y31744D01* X24877Y31772D01* X24852Y31797D01* X24824Y31820D01* X24794Y31840D01* X24762Y31858D01* X24729Y31873D01* X24724Y31874D01* Y33133D01* X24748Y33144D01* X24780Y33162D01* X24809Y33183D01* X24837Y33207D01* X24862Y33232D01* X24885Y33260D01* X24904Y33288D01* Y31740D01* G37* G36* Y33453D02*X24897Y33453D01* X24889Y33452D01* X24881Y33449D01* X24873Y33445D01* X24866Y33439D01* X24860Y33433D01* X24856Y33425D01* X24853Y33417D01* X24844Y33391D01* X24833Y33366D01* X24820Y33343D01* X24805Y33320D01* X24788Y33299D01* X24769Y33280D01* X24748Y33262D01* X24726Y33247D01* X24724Y33246D01* Y33754D01* X24744Y33740D01* X24765Y33723D01* X24784Y33704D01* X24802Y33683D01* X24817Y33661D01* X24831Y33637D01* X24842Y33613D01* X24851Y33587D01* X24855Y33579D01* X24859Y33572D01* X24865Y33565D01* X24872Y33560D01* X24880Y33556D01* X24888Y33553D01* X24897Y33552D01* X24904Y33552D01* Y33453D01* G37* G36* Y33711D02*X24902Y33715D01* X24881Y33744D01* X24857Y33772D01* X24832Y33797D01* X24804Y33820D01* X24774Y33840D01* X24742Y33858D01* X24724Y33866D01* Y35142D01* X24728Y35144D01* X24760Y35162D01* X24789Y35183D01* X24817Y35207D01* X24842Y35232D01* X24865Y35260D01* X24885Y35290D01* X24903Y35322D01* X24904Y35324D01* Y33711D01* G37* G36* Y35447D02*X24903Y35448D01* X24895Y35451D01* X24886Y35453D01* X24877Y35453D01* X24869Y35452D01* X24861Y35449D01* X24853Y35445D01* X24846Y35439D01* X24840Y35433D01* X24836Y35425D01* X24833Y35417D01* X24824Y35391D01* X24813Y35366D01* X24800Y35343D01* X24785Y35320D01* X24768Y35299D01* X24749Y35280D01* X24728Y35262D01* X24724Y35259D01* Y35740D01* X24745Y35723D01* X24764Y35704D01* X24782Y35683D01* X24797Y35661D01* X24811Y35637D01* X24822Y35613D01* X24831Y35587D01* X24835Y35579D01* X24839Y35572D01* X24845Y35565D01* X24852Y35560D01* X24860Y35556D01* X24868Y35553D01* X24877Y35552D01* X24885Y35552D01* X24894Y35554D01* X24902Y35557D01* X24904Y35559D01* Y35447D01* G37* G36* Y35674D02*X24900Y35683D01* X24882Y35715D01* X24861Y35744D01* X24837Y35772D01* X24812Y35797D01* X24784Y35820D01* X24754Y35840D01* X24724Y35857D01* Y37153D01* X24740Y37162D01* X24769Y37183D01* X24797Y37207D01* X24822Y37232D01* X24845Y37260D01* X24865Y37290D01* X24883Y37322D01* X24897Y37355D01* X24904Y37374D01* Y35674D01* G37* G36* Y37428D02*X24902Y37431D01* X24897Y37438D01* X24890Y37444D01* X24883Y37448D01* X24875Y37451D01* X24866Y37453D01* X24857Y37453D01* X24849Y37452D01* X24841Y37449D01* X24833Y37445D01* X24826Y37439D01* X24820Y37433D01* X24816Y37425D01* X24813Y37417D01* X24804Y37391D01* X24793Y37366D01* X24780Y37343D01* X24765Y37320D01* X24748Y37299D01* X24729Y37280D01* X24724Y37276D01* Y37724D01* X24725Y37723D01* X24744Y37704D01* X24762Y37683D01* X24777Y37661D01* X24791Y37637D01* X24802Y37613D01* X24811Y37587D01* X24815Y37579D01* X24819Y37572D01* X24825Y37565D01* X24832Y37560D01* X24840Y37556D01* X24848Y37553D01* X24857Y37552D01* X24865Y37552D01* X24874Y37554D01* X24882Y37557D01* X24889Y37562D01* X24896Y37568D01* X24901Y37575D01* X24904Y37580D01* Y37428D01* G37* G36* Y40000D02*X25084D01* Y19625D01* X25075Y19651D01* X25060Y19683D01* X25042Y19715D01* X25021Y19744D01* X24997Y19772D01* X24972Y19797D01* X24944Y19820D01* X24914Y19840D01* X24904Y19846D01* Y21165D01* X24929Y21183D01* X24957Y21207D01* X24982Y21232D01* X25005Y21260D01* X25025Y21290D01* X25043Y21322D01* X25057Y21355D01* X25069Y21389D01* X25071Y21398D01* X25071Y21407D01* X25070Y21415D01* X25067Y21423D01* X25062Y21431D01* X25057Y21438D01* X25050Y21444D01* X25043Y21448D01* X25035Y21451D01* X25026Y21453D01* X25017Y21453D01* X25009Y21452D01* X25001Y21449D01* X24993Y21445D01* X24986Y21439D01* X24980Y21433D01* X24976Y21425D01* X24973Y21417D01* X24964Y21391D01* X24953Y21366D01* X24940Y21343D01* X24925Y21320D01* X24908Y21299D01* X24904Y21295D01* Y21704D01* X24904Y21704D01* X24922Y21683D01* X24937Y21661D01* X24951Y21637D01* X24962Y21613D01* X24971Y21587D01* X24975Y21579D01* X24979Y21572D01* X24985Y21565D01* X24992Y21560D01* X25000Y21556D01* X25008Y21553D01* X25017Y21552D01* X25025Y21552D01* X25034Y21554D01* X25042Y21557D01* X25049Y21562D01* X25056Y21568D01* X25061Y21575D01* X25065Y21582D01* X25068Y21591D01* X25069Y21599D01* X25069Y21608D01* X25067Y21617D01* X25055Y21651D01* X25040Y21683D01* X25022Y21715D01* X25001Y21744D01* X24977Y21772D01* X24952Y21797D01* X24924Y21820D01* X24904Y21834D01* Y23180D01* X24909Y23183D01* X24937Y23207D01* X24962Y23232D01* X24985Y23260D01* X25005Y23290D01* X25023Y23322D01* X25037Y23355D01* X25049Y23389D01* X25051Y23398D01* X25051Y23407D01* X25050Y23415D01* X25047Y23423D01* X25042Y23431D01* X25037Y23438D01* X25030Y23444D01* X25023Y23448D01* X25015Y23451D01* X25006Y23453D01* X24997Y23453D01* X24989Y23452D01* X24981Y23449D01* X24973Y23445D01* X24966Y23439D01* X24960Y23433D01* X24956Y23425D01* X24953Y23417D01* X24944Y23391D01* X24933Y23366D01* X24920Y23343D01* X24905Y23320D01* X24904Y23319D01* Y23680D01* X24917Y23661D01* X24931Y23637D01* X24942Y23613D01* X24951Y23587D01* X24955Y23579D01* X24959Y23572D01* X24965Y23565D01* X24972Y23560D01* X24980Y23556D01* X24988Y23553D01* X24997Y23552D01* X25005Y23552D01* X25014Y23554D01* X25022Y23557D01* X25029Y23562D01* X25036Y23568D01* X25041Y23575D01* X25045Y23582D01* X25048Y23591D01* X25049Y23599D01* X25049Y23608D01* X25047Y23617D01* X25035Y23651D01* X25020Y23683D01* X25002Y23715D01* X24981Y23744D01* X24957Y23772D01* X24932Y23797D01* X24904Y23820D01* Y25196D01* X24917Y25207D01* X24942Y25232D01* X24965Y25260D01* X24985Y25290D01* X25003Y25322D01* X25017Y25355D01* X25029Y25389D01* X25031Y25398D01* X25031Y25407D01* X25030Y25415D01* X25027Y25423D01* X25022Y25431D01* X25017Y25438D01* X25010Y25444D01* X25003Y25448D01* X24995Y25451D01* X24986Y25453D01* X24977Y25453D01* X24969Y25452D01* X24961Y25449D01* X24953Y25445D01* X24946Y25439D01* X24940Y25433D01* X24936Y25425D01* X24933Y25417D01* X24924Y25391D01* X24913Y25366D01* X24904Y25350D01* Y25650D01* X24911Y25637D01* X24922Y25613D01* X24931Y25587D01* X24935Y25579D01* X24939Y25572D01* X24945Y25565D01* X24952Y25560D01* X24960Y25556D01* X24968Y25553D01* X24977Y25552D01* X24985Y25552D01* X24994Y25554D01* X25002Y25557D01* X25009Y25562D01* X25016Y25568D01* X25021Y25575D01* X25025Y25582D01* X25028Y25591D01* X25029Y25599D01* X25029Y25608D01* X25027Y25617D01* X25015Y25651D01* X25000Y25683D01* X24982Y25715D01* X24961Y25744D01* X24937Y25772D01* X24912Y25797D01* X24904Y25804D01* Y27214D01* X24922Y27232D01* X24945Y27260D01* X24965Y27290D01* X24983Y27322D01* X24997Y27355D01* X25009Y27389D01* X25011Y27398D01* X25011Y27407D01* X25010Y27415D01* X25007Y27423D01* X25002Y27431D01* X24997Y27438D01* X24990Y27444D01* X24983Y27448D01* X24975Y27451D01* X24966Y27453D01* X24957Y27453D01* X24949Y27452D01* X24941Y27449D01* X24933Y27445D01* X24926Y27439D01* X24920Y27433D01* X24916Y27425D01* X24913Y27417D01* X24904Y27391D01* X24904Y27391D01* Y27608D01* X24911Y27587D01* X24915Y27579D01* X24919Y27572D01* X24925Y27565D01* X24932Y27560D01* X24940Y27556D01* X24948Y27553D01* X24957Y27552D01* X24965Y27552D01* X24974Y27554D01* X24982Y27557D01* X24989Y27562D01* X24996Y27568D01* X25001Y27575D01* X25005Y27582D01* X25008Y27591D01* X25009Y27599D01* X25009Y27608D01* X25007Y27617D01* X24995Y27651D01* X24980Y27683D01* X24962Y27715D01* X24941Y27744D01* X24917Y27772D01* X24904Y27785D01* Y29235D01* X24925Y29260D01* X24945Y29290D01* X24963Y29322D01* X24977Y29355D01* X24989Y29389D01* X24991Y29398D01* X24991Y29407D01* X24990Y29415D01* X24987Y29423D01* X24982Y29431D01* X24977Y29438D01* X24970Y29444D01* X24963Y29448D01* X24955Y29451D01* X24946Y29453D01* X24937Y29453D01* X24929Y29452D01* X24921Y29449D01* X24913Y29445D01* X24906Y29439D01* X24904Y29437D01* Y29567D01* X24905Y29565D01* X24912Y29560D01* X24920Y29556D01* X24928Y29553D01* X24937Y29552D01* X24945Y29552D01* X24954Y29554D01* X24962Y29557D01* X24969Y29562D01* X24976Y29568D01* X24981Y29575D01* X24985Y29582D01* X24988Y29591D01* X24989Y29599D01* X24989Y29608D01* X24987Y29617D01* X24975Y29651D01* X24960Y29683D01* X24942Y29715D01* X24921Y29744D01* X24904Y29764D01* Y31259D01* X24905Y31260D01* X24925Y31290D01* X24943Y31322D01* X24957Y31355D01* X24969Y31389D01* X24971Y31398D01* X24971Y31407D01* X24970Y31415D01* X24967Y31423D01* X24962Y31431D01* X24957Y31438D01* X24950Y31444D01* X24943Y31448D01* X24935Y31451D01* X24926Y31453D01* X24917Y31453D01* X24909Y31452D01* X24904Y31450D01* Y31555D01* X24908Y31553D01* X24917Y31552D01* X24925Y31552D01* X24934Y31554D01* X24942Y31557D01* X24949Y31562D01* X24956Y31568D01* X24961Y31575D01* X24965Y31582D01* X24968Y31591D01* X24969Y31599D01* X24969Y31608D01* X24967Y31617D01* X24955Y31651D01* X24940Y31683D01* X24922Y31715D01* X24904Y31740D01* Y33288D01* X24905Y33290D01* X24923Y33322D01* X24937Y33355D01* X24949Y33389D01* X24951Y33398D01* X24951Y33407D01* X24950Y33415D01* X24947Y33423D01* X24942Y33431D01* X24937Y33438D01* X24930Y33444D01* X24923Y33448D01* X24915Y33451D01* X24906Y33453D01* X24904D01* Y33552D01* X24905D01* X24914Y33554D01* X24922Y33557D01* X24929Y33562D01* X24936Y33568D01* X24941Y33575D01* X24945Y33582D01* X24948Y33591D01* X24949Y33599D01* X24949Y33608D01* X24947Y33617D01* X24935Y33651D01* X24920Y33683D01* X24904Y33711D01* Y35324D01* X24917Y35355D01* X24929Y35389D01* X24931Y35398D01* X24931Y35407D01* X24930Y35415D01* X24927Y35423D01* X24922Y35431D01* X24917Y35438D01* X24910Y35444D01* X24904Y35447D01* Y35559D01* X24909Y35562D01* X24916Y35568D01* X24921Y35575D01* X24925Y35582D01* X24928Y35591D01* X24929Y35599D01* X24929Y35608D01* X24927Y35617D01* X24915Y35651D01* X24904Y35674D01* Y37374D01* X24909Y37389D01* X24911Y37398D01* X24911Y37407D01* X24910Y37415D01* X24907Y37423D01* X24904Y37428D01* Y37580D01* X24905Y37582D01* X24908Y37591D01* X24909Y37599D01* X24909Y37608D01* X24907Y37617D01* X24904Y37625D01* Y40000D01* G37* G36* X25084Y0D02*X24904D01* Y5140D01* X24907Y5135D01* X24913Y5128D01* X24920Y5123D01* X24927Y5119D01* X24936Y5116D01* X24944Y5115D01* X24953Y5115D01* X24961Y5117D01* X24996Y5129D01* X25028Y5144D01* X25060Y5162D01* X25084Y5180D01* Y3834D01* X25074Y3840D01* X25042Y3858D01* X25009Y3873D01* X24975Y3884D01* X24966Y3886D01* X24957Y3886D01* X24949Y3885D01* X24941Y3882D01* X24933Y3878D01* X24926Y3872D01* X24920Y3865D01* X24916Y3858D01* X24913Y3850D01* X24911Y3841D01* X24911Y3833D01* X24912Y3824D01* X24915Y3816D01* X24919Y3808D01* X24925Y3801D01* X24932Y3796D01* X24939Y3791D01* X24947Y3788D01* X24973Y3779D01* X24998Y3768D01* X25021Y3755D01* X25044Y3740D01* X25065Y3723D01* X25084Y3704D01* Y3295D01* X25069Y3280D01* X25048Y3262D01* X25026Y3247D01* X25002Y3233D01* X24978Y3222D01* X24952Y3213D01* X24944Y3209D01* X24937Y3205D01* X24930Y3199D01* X24925Y3192D01* X24921Y3184D01* X24918Y3176D01* X24917Y3167D01* X24917Y3159D01* X24919Y3150D01* X24922Y3142D01* X24927Y3135D01* X24933Y3128D01* X24940Y3123D01* X24947Y3119D01* X24956Y3116D01* X24964Y3115D01* X24973Y3115D01* X24981Y3117D01* X25016Y3129D01* X25048Y3144D01* X25080Y3162D01* X25084Y3165D01* Y1846D01* X25062Y1858D01* X25029Y1873D01* X24995Y1884D01* X24986Y1886D01* X24977Y1886D01* X24969Y1885D01* X24961Y1882D01* X24953Y1878D01* X24946Y1872D01* X24940Y1865D01* X24936Y1858D01* X24933Y1850D01* X24931Y1841D01* X24931Y1833D01* X24932Y1824D01* X24935Y1816D01* X24939Y1808D01* X24945Y1801D01* X24952Y1796D01* X24959Y1791D01* X24967Y1788D01* X24993Y1779D01* X25018Y1768D01* X25041Y1755D01* X25064Y1740D01* X25084Y1724D01* Y1276D01* X25068Y1262D01* X25046Y1247D01* X25022Y1233D01* X24998Y1222D01* X24972Y1213D01* X24964Y1209D01* X24957Y1205D01* X24950Y1199D01* X24945Y1192D01* X24941Y1184D01* X24938Y1176D01* X24937Y1167D01* X24937Y1159D01* X24939Y1150D01* X24942Y1142D01* X24947Y1135D01* X24953Y1128D01* X24960Y1123D01* X24967Y1119D01* X24976Y1116D01* X24984Y1115D01* X24993Y1115D01* X25001Y1117D01* X25036Y1129D01* X25068Y1144D01* X25084Y1153D01* Y0D01* G37* G36* Y5319D02*X25068Y5299D01* X25049Y5280D01* X25028Y5262D01* X25006Y5247D01* X24982Y5233D01* X24958Y5222D01* X24932Y5213D01* X24924Y5209D01* X24917Y5205D01* X24910Y5199D01* X24905Y5192D01* X24904Y5190D01* Y5802D01* X24905Y5801D01* X24912Y5796D01* X24919Y5791D01* X24927Y5788D01* X24953Y5779D01* X24978Y5768D01* X25001Y5755D01* X25024Y5740D01* X25045Y5723D01* X25064Y5704D01* X25082Y5683D01* X25084Y5680D01* Y5319D01* G37* G36* Y5820D02*X25084Y5820D01* X25054Y5840D01* X25022Y5858D01* X24989Y5873D01* X24955Y5884D01* X24946Y5886D01* X24937Y5886D01* X24929Y5885D01* X24921Y5882D01* X24913Y5878D01* X24906Y5872D01* X24904Y5870D01* Y7121D01* X24907Y7119D01* X24916Y7116D01* X24924Y7115D01* X24933Y7115D01* X24941Y7117D01* X24976Y7129D01* X25008Y7144D01* X25040Y7162D01* X25069Y7183D01* X25084Y7196D01* Y5820D01* G37* G36* Y7350D02*X25080Y7343D01* X25065Y7320D01* X25048Y7299D01* X25029Y7280D01* X25008Y7262D01* X24986Y7247D01* X24962Y7233D01* X24938Y7222D01* X24912Y7213D01* X24904Y7209D01* X24904Y7209D01* Y7789D01* X24907Y7788D01* X24933Y7779D01* X24958Y7768D01* X24981Y7755D01* X25004Y7740D01* X25025Y7723D01* X25044Y7704D01* X25062Y7683D01* X25077Y7661D01* X25084Y7650D01* Y7350D01* G37* G36* Y7804D02*X25064Y7820D01* X25034Y7840D01* X25002Y7858D01* X24969Y7873D01* X24935Y7884D01* X24926Y7886D01* X24917Y7886D01* X24909Y7885D01* X24904Y7883D01* Y9115D01* X24904D01* X24913Y9115D01* X24921Y9117D01* X24956Y9129D01* X24988Y9144D01* X25020Y9162D01* X25049Y9183D01* X25077Y9207D01* X25084Y9214D01* Y7804D01* G37* G36* Y9391D02*X25073Y9366D01* X25060Y9343D01* X25045Y9320D01* X25028Y9299D01* X25009Y9280D01* X24988Y9262D01* X24966Y9247D01* X24942Y9233D01* X24918Y9222D01* X24904Y9217D01* Y9782D01* X24913Y9779D01* X24938Y9768D01* X24961Y9755D01* X24984Y9740D01* X25005Y9723D01* X25024Y9704D01* X25042Y9683D01* X25057Y9661D01* X25071Y9637D01* X25082Y9613D01* X25084Y9608D01* Y9391D01* G37* G36* Y9785D02*X25072Y9797D01* X25044Y9820D01* X25014Y9840D01* X24982Y9858D01* X24949Y9873D01* X24915Y9884D01* X24906Y9886D01* X24904D01* Y11118D01* X24936Y11129D01* X24968Y11144D01* X25000Y11162D01* X25029Y11183D01* X25057Y11207D01* X25082Y11232D01* X25084Y11235D01* Y9785D01* G37* G36* Y11437D02*X25080Y11433D01* X25076Y11425D01* X25073Y11417D01* X25064Y11391D01* X25053Y11366D01* X25040Y11343D01* X25025Y11320D01* X25008Y11299D01* X24989Y11280D01* X24968Y11262D01* X24946Y11247D01* X24922Y11233D01* X24904Y11225D01* Y11774D01* X24918Y11768D01* X24941Y11755D01* X24964Y11740D01* X24985Y11723D01* X25004Y11704D01* X25022Y11683D01* X25037Y11661D01* X25051Y11637D01* X25062Y11613D01* X25071Y11587D01* X25075Y11579D01* X25079Y11572D01* X25084Y11567D01* Y11437D01* G37* G36* Y11764D02*X25077Y11772D01* X25052Y11797D01* X25024Y11820D01* X24994Y11840D01* X24962Y11858D01* X24929Y11873D01* X24904Y11881D01* Y13125D01* X24916Y13129D01* X24948Y13144D01* X24980Y13162D01* X25009Y13183D01* X25037Y13207D01* X25062Y13232D01* X25084Y13259D01* Y11764D01* G37* G36* Y13450D02*X25081Y13449D01* X25073Y13445D01* X25066Y13439D01* X25060Y13433D01* X25056Y13425D01* X25053Y13417D01* X25044Y13391D01* X25033Y13366D01* X25020Y13343D01* X25005Y13320D01* X24988Y13299D01* X24969Y13280D01* X24948Y13262D01* X24926Y13247D01* X24904Y13234D01* Y13765D01* X24921Y13755D01* X24944Y13740D01* X24965Y13723D01* X24984Y13704D01* X25002Y13683D01* X25017Y13661D01* X25031Y13637D01* X25042Y13613D01* X25051Y13587D01* X25055Y13579D01* X25059Y13572D01* X25065Y13565D01* X25072Y13560D01* X25080Y13556D01* X25084Y13555D01* Y13450D01* G37* G36* Y13740D02*X25081Y13744D01* X25057Y13772D01* X25032Y13797D01* X25004Y13820D01* X24974Y13840D01* X24942Y13858D01* X24909Y13873D01* X24904Y13874D01* Y15133D01* X24928Y15144D01* X24960Y15162D01* X24989Y15183D01* X25017Y15207D01* X25042Y15232D01* X25065Y15260D01* X25084Y15288D01* Y13740D01* G37* G36* Y15453D02*X25077Y15453D01* X25069Y15452D01* X25061Y15449D01* X25053Y15445D01* X25046Y15439D01* X25040Y15433D01* X25036Y15425D01* X25033Y15417D01* X25024Y15391D01* X25013Y15366D01* X25000Y15343D01* X24985Y15320D01* X24968Y15299D01* X24949Y15280D01* X24928Y15262D01* X24906Y15247D01* X24904Y15246D01* Y15754D01* X24924Y15740D01* X24945Y15723D01* X24964Y15704D01* X24982Y15683D01* X24997Y15661D01* X25011Y15637D01* X25022Y15613D01* X25031Y15587D01* X25035Y15579D01* X25039Y15572D01* X25045Y15565D01* X25052Y15560D01* X25060Y15556D01* X25068Y15553D01* X25077Y15552D01* X25084Y15552D01* Y15453D01* G37* G36* Y15711D02*X25082Y15715D01* X25061Y15744D01* X25037Y15772D01* X25012Y15797D01* X24984Y15820D01* X24954Y15840D01* X24922Y15858D01* X24904Y15866D01* Y17142D01* X24908Y17144D01* X24940Y17162D01* X24969Y17183D01* X24997Y17207D01* X25022Y17232D01* X25045Y17260D01* X25065Y17290D01* X25083Y17322D01* X25084Y17324D01* Y15711D01* G37* G36* Y17447D02*X25083Y17448D01* X25075Y17451D01* X25066Y17453D01* X25057Y17453D01* X25049Y17452D01* X25041Y17449D01* X25033Y17445D01* X25026Y17439D01* X25020Y17433D01* X25016Y17425D01* X25013Y17417D01* X25004Y17391D01* X24993Y17366D01* X24980Y17343D01* X24965Y17320D01* X24948Y17299D01* X24929Y17280D01* X24908Y17262D01* X24904Y17259D01* Y17740D01* X24925Y17723D01* X24944Y17704D01* X24962Y17683D01* X24977Y17661D01* X24991Y17637D01* X25002Y17613D01* X25011Y17587D01* X25015Y17579D01* X25019Y17572D01* X25025Y17565D01* X25032Y17560D01* X25040Y17556D01* X25048Y17553D01* X25057Y17552D01* X25065Y17552D01* X25074Y17554D01* X25082Y17557D01* X25084Y17559D01* Y17447D01* G37* G36* Y17674D02*X25080Y17683D01* X25062Y17715D01* X25041Y17744D01* X25017Y17772D01* X24992Y17797D01* X24964Y17820D01* X24934Y17840D01* X24904Y17857D01* Y19153D01* X24920Y19162D01* X24949Y19183D01* X24977Y19207D01* X25002Y19232D01* X25025Y19260D01* X25045Y19290D01* X25063Y19322D01* X25077Y19355D01* X25084Y19374D01* Y17674D01* G37* G36* Y19428D02*X25082Y19431D01* X25077Y19438D01* X25070Y19444D01* X25063Y19448D01* X25055Y19451D01* X25046Y19453D01* X25037Y19453D01* X25029Y19452D01* X25021Y19449D01* X25013Y19445D01* X25006Y19439D01* X25000Y19433D01* X24996Y19425D01* X24993Y19417D01* X24984Y19391D01* X24973Y19366D01* X24960Y19343D01* X24945Y19320D01* X24928Y19299D01* X24909Y19280D01* X24904Y19276D01* Y19724D01* X24905Y19723D01* X24924Y19704D01* X24942Y19683D01* X24957Y19661D01* X24971Y19637D01* X24982Y19613D01* X24991Y19587D01* X24995Y19579D01* X24999Y19572D01* X25005Y19565D01* X25012Y19560D01* X25020Y19556D01* X25028Y19553D01* X25037Y19552D01* X25045Y19552D01* X25054Y19554D01* X25062Y19557D01* X25069Y19562D01* X25076Y19568D01* X25081Y19575D01* X25084Y19580D01* Y19428D01* G37* G36* Y40000D02*X26285D01* Y39834D01* X26260Y39816D01* X26232Y39793D01* X26207Y39767D01* X26184Y39739D01* X26164Y39709D01* X26146Y39677D01* X26132Y39644D01* X26120Y39610D01* X26118Y39601D01* X26118Y39593D01* X26119Y39584D01* X26122Y39576D01* X26127Y39568D01* X26132Y39561D01* X26139Y39556D01* X26146Y39551D01* X26154Y39548D01* X26163Y39546D01* X26172Y39546D01* X26180Y39547D01* X26188Y39550D01* X26196Y39555D01* X26203Y39560D01* X26209Y39567D01* X26213Y39574D01* X26216Y39582D01* X26225Y39608D01* X26236Y39633D01* X26249Y39657D01* X26264Y39679D01* X26281Y39700D01* X26285Y39704D01* Y39295D01* X26285Y39295D01* X26267Y39316D01* X26252Y39338D01* X26238Y39362D01* X26227Y39386D01* X26218Y39412D01* X26214Y39420D01* X26210Y39427D01* X26204Y39434D01* X26197Y39439D01* X26189Y39443D01* X26181Y39446D01* X26172Y39447D01* X26164Y39447D01* X26155Y39445D01* X26147Y39442D01* X26140Y39437D01* X26133Y39431D01* X26128Y39424D01* X26124Y39417D01* X26121Y39409D01* X26120Y39400D01* X26120Y39391D01* X26122Y39383D01* X26134Y39349D01* X26149Y39316D01* X26167Y39284D01* X26188Y39255D01* X26212Y39227D01* X26237Y39202D01* X26265Y39179D01* X26285Y39166D01* Y37820D01* X26280Y37816D01* X26252Y37793D01* X26227Y37767D01* X26204Y37739D01* X26184Y37709D01* X26166Y37677D01* X26152Y37644D01* X26140Y37610D01* X26138Y37601D01* X26138Y37593D01* X26139Y37584D01* X26142Y37576D01* X26147Y37568D01* X26152Y37561D01* X26159Y37556D01* X26166Y37551D01* X26174Y37548D01* X26183Y37546D01* X26192Y37546D01* X26200Y37547D01* X26208Y37550D01* X26216Y37555D01* X26223Y37560D01* X26229Y37567D01* X26233Y37574D01* X26236Y37582D01* X26245Y37608D01* X26256Y37633D01* X26269Y37657D01* X26284Y37679D01* X26285Y37680D01* Y37319D01* X26272Y37338D01* X26258Y37362D01* X26247Y37386D01* X26238Y37412D01* X26234Y37420D01* X26230Y37427D01* X26224Y37434D01* X26217Y37439D01* X26209Y37443D01* X26201Y37446D01* X26192Y37447D01* X26184Y37447D01* X26175Y37445D01* X26167Y37442D01* X26160Y37437D01* X26153Y37431D01* X26148Y37424D01* X26144Y37417D01* X26141Y37409D01* X26140Y37400D01* X26140Y37391D01* X26142Y37383D01* X26154Y37349D01* X26169Y37316D01* X26187Y37284D01* X26208Y37255D01* X26232Y37227D01* X26257Y37202D01* X26285Y37179D01* Y35804D01* X26272Y35793D01* X26247Y35767D01* X26224Y35739D01* X26204Y35709D01* X26186Y35677D01* X26172Y35644D01* X26160Y35610D01* X26158Y35601D01* X26158Y35593D01* X26159Y35584D01* X26162Y35576D01* X26167Y35568D01* X26172Y35561D01* X26179Y35556D01* X26186Y35551D01* X26194Y35548D01* X26203Y35546D01* X26212Y35546D01* X26220Y35547D01* X26228Y35550D01* X26236Y35555D01* X26243Y35560D01* X26249Y35567D01* X26253Y35574D01* X26256Y35582D01* X26265Y35608D01* X26276Y35633D01* X26285Y35650D01* Y35349D01* X26278Y35362D01* X26267Y35386D01* X26258Y35412D01* X26254Y35420D01* X26250Y35427D01* X26244Y35434D01* X26237Y35439D01* X26229Y35443D01* X26221Y35446D01* X26212Y35447D01* X26204Y35447D01* X26195Y35445D01* X26187Y35442D01* X26180Y35437D01* X26173Y35431D01* X26168Y35424D01* X26164Y35417D01* X26161Y35409D01* X26160Y35400D01* X26160Y35391D01* X26162Y35383D01* X26174Y35349D01* X26189Y35316D01* X26207Y35284D01* X26228Y35255D01* X26252Y35227D01* X26277Y35202D01* X26285Y35196D01* Y33785D01* X26267Y33767D01* X26244Y33739D01* X26224Y33709D01* X26206Y33677D01* X26192Y33644D01* X26180Y33610D01* X26178Y33601D01* X26178Y33593D01* X26179Y33584D01* X26182Y33576D01* X26187Y33568D01* X26192Y33561D01* X26199Y33556D01* X26206Y33551D01* X26214Y33548D01* X26223Y33546D01* X26232Y33546D01* X26240Y33547D01* X26248Y33550D01* X26256Y33555D01* X26263Y33560D01* X26269Y33567D01* X26273Y33574D01* X26276Y33582D01* X26285Y33608D01* X26285Y33609D01* Y33391D01* X26278Y33412D01* X26274Y33420D01* X26270Y33427D01* X26264Y33434D01* X26257Y33439D01* X26249Y33443D01* X26241Y33446D01* X26232Y33447D01* X26224Y33447D01* X26215Y33445D01* X26207Y33442D01* X26200Y33437D01* X26193Y33431D01* X26188Y33424D01* X26184Y33417D01* X26181Y33409D01* X26180Y33400D01* X26180Y33391D01* X26182Y33383D01* X26194Y33349D01* X26209Y33316D01* X26227Y33284D01* X26248Y33255D01* X26272Y33227D01* X26285Y33214D01* Y31765D01* X26264Y31739D01* X26244Y31709D01* X26226Y31677D01* X26212Y31644D01* X26200Y31610D01* X26198Y31601D01* X26198Y31593D01* X26199Y31584D01* X26202Y31576D01* X26207Y31568D01* X26212Y31561D01* X26219Y31556D01* X26226Y31551D01* X26234Y31548D01* X26243Y31546D01* X26252Y31546D01* X26260Y31547D01* X26268Y31550D01* X26276Y31555D01* X26283Y31560D01* X26285Y31563D01* Y31432D01* X26284Y31434D01* X26277Y31439D01* X26269Y31443D01* X26261Y31446D01* X26252Y31447D01* X26244Y31447D01* X26235Y31445D01* X26227Y31442D01* X26220Y31437D01* X26213Y31431D01* X26208Y31424D01* X26204Y31417D01* X26201Y31409D01* X26200Y31400D01* X26200Y31391D01* X26202Y31383D01* X26214Y31349D01* X26229Y31316D01* X26247Y31284D01* X26268Y31255D01* X26285Y31235D01* Y29740D01* X26284Y29739D01* X26264Y29709D01* X26246Y29677D01* X26232Y29644D01* X26220Y29610D01* X26218Y29601D01* X26218Y29593D01* X26219Y29584D01* X26222Y29576D01* X26227Y29568D01* X26232Y29561D01* X26239Y29556D01* X26246Y29551D01* X26254Y29548D01* X26263Y29546D01* X26272Y29546D01* X26280Y29547D01* X26285Y29549D01* Y29445D01* X26281Y29446D01* X26272Y29447D01* X26264Y29447D01* X26255Y29445D01* X26247Y29442D01* X26240Y29437D01* X26233Y29431D01* X26228Y29424D01* X26224Y29417D01* X26221Y29409D01* X26220Y29400D01* X26220Y29391D01* X26222Y29383D01* X26234Y29349D01* X26249Y29316D01* X26267Y29284D01* X26285Y29259D01* Y27711D01* X26284Y27709D01* X26266Y27677D01* X26252Y27644D01* X26240Y27610D01* X26238Y27601D01* X26238Y27593D01* X26239Y27584D01* X26242Y27576D01* X26247Y27568D01* X26252Y27561D01* X26259Y27556D01* X26266Y27551D01* X26274Y27548D01* X26283Y27546D01* X26285D01* Y27447D01* X26284Y27447D01* X26275Y27445D01* X26267Y27442D01* X26260Y27437D01* X26253Y27431D01* X26248Y27424D01* X26244Y27417D01* X26241Y27409D01* X26240Y27400D01* X26240Y27391D01* X26242Y27383D01* X26254Y27349D01* X26269Y27316D01* X26285Y27288D01* Y25675D01* X26272Y25644D01* X26260Y25610D01* X26258Y25601D01* X26258Y25593D01* X26259Y25584D01* X26262Y25576D01* X26267Y25568D01* X26272Y25561D01* X26279Y25556D01* X26285Y25552D01* Y25441D01* X26280Y25437D01* X26273Y25431D01* X26268Y25424D01* X26264Y25417D01* X26261Y25409D01* X26260Y25400D01* X26260Y25391D01* X26262Y25383D01* X26274Y25349D01* X26285Y25325D01* Y23625D01* X26280Y23610D01* X26278Y23601D01* X26278Y23593D01* X26279Y23584D01* X26282Y23576D01* X26285Y23571D01* Y23419D01* X26284Y23417D01* X26281Y23409D01* X26280Y23400D01* X26280Y23391D01* X26282Y23383D01* X26285Y23374D01* Y0D01* X25084D01* Y1153D01* X25100Y1162D01* X25129Y1183D01* X25157Y1207D01* X25182Y1232D01* X25205Y1260D01* X25225Y1290D01* X25243Y1322D01* X25257Y1355D01* X25269Y1389D01* X25271Y1398D01* X25271Y1407D01* X25270Y1415D01* X25267Y1423D01* X25262Y1431D01* X25257Y1438D01* X25250Y1444D01* X25243Y1448D01* X25235Y1451D01* X25226Y1453D01* X25217Y1453D01* X25209Y1452D01* X25201Y1449D01* X25193Y1445D01* X25186Y1439D01* X25180Y1433D01* X25176Y1425D01* X25173Y1417D01* X25164Y1391D01* X25153Y1366D01* X25140Y1343D01* X25125Y1320D01* X25108Y1299D01* X25089Y1280D01* X25084Y1276D01* Y1724D01* X25085Y1723D01* X25104Y1704D01* X25122Y1683D01* X25137Y1661D01* X25151Y1637D01* X25162Y1613D01* X25171Y1587D01* X25175Y1579D01* X25179Y1572D01* X25185Y1565D01* X25192Y1560D01* X25200Y1556D01* X25208Y1553D01* X25217Y1552D01* X25225Y1552D01* X25234Y1554D01* X25242Y1557D01* X25249Y1562D01* X25256Y1568D01* X25261Y1575D01* X25265Y1582D01* X25268Y1591D01* X25269Y1599D01* X25269Y1608D01* X25267Y1617D01* X25255Y1651D01* X25240Y1683D01* X25222Y1715D01* X25201Y1744D01* X25177Y1772D01* X25152Y1797D01* X25124Y1820D01* X25094Y1840D01* X25084Y1846D01* Y3165D01* X25109Y3183D01* X25137Y3207D01* X25162Y3232D01* X25185Y3260D01* X25205Y3290D01* X25223Y3322D01* X25237Y3355D01* X25249Y3389D01* X25251Y3398D01* X25251Y3407D01* X25250Y3415D01* X25247Y3423D01* X25242Y3431D01* X25237Y3438D01* X25230Y3444D01* X25223Y3448D01* X25215Y3451D01* X25206Y3453D01* X25197Y3453D01* X25189Y3452D01* X25181Y3449D01* X25173Y3445D01* X25166Y3439D01* X25160Y3433D01* X25156Y3425D01* X25153Y3417D01* X25144Y3391D01* X25133Y3366D01* X25120Y3343D01* X25105Y3320D01* X25088Y3299D01* X25084Y3295D01* Y3704D01* X25084Y3704D01* X25102Y3683D01* X25117Y3661D01* X25131Y3637D01* X25142Y3613D01* X25151Y3587D01* X25155Y3579D01* X25159Y3572D01* X25165Y3565D01* X25172Y3560D01* X25180Y3556D01* X25188Y3553D01* X25197Y3552D01* X25205Y3552D01* X25214Y3554D01* X25222Y3557D01* X25229Y3562D01* X25236Y3568D01* X25241Y3575D01* X25245Y3582D01* X25248Y3591D01* X25249Y3599D01* X25249Y3608D01* X25247Y3617D01* X25235Y3651D01* X25220Y3683D01* X25202Y3715D01* X25181Y3744D01* X25157Y3772D01* X25132Y3797D01* X25104Y3820D01* X25084Y3834D01* Y5180D01* X25089Y5183D01* X25117Y5207D01* X25142Y5232D01* X25165Y5260D01* X25185Y5290D01* X25203Y5322D01* X25217Y5355D01* X25229Y5389D01* X25231Y5398D01* X25231Y5407D01* X25230Y5415D01* X25227Y5423D01* X25222Y5431D01* X25217Y5438D01* X25210Y5444D01* X25203Y5448D01* X25195Y5451D01* X25186Y5453D01* X25177Y5453D01* X25169Y5452D01* X25161Y5449D01* X25153Y5445D01* X25146Y5439D01* X25140Y5433D01* X25136Y5425D01* X25133Y5417D01* X25124Y5391D01* X25113Y5366D01* X25100Y5343D01* X25085Y5320D01* X25084Y5319D01* Y5680D01* X25097Y5661D01* X25111Y5637D01* X25122Y5613D01* X25131Y5587D01* X25135Y5579D01* X25139Y5572D01* X25145Y5565D01* X25152Y5560D01* X25160Y5556D01* X25168Y5553D01* X25177Y5552D01* X25185Y5552D01* X25194Y5554D01* X25202Y5557D01* X25209Y5562D01* X25216Y5568D01* X25221Y5575D01* X25225Y5582D01* X25228Y5591D01* X25229Y5599D01* X25229Y5608D01* X25227Y5617D01* X25215Y5651D01* X25200Y5683D01* X25182Y5715D01* X25161Y5744D01* X25137Y5772D01* X25112Y5797D01* X25084Y5820D01* Y7196D01* X25097Y7207D01* X25122Y7232D01* X25145Y7260D01* X25165Y7290D01* X25183Y7322D01* X25197Y7355D01* X25209Y7389D01* X25211Y7398D01* X25211Y7407D01* X25210Y7415D01* X25207Y7423D01* X25202Y7431D01* X25197Y7438D01* X25190Y7444D01* X25183Y7448D01* X25175Y7451D01* X25166Y7453D01* X25157Y7453D01* X25149Y7452D01* X25141Y7449D01* X25133Y7445D01* X25126Y7439D01* X25120Y7433D01* X25116Y7425D01* X25113Y7417D01* X25104Y7391D01* X25093Y7366D01* X25084Y7350D01* Y7650D01* X25091Y7637D01* X25102Y7613D01* X25111Y7587D01* X25115Y7579D01* X25119Y7572D01* X25125Y7565D01* X25132Y7560D01* X25140Y7556D01* X25148Y7553D01* X25157Y7552D01* X25165Y7552D01* X25174Y7554D01* X25182Y7557D01* X25189Y7562D01* X25196Y7568D01* X25201Y7575D01* X25205Y7582D01* X25208Y7591D01* X25209Y7599D01* X25209Y7608D01* X25207Y7617D01* X25195Y7651D01* X25180Y7683D01* X25162Y7715D01* X25141Y7744D01* X25117Y7772D01* X25092Y7797D01* X25084Y7804D01* Y9214D01* X25102Y9232D01* X25125Y9260D01* X25145Y9290D01* X25163Y9322D01* X25177Y9355D01* X25189Y9389D01* X25191Y9398D01* X25191Y9407D01* X25190Y9415D01* X25187Y9423D01* X25182Y9431D01* X25177Y9438D01* X25170Y9444D01* X25163Y9448D01* X25155Y9451D01* X25146Y9453D01* X25137Y9453D01* X25129Y9452D01* X25121Y9449D01* X25113Y9445D01* X25106Y9439D01* X25100Y9433D01* X25096Y9425D01* X25093Y9417D01* X25084Y9391D01* X25084Y9391D01* Y9608D01* X25091Y9587D01* X25095Y9579D01* X25099Y9572D01* X25105Y9565D01* X25112Y9560D01* X25120Y9556D01* X25128Y9553D01* X25137Y9552D01* X25145Y9552D01* X25154Y9554D01* X25162Y9557D01* X25169Y9562D01* X25176Y9568D01* X25181Y9575D01* X25185Y9582D01* X25188Y9591D01* X25189Y9599D01* X25189Y9608D01* X25187Y9617D01* X25175Y9651D01* X25160Y9683D01* X25142Y9715D01* X25121Y9744D01* X25097Y9772D01* X25084Y9785D01* Y11235D01* X25105Y11260D01* X25125Y11290D01* X25143Y11322D01* X25157Y11355D01* X25169Y11389D01* X25171Y11398D01* X25171Y11407D01* X25170Y11415D01* X25167Y11423D01* X25162Y11431D01* X25157Y11438D01* X25150Y11444D01* X25143Y11448D01* X25135Y11451D01* X25126Y11453D01* X25117Y11453D01* X25109Y11452D01* X25101Y11449D01* X25093Y11445D01* X25086Y11439D01* X25084Y11437D01* Y11567D01* X25085Y11565D01* X25092Y11560D01* X25100Y11556D01* X25108Y11553D01* X25117Y11552D01* X25125Y11552D01* X25134Y11554D01* X25142Y11557D01* X25149Y11562D01* X25156Y11568D01* X25161Y11575D01* X25165Y11582D01* X25168Y11591D01* X25169Y11599D01* X25169Y11608D01* X25167Y11617D01* X25155Y11651D01* X25140Y11683D01* X25122Y11715D01* X25101Y11744D01* X25084Y11764D01* Y13259D01* X25085Y13260D01* X25105Y13290D01* X25123Y13322D01* X25137Y13355D01* X25149Y13389D01* X25151Y13398D01* X25151Y13407D01* X25150Y13415D01* X25147Y13423D01* X25142Y13431D01* X25137Y13438D01* X25130Y13444D01* X25123Y13448D01* X25115Y13451D01* X25106Y13453D01* X25097Y13453D01* X25089Y13452D01* X25084Y13450D01* Y13555D01* X25088Y13553D01* X25097Y13552D01* X25105Y13552D01* X25114Y13554D01* X25122Y13557D01* X25129Y13562D01* X25136Y13568D01* X25141Y13575D01* X25145Y13582D01* X25148Y13591D01* X25149Y13599D01* X25149Y13608D01* X25147Y13617D01* X25135Y13651D01* X25120Y13683D01* X25102Y13715D01* X25084Y13740D01* Y15288D01* X25085Y15290D01* X25103Y15322D01* X25117Y15355D01* X25129Y15389D01* X25131Y15398D01* X25131Y15407D01* X25130Y15415D01* X25127Y15423D01* X25122Y15431D01* X25117Y15438D01* X25110Y15444D01* X25103Y15448D01* X25095Y15451D01* X25086Y15453D01* X25084D01* Y15552D01* X25085D01* X25094Y15554D01* X25102Y15557D01* X25109Y15562D01* X25116Y15568D01* X25121Y15575D01* X25125Y15582D01* X25128Y15591D01* X25129Y15599D01* X25129Y15608D01* X25127Y15617D01* X25115Y15651D01* X25100Y15683D01* X25084Y15711D01* Y17324D01* X25097Y17355D01* X25109Y17389D01* X25111Y17398D01* X25111Y17407D01* X25110Y17415D01* X25107Y17423D01* X25102Y17431D01* X25097Y17438D01* X25090Y17444D01* X25084Y17447D01* Y17559D01* X25089Y17562D01* X25096Y17568D01* X25101Y17575D01* X25105Y17582D01* X25108Y17591D01* X25109Y17599D01* X25109Y17608D01* X25107Y17617D01* X25095Y17651D01* X25084Y17674D01* Y19374D01* X25089Y19389D01* X25091Y19398D01* X25091Y19407D01* X25090Y19415D01* X25087Y19423D01* X25084Y19428D01* Y19580D01* X25085Y19582D01* X25088Y19591D01* X25089Y19599D01* X25089Y19608D01* X25087Y19617D01* X25084Y19625D01* Y40000D01* G37* G36* X26285D02*X26485D01* Y35859D01* X26482Y35864D01* X26476Y35871D01* X26469Y35876D01* X26462Y35880D01* X26453Y35883D01* X26445Y35884D01* X26436Y35884D01* X26428Y35882D01* X26393Y35870D01* X26361Y35855D01* X26329Y35837D01* X26300Y35816D01* X26285Y35804D01* Y37179D01* X26285Y37179D01* X26315Y37159D01* X26347Y37141D01* X26380Y37127D01* X26414Y37115D01* X26423Y37113D01* X26432Y37113D01* X26440Y37115D01* X26448Y37117D01* X26456Y37122D01* X26463Y37127D01* X26469Y37134D01* X26473Y37141D01* X26476Y37149D01* X26478Y37158D01* X26478Y37167D01* X26477Y37175D01* X26474Y37183D01* X26470Y37191D01* X26464Y37198D01* X26457Y37204D01* X26450Y37208D01* X26442Y37211D01* X26416Y37220D01* X26391Y37231D01* X26368Y37244D01* X26345Y37259D01* X26324Y37276D01* X26305Y37295D01* X26287Y37316D01* X26285Y37319D01* Y37680D01* X26301Y37700D01* X26320Y37719D01* X26341Y37737D01* X26363Y37752D01* X26387Y37766D01* X26411Y37777D01* X26437Y37786D01* X26445Y37790D01* X26452Y37794D01* X26459Y37800D01* X26464Y37807D01* X26468Y37815D01* X26471Y37823D01* X26472Y37832D01* X26472Y37840D01* X26470Y37849D01* X26467Y37857D01* X26462Y37864D01* X26456Y37871D01* X26449Y37876D01* X26442Y37880D01* X26433Y37883D01* X26425Y37884D01* X26416Y37884D01* X26408Y37882D01* X26373Y37870D01* X26341Y37855D01* X26309Y37837D01* X26285Y37820D01* Y39166D01* X26295Y39159D01* X26327Y39141D01* X26360Y39127D01* X26394Y39115D01* X26403Y39113D01* X26412Y39113D01* X26420Y39115D01* X26428Y39117D01* X26436Y39122D01* X26443Y39127D01* X26449Y39134D01* X26453Y39141D01* X26456Y39149D01* X26458Y39158D01* X26458Y39167D01* X26457Y39175D01* X26454Y39183D01* X26450Y39191D01* X26444Y39198D01* X26437Y39204D01* X26430Y39208D01* X26422Y39211D01* X26396Y39220D01* X26371Y39231D01* X26348Y39244D01* X26325Y39259D01* X26304Y39276D01* X26285Y39295D01* Y39704D01* X26300Y39719D01* X26321Y39737D01* X26343Y39752D01* X26367Y39766D01* X26391Y39777D01* X26417Y39786D01* X26425Y39790D01* X26432Y39794D01* X26439Y39800D01* X26444Y39807D01* X26448Y39815D01* X26451Y39823D01* X26452Y39832D01* X26452Y39840D01* X26450Y39849D01* X26447Y39857D01* X26442Y39864D01* X26436Y39871D01* X26429Y39876D01* X26422Y39880D01* X26413Y39883D01* X26405Y39884D01* X26396Y39884D01* X26388Y39882D01* X26353Y39870D01* X26321Y39855D01* X26289Y39837D01* X26285Y39834D01* Y40000D01* G37* G36* X26485Y11765D02*X26464Y11739D01* X26444Y11709D01* X26426Y11677D01* X26412Y11644D01* X26400Y11610D01* X26398Y11601D01* X26398Y11593D01* X26399Y11584D01* X26402Y11576D01* X26407Y11568D01* X26412Y11561D01* X26419Y11556D01* X26426Y11551D01* X26434Y11548D01* X26443Y11546D01* X26452Y11546D01* X26460Y11547D01* X26468Y11550D01* X26476Y11555D01* X26483Y11560D01* X26485Y11563D01* Y11432D01* X26484Y11434D01* X26477Y11439D01* X26469Y11443D01* X26461Y11446D01* X26452Y11447D01* X26444Y11447D01* X26435Y11445D01* X26427Y11442D01* X26420Y11437D01* X26413Y11431D01* X26408Y11424D01* X26404Y11417D01* X26401Y11409D01* X26400Y11400D01* X26400Y11391D01* X26402Y11383D01* X26414Y11349D01* X26429Y11316D01* X26447Y11284D01* X26468Y11255D01* X26485Y11235D01* Y9740D01* X26484Y9739D01* X26464Y9709D01* X26446Y9677D01* X26432Y9644D01* X26420Y9610D01* X26418Y9601D01* X26418Y9593D01* X26419Y9584D01* X26422Y9576D01* X26427Y9568D01* X26432Y9561D01* X26439Y9556D01* X26446Y9551D01* X26454Y9548D01* X26463Y9546D01* X26472Y9546D01* X26480Y9547D01* X26485Y9549D01* Y9445D01* X26481Y9446D01* X26472Y9447D01* X26464Y9447D01* X26455Y9445D01* X26447Y9442D01* X26440Y9437D01* X26433Y9431D01* X26428Y9424D01* X26424Y9417D01* X26421Y9409D01* X26420Y9400D01* X26420Y9391D01* X26422Y9383D01* X26434Y9349D01* X26449Y9316D01* X26467Y9284D01* X26485Y9259D01* Y7711D01* X26484Y7709D01* X26466Y7677D01* X26452Y7644D01* X26440Y7610D01* X26438Y7601D01* X26438Y7593D01* X26439Y7584D01* X26442Y7576D01* X26447Y7568D01* X26452Y7561D01* X26459Y7556D01* X26466Y7551D01* X26474Y7548D01* X26483Y7546D01* X26485D01* Y7447D01* X26484Y7447D01* X26475Y7445D01* X26467Y7442D01* X26460Y7437D01* X26453Y7431D01* X26448Y7424D01* X26444Y7417D01* X26441Y7409D01* X26440Y7400D01* X26440Y7391D01* X26442Y7383D01* X26454Y7349D01* X26469Y7316D01* X26485Y7288D01* Y5675D01* X26472Y5644D01* X26460Y5610D01* X26458Y5601D01* X26458Y5593D01* X26459Y5584D01* X26462Y5576D01* X26467Y5568D01* X26472Y5561D01* X26479Y5556D01* X26485Y5552D01* Y5441D01* X26480Y5437D01* X26473Y5431D01* X26468Y5424D01* X26464Y5417D01* X26461Y5409D01* X26460Y5400D01* X26460Y5391D01* X26462Y5383D01* X26474Y5349D01* X26485Y5325D01* Y3625D01* X26480Y3610D01* X26478Y3601D01* X26478Y3593D01* X26479Y3584D01* X26482Y3576D01* X26485Y3571D01* Y3419D01* X26484Y3417D01* X26481Y3409D01* X26480Y3400D01* X26480Y3391D01* X26482Y3383D01* X26485Y3374D01* Y0D01* X26285D01* Y23374D01* X26294Y23349D01* X26309Y23316D01* X26327Y23284D01* X26348Y23255D01* X26372Y23227D01* X26397Y23202D01* X26425Y23179D01* X26455Y23159D01* X26485Y23142D01* Y21846D01* X26469Y21837D01* X26440Y21816D01* X26412Y21793D01* X26387Y21767D01* X26364Y21739D01* X26344Y21709D01* X26326Y21677D01* X26312Y21644D01* X26300Y21610D01* X26298Y21601D01* X26298Y21593D01* X26299Y21584D01* X26302Y21576D01* X26307Y21568D01* X26312Y21561D01* X26319Y21556D01* X26326Y21551D01* X26334Y21548D01* X26343Y21546D01* X26352Y21546D01* X26360Y21547D01* X26368Y21550D01* X26376Y21555D01* X26383Y21560D01* X26389Y21567D01* X26393Y21574D01* X26396Y21582D01* X26405Y21608D01* X26416Y21633D01* X26429Y21657D01* X26444Y21679D01* X26461Y21700D01* X26480Y21719D01* X26485Y21723D01* Y21276D01* X26484Y21276D01* X26465Y21295D01* X26447Y21316D01* X26432Y21338D01* X26418Y21362D01* X26407Y21386D01* X26398Y21412D01* X26394Y21420D01* X26390Y21427D01* X26384Y21434D01* X26377Y21439D01* X26369Y21443D01* X26361Y21446D01* X26352Y21447D01* X26344Y21447D01* X26335Y21445D01* X26327Y21442D01* X26320Y21437D01* X26313Y21431D01* X26308Y21424D01* X26304Y21417D01* X26301Y21409D01* X26300Y21400D01* X26300Y21391D01* X26302Y21383D01* X26314Y21349D01* X26329Y21316D01* X26347Y21284D01* X26368Y21255D01* X26392Y21227D01* X26417Y21202D01* X26445Y21179D01* X26475Y21159D01* X26485Y21153D01* Y19834D01* X26460Y19816D01* X26432Y19793D01* X26407Y19767D01* X26384Y19739D01* X26364Y19709D01* X26346Y19677D01* X26332Y19644D01* X26320Y19610D01* X26318Y19601D01* X26318Y19593D01* X26319Y19584D01* X26322Y19576D01* X26327Y19568D01* X26332Y19561D01* X26339Y19556D01* X26346Y19551D01* X26354Y19548D01* X26363Y19546D01* X26372Y19546D01* X26380Y19547D01* X26388Y19550D01* X26396Y19555D01* X26403Y19560D01* X26409Y19567D01* X26413Y19574D01* X26416Y19582D01* X26425Y19608D01* X26436Y19633D01* X26449Y19657D01* X26464Y19679D01* X26481Y19700D01* X26485Y19704D01* Y19295D01* X26485Y19295D01* X26467Y19316D01* X26452Y19338D01* X26438Y19362D01* X26427Y19386D01* X26418Y19412D01* X26414Y19420D01* X26410Y19427D01* X26404Y19434D01* X26397Y19439D01* X26389Y19443D01* X26381Y19446D01* X26372Y19447D01* X26364Y19447D01* X26355Y19445D01* X26347Y19442D01* X26340Y19437D01* X26333Y19431D01* X26328Y19424D01* X26324Y19417D01* X26321Y19409D01* X26320Y19400D01* X26320Y19391D01* X26322Y19383D01* X26334Y19349D01* X26349Y19316D01* X26367Y19284D01* X26388Y19255D01* X26412Y19227D01* X26437Y19202D01* X26465Y19179D01* X26485Y19166D01* Y17820D01* X26480Y17816D01* X26452Y17793D01* X26427Y17767D01* X26404Y17739D01* X26384Y17709D01* X26366Y17677D01* X26352Y17644D01* X26340Y17610D01* X26338Y17601D01* X26338Y17593D01* X26339Y17584D01* X26342Y17576D01* X26347Y17568D01* X26352Y17561D01* X26359Y17556D01* X26366Y17551D01* X26374Y17548D01* X26383Y17546D01* X26392Y17546D01* X26400Y17547D01* X26408Y17550D01* X26416Y17555D01* X26423Y17560D01* X26429Y17567D01* X26433Y17574D01* X26436Y17582D01* X26445Y17608D01* X26456Y17633D01* X26469Y17657D01* X26484Y17679D01* X26485Y17680D01* Y17319D01* X26472Y17338D01* X26458Y17362D01* X26447Y17386D01* X26438Y17412D01* X26434Y17420D01* X26430Y17427D01* X26424Y17434D01* X26417Y17439D01* X26409Y17443D01* X26401Y17446D01* X26392Y17447D01* X26384Y17447D01* X26375Y17445D01* X26367Y17442D01* X26360Y17437D01* X26353Y17431D01* X26348Y17424D01* X26344Y17417D01* X26341Y17409D01* X26340Y17400D01* X26340Y17391D01* X26342Y17383D01* X26354Y17349D01* X26369Y17316D01* X26387Y17284D01* X26408Y17255D01* X26432Y17227D01* X26457Y17202D01* X26485Y17179D01* Y15804D01* X26472Y15793D01* X26447Y15767D01* X26424Y15739D01* X26404Y15709D01* X26386Y15677D01* X26372Y15644D01* X26360Y15610D01* X26358Y15601D01* X26358Y15593D01* X26359Y15584D01* X26362Y15576D01* X26367Y15568D01* X26372Y15561D01* X26379Y15556D01* X26386Y15551D01* X26394Y15548D01* X26403Y15546D01* X26412Y15546D01* X26420Y15547D01* X26428Y15550D01* X26436Y15555D01* X26443Y15560D01* X26449Y15567D01* X26453Y15574D01* X26456Y15582D01* X26465Y15608D01* X26476Y15633D01* X26485Y15650D01* Y15349D01* X26478Y15362D01* X26467Y15386D01* X26458Y15412D01* X26454Y15420D01* X26450Y15427D01* X26444Y15434D01* X26437Y15439D01* X26429Y15443D01* X26421Y15446D01* X26412Y15447D01* X26404Y15447D01* X26395Y15445D01* X26387Y15442D01* X26380Y15437D01* X26373Y15431D01* X26368Y15424D01* X26364Y15417D01* X26361Y15409D01* X26360Y15400D01* X26360Y15391D01* X26362Y15383D01* X26374Y15349D01* X26389Y15316D01* X26407Y15284D01* X26428Y15255D01* X26452Y15227D01* X26477Y15202D01* X26485Y15196D01* Y13785D01* X26467Y13767D01* X26444Y13739D01* X26424Y13709D01* X26406Y13677D01* X26392Y13644D01* X26380Y13610D01* X26378Y13601D01* X26378Y13593D01* X26379Y13584D01* X26382Y13576D01* X26387Y13568D01* X26392Y13561D01* X26399Y13556D01* X26406Y13551D01* X26414Y13548D01* X26423Y13546D01* X26432Y13546D01* X26440Y13547D01* X26448Y13550D01* X26456Y13555D01* X26463Y13560D01* X26469Y13567D01* X26473Y13574D01* X26476Y13582D01* X26485Y13608D01* X26485Y13609D01* Y13391D01* X26478Y13412D01* X26474Y13420D01* X26470Y13427D01* X26464Y13434D01* X26457Y13439D01* X26449Y13443D01* X26441Y13446D01* X26432Y13447D01* X26424Y13447D01* X26415Y13445D01* X26407Y13442D01* X26400Y13437D01* X26393Y13431D01* X26388Y13424D01* X26384Y13417D01* X26381Y13409D01* X26380Y13400D01* X26380Y13391D01* X26382Y13383D01* X26394Y13349D01* X26409Y13316D01* X26427Y13284D01* X26448Y13255D01* X26472Y13227D01* X26485Y13214D01* Y11765D01* G37* G36* Y23259D02*X26485Y23259D01* X26464Y23276D01* X26445Y23295D01* X26427Y23316D01* X26412Y23338D01* X26398Y23362D01* X26387Y23386D01* X26378Y23412D01* X26374Y23420D01* X26370Y23427D01* X26364Y23434D01* X26357Y23439D01* X26349Y23443D01* X26341Y23446D01* X26332Y23447D01* X26324Y23447D01* X26315Y23445D01* X26307Y23442D01* X26300Y23437D01* X26293Y23431D01* X26288Y23424D01* X26285Y23419D01* Y23571D01* X26287Y23568D01* X26292Y23561D01* X26299Y23556D01* X26306Y23551D01* X26314Y23548D01* X26323Y23546D01* X26332Y23546D01* X26340Y23547D01* X26348Y23550D01* X26356Y23555D01* X26363Y23560D01* X26369Y23567D01* X26373Y23574D01* X26376Y23582D01* X26385Y23608D01* X26396Y23633D01* X26409Y23657D01* X26424Y23679D01* X26441Y23700D01* X26460Y23719D01* X26481Y23737D01* X26485Y23740D01* Y23259D01* G37* G36* Y23857D02*X26481Y23855D01* X26449Y23837D01* X26420Y23816D01* X26392Y23793D01* X26367Y23767D01* X26344Y23739D01* X26324Y23709D01* X26306Y23677D01* X26292Y23644D01* X26285Y23625D01* Y25325D01* X26289Y25316D01* X26307Y25284D01* X26328Y25255D01* X26352Y25227D01* X26377Y25202D01* X26405Y25179D01* X26435Y25159D01* X26467Y25141D01* X26485Y25133D01* Y23857D01* G37* G36* Y25246D02*X26465Y25259D01* X26444Y25276D01* X26425Y25295D01* X26407Y25316D01* X26392Y25338D01* X26378Y25362D01* X26367Y25386D01* X26358Y25412D01* X26354Y25420D01* X26350Y25427D01* X26344Y25434D01* X26337Y25439D01* X26329Y25443D01* X26321Y25446D01* X26312Y25447D01* X26304Y25447D01* X26295Y25445D01* X26287Y25442D01* X26285Y25441D01* Y25552D01* X26286Y25551D01* X26294Y25548D01* X26303Y25546D01* X26312Y25546D01* X26320Y25547D01* X26328Y25550D01* X26336Y25555D01* X26343Y25560D01* X26349Y25567D01* X26353Y25574D01* X26356Y25582D01* X26365Y25608D01* X26376Y25633D01* X26389Y25657D01* X26404Y25679D01* X26421Y25700D01* X26440Y25719D01* X26461Y25737D01* X26483Y25752D01* X26485Y25754D01* Y25246D01* G37* G36* Y25866D02*X26461Y25855D01* X26429Y25837D01* X26400Y25816D01* X26372Y25793D01* X26347Y25767D01* X26324Y25739D01* X26304Y25709D01* X26286Y25677D01* X26285Y25675D01* Y27288D01* X26287Y27284D01* X26308Y27255D01* X26332Y27227D01* X26357Y27202D01* X26385Y27179D01* X26415Y27159D01* X26447Y27141D01* X26480Y27127D01* X26485Y27125D01* Y25866D01* G37* G36* Y27234D02*X26468Y27244D01* X26445Y27259D01* X26424Y27276D01* X26405Y27295D01* X26387Y27316D01* X26372Y27338D01* X26358Y27362D01* X26347Y27386D01* X26338Y27412D01* X26334Y27420D01* X26330Y27427D01* X26324Y27434D01* X26317Y27439D01* X26309Y27443D01* X26301Y27446D01* X26292Y27447D01* X26285Y27447D01* Y27546D01* X26292Y27546D01* X26300Y27547D01* X26308Y27550D01* X26316Y27555D01* X26323Y27560D01* X26329Y27567D01* X26333Y27574D01* X26336Y27582D01* X26345Y27608D01* X26356Y27633D01* X26369Y27657D01* X26384Y27679D01* X26401Y27700D01* X26420Y27719D01* X26441Y27737D01* X26463Y27752D01* X26485Y27765D01* Y27234D01* G37* G36* Y27874D02*X26473Y27870D01* X26441Y27855D01* X26409Y27837D01* X26380Y27816D01* X26352Y27793D01* X26327Y27767D01* X26304Y27739D01* X26285Y27711D01* Y29259D01* X26288Y29255D01* X26312Y29227D01* X26337Y29202D01* X26365Y29179D01* X26395Y29159D01* X26427Y29141D01* X26460Y29127D01* X26485Y29118D01* Y27874D01* G37* G36* Y29225D02*X26471Y29231D01* X26448Y29244D01* X26425Y29259D01* X26404Y29276D01* X26385Y29295D01* X26367Y29316D01* X26352Y29338D01* X26338Y29362D01* X26327Y29386D01* X26318Y29412D01* X26314Y29420D01* X26310Y29427D01* X26304Y29434D01* X26297Y29439D01* X26289Y29443D01* X26285Y29445D01* Y29549D01* X26288Y29550D01* X26296Y29555D01* X26303Y29560D01* X26309Y29567D01* X26313Y29574D01* X26316Y29582D01* X26325Y29608D01* X26336Y29633D01* X26349Y29657D01* X26364Y29679D01* X26381Y29700D01* X26400Y29719D01* X26421Y29737D01* X26443Y29752D01* X26467Y29766D01* X26485Y29775D01* Y29225D01* G37* G36* Y29881D02*X26453Y29870D01* X26421Y29855D01* X26389Y29837D01* X26360Y29816D01* X26332Y29793D01* X26307Y29767D01* X26285Y29740D01* Y31235D01* X26292Y31227D01* X26317Y31202D01* X26345Y31179D01* X26375Y31159D01* X26407Y31141D01* X26440Y31127D01* X26474Y31115D01* X26483Y31113D01* X26485D01* Y29881D01* G37* G36* Y31217D02*X26476Y31220D01* X26451Y31231D01* X26428Y31244D01* X26405Y31259D01* X26384Y31276D01* X26365Y31295D01* X26347Y31316D01* X26332Y31338D01* X26318Y31362D01* X26307Y31386D01* X26298Y31412D01* X26294Y31420D01* X26290Y31427D01* X26285Y31432D01* Y31563D01* X26289Y31567D01* X26293Y31574D01* X26296Y31582D01* X26305Y31608D01* X26316Y31633D01* X26329Y31657D01* X26344Y31679D01* X26361Y31700D01* X26380Y31719D01* X26401Y31737D01* X26423Y31752D01* X26447Y31766D01* X26471Y31777D01* X26485Y31782D01* Y31217D01* G37* G36* Y31884D02*X26485Y31884D01* X26476Y31884D01* X26468Y31882D01* X26433Y31870D01* X26401Y31855D01* X26369Y31837D01* X26340Y31816D01* X26312Y31793D01* X26287Y31767D01* X26285Y31765D01* Y33214D01* X26297Y33202D01* X26325Y33179D01* X26355Y33159D01* X26387Y33141D01* X26420Y33127D01* X26454Y33115D01* X26463Y33113D01* X26472Y33113D01* X26480Y33115D01* X26485Y33116D01* Y31884D01* G37* G36* Y33210D02*X26482Y33211D01* X26456Y33220D01* X26431Y33231D01* X26408Y33244D01* X26385Y33259D01* X26364Y33276D01* X26345Y33295D01* X26327Y33316D01* X26312Y33338D01* X26298Y33362D01* X26287Y33386D01* X26285Y33391D01* Y33609D01* X26296Y33633D01* X26309Y33657D01* X26324Y33679D01* X26341Y33700D01* X26360Y33719D01* X26381Y33737D01* X26403Y33752D01* X26427Y33766D01* X26451Y33777D01* X26477Y33786D01* X26485Y33790D01* X26485Y33790D01* Y33210D01* G37* G36* Y33878D02*X26482Y33880D01* X26473Y33883D01* X26465Y33884D01* X26456Y33884D01* X26448Y33882D01* X26413Y33870D01* X26381Y33855D01* X26349Y33837D01* X26320Y33816D01* X26292Y33793D01* X26285Y33785D01* Y35196D01* X26305Y35179D01* X26335Y35159D01* X26367Y35141D01* X26400Y35127D01* X26434Y35115D01* X26443Y35113D01* X26452Y35113D01* X26460Y35115D01* X26468Y35117D01* X26476Y35122D01* X26483Y35127D01* X26485Y35130D01* Y33878D01* G37* G36* Y35197D02*X26484Y35198D01* X26477Y35204D01* X26470Y35208D01* X26462Y35211D01* X26436Y35220D01* X26411Y35231D01* X26388Y35244D01* X26365Y35259D01* X26344Y35276D01* X26325Y35295D01* X26307Y35316D01* X26292Y35338D01* X26285Y35349D01* Y35650D01* X26289Y35657D01* X26304Y35679D01* X26321Y35700D01* X26340Y35719D01* X26361Y35737D01* X26383Y35752D01* X26407Y35766D01* X26431Y35777D01* X26457Y35786D01* X26465Y35790D01* X26472Y35794D01* X26479Y35800D01* X26484Y35807D01* X26485Y35809D01* Y35197D01* G37* G36* Y40000D02*X26724D01* Y39834D01* X26714Y39840D01* X26682Y39858D01* X26649Y39873D01* X26615Y39884D01* X26606Y39886D01* X26597Y39886D01* X26589Y39885D01* X26581Y39882D01* X26573Y39878D01* X26566Y39872D01* X26560Y39865D01* X26556Y39858D01* X26553Y39850D01* X26551Y39841D01* X26551Y39833D01* X26552Y39824D01* X26555Y39816D01* X26559Y39808D01* X26565Y39801D01* X26572Y39796D01* X26579Y39791D01* X26587Y39788D01* X26613Y39779D01* X26638Y39768D01* X26661Y39755D01* X26684Y39740D01* X26705Y39723D01* X26724Y39704D01* Y39295D01* X26709Y39280D01* X26688Y39262D01* X26666Y39247D01* X26642Y39233D01* X26618Y39222D01* X26592Y39213D01* X26584Y39209D01* X26577Y39205D01* X26570Y39199D01* X26565Y39192D01* X26561Y39184D01* X26558Y39176D01* X26557Y39167D01* X26557Y39159D01* X26559Y39150D01* X26562Y39142D01* X26567Y39135D01* X26573Y39128D01* X26580Y39123D01* X26587Y39119D01* X26596Y39116D01* X26604Y39115D01* X26613Y39115D01* X26621Y39117D01* X26656Y39129D01* X26688Y39144D01* X26720Y39162D01* X26724Y39165D01* Y37846D01* X26702Y37858D01* X26669Y37873D01* X26635Y37884D01* X26626Y37886D01* X26617Y37886D01* X26609Y37885D01* X26601Y37882D01* X26593Y37878D01* X26586Y37872D01* X26580Y37865D01* X26576Y37858D01* X26573Y37850D01* X26571Y37841D01* X26571Y37833D01* X26572Y37824D01* X26575Y37816D01* X26579Y37808D01* X26585Y37801D01* X26592Y37796D01* X26599Y37791D01* X26607Y37788D01* X26633Y37779D01* X26658Y37768D01* X26681Y37755D01* X26704Y37740D01* X26724Y37724D01* Y37276D01* X26708Y37262D01* X26686Y37247D01* X26662Y37233D01* X26638Y37222D01* X26612Y37213D01* X26604Y37209D01* X26597Y37205D01* X26590Y37199D01* X26585Y37192D01* X26581Y37184D01* X26578Y37176D01* X26577Y37167D01* X26577Y37159D01* X26579Y37150D01* X26582Y37142D01* X26587Y37135D01* X26593Y37128D01* X26600Y37123D01* X26607Y37119D01* X26616Y37116D01* X26624Y37115D01* X26633Y37115D01* X26641Y37117D01* X26676Y37129D01* X26708Y37144D01* X26724Y37153D01* Y35857D01* X26722Y35858D01* X26689Y35873D01* X26655Y35884D01* X26646Y35886D01* X26637Y35886D01* X26629Y35885D01* X26621Y35882D01* X26613Y35878D01* X26606Y35872D01* X26600Y35865D01* X26596Y35858D01* X26593Y35850D01* X26591Y35841D01* X26591Y35833D01* X26592Y35824D01* X26595Y35816D01* X26599Y35808D01* X26605Y35801D01* X26612Y35796D01* X26619Y35791D01* X26627Y35788D01* X26653Y35779D01* X26678Y35768D01* X26701Y35755D01* X26724Y35740D01* Y35259D01* X26706Y35247D01* X26682Y35233D01* X26658Y35222D01* X26632Y35213D01* X26624Y35209D01* X26617Y35205D01* X26610Y35199D01* X26605Y35192D01* X26601Y35184D01* X26598Y35176D01* X26597Y35167D01* X26597Y35159D01* X26599Y35150D01* X26602Y35142D01* X26607Y35135D01* X26613Y35128D01* X26620Y35123D01* X26627Y35119D01* X26636Y35116D01* X26644Y35115D01* X26653Y35115D01* X26661Y35117D01* X26696Y35129D01* X26724Y35142D01* Y33866D01* X26709Y33873D01* X26675Y33884D01* X26666Y33886D01* X26657Y33886D01* X26649Y33885D01* X26641Y33882D01* X26633Y33878D01* X26626Y33872D01* X26620Y33865D01* X26616Y33858D01* X26613Y33850D01* X26611Y33841D01* X26611Y33833D01* X26612Y33824D01* X26615Y33816D01* X26619Y33808D01* X26625Y33801D01* X26632Y33796D01* X26639Y33791D01* X26647Y33788D01* X26673Y33779D01* X26698Y33768D01* X26721Y33755D01* X26724Y33754D01* Y33246D01* X26702Y33233D01* X26678Y33222D01* X26652Y33213D01* X26644Y33209D01* X26637Y33205D01* X26630Y33199D01* X26625Y33192D01* X26621Y33184D01* X26618Y33176D01* X26617Y33167D01* X26617Y33159D01* X26619Y33150D01* X26622Y33142D01* X26627Y33135D01* X26633Y33128D01* X26640Y33123D01* X26647Y33119D01* X26656Y33116D01* X26664Y33115D01* X26673Y33115D01* X26681Y33117D01* X26716Y33129D01* X26724Y33133D01* Y31874D01* X26695Y31884D01* X26686Y31886D01* X26677Y31886D01* X26669Y31885D01* X26661Y31882D01* X26653Y31878D01* X26646Y31872D01* X26640Y31865D01* X26636Y31858D01* X26633Y31850D01* X26631Y31841D01* X26631Y31833D01* X26632Y31824D01* X26635Y31816D01* X26639Y31808D01* X26645Y31801D01* X26652Y31796D01* X26659Y31791D01* X26667Y31788D01* X26693Y31779D01* X26718Y31768D01* X26724Y31765D01* Y31234D01* X26722Y31233D01* X26698Y31222D01* X26672Y31213D01* X26664Y31209D01* X26657Y31205D01* X26650Y31199D01* X26645Y31192D01* X26641Y31184D01* X26638Y31176D01* X26637Y31167D01* X26637Y31159D01* X26639Y31150D01* X26642Y31142D01* X26647Y31135D01* X26653Y31128D01* X26660Y31123D01* X26667Y31119D01* X26676Y31116D01* X26684Y31115D01* X26693Y31115D01* X26701Y31117D01* X26724Y31125D01* Y29881D01* X26715Y29884D01* X26706Y29886D01* X26697Y29886D01* X26689Y29885D01* X26681Y29882D01* X26673Y29878D01* X26666Y29872D01* X26660Y29865D01* X26656Y29858D01* X26653Y29850D01* X26651Y29841D01* X26651Y29833D01* X26652Y29824D01* X26655Y29816D01* X26659Y29808D01* X26665Y29801D01* X26672Y29796D01* X26679Y29791D01* X26687Y29788D01* X26713Y29779D01* X26724Y29774D01* Y29225D01* X26718Y29222D01* X26692Y29213D01* X26684Y29209D01* X26677Y29205D01* X26670Y29199D01* X26665Y29192D01* X26661Y29184D01* X26658Y29176D01* X26657Y29167D01* X26657Y29159D01* X26659Y29150D01* X26662Y29142D01* X26667Y29135D01* X26673Y29128D01* X26680Y29123D01* X26687Y29119D01* X26696Y29116D01* X26704Y29115D01* X26713Y29115D01* X26721Y29117D01* X26724Y29118D01* Y27886D01* X26717Y27886D01* X26709Y27885D01* X26701Y27882D01* X26693Y27878D01* X26686Y27872D01* X26680Y27865D01* X26676Y27858D01* X26673Y27850D01* X26671Y27841D01* X26671Y27833D01* X26672Y27824D01* X26675Y27816D01* X26679Y27808D01* X26685Y27801D01* X26692Y27796D01* X26699Y27791D01* X26707Y27788D01* X26724Y27782D01* Y27217D01* X26712Y27213D01* X26704Y27209D01* X26697Y27205D01* X26690Y27199D01* X26685Y27192D01* X26681Y27184D01* X26678Y27176D01* X26677Y27167D01* X26677Y27159D01* X26679Y27150D01* X26682Y27142D01* X26687Y27135D01* X26693Y27128D01* X26700Y27123D01* X26707Y27119D01* X26716Y27116D01* X26724Y27115D01* Y25883D01* X26721Y25882D01* X26713Y25878D01* X26706Y25872D01* X26700Y25865D01* X26696Y25858D01* X26693Y25850D01* X26691Y25841D01* X26691Y25833D01* X26692Y25824D01* X26695Y25816D01* X26699Y25808D01* X26705Y25801D01* X26712Y25796D01* X26719Y25791D01* X26724Y25789D01* Y25209D01* X26717Y25205D01* X26710Y25199D01* X26705Y25192D01* X26701Y25184D01* X26698Y25176D01* X26697Y25167D01* X26697Y25159D01* X26699Y25150D01* X26702Y25142D01* X26707Y25135D01* X26713Y25128D01* X26720Y25123D01* X26724Y25121D01* Y23870D01* X26720Y23865D01* X26716Y23858D01* X26713Y23850D01* X26711Y23841D01* X26711Y23833D01* X26712Y23824D01* X26715Y23816D01* X26719Y23808D01* X26724Y23802D01* Y23190D01* X26721Y23184D01* X26718Y23176D01* X26717Y23167D01* X26717Y23159D01* X26719Y23150D01* X26722Y23142D01* X26724Y23140D01* Y11861D01* X26722Y11864D01* X26716Y11871D01* X26709Y11876D01* X26702Y11880D01* X26693Y11883D01* X26685Y11884D01* X26676Y11884D01* X26668Y11882D01* X26633Y11870D01* X26601Y11855D01* X26569Y11837D01* X26540Y11816D01* X26512Y11793D01* X26487Y11767D01* X26485Y11765D01* Y13214D01* X26497Y13202D01* X26525Y13179D01* X26555Y13159D01* X26587Y13141D01* X26620Y13127D01* X26654Y13115D01* X26663Y13113D01* X26672Y13113D01* X26680Y13115D01* X26688Y13117D01* X26696Y13122D01* X26703Y13127D01* X26709Y13134D01* X26713Y13141D01* X26716Y13149D01* X26718Y13158D01* X26718Y13167D01* X26717Y13175D01* X26714Y13183D01* X26710Y13191D01* X26704Y13198D01* X26697Y13204D01* X26690Y13208D01* X26682Y13211D01* X26656Y13220D01* X26631Y13231D01* X26608Y13244D01* X26585Y13259D01* X26564Y13276D01* X26545Y13295D01* X26527Y13316D01* X26512Y13338D01* X26498Y13362D01* X26487Y13386D01* X26485Y13391D01* Y13609D01* X26496Y13633D01* X26509Y13657D01* X26524Y13679D01* X26541Y13700D01* X26560Y13719D01* X26581Y13737D01* X26603Y13752D01* X26627Y13766D01* X26651Y13777D01* X26677Y13786D01* X26685Y13790D01* X26692Y13794D01* X26699Y13800D01* X26704Y13807D01* X26708Y13815D01* X26711Y13823D01* X26712Y13832D01* X26712Y13840D01* X26710Y13849D01* X26707Y13857D01* X26702Y13864D01* X26696Y13871D01* X26689Y13876D01* X26682Y13880D01* X26673Y13883D01* X26665Y13884D01* X26656Y13884D01* X26648Y13882D01* X26613Y13870D01* X26581Y13855D01* X26549Y13837D01* X26520Y13816D01* X26492Y13793D01* X26485Y13785D01* Y15196D01* X26505Y15179D01* X26535Y15159D01* X26567Y15141D01* X26600Y15127D01* X26634Y15115D01* X26643Y15113D01* X26652Y15113D01* X26660Y15115D01* X26668Y15117D01* X26676Y15122D01* X26683Y15127D01* X26689Y15134D01* X26693Y15141D01* X26696Y15149D01* X26698Y15158D01* X26698Y15167D01* X26697Y15175D01* X26694Y15183D01* X26690Y15191D01* X26684Y15198D01* X26677Y15204D01* X26670Y15208D01* X26662Y15211D01* X26636Y15220D01* X26611Y15231D01* X26588Y15244D01* X26565Y15259D01* X26544Y15276D01* X26525Y15295D01* X26507Y15316D01* X26492Y15338D01* X26485Y15349D01* Y15650D01* X26489Y15657D01* X26504Y15679D01* X26521Y15700D01* X26540Y15719D01* X26561Y15737D01* X26583Y15752D01* X26607Y15766D01* X26631Y15777D01* X26657Y15786D01* X26665Y15790D01* X26672Y15794D01* X26679Y15800D01* X26684Y15807D01* X26688Y15815D01* X26691Y15823D01* X26692Y15832D01* X26692Y15840D01* X26690Y15849D01* X26687Y15857D01* X26682Y15864D01* X26676Y15871D01* X26669Y15876D01* X26662Y15880D01* X26653Y15883D01* X26645Y15884D01* X26636Y15884D01* X26628Y15882D01* X26593Y15870D01* X26561Y15855D01* X26529Y15837D01* X26500Y15816D01* X26485Y15804D01* Y17179D01* X26485Y17179D01* X26515Y17159D01* X26547Y17141D01* X26580Y17127D01* X26614Y17115D01* X26623Y17113D01* X26632Y17113D01* X26640Y17115D01* X26648Y17117D01* X26656Y17122D01* X26663Y17127D01* X26669Y17134D01* X26673Y17141D01* X26676Y17149D01* X26678Y17158D01* X26678Y17167D01* X26677Y17175D01* X26674Y17183D01* X26670Y17191D01* X26664Y17198D01* X26657Y17204D01* X26650Y17208D01* X26642Y17211D01* X26616Y17220D01* X26591Y17231D01* X26568Y17244D01* X26545Y17259D01* X26524Y17276D01* X26505Y17295D01* X26487Y17316D01* X26485Y17319D01* Y17680D01* X26501Y17700D01* X26520Y17719D01* X26541Y17737D01* X26563Y17752D01* X26587Y17766D01* X26611Y17777D01* X26637Y17786D01* X26645Y17790D01* X26652Y17794D01* X26659Y17800D01* X26664Y17807D01* X26668Y17815D01* X26671Y17823D01* X26672Y17832D01* X26672Y17840D01* X26670Y17849D01* X26667Y17857D01* X26662Y17864D01* X26656Y17871D01* X26649Y17876D01* X26642Y17880D01* X26633Y17883D01* X26625Y17884D01* X26616Y17884D01* X26608Y17882D01* X26573Y17870D01* X26541Y17855D01* X26509Y17837D01* X26485Y17820D01* Y19166D01* X26495Y19159D01* X26527Y19141D01* X26560Y19127D01* X26594Y19115D01* X26603Y19113D01* X26612Y19113D01* X26620Y19115D01* X26628Y19117D01* X26636Y19122D01* X26643Y19127D01* X26649Y19134D01* X26653Y19141D01* X26656Y19149D01* X26658Y19158D01* X26658Y19167D01* X26657Y19175D01* X26654Y19183D01* X26650Y19191D01* X26644Y19198D01* X26637Y19204D01* X26630Y19208D01* X26622Y19211D01* X26596Y19220D01* X26571Y19231D01* X26548Y19244D01* X26525Y19259D01* X26504Y19276D01* X26485Y19295D01* Y19704D01* X26500Y19719D01* X26521Y19737D01* X26543Y19752D01* X26567Y19766D01* X26591Y19777D01* X26617Y19786D01* X26625Y19790D01* X26632Y19794D01* X26639Y19800D01* X26644Y19807D01* X26648Y19815D01* X26651Y19823D01* X26652Y19832D01* X26652Y19840D01* X26650Y19849D01* X26647Y19857D01* X26642Y19864D01* X26636Y19871D01* X26629Y19876D01* X26622Y19880D01* X26613Y19883D01* X26605Y19884D01* X26596Y19884D01* X26588Y19882D01* X26553Y19870D01* X26521Y19855D01* X26489Y19837D01* X26485Y19834D01* Y21153D01* X26507Y21141D01* X26540Y21127D01* X26574Y21115D01* X26583Y21113D01* X26592Y21113D01* X26600Y21115D01* X26608Y21117D01* X26616Y21122D01* X26623Y21127D01* X26629Y21134D01* X26633Y21141D01* X26636Y21149D01* X26638Y21158D01* X26638Y21167D01* X26637Y21175D01* X26634Y21183D01* X26630Y21191D01* X26624Y21198D01* X26617Y21204D01* X26610Y21208D01* X26602Y21211D01* X26576Y21220D01* X26551Y21231D01* X26528Y21244D01* X26505Y21259D01* X26485Y21276D01* Y21723D01* X26501Y21737D01* X26523Y21752D01* X26547Y21766D01* X26571Y21777D01* X26597Y21786D01* X26605Y21790D01* X26612Y21794D01* X26619Y21800D01* X26624Y21807D01* X26628Y21815D01* X26631Y21823D01* X26632Y21832D01* X26632Y21840D01* X26630Y21849D01* X26627Y21857D01* X26622Y21864D01* X26616Y21871D01* X26609Y21876D01* X26602Y21880D01* X26593Y21883D01* X26585Y21884D01* X26576Y21884D01* X26568Y21882D01* X26533Y21870D01* X26501Y21855D01* X26485Y21846D01* Y23142D01* X26487Y23141D01* X26520Y23127D01* X26554Y23115D01* X26563Y23113D01* X26572Y23113D01* X26580Y23115D01* X26588Y23117D01* X26596Y23122D01* X26603Y23127D01* X26609Y23134D01* X26613Y23141D01* X26616Y23149D01* X26618Y23158D01* X26618Y23167D01* X26617Y23175D01* X26614Y23183D01* X26610Y23191D01* X26604Y23198D01* X26597Y23204D01* X26590Y23208D01* X26582Y23211D01* X26556Y23220D01* X26531Y23231D01* X26508Y23244D01* X26485Y23259D01* Y23740D01* X26503Y23752D01* X26527Y23766D01* X26551Y23777D01* X26577Y23786D01* X26585Y23790D01* X26592Y23794D01* X26599Y23800D01* X26604Y23807D01* X26608Y23815D01* X26611Y23823D01* X26612Y23832D01* X26612Y23840D01* X26610Y23849D01* X26607Y23857D01* X26602Y23864D01* X26596Y23871D01* X26589Y23876D01* X26582Y23880D01* X26573Y23883D01* X26565Y23884D01* X26556Y23884D01* X26548Y23882D01* X26513Y23870D01* X26485Y23857D01* Y25133D01* X26500Y25127D01* X26534Y25115D01* X26543Y25113D01* X26552Y25113D01* X26560Y25115D01* X26568Y25117D01* X26576Y25122D01* X26583Y25127D01* X26589Y25134D01* X26593Y25141D01* X26596Y25149D01* X26598Y25158D01* X26598Y25167D01* X26597Y25175D01* X26594Y25183D01* X26590Y25191D01* X26584Y25198D01* X26577Y25204D01* X26570Y25208D01* X26562Y25211D01* X26536Y25220D01* X26511Y25231D01* X26488Y25244D01* X26485Y25246D01* Y25754D01* X26507Y25766D01* X26531Y25777D01* X26557Y25786D01* X26565Y25790D01* X26572Y25794D01* X26579Y25800D01* X26584Y25807D01* X26588Y25815D01* X26591Y25823D01* X26592Y25832D01* X26592Y25840D01* X26590Y25849D01* X26587Y25857D01* X26582Y25864D01* X26576Y25871D01* X26569Y25876D01* X26562Y25880D01* X26553Y25883D01* X26545Y25884D01* X26536Y25884D01* X26528Y25882D01* X26493Y25870D01* X26485Y25866D01* Y27125D01* X26514Y27115D01* X26523Y27113D01* X26532Y27113D01* X26540Y27115D01* X26548Y27117D01* X26556Y27122D01* X26563Y27127D01* X26569Y27134D01* X26573Y27141D01* X26576Y27149D01* X26578Y27158D01* X26578Y27167D01* X26577Y27175D01* X26574Y27183D01* X26570Y27191D01* X26564Y27198D01* X26557Y27204D01* X26550Y27208D01* X26542Y27211D01* X26516Y27220D01* X26491Y27231D01* X26485Y27234D01* Y27765D01* X26487Y27766D01* X26511Y27777D01* X26537Y27786D01* X26545Y27790D01* X26552Y27794D01* X26559Y27800D01* X26564Y27807D01* X26568Y27815D01* X26571Y27823D01* X26572Y27832D01* X26572Y27840D01* X26570Y27849D01* X26567Y27857D01* X26562Y27864D01* X26556Y27871D01* X26549Y27876D01* X26542Y27880D01* X26533Y27883D01* X26525Y27884D01* X26516Y27884D01* X26508Y27882D01* X26485Y27874D01* Y29118D01* X26494Y29115D01* X26503Y29113D01* X26512Y29113D01* X26520Y29115D01* X26528Y29117D01* X26536Y29122D01* X26543Y29127D01* X26549Y29134D01* X26553Y29141D01* X26556Y29149D01* X26558Y29158D01* X26558Y29167D01* X26557Y29175D01* X26554Y29183D01* X26550Y29191D01* X26544Y29198D01* X26537Y29204D01* X26530Y29208D01* X26522Y29211D01* X26496Y29220D01* X26485Y29225D01* Y29775D01* X26491Y29777D01* X26517Y29786D01* X26525Y29790D01* X26532Y29794D01* X26539Y29800D01* X26544Y29807D01* X26548Y29815D01* X26551Y29823D01* X26552Y29832D01* X26552Y29840D01* X26550Y29849D01* X26547Y29857D01* X26542Y29864D01* X26536Y29871D01* X26529Y29876D01* X26522Y29880D01* X26513Y29883D01* X26505Y29884D01* X26496Y29884D01* X26488Y29882D01* X26485Y29881D01* Y31113D01* X26492Y31113D01* X26500Y31115D01* X26508Y31117D01* X26516Y31122D01* X26523Y31127D01* X26529Y31134D01* X26533Y31141D01* X26536Y31149D01* X26538Y31158D01* X26538Y31167D01* X26537Y31175D01* X26534Y31183D01* X26530Y31191D01* X26524Y31198D01* X26517Y31204D01* X26510Y31208D01* X26502Y31211D01* X26485Y31217D01* Y31782D01* X26497Y31786D01* X26505Y31790D01* X26512Y31794D01* X26519Y31800D01* X26524Y31807D01* X26528Y31815D01* X26531Y31823D01* X26532Y31832D01* X26532Y31840D01* X26530Y31849D01* X26527Y31857D01* X26522Y31864D01* X26516Y31871D01* X26509Y31876D01* X26502Y31880D01* X26493Y31883D01* X26485Y31884D01* Y33116D01* X26488Y33117D01* X26496Y33122D01* X26503Y33127D01* X26509Y33134D01* X26513Y33141D01* X26516Y33149D01* X26518Y33158D01* X26518Y33167D01* X26517Y33175D01* X26514Y33183D01* X26510Y33191D01* X26504Y33198D01* X26497Y33204D01* X26490Y33208D01* X26485Y33210D01* Y33790D01* X26492Y33794D01* X26499Y33800D01* X26504Y33807D01* X26508Y33815D01* X26511Y33823D01* X26512Y33832D01* X26512Y33840D01* X26510Y33849D01* X26507Y33857D01* X26502Y33864D01* X26496Y33871D01* X26489Y33876D01* X26485Y33878D01* Y35130D01* X26489Y35134D01* X26493Y35141D01* X26496Y35149D01* X26498Y35158D01* X26498Y35167D01* X26497Y35175D01* X26494Y35183D01* X26490Y35191D01* X26485Y35197D01* Y35809D01* X26488Y35815D01* X26491Y35823D01* X26492Y35832D01* X26492Y35840D01* X26490Y35849D01* X26487Y35857D01* X26485Y35859D01* Y40000D01* G37* G36* Y11563D02*X26489Y11567D01* X26493Y11574D01* X26496Y11582D01* X26505Y11608D01* X26516Y11633D01* X26529Y11657D01* X26544Y11679D01* X26561Y11700D01* X26580Y11719D01* X26601Y11737D01* X26623Y11752D01* X26647Y11766D01* X26671Y11777D01* X26697Y11786D01* X26705Y11790D01* X26712Y11794D01* X26719Y11800D01* X26724Y11807D01* Y11198D01* X26717Y11204D01* X26710Y11208D01* X26702Y11211D01* X26676Y11220D01* X26651Y11231D01* X26628Y11244D01* X26605Y11259D01* X26584Y11276D01* X26565Y11295D01* X26547Y11316D01* X26532Y11338D01* X26518Y11362D01* X26507Y11386D01* X26498Y11412D01* X26494Y11420D01* X26490Y11427D01* X26485Y11432D01* Y11563D01* G37* G36* Y11235D02*X26492Y11227D01* X26517Y11202D01* X26545Y11179D01* X26575Y11159D01* X26607Y11141D01* X26640Y11127D01* X26674Y11115D01* X26683Y11113D01* X26692Y11113D01* X26700Y11115D01* X26708Y11117D01* X26716Y11122D01* X26723Y11127D01* X26724Y11128D01* Y9879D01* X26722Y9880D01* X26713Y9883D01* X26705Y9884D01* X26696Y9884D01* X26688Y9882D01* X26653Y9870D01* X26621Y9855D01* X26589Y9837D01* X26560Y9816D01* X26532Y9793D01* X26507Y9767D01* X26485Y9740D01* Y11235D01* G37* G36* Y9549D02*X26488Y9550D01* X26496Y9555D01* X26503Y9560D01* X26509Y9567D01* X26513Y9574D01* X26516Y9582D01* X26525Y9608D01* X26536Y9633D01* X26549Y9657D01* X26564Y9679D01* X26581Y9700D01* X26600Y9719D01* X26621Y9737D01* X26643Y9752D01* X26667Y9766D01* X26691Y9777D01* X26717Y9786D01* X26724Y9789D01* Y9210D01* X26722Y9211D01* X26696Y9220D01* X26671Y9231D01* X26648Y9244D01* X26625Y9259D01* X26604Y9276D01* X26585Y9295D01* X26567Y9316D01* X26552Y9338D01* X26538Y9362D01* X26527Y9386D01* X26518Y9412D01* X26514Y9420D01* X26510Y9427D01* X26504Y9434D01* X26497Y9439D01* X26489Y9443D01* X26485Y9445D01* Y9549D01* G37* G36* Y9259D02*X26488Y9255D01* X26512Y9227D01* X26537Y9202D01* X26565Y9179D01* X26595Y9159D01* X26627Y9141D01* X26660Y9127D01* X26694Y9115D01* X26703Y9113D01* X26712Y9113D01* X26720Y9115D01* X26724Y9116D01* Y7884D01* X26716Y7884D01* X26708Y7882D01* X26673Y7870D01* X26641Y7855D01* X26609Y7837D01* X26580Y7816D01* X26552Y7793D01* X26527Y7767D01* X26504Y7739D01* X26485Y7711D01* Y9259D01* G37* G36* Y7546D02*X26492Y7546D01* X26500Y7547D01* X26508Y7550D01* X26516Y7555D01* X26523Y7560D01* X26529Y7567D01* X26533Y7574D01* X26536Y7582D01* X26545Y7608D01* X26556Y7633D01* X26569Y7657D01* X26584Y7679D01* X26601Y7700D01* X26620Y7719D01* X26641Y7737D01* X26663Y7752D01* X26687Y7766D01* X26711Y7777D01* X26724Y7782D01* Y7217D01* X26716Y7220D01* X26691Y7231D01* X26668Y7244D01* X26645Y7259D01* X26624Y7276D01* X26605Y7295D01* X26587Y7316D01* X26572Y7338D01* X26558Y7362D01* X26547Y7386D01* X26538Y7412D01* X26534Y7420D01* X26530Y7427D01* X26524Y7434D01* X26517Y7439D01* X26509Y7443D01* X26501Y7446D01* X26492Y7447D01* X26485Y7447D01* Y7546D01* G37* G36* Y7288D02*X26487Y7284D01* X26508Y7255D01* X26532Y7227D01* X26557Y7202D01* X26585Y7179D01* X26615Y7159D01* X26647Y7141D01* X26680Y7127D01* X26714Y7115D01* X26723Y7113D01* X26724D01* Y5881D01* X26693Y5870D01* X26661Y5855D01* X26629Y5837D01* X26600Y5816D01* X26572Y5793D01* X26547Y5767D01* X26524Y5739D01* X26504Y5709D01* X26486Y5677D01* X26485Y5675D01* Y7288D01* G37* G36* Y5552D02*X26486Y5551D01* X26494Y5548D01* X26503Y5546D01* X26512Y5546D01* X26520Y5547D01* X26528Y5550D01* X26536Y5555D01* X26543Y5560D01* X26549Y5567D01* X26553Y5574D01* X26556Y5582D01* X26565Y5608D01* X26576Y5633D01* X26589Y5657D01* X26604Y5679D01* X26621Y5700D01* X26640Y5719D01* X26661Y5737D01* X26683Y5752D01* X26707Y5766D01* X26724Y5774D01* Y5225D01* X26711Y5231D01* X26688Y5244D01* X26665Y5259D01* X26644Y5276D01* X26625Y5295D01* X26607Y5316D01* X26592Y5338D01* X26578Y5362D01* X26567Y5386D01* X26558Y5412D01* X26554Y5420D01* X26550Y5427D01* X26544Y5434D01* X26537Y5439D01* X26529Y5443D01* X26521Y5446D01* X26512Y5447D01* X26504Y5447D01* X26495Y5445D01* X26487Y5442D01* X26485Y5441D01* Y5552D01* G37* G36* Y5325D02*X26489Y5316D01* X26507Y5284D01* X26528Y5255D01* X26552Y5227D01* X26577Y5202D01* X26605Y5179D01* X26635Y5159D01* X26667Y5141D01* X26700Y5127D01* X26724Y5119D01* Y3874D01* X26713Y3870D01* X26681Y3855D01* X26649Y3837D01* X26620Y3816D01* X26592Y3793D01* X26567Y3767D01* X26544Y3739D01* X26524Y3709D01* X26506Y3677D01* X26492Y3644D01* X26485Y3625D01* Y5325D01* G37* G36* Y3571D02*X26487Y3568D01* X26492Y3561D01* X26499Y3556D01* X26506Y3551D01* X26514Y3548D01* X26523Y3546D01* X26532Y3546D01* X26540Y3547D01* X26548Y3550D01* X26556Y3555D01* X26563Y3560D01* X26569Y3567D01* X26573Y3574D01* X26576Y3582D01* X26585Y3608D01* X26596Y3633D01* X26609Y3657D01* X26624Y3679D01* X26641Y3700D01* X26660Y3719D01* X26681Y3737D01* X26703Y3752D01* X26724Y3764D01* Y3235D01* X26708Y3244D01* X26685Y3259D01* X26664Y3276D01* X26645Y3295D01* X26627Y3316D01* X26612Y3338D01* X26598Y3362D01* X26587Y3386D01* X26578Y3412D01* X26574Y3420D01* X26570Y3427D01* X26564Y3434D01* X26557Y3439D01* X26549Y3443D01* X26541Y3446D01* X26532Y3447D01* X26524Y3447D01* X26515Y3445D01* X26507Y3442D01* X26500Y3437D01* X26493Y3431D01* X26488Y3424D01* X26485Y3419D01* Y3571D01* G37* G36* Y3374D02*X26494Y3349D01* X26509Y3316D01* X26527Y3284D01* X26548Y3255D01* X26572Y3227D01* X26597Y3202D01* X26625Y3179D01* X26655Y3159D01* X26687Y3141D01* X26720Y3127D01* X26724Y3125D01* Y1866D01* X26701Y1855D01* X26669Y1837D01* X26640Y1816D01* X26612Y1793D01* X26587Y1767D01* X26564Y1739D01* X26544Y1709D01* X26526Y1677D01* X26512Y1644D01* X26500Y1610D01* X26498Y1601D01* X26498Y1593D01* X26499Y1584D01* X26502Y1576D01* X26507Y1568D01* X26512Y1561D01* X26519Y1556D01* X26526Y1551D01* X26534Y1548D01* X26543Y1546D01* X26552Y1546D01* X26560Y1547D01* X26568Y1550D01* X26576Y1555D01* X26583Y1560D01* X26589Y1567D01* X26593Y1574D01* X26596Y1582D01* X26605Y1608D01* X26616Y1633D01* X26629Y1657D01* X26644Y1679D01* X26661Y1700D01* X26680Y1719D01* X26701Y1737D01* X26723Y1752D01* X26724Y1753D01* Y1246D01* X26705Y1259D01* X26684Y1276D01* X26665Y1295D01* X26647Y1316D01* X26632Y1338D01* X26618Y1362D01* X26607Y1386D01* X26598Y1412D01* X26594Y1420D01* X26590Y1427D01* X26584Y1434D01* X26577Y1439D01* X26569Y1443D01* X26561Y1446D01* X26552Y1447D01* X26544Y1447D01* X26535Y1445D01* X26527Y1442D01* X26520Y1437D01* X26513Y1431D01* X26508Y1424D01* X26504Y1417D01* X26501Y1409D01* X26500Y1400D01* X26500Y1391D01* X26502Y1383D01* X26514Y1349D01* X26529Y1316D01* X26547Y1284D01* X26568Y1255D01* X26592Y1227D01* X26617Y1202D01* X26645Y1179D01* X26675Y1159D01* X26707Y1141D01* X26724Y1134D01* Y0D01* X26485D01* Y3374D01* G37* G36* X26724Y40000D02*X26924D01* Y35625D01* X26915Y35651D01* X26900Y35683D01* X26882Y35715D01* X26861Y35744D01* X26837Y35772D01* X26812Y35797D01* X26784Y35820D01* X26754Y35840D01* X26724Y35857D01* Y37153D01* X26740Y37162D01* X26769Y37183D01* X26797Y37207D01* X26822Y37232D01* X26845Y37260D01* X26865Y37290D01* X26883Y37322D01* X26897Y37355D01* X26909Y37389D01* X26911Y37398D01* X26911Y37407D01* X26910Y37415D01* X26907Y37423D01* X26902Y37431D01* X26897Y37438D01* X26890Y37444D01* X26883Y37448D01* X26875Y37451D01* X26866Y37453D01* X26857Y37453D01* X26849Y37452D01* X26841Y37449D01* X26833Y37445D01* X26826Y37439D01* X26820Y37433D01* X26816Y37425D01* X26813Y37417D01* X26804Y37391D01* X26793Y37366D01* X26780Y37343D01* X26765Y37320D01* X26748Y37299D01* X26729Y37280D01* X26724Y37276D01* Y37724D01* X26725Y37723D01* X26744Y37704D01* X26762Y37683D01* X26777Y37661D01* X26791Y37637D01* X26802Y37613D01* X26811Y37587D01* X26815Y37579D01* X26819Y37572D01* X26825Y37565D01* X26832Y37560D01* X26840Y37556D01* X26848Y37553D01* X26857Y37552D01* X26865Y37552D01* X26874Y37554D01* X26882Y37557D01* X26889Y37562D01* X26896Y37568D01* X26901Y37575D01* X26905Y37582D01* X26908Y37591D01* X26909Y37599D01* X26909Y37608D01* X26907Y37617D01* X26895Y37651D01* X26880Y37683D01* X26862Y37715D01* X26841Y37744D01* X26817Y37772D01* X26792Y37797D01* X26764Y37820D01* X26734Y37840D01* X26724Y37846D01* Y39165D01* X26749Y39183D01* X26777Y39207D01* X26802Y39232D01* X26825Y39260D01* X26845Y39290D01* X26863Y39322D01* X26877Y39355D01* X26889Y39389D01* X26891Y39398D01* X26891Y39407D01* X26890Y39415D01* X26887Y39423D01* X26882Y39431D01* X26877Y39438D01* X26870Y39444D01* X26863Y39448D01* X26855Y39451D01* X26846Y39453D01* X26837Y39453D01* X26829Y39452D01* X26821Y39449D01* X26813Y39445D01* X26806Y39439D01* X26800Y39433D01* X26796Y39425D01* X26793Y39417D01* X26784Y39391D01* X26773Y39366D01* X26760Y39343D01* X26745Y39320D01* X26728Y39299D01* X26724Y39295D01* Y39704D01* X26724Y39704D01* X26742Y39683D01* X26757Y39661D01* X26771Y39637D01* X26782Y39613D01* X26791Y39587D01* X26795Y39579D01* X26799Y39572D01* X26805Y39565D01* X26812Y39560D01* X26820Y39556D01* X26828Y39553D01* X26837Y39552D01* X26845Y39552D01* X26854Y39554D01* X26862Y39557D01* X26869Y39562D01* X26876Y39568D01* X26881Y39575D01* X26885Y39582D01* X26888Y39591D01* X26889Y39599D01* X26889Y39608D01* X26887Y39617D01* X26875Y39651D01* X26860Y39683D01* X26842Y39715D01* X26821Y39744D01* X26797Y39772D01* X26772Y39797D01* X26744Y39820D01* X26724Y39834D01* Y40000D01* G37* G36* X26924Y0D02*X26724D01* Y1134D01* X26740Y1127D01* X26774Y1115D01* X26783Y1113D01* X26792Y1113D01* X26800Y1115D01* X26808Y1117D01* X26816Y1122D01* X26823Y1127D01* X26829Y1134D01* X26833Y1141D01* X26836Y1149D01* X26838Y1158D01* X26838Y1167D01* X26837Y1175D01* X26834Y1183D01* X26830Y1191D01* X26824Y1198D01* X26817Y1204D01* X26810Y1208D01* X26802Y1211D01* X26776Y1220D01* X26751Y1231D01* X26728Y1244D01* X26724Y1246D01* Y1753D01* X26747Y1766D01* X26771Y1777D01* X26797Y1786D01* X26805Y1790D01* X26812Y1794D01* X26819Y1800D01* X26824Y1807D01* X26828Y1815D01* X26831Y1823D01* X26832Y1832D01* X26832Y1840D01* X26830Y1849D01* X26827Y1857D01* X26822Y1864D01* X26816Y1871D01* X26809Y1876D01* X26802Y1880D01* X26793Y1883D01* X26785Y1884D01* X26776Y1884D01* X26768Y1882D01* X26733Y1870D01* X26724Y1866D01* Y3125D01* X26754Y3115D01* X26763Y3113D01* X26772Y3113D01* X26780Y3115D01* X26788Y3117D01* X26796Y3122D01* X26803Y3127D01* X26809Y3134D01* X26813Y3141D01* X26816Y3149D01* X26818Y3158D01* X26818Y3167D01* X26817Y3175D01* X26814Y3183D01* X26810Y3191D01* X26804Y3198D01* X26797Y3204D01* X26790Y3208D01* X26782Y3211D01* X26756Y3220D01* X26731Y3231D01* X26724Y3235D01* Y3764D01* X26727Y3766D01* X26751Y3777D01* X26777Y3786D01* X26785Y3790D01* X26792Y3794D01* X26799Y3800D01* X26804Y3807D01* X26808Y3815D01* X26811Y3823D01* X26812Y3832D01* X26812Y3840D01* X26810Y3849D01* X26807Y3857D01* X26802Y3864D01* X26796Y3871D01* X26789Y3876D01* X26782Y3880D01* X26773Y3883D01* X26765Y3884D01* X26756Y3884D01* X26748Y3882D01* X26724Y3874D01* Y5119D01* X26734Y5115D01* X26743Y5113D01* X26752Y5113D01* X26760Y5115D01* X26768Y5117D01* X26776Y5122D01* X26783Y5127D01* X26789Y5134D01* X26793Y5141D01* X26796Y5149D01* X26798Y5158D01* X26798Y5167D01* X26797Y5175D01* X26794Y5183D01* X26790Y5191D01* X26784Y5198D01* X26777Y5204D01* X26770Y5208D01* X26762Y5211D01* X26736Y5220D01* X26724Y5225D01* Y5774D01* X26731Y5777D01* X26757Y5786D01* X26765Y5790D01* X26772Y5794D01* X26779Y5800D01* X26784Y5807D01* X26788Y5815D01* X26791Y5823D01* X26792Y5832D01* X26792Y5840D01* X26790Y5849D01* X26787Y5857D01* X26782Y5864D01* X26776Y5871D01* X26769Y5876D01* X26762Y5880D01* X26753Y5883D01* X26745Y5884D01* X26736Y5884D01* X26728Y5882D01* X26724Y5881D01* Y7113D01* X26732Y7113D01* X26740Y7115D01* X26748Y7117D01* X26756Y7122D01* X26763Y7127D01* X26769Y7134D01* X26773Y7141D01* X26776Y7149D01* X26778Y7158D01* X26778Y7167D01* X26777Y7175D01* X26774Y7183D01* X26770Y7191D01* X26764Y7198D01* X26757Y7204D01* X26750Y7208D01* X26742Y7211D01* X26724Y7217D01* Y7782D01* X26737Y7786D01* X26745Y7790D01* X26752Y7794D01* X26759Y7800D01* X26764Y7807D01* X26768Y7815D01* X26771Y7823D01* X26772Y7832D01* X26772Y7840D01* X26770Y7849D01* X26767Y7857D01* X26762Y7864D01* X26756Y7871D01* X26749Y7876D01* X26742Y7880D01* X26733Y7883D01* X26725Y7884D01* X26724D01* Y9116D01* X26728Y9117D01* X26736Y9122D01* X26743Y9127D01* X26749Y9134D01* X26753Y9141D01* X26756Y9149D01* X26758Y9158D01* X26758Y9167D01* X26757Y9175D01* X26754Y9183D01* X26750Y9191D01* X26744Y9198D01* X26737Y9204D01* X26730Y9208D01* X26724Y9210D01* Y9789D01* X26725Y9790D01* X26732Y9794D01* X26739Y9800D01* X26744Y9807D01* X26748Y9815D01* X26751Y9823D01* X26752Y9832D01* X26752Y9840D01* X26750Y9849D01* X26747Y9857D01* X26742Y9864D01* X26736Y9871D01* X26729Y9876D01* X26724Y9879D01* Y11128D01* X26729Y11134D01* X26733Y11141D01* X26736Y11149D01* X26738Y11158D01* X26738Y11167D01* X26737Y11175D01* X26734Y11183D01* X26730Y11191D01* X26724Y11198D01* X26724Y11198D01* Y11807D01* X26724Y11807D01* X26728Y11815D01* X26731Y11823D01* X26732Y11832D01* X26732Y11840D01* X26730Y11849D01* X26727Y11857D01* X26724Y11861D01* Y23140D01* X26727Y23135D01* X26733Y23128D01* X26740Y23123D01* X26747Y23119D01* X26756Y23116D01* X26764Y23115D01* X26773Y23115D01* X26781Y23117D01* X26816Y23129D01* X26848Y23144D01* X26880Y23162D01* X26909Y23183D01* X26924Y23196D01* Y21820D01* X26924Y21820D01* X26894Y21840D01* X26862Y21858D01* X26829Y21873D01* X26795Y21884D01* X26786Y21886D01* X26777Y21886D01* X26769Y21885D01* X26761Y21882D01* X26753Y21878D01* X26746Y21872D01* X26740Y21865D01* X26736Y21858D01* X26733Y21850D01* X26731Y21841D01* X26731Y21833D01* X26732Y21824D01* X26735Y21816D01* X26739Y21808D01* X26745Y21801D01* X26752Y21796D01* X26759Y21791D01* X26767Y21788D01* X26793Y21779D01* X26818Y21768D01* X26841Y21755D01* X26864Y21740D01* X26885Y21723D01* X26904Y21704D01* X26922Y21683D01* X26924Y21680D01* Y21319D01* X26908Y21299D01* X26889Y21280D01* X26868Y21262D01* X26846Y21247D01* X26822Y21233D01* X26798Y21222D01* X26772Y21213D01* X26764Y21209D01* X26757Y21205D01* X26750Y21199D01* X26745Y21192D01* X26741Y21184D01* X26738Y21176D01* X26737Y21167D01* X26737Y21159D01* X26739Y21150D01* X26742Y21142D01* X26747Y21135D01* X26753Y21128D01* X26760Y21123D01* X26767Y21119D01* X26776Y21116D01* X26784Y21115D01* X26793Y21115D01* X26801Y21117D01* X26836Y21129D01* X26868Y21144D01* X26900Y21162D01* X26924Y21180D01* Y19834D01* X26914Y19840D01* X26882Y19858D01* X26849Y19873D01* X26815Y19884D01* X26806Y19886D01* X26797Y19886D01* X26789Y19885D01* X26781Y19882D01* X26773Y19878D01* X26766Y19872D01* X26760Y19865D01* X26756Y19858D01* X26753Y19850D01* X26751Y19841D01* X26751Y19833D01* X26752Y19824D01* X26755Y19816D01* X26759Y19808D01* X26765Y19801D01* X26772Y19796D01* X26779Y19791D01* X26787Y19788D01* X26813Y19779D01* X26838Y19768D01* X26861Y19755D01* X26884Y19740D01* X26905Y19723D01* X26924Y19704D01* Y19295D01* X26909Y19280D01* X26888Y19262D01* X26866Y19247D01* X26842Y19233D01* X26818Y19222D01* X26792Y19213D01* X26784Y19209D01* X26777Y19205D01* X26770Y19199D01* X26765Y19192D01* X26761Y19184D01* X26758Y19176D01* X26757Y19167D01* X26757Y19159D01* X26759Y19150D01* X26762Y19142D01* X26767Y19135D01* X26773Y19128D01* X26780Y19123D01* X26787Y19119D01* X26796Y19116D01* X26804Y19115D01* X26813Y19115D01* X26821Y19117D01* X26856Y19129D01* X26888Y19144D01* X26920Y19162D01* X26924Y19165D01* Y17846D01* X26902Y17858D01* X26869Y17873D01* X26835Y17884D01* X26826Y17886D01* X26817Y17886D01* X26809Y17885D01* X26801Y17882D01* X26793Y17878D01* X26786Y17872D01* X26780Y17865D01* X26776Y17858D01* X26773Y17850D01* X26771Y17841D01* X26771Y17833D01* X26772Y17824D01* X26775Y17816D01* X26779Y17808D01* X26785Y17801D01* X26792Y17796D01* X26799Y17791D01* X26807Y17788D01* X26833Y17779D01* X26858Y17768D01* X26881Y17755D01* X26904Y17740D01* X26924Y17724D01* Y17276D01* X26908Y17262D01* X26886Y17247D01* X26862Y17233D01* X26838Y17222D01* X26812Y17213D01* X26804Y17209D01* X26797Y17205D01* X26790Y17199D01* X26785Y17192D01* X26781Y17184D01* X26778Y17176D01* X26777Y17167D01* X26777Y17159D01* X26779Y17150D01* X26782Y17142D01* X26787Y17135D01* X26793Y17128D01* X26800Y17123D01* X26807Y17119D01* X26816Y17116D01* X26824Y17115D01* X26833Y17115D01* X26841Y17117D01* X26876Y17129D01* X26908Y17144D01* X26924Y17153D01* Y15857D01* X26922Y15858D01* X26889Y15873D01* X26855Y15884D01* X26846Y15886D01* X26837Y15886D01* X26829Y15885D01* X26821Y15882D01* X26813Y15878D01* X26806Y15872D01* X26800Y15865D01* X26796Y15858D01* X26793Y15850D01* X26791Y15841D01* X26791Y15833D01* X26792Y15824D01* X26795Y15816D01* X26799Y15808D01* X26805Y15801D01* X26812Y15796D01* X26819Y15791D01* X26827Y15788D01* X26853Y15779D01* X26878Y15768D01* X26901Y15755D01* X26924Y15740D01* Y15259D01* X26906Y15247D01* X26882Y15233D01* X26858Y15222D01* X26832Y15213D01* X26824Y15209D01* X26817Y15205D01* X26810Y15199D01* X26805Y15192D01* X26801Y15184D01* X26798Y15176D01* X26797Y15167D01* X26797Y15159D01* X26799Y15150D01* X26802Y15142D01* X26807Y15135D01* X26813Y15128D01* X26820Y15123D01* X26827Y15119D01* X26836Y15116D01* X26844Y15115D01* X26853Y15115D01* X26861Y15117D01* X26896Y15129D01* X26924Y15142D01* Y13866D01* X26909Y13873D01* X26875Y13884D01* X26866Y13886D01* X26857Y13886D01* X26849Y13885D01* X26841Y13882D01* X26833Y13878D01* X26826Y13872D01* X26820Y13865D01* X26816Y13858D01* X26813Y13850D01* X26811Y13841D01* X26811Y13833D01* X26812Y13824D01* X26815Y13816D01* X26819Y13808D01* X26825Y13801D01* X26832Y13796D01* X26839Y13791D01* X26847Y13788D01* X26873Y13779D01* X26898Y13768D01* X26921Y13755D01* X26924Y13754D01* Y13246D01* X26902Y13233D01* X26878Y13222D01* X26852Y13213D01* X26844Y13209D01* X26837Y13205D01* X26830Y13199D01* X26825Y13192D01* X26821Y13184D01* X26818Y13176D01* X26817Y13167D01* X26817Y13159D01* X26819Y13150D01* X26822Y13142D01* X26827Y13135D01* X26833Y13128D01* X26840Y13123D01* X26847Y13119D01* X26856Y13116D01* X26864Y13115D01* X26873Y13115D01* X26881Y13117D01* X26916Y13129D01* X26924Y13133D01* Y11874D01* X26895Y11884D01* X26886Y11886D01* X26877Y11886D01* X26869Y11885D01* X26861Y11882D01* X26853Y11878D01* X26846Y11872D01* X26840Y11865D01* X26836Y11858D01* X26833Y11850D01* X26831Y11841D01* X26831Y11833D01* X26832Y11824D01* X26835Y11816D01* X26839Y11808D01* X26845Y11801D01* X26852Y11796D01* X26859Y11791D01* X26867Y11788D01* X26893Y11779D01* X26918Y11768D01* X26924Y11765D01* Y11234D01* X26922Y11233D01* X26898Y11222D01* X26872Y11213D01* X26864Y11209D01* X26857Y11205D01* X26850Y11199D01* X26845Y11192D01* X26841Y11184D01* X26838Y11176D01* X26837Y11167D01* X26837Y11159D01* X26839Y11150D01* X26842Y11142D01* X26847Y11135D01* X26853Y11128D01* X26860Y11123D01* X26867Y11119D01* X26876Y11116D01* X26884Y11115D01* X26893Y11115D01* X26901Y11117D01* X26924Y11125D01* Y9881D01* X26915Y9884D01* X26906Y9886D01* X26897Y9886D01* X26889Y9885D01* X26881Y9882D01* X26873Y9878D01* X26866Y9872D01* X26860Y9865D01* X26856Y9858D01* X26853Y9850D01* X26851Y9841D01* X26851Y9833D01* X26852Y9824D01* X26855Y9816D01* X26859Y9808D01* X26865Y9801D01* X26872Y9796D01* X26879Y9791D01* X26887Y9788D01* X26913Y9779D01* X26924Y9774D01* Y9225D01* X26918Y9222D01* X26892Y9213D01* X26884Y9209D01* X26877Y9205D01* X26870Y9199D01* X26865Y9192D01* X26861Y9184D01* X26858Y9176D01* X26857Y9167D01* X26857Y9159D01* X26859Y9150D01* X26862Y9142D01* X26867Y9135D01* X26873Y9128D01* X26880Y9123D01* X26887Y9119D01* X26896Y9116D01* X26904Y9115D01* X26913Y9115D01* X26921Y9117D01* X26924Y9118D01* Y7886D01* X26917Y7886D01* X26909Y7885D01* X26901Y7882D01* X26893Y7878D01* X26886Y7872D01* X26880Y7865D01* X26876Y7858D01* X26873Y7850D01* X26871Y7841D01* X26871Y7833D01* X26872Y7824D01* X26875Y7816D01* X26879Y7808D01* X26885Y7801D01* X26892Y7796D01* X26899Y7791D01* X26907Y7788D01* X26924Y7782D01* Y7217D01* X26912Y7213D01* X26904Y7209D01* X26897Y7205D01* X26890Y7199D01* X26885Y7192D01* X26881Y7184D01* X26878Y7176D01* X26877Y7167D01* X26877Y7159D01* X26879Y7150D01* X26882Y7142D01* X26887Y7135D01* X26893Y7128D01* X26900Y7123D01* X26907Y7119D01* X26916Y7116D01* X26924Y7115D01* Y5883D01* X26921Y5882D01* X26913Y5878D01* X26906Y5872D01* X26900Y5865D01* X26896Y5858D01* X26893Y5850D01* X26891Y5841D01* X26891Y5833D01* X26892Y5824D01* X26895Y5816D01* X26899Y5808D01* X26905Y5801D01* X26912Y5796D01* X26919Y5791D01* X26924Y5789D01* Y5209D01* X26917Y5205D01* X26910Y5199D01* X26905Y5192D01* X26901Y5184D01* X26898Y5176D01* X26897Y5167D01* X26897Y5159D01* X26899Y5150D01* X26902Y5142D01* X26907Y5135D01* X26913Y5128D01* X26920Y5123D01* X26924Y5121D01* Y3870D01* X26920Y3865D01* X26916Y3858D01* X26913Y3850D01* X26911Y3841D01* X26911Y3833D01* X26912Y3824D01* X26915Y3816D01* X26919Y3808D01* X26924Y3802D01* Y3190D01* X26921Y3184D01* X26918Y3176D01* X26917Y3167D01* X26917Y3159D01* X26919Y3150D01* X26922Y3142D01* X26924Y3140D01* Y0D01* G37* G36* Y23350D02*X26920Y23343D01* X26905Y23320D01* X26888Y23299D01* X26869Y23280D01* X26848Y23262D01* X26826Y23247D01* X26802Y23233D01* X26778Y23222D01* X26752Y23213D01* X26744Y23209D01* X26737Y23205D01* X26730Y23199D01* X26725Y23192D01* X26724Y23190D01* Y23802D01* X26725Y23801D01* X26732Y23796D01* X26739Y23791D01* X26747Y23788D01* X26773Y23779D01* X26798Y23768D01* X26821Y23755D01* X26844Y23740D01* X26865Y23723D01* X26884Y23704D01* X26902Y23683D01* X26917Y23661D01* X26924Y23650D01* Y23350D01* G37* G36* Y23804D02*X26904Y23820D01* X26874Y23840D01* X26842Y23858D01* X26809Y23873D01* X26775Y23884D01* X26766Y23886D01* X26757Y23886D01* X26749Y23885D01* X26741Y23882D01* X26733Y23878D01* X26726Y23872D01* X26724Y23870D01* Y25121D01* X26727Y25119D01* X26736Y25116D01* X26744Y25115D01* X26753Y25115D01* X26761Y25117D01* X26796Y25129D01* X26828Y25144D01* X26860Y25162D01* X26889Y25183D01* X26917Y25207D01* X26924Y25214D01* Y23804D01* G37* G36* Y25391D02*X26913Y25366D01* X26900Y25343D01* X26885Y25320D01* X26868Y25299D01* X26849Y25280D01* X26828Y25262D01* X26806Y25247D01* X26782Y25233D01* X26758Y25222D01* X26732Y25213D01* X26724Y25209D01* X26724Y25209D01* Y25789D01* X26727Y25788D01* X26753Y25779D01* X26778Y25768D01* X26801Y25755D01* X26824Y25740D01* X26845Y25723D01* X26864Y25704D01* X26882Y25683D01* X26897Y25661D01* X26911Y25637D01* X26922Y25613D01* X26924Y25608D01* Y25391D01* G37* G36* Y25785D02*X26912Y25797D01* X26884Y25820D01* X26854Y25840D01* X26822Y25858D01* X26789Y25873D01* X26755Y25884D01* X26746Y25886D01* X26737Y25886D01* X26729Y25885D01* X26724Y25883D01* Y27115D01* X26724D01* X26733Y27115D01* X26741Y27117D01* X26776Y27129D01* X26808Y27144D01* X26840Y27162D01* X26869Y27183D01* X26897Y27207D01* X26922Y27232D01* X26924Y27235D01* Y25785D01* G37* G36* Y27437D02*X26920Y27433D01* X26916Y27425D01* X26913Y27417D01* X26904Y27391D01* X26893Y27366D01* X26880Y27343D01* X26865Y27320D01* X26848Y27299D01* X26829Y27280D01* X26808Y27262D01* X26786Y27247D01* X26762Y27233D01* X26738Y27222D01* X26724Y27217D01* Y27782D01* X26733Y27779D01* X26758Y27768D01* X26781Y27755D01* X26804Y27740D01* X26825Y27723D01* X26844Y27704D01* X26862Y27683D01* X26877Y27661D01* X26891Y27637D01* X26902Y27613D01* X26911Y27587D01* X26915Y27579D01* X26919Y27572D01* X26924Y27567D01* Y27437D01* G37* G36* Y27764D02*X26917Y27772D01* X26892Y27797D01* X26864Y27820D01* X26834Y27840D01* X26802Y27858D01* X26769Y27873D01* X26735Y27884D01* X26726Y27886D01* X26724D01* Y29118D01* X26756Y29129D01* X26788Y29144D01* X26820Y29162D01* X26849Y29183D01* X26877Y29207D01* X26902Y29232D01* X26924Y29259D01* Y27764D01* G37* G36* Y29450D02*X26921Y29449D01* X26913Y29445D01* X26906Y29439D01* X26900Y29433D01* X26896Y29425D01* X26893Y29417D01* X26884Y29391D01* X26873Y29366D01* X26860Y29343D01* X26845Y29320D01* X26828Y29299D01* X26809Y29280D01* X26788Y29262D01* X26766Y29247D01* X26742Y29233D01* X26724Y29225D01* Y29774D01* X26738Y29768D01* X26761Y29755D01* X26784Y29740D01* X26805Y29723D01* X26824Y29704D01* X26842Y29683D01* X26857Y29661D01* X26871Y29637D01* X26882Y29613D01* X26891Y29587D01* X26895Y29579D01* X26899Y29572D01* X26905Y29565D01* X26912Y29560D01* X26920Y29556D01* X26924Y29555D01* Y29450D01* G37* G36* Y29740D02*X26921Y29744D01* X26897Y29772D01* X26872Y29797D01* X26844Y29820D01* X26814Y29840D01* X26782Y29858D01* X26749Y29873D01* X26724Y29881D01* Y31125D01* X26736Y31129D01* X26768Y31144D01* X26800Y31162D01* X26829Y31183D01* X26857Y31207D01* X26882Y31232D01* X26905Y31260D01* X26924Y31288D01* Y29740D01* G37* G36* Y31453D02*X26917Y31453D01* X26909Y31452D01* X26901Y31449D01* X26893Y31445D01* X26886Y31439D01* X26880Y31433D01* X26876Y31425D01* X26873Y31417D01* X26864Y31391D01* X26853Y31366D01* X26840Y31343D01* X26825Y31320D01* X26808Y31299D01* X26789Y31280D01* X26768Y31262D01* X26746Y31247D01* X26724Y31234D01* Y31765D01* X26741Y31755D01* X26764Y31740D01* X26785Y31723D01* X26804Y31704D01* X26822Y31683D01* X26837Y31661D01* X26851Y31637D01* X26862Y31613D01* X26871Y31587D01* X26875Y31579D01* X26879Y31572D01* X26885Y31565D01* X26892Y31560D01* X26900Y31556D01* X26908Y31553D01* X26917Y31552D01* X26924Y31552D01* Y31453D01* G37* G36* Y31711D02*X26922Y31715D01* X26901Y31744D01* X26877Y31772D01* X26852Y31797D01* X26824Y31820D01* X26794Y31840D01* X26762Y31858D01* X26729Y31873D01* X26724Y31874D01* Y33133D01* X26748Y33144D01* X26780Y33162D01* X26809Y33183D01* X26837Y33207D01* X26862Y33232D01* X26885Y33260D01* X26905Y33290D01* X26923Y33322D01* X26924Y33324D01* Y31711D01* G37* G36* Y33447D02*X26923Y33448D01* X26915Y33451D01* X26906Y33453D01* X26897Y33453D01* X26889Y33452D01* X26881Y33449D01* X26873Y33445D01* X26866Y33439D01* X26860Y33433D01* X26856Y33425D01* X26853Y33417D01* X26844Y33391D01* X26833Y33366D01* X26820Y33343D01* X26805Y33320D01* X26788Y33299D01* X26769Y33280D01* X26748Y33262D01* X26726Y33247D01* X26724Y33246D01* Y33754D01* X26744Y33740D01* X26765Y33723D01* X26784Y33704D01* X26802Y33683D01* X26817Y33661D01* X26831Y33637D01* X26842Y33613D01* X26851Y33587D01* X26855Y33579D01* X26859Y33572D01* X26865Y33565D01* X26872Y33560D01* X26880Y33556D01* X26888Y33553D01* X26897Y33552D01* X26905Y33552D01* X26914Y33554D01* X26922Y33557D01* X26924Y33559D01* Y33447D01* G37* G36* Y33674D02*X26920Y33683D01* X26902Y33715D01* X26881Y33744D01* X26857Y33772D01* X26832Y33797D01* X26804Y33820D01* X26774Y33840D01* X26742Y33858D01* X26724Y33866D01* Y35142D01* X26728Y35144D01* X26760Y35162D01* X26789Y35183D01* X26817Y35207D01* X26842Y35232D01* X26865Y35260D01* X26885Y35290D01* X26903Y35322D01* X26917Y35355D01* X26924Y35374D01* Y33674D01* G37* G36* Y35428D02*X26922Y35431D01* X26917Y35438D01* X26910Y35444D01* X26903Y35448D01* X26895Y35451D01* X26886Y35453D01* X26877Y35453D01* X26869Y35452D01* X26861Y35449D01* X26853Y35445D01* X26846Y35439D01* X26840Y35433D01* X26836Y35425D01* X26833Y35417D01* X26824Y35391D01* X26813Y35366D01* X26800Y35343D01* X26785Y35320D01* X26768Y35299D01* X26749Y35280D01* X26728Y35262D01* X26724Y35259D01* Y35740D01* X26745Y35723D01* X26764Y35704D01* X26782Y35683D01* X26797Y35661D01* X26811Y35637D01* X26822Y35613D01* X26831Y35587D01* X26835Y35579D01* X26839Y35572D01* X26845Y35565D01* X26852Y35560D01* X26860Y35556D01* X26868Y35553D01* X26877Y35552D01* X26885Y35552D01* X26894Y35554D01* X26902Y35557D01* X26909Y35562D01* X26916Y35568D01* X26921Y35575D01* X26924Y35580D01* Y35428D01* G37* G36* Y40000D02*X27104D01* Y17625D01* X27095Y17651D01* X27080Y17683D01* X27062Y17715D01* X27041Y17744D01* X27017Y17772D01* X26992Y17797D01* X26964Y17820D01* X26934Y17840D01* X26924Y17846D01* Y19165D01* X26949Y19183D01* X26977Y19207D01* X27002Y19232D01* X27025Y19260D01* X27045Y19290D01* X27063Y19322D01* X27077Y19355D01* X27089Y19389D01* X27091Y19398D01* X27091Y19407D01* X27090Y19415D01* X27087Y19423D01* X27082Y19431D01* X27077Y19438D01* X27070Y19444D01* X27063Y19448D01* X27055Y19451D01* X27046Y19453D01* X27037Y19453D01* X27029Y19452D01* X27021Y19449D01* X27013Y19445D01* X27006Y19439D01* X27000Y19433D01* X26996Y19425D01* X26993Y19417D01* X26984Y19391D01* X26973Y19366D01* X26960Y19343D01* X26945Y19320D01* X26928Y19299D01* X26924Y19295D01* Y19704D01* X26924Y19704D01* X26942Y19683D01* X26957Y19661D01* X26971Y19637D01* X26982Y19613D01* X26991Y19587D01* X26995Y19579D01* X26999Y19572D01* X27005Y19565D01* X27012Y19560D01* X27020Y19556D01* X27028Y19553D01* X27037Y19552D01* X27045Y19552D01* X27054Y19554D01* X27062Y19557D01* X27069Y19562D01* X27076Y19568D01* X27081Y19575D01* X27085Y19582D01* X27088Y19591D01* X27089Y19599D01* X27089Y19608D01* X27087Y19617D01* X27075Y19651D01* X27060Y19683D01* X27042Y19715D01* X27021Y19744D01* X26997Y19772D01* X26972Y19797D01* X26944Y19820D01* X26924Y19834D01* Y21180D01* X26929Y21183D01* X26957Y21207D01* X26982Y21232D01* X27005Y21260D01* X27025Y21290D01* X27043Y21322D01* X27057Y21355D01* X27069Y21389D01* X27071Y21398D01* X27071Y21407D01* X27070Y21415D01* X27067Y21423D01* X27062Y21431D01* X27057Y21438D01* X27050Y21444D01* X27043Y21448D01* X27035Y21451D01* X27026Y21453D01* X27017Y21453D01* X27009Y21452D01* X27001Y21449D01* X26993Y21445D01* X26986Y21439D01* X26980Y21433D01* X26976Y21425D01* X26973Y21417D01* X26964Y21391D01* X26953Y21366D01* X26940Y21343D01* X26925Y21320D01* X26924Y21319D01* Y21680D01* X26937Y21661D01* X26951Y21637D01* X26962Y21613D01* X26971Y21587D01* X26975Y21579D01* X26979Y21572D01* X26985Y21565D01* X26992Y21560D01* X27000Y21556D01* X27008Y21553D01* X27017Y21552D01* X27025Y21552D01* X27034Y21554D01* X27042Y21557D01* X27049Y21562D01* X27056Y21568D01* X27061Y21575D01* X27065Y21582D01* X27068Y21591D01* X27069Y21599D01* X27069Y21608D01* X27067Y21617D01* X27055Y21651D01* X27040Y21683D01* X27022Y21715D01* X27001Y21744D01* X26977Y21772D01* X26952Y21797D01* X26924Y21820D01* Y23196D01* X26937Y23207D01* X26962Y23232D01* X26985Y23260D01* X27005Y23290D01* X27023Y23322D01* X27037Y23355D01* X27049Y23389D01* X27051Y23398D01* X27051Y23407D01* X27050Y23415D01* X27047Y23423D01* X27042Y23431D01* X27037Y23438D01* X27030Y23444D01* X27023Y23448D01* X27015Y23451D01* X27006Y23453D01* X26997Y23453D01* X26989Y23452D01* X26981Y23449D01* X26973Y23445D01* X26966Y23439D01* X26960Y23433D01* X26956Y23425D01* X26953Y23417D01* X26944Y23391D01* X26933Y23366D01* X26924Y23350D01* Y23650D01* X26931Y23637D01* X26942Y23613D01* X26951Y23587D01* X26955Y23579D01* X26959Y23572D01* X26965Y23565D01* X26972Y23560D01* X26980Y23556D01* X26988Y23553D01* X26997Y23552D01* X27005Y23552D01* X27014Y23554D01* X27022Y23557D01* X27029Y23562D01* X27036Y23568D01* X27041Y23575D01* X27045Y23582D01* X27048Y23591D01* X27049Y23599D01* X27049Y23608D01* X27047Y23617D01* X27035Y23651D01* X27020Y23683D01* X27002Y23715D01* X26981Y23744D01* X26957Y23772D01* X26932Y23797D01* X26924Y23804D01* Y25214D01* X26942Y25232D01* X26965Y25260D01* X26985Y25290D01* X27003Y25322D01* X27017Y25355D01* X27029Y25389D01* X27031Y25398D01* X27031Y25407D01* X27030Y25415D01* X27027Y25423D01* X27022Y25431D01* X27017Y25438D01* X27010Y25444D01* X27003Y25448D01* X26995Y25451D01* X26986Y25453D01* X26977Y25453D01* X26969Y25452D01* X26961Y25449D01* X26953Y25445D01* X26946Y25439D01* X26940Y25433D01* X26936Y25425D01* X26933Y25417D01* X26924Y25391D01* X26924Y25391D01* Y25608D01* X26931Y25587D01* X26935Y25579D01* X26939Y25572D01* X26945Y25565D01* X26952Y25560D01* X26960Y25556D01* X26968Y25553D01* X26977Y25552D01* X26985Y25552D01* X26994Y25554D01* X27002Y25557D01* X27009Y25562D01* X27016Y25568D01* X27021Y25575D01* X27025Y25582D01* X27028Y25591D01* X27029Y25599D01* X27029Y25608D01* X27027Y25617D01* X27015Y25651D01* X27000Y25683D01* X26982Y25715D01* X26961Y25744D01* X26937Y25772D01* X26924Y25785D01* Y27235D01* X26945Y27260D01* X26965Y27290D01* X26983Y27322D01* X26997Y27355D01* X27009Y27389D01* X27011Y27398D01* X27011Y27407D01* X27010Y27415D01* X27007Y27423D01* X27002Y27431D01* X26997Y27438D01* X26990Y27444D01* X26983Y27448D01* X26975Y27451D01* X26966Y27453D01* X26957Y27453D01* X26949Y27452D01* X26941Y27449D01* X26933Y27445D01* X26926Y27439D01* X26924Y27437D01* Y27567D01* X26925Y27565D01* X26932Y27560D01* X26940Y27556D01* X26948Y27553D01* X26957Y27552D01* X26965Y27552D01* X26974Y27554D01* X26982Y27557D01* X26989Y27562D01* X26996Y27568D01* X27001Y27575D01* X27005Y27582D01* X27008Y27591D01* X27009Y27599D01* X27009Y27608D01* X27007Y27617D01* X26995Y27651D01* X26980Y27683D01* X26962Y27715D01* X26941Y27744D01* X26924Y27764D01* Y29259D01* X26925Y29260D01* X26945Y29290D01* X26963Y29322D01* X26977Y29355D01* X26989Y29389D01* X26991Y29398D01* X26991Y29407D01* X26990Y29415D01* X26987Y29423D01* X26982Y29431D01* X26977Y29438D01* X26970Y29444D01* X26963Y29448D01* X26955Y29451D01* X26946Y29453D01* X26937Y29453D01* X26929Y29452D01* X26924Y29450D01* Y29555D01* X26928Y29553D01* X26937Y29552D01* X26945Y29552D01* X26954Y29554D01* X26962Y29557D01* X26969Y29562D01* X26976Y29568D01* X26981Y29575D01* X26985Y29582D01* X26988Y29591D01* X26989Y29599D01* X26989Y29608D01* X26987Y29617D01* X26975Y29651D01* X26960Y29683D01* X26942Y29715D01* X26924Y29740D01* Y31288D01* X26925Y31290D01* X26943Y31322D01* X26957Y31355D01* X26969Y31389D01* X26971Y31398D01* X26971Y31407D01* X26970Y31415D01* X26967Y31423D01* X26962Y31431D01* X26957Y31438D01* X26950Y31444D01* X26943Y31448D01* X26935Y31451D01* X26926Y31453D01* X26924D01* Y31552D01* X26925D01* X26934Y31554D01* X26942Y31557D01* X26949Y31562D01* X26956Y31568D01* X26961Y31575D01* X26965Y31582D01* X26968Y31591D01* X26969Y31599D01* X26969Y31608D01* X26967Y31617D01* X26955Y31651D01* X26940Y31683D01* X26924Y31711D01* Y33324D01* X26937Y33355D01* X26949Y33389D01* X26951Y33398D01* X26951Y33407D01* X26950Y33415D01* X26947Y33423D01* X26942Y33431D01* X26937Y33438D01* X26930Y33444D01* X26924Y33447D01* Y33559D01* X26929Y33562D01* X26936Y33568D01* X26941Y33575D01* X26945Y33582D01* X26948Y33591D01* X26949Y33599D01* X26949Y33608D01* X26947Y33617D01* X26935Y33651D01* X26924Y33674D01* Y35374D01* X26929Y35389D01* X26931Y35398D01* X26931Y35407D01* X26930Y35415D01* X26927Y35423D01* X26924Y35428D01* Y35580D01* X26925Y35582D01* X26928Y35591D01* X26929Y35599D01* X26929Y35608D01* X26927Y35617D01* X26924Y35625D01* Y40000D01* G37* G36* X27104Y0D02*X26924D01* Y3140D01* X26927Y3135D01* X26933Y3128D01* X26940Y3123D01* X26947Y3119D01* X26956Y3116D01* X26964Y3115D01* X26973Y3115D01* X26981Y3117D01* X27016Y3129D01* X27048Y3144D01* X27080Y3162D01* X27104Y3180D01* Y1834D01* X27094Y1840D01* X27062Y1858D01* X27029Y1873D01* X26995Y1884D01* X26986Y1886D01* X26977Y1886D01* X26969Y1885D01* X26961Y1882D01* X26953Y1878D01* X26946Y1872D01* X26940Y1865D01* X26936Y1858D01* X26933Y1850D01* X26931Y1841D01* X26931Y1833D01* X26932Y1824D01* X26935Y1816D01* X26939Y1808D01* X26945Y1801D01* X26952Y1796D01* X26959Y1791D01* X26967Y1788D01* X26993Y1779D01* X27018Y1768D01* X27041Y1755D01* X27064Y1740D01* X27085Y1723D01* X27104Y1704D01* Y1295D01* X27089Y1280D01* X27068Y1262D01* X27046Y1247D01* X27022Y1233D01* X26998Y1222D01* X26972Y1213D01* X26964Y1209D01* X26957Y1205D01* X26950Y1199D01* X26945Y1192D01* X26941Y1184D01* X26938Y1176D01* X26937Y1167D01* X26937Y1159D01* X26939Y1150D01* X26942Y1142D01* X26947Y1135D01* X26953Y1128D01* X26960Y1123D01* X26967Y1119D01* X26976Y1116D01* X26984Y1115D01* X26993Y1115D01* X27001Y1117D01* X27036Y1129D01* X27068Y1144D01* X27100Y1162D01* X27104Y1165D01* Y0D01* G37* G36* Y3319D02*X27088Y3299D01* X27069Y3280D01* X27048Y3262D01* X27026Y3247D01* X27002Y3233D01* X26978Y3222D01* X26952Y3213D01* X26944Y3209D01* X26937Y3205D01* X26930Y3199D01* X26925Y3192D01* X26924Y3190D01* Y3802D01* X26925Y3801D01* X26932Y3796D01* X26939Y3791D01* X26947Y3788D01* X26973Y3779D01* X26998Y3768D01* X27021Y3755D01* X27044Y3740D01* X27065Y3723D01* X27084Y3704D01* X27102Y3683D01* X27104Y3680D01* Y3319D01* G37* G36* Y3820D02*X27104Y3820D01* X27074Y3840D01* X27042Y3858D01* X27009Y3873D01* X26975Y3884D01* X26966Y3886D01* X26957Y3886D01* X26949Y3885D01* X26941Y3882D01* X26933Y3878D01* X26926Y3872D01* X26924Y3870D01* Y5121D01* X26927Y5119D01* X26936Y5116D01* X26944Y5115D01* X26953Y5115D01* X26961Y5117D01* X26996Y5129D01* X27028Y5144D01* X27060Y5162D01* X27089Y5183D01* X27104Y5196D01* Y3820D01* G37* G36* Y5350D02*X27100Y5343D01* X27085Y5320D01* X27068Y5299D01* X27049Y5280D01* X27028Y5262D01* X27006Y5247D01* X26982Y5233D01* X26958Y5222D01* X26932Y5213D01* X26924Y5209D01* X26924Y5209D01* Y5789D01* X26927Y5788D01* X26953Y5779D01* X26978Y5768D01* X27001Y5755D01* X27024Y5740D01* X27045Y5723D01* X27064Y5704D01* X27082Y5683D01* X27097Y5661D01* X27104Y5650D01* Y5350D01* G37* G36* Y5804D02*X27084Y5820D01* X27054Y5840D01* X27022Y5858D01* X26989Y5873D01* X26955Y5884D01* X26946Y5886D01* X26937Y5886D01* X26929Y5885D01* X26924Y5883D01* Y7115D01* X26924D01* X26933Y7115D01* X26941Y7117D01* X26976Y7129D01* X27008Y7144D01* X27040Y7162D01* X27069Y7183D01* X27097Y7207D01* X27104Y7214D01* Y5804D01* G37* G36* Y7391D02*X27093Y7366D01* X27080Y7343D01* X27065Y7320D01* X27048Y7299D01* X27029Y7280D01* X27008Y7262D01* X26986Y7247D01* X26962Y7233D01* X26938Y7222D01* X26924Y7217D01* Y7782D01* X26933Y7779D01* X26958Y7768D01* X26981Y7755D01* X27004Y7740D01* X27025Y7723D01* X27044Y7704D01* X27062Y7683D01* X27077Y7661D01* X27091Y7637D01* X27102Y7613D01* X27104Y7608D01* Y7391D01* G37* G36* Y7785D02*X27092Y7797D01* X27064Y7820D01* X27034Y7840D01* X27002Y7858D01* X26969Y7873D01* X26935Y7884D01* X26926Y7886D01* X26924D01* Y9118D01* X26956Y9129D01* X26988Y9144D01* X27020Y9162D01* X27049Y9183D01* X27077Y9207D01* X27102Y9232D01* X27104Y9235D01* Y7785D01* G37* G36* Y9437D02*X27100Y9433D01* X27096Y9425D01* X27093Y9417D01* X27084Y9391D01* X27073Y9366D01* X27060Y9343D01* X27045Y9320D01* X27028Y9299D01* X27009Y9280D01* X26988Y9262D01* X26966Y9247D01* X26942Y9233D01* X26924Y9225D01* Y9774D01* X26938Y9768D01* X26961Y9755D01* X26984Y9740D01* X27005Y9723D01* X27024Y9704D01* X27042Y9683D01* X27057Y9661D01* X27071Y9637D01* X27082Y9613D01* X27091Y9587D01* X27095Y9579D01* X27099Y9572D01* X27104Y9567D01* Y9437D01* G37* G36* Y9764D02*X27097Y9772D01* X27072Y9797D01* X27044Y9820D01* X27014Y9840D01* X26982Y9858D01* X26949Y9873D01* X26924Y9881D01* Y11125D01* X26936Y11129D01* X26968Y11144D01* X27000Y11162D01* X27029Y11183D01* X27057Y11207D01* X27082Y11232D01* X27104Y11259D01* Y9764D01* G37* G36* Y11450D02*X27101Y11449D01* X27093Y11445D01* X27086Y11439D01* X27080Y11433D01* X27076Y11425D01* X27073Y11417D01* X27064Y11391D01* X27053Y11366D01* X27040Y11343D01* X27025Y11320D01* X27008Y11299D01* X26989Y11280D01* X26968Y11262D01* X26946Y11247D01* X26924Y11234D01* Y11765D01* X26941Y11755D01* X26964Y11740D01* X26985Y11723D01* X27004Y11704D01* X27022Y11683D01* X27037Y11661D01* X27051Y11637D01* X27062Y11613D01* X27071Y11587D01* X27075Y11579D01* X27079Y11572D01* X27085Y11565D01* X27092Y11560D01* X27100Y11556D01* X27104Y11555D01* Y11450D01* G37* G36* Y11740D02*X27101Y11744D01* X27077Y11772D01* X27052Y11797D01* X27024Y11820D01* X26994Y11840D01* X26962Y11858D01* X26929Y11873D01* X26924Y11874D01* Y13133D01* X26948Y13144D01* X26980Y13162D01* X27009Y13183D01* X27037Y13207D01* X27062Y13232D01* X27085Y13260D01* X27104Y13288D01* Y11740D01* G37* G36* Y13453D02*X27097Y13453D01* X27089Y13452D01* X27081Y13449D01* X27073Y13445D01* X27066Y13439D01* X27060Y13433D01* X27056Y13425D01* X27053Y13417D01* X27044Y13391D01* X27033Y13366D01* X27020Y13343D01* X27005Y13320D01* X26988Y13299D01* X26969Y13280D01* X26948Y13262D01* X26926Y13247D01* X26924Y13246D01* Y13754D01* X26944Y13740D01* X26965Y13723D01* X26984Y13704D01* X27002Y13683D01* X27017Y13661D01* X27031Y13637D01* X27042Y13613D01* X27051Y13587D01* X27055Y13579D01* X27059Y13572D01* X27065Y13565D01* X27072Y13560D01* X27080Y13556D01* X27088Y13553D01* X27097Y13552D01* X27104Y13552D01* Y13453D01* G37* G36* Y13711D02*X27102Y13715D01* X27081Y13744D01* X27057Y13772D01* X27032Y13797D01* X27004Y13820D01* X26974Y13840D01* X26942Y13858D01* X26924Y13866D01* Y15142D01* X26928Y15144D01* X26960Y15162D01* X26989Y15183D01* X27017Y15207D01* X27042Y15232D01* X27065Y15260D01* X27085Y15290D01* X27103Y15322D01* X27104Y15324D01* Y13711D01* G37* G36* Y15447D02*X27103Y15448D01* X27095Y15451D01* X27086Y15453D01* X27077Y15453D01* X27069Y15452D01* X27061Y15449D01* X27053Y15445D01* X27046Y15439D01* X27040Y15433D01* X27036Y15425D01* X27033Y15417D01* X27024Y15391D01* X27013Y15366D01* X27000Y15343D01* X26985Y15320D01* X26968Y15299D01* X26949Y15280D01* X26928Y15262D01* X26924Y15259D01* Y15740D01* X26945Y15723D01* X26964Y15704D01* X26982Y15683D01* X26997Y15661D01* X27011Y15637D01* X27022Y15613D01* X27031Y15587D01* X27035Y15579D01* X27039Y15572D01* X27045Y15565D01* X27052Y15560D01* X27060Y15556D01* X27068Y15553D01* X27077Y15552D01* X27085Y15552D01* X27094Y15554D01* X27102Y15557D01* X27104Y15559D01* Y15447D01* G37* G36* Y15674D02*X27100Y15683D01* X27082Y15715D01* X27061Y15744D01* X27037Y15772D01* X27012Y15797D01* X26984Y15820D01* X26954Y15840D01* X26924Y15857D01* Y17153D01* X26940Y17162D01* X26969Y17183D01* X26997Y17207D01* X27022Y17232D01* X27045Y17260D01* X27065Y17290D01* X27083Y17322D01* X27097Y17355D01* X27104Y17374D01* Y15674D01* G37* G36* Y17428D02*X27102Y17431D01* X27097Y17438D01* X27090Y17444D01* X27083Y17448D01* X27075Y17451D01* X27066Y17453D01* X27057Y17453D01* X27049Y17452D01* X27041Y17449D01* X27033Y17445D01* X27026Y17439D01* X27020Y17433D01* X27016Y17425D01* X27013Y17417D01* X27004Y17391D01* X26993Y17366D01* X26980Y17343D01* X26965Y17320D01* X26948Y17299D01* X26929Y17280D01* X26924Y17276D01* Y17724D01* X26925Y17723D01* X26944Y17704D01* X26962Y17683D01* X26977Y17661D01* X26991Y17637D01* X27002Y17613D01* X27011Y17587D01* X27015Y17579D01* X27019Y17572D01* X27025Y17565D01* X27032Y17560D01* X27040Y17556D01* X27048Y17553D01* X27057Y17552D01* X27065Y17552D01* X27074Y17554D01* X27082Y17557D01* X27089Y17562D01* X27096Y17568D01* X27101Y17575D01* X27104Y17580D01* Y17428D01* G37* G36* Y40000D02*X28285D01* Y39834D01* X28260Y39816D01* X28232Y39793D01* X28207Y39767D01* X28184Y39739D01* X28164Y39709D01* X28146Y39677D01* X28132Y39644D01* X28120Y39610D01* X28118Y39601D01* X28118Y39593D01* X28119Y39584D01* X28122Y39576D01* X28127Y39568D01* X28132Y39561D01* X28139Y39556D01* X28146Y39551D01* X28154Y39548D01* X28163Y39546D01* X28172Y39546D01* X28180Y39547D01* X28188Y39550D01* X28196Y39555D01* X28203Y39560D01* X28209Y39567D01* X28213Y39574D01* X28216Y39582D01* X28225Y39608D01* X28236Y39633D01* X28249Y39657D01* X28264Y39679D01* X28281Y39700D01* X28285Y39704D01* Y39295D01* X28285Y39295D01* X28267Y39316D01* X28252Y39338D01* X28238Y39362D01* X28227Y39386D01* X28218Y39412D01* X28214Y39420D01* X28210Y39427D01* X28204Y39434D01* X28197Y39439D01* X28189Y39443D01* X28181Y39446D01* X28172Y39447D01* X28164Y39447D01* X28155Y39445D01* X28147Y39442D01* X28140Y39437D01* X28133Y39431D01* X28128Y39424D01* X28124Y39417D01* X28121Y39409D01* X28120Y39400D01* X28120Y39391D01* X28122Y39383D01* X28134Y39349D01* X28149Y39316D01* X28167Y39284D01* X28188Y39255D01* X28212Y39227D01* X28237Y39202D01* X28265Y39179D01* X28285Y39166D01* Y37820D01* X28280Y37816D01* X28252Y37793D01* X28227Y37767D01* X28204Y37739D01* X28184Y37709D01* X28166Y37677D01* X28152Y37644D01* X28140Y37610D01* X28138Y37601D01* X28138Y37593D01* X28139Y37584D01* X28142Y37576D01* X28147Y37568D01* X28152Y37561D01* X28159Y37556D01* X28166Y37551D01* X28174Y37548D01* X28183Y37546D01* X28192Y37546D01* X28200Y37547D01* X28208Y37550D01* X28216Y37555D01* X28223Y37560D01* X28229Y37567D01* X28233Y37574D01* X28236Y37582D01* X28245Y37608D01* X28256Y37633D01* X28269Y37657D01* X28284Y37679D01* X28285Y37680D01* Y37319D01* X28272Y37338D01* X28258Y37362D01* X28247Y37386D01* X28238Y37412D01* X28234Y37420D01* X28230Y37427D01* X28224Y37434D01* X28217Y37439D01* X28209Y37443D01* X28201Y37446D01* X28192Y37447D01* X28184Y37447D01* X28175Y37445D01* X28167Y37442D01* X28160Y37437D01* X28153Y37431D01* X28148Y37424D01* X28144Y37417D01* X28141Y37409D01* X28140Y37400D01* X28140Y37391D01* X28142Y37383D01* X28154Y37349D01* X28169Y37316D01* X28187Y37284D01* X28208Y37255D01* X28232Y37227D01* X28257Y37202D01* X28285Y37179D01* Y35804D01* X28272Y35793D01* X28247Y35767D01* X28224Y35739D01* X28204Y35709D01* X28186Y35677D01* X28172Y35644D01* X28160Y35610D01* X28158Y35601D01* X28158Y35593D01* X28159Y35584D01* X28162Y35576D01* X28167Y35568D01* X28172Y35561D01* X28179Y35556D01* X28186Y35551D01* X28194Y35548D01* X28203Y35546D01* X28212Y35546D01* X28220Y35547D01* X28228Y35550D01* X28236Y35555D01* X28243Y35560D01* X28249Y35567D01* X28253Y35574D01* X28256Y35582D01* X28265Y35608D01* X28276Y35633D01* X28285Y35650D01* Y35349D01* X28278Y35362D01* X28267Y35386D01* X28258Y35412D01* X28254Y35420D01* X28250Y35427D01* X28244Y35434D01* X28237Y35439D01* X28229Y35443D01* X28221Y35446D01* X28212Y35447D01* X28204Y35447D01* X28195Y35445D01* X28187Y35442D01* X28180Y35437D01* X28173Y35431D01* X28168Y35424D01* X28164Y35417D01* X28161Y35409D01* X28160Y35400D01* X28160Y35391D01* X28162Y35383D01* X28174Y35349D01* X28189Y35316D01* X28207Y35284D01* X28228Y35255D01* X28252Y35227D01* X28277Y35202D01* X28285Y35196D01* Y33785D01* X28267Y33767D01* X28244Y33739D01* X28224Y33709D01* X28206Y33677D01* X28192Y33644D01* X28180Y33610D01* X28178Y33601D01* X28178Y33593D01* X28179Y33584D01* X28182Y33576D01* X28187Y33568D01* X28192Y33561D01* X28199Y33556D01* X28206Y33551D01* X28214Y33548D01* X28223Y33546D01* X28232Y33546D01* X28240Y33547D01* X28248Y33550D01* X28256Y33555D01* X28263Y33560D01* X28269Y33567D01* X28273Y33574D01* X28276Y33582D01* X28285Y33608D01* X28285Y33609D01* Y33391D01* X28278Y33412D01* X28274Y33420D01* X28270Y33427D01* X28264Y33434D01* X28257Y33439D01* X28249Y33443D01* X28241Y33446D01* X28232Y33447D01* X28224Y33447D01* X28215Y33445D01* X28207Y33442D01* X28200Y33437D01* X28193Y33431D01* X28188Y33424D01* X28184Y33417D01* X28181Y33409D01* X28180Y33400D01* X28180Y33391D01* X28182Y33383D01* X28194Y33349D01* X28209Y33316D01* X28227Y33284D01* X28248Y33255D01* X28272Y33227D01* X28285Y33214D01* Y31765D01* X28264Y31739D01* X28244Y31709D01* X28226Y31677D01* X28212Y31644D01* X28200Y31610D01* X28198Y31601D01* X28198Y31593D01* X28199Y31584D01* X28202Y31576D01* X28207Y31568D01* X28212Y31561D01* X28219Y31556D01* X28226Y31551D01* X28234Y31548D01* X28243Y31546D01* X28252Y31546D01* X28260Y31547D01* X28268Y31550D01* X28276Y31555D01* X28283Y31560D01* X28285Y31563D01* Y31432D01* X28284Y31434D01* X28277Y31439D01* X28269Y31443D01* X28261Y31446D01* X28252Y31447D01* X28244Y31447D01* X28235Y31445D01* X28227Y31442D01* X28220Y31437D01* X28213Y31431D01* X28208Y31424D01* X28204Y31417D01* X28201Y31409D01* X28200Y31400D01* X28200Y31391D01* X28202Y31383D01* X28214Y31349D01* X28229Y31316D01* X28247Y31284D01* X28268Y31255D01* X28285Y31235D01* Y29740D01* X28284Y29739D01* X28264Y29709D01* X28246Y29677D01* X28232Y29644D01* X28220Y29610D01* X28218Y29601D01* X28218Y29593D01* X28219Y29584D01* X28222Y29576D01* X28227Y29568D01* X28232Y29561D01* X28239Y29556D01* X28246Y29551D01* X28254Y29548D01* X28263Y29546D01* X28272Y29546D01* X28280Y29547D01* X28285Y29549D01* Y29445D01* X28281Y29446D01* X28272Y29447D01* X28264Y29447D01* X28255Y29445D01* X28247Y29442D01* X28240Y29437D01* X28233Y29431D01* X28228Y29424D01* X28224Y29417D01* X28221Y29409D01* X28220Y29400D01* X28220Y29391D01* X28222Y29383D01* X28234Y29349D01* X28249Y29316D01* X28267Y29284D01* X28285Y29259D01* Y27711D01* X28284Y27709D01* X28266Y27677D01* X28252Y27644D01* X28240Y27610D01* X28238Y27601D01* X28238Y27593D01* X28239Y27584D01* X28242Y27576D01* X28247Y27568D01* X28252Y27561D01* X28259Y27556D01* X28266Y27551D01* X28274Y27548D01* X28283Y27546D01* X28285D01* Y27447D01* X28284Y27447D01* X28275Y27445D01* X28267Y27442D01* X28260Y27437D01* X28253Y27431D01* X28248Y27424D01* X28244Y27417D01* X28241Y27409D01* X28240Y27400D01* X28240Y27391D01* X28242Y27383D01* X28254Y27349D01* X28269Y27316D01* X28285Y27288D01* Y25675D01* X28272Y25644D01* X28260Y25610D01* X28258Y25601D01* X28258Y25593D01* X28259Y25584D01* X28262Y25576D01* X28267Y25568D01* X28272Y25561D01* X28279Y25556D01* X28285Y25552D01* Y25441D01* X28280Y25437D01* X28273Y25431D01* X28268Y25424D01* X28264Y25417D01* X28261Y25409D01* X28260Y25400D01* X28260Y25391D01* X28262Y25383D01* X28274Y25349D01* X28285Y25325D01* Y23625D01* X28280Y23610D01* X28278Y23601D01* X28278Y23593D01* X28279Y23584D01* X28282Y23576D01* X28285Y23571D01* Y23419D01* X28284Y23417D01* X28281Y23409D01* X28280Y23400D01* X28280Y23391D01* X28282Y23383D01* X28285Y23374D01* Y0D01* X27104D01* Y1165D01* X27129Y1183D01* X27157Y1207D01* X27182Y1232D01* X27205Y1260D01* X27225Y1290D01* X27243Y1322D01* X27257Y1355D01* X27269Y1389D01* X27271Y1398D01* X27271Y1407D01* X27270Y1415D01* X27267Y1423D01* X27262Y1431D01* X27257Y1438D01* X27250Y1444D01* X27243Y1448D01* X27235Y1451D01* X27226Y1453D01* X27217Y1453D01* X27209Y1452D01* X27201Y1449D01* X27193Y1445D01* X27186Y1439D01* X27180Y1433D01* X27176Y1425D01* X27173Y1417D01* X27164Y1391D01* X27153Y1366D01* X27140Y1343D01* X27125Y1320D01* X27108Y1299D01* X27104Y1295D01* Y1704D01* X27104Y1704D01* X27122Y1683D01* X27137Y1661D01* X27151Y1637D01* X27162Y1613D01* X27171Y1587D01* X27175Y1579D01* X27179Y1572D01* X27185Y1565D01* X27192Y1560D01* X27200Y1556D01* X27208Y1553D01* X27217Y1552D01* X27225Y1552D01* X27234Y1554D01* X27242Y1557D01* X27249Y1562D01* X27256Y1568D01* X27261Y1575D01* X27265Y1582D01* X27268Y1591D01* X27269Y1599D01* X27269Y1608D01* X27267Y1617D01* X27255Y1651D01* X27240Y1683D01* X27222Y1715D01* X27201Y1744D01* X27177Y1772D01* X27152Y1797D01* X27124Y1820D01* X27104Y1834D01* Y3180D01* X27109Y3183D01* X27137Y3207D01* X27162Y3232D01* X27185Y3260D01* X27205Y3290D01* X27223Y3322D01* X27237Y3355D01* X27249Y3389D01* X27251Y3398D01* X27251Y3407D01* X27250Y3415D01* X27247Y3423D01* X27242Y3431D01* X27237Y3438D01* X27230Y3444D01* X27223Y3448D01* X27215Y3451D01* X27206Y3453D01* X27197Y3453D01* X27189Y3452D01* X27181Y3449D01* X27173Y3445D01* X27166Y3439D01* X27160Y3433D01* X27156Y3425D01* X27153Y3417D01* X27144Y3391D01* X27133Y3366D01* X27120Y3343D01* X27105Y3320D01* X27104Y3319D01* Y3680D01* X27117Y3661D01* X27131Y3637D01* X27142Y3613D01* X27151Y3587D01* X27155Y3579D01* X27159Y3572D01* X27165Y3565D01* X27172Y3560D01* X27180Y3556D01* X27188Y3553D01* X27197Y3552D01* X27205Y3552D01* X27214Y3554D01* X27222Y3557D01* X27229Y3562D01* X27236Y3568D01* X27241Y3575D01* X27245Y3582D01* X27248Y3591D01* X27249Y3599D01* X27249Y3608D01* X27247Y3617D01* X27235Y3651D01* X27220Y3683D01* X27202Y3715D01* X27181Y3744D01* X27157Y3772D01* X27132Y3797D01* X27104Y3820D01* Y5196D01* X27117Y5207D01* X27142Y5232D01* X27165Y5260D01* X27185Y5290D01* X27203Y5322D01* X27217Y5355D01* X27229Y5389D01* X27231Y5398D01* X27231Y5407D01* X27230Y5415D01* X27227Y5423D01* X27222Y5431D01* X27217Y5438D01* X27210Y5444D01* X27203Y5448D01* X27195Y5451D01* X27186Y5453D01* X27177Y5453D01* X27169Y5452D01* X27161Y5449D01* X27153Y5445D01* X27146Y5439D01* X27140Y5433D01* X27136Y5425D01* X27133Y5417D01* X27124Y5391D01* X27113Y5366D01* X27104Y5350D01* Y5650D01* X27111Y5637D01* X27122Y5613D01* X27131Y5587D01* X27135Y5579D01* X27139Y5572D01* X27145Y5565D01* X27152Y5560D01* X27160Y5556D01* X27168Y5553D01* X27177Y5552D01* X27185Y5552D01* X27194Y5554D01* X27202Y5557D01* X27209Y5562D01* X27216Y5568D01* X27221Y5575D01* X27225Y5582D01* X27228Y5591D01* X27229Y5599D01* X27229Y5608D01* X27227Y5617D01* X27215Y5651D01* X27200Y5683D01* X27182Y5715D01* X27161Y5744D01* X27137Y5772D01* X27112Y5797D01* X27104Y5804D01* Y7214D01* X27122Y7232D01* X27145Y7260D01* X27165Y7290D01* X27183Y7322D01* X27197Y7355D01* X27209Y7389D01* X27211Y7398D01* X27211Y7407D01* X27210Y7415D01* X27207Y7423D01* X27202Y7431D01* X27197Y7438D01* X27190Y7444D01* X27183Y7448D01* X27175Y7451D01* X27166Y7453D01* X27157Y7453D01* X27149Y7452D01* X27141Y7449D01* X27133Y7445D01* X27126Y7439D01* X27120Y7433D01* X27116Y7425D01* X27113Y7417D01* X27104Y7391D01* X27104Y7391D01* Y7608D01* X27111Y7587D01* X27115Y7579D01* X27119Y7572D01* X27125Y7565D01* X27132Y7560D01* X27140Y7556D01* X27148Y7553D01* X27157Y7552D01* X27165Y7552D01* X27174Y7554D01* X27182Y7557D01* X27189Y7562D01* X27196Y7568D01* X27201Y7575D01* X27205Y7582D01* X27208Y7591D01* X27209Y7599D01* X27209Y7608D01* X27207Y7617D01* X27195Y7651D01* X27180Y7683D01* X27162Y7715D01* X27141Y7744D01* X27117Y7772D01* X27104Y7785D01* Y9235D01* X27125Y9260D01* X27145Y9290D01* X27163Y9322D01* X27177Y9355D01* X27189Y9389D01* X27191Y9398D01* X27191Y9407D01* X27190Y9415D01* X27187Y9423D01* X27182Y9431D01* X27177Y9438D01* X27170Y9444D01* X27163Y9448D01* X27155Y9451D01* X27146Y9453D01* X27137Y9453D01* X27129Y9452D01* X27121Y9449D01* X27113Y9445D01* X27106Y9439D01* X27104Y9437D01* Y9567D01* X27105Y9565D01* X27112Y9560D01* X27120Y9556D01* X27128Y9553D01* X27137Y9552D01* X27145Y9552D01* X27154Y9554D01* X27162Y9557D01* X27169Y9562D01* X27176Y9568D01* X27181Y9575D01* X27185Y9582D01* X27188Y9591D01* X27189Y9599D01* X27189Y9608D01* X27187Y9617D01* X27175Y9651D01* X27160Y9683D01* X27142Y9715D01* X27121Y9744D01* X27104Y9764D01* Y11259D01* X27105Y11260D01* X27125Y11290D01* X27143Y11322D01* X27157Y11355D01* X27169Y11389D01* X27171Y11398D01* X27171Y11407D01* X27170Y11415D01* X27167Y11423D01* X27162Y11431D01* X27157Y11438D01* X27150Y11444D01* X27143Y11448D01* X27135Y11451D01* X27126Y11453D01* X27117Y11453D01* X27109Y11452D01* X27104Y11450D01* Y11555D01* X27108Y11553D01* X27117Y11552D01* X27125Y11552D01* X27134Y11554D01* X27142Y11557D01* X27149Y11562D01* X27156Y11568D01* X27161Y11575D01* X27165Y11582D01* X27168Y11591D01* X27169Y11599D01* X27169Y11608D01* X27167Y11617D01* X27155Y11651D01* X27140Y11683D01* X27122Y11715D01* X27104Y11740D01* Y13288D01* X27105Y13290D01* X27123Y13322D01* X27137Y13355D01* X27149Y13389D01* X27151Y13398D01* X27151Y13407D01* X27150Y13415D01* X27147Y13423D01* X27142Y13431D01* X27137Y13438D01* X27130Y13444D01* X27123Y13448D01* X27115Y13451D01* X27106Y13453D01* X27104D01* Y13552D01* X27105D01* X27114Y13554D01* X27122Y13557D01* X27129Y13562D01* X27136Y13568D01* X27141Y13575D01* X27145Y13582D01* X27148Y13591D01* X27149Y13599D01* X27149Y13608D01* X27147Y13617D01* X27135Y13651D01* X27120Y13683D01* X27104Y13711D01* Y15324D01* X27117Y15355D01* X27129Y15389D01* X27131Y15398D01* X27131Y15407D01* X27130Y15415D01* X27127Y15423D01* X27122Y15431D01* X27117Y15438D01* X27110Y15444D01* X27104Y15447D01* Y15559D01* X27109Y15562D01* X27116Y15568D01* X27121Y15575D01* X27125Y15582D01* X27128Y15591D01* X27129Y15599D01* X27129Y15608D01* X27127Y15617D01* X27115Y15651D01* X27104Y15674D01* Y17374D01* X27109Y17389D01* X27111Y17398D01* X27111Y17407D01* X27110Y17415D01* X27107Y17423D01* X27104Y17428D01* Y17580D01* X27105Y17582D01* X27108Y17591D01* X27109Y17599D01* X27109Y17608D01* X27107Y17617D01* X27104Y17625D01* Y40000D01* G37* G36* X28285D02*X28465D01* Y37859D01* X28462Y37864D01* X28456Y37871D01* X28449Y37876D01* X28442Y37880D01* X28433Y37883D01* X28425Y37884D01* X28416Y37884D01* X28408Y37882D01* X28373Y37870D01* X28341Y37855D01* X28309Y37837D01* X28285Y37820D01* Y39166D01* X28295Y39159D01* X28327Y39141D01* X28360Y39127D01* X28394Y39115D01* X28403Y39113D01* X28412Y39113D01* X28420Y39115D01* X28428Y39117D01* X28436Y39122D01* X28443Y39127D01* X28449Y39134D01* X28453Y39141D01* X28456Y39149D01* X28458Y39158D01* X28458Y39167D01* X28457Y39175D01* X28454Y39183D01* X28450Y39191D01* X28444Y39198D01* X28437Y39204D01* X28430Y39208D01* X28422Y39211D01* X28396Y39220D01* X28371Y39231D01* X28348Y39244D01* X28325Y39259D01* X28304Y39276D01* X28285Y39295D01* Y39704D01* X28300Y39719D01* X28321Y39737D01* X28343Y39752D01* X28367Y39766D01* X28391Y39777D01* X28417Y39786D01* X28425Y39790D01* X28432Y39794D01* X28439Y39800D01* X28444Y39807D01* X28448Y39815D01* X28451Y39823D01* X28452Y39832D01* X28452Y39840D01* X28450Y39849D01* X28447Y39857D01* X28442Y39864D01* X28436Y39871D01* X28429Y39876D01* X28422Y39880D01* X28413Y39883D01* X28405Y39884D01* X28396Y39884D01* X28388Y39882D01* X28353Y39870D01* X28321Y39855D01* X28289Y39837D01* X28285Y39834D01* Y40000D01* G37* G36* X28465Y11740D02*X28464Y11739D01* X28444Y11709D01* X28426Y11677D01* X28412Y11644D01* X28400Y11610D01* X28398Y11601D01* X28398Y11593D01* X28399Y11584D01* X28402Y11576D01* X28407Y11568D01* X28412Y11561D01* X28419Y11556D01* X28426Y11551D01* X28434Y11548D01* X28443Y11546D01* X28452Y11546D01* X28460Y11547D01* X28465Y11549D01* Y11445D01* X28461Y11446D01* X28452Y11447D01* X28444Y11447D01* X28435Y11445D01* X28427Y11442D01* X28420Y11437D01* X28413Y11431D01* X28408Y11424D01* X28404Y11417D01* X28401Y11409D01* X28400Y11400D01* X28400Y11391D01* X28402Y11383D01* X28414Y11349D01* X28429Y11316D01* X28447Y11284D01* X28465Y11259D01* Y9711D01* X28464Y9709D01* X28446Y9677D01* X28432Y9644D01* X28420Y9610D01* X28418Y9601D01* X28418Y9593D01* X28419Y9584D01* X28422Y9576D01* X28427Y9568D01* X28432Y9561D01* X28439Y9556D01* X28446Y9551D01* X28454Y9548D01* X28463Y9546D01* X28465D01* Y9447D01* X28464Y9447D01* X28455Y9445D01* X28447Y9442D01* X28440Y9437D01* X28433Y9431D01* X28428Y9424D01* X28424Y9417D01* X28421Y9409D01* X28420Y9400D01* X28420Y9391D01* X28422Y9383D01* X28434Y9349D01* X28449Y9316D01* X28465Y9288D01* Y7675D01* X28452Y7644D01* X28440Y7610D01* X28438Y7601D01* X28438Y7593D01* X28439Y7584D01* X28442Y7576D01* X28447Y7568D01* X28452Y7561D01* X28459Y7556D01* X28465Y7552D01* Y7441D01* X28460Y7437D01* X28453Y7431D01* X28448Y7424D01* X28444Y7417D01* X28441Y7409D01* X28440Y7400D01* X28440Y7391D01* X28442Y7383D01* X28454Y7349D01* X28465Y7325D01* Y5625D01* X28460Y5610D01* X28458Y5601D01* X28458Y5593D01* X28459Y5584D01* X28462Y5576D01* X28465Y5571D01* Y5419D01* X28464Y5417D01* X28461Y5409D01* X28460Y5400D01* X28460Y5391D01* X28462Y5383D01* X28465Y5374D01* Y0D01* X28285D01* Y23374D01* X28294Y23349D01* X28309Y23316D01* X28327Y23284D01* X28348Y23255D01* X28372Y23227D01* X28397Y23202D01* X28425Y23179D01* X28455Y23159D01* X28465Y23153D01* Y21834D01* X28440Y21816D01* X28412Y21793D01* X28387Y21767D01* X28364Y21739D01* X28344Y21709D01* X28326Y21677D01* X28312Y21644D01* X28300Y21610D01* X28298Y21601D01* X28298Y21593D01* X28299Y21584D01* X28302Y21576D01* X28307Y21568D01* X28312Y21561D01* X28319Y21556D01* X28326Y21551D01* X28334Y21548D01* X28343Y21546D01* X28352Y21546D01* X28360Y21547D01* X28368Y21550D01* X28376Y21555D01* X28383Y21560D01* X28389Y21567D01* X28393Y21574D01* X28396Y21582D01* X28405Y21608D01* X28416Y21633D01* X28429Y21657D01* X28444Y21679D01* X28461Y21700D01* X28465Y21704D01* Y21295D01* X28465Y21295D01* X28447Y21316D01* X28432Y21338D01* X28418Y21362D01* X28407Y21386D01* X28398Y21412D01* X28394Y21420D01* X28390Y21427D01* X28384Y21434D01* X28377Y21439D01* X28369Y21443D01* X28361Y21446D01* X28352Y21447D01* X28344Y21447D01* X28335Y21445D01* X28327Y21442D01* X28320Y21437D01* X28313Y21431D01* X28308Y21424D01* X28304Y21417D01* X28301Y21409D01* X28300Y21400D01* X28300Y21391D01* X28302Y21383D01* X28314Y21349D01* X28329Y21316D01* X28347Y21284D01* X28368Y21255D01* X28392Y21227D01* X28417Y21202D01* X28445Y21179D01* X28465Y21166D01* Y19820D01* X28460Y19816D01* X28432Y19793D01* X28407Y19767D01* X28384Y19739D01* X28364Y19709D01* X28346Y19677D01* X28332Y19644D01* X28320Y19610D01* X28318Y19601D01* X28318Y19593D01* X28319Y19584D01* X28322Y19576D01* X28327Y19568D01* X28332Y19561D01* X28339Y19556D01* X28346Y19551D01* X28354Y19548D01* X28363Y19546D01* X28372Y19546D01* X28380Y19547D01* X28388Y19550D01* X28396Y19555D01* X28403Y19560D01* X28409Y19567D01* X28413Y19574D01* X28416Y19582D01* X28425Y19608D01* X28436Y19633D01* X28449Y19657D01* X28464Y19679D01* X28465Y19680D01* Y19319D01* X28452Y19338D01* X28438Y19362D01* X28427Y19386D01* X28418Y19412D01* X28414Y19420D01* X28410Y19427D01* X28404Y19434D01* X28397Y19439D01* X28389Y19443D01* X28381Y19446D01* X28372Y19447D01* X28364Y19447D01* X28355Y19445D01* X28347Y19442D01* X28340Y19437D01* X28333Y19431D01* X28328Y19424D01* X28324Y19417D01* X28321Y19409D01* X28320Y19400D01* X28320Y19391D01* X28322Y19383D01* X28334Y19349D01* X28349Y19316D01* X28367Y19284D01* X28388Y19255D01* X28412Y19227D01* X28437Y19202D01* X28465Y19179D01* Y17804D01* X28452Y17793D01* X28427Y17767D01* X28404Y17739D01* X28384Y17709D01* X28366Y17677D01* X28352Y17644D01* X28340Y17610D01* X28338Y17601D01* X28338Y17593D01* X28339Y17584D01* X28342Y17576D01* X28347Y17568D01* X28352Y17561D01* X28359Y17556D01* X28366Y17551D01* X28374Y17548D01* X28383Y17546D01* X28392Y17546D01* X28400Y17547D01* X28408Y17550D01* X28416Y17555D01* X28423Y17560D01* X28429Y17567D01* X28433Y17574D01* X28436Y17582D01* X28445Y17608D01* X28456Y17633D01* X28465Y17650D01* Y17349D01* X28458Y17362D01* X28447Y17386D01* X28438Y17412D01* X28434Y17420D01* X28430Y17427D01* X28424Y17434D01* X28417Y17439D01* X28409Y17443D01* X28401Y17446D01* X28392Y17447D01* X28384Y17447D01* X28375Y17445D01* X28367Y17442D01* X28360Y17437D01* X28353Y17431D01* X28348Y17424D01* X28344Y17417D01* X28341Y17409D01* X28340Y17400D01* X28340Y17391D01* X28342Y17383D01* X28354Y17349D01* X28369Y17316D01* X28387Y17284D01* X28408Y17255D01* X28432Y17227D01* X28457Y17202D01* X28465Y17196D01* Y15785D01* X28447Y15767D01* X28424Y15739D01* X28404Y15709D01* X28386Y15677D01* X28372Y15644D01* X28360Y15610D01* X28358Y15601D01* X28358Y15593D01* X28359Y15584D01* X28362Y15576D01* X28367Y15568D01* X28372Y15561D01* X28379Y15556D01* X28386Y15551D01* X28394Y15548D01* X28403Y15546D01* X28412Y15546D01* X28420Y15547D01* X28428Y15550D01* X28436Y15555D01* X28443Y15560D01* X28449Y15567D01* X28453Y15574D01* X28456Y15582D01* X28465Y15608D01* X28465Y15609D01* Y15391D01* X28458Y15412D01* X28454Y15420D01* X28450Y15427D01* X28444Y15434D01* X28437Y15439D01* X28429Y15443D01* X28421Y15446D01* X28412Y15447D01* X28404Y15447D01* X28395Y15445D01* X28387Y15442D01* X28380Y15437D01* X28373Y15431D01* X28368Y15424D01* X28364Y15417D01* X28361Y15409D01* X28360Y15400D01* X28360Y15391D01* X28362Y15383D01* X28374Y15349D01* X28389Y15316D01* X28407Y15284D01* X28428Y15255D01* X28452Y15227D01* X28465Y15214D01* Y13765D01* X28444Y13739D01* X28424Y13709D01* X28406Y13677D01* X28392Y13644D01* X28380Y13610D01* X28378Y13601D01* X28378Y13593D01* X28379Y13584D01* X28382Y13576D01* X28387Y13568D01* X28392Y13561D01* X28399Y13556D01* X28406Y13551D01* X28414Y13548D01* X28423Y13546D01* X28432Y13546D01* X28440Y13547D01* X28448Y13550D01* X28456Y13555D01* X28463Y13560D01* X28465Y13563D01* Y13432D01* X28464Y13434D01* X28457Y13439D01* X28449Y13443D01* X28441Y13446D01* X28432Y13447D01* X28424Y13447D01* X28415Y13445D01* X28407Y13442D01* X28400Y13437D01* X28393Y13431D01* X28388Y13424D01* X28384Y13417D01* X28381Y13409D01* X28380Y13400D01* X28380Y13391D01* X28382Y13383D01* X28394Y13349D01* X28409Y13316D01* X28427Y13284D01* X28448Y13255D01* X28465Y13235D01* Y11740D01* G37* G36* Y23276D02*X28464Y23276D01* X28445Y23295D01* X28427Y23316D01* X28412Y23338D01* X28398Y23362D01* X28387Y23386D01* X28378Y23412D01* X28374Y23420D01* X28370Y23427D01* X28364Y23434D01* X28357Y23439D01* X28349Y23443D01* X28341Y23446D01* X28332Y23447D01* X28324Y23447D01* X28315Y23445D01* X28307Y23442D01* X28300Y23437D01* X28293Y23431D01* X28288Y23424D01* X28285Y23419D01* Y23571D01* X28287Y23568D01* X28292Y23561D01* X28299Y23556D01* X28306Y23551D01* X28314Y23548D01* X28323Y23546D01* X28332Y23546D01* X28340Y23547D01* X28348Y23550D01* X28356Y23555D01* X28363Y23560D01* X28369Y23567D01* X28373Y23574D01* X28376Y23582D01* X28385Y23608D01* X28396Y23633D01* X28409Y23657D01* X28424Y23679D01* X28441Y23700D01* X28460Y23719D01* X28465Y23723D01* Y23276D01* G37* G36* Y23846D02*X28449Y23837D01* X28420Y23816D01* X28392Y23793D01* X28367Y23767D01* X28344Y23739D01* X28324Y23709D01* X28306Y23677D01* X28292Y23644D01* X28285Y23625D01* Y25325D01* X28289Y25316D01* X28307Y25284D01* X28328Y25255D01* X28352Y25227D01* X28377Y25202D01* X28405Y25179D01* X28435Y25159D01* X28465Y25142D01* Y23846D01* G37* G36* Y25259D02*X28465Y25259D01* X28444Y25276D01* X28425Y25295D01* X28407Y25316D01* X28392Y25338D01* X28378Y25362D01* X28367Y25386D01* X28358Y25412D01* X28354Y25420D01* X28350Y25427D01* X28344Y25434D01* X28337Y25439D01* X28329Y25443D01* X28321Y25446D01* X28312Y25447D01* X28304Y25447D01* X28295Y25445D01* X28287Y25442D01* X28285Y25441D01* Y25552D01* X28286Y25551D01* X28294Y25548D01* X28303Y25546D01* X28312Y25546D01* X28320Y25547D01* X28328Y25550D01* X28336Y25555D01* X28343Y25560D01* X28349Y25567D01* X28353Y25574D01* X28356Y25582D01* X28365Y25608D01* X28376Y25633D01* X28389Y25657D01* X28404Y25679D01* X28421Y25700D01* X28440Y25719D01* X28461Y25737D01* X28465Y25740D01* Y25259D01* G37* G36* Y25857D02*X28461Y25855D01* X28429Y25837D01* X28400Y25816D01* X28372Y25793D01* X28347Y25767D01* X28324Y25739D01* X28304Y25709D01* X28286Y25677D01* X28285Y25675D01* Y27288D01* X28287Y27284D01* X28308Y27255D01* X28332Y27227D01* X28357Y27202D01* X28385Y27179D01* X28415Y27159D01* X28447Y27141D01* X28465Y27133D01* Y25857D01* G37* G36* Y27246D02*X28445Y27259D01* X28424Y27276D01* X28405Y27295D01* X28387Y27316D01* X28372Y27338D01* X28358Y27362D01* X28347Y27386D01* X28338Y27412D01* X28334Y27420D01* X28330Y27427D01* X28324Y27434D01* X28317Y27439D01* X28309Y27443D01* X28301Y27446D01* X28292Y27447D01* X28285Y27447D01* Y27546D01* X28292Y27546D01* X28300Y27547D01* X28308Y27550D01* X28316Y27555D01* X28323Y27560D01* X28329Y27567D01* X28333Y27574D01* X28336Y27582D01* X28345Y27608D01* X28356Y27633D01* X28369Y27657D01* X28384Y27679D01* X28401Y27700D01* X28420Y27719D01* X28441Y27737D01* X28463Y27752D01* X28465Y27754D01* Y27246D01* G37* G36* Y27866D02*X28441Y27855D01* X28409Y27837D01* X28380Y27816D01* X28352Y27793D01* X28327Y27767D01* X28304Y27739D01* X28285Y27711D01* Y29259D01* X28288Y29255D01* X28312Y29227D01* X28337Y29202D01* X28365Y29179D01* X28395Y29159D01* X28427Y29141D01* X28460Y29127D01* X28465Y29125D01* Y27866D01* G37* G36* Y29234D02*X28448Y29244D01* X28425Y29259D01* X28404Y29276D01* X28385Y29295D01* X28367Y29316D01* X28352Y29338D01* X28338Y29362D01* X28327Y29386D01* X28318Y29412D01* X28314Y29420D01* X28310Y29427D01* X28304Y29434D01* X28297Y29439D01* X28289Y29443D01* X28285Y29445D01* Y29549D01* X28288Y29550D01* X28296Y29555D01* X28303Y29560D01* X28309Y29567D01* X28313Y29574D01* X28316Y29582D01* X28325Y29608D01* X28336Y29633D01* X28349Y29657D01* X28364Y29679D01* X28381Y29700D01* X28400Y29719D01* X28421Y29737D01* X28443Y29752D01* X28465Y29765D01* Y29234D01* G37* G36* Y29874D02*X28453Y29870D01* X28421Y29855D01* X28389Y29837D01* X28360Y29816D01* X28332Y29793D01* X28307Y29767D01* X28285Y29740D01* Y31235D01* X28292Y31227D01* X28317Y31202D01* X28345Y31179D01* X28375Y31159D01* X28407Y31141D01* X28440Y31127D01* X28465Y31118D01* Y29874D01* G37* G36* Y31225D02*X28451Y31231D01* X28428Y31244D01* X28405Y31259D01* X28384Y31276D01* X28365Y31295D01* X28347Y31316D01* X28332Y31338D01* X28318Y31362D01* X28307Y31386D01* X28298Y31412D01* X28294Y31420D01* X28290Y31427D01* X28285Y31432D01* Y31563D01* X28289Y31567D01* X28293Y31574D01* X28296Y31582D01* X28305Y31608D01* X28316Y31633D01* X28329Y31657D01* X28344Y31679D01* X28361Y31700D01* X28380Y31719D01* X28401Y31737D01* X28423Y31752D01* X28447Y31766D01* X28465Y31775D01* Y31225D01* G37* G36* Y31881D02*X28433Y31870D01* X28401Y31855D01* X28369Y31837D01* X28340Y31816D01* X28312Y31793D01* X28287Y31767D01* X28285Y31765D01* Y33214D01* X28297Y33202D01* X28325Y33179D01* X28355Y33159D01* X28387Y33141D01* X28420Y33127D01* X28454Y33115D01* X28463Y33113D01* X28465D01* Y31881D01* G37* G36* Y33217D02*X28456Y33220D01* X28431Y33231D01* X28408Y33244D01* X28385Y33259D01* X28364Y33276D01* X28345Y33295D01* X28327Y33316D01* X28312Y33338D01* X28298Y33362D01* X28287Y33386D01* X28285Y33391D01* Y33609D01* X28296Y33633D01* X28309Y33657D01* X28324Y33679D01* X28341Y33700D01* X28360Y33719D01* X28381Y33737D01* X28403Y33752D01* X28427Y33766D01* X28451Y33777D01* X28465Y33782D01* Y33217D01* G37* G36* Y33884D02*X28465Y33884D01* X28456Y33884D01* X28448Y33882D01* X28413Y33870D01* X28381Y33855D01* X28349Y33837D01* X28320Y33816D01* X28292Y33793D01* X28285Y33785D01* Y35196D01* X28305Y35179D01* X28335Y35159D01* X28367Y35141D01* X28400Y35127D01* X28434Y35115D01* X28443Y35113D01* X28452Y35113D01* X28460Y35115D01* X28465Y35116D01* Y33884D01* G37* G36* Y35210D02*X28462Y35211D01* X28436Y35220D01* X28411Y35231D01* X28388Y35244D01* X28365Y35259D01* X28344Y35276D01* X28325Y35295D01* X28307Y35316D01* X28292Y35338D01* X28285Y35349D01* Y35650D01* X28289Y35657D01* X28304Y35679D01* X28321Y35700D01* X28340Y35719D01* X28361Y35737D01* X28383Y35752D01* X28407Y35766D01* X28431Y35777D01* X28457Y35786D01* X28465Y35790D01* X28465Y35790D01* Y35210D01* G37* G36* Y35878D02*X28462Y35880D01* X28453Y35883D01* X28445Y35884D01* X28436Y35884D01* X28428Y35882D01* X28393Y35870D01* X28361Y35855D01* X28329Y35837D01* X28300Y35816D01* X28285Y35804D01* Y37179D01* X28285Y37179D01* X28315Y37159D01* X28347Y37141D01* X28380Y37127D01* X28414Y37115D01* X28423Y37113D01* X28432Y37113D01* X28440Y37115D01* X28448Y37117D01* X28456Y37122D01* X28463Y37127D01* X28465Y37130D01* Y35878D01* G37* G36* Y37197D02*X28464Y37198D01* X28457Y37204D01* X28450Y37208D01* X28442Y37211D01* X28416Y37220D01* X28391Y37231D01* X28368Y37244D01* X28345Y37259D01* X28324Y37276D01* X28305Y37295D01* X28287Y37316D01* X28285Y37319D01* Y37680D01* X28301Y37700D01* X28320Y37719D01* X28341Y37737D01* X28363Y37752D01* X28387Y37766D01* X28411Y37777D01* X28437Y37786D01* X28445Y37790D01* X28452Y37794D01* X28459Y37800D01* X28464Y37807D01* X28465Y37809D01* Y37197D01* G37* G36* Y40000D02*X28724D01* Y39834D01* X28714Y39840D01* X28682Y39858D01* X28649Y39873D01* X28615Y39884D01* X28606Y39886D01* X28597Y39886D01* X28589Y39885D01* X28581Y39882D01* X28573Y39878D01* X28566Y39872D01* X28560Y39865D01* X28556Y39858D01* X28553Y39850D01* X28551Y39841D01* X28551Y39833D01* X28552Y39824D01* X28555Y39816D01* X28559Y39808D01* X28565Y39801D01* X28572Y39796D01* X28579Y39791D01* X28587Y39788D01* X28613Y39779D01* X28638Y39768D01* X28661Y39755D01* X28684Y39740D01* X28705Y39723D01* X28724Y39704D01* Y39295D01* X28709Y39280D01* X28688Y39262D01* X28666Y39247D01* X28642Y39233D01* X28618Y39222D01* X28592Y39213D01* X28584Y39209D01* X28577Y39205D01* X28570Y39199D01* X28565Y39192D01* X28561Y39184D01* X28558Y39176D01* X28557Y39167D01* X28557Y39159D01* X28559Y39150D01* X28562Y39142D01* X28567Y39135D01* X28573Y39128D01* X28580Y39123D01* X28587Y39119D01* X28596Y39116D01* X28604Y39115D01* X28613Y39115D01* X28621Y39117D01* X28656Y39129D01* X28688Y39144D01* X28720Y39162D01* X28724Y39165D01* Y37846D01* X28702Y37858D01* X28669Y37873D01* X28635Y37884D01* X28626Y37886D01* X28617Y37886D01* X28609Y37885D01* X28601Y37882D01* X28593Y37878D01* X28586Y37872D01* X28580Y37865D01* X28576Y37858D01* X28573Y37850D01* X28571Y37841D01* X28571Y37833D01* X28572Y37824D01* X28575Y37816D01* X28579Y37808D01* X28585Y37801D01* X28592Y37796D01* X28599Y37791D01* X28607Y37788D01* X28633Y37779D01* X28658Y37768D01* X28681Y37755D01* X28704Y37740D01* X28724Y37724D01* Y37276D01* X28708Y37262D01* X28686Y37247D01* X28662Y37233D01* X28638Y37222D01* X28612Y37213D01* X28604Y37209D01* X28597Y37205D01* X28590Y37199D01* X28585Y37192D01* X28581Y37184D01* X28578Y37176D01* X28577Y37167D01* X28577Y37159D01* X28579Y37150D01* X28582Y37142D01* X28587Y37135D01* X28593Y37128D01* X28600Y37123D01* X28607Y37119D01* X28616Y37116D01* X28624Y37115D01* X28633Y37115D01* X28641Y37117D01* X28676Y37129D01* X28708Y37144D01* X28724Y37153D01* Y35857D01* X28722Y35858D01* X28689Y35873D01* X28655Y35884D01* X28646Y35886D01* X28637Y35886D01* X28629Y35885D01* X28621Y35882D01* X28613Y35878D01* X28606Y35872D01* X28600Y35865D01* X28596Y35858D01* X28593Y35850D01* X28591Y35841D01* X28591Y35833D01* X28592Y35824D01* X28595Y35816D01* X28599Y35808D01* X28605Y35801D01* X28612Y35796D01* X28619Y35791D01* X28627Y35788D01* X28653Y35779D01* X28678Y35768D01* X28701Y35755D01* X28724Y35740D01* Y35259D01* X28706Y35247D01* X28682Y35233D01* X28658Y35222D01* X28632Y35213D01* X28624Y35209D01* X28617Y35205D01* X28610Y35199D01* X28605Y35192D01* X28601Y35184D01* X28598Y35176D01* X28597Y35167D01* X28597Y35159D01* X28599Y35150D01* X28602Y35142D01* X28607Y35135D01* X28613Y35128D01* X28620Y35123D01* X28627Y35119D01* X28636Y35116D01* X28644Y35115D01* X28653Y35115D01* X28661Y35117D01* X28696Y35129D01* X28724Y35142D01* Y33866D01* X28709Y33873D01* X28675Y33884D01* X28666Y33886D01* X28657Y33886D01* X28649Y33885D01* X28641Y33882D01* X28633Y33878D01* X28626Y33872D01* X28620Y33865D01* X28616Y33858D01* X28613Y33850D01* X28611Y33841D01* X28611Y33833D01* X28612Y33824D01* X28615Y33816D01* X28619Y33808D01* X28625Y33801D01* X28632Y33796D01* X28639Y33791D01* X28647Y33788D01* X28673Y33779D01* X28698Y33768D01* X28721Y33755D01* X28724Y33754D01* Y33246D01* X28702Y33233D01* X28678Y33222D01* X28652Y33213D01* X28644Y33209D01* X28637Y33205D01* X28630Y33199D01* X28625Y33192D01* X28621Y33184D01* X28618Y33176D01* X28617Y33167D01* X28617Y33159D01* X28619Y33150D01* X28622Y33142D01* X28627Y33135D01* X28633Y33128D01* X28640Y33123D01* X28647Y33119D01* X28656Y33116D01* X28664Y33115D01* X28673Y33115D01* X28681Y33117D01* X28716Y33129D01* X28724Y33133D01* Y31874D01* X28695Y31884D01* X28686Y31886D01* X28677Y31886D01* X28669Y31885D01* X28661Y31882D01* X28653Y31878D01* X28646Y31872D01* X28640Y31865D01* X28636Y31858D01* X28633Y31850D01* X28631Y31841D01* X28631Y31833D01* X28632Y31824D01* X28635Y31816D01* X28639Y31808D01* X28645Y31801D01* X28652Y31796D01* X28659Y31791D01* X28667Y31788D01* X28693Y31779D01* X28718Y31768D01* X28724Y31765D01* Y31234D01* X28722Y31233D01* X28698Y31222D01* X28672Y31213D01* X28664Y31209D01* X28657Y31205D01* X28650Y31199D01* X28645Y31192D01* X28641Y31184D01* X28638Y31176D01* X28637Y31167D01* X28637Y31159D01* X28639Y31150D01* X28642Y31142D01* X28647Y31135D01* X28653Y31128D01* X28660Y31123D01* X28667Y31119D01* X28676Y31116D01* X28684Y31115D01* X28693Y31115D01* X28701Y31117D01* X28724Y31125D01* Y29881D01* X28715Y29884D01* X28706Y29886D01* X28697Y29886D01* X28689Y29885D01* X28681Y29882D01* X28673Y29878D01* X28666Y29872D01* X28660Y29865D01* X28656Y29858D01* X28653Y29850D01* X28651Y29841D01* X28651Y29833D01* X28652Y29824D01* X28655Y29816D01* X28659Y29808D01* X28665Y29801D01* X28672Y29796D01* X28679Y29791D01* X28687Y29788D01* X28713Y29779D01* X28724Y29774D01* Y29225D01* X28718Y29222D01* X28692Y29213D01* X28684Y29209D01* X28677Y29205D01* X28670Y29199D01* X28665Y29192D01* X28661Y29184D01* X28658Y29176D01* X28657Y29167D01* X28657Y29159D01* X28659Y29150D01* X28662Y29142D01* X28667Y29135D01* X28673Y29128D01* X28680Y29123D01* X28687Y29119D01* X28696Y29116D01* X28704Y29115D01* X28713Y29115D01* X28721Y29117D01* X28724Y29118D01* Y27886D01* X28717Y27886D01* X28709Y27885D01* X28701Y27882D01* X28693Y27878D01* X28686Y27872D01* X28680Y27865D01* X28676Y27858D01* X28673Y27850D01* X28671Y27841D01* X28671Y27833D01* X28672Y27824D01* X28675Y27816D01* X28679Y27808D01* X28685Y27801D01* X28692Y27796D01* X28699Y27791D01* X28707Y27788D01* X28724Y27782D01* Y27217D01* X28712Y27213D01* X28704Y27209D01* X28697Y27205D01* X28690Y27199D01* X28685Y27192D01* X28681Y27184D01* X28678Y27176D01* X28677Y27167D01* X28677Y27159D01* X28679Y27150D01* X28682Y27142D01* X28687Y27135D01* X28693Y27128D01* X28700Y27123D01* X28707Y27119D01* X28716Y27116D01* X28724Y27115D01* Y25883D01* X28721Y25882D01* X28713Y25878D01* X28706Y25872D01* X28700Y25865D01* X28696Y25858D01* X28693Y25850D01* X28691Y25841D01* X28691Y25833D01* X28692Y25824D01* X28695Y25816D01* X28699Y25808D01* X28705Y25801D01* X28712Y25796D01* X28719Y25791D01* X28724Y25789D01* Y25209D01* X28717Y25205D01* X28710Y25199D01* X28705Y25192D01* X28701Y25184D01* X28698Y25176D01* X28697Y25167D01* X28697Y25159D01* X28699Y25150D01* X28702Y25142D01* X28707Y25135D01* X28713Y25128D01* X28720Y25123D01* X28724Y25121D01* Y23870D01* X28720Y23865D01* X28716Y23858D01* X28713Y23850D01* X28711Y23841D01* X28711Y23833D01* X28712Y23824D01* X28715Y23816D01* X28719Y23808D01* X28724Y23802D01* Y23190D01* X28721Y23184D01* X28718Y23176D01* X28717Y23167D01* X28717Y23159D01* X28719Y23150D01* X28722Y23142D01* X28724Y23140D01* Y11861D01* X28722Y11864D01* X28716Y11871D01* X28709Y11876D01* X28702Y11880D01* X28693Y11883D01* X28685Y11884D01* X28676Y11884D01* X28668Y11882D01* X28633Y11870D01* X28601Y11855D01* X28569Y11837D01* X28540Y11816D01* X28512Y11793D01* X28487Y11767D01* X28465Y11740D01* Y13235D01* X28472Y13227D01* X28497Y13202D01* X28525Y13179D01* X28555Y13159D01* X28587Y13141D01* X28620Y13127D01* X28654Y13115D01* X28663Y13113D01* X28672Y13113D01* X28680Y13115D01* X28688Y13117D01* X28696Y13122D01* X28703Y13127D01* X28709Y13134D01* X28713Y13141D01* X28716Y13149D01* X28718Y13158D01* X28718Y13167D01* X28717Y13175D01* X28714Y13183D01* X28710Y13191D01* X28704Y13198D01* X28697Y13204D01* X28690Y13208D01* X28682Y13211D01* X28656Y13220D01* X28631Y13231D01* X28608Y13244D01* X28585Y13259D01* X28564Y13276D01* X28545Y13295D01* X28527Y13316D01* X28512Y13338D01* X28498Y13362D01* X28487Y13386D01* X28478Y13412D01* X28474Y13420D01* X28470Y13427D01* X28465Y13432D01* Y13563D01* X28469Y13567D01* X28473Y13574D01* X28476Y13582D01* X28485Y13608D01* X28496Y13633D01* X28509Y13657D01* X28524Y13679D01* X28541Y13700D01* X28560Y13719D01* X28581Y13737D01* X28603Y13752D01* X28627Y13766D01* X28651Y13777D01* X28677Y13786D01* X28685Y13790D01* X28692Y13794D01* X28699Y13800D01* X28704Y13807D01* X28708Y13815D01* X28711Y13823D01* X28712Y13832D01* X28712Y13840D01* X28710Y13849D01* X28707Y13857D01* X28702Y13864D01* X28696Y13871D01* X28689Y13876D01* X28682Y13880D01* X28673Y13883D01* X28665Y13884D01* X28656Y13884D01* X28648Y13882D01* X28613Y13870D01* X28581Y13855D01* X28549Y13837D01* X28520Y13816D01* X28492Y13793D01* X28467Y13767D01* X28465Y13765D01* Y15214D01* X28477Y15202D01* X28505Y15179D01* X28535Y15159D01* X28567Y15141D01* X28600Y15127D01* X28634Y15115D01* X28643Y15113D01* X28652Y15113D01* X28660Y15115D01* X28668Y15117D01* X28676Y15122D01* X28683Y15127D01* X28689Y15134D01* X28693Y15141D01* X28696Y15149D01* X28698Y15158D01* X28698Y15167D01* X28697Y15175D01* X28694Y15183D01* X28690Y15191D01* X28684Y15198D01* X28677Y15204D01* X28670Y15208D01* X28662Y15211D01* X28636Y15220D01* X28611Y15231D01* X28588Y15244D01* X28565Y15259D01* X28544Y15276D01* X28525Y15295D01* X28507Y15316D01* X28492Y15338D01* X28478Y15362D01* X28467Y15386D01* X28465Y15391D01* Y15609D01* X28476Y15633D01* X28489Y15657D01* X28504Y15679D01* X28521Y15700D01* X28540Y15719D01* X28561Y15737D01* X28583Y15752D01* X28607Y15766D01* X28631Y15777D01* X28657Y15786D01* X28665Y15790D01* X28672Y15794D01* X28679Y15800D01* X28684Y15807D01* X28688Y15815D01* X28691Y15823D01* X28692Y15832D01* X28692Y15840D01* X28690Y15849D01* X28687Y15857D01* X28682Y15864D01* X28676Y15871D01* X28669Y15876D01* X28662Y15880D01* X28653Y15883D01* X28645Y15884D01* X28636Y15884D01* X28628Y15882D01* X28593Y15870D01* X28561Y15855D01* X28529Y15837D01* X28500Y15816D01* X28472Y15793D01* X28465Y15785D01* Y17196D01* X28485Y17179D01* X28515Y17159D01* X28547Y17141D01* X28580Y17127D01* X28614Y17115D01* X28623Y17113D01* X28632Y17113D01* X28640Y17115D01* X28648Y17117D01* X28656Y17122D01* X28663Y17127D01* X28669Y17134D01* X28673Y17141D01* X28676Y17149D01* X28678Y17158D01* X28678Y17167D01* X28677Y17175D01* X28674Y17183D01* X28670Y17191D01* X28664Y17198D01* X28657Y17204D01* X28650Y17208D01* X28642Y17211D01* X28616Y17220D01* X28591Y17231D01* X28568Y17244D01* X28545Y17259D01* X28524Y17276D01* X28505Y17295D01* X28487Y17316D01* X28472Y17338D01* X28465Y17349D01* Y17650D01* X28469Y17657D01* X28484Y17679D01* X28501Y17700D01* X28520Y17719D01* X28541Y17737D01* X28563Y17752D01* X28587Y17766D01* X28611Y17777D01* X28637Y17786D01* X28645Y17790D01* X28652Y17794D01* X28659Y17800D01* X28664Y17807D01* X28668Y17815D01* X28671Y17823D01* X28672Y17832D01* X28672Y17840D01* X28670Y17849D01* X28667Y17857D01* X28662Y17864D01* X28656Y17871D01* X28649Y17876D01* X28642Y17880D01* X28633Y17883D01* X28625Y17884D01* X28616Y17884D01* X28608Y17882D01* X28573Y17870D01* X28541Y17855D01* X28509Y17837D01* X28480Y17816D01* X28465Y17804D01* Y19179D01* X28465Y19179D01* X28495Y19159D01* X28527Y19141D01* X28560Y19127D01* X28594Y19115D01* X28603Y19113D01* X28612Y19113D01* X28620Y19115D01* X28628Y19117D01* X28636Y19122D01* X28643Y19127D01* X28649Y19134D01* X28653Y19141D01* X28656Y19149D01* X28658Y19158D01* X28658Y19167D01* X28657Y19175D01* X28654Y19183D01* X28650Y19191D01* X28644Y19198D01* X28637Y19204D01* X28630Y19208D01* X28622Y19211D01* X28596Y19220D01* X28571Y19231D01* X28548Y19244D01* X28525Y19259D01* X28504Y19276D01* X28485Y19295D01* X28467Y19316D01* X28465Y19319D01* Y19680D01* X28481Y19700D01* X28500Y19719D01* X28521Y19737D01* X28543Y19752D01* X28567Y19766D01* X28591Y19777D01* X28617Y19786D01* X28625Y19790D01* X28632Y19794D01* X28639Y19800D01* X28644Y19807D01* X28648Y19815D01* X28651Y19823D01* X28652Y19832D01* X28652Y19840D01* X28650Y19849D01* X28647Y19857D01* X28642Y19864D01* X28636Y19871D01* X28629Y19876D01* X28622Y19880D01* X28613Y19883D01* X28605Y19884D01* X28596Y19884D01* X28588Y19882D01* X28553Y19870D01* X28521Y19855D01* X28489Y19837D01* X28465Y19820D01* Y21166D01* X28475Y21159D01* X28507Y21141D01* X28540Y21127D01* X28574Y21115D01* X28583Y21113D01* X28592Y21113D01* X28600Y21115D01* X28608Y21117D01* X28616Y21122D01* X28623Y21127D01* X28629Y21134D01* X28633Y21141D01* X28636Y21149D01* X28638Y21158D01* X28638Y21167D01* X28637Y21175D01* X28634Y21183D01* X28630Y21191D01* X28624Y21198D01* X28617Y21204D01* X28610Y21208D01* X28602Y21211D01* X28576Y21220D01* X28551Y21231D01* X28528Y21244D01* X28505Y21259D01* X28484Y21276D01* X28465Y21295D01* Y21704D01* X28480Y21719D01* X28501Y21737D01* X28523Y21752D01* X28547Y21766D01* X28571Y21777D01* X28597Y21786D01* X28605Y21790D01* X28612Y21794D01* X28619Y21800D01* X28624Y21807D01* X28628Y21815D01* X28631Y21823D01* X28632Y21832D01* X28632Y21840D01* X28630Y21849D01* X28627Y21857D01* X28622Y21864D01* X28616Y21871D01* X28609Y21876D01* X28602Y21880D01* X28593Y21883D01* X28585Y21884D01* X28576Y21884D01* X28568Y21882D01* X28533Y21870D01* X28501Y21855D01* X28469Y21837D01* X28465Y21834D01* Y23153D01* X28487Y23141D01* X28520Y23127D01* X28554Y23115D01* X28563Y23113D01* X28572Y23113D01* X28580Y23115D01* X28588Y23117D01* X28596Y23122D01* X28603Y23127D01* X28609Y23134D01* X28613Y23141D01* X28616Y23149D01* X28618Y23158D01* X28618Y23167D01* X28617Y23175D01* X28614Y23183D01* X28610Y23191D01* X28604Y23198D01* X28597Y23204D01* X28590Y23208D01* X28582Y23211D01* X28556Y23220D01* X28531Y23231D01* X28508Y23244D01* X28485Y23259D01* X28465Y23276D01* Y23723D01* X28481Y23737D01* X28503Y23752D01* X28527Y23766D01* X28551Y23777D01* X28577Y23786D01* X28585Y23790D01* X28592Y23794D01* X28599Y23800D01* X28604Y23807D01* X28608Y23815D01* X28611Y23823D01* X28612Y23832D01* X28612Y23840D01* X28610Y23849D01* X28607Y23857D01* X28602Y23864D01* X28596Y23871D01* X28589Y23876D01* X28582Y23880D01* X28573Y23883D01* X28565Y23884D01* X28556Y23884D01* X28548Y23882D01* X28513Y23870D01* X28481Y23855D01* X28465Y23846D01* Y25142D01* X28467Y25141D01* X28500Y25127D01* X28534Y25115D01* X28543Y25113D01* X28552Y25113D01* X28560Y25115D01* X28568Y25117D01* X28576Y25122D01* X28583Y25127D01* X28589Y25134D01* X28593Y25141D01* X28596Y25149D01* X28598Y25158D01* X28598Y25167D01* X28597Y25175D01* X28594Y25183D01* X28590Y25191D01* X28584Y25198D01* X28577Y25204D01* X28570Y25208D01* X28562Y25211D01* X28536Y25220D01* X28511Y25231D01* X28488Y25244D01* X28465Y25259D01* Y25740D01* X28483Y25752D01* X28507Y25766D01* X28531Y25777D01* X28557Y25786D01* X28565Y25790D01* X28572Y25794D01* X28579Y25800D01* X28584Y25807D01* X28588Y25815D01* X28591Y25823D01* X28592Y25832D01* X28592Y25840D01* X28590Y25849D01* X28587Y25857D01* X28582Y25864D01* X28576Y25871D01* X28569Y25876D01* X28562Y25880D01* X28553Y25883D01* X28545Y25884D01* X28536Y25884D01* X28528Y25882D01* X28493Y25870D01* X28465Y25857D01* Y27133D01* X28480Y27127D01* X28514Y27115D01* X28523Y27113D01* X28532Y27113D01* X28540Y27115D01* X28548Y27117D01* X28556Y27122D01* X28563Y27127D01* X28569Y27134D01* X28573Y27141D01* X28576Y27149D01* X28578Y27158D01* X28578Y27167D01* X28577Y27175D01* X28574Y27183D01* X28570Y27191D01* X28564Y27198D01* X28557Y27204D01* X28550Y27208D01* X28542Y27211D01* X28516Y27220D01* X28491Y27231D01* X28468Y27244D01* X28465Y27246D01* Y27754D01* X28487Y27766D01* X28511Y27777D01* X28537Y27786D01* X28545Y27790D01* X28552Y27794D01* X28559Y27800D01* X28564Y27807D01* X28568Y27815D01* X28571Y27823D01* X28572Y27832D01* X28572Y27840D01* X28570Y27849D01* X28567Y27857D01* X28562Y27864D01* X28556Y27871D01* X28549Y27876D01* X28542Y27880D01* X28533Y27883D01* X28525Y27884D01* X28516Y27884D01* X28508Y27882D01* X28473Y27870D01* X28465Y27866D01* Y29125D01* X28494Y29115D01* X28503Y29113D01* X28512Y29113D01* X28520Y29115D01* X28528Y29117D01* X28536Y29122D01* X28543Y29127D01* X28549Y29134D01* X28553Y29141D01* X28556Y29149D01* X28558Y29158D01* X28558Y29167D01* X28557Y29175D01* X28554Y29183D01* X28550Y29191D01* X28544Y29198D01* X28537Y29204D01* X28530Y29208D01* X28522Y29211D01* X28496Y29220D01* X28471Y29231D01* X28465Y29234D01* Y29765D01* X28467Y29766D01* X28491Y29777D01* X28517Y29786D01* X28525Y29790D01* X28532Y29794D01* X28539Y29800D01* X28544Y29807D01* X28548Y29815D01* X28551Y29823D01* X28552Y29832D01* X28552Y29840D01* X28550Y29849D01* X28547Y29857D01* X28542Y29864D01* X28536Y29871D01* X28529Y29876D01* X28522Y29880D01* X28513Y29883D01* X28505Y29884D01* X28496Y29884D01* X28488Y29882D01* X28465Y29874D01* Y31118D01* X28474Y31115D01* X28483Y31113D01* X28492Y31113D01* X28500Y31115D01* X28508Y31117D01* X28516Y31122D01* X28523Y31127D01* X28529Y31134D01* X28533Y31141D01* X28536Y31149D01* X28538Y31158D01* X28538Y31167D01* X28537Y31175D01* X28534Y31183D01* X28530Y31191D01* X28524Y31198D01* X28517Y31204D01* X28510Y31208D01* X28502Y31211D01* X28476Y31220D01* X28465Y31225D01* Y31775D01* X28471Y31777D01* X28497Y31786D01* X28505Y31790D01* X28512Y31794D01* X28519Y31800D01* X28524Y31807D01* X28528Y31815D01* X28531Y31823D01* X28532Y31832D01* X28532Y31840D01* X28530Y31849D01* X28527Y31857D01* X28522Y31864D01* X28516Y31871D01* X28509Y31876D01* X28502Y31880D01* X28493Y31883D01* X28485Y31884D01* X28476Y31884D01* X28468Y31882D01* X28465Y31881D01* Y33113D01* X28472Y33113D01* X28480Y33115D01* X28488Y33117D01* X28496Y33122D01* X28503Y33127D01* X28509Y33134D01* X28513Y33141D01* X28516Y33149D01* X28518Y33158D01* X28518Y33167D01* X28517Y33175D01* X28514Y33183D01* X28510Y33191D01* X28504Y33198D01* X28497Y33204D01* X28490Y33208D01* X28482Y33211D01* X28465Y33217D01* Y33782D01* X28477Y33786D01* X28485Y33790D01* X28492Y33794D01* X28499Y33800D01* X28504Y33807D01* X28508Y33815D01* X28511Y33823D01* X28512Y33832D01* X28512Y33840D01* X28510Y33849D01* X28507Y33857D01* X28502Y33864D01* X28496Y33871D01* X28489Y33876D01* X28482Y33880D01* X28473Y33883D01* X28465Y33884D01* Y35116D01* X28468Y35117D01* X28476Y35122D01* X28483Y35127D01* X28489Y35134D01* X28493Y35141D01* X28496Y35149D01* X28498Y35158D01* X28498Y35167D01* X28497Y35175D01* X28494Y35183D01* X28490Y35191D01* X28484Y35198D01* X28477Y35204D01* X28470Y35208D01* X28465Y35210D01* Y35790D01* X28472Y35794D01* X28479Y35800D01* X28484Y35807D01* X28488Y35815D01* X28491Y35823D01* X28492Y35832D01* X28492Y35840D01* X28490Y35849D01* X28487Y35857D01* X28482Y35864D01* X28476Y35871D01* X28469Y35876D01* X28465Y35878D01* Y37130D01* X28469Y37134D01* X28473Y37141D01* X28476Y37149D01* X28478Y37158D01* X28478Y37167D01* X28477Y37175D01* X28474Y37183D01* X28470Y37191D01* X28465Y37197D01* Y37809D01* X28468Y37815D01* X28471Y37823D01* X28472Y37832D01* X28472Y37840D01* X28470Y37849D01* X28467Y37857D01* X28465Y37859D01* Y40000D01* G37* G36* Y11549D02*X28468Y11550D01* X28476Y11555D01* X28483Y11560D01* X28489Y11567D01* X28493Y11574D01* X28496Y11582D01* X28505Y11608D01* X28516Y11633D01* X28529Y11657D01* X28544Y11679D01* X28561Y11700D01* X28580Y11719D01* X28601Y11737D01* X28623Y11752D01* X28647Y11766D01* X28671Y11777D01* X28697Y11786D01* X28705Y11790D01* X28712Y11794D01* X28719Y11800D01* X28724Y11807D01* Y11198D01* X28717Y11204D01* X28710Y11208D01* X28702Y11211D01* X28676Y11220D01* X28651Y11231D01* X28628Y11244D01* X28605Y11259D01* X28584Y11276D01* X28565Y11295D01* X28547Y11316D01* X28532Y11338D01* X28518Y11362D01* X28507Y11386D01* X28498Y11412D01* X28494Y11420D01* X28490Y11427D01* X28484Y11434D01* X28477Y11439D01* X28469Y11443D01* X28465Y11445D01* Y11549D01* G37* G36* Y11259D02*X28468Y11255D01* X28492Y11227D01* X28517Y11202D01* X28545Y11179D01* X28575Y11159D01* X28607Y11141D01* X28640Y11127D01* X28674Y11115D01* X28683Y11113D01* X28692Y11113D01* X28700Y11115D01* X28708Y11117D01* X28716Y11122D01* X28723Y11127D01* X28724Y11128D01* Y9879D01* X28722Y9880D01* X28713Y9883D01* X28705Y9884D01* X28696Y9884D01* X28688Y9882D01* X28653Y9870D01* X28621Y9855D01* X28589Y9837D01* X28560Y9816D01* X28532Y9793D01* X28507Y9767D01* X28484Y9739D01* X28465Y9711D01* Y11259D01* G37* G36* Y9546D02*X28472Y9546D01* X28480Y9547D01* X28488Y9550D01* X28496Y9555D01* X28503Y9560D01* X28509Y9567D01* X28513Y9574D01* X28516Y9582D01* X28525Y9608D01* X28536Y9633D01* X28549Y9657D01* X28564Y9679D01* X28581Y9700D01* X28600Y9719D01* X28621Y9737D01* X28643Y9752D01* X28667Y9766D01* X28691Y9777D01* X28717Y9786D01* X28724Y9789D01* Y9210D01* X28722Y9211D01* X28696Y9220D01* X28671Y9231D01* X28648Y9244D01* X28625Y9259D01* X28604Y9276D01* X28585Y9295D01* X28567Y9316D01* X28552Y9338D01* X28538Y9362D01* X28527Y9386D01* X28518Y9412D01* X28514Y9420D01* X28510Y9427D01* X28504Y9434D01* X28497Y9439D01* X28489Y9443D01* X28481Y9446D01* X28472Y9447D01* X28465Y9447D01* Y9546D01* G37* G36* Y9288D02*X28467Y9284D01* X28488Y9255D01* X28512Y9227D01* X28537Y9202D01* X28565Y9179D01* X28595Y9159D01* X28627Y9141D01* X28660Y9127D01* X28694Y9115D01* X28703Y9113D01* X28712Y9113D01* X28720Y9115D01* X28724Y9116D01* Y7884D01* X28716Y7884D01* X28708Y7882D01* X28673Y7870D01* X28641Y7855D01* X28609Y7837D01* X28580Y7816D01* X28552Y7793D01* X28527Y7767D01* X28504Y7739D01* X28484Y7709D01* X28466Y7677D01* X28465Y7675D01* Y9288D01* G37* G36* Y7552D02*X28466Y7551D01* X28474Y7548D01* X28483Y7546D01* X28492Y7546D01* X28500Y7547D01* X28508Y7550D01* X28516Y7555D01* X28523Y7560D01* X28529Y7567D01* X28533Y7574D01* X28536Y7582D01* X28545Y7608D01* X28556Y7633D01* X28569Y7657D01* X28584Y7679D01* X28601Y7700D01* X28620Y7719D01* X28641Y7737D01* X28663Y7752D01* X28687Y7766D01* X28711Y7777D01* X28724Y7782D01* Y7217D01* X28716Y7220D01* X28691Y7231D01* X28668Y7244D01* X28645Y7259D01* X28624Y7276D01* X28605Y7295D01* X28587Y7316D01* X28572Y7338D01* X28558Y7362D01* X28547Y7386D01* X28538Y7412D01* X28534Y7420D01* X28530Y7427D01* X28524Y7434D01* X28517Y7439D01* X28509Y7443D01* X28501Y7446D01* X28492Y7447D01* X28484Y7447D01* X28475Y7445D01* X28467Y7442D01* X28465Y7441D01* Y7552D01* G37* G36* Y7325D02*X28469Y7316D01* X28487Y7284D01* X28508Y7255D01* X28532Y7227D01* X28557Y7202D01* X28585Y7179D01* X28615Y7159D01* X28647Y7141D01* X28680Y7127D01* X28714Y7115D01* X28723Y7113D01* X28724D01* Y5881D01* X28693Y5870D01* X28661Y5855D01* X28629Y5837D01* X28600Y5816D01* X28572Y5793D01* X28547Y5767D01* X28524Y5739D01* X28504Y5709D01* X28486Y5677D01* X28472Y5644D01* X28465Y5625D01* Y7325D01* G37* G36* Y5571D02*X28467Y5568D01* X28472Y5561D01* X28479Y5556D01* X28486Y5551D01* X28494Y5548D01* X28503Y5546D01* X28512Y5546D01* X28520Y5547D01* X28528Y5550D01* X28536Y5555D01* X28543Y5560D01* X28549Y5567D01* X28553Y5574D01* X28556Y5582D01* X28565Y5608D01* X28576Y5633D01* X28589Y5657D01* X28604Y5679D01* X28621Y5700D01* X28640Y5719D01* X28661Y5737D01* X28683Y5752D01* X28707Y5766D01* X28724Y5774D01* Y5225D01* X28711Y5231D01* X28688Y5244D01* X28665Y5259D01* X28644Y5276D01* X28625Y5295D01* X28607Y5316D01* X28592Y5338D01* X28578Y5362D01* X28567Y5386D01* X28558Y5412D01* X28554Y5420D01* X28550Y5427D01* X28544Y5434D01* X28537Y5439D01* X28529Y5443D01* X28521Y5446D01* X28512Y5447D01* X28504Y5447D01* X28495Y5445D01* X28487Y5442D01* X28480Y5437D01* X28473Y5431D01* X28468Y5424D01* X28465Y5419D01* Y5571D01* G37* G36* Y5374D02*X28474Y5349D01* X28489Y5316D01* X28507Y5284D01* X28528Y5255D01* X28552Y5227D01* X28577Y5202D01* X28605Y5179D01* X28635Y5159D01* X28667Y5141D01* X28700Y5127D01* X28724Y5119D01* Y3874D01* X28713Y3870D01* X28681Y3855D01* X28649Y3837D01* X28620Y3816D01* X28592Y3793D01* X28567Y3767D01* X28544Y3739D01* X28524Y3709D01* X28506Y3677D01* X28492Y3644D01* X28480Y3610D01* X28478Y3601D01* X28478Y3593D01* X28479Y3584D01* X28482Y3576D01* X28487Y3568D01* X28492Y3561D01* X28499Y3556D01* X28506Y3551D01* X28514Y3548D01* X28523Y3546D01* X28532Y3546D01* X28540Y3547D01* X28548Y3550D01* X28556Y3555D01* X28563Y3560D01* X28569Y3567D01* X28573Y3574D01* X28576Y3582D01* X28585Y3608D01* X28596Y3633D01* X28609Y3657D01* X28624Y3679D01* X28641Y3700D01* X28660Y3719D01* X28681Y3737D01* X28703Y3752D01* X28724Y3764D01* Y3235D01* X28708Y3244D01* X28685Y3259D01* X28664Y3276D01* X28645Y3295D01* X28627Y3316D01* X28612Y3338D01* X28598Y3362D01* X28587Y3386D01* X28578Y3412D01* X28574Y3420D01* X28570Y3427D01* X28564Y3434D01* X28557Y3439D01* X28549Y3443D01* X28541Y3446D01* X28532Y3447D01* X28524Y3447D01* X28515Y3445D01* X28507Y3442D01* X28500Y3437D01* X28493Y3431D01* X28488Y3424D01* X28484Y3417D01* X28481Y3409D01* X28480Y3400D01* X28480Y3391D01* X28482Y3383D01* X28494Y3349D01* X28509Y3316D01* X28527Y3284D01* X28548Y3255D01* X28572Y3227D01* X28597Y3202D01* X28625Y3179D01* X28655Y3159D01* X28687Y3141D01* X28720Y3127D01* X28724Y3125D01* Y1866D01* X28701Y1855D01* X28669Y1837D01* X28640Y1816D01* X28612Y1793D01* X28587Y1767D01* X28564Y1739D01* X28544Y1709D01* X28526Y1677D01* X28512Y1644D01* X28500Y1610D01* X28498Y1601D01* X28498Y1593D01* X28499Y1584D01* X28502Y1576D01* X28507Y1568D01* X28512Y1561D01* X28519Y1556D01* X28526Y1551D01* X28534Y1548D01* X28543Y1546D01* X28552Y1546D01* X28560Y1547D01* X28568Y1550D01* X28576Y1555D01* X28583Y1560D01* X28589Y1567D01* X28593Y1574D01* X28596Y1582D01* X28605Y1608D01* X28616Y1633D01* X28629Y1657D01* X28644Y1679D01* X28661Y1700D01* X28680Y1719D01* X28701Y1737D01* X28723Y1752D01* X28724Y1753D01* Y1246D01* X28705Y1259D01* X28684Y1276D01* X28665Y1295D01* X28647Y1316D01* X28632Y1338D01* X28618Y1362D01* X28607Y1386D01* X28598Y1412D01* X28594Y1420D01* X28590Y1427D01* X28584Y1434D01* X28577Y1439D01* X28569Y1443D01* X28561Y1446D01* X28552Y1447D01* X28544Y1447D01* X28535Y1445D01* X28527Y1442D01* X28520Y1437D01* X28513Y1431D01* X28508Y1424D01* X28504Y1417D01* X28501Y1409D01* X28500Y1400D01* X28500Y1391D01* X28502Y1383D01* X28514Y1349D01* X28529Y1316D01* X28547Y1284D01* X28568Y1255D01* X28592Y1227D01* X28617Y1202D01* X28645Y1179D01* X28675Y1159D01* X28707Y1141D01* X28724Y1134D01* Y0D01* X28465D01* Y5374D01* G37* G36* X28724Y40000D02*X28904D01* Y37625D01* X28895Y37651D01* X28880Y37683D01* X28862Y37715D01* X28841Y37744D01* X28817Y37772D01* X28792Y37797D01* X28764Y37820D01* X28734Y37840D01* X28724Y37846D01* Y39165D01* X28749Y39183D01* X28777Y39207D01* X28802Y39232D01* X28825Y39260D01* X28845Y39290D01* X28863Y39322D01* X28877Y39355D01* X28889Y39389D01* X28891Y39398D01* X28891Y39407D01* X28890Y39415D01* X28887Y39423D01* X28882Y39431D01* X28877Y39438D01* X28870Y39444D01* X28863Y39448D01* X28855Y39451D01* X28846Y39453D01* X28837Y39453D01* X28829Y39452D01* X28821Y39449D01* X28813Y39445D01* X28806Y39439D01* X28800Y39433D01* X28796Y39425D01* X28793Y39417D01* X28784Y39391D01* X28773Y39366D01* X28760Y39343D01* X28745Y39320D01* X28728Y39299D01* X28724Y39295D01* Y39704D01* X28724Y39704D01* X28742Y39683D01* X28757Y39661D01* X28771Y39637D01* X28782Y39613D01* X28791Y39587D01* X28795Y39579D01* X28799Y39572D01* X28805Y39565D01* X28812Y39560D01* X28820Y39556D01* X28828Y39553D01* X28837Y39552D01* X28845Y39552D01* X28854Y39554D01* X28862Y39557D01* X28869Y39562D01* X28876Y39568D01* X28881Y39575D01* X28885Y39582D01* X28888Y39591D01* X28889Y39599D01* X28889Y39608D01* X28887Y39617D01* X28875Y39651D01* X28860Y39683D01* X28842Y39715D01* X28821Y39744D01* X28797Y39772D01* X28772Y39797D01* X28744Y39820D01* X28724Y39834D01* Y40000D01* G37* G36* X28904Y0D02*X28724D01* Y1134D01* X28740Y1127D01* X28774Y1115D01* X28783Y1113D01* X28792Y1113D01* X28800Y1115D01* X28808Y1117D01* X28816Y1122D01* X28823Y1127D01* X28829Y1134D01* X28833Y1141D01* X28836Y1149D01* X28838Y1158D01* X28838Y1167D01* X28837Y1175D01* X28834Y1183D01* X28830Y1191D01* X28824Y1198D01* X28817Y1204D01* X28810Y1208D01* X28802Y1211D01* X28776Y1220D01* X28751Y1231D01* X28728Y1244D01* X28724Y1246D01* Y1753D01* X28747Y1766D01* X28771Y1777D01* X28797Y1786D01* X28805Y1790D01* X28812Y1794D01* X28819Y1800D01* X28824Y1807D01* X28828Y1815D01* X28831Y1823D01* X28832Y1832D01* X28832Y1840D01* X28830Y1849D01* X28827Y1857D01* X28822Y1864D01* X28816Y1871D01* X28809Y1876D01* X28802Y1880D01* X28793Y1883D01* X28785Y1884D01* X28776Y1884D01* X28768Y1882D01* X28733Y1870D01* X28724Y1866D01* Y3125D01* X28754Y3115D01* X28763Y3113D01* X28772Y3113D01* X28780Y3115D01* X28788Y3117D01* X28796Y3122D01* X28803Y3127D01* X28809Y3134D01* X28813Y3141D01* X28816Y3149D01* X28818Y3158D01* X28818Y3167D01* X28817Y3175D01* X28814Y3183D01* X28810Y3191D01* X28804Y3198D01* X28797Y3204D01* X28790Y3208D01* X28782Y3211D01* X28756Y3220D01* X28731Y3231D01* X28724Y3235D01* Y3764D01* X28727Y3766D01* X28751Y3777D01* X28777Y3786D01* X28785Y3790D01* X28792Y3794D01* X28799Y3800D01* X28804Y3807D01* X28808Y3815D01* X28811Y3823D01* X28812Y3832D01* X28812Y3840D01* X28810Y3849D01* X28807Y3857D01* X28802Y3864D01* X28796Y3871D01* X28789Y3876D01* X28782Y3880D01* X28773Y3883D01* X28765Y3884D01* X28756Y3884D01* X28748Y3882D01* X28724Y3874D01* Y5119D01* X28734Y5115D01* X28743Y5113D01* X28752Y5113D01* X28760Y5115D01* X28768Y5117D01* X28776Y5122D01* X28783Y5127D01* X28789Y5134D01* X28793Y5141D01* X28796Y5149D01* X28798Y5158D01* X28798Y5167D01* X28797Y5175D01* X28794Y5183D01* X28790Y5191D01* X28784Y5198D01* X28777Y5204D01* X28770Y5208D01* X28762Y5211D01* X28736Y5220D01* X28724Y5225D01* Y5774D01* X28731Y5777D01* X28757Y5786D01* X28765Y5790D01* X28772Y5794D01* X28779Y5800D01* X28784Y5807D01* X28788Y5815D01* X28791Y5823D01* X28792Y5832D01* X28792Y5840D01* X28790Y5849D01* X28787Y5857D01* X28782Y5864D01* X28776Y5871D01* X28769Y5876D01* X28762Y5880D01* X28753Y5883D01* X28745Y5884D01* X28736Y5884D01* X28728Y5882D01* X28724Y5881D01* Y7113D01* X28732Y7113D01* X28740Y7115D01* X28748Y7117D01* X28756Y7122D01* X28763Y7127D01* X28769Y7134D01* X28773Y7141D01* X28776Y7149D01* X28778Y7158D01* X28778Y7167D01* X28777Y7175D01* X28774Y7183D01* X28770Y7191D01* X28764Y7198D01* X28757Y7204D01* X28750Y7208D01* X28742Y7211D01* X28724Y7217D01* Y7782D01* X28737Y7786D01* X28745Y7790D01* X28752Y7794D01* X28759Y7800D01* X28764Y7807D01* X28768Y7815D01* X28771Y7823D01* X28772Y7832D01* X28772Y7840D01* X28770Y7849D01* X28767Y7857D01* X28762Y7864D01* X28756Y7871D01* X28749Y7876D01* X28742Y7880D01* X28733Y7883D01* X28725Y7884D01* X28724D01* Y9116D01* X28728Y9117D01* X28736Y9122D01* X28743Y9127D01* X28749Y9134D01* X28753Y9141D01* X28756Y9149D01* X28758Y9158D01* X28758Y9167D01* X28757Y9175D01* X28754Y9183D01* X28750Y9191D01* X28744Y9198D01* X28737Y9204D01* X28730Y9208D01* X28724Y9210D01* Y9789D01* X28725Y9790D01* X28732Y9794D01* X28739Y9800D01* X28744Y9807D01* X28748Y9815D01* X28751Y9823D01* X28752Y9832D01* X28752Y9840D01* X28750Y9849D01* X28747Y9857D01* X28742Y9864D01* X28736Y9871D01* X28729Y9876D01* X28724Y9879D01* Y11128D01* X28729Y11134D01* X28733Y11141D01* X28736Y11149D01* X28738Y11158D01* X28738Y11167D01* X28737Y11175D01* X28734Y11183D01* X28730Y11191D01* X28724Y11198D01* X28724Y11198D01* Y11807D01* X28724Y11807D01* X28728Y11815D01* X28731Y11823D01* X28732Y11832D01* X28732Y11840D01* X28730Y11849D01* X28727Y11857D01* X28724Y11861D01* Y23140D01* X28727Y23135D01* X28733Y23128D01* X28740Y23123D01* X28747Y23119D01* X28756Y23116D01* X28764Y23115D01* X28773Y23115D01* X28781Y23117D01* X28816Y23129D01* X28848Y23144D01* X28880Y23162D01* X28904Y23180D01* Y21834D01* X28894Y21840D01* X28862Y21858D01* X28829Y21873D01* X28795Y21884D01* X28786Y21886D01* X28777Y21886D01* X28769Y21885D01* X28761Y21882D01* X28753Y21878D01* X28746Y21872D01* X28740Y21865D01* X28736Y21858D01* X28733Y21850D01* X28731Y21841D01* X28731Y21833D01* X28732Y21824D01* X28735Y21816D01* X28739Y21808D01* X28745Y21801D01* X28752Y21796D01* X28759Y21791D01* X28767Y21788D01* X28793Y21779D01* X28818Y21768D01* X28841Y21755D01* X28864Y21740D01* X28885Y21723D01* X28904Y21704D01* Y21295D01* X28889Y21280D01* X28868Y21262D01* X28846Y21247D01* X28822Y21233D01* X28798Y21222D01* X28772Y21213D01* X28764Y21209D01* X28757Y21205D01* X28750Y21199D01* X28745Y21192D01* X28741Y21184D01* X28738Y21176D01* X28737Y21167D01* X28737Y21159D01* X28739Y21150D01* X28742Y21142D01* X28747Y21135D01* X28753Y21128D01* X28760Y21123D01* X28767Y21119D01* X28776Y21116D01* X28784Y21115D01* X28793Y21115D01* X28801Y21117D01* X28836Y21129D01* X28868Y21144D01* X28900Y21162D01* X28904Y21165D01* Y19846D01* X28882Y19858D01* X28849Y19873D01* X28815Y19884D01* X28806Y19886D01* X28797Y19886D01* X28789Y19885D01* X28781Y19882D01* X28773Y19878D01* X28766Y19872D01* X28760Y19865D01* X28756Y19858D01* X28753Y19850D01* X28751Y19841D01* X28751Y19833D01* X28752Y19824D01* X28755Y19816D01* X28759Y19808D01* X28765Y19801D01* X28772Y19796D01* X28779Y19791D01* X28787Y19788D01* X28813Y19779D01* X28838Y19768D01* X28861Y19755D01* X28884Y19740D01* X28904Y19724D01* Y19276D01* X28888Y19262D01* X28866Y19247D01* X28842Y19233D01* X28818Y19222D01* X28792Y19213D01* X28784Y19209D01* X28777Y19205D01* X28770Y19199D01* X28765Y19192D01* X28761Y19184D01* X28758Y19176D01* X28757Y19167D01* X28757Y19159D01* X28759Y19150D01* X28762Y19142D01* X28767Y19135D01* X28773Y19128D01* X28780Y19123D01* X28787Y19119D01* X28796Y19116D01* X28804Y19115D01* X28813Y19115D01* X28821Y19117D01* X28856Y19129D01* X28888Y19144D01* X28904Y19153D01* Y17857D01* X28902Y17858D01* X28869Y17873D01* X28835Y17884D01* X28826Y17886D01* X28817Y17886D01* X28809Y17885D01* X28801Y17882D01* X28793Y17878D01* X28786Y17872D01* X28780Y17865D01* X28776Y17858D01* X28773Y17850D01* X28771Y17841D01* X28771Y17833D01* X28772Y17824D01* X28775Y17816D01* X28779Y17808D01* X28785Y17801D01* X28792Y17796D01* X28799Y17791D01* X28807Y17788D01* X28833Y17779D01* X28858Y17768D01* X28881Y17755D01* X28904Y17740D01* Y17259D01* X28886Y17247D01* X28862Y17233D01* X28838Y17222D01* X28812Y17213D01* X28804Y17209D01* X28797Y17205D01* X28790Y17199D01* X28785Y17192D01* X28781Y17184D01* X28778Y17176D01* X28777Y17167D01* X28777Y17159D01* X28779Y17150D01* X28782Y17142D01* X28787Y17135D01* X28793Y17128D01* X28800Y17123D01* X28807Y17119D01* X28816Y17116D01* X28824Y17115D01* X28833Y17115D01* X28841Y17117D01* X28876Y17129D01* X28904Y17142D01* Y15866D01* X28889Y15873D01* X28855Y15884D01* X28846Y15886D01* X28837Y15886D01* X28829Y15885D01* X28821Y15882D01* X28813Y15878D01* X28806Y15872D01* X28800Y15865D01* X28796Y15858D01* X28793Y15850D01* X28791Y15841D01* X28791Y15833D01* X28792Y15824D01* X28795Y15816D01* X28799Y15808D01* X28805Y15801D01* X28812Y15796D01* X28819Y15791D01* X28827Y15788D01* X28853Y15779D01* X28878Y15768D01* X28901Y15755D01* X28904Y15754D01* Y15246D01* X28882Y15233D01* X28858Y15222D01* X28832Y15213D01* X28824Y15209D01* X28817Y15205D01* X28810Y15199D01* X28805Y15192D01* X28801Y15184D01* X28798Y15176D01* X28797Y15167D01* X28797Y15159D01* X28799Y15150D01* X28802Y15142D01* X28807Y15135D01* X28813Y15128D01* X28820Y15123D01* X28827Y15119D01* X28836Y15116D01* X28844Y15115D01* X28853Y15115D01* X28861Y15117D01* X28896Y15129D01* X28904Y15133D01* Y13874D01* X28875Y13884D01* X28866Y13886D01* X28857Y13886D01* X28849Y13885D01* X28841Y13882D01* X28833Y13878D01* X28826Y13872D01* X28820Y13865D01* X28816Y13858D01* X28813Y13850D01* X28811Y13841D01* X28811Y13833D01* X28812Y13824D01* X28815Y13816D01* X28819Y13808D01* X28825Y13801D01* X28832Y13796D01* X28839Y13791D01* X28847Y13788D01* X28873Y13779D01* X28898Y13768D01* X28904Y13765D01* Y13234D01* X28902Y13233D01* X28878Y13222D01* X28852Y13213D01* X28844Y13209D01* X28837Y13205D01* X28830Y13199D01* X28825Y13192D01* X28821Y13184D01* X28818Y13176D01* X28817Y13167D01* X28817Y13159D01* X28819Y13150D01* X28822Y13142D01* X28827Y13135D01* X28833Y13128D01* X28840Y13123D01* X28847Y13119D01* X28856Y13116D01* X28864Y13115D01* X28873Y13115D01* X28881Y13117D01* X28904Y13125D01* Y11881D01* X28895Y11884D01* X28886Y11886D01* X28877Y11886D01* X28869Y11885D01* X28861Y11882D01* X28853Y11878D01* X28846Y11872D01* X28840Y11865D01* X28836Y11858D01* X28833Y11850D01* X28831Y11841D01* X28831Y11833D01* X28832Y11824D01* X28835Y11816D01* X28839Y11808D01* X28845Y11801D01* X28852Y11796D01* X28859Y11791D01* X28867Y11788D01* X28893Y11779D01* X28904Y11774D01* Y11225D01* X28898Y11222D01* X28872Y11213D01* X28864Y11209D01* X28857Y11205D01* X28850Y11199D01* X28845Y11192D01* X28841Y11184D01* X28838Y11176D01* X28837Y11167D01* X28837Y11159D01* X28839Y11150D01* X28842Y11142D01* X28847Y11135D01* X28853Y11128D01* X28860Y11123D01* X28867Y11119D01* X28876Y11116D01* X28884Y11115D01* X28893Y11115D01* X28901Y11117D01* X28904Y11118D01* Y9886D01* X28897Y9886D01* X28889Y9885D01* X28881Y9882D01* X28873Y9878D01* X28866Y9872D01* X28860Y9865D01* X28856Y9858D01* X28853Y9850D01* X28851Y9841D01* X28851Y9833D01* X28852Y9824D01* X28855Y9816D01* X28859Y9808D01* X28865Y9801D01* X28872Y9796D01* X28879Y9791D01* X28887Y9788D01* X28904Y9782D01* Y9217D01* X28892Y9213D01* X28884Y9209D01* X28877Y9205D01* X28870Y9199D01* X28865Y9192D01* X28861Y9184D01* X28858Y9176D01* X28857Y9167D01* X28857Y9159D01* X28859Y9150D01* X28862Y9142D01* X28867Y9135D01* X28873Y9128D01* X28880Y9123D01* X28887Y9119D01* X28896Y9116D01* X28904Y9115D01* Y7883D01* X28901Y7882D01* X28893Y7878D01* X28886Y7872D01* X28880Y7865D01* X28876Y7858D01* X28873Y7850D01* X28871Y7841D01* X28871Y7833D01* X28872Y7824D01* X28875Y7816D01* X28879Y7808D01* X28885Y7801D01* X28892Y7796D01* X28899Y7791D01* X28904Y7789D01* Y7209D01* X28897Y7205D01* X28890Y7199D01* X28885Y7192D01* X28881Y7184D01* X28878Y7176D01* X28877Y7167D01* X28877Y7159D01* X28879Y7150D01* X28882Y7142D01* X28887Y7135D01* X28893Y7128D01* X28900Y7123D01* X28904Y7121D01* Y5870D01* X28900Y5865D01* X28896Y5858D01* X28893Y5850D01* X28891Y5841D01* X28891Y5833D01* X28892Y5824D01* X28895Y5816D01* X28899Y5808D01* X28904Y5802D01* Y5190D01* X28901Y5184D01* X28898Y5176D01* X28897Y5167D01* X28897Y5159D01* X28899Y5150D01* X28902Y5142D01* X28904Y5140D01* Y0D01* G37* G36* Y23319D02*X28888Y23299D01* X28869Y23280D01* X28848Y23262D01* X28826Y23247D01* X28802Y23233D01* X28778Y23222D01* X28752Y23213D01* X28744Y23209D01* X28737Y23205D01* X28730Y23199D01* X28725Y23192D01* X28724Y23190D01* Y23802D01* X28725Y23801D01* X28732Y23796D01* X28739Y23791D01* X28747Y23788D01* X28773Y23779D01* X28798Y23768D01* X28821Y23755D01* X28844Y23740D01* X28865Y23723D01* X28884Y23704D01* X28902Y23683D01* X28904Y23680D01* Y23319D01* G37* G36* Y23820D02*X28904Y23820D01* X28874Y23840D01* X28842Y23858D01* X28809Y23873D01* X28775Y23884D01* X28766Y23886D01* X28757Y23886D01* X28749Y23885D01* X28741Y23882D01* X28733Y23878D01* X28726Y23872D01* X28724Y23870D01* Y25121D01* X28727Y25119D01* X28736Y25116D01* X28744Y25115D01* X28753Y25115D01* X28761Y25117D01* X28796Y25129D01* X28828Y25144D01* X28860Y25162D01* X28889Y25183D01* X28904Y25196D01* Y23820D01* G37* G36* Y25350D02*X28900Y25343D01* X28885Y25320D01* X28868Y25299D01* X28849Y25280D01* X28828Y25262D01* X28806Y25247D01* X28782Y25233D01* X28758Y25222D01* X28732Y25213D01* X28724Y25209D01* X28724Y25209D01* Y25789D01* X28727Y25788D01* X28753Y25779D01* X28778Y25768D01* X28801Y25755D01* X28824Y25740D01* X28845Y25723D01* X28864Y25704D01* X28882Y25683D01* X28897Y25661D01* X28904Y25650D01* Y25350D01* G37* G36* Y25804D02*X28884Y25820D01* X28854Y25840D01* X28822Y25858D01* X28789Y25873D01* X28755Y25884D01* X28746Y25886D01* X28737Y25886D01* X28729Y25885D01* X28724Y25883D01* Y27115D01* X28724D01* X28733Y27115D01* X28741Y27117D01* X28776Y27129D01* X28808Y27144D01* X28840Y27162D01* X28869Y27183D01* X28897Y27207D01* X28904Y27214D01* Y25804D01* G37* G36* Y27391D02*X28893Y27366D01* X28880Y27343D01* X28865Y27320D01* X28848Y27299D01* X28829Y27280D01* X28808Y27262D01* X28786Y27247D01* X28762Y27233D01* X28738Y27222D01* X28724Y27217D01* Y27782D01* X28733Y27779D01* X28758Y27768D01* X28781Y27755D01* X28804Y27740D01* X28825Y27723D01* X28844Y27704D01* X28862Y27683D01* X28877Y27661D01* X28891Y27637D01* X28902Y27613D01* X28904Y27608D01* Y27391D01* G37* G36* Y27785D02*X28892Y27797D01* X28864Y27820D01* X28834Y27840D01* X28802Y27858D01* X28769Y27873D01* X28735Y27884D01* X28726Y27886D01* X28724D01* Y29118D01* X28756Y29129D01* X28788Y29144D01* X28820Y29162D01* X28849Y29183D01* X28877Y29207D01* X28902Y29232D01* X28904Y29235D01* Y27785D01* G37* G36* Y29437D02*X28900Y29433D01* X28896Y29425D01* X28893Y29417D01* X28884Y29391D01* X28873Y29366D01* X28860Y29343D01* X28845Y29320D01* X28828Y29299D01* X28809Y29280D01* X28788Y29262D01* X28766Y29247D01* X28742Y29233D01* X28724Y29225D01* Y29774D01* X28738Y29768D01* X28761Y29755D01* X28784Y29740D01* X28805Y29723D01* X28824Y29704D01* X28842Y29683D01* X28857Y29661D01* X28871Y29637D01* X28882Y29613D01* X28891Y29587D01* X28895Y29579D01* X28899Y29572D01* X28904Y29567D01* Y29437D01* G37* G36* Y29764D02*X28897Y29772D01* X28872Y29797D01* X28844Y29820D01* X28814Y29840D01* X28782Y29858D01* X28749Y29873D01* X28724Y29881D01* Y31125D01* X28736Y31129D01* X28768Y31144D01* X28800Y31162D01* X28829Y31183D01* X28857Y31207D01* X28882Y31232D01* X28904Y31259D01* Y29764D01* G37* G36* Y31450D02*X28901Y31449D01* X28893Y31445D01* X28886Y31439D01* X28880Y31433D01* X28876Y31425D01* X28873Y31417D01* X28864Y31391D01* X28853Y31366D01* X28840Y31343D01* X28825Y31320D01* X28808Y31299D01* X28789Y31280D01* X28768Y31262D01* X28746Y31247D01* X28724Y31234D01* Y31765D01* X28741Y31755D01* X28764Y31740D01* X28785Y31723D01* X28804Y31704D01* X28822Y31683D01* X28837Y31661D01* X28851Y31637D01* X28862Y31613D01* X28871Y31587D01* X28875Y31579D01* X28879Y31572D01* X28885Y31565D01* X28892Y31560D01* X28900Y31556D01* X28904Y31555D01* Y31450D01* G37* G36* Y31740D02*X28901Y31744D01* X28877Y31772D01* X28852Y31797D01* X28824Y31820D01* X28794Y31840D01* X28762Y31858D01* X28729Y31873D01* X28724Y31874D01* Y33133D01* X28748Y33144D01* X28780Y33162D01* X28809Y33183D01* X28837Y33207D01* X28862Y33232D01* X28885Y33260D01* X28904Y33288D01* Y31740D01* G37* G36* Y33453D02*X28897Y33453D01* X28889Y33452D01* X28881Y33449D01* X28873Y33445D01* X28866Y33439D01* X28860Y33433D01* X28856Y33425D01* X28853Y33417D01* X28844Y33391D01* X28833Y33366D01* X28820Y33343D01* X28805Y33320D01* X28788Y33299D01* X28769Y33280D01* X28748Y33262D01* X28726Y33247D01* X28724Y33246D01* Y33754D01* X28744Y33740D01* X28765Y33723D01* X28784Y33704D01* X28802Y33683D01* X28817Y33661D01* X28831Y33637D01* X28842Y33613D01* X28851Y33587D01* X28855Y33579D01* X28859Y33572D01* X28865Y33565D01* X28872Y33560D01* X28880Y33556D01* X28888Y33553D01* X28897Y33552D01* X28904Y33552D01* Y33453D01* G37* G36* Y33711D02*X28902Y33715D01* X28881Y33744D01* X28857Y33772D01* X28832Y33797D01* X28804Y33820D01* X28774Y33840D01* X28742Y33858D01* X28724Y33866D01* Y35142D01* X28728Y35144D01* X28760Y35162D01* X28789Y35183D01* X28817Y35207D01* X28842Y35232D01* X28865Y35260D01* X28885Y35290D01* X28903Y35322D01* X28904Y35324D01* Y33711D01* G37* G36* Y35447D02*X28903Y35448D01* X28895Y35451D01* X28886Y35453D01* X28877Y35453D01* X28869Y35452D01* X28861Y35449D01* X28853Y35445D01* X28846Y35439D01* X28840Y35433D01* X28836Y35425D01* X28833Y35417D01* X28824Y35391D01* X28813Y35366D01* X28800Y35343D01* X28785Y35320D01* X28768Y35299D01* X28749Y35280D01* X28728Y35262D01* X28724Y35259D01* Y35740D01* X28745Y35723D01* X28764Y35704D01* X28782Y35683D01* X28797Y35661D01* X28811Y35637D01* X28822Y35613D01* X28831Y35587D01* X28835Y35579D01* X28839Y35572D01* X28845Y35565D01* X28852Y35560D01* X28860Y35556D01* X28868Y35553D01* X28877Y35552D01* X28885Y35552D01* X28894Y35554D01* X28902Y35557D01* X28904Y35559D01* Y35447D01* G37* G36* Y35674D02*X28900Y35683D01* X28882Y35715D01* X28861Y35744D01* X28837Y35772D01* X28812Y35797D01* X28784Y35820D01* X28754Y35840D01* X28724Y35857D01* Y37153D01* X28740Y37162D01* X28769Y37183D01* X28797Y37207D01* X28822Y37232D01* X28845Y37260D01* X28865Y37290D01* X28883Y37322D01* X28897Y37355D01* X28904Y37374D01* Y35674D01* G37* G36* Y37428D02*X28902Y37431D01* X28897Y37438D01* X28890Y37444D01* X28883Y37448D01* X28875Y37451D01* X28866Y37453D01* X28857Y37453D01* X28849Y37452D01* X28841Y37449D01* X28833Y37445D01* X28826Y37439D01* X28820Y37433D01* X28816Y37425D01* X28813Y37417D01* X28804Y37391D01* X28793Y37366D01* X28780Y37343D01* X28765Y37320D01* X28748Y37299D01* X28729Y37280D01* X28724Y37276D01* Y37724D01* X28725Y37723D01* X28744Y37704D01* X28762Y37683D01* X28777Y37661D01* X28791Y37637D01* X28802Y37613D01* X28811Y37587D01* X28815Y37579D01* X28819Y37572D01* X28825Y37565D01* X28832Y37560D01* X28840Y37556D01* X28848Y37553D01* X28857Y37552D01* X28865Y37552D01* X28874Y37554D01* X28882Y37557D01* X28889Y37562D01* X28896Y37568D01* X28901Y37575D01* X28904Y37580D01* Y37428D01* G37* G36* Y40000D02*X29084D01* Y19625D01* X29075Y19651D01* X29060Y19683D01* X29042Y19715D01* X29021Y19744D01* X28997Y19772D01* X28972Y19797D01* X28944Y19820D01* X28914Y19840D01* X28904Y19846D01* Y21165D01* X28929Y21183D01* X28957Y21207D01* X28982Y21232D01* X29005Y21260D01* X29025Y21290D01* X29043Y21322D01* X29057Y21355D01* X29069Y21389D01* X29071Y21398D01* X29071Y21407D01* X29070Y21415D01* X29067Y21423D01* X29062Y21431D01* X29057Y21438D01* X29050Y21444D01* X29043Y21448D01* X29035Y21451D01* X29026Y21453D01* X29017Y21453D01* X29009Y21452D01* X29001Y21449D01* X28993Y21445D01* X28986Y21439D01* X28980Y21433D01* X28976Y21425D01* X28973Y21417D01* X28964Y21391D01* X28953Y21366D01* X28940Y21343D01* X28925Y21320D01* X28908Y21299D01* X28904Y21295D01* Y21704D01* X28904Y21704D01* X28922Y21683D01* X28937Y21661D01* X28951Y21637D01* X28962Y21613D01* X28971Y21587D01* X28975Y21579D01* X28979Y21572D01* X28985Y21565D01* X28992Y21560D01* X29000Y21556D01* X29008Y21553D01* X29017Y21552D01* X29025Y21552D01* X29034Y21554D01* X29042Y21557D01* X29049Y21562D01* X29056Y21568D01* X29061Y21575D01* X29065Y21582D01* X29068Y21591D01* X29069Y21599D01* X29069Y21608D01* X29067Y21617D01* X29055Y21651D01* X29040Y21683D01* X29022Y21715D01* X29001Y21744D01* X28977Y21772D01* X28952Y21797D01* X28924Y21820D01* X28904Y21834D01* Y23180D01* X28909Y23183D01* X28937Y23207D01* X28962Y23232D01* X28985Y23260D01* X29005Y23290D01* X29023Y23322D01* X29037Y23355D01* X29049Y23389D01* X29051Y23398D01* X29051Y23407D01* X29050Y23415D01* X29047Y23423D01* X29042Y23431D01* X29037Y23438D01* X29030Y23444D01* X29023Y23448D01* X29015Y23451D01* X29006Y23453D01* X28997Y23453D01* X28989Y23452D01* X28981Y23449D01* X28973Y23445D01* X28966Y23439D01* X28960Y23433D01* X28956Y23425D01* X28953Y23417D01* X28944Y23391D01* X28933Y23366D01* X28920Y23343D01* X28905Y23320D01* X28904Y23319D01* Y23680D01* X28917Y23661D01* X28931Y23637D01* X28942Y23613D01* X28951Y23587D01* X28955Y23579D01* X28959Y23572D01* X28965Y23565D01* X28972Y23560D01* X28980Y23556D01* X28988Y23553D01* X28997Y23552D01* X29005Y23552D01* X29014Y23554D01* X29022Y23557D01* X29029Y23562D01* X29036Y23568D01* X29041Y23575D01* X29045Y23582D01* X29048Y23591D01* X29049Y23599D01* X29049Y23608D01* X29047Y23617D01* X29035Y23651D01* X29020Y23683D01* X29002Y23715D01* X28981Y23744D01* X28957Y23772D01* X28932Y23797D01* X28904Y23820D01* Y25196D01* X28917Y25207D01* X28942Y25232D01* X28965Y25260D01* X28985Y25290D01* X29003Y25322D01* X29017Y25355D01* X29029Y25389D01* X29031Y25398D01* X29031Y25407D01* X29030Y25415D01* X29027Y25423D01* X29022Y25431D01* X29017Y25438D01* X29010Y25444D01* X29003Y25448D01* X28995Y25451D01* X28986Y25453D01* X28977Y25453D01* X28969Y25452D01* X28961Y25449D01* X28953Y25445D01* X28946Y25439D01* X28940Y25433D01* X28936Y25425D01* X28933Y25417D01* X28924Y25391D01* X28913Y25366D01* X28904Y25350D01* Y25650D01* X28911Y25637D01* X28922Y25613D01* X28931Y25587D01* X28935Y25579D01* X28939Y25572D01* X28945Y25565D01* X28952Y25560D01* X28960Y25556D01* X28968Y25553D01* X28977Y25552D01* X28985Y25552D01* X28994Y25554D01* X29002Y25557D01* X29009Y25562D01* X29016Y25568D01* X29021Y25575D01* X29025Y25582D01* X29028Y25591D01* X29029Y25599D01* X29029Y25608D01* X29027Y25617D01* X29015Y25651D01* X29000Y25683D01* X28982Y25715D01* X28961Y25744D01* X28937Y25772D01* X28912Y25797D01* X28904Y25804D01* Y27214D01* X28922Y27232D01* X28945Y27260D01* X28965Y27290D01* X28983Y27322D01* X28997Y27355D01* X29009Y27389D01* X29011Y27398D01* X29011Y27407D01* X29010Y27415D01* X29007Y27423D01* X29002Y27431D01* X28997Y27438D01* X28990Y27444D01* X28983Y27448D01* X28975Y27451D01* X28966Y27453D01* X28957Y27453D01* X28949Y27452D01* X28941Y27449D01* X28933Y27445D01* X28926Y27439D01* X28920Y27433D01* X28916Y27425D01* X28913Y27417D01* X28904Y27391D01* X28904Y27391D01* Y27608D01* X28911Y27587D01* X28915Y27579D01* X28919Y27572D01* X28925Y27565D01* X28932Y27560D01* X28940Y27556D01* X28948Y27553D01* X28957Y27552D01* X28965Y27552D01* X28974Y27554D01* X28982Y27557D01* X28989Y27562D01* X28996Y27568D01* X29001Y27575D01* X29005Y27582D01* X29008Y27591D01* X29009Y27599D01* X29009Y27608D01* X29007Y27617D01* X28995Y27651D01* X28980Y27683D01* X28962Y27715D01* X28941Y27744D01* X28917Y27772D01* X28904Y27785D01* Y29235D01* X28925Y29260D01* X28945Y29290D01* X28963Y29322D01* X28977Y29355D01* X28989Y29389D01* X28991Y29398D01* X28991Y29407D01* X28990Y29415D01* X28987Y29423D01* X28982Y29431D01* X28977Y29438D01* X28970Y29444D01* X28963Y29448D01* X28955Y29451D01* X28946Y29453D01* X28937Y29453D01* X28929Y29452D01* X28921Y29449D01* X28913Y29445D01* X28906Y29439D01* X28904Y29437D01* Y29567D01* X28905Y29565D01* X28912Y29560D01* X28920Y29556D01* X28928Y29553D01* X28937Y29552D01* X28945Y29552D01* X28954Y29554D01* X28962Y29557D01* X28969Y29562D01* X28976Y29568D01* X28981Y29575D01* X28985Y29582D01* X28988Y29591D01* X28989Y29599D01* X28989Y29608D01* X28987Y29617D01* X28975Y29651D01* X28960Y29683D01* X28942Y29715D01* X28921Y29744D01* X28904Y29764D01* Y31259D01* X28905Y31260D01* X28925Y31290D01* X28943Y31322D01* X28957Y31355D01* X28969Y31389D01* X28971Y31398D01* X28971Y31407D01* X28970Y31415D01* X28967Y31423D01* X28962Y31431D01* X28957Y31438D01* X28950Y31444D01* X28943Y31448D01* X28935Y31451D01* X28926Y31453D01* X28917Y31453D01* X28909Y31452D01* X28904Y31450D01* Y31555D01* X28908Y31553D01* X28917Y31552D01* X28925Y31552D01* X28934Y31554D01* X28942Y31557D01* X28949Y31562D01* X28956Y31568D01* X28961Y31575D01* X28965Y31582D01* X28968Y31591D01* X28969Y31599D01* X28969Y31608D01* X28967Y31617D01* X28955Y31651D01* X28940Y31683D01* X28922Y31715D01* X28904Y31740D01* Y33288D01* X28905Y33290D01* X28923Y33322D01* X28937Y33355D01* X28949Y33389D01* X28951Y33398D01* X28951Y33407D01* X28950Y33415D01* X28947Y33423D01* X28942Y33431D01* X28937Y33438D01* X28930Y33444D01* X28923Y33448D01* X28915Y33451D01* X28906Y33453D01* X28904D01* Y33552D01* X28905D01* X28914Y33554D01* X28922Y33557D01* X28929Y33562D01* X28936Y33568D01* X28941Y33575D01* X28945Y33582D01* X28948Y33591D01* X28949Y33599D01* X28949Y33608D01* X28947Y33617D01* X28935Y33651D01* X28920Y33683D01* X28904Y33711D01* Y35324D01* X28917Y35355D01* X28929Y35389D01* X28931Y35398D01* X28931Y35407D01* X28930Y35415D01* X28927Y35423D01* X28922Y35431D01* X28917Y35438D01* X28910Y35444D01* X28904Y35447D01* Y35559D01* X28909Y35562D01* X28916Y35568D01* X28921Y35575D01* X28925Y35582D01* X28928Y35591D01* X28929Y35599D01* X28929Y35608D01* X28927Y35617D01* X28915Y35651D01* X28904Y35674D01* Y37374D01* X28909Y37389D01* X28911Y37398D01* X28911Y37407D01* X28910Y37415D01* X28907Y37423D01* X28904Y37428D01* Y37580D01* X28905Y37582D01* X28908Y37591D01* X28909Y37599D01* X28909Y37608D01* X28907Y37617D01* X28904Y37625D01* Y40000D01* G37* G36* X29084Y0D02*X28904D01* Y5140D01* X28907Y5135D01* X28913Y5128D01* X28920Y5123D01* X28927Y5119D01* X28936Y5116D01* X28944Y5115D01* X28953Y5115D01* X28961Y5117D01* X28996Y5129D01* X29028Y5144D01* X29060Y5162D01* X29084Y5180D01* Y3834D01* X29074Y3840D01* X29042Y3858D01* X29009Y3873D01* X28975Y3884D01* X28966Y3886D01* X28957Y3886D01* X28949Y3885D01* X28941Y3882D01* X28933Y3878D01* X28926Y3872D01* X28920Y3865D01* X28916Y3858D01* X28913Y3850D01* X28911Y3841D01* X28911Y3833D01* X28912Y3824D01* X28915Y3816D01* X28919Y3808D01* X28925Y3801D01* X28932Y3796D01* X28939Y3791D01* X28947Y3788D01* X28973Y3779D01* X28998Y3768D01* X29021Y3755D01* X29044Y3740D01* X29065Y3723D01* X29084Y3704D01* Y3295D01* X29069Y3280D01* X29048Y3262D01* X29026Y3247D01* X29002Y3233D01* X28978Y3222D01* X28952Y3213D01* X28944Y3209D01* X28937Y3205D01* X28930Y3199D01* X28925Y3192D01* X28921Y3184D01* X28918Y3176D01* X28917Y3167D01* X28917Y3159D01* X28919Y3150D01* X28922Y3142D01* X28927Y3135D01* X28933Y3128D01* X28940Y3123D01* X28947Y3119D01* X28956Y3116D01* X28964Y3115D01* X28973Y3115D01* X28981Y3117D01* X29016Y3129D01* X29048Y3144D01* X29080Y3162D01* X29084Y3165D01* Y1846D01* X29062Y1858D01* X29029Y1873D01* X28995Y1884D01* X28986Y1886D01* X28977Y1886D01* X28969Y1885D01* X28961Y1882D01* X28953Y1878D01* X28946Y1872D01* X28940Y1865D01* X28936Y1858D01* X28933Y1850D01* X28931Y1841D01* X28931Y1833D01* X28932Y1824D01* X28935Y1816D01* X28939Y1808D01* X28945Y1801D01* X28952Y1796D01* X28959Y1791D01* X28967Y1788D01* X28993Y1779D01* X29018Y1768D01* X29041Y1755D01* X29064Y1740D01* X29084Y1724D01* Y1276D01* X29068Y1262D01* X29046Y1247D01* X29022Y1233D01* X28998Y1222D01* X28972Y1213D01* X28964Y1209D01* X28957Y1205D01* X28950Y1199D01* X28945Y1192D01* X28941Y1184D01* X28938Y1176D01* X28937Y1167D01* X28937Y1159D01* X28939Y1150D01* X28942Y1142D01* X28947Y1135D01* X28953Y1128D01* X28960Y1123D01* X28967Y1119D01* X28976Y1116D01* X28984Y1115D01* X28993Y1115D01* X29001Y1117D01* X29036Y1129D01* X29068Y1144D01* X29084Y1153D01* Y0D01* G37* G36* Y5319D02*X29068Y5299D01* X29049Y5280D01* X29028Y5262D01* X29006Y5247D01* X28982Y5233D01* X28958Y5222D01* X28932Y5213D01* X28924Y5209D01* X28917Y5205D01* X28910Y5199D01* X28905Y5192D01* X28904Y5190D01* Y5802D01* X28905Y5801D01* X28912Y5796D01* X28919Y5791D01* X28927Y5788D01* X28953Y5779D01* X28978Y5768D01* X29001Y5755D01* X29024Y5740D01* X29045Y5723D01* X29064Y5704D01* X29082Y5683D01* X29084Y5680D01* Y5319D01* G37* G36* Y5820D02*X29084Y5820D01* X29054Y5840D01* X29022Y5858D01* X28989Y5873D01* X28955Y5884D01* X28946Y5886D01* X28937Y5886D01* X28929Y5885D01* X28921Y5882D01* X28913Y5878D01* X28906Y5872D01* X28904Y5870D01* Y7121D01* X28907Y7119D01* X28916Y7116D01* X28924Y7115D01* X28933Y7115D01* X28941Y7117D01* X28976Y7129D01* X29008Y7144D01* X29040Y7162D01* X29069Y7183D01* X29084Y7196D01* Y5820D01* G37* G36* Y7350D02*X29080Y7343D01* X29065Y7320D01* X29048Y7299D01* X29029Y7280D01* X29008Y7262D01* X28986Y7247D01* X28962Y7233D01* X28938Y7222D01* X28912Y7213D01* X28904Y7209D01* X28904Y7209D01* Y7789D01* X28907Y7788D01* X28933Y7779D01* X28958Y7768D01* X28981Y7755D01* X29004Y7740D01* X29025Y7723D01* X29044Y7704D01* X29062Y7683D01* X29077Y7661D01* X29084Y7650D01* Y7350D01* G37* G36* Y7804D02*X29064Y7820D01* X29034Y7840D01* X29002Y7858D01* X28969Y7873D01* X28935Y7884D01* X28926Y7886D01* X28917Y7886D01* X28909Y7885D01* X28904Y7883D01* Y9115D01* X28904D01* X28913Y9115D01* X28921Y9117D01* X28956Y9129D01* X28988Y9144D01* X29020Y9162D01* X29049Y9183D01* X29077Y9207D01* X29084Y9214D01* Y7804D01* G37* G36* Y9391D02*X29073Y9366D01* X29060Y9343D01* X29045Y9320D01* X29028Y9299D01* X29009Y9280D01* X28988Y9262D01* X28966Y9247D01* X28942Y9233D01* X28918Y9222D01* X28904Y9217D01* Y9782D01* X28913Y9779D01* X28938Y9768D01* X28961Y9755D01* X28984Y9740D01* X29005Y9723D01* X29024Y9704D01* X29042Y9683D01* X29057Y9661D01* X29071Y9637D01* X29082Y9613D01* X29084Y9608D01* Y9391D01* G37* G36* Y9785D02*X29072Y9797D01* X29044Y9820D01* X29014Y9840D01* X28982Y9858D01* X28949Y9873D01* X28915Y9884D01* X28906Y9886D01* X28904D01* Y11118D01* X28936Y11129D01* X28968Y11144D01* X29000Y11162D01* X29029Y11183D01* X29057Y11207D01* X29082Y11232D01* X29084Y11235D01* Y9785D01* G37* G36* Y11437D02*X29080Y11433D01* X29076Y11425D01* X29073Y11417D01* X29064Y11391D01* X29053Y11366D01* X29040Y11343D01* X29025Y11320D01* X29008Y11299D01* X28989Y11280D01* X28968Y11262D01* X28946Y11247D01* X28922Y11233D01* X28904Y11225D01* Y11774D01* X28918Y11768D01* X28941Y11755D01* X28964Y11740D01* X28985Y11723D01* X29004Y11704D01* X29022Y11683D01* X29037Y11661D01* X29051Y11637D01* X29062Y11613D01* X29071Y11587D01* X29075Y11579D01* X29079Y11572D01* X29084Y11567D01* Y11437D01* G37* G36* Y11764D02*X29077Y11772D01* X29052Y11797D01* X29024Y11820D01* X28994Y11840D01* X28962Y11858D01* X28929Y11873D01* X28904Y11881D01* Y13125D01* X28916Y13129D01* X28948Y13144D01* X28980Y13162D01* X29009Y13183D01* X29037Y13207D01* X29062Y13232D01* X29084Y13259D01* Y11764D01* G37* G36* Y13450D02*X29081Y13449D01* X29073Y13445D01* X29066Y13439D01* X29060Y13433D01* X29056Y13425D01* X29053Y13417D01* X29044Y13391D01* X29033Y13366D01* X29020Y13343D01* X29005Y13320D01* X28988Y13299D01* X28969Y13280D01* X28948Y13262D01* X28926Y13247D01* X28904Y13234D01* Y13765D01* X28921Y13755D01* X28944Y13740D01* X28965Y13723D01* X28984Y13704D01* X29002Y13683D01* X29017Y13661D01* X29031Y13637D01* X29042Y13613D01* X29051Y13587D01* X29055Y13579D01* X29059Y13572D01* X29065Y13565D01* X29072Y13560D01* X29080Y13556D01* X29084Y13555D01* Y13450D01* G37* G36* Y13740D02*X29081Y13744D01* X29057Y13772D01* X29032Y13797D01* X29004Y13820D01* X28974Y13840D01* X28942Y13858D01* X28909Y13873D01* X28904Y13874D01* Y15133D01* X28928Y15144D01* X28960Y15162D01* X28989Y15183D01* X29017Y15207D01* X29042Y15232D01* X29065Y15260D01* X29084Y15288D01* Y13740D01* G37* G36* Y15453D02*X29077Y15453D01* X29069Y15452D01* X29061Y15449D01* X29053Y15445D01* X29046Y15439D01* X29040Y15433D01* X29036Y15425D01* X29033Y15417D01* X29024Y15391D01* X29013Y15366D01* X29000Y15343D01* X28985Y15320D01* X28968Y15299D01* X28949Y15280D01* X28928Y15262D01* X28906Y15247D01* X28904Y15246D01* Y15754D01* X28924Y15740D01* X28945Y15723D01* X28964Y15704D01* X28982Y15683D01* X28997Y15661D01* X29011Y15637D01* X29022Y15613D01* X29031Y15587D01* X29035Y15579D01* X29039Y15572D01* X29045Y15565D01* X29052Y15560D01* X29060Y15556D01* X29068Y15553D01* X29077Y15552D01* X29084Y15552D01* Y15453D01* G37* G36* Y15711D02*X29082Y15715D01* X29061Y15744D01* X29037Y15772D01* X29012Y15797D01* X28984Y15820D01* X28954Y15840D01* X28922Y15858D01* X28904Y15866D01* Y17142D01* X28908Y17144D01* X28940Y17162D01* X28969Y17183D01* X28997Y17207D01* X29022Y17232D01* X29045Y17260D01* X29065Y17290D01* X29083Y17322D01* X29084Y17324D01* Y15711D01* G37* G36* Y17447D02*X29083Y17448D01* X29075Y17451D01* X29066Y17453D01* X29057Y17453D01* X29049Y17452D01* X29041Y17449D01* X29033Y17445D01* X29026Y17439D01* X29020Y17433D01* X29016Y17425D01* X29013Y17417D01* X29004Y17391D01* X28993Y17366D01* X28980Y17343D01* X28965Y17320D01* X28948Y17299D01* X28929Y17280D01* X28908Y17262D01* X28904Y17259D01* Y17740D01* X28925Y17723D01* X28944Y17704D01* X28962Y17683D01* X28977Y17661D01* X28991Y17637D01* X29002Y17613D01* X29011Y17587D01* X29015Y17579D01* X29019Y17572D01* X29025Y17565D01* X29032Y17560D01* X29040Y17556D01* X29048Y17553D01* X29057Y17552D01* X29065Y17552D01* X29074Y17554D01* X29082Y17557D01* X29084Y17559D01* Y17447D01* G37* G36* Y17674D02*X29080Y17683D01* X29062Y17715D01* X29041Y17744D01* X29017Y17772D01* X28992Y17797D01* X28964Y17820D01* X28934Y17840D01* X28904Y17857D01* Y19153D01* X28920Y19162D01* X28949Y19183D01* X28977Y19207D01* X29002Y19232D01* X29025Y19260D01* X29045Y19290D01* X29063Y19322D01* X29077Y19355D01* X29084Y19374D01* Y17674D01* G37* G36* Y19428D02*X29082Y19431D01* X29077Y19438D01* X29070Y19444D01* X29063Y19448D01* X29055Y19451D01* X29046Y19453D01* X29037Y19453D01* X29029Y19452D01* X29021Y19449D01* X29013Y19445D01* X29006Y19439D01* X29000Y19433D01* X28996Y19425D01* X28993Y19417D01* X28984Y19391D01* X28973Y19366D01* X28960Y19343D01* X28945Y19320D01* X28928Y19299D01* X28909Y19280D01* X28904Y19276D01* Y19724D01* X28905Y19723D01* X28924Y19704D01* X28942Y19683D01* X28957Y19661D01* X28971Y19637D01* X28982Y19613D01* X28991Y19587D01* X28995Y19579D01* X28999Y19572D01* X29005Y19565D01* X29012Y19560D01* X29020Y19556D01* X29028Y19553D01* X29037Y19552D01* X29045Y19552D01* X29054Y19554D01* X29062Y19557D01* X29069Y19562D01* X29076Y19568D01* X29081Y19575D01* X29084Y19580D01* Y19428D01* G37* G36* Y40000D02*X30285D01* Y39834D01* X30260Y39816D01* X30232Y39793D01* X30207Y39767D01* X30184Y39739D01* X30164Y39709D01* X30146Y39677D01* X30132Y39644D01* X30120Y39610D01* X30118Y39601D01* X30118Y39593D01* X30119Y39584D01* X30122Y39576D01* X30127Y39568D01* X30132Y39561D01* X30139Y39556D01* X30146Y39551D01* X30154Y39548D01* X30163Y39546D01* X30172Y39546D01* X30180Y39547D01* X30188Y39550D01* X30196Y39555D01* X30203Y39560D01* X30209Y39567D01* X30213Y39574D01* X30216Y39582D01* X30225Y39608D01* X30236Y39633D01* X30249Y39657D01* X30264Y39679D01* X30281Y39700D01* X30285Y39704D01* Y39295D01* X30285Y39295D01* X30267Y39316D01* X30252Y39338D01* X30238Y39362D01* X30227Y39386D01* X30218Y39412D01* X30214Y39420D01* X30210Y39427D01* X30204Y39434D01* X30197Y39439D01* X30189Y39443D01* X30181Y39446D01* X30172Y39447D01* X30164Y39447D01* X30155Y39445D01* X30147Y39442D01* X30140Y39437D01* X30133Y39431D01* X30128Y39424D01* X30124Y39417D01* X30121Y39409D01* X30120Y39400D01* X30120Y39391D01* X30122Y39383D01* X30134Y39349D01* X30149Y39316D01* X30167Y39284D01* X30188Y39255D01* X30212Y39227D01* X30237Y39202D01* X30265Y39179D01* X30285Y39166D01* Y37820D01* X30280Y37816D01* X30252Y37793D01* X30227Y37767D01* X30204Y37739D01* X30184Y37709D01* X30166Y37677D01* X30152Y37644D01* X30140Y37610D01* X30138Y37601D01* X30138Y37593D01* X30139Y37584D01* X30142Y37576D01* X30147Y37568D01* X30152Y37561D01* X30159Y37556D01* X30166Y37551D01* X30174Y37548D01* X30183Y37546D01* X30192Y37546D01* X30200Y37547D01* X30208Y37550D01* X30216Y37555D01* X30223Y37560D01* X30229Y37567D01* X30233Y37574D01* X30236Y37582D01* X30245Y37608D01* X30256Y37633D01* X30269Y37657D01* X30284Y37679D01* X30285Y37680D01* Y37319D01* X30272Y37338D01* X30258Y37362D01* X30247Y37386D01* X30238Y37412D01* X30234Y37420D01* X30230Y37427D01* X30224Y37434D01* X30217Y37439D01* X30209Y37443D01* X30201Y37446D01* X30192Y37447D01* X30184Y37447D01* X30175Y37445D01* X30167Y37442D01* X30160Y37437D01* X30153Y37431D01* X30148Y37424D01* X30144Y37417D01* X30141Y37409D01* X30140Y37400D01* X30140Y37391D01* X30142Y37383D01* X30154Y37349D01* X30169Y37316D01* X30187Y37284D01* X30208Y37255D01* X30232Y37227D01* X30257Y37202D01* X30285Y37179D01* Y35804D01* X30272Y35793D01* X30247Y35767D01* X30224Y35739D01* X30204Y35709D01* X30186Y35677D01* X30172Y35644D01* X30160Y35610D01* X30158Y35601D01* X30158Y35593D01* X30159Y35584D01* X30162Y35576D01* X30167Y35568D01* X30172Y35561D01* X30179Y35556D01* X30186Y35551D01* X30194Y35548D01* X30203Y35546D01* X30212Y35546D01* X30220Y35547D01* X30228Y35550D01* X30236Y35555D01* X30243Y35560D01* X30249Y35567D01* X30253Y35574D01* X30256Y35582D01* X30265Y35608D01* X30276Y35633D01* X30285Y35650D01* Y35349D01* X30278Y35362D01* X30267Y35386D01* X30258Y35412D01* X30254Y35420D01* X30250Y35427D01* X30244Y35434D01* X30237Y35439D01* X30229Y35443D01* X30221Y35446D01* X30212Y35447D01* X30204Y35447D01* X30195Y35445D01* X30187Y35442D01* X30180Y35437D01* X30173Y35431D01* X30168Y35424D01* X30164Y35417D01* X30161Y35409D01* X30160Y35400D01* X30160Y35391D01* X30162Y35383D01* X30174Y35349D01* X30189Y35316D01* X30207Y35284D01* X30228Y35255D01* X30252Y35227D01* X30277Y35202D01* X30285Y35196D01* Y33785D01* X30267Y33767D01* X30244Y33739D01* X30224Y33709D01* X30206Y33677D01* X30192Y33644D01* X30180Y33610D01* X30178Y33601D01* X30178Y33593D01* X30179Y33584D01* X30182Y33576D01* X30187Y33568D01* X30192Y33561D01* X30199Y33556D01* X30206Y33551D01* X30214Y33548D01* X30223Y33546D01* X30232Y33546D01* X30240Y33547D01* X30248Y33550D01* X30256Y33555D01* X30263Y33560D01* X30269Y33567D01* X30273Y33574D01* X30276Y33582D01* X30285Y33608D01* X30285Y33609D01* Y33391D01* X30278Y33412D01* X30274Y33420D01* X30270Y33427D01* X30264Y33434D01* X30257Y33439D01* X30249Y33443D01* X30241Y33446D01* X30232Y33447D01* X30224Y33447D01* X30215Y33445D01* X30207Y33442D01* X30200Y33437D01* X30193Y33431D01* X30188Y33424D01* X30184Y33417D01* X30181Y33409D01* X30180Y33400D01* X30180Y33391D01* X30182Y33383D01* X30194Y33349D01* X30209Y33316D01* X30227Y33284D01* X30248Y33255D01* X30272Y33227D01* X30285Y33214D01* Y31765D01* X30264Y31739D01* X30244Y31709D01* X30226Y31677D01* X30212Y31644D01* X30200Y31610D01* X30198Y31601D01* X30198Y31593D01* X30199Y31584D01* X30202Y31576D01* X30207Y31568D01* X30212Y31561D01* X30219Y31556D01* X30226Y31551D01* X30234Y31548D01* X30243Y31546D01* X30252Y31546D01* X30260Y31547D01* X30268Y31550D01* X30276Y31555D01* X30283Y31560D01* X30285Y31563D01* Y31432D01* X30284Y31434D01* X30277Y31439D01* X30269Y31443D01* X30261Y31446D01* X30252Y31447D01* X30244Y31447D01* X30235Y31445D01* X30227Y31442D01* X30220Y31437D01* X30213Y31431D01* X30208Y31424D01* X30204Y31417D01* X30201Y31409D01* X30200Y31400D01* X30200Y31391D01* X30202Y31383D01* X30214Y31349D01* X30229Y31316D01* X30247Y31284D01* X30268Y31255D01* X30285Y31235D01* Y29740D01* X30284Y29739D01* X30264Y29709D01* X30246Y29677D01* X30232Y29644D01* X30220Y29610D01* X30218Y29601D01* X30218Y29593D01* X30219Y29584D01* X30222Y29576D01* X30227Y29568D01* X30232Y29561D01* X30239Y29556D01* X30246Y29551D01* X30254Y29548D01* X30263Y29546D01* X30272Y29546D01* X30280Y29547D01* X30285Y29549D01* Y29445D01* X30281Y29446D01* X30272Y29447D01* X30264Y29447D01* X30255Y29445D01* X30247Y29442D01* X30240Y29437D01* X30233Y29431D01* X30228Y29424D01* X30224Y29417D01* X30221Y29409D01* X30220Y29400D01* X30220Y29391D01* X30222Y29383D01* X30234Y29349D01* X30249Y29316D01* X30267Y29284D01* X30285Y29259D01* Y27711D01* X30284Y27709D01* X30266Y27677D01* X30252Y27644D01* X30240Y27610D01* X30238Y27601D01* X30238Y27593D01* X30239Y27584D01* X30242Y27576D01* X30247Y27568D01* X30252Y27561D01* X30259Y27556D01* X30266Y27551D01* X30274Y27548D01* X30283Y27546D01* X30285D01* Y27447D01* X30284Y27447D01* X30275Y27445D01* X30267Y27442D01* X30260Y27437D01* X30253Y27431D01* X30248Y27424D01* X30244Y27417D01* X30241Y27409D01* X30240Y27400D01* X30240Y27391D01* X30242Y27383D01* X30254Y27349D01* X30269Y27316D01* X30285Y27288D01* Y25675D01* X30272Y25644D01* X30260Y25610D01* X30258Y25601D01* X30258Y25593D01* X30259Y25584D01* X30262Y25576D01* X30267Y25568D01* X30272Y25561D01* X30279Y25556D01* X30285Y25552D01* Y25441D01* X30280Y25437D01* X30273Y25431D01* X30268Y25424D01* X30264Y25417D01* X30261Y25409D01* X30260Y25400D01* X30260Y25391D01* X30262Y25383D01* X30274Y25349D01* X30285Y25325D01* Y23625D01* X30280Y23610D01* X30278Y23601D01* X30278Y23593D01* X30279Y23584D01* X30282Y23576D01* X30285Y23571D01* Y23419D01* X30284Y23417D01* X30281Y23409D01* X30280Y23400D01* X30280Y23391D01* X30282Y23383D01* X30285Y23374D01* Y0D01* X29084D01* Y1153D01* X29100Y1162D01* X29129Y1183D01* X29157Y1207D01* X29182Y1232D01* X29205Y1260D01* X29225Y1290D01* X29243Y1322D01* X29257Y1355D01* X29269Y1389D01* X29271Y1398D01* X29271Y1407D01* X29270Y1415D01* X29267Y1423D01* X29262Y1431D01* X29257Y1438D01* X29250Y1444D01* X29243Y1448D01* X29235Y1451D01* X29226Y1453D01* X29217Y1453D01* X29209Y1452D01* X29201Y1449D01* X29193Y1445D01* X29186Y1439D01* X29180Y1433D01* X29176Y1425D01* X29173Y1417D01* X29164Y1391D01* X29153Y1366D01* X29140Y1343D01* X29125Y1320D01* X29108Y1299D01* X29089Y1280D01* X29084Y1276D01* Y1724D01* X29085Y1723D01* X29104Y1704D01* X29122Y1683D01* X29137Y1661D01* X29151Y1637D01* X29162Y1613D01* X29171Y1587D01* X29175Y1579D01* X29179Y1572D01* X29185Y1565D01* X29192Y1560D01* X29200Y1556D01* X29208Y1553D01* X29217Y1552D01* X29225Y1552D01* X29234Y1554D01* X29242Y1557D01* X29249Y1562D01* X29256Y1568D01* X29261Y1575D01* X29265Y1582D01* X29268Y1591D01* X29269Y1599D01* X29269Y1608D01* X29267Y1617D01* X29255Y1651D01* X29240Y1683D01* X29222Y1715D01* X29201Y1744D01* X29177Y1772D01* X29152Y1797D01* X29124Y1820D01* X29094Y1840D01* X29084Y1846D01* Y3165D01* X29109Y3183D01* X29137Y3207D01* X29162Y3232D01* X29185Y3260D01* X29205Y3290D01* X29223Y3322D01* X29237Y3355D01* X29249Y3389D01* X29251Y3398D01* X29251Y3407D01* X29250Y3415D01* X29247Y3423D01* X29242Y3431D01* X29237Y3438D01* X29230Y3444D01* X29223Y3448D01* X29215Y3451D01* X29206Y3453D01* X29197Y3453D01* X29189Y3452D01* X29181Y3449D01* X29173Y3445D01* X29166Y3439D01* X29160Y3433D01* X29156Y3425D01* X29153Y3417D01* X29144Y3391D01* X29133Y3366D01* X29120Y3343D01* X29105Y3320D01* X29088Y3299D01* X29084Y3295D01* Y3704D01* X29084Y3704D01* X29102Y3683D01* X29117Y3661D01* X29131Y3637D01* X29142Y3613D01* X29151Y3587D01* X29155Y3579D01* X29159Y3572D01* X29165Y3565D01* X29172Y3560D01* X29180Y3556D01* X29188Y3553D01* X29197Y3552D01* X29205Y3552D01* X29214Y3554D01* X29222Y3557D01* X29229Y3562D01* X29236Y3568D01* X29241Y3575D01* X29245Y3582D01* X29248Y3591D01* X29249Y3599D01* X29249Y3608D01* X29247Y3617D01* X29235Y3651D01* X29220Y3683D01* X29202Y3715D01* X29181Y3744D01* X29157Y3772D01* X29132Y3797D01* X29104Y3820D01* X29084Y3834D01* Y5180D01* X29089Y5183D01* X29117Y5207D01* X29142Y5232D01* X29165Y5260D01* X29185Y5290D01* X29203Y5322D01* X29217Y5355D01* X29229Y5389D01* X29231Y5398D01* X29231Y5407D01* X29230Y5415D01* X29227Y5423D01* X29222Y5431D01* X29217Y5438D01* X29210Y5444D01* X29203Y5448D01* X29195Y5451D01* X29186Y5453D01* X29177Y5453D01* X29169Y5452D01* X29161Y5449D01* X29153Y5445D01* X29146Y5439D01* X29140Y5433D01* X29136Y5425D01* X29133Y5417D01* X29124Y5391D01* X29113Y5366D01* X29100Y5343D01* X29085Y5320D01* X29084Y5319D01* Y5680D01* X29097Y5661D01* X29111Y5637D01* X29122Y5613D01* X29131Y5587D01* X29135Y5579D01* X29139Y5572D01* X29145Y5565D01* X29152Y5560D01* X29160Y5556D01* X29168Y5553D01* X29177Y5552D01* X29185Y5552D01* X29194Y5554D01* X29202Y5557D01* X29209Y5562D01* X29216Y5568D01* X29221Y5575D01* X29225Y5582D01* X29228Y5591D01* X29229Y5599D01* X29229Y5608D01* X29227Y5617D01* X29215Y5651D01* X29200Y5683D01* X29182Y5715D01* X29161Y5744D01* X29137Y5772D01* X29112Y5797D01* X29084Y5820D01* Y7196D01* X29097Y7207D01* X29122Y7232D01* X29145Y7260D01* X29165Y7290D01* X29183Y7322D01* X29197Y7355D01* X29209Y7389D01* X29211Y7398D01* X29211Y7407D01* X29210Y7415D01* X29207Y7423D01* X29202Y7431D01* X29197Y7438D01* X29190Y7444D01* X29183Y7448D01* X29175Y7451D01* X29166Y7453D01* X29157Y7453D01* X29149Y7452D01* X29141Y7449D01* X29133Y7445D01* X29126Y7439D01* X29120Y7433D01* X29116Y7425D01* X29113Y7417D01* X29104Y7391D01* X29093Y7366D01* X29084Y7350D01* Y7650D01* X29091Y7637D01* X29102Y7613D01* X29111Y7587D01* X29115Y7579D01* X29119Y7572D01* X29125Y7565D01* X29132Y7560D01* X29140Y7556D01* X29148Y7553D01* X29157Y7552D01* X29165Y7552D01* X29174Y7554D01* X29182Y7557D01* X29189Y7562D01* X29196Y7568D01* X29201Y7575D01* X29205Y7582D01* X29208Y7591D01* X29209Y7599D01* X29209Y7608D01* X29207Y7617D01* X29195Y7651D01* X29180Y7683D01* X29162Y7715D01* X29141Y7744D01* X29117Y7772D01* X29092Y7797D01* X29084Y7804D01* Y9214D01* X29102Y9232D01* X29125Y9260D01* X29145Y9290D01* X29163Y9322D01* X29177Y9355D01* X29189Y9389D01* X29191Y9398D01* X29191Y9407D01* X29190Y9415D01* X29187Y9423D01* X29182Y9431D01* X29177Y9438D01* X29170Y9444D01* X29163Y9448D01* X29155Y9451D01* X29146Y9453D01* X29137Y9453D01* X29129Y9452D01* X29121Y9449D01* X29113Y9445D01* X29106Y9439D01* X29100Y9433D01* X29096Y9425D01* X29093Y9417D01* X29084Y9391D01* X29084Y9391D01* Y9608D01* X29091Y9587D01* X29095Y9579D01* X29099Y9572D01* X29105Y9565D01* X29112Y9560D01* X29120Y9556D01* X29128Y9553D01* X29137Y9552D01* X29145Y9552D01* X29154Y9554D01* X29162Y9557D01* X29169Y9562D01* X29176Y9568D01* X29181Y9575D01* X29185Y9582D01* X29188Y9591D01* X29189Y9599D01* X29189Y9608D01* X29187Y9617D01* X29175Y9651D01* X29160Y9683D01* X29142Y9715D01* X29121Y9744D01* X29097Y9772D01* X29084Y9785D01* Y11235D01* X29105Y11260D01* X29125Y11290D01* X29143Y11322D01* X29157Y11355D01* X29169Y11389D01* X29171Y11398D01* X29171Y11407D01* X29170Y11415D01* X29167Y11423D01* X29162Y11431D01* X29157Y11438D01* X29150Y11444D01* X29143Y11448D01* X29135Y11451D01* X29126Y11453D01* X29117Y11453D01* X29109Y11452D01* X29101Y11449D01* X29093Y11445D01* X29086Y11439D01* X29084Y11437D01* Y11567D01* X29085Y11565D01* X29092Y11560D01* X29100Y11556D01* X29108Y11553D01* X29117Y11552D01* X29125Y11552D01* X29134Y11554D01* X29142Y11557D01* X29149Y11562D01* X29156Y11568D01* X29161Y11575D01* X29165Y11582D01* X29168Y11591D01* X29169Y11599D01* X29169Y11608D01* X29167Y11617D01* X29155Y11651D01* X29140Y11683D01* X29122Y11715D01* X29101Y11744D01* X29084Y11764D01* Y13259D01* X29085Y13260D01* X29105Y13290D01* X29123Y13322D01* X29137Y13355D01* X29149Y13389D01* X29151Y13398D01* X29151Y13407D01* X29150Y13415D01* X29147Y13423D01* X29142Y13431D01* X29137Y13438D01* X29130Y13444D01* X29123Y13448D01* X29115Y13451D01* X29106Y13453D01* X29097Y13453D01* X29089Y13452D01* X29084Y13450D01* Y13555D01* X29088Y13553D01* X29097Y13552D01* X29105Y13552D01* X29114Y13554D01* X29122Y13557D01* X29129Y13562D01* X29136Y13568D01* X29141Y13575D01* X29145Y13582D01* X29148Y13591D01* X29149Y13599D01* X29149Y13608D01* X29147Y13617D01* X29135Y13651D01* X29120Y13683D01* X29102Y13715D01* X29084Y13740D01* Y15288D01* X29085Y15290D01* X29103Y15322D01* X29117Y15355D01* X29129Y15389D01* X29131Y15398D01* X29131Y15407D01* X29130Y15415D01* X29127Y15423D01* X29122Y15431D01* X29117Y15438D01* X29110Y15444D01* X29103Y15448D01* X29095Y15451D01* X29086Y15453D01* X29084D01* Y15552D01* X29085D01* X29094Y15554D01* X29102Y15557D01* X29109Y15562D01* X29116Y15568D01* X29121Y15575D01* X29125Y15582D01* X29128Y15591D01* X29129Y15599D01* X29129Y15608D01* X29127Y15617D01* X29115Y15651D01* X29100Y15683D01* X29084Y15711D01* Y17324D01* X29097Y17355D01* X29109Y17389D01* X29111Y17398D01* X29111Y17407D01* X29110Y17415D01* X29107Y17423D01* X29102Y17431D01* X29097Y17438D01* X29090Y17444D01* X29084Y17447D01* Y17559D01* X29089Y17562D01* X29096Y17568D01* X29101Y17575D01* X29105Y17582D01* X29108Y17591D01* X29109Y17599D01* X29109Y17608D01* X29107Y17617D01* X29095Y17651D01* X29084Y17674D01* Y19374D01* X29089Y19389D01* X29091Y19398D01* X29091Y19407D01* X29090Y19415D01* X29087Y19423D01* X29084Y19428D01* Y19580D01* X29085Y19582D01* X29088Y19591D01* X29089Y19599D01* X29089Y19608D01* X29087Y19617D01* X29084Y19625D01* Y40000D01* G37* G36* X30285D02*X30465D01* Y37859D01* X30462Y37864D01* X30456Y37871D01* X30449Y37876D01* X30442Y37880D01* X30433Y37883D01* X30425Y37884D01* X30416Y37884D01* X30408Y37882D01* X30373Y37870D01* X30341Y37855D01* X30309Y37837D01* X30285Y37820D01* Y39166D01* X30295Y39159D01* X30327Y39141D01* X30360Y39127D01* X30394Y39115D01* X30403Y39113D01* X30412Y39113D01* X30420Y39115D01* X30428Y39117D01* X30436Y39122D01* X30443Y39127D01* X30449Y39134D01* X30453Y39141D01* X30456Y39149D01* X30458Y39158D01* X30458Y39167D01* X30457Y39175D01* X30454Y39183D01* X30450Y39191D01* X30444Y39198D01* X30437Y39204D01* X30430Y39208D01* X30422Y39211D01* X30396Y39220D01* X30371Y39231D01* X30348Y39244D01* X30325Y39259D01* X30304Y39276D01* X30285Y39295D01* Y39704D01* X30300Y39719D01* X30321Y39737D01* X30343Y39752D01* X30367Y39766D01* X30391Y39777D01* X30417Y39786D01* X30425Y39790D01* X30432Y39794D01* X30439Y39800D01* X30444Y39807D01* X30448Y39815D01* X30451Y39823D01* X30452Y39832D01* X30452Y39840D01* X30450Y39849D01* X30447Y39857D01* X30442Y39864D01* X30436Y39871D01* X30429Y39876D01* X30422Y39880D01* X30413Y39883D01* X30405Y39884D01* X30396Y39884D01* X30388Y39882D01* X30353Y39870D01* X30321Y39855D01* X30289Y39837D01* X30285Y39834D01* Y40000D01* G37* G36* X30465Y11740D02*X30464Y11739D01* X30444Y11709D01* X30426Y11677D01* X30412Y11644D01* X30400Y11610D01* X30398Y11601D01* X30398Y11593D01* X30399Y11584D01* X30402Y11576D01* X30407Y11568D01* X30412Y11561D01* X30419Y11556D01* X30426Y11551D01* X30434Y11548D01* X30443Y11546D01* X30452Y11546D01* X30460Y11547D01* X30465Y11549D01* Y11445D01* X30461Y11446D01* X30452Y11447D01* X30444Y11447D01* X30435Y11445D01* X30427Y11442D01* X30420Y11437D01* X30413Y11431D01* X30408Y11424D01* X30404Y11417D01* X30401Y11409D01* X30400Y11400D01* X30400Y11391D01* X30402Y11383D01* X30414Y11349D01* X30429Y11316D01* X30447Y11284D01* X30465Y11259D01* Y9711D01* X30464Y9709D01* X30446Y9677D01* X30432Y9644D01* X30420Y9610D01* X30418Y9601D01* X30418Y9593D01* X30419Y9584D01* X30422Y9576D01* X30427Y9568D01* X30432Y9561D01* X30439Y9556D01* X30446Y9551D01* X30454Y9548D01* X30463Y9546D01* X30465D01* Y9447D01* X30464Y9447D01* X30455Y9445D01* X30447Y9442D01* X30440Y9437D01* X30433Y9431D01* X30428Y9424D01* X30424Y9417D01* X30421Y9409D01* X30420Y9400D01* X30420Y9391D01* X30422Y9383D01* X30434Y9349D01* X30449Y9316D01* X30465Y9288D01* Y7675D01* X30452Y7644D01* X30440Y7610D01* X30438Y7601D01* X30438Y7593D01* X30439Y7584D01* X30442Y7576D01* X30447Y7568D01* X30452Y7561D01* X30459Y7556D01* X30465Y7552D01* Y7441D01* X30460Y7437D01* X30453Y7431D01* X30448Y7424D01* X30444Y7417D01* X30441Y7409D01* X30440Y7400D01* X30440Y7391D01* X30442Y7383D01* X30454Y7349D01* X30465Y7325D01* Y5625D01* X30460Y5610D01* X30458Y5601D01* X30458Y5593D01* X30459Y5584D01* X30462Y5576D01* X30465Y5571D01* Y5419D01* X30464Y5417D01* X30461Y5409D01* X30460Y5400D01* X30460Y5391D01* X30462Y5383D01* X30465Y5374D01* Y0D01* X30285D01* Y23374D01* X30294Y23349D01* X30309Y23316D01* X30327Y23284D01* X30348Y23255D01* X30372Y23227D01* X30397Y23202D01* X30425Y23179D01* X30455Y23159D01* X30465Y23153D01* Y21834D01* X30440Y21816D01* X30412Y21793D01* X30387Y21767D01* X30364Y21739D01* X30344Y21709D01* X30326Y21677D01* X30312Y21644D01* X30300Y21610D01* X30298Y21601D01* X30298Y21593D01* X30299Y21584D01* X30302Y21576D01* X30307Y21568D01* X30312Y21561D01* X30319Y21556D01* X30326Y21551D01* X30334Y21548D01* X30343Y21546D01* X30352Y21546D01* X30360Y21547D01* X30368Y21550D01* X30376Y21555D01* X30383Y21560D01* X30389Y21567D01* X30393Y21574D01* X30396Y21582D01* X30405Y21608D01* X30416Y21633D01* X30429Y21657D01* X30444Y21679D01* X30461Y21700D01* X30465Y21704D01* Y21295D01* X30465Y21295D01* X30447Y21316D01* X30432Y21338D01* X30418Y21362D01* X30407Y21386D01* X30398Y21412D01* X30394Y21420D01* X30390Y21427D01* X30384Y21434D01* X30377Y21439D01* X30369Y21443D01* X30361Y21446D01* X30352Y21447D01* X30344Y21447D01* X30335Y21445D01* X30327Y21442D01* X30320Y21437D01* X30313Y21431D01* X30308Y21424D01* X30304Y21417D01* X30301Y21409D01* X30300Y21400D01* X30300Y21391D01* X30302Y21383D01* X30314Y21349D01* X30329Y21316D01* X30347Y21284D01* X30368Y21255D01* X30392Y21227D01* X30417Y21202D01* X30445Y21179D01* X30465Y21166D01* Y19820D01* X30460Y19816D01* X30432Y19793D01* X30407Y19767D01* X30384Y19739D01* X30364Y19709D01* X30346Y19677D01* X30332Y19644D01* X30320Y19610D01* X30318Y19601D01* X30318Y19593D01* X30319Y19584D01* X30322Y19576D01* X30327Y19568D01* X30332Y19561D01* X30339Y19556D01* X30346Y19551D01* X30354Y19548D01* X30363Y19546D01* X30372Y19546D01* X30380Y19547D01* X30388Y19550D01* X30396Y19555D01* X30403Y19560D01* X30409Y19567D01* X30413Y19574D01* X30416Y19582D01* X30425Y19608D01* X30436Y19633D01* X30449Y19657D01* X30464Y19679D01* X30465Y19680D01* Y19319D01* X30452Y19338D01* X30438Y19362D01* X30427Y19386D01* X30418Y19412D01* X30414Y19420D01* X30410Y19427D01* X30404Y19434D01* X30397Y19439D01* X30389Y19443D01* X30381Y19446D01* X30372Y19447D01* X30364Y19447D01* X30355Y19445D01* X30347Y19442D01* X30340Y19437D01* X30333Y19431D01* X30328Y19424D01* X30324Y19417D01* X30321Y19409D01* X30320Y19400D01* X30320Y19391D01* X30322Y19383D01* X30334Y19349D01* X30349Y19316D01* X30367Y19284D01* X30388Y19255D01* X30412Y19227D01* X30437Y19202D01* X30465Y19179D01* Y17804D01* X30452Y17793D01* X30427Y17767D01* X30404Y17739D01* X30384Y17709D01* X30366Y17677D01* X30352Y17644D01* X30340Y17610D01* X30338Y17601D01* X30338Y17593D01* X30339Y17584D01* X30342Y17576D01* X30347Y17568D01* X30352Y17561D01* X30359Y17556D01* X30366Y17551D01* X30374Y17548D01* X30383Y17546D01* X30392Y17546D01* X30400Y17547D01* X30408Y17550D01* X30416Y17555D01* X30423Y17560D01* X30429Y17567D01* X30433Y17574D01* X30436Y17582D01* X30445Y17608D01* X30456Y17633D01* X30465Y17650D01* Y17349D01* X30458Y17362D01* X30447Y17386D01* X30438Y17412D01* X30434Y17420D01* X30430Y17427D01* X30424Y17434D01* X30417Y17439D01* X30409Y17443D01* X30401Y17446D01* X30392Y17447D01* X30384Y17447D01* X30375Y17445D01* X30367Y17442D01* X30360Y17437D01* X30353Y17431D01* X30348Y17424D01* X30344Y17417D01* X30341Y17409D01* X30340Y17400D01* X30340Y17391D01* X30342Y17383D01* X30354Y17349D01* X30369Y17316D01* X30387Y17284D01* X30408Y17255D01* X30432Y17227D01* X30457Y17202D01* X30465Y17196D01* Y15785D01* X30447Y15767D01* X30424Y15739D01* X30404Y15709D01* X30386Y15677D01* X30372Y15644D01* X30360Y15610D01* X30358Y15601D01* X30358Y15593D01* X30359Y15584D01* X30362Y15576D01* X30367Y15568D01* X30372Y15561D01* X30379Y15556D01* X30386Y15551D01* X30394Y15548D01* X30403Y15546D01* X30412Y15546D01* X30420Y15547D01* X30428Y15550D01* X30436Y15555D01* X30443Y15560D01* X30449Y15567D01* X30453Y15574D01* X30456Y15582D01* X30465Y15608D01* X30465Y15609D01* Y15391D01* X30458Y15412D01* X30454Y15420D01* X30450Y15427D01* X30444Y15434D01* X30437Y15439D01* X30429Y15443D01* X30421Y15446D01* X30412Y15447D01* X30404Y15447D01* X30395Y15445D01* X30387Y15442D01* X30380Y15437D01* X30373Y15431D01* X30368Y15424D01* X30364Y15417D01* X30361Y15409D01* X30360Y15400D01* X30360Y15391D01* X30362Y15383D01* X30374Y15349D01* X30389Y15316D01* X30407Y15284D01* X30428Y15255D01* X30452Y15227D01* X30465Y15214D01* Y13765D01* X30444Y13739D01* X30424Y13709D01* X30406Y13677D01* X30392Y13644D01* X30380Y13610D01* X30378Y13601D01* X30378Y13593D01* X30379Y13584D01* X30382Y13576D01* X30387Y13568D01* X30392Y13561D01* X30399Y13556D01* X30406Y13551D01* X30414Y13548D01* X30423Y13546D01* X30432Y13546D01* X30440Y13547D01* X30448Y13550D01* X30456Y13555D01* X30463Y13560D01* X30465Y13563D01* Y13432D01* X30464Y13434D01* X30457Y13439D01* X30449Y13443D01* X30441Y13446D01* X30432Y13447D01* X30424Y13447D01* X30415Y13445D01* X30407Y13442D01* X30400Y13437D01* X30393Y13431D01* X30388Y13424D01* X30384Y13417D01* X30381Y13409D01* X30380Y13400D01* X30380Y13391D01* X30382Y13383D01* X30394Y13349D01* X30409Y13316D01* X30427Y13284D01* X30448Y13255D01* X30465Y13235D01* Y11740D01* G37* G36* Y23276D02*X30464Y23276D01* X30445Y23295D01* X30427Y23316D01* X30412Y23338D01* X30398Y23362D01* X30387Y23386D01* X30378Y23412D01* X30374Y23420D01* X30370Y23427D01* X30364Y23434D01* X30357Y23439D01* X30349Y23443D01* X30341Y23446D01* X30332Y23447D01* X30324Y23447D01* X30315Y23445D01* X30307Y23442D01* X30300Y23437D01* X30293Y23431D01* X30288Y23424D01* X30285Y23419D01* Y23571D01* X30287Y23568D01* X30292Y23561D01* X30299Y23556D01* X30306Y23551D01* X30314Y23548D01* X30323Y23546D01* X30332Y23546D01* X30340Y23547D01* X30348Y23550D01* X30356Y23555D01* X30363Y23560D01* X30369Y23567D01* X30373Y23574D01* X30376Y23582D01* X30385Y23608D01* X30396Y23633D01* X30409Y23657D01* X30424Y23679D01* X30441Y23700D01* X30460Y23719D01* X30465Y23723D01* Y23276D01* G37* G36* Y23846D02*X30449Y23837D01* X30420Y23816D01* X30392Y23793D01* X30367Y23767D01* X30344Y23739D01* X30324Y23709D01* X30306Y23677D01* X30292Y23644D01* X30285Y23625D01* Y25325D01* X30289Y25316D01* X30307Y25284D01* X30328Y25255D01* X30352Y25227D01* X30377Y25202D01* X30405Y25179D01* X30435Y25159D01* X30465Y25142D01* Y23846D01* G37* G36* Y25259D02*X30465Y25259D01* X30444Y25276D01* X30425Y25295D01* X30407Y25316D01* X30392Y25338D01* X30378Y25362D01* X30367Y25386D01* X30358Y25412D01* X30354Y25420D01* X30350Y25427D01* X30344Y25434D01* X30337Y25439D01* X30329Y25443D01* X30321Y25446D01* X30312Y25447D01* X30304Y25447D01* X30295Y25445D01* X30287Y25442D01* X30285Y25441D01* Y25552D01* X30286Y25551D01* X30294Y25548D01* X30303Y25546D01* X30312Y25546D01* X30320Y25547D01* X30328Y25550D01* X30336Y25555D01* X30343Y25560D01* X30349Y25567D01* X30353Y25574D01* X30356Y25582D01* X30365Y25608D01* X30376Y25633D01* X30389Y25657D01* X30404Y25679D01* X30421Y25700D01* X30440Y25719D01* X30461Y25737D01* X30465Y25740D01* Y25259D01* G37* G36* Y25857D02*X30461Y25855D01* X30429Y25837D01* X30400Y25816D01* X30372Y25793D01* X30347Y25767D01* X30324Y25739D01* X30304Y25709D01* X30286Y25677D01* X30285Y25675D01* Y27288D01* X30287Y27284D01* X30308Y27255D01* X30332Y27227D01* X30357Y27202D01* X30385Y27179D01* X30415Y27159D01* X30447Y27141D01* X30465Y27133D01* Y25857D01* G37* G36* Y27246D02*X30445Y27259D01* X30424Y27276D01* X30405Y27295D01* X30387Y27316D01* X30372Y27338D01* X30358Y27362D01* X30347Y27386D01* X30338Y27412D01* X30334Y27420D01* X30330Y27427D01* X30324Y27434D01* X30317Y27439D01* X30309Y27443D01* X30301Y27446D01* X30292Y27447D01* X30285Y27447D01* Y27546D01* X30292Y27546D01* X30300Y27547D01* X30308Y27550D01* X30316Y27555D01* X30323Y27560D01* X30329Y27567D01* X30333Y27574D01* X30336Y27582D01* X30345Y27608D01* X30356Y27633D01* X30369Y27657D01* X30384Y27679D01* X30401Y27700D01* X30420Y27719D01* X30441Y27737D01* X30463Y27752D01* X30465Y27754D01* Y27246D01* G37* G36* Y27866D02*X30441Y27855D01* X30409Y27837D01* X30380Y27816D01* X30352Y27793D01* X30327Y27767D01* X30304Y27739D01* X30285Y27711D01* Y29259D01* X30288Y29255D01* X30312Y29227D01* X30337Y29202D01* X30365Y29179D01* X30395Y29159D01* X30427Y29141D01* X30460Y29127D01* X30465Y29125D01* Y27866D01* G37* G36* Y29234D02*X30448Y29244D01* X30425Y29259D01* X30404Y29276D01* X30385Y29295D01* X30367Y29316D01* X30352Y29338D01* X30338Y29362D01* X30327Y29386D01* X30318Y29412D01* X30314Y29420D01* X30310Y29427D01* X30304Y29434D01* X30297Y29439D01* X30289Y29443D01* X30285Y29445D01* Y29549D01* X30288Y29550D01* X30296Y29555D01* X30303Y29560D01* X30309Y29567D01* X30313Y29574D01* X30316Y29582D01* X30325Y29608D01* X30336Y29633D01* X30349Y29657D01* X30364Y29679D01* X30381Y29700D01* X30400Y29719D01* X30421Y29737D01* X30443Y29752D01* X30465Y29765D01* Y29234D01* G37* G36* Y29874D02*X30453Y29870D01* X30421Y29855D01* X30389Y29837D01* X30360Y29816D01* X30332Y29793D01* X30307Y29767D01* X30285Y29740D01* Y31235D01* X30292Y31227D01* X30317Y31202D01* X30345Y31179D01* X30375Y31159D01* X30407Y31141D01* X30440Y31127D01* X30465Y31118D01* Y29874D01* G37* G36* Y31225D02*X30451Y31231D01* X30428Y31244D01* X30405Y31259D01* X30384Y31276D01* X30365Y31295D01* X30347Y31316D01* X30332Y31338D01* X30318Y31362D01* X30307Y31386D01* X30298Y31412D01* X30294Y31420D01* X30290Y31427D01* X30285Y31432D01* Y31563D01* X30289Y31567D01* X30293Y31574D01* X30296Y31582D01* X30305Y31608D01* X30316Y31633D01* X30329Y31657D01* X30344Y31679D01* X30361Y31700D01* X30380Y31719D01* X30401Y31737D01* X30423Y31752D01* X30447Y31766D01* X30465Y31775D01* Y31225D01* G37* G36* Y31881D02*X30433Y31870D01* X30401Y31855D01* X30369Y31837D01* X30340Y31816D01* X30312Y31793D01* X30287Y31767D01* X30285Y31765D01* Y33214D01* X30297Y33202D01* X30325Y33179D01* X30355Y33159D01* X30387Y33141D01* X30420Y33127D01* X30454Y33115D01* X30463Y33113D01* X30465D01* Y31881D01* G37* G36* Y33217D02*X30456Y33220D01* X30431Y33231D01* X30408Y33244D01* X30385Y33259D01* X30364Y33276D01* X30345Y33295D01* X30327Y33316D01* X30312Y33338D01* X30298Y33362D01* X30287Y33386D01* X30285Y33391D01* Y33609D01* X30296Y33633D01* X30309Y33657D01* X30324Y33679D01* X30341Y33700D01* X30360Y33719D01* X30381Y33737D01* X30403Y33752D01* X30427Y33766D01* X30451Y33777D01* X30465Y33782D01* Y33217D01* G37* G36* Y33884D02*X30465Y33884D01* X30456Y33884D01* X30448Y33882D01* X30413Y33870D01* X30381Y33855D01* X30349Y33837D01* X30320Y33816D01* X30292Y33793D01* X30285Y33785D01* Y35196D01* X30305Y35179D01* X30335Y35159D01* X30367Y35141D01* X30400Y35127D01* X30434Y35115D01* X30443Y35113D01* X30452Y35113D01* X30460Y35115D01* X30465Y35116D01* Y33884D01* G37* G36* Y35210D02*X30462Y35211D01* X30436Y35220D01* X30411Y35231D01* X30388Y35244D01* X30365Y35259D01* X30344Y35276D01* X30325Y35295D01* X30307Y35316D01* X30292Y35338D01* X30285Y35349D01* Y35650D01* X30289Y35657D01* X30304Y35679D01* X30321Y35700D01* X30340Y35719D01* X30361Y35737D01* X30383Y35752D01* X30407Y35766D01* X30431Y35777D01* X30457Y35786D01* X30465Y35790D01* X30465Y35790D01* Y35210D01* G37* G36* Y35878D02*X30462Y35880D01* X30453Y35883D01* X30445Y35884D01* X30436Y35884D01* X30428Y35882D01* X30393Y35870D01* X30361Y35855D01* X30329Y35837D01* X30300Y35816D01* X30285Y35804D01* Y37179D01* X30285Y37179D01* X30315Y37159D01* X30347Y37141D01* X30380Y37127D01* X30414Y37115D01* X30423Y37113D01* X30432Y37113D01* X30440Y37115D01* X30448Y37117D01* X30456Y37122D01* X30463Y37127D01* X30465Y37130D01* Y35878D01* G37* G36* Y37197D02*X30464Y37198D01* X30457Y37204D01* X30450Y37208D01* X30442Y37211D01* X30416Y37220D01* X30391Y37231D01* X30368Y37244D01* X30345Y37259D01* X30324Y37276D01* X30305Y37295D01* X30287Y37316D01* X30285Y37319D01* Y37680D01* X30301Y37700D01* X30320Y37719D01* X30341Y37737D01* X30363Y37752D01* X30387Y37766D01* X30411Y37777D01* X30437Y37786D01* X30445Y37790D01* X30452Y37794D01* X30459Y37800D01* X30464Y37807D01* X30465Y37809D01* Y37197D01* G37* G36* Y40000D02*X30724D01* Y39834D01* X30714Y39840D01* X30682Y39858D01* X30649Y39873D01* X30615Y39884D01* X30606Y39886D01* X30597Y39886D01* X30589Y39885D01* X30581Y39882D01* X30573Y39878D01* X30566Y39872D01* X30560Y39865D01* X30556Y39858D01* X30553Y39850D01* X30551Y39841D01* X30551Y39833D01* X30552Y39824D01* X30555Y39816D01* X30559Y39808D01* X30565Y39801D01* X30572Y39796D01* X30579Y39791D01* X30587Y39788D01* X30613Y39779D01* X30638Y39768D01* X30661Y39755D01* X30684Y39740D01* X30705Y39723D01* X30724Y39704D01* Y39295D01* X30709Y39280D01* X30688Y39262D01* X30666Y39247D01* X30642Y39233D01* X30618Y39222D01* X30592Y39213D01* X30584Y39209D01* X30577Y39205D01* X30570Y39199D01* X30565Y39192D01* X30561Y39184D01* X30558Y39176D01* X30557Y39167D01* X30557Y39159D01* X30559Y39150D01* X30562Y39142D01* X30567Y39135D01* X30573Y39128D01* X30580Y39123D01* X30587Y39119D01* X30596Y39116D01* X30604Y39115D01* X30613Y39115D01* X30621Y39117D01* X30656Y39129D01* X30688Y39144D01* X30720Y39162D01* X30724Y39165D01* Y37846D01* X30702Y37858D01* X30669Y37873D01* X30635Y37884D01* X30626Y37886D01* X30617Y37886D01* X30609Y37885D01* X30601Y37882D01* X30593Y37878D01* X30586Y37872D01* X30580Y37865D01* X30576Y37858D01* X30573Y37850D01* X30571Y37841D01* X30571Y37833D01* X30572Y37824D01* X30575Y37816D01* X30579Y37808D01* X30585Y37801D01* X30592Y37796D01* X30599Y37791D01* X30607Y37788D01* X30633Y37779D01* X30658Y37768D01* X30681Y37755D01* X30704Y37740D01* X30724Y37724D01* Y37276D01* X30708Y37262D01* X30686Y37247D01* X30662Y37233D01* X30638Y37222D01* X30612Y37213D01* X30604Y37209D01* X30597Y37205D01* X30590Y37199D01* X30585Y37192D01* X30581Y37184D01* X30578Y37176D01* X30577Y37167D01* X30577Y37159D01* X30579Y37150D01* X30582Y37142D01* X30587Y37135D01* X30593Y37128D01* X30600Y37123D01* X30607Y37119D01* X30616Y37116D01* X30624Y37115D01* X30633Y37115D01* X30641Y37117D01* X30676Y37129D01* X30708Y37144D01* X30724Y37153D01* Y35857D01* X30722Y35858D01* X30689Y35873D01* X30655Y35884D01* X30646Y35886D01* X30637Y35886D01* X30629Y35885D01* X30621Y35882D01* X30613Y35878D01* X30606Y35872D01* X30600Y35865D01* X30596Y35858D01* X30593Y35850D01* X30591Y35841D01* X30591Y35833D01* X30592Y35824D01* X30595Y35816D01* X30599Y35808D01* X30605Y35801D01* X30612Y35796D01* X30619Y35791D01* X30627Y35788D01* X30653Y35779D01* X30678Y35768D01* X30701Y35755D01* X30724Y35740D01* Y35259D01* X30706Y35247D01* X30682Y35233D01* X30658Y35222D01* X30632Y35213D01* X30624Y35209D01* X30617Y35205D01* X30610Y35199D01* X30605Y35192D01* X30601Y35184D01* X30598Y35176D01* X30597Y35167D01* X30597Y35159D01* X30599Y35150D01* X30602Y35142D01* X30607Y35135D01* X30613Y35128D01* X30620Y35123D01* X30627Y35119D01* X30636Y35116D01* X30644Y35115D01* X30653Y35115D01* X30661Y35117D01* X30696Y35129D01* X30724Y35142D01* Y33866D01* X30709Y33873D01* X30675Y33884D01* X30666Y33886D01* X30657Y33886D01* X30649Y33885D01* X30641Y33882D01* X30633Y33878D01* X30626Y33872D01* X30620Y33865D01* X30616Y33858D01* X30613Y33850D01* X30611Y33841D01* X30611Y33833D01* X30612Y33824D01* X30615Y33816D01* X30619Y33808D01* X30625Y33801D01* X30632Y33796D01* X30639Y33791D01* X30647Y33788D01* X30673Y33779D01* X30698Y33768D01* X30721Y33755D01* X30724Y33754D01* Y33246D01* X30702Y33233D01* X30678Y33222D01* X30652Y33213D01* X30644Y33209D01* X30637Y33205D01* X30630Y33199D01* X30625Y33192D01* X30621Y33184D01* X30618Y33176D01* X30617Y33167D01* X30617Y33159D01* X30619Y33150D01* X30622Y33142D01* X30627Y33135D01* X30633Y33128D01* X30640Y33123D01* X30647Y33119D01* X30656Y33116D01* X30664Y33115D01* X30673Y33115D01* X30681Y33117D01* X30716Y33129D01* X30724Y33133D01* Y31874D01* X30695Y31884D01* X30686Y31886D01* X30677Y31886D01* X30669Y31885D01* X30661Y31882D01* X30653Y31878D01* X30646Y31872D01* X30640Y31865D01* X30636Y31858D01* X30633Y31850D01* X30631Y31841D01* X30631Y31833D01* X30632Y31824D01* X30635Y31816D01* X30639Y31808D01* X30645Y31801D01* X30652Y31796D01* X30659Y31791D01* X30667Y31788D01* X30693Y31779D01* X30718Y31768D01* X30724Y31765D01* Y31234D01* X30722Y31233D01* X30698Y31222D01* X30672Y31213D01* X30664Y31209D01* X30657Y31205D01* X30650Y31199D01* X30645Y31192D01* X30641Y31184D01* X30638Y31176D01* X30637Y31167D01* X30637Y31159D01* X30639Y31150D01* X30642Y31142D01* X30647Y31135D01* X30653Y31128D01* X30660Y31123D01* X30667Y31119D01* X30676Y31116D01* X30684Y31115D01* X30693Y31115D01* X30701Y31117D01* X30724Y31125D01* Y29881D01* X30715Y29884D01* X30706Y29886D01* X30697Y29886D01* X30689Y29885D01* X30681Y29882D01* X30673Y29878D01* X30666Y29872D01* X30660Y29865D01* X30656Y29858D01* X30653Y29850D01* X30651Y29841D01* X30651Y29833D01* X30652Y29824D01* X30655Y29816D01* X30659Y29808D01* X30665Y29801D01* X30672Y29796D01* X30679Y29791D01* X30687Y29788D01* X30713Y29779D01* X30724Y29774D01* Y29225D01* X30718Y29222D01* X30692Y29213D01* X30684Y29209D01* X30677Y29205D01* X30670Y29199D01* X30665Y29192D01* X30661Y29184D01* X30658Y29176D01* X30657Y29167D01* X30657Y29159D01* X30659Y29150D01* X30662Y29142D01* X30667Y29135D01* X30673Y29128D01* X30680Y29123D01* X30687Y29119D01* X30696Y29116D01* X30704Y29115D01* X30713Y29115D01* X30721Y29117D01* X30724Y29118D01* Y27886D01* X30717Y27886D01* X30709Y27885D01* X30701Y27882D01* X30693Y27878D01* X30686Y27872D01* X30680Y27865D01* X30676Y27858D01* X30673Y27850D01* X30671Y27841D01* X30671Y27833D01* X30672Y27824D01* X30675Y27816D01* X30679Y27808D01* X30685Y27801D01* X30692Y27796D01* X30699Y27791D01* X30707Y27788D01* X30724Y27782D01* Y27217D01* X30712Y27213D01* X30704Y27209D01* X30697Y27205D01* X30690Y27199D01* X30685Y27192D01* X30681Y27184D01* X30678Y27176D01* X30677Y27167D01* X30677Y27159D01* X30679Y27150D01* X30682Y27142D01* X30687Y27135D01* X30693Y27128D01* X30700Y27123D01* X30707Y27119D01* X30716Y27116D01* X30724Y27115D01* Y25883D01* X30721Y25882D01* X30713Y25878D01* X30706Y25872D01* X30700Y25865D01* X30696Y25858D01* X30693Y25850D01* X30691Y25841D01* X30691Y25833D01* X30692Y25824D01* X30695Y25816D01* X30699Y25808D01* X30705Y25801D01* X30712Y25796D01* X30719Y25791D01* X30724Y25789D01* Y25209D01* X30717Y25205D01* X30710Y25199D01* X30705Y25192D01* X30701Y25184D01* X30698Y25176D01* X30697Y25167D01* X30697Y25159D01* X30699Y25150D01* X30702Y25142D01* X30707Y25135D01* X30713Y25128D01* X30720Y25123D01* X30724Y25121D01* Y23870D01* X30720Y23865D01* X30716Y23858D01* X30713Y23850D01* X30711Y23841D01* X30711Y23833D01* X30712Y23824D01* X30715Y23816D01* X30719Y23808D01* X30724Y23802D01* Y23190D01* X30721Y23184D01* X30718Y23176D01* X30717Y23167D01* X30717Y23159D01* X30719Y23150D01* X30722Y23142D01* X30724Y23140D01* Y11861D01* X30722Y11864D01* X30716Y11871D01* X30709Y11876D01* X30702Y11880D01* X30693Y11883D01* X30685Y11884D01* X30676Y11884D01* X30668Y11882D01* X30633Y11870D01* X30601Y11855D01* X30569Y11837D01* X30540Y11816D01* X30512Y11793D01* X30487Y11767D01* X30465Y11740D01* Y13235D01* X30472Y13227D01* X30497Y13202D01* X30525Y13179D01* X30555Y13159D01* X30587Y13141D01* X30620Y13127D01* X30654Y13115D01* X30663Y13113D01* X30672Y13113D01* X30680Y13115D01* X30688Y13117D01* X30696Y13122D01* X30703Y13127D01* X30709Y13134D01* X30713Y13141D01* X30716Y13149D01* X30718Y13158D01* X30718Y13167D01* X30717Y13175D01* X30714Y13183D01* X30710Y13191D01* X30704Y13198D01* X30697Y13204D01* X30690Y13208D01* X30682Y13211D01* X30656Y13220D01* X30631Y13231D01* X30608Y13244D01* X30585Y13259D01* X30564Y13276D01* X30545Y13295D01* X30527Y13316D01* X30512Y13338D01* X30498Y13362D01* X30487Y13386D01* X30478Y13412D01* X30474Y13420D01* X30470Y13427D01* X30465Y13432D01* Y13563D01* X30469Y13567D01* X30473Y13574D01* X30476Y13582D01* X30485Y13608D01* X30496Y13633D01* X30509Y13657D01* X30524Y13679D01* X30541Y13700D01* X30560Y13719D01* X30581Y13737D01* X30603Y13752D01* X30627Y13766D01* X30651Y13777D01* X30677Y13786D01* X30685Y13790D01* X30692Y13794D01* X30699Y13800D01* X30704Y13807D01* X30708Y13815D01* X30711Y13823D01* X30712Y13832D01* X30712Y13840D01* X30710Y13849D01* X30707Y13857D01* X30702Y13864D01* X30696Y13871D01* X30689Y13876D01* X30682Y13880D01* X30673Y13883D01* X30665Y13884D01* X30656Y13884D01* X30648Y13882D01* X30613Y13870D01* X30581Y13855D01* X30549Y13837D01* X30520Y13816D01* X30492Y13793D01* X30467Y13767D01* X30465Y13765D01* Y15214D01* X30477Y15202D01* X30505Y15179D01* X30535Y15159D01* X30567Y15141D01* X30600Y15127D01* X30634Y15115D01* X30643Y15113D01* X30652Y15113D01* X30660Y15115D01* X30668Y15117D01* X30676Y15122D01* X30683Y15127D01* X30689Y15134D01* X30693Y15141D01* X30696Y15149D01* X30698Y15158D01* X30698Y15167D01* X30697Y15175D01* X30694Y15183D01* X30690Y15191D01* X30684Y15198D01* X30677Y15204D01* X30670Y15208D01* X30662Y15211D01* X30636Y15220D01* X30611Y15231D01* X30588Y15244D01* X30565Y15259D01* X30544Y15276D01* X30525Y15295D01* X30507Y15316D01* X30492Y15338D01* X30478Y15362D01* X30467Y15386D01* X30465Y15391D01* Y15609D01* X30476Y15633D01* X30489Y15657D01* X30504Y15679D01* X30521Y15700D01* X30540Y15719D01* X30561Y15737D01* X30583Y15752D01* X30607Y15766D01* X30631Y15777D01* X30657Y15786D01* X30665Y15790D01* X30672Y15794D01* X30679Y15800D01* X30684Y15807D01* X30688Y15815D01* X30691Y15823D01* X30692Y15832D01* X30692Y15840D01* X30690Y15849D01* X30687Y15857D01* X30682Y15864D01* X30676Y15871D01* X30669Y15876D01* X30662Y15880D01* X30653Y15883D01* X30645Y15884D01* X30636Y15884D01* X30628Y15882D01* X30593Y15870D01* X30561Y15855D01* X30529Y15837D01* X30500Y15816D01* X30472Y15793D01* X30465Y15785D01* Y17196D01* X30485Y17179D01* X30515Y17159D01* X30547Y17141D01* X30580Y17127D01* X30614Y17115D01* X30623Y17113D01* X30632Y17113D01* X30640Y17115D01* X30648Y17117D01* X30656Y17122D01* X30663Y17127D01* X30669Y17134D01* X30673Y17141D01* X30676Y17149D01* X30678Y17158D01* X30678Y17167D01* X30677Y17175D01* X30674Y17183D01* X30670Y17191D01* X30664Y17198D01* X30657Y17204D01* X30650Y17208D01* X30642Y17211D01* X30616Y17220D01* X30591Y17231D01* X30568Y17244D01* X30545Y17259D01* X30524Y17276D01* X30505Y17295D01* X30487Y17316D01* X30472Y17338D01* X30465Y17349D01* Y17650D01* X30469Y17657D01* X30484Y17679D01* X30501Y17700D01* X30520Y17719D01* X30541Y17737D01* X30563Y17752D01* X30587Y17766D01* X30611Y17777D01* X30637Y17786D01* X30645Y17790D01* X30652Y17794D01* X30659Y17800D01* X30664Y17807D01* X30668Y17815D01* X30671Y17823D01* X30672Y17832D01* X30672Y17840D01* X30670Y17849D01* X30667Y17857D01* X30662Y17864D01* X30656Y17871D01* X30649Y17876D01* X30642Y17880D01* X30633Y17883D01* X30625Y17884D01* X30616Y17884D01* X30608Y17882D01* X30573Y17870D01* X30541Y17855D01* X30509Y17837D01* X30480Y17816D01* X30465Y17804D01* Y19179D01* X30465Y19179D01* X30495Y19159D01* X30527Y19141D01* X30560Y19127D01* X30594Y19115D01* X30603Y19113D01* X30612Y19113D01* X30620Y19115D01* X30628Y19117D01* X30636Y19122D01* X30643Y19127D01* X30649Y19134D01* X30653Y19141D01* X30656Y19149D01* X30658Y19158D01* X30658Y19167D01* X30657Y19175D01* X30654Y19183D01* X30650Y19191D01* X30644Y19198D01* X30637Y19204D01* X30630Y19208D01* X30622Y19211D01* X30596Y19220D01* X30571Y19231D01* X30548Y19244D01* X30525Y19259D01* X30504Y19276D01* X30485Y19295D01* X30467Y19316D01* X30465Y19319D01* Y19680D01* X30481Y19700D01* X30500Y19719D01* X30521Y19737D01* X30543Y19752D01* X30567Y19766D01* X30591Y19777D01* X30617Y19786D01* X30625Y19790D01* X30632Y19794D01* X30639Y19800D01* X30644Y19807D01* X30648Y19815D01* X30651Y19823D01* X30652Y19832D01* X30652Y19840D01* X30650Y19849D01* X30647Y19857D01* X30642Y19864D01* X30636Y19871D01* X30629Y19876D01* X30622Y19880D01* X30613Y19883D01* X30605Y19884D01* X30596Y19884D01* X30588Y19882D01* X30553Y19870D01* X30521Y19855D01* X30489Y19837D01* X30465Y19820D01* Y21166D01* X30475Y21159D01* X30507Y21141D01* X30540Y21127D01* X30574Y21115D01* X30583Y21113D01* X30592Y21113D01* X30600Y21115D01* X30608Y21117D01* X30616Y21122D01* X30623Y21127D01* X30629Y21134D01* X30633Y21141D01* X30636Y21149D01* X30638Y21158D01* X30638Y21167D01* X30637Y21175D01* X30634Y21183D01* X30630Y21191D01* X30624Y21198D01* X30617Y21204D01* X30610Y21208D01* X30602Y21211D01* X30576Y21220D01* X30551Y21231D01* X30528Y21244D01* X30505Y21259D01* X30484Y21276D01* X30465Y21295D01* Y21704D01* X30480Y21719D01* X30501Y21737D01* X30523Y21752D01* X30547Y21766D01* X30571Y21777D01* X30597Y21786D01* X30605Y21790D01* X30612Y21794D01* X30619Y21800D01* X30624Y21807D01* X30628Y21815D01* X30631Y21823D01* X30632Y21832D01* X30632Y21840D01* X30630Y21849D01* X30627Y21857D01* X30622Y21864D01* X30616Y21871D01* X30609Y21876D01* X30602Y21880D01* X30593Y21883D01* X30585Y21884D01* X30576Y21884D01* X30568Y21882D01* X30533Y21870D01* X30501Y21855D01* X30469Y21837D01* X30465Y21834D01* Y23153D01* X30487Y23141D01* X30520Y23127D01* X30554Y23115D01* X30563Y23113D01* X30572Y23113D01* X30580Y23115D01* X30588Y23117D01* X30596Y23122D01* X30603Y23127D01* X30609Y23134D01* X30613Y23141D01* X30616Y23149D01* X30618Y23158D01* X30618Y23167D01* X30617Y23175D01* X30614Y23183D01* X30610Y23191D01* X30604Y23198D01* X30597Y23204D01* X30590Y23208D01* X30582Y23211D01* X30556Y23220D01* X30531Y23231D01* X30508Y23244D01* X30485Y23259D01* X30465Y23276D01* Y23723D01* X30481Y23737D01* X30503Y23752D01* X30527Y23766D01* X30551Y23777D01* X30577Y23786D01* X30585Y23790D01* X30592Y23794D01* X30599Y23800D01* X30604Y23807D01* X30608Y23815D01* X30611Y23823D01* X30612Y23832D01* X30612Y23840D01* X30610Y23849D01* X30607Y23857D01* X30602Y23864D01* X30596Y23871D01* X30589Y23876D01* X30582Y23880D01* X30573Y23883D01* X30565Y23884D01* X30556Y23884D01* X30548Y23882D01* X30513Y23870D01* X30481Y23855D01* X30465Y23846D01* Y25142D01* X30467Y25141D01* X30500Y25127D01* X30534Y25115D01* X30543Y25113D01* X30552Y25113D01* X30560Y25115D01* X30568Y25117D01* X30576Y25122D01* X30583Y25127D01* X30589Y25134D01* X30593Y25141D01* X30596Y25149D01* X30598Y25158D01* X30598Y25167D01* X30597Y25175D01* X30594Y25183D01* X30590Y25191D01* X30584Y25198D01* X30577Y25204D01* X30570Y25208D01* X30562Y25211D01* X30536Y25220D01* X30511Y25231D01* X30488Y25244D01* X30465Y25259D01* Y25740D01* X30483Y25752D01* X30507Y25766D01* X30531Y25777D01* X30557Y25786D01* X30565Y25790D01* X30572Y25794D01* X30579Y25800D01* X30584Y25807D01* X30588Y25815D01* X30591Y25823D01* X30592Y25832D01* X30592Y25840D01* X30590Y25849D01* X30587Y25857D01* X30582Y25864D01* X30576Y25871D01* X30569Y25876D01* X30562Y25880D01* X30553Y25883D01* X30545Y25884D01* X30536Y25884D01* X30528Y25882D01* X30493Y25870D01* X30465Y25857D01* Y27133D01* X30480Y27127D01* X30514Y27115D01* X30523Y27113D01* X30532Y27113D01* X30540Y27115D01* X30548Y27117D01* X30556Y27122D01* X30563Y27127D01* X30569Y27134D01* X30573Y27141D01* X30576Y27149D01* X30578Y27158D01* X30578Y27167D01* X30577Y27175D01* X30574Y27183D01* X30570Y27191D01* X30564Y27198D01* X30557Y27204D01* X30550Y27208D01* X30542Y27211D01* X30516Y27220D01* X30491Y27231D01* X30468Y27244D01* X30465Y27246D01* Y27754D01* X30487Y27766D01* X30511Y27777D01* X30537Y27786D01* X30545Y27790D01* X30552Y27794D01* X30559Y27800D01* X30564Y27807D01* X30568Y27815D01* X30571Y27823D01* X30572Y27832D01* X30572Y27840D01* X30570Y27849D01* X30567Y27857D01* X30562Y27864D01* X30556Y27871D01* X30549Y27876D01* X30542Y27880D01* X30533Y27883D01* X30525Y27884D01* X30516Y27884D01* X30508Y27882D01* X30473Y27870D01* X30465Y27866D01* Y29125D01* X30494Y29115D01* X30503Y29113D01* X30512Y29113D01* X30520Y29115D01* X30528Y29117D01* X30536Y29122D01* X30543Y29127D01* X30549Y29134D01* X30553Y29141D01* X30556Y29149D01* X30558Y29158D01* X30558Y29167D01* X30557Y29175D01* X30554Y29183D01* X30550Y29191D01* X30544Y29198D01* X30537Y29204D01* X30530Y29208D01* X30522Y29211D01* X30496Y29220D01* X30471Y29231D01* X30465Y29234D01* Y29765D01* X30467Y29766D01* X30491Y29777D01* X30517Y29786D01* X30525Y29790D01* X30532Y29794D01* X30539Y29800D01* X30544Y29807D01* X30548Y29815D01* X30551Y29823D01* X30552Y29832D01* X30552Y29840D01* X30550Y29849D01* X30547Y29857D01* X30542Y29864D01* X30536Y29871D01* X30529Y29876D01* X30522Y29880D01* X30513Y29883D01* X30505Y29884D01* X30496Y29884D01* X30488Y29882D01* X30465Y29874D01* Y31118D01* X30474Y31115D01* X30483Y31113D01* X30492Y31113D01* X30500Y31115D01* X30508Y31117D01* X30516Y31122D01* X30523Y31127D01* X30529Y31134D01* X30533Y31141D01* X30536Y31149D01* X30538Y31158D01* X30538Y31167D01* X30537Y31175D01* X30534Y31183D01* X30530Y31191D01* X30524Y31198D01* X30517Y31204D01* X30510Y31208D01* X30502Y31211D01* X30476Y31220D01* X30465Y31225D01* Y31775D01* X30471Y31777D01* X30497Y31786D01* X30505Y31790D01* X30512Y31794D01* X30519Y31800D01* X30524Y31807D01* X30528Y31815D01* X30531Y31823D01* X30532Y31832D01* X30532Y31840D01* X30530Y31849D01* X30527Y31857D01* X30522Y31864D01* X30516Y31871D01* X30509Y31876D01* X30502Y31880D01* X30493Y31883D01* X30485Y31884D01* X30476Y31884D01* X30468Y31882D01* X30465Y31881D01* Y33113D01* X30472Y33113D01* X30480Y33115D01* X30488Y33117D01* X30496Y33122D01* X30503Y33127D01* X30509Y33134D01* X30513Y33141D01* X30516Y33149D01* X30518Y33158D01* X30518Y33167D01* X30517Y33175D01* X30514Y33183D01* X30510Y33191D01* X30504Y33198D01* X30497Y33204D01* X30490Y33208D01* X30482Y33211D01* X30465Y33217D01* Y33782D01* X30477Y33786D01* X30485Y33790D01* X30492Y33794D01* X30499Y33800D01* X30504Y33807D01* X30508Y33815D01* X30511Y33823D01* X30512Y33832D01* X30512Y33840D01* X30510Y33849D01* X30507Y33857D01* X30502Y33864D01* X30496Y33871D01* X30489Y33876D01* X30482Y33880D01* X30473Y33883D01* X30465Y33884D01* Y35116D01* X30468Y35117D01* X30476Y35122D01* X30483Y35127D01* X30489Y35134D01* X30493Y35141D01* X30496Y35149D01* X30498Y35158D01* X30498Y35167D01* X30497Y35175D01* X30494Y35183D01* X30490Y35191D01* X30484Y35198D01* X30477Y35204D01* X30470Y35208D01* X30465Y35210D01* Y35790D01* X30472Y35794D01* X30479Y35800D01* X30484Y35807D01* X30488Y35815D01* X30491Y35823D01* X30492Y35832D01* X30492Y35840D01* X30490Y35849D01* X30487Y35857D01* X30482Y35864D01* X30476Y35871D01* X30469Y35876D01* X30465Y35878D01* Y37130D01* X30469Y37134D01* X30473Y37141D01* X30476Y37149D01* X30478Y37158D01* X30478Y37167D01* X30477Y37175D01* X30474Y37183D01* X30470Y37191D01* X30465Y37197D01* Y37809D01* X30468Y37815D01* X30471Y37823D01* X30472Y37832D01* X30472Y37840D01* X30470Y37849D01* X30467Y37857D01* X30465Y37859D01* Y40000D01* G37* G36* Y11549D02*X30468Y11550D01* X30476Y11555D01* X30483Y11560D01* X30489Y11567D01* X30493Y11574D01* X30496Y11582D01* X30505Y11608D01* X30516Y11633D01* X30529Y11657D01* X30544Y11679D01* X30561Y11700D01* X30580Y11719D01* X30601Y11737D01* X30623Y11752D01* X30647Y11766D01* X30671Y11777D01* X30697Y11786D01* X30705Y11790D01* X30712Y11794D01* X30719Y11800D01* X30724Y11807D01* Y11198D01* X30717Y11204D01* X30710Y11208D01* X30702Y11211D01* X30676Y11220D01* X30651Y11231D01* X30628Y11244D01* X30605Y11259D01* X30584Y11276D01* X30565Y11295D01* X30547Y11316D01* X30532Y11338D01* X30518Y11362D01* X30507Y11386D01* X30498Y11412D01* X30494Y11420D01* X30490Y11427D01* X30484Y11434D01* X30477Y11439D01* X30469Y11443D01* X30465Y11445D01* Y11549D01* G37* G36* Y11259D02*X30468Y11255D01* X30492Y11227D01* X30517Y11202D01* X30545Y11179D01* X30575Y11159D01* X30607Y11141D01* X30640Y11127D01* X30674Y11115D01* X30683Y11113D01* X30692Y11113D01* X30700Y11115D01* X30708Y11117D01* X30716Y11122D01* X30723Y11127D01* X30724Y11128D01* Y9879D01* X30722Y9880D01* X30713Y9883D01* X30705Y9884D01* X30696Y9884D01* X30688Y9882D01* X30653Y9870D01* X30621Y9855D01* X30589Y9837D01* X30560Y9816D01* X30532Y9793D01* X30507Y9767D01* X30484Y9739D01* X30465Y9711D01* Y11259D01* G37* G36* Y9546D02*X30472Y9546D01* X30480Y9547D01* X30488Y9550D01* X30496Y9555D01* X30503Y9560D01* X30509Y9567D01* X30513Y9574D01* X30516Y9582D01* X30525Y9608D01* X30536Y9633D01* X30549Y9657D01* X30564Y9679D01* X30581Y9700D01* X30600Y9719D01* X30621Y9737D01* X30643Y9752D01* X30667Y9766D01* X30691Y9777D01* X30717Y9786D01* X30724Y9789D01* Y9210D01* X30722Y9211D01* X30696Y9220D01* X30671Y9231D01* X30648Y9244D01* X30625Y9259D01* X30604Y9276D01* X30585Y9295D01* X30567Y9316D01* X30552Y9338D01* X30538Y9362D01* X30527Y9386D01* X30518Y9412D01* X30514Y9420D01* X30510Y9427D01* X30504Y9434D01* X30497Y9439D01* X30489Y9443D01* X30481Y9446D01* X30472Y9447D01* X30465Y9447D01* Y9546D01* G37* G36* Y9288D02*X30467Y9284D01* X30488Y9255D01* X30512Y9227D01* X30537Y9202D01* X30565Y9179D01* X30595Y9159D01* X30627Y9141D01* X30660Y9127D01* X30694Y9115D01* X30703Y9113D01* X30712Y9113D01* X30720Y9115D01* X30724Y9116D01* Y7884D01* X30716Y7884D01* X30708Y7882D01* X30673Y7870D01* X30641Y7855D01* X30609Y7837D01* X30580Y7816D01* X30552Y7793D01* X30527Y7767D01* X30504Y7739D01* X30484Y7709D01* X30466Y7677D01* X30465Y7675D01* Y9288D01* G37* G36* Y7552D02*X30466Y7551D01* X30474Y7548D01* X30483Y7546D01* X30492Y7546D01* X30500Y7547D01* X30508Y7550D01* X30516Y7555D01* X30523Y7560D01* X30529Y7567D01* X30533Y7574D01* X30536Y7582D01* X30545Y7608D01* X30556Y7633D01* X30569Y7657D01* X30584Y7679D01* X30601Y7700D01* X30620Y7719D01* X30641Y7737D01* X30663Y7752D01* X30687Y7766D01* X30711Y7777D01* X30724Y7782D01* Y7217D01* X30716Y7220D01* X30691Y7231D01* X30668Y7244D01* X30645Y7259D01* X30624Y7276D01* X30605Y7295D01* X30587Y7316D01* X30572Y7338D01* X30558Y7362D01* X30547Y7386D01* X30538Y7412D01* X30534Y7420D01* X30530Y7427D01* X30524Y7434D01* X30517Y7439D01* X30509Y7443D01* X30501Y7446D01* X30492Y7447D01* X30484Y7447D01* X30475Y7445D01* X30467Y7442D01* X30465Y7441D01* Y7552D01* G37* G36* Y7325D02*X30469Y7316D01* X30487Y7284D01* X30508Y7255D01* X30532Y7227D01* X30557Y7202D01* X30585Y7179D01* X30615Y7159D01* X30647Y7141D01* X30680Y7127D01* X30714Y7115D01* X30723Y7113D01* X30724D01* Y5881D01* X30693Y5870D01* X30661Y5855D01* X30629Y5837D01* X30600Y5816D01* X30572Y5793D01* X30547Y5767D01* X30524Y5739D01* X30504Y5709D01* X30486Y5677D01* X30472Y5644D01* X30465Y5625D01* Y7325D01* G37* G36* Y5571D02*X30467Y5568D01* X30472Y5561D01* X30479Y5556D01* X30486Y5551D01* X30494Y5548D01* X30503Y5546D01* X30512Y5546D01* X30520Y5547D01* X30528Y5550D01* X30536Y5555D01* X30543Y5560D01* X30549Y5567D01* X30553Y5574D01* X30556Y5582D01* X30565Y5608D01* X30576Y5633D01* X30589Y5657D01* X30604Y5679D01* X30621Y5700D01* X30640Y5719D01* X30661Y5737D01* X30683Y5752D01* X30707Y5766D01* X30724Y5774D01* Y5225D01* X30711Y5231D01* X30688Y5244D01* X30665Y5259D01* X30644Y5276D01* X30625Y5295D01* X30607Y5316D01* X30592Y5338D01* X30578Y5362D01* X30567Y5386D01* X30558Y5412D01* X30554Y5420D01* X30550Y5427D01* X30544Y5434D01* X30537Y5439D01* X30529Y5443D01* X30521Y5446D01* X30512Y5447D01* X30504Y5447D01* X30495Y5445D01* X30487Y5442D01* X30480Y5437D01* X30473Y5431D01* X30468Y5424D01* X30465Y5419D01* Y5571D01* G37* G36* Y5374D02*X30474Y5349D01* X30489Y5316D01* X30507Y5284D01* X30528Y5255D01* X30552Y5227D01* X30577Y5202D01* X30605Y5179D01* X30635Y5159D01* X30667Y5141D01* X30700Y5127D01* X30724Y5119D01* Y3874D01* X30713Y3870D01* X30681Y3855D01* X30649Y3837D01* X30620Y3816D01* X30592Y3793D01* X30567Y3767D01* X30544Y3739D01* X30524Y3709D01* X30506Y3677D01* X30492Y3644D01* X30480Y3610D01* X30478Y3601D01* X30478Y3593D01* X30479Y3584D01* X30482Y3576D01* X30487Y3568D01* X30492Y3561D01* X30499Y3556D01* X30506Y3551D01* X30514Y3548D01* X30523Y3546D01* X30532Y3546D01* X30540Y3547D01* X30548Y3550D01* X30556Y3555D01* X30563Y3560D01* X30569Y3567D01* X30573Y3574D01* X30576Y3582D01* X30585Y3608D01* X30596Y3633D01* X30609Y3657D01* X30624Y3679D01* X30641Y3700D01* X30660Y3719D01* X30681Y3737D01* X30703Y3752D01* X30724Y3764D01* Y3235D01* X30708Y3244D01* X30685Y3259D01* X30664Y3276D01* X30645Y3295D01* X30627Y3316D01* X30612Y3338D01* X30598Y3362D01* X30587Y3386D01* X30578Y3412D01* X30574Y3420D01* X30570Y3427D01* X30564Y3434D01* X30557Y3439D01* X30549Y3443D01* X30541Y3446D01* X30532Y3447D01* X30524Y3447D01* X30515Y3445D01* X30507Y3442D01* X30500Y3437D01* X30493Y3431D01* X30488Y3424D01* X30484Y3417D01* X30481Y3409D01* X30480Y3400D01* X30480Y3391D01* X30482Y3383D01* X30494Y3349D01* X30509Y3316D01* X30527Y3284D01* X30548Y3255D01* X30572Y3227D01* X30597Y3202D01* X30625Y3179D01* X30655Y3159D01* X30687Y3141D01* X30720Y3127D01* X30724Y3125D01* Y1866D01* X30701Y1855D01* X30669Y1837D01* X30640Y1816D01* X30612Y1793D01* X30587Y1767D01* X30564Y1739D01* X30544Y1709D01* X30526Y1677D01* X30512Y1644D01* X30500Y1610D01* X30498Y1601D01* X30498Y1593D01* X30499Y1584D01* X30502Y1576D01* X30507Y1568D01* X30512Y1561D01* X30519Y1556D01* X30526Y1551D01* X30534Y1548D01* X30543Y1546D01* X30552Y1546D01* X30560Y1547D01* X30568Y1550D01* X30576Y1555D01* X30583Y1560D01* X30589Y1567D01* X30593Y1574D01* X30596Y1582D01* X30605Y1608D01* X30616Y1633D01* X30629Y1657D01* X30644Y1679D01* X30661Y1700D01* X30680Y1719D01* X30701Y1737D01* X30723Y1752D01* X30724Y1753D01* Y1246D01* X30705Y1259D01* X30684Y1276D01* X30665Y1295D01* X30647Y1316D01* X30632Y1338D01* X30618Y1362D01* X30607Y1386D01* X30598Y1412D01* X30594Y1420D01* X30590Y1427D01* X30584Y1434D01* X30577Y1439D01* X30569Y1443D01* X30561Y1446D01* X30552Y1447D01* X30544Y1447D01* X30535Y1445D01* X30527Y1442D01* X30520Y1437D01* X30513Y1431D01* X30508Y1424D01* X30504Y1417D01* X30501Y1409D01* X30500Y1400D01* X30500Y1391D01* X30502Y1383D01* X30514Y1349D01* X30529Y1316D01* X30547Y1284D01* X30568Y1255D01* X30592Y1227D01* X30617Y1202D01* X30645Y1179D01* X30675Y1159D01* X30707Y1141D01* X30724Y1134D01* Y0D01* X30465D01* Y5374D01* G37* G36* X30724Y40000D02*X30904D01* Y37625D01* X30895Y37651D01* X30880Y37683D01* X30862Y37715D01* X30841Y37744D01* X30817Y37772D01* X30792Y37797D01* X30764Y37820D01* X30734Y37840D01* X30724Y37846D01* Y39165D01* X30749Y39183D01* X30777Y39207D01* X30802Y39232D01* X30825Y39260D01* X30845Y39290D01* X30863Y39322D01* X30877Y39355D01* X30889Y39389D01* X30891Y39398D01* X30891Y39407D01* X30890Y39415D01* X30887Y39423D01* X30882Y39431D01* X30877Y39438D01* X30870Y39444D01* X30863Y39448D01* X30855Y39451D01* X30846Y39453D01* X30837Y39453D01* X30829Y39452D01* X30821Y39449D01* X30813Y39445D01* X30806Y39439D01* X30800Y39433D01* X30796Y39425D01* X30793Y39417D01* X30784Y39391D01* X30773Y39366D01* X30760Y39343D01* X30745Y39320D01* X30728Y39299D01* X30724Y39295D01* Y39704D01* X30724Y39704D01* X30742Y39683D01* X30757Y39661D01* X30771Y39637D01* X30782Y39613D01* X30791Y39587D01* X30795Y39579D01* X30799Y39572D01* X30805Y39565D01* X30812Y39560D01* X30820Y39556D01* X30828Y39553D01* X30837Y39552D01* X30845Y39552D01* X30854Y39554D01* X30862Y39557D01* X30869Y39562D01* X30876Y39568D01* X30881Y39575D01* X30885Y39582D01* X30888Y39591D01* X30889Y39599D01* X30889Y39608D01* X30887Y39617D01* X30875Y39651D01* X30860Y39683D01* X30842Y39715D01* X30821Y39744D01* X30797Y39772D01* X30772Y39797D01* X30744Y39820D01* X30724Y39834D01* Y40000D01* G37* G36* X30904Y0D02*X30724D01* Y1134D01* X30740Y1127D01* X30774Y1115D01* X30783Y1113D01* X30792Y1113D01* X30800Y1115D01* X30808Y1117D01* X30816Y1122D01* X30823Y1127D01* X30829Y1134D01* X30833Y1141D01* X30836Y1149D01* X30838Y1158D01* X30838Y1167D01* X30837Y1175D01* X30834Y1183D01* X30830Y1191D01* X30824Y1198D01* X30817Y1204D01* X30810Y1208D01* X30802Y1211D01* X30776Y1220D01* X30751Y1231D01* X30728Y1244D01* X30724Y1246D01* Y1753D01* X30747Y1766D01* X30771Y1777D01* X30797Y1786D01* X30805Y1790D01* X30812Y1794D01* X30819Y1800D01* X30824Y1807D01* X30828Y1815D01* X30831Y1823D01* X30832Y1832D01* X30832Y1840D01* X30830Y1849D01* X30827Y1857D01* X30822Y1864D01* X30816Y1871D01* X30809Y1876D01* X30802Y1880D01* X30793Y1883D01* X30785Y1884D01* X30776Y1884D01* X30768Y1882D01* X30733Y1870D01* X30724Y1866D01* Y3125D01* X30754Y3115D01* X30763Y3113D01* X30772Y3113D01* X30780Y3115D01* X30788Y3117D01* X30796Y3122D01* X30803Y3127D01* X30809Y3134D01* X30813Y3141D01* X30816Y3149D01* X30818Y3158D01* X30818Y3167D01* X30817Y3175D01* X30814Y3183D01* X30810Y3191D01* X30804Y3198D01* X30797Y3204D01* X30790Y3208D01* X30782Y3211D01* X30756Y3220D01* X30731Y3231D01* X30724Y3235D01* Y3764D01* X30727Y3766D01* X30751Y3777D01* X30777Y3786D01* X30785Y3790D01* X30792Y3794D01* X30799Y3800D01* X30804Y3807D01* X30808Y3815D01* X30811Y3823D01* X30812Y3832D01* X30812Y3840D01* X30810Y3849D01* X30807Y3857D01* X30802Y3864D01* X30796Y3871D01* X30789Y3876D01* X30782Y3880D01* X30773Y3883D01* X30765Y3884D01* X30756Y3884D01* X30748Y3882D01* X30724Y3874D01* Y5119D01* X30734Y5115D01* X30743Y5113D01* X30752Y5113D01* X30760Y5115D01* X30768Y5117D01* X30776Y5122D01* X30783Y5127D01* X30789Y5134D01* X30793Y5141D01* X30796Y5149D01* X30798Y5158D01* X30798Y5167D01* X30797Y5175D01* X30794Y5183D01* X30790Y5191D01* X30784Y5198D01* X30777Y5204D01* X30770Y5208D01* X30762Y5211D01* X30736Y5220D01* X30724Y5225D01* Y5774D01* X30731Y5777D01* X30757Y5786D01* X30765Y5790D01* X30772Y5794D01* X30779Y5800D01* X30784Y5807D01* X30788Y5815D01* X30791Y5823D01* X30792Y5832D01* X30792Y5840D01* X30790Y5849D01* X30787Y5857D01* X30782Y5864D01* X30776Y5871D01* X30769Y5876D01* X30762Y5880D01* X30753Y5883D01* X30745Y5884D01* X30736Y5884D01* X30728Y5882D01* X30724Y5881D01* Y7113D01* X30732Y7113D01* X30740Y7115D01* X30748Y7117D01* X30756Y7122D01* X30763Y7127D01* X30769Y7134D01* X30773Y7141D01* X30776Y7149D01* X30778Y7158D01* X30778Y7167D01* X30777Y7175D01* X30774Y7183D01* X30770Y7191D01* X30764Y7198D01* X30757Y7204D01* X30750Y7208D01* X30742Y7211D01* X30724Y7217D01* Y7782D01* X30737Y7786D01* X30745Y7790D01* X30752Y7794D01* X30759Y7800D01* X30764Y7807D01* X30768Y7815D01* X30771Y7823D01* X30772Y7832D01* X30772Y7840D01* X30770Y7849D01* X30767Y7857D01* X30762Y7864D01* X30756Y7871D01* X30749Y7876D01* X30742Y7880D01* X30733Y7883D01* X30725Y7884D01* X30724D01* Y9116D01* X30728Y9117D01* X30736Y9122D01* X30743Y9127D01* X30749Y9134D01* X30753Y9141D01* X30756Y9149D01* X30758Y9158D01* X30758Y9167D01* X30757Y9175D01* X30754Y9183D01* X30750Y9191D01* X30744Y9198D01* X30737Y9204D01* X30730Y9208D01* X30724Y9210D01* Y9789D01* X30725Y9790D01* X30732Y9794D01* X30739Y9800D01* X30744Y9807D01* X30748Y9815D01* X30751Y9823D01* X30752Y9832D01* X30752Y9840D01* X30750Y9849D01* X30747Y9857D01* X30742Y9864D01* X30736Y9871D01* X30729Y9876D01* X30724Y9879D01* Y11128D01* X30729Y11134D01* X30733Y11141D01* X30736Y11149D01* X30738Y11158D01* X30738Y11167D01* X30737Y11175D01* X30734Y11183D01* X30730Y11191D01* X30724Y11198D01* X30724Y11198D01* Y11807D01* X30724Y11807D01* X30728Y11815D01* X30731Y11823D01* X30732Y11832D01* X30732Y11840D01* X30730Y11849D01* X30727Y11857D01* X30724Y11861D01* Y23140D01* X30727Y23135D01* X30733Y23128D01* X30740Y23123D01* X30747Y23119D01* X30756Y23116D01* X30764Y23115D01* X30773Y23115D01* X30781Y23117D01* X30816Y23129D01* X30848Y23144D01* X30880Y23162D01* X30904Y23180D01* Y21834D01* X30894Y21840D01* X30862Y21858D01* X30829Y21873D01* X30795Y21884D01* X30786Y21886D01* X30777Y21886D01* X30769Y21885D01* X30761Y21882D01* X30753Y21878D01* X30746Y21872D01* X30740Y21865D01* X30736Y21858D01* X30733Y21850D01* X30731Y21841D01* X30731Y21833D01* X30732Y21824D01* X30735Y21816D01* X30739Y21808D01* X30745Y21801D01* X30752Y21796D01* X30759Y21791D01* X30767Y21788D01* X30793Y21779D01* X30818Y21768D01* X30841Y21755D01* X30864Y21740D01* X30885Y21723D01* X30904Y21704D01* Y21295D01* X30889Y21280D01* X30868Y21262D01* X30846Y21247D01* X30822Y21233D01* X30798Y21222D01* X30772Y21213D01* X30764Y21209D01* X30757Y21205D01* X30750Y21199D01* X30745Y21192D01* X30741Y21184D01* X30738Y21176D01* X30737Y21167D01* X30737Y21159D01* X30739Y21150D01* X30742Y21142D01* X30747Y21135D01* X30753Y21128D01* X30760Y21123D01* X30767Y21119D01* X30776Y21116D01* X30784Y21115D01* X30793Y21115D01* X30801Y21117D01* X30836Y21129D01* X30868Y21144D01* X30900Y21162D01* X30904Y21165D01* Y19846D01* X30882Y19858D01* X30849Y19873D01* X30815Y19884D01* X30806Y19886D01* X30797Y19886D01* X30789Y19885D01* X30781Y19882D01* X30773Y19878D01* X30766Y19872D01* X30760Y19865D01* X30756Y19858D01* X30753Y19850D01* X30751Y19841D01* X30751Y19833D01* X30752Y19824D01* X30755Y19816D01* X30759Y19808D01* X30765Y19801D01* X30772Y19796D01* X30779Y19791D01* X30787Y19788D01* X30813Y19779D01* X30838Y19768D01* X30861Y19755D01* X30884Y19740D01* X30904Y19724D01* Y19276D01* X30888Y19262D01* X30866Y19247D01* X30842Y19233D01* X30818Y19222D01* X30792Y19213D01* X30784Y19209D01* X30777Y19205D01* X30770Y19199D01* X30765Y19192D01* X30761Y19184D01* X30758Y19176D01* X30757Y19167D01* X30757Y19159D01* X30759Y19150D01* X30762Y19142D01* X30767Y19135D01* X30773Y19128D01* X30780Y19123D01* X30787Y19119D01* X30796Y19116D01* X30804Y19115D01* X30813Y19115D01* X30821Y19117D01* X30856Y19129D01* X30888Y19144D01* X30904Y19153D01* Y17857D01* X30902Y17858D01* X30869Y17873D01* X30835Y17884D01* X30826Y17886D01* X30817Y17886D01* X30809Y17885D01* X30801Y17882D01* X30793Y17878D01* X30786Y17872D01* X30780Y17865D01* X30776Y17858D01* X30773Y17850D01* X30771Y17841D01* X30771Y17833D01* X30772Y17824D01* X30775Y17816D01* X30779Y17808D01* X30785Y17801D01* X30792Y17796D01* X30799Y17791D01* X30807Y17788D01* X30833Y17779D01* X30858Y17768D01* X30881Y17755D01* X30904Y17740D01* Y17259D01* X30886Y17247D01* X30862Y17233D01* X30838Y17222D01* X30812Y17213D01* X30804Y17209D01* X30797Y17205D01* X30790Y17199D01* X30785Y17192D01* X30781Y17184D01* X30778Y17176D01* X30777Y17167D01* X30777Y17159D01* X30779Y17150D01* X30782Y17142D01* X30787Y17135D01* X30793Y17128D01* X30800Y17123D01* X30807Y17119D01* X30816Y17116D01* X30824Y17115D01* X30833Y17115D01* X30841Y17117D01* X30876Y17129D01* X30904Y17142D01* Y15866D01* X30889Y15873D01* X30855Y15884D01* X30846Y15886D01* X30837Y15886D01* X30829Y15885D01* X30821Y15882D01* X30813Y15878D01* X30806Y15872D01* X30800Y15865D01* X30796Y15858D01* X30793Y15850D01* X30791Y15841D01* X30791Y15833D01* X30792Y15824D01* X30795Y15816D01* X30799Y15808D01* X30805Y15801D01* X30812Y15796D01* X30819Y15791D01* X30827Y15788D01* X30853Y15779D01* X30878Y15768D01* X30901Y15755D01* X30904Y15754D01* Y15246D01* X30882Y15233D01* X30858Y15222D01* X30832Y15213D01* X30824Y15209D01* X30817Y15205D01* X30810Y15199D01* X30805Y15192D01* X30801Y15184D01* X30798Y15176D01* X30797Y15167D01* X30797Y15159D01* X30799Y15150D01* X30802Y15142D01* X30807Y15135D01* X30813Y15128D01* X30820Y15123D01* X30827Y15119D01* X30836Y15116D01* X30844Y15115D01* X30853Y15115D01* X30861Y15117D01* X30896Y15129D01* X30904Y15133D01* Y13874D01* X30875Y13884D01* X30866Y13886D01* X30857Y13886D01* X30849Y13885D01* X30841Y13882D01* X30833Y13878D01* X30826Y13872D01* X30820Y13865D01* X30816Y13858D01* X30813Y13850D01* X30811Y13841D01* X30811Y13833D01* X30812Y13824D01* X30815Y13816D01* X30819Y13808D01* X30825Y13801D01* X30832Y13796D01* X30839Y13791D01* X30847Y13788D01* X30873Y13779D01* X30898Y13768D01* X30904Y13765D01* Y13234D01* X30902Y13233D01* X30878Y13222D01* X30852Y13213D01* X30844Y13209D01* X30837Y13205D01* X30830Y13199D01* X30825Y13192D01* X30821Y13184D01* X30818Y13176D01* X30817Y13167D01* X30817Y13159D01* X30819Y13150D01* X30822Y13142D01* X30827Y13135D01* X30833Y13128D01* X30840Y13123D01* X30847Y13119D01* X30856Y13116D01* X30864Y13115D01* X30873Y13115D01* X30881Y13117D01* X30904Y13125D01* Y11881D01* X30895Y11884D01* X30886Y11886D01* X30877Y11886D01* X30869Y11885D01* X30861Y11882D01* X30853Y11878D01* X30846Y11872D01* X30840Y11865D01* X30836Y11858D01* X30833Y11850D01* X30831Y11841D01* X30831Y11833D01* X30832Y11824D01* X30835Y11816D01* X30839Y11808D01* X30845Y11801D01* X30852Y11796D01* X30859Y11791D01* X30867Y11788D01* X30893Y11779D01* X30904Y11774D01* Y11225D01* X30898Y11222D01* X30872Y11213D01* X30864Y11209D01* X30857Y11205D01* X30850Y11199D01* X30845Y11192D01* X30841Y11184D01* X30838Y11176D01* X30837Y11167D01* X30837Y11159D01* X30839Y11150D01* X30842Y11142D01* X30847Y11135D01* X30853Y11128D01* X30860Y11123D01* X30867Y11119D01* X30876Y11116D01* X30884Y11115D01* X30893Y11115D01* X30901Y11117D01* X30904Y11118D01* Y9886D01* X30897Y9886D01* X30889Y9885D01* X30881Y9882D01* X30873Y9878D01* X30866Y9872D01* X30860Y9865D01* X30856Y9858D01* X30853Y9850D01* X30851Y9841D01* X30851Y9833D01* X30852Y9824D01* X30855Y9816D01* X30859Y9808D01* X30865Y9801D01* X30872Y9796D01* X30879Y9791D01* X30887Y9788D01* X30904Y9782D01* Y9217D01* X30892Y9213D01* X30884Y9209D01* X30877Y9205D01* X30870Y9199D01* X30865Y9192D01* X30861Y9184D01* X30858Y9176D01* X30857Y9167D01* X30857Y9159D01* X30859Y9150D01* X30862Y9142D01* X30867Y9135D01* X30873Y9128D01* X30880Y9123D01* X30887Y9119D01* X30896Y9116D01* X30904Y9115D01* Y7883D01* X30901Y7882D01* X30893Y7878D01* X30886Y7872D01* X30880Y7865D01* X30876Y7858D01* X30873Y7850D01* X30871Y7841D01* X30871Y7833D01* X30872Y7824D01* X30875Y7816D01* X30879Y7808D01* X30885Y7801D01* X30892Y7796D01* X30899Y7791D01* X30904Y7789D01* Y7209D01* X30897Y7205D01* X30890Y7199D01* X30885Y7192D01* X30881Y7184D01* X30878Y7176D01* X30877Y7167D01* X30877Y7159D01* X30879Y7150D01* X30882Y7142D01* X30887Y7135D01* X30893Y7128D01* X30900Y7123D01* X30904Y7121D01* Y5870D01* X30900Y5865D01* X30896Y5858D01* X30893Y5850D01* X30891Y5841D01* X30891Y5833D01* X30892Y5824D01* X30895Y5816D01* X30899Y5808D01* X30904Y5802D01* Y5190D01* X30901Y5184D01* X30898Y5176D01* X30897Y5167D01* X30897Y5159D01* X30899Y5150D01* X30902Y5142D01* X30904Y5140D01* Y0D01* G37* G36* Y23319D02*X30888Y23299D01* X30869Y23280D01* X30848Y23262D01* X30826Y23247D01* X30802Y23233D01* X30778Y23222D01* X30752Y23213D01* X30744Y23209D01* X30737Y23205D01* X30730Y23199D01* X30725Y23192D01* X30724Y23190D01* Y23802D01* X30725Y23801D01* X30732Y23796D01* X30739Y23791D01* X30747Y23788D01* X30773Y23779D01* X30798Y23768D01* X30821Y23755D01* X30844Y23740D01* X30865Y23723D01* X30884Y23704D01* X30902Y23683D01* X30904Y23680D01* Y23319D01* G37* G36* Y23820D02*X30904Y23820D01* X30874Y23840D01* X30842Y23858D01* X30809Y23873D01* X30775Y23884D01* X30766Y23886D01* X30757Y23886D01* X30749Y23885D01* X30741Y23882D01* X30733Y23878D01* X30726Y23872D01* X30724Y23870D01* Y25121D01* X30727Y25119D01* X30736Y25116D01* X30744Y25115D01* X30753Y25115D01* X30761Y25117D01* X30796Y25129D01* X30828Y25144D01* X30860Y25162D01* X30889Y25183D01* X30904Y25196D01* Y23820D01* G37* G36* Y25350D02*X30900Y25343D01* X30885Y25320D01* X30868Y25299D01* X30849Y25280D01* X30828Y25262D01* X30806Y25247D01* X30782Y25233D01* X30758Y25222D01* X30732Y25213D01* X30724Y25209D01* X30724Y25209D01* Y25789D01* X30727Y25788D01* X30753Y25779D01* X30778Y25768D01* X30801Y25755D01* X30824Y25740D01* X30845Y25723D01* X30864Y25704D01* X30882Y25683D01* X30897Y25661D01* X30904Y25650D01* Y25350D01* G37* G36* Y25804D02*X30884Y25820D01* X30854Y25840D01* X30822Y25858D01* X30789Y25873D01* X30755Y25884D01* X30746Y25886D01* X30737Y25886D01* X30729Y25885D01* X30724Y25883D01* Y27115D01* X30724D01* X30733Y27115D01* X30741Y27117D01* X30776Y27129D01* X30808Y27144D01* X30840Y27162D01* X30869Y27183D01* X30897Y27207D01* X30904Y27214D01* Y25804D01* G37* G36* Y27391D02*X30893Y27366D01* X30880Y27343D01* X30865Y27320D01* X30848Y27299D01* X30829Y27280D01* X30808Y27262D01* X30786Y27247D01* X30762Y27233D01* X30738Y27222D01* X30724Y27217D01* Y27782D01* X30733Y27779D01* X30758Y27768D01* X30781Y27755D01* X30804Y27740D01* X30825Y27723D01* X30844Y27704D01* X30862Y27683D01* X30877Y27661D01* X30891Y27637D01* X30902Y27613D01* X30904Y27608D01* Y27391D01* G37* G36* Y27785D02*X30892Y27797D01* X30864Y27820D01* X30834Y27840D01* X30802Y27858D01* X30769Y27873D01* X30735Y27884D01* X30726Y27886D01* X30724D01* Y29118D01* X30756Y29129D01* X30788Y29144D01* X30820Y29162D01* X30849Y29183D01* X30877Y29207D01* X30902Y29232D01* X30904Y29235D01* Y27785D01* G37* G36* Y29437D02*X30900Y29433D01* X30896Y29425D01* X30893Y29417D01* X30884Y29391D01* X30873Y29366D01* X30860Y29343D01* X30845Y29320D01* X30828Y29299D01* X30809Y29280D01* X30788Y29262D01* X30766Y29247D01* X30742Y29233D01* X30724Y29225D01* Y29774D01* X30738Y29768D01* X30761Y29755D01* X30784Y29740D01* X30805Y29723D01* X30824Y29704D01* X30842Y29683D01* X30857Y29661D01* X30871Y29637D01* X30882Y29613D01* X30891Y29587D01* X30895Y29579D01* X30899Y29572D01* X30904Y29567D01* Y29437D01* G37* G36* Y29764D02*X30897Y29772D01* X30872Y29797D01* X30844Y29820D01* X30814Y29840D01* X30782Y29858D01* X30749Y29873D01* X30724Y29881D01* Y31125D01* X30736Y31129D01* X30768Y31144D01* X30800Y31162D01* X30829Y31183D01* X30857Y31207D01* X30882Y31232D01* X30904Y31259D01* Y29764D01* G37* G36* Y31450D02*X30901Y31449D01* X30893Y31445D01* X30886Y31439D01* X30880Y31433D01* X30876Y31425D01* X30873Y31417D01* X30864Y31391D01* X30853Y31366D01* X30840Y31343D01* X30825Y31320D01* X30808Y31299D01* X30789Y31280D01* X30768Y31262D01* X30746Y31247D01* X30724Y31234D01* Y31765D01* X30741Y31755D01* X30764Y31740D01* X30785Y31723D01* X30804Y31704D01* X30822Y31683D01* X30837Y31661D01* X30851Y31637D01* X30862Y31613D01* X30871Y31587D01* X30875Y31579D01* X30879Y31572D01* X30885Y31565D01* X30892Y31560D01* X30900Y31556D01* X30904Y31555D01* Y31450D01* G37* G36* Y31740D02*X30901Y31744D01* X30877Y31772D01* X30852Y31797D01* X30824Y31820D01* X30794Y31840D01* X30762Y31858D01* X30729Y31873D01* X30724Y31874D01* Y33133D01* X30748Y33144D01* X30780Y33162D01* X30809Y33183D01* X30837Y33207D01* X30862Y33232D01* X30885Y33260D01* X30904Y33288D01* Y31740D01* G37* G36* Y33453D02*X30897Y33453D01* X30889Y33452D01* X30881Y33449D01* X30873Y33445D01* X30866Y33439D01* X30860Y33433D01* X30856Y33425D01* X30853Y33417D01* X30844Y33391D01* X30833Y33366D01* X30820Y33343D01* X30805Y33320D01* X30788Y33299D01* X30769Y33280D01* X30748Y33262D01* X30726Y33247D01* X30724Y33246D01* Y33754D01* X30744Y33740D01* X30765Y33723D01* X30784Y33704D01* X30802Y33683D01* X30817Y33661D01* X30831Y33637D01* X30842Y33613D01* X30851Y33587D01* X30855Y33579D01* X30859Y33572D01* X30865Y33565D01* X30872Y33560D01* X30880Y33556D01* X30888Y33553D01* X30897Y33552D01* X30904Y33552D01* Y33453D01* G37* G36* Y33711D02*X30902Y33715D01* X30881Y33744D01* X30857Y33772D01* X30832Y33797D01* X30804Y33820D01* X30774Y33840D01* X30742Y33858D01* X30724Y33866D01* Y35142D01* X30728Y35144D01* X30760Y35162D01* X30789Y35183D01* X30817Y35207D01* X30842Y35232D01* X30865Y35260D01* X30885Y35290D01* X30903Y35322D01* X30904Y35324D01* Y33711D01* G37* G36* Y35447D02*X30903Y35448D01* X30895Y35451D01* X30886Y35453D01* X30877Y35453D01* X30869Y35452D01* X30861Y35449D01* X30853Y35445D01* X30846Y35439D01* X30840Y35433D01* X30836Y35425D01* X30833Y35417D01* X30824Y35391D01* X30813Y35366D01* X30800Y35343D01* X30785Y35320D01* X30768Y35299D01* X30749Y35280D01* X30728Y35262D01* X30724Y35259D01* Y35740D01* X30745Y35723D01* X30764Y35704D01* X30782Y35683D01* X30797Y35661D01* X30811Y35637D01* X30822Y35613D01* X30831Y35587D01* X30835Y35579D01* X30839Y35572D01* X30845Y35565D01* X30852Y35560D01* X30860Y35556D01* X30868Y35553D01* X30877Y35552D01* X30885Y35552D01* X30894Y35554D01* X30902Y35557D01* X30904Y35559D01* Y35447D01* G37* G36* Y35674D02*X30900Y35683D01* X30882Y35715D01* X30861Y35744D01* X30837Y35772D01* X30812Y35797D01* X30784Y35820D01* X30754Y35840D01* X30724Y35857D01* Y37153D01* X30740Y37162D01* X30769Y37183D01* X30797Y37207D01* X30822Y37232D01* X30845Y37260D01* X30865Y37290D01* X30883Y37322D01* X30897Y37355D01* X30904Y37374D01* Y35674D01* G37* G36* Y37428D02*X30902Y37431D01* X30897Y37438D01* X30890Y37444D01* X30883Y37448D01* X30875Y37451D01* X30866Y37453D01* X30857Y37453D01* X30849Y37452D01* X30841Y37449D01* X30833Y37445D01* X30826Y37439D01* X30820Y37433D01* X30816Y37425D01* X30813Y37417D01* X30804Y37391D01* X30793Y37366D01* X30780Y37343D01* X30765Y37320D01* X30748Y37299D01* X30729Y37280D01* X30724Y37276D01* Y37724D01* X30725Y37723D01* X30744Y37704D01* X30762Y37683D01* X30777Y37661D01* X30791Y37637D01* X30802Y37613D01* X30811Y37587D01* X30815Y37579D01* X30819Y37572D01* X30825Y37565D01* X30832Y37560D01* X30840Y37556D01* X30848Y37553D01* X30857Y37552D01* X30865Y37552D01* X30874Y37554D01* X30882Y37557D01* X30889Y37562D01* X30896Y37568D01* X30901Y37575D01* X30904Y37580D01* Y37428D01* G37* G36* Y40000D02*X31084D01* Y19625D01* X31075Y19651D01* X31060Y19683D01* X31042Y19715D01* X31021Y19744D01* X30997Y19772D01* X30972Y19797D01* X30944Y19820D01* X30914Y19840D01* X30904Y19846D01* Y21165D01* X30929Y21183D01* X30957Y21207D01* X30982Y21232D01* X31005Y21260D01* X31025Y21290D01* X31043Y21322D01* X31057Y21355D01* X31069Y21389D01* X31071Y21398D01* X31071Y21407D01* X31070Y21415D01* X31067Y21423D01* X31062Y21431D01* X31057Y21438D01* X31050Y21444D01* X31043Y21448D01* X31035Y21451D01* X31026Y21453D01* X31017Y21453D01* X31009Y21452D01* X31001Y21449D01* X30993Y21445D01* X30986Y21439D01* X30980Y21433D01* X30976Y21425D01* X30973Y21417D01* X30964Y21391D01* X30953Y21366D01* X30940Y21343D01* X30925Y21320D01* X30908Y21299D01* X30904Y21295D01* Y21704D01* X30904Y21704D01* X30922Y21683D01* X30937Y21661D01* X30951Y21637D01* X30962Y21613D01* X30971Y21587D01* X30975Y21579D01* X30979Y21572D01* X30985Y21565D01* X30992Y21560D01* X31000Y21556D01* X31008Y21553D01* X31017Y21552D01* X31025Y21552D01* X31034Y21554D01* X31042Y21557D01* X31049Y21562D01* X31056Y21568D01* X31061Y21575D01* X31065Y21582D01* X31068Y21591D01* X31069Y21599D01* X31069Y21608D01* X31067Y21617D01* X31055Y21651D01* X31040Y21683D01* X31022Y21715D01* X31001Y21744D01* X30977Y21772D01* X30952Y21797D01* X30924Y21820D01* X30904Y21834D01* Y23180D01* X30909Y23183D01* X30937Y23207D01* X30962Y23232D01* X30985Y23260D01* X31005Y23290D01* X31023Y23322D01* X31037Y23355D01* X31049Y23389D01* X31051Y23398D01* X31051Y23407D01* X31050Y23415D01* X31047Y23423D01* X31042Y23431D01* X31037Y23438D01* X31030Y23444D01* X31023Y23448D01* X31015Y23451D01* X31006Y23453D01* X30997Y23453D01* X30989Y23452D01* X30981Y23449D01* X30973Y23445D01* X30966Y23439D01* X30960Y23433D01* X30956Y23425D01* X30953Y23417D01* X30944Y23391D01* X30933Y23366D01* X30920Y23343D01* X30905Y23320D01* X30904Y23319D01* Y23680D01* X30917Y23661D01* X30931Y23637D01* X30942Y23613D01* X30951Y23587D01* X30955Y23579D01* X30959Y23572D01* X30965Y23565D01* X30972Y23560D01* X30980Y23556D01* X30988Y23553D01* X30997Y23552D01* X31005Y23552D01* X31014Y23554D01* X31022Y23557D01* X31029Y23562D01* X31036Y23568D01* X31041Y23575D01* X31045Y23582D01* X31048Y23591D01* X31049Y23599D01* X31049Y23608D01* X31047Y23617D01* X31035Y23651D01* X31020Y23683D01* X31002Y23715D01* X30981Y23744D01* X30957Y23772D01* X30932Y23797D01* X30904Y23820D01* Y25196D01* X30917Y25207D01* X30942Y25232D01* X30965Y25260D01* X30985Y25290D01* X31003Y25322D01* X31017Y25355D01* X31029Y25389D01* X31031Y25398D01* X31031Y25407D01* X31030Y25415D01* X31027Y25423D01* X31022Y25431D01* X31017Y25438D01* X31010Y25444D01* X31003Y25448D01* X30995Y25451D01* X30986Y25453D01* X30977Y25453D01* X30969Y25452D01* X30961Y25449D01* X30953Y25445D01* X30946Y25439D01* X30940Y25433D01* X30936Y25425D01* X30933Y25417D01* X30924Y25391D01* X30913Y25366D01* X30904Y25350D01* Y25650D01* X30911Y25637D01* X30922Y25613D01* X30931Y25587D01* X30935Y25579D01* X30939Y25572D01* X30945Y25565D01* X30952Y25560D01* X30960Y25556D01* X30968Y25553D01* X30977Y25552D01* X30985Y25552D01* X30994Y25554D01* X31002Y25557D01* X31009Y25562D01* X31016Y25568D01* X31021Y25575D01* X31025Y25582D01* X31028Y25591D01* X31029Y25599D01* X31029Y25608D01* X31027Y25617D01* X31015Y25651D01* X31000Y25683D01* X30982Y25715D01* X30961Y25744D01* X30937Y25772D01* X30912Y25797D01* X30904Y25804D01* Y27214D01* X30922Y27232D01* X30945Y27260D01* X30965Y27290D01* X30983Y27322D01* X30997Y27355D01* X31009Y27389D01* X31011Y27398D01* X31011Y27407D01* X31010Y27415D01* X31007Y27423D01* X31002Y27431D01* X30997Y27438D01* X30990Y27444D01* X30983Y27448D01* X30975Y27451D01* X30966Y27453D01* X30957Y27453D01* X30949Y27452D01* X30941Y27449D01* X30933Y27445D01* X30926Y27439D01* X30920Y27433D01* X30916Y27425D01* X30913Y27417D01* X30904Y27391D01* X30904Y27391D01* Y27608D01* X30911Y27587D01* X30915Y27579D01* X30919Y27572D01* X30925Y27565D01* X30932Y27560D01* X30940Y27556D01* X30948Y27553D01* X30957Y27552D01* X30965Y27552D01* X30974Y27554D01* X30982Y27557D01* X30989Y27562D01* X30996Y27568D01* X31001Y27575D01* X31005Y27582D01* X31008Y27591D01* X31009Y27599D01* X31009Y27608D01* X31007Y27617D01* X30995Y27651D01* X30980Y27683D01* X30962Y27715D01* X30941Y27744D01* X30917Y27772D01* X30904Y27785D01* Y29235D01* X30925Y29260D01* X30945Y29290D01* X30963Y29322D01* X30977Y29355D01* X30989Y29389D01* X30991Y29398D01* X30991Y29407D01* X30990Y29415D01* X30987Y29423D01* X30982Y29431D01* X30977Y29438D01* X30970Y29444D01* X30963Y29448D01* X30955Y29451D01* X30946Y29453D01* X30937Y29453D01* X30929Y29452D01* X30921Y29449D01* X30913Y29445D01* X30906Y29439D01* X30904Y29437D01* Y29567D01* X30905Y29565D01* X30912Y29560D01* X30920Y29556D01* X30928Y29553D01* X30937Y29552D01* X30945Y29552D01* X30954Y29554D01* X30962Y29557D01* X30969Y29562D01* X30976Y29568D01* X30981Y29575D01* X30985Y29582D01* X30988Y29591D01* X30989Y29599D01* X30989Y29608D01* X30987Y29617D01* X30975Y29651D01* X30960Y29683D01* X30942Y29715D01* X30921Y29744D01* X30904Y29764D01* Y31259D01* X30905Y31260D01* X30925Y31290D01* X30943Y31322D01* X30957Y31355D01* X30969Y31389D01* X30971Y31398D01* X30971Y31407D01* X30970Y31415D01* X30967Y31423D01* X30962Y31431D01* X30957Y31438D01* X30950Y31444D01* X30943Y31448D01* X30935Y31451D01* X30926Y31453D01* X30917Y31453D01* X30909Y31452D01* X30904Y31450D01* Y31555D01* X30908Y31553D01* X30917Y31552D01* X30925Y31552D01* X30934Y31554D01* X30942Y31557D01* X30949Y31562D01* X30956Y31568D01* X30961Y31575D01* X30965Y31582D01* X30968Y31591D01* X30969Y31599D01* X30969Y31608D01* X30967Y31617D01* X30955Y31651D01* X30940Y31683D01* X30922Y31715D01* X30904Y31740D01* Y33288D01* X30905Y33290D01* X30923Y33322D01* X30937Y33355D01* X30949Y33389D01* X30951Y33398D01* X30951Y33407D01* X30950Y33415D01* X30947Y33423D01* X30942Y33431D01* X30937Y33438D01* X30930Y33444D01* X30923Y33448D01* X30915Y33451D01* X30906Y33453D01* X30904D01* Y33552D01* X30905D01* X30914Y33554D01* X30922Y33557D01* X30929Y33562D01* X30936Y33568D01* X30941Y33575D01* X30945Y33582D01* X30948Y33591D01* X30949Y33599D01* X30949Y33608D01* X30947Y33617D01* X30935Y33651D01* X30920Y33683D01* X30904Y33711D01* Y35324D01* X30917Y35355D01* X30929Y35389D01* X30931Y35398D01* X30931Y35407D01* X30930Y35415D01* X30927Y35423D01* X30922Y35431D01* X30917Y35438D01* X30910Y35444D01* X30904Y35447D01* Y35559D01* X30909Y35562D01* X30916Y35568D01* X30921Y35575D01* X30925Y35582D01* X30928Y35591D01* X30929Y35599D01* X30929Y35608D01* X30927Y35617D01* X30915Y35651D01* X30904Y35674D01* Y37374D01* X30909Y37389D01* X30911Y37398D01* X30911Y37407D01* X30910Y37415D01* X30907Y37423D01* X30904Y37428D01* Y37580D01* X30905Y37582D01* X30908Y37591D01* X30909Y37599D01* X30909Y37608D01* X30907Y37617D01* X30904Y37625D01* Y40000D01* G37* G36* X31084Y0D02*X30904D01* Y5140D01* X30907Y5135D01* X30913Y5128D01* X30920Y5123D01* X30927Y5119D01* X30936Y5116D01* X30944Y5115D01* X30953Y5115D01* X30961Y5117D01* X30996Y5129D01* X31028Y5144D01* X31060Y5162D01* X31084Y5180D01* Y3834D01* X31074Y3840D01* X31042Y3858D01* X31009Y3873D01* X30975Y3884D01* X30966Y3886D01* X30957Y3886D01* X30949Y3885D01* X30941Y3882D01* X30933Y3878D01* X30926Y3872D01* X30920Y3865D01* X30916Y3858D01* X30913Y3850D01* X30911Y3841D01* X30911Y3833D01* X30912Y3824D01* X30915Y3816D01* X30919Y3808D01* X30925Y3801D01* X30932Y3796D01* X30939Y3791D01* X30947Y3788D01* X30973Y3779D01* X30998Y3768D01* X31021Y3755D01* X31044Y3740D01* X31065Y3723D01* X31084Y3704D01* Y3295D01* X31069Y3280D01* X31048Y3262D01* X31026Y3247D01* X31002Y3233D01* X30978Y3222D01* X30952Y3213D01* X30944Y3209D01* X30937Y3205D01* X30930Y3199D01* X30925Y3192D01* X30921Y3184D01* X30918Y3176D01* X30917Y3167D01* X30917Y3159D01* X30919Y3150D01* X30922Y3142D01* X30927Y3135D01* X30933Y3128D01* X30940Y3123D01* X30947Y3119D01* X30956Y3116D01* X30964Y3115D01* X30973Y3115D01* X30981Y3117D01* X31016Y3129D01* X31048Y3144D01* X31080Y3162D01* X31084Y3165D01* Y1846D01* X31062Y1858D01* X31029Y1873D01* X30995Y1884D01* X30986Y1886D01* X30977Y1886D01* X30969Y1885D01* X30961Y1882D01* X30953Y1878D01* X30946Y1872D01* X30940Y1865D01* X30936Y1858D01* X30933Y1850D01* X30931Y1841D01* X30931Y1833D01* X30932Y1824D01* X30935Y1816D01* X30939Y1808D01* X30945Y1801D01* X30952Y1796D01* X30959Y1791D01* X30967Y1788D01* X30993Y1779D01* X31018Y1768D01* X31041Y1755D01* X31064Y1740D01* X31084Y1724D01* Y1276D01* X31068Y1262D01* X31046Y1247D01* X31022Y1233D01* X30998Y1222D01* X30972Y1213D01* X30964Y1209D01* X30957Y1205D01* X30950Y1199D01* X30945Y1192D01* X30941Y1184D01* X30938Y1176D01* X30937Y1167D01* X30937Y1159D01* X30939Y1150D01* X30942Y1142D01* X30947Y1135D01* X30953Y1128D01* X30960Y1123D01* X30967Y1119D01* X30976Y1116D01* X30984Y1115D01* X30993Y1115D01* X31001Y1117D01* X31036Y1129D01* X31068Y1144D01* X31084Y1153D01* Y0D01* G37* G36* Y5319D02*X31068Y5299D01* X31049Y5280D01* X31028Y5262D01* X31006Y5247D01* X30982Y5233D01* X30958Y5222D01* X30932Y5213D01* X30924Y5209D01* X30917Y5205D01* X30910Y5199D01* X30905Y5192D01* X30904Y5190D01* Y5802D01* X30905Y5801D01* X30912Y5796D01* X30919Y5791D01* X30927Y5788D01* X30953Y5779D01* X30978Y5768D01* X31001Y5755D01* X31024Y5740D01* X31045Y5723D01* X31064Y5704D01* X31082Y5683D01* X31084Y5680D01* Y5319D01* G37* G36* Y5820D02*X31084Y5820D01* X31054Y5840D01* X31022Y5858D01* X30989Y5873D01* X30955Y5884D01* X30946Y5886D01* X30937Y5886D01* X30929Y5885D01* X30921Y5882D01* X30913Y5878D01* X30906Y5872D01* X30904Y5870D01* Y7121D01* X30907Y7119D01* X30916Y7116D01* X30924Y7115D01* X30933Y7115D01* X30941Y7117D01* X30976Y7129D01* X31008Y7144D01* X31040Y7162D01* X31069Y7183D01* X31084Y7196D01* Y5820D01* G37* G36* Y7350D02*X31080Y7343D01* X31065Y7320D01* X31048Y7299D01* X31029Y7280D01* X31008Y7262D01* X30986Y7247D01* X30962Y7233D01* X30938Y7222D01* X30912Y7213D01* X30904Y7209D01* X30904Y7209D01* Y7789D01* X30907Y7788D01* X30933Y7779D01* X30958Y7768D01* X30981Y7755D01* X31004Y7740D01* X31025Y7723D01* X31044Y7704D01* X31062Y7683D01* X31077Y7661D01* X31084Y7650D01* Y7350D01* G37* G36* Y7804D02*X31064Y7820D01* X31034Y7840D01* X31002Y7858D01* X30969Y7873D01* X30935Y7884D01* X30926Y7886D01* X30917Y7886D01* X30909Y7885D01* X30904Y7883D01* Y9115D01* X30904D01* X30913Y9115D01* X30921Y9117D01* X30956Y9129D01* X30988Y9144D01* X31020Y9162D01* X31049Y9183D01* X31077Y9207D01* X31084Y9214D01* Y7804D01* G37* G36* Y9391D02*X31073Y9366D01* X31060Y9343D01* X31045Y9320D01* X31028Y9299D01* X31009Y9280D01* X30988Y9262D01* X30966Y9247D01* X30942Y9233D01* X30918Y9222D01* X30904Y9217D01* Y9782D01* X30913Y9779D01* X30938Y9768D01* X30961Y9755D01* X30984Y9740D01* X31005Y9723D01* X31024Y9704D01* X31042Y9683D01* X31057Y9661D01* X31071Y9637D01* X31082Y9613D01* X31084Y9608D01* Y9391D01* G37* G36* Y9785D02*X31072Y9797D01* X31044Y9820D01* X31014Y9840D01* X30982Y9858D01* X30949Y9873D01* X30915Y9884D01* X30906Y9886D01* X30904D01* Y11118D01* X30936Y11129D01* X30968Y11144D01* X31000Y11162D01* X31029Y11183D01* X31057Y11207D01* X31082Y11232D01* X31084Y11235D01* Y9785D01* G37* G36* Y11437D02*X31080Y11433D01* X31076Y11425D01* X31073Y11417D01* X31064Y11391D01* X31053Y11366D01* X31040Y11343D01* X31025Y11320D01* X31008Y11299D01* X30989Y11280D01* X30968Y11262D01* X30946Y11247D01* X30922Y11233D01* X30904Y11225D01* Y11774D01* X30918Y11768D01* X30941Y11755D01* X30964Y11740D01* X30985Y11723D01* X31004Y11704D01* X31022Y11683D01* X31037Y11661D01* X31051Y11637D01* X31062Y11613D01* X31071Y11587D01* X31075Y11579D01* X31079Y11572D01* X31084Y11567D01* Y11437D01* G37* G36* Y11764D02*X31077Y11772D01* X31052Y11797D01* X31024Y11820D01* X30994Y11840D01* X30962Y11858D01* X30929Y11873D01* X30904Y11881D01* Y13125D01* X30916Y13129D01* X30948Y13144D01* X30980Y13162D01* X31009Y13183D01* X31037Y13207D01* X31062Y13232D01* X31084Y13259D01* Y11764D01* G37* G36* Y13450D02*X31081Y13449D01* X31073Y13445D01* X31066Y13439D01* X31060Y13433D01* X31056Y13425D01* X31053Y13417D01* X31044Y13391D01* X31033Y13366D01* X31020Y13343D01* X31005Y13320D01* X30988Y13299D01* X30969Y13280D01* X30948Y13262D01* X30926Y13247D01* X30904Y13234D01* Y13765D01* X30921Y13755D01* X30944Y13740D01* X30965Y13723D01* X30984Y13704D01* X31002Y13683D01* X31017Y13661D01* X31031Y13637D01* X31042Y13613D01* X31051Y13587D01* X31055Y13579D01* X31059Y13572D01* X31065Y13565D01* X31072Y13560D01* X31080Y13556D01* X31084Y13555D01* Y13450D01* G37* G36* Y13740D02*X31081Y13744D01* X31057Y13772D01* X31032Y13797D01* X31004Y13820D01* X30974Y13840D01* X30942Y13858D01* X30909Y13873D01* X30904Y13874D01* Y15133D01* X30928Y15144D01* X30960Y15162D01* X30989Y15183D01* X31017Y15207D01* X31042Y15232D01* X31065Y15260D01* X31084Y15288D01* Y13740D01* G37* G36* Y15453D02*X31077Y15453D01* X31069Y15452D01* X31061Y15449D01* X31053Y15445D01* X31046Y15439D01* X31040Y15433D01* X31036Y15425D01* X31033Y15417D01* X31024Y15391D01* X31013Y15366D01* X31000Y15343D01* X30985Y15320D01* X30968Y15299D01* X30949Y15280D01* X30928Y15262D01* X30906Y15247D01* X30904Y15246D01* Y15754D01* X30924Y15740D01* X30945Y15723D01* X30964Y15704D01* X30982Y15683D01* X30997Y15661D01* X31011Y15637D01* X31022Y15613D01* X31031Y15587D01* X31035Y15579D01* X31039Y15572D01* X31045Y15565D01* X31052Y15560D01* X31060Y15556D01* X31068Y15553D01* X31077Y15552D01* X31084Y15552D01* Y15453D01* G37* G36* Y15711D02*X31082Y15715D01* X31061Y15744D01* X31037Y15772D01* X31012Y15797D01* X30984Y15820D01* X30954Y15840D01* X30922Y15858D01* X30904Y15866D01* Y17142D01* X30908Y17144D01* X30940Y17162D01* X30969Y17183D01* X30997Y17207D01* X31022Y17232D01* X31045Y17260D01* X31065Y17290D01* X31083Y17322D01* X31084Y17324D01* Y15711D01* G37* G36* Y17447D02*X31083Y17448D01* X31075Y17451D01* X31066Y17453D01* X31057Y17453D01* X31049Y17452D01* X31041Y17449D01* X31033Y17445D01* X31026Y17439D01* X31020Y17433D01* X31016Y17425D01* X31013Y17417D01* X31004Y17391D01* X30993Y17366D01* X30980Y17343D01* X30965Y17320D01* X30948Y17299D01* X30929Y17280D01* X30908Y17262D01* X30904Y17259D01* Y17740D01* X30925Y17723D01* X30944Y17704D01* X30962Y17683D01* X30977Y17661D01* X30991Y17637D01* X31002Y17613D01* X31011Y17587D01* X31015Y17579D01* X31019Y17572D01* X31025Y17565D01* X31032Y17560D01* X31040Y17556D01* X31048Y17553D01* X31057Y17552D01* X31065Y17552D01* X31074Y17554D01* X31082Y17557D01* X31084Y17559D01* Y17447D01* G37* G36* Y17674D02*X31080Y17683D01* X31062Y17715D01* X31041Y17744D01* X31017Y17772D01* X30992Y17797D01* X30964Y17820D01* X30934Y17840D01* X30904Y17857D01* Y19153D01* X30920Y19162D01* X30949Y19183D01* X30977Y19207D01* X31002Y19232D01* X31025Y19260D01* X31045Y19290D01* X31063Y19322D01* X31077Y19355D01* X31084Y19374D01* Y17674D01* G37* G36* Y19428D02*X31082Y19431D01* X31077Y19438D01* X31070Y19444D01* X31063Y19448D01* X31055Y19451D01* X31046Y19453D01* X31037Y19453D01* X31029Y19452D01* X31021Y19449D01* X31013Y19445D01* X31006Y19439D01* X31000Y19433D01* X30996Y19425D01* X30993Y19417D01* X30984Y19391D01* X30973Y19366D01* X30960Y19343D01* X30945Y19320D01* X30928Y19299D01* X30909Y19280D01* X30904Y19276D01* Y19724D01* X30905Y19723D01* X30924Y19704D01* X30942Y19683D01* X30957Y19661D01* X30971Y19637D01* X30982Y19613D01* X30991Y19587D01* X30995Y19579D01* X30999Y19572D01* X31005Y19565D01* X31012Y19560D01* X31020Y19556D01* X31028Y19553D01* X31037Y19552D01* X31045Y19552D01* X31054Y19554D01* X31062Y19557D01* X31069Y19562D01* X31076Y19568D01* X31081Y19575D01* X31084Y19580D01* Y19428D01* G37* G36* Y40000D02*X32285D01* Y39834D01* X32260Y39816D01* X32232Y39793D01* X32207Y39767D01* X32184Y39739D01* X32164Y39709D01* X32146Y39677D01* X32132Y39644D01* X32120Y39610D01* X32118Y39601D01* X32118Y39593D01* X32119Y39584D01* X32122Y39576D01* X32127Y39568D01* X32132Y39561D01* X32139Y39556D01* X32146Y39551D01* X32154Y39548D01* X32163Y39546D01* X32172Y39546D01* X32180Y39547D01* X32188Y39550D01* X32196Y39555D01* X32203Y39560D01* X32209Y39567D01* X32213Y39574D01* X32216Y39582D01* X32225Y39608D01* X32236Y39633D01* X32249Y39657D01* X32264Y39679D01* X32281Y39700D01* X32285Y39704D01* Y39295D01* X32285Y39295D01* X32267Y39316D01* X32252Y39338D01* X32238Y39362D01* X32227Y39386D01* X32218Y39412D01* X32214Y39420D01* X32210Y39427D01* X32204Y39434D01* X32197Y39439D01* X32189Y39443D01* X32181Y39446D01* X32172Y39447D01* X32164Y39447D01* X32155Y39445D01* X32147Y39442D01* X32140Y39437D01* X32133Y39431D01* X32128Y39424D01* X32124Y39417D01* X32121Y39409D01* X32120Y39400D01* X32120Y39391D01* X32122Y39383D01* X32134Y39349D01* X32149Y39316D01* X32167Y39284D01* X32188Y39255D01* X32212Y39227D01* X32237Y39202D01* X32265Y39179D01* X32285Y39166D01* Y37820D01* X32280Y37816D01* X32252Y37793D01* X32227Y37767D01* X32204Y37739D01* X32184Y37709D01* X32166Y37677D01* X32152Y37644D01* X32140Y37610D01* X32138Y37601D01* X32138Y37593D01* X32139Y37584D01* X32142Y37576D01* X32147Y37568D01* X32152Y37561D01* X32159Y37556D01* X32166Y37551D01* X32174Y37548D01* X32183Y37546D01* X32192Y37546D01* X32200Y37547D01* X32208Y37550D01* X32216Y37555D01* X32223Y37560D01* X32229Y37567D01* X32233Y37574D01* X32236Y37582D01* X32245Y37608D01* X32256Y37633D01* X32269Y37657D01* X32284Y37679D01* X32285Y37680D01* Y37319D01* X32272Y37338D01* X32258Y37362D01* X32247Y37386D01* X32238Y37412D01* X32234Y37420D01* X32230Y37427D01* X32224Y37434D01* X32217Y37439D01* X32209Y37443D01* X32201Y37446D01* X32192Y37447D01* X32184Y37447D01* X32175Y37445D01* X32167Y37442D01* X32160Y37437D01* X32153Y37431D01* X32148Y37424D01* X32144Y37417D01* X32141Y37409D01* X32140Y37400D01* X32140Y37391D01* X32142Y37383D01* X32154Y37349D01* X32169Y37316D01* X32187Y37284D01* X32208Y37255D01* X32232Y37227D01* X32257Y37202D01* X32285Y37179D01* Y35804D01* X32272Y35793D01* X32247Y35767D01* X32224Y35739D01* X32204Y35709D01* X32186Y35677D01* X32172Y35644D01* X32160Y35610D01* X32158Y35601D01* X32158Y35593D01* X32159Y35584D01* X32162Y35576D01* X32167Y35568D01* X32172Y35561D01* X32179Y35556D01* X32186Y35551D01* X32194Y35548D01* X32203Y35546D01* X32212Y35546D01* X32220Y35547D01* X32228Y35550D01* X32236Y35555D01* X32243Y35560D01* X32249Y35567D01* X32253Y35574D01* X32256Y35582D01* X32265Y35608D01* X32276Y35633D01* X32285Y35650D01* Y35349D01* X32278Y35362D01* X32267Y35386D01* X32258Y35412D01* X32254Y35420D01* X32250Y35427D01* X32244Y35434D01* X32237Y35439D01* X32229Y35443D01* X32221Y35446D01* X32212Y35447D01* X32204Y35447D01* X32195Y35445D01* X32187Y35442D01* X32180Y35437D01* X32173Y35431D01* X32168Y35424D01* X32164Y35417D01* X32161Y35409D01* X32160Y35400D01* X32160Y35391D01* X32162Y35383D01* X32174Y35349D01* X32189Y35316D01* X32207Y35284D01* X32228Y35255D01* X32252Y35227D01* X32277Y35202D01* X32285Y35196D01* Y33785D01* X32267Y33767D01* X32244Y33739D01* X32224Y33709D01* X32206Y33677D01* X32192Y33644D01* X32180Y33610D01* X32178Y33601D01* X32178Y33593D01* X32179Y33584D01* X32182Y33576D01* X32187Y33568D01* X32192Y33561D01* X32199Y33556D01* X32206Y33551D01* X32214Y33548D01* X32223Y33546D01* X32232Y33546D01* X32240Y33547D01* X32248Y33550D01* X32256Y33555D01* X32263Y33560D01* X32269Y33567D01* X32273Y33574D01* X32276Y33582D01* X32285Y33608D01* X32285Y33609D01* Y33391D01* X32278Y33412D01* X32274Y33420D01* X32270Y33427D01* X32264Y33434D01* X32257Y33439D01* X32249Y33443D01* X32241Y33446D01* X32232Y33447D01* X32224Y33447D01* X32215Y33445D01* X32207Y33442D01* X32200Y33437D01* X32193Y33431D01* X32188Y33424D01* X32184Y33417D01* X32181Y33409D01* X32180Y33400D01* X32180Y33391D01* X32182Y33383D01* X32194Y33349D01* X32209Y33316D01* X32227Y33284D01* X32248Y33255D01* X32272Y33227D01* X32285Y33214D01* Y31765D01* X32264Y31739D01* X32244Y31709D01* X32226Y31677D01* X32212Y31644D01* X32200Y31610D01* X32198Y31601D01* X32198Y31593D01* X32199Y31584D01* X32202Y31576D01* X32207Y31568D01* X32212Y31561D01* X32219Y31556D01* X32226Y31551D01* X32234Y31548D01* X32243Y31546D01* X32252Y31546D01* X32260Y31547D01* X32268Y31550D01* X32276Y31555D01* X32283Y31560D01* X32285Y31563D01* Y31432D01* X32284Y31434D01* X32277Y31439D01* X32269Y31443D01* X32261Y31446D01* X32252Y31447D01* X32244Y31447D01* X32235Y31445D01* X32227Y31442D01* X32220Y31437D01* X32213Y31431D01* X32208Y31424D01* X32204Y31417D01* X32201Y31409D01* X32200Y31400D01* X32200Y31391D01* X32202Y31383D01* X32214Y31349D01* X32229Y31316D01* X32247Y31284D01* X32268Y31255D01* X32285Y31235D01* Y29740D01* X32284Y29739D01* X32264Y29709D01* X32246Y29677D01* X32232Y29644D01* X32220Y29610D01* X32218Y29601D01* X32218Y29593D01* X32219Y29584D01* X32222Y29576D01* X32227Y29568D01* X32232Y29561D01* X32239Y29556D01* X32246Y29551D01* X32254Y29548D01* X32263Y29546D01* X32272Y29546D01* X32280Y29547D01* X32285Y29549D01* Y29445D01* X32281Y29446D01* X32272Y29447D01* X32264Y29447D01* X32255Y29445D01* X32247Y29442D01* X32240Y29437D01* X32233Y29431D01* X32228Y29424D01* X32224Y29417D01* X32221Y29409D01* X32220Y29400D01* X32220Y29391D01* X32222Y29383D01* X32234Y29349D01* X32249Y29316D01* X32267Y29284D01* X32285Y29259D01* Y27711D01* X32284Y27709D01* X32266Y27677D01* X32252Y27644D01* X32240Y27610D01* X32238Y27601D01* X32238Y27593D01* X32239Y27584D01* X32242Y27576D01* X32247Y27568D01* X32252Y27561D01* X32259Y27556D01* X32266Y27551D01* X32274Y27548D01* X32283Y27546D01* X32285D01* Y27447D01* X32284Y27447D01* X32275Y27445D01* X32267Y27442D01* X32260Y27437D01* X32253Y27431D01* X32248Y27424D01* X32244Y27417D01* X32241Y27409D01* X32240Y27400D01* X32240Y27391D01* X32242Y27383D01* X32254Y27349D01* X32269Y27316D01* X32285Y27288D01* Y25675D01* X32272Y25644D01* X32260Y25610D01* X32258Y25601D01* X32258Y25593D01* X32259Y25584D01* X32262Y25576D01* X32267Y25568D01* X32272Y25561D01* X32279Y25556D01* X32285Y25552D01* Y25441D01* X32280Y25437D01* X32273Y25431D01* X32268Y25424D01* X32264Y25417D01* X32261Y25409D01* X32260Y25400D01* X32260Y25391D01* X32262Y25383D01* X32274Y25349D01* X32285Y25325D01* Y23625D01* X32280Y23610D01* X32278Y23601D01* X32278Y23593D01* X32279Y23584D01* X32282Y23576D01* X32285Y23571D01* Y23419D01* X32284Y23417D01* X32281Y23409D01* X32280Y23400D01* X32280Y23391D01* X32282Y23383D01* X32285Y23374D01* Y0D01* X31084D01* Y1153D01* X31100Y1162D01* X31129Y1183D01* X31157Y1207D01* X31182Y1232D01* X31205Y1260D01* X31225Y1290D01* X31243Y1322D01* X31257Y1355D01* X31269Y1389D01* X31271Y1398D01* X31271Y1407D01* X31270Y1415D01* X31267Y1423D01* X31262Y1431D01* X31257Y1438D01* X31250Y1444D01* X31243Y1448D01* X31235Y1451D01* X31226Y1453D01* X31217Y1453D01* X31209Y1452D01* X31201Y1449D01* X31193Y1445D01* X31186Y1439D01* X31180Y1433D01* X31176Y1425D01* X31173Y1417D01* X31164Y1391D01* X31153Y1366D01* X31140Y1343D01* X31125Y1320D01* X31108Y1299D01* X31089Y1280D01* X31084Y1276D01* Y1724D01* X31085Y1723D01* X31104Y1704D01* X31122Y1683D01* X31137Y1661D01* X31151Y1637D01* X31162Y1613D01* X31171Y1587D01* X31175Y1579D01* X31179Y1572D01* X31185Y1565D01* X31192Y1560D01* X31200Y1556D01* X31208Y1553D01* X31217Y1552D01* X31225Y1552D01* X31234Y1554D01* X31242Y1557D01* X31249Y1562D01* X31256Y1568D01* X31261Y1575D01* X31265Y1582D01* X31268Y1591D01* X31269Y1599D01* X31269Y1608D01* X31267Y1617D01* X31255Y1651D01* X31240Y1683D01* X31222Y1715D01* X31201Y1744D01* X31177Y1772D01* X31152Y1797D01* X31124Y1820D01* X31094Y1840D01* X31084Y1846D01* Y3165D01* X31109Y3183D01* X31137Y3207D01* X31162Y3232D01* X31185Y3260D01* X31205Y3290D01* X31223Y3322D01* X31237Y3355D01* X31249Y3389D01* X31251Y3398D01* X31251Y3407D01* X31250Y3415D01* X31247Y3423D01* X31242Y3431D01* X31237Y3438D01* X31230Y3444D01* X31223Y3448D01* X31215Y3451D01* X31206Y3453D01* X31197Y3453D01* X31189Y3452D01* X31181Y3449D01* X31173Y3445D01* X31166Y3439D01* X31160Y3433D01* X31156Y3425D01* X31153Y3417D01* X31144Y3391D01* X31133Y3366D01* X31120Y3343D01* X31105Y3320D01* X31088Y3299D01* X31084Y3295D01* Y3704D01* X31084Y3704D01* X31102Y3683D01* X31117Y3661D01* X31131Y3637D01* X31142Y3613D01* X31151Y3587D01* X31155Y3579D01* X31159Y3572D01* X31165Y3565D01* X31172Y3560D01* X31180Y3556D01* X31188Y3553D01* X31197Y3552D01* X31205Y3552D01* X31214Y3554D01* X31222Y3557D01* X31229Y3562D01* X31236Y3568D01* X31241Y3575D01* X31245Y3582D01* X31248Y3591D01* X31249Y3599D01* X31249Y3608D01* X31247Y3617D01* X31235Y3651D01* X31220Y3683D01* X31202Y3715D01* X31181Y3744D01* X31157Y3772D01* X31132Y3797D01* X31104Y3820D01* X31084Y3834D01* Y5180D01* X31089Y5183D01* X31117Y5207D01* X31142Y5232D01* X31165Y5260D01* X31185Y5290D01* X31203Y5322D01* X31217Y5355D01* X31229Y5389D01* X31231Y5398D01* X31231Y5407D01* X31230Y5415D01* X31227Y5423D01* X31222Y5431D01* X31217Y5438D01* X31210Y5444D01* X31203Y5448D01* X31195Y5451D01* X31186Y5453D01* X31177Y5453D01* X31169Y5452D01* X31161Y5449D01* X31153Y5445D01* X31146Y5439D01* X31140Y5433D01* X31136Y5425D01* X31133Y5417D01* X31124Y5391D01* X31113Y5366D01* X31100Y5343D01* X31085Y5320D01* X31084Y5319D01* Y5680D01* X31097Y5661D01* X31111Y5637D01* X31122Y5613D01* X31131Y5587D01* X31135Y5579D01* X31139Y5572D01* X31145Y5565D01* X31152Y5560D01* X31160Y5556D01* X31168Y5553D01* X31177Y5552D01* X31185Y5552D01* X31194Y5554D01* X31202Y5557D01* X31209Y5562D01* X31216Y5568D01* X31221Y5575D01* X31225Y5582D01* X31228Y5591D01* X31229Y5599D01* X31229Y5608D01* X31227Y5617D01* X31215Y5651D01* X31200Y5683D01* X31182Y5715D01* X31161Y5744D01* X31137Y5772D01* X31112Y5797D01* X31084Y5820D01* Y7196D01* X31097Y7207D01* X31122Y7232D01* X31145Y7260D01* X31165Y7290D01* X31183Y7322D01* X31197Y7355D01* X31209Y7389D01* X31211Y7398D01* X31211Y7407D01* X31210Y7415D01* X31207Y7423D01* X31202Y7431D01* X31197Y7438D01* X31190Y7444D01* X31183Y7448D01* X31175Y7451D01* X31166Y7453D01* X31157Y7453D01* X31149Y7452D01* X31141Y7449D01* X31133Y7445D01* X31126Y7439D01* X31120Y7433D01* X31116Y7425D01* X31113Y7417D01* X31104Y7391D01* X31093Y7366D01* X31084Y7350D01* Y7650D01* X31091Y7637D01* X31102Y7613D01* X31111Y7587D01* X31115Y7579D01* X31119Y7572D01* X31125Y7565D01* X31132Y7560D01* X31140Y7556D01* X31148Y7553D01* X31157Y7552D01* X31165Y7552D01* X31174Y7554D01* X31182Y7557D01* X31189Y7562D01* X31196Y7568D01* X31201Y7575D01* X31205Y7582D01* X31208Y7591D01* X31209Y7599D01* X31209Y7608D01* X31207Y7617D01* X31195Y7651D01* X31180Y7683D01* X31162Y7715D01* X31141Y7744D01* X31117Y7772D01* X31092Y7797D01* X31084Y7804D01* Y9214D01* X31102Y9232D01* X31125Y9260D01* X31145Y9290D01* X31163Y9322D01* X31177Y9355D01* X31189Y9389D01* X31191Y9398D01* X31191Y9407D01* X31190Y9415D01* X31187Y9423D01* X31182Y9431D01* X31177Y9438D01* X31170Y9444D01* X31163Y9448D01* X31155Y9451D01* X31146Y9453D01* X31137Y9453D01* X31129Y9452D01* X31121Y9449D01* X31113Y9445D01* X31106Y9439D01* X31100Y9433D01* X31096Y9425D01* X31093Y9417D01* X31084Y9391D01* X31084Y9391D01* Y9608D01* X31091Y9587D01* X31095Y9579D01* X31099Y9572D01* X31105Y9565D01* X31112Y9560D01* X31120Y9556D01* X31128Y9553D01* X31137Y9552D01* X31145Y9552D01* X31154Y9554D01* X31162Y9557D01* X31169Y9562D01* X31176Y9568D01* X31181Y9575D01* X31185Y9582D01* X31188Y9591D01* X31189Y9599D01* X31189Y9608D01* X31187Y9617D01* X31175Y9651D01* X31160Y9683D01* X31142Y9715D01* X31121Y9744D01* X31097Y9772D01* X31084Y9785D01* Y11235D01* X31105Y11260D01* X31125Y11290D01* X31143Y11322D01* X31157Y11355D01* X31169Y11389D01* X31171Y11398D01* X31171Y11407D01* X31170Y11415D01* X31167Y11423D01* X31162Y11431D01* X31157Y11438D01* X31150Y11444D01* X31143Y11448D01* X31135Y11451D01* X31126Y11453D01* X31117Y11453D01* X31109Y11452D01* X31101Y11449D01* X31093Y11445D01* X31086Y11439D01* X31084Y11437D01* Y11567D01* X31085Y11565D01* X31092Y11560D01* X31100Y11556D01* X31108Y11553D01* X31117Y11552D01* X31125Y11552D01* X31134Y11554D01* X31142Y11557D01* X31149Y11562D01* X31156Y11568D01* X31161Y11575D01* X31165Y11582D01* X31168Y11591D01* X31169Y11599D01* X31169Y11608D01* X31167Y11617D01* X31155Y11651D01* X31140Y11683D01* X31122Y11715D01* X31101Y11744D01* X31084Y11764D01* Y13259D01* X31085Y13260D01* X31105Y13290D01* X31123Y13322D01* X31137Y13355D01* X31149Y13389D01* X31151Y13398D01* X31151Y13407D01* X31150Y13415D01* X31147Y13423D01* X31142Y13431D01* X31137Y13438D01* X31130Y13444D01* X31123Y13448D01* X31115Y13451D01* X31106Y13453D01* X31097Y13453D01* X31089Y13452D01* X31084Y13450D01* Y13555D01* X31088Y13553D01* X31097Y13552D01* X31105Y13552D01* X31114Y13554D01* X31122Y13557D01* X31129Y13562D01* X31136Y13568D01* X31141Y13575D01* X31145Y13582D01* X31148Y13591D01* X31149Y13599D01* X31149Y13608D01* X31147Y13617D01* X31135Y13651D01* X31120Y13683D01* X31102Y13715D01* X31084Y13740D01* Y15288D01* X31085Y15290D01* X31103Y15322D01* X31117Y15355D01* X31129Y15389D01* X31131Y15398D01* X31131Y15407D01* X31130Y15415D01* X31127Y15423D01* X31122Y15431D01* X31117Y15438D01* X31110Y15444D01* X31103Y15448D01* X31095Y15451D01* X31086Y15453D01* X31084D01* Y15552D01* X31085D01* X31094Y15554D01* X31102Y15557D01* X31109Y15562D01* X31116Y15568D01* X31121Y15575D01* X31125Y15582D01* X31128Y15591D01* X31129Y15599D01* X31129Y15608D01* X31127Y15617D01* X31115Y15651D01* X31100Y15683D01* X31084Y15711D01* Y17324D01* X31097Y17355D01* X31109Y17389D01* X31111Y17398D01* X31111Y17407D01* X31110Y17415D01* X31107Y17423D01* X31102Y17431D01* X31097Y17438D01* X31090Y17444D01* X31084Y17447D01* Y17559D01* X31089Y17562D01* X31096Y17568D01* X31101Y17575D01* X31105Y17582D01* X31108Y17591D01* X31109Y17599D01* X31109Y17608D01* X31107Y17617D01* X31095Y17651D01* X31084Y17674D01* Y19374D01* X31089Y19389D01* X31091Y19398D01* X31091Y19407D01* X31090Y19415D01* X31087Y19423D01* X31084Y19428D01* Y19580D01* X31085Y19582D01* X31088Y19591D01* X31089Y19599D01* X31089Y19608D01* X31087Y19617D01* X31084Y19625D01* Y40000D01* G37* G36* X32285D02*X32465D01* Y37859D01* X32462Y37864D01* X32456Y37871D01* X32449Y37876D01* X32442Y37880D01* X32433Y37883D01* X32425Y37884D01* X32416Y37884D01* X32408Y37882D01* X32373Y37870D01* X32341Y37855D01* X32309Y37837D01* X32285Y37820D01* Y39166D01* X32295Y39159D01* X32327Y39141D01* X32360Y39127D01* X32394Y39115D01* X32403Y39113D01* X32412Y39113D01* X32420Y39115D01* X32428Y39117D01* X32436Y39122D01* X32443Y39127D01* X32449Y39134D01* X32453Y39141D01* X32456Y39149D01* X32458Y39158D01* X32458Y39167D01* X32457Y39175D01* X32454Y39183D01* X32450Y39191D01* X32444Y39198D01* X32437Y39204D01* X32430Y39208D01* X32422Y39211D01* X32396Y39220D01* X32371Y39231D01* X32348Y39244D01* X32325Y39259D01* X32304Y39276D01* X32285Y39295D01* Y39704D01* X32300Y39719D01* X32321Y39737D01* X32343Y39752D01* X32367Y39766D01* X32391Y39777D01* X32417Y39786D01* X32425Y39790D01* X32432Y39794D01* X32439Y39800D01* X32444Y39807D01* X32448Y39815D01* X32451Y39823D01* X32452Y39832D01* X32452Y39840D01* X32450Y39849D01* X32447Y39857D01* X32442Y39864D01* X32436Y39871D01* X32429Y39876D01* X32422Y39880D01* X32413Y39883D01* X32405Y39884D01* X32396Y39884D01* X32388Y39882D01* X32353Y39870D01* X32321Y39855D01* X32289Y39837D01* X32285Y39834D01* Y40000D01* G37* G36* X32465Y11740D02*X32464Y11739D01* X32444Y11709D01* X32426Y11677D01* X32412Y11644D01* X32400Y11610D01* X32398Y11601D01* X32398Y11593D01* X32399Y11584D01* X32402Y11576D01* X32407Y11568D01* X32412Y11561D01* X32419Y11556D01* X32426Y11551D01* X32434Y11548D01* X32443Y11546D01* X32452Y11546D01* X32460Y11547D01* X32465Y11549D01* Y11445D01* X32461Y11446D01* X32452Y11447D01* X32444Y11447D01* X32435Y11445D01* X32427Y11442D01* X32420Y11437D01* X32413Y11431D01* X32408Y11424D01* X32404Y11417D01* X32401Y11409D01* X32400Y11400D01* X32400Y11391D01* X32402Y11383D01* X32414Y11349D01* X32429Y11316D01* X32447Y11284D01* X32465Y11259D01* Y9711D01* X32464Y9709D01* X32446Y9677D01* X32432Y9644D01* X32420Y9610D01* X32418Y9601D01* X32418Y9593D01* X32419Y9584D01* X32422Y9576D01* X32427Y9568D01* X32432Y9561D01* X32439Y9556D01* X32446Y9551D01* X32454Y9548D01* X32463Y9546D01* X32465D01* Y9447D01* X32464Y9447D01* X32455Y9445D01* X32447Y9442D01* X32440Y9437D01* X32433Y9431D01* X32428Y9424D01* X32424Y9417D01* X32421Y9409D01* X32420Y9400D01* X32420Y9391D01* X32422Y9383D01* X32434Y9349D01* X32449Y9316D01* X32465Y9288D01* Y7675D01* X32452Y7644D01* X32440Y7610D01* X32438Y7601D01* X32438Y7593D01* X32439Y7584D01* X32442Y7576D01* X32447Y7568D01* X32452Y7561D01* X32459Y7556D01* X32465Y7552D01* Y7441D01* X32460Y7437D01* X32453Y7431D01* X32448Y7424D01* X32444Y7417D01* X32441Y7409D01* X32440Y7400D01* X32440Y7391D01* X32442Y7383D01* X32454Y7349D01* X32465Y7325D01* Y5625D01* X32460Y5610D01* X32458Y5601D01* X32458Y5593D01* X32459Y5584D01* X32462Y5576D01* X32465Y5571D01* Y5419D01* X32464Y5417D01* X32461Y5409D01* X32460Y5400D01* X32460Y5391D01* X32462Y5383D01* X32465Y5374D01* Y0D01* X32285D01* Y23374D01* X32294Y23349D01* X32309Y23316D01* X32327Y23284D01* X32348Y23255D01* X32372Y23227D01* X32397Y23202D01* X32425Y23179D01* X32455Y23159D01* X32465Y23153D01* Y21834D01* X32440Y21816D01* X32412Y21793D01* X32387Y21767D01* X32364Y21739D01* X32344Y21709D01* X32326Y21677D01* X32312Y21644D01* X32300Y21610D01* X32298Y21601D01* X32298Y21593D01* X32299Y21584D01* X32302Y21576D01* X32307Y21568D01* X32312Y21561D01* X32319Y21556D01* X32326Y21551D01* X32334Y21548D01* X32343Y21546D01* X32352Y21546D01* X32360Y21547D01* X32368Y21550D01* X32376Y21555D01* X32383Y21560D01* X32389Y21567D01* X32393Y21574D01* X32396Y21582D01* X32405Y21608D01* X32416Y21633D01* X32429Y21657D01* X32444Y21679D01* X32461Y21700D01* X32465Y21704D01* Y21295D01* X32465Y21295D01* X32447Y21316D01* X32432Y21338D01* X32418Y21362D01* X32407Y21386D01* X32398Y21412D01* X32394Y21420D01* X32390Y21427D01* X32384Y21434D01* X32377Y21439D01* X32369Y21443D01* X32361Y21446D01* X32352Y21447D01* X32344Y21447D01* X32335Y21445D01* X32327Y21442D01* X32320Y21437D01* X32313Y21431D01* X32308Y21424D01* X32304Y21417D01* X32301Y21409D01* X32300Y21400D01* X32300Y21391D01* X32302Y21383D01* X32314Y21349D01* X32329Y21316D01* X32347Y21284D01* X32368Y21255D01* X32392Y21227D01* X32417Y21202D01* X32445Y21179D01* X32465Y21166D01* Y19820D01* X32460Y19816D01* X32432Y19793D01* X32407Y19767D01* X32384Y19739D01* X32364Y19709D01* X32346Y19677D01* X32332Y19644D01* X32320Y19610D01* X32318Y19601D01* X32318Y19593D01* X32319Y19584D01* X32322Y19576D01* X32327Y19568D01* X32332Y19561D01* X32339Y19556D01* X32346Y19551D01* X32354Y19548D01* X32363Y19546D01* X32372Y19546D01* X32380Y19547D01* X32388Y19550D01* X32396Y19555D01* X32403Y19560D01* X32409Y19567D01* X32413Y19574D01* X32416Y19582D01* X32425Y19608D01* X32436Y19633D01* X32449Y19657D01* X32464Y19679D01* X32465Y19680D01* Y19319D01* X32452Y19338D01* X32438Y19362D01* X32427Y19386D01* X32418Y19412D01* X32414Y19420D01* X32410Y19427D01* X32404Y19434D01* X32397Y19439D01* X32389Y19443D01* X32381Y19446D01* X32372Y19447D01* X32364Y19447D01* X32355Y19445D01* X32347Y19442D01* X32340Y19437D01* X32333Y19431D01* X32328Y19424D01* X32324Y19417D01* X32321Y19409D01* X32320Y19400D01* X32320Y19391D01* X32322Y19383D01* X32334Y19349D01* X32349Y19316D01* X32367Y19284D01* X32388Y19255D01* X32412Y19227D01* X32437Y19202D01* X32465Y19179D01* Y17804D01* X32452Y17793D01* X32427Y17767D01* X32404Y17739D01* X32384Y17709D01* X32366Y17677D01* X32352Y17644D01* X32340Y17610D01* X32338Y17601D01* X32338Y17593D01* X32339Y17584D01* X32342Y17576D01* X32347Y17568D01* X32352Y17561D01* X32359Y17556D01* X32366Y17551D01* X32374Y17548D01* X32383Y17546D01* X32392Y17546D01* X32400Y17547D01* X32408Y17550D01* X32416Y17555D01* X32423Y17560D01* X32429Y17567D01* X32433Y17574D01* X32436Y17582D01* X32445Y17608D01* X32456Y17633D01* X32465Y17650D01* Y17349D01* X32458Y17362D01* X32447Y17386D01* X32438Y17412D01* X32434Y17420D01* X32430Y17427D01* X32424Y17434D01* X32417Y17439D01* X32409Y17443D01* X32401Y17446D01* X32392Y17447D01* X32384Y17447D01* X32375Y17445D01* X32367Y17442D01* X32360Y17437D01* X32353Y17431D01* X32348Y17424D01* X32344Y17417D01* X32341Y17409D01* X32340Y17400D01* X32340Y17391D01* X32342Y17383D01* X32354Y17349D01* X32369Y17316D01* X32387Y17284D01* X32408Y17255D01* X32432Y17227D01* X32457Y17202D01* X32465Y17196D01* Y15785D01* X32447Y15767D01* X32424Y15739D01* X32404Y15709D01* X32386Y15677D01* X32372Y15644D01* X32360Y15610D01* X32358Y15601D01* X32358Y15593D01* X32359Y15584D01* X32362Y15576D01* X32367Y15568D01* X32372Y15561D01* X32379Y15556D01* X32386Y15551D01* X32394Y15548D01* X32403Y15546D01* X32412Y15546D01* X32420Y15547D01* X32428Y15550D01* X32436Y15555D01* X32443Y15560D01* X32449Y15567D01* X32453Y15574D01* X32456Y15582D01* X32465Y15608D01* X32465Y15609D01* Y15391D01* X32458Y15412D01* X32454Y15420D01* X32450Y15427D01* X32444Y15434D01* X32437Y15439D01* X32429Y15443D01* X32421Y15446D01* X32412Y15447D01* X32404Y15447D01* X32395Y15445D01* X32387Y15442D01* X32380Y15437D01* X32373Y15431D01* X32368Y15424D01* X32364Y15417D01* X32361Y15409D01* X32360Y15400D01* X32360Y15391D01* X32362Y15383D01* X32374Y15349D01* X32389Y15316D01* X32407Y15284D01* X32428Y15255D01* X32452Y15227D01* X32465Y15214D01* Y13765D01* X32444Y13739D01* X32424Y13709D01* X32406Y13677D01* X32392Y13644D01* X32380Y13610D01* X32378Y13601D01* X32378Y13593D01* X32379Y13584D01* X32382Y13576D01* X32387Y13568D01* X32392Y13561D01* X32399Y13556D01* X32406Y13551D01* X32414Y13548D01* X32423Y13546D01* X32432Y13546D01* X32440Y13547D01* X32448Y13550D01* X32456Y13555D01* X32463Y13560D01* X32465Y13563D01* Y13432D01* X32464Y13434D01* X32457Y13439D01* X32449Y13443D01* X32441Y13446D01* X32432Y13447D01* X32424Y13447D01* X32415Y13445D01* X32407Y13442D01* X32400Y13437D01* X32393Y13431D01* X32388Y13424D01* X32384Y13417D01* X32381Y13409D01* X32380Y13400D01* X32380Y13391D01* X32382Y13383D01* X32394Y13349D01* X32409Y13316D01* X32427Y13284D01* X32448Y13255D01* X32465Y13235D01* Y11740D01* G37* G36* Y23276D02*X32464Y23276D01* X32445Y23295D01* X32427Y23316D01* X32412Y23338D01* X32398Y23362D01* X32387Y23386D01* X32378Y23412D01* X32374Y23420D01* X32370Y23427D01* X32364Y23434D01* X32357Y23439D01* X32349Y23443D01* X32341Y23446D01* X32332Y23447D01* X32324Y23447D01* X32315Y23445D01* X32307Y23442D01* X32300Y23437D01* X32293Y23431D01* X32288Y23424D01* X32285Y23419D01* Y23571D01* X32287Y23568D01* X32292Y23561D01* X32299Y23556D01* X32306Y23551D01* X32314Y23548D01* X32323Y23546D01* X32332Y23546D01* X32340Y23547D01* X32348Y23550D01* X32356Y23555D01* X32363Y23560D01* X32369Y23567D01* X32373Y23574D01* X32376Y23582D01* X32385Y23608D01* X32396Y23633D01* X32409Y23657D01* X32424Y23679D01* X32441Y23700D01* X32460Y23719D01* X32465Y23723D01* Y23276D01* G37* G36* Y23846D02*X32449Y23837D01* X32420Y23816D01* X32392Y23793D01* X32367Y23767D01* X32344Y23739D01* X32324Y23709D01* X32306Y23677D01* X32292Y23644D01* X32285Y23625D01* Y25325D01* X32289Y25316D01* X32307Y25284D01* X32328Y25255D01* X32352Y25227D01* X32377Y25202D01* X32405Y25179D01* X32435Y25159D01* X32465Y25142D01* Y23846D01* G37* G36* Y25259D02*X32465Y25259D01* X32444Y25276D01* X32425Y25295D01* X32407Y25316D01* X32392Y25338D01* X32378Y25362D01* X32367Y25386D01* X32358Y25412D01* X32354Y25420D01* X32350Y25427D01* X32344Y25434D01* X32337Y25439D01* X32329Y25443D01* X32321Y25446D01* X32312Y25447D01* X32304Y25447D01* X32295Y25445D01* X32287Y25442D01* X32285Y25441D01* Y25552D01* X32286Y25551D01* X32294Y25548D01* X32303Y25546D01* X32312Y25546D01* X32320Y25547D01* X32328Y25550D01* X32336Y25555D01* X32343Y25560D01* X32349Y25567D01* X32353Y25574D01* X32356Y25582D01* X32365Y25608D01* X32376Y25633D01* X32389Y25657D01* X32404Y25679D01* X32421Y25700D01* X32440Y25719D01* X32461Y25737D01* X32465Y25740D01* Y25259D01* G37* G36* Y25857D02*X32461Y25855D01* X32429Y25837D01* X32400Y25816D01* X32372Y25793D01* X32347Y25767D01* X32324Y25739D01* X32304Y25709D01* X32286Y25677D01* X32285Y25675D01* Y27288D01* X32287Y27284D01* X32308Y27255D01* X32332Y27227D01* X32357Y27202D01* X32385Y27179D01* X32415Y27159D01* X32447Y27141D01* X32465Y27133D01* Y25857D01* G37* G36* Y27246D02*X32445Y27259D01* X32424Y27276D01* X32405Y27295D01* X32387Y27316D01* X32372Y27338D01* X32358Y27362D01* X32347Y27386D01* X32338Y27412D01* X32334Y27420D01* X32330Y27427D01* X32324Y27434D01* X32317Y27439D01* X32309Y27443D01* X32301Y27446D01* X32292Y27447D01* X32285Y27447D01* Y27546D01* X32292Y27546D01* X32300Y27547D01* X32308Y27550D01* X32316Y27555D01* X32323Y27560D01* X32329Y27567D01* X32333Y27574D01* X32336Y27582D01* X32345Y27608D01* X32356Y27633D01* X32369Y27657D01* X32384Y27679D01* X32401Y27700D01* X32420Y27719D01* X32441Y27737D01* X32463Y27752D01* X32465Y27754D01* Y27246D01* G37* G36* Y27866D02*X32441Y27855D01* X32409Y27837D01* X32380Y27816D01* X32352Y27793D01* X32327Y27767D01* X32304Y27739D01* X32285Y27711D01* Y29259D01* X32288Y29255D01* X32312Y29227D01* X32337Y29202D01* X32365Y29179D01* X32395Y29159D01* X32427Y29141D01* X32460Y29127D01* X32465Y29125D01* Y27866D01* G37* G36* Y29234D02*X32448Y29244D01* X32425Y29259D01* X32404Y29276D01* X32385Y29295D01* X32367Y29316D01* X32352Y29338D01* X32338Y29362D01* X32327Y29386D01* X32318Y29412D01* X32314Y29420D01* X32310Y29427D01* X32304Y29434D01* X32297Y29439D01* X32289Y29443D01* X32285Y29445D01* Y29549D01* X32288Y29550D01* X32296Y29555D01* X32303Y29560D01* X32309Y29567D01* X32313Y29574D01* X32316Y29582D01* X32325Y29608D01* X32336Y29633D01* X32349Y29657D01* X32364Y29679D01* X32381Y29700D01* X32400Y29719D01* X32421Y29737D01* X32443Y29752D01* X32465Y29765D01* Y29234D01* G37* G36* Y29874D02*X32453Y29870D01* X32421Y29855D01* X32389Y29837D01* X32360Y29816D01* X32332Y29793D01* X32307Y29767D01* X32285Y29740D01* Y31235D01* X32292Y31227D01* X32317Y31202D01* X32345Y31179D01* X32375Y31159D01* X32407Y31141D01* X32440Y31127D01* X32465Y31118D01* Y29874D01* G37* G36* Y31225D02*X32451Y31231D01* X32428Y31244D01* X32405Y31259D01* X32384Y31276D01* X32365Y31295D01* X32347Y31316D01* X32332Y31338D01* X32318Y31362D01* X32307Y31386D01* X32298Y31412D01* X32294Y31420D01* X32290Y31427D01* X32285Y31432D01* Y31563D01* X32289Y31567D01* X32293Y31574D01* X32296Y31582D01* X32305Y31608D01* X32316Y31633D01* X32329Y31657D01* X32344Y31679D01* X32361Y31700D01* X32380Y31719D01* X32401Y31737D01* X32423Y31752D01* X32447Y31766D01* X32465Y31775D01* Y31225D01* G37* G36* Y31881D02*X32433Y31870D01* X32401Y31855D01* X32369Y31837D01* X32340Y31816D01* X32312Y31793D01* X32287Y31767D01* X32285Y31765D01* Y33214D01* X32297Y33202D01* X32325Y33179D01* X32355Y33159D01* X32387Y33141D01* X32420Y33127D01* X32454Y33115D01* X32463Y33113D01* X32465D01* Y31881D01* G37* G36* Y33217D02*X32456Y33220D01* X32431Y33231D01* X32408Y33244D01* X32385Y33259D01* X32364Y33276D01* X32345Y33295D01* X32327Y33316D01* X32312Y33338D01* X32298Y33362D01* X32287Y33386D01* X32285Y33391D01* Y33609D01* X32296Y33633D01* X32309Y33657D01* X32324Y33679D01* X32341Y33700D01* X32360Y33719D01* X32381Y33737D01* X32403Y33752D01* X32427Y33766D01* X32451Y33777D01* X32465Y33782D01* Y33217D01* G37* G36* Y33884D02*X32465Y33884D01* X32456Y33884D01* X32448Y33882D01* X32413Y33870D01* X32381Y33855D01* X32349Y33837D01* X32320Y33816D01* X32292Y33793D01* X32285Y33785D01* Y35196D01* X32305Y35179D01* X32335Y35159D01* X32367Y35141D01* X32400Y35127D01* X32434Y35115D01* X32443Y35113D01* X32452Y35113D01* X32460Y35115D01* X32465Y35116D01* Y33884D01* G37* G36* Y35210D02*X32462Y35211D01* X32436Y35220D01* X32411Y35231D01* X32388Y35244D01* X32365Y35259D01* X32344Y35276D01* X32325Y35295D01* X32307Y35316D01* X32292Y35338D01* X32285Y35349D01* Y35650D01* X32289Y35657D01* X32304Y35679D01* X32321Y35700D01* X32340Y35719D01* X32361Y35737D01* X32383Y35752D01* X32407Y35766D01* X32431Y35777D01* X32457Y35786D01* X32465Y35790D01* X32465Y35790D01* Y35210D01* G37* G36* Y35878D02*X32462Y35880D01* X32453Y35883D01* X32445Y35884D01* X32436Y35884D01* X32428Y35882D01* X32393Y35870D01* X32361Y35855D01* X32329Y35837D01* X32300Y35816D01* X32285Y35804D01* Y37179D01* X32285Y37179D01* X32315Y37159D01* X32347Y37141D01* X32380Y37127D01* X32414Y37115D01* X32423Y37113D01* X32432Y37113D01* X32440Y37115D01* X32448Y37117D01* X32456Y37122D01* X32463Y37127D01* X32465Y37130D01* Y35878D01* G37* G36* Y37197D02*X32464Y37198D01* X32457Y37204D01* X32450Y37208D01* X32442Y37211D01* X32416Y37220D01* X32391Y37231D01* X32368Y37244D01* X32345Y37259D01* X32324Y37276D01* X32305Y37295D01* X32287Y37316D01* X32285Y37319D01* Y37680D01* X32301Y37700D01* X32320Y37719D01* X32341Y37737D01* X32363Y37752D01* X32387Y37766D01* X32411Y37777D01* X32437Y37786D01* X32445Y37790D01* X32452Y37794D01* X32459Y37800D01* X32464Y37807D01* X32465Y37809D01* Y37197D01* G37* G36* Y40000D02*X32724D01* Y39834D01* X32714Y39840D01* X32682Y39858D01* X32649Y39873D01* X32615Y39884D01* X32606Y39886D01* X32597Y39886D01* X32589Y39885D01* X32581Y39882D01* X32573Y39878D01* X32566Y39872D01* X32560Y39865D01* X32556Y39858D01* X32553Y39850D01* X32551Y39841D01* X32551Y39833D01* X32552Y39824D01* X32555Y39816D01* X32559Y39808D01* X32565Y39801D01* X32572Y39796D01* X32579Y39791D01* X32587Y39788D01* X32613Y39779D01* X32638Y39768D01* X32661Y39755D01* X32684Y39740D01* X32705Y39723D01* X32724Y39704D01* Y39295D01* X32709Y39280D01* X32688Y39262D01* X32666Y39247D01* X32642Y39233D01* X32618Y39222D01* X32592Y39213D01* X32584Y39209D01* X32577Y39205D01* X32570Y39199D01* X32565Y39192D01* X32561Y39184D01* X32558Y39176D01* X32557Y39167D01* X32557Y39159D01* X32559Y39150D01* X32562Y39142D01* X32567Y39135D01* X32573Y39128D01* X32580Y39123D01* X32587Y39119D01* X32596Y39116D01* X32604Y39115D01* X32613Y39115D01* X32621Y39117D01* X32656Y39129D01* X32688Y39144D01* X32720Y39162D01* X32724Y39165D01* Y37846D01* X32702Y37858D01* X32669Y37873D01* X32635Y37884D01* X32626Y37886D01* X32617Y37886D01* X32609Y37885D01* X32601Y37882D01* X32593Y37878D01* X32586Y37872D01* X32580Y37865D01* X32576Y37858D01* X32573Y37850D01* X32571Y37841D01* X32571Y37833D01* X32572Y37824D01* X32575Y37816D01* X32579Y37808D01* X32585Y37801D01* X32592Y37796D01* X32599Y37791D01* X32607Y37788D01* X32633Y37779D01* X32658Y37768D01* X32681Y37755D01* X32704Y37740D01* X32724Y37724D01* Y37276D01* X32708Y37262D01* X32686Y37247D01* X32662Y37233D01* X32638Y37222D01* X32612Y37213D01* X32604Y37209D01* X32597Y37205D01* X32590Y37199D01* X32585Y37192D01* X32581Y37184D01* X32578Y37176D01* X32577Y37167D01* X32577Y37159D01* X32579Y37150D01* X32582Y37142D01* X32587Y37135D01* X32593Y37128D01* X32600Y37123D01* X32607Y37119D01* X32616Y37116D01* X32624Y37115D01* X32633Y37115D01* X32641Y37117D01* X32676Y37129D01* X32708Y37144D01* X32724Y37153D01* Y35857D01* X32722Y35858D01* X32689Y35873D01* X32655Y35884D01* X32646Y35886D01* X32637Y35886D01* X32629Y35885D01* X32621Y35882D01* X32613Y35878D01* X32606Y35872D01* X32600Y35865D01* X32596Y35858D01* X32593Y35850D01* X32591Y35841D01* X32591Y35833D01* X32592Y35824D01* X32595Y35816D01* X32599Y35808D01* X32605Y35801D01* X32612Y35796D01* X32619Y35791D01* X32627Y35788D01* X32653Y35779D01* X32678Y35768D01* X32701Y35755D01* X32724Y35740D01* Y35259D01* X32706Y35247D01* X32682Y35233D01* X32658Y35222D01* X32632Y35213D01* X32624Y35209D01* X32617Y35205D01* X32610Y35199D01* X32605Y35192D01* X32601Y35184D01* X32598Y35176D01* X32597Y35167D01* X32597Y35159D01* X32599Y35150D01* X32602Y35142D01* X32607Y35135D01* X32613Y35128D01* X32620Y35123D01* X32627Y35119D01* X32636Y35116D01* X32644Y35115D01* X32653Y35115D01* X32661Y35117D01* X32696Y35129D01* X32724Y35142D01* Y33866D01* X32709Y33873D01* X32675Y33884D01* X32666Y33886D01* X32657Y33886D01* X32649Y33885D01* X32641Y33882D01* X32633Y33878D01* X32626Y33872D01* X32620Y33865D01* X32616Y33858D01* X32613Y33850D01* X32611Y33841D01* X32611Y33833D01* X32612Y33824D01* X32615Y33816D01* X32619Y33808D01* X32625Y33801D01* X32632Y33796D01* X32639Y33791D01* X32647Y33788D01* X32673Y33779D01* X32698Y33768D01* X32721Y33755D01* X32724Y33754D01* Y33246D01* X32702Y33233D01* X32678Y33222D01* X32652Y33213D01* X32644Y33209D01* X32637Y33205D01* X32630Y33199D01* X32625Y33192D01* X32621Y33184D01* X32618Y33176D01* X32617Y33167D01* X32617Y33159D01* X32619Y33150D01* X32622Y33142D01* X32627Y33135D01* X32633Y33128D01* X32640Y33123D01* X32647Y33119D01* X32656Y33116D01* X32664Y33115D01* X32673Y33115D01* X32681Y33117D01* X32716Y33129D01* X32724Y33133D01* Y31874D01* X32695Y31884D01* X32686Y31886D01* X32677Y31886D01* X32669Y31885D01* X32661Y31882D01* X32653Y31878D01* X32646Y31872D01* X32640Y31865D01* X32636Y31858D01* X32633Y31850D01* X32631Y31841D01* X32631Y31833D01* X32632Y31824D01* X32635Y31816D01* X32639Y31808D01* X32645Y31801D01* X32652Y31796D01* X32659Y31791D01* X32667Y31788D01* X32693Y31779D01* X32718Y31768D01* X32724Y31765D01* Y31234D01* X32722Y31233D01* X32698Y31222D01* X32672Y31213D01* X32664Y31209D01* X32657Y31205D01* X32650Y31199D01* X32645Y31192D01* X32641Y31184D01* X32638Y31176D01* X32637Y31167D01* X32637Y31159D01* X32639Y31150D01* X32642Y31142D01* X32647Y31135D01* X32653Y31128D01* X32660Y31123D01* X32667Y31119D01* X32676Y31116D01* X32684Y31115D01* X32693Y31115D01* X32701Y31117D01* X32724Y31125D01* Y29881D01* X32715Y29884D01* X32706Y29886D01* X32697Y29886D01* X32689Y29885D01* X32681Y29882D01* X32673Y29878D01* X32666Y29872D01* X32660Y29865D01* X32656Y29858D01* X32653Y29850D01* X32651Y29841D01* X32651Y29833D01* X32652Y29824D01* X32655Y29816D01* X32659Y29808D01* X32665Y29801D01* X32672Y29796D01* X32679Y29791D01* X32687Y29788D01* X32713Y29779D01* X32724Y29774D01* Y29225D01* X32718Y29222D01* X32692Y29213D01* X32684Y29209D01* X32677Y29205D01* X32670Y29199D01* X32665Y29192D01* X32661Y29184D01* X32658Y29176D01* X32657Y29167D01* X32657Y29159D01* X32659Y29150D01* X32662Y29142D01* X32667Y29135D01* X32673Y29128D01* X32680Y29123D01* X32687Y29119D01* X32696Y29116D01* X32704Y29115D01* X32713Y29115D01* X32721Y29117D01* X32724Y29118D01* Y27886D01* X32717Y27886D01* X32709Y27885D01* X32701Y27882D01* X32693Y27878D01* X32686Y27872D01* X32680Y27865D01* X32676Y27858D01* X32673Y27850D01* X32671Y27841D01* X32671Y27833D01* X32672Y27824D01* X32675Y27816D01* X32679Y27808D01* X32685Y27801D01* X32692Y27796D01* X32699Y27791D01* X32707Y27788D01* X32724Y27782D01* Y27217D01* X32712Y27213D01* X32704Y27209D01* X32697Y27205D01* X32690Y27199D01* X32685Y27192D01* X32681Y27184D01* X32678Y27176D01* X32677Y27167D01* X32677Y27159D01* X32679Y27150D01* X32682Y27142D01* X32687Y27135D01* X32693Y27128D01* X32700Y27123D01* X32707Y27119D01* X32716Y27116D01* X32724Y27115D01* Y25883D01* X32721Y25882D01* X32713Y25878D01* X32706Y25872D01* X32700Y25865D01* X32696Y25858D01* X32693Y25850D01* X32691Y25841D01* X32691Y25833D01* X32692Y25824D01* X32695Y25816D01* X32699Y25808D01* X32705Y25801D01* X32712Y25796D01* X32719Y25791D01* X32724Y25789D01* Y25209D01* X32717Y25205D01* X32710Y25199D01* X32705Y25192D01* X32701Y25184D01* X32698Y25176D01* X32697Y25167D01* X32697Y25159D01* X32699Y25150D01* X32702Y25142D01* X32707Y25135D01* X32713Y25128D01* X32720Y25123D01* X32724Y25121D01* Y23870D01* X32720Y23865D01* X32716Y23858D01* X32713Y23850D01* X32711Y23841D01* X32711Y23833D01* X32712Y23824D01* X32715Y23816D01* X32719Y23808D01* X32724Y23802D01* Y23190D01* X32721Y23184D01* X32718Y23176D01* X32717Y23167D01* X32717Y23159D01* X32719Y23150D01* X32722Y23142D01* X32724Y23140D01* Y11861D01* X32722Y11864D01* X32716Y11871D01* X32709Y11876D01* X32702Y11880D01* X32693Y11883D01* X32685Y11884D01* X32676Y11884D01* X32668Y11882D01* X32633Y11870D01* X32601Y11855D01* X32569Y11837D01* X32540Y11816D01* X32512Y11793D01* X32487Y11767D01* X32465Y11740D01* Y13235D01* X32472Y13227D01* X32497Y13202D01* X32525Y13179D01* X32555Y13159D01* X32587Y13141D01* X32620Y13127D01* X32654Y13115D01* X32663Y13113D01* X32672Y13113D01* X32680Y13115D01* X32688Y13117D01* X32696Y13122D01* X32703Y13127D01* X32709Y13134D01* X32713Y13141D01* X32716Y13149D01* X32718Y13158D01* X32718Y13167D01* X32717Y13175D01* X32714Y13183D01* X32710Y13191D01* X32704Y13198D01* X32697Y13204D01* X32690Y13208D01* X32682Y13211D01* X32656Y13220D01* X32631Y13231D01* X32608Y13244D01* X32585Y13259D01* X32564Y13276D01* X32545Y13295D01* X32527Y13316D01* X32512Y13338D01* X32498Y13362D01* X32487Y13386D01* X32478Y13412D01* X32474Y13420D01* X32470Y13427D01* X32465Y13432D01* Y13563D01* X32469Y13567D01* X32473Y13574D01* X32476Y13582D01* X32485Y13608D01* X32496Y13633D01* X32509Y13657D01* X32524Y13679D01* X32541Y13700D01* X32560Y13719D01* X32581Y13737D01* X32603Y13752D01* X32627Y13766D01* X32651Y13777D01* X32677Y13786D01* X32685Y13790D01* X32692Y13794D01* X32699Y13800D01* X32704Y13807D01* X32708Y13815D01* X32711Y13823D01* X32712Y13832D01* X32712Y13840D01* X32710Y13849D01* X32707Y13857D01* X32702Y13864D01* X32696Y13871D01* X32689Y13876D01* X32682Y13880D01* X32673Y13883D01* X32665Y13884D01* X32656Y13884D01* X32648Y13882D01* X32613Y13870D01* X32581Y13855D01* X32549Y13837D01* X32520Y13816D01* X32492Y13793D01* X32467Y13767D01* X32465Y13765D01* Y15214D01* X32477Y15202D01* X32505Y15179D01* X32535Y15159D01* X32567Y15141D01* X32600Y15127D01* X32634Y15115D01* X32643Y15113D01* X32652Y15113D01* X32660Y15115D01* X32668Y15117D01* X32676Y15122D01* X32683Y15127D01* X32689Y15134D01* X32693Y15141D01* X32696Y15149D01* X32698Y15158D01* X32698Y15167D01* X32697Y15175D01* X32694Y15183D01* X32690Y15191D01* X32684Y15198D01* X32677Y15204D01* X32670Y15208D01* X32662Y15211D01* X32636Y15220D01* X32611Y15231D01* X32588Y15244D01* X32565Y15259D01* X32544Y15276D01* X32525Y15295D01* X32507Y15316D01* X32492Y15338D01* X32478Y15362D01* X32467Y15386D01* X32465Y15391D01* Y15609D01* X32476Y15633D01* X32489Y15657D01* X32504Y15679D01* X32521Y15700D01* X32540Y15719D01* X32561Y15737D01* X32583Y15752D01* X32607Y15766D01* X32631Y15777D01* X32657Y15786D01* X32665Y15790D01* X32672Y15794D01* X32679Y15800D01* X32684Y15807D01* X32688Y15815D01* X32691Y15823D01* X32692Y15832D01* X32692Y15840D01* X32690Y15849D01* X32687Y15857D01* X32682Y15864D01* X32676Y15871D01* X32669Y15876D01* X32662Y15880D01* X32653Y15883D01* X32645Y15884D01* X32636Y15884D01* X32628Y15882D01* X32593Y15870D01* X32561Y15855D01* X32529Y15837D01* X32500Y15816D01* X32472Y15793D01* X32465Y15785D01* Y17196D01* X32485Y17179D01* X32515Y17159D01* X32547Y17141D01* X32580Y17127D01* X32614Y17115D01* X32623Y17113D01* X32632Y17113D01* X32640Y17115D01* X32648Y17117D01* X32656Y17122D01* X32663Y17127D01* X32669Y17134D01* X32673Y17141D01* X32676Y17149D01* X32678Y17158D01* X32678Y17167D01* X32677Y17175D01* X32674Y17183D01* X32670Y17191D01* X32664Y17198D01* X32657Y17204D01* X32650Y17208D01* X32642Y17211D01* X32616Y17220D01* X32591Y17231D01* X32568Y17244D01* X32545Y17259D01* X32524Y17276D01* X32505Y17295D01* X32487Y17316D01* X32472Y17338D01* X32465Y17349D01* Y17650D01* X32469Y17657D01* X32484Y17679D01* X32501Y17700D01* X32520Y17719D01* X32541Y17737D01* X32563Y17752D01* X32587Y17766D01* X32611Y17777D01* X32637Y17786D01* X32645Y17790D01* X32652Y17794D01* X32659Y17800D01* X32664Y17807D01* X32668Y17815D01* X32671Y17823D01* X32672Y17832D01* X32672Y17840D01* X32670Y17849D01* X32667Y17857D01* X32662Y17864D01* X32656Y17871D01* X32649Y17876D01* X32642Y17880D01* X32633Y17883D01* X32625Y17884D01* X32616Y17884D01* X32608Y17882D01* X32573Y17870D01* X32541Y17855D01* X32509Y17837D01* X32480Y17816D01* X32465Y17804D01* Y19179D01* X32465Y19179D01* X32495Y19159D01* X32527Y19141D01* X32560Y19127D01* X32594Y19115D01* X32603Y19113D01* X32612Y19113D01* X32620Y19115D01* X32628Y19117D01* X32636Y19122D01* X32643Y19127D01* X32649Y19134D01* X32653Y19141D01* X32656Y19149D01* X32658Y19158D01* X32658Y19167D01* X32657Y19175D01* X32654Y19183D01* X32650Y19191D01* X32644Y19198D01* X32637Y19204D01* X32630Y19208D01* X32622Y19211D01* X32596Y19220D01* X32571Y19231D01* X32548Y19244D01* X32525Y19259D01* X32504Y19276D01* X32485Y19295D01* X32467Y19316D01* X32465Y19319D01* Y19680D01* X32481Y19700D01* X32500Y19719D01* X32521Y19737D01* X32543Y19752D01* X32567Y19766D01* X32591Y19777D01* X32617Y19786D01* X32625Y19790D01* X32632Y19794D01* X32639Y19800D01* X32644Y19807D01* X32648Y19815D01* X32651Y19823D01* X32652Y19832D01* X32652Y19840D01* X32650Y19849D01* X32647Y19857D01* X32642Y19864D01* X32636Y19871D01* X32629Y19876D01* X32622Y19880D01* X32613Y19883D01* X32605Y19884D01* X32596Y19884D01* X32588Y19882D01* X32553Y19870D01* X32521Y19855D01* X32489Y19837D01* X32465Y19820D01* Y21166D01* X32475Y21159D01* X32507Y21141D01* X32540Y21127D01* X32574Y21115D01* X32583Y21113D01* X32592Y21113D01* X32600Y21115D01* X32608Y21117D01* X32616Y21122D01* X32623Y21127D01* X32629Y21134D01* X32633Y21141D01* X32636Y21149D01* X32638Y21158D01* X32638Y21167D01* X32637Y21175D01* X32634Y21183D01* X32630Y21191D01* X32624Y21198D01* X32617Y21204D01* X32610Y21208D01* X32602Y21211D01* X32576Y21220D01* X32551Y21231D01* X32528Y21244D01* X32505Y21259D01* X32484Y21276D01* X32465Y21295D01* Y21704D01* X32480Y21719D01* X32501Y21737D01* X32523Y21752D01* X32547Y21766D01* X32571Y21777D01* X32597Y21786D01* X32605Y21790D01* X32612Y21794D01* X32619Y21800D01* X32624Y21807D01* X32628Y21815D01* X32631Y21823D01* X32632Y21832D01* X32632Y21840D01* X32630Y21849D01* X32627Y21857D01* X32622Y21864D01* X32616Y21871D01* X32609Y21876D01* X32602Y21880D01* X32593Y21883D01* X32585Y21884D01* X32576Y21884D01* X32568Y21882D01* X32533Y21870D01* X32501Y21855D01* X32469Y21837D01* X32465Y21834D01* Y23153D01* X32487Y23141D01* X32520Y23127D01* X32554Y23115D01* X32563Y23113D01* X32572Y23113D01* X32580Y23115D01* X32588Y23117D01* X32596Y23122D01* X32603Y23127D01* X32609Y23134D01* X32613Y23141D01* X32616Y23149D01* X32618Y23158D01* X32618Y23167D01* X32617Y23175D01* X32614Y23183D01* X32610Y23191D01* X32604Y23198D01* X32597Y23204D01* X32590Y23208D01* X32582Y23211D01* X32556Y23220D01* X32531Y23231D01* X32508Y23244D01* X32485Y23259D01* X32465Y23276D01* Y23723D01* X32481Y23737D01* X32503Y23752D01* X32527Y23766D01* X32551Y23777D01* X32577Y23786D01* X32585Y23790D01* X32592Y23794D01* X32599Y23800D01* X32604Y23807D01* X32608Y23815D01* X32611Y23823D01* X32612Y23832D01* X32612Y23840D01* X32610Y23849D01* X32607Y23857D01* X32602Y23864D01* X32596Y23871D01* X32589Y23876D01* X32582Y23880D01* X32573Y23883D01* X32565Y23884D01* X32556Y23884D01* X32548Y23882D01* X32513Y23870D01* X32481Y23855D01* X32465Y23846D01* Y25142D01* X32467Y25141D01* X32500Y25127D01* X32534Y25115D01* X32543Y25113D01* X32552Y25113D01* X32560Y25115D01* X32568Y25117D01* X32576Y25122D01* X32583Y25127D01* X32589Y25134D01* X32593Y25141D01* X32596Y25149D01* X32598Y25158D01* X32598Y25167D01* X32597Y25175D01* X32594Y25183D01* X32590Y25191D01* X32584Y25198D01* X32577Y25204D01* X32570Y25208D01* X32562Y25211D01* X32536Y25220D01* X32511Y25231D01* X32488Y25244D01* X32465Y25259D01* Y25740D01* X32483Y25752D01* X32507Y25766D01* X32531Y25777D01* X32557Y25786D01* X32565Y25790D01* X32572Y25794D01* X32579Y25800D01* X32584Y25807D01* X32588Y25815D01* X32591Y25823D01* X32592Y25832D01* X32592Y25840D01* X32590Y25849D01* X32587Y25857D01* X32582Y25864D01* X32576Y25871D01* X32569Y25876D01* X32562Y25880D01* X32553Y25883D01* X32545Y25884D01* X32536Y25884D01* X32528Y25882D01* X32493Y25870D01* X32465Y25857D01* Y27133D01* X32480Y27127D01* X32514Y27115D01* X32523Y27113D01* X32532Y27113D01* X32540Y27115D01* X32548Y27117D01* X32556Y27122D01* X32563Y27127D01* X32569Y27134D01* X32573Y27141D01* X32576Y27149D01* X32578Y27158D01* X32578Y27167D01* X32577Y27175D01* X32574Y27183D01* X32570Y27191D01* X32564Y27198D01* X32557Y27204D01* X32550Y27208D01* X32542Y27211D01* X32516Y27220D01* X32491Y27231D01* X32468Y27244D01* X32465Y27246D01* Y27754D01* X32487Y27766D01* X32511Y27777D01* X32537Y27786D01* X32545Y27790D01* X32552Y27794D01* X32559Y27800D01* X32564Y27807D01* X32568Y27815D01* X32571Y27823D01* X32572Y27832D01* X32572Y27840D01* X32570Y27849D01* X32567Y27857D01* X32562Y27864D01* X32556Y27871D01* X32549Y27876D01* X32542Y27880D01* X32533Y27883D01* X32525Y27884D01* X32516Y27884D01* X32508Y27882D01* X32473Y27870D01* X32465Y27866D01* Y29125D01* X32494Y29115D01* X32503Y29113D01* X32512Y29113D01* X32520Y29115D01* X32528Y29117D01* X32536Y29122D01* X32543Y29127D01* X32549Y29134D01* X32553Y29141D01* X32556Y29149D01* X32558Y29158D01* X32558Y29167D01* X32557Y29175D01* X32554Y29183D01* X32550Y29191D01* X32544Y29198D01* X32537Y29204D01* X32530Y29208D01* X32522Y29211D01* X32496Y29220D01* X32471Y29231D01* X32465Y29234D01* Y29765D01* X32467Y29766D01* X32491Y29777D01* X32517Y29786D01* X32525Y29790D01* X32532Y29794D01* X32539Y29800D01* X32544Y29807D01* X32548Y29815D01* X32551Y29823D01* X32552Y29832D01* X32552Y29840D01* X32550Y29849D01* X32547Y29857D01* X32542Y29864D01* X32536Y29871D01* X32529Y29876D01* X32522Y29880D01* X32513Y29883D01* X32505Y29884D01* X32496Y29884D01* X32488Y29882D01* X32465Y29874D01* Y31118D01* X32474Y31115D01* X32483Y31113D01* X32492Y31113D01* X32500Y31115D01* X32508Y31117D01* X32516Y31122D01* X32523Y31127D01* X32529Y31134D01* X32533Y31141D01* X32536Y31149D01* X32538Y31158D01* X32538Y31167D01* X32537Y31175D01* X32534Y31183D01* X32530Y31191D01* X32524Y31198D01* X32517Y31204D01* X32510Y31208D01* X32502Y31211D01* X32476Y31220D01* X32465Y31225D01* Y31775D01* X32471Y31777D01* X32497Y31786D01* X32505Y31790D01* X32512Y31794D01* X32519Y31800D01* X32524Y31807D01* X32528Y31815D01* X32531Y31823D01* X32532Y31832D01* X32532Y31840D01* X32530Y31849D01* X32527Y31857D01* X32522Y31864D01* X32516Y31871D01* X32509Y31876D01* X32502Y31880D01* X32493Y31883D01* X32485Y31884D01* X32476Y31884D01* X32468Y31882D01* X32465Y31881D01* Y33113D01* X32472Y33113D01* X32480Y33115D01* X32488Y33117D01* X32496Y33122D01* X32503Y33127D01* X32509Y33134D01* X32513Y33141D01* X32516Y33149D01* X32518Y33158D01* X32518Y33167D01* X32517Y33175D01* X32514Y33183D01* X32510Y33191D01* X32504Y33198D01* X32497Y33204D01* X32490Y33208D01* X32482Y33211D01* X32465Y33217D01* Y33782D01* X32477Y33786D01* X32485Y33790D01* X32492Y33794D01* X32499Y33800D01* X32504Y33807D01* X32508Y33815D01* X32511Y33823D01* X32512Y33832D01* X32512Y33840D01* X32510Y33849D01* X32507Y33857D01* X32502Y33864D01* X32496Y33871D01* X32489Y33876D01* X32482Y33880D01* X32473Y33883D01* X32465Y33884D01* Y35116D01* X32468Y35117D01* X32476Y35122D01* X32483Y35127D01* X32489Y35134D01* X32493Y35141D01* X32496Y35149D01* X32498Y35158D01* X32498Y35167D01* X32497Y35175D01* X32494Y35183D01* X32490Y35191D01* X32484Y35198D01* X32477Y35204D01* X32470Y35208D01* X32465Y35210D01* Y35790D01* X32472Y35794D01* X32479Y35800D01* X32484Y35807D01* X32488Y35815D01* X32491Y35823D01* X32492Y35832D01* X32492Y35840D01* X32490Y35849D01* X32487Y35857D01* X32482Y35864D01* X32476Y35871D01* X32469Y35876D01* X32465Y35878D01* Y37130D01* X32469Y37134D01* X32473Y37141D01* X32476Y37149D01* X32478Y37158D01* X32478Y37167D01* X32477Y37175D01* X32474Y37183D01* X32470Y37191D01* X32465Y37197D01* Y37809D01* X32468Y37815D01* X32471Y37823D01* X32472Y37832D01* X32472Y37840D01* X32470Y37849D01* X32467Y37857D01* X32465Y37859D01* Y40000D01* G37* G36* Y11549D02*X32468Y11550D01* X32476Y11555D01* X32483Y11560D01* X32489Y11567D01* X32493Y11574D01* X32496Y11582D01* X32505Y11608D01* X32516Y11633D01* X32529Y11657D01* X32544Y11679D01* X32561Y11700D01* X32580Y11719D01* X32601Y11737D01* X32623Y11752D01* X32647Y11766D01* X32671Y11777D01* X32697Y11786D01* X32705Y11790D01* X32712Y11794D01* X32719Y11800D01* X32724Y11807D01* Y11198D01* X32717Y11204D01* X32710Y11208D01* X32702Y11211D01* X32676Y11220D01* X32651Y11231D01* X32628Y11244D01* X32605Y11259D01* X32584Y11276D01* X32565Y11295D01* X32547Y11316D01* X32532Y11338D01* X32518Y11362D01* X32507Y11386D01* X32498Y11412D01* X32494Y11420D01* X32490Y11427D01* X32484Y11434D01* X32477Y11439D01* X32469Y11443D01* X32465Y11445D01* Y11549D01* G37* G36* Y11259D02*X32468Y11255D01* X32492Y11227D01* X32517Y11202D01* X32545Y11179D01* X32575Y11159D01* X32607Y11141D01* X32640Y11127D01* X32674Y11115D01* X32683Y11113D01* X32692Y11113D01* X32700Y11115D01* X32708Y11117D01* X32716Y11122D01* X32723Y11127D01* X32724Y11128D01* Y9879D01* X32722Y9880D01* X32713Y9883D01* X32705Y9884D01* X32696Y9884D01* X32688Y9882D01* X32653Y9870D01* X32621Y9855D01* X32589Y9837D01* X32560Y9816D01* X32532Y9793D01* X32507Y9767D01* X32484Y9739D01* X32465Y9711D01* Y11259D01* G37* G36* Y9546D02*X32472Y9546D01* X32480Y9547D01* X32488Y9550D01* X32496Y9555D01* X32503Y9560D01* X32509Y9567D01* X32513Y9574D01* X32516Y9582D01* X32525Y9608D01* X32536Y9633D01* X32549Y9657D01* X32564Y9679D01* X32581Y9700D01* X32600Y9719D01* X32621Y9737D01* X32643Y9752D01* X32667Y9766D01* X32691Y9777D01* X32717Y9786D01* X32724Y9789D01* Y9210D01* X32722Y9211D01* X32696Y9220D01* X32671Y9231D01* X32648Y9244D01* X32625Y9259D01* X32604Y9276D01* X32585Y9295D01* X32567Y9316D01* X32552Y9338D01* X32538Y9362D01* X32527Y9386D01* X32518Y9412D01* X32514Y9420D01* X32510Y9427D01* X32504Y9434D01* X32497Y9439D01* X32489Y9443D01* X32481Y9446D01* X32472Y9447D01* X32465Y9447D01* Y9546D01* G37* G36* Y9288D02*X32467Y9284D01* X32488Y9255D01* X32512Y9227D01* X32537Y9202D01* X32565Y9179D01* X32595Y9159D01* X32627Y9141D01* X32660Y9127D01* X32694Y9115D01* X32703Y9113D01* X32712Y9113D01* X32720Y9115D01* X32724Y9116D01* Y7884D01* X32716Y7884D01* X32708Y7882D01* X32673Y7870D01* X32641Y7855D01* X32609Y7837D01* X32580Y7816D01* X32552Y7793D01* X32527Y7767D01* X32504Y7739D01* X32484Y7709D01* X32466Y7677D01* X32465Y7675D01* Y9288D01* G37* G36* Y7552D02*X32466Y7551D01* X32474Y7548D01* X32483Y7546D01* X32492Y7546D01* X32500Y7547D01* X32508Y7550D01* X32516Y7555D01* X32523Y7560D01* X32529Y7567D01* X32533Y7574D01* X32536Y7582D01* X32545Y7608D01* X32556Y7633D01* X32569Y7657D01* X32584Y7679D01* X32601Y7700D01* X32620Y7719D01* X32641Y7737D01* X32663Y7752D01* X32687Y7766D01* X32711Y7777D01* X32724Y7782D01* Y7217D01* X32716Y7220D01* X32691Y7231D01* X32668Y7244D01* X32645Y7259D01* X32624Y7276D01* X32605Y7295D01* X32587Y7316D01* X32572Y7338D01* X32558Y7362D01* X32547Y7386D01* X32538Y7412D01* X32534Y7420D01* X32530Y7427D01* X32524Y7434D01* X32517Y7439D01* X32509Y7443D01* X32501Y7446D01* X32492Y7447D01* X32484Y7447D01* X32475Y7445D01* X32467Y7442D01* X32465Y7441D01* Y7552D01* G37* G36* Y7325D02*X32469Y7316D01* X32487Y7284D01* X32508Y7255D01* X32532Y7227D01* X32557Y7202D01* X32585Y7179D01* X32615Y7159D01* X32647Y7141D01* X32680Y7127D01* X32714Y7115D01* X32723Y7113D01* X32724D01* Y5881D01* X32693Y5870D01* X32661Y5855D01* X32629Y5837D01* X32600Y5816D01* X32572Y5793D01* X32547Y5767D01* X32524Y5739D01* X32504Y5709D01* X32486Y5677D01* X32472Y5644D01* X32465Y5625D01* Y7325D01* G37* G36* Y5571D02*X32467Y5568D01* X32472Y5561D01* X32479Y5556D01* X32486Y5551D01* X32494Y5548D01* X32503Y5546D01* X32512Y5546D01* X32520Y5547D01* X32528Y5550D01* X32536Y5555D01* X32543Y5560D01* X32549Y5567D01* X32553Y5574D01* X32556Y5582D01* X32565Y5608D01* X32576Y5633D01* X32589Y5657D01* X32604Y5679D01* X32621Y5700D01* X32640Y5719D01* X32661Y5737D01* X32683Y5752D01* X32707Y5766D01* X32724Y5774D01* Y5225D01* X32711Y5231D01* X32688Y5244D01* X32665Y5259D01* X32644Y5276D01* X32625Y5295D01* X32607Y5316D01* X32592Y5338D01* X32578Y5362D01* X32567Y5386D01* X32558Y5412D01* X32554Y5420D01* X32550Y5427D01* X32544Y5434D01* X32537Y5439D01* X32529Y5443D01* X32521Y5446D01* X32512Y5447D01* X32504Y5447D01* X32495Y5445D01* X32487Y5442D01* X32480Y5437D01* X32473Y5431D01* X32468Y5424D01* X32465Y5419D01* Y5571D01* G37* G36* Y5374D02*X32474Y5349D01* X32489Y5316D01* X32507Y5284D01* X32528Y5255D01* X32552Y5227D01* X32577Y5202D01* X32605Y5179D01* X32635Y5159D01* X32667Y5141D01* X32700Y5127D01* X32724Y5119D01* Y3874D01* X32713Y3870D01* X32681Y3855D01* X32649Y3837D01* X32620Y3816D01* X32592Y3793D01* X32567Y3767D01* X32544Y3739D01* X32524Y3709D01* X32506Y3677D01* X32492Y3644D01* X32480Y3610D01* X32478Y3601D01* X32478Y3593D01* X32479Y3584D01* X32482Y3576D01* X32487Y3568D01* X32492Y3561D01* X32499Y3556D01* X32506Y3551D01* X32514Y3548D01* X32523Y3546D01* X32532Y3546D01* X32540Y3547D01* X32548Y3550D01* X32556Y3555D01* X32563Y3560D01* X32569Y3567D01* X32573Y3574D01* X32576Y3582D01* X32585Y3608D01* X32596Y3633D01* X32609Y3657D01* X32624Y3679D01* X32641Y3700D01* X32660Y3719D01* X32681Y3737D01* X32703Y3752D01* X32724Y3764D01* Y3235D01* X32708Y3244D01* X32685Y3259D01* X32664Y3276D01* X32645Y3295D01* X32627Y3316D01* X32612Y3338D01* X32598Y3362D01* X32587Y3386D01* X32578Y3412D01* X32574Y3420D01* X32570Y3427D01* X32564Y3434D01* X32557Y3439D01* X32549Y3443D01* X32541Y3446D01* X32532Y3447D01* X32524Y3447D01* X32515Y3445D01* X32507Y3442D01* X32500Y3437D01* X32493Y3431D01* X32488Y3424D01* X32484Y3417D01* X32481Y3409D01* X32480Y3400D01* X32480Y3391D01* X32482Y3383D01* X32494Y3349D01* X32509Y3316D01* X32527Y3284D01* X32548Y3255D01* X32572Y3227D01* X32597Y3202D01* X32625Y3179D01* X32655Y3159D01* X32687Y3141D01* X32720Y3127D01* X32724Y3125D01* Y1866D01* X32701Y1855D01* X32669Y1837D01* X32640Y1816D01* X32612Y1793D01* X32587Y1767D01* X32564Y1739D01* X32544Y1709D01* X32526Y1677D01* X32512Y1644D01* X32500Y1610D01* X32498Y1601D01* X32498Y1593D01* X32499Y1584D01* X32502Y1576D01* X32507Y1568D01* X32512Y1561D01* X32519Y1556D01* X32526Y1551D01* X32534Y1548D01* X32543Y1546D01* X32552Y1546D01* X32560Y1547D01* X32568Y1550D01* X32576Y1555D01* X32583Y1560D01* X32589Y1567D01* X32593Y1574D01* X32596Y1582D01* X32605Y1608D01* X32616Y1633D01* X32629Y1657D01* X32644Y1679D01* X32661Y1700D01* X32680Y1719D01* X32701Y1737D01* X32723Y1752D01* X32724Y1753D01* Y1246D01* X32705Y1259D01* X32684Y1276D01* X32665Y1295D01* X32647Y1316D01* X32632Y1338D01* X32618Y1362D01* X32607Y1386D01* X32598Y1412D01* X32594Y1420D01* X32590Y1427D01* X32584Y1434D01* X32577Y1439D01* X32569Y1443D01* X32561Y1446D01* X32552Y1447D01* X32544Y1447D01* X32535Y1445D01* X32527Y1442D01* X32520Y1437D01* X32513Y1431D01* X32508Y1424D01* X32504Y1417D01* X32501Y1409D01* X32500Y1400D01* X32500Y1391D01* X32502Y1383D01* X32514Y1349D01* X32529Y1316D01* X32547Y1284D01* X32568Y1255D01* X32592Y1227D01* X32617Y1202D01* X32645Y1179D01* X32675Y1159D01* X32707Y1141D01* X32724Y1134D01* Y0D01* X32465D01* Y5374D01* G37* G36* X32724Y40000D02*X32904D01* Y37625D01* X32895Y37651D01* X32880Y37683D01* X32862Y37715D01* X32841Y37744D01* X32817Y37772D01* X32792Y37797D01* X32764Y37820D01* X32734Y37840D01* X32724Y37846D01* Y39165D01* X32749Y39183D01* X32777Y39207D01* X32802Y39232D01* X32825Y39260D01* X32845Y39290D01* X32863Y39322D01* X32877Y39355D01* X32889Y39389D01* X32891Y39398D01* X32891Y39407D01* X32890Y39415D01* X32887Y39423D01* X32882Y39431D01* X32877Y39438D01* X32870Y39444D01* X32863Y39448D01* X32855Y39451D01* X32846Y39453D01* X32837Y39453D01* X32829Y39452D01* X32821Y39449D01* X32813Y39445D01* X32806Y39439D01* X32800Y39433D01* X32796Y39425D01* X32793Y39417D01* X32784Y39391D01* X32773Y39366D01* X32760Y39343D01* X32745Y39320D01* X32728Y39299D01* X32724Y39295D01* Y39704D01* X32724Y39704D01* X32742Y39683D01* X32757Y39661D01* X32771Y39637D01* X32782Y39613D01* X32791Y39587D01* X32795Y39579D01* X32799Y39572D01* X32805Y39565D01* X32812Y39560D01* X32820Y39556D01* X32828Y39553D01* X32837Y39552D01* X32845Y39552D01* X32854Y39554D01* X32862Y39557D01* X32869Y39562D01* X32876Y39568D01* X32881Y39575D01* X32885Y39582D01* X32888Y39591D01* X32889Y39599D01* X32889Y39608D01* X32887Y39617D01* X32875Y39651D01* X32860Y39683D01* X32842Y39715D01* X32821Y39744D01* X32797Y39772D01* X32772Y39797D01* X32744Y39820D01* X32724Y39834D01* Y40000D01* G37* G36* X32904Y0D02*X32724D01* Y1134D01* X32740Y1127D01* X32774Y1115D01* X32783Y1113D01* X32792Y1113D01* X32800Y1115D01* X32808Y1117D01* X32816Y1122D01* X32823Y1127D01* X32829Y1134D01* X32833Y1141D01* X32836Y1149D01* X32838Y1158D01* X32838Y1167D01* X32837Y1175D01* X32834Y1183D01* X32830Y1191D01* X32824Y1198D01* X32817Y1204D01* X32810Y1208D01* X32802Y1211D01* X32776Y1220D01* X32751Y1231D01* X32728Y1244D01* X32724Y1246D01* Y1753D01* X32747Y1766D01* X32771Y1777D01* X32797Y1786D01* X32805Y1790D01* X32812Y1794D01* X32819Y1800D01* X32824Y1807D01* X32828Y1815D01* X32831Y1823D01* X32832Y1832D01* X32832Y1840D01* X32830Y1849D01* X32827Y1857D01* X32822Y1864D01* X32816Y1871D01* X32809Y1876D01* X32802Y1880D01* X32793Y1883D01* X32785Y1884D01* X32776Y1884D01* X32768Y1882D01* X32733Y1870D01* X32724Y1866D01* Y3125D01* X32754Y3115D01* X32763Y3113D01* X32772Y3113D01* X32780Y3115D01* X32788Y3117D01* X32796Y3122D01* X32803Y3127D01* X32809Y3134D01* X32813Y3141D01* X32816Y3149D01* X32818Y3158D01* X32818Y3167D01* X32817Y3175D01* X32814Y3183D01* X32810Y3191D01* X32804Y3198D01* X32797Y3204D01* X32790Y3208D01* X32782Y3211D01* X32756Y3220D01* X32731Y3231D01* X32724Y3235D01* Y3764D01* X32727Y3766D01* X32751Y3777D01* X32777Y3786D01* X32785Y3790D01* X32792Y3794D01* X32799Y3800D01* X32804Y3807D01* X32808Y3815D01* X32811Y3823D01* X32812Y3832D01* X32812Y3840D01* X32810Y3849D01* X32807Y3857D01* X32802Y3864D01* X32796Y3871D01* X32789Y3876D01* X32782Y3880D01* X32773Y3883D01* X32765Y3884D01* X32756Y3884D01* X32748Y3882D01* X32724Y3874D01* Y5119D01* X32734Y5115D01* X32743Y5113D01* X32752Y5113D01* X32760Y5115D01* X32768Y5117D01* X32776Y5122D01* X32783Y5127D01* X32789Y5134D01* X32793Y5141D01* X32796Y5149D01* X32798Y5158D01* X32798Y5167D01* X32797Y5175D01* X32794Y5183D01* X32790Y5191D01* X32784Y5198D01* X32777Y5204D01* X32770Y5208D01* X32762Y5211D01* X32736Y5220D01* X32724Y5225D01* Y5774D01* X32731Y5777D01* X32757Y5786D01* X32765Y5790D01* X32772Y5794D01* X32779Y5800D01* X32784Y5807D01* X32788Y5815D01* X32791Y5823D01* X32792Y5832D01* X32792Y5840D01* X32790Y5849D01* X32787Y5857D01* X32782Y5864D01* X32776Y5871D01* X32769Y5876D01* X32762Y5880D01* X32753Y5883D01* X32745Y5884D01* X32736Y5884D01* X32728Y5882D01* X32724Y5881D01* Y7113D01* X32732Y7113D01* X32740Y7115D01* X32748Y7117D01* X32756Y7122D01* X32763Y7127D01* X32769Y7134D01* X32773Y7141D01* X32776Y7149D01* X32778Y7158D01* X32778Y7167D01* X32777Y7175D01* X32774Y7183D01* X32770Y7191D01* X32764Y7198D01* X32757Y7204D01* X32750Y7208D01* X32742Y7211D01* X32724Y7217D01* Y7782D01* X32737Y7786D01* X32745Y7790D01* X32752Y7794D01* X32759Y7800D01* X32764Y7807D01* X32768Y7815D01* X32771Y7823D01* X32772Y7832D01* X32772Y7840D01* X32770Y7849D01* X32767Y7857D01* X32762Y7864D01* X32756Y7871D01* X32749Y7876D01* X32742Y7880D01* X32733Y7883D01* X32725Y7884D01* X32724D01* Y9116D01* X32728Y9117D01* X32736Y9122D01* X32743Y9127D01* X32749Y9134D01* X32753Y9141D01* X32756Y9149D01* X32758Y9158D01* X32758Y9167D01* X32757Y9175D01* X32754Y9183D01* X32750Y9191D01* X32744Y9198D01* X32737Y9204D01* X32730Y9208D01* X32724Y9210D01* Y9789D01* X32725Y9790D01* X32732Y9794D01* X32739Y9800D01* X32744Y9807D01* X32748Y9815D01* X32751Y9823D01* X32752Y9832D01* X32752Y9840D01* X32750Y9849D01* X32747Y9857D01* X32742Y9864D01* X32736Y9871D01* X32729Y9876D01* X32724Y9879D01* Y11128D01* X32729Y11134D01* X32733Y11141D01* X32736Y11149D01* X32738Y11158D01* X32738Y11167D01* X32737Y11175D01* X32734Y11183D01* X32730Y11191D01* X32724Y11198D01* X32724Y11198D01* Y11807D01* X32724Y11807D01* X32728Y11815D01* X32731Y11823D01* X32732Y11832D01* X32732Y11840D01* X32730Y11849D01* X32727Y11857D01* X32724Y11861D01* Y23140D01* X32727Y23135D01* X32733Y23128D01* X32740Y23123D01* X32747Y23119D01* X32756Y23116D01* X32764Y23115D01* X32773Y23115D01* X32781Y23117D01* X32816Y23129D01* X32848Y23144D01* X32880Y23162D01* X32904Y23180D01* Y21834D01* X32894Y21840D01* X32862Y21858D01* X32829Y21873D01* X32795Y21884D01* X32786Y21886D01* X32777Y21886D01* X32769Y21885D01* X32761Y21882D01* X32753Y21878D01* X32746Y21872D01* X32740Y21865D01* X32736Y21858D01* X32733Y21850D01* X32731Y21841D01* X32731Y21833D01* X32732Y21824D01* X32735Y21816D01* X32739Y21808D01* X32745Y21801D01* X32752Y21796D01* X32759Y21791D01* X32767Y21788D01* X32793Y21779D01* X32818Y21768D01* X32841Y21755D01* X32864Y21740D01* X32885Y21723D01* X32904Y21704D01* Y21295D01* X32889Y21280D01* X32868Y21262D01* X32846Y21247D01* X32822Y21233D01* X32798Y21222D01* X32772Y21213D01* X32764Y21209D01* X32757Y21205D01* X32750Y21199D01* X32745Y21192D01* X32741Y21184D01* X32738Y21176D01* X32737Y21167D01* X32737Y21159D01* X32739Y21150D01* X32742Y21142D01* X32747Y21135D01* X32753Y21128D01* X32760Y21123D01* X32767Y21119D01* X32776Y21116D01* X32784Y21115D01* X32793Y21115D01* X32801Y21117D01* X32836Y21129D01* X32868Y21144D01* X32900Y21162D01* X32904Y21165D01* Y19846D01* X32882Y19858D01* X32849Y19873D01* X32815Y19884D01* X32806Y19886D01* X32797Y19886D01* X32789Y19885D01* X32781Y19882D01* X32773Y19878D01* X32766Y19872D01* X32760Y19865D01* X32756Y19858D01* X32753Y19850D01* X32751Y19841D01* X32751Y19833D01* X32752Y19824D01* X32755Y19816D01* X32759Y19808D01* X32765Y19801D01* X32772Y19796D01* X32779Y19791D01* X32787Y19788D01* X32813Y19779D01* X32838Y19768D01* X32861Y19755D01* X32884Y19740D01* X32904Y19724D01* Y19276D01* X32888Y19262D01* X32866Y19247D01* X32842Y19233D01* X32818Y19222D01* X32792Y19213D01* X32784Y19209D01* X32777Y19205D01* X32770Y19199D01* X32765Y19192D01* X32761Y19184D01* X32758Y19176D01* X32757Y19167D01* X32757Y19159D01* X32759Y19150D01* X32762Y19142D01* X32767Y19135D01* X32773Y19128D01* X32780Y19123D01* X32787Y19119D01* X32796Y19116D01* X32804Y19115D01* X32813Y19115D01* X32821Y19117D01* X32856Y19129D01* X32888Y19144D01* X32904Y19153D01* Y17857D01* X32902Y17858D01* X32869Y17873D01* X32835Y17884D01* X32826Y17886D01* X32817Y17886D01* X32809Y17885D01* X32801Y17882D01* X32793Y17878D01* X32786Y17872D01* X32780Y17865D01* X32776Y17858D01* X32773Y17850D01* X32771Y17841D01* X32771Y17833D01* X32772Y17824D01* X32775Y17816D01* X32779Y17808D01* X32785Y17801D01* X32792Y17796D01* X32799Y17791D01* X32807Y17788D01* X32833Y17779D01* X32858Y17768D01* X32881Y17755D01* X32904Y17740D01* Y17259D01* X32886Y17247D01* X32862Y17233D01* X32838Y17222D01* X32812Y17213D01* X32804Y17209D01* X32797Y17205D01* X32790Y17199D01* X32785Y17192D01* X32781Y17184D01* X32778Y17176D01* X32777Y17167D01* X32777Y17159D01* X32779Y17150D01* X32782Y17142D01* X32787Y17135D01* X32793Y17128D01* X32800Y17123D01* X32807Y17119D01* X32816Y17116D01* X32824Y17115D01* X32833Y17115D01* X32841Y17117D01* X32876Y17129D01* X32904Y17142D01* Y15866D01* X32889Y15873D01* X32855Y15884D01* X32846Y15886D01* X32837Y15886D01* X32829Y15885D01* X32821Y15882D01* X32813Y15878D01* X32806Y15872D01* X32800Y15865D01* X32796Y15858D01* X32793Y15850D01* X32791Y15841D01* X32791Y15833D01* X32792Y15824D01* X32795Y15816D01* X32799Y15808D01* X32805Y15801D01* X32812Y15796D01* X32819Y15791D01* X32827Y15788D01* X32853Y15779D01* X32878Y15768D01* X32901Y15755D01* X32904Y15754D01* Y15246D01* X32882Y15233D01* X32858Y15222D01* X32832Y15213D01* X32824Y15209D01* X32817Y15205D01* X32810Y15199D01* X32805Y15192D01* X32801Y15184D01* X32798Y15176D01* X32797Y15167D01* X32797Y15159D01* X32799Y15150D01* X32802Y15142D01* X32807Y15135D01* X32813Y15128D01* X32820Y15123D01* X32827Y15119D01* X32836Y15116D01* X32844Y15115D01* X32853Y15115D01* X32861Y15117D01* X32896Y15129D01* X32904Y15133D01* Y13874D01* X32875Y13884D01* X32866Y13886D01* X32857Y13886D01* X32849Y13885D01* X32841Y13882D01* X32833Y13878D01* X32826Y13872D01* X32820Y13865D01* X32816Y13858D01* X32813Y13850D01* X32811Y13841D01* X32811Y13833D01* X32812Y13824D01* X32815Y13816D01* X32819Y13808D01* X32825Y13801D01* X32832Y13796D01* X32839Y13791D01* X32847Y13788D01* X32873Y13779D01* X32898Y13768D01* X32904Y13765D01* Y13234D01* X32902Y13233D01* X32878Y13222D01* X32852Y13213D01* X32844Y13209D01* X32837Y13205D01* X32830Y13199D01* X32825Y13192D01* X32821Y13184D01* X32818Y13176D01* X32817Y13167D01* X32817Y13159D01* X32819Y13150D01* X32822Y13142D01* X32827Y13135D01* X32833Y13128D01* X32840Y13123D01* X32847Y13119D01* X32856Y13116D01* X32864Y13115D01* X32873Y13115D01* X32881Y13117D01* X32904Y13125D01* Y11881D01* X32895Y11884D01* X32886Y11886D01* X32877Y11886D01* X32869Y11885D01* X32861Y11882D01* X32853Y11878D01* X32846Y11872D01* X32840Y11865D01* X32836Y11858D01* X32833Y11850D01* X32831Y11841D01* X32831Y11833D01* X32832Y11824D01* X32835Y11816D01* X32839Y11808D01* X32845Y11801D01* X32852Y11796D01* X32859Y11791D01* X32867Y11788D01* X32893Y11779D01* X32904Y11774D01* Y11225D01* X32898Y11222D01* X32872Y11213D01* X32864Y11209D01* X32857Y11205D01* X32850Y11199D01* X32845Y11192D01* X32841Y11184D01* X32838Y11176D01* X32837Y11167D01* X32837Y11159D01* X32839Y11150D01* X32842Y11142D01* X32847Y11135D01* X32853Y11128D01* X32860Y11123D01* X32867Y11119D01* X32876Y11116D01* X32884Y11115D01* X32893Y11115D01* X32901Y11117D01* X32904Y11118D01* Y9886D01* X32897Y9886D01* X32889Y9885D01* X32881Y9882D01* X32873Y9878D01* X32866Y9872D01* X32860Y9865D01* X32856Y9858D01* X32853Y9850D01* X32851Y9841D01* X32851Y9833D01* X32852Y9824D01* X32855Y9816D01* X32859Y9808D01* X32865Y9801D01* X32872Y9796D01* X32879Y9791D01* X32887Y9788D01* X32904Y9782D01* Y9217D01* X32892Y9213D01* X32884Y9209D01* X32877Y9205D01* X32870Y9199D01* X32865Y9192D01* X32861Y9184D01* X32858Y9176D01* X32857Y9167D01* X32857Y9159D01* X32859Y9150D01* X32862Y9142D01* X32867Y9135D01* X32873Y9128D01* X32880Y9123D01* X32887Y9119D01* X32896Y9116D01* X32904Y9115D01* Y7883D01* X32901Y7882D01* X32893Y7878D01* X32886Y7872D01* X32880Y7865D01* X32876Y7858D01* X32873Y7850D01* X32871Y7841D01* X32871Y7833D01* X32872Y7824D01* X32875Y7816D01* X32879Y7808D01* X32885Y7801D01* X32892Y7796D01* X32899Y7791D01* X32904Y7789D01* Y7209D01* X32897Y7205D01* X32890Y7199D01* X32885Y7192D01* X32881Y7184D01* X32878Y7176D01* X32877Y7167D01* X32877Y7159D01* X32879Y7150D01* X32882Y7142D01* X32887Y7135D01* X32893Y7128D01* X32900Y7123D01* X32904Y7121D01* Y5870D01* X32900Y5865D01* X32896Y5858D01* X32893Y5850D01* X32891Y5841D01* X32891Y5833D01* X32892Y5824D01* X32895Y5816D01* X32899Y5808D01* X32904Y5802D01* Y5190D01* X32901Y5184D01* X32898Y5176D01* X32897Y5167D01* X32897Y5159D01* X32899Y5150D01* X32902Y5142D01* X32904Y5140D01* Y0D01* G37* G36* Y23319D02*X32888Y23299D01* X32869Y23280D01* X32848Y23262D01* X32826Y23247D01* X32802Y23233D01* X32778Y23222D01* X32752Y23213D01* X32744Y23209D01* X32737Y23205D01* X32730Y23199D01* X32725Y23192D01* X32724Y23190D01* Y23802D01* X32725Y23801D01* X32732Y23796D01* X32739Y23791D01* X32747Y23788D01* X32773Y23779D01* X32798Y23768D01* X32821Y23755D01* X32844Y23740D01* X32865Y23723D01* X32884Y23704D01* X32902Y23683D01* X32904Y23680D01* Y23319D01* G37* G36* Y23820D02*X32904Y23820D01* X32874Y23840D01* X32842Y23858D01* X32809Y23873D01* X32775Y23884D01* X32766Y23886D01* X32757Y23886D01* X32749Y23885D01* X32741Y23882D01* X32733Y23878D01* X32726Y23872D01* X32724Y23870D01* Y25121D01* X32727Y25119D01* X32736Y25116D01* X32744Y25115D01* X32753Y25115D01* X32761Y25117D01* X32796Y25129D01* X32828Y25144D01* X32860Y25162D01* X32889Y25183D01* X32904Y25196D01* Y23820D01* G37* G36* Y25350D02*X32900Y25343D01* X32885Y25320D01* X32868Y25299D01* X32849Y25280D01* X32828Y25262D01* X32806Y25247D01* X32782Y25233D01* X32758Y25222D01* X32732Y25213D01* X32724Y25209D01* X32724Y25209D01* Y25789D01* X32727Y25788D01* X32753Y25779D01* X32778Y25768D01* X32801Y25755D01* X32824Y25740D01* X32845Y25723D01* X32864Y25704D01* X32882Y25683D01* X32897Y25661D01* X32904Y25650D01* Y25350D01* G37* G36* Y25804D02*X32884Y25820D01* X32854Y25840D01* X32822Y25858D01* X32789Y25873D01* X32755Y25884D01* X32746Y25886D01* X32737Y25886D01* X32729Y25885D01* X32724Y25883D01* Y27115D01* X32724D01* X32733Y27115D01* X32741Y27117D01* X32776Y27129D01* X32808Y27144D01* X32840Y27162D01* X32869Y27183D01* X32897Y27207D01* X32904Y27214D01* Y25804D01* G37* G36* Y27391D02*X32893Y27366D01* X32880Y27343D01* X32865Y27320D01* X32848Y27299D01* X32829Y27280D01* X32808Y27262D01* X32786Y27247D01* X32762Y27233D01* X32738Y27222D01* X32724Y27217D01* Y27782D01* X32733Y27779D01* X32758Y27768D01* X32781Y27755D01* X32804Y27740D01* X32825Y27723D01* X32844Y27704D01* X32862Y27683D01* X32877Y27661D01* X32891Y27637D01* X32902Y27613D01* X32904Y27608D01* Y27391D01* G37* G36* Y27785D02*X32892Y27797D01* X32864Y27820D01* X32834Y27840D01* X32802Y27858D01* X32769Y27873D01* X32735Y27884D01* X32726Y27886D01* X32724D01* Y29118D01* X32756Y29129D01* X32788Y29144D01* X32820Y29162D01* X32849Y29183D01* X32877Y29207D01* X32902Y29232D01* X32904Y29235D01* Y27785D01* G37* G36* Y29437D02*X32900Y29433D01* X32896Y29425D01* X32893Y29417D01* X32884Y29391D01* X32873Y29366D01* X32860Y29343D01* X32845Y29320D01* X32828Y29299D01* X32809Y29280D01* X32788Y29262D01* X32766Y29247D01* X32742Y29233D01* X32724Y29225D01* Y29774D01* X32738Y29768D01* X32761Y29755D01* X32784Y29740D01* X32805Y29723D01* X32824Y29704D01* X32842Y29683D01* X32857Y29661D01* X32871Y29637D01* X32882Y29613D01* X32891Y29587D01* X32895Y29579D01* X32899Y29572D01* X32904Y29567D01* Y29437D01* G37* G36* Y29764D02*X32897Y29772D01* X32872Y29797D01* X32844Y29820D01* X32814Y29840D01* X32782Y29858D01* X32749Y29873D01* X32724Y29881D01* Y31125D01* X32736Y31129D01* X32768Y31144D01* X32800Y31162D01* X32829Y31183D01* X32857Y31207D01* X32882Y31232D01* X32904Y31259D01* Y29764D01* G37* G36* Y31450D02*X32901Y31449D01* X32893Y31445D01* X32886Y31439D01* X32880Y31433D01* X32876Y31425D01* X32873Y31417D01* X32864Y31391D01* X32853Y31366D01* X32840Y31343D01* X32825Y31320D01* X32808Y31299D01* X32789Y31280D01* X32768Y31262D01* X32746Y31247D01* X32724Y31234D01* Y31765D01* X32741Y31755D01* X32764Y31740D01* X32785Y31723D01* X32804Y31704D01* X32822Y31683D01* X32837Y31661D01* X32851Y31637D01* X32862Y31613D01* X32871Y31587D01* X32875Y31579D01* X32879Y31572D01* X32885Y31565D01* X32892Y31560D01* X32900Y31556D01* X32904Y31555D01* Y31450D01* G37* G36* Y31740D02*X32901Y31744D01* X32877Y31772D01* X32852Y31797D01* X32824Y31820D01* X32794Y31840D01* X32762Y31858D01* X32729Y31873D01* X32724Y31874D01* Y33133D01* X32748Y33144D01* X32780Y33162D01* X32809Y33183D01* X32837Y33207D01* X32862Y33232D01* X32885Y33260D01* X32904Y33288D01* Y31740D01* G37* G36* Y33453D02*X32897Y33453D01* X32889Y33452D01* X32881Y33449D01* X32873Y33445D01* X32866Y33439D01* X32860Y33433D01* X32856Y33425D01* X32853Y33417D01* X32844Y33391D01* X32833Y33366D01* X32820Y33343D01* X32805Y33320D01* X32788Y33299D01* X32769Y33280D01* X32748Y33262D01* X32726Y33247D01* X32724Y33246D01* Y33754D01* X32744Y33740D01* X32765Y33723D01* X32784Y33704D01* X32802Y33683D01* X32817Y33661D01* X32831Y33637D01* X32842Y33613D01* X32851Y33587D01* X32855Y33579D01* X32859Y33572D01* X32865Y33565D01* X32872Y33560D01* X32880Y33556D01* X32888Y33553D01* X32897Y33552D01* X32904Y33552D01* Y33453D01* G37* G36* Y33711D02*X32902Y33715D01* X32881Y33744D01* X32857Y33772D01* X32832Y33797D01* X32804Y33820D01* X32774Y33840D01* X32742Y33858D01* X32724Y33866D01* Y35142D01* X32728Y35144D01* X32760Y35162D01* X32789Y35183D01* X32817Y35207D01* X32842Y35232D01* X32865Y35260D01* X32885Y35290D01* X32903Y35322D01* X32904Y35324D01* Y33711D01* G37* G36* Y35447D02*X32903Y35448D01* X32895Y35451D01* X32886Y35453D01* X32877Y35453D01* X32869Y35452D01* X32861Y35449D01* X32853Y35445D01* X32846Y35439D01* X32840Y35433D01* X32836Y35425D01* X32833Y35417D01* X32824Y35391D01* X32813Y35366D01* X32800Y35343D01* X32785Y35320D01* X32768Y35299D01* X32749Y35280D01* X32728Y35262D01* X32724Y35259D01* Y35740D01* X32745Y35723D01* X32764Y35704D01* X32782Y35683D01* X32797Y35661D01* X32811Y35637D01* X32822Y35613D01* X32831Y35587D01* X32835Y35579D01* X32839Y35572D01* X32845Y35565D01* X32852Y35560D01* X32860Y35556D01* X32868Y35553D01* X32877Y35552D01* X32885Y35552D01* X32894Y35554D01* X32902Y35557D01* X32904Y35559D01* Y35447D01* G37* G36* Y35674D02*X32900Y35683D01* X32882Y35715D01* X32861Y35744D01* X32837Y35772D01* X32812Y35797D01* X32784Y35820D01* X32754Y35840D01* X32724Y35857D01* Y37153D01* X32740Y37162D01* X32769Y37183D01* X32797Y37207D01* X32822Y37232D01* X32845Y37260D01* X32865Y37290D01* X32883Y37322D01* X32897Y37355D01* X32904Y37374D01* Y35674D01* G37* G36* Y37428D02*X32902Y37431D01* X32897Y37438D01* X32890Y37444D01* X32883Y37448D01* X32875Y37451D01* X32866Y37453D01* X32857Y37453D01* X32849Y37452D01* X32841Y37449D01* X32833Y37445D01* X32826Y37439D01* X32820Y37433D01* X32816Y37425D01* X32813Y37417D01* X32804Y37391D01* X32793Y37366D01* X32780Y37343D01* X32765Y37320D01* X32748Y37299D01* X32729Y37280D01* X32724Y37276D01* Y37724D01* X32725Y37723D01* X32744Y37704D01* X32762Y37683D01* X32777Y37661D01* X32791Y37637D01* X32802Y37613D01* X32811Y37587D01* X32815Y37579D01* X32819Y37572D01* X32825Y37565D01* X32832Y37560D01* X32840Y37556D01* X32848Y37553D01* X32857Y37552D01* X32865Y37552D01* X32874Y37554D01* X32882Y37557D01* X32889Y37562D01* X32896Y37568D01* X32901Y37575D01* X32904Y37580D01* Y37428D01* G37* G36* Y40000D02*X33084D01* Y19625D01* X33075Y19651D01* X33060Y19683D01* X33042Y19715D01* X33021Y19744D01* X32997Y19772D01* X32972Y19797D01* X32944Y19820D01* X32914Y19840D01* X32904Y19846D01* Y21165D01* X32929Y21183D01* X32957Y21207D01* X32982Y21232D01* X33005Y21260D01* X33025Y21290D01* X33043Y21322D01* X33057Y21355D01* X33069Y21389D01* X33071Y21398D01* X33071Y21407D01* X33070Y21415D01* X33067Y21423D01* X33062Y21431D01* X33057Y21438D01* X33050Y21444D01* X33043Y21448D01* X33035Y21451D01* X33026Y21453D01* X33017Y21453D01* X33009Y21452D01* X33001Y21449D01* X32993Y21445D01* X32986Y21439D01* X32980Y21433D01* X32976Y21425D01* X32973Y21417D01* X32964Y21391D01* X32953Y21366D01* X32940Y21343D01* X32925Y21320D01* X32908Y21299D01* X32904Y21295D01* Y21704D01* X32904Y21704D01* X32922Y21683D01* X32937Y21661D01* X32951Y21637D01* X32962Y21613D01* X32971Y21587D01* X32975Y21579D01* X32979Y21572D01* X32985Y21565D01* X32992Y21560D01* X33000Y21556D01* X33008Y21553D01* X33017Y21552D01* X33025Y21552D01* X33034Y21554D01* X33042Y21557D01* X33049Y21562D01* X33056Y21568D01* X33061Y21575D01* X33065Y21582D01* X33068Y21591D01* X33069Y21599D01* X33069Y21608D01* X33067Y21617D01* X33055Y21651D01* X33040Y21683D01* X33022Y21715D01* X33001Y21744D01* X32977Y21772D01* X32952Y21797D01* X32924Y21820D01* X32904Y21834D01* Y23180D01* X32909Y23183D01* X32937Y23207D01* X32962Y23232D01* X32985Y23260D01* X33005Y23290D01* X33023Y23322D01* X33037Y23355D01* X33049Y23389D01* X33051Y23398D01* X33051Y23407D01* X33050Y23415D01* X33047Y23423D01* X33042Y23431D01* X33037Y23438D01* X33030Y23444D01* X33023Y23448D01* X33015Y23451D01* X33006Y23453D01* X32997Y23453D01* X32989Y23452D01* X32981Y23449D01* X32973Y23445D01* X32966Y23439D01* X32960Y23433D01* X32956Y23425D01* X32953Y23417D01* X32944Y23391D01* X32933Y23366D01* X32920Y23343D01* X32905Y23320D01* X32904Y23319D01* Y23680D01* X32917Y23661D01* X32931Y23637D01* X32942Y23613D01* X32951Y23587D01* X32955Y23579D01* X32959Y23572D01* X32965Y23565D01* X32972Y23560D01* X32980Y23556D01* X32988Y23553D01* X32997Y23552D01* X33005Y23552D01* X33014Y23554D01* X33022Y23557D01* X33029Y23562D01* X33036Y23568D01* X33041Y23575D01* X33045Y23582D01* X33048Y23591D01* X33049Y23599D01* X33049Y23608D01* X33047Y23617D01* X33035Y23651D01* X33020Y23683D01* X33002Y23715D01* X32981Y23744D01* X32957Y23772D01* X32932Y23797D01* X32904Y23820D01* Y25196D01* X32917Y25207D01* X32942Y25232D01* X32965Y25260D01* X32985Y25290D01* X33003Y25322D01* X33017Y25355D01* X33029Y25389D01* X33031Y25398D01* X33031Y25407D01* X33030Y25415D01* X33027Y25423D01* X33022Y25431D01* X33017Y25438D01* X33010Y25444D01* X33003Y25448D01* X32995Y25451D01* X32986Y25453D01* X32977Y25453D01* X32969Y25452D01* X32961Y25449D01* X32953Y25445D01* X32946Y25439D01* X32940Y25433D01* X32936Y25425D01* X32933Y25417D01* X32924Y25391D01* X32913Y25366D01* X32904Y25350D01* Y25650D01* X32911Y25637D01* X32922Y25613D01* X32931Y25587D01* X32935Y25579D01* X32939Y25572D01* X32945Y25565D01* X32952Y25560D01* X32960Y25556D01* X32968Y25553D01* X32977Y25552D01* X32985Y25552D01* X32994Y25554D01* X33002Y25557D01* X33009Y25562D01* X33016Y25568D01* X33021Y25575D01* X33025Y25582D01* X33028Y25591D01* X33029Y25599D01* X33029Y25608D01* X33027Y25617D01* X33015Y25651D01* X33000Y25683D01* X32982Y25715D01* X32961Y25744D01* X32937Y25772D01* X32912Y25797D01* X32904Y25804D01* Y27214D01* X32922Y27232D01* X32945Y27260D01* X32965Y27290D01* X32983Y27322D01* X32997Y27355D01* X33009Y27389D01* X33011Y27398D01* X33011Y27407D01* X33010Y27415D01* X33007Y27423D01* X33002Y27431D01* X32997Y27438D01* X32990Y27444D01* X32983Y27448D01* X32975Y27451D01* X32966Y27453D01* X32957Y27453D01* X32949Y27452D01* X32941Y27449D01* X32933Y27445D01* X32926Y27439D01* X32920Y27433D01* X32916Y27425D01* X32913Y27417D01* X32904Y27391D01* X32904Y27391D01* Y27608D01* X32911Y27587D01* X32915Y27579D01* X32919Y27572D01* X32925Y27565D01* X32932Y27560D01* X32940Y27556D01* X32948Y27553D01* X32957Y27552D01* X32965Y27552D01* X32974Y27554D01* X32982Y27557D01* X32989Y27562D01* X32996Y27568D01* X33001Y27575D01* X33005Y27582D01* X33008Y27591D01* X33009Y27599D01* X33009Y27608D01* X33007Y27617D01* X32995Y27651D01* X32980Y27683D01* X32962Y27715D01* X32941Y27744D01* X32917Y27772D01* X32904Y27785D01* Y29235D01* X32925Y29260D01* X32945Y29290D01* X32963Y29322D01* X32977Y29355D01* X32989Y29389D01* X32991Y29398D01* X32991Y29407D01* X32990Y29415D01* X32987Y29423D01* X32982Y29431D01* X32977Y29438D01* X32970Y29444D01* X32963Y29448D01* X32955Y29451D01* X32946Y29453D01* X32937Y29453D01* X32929Y29452D01* X32921Y29449D01* X32913Y29445D01* X32906Y29439D01* X32904Y29437D01* Y29567D01* X32905Y29565D01* X32912Y29560D01* X32920Y29556D01* X32928Y29553D01* X32937Y29552D01* X32945Y29552D01* X32954Y29554D01* X32962Y29557D01* X32969Y29562D01* X32976Y29568D01* X32981Y29575D01* X32985Y29582D01* X32988Y29591D01* X32989Y29599D01* X32989Y29608D01* X32987Y29617D01* X32975Y29651D01* X32960Y29683D01* X32942Y29715D01* X32921Y29744D01* X32904Y29764D01* Y31259D01* X32905Y31260D01* X32925Y31290D01* X32943Y31322D01* X32957Y31355D01* X32969Y31389D01* X32971Y31398D01* X32971Y31407D01* X32970Y31415D01* X32967Y31423D01* X32962Y31431D01* X32957Y31438D01* X32950Y31444D01* X32943Y31448D01* X32935Y31451D01* X32926Y31453D01* X32917Y31453D01* X32909Y31452D01* X32904Y31450D01* Y31555D01* X32908Y31553D01* X32917Y31552D01* X32925Y31552D01* X32934Y31554D01* X32942Y31557D01* X32949Y31562D01* X32956Y31568D01* X32961Y31575D01* X32965Y31582D01* X32968Y31591D01* X32969Y31599D01* X32969Y31608D01* X32967Y31617D01* X32955Y31651D01* X32940Y31683D01* X32922Y31715D01* X32904Y31740D01* Y33288D01* X32905Y33290D01* X32923Y33322D01* X32937Y33355D01* X32949Y33389D01* X32951Y33398D01* X32951Y33407D01* X32950Y33415D01* X32947Y33423D01* X32942Y33431D01* X32937Y33438D01* X32930Y33444D01* X32923Y33448D01* X32915Y33451D01* X32906Y33453D01* X32904D01* Y33552D01* X32905D01* X32914Y33554D01* X32922Y33557D01* X32929Y33562D01* X32936Y33568D01* X32941Y33575D01* X32945Y33582D01* X32948Y33591D01* X32949Y33599D01* X32949Y33608D01* X32947Y33617D01* X32935Y33651D01* X32920Y33683D01* X32904Y33711D01* Y35324D01* X32917Y35355D01* X32929Y35389D01* X32931Y35398D01* X32931Y35407D01* X32930Y35415D01* X32927Y35423D01* X32922Y35431D01* X32917Y35438D01* X32910Y35444D01* X32904Y35447D01* Y35559D01* X32909Y35562D01* X32916Y35568D01* X32921Y35575D01* X32925Y35582D01* X32928Y35591D01* X32929Y35599D01* X32929Y35608D01* X32927Y35617D01* X32915Y35651D01* X32904Y35674D01* Y37374D01* X32909Y37389D01* X32911Y37398D01* X32911Y37407D01* X32910Y37415D01* X32907Y37423D01* X32904Y37428D01* Y37580D01* X32905Y37582D01* X32908Y37591D01* X32909Y37599D01* X32909Y37608D01* X32907Y37617D01* X32904Y37625D01* Y40000D01* G37* G36* X33084Y0D02*X32904D01* Y5140D01* X32907Y5135D01* X32913Y5128D01* X32920Y5123D01* X32927Y5119D01* X32936Y5116D01* X32944Y5115D01* X32953Y5115D01* X32961Y5117D01* X32996Y5129D01* X33028Y5144D01* X33060Y5162D01* X33084Y5180D01* Y3834D01* X33074Y3840D01* X33042Y3858D01* X33009Y3873D01* X32975Y3884D01* X32966Y3886D01* X32957Y3886D01* X32949Y3885D01* X32941Y3882D01* X32933Y3878D01* X32926Y3872D01* X32920Y3865D01* X32916Y3858D01* X32913Y3850D01* X32911Y3841D01* X32911Y3833D01* X32912Y3824D01* X32915Y3816D01* X32919Y3808D01* X32925Y3801D01* X32932Y3796D01* X32939Y3791D01* X32947Y3788D01* X32973Y3779D01* X32998Y3768D01* X33021Y3755D01* X33044Y3740D01* X33065Y3723D01* X33084Y3704D01* Y3295D01* X33069Y3280D01* X33048Y3262D01* X33026Y3247D01* X33002Y3233D01* X32978Y3222D01* X32952Y3213D01* X32944Y3209D01* X32937Y3205D01* X32930Y3199D01* X32925Y3192D01* X32921Y3184D01* X32918Y3176D01* X32917Y3167D01* X32917Y3159D01* X32919Y3150D01* X32922Y3142D01* X32927Y3135D01* X32933Y3128D01* X32940Y3123D01* X32947Y3119D01* X32956Y3116D01* X32964Y3115D01* X32973Y3115D01* X32981Y3117D01* X33016Y3129D01* X33048Y3144D01* X33080Y3162D01* X33084Y3165D01* Y1846D01* X33062Y1858D01* X33029Y1873D01* X32995Y1884D01* X32986Y1886D01* X32977Y1886D01* X32969Y1885D01* X32961Y1882D01* X32953Y1878D01* X32946Y1872D01* X32940Y1865D01* X32936Y1858D01* X32933Y1850D01* X32931Y1841D01* X32931Y1833D01* X32932Y1824D01* X32935Y1816D01* X32939Y1808D01* X32945Y1801D01* X32952Y1796D01* X32959Y1791D01* X32967Y1788D01* X32993Y1779D01* X33018Y1768D01* X33041Y1755D01* X33064Y1740D01* X33084Y1724D01* Y1276D01* X33068Y1262D01* X33046Y1247D01* X33022Y1233D01* X32998Y1222D01* X32972Y1213D01* X32964Y1209D01* X32957Y1205D01* X32950Y1199D01* X32945Y1192D01* X32941Y1184D01* X32938Y1176D01* X32937Y1167D01* X32937Y1159D01* X32939Y1150D01* X32942Y1142D01* X32947Y1135D01* X32953Y1128D01* X32960Y1123D01* X32967Y1119D01* X32976Y1116D01* X32984Y1115D01* X32993Y1115D01* X33001Y1117D01* X33036Y1129D01* X33068Y1144D01* X33084Y1153D01* Y0D01* G37* G36* Y5319D02*X33068Y5299D01* X33049Y5280D01* X33028Y5262D01* X33006Y5247D01* X32982Y5233D01* X32958Y5222D01* X32932Y5213D01* X32924Y5209D01* X32917Y5205D01* X32910Y5199D01* X32905Y5192D01* X32904Y5190D01* Y5802D01* X32905Y5801D01* X32912Y5796D01* X32919Y5791D01* X32927Y5788D01* X32953Y5779D01* X32978Y5768D01* X33001Y5755D01* X33024Y5740D01* X33045Y5723D01* X33064Y5704D01* X33082Y5683D01* X33084Y5680D01* Y5319D01* G37* G36* Y5820D02*X33084Y5820D01* X33054Y5840D01* X33022Y5858D01* X32989Y5873D01* X32955Y5884D01* X32946Y5886D01* X32937Y5886D01* X32929Y5885D01* X32921Y5882D01* X32913Y5878D01* X32906Y5872D01* X32904Y5870D01* Y7121D01* X32907Y7119D01* X32916Y7116D01* X32924Y7115D01* X32933Y7115D01* X32941Y7117D01* X32976Y7129D01* X33008Y7144D01* X33040Y7162D01* X33069Y7183D01* X33084Y7196D01* Y5820D01* G37* G36* Y7350D02*X33080Y7343D01* X33065Y7320D01* X33048Y7299D01* X33029Y7280D01* X33008Y7262D01* X32986Y7247D01* X32962Y7233D01* X32938Y7222D01* X32912Y7213D01* X32904Y7209D01* X32904Y7209D01* Y7789D01* X32907Y7788D01* X32933Y7779D01* X32958Y7768D01* X32981Y7755D01* X33004Y7740D01* X33025Y7723D01* X33044Y7704D01* X33062Y7683D01* X33077Y7661D01* X33084Y7650D01* Y7350D01* G37* G36* Y7804D02*X33064Y7820D01* X33034Y7840D01* X33002Y7858D01* X32969Y7873D01* X32935Y7884D01* X32926Y7886D01* X32917Y7886D01* X32909Y7885D01* X32904Y7883D01* Y9115D01* X32904D01* X32913Y9115D01* X32921Y9117D01* X32956Y9129D01* X32988Y9144D01* X33020Y9162D01* X33049Y9183D01* X33077Y9207D01* X33084Y9214D01* Y7804D01* G37* G36* Y9391D02*X33073Y9366D01* X33060Y9343D01* X33045Y9320D01* X33028Y9299D01* X33009Y9280D01* X32988Y9262D01* X32966Y9247D01* X32942Y9233D01* X32918Y9222D01* X32904Y9217D01* Y9782D01* X32913Y9779D01* X32938Y9768D01* X32961Y9755D01* X32984Y9740D01* X33005Y9723D01* X33024Y9704D01* X33042Y9683D01* X33057Y9661D01* X33071Y9637D01* X33082Y9613D01* X33084Y9608D01* Y9391D01* G37* G36* Y9785D02*X33072Y9797D01* X33044Y9820D01* X33014Y9840D01* X32982Y9858D01* X32949Y9873D01* X32915Y9884D01* X32906Y9886D01* X32904D01* Y11118D01* X32936Y11129D01* X32968Y11144D01* X33000Y11162D01* X33029Y11183D01* X33057Y11207D01* X33082Y11232D01* X33084Y11235D01* Y9785D01* G37* G36* Y11437D02*X33080Y11433D01* X33076Y11425D01* X33073Y11417D01* X33064Y11391D01* X33053Y11366D01* X33040Y11343D01* X33025Y11320D01* X33008Y11299D01* X32989Y11280D01* X32968Y11262D01* X32946Y11247D01* X32922Y11233D01* X32904Y11225D01* Y11774D01* X32918Y11768D01* X32941Y11755D01* X32964Y11740D01* X32985Y11723D01* X33004Y11704D01* X33022Y11683D01* X33037Y11661D01* X33051Y11637D01* X33062Y11613D01* X33071Y11587D01* X33075Y11579D01* X33079Y11572D01* X33084Y11567D01* Y11437D01* G37* G36* Y11764D02*X33077Y11772D01* X33052Y11797D01* X33024Y11820D01* X32994Y11840D01* X32962Y11858D01* X32929Y11873D01* X32904Y11881D01* Y13125D01* X32916Y13129D01* X32948Y13144D01* X32980Y13162D01* X33009Y13183D01* X33037Y13207D01* X33062Y13232D01* X33084Y13259D01* Y11764D01* G37* G36* Y13450D02*X33081Y13449D01* X33073Y13445D01* X33066Y13439D01* X33060Y13433D01* X33056Y13425D01* X33053Y13417D01* X33044Y13391D01* X33033Y13366D01* X33020Y13343D01* X33005Y13320D01* X32988Y13299D01* X32969Y13280D01* X32948Y13262D01* X32926Y13247D01* X32904Y13234D01* Y13765D01* X32921Y13755D01* X32944Y13740D01* X32965Y13723D01* X32984Y13704D01* X33002Y13683D01* X33017Y13661D01* X33031Y13637D01* X33042Y13613D01* X33051Y13587D01* X33055Y13579D01* X33059Y13572D01* X33065Y13565D01* X33072Y13560D01* X33080Y13556D01* X33084Y13555D01* Y13450D01* G37* G36* Y13740D02*X33081Y13744D01* X33057Y13772D01* X33032Y13797D01* X33004Y13820D01* X32974Y13840D01* X32942Y13858D01* X32909Y13873D01* X32904Y13874D01* Y15133D01* X32928Y15144D01* X32960Y15162D01* X32989Y15183D01* X33017Y15207D01* X33042Y15232D01* X33065Y15260D01* X33084Y15288D01* Y13740D01* G37* G36* Y15453D02*X33077Y15453D01* X33069Y15452D01* X33061Y15449D01* X33053Y15445D01* X33046Y15439D01* X33040Y15433D01* X33036Y15425D01* X33033Y15417D01* X33024Y15391D01* X33013Y15366D01* X33000Y15343D01* X32985Y15320D01* X32968Y15299D01* X32949Y15280D01* X32928Y15262D01* X32906Y15247D01* X32904Y15246D01* Y15754D01* X32924Y15740D01* X32945Y15723D01* X32964Y15704D01* X32982Y15683D01* X32997Y15661D01* X33011Y15637D01* X33022Y15613D01* X33031Y15587D01* X33035Y15579D01* X33039Y15572D01* X33045Y15565D01* X33052Y15560D01* X33060Y15556D01* X33068Y15553D01* X33077Y15552D01* X33084Y15552D01* Y15453D01* G37* G36* Y15711D02*X33082Y15715D01* X33061Y15744D01* X33037Y15772D01* X33012Y15797D01* X32984Y15820D01* X32954Y15840D01* X32922Y15858D01* X32904Y15866D01* Y17142D01* X32908Y17144D01* X32940Y17162D01* X32969Y17183D01* X32997Y17207D01* X33022Y17232D01* X33045Y17260D01* X33065Y17290D01* X33083Y17322D01* X33084Y17324D01* Y15711D01* G37* G36* Y17447D02*X33083Y17448D01* X33075Y17451D01* X33066Y17453D01* X33057Y17453D01* X33049Y17452D01* X33041Y17449D01* X33033Y17445D01* X33026Y17439D01* X33020Y17433D01* X33016Y17425D01* X33013Y17417D01* X33004Y17391D01* X32993Y17366D01* X32980Y17343D01* X32965Y17320D01* X32948Y17299D01* X32929Y17280D01* X32908Y17262D01* X32904Y17259D01* Y17740D01* X32925Y17723D01* X32944Y17704D01* X32962Y17683D01* X32977Y17661D01* X32991Y17637D01* X33002Y17613D01* X33011Y17587D01* X33015Y17579D01* X33019Y17572D01* X33025Y17565D01* X33032Y17560D01* X33040Y17556D01* X33048Y17553D01* X33057Y17552D01* X33065Y17552D01* X33074Y17554D01* X33082Y17557D01* X33084Y17559D01* Y17447D01* G37* G36* Y17674D02*X33080Y17683D01* X33062Y17715D01* X33041Y17744D01* X33017Y17772D01* X32992Y17797D01* X32964Y17820D01* X32934Y17840D01* X32904Y17857D01* Y19153D01* X32920Y19162D01* X32949Y19183D01* X32977Y19207D01* X33002Y19232D01* X33025Y19260D01* X33045Y19290D01* X33063Y19322D01* X33077Y19355D01* X33084Y19374D01* Y17674D01* G37* G36* Y19428D02*X33082Y19431D01* X33077Y19438D01* X33070Y19444D01* X33063Y19448D01* X33055Y19451D01* X33046Y19453D01* X33037Y19453D01* X33029Y19452D01* X33021Y19449D01* X33013Y19445D01* X33006Y19439D01* X33000Y19433D01* X32996Y19425D01* X32993Y19417D01* X32984Y19391D01* X32973Y19366D01* X32960Y19343D01* X32945Y19320D01* X32928Y19299D01* X32909Y19280D01* X32904Y19276D01* Y19724D01* X32905Y19723D01* X32924Y19704D01* X32942Y19683D01* X32957Y19661D01* X32971Y19637D01* X32982Y19613D01* X32991Y19587D01* X32995Y19579D01* X32999Y19572D01* X33005Y19565D01* X33012Y19560D01* X33020Y19556D01* X33028Y19553D01* X33037Y19552D01* X33045Y19552D01* X33054Y19554D01* X33062Y19557D01* X33069Y19562D01* X33076Y19568D01* X33081Y19575D01* X33084Y19580D01* Y19428D01* G37* G36* Y40000D02*X34305D01* Y39846D01* X34289Y39837D01* X34260Y39816D01* X34232Y39793D01* X34207Y39767D01* X34184Y39739D01* X34164Y39709D01* X34146Y39677D01* X34132Y39644D01* X34120Y39610D01* X34118Y39601D01* X34118Y39593D01* X34119Y39584D01* X34122Y39576D01* X34127Y39568D01* X34132Y39561D01* X34139Y39556D01* X34146Y39551D01* X34154Y39548D01* X34163Y39546D01* X34172Y39546D01* X34180Y39547D01* X34188Y39550D01* X34196Y39555D01* X34203Y39560D01* X34209Y39567D01* X34213Y39574D01* X34216Y39582D01* X34225Y39608D01* X34236Y39633D01* X34249Y39657D01* X34264Y39679D01* X34281Y39700D01* X34300Y39719D01* X34305Y39723D01* Y39276D01* X34304Y39276D01* X34285Y39295D01* X34267Y39316D01* X34252Y39338D01* X34238Y39362D01* X34227Y39386D01* X34218Y39412D01* X34214Y39420D01* X34210Y39427D01* X34204Y39434D01* X34197Y39439D01* X34189Y39443D01* X34181Y39446D01* X34172Y39447D01* X34164Y39447D01* X34155Y39445D01* X34147Y39442D01* X34140Y39437D01* X34133Y39431D01* X34128Y39424D01* X34124Y39417D01* X34121Y39409D01* X34120Y39400D01* X34120Y39391D01* X34122Y39383D01* X34134Y39349D01* X34149Y39316D01* X34167Y39284D01* X34188Y39255D01* X34212Y39227D01* X34237Y39202D01* X34265Y39179D01* X34295Y39159D01* X34305Y39153D01* Y37834D01* X34280Y37816D01* X34252Y37793D01* X34227Y37767D01* X34204Y37739D01* X34184Y37709D01* X34166Y37677D01* X34152Y37644D01* X34140Y37610D01* X34138Y37601D01* X34138Y37593D01* X34139Y37584D01* X34142Y37576D01* X34147Y37568D01* X34152Y37561D01* X34159Y37556D01* X34166Y37551D01* X34174Y37548D01* X34183Y37546D01* X34192Y37546D01* X34200Y37547D01* X34208Y37550D01* X34216Y37555D01* X34223Y37560D01* X34229Y37567D01* X34233Y37574D01* X34236Y37582D01* X34245Y37608D01* X34256Y37633D01* X34269Y37657D01* X34284Y37679D01* X34301Y37700D01* X34305Y37704D01* Y37295D01* X34305Y37295D01* X34287Y37316D01* X34272Y37338D01* X34258Y37362D01* X34247Y37386D01* X34238Y37412D01* X34234Y37420D01* X34230Y37427D01* X34224Y37434D01* X34217Y37439D01* X34209Y37443D01* X34201Y37446D01* X34192Y37447D01* X34184Y37447D01* X34175Y37445D01* X34167Y37442D01* X34160Y37437D01* X34153Y37431D01* X34148Y37424D01* X34144Y37417D01* X34141Y37409D01* X34140Y37400D01* X34140Y37391D01* X34142Y37383D01* X34154Y37349D01* X34169Y37316D01* X34187Y37284D01* X34208Y37255D01* X34232Y37227D01* X34257Y37202D01* X34285Y37179D01* X34305Y37166D01* Y35820D01* X34300Y35816D01* X34272Y35793D01* X34247Y35767D01* X34224Y35739D01* X34204Y35709D01* X34186Y35677D01* X34172Y35644D01* X34160Y35610D01* X34158Y35601D01* X34158Y35593D01* X34159Y35584D01* X34162Y35576D01* X34167Y35568D01* X34172Y35561D01* X34179Y35556D01* X34186Y35551D01* X34194Y35548D01* X34203Y35546D01* X34212Y35546D01* X34220Y35547D01* X34228Y35550D01* X34236Y35555D01* X34243Y35560D01* X34249Y35567D01* X34253Y35574D01* X34256Y35582D01* X34265Y35608D01* X34276Y35633D01* X34289Y35657D01* X34304Y35679D01* X34305Y35680D01* Y35319D01* X34292Y35338D01* X34278Y35362D01* X34267Y35386D01* X34258Y35412D01* X34254Y35420D01* X34250Y35427D01* X34244Y35434D01* X34237Y35439D01* X34229Y35443D01* X34221Y35446D01* X34212Y35447D01* X34204Y35447D01* X34195Y35445D01* X34187Y35442D01* X34180Y35437D01* X34173Y35431D01* X34168Y35424D01* X34164Y35417D01* X34161Y35409D01* X34160Y35400D01* X34160Y35391D01* X34162Y35383D01* X34174Y35349D01* X34189Y35316D01* X34207Y35284D01* X34228Y35255D01* X34252Y35227D01* X34277Y35202D01* X34305Y35179D01* Y33804D01* X34292Y33793D01* X34267Y33767D01* X34244Y33739D01* X34224Y33709D01* X34206Y33677D01* X34192Y33644D01* X34180Y33610D01* X34178Y33601D01* X34178Y33593D01* X34179Y33584D01* X34182Y33576D01* X34187Y33568D01* X34192Y33561D01* X34199Y33556D01* X34206Y33551D01* X34214Y33548D01* X34223Y33546D01* X34232Y33546D01* X34240Y33547D01* X34248Y33550D01* X34256Y33555D01* X34263Y33560D01* X34269Y33567D01* X34273Y33574D01* X34276Y33582D01* X34285Y33608D01* X34296Y33633D01* X34305Y33650D01* Y33349D01* X34298Y33362D01* X34287Y33386D01* X34278Y33412D01* X34274Y33420D01* X34270Y33427D01* X34264Y33434D01* X34257Y33439D01* X34249Y33443D01* X34241Y33446D01* X34232Y33447D01* X34224Y33447D01* X34215Y33445D01* X34207Y33442D01* X34200Y33437D01* X34193Y33431D01* X34188Y33424D01* X34184Y33417D01* X34181Y33409D01* X34180Y33400D01* X34180Y33391D01* X34182Y33383D01* X34194Y33349D01* X34209Y33316D01* X34227Y33284D01* X34248Y33255D01* X34272Y33227D01* X34297Y33202D01* X34305Y33196D01* Y31785D01* X34287Y31767D01* X34264Y31739D01* X34244Y31709D01* X34226Y31677D01* X34212Y31644D01* X34200Y31610D01* X34198Y31601D01* X34198Y31593D01* X34199Y31584D01* X34202Y31576D01* X34207Y31568D01* X34212Y31561D01* X34219Y31556D01* X34226Y31551D01* X34234Y31548D01* X34243Y31546D01* X34252Y31546D01* X34260Y31547D01* X34268Y31550D01* X34276Y31555D01* X34283Y31560D01* X34289Y31567D01* X34293Y31574D01* X34296Y31582D01* X34305Y31608D01* X34305Y31609D01* Y31391D01* X34298Y31412D01* X34294Y31420D01* X34290Y31427D01* X34284Y31434D01* X34277Y31439D01* X34269Y31443D01* X34261Y31446D01* X34252Y31447D01* X34244Y31447D01* X34235Y31445D01* X34227Y31442D01* X34220Y31437D01* X34213Y31431D01* X34208Y31424D01* X34204Y31417D01* X34201Y31409D01* X34200Y31400D01* X34200Y31391D01* X34202Y31383D01* X34214Y31349D01* X34229Y31316D01* X34247Y31284D01* X34268Y31255D01* X34292Y31227D01* X34305Y31214D01* Y29765D01* X34284Y29739D01* X34264Y29709D01* X34246Y29677D01* X34232Y29644D01* X34220Y29610D01* X34218Y29601D01* X34218Y29593D01* X34219Y29584D01* X34222Y29576D01* X34227Y29568D01* X34232Y29561D01* X34239Y29556D01* X34246Y29551D01* X34254Y29548D01* X34263Y29546D01* X34272Y29546D01* X34280Y29547D01* X34288Y29550D01* X34296Y29555D01* X34303Y29560D01* X34305Y29563D01* Y29432D01* X34304Y29434D01* X34297Y29439D01* X34289Y29443D01* X34281Y29446D01* X34272Y29447D01* X34264Y29447D01* X34255Y29445D01* X34247Y29442D01* X34240Y29437D01* X34233Y29431D01* X34228Y29424D01* X34224Y29417D01* X34221Y29409D01* X34220Y29400D01* X34220Y29391D01* X34222Y29383D01* X34234Y29349D01* X34249Y29316D01* X34267Y29284D01* X34288Y29255D01* X34305Y29235D01* Y27740D01* X34304Y27739D01* X34284Y27709D01* X34266Y27677D01* X34252Y27644D01* X34240Y27610D01* X34238Y27601D01* X34238Y27593D01* X34239Y27584D01* X34242Y27576D01* X34247Y27568D01* X34252Y27561D01* X34259Y27556D01* X34266Y27551D01* X34274Y27548D01* X34283Y27546D01* X34292Y27546D01* X34300Y27547D01* X34305Y27549D01* Y27445D01* X34301Y27446D01* X34292Y27447D01* X34284Y27447D01* X34275Y27445D01* X34267Y27442D01* X34260Y27437D01* X34253Y27431D01* X34248Y27424D01* X34244Y27417D01* X34241Y27409D01* X34240Y27400D01* X34240Y27391D01* X34242Y27383D01* X34254Y27349D01* X34269Y27316D01* X34287Y27284D01* X34305Y27259D01* Y25711D01* X34304Y25709D01* X34286Y25677D01* X34272Y25644D01* X34260Y25610D01* X34258Y25601D01* X34258Y25593D01* X34259Y25584D01* X34262Y25576D01* X34267Y25568D01* X34272Y25561D01* X34279Y25556D01* X34286Y25551D01* X34294Y25548D01* X34303Y25546D01* X34305D01* Y25447D01* X34304Y25447D01* X34295Y25445D01* X34287Y25442D01* X34280Y25437D01* X34273Y25431D01* X34268Y25424D01* X34264Y25417D01* X34261Y25409D01* X34260Y25400D01* X34260Y25391D01* X34262Y25383D01* X34274Y25349D01* X34289Y25316D01* X34305Y25288D01* Y23675D01* X34292Y23644D01* X34280Y23610D01* X34278Y23601D01* X34278Y23593D01* X34279Y23584D01* X34282Y23576D01* X34287Y23568D01* X34292Y23561D01* X34299Y23556D01* X34305Y23552D01* Y23441D01* X34300Y23437D01* X34293Y23431D01* X34288Y23424D01* X34284Y23417D01* X34281Y23409D01* X34280Y23400D01* X34280Y23391D01* X34282Y23383D01* X34294Y23349D01* X34305Y23325D01* Y21625D01* X34300Y21610D01* X34298Y21601D01* X34298Y21593D01* X34299Y21584D01* X34302Y21576D01* X34305Y21571D01* Y21419D01* X34304Y21417D01* X34301Y21409D01* X34300Y21400D01* X34300Y21391D01* X34302Y21383D01* X34305Y21374D01* Y0D01* X33084D01* Y1153D01* X33100Y1162D01* X33129Y1183D01* X33157Y1207D01* X33182Y1232D01* X33205Y1260D01* X33225Y1290D01* X33243Y1322D01* X33257Y1355D01* X33269Y1389D01* X33271Y1398D01* X33271Y1407D01* X33270Y1415D01* X33267Y1423D01* X33262Y1431D01* X33257Y1438D01* X33250Y1444D01* X33243Y1448D01* X33235Y1451D01* X33226Y1453D01* X33217Y1453D01* X33209Y1452D01* X33201Y1449D01* X33193Y1445D01* X33186Y1439D01* X33180Y1433D01* X33176Y1425D01* X33173Y1417D01* X33164Y1391D01* X33153Y1366D01* X33140Y1343D01* X33125Y1320D01* X33108Y1299D01* X33089Y1280D01* X33084Y1276D01* Y1724D01* X33085Y1723D01* X33104Y1704D01* X33122Y1683D01* X33137Y1661D01* X33151Y1637D01* X33162Y1613D01* X33171Y1587D01* X33175Y1579D01* X33179Y1572D01* X33185Y1565D01* X33192Y1560D01* X33200Y1556D01* X33208Y1553D01* X33217Y1552D01* X33225Y1552D01* X33234Y1554D01* X33242Y1557D01* X33249Y1562D01* X33256Y1568D01* X33261Y1575D01* X33265Y1582D01* X33268Y1591D01* X33269Y1599D01* X33269Y1608D01* X33267Y1617D01* X33255Y1651D01* X33240Y1683D01* X33222Y1715D01* X33201Y1744D01* X33177Y1772D01* X33152Y1797D01* X33124Y1820D01* X33094Y1840D01* X33084Y1846D01* Y3165D01* X33109Y3183D01* X33137Y3207D01* X33162Y3232D01* X33185Y3260D01* X33205Y3290D01* X33223Y3322D01* X33237Y3355D01* X33249Y3389D01* X33251Y3398D01* X33251Y3407D01* X33250Y3415D01* X33247Y3423D01* X33242Y3431D01* X33237Y3438D01* X33230Y3444D01* X33223Y3448D01* X33215Y3451D01* X33206Y3453D01* X33197Y3453D01* X33189Y3452D01* X33181Y3449D01* X33173Y3445D01* X33166Y3439D01* X33160Y3433D01* X33156Y3425D01* X33153Y3417D01* X33144Y3391D01* X33133Y3366D01* X33120Y3343D01* X33105Y3320D01* X33088Y3299D01* X33084Y3295D01* Y3704D01* X33084Y3704D01* X33102Y3683D01* X33117Y3661D01* X33131Y3637D01* X33142Y3613D01* X33151Y3587D01* X33155Y3579D01* X33159Y3572D01* X33165Y3565D01* X33172Y3560D01* X33180Y3556D01* X33188Y3553D01* X33197Y3552D01* X33205Y3552D01* X33214Y3554D01* X33222Y3557D01* X33229Y3562D01* X33236Y3568D01* X33241Y3575D01* X33245Y3582D01* X33248Y3591D01* X33249Y3599D01* X33249Y3608D01* X33247Y3617D01* X33235Y3651D01* X33220Y3683D01* X33202Y3715D01* X33181Y3744D01* X33157Y3772D01* X33132Y3797D01* X33104Y3820D01* X33084Y3834D01* Y5180D01* X33089Y5183D01* X33117Y5207D01* X33142Y5232D01* X33165Y5260D01* X33185Y5290D01* X33203Y5322D01* X33217Y5355D01* X33229Y5389D01* X33231Y5398D01* X33231Y5407D01* X33230Y5415D01* X33227Y5423D01* X33222Y5431D01* X33217Y5438D01* X33210Y5444D01* X33203Y5448D01* X33195Y5451D01* X33186Y5453D01* X33177Y5453D01* X33169Y5452D01* X33161Y5449D01* X33153Y5445D01* X33146Y5439D01* X33140Y5433D01* X33136Y5425D01* X33133Y5417D01* X33124Y5391D01* X33113Y5366D01* X33100Y5343D01* X33085Y5320D01* X33084Y5319D01* Y5680D01* X33097Y5661D01* X33111Y5637D01* X33122Y5613D01* X33131Y5587D01* X33135Y5579D01* X33139Y5572D01* X33145Y5565D01* X33152Y5560D01* X33160Y5556D01* X33168Y5553D01* X33177Y5552D01* X33185Y5552D01* X33194Y5554D01* X33202Y5557D01* X33209Y5562D01* X33216Y5568D01* X33221Y5575D01* X33225Y5582D01* X33228Y5591D01* X33229Y5599D01* X33229Y5608D01* X33227Y5617D01* X33215Y5651D01* X33200Y5683D01* X33182Y5715D01* X33161Y5744D01* X33137Y5772D01* X33112Y5797D01* X33084Y5820D01* Y7196D01* X33097Y7207D01* X33122Y7232D01* X33145Y7260D01* X33165Y7290D01* X33183Y7322D01* X33197Y7355D01* X33209Y7389D01* X33211Y7398D01* X33211Y7407D01* X33210Y7415D01* X33207Y7423D01* X33202Y7431D01* X33197Y7438D01* X33190Y7444D01* X33183Y7448D01* X33175Y7451D01* X33166Y7453D01* X33157Y7453D01* X33149Y7452D01* X33141Y7449D01* X33133Y7445D01* X33126Y7439D01* X33120Y7433D01* X33116Y7425D01* X33113Y7417D01* X33104Y7391D01* X33093Y7366D01* X33084Y7350D01* Y7650D01* X33091Y7637D01* X33102Y7613D01* X33111Y7587D01* X33115Y7579D01* X33119Y7572D01* X33125Y7565D01* X33132Y7560D01* X33140Y7556D01* X33148Y7553D01* X33157Y7552D01* X33165Y7552D01* X33174Y7554D01* X33182Y7557D01* X33189Y7562D01* X33196Y7568D01* X33201Y7575D01* X33205Y7582D01* X33208Y7591D01* X33209Y7599D01* X33209Y7608D01* X33207Y7617D01* X33195Y7651D01* X33180Y7683D01* X33162Y7715D01* X33141Y7744D01* X33117Y7772D01* X33092Y7797D01* X33084Y7804D01* Y9214D01* X33102Y9232D01* X33125Y9260D01* X33145Y9290D01* X33163Y9322D01* X33177Y9355D01* X33189Y9389D01* X33191Y9398D01* X33191Y9407D01* X33190Y9415D01* X33187Y9423D01* X33182Y9431D01* X33177Y9438D01* X33170Y9444D01* X33163Y9448D01* X33155Y9451D01* X33146Y9453D01* X33137Y9453D01* X33129Y9452D01* X33121Y9449D01* X33113Y9445D01* X33106Y9439D01* X33100Y9433D01* X33096Y9425D01* X33093Y9417D01* X33084Y9391D01* X33084Y9391D01* Y9608D01* X33091Y9587D01* X33095Y9579D01* X33099Y9572D01* X33105Y9565D01* X33112Y9560D01* X33120Y9556D01* X33128Y9553D01* X33137Y9552D01* X33145Y9552D01* X33154Y9554D01* X33162Y9557D01* X33169Y9562D01* X33176Y9568D01* X33181Y9575D01* X33185Y9582D01* X33188Y9591D01* X33189Y9599D01* X33189Y9608D01* X33187Y9617D01* X33175Y9651D01* X33160Y9683D01* X33142Y9715D01* X33121Y9744D01* X33097Y9772D01* X33084Y9785D01* Y11235D01* X33105Y11260D01* X33125Y11290D01* X33143Y11322D01* X33157Y11355D01* X33169Y11389D01* X33171Y11398D01* X33171Y11407D01* X33170Y11415D01* X33167Y11423D01* X33162Y11431D01* X33157Y11438D01* X33150Y11444D01* X33143Y11448D01* X33135Y11451D01* X33126Y11453D01* X33117Y11453D01* X33109Y11452D01* X33101Y11449D01* X33093Y11445D01* X33086Y11439D01* X33084Y11437D01* Y11567D01* X33085Y11565D01* X33092Y11560D01* X33100Y11556D01* X33108Y11553D01* X33117Y11552D01* X33125Y11552D01* X33134Y11554D01* X33142Y11557D01* X33149Y11562D01* X33156Y11568D01* X33161Y11575D01* X33165Y11582D01* X33168Y11591D01* X33169Y11599D01* X33169Y11608D01* X33167Y11617D01* X33155Y11651D01* X33140Y11683D01* X33122Y11715D01* X33101Y11744D01* X33084Y11764D01* Y13259D01* X33085Y13260D01* X33105Y13290D01* X33123Y13322D01* X33137Y13355D01* X33149Y13389D01* X33151Y13398D01* X33151Y13407D01* X33150Y13415D01* X33147Y13423D01* X33142Y13431D01* X33137Y13438D01* X33130Y13444D01* X33123Y13448D01* X33115Y13451D01* X33106Y13453D01* X33097Y13453D01* X33089Y13452D01* X33084Y13450D01* Y13555D01* X33088Y13553D01* X33097Y13552D01* X33105Y13552D01* X33114Y13554D01* X33122Y13557D01* X33129Y13562D01* X33136Y13568D01* X33141Y13575D01* X33145Y13582D01* X33148Y13591D01* X33149Y13599D01* X33149Y13608D01* X33147Y13617D01* X33135Y13651D01* X33120Y13683D01* X33102Y13715D01* X33084Y13740D01* Y15288D01* X33085Y15290D01* X33103Y15322D01* X33117Y15355D01* X33129Y15389D01* X33131Y15398D01* X33131Y15407D01* X33130Y15415D01* X33127Y15423D01* X33122Y15431D01* X33117Y15438D01* X33110Y15444D01* X33103Y15448D01* X33095Y15451D01* X33086Y15453D01* X33084D01* Y15552D01* X33085D01* X33094Y15554D01* X33102Y15557D01* X33109Y15562D01* X33116Y15568D01* X33121Y15575D01* X33125Y15582D01* X33128Y15591D01* X33129Y15599D01* X33129Y15608D01* X33127Y15617D01* X33115Y15651D01* X33100Y15683D01* X33084Y15711D01* Y17324D01* X33097Y17355D01* X33109Y17389D01* X33111Y17398D01* X33111Y17407D01* X33110Y17415D01* X33107Y17423D01* X33102Y17431D01* X33097Y17438D01* X33090Y17444D01* X33084Y17447D01* Y17559D01* X33089Y17562D01* X33096Y17568D01* X33101Y17575D01* X33105Y17582D01* X33108Y17591D01* X33109Y17599D01* X33109Y17608D01* X33107Y17617D01* X33095Y17651D01* X33084Y17674D01* Y19374D01* X33089Y19389D01* X33091Y19398D01* X33091Y19407D01* X33090Y19415D01* X33087Y19423D01* X33084Y19428D01* Y19580D01* X33085Y19582D01* X33088Y19591D01* X33089Y19599D01* X33089Y19608D01* X33087Y19617D01* X33084Y19625D01* Y40000D01* G37* G36* X34305D02*X34485D01* Y35859D01* X34482Y35864D01* X34476Y35871D01* X34469Y35876D01* X34462Y35880D01* X34453Y35883D01* X34445Y35884D01* X34436Y35884D01* X34428Y35882D01* X34393Y35870D01* X34361Y35855D01* X34329Y35837D01* X34305Y35820D01* Y37166D01* X34315Y37159D01* X34347Y37141D01* X34380Y37127D01* X34414Y37115D01* X34423Y37113D01* X34432Y37113D01* X34440Y37115D01* X34448Y37117D01* X34456Y37122D01* X34463Y37127D01* X34469Y37134D01* X34473Y37141D01* X34476Y37149D01* X34478Y37158D01* X34478Y37167D01* X34477Y37175D01* X34474Y37183D01* X34470Y37191D01* X34464Y37198D01* X34457Y37204D01* X34450Y37208D01* X34442Y37211D01* X34416Y37220D01* X34391Y37231D01* X34368Y37244D01* X34345Y37259D01* X34324Y37276D01* X34305Y37295D01* Y37704D01* X34320Y37719D01* X34341Y37737D01* X34363Y37752D01* X34387Y37766D01* X34411Y37777D01* X34437Y37786D01* X34445Y37790D01* X34452Y37794D01* X34459Y37800D01* X34464Y37807D01* X34468Y37815D01* X34471Y37823D01* X34472Y37832D01* X34472Y37840D01* X34470Y37849D01* X34467Y37857D01* X34462Y37864D01* X34456Y37871D01* X34449Y37876D01* X34442Y37880D01* X34433Y37883D01* X34425Y37884D01* X34416Y37884D01* X34408Y37882D01* X34373Y37870D01* X34341Y37855D01* X34309Y37837D01* X34305Y37834D01* Y39153D01* X34327Y39141D01* X34360Y39127D01* X34394Y39115D01* X34403Y39113D01* X34412Y39113D01* X34420Y39115D01* X34428Y39117D01* X34436Y39122D01* X34443Y39127D01* X34449Y39134D01* X34453Y39141D01* X34456Y39149D01* X34458Y39158D01* X34458Y39167D01* X34457Y39175D01* X34454Y39183D01* X34450Y39191D01* X34444Y39198D01* X34437Y39204D01* X34430Y39208D01* X34422Y39211D01* X34396Y39220D01* X34371Y39231D01* X34348Y39244D01* X34325Y39259D01* X34305Y39276D01* Y39723D01* X34321Y39737D01* X34343Y39752D01* X34367Y39766D01* X34391Y39777D01* X34417Y39786D01* X34425Y39790D01* X34432Y39794D01* X34439Y39800D01* X34444Y39807D01* X34448Y39815D01* X34451Y39823D01* X34452Y39832D01* X34452Y39840D01* X34450Y39849D01* X34447Y39857D01* X34442Y39864D01* X34436Y39871D01* X34429Y39876D01* X34422Y39880D01* X34413Y39883D01* X34405Y39884D01* X34396Y39884D01* X34388Y39882D01* X34353Y39870D01* X34321Y39855D01* X34305Y39846D01* Y40000D01* G37* G36* X34485Y9740D02*X34484Y9739D01* X34464Y9709D01* X34446Y9677D01* X34432Y9644D01* X34420Y9610D01* X34418Y9601D01* X34418Y9593D01* X34419Y9584D01* X34422Y9576D01* X34427Y9568D01* X34432Y9561D01* X34439Y9556D01* X34446Y9551D01* X34454Y9548D01* X34463Y9546D01* X34472Y9546D01* X34480Y9547D01* X34485Y9549D01* Y9445D01* X34481Y9446D01* X34472Y9447D01* X34464Y9447D01* X34455Y9445D01* X34447Y9442D01* X34440Y9437D01* X34433Y9431D01* X34428Y9424D01* X34424Y9417D01* X34421Y9409D01* X34420Y9400D01* X34420Y9391D01* X34422Y9383D01* X34434Y9349D01* X34449Y9316D01* X34467Y9284D01* X34485Y9259D01* Y7711D01* X34484Y7709D01* X34466Y7677D01* X34452Y7644D01* X34440Y7610D01* X34438Y7601D01* X34438Y7593D01* X34439Y7584D01* X34442Y7576D01* X34447Y7568D01* X34452Y7561D01* X34459Y7556D01* X34466Y7551D01* X34474Y7548D01* X34483Y7546D01* X34485D01* Y7447D01* X34484Y7447D01* X34475Y7445D01* X34467Y7442D01* X34460Y7437D01* X34453Y7431D01* X34448Y7424D01* X34444Y7417D01* X34441Y7409D01* X34440Y7400D01* X34440Y7391D01* X34442Y7383D01* X34454Y7349D01* X34469Y7316D01* X34485Y7288D01* Y5675D01* X34472Y5644D01* X34460Y5610D01* X34458Y5601D01* X34458Y5593D01* X34459Y5584D01* X34462Y5576D01* X34467Y5568D01* X34472Y5561D01* X34479Y5556D01* X34485Y5552D01* Y5441D01* X34480Y5437D01* X34473Y5431D01* X34468Y5424D01* X34464Y5417D01* X34461Y5409D01* X34460Y5400D01* X34460Y5391D01* X34462Y5383D01* X34474Y5349D01* X34485Y5325D01* Y3625D01* X34480Y3610D01* X34478Y3601D01* X34478Y3593D01* X34479Y3584D01* X34482Y3576D01* X34485Y3571D01* Y3419D01* X34484Y3417D01* X34481Y3409D01* X34480Y3400D01* X34480Y3391D01* X34482Y3383D01* X34485Y3374D01* Y0D01* X34305D01* Y21374D01* X34314Y21349D01* X34329Y21316D01* X34347Y21284D01* X34368Y21255D01* X34392Y21227D01* X34417Y21202D01* X34445Y21179D01* X34475Y21159D01* X34485Y21153D01* Y19834D01* X34460Y19816D01* X34432Y19793D01* X34407Y19767D01* X34384Y19739D01* X34364Y19709D01* X34346Y19677D01* X34332Y19644D01* X34320Y19610D01* X34318Y19601D01* X34318Y19593D01* X34319Y19584D01* X34322Y19576D01* X34327Y19568D01* X34332Y19561D01* X34339Y19556D01* X34346Y19551D01* X34354Y19548D01* X34363Y19546D01* X34372Y19546D01* X34380Y19547D01* X34388Y19550D01* X34396Y19555D01* X34403Y19560D01* X34409Y19567D01* X34413Y19574D01* X34416Y19582D01* X34425Y19608D01* X34436Y19633D01* X34449Y19657D01* X34464Y19679D01* X34481Y19700D01* X34485Y19704D01* Y19295D01* X34485Y19295D01* X34467Y19316D01* X34452Y19338D01* X34438Y19362D01* X34427Y19386D01* X34418Y19412D01* X34414Y19420D01* X34410Y19427D01* X34404Y19434D01* X34397Y19439D01* X34389Y19443D01* X34381Y19446D01* X34372Y19447D01* X34364Y19447D01* X34355Y19445D01* X34347Y19442D01* X34340Y19437D01* X34333Y19431D01* X34328Y19424D01* X34324Y19417D01* X34321Y19409D01* X34320Y19400D01* X34320Y19391D01* X34322Y19383D01* X34334Y19349D01* X34349Y19316D01* X34367Y19284D01* X34388Y19255D01* X34412Y19227D01* X34437Y19202D01* X34465Y19179D01* X34485Y19166D01* Y17820D01* X34480Y17816D01* X34452Y17793D01* X34427Y17767D01* X34404Y17739D01* X34384Y17709D01* X34366Y17677D01* X34352Y17644D01* X34340Y17610D01* X34338Y17601D01* X34338Y17593D01* X34339Y17584D01* X34342Y17576D01* X34347Y17568D01* X34352Y17561D01* X34359Y17556D01* X34366Y17551D01* X34374Y17548D01* X34383Y17546D01* X34392Y17546D01* X34400Y17547D01* X34408Y17550D01* X34416Y17555D01* X34423Y17560D01* X34429Y17567D01* X34433Y17574D01* X34436Y17582D01* X34445Y17608D01* X34456Y17633D01* X34469Y17657D01* X34484Y17679D01* X34485Y17680D01* Y17319D01* X34472Y17338D01* X34458Y17362D01* X34447Y17386D01* X34438Y17412D01* X34434Y17420D01* X34430Y17427D01* X34424Y17434D01* X34417Y17439D01* X34409Y17443D01* X34401Y17446D01* X34392Y17447D01* X34384Y17447D01* X34375Y17445D01* X34367Y17442D01* X34360Y17437D01* X34353Y17431D01* X34348Y17424D01* X34344Y17417D01* X34341Y17409D01* X34340Y17400D01* X34340Y17391D01* X34342Y17383D01* X34354Y17349D01* X34369Y17316D01* X34387Y17284D01* X34408Y17255D01* X34432Y17227D01* X34457Y17202D01* X34485Y17179D01* Y15804D01* X34472Y15793D01* X34447Y15767D01* X34424Y15739D01* X34404Y15709D01* X34386Y15677D01* X34372Y15644D01* X34360Y15610D01* X34358Y15601D01* X34358Y15593D01* X34359Y15584D01* X34362Y15576D01* X34367Y15568D01* X34372Y15561D01* X34379Y15556D01* X34386Y15551D01* X34394Y15548D01* X34403Y15546D01* X34412Y15546D01* X34420Y15547D01* X34428Y15550D01* X34436Y15555D01* X34443Y15560D01* X34449Y15567D01* X34453Y15574D01* X34456Y15582D01* X34465Y15608D01* X34476Y15633D01* X34485Y15650D01* Y15349D01* X34478Y15362D01* X34467Y15386D01* X34458Y15412D01* X34454Y15420D01* X34450Y15427D01* X34444Y15434D01* X34437Y15439D01* X34429Y15443D01* X34421Y15446D01* X34412Y15447D01* X34404Y15447D01* X34395Y15445D01* X34387Y15442D01* X34380Y15437D01* X34373Y15431D01* X34368Y15424D01* X34364Y15417D01* X34361Y15409D01* X34360Y15400D01* X34360Y15391D01* X34362Y15383D01* X34374Y15349D01* X34389Y15316D01* X34407Y15284D01* X34428Y15255D01* X34452Y15227D01* X34477Y15202D01* X34485Y15196D01* Y13785D01* X34467Y13767D01* X34444Y13739D01* X34424Y13709D01* X34406Y13677D01* X34392Y13644D01* X34380Y13610D01* X34378Y13601D01* X34378Y13593D01* X34379Y13584D01* X34382Y13576D01* X34387Y13568D01* X34392Y13561D01* X34399Y13556D01* X34406Y13551D01* X34414Y13548D01* X34423Y13546D01* X34432Y13546D01* X34440Y13547D01* X34448Y13550D01* X34456Y13555D01* X34463Y13560D01* X34469Y13567D01* X34473Y13574D01* X34476Y13582D01* X34485Y13608D01* X34485Y13609D01* Y13391D01* X34478Y13412D01* X34474Y13420D01* X34470Y13427D01* X34464Y13434D01* X34457Y13439D01* X34449Y13443D01* X34441Y13446D01* X34432Y13447D01* X34424Y13447D01* X34415Y13445D01* X34407Y13442D01* X34400Y13437D01* X34393Y13431D01* X34388Y13424D01* X34384Y13417D01* X34381Y13409D01* X34380Y13400D01* X34380Y13391D01* X34382Y13383D01* X34394Y13349D01* X34409Y13316D01* X34427Y13284D01* X34448Y13255D01* X34472Y13227D01* X34485Y13214D01* Y11765D01* X34464Y11739D01* X34444Y11709D01* X34426Y11677D01* X34412Y11644D01* X34400Y11610D01* X34398Y11601D01* X34398Y11593D01* X34399Y11584D01* X34402Y11576D01* X34407Y11568D01* X34412Y11561D01* X34419Y11556D01* X34426Y11551D01* X34434Y11548D01* X34443Y11546D01* X34452Y11546D01* X34460Y11547D01* X34468Y11550D01* X34476Y11555D01* X34483Y11560D01* X34485Y11563D01* Y11432D01* X34484Y11434D01* X34477Y11439D01* X34469Y11443D01* X34461Y11446D01* X34452Y11447D01* X34444Y11447D01* X34435Y11445D01* X34427Y11442D01* X34420Y11437D01* X34413Y11431D01* X34408Y11424D01* X34404Y11417D01* X34401Y11409D01* X34400Y11400D01* X34400Y11391D01* X34402Y11383D01* X34414Y11349D01* X34429Y11316D01* X34447Y11284D01* X34468Y11255D01* X34485Y11235D01* Y9740D01* G37* G36* Y21276D02*X34484Y21276D01* X34465Y21295D01* X34447Y21316D01* X34432Y21338D01* X34418Y21362D01* X34407Y21386D01* X34398Y21412D01* X34394Y21420D01* X34390Y21427D01* X34384Y21434D01* X34377Y21439D01* X34369Y21443D01* X34361Y21446D01* X34352Y21447D01* X34344Y21447D01* X34335Y21445D01* X34327Y21442D01* X34320Y21437D01* X34313Y21431D01* X34308Y21424D01* X34305Y21419D01* Y21571D01* X34307Y21568D01* X34312Y21561D01* X34319Y21556D01* X34326Y21551D01* X34334Y21548D01* X34343Y21546D01* X34352Y21546D01* X34360Y21547D01* X34368Y21550D01* X34376Y21555D01* X34383Y21560D01* X34389Y21567D01* X34393Y21574D01* X34396Y21582D01* X34405Y21608D01* X34416Y21633D01* X34429Y21657D01* X34444Y21679D01* X34461Y21700D01* X34480Y21719D01* X34485Y21723D01* Y21276D01* G37* G36* Y21846D02*X34469Y21837D01* X34440Y21816D01* X34412Y21793D01* X34387Y21767D01* X34364Y21739D01* X34344Y21709D01* X34326Y21677D01* X34312Y21644D01* X34305Y21625D01* Y23325D01* X34309Y23316D01* X34327Y23284D01* X34348Y23255D01* X34372Y23227D01* X34397Y23202D01* X34425Y23179D01* X34455Y23159D01* X34485Y23142D01* Y21846D01* G37* G36* Y23259D02*X34485Y23259D01* X34464Y23276D01* X34445Y23295D01* X34427Y23316D01* X34412Y23338D01* X34398Y23362D01* X34387Y23386D01* X34378Y23412D01* X34374Y23420D01* X34370Y23427D01* X34364Y23434D01* X34357Y23439D01* X34349Y23443D01* X34341Y23446D01* X34332Y23447D01* X34324Y23447D01* X34315Y23445D01* X34307Y23442D01* X34305Y23441D01* Y23552D01* X34306Y23551D01* X34314Y23548D01* X34323Y23546D01* X34332Y23546D01* X34340Y23547D01* X34348Y23550D01* X34356Y23555D01* X34363Y23560D01* X34369Y23567D01* X34373Y23574D01* X34376Y23582D01* X34385Y23608D01* X34396Y23633D01* X34409Y23657D01* X34424Y23679D01* X34441Y23700D01* X34460Y23719D01* X34481Y23737D01* X34485Y23740D01* Y23259D01* G37* G36* Y23857D02*X34481Y23855D01* X34449Y23837D01* X34420Y23816D01* X34392Y23793D01* X34367Y23767D01* X34344Y23739D01* X34324Y23709D01* X34306Y23677D01* X34305Y23675D01* Y25288D01* X34307Y25284D01* X34328Y25255D01* X34352Y25227D01* X34377Y25202D01* X34405Y25179D01* X34435Y25159D01* X34467Y25141D01* X34485Y25133D01* Y23857D01* G37* G36* Y25246D02*X34465Y25259D01* X34444Y25276D01* X34425Y25295D01* X34407Y25316D01* X34392Y25338D01* X34378Y25362D01* X34367Y25386D01* X34358Y25412D01* X34354Y25420D01* X34350Y25427D01* X34344Y25434D01* X34337Y25439D01* X34329Y25443D01* X34321Y25446D01* X34312Y25447D01* X34305Y25447D01* Y25546D01* X34312Y25546D01* X34320Y25547D01* X34328Y25550D01* X34336Y25555D01* X34343Y25560D01* X34349Y25567D01* X34353Y25574D01* X34356Y25582D01* X34365Y25608D01* X34376Y25633D01* X34389Y25657D01* X34404Y25679D01* X34421Y25700D01* X34440Y25719D01* X34461Y25737D01* X34483Y25752D01* X34485Y25754D01* Y25246D01* G37* G36* Y25866D02*X34461Y25855D01* X34429Y25837D01* X34400Y25816D01* X34372Y25793D01* X34347Y25767D01* X34324Y25739D01* X34305Y25711D01* Y27259D01* X34308Y27255D01* X34332Y27227D01* X34357Y27202D01* X34385Y27179D01* X34415Y27159D01* X34447Y27141D01* X34480Y27127D01* X34485Y27125D01* Y25866D01* G37* G36* Y27234D02*X34468Y27244D01* X34445Y27259D01* X34424Y27276D01* X34405Y27295D01* X34387Y27316D01* X34372Y27338D01* X34358Y27362D01* X34347Y27386D01* X34338Y27412D01* X34334Y27420D01* X34330Y27427D01* X34324Y27434D01* X34317Y27439D01* X34309Y27443D01* X34305Y27445D01* Y27549D01* X34308Y27550D01* X34316Y27555D01* X34323Y27560D01* X34329Y27567D01* X34333Y27574D01* X34336Y27582D01* X34345Y27608D01* X34356Y27633D01* X34369Y27657D01* X34384Y27679D01* X34401Y27700D01* X34420Y27719D01* X34441Y27737D01* X34463Y27752D01* X34485Y27765D01* Y27234D01* G37* G36* Y27874D02*X34473Y27870D01* X34441Y27855D01* X34409Y27837D01* X34380Y27816D01* X34352Y27793D01* X34327Y27767D01* X34305Y27740D01* Y29235D01* X34312Y29227D01* X34337Y29202D01* X34365Y29179D01* X34395Y29159D01* X34427Y29141D01* X34460Y29127D01* X34485Y29118D01* Y27874D01* G37* G36* Y29225D02*X34471Y29231D01* X34448Y29244D01* X34425Y29259D01* X34404Y29276D01* X34385Y29295D01* X34367Y29316D01* X34352Y29338D01* X34338Y29362D01* X34327Y29386D01* X34318Y29412D01* X34314Y29420D01* X34310Y29427D01* X34305Y29432D01* Y29563D01* X34309Y29567D01* X34313Y29574D01* X34316Y29582D01* X34325Y29608D01* X34336Y29633D01* X34349Y29657D01* X34364Y29679D01* X34381Y29700D01* X34400Y29719D01* X34421Y29737D01* X34443Y29752D01* X34467Y29766D01* X34485Y29775D01* Y29225D01* G37* G36* Y29881D02*X34453Y29870D01* X34421Y29855D01* X34389Y29837D01* X34360Y29816D01* X34332Y29793D01* X34307Y29767D01* X34305Y29765D01* Y31214D01* X34317Y31202D01* X34345Y31179D01* X34375Y31159D01* X34407Y31141D01* X34440Y31127D01* X34474Y31115D01* X34483Y31113D01* X34485D01* Y29881D01* G37* G36* Y31217D02*X34476Y31220D01* X34451Y31231D01* X34428Y31244D01* X34405Y31259D01* X34384Y31276D01* X34365Y31295D01* X34347Y31316D01* X34332Y31338D01* X34318Y31362D01* X34307Y31386D01* X34305Y31391D01* Y31609D01* X34316Y31633D01* X34329Y31657D01* X34344Y31679D01* X34361Y31700D01* X34380Y31719D01* X34401Y31737D01* X34423Y31752D01* X34447Y31766D01* X34471Y31777D01* X34485Y31782D01* Y31217D01* G37* G36* Y31884D02*X34485Y31884D01* X34476Y31884D01* X34468Y31882D01* X34433Y31870D01* X34401Y31855D01* X34369Y31837D01* X34340Y31816D01* X34312Y31793D01* X34305Y31785D01* Y33196D01* X34325Y33179D01* X34355Y33159D01* X34387Y33141D01* X34420Y33127D01* X34454Y33115D01* X34463Y33113D01* X34472Y33113D01* X34480Y33115D01* X34485Y33116D01* Y31884D01* G37* G36* Y33210D02*X34482Y33211D01* X34456Y33220D01* X34431Y33231D01* X34408Y33244D01* X34385Y33259D01* X34364Y33276D01* X34345Y33295D01* X34327Y33316D01* X34312Y33338D01* X34305Y33349D01* Y33650D01* X34309Y33657D01* X34324Y33679D01* X34341Y33700D01* X34360Y33719D01* X34381Y33737D01* X34403Y33752D01* X34427Y33766D01* X34451Y33777D01* X34477Y33786D01* X34485Y33790D01* X34485Y33790D01* Y33210D01* G37* G36* Y33878D02*X34482Y33880D01* X34473Y33883D01* X34465Y33884D01* X34456Y33884D01* X34448Y33882D01* X34413Y33870D01* X34381Y33855D01* X34349Y33837D01* X34320Y33816D01* X34305Y33804D01* Y35179D01* X34305Y35179D01* X34335Y35159D01* X34367Y35141D01* X34400Y35127D01* X34434Y35115D01* X34443Y35113D01* X34452Y35113D01* X34460Y35115D01* X34468Y35117D01* X34476Y35122D01* X34483Y35127D01* X34485Y35130D01* Y33878D01* G37* G36* Y35197D02*X34484Y35198D01* X34477Y35204D01* X34470Y35208D01* X34462Y35211D01* X34436Y35220D01* X34411Y35231D01* X34388Y35244D01* X34365Y35259D01* X34344Y35276D01* X34325Y35295D01* X34307Y35316D01* X34305Y35319D01* Y35680D01* X34321Y35700D01* X34340Y35719D01* X34361Y35737D01* X34383Y35752D01* X34407Y35766D01* X34431Y35777D01* X34457Y35786D01* X34465Y35790D01* X34472Y35794D01* X34479Y35800D01* X34484Y35807D01* X34485Y35809D01* Y35197D01* G37* G36* Y40000D02*X34744D01* Y39820D01* X34744Y39820D01* X34714Y39840D01* X34682Y39858D01* X34649Y39873D01* X34615Y39884D01* X34606Y39886D01* X34597Y39886D01* X34589Y39885D01* X34581Y39882D01* X34573Y39878D01* X34566Y39872D01* X34560Y39865D01* X34556Y39858D01* X34553Y39850D01* X34551Y39841D01* X34551Y39833D01* X34552Y39824D01* X34555Y39816D01* X34559Y39808D01* X34565Y39801D01* X34572Y39796D01* X34579Y39791D01* X34587Y39788D01* X34613Y39779D01* X34638Y39768D01* X34661Y39755D01* X34684Y39740D01* X34705Y39723D01* X34724Y39704D01* X34742Y39683D01* X34744Y39680D01* Y39319D01* X34728Y39299D01* X34709Y39280D01* X34688Y39262D01* X34666Y39247D01* X34642Y39233D01* X34618Y39222D01* X34592Y39213D01* X34584Y39209D01* X34577Y39205D01* X34570Y39199D01* X34565Y39192D01* X34561Y39184D01* X34558Y39176D01* X34557Y39167D01* X34557Y39159D01* X34559Y39150D01* X34562Y39142D01* X34567Y39135D01* X34573Y39128D01* X34580Y39123D01* X34587Y39119D01* X34596Y39116D01* X34604Y39115D01* X34613Y39115D01* X34621Y39117D01* X34656Y39129D01* X34688Y39144D01* X34720Y39162D01* X34744Y39180D01* Y37834D01* X34734Y37840D01* X34702Y37858D01* X34669Y37873D01* X34635Y37884D01* X34626Y37886D01* X34617Y37886D01* X34609Y37885D01* X34601Y37882D01* X34593Y37878D01* X34586Y37872D01* X34580Y37865D01* X34576Y37858D01* X34573Y37850D01* X34571Y37841D01* X34571Y37833D01* X34572Y37824D01* X34575Y37816D01* X34579Y37808D01* X34585Y37801D01* X34592Y37796D01* X34599Y37791D01* X34607Y37788D01* X34633Y37779D01* X34658Y37768D01* X34681Y37755D01* X34704Y37740D01* X34725Y37723D01* X34744Y37704D01* Y37295D01* X34729Y37280D01* X34708Y37262D01* X34686Y37247D01* X34662Y37233D01* X34638Y37222D01* X34612Y37213D01* X34604Y37209D01* X34597Y37205D01* X34590Y37199D01* X34585Y37192D01* X34581Y37184D01* X34578Y37176D01* X34577Y37167D01* X34577Y37159D01* X34579Y37150D01* X34582Y37142D01* X34587Y37135D01* X34593Y37128D01* X34600Y37123D01* X34607Y37119D01* X34616Y37116D01* X34624Y37115D01* X34633Y37115D01* X34641Y37117D01* X34676Y37129D01* X34708Y37144D01* X34740Y37162D01* X34744Y37165D01* Y35846D01* X34722Y35858D01* X34689Y35873D01* X34655Y35884D01* X34646Y35886D01* X34637Y35886D01* X34629Y35885D01* X34621Y35882D01* X34613Y35878D01* X34606Y35872D01* X34600Y35865D01* X34596Y35858D01* X34593Y35850D01* X34591Y35841D01* X34591Y35833D01* X34592Y35824D01* X34595Y35816D01* X34599Y35808D01* X34605Y35801D01* X34612Y35796D01* X34619Y35791D01* X34627Y35788D01* X34653Y35779D01* X34678Y35768D01* X34701Y35755D01* X34724Y35740D01* X34744Y35724D01* Y35276D01* X34728Y35262D01* X34706Y35247D01* X34682Y35233D01* X34658Y35222D01* X34632Y35213D01* X34624Y35209D01* X34617Y35205D01* X34610Y35199D01* X34605Y35192D01* X34601Y35184D01* X34598Y35176D01* X34597Y35167D01* X34597Y35159D01* X34599Y35150D01* X34602Y35142D01* X34607Y35135D01* X34613Y35128D01* X34620Y35123D01* X34627Y35119D01* X34636Y35116D01* X34644Y35115D01* X34653Y35115D01* X34661Y35117D01* X34696Y35129D01* X34728Y35144D01* X34744Y35153D01* Y33857D01* X34742Y33858D01* X34709Y33873D01* X34675Y33884D01* X34666Y33886D01* X34657Y33886D01* X34649Y33885D01* X34641Y33882D01* X34633Y33878D01* X34626Y33872D01* X34620Y33865D01* X34616Y33858D01* X34613Y33850D01* X34611Y33841D01* X34611Y33833D01* X34612Y33824D01* X34615Y33816D01* X34619Y33808D01* X34625Y33801D01* X34632Y33796D01* X34639Y33791D01* X34647Y33788D01* X34673Y33779D01* X34698Y33768D01* X34721Y33755D01* X34744Y33740D01* Y33259D01* X34726Y33247D01* X34702Y33233D01* X34678Y33222D01* X34652Y33213D01* X34644Y33209D01* X34637Y33205D01* X34630Y33199D01* X34625Y33192D01* X34621Y33184D01* X34618Y33176D01* X34617Y33167D01* X34617Y33159D01* X34619Y33150D01* X34622Y33142D01* X34627Y33135D01* X34633Y33128D01* X34640Y33123D01* X34647Y33119D01* X34656Y33116D01* X34664Y33115D01* X34673Y33115D01* X34681Y33117D01* X34716Y33129D01* X34744Y33142D01* Y31866D01* X34729Y31873D01* X34695Y31884D01* X34686Y31886D01* X34677Y31886D01* X34669Y31885D01* X34661Y31882D01* X34653Y31878D01* X34646Y31872D01* X34640Y31865D01* X34636Y31858D01* X34633Y31850D01* X34631Y31841D01* X34631Y31833D01* X34632Y31824D01* X34635Y31816D01* X34639Y31808D01* X34645Y31801D01* X34652Y31796D01* X34659Y31791D01* X34667Y31788D01* X34693Y31779D01* X34718Y31768D01* X34741Y31755D01* X34744Y31754D01* Y31246D01* X34722Y31233D01* X34698Y31222D01* X34672Y31213D01* X34664Y31209D01* X34657Y31205D01* X34650Y31199D01* X34645Y31192D01* X34641Y31184D01* X34638Y31176D01* X34637Y31167D01* X34637Y31159D01* X34639Y31150D01* X34642Y31142D01* X34647Y31135D01* X34653Y31128D01* X34660Y31123D01* X34667Y31119D01* X34676Y31116D01* X34684Y31115D01* X34693Y31115D01* X34701Y31117D01* X34736Y31129D01* X34744Y31133D01* Y29874D01* X34715Y29884D01* X34706Y29886D01* X34697Y29886D01* X34689Y29885D01* X34681Y29882D01* X34673Y29878D01* X34666Y29872D01* X34660Y29865D01* X34656Y29858D01* X34653Y29850D01* X34651Y29841D01* X34651Y29833D01* X34652Y29824D01* X34655Y29816D01* X34659Y29808D01* X34665Y29801D01* X34672Y29796D01* X34679Y29791D01* X34687Y29788D01* X34713Y29779D01* X34738Y29768D01* X34744Y29765D01* Y29234D01* X34742Y29233D01* X34718Y29222D01* X34692Y29213D01* X34684Y29209D01* X34677Y29205D01* X34670Y29199D01* X34665Y29192D01* X34661Y29184D01* X34658Y29176D01* X34657Y29167D01* X34657Y29159D01* X34659Y29150D01* X34662Y29142D01* X34667Y29135D01* X34673Y29128D01* X34680Y29123D01* X34687Y29119D01* X34696Y29116D01* X34704Y29115D01* X34713Y29115D01* X34721Y29117D01* X34744Y29125D01* Y27881D01* X34735Y27884D01* X34726Y27886D01* X34717Y27886D01* X34709Y27885D01* X34701Y27882D01* X34693Y27878D01* X34686Y27872D01* X34680Y27865D01* X34676Y27858D01* X34673Y27850D01* X34671Y27841D01* X34671Y27833D01* X34672Y27824D01* X34675Y27816D01* X34679Y27808D01* X34685Y27801D01* X34692Y27796D01* X34699Y27791D01* X34707Y27788D01* X34733Y27779D01* X34744Y27774D01* Y27225D01* X34738Y27222D01* X34712Y27213D01* X34704Y27209D01* X34697Y27205D01* X34690Y27199D01* X34685Y27192D01* X34681Y27184D01* X34678Y27176D01* X34677Y27167D01* X34677Y27159D01* X34679Y27150D01* X34682Y27142D01* X34687Y27135D01* X34693Y27128D01* X34700Y27123D01* X34707Y27119D01* X34716Y27116D01* X34724Y27115D01* X34733Y27115D01* X34741Y27117D01* X34744Y27118D01* Y25886D01* X34737Y25886D01* X34729Y25885D01* X34721Y25882D01* X34713Y25878D01* X34706Y25872D01* X34700Y25865D01* X34696Y25858D01* X34693Y25850D01* X34691Y25841D01* X34691Y25833D01* X34692Y25824D01* X34695Y25816D01* X34699Y25808D01* X34705Y25801D01* X34712Y25796D01* X34719Y25791D01* X34727Y25788D01* X34744Y25782D01* Y25217D01* X34732Y25213D01* X34724Y25209D01* X34717Y25205D01* X34710Y25199D01* X34705Y25192D01* X34701Y25184D01* X34698Y25176D01* X34697Y25167D01* X34697Y25159D01* X34699Y25150D01* X34702Y25142D01* X34707Y25135D01* X34713Y25128D01* X34720Y25123D01* X34727Y25119D01* X34736Y25116D01* X34744Y25115D01* Y23883D01* X34741Y23882D01* X34733Y23878D01* X34726Y23872D01* X34720Y23865D01* X34716Y23858D01* X34713Y23850D01* X34711Y23841D01* X34711Y23833D01* X34712Y23824D01* X34715Y23816D01* X34719Y23808D01* X34725Y23801D01* X34732Y23796D01* X34739Y23791D01* X34744Y23789D01* Y23209D01* X34737Y23205D01* X34730Y23199D01* X34725Y23192D01* X34721Y23184D01* X34718Y23176D01* X34717Y23167D01* X34717Y23159D01* X34719Y23150D01* X34722Y23142D01* X34727Y23135D01* X34733Y23128D01* X34740Y23123D01* X34744Y23121D01* Y21870D01* X34740Y21865D01* X34736Y21858D01* X34733Y21850D01* X34731Y21841D01* X34731Y21833D01* X34732Y21824D01* X34735Y21816D01* X34739Y21808D01* X34744Y21802D01* Y21190D01* X34741Y21184D01* X34738Y21176D01* X34737Y21167D01* X34737Y21159D01* X34739Y21150D01* X34742Y21142D01* X34744Y21140D01* Y9861D01* X34742Y9864D01* X34736Y9871D01* X34729Y9876D01* X34722Y9880D01* X34713Y9883D01* X34705Y9884D01* X34696Y9884D01* X34688Y9882D01* X34653Y9870D01* X34621Y9855D01* X34589Y9837D01* X34560Y9816D01* X34532Y9793D01* X34507Y9767D01* X34485Y9740D01* Y11235D01* X34492Y11227D01* X34517Y11202D01* X34545Y11179D01* X34575Y11159D01* X34607Y11141D01* X34640Y11127D01* X34674Y11115D01* X34683Y11113D01* X34692Y11113D01* X34700Y11115D01* X34708Y11117D01* X34716Y11122D01* X34723Y11127D01* X34729Y11134D01* X34733Y11141D01* X34736Y11149D01* X34738Y11158D01* X34738Y11167D01* X34737Y11175D01* X34734Y11183D01* X34730Y11191D01* X34724Y11198D01* X34717Y11204D01* X34710Y11208D01* X34702Y11211D01* X34676Y11220D01* X34651Y11231D01* X34628Y11244D01* X34605Y11259D01* X34584Y11276D01* X34565Y11295D01* X34547Y11316D01* X34532Y11338D01* X34518Y11362D01* X34507Y11386D01* X34498Y11412D01* X34494Y11420D01* X34490Y11427D01* X34485Y11432D01* Y11563D01* X34489Y11567D01* X34493Y11574D01* X34496Y11582D01* X34505Y11608D01* X34516Y11633D01* X34529Y11657D01* X34544Y11679D01* X34561Y11700D01* X34580Y11719D01* X34601Y11737D01* X34623Y11752D01* X34647Y11766D01* X34671Y11777D01* X34697Y11786D01* X34705Y11790D01* X34712Y11794D01* X34719Y11800D01* X34724Y11807D01* X34728Y11815D01* X34731Y11823D01* X34732Y11832D01* X34732Y11840D01* X34730Y11849D01* X34727Y11857D01* X34722Y11864D01* X34716Y11871D01* X34709Y11876D01* X34702Y11880D01* X34693Y11883D01* X34685Y11884D01* X34676Y11884D01* X34668Y11882D01* X34633Y11870D01* X34601Y11855D01* X34569Y11837D01* X34540Y11816D01* X34512Y11793D01* X34487Y11767D01* X34485Y11765D01* Y13214D01* X34497Y13202D01* X34525Y13179D01* X34555Y13159D01* X34587Y13141D01* X34620Y13127D01* X34654Y13115D01* X34663Y13113D01* X34672Y13113D01* X34680Y13115D01* X34688Y13117D01* X34696Y13122D01* X34703Y13127D01* X34709Y13134D01* X34713Y13141D01* X34716Y13149D01* X34718Y13158D01* X34718Y13167D01* X34717Y13175D01* X34714Y13183D01* X34710Y13191D01* X34704Y13198D01* X34697Y13204D01* X34690Y13208D01* X34682Y13211D01* X34656Y13220D01* X34631Y13231D01* X34608Y13244D01* X34585Y13259D01* X34564Y13276D01* X34545Y13295D01* X34527Y13316D01* X34512Y13338D01* X34498Y13362D01* X34487Y13386D01* X34485Y13391D01* Y13609D01* X34496Y13633D01* X34509Y13657D01* X34524Y13679D01* X34541Y13700D01* X34560Y13719D01* X34581Y13737D01* X34603Y13752D01* X34627Y13766D01* X34651Y13777D01* X34677Y13786D01* X34685Y13790D01* X34692Y13794D01* X34699Y13800D01* X34704Y13807D01* X34708Y13815D01* X34711Y13823D01* X34712Y13832D01* X34712Y13840D01* X34710Y13849D01* X34707Y13857D01* X34702Y13864D01* X34696Y13871D01* X34689Y13876D01* X34682Y13880D01* X34673Y13883D01* X34665Y13884D01* X34656Y13884D01* X34648Y13882D01* X34613Y13870D01* X34581Y13855D01* X34549Y13837D01* X34520Y13816D01* X34492Y13793D01* X34485Y13785D01* Y15196D01* X34505Y15179D01* X34535Y15159D01* X34567Y15141D01* X34600Y15127D01* X34634Y15115D01* X34643Y15113D01* X34652Y15113D01* X34660Y15115D01* X34668Y15117D01* X34676Y15122D01* X34683Y15127D01* X34689Y15134D01* X34693Y15141D01* X34696Y15149D01* X34698Y15158D01* X34698Y15167D01* X34697Y15175D01* X34694Y15183D01* X34690Y15191D01* X34684Y15198D01* X34677Y15204D01* X34670Y15208D01* X34662Y15211D01* X34636Y15220D01* X34611Y15231D01* X34588Y15244D01* X34565Y15259D01* X34544Y15276D01* X34525Y15295D01* X34507Y15316D01* X34492Y15338D01* X34485Y15349D01* Y15650D01* X34489Y15657D01* X34504Y15679D01* X34521Y15700D01* X34540Y15719D01* X34561Y15737D01* X34583Y15752D01* X34607Y15766D01* X34631Y15777D01* X34657Y15786D01* X34665Y15790D01* X34672Y15794D01* X34679Y15800D01* X34684Y15807D01* X34688Y15815D01* X34691Y15823D01* X34692Y15832D01* X34692Y15840D01* X34690Y15849D01* X34687Y15857D01* X34682Y15864D01* X34676Y15871D01* X34669Y15876D01* X34662Y15880D01* X34653Y15883D01* X34645Y15884D01* X34636Y15884D01* X34628Y15882D01* X34593Y15870D01* X34561Y15855D01* X34529Y15837D01* X34500Y15816D01* X34485Y15804D01* Y17179D01* X34485Y17179D01* X34515Y17159D01* X34547Y17141D01* X34580Y17127D01* X34614Y17115D01* X34623Y17113D01* X34632Y17113D01* X34640Y17115D01* X34648Y17117D01* X34656Y17122D01* X34663Y17127D01* X34669Y17134D01* X34673Y17141D01* X34676Y17149D01* X34678Y17158D01* X34678Y17167D01* X34677Y17175D01* X34674Y17183D01* X34670Y17191D01* X34664Y17198D01* X34657Y17204D01* X34650Y17208D01* X34642Y17211D01* X34616Y17220D01* X34591Y17231D01* X34568Y17244D01* X34545Y17259D01* X34524Y17276D01* X34505Y17295D01* X34487Y17316D01* X34485Y17319D01* Y17680D01* X34501Y17700D01* X34520Y17719D01* X34541Y17737D01* X34563Y17752D01* X34587Y17766D01* X34611Y17777D01* X34637Y17786D01* X34645Y17790D01* X34652Y17794D01* X34659Y17800D01* X34664Y17807D01* X34668Y17815D01* X34671Y17823D01* X34672Y17832D01* X34672Y17840D01* X34670Y17849D01* X34667Y17857D01* X34662Y17864D01* X34656Y17871D01* X34649Y17876D01* X34642Y17880D01* X34633Y17883D01* X34625Y17884D01* X34616Y17884D01* X34608Y17882D01* X34573Y17870D01* X34541Y17855D01* X34509Y17837D01* X34485Y17820D01* Y19166D01* X34495Y19159D01* X34527Y19141D01* X34560Y19127D01* X34594Y19115D01* X34603Y19113D01* X34612Y19113D01* X34620Y19115D01* X34628Y19117D01* X34636Y19122D01* X34643Y19127D01* X34649Y19134D01* X34653Y19141D01* X34656Y19149D01* X34658Y19158D01* X34658Y19167D01* X34657Y19175D01* X34654Y19183D01* X34650Y19191D01* X34644Y19198D01* X34637Y19204D01* X34630Y19208D01* X34622Y19211D01* X34596Y19220D01* X34571Y19231D01* X34548Y19244D01* X34525Y19259D01* X34504Y19276D01* X34485Y19295D01* Y19704D01* X34500Y19719D01* X34521Y19737D01* X34543Y19752D01* X34567Y19766D01* X34591Y19777D01* X34617Y19786D01* X34625Y19790D01* X34632Y19794D01* X34639Y19800D01* X34644Y19807D01* X34648Y19815D01* X34651Y19823D01* X34652Y19832D01* X34652Y19840D01* X34650Y19849D01* X34647Y19857D01* X34642Y19864D01* X34636Y19871D01* X34629Y19876D01* X34622Y19880D01* X34613Y19883D01* X34605Y19884D01* X34596Y19884D01* X34588Y19882D01* X34553Y19870D01* X34521Y19855D01* X34489Y19837D01* X34485Y19834D01* Y21153D01* X34507Y21141D01* X34540Y21127D01* X34574Y21115D01* X34583Y21113D01* X34592Y21113D01* X34600Y21115D01* X34608Y21117D01* X34616Y21122D01* X34623Y21127D01* X34629Y21134D01* X34633Y21141D01* X34636Y21149D01* X34638Y21158D01* X34638Y21167D01* X34637Y21175D01* X34634Y21183D01* X34630Y21191D01* X34624Y21198D01* X34617Y21204D01* X34610Y21208D01* X34602Y21211D01* X34576Y21220D01* X34551Y21231D01* X34528Y21244D01* X34505Y21259D01* X34485Y21276D01* Y21723D01* X34501Y21737D01* X34523Y21752D01* X34547Y21766D01* X34571Y21777D01* X34597Y21786D01* X34605Y21790D01* X34612Y21794D01* X34619Y21800D01* X34624Y21807D01* X34628Y21815D01* X34631Y21823D01* X34632Y21832D01* X34632Y21840D01* X34630Y21849D01* X34627Y21857D01* X34622Y21864D01* X34616Y21871D01* X34609Y21876D01* X34602Y21880D01* X34593Y21883D01* X34585Y21884D01* X34576Y21884D01* X34568Y21882D01* X34533Y21870D01* X34501Y21855D01* X34485Y21846D01* Y23142D01* X34487Y23141D01* X34520Y23127D01* X34554Y23115D01* X34563Y23113D01* X34572Y23113D01* X34580Y23115D01* X34588Y23117D01* X34596Y23122D01* X34603Y23127D01* X34609Y23134D01* X34613Y23141D01* X34616Y23149D01* X34618Y23158D01* X34618Y23167D01* X34617Y23175D01* X34614Y23183D01* X34610Y23191D01* X34604Y23198D01* X34597Y23204D01* X34590Y23208D01* X34582Y23211D01* X34556Y23220D01* X34531Y23231D01* X34508Y23244D01* X34485Y23259D01* Y23740D01* X34503Y23752D01* X34527Y23766D01* X34551Y23777D01* X34577Y23786D01* X34585Y23790D01* X34592Y23794D01* X34599Y23800D01* X34604Y23807D01* X34608Y23815D01* X34611Y23823D01* X34612Y23832D01* X34612Y23840D01* X34610Y23849D01* X34607Y23857D01* X34602Y23864D01* X34596Y23871D01* X34589Y23876D01* X34582Y23880D01* X34573Y23883D01* X34565Y23884D01* X34556Y23884D01* X34548Y23882D01* X34513Y23870D01* X34485Y23857D01* Y25133D01* X34500Y25127D01* X34534Y25115D01* X34543Y25113D01* X34552Y25113D01* X34560Y25115D01* X34568Y25117D01* X34576Y25122D01* X34583Y25127D01* X34589Y25134D01* X34593Y25141D01* X34596Y25149D01* X34598Y25158D01* X34598Y25167D01* X34597Y25175D01* X34594Y25183D01* X34590Y25191D01* X34584Y25198D01* X34577Y25204D01* X34570Y25208D01* X34562Y25211D01* X34536Y25220D01* X34511Y25231D01* X34488Y25244D01* X34485Y25246D01* Y25754D01* X34507Y25766D01* X34531Y25777D01* X34557Y25786D01* X34565Y25790D01* X34572Y25794D01* X34579Y25800D01* X34584Y25807D01* X34588Y25815D01* X34591Y25823D01* X34592Y25832D01* X34592Y25840D01* X34590Y25849D01* X34587Y25857D01* X34582Y25864D01* X34576Y25871D01* X34569Y25876D01* X34562Y25880D01* X34553Y25883D01* X34545Y25884D01* X34536Y25884D01* X34528Y25882D01* X34493Y25870D01* X34485Y25866D01* Y27125D01* X34514Y27115D01* X34523Y27113D01* X34532Y27113D01* X34540Y27115D01* X34548Y27117D01* X34556Y27122D01* X34563Y27127D01* X34569Y27134D01* X34573Y27141D01* X34576Y27149D01* X34578Y27158D01* X34578Y27167D01* X34577Y27175D01* X34574Y27183D01* X34570Y27191D01* X34564Y27198D01* X34557Y27204D01* X34550Y27208D01* X34542Y27211D01* X34516Y27220D01* X34491Y27231D01* X34485Y27234D01* Y27765D01* X34487Y27766D01* X34511Y27777D01* X34537Y27786D01* X34545Y27790D01* X34552Y27794D01* X34559Y27800D01* X34564Y27807D01* X34568Y27815D01* X34571Y27823D01* X34572Y27832D01* X34572Y27840D01* X34570Y27849D01* X34567Y27857D01* X34562Y27864D01* X34556Y27871D01* X34549Y27876D01* X34542Y27880D01* X34533Y27883D01* X34525Y27884D01* X34516Y27884D01* X34508Y27882D01* X34485Y27874D01* Y29118D01* X34494Y29115D01* X34503Y29113D01* X34512Y29113D01* X34520Y29115D01* X34528Y29117D01* X34536Y29122D01* X34543Y29127D01* X34549Y29134D01* X34553Y29141D01* X34556Y29149D01* X34558Y29158D01* X34558Y29167D01* X34557Y29175D01* X34554Y29183D01* X34550Y29191D01* X34544Y29198D01* X34537Y29204D01* X34530Y29208D01* X34522Y29211D01* X34496Y29220D01* X34485Y29225D01* Y29775D01* X34491Y29777D01* X34517Y29786D01* X34525Y29790D01* X34532Y29794D01* X34539Y29800D01* X34544Y29807D01* X34548Y29815D01* X34551Y29823D01* X34552Y29832D01* X34552Y29840D01* X34550Y29849D01* X34547Y29857D01* X34542Y29864D01* X34536Y29871D01* X34529Y29876D01* X34522Y29880D01* X34513Y29883D01* X34505Y29884D01* X34496Y29884D01* X34488Y29882D01* X34485Y29881D01* Y31113D01* X34492Y31113D01* X34500Y31115D01* X34508Y31117D01* X34516Y31122D01* X34523Y31127D01* X34529Y31134D01* X34533Y31141D01* X34536Y31149D01* X34538Y31158D01* X34538Y31167D01* X34537Y31175D01* X34534Y31183D01* X34530Y31191D01* X34524Y31198D01* X34517Y31204D01* X34510Y31208D01* X34502Y31211D01* X34485Y31217D01* Y31782D01* X34497Y31786D01* X34505Y31790D01* X34512Y31794D01* X34519Y31800D01* X34524Y31807D01* X34528Y31815D01* X34531Y31823D01* X34532Y31832D01* X34532Y31840D01* X34530Y31849D01* X34527Y31857D01* X34522Y31864D01* X34516Y31871D01* X34509Y31876D01* X34502Y31880D01* X34493Y31883D01* X34485Y31884D01* Y33116D01* X34488Y33117D01* X34496Y33122D01* X34503Y33127D01* X34509Y33134D01* X34513Y33141D01* X34516Y33149D01* X34518Y33158D01* X34518Y33167D01* X34517Y33175D01* X34514Y33183D01* X34510Y33191D01* X34504Y33198D01* X34497Y33204D01* X34490Y33208D01* X34485Y33210D01* Y33790D01* X34492Y33794D01* X34499Y33800D01* X34504Y33807D01* X34508Y33815D01* X34511Y33823D01* X34512Y33832D01* X34512Y33840D01* X34510Y33849D01* X34507Y33857D01* X34502Y33864D01* X34496Y33871D01* X34489Y33876D01* X34485Y33878D01* Y35130D01* X34489Y35134D01* X34493Y35141D01* X34496Y35149D01* X34498Y35158D01* X34498Y35167D01* X34497Y35175D01* X34494Y35183D01* X34490Y35191D01* X34485Y35197D01* Y35809D01* X34488Y35815D01* X34491Y35823D01* X34492Y35832D01* X34492Y35840D01* X34490Y35849D01* X34487Y35857D01* X34485Y35859D01* Y40000D01* G37* G36* Y9549D02*X34488Y9550D01* X34496Y9555D01* X34503Y9560D01* X34509Y9567D01* X34513Y9574D01* X34516Y9582D01* X34525Y9608D01* X34536Y9633D01* X34549Y9657D01* X34564Y9679D01* X34581Y9700D01* X34600Y9719D01* X34621Y9737D01* X34643Y9752D01* X34667Y9766D01* X34691Y9777D01* X34717Y9786D01* X34725Y9790D01* X34732Y9794D01* X34739Y9800D01* X34744Y9807D01* Y9198D01* X34737Y9204D01* X34730Y9208D01* X34722Y9211D01* X34696Y9220D01* X34671Y9231D01* X34648Y9244D01* X34625Y9259D01* X34604Y9276D01* X34585Y9295D01* X34567Y9316D01* X34552Y9338D01* X34538Y9362D01* X34527Y9386D01* X34518Y9412D01* X34514Y9420D01* X34510Y9427D01* X34504Y9434D01* X34497Y9439D01* X34489Y9443D01* X34485Y9445D01* Y9549D01* G37* G36* Y9259D02*X34488Y9255D01* X34512Y9227D01* X34537Y9202D01* X34565Y9179D01* X34595Y9159D01* X34627Y9141D01* X34660Y9127D01* X34694Y9115D01* X34703Y9113D01* X34712Y9113D01* X34720Y9115D01* X34728Y9117D01* X34736Y9122D01* X34743Y9127D01* X34744Y9128D01* Y7879D01* X34742Y7880D01* X34733Y7883D01* X34725Y7884D01* X34716Y7884D01* X34708Y7882D01* X34673Y7870D01* X34641Y7855D01* X34609Y7837D01* X34580Y7816D01* X34552Y7793D01* X34527Y7767D01* X34504Y7739D01* X34485Y7711D01* Y9259D01* G37* G36* Y7546D02*X34492Y7546D01* X34500Y7547D01* X34508Y7550D01* X34516Y7555D01* X34523Y7560D01* X34529Y7567D01* X34533Y7574D01* X34536Y7582D01* X34545Y7608D01* X34556Y7633D01* X34569Y7657D01* X34584Y7679D01* X34601Y7700D01* X34620Y7719D01* X34641Y7737D01* X34663Y7752D01* X34687Y7766D01* X34711Y7777D01* X34737Y7786D01* X34744Y7789D01* Y7210D01* X34742Y7211D01* X34716Y7220D01* X34691Y7231D01* X34668Y7244D01* X34645Y7259D01* X34624Y7276D01* X34605Y7295D01* X34587Y7316D01* X34572Y7338D01* X34558Y7362D01* X34547Y7386D01* X34538Y7412D01* X34534Y7420D01* X34530Y7427D01* X34524Y7434D01* X34517Y7439D01* X34509Y7443D01* X34501Y7446D01* X34492Y7447D01* X34485Y7447D01* Y7546D01* G37* G36* Y7288D02*X34487Y7284D01* X34508Y7255D01* X34532Y7227D01* X34557Y7202D01* X34585Y7179D01* X34615Y7159D01* X34647Y7141D01* X34680Y7127D01* X34714Y7115D01* X34723Y7113D01* X34732Y7113D01* X34740Y7115D01* X34744Y7116D01* Y5884D01* X34736Y5884D01* X34728Y5882D01* X34693Y5870D01* X34661Y5855D01* X34629Y5837D01* X34600Y5816D01* X34572Y5793D01* X34547Y5767D01* X34524Y5739D01* X34504Y5709D01* X34486Y5677D01* X34485Y5675D01* Y7288D01* G37* G36* Y5552D02*X34486Y5551D01* X34494Y5548D01* X34503Y5546D01* X34512Y5546D01* X34520Y5547D01* X34528Y5550D01* X34536Y5555D01* X34543Y5560D01* X34549Y5567D01* X34553Y5574D01* X34556Y5582D01* X34565Y5608D01* X34576Y5633D01* X34589Y5657D01* X34604Y5679D01* X34621Y5700D01* X34640Y5719D01* X34661Y5737D01* X34683Y5752D01* X34707Y5766D01* X34731Y5777D01* X34744Y5782D01* Y5217D01* X34736Y5220D01* X34711Y5231D01* X34688Y5244D01* X34665Y5259D01* X34644Y5276D01* X34625Y5295D01* X34607Y5316D01* X34592Y5338D01* X34578Y5362D01* X34567Y5386D01* X34558Y5412D01* X34554Y5420D01* X34550Y5427D01* X34544Y5434D01* X34537Y5439D01* X34529Y5443D01* X34521Y5446D01* X34512Y5447D01* X34504Y5447D01* X34495Y5445D01* X34487Y5442D01* X34485Y5441D01* Y5552D01* G37* G36* Y5325D02*X34489Y5316D01* X34507Y5284D01* X34528Y5255D01* X34552Y5227D01* X34577Y5202D01* X34605Y5179D01* X34635Y5159D01* X34667Y5141D01* X34700Y5127D01* X34734Y5115D01* X34743Y5113D01* X34744D01* Y3881D01* X34713Y3870D01* X34681Y3855D01* X34649Y3837D01* X34620Y3816D01* X34592Y3793D01* X34567Y3767D01* X34544Y3739D01* X34524Y3709D01* X34506Y3677D01* X34492Y3644D01* X34485Y3625D01* Y5325D01* G37* G36* Y3571D02*X34487Y3568D01* X34492Y3561D01* X34499Y3556D01* X34506Y3551D01* X34514Y3548D01* X34523Y3546D01* X34532Y3546D01* X34540Y3547D01* X34548Y3550D01* X34556Y3555D01* X34563Y3560D01* X34569Y3567D01* X34573Y3574D01* X34576Y3582D01* X34585Y3608D01* X34596Y3633D01* X34609Y3657D01* X34624Y3679D01* X34641Y3700D01* X34660Y3719D01* X34681Y3737D01* X34703Y3752D01* X34727Y3766D01* X34744Y3774D01* Y3225D01* X34731Y3231D01* X34708Y3244D01* X34685Y3259D01* X34664Y3276D01* X34645Y3295D01* X34627Y3316D01* X34612Y3338D01* X34598Y3362D01* X34587Y3386D01* X34578Y3412D01* X34574Y3420D01* X34570Y3427D01* X34564Y3434D01* X34557Y3439D01* X34549Y3443D01* X34541Y3446D01* X34532Y3447D01* X34524Y3447D01* X34515Y3445D01* X34507Y3442D01* X34500Y3437D01* X34493Y3431D01* X34488Y3424D01* X34485Y3419D01* Y3571D01* G37* G36* Y3374D02*X34494Y3349D01* X34509Y3316D01* X34527Y3284D01* X34548Y3255D01* X34572Y3227D01* X34597Y3202D01* X34625Y3179D01* X34655Y3159D01* X34687Y3141D01* X34720Y3127D01* X34744Y3119D01* Y1874D01* X34733Y1870D01* X34701Y1855D01* X34669Y1837D01* X34640Y1816D01* X34612Y1793D01* X34587Y1767D01* X34564Y1739D01* X34544Y1709D01* X34526Y1677D01* X34512Y1644D01* X34500Y1610D01* X34498Y1601D01* X34498Y1593D01* X34499Y1584D01* X34502Y1576D01* X34507Y1568D01* X34512Y1561D01* X34519Y1556D01* X34526Y1551D01* X34534Y1548D01* X34543Y1546D01* X34552Y1546D01* X34560Y1547D01* X34568Y1550D01* X34576Y1555D01* X34583Y1560D01* X34589Y1567D01* X34593Y1574D01* X34596Y1582D01* X34605Y1608D01* X34616Y1633D01* X34629Y1657D01* X34644Y1679D01* X34661Y1700D01* X34680Y1719D01* X34701Y1737D01* X34723Y1752D01* X34744Y1764D01* Y1235D01* X34728Y1244D01* X34705Y1259D01* X34684Y1276D01* X34665Y1295D01* X34647Y1316D01* X34632Y1338D01* X34618Y1362D01* X34607Y1386D01* X34598Y1412D01* X34594Y1420D01* X34590Y1427D01* X34584Y1434D01* X34577Y1439D01* X34569Y1443D01* X34561Y1446D01* X34552Y1447D01* X34544Y1447D01* X34535Y1445D01* X34527Y1442D01* X34520Y1437D01* X34513Y1431D01* X34508Y1424D01* X34504Y1417D01* X34501Y1409D01* X34500Y1400D01* X34500Y1391D01* X34502Y1383D01* X34514Y1349D01* X34529Y1316D01* X34547Y1284D01* X34568Y1255D01* X34592Y1227D01* X34617Y1202D01* X34645Y1179D01* X34675Y1159D01* X34707Y1141D01* X34740Y1127D01* X34744Y1125D01* Y0D01* X34485D01* Y3374D01* G37* G36* X34744Y40000D02*X34924D01* Y35625D01* X34915Y35651D01* X34900Y35683D01* X34882Y35715D01* X34861Y35744D01* X34837Y35772D01* X34812Y35797D01* X34784Y35820D01* X34754Y35840D01* X34744Y35846D01* Y37165D01* X34769Y37183D01* X34797Y37207D01* X34822Y37232D01* X34845Y37260D01* X34865Y37290D01* X34883Y37322D01* X34897Y37355D01* X34909Y37389D01* X34911Y37398D01* X34911Y37407D01* X34910Y37415D01* X34907Y37423D01* X34902Y37431D01* X34897Y37438D01* X34890Y37444D01* X34883Y37448D01* X34875Y37451D01* X34866Y37453D01* X34857Y37453D01* X34849Y37452D01* X34841Y37449D01* X34833Y37445D01* X34826Y37439D01* X34820Y37433D01* X34816Y37425D01* X34813Y37417D01* X34804Y37391D01* X34793Y37366D01* X34780Y37343D01* X34765Y37320D01* X34748Y37299D01* X34744Y37295D01* Y37704D01* X34744Y37704D01* X34762Y37683D01* X34777Y37661D01* X34791Y37637D01* X34802Y37613D01* X34811Y37587D01* X34815Y37579D01* X34819Y37572D01* X34825Y37565D01* X34832Y37560D01* X34840Y37556D01* X34848Y37553D01* X34857Y37552D01* X34865Y37552D01* X34874Y37554D01* X34882Y37557D01* X34889Y37562D01* X34896Y37568D01* X34901Y37575D01* X34905Y37582D01* X34908Y37591D01* X34909Y37599D01* X34909Y37608D01* X34907Y37617D01* X34895Y37651D01* X34880Y37683D01* X34862Y37715D01* X34841Y37744D01* X34817Y37772D01* X34792Y37797D01* X34764Y37820D01* X34744Y37834D01* Y39180D01* X34749Y39183D01* X34777Y39207D01* X34802Y39232D01* X34825Y39260D01* X34845Y39290D01* X34863Y39322D01* X34877Y39355D01* X34889Y39389D01* X34891Y39398D01* X34891Y39407D01* X34890Y39415D01* X34887Y39423D01* X34882Y39431D01* X34877Y39438D01* X34870Y39444D01* X34863Y39448D01* X34855Y39451D01* X34846Y39453D01* X34837Y39453D01* X34829Y39452D01* X34821Y39449D01* X34813Y39445D01* X34806Y39439D01* X34800Y39433D01* X34796Y39425D01* X34793Y39417D01* X34784Y39391D01* X34773Y39366D01* X34760Y39343D01* X34745Y39320D01* X34744Y39319D01* Y39680D01* X34757Y39661D01* X34771Y39637D01* X34782Y39613D01* X34791Y39587D01* X34795Y39579D01* X34799Y39572D01* X34805Y39565D01* X34812Y39560D01* X34820Y39556D01* X34828Y39553D01* X34837Y39552D01* X34845Y39552D01* X34854Y39554D01* X34862Y39557D01* X34869Y39562D01* X34876Y39568D01* X34881Y39575D01* X34885Y39582D01* X34888Y39591D01* X34889Y39599D01* X34889Y39608D01* X34887Y39617D01* X34875Y39651D01* X34860Y39683D01* X34842Y39715D01* X34821Y39744D01* X34797Y39772D01* X34772Y39797D01* X34744Y39820D01* Y40000D01* G37* G36* X34924Y0D02*X34744D01* Y1125D01* X34774Y1115D01* X34783Y1113D01* X34792Y1113D01* X34800Y1115D01* X34808Y1117D01* X34816Y1122D01* X34823Y1127D01* X34829Y1134D01* X34833Y1141D01* X34836Y1149D01* X34838Y1158D01* X34838Y1167D01* X34837Y1175D01* X34834Y1183D01* X34830Y1191D01* X34824Y1198D01* X34817Y1204D01* X34810Y1208D01* X34802Y1211D01* X34776Y1220D01* X34751Y1231D01* X34744Y1235D01* Y1764D01* X34747Y1766D01* X34771Y1777D01* X34797Y1786D01* X34805Y1790D01* X34812Y1794D01* X34819Y1800D01* X34824Y1807D01* X34828Y1815D01* X34831Y1823D01* X34832Y1832D01* X34832Y1840D01* X34830Y1849D01* X34827Y1857D01* X34822Y1864D01* X34816Y1871D01* X34809Y1876D01* X34802Y1880D01* X34793Y1883D01* X34785Y1884D01* X34776Y1884D01* X34768Y1882D01* X34744Y1874D01* Y3119D01* X34754Y3115D01* X34763Y3113D01* X34772Y3113D01* X34780Y3115D01* X34788Y3117D01* X34796Y3122D01* X34803Y3127D01* X34809Y3134D01* X34813Y3141D01* X34816Y3149D01* X34818Y3158D01* X34818Y3167D01* X34817Y3175D01* X34814Y3183D01* X34810Y3191D01* X34804Y3198D01* X34797Y3204D01* X34790Y3208D01* X34782Y3211D01* X34756Y3220D01* X34744Y3225D01* Y3774D01* X34751Y3777D01* X34777Y3786D01* X34785Y3790D01* X34792Y3794D01* X34799Y3800D01* X34804Y3807D01* X34808Y3815D01* X34811Y3823D01* X34812Y3832D01* X34812Y3840D01* X34810Y3849D01* X34807Y3857D01* X34802Y3864D01* X34796Y3871D01* X34789Y3876D01* X34782Y3880D01* X34773Y3883D01* X34765Y3884D01* X34756Y3884D01* X34748Y3882D01* X34744Y3881D01* Y5113D01* X34752Y5113D01* X34760Y5115D01* X34768Y5117D01* X34776Y5122D01* X34783Y5127D01* X34789Y5134D01* X34793Y5141D01* X34796Y5149D01* X34798Y5158D01* X34798Y5167D01* X34797Y5175D01* X34794Y5183D01* X34790Y5191D01* X34784Y5198D01* X34777Y5204D01* X34770Y5208D01* X34762Y5211D01* X34744Y5217D01* Y5782D01* X34757Y5786D01* X34765Y5790D01* X34772Y5794D01* X34779Y5800D01* X34784Y5807D01* X34788Y5815D01* X34791Y5823D01* X34792Y5832D01* X34792Y5840D01* X34790Y5849D01* X34787Y5857D01* X34782Y5864D01* X34776Y5871D01* X34769Y5876D01* X34762Y5880D01* X34753Y5883D01* X34745Y5884D01* X34744D01* Y7116D01* X34748Y7117D01* X34756Y7122D01* X34763Y7127D01* X34769Y7134D01* X34773Y7141D01* X34776Y7149D01* X34778Y7158D01* X34778Y7167D01* X34777Y7175D01* X34774Y7183D01* X34770Y7191D01* X34764Y7198D01* X34757Y7204D01* X34750Y7208D01* X34744Y7210D01* Y7789D01* X34745Y7790D01* X34752Y7794D01* X34759Y7800D01* X34764Y7807D01* X34768Y7815D01* X34771Y7823D01* X34772Y7832D01* X34772Y7840D01* X34770Y7849D01* X34767Y7857D01* X34762Y7864D01* X34756Y7871D01* X34749Y7876D01* X34744Y7879D01* Y9128D01* X34749Y9134D01* X34753Y9141D01* X34756Y9149D01* X34758Y9158D01* X34758Y9167D01* X34757Y9175D01* X34754Y9183D01* X34750Y9191D01* X34744Y9198D01* X34744Y9198D01* Y9807D01* X34744Y9807D01* X34748Y9815D01* X34751Y9823D01* X34752Y9832D01* X34752Y9840D01* X34750Y9849D01* X34747Y9857D01* X34744Y9861D01* Y21140D01* X34747Y21135D01* X34753Y21128D01* X34760Y21123D01* X34767Y21119D01* X34776Y21116D01* X34784Y21115D01* X34793Y21115D01* X34801Y21117D01* X34836Y21129D01* X34868Y21144D01* X34900Y21162D01* X34924Y21180D01* Y19834D01* X34914Y19840D01* X34882Y19858D01* X34849Y19873D01* X34815Y19884D01* X34806Y19886D01* X34797Y19886D01* X34789Y19885D01* X34781Y19882D01* X34773Y19878D01* X34766Y19872D01* X34760Y19865D01* X34756Y19858D01* X34753Y19850D01* X34751Y19841D01* X34751Y19833D01* X34752Y19824D01* X34755Y19816D01* X34759Y19808D01* X34765Y19801D01* X34772Y19796D01* X34779Y19791D01* X34787Y19788D01* X34813Y19779D01* X34838Y19768D01* X34861Y19755D01* X34884Y19740D01* X34905Y19723D01* X34924Y19704D01* Y19295D01* X34909Y19280D01* X34888Y19262D01* X34866Y19247D01* X34842Y19233D01* X34818Y19222D01* X34792Y19213D01* X34784Y19209D01* X34777Y19205D01* X34770Y19199D01* X34765Y19192D01* X34761Y19184D01* X34758Y19176D01* X34757Y19167D01* X34757Y19159D01* X34759Y19150D01* X34762Y19142D01* X34767Y19135D01* X34773Y19128D01* X34780Y19123D01* X34787Y19119D01* X34796Y19116D01* X34804Y19115D01* X34813Y19115D01* X34821Y19117D01* X34856Y19129D01* X34888Y19144D01* X34920Y19162D01* X34924Y19165D01* Y17846D01* X34902Y17858D01* X34869Y17873D01* X34835Y17884D01* X34826Y17886D01* X34817Y17886D01* X34809Y17885D01* X34801Y17882D01* X34793Y17878D01* X34786Y17872D01* X34780Y17865D01* X34776Y17858D01* X34773Y17850D01* X34771Y17841D01* X34771Y17833D01* X34772Y17824D01* X34775Y17816D01* X34779Y17808D01* X34785Y17801D01* X34792Y17796D01* X34799Y17791D01* X34807Y17788D01* X34833Y17779D01* X34858Y17768D01* X34881Y17755D01* X34904Y17740D01* X34924Y17724D01* Y17276D01* X34908Y17262D01* X34886Y17247D01* X34862Y17233D01* X34838Y17222D01* X34812Y17213D01* X34804Y17209D01* X34797Y17205D01* X34790Y17199D01* X34785Y17192D01* X34781Y17184D01* X34778Y17176D01* X34777Y17167D01* X34777Y17159D01* X34779Y17150D01* X34782Y17142D01* X34787Y17135D01* X34793Y17128D01* X34800Y17123D01* X34807Y17119D01* X34816Y17116D01* X34824Y17115D01* X34833Y17115D01* X34841Y17117D01* X34876Y17129D01* X34908Y17144D01* X34924Y17153D01* Y15857D01* X34922Y15858D01* X34889Y15873D01* X34855Y15884D01* X34846Y15886D01* X34837Y15886D01* X34829Y15885D01* X34821Y15882D01* X34813Y15878D01* X34806Y15872D01* X34800Y15865D01* X34796Y15858D01* X34793Y15850D01* X34791Y15841D01* X34791Y15833D01* X34792Y15824D01* X34795Y15816D01* X34799Y15808D01* X34805Y15801D01* X34812Y15796D01* X34819Y15791D01* X34827Y15788D01* X34853Y15779D01* X34878Y15768D01* X34901Y15755D01* X34924Y15740D01* Y15259D01* X34906Y15247D01* X34882Y15233D01* X34858Y15222D01* X34832Y15213D01* X34824Y15209D01* X34817Y15205D01* X34810Y15199D01* X34805Y15192D01* X34801Y15184D01* X34798Y15176D01* X34797Y15167D01* X34797Y15159D01* X34799Y15150D01* X34802Y15142D01* X34807Y15135D01* X34813Y15128D01* X34820Y15123D01* X34827Y15119D01* X34836Y15116D01* X34844Y15115D01* X34853Y15115D01* X34861Y15117D01* X34896Y15129D01* X34924Y15142D01* Y13866D01* X34909Y13873D01* X34875Y13884D01* X34866Y13886D01* X34857Y13886D01* X34849Y13885D01* X34841Y13882D01* X34833Y13878D01* X34826Y13872D01* X34820Y13865D01* X34816Y13858D01* X34813Y13850D01* X34811Y13841D01* X34811Y13833D01* X34812Y13824D01* X34815Y13816D01* X34819Y13808D01* X34825Y13801D01* X34832Y13796D01* X34839Y13791D01* X34847Y13788D01* X34873Y13779D01* X34898Y13768D01* X34921Y13755D01* X34924Y13754D01* Y13246D01* X34902Y13233D01* X34878Y13222D01* X34852Y13213D01* X34844Y13209D01* X34837Y13205D01* X34830Y13199D01* X34825Y13192D01* X34821Y13184D01* X34818Y13176D01* X34817Y13167D01* X34817Y13159D01* X34819Y13150D01* X34822Y13142D01* X34827Y13135D01* X34833Y13128D01* X34840Y13123D01* X34847Y13119D01* X34856Y13116D01* X34864Y13115D01* X34873Y13115D01* X34881Y13117D01* X34916Y13129D01* X34924Y13133D01* Y11874D01* X34895Y11884D01* X34886Y11886D01* X34877Y11886D01* X34869Y11885D01* X34861Y11882D01* X34853Y11878D01* X34846Y11872D01* X34840Y11865D01* X34836Y11858D01* X34833Y11850D01* X34831Y11841D01* X34831Y11833D01* X34832Y11824D01* X34835Y11816D01* X34839Y11808D01* X34845Y11801D01* X34852Y11796D01* X34859Y11791D01* X34867Y11788D01* X34893Y11779D01* X34918Y11768D01* X34924Y11765D01* Y11234D01* X34922Y11233D01* X34898Y11222D01* X34872Y11213D01* X34864Y11209D01* X34857Y11205D01* X34850Y11199D01* X34845Y11192D01* X34841Y11184D01* X34838Y11176D01* X34837Y11167D01* X34837Y11159D01* X34839Y11150D01* X34842Y11142D01* X34847Y11135D01* X34853Y11128D01* X34860Y11123D01* X34867Y11119D01* X34876Y11116D01* X34884Y11115D01* X34893Y11115D01* X34901Y11117D01* X34924Y11125D01* Y9881D01* X34915Y9884D01* X34906Y9886D01* X34897Y9886D01* X34889Y9885D01* X34881Y9882D01* X34873Y9878D01* X34866Y9872D01* X34860Y9865D01* X34856Y9858D01* X34853Y9850D01* X34851Y9841D01* X34851Y9833D01* X34852Y9824D01* X34855Y9816D01* X34859Y9808D01* X34865Y9801D01* X34872Y9796D01* X34879Y9791D01* X34887Y9788D01* X34913Y9779D01* X34924Y9774D01* Y9225D01* X34918Y9222D01* X34892Y9213D01* X34884Y9209D01* X34877Y9205D01* X34870Y9199D01* X34865Y9192D01* X34861Y9184D01* X34858Y9176D01* X34857Y9167D01* X34857Y9159D01* X34859Y9150D01* X34862Y9142D01* X34867Y9135D01* X34873Y9128D01* X34880Y9123D01* X34887Y9119D01* X34896Y9116D01* X34904Y9115D01* X34913Y9115D01* X34921Y9117D01* X34924Y9118D01* Y7886D01* X34917Y7886D01* X34909Y7885D01* X34901Y7882D01* X34893Y7878D01* X34886Y7872D01* X34880Y7865D01* X34876Y7858D01* X34873Y7850D01* X34871Y7841D01* X34871Y7833D01* X34872Y7824D01* X34875Y7816D01* X34879Y7808D01* X34885Y7801D01* X34892Y7796D01* X34899Y7791D01* X34907Y7788D01* X34924Y7782D01* Y7217D01* X34912Y7213D01* X34904Y7209D01* X34897Y7205D01* X34890Y7199D01* X34885Y7192D01* X34881Y7184D01* X34878Y7176D01* X34877Y7167D01* X34877Y7159D01* X34879Y7150D01* X34882Y7142D01* X34887Y7135D01* X34893Y7128D01* X34900Y7123D01* X34907Y7119D01* X34916Y7116D01* X34924Y7115D01* Y5883D01* X34921Y5882D01* X34913Y5878D01* X34906Y5872D01* X34900Y5865D01* X34896Y5858D01* X34893Y5850D01* X34891Y5841D01* X34891Y5833D01* X34892Y5824D01* X34895Y5816D01* X34899Y5808D01* X34905Y5801D01* X34912Y5796D01* X34919Y5791D01* X34924Y5789D01* Y5209D01* X34917Y5205D01* X34910Y5199D01* X34905Y5192D01* X34901Y5184D01* X34898Y5176D01* X34897Y5167D01* X34897Y5159D01* X34899Y5150D01* X34902Y5142D01* X34907Y5135D01* X34913Y5128D01* X34920Y5123D01* X34924Y5121D01* Y3870D01* X34920Y3865D01* X34916Y3858D01* X34913Y3850D01* X34911Y3841D01* X34911Y3833D01* X34912Y3824D01* X34915Y3816D01* X34919Y3808D01* X34924Y3802D01* Y3190D01* X34921Y3184D01* X34918Y3176D01* X34917Y3167D01* X34917Y3159D01* X34919Y3150D01* X34922Y3142D01* X34924Y3140D01* Y0D01* G37* G36* Y21319D02*X34908Y21299D01* X34889Y21280D01* X34868Y21262D01* X34846Y21247D01* X34822Y21233D01* X34798Y21222D01* X34772Y21213D01* X34764Y21209D01* X34757Y21205D01* X34750Y21199D01* X34745Y21192D01* X34744Y21190D01* Y21802D01* X34745Y21801D01* X34752Y21796D01* X34759Y21791D01* X34767Y21788D01* X34793Y21779D01* X34818Y21768D01* X34841Y21755D01* X34864Y21740D01* X34885Y21723D01* X34904Y21704D01* X34922Y21683D01* X34924Y21680D01* Y21319D01* G37* G36* Y21820D02*X34924Y21820D01* X34894Y21840D01* X34862Y21858D01* X34829Y21873D01* X34795Y21884D01* X34786Y21886D01* X34777Y21886D01* X34769Y21885D01* X34761Y21882D01* X34753Y21878D01* X34746Y21872D01* X34744Y21870D01* Y23121D01* X34747Y23119D01* X34756Y23116D01* X34764Y23115D01* X34773Y23115D01* X34781Y23117D01* X34816Y23129D01* X34848Y23144D01* X34880Y23162D01* X34909Y23183D01* X34924Y23196D01* Y21820D01* G37* G36* Y23350D02*X34920Y23343D01* X34905Y23320D01* X34888Y23299D01* X34869Y23280D01* X34848Y23262D01* X34826Y23247D01* X34802Y23233D01* X34778Y23222D01* X34752Y23213D01* X34744Y23209D01* X34744Y23209D01* Y23789D01* X34747Y23788D01* X34773Y23779D01* X34798Y23768D01* X34821Y23755D01* X34844Y23740D01* X34865Y23723D01* X34884Y23704D01* X34902Y23683D01* X34917Y23661D01* X34924Y23650D01* Y23350D01* G37* G36* Y23804D02*X34904Y23820D01* X34874Y23840D01* X34842Y23858D01* X34809Y23873D01* X34775Y23884D01* X34766Y23886D01* X34757Y23886D01* X34749Y23885D01* X34744Y23883D01* Y25115D01* X34744D01* X34753Y25115D01* X34761Y25117D01* X34796Y25129D01* X34828Y25144D01* X34860Y25162D01* X34889Y25183D01* X34917Y25207D01* X34924Y25214D01* Y23804D01* G37* G36* Y25391D02*X34913Y25366D01* X34900Y25343D01* X34885Y25320D01* X34868Y25299D01* X34849Y25280D01* X34828Y25262D01* X34806Y25247D01* X34782Y25233D01* X34758Y25222D01* X34744Y25217D01* Y25782D01* X34753Y25779D01* X34778Y25768D01* X34801Y25755D01* X34824Y25740D01* X34845Y25723D01* X34864Y25704D01* X34882Y25683D01* X34897Y25661D01* X34911Y25637D01* X34922Y25613D01* X34924Y25608D01* Y25391D01* G37* G36* Y25785D02*X34912Y25797D01* X34884Y25820D01* X34854Y25840D01* X34822Y25858D01* X34789Y25873D01* X34755Y25884D01* X34746Y25886D01* X34744D01* Y27118D01* X34776Y27129D01* X34808Y27144D01* X34840Y27162D01* X34869Y27183D01* X34897Y27207D01* X34922Y27232D01* X34924Y27235D01* Y25785D01* G37* G36* Y27437D02*X34920Y27433D01* X34916Y27425D01* X34913Y27417D01* X34904Y27391D01* X34893Y27366D01* X34880Y27343D01* X34865Y27320D01* X34848Y27299D01* X34829Y27280D01* X34808Y27262D01* X34786Y27247D01* X34762Y27233D01* X34744Y27225D01* Y27774D01* X34758Y27768D01* X34781Y27755D01* X34804Y27740D01* X34825Y27723D01* X34844Y27704D01* X34862Y27683D01* X34877Y27661D01* X34891Y27637D01* X34902Y27613D01* X34911Y27587D01* X34915Y27579D01* X34919Y27572D01* X34924Y27567D01* Y27437D01* G37* G36* Y27764D02*X34917Y27772D01* X34892Y27797D01* X34864Y27820D01* X34834Y27840D01* X34802Y27858D01* X34769Y27873D01* X34744Y27881D01* Y29125D01* X34756Y29129D01* X34788Y29144D01* X34820Y29162D01* X34849Y29183D01* X34877Y29207D01* X34902Y29232D01* X34924Y29259D01* Y27764D01* G37* G36* Y29450D02*X34921Y29449D01* X34913Y29445D01* X34906Y29439D01* X34900Y29433D01* X34896Y29425D01* X34893Y29417D01* X34884Y29391D01* X34873Y29366D01* X34860Y29343D01* X34845Y29320D01* X34828Y29299D01* X34809Y29280D01* X34788Y29262D01* X34766Y29247D01* X34744Y29234D01* Y29765D01* X34761Y29755D01* X34784Y29740D01* X34805Y29723D01* X34824Y29704D01* X34842Y29683D01* X34857Y29661D01* X34871Y29637D01* X34882Y29613D01* X34891Y29587D01* X34895Y29579D01* X34899Y29572D01* X34905Y29565D01* X34912Y29560D01* X34920Y29556D01* X34924Y29555D01* Y29450D01* G37* G36* Y29740D02*X34921Y29744D01* X34897Y29772D01* X34872Y29797D01* X34844Y29820D01* X34814Y29840D01* X34782Y29858D01* X34749Y29873D01* X34744Y29874D01* Y31133D01* X34768Y31144D01* X34800Y31162D01* X34829Y31183D01* X34857Y31207D01* X34882Y31232D01* X34905Y31260D01* X34924Y31288D01* Y29740D01* G37* G36* Y31453D02*X34917Y31453D01* X34909Y31452D01* X34901Y31449D01* X34893Y31445D01* X34886Y31439D01* X34880Y31433D01* X34876Y31425D01* X34873Y31417D01* X34864Y31391D01* X34853Y31366D01* X34840Y31343D01* X34825Y31320D01* X34808Y31299D01* X34789Y31280D01* X34768Y31262D01* X34746Y31247D01* X34744Y31246D01* Y31754D01* X34764Y31740D01* X34785Y31723D01* X34804Y31704D01* X34822Y31683D01* X34837Y31661D01* X34851Y31637D01* X34862Y31613D01* X34871Y31587D01* X34875Y31579D01* X34879Y31572D01* X34885Y31565D01* X34892Y31560D01* X34900Y31556D01* X34908Y31553D01* X34917Y31552D01* X34924Y31552D01* Y31453D01* G37* G36* Y31711D02*X34922Y31715D01* X34901Y31744D01* X34877Y31772D01* X34852Y31797D01* X34824Y31820D01* X34794Y31840D01* X34762Y31858D01* X34744Y31866D01* Y33142D01* X34748Y33144D01* X34780Y33162D01* X34809Y33183D01* X34837Y33207D01* X34862Y33232D01* X34885Y33260D01* X34905Y33290D01* X34923Y33322D01* X34924Y33324D01* Y31711D01* G37* G36* Y33447D02*X34923Y33448D01* X34915Y33451D01* X34906Y33453D01* X34897Y33453D01* X34889Y33452D01* X34881Y33449D01* X34873Y33445D01* X34866Y33439D01* X34860Y33433D01* X34856Y33425D01* X34853Y33417D01* X34844Y33391D01* X34833Y33366D01* X34820Y33343D01* X34805Y33320D01* X34788Y33299D01* X34769Y33280D01* X34748Y33262D01* X34744Y33259D01* Y33740D01* X34765Y33723D01* X34784Y33704D01* X34802Y33683D01* X34817Y33661D01* X34831Y33637D01* X34842Y33613D01* X34851Y33587D01* X34855Y33579D01* X34859Y33572D01* X34865Y33565D01* X34872Y33560D01* X34880Y33556D01* X34888Y33553D01* X34897Y33552D01* X34905Y33552D01* X34914Y33554D01* X34922Y33557D01* X34924Y33559D01* Y33447D01* G37* G36* Y33674D02*X34920Y33683D01* X34902Y33715D01* X34881Y33744D01* X34857Y33772D01* X34832Y33797D01* X34804Y33820D01* X34774Y33840D01* X34744Y33857D01* Y35153D01* X34760Y35162D01* X34789Y35183D01* X34817Y35207D01* X34842Y35232D01* X34865Y35260D01* X34885Y35290D01* X34903Y35322D01* X34917Y35355D01* X34924Y35374D01* Y33674D01* G37* G36* Y35428D02*X34922Y35431D01* X34917Y35438D01* X34910Y35444D01* X34903Y35448D01* X34895Y35451D01* X34886Y35453D01* X34877Y35453D01* X34869Y35452D01* X34861Y35449D01* X34853Y35445D01* X34846Y35439D01* X34840Y35433D01* X34836Y35425D01* X34833Y35417D01* X34824Y35391D01* X34813Y35366D01* X34800Y35343D01* X34785Y35320D01* X34768Y35299D01* X34749Y35280D01* X34744Y35276D01* Y35724D01* X34745Y35723D01* X34764Y35704D01* X34782Y35683D01* X34797Y35661D01* X34811Y35637D01* X34822Y35613D01* X34831Y35587D01* X34835Y35579D01* X34839Y35572D01* X34845Y35565D01* X34852Y35560D01* X34860Y35556D01* X34868Y35553D01* X34877Y35552D01* X34885Y35552D01* X34894Y35554D01* X34902Y35557D01* X34909Y35562D01* X34916Y35568D01* X34921Y35575D01* X34924Y35580D01* Y35428D01* G37* G36* Y40000D02*X35104D01* Y17625D01* X35095Y17651D01* X35080Y17683D01* X35062Y17715D01* X35041Y17744D01* X35017Y17772D01* X34992Y17797D01* X34964Y17820D01* X34934Y17840D01* X34924Y17846D01* Y19165D01* X34949Y19183D01* X34977Y19207D01* X35002Y19232D01* X35025Y19260D01* X35045Y19290D01* X35063Y19322D01* X35077Y19355D01* X35089Y19389D01* X35091Y19398D01* X35091Y19407D01* X35090Y19415D01* X35087Y19423D01* X35082Y19431D01* X35077Y19438D01* X35070Y19444D01* X35063Y19448D01* X35055Y19451D01* X35046Y19453D01* X35037Y19453D01* X35029Y19452D01* X35021Y19449D01* X35013Y19445D01* X35006Y19439D01* X35000Y19433D01* X34996Y19425D01* X34993Y19417D01* X34984Y19391D01* X34973Y19366D01* X34960Y19343D01* X34945Y19320D01* X34928Y19299D01* X34924Y19295D01* Y19704D01* X34924Y19704D01* X34942Y19683D01* X34957Y19661D01* X34971Y19637D01* X34982Y19613D01* X34991Y19587D01* X34995Y19579D01* X34999Y19572D01* X35005Y19565D01* X35012Y19560D01* X35020Y19556D01* X35028Y19553D01* X35037Y19552D01* X35045Y19552D01* X35054Y19554D01* X35062Y19557D01* X35069Y19562D01* X35076Y19568D01* X35081Y19575D01* X35085Y19582D01* X35088Y19591D01* X35089Y19599D01* X35089Y19608D01* X35087Y19617D01* X35075Y19651D01* X35060Y19683D01* X35042Y19715D01* X35021Y19744D01* X34997Y19772D01* X34972Y19797D01* X34944Y19820D01* X34924Y19834D01* Y21180D01* X34929Y21183D01* X34957Y21207D01* X34982Y21232D01* X35005Y21260D01* X35025Y21290D01* X35043Y21322D01* X35057Y21355D01* X35069Y21389D01* X35071Y21398D01* X35071Y21407D01* X35070Y21415D01* X35067Y21423D01* X35062Y21431D01* X35057Y21438D01* X35050Y21444D01* X35043Y21448D01* X35035Y21451D01* X35026Y21453D01* X35017Y21453D01* X35009Y21452D01* X35001Y21449D01* X34993Y21445D01* X34986Y21439D01* X34980Y21433D01* X34976Y21425D01* X34973Y21417D01* X34964Y21391D01* X34953Y21366D01* X34940Y21343D01* X34925Y21320D01* X34924Y21319D01* Y21680D01* X34937Y21661D01* X34951Y21637D01* X34962Y21613D01* X34971Y21587D01* X34975Y21579D01* X34979Y21572D01* X34985Y21565D01* X34992Y21560D01* X35000Y21556D01* X35008Y21553D01* X35017Y21552D01* X35025Y21552D01* X35034Y21554D01* X35042Y21557D01* X35049Y21562D01* X35056Y21568D01* X35061Y21575D01* X35065Y21582D01* X35068Y21591D01* X35069Y21599D01* X35069Y21608D01* X35067Y21617D01* X35055Y21651D01* X35040Y21683D01* X35022Y21715D01* X35001Y21744D01* X34977Y21772D01* X34952Y21797D01* X34924Y21820D01* Y23196D01* X34937Y23207D01* X34962Y23232D01* X34985Y23260D01* X35005Y23290D01* X35023Y23322D01* X35037Y23355D01* X35049Y23389D01* X35051Y23398D01* X35051Y23407D01* X35050Y23415D01* X35047Y23423D01* X35042Y23431D01* X35037Y23438D01* X35030Y23444D01* X35023Y23448D01* X35015Y23451D01* X35006Y23453D01* X34997Y23453D01* X34989Y23452D01* X34981Y23449D01* X34973Y23445D01* X34966Y23439D01* X34960Y23433D01* X34956Y23425D01* X34953Y23417D01* X34944Y23391D01* X34933Y23366D01* X34924Y23350D01* Y23650D01* X34931Y23637D01* X34942Y23613D01* X34951Y23587D01* X34955Y23579D01* X34959Y23572D01* X34965Y23565D01* X34972Y23560D01* X34980Y23556D01* X34988Y23553D01* X34997Y23552D01* X35005Y23552D01* X35014Y23554D01* X35022Y23557D01* X35029Y23562D01* X35036Y23568D01* X35041Y23575D01* X35045Y23582D01* X35048Y23591D01* X35049Y23599D01* X35049Y23608D01* X35047Y23617D01* X35035Y23651D01* X35020Y23683D01* X35002Y23715D01* X34981Y23744D01* X34957Y23772D01* X34932Y23797D01* X34924Y23804D01* Y25214D01* X34942Y25232D01* X34965Y25260D01* X34985Y25290D01* X35003Y25322D01* X35017Y25355D01* X35029Y25389D01* X35031Y25398D01* X35031Y25407D01* X35030Y25415D01* X35027Y25423D01* X35022Y25431D01* X35017Y25438D01* X35010Y25444D01* X35003Y25448D01* X34995Y25451D01* X34986Y25453D01* X34977Y25453D01* X34969Y25452D01* X34961Y25449D01* X34953Y25445D01* X34946Y25439D01* X34940Y25433D01* X34936Y25425D01* X34933Y25417D01* X34924Y25391D01* X34924Y25391D01* Y25608D01* X34931Y25587D01* X34935Y25579D01* X34939Y25572D01* X34945Y25565D01* X34952Y25560D01* X34960Y25556D01* X34968Y25553D01* X34977Y25552D01* X34985Y25552D01* X34994Y25554D01* X35002Y25557D01* X35009Y25562D01* X35016Y25568D01* X35021Y25575D01* X35025Y25582D01* X35028Y25591D01* X35029Y25599D01* X35029Y25608D01* X35027Y25617D01* X35015Y25651D01* X35000Y25683D01* X34982Y25715D01* X34961Y25744D01* X34937Y25772D01* X34924Y25785D01* Y27235D01* X34945Y27260D01* X34965Y27290D01* X34983Y27322D01* X34997Y27355D01* X35009Y27389D01* X35011Y27398D01* X35011Y27407D01* X35010Y27415D01* X35007Y27423D01* X35002Y27431D01* X34997Y27438D01* X34990Y27444D01* X34983Y27448D01* X34975Y27451D01* X34966Y27453D01* X34957Y27453D01* X34949Y27452D01* X34941Y27449D01* X34933Y27445D01* X34926Y27439D01* X34924Y27437D01* Y27567D01* X34925Y27565D01* X34932Y27560D01* X34940Y27556D01* X34948Y27553D01* X34957Y27552D01* X34965Y27552D01* X34974Y27554D01* X34982Y27557D01* X34989Y27562D01* X34996Y27568D01* X35001Y27575D01* X35005Y27582D01* X35008Y27591D01* X35009Y27599D01* X35009Y27608D01* X35007Y27617D01* X34995Y27651D01* X34980Y27683D01* X34962Y27715D01* X34941Y27744D01* X34924Y27764D01* Y29259D01* X34925Y29260D01* X34945Y29290D01* X34963Y29322D01* X34977Y29355D01* X34989Y29389D01* X34991Y29398D01* X34991Y29407D01* X34990Y29415D01* X34987Y29423D01* X34982Y29431D01* X34977Y29438D01* X34970Y29444D01* X34963Y29448D01* X34955Y29451D01* X34946Y29453D01* X34937Y29453D01* X34929Y29452D01* X34924Y29450D01* Y29555D01* X34928Y29553D01* X34937Y29552D01* X34945Y29552D01* X34954Y29554D01* X34962Y29557D01* X34969Y29562D01* X34976Y29568D01* X34981Y29575D01* X34985Y29582D01* X34988Y29591D01* X34989Y29599D01* X34989Y29608D01* X34987Y29617D01* X34975Y29651D01* X34960Y29683D01* X34942Y29715D01* X34924Y29740D01* Y31288D01* X34925Y31290D01* X34943Y31322D01* X34957Y31355D01* X34969Y31389D01* X34971Y31398D01* X34971Y31407D01* X34970Y31415D01* X34967Y31423D01* X34962Y31431D01* X34957Y31438D01* X34950Y31444D01* X34943Y31448D01* X34935Y31451D01* X34926Y31453D01* X34924D01* Y31552D01* X34925D01* X34934Y31554D01* X34942Y31557D01* X34949Y31562D01* X34956Y31568D01* X34961Y31575D01* X34965Y31582D01* X34968Y31591D01* X34969Y31599D01* X34969Y31608D01* X34967Y31617D01* X34955Y31651D01* X34940Y31683D01* X34924Y31711D01* Y33324D01* X34937Y33355D01* X34949Y33389D01* X34951Y33398D01* X34951Y33407D01* X34950Y33415D01* X34947Y33423D01* X34942Y33431D01* X34937Y33438D01* X34930Y33444D01* X34924Y33447D01* Y33559D01* X34929Y33562D01* X34936Y33568D01* X34941Y33575D01* X34945Y33582D01* X34948Y33591D01* X34949Y33599D01* X34949Y33608D01* X34947Y33617D01* X34935Y33651D01* X34924Y33674D01* Y35374D01* X34929Y35389D01* X34931Y35398D01* X34931Y35407D01* X34930Y35415D01* X34927Y35423D01* X34924Y35428D01* Y35580D01* X34925Y35582D01* X34928Y35591D01* X34929Y35599D01* X34929Y35608D01* X34927Y35617D01* X34924Y35625D01* Y40000D01* G37* G36* X35104Y0D02*X34924D01* Y3140D01* X34927Y3135D01* X34933Y3128D01* X34940Y3123D01* X34947Y3119D01* X34956Y3116D01* X34964Y3115D01* X34973Y3115D01* X34981Y3117D01* X35016Y3129D01* X35048Y3144D01* X35080Y3162D01* X35104Y3180D01* Y1834D01* X35094Y1840D01* X35062Y1858D01* X35029Y1873D01* X34995Y1884D01* X34986Y1886D01* X34977Y1886D01* X34969Y1885D01* X34961Y1882D01* X34953Y1878D01* X34946Y1872D01* X34940Y1865D01* X34936Y1858D01* X34933Y1850D01* X34931Y1841D01* X34931Y1833D01* X34932Y1824D01* X34935Y1816D01* X34939Y1808D01* X34945Y1801D01* X34952Y1796D01* X34959Y1791D01* X34967Y1788D01* X34993Y1779D01* X35018Y1768D01* X35041Y1755D01* X35064Y1740D01* X35085Y1723D01* X35104Y1704D01* Y1295D01* X35089Y1280D01* X35068Y1262D01* X35046Y1247D01* X35022Y1233D01* X34998Y1222D01* X34972Y1213D01* X34964Y1209D01* X34957Y1205D01* X34950Y1199D01* X34945Y1192D01* X34941Y1184D01* X34938Y1176D01* X34937Y1167D01* X34937Y1159D01* X34939Y1150D01* X34942Y1142D01* X34947Y1135D01* X34953Y1128D01* X34960Y1123D01* X34967Y1119D01* X34976Y1116D01* X34984Y1115D01* X34993Y1115D01* X35001Y1117D01* X35036Y1129D01* X35068Y1144D01* X35100Y1162D01* X35104Y1165D01* Y0D01* G37* G36* Y3319D02*X35088Y3299D01* X35069Y3280D01* X35048Y3262D01* X35026Y3247D01* X35002Y3233D01* X34978Y3222D01* X34952Y3213D01* X34944Y3209D01* X34937Y3205D01* X34930Y3199D01* X34925Y3192D01* X34924Y3190D01* Y3802D01* X34925Y3801D01* X34932Y3796D01* X34939Y3791D01* X34947Y3788D01* X34973Y3779D01* X34998Y3768D01* X35021Y3755D01* X35044Y3740D01* X35065Y3723D01* X35084Y3704D01* X35102Y3683D01* X35104Y3680D01* Y3319D01* G37* G36* Y3820D02*X35104Y3820D01* X35074Y3840D01* X35042Y3858D01* X35009Y3873D01* X34975Y3884D01* X34966Y3886D01* X34957Y3886D01* X34949Y3885D01* X34941Y3882D01* X34933Y3878D01* X34926Y3872D01* X34924Y3870D01* Y5121D01* X34927Y5119D01* X34936Y5116D01* X34944Y5115D01* X34953Y5115D01* X34961Y5117D01* X34996Y5129D01* X35028Y5144D01* X35060Y5162D01* X35089Y5183D01* X35104Y5196D01* Y3820D01* G37* G36* Y5350D02*X35100Y5343D01* X35085Y5320D01* X35068Y5299D01* X35049Y5280D01* X35028Y5262D01* X35006Y5247D01* X34982Y5233D01* X34958Y5222D01* X34932Y5213D01* X34924Y5209D01* X34924Y5209D01* Y5789D01* X34927Y5788D01* X34953Y5779D01* X34978Y5768D01* X35001Y5755D01* X35024Y5740D01* X35045Y5723D01* X35064Y5704D01* X35082Y5683D01* X35097Y5661D01* X35104Y5650D01* Y5350D01* G37* G36* Y5804D02*X35084Y5820D01* X35054Y5840D01* X35022Y5858D01* X34989Y5873D01* X34955Y5884D01* X34946Y5886D01* X34937Y5886D01* X34929Y5885D01* X34924Y5883D01* Y7115D01* X34924D01* X34933Y7115D01* X34941Y7117D01* X34976Y7129D01* X35008Y7144D01* X35040Y7162D01* X35069Y7183D01* X35097Y7207D01* X35104Y7214D01* Y5804D01* G37* G36* Y7391D02*X35093Y7366D01* X35080Y7343D01* X35065Y7320D01* X35048Y7299D01* X35029Y7280D01* X35008Y7262D01* X34986Y7247D01* X34962Y7233D01* X34938Y7222D01* X34924Y7217D01* Y7782D01* X34933Y7779D01* X34958Y7768D01* X34981Y7755D01* X35004Y7740D01* X35025Y7723D01* X35044Y7704D01* X35062Y7683D01* X35077Y7661D01* X35091Y7637D01* X35102Y7613D01* X35104Y7608D01* Y7391D01* G37* G36* Y7785D02*X35092Y7797D01* X35064Y7820D01* X35034Y7840D01* X35002Y7858D01* X34969Y7873D01* X34935Y7884D01* X34926Y7886D01* X34924D01* Y9118D01* X34956Y9129D01* X34988Y9144D01* X35020Y9162D01* X35049Y9183D01* X35077Y9207D01* X35102Y9232D01* X35104Y9235D01* Y7785D01* G37* G36* Y9437D02*X35100Y9433D01* X35096Y9425D01* X35093Y9417D01* X35084Y9391D01* X35073Y9366D01* X35060Y9343D01* X35045Y9320D01* X35028Y9299D01* X35009Y9280D01* X34988Y9262D01* X34966Y9247D01* X34942Y9233D01* X34924Y9225D01* Y9774D01* X34938Y9768D01* X34961Y9755D01* X34984Y9740D01* X35005Y9723D01* X35024Y9704D01* X35042Y9683D01* X35057Y9661D01* X35071Y9637D01* X35082Y9613D01* X35091Y9587D01* X35095Y9579D01* X35099Y9572D01* X35104Y9567D01* Y9437D01* G37* G36* Y9764D02*X35097Y9772D01* X35072Y9797D01* X35044Y9820D01* X35014Y9840D01* X34982Y9858D01* X34949Y9873D01* X34924Y9881D01* Y11125D01* X34936Y11129D01* X34968Y11144D01* X35000Y11162D01* X35029Y11183D01* X35057Y11207D01* X35082Y11232D01* X35104Y11259D01* Y9764D01* G37* G36* Y11450D02*X35101Y11449D01* X35093Y11445D01* X35086Y11439D01* X35080Y11433D01* X35076Y11425D01* X35073Y11417D01* X35064Y11391D01* X35053Y11366D01* X35040Y11343D01* X35025Y11320D01* X35008Y11299D01* X34989Y11280D01* X34968Y11262D01* X34946Y11247D01* X34924Y11234D01* Y11765D01* X34941Y11755D01* X34964Y11740D01* X34985Y11723D01* X35004Y11704D01* X35022Y11683D01* X35037Y11661D01* X35051Y11637D01* X35062Y11613D01* X35071Y11587D01* X35075Y11579D01* X35079Y11572D01* X35085Y11565D01* X35092Y11560D01* X35100Y11556D01* X35104Y11555D01* Y11450D01* G37* G36* Y11740D02*X35101Y11744D01* X35077Y11772D01* X35052Y11797D01* X35024Y11820D01* X34994Y11840D01* X34962Y11858D01* X34929Y11873D01* X34924Y11874D01* Y13133D01* X34948Y13144D01* X34980Y13162D01* X35009Y13183D01* X35037Y13207D01* X35062Y13232D01* X35085Y13260D01* X35104Y13288D01* Y11740D01* G37* G36* Y13453D02*X35097Y13453D01* X35089Y13452D01* X35081Y13449D01* X35073Y13445D01* X35066Y13439D01* X35060Y13433D01* X35056Y13425D01* X35053Y13417D01* X35044Y13391D01* X35033Y13366D01* X35020Y13343D01* X35005Y13320D01* X34988Y13299D01* X34969Y13280D01* X34948Y13262D01* X34926Y13247D01* X34924Y13246D01* Y13754D01* X34944Y13740D01* X34965Y13723D01* X34984Y13704D01* X35002Y13683D01* X35017Y13661D01* X35031Y13637D01* X35042Y13613D01* X35051Y13587D01* X35055Y13579D01* X35059Y13572D01* X35065Y13565D01* X35072Y13560D01* X35080Y13556D01* X35088Y13553D01* X35097Y13552D01* X35104Y13552D01* Y13453D01* G37* G36* Y13711D02*X35102Y13715D01* X35081Y13744D01* X35057Y13772D01* X35032Y13797D01* X35004Y13820D01* X34974Y13840D01* X34942Y13858D01* X34924Y13866D01* Y15142D01* X34928Y15144D01* X34960Y15162D01* X34989Y15183D01* X35017Y15207D01* X35042Y15232D01* X35065Y15260D01* X35085Y15290D01* X35103Y15322D01* X35104Y15324D01* Y13711D01* G37* G36* Y15447D02*X35103Y15448D01* X35095Y15451D01* X35086Y15453D01* X35077Y15453D01* X35069Y15452D01* X35061Y15449D01* X35053Y15445D01* X35046Y15439D01* X35040Y15433D01* X35036Y15425D01* X35033Y15417D01* X35024Y15391D01* X35013Y15366D01* X35000Y15343D01* X34985Y15320D01* X34968Y15299D01* X34949Y15280D01* X34928Y15262D01* X34924Y15259D01* Y15740D01* X34945Y15723D01* X34964Y15704D01* X34982Y15683D01* X34997Y15661D01* X35011Y15637D01* X35022Y15613D01* X35031Y15587D01* X35035Y15579D01* X35039Y15572D01* X35045Y15565D01* X35052Y15560D01* X35060Y15556D01* X35068Y15553D01* X35077Y15552D01* X35085Y15552D01* X35094Y15554D01* X35102Y15557D01* X35104Y15559D01* Y15447D01* G37* G36* Y15674D02*X35100Y15683D01* X35082Y15715D01* X35061Y15744D01* X35037Y15772D01* X35012Y15797D01* X34984Y15820D01* X34954Y15840D01* X34924Y15857D01* Y17153D01* X34940Y17162D01* X34969Y17183D01* X34997Y17207D01* X35022Y17232D01* X35045Y17260D01* X35065Y17290D01* X35083Y17322D01* X35097Y17355D01* X35104Y17374D01* Y15674D01* G37* G36* Y17428D02*X35102Y17431D01* X35097Y17438D01* X35090Y17444D01* X35083Y17448D01* X35075Y17451D01* X35066Y17453D01* X35057Y17453D01* X35049Y17452D01* X35041Y17449D01* X35033Y17445D01* X35026Y17439D01* X35020Y17433D01* X35016Y17425D01* X35013Y17417D01* X35004Y17391D01* X34993Y17366D01* X34980Y17343D01* X34965Y17320D01* X34948Y17299D01* X34929Y17280D01* X34924Y17276D01* Y17724D01* X34925Y17723D01* X34944Y17704D01* X34962Y17683D01* X34977Y17661D01* X34991Y17637D01* X35002Y17613D01* X35011Y17587D01* X35015Y17579D01* X35019Y17572D01* X35025Y17565D01* X35032Y17560D01* X35040Y17556D01* X35048Y17553D01* X35057Y17552D01* X35065Y17552D01* X35074Y17554D01* X35082Y17557D01* X35089Y17562D01* X35096Y17568D01* X35101Y17575D01* X35104Y17580D01* Y17428D01* G37* G36* Y40000D02*X40000D01* Y0D01* X35104D01* Y1165D01* X35129Y1183D01* X35157Y1207D01* X35182Y1232D01* X35205Y1260D01* X35225Y1290D01* X35243Y1322D01* X35257Y1355D01* X35269Y1389D01* X35271Y1398D01* X35271Y1407D01* X35270Y1415D01* X35267Y1423D01* X35262Y1431D01* X35257Y1438D01* X35250Y1444D01* X35243Y1448D01* X35235Y1451D01* X35226Y1453D01* X35217Y1453D01* X35209Y1452D01* X35201Y1449D01* X35193Y1445D01* X35186Y1439D01* X35180Y1433D01* X35176Y1425D01* X35173Y1417D01* X35164Y1391D01* X35153Y1366D01* X35140Y1343D01* X35125Y1320D01* X35108Y1299D01* X35104Y1295D01* Y1704D01* X35104Y1704D01* X35122Y1683D01* X35137Y1661D01* X35151Y1637D01* X35162Y1613D01* X35171Y1587D01* X35175Y1579D01* X35179Y1572D01* X35185Y1565D01* X35192Y1560D01* X35200Y1556D01* X35208Y1553D01* X35217Y1552D01* X35225Y1552D01* X35234Y1554D01* X35242Y1557D01* X35249Y1562D01* X35256Y1568D01* X35261Y1575D01* X35265Y1582D01* X35268Y1591D01* X35269Y1599D01* X35269Y1608D01* X35267Y1617D01* X35255Y1651D01* X35240Y1683D01* X35222Y1715D01* X35201Y1744D01* X35177Y1772D01* X35152Y1797D01* X35124Y1820D01* X35104Y1834D01* Y3180D01* X35109Y3183D01* X35137Y3207D01* X35162Y3232D01* X35185Y3260D01* X35205Y3290D01* X35223Y3322D01* X35237Y3355D01* X35249Y3389D01* X35251Y3398D01* X35251Y3407D01* X35250Y3415D01* X35247Y3423D01* X35242Y3431D01* X35237Y3438D01* X35230Y3444D01* X35223Y3448D01* X35215Y3451D01* X35206Y3453D01* X35197Y3453D01* X35189Y3452D01* X35181Y3449D01* X35173Y3445D01* X35166Y3439D01* X35160Y3433D01* X35156Y3425D01* X35153Y3417D01* X35144Y3391D01* X35133Y3366D01* X35120Y3343D01* X35105Y3320D01* X35104Y3319D01* Y3680D01* X35117Y3661D01* X35131Y3637D01* X35142Y3613D01* X35151Y3587D01* X35155Y3579D01* X35159Y3572D01* X35165Y3565D01* X35172Y3560D01* X35180Y3556D01* X35188Y3553D01* X35197Y3552D01* X35205Y3552D01* X35214Y3554D01* X35222Y3557D01* X35229Y3562D01* X35236Y3568D01* X35241Y3575D01* X35245Y3582D01* X35248Y3591D01* X35249Y3599D01* X35249Y3608D01* X35247Y3617D01* X35235Y3651D01* X35220Y3683D01* X35202Y3715D01* X35181Y3744D01* X35157Y3772D01* X35132Y3797D01* X35104Y3820D01* Y5196D01* X35117Y5207D01* X35142Y5232D01* X35165Y5260D01* X35185Y5290D01* X35203Y5322D01* X35217Y5355D01* X35229Y5389D01* X35231Y5398D01* X35231Y5407D01* X35230Y5415D01* X35227Y5423D01* X35222Y5431D01* X35217Y5438D01* X35210Y5444D01* X35203Y5448D01* X35195Y5451D01* X35186Y5453D01* X35177Y5453D01* X35169Y5452D01* X35161Y5449D01* X35153Y5445D01* X35146Y5439D01* X35140Y5433D01* X35136Y5425D01* X35133Y5417D01* X35124Y5391D01* X35113Y5366D01* X35104Y5350D01* Y5650D01* X35111Y5637D01* X35122Y5613D01* X35131Y5587D01* X35135Y5579D01* X35139Y5572D01* X35145Y5565D01* X35152Y5560D01* X35160Y5556D01* X35168Y5553D01* X35177Y5552D01* X35185Y5552D01* X35194Y5554D01* X35202Y5557D01* X35209Y5562D01* X35216Y5568D01* X35221Y5575D01* X35225Y5582D01* X35228Y5591D01* X35229Y5599D01* X35229Y5608D01* X35227Y5617D01* X35215Y5651D01* X35200Y5683D01* X35182Y5715D01* X35161Y5744D01* X35137Y5772D01* X35112Y5797D01* X35104Y5804D01* Y7214D01* X35122Y7232D01* X35145Y7260D01* X35165Y7290D01* X35183Y7322D01* X35197Y7355D01* X35209Y7389D01* X35211Y7398D01* X35211Y7407D01* X35210Y7415D01* X35207Y7423D01* X35202Y7431D01* X35197Y7438D01* X35190Y7444D01* X35183Y7448D01* X35175Y7451D01* X35166Y7453D01* X35157Y7453D01* X35149Y7452D01* X35141Y7449D01* X35133Y7445D01* X35126Y7439D01* X35120Y7433D01* X35116Y7425D01* X35113Y7417D01* X35104Y7391D01* X35104Y7391D01* Y7608D01* X35111Y7587D01* X35115Y7579D01* X35119Y7572D01* X35125Y7565D01* X35132Y7560D01* X35140Y7556D01* X35148Y7553D01* X35157Y7552D01* X35165Y7552D01* X35174Y7554D01* X35182Y7557D01* X35189Y7562D01* X35196Y7568D01* X35201Y7575D01* X35205Y7582D01* X35208Y7591D01* X35209Y7599D01* X35209Y7608D01* X35207Y7617D01* X35195Y7651D01* X35180Y7683D01* X35162Y7715D01* X35141Y7744D01* X35117Y7772D01* X35104Y7785D01* Y9235D01* X35125Y9260D01* X35145Y9290D01* X35163Y9322D01* X35177Y9355D01* X35189Y9389D01* X35191Y9398D01* X35191Y9407D01* X35190Y9415D01* X35187Y9423D01* X35182Y9431D01* X35177Y9438D01* X35170Y9444D01* X35163Y9448D01* X35155Y9451D01* X35146Y9453D01* X35137Y9453D01* X35129Y9452D01* X35121Y9449D01* X35113Y9445D01* X35106Y9439D01* X35104Y9437D01* Y9567D01* X35105Y9565D01* X35112Y9560D01* X35120Y9556D01* X35128Y9553D01* X35137Y9552D01* X35145Y9552D01* X35154Y9554D01* X35162Y9557D01* X35169Y9562D01* X35176Y9568D01* X35181Y9575D01* X35185Y9582D01* X35188Y9591D01* X35189Y9599D01* X35189Y9608D01* X35187Y9617D01* X35175Y9651D01* X35160Y9683D01* X35142Y9715D01* X35121Y9744D01* X35104Y9764D01* Y11259D01* X35105Y11260D01* X35125Y11290D01* X35143Y11322D01* X35157Y11355D01* X35169Y11389D01* X35171Y11398D01* X35171Y11407D01* X35170Y11415D01* X35167Y11423D01* X35162Y11431D01* X35157Y11438D01* X35150Y11444D01* X35143Y11448D01* X35135Y11451D01* X35126Y11453D01* X35117Y11453D01* X35109Y11452D01* X35104Y11450D01* Y11555D01* X35108Y11553D01* X35117Y11552D01* X35125Y11552D01* X35134Y11554D01* X35142Y11557D01* X35149Y11562D01* X35156Y11568D01* X35161Y11575D01* X35165Y11582D01* X35168Y11591D01* X35169Y11599D01* X35169Y11608D01* X35167Y11617D01* X35155Y11651D01* X35140Y11683D01* X35122Y11715D01* X35104Y11740D01* Y13288D01* X35105Y13290D01* X35123Y13322D01* X35137Y13355D01* X35149Y13389D01* X35151Y13398D01* X35151Y13407D01* X35150Y13415D01* X35147Y13423D01* X35142Y13431D01* X35137Y13438D01* X35130Y13444D01* X35123Y13448D01* X35115Y13451D01* X35106Y13453D01* X35104D01* Y13552D01* X35105D01* X35114Y13554D01* X35122Y13557D01* X35129Y13562D01* X35136Y13568D01* X35141Y13575D01* X35145Y13582D01* X35148Y13591D01* X35149Y13599D01* X35149Y13608D01* X35147Y13617D01* X35135Y13651D01* X35120Y13683D01* X35104Y13711D01* Y15324D01* X35117Y15355D01* X35129Y15389D01* X35131Y15398D01* X35131Y15407D01* X35130Y15415D01* X35127Y15423D01* X35122Y15431D01* X35117Y15438D01* X35110Y15444D01* X35104Y15447D01* Y15559D01* X35109Y15562D01* X35116Y15568D01* X35121Y15575D01* X35125Y15582D01* X35128Y15591D01* X35129Y15599D01* X35129Y15608D01* X35127Y15617D01* X35115Y15651D01* X35104Y15674D01* Y17374D01* X35109Y17389D01* X35111Y17398D01* X35111Y17407D01* X35110Y17415D01* X35107Y17423D01* X35104Y17428D01* Y17580D01* X35105Y17582D01* X35108Y17591D01* X35109Y17599D01* X35109Y17608D01* X35107Y17617D01* X35104Y17625D01* Y40000D01* G37* G54D12*X665Y23500D03* X685Y21500D03* X705Y19500D03* X725Y17500D03* X745Y15500D03* X765Y13500D03* X785Y11500D03* X805Y9500D03* X825Y7500D03* X845Y5500D03* X865Y3500D03* X885Y1500D03* X2725Y17500D03* X2745Y15500D03* X2765Y13500D03* X2785Y11500D03* X2805Y9500D03* X2825Y7500D03* X2845Y5500D03* X2865Y3500D03* X2885Y1500D03* X4665Y23500D03* X4685Y21500D03* X4705Y19500D03* X4725Y17500D03* X4745Y15500D03* X4765Y13500D03* X4785Y11500D03* X4805Y9500D03* X4825Y7500D03* X4845Y5500D03* X4865Y3500D03* X4885Y1500D03* X6665Y23500D03* X6685Y21500D03* X6705Y19500D03* X6725Y17500D03* X6745Y15500D03* X6765Y13500D03* X6785Y11500D03* X6805Y9500D03* X6825Y7500D03* X6845Y5500D03* X6865Y3500D03* X6885Y1500D03* X8705Y19500D03* X8725Y17500D03* X8745Y15500D03* X8765Y13500D03* X8785Y11500D03* X8805Y9500D03* X8825Y7500D03* X8845Y5500D03* X8865Y3500D03* X8885Y1500D03* X645Y25500D03* X2645D03* X2605Y29500D03* X2625Y27500D03* X2665Y23500D03* X2685Y21500D03* X2705Y19500D03* X6585Y31500D03* X6605Y29500D03* X6625Y27500D03* X6645Y25500D03* X8585Y31500D03* X8605Y29500D03* X8625Y27500D03* X8645Y25500D03* X8665Y23500D03* X8685Y21500D03* X10645Y25500D03* X10665Y23500D03* X10685Y21500D03* X10705Y19500D03* X10725Y17500D03* X10745Y15500D03* X10765Y13500D03* X10785Y11500D03* X10805Y9500D03* X10825Y7500D03* X10845Y5500D03* X10865Y3500D03* X10885Y1500D03* X12705Y19500D03* X12725Y17500D03* X12745Y15500D03* X12765Y13500D03* X12785Y11500D03* X12805Y9500D03* X12825Y7500D03* X12845Y5500D03* X12865Y3500D03* X12885Y1500D03* X14665Y23500D03* X14685Y21500D03* X14705Y19500D03* X14725Y17500D03* X14745Y15500D03* X14765Y13500D03* X14785Y11500D03* X14805Y9500D03* X14825Y7500D03* X14845Y5500D03* X14865Y3500D03* X14885Y1500D03* X16665Y23500D03* X16685Y21500D03* X16705Y19500D03* X16725Y17500D03* X16745Y15500D03* X16765Y13500D03* X16785Y11500D03* X16805Y9500D03* X16825Y7500D03* X16845Y5500D03* X16865Y3500D03* X16885Y1500D03* X10565Y33500D03* X10585Y31500D03* X10605Y29500D03* X10625Y27500D03* X12605Y29500D03* X12625Y27500D03* X12645Y25500D03* X12665Y23500D03* X12685Y21500D03* X18665Y23500D03* X18685Y21500D03* X18705Y19500D03* X18725Y17500D03* X18745Y15500D03* X18765Y13500D03* X18785Y11500D03* X18805Y9500D03* X18825Y7500D03* X18845Y5500D03* X18865Y3500D03* X18885Y1500D03* X18585Y31500D03* X18605Y29500D03* X18625Y27500D03* X18645Y25500D03* X20545Y35500D03* X20565Y33500D03* X20585Y31500D03* X20605Y29500D03* X20625Y27500D03* X20645Y25500D03* X20665Y23500D03* X20685Y21500D03* X20705Y19500D03* X20725Y17500D03* X20745Y15500D03* X20765Y13500D03* X20785Y11500D03* X20805Y9500D03* X20825Y7500D03* X20845Y5500D03* X20865Y3500D03* X20885Y1500D03* X565Y33500D03* X585Y31500D03* X605Y29500D03* X625Y27500D03* X505Y39500D03* X525Y37500D03* X545Y35500D03* X2545D03* X2565Y33500D03* X2585Y31500D03* X2505Y39500D03* X4505D03* X4545Y35500D03* X4565Y33500D03* X4585Y31500D03* X4605Y29500D03* X4625Y27500D03* X4645Y25500D03* X2525Y37500D03* X4525D03* X6505Y39500D03* X6525Y37500D03* X6545Y35500D03* X6565Y33500D03* X8505Y39500D03* X8525Y37500D03* X8545Y35500D03* X8565Y33500D03* X10505Y39500D03* X10525Y37500D03* X10545Y35500D03* X12505Y39500D03* X12525Y37500D03* X14525D03* X12545Y35500D03* X12565Y33500D03* X12585Y31500D03* X14505Y39500D03* X14545Y35500D03* X14565Y33500D03* X14585Y31500D03* X14605Y29500D03* X14625Y27500D03* X14645Y25500D03* X16505Y39500D03* X16525Y37500D03* X16545Y35500D03* X16565Y33500D03* X16585Y31500D03* X16605Y29500D03* X16625Y27500D03* X16645Y25500D03* X18505Y39500D03* X18525Y37500D03* X18545Y35500D03* X18565Y33500D03* X20505Y39500D03* X20525Y37500D03* X22505Y39500D03* X22525Y37500D03* X22545Y35500D03* X22565Y33500D03* X22585Y31500D03* X22605Y29500D03* X22625Y27500D03* X22645Y25500D03* X22665Y23500D03* X24505Y39500D03* X24525Y37500D03* X24545Y35500D03* X26505Y39500D03* X26525Y37500D03* X28505Y39500D03* X22685Y21500D03* X22705Y19500D03* X22725Y17500D03* X22745Y15500D03* X22765Y13500D03* X22785Y11500D03* X22805Y9500D03* X22825Y7500D03* X22845Y5500D03* X22865Y3500D03* X22885Y1500D03* X24665Y23500D03* X24685Y21500D03* X24705Y19500D03* X24725Y17500D03* X24745Y15500D03* X24765Y13500D03* X24785Y11500D03* X24805Y9500D03* X24825Y7500D03* X24845Y5500D03* X24865Y3500D03* X24885Y1500D03* X26705Y19500D03* X26725Y17500D03* X26745Y15500D03* X26765Y13500D03* X26785Y11500D03* X26805Y9500D03* X26825Y7500D03* X26845Y5500D03* X26865Y3500D03* X26885Y1500D03* X24565Y33500D03* X24585Y31500D03* X24605Y29500D03* X24625Y27500D03* X24645Y25500D03* X26645D03* X26605Y29500D03* X26625Y27500D03* X26665Y23500D03* X26685Y21500D03* X26545Y35500D03* X26565Y33500D03* X26585Y31500D03* X28585D03* X28605Y29500D03* X28625Y27500D03* X28645Y25500D03* X28665Y23500D03* X28525Y37500D03* X28545Y35500D03* X28565Y33500D03* X30505Y39500D03* X30525Y37500D03* X30545Y35500D03* X32505Y39500D03* X32525Y37500D03* X34525D03* X30565Y33500D03* X30585Y31500D03* X30605Y29500D03* X30625Y27500D03* X32605Y29500D03* X32625Y27500D03* X32645Y25500D03* X32665Y23500D03* X32685Y21500D03* X32545Y35500D03* X32565Y33500D03* X32585Y31500D03* X34505Y39500D03* X34545Y35500D03* X34565Y33500D03* X34585Y31500D03* X34605Y29500D03* X34625Y27500D03* X34645Y25500D03* X34665Y23500D03* X34685Y21500D03* X34705Y19500D03* X34725Y17500D03* X34745Y15500D03* X34765Y13500D03* X34785Y11500D03* X34805Y9500D03* X34825Y7500D03* X34845Y5500D03* X34865Y3500D03* X34885Y1500D03* X28685Y21500D03* X28705Y19500D03* X28725Y17500D03* X28745Y15500D03* X28765Y13500D03* X28785Y11500D03* X28805Y9500D03* X28825Y7500D03* X28845Y5500D03* X28865Y3500D03* X28885Y1500D03* X30645Y25500D03* X30665Y23500D03* X30685Y21500D03* X30705Y19500D03* X30725Y17500D03* X30745Y15500D03* X30765Y13500D03* X30785Y11500D03* X30805Y9500D03* X30825Y7500D03* X30845Y5500D03* X30865Y3500D03* X30885Y1500D03* X32705Y19500D03* X32725Y17500D03* X32745Y15500D03* X32765Y13500D03* X32785Y11500D03* X32805Y9500D03* X32825Y7500D03* X32845Y5500D03* X32865Y3500D03* X32885Y1500D03* G54D13*M02* gerbv-2.7.0/example/hellboard/README0000644000175000017500000000075113421555714016766 0ustar carstencarstenThe hellboard is a board created by DJ Delorie to exercise gEDA/PCB's ability to render thermals. It is included here since it may also exercise gerbv. The original .pcb file is included here. To generate the Gerber files, use this command: pcb -x gerber hellboard.pcb or open the PCB GUI, read the board in, and export Gerber files as usual. The original hellboard may be found in this e-mail: http://www.seul.org/pipermail/geda-dev/2007-December/004262.html -- 1.23.2008, SDB gerbv-2.7.0/example/hellboard/hellboard.front.gbr0000644000175000017500000635013313421555714021675 0ustar carstencarstenG04 start of page 2 for group 0 idx 0 G04 Title: (unknown), component * G04 Creator: pcb 1.99v * G04 CreationDate: Thu Jan 24 03:51:01 2008 UTC * G04 For: sdb * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 400000 400000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNFRONT*% %ADD11C,0.0200*% %ADD12C,0.0600*% %ADD13C,0.0280*% G54D11*G36* X0Y0D02*Y40000D01* X237D01* Y39692D01* X233Y39697D01* X226Y39703D01* X219Y39708D01* X211Y39711D01* X202Y39713D01* X194Y39714D01* X185Y39713D01* X177Y39710D01* X169Y39706D01* X162Y39701D01* X156Y39695D01* X151Y39687D01* X136Y39655D01* X123Y39621D01* X114Y39586D01* X108Y39550D01* X105Y39514D01* X105Y39478D01* X109Y39442D01* X115Y39407D01* X125Y39372D01* X139Y39338D01* X155Y39306D01* X159Y39299D01* X165Y39292D01* X173Y39287D01* X180Y39283D01* X189Y39281D01* X197Y39280D01* X206Y39281D01* X215Y39283D01* X223Y39286D01* X230Y39291D01* X236Y39297D01* X237Y39298D01* Y37709D01* X231Y37711D01* X222Y37713D01* X214Y37714D01* X205Y37713D01* X197Y37710D01* X189Y37706D01* X182Y37701D01* X176Y37695D01* X171Y37687D01* X156Y37655D01* X143Y37621D01* X134Y37586D01* X128Y37550D01* X125Y37514D01* X125Y37478D01* X129Y37442D01* X135Y37407D01* X145Y37372D01* X159Y37338D01* X175Y37306D01* X179Y37299D01* X185Y37292D01* X193Y37287D01* X200Y37283D01* X209Y37281D01* X217Y37280D01* X226Y37281D01* X235Y37283D01* X237Y37284D01* Y35714D01* X234Y35714D01* X225Y35713D01* X217Y35710D01* X209Y35706D01* X202Y35701D01* X196Y35695D01* X191Y35687D01* X176Y35655D01* X163Y35621D01* X154Y35586D01* X148Y35550D01* X145Y35514D01* X145Y35478D01* X149Y35442D01* X155Y35407D01* X165Y35372D01* X179Y35338D01* X195Y35306D01* X199Y35299D01* X205Y35292D01* X213Y35287D01* X220Y35283D01* X229Y35281D01* X237Y35280D01* Y33710D01* X229Y33706D01* X222Y33701D01* X216Y33695D01* X211Y33687D01* X196Y33655D01* X183Y33621D01* X174Y33586D01* X168Y33550D01* X165Y33514D01* X165Y33478D01* X169Y33442D01* X175Y33407D01* X185Y33372D01* X199Y33338D01* X215Y33306D01* X219Y33299D01* X225Y33292D01* X233Y33287D01* X237Y33285D01* Y31695D01* X236Y31695D01* X231Y31687D01* X216Y31655D01* X203Y31621D01* X194Y31586D01* X188Y31550D01* X185Y31514D01* X185Y31478D01* X189Y31442D01* X195Y31407D01* X205Y31372D01* X219Y31338D01* X235Y31306D01* X237Y31303D01* Y29656D01* X236Y29655D01* X223Y29621D01* X214Y29586D01* X208Y29550D01* X205Y29514D01* X205Y29478D01* X209Y29442D01* X215Y29407D01* X225Y29372D01* X237Y29343D01* Y27596D01* X234Y27586D01* X228Y27550D01* X225Y27514D01* X225Y27478D01* X229Y27442D01* X235Y27407D01* X237Y27403D01* Y0D01* X0D01* G37* G36* X237Y39365D02*X230Y39378D01* X220Y39404D01* X213Y39430D01* X208Y39456D01* X205Y39483D01* X205Y39511D01* X207Y39538D01* X212Y39564D01* X219Y39590D01* X228Y39616D01* X237Y39634D01* Y39365D01* G37* G36* Y37417D02*X233Y37430D01* X228Y37456D01* X225Y37483D01* X225Y37511D01* X227Y37538D01* X232Y37564D01* X237Y37583D01* Y37417D01* G37* G36* Y40000D02*X337D01* Y39862D01* X311Y39849D01* X303Y39845D01* X297Y39839D01* X292Y39832D01* X288Y39824D01* X286Y39815D01* X285Y39807D01* X285Y39798D01* X288Y39790D01* X291Y39782D01* X296Y39774D01* X302Y39768D01* X309Y39763D01* X317Y39759D01* X325Y39757D01* X334Y39756D01* X337Y39756D01* Y39240D01* X330Y39239D01* X321Y39237D01* X314Y39233D01* X307Y39228D01* X301Y39221D01* X296Y39214D01* X293Y39206D01* X291Y39197D01* X290Y39189D01* X291Y39180D01* X294Y39172D01* X298Y39164D01* X303Y39157D01* X309Y39151D01* X317Y39146D01* X337Y39137D01* Y37852D01* X331Y37849D01* X323Y37845D01* X317Y37839D01* X312Y37832D01* X308Y37824D01* X306Y37815D01* X305Y37807D01* X305Y37798D01* X308Y37790D01* X311Y37782D01* X316Y37774D01* X322Y37768D01* X329Y37763D01* X337Y37759D01* Y37234D01* X334Y37233D01* X327Y37228D01* X321Y37221D01* X316Y37214D01* X313Y37206D01* X311Y37197D01* X310Y37189D01* X311Y37180D01* X314Y37172D01* X318Y37164D01* X323Y37157D01* X329Y37151D01* X337Y37147D01* Y35838D01* X332Y35832D01* X328Y35824D01* X326Y35815D01* X325Y35807D01* X325Y35798D01* X328Y35790D01* X331Y35782D01* X336Y35774D01* X337Y35774D01* Y35215D01* X336Y35214D01* X333Y35206D01* X331Y35197D01* X330Y35189D01* X331Y35180D01* X334Y35172D01* X337Y35167D01* Y29692D01* X333Y29697D01* X326Y29703D01* X319Y29708D01* X311Y29711D01* X302Y29713D01* X294Y29714D01* X285Y29713D01* X277Y29710D01* X269Y29706D01* X262Y29701D01* X256Y29695D01* X251Y29687D01* X237Y29656D01* Y31303D01* X239Y31299D01* X245Y31292D01* X253Y31287D01* X260Y31283D01* X269Y31281D01* X277Y31280D01* X286Y31281D01* X295Y31283D01* X303Y31286D01* X310Y31291D01* X316Y31297D01* X321Y31304D01* X325Y31312D01* X327Y31320D01* X328Y31329D01* X328Y31338D01* X326Y31346D01* X322Y31354D01* X310Y31378D01* X300Y31404D01* X293Y31430D01* X288Y31456D01* X285Y31483D01* X285Y31511D01* X287Y31538D01* X292Y31564D01* X299Y31590D01* X308Y31616D01* X320Y31640D01* X323Y31649D01* X325Y31657D01* X325Y31666D01* X324Y31674D01* X322Y31683D01* X318Y31690D01* X313Y31697D01* X306Y31703D01* X299Y31708D01* X291Y31711D01* X282Y31713D01* X274Y31714D01* X265Y31713D01* X257Y31710D01* X249Y31706D01* X242Y31701D01* X237Y31695D01* Y33285D01* X240Y33283D01* X249Y33281D01* X257Y33280D01* X266Y33281D01* X275Y33283D01* X283Y33286D01* X290Y33291D01* X296Y33297D01* X301Y33304D01* X305Y33312D01* X307Y33320D01* X308Y33329D01* X308Y33338D01* X306Y33346D01* X302Y33354D01* X290Y33378D01* X280Y33404D01* X273Y33430D01* X268Y33456D01* X265Y33483D01* X265Y33511D01* X267Y33538D01* X272Y33564D01* X279Y33590D01* X288Y33616D01* X300Y33640D01* X303Y33649D01* X305Y33657D01* X305Y33666D01* X304Y33674D01* X302Y33683D01* X298Y33690D01* X293Y33697D01* X286Y33703D01* X279Y33708D01* X271Y33711D01* X262Y33713D01* X254Y33714D01* X245Y33713D01* X237Y33710D01* X237Y33710D01* Y35280D01* X237Y35280D01* X246Y35281D01* X255Y35283D01* X263Y35286D01* X270Y35291D01* X276Y35297D01* X281Y35304D01* X285Y35312D01* X287Y35320D01* X288Y35329D01* X288Y35338D01* X286Y35346D01* X282Y35354D01* X270Y35378D01* X260Y35404D01* X253Y35430D01* X248Y35456D01* X245Y35483D01* X245Y35511D01* X247Y35538D01* X252Y35564D01* X259Y35590D01* X268Y35616D01* X280Y35640D01* X283Y35649D01* X285Y35657D01* X285Y35666D01* X284Y35674D01* X282Y35683D01* X278Y35690D01* X273Y35697D01* X266Y35703D01* X259Y35708D01* X251Y35711D01* X242Y35713D01* X237Y35714D01* Y37284D01* X243Y37286D01* X250Y37291D01* X256Y37297D01* X261Y37304D01* X265Y37312D01* X267Y37320D01* X268Y37329D01* X268Y37338D01* X266Y37346D01* X262Y37354D01* X250Y37378D01* X240Y37404D01* X237Y37417D01* Y37583D01* X239Y37590D01* X248Y37616D01* X260Y37640D01* X263Y37649D01* X265Y37657D01* X265Y37666D01* X264Y37674D01* X262Y37683D01* X258Y37690D01* X253Y37697D01* X246Y37703D01* X239Y37708D01* X237Y37709D01* Y39298D01* X241Y39304D01* X245Y39312D01* X247Y39320D01* X248Y39329D01* X248Y39338D01* X246Y39346D01* X242Y39354D01* X237Y39365D01* Y39634D01* X240Y39640D01* X243Y39649D01* X245Y39657D01* X245Y39666D01* X244Y39674D01* X242Y39683D01* X238Y39690D01* X237Y39692D01* Y40000D01* G37* G36* Y29343D02*X239Y29338D01* X255Y29306D01* X259Y29299D01* X265Y29292D01* X273Y29287D01* X280Y29283D01* X289Y29281D01* X297Y29280D01* X306Y29281D01* X315Y29283D01* X323Y29286D01* X330Y29291D01* X336Y29297D01* X337Y29298D01* Y27709D01* X331Y27711D01* X322Y27713D01* X314Y27714D01* X305Y27713D01* X297Y27710D01* X289Y27706D01* X282Y27701D01* X276Y27695D01* X271Y27687D01* X256Y27655D01* X243Y27621D01* X237Y27596D01* Y29343D01* G37* G36* Y27403D02*X245Y27372D01* X259Y27338D01* X275Y27306D01* X279Y27299D01* X285Y27292D01* X293Y27287D01* X300Y27283D01* X309Y27281D01* X317Y27280D01* X326Y27281D01* X335Y27283D01* X337Y27284D01* Y25714D01* X334Y25714D01* X325Y25713D01* X317Y25710D01* X309Y25706D01* X302Y25701D01* X296Y25695D01* X291Y25687D01* X276Y25655D01* X263Y25621D01* X254Y25586D01* X248Y25550D01* X245Y25514D01* X245Y25478D01* X249Y25442D01* X255Y25407D01* X265Y25372D01* X279Y25338D01* X295Y25306D01* X299Y25299D01* X305Y25292D01* X313Y25287D01* X320Y25283D01* X329Y25281D01* X337Y25280D01* Y23710D01* X329Y23706D01* X322Y23701D01* X316Y23695D01* X311Y23687D01* X296Y23655D01* X283Y23621D01* X274Y23586D01* X268Y23550D01* X265Y23514D01* X265Y23478D01* X269Y23442D01* X275Y23407D01* X285Y23372D01* X299Y23338D01* X315Y23306D01* X319Y23299D01* X325Y23292D01* X333Y23287D01* X337Y23285D01* Y21695D01* X336Y21695D01* X331Y21687D01* X316Y21655D01* X303Y21621D01* X294Y21586D01* X288Y21550D01* X285Y21514D01* X285Y21478D01* X289Y21442D01* X295Y21407D01* X305Y21372D01* X319Y21338D01* X335Y21306D01* X337Y21303D01* Y19656D01* X336Y19655D01* X323Y19621D01* X314Y19586D01* X308Y19550D01* X305Y19514D01* X305Y19478D01* X309Y19442D01* X315Y19407D01* X325Y19372D01* X337Y19343D01* Y17596D01* X334Y17586D01* X328Y17550D01* X325Y17514D01* X325Y17478D01* X329Y17442D01* X335Y17407D01* X337Y17403D01* Y0D01* X237D01* Y27403D01* G37* G36* X337Y29365D02*X330Y29378D01* X320Y29404D01* X313Y29430D01* X308Y29456D01* X305Y29483D01* X305Y29511D01* X307Y29538D01* X312Y29564D01* X319Y29590D01* X328Y29616D01* X337Y29634D01* Y29365D01* G37* G36* Y27417D02*X333Y27430D01* X328Y27456D01* X325Y27483D01* X325Y27511D01* X327Y27538D01* X332Y27564D01* X337Y27583D01* Y27417D01* G37* G36* Y40000D02*X667D01* Y39865D01* X660Y39868D01* X626Y39881D01* X591Y39890D01* X555Y39896D01* X519Y39899D01* X483Y39899D01* X447Y39895D01* X411Y39889D01* X377Y39879D01* X343Y39866D01* X337Y39862D01* Y40000D01* G37* G36* Y39756D02*X343Y39756D01* X351Y39758D01* X359Y39762D01* X383Y39774D01* X409Y39784D01* X435Y39791D01* X461Y39796D01* X488Y39799D01* X515Y39799D01* X542Y39797D01* X569Y39793D01* X595Y39785D01* X621Y39776D01* X645Y39764D01* X653Y39761D01* X662Y39759D01* X667Y39759D01* Y39243D01* X666Y39243D01* X658Y39241D01* X650Y39237D01* X626Y39225D01* X600Y39215D01* X574Y39208D01* X548Y39203D01* X521Y39200D01* X494Y39200D01* X467Y39202D01* X440Y39207D01* X414Y39214D01* X388Y39223D01* X364Y39235D01* X356Y39238D01* X347Y39240D01* X338Y39240D01* X337Y39240D01* Y39756D01* G37* G36* Y39137D02*X349Y39131D01* X383Y39118D01* X418Y39109D01* X454Y39103D01* X490Y39100D01* X526Y39100D01* X562Y39104D01* X598Y39111D01* X632Y39121D01* X666Y39134D01* X667Y39134D01* Y37873D01* X646Y37881D01* X611Y37890D01* X575Y37896D01* X539Y37899D01* X503Y37899D01* X467Y37895D01* X431Y37889D01* X397Y37879D01* X363Y37866D01* X337Y37852D01* Y39137D01* G37* G36* Y37759D02*X337Y37759D01* X345Y37757D01* X354Y37756D01* X363Y37756D01* X371Y37758D01* X379Y37762D01* X403Y37774D01* X429Y37784D01* X455Y37791D01* X481Y37796D01* X508Y37799D01* X535Y37799D01* X562Y37797D01* X589Y37793D01* X615Y37785D01* X641Y37776D01* X665Y37764D01* X667Y37764D01* Y37236D01* X646Y37225D01* X620Y37215D01* X594Y37208D01* X568Y37203D01* X541Y37200D01* X514Y37200D01* X487Y37202D01* X460Y37207D01* X434Y37214D01* X408Y37223D01* X384Y37235D01* X376Y37238D01* X367Y37240D01* X358Y37240D01* X350Y37239D01* X341Y37237D01* X337Y37234D01* Y37759D01* G37* G36* Y37147D02*X337Y37146D01* X369Y37131D01* X403Y37118D01* X438Y37109D01* X474Y37103D01* X510Y37100D01* X546Y37100D01* X582Y37104D01* X618Y37111D01* X652Y37121D01* X667Y37126D01* Y35880D01* X666Y35881D01* X631Y35890D01* X595Y35896D01* X559Y35899D01* X523Y35899D01* X487Y35895D01* X451Y35889D01* X417Y35879D01* X383Y35866D01* X351Y35849D01* X343Y35845D01* X337Y35839D01* X337Y35838D01* Y37147D01* G37* G36* Y35774D02*X342Y35768D01* X349Y35763D01* X357Y35759D01* X365Y35757D01* X374Y35756D01* X383Y35756D01* X391Y35758D01* X399Y35762D01* X423Y35774D01* X449Y35784D01* X475Y35791D01* X501Y35796D01* X528Y35799D01* X555Y35799D01* X582Y35797D01* X609Y35793D01* X635Y35785D01* X661Y35776D01* X667Y35773D01* Y35226D01* X666Y35225D01* X640Y35215D01* X614Y35208D01* X588Y35203D01* X561Y35200D01* X534Y35200D01* X507Y35202D01* X480Y35207D01* X454Y35214D01* X428Y35223D01* X404Y35235D01* X396Y35238D01* X387Y35240D01* X378Y35240D01* X370Y35239D01* X361Y35237D01* X354Y35233D01* X347Y35228D01* X341Y35221D01* X337Y35215D01* Y35774D01* G37* G36* Y35167D02*X338Y35164D01* X343Y35157D01* X349Y35151D01* X357Y35146D01* X389Y35131D01* X417Y35121D01* Y33871D01* X403Y33866D01* X371Y33849D01* X363Y33845D01* X357Y33839D01* X352Y33832D01* X348Y33824D01* X346Y33815D01* X345Y33807D01* X345Y33798D01* X348Y33790D01* X351Y33782D01* X356Y33774D01* X362Y33768D01* X369Y33763D01* X377Y33759D01* X385Y33757D01* X394Y33756D01* X403Y33756D01* X411Y33758D01* X417Y33761D01* Y33238D01* X416Y33238D01* X407Y33240D01* X398Y33240D01* X390Y33239D01* X381Y33237D01* X374Y33233D01* X367Y33228D01* X361Y33221D01* X356Y33214D01* X353Y33206D01* X351Y33197D01* X350Y33189D01* X351Y33180D01* X354Y33172D01* X358Y33164D01* X363Y33157D01* X369Y33151D01* X377Y33146D01* X409Y33131D01* X417Y33128D01* Y31862D01* X391Y31849D01* X383Y31845D01* X377Y31839D01* X372Y31832D01* X368Y31824D01* X366Y31815D01* X365Y31807D01* X365Y31798D01* X368Y31790D01* X371Y31782D01* X376Y31774D01* X382Y31768D01* X389Y31763D01* X397Y31759D01* X405Y31757D01* X414Y31756D01* X417Y31756D01* Y31240D01* X410Y31239D01* X401Y31237D01* X394Y31233D01* X387Y31228D01* X381Y31221D01* X376Y31214D01* X373Y31206D01* X371Y31197D01* X370Y31189D01* X371Y31180D01* X374Y31172D01* X378Y31164D01* X383Y31157D01* X389Y31151D01* X397Y31146D01* X417Y31137D01* Y29852D01* X411Y29849D01* X403Y29845D01* X397Y29839D01* X392Y29832D01* X388Y29824D01* X386Y29815D01* X385Y29807D01* X385Y29798D01* X388Y29790D01* X391Y29782D01* X396Y29774D01* X402Y29768D01* X409Y29763D01* X417Y29759D01* Y29234D01* X414Y29233D01* X407Y29228D01* X401Y29221D01* X396Y29214D01* X393Y29206D01* X391Y29197D01* X390Y29189D01* X391Y29180D01* X394Y29172D01* X398Y29164D01* X403Y29157D01* X409Y29151D01* X417Y29147D01* Y27838D01* X412Y27832D01* X408Y27824D01* X406Y27815D01* X405Y27807D01* X405Y27798D01* X408Y27790D01* X411Y27782D01* X416Y27774D01* X417Y27774D01* Y27215D01* X416Y27214D01* X413Y27206D01* X411Y27197D01* X410Y27189D01* X411Y27180D01* X414Y27172D01* X417Y27167D01* Y21692D01* X413Y21697D01* X406Y21703D01* X399Y21708D01* X391Y21711D01* X382Y21713D01* X374Y21714D01* X365Y21713D01* X357Y21710D01* X349Y21706D01* X342Y21701D01* X337Y21695D01* Y23285D01* X340Y23283D01* X349Y23281D01* X357Y23280D01* X366Y23281D01* X375Y23283D01* X383Y23286D01* X390Y23291D01* X396Y23297D01* X401Y23304D01* X405Y23312D01* X407Y23320D01* X408Y23329D01* X408Y23338D01* X406Y23346D01* X402Y23354D01* X390Y23378D01* X380Y23404D01* X373Y23430D01* X368Y23456D01* X365Y23483D01* X365Y23511D01* X367Y23538D01* X372Y23564D01* X379Y23590D01* X388Y23616D01* X400Y23640D01* X403Y23649D01* X405Y23657D01* X405Y23666D01* X404Y23674D01* X402Y23683D01* X398Y23690D01* X393Y23697D01* X386Y23703D01* X379Y23708D01* X371Y23711D01* X362Y23713D01* X354Y23714D01* X345Y23713D01* X337Y23710D01* X337Y23710D01* Y25280D01* X337Y25280D01* X346Y25281D01* X355Y25283D01* X363Y25286D01* X370Y25291D01* X376Y25297D01* X381Y25304D01* X385Y25312D01* X387Y25320D01* X388Y25329D01* X388Y25338D01* X386Y25346D01* X382Y25354D01* X370Y25378D01* X360Y25404D01* X353Y25430D01* X348Y25456D01* X345Y25483D01* X345Y25511D01* X347Y25538D01* X352Y25564D01* X359Y25590D01* X368Y25616D01* X380Y25640D01* X383Y25649D01* X385Y25657D01* X385Y25666D01* X384Y25674D01* X382Y25683D01* X378Y25690D01* X373Y25697D01* X366Y25703D01* X359Y25708D01* X351Y25711D01* X342Y25713D01* X337Y25714D01* Y27284D01* X343Y27286D01* X350Y27291D01* X356Y27297D01* X361Y27304D01* X365Y27312D01* X367Y27320D01* X368Y27329D01* X368Y27338D01* X366Y27346D01* X362Y27354D01* X350Y27378D01* X340Y27404D01* X337Y27417D01* Y27583D01* X339Y27590D01* X348Y27616D01* X360Y27640D01* X363Y27649D01* X365Y27657D01* X365Y27666D01* X364Y27674D01* X362Y27683D01* X358Y27690D01* X353Y27697D01* X346Y27703D01* X339Y27708D01* X337Y27709D01* Y29298D01* X341Y29304D01* X345Y29312D01* X347Y29320D01* X348Y29329D01* X348Y29338D01* X346Y29346D01* X342Y29354D01* X337Y29365D01* Y29634D01* X340Y29640D01* X343Y29649D01* X345Y29657D01* X345Y29666D01* X344Y29674D01* X342Y29683D01* X338Y29690D01* X337Y29692D01* Y35167D01* G37* G36* X417Y0D02*X337D01* Y17403D01* X345Y17372D01* X359Y17338D01* X375Y17306D01* X379Y17299D01* X385Y17292D01* X393Y17287D01* X400Y17283D01* X409Y17281D01* X417Y17280D01* Y15710D01* X409Y15706D01* X402Y15701D01* X396Y15695D01* X391Y15687D01* X376Y15655D01* X363Y15621D01* X354Y15586D01* X348Y15550D01* X345Y15514D01* X345Y15478D01* X349Y15442D01* X355Y15407D01* X365Y15372D01* X379Y15338D01* X395Y15306D01* X399Y15299D01* X405Y15292D01* X413Y15287D01* X417Y15285D01* Y13695D01* X416Y13695D01* X411Y13687D01* X396Y13655D01* X383Y13621D01* X374Y13586D01* X368Y13550D01* X365Y13514D01* X365Y13478D01* X369Y13442D01* X375Y13407D01* X385Y13372D01* X399Y13338D01* X415Y13306D01* X417Y13303D01* Y11656D01* X416Y11655D01* X403Y11621D01* X394Y11586D01* X388Y11550D01* X385Y11514D01* X385Y11478D01* X389Y11442D01* X395Y11407D01* X405Y11372D01* X417Y11343D01* Y9596D01* X414Y9586D01* X408Y9550D01* X405Y9514D01* X405Y9478D01* X409Y9442D01* X415Y9407D01* X417Y9403D01* Y0D01* G37* G36* Y17714D02*X414Y17714D01* X405Y17713D01* X397Y17710D01* X389Y17706D01* X382Y17701D01* X376Y17695D01* X371Y17687D01* X356Y17655D01* X343Y17621D01* X337Y17596D01* Y19343D01* X339Y19338D01* X355Y19306D01* X359Y19299D01* X365Y19292D01* X373Y19287D01* X380Y19283D01* X389Y19281D01* X397Y19280D01* X406Y19281D01* X415Y19283D01* X417Y19284D01* Y17714D01* G37* G36* Y19417D02*X413Y19430D01* X408Y19456D01* X405Y19483D01* X405Y19511D01* X407Y19538D01* X412Y19564D01* X417Y19583D01* Y19417D01* G37* G36* Y19709D02*X411Y19711D01* X402Y19713D01* X394Y19714D01* X385Y19713D01* X377Y19710D01* X369Y19706D01* X362Y19701D01* X356Y19695D01* X351Y19687D01* X337Y19656D01* Y21303D01* X339Y21299D01* X345Y21292D01* X353Y21287D01* X360Y21283D01* X369Y21281D01* X377Y21280D01* X386Y21281D01* X395Y21283D01* X403Y21286D01* X410Y21291D01* X416Y21297D01* X417Y21298D01* Y19709D01* G37* G36* Y21365D02*X410Y21378D01* X400Y21404D01* X393Y21430D01* X388Y21456D01* X385Y21483D01* X385Y21511D01* X387Y21538D01* X392Y21564D01* X399Y21590D01* X408Y21616D01* X417Y21634D01* Y21365D01* G37* G36* Y35121D02*X423Y35118D01* X458Y35109D01* X494Y35103D01* X530Y35100D01* X566Y35100D01* X602Y35104D01* X638Y35111D01* X667Y35119D01* Y33886D01* X651Y33890D01* X615Y33896D01* X579Y33899D01* X543Y33899D01* X507Y33895D01* X471Y33889D01* X437Y33879D01* X417Y33871D01* Y35121D01* G37* G36* Y33761D02*X419Y33762D01* X443Y33774D01* X469Y33784D01* X495Y33791D01* X521Y33796D01* X548Y33799D01* X575Y33799D01* X602Y33797D01* X629Y33793D01* X655Y33785D01* X667Y33781D01* Y33218D01* X660Y33215D01* X634Y33208D01* X608Y33203D01* X581Y33200D01* X554Y33200D01* X527Y33202D01* X500Y33207D01* X474Y33214D01* X448Y33223D01* X424Y33235D01* X417Y33238D01* Y33761D01* G37* G36* Y33128D02*X443Y33118D01* X478Y33109D01* X514Y33103D01* X550Y33100D01* X586Y33100D01* X622Y33104D01* X658Y33111D01* X667Y33113D01* Y31891D01* X635Y31896D01* X599Y31899D01* X563Y31899D01* X527Y31895D01* X491Y31889D01* X457Y31879D01* X423Y31866D01* X417Y31862D01* Y33128D01* G37* G36* Y31756D02*X423Y31756D01* X431Y31758D01* X439Y31762D01* X463Y31774D01* X489Y31784D01* X515Y31791D01* X541Y31796D01* X568Y31799D01* X595Y31799D01* X622Y31797D01* X649Y31793D01* X667Y31788D01* Y31212D01* X654Y31208D01* X628Y31203D01* X601Y31200D01* X574Y31200D01* X547Y31202D01* X520Y31207D01* X494Y31214D01* X468Y31223D01* X444Y31235D01* X436Y31238D01* X427Y31240D01* X418Y31240D01* X417Y31240D01* Y31756D01* G37* G36* Y31137D02*X429Y31131D01* X463Y31118D01* X498Y31109D01* X534Y31103D01* X570Y31100D01* X606Y31100D01* X642Y31104D01* X667Y31109D01* Y29894D01* X655Y29896D01* X619Y29899D01* X583Y29899D01* X547Y29895D01* X511Y29889D01* X477Y29879D01* X443Y29866D01* X417Y29852D01* Y31137D01* G37* G36* Y29759D02*X417Y29759D01* X425Y29757D01* X434Y29756D01* X443Y29756D01* X451Y29758D01* X459Y29762D01* X483Y29774D01* X509Y29784D01* X535Y29791D01* X561Y29796D01* X588Y29799D01* X615Y29799D01* X642Y29797D01* X667Y29793D01* Y29206D01* X648Y29203D01* X621Y29200D01* X594Y29200D01* X567Y29202D01* X540Y29207D01* X514Y29214D01* X488Y29223D01* X464Y29235D01* X456Y29238D01* X447Y29240D01* X438Y29240D01* X430Y29239D01* X421Y29237D01* X417Y29234D01* Y29759D01* G37* G36* Y29147D02*X417Y29146D01* X449Y29131D01* X483Y29118D01* X518Y29109D01* X554Y29103D01* X590Y29100D01* X626Y29100D01* X662Y29104D01* X667Y29105D01* Y27897D01* X639Y27899D01* X603Y27899D01* X567Y27895D01* X531Y27889D01* X497Y27879D01* X463Y27866D01* X431Y27849D01* X423Y27845D01* X417Y27839D01* X417Y27838D01* Y29147D01* G37* G36* Y27774D02*X422Y27768D01* X429Y27763D01* X437Y27759D01* X445Y27757D01* X454Y27756D01* X463Y27756D01* X471Y27758D01* X479Y27762D01* X503Y27774D01* X529Y27784D01* X555Y27791D01* X581Y27796D01* X608Y27799D01* X635Y27799D01* X662Y27797D01* X667Y27796D01* Y27203D01* X641Y27200D01* X614Y27200D01* X587Y27202D01* X560Y27207D01* X534Y27214D01* X508Y27223D01* X484Y27235D01* X476Y27238D01* X467Y27240D01* X458Y27240D01* X450Y27239D01* X441Y27237D01* X434Y27233D01* X427Y27228D01* X421Y27221D01* X417Y27215D01* Y27774D01* G37* G36* Y27167D02*X418Y27164D01* X423Y27157D01* X429Y27151D01* X437Y27146D01* X469Y27131D01* X497Y27121D01* Y25871D01* X483Y25866D01* X451Y25849D01* X443Y25845D01* X437Y25839D01* X432Y25832D01* X428Y25824D01* X426Y25815D01* X425Y25807D01* X425Y25798D01* X428Y25790D01* X431Y25782D01* X436Y25774D01* X442Y25768D01* X449Y25763D01* X457Y25759D01* X465Y25757D01* X474Y25756D01* X483Y25756D01* X491Y25758D01* X497Y25761D01* Y25238D01* X496Y25238D01* X487Y25240D01* X478Y25240D01* X470Y25239D01* X461Y25237D01* X454Y25233D01* X447Y25228D01* X441Y25221D01* X436Y25214D01* X433Y25206D01* X431Y25197D01* X430Y25189D01* X431Y25180D01* X434Y25172D01* X438Y25164D01* X443Y25157D01* X449Y25151D01* X457Y25146D01* X489Y25131D01* X497Y25128D01* Y23862D01* X471Y23849D01* X463Y23845D01* X457Y23839D01* X452Y23832D01* X448Y23824D01* X446Y23815D01* X445Y23807D01* X445Y23798D01* X448Y23790D01* X451Y23782D01* X456Y23774D01* X462Y23768D01* X469Y23763D01* X477Y23759D01* X485Y23757D01* X494Y23756D01* X497Y23756D01* Y23240D01* X490Y23239D01* X481Y23237D01* X474Y23233D01* X467Y23228D01* X461Y23221D01* X456Y23214D01* X453Y23206D01* X451Y23197D01* X450Y23189D01* X451Y23180D01* X454Y23172D01* X458Y23164D01* X463Y23157D01* X469Y23151D01* X477Y23146D01* X497Y23137D01* Y21852D01* X491Y21849D01* X483Y21845D01* X477Y21839D01* X472Y21832D01* X468Y21824D01* X466Y21815D01* X465Y21807D01* X465Y21798D01* X468Y21790D01* X471Y21782D01* X476Y21774D01* X482Y21768D01* X489Y21763D01* X497Y21759D01* Y21234D01* X494Y21233D01* X487Y21228D01* X481Y21221D01* X476Y21214D01* X473Y21206D01* X471Y21197D01* X470Y21189D01* X471Y21180D01* X474Y21172D01* X478Y21164D01* X483Y21157D01* X489Y21151D01* X497Y21147D01* Y19838D01* X492Y19832D01* X488Y19824D01* X486Y19815D01* X485Y19807D01* X485Y19798D01* X488Y19790D01* X491Y19782D01* X496Y19774D01* X497Y19774D01* Y19215D01* X496Y19214D01* X493Y19206D01* X491Y19197D01* X490Y19189D01* X491Y19180D01* X494Y19172D01* X497Y19167D01* Y13692D01* X493Y13697D01* X486Y13703D01* X479Y13708D01* X471Y13711D01* X462Y13713D01* X454Y13714D01* X445Y13713D01* X437Y13710D01* X429Y13706D01* X422Y13701D01* X417Y13695D01* Y15285D01* X420Y15283D01* X429Y15281D01* X437Y15280D01* X446Y15281D01* X455Y15283D01* X463Y15286D01* X470Y15291D01* X476Y15297D01* X481Y15304D01* X485Y15312D01* X487Y15320D01* X488Y15329D01* X488Y15338D01* X486Y15346D01* X482Y15354D01* X470Y15378D01* X460Y15404D01* X453Y15430D01* X448Y15456D01* X445Y15483D01* X445Y15511D01* X447Y15538D01* X452Y15564D01* X459Y15590D01* X468Y15616D01* X480Y15640D01* X483Y15649D01* X485Y15657D01* X485Y15666D01* X484Y15674D01* X482Y15683D01* X478Y15690D01* X473Y15697D01* X466Y15703D01* X459Y15708D01* X451Y15711D01* X442Y15713D01* X434Y15714D01* X425Y15713D01* X417Y15710D01* X417Y15710D01* Y17280D01* X417Y17280D01* X426Y17281D01* X435Y17283D01* X443Y17286D01* X450Y17291D01* X456Y17297D01* X461Y17304D01* X465Y17312D01* X467Y17320D01* X468Y17329D01* X468Y17338D01* X466Y17346D01* X462Y17354D01* X450Y17378D01* X440Y17404D01* X433Y17430D01* X428Y17456D01* X425Y17483D01* X425Y17511D01* X427Y17538D01* X432Y17564D01* X439Y17590D01* X448Y17616D01* X460Y17640D01* X463Y17649D01* X465Y17657D01* X465Y17666D01* X464Y17674D01* X462Y17683D01* X458Y17690D01* X453Y17697D01* X446Y17703D01* X439Y17708D01* X431Y17711D01* X422Y17713D01* X417Y17714D01* Y19284D01* X423Y19286D01* X430Y19291D01* X436Y19297D01* X441Y19304D01* X445Y19312D01* X447Y19320D01* X448Y19329D01* X448Y19338D01* X446Y19346D01* X442Y19354D01* X430Y19378D01* X420Y19404D01* X417Y19417D01* Y19583D01* X419Y19590D01* X428Y19616D01* X440Y19640D01* X443Y19649D01* X445Y19657D01* X445Y19666D01* X444Y19674D01* X442Y19683D01* X438Y19690D01* X433Y19697D01* X426Y19703D01* X419Y19708D01* X417Y19709D01* Y21298D01* X421Y21304D01* X425Y21312D01* X427Y21320D01* X428Y21329D01* X428Y21338D01* X426Y21346D01* X422Y21354D01* X417Y21365D01* Y21634D01* X420Y21640D01* X423Y21649D01* X425Y21657D01* X425Y21666D01* X424Y21674D01* X422Y21683D01* X418Y21690D01* X417Y21692D01* Y27167D01* G37* G36* X497Y0D02*X417D01* Y9403D01* X425Y9372D01* X439Y9338D01* X455Y9306D01* X459Y9299D01* X465Y9292D01* X473Y9287D01* X480Y9283D01* X489Y9281D01* X497Y9280D01* Y7710D01* X489Y7706D01* X482Y7701D01* X476Y7695D01* X471Y7687D01* X456Y7655D01* X443Y7621D01* X434Y7586D01* X428Y7550D01* X425Y7514D01* X425Y7478D01* X429Y7442D01* X435Y7407D01* X445Y7372D01* X459Y7338D01* X475Y7306D01* X479Y7299D01* X485Y7292D01* X493Y7287D01* X497Y7285D01* Y5695D01* X496Y5695D01* X491Y5687D01* X476Y5655D01* X463Y5621D01* X454Y5586D01* X448Y5550D01* X445Y5514D01* X445Y5478D01* X449Y5442D01* X455Y5407D01* X465Y5372D01* X479Y5338D01* X495Y5306D01* X497Y5303D01* Y3656D01* X496Y3655D01* X483Y3621D01* X474Y3586D01* X468Y3550D01* X465Y3514D01* X465Y3478D01* X469Y3442D01* X475Y3407D01* X485Y3372D01* X497Y3343D01* Y1596D01* X494Y1586D01* X488Y1550D01* X485Y1514D01* X485Y1478D01* X489Y1442D01* X495Y1407D01* X497Y1403D01* Y0D01* G37* G36* Y9714D02*X494Y9714D01* X485Y9713D01* X477Y9710D01* X469Y9706D01* X462Y9701D01* X456Y9695D01* X451Y9687D01* X436Y9655D01* X423Y9621D01* X417Y9596D01* Y11343D01* X419Y11338D01* X435Y11306D01* X439Y11299D01* X445Y11292D01* X453Y11287D01* X460Y11283D01* X469Y11281D01* X477Y11280D01* X486Y11281D01* X495Y11283D01* X497Y11284D01* Y9714D01* G37* G36* Y11417D02*X493Y11430D01* X488Y11456D01* X485Y11483D01* X485Y11511D01* X487Y11538D01* X492Y11564D01* X497Y11583D01* Y11417D01* G37* G36* Y11709D02*X491Y11711D01* X482Y11713D01* X474Y11714D01* X465Y11713D01* X457Y11710D01* X449Y11706D01* X442Y11701D01* X436Y11695D01* X431Y11687D01* X417Y11656D01* Y13303D01* X419Y13299D01* X425Y13292D01* X433Y13287D01* X440Y13283D01* X449Y13281D01* X457Y13280D01* X466Y13281D01* X475Y13283D01* X483Y13286D01* X490Y13291D01* X496Y13297D01* X497Y13298D01* Y11709D01* G37* G36* Y13365D02*X490Y13378D01* X480Y13404D01* X473Y13430D01* X468Y13456D01* X465Y13483D01* X465Y13511D01* X467Y13538D01* X472Y13564D01* X479Y13590D01* X488Y13616D01* X497Y13634D01* Y13365D01* G37* G36* Y27121D02*X503Y27118D01* X538Y27109D01* X574Y27103D01* X610Y27100D01* X646Y27100D01* X667Y27102D01* Y25899D01* X659Y25899D01* X623Y25899D01* X587Y25895D01* X551Y25889D01* X517Y25879D01* X497Y25871D01* Y27121D01* G37* G36* Y25761D02*X499Y25762D01* X523Y25774D01* X549Y25784D01* X575Y25791D01* X601Y25796D01* X628Y25799D01* X655Y25799D01* X667Y25798D01* Y25201D01* X661Y25200D01* X634Y25200D01* X607Y25202D01* X580Y25207D01* X554Y25214D01* X528Y25223D01* X504Y25235D01* X497Y25238D01* Y25761D01* G37* G36* Y25128D02*X523Y25118D01* X558Y25109D01* X594Y25103D01* X630Y25100D01* X666Y25100D01* X667Y25100D01* Y23899D01* X643Y23899D01* X607Y23895D01* X571Y23889D01* X537Y23879D01* X503Y23866D01* X497Y23862D01* Y25128D01* G37* G36* Y23756D02*X503Y23756D01* X511Y23758D01* X519Y23762D01* X543Y23774D01* X569Y23784D01* X595Y23791D01* X621Y23796D01* X648Y23799D01* X667Y23799D01* Y23200D01* X654Y23200D01* X627Y23202D01* X600Y23207D01* X574Y23214D01* X548Y23223D01* X524Y23235D01* X516Y23238D01* X507Y23240D01* X498Y23240D01* X497Y23240D01* Y23756D01* G37* G36* Y23137D02*X509Y23131D01* X543Y23118D01* X578Y23109D01* X614Y23103D01* X650Y23100D01* X667Y23100D01* Y21899D01* X663D01* X627Y21895D01* X591Y21889D01* X557Y21879D01* X523Y21866D01* X497Y21852D01* Y23137D01* G37* G36* Y21759D02*X497Y21759D01* X505Y21757D01* X514Y21756D01* X523Y21756D01* X531Y21758D01* X539Y21762D01* X563Y21774D01* X589Y21784D01* X615Y21791D01* X641Y21796D01* X667Y21799D01* Y21200D01* X647Y21202D01* X620Y21207D01* X594Y21214D01* X568Y21223D01* X544Y21235D01* X536Y21238D01* X527Y21240D01* X518Y21240D01* X510Y21239D01* X501Y21237D01* X497Y21234D01* Y21759D01* G37* G36* Y21147D02*X497Y21146D01* X529Y21131D01* X563Y21118D01* X598Y21109D01* X634Y21103D01* X667Y21100D01* Y19897D01* X647Y19895D01* X611Y19889D01* X577Y19879D01* X543Y19866D01* X511Y19849D01* X503Y19845D01* X497Y19839D01* X497Y19838D01* Y21147D01* G37* G36* Y19774D02*X502Y19768D01* X509Y19763D01* X517Y19759D01* X525Y19757D01* X534Y19756D01* X543Y19756D01* X551Y19758D01* X559Y19762D01* X583Y19774D01* X609Y19784D01* X635Y19791D01* X661Y19796D01* X667Y19797D01* Y19202D01* X667Y19202D01* X640Y19207D01* X614Y19214D01* X588Y19223D01* X564Y19235D01* X556Y19238D01* X547Y19240D01* X538Y19240D01* X530Y19239D01* X521Y19237D01* X514Y19233D01* X507Y19228D01* X501Y19221D01* X497Y19215D01* Y19774D01* G37* G36* Y19167D02*X498Y19164D01* X503Y19157D01* X509Y19151D01* X517Y19146D01* X549Y19131D01* X583Y19118D01* X618Y19109D01* X654Y19103D01* X667Y19102D01* Y17895D01* X667D01* X631Y17889D01* X597Y17879D01* X563Y17866D01* X531Y17849D01* X523Y17845D01* X517Y17839D01* X512Y17832D01* X508Y17824D01* X506Y17815D01* X505Y17807D01* X505Y17798D01* X508Y17790D01* X511Y17782D01* X516Y17774D01* X522Y17768D01* X529Y17763D01* X537Y17759D01* X545Y17757D01* X554Y17756D01* X563Y17756D01* X571Y17758D01* X579Y17762D01* X603Y17774D01* X629Y17784D01* X655Y17791D01* X667Y17794D01* Y17205D01* X660Y17207D01* X634Y17214D01* X608Y17223D01* X584Y17235D01* X576Y17238D01* X567Y17240D01* X558Y17240D01* X550Y17239D01* X541Y17237D01* X534Y17233D01* X527Y17228D01* X521Y17221D01* X516Y17214D01* X513Y17206D01* X511Y17197D01* X510Y17189D01* X511Y17180D01* X514Y17172D01* X518Y17164D01* X523Y17157D01* X529Y17151D01* X537Y17146D01* X569Y17131D01* X603Y17118D01* X638Y17109D01* X667Y17104D01* Y15892D01* X651Y15889D01* X617Y15879D01* X583Y15866D01* X551Y15849D01* X543Y15845D01* X537Y15839D01* X532Y15832D01* X528Y15824D01* X526Y15815D01* X525Y15807D01* X525Y15798D01* X528Y15790D01* X531Y15782D01* X536Y15774D01* X542Y15768D01* X549Y15763D01* X557Y15759D01* X565Y15757D01* X574Y15756D01* X583Y15756D01* X591Y15758D01* X599Y15762D01* X623Y15774D01* X649Y15784D01* X667Y15789D01* Y15210D01* X654Y15214D01* X628Y15223D01* X604Y15235D01* X596Y15238D01* X587Y15240D01* X578Y15240D01* X570Y15239D01* X561Y15237D01* X554Y15233D01* X547Y15228D01* X541Y15221D01* X536Y15214D01* X533Y15206D01* X531Y15197D01* X530Y15189D01* X531Y15180D01* X534Y15172D01* X538Y15164D01* X543Y15157D01* X549Y15151D01* X557Y15146D01* X589Y15131D01* X623Y15118D01* X658Y15109D01* X667Y15107D01* Y13887D01* X637Y13879D01* X603Y13866D01* X571Y13849D01* X563Y13845D01* X557Y13839D01* X552Y13832D01* X548Y13824D01* X546Y13815D01* X545Y13807D01* X545Y13798D01* X548Y13790D01* X551Y13782D01* X556Y13774D01* X562Y13768D01* X569Y13763D01* X577Y13759D01* X585Y13757D01* X594Y13756D01* X603Y13756D01* X611Y13758D01* X619Y13762D01* X643Y13774D01* X667Y13783D01* Y13216D01* X648Y13223D01* X624Y13235D01* X616Y13238D01* X607Y13240D01* X598Y13240D01* X590Y13239D01* X581Y13237D01* X574Y13233D01* X567Y13228D01* X561Y13221D01* X556Y13214D01* X553Y13206D01* X551Y13197D01* X550Y13189D01* X551Y13180D01* X554Y13172D01* X558Y13164D01* X563Y13157D01* X569Y13151D01* X577Y13146D01* X609Y13131D01* X643Y13118D01* X667Y13112D01* Y11882D01* X657Y11879D01* X623Y11866D01* X591Y11849D01* X583Y11845D01* X577Y11839D01* X572Y11832D01* X568Y11824D01* X566Y11815D01* X565Y11807D01* X565Y11798D01* X568Y11790D01* X571Y11782D01* X576Y11774D01* X582Y11768D01* X589Y11763D01* X597Y11759D01* X605Y11757D01* X614Y11756D01* X623Y11756D01* X631Y11758D01* X639Y11762D01* X663Y11774D01* X667Y11776D01* Y11223D01* X644Y11235D01* X636Y11238D01* X627Y11240D01* X618Y11240D01* X610Y11239D01* X601Y11237D01* X594Y11233D01* X587Y11228D01* X581Y11221D01* X576Y11214D01* X573Y11206D01* X571Y11197D01* X570Y11189D01* X571Y11180D01* X574Y11172D01* X578Y11164D01* X583Y11157D01* X589Y11151D01* X597Y11146D01* X629Y11131D01* X663Y11118D01* X667Y11117D01* Y9875D01* X643Y9866D01* X611Y9849D01* X603Y9845D01* X597Y9839D01* X592Y9832D01* X588Y9824D01* X586Y9815D01* X585Y9807D01* X585Y9798D01* X588Y9790D01* X591Y9782D01* X596Y9774D01* X602Y9768D01* X609Y9763D01* X617Y9759D01* X625Y9757D01* X634Y9756D01* X643Y9756D01* X651Y9758D01* X659Y9762D01* X667Y9766D01* Y9233D01* X664Y9235D01* X656Y9238D01* X647Y9240D01* X638Y9240D01* X630Y9239D01* X621Y9237D01* X614Y9233D01* X607Y9228D01* X601Y9221D01* X596Y9214D01* X593Y9206D01* X591Y9197D01* X590Y9189D01* X591Y9180D01* X594Y9172D01* X598Y9164D01* X603Y9157D01* X609Y9151D01* X617Y9146D01* X649Y9131D01* X667Y9124D01* Y7867D01* X663Y7866D01* X631Y7849D01* X623Y7845D01* X617Y7839D01* X612Y7832D01* X608Y7824D01* X606Y7815D01* X605Y7807D01* X605Y7798D01* X608Y7790D01* X611Y7782D01* X616Y7774D01* X622Y7768D01* X629Y7763D01* X637Y7759D01* X645Y7757D01* X654Y7756D01* X663Y7756D01* X667Y7757D01* Y7240D01* X667D01* X658Y7240D01* X650Y7239D01* X641Y7237D01* X634Y7233D01* X627Y7228D01* X621Y7221D01* X616Y7214D01* X613Y7206D01* X611Y7197D01* X610Y7189D01* X611Y7180D01* X614Y7172D01* X618Y7164D01* X623Y7157D01* X629Y7151D01* X637Y7146D01* X667Y7132D01* Y5858D01* X651Y5849D01* X643Y5845D01* X637Y5839D01* X632Y5832D01* X628Y5824D01* X626Y5815D01* X625Y5807D01* X625Y5798D01* X628Y5790D01* X631Y5782D01* X636Y5774D01* X642Y5768D01* X649Y5763D01* X657Y5759D01* X665Y5757D01* X667Y5756D01* Y5239D01* X661Y5237D01* X654Y5233D01* X647Y5228D01* X641Y5221D01* X636Y5214D01* X633Y5206D01* X631Y5197D01* X630Y5189D01* X631Y5180D01* X634Y5172D01* X638Y5164D01* X643Y5157D01* X649Y5151D01* X657Y5146D01* X667Y5141D01* Y3847D01* X663Y3845D01* X657Y3839D01* X652Y3832D01* X648Y3824D01* X646Y3815D01* X645Y3807D01* X645Y3798D01* X648Y3790D01* X651Y3782D01* X656Y3774D01* X662Y3768D01* X667Y3764D01* Y3228D01* X667Y3228D01* X661Y3221D01* X656Y3214D01* X653Y3206D01* X651Y3197D01* X650Y3189D01* X651Y3180D01* X654Y3172D01* X658Y3164D01* X663Y3157D01* X667Y3153D01* Y1821D01* X666Y1815D01* X665Y1807D01* X665Y1798D01* X667Y1791D01* Y0D01* X497D01* Y1403D01* X505Y1372D01* X519Y1338D01* X535Y1306D01* X539Y1299D01* X545Y1292D01* X553Y1287D01* X560Y1283D01* X569Y1281D01* X577Y1280D01* X586Y1281D01* X595Y1283D01* X603Y1286D01* X610Y1291D01* X616Y1297D01* X621Y1304D01* X625Y1312D01* X627Y1320D01* X628Y1329D01* X628Y1338D01* X626Y1346D01* X622Y1354D01* X610Y1378D01* X600Y1404D01* X593Y1430D01* X588Y1456D01* X585Y1483D01* X585Y1511D01* X587Y1538D01* X592Y1564D01* X599Y1590D01* X608Y1616D01* X620Y1640D01* X623Y1649D01* X625Y1657D01* X625Y1666D01* X624Y1674D01* X622Y1683D01* X618Y1690D01* X613Y1697D01* X606Y1703D01* X599Y1708D01* X591Y1711D01* X582Y1713D01* X574Y1714D01* X565Y1713D01* X557Y1710D01* X549Y1706D01* X542Y1701D01* X536Y1695D01* X531Y1687D01* X516Y1655D01* X503Y1621D01* X497Y1596D01* Y3343D01* X499Y3338D01* X515Y3306D01* X519Y3299D01* X525Y3292D01* X533Y3287D01* X540Y3283D01* X549Y3281D01* X557Y3280D01* X566Y3281D01* X575Y3283D01* X583Y3286D01* X590Y3291D01* X596Y3297D01* X601Y3304D01* X605Y3312D01* X607Y3320D01* X608Y3329D01* X608Y3338D01* X606Y3346D01* X602Y3354D01* X590Y3378D01* X580Y3404D01* X573Y3430D01* X568Y3456D01* X565Y3483D01* X565Y3511D01* X567Y3538D01* X572Y3564D01* X579Y3590D01* X588Y3616D01* X600Y3640D01* X603Y3649D01* X605Y3657D01* X605Y3666D01* X604Y3674D01* X602Y3683D01* X598Y3690D01* X593Y3697D01* X586Y3703D01* X579Y3708D01* X571Y3711D01* X562Y3713D01* X554Y3714D01* X545Y3713D01* X537Y3710D01* X529Y3706D01* X522Y3701D01* X516Y3695D01* X511Y3687D01* X497Y3656D01* Y5303D01* X499Y5299D01* X505Y5292D01* X513Y5287D01* X520Y5283D01* X529Y5281D01* X537Y5280D01* X546Y5281D01* X555Y5283D01* X563Y5286D01* X570Y5291D01* X576Y5297D01* X581Y5304D01* X585Y5312D01* X587Y5320D01* X588Y5329D01* X588Y5338D01* X586Y5346D01* X582Y5354D01* X570Y5378D01* X560Y5404D01* X553Y5430D01* X548Y5456D01* X545Y5483D01* X545Y5511D01* X547Y5538D01* X552Y5564D01* X559Y5590D01* X568Y5616D01* X580Y5640D01* X583Y5649D01* X585Y5657D01* X585Y5666D01* X584Y5674D01* X582Y5683D01* X578Y5690D01* X573Y5697D01* X566Y5703D01* X559Y5708D01* X551Y5711D01* X542Y5713D01* X534Y5714D01* X525Y5713D01* X517Y5710D01* X509Y5706D01* X502Y5701D01* X497Y5695D01* Y7285D01* X500Y7283D01* X509Y7281D01* X517Y7280D01* X526Y7281D01* X535Y7283D01* X543Y7286D01* X550Y7291D01* X556Y7297D01* X561Y7304D01* X565Y7312D01* X567Y7320D01* X568Y7329D01* X568Y7338D01* X566Y7346D01* X562Y7354D01* X550Y7378D01* X540Y7404D01* X533Y7430D01* X528Y7456D01* X525Y7483D01* X525Y7511D01* X527Y7538D01* X532Y7564D01* X539Y7590D01* X548Y7616D01* X560Y7640D01* X563Y7649D01* X565Y7657D01* X565Y7666D01* X564Y7674D01* X562Y7683D01* X558Y7690D01* X553Y7697D01* X546Y7703D01* X539Y7708D01* X531Y7711D01* X522Y7713D01* X514Y7714D01* X505Y7713D01* X497Y7710D01* X497Y7710D01* Y9280D01* X497Y9280D01* X506Y9281D01* X515Y9283D01* X523Y9286D01* X530Y9291D01* X536Y9297D01* X541Y9304D01* X545Y9312D01* X547Y9320D01* X548Y9329D01* X548Y9338D01* X546Y9346D01* X542Y9354D01* X530Y9378D01* X520Y9404D01* X513Y9430D01* X508Y9456D01* X505Y9483D01* X505Y9511D01* X507Y9538D01* X512Y9564D01* X519Y9590D01* X528Y9616D01* X540Y9640D01* X543Y9649D01* X545Y9657D01* X545Y9666D01* X544Y9674D01* X542Y9683D01* X538Y9690D01* X533Y9697D01* X526Y9703D01* X519Y9708D01* X511Y9711D01* X502Y9713D01* X497Y9714D01* Y11284D01* X503Y11286D01* X510Y11291D01* X516Y11297D01* X521Y11304D01* X525Y11312D01* X527Y11320D01* X528Y11329D01* X528Y11338D01* X526Y11346D01* X522Y11354D01* X510Y11378D01* X500Y11404D01* X497Y11417D01* Y11583D01* X499Y11590D01* X508Y11616D01* X520Y11640D01* X523Y11649D01* X525Y11657D01* X525Y11666D01* X524Y11674D01* X522Y11683D01* X518Y11690D01* X513Y11697D01* X506Y11703D01* X499Y11708D01* X497Y11709D01* Y13298D01* X501Y13304D01* X505Y13312D01* X507Y13320D01* X508Y13329D01* X508Y13338D01* X506Y13346D01* X502Y13354D01* X497Y13365D01* Y13634D01* X500Y13640D01* X503Y13649D01* X505Y13657D01* X505Y13666D01* X504Y13674D01* X502Y13683D01* X498Y13690D01* X497Y13692D01* Y19167D01* G37* G36* X667Y40000D02*X892D01* Y39596D01* X884Y39627D01* X870Y39661D01* X854Y39694D01* X850Y39701D01* X844Y39707D01* X836Y39712D01* X829Y39716D01* X820Y39718D01* X812Y39719D01* X803Y39719D01* X794Y39717D01* X786Y39713D01* X779Y39708D01* X773Y39702D01* X768Y39695D01* X764Y39687D01* X762Y39679D01* X761Y39670D01* X761Y39661D01* X763Y39653D01* X767Y39645D01* X779Y39621D01* X789Y39595D01* X796Y39569D01* X801Y39543D01* X804Y39516D01* X804Y39489D01* X802Y39462D01* X797Y39435D01* X790Y39409D01* X781Y39383D01* X769Y39359D01* X766Y39351D01* X764Y39342D01* X764Y39333D01* X765Y39325D01* X767Y39317D01* X771Y39309D01* X776Y39302D01* X783Y39296D01* X790Y39291D01* X798Y39288D01* X807Y39286D01* X815Y39285D01* X824Y39286D01* X832Y39289D01* X840Y39293D01* X847Y39298D01* X853Y39305D01* X858Y39312D01* X873Y39344D01* X886Y39378D01* X892Y39404D01* Y37656D01* X890Y37661D01* X874Y37694D01* X870Y37701D01* X864Y37707D01* X856Y37712D01* X849Y37716D01* X840Y37718D01* X832Y37719D01* X823Y37719D01* X814Y37717D01* X806Y37713D01* X799Y37708D01* X793Y37702D01* X788Y37695D01* X784Y37687D01* X782Y37679D01* X781Y37670D01* X781Y37661D01* X783Y37653D01* X787Y37645D01* X799Y37621D01* X809Y37595D01* X816Y37569D01* X821Y37543D01* X824Y37516D01* X824Y37489D01* X822Y37462D01* X817Y37435D01* X810Y37409D01* X801Y37383D01* X789Y37359D01* X786Y37351D01* X784Y37342D01* X784Y37333D01* X785Y37325D01* X787Y37317D01* X791Y37309D01* X796Y37302D01* X803Y37296D01* X810Y37291D01* X818Y37288D01* X827Y37286D01* X835Y37285D01* X844Y37286D01* X852Y37289D01* X860Y37293D01* X867Y37298D01* X873Y37305D01* X878Y37312D01* X892Y37343D01* Y35696D01* X890Y35701D01* X884Y35707D01* X876Y35712D01* X869Y35716D01* X860Y35718D01* X852Y35719D01* X843Y35719D01* X834Y35717D01* X826Y35713D01* X819Y35708D01* X813Y35702D01* X808Y35695D01* X804Y35687D01* X802Y35679D01* X801Y35670D01* X801Y35661D01* X803Y35653D01* X807Y35645D01* X819Y35621D01* X829Y35595D01* X836Y35569D01* X841Y35543D01* X844Y35516D01* X844Y35489D01* X842Y35462D01* X837Y35435D01* X830Y35409D01* X821Y35383D01* X809Y35359D01* X806Y35351D01* X804Y35342D01* X804Y35333D01* X805Y35325D01* X807Y35317D01* X811Y35309D01* X816Y35302D01* X823Y35296D01* X830Y35291D01* X838Y35288D01* X847Y35286D01* X855Y35285D01* X864Y35286D01* X872Y35289D01* X880Y35293D01* X887Y35298D01* X892Y35304D01* Y33714D01* X889Y33716D01* X880Y33718D01* X872Y33719D01* X863Y33719D01* X854Y33717D01* X846Y33713D01* X839Y33708D01* X833Y33702D01* X828Y33695D01* X824Y33687D01* X822Y33679D01* X821Y33670D01* X821Y33661D01* X823Y33653D01* X827Y33645D01* X839Y33621D01* X849Y33595D01* X856Y33569D01* X861Y33543D01* X864Y33516D01* X864Y33489D01* X862Y33462D01* X857Y33435D01* X850Y33409D01* X841Y33383D01* X829Y33359D01* X826Y33351D01* X824Y33342D01* X824Y33333D01* X825Y33325D01* X827Y33317D01* X831Y33309D01* X836Y33302D01* X843Y33296D01* X850Y33291D01* X858Y33288D01* X867Y33286D01* X875Y33285D01* X884Y33286D01* X892Y33289D01* X892Y33289D01* Y31719D01* X892Y31719D01* X883Y31719D01* X874Y31717D01* X866Y31713D01* X859Y31708D01* X853Y31702D01* X848Y31695D01* X844Y31687D01* X842Y31679D01* X841Y31670D01* X841Y31661D01* X843Y31653D01* X847Y31645D01* X859Y31621D01* X869Y31595D01* X876Y31569D01* X881Y31543D01* X884Y31516D01* X884Y31489D01* X882Y31462D01* X877Y31435D01* X870Y31409D01* X861Y31383D01* X849Y31359D01* X846Y31351D01* X844Y31342D01* X844Y31333D01* X845Y31325D01* X847Y31317D01* X851Y31309D01* X856Y31302D01* X863Y31296D01* X870Y31291D01* X878Y31288D01* X887Y31286D01* X892Y31286D01* Y29716D01* X886Y29713D01* X879Y29708D01* X873Y29702D01* X868Y29695D01* X864Y29687D01* X862Y29679D01* X861Y29670D01* X861Y29661D01* X863Y29653D01* X867Y29645D01* X879Y29621D01* X889Y29595D01* X892Y29583D01* Y29416D01* X890Y29409D01* X881Y29383D01* X869Y29359D01* X866Y29351D01* X864Y29342D01* X864Y29333D01* X865Y29325D01* X867Y29317D01* X871Y29309D01* X876Y29302D01* X883Y29296D01* X890Y29291D01* X892Y29290D01* Y27701D01* X888Y27695D01* X884Y27687D01* X882Y27679D01* X881Y27670D01* X881Y27661D01* X883Y27653D01* X887Y27645D01* X892Y27634D01* Y27365D01* X889Y27359D01* X886Y27351D01* X884Y27342D01* X884Y27333D01* X885Y27325D01* X887Y27317D01* X891Y27309D01* X892Y27307D01* Y21833D01* X891Y21835D01* X886Y21842D01* X880Y21848D01* X872Y21853D01* X840Y21868D01* X806Y21881D01* X771Y21890D01* X735Y21896D01* X699Y21899D01* X667Y21899D01* Y23100D01* X686Y23100D01* X722Y23104D01* X758Y23111D01* X792Y23121D01* X826Y23134D01* X858Y23150D01* X866Y23155D01* X872Y23161D01* X877Y23168D01* X881Y23175D01* X883Y23184D01* X884Y23193D01* X884Y23201D01* X881Y23210D01* X878Y23218D01* X873Y23225D01* X867Y23231D01* X860Y23236D01* X852Y23240D01* X844Y23243D01* X835Y23243D01* X826Y23243D01* X818Y23241D01* X810Y23237D01* X786Y23225D01* X760Y23215D01* X734Y23208D01* X708Y23203D01* X681Y23200D01* X667Y23200D01* Y23799D01* X675Y23799D01* X702Y23797D01* X729Y23793D01* X755Y23785D01* X781Y23776D01* X805Y23764D01* X813Y23761D01* X822Y23759D01* X831Y23759D01* X839Y23760D01* X848Y23762D01* X855Y23766D01* X862Y23772D01* X868Y23778D01* X873Y23785D01* X876Y23793D01* X878Y23802D01* X879Y23810D01* X878Y23819D01* X875Y23827D01* X871Y23835D01* X866Y23842D01* X860Y23848D01* X852Y23853D01* X820Y23868D01* X786Y23881D01* X751Y23890D01* X715Y23896D01* X679Y23899D01* X667Y23899D01* Y25100D01* X702Y25104D01* X738Y25111D01* X772Y25121D01* X806Y25134D01* X838Y25150D01* X846Y25155D01* X852Y25161D01* X857Y25168D01* X861Y25175D01* X863Y25184D01* X864Y25193D01* X864Y25201D01* X861Y25210D01* X858Y25218D01* X853Y25225D01* X847Y25231D01* X840Y25236D01* X832Y25240D01* X824Y25243D01* X815Y25243D01* X806Y25243D01* X798Y25241D01* X790Y25237D01* X766Y25225D01* X740Y25215D01* X714Y25208D01* X688Y25203D01* X667Y25201D01* Y25798D01* X682Y25797D01* X709Y25793D01* X735Y25785D01* X761Y25776D01* X785Y25764D01* X793Y25761D01* X802Y25759D01* X811Y25759D01* X819Y25760D01* X828Y25762D01* X835Y25766D01* X842Y25772D01* X848Y25778D01* X853Y25785D01* X856Y25793D01* X858Y25802D01* X859Y25810D01* X858Y25819D01* X855Y25827D01* X851Y25835D01* X846Y25842D01* X840Y25848D01* X832Y25853D01* X800Y25868D01* X766Y25881D01* X731Y25890D01* X695Y25896D01* X667Y25899D01* Y27102D01* X682Y27104D01* X718Y27111D01* X752Y27121D01* X786Y27134D01* X818Y27150D01* X826Y27155D01* X832Y27161D01* X837Y27168D01* X841Y27175D01* X843Y27184D01* X844Y27193D01* X844Y27201D01* X841Y27210D01* X838Y27218D01* X833Y27225D01* X827Y27231D01* X820Y27236D01* X812Y27240D01* X804Y27243D01* X795Y27243D01* X786Y27243D01* X778Y27241D01* X770Y27237D01* X746Y27225D01* X720Y27215D01* X694Y27208D01* X668Y27203D01* X667D01* Y27796D01* X689Y27793D01* X715Y27785D01* X741Y27776D01* X765Y27764D01* X773Y27761D01* X782Y27759D01* X791Y27759D01* X799Y27760D01* X808Y27762D01* X815Y27766D01* X822Y27772D01* X828Y27778D01* X833Y27785D01* X836Y27793D01* X838Y27802D01* X839Y27810D01* X838Y27819D01* X835Y27827D01* X831Y27835D01* X826Y27842D01* X820Y27848D01* X812Y27853D01* X780Y27868D01* X746Y27881D01* X711Y27890D01* X675Y27896D01* X667Y27897D01* Y29105D01* X698Y29111D01* X732Y29121D01* X766Y29134D01* X798Y29150D01* X806Y29155D01* X812Y29161D01* X817Y29168D01* X821Y29175D01* X823Y29184D01* X824Y29193D01* X824Y29201D01* X821Y29210D01* X818Y29218D01* X813Y29225D01* X807Y29231D01* X800Y29236D01* X792Y29240D01* X784Y29243D01* X775Y29243D01* X766Y29243D01* X758Y29241D01* X750Y29237D01* X726Y29225D01* X700Y29215D01* X674Y29208D01* X667Y29206D01* Y29793D01* X669Y29793D01* X695Y29785D01* X721Y29776D01* X745Y29764D01* X753Y29761D01* X762Y29759D01* X771Y29759D01* X779Y29760D01* X788Y29762D01* X795Y29766D01* X802Y29772D01* X808Y29778D01* X813Y29785D01* X816Y29793D01* X818Y29802D01* X819Y29810D01* X818Y29819D01* X815Y29827D01* X811Y29835D01* X806Y29842D01* X800Y29848D01* X792Y29853D01* X760Y29868D01* X726Y29881D01* X691Y29890D01* X667Y29894D01* Y31109D01* X678Y31111D01* X712Y31121D01* X746Y31134D01* X778Y31150D01* X786Y31155D01* X792Y31161D01* X797Y31168D01* X801Y31175D01* X803Y31184D01* X804Y31193D01* X804Y31201D01* X801Y31210D01* X798Y31218D01* X793Y31225D01* X787Y31231D01* X780Y31236D01* X772Y31240D01* X764Y31243D01* X755Y31243D01* X746Y31243D01* X738Y31241D01* X730Y31237D01* X706Y31225D01* X680Y31215D01* X667Y31212D01* Y31788D01* X675Y31785D01* X701Y31776D01* X725Y31764D01* X733Y31761D01* X742Y31759D01* X751Y31759D01* X759Y31760D01* X768Y31762D01* X775Y31766D01* X782Y31772D01* X788Y31778D01* X793Y31785D01* X796Y31793D01* X798Y31802D01* X799Y31810D01* X798Y31819D01* X795Y31827D01* X791Y31835D01* X786Y31842D01* X780Y31848D01* X772Y31853D01* X740Y31868D01* X706Y31881D01* X671Y31890D01* X667Y31891D01* Y33113D01* X692Y33121D01* X726Y33134D01* X758Y33150D01* X766Y33155D01* X772Y33161D01* X777Y33168D01* X781Y33175D01* X783Y33184D01* X784Y33193D01* X784Y33201D01* X781Y33210D01* X778Y33218D01* X773Y33225D01* X767Y33231D01* X760Y33236D01* X752Y33240D01* X744Y33243D01* X735Y33243D01* X726Y33243D01* X718Y33241D01* X710Y33237D01* X686Y33225D01* X667Y33218D01* Y33781D01* X681Y33776D01* X705Y33764D01* X713Y33761D01* X722Y33759D01* X731Y33759D01* X739Y33760D01* X748Y33762D01* X755Y33766D01* X762Y33772D01* X768Y33778D01* X773Y33785D01* X776Y33793D01* X778Y33802D01* X779Y33810D01* X778Y33819D01* X775Y33827D01* X771Y33835D01* X766Y33842D01* X760Y33848D01* X752Y33853D01* X720Y33868D01* X686Y33881D01* X667Y33886D01* Y35119D01* X672Y35121D01* X706Y35134D01* X738Y35150D01* X746Y35155D01* X752Y35161D01* X757Y35168D01* X761Y35175D01* X763Y35184D01* X764Y35193D01* X764Y35201D01* X761Y35210D01* X758Y35218D01* X753Y35225D01* X747Y35231D01* X740Y35236D01* X732Y35240D01* X724Y35243D01* X715Y35243D01* X706Y35243D01* X698Y35241D01* X690Y35237D01* X667Y35226D01* Y35773D01* X685Y35764D01* X693Y35761D01* X702Y35759D01* X711Y35759D01* X719Y35760D01* X728Y35762D01* X735Y35766D01* X742Y35772D01* X748Y35778D01* X753Y35785D01* X756Y35793D01* X758Y35802D01* X759Y35810D01* X758Y35819D01* X755Y35827D01* X751Y35835D01* X746Y35842D01* X740Y35848D01* X732Y35853D01* X700Y35868D01* X667Y35880D01* Y37126D01* X686Y37134D01* X718Y37150D01* X726Y37155D01* X732Y37161D01* X737Y37168D01* X741Y37175D01* X743Y37184D01* X744Y37193D01* X744Y37201D01* X741Y37210D01* X738Y37218D01* X733Y37225D01* X727Y37231D01* X720Y37236D01* X712Y37240D01* X704Y37243D01* X695Y37243D01* X686Y37243D01* X678Y37241D01* X670Y37237D01* X667Y37236D01* Y37764D01* X673Y37761D01* X682Y37759D01* X691Y37759D01* X699Y37760D01* X708Y37762D01* X715Y37766D01* X722Y37772D01* X728Y37778D01* X733Y37785D01* X736Y37793D01* X738Y37802D01* X739Y37810D01* X738Y37819D01* X735Y37827D01* X731Y37835D01* X726Y37842D01* X720Y37848D01* X712Y37853D01* X680Y37868D01* X667Y37873D01* Y39134D01* X698Y39150D01* X706Y39155D01* X712Y39161D01* X717Y39168D01* X721Y39175D01* X723Y39184D01* X724Y39193D01* X724Y39201D01* X721Y39210D01* X718Y39218D01* X713Y39225D01* X707Y39231D01* X700Y39236D01* X692Y39240D01* X684Y39243D01* X675Y39243D01* X667Y39243D01* Y39759D01* X671Y39759D01* X679Y39760D01* X688Y39762D01* X695Y39766D01* X702Y39772D01* X708Y39778D01* X713Y39785D01* X716Y39793D01* X718Y39802D01* X719Y39810D01* X718Y39819D01* X715Y39827D01* X711Y39835D01* X706Y39842D01* X700Y39848D01* X692Y39853D01* X667Y39865D01* Y40000D01* G37* G36* X892Y11884D02*X871Y11890D01* X835Y11896D01* X799Y11899D01* X763Y11899D01* X727Y11895D01* X691Y11889D01* X667Y11882D01* Y13112D01* X678Y13109D01* X714Y13103D01* X750Y13100D01* X786Y13100D01* X822Y13104D01* X858Y13111D01* X892Y13121D01* X892D01* Y11884D01* G37* G36* Y13229D02*X886Y13225D01* X860Y13215D01* X834Y13208D01* X808Y13203D01* X781Y13200D01* X754Y13200D01* X727Y13202D01* X700Y13207D01* X674Y13214D01* X667Y13216D01* Y13783D01* X669Y13784D01* X695Y13791D01* X721Y13796D01* X748Y13799D01* X775Y13799D01* X802Y13797D01* X829Y13793D01* X855Y13785D01* X881Y13776D01* X892Y13771D01* Y13229D01* G37* G36* Y13878D02*X886Y13881D01* X851Y13890D01* X815Y13896D01* X779Y13899D01* X743Y13899D01* X707Y13895D01* X671Y13889D01* X667Y13887D01* Y15107D01* X694Y15103D01* X730Y15100D01* X766Y15100D01* X802Y15104D01* X838Y15111D01* X872Y15121D01* X892Y15128D01* Y13878D01* G37* G36* Y15238D02*X890Y15237D01* X866Y15225D01* X840Y15215D01* X814Y15208D01* X788Y15203D01* X761Y15200D01* X734Y15200D01* X707Y15202D01* X680Y15207D01* X667Y15210D01* Y15789D01* X675Y15791D01* X701Y15796D01* X728Y15799D01* X755Y15799D01* X782Y15797D01* X809Y15793D01* X835Y15785D01* X861Y15776D01* X885Y15764D01* X892Y15762D01* Y15238D01* G37* G36* Y15871D02*X866Y15881D01* X831Y15890D01* X795Y15896D01* X759Y15899D01* X723Y15899D01* X687Y15895D01* X667Y15892D01* Y17104D01* X674Y17103D01* X710Y17100D01* X746Y17100D01* X782Y17104D01* X818Y17111D01* X852Y17121D01* X886Y17134D01* X892Y17137D01* Y15871D01* G37* G36* Y17243D02*X886Y17243D01* X878Y17241D01* X870Y17237D01* X846Y17225D01* X820Y17215D01* X794Y17208D01* X768Y17203D01* X741Y17200D01* X714Y17200D01* X687Y17202D01* X667Y17205D01* Y17794D01* X681Y17796D01* X708Y17799D01* X735Y17799D01* X762Y17797D01* X789Y17793D01* X815Y17785D01* X841Y17776D01* X865Y17764D01* X873Y17761D01* X882Y17759D01* X891Y17759D01* X892Y17759D01* Y17243D01* G37* G36* Y17862D02*X880Y17868D01* X846Y17881D01* X811Y17890D01* X775Y17896D01* X739Y17899D01* X703Y17899D01* X667Y17895D01* Y19102D01* X690Y19100D01* X726Y19100D01* X762Y19104D01* X798Y19111D01* X832Y19121D01* X866Y19134D01* X892Y19147D01* Y17862D01* G37* G36* Y19240D02*X892Y19240D01* X884Y19243D01* X875Y19243D01* X866Y19243D01* X858Y19241D01* X850Y19237D01* X826Y19225D01* X800Y19215D01* X774Y19208D01* X748Y19203D01* X721Y19200D01* X694Y19200D01* X667Y19202D01* Y19797D01* X688Y19799D01* X715Y19799D01* X742Y19797D01* X769Y19793D01* X795Y19785D01* X821Y19776D01* X845Y19764D01* X853Y19761D01* X862Y19759D01* X871Y19759D01* X879Y19760D01* X888Y19762D01* X892Y19765D01* Y19240D01* G37* G36* Y19853D02*X892Y19853D01* X860Y19868D01* X826Y19881D01* X791Y19890D01* X755Y19896D01* X719Y19899D01* X683Y19899D01* X667Y19897D01* Y21100D01* X670Y21100D01* X706Y21100D01* X742Y21104D01* X778Y21111D01* X812Y21121D01* X846Y21134D01* X878Y21150D01* X886Y21155D01* X892Y21161D01* X892Y21161D01* Y19853D01* G37* G36* Y21225D02*X887Y21231D01* X880Y21236D01* X872Y21240D01* X864Y21243D01* X855Y21243D01* X846Y21243D01* X838Y21241D01* X830Y21237D01* X806Y21225D01* X780Y21215D01* X754Y21208D01* X728Y21203D01* X701Y21200D01* X674Y21200D01* X667Y21200D01* Y21799D01* X668Y21799D01* X695Y21799D01* X722Y21797D01* X749Y21793D01* X775Y21785D01* X801Y21776D01* X825Y21764D01* X833Y21761D01* X842Y21759D01* X851Y21759D01* X859Y21760D01* X868Y21762D01* X875Y21766D01* X882Y21772D01* X888Y21778D01* X892Y21784D01* Y21225D01* G37* G36* Y40000D02*X992D01* Y29596D01* X984Y29627D01* X970Y29661D01* X954Y29694D01* X950Y29701D01* X944Y29707D01* X936Y29712D01* X929Y29716D01* X920Y29718D01* X912Y29719D01* X903Y29719D01* X894Y29717D01* X892Y29716D01* Y31286D01* X895Y31285D01* X904Y31286D01* X912Y31289D01* X920Y31293D01* X927Y31298D01* X933Y31305D01* X938Y31312D01* X953Y31344D01* X966Y31378D01* X975Y31413D01* X981Y31449D01* X984Y31485D01* X984Y31521D01* X980Y31557D01* X974Y31593D01* X964Y31627D01* X950Y31661D01* X934Y31694D01* X930Y31701D01* X924Y31707D01* X916Y31712D01* X909Y31716D01* X900Y31718D01* X892Y31719D01* Y33289D01* X900Y33293D01* X907Y33298D01* X913Y33305D01* X918Y33312D01* X933Y33344D01* X946Y33378D01* X955Y33413D01* X961Y33449D01* X964Y33485D01* X964Y33521D01* X960Y33557D01* X954Y33593D01* X944Y33627D01* X930Y33661D01* X914Y33694D01* X910Y33701D01* X904Y33707D01* X896Y33712D01* X892Y33714D01* Y35304D01* X893Y35305D01* X898Y35312D01* X913Y35344D01* X926Y35378D01* X935Y35413D01* X941Y35449D01* X944Y35485D01* X944Y35521D01* X940Y35557D01* X934Y35593D01* X924Y35627D01* X910Y35661D01* X894Y35694D01* X892Y35696D01* Y37343D01* X893Y37344D01* X906Y37378D01* X915Y37413D01* X921Y37449D01* X924Y37485D01* X924Y37521D01* X920Y37557D01* X914Y37593D01* X904Y37627D01* X892Y37656D01* Y39404D01* X895Y39413D01* X901Y39449D01* X904Y39485D01* X904Y39521D01* X900Y39557D01* X894Y39593D01* X892Y39596D01* Y40000D01* G37* G36* Y29583D02*X896Y29569D01* X901Y29543D01* X904Y29516D01* X904Y29489D01* X902Y29462D01* X897Y29435D01* X892Y29416D01* Y29583D01* G37* G36* Y29290D02*X898Y29288D01* X907Y29286D01* X915Y29285D01* X924Y29286D01* X932Y29289D01* X940Y29293D01* X947Y29298D01* X953Y29305D01* X958Y29312D01* X973Y29344D01* X986Y29378D01* X992Y29404D01* Y27656D01* X990Y27661D01* X974Y27694D01* X970Y27701D01* X964Y27707D01* X956Y27712D01* X949Y27716D01* X940Y27718D01* X932Y27719D01* X923Y27719D01* X914Y27717D01* X906Y27713D01* X899Y27708D01* X893Y27702D01* X892Y27701D01* Y29290D01* G37* G36* Y27634D02*X899Y27621D01* X909Y27595D01* X916Y27569D01* X921Y27543D01* X924Y27516D01* X924Y27489D01* X922Y27462D01* X917Y27435D01* X910Y27409D01* X901Y27383D01* X892Y27365D01* Y27634D01* G37* G36* Y27307D02*X896Y27302D01* X903Y27296D01* X910Y27291D01* X918Y27288D01* X927Y27286D01* X935Y27285D01* X944Y27286D01* X952Y27289D01* X960Y27293D01* X967Y27298D01* X973Y27305D01* X978Y27312D01* X992Y27343D01* Y25696D01* X990Y25701D01* X984Y25707D01* X976Y25712D01* X969Y25716D01* X960Y25718D01* X952Y25719D01* X943Y25719D01* X934Y25717D01* X926Y25713D01* X919Y25708D01* X913Y25702D01* X908Y25695D01* X904Y25687D01* X902Y25679D01* X901Y25670D01* X901Y25661D01* X903Y25653D01* X907Y25645D01* X919Y25621D01* X929Y25595D01* X936Y25569D01* X941Y25543D01* X944Y25516D01* X944Y25489D01* X942Y25462D01* X937Y25435D01* X930Y25409D01* X921Y25383D01* X909Y25359D01* X906Y25351D01* X904Y25342D01* X904Y25333D01* X905Y25325D01* X907Y25317D01* X911Y25309D01* X916Y25302D01* X923Y25296D01* X930Y25291D01* X938Y25288D01* X947Y25286D01* X955Y25285D01* X964Y25286D01* X972Y25289D01* X980Y25293D01* X987Y25298D01* X992Y25304D01* Y23714D01* X989Y23716D01* X980Y23718D01* X972Y23719D01* X963Y23719D01* X954Y23717D01* X946Y23713D01* X939Y23708D01* X933Y23702D01* X928Y23695D01* X924Y23687D01* X922Y23679D01* X921Y23670D01* X921Y23661D01* X923Y23653D01* X927Y23645D01* X939Y23621D01* X949Y23595D01* X956Y23569D01* X961Y23543D01* X964Y23516D01* X964Y23489D01* X962Y23462D01* X957Y23435D01* X950Y23409D01* X941Y23383D01* X929Y23359D01* X926Y23351D01* X924Y23342D01* X924Y23333D01* X925Y23325D01* X927Y23317D01* X931Y23309D01* X936Y23302D01* X943Y23296D01* X950Y23291D01* X958Y23288D01* X967Y23286D01* X975Y23285D01* X984Y23286D01* X992Y23289D01* X992Y23289D01* Y21719D01* X992Y21719D01* X983Y21719D01* X974Y21717D01* X966Y21713D01* X959Y21708D01* X953Y21702D01* X948Y21695D01* X944Y21687D01* X942Y21679D01* X941Y21670D01* X941Y21661D01* X943Y21653D01* X947Y21645D01* X959Y21621D01* X969Y21595D01* X976Y21569D01* X981Y21543D01* X984Y21516D01* X984Y21489D01* X982Y21462D01* X977Y21435D01* X970Y21409D01* X961Y21383D01* X949Y21359D01* X946Y21351D01* X944Y21342D01* X944Y21333D01* X945Y21325D01* X947Y21317D01* X951Y21309D01* X956Y21302D01* X963Y21296D01* X970Y21291D01* X978Y21288D01* X987Y21286D01* X992Y21286D01* Y19716D01* X986Y19713D01* X979Y19708D01* X973Y19702D01* X968Y19695D01* X964Y19687D01* X962Y19679D01* X961Y19670D01* X961Y19661D01* X963Y19653D01* X967Y19645D01* X979Y19621D01* X989Y19595D01* X992Y19583D01* Y19416D01* X990Y19409D01* X981Y19383D01* X969Y19359D01* X966Y19351D01* X964Y19342D01* X964Y19333D01* X965Y19325D01* X967Y19317D01* X971Y19309D01* X976Y19302D01* X983Y19296D01* X990Y19291D01* X992Y19290D01* Y17701D01* X988Y17695D01* X984Y17687D01* X982Y17679D01* X981Y17670D01* X981Y17661D01* X983Y17653D01* X987Y17645D01* X992Y17634D01* Y17365D01* X989Y17359D01* X986Y17351D01* X984Y17342D01* X984Y17333D01* X985Y17325D01* X987Y17317D01* X991Y17309D01* X992Y17307D01* Y11833D01* X991Y11835D01* X986Y11842D01* X980Y11848D01* X972Y11853D01* X940Y11868D01* X906Y11881D01* X892Y11884D01* Y13121D01* X926Y13134D01* X958Y13150D01* X966Y13155D01* X972Y13161D01* X977Y13168D01* X981Y13175D01* X983Y13184D01* X984Y13193D01* X984Y13201D01* X981Y13210D01* X978Y13218D01* X973Y13225D01* X967Y13231D01* X960Y13236D01* X952Y13240D01* X944Y13243D01* X935Y13243D01* X926Y13243D01* X918Y13241D01* X910Y13237D01* X892Y13229D01* Y13771D01* X905Y13764D01* X913Y13761D01* X922Y13759D01* X931Y13759D01* X939Y13760D01* X948Y13762D01* X955Y13766D01* X962Y13772D01* X968Y13778D01* X973Y13785D01* X976Y13793D01* X978Y13802D01* X979Y13810D01* X978Y13819D01* X975Y13827D01* X971Y13835D01* X966Y13842D01* X960Y13848D01* X952Y13853D01* X920Y13868D01* X892Y13878D01* Y15128D01* X906Y15134D01* X938Y15150D01* X946Y15155D01* X952Y15161D01* X957Y15168D01* X961Y15175D01* X963Y15184D01* X964Y15193D01* X964Y15201D01* X961Y15210D01* X958Y15218D01* X953Y15225D01* X947Y15231D01* X940Y15236D01* X932Y15240D01* X924Y15243D01* X915Y15243D01* X906Y15243D01* X898Y15241D01* X892Y15238D01* Y15762D01* X893Y15761D01* X902Y15759D01* X911Y15759D01* X919Y15760D01* X928Y15762D01* X935Y15766D01* X942Y15772D01* X948Y15778D01* X953Y15785D01* X956Y15793D01* X958Y15802D01* X959Y15810D01* X958Y15819D01* X955Y15827D01* X951Y15835D01* X946Y15842D01* X940Y15848D01* X932Y15853D01* X900Y15868D01* X892Y15871D01* Y17137D01* X918Y17150D01* X926Y17155D01* X932Y17161D01* X937Y17168D01* X941Y17175D01* X943Y17184D01* X944Y17193D01* X944Y17201D01* X941Y17210D01* X938Y17218D01* X933Y17225D01* X927Y17231D01* X920Y17236D01* X912Y17240D01* X904Y17243D01* X895Y17243D01* X892Y17243D01* Y17759D01* X899Y17760D01* X908Y17762D01* X915Y17766D01* X922Y17772D01* X928Y17778D01* X933Y17785D01* X936Y17793D01* X938Y17802D01* X939Y17810D01* X938Y17819D01* X935Y17827D01* X931Y17835D01* X926Y17842D01* X920Y17848D01* X912Y17853D01* X892Y17862D01* Y19147D01* X898Y19150D01* X906Y19155D01* X912Y19161D01* X917Y19168D01* X921Y19175D01* X923Y19184D01* X924Y19193D01* X924Y19201D01* X921Y19210D01* X918Y19218D01* X913Y19225D01* X907Y19231D01* X900Y19236D01* X892Y19240D01* Y19765D01* X895Y19766D01* X902Y19772D01* X908Y19778D01* X913Y19785D01* X916Y19793D01* X918Y19802D01* X919Y19810D01* X918Y19819D01* X915Y19827D01* X911Y19835D01* X906Y19842D01* X900Y19848D01* X892Y19853D01* Y21161D01* X897Y21168D01* X901Y21175D01* X903Y21184D01* X904Y21193D01* X904Y21201D01* X901Y21210D01* X898Y21218D01* X893Y21225D01* X892Y21225D01* Y21784D01* X893Y21785D01* X896Y21793D01* X898Y21802D01* X899Y21810D01* X898Y21819D01* X895Y21827D01* X892Y21833D01* Y27307D01* G37* G36* X992Y0D02*X667D01* Y1791D01* X668Y1790D01* X671Y1782D01* X676Y1774D01* X682Y1768D01* X689Y1763D01* X697Y1759D01* X705Y1757D01* X714Y1756D01* X723Y1756D01* X731Y1758D01* X739Y1762D01* X763Y1774D01* X789Y1784D01* X815Y1791D01* X841Y1796D01* X868Y1799D01* X895Y1799D01* X922Y1797D01* X949Y1793D01* X975Y1785D01* X992Y1779D01* Y1220D01* X980Y1215D01* X954Y1208D01* X928Y1203D01* X901Y1200D01* X874Y1200D01* X847Y1202D01* X820Y1207D01* X794Y1214D01* X768Y1223D01* X744Y1235D01* X736Y1238D01* X727Y1240D01* X718Y1240D01* X710Y1239D01* X701Y1237D01* X694Y1233D01* X687Y1228D01* X681Y1221D01* X676Y1214D01* X673Y1206D01* X671Y1197D01* X670Y1189D01* X671Y1180D01* X674Y1172D01* X678Y1164D01* X683Y1157D01* X689Y1151D01* X697Y1146D01* X729Y1131D01* X763Y1118D01* X798Y1109D01* X834Y1103D01* X870Y1100D01* X906Y1100D01* X942Y1104D01* X978Y1111D01* X992Y1115D01* Y0D01* G37* G36* Y1884D02*X971Y1890D01* X935Y1896D01* X899Y1899D01* X863Y1899D01* X827Y1895D01* X791Y1889D01* X757Y1879D01* X723Y1866D01* X691Y1849D01* X683Y1845D01* X677Y1839D01* X672Y1832D01* X668Y1824D01* X667Y1821D01* Y3153D01* X669Y3151D01* X677Y3146D01* X709Y3131D01* X743Y3118D01* X778Y3109D01* X814Y3103D01* X850Y3100D01* X886Y3100D01* X922Y3104D01* X958Y3111D01* X992Y3121D01* X992D01* Y1884D01* G37* G36* Y3229D02*X986Y3225D01* X960Y3215D01* X934Y3208D01* X908Y3203D01* X881Y3200D01* X854Y3200D01* X827Y3202D01* X800Y3207D01* X774Y3214D01* X748Y3223D01* X724Y3235D01* X716Y3238D01* X707Y3240D01* X698Y3240D01* X690Y3239D01* X681Y3237D01* X674Y3233D01* X667Y3228D01* Y3764D01* X669Y3763D01* X677Y3759D01* X685Y3757D01* X694Y3756D01* X703Y3756D01* X711Y3758D01* X719Y3762D01* X743Y3774D01* X769Y3784D01* X795Y3791D01* X821Y3796D01* X848Y3799D01* X875Y3799D01* X902Y3797D01* X929Y3793D01* X955Y3785D01* X981Y3776D01* X992Y3771D01* Y3229D01* G37* G36* Y3878D02*X986Y3881D01* X951Y3890D01* X915Y3896D01* X879Y3899D01* X843Y3899D01* X807Y3895D01* X771Y3889D01* X737Y3879D01* X703Y3866D01* X671Y3849D01* X667Y3847D01* Y5141D01* X689Y5131D01* X723Y5118D01* X758Y5109D01* X794Y5103D01* X830Y5100D01* X866Y5100D01* X902Y5104D01* X938Y5111D01* X972Y5121D01* X992Y5128D01* Y3878D01* G37* G36* Y5238D02*X990Y5237D01* X966Y5225D01* X940Y5215D01* X914Y5208D01* X888Y5203D01* X861Y5200D01* X834Y5200D01* X807Y5202D01* X780Y5207D01* X754Y5214D01* X728Y5223D01* X704Y5235D01* X696Y5238D01* X687Y5240D01* X678Y5240D01* X670Y5239D01* X667Y5239D01* Y5756D01* X674Y5756D01* X683Y5756D01* X691Y5758D01* X699Y5762D01* X723Y5774D01* X749Y5784D01* X775Y5791D01* X801Y5796D01* X828Y5799D01* X855Y5799D01* X882Y5797D01* X909Y5793D01* X935Y5785D01* X961Y5776D01* X985Y5764D01* X992Y5762D01* Y5238D01* G37* G36* Y5871D02*X966Y5881D01* X931Y5890D01* X895Y5896D01* X859Y5899D01* X823Y5899D01* X787Y5895D01* X751Y5889D01* X717Y5879D01* X683Y5866D01* X667Y5858D01* Y7132D01* X669Y7131D01* X703Y7118D01* X738Y7109D01* X774Y7103D01* X810Y7100D01* X846Y7100D01* X882Y7104D01* X918Y7111D01* X952Y7121D01* X986Y7134D01* X992Y7137D01* Y5871D01* G37* G36* Y7243D02*X986Y7243D01* X978Y7241D01* X970Y7237D01* X946Y7225D01* X920Y7215D01* X894Y7208D01* X868Y7203D01* X841Y7200D01* X814Y7200D01* X787Y7202D01* X760Y7207D01* X734Y7214D01* X708Y7223D01* X684Y7235D01* X676Y7238D01* X667Y7240D01* Y7757D01* X671Y7758D01* X679Y7762D01* X703Y7774D01* X729Y7784D01* X755Y7791D01* X781Y7796D01* X808Y7799D01* X835Y7799D01* X862Y7797D01* X889Y7793D01* X915Y7785D01* X941Y7776D01* X965Y7764D01* X973Y7761D01* X982Y7759D01* X991Y7759D01* X992Y7759D01* Y7243D01* G37* G36* Y7862D02*X980Y7868D01* X946Y7881D01* X911Y7890D01* X875Y7896D01* X839Y7899D01* X803Y7899D01* X767Y7895D01* X731Y7889D01* X697Y7879D01* X667Y7867D01* Y9124D01* X683Y9118D01* X718Y9109D01* X754Y9103D01* X790Y9100D01* X826Y9100D01* X862Y9104D01* X898Y9111D01* X932Y9121D01* X966Y9134D01* X992Y9147D01* Y7862D01* G37* G36* Y9240D02*X992Y9240D01* X984Y9243D01* X975Y9243D01* X966Y9243D01* X958Y9241D01* X950Y9237D01* X926Y9225D01* X900Y9215D01* X874Y9208D01* X848Y9203D01* X821Y9200D01* X794Y9200D01* X767Y9202D01* X740Y9207D01* X714Y9214D01* X688Y9223D01* X667Y9233D01* Y9766D01* X683Y9774D01* X709Y9784D01* X735Y9791D01* X761Y9796D01* X788Y9799D01* X815Y9799D01* X842Y9797D01* X869Y9793D01* X895Y9785D01* X921Y9776D01* X945Y9764D01* X953Y9761D01* X962Y9759D01* X971Y9759D01* X979Y9760D01* X988Y9762D01* X992Y9765D01* Y9240D01* G37* G36* Y9853D02*X992Y9853D01* X960Y9868D01* X926Y9881D01* X891Y9890D01* X855Y9896D01* X819Y9899D01* X783Y9899D01* X747Y9895D01* X711Y9889D01* X677Y9879D01* X667Y9875D01* Y11117D01* X698Y11109D01* X734Y11103D01* X770Y11100D01* X806Y11100D01* X842Y11104D01* X878Y11111D01* X912Y11121D01* X946Y11134D01* X978Y11150D01* X986Y11155D01* X992Y11161D01* X992Y11161D01* Y9853D01* G37* G36* Y11225D02*X987Y11231D01* X980Y11236D01* X972Y11240D01* X964Y11243D01* X955Y11243D01* X946Y11243D01* X938Y11241D01* X930Y11237D01* X906Y11225D01* X880Y11215D01* X854Y11208D01* X828Y11203D01* X801Y11200D01* X774Y11200D01* X747Y11202D01* X720Y11207D01* X694Y11214D01* X668Y11223D01* X667Y11223D01* Y11776D01* X689Y11784D01* X715Y11791D01* X741Y11796D01* X768Y11799D01* X795Y11799D01* X822Y11797D01* X849Y11793D01* X875Y11785D01* X901Y11776D01* X925Y11764D01* X933Y11761D01* X942Y11759D01* X951Y11759D01* X959Y11760D01* X968Y11762D01* X975Y11766D01* X982Y11772D01* X988Y11778D01* X992Y11784D01* Y11225D01* G37* G36* Y40000D02*X1072D01* Y21596D01* X1064Y21627D01* X1050Y21661D01* X1034Y21694D01* X1030Y21701D01* X1024Y21707D01* X1016Y21712D01* X1009Y21716D01* X1000Y21718D01* X992Y21719D01* Y23289D01* X1000Y23293D01* X1007Y23298D01* X1013Y23305D01* X1018Y23312D01* X1033Y23344D01* X1046Y23378D01* X1055Y23413D01* X1061Y23449D01* X1064Y23485D01* X1064Y23521D01* X1060Y23557D01* X1054Y23593D01* X1044Y23627D01* X1030Y23661D01* X1014Y23694D01* X1010Y23701D01* X1004Y23707D01* X996Y23712D01* X992Y23714D01* Y25304D01* X993Y25305D01* X998Y25312D01* X1013Y25344D01* X1026Y25378D01* X1035Y25413D01* X1041Y25449D01* X1044Y25485D01* X1044Y25521D01* X1040Y25557D01* X1034Y25593D01* X1024Y25627D01* X1010Y25661D01* X994Y25694D01* X992Y25696D01* Y27343D01* X993Y27344D01* X1006Y27378D01* X1015Y27413D01* X1021Y27449D01* X1024Y27485D01* X1024Y27521D01* X1020Y27557D01* X1014Y27593D01* X1004Y27627D01* X992Y27656D01* Y29404D01* X995Y29413D01* X1001Y29449D01* X1004Y29485D01* X1004Y29521D01* X1000Y29557D01* X994Y29593D01* X992Y29596D01* Y40000D01* G37* G36* X1072Y0D02*X992D01* Y1115D01* X1012Y1121D01* X1046Y1134D01* X1072Y1147D01* Y0D01* G37* G36* Y1240D02*X1072Y1240D01* X1064Y1243D01* X1055Y1243D01* X1046Y1243D01* X1038Y1241D01* X1030Y1237D01* X1006Y1225D01* X992Y1220D01* Y1779D01* X1001Y1776D01* X1025Y1764D01* X1033Y1761D01* X1042Y1759D01* X1051Y1759D01* X1059Y1760D01* X1068Y1762D01* X1072Y1765D01* Y1240D01* G37* G36* Y1853D02*X1072Y1853D01* X1040Y1868D01* X1006Y1881D01* X992Y1884D01* Y3121D01* X1026Y3134D01* X1058Y3150D01* X1066Y3155D01* X1072Y3161D01* X1072Y3161D01* Y1853D01* G37* G36* Y3225D02*X1067Y3231D01* X1060Y3236D01* X1052Y3240D01* X1044Y3243D01* X1035Y3243D01* X1026Y3243D01* X1018Y3241D01* X1010Y3237D01* X992Y3229D01* Y3771D01* X1005Y3764D01* X1013Y3761D01* X1022Y3759D01* X1031Y3759D01* X1039Y3760D01* X1048Y3762D01* X1055Y3766D01* X1062Y3772D01* X1068Y3778D01* X1072Y3784D01* Y3225D01* G37* G36* Y3833D02*X1071Y3835D01* X1066Y3842D01* X1060Y3848D01* X1052Y3853D01* X1020Y3868D01* X992Y3878D01* Y5128D01* X1006Y5134D01* X1038Y5150D01* X1046Y5155D01* X1052Y5161D01* X1057Y5168D01* X1061Y5175D01* X1063Y5184D01* X1064Y5193D01* X1064Y5201D01* X1061Y5210D01* X1058Y5218D01* X1053Y5225D01* X1047Y5231D01* X1040Y5236D01* X1032Y5240D01* X1024Y5243D01* X1015Y5243D01* X1006Y5243D01* X998Y5241D01* X992Y5238D01* Y5762D01* X993Y5761D01* X1002Y5759D01* X1011Y5759D01* X1019Y5760D01* X1028Y5762D01* X1035Y5766D01* X1042Y5772D01* X1048Y5778D01* X1053Y5785D01* X1056Y5793D01* X1058Y5802D01* X1059Y5810D01* X1058Y5819D01* X1055Y5827D01* X1051Y5835D01* X1046Y5842D01* X1040Y5848D01* X1032Y5853D01* X1000Y5868D01* X992Y5871D01* Y7137D01* X1018Y7150D01* X1026Y7155D01* X1032Y7161D01* X1037Y7168D01* X1041Y7175D01* X1043Y7184D01* X1044Y7193D01* X1044Y7201D01* X1041Y7210D01* X1038Y7218D01* X1033Y7225D01* X1027Y7231D01* X1020Y7236D01* X1012Y7240D01* X1004Y7243D01* X995Y7243D01* X992Y7243D01* Y7759D01* X999Y7760D01* X1008Y7762D01* X1015Y7766D01* X1022Y7772D01* X1028Y7778D01* X1033Y7785D01* X1036Y7793D01* X1038Y7802D01* X1039Y7810D01* X1038Y7819D01* X1035Y7827D01* X1031Y7835D01* X1026Y7842D01* X1020Y7848D01* X1012Y7853D01* X992Y7862D01* Y9147D01* X998Y9150D01* X1006Y9155D01* X1012Y9161D01* X1017Y9168D01* X1021Y9175D01* X1023Y9184D01* X1024Y9193D01* X1024Y9201D01* X1021Y9210D01* X1018Y9218D01* X1013Y9225D01* X1007Y9231D01* X1000Y9236D01* X992Y9240D01* Y9765D01* X995Y9766D01* X1002Y9772D01* X1008Y9778D01* X1013Y9785D01* X1016Y9793D01* X1018Y9802D01* X1019Y9810D01* X1018Y9819D01* X1015Y9827D01* X1011Y9835D01* X1006Y9842D01* X1000Y9848D01* X992Y9853D01* Y11161D01* X997Y11168D01* X1001Y11175D01* X1003Y11184D01* X1004Y11193D01* X1004Y11201D01* X1001Y11210D01* X998Y11218D01* X993Y11225D01* X992Y11225D01* Y11784D01* X993Y11785D01* X996Y11793D01* X998Y11802D01* X999Y11810D01* X998Y11819D01* X995Y11827D01* X992Y11833D01* Y17307D01* X996Y17302D01* X1003Y17296D01* X1010Y17291D01* X1018Y17288D01* X1027Y17286D01* X1035Y17285D01* X1044Y17286D01* X1052Y17289D01* X1060Y17293D01* X1067Y17298D01* X1072Y17304D01* Y15714D01* X1069Y15716D01* X1060Y15718D01* X1052Y15719D01* X1043Y15719D01* X1034Y15717D01* X1026Y15713D01* X1019Y15708D01* X1013Y15702D01* X1008Y15695D01* X1004Y15687D01* X1002Y15679D01* X1001Y15670D01* X1001Y15661D01* X1003Y15653D01* X1007Y15645D01* X1019Y15621D01* X1029Y15595D01* X1036Y15569D01* X1041Y15543D01* X1044Y15516D01* X1044Y15489D01* X1042Y15462D01* X1037Y15435D01* X1030Y15409D01* X1021Y15383D01* X1009Y15359D01* X1006Y15351D01* X1004Y15342D01* X1004Y15333D01* X1005Y15325D01* X1007Y15317D01* X1011Y15309D01* X1016Y15302D01* X1023Y15296D01* X1030Y15291D01* X1038Y15288D01* X1047Y15286D01* X1055Y15285D01* X1064Y15286D01* X1072Y15289D01* X1072Y15289D01* Y13719D01* X1072Y13719D01* X1063Y13719D01* X1054Y13717D01* X1046Y13713D01* X1039Y13708D01* X1033Y13702D01* X1028Y13695D01* X1024Y13687D01* X1022Y13679D01* X1021Y13670D01* X1021Y13661D01* X1023Y13653D01* X1027Y13645D01* X1039Y13621D01* X1049Y13595D01* X1056Y13569D01* X1061Y13543D01* X1064Y13516D01* X1064Y13489D01* X1062Y13462D01* X1057Y13435D01* X1050Y13409D01* X1041Y13383D01* X1029Y13359D01* X1026Y13351D01* X1024Y13342D01* X1024Y13333D01* X1025Y13325D01* X1027Y13317D01* X1031Y13309D01* X1036Y13302D01* X1043Y13296D01* X1050Y13291D01* X1058Y13288D01* X1067Y13286D01* X1072Y13286D01* Y11716D01* X1066Y11713D01* X1059Y11708D01* X1053Y11702D01* X1048Y11695D01* X1044Y11687D01* X1042Y11679D01* X1041Y11670D01* X1041Y11661D01* X1043Y11653D01* X1047Y11645D01* X1059Y11621D01* X1069Y11595D01* X1072Y11583D01* Y11416D01* X1070Y11409D01* X1061Y11383D01* X1049Y11359D01* X1046Y11351D01* X1044Y11342D01* X1044Y11333D01* X1045Y11325D01* X1047Y11317D01* X1051Y11309D01* X1056Y11302D01* X1063Y11296D01* X1070Y11291D01* X1072Y11290D01* Y9701D01* X1068Y9695D01* X1064Y9687D01* X1062Y9679D01* X1061Y9670D01* X1061Y9661D01* X1063Y9653D01* X1067Y9645D01* X1072Y9634D01* Y9365D01* X1069Y9359D01* X1066Y9351D01* X1064Y9342D01* X1064Y9333D01* X1065Y9325D01* X1067Y9317D01* X1071Y9309D01* X1072Y9307D01* Y3833D01* G37* G36* Y17696D02*X1070Y17701D01* X1064Y17707D01* X1056Y17712D01* X1049Y17716D01* X1040Y17718D01* X1032Y17719D01* X1023Y17719D01* X1014Y17717D01* X1006Y17713D01* X999Y17708D01* X993Y17702D01* X992Y17701D01* Y19290D01* X998Y19288D01* X1007Y19286D01* X1015Y19285D01* X1024Y19286D01* X1032Y19289D01* X1040Y19293D01* X1047Y19298D01* X1053Y19305D01* X1058Y19312D01* X1072Y19343D01* Y17696D01* G37* G36* Y19656D02*X1070Y19661D01* X1054Y19694D01* X1050Y19701D01* X1044Y19707D01* X1036Y19712D01* X1029Y19716D01* X1020Y19718D01* X1012Y19719D01* X1003Y19719D01* X994Y19717D01* X992Y19716D01* Y21286D01* X995Y21285D01* X1004Y21286D01* X1012Y21289D01* X1020Y21293D01* X1027Y21298D01* X1033Y21305D01* X1038Y21312D01* X1053Y21344D01* X1066Y21378D01* X1072Y21404D01* Y19656D01* G37* G36* Y40000D02*X1152D01* Y13596D01* X1144Y13627D01* X1130Y13661D01* X1114Y13694D01* X1110Y13701D01* X1104Y13707D01* X1096Y13712D01* X1089Y13716D01* X1080Y13718D01* X1072Y13719D01* Y15289D01* X1080Y15293D01* X1087Y15298D01* X1093Y15305D01* X1098Y15312D01* X1113Y15344D01* X1126Y15378D01* X1135Y15413D01* X1141Y15449D01* X1144Y15485D01* X1144Y15521D01* X1140Y15557D01* X1134Y15593D01* X1124Y15627D01* X1110Y15661D01* X1094Y15694D01* X1090Y15701D01* X1084Y15707D01* X1076Y15712D01* X1072Y15714D01* Y17304D01* X1073Y17305D01* X1078Y17312D01* X1093Y17344D01* X1106Y17378D01* X1115Y17413D01* X1121Y17449D01* X1124Y17485D01* X1124Y17521D01* X1120Y17557D01* X1114Y17593D01* X1104Y17627D01* X1090Y17661D01* X1074Y17694D01* X1072Y17696D01* Y19343D01* X1073Y19344D01* X1086Y19378D01* X1095Y19413D01* X1101Y19449D01* X1104Y19485D01* X1104Y19521D01* X1100Y19557D01* X1094Y19593D01* X1084Y19627D01* X1072Y19656D01* Y21404D01* X1075Y21413D01* X1081Y21449D01* X1084Y21485D01* X1084Y21521D01* X1080Y21557D01* X1074Y21593D01* X1072Y21596D01* Y40000D01* G37* G36* X1152Y0D02*X1072D01* Y1147D01* X1078Y1150D01* X1086Y1155D01* X1092Y1161D01* X1097Y1168D01* X1101Y1175D01* X1103Y1184D01* X1104Y1193D01* X1104Y1201D01* X1101Y1210D01* X1098Y1218D01* X1093Y1225D01* X1087Y1231D01* X1080Y1236D01* X1072Y1240D01* Y1765D01* X1075Y1766D01* X1082Y1772D01* X1088Y1778D01* X1093Y1785D01* X1096Y1793D01* X1098Y1802D01* X1099Y1810D01* X1098Y1819D01* X1095Y1827D01* X1091Y1835D01* X1086Y1842D01* X1080Y1848D01* X1072Y1853D01* Y3161D01* X1077Y3168D01* X1081Y3175D01* X1083Y3184D01* X1084Y3193D01* X1084Y3201D01* X1081Y3210D01* X1078Y3218D01* X1073Y3225D01* X1072Y3225D01* Y3784D01* X1073Y3785D01* X1076Y3793D01* X1078Y3802D01* X1079Y3810D01* X1078Y3819D01* X1075Y3827D01* X1072Y3833D01* Y9307D01* X1076Y9302D01* X1083Y9296D01* X1090Y9291D01* X1098Y9288D01* X1107Y9286D01* X1115Y9285D01* X1124Y9286D01* X1132Y9289D01* X1140Y9293D01* X1147Y9298D01* X1152Y9304D01* Y7714D01* X1149Y7716D01* X1140Y7718D01* X1132Y7719D01* X1123Y7719D01* X1114Y7717D01* X1106Y7713D01* X1099Y7708D01* X1093Y7702D01* X1088Y7695D01* X1084Y7687D01* X1082Y7679D01* X1081Y7670D01* X1081Y7661D01* X1083Y7653D01* X1087Y7645D01* X1099Y7621D01* X1109Y7595D01* X1116Y7569D01* X1121Y7543D01* X1124Y7516D01* X1124Y7489D01* X1122Y7462D01* X1117Y7435D01* X1110Y7409D01* X1101Y7383D01* X1089Y7359D01* X1086Y7351D01* X1084Y7342D01* X1084Y7333D01* X1085Y7325D01* X1087Y7317D01* X1091Y7309D01* X1096Y7302D01* X1103Y7296D01* X1110Y7291D01* X1118Y7288D01* X1127Y7286D01* X1135Y7285D01* X1144Y7286D01* X1152Y7289D01* X1152Y7289D01* Y5719D01* X1152Y5719D01* X1143Y5719D01* X1134Y5717D01* X1126Y5713D01* X1119Y5708D01* X1113Y5702D01* X1108Y5695D01* X1104Y5687D01* X1102Y5679D01* X1101Y5670D01* X1101Y5661D01* X1103Y5653D01* X1107Y5645D01* X1119Y5621D01* X1129Y5595D01* X1136Y5569D01* X1141Y5543D01* X1144Y5516D01* X1144Y5489D01* X1142Y5462D01* X1137Y5435D01* X1130Y5409D01* X1121Y5383D01* X1109Y5359D01* X1106Y5351D01* X1104Y5342D01* X1104Y5333D01* X1105Y5325D01* X1107Y5317D01* X1111Y5309D01* X1116Y5302D01* X1123Y5296D01* X1130Y5291D01* X1138Y5288D01* X1147Y5286D01* X1152Y5286D01* Y3716D01* X1146Y3713D01* X1139Y3708D01* X1133Y3702D01* X1128Y3695D01* X1124Y3687D01* X1122Y3679D01* X1121Y3670D01* X1121Y3661D01* X1123Y3653D01* X1127Y3645D01* X1139Y3621D01* X1149Y3595D01* X1152Y3583D01* Y3416D01* X1150Y3409D01* X1141Y3383D01* X1129Y3359D01* X1126Y3351D01* X1124Y3342D01* X1124Y3333D01* X1125Y3325D01* X1127Y3317D01* X1131Y3309D01* X1136Y3302D01* X1143Y3296D01* X1150Y3291D01* X1152Y3290D01* Y1701D01* X1148Y1695D01* X1144Y1687D01* X1142Y1679D01* X1141Y1670D01* X1141Y1661D01* X1143Y1653D01* X1147Y1645D01* X1152Y1634D01* Y1365D01* X1149Y1359D01* X1146Y1351D01* X1144Y1342D01* X1144Y1333D01* X1145Y1325D01* X1147Y1317D01* X1151Y1309D01* X1152Y1307D01* Y0D01* G37* G36* Y9696D02*X1150Y9701D01* X1144Y9707D01* X1136Y9712D01* X1129Y9716D01* X1120Y9718D01* X1112Y9719D01* X1103Y9719D01* X1094Y9717D01* X1086Y9713D01* X1079Y9708D01* X1073Y9702D01* X1072Y9701D01* Y11290D01* X1078Y11288D01* X1087Y11286D01* X1095Y11285D01* X1104Y11286D01* X1112Y11289D01* X1120Y11293D01* X1127Y11298D01* X1133Y11305D01* X1138Y11312D01* X1152Y11343D01* Y9696D01* G37* G36* Y11656D02*X1150Y11661D01* X1134Y11694D01* X1130Y11701D01* X1124Y11707D01* X1116Y11712D01* X1109Y11716D01* X1100Y11718D01* X1092Y11719D01* X1083Y11719D01* X1074Y11717D01* X1072Y11716D01* Y13286D01* X1075Y13285D01* X1084Y13286D01* X1092Y13289D01* X1100Y13293D01* X1107Y13298D01* X1113Y13305D01* X1118Y13312D01* X1133Y13344D01* X1146Y13378D01* X1152Y13404D01* Y11656D01* G37* G36* Y40000D02*X2217D01* Y39709D01* X2211Y39711D01* X2202Y39713D01* X2194Y39714D01* X2185Y39713D01* X2177Y39710D01* X2169Y39706D01* X2162Y39701D01* X2156Y39695D01* X2151Y39687D01* X2136Y39655D01* X2123Y39621D01* X2114Y39586D01* X2108Y39550D01* X2105Y39514D01* X2105Y39478D01* X2109Y39442D01* X2115Y39407D01* X2125Y39372D01* X2139Y39338D01* X2155Y39306D01* X2159Y39299D01* X2165Y39292D01* X2173Y39287D01* X2180Y39283D01* X2189Y39281D01* X2197Y39280D01* X2206Y39281D01* X2215Y39283D01* X2217Y39284D01* Y37714D01* X2214Y37714D01* X2205Y37713D01* X2197Y37710D01* X2189Y37706D01* X2182Y37701D01* X2176Y37695D01* X2171Y37687D01* X2156Y37655D01* X2143Y37621D01* X2134Y37586D01* X2128Y37550D01* X2125Y37514D01* X2125Y37478D01* X2129Y37442D01* X2135Y37407D01* X2145Y37372D01* X2159Y37338D01* X2175Y37306D01* X2179Y37299D01* X2185Y37292D01* X2193Y37287D01* X2200Y37283D01* X2209Y37281D01* X2217Y37280D01* Y35710D01* X2209Y35706D01* X2202Y35701D01* X2196Y35695D01* X2191Y35687D01* X2176Y35655D01* X2163Y35621D01* X2154Y35586D01* X2148Y35550D01* X2145Y35514D01* X2145Y35478D01* X2149Y35442D01* X2155Y35407D01* X2165Y35372D01* X2179Y35338D01* X2195Y35306D01* X2199Y35299D01* X2205Y35292D01* X2213Y35287D01* X2217Y35285D01* Y33695D01* X2216Y33695D01* X2211Y33687D01* X2196Y33655D01* X2183Y33621D01* X2174Y33586D01* X2168Y33550D01* X2165Y33514D01* X2165Y33478D01* X2169Y33442D01* X2175Y33407D01* X2185Y33372D01* X2199Y33338D01* X2215Y33306D01* X2217Y33303D01* Y31656D01* X2216Y31655D01* X2203Y31621D01* X2194Y31586D01* X2188Y31550D01* X2185Y31514D01* X2185Y31478D01* X2189Y31442D01* X2195Y31407D01* X2205Y31372D01* X2217Y31343D01* Y29596D01* X2214Y29586D01* X2208Y29550D01* X2205Y29514D01* X2205Y29478D01* X2209Y29442D01* X2215Y29407D01* X2217Y29403D01* Y0D01* X1152D01* Y1307D01* X1156Y1302D01* X1163Y1296D01* X1170Y1291D01* X1178Y1288D01* X1187Y1286D01* X1195Y1285D01* X1204Y1286D01* X1212Y1289D01* X1220Y1293D01* X1227Y1298D01* X1233Y1305D01* X1238Y1312D01* X1253Y1344D01* X1266Y1378D01* X1275Y1413D01* X1281Y1449D01* X1284Y1485D01* X1284Y1521D01* X1280Y1557D01* X1274Y1593D01* X1264Y1627D01* X1250Y1661D01* X1234Y1694D01* X1230Y1701D01* X1224Y1707D01* X1216Y1712D01* X1209Y1716D01* X1200Y1718D01* X1192Y1719D01* X1183Y1719D01* X1174Y1717D01* X1166Y1713D01* X1159Y1708D01* X1153Y1702D01* X1152Y1701D01* Y3290D01* X1158Y3288D01* X1167Y3286D01* X1175Y3285D01* X1184Y3286D01* X1192Y3289D01* X1200Y3293D01* X1207Y3298D01* X1213Y3305D01* X1218Y3312D01* X1233Y3344D01* X1246Y3378D01* X1255Y3413D01* X1261Y3449D01* X1264Y3485D01* X1264Y3521D01* X1260Y3557D01* X1254Y3593D01* X1244Y3627D01* X1230Y3661D01* X1214Y3694D01* X1210Y3701D01* X1204Y3707D01* X1196Y3712D01* X1189Y3716D01* X1180Y3718D01* X1172Y3719D01* X1163Y3719D01* X1154Y3717D01* X1152Y3716D01* Y5286D01* X1155Y5285D01* X1164Y5286D01* X1172Y5289D01* X1180Y5293D01* X1187Y5298D01* X1193Y5305D01* X1198Y5312D01* X1213Y5344D01* X1226Y5378D01* X1235Y5413D01* X1241Y5449D01* X1244Y5485D01* X1244Y5521D01* X1240Y5557D01* X1234Y5593D01* X1224Y5627D01* X1210Y5661D01* X1194Y5694D01* X1190Y5701D01* X1184Y5707D01* X1176Y5712D01* X1169Y5716D01* X1160Y5718D01* X1152Y5719D01* Y7289D01* X1160Y7293D01* X1167Y7298D01* X1173Y7305D01* X1178Y7312D01* X1193Y7344D01* X1206Y7378D01* X1215Y7413D01* X1221Y7449D01* X1224Y7485D01* X1224Y7521D01* X1220Y7557D01* X1214Y7593D01* X1204Y7627D01* X1190Y7661D01* X1174Y7694D01* X1170Y7701D01* X1164Y7707D01* X1156Y7712D01* X1152Y7714D01* Y9304D01* X1153Y9305D01* X1158Y9312D01* X1173Y9344D01* X1186Y9378D01* X1195Y9413D01* X1201Y9449D01* X1204Y9485D01* X1204Y9521D01* X1200Y9557D01* X1194Y9593D01* X1184Y9627D01* X1170Y9661D01* X1154Y9694D01* X1152Y9696D01* Y11343D01* X1153Y11344D01* X1166Y11378D01* X1175Y11413D01* X1181Y11449D01* X1184Y11485D01* X1184Y11521D01* X1180Y11557D01* X1174Y11593D01* X1164Y11627D01* X1152Y11656D01* Y13404D01* X1155Y13413D01* X1161Y13449D01* X1164Y13485D01* X1164Y13521D01* X1160Y13557D01* X1154Y13593D01* X1152Y13596D01* Y40000D01* G37* G36* X2217Y39417D02*X2213Y39430D01* X2208Y39456D01* X2205Y39483D01* X2205Y39511D01* X2207Y39538D01* X2212Y39564D01* X2217Y39583D01* Y39417D01* G37* G36* Y40000D02*X2317D01* Y39852D01* X2311Y39849D01* X2303Y39845D01* X2297Y39839D01* X2292Y39832D01* X2288Y39824D01* X2286Y39815D01* X2285Y39807D01* X2285Y39798D01* X2288Y39790D01* X2291Y39782D01* X2296Y39774D01* X2302Y39768D01* X2309Y39763D01* X2317Y39759D01* Y39234D01* X2314Y39233D01* X2307Y39228D01* X2301Y39221D01* X2296Y39214D01* X2293Y39206D01* X2291Y39197D01* X2290Y39189D01* X2291Y39180D01* X2294Y39172D01* X2298Y39164D01* X2303Y39157D01* X2309Y39151D01* X2317Y39147D01* Y37838D01* X2312Y37832D01* X2308Y37824D01* X2306Y37815D01* X2305Y37807D01* X2305Y37798D01* X2308Y37790D01* X2311Y37782D01* X2316Y37774D01* X2317Y37774D01* Y37215D01* X2316Y37214D01* X2313Y37206D01* X2311Y37197D01* X2310Y37189D01* X2311Y37180D01* X2314Y37172D01* X2317Y37167D01* Y31692D01* X2313Y31697D01* X2306Y31703D01* X2299Y31708D01* X2291Y31711D01* X2282Y31713D01* X2274Y31714D01* X2265Y31713D01* X2257Y31710D01* X2249Y31706D01* X2242Y31701D01* X2236Y31695D01* X2231Y31687D01* X2217Y31656D01* Y33303D01* X2219Y33299D01* X2225Y33292D01* X2233Y33287D01* X2240Y33283D01* X2249Y33281D01* X2257Y33280D01* X2266Y33281D01* X2275Y33283D01* X2283Y33286D01* X2290Y33291D01* X2296Y33297D01* X2301Y33304D01* X2305Y33312D01* X2307Y33320D01* X2308Y33329D01* X2308Y33338D01* X2306Y33346D01* X2302Y33354D01* X2290Y33378D01* X2280Y33404D01* X2273Y33430D01* X2268Y33456D01* X2265Y33483D01* X2265Y33511D01* X2267Y33538D01* X2272Y33564D01* X2279Y33590D01* X2288Y33616D01* X2300Y33640D01* X2303Y33649D01* X2305Y33657D01* X2305Y33666D01* X2304Y33674D01* X2302Y33683D01* X2298Y33690D01* X2293Y33697D01* X2286Y33703D01* X2279Y33708D01* X2271Y33711D01* X2262Y33713D01* X2254Y33714D01* X2245Y33713D01* X2237Y33710D01* X2229Y33706D01* X2222Y33701D01* X2217Y33695D01* Y35285D01* X2220Y35283D01* X2229Y35281D01* X2237Y35280D01* X2246Y35281D01* X2255Y35283D01* X2263Y35286D01* X2270Y35291D01* X2276Y35297D01* X2281Y35304D01* X2285Y35312D01* X2287Y35320D01* X2288Y35329D01* X2288Y35338D01* X2286Y35346D01* X2282Y35354D01* X2270Y35378D01* X2260Y35404D01* X2253Y35430D01* X2248Y35456D01* X2245Y35483D01* X2245Y35511D01* X2247Y35538D01* X2252Y35564D01* X2259Y35590D01* X2268Y35616D01* X2280Y35640D01* X2283Y35649D01* X2285Y35657D01* X2285Y35666D01* X2284Y35674D01* X2282Y35683D01* X2278Y35690D01* X2273Y35697D01* X2266Y35703D01* X2259Y35708D01* X2251Y35711D01* X2242Y35713D01* X2234Y35714D01* X2225Y35713D01* X2217Y35710D01* X2217Y35710D01* Y37280D01* X2217Y37280D01* X2226Y37281D01* X2235Y37283D01* X2243Y37286D01* X2250Y37291D01* X2256Y37297D01* X2261Y37304D01* X2265Y37312D01* X2267Y37320D01* X2268Y37329D01* X2268Y37338D01* X2266Y37346D01* X2262Y37354D01* X2250Y37378D01* X2240Y37404D01* X2233Y37430D01* X2228Y37456D01* X2225Y37483D01* X2225Y37511D01* X2227Y37538D01* X2232Y37564D01* X2239Y37590D01* X2248Y37616D01* X2260Y37640D01* X2263Y37649D01* X2265Y37657D01* X2265Y37666D01* X2264Y37674D01* X2262Y37683D01* X2258Y37690D01* X2253Y37697D01* X2246Y37703D01* X2239Y37708D01* X2231Y37711D01* X2222Y37713D01* X2217Y37714D01* Y39284D01* X2223Y39286D01* X2230Y39291D01* X2236Y39297D01* X2241Y39304D01* X2245Y39312D01* X2247Y39320D01* X2248Y39329D01* X2248Y39338D01* X2246Y39346D01* X2242Y39354D01* X2230Y39378D01* X2220Y39404D01* X2217Y39417D01* Y39583D01* X2219Y39590D01* X2228Y39616D01* X2240Y39640D01* X2243Y39649D01* X2245Y39657D01* X2245Y39666D01* X2244Y39674D01* X2242Y39683D01* X2238Y39690D01* X2233Y39697D01* X2226Y39703D01* X2219Y39708D01* X2217Y39709D01* Y40000D01* G37* G36* Y31343D02*X2219Y31338D01* X2235Y31306D01* X2239Y31299D01* X2245Y31292D01* X2253Y31287D01* X2260Y31283D01* X2269Y31281D01* X2277Y31280D01* X2286Y31281D01* X2295Y31283D01* X2303Y31286D01* X2310Y31291D01* X2316Y31297D01* X2317Y31298D01* Y29709D01* X2311Y29711D01* X2302Y29713D01* X2294Y29714D01* X2285Y29713D01* X2277Y29710D01* X2269Y29706D01* X2262Y29701D01* X2256Y29695D01* X2251Y29687D01* X2236Y29655D01* X2223Y29621D01* X2217Y29596D01* Y31343D01* G37* G36* Y29403D02*X2225Y29372D01* X2239Y29338D01* X2255Y29306D01* X2259Y29299D01* X2265Y29292D01* X2273Y29287D01* X2280Y29283D01* X2289Y29281D01* X2297Y29280D01* X2306Y29281D01* X2315Y29283D01* X2317Y29284D01* Y27714D01* X2314Y27714D01* X2305Y27713D01* X2297Y27710D01* X2289Y27706D01* X2282Y27701D01* X2276Y27695D01* X2271Y27687D01* X2256Y27655D01* X2243Y27621D01* X2234Y27586D01* X2228Y27550D01* X2225Y27514D01* X2225Y27478D01* X2229Y27442D01* X2235Y27407D01* X2245Y27372D01* X2259Y27338D01* X2275Y27306D01* X2279Y27299D01* X2285Y27292D01* X2293Y27287D01* X2300Y27283D01* X2309Y27281D01* X2317Y27280D01* Y25710D01* X2309Y25706D01* X2302Y25701D01* X2296Y25695D01* X2291Y25687D01* X2276Y25655D01* X2263Y25621D01* X2254Y25586D01* X2248Y25550D01* X2245Y25514D01* X2245Y25478D01* X2249Y25442D01* X2255Y25407D01* X2265Y25372D01* X2279Y25338D01* X2295Y25306D01* X2299Y25299D01* X2305Y25292D01* X2313Y25287D01* X2317Y25285D01* Y23695D01* X2316Y23695D01* X2311Y23687D01* X2296Y23655D01* X2283Y23621D01* X2274Y23586D01* X2268Y23550D01* X2265Y23514D01* X2265Y23478D01* X2269Y23442D01* X2275Y23407D01* X2285Y23372D01* X2299Y23338D01* X2315Y23306D01* X2317Y23303D01* Y21656D01* X2316Y21655D01* X2303Y21621D01* X2294Y21586D01* X2288Y21550D01* X2285Y21514D01* X2285Y21478D01* X2289Y21442D01* X2295Y21407D01* X2305Y21372D01* X2317Y21343D01* Y19596D01* X2314Y19586D01* X2308Y19550D01* X2305Y19514D01* X2305Y19478D01* X2309Y19442D01* X2315Y19407D01* X2317Y19403D01* Y0D01* X2217D01* Y29403D01* G37* G36* X2317Y29417D02*X2313Y29430D01* X2308Y29456D01* X2305Y29483D01* X2305Y29511D01* X2307Y29538D01* X2312Y29564D01* X2317Y29583D01* Y29417D01* G37* G36* Y31365D02*X2310Y31378D01* X2300Y31404D01* X2293Y31430D01* X2288Y31456D01* X2285Y31483D01* X2285Y31511D01* X2287Y31538D01* X2292Y31564D01* X2299Y31590D01* X2308Y31616D01* X2317Y31634D01* Y31365D01* G37* G36* Y40000D02*X2397D01* Y39884D01* X2377Y39879D01* X2343Y39866D01* X2317Y39852D01* Y40000D01* G37* G36* Y39759D02*X2317Y39759D01* X2325Y39757D01* X2334Y39756D01* X2343Y39756D01* X2351Y39758D01* X2359Y39762D01* X2383Y39774D01* X2397Y39779D01* Y39220D01* X2388Y39223D01* X2364Y39235D01* X2356Y39238D01* X2347Y39240D01* X2338Y39240D01* X2330Y39239D01* X2321Y39237D01* X2317Y39234D01* Y39759D01* G37* G36* Y39147D02*X2317Y39146D01* X2349Y39131D01* X2383Y39118D01* X2397Y39115D01* Y37879D01* X2363Y37866D01* X2331Y37849D01* X2323Y37845D01* X2317Y37839D01* X2317Y37838D01* Y39147D01* G37* G36* Y37774D02*X2322Y37768D01* X2329Y37763D01* X2337Y37759D01* X2345Y37757D01* X2354Y37756D01* X2363Y37756D01* X2371Y37758D01* X2379Y37762D01* X2397Y37771D01* Y37229D01* X2384Y37235D01* X2376Y37238D01* X2367Y37240D01* X2358Y37240D01* X2350Y37239D01* X2341Y37237D01* X2334Y37233D01* X2327Y37228D01* X2321Y37221D01* X2317Y37215D01* Y37774D01* G37* G36* Y37167D02*X2318Y37164D01* X2323Y37157D01* X2329Y37151D01* X2337Y37146D01* X2369Y37131D01* X2397Y37121D01* Y35871D01* X2383Y35866D01* X2351Y35849D01* X2343Y35845D01* X2337Y35839D01* X2332Y35832D01* X2328Y35824D01* X2326Y35815D01* X2325Y35807D01* X2325Y35798D01* X2328Y35790D01* X2331Y35782D01* X2336Y35774D01* X2342Y35768D01* X2349Y35763D01* X2357Y35759D01* X2365Y35757D01* X2374Y35756D01* X2383Y35756D01* X2391Y35758D01* X2397Y35761D01* Y35238D01* X2396Y35238D01* X2387Y35240D01* X2378Y35240D01* X2370Y35239D01* X2361Y35237D01* X2354Y35233D01* X2347Y35228D01* X2341Y35221D01* X2336Y35214D01* X2333Y35206D01* X2331Y35197D01* X2330Y35189D01* X2331Y35180D01* X2334Y35172D01* X2338Y35164D01* X2343Y35157D01* X2349Y35151D01* X2357Y35146D01* X2389Y35131D01* X2397Y35128D01* Y33862D01* X2371Y33849D01* X2363Y33845D01* X2357Y33839D01* X2352Y33832D01* X2348Y33824D01* X2346Y33815D01* X2345Y33807D01* X2345Y33798D01* X2348Y33790D01* X2351Y33782D01* X2356Y33774D01* X2362Y33768D01* X2369Y33763D01* X2377Y33759D01* X2385Y33757D01* X2394Y33756D01* X2397Y33756D01* Y33240D01* X2390Y33239D01* X2381Y33237D01* X2374Y33233D01* X2367Y33228D01* X2361Y33221D01* X2356Y33214D01* X2353Y33206D01* X2351Y33197D01* X2350Y33189D01* X2351Y33180D01* X2354Y33172D01* X2358Y33164D01* X2363Y33157D01* X2369Y33151D01* X2377Y33146D01* X2397Y33137D01* Y31852D01* X2391Y31849D01* X2383Y31845D01* X2377Y31839D01* X2372Y31832D01* X2368Y31824D01* X2366Y31815D01* X2365Y31807D01* X2365Y31798D01* X2368Y31790D01* X2371Y31782D01* X2376Y31774D01* X2382Y31768D01* X2389Y31763D01* X2397Y31759D01* Y31234D01* X2394Y31233D01* X2387Y31228D01* X2381Y31221D01* X2376Y31214D01* X2373Y31206D01* X2371Y31197D01* X2370Y31189D01* X2371Y31180D01* X2374Y31172D01* X2378Y31164D01* X2383Y31157D01* X2389Y31151D01* X2397Y31147D01* Y29838D01* X2392Y29832D01* X2388Y29824D01* X2386Y29815D01* X2385Y29807D01* X2385Y29798D01* X2388Y29790D01* X2391Y29782D01* X2396Y29774D01* X2397Y29774D01* Y29215D01* X2396Y29214D01* X2393Y29206D01* X2391Y29197D01* X2390Y29189D01* X2391Y29180D01* X2394Y29172D01* X2397Y29167D01* Y23692D01* X2393Y23697D01* X2386Y23703D01* X2379Y23708D01* X2371Y23711D01* X2362Y23713D01* X2354Y23714D01* X2345Y23713D01* X2337Y23710D01* X2329Y23706D01* X2322Y23701D01* X2317Y23695D01* Y25285D01* X2320Y25283D01* X2329Y25281D01* X2337Y25280D01* X2346Y25281D01* X2355Y25283D01* X2363Y25286D01* X2370Y25291D01* X2376Y25297D01* X2381Y25304D01* X2385Y25312D01* X2387Y25320D01* X2388Y25329D01* X2388Y25338D01* X2386Y25346D01* X2382Y25354D01* X2370Y25378D01* X2360Y25404D01* X2353Y25430D01* X2348Y25456D01* X2345Y25483D01* X2345Y25511D01* X2347Y25538D01* X2352Y25564D01* X2359Y25590D01* X2368Y25616D01* X2380Y25640D01* X2383Y25649D01* X2385Y25657D01* X2385Y25666D01* X2384Y25674D01* X2382Y25683D01* X2378Y25690D01* X2373Y25697D01* X2366Y25703D01* X2359Y25708D01* X2351Y25711D01* X2342Y25713D01* X2334Y25714D01* X2325Y25713D01* X2317Y25710D01* X2317Y25710D01* Y27280D01* X2317Y27280D01* X2326Y27281D01* X2335Y27283D01* X2343Y27286D01* X2350Y27291D01* X2356Y27297D01* X2361Y27304D01* X2365Y27312D01* X2367Y27320D01* X2368Y27329D01* X2368Y27338D01* X2366Y27346D01* X2362Y27354D01* X2350Y27378D01* X2340Y27404D01* X2333Y27430D01* X2328Y27456D01* X2325Y27483D01* X2325Y27511D01* X2327Y27538D01* X2332Y27564D01* X2339Y27590D01* X2348Y27616D01* X2360Y27640D01* X2363Y27649D01* X2365Y27657D01* X2365Y27666D01* X2364Y27674D01* X2362Y27683D01* X2358Y27690D01* X2353Y27697D01* X2346Y27703D01* X2339Y27708D01* X2331Y27711D01* X2322Y27713D01* X2317Y27714D01* Y29284D01* X2323Y29286D01* X2330Y29291D01* X2336Y29297D01* X2341Y29304D01* X2345Y29312D01* X2347Y29320D01* X2348Y29329D01* X2348Y29338D01* X2346Y29346D01* X2342Y29354D01* X2330Y29378D01* X2320Y29404D01* X2317Y29417D01* Y29583D01* X2319Y29590D01* X2328Y29616D01* X2340Y29640D01* X2343Y29649D01* X2345Y29657D01* X2345Y29666D01* X2344Y29674D01* X2342Y29683D01* X2338Y29690D01* X2333Y29697D01* X2326Y29703D01* X2319Y29708D01* X2317Y29709D01* Y31298D01* X2321Y31304D01* X2325Y31312D01* X2327Y31320D01* X2328Y31329D01* X2328Y31338D01* X2326Y31346D01* X2322Y31354D01* X2317Y31365D01* Y31634D01* X2320Y31640D01* X2323Y31649D01* X2325Y31657D01* X2325Y31666D01* X2324Y31674D01* X2322Y31683D01* X2318Y31690D01* X2317Y31692D01* Y37167D01* G37* G36* Y23303D02*X2319Y23299D01* X2325Y23292D01* X2333Y23287D01* X2340Y23283D01* X2349Y23281D01* X2357Y23280D01* X2366Y23281D01* X2375Y23283D01* X2383Y23286D01* X2390Y23291D01* X2396Y23297D01* X2397Y23298D01* Y21709D01* X2391Y21711D01* X2382Y21713D01* X2374Y21714D01* X2365Y21713D01* X2357Y21710D01* X2349Y21706D01* X2342Y21701D01* X2336Y21695D01* X2331Y21687D01* X2317Y21656D01* Y23303D01* G37* G36* Y21343D02*X2319Y21338D01* X2335Y21306D01* X2339Y21299D01* X2345Y21292D01* X2353Y21287D01* X2360Y21283D01* X2369Y21281D01* X2377Y21280D01* X2386Y21281D01* X2395Y21283D01* X2397Y21284D01* Y19714D01* X2394Y19714D01* X2385Y19713D01* X2377Y19710D01* X2369Y19706D01* X2362Y19701D01* X2356Y19695D01* X2351Y19687D01* X2336Y19655D01* X2323Y19621D01* X2317Y19596D01* Y21343D01* G37* G36* Y19403D02*X2325Y19372D01* X2339Y19338D01* X2355Y19306D01* X2359Y19299D01* X2365Y19292D01* X2373Y19287D01* X2380Y19283D01* X2389Y19281D01* X2397Y19280D01* Y17710D01* X2389Y17706D01* X2382Y17701D01* X2376Y17695D01* X2371Y17687D01* X2356Y17655D01* X2343Y17621D01* X2334Y17586D01* X2328Y17550D01* X2325Y17514D01* X2325Y17478D01* X2329Y17442D01* X2335Y17407D01* X2345Y17372D01* X2359Y17338D01* X2375Y17306D01* X2379Y17299D01* X2385Y17292D01* X2393Y17287D01* X2397Y17285D01* Y15695D01* X2396Y15695D01* X2391Y15687D01* X2376Y15655D01* X2363Y15621D01* X2354Y15586D01* X2348Y15550D01* X2345Y15514D01* X2345Y15478D01* X2349Y15442D01* X2355Y15407D01* X2365Y15372D01* X2379Y15338D01* X2395Y15306D01* X2397Y15303D01* Y13656D01* X2396Y13655D01* X2383Y13621D01* X2374Y13586D01* X2368Y13550D01* X2365Y13514D01* X2365Y13478D01* X2369Y13442D01* X2375Y13407D01* X2385Y13372D01* X2397Y13343D01* Y11596D01* X2394Y11586D01* X2388Y11550D01* X2385Y11514D01* X2385Y11478D01* X2389Y11442D01* X2395Y11407D01* X2397Y11403D01* Y0D01* X2317D01* Y19403D01* G37* G36* X2397Y23365D02*X2390Y23378D01* X2380Y23404D01* X2373Y23430D01* X2368Y23456D01* X2365Y23483D01* X2365Y23511D01* X2367Y23538D01* X2372Y23564D01* X2379Y23590D01* X2388Y23616D01* X2397Y23634D01* Y23365D01* G37* G36* Y21417D02*X2393Y21430D01* X2388Y21456D01* X2385Y21483D01* X2385Y21511D01* X2387Y21538D01* X2392Y21564D01* X2397Y21583D01* Y21417D01* G37* G36* Y40000D02*X2727D01* Y37840D01* X2726Y37842D01* X2720Y37848D01* X2712Y37853D01* X2680Y37868D01* X2646Y37881D01* X2611Y37890D01* X2575Y37896D01* X2539Y37899D01* X2503Y37899D01* X2467Y37895D01* X2431Y37889D01* X2397Y37879D01* X2397D01* Y39115D01* X2418Y39109D01* X2454Y39103D01* X2490Y39100D01* X2526Y39100D01* X2562Y39104D01* X2598Y39111D01* X2632Y39121D01* X2666Y39134D01* X2698Y39150D01* X2706Y39155D01* X2712Y39161D01* X2717Y39168D01* X2721Y39175D01* X2723Y39184D01* X2724Y39193D01* X2724Y39201D01* X2721Y39210D01* X2718Y39218D01* X2713Y39225D01* X2707Y39231D01* X2700Y39236D01* X2692Y39240D01* X2684Y39243D01* X2675Y39243D01* X2666Y39243D01* X2658Y39241D01* X2650Y39237D01* X2626Y39225D01* X2600Y39215D01* X2574Y39208D01* X2548Y39203D01* X2521Y39200D01* X2494Y39200D01* X2467Y39202D01* X2440Y39207D01* X2414Y39214D01* X2397Y39220D01* Y39779D01* X2409Y39784D01* X2435Y39791D01* X2461Y39796D01* X2488Y39799D01* X2515Y39799D01* X2542Y39797D01* X2569Y39793D01* X2595Y39785D01* X2621Y39776D01* X2645Y39764D01* X2653Y39761D01* X2662Y39759D01* X2671Y39759D01* X2679Y39760D01* X2688Y39762D01* X2695Y39766D01* X2702Y39772D01* X2708Y39778D01* X2713Y39785D01* X2716Y39793D01* X2718Y39802D01* X2719Y39810D01* X2718Y39819D01* X2715Y39827D01* X2711Y39835D01* X2706Y39842D01* X2700Y39848D01* X2692Y39853D01* X2660Y39868D01* X2626Y39881D01* X2591Y39890D01* X2555Y39896D01* X2519Y39899D01* X2483Y39899D01* X2447Y39895D01* X2411Y39889D01* X2397Y39884D01* Y40000D01* G37* G36* Y37771D02*X2403Y37774D01* X2429Y37784D01* X2455Y37791D01* X2481Y37796D01* X2508Y37799D01* X2535Y37799D01* X2562Y37797D01* X2589Y37793D01* X2615Y37785D01* X2641Y37776D01* X2665Y37764D01* X2673Y37761D01* X2682Y37759D01* X2691Y37759D01* X2699Y37760D01* X2708Y37762D01* X2715Y37766D01* X2722Y37772D01* X2727Y37777D01* Y37231D01* X2727Y37231D01* X2720Y37236D01* X2712Y37240D01* X2704Y37243D01* X2695Y37243D01* X2686Y37243D01* X2678Y37241D01* X2670Y37237D01* X2646Y37225D01* X2620Y37215D01* X2594Y37208D01* X2568Y37203D01* X2541Y37200D01* X2514Y37200D01* X2487Y37202D01* X2460Y37207D01* X2434Y37214D01* X2408Y37223D01* X2397Y37229D01* Y37771D01* G37* G36* Y37121D02*X2403Y37118D01* X2438Y37109D01* X2474Y37103D01* X2510Y37100D01* X2546Y37100D01* X2582Y37104D01* X2618Y37111D01* X2652Y37121D01* X2686Y37134D01* X2718Y37150D01* X2726Y37155D01* X2727Y37156D01* Y35855D01* X2700Y35868D01* X2666Y35881D01* X2631Y35890D01* X2595Y35896D01* X2559Y35899D01* X2523Y35899D01* X2487Y35895D01* X2451Y35889D01* X2417Y35879D01* X2397Y35871D01* Y37121D01* G37* G36* Y35761D02*X2399Y35762D01* X2423Y35774D01* X2449Y35784D01* X2475Y35791D01* X2501Y35796D01* X2528Y35799D01* X2555Y35799D01* X2582Y35797D01* X2609Y35793D01* X2635Y35785D01* X2661Y35776D01* X2685Y35764D01* X2693Y35761D01* X2702Y35759D01* X2711Y35759D01* X2719Y35760D01* X2727Y35762D01* Y35242D01* X2724Y35243D01* X2715Y35243D01* X2706Y35243D01* X2698Y35241D01* X2690Y35237D01* X2666Y35225D01* X2640Y35215D01* X2614Y35208D01* X2588Y35203D01* X2561Y35200D01* X2534Y35200D01* X2507Y35202D01* X2480Y35207D01* X2454Y35214D01* X2428Y35223D01* X2404Y35235D01* X2397Y35238D01* Y35761D01* G37* G36* Y35128D02*X2423Y35118D01* X2458Y35109D01* X2494Y35103D01* X2530Y35100D01* X2566Y35100D01* X2602Y35104D01* X2638Y35111D01* X2672Y35121D01* X2706Y35134D01* X2727Y35144D01* Y33865D01* X2720Y33868D01* X2686Y33881D01* X2651Y33890D01* X2615Y33896D01* X2579Y33899D01* X2543Y33899D01* X2507Y33895D01* X2471Y33889D01* X2437Y33879D01* X2403Y33866D01* X2397Y33862D01* Y35128D01* G37* G36* Y33756D02*X2403Y33756D01* X2411Y33758D01* X2419Y33762D01* X2443Y33774D01* X2469Y33784D01* X2495Y33791D01* X2521Y33796D01* X2548Y33799D01* X2575Y33799D01* X2602Y33797D01* X2629Y33793D01* X2655Y33785D01* X2681Y33776D01* X2705Y33764D01* X2713Y33761D01* X2722Y33759D01* X2727Y33759D01* Y33243D01* X2726Y33243D01* X2718Y33241D01* X2710Y33237D01* X2686Y33225D01* X2660Y33215D01* X2634Y33208D01* X2608Y33203D01* X2581Y33200D01* X2554Y33200D01* X2527Y33202D01* X2500Y33207D01* X2474Y33214D01* X2448Y33223D01* X2424Y33235D01* X2416Y33238D01* X2407Y33240D01* X2398Y33240D01* X2397Y33240D01* Y33756D01* G37* G36* Y33137D02*X2409Y33131D01* X2443Y33118D01* X2478Y33109D01* X2514Y33103D01* X2550Y33100D01* X2586Y33100D01* X2622Y33104D01* X2658Y33111D01* X2692Y33121D01* X2726Y33134D01* X2727Y33134D01* Y31873D01* X2706Y31881D01* X2671Y31890D01* X2635Y31896D01* X2599Y31899D01* X2563Y31899D01* X2527Y31895D01* X2491Y31889D01* X2457Y31879D01* X2423Y31866D01* X2397Y31852D01* Y33137D01* G37* G36* Y31759D02*X2397Y31759D01* X2405Y31757D01* X2414Y31756D01* X2423Y31756D01* X2431Y31758D01* X2439Y31762D01* X2463Y31774D01* X2489Y31784D01* X2515Y31791D01* X2541Y31796D01* X2568Y31799D01* X2595Y31799D01* X2622Y31797D01* X2649Y31793D01* X2675Y31785D01* X2701Y31776D01* X2725Y31764D01* X2727Y31764D01* Y31236D01* X2706Y31225D01* X2680Y31215D01* X2654Y31208D01* X2628Y31203D01* X2601Y31200D01* X2574Y31200D01* X2547Y31202D01* X2520Y31207D01* X2494Y31214D01* X2468Y31223D01* X2444Y31235D01* X2436Y31238D01* X2427Y31240D01* X2418Y31240D01* X2410Y31239D01* X2401Y31237D01* X2397Y31234D01* Y31759D01* G37* G36* Y31147D02*X2397Y31146D01* X2429Y31131D01* X2463Y31118D01* X2498Y31109D01* X2534Y31103D01* X2570Y31100D01* X2606Y31100D01* X2642Y31104D01* X2678Y31111D01* X2712Y31121D01* X2727Y31126D01* Y29880D01* X2726Y29881D01* X2691Y29890D01* X2655Y29896D01* X2619Y29899D01* X2583Y29899D01* X2547Y29895D01* X2511Y29889D01* X2477Y29879D01* X2443Y29866D01* X2411Y29849D01* X2403Y29845D01* X2397Y29839D01* X2397Y29838D01* Y31147D01* G37* G36* Y29774D02*X2402Y29768D01* X2409Y29763D01* X2417Y29759D01* X2425Y29757D01* X2434Y29756D01* X2443Y29756D01* X2451Y29758D01* X2459Y29762D01* X2483Y29774D01* X2509Y29784D01* X2535Y29791D01* X2561Y29796D01* X2588Y29799D01* X2615Y29799D01* X2642Y29797D01* X2669Y29793D01* X2695Y29785D01* X2721Y29776D01* X2727Y29773D01* Y29226D01* X2726Y29225D01* X2700Y29215D01* X2674Y29208D01* X2648Y29203D01* X2621Y29200D01* X2594Y29200D01* X2567Y29202D01* X2540Y29207D01* X2514Y29214D01* X2488Y29223D01* X2464Y29235D01* X2456Y29238D01* X2447Y29240D01* X2438Y29240D01* X2430Y29239D01* X2421Y29237D01* X2414Y29233D01* X2407Y29228D01* X2401Y29221D01* X2397Y29215D01* Y29774D01* G37* G36* Y29167D02*X2398Y29164D01* X2403Y29157D01* X2409Y29151D01* X2417Y29146D01* X2449Y29131D01* X2477Y29121D01* Y27871D01* X2463Y27866D01* X2431Y27849D01* X2423Y27845D01* X2417Y27839D01* X2412Y27832D01* X2408Y27824D01* X2406Y27815D01* X2405Y27807D01* X2405Y27798D01* X2408Y27790D01* X2411Y27782D01* X2416Y27774D01* X2422Y27768D01* X2429Y27763D01* X2437Y27759D01* X2445Y27757D01* X2454Y27756D01* X2463Y27756D01* X2471Y27758D01* X2477Y27761D01* Y27238D01* X2476Y27238D01* X2467Y27240D01* X2458Y27240D01* X2450Y27239D01* X2441Y27237D01* X2434Y27233D01* X2427Y27228D01* X2421Y27221D01* X2416Y27214D01* X2413Y27206D01* X2411Y27197D01* X2410Y27189D01* X2411Y27180D01* X2414Y27172D01* X2418Y27164D01* X2423Y27157D01* X2429Y27151D01* X2437Y27146D01* X2469Y27131D01* X2477Y27128D01* Y25862D01* X2451Y25849D01* X2443Y25845D01* X2437Y25839D01* X2432Y25832D01* X2428Y25824D01* X2426Y25815D01* X2425Y25807D01* X2425Y25798D01* X2428Y25790D01* X2431Y25782D01* X2436Y25774D01* X2442Y25768D01* X2449Y25763D01* X2457Y25759D01* X2465Y25757D01* X2474Y25756D01* X2477Y25756D01* Y25240D01* X2470Y25239D01* X2461Y25237D01* X2454Y25233D01* X2447Y25228D01* X2441Y25221D01* X2436Y25214D01* X2433Y25206D01* X2431Y25197D01* X2430Y25189D01* X2431Y25180D01* X2434Y25172D01* X2438Y25164D01* X2443Y25157D01* X2449Y25151D01* X2457Y25146D01* X2477Y25137D01* Y23852D01* X2471Y23849D01* X2463Y23845D01* X2457Y23839D01* X2452Y23832D01* X2448Y23824D01* X2446Y23815D01* X2445Y23807D01* X2445Y23798D01* X2448Y23790D01* X2451Y23782D01* X2456Y23774D01* X2462Y23768D01* X2469Y23763D01* X2477Y23759D01* Y23234D01* X2474Y23233D01* X2467Y23228D01* X2461Y23221D01* X2456Y23214D01* X2453Y23206D01* X2451Y23197D01* X2450Y23189D01* X2451Y23180D01* X2454Y23172D01* X2458Y23164D01* X2463Y23157D01* X2469Y23151D01* X2477Y23147D01* Y21838D01* X2472Y21832D01* X2468Y21824D01* X2466Y21815D01* X2465Y21807D01* X2465Y21798D01* X2468Y21790D01* X2471Y21782D01* X2476Y21774D01* X2477Y21774D01* Y21215D01* X2476Y21214D01* X2473Y21206D01* X2471Y21197D01* X2470Y21189D01* X2471Y21180D01* X2474Y21172D01* X2477Y21167D01* Y15692D01* X2473Y15697D01* X2466Y15703D01* X2459Y15708D01* X2451Y15711D01* X2442Y15713D01* X2434Y15714D01* X2425Y15713D01* X2417Y15710D01* X2409Y15706D01* X2402Y15701D01* X2397Y15695D01* Y17285D01* X2400Y17283D01* X2409Y17281D01* X2417Y17280D01* X2426Y17281D01* X2435Y17283D01* X2443Y17286D01* X2450Y17291D01* X2456Y17297D01* X2461Y17304D01* X2465Y17312D01* X2467Y17320D01* X2468Y17329D01* X2468Y17338D01* X2466Y17346D01* X2462Y17354D01* X2450Y17378D01* X2440Y17404D01* X2433Y17430D01* X2428Y17456D01* X2425Y17483D01* X2425Y17511D01* X2427Y17538D01* X2432Y17564D01* X2439Y17590D01* X2448Y17616D01* X2460Y17640D01* X2463Y17649D01* X2465Y17657D01* X2465Y17666D01* X2464Y17674D01* X2462Y17683D01* X2458Y17690D01* X2453Y17697D01* X2446Y17703D01* X2439Y17708D01* X2431Y17711D01* X2422Y17713D01* X2414Y17714D01* X2405Y17713D01* X2397Y17710D01* X2397Y17710D01* Y19280D01* X2397Y19280D01* X2406Y19281D01* X2415Y19283D01* X2423Y19286D01* X2430Y19291D01* X2436Y19297D01* X2441Y19304D01* X2445Y19312D01* X2447Y19320D01* X2448Y19329D01* X2448Y19338D01* X2446Y19346D01* X2442Y19354D01* X2430Y19378D01* X2420Y19404D01* X2413Y19430D01* X2408Y19456D01* X2405Y19483D01* X2405Y19511D01* X2407Y19538D01* X2412Y19564D01* X2419Y19590D01* X2428Y19616D01* X2440Y19640D01* X2443Y19649D01* X2445Y19657D01* X2445Y19666D01* X2444Y19674D01* X2442Y19683D01* X2438Y19690D01* X2433Y19697D01* X2426Y19703D01* X2419Y19708D01* X2411Y19711D01* X2402Y19713D01* X2397Y19714D01* Y21284D01* X2403Y21286D01* X2410Y21291D01* X2416Y21297D01* X2421Y21304D01* X2425Y21312D01* X2427Y21320D01* X2428Y21329D01* X2428Y21338D01* X2426Y21346D01* X2422Y21354D01* X2410Y21378D01* X2400Y21404D01* X2397Y21417D01* Y21583D01* X2399Y21590D01* X2408Y21616D01* X2420Y21640D01* X2423Y21649D01* X2425Y21657D01* X2425Y21666D01* X2424Y21674D01* X2422Y21683D01* X2418Y21690D01* X2413Y21697D01* X2406Y21703D01* X2399Y21708D01* X2397Y21709D01* Y23298D01* X2401Y23304D01* X2405Y23312D01* X2407Y23320D01* X2408Y23329D01* X2408Y23338D01* X2406Y23346D01* X2402Y23354D01* X2397Y23365D01* Y23634D01* X2400Y23640D01* X2403Y23649D01* X2405Y23657D01* X2405Y23666D01* X2404Y23674D01* X2402Y23683D01* X2398Y23690D01* X2397Y23692D01* Y29167D01* G37* G36* X2477Y0D02*X2397D01* Y11403D01* X2405Y11372D01* X2419Y11338D01* X2435Y11306D01* X2439Y11299D01* X2445Y11292D01* X2453Y11287D01* X2460Y11283D01* X2469Y11281D01* X2477Y11280D01* Y9710D01* X2469Y9706D01* X2462Y9701D01* X2456Y9695D01* X2451Y9687D01* X2436Y9655D01* X2423Y9621D01* X2414Y9586D01* X2408Y9550D01* X2405Y9514D01* X2405Y9478D01* X2409Y9442D01* X2415Y9407D01* X2425Y9372D01* X2439Y9338D01* X2455Y9306D01* X2459Y9299D01* X2465Y9292D01* X2473Y9287D01* X2477Y9285D01* Y7695D01* X2476Y7695D01* X2471Y7687D01* X2456Y7655D01* X2443Y7621D01* X2434Y7586D01* X2428Y7550D01* X2425Y7514D01* X2425Y7478D01* X2429Y7442D01* X2435Y7407D01* X2445Y7372D01* X2459Y7338D01* X2475Y7306D01* X2477Y7303D01* Y5656D01* X2476Y5655D01* X2463Y5621D01* X2454Y5586D01* X2448Y5550D01* X2445Y5514D01* X2445Y5478D01* X2449Y5442D01* X2455Y5407D01* X2465Y5372D01* X2477Y5343D01* Y3596D01* X2474Y3586D01* X2468Y3550D01* X2465Y3514D01* X2465Y3478D01* X2469Y3442D01* X2475Y3407D01* X2477Y3403D01* Y0D01* G37* G36* Y11714D02*X2474Y11714D01* X2465Y11713D01* X2457Y11710D01* X2449Y11706D01* X2442Y11701D01* X2436Y11695D01* X2431Y11687D01* X2416Y11655D01* X2403Y11621D01* X2397Y11596D01* Y13343D01* X2399Y13338D01* X2415Y13306D01* X2419Y13299D01* X2425Y13292D01* X2433Y13287D01* X2440Y13283D01* X2449Y13281D01* X2457Y13280D01* X2466Y13281D01* X2475Y13283D01* X2477Y13284D01* Y11714D01* G37* G36* Y13417D02*X2473Y13430D01* X2468Y13456D01* X2465Y13483D01* X2465Y13511D01* X2467Y13538D01* X2472Y13564D01* X2477Y13583D01* Y13417D01* G37* G36* Y13709D02*X2471Y13711D01* X2462Y13713D01* X2454Y13714D01* X2445Y13713D01* X2437Y13710D01* X2429Y13706D01* X2422Y13701D01* X2416Y13695D01* X2411Y13687D01* X2397Y13656D01* Y15303D01* X2399Y15299D01* X2405Y15292D01* X2413Y15287D01* X2420Y15283D01* X2429Y15281D01* X2437Y15280D01* X2446Y15281D01* X2455Y15283D01* X2463Y15286D01* X2470Y15291D01* X2476Y15297D01* X2477Y15298D01* Y13709D01* G37* G36* Y15365D02*X2470Y15378D01* X2460Y15404D01* X2453Y15430D01* X2448Y15456D01* X2445Y15483D01* X2445Y15511D01* X2447Y15538D01* X2452Y15564D01* X2459Y15590D01* X2468Y15616D01* X2477Y15634D01* Y15365D01* G37* G36* Y29121D02*X2483Y29118D01* X2518Y29109D01* X2554Y29103D01* X2590Y29100D01* X2626Y29100D01* X2662Y29104D01* X2698Y29111D01* X2727Y29119D01* Y27886D01* X2711Y27890D01* X2675Y27896D01* X2639Y27899D01* X2603Y27899D01* X2567Y27895D01* X2531Y27889D01* X2497Y27879D01* X2477Y27871D01* Y29121D01* G37* G36* Y27761D02*X2479Y27762D01* X2503Y27774D01* X2529Y27784D01* X2555Y27791D01* X2581Y27796D01* X2608Y27799D01* X2635Y27799D01* X2662Y27797D01* X2689Y27793D01* X2715Y27785D01* X2727Y27781D01* Y27218D01* X2720Y27215D01* X2694Y27208D01* X2668Y27203D01* X2641Y27200D01* X2614Y27200D01* X2587Y27202D01* X2560Y27207D01* X2534Y27214D01* X2508Y27223D01* X2484Y27235D01* X2477Y27238D01* Y27761D01* G37* G36* Y27128D02*X2503Y27118D01* X2538Y27109D01* X2574Y27103D01* X2610Y27100D01* X2646Y27100D01* X2682Y27104D01* X2718Y27111D01* X2727Y27113D01* Y25891D01* X2695Y25896D01* X2659Y25899D01* X2623Y25899D01* X2587Y25895D01* X2551Y25889D01* X2517Y25879D01* X2483Y25866D01* X2477Y25862D01* Y27128D01* G37* G36* Y25756D02*X2483Y25756D01* X2491Y25758D01* X2499Y25762D01* X2523Y25774D01* X2549Y25784D01* X2575Y25791D01* X2601Y25796D01* X2628Y25799D01* X2655Y25799D01* X2682Y25797D01* X2709Y25793D01* X2727Y25788D01* Y25212D01* X2714Y25208D01* X2688Y25203D01* X2661Y25200D01* X2634Y25200D01* X2607Y25202D01* X2580Y25207D01* X2554Y25214D01* X2528Y25223D01* X2504Y25235D01* X2496Y25238D01* X2487Y25240D01* X2478Y25240D01* X2477Y25240D01* Y25756D01* G37* G36* Y25137D02*X2489Y25131D01* X2523Y25118D01* X2558Y25109D01* X2594Y25103D01* X2630Y25100D01* X2666Y25100D01* X2702Y25104D01* X2727Y25109D01* Y23894D01* X2715Y23896D01* X2679Y23899D01* X2643Y23899D01* X2607Y23895D01* X2571Y23889D01* X2537Y23879D01* X2503Y23866D01* X2477Y23852D01* Y25137D01* G37* G36* Y23759D02*X2477Y23759D01* X2485Y23757D01* X2494Y23756D01* X2503Y23756D01* X2511Y23758D01* X2519Y23762D01* X2543Y23774D01* X2569Y23784D01* X2595Y23791D01* X2621Y23796D01* X2648Y23799D01* X2675Y23799D01* X2702Y23797D01* X2727Y23793D01* Y23206D01* X2708Y23203D01* X2681Y23200D01* X2654Y23200D01* X2627Y23202D01* X2600Y23207D01* X2574Y23214D01* X2548Y23223D01* X2524Y23235D01* X2516Y23238D01* X2507Y23240D01* X2498Y23240D01* X2490Y23239D01* X2481Y23237D01* X2477Y23234D01* Y23759D01* G37* G36* Y23147D02*X2477Y23146D01* X2509Y23131D01* X2543Y23118D01* X2578Y23109D01* X2614Y23103D01* X2650Y23100D01* X2686Y23100D01* X2722Y23104D01* X2727Y23105D01* Y21897D01* X2699Y21899D01* X2663Y21899D01* X2627Y21895D01* X2591Y21889D01* X2557Y21879D01* X2523Y21866D01* X2491Y21849D01* X2483Y21845D01* X2477Y21839D01* X2477Y21838D01* Y23147D01* G37* G36* Y21774D02*X2482Y21768D01* X2489Y21763D01* X2497Y21759D01* X2505Y21757D01* X2514Y21756D01* X2523Y21756D01* X2531Y21758D01* X2539Y21762D01* X2563Y21774D01* X2589Y21784D01* X2615Y21791D01* X2641Y21796D01* X2668Y21799D01* X2695Y21799D01* X2722Y21797D01* X2727Y21796D01* Y21203D01* X2701Y21200D01* X2674Y21200D01* X2647Y21202D01* X2620Y21207D01* X2594Y21214D01* X2568Y21223D01* X2544Y21235D01* X2536Y21238D01* X2527Y21240D01* X2518Y21240D01* X2510Y21239D01* X2501Y21237D01* X2494Y21233D01* X2487Y21228D01* X2481Y21221D01* X2477Y21215D01* Y21774D01* G37* G36* Y21167D02*X2478Y21164D01* X2483Y21157D01* X2489Y21151D01* X2497Y21146D01* X2529Y21131D01* X2557Y21121D01* Y19871D01* X2543Y19866D01* X2511Y19849D01* X2503Y19845D01* X2497Y19839D01* X2492Y19832D01* X2488Y19824D01* X2486Y19815D01* X2485Y19807D01* X2485Y19798D01* X2488Y19790D01* X2491Y19782D01* X2496Y19774D01* X2502Y19768D01* X2509Y19763D01* X2517Y19759D01* X2525Y19757D01* X2534Y19756D01* X2543Y19756D01* X2551Y19758D01* X2557Y19761D01* Y19238D01* X2556Y19238D01* X2547Y19240D01* X2538Y19240D01* X2530Y19239D01* X2521Y19237D01* X2514Y19233D01* X2507Y19228D01* X2501Y19221D01* X2496Y19214D01* X2493Y19206D01* X2491Y19197D01* X2490Y19189D01* X2491Y19180D01* X2494Y19172D01* X2498Y19164D01* X2503Y19157D01* X2509Y19151D01* X2517Y19146D01* X2549Y19131D01* X2557Y19128D01* Y17862D01* X2531Y17849D01* X2523Y17845D01* X2517Y17839D01* X2512Y17832D01* X2508Y17824D01* X2506Y17815D01* X2505Y17807D01* X2505Y17798D01* X2508Y17790D01* X2511Y17782D01* X2516Y17774D01* X2522Y17768D01* X2529Y17763D01* X2537Y17759D01* X2545Y17757D01* X2554Y17756D01* X2557Y17756D01* Y17240D01* X2550Y17239D01* X2541Y17237D01* X2534Y17233D01* X2527Y17228D01* X2521Y17221D01* X2516Y17214D01* X2513Y17206D01* X2511Y17197D01* X2510Y17189D01* X2511Y17180D01* X2514Y17172D01* X2518Y17164D01* X2523Y17157D01* X2529Y17151D01* X2537Y17146D01* X2557Y17137D01* Y15852D01* X2551Y15849D01* X2543Y15845D01* X2537Y15839D01* X2532Y15832D01* X2528Y15824D01* X2526Y15815D01* X2525Y15807D01* X2525Y15798D01* X2528Y15790D01* X2531Y15782D01* X2536Y15774D01* X2542Y15768D01* X2549Y15763D01* X2557Y15759D01* Y15234D01* X2554Y15233D01* X2547Y15228D01* X2541Y15221D01* X2536Y15214D01* X2533Y15206D01* X2531Y15197D01* X2530Y15189D01* X2531Y15180D01* X2534Y15172D01* X2538Y15164D01* X2543Y15157D01* X2549Y15151D01* X2557Y15147D01* Y13838D01* X2552Y13832D01* X2548Y13824D01* X2546Y13815D01* X2545Y13807D01* X2545Y13798D01* X2548Y13790D01* X2551Y13782D01* X2556Y13774D01* X2557Y13774D01* Y13215D01* X2556Y13214D01* X2553Y13206D01* X2551Y13197D01* X2550Y13189D01* X2551Y13180D01* X2554Y13172D01* X2557Y13167D01* Y7692D01* X2553Y7697D01* X2546Y7703D01* X2539Y7708D01* X2531Y7711D01* X2522Y7713D01* X2514Y7714D01* X2505Y7713D01* X2497Y7710D01* X2489Y7706D01* X2482Y7701D01* X2477Y7695D01* Y9285D01* X2480Y9283D01* X2489Y9281D01* X2497Y9280D01* X2506Y9281D01* X2515Y9283D01* X2523Y9286D01* X2530Y9291D01* X2536Y9297D01* X2541Y9304D01* X2545Y9312D01* X2547Y9320D01* X2548Y9329D01* X2548Y9338D01* X2546Y9346D01* X2542Y9354D01* X2530Y9378D01* X2520Y9404D01* X2513Y9430D01* X2508Y9456D01* X2505Y9483D01* X2505Y9511D01* X2507Y9538D01* X2512Y9564D01* X2519Y9590D01* X2528Y9616D01* X2540Y9640D01* X2543Y9649D01* X2545Y9657D01* X2545Y9666D01* X2544Y9674D01* X2542Y9683D01* X2538Y9690D01* X2533Y9697D01* X2526Y9703D01* X2519Y9708D01* X2511Y9711D01* X2502Y9713D01* X2494Y9714D01* X2485Y9713D01* X2477Y9710D01* X2477Y9710D01* Y11280D01* X2477Y11280D01* X2486Y11281D01* X2495Y11283D01* X2503Y11286D01* X2510Y11291D01* X2516Y11297D01* X2521Y11304D01* X2525Y11312D01* X2527Y11320D01* X2528Y11329D01* X2528Y11338D01* X2526Y11346D01* X2522Y11354D01* X2510Y11378D01* X2500Y11404D01* X2493Y11430D01* X2488Y11456D01* X2485Y11483D01* X2485Y11511D01* X2487Y11538D01* X2492Y11564D01* X2499Y11590D01* X2508Y11616D01* X2520Y11640D01* X2523Y11649D01* X2525Y11657D01* X2525Y11666D01* X2524Y11674D01* X2522Y11683D01* X2518Y11690D01* X2513Y11697D01* X2506Y11703D01* X2499Y11708D01* X2491Y11711D01* X2482Y11713D01* X2477Y11714D01* Y13284D01* X2483Y13286D01* X2490Y13291D01* X2496Y13297D01* X2501Y13304D01* X2505Y13312D01* X2507Y13320D01* X2508Y13329D01* X2508Y13338D01* X2506Y13346D01* X2502Y13354D01* X2490Y13378D01* X2480Y13404D01* X2477Y13417D01* Y13583D01* X2479Y13590D01* X2488Y13616D01* X2500Y13640D01* X2503Y13649D01* X2505Y13657D01* X2505Y13666D01* X2504Y13674D01* X2502Y13683D01* X2498Y13690D01* X2493Y13697D01* X2486Y13703D01* X2479Y13708D01* X2477Y13709D01* Y15298D01* X2481Y15304D01* X2485Y15312D01* X2487Y15320D01* X2488Y15329D01* X2488Y15338D01* X2486Y15346D01* X2482Y15354D01* X2477Y15365D01* Y15634D01* X2480Y15640D01* X2483Y15649D01* X2485Y15657D01* X2485Y15666D01* X2484Y15674D01* X2482Y15683D01* X2478Y15690D01* X2477Y15692D01* Y21167D01* G37* G36* X2557Y0D02*X2477D01* Y3403D01* X2485Y3372D01* X2499Y3338D01* X2515Y3306D01* X2519Y3299D01* X2525Y3292D01* X2533Y3287D01* X2540Y3283D01* X2549Y3281D01* X2557Y3280D01* Y1710D01* X2549Y1706D01* X2542Y1701D01* X2536Y1695D01* X2531Y1687D01* X2516Y1655D01* X2503Y1621D01* X2494Y1586D01* X2488Y1550D01* X2485Y1514D01* X2485Y1478D01* X2489Y1442D01* X2495Y1407D01* X2505Y1372D01* X2519Y1338D01* X2535Y1306D01* X2539Y1299D01* X2545Y1292D01* X2553Y1287D01* X2557Y1285D01* Y0D01* G37* G36* Y3714D02*X2554Y3714D01* X2545Y3713D01* X2537Y3710D01* X2529Y3706D01* X2522Y3701D01* X2516Y3695D01* X2511Y3687D01* X2496Y3655D01* X2483Y3621D01* X2477Y3596D01* Y5343D01* X2479Y5338D01* X2495Y5306D01* X2499Y5299D01* X2505Y5292D01* X2513Y5287D01* X2520Y5283D01* X2529Y5281D01* X2537Y5280D01* X2546Y5281D01* X2555Y5283D01* X2557Y5284D01* Y3714D01* G37* G36* Y5417D02*X2553Y5430D01* X2548Y5456D01* X2545Y5483D01* X2545Y5511D01* X2547Y5538D01* X2552Y5564D01* X2557Y5583D01* Y5417D01* G37* G36* Y5709D02*X2551Y5711D01* X2542Y5713D01* X2534Y5714D01* X2525Y5713D01* X2517Y5710D01* X2509Y5706D01* X2502Y5701D01* X2496Y5695D01* X2491Y5687D01* X2477Y5656D01* Y7303D01* X2479Y7299D01* X2485Y7292D01* X2493Y7287D01* X2500Y7283D01* X2509Y7281D01* X2517Y7280D01* X2526Y7281D01* X2535Y7283D01* X2543Y7286D01* X2550Y7291D01* X2556Y7297D01* X2557Y7298D01* Y5709D01* G37* G36* Y7365D02*X2550Y7378D01* X2540Y7404D01* X2533Y7430D01* X2528Y7456D01* X2525Y7483D01* X2525Y7511D01* X2527Y7538D01* X2532Y7564D01* X2539Y7590D01* X2548Y7616D01* X2557Y7634D01* Y7365D01* G37* G36* Y21121D02*X2563Y21118D01* X2598Y21109D01* X2634Y21103D01* X2670Y21100D01* X2706Y21100D01* X2727Y21102D01* Y19899D01* X2719Y19899D01* X2683Y19899D01* X2647Y19895D01* X2611Y19889D01* X2577Y19879D01* X2557Y19871D01* Y21121D01* G37* G36* Y19761D02*X2559Y19762D01* X2583Y19774D01* X2609Y19784D01* X2635Y19791D01* X2661Y19796D01* X2688Y19799D01* X2715Y19799D01* X2727Y19798D01* Y19201D01* X2721Y19200D01* X2694Y19200D01* X2667Y19202D01* X2640Y19207D01* X2614Y19214D01* X2588Y19223D01* X2564Y19235D01* X2557Y19238D01* Y19761D01* G37* G36* Y19128D02*X2583Y19118D01* X2618Y19109D01* X2654Y19103D01* X2690Y19100D01* X2726Y19100D01* X2727Y19100D01* Y17899D01* X2703Y17899D01* X2667Y17895D01* X2631Y17889D01* X2597Y17879D01* X2563Y17866D01* X2557Y17862D01* Y19128D01* G37* G36* Y17756D02*X2563Y17756D01* X2571Y17758D01* X2579Y17762D01* X2603Y17774D01* X2629Y17784D01* X2655Y17791D01* X2681Y17796D01* X2708Y17799D01* X2727Y17799D01* Y17200D01* X2714Y17200D01* X2687Y17202D01* X2660Y17207D01* X2634Y17214D01* X2608Y17223D01* X2584Y17235D01* X2576Y17238D01* X2567Y17240D01* X2558Y17240D01* X2557Y17240D01* Y17756D01* G37* G36* Y17137D02*X2569Y17131D01* X2603Y17118D01* X2638Y17109D01* X2674Y17103D01* X2710Y17100D01* X2727Y17100D01* Y15899D01* X2723D01* X2687Y15895D01* X2651Y15889D01* X2617Y15879D01* X2583Y15866D01* X2557Y15852D01* Y17137D01* G37* G36* Y15759D02*X2557Y15759D01* X2565Y15757D01* X2574Y15756D01* X2583Y15756D01* X2591Y15758D01* X2599Y15762D01* X2623Y15774D01* X2649Y15784D01* X2675Y15791D01* X2701Y15796D01* X2727Y15799D01* Y15200D01* X2707Y15202D01* X2680Y15207D01* X2654Y15214D01* X2628Y15223D01* X2604Y15235D01* X2596Y15238D01* X2587Y15240D01* X2578Y15240D01* X2570Y15239D01* X2561Y15237D01* X2557Y15234D01* Y15759D01* G37* G36* Y15147D02*X2557Y15146D01* X2589Y15131D01* X2623Y15118D01* X2658Y15109D01* X2694Y15103D01* X2727Y15100D01* Y13897D01* X2707Y13895D01* X2671Y13889D01* X2637Y13879D01* X2603Y13866D01* X2571Y13849D01* X2563Y13845D01* X2557Y13839D01* X2557Y13838D01* Y15147D01* G37* G36* Y13774D02*X2562Y13768D01* X2569Y13763D01* X2577Y13759D01* X2585Y13757D01* X2594Y13756D01* X2603Y13756D01* X2611Y13758D01* X2619Y13762D01* X2643Y13774D01* X2669Y13784D01* X2695Y13791D01* X2721Y13796D01* X2727Y13797D01* Y13202D01* X2727Y13202D01* X2700Y13207D01* X2674Y13214D01* X2648Y13223D01* X2624Y13235D01* X2616Y13238D01* X2607Y13240D01* X2598Y13240D01* X2590Y13239D01* X2581Y13237D01* X2574Y13233D01* X2567Y13228D01* X2561Y13221D01* X2557Y13215D01* Y13774D01* G37* G36* Y13167D02*X2558Y13164D01* X2563Y13157D01* X2569Y13151D01* X2577Y13146D01* X2609Y13131D01* X2643Y13118D01* X2678Y13109D01* X2714Y13103D01* X2727Y13102D01* Y11895D01* X2727D01* X2691Y11889D01* X2657Y11879D01* X2623Y11866D01* X2591Y11849D01* X2583Y11845D01* X2577Y11839D01* X2572Y11832D01* X2568Y11824D01* X2566Y11815D01* X2565Y11807D01* X2565Y11798D01* X2568Y11790D01* X2571Y11782D01* X2576Y11774D01* X2582Y11768D01* X2589Y11763D01* X2597Y11759D01* X2605Y11757D01* X2614Y11756D01* X2623Y11756D01* X2631Y11758D01* X2639Y11762D01* X2663Y11774D01* X2689Y11784D01* X2715Y11791D01* X2727Y11794D01* Y11205D01* X2720Y11207D01* X2694Y11214D01* X2668Y11223D01* X2644Y11235D01* X2636Y11238D01* X2627Y11240D01* X2618Y11240D01* X2610Y11239D01* X2601Y11237D01* X2594Y11233D01* X2587Y11228D01* X2581Y11221D01* X2576Y11214D01* X2573Y11206D01* X2571Y11197D01* X2570Y11189D01* X2571Y11180D01* X2574Y11172D01* X2578Y11164D01* X2583Y11157D01* X2589Y11151D01* X2597Y11146D01* X2629Y11131D01* X2663Y11118D01* X2698Y11109D01* X2727Y11104D01* Y9892D01* X2711Y9889D01* X2677Y9879D01* X2643Y9866D01* X2611Y9849D01* X2603Y9845D01* X2597Y9839D01* X2592Y9832D01* X2588Y9824D01* X2586Y9815D01* X2585Y9807D01* X2585Y9798D01* X2588Y9790D01* X2591Y9782D01* X2596Y9774D01* X2602Y9768D01* X2609Y9763D01* X2617Y9759D01* X2625Y9757D01* X2634Y9756D01* X2643Y9756D01* X2651Y9758D01* X2659Y9762D01* X2683Y9774D01* X2709Y9784D01* X2727Y9789D01* Y9210D01* X2714Y9214D01* X2688Y9223D01* X2664Y9235D01* X2656Y9238D01* X2647Y9240D01* X2638Y9240D01* X2630Y9239D01* X2621Y9237D01* X2614Y9233D01* X2607Y9228D01* X2601Y9221D01* X2596Y9214D01* X2593Y9206D01* X2591Y9197D01* X2590Y9189D01* X2591Y9180D01* X2594Y9172D01* X2598Y9164D01* X2603Y9157D01* X2609Y9151D01* X2617Y9146D01* X2649Y9131D01* X2683Y9118D01* X2718Y9109D01* X2727Y9107D01* Y7887D01* X2697Y7879D01* X2663Y7866D01* X2631Y7849D01* X2623Y7845D01* X2617Y7839D01* X2612Y7832D01* X2608Y7824D01* X2606Y7815D01* X2605Y7807D01* X2605Y7798D01* X2608Y7790D01* X2611Y7782D01* X2616Y7774D01* X2622Y7768D01* X2629Y7763D01* X2637Y7759D01* X2645Y7757D01* X2654Y7756D01* X2663Y7756D01* X2671Y7758D01* X2679Y7762D01* X2703Y7774D01* X2727Y7783D01* Y7216D01* X2708Y7223D01* X2684Y7235D01* X2676Y7238D01* X2667Y7240D01* X2658Y7240D01* X2650Y7239D01* X2641Y7237D01* X2634Y7233D01* X2627Y7228D01* X2621Y7221D01* X2616Y7214D01* X2613Y7206D01* X2611Y7197D01* X2610Y7189D01* X2611Y7180D01* X2614Y7172D01* X2618Y7164D01* X2623Y7157D01* X2629Y7151D01* X2637Y7146D01* X2669Y7131D01* X2703Y7118D01* X2727Y7112D01* Y5882D01* X2717Y5879D01* X2683Y5866D01* X2651Y5849D01* X2643Y5845D01* X2637Y5839D01* X2632Y5832D01* X2628Y5824D01* X2626Y5815D01* X2625Y5807D01* X2625Y5798D01* X2628Y5790D01* X2631Y5782D01* X2636Y5774D01* X2642Y5768D01* X2649Y5763D01* X2657Y5759D01* X2665Y5757D01* X2674Y5756D01* X2683Y5756D01* X2691Y5758D01* X2699Y5762D01* X2723Y5774D01* X2727Y5776D01* Y5223D01* X2704Y5235D01* X2696Y5238D01* X2687Y5240D01* X2678Y5240D01* X2670Y5239D01* X2661Y5237D01* X2654Y5233D01* X2647Y5228D01* X2641Y5221D01* X2636Y5214D01* X2633Y5206D01* X2631Y5197D01* X2630Y5189D01* X2631Y5180D01* X2634Y5172D01* X2638Y5164D01* X2643Y5157D01* X2649Y5151D01* X2657Y5146D01* X2689Y5131D01* X2723Y5118D01* X2727Y5117D01* Y3875D01* X2703Y3866D01* X2671Y3849D01* X2663Y3845D01* X2657Y3839D01* X2652Y3832D01* X2648Y3824D01* X2646Y3815D01* X2645Y3807D01* X2645Y3798D01* X2648Y3790D01* X2651Y3782D01* X2656Y3774D01* X2662Y3768D01* X2669Y3763D01* X2677Y3759D01* X2685Y3757D01* X2694Y3756D01* X2703Y3756D01* X2711Y3758D01* X2719Y3762D01* X2727Y3766D01* Y3233D01* X2724Y3235D01* X2716Y3238D01* X2707Y3240D01* X2698Y3240D01* X2690Y3239D01* X2681Y3237D01* X2674Y3233D01* X2667Y3228D01* X2661Y3221D01* X2656Y3214D01* X2653Y3206D01* X2651Y3197D01* X2650Y3189D01* X2651Y3180D01* X2654Y3172D01* X2658Y3164D01* X2663Y3157D01* X2669Y3151D01* X2677Y3146D01* X2709Y3131D01* X2727Y3124D01* Y1867D01* X2723Y1866D01* X2691Y1849D01* X2683Y1845D01* X2677Y1839D01* X2672Y1832D01* X2668Y1824D01* X2666Y1815D01* X2665Y1807D01* X2665Y1798D01* X2668Y1790D01* X2671Y1782D01* X2676Y1774D01* X2682Y1768D01* X2689Y1763D01* X2697Y1759D01* X2705Y1757D01* X2714Y1756D01* X2723Y1756D01* X2727Y1757D01* Y1240D01* X2727D01* X2718Y1240D01* X2710Y1239D01* X2701Y1237D01* X2694Y1233D01* X2687Y1228D01* X2681Y1221D01* X2676Y1214D01* X2673Y1206D01* X2671Y1197D01* X2670Y1189D01* X2671Y1180D01* X2674Y1172D01* X2678Y1164D01* X2683Y1157D01* X2689Y1151D01* X2697Y1146D01* X2727Y1132D01* Y0D01* X2557D01* Y1285D01* X2560Y1283D01* X2569Y1281D01* X2577Y1280D01* X2586Y1281D01* X2595Y1283D01* X2603Y1286D01* X2610Y1291D01* X2616Y1297D01* X2621Y1304D01* X2625Y1312D01* X2627Y1320D01* X2628Y1329D01* X2628Y1338D01* X2626Y1346D01* X2622Y1354D01* X2610Y1378D01* X2600Y1404D01* X2593Y1430D01* X2588Y1456D01* X2585Y1483D01* X2585Y1511D01* X2587Y1538D01* X2592Y1564D01* X2599Y1590D01* X2608Y1616D01* X2620Y1640D01* X2623Y1649D01* X2625Y1657D01* X2625Y1666D01* X2624Y1674D01* X2622Y1683D01* X2618Y1690D01* X2613Y1697D01* X2606Y1703D01* X2599Y1708D01* X2591Y1711D01* X2582Y1713D01* X2574Y1714D01* X2565Y1713D01* X2557Y1710D01* X2557Y1710D01* Y3280D01* X2557Y3280D01* X2566Y3281D01* X2575Y3283D01* X2583Y3286D01* X2590Y3291D01* X2596Y3297D01* X2601Y3304D01* X2605Y3312D01* X2607Y3320D01* X2608Y3329D01* X2608Y3338D01* X2606Y3346D01* X2602Y3354D01* X2590Y3378D01* X2580Y3404D01* X2573Y3430D01* X2568Y3456D01* X2565Y3483D01* X2565Y3511D01* X2567Y3538D01* X2572Y3564D01* X2579Y3590D01* X2588Y3616D01* X2600Y3640D01* X2603Y3649D01* X2605Y3657D01* X2605Y3666D01* X2604Y3674D01* X2602Y3683D01* X2598Y3690D01* X2593Y3697D01* X2586Y3703D01* X2579Y3708D01* X2571Y3711D01* X2562Y3713D01* X2557Y3714D01* Y5284D01* X2563Y5286D01* X2570Y5291D01* X2576Y5297D01* X2581Y5304D01* X2585Y5312D01* X2587Y5320D01* X2588Y5329D01* X2588Y5338D01* X2586Y5346D01* X2582Y5354D01* X2570Y5378D01* X2560Y5404D01* X2557Y5417D01* Y5583D01* X2559Y5590D01* X2568Y5616D01* X2580Y5640D01* X2583Y5649D01* X2585Y5657D01* X2585Y5666D01* X2584Y5674D01* X2582Y5683D01* X2578Y5690D01* X2573Y5697D01* X2566Y5703D01* X2559Y5708D01* X2557Y5709D01* Y7298D01* X2561Y7304D01* X2565Y7312D01* X2567Y7320D01* X2568Y7329D01* X2568Y7338D01* X2566Y7346D01* X2562Y7354D01* X2557Y7365D01* Y7634D01* X2560Y7640D01* X2563Y7649D01* X2565Y7657D01* X2565Y7666D01* X2564Y7674D01* X2562Y7683D01* X2558Y7690D01* X2557Y7692D01* Y13167D01* G37* G36* X2727Y40000D02*X2872D01* Y39656D01* X2870Y39661D01* X2854Y39694D01* X2850Y39701D01* X2844Y39707D01* X2836Y39712D01* X2829Y39716D01* X2820Y39718D01* X2812Y39719D01* X2803Y39719D01* X2794Y39717D01* X2786Y39713D01* X2779Y39708D01* X2773Y39702D01* X2768Y39695D01* X2764Y39687D01* X2762Y39679D01* X2761Y39670D01* X2761Y39661D01* X2763Y39653D01* X2767Y39645D01* X2779Y39621D01* X2789Y39595D01* X2796Y39569D01* X2801Y39543D01* X2804Y39516D01* X2804Y39489D01* X2802Y39462D01* X2797Y39435D01* X2790Y39409D01* X2781Y39383D01* X2769Y39359D01* X2766Y39351D01* X2764Y39342D01* X2764Y39333D01* X2765Y39325D01* X2767Y39317D01* X2771Y39309D01* X2776Y39302D01* X2783Y39296D01* X2790Y39291D01* X2798Y39288D01* X2807Y39286D01* X2815Y39285D01* X2824Y39286D01* X2832Y39289D01* X2840Y39293D01* X2847Y39298D01* X2853Y39305D01* X2858Y39312D01* X2872Y39343D01* Y37696D01* X2870Y37701D01* X2864Y37707D01* X2856Y37712D01* X2849Y37716D01* X2840Y37718D01* X2832Y37719D01* X2823Y37719D01* X2814Y37717D01* X2806Y37713D01* X2799Y37708D01* X2793Y37702D01* X2788Y37695D01* X2784Y37687D01* X2782Y37679D01* X2781Y37670D01* X2781Y37661D01* X2783Y37653D01* X2787Y37645D01* X2799Y37621D01* X2809Y37595D01* X2816Y37569D01* X2821Y37543D01* X2824Y37516D01* X2824Y37489D01* X2822Y37462D01* X2817Y37435D01* X2810Y37409D01* X2801Y37383D01* X2789Y37359D01* X2786Y37351D01* X2784Y37342D01* X2784Y37333D01* X2785Y37325D01* X2787Y37317D01* X2791Y37309D01* X2796Y37302D01* X2803Y37296D01* X2810Y37291D01* X2818Y37288D01* X2827Y37286D01* X2835Y37285D01* X2844Y37286D01* X2852Y37289D01* X2860Y37293D01* X2867Y37298D01* X2872Y37304D01* Y35714D01* X2869Y35716D01* X2860Y35718D01* X2852Y35719D01* X2843Y35719D01* X2834Y35717D01* X2826Y35713D01* X2819Y35708D01* X2813Y35702D01* X2808Y35695D01* X2804Y35687D01* X2802Y35679D01* X2801Y35670D01* X2801Y35661D01* X2803Y35653D01* X2807Y35645D01* X2819Y35621D01* X2829Y35595D01* X2836Y35569D01* X2841Y35543D01* X2844Y35516D01* X2844Y35489D01* X2842Y35462D01* X2837Y35435D01* X2830Y35409D01* X2821Y35383D01* X2809Y35359D01* X2806Y35351D01* X2804Y35342D01* X2804Y35333D01* X2805Y35325D01* X2807Y35317D01* X2811Y35309D01* X2816Y35302D01* X2823Y35296D01* X2830Y35291D01* X2838Y35288D01* X2847Y35286D01* X2855Y35285D01* X2864Y35286D01* X2872Y35289D01* X2872Y35289D01* Y33719D01* X2872Y33719D01* X2863Y33719D01* X2854Y33717D01* X2846Y33713D01* X2839Y33708D01* X2833Y33702D01* X2828Y33695D01* X2824Y33687D01* X2822Y33679D01* X2821Y33670D01* X2821Y33661D01* X2823Y33653D01* X2827Y33645D01* X2839Y33621D01* X2849Y33595D01* X2856Y33569D01* X2861Y33543D01* X2864Y33516D01* X2864Y33489D01* X2862Y33462D01* X2857Y33435D01* X2850Y33409D01* X2841Y33383D01* X2829Y33359D01* X2826Y33351D01* X2824Y33342D01* X2824Y33333D01* X2825Y33325D01* X2827Y33317D01* X2831Y33309D01* X2836Y33302D01* X2843Y33296D01* X2850Y33291D01* X2858Y33288D01* X2867Y33286D01* X2872Y33286D01* Y31716D01* X2866Y31713D01* X2859Y31708D01* X2853Y31702D01* X2848Y31695D01* X2844Y31687D01* X2842Y31679D01* X2841Y31670D01* X2841Y31661D01* X2843Y31653D01* X2847Y31645D01* X2859Y31621D01* X2869Y31595D01* X2872Y31583D01* Y31416D01* X2870Y31409D01* X2861Y31383D01* X2849Y31359D01* X2846Y31351D01* X2844Y31342D01* X2844Y31333D01* X2845Y31325D01* X2847Y31317D01* X2851Y31309D01* X2856Y31302D01* X2863Y31296D01* X2870Y31291D01* X2872Y31290D01* Y29701D01* X2868Y29695D01* X2864Y29687D01* X2862Y29679D01* X2861Y29670D01* X2861Y29661D01* X2863Y29653D01* X2867Y29645D01* X2872Y29634D01* Y29365D01* X2869Y29359D01* X2866Y29351D01* X2864Y29342D01* X2864Y29333D01* X2865Y29325D01* X2867Y29317D01* X2871Y29309D01* X2872Y29307D01* Y23833D01* X2871Y23835D01* X2866Y23842D01* X2860Y23848D01* X2852Y23853D01* X2820Y23868D01* X2786Y23881D01* X2751Y23890D01* X2727Y23894D01* Y25109D01* X2738Y25111D01* X2772Y25121D01* X2806Y25134D01* X2838Y25150D01* X2846Y25155D01* X2852Y25161D01* X2857Y25168D01* X2861Y25175D01* X2863Y25184D01* X2864Y25193D01* X2864Y25201D01* X2861Y25210D01* X2858Y25218D01* X2853Y25225D01* X2847Y25231D01* X2840Y25236D01* X2832Y25240D01* X2824Y25243D01* X2815Y25243D01* X2806Y25243D01* X2798Y25241D01* X2790Y25237D01* X2766Y25225D01* X2740Y25215D01* X2727Y25212D01* Y25788D01* X2735Y25785D01* X2761Y25776D01* X2785Y25764D01* X2793Y25761D01* X2802Y25759D01* X2811Y25759D01* X2819Y25760D01* X2828Y25762D01* X2835Y25766D01* X2842Y25772D01* X2848Y25778D01* X2853Y25785D01* X2856Y25793D01* X2858Y25802D01* X2859Y25810D01* X2858Y25819D01* X2855Y25827D01* X2851Y25835D01* X2846Y25842D01* X2840Y25848D01* X2832Y25853D01* X2800Y25868D01* X2766Y25881D01* X2731Y25890D01* X2727Y25891D01* Y27113D01* X2752Y27121D01* X2786Y27134D01* X2818Y27150D01* X2826Y27155D01* X2832Y27161D01* X2837Y27168D01* X2841Y27175D01* X2843Y27184D01* X2844Y27193D01* X2844Y27201D01* X2841Y27210D01* X2838Y27218D01* X2833Y27225D01* X2827Y27231D01* X2820Y27236D01* X2812Y27240D01* X2804Y27243D01* X2795Y27243D01* X2786Y27243D01* X2778Y27241D01* X2770Y27237D01* X2746Y27225D01* X2727Y27218D01* Y27781D01* X2741Y27776D01* X2765Y27764D01* X2773Y27761D01* X2782Y27759D01* X2791Y27759D01* X2799Y27760D01* X2808Y27762D01* X2815Y27766D01* X2822Y27772D01* X2828Y27778D01* X2833Y27785D01* X2836Y27793D01* X2838Y27802D01* X2839Y27810D01* X2838Y27819D01* X2835Y27827D01* X2831Y27835D01* X2826Y27842D01* X2820Y27848D01* X2812Y27853D01* X2780Y27868D01* X2746Y27881D01* X2727Y27886D01* Y29119D01* X2732Y29121D01* X2766Y29134D01* X2798Y29150D01* X2806Y29155D01* X2812Y29161D01* X2817Y29168D01* X2821Y29175D01* X2823Y29184D01* X2824Y29193D01* X2824Y29201D01* X2821Y29210D01* X2818Y29218D01* X2813Y29225D01* X2807Y29231D01* X2800Y29236D01* X2792Y29240D01* X2784Y29243D01* X2775Y29243D01* X2766Y29243D01* X2758Y29241D01* X2750Y29237D01* X2727Y29226D01* Y29773D01* X2745Y29764D01* X2753Y29761D01* X2762Y29759D01* X2771Y29759D01* X2779Y29760D01* X2788Y29762D01* X2795Y29766D01* X2802Y29772D01* X2808Y29778D01* X2813Y29785D01* X2816Y29793D01* X2818Y29802D01* X2819Y29810D01* X2818Y29819D01* X2815Y29827D01* X2811Y29835D01* X2806Y29842D01* X2800Y29848D01* X2792Y29853D01* X2760Y29868D01* X2727Y29880D01* Y31126D01* X2746Y31134D01* X2778Y31150D01* X2786Y31155D01* X2792Y31161D01* X2797Y31168D01* X2801Y31175D01* X2803Y31184D01* X2804Y31193D01* X2804Y31201D01* X2801Y31210D01* X2798Y31218D01* X2793Y31225D01* X2787Y31231D01* X2780Y31236D01* X2772Y31240D01* X2764Y31243D01* X2755Y31243D01* X2746Y31243D01* X2738Y31241D01* X2730Y31237D01* X2727Y31236D01* Y31764D01* X2733Y31761D01* X2742Y31759D01* X2751Y31759D01* X2759Y31760D01* X2768Y31762D01* X2775Y31766D01* X2782Y31772D01* X2788Y31778D01* X2793Y31785D01* X2796Y31793D01* X2798Y31802D01* X2799Y31810D01* X2798Y31819D01* X2795Y31827D01* X2791Y31835D01* X2786Y31842D01* X2780Y31848D01* X2772Y31853D01* X2740Y31868D01* X2727Y31873D01* Y33134D01* X2758Y33150D01* X2766Y33155D01* X2772Y33161D01* X2777Y33168D01* X2781Y33175D01* X2783Y33184D01* X2784Y33193D01* X2784Y33201D01* X2781Y33210D01* X2778Y33218D01* X2773Y33225D01* X2767Y33231D01* X2760Y33236D01* X2752Y33240D01* X2744Y33243D01* X2735Y33243D01* X2727Y33243D01* Y33759D01* X2731Y33759D01* X2739Y33760D01* X2748Y33762D01* X2755Y33766D01* X2762Y33772D01* X2768Y33778D01* X2773Y33785D01* X2776Y33793D01* X2778Y33802D01* X2779Y33810D01* X2778Y33819D01* X2775Y33827D01* X2771Y33835D01* X2766Y33842D01* X2760Y33848D01* X2752Y33853D01* X2727Y33865D01* Y35144D01* X2738Y35150D01* X2746Y35155D01* X2752Y35161D01* X2757Y35168D01* X2761Y35175D01* X2763Y35184D01* X2764Y35193D01* X2764Y35201D01* X2761Y35210D01* X2758Y35218D01* X2753Y35225D01* X2747Y35231D01* X2740Y35236D01* X2732Y35240D01* X2727Y35242D01* Y35762D01* X2728Y35762D01* X2735Y35766D01* X2742Y35772D01* X2748Y35778D01* X2753Y35785D01* X2756Y35793D01* X2758Y35802D01* X2759Y35810D01* X2758Y35819D01* X2755Y35827D01* X2751Y35835D01* X2746Y35842D01* X2740Y35848D01* X2732Y35853D01* X2727Y35855D01* Y37156D01* X2732Y37161D01* X2737Y37168D01* X2741Y37175D01* X2743Y37184D01* X2744Y37193D01* X2744Y37201D01* X2741Y37210D01* X2738Y37218D01* X2733Y37225D01* X2727Y37231D01* Y37777D01* X2728Y37778D01* X2733Y37785D01* X2736Y37793D01* X2738Y37802D01* X2739Y37810D01* X2738Y37819D01* X2735Y37827D01* X2731Y37835D01* X2727Y37840D01* Y40000D01* G37* G36* X2872Y13884D02*X2851Y13890D01* X2815Y13896D01* X2779Y13899D01* X2743Y13899D01* X2727Y13897D01* Y15100D01* X2730Y15100D01* X2766Y15100D01* X2802Y15104D01* X2838Y15111D01* X2872Y15121D01* X2872D01* Y13884D01* G37* G36* Y15229D02*X2866Y15225D01* X2840Y15215D01* X2814Y15208D01* X2788Y15203D01* X2761Y15200D01* X2734Y15200D01* X2727Y15200D01* Y15799D01* X2728Y15799D01* X2755Y15799D01* X2782Y15797D01* X2809Y15793D01* X2835Y15785D01* X2861Y15776D01* X2872Y15771D01* Y15229D01* G37* G36* Y15878D02*X2866Y15881D01* X2831Y15890D01* X2795Y15896D01* X2759Y15899D01* X2727Y15899D01* Y17100D01* X2746Y17100D01* X2782Y17104D01* X2818Y17111D01* X2852Y17121D01* X2872Y17128D01* Y15878D01* G37* G36* Y17238D02*X2870Y17237D01* X2846Y17225D01* X2820Y17215D01* X2794Y17208D01* X2768Y17203D01* X2741Y17200D01* X2727Y17200D01* Y17799D01* X2735Y17799D01* X2762Y17797D01* X2789Y17793D01* X2815Y17785D01* X2841Y17776D01* X2865Y17764D01* X2872Y17762D01* Y17238D01* G37* G36* Y17871D02*X2846Y17881D01* X2811Y17890D01* X2775Y17896D01* X2739Y17899D01* X2727Y17899D01* Y19100D01* X2762Y19104D01* X2798Y19111D01* X2832Y19121D01* X2866Y19134D01* X2872Y19137D01* Y17871D01* G37* G36* Y19243D02*X2866Y19243D01* X2858Y19241D01* X2850Y19237D01* X2826Y19225D01* X2800Y19215D01* X2774Y19208D01* X2748Y19203D01* X2727Y19201D01* Y19798D01* X2742Y19797D01* X2769Y19793D01* X2795Y19785D01* X2821Y19776D01* X2845Y19764D01* X2853Y19761D01* X2862Y19759D01* X2871Y19759D01* X2872Y19759D01* Y19243D01* G37* G36* Y19862D02*X2860Y19868D01* X2826Y19881D01* X2791Y19890D01* X2755Y19896D01* X2727Y19899D01* Y21102D01* X2742Y21104D01* X2778Y21111D01* X2812Y21121D01* X2846Y21134D01* X2872Y21147D01* Y19862D01* G37* G36* Y21240D02*X2872Y21240D01* X2864Y21243D01* X2855Y21243D01* X2846Y21243D01* X2838Y21241D01* X2830Y21237D01* X2806Y21225D01* X2780Y21215D01* X2754Y21208D01* X2728Y21203D01* X2727D01* Y21796D01* X2749Y21793D01* X2775Y21785D01* X2801Y21776D01* X2825Y21764D01* X2833Y21761D01* X2842Y21759D01* X2851Y21759D01* X2859Y21760D01* X2868Y21762D01* X2872Y21765D01* Y21240D01* G37* G36* Y21853D02*X2872Y21853D01* X2840Y21868D01* X2806Y21881D01* X2771Y21890D01* X2735Y21896D01* X2727Y21897D01* Y23105D01* X2758Y23111D01* X2792Y23121D01* X2826Y23134D01* X2858Y23150D01* X2866Y23155D01* X2872Y23161D01* X2872Y23161D01* Y21853D01* G37* G36* Y23225D02*X2867Y23231D01* X2860Y23236D01* X2852Y23240D01* X2844Y23243D01* X2835Y23243D01* X2826Y23243D01* X2818Y23241D01* X2810Y23237D01* X2786Y23225D01* X2760Y23215D01* X2734Y23208D01* X2727Y23206D01* Y23793D01* X2729Y23793D01* X2755Y23785D01* X2781Y23776D01* X2805Y23764D01* X2813Y23761D01* X2822Y23759D01* X2831Y23759D01* X2839Y23760D01* X2848Y23762D01* X2855Y23766D01* X2862Y23772D01* X2868Y23778D01* X2872Y23784D01* Y23225D01* G37* G36* Y40000D02*X2972D01* Y31596D01* X2964Y31627D01* X2950Y31661D01* X2934Y31694D01* X2930Y31701D01* X2924Y31707D01* X2916Y31712D01* X2909Y31716D01* X2900Y31718D01* X2892Y31719D01* X2883Y31719D01* X2874Y31717D01* X2872Y31716D01* Y33286D01* X2875Y33285D01* X2884Y33286D01* X2892Y33289D01* X2900Y33293D01* X2907Y33298D01* X2913Y33305D01* X2918Y33312D01* X2933Y33344D01* X2946Y33378D01* X2955Y33413D01* X2961Y33449D01* X2964Y33485D01* X2964Y33521D01* X2960Y33557D01* X2954Y33593D01* X2944Y33627D01* X2930Y33661D01* X2914Y33694D01* X2910Y33701D01* X2904Y33707D01* X2896Y33712D01* X2889Y33716D01* X2880Y33718D01* X2872Y33719D01* Y35289D01* X2880Y35293D01* X2887Y35298D01* X2893Y35305D01* X2898Y35312D01* X2913Y35344D01* X2926Y35378D01* X2935Y35413D01* X2941Y35449D01* X2944Y35485D01* X2944Y35521D01* X2940Y35557D01* X2934Y35593D01* X2924Y35627D01* X2910Y35661D01* X2894Y35694D01* X2890Y35701D01* X2884Y35707D01* X2876Y35712D01* X2872Y35714D01* Y37304D01* X2873Y37305D01* X2878Y37312D01* X2893Y37344D01* X2906Y37378D01* X2915Y37413D01* X2921Y37449D01* X2924Y37485D01* X2924Y37521D01* X2920Y37557D01* X2914Y37593D01* X2904Y37627D01* X2890Y37661D01* X2874Y37694D01* X2872Y37696D01* Y39343D01* X2873Y39344D01* X2886Y39378D01* X2895Y39413D01* X2901Y39449D01* X2904Y39485D01* X2904Y39521D01* X2900Y39557D01* X2894Y39593D01* X2884Y39627D01* X2872Y39656D01* Y40000D01* G37* G36* Y31583D02*X2876Y31569D01* X2881Y31543D01* X2884Y31516D01* X2884Y31489D01* X2882Y31462D01* X2877Y31435D01* X2872Y31416D01* Y31583D01* G37* G36* Y31290D02*X2878Y31288D01* X2887Y31286D01* X2895Y31285D01* X2904Y31286D01* X2912Y31289D01* X2920Y31293D01* X2927Y31298D01* X2933Y31305D01* X2938Y31312D01* X2953Y31344D01* X2966Y31378D01* X2972Y31404D01* Y29656D01* X2970Y29661D01* X2954Y29694D01* X2950Y29701D01* X2944Y29707D01* X2936Y29712D01* X2929Y29716D01* X2920Y29718D01* X2912Y29719D01* X2903Y29719D01* X2894Y29717D01* X2886Y29713D01* X2879Y29708D01* X2873Y29702D01* X2872Y29701D01* Y31290D01* G37* G36* Y29634D02*X2879Y29621D01* X2889Y29595D01* X2896Y29569D01* X2901Y29543D01* X2904Y29516D01* X2904Y29489D01* X2902Y29462D01* X2897Y29435D01* X2890Y29409D01* X2881Y29383D01* X2872Y29365D01* Y29634D01* G37* G36* Y29307D02*X2876Y29302D01* X2883Y29296D01* X2890Y29291D01* X2898Y29288D01* X2907Y29286D01* X2915Y29285D01* X2924Y29286D01* X2932Y29289D01* X2940Y29293D01* X2947Y29298D01* X2953Y29305D01* X2958Y29312D01* X2972Y29343D01* Y27696D01* X2970Y27701D01* X2964Y27707D01* X2956Y27712D01* X2949Y27716D01* X2940Y27718D01* X2932Y27719D01* X2923Y27719D01* X2914Y27717D01* X2906Y27713D01* X2899Y27708D01* X2893Y27702D01* X2888Y27695D01* X2884Y27687D01* X2882Y27679D01* X2881Y27670D01* X2881Y27661D01* X2883Y27653D01* X2887Y27645D01* X2899Y27621D01* X2909Y27595D01* X2916Y27569D01* X2921Y27543D01* X2924Y27516D01* X2924Y27489D01* X2922Y27462D01* X2917Y27435D01* X2910Y27409D01* X2901Y27383D01* X2889Y27359D01* X2886Y27351D01* X2884Y27342D01* X2884Y27333D01* X2885Y27325D01* X2887Y27317D01* X2891Y27309D01* X2896Y27302D01* X2903Y27296D01* X2910Y27291D01* X2918Y27288D01* X2927Y27286D01* X2935Y27285D01* X2944Y27286D01* X2952Y27289D01* X2960Y27293D01* X2967Y27298D01* X2972Y27304D01* Y25714D01* X2969Y25716D01* X2960Y25718D01* X2952Y25719D01* X2943Y25719D01* X2934Y25717D01* X2926Y25713D01* X2919Y25708D01* X2913Y25702D01* X2908Y25695D01* X2904Y25687D01* X2902Y25679D01* X2901Y25670D01* X2901Y25661D01* X2903Y25653D01* X2907Y25645D01* X2919Y25621D01* X2929Y25595D01* X2936Y25569D01* X2941Y25543D01* X2944Y25516D01* X2944Y25489D01* X2942Y25462D01* X2937Y25435D01* X2930Y25409D01* X2921Y25383D01* X2909Y25359D01* X2906Y25351D01* X2904Y25342D01* X2904Y25333D01* X2905Y25325D01* X2907Y25317D01* X2911Y25309D01* X2916Y25302D01* X2923Y25296D01* X2930Y25291D01* X2938Y25288D01* X2947Y25286D01* X2955Y25285D01* X2964Y25286D01* X2972Y25289D01* X2972Y25289D01* Y23719D01* X2972Y23719D01* X2963Y23719D01* X2954Y23717D01* X2946Y23713D01* X2939Y23708D01* X2933Y23702D01* X2928Y23695D01* X2924Y23687D01* X2922Y23679D01* X2921Y23670D01* X2921Y23661D01* X2923Y23653D01* X2927Y23645D01* X2939Y23621D01* X2949Y23595D01* X2956Y23569D01* X2961Y23543D01* X2964Y23516D01* X2964Y23489D01* X2962Y23462D01* X2957Y23435D01* X2950Y23409D01* X2941Y23383D01* X2929Y23359D01* X2926Y23351D01* X2924Y23342D01* X2924Y23333D01* X2925Y23325D01* X2927Y23317D01* X2931Y23309D01* X2936Y23302D01* X2943Y23296D01* X2950Y23291D01* X2958Y23288D01* X2967Y23286D01* X2972Y23286D01* Y21716D01* X2966Y21713D01* X2959Y21708D01* X2953Y21702D01* X2948Y21695D01* X2944Y21687D01* X2942Y21679D01* X2941Y21670D01* X2941Y21661D01* X2943Y21653D01* X2947Y21645D01* X2959Y21621D01* X2969Y21595D01* X2972Y21583D01* Y21416D01* X2970Y21409D01* X2961Y21383D01* X2949Y21359D01* X2946Y21351D01* X2944Y21342D01* X2944Y21333D01* X2945Y21325D01* X2947Y21317D01* X2951Y21309D01* X2956Y21302D01* X2963Y21296D01* X2970Y21291D01* X2972Y21290D01* Y19701D01* X2968Y19695D01* X2964Y19687D01* X2962Y19679D01* X2961Y19670D01* X2961Y19661D01* X2963Y19653D01* X2967Y19645D01* X2972Y19634D01* Y19365D01* X2969Y19359D01* X2966Y19351D01* X2964Y19342D01* X2964Y19333D01* X2965Y19325D01* X2967Y19317D01* X2971Y19309D01* X2972Y19307D01* Y13833D01* X2971Y13835D01* X2966Y13842D01* X2960Y13848D01* X2952Y13853D01* X2920Y13868D01* X2886Y13881D01* X2872Y13884D01* Y15121D01* X2906Y15134D01* X2938Y15150D01* X2946Y15155D01* X2952Y15161D01* X2957Y15168D01* X2961Y15175D01* X2963Y15184D01* X2964Y15193D01* X2964Y15201D01* X2961Y15210D01* X2958Y15218D01* X2953Y15225D01* X2947Y15231D01* X2940Y15236D01* X2932Y15240D01* X2924Y15243D01* X2915Y15243D01* X2906Y15243D01* X2898Y15241D01* X2890Y15237D01* X2872Y15229D01* Y15771D01* X2885Y15764D01* X2893Y15761D01* X2902Y15759D01* X2911Y15759D01* X2919Y15760D01* X2928Y15762D01* X2935Y15766D01* X2942Y15772D01* X2948Y15778D01* X2953Y15785D01* X2956Y15793D01* X2958Y15802D01* X2959Y15810D01* X2958Y15819D01* X2955Y15827D01* X2951Y15835D01* X2946Y15842D01* X2940Y15848D01* X2932Y15853D01* X2900Y15868D01* X2872Y15878D01* Y17128D01* X2886Y17134D01* X2918Y17150D01* X2926Y17155D01* X2932Y17161D01* X2937Y17168D01* X2941Y17175D01* X2943Y17184D01* X2944Y17193D01* X2944Y17201D01* X2941Y17210D01* X2938Y17218D01* X2933Y17225D01* X2927Y17231D01* X2920Y17236D01* X2912Y17240D01* X2904Y17243D01* X2895Y17243D01* X2886Y17243D01* X2878Y17241D01* X2872Y17238D01* Y17762D01* X2873Y17761D01* X2882Y17759D01* X2891Y17759D01* X2899Y17760D01* X2908Y17762D01* X2915Y17766D01* X2922Y17772D01* X2928Y17778D01* X2933Y17785D01* X2936Y17793D01* X2938Y17802D01* X2939Y17810D01* X2938Y17819D01* X2935Y17827D01* X2931Y17835D01* X2926Y17842D01* X2920Y17848D01* X2912Y17853D01* X2880Y17868D01* X2872Y17871D01* Y19137D01* X2898Y19150D01* X2906Y19155D01* X2912Y19161D01* X2917Y19168D01* X2921Y19175D01* X2923Y19184D01* X2924Y19193D01* X2924Y19201D01* X2921Y19210D01* X2918Y19218D01* X2913Y19225D01* X2907Y19231D01* X2900Y19236D01* X2892Y19240D01* X2884Y19243D01* X2875Y19243D01* X2872Y19243D01* Y19759D01* X2879Y19760D01* X2888Y19762D01* X2895Y19766D01* X2902Y19772D01* X2908Y19778D01* X2913Y19785D01* X2916Y19793D01* X2918Y19802D01* X2919Y19810D01* X2918Y19819D01* X2915Y19827D01* X2911Y19835D01* X2906Y19842D01* X2900Y19848D01* X2892Y19853D01* X2872Y19862D01* Y21147D01* X2878Y21150D01* X2886Y21155D01* X2892Y21161D01* X2897Y21168D01* X2901Y21175D01* X2903Y21184D01* X2904Y21193D01* X2904Y21201D01* X2901Y21210D01* X2898Y21218D01* X2893Y21225D01* X2887Y21231D01* X2880Y21236D01* X2872Y21240D01* Y21765D01* X2875Y21766D01* X2882Y21772D01* X2888Y21778D01* X2893Y21785D01* X2896Y21793D01* X2898Y21802D01* X2899Y21810D01* X2898Y21819D01* X2895Y21827D01* X2891Y21835D01* X2886Y21842D01* X2880Y21848D01* X2872Y21853D01* Y23161D01* X2877Y23168D01* X2881Y23175D01* X2883Y23184D01* X2884Y23193D01* X2884Y23201D01* X2881Y23210D01* X2878Y23218D01* X2873Y23225D01* X2872Y23225D01* Y23784D01* X2873Y23785D01* X2876Y23793D01* X2878Y23802D01* X2879Y23810D01* X2878Y23819D01* X2875Y23827D01* X2872Y23833D01* Y29307D01* G37* G36* X2972Y5878D02*X2966Y5881D01* X2931Y5890D01* X2895Y5896D01* X2859Y5899D01* X2823Y5899D01* X2787Y5895D01* X2751Y5889D01* X2727Y5882D01* Y7112D01* X2738Y7109D01* X2774Y7103D01* X2810Y7100D01* X2846Y7100D01* X2882Y7104D01* X2918Y7111D01* X2952Y7121D01* X2972Y7128D01* Y5878D01* G37* G36* Y7238D02*X2970Y7237D01* X2946Y7225D01* X2920Y7215D01* X2894Y7208D01* X2868Y7203D01* X2841Y7200D01* X2814Y7200D01* X2787Y7202D01* X2760Y7207D01* X2734Y7214D01* X2727Y7216D01* Y7783D01* X2729Y7784D01* X2755Y7791D01* X2781Y7796D01* X2808Y7799D01* X2835Y7799D01* X2862Y7797D01* X2889Y7793D01* X2915Y7785D01* X2941Y7776D01* X2965Y7764D01* X2972Y7762D01* Y7238D01* G37* G36* Y7871D02*X2946Y7881D01* X2911Y7890D01* X2875Y7896D01* X2839Y7899D01* X2803Y7899D01* X2767Y7895D01* X2731Y7889D01* X2727Y7887D01* Y9107D01* X2754Y9103D01* X2790Y9100D01* X2826Y9100D01* X2862Y9104D01* X2898Y9111D01* X2932Y9121D01* X2966Y9134D01* X2972Y9137D01* Y7871D01* G37* G36* Y9243D02*X2966Y9243D01* X2958Y9241D01* X2950Y9237D01* X2926Y9225D01* X2900Y9215D01* X2874Y9208D01* X2848Y9203D01* X2821Y9200D01* X2794Y9200D01* X2767Y9202D01* X2740Y9207D01* X2727Y9210D01* Y9789D01* X2735Y9791D01* X2761Y9796D01* X2788Y9799D01* X2815Y9799D01* X2842Y9797D01* X2869Y9793D01* X2895Y9785D01* X2921Y9776D01* X2945Y9764D01* X2953Y9761D01* X2962Y9759D01* X2971Y9759D01* X2972Y9759D01* Y9243D01* G37* G36* Y9862D02*X2960Y9868D01* X2926Y9881D01* X2891Y9890D01* X2855Y9896D01* X2819Y9899D01* X2783Y9899D01* X2747Y9895D01* X2727Y9892D01* Y11104D01* X2734Y11103D01* X2770Y11100D01* X2806Y11100D01* X2842Y11104D01* X2878Y11111D01* X2912Y11121D01* X2946Y11134D01* X2972Y11147D01* Y9862D01* G37* G36* Y11240D02*X2972Y11240D01* X2964Y11243D01* X2955Y11243D01* X2946Y11243D01* X2938Y11241D01* X2930Y11237D01* X2906Y11225D01* X2880Y11215D01* X2854Y11208D01* X2828Y11203D01* X2801Y11200D01* X2774Y11200D01* X2747Y11202D01* X2727Y11205D01* Y11794D01* X2741Y11796D01* X2768Y11799D01* X2795Y11799D01* X2822Y11797D01* X2849Y11793D01* X2875Y11785D01* X2901Y11776D01* X2925Y11764D01* X2933Y11761D01* X2942Y11759D01* X2951Y11759D01* X2959Y11760D01* X2968Y11762D01* X2972Y11765D01* Y11240D01* G37* G36* Y11853D02*X2972Y11853D01* X2940Y11868D01* X2906Y11881D01* X2871Y11890D01* X2835Y11896D01* X2799Y11899D01* X2763Y11899D01* X2727Y11895D01* Y13102D01* X2750Y13100D01* X2786Y13100D01* X2822Y13104D01* X2858Y13111D01* X2892Y13121D01* X2926Y13134D01* X2958Y13150D01* X2966Y13155D01* X2972Y13161D01* X2972Y13161D01* Y11853D01* G37* G36* Y13225D02*X2967Y13231D01* X2960Y13236D01* X2952Y13240D01* X2944Y13243D01* X2935Y13243D01* X2926Y13243D01* X2918Y13241D01* X2910Y13237D01* X2886Y13225D01* X2860Y13215D01* X2834Y13208D01* X2808Y13203D01* X2781Y13200D01* X2754Y13200D01* X2727Y13202D01* Y13797D01* X2748Y13799D01* X2775Y13799D01* X2802Y13797D01* X2829Y13793D01* X2855Y13785D01* X2881Y13776D01* X2905Y13764D01* X2913Y13761D01* X2922Y13759D01* X2931Y13759D01* X2939Y13760D01* X2948Y13762D01* X2955Y13766D01* X2962Y13772D01* X2968Y13778D01* X2972Y13784D01* Y13225D01* G37* G36* Y40000D02*X3052D01* Y23596D01* X3044Y23627D01* X3030Y23661D01* X3014Y23694D01* X3010Y23701D01* X3004Y23707D01* X2996Y23712D01* X2989Y23716D01* X2980Y23718D01* X2972Y23719D01* Y25289D01* X2980Y25293D01* X2987Y25298D01* X2993Y25305D01* X2998Y25312D01* X3013Y25344D01* X3026Y25378D01* X3035Y25413D01* X3041Y25449D01* X3044Y25485D01* X3044Y25521D01* X3040Y25557D01* X3034Y25593D01* X3024Y25627D01* X3010Y25661D01* X2994Y25694D01* X2990Y25701D01* X2984Y25707D01* X2976Y25712D01* X2972Y25714D01* Y27304D01* X2973Y27305D01* X2978Y27312D01* X2993Y27344D01* X3006Y27378D01* X3015Y27413D01* X3021Y27449D01* X3024Y27485D01* X3024Y27521D01* X3020Y27557D01* X3014Y27593D01* X3004Y27627D01* X2990Y27661D01* X2974Y27694D01* X2972Y27696D01* Y29343D01* X2973Y29344D01* X2986Y29378D01* X2995Y29413D01* X3001Y29449D01* X3004Y29485D01* X3004Y29521D01* X3000Y29557D01* X2994Y29593D01* X2984Y29627D01* X2972Y29656D01* Y31404D01* X2975Y31413D01* X2981Y31449D01* X2984Y31485D01* X2984Y31521D01* X2980Y31557D01* X2974Y31593D01* X2972Y31596D01* Y40000D01* G37* G36* Y23286D02*X2975Y23285D01* X2984Y23286D01* X2992Y23289D01* X3000Y23293D01* X3007Y23298D01* X3013Y23305D01* X3018Y23312D01* X3033Y23344D01* X3046Y23378D01* X3052Y23404D01* Y21656D01* X3050Y21661D01* X3034Y21694D01* X3030Y21701D01* X3024Y21707D01* X3016Y21712D01* X3009Y21716D01* X3000Y21718D01* X2992Y21719D01* X2983Y21719D01* X2974Y21717D01* X2972Y21716D01* Y23286D01* G37* G36* Y21583D02*X2976Y21569D01* X2981Y21543D01* X2984Y21516D01* X2984Y21489D01* X2982Y21462D01* X2977Y21435D01* X2972Y21416D01* Y21583D01* G37* G36* Y21290D02*X2978Y21288D01* X2987Y21286D01* X2995Y21285D01* X3004Y21286D01* X3012Y21289D01* X3020Y21293D01* X3027Y21298D01* X3033Y21305D01* X3038Y21312D01* X3052Y21343D01* Y19696D01* X3050Y19701D01* X3044Y19707D01* X3036Y19712D01* X3029Y19716D01* X3020Y19718D01* X3012Y19719D01* X3003Y19719D01* X2994Y19717D01* X2986Y19713D01* X2979Y19708D01* X2973Y19702D01* X2972Y19701D01* Y21290D01* G37* G36* Y19634D02*X2979Y19621D01* X2989Y19595D01* X2996Y19569D01* X3001Y19543D01* X3004Y19516D01* X3004Y19489D01* X3002Y19462D01* X2997Y19435D01* X2990Y19409D01* X2981Y19383D01* X2972Y19365D01* Y19634D01* G37* G36* Y19307D02*X2976Y19302D01* X2983Y19296D01* X2990Y19291D01* X2998Y19288D01* X3007Y19286D01* X3015Y19285D01* X3024Y19286D01* X3032Y19289D01* X3040Y19293D01* X3047Y19298D01* X3052Y19304D01* Y17714D01* X3049Y17716D01* X3040Y17718D01* X3032Y17719D01* X3023Y17719D01* X3014Y17717D01* X3006Y17713D01* X2999Y17708D01* X2993Y17702D01* X2988Y17695D01* X2984Y17687D01* X2982Y17679D01* X2981Y17670D01* X2981Y17661D01* X2983Y17653D01* X2987Y17645D01* X2999Y17621D01* X3009Y17595D01* X3016Y17569D01* X3021Y17543D01* X3024Y17516D01* X3024Y17489D01* X3022Y17462D01* X3017Y17435D01* X3010Y17409D01* X3001Y17383D01* X2989Y17359D01* X2986Y17351D01* X2984Y17342D01* X2984Y17333D01* X2985Y17325D01* X2987Y17317D01* X2991Y17309D01* X2996Y17302D01* X3003Y17296D01* X3010Y17291D01* X3018Y17288D01* X3027Y17286D01* X3035Y17285D01* X3044Y17286D01* X3052Y17289D01* X3052Y17289D01* Y15719D01* X3052Y15719D01* X3043Y15719D01* X3034Y15717D01* X3026Y15713D01* X3019Y15708D01* X3013Y15702D01* X3008Y15695D01* X3004Y15687D01* X3002Y15679D01* X3001Y15670D01* X3001Y15661D01* X3003Y15653D01* X3007Y15645D01* X3019Y15621D01* X3029Y15595D01* X3036Y15569D01* X3041Y15543D01* X3044Y15516D01* X3044Y15489D01* X3042Y15462D01* X3037Y15435D01* X3030Y15409D01* X3021Y15383D01* X3009Y15359D01* X3006Y15351D01* X3004Y15342D01* X3004Y15333D01* X3005Y15325D01* X3007Y15317D01* X3011Y15309D01* X3016Y15302D01* X3023Y15296D01* X3030Y15291D01* X3038Y15288D01* X3047Y15286D01* X3052Y15286D01* Y13716D01* X3046Y13713D01* X3039Y13708D01* X3033Y13702D01* X3028Y13695D01* X3024Y13687D01* X3022Y13679D01* X3021Y13670D01* X3021Y13661D01* X3023Y13653D01* X3027Y13645D01* X3039Y13621D01* X3049Y13595D01* X3052Y13583D01* Y13416D01* X3050Y13409D01* X3041Y13383D01* X3029Y13359D01* X3026Y13351D01* X3024Y13342D01* X3024Y13333D01* X3025Y13325D01* X3027Y13317D01* X3031Y13309D01* X3036Y13302D01* X3043Y13296D01* X3050Y13291D01* X3052Y13290D01* Y11701D01* X3048Y11695D01* X3044Y11687D01* X3042Y11679D01* X3041Y11670D01* X3041Y11661D01* X3043Y11653D01* X3047Y11645D01* X3052Y11634D01* Y11365D01* X3049Y11359D01* X3046Y11351D01* X3044Y11342D01* X3044Y11333D01* X3045Y11325D01* X3047Y11317D01* X3051Y11309D01* X3052Y11307D01* Y5833D01* X3051Y5835D01* X3046Y5842D01* X3040Y5848D01* X3032Y5853D01* X3000Y5868D01* X2972Y5878D01* Y7128D01* X2986Y7134D01* X3018Y7150D01* X3026Y7155D01* X3032Y7161D01* X3037Y7168D01* X3041Y7175D01* X3043Y7184D01* X3044Y7193D01* X3044Y7201D01* X3041Y7210D01* X3038Y7218D01* X3033Y7225D01* X3027Y7231D01* X3020Y7236D01* X3012Y7240D01* X3004Y7243D01* X2995Y7243D01* X2986Y7243D01* X2978Y7241D01* X2972Y7238D01* Y7762D01* X2973Y7761D01* X2982Y7759D01* X2991Y7759D01* X2999Y7760D01* X3008Y7762D01* X3015Y7766D01* X3022Y7772D01* X3028Y7778D01* X3033Y7785D01* X3036Y7793D01* X3038Y7802D01* X3039Y7810D01* X3038Y7819D01* X3035Y7827D01* X3031Y7835D01* X3026Y7842D01* X3020Y7848D01* X3012Y7853D01* X2980Y7868D01* X2972Y7871D01* Y9137D01* X2998Y9150D01* X3006Y9155D01* X3012Y9161D01* X3017Y9168D01* X3021Y9175D01* X3023Y9184D01* X3024Y9193D01* X3024Y9201D01* X3021Y9210D01* X3018Y9218D01* X3013Y9225D01* X3007Y9231D01* X3000Y9236D01* X2992Y9240D01* X2984Y9243D01* X2975Y9243D01* X2972Y9243D01* Y9759D01* X2979Y9760D01* X2988Y9762D01* X2995Y9766D01* X3002Y9772D01* X3008Y9778D01* X3013Y9785D01* X3016Y9793D01* X3018Y9802D01* X3019Y9810D01* X3018Y9819D01* X3015Y9827D01* X3011Y9835D01* X3006Y9842D01* X3000Y9848D01* X2992Y9853D01* X2972Y9862D01* Y11147D01* X2978Y11150D01* X2986Y11155D01* X2992Y11161D01* X2997Y11168D01* X3001Y11175D01* X3003Y11184D01* X3004Y11193D01* X3004Y11201D01* X3001Y11210D01* X2998Y11218D01* X2993Y11225D01* X2987Y11231D01* X2980Y11236D01* X2972Y11240D01* Y11765D01* X2975Y11766D01* X2982Y11772D01* X2988Y11778D01* X2993Y11785D01* X2996Y11793D01* X2998Y11802D01* X2999Y11810D01* X2998Y11819D01* X2995Y11827D01* X2991Y11835D01* X2986Y11842D01* X2980Y11848D01* X2972Y11853D01* Y13161D01* X2977Y13168D01* X2981Y13175D01* X2983Y13184D01* X2984Y13193D01* X2984Y13201D01* X2981Y13210D01* X2978Y13218D01* X2973Y13225D01* X2972Y13225D01* Y13784D01* X2973Y13785D01* X2976Y13793D01* X2978Y13802D01* X2979Y13810D01* X2978Y13819D01* X2975Y13827D01* X2972Y13833D01* Y19307D01* G37* G36* X3052Y0D02*X2727D01* Y1132D01* X2729Y1131D01* X2763Y1118D01* X2798Y1109D01* X2834Y1103D01* X2870Y1100D01* X2906Y1100D01* X2942Y1104D01* X2978Y1111D01* X3012Y1121D01* X3046Y1134D01* X3052Y1137D01* Y0D01* G37* G36* Y1243D02*X3046Y1243D01* X3038Y1241D01* X3030Y1237D01* X3006Y1225D01* X2980Y1215D01* X2954Y1208D01* X2928Y1203D01* X2901Y1200D01* X2874Y1200D01* X2847Y1202D01* X2820Y1207D01* X2794Y1214D01* X2768Y1223D01* X2744Y1235D01* X2736Y1238D01* X2727Y1240D01* Y1757D01* X2731Y1758D01* X2739Y1762D01* X2763Y1774D01* X2789Y1784D01* X2815Y1791D01* X2841Y1796D01* X2868Y1799D01* X2895Y1799D01* X2922Y1797D01* X2949Y1793D01* X2975Y1785D01* X3001Y1776D01* X3025Y1764D01* X3033Y1761D01* X3042Y1759D01* X3051Y1759D01* X3052Y1759D01* Y1243D01* G37* G36* Y1862D02*X3040Y1868D01* X3006Y1881D01* X2971Y1890D01* X2935Y1896D01* X2899Y1899D01* X2863Y1899D01* X2827Y1895D01* X2791Y1889D01* X2757Y1879D01* X2727Y1867D01* Y3124D01* X2743Y3118D01* X2778Y3109D01* X2814Y3103D01* X2850Y3100D01* X2886Y3100D01* X2922Y3104D01* X2958Y3111D01* X2992Y3121D01* X3026Y3134D01* X3052Y3147D01* Y1862D01* G37* G36* Y3240D02*X3052Y3240D01* X3044Y3243D01* X3035Y3243D01* X3026Y3243D01* X3018Y3241D01* X3010Y3237D01* X2986Y3225D01* X2960Y3215D01* X2934Y3208D01* X2908Y3203D01* X2881Y3200D01* X2854Y3200D01* X2827Y3202D01* X2800Y3207D01* X2774Y3214D01* X2748Y3223D01* X2727Y3233D01* Y3766D01* X2743Y3774D01* X2769Y3784D01* X2795Y3791D01* X2821Y3796D01* X2848Y3799D01* X2875Y3799D01* X2902Y3797D01* X2929Y3793D01* X2955Y3785D01* X2981Y3776D01* X3005Y3764D01* X3013Y3761D01* X3022Y3759D01* X3031Y3759D01* X3039Y3760D01* X3048Y3762D01* X3052Y3765D01* Y3240D01* G37* G36* Y3853D02*X3052Y3853D01* X3020Y3868D01* X2986Y3881D01* X2951Y3890D01* X2915Y3896D01* X2879Y3899D01* X2843Y3899D01* X2807Y3895D01* X2771Y3889D01* X2737Y3879D01* X2727Y3875D01* Y5117D01* X2758Y5109D01* X2794Y5103D01* X2830Y5100D01* X2866Y5100D01* X2902Y5104D01* X2938Y5111D01* X2972Y5121D01* X3006Y5134D01* X3038Y5150D01* X3046Y5155D01* X3052Y5161D01* X3052Y5161D01* Y3853D01* G37* G36* Y5225D02*X3047Y5231D01* X3040Y5236D01* X3032Y5240D01* X3024Y5243D01* X3015Y5243D01* X3006Y5243D01* X2998Y5241D01* X2990Y5237D01* X2966Y5225D01* X2940Y5215D01* X2914Y5208D01* X2888Y5203D01* X2861Y5200D01* X2834Y5200D01* X2807Y5202D01* X2780Y5207D01* X2754Y5214D01* X2728Y5223D01* X2727Y5223D01* Y5776D01* X2749Y5784D01* X2775Y5791D01* X2801Y5796D01* X2828Y5799D01* X2855Y5799D01* X2882Y5797D01* X2909Y5793D01* X2935Y5785D01* X2961Y5776D01* X2985Y5764D01* X2993Y5761D01* X3002Y5759D01* X3011Y5759D01* X3019Y5760D01* X3028Y5762D01* X3035Y5766D01* X3042Y5772D01* X3048Y5778D01* X3052Y5784D01* Y5225D01* G37* G36* Y40000D02*X3132D01* Y15596D01* X3124Y15627D01* X3110Y15661D01* X3094Y15694D01* X3090Y15701D01* X3084Y15707D01* X3076Y15712D01* X3069Y15716D01* X3060Y15718D01* X3052Y15719D01* Y17289D01* X3060Y17293D01* X3067Y17298D01* X3073Y17305D01* X3078Y17312D01* X3093Y17344D01* X3106Y17378D01* X3115Y17413D01* X3121Y17449D01* X3124Y17485D01* X3124Y17521D01* X3120Y17557D01* X3114Y17593D01* X3104Y17627D01* X3090Y17661D01* X3074Y17694D01* X3070Y17701D01* X3064Y17707D01* X3056Y17712D01* X3052Y17714D01* Y19304D01* X3053Y19305D01* X3058Y19312D01* X3073Y19344D01* X3086Y19378D01* X3095Y19413D01* X3101Y19449D01* X3104Y19485D01* X3104Y19521D01* X3100Y19557D01* X3094Y19593D01* X3084Y19627D01* X3070Y19661D01* X3054Y19694D01* X3052Y19696D01* Y21343D01* X3053Y21344D01* X3066Y21378D01* X3075Y21413D01* X3081Y21449D01* X3084Y21485D01* X3084Y21521D01* X3080Y21557D01* X3074Y21593D01* X3064Y21627D01* X3052Y21656D01* Y23404D01* X3055Y23413D01* X3061Y23449D01* X3064Y23485D01* X3064Y23521D01* X3060Y23557D01* X3054Y23593D01* X3052Y23596D01* Y40000D01* G37* G36* X3132Y0D02*X3052D01* Y1137D01* X3078Y1150D01* X3086Y1155D01* X3092Y1161D01* X3097Y1168D01* X3101Y1175D01* X3103Y1184D01* X3104Y1193D01* X3104Y1201D01* X3101Y1210D01* X3098Y1218D01* X3093Y1225D01* X3087Y1231D01* X3080Y1236D01* X3072Y1240D01* X3064Y1243D01* X3055Y1243D01* X3052Y1243D01* Y1759D01* X3059Y1760D01* X3068Y1762D01* X3075Y1766D01* X3082Y1772D01* X3088Y1778D01* X3093Y1785D01* X3096Y1793D01* X3098Y1802D01* X3099Y1810D01* X3098Y1819D01* X3095Y1827D01* X3091Y1835D01* X3086Y1842D01* X3080Y1848D01* X3072Y1853D01* X3052Y1862D01* Y3147D01* X3058Y3150D01* X3066Y3155D01* X3072Y3161D01* X3077Y3168D01* X3081Y3175D01* X3083Y3184D01* X3084Y3193D01* X3084Y3201D01* X3081Y3210D01* X3078Y3218D01* X3073Y3225D01* X3067Y3231D01* X3060Y3236D01* X3052Y3240D01* Y3765D01* X3055Y3766D01* X3062Y3772D01* X3068Y3778D01* X3073Y3785D01* X3076Y3793D01* X3078Y3802D01* X3079Y3810D01* X3078Y3819D01* X3075Y3827D01* X3071Y3835D01* X3066Y3842D01* X3060Y3848D01* X3052Y3853D01* Y5161D01* X3057Y5168D01* X3061Y5175D01* X3063Y5184D01* X3064Y5193D01* X3064Y5201D01* X3061Y5210D01* X3058Y5218D01* X3053Y5225D01* X3052Y5225D01* Y5784D01* X3053Y5785D01* X3056Y5793D01* X3058Y5802D01* X3059Y5810D01* X3058Y5819D01* X3055Y5827D01* X3052Y5833D01* Y11307D01* X3056Y11302D01* X3063Y11296D01* X3070Y11291D01* X3078Y11288D01* X3087Y11286D01* X3095Y11285D01* X3104Y11286D01* X3112Y11289D01* X3120Y11293D01* X3127Y11298D01* X3132Y11304D01* Y9714D01* X3129Y9716D01* X3120Y9718D01* X3112Y9719D01* X3103Y9719D01* X3094Y9717D01* X3086Y9713D01* X3079Y9708D01* X3073Y9702D01* X3068Y9695D01* X3064Y9687D01* X3062Y9679D01* X3061Y9670D01* X3061Y9661D01* X3063Y9653D01* X3067Y9645D01* X3079Y9621D01* X3089Y9595D01* X3096Y9569D01* X3101Y9543D01* X3104Y9516D01* X3104Y9489D01* X3102Y9462D01* X3097Y9435D01* X3090Y9409D01* X3081Y9383D01* X3069Y9359D01* X3066Y9351D01* X3064Y9342D01* X3064Y9333D01* X3065Y9325D01* X3067Y9317D01* X3071Y9309D01* X3076Y9302D01* X3083Y9296D01* X3090Y9291D01* X3098Y9288D01* X3107Y9286D01* X3115Y9285D01* X3124Y9286D01* X3132Y9289D01* X3132Y9289D01* Y7719D01* X3132Y7719D01* X3123Y7719D01* X3114Y7717D01* X3106Y7713D01* X3099Y7708D01* X3093Y7702D01* X3088Y7695D01* X3084Y7687D01* X3082Y7679D01* X3081Y7670D01* X3081Y7661D01* X3083Y7653D01* X3087Y7645D01* X3099Y7621D01* X3109Y7595D01* X3116Y7569D01* X3121Y7543D01* X3124Y7516D01* X3124Y7489D01* X3122Y7462D01* X3117Y7435D01* X3110Y7409D01* X3101Y7383D01* X3089Y7359D01* X3086Y7351D01* X3084Y7342D01* X3084Y7333D01* X3085Y7325D01* X3087Y7317D01* X3091Y7309D01* X3096Y7302D01* X3103Y7296D01* X3110Y7291D01* X3118Y7288D01* X3127Y7286D01* X3132Y7286D01* Y5716D01* X3126Y5713D01* X3119Y5708D01* X3113Y5702D01* X3108Y5695D01* X3104Y5687D01* X3102Y5679D01* X3101Y5670D01* X3101Y5661D01* X3103Y5653D01* X3107Y5645D01* X3119Y5621D01* X3129Y5595D01* X3132Y5583D01* Y5416D01* X3130Y5409D01* X3121Y5383D01* X3109Y5359D01* X3106Y5351D01* X3104Y5342D01* X3104Y5333D01* X3105Y5325D01* X3107Y5317D01* X3111Y5309D01* X3116Y5302D01* X3123Y5296D01* X3130Y5291D01* X3132Y5290D01* Y3701D01* X3128Y3695D01* X3124Y3687D01* X3122Y3679D01* X3121Y3670D01* X3121Y3661D01* X3123Y3653D01* X3127Y3645D01* X3132Y3634D01* Y3365D01* X3129Y3359D01* X3126Y3351D01* X3124Y3342D01* X3124Y3333D01* X3125Y3325D01* X3127Y3317D01* X3131Y3309D01* X3132Y3307D01* Y0D01* G37* G36* Y11696D02*X3130Y11701D01* X3124Y11707D01* X3116Y11712D01* X3109Y11716D01* X3100Y11718D01* X3092Y11719D01* X3083Y11719D01* X3074Y11717D01* X3066Y11713D01* X3059Y11708D01* X3053Y11702D01* X3052Y11701D01* Y13290D01* X3058Y13288D01* X3067Y13286D01* X3075Y13285D01* X3084Y13286D01* X3092Y13289D01* X3100Y13293D01* X3107Y13298D01* X3113Y13305D01* X3118Y13312D01* X3132Y13343D01* Y11696D01* G37* G36* Y13656D02*X3130Y13661D01* X3114Y13694D01* X3110Y13701D01* X3104Y13707D01* X3096Y13712D01* X3089Y13716D01* X3080Y13718D01* X3072Y13719D01* X3063Y13719D01* X3054Y13717D01* X3052Y13716D01* Y15286D01* X3055Y15285D01* X3064Y15286D01* X3072Y15289D01* X3080Y15293D01* X3087Y15298D01* X3093Y15305D01* X3098Y15312D01* X3113Y15344D01* X3126Y15378D01* X3132Y15404D01* Y13656D01* G37* G36* Y40000D02*X3212D01* Y7596D01* X3204Y7627D01* X3190Y7661D01* X3174Y7694D01* X3170Y7701D01* X3164Y7707D01* X3156Y7712D01* X3149Y7716D01* X3140Y7718D01* X3132Y7719D01* Y9289D01* X3140Y9293D01* X3147Y9298D01* X3153Y9305D01* X3158Y9312D01* X3173Y9344D01* X3186Y9378D01* X3195Y9413D01* X3201Y9449D01* X3204Y9485D01* X3204Y9521D01* X3200Y9557D01* X3194Y9593D01* X3184Y9627D01* X3170Y9661D01* X3154Y9694D01* X3150Y9701D01* X3144Y9707D01* X3136Y9712D01* X3132Y9714D01* Y11304D01* X3133Y11305D01* X3138Y11312D01* X3153Y11344D01* X3166Y11378D01* X3175Y11413D01* X3181Y11449D01* X3184Y11485D01* X3184Y11521D01* X3180Y11557D01* X3174Y11593D01* X3164Y11627D01* X3150Y11661D01* X3134Y11694D01* X3132Y11696D01* Y13343D01* X3133Y13344D01* X3146Y13378D01* X3155Y13413D01* X3161Y13449D01* X3164Y13485D01* X3164Y13521D01* X3160Y13557D01* X3154Y13593D01* X3144Y13627D01* X3132Y13656D01* Y15404D01* X3135Y15413D01* X3141Y15449D01* X3144Y15485D01* X3144Y15521D01* X3140Y15557D01* X3134Y15593D01* X3132Y15596D01* Y40000D01* G37* G36* X3212Y0D02*X3132D01* Y3307D01* X3136Y3302D01* X3143Y3296D01* X3150Y3291D01* X3158Y3288D01* X3167Y3286D01* X3175Y3285D01* X3184Y3286D01* X3192Y3289D01* X3200Y3293D01* X3207Y3298D01* X3212Y3304D01* Y1714D01* X3209Y1716D01* X3200Y1718D01* X3192Y1719D01* X3183Y1719D01* X3174Y1717D01* X3166Y1713D01* X3159Y1708D01* X3153Y1702D01* X3148Y1695D01* X3144Y1687D01* X3142Y1679D01* X3141Y1670D01* X3141Y1661D01* X3143Y1653D01* X3147Y1645D01* X3159Y1621D01* X3169Y1595D01* X3176Y1569D01* X3181Y1543D01* X3184Y1516D01* X3184Y1489D01* X3182Y1462D01* X3177Y1435D01* X3170Y1409D01* X3161Y1383D01* X3149Y1359D01* X3146Y1351D01* X3144Y1342D01* X3144Y1333D01* X3145Y1325D01* X3147Y1317D01* X3151Y1309D01* X3156Y1302D01* X3163Y1296D01* X3170Y1291D01* X3178Y1288D01* X3187Y1286D01* X3195Y1285D01* X3204Y1286D01* X3212Y1289D01* X3212Y1289D01* Y0D01* G37* G36* Y3696D02*X3210Y3701D01* X3204Y3707D01* X3196Y3712D01* X3189Y3716D01* X3180Y3718D01* X3172Y3719D01* X3163Y3719D01* X3154Y3717D01* X3146Y3713D01* X3139Y3708D01* X3133Y3702D01* X3132Y3701D01* Y5290D01* X3138Y5288D01* X3147Y5286D01* X3155Y5285D01* X3164Y5286D01* X3172Y5289D01* X3180Y5293D01* X3187Y5298D01* X3193Y5305D01* X3198Y5312D01* X3212Y5343D01* Y3696D01* G37* G36* Y5656D02*X3210Y5661D01* X3194Y5694D01* X3190Y5701D01* X3184Y5707D01* X3176Y5712D01* X3169Y5716D01* X3160Y5718D01* X3152Y5719D01* X3143Y5719D01* X3134Y5717D01* X3132Y5716D01* Y7286D01* X3135Y7285D01* X3144Y7286D01* X3152Y7289D01* X3160Y7293D01* X3167Y7298D01* X3173Y7305D01* X3178Y7312D01* X3193Y7344D01* X3206Y7378D01* X3212Y7404D01* Y5656D01* G37* G36* Y40000D02*X4177D01* Y39710D01* X4169Y39706D01* X4162Y39701D01* X4156Y39695D01* X4151Y39687D01* X4136Y39655D01* X4123Y39621D01* X4114Y39586D01* X4108Y39550D01* X4105Y39514D01* X4105Y39478D01* X4109Y39442D01* X4115Y39407D01* X4125Y39372D01* X4139Y39338D01* X4155Y39306D01* X4159Y39299D01* X4165Y39292D01* X4173Y39287D01* X4177Y39285D01* Y37695D01* X4176Y37695D01* X4171Y37687D01* X4156Y37655D01* X4143Y37621D01* X4134Y37586D01* X4128Y37550D01* X4125Y37514D01* X4125Y37478D01* X4129Y37442D01* X4135Y37407D01* X4145Y37372D01* X4159Y37338D01* X4175Y37306D01* X4177Y37303D01* Y35656D01* X4176Y35655D01* X4163Y35621D01* X4154Y35586D01* X4148Y35550D01* X4145Y35514D01* X4145Y35478D01* X4149Y35442D01* X4155Y35407D01* X4165Y35372D01* X4177Y35343D01* Y33596D01* X4174Y33586D01* X4168Y33550D01* X4165Y33514D01* X4165Y33478D01* X4169Y33442D01* X4175Y33407D01* X4177Y33403D01* Y0D01* X3212D01* Y1289D01* X3220Y1293D01* X3227Y1298D01* X3233Y1305D01* X3238Y1312D01* X3253Y1344D01* X3266Y1378D01* X3275Y1413D01* X3281Y1449D01* X3284Y1485D01* X3284Y1521D01* X3280Y1557D01* X3274Y1593D01* X3264Y1627D01* X3250Y1661D01* X3234Y1694D01* X3230Y1701D01* X3224Y1707D01* X3216Y1712D01* X3212Y1714D01* Y3304D01* X3213Y3305D01* X3218Y3312D01* X3233Y3344D01* X3246Y3378D01* X3255Y3413D01* X3261Y3449D01* X3264Y3485D01* X3264Y3521D01* X3260Y3557D01* X3254Y3593D01* X3244Y3627D01* X3230Y3661D01* X3214Y3694D01* X3212Y3696D01* Y5343D01* X3213Y5344D01* X3226Y5378D01* X3235Y5413D01* X3241Y5449D01* X3244Y5485D01* X3244Y5521D01* X3240Y5557D01* X3234Y5593D01* X3224Y5627D01* X3212Y5656D01* Y7404D01* X3215Y7413D01* X3221Y7449D01* X3224Y7485D01* X3224Y7521D01* X3220Y7557D01* X3214Y7593D01* X3212Y7596D01* Y40000D01* G37* G36* X4177D02*X4257D01* Y37692D01* X4253Y37697D01* X4246Y37703D01* X4239Y37708D01* X4231Y37711D01* X4222Y37713D01* X4214Y37714D01* X4205Y37713D01* X4197Y37710D01* X4189Y37706D01* X4182Y37701D01* X4177Y37695D01* Y39285D01* X4180Y39283D01* X4189Y39281D01* X4197Y39280D01* X4206Y39281D01* X4215Y39283D01* X4223Y39286D01* X4230Y39291D01* X4236Y39297D01* X4241Y39304D01* X4245Y39312D01* X4247Y39320D01* X4248Y39329D01* X4248Y39338D01* X4246Y39346D01* X4242Y39354D01* X4230Y39378D01* X4220Y39404D01* X4213Y39430D01* X4208Y39456D01* X4205Y39483D01* X4205Y39511D01* X4207Y39538D01* X4212Y39564D01* X4219Y39590D01* X4228Y39616D01* X4240Y39640D01* X4243Y39649D01* X4245Y39657D01* X4245Y39666D01* X4244Y39674D01* X4242Y39683D01* X4238Y39690D01* X4233Y39697D01* X4226Y39703D01* X4219Y39708D01* X4211Y39711D01* X4202Y39713D01* X4194Y39714D01* X4185Y39713D01* X4177Y39710D01* X4177Y39710D01* Y40000D01* G37* G36* X4257Y29695D02*X4256Y29695D01* X4251Y29687D01* X4236Y29655D01* X4223Y29621D01* X4214Y29586D01* X4208Y29550D01* X4205Y29514D01* X4205Y29478D01* X4209Y29442D01* X4215Y29407D01* X4225Y29372D01* X4239Y29338D01* X4255Y29306D01* X4257Y29303D01* Y27656D01* X4256Y27655D01* X4243Y27621D01* X4234Y27586D01* X4228Y27550D01* X4225Y27514D01* X4225Y27478D01* X4229Y27442D01* X4235Y27407D01* X4245Y27372D01* X4257Y27343D01* Y25596D01* X4254Y25586D01* X4248Y25550D01* X4245Y25514D01* X4245Y25478D01* X4249Y25442D01* X4255Y25407D01* X4257Y25403D01* Y0D01* X4177D01* Y33403D01* X4185Y33372D01* X4199Y33338D01* X4215Y33306D01* X4219Y33299D01* X4225Y33292D01* X4233Y33287D01* X4240Y33283D01* X4249Y33281D01* X4257Y33280D01* Y31710D01* X4249Y31706D01* X4242Y31701D01* X4236Y31695D01* X4231Y31687D01* X4216Y31655D01* X4203Y31621D01* X4194Y31586D01* X4188Y31550D01* X4185Y31514D01* X4185Y31478D01* X4189Y31442D01* X4195Y31407D01* X4205Y31372D01* X4219Y31338D01* X4235Y31306D01* X4239Y31299D01* X4245Y31292D01* X4253Y31287D01* X4257Y31285D01* Y29695D01* G37* G36* Y33714D02*X4254Y33714D01* X4245Y33713D01* X4237Y33710D01* X4229Y33706D01* X4222Y33701D01* X4216Y33695D01* X4211Y33687D01* X4196Y33655D01* X4183Y33621D01* X4177Y33596D01* Y35343D01* X4179Y35338D01* X4195Y35306D01* X4199Y35299D01* X4205Y35292D01* X4213Y35287D01* X4220Y35283D01* X4229Y35281D01* X4237Y35280D01* X4246Y35281D01* X4255Y35283D01* X4257Y35284D01* Y33714D01* G37* G36* Y35417D02*X4253Y35430D01* X4248Y35456D01* X4245Y35483D01* X4245Y35511D01* X4247Y35538D01* X4252Y35564D01* X4257Y35583D01* Y35417D01* G37* G36* Y35709D02*X4251Y35711D01* X4242Y35713D01* X4234Y35714D01* X4225Y35713D01* X4217Y35710D01* X4209Y35706D01* X4202Y35701D01* X4196Y35695D01* X4191Y35687D01* X4177Y35656D01* Y37303D01* X4179Y37299D01* X4185Y37292D01* X4193Y37287D01* X4200Y37283D01* X4209Y37281D01* X4217Y37280D01* X4226Y37281D01* X4235Y37283D01* X4243Y37286D01* X4250Y37291D01* X4256Y37297D01* X4257Y37298D01* Y35709D01* G37* G36* Y37365D02*X4250Y37378D01* X4240Y37404D01* X4233Y37430D01* X4228Y37456D01* X4225Y37483D01* X4225Y37511D01* X4227Y37538D01* X4232Y37564D01* X4239Y37590D01* X4248Y37616D01* X4257Y37634D01* Y37365D01* G37* G36* Y40000D02*X4337D01* Y39862D01* X4311Y39849D01* X4303Y39845D01* X4297Y39839D01* X4292Y39832D01* X4288Y39824D01* X4286Y39815D01* X4285Y39807D01* X4285Y39798D01* X4288Y39790D01* X4291Y39782D01* X4296Y39774D01* X4302Y39768D01* X4309Y39763D01* X4317Y39759D01* X4325Y39757D01* X4334Y39756D01* X4337Y39756D01* Y39240D01* X4330Y39239D01* X4321Y39237D01* X4314Y39233D01* X4307Y39228D01* X4301Y39221D01* X4296Y39214D01* X4293Y39206D01* X4291Y39197D01* X4290Y39189D01* X4291Y39180D01* X4294Y39172D01* X4298Y39164D01* X4303Y39157D01* X4309Y39151D01* X4317Y39146D01* X4337Y39137D01* Y37852D01* X4331Y37849D01* X4323Y37845D01* X4317Y37839D01* X4312Y37832D01* X4308Y37824D01* X4306Y37815D01* X4305Y37807D01* X4305Y37798D01* X4308Y37790D01* X4311Y37782D01* X4316Y37774D01* X4322Y37768D01* X4329Y37763D01* X4337Y37759D01* Y37234D01* X4334Y37233D01* X4327Y37228D01* X4321Y37221D01* X4316Y37214D01* X4313Y37206D01* X4311Y37197D01* X4310Y37189D01* X4311Y37180D01* X4314Y37172D01* X4318Y37164D01* X4323Y37157D01* X4329Y37151D01* X4337Y37147D01* Y35838D01* X4332Y35832D01* X4328Y35824D01* X4326Y35815D01* X4325Y35807D01* X4325Y35798D01* X4328Y35790D01* X4331Y35782D01* X4336Y35774D01* X4337Y35774D01* Y35215D01* X4336Y35214D01* X4333Y35206D01* X4331Y35197D01* X4330Y35189D01* X4331Y35180D01* X4334Y35172D01* X4337Y35167D01* Y29692D01* X4333Y29697D01* X4326Y29703D01* X4319Y29708D01* X4311Y29711D01* X4302Y29713D01* X4294Y29714D01* X4285Y29713D01* X4277Y29710D01* X4269Y29706D01* X4262Y29701D01* X4257Y29695D01* Y31285D01* X4260Y31283D01* X4269Y31281D01* X4277Y31280D01* X4286Y31281D01* X4295Y31283D01* X4303Y31286D01* X4310Y31291D01* X4316Y31297D01* X4321Y31304D01* X4325Y31312D01* X4327Y31320D01* X4328Y31329D01* X4328Y31338D01* X4326Y31346D01* X4322Y31354D01* X4310Y31378D01* X4300Y31404D01* X4293Y31430D01* X4288Y31456D01* X4285Y31483D01* X4285Y31511D01* X4287Y31538D01* X4292Y31564D01* X4299Y31590D01* X4308Y31616D01* X4320Y31640D01* X4323Y31649D01* X4325Y31657D01* X4325Y31666D01* X4324Y31674D01* X4322Y31683D01* X4318Y31690D01* X4313Y31697D01* X4306Y31703D01* X4299Y31708D01* X4291Y31711D01* X4282Y31713D01* X4274Y31714D01* X4265Y31713D01* X4257Y31710D01* X4257Y31710D01* Y33280D01* X4257Y33280D01* X4266Y33281D01* X4275Y33283D01* X4283Y33286D01* X4290Y33291D01* X4296Y33297D01* X4301Y33304D01* X4305Y33312D01* X4307Y33320D01* X4308Y33329D01* X4308Y33338D01* X4306Y33346D01* X4302Y33354D01* X4290Y33378D01* X4280Y33404D01* X4273Y33430D01* X4268Y33456D01* X4265Y33483D01* X4265Y33511D01* X4267Y33538D01* X4272Y33564D01* X4279Y33590D01* X4288Y33616D01* X4300Y33640D01* X4303Y33649D01* X4305Y33657D01* X4305Y33666D01* X4304Y33674D01* X4302Y33683D01* X4298Y33690D01* X4293Y33697D01* X4286Y33703D01* X4279Y33708D01* X4271Y33711D01* X4262Y33713D01* X4257Y33714D01* Y35284D01* X4263Y35286D01* X4270Y35291D01* X4276Y35297D01* X4281Y35304D01* X4285Y35312D01* X4287Y35320D01* X4288Y35329D01* X4288Y35338D01* X4286Y35346D01* X4282Y35354D01* X4270Y35378D01* X4260Y35404D01* X4257Y35417D01* Y35583D01* X4259Y35590D01* X4268Y35616D01* X4280Y35640D01* X4283Y35649D01* X4285Y35657D01* X4285Y35666D01* X4284Y35674D01* X4282Y35683D01* X4278Y35690D01* X4273Y35697D01* X4266Y35703D01* X4259Y35708D01* X4257Y35709D01* Y37298D01* X4261Y37304D01* X4265Y37312D01* X4267Y37320D01* X4268Y37329D01* X4268Y37338D01* X4266Y37346D01* X4262Y37354D01* X4257Y37365D01* Y37634D01* X4260Y37640D01* X4263Y37649D01* X4265Y37657D01* X4265Y37666D01* X4264Y37674D01* X4262Y37683D01* X4258Y37690D01* X4257Y37692D01* Y40000D01* G37* G36* Y29303D02*X4259Y29299D01* X4265Y29292D01* X4273Y29287D01* X4280Y29283D01* X4289Y29281D01* X4297Y29280D01* X4306Y29281D01* X4315Y29283D01* X4323Y29286D01* X4330Y29291D01* X4336Y29297D01* X4337Y29298D01* Y27709D01* X4331Y27711D01* X4322Y27713D01* X4314Y27714D01* X4305Y27713D01* X4297Y27710D01* X4289Y27706D01* X4282Y27701D01* X4276Y27695D01* X4271Y27687D01* X4257Y27656D01* Y29303D01* G37* G36* Y27343D02*X4259Y27338D01* X4275Y27306D01* X4279Y27299D01* X4285Y27292D01* X4293Y27287D01* X4300Y27283D01* X4309Y27281D01* X4317Y27280D01* X4326Y27281D01* X4335Y27283D01* X4337Y27284D01* Y25714D01* X4334Y25714D01* X4325Y25713D01* X4317Y25710D01* X4309Y25706D01* X4302Y25701D01* X4296Y25695D01* X4291Y25687D01* X4276Y25655D01* X4263Y25621D01* X4257Y25596D01* Y27343D01* G37* G36* Y25403D02*X4265Y25372D01* X4279Y25338D01* X4295Y25306D01* X4299Y25299D01* X4305Y25292D01* X4313Y25287D01* X4320Y25283D01* X4329Y25281D01* X4337Y25280D01* Y23710D01* X4329Y23706D01* X4322Y23701D01* X4316Y23695D01* X4311Y23687D01* X4296Y23655D01* X4283Y23621D01* X4274Y23586D01* X4268Y23550D01* X4265Y23514D01* X4265Y23478D01* X4269Y23442D01* X4275Y23407D01* X4285Y23372D01* X4299Y23338D01* X4315Y23306D01* X4319Y23299D01* X4325Y23292D01* X4333Y23287D01* X4337Y23285D01* Y21695D01* X4336Y21695D01* X4331Y21687D01* X4316Y21655D01* X4303Y21621D01* X4294Y21586D01* X4288Y21550D01* X4285Y21514D01* X4285Y21478D01* X4289Y21442D01* X4295Y21407D01* X4305Y21372D01* X4319Y21338D01* X4335Y21306D01* X4337Y21303D01* Y19656D01* X4336Y19655D01* X4323Y19621D01* X4314Y19586D01* X4308Y19550D01* X4305Y19514D01* X4305Y19478D01* X4309Y19442D01* X4315Y19407D01* X4325Y19372D01* X4337Y19343D01* Y17596D01* X4334Y17586D01* X4328Y17550D01* X4325Y17514D01* X4325Y17478D01* X4329Y17442D01* X4335Y17407D01* X4337Y17403D01* Y0D01* X4257D01* Y25403D01* G37* G36* X4337Y29365D02*X4330Y29378D01* X4320Y29404D01* X4313Y29430D01* X4308Y29456D01* X4305Y29483D01* X4305Y29511D01* X4307Y29538D01* X4312Y29564D01* X4319Y29590D01* X4328Y29616D01* X4337Y29634D01* Y29365D01* G37* G36* Y27417D02*X4333Y27430D01* X4328Y27456D01* X4325Y27483D01* X4325Y27511D01* X4327Y27538D01* X4332Y27564D01* X4337Y27583D01* Y27417D01* G37* G36* Y40000D02*X4667D01* Y39865D01* X4660Y39868D01* X4626Y39881D01* X4591Y39890D01* X4555Y39896D01* X4519Y39899D01* X4483Y39899D01* X4447Y39895D01* X4411Y39889D01* X4377Y39879D01* X4343Y39866D01* X4337Y39862D01* Y40000D01* G37* G36* Y39756D02*X4343Y39756D01* X4351Y39758D01* X4359Y39762D01* X4383Y39774D01* X4409Y39784D01* X4435Y39791D01* X4461Y39796D01* X4488Y39799D01* X4515Y39799D01* X4542Y39797D01* X4569Y39793D01* X4595Y39785D01* X4621Y39776D01* X4645Y39764D01* X4653Y39761D01* X4662Y39759D01* X4667Y39759D01* Y39243D01* X4666Y39243D01* X4658Y39241D01* X4650Y39237D01* X4626Y39225D01* X4600Y39215D01* X4574Y39208D01* X4548Y39203D01* X4521Y39200D01* X4494Y39200D01* X4467Y39202D01* X4440Y39207D01* X4414Y39214D01* X4388Y39223D01* X4364Y39235D01* X4356Y39238D01* X4347Y39240D01* X4338Y39240D01* X4337Y39240D01* Y39756D01* G37* G36* Y39137D02*X4349Y39131D01* X4383Y39118D01* X4418Y39109D01* X4454Y39103D01* X4490Y39100D01* X4526Y39100D01* X4562Y39104D01* X4598Y39111D01* X4632Y39121D01* X4666Y39134D01* X4667Y39134D01* Y37873D01* X4646Y37881D01* X4611Y37890D01* X4575Y37896D01* X4539Y37899D01* X4503Y37899D01* X4467Y37895D01* X4431Y37889D01* X4397Y37879D01* X4363Y37866D01* X4337Y37852D01* Y39137D01* G37* G36* Y37759D02*X4337Y37759D01* X4345Y37757D01* X4354Y37756D01* X4363Y37756D01* X4371Y37758D01* X4379Y37762D01* X4403Y37774D01* X4429Y37784D01* X4455Y37791D01* X4481Y37796D01* X4508Y37799D01* X4535Y37799D01* X4562Y37797D01* X4589Y37793D01* X4615Y37785D01* X4641Y37776D01* X4665Y37764D01* X4667Y37764D01* Y37236D01* X4646Y37225D01* X4620Y37215D01* X4594Y37208D01* X4568Y37203D01* X4541Y37200D01* X4514Y37200D01* X4487Y37202D01* X4460Y37207D01* X4434Y37214D01* X4408Y37223D01* X4384Y37235D01* X4376Y37238D01* X4367Y37240D01* X4358Y37240D01* X4350Y37239D01* X4341Y37237D01* X4337Y37234D01* Y37759D01* G37* G36* Y37147D02*X4337Y37146D01* X4369Y37131D01* X4403Y37118D01* X4438Y37109D01* X4474Y37103D01* X4510Y37100D01* X4546Y37100D01* X4582Y37104D01* X4618Y37111D01* X4652Y37121D01* X4667Y37126D01* Y35880D01* X4666Y35881D01* X4631Y35890D01* X4595Y35896D01* X4559Y35899D01* X4523Y35899D01* X4487Y35895D01* X4451Y35889D01* X4417Y35879D01* X4383Y35866D01* X4351Y35849D01* X4343Y35845D01* X4337Y35839D01* X4337Y35838D01* Y37147D01* G37* G36* Y35774D02*X4342Y35768D01* X4349Y35763D01* X4357Y35759D01* X4365Y35757D01* X4374Y35756D01* X4383Y35756D01* X4391Y35758D01* X4399Y35762D01* X4423Y35774D01* X4449Y35784D01* X4475Y35791D01* X4501Y35796D01* X4528Y35799D01* X4555Y35799D01* X4582Y35797D01* X4609Y35793D01* X4635Y35785D01* X4661Y35776D01* X4667Y35773D01* Y35226D01* X4666Y35225D01* X4640Y35215D01* X4614Y35208D01* X4588Y35203D01* X4561Y35200D01* X4534Y35200D01* X4507Y35202D01* X4480Y35207D01* X4454Y35214D01* X4428Y35223D01* X4404Y35235D01* X4396Y35238D01* X4387Y35240D01* X4378Y35240D01* X4370Y35239D01* X4361Y35237D01* X4354Y35233D01* X4347Y35228D01* X4341Y35221D01* X4337Y35215D01* Y35774D01* G37* G36* Y35167D02*X4338Y35164D01* X4343Y35157D01* X4349Y35151D01* X4357Y35146D01* X4389Y35131D01* X4417Y35121D01* Y33871D01* X4403Y33866D01* X4371Y33849D01* X4363Y33845D01* X4357Y33839D01* X4352Y33832D01* X4348Y33824D01* X4346Y33815D01* X4345Y33807D01* X4345Y33798D01* X4348Y33790D01* X4351Y33782D01* X4356Y33774D01* X4362Y33768D01* X4369Y33763D01* X4377Y33759D01* X4385Y33757D01* X4394Y33756D01* X4403Y33756D01* X4411Y33758D01* X4417Y33761D01* Y33238D01* X4416Y33238D01* X4407Y33240D01* X4398Y33240D01* X4390Y33239D01* X4381Y33237D01* X4374Y33233D01* X4367Y33228D01* X4361Y33221D01* X4356Y33214D01* X4353Y33206D01* X4351Y33197D01* X4350Y33189D01* X4351Y33180D01* X4354Y33172D01* X4358Y33164D01* X4363Y33157D01* X4369Y33151D01* X4377Y33146D01* X4409Y33131D01* X4417Y33128D01* Y31862D01* X4391Y31849D01* X4383Y31845D01* X4377Y31839D01* X4372Y31832D01* X4368Y31824D01* X4366Y31815D01* X4365Y31807D01* X4365Y31798D01* X4368Y31790D01* X4371Y31782D01* X4376Y31774D01* X4382Y31768D01* X4389Y31763D01* X4397Y31759D01* X4405Y31757D01* X4414Y31756D01* X4417Y31756D01* Y31240D01* X4410Y31239D01* X4401Y31237D01* X4394Y31233D01* X4387Y31228D01* X4381Y31221D01* X4376Y31214D01* X4373Y31206D01* X4371Y31197D01* X4370Y31189D01* X4371Y31180D01* X4374Y31172D01* X4378Y31164D01* X4383Y31157D01* X4389Y31151D01* X4397Y31146D01* X4417Y31137D01* Y29852D01* X4411Y29849D01* X4403Y29845D01* X4397Y29839D01* X4392Y29832D01* X4388Y29824D01* X4386Y29815D01* X4385Y29807D01* X4385Y29798D01* X4388Y29790D01* X4391Y29782D01* X4396Y29774D01* X4402Y29768D01* X4409Y29763D01* X4417Y29759D01* Y29234D01* X4414Y29233D01* X4407Y29228D01* X4401Y29221D01* X4396Y29214D01* X4393Y29206D01* X4391Y29197D01* X4390Y29189D01* X4391Y29180D01* X4394Y29172D01* X4398Y29164D01* X4403Y29157D01* X4409Y29151D01* X4417Y29147D01* Y27838D01* X4412Y27832D01* X4408Y27824D01* X4406Y27815D01* X4405Y27807D01* X4405Y27798D01* X4408Y27790D01* X4411Y27782D01* X4416Y27774D01* X4417Y27774D01* Y27215D01* X4416Y27214D01* X4413Y27206D01* X4411Y27197D01* X4410Y27189D01* X4411Y27180D01* X4414Y27172D01* X4417Y27167D01* Y21692D01* X4413Y21697D01* X4406Y21703D01* X4399Y21708D01* X4391Y21711D01* X4382Y21713D01* X4374Y21714D01* X4365Y21713D01* X4357Y21710D01* X4349Y21706D01* X4342Y21701D01* X4337Y21695D01* Y23285D01* X4340Y23283D01* X4349Y23281D01* X4357Y23280D01* X4366Y23281D01* X4375Y23283D01* X4383Y23286D01* X4390Y23291D01* X4396Y23297D01* X4401Y23304D01* X4405Y23312D01* X4407Y23320D01* X4408Y23329D01* X4408Y23338D01* X4406Y23346D01* X4402Y23354D01* X4390Y23378D01* X4380Y23404D01* X4373Y23430D01* X4368Y23456D01* X4365Y23483D01* X4365Y23511D01* X4367Y23538D01* X4372Y23564D01* X4379Y23590D01* X4388Y23616D01* X4400Y23640D01* X4403Y23649D01* X4405Y23657D01* X4405Y23666D01* X4404Y23674D01* X4402Y23683D01* X4398Y23690D01* X4393Y23697D01* X4386Y23703D01* X4379Y23708D01* X4371Y23711D01* X4362Y23713D01* X4354Y23714D01* X4345Y23713D01* X4337Y23710D01* X4337Y23710D01* Y25280D01* X4337Y25280D01* X4346Y25281D01* X4355Y25283D01* X4363Y25286D01* X4370Y25291D01* X4376Y25297D01* X4381Y25304D01* X4385Y25312D01* X4387Y25320D01* X4388Y25329D01* X4388Y25338D01* X4386Y25346D01* X4382Y25354D01* X4370Y25378D01* X4360Y25404D01* X4353Y25430D01* X4348Y25456D01* X4345Y25483D01* X4345Y25511D01* X4347Y25538D01* X4352Y25564D01* X4359Y25590D01* X4368Y25616D01* X4380Y25640D01* X4383Y25649D01* X4385Y25657D01* X4385Y25666D01* X4384Y25674D01* X4382Y25683D01* X4378Y25690D01* X4373Y25697D01* X4366Y25703D01* X4359Y25708D01* X4351Y25711D01* X4342Y25713D01* X4337Y25714D01* Y27284D01* X4343Y27286D01* X4350Y27291D01* X4356Y27297D01* X4361Y27304D01* X4365Y27312D01* X4367Y27320D01* X4368Y27329D01* X4368Y27338D01* X4366Y27346D01* X4362Y27354D01* X4350Y27378D01* X4340Y27404D01* X4337Y27417D01* Y27583D01* X4339Y27590D01* X4348Y27616D01* X4360Y27640D01* X4363Y27649D01* X4365Y27657D01* X4365Y27666D01* X4364Y27674D01* X4362Y27683D01* X4358Y27690D01* X4353Y27697D01* X4346Y27703D01* X4339Y27708D01* X4337Y27709D01* Y29298D01* X4341Y29304D01* X4345Y29312D01* X4347Y29320D01* X4348Y29329D01* X4348Y29338D01* X4346Y29346D01* X4342Y29354D01* X4337Y29365D01* Y29634D01* X4340Y29640D01* X4343Y29649D01* X4345Y29657D01* X4345Y29666D01* X4344Y29674D01* X4342Y29683D01* X4338Y29690D01* X4337Y29692D01* Y35167D01* G37* G36* X4417Y0D02*X4337D01* Y17403D01* X4345Y17372D01* X4359Y17338D01* X4375Y17306D01* X4379Y17299D01* X4385Y17292D01* X4393Y17287D01* X4400Y17283D01* X4409Y17281D01* X4417Y17280D01* Y15710D01* X4409Y15706D01* X4402Y15701D01* X4396Y15695D01* X4391Y15687D01* X4376Y15655D01* X4363Y15621D01* X4354Y15586D01* X4348Y15550D01* X4345Y15514D01* X4345Y15478D01* X4349Y15442D01* X4355Y15407D01* X4365Y15372D01* X4379Y15338D01* X4395Y15306D01* X4399Y15299D01* X4405Y15292D01* X4413Y15287D01* X4417Y15285D01* Y13695D01* X4416Y13695D01* X4411Y13687D01* X4396Y13655D01* X4383Y13621D01* X4374Y13586D01* X4368Y13550D01* X4365Y13514D01* X4365Y13478D01* X4369Y13442D01* X4375Y13407D01* X4385Y13372D01* X4399Y13338D01* X4415Y13306D01* X4417Y13303D01* Y11656D01* X4416Y11655D01* X4403Y11621D01* X4394Y11586D01* X4388Y11550D01* X4385Y11514D01* X4385Y11478D01* X4389Y11442D01* X4395Y11407D01* X4405Y11372D01* X4417Y11343D01* Y9596D01* X4414Y9586D01* X4408Y9550D01* X4405Y9514D01* X4405Y9478D01* X4409Y9442D01* X4415Y9407D01* X4417Y9403D01* Y0D01* G37* G36* Y17714D02*X4414Y17714D01* X4405Y17713D01* X4397Y17710D01* X4389Y17706D01* X4382Y17701D01* X4376Y17695D01* X4371Y17687D01* X4356Y17655D01* X4343Y17621D01* X4337Y17596D01* Y19343D01* X4339Y19338D01* X4355Y19306D01* X4359Y19299D01* X4365Y19292D01* X4373Y19287D01* X4380Y19283D01* X4389Y19281D01* X4397Y19280D01* X4406Y19281D01* X4415Y19283D01* X4417Y19284D01* Y17714D01* G37* G36* Y19417D02*X4413Y19430D01* X4408Y19456D01* X4405Y19483D01* X4405Y19511D01* X4407Y19538D01* X4412Y19564D01* X4417Y19583D01* Y19417D01* G37* G36* Y19709D02*X4411Y19711D01* X4402Y19713D01* X4394Y19714D01* X4385Y19713D01* X4377Y19710D01* X4369Y19706D01* X4362Y19701D01* X4356Y19695D01* X4351Y19687D01* X4337Y19656D01* Y21303D01* X4339Y21299D01* X4345Y21292D01* X4353Y21287D01* X4360Y21283D01* X4369Y21281D01* X4377Y21280D01* X4386Y21281D01* X4395Y21283D01* X4403Y21286D01* X4410Y21291D01* X4416Y21297D01* X4417Y21298D01* Y19709D01* G37* G36* Y21365D02*X4410Y21378D01* X4400Y21404D01* X4393Y21430D01* X4388Y21456D01* X4385Y21483D01* X4385Y21511D01* X4387Y21538D01* X4392Y21564D01* X4399Y21590D01* X4408Y21616D01* X4417Y21634D01* Y21365D01* G37* G36* Y35121D02*X4423Y35118D01* X4458Y35109D01* X4494Y35103D01* X4530Y35100D01* X4566Y35100D01* X4602Y35104D01* X4638Y35111D01* X4667Y35119D01* Y33886D01* X4651Y33890D01* X4615Y33896D01* X4579Y33899D01* X4543Y33899D01* X4507Y33895D01* X4471Y33889D01* X4437Y33879D01* X4417Y33871D01* Y35121D01* G37* G36* Y33761D02*X4419Y33762D01* X4443Y33774D01* X4469Y33784D01* X4495Y33791D01* X4521Y33796D01* X4548Y33799D01* X4575Y33799D01* X4602Y33797D01* X4629Y33793D01* X4655Y33785D01* X4667Y33781D01* Y33218D01* X4660Y33215D01* X4634Y33208D01* X4608Y33203D01* X4581Y33200D01* X4554Y33200D01* X4527Y33202D01* X4500Y33207D01* X4474Y33214D01* X4448Y33223D01* X4424Y33235D01* X4417Y33238D01* Y33761D01* G37* G36* Y33128D02*X4443Y33118D01* X4478Y33109D01* X4514Y33103D01* X4550Y33100D01* X4586Y33100D01* X4622Y33104D01* X4658Y33111D01* X4667Y33113D01* Y31891D01* X4635Y31896D01* X4599Y31899D01* X4563Y31899D01* X4527Y31895D01* X4491Y31889D01* X4457Y31879D01* X4423Y31866D01* X4417Y31862D01* Y33128D01* G37* G36* Y31756D02*X4423Y31756D01* X4431Y31758D01* X4439Y31762D01* X4463Y31774D01* X4489Y31784D01* X4515Y31791D01* X4541Y31796D01* X4568Y31799D01* X4595Y31799D01* X4622Y31797D01* X4649Y31793D01* X4667Y31788D01* Y31212D01* X4654Y31208D01* X4628Y31203D01* X4601Y31200D01* X4574Y31200D01* X4547Y31202D01* X4520Y31207D01* X4494Y31214D01* X4468Y31223D01* X4444Y31235D01* X4436Y31238D01* X4427Y31240D01* X4418Y31240D01* X4417Y31240D01* Y31756D01* G37* G36* Y31137D02*X4429Y31131D01* X4463Y31118D01* X4498Y31109D01* X4534Y31103D01* X4570Y31100D01* X4606Y31100D01* X4642Y31104D01* X4667Y31109D01* Y29894D01* X4655Y29896D01* X4619Y29899D01* X4583Y29899D01* X4547Y29895D01* X4511Y29889D01* X4477Y29879D01* X4443Y29866D01* X4417Y29852D01* Y31137D01* G37* G36* Y29759D02*X4417Y29759D01* X4425Y29757D01* X4434Y29756D01* X4443Y29756D01* X4451Y29758D01* X4459Y29762D01* X4483Y29774D01* X4509Y29784D01* X4535Y29791D01* X4561Y29796D01* X4588Y29799D01* X4615Y29799D01* X4642Y29797D01* X4667Y29793D01* Y29206D01* X4648Y29203D01* X4621Y29200D01* X4594Y29200D01* X4567Y29202D01* X4540Y29207D01* X4514Y29214D01* X4488Y29223D01* X4464Y29235D01* X4456Y29238D01* X4447Y29240D01* X4438Y29240D01* X4430Y29239D01* X4421Y29237D01* X4417Y29234D01* Y29759D01* G37* G36* Y29147D02*X4417Y29146D01* X4449Y29131D01* X4483Y29118D01* X4518Y29109D01* X4554Y29103D01* X4590Y29100D01* X4626Y29100D01* X4662Y29104D01* X4667Y29105D01* Y27897D01* X4639Y27899D01* X4603Y27899D01* X4567Y27895D01* X4531Y27889D01* X4497Y27879D01* X4463Y27866D01* X4431Y27849D01* X4423Y27845D01* X4417Y27839D01* X4417Y27838D01* Y29147D01* G37* G36* Y27774D02*X4422Y27768D01* X4429Y27763D01* X4437Y27759D01* X4445Y27757D01* X4454Y27756D01* X4463Y27756D01* X4471Y27758D01* X4479Y27762D01* X4503Y27774D01* X4529Y27784D01* X4555Y27791D01* X4581Y27796D01* X4608Y27799D01* X4635Y27799D01* X4662Y27797D01* X4667Y27796D01* Y27203D01* X4641Y27200D01* X4614Y27200D01* X4587Y27202D01* X4560Y27207D01* X4534Y27214D01* X4508Y27223D01* X4484Y27235D01* X4476Y27238D01* X4467Y27240D01* X4458Y27240D01* X4450Y27239D01* X4441Y27237D01* X4434Y27233D01* X4427Y27228D01* X4421Y27221D01* X4417Y27215D01* Y27774D01* G37* G36* Y27167D02*X4418Y27164D01* X4423Y27157D01* X4429Y27151D01* X4437Y27146D01* X4469Y27131D01* X4497Y27121D01* Y25871D01* X4483Y25866D01* X4451Y25849D01* X4443Y25845D01* X4437Y25839D01* X4432Y25832D01* X4428Y25824D01* X4426Y25815D01* X4425Y25807D01* X4425Y25798D01* X4428Y25790D01* X4431Y25782D01* X4436Y25774D01* X4442Y25768D01* X4449Y25763D01* X4457Y25759D01* X4465Y25757D01* X4474Y25756D01* X4483Y25756D01* X4491Y25758D01* X4497Y25761D01* Y25238D01* X4496Y25238D01* X4487Y25240D01* X4478Y25240D01* X4470Y25239D01* X4461Y25237D01* X4454Y25233D01* X4447Y25228D01* X4441Y25221D01* X4436Y25214D01* X4433Y25206D01* X4431Y25197D01* X4430Y25189D01* X4431Y25180D01* X4434Y25172D01* X4438Y25164D01* X4443Y25157D01* X4449Y25151D01* X4457Y25146D01* X4489Y25131D01* X4497Y25128D01* Y23862D01* X4471Y23849D01* X4463Y23845D01* X4457Y23839D01* X4452Y23832D01* X4448Y23824D01* X4446Y23815D01* X4445Y23807D01* X4445Y23798D01* X4448Y23790D01* X4451Y23782D01* X4456Y23774D01* X4462Y23768D01* X4469Y23763D01* X4477Y23759D01* X4485Y23757D01* X4494Y23756D01* X4497Y23756D01* Y23240D01* X4490Y23239D01* X4481Y23237D01* X4474Y23233D01* X4467Y23228D01* X4461Y23221D01* X4456Y23214D01* X4453Y23206D01* X4451Y23197D01* X4450Y23189D01* X4451Y23180D01* X4454Y23172D01* X4458Y23164D01* X4463Y23157D01* X4469Y23151D01* X4477Y23146D01* X4497Y23137D01* Y21852D01* X4491Y21849D01* X4483Y21845D01* X4477Y21839D01* X4472Y21832D01* X4468Y21824D01* X4466Y21815D01* X4465Y21807D01* X4465Y21798D01* X4468Y21790D01* X4471Y21782D01* X4476Y21774D01* X4482Y21768D01* X4489Y21763D01* X4497Y21759D01* Y21234D01* X4494Y21233D01* X4487Y21228D01* X4481Y21221D01* X4476Y21214D01* X4473Y21206D01* X4471Y21197D01* X4470Y21189D01* X4471Y21180D01* X4474Y21172D01* X4478Y21164D01* X4483Y21157D01* X4489Y21151D01* X4497Y21147D01* Y19838D01* X4492Y19832D01* X4488Y19824D01* X4486Y19815D01* X4485Y19807D01* X4485Y19798D01* X4488Y19790D01* X4491Y19782D01* X4496Y19774D01* X4497Y19774D01* Y19215D01* X4496Y19214D01* X4493Y19206D01* X4491Y19197D01* X4490Y19189D01* X4491Y19180D01* X4494Y19172D01* X4497Y19167D01* Y13692D01* X4493Y13697D01* X4486Y13703D01* X4479Y13708D01* X4471Y13711D01* X4462Y13713D01* X4454Y13714D01* X4445Y13713D01* X4437Y13710D01* X4429Y13706D01* X4422Y13701D01* X4417Y13695D01* Y15285D01* X4420Y15283D01* X4429Y15281D01* X4437Y15280D01* X4446Y15281D01* X4455Y15283D01* X4463Y15286D01* X4470Y15291D01* X4476Y15297D01* X4481Y15304D01* X4485Y15312D01* X4487Y15320D01* X4488Y15329D01* X4488Y15338D01* X4486Y15346D01* X4482Y15354D01* X4470Y15378D01* X4460Y15404D01* X4453Y15430D01* X4448Y15456D01* X4445Y15483D01* X4445Y15511D01* X4447Y15538D01* X4452Y15564D01* X4459Y15590D01* X4468Y15616D01* X4480Y15640D01* X4483Y15649D01* X4485Y15657D01* X4485Y15666D01* X4484Y15674D01* X4482Y15683D01* X4478Y15690D01* X4473Y15697D01* X4466Y15703D01* X4459Y15708D01* X4451Y15711D01* X4442Y15713D01* X4434Y15714D01* X4425Y15713D01* X4417Y15710D01* X4417Y15710D01* Y17280D01* X4417Y17280D01* X4426Y17281D01* X4435Y17283D01* X4443Y17286D01* X4450Y17291D01* X4456Y17297D01* X4461Y17304D01* X4465Y17312D01* X4467Y17320D01* X4468Y17329D01* X4468Y17338D01* X4466Y17346D01* X4462Y17354D01* X4450Y17378D01* X4440Y17404D01* X4433Y17430D01* X4428Y17456D01* X4425Y17483D01* X4425Y17511D01* X4427Y17538D01* X4432Y17564D01* X4439Y17590D01* X4448Y17616D01* X4460Y17640D01* X4463Y17649D01* X4465Y17657D01* X4465Y17666D01* X4464Y17674D01* X4462Y17683D01* X4458Y17690D01* X4453Y17697D01* X4446Y17703D01* X4439Y17708D01* X4431Y17711D01* X4422Y17713D01* X4417Y17714D01* Y19284D01* X4423Y19286D01* X4430Y19291D01* X4436Y19297D01* X4441Y19304D01* X4445Y19312D01* X4447Y19320D01* X4448Y19329D01* X4448Y19338D01* X4446Y19346D01* X4442Y19354D01* X4430Y19378D01* X4420Y19404D01* X4417Y19417D01* Y19583D01* X4419Y19590D01* X4428Y19616D01* X4440Y19640D01* X4443Y19649D01* X4445Y19657D01* X4445Y19666D01* X4444Y19674D01* X4442Y19683D01* X4438Y19690D01* X4433Y19697D01* X4426Y19703D01* X4419Y19708D01* X4417Y19709D01* Y21298D01* X4421Y21304D01* X4425Y21312D01* X4427Y21320D01* X4428Y21329D01* X4428Y21338D01* X4426Y21346D01* X4422Y21354D01* X4417Y21365D01* Y21634D01* X4420Y21640D01* X4423Y21649D01* X4425Y21657D01* X4425Y21666D01* X4424Y21674D01* X4422Y21683D01* X4418Y21690D01* X4417Y21692D01* Y27167D01* G37* G36* X4497Y0D02*X4417D01* Y9403D01* X4425Y9372D01* X4439Y9338D01* X4455Y9306D01* X4459Y9299D01* X4465Y9292D01* X4473Y9287D01* X4480Y9283D01* X4489Y9281D01* X4497Y9280D01* Y7710D01* X4489Y7706D01* X4482Y7701D01* X4476Y7695D01* X4471Y7687D01* X4456Y7655D01* X4443Y7621D01* X4434Y7586D01* X4428Y7550D01* X4425Y7514D01* X4425Y7478D01* X4429Y7442D01* X4435Y7407D01* X4445Y7372D01* X4459Y7338D01* X4475Y7306D01* X4479Y7299D01* X4485Y7292D01* X4493Y7287D01* X4497Y7285D01* Y5695D01* X4496Y5695D01* X4491Y5687D01* X4476Y5655D01* X4463Y5621D01* X4454Y5586D01* X4448Y5550D01* X4445Y5514D01* X4445Y5478D01* X4449Y5442D01* X4455Y5407D01* X4465Y5372D01* X4479Y5338D01* X4495Y5306D01* X4497Y5303D01* Y3656D01* X4496Y3655D01* X4483Y3621D01* X4474Y3586D01* X4468Y3550D01* X4465Y3514D01* X4465Y3478D01* X4469Y3442D01* X4475Y3407D01* X4485Y3372D01* X4497Y3343D01* Y1596D01* X4494Y1586D01* X4488Y1550D01* X4485Y1514D01* X4485Y1478D01* X4489Y1442D01* X4495Y1407D01* X4497Y1403D01* Y0D01* G37* G36* Y9714D02*X4494Y9714D01* X4485Y9713D01* X4477Y9710D01* X4469Y9706D01* X4462Y9701D01* X4456Y9695D01* X4451Y9687D01* X4436Y9655D01* X4423Y9621D01* X4417Y9596D01* Y11343D01* X4419Y11338D01* X4435Y11306D01* X4439Y11299D01* X4445Y11292D01* X4453Y11287D01* X4460Y11283D01* X4469Y11281D01* X4477Y11280D01* X4486Y11281D01* X4495Y11283D01* X4497Y11284D01* Y9714D01* G37* G36* Y11417D02*X4493Y11430D01* X4488Y11456D01* X4485Y11483D01* X4485Y11511D01* X4487Y11538D01* X4492Y11564D01* X4497Y11583D01* Y11417D01* G37* G36* Y11709D02*X4491Y11711D01* X4482Y11713D01* X4474Y11714D01* X4465Y11713D01* X4457Y11710D01* X4449Y11706D01* X4442Y11701D01* X4436Y11695D01* X4431Y11687D01* X4417Y11656D01* Y13303D01* X4419Y13299D01* X4425Y13292D01* X4433Y13287D01* X4440Y13283D01* X4449Y13281D01* X4457Y13280D01* X4466Y13281D01* X4475Y13283D01* X4483Y13286D01* X4490Y13291D01* X4496Y13297D01* X4497Y13298D01* Y11709D01* G37* G36* Y13365D02*X4490Y13378D01* X4480Y13404D01* X4473Y13430D01* X4468Y13456D01* X4465Y13483D01* X4465Y13511D01* X4467Y13538D01* X4472Y13564D01* X4479Y13590D01* X4488Y13616D01* X4497Y13634D01* Y13365D01* G37* G36* Y27121D02*X4503Y27118D01* X4538Y27109D01* X4574Y27103D01* X4610Y27100D01* X4646Y27100D01* X4667Y27102D01* Y25899D01* X4659Y25899D01* X4623Y25899D01* X4587Y25895D01* X4551Y25889D01* X4517Y25879D01* X4497Y25871D01* Y27121D01* G37* G36* Y25761D02*X4499Y25762D01* X4523Y25774D01* X4549Y25784D01* X4575Y25791D01* X4601Y25796D01* X4628Y25799D01* X4655Y25799D01* X4667Y25798D01* Y25201D01* X4661Y25200D01* X4634Y25200D01* X4607Y25202D01* X4580Y25207D01* X4554Y25214D01* X4528Y25223D01* X4504Y25235D01* X4497Y25238D01* Y25761D01* G37* G36* Y25128D02*X4523Y25118D01* X4558Y25109D01* X4594Y25103D01* X4630Y25100D01* X4666Y25100D01* X4667Y25100D01* Y23899D01* X4643Y23899D01* X4607Y23895D01* X4571Y23889D01* X4537Y23879D01* X4503Y23866D01* X4497Y23862D01* Y25128D01* G37* G36* Y23756D02*X4503Y23756D01* X4511Y23758D01* X4519Y23762D01* X4543Y23774D01* X4569Y23784D01* X4595Y23791D01* X4621Y23796D01* X4648Y23799D01* X4667Y23799D01* Y23200D01* X4654Y23200D01* X4627Y23202D01* X4600Y23207D01* X4574Y23214D01* X4548Y23223D01* X4524Y23235D01* X4516Y23238D01* X4507Y23240D01* X4498Y23240D01* X4497Y23240D01* Y23756D01* G37* G36* Y23137D02*X4509Y23131D01* X4543Y23118D01* X4578Y23109D01* X4614Y23103D01* X4650Y23100D01* X4667Y23100D01* Y21899D01* X4663D01* X4627Y21895D01* X4591Y21889D01* X4557Y21879D01* X4523Y21866D01* X4497Y21852D01* Y23137D01* G37* G36* Y21759D02*X4497Y21759D01* X4505Y21757D01* X4514Y21756D01* X4523Y21756D01* X4531Y21758D01* X4539Y21762D01* X4563Y21774D01* X4589Y21784D01* X4615Y21791D01* X4641Y21796D01* X4667Y21799D01* Y21200D01* X4647Y21202D01* X4620Y21207D01* X4594Y21214D01* X4568Y21223D01* X4544Y21235D01* X4536Y21238D01* X4527Y21240D01* X4518Y21240D01* X4510Y21239D01* X4501Y21237D01* X4497Y21234D01* Y21759D01* G37* G36* Y21147D02*X4497Y21146D01* X4529Y21131D01* X4563Y21118D01* X4598Y21109D01* X4634Y21103D01* X4667Y21100D01* Y19897D01* X4647Y19895D01* X4611Y19889D01* X4577Y19879D01* X4543Y19866D01* X4511Y19849D01* X4503Y19845D01* X4497Y19839D01* X4497Y19838D01* Y21147D01* G37* G36* Y19774D02*X4502Y19768D01* X4509Y19763D01* X4517Y19759D01* X4525Y19757D01* X4534Y19756D01* X4543Y19756D01* X4551Y19758D01* X4559Y19762D01* X4583Y19774D01* X4609Y19784D01* X4635Y19791D01* X4661Y19796D01* X4667Y19797D01* Y19202D01* X4667Y19202D01* X4640Y19207D01* X4614Y19214D01* X4588Y19223D01* X4564Y19235D01* X4556Y19238D01* X4547Y19240D01* X4538Y19240D01* X4530Y19239D01* X4521Y19237D01* X4514Y19233D01* X4507Y19228D01* X4501Y19221D01* X4497Y19215D01* Y19774D01* G37* G36* Y19167D02*X4498Y19164D01* X4503Y19157D01* X4509Y19151D01* X4517Y19146D01* X4549Y19131D01* X4583Y19118D01* X4618Y19109D01* X4654Y19103D01* X4667Y19102D01* Y17895D01* X4667D01* X4631Y17889D01* X4597Y17879D01* X4563Y17866D01* X4531Y17849D01* X4523Y17845D01* X4517Y17839D01* X4512Y17832D01* X4508Y17824D01* X4506Y17815D01* X4505Y17807D01* X4505Y17798D01* X4508Y17790D01* X4511Y17782D01* X4516Y17774D01* X4522Y17768D01* X4529Y17763D01* X4537Y17759D01* X4545Y17757D01* X4554Y17756D01* X4563Y17756D01* X4571Y17758D01* X4579Y17762D01* X4603Y17774D01* X4629Y17784D01* X4655Y17791D01* X4667Y17794D01* Y17205D01* X4660Y17207D01* X4634Y17214D01* X4608Y17223D01* X4584Y17235D01* X4576Y17238D01* X4567Y17240D01* X4558Y17240D01* X4550Y17239D01* X4541Y17237D01* X4534Y17233D01* X4527Y17228D01* X4521Y17221D01* X4516Y17214D01* X4513Y17206D01* X4511Y17197D01* X4510Y17189D01* X4511Y17180D01* X4514Y17172D01* X4518Y17164D01* X4523Y17157D01* X4529Y17151D01* X4537Y17146D01* X4569Y17131D01* X4603Y17118D01* X4638Y17109D01* X4667Y17104D01* Y15892D01* X4651Y15889D01* X4617Y15879D01* X4583Y15866D01* X4551Y15849D01* X4543Y15845D01* X4537Y15839D01* X4532Y15832D01* X4528Y15824D01* X4526Y15815D01* X4525Y15807D01* X4525Y15798D01* X4528Y15790D01* X4531Y15782D01* X4536Y15774D01* X4542Y15768D01* X4549Y15763D01* X4557Y15759D01* X4565Y15757D01* X4574Y15756D01* X4583Y15756D01* X4591Y15758D01* X4599Y15762D01* X4623Y15774D01* X4649Y15784D01* X4667Y15789D01* Y15210D01* X4654Y15214D01* X4628Y15223D01* X4604Y15235D01* X4596Y15238D01* X4587Y15240D01* X4578Y15240D01* X4570Y15239D01* X4561Y15237D01* X4554Y15233D01* X4547Y15228D01* X4541Y15221D01* X4536Y15214D01* X4533Y15206D01* X4531Y15197D01* X4530Y15189D01* X4531Y15180D01* X4534Y15172D01* X4538Y15164D01* X4543Y15157D01* X4549Y15151D01* X4557Y15146D01* X4589Y15131D01* X4623Y15118D01* X4658Y15109D01* X4667Y15107D01* Y13887D01* X4637Y13879D01* X4603Y13866D01* X4571Y13849D01* X4563Y13845D01* X4557Y13839D01* X4552Y13832D01* X4548Y13824D01* X4546Y13815D01* X4545Y13807D01* X4545Y13798D01* X4548Y13790D01* X4551Y13782D01* X4556Y13774D01* X4562Y13768D01* X4569Y13763D01* X4577Y13759D01* X4585Y13757D01* X4594Y13756D01* X4603Y13756D01* X4611Y13758D01* X4619Y13762D01* X4643Y13774D01* X4667Y13783D01* Y13216D01* X4648Y13223D01* X4624Y13235D01* X4616Y13238D01* X4607Y13240D01* X4598Y13240D01* X4590Y13239D01* X4581Y13237D01* X4574Y13233D01* X4567Y13228D01* X4561Y13221D01* X4556Y13214D01* X4553Y13206D01* X4551Y13197D01* X4550Y13189D01* X4551Y13180D01* X4554Y13172D01* X4558Y13164D01* X4563Y13157D01* X4569Y13151D01* X4577Y13146D01* X4609Y13131D01* X4643Y13118D01* X4667Y13112D01* Y11882D01* X4657Y11879D01* X4623Y11866D01* X4591Y11849D01* X4583Y11845D01* X4577Y11839D01* X4572Y11832D01* X4568Y11824D01* X4566Y11815D01* X4565Y11807D01* X4565Y11798D01* X4568Y11790D01* X4571Y11782D01* X4576Y11774D01* X4582Y11768D01* X4589Y11763D01* X4597Y11759D01* X4605Y11757D01* X4614Y11756D01* X4623Y11756D01* X4631Y11758D01* X4639Y11762D01* X4663Y11774D01* X4667Y11776D01* Y11223D01* X4644Y11235D01* X4636Y11238D01* X4627Y11240D01* X4618Y11240D01* X4610Y11239D01* X4601Y11237D01* X4594Y11233D01* X4587Y11228D01* X4581Y11221D01* X4576Y11214D01* X4573Y11206D01* X4571Y11197D01* X4570Y11189D01* X4571Y11180D01* X4574Y11172D01* X4578Y11164D01* X4583Y11157D01* X4589Y11151D01* X4597Y11146D01* X4629Y11131D01* X4663Y11118D01* X4667Y11117D01* Y9875D01* X4643Y9866D01* X4611Y9849D01* X4603Y9845D01* X4597Y9839D01* X4592Y9832D01* X4588Y9824D01* X4586Y9815D01* X4585Y9807D01* X4585Y9798D01* X4588Y9790D01* X4591Y9782D01* X4596Y9774D01* X4602Y9768D01* X4609Y9763D01* X4617Y9759D01* X4625Y9757D01* X4634Y9756D01* X4643Y9756D01* X4651Y9758D01* X4659Y9762D01* X4667Y9766D01* Y9233D01* X4664Y9235D01* X4656Y9238D01* X4647Y9240D01* X4638Y9240D01* X4630Y9239D01* X4621Y9237D01* X4614Y9233D01* X4607Y9228D01* X4601Y9221D01* X4596Y9214D01* X4593Y9206D01* X4591Y9197D01* X4590Y9189D01* X4591Y9180D01* X4594Y9172D01* X4598Y9164D01* X4603Y9157D01* X4609Y9151D01* X4617Y9146D01* X4649Y9131D01* X4667Y9124D01* Y7867D01* X4663Y7866D01* X4631Y7849D01* X4623Y7845D01* X4617Y7839D01* X4612Y7832D01* X4608Y7824D01* X4606Y7815D01* X4605Y7807D01* X4605Y7798D01* X4608Y7790D01* X4611Y7782D01* X4616Y7774D01* X4622Y7768D01* X4629Y7763D01* X4637Y7759D01* X4645Y7757D01* X4654Y7756D01* X4663Y7756D01* X4667Y7757D01* Y7240D01* X4667D01* X4658Y7240D01* X4650Y7239D01* X4641Y7237D01* X4634Y7233D01* X4627Y7228D01* X4621Y7221D01* X4616Y7214D01* X4613Y7206D01* X4611Y7197D01* X4610Y7189D01* X4611Y7180D01* X4614Y7172D01* X4618Y7164D01* X4623Y7157D01* X4629Y7151D01* X4637Y7146D01* X4667Y7132D01* Y5858D01* X4651Y5849D01* X4643Y5845D01* X4637Y5839D01* X4632Y5832D01* X4628Y5824D01* X4626Y5815D01* X4625Y5807D01* X4625Y5798D01* X4628Y5790D01* X4631Y5782D01* X4636Y5774D01* X4642Y5768D01* X4649Y5763D01* X4657Y5759D01* X4665Y5757D01* X4667Y5756D01* Y5239D01* X4661Y5237D01* X4654Y5233D01* X4647Y5228D01* X4641Y5221D01* X4636Y5214D01* X4633Y5206D01* X4631Y5197D01* X4630Y5189D01* X4631Y5180D01* X4634Y5172D01* X4638Y5164D01* X4643Y5157D01* X4649Y5151D01* X4657Y5146D01* X4667Y5141D01* Y3847D01* X4663Y3845D01* X4657Y3839D01* X4652Y3832D01* X4648Y3824D01* X4646Y3815D01* X4645Y3807D01* X4645Y3798D01* X4648Y3790D01* X4651Y3782D01* X4656Y3774D01* X4662Y3768D01* X4667Y3764D01* Y3228D01* X4667Y3228D01* X4661Y3221D01* X4656Y3214D01* X4653Y3206D01* X4651Y3197D01* X4650Y3189D01* X4651Y3180D01* X4654Y3172D01* X4658Y3164D01* X4663Y3157D01* X4667Y3153D01* Y1821D01* X4666Y1815D01* X4665Y1807D01* X4665Y1798D01* X4667Y1791D01* Y0D01* X4497D01* Y1403D01* X4505Y1372D01* X4519Y1338D01* X4535Y1306D01* X4539Y1299D01* X4545Y1292D01* X4553Y1287D01* X4560Y1283D01* X4569Y1281D01* X4577Y1280D01* X4586Y1281D01* X4595Y1283D01* X4603Y1286D01* X4610Y1291D01* X4616Y1297D01* X4621Y1304D01* X4625Y1312D01* X4627Y1320D01* X4628Y1329D01* X4628Y1338D01* X4626Y1346D01* X4622Y1354D01* X4610Y1378D01* X4600Y1404D01* X4593Y1430D01* X4588Y1456D01* X4585Y1483D01* X4585Y1511D01* X4587Y1538D01* X4592Y1564D01* X4599Y1590D01* X4608Y1616D01* X4620Y1640D01* X4623Y1649D01* X4625Y1657D01* X4625Y1666D01* X4624Y1674D01* X4622Y1683D01* X4618Y1690D01* X4613Y1697D01* X4606Y1703D01* X4599Y1708D01* X4591Y1711D01* X4582Y1713D01* X4574Y1714D01* X4565Y1713D01* X4557Y1710D01* X4549Y1706D01* X4542Y1701D01* X4536Y1695D01* X4531Y1687D01* X4516Y1655D01* X4503Y1621D01* X4497Y1596D01* Y3343D01* X4499Y3338D01* X4515Y3306D01* X4519Y3299D01* X4525Y3292D01* X4533Y3287D01* X4540Y3283D01* X4549Y3281D01* X4557Y3280D01* X4566Y3281D01* X4575Y3283D01* X4583Y3286D01* X4590Y3291D01* X4596Y3297D01* X4601Y3304D01* X4605Y3312D01* X4607Y3320D01* X4608Y3329D01* X4608Y3338D01* X4606Y3346D01* X4602Y3354D01* X4590Y3378D01* X4580Y3404D01* X4573Y3430D01* X4568Y3456D01* X4565Y3483D01* X4565Y3511D01* X4567Y3538D01* X4572Y3564D01* X4579Y3590D01* X4588Y3616D01* X4600Y3640D01* X4603Y3649D01* X4605Y3657D01* X4605Y3666D01* X4604Y3674D01* X4602Y3683D01* X4598Y3690D01* X4593Y3697D01* X4586Y3703D01* X4579Y3708D01* X4571Y3711D01* X4562Y3713D01* X4554Y3714D01* X4545Y3713D01* X4537Y3710D01* X4529Y3706D01* X4522Y3701D01* X4516Y3695D01* X4511Y3687D01* X4497Y3656D01* Y5303D01* X4499Y5299D01* X4505Y5292D01* X4513Y5287D01* X4520Y5283D01* X4529Y5281D01* X4537Y5280D01* X4546Y5281D01* X4555Y5283D01* X4563Y5286D01* X4570Y5291D01* X4576Y5297D01* X4581Y5304D01* X4585Y5312D01* X4587Y5320D01* X4588Y5329D01* X4588Y5338D01* X4586Y5346D01* X4582Y5354D01* X4570Y5378D01* X4560Y5404D01* X4553Y5430D01* X4548Y5456D01* X4545Y5483D01* X4545Y5511D01* X4547Y5538D01* X4552Y5564D01* X4559Y5590D01* X4568Y5616D01* X4580Y5640D01* X4583Y5649D01* X4585Y5657D01* X4585Y5666D01* X4584Y5674D01* X4582Y5683D01* X4578Y5690D01* X4573Y5697D01* X4566Y5703D01* X4559Y5708D01* X4551Y5711D01* X4542Y5713D01* X4534Y5714D01* X4525Y5713D01* X4517Y5710D01* X4509Y5706D01* X4502Y5701D01* X4497Y5695D01* Y7285D01* X4500Y7283D01* X4509Y7281D01* X4517Y7280D01* X4526Y7281D01* X4535Y7283D01* X4543Y7286D01* X4550Y7291D01* X4556Y7297D01* X4561Y7304D01* X4565Y7312D01* X4567Y7320D01* X4568Y7329D01* X4568Y7338D01* X4566Y7346D01* X4562Y7354D01* X4550Y7378D01* X4540Y7404D01* X4533Y7430D01* X4528Y7456D01* X4525Y7483D01* X4525Y7511D01* X4527Y7538D01* X4532Y7564D01* X4539Y7590D01* X4548Y7616D01* X4560Y7640D01* X4563Y7649D01* X4565Y7657D01* X4565Y7666D01* X4564Y7674D01* X4562Y7683D01* X4558Y7690D01* X4553Y7697D01* X4546Y7703D01* X4539Y7708D01* X4531Y7711D01* X4522Y7713D01* X4514Y7714D01* X4505Y7713D01* X4497Y7710D01* X4497Y7710D01* Y9280D01* X4497Y9280D01* X4506Y9281D01* X4515Y9283D01* X4523Y9286D01* X4530Y9291D01* X4536Y9297D01* X4541Y9304D01* X4545Y9312D01* X4547Y9320D01* X4548Y9329D01* X4548Y9338D01* X4546Y9346D01* X4542Y9354D01* X4530Y9378D01* X4520Y9404D01* X4513Y9430D01* X4508Y9456D01* X4505Y9483D01* X4505Y9511D01* X4507Y9538D01* X4512Y9564D01* X4519Y9590D01* X4528Y9616D01* X4540Y9640D01* X4543Y9649D01* X4545Y9657D01* X4545Y9666D01* X4544Y9674D01* X4542Y9683D01* X4538Y9690D01* X4533Y9697D01* X4526Y9703D01* X4519Y9708D01* X4511Y9711D01* X4502Y9713D01* X4497Y9714D01* Y11284D01* X4503Y11286D01* X4510Y11291D01* X4516Y11297D01* X4521Y11304D01* X4525Y11312D01* X4527Y11320D01* X4528Y11329D01* X4528Y11338D01* X4526Y11346D01* X4522Y11354D01* X4510Y11378D01* X4500Y11404D01* X4497Y11417D01* Y11583D01* X4499Y11590D01* X4508Y11616D01* X4520Y11640D01* X4523Y11649D01* X4525Y11657D01* X4525Y11666D01* X4524Y11674D01* X4522Y11683D01* X4518Y11690D01* X4513Y11697D01* X4506Y11703D01* X4499Y11708D01* X4497Y11709D01* Y13298D01* X4501Y13304D01* X4505Y13312D01* X4507Y13320D01* X4508Y13329D01* X4508Y13338D01* X4506Y13346D01* X4502Y13354D01* X4497Y13365D01* Y13634D01* X4500Y13640D01* X4503Y13649D01* X4505Y13657D01* X4505Y13666D01* X4504Y13674D01* X4502Y13683D01* X4498Y13690D01* X4497Y13692D01* Y19167D01* G37* G36* X4667Y40000D02*X4832D01* Y39714D01* X4829Y39716D01* X4820Y39718D01* X4812Y39719D01* X4803Y39719D01* X4794Y39717D01* X4786Y39713D01* X4779Y39708D01* X4773Y39702D01* X4768Y39695D01* X4764Y39687D01* X4762Y39679D01* X4761Y39670D01* X4761Y39661D01* X4763Y39653D01* X4767Y39645D01* X4779Y39621D01* X4789Y39595D01* X4796Y39569D01* X4801Y39543D01* X4804Y39516D01* X4804Y39489D01* X4802Y39462D01* X4797Y39435D01* X4790Y39409D01* X4781Y39383D01* X4769Y39359D01* X4766Y39351D01* X4764Y39342D01* X4764Y39333D01* X4765Y39325D01* X4767Y39317D01* X4771Y39309D01* X4776Y39302D01* X4783Y39296D01* X4790Y39291D01* X4798Y39288D01* X4807Y39286D01* X4815Y39285D01* X4824Y39286D01* X4832Y39289D01* X4832Y39289D01* Y37719D01* X4832Y37719D01* X4823Y37719D01* X4814Y37717D01* X4806Y37713D01* X4799Y37708D01* X4793Y37702D01* X4788Y37695D01* X4784Y37687D01* X4782Y37679D01* X4781Y37670D01* X4781Y37661D01* X4783Y37653D01* X4787Y37645D01* X4799Y37621D01* X4809Y37595D01* X4816Y37569D01* X4821Y37543D01* X4824Y37516D01* X4824Y37489D01* X4822Y37462D01* X4817Y37435D01* X4810Y37409D01* X4801Y37383D01* X4789Y37359D01* X4786Y37351D01* X4784Y37342D01* X4784Y37333D01* X4785Y37325D01* X4787Y37317D01* X4791Y37309D01* X4796Y37302D01* X4803Y37296D01* X4810Y37291D01* X4818Y37288D01* X4827Y37286D01* X4832Y37286D01* Y35716D01* X4826Y35713D01* X4819Y35708D01* X4813Y35702D01* X4808Y35695D01* X4804Y35687D01* X4802Y35679D01* X4801Y35670D01* X4801Y35661D01* X4803Y35653D01* X4807Y35645D01* X4819Y35621D01* X4829Y35595D01* X4832Y35583D01* Y35416D01* X4830Y35409D01* X4821Y35383D01* X4809Y35359D01* X4806Y35351D01* X4804Y35342D01* X4804Y35333D01* X4805Y35325D01* X4807Y35317D01* X4811Y35309D01* X4816Y35302D01* X4823Y35296D01* X4830Y35291D01* X4832Y35290D01* Y33701D01* X4828Y33695D01* X4824Y33687D01* X4822Y33679D01* X4821Y33670D01* X4821Y33661D01* X4823Y33653D01* X4827Y33645D01* X4832Y33634D01* Y33365D01* X4829Y33359D01* X4826Y33351D01* X4824Y33342D01* X4824Y33333D01* X4825Y33325D01* X4827Y33317D01* X4831Y33309D01* X4832Y33307D01* Y27833D01* X4831Y27835D01* X4826Y27842D01* X4820Y27848D01* X4812Y27853D01* X4780Y27868D01* X4746Y27881D01* X4711Y27890D01* X4675Y27896D01* X4667Y27897D01* Y29105D01* X4698Y29111D01* X4732Y29121D01* X4766Y29134D01* X4798Y29150D01* X4806Y29155D01* X4812Y29161D01* X4817Y29168D01* X4821Y29175D01* X4823Y29184D01* X4824Y29193D01* X4824Y29201D01* X4821Y29210D01* X4818Y29218D01* X4813Y29225D01* X4807Y29231D01* X4800Y29236D01* X4792Y29240D01* X4784Y29243D01* X4775Y29243D01* X4766Y29243D01* X4758Y29241D01* X4750Y29237D01* X4726Y29225D01* X4700Y29215D01* X4674Y29208D01* X4667Y29206D01* Y29793D01* X4669Y29793D01* X4695Y29785D01* X4721Y29776D01* X4745Y29764D01* X4753Y29761D01* X4762Y29759D01* X4771Y29759D01* X4779Y29760D01* X4788Y29762D01* X4795Y29766D01* X4802Y29772D01* X4808Y29778D01* X4813Y29785D01* X4816Y29793D01* X4818Y29802D01* X4819Y29810D01* X4818Y29819D01* X4815Y29827D01* X4811Y29835D01* X4806Y29842D01* X4800Y29848D01* X4792Y29853D01* X4760Y29868D01* X4726Y29881D01* X4691Y29890D01* X4667Y29894D01* Y31109D01* X4678Y31111D01* X4712Y31121D01* X4746Y31134D01* X4778Y31150D01* X4786Y31155D01* X4792Y31161D01* X4797Y31168D01* X4801Y31175D01* X4803Y31184D01* X4804Y31193D01* X4804Y31201D01* X4801Y31210D01* X4798Y31218D01* X4793Y31225D01* X4787Y31231D01* X4780Y31236D01* X4772Y31240D01* X4764Y31243D01* X4755Y31243D01* X4746Y31243D01* X4738Y31241D01* X4730Y31237D01* X4706Y31225D01* X4680Y31215D01* X4667Y31212D01* Y31788D01* X4675Y31785D01* X4701Y31776D01* X4725Y31764D01* X4733Y31761D01* X4742Y31759D01* X4751Y31759D01* X4759Y31760D01* X4768Y31762D01* X4775Y31766D01* X4782Y31772D01* X4788Y31778D01* X4793Y31785D01* X4796Y31793D01* X4798Y31802D01* X4799Y31810D01* X4798Y31819D01* X4795Y31827D01* X4791Y31835D01* X4786Y31842D01* X4780Y31848D01* X4772Y31853D01* X4740Y31868D01* X4706Y31881D01* X4671Y31890D01* X4667Y31891D01* Y33113D01* X4692Y33121D01* X4726Y33134D01* X4758Y33150D01* X4766Y33155D01* X4772Y33161D01* X4777Y33168D01* X4781Y33175D01* X4783Y33184D01* X4784Y33193D01* X4784Y33201D01* X4781Y33210D01* X4778Y33218D01* X4773Y33225D01* X4767Y33231D01* X4760Y33236D01* X4752Y33240D01* X4744Y33243D01* X4735Y33243D01* X4726Y33243D01* X4718Y33241D01* X4710Y33237D01* X4686Y33225D01* X4667Y33218D01* Y33781D01* X4681Y33776D01* X4705Y33764D01* X4713Y33761D01* X4722Y33759D01* X4731Y33759D01* X4739Y33760D01* X4748Y33762D01* X4755Y33766D01* X4762Y33772D01* X4768Y33778D01* X4773Y33785D01* X4776Y33793D01* X4778Y33802D01* X4779Y33810D01* X4778Y33819D01* X4775Y33827D01* X4771Y33835D01* X4766Y33842D01* X4760Y33848D01* X4752Y33853D01* X4720Y33868D01* X4686Y33881D01* X4667Y33886D01* Y35119D01* X4672Y35121D01* X4706Y35134D01* X4738Y35150D01* X4746Y35155D01* X4752Y35161D01* X4757Y35168D01* X4761Y35175D01* X4763Y35184D01* X4764Y35193D01* X4764Y35201D01* X4761Y35210D01* X4758Y35218D01* X4753Y35225D01* X4747Y35231D01* X4740Y35236D01* X4732Y35240D01* X4724Y35243D01* X4715Y35243D01* X4706Y35243D01* X4698Y35241D01* X4690Y35237D01* X4667Y35226D01* Y35773D01* X4685Y35764D01* X4693Y35761D01* X4702Y35759D01* X4711Y35759D01* X4719Y35760D01* X4728Y35762D01* X4735Y35766D01* X4742Y35772D01* X4748Y35778D01* X4753Y35785D01* X4756Y35793D01* X4758Y35802D01* X4759Y35810D01* X4758Y35819D01* X4755Y35827D01* X4751Y35835D01* X4746Y35842D01* X4740Y35848D01* X4732Y35853D01* X4700Y35868D01* X4667Y35880D01* Y37126D01* X4686Y37134D01* X4718Y37150D01* X4726Y37155D01* X4732Y37161D01* X4737Y37168D01* X4741Y37175D01* X4743Y37184D01* X4744Y37193D01* X4744Y37201D01* X4741Y37210D01* X4738Y37218D01* X4733Y37225D01* X4727Y37231D01* X4720Y37236D01* X4712Y37240D01* X4704Y37243D01* X4695Y37243D01* X4686Y37243D01* X4678Y37241D01* X4670Y37237D01* X4667Y37236D01* Y37764D01* X4673Y37761D01* X4682Y37759D01* X4691Y37759D01* X4699Y37760D01* X4708Y37762D01* X4715Y37766D01* X4722Y37772D01* X4728Y37778D01* X4733Y37785D01* X4736Y37793D01* X4738Y37802D01* X4739Y37810D01* X4738Y37819D01* X4735Y37827D01* X4731Y37835D01* X4726Y37842D01* X4720Y37848D01* X4712Y37853D01* X4680Y37868D01* X4667Y37873D01* Y39134D01* X4698Y39150D01* X4706Y39155D01* X4712Y39161D01* X4717Y39168D01* X4721Y39175D01* X4723Y39184D01* X4724Y39193D01* X4724Y39201D01* X4721Y39210D01* X4718Y39218D01* X4713Y39225D01* X4707Y39231D01* X4700Y39236D01* X4692Y39240D01* X4684Y39243D01* X4675Y39243D01* X4667Y39243D01* Y39759D01* X4671Y39759D01* X4679Y39760D01* X4688Y39762D01* X4695Y39766D01* X4702Y39772D01* X4708Y39778D01* X4713Y39785D01* X4716Y39793D01* X4718Y39802D01* X4719Y39810D01* X4718Y39819D01* X4715Y39827D01* X4711Y39835D01* X4706Y39842D01* X4700Y39848D01* X4692Y39853D01* X4667Y39865D01* Y40000D01* G37* G36* X4832Y11897D02*X4799Y11899D01* X4763Y11899D01* X4727Y11895D01* X4691Y11889D01* X4667Y11882D01* Y13112D01* X4678Y13109D01* X4714Y13103D01* X4750Y13100D01* X4786Y13100D01* X4822Y13104D01* X4832Y13106D01* Y11897D01* G37* G36* Y13207D02*X4808Y13203D01* X4781Y13200D01* X4754Y13200D01* X4727Y13202D01* X4700Y13207D01* X4674Y13214D01* X4667Y13216D01* Y13783D01* X4669Y13784D01* X4695Y13791D01* X4721Y13796D01* X4748Y13799D01* X4775Y13799D01* X4802Y13797D01* X4829Y13793D01* X4832Y13792D01* Y13207D01* G37* G36* Y13893D02*X4815Y13896D01* X4779Y13899D01* X4743Y13899D01* X4707Y13895D01* X4671Y13889D01* X4667Y13887D01* Y15107D01* X4694Y15103D01* X4730Y15100D01* X4766Y15100D01* X4802Y15104D01* X4832Y15110D01* Y13893D01* G37* G36* Y15213D02*X4814Y15208D01* X4788Y15203D01* X4761Y15200D01* X4734Y15200D01* X4707Y15202D01* X4680Y15207D01* X4667Y15210D01* Y15789D01* X4675Y15791D01* X4701Y15796D01* X4728Y15799D01* X4755Y15799D01* X4782Y15797D01* X4809Y15793D01* X4832Y15786D01* Y15213D01* G37* G36* Y15890D02*X4831Y15890D01* X4795Y15896D01* X4759Y15899D01* X4723Y15899D01* X4687Y15895D01* X4667Y15892D01* Y17104D01* X4674Y17103D01* X4710Y17100D01* X4746Y17100D01* X4782Y17104D01* X4818Y17111D01* X4832Y17115D01* Y15890D01* G37* G36* Y17220D02*X4820Y17215D01* X4794Y17208D01* X4768Y17203D01* X4741Y17200D01* X4714Y17200D01* X4687Y17202D01* X4667Y17205D01* Y17794D01* X4681Y17796D01* X4708Y17799D01* X4735Y17799D01* X4762Y17797D01* X4789Y17793D01* X4815Y17785D01* X4832Y17779D01* Y17220D01* G37* G36* Y17884D02*X4811Y17890D01* X4775Y17896D01* X4739Y17899D01* X4703Y17899D01* X4667Y17895D01* Y19102D01* X4690Y19100D01* X4726Y19100D01* X4762Y19104D01* X4798Y19111D01* X4832Y19121D01* X4832D01* Y17884D01* G37* G36* Y19229D02*X4826Y19225D01* X4800Y19215D01* X4774Y19208D01* X4748Y19203D01* X4721Y19200D01* X4694Y19200D01* X4667Y19202D01* Y19797D01* X4688Y19799D01* X4715Y19799D01* X4742Y19797D01* X4769Y19793D01* X4795Y19785D01* X4821Y19776D01* X4832Y19771D01* Y19229D01* G37* G36* Y19878D02*X4826Y19881D01* X4791Y19890D01* X4755Y19896D01* X4719Y19899D01* X4683Y19899D01* X4667Y19897D01* Y21100D01* X4670Y21100D01* X4706Y21100D01* X4742Y21104D01* X4778Y21111D01* X4812Y21121D01* X4832Y21128D01* Y19878D01* G37* G36* Y21238D02*X4830Y21237D01* X4806Y21225D01* X4780Y21215D01* X4754Y21208D01* X4728Y21203D01* X4701Y21200D01* X4674Y21200D01* X4667Y21200D01* Y21799D01* X4668Y21799D01* X4695Y21799D01* X4722Y21797D01* X4749Y21793D01* X4775Y21785D01* X4801Y21776D01* X4825Y21764D01* X4832Y21762D01* Y21238D01* G37* G36* Y21871D02*X4806Y21881D01* X4771Y21890D01* X4735Y21896D01* X4699Y21899D01* X4667Y21899D01* Y23100D01* X4686Y23100D01* X4722Y23104D01* X4758Y23111D01* X4792Y23121D01* X4826Y23134D01* X4832Y23137D01* Y21871D01* G37* G36* Y23243D02*X4826Y23243D01* X4818Y23241D01* X4810Y23237D01* X4786Y23225D01* X4760Y23215D01* X4734Y23208D01* X4708Y23203D01* X4681Y23200D01* X4667Y23200D01* Y23799D01* X4675Y23799D01* X4702Y23797D01* X4729Y23793D01* X4755Y23785D01* X4781Y23776D01* X4805Y23764D01* X4813Y23761D01* X4822Y23759D01* X4831Y23759D01* X4832Y23759D01* Y23243D01* G37* G36* Y23862D02*X4820Y23868D01* X4786Y23881D01* X4751Y23890D01* X4715Y23896D01* X4679Y23899D01* X4667Y23899D01* Y25100D01* X4702Y25104D01* X4738Y25111D01* X4772Y25121D01* X4806Y25134D01* X4832Y25147D01* Y23862D01* G37* G36* Y25240D02*X4832Y25240D01* X4824Y25243D01* X4815Y25243D01* X4806Y25243D01* X4798Y25241D01* X4790Y25237D01* X4766Y25225D01* X4740Y25215D01* X4714Y25208D01* X4688Y25203D01* X4667Y25201D01* Y25798D01* X4682Y25797D01* X4709Y25793D01* X4735Y25785D01* X4761Y25776D01* X4785Y25764D01* X4793Y25761D01* X4802Y25759D01* X4811Y25759D01* X4819Y25760D01* X4828Y25762D01* X4832Y25765D01* Y25240D01* G37* G36* Y25853D02*X4832Y25853D01* X4800Y25868D01* X4766Y25881D01* X4731Y25890D01* X4695Y25896D01* X4667Y25899D01* Y27102D01* X4682Y27104D01* X4718Y27111D01* X4752Y27121D01* X4786Y27134D01* X4818Y27150D01* X4826Y27155D01* X4832Y27161D01* X4832Y27161D01* Y25853D01* G37* G36* Y27225D02*X4827Y27231D01* X4820Y27236D01* X4812Y27240D01* X4804Y27243D01* X4795Y27243D01* X4786Y27243D01* X4778Y27241D01* X4770Y27237D01* X4746Y27225D01* X4720Y27215D01* X4694Y27208D01* X4668Y27203D01* X4667D01* Y27796D01* X4689Y27793D01* X4715Y27785D01* X4741Y27776D01* X4765Y27764D01* X4773Y27761D01* X4782Y27759D01* X4791Y27759D01* X4799Y27760D01* X4808Y27762D01* X4815Y27766D01* X4822Y27772D01* X4828Y27778D01* X4832Y27784D01* Y27225D01* G37* G36* Y40000D02*X4912D01* Y37596D01* X4904Y37627D01* X4890Y37661D01* X4874Y37694D01* X4870Y37701D01* X4864Y37707D01* X4856Y37712D01* X4849Y37716D01* X4840Y37718D01* X4832Y37719D01* Y39289D01* X4840Y39293D01* X4847Y39298D01* X4853Y39305D01* X4858Y39312D01* X4873Y39344D01* X4886Y39378D01* X4895Y39413D01* X4901Y39449D01* X4904Y39485D01* X4904Y39521D01* X4900Y39557D01* X4894Y39593D01* X4884Y39627D01* X4870Y39661D01* X4854Y39694D01* X4850Y39701D01* X4844Y39707D01* X4836Y39712D01* X4832Y39714D01* Y40000D01* G37* G36* X4912Y29719D02*X4912Y29719D01* X4903Y29719D01* X4894Y29717D01* X4886Y29713D01* X4879Y29708D01* X4873Y29702D01* X4868Y29695D01* X4864Y29687D01* X4862Y29679D01* X4861Y29670D01* X4861Y29661D01* X4863Y29653D01* X4867Y29645D01* X4879Y29621D01* X4889Y29595D01* X4896Y29569D01* X4901Y29543D01* X4904Y29516D01* X4904Y29489D01* X4902Y29462D01* X4897Y29435D01* X4890Y29409D01* X4881Y29383D01* X4869Y29359D01* X4866Y29351D01* X4864Y29342D01* X4864Y29333D01* X4865Y29325D01* X4867Y29317D01* X4871Y29309D01* X4876Y29302D01* X4883Y29296D01* X4890Y29291D01* X4898Y29288D01* X4907Y29286D01* X4912Y29286D01* Y27716D01* X4906Y27713D01* X4899Y27708D01* X4893Y27702D01* X4888Y27695D01* X4884Y27687D01* X4882Y27679D01* X4881Y27670D01* X4881Y27661D01* X4883Y27653D01* X4887Y27645D01* X4899Y27621D01* X4909Y27595D01* X4912Y27583D01* Y27416D01* X4910Y27409D01* X4901Y27383D01* X4889Y27359D01* X4886Y27351D01* X4884Y27342D01* X4884Y27333D01* X4885Y27325D01* X4887Y27317D01* X4891Y27309D01* X4896Y27302D01* X4903Y27296D01* X4910Y27291D01* X4912Y27290D01* Y25701D01* X4908Y25695D01* X4904Y25687D01* X4902Y25679D01* X4901Y25670D01* X4901Y25661D01* X4903Y25653D01* X4907Y25645D01* X4912Y25634D01* Y25365D01* X4909Y25359D01* X4906Y25351D01* X4904Y25342D01* X4904Y25333D01* X4905Y25325D01* X4907Y25317D01* X4911Y25309D01* X4912Y25307D01* Y19833D01* X4911Y19835D01* X4906Y19842D01* X4900Y19848D01* X4892Y19853D01* X4860Y19868D01* X4832Y19878D01* Y21128D01* X4846Y21134D01* X4878Y21150D01* X4886Y21155D01* X4892Y21161D01* X4897Y21168D01* X4901Y21175D01* X4903Y21184D01* X4904Y21193D01* X4904Y21201D01* X4901Y21210D01* X4898Y21218D01* X4893Y21225D01* X4887Y21231D01* X4880Y21236D01* X4872Y21240D01* X4864Y21243D01* X4855Y21243D01* X4846Y21243D01* X4838Y21241D01* X4832Y21238D01* Y21762D01* X4833Y21761D01* X4842Y21759D01* X4851Y21759D01* X4859Y21760D01* X4868Y21762D01* X4875Y21766D01* X4882Y21772D01* X4888Y21778D01* X4893Y21785D01* X4896Y21793D01* X4898Y21802D01* X4899Y21810D01* X4898Y21819D01* X4895Y21827D01* X4891Y21835D01* X4886Y21842D01* X4880Y21848D01* X4872Y21853D01* X4840Y21868D01* X4832Y21871D01* Y23137D01* X4858Y23150D01* X4866Y23155D01* X4872Y23161D01* X4877Y23168D01* X4881Y23175D01* X4883Y23184D01* X4884Y23193D01* X4884Y23201D01* X4881Y23210D01* X4878Y23218D01* X4873Y23225D01* X4867Y23231D01* X4860Y23236D01* X4852Y23240D01* X4844Y23243D01* X4835Y23243D01* X4832Y23243D01* Y23759D01* X4839Y23760D01* X4848Y23762D01* X4855Y23766D01* X4862Y23772D01* X4868Y23778D01* X4873Y23785D01* X4876Y23793D01* X4878Y23802D01* X4879Y23810D01* X4878Y23819D01* X4875Y23827D01* X4871Y23835D01* X4866Y23842D01* X4860Y23848D01* X4852Y23853D01* X4832Y23862D01* Y25147D01* X4838Y25150D01* X4846Y25155D01* X4852Y25161D01* X4857Y25168D01* X4861Y25175D01* X4863Y25184D01* X4864Y25193D01* X4864Y25201D01* X4861Y25210D01* X4858Y25218D01* X4853Y25225D01* X4847Y25231D01* X4840Y25236D01* X4832Y25240D01* Y25765D01* X4835Y25766D01* X4842Y25772D01* X4848Y25778D01* X4853Y25785D01* X4856Y25793D01* X4858Y25802D01* X4859Y25810D01* X4858Y25819D01* X4855Y25827D01* X4851Y25835D01* X4846Y25842D01* X4840Y25848D01* X4832Y25853D01* Y27161D01* X4837Y27168D01* X4841Y27175D01* X4843Y27184D01* X4844Y27193D01* X4844Y27201D01* X4841Y27210D01* X4838Y27218D01* X4833Y27225D01* X4832Y27225D01* Y27784D01* X4833Y27785D01* X4836Y27793D01* X4838Y27802D01* X4839Y27810D01* X4838Y27819D01* X4835Y27827D01* X4832Y27833D01* Y33307D01* X4836Y33302D01* X4843Y33296D01* X4850Y33291D01* X4858Y33288D01* X4867Y33286D01* X4875Y33285D01* X4884Y33286D01* X4892Y33289D01* X4900Y33293D01* X4907Y33298D01* X4912Y33304D01* Y31714D01* X4909Y31716D01* X4900Y31718D01* X4892Y31719D01* X4883Y31719D01* X4874Y31717D01* X4866Y31713D01* X4859Y31708D01* X4853Y31702D01* X4848Y31695D01* X4844Y31687D01* X4842Y31679D01* X4841Y31670D01* X4841Y31661D01* X4843Y31653D01* X4847Y31645D01* X4859Y31621D01* X4869Y31595D01* X4876Y31569D01* X4881Y31543D01* X4884Y31516D01* X4884Y31489D01* X4882Y31462D01* X4877Y31435D01* X4870Y31409D01* X4861Y31383D01* X4849Y31359D01* X4846Y31351D01* X4844Y31342D01* X4844Y31333D01* X4845Y31325D01* X4847Y31317D01* X4851Y31309D01* X4856Y31302D01* X4863Y31296D01* X4870Y31291D01* X4878Y31288D01* X4887Y31286D01* X4895Y31285D01* X4904Y31286D01* X4912Y31289D01* X4912Y31289D01* Y29719D01* G37* G36* Y11878D02*X4906Y11881D01* X4871Y11890D01* X4835Y11896D01* X4832Y11897D01* Y13106D01* X4858Y13111D01* X4892Y13121D01* X4912Y13128D01* Y11878D01* G37* G36* Y13238D02*X4910Y13237D01* X4886Y13225D01* X4860Y13215D01* X4834Y13208D01* X4832Y13207D01* Y13792D01* X4855Y13785D01* X4881Y13776D01* X4905Y13764D01* X4912Y13762D01* Y13238D01* G37* G36* Y13871D02*X4886Y13881D01* X4851Y13890D01* X4832Y13893D01* Y15110D01* X4838Y15111D01* X4872Y15121D01* X4906Y15134D01* X4912Y15137D01* Y13871D01* G37* G36* Y15243D02*X4906Y15243D01* X4898Y15241D01* X4890Y15237D01* X4866Y15225D01* X4840Y15215D01* X4832Y15213D01* Y15786D01* X4835Y15785D01* X4861Y15776D01* X4885Y15764D01* X4893Y15761D01* X4902Y15759D01* X4911Y15759D01* X4912Y15759D01* Y15243D01* G37* G36* Y15862D02*X4900Y15868D01* X4866Y15881D01* X4832Y15890D01* Y17115D01* X4852Y17121D01* X4886Y17134D01* X4912Y17147D01* Y15862D01* G37* G36* Y17240D02*X4912Y17240D01* X4904Y17243D01* X4895Y17243D01* X4886Y17243D01* X4878Y17241D01* X4870Y17237D01* X4846Y17225D01* X4832Y17220D01* Y17779D01* X4841Y17776D01* X4865Y17764D01* X4873Y17761D01* X4882Y17759D01* X4891Y17759D01* X4899Y17760D01* X4908Y17762D01* X4912Y17765D01* Y17240D01* G37* G36* Y17853D02*X4912Y17853D01* X4880Y17868D01* X4846Y17881D01* X4832Y17884D01* Y19121D01* X4866Y19134D01* X4898Y19150D01* X4906Y19155D01* X4912Y19161D01* X4912Y19161D01* Y17853D01* G37* G36* Y19225D02*X4907Y19231D01* X4900Y19236D01* X4892Y19240D01* X4884Y19243D01* X4875Y19243D01* X4866Y19243D01* X4858Y19241D01* X4850Y19237D01* X4832Y19229D01* Y19771D01* X4845Y19764D01* X4853Y19761D01* X4862Y19759D01* X4871Y19759D01* X4879Y19760D01* X4888Y19762D01* X4895Y19766D01* X4902Y19772D01* X4908Y19778D01* X4912Y19784D01* Y19225D01* G37* G36* Y33696D02*X4910Y33701D01* X4904Y33707D01* X4896Y33712D01* X4889Y33716D01* X4880Y33718D01* X4872Y33719D01* X4863Y33719D01* X4854Y33717D01* X4846Y33713D01* X4839Y33708D01* X4833Y33702D01* X4832Y33701D01* Y35290D01* X4838Y35288D01* X4847Y35286D01* X4855Y35285D01* X4864Y35286D01* X4872Y35289D01* X4880Y35293D01* X4887Y35298D01* X4893Y35305D01* X4898Y35312D01* X4912Y35343D01* Y33696D01* G37* G36* Y35656D02*X4910Y35661D01* X4894Y35694D01* X4890Y35701D01* X4884Y35707D01* X4876Y35712D01* X4869Y35716D01* X4860Y35718D01* X4852Y35719D01* X4843Y35719D01* X4834Y35717D01* X4832Y35716D01* Y37286D01* X4835Y37285D01* X4844Y37286D01* X4852Y37289D01* X4860Y37293D01* X4867Y37298D01* X4873Y37305D01* X4878Y37312D01* X4893Y37344D01* X4906Y37378D01* X4912Y37404D01* Y35656D01* G37* G36* Y40000D02*X4992D01* Y29596D01* X4984Y29627D01* X4970Y29661D01* X4954Y29694D01* X4950Y29701D01* X4944Y29707D01* X4936Y29712D01* X4929Y29716D01* X4920Y29718D01* X4912Y29719D01* Y31289D01* X4920Y31293D01* X4927Y31298D01* X4933Y31305D01* X4938Y31312D01* X4953Y31344D01* X4966Y31378D01* X4975Y31413D01* X4981Y31449D01* X4984Y31485D01* X4984Y31521D01* X4980Y31557D01* X4974Y31593D01* X4964Y31627D01* X4950Y31661D01* X4934Y31694D01* X4930Y31701D01* X4924Y31707D01* X4916Y31712D01* X4912Y31714D01* Y33304D01* X4913Y33305D01* X4918Y33312D01* X4933Y33344D01* X4946Y33378D01* X4955Y33413D01* X4961Y33449D01* X4964Y33485D01* X4964Y33521D01* X4960Y33557D01* X4954Y33593D01* X4944Y33627D01* X4930Y33661D01* X4914Y33694D01* X4912Y33696D01* Y35343D01* X4913Y35344D01* X4926Y35378D01* X4935Y35413D01* X4941Y35449D01* X4944Y35485D01* X4944Y35521D01* X4940Y35557D01* X4934Y35593D01* X4924Y35627D01* X4912Y35656D01* Y37404D01* X4915Y37413D01* X4921Y37449D01* X4924Y37485D01* X4924Y37521D01* X4920Y37557D01* X4914Y37593D01* X4912Y37596D01* Y40000D01* G37* G36* Y29286D02*X4915Y29285D01* X4924Y29286D01* X4932Y29289D01* X4940Y29293D01* X4947Y29298D01* X4953Y29305D01* X4958Y29312D01* X4973Y29344D01* X4986Y29378D01* X4992Y29404D01* Y27656D01* X4990Y27661D01* X4974Y27694D01* X4970Y27701D01* X4964Y27707D01* X4956Y27712D01* X4949Y27716D01* X4940Y27718D01* X4932Y27719D01* X4923Y27719D01* X4914Y27717D01* X4912Y27716D01* Y29286D01* G37* G36* Y27583D02*X4916Y27569D01* X4921Y27543D01* X4924Y27516D01* X4924Y27489D01* X4922Y27462D01* X4917Y27435D01* X4912Y27416D01* Y27583D01* G37* G36* Y27290D02*X4918Y27288D01* X4927Y27286D01* X4935Y27285D01* X4944Y27286D01* X4952Y27289D01* X4960Y27293D01* X4967Y27298D01* X4973Y27305D01* X4978Y27312D01* X4992Y27343D01* Y25696D01* X4990Y25701D01* X4984Y25707D01* X4976Y25712D01* X4969Y25716D01* X4960Y25718D01* X4952Y25719D01* X4943Y25719D01* X4934Y25717D01* X4926Y25713D01* X4919Y25708D01* X4913Y25702D01* X4912Y25701D01* Y27290D01* G37* G36* Y25634D02*X4919Y25621D01* X4929Y25595D01* X4936Y25569D01* X4941Y25543D01* X4944Y25516D01* X4944Y25489D01* X4942Y25462D01* X4937Y25435D01* X4930Y25409D01* X4921Y25383D01* X4912Y25365D01* Y25634D01* G37* G36* Y25307D02*X4916Y25302D01* X4923Y25296D01* X4930Y25291D01* X4938Y25288D01* X4947Y25286D01* X4955Y25285D01* X4964Y25286D01* X4972Y25289D01* X4980Y25293D01* X4987Y25298D01* X4992Y25304D01* Y23714D01* X4989Y23716D01* X4980Y23718D01* X4972Y23719D01* X4963Y23719D01* X4954Y23717D01* X4946Y23713D01* X4939Y23708D01* X4933Y23702D01* X4928Y23695D01* X4924Y23687D01* X4922Y23679D01* X4921Y23670D01* X4921Y23661D01* X4923Y23653D01* X4927Y23645D01* X4939Y23621D01* X4949Y23595D01* X4956Y23569D01* X4961Y23543D01* X4964Y23516D01* X4964Y23489D01* X4962Y23462D01* X4957Y23435D01* X4950Y23409D01* X4941Y23383D01* X4929Y23359D01* X4926Y23351D01* X4924Y23342D01* X4924Y23333D01* X4925Y23325D01* X4927Y23317D01* X4931Y23309D01* X4936Y23302D01* X4943Y23296D01* X4950Y23291D01* X4958Y23288D01* X4967Y23286D01* X4975Y23285D01* X4984Y23286D01* X4992Y23289D01* X4992Y23289D01* Y21719D01* X4992Y21719D01* X4983Y21719D01* X4974Y21717D01* X4966Y21713D01* X4959Y21708D01* X4953Y21702D01* X4948Y21695D01* X4944Y21687D01* X4942Y21679D01* X4941Y21670D01* X4941Y21661D01* X4943Y21653D01* X4947Y21645D01* X4959Y21621D01* X4969Y21595D01* X4976Y21569D01* X4981Y21543D01* X4984Y21516D01* X4984Y21489D01* X4982Y21462D01* X4977Y21435D01* X4970Y21409D01* X4961Y21383D01* X4949Y21359D01* X4946Y21351D01* X4944Y21342D01* X4944Y21333D01* X4945Y21325D01* X4947Y21317D01* X4951Y21309D01* X4956Y21302D01* X4963Y21296D01* X4970Y21291D01* X4978Y21288D01* X4987Y21286D01* X4992Y21286D01* Y19716D01* X4986Y19713D01* X4979Y19708D01* X4973Y19702D01* X4968Y19695D01* X4964Y19687D01* X4962Y19679D01* X4961Y19670D01* X4961Y19661D01* X4963Y19653D01* X4967Y19645D01* X4979Y19621D01* X4989Y19595D01* X4992Y19583D01* Y19416D01* X4990Y19409D01* X4981Y19383D01* X4969Y19359D01* X4966Y19351D01* X4964Y19342D01* X4964Y19333D01* X4965Y19325D01* X4967Y19317D01* X4971Y19309D01* X4976Y19302D01* X4983Y19296D01* X4990Y19291D01* X4992Y19290D01* Y17701D01* X4988Y17695D01* X4984Y17687D01* X4982Y17679D01* X4981Y17670D01* X4981Y17661D01* X4983Y17653D01* X4987Y17645D01* X4992Y17634D01* Y17365D01* X4989Y17359D01* X4986Y17351D01* X4984Y17342D01* X4984Y17333D01* X4985Y17325D01* X4987Y17317D01* X4991Y17309D01* X4992Y17307D01* Y11833D01* X4991Y11835D01* X4986Y11842D01* X4980Y11848D01* X4972Y11853D01* X4940Y11868D01* X4912Y11878D01* Y13128D01* X4926Y13134D01* X4958Y13150D01* X4966Y13155D01* X4972Y13161D01* X4977Y13168D01* X4981Y13175D01* X4983Y13184D01* X4984Y13193D01* X4984Y13201D01* X4981Y13210D01* X4978Y13218D01* X4973Y13225D01* X4967Y13231D01* X4960Y13236D01* X4952Y13240D01* X4944Y13243D01* X4935Y13243D01* X4926Y13243D01* X4918Y13241D01* X4912Y13238D01* Y13762D01* X4913Y13761D01* X4922Y13759D01* X4931Y13759D01* X4939Y13760D01* X4948Y13762D01* X4955Y13766D01* X4962Y13772D01* X4968Y13778D01* X4973Y13785D01* X4976Y13793D01* X4978Y13802D01* X4979Y13810D01* X4978Y13819D01* X4975Y13827D01* X4971Y13835D01* X4966Y13842D01* X4960Y13848D01* X4952Y13853D01* X4920Y13868D01* X4912Y13871D01* Y15137D01* X4938Y15150D01* X4946Y15155D01* X4952Y15161D01* X4957Y15168D01* X4961Y15175D01* X4963Y15184D01* X4964Y15193D01* X4964Y15201D01* X4961Y15210D01* X4958Y15218D01* X4953Y15225D01* X4947Y15231D01* X4940Y15236D01* X4932Y15240D01* X4924Y15243D01* X4915Y15243D01* X4912Y15243D01* Y15759D01* X4919Y15760D01* X4928Y15762D01* X4935Y15766D01* X4942Y15772D01* X4948Y15778D01* X4953Y15785D01* X4956Y15793D01* X4958Y15802D01* X4959Y15810D01* X4958Y15819D01* X4955Y15827D01* X4951Y15835D01* X4946Y15842D01* X4940Y15848D01* X4932Y15853D01* X4912Y15862D01* Y17147D01* X4918Y17150D01* X4926Y17155D01* X4932Y17161D01* X4937Y17168D01* X4941Y17175D01* X4943Y17184D01* X4944Y17193D01* X4944Y17201D01* X4941Y17210D01* X4938Y17218D01* X4933Y17225D01* X4927Y17231D01* X4920Y17236D01* X4912Y17240D01* Y17765D01* X4915Y17766D01* X4922Y17772D01* X4928Y17778D01* X4933Y17785D01* X4936Y17793D01* X4938Y17802D01* X4939Y17810D01* X4938Y17819D01* X4935Y17827D01* X4931Y17835D01* X4926Y17842D01* X4920Y17848D01* X4912Y17853D01* Y19161D01* X4917Y19168D01* X4921Y19175D01* X4923Y19184D01* X4924Y19193D01* X4924Y19201D01* X4921Y19210D01* X4918Y19218D01* X4913Y19225D01* X4912Y19225D01* Y19784D01* X4913Y19785D01* X4916Y19793D01* X4918Y19802D01* X4919Y19810D01* X4918Y19819D01* X4915Y19827D01* X4912Y19833D01* Y25307D01* G37* G36* X4832Y35583D02*X4836Y35569D01* X4841Y35543D01* X4844Y35516D01* X4844Y35489D01* X4842Y35462D01* X4837Y35435D01* X4832Y35416D01* Y35583D01* G37* G36* Y33634D02*X4839Y33621D01* X4849Y33595D01* X4856Y33569D01* X4861Y33543D01* X4864Y33516D01* X4864Y33489D01* X4862Y33462D01* X4857Y33435D01* X4850Y33409D01* X4841Y33383D01* X4832Y33365D01* Y33634D01* G37* G36* X4992Y0D02*X4667D01* Y1791D01* X4668Y1790D01* X4671Y1782D01* X4676Y1774D01* X4682Y1768D01* X4689Y1763D01* X4697Y1759D01* X4705Y1757D01* X4714Y1756D01* X4723Y1756D01* X4731Y1758D01* X4739Y1762D01* X4763Y1774D01* X4789Y1784D01* X4815Y1791D01* X4841Y1796D01* X4868Y1799D01* X4895Y1799D01* X4922Y1797D01* X4949Y1793D01* X4975Y1785D01* X4992Y1779D01* Y1220D01* X4980Y1215D01* X4954Y1208D01* X4928Y1203D01* X4901Y1200D01* X4874Y1200D01* X4847Y1202D01* X4820Y1207D01* X4794Y1214D01* X4768Y1223D01* X4744Y1235D01* X4736Y1238D01* X4727Y1240D01* X4718Y1240D01* X4710Y1239D01* X4701Y1237D01* X4694Y1233D01* X4687Y1228D01* X4681Y1221D01* X4676Y1214D01* X4673Y1206D01* X4671Y1197D01* X4670Y1189D01* X4671Y1180D01* X4674Y1172D01* X4678Y1164D01* X4683Y1157D01* X4689Y1151D01* X4697Y1146D01* X4729Y1131D01* X4763Y1118D01* X4798Y1109D01* X4834Y1103D01* X4870Y1100D01* X4906Y1100D01* X4942Y1104D01* X4978Y1111D01* X4992Y1115D01* Y0D01* G37* G36* Y1884D02*X4971Y1890D01* X4935Y1896D01* X4899Y1899D01* X4863Y1899D01* X4827Y1895D01* X4791Y1889D01* X4757Y1879D01* X4723Y1866D01* X4691Y1849D01* X4683Y1845D01* X4677Y1839D01* X4672Y1832D01* X4668Y1824D01* X4667Y1821D01* Y3153D01* X4669Y3151D01* X4677Y3146D01* X4709Y3131D01* X4743Y3118D01* X4778Y3109D01* X4814Y3103D01* X4850Y3100D01* X4886Y3100D01* X4922Y3104D01* X4958Y3111D01* X4992Y3121D01* X4992D01* Y1884D01* G37* G36* Y3229D02*X4986Y3225D01* X4960Y3215D01* X4934Y3208D01* X4908Y3203D01* X4881Y3200D01* X4854Y3200D01* X4827Y3202D01* X4800Y3207D01* X4774Y3214D01* X4748Y3223D01* X4724Y3235D01* X4716Y3238D01* X4707Y3240D01* X4698Y3240D01* X4690Y3239D01* X4681Y3237D01* X4674Y3233D01* X4667Y3228D01* Y3764D01* X4669Y3763D01* X4677Y3759D01* X4685Y3757D01* X4694Y3756D01* X4703Y3756D01* X4711Y3758D01* X4719Y3762D01* X4743Y3774D01* X4769Y3784D01* X4795Y3791D01* X4821Y3796D01* X4848Y3799D01* X4875Y3799D01* X4902Y3797D01* X4929Y3793D01* X4955Y3785D01* X4981Y3776D01* X4992Y3771D01* Y3229D01* G37* G36* Y3878D02*X4986Y3881D01* X4951Y3890D01* X4915Y3896D01* X4879Y3899D01* X4843Y3899D01* X4807Y3895D01* X4771Y3889D01* X4737Y3879D01* X4703Y3866D01* X4671Y3849D01* X4667Y3847D01* Y5141D01* X4689Y5131D01* X4723Y5118D01* X4758Y5109D01* X4794Y5103D01* X4830Y5100D01* X4866Y5100D01* X4902Y5104D01* X4938Y5111D01* X4972Y5121D01* X4992Y5128D01* Y3878D01* G37* G36* Y5238D02*X4990Y5237D01* X4966Y5225D01* X4940Y5215D01* X4914Y5208D01* X4888Y5203D01* X4861Y5200D01* X4834Y5200D01* X4807Y5202D01* X4780Y5207D01* X4754Y5214D01* X4728Y5223D01* X4704Y5235D01* X4696Y5238D01* X4687Y5240D01* X4678Y5240D01* X4670Y5239D01* X4667Y5239D01* Y5756D01* X4674Y5756D01* X4683Y5756D01* X4691Y5758D01* X4699Y5762D01* X4723Y5774D01* X4749Y5784D01* X4775Y5791D01* X4801Y5796D01* X4828Y5799D01* X4855Y5799D01* X4882Y5797D01* X4909Y5793D01* X4935Y5785D01* X4961Y5776D01* X4985Y5764D01* X4992Y5762D01* Y5238D01* G37* G36* Y5871D02*X4966Y5881D01* X4931Y5890D01* X4895Y5896D01* X4859Y5899D01* X4823Y5899D01* X4787Y5895D01* X4751Y5889D01* X4717Y5879D01* X4683Y5866D01* X4667Y5858D01* Y7132D01* X4669Y7131D01* X4703Y7118D01* X4738Y7109D01* X4774Y7103D01* X4810Y7100D01* X4846Y7100D01* X4882Y7104D01* X4918Y7111D01* X4952Y7121D01* X4986Y7134D01* X4992Y7137D01* Y5871D01* G37* G36* Y7243D02*X4986Y7243D01* X4978Y7241D01* X4970Y7237D01* X4946Y7225D01* X4920Y7215D01* X4894Y7208D01* X4868Y7203D01* X4841Y7200D01* X4814Y7200D01* X4787Y7202D01* X4760Y7207D01* X4734Y7214D01* X4708Y7223D01* X4684Y7235D01* X4676Y7238D01* X4667Y7240D01* Y7757D01* X4671Y7758D01* X4679Y7762D01* X4703Y7774D01* X4729Y7784D01* X4755Y7791D01* X4781Y7796D01* X4808Y7799D01* X4835Y7799D01* X4862Y7797D01* X4889Y7793D01* X4915Y7785D01* X4941Y7776D01* X4965Y7764D01* X4973Y7761D01* X4982Y7759D01* X4991Y7759D01* X4992Y7759D01* Y7243D01* G37* G36* Y7862D02*X4980Y7868D01* X4946Y7881D01* X4911Y7890D01* X4875Y7896D01* X4839Y7899D01* X4803Y7899D01* X4767Y7895D01* X4731Y7889D01* X4697Y7879D01* X4667Y7867D01* Y9124D01* X4683Y9118D01* X4718Y9109D01* X4754Y9103D01* X4790Y9100D01* X4826Y9100D01* X4862Y9104D01* X4898Y9111D01* X4932Y9121D01* X4966Y9134D01* X4992Y9147D01* Y7862D01* G37* G36* Y9240D02*X4992Y9240D01* X4984Y9243D01* X4975Y9243D01* X4966Y9243D01* X4958Y9241D01* X4950Y9237D01* X4926Y9225D01* X4900Y9215D01* X4874Y9208D01* X4848Y9203D01* X4821Y9200D01* X4794Y9200D01* X4767Y9202D01* X4740Y9207D01* X4714Y9214D01* X4688Y9223D01* X4667Y9233D01* Y9766D01* X4683Y9774D01* X4709Y9784D01* X4735Y9791D01* X4761Y9796D01* X4788Y9799D01* X4815Y9799D01* X4842Y9797D01* X4869Y9793D01* X4895Y9785D01* X4921Y9776D01* X4945Y9764D01* X4953Y9761D01* X4962Y9759D01* X4971Y9759D01* X4979Y9760D01* X4988Y9762D01* X4992Y9765D01* Y9240D01* G37* G36* Y9853D02*X4992Y9853D01* X4960Y9868D01* X4926Y9881D01* X4891Y9890D01* X4855Y9896D01* X4819Y9899D01* X4783Y9899D01* X4747Y9895D01* X4711Y9889D01* X4677Y9879D01* X4667Y9875D01* Y11117D01* X4698Y11109D01* X4734Y11103D01* X4770Y11100D01* X4806Y11100D01* X4842Y11104D01* X4878Y11111D01* X4912Y11121D01* X4946Y11134D01* X4978Y11150D01* X4986Y11155D01* X4992Y11161D01* X4992Y11161D01* Y9853D01* G37* G36* Y11225D02*X4987Y11231D01* X4980Y11236D01* X4972Y11240D01* X4964Y11243D01* X4955Y11243D01* X4946Y11243D01* X4938Y11241D01* X4930Y11237D01* X4906Y11225D01* X4880Y11215D01* X4854Y11208D01* X4828Y11203D01* X4801Y11200D01* X4774Y11200D01* X4747Y11202D01* X4720Y11207D01* X4694Y11214D01* X4668Y11223D01* X4667Y11223D01* Y11776D01* X4689Y11784D01* X4715Y11791D01* X4741Y11796D01* X4768Y11799D01* X4795Y11799D01* X4822Y11797D01* X4849Y11793D01* X4875Y11785D01* X4901Y11776D01* X4925Y11764D01* X4933Y11761D01* X4942Y11759D01* X4951Y11759D01* X4959Y11760D01* X4968Y11762D01* X4975Y11766D01* X4982Y11772D01* X4988Y11778D01* X4992Y11784D01* Y11225D01* G37* G36* Y40000D02*X5072D01* Y21596D01* X5064Y21627D01* X5050Y21661D01* X5034Y21694D01* X5030Y21701D01* X5024Y21707D01* X5016Y21712D01* X5009Y21716D01* X5000Y21718D01* X4992Y21719D01* Y23289D01* X5000Y23293D01* X5007Y23298D01* X5013Y23305D01* X5018Y23312D01* X5033Y23344D01* X5046Y23378D01* X5055Y23413D01* X5061Y23449D01* X5064Y23485D01* X5064Y23521D01* X5060Y23557D01* X5054Y23593D01* X5044Y23627D01* X5030Y23661D01* X5014Y23694D01* X5010Y23701D01* X5004Y23707D01* X4996Y23712D01* X4992Y23714D01* Y25304D01* X4993Y25305D01* X4998Y25312D01* X5013Y25344D01* X5026Y25378D01* X5035Y25413D01* X5041Y25449D01* X5044Y25485D01* X5044Y25521D01* X5040Y25557D01* X5034Y25593D01* X5024Y25627D01* X5010Y25661D01* X4994Y25694D01* X4992Y25696D01* Y27343D01* X4993Y27344D01* X5006Y27378D01* X5015Y27413D01* X5021Y27449D01* X5024Y27485D01* X5024Y27521D01* X5020Y27557D01* X5014Y27593D01* X5004Y27627D01* X4992Y27656D01* Y29404D01* X4995Y29413D01* X5001Y29449D01* X5004Y29485D01* X5004Y29521D01* X5000Y29557D01* X4994Y29593D01* X4992Y29596D01* Y40000D01* G37* G36* X5072Y0D02*X4992D01* Y1115D01* X5012Y1121D01* X5046Y1134D01* X5072Y1147D01* Y0D01* G37* G36* Y1240D02*X5072Y1240D01* X5064Y1243D01* X5055Y1243D01* X5046Y1243D01* X5038Y1241D01* X5030Y1237D01* X5006Y1225D01* X4992Y1220D01* Y1779D01* X5001Y1776D01* X5025Y1764D01* X5033Y1761D01* X5042Y1759D01* X5051Y1759D01* X5059Y1760D01* X5068Y1762D01* X5072Y1765D01* Y1240D01* G37* G36* Y1853D02*X5072Y1853D01* X5040Y1868D01* X5006Y1881D01* X4992Y1884D01* Y3121D01* X5026Y3134D01* X5058Y3150D01* X5066Y3155D01* X5072Y3161D01* X5072Y3161D01* Y1853D01* G37* G36* Y3225D02*X5067Y3231D01* X5060Y3236D01* X5052Y3240D01* X5044Y3243D01* X5035Y3243D01* X5026Y3243D01* X5018Y3241D01* X5010Y3237D01* X4992Y3229D01* Y3771D01* X5005Y3764D01* X5013Y3761D01* X5022Y3759D01* X5031Y3759D01* X5039Y3760D01* X5048Y3762D01* X5055Y3766D01* X5062Y3772D01* X5068Y3778D01* X5072Y3784D01* Y3225D01* G37* G36* Y3833D02*X5071Y3835D01* X5066Y3842D01* X5060Y3848D01* X5052Y3853D01* X5020Y3868D01* X4992Y3878D01* Y5128D01* X5006Y5134D01* X5038Y5150D01* X5046Y5155D01* X5052Y5161D01* X5057Y5168D01* X5061Y5175D01* X5063Y5184D01* X5064Y5193D01* X5064Y5201D01* X5061Y5210D01* X5058Y5218D01* X5053Y5225D01* X5047Y5231D01* X5040Y5236D01* X5032Y5240D01* X5024Y5243D01* X5015Y5243D01* X5006Y5243D01* X4998Y5241D01* X4992Y5238D01* Y5762D01* X4993Y5761D01* X5002Y5759D01* X5011Y5759D01* X5019Y5760D01* X5028Y5762D01* X5035Y5766D01* X5042Y5772D01* X5048Y5778D01* X5053Y5785D01* X5056Y5793D01* X5058Y5802D01* X5059Y5810D01* X5058Y5819D01* X5055Y5827D01* X5051Y5835D01* X5046Y5842D01* X5040Y5848D01* X5032Y5853D01* X5000Y5868D01* X4992Y5871D01* Y7137D01* X5018Y7150D01* X5026Y7155D01* X5032Y7161D01* X5037Y7168D01* X5041Y7175D01* X5043Y7184D01* X5044Y7193D01* X5044Y7201D01* X5041Y7210D01* X5038Y7218D01* X5033Y7225D01* X5027Y7231D01* X5020Y7236D01* X5012Y7240D01* X5004Y7243D01* X4995Y7243D01* X4992Y7243D01* Y7759D01* X4999Y7760D01* X5008Y7762D01* X5015Y7766D01* X5022Y7772D01* X5028Y7778D01* X5033Y7785D01* X5036Y7793D01* X5038Y7802D01* X5039Y7810D01* X5038Y7819D01* X5035Y7827D01* X5031Y7835D01* X5026Y7842D01* X5020Y7848D01* X5012Y7853D01* X4992Y7862D01* Y9147D01* X4998Y9150D01* X5006Y9155D01* X5012Y9161D01* X5017Y9168D01* X5021Y9175D01* X5023Y9184D01* X5024Y9193D01* X5024Y9201D01* X5021Y9210D01* X5018Y9218D01* X5013Y9225D01* X5007Y9231D01* X5000Y9236D01* X4992Y9240D01* Y9765D01* X4995Y9766D01* X5002Y9772D01* X5008Y9778D01* X5013Y9785D01* X5016Y9793D01* X5018Y9802D01* X5019Y9810D01* X5018Y9819D01* X5015Y9827D01* X5011Y9835D01* X5006Y9842D01* X5000Y9848D01* X4992Y9853D01* Y11161D01* X4997Y11168D01* X5001Y11175D01* X5003Y11184D01* X5004Y11193D01* X5004Y11201D01* X5001Y11210D01* X4998Y11218D01* X4993Y11225D01* X4992Y11225D01* Y11784D01* X4993Y11785D01* X4996Y11793D01* X4998Y11802D01* X4999Y11810D01* X4998Y11819D01* X4995Y11827D01* X4992Y11833D01* Y17307D01* X4996Y17302D01* X5003Y17296D01* X5010Y17291D01* X5018Y17288D01* X5027Y17286D01* X5035Y17285D01* X5044Y17286D01* X5052Y17289D01* X5060Y17293D01* X5067Y17298D01* X5072Y17304D01* Y15714D01* X5069Y15716D01* X5060Y15718D01* X5052Y15719D01* X5043Y15719D01* X5034Y15717D01* X5026Y15713D01* X5019Y15708D01* X5013Y15702D01* X5008Y15695D01* X5004Y15687D01* X5002Y15679D01* X5001Y15670D01* X5001Y15661D01* X5003Y15653D01* X5007Y15645D01* X5019Y15621D01* X5029Y15595D01* X5036Y15569D01* X5041Y15543D01* X5044Y15516D01* X5044Y15489D01* X5042Y15462D01* X5037Y15435D01* X5030Y15409D01* X5021Y15383D01* X5009Y15359D01* X5006Y15351D01* X5004Y15342D01* X5004Y15333D01* X5005Y15325D01* X5007Y15317D01* X5011Y15309D01* X5016Y15302D01* X5023Y15296D01* X5030Y15291D01* X5038Y15288D01* X5047Y15286D01* X5055Y15285D01* X5064Y15286D01* X5072Y15289D01* X5072Y15289D01* Y13719D01* X5072Y13719D01* X5063Y13719D01* X5054Y13717D01* X5046Y13713D01* X5039Y13708D01* X5033Y13702D01* X5028Y13695D01* X5024Y13687D01* X5022Y13679D01* X5021Y13670D01* X5021Y13661D01* X5023Y13653D01* X5027Y13645D01* X5039Y13621D01* X5049Y13595D01* X5056Y13569D01* X5061Y13543D01* X5064Y13516D01* X5064Y13489D01* X5062Y13462D01* X5057Y13435D01* X5050Y13409D01* X5041Y13383D01* X5029Y13359D01* X5026Y13351D01* X5024Y13342D01* X5024Y13333D01* X5025Y13325D01* X5027Y13317D01* X5031Y13309D01* X5036Y13302D01* X5043Y13296D01* X5050Y13291D01* X5058Y13288D01* X5067Y13286D01* X5072Y13286D01* Y11716D01* X5066Y11713D01* X5059Y11708D01* X5053Y11702D01* X5048Y11695D01* X5044Y11687D01* X5042Y11679D01* X5041Y11670D01* X5041Y11661D01* X5043Y11653D01* X5047Y11645D01* X5059Y11621D01* X5069Y11595D01* X5072Y11583D01* Y11416D01* X5070Y11409D01* X5061Y11383D01* X5049Y11359D01* X5046Y11351D01* X5044Y11342D01* X5044Y11333D01* X5045Y11325D01* X5047Y11317D01* X5051Y11309D01* X5056Y11302D01* X5063Y11296D01* X5070Y11291D01* X5072Y11290D01* Y9701D01* X5068Y9695D01* X5064Y9687D01* X5062Y9679D01* X5061Y9670D01* X5061Y9661D01* X5063Y9653D01* X5067Y9645D01* X5072Y9634D01* Y9365D01* X5069Y9359D01* X5066Y9351D01* X5064Y9342D01* X5064Y9333D01* X5065Y9325D01* X5067Y9317D01* X5071Y9309D01* X5072Y9307D01* Y3833D01* G37* G36* Y17696D02*X5070Y17701D01* X5064Y17707D01* X5056Y17712D01* X5049Y17716D01* X5040Y17718D01* X5032Y17719D01* X5023Y17719D01* X5014Y17717D01* X5006Y17713D01* X4999Y17708D01* X4993Y17702D01* X4992Y17701D01* Y19290D01* X4998Y19288D01* X5007Y19286D01* X5015Y19285D01* X5024Y19286D01* X5032Y19289D01* X5040Y19293D01* X5047Y19298D01* X5053Y19305D01* X5058Y19312D01* X5072Y19343D01* Y17696D01* G37* G36* Y19656D02*X5070Y19661D01* X5054Y19694D01* X5050Y19701D01* X5044Y19707D01* X5036Y19712D01* X5029Y19716D01* X5020Y19718D01* X5012Y19719D01* X5003Y19719D01* X4994Y19717D01* X4992Y19716D01* Y21286D01* X4995Y21285D01* X5004Y21286D01* X5012Y21289D01* X5020Y21293D01* X5027Y21298D01* X5033Y21305D01* X5038Y21312D01* X5053Y21344D01* X5066Y21378D01* X5072Y21404D01* Y19656D01* G37* G36* Y40000D02*X5152D01* Y13596D01* X5144Y13627D01* X5130Y13661D01* X5114Y13694D01* X5110Y13701D01* X5104Y13707D01* X5096Y13712D01* X5089Y13716D01* X5080Y13718D01* X5072Y13719D01* Y15289D01* X5080Y15293D01* X5087Y15298D01* X5093Y15305D01* X5098Y15312D01* X5113Y15344D01* X5126Y15378D01* X5135Y15413D01* X5141Y15449D01* X5144Y15485D01* X5144Y15521D01* X5140Y15557D01* X5134Y15593D01* X5124Y15627D01* X5110Y15661D01* X5094Y15694D01* X5090Y15701D01* X5084Y15707D01* X5076Y15712D01* X5072Y15714D01* Y17304D01* X5073Y17305D01* X5078Y17312D01* X5093Y17344D01* X5106Y17378D01* X5115Y17413D01* X5121Y17449D01* X5124Y17485D01* X5124Y17521D01* X5120Y17557D01* X5114Y17593D01* X5104Y17627D01* X5090Y17661D01* X5074Y17694D01* X5072Y17696D01* Y19343D01* X5073Y19344D01* X5086Y19378D01* X5095Y19413D01* X5101Y19449D01* X5104Y19485D01* X5104Y19521D01* X5100Y19557D01* X5094Y19593D01* X5084Y19627D01* X5072Y19656D01* Y21404D01* X5075Y21413D01* X5081Y21449D01* X5084Y21485D01* X5084Y21521D01* X5080Y21557D01* X5074Y21593D01* X5072Y21596D01* Y40000D01* G37* G36* X5152Y0D02*X5072D01* Y1147D01* X5078Y1150D01* X5086Y1155D01* X5092Y1161D01* X5097Y1168D01* X5101Y1175D01* X5103Y1184D01* X5104Y1193D01* X5104Y1201D01* X5101Y1210D01* X5098Y1218D01* X5093Y1225D01* X5087Y1231D01* X5080Y1236D01* X5072Y1240D01* Y1765D01* X5075Y1766D01* X5082Y1772D01* X5088Y1778D01* X5093Y1785D01* X5096Y1793D01* X5098Y1802D01* X5099Y1810D01* X5098Y1819D01* X5095Y1827D01* X5091Y1835D01* X5086Y1842D01* X5080Y1848D01* X5072Y1853D01* Y3161D01* X5077Y3168D01* X5081Y3175D01* X5083Y3184D01* X5084Y3193D01* X5084Y3201D01* X5081Y3210D01* X5078Y3218D01* X5073Y3225D01* X5072Y3225D01* Y3784D01* X5073Y3785D01* X5076Y3793D01* X5078Y3802D01* X5079Y3810D01* X5078Y3819D01* X5075Y3827D01* X5072Y3833D01* Y9307D01* X5076Y9302D01* X5083Y9296D01* X5090Y9291D01* X5098Y9288D01* X5107Y9286D01* X5115Y9285D01* X5124Y9286D01* X5132Y9289D01* X5140Y9293D01* X5147Y9298D01* X5152Y9304D01* Y7714D01* X5149Y7716D01* X5140Y7718D01* X5132Y7719D01* X5123Y7719D01* X5114Y7717D01* X5106Y7713D01* X5099Y7708D01* X5093Y7702D01* X5088Y7695D01* X5084Y7687D01* X5082Y7679D01* X5081Y7670D01* X5081Y7661D01* X5083Y7653D01* X5087Y7645D01* X5099Y7621D01* X5109Y7595D01* X5116Y7569D01* X5121Y7543D01* X5124Y7516D01* X5124Y7489D01* X5122Y7462D01* X5117Y7435D01* X5110Y7409D01* X5101Y7383D01* X5089Y7359D01* X5086Y7351D01* X5084Y7342D01* X5084Y7333D01* X5085Y7325D01* X5087Y7317D01* X5091Y7309D01* X5096Y7302D01* X5103Y7296D01* X5110Y7291D01* X5118Y7288D01* X5127Y7286D01* X5135Y7285D01* X5144Y7286D01* X5152Y7289D01* X5152Y7289D01* Y5719D01* X5152Y5719D01* X5143Y5719D01* X5134Y5717D01* X5126Y5713D01* X5119Y5708D01* X5113Y5702D01* X5108Y5695D01* X5104Y5687D01* X5102Y5679D01* X5101Y5670D01* X5101Y5661D01* X5103Y5653D01* X5107Y5645D01* X5119Y5621D01* X5129Y5595D01* X5136Y5569D01* X5141Y5543D01* X5144Y5516D01* X5144Y5489D01* X5142Y5462D01* X5137Y5435D01* X5130Y5409D01* X5121Y5383D01* X5109Y5359D01* X5106Y5351D01* X5104Y5342D01* X5104Y5333D01* X5105Y5325D01* X5107Y5317D01* X5111Y5309D01* X5116Y5302D01* X5123Y5296D01* X5130Y5291D01* X5138Y5288D01* X5147Y5286D01* X5152Y5286D01* Y3716D01* X5146Y3713D01* X5139Y3708D01* X5133Y3702D01* X5128Y3695D01* X5124Y3687D01* X5122Y3679D01* X5121Y3670D01* X5121Y3661D01* X5123Y3653D01* X5127Y3645D01* X5139Y3621D01* X5149Y3595D01* X5152Y3583D01* Y3416D01* X5150Y3409D01* X5141Y3383D01* X5129Y3359D01* X5126Y3351D01* X5124Y3342D01* X5124Y3333D01* X5125Y3325D01* X5127Y3317D01* X5131Y3309D01* X5136Y3302D01* X5143Y3296D01* X5150Y3291D01* X5152Y3290D01* Y1701D01* X5148Y1695D01* X5144Y1687D01* X5142Y1679D01* X5141Y1670D01* X5141Y1661D01* X5143Y1653D01* X5147Y1645D01* X5152Y1634D01* Y1365D01* X5149Y1359D01* X5146Y1351D01* X5144Y1342D01* X5144Y1333D01* X5145Y1325D01* X5147Y1317D01* X5151Y1309D01* X5152Y1307D01* Y0D01* G37* G36* Y9696D02*X5150Y9701D01* X5144Y9707D01* X5136Y9712D01* X5129Y9716D01* X5120Y9718D01* X5112Y9719D01* X5103Y9719D01* X5094Y9717D01* X5086Y9713D01* X5079Y9708D01* X5073Y9702D01* X5072Y9701D01* Y11290D01* X5078Y11288D01* X5087Y11286D01* X5095Y11285D01* X5104Y11286D01* X5112Y11289D01* X5120Y11293D01* X5127Y11298D01* X5133Y11305D01* X5138Y11312D01* X5152Y11343D01* Y9696D01* G37* G36* Y11656D02*X5150Y11661D01* X5134Y11694D01* X5130Y11701D01* X5124Y11707D01* X5116Y11712D01* X5109Y11716D01* X5100Y11718D01* X5092Y11719D01* X5083Y11719D01* X5074Y11717D01* X5072Y11716D01* Y13286D01* X5075Y13285D01* X5084Y13286D01* X5092Y13289D01* X5100Y13293D01* X5107Y13298D01* X5113Y13305D01* X5118Y13312D01* X5133Y13344D01* X5146Y13378D01* X5152Y13404D01* Y11656D01* G37* G36* Y40000D02*X6177D01* Y39710D01* X6169Y39706D01* X6162Y39701D01* X6156Y39695D01* X6151Y39687D01* X6136Y39655D01* X6123Y39621D01* X6114Y39586D01* X6108Y39550D01* X6105Y39514D01* X6105Y39478D01* X6109Y39442D01* X6115Y39407D01* X6125Y39372D01* X6139Y39338D01* X6155Y39306D01* X6159Y39299D01* X6165Y39292D01* X6173Y39287D01* X6177Y39285D01* Y37695D01* X6176Y37695D01* X6171Y37687D01* X6156Y37655D01* X6143Y37621D01* X6134Y37586D01* X6128Y37550D01* X6125Y37514D01* X6125Y37478D01* X6129Y37442D01* X6135Y37407D01* X6145Y37372D01* X6159Y37338D01* X6175Y37306D01* X6177Y37303D01* Y35656D01* X6176Y35655D01* X6163Y35621D01* X6154Y35586D01* X6148Y35550D01* X6145Y35514D01* X6145Y35478D01* X6149Y35442D01* X6155Y35407D01* X6165Y35372D01* X6177Y35343D01* Y33596D01* X6174Y33586D01* X6168Y33550D01* X6165Y33514D01* X6165Y33478D01* X6169Y33442D01* X6175Y33407D01* X6177Y33403D01* Y0D01* X5152D01* Y1307D01* X5156Y1302D01* X5163Y1296D01* X5170Y1291D01* X5178Y1288D01* X5187Y1286D01* X5195Y1285D01* X5204Y1286D01* X5212Y1289D01* X5220Y1293D01* X5227Y1298D01* X5233Y1305D01* X5238Y1312D01* X5253Y1344D01* X5266Y1378D01* X5275Y1413D01* X5281Y1449D01* X5284Y1485D01* X5284Y1521D01* X5280Y1557D01* X5274Y1593D01* X5264Y1627D01* X5250Y1661D01* X5234Y1694D01* X5230Y1701D01* X5224Y1707D01* X5216Y1712D01* X5209Y1716D01* X5200Y1718D01* X5192Y1719D01* X5183Y1719D01* X5174Y1717D01* X5166Y1713D01* X5159Y1708D01* X5153Y1702D01* X5152Y1701D01* Y3290D01* X5158Y3288D01* X5167Y3286D01* X5175Y3285D01* X5184Y3286D01* X5192Y3289D01* X5200Y3293D01* X5207Y3298D01* X5213Y3305D01* X5218Y3312D01* X5233Y3344D01* X5246Y3378D01* X5255Y3413D01* X5261Y3449D01* X5264Y3485D01* X5264Y3521D01* X5260Y3557D01* X5254Y3593D01* X5244Y3627D01* X5230Y3661D01* X5214Y3694D01* X5210Y3701D01* X5204Y3707D01* X5196Y3712D01* X5189Y3716D01* X5180Y3718D01* X5172Y3719D01* X5163Y3719D01* X5154Y3717D01* X5152Y3716D01* Y5286D01* X5155Y5285D01* X5164Y5286D01* X5172Y5289D01* X5180Y5293D01* X5187Y5298D01* X5193Y5305D01* X5198Y5312D01* X5213Y5344D01* X5226Y5378D01* X5235Y5413D01* X5241Y5449D01* X5244Y5485D01* X5244Y5521D01* X5240Y5557D01* X5234Y5593D01* X5224Y5627D01* X5210Y5661D01* X5194Y5694D01* X5190Y5701D01* X5184Y5707D01* X5176Y5712D01* X5169Y5716D01* X5160Y5718D01* X5152Y5719D01* Y7289D01* X5160Y7293D01* X5167Y7298D01* X5173Y7305D01* X5178Y7312D01* X5193Y7344D01* X5206Y7378D01* X5215Y7413D01* X5221Y7449D01* X5224Y7485D01* X5224Y7521D01* X5220Y7557D01* X5214Y7593D01* X5204Y7627D01* X5190Y7661D01* X5174Y7694D01* X5170Y7701D01* X5164Y7707D01* X5156Y7712D01* X5152Y7714D01* Y9304D01* X5153Y9305D01* X5158Y9312D01* X5173Y9344D01* X5186Y9378D01* X5195Y9413D01* X5201Y9449D01* X5204Y9485D01* X5204Y9521D01* X5200Y9557D01* X5194Y9593D01* X5184Y9627D01* X5170Y9661D01* X5154Y9694D01* X5152Y9696D01* Y11343D01* X5153Y11344D01* X5166Y11378D01* X5175Y11413D01* X5181Y11449D01* X5184Y11485D01* X5184Y11521D01* X5180Y11557D01* X5174Y11593D01* X5164Y11627D01* X5152Y11656D01* Y13404D01* X5155Y13413D01* X5161Y13449D01* X5164Y13485D01* X5164Y13521D01* X5160Y13557D01* X5154Y13593D01* X5152Y13596D01* Y40000D01* G37* G36* X6177D02*X6257D01* Y37692D01* X6253Y37697D01* X6246Y37703D01* X6239Y37708D01* X6231Y37711D01* X6222Y37713D01* X6214Y37714D01* X6205Y37713D01* X6197Y37710D01* X6189Y37706D01* X6182Y37701D01* X6177Y37695D01* Y39285D01* X6180Y39283D01* X6189Y39281D01* X6197Y39280D01* X6206Y39281D01* X6215Y39283D01* X6223Y39286D01* X6230Y39291D01* X6236Y39297D01* X6241Y39304D01* X6245Y39312D01* X6247Y39320D01* X6248Y39329D01* X6248Y39338D01* X6246Y39346D01* X6242Y39354D01* X6230Y39378D01* X6220Y39404D01* X6213Y39430D01* X6208Y39456D01* X6205Y39483D01* X6205Y39511D01* X6207Y39538D01* X6212Y39564D01* X6219Y39590D01* X6228Y39616D01* X6240Y39640D01* X6243Y39649D01* X6245Y39657D01* X6245Y39666D01* X6244Y39674D01* X6242Y39683D01* X6238Y39690D01* X6233Y39697D01* X6226Y39703D01* X6219Y39708D01* X6211Y39711D01* X6202Y39713D01* X6194Y39714D01* X6185Y39713D01* X6177Y39710D01* X6177Y39710D01* Y40000D01* G37* G36* Y37303D02*X6179Y37299D01* X6185Y37292D01* X6193Y37287D01* X6200Y37283D01* X6209Y37281D01* X6217Y37280D01* X6226Y37281D01* X6235Y37283D01* X6243Y37286D01* X6250Y37291D01* X6256Y37297D01* X6257Y37298D01* Y35709D01* X6251Y35711D01* X6242Y35713D01* X6234Y35714D01* X6225Y35713D01* X6217Y35710D01* X6209Y35706D01* X6202Y35701D01* X6196Y35695D01* X6191Y35687D01* X6177Y35656D01* Y37303D01* G37* G36* Y35343D02*X6179Y35338D01* X6195Y35306D01* X6199Y35299D01* X6205Y35292D01* X6213Y35287D01* X6220Y35283D01* X6229Y35281D01* X6237Y35280D01* X6246Y35281D01* X6255Y35283D01* X6257Y35284D01* Y33714D01* X6254Y33714D01* X6245Y33713D01* X6237Y33710D01* X6229Y33706D01* X6222Y33701D01* X6216Y33695D01* X6211Y33687D01* X6196Y33655D01* X6183Y33621D01* X6177Y33596D01* Y35343D01* G37* G36* Y33403D02*X6185Y33372D01* X6199Y33338D01* X6215Y33306D01* X6219Y33299D01* X6225Y33292D01* X6233Y33287D01* X6240Y33283D01* X6249Y33281D01* X6257Y33280D01* Y31710D01* X6249Y31706D01* X6242Y31701D01* X6236Y31695D01* X6231Y31687D01* X6216Y31655D01* X6203Y31621D01* X6194Y31586D01* X6188Y31550D01* X6185Y31514D01* X6185Y31478D01* X6189Y31442D01* X6195Y31407D01* X6205Y31372D01* X6219Y31338D01* X6235Y31306D01* X6239Y31299D01* X6245Y31292D01* X6253Y31287D01* X6257Y31285D01* Y29695D01* X6256Y29695D01* X6251Y29687D01* X6236Y29655D01* X6223Y29621D01* X6214Y29586D01* X6208Y29550D01* X6205Y29514D01* X6205Y29478D01* X6209Y29442D01* X6215Y29407D01* X6225Y29372D01* X6239Y29338D01* X6255Y29306D01* X6257Y29303D01* Y27656D01* X6256Y27655D01* X6243Y27621D01* X6234Y27586D01* X6228Y27550D01* X6225Y27514D01* X6225Y27478D01* X6229Y27442D01* X6235Y27407D01* X6245Y27372D01* X6257Y27343D01* Y25596D01* X6254Y25586D01* X6248Y25550D01* X6245Y25514D01* X6245Y25478D01* X6249Y25442D01* X6255Y25407D01* X6257Y25403D01* Y0D01* X6177D01* Y33403D01* G37* G36* X6257Y37365D02*X6250Y37378D01* X6240Y37404D01* X6233Y37430D01* X6228Y37456D01* X6225Y37483D01* X6225Y37511D01* X6227Y37538D01* X6232Y37564D01* X6239Y37590D01* X6248Y37616D01* X6257Y37634D01* Y37365D01* G37* G36* Y35417D02*X6253Y35430D01* X6248Y35456D01* X6245Y35483D01* X6245Y35511D01* X6247Y35538D01* X6252Y35564D01* X6257Y35583D01* Y35417D01* G37* G36* Y40000D02*X6337D01* Y39862D01* X6311Y39849D01* X6303Y39845D01* X6297Y39839D01* X6292Y39832D01* X6288Y39824D01* X6286Y39815D01* X6285Y39807D01* X6285Y39798D01* X6288Y39790D01* X6291Y39782D01* X6296Y39774D01* X6302Y39768D01* X6309Y39763D01* X6317Y39759D01* X6325Y39757D01* X6334Y39756D01* X6337Y39756D01* Y39240D01* X6330Y39239D01* X6321Y39237D01* X6314Y39233D01* X6307Y39228D01* X6301Y39221D01* X6296Y39214D01* X6293Y39206D01* X6291Y39197D01* X6290Y39189D01* X6291Y39180D01* X6294Y39172D01* X6298Y39164D01* X6303Y39157D01* X6309Y39151D01* X6317Y39146D01* X6337Y39137D01* Y37852D01* X6331Y37849D01* X6323Y37845D01* X6317Y37839D01* X6312Y37832D01* X6308Y37824D01* X6306Y37815D01* X6305Y37807D01* X6305Y37798D01* X6308Y37790D01* X6311Y37782D01* X6316Y37774D01* X6322Y37768D01* X6329Y37763D01* X6337Y37759D01* Y37234D01* X6334Y37233D01* X6327Y37228D01* X6321Y37221D01* X6316Y37214D01* X6313Y37206D01* X6311Y37197D01* X6310Y37189D01* X6311Y37180D01* X6314Y37172D01* X6318Y37164D01* X6323Y37157D01* X6329Y37151D01* X6337Y37147D01* Y35838D01* X6332Y35832D01* X6328Y35824D01* X6326Y35815D01* X6325Y35807D01* X6325Y35798D01* X6328Y35790D01* X6331Y35782D01* X6336Y35774D01* X6337Y35774D01* Y35215D01* X6336Y35214D01* X6333Y35206D01* X6331Y35197D01* X6330Y35189D01* X6331Y35180D01* X6334Y35172D01* X6337Y35167D01* Y29692D01* X6333Y29697D01* X6326Y29703D01* X6319Y29708D01* X6311Y29711D01* X6302Y29713D01* X6294Y29714D01* X6285Y29713D01* X6277Y29710D01* X6269Y29706D01* X6262Y29701D01* X6257Y29695D01* Y31285D01* X6260Y31283D01* X6269Y31281D01* X6277Y31280D01* X6286Y31281D01* X6295Y31283D01* X6303Y31286D01* X6310Y31291D01* X6316Y31297D01* X6321Y31304D01* X6325Y31312D01* X6327Y31320D01* X6328Y31329D01* X6328Y31338D01* X6326Y31346D01* X6322Y31354D01* X6310Y31378D01* X6300Y31404D01* X6293Y31430D01* X6288Y31456D01* X6285Y31483D01* X6285Y31511D01* X6287Y31538D01* X6292Y31564D01* X6299Y31590D01* X6308Y31616D01* X6320Y31640D01* X6323Y31649D01* X6325Y31657D01* X6325Y31666D01* X6324Y31674D01* X6322Y31683D01* X6318Y31690D01* X6313Y31697D01* X6306Y31703D01* X6299Y31708D01* X6291Y31711D01* X6282Y31713D01* X6274Y31714D01* X6265Y31713D01* X6257Y31710D01* X6257Y31710D01* Y33280D01* X6257Y33280D01* X6266Y33281D01* X6275Y33283D01* X6283Y33286D01* X6290Y33291D01* X6296Y33297D01* X6301Y33304D01* X6305Y33312D01* X6307Y33320D01* X6308Y33329D01* X6308Y33338D01* X6306Y33346D01* X6302Y33354D01* X6290Y33378D01* X6280Y33404D01* X6273Y33430D01* X6268Y33456D01* X6265Y33483D01* X6265Y33511D01* X6267Y33538D01* X6272Y33564D01* X6279Y33590D01* X6288Y33616D01* X6300Y33640D01* X6303Y33649D01* X6305Y33657D01* X6305Y33666D01* X6304Y33674D01* X6302Y33683D01* X6298Y33690D01* X6293Y33697D01* X6286Y33703D01* X6279Y33708D01* X6271Y33711D01* X6262Y33713D01* X6257Y33714D01* Y35284D01* X6263Y35286D01* X6270Y35291D01* X6276Y35297D01* X6281Y35304D01* X6285Y35312D01* X6287Y35320D01* X6288Y35329D01* X6288Y35338D01* X6286Y35346D01* X6282Y35354D01* X6270Y35378D01* X6260Y35404D01* X6257Y35417D01* Y35583D01* X6259Y35590D01* X6268Y35616D01* X6280Y35640D01* X6283Y35649D01* X6285Y35657D01* X6285Y35666D01* X6284Y35674D01* X6282Y35683D01* X6278Y35690D01* X6273Y35697D01* X6266Y35703D01* X6259Y35708D01* X6257Y35709D01* Y37298D01* X6261Y37304D01* X6265Y37312D01* X6267Y37320D01* X6268Y37329D01* X6268Y37338D01* X6266Y37346D01* X6262Y37354D01* X6257Y37365D01* Y37634D01* X6260Y37640D01* X6263Y37649D01* X6265Y37657D01* X6265Y37666D01* X6264Y37674D01* X6262Y37683D01* X6258Y37690D01* X6257Y37692D01* Y40000D01* G37* G36* Y29303D02*X6259Y29299D01* X6265Y29292D01* X6273Y29287D01* X6280Y29283D01* X6289Y29281D01* X6297Y29280D01* X6306Y29281D01* X6315Y29283D01* X6323Y29286D01* X6330Y29291D01* X6336Y29297D01* X6337Y29298D01* Y27709D01* X6331Y27711D01* X6322Y27713D01* X6314Y27714D01* X6305Y27713D01* X6297Y27710D01* X6289Y27706D01* X6282Y27701D01* X6276Y27695D01* X6271Y27687D01* X6257Y27656D01* Y29303D01* G37* G36* Y27343D02*X6259Y27338D01* X6275Y27306D01* X6279Y27299D01* X6285Y27292D01* X6293Y27287D01* X6300Y27283D01* X6309Y27281D01* X6317Y27280D01* X6326Y27281D01* X6335Y27283D01* X6337Y27284D01* Y25714D01* X6334Y25714D01* X6325Y25713D01* X6317Y25710D01* X6309Y25706D01* X6302Y25701D01* X6296Y25695D01* X6291Y25687D01* X6276Y25655D01* X6263Y25621D01* X6257Y25596D01* Y27343D01* G37* G36* Y25403D02*X6265Y25372D01* X6279Y25338D01* X6295Y25306D01* X6299Y25299D01* X6305Y25292D01* X6313Y25287D01* X6320Y25283D01* X6329Y25281D01* X6337Y25280D01* Y23710D01* X6329Y23706D01* X6322Y23701D01* X6316Y23695D01* X6311Y23687D01* X6296Y23655D01* X6283Y23621D01* X6274Y23586D01* X6268Y23550D01* X6265Y23514D01* X6265Y23478D01* X6269Y23442D01* X6275Y23407D01* X6285Y23372D01* X6299Y23338D01* X6315Y23306D01* X6319Y23299D01* X6325Y23292D01* X6333Y23287D01* X6337Y23285D01* Y21695D01* X6336Y21695D01* X6331Y21687D01* X6316Y21655D01* X6303Y21621D01* X6294Y21586D01* X6288Y21550D01* X6285Y21514D01* X6285Y21478D01* X6289Y21442D01* X6295Y21407D01* X6305Y21372D01* X6319Y21338D01* X6335Y21306D01* X6337Y21303D01* Y19656D01* X6336Y19655D01* X6323Y19621D01* X6314Y19586D01* X6308Y19550D01* X6305Y19514D01* X6305Y19478D01* X6309Y19442D01* X6315Y19407D01* X6325Y19372D01* X6337Y19343D01* Y17596D01* X6334Y17586D01* X6328Y17550D01* X6325Y17514D01* X6325Y17478D01* X6329Y17442D01* X6335Y17407D01* X6337Y17403D01* Y0D01* X6257D01* Y25403D01* G37* G36* X6337Y29365D02*X6330Y29378D01* X6320Y29404D01* X6313Y29430D01* X6308Y29456D01* X6305Y29483D01* X6305Y29511D01* X6307Y29538D01* X6312Y29564D01* X6319Y29590D01* X6328Y29616D01* X6337Y29634D01* Y29365D01* G37* G36* Y27417D02*X6333Y27430D01* X6328Y27456D01* X6325Y27483D01* X6325Y27511D01* X6327Y27538D01* X6332Y27564D01* X6337Y27583D01* Y27417D01* G37* G36* Y40000D02*X6667D01* Y39865D01* X6660Y39868D01* X6626Y39881D01* X6591Y39890D01* X6555Y39896D01* X6519Y39899D01* X6483Y39899D01* X6447Y39895D01* X6411Y39889D01* X6377Y39879D01* X6343Y39866D01* X6337Y39862D01* Y40000D01* G37* G36* Y39756D02*X6343Y39756D01* X6351Y39758D01* X6359Y39762D01* X6383Y39774D01* X6409Y39784D01* X6435Y39791D01* X6461Y39796D01* X6488Y39799D01* X6515Y39799D01* X6542Y39797D01* X6569Y39793D01* X6595Y39785D01* X6621Y39776D01* X6645Y39764D01* X6653Y39761D01* X6662Y39759D01* X6667Y39759D01* Y39243D01* X6666Y39243D01* X6658Y39241D01* X6650Y39237D01* X6626Y39225D01* X6600Y39215D01* X6574Y39208D01* X6548Y39203D01* X6521Y39200D01* X6494Y39200D01* X6467Y39202D01* X6440Y39207D01* X6414Y39214D01* X6388Y39223D01* X6364Y39235D01* X6356Y39238D01* X6347Y39240D01* X6338Y39240D01* X6337Y39240D01* Y39756D01* G37* G36* Y39137D02*X6349Y39131D01* X6383Y39118D01* X6418Y39109D01* X6454Y39103D01* X6490Y39100D01* X6526Y39100D01* X6562Y39104D01* X6598Y39111D01* X6632Y39121D01* X6666Y39134D01* X6667Y39134D01* Y37873D01* X6646Y37881D01* X6611Y37890D01* X6575Y37896D01* X6539Y37899D01* X6503Y37899D01* X6467Y37895D01* X6431Y37889D01* X6397Y37879D01* X6363Y37866D01* X6337Y37852D01* Y39137D01* G37* G36* Y37759D02*X6337Y37759D01* X6345Y37757D01* X6354Y37756D01* X6363Y37756D01* X6371Y37758D01* X6379Y37762D01* X6403Y37774D01* X6429Y37784D01* X6455Y37791D01* X6481Y37796D01* X6508Y37799D01* X6535Y37799D01* X6562Y37797D01* X6589Y37793D01* X6615Y37785D01* X6641Y37776D01* X6665Y37764D01* X6667Y37764D01* Y37236D01* X6646Y37225D01* X6620Y37215D01* X6594Y37208D01* X6568Y37203D01* X6541Y37200D01* X6514Y37200D01* X6487Y37202D01* X6460Y37207D01* X6434Y37214D01* X6408Y37223D01* X6384Y37235D01* X6376Y37238D01* X6367Y37240D01* X6358Y37240D01* X6350Y37239D01* X6341Y37237D01* X6337Y37234D01* Y37759D01* G37* G36* Y37147D02*X6337Y37146D01* X6369Y37131D01* X6403Y37118D01* X6438Y37109D01* X6474Y37103D01* X6510Y37100D01* X6546Y37100D01* X6582Y37104D01* X6618Y37111D01* X6652Y37121D01* X6667Y37126D01* Y35880D01* X6666Y35881D01* X6631Y35890D01* X6595Y35896D01* X6559Y35899D01* X6523Y35899D01* X6487Y35895D01* X6451Y35889D01* X6417Y35879D01* X6383Y35866D01* X6351Y35849D01* X6343Y35845D01* X6337Y35839D01* X6337Y35838D01* Y37147D01* G37* G36* Y35774D02*X6342Y35768D01* X6349Y35763D01* X6357Y35759D01* X6365Y35757D01* X6374Y35756D01* X6383Y35756D01* X6391Y35758D01* X6399Y35762D01* X6423Y35774D01* X6449Y35784D01* X6475Y35791D01* X6501Y35796D01* X6528Y35799D01* X6555Y35799D01* X6582Y35797D01* X6609Y35793D01* X6635Y35785D01* X6661Y35776D01* X6667Y35773D01* Y35226D01* X6666Y35225D01* X6640Y35215D01* X6614Y35208D01* X6588Y35203D01* X6561Y35200D01* X6534Y35200D01* X6507Y35202D01* X6480Y35207D01* X6454Y35214D01* X6428Y35223D01* X6404Y35235D01* X6396Y35238D01* X6387Y35240D01* X6378Y35240D01* X6370Y35239D01* X6361Y35237D01* X6354Y35233D01* X6347Y35228D01* X6341Y35221D01* X6337Y35215D01* Y35774D01* G37* G36* Y35167D02*X6338Y35164D01* X6343Y35157D01* X6349Y35151D01* X6357Y35146D01* X6389Y35131D01* X6417Y35121D01* Y33871D01* X6403Y33866D01* X6371Y33849D01* X6363Y33845D01* X6357Y33839D01* X6352Y33832D01* X6348Y33824D01* X6346Y33815D01* X6345Y33807D01* X6345Y33798D01* X6348Y33790D01* X6351Y33782D01* X6356Y33774D01* X6362Y33768D01* X6369Y33763D01* X6377Y33759D01* X6385Y33757D01* X6394Y33756D01* X6403Y33756D01* X6411Y33758D01* X6417Y33761D01* Y33238D01* X6416Y33238D01* X6407Y33240D01* X6398Y33240D01* X6390Y33239D01* X6381Y33237D01* X6374Y33233D01* X6367Y33228D01* X6361Y33221D01* X6356Y33214D01* X6353Y33206D01* X6351Y33197D01* X6350Y33189D01* X6351Y33180D01* X6354Y33172D01* X6358Y33164D01* X6363Y33157D01* X6369Y33151D01* X6377Y33146D01* X6409Y33131D01* X6417Y33128D01* Y31862D01* X6391Y31849D01* X6383Y31845D01* X6377Y31839D01* X6372Y31832D01* X6368Y31824D01* X6366Y31815D01* X6365Y31807D01* X6365Y31798D01* X6368Y31790D01* X6371Y31782D01* X6376Y31774D01* X6382Y31768D01* X6389Y31763D01* X6397Y31759D01* X6405Y31757D01* X6414Y31756D01* X6417Y31756D01* Y31240D01* X6410Y31239D01* X6401Y31237D01* X6394Y31233D01* X6387Y31228D01* X6381Y31221D01* X6376Y31214D01* X6373Y31206D01* X6371Y31197D01* X6370Y31189D01* X6371Y31180D01* X6374Y31172D01* X6378Y31164D01* X6383Y31157D01* X6389Y31151D01* X6397Y31146D01* X6417Y31137D01* Y29852D01* X6411Y29849D01* X6403Y29845D01* X6397Y29839D01* X6392Y29832D01* X6388Y29824D01* X6386Y29815D01* X6385Y29807D01* X6385Y29798D01* X6388Y29790D01* X6391Y29782D01* X6396Y29774D01* X6402Y29768D01* X6409Y29763D01* X6417Y29759D01* Y29234D01* X6414Y29233D01* X6407Y29228D01* X6401Y29221D01* X6396Y29214D01* X6393Y29206D01* X6391Y29197D01* X6390Y29189D01* X6391Y29180D01* X6394Y29172D01* X6398Y29164D01* X6403Y29157D01* X6409Y29151D01* X6417Y29147D01* Y27838D01* X6412Y27832D01* X6408Y27824D01* X6406Y27815D01* X6405Y27807D01* X6405Y27798D01* X6408Y27790D01* X6411Y27782D01* X6416Y27774D01* X6417Y27774D01* Y27215D01* X6416Y27214D01* X6413Y27206D01* X6411Y27197D01* X6410Y27189D01* X6411Y27180D01* X6414Y27172D01* X6417Y27167D01* Y21692D01* X6413Y21697D01* X6406Y21703D01* X6399Y21708D01* X6391Y21711D01* X6382Y21713D01* X6374Y21714D01* X6365Y21713D01* X6357Y21710D01* X6349Y21706D01* X6342Y21701D01* X6337Y21695D01* Y23285D01* X6340Y23283D01* X6349Y23281D01* X6357Y23280D01* X6366Y23281D01* X6375Y23283D01* X6383Y23286D01* X6390Y23291D01* X6396Y23297D01* X6401Y23304D01* X6405Y23312D01* X6407Y23320D01* X6408Y23329D01* X6408Y23338D01* X6406Y23346D01* X6402Y23354D01* X6390Y23378D01* X6380Y23404D01* X6373Y23430D01* X6368Y23456D01* X6365Y23483D01* X6365Y23511D01* X6367Y23538D01* X6372Y23564D01* X6379Y23590D01* X6388Y23616D01* X6400Y23640D01* X6403Y23649D01* X6405Y23657D01* X6405Y23666D01* X6404Y23674D01* X6402Y23683D01* X6398Y23690D01* X6393Y23697D01* X6386Y23703D01* X6379Y23708D01* X6371Y23711D01* X6362Y23713D01* X6354Y23714D01* X6345Y23713D01* X6337Y23710D01* X6337Y23710D01* Y25280D01* X6337Y25280D01* X6346Y25281D01* X6355Y25283D01* X6363Y25286D01* X6370Y25291D01* X6376Y25297D01* X6381Y25304D01* X6385Y25312D01* X6387Y25320D01* X6388Y25329D01* X6388Y25338D01* X6386Y25346D01* X6382Y25354D01* X6370Y25378D01* X6360Y25404D01* X6353Y25430D01* X6348Y25456D01* X6345Y25483D01* X6345Y25511D01* X6347Y25538D01* X6352Y25564D01* X6359Y25590D01* X6368Y25616D01* X6380Y25640D01* X6383Y25649D01* X6385Y25657D01* X6385Y25666D01* X6384Y25674D01* X6382Y25683D01* X6378Y25690D01* X6373Y25697D01* X6366Y25703D01* X6359Y25708D01* X6351Y25711D01* X6342Y25713D01* X6337Y25714D01* Y27284D01* X6343Y27286D01* X6350Y27291D01* X6356Y27297D01* X6361Y27304D01* X6365Y27312D01* X6367Y27320D01* X6368Y27329D01* X6368Y27338D01* X6366Y27346D01* X6362Y27354D01* X6350Y27378D01* X6340Y27404D01* X6337Y27417D01* Y27583D01* X6339Y27590D01* X6348Y27616D01* X6360Y27640D01* X6363Y27649D01* X6365Y27657D01* X6365Y27666D01* X6364Y27674D01* X6362Y27683D01* X6358Y27690D01* X6353Y27697D01* X6346Y27703D01* X6339Y27708D01* X6337Y27709D01* Y29298D01* X6341Y29304D01* X6345Y29312D01* X6347Y29320D01* X6348Y29329D01* X6348Y29338D01* X6346Y29346D01* X6342Y29354D01* X6337Y29365D01* Y29634D01* X6340Y29640D01* X6343Y29649D01* X6345Y29657D01* X6345Y29666D01* X6344Y29674D01* X6342Y29683D01* X6338Y29690D01* X6337Y29692D01* Y35167D01* G37* G36* X6417Y0D02*X6337D01* Y17403D01* X6345Y17372D01* X6359Y17338D01* X6375Y17306D01* X6379Y17299D01* X6385Y17292D01* X6393Y17287D01* X6400Y17283D01* X6409Y17281D01* X6417Y17280D01* Y15710D01* X6409Y15706D01* X6402Y15701D01* X6396Y15695D01* X6391Y15687D01* X6376Y15655D01* X6363Y15621D01* X6354Y15586D01* X6348Y15550D01* X6345Y15514D01* X6345Y15478D01* X6349Y15442D01* X6355Y15407D01* X6365Y15372D01* X6379Y15338D01* X6395Y15306D01* X6399Y15299D01* X6405Y15292D01* X6413Y15287D01* X6417Y15285D01* Y13695D01* X6416Y13695D01* X6411Y13687D01* X6396Y13655D01* X6383Y13621D01* X6374Y13586D01* X6368Y13550D01* X6365Y13514D01* X6365Y13478D01* X6369Y13442D01* X6375Y13407D01* X6385Y13372D01* X6399Y13338D01* X6415Y13306D01* X6417Y13303D01* Y11656D01* X6416Y11655D01* X6403Y11621D01* X6394Y11586D01* X6388Y11550D01* X6385Y11514D01* X6385Y11478D01* X6389Y11442D01* X6395Y11407D01* X6405Y11372D01* X6417Y11343D01* Y9596D01* X6414Y9586D01* X6408Y9550D01* X6405Y9514D01* X6405Y9478D01* X6409Y9442D01* X6415Y9407D01* X6417Y9403D01* Y0D01* G37* G36* Y17714D02*X6414Y17714D01* X6405Y17713D01* X6397Y17710D01* X6389Y17706D01* X6382Y17701D01* X6376Y17695D01* X6371Y17687D01* X6356Y17655D01* X6343Y17621D01* X6337Y17596D01* Y19343D01* X6339Y19338D01* X6355Y19306D01* X6359Y19299D01* X6365Y19292D01* X6373Y19287D01* X6380Y19283D01* X6389Y19281D01* X6397Y19280D01* X6406Y19281D01* X6415Y19283D01* X6417Y19284D01* Y17714D01* G37* G36* Y19417D02*X6413Y19430D01* X6408Y19456D01* X6405Y19483D01* X6405Y19511D01* X6407Y19538D01* X6412Y19564D01* X6417Y19583D01* Y19417D01* G37* G36* Y19709D02*X6411Y19711D01* X6402Y19713D01* X6394Y19714D01* X6385Y19713D01* X6377Y19710D01* X6369Y19706D01* X6362Y19701D01* X6356Y19695D01* X6351Y19687D01* X6337Y19656D01* Y21303D01* X6339Y21299D01* X6345Y21292D01* X6353Y21287D01* X6360Y21283D01* X6369Y21281D01* X6377Y21280D01* X6386Y21281D01* X6395Y21283D01* X6403Y21286D01* X6410Y21291D01* X6416Y21297D01* X6417Y21298D01* Y19709D01* G37* G36* Y21365D02*X6410Y21378D01* X6400Y21404D01* X6393Y21430D01* X6388Y21456D01* X6385Y21483D01* X6385Y21511D01* X6387Y21538D01* X6392Y21564D01* X6399Y21590D01* X6408Y21616D01* X6417Y21634D01* Y21365D01* G37* G36* Y35121D02*X6423Y35118D01* X6458Y35109D01* X6494Y35103D01* X6530Y35100D01* X6566Y35100D01* X6602Y35104D01* X6638Y35111D01* X6667Y35119D01* Y33886D01* X6651Y33890D01* X6615Y33896D01* X6579Y33899D01* X6543Y33899D01* X6507Y33895D01* X6471Y33889D01* X6437Y33879D01* X6417Y33871D01* Y35121D01* G37* G36* Y33761D02*X6419Y33762D01* X6443Y33774D01* X6469Y33784D01* X6495Y33791D01* X6521Y33796D01* X6548Y33799D01* X6575Y33799D01* X6602Y33797D01* X6629Y33793D01* X6655Y33785D01* X6667Y33781D01* Y33218D01* X6660Y33215D01* X6634Y33208D01* X6608Y33203D01* X6581Y33200D01* X6554Y33200D01* X6527Y33202D01* X6500Y33207D01* X6474Y33214D01* X6448Y33223D01* X6424Y33235D01* X6417Y33238D01* Y33761D01* G37* G36* Y33128D02*X6443Y33118D01* X6478Y33109D01* X6514Y33103D01* X6550Y33100D01* X6586Y33100D01* X6622Y33104D01* X6658Y33111D01* X6667Y33113D01* Y31891D01* X6635Y31896D01* X6599Y31899D01* X6563Y31899D01* X6527Y31895D01* X6491Y31889D01* X6457Y31879D01* X6423Y31866D01* X6417Y31862D01* Y33128D01* G37* G36* Y31756D02*X6423Y31756D01* X6431Y31758D01* X6439Y31762D01* X6463Y31774D01* X6489Y31784D01* X6515Y31791D01* X6541Y31796D01* X6568Y31799D01* X6595Y31799D01* X6622Y31797D01* X6649Y31793D01* X6667Y31788D01* Y31212D01* X6654Y31208D01* X6628Y31203D01* X6601Y31200D01* X6574Y31200D01* X6547Y31202D01* X6520Y31207D01* X6494Y31214D01* X6468Y31223D01* X6444Y31235D01* X6436Y31238D01* X6427Y31240D01* X6418Y31240D01* X6417Y31240D01* Y31756D01* G37* G36* Y31137D02*X6429Y31131D01* X6463Y31118D01* X6498Y31109D01* X6534Y31103D01* X6570Y31100D01* X6606Y31100D01* X6642Y31104D01* X6667Y31109D01* Y29894D01* X6655Y29896D01* X6619Y29899D01* X6583Y29899D01* X6547Y29895D01* X6511Y29889D01* X6477Y29879D01* X6443Y29866D01* X6417Y29852D01* Y31137D01* G37* G36* Y29759D02*X6417Y29759D01* X6425Y29757D01* X6434Y29756D01* X6443Y29756D01* X6451Y29758D01* X6459Y29762D01* X6483Y29774D01* X6509Y29784D01* X6535Y29791D01* X6561Y29796D01* X6588Y29799D01* X6615Y29799D01* X6642Y29797D01* X6667Y29793D01* Y29206D01* X6648Y29203D01* X6621Y29200D01* X6594Y29200D01* X6567Y29202D01* X6540Y29207D01* X6514Y29214D01* X6488Y29223D01* X6464Y29235D01* X6456Y29238D01* X6447Y29240D01* X6438Y29240D01* X6430Y29239D01* X6421Y29237D01* X6417Y29234D01* Y29759D01* G37* G36* Y29147D02*X6417Y29146D01* X6449Y29131D01* X6483Y29118D01* X6518Y29109D01* X6554Y29103D01* X6590Y29100D01* X6626Y29100D01* X6662Y29104D01* X6667Y29105D01* Y27897D01* X6639Y27899D01* X6603Y27899D01* X6567Y27895D01* X6531Y27889D01* X6497Y27879D01* X6463Y27866D01* X6431Y27849D01* X6423Y27845D01* X6417Y27839D01* X6417Y27838D01* Y29147D01* G37* G36* Y27774D02*X6422Y27768D01* X6429Y27763D01* X6437Y27759D01* X6445Y27757D01* X6454Y27756D01* X6463Y27756D01* X6471Y27758D01* X6479Y27762D01* X6503Y27774D01* X6529Y27784D01* X6555Y27791D01* X6581Y27796D01* X6608Y27799D01* X6635Y27799D01* X6662Y27797D01* X6667Y27796D01* Y27203D01* X6641Y27200D01* X6614Y27200D01* X6587Y27202D01* X6560Y27207D01* X6534Y27214D01* X6508Y27223D01* X6484Y27235D01* X6476Y27238D01* X6467Y27240D01* X6458Y27240D01* X6450Y27239D01* X6441Y27237D01* X6434Y27233D01* X6427Y27228D01* X6421Y27221D01* X6417Y27215D01* Y27774D01* G37* G36* Y27167D02*X6418Y27164D01* X6423Y27157D01* X6429Y27151D01* X6437Y27146D01* X6469Y27131D01* X6497Y27121D01* Y25871D01* X6483Y25866D01* X6451Y25849D01* X6443Y25845D01* X6437Y25839D01* X6432Y25832D01* X6428Y25824D01* X6426Y25815D01* X6425Y25807D01* X6425Y25798D01* X6428Y25790D01* X6431Y25782D01* X6436Y25774D01* X6442Y25768D01* X6449Y25763D01* X6457Y25759D01* X6465Y25757D01* X6474Y25756D01* X6483Y25756D01* X6491Y25758D01* X6497Y25761D01* Y25238D01* X6496Y25238D01* X6487Y25240D01* X6478Y25240D01* X6470Y25239D01* X6461Y25237D01* X6454Y25233D01* X6447Y25228D01* X6441Y25221D01* X6436Y25214D01* X6433Y25206D01* X6431Y25197D01* X6430Y25189D01* X6431Y25180D01* X6434Y25172D01* X6438Y25164D01* X6443Y25157D01* X6449Y25151D01* X6457Y25146D01* X6489Y25131D01* X6497Y25128D01* Y23862D01* X6471Y23849D01* X6463Y23845D01* X6457Y23839D01* X6452Y23832D01* X6448Y23824D01* X6446Y23815D01* X6445Y23807D01* X6445Y23798D01* X6448Y23790D01* X6451Y23782D01* X6456Y23774D01* X6462Y23768D01* X6469Y23763D01* X6477Y23759D01* X6485Y23757D01* X6494Y23756D01* X6497Y23756D01* Y23240D01* X6490Y23239D01* X6481Y23237D01* X6474Y23233D01* X6467Y23228D01* X6461Y23221D01* X6456Y23214D01* X6453Y23206D01* X6451Y23197D01* X6450Y23189D01* X6451Y23180D01* X6454Y23172D01* X6458Y23164D01* X6463Y23157D01* X6469Y23151D01* X6477Y23146D01* X6497Y23137D01* Y21852D01* X6491Y21849D01* X6483Y21845D01* X6477Y21839D01* X6472Y21832D01* X6468Y21824D01* X6466Y21815D01* X6465Y21807D01* X6465Y21798D01* X6468Y21790D01* X6471Y21782D01* X6476Y21774D01* X6482Y21768D01* X6489Y21763D01* X6497Y21759D01* Y21234D01* X6494Y21233D01* X6487Y21228D01* X6481Y21221D01* X6476Y21214D01* X6473Y21206D01* X6471Y21197D01* X6470Y21189D01* X6471Y21180D01* X6474Y21172D01* X6478Y21164D01* X6483Y21157D01* X6489Y21151D01* X6497Y21147D01* Y19838D01* X6492Y19832D01* X6488Y19824D01* X6486Y19815D01* X6485Y19807D01* X6485Y19798D01* X6488Y19790D01* X6491Y19782D01* X6496Y19774D01* X6497Y19774D01* Y19215D01* X6496Y19214D01* X6493Y19206D01* X6491Y19197D01* X6490Y19189D01* X6491Y19180D01* X6494Y19172D01* X6497Y19167D01* Y13692D01* X6493Y13697D01* X6486Y13703D01* X6479Y13708D01* X6471Y13711D01* X6462Y13713D01* X6454Y13714D01* X6445Y13713D01* X6437Y13710D01* X6429Y13706D01* X6422Y13701D01* X6417Y13695D01* Y15285D01* X6420Y15283D01* X6429Y15281D01* X6437Y15280D01* X6446Y15281D01* X6455Y15283D01* X6463Y15286D01* X6470Y15291D01* X6476Y15297D01* X6481Y15304D01* X6485Y15312D01* X6487Y15320D01* X6488Y15329D01* X6488Y15338D01* X6486Y15346D01* X6482Y15354D01* X6470Y15378D01* X6460Y15404D01* X6453Y15430D01* X6448Y15456D01* X6445Y15483D01* X6445Y15511D01* X6447Y15538D01* X6452Y15564D01* X6459Y15590D01* X6468Y15616D01* X6480Y15640D01* X6483Y15649D01* X6485Y15657D01* X6485Y15666D01* X6484Y15674D01* X6482Y15683D01* X6478Y15690D01* X6473Y15697D01* X6466Y15703D01* X6459Y15708D01* X6451Y15711D01* X6442Y15713D01* X6434Y15714D01* X6425Y15713D01* X6417Y15710D01* X6417Y15710D01* Y17280D01* X6417Y17280D01* X6426Y17281D01* X6435Y17283D01* X6443Y17286D01* X6450Y17291D01* X6456Y17297D01* X6461Y17304D01* X6465Y17312D01* X6467Y17320D01* X6468Y17329D01* X6468Y17338D01* X6466Y17346D01* X6462Y17354D01* X6450Y17378D01* X6440Y17404D01* X6433Y17430D01* X6428Y17456D01* X6425Y17483D01* X6425Y17511D01* X6427Y17538D01* X6432Y17564D01* X6439Y17590D01* X6448Y17616D01* X6460Y17640D01* X6463Y17649D01* X6465Y17657D01* X6465Y17666D01* X6464Y17674D01* X6462Y17683D01* X6458Y17690D01* X6453Y17697D01* X6446Y17703D01* X6439Y17708D01* X6431Y17711D01* X6422Y17713D01* X6417Y17714D01* Y19284D01* X6423Y19286D01* X6430Y19291D01* X6436Y19297D01* X6441Y19304D01* X6445Y19312D01* X6447Y19320D01* X6448Y19329D01* X6448Y19338D01* X6446Y19346D01* X6442Y19354D01* X6430Y19378D01* X6420Y19404D01* X6417Y19417D01* Y19583D01* X6419Y19590D01* X6428Y19616D01* X6440Y19640D01* X6443Y19649D01* X6445Y19657D01* X6445Y19666D01* X6444Y19674D01* X6442Y19683D01* X6438Y19690D01* X6433Y19697D01* X6426Y19703D01* X6419Y19708D01* X6417Y19709D01* Y21298D01* X6421Y21304D01* X6425Y21312D01* X6427Y21320D01* X6428Y21329D01* X6428Y21338D01* X6426Y21346D01* X6422Y21354D01* X6417Y21365D01* Y21634D01* X6420Y21640D01* X6423Y21649D01* X6425Y21657D01* X6425Y21666D01* X6424Y21674D01* X6422Y21683D01* X6418Y21690D01* X6417Y21692D01* Y27167D01* G37* G36* X6497Y0D02*X6417D01* Y9403D01* X6425Y9372D01* X6439Y9338D01* X6455Y9306D01* X6459Y9299D01* X6465Y9292D01* X6473Y9287D01* X6480Y9283D01* X6489Y9281D01* X6497Y9280D01* Y7710D01* X6489Y7706D01* X6482Y7701D01* X6476Y7695D01* X6471Y7687D01* X6456Y7655D01* X6443Y7621D01* X6434Y7586D01* X6428Y7550D01* X6425Y7514D01* X6425Y7478D01* X6429Y7442D01* X6435Y7407D01* X6445Y7372D01* X6459Y7338D01* X6475Y7306D01* X6479Y7299D01* X6485Y7292D01* X6493Y7287D01* X6497Y7285D01* Y5695D01* X6496Y5695D01* X6491Y5687D01* X6476Y5655D01* X6463Y5621D01* X6454Y5586D01* X6448Y5550D01* X6445Y5514D01* X6445Y5478D01* X6449Y5442D01* X6455Y5407D01* X6465Y5372D01* X6479Y5338D01* X6495Y5306D01* X6497Y5303D01* Y3656D01* X6496Y3655D01* X6483Y3621D01* X6474Y3586D01* X6468Y3550D01* X6465Y3514D01* X6465Y3478D01* X6469Y3442D01* X6475Y3407D01* X6485Y3372D01* X6497Y3343D01* Y1596D01* X6494Y1586D01* X6488Y1550D01* X6485Y1514D01* X6485Y1478D01* X6489Y1442D01* X6495Y1407D01* X6497Y1403D01* Y0D01* G37* G36* Y9714D02*X6494Y9714D01* X6485Y9713D01* X6477Y9710D01* X6469Y9706D01* X6462Y9701D01* X6456Y9695D01* X6451Y9687D01* X6436Y9655D01* X6423Y9621D01* X6417Y9596D01* Y11343D01* X6419Y11338D01* X6435Y11306D01* X6439Y11299D01* X6445Y11292D01* X6453Y11287D01* X6460Y11283D01* X6469Y11281D01* X6477Y11280D01* X6486Y11281D01* X6495Y11283D01* X6497Y11284D01* Y9714D01* G37* G36* Y11417D02*X6493Y11430D01* X6488Y11456D01* X6485Y11483D01* X6485Y11511D01* X6487Y11538D01* X6492Y11564D01* X6497Y11583D01* Y11417D01* G37* G36* Y11709D02*X6491Y11711D01* X6482Y11713D01* X6474Y11714D01* X6465Y11713D01* X6457Y11710D01* X6449Y11706D01* X6442Y11701D01* X6436Y11695D01* X6431Y11687D01* X6417Y11656D01* Y13303D01* X6419Y13299D01* X6425Y13292D01* X6433Y13287D01* X6440Y13283D01* X6449Y13281D01* X6457Y13280D01* X6466Y13281D01* X6475Y13283D01* X6483Y13286D01* X6490Y13291D01* X6496Y13297D01* X6497Y13298D01* Y11709D01* G37* G36* Y13365D02*X6490Y13378D01* X6480Y13404D01* X6473Y13430D01* X6468Y13456D01* X6465Y13483D01* X6465Y13511D01* X6467Y13538D01* X6472Y13564D01* X6479Y13590D01* X6488Y13616D01* X6497Y13634D01* Y13365D01* G37* G36* Y27121D02*X6503Y27118D01* X6538Y27109D01* X6574Y27103D01* X6610Y27100D01* X6646Y27100D01* X6667Y27102D01* Y25899D01* X6659Y25899D01* X6623Y25899D01* X6587Y25895D01* X6551Y25889D01* X6517Y25879D01* X6497Y25871D01* Y27121D01* G37* G36* Y25761D02*X6499Y25762D01* X6523Y25774D01* X6549Y25784D01* X6575Y25791D01* X6601Y25796D01* X6628Y25799D01* X6655Y25799D01* X6667Y25798D01* Y25201D01* X6661Y25200D01* X6634Y25200D01* X6607Y25202D01* X6580Y25207D01* X6554Y25214D01* X6528Y25223D01* X6504Y25235D01* X6497Y25238D01* Y25761D01* G37* G36* Y25128D02*X6523Y25118D01* X6558Y25109D01* X6594Y25103D01* X6630Y25100D01* X6666Y25100D01* X6667Y25100D01* Y23899D01* X6643Y23899D01* X6607Y23895D01* X6571Y23889D01* X6537Y23879D01* X6503Y23866D01* X6497Y23862D01* Y25128D01* G37* G36* Y23756D02*X6503Y23756D01* X6511Y23758D01* X6519Y23762D01* X6543Y23774D01* X6569Y23784D01* X6595Y23791D01* X6621Y23796D01* X6648Y23799D01* X6667Y23799D01* Y23200D01* X6654Y23200D01* X6627Y23202D01* X6600Y23207D01* X6574Y23214D01* X6548Y23223D01* X6524Y23235D01* X6516Y23238D01* X6507Y23240D01* X6498Y23240D01* X6497Y23240D01* Y23756D01* G37* G36* Y23137D02*X6509Y23131D01* X6543Y23118D01* X6578Y23109D01* X6614Y23103D01* X6650Y23100D01* X6667Y23100D01* Y21899D01* X6663D01* X6627Y21895D01* X6591Y21889D01* X6557Y21879D01* X6523Y21866D01* X6497Y21852D01* Y23137D01* G37* G36* Y21759D02*X6497Y21759D01* X6505Y21757D01* X6514Y21756D01* X6523Y21756D01* X6531Y21758D01* X6539Y21762D01* X6563Y21774D01* X6589Y21784D01* X6615Y21791D01* X6641Y21796D01* X6667Y21799D01* Y21200D01* X6647Y21202D01* X6620Y21207D01* X6594Y21214D01* X6568Y21223D01* X6544Y21235D01* X6536Y21238D01* X6527Y21240D01* X6518Y21240D01* X6510Y21239D01* X6501Y21237D01* X6497Y21234D01* Y21759D01* G37* G36* Y21147D02*X6497Y21146D01* X6529Y21131D01* X6563Y21118D01* X6598Y21109D01* X6634Y21103D01* X6667Y21100D01* Y19897D01* X6647Y19895D01* X6611Y19889D01* X6577Y19879D01* X6543Y19866D01* X6511Y19849D01* X6503Y19845D01* X6497Y19839D01* X6497Y19838D01* Y21147D01* G37* G36* Y19774D02*X6502Y19768D01* X6509Y19763D01* X6517Y19759D01* X6525Y19757D01* X6534Y19756D01* X6543Y19756D01* X6551Y19758D01* X6559Y19762D01* X6583Y19774D01* X6609Y19784D01* X6635Y19791D01* X6661Y19796D01* X6667Y19797D01* Y19202D01* X6667Y19202D01* X6640Y19207D01* X6614Y19214D01* X6588Y19223D01* X6564Y19235D01* X6556Y19238D01* X6547Y19240D01* X6538Y19240D01* X6530Y19239D01* X6521Y19237D01* X6514Y19233D01* X6507Y19228D01* X6501Y19221D01* X6497Y19215D01* Y19774D01* G37* G36* Y19167D02*X6498Y19164D01* X6503Y19157D01* X6509Y19151D01* X6517Y19146D01* X6549Y19131D01* X6583Y19118D01* X6618Y19109D01* X6654Y19103D01* X6667Y19102D01* Y17895D01* X6667D01* X6631Y17889D01* X6597Y17879D01* X6563Y17866D01* X6531Y17849D01* X6523Y17845D01* X6517Y17839D01* X6512Y17832D01* X6508Y17824D01* X6506Y17815D01* X6505Y17807D01* X6505Y17798D01* X6508Y17790D01* X6511Y17782D01* X6516Y17774D01* X6522Y17768D01* X6529Y17763D01* X6537Y17759D01* X6545Y17757D01* X6554Y17756D01* X6563Y17756D01* X6571Y17758D01* X6579Y17762D01* X6603Y17774D01* X6629Y17784D01* X6655Y17791D01* X6667Y17794D01* Y17205D01* X6660Y17207D01* X6634Y17214D01* X6608Y17223D01* X6584Y17235D01* X6576Y17238D01* X6567Y17240D01* X6558Y17240D01* X6550Y17239D01* X6541Y17237D01* X6534Y17233D01* X6527Y17228D01* X6521Y17221D01* X6516Y17214D01* X6513Y17206D01* X6511Y17197D01* X6510Y17189D01* X6511Y17180D01* X6514Y17172D01* X6518Y17164D01* X6523Y17157D01* X6529Y17151D01* X6537Y17146D01* X6569Y17131D01* X6603Y17118D01* X6638Y17109D01* X6667Y17104D01* Y15892D01* X6651Y15889D01* X6617Y15879D01* X6583Y15866D01* X6551Y15849D01* X6543Y15845D01* X6537Y15839D01* X6532Y15832D01* X6528Y15824D01* X6526Y15815D01* X6525Y15807D01* X6525Y15798D01* X6528Y15790D01* X6531Y15782D01* X6536Y15774D01* X6542Y15768D01* X6549Y15763D01* X6557Y15759D01* X6565Y15757D01* X6574Y15756D01* X6583Y15756D01* X6591Y15758D01* X6599Y15762D01* X6623Y15774D01* X6649Y15784D01* X6667Y15789D01* Y15210D01* X6654Y15214D01* X6628Y15223D01* X6604Y15235D01* X6596Y15238D01* X6587Y15240D01* X6578Y15240D01* X6570Y15239D01* X6561Y15237D01* X6554Y15233D01* X6547Y15228D01* X6541Y15221D01* X6536Y15214D01* X6533Y15206D01* X6531Y15197D01* X6530Y15189D01* X6531Y15180D01* X6534Y15172D01* X6538Y15164D01* X6543Y15157D01* X6549Y15151D01* X6557Y15146D01* X6589Y15131D01* X6623Y15118D01* X6658Y15109D01* X6667Y15107D01* Y13887D01* X6637Y13879D01* X6603Y13866D01* X6571Y13849D01* X6563Y13845D01* X6557Y13839D01* X6552Y13832D01* X6548Y13824D01* X6546Y13815D01* X6545Y13807D01* X6545Y13798D01* X6548Y13790D01* X6551Y13782D01* X6556Y13774D01* X6562Y13768D01* X6569Y13763D01* X6577Y13759D01* X6585Y13757D01* X6594Y13756D01* X6603Y13756D01* X6611Y13758D01* X6619Y13762D01* X6643Y13774D01* X6667Y13783D01* Y13216D01* X6648Y13223D01* X6624Y13235D01* X6616Y13238D01* X6607Y13240D01* X6598Y13240D01* X6590Y13239D01* X6581Y13237D01* X6574Y13233D01* X6567Y13228D01* X6561Y13221D01* X6556Y13214D01* X6553Y13206D01* X6551Y13197D01* X6550Y13189D01* X6551Y13180D01* X6554Y13172D01* X6558Y13164D01* X6563Y13157D01* X6569Y13151D01* X6577Y13146D01* X6609Y13131D01* X6643Y13118D01* X6667Y13112D01* Y11882D01* X6657Y11879D01* X6623Y11866D01* X6591Y11849D01* X6583Y11845D01* X6577Y11839D01* X6572Y11832D01* X6568Y11824D01* X6566Y11815D01* X6565Y11807D01* X6565Y11798D01* X6568Y11790D01* X6571Y11782D01* X6576Y11774D01* X6582Y11768D01* X6589Y11763D01* X6597Y11759D01* X6605Y11757D01* X6614Y11756D01* X6623Y11756D01* X6631Y11758D01* X6639Y11762D01* X6663Y11774D01* X6667Y11776D01* Y11223D01* X6644Y11235D01* X6636Y11238D01* X6627Y11240D01* X6618Y11240D01* X6610Y11239D01* X6601Y11237D01* X6594Y11233D01* X6587Y11228D01* X6581Y11221D01* X6576Y11214D01* X6573Y11206D01* X6571Y11197D01* X6570Y11189D01* X6571Y11180D01* X6574Y11172D01* X6578Y11164D01* X6583Y11157D01* X6589Y11151D01* X6597Y11146D01* X6629Y11131D01* X6663Y11118D01* X6667Y11117D01* Y9875D01* X6643Y9866D01* X6611Y9849D01* X6603Y9845D01* X6597Y9839D01* X6592Y9832D01* X6588Y9824D01* X6586Y9815D01* X6585Y9807D01* X6585Y9798D01* X6588Y9790D01* X6591Y9782D01* X6596Y9774D01* X6602Y9768D01* X6609Y9763D01* X6617Y9759D01* X6625Y9757D01* X6634Y9756D01* X6643Y9756D01* X6651Y9758D01* X6659Y9762D01* X6667Y9766D01* Y9233D01* X6664Y9235D01* X6656Y9238D01* X6647Y9240D01* X6638Y9240D01* X6630Y9239D01* X6621Y9237D01* X6614Y9233D01* X6607Y9228D01* X6601Y9221D01* X6596Y9214D01* X6593Y9206D01* X6591Y9197D01* X6590Y9189D01* X6591Y9180D01* X6594Y9172D01* X6598Y9164D01* X6603Y9157D01* X6609Y9151D01* X6617Y9146D01* X6649Y9131D01* X6667Y9124D01* Y7867D01* X6663Y7866D01* X6631Y7849D01* X6623Y7845D01* X6617Y7839D01* X6612Y7832D01* X6608Y7824D01* X6606Y7815D01* X6605Y7807D01* X6605Y7798D01* X6608Y7790D01* X6611Y7782D01* X6616Y7774D01* X6622Y7768D01* X6629Y7763D01* X6637Y7759D01* X6645Y7757D01* X6654Y7756D01* X6663Y7756D01* X6667Y7757D01* Y7240D01* X6667D01* X6658Y7240D01* X6650Y7239D01* X6641Y7237D01* X6634Y7233D01* X6627Y7228D01* X6621Y7221D01* X6616Y7214D01* X6613Y7206D01* X6611Y7197D01* X6610Y7189D01* X6611Y7180D01* X6614Y7172D01* X6618Y7164D01* X6623Y7157D01* X6629Y7151D01* X6637Y7146D01* X6667Y7132D01* Y5858D01* X6651Y5849D01* X6643Y5845D01* X6637Y5839D01* X6632Y5832D01* X6628Y5824D01* X6626Y5815D01* X6625Y5807D01* X6625Y5798D01* X6628Y5790D01* X6631Y5782D01* X6636Y5774D01* X6642Y5768D01* X6649Y5763D01* X6657Y5759D01* X6665Y5757D01* X6667Y5756D01* Y5239D01* X6661Y5237D01* X6654Y5233D01* X6647Y5228D01* X6641Y5221D01* X6636Y5214D01* X6633Y5206D01* X6631Y5197D01* X6630Y5189D01* X6631Y5180D01* X6634Y5172D01* X6638Y5164D01* X6643Y5157D01* X6649Y5151D01* X6657Y5146D01* X6667Y5141D01* Y3847D01* X6663Y3845D01* X6657Y3839D01* X6652Y3832D01* X6648Y3824D01* X6646Y3815D01* X6645Y3807D01* X6645Y3798D01* X6648Y3790D01* X6651Y3782D01* X6656Y3774D01* X6662Y3768D01* X6667Y3764D01* Y3228D01* X6667Y3228D01* X6661Y3221D01* X6656Y3214D01* X6653Y3206D01* X6651Y3197D01* X6650Y3189D01* X6651Y3180D01* X6654Y3172D01* X6658Y3164D01* X6663Y3157D01* X6667Y3153D01* Y1821D01* X6666Y1815D01* X6665Y1807D01* X6665Y1798D01* X6667Y1791D01* Y0D01* X6497D01* Y1403D01* X6505Y1372D01* X6519Y1338D01* X6535Y1306D01* X6539Y1299D01* X6545Y1292D01* X6553Y1287D01* X6560Y1283D01* X6569Y1281D01* X6577Y1280D01* X6586Y1281D01* X6595Y1283D01* X6603Y1286D01* X6610Y1291D01* X6616Y1297D01* X6621Y1304D01* X6625Y1312D01* X6627Y1320D01* X6628Y1329D01* X6628Y1338D01* X6626Y1346D01* X6622Y1354D01* X6610Y1378D01* X6600Y1404D01* X6593Y1430D01* X6588Y1456D01* X6585Y1483D01* X6585Y1511D01* X6587Y1538D01* X6592Y1564D01* X6599Y1590D01* X6608Y1616D01* X6620Y1640D01* X6623Y1649D01* X6625Y1657D01* X6625Y1666D01* X6624Y1674D01* X6622Y1683D01* X6618Y1690D01* X6613Y1697D01* X6606Y1703D01* X6599Y1708D01* X6591Y1711D01* X6582Y1713D01* X6574Y1714D01* X6565Y1713D01* X6557Y1710D01* X6549Y1706D01* X6542Y1701D01* X6536Y1695D01* X6531Y1687D01* X6516Y1655D01* X6503Y1621D01* X6497Y1596D01* Y3343D01* X6499Y3338D01* X6515Y3306D01* X6519Y3299D01* X6525Y3292D01* X6533Y3287D01* X6540Y3283D01* X6549Y3281D01* X6557Y3280D01* X6566Y3281D01* X6575Y3283D01* X6583Y3286D01* X6590Y3291D01* X6596Y3297D01* X6601Y3304D01* X6605Y3312D01* X6607Y3320D01* X6608Y3329D01* X6608Y3338D01* X6606Y3346D01* X6602Y3354D01* X6590Y3378D01* X6580Y3404D01* X6573Y3430D01* X6568Y3456D01* X6565Y3483D01* X6565Y3511D01* X6567Y3538D01* X6572Y3564D01* X6579Y3590D01* X6588Y3616D01* X6600Y3640D01* X6603Y3649D01* X6605Y3657D01* X6605Y3666D01* X6604Y3674D01* X6602Y3683D01* X6598Y3690D01* X6593Y3697D01* X6586Y3703D01* X6579Y3708D01* X6571Y3711D01* X6562Y3713D01* X6554Y3714D01* X6545Y3713D01* X6537Y3710D01* X6529Y3706D01* X6522Y3701D01* X6516Y3695D01* X6511Y3687D01* X6497Y3656D01* Y5303D01* X6499Y5299D01* X6505Y5292D01* X6513Y5287D01* X6520Y5283D01* X6529Y5281D01* X6537Y5280D01* X6546Y5281D01* X6555Y5283D01* X6563Y5286D01* X6570Y5291D01* X6576Y5297D01* X6581Y5304D01* X6585Y5312D01* X6587Y5320D01* X6588Y5329D01* X6588Y5338D01* X6586Y5346D01* X6582Y5354D01* X6570Y5378D01* X6560Y5404D01* X6553Y5430D01* X6548Y5456D01* X6545Y5483D01* X6545Y5511D01* X6547Y5538D01* X6552Y5564D01* X6559Y5590D01* X6568Y5616D01* X6580Y5640D01* X6583Y5649D01* X6585Y5657D01* X6585Y5666D01* X6584Y5674D01* X6582Y5683D01* X6578Y5690D01* X6573Y5697D01* X6566Y5703D01* X6559Y5708D01* X6551Y5711D01* X6542Y5713D01* X6534Y5714D01* X6525Y5713D01* X6517Y5710D01* X6509Y5706D01* X6502Y5701D01* X6497Y5695D01* Y7285D01* X6500Y7283D01* X6509Y7281D01* X6517Y7280D01* X6526Y7281D01* X6535Y7283D01* X6543Y7286D01* X6550Y7291D01* X6556Y7297D01* X6561Y7304D01* X6565Y7312D01* X6567Y7320D01* X6568Y7329D01* X6568Y7338D01* X6566Y7346D01* X6562Y7354D01* X6550Y7378D01* X6540Y7404D01* X6533Y7430D01* X6528Y7456D01* X6525Y7483D01* X6525Y7511D01* X6527Y7538D01* X6532Y7564D01* X6539Y7590D01* X6548Y7616D01* X6560Y7640D01* X6563Y7649D01* X6565Y7657D01* X6565Y7666D01* X6564Y7674D01* X6562Y7683D01* X6558Y7690D01* X6553Y7697D01* X6546Y7703D01* X6539Y7708D01* X6531Y7711D01* X6522Y7713D01* X6514Y7714D01* X6505Y7713D01* X6497Y7710D01* X6497Y7710D01* Y9280D01* X6497Y9280D01* X6506Y9281D01* X6515Y9283D01* X6523Y9286D01* X6530Y9291D01* X6536Y9297D01* X6541Y9304D01* X6545Y9312D01* X6547Y9320D01* X6548Y9329D01* X6548Y9338D01* X6546Y9346D01* X6542Y9354D01* X6530Y9378D01* X6520Y9404D01* X6513Y9430D01* X6508Y9456D01* X6505Y9483D01* X6505Y9511D01* X6507Y9538D01* X6512Y9564D01* X6519Y9590D01* X6528Y9616D01* X6540Y9640D01* X6543Y9649D01* X6545Y9657D01* X6545Y9666D01* X6544Y9674D01* X6542Y9683D01* X6538Y9690D01* X6533Y9697D01* X6526Y9703D01* X6519Y9708D01* X6511Y9711D01* X6502Y9713D01* X6497Y9714D01* Y11284D01* X6503Y11286D01* X6510Y11291D01* X6516Y11297D01* X6521Y11304D01* X6525Y11312D01* X6527Y11320D01* X6528Y11329D01* X6528Y11338D01* X6526Y11346D01* X6522Y11354D01* X6510Y11378D01* X6500Y11404D01* X6497Y11417D01* Y11583D01* X6499Y11590D01* X6508Y11616D01* X6520Y11640D01* X6523Y11649D01* X6525Y11657D01* X6525Y11666D01* X6524Y11674D01* X6522Y11683D01* X6518Y11690D01* X6513Y11697D01* X6506Y11703D01* X6499Y11708D01* X6497Y11709D01* Y13298D01* X6501Y13304D01* X6505Y13312D01* X6507Y13320D01* X6508Y13329D01* X6508Y13338D01* X6506Y13346D01* X6502Y13354D01* X6497Y13365D01* Y13634D01* X6500Y13640D01* X6503Y13649D01* X6505Y13657D01* X6505Y13666D01* X6504Y13674D01* X6502Y13683D01* X6498Y13690D01* X6497Y13692D01* Y19167D01* G37* G36* X6667Y40000D02*X6832D01* Y39714D01* X6829Y39716D01* X6820Y39718D01* X6812Y39719D01* X6803Y39719D01* X6794Y39717D01* X6786Y39713D01* X6779Y39708D01* X6773Y39702D01* X6768Y39695D01* X6764Y39687D01* X6762Y39679D01* X6761Y39670D01* X6761Y39661D01* X6763Y39653D01* X6767Y39645D01* X6779Y39621D01* X6789Y39595D01* X6796Y39569D01* X6801Y39543D01* X6804Y39516D01* X6804Y39489D01* X6802Y39462D01* X6797Y39435D01* X6790Y39409D01* X6781Y39383D01* X6769Y39359D01* X6766Y39351D01* X6764Y39342D01* X6764Y39333D01* X6765Y39325D01* X6767Y39317D01* X6771Y39309D01* X6776Y39302D01* X6783Y39296D01* X6790Y39291D01* X6798Y39288D01* X6807Y39286D01* X6815Y39285D01* X6824Y39286D01* X6832Y39289D01* X6832Y39289D01* Y37719D01* X6832Y37719D01* X6823Y37719D01* X6814Y37717D01* X6806Y37713D01* X6799Y37708D01* X6793Y37702D01* X6788Y37695D01* X6784Y37687D01* X6782Y37679D01* X6781Y37670D01* X6781Y37661D01* X6783Y37653D01* X6787Y37645D01* X6799Y37621D01* X6809Y37595D01* X6816Y37569D01* X6821Y37543D01* X6824Y37516D01* X6824Y37489D01* X6822Y37462D01* X6817Y37435D01* X6810Y37409D01* X6801Y37383D01* X6789Y37359D01* X6786Y37351D01* X6784Y37342D01* X6784Y37333D01* X6785Y37325D01* X6787Y37317D01* X6791Y37309D01* X6796Y37302D01* X6803Y37296D01* X6810Y37291D01* X6818Y37288D01* X6827Y37286D01* X6832Y37286D01* Y35716D01* X6826Y35713D01* X6819Y35708D01* X6813Y35702D01* X6808Y35695D01* X6804Y35687D01* X6802Y35679D01* X6801Y35670D01* X6801Y35661D01* X6803Y35653D01* X6807Y35645D01* X6819Y35621D01* X6829Y35595D01* X6832Y35583D01* Y35416D01* X6830Y35409D01* X6821Y35383D01* X6809Y35359D01* X6806Y35351D01* X6804Y35342D01* X6804Y35333D01* X6805Y35325D01* X6807Y35317D01* X6811Y35309D01* X6816Y35302D01* X6823Y35296D01* X6830Y35291D01* X6832Y35290D01* Y33701D01* X6828Y33695D01* X6824Y33687D01* X6822Y33679D01* X6821Y33670D01* X6821Y33661D01* X6823Y33653D01* X6827Y33645D01* X6832Y33634D01* Y33365D01* X6829Y33359D01* X6826Y33351D01* X6824Y33342D01* X6824Y33333D01* X6825Y33325D01* X6827Y33317D01* X6831Y33309D01* X6832Y33307D01* Y27833D01* X6831Y27835D01* X6826Y27842D01* X6820Y27848D01* X6812Y27853D01* X6780Y27868D01* X6746Y27881D01* X6711Y27890D01* X6675Y27896D01* X6667Y27897D01* Y29105D01* X6698Y29111D01* X6732Y29121D01* X6766Y29134D01* X6798Y29150D01* X6806Y29155D01* X6812Y29161D01* X6817Y29168D01* X6821Y29175D01* X6823Y29184D01* X6824Y29193D01* X6824Y29201D01* X6821Y29210D01* X6818Y29218D01* X6813Y29225D01* X6807Y29231D01* X6800Y29236D01* X6792Y29240D01* X6784Y29243D01* X6775Y29243D01* X6766Y29243D01* X6758Y29241D01* X6750Y29237D01* X6726Y29225D01* X6700Y29215D01* X6674Y29208D01* X6667Y29206D01* Y29793D01* X6669Y29793D01* X6695Y29785D01* X6721Y29776D01* X6745Y29764D01* X6753Y29761D01* X6762Y29759D01* X6771Y29759D01* X6779Y29760D01* X6788Y29762D01* X6795Y29766D01* X6802Y29772D01* X6808Y29778D01* X6813Y29785D01* X6816Y29793D01* X6818Y29802D01* X6819Y29810D01* X6818Y29819D01* X6815Y29827D01* X6811Y29835D01* X6806Y29842D01* X6800Y29848D01* X6792Y29853D01* X6760Y29868D01* X6726Y29881D01* X6691Y29890D01* X6667Y29894D01* Y31109D01* X6678Y31111D01* X6712Y31121D01* X6746Y31134D01* X6778Y31150D01* X6786Y31155D01* X6792Y31161D01* X6797Y31168D01* X6801Y31175D01* X6803Y31184D01* X6804Y31193D01* X6804Y31201D01* X6801Y31210D01* X6798Y31218D01* X6793Y31225D01* X6787Y31231D01* X6780Y31236D01* X6772Y31240D01* X6764Y31243D01* X6755Y31243D01* X6746Y31243D01* X6738Y31241D01* X6730Y31237D01* X6706Y31225D01* X6680Y31215D01* X6667Y31212D01* Y31788D01* X6675Y31785D01* X6701Y31776D01* X6725Y31764D01* X6733Y31761D01* X6742Y31759D01* X6751Y31759D01* X6759Y31760D01* X6768Y31762D01* X6775Y31766D01* X6782Y31772D01* X6788Y31778D01* X6793Y31785D01* X6796Y31793D01* X6798Y31802D01* X6799Y31810D01* X6798Y31819D01* X6795Y31827D01* X6791Y31835D01* X6786Y31842D01* X6780Y31848D01* X6772Y31853D01* X6740Y31868D01* X6706Y31881D01* X6671Y31890D01* X6667Y31891D01* Y33113D01* X6692Y33121D01* X6726Y33134D01* X6758Y33150D01* X6766Y33155D01* X6772Y33161D01* X6777Y33168D01* X6781Y33175D01* X6783Y33184D01* X6784Y33193D01* X6784Y33201D01* X6781Y33210D01* X6778Y33218D01* X6773Y33225D01* X6767Y33231D01* X6760Y33236D01* X6752Y33240D01* X6744Y33243D01* X6735Y33243D01* X6726Y33243D01* X6718Y33241D01* X6710Y33237D01* X6686Y33225D01* X6667Y33218D01* Y33781D01* X6681Y33776D01* X6705Y33764D01* X6713Y33761D01* X6722Y33759D01* X6731Y33759D01* X6739Y33760D01* X6748Y33762D01* X6755Y33766D01* X6762Y33772D01* X6768Y33778D01* X6773Y33785D01* X6776Y33793D01* X6778Y33802D01* X6779Y33810D01* X6778Y33819D01* X6775Y33827D01* X6771Y33835D01* X6766Y33842D01* X6760Y33848D01* X6752Y33853D01* X6720Y33868D01* X6686Y33881D01* X6667Y33886D01* Y35119D01* X6672Y35121D01* X6706Y35134D01* X6738Y35150D01* X6746Y35155D01* X6752Y35161D01* X6757Y35168D01* X6761Y35175D01* X6763Y35184D01* X6764Y35193D01* X6764Y35201D01* X6761Y35210D01* X6758Y35218D01* X6753Y35225D01* X6747Y35231D01* X6740Y35236D01* X6732Y35240D01* X6724Y35243D01* X6715Y35243D01* X6706Y35243D01* X6698Y35241D01* X6690Y35237D01* X6667Y35226D01* Y35773D01* X6685Y35764D01* X6693Y35761D01* X6702Y35759D01* X6711Y35759D01* X6719Y35760D01* X6728Y35762D01* X6735Y35766D01* X6742Y35772D01* X6748Y35778D01* X6753Y35785D01* X6756Y35793D01* X6758Y35802D01* X6759Y35810D01* X6758Y35819D01* X6755Y35827D01* X6751Y35835D01* X6746Y35842D01* X6740Y35848D01* X6732Y35853D01* X6700Y35868D01* X6667Y35880D01* Y37126D01* X6686Y37134D01* X6718Y37150D01* X6726Y37155D01* X6732Y37161D01* X6737Y37168D01* X6741Y37175D01* X6743Y37184D01* X6744Y37193D01* X6744Y37201D01* X6741Y37210D01* X6738Y37218D01* X6733Y37225D01* X6727Y37231D01* X6720Y37236D01* X6712Y37240D01* X6704Y37243D01* X6695Y37243D01* X6686Y37243D01* X6678Y37241D01* X6670Y37237D01* X6667Y37236D01* Y37764D01* X6673Y37761D01* X6682Y37759D01* X6691Y37759D01* X6699Y37760D01* X6708Y37762D01* X6715Y37766D01* X6722Y37772D01* X6728Y37778D01* X6733Y37785D01* X6736Y37793D01* X6738Y37802D01* X6739Y37810D01* X6738Y37819D01* X6735Y37827D01* X6731Y37835D01* X6726Y37842D01* X6720Y37848D01* X6712Y37853D01* X6680Y37868D01* X6667Y37873D01* Y39134D01* X6698Y39150D01* X6706Y39155D01* X6712Y39161D01* X6717Y39168D01* X6721Y39175D01* X6723Y39184D01* X6724Y39193D01* X6724Y39201D01* X6721Y39210D01* X6718Y39218D01* X6713Y39225D01* X6707Y39231D01* X6700Y39236D01* X6692Y39240D01* X6684Y39243D01* X6675Y39243D01* X6667Y39243D01* Y39759D01* X6671Y39759D01* X6679Y39760D01* X6688Y39762D01* X6695Y39766D01* X6702Y39772D01* X6708Y39778D01* X6713Y39785D01* X6716Y39793D01* X6718Y39802D01* X6719Y39810D01* X6718Y39819D01* X6715Y39827D01* X6711Y39835D01* X6706Y39842D01* X6700Y39848D01* X6692Y39853D01* X6667Y39865D01* Y40000D01* G37* G36* X6832Y19878D02*X6826Y19881D01* X6791Y19890D01* X6755Y19896D01* X6719Y19899D01* X6683Y19899D01* X6667Y19897D01* Y21100D01* X6670Y21100D01* X6706Y21100D01* X6742Y21104D01* X6778Y21111D01* X6812Y21121D01* X6832Y21128D01* Y19878D01* G37* G36* Y21238D02*X6830Y21237D01* X6806Y21225D01* X6780Y21215D01* X6754Y21208D01* X6728Y21203D01* X6701Y21200D01* X6674Y21200D01* X6667Y21200D01* Y21799D01* X6668Y21799D01* X6695Y21799D01* X6722Y21797D01* X6749Y21793D01* X6775Y21785D01* X6801Y21776D01* X6825Y21764D01* X6832Y21762D01* Y21238D01* G37* G36* Y21871D02*X6806Y21881D01* X6771Y21890D01* X6735Y21896D01* X6699Y21899D01* X6667Y21899D01* Y23100D01* X6686Y23100D01* X6722Y23104D01* X6758Y23111D01* X6792Y23121D01* X6826Y23134D01* X6832Y23137D01* Y21871D01* G37* G36* Y23243D02*X6826Y23243D01* X6818Y23241D01* X6810Y23237D01* X6786Y23225D01* X6760Y23215D01* X6734Y23208D01* X6708Y23203D01* X6681Y23200D01* X6667Y23200D01* Y23799D01* X6675Y23799D01* X6702Y23797D01* X6729Y23793D01* X6755Y23785D01* X6781Y23776D01* X6805Y23764D01* X6813Y23761D01* X6822Y23759D01* X6831Y23759D01* X6832Y23759D01* Y23243D01* G37* G36* Y23862D02*X6820Y23868D01* X6786Y23881D01* X6751Y23890D01* X6715Y23896D01* X6679Y23899D01* X6667Y23899D01* Y25100D01* X6702Y25104D01* X6738Y25111D01* X6772Y25121D01* X6806Y25134D01* X6832Y25147D01* Y23862D01* G37* G36* Y25240D02*X6832Y25240D01* X6824Y25243D01* X6815Y25243D01* X6806Y25243D01* X6798Y25241D01* X6790Y25237D01* X6766Y25225D01* X6740Y25215D01* X6714Y25208D01* X6688Y25203D01* X6667Y25201D01* Y25798D01* X6682Y25797D01* X6709Y25793D01* X6735Y25785D01* X6761Y25776D01* X6785Y25764D01* X6793Y25761D01* X6802Y25759D01* X6811Y25759D01* X6819Y25760D01* X6828Y25762D01* X6832Y25765D01* Y25240D01* G37* G36* Y25853D02*X6832Y25853D01* X6800Y25868D01* X6766Y25881D01* X6731Y25890D01* X6695Y25896D01* X6667Y25899D01* Y27102D01* X6682Y27104D01* X6718Y27111D01* X6752Y27121D01* X6786Y27134D01* X6818Y27150D01* X6826Y27155D01* X6832Y27161D01* X6832Y27161D01* Y25853D01* G37* G36* Y27225D02*X6827Y27231D01* X6820Y27236D01* X6812Y27240D01* X6804Y27243D01* X6795Y27243D01* X6786Y27243D01* X6778Y27241D01* X6770Y27237D01* X6746Y27225D01* X6720Y27215D01* X6694Y27208D01* X6668Y27203D01* X6667D01* Y27796D01* X6689Y27793D01* X6715Y27785D01* X6741Y27776D01* X6765Y27764D01* X6773Y27761D01* X6782Y27759D01* X6791Y27759D01* X6799Y27760D01* X6808Y27762D01* X6815Y27766D01* X6822Y27772D01* X6828Y27778D01* X6832Y27784D01* Y27225D01* G37* G36* Y40000D02*X6912D01* Y37596D01* X6904Y37627D01* X6890Y37661D01* X6874Y37694D01* X6870Y37701D01* X6864Y37707D01* X6856Y37712D01* X6849Y37716D01* X6840Y37718D01* X6832Y37719D01* Y39289D01* X6840Y39293D01* X6847Y39298D01* X6853Y39305D01* X6858Y39312D01* X6873Y39344D01* X6886Y39378D01* X6895Y39413D01* X6901Y39449D01* X6904Y39485D01* X6904Y39521D01* X6900Y39557D01* X6894Y39593D01* X6884Y39627D01* X6870Y39661D01* X6854Y39694D01* X6850Y39701D01* X6844Y39707D01* X6836Y39712D01* X6832Y39714D01* Y40000D01* G37* G36* Y37286D02*X6835Y37285D01* X6844Y37286D01* X6852Y37289D01* X6860Y37293D01* X6867Y37298D01* X6873Y37305D01* X6878Y37312D01* X6893Y37344D01* X6906Y37378D01* X6912Y37404D01* Y35656D01* X6910Y35661D01* X6894Y35694D01* X6890Y35701D01* X6884Y35707D01* X6876Y35712D01* X6869Y35716D01* X6860Y35718D01* X6852Y35719D01* X6843Y35719D01* X6834Y35717D01* X6832Y35716D01* Y37286D01* G37* G36* Y35583D02*X6836Y35569D01* X6841Y35543D01* X6844Y35516D01* X6844Y35489D01* X6842Y35462D01* X6837Y35435D01* X6832Y35416D01* Y35583D01* G37* G36* Y35290D02*X6838Y35288D01* X6847Y35286D01* X6855Y35285D01* X6864Y35286D01* X6872Y35289D01* X6880Y35293D01* X6887Y35298D01* X6893Y35305D01* X6898Y35312D01* X6912Y35343D01* Y33696D01* X6910Y33701D01* X6904Y33707D01* X6896Y33712D01* X6889Y33716D01* X6880Y33718D01* X6872Y33719D01* X6863Y33719D01* X6854Y33717D01* X6846Y33713D01* X6839Y33708D01* X6833Y33702D01* X6832Y33701D01* Y35290D01* G37* G36* Y33634D02*X6839Y33621D01* X6849Y33595D01* X6856Y33569D01* X6861Y33543D01* X6864Y33516D01* X6864Y33489D01* X6862Y33462D01* X6857Y33435D01* X6850Y33409D01* X6841Y33383D01* X6832Y33365D01* Y33634D01* G37* G36* Y33307D02*X6836Y33302D01* X6843Y33296D01* X6850Y33291D01* X6858Y33288D01* X6867Y33286D01* X6875Y33285D01* X6884Y33286D01* X6892Y33289D01* X6900Y33293D01* X6907Y33298D01* X6912Y33304D01* Y31714D01* X6909Y31716D01* X6900Y31718D01* X6892Y31719D01* X6883Y31719D01* X6874Y31717D01* X6866Y31713D01* X6859Y31708D01* X6853Y31702D01* X6848Y31695D01* X6844Y31687D01* X6842Y31679D01* X6841Y31670D01* X6841Y31661D01* X6843Y31653D01* X6847Y31645D01* X6859Y31621D01* X6869Y31595D01* X6876Y31569D01* X6881Y31543D01* X6884Y31516D01* X6884Y31489D01* X6882Y31462D01* X6877Y31435D01* X6870Y31409D01* X6861Y31383D01* X6849Y31359D01* X6846Y31351D01* X6844Y31342D01* X6844Y31333D01* X6845Y31325D01* X6847Y31317D01* X6851Y31309D01* X6856Y31302D01* X6863Y31296D01* X6870Y31291D01* X6878Y31288D01* X6887Y31286D01* X6895Y31285D01* X6904Y31286D01* X6912Y31289D01* X6912Y31289D01* Y29719D01* X6912Y29719D01* X6903Y29719D01* X6894Y29717D01* X6886Y29713D01* X6879Y29708D01* X6873Y29702D01* X6868Y29695D01* X6864Y29687D01* X6862Y29679D01* X6861Y29670D01* X6861Y29661D01* X6863Y29653D01* X6867Y29645D01* X6879Y29621D01* X6889Y29595D01* X6896Y29569D01* X6901Y29543D01* X6904Y29516D01* X6904Y29489D01* X6902Y29462D01* X6897Y29435D01* X6890Y29409D01* X6881Y29383D01* X6869Y29359D01* X6866Y29351D01* X6864Y29342D01* X6864Y29333D01* X6865Y29325D01* X6867Y29317D01* X6871Y29309D01* X6876Y29302D01* X6883Y29296D01* X6890Y29291D01* X6898Y29288D01* X6907Y29286D01* X6912Y29286D01* Y27716D01* X6906Y27713D01* X6899Y27708D01* X6893Y27702D01* X6888Y27695D01* X6884Y27687D01* X6882Y27679D01* X6881Y27670D01* X6881Y27661D01* X6883Y27653D01* X6887Y27645D01* X6899Y27621D01* X6909Y27595D01* X6912Y27583D01* Y27416D01* X6910Y27409D01* X6901Y27383D01* X6889Y27359D01* X6886Y27351D01* X6884Y27342D01* X6884Y27333D01* X6885Y27325D01* X6887Y27317D01* X6891Y27309D01* X6896Y27302D01* X6903Y27296D01* X6910Y27291D01* X6912Y27290D01* Y25701D01* X6908Y25695D01* X6904Y25687D01* X6902Y25679D01* X6901Y25670D01* X6901Y25661D01* X6903Y25653D01* X6907Y25645D01* X6912Y25634D01* Y25365D01* X6909Y25359D01* X6906Y25351D01* X6904Y25342D01* X6904Y25333D01* X6905Y25325D01* X6907Y25317D01* X6911Y25309D01* X6912Y25307D01* Y19833D01* X6911Y19835D01* X6906Y19842D01* X6900Y19848D01* X6892Y19853D01* X6860Y19868D01* X6832Y19878D01* Y21128D01* X6846Y21134D01* X6878Y21150D01* X6886Y21155D01* X6892Y21161D01* X6897Y21168D01* X6901Y21175D01* X6903Y21184D01* X6904Y21193D01* X6904Y21201D01* X6901Y21210D01* X6898Y21218D01* X6893Y21225D01* X6887Y21231D01* X6880Y21236D01* X6872Y21240D01* X6864Y21243D01* X6855Y21243D01* X6846Y21243D01* X6838Y21241D01* X6832Y21238D01* Y21762D01* X6833Y21761D01* X6842Y21759D01* X6851Y21759D01* X6859Y21760D01* X6868Y21762D01* X6875Y21766D01* X6882Y21772D01* X6888Y21778D01* X6893Y21785D01* X6896Y21793D01* X6898Y21802D01* X6899Y21810D01* X6898Y21819D01* X6895Y21827D01* X6891Y21835D01* X6886Y21842D01* X6880Y21848D01* X6872Y21853D01* X6840Y21868D01* X6832Y21871D01* Y23137D01* X6858Y23150D01* X6866Y23155D01* X6872Y23161D01* X6877Y23168D01* X6881Y23175D01* X6883Y23184D01* X6884Y23193D01* X6884Y23201D01* X6881Y23210D01* X6878Y23218D01* X6873Y23225D01* X6867Y23231D01* X6860Y23236D01* X6852Y23240D01* X6844Y23243D01* X6835Y23243D01* X6832Y23243D01* Y23759D01* X6839Y23760D01* X6848Y23762D01* X6855Y23766D01* X6862Y23772D01* X6868Y23778D01* X6873Y23785D01* X6876Y23793D01* X6878Y23802D01* X6879Y23810D01* X6878Y23819D01* X6875Y23827D01* X6871Y23835D01* X6866Y23842D01* X6860Y23848D01* X6852Y23853D01* X6832Y23862D01* Y25147D01* X6838Y25150D01* X6846Y25155D01* X6852Y25161D01* X6857Y25168D01* X6861Y25175D01* X6863Y25184D01* X6864Y25193D01* X6864Y25201D01* X6861Y25210D01* X6858Y25218D01* X6853Y25225D01* X6847Y25231D01* X6840Y25236D01* X6832Y25240D01* Y25765D01* X6835Y25766D01* X6842Y25772D01* X6848Y25778D01* X6853Y25785D01* X6856Y25793D01* X6858Y25802D01* X6859Y25810D01* X6858Y25819D01* X6855Y25827D01* X6851Y25835D01* X6846Y25842D01* X6840Y25848D01* X6832Y25853D01* Y27161D01* X6837Y27168D01* X6841Y27175D01* X6843Y27184D01* X6844Y27193D01* X6844Y27201D01* X6841Y27210D01* X6838Y27218D01* X6833Y27225D01* X6832Y27225D01* Y27784D01* X6833Y27785D01* X6836Y27793D01* X6838Y27802D01* X6839Y27810D01* X6838Y27819D01* X6835Y27827D01* X6832Y27833D01* Y33307D01* G37* G36* X6912Y11878D02*X6906Y11881D01* X6871Y11890D01* X6835Y11896D01* X6799Y11899D01* X6763Y11899D01* X6727Y11895D01* X6691Y11889D01* X6667Y11882D01* Y13112D01* X6678Y13109D01* X6714Y13103D01* X6750Y13100D01* X6786Y13100D01* X6822Y13104D01* X6858Y13111D01* X6892Y13121D01* X6912Y13128D01* Y11878D01* G37* G36* Y13238D02*X6910Y13237D01* X6886Y13225D01* X6860Y13215D01* X6834Y13208D01* X6808Y13203D01* X6781Y13200D01* X6754Y13200D01* X6727Y13202D01* X6700Y13207D01* X6674Y13214D01* X6667Y13216D01* Y13783D01* X6669Y13784D01* X6695Y13791D01* X6721Y13796D01* X6748Y13799D01* X6775Y13799D01* X6802Y13797D01* X6829Y13793D01* X6855Y13785D01* X6881Y13776D01* X6905Y13764D01* X6912Y13762D01* Y13238D01* G37* G36* Y13871D02*X6886Y13881D01* X6851Y13890D01* X6815Y13896D01* X6779Y13899D01* X6743Y13899D01* X6707Y13895D01* X6671Y13889D01* X6667Y13887D01* Y15107D01* X6694Y15103D01* X6730Y15100D01* X6766Y15100D01* X6802Y15104D01* X6838Y15111D01* X6872Y15121D01* X6906Y15134D01* X6912Y15137D01* Y13871D01* G37* G36* Y15243D02*X6906Y15243D01* X6898Y15241D01* X6890Y15237D01* X6866Y15225D01* X6840Y15215D01* X6814Y15208D01* X6788Y15203D01* X6761Y15200D01* X6734Y15200D01* X6707Y15202D01* X6680Y15207D01* X6667Y15210D01* Y15789D01* X6675Y15791D01* X6701Y15796D01* X6728Y15799D01* X6755Y15799D01* X6782Y15797D01* X6809Y15793D01* X6835Y15785D01* X6861Y15776D01* X6885Y15764D01* X6893Y15761D01* X6902Y15759D01* X6911Y15759D01* X6912Y15759D01* Y15243D01* G37* G36* Y15862D02*X6900Y15868D01* X6866Y15881D01* X6831Y15890D01* X6795Y15896D01* X6759Y15899D01* X6723Y15899D01* X6687Y15895D01* X6667Y15892D01* Y17104D01* X6674Y17103D01* X6710Y17100D01* X6746Y17100D01* X6782Y17104D01* X6818Y17111D01* X6852Y17121D01* X6886Y17134D01* X6912Y17147D01* Y15862D01* G37* G36* Y17240D02*X6912Y17240D01* X6904Y17243D01* X6895Y17243D01* X6886Y17243D01* X6878Y17241D01* X6870Y17237D01* X6846Y17225D01* X6820Y17215D01* X6794Y17208D01* X6768Y17203D01* X6741Y17200D01* X6714Y17200D01* X6687Y17202D01* X6667Y17205D01* Y17794D01* X6681Y17796D01* X6708Y17799D01* X6735Y17799D01* X6762Y17797D01* X6789Y17793D01* X6815Y17785D01* X6841Y17776D01* X6865Y17764D01* X6873Y17761D01* X6882Y17759D01* X6891Y17759D01* X6899Y17760D01* X6908Y17762D01* X6912Y17765D01* Y17240D01* G37* G36* Y17853D02*X6912Y17853D01* X6880Y17868D01* X6846Y17881D01* X6811Y17890D01* X6775Y17896D01* X6739Y17899D01* X6703Y17899D01* X6667Y17895D01* Y19102D01* X6690Y19100D01* X6726Y19100D01* X6762Y19104D01* X6798Y19111D01* X6832Y19121D01* X6866Y19134D01* X6898Y19150D01* X6906Y19155D01* X6912Y19161D01* X6912Y19161D01* Y17853D01* G37* G36* Y19225D02*X6907Y19231D01* X6900Y19236D01* X6892Y19240D01* X6884Y19243D01* X6875Y19243D01* X6866Y19243D01* X6858Y19241D01* X6850Y19237D01* X6826Y19225D01* X6800Y19215D01* X6774Y19208D01* X6748Y19203D01* X6721Y19200D01* X6694Y19200D01* X6667Y19202D01* Y19797D01* X6688Y19799D01* X6715Y19799D01* X6742Y19797D01* X6769Y19793D01* X6795Y19785D01* X6821Y19776D01* X6845Y19764D01* X6853Y19761D01* X6862Y19759D01* X6871Y19759D01* X6879Y19760D01* X6888Y19762D01* X6895Y19766D01* X6902Y19772D01* X6908Y19778D01* X6912Y19784D01* Y19225D01* G37* G36* Y40000D02*X6992D01* Y29596D01* X6984Y29627D01* X6970Y29661D01* X6954Y29694D01* X6950Y29701D01* X6944Y29707D01* X6936Y29712D01* X6929Y29716D01* X6920Y29718D01* X6912Y29719D01* Y31289D01* X6920Y31293D01* X6927Y31298D01* X6933Y31305D01* X6938Y31312D01* X6953Y31344D01* X6966Y31378D01* X6975Y31413D01* X6981Y31449D01* X6984Y31485D01* X6984Y31521D01* X6980Y31557D01* X6974Y31593D01* X6964Y31627D01* X6950Y31661D01* X6934Y31694D01* X6930Y31701D01* X6924Y31707D01* X6916Y31712D01* X6912Y31714D01* Y33304D01* X6913Y33305D01* X6918Y33312D01* X6933Y33344D01* X6946Y33378D01* X6955Y33413D01* X6961Y33449D01* X6964Y33485D01* X6964Y33521D01* X6960Y33557D01* X6954Y33593D01* X6944Y33627D01* X6930Y33661D01* X6914Y33694D01* X6912Y33696D01* Y35343D01* X6913Y35344D01* X6926Y35378D01* X6935Y35413D01* X6941Y35449D01* X6944Y35485D01* X6944Y35521D01* X6940Y35557D01* X6934Y35593D01* X6924Y35627D01* X6912Y35656D01* Y37404D01* X6915Y37413D01* X6921Y37449D01* X6924Y37485D01* X6924Y37521D01* X6920Y37557D01* X6914Y37593D01* X6912Y37596D01* Y40000D01* G37* G36* Y29286D02*X6915Y29285D01* X6924Y29286D01* X6932Y29289D01* X6940Y29293D01* X6947Y29298D01* X6953Y29305D01* X6958Y29312D01* X6973Y29344D01* X6986Y29378D01* X6992Y29404D01* Y27656D01* X6990Y27661D01* X6974Y27694D01* X6970Y27701D01* X6964Y27707D01* X6956Y27712D01* X6949Y27716D01* X6940Y27718D01* X6932Y27719D01* X6923Y27719D01* X6914Y27717D01* X6912Y27716D01* Y29286D01* G37* G36* Y27583D02*X6916Y27569D01* X6921Y27543D01* X6924Y27516D01* X6924Y27489D01* X6922Y27462D01* X6917Y27435D01* X6912Y27416D01* Y27583D01* G37* G36* Y27290D02*X6918Y27288D01* X6927Y27286D01* X6935Y27285D01* X6944Y27286D01* X6952Y27289D01* X6960Y27293D01* X6967Y27298D01* X6973Y27305D01* X6978Y27312D01* X6992Y27343D01* Y25696D01* X6990Y25701D01* X6984Y25707D01* X6976Y25712D01* X6969Y25716D01* X6960Y25718D01* X6952Y25719D01* X6943Y25719D01* X6934Y25717D01* X6926Y25713D01* X6919Y25708D01* X6913Y25702D01* X6912Y25701D01* Y27290D01* G37* G36* Y25634D02*X6919Y25621D01* X6929Y25595D01* X6936Y25569D01* X6941Y25543D01* X6944Y25516D01* X6944Y25489D01* X6942Y25462D01* X6937Y25435D01* X6930Y25409D01* X6921Y25383D01* X6912Y25365D01* Y25634D01* G37* G36* Y25307D02*X6916Y25302D01* X6923Y25296D01* X6930Y25291D01* X6938Y25288D01* X6947Y25286D01* X6955Y25285D01* X6964Y25286D01* X6972Y25289D01* X6980Y25293D01* X6987Y25298D01* X6992Y25304D01* Y23714D01* X6989Y23716D01* X6980Y23718D01* X6972Y23719D01* X6963Y23719D01* X6954Y23717D01* X6946Y23713D01* X6939Y23708D01* X6933Y23702D01* X6928Y23695D01* X6924Y23687D01* X6922Y23679D01* X6921Y23670D01* X6921Y23661D01* X6923Y23653D01* X6927Y23645D01* X6939Y23621D01* X6949Y23595D01* X6956Y23569D01* X6961Y23543D01* X6964Y23516D01* X6964Y23489D01* X6962Y23462D01* X6957Y23435D01* X6950Y23409D01* X6941Y23383D01* X6929Y23359D01* X6926Y23351D01* X6924Y23342D01* X6924Y23333D01* X6925Y23325D01* X6927Y23317D01* X6931Y23309D01* X6936Y23302D01* X6943Y23296D01* X6950Y23291D01* X6958Y23288D01* X6967Y23286D01* X6975Y23285D01* X6984Y23286D01* X6992Y23289D01* X6992Y23289D01* Y21719D01* X6992Y21719D01* X6983Y21719D01* X6974Y21717D01* X6966Y21713D01* X6959Y21708D01* X6953Y21702D01* X6948Y21695D01* X6944Y21687D01* X6942Y21679D01* X6941Y21670D01* X6941Y21661D01* X6943Y21653D01* X6947Y21645D01* X6959Y21621D01* X6969Y21595D01* X6976Y21569D01* X6981Y21543D01* X6984Y21516D01* X6984Y21489D01* X6982Y21462D01* X6977Y21435D01* X6970Y21409D01* X6961Y21383D01* X6949Y21359D01* X6946Y21351D01* X6944Y21342D01* X6944Y21333D01* X6945Y21325D01* X6947Y21317D01* X6951Y21309D01* X6956Y21302D01* X6963Y21296D01* X6970Y21291D01* X6978Y21288D01* X6987Y21286D01* X6992Y21286D01* Y19716D01* X6986Y19713D01* X6979Y19708D01* X6973Y19702D01* X6968Y19695D01* X6964Y19687D01* X6962Y19679D01* X6961Y19670D01* X6961Y19661D01* X6963Y19653D01* X6967Y19645D01* X6979Y19621D01* X6989Y19595D01* X6992Y19583D01* Y19416D01* X6990Y19409D01* X6981Y19383D01* X6969Y19359D01* X6966Y19351D01* X6964Y19342D01* X6964Y19333D01* X6965Y19325D01* X6967Y19317D01* X6971Y19309D01* X6976Y19302D01* X6983Y19296D01* X6990Y19291D01* X6992Y19290D01* Y17701D01* X6988Y17695D01* X6984Y17687D01* X6982Y17679D01* X6981Y17670D01* X6981Y17661D01* X6983Y17653D01* X6987Y17645D01* X6992Y17634D01* Y17365D01* X6989Y17359D01* X6986Y17351D01* X6984Y17342D01* X6984Y17333D01* X6985Y17325D01* X6987Y17317D01* X6991Y17309D01* X6992Y17307D01* Y11833D01* X6991Y11835D01* X6986Y11842D01* X6980Y11848D01* X6972Y11853D01* X6940Y11868D01* X6912Y11878D01* Y13128D01* X6926Y13134D01* X6958Y13150D01* X6966Y13155D01* X6972Y13161D01* X6977Y13168D01* X6981Y13175D01* X6983Y13184D01* X6984Y13193D01* X6984Y13201D01* X6981Y13210D01* X6978Y13218D01* X6973Y13225D01* X6967Y13231D01* X6960Y13236D01* X6952Y13240D01* X6944Y13243D01* X6935Y13243D01* X6926Y13243D01* X6918Y13241D01* X6912Y13238D01* Y13762D01* X6913Y13761D01* X6922Y13759D01* X6931Y13759D01* X6939Y13760D01* X6948Y13762D01* X6955Y13766D01* X6962Y13772D01* X6968Y13778D01* X6973Y13785D01* X6976Y13793D01* X6978Y13802D01* X6979Y13810D01* X6978Y13819D01* X6975Y13827D01* X6971Y13835D01* X6966Y13842D01* X6960Y13848D01* X6952Y13853D01* X6920Y13868D01* X6912Y13871D01* Y15137D01* X6938Y15150D01* X6946Y15155D01* X6952Y15161D01* X6957Y15168D01* X6961Y15175D01* X6963Y15184D01* X6964Y15193D01* X6964Y15201D01* X6961Y15210D01* X6958Y15218D01* X6953Y15225D01* X6947Y15231D01* X6940Y15236D01* X6932Y15240D01* X6924Y15243D01* X6915Y15243D01* X6912Y15243D01* Y15759D01* X6919Y15760D01* X6928Y15762D01* X6935Y15766D01* X6942Y15772D01* X6948Y15778D01* X6953Y15785D01* X6956Y15793D01* X6958Y15802D01* X6959Y15810D01* X6958Y15819D01* X6955Y15827D01* X6951Y15835D01* X6946Y15842D01* X6940Y15848D01* X6932Y15853D01* X6912Y15862D01* Y17147D01* X6918Y17150D01* X6926Y17155D01* X6932Y17161D01* X6937Y17168D01* X6941Y17175D01* X6943Y17184D01* X6944Y17193D01* X6944Y17201D01* X6941Y17210D01* X6938Y17218D01* X6933Y17225D01* X6927Y17231D01* X6920Y17236D01* X6912Y17240D01* Y17765D01* X6915Y17766D01* X6922Y17772D01* X6928Y17778D01* X6933Y17785D01* X6936Y17793D01* X6938Y17802D01* X6939Y17810D01* X6938Y17819D01* X6935Y17827D01* X6931Y17835D01* X6926Y17842D01* X6920Y17848D01* X6912Y17853D01* Y19161D01* X6917Y19168D01* X6921Y19175D01* X6923Y19184D01* X6924Y19193D01* X6924Y19201D01* X6921Y19210D01* X6918Y19218D01* X6913Y19225D01* X6912Y19225D01* Y19784D01* X6913Y19785D01* X6916Y19793D01* X6918Y19802D01* X6919Y19810D01* X6918Y19819D01* X6915Y19827D01* X6912Y19833D01* Y25307D01* G37* G36* X6992Y0D02*X6667D01* Y1791D01* X6668Y1790D01* X6671Y1782D01* X6676Y1774D01* X6682Y1768D01* X6689Y1763D01* X6697Y1759D01* X6705Y1757D01* X6714Y1756D01* X6723Y1756D01* X6731Y1758D01* X6739Y1762D01* X6763Y1774D01* X6789Y1784D01* X6815Y1791D01* X6841Y1796D01* X6868Y1799D01* X6895Y1799D01* X6922Y1797D01* X6949Y1793D01* X6975Y1785D01* X6992Y1779D01* Y1220D01* X6980Y1215D01* X6954Y1208D01* X6928Y1203D01* X6901Y1200D01* X6874Y1200D01* X6847Y1202D01* X6820Y1207D01* X6794Y1214D01* X6768Y1223D01* X6744Y1235D01* X6736Y1238D01* X6727Y1240D01* X6718Y1240D01* X6710Y1239D01* X6701Y1237D01* X6694Y1233D01* X6687Y1228D01* X6681Y1221D01* X6676Y1214D01* X6673Y1206D01* X6671Y1197D01* X6670Y1189D01* X6671Y1180D01* X6674Y1172D01* X6678Y1164D01* X6683Y1157D01* X6689Y1151D01* X6697Y1146D01* X6729Y1131D01* X6763Y1118D01* X6798Y1109D01* X6834Y1103D01* X6870Y1100D01* X6906Y1100D01* X6942Y1104D01* X6978Y1111D01* X6992Y1115D01* Y0D01* G37* G36* Y1884D02*X6971Y1890D01* X6935Y1896D01* X6899Y1899D01* X6863Y1899D01* X6827Y1895D01* X6791Y1889D01* X6757Y1879D01* X6723Y1866D01* X6691Y1849D01* X6683Y1845D01* X6677Y1839D01* X6672Y1832D01* X6668Y1824D01* X6667Y1821D01* Y3153D01* X6669Y3151D01* X6677Y3146D01* X6709Y3131D01* X6743Y3118D01* X6778Y3109D01* X6814Y3103D01* X6850Y3100D01* X6886Y3100D01* X6922Y3104D01* X6958Y3111D01* X6992Y3121D01* X6992D01* Y1884D01* G37* G36* Y3229D02*X6986Y3225D01* X6960Y3215D01* X6934Y3208D01* X6908Y3203D01* X6881Y3200D01* X6854Y3200D01* X6827Y3202D01* X6800Y3207D01* X6774Y3214D01* X6748Y3223D01* X6724Y3235D01* X6716Y3238D01* X6707Y3240D01* X6698Y3240D01* X6690Y3239D01* X6681Y3237D01* X6674Y3233D01* X6667Y3228D01* Y3764D01* X6669Y3763D01* X6677Y3759D01* X6685Y3757D01* X6694Y3756D01* X6703Y3756D01* X6711Y3758D01* X6719Y3762D01* X6743Y3774D01* X6769Y3784D01* X6795Y3791D01* X6821Y3796D01* X6848Y3799D01* X6875Y3799D01* X6902Y3797D01* X6929Y3793D01* X6955Y3785D01* X6981Y3776D01* X6992Y3771D01* Y3229D01* G37* G36* Y3878D02*X6986Y3881D01* X6951Y3890D01* X6915Y3896D01* X6879Y3899D01* X6843Y3899D01* X6807Y3895D01* X6771Y3889D01* X6737Y3879D01* X6703Y3866D01* X6671Y3849D01* X6667Y3847D01* Y5141D01* X6689Y5131D01* X6723Y5118D01* X6758Y5109D01* X6794Y5103D01* X6830Y5100D01* X6866Y5100D01* X6902Y5104D01* X6938Y5111D01* X6972Y5121D01* X6992Y5128D01* Y3878D01* G37* G36* Y5238D02*X6990Y5237D01* X6966Y5225D01* X6940Y5215D01* X6914Y5208D01* X6888Y5203D01* X6861Y5200D01* X6834Y5200D01* X6807Y5202D01* X6780Y5207D01* X6754Y5214D01* X6728Y5223D01* X6704Y5235D01* X6696Y5238D01* X6687Y5240D01* X6678Y5240D01* X6670Y5239D01* X6667Y5239D01* Y5756D01* X6674Y5756D01* X6683Y5756D01* X6691Y5758D01* X6699Y5762D01* X6723Y5774D01* X6749Y5784D01* X6775Y5791D01* X6801Y5796D01* X6828Y5799D01* X6855Y5799D01* X6882Y5797D01* X6909Y5793D01* X6935Y5785D01* X6961Y5776D01* X6985Y5764D01* X6992Y5762D01* Y5238D01* G37* G36* Y5871D02*X6966Y5881D01* X6931Y5890D01* X6895Y5896D01* X6859Y5899D01* X6823Y5899D01* X6787Y5895D01* X6751Y5889D01* X6717Y5879D01* X6683Y5866D01* X6667Y5858D01* Y7132D01* X6669Y7131D01* X6703Y7118D01* X6738Y7109D01* X6774Y7103D01* X6810Y7100D01* X6846Y7100D01* X6882Y7104D01* X6918Y7111D01* X6952Y7121D01* X6986Y7134D01* X6992Y7137D01* Y5871D01* G37* G36* Y7243D02*X6986Y7243D01* X6978Y7241D01* X6970Y7237D01* X6946Y7225D01* X6920Y7215D01* X6894Y7208D01* X6868Y7203D01* X6841Y7200D01* X6814Y7200D01* X6787Y7202D01* X6760Y7207D01* X6734Y7214D01* X6708Y7223D01* X6684Y7235D01* X6676Y7238D01* X6667Y7240D01* Y7757D01* X6671Y7758D01* X6679Y7762D01* X6703Y7774D01* X6729Y7784D01* X6755Y7791D01* X6781Y7796D01* X6808Y7799D01* X6835Y7799D01* X6862Y7797D01* X6889Y7793D01* X6915Y7785D01* X6941Y7776D01* X6965Y7764D01* X6973Y7761D01* X6982Y7759D01* X6991Y7759D01* X6992Y7759D01* Y7243D01* G37* G36* Y7862D02*X6980Y7868D01* X6946Y7881D01* X6911Y7890D01* X6875Y7896D01* X6839Y7899D01* X6803Y7899D01* X6767Y7895D01* X6731Y7889D01* X6697Y7879D01* X6667Y7867D01* Y9124D01* X6683Y9118D01* X6718Y9109D01* X6754Y9103D01* X6790Y9100D01* X6826Y9100D01* X6862Y9104D01* X6898Y9111D01* X6932Y9121D01* X6966Y9134D01* X6992Y9147D01* Y7862D01* G37* G36* Y9240D02*X6992Y9240D01* X6984Y9243D01* X6975Y9243D01* X6966Y9243D01* X6958Y9241D01* X6950Y9237D01* X6926Y9225D01* X6900Y9215D01* X6874Y9208D01* X6848Y9203D01* X6821Y9200D01* X6794Y9200D01* X6767Y9202D01* X6740Y9207D01* X6714Y9214D01* X6688Y9223D01* X6667Y9233D01* Y9766D01* X6683Y9774D01* X6709Y9784D01* X6735Y9791D01* X6761Y9796D01* X6788Y9799D01* X6815Y9799D01* X6842Y9797D01* X6869Y9793D01* X6895Y9785D01* X6921Y9776D01* X6945Y9764D01* X6953Y9761D01* X6962Y9759D01* X6971Y9759D01* X6979Y9760D01* X6988Y9762D01* X6992Y9765D01* Y9240D01* G37* G36* Y9853D02*X6992Y9853D01* X6960Y9868D01* X6926Y9881D01* X6891Y9890D01* X6855Y9896D01* X6819Y9899D01* X6783Y9899D01* X6747Y9895D01* X6711Y9889D01* X6677Y9879D01* X6667Y9875D01* Y11117D01* X6698Y11109D01* X6734Y11103D01* X6770Y11100D01* X6806Y11100D01* X6842Y11104D01* X6878Y11111D01* X6912Y11121D01* X6946Y11134D01* X6978Y11150D01* X6986Y11155D01* X6992Y11161D01* X6992Y11161D01* Y9853D01* G37* G36* Y11225D02*X6987Y11231D01* X6980Y11236D01* X6972Y11240D01* X6964Y11243D01* X6955Y11243D01* X6946Y11243D01* X6938Y11241D01* X6930Y11237D01* X6906Y11225D01* X6880Y11215D01* X6854Y11208D01* X6828Y11203D01* X6801Y11200D01* X6774Y11200D01* X6747Y11202D01* X6720Y11207D01* X6694Y11214D01* X6668Y11223D01* X6667Y11223D01* Y11776D01* X6689Y11784D01* X6715Y11791D01* X6741Y11796D01* X6768Y11799D01* X6795Y11799D01* X6822Y11797D01* X6849Y11793D01* X6875Y11785D01* X6901Y11776D01* X6925Y11764D01* X6933Y11761D01* X6942Y11759D01* X6951Y11759D01* X6959Y11760D01* X6968Y11762D01* X6975Y11766D01* X6982Y11772D01* X6988Y11778D01* X6992Y11784D01* Y11225D01* G37* G36* Y40000D02*X7072D01* Y21596D01* X7064Y21627D01* X7050Y21661D01* X7034Y21694D01* X7030Y21701D01* X7024Y21707D01* X7016Y21712D01* X7009Y21716D01* X7000Y21718D01* X6992Y21719D01* Y23289D01* X7000Y23293D01* X7007Y23298D01* X7013Y23305D01* X7018Y23312D01* X7033Y23344D01* X7046Y23378D01* X7055Y23413D01* X7061Y23449D01* X7064Y23485D01* X7064Y23521D01* X7060Y23557D01* X7054Y23593D01* X7044Y23627D01* X7030Y23661D01* X7014Y23694D01* X7010Y23701D01* X7004Y23707D01* X6996Y23712D01* X6992Y23714D01* Y25304D01* X6993Y25305D01* X6998Y25312D01* X7013Y25344D01* X7026Y25378D01* X7035Y25413D01* X7041Y25449D01* X7044Y25485D01* X7044Y25521D01* X7040Y25557D01* X7034Y25593D01* X7024Y25627D01* X7010Y25661D01* X6994Y25694D01* X6992Y25696D01* Y27343D01* X6993Y27344D01* X7006Y27378D01* X7015Y27413D01* X7021Y27449D01* X7024Y27485D01* X7024Y27521D01* X7020Y27557D01* X7014Y27593D01* X7004Y27627D01* X6992Y27656D01* Y29404D01* X6995Y29413D01* X7001Y29449D01* X7004Y29485D01* X7004Y29521D01* X7000Y29557D01* X6994Y29593D01* X6992Y29596D01* Y40000D01* G37* G36* X7072Y0D02*X6992D01* Y1115D01* X7012Y1121D01* X7046Y1134D01* X7072Y1147D01* Y0D01* G37* G36* Y1240D02*X7072Y1240D01* X7064Y1243D01* X7055Y1243D01* X7046Y1243D01* X7038Y1241D01* X7030Y1237D01* X7006Y1225D01* X6992Y1220D01* Y1779D01* X7001Y1776D01* X7025Y1764D01* X7033Y1761D01* X7042Y1759D01* X7051Y1759D01* X7059Y1760D01* X7068Y1762D01* X7072Y1765D01* Y1240D01* G37* G36* Y1853D02*X7072Y1853D01* X7040Y1868D01* X7006Y1881D01* X6992Y1884D01* Y3121D01* X7026Y3134D01* X7058Y3150D01* X7066Y3155D01* X7072Y3161D01* X7072Y3161D01* Y1853D01* G37* G36* Y3225D02*X7067Y3231D01* X7060Y3236D01* X7052Y3240D01* X7044Y3243D01* X7035Y3243D01* X7026Y3243D01* X7018Y3241D01* X7010Y3237D01* X6992Y3229D01* Y3771D01* X7005Y3764D01* X7013Y3761D01* X7022Y3759D01* X7031Y3759D01* X7039Y3760D01* X7048Y3762D01* X7055Y3766D01* X7062Y3772D01* X7068Y3778D01* X7072Y3784D01* Y3225D01* G37* G36* Y3833D02*X7071Y3835D01* X7066Y3842D01* X7060Y3848D01* X7052Y3853D01* X7020Y3868D01* X6992Y3878D01* Y5128D01* X7006Y5134D01* X7038Y5150D01* X7046Y5155D01* X7052Y5161D01* X7057Y5168D01* X7061Y5175D01* X7063Y5184D01* X7064Y5193D01* X7064Y5201D01* X7061Y5210D01* X7058Y5218D01* X7053Y5225D01* X7047Y5231D01* X7040Y5236D01* X7032Y5240D01* X7024Y5243D01* X7015Y5243D01* X7006Y5243D01* X6998Y5241D01* X6992Y5238D01* Y5762D01* X6993Y5761D01* X7002Y5759D01* X7011Y5759D01* X7019Y5760D01* X7028Y5762D01* X7035Y5766D01* X7042Y5772D01* X7048Y5778D01* X7053Y5785D01* X7056Y5793D01* X7058Y5802D01* X7059Y5810D01* X7058Y5819D01* X7055Y5827D01* X7051Y5835D01* X7046Y5842D01* X7040Y5848D01* X7032Y5853D01* X7000Y5868D01* X6992Y5871D01* Y7137D01* X7018Y7150D01* X7026Y7155D01* X7032Y7161D01* X7037Y7168D01* X7041Y7175D01* X7043Y7184D01* X7044Y7193D01* X7044Y7201D01* X7041Y7210D01* X7038Y7218D01* X7033Y7225D01* X7027Y7231D01* X7020Y7236D01* X7012Y7240D01* X7004Y7243D01* X6995Y7243D01* X6992Y7243D01* Y7759D01* X6999Y7760D01* X7008Y7762D01* X7015Y7766D01* X7022Y7772D01* X7028Y7778D01* X7033Y7785D01* X7036Y7793D01* X7038Y7802D01* X7039Y7810D01* X7038Y7819D01* X7035Y7827D01* X7031Y7835D01* X7026Y7842D01* X7020Y7848D01* X7012Y7853D01* X6992Y7862D01* Y9147D01* X6998Y9150D01* X7006Y9155D01* X7012Y9161D01* X7017Y9168D01* X7021Y9175D01* X7023Y9184D01* X7024Y9193D01* X7024Y9201D01* X7021Y9210D01* X7018Y9218D01* X7013Y9225D01* X7007Y9231D01* X7000Y9236D01* X6992Y9240D01* Y9765D01* X6995Y9766D01* X7002Y9772D01* X7008Y9778D01* X7013Y9785D01* X7016Y9793D01* X7018Y9802D01* X7019Y9810D01* X7018Y9819D01* X7015Y9827D01* X7011Y9835D01* X7006Y9842D01* X7000Y9848D01* X6992Y9853D01* Y11161D01* X6997Y11168D01* X7001Y11175D01* X7003Y11184D01* X7004Y11193D01* X7004Y11201D01* X7001Y11210D01* X6998Y11218D01* X6993Y11225D01* X6992Y11225D01* Y11784D01* X6993Y11785D01* X6996Y11793D01* X6998Y11802D01* X6999Y11810D01* X6998Y11819D01* X6995Y11827D01* X6992Y11833D01* Y17307D01* X6996Y17302D01* X7003Y17296D01* X7010Y17291D01* X7018Y17288D01* X7027Y17286D01* X7035Y17285D01* X7044Y17286D01* X7052Y17289D01* X7060Y17293D01* X7067Y17298D01* X7072Y17304D01* Y15714D01* X7069Y15716D01* X7060Y15718D01* X7052Y15719D01* X7043Y15719D01* X7034Y15717D01* X7026Y15713D01* X7019Y15708D01* X7013Y15702D01* X7008Y15695D01* X7004Y15687D01* X7002Y15679D01* X7001Y15670D01* X7001Y15661D01* X7003Y15653D01* X7007Y15645D01* X7019Y15621D01* X7029Y15595D01* X7036Y15569D01* X7041Y15543D01* X7044Y15516D01* X7044Y15489D01* X7042Y15462D01* X7037Y15435D01* X7030Y15409D01* X7021Y15383D01* X7009Y15359D01* X7006Y15351D01* X7004Y15342D01* X7004Y15333D01* X7005Y15325D01* X7007Y15317D01* X7011Y15309D01* X7016Y15302D01* X7023Y15296D01* X7030Y15291D01* X7038Y15288D01* X7047Y15286D01* X7055Y15285D01* X7064Y15286D01* X7072Y15289D01* X7072Y15289D01* Y13719D01* X7072Y13719D01* X7063Y13719D01* X7054Y13717D01* X7046Y13713D01* X7039Y13708D01* X7033Y13702D01* X7028Y13695D01* X7024Y13687D01* X7022Y13679D01* X7021Y13670D01* X7021Y13661D01* X7023Y13653D01* X7027Y13645D01* X7039Y13621D01* X7049Y13595D01* X7056Y13569D01* X7061Y13543D01* X7064Y13516D01* X7064Y13489D01* X7062Y13462D01* X7057Y13435D01* X7050Y13409D01* X7041Y13383D01* X7029Y13359D01* X7026Y13351D01* X7024Y13342D01* X7024Y13333D01* X7025Y13325D01* X7027Y13317D01* X7031Y13309D01* X7036Y13302D01* X7043Y13296D01* X7050Y13291D01* X7058Y13288D01* X7067Y13286D01* X7072Y13286D01* Y11716D01* X7066Y11713D01* X7059Y11708D01* X7053Y11702D01* X7048Y11695D01* X7044Y11687D01* X7042Y11679D01* X7041Y11670D01* X7041Y11661D01* X7043Y11653D01* X7047Y11645D01* X7059Y11621D01* X7069Y11595D01* X7072Y11583D01* Y11416D01* X7070Y11409D01* X7061Y11383D01* X7049Y11359D01* X7046Y11351D01* X7044Y11342D01* X7044Y11333D01* X7045Y11325D01* X7047Y11317D01* X7051Y11309D01* X7056Y11302D01* X7063Y11296D01* X7070Y11291D01* X7072Y11290D01* Y9701D01* X7068Y9695D01* X7064Y9687D01* X7062Y9679D01* X7061Y9670D01* X7061Y9661D01* X7063Y9653D01* X7067Y9645D01* X7072Y9634D01* Y9365D01* X7069Y9359D01* X7066Y9351D01* X7064Y9342D01* X7064Y9333D01* X7065Y9325D01* X7067Y9317D01* X7071Y9309D01* X7072Y9307D01* Y3833D01* G37* G36* Y17696D02*X7070Y17701D01* X7064Y17707D01* X7056Y17712D01* X7049Y17716D01* X7040Y17718D01* X7032Y17719D01* X7023Y17719D01* X7014Y17717D01* X7006Y17713D01* X6999Y17708D01* X6993Y17702D01* X6992Y17701D01* Y19290D01* X6998Y19288D01* X7007Y19286D01* X7015Y19285D01* X7024Y19286D01* X7032Y19289D01* X7040Y19293D01* X7047Y19298D01* X7053Y19305D01* X7058Y19312D01* X7072Y19343D01* Y17696D01* G37* G36* Y19656D02*X7070Y19661D01* X7054Y19694D01* X7050Y19701D01* X7044Y19707D01* X7036Y19712D01* X7029Y19716D01* X7020Y19718D01* X7012Y19719D01* X7003Y19719D01* X6994Y19717D01* X6992Y19716D01* Y21286D01* X6995Y21285D01* X7004Y21286D01* X7012Y21289D01* X7020Y21293D01* X7027Y21298D01* X7033Y21305D01* X7038Y21312D01* X7053Y21344D01* X7066Y21378D01* X7072Y21404D01* Y19656D01* G37* G36* Y40000D02*X7152D01* Y13596D01* X7144Y13627D01* X7130Y13661D01* X7114Y13694D01* X7110Y13701D01* X7104Y13707D01* X7096Y13712D01* X7089Y13716D01* X7080Y13718D01* X7072Y13719D01* Y15289D01* X7080Y15293D01* X7087Y15298D01* X7093Y15305D01* X7098Y15312D01* X7113Y15344D01* X7126Y15378D01* X7135Y15413D01* X7141Y15449D01* X7144Y15485D01* X7144Y15521D01* X7140Y15557D01* X7134Y15593D01* X7124Y15627D01* X7110Y15661D01* X7094Y15694D01* X7090Y15701D01* X7084Y15707D01* X7076Y15712D01* X7072Y15714D01* Y17304D01* X7073Y17305D01* X7078Y17312D01* X7093Y17344D01* X7106Y17378D01* X7115Y17413D01* X7121Y17449D01* X7124Y17485D01* X7124Y17521D01* X7120Y17557D01* X7114Y17593D01* X7104Y17627D01* X7090Y17661D01* X7074Y17694D01* X7072Y17696D01* Y19343D01* X7073Y19344D01* X7086Y19378D01* X7095Y19413D01* X7101Y19449D01* X7104Y19485D01* X7104Y19521D01* X7100Y19557D01* X7094Y19593D01* X7084Y19627D01* X7072Y19656D01* Y21404D01* X7075Y21413D01* X7081Y21449D01* X7084Y21485D01* X7084Y21521D01* X7080Y21557D01* X7074Y21593D01* X7072Y21596D01* Y40000D01* G37* G36* X7152Y0D02*X7072D01* Y1147D01* X7078Y1150D01* X7086Y1155D01* X7092Y1161D01* X7097Y1168D01* X7101Y1175D01* X7103Y1184D01* X7104Y1193D01* X7104Y1201D01* X7101Y1210D01* X7098Y1218D01* X7093Y1225D01* X7087Y1231D01* X7080Y1236D01* X7072Y1240D01* Y1765D01* X7075Y1766D01* X7082Y1772D01* X7088Y1778D01* X7093Y1785D01* X7096Y1793D01* X7098Y1802D01* X7099Y1810D01* X7098Y1819D01* X7095Y1827D01* X7091Y1835D01* X7086Y1842D01* X7080Y1848D01* X7072Y1853D01* Y3161D01* X7077Y3168D01* X7081Y3175D01* X7083Y3184D01* X7084Y3193D01* X7084Y3201D01* X7081Y3210D01* X7078Y3218D01* X7073Y3225D01* X7072Y3225D01* Y3784D01* X7073Y3785D01* X7076Y3793D01* X7078Y3802D01* X7079Y3810D01* X7078Y3819D01* X7075Y3827D01* X7072Y3833D01* Y9307D01* X7076Y9302D01* X7083Y9296D01* X7090Y9291D01* X7098Y9288D01* X7107Y9286D01* X7115Y9285D01* X7124Y9286D01* X7132Y9289D01* X7140Y9293D01* X7147Y9298D01* X7152Y9304D01* Y7714D01* X7149Y7716D01* X7140Y7718D01* X7132Y7719D01* X7123Y7719D01* X7114Y7717D01* X7106Y7713D01* X7099Y7708D01* X7093Y7702D01* X7088Y7695D01* X7084Y7687D01* X7082Y7679D01* X7081Y7670D01* X7081Y7661D01* X7083Y7653D01* X7087Y7645D01* X7099Y7621D01* X7109Y7595D01* X7116Y7569D01* X7121Y7543D01* X7124Y7516D01* X7124Y7489D01* X7122Y7462D01* X7117Y7435D01* X7110Y7409D01* X7101Y7383D01* X7089Y7359D01* X7086Y7351D01* X7084Y7342D01* X7084Y7333D01* X7085Y7325D01* X7087Y7317D01* X7091Y7309D01* X7096Y7302D01* X7103Y7296D01* X7110Y7291D01* X7118Y7288D01* X7127Y7286D01* X7135Y7285D01* X7144Y7286D01* X7152Y7289D01* X7152Y7289D01* Y5719D01* X7152Y5719D01* X7143Y5719D01* X7134Y5717D01* X7126Y5713D01* X7119Y5708D01* X7113Y5702D01* X7108Y5695D01* X7104Y5687D01* X7102Y5679D01* X7101Y5670D01* X7101Y5661D01* X7103Y5653D01* X7107Y5645D01* X7119Y5621D01* X7129Y5595D01* X7136Y5569D01* X7141Y5543D01* X7144Y5516D01* X7144Y5489D01* X7142Y5462D01* X7137Y5435D01* X7130Y5409D01* X7121Y5383D01* X7109Y5359D01* X7106Y5351D01* X7104Y5342D01* X7104Y5333D01* X7105Y5325D01* X7107Y5317D01* X7111Y5309D01* X7116Y5302D01* X7123Y5296D01* X7130Y5291D01* X7138Y5288D01* X7147Y5286D01* X7152Y5286D01* Y3716D01* X7146Y3713D01* X7139Y3708D01* X7133Y3702D01* X7128Y3695D01* X7124Y3687D01* X7122Y3679D01* X7121Y3670D01* X7121Y3661D01* X7123Y3653D01* X7127Y3645D01* X7139Y3621D01* X7149Y3595D01* X7152Y3583D01* Y3416D01* X7150Y3409D01* X7141Y3383D01* X7129Y3359D01* X7126Y3351D01* X7124Y3342D01* X7124Y3333D01* X7125Y3325D01* X7127Y3317D01* X7131Y3309D01* X7136Y3302D01* X7143Y3296D01* X7150Y3291D01* X7152Y3290D01* Y1701D01* X7148Y1695D01* X7144Y1687D01* X7142Y1679D01* X7141Y1670D01* X7141Y1661D01* X7143Y1653D01* X7147Y1645D01* X7152Y1634D01* Y1365D01* X7149Y1359D01* X7146Y1351D01* X7144Y1342D01* X7144Y1333D01* X7145Y1325D01* X7147Y1317D01* X7151Y1309D01* X7152Y1307D01* Y0D01* G37* G36* Y9696D02*X7150Y9701D01* X7144Y9707D01* X7136Y9712D01* X7129Y9716D01* X7120Y9718D01* X7112Y9719D01* X7103Y9719D01* X7094Y9717D01* X7086Y9713D01* X7079Y9708D01* X7073Y9702D01* X7072Y9701D01* Y11290D01* X7078Y11288D01* X7087Y11286D01* X7095Y11285D01* X7104Y11286D01* X7112Y11289D01* X7120Y11293D01* X7127Y11298D01* X7133Y11305D01* X7138Y11312D01* X7152Y11343D01* Y9696D01* G37* G36* Y11656D02*X7150Y11661D01* X7134Y11694D01* X7130Y11701D01* X7124Y11707D01* X7116Y11712D01* X7109Y11716D01* X7100Y11718D01* X7092Y11719D01* X7083Y11719D01* X7074Y11717D01* X7072Y11716D01* Y13286D01* X7075Y13285D01* X7084Y13286D01* X7092Y13289D01* X7100Y13293D01* X7107Y13298D01* X7113Y13305D01* X7118Y13312D01* X7133Y13344D01* X7146Y13378D01* X7152Y13404D01* Y11656D01* G37* G36* Y40000D02*X8177D01* Y39710D01* X8169Y39706D01* X8162Y39701D01* X8156Y39695D01* X8151Y39687D01* X8136Y39655D01* X8123Y39621D01* X8114Y39586D01* X8108Y39550D01* X8105Y39514D01* X8105Y39478D01* X8109Y39442D01* X8115Y39407D01* X8125Y39372D01* X8139Y39338D01* X8155Y39306D01* X8159Y39299D01* X8165Y39292D01* X8173Y39287D01* X8177Y39285D01* Y37695D01* X8176Y37695D01* X8171Y37687D01* X8156Y37655D01* X8143Y37621D01* X8134Y37586D01* X8128Y37550D01* X8125Y37514D01* X8125Y37478D01* X8129Y37442D01* X8135Y37407D01* X8145Y37372D01* X8159Y37338D01* X8175Y37306D01* X8177Y37303D01* Y35656D01* X8176Y35655D01* X8163Y35621D01* X8154Y35586D01* X8148Y35550D01* X8145Y35514D01* X8145Y35478D01* X8149Y35442D01* X8155Y35407D01* X8165Y35372D01* X8177Y35343D01* Y33596D01* X8174Y33586D01* X8168Y33550D01* X8165Y33514D01* X8165Y33478D01* X8169Y33442D01* X8175Y33407D01* X8177Y33403D01* Y0D01* X7152D01* Y1307D01* X7156Y1302D01* X7163Y1296D01* X7170Y1291D01* X7178Y1288D01* X7187Y1286D01* X7195Y1285D01* X7204Y1286D01* X7212Y1289D01* X7220Y1293D01* X7227Y1298D01* X7233Y1305D01* X7238Y1312D01* X7253Y1344D01* X7266Y1378D01* X7275Y1413D01* X7281Y1449D01* X7284Y1485D01* X7284Y1521D01* X7280Y1557D01* X7274Y1593D01* X7264Y1627D01* X7250Y1661D01* X7234Y1694D01* X7230Y1701D01* X7224Y1707D01* X7216Y1712D01* X7209Y1716D01* X7200Y1718D01* X7192Y1719D01* X7183Y1719D01* X7174Y1717D01* X7166Y1713D01* X7159Y1708D01* X7153Y1702D01* X7152Y1701D01* Y3290D01* X7158Y3288D01* X7167Y3286D01* X7175Y3285D01* X7184Y3286D01* X7192Y3289D01* X7200Y3293D01* X7207Y3298D01* X7213Y3305D01* X7218Y3312D01* X7233Y3344D01* X7246Y3378D01* X7255Y3413D01* X7261Y3449D01* X7264Y3485D01* X7264Y3521D01* X7260Y3557D01* X7254Y3593D01* X7244Y3627D01* X7230Y3661D01* X7214Y3694D01* X7210Y3701D01* X7204Y3707D01* X7196Y3712D01* X7189Y3716D01* X7180Y3718D01* X7172Y3719D01* X7163Y3719D01* X7154Y3717D01* X7152Y3716D01* Y5286D01* X7155Y5285D01* X7164Y5286D01* X7172Y5289D01* X7180Y5293D01* X7187Y5298D01* X7193Y5305D01* X7198Y5312D01* X7213Y5344D01* X7226Y5378D01* X7235Y5413D01* X7241Y5449D01* X7244Y5485D01* X7244Y5521D01* X7240Y5557D01* X7234Y5593D01* X7224Y5627D01* X7210Y5661D01* X7194Y5694D01* X7190Y5701D01* X7184Y5707D01* X7176Y5712D01* X7169Y5716D01* X7160Y5718D01* X7152Y5719D01* Y7289D01* X7160Y7293D01* X7167Y7298D01* X7173Y7305D01* X7178Y7312D01* X7193Y7344D01* X7206Y7378D01* X7215Y7413D01* X7221Y7449D01* X7224Y7485D01* X7224Y7521D01* X7220Y7557D01* X7214Y7593D01* X7204Y7627D01* X7190Y7661D01* X7174Y7694D01* X7170Y7701D01* X7164Y7707D01* X7156Y7712D01* X7152Y7714D01* Y9304D01* X7153Y9305D01* X7158Y9312D01* X7173Y9344D01* X7186Y9378D01* X7195Y9413D01* X7201Y9449D01* X7204Y9485D01* X7204Y9521D01* X7200Y9557D01* X7194Y9593D01* X7184Y9627D01* X7170Y9661D01* X7154Y9694D01* X7152Y9696D01* Y11343D01* X7153Y11344D01* X7166Y11378D01* X7175Y11413D01* X7181Y11449D01* X7184Y11485D01* X7184Y11521D01* X7180Y11557D01* X7174Y11593D01* X7164Y11627D01* X7152Y11656D01* Y13404D01* X7155Y13413D01* X7161Y13449D01* X7164Y13485D01* X7164Y13521D01* X7160Y13557D01* X7154Y13593D01* X7152Y13596D01* Y40000D01* G37* G36* X8177D02*X8257D01* Y37692D01* X8253Y37697D01* X8246Y37703D01* X8239Y37708D01* X8231Y37711D01* X8222Y37713D01* X8214Y37714D01* X8205Y37713D01* X8197Y37710D01* X8189Y37706D01* X8182Y37701D01* X8177Y37695D01* Y39285D01* X8180Y39283D01* X8189Y39281D01* X8197Y39280D01* X8206Y39281D01* X8215Y39283D01* X8223Y39286D01* X8230Y39291D01* X8236Y39297D01* X8241Y39304D01* X8245Y39312D01* X8247Y39320D01* X8248Y39329D01* X8248Y39338D01* X8246Y39346D01* X8242Y39354D01* X8230Y39378D01* X8220Y39404D01* X8213Y39430D01* X8208Y39456D01* X8205Y39483D01* X8205Y39511D01* X8207Y39538D01* X8212Y39564D01* X8219Y39590D01* X8228Y39616D01* X8240Y39640D01* X8243Y39649D01* X8245Y39657D01* X8245Y39666D01* X8244Y39674D01* X8242Y39683D01* X8238Y39690D01* X8233Y39697D01* X8226Y39703D01* X8219Y39708D01* X8211Y39711D01* X8202Y39713D01* X8194Y39714D01* X8185Y39713D01* X8177Y39710D01* X8177Y39710D01* Y40000D01* G37* G36* Y37303D02*X8179Y37299D01* X8185Y37292D01* X8193Y37287D01* X8200Y37283D01* X8209Y37281D01* X8217Y37280D01* X8226Y37281D01* X8235Y37283D01* X8243Y37286D01* X8250Y37291D01* X8256Y37297D01* X8257Y37298D01* Y35709D01* X8251Y35711D01* X8242Y35713D01* X8234Y35714D01* X8225Y35713D01* X8217Y35710D01* X8209Y35706D01* X8202Y35701D01* X8196Y35695D01* X8191Y35687D01* X8177Y35656D01* Y37303D01* G37* G36* Y35343D02*X8179Y35338D01* X8195Y35306D01* X8199Y35299D01* X8205Y35292D01* X8213Y35287D01* X8220Y35283D01* X8229Y35281D01* X8237Y35280D01* X8246Y35281D01* X8255Y35283D01* X8257Y35284D01* Y33714D01* X8254Y33714D01* X8245Y33713D01* X8237Y33710D01* X8229Y33706D01* X8222Y33701D01* X8216Y33695D01* X8211Y33687D01* X8196Y33655D01* X8183Y33621D01* X8177Y33596D01* Y35343D01* G37* G36* Y33403D02*X8185Y33372D01* X8199Y33338D01* X8215Y33306D01* X8219Y33299D01* X8225Y33292D01* X8233Y33287D01* X8240Y33283D01* X8249Y33281D01* X8257Y33280D01* Y31710D01* X8249Y31706D01* X8242Y31701D01* X8236Y31695D01* X8231Y31687D01* X8216Y31655D01* X8203Y31621D01* X8194Y31586D01* X8188Y31550D01* X8185Y31514D01* X8185Y31478D01* X8189Y31442D01* X8195Y31407D01* X8205Y31372D01* X8219Y31338D01* X8235Y31306D01* X8239Y31299D01* X8245Y31292D01* X8253Y31287D01* X8257Y31285D01* Y29695D01* X8256Y29695D01* X8251Y29687D01* X8236Y29655D01* X8223Y29621D01* X8214Y29586D01* X8208Y29550D01* X8205Y29514D01* X8205Y29478D01* X8209Y29442D01* X8215Y29407D01* X8225Y29372D01* X8239Y29338D01* X8255Y29306D01* X8257Y29303D01* Y27656D01* X8256Y27655D01* X8243Y27621D01* X8234Y27586D01* X8228Y27550D01* X8225Y27514D01* X8225Y27478D01* X8229Y27442D01* X8235Y27407D01* X8245Y27372D01* X8257Y27343D01* Y25596D01* X8254Y25586D01* X8248Y25550D01* X8245Y25514D01* X8245Y25478D01* X8249Y25442D01* X8255Y25407D01* X8257Y25403D01* Y0D01* X8177D01* Y33403D01* G37* G36* X8257Y37365D02*X8250Y37378D01* X8240Y37404D01* X8233Y37430D01* X8228Y37456D01* X8225Y37483D01* X8225Y37511D01* X8227Y37538D01* X8232Y37564D01* X8239Y37590D01* X8248Y37616D01* X8257Y37634D01* Y37365D01* G37* G36* Y35417D02*X8253Y35430D01* X8248Y35456D01* X8245Y35483D01* X8245Y35511D01* X8247Y35538D01* X8252Y35564D01* X8257Y35583D01* Y35417D01* G37* G36* Y40000D02*X8377D01* Y39879D01* X8343Y39866D01* X8311Y39849D01* X8303Y39845D01* X8297Y39839D01* X8292Y39832D01* X8288Y39824D01* X8286Y39815D01* X8285Y39807D01* X8285Y39798D01* X8288Y39790D01* X8291Y39782D01* X8296Y39774D01* X8302Y39768D01* X8309Y39763D01* X8317Y39759D01* X8325Y39757D01* X8334Y39756D01* X8343Y39756D01* X8351Y39758D01* X8359Y39762D01* X8377Y39771D01* Y39229D01* X8364Y39235D01* X8356Y39238D01* X8347Y39240D01* X8338Y39240D01* X8330Y39239D01* X8321Y39237D01* X8314Y39233D01* X8307Y39228D01* X8301Y39221D01* X8296Y39214D01* X8293Y39206D01* X8291Y39197D01* X8290Y39189D01* X8291Y39180D01* X8294Y39172D01* X8298Y39164D01* X8303Y39157D01* X8309Y39151D01* X8317Y39146D01* X8349Y39131D01* X8377Y39121D01* Y37871D01* X8363Y37866D01* X8331Y37849D01* X8323Y37845D01* X8317Y37839D01* X8312Y37832D01* X8308Y37824D01* X8306Y37815D01* X8305Y37807D01* X8305Y37798D01* X8308Y37790D01* X8311Y37782D01* X8316Y37774D01* X8322Y37768D01* X8329Y37763D01* X8337Y37759D01* X8345Y37757D01* X8354Y37756D01* X8363Y37756D01* X8371Y37758D01* X8377Y37761D01* Y37238D01* X8376Y37238D01* X8367Y37240D01* X8358Y37240D01* X8350Y37239D01* X8341Y37237D01* X8334Y37233D01* X8327Y37228D01* X8321Y37221D01* X8316Y37214D01* X8313Y37206D01* X8311Y37197D01* X8310Y37189D01* X8311Y37180D01* X8314Y37172D01* X8318Y37164D01* X8323Y37157D01* X8329Y37151D01* X8337Y37146D01* X8369Y37131D01* X8377Y37128D01* Y35862D01* X8351Y35849D01* X8343Y35845D01* X8337Y35839D01* X8332Y35832D01* X8328Y35824D01* X8326Y35815D01* X8325Y35807D01* X8325Y35798D01* X8328Y35790D01* X8331Y35782D01* X8336Y35774D01* X8342Y35768D01* X8349Y35763D01* X8357Y35759D01* X8365Y35757D01* X8374Y35756D01* X8377Y35756D01* Y35240D01* X8370Y35239D01* X8361Y35237D01* X8354Y35233D01* X8347Y35228D01* X8341Y35221D01* X8336Y35214D01* X8333Y35206D01* X8331Y35197D01* X8330Y35189D01* X8331Y35180D01* X8334Y35172D01* X8338Y35164D01* X8343Y35157D01* X8349Y35151D01* X8357Y35146D01* X8377Y35137D01* Y33852D01* X8371Y33849D01* X8363Y33845D01* X8357Y33839D01* X8352Y33832D01* X8348Y33824D01* X8346Y33815D01* X8345Y33807D01* X8345Y33798D01* X8348Y33790D01* X8351Y33782D01* X8356Y33774D01* X8362Y33768D01* X8369Y33763D01* X8377Y33759D01* Y33234D01* X8374Y33233D01* X8367Y33228D01* X8361Y33221D01* X8356Y33214D01* X8353Y33206D01* X8351Y33197D01* X8350Y33189D01* X8351Y33180D01* X8354Y33172D01* X8358Y33164D01* X8363Y33157D01* X8369Y33151D01* X8377Y33147D01* Y31838D01* X8372Y31832D01* X8368Y31824D01* X8366Y31815D01* X8365Y31807D01* X8365Y31798D01* X8368Y31790D01* X8371Y31782D01* X8376Y31774D01* X8377Y31774D01* Y31215D01* X8376Y31214D01* X8373Y31206D01* X8371Y31197D01* X8370Y31189D01* X8371Y31180D01* X8374Y31172D01* X8377Y31167D01* Y25692D01* X8373Y25697D01* X8366Y25703D01* X8359Y25708D01* X8351Y25711D01* X8342Y25713D01* X8334Y25714D01* X8325Y25713D01* X8317Y25710D01* X8309Y25706D01* X8302Y25701D01* X8296Y25695D01* X8291Y25687D01* X8276Y25655D01* X8263Y25621D01* X8257Y25596D01* Y27343D01* X8259Y27338D01* X8275Y27306D01* X8279Y27299D01* X8285Y27292D01* X8293Y27287D01* X8300Y27283D01* X8309Y27281D01* X8317Y27280D01* X8326Y27281D01* X8335Y27283D01* X8343Y27286D01* X8350Y27291D01* X8356Y27297D01* X8361Y27304D01* X8365Y27312D01* X8367Y27320D01* X8368Y27329D01* X8368Y27338D01* X8366Y27346D01* X8362Y27354D01* X8350Y27378D01* X8340Y27404D01* X8333Y27430D01* X8328Y27456D01* X8325Y27483D01* X8325Y27511D01* X8327Y27538D01* X8332Y27564D01* X8339Y27590D01* X8348Y27616D01* X8360Y27640D01* X8363Y27649D01* X8365Y27657D01* X8365Y27666D01* X8364Y27674D01* X8362Y27683D01* X8358Y27690D01* X8353Y27697D01* X8346Y27703D01* X8339Y27708D01* X8331Y27711D01* X8322Y27713D01* X8314Y27714D01* X8305Y27713D01* X8297Y27710D01* X8289Y27706D01* X8282Y27701D01* X8276Y27695D01* X8271Y27687D01* X8257Y27656D01* Y29303D01* X8259Y29299D01* X8265Y29292D01* X8273Y29287D01* X8280Y29283D01* X8289Y29281D01* X8297Y29280D01* X8306Y29281D01* X8315Y29283D01* X8323Y29286D01* X8330Y29291D01* X8336Y29297D01* X8341Y29304D01* X8345Y29312D01* X8347Y29320D01* X8348Y29329D01* X8348Y29338D01* X8346Y29346D01* X8342Y29354D01* X8330Y29378D01* X8320Y29404D01* X8313Y29430D01* X8308Y29456D01* X8305Y29483D01* X8305Y29511D01* X8307Y29538D01* X8312Y29564D01* X8319Y29590D01* X8328Y29616D01* X8340Y29640D01* X8343Y29649D01* X8345Y29657D01* X8345Y29666D01* X8344Y29674D01* X8342Y29683D01* X8338Y29690D01* X8333Y29697D01* X8326Y29703D01* X8319Y29708D01* X8311Y29711D01* X8302Y29713D01* X8294Y29714D01* X8285Y29713D01* X8277Y29710D01* X8269Y29706D01* X8262Y29701D01* X8257Y29695D01* Y31285D01* X8260Y31283D01* X8269Y31281D01* X8277Y31280D01* X8286Y31281D01* X8295Y31283D01* X8303Y31286D01* X8310Y31291D01* X8316Y31297D01* X8321Y31304D01* X8325Y31312D01* X8327Y31320D01* X8328Y31329D01* X8328Y31338D01* X8326Y31346D01* X8322Y31354D01* X8310Y31378D01* X8300Y31404D01* X8293Y31430D01* X8288Y31456D01* X8285Y31483D01* X8285Y31511D01* X8287Y31538D01* X8292Y31564D01* X8299Y31590D01* X8308Y31616D01* X8320Y31640D01* X8323Y31649D01* X8325Y31657D01* X8325Y31666D01* X8324Y31674D01* X8322Y31683D01* X8318Y31690D01* X8313Y31697D01* X8306Y31703D01* X8299Y31708D01* X8291Y31711D01* X8282Y31713D01* X8274Y31714D01* X8265Y31713D01* X8257Y31710D01* X8257Y31710D01* Y33280D01* X8257Y33280D01* X8266Y33281D01* X8275Y33283D01* X8283Y33286D01* X8290Y33291D01* X8296Y33297D01* X8301Y33304D01* X8305Y33312D01* X8307Y33320D01* X8308Y33329D01* X8308Y33338D01* X8306Y33346D01* X8302Y33354D01* X8290Y33378D01* X8280Y33404D01* X8273Y33430D01* X8268Y33456D01* X8265Y33483D01* X8265Y33511D01* X8267Y33538D01* X8272Y33564D01* X8279Y33590D01* X8288Y33616D01* X8300Y33640D01* X8303Y33649D01* X8305Y33657D01* X8305Y33666D01* X8304Y33674D01* X8302Y33683D01* X8298Y33690D01* X8293Y33697D01* X8286Y33703D01* X8279Y33708D01* X8271Y33711D01* X8262Y33713D01* X8257Y33714D01* Y35284D01* X8263Y35286D01* X8270Y35291D01* X8276Y35297D01* X8281Y35304D01* X8285Y35312D01* X8287Y35320D01* X8288Y35329D01* X8288Y35338D01* X8286Y35346D01* X8282Y35354D01* X8270Y35378D01* X8260Y35404D01* X8257Y35417D01* Y35583D01* X8259Y35590D01* X8268Y35616D01* X8280Y35640D01* X8283Y35649D01* X8285Y35657D01* X8285Y35666D01* X8284Y35674D01* X8282Y35683D01* X8278Y35690D01* X8273Y35697D01* X8266Y35703D01* X8259Y35708D01* X8257Y35709D01* Y37298D01* X8261Y37304D01* X8265Y37312D01* X8267Y37320D01* X8268Y37329D01* X8268Y37338D01* X8266Y37346D01* X8262Y37354D01* X8257Y37365D01* Y37634D01* X8260Y37640D01* X8263Y37649D01* X8265Y37657D01* X8265Y37666D01* X8264Y37674D01* X8262Y37683D01* X8258Y37690D01* X8257Y37692D01* Y40000D01* G37* G36* Y25403D02*X8265Y25372D01* X8279Y25338D01* X8295Y25306D01* X8299Y25299D01* X8305Y25292D01* X8313Y25287D01* X8320Y25283D01* X8329Y25281D01* X8337Y25280D01* X8346Y25281D01* X8355Y25283D01* X8363Y25286D01* X8370Y25291D01* X8376Y25297D01* X8377Y25298D01* Y23709D01* X8371Y23711D01* X8362Y23713D01* X8354Y23714D01* X8345Y23713D01* X8337Y23710D01* X8329Y23706D01* X8322Y23701D01* X8316Y23695D01* X8311Y23687D01* X8296Y23655D01* X8283Y23621D01* X8274Y23586D01* X8268Y23550D01* X8265Y23514D01* X8265Y23478D01* X8269Y23442D01* X8275Y23407D01* X8285Y23372D01* X8299Y23338D01* X8315Y23306D01* X8319Y23299D01* X8325Y23292D01* X8333Y23287D01* X8340Y23283D01* X8349Y23281D01* X8357Y23280D01* X8366Y23281D01* X8375Y23283D01* X8377Y23284D01* Y21714D01* X8374Y21714D01* X8365Y21713D01* X8357Y21710D01* X8349Y21706D01* X8342Y21701D01* X8336Y21695D01* X8331Y21687D01* X8316Y21655D01* X8303Y21621D01* X8294Y21586D01* X8288Y21550D01* X8285Y21514D01* X8285Y21478D01* X8289Y21442D01* X8295Y21407D01* X8305Y21372D01* X8319Y21338D01* X8335Y21306D01* X8339Y21299D01* X8345Y21292D01* X8353Y21287D01* X8360Y21283D01* X8369Y21281D01* X8377Y21280D01* Y19710D01* X8369Y19706D01* X8362Y19701D01* X8356Y19695D01* X8351Y19687D01* X8336Y19655D01* X8323Y19621D01* X8314Y19586D01* X8308Y19550D01* X8305Y19514D01* X8305Y19478D01* X8309Y19442D01* X8315Y19407D01* X8325Y19372D01* X8339Y19338D01* X8355Y19306D01* X8359Y19299D01* X8365Y19292D01* X8373Y19287D01* X8377Y19285D01* Y17695D01* X8376Y17695D01* X8371Y17687D01* X8356Y17655D01* X8343Y17621D01* X8334Y17586D01* X8328Y17550D01* X8325Y17514D01* X8325Y17478D01* X8329Y17442D01* X8335Y17407D01* X8345Y17372D01* X8359Y17338D01* X8375Y17306D01* X8377Y17303D01* Y15656D01* X8376Y15655D01* X8363Y15621D01* X8354Y15586D01* X8348Y15550D01* X8345Y15514D01* X8345Y15478D01* X8349Y15442D01* X8355Y15407D01* X8365Y15372D01* X8377Y15343D01* Y13596D01* X8374Y13586D01* X8368Y13550D01* X8365Y13514D01* X8365Y13478D01* X8369Y13442D01* X8375Y13407D01* X8377Y13403D01* Y0D01* X8257D01* Y25403D01* G37* G36* X8377Y25365D02*X8370Y25378D01* X8360Y25404D01* X8353Y25430D01* X8348Y25456D01* X8345Y25483D01* X8345Y25511D01* X8347Y25538D01* X8352Y25564D01* X8359Y25590D01* X8368Y25616D01* X8377Y25634D01* Y25365D01* G37* G36* Y23417D02*X8373Y23430D01* X8368Y23456D01* X8365Y23483D01* X8365Y23511D01* X8367Y23538D01* X8372Y23564D01* X8377Y23583D01* Y23417D01* G37* G36* Y40000D02*X8707D01* Y39840D01* X8706Y39842D01* X8700Y39848D01* X8692Y39853D01* X8660Y39868D01* X8626Y39881D01* X8591Y39890D01* X8555Y39896D01* X8519Y39899D01* X8483Y39899D01* X8447Y39895D01* X8411Y39889D01* X8377Y39879D01* X8377D01* Y40000D01* G37* G36* Y39771D02*X8383Y39774D01* X8409Y39784D01* X8435Y39791D01* X8461Y39796D01* X8488Y39799D01* X8515Y39799D01* X8542Y39797D01* X8569Y39793D01* X8595Y39785D01* X8621Y39776D01* X8645Y39764D01* X8653Y39761D01* X8662Y39759D01* X8671Y39759D01* X8679Y39760D01* X8688Y39762D01* X8695Y39766D01* X8702Y39772D01* X8707Y39777D01* Y39231D01* X8707Y39231D01* X8700Y39236D01* X8692Y39240D01* X8684Y39243D01* X8675Y39243D01* X8666Y39243D01* X8658Y39241D01* X8650Y39237D01* X8626Y39225D01* X8600Y39215D01* X8574Y39208D01* X8548Y39203D01* X8521Y39200D01* X8494Y39200D01* X8467Y39202D01* X8440Y39207D01* X8414Y39214D01* X8388Y39223D01* X8377Y39229D01* Y39771D01* G37* G36* Y39121D02*X8383Y39118D01* X8418Y39109D01* X8454Y39103D01* X8490Y39100D01* X8526Y39100D01* X8562Y39104D01* X8598Y39111D01* X8632Y39121D01* X8666Y39134D01* X8698Y39150D01* X8706Y39155D01* X8707Y39156D01* Y37855D01* X8680Y37868D01* X8646Y37881D01* X8611Y37890D01* X8575Y37896D01* X8539Y37899D01* X8503Y37899D01* X8467Y37895D01* X8431Y37889D01* X8397Y37879D01* X8377Y37871D01* Y39121D01* G37* G36* Y37761D02*X8379Y37762D01* X8403Y37774D01* X8429Y37784D01* X8455Y37791D01* X8481Y37796D01* X8508Y37799D01* X8535Y37799D01* X8562Y37797D01* X8589Y37793D01* X8615Y37785D01* X8641Y37776D01* X8665Y37764D01* X8673Y37761D01* X8682Y37759D01* X8691Y37759D01* X8699Y37760D01* X8707Y37762D01* Y37242D01* X8704Y37243D01* X8695Y37243D01* X8686Y37243D01* X8678Y37241D01* X8670Y37237D01* X8646Y37225D01* X8620Y37215D01* X8594Y37208D01* X8568Y37203D01* X8541Y37200D01* X8514Y37200D01* X8487Y37202D01* X8460Y37207D01* X8434Y37214D01* X8408Y37223D01* X8384Y37235D01* X8377Y37238D01* Y37761D01* G37* G36* Y37128D02*X8403Y37118D01* X8438Y37109D01* X8474Y37103D01* X8510Y37100D01* X8546Y37100D01* X8582Y37104D01* X8618Y37111D01* X8652Y37121D01* X8686Y37134D01* X8707Y37144D01* Y35865D01* X8700Y35868D01* X8666Y35881D01* X8631Y35890D01* X8595Y35896D01* X8559Y35899D01* X8523Y35899D01* X8487Y35895D01* X8451Y35889D01* X8417Y35879D01* X8383Y35866D01* X8377Y35862D01* Y37128D01* G37* G36* Y35756D02*X8383Y35756D01* X8391Y35758D01* X8399Y35762D01* X8423Y35774D01* X8449Y35784D01* X8475Y35791D01* X8501Y35796D01* X8528Y35799D01* X8555Y35799D01* X8582Y35797D01* X8609Y35793D01* X8635Y35785D01* X8661Y35776D01* X8685Y35764D01* X8693Y35761D01* X8702Y35759D01* X8707Y35759D01* Y35243D01* X8706Y35243D01* X8698Y35241D01* X8690Y35237D01* X8666Y35225D01* X8640Y35215D01* X8614Y35208D01* X8588Y35203D01* X8561Y35200D01* X8534Y35200D01* X8507Y35202D01* X8480Y35207D01* X8454Y35214D01* X8428Y35223D01* X8404Y35235D01* X8396Y35238D01* X8387Y35240D01* X8378Y35240D01* X8377Y35240D01* Y35756D01* G37* G36* Y35137D02*X8389Y35131D01* X8423Y35118D01* X8458Y35109D01* X8494Y35103D01* X8530Y35100D01* X8566Y35100D01* X8602Y35104D01* X8638Y35111D01* X8672Y35121D01* X8706Y35134D01* X8707Y35134D01* Y33873D01* X8686Y33881D01* X8651Y33890D01* X8615Y33896D01* X8579Y33899D01* X8543Y33899D01* X8507Y33895D01* X8471Y33889D01* X8437Y33879D01* X8403Y33866D01* X8377Y33852D01* Y35137D01* G37* G36* Y33759D02*X8377Y33759D01* X8385Y33757D01* X8394Y33756D01* X8403Y33756D01* X8411Y33758D01* X8419Y33762D01* X8443Y33774D01* X8469Y33784D01* X8495Y33791D01* X8521Y33796D01* X8548Y33799D01* X8575Y33799D01* X8602Y33797D01* X8629Y33793D01* X8655Y33785D01* X8681Y33776D01* X8705Y33764D01* X8707Y33764D01* Y33236D01* X8686Y33225D01* X8660Y33215D01* X8634Y33208D01* X8608Y33203D01* X8581Y33200D01* X8554Y33200D01* X8527Y33202D01* X8500Y33207D01* X8474Y33214D01* X8448Y33223D01* X8424Y33235D01* X8416Y33238D01* X8407Y33240D01* X8398Y33240D01* X8390Y33239D01* X8381Y33237D01* X8377Y33234D01* Y33759D01* G37* G36* Y33147D02*X8377Y33146D01* X8409Y33131D01* X8443Y33118D01* X8478Y33109D01* X8514Y33103D01* X8550Y33100D01* X8586Y33100D01* X8622Y33104D01* X8658Y33111D01* X8692Y33121D01* X8707Y33126D01* Y31880D01* X8706Y31881D01* X8671Y31890D01* X8635Y31896D01* X8599Y31899D01* X8563Y31899D01* X8527Y31895D01* X8491Y31889D01* X8457Y31879D01* X8423Y31866D01* X8391Y31849D01* X8383Y31845D01* X8377Y31839D01* X8377Y31838D01* Y33147D01* G37* G36* Y31774D02*X8382Y31768D01* X8389Y31763D01* X8397Y31759D01* X8405Y31757D01* X8414Y31756D01* X8423Y31756D01* X8431Y31758D01* X8439Y31762D01* X8463Y31774D01* X8489Y31784D01* X8515Y31791D01* X8541Y31796D01* X8568Y31799D01* X8595Y31799D01* X8622Y31797D01* X8649Y31793D01* X8675Y31785D01* X8701Y31776D01* X8707Y31773D01* Y31226D01* X8706Y31225D01* X8680Y31215D01* X8654Y31208D01* X8628Y31203D01* X8601Y31200D01* X8574Y31200D01* X8547Y31202D01* X8520Y31207D01* X8494Y31214D01* X8468Y31223D01* X8444Y31235D01* X8436Y31238D01* X8427Y31240D01* X8418Y31240D01* X8410Y31239D01* X8401Y31237D01* X8394Y31233D01* X8387Y31228D01* X8381Y31221D01* X8377Y31215D01* Y31774D01* G37* G36* Y31167D02*X8378Y31164D01* X8383Y31157D01* X8389Y31151D01* X8397Y31146D01* X8429Y31131D01* X8457Y31121D01* Y29871D01* X8443Y29866D01* X8411Y29849D01* X8403Y29845D01* X8397Y29839D01* X8392Y29832D01* X8388Y29824D01* X8386Y29815D01* X8385Y29807D01* X8385Y29798D01* X8388Y29790D01* X8391Y29782D01* X8396Y29774D01* X8402Y29768D01* X8409Y29763D01* X8417Y29759D01* X8425Y29757D01* X8434Y29756D01* X8443Y29756D01* X8451Y29758D01* X8457Y29761D01* Y29238D01* X8456Y29238D01* X8447Y29240D01* X8438Y29240D01* X8430Y29239D01* X8421Y29237D01* X8414Y29233D01* X8407Y29228D01* X8401Y29221D01* X8396Y29214D01* X8393Y29206D01* X8391Y29197D01* X8390Y29189D01* X8391Y29180D01* X8394Y29172D01* X8398Y29164D01* X8403Y29157D01* X8409Y29151D01* X8417Y29146D01* X8449Y29131D01* X8457Y29128D01* Y27862D01* X8431Y27849D01* X8423Y27845D01* X8417Y27839D01* X8412Y27832D01* X8408Y27824D01* X8406Y27815D01* X8405Y27807D01* X8405Y27798D01* X8408Y27790D01* X8411Y27782D01* X8416Y27774D01* X8422Y27768D01* X8429Y27763D01* X8437Y27759D01* X8445Y27757D01* X8454Y27756D01* X8457Y27756D01* Y27240D01* X8450Y27239D01* X8441Y27237D01* X8434Y27233D01* X8427Y27228D01* X8421Y27221D01* X8416Y27214D01* X8413Y27206D01* X8411Y27197D01* X8410Y27189D01* X8411Y27180D01* X8414Y27172D01* X8418Y27164D01* X8423Y27157D01* X8429Y27151D01* X8437Y27146D01* X8457Y27137D01* Y25852D01* X8451Y25849D01* X8443Y25845D01* X8437Y25839D01* X8432Y25832D01* X8428Y25824D01* X8426Y25815D01* X8425Y25807D01* X8425Y25798D01* X8428Y25790D01* X8431Y25782D01* X8436Y25774D01* X8442Y25768D01* X8449Y25763D01* X8457Y25759D01* Y25234D01* X8454Y25233D01* X8447Y25228D01* X8441Y25221D01* X8436Y25214D01* X8433Y25206D01* X8431Y25197D01* X8430Y25189D01* X8431Y25180D01* X8434Y25172D01* X8438Y25164D01* X8443Y25157D01* X8449Y25151D01* X8457Y25147D01* Y23838D01* X8452Y23832D01* X8448Y23824D01* X8446Y23815D01* X8445Y23807D01* X8445Y23798D01* X8448Y23790D01* X8451Y23782D01* X8456Y23774D01* X8457Y23774D01* Y23215D01* X8456Y23214D01* X8453Y23206D01* X8451Y23197D01* X8450Y23189D01* X8451Y23180D01* X8454Y23172D01* X8457Y23167D01* Y17692D01* X8453Y17697D01* X8446Y17703D01* X8439Y17708D01* X8431Y17711D01* X8422Y17713D01* X8414Y17714D01* X8405Y17713D01* X8397Y17710D01* X8389Y17706D01* X8382Y17701D01* X8377Y17695D01* Y19285D01* X8380Y19283D01* X8389Y19281D01* X8397Y19280D01* X8406Y19281D01* X8415Y19283D01* X8423Y19286D01* X8430Y19291D01* X8436Y19297D01* X8441Y19304D01* X8445Y19312D01* X8447Y19320D01* X8448Y19329D01* X8448Y19338D01* X8446Y19346D01* X8442Y19354D01* X8430Y19378D01* X8420Y19404D01* X8413Y19430D01* X8408Y19456D01* X8405Y19483D01* X8405Y19511D01* X8407Y19538D01* X8412Y19564D01* X8419Y19590D01* X8428Y19616D01* X8440Y19640D01* X8443Y19649D01* X8445Y19657D01* X8445Y19666D01* X8444Y19674D01* X8442Y19683D01* X8438Y19690D01* X8433Y19697D01* X8426Y19703D01* X8419Y19708D01* X8411Y19711D01* X8402Y19713D01* X8394Y19714D01* X8385Y19713D01* X8377Y19710D01* X8377Y19710D01* Y21280D01* X8377Y21280D01* X8386Y21281D01* X8395Y21283D01* X8403Y21286D01* X8410Y21291D01* X8416Y21297D01* X8421Y21304D01* X8425Y21312D01* X8427Y21320D01* X8428Y21329D01* X8428Y21338D01* X8426Y21346D01* X8422Y21354D01* X8410Y21378D01* X8400Y21404D01* X8393Y21430D01* X8388Y21456D01* X8385Y21483D01* X8385Y21511D01* X8387Y21538D01* X8392Y21564D01* X8399Y21590D01* X8408Y21616D01* X8420Y21640D01* X8423Y21649D01* X8425Y21657D01* X8425Y21666D01* X8424Y21674D01* X8422Y21683D01* X8418Y21690D01* X8413Y21697D01* X8406Y21703D01* X8399Y21708D01* X8391Y21711D01* X8382Y21713D01* X8377Y21714D01* Y23284D01* X8383Y23286D01* X8390Y23291D01* X8396Y23297D01* X8401Y23304D01* X8405Y23312D01* X8407Y23320D01* X8408Y23329D01* X8408Y23338D01* X8406Y23346D01* X8402Y23354D01* X8390Y23378D01* X8380Y23404D01* X8377Y23417D01* Y23583D01* X8379Y23590D01* X8388Y23616D01* X8400Y23640D01* X8403Y23649D01* X8405Y23657D01* X8405Y23666D01* X8404Y23674D01* X8402Y23683D01* X8398Y23690D01* X8393Y23697D01* X8386Y23703D01* X8379Y23708D01* X8377Y23709D01* Y25298D01* X8381Y25304D01* X8385Y25312D01* X8387Y25320D01* X8388Y25329D01* X8388Y25338D01* X8386Y25346D01* X8382Y25354D01* X8377Y25365D01* Y25634D01* X8380Y25640D01* X8383Y25649D01* X8385Y25657D01* X8385Y25666D01* X8384Y25674D01* X8382Y25683D01* X8378Y25690D01* X8377Y25692D01* Y31167D01* G37* G36* X8457Y0D02*X8377D01* Y13403D01* X8385Y13372D01* X8399Y13338D01* X8415Y13306D01* X8419Y13299D01* X8425Y13292D01* X8433Y13287D01* X8440Y13283D01* X8449Y13281D01* X8457Y13280D01* Y11710D01* X8449Y11706D01* X8442Y11701D01* X8436Y11695D01* X8431Y11687D01* X8416Y11655D01* X8403Y11621D01* X8394Y11586D01* X8388Y11550D01* X8385Y11514D01* X8385Y11478D01* X8389Y11442D01* X8395Y11407D01* X8405Y11372D01* X8419Y11338D01* X8435Y11306D01* X8439Y11299D01* X8445Y11292D01* X8453Y11287D01* X8457Y11285D01* Y9695D01* X8456Y9695D01* X8451Y9687D01* X8436Y9655D01* X8423Y9621D01* X8414Y9586D01* X8408Y9550D01* X8405Y9514D01* X8405Y9478D01* X8409Y9442D01* X8415Y9407D01* X8425Y9372D01* X8439Y9338D01* X8455Y9306D01* X8457Y9303D01* Y7656D01* X8456Y7655D01* X8443Y7621D01* X8434Y7586D01* X8428Y7550D01* X8425Y7514D01* X8425Y7478D01* X8429Y7442D01* X8435Y7407D01* X8445Y7372D01* X8457Y7343D01* Y5596D01* X8454Y5586D01* X8448Y5550D01* X8445Y5514D01* X8445Y5478D01* X8449Y5442D01* X8455Y5407D01* X8457Y5403D01* Y0D01* G37* G36* Y13714D02*X8454Y13714D01* X8445Y13713D01* X8437Y13710D01* X8429Y13706D01* X8422Y13701D01* X8416Y13695D01* X8411Y13687D01* X8396Y13655D01* X8383Y13621D01* X8377Y13596D01* Y15343D01* X8379Y15338D01* X8395Y15306D01* X8399Y15299D01* X8405Y15292D01* X8413Y15287D01* X8420Y15283D01* X8429Y15281D01* X8437Y15280D01* X8446Y15281D01* X8455Y15283D01* X8457Y15284D01* Y13714D01* G37* G36* Y15417D02*X8453Y15430D01* X8448Y15456D01* X8445Y15483D01* X8445Y15511D01* X8447Y15538D01* X8452Y15564D01* X8457Y15583D01* Y15417D01* G37* G36* Y15709D02*X8451Y15711D01* X8442Y15713D01* X8434Y15714D01* X8425Y15713D01* X8417Y15710D01* X8409Y15706D01* X8402Y15701D01* X8396Y15695D01* X8391Y15687D01* X8377Y15656D01* Y17303D01* X8379Y17299D01* X8385Y17292D01* X8393Y17287D01* X8400Y17283D01* X8409Y17281D01* X8417Y17280D01* X8426Y17281D01* X8435Y17283D01* X8443Y17286D01* X8450Y17291D01* X8456Y17297D01* X8457Y17298D01* Y15709D01* G37* G36* Y17365D02*X8450Y17378D01* X8440Y17404D01* X8433Y17430D01* X8428Y17456D01* X8425Y17483D01* X8425Y17511D01* X8427Y17538D01* X8432Y17564D01* X8439Y17590D01* X8448Y17616D01* X8457Y17634D01* Y17365D01* G37* G36* Y31121D02*X8463Y31118D01* X8498Y31109D01* X8534Y31103D01* X8570Y31100D01* X8606Y31100D01* X8642Y31104D01* X8678Y31111D01* X8707Y31119D01* Y29886D01* X8691Y29890D01* X8655Y29896D01* X8619Y29899D01* X8583Y29899D01* X8547Y29895D01* X8511Y29889D01* X8477Y29879D01* X8457Y29871D01* Y31121D01* G37* G36* Y29761D02*X8459Y29762D01* X8483Y29774D01* X8509Y29784D01* X8535Y29791D01* X8561Y29796D01* X8588Y29799D01* X8615Y29799D01* X8642Y29797D01* X8669Y29793D01* X8695Y29785D01* X8707Y29781D01* Y29218D01* X8700Y29215D01* X8674Y29208D01* X8648Y29203D01* X8621Y29200D01* X8594Y29200D01* X8567Y29202D01* X8540Y29207D01* X8514Y29214D01* X8488Y29223D01* X8464Y29235D01* X8457Y29238D01* Y29761D01* G37* G36* Y29128D02*X8483Y29118D01* X8518Y29109D01* X8554Y29103D01* X8590Y29100D01* X8626Y29100D01* X8662Y29104D01* X8698Y29111D01* X8707Y29113D01* Y27891D01* X8675Y27896D01* X8639Y27899D01* X8603Y27899D01* X8567Y27895D01* X8531Y27889D01* X8497Y27879D01* X8463Y27866D01* X8457Y27862D01* Y29128D01* G37* G36* Y27756D02*X8463Y27756D01* X8471Y27758D01* X8479Y27762D01* X8503Y27774D01* X8529Y27784D01* X8555Y27791D01* X8581Y27796D01* X8608Y27799D01* X8635Y27799D01* X8662Y27797D01* X8689Y27793D01* X8707Y27788D01* Y27212D01* X8694Y27208D01* X8668Y27203D01* X8641Y27200D01* X8614Y27200D01* X8587Y27202D01* X8560Y27207D01* X8534Y27214D01* X8508Y27223D01* X8484Y27235D01* X8476Y27238D01* X8467Y27240D01* X8458Y27240D01* X8457Y27240D01* Y27756D01* G37* G36* Y27137D02*X8469Y27131D01* X8503Y27118D01* X8538Y27109D01* X8574Y27103D01* X8610Y27100D01* X8646Y27100D01* X8682Y27104D01* X8707Y27109D01* Y25894D01* X8695Y25896D01* X8659Y25899D01* X8623Y25899D01* X8587Y25895D01* X8551Y25889D01* X8517Y25879D01* X8483Y25866D01* X8457Y25852D01* Y27137D01* G37* G36* Y25759D02*X8457Y25759D01* X8465Y25757D01* X8474Y25756D01* X8483Y25756D01* X8491Y25758D01* X8499Y25762D01* X8523Y25774D01* X8549Y25784D01* X8575Y25791D01* X8601Y25796D01* X8628Y25799D01* X8655Y25799D01* X8682Y25797D01* X8707Y25793D01* Y25206D01* X8688Y25203D01* X8661Y25200D01* X8634Y25200D01* X8607Y25202D01* X8580Y25207D01* X8554Y25214D01* X8528Y25223D01* X8504Y25235D01* X8496Y25238D01* X8487Y25240D01* X8478Y25240D01* X8470Y25239D01* X8461Y25237D01* X8457Y25234D01* Y25759D01* G37* G36* Y25147D02*X8457Y25146D01* X8489Y25131D01* X8523Y25118D01* X8558Y25109D01* X8594Y25103D01* X8630Y25100D01* X8666Y25100D01* X8702Y25104D01* X8707Y25105D01* Y23897D01* X8679Y23899D01* X8643Y23899D01* X8607Y23895D01* X8571Y23889D01* X8537Y23879D01* X8503Y23866D01* X8471Y23849D01* X8463Y23845D01* X8457Y23839D01* X8457Y23838D01* Y25147D01* G37* G36* Y23774D02*X8462Y23768D01* X8469Y23763D01* X8477Y23759D01* X8485Y23757D01* X8494Y23756D01* X8503Y23756D01* X8511Y23758D01* X8519Y23762D01* X8543Y23774D01* X8569Y23784D01* X8595Y23791D01* X8621Y23796D01* X8648Y23799D01* X8675Y23799D01* X8702Y23797D01* X8707Y23796D01* Y23203D01* X8681Y23200D01* X8654Y23200D01* X8627Y23202D01* X8600Y23207D01* X8574Y23214D01* X8548Y23223D01* X8524Y23235D01* X8516Y23238D01* X8507Y23240D01* X8498Y23240D01* X8490Y23239D01* X8481Y23237D01* X8474Y23233D01* X8467Y23228D01* X8461Y23221D01* X8457Y23215D01* Y23774D01* G37* G36* Y23167D02*X8458Y23164D01* X8463Y23157D01* X8469Y23151D01* X8477Y23146D01* X8509Y23131D01* X8537Y23121D01* Y21871D01* X8523Y21866D01* X8491Y21849D01* X8483Y21845D01* X8477Y21839D01* X8472Y21832D01* X8468Y21824D01* X8466Y21815D01* X8465Y21807D01* X8465Y21798D01* X8468Y21790D01* X8471Y21782D01* X8476Y21774D01* X8482Y21768D01* X8489Y21763D01* X8497Y21759D01* X8505Y21757D01* X8514Y21756D01* X8523Y21756D01* X8531Y21758D01* X8537Y21761D01* Y21238D01* X8536Y21238D01* X8527Y21240D01* X8518Y21240D01* X8510Y21239D01* X8501Y21237D01* X8494Y21233D01* X8487Y21228D01* X8481Y21221D01* X8476Y21214D01* X8473Y21206D01* X8471Y21197D01* X8470Y21189D01* X8471Y21180D01* X8474Y21172D01* X8478Y21164D01* X8483Y21157D01* X8489Y21151D01* X8497Y21146D01* X8529Y21131D01* X8537Y21128D01* Y19862D01* X8511Y19849D01* X8503Y19845D01* X8497Y19839D01* X8492Y19832D01* X8488Y19824D01* X8486Y19815D01* X8485Y19807D01* X8485Y19798D01* X8488Y19790D01* X8491Y19782D01* X8496Y19774D01* X8502Y19768D01* X8509Y19763D01* X8517Y19759D01* X8525Y19757D01* X8534Y19756D01* X8537Y19756D01* Y19240D01* X8530Y19239D01* X8521Y19237D01* X8514Y19233D01* X8507Y19228D01* X8501Y19221D01* X8496Y19214D01* X8493Y19206D01* X8491Y19197D01* X8490Y19189D01* X8491Y19180D01* X8494Y19172D01* X8498Y19164D01* X8503Y19157D01* X8509Y19151D01* X8517Y19146D01* X8537Y19137D01* Y17852D01* X8531Y17849D01* X8523Y17845D01* X8517Y17839D01* X8512Y17832D01* X8508Y17824D01* X8506Y17815D01* X8505Y17807D01* X8505Y17798D01* X8508Y17790D01* X8511Y17782D01* X8516Y17774D01* X8522Y17768D01* X8529Y17763D01* X8537Y17759D01* Y17234D01* X8534Y17233D01* X8527Y17228D01* X8521Y17221D01* X8516Y17214D01* X8513Y17206D01* X8511Y17197D01* X8510Y17189D01* X8511Y17180D01* X8514Y17172D01* X8518Y17164D01* X8523Y17157D01* X8529Y17151D01* X8537Y17147D01* Y15838D01* X8532Y15832D01* X8528Y15824D01* X8526Y15815D01* X8525Y15807D01* X8525Y15798D01* X8528Y15790D01* X8531Y15782D01* X8536Y15774D01* X8537Y15774D01* Y15215D01* X8536Y15214D01* X8533Y15206D01* X8531Y15197D01* X8530Y15189D01* X8531Y15180D01* X8534Y15172D01* X8537Y15167D01* Y9692D01* X8533Y9697D01* X8526Y9703D01* X8519Y9708D01* X8511Y9711D01* X8502Y9713D01* X8494Y9714D01* X8485Y9713D01* X8477Y9710D01* X8469Y9706D01* X8462Y9701D01* X8457Y9695D01* Y11285D01* X8460Y11283D01* X8469Y11281D01* X8477Y11280D01* X8486Y11281D01* X8495Y11283D01* X8503Y11286D01* X8510Y11291D01* X8516Y11297D01* X8521Y11304D01* X8525Y11312D01* X8527Y11320D01* X8528Y11329D01* X8528Y11338D01* X8526Y11346D01* X8522Y11354D01* X8510Y11378D01* X8500Y11404D01* X8493Y11430D01* X8488Y11456D01* X8485Y11483D01* X8485Y11511D01* X8487Y11538D01* X8492Y11564D01* X8499Y11590D01* X8508Y11616D01* X8520Y11640D01* X8523Y11649D01* X8525Y11657D01* X8525Y11666D01* X8524Y11674D01* X8522Y11683D01* X8518Y11690D01* X8513Y11697D01* X8506Y11703D01* X8499Y11708D01* X8491Y11711D01* X8482Y11713D01* X8474Y11714D01* X8465Y11713D01* X8457Y11710D01* X8457Y11710D01* Y13280D01* X8457Y13280D01* X8466Y13281D01* X8475Y13283D01* X8483Y13286D01* X8490Y13291D01* X8496Y13297D01* X8501Y13304D01* X8505Y13312D01* X8507Y13320D01* X8508Y13329D01* X8508Y13338D01* X8506Y13346D01* X8502Y13354D01* X8490Y13378D01* X8480Y13404D01* X8473Y13430D01* X8468Y13456D01* X8465Y13483D01* X8465Y13511D01* X8467Y13538D01* X8472Y13564D01* X8479Y13590D01* X8488Y13616D01* X8500Y13640D01* X8503Y13649D01* X8505Y13657D01* X8505Y13666D01* X8504Y13674D01* X8502Y13683D01* X8498Y13690D01* X8493Y13697D01* X8486Y13703D01* X8479Y13708D01* X8471Y13711D01* X8462Y13713D01* X8457Y13714D01* Y15284D01* X8463Y15286D01* X8470Y15291D01* X8476Y15297D01* X8481Y15304D01* X8485Y15312D01* X8487Y15320D01* X8488Y15329D01* X8488Y15338D01* X8486Y15346D01* X8482Y15354D01* X8470Y15378D01* X8460Y15404D01* X8457Y15417D01* Y15583D01* X8459Y15590D01* X8468Y15616D01* X8480Y15640D01* X8483Y15649D01* X8485Y15657D01* X8485Y15666D01* X8484Y15674D01* X8482Y15683D01* X8478Y15690D01* X8473Y15697D01* X8466Y15703D01* X8459Y15708D01* X8457Y15709D01* Y17298D01* X8461Y17304D01* X8465Y17312D01* X8467Y17320D01* X8468Y17329D01* X8468Y17338D01* X8466Y17346D01* X8462Y17354D01* X8457Y17365D01* Y17634D01* X8460Y17640D01* X8463Y17649D01* X8465Y17657D01* X8465Y17666D01* X8464Y17674D01* X8462Y17683D01* X8458Y17690D01* X8457Y17692D01* Y23167D01* G37* G36* X8537Y0D02*X8457D01* Y5403D01* X8465Y5372D01* X8479Y5338D01* X8495Y5306D01* X8499Y5299D01* X8505Y5292D01* X8513Y5287D01* X8520Y5283D01* X8529Y5281D01* X8537Y5280D01* Y3710D01* X8529Y3706D01* X8522Y3701D01* X8516Y3695D01* X8511Y3687D01* X8496Y3655D01* X8483Y3621D01* X8474Y3586D01* X8468Y3550D01* X8465Y3514D01* X8465Y3478D01* X8469Y3442D01* X8475Y3407D01* X8485Y3372D01* X8499Y3338D01* X8515Y3306D01* X8519Y3299D01* X8525Y3292D01* X8533Y3287D01* X8537Y3285D01* Y1695D01* X8536Y1695D01* X8531Y1687D01* X8516Y1655D01* X8503Y1621D01* X8494Y1586D01* X8488Y1550D01* X8485Y1514D01* X8485Y1478D01* X8489Y1442D01* X8495Y1407D01* X8505Y1372D01* X8519Y1338D01* X8535Y1306D01* X8537Y1303D01* Y0D01* G37* G36* Y5714D02*X8534Y5714D01* X8525Y5713D01* X8517Y5710D01* X8509Y5706D01* X8502Y5701D01* X8496Y5695D01* X8491Y5687D01* X8476Y5655D01* X8463Y5621D01* X8457Y5596D01* Y7343D01* X8459Y7338D01* X8475Y7306D01* X8479Y7299D01* X8485Y7292D01* X8493Y7287D01* X8500Y7283D01* X8509Y7281D01* X8517Y7280D01* X8526Y7281D01* X8535Y7283D01* X8537Y7284D01* Y5714D01* G37* G36* Y7417D02*X8533Y7430D01* X8528Y7456D01* X8525Y7483D01* X8525Y7511D01* X8527Y7538D01* X8532Y7564D01* X8537Y7583D01* Y7417D01* G37* G36* Y7709D02*X8531Y7711D01* X8522Y7713D01* X8514Y7714D01* X8505Y7713D01* X8497Y7710D01* X8489Y7706D01* X8482Y7701D01* X8476Y7695D01* X8471Y7687D01* X8457Y7656D01* Y9303D01* X8459Y9299D01* X8465Y9292D01* X8473Y9287D01* X8480Y9283D01* X8489Y9281D01* X8497Y9280D01* X8506Y9281D01* X8515Y9283D01* X8523Y9286D01* X8530Y9291D01* X8536Y9297D01* X8537Y9298D01* Y7709D01* G37* G36* Y9365D02*X8530Y9378D01* X8520Y9404D01* X8513Y9430D01* X8508Y9456D01* X8505Y9483D01* X8505Y9511D01* X8507Y9538D01* X8512Y9564D01* X8519Y9590D01* X8528Y9616D01* X8537Y9634D01* Y9365D01* G37* G36* Y23121D02*X8543Y23118D01* X8578Y23109D01* X8614Y23103D01* X8650Y23100D01* X8686Y23100D01* X8707Y23102D01* Y21899D01* X8699Y21899D01* X8663Y21899D01* X8627Y21895D01* X8591Y21889D01* X8557Y21879D01* X8537Y21871D01* Y23121D01* G37* G36* Y21761D02*X8539Y21762D01* X8563Y21774D01* X8589Y21784D01* X8615Y21791D01* X8641Y21796D01* X8668Y21799D01* X8695Y21799D01* X8707Y21798D01* Y21201D01* X8701Y21200D01* X8674Y21200D01* X8647Y21202D01* X8620Y21207D01* X8594Y21214D01* X8568Y21223D01* X8544Y21235D01* X8537Y21238D01* Y21761D01* G37* G36* Y21128D02*X8563Y21118D01* X8598Y21109D01* X8634Y21103D01* X8670Y21100D01* X8706Y21100D01* X8707Y21100D01* Y19899D01* X8683Y19899D01* X8647Y19895D01* X8611Y19889D01* X8577Y19879D01* X8543Y19866D01* X8537Y19862D01* Y21128D01* G37* G36* Y19756D02*X8543Y19756D01* X8551Y19758D01* X8559Y19762D01* X8583Y19774D01* X8609Y19784D01* X8635Y19791D01* X8661Y19796D01* X8688Y19799D01* X8707Y19799D01* Y19200D01* X8694Y19200D01* X8667Y19202D01* X8640Y19207D01* X8614Y19214D01* X8588Y19223D01* X8564Y19235D01* X8556Y19238D01* X8547Y19240D01* X8538Y19240D01* X8537Y19240D01* Y19756D01* G37* G36* Y19137D02*X8549Y19131D01* X8583Y19118D01* X8618Y19109D01* X8654Y19103D01* X8690Y19100D01* X8707Y19100D01* Y17899D01* X8703D01* X8667Y17895D01* X8631Y17889D01* X8597Y17879D01* X8563Y17866D01* X8537Y17852D01* Y19137D01* G37* G36* Y17759D02*X8537Y17759D01* X8545Y17757D01* X8554Y17756D01* X8563Y17756D01* X8571Y17758D01* X8579Y17762D01* X8603Y17774D01* X8629Y17784D01* X8655Y17791D01* X8681Y17796D01* X8707Y17799D01* Y17200D01* X8687Y17202D01* X8660Y17207D01* X8634Y17214D01* X8608Y17223D01* X8584Y17235D01* X8576Y17238D01* X8567Y17240D01* X8558Y17240D01* X8550Y17239D01* X8541Y17237D01* X8537Y17234D01* Y17759D01* G37* G36* Y17147D02*X8537Y17146D01* X8569Y17131D01* X8603Y17118D01* X8638Y17109D01* X8674Y17103D01* X8707Y17100D01* Y15897D01* X8687Y15895D01* X8651Y15889D01* X8617Y15879D01* X8583Y15866D01* X8551Y15849D01* X8543Y15845D01* X8537Y15839D01* X8537Y15838D01* Y17147D01* G37* G36* Y15774D02*X8542Y15768D01* X8549Y15763D01* X8557Y15759D01* X8565Y15757D01* X8574Y15756D01* X8583Y15756D01* X8591Y15758D01* X8599Y15762D01* X8623Y15774D01* X8649Y15784D01* X8675Y15791D01* X8701Y15796D01* X8707Y15797D01* Y15202D01* X8707Y15202D01* X8680Y15207D01* X8654Y15214D01* X8628Y15223D01* X8604Y15235D01* X8596Y15238D01* X8587Y15240D01* X8578Y15240D01* X8570Y15239D01* X8561Y15237D01* X8554Y15233D01* X8547Y15228D01* X8541Y15221D01* X8537Y15215D01* Y15774D01* G37* G36* Y15167D02*X8538Y15164D01* X8543Y15157D01* X8549Y15151D01* X8557Y15146D01* X8589Y15131D01* X8623Y15118D01* X8658Y15109D01* X8694Y15103D01* X8707Y15102D01* Y13895D01* X8707D01* X8671Y13889D01* X8637Y13879D01* X8603Y13866D01* X8571Y13849D01* X8563Y13845D01* X8557Y13839D01* X8552Y13832D01* X8548Y13824D01* X8546Y13815D01* X8545Y13807D01* X8545Y13798D01* X8548Y13790D01* X8551Y13782D01* X8556Y13774D01* X8562Y13768D01* X8569Y13763D01* X8577Y13759D01* X8585Y13757D01* X8594Y13756D01* X8603Y13756D01* X8611Y13758D01* X8619Y13762D01* X8643Y13774D01* X8669Y13784D01* X8695Y13791D01* X8707Y13794D01* Y13205D01* X8700Y13207D01* X8674Y13214D01* X8648Y13223D01* X8624Y13235D01* X8616Y13238D01* X8607Y13240D01* X8598Y13240D01* X8590Y13239D01* X8581Y13237D01* X8574Y13233D01* X8567Y13228D01* X8561Y13221D01* X8556Y13214D01* X8553Y13206D01* X8551Y13197D01* X8550Y13189D01* X8551Y13180D01* X8554Y13172D01* X8558Y13164D01* X8563Y13157D01* X8569Y13151D01* X8577Y13146D01* X8609Y13131D01* X8643Y13118D01* X8678Y13109D01* X8707Y13104D01* Y11892D01* X8691Y11889D01* X8657Y11879D01* X8623Y11866D01* X8591Y11849D01* X8583Y11845D01* X8577Y11839D01* X8572Y11832D01* X8568Y11824D01* X8566Y11815D01* X8565Y11807D01* X8565Y11798D01* X8568Y11790D01* X8571Y11782D01* X8576Y11774D01* X8582Y11768D01* X8589Y11763D01* X8597Y11759D01* X8605Y11757D01* X8614Y11756D01* X8623Y11756D01* X8631Y11758D01* X8639Y11762D01* X8663Y11774D01* X8689Y11784D01* X8707Y11789D01* Y11210D01* X8694Y11214D01* X8668Y11223D01* X8644Y11235D01* X8636Y11238D01* X8627Y11240D01* X8618Y11240D01* X8610Y11239D01* X8601Y11237D01* X8594Y11233D01* X8587Y11228D01* X8581Y11221D01* X8576Y11214D01* X8573Y11206D01* X8571Y11197D01* X8570Y11189D01* X8571Y11180D01* X8574Y11172D01* X8578Y11164D01* X8583Y11157D01* X8589Y11151D01* X8597Y11146D01* X8629Y11131D01* X8663Y11118D01* X8698Y11109D01* X8707Y11107D01* Y9887D01* X8677Y9879D01* X8643Y9866D01* X8611Y9849D01* X8603Y9845D01* X8597Y9839D01* X8592Y9832D01* X8588Y9824D01* X8586Y9815D01* X8585Y9807D01* X8585Y9798D01* X8588Y9790D01* X8591Y9782D01* X8596Y9774D01* X8602Y9768D01* X8609Y9763D01* X8617Y9759D01* X8625Y9757D01* X8634Y9756D01* X8643Y9756D01* X8651Y9758D01* X8659Y9762D01* X8683Y9774D01* X8707Y9783D01* Y9216D01* X8688Y9223D01* X8664Y9235D01* X8656Y9238D01* X8647Y9240D01* X8638Y9240D01* X8630Y9239D01* X8621Y9237D01* X8614Y9233D01* X8607Y9228D01* X8601Y9221D01* X8596Y9214D01* X8593Y9206D01* X8591Y9197D01* X8590Y9189D01* X8591Y9180D01* X8594Y9172D01* X8598Y9164D01* X8603Y9157D01* X8609Y9151D01* X8617Y9146D01* X8649Y9131D01* X8683Y9118D01* X8707Y9112D01* Y7882D01* X8697Y7879D01* X8663Y7866D01* X8631Y7849D01* X8623Y7845D01* X8617Y7839D01* X8612Y7832D01* X8608Y7824D01* X8606Y7815D01* X8605Y7807D01* X8605Y7798D01* X8608Y7790D01* X8611Y7782D01* X8616Y7774D01* X8622Y7768D01* X8629Y7763D01* X8637Y7759D01* X8645Y7757D01* X8654Y7756D01* X8663Y7756D01* X8671Y7758D01* X8679Y7762D01* X8703Y7774D01* X8707Y7776D01* Y7223D01* X8684Y7235D01* X8676Y7238D01* X8667Y7240D01* X8658Y7240D01* X8650Y7239D01* X8641Y7237D01* X8634Y7233D01* X8627Y7228D01* X8621Y7221D01* X8616Y7214D01* X8613Y7206D01* X8611Y7197D01* X8610Y7189D01* X8611Y7180D01* X8614Y7172D01* X8618Y7164D01* X8623Y7157D01* X8629Y7151D01* X8637Y7146D01* X8669Y7131D01* X8703Y7118D01* X8707Y7117D01* Y5875D01* X8683Y5866D01* X8651Y5849D01* X8643Y5845D01* X8637Y5839D01* X8632Y5832D01* X8628Y5824D01* X8626Y5815D01* X8625Y5807D01* X8625Y5798D01* X8628Y5790D01* X8631Y5782D01* X8636Y5774D01* X8642Y5768D01* X8649Y5763D01* X8657Y5759D01* X8665Y5757D01* X8674Y5756D01* X8683Y5756D01* X8691Y5758D01* X8699Y5762D01* X8707Y5766D01* Y5233D01* X8704Y5235D01* X8696Y5238D01* X8687Y5240D01* X8678Y5240D01* X8670Y5239D01* X8661Y5237D01* X8654Y5233D01* X8647Y5228D01* X8641Y5221D01* X8636Y5214D01* X8633Y5206D01* X8631Y5197D01* X8630Y5189D01* X8631Y5180D01* X8634Y5172D01* X8638Y5164D01* X8643Y5157D01* X8649Y5151D01* X8657Y5146D01* X8689Y5131D01* X8707Y5124D01* Y3867D01* X8703Y3866D01* X8671Y3849D01* X8663Y3845D01* X8657Y3839D01* X8652Y3832D01* X8648Y3824D01* X8646Y3815D01* X8645Y3807D01* X8645Y3798D01* X8648Y3790D01* X8651Y3782D01* X8656Y3774D01* X8662Y3768D01* X8669Y3763D01* X8677Y3759D01* X8685Y3757D01* X8694Y3756D01* X8703Y3756D01* X8707Y3757D01* Y3240D01* X8707D01* X8698Y3240D01* X8690Y3239D01* X8681Y3237D01* X8674Y3233D01* X8667Y3228D01* X8661Y3221D01* X8656Y3214D01* X8653Y3206D01* X8651Y3197D01* X8650Y3189D01* X8651Y3180D01* X8654Y3172D01* X8658Y3164D01* X8663Y3157D01* X8669Y3151D01* X8677Y3146D01* X8707Y3132D01* Y1858D01* X8691Y1849D01* X8683Y1845D01* X8677Y1839D01* X8672Y1832D01* X8668Y1824D01* X8666Y1815D01* X8665Y1807D01* X8665Y1798D01* X8668Y1790D01* X8671Y1782D01* X8676Y1774D01* X8682Y1768D01* X8689Y1763D01* X8697Y1759D01* X8705Y1757D01* X8707Y1756D01* Y1239D01* X8701Y1237D01* X8694Y1233D01* X8687Y1228D01* X8681Y1221D01* X8676Y1214D01* X8673Y1206D01* X8671Y1197D01* X8670Y1189D01* X8671Y1180D01* X8674Y1172D01* X8678Y1164D01* X8683Y1157D01* X8689Y1151D01* X8697Y1146D01* X8707Y1141D01* Y0D01* X8537D01* Y1303D01* X8539Y1299D01* X8545Y1292D01* X8553Y1287D01* X8560Y1283D01* X8569Y1281D01* X8577Y1280D01* X8586Y1281D01* X8595Y1283D01* X8603Y1286D01* X8610Y1291D01* X8616Y1297D01* X8621Y1304D01* X8625Y1312D01* X8627Y1320D01* X8628Y1329D01* X8628Y1338D01* X8626Y1346D01* X8622Y1354D01* X8610Y1378D01* X8600Y1404D01* X8593Y1430D01* X8588Y1456D01* X8585Y1483D01* X8585Y1511D01* X8587Y1538D01* X8592Y1564D01* X8599Y1590D01* X8608Y1616D01* X8620Y1640D01* X8623Y1649D01* X8625Y1657D01* X8625Y1666D01* X8624Y1674D01* X8622Y1683D01* X8618Y1690D01* X8613Y1697D01* X8606Y1703D01* X8599Y1708D01* X8591Y1711D01* X8582Y1713D01* X8574Y1714D01* X8565Y1713D01* X8557Y1710D01* X8549Y1706D01* X8542Y1701D01* X8537Y1695D01* Y3285D01* X8540Y3283D01* X8549Y3281D01* X8557Y3280D01* X8566Y3281D01* X8575Y3283D01* X8583Y3286D01* X8590Y3291D01* X8596Y3297D01* X8601Y3304D01* X8605Y3312D01* X8607Y3320D01* X8608Y3329D01* X8608Y3338D01* X8606Y3346D01* X8602Y3354D01* X8590Y3378D01* X8580Y3404D01* X8573Y3430D01* X8568Y3456D01* X8565Y3483D01* X8565Y3511D01* X8567Y3538D01* X8572Y3564D01* X8579Y3590D01* X8588Y3616D01* X8600Y3640D01* X8603Y3649D01* X8605Y3657D01* X8605Y3666D01* X8604Y3674D01* X8602Y3683D01* X8598Y3690D01* X8593Y3697D01* X8586Y3703D01* X8579Y3708D01* X8571Y3711D01* X8562Y3713D01* X8554Y3714D01* X8545Y3713D01* X8537Y3710D01* X8537Y3710D01* Y5280D01* X8537Y5280D01* X8546Y5281D01* X8555Y5283D01* X8563Y5286D01* X8570Y5291D01* X8576Y5297D01* X8581Y5304D01* X8585Y5312D01* X8587Y5320D01* X8588Y5329D01* X8588Y5338D01* X8586Y5346D01* X8582Y5354D01* X8570Y5378D01* X8560Y5404D01* X8553Y5430D01* X8548Y5456D01* X8545Y5483D01* X8545Y5511D01* X8547Y5538D01* X8552Y5564D01* X8559Y5590D01* X8568Y5616D01* X8580Y5640D01* X8583Y5649D01* X8585Y5657D01* X8585Y5666D01* X8584Y5674D01* X8582Y5683D01* X8578Y5690D01* X8573Y5697D01* X8566Y5703D01* X8559Y5708D01* X8551Y5711D01* X8542Y5713D01* X8537Y5714D01* Y7284D01* X8543Y7286D01* X8550Y7291D01* X8556Y7297D01* X8561Y7304D01* X8565Y7312D01* X8567Y7320D01* X8568Y7329D01* X8568Y7338D01* X8566Y7346D01* X8562Y7354D01* X8550Y7378D01* X8540Y7404D01* X8537Y7417D01* Y7583D01* X8539Y7590D01* X8548Y7616D01* X8560Y7640D01* X8563Y7649D01* X8565Y7657D01* X8565Y7666D01* X8564Y7674D01* X8562Y7683D01* X8558Y7690D01* X8553Y7697D01* X8546Y7703D01* X8539Y7708D01* X8537Y7709D01* Y9298D01* X8541Y9304D01* X8545Y9312D01* X8547Y9320D01* X8548Y9329D01* X8548Y9338D01* X8546Y9346D01* X8542Y9354D01* X8537Y9365D01* Y9634D01* X8540Y9640D01* X8543Y9649D01* X8545Y9657D01* X8545Y9666D01* X8544Y9674D01* X8542Y9683D01* X8538Y9690D01* X8537Y9692D01* Y15167D01* G37* G36* X8707Y40000D02*X8832D01* Y39714D01* X8829Y39716D01* X8820Y39718D01* X8812Y39719D01* X8803Y39719D01* X8794Y39717D01* X8786Y39713D01* X8779Y39708D01* X8773Y39702D01* X8768Y39695D01* X8764Y39687D01* X8762Y39679D01* X8761Y39670D01* X8761Y39661D01* X8763Y39653D01* X8767Y39645D01* X8779Y39621D01* X8789Y39595D01* X8796Y39569D01* X8801Y39543D01* X8804Y39516D01* X8804Y39489D01* X8802Y39462D01* X8797Y39435D01* X8790Y39409D01* X8781Y39383D01* X8769Y39359D01* X8766Y39351D01* X8764Y39342D01* X8764Y39333D01* X8765Y39325D01* X8767Y39317D01* X8771Y39309D01* X8776Y39302D01* X8783Y39296D01* X8790Y39291D01* X8798Y39288D01* X8807Y39286D01* X8815Y39285D01* X8824Y39286D01* X8832Y39289D01* X8832Y39289D01* Y37719D01* X8832Y37719D01* X8823Y37719D01* X8814Y37717D01* X8806Y37713D01* X8799Y37708D01* X8793Y37702D01* X8788Y37695D01* X8784Y37687D01* X8782Y37679D01* X8781Y37670D01* X8781Y37661D01* X8783Y37653D01* X8787Y37645D01* X8799Y37621D01* X8809Y37595D01* X8816Y37569D01* X8821Y37543D01* X8824Y37516D01* X8824Y37489D01* X8822Y37462D01* X8817Y37435D01* X8810Y37409D01* X8801Y37383D01* X8789Y37359D01* X8786Y37351D01* X8784Y37342D01* X8784Y37333D01* X8785Y37325D01* X8787Y37317D01* X8791Y37309D01* X8796Y37302D01* X8803Y37296D01* X8810Y37291D01* X8818Y37288D01* X8827Y37286D01* X8832Y37286D01* Y35716D01* X8826Y35713D01* X8819Y35708D01* X8813Y35702D01* X8808Y35695D01* X8804Y35687D01* X8802Y35679D01* X8801Y35670D01* X8801Y35661D01* X8803Y35653D01* X8807Y35645D01* X8819Y35621D01* X8829Y35595D01* X8832Y35583D01* Y35416D01* X8830Y35409D01* X8821Y35383D01* X8809Y35359D01* X8806Y35351D01* X8804Y35342D01* X8804Y35333D01* X8805Y35325D01* X8807Y35317D01* X8811Y35309D01* X8816Y35302D01* X8823Y35296D01* X8830Y35291D01* X8832Y35290D01* Y33701D01* X8828Y33695D01* X8824Y33687D01* X8822Y33679D01* X8821Y33670D01* X8821Y33661D01* X8823Y33653D01* X8827Y33645D01* X8832Y33634D01* Y33365D01* X8829Y33359D01* X8826Y33351D01* X8824Y33342D01* X8824Y33333D01* X8825Y33325D01* X8827Y33317D01* X8831Y33309D01* X8832Y33307D01* Y27833D01* X8831Y27835D01* X8826Y27842D01* X8820Y27848D01* X8812Y27853D01* X8780Y27868D01* X8746Y27881D01* X8711Y27890D01* X8707Y27891D01* Y29113D01* X8732Y29121D01* X8766Y29134D01* X8798Y29150D01* X8806Y29155D01* X8812Y29161D01* X8817Y29168D01* X8821Y29175D01* X8823Y29184D01* X8824Y29193D01* X8824Y29201D01* X8821Y29210D01* X8818Y29218D01* X8813Y29225D01* X8807Y29231D01* X8800Y29236D01* X8792Y29240D01* X8784Y29243D01* X8775Y29243D01* X8766Y29243D01* X8758Y29241D01* X8750Y29237D01* X8726Y29225D01* X8707Y29218D01* Y29781D01* X8721Y29776D01* X8745Y29764D01* X8753Y29761D01* X8762Y29759D01* X8771Y29759D01* X8779Y29760D01* X8788Y29762D01* X8795Y29766D01* X8802Y29772D01* X8808Y29778D01* X8813Y29785D01* X8816Y29793D01* X8818Y29802D01* X8819Y29810D01* X8818Y29819D01* X8815Y29827D01* X8811Y29835D01* X8806Y29842D01* X8800Y29848D01* X8792Y29853D01* X8760Y29868D01* X8726Y29881D01* X8707Y29886D01* Y31119D01* X8712Y31121D01* X8746Y31134D01* X8778Y31150D01* X8786Y31155D01* X8792Y31161D01* X8797Y31168D01* X8801Y31175D01* X8803Y31184D01* X8804Y31193D01* X8804Y31201D01* X8801Y31210D01* X8798Y31218D01* X8793Y31225D01* X8787Y31231D01* X8780Y31236D01* X8772Y31240D01* X8764Y31243D01* X8755Y31243D01* X8746Y31243D01* X8738Y31241D01* X8730Y31237D01* X8707Y31226D01* Y31773D01* X8725Y31764D01* X8733Y31761D01* X8742Y31759D01* X8751Y31759D01* X8759Y31760D01* X8768Y31762D01* X8775Y31766D01* X8782Y31772D01* X8788Y31778D01* X8793Y31785D01* X8796Y31793D01* X8798Y31802D01* X8799Y31810D01* X8798Y31819D01* X8795Y31827D01* X8791Y31835D01* X8786Y31842D01* X8780Y31848D01* X8772Y31853D01* X8740Y31868D01* X8707Y31880D01* Y33126D01* X8726Y33134D01* X8758Y33150D01* X8766Y33155D01* X8772Y33161D01* X8777Y33168D01* X8781Y33175D01* X8783Y33184D01* X8784Y33193D01* X8784Y33201D01* X8781Y33210D01* X8778Y33218D01* X8773Y33225D01* X8767Y33231D01* X8760Y33236D01* X8752Y33240D01* X8744Y33243D01* X8735Y33243D01* X8726Y33243D01* X8718Y33241D01* X8710Y33237D01* X8707Y33236D01* Y33764D01* X8713Y33761D01* X8722Y33759D01* X8731Y33759D01* X8739Y33760D01* X8748Y33762D01* X8755Y33766D01* X8762Y33772D01* X8768Y33778D01* X8773Y33785D01* X8776Y33793D01* X8778Y33802D01* X8779Y33810D01* X8778Y33819D01* X8775Y33827D01* X8771Y33835D01* X8766Y33842D01* X8760Y33848D01* X8752Y33853D01* X8720Y33868D01* X8707Y33873D01* Y35134D01* X8738Y35150D01* X8746Y35155D01* X8752Y35161D01* X8757Y35168D01* X8761Y35175D01* X8763Y35184D01* X8764Y35193D01* X8764Y35201D01* X8761Y35210D01* X8758Y35218D01* X8753Y35225D01* X8747Y35231D01* X8740Y35236D01* X8732Y35240D01* X8724Y35243D01* X8715Y35243D01* X8707Y35243D01* Y35759D01* X8711Y35759D01* X8719Y35760D01* X8728Y35762D01* X8735Y35766D01* X8742Y35772D01* X8748Y35778D01* X8753Y35785D01* X8756Y35793D01* X8758Y35802D01* X8759Y35810D01* X8758Y35819D01* X8755Y35827D01* X8751Y35835D01* X8746Y35842D01* X8740Y35848D01* X8732Y35853D01* X8707Y35865D01* Y37144D01* X8718Y37150D01* X8726Y37155D01* X8732Y37161D01* X8737Y37168D01* X8741Y37175D01* X8743Y37184D01* X8744Y37193D01* X8744Y37201D01* X8741Y37210D01* X8738Y37218D01* X8733Y37225D01* X8727Y37231D01* X8720Y37236D01* X8712Y37240D01* X8707Y37242D01* Y37762D01* X8708Y37762D01* X8715Y37766D01* X8722Y37772D01* X8728Y37778D01* X8733Y37785D01* X8736Y37793D01* X8738Y37802D01* X8739Y37810D01* X8738Y37819D01* X8735Y37827D01* X8731Y37835D01* X8726Y37842D01* X8720Y37848D01* X8712Y37853D01* X8707Y37855D01* Y39156D01* X8712Y39161D01* X8717Y39168D01* X8721Y39175D01* X8723Y39184D01* X8724Y39193D01* X8724Y39201D01* X8721Y39210D01* X8718Y39218D01* X8713Y39225D01* X8707Y39231D01* Y39777D01* X8708Y39778D01* X8713Y39785D01* X8716Y39793D01* X8718Y39802D01* X8719Y39810D01* X8718Y39819D01* X8715Y39827D01* X8711Y39835D01* X8707Y39840D01* Y40000D01* G37* G36* X8832Y19878D02*X8826Y19881D01* X8791Y19890D01* X8755Y19896D01* X8719Y19899D01* X8707Y19899D01* Y21100D01* X8742Y21104D01* X8778Y21111D01* X8812Y21121D01* X8832Y21128D01* Y19878D01* G37* G36* Y21238D02*X8830Y21237D01* X8806Y21225D01* X8780Y21215D01* X8754Y21208D01* X8728Y21203D01* X8707Y21201D01* Y21798D01* X8722Y21797D01* X8749Y21793D01* X8775Y21785D01* X8801Y21776D01* X8825Y21764D01* X8832Y21762D01* Y21238D01* G37* G36* Y21871D02*X8806Y21881D01* X8771Y21890D01* X8735Y21896D01* X8707Y21899D01* Y23102D01* X8722Y23104D01* X8758Y23111D01* X8792Y23121D01* X8826Y23134D01* X8832Y23137D01* Y21871D01* G37* G36* Y23243D02*X8826Y23243D01* X8818Y23241D01* X8810Y23237D01* X8786Y23225D01* X8760Y23215D01* X8734Y23208D01* X8708Y23203D01* X8707D01* Y23796D01* X8729Y23793D01* X8755Y23785D01* X8781Y23776D01* X8805Y23764D01* X8813Y23761D01* X8822Y23759D01* X8831Y23759D01* X8832Y23759D01* Y23243D01* G37* G36* Y23862D02*X8820Y23868D01* X8786Y23881D01* X8751Y23890D01* X8715Y23896D01* X8707Y23897D01* Y25105D01* X8738Y25111D01* X8772Y25121D01* X8806Y25134D01* X8832Y25147D01* Y23862D01* G37* G36* Y25240D02*X8832Y25240D01* X8824Y25243D01* X8815Y25243D01* X8806Y25243D01* X8798Y25241D01* X8790Y25237D01* X8766Y25225D01* X8740Y25215D01* X8714Y25208D01* X8707Y25206D01* Y25793D01* X8709Y25793D01* X8735Y25785D01* X8761Y25776D01* X8785Y25764D01* X8793Y25761D01* X8802Y25759D01* X8811Y25759D01* X8819Y25760D01* X8828Y25762D01* X8832Y25765D01* Y25240D01* G37* G36* Y25853D02*X8832Y25853D01* X8800Y25868D01* X8766Y25881D01* X8731Y25890D01* X8707Y25894D01* Y27109D01* X8718Y27111D01* X8752Y27121D01* X8786Y27134D01* X8818Y27150D01* X8826Y27155D01* X8832Y27161D01* X8832Y27161D01* Y25853D01* G37* G36* Y27225D02*X8827Y27231D01* X8820Y27236D01* X8812Y27240D01* X8804Y27243D01* X8795Y27243D01* X8786Y27243D01* X8778Y27241D01* X8770Y27237D01* X8746Y27225D01* X8720Y27215D01* X8707Y27212D01* Y27788D01* X8715Y27785D01* X8741Y27776D01* X8765Y27764D01* X8773Y27761D01* X8782Y27759D01* X8791Y27759D01* X8799Y27760D01* X8808Y27762D01* X8815Y27766D01* X8822Y27772D01* X8828Y27778D01* X8832Y27784D01* Y27225D01* G37* G36* Y40000D02*X8912D01* Y37596D01* X8904Y37627D01* X8890Y37661D01* X8874Y37694D01* X8870Y37701D01* X8864Y37707D01* X8856Y37712D01* X8849Y37716D01* X8840Y37718D01* X8832Y37719D01* Y39289D01* X8840Y39293D01* X8847Y39298D01* X8853Y39305D01* X8858Y39312D01* X8873Y39344D01* X8886Y39378D01* X8895Y39413D01* X8901Y39449D01* X8904Y39485D01* X8904Y39521D01* X8900Y39557D01* X8894Y39593D01* X8884Y39627D01* X8870Y39661D01* X8854Y39694D01* X8850Y39701D01* X8844Y39707D01* X8836Y39712D01* X8832Y39714D01* Y40000D01* G37* G36* Y37286D02*X8835Y37285D01* X8844Y37286D01* X8852Y37289D01* X8860Y37293D01* X8867Y37298D01* X8873Y37305D01* X8878Y37312D01* X8893Y37344D01* X8906Y37378D01* X8912Y37404D01* Y35656D01* X8910Y35661D01* X8894Y35694D01* X8890Y35701D01* X8884Y35707D01* X8876Y35712D01* X8869Y35716D01* X8860Y35718D01* X8852Y35719D01* X8843Y35719D01* X8834Y35717D01* X8832Y35716D01* Y37286D01* G37* G36* Y35583D02*X8836Y35569D01* X8841Y35543D01* X8844Y35516D01* X8844Y35489D01* X8842Y35462D01* X8837Y35435D01* X8832Y35416D01* Y35583D01* G37* G36* Y35290D02*X8838Y35288D01* X8847Y35286D01* X8855Y35285D01* X8864Y35286D01* X8872Y35289D01* X8880Y35293D01* X8887Y35298D01* X8893Y35305D01* X8898Y35312D01* X8912Y35343D01* Y33696D01* X8910Y33701D01* X8904Y33707D01* X8896Y33712D01* X8889Y33716D01* X8880Y33718D01* X8872Y33719D01* X8863Y33719D01* X8854Y33717D01* X8846Y33713D01* X8839Y33708D01* X8833Y33702D01* X8832Y33701D01* Y35290D01* G37* G36* Y33634D02*X8839Y33621D01* X8849Y33595D01* X8856Y33569D01* X8861Y33543D01* X8864Y33516D01* X8864Y33489D01* X8862Y33462D01* X8857Y33435D01* X8850Y33409D01* X8841Y33383D01* X8832Y33365D01* Y33634D01* G37* G36* Y33307D02*X8836Y33302D01* X8843Y33296D01* X8850Y33291D01* X8858Y33288D01* X8867Y33286D01* X8875Y33285D01* X8884Y33286D01* X8892Y33289D01* X8900Y33293D01* X8907Y33298D01* X8912Y33304D01* Y31714D01* X8909Y31716D01* X8900Y31718D01* X8892Y31719D01* X8883Y31719D01* X8874Y31717D01* X8866Y31713D01* X8859Y31708D01* X8853Y31702D01* X8848Y31695D01* X8844Y31687D01* X8842Y31679D01* X8841Y31670D01* X8841Y31661D01* X8843Y31653D01* X8847Y31645D01* X8859Y31621D01* X8869Y31595D01* X8876Y31569D01* X8881Y31543D01* X8884Y31516D01* X8884Y31489D01* X8882Y31462D01* X8877Y31435D01* X8870Y31409D01* X8861Y31383D01* X8849Y31359D01* X8846Y31351D01* X8844Y31342D01* X8844Y31333D01* X8845Y31325D01* X8847Y31317D01* X8851Y31309D01* X8856Y31302D01* X8863Y31296D01* X8870Y31291D01* X8878Y31288D01* X8887Y31286D01* X8895Y31285D01* X8904Y31286D01* X8912Y31289D01* X8912Y31289D01* Y29719D01* X8912Y29719D01* X8903Y29719D01* X8894Y29717D01* X8886Y29713D01* X8879Y29708D01* X8873Y29702D01* X8868Y29695D01* X8864Y29687D01* X8862Y29679D01* X8861Y29670D01* X8861Y29661D01* X8863Y29653D01* X8867Y29645D01* X8879Y29621D01* X8889Y29595D01* X8896Y29569D01* X8901Y29543D01* X8904Y29516D01* X8904Y29489D01* X8902Y29462D01* X8897Y29435D01* X8890Y29409D01* X8881Y29383D01* X8869Y29359D01* X8866Y29351D01* X8864Y29342D01* X8864Y29333D01* X8865Y29325D01* X8867Y29317D01* X8871Y29309D01* X8876Y29302D01* X8883Y29296D01* X8890Y29291D01* X8898Y29288D01* X8907Y29286D01* X8912Y29286D01* Y27716D01* X8906Y27713D01* X8899Y27708D01* X8893Y27702D01* X8888Y27695D01* X8884Y27687D01* X8882Y27679D01* X8881Y27670D01* X8881Y27661D01* X8883Y27653D01* X8887Y27645D01* X8899Y27621D01* X8909Y27595D01* X8912Y27583D01* Y27416D01* X8910Y27409D01* X8901Y27383D01* X8889Y27359D01* X8886Y27351D01* X8884Y27342D01* X8884Y27333D01* X8885Y27325D01* X8887Y27317D01* X8891Y27309D01* X8896Y27302D01* X8903Y27296D01* X8910Y27291D01* X8912Y27290D01* Y25701D01* X8908Y25695D01* X8904Y25687D01* X8902Y25679D01* X8901Y25670D01* X8901Y25661D01* X8903Y25653D01* X8907Y25645D01* X8912Y25634D01* Y25365D01* X8909Y25359D01* X8906Y25351D01* X8904Y25342D01* X8904Y25333D01* X8905Y25325D01* X8907Y25317D01* X8911Y25309D01* X8912Y25307D01* Y19833D01* X8911Y19835D01* X8906Y19842D01* X8900Y19848D01* X8892Y19853D01* X8860Y19868D01* X8832Y19878D01* Y21128D01* X8846Y21134D01* X8878Y21150D01* X8886Y21155D01* X8892Y21161D01* X8897Y21168D01* X8901Y21175D01* X8903Y21184D01* X8904Y21193D01* X8904Y21201D01* X8901Y21210D01* X8898Y21218D01* X8893Y21225D01* X8887Y21231D01* X8880Y21236D01* X8872Y21240D01* X8864Y21243D01* X8855Y21243D01* X8846Y21243D01* X8838Y21241D01* X8832Y21238D01* Y21762D01* X8833Y21761D01* X8842Y21759D01* X8851Y21759D01* X8859Y21760D01* X8868Y21762D01* X8875Y21766D01* X8882Y21772D01* X8888Y21778D01* X8893Y21785D01* X8896Y21793D01* X8898Y21802D01* X8899Y21810D01* X8898Y21819D01* X8895Y21827D01* X8891Y21835D01* X8886Y21842D01* X8880Y21848D01* X8872Y21853D01* X8840Y21868D01* X8832Y21871D01* Y23137D01* X8858Y23150D01* X8866Y23155D01* X8872Y23161D01* X8877Y23168D01* X8881Y23175D01* X8883Y23184D01* X8884Y23193D01* X8884Y23201D01* X8881Y23210D01* X8878Y23218D01* X8873Y23225D01* X8867Y23231D01* X8860Y23236D01* X8852Y23240D01* X8844Y23243D01* X8835Y23243D01* X8832Y23243D01* Y23759D01* X8839Y23760D01* X8848Y23762D01* X8855Y23766D01* X8862Y23772D01* X8868Y23778D01* X8873Y23785D01* X8876Y23793D01* X8878Y23802D01* X8879Y23810D01* X8878Y23819D01* X8875Y23827D01* X8871Y23835D01* X8866Y23842D01* X8860Y23848D01* X8852Y23853D01* X8832Y23862D01* Y25147D01* X8838Y25150D01* X8846Y25155D01* X8852Y25161D01* X8857Y25168D01* X8861Y25175D01* X8863Y25184D01* X8864Y25193D01* X8864Y25201D01* X8861Y25210D01* X8858Y25218D01* X8853Y25225D01* X8847Y25231D01* X8840Y25236D01* X8832Y25240D01* Y25765D01* X8835Y25766D01* X8842Y25772D01* X8848Y25778D01* X8853Y25785D01* X8856Y25793D01* X8858Y25802D01* X8859Y25810D01* X8858Y25819D01* X8855Y25827D01* X8851Y25835D01* X8846Y25842D01* X8840Y25848D01* X8832Y25853D01* Y27161D01* X8837Y27168D01* X8841Y27175D01* X8843Y27184D01* X8844Y27193D01* X8844Y27201D01* X8841Y27210D01* X8838Y27218D01* X8833Y27225D01* X8832Y27225D01* Y27784D01* X8833Y27785D01* X8836Y27793D01* X8838Y27802D01* X8839Y27810D01* X8838Y27819D01* X8835Y27827D01* X8832Y27833D01* Y33307D01* G37* G36* X8912Y7890D02*X8911Y7890D01* X8875Y7896D01* X8839Y7899D01* X8803Y7899D01* X8767Y7895D01* X8731Y7889D01* X8707Y7882D01* Y9112D01* X8718Y9109D01* X8754Y9103D01* X8790Y9100D01* X8826Y9100D01* X8862Y9104D01* X8898Y9111D01* X8912Y9115D01* Y7890D01* G37* G36* Y9220D02*X8900Y9215D01* X8874Y9208D01* X8848Y9203D01* X8821Y9200D01* X8794Y9200D01* X8767Y9202D01* X8740Y9207D01* X8714Y9214D01* X8707Y9216D01* Y9783D01* X8709Y9784D01* X8735Y9791D01* X8761Y9796D01* X8788Y9799D01* X8815Y9799D01* X8842Y9797D01* X8869Y9793D01* X8895Y9785D01* X8912Y9779D01* Y9220D01* G37* G36* Y9884D02*X8891Y9890D01* X8855Y9896D01* X8819Y9899D01* X8783Y9899D01* X8747Y9895D01* X8711Y9889D01* X8707Y9887D01* Y11107D01* X8734Y11103D01* X8770Y11100D01* X8806Y11100D01* X8842Y11104D01* X8878Y11111D01* X8912Y11121D01* X8912D01* Y9884D01* G37* G36* Y11229D02*X8906Y11225D01* X8880Y11215D01* X8854Y11208D01* X8828Y11203D01* X8801Y11200D01* X8774Y11200D01* X8747Y11202D01* X8720Y11207D01* X8707Y11210D01* Y11789D01* X8715Y11791D01* X8741Y11796D01* X8768Y11799D01* X8795Y11799D01* X8822Y11797D01* X8849Y11793D01* X8875Y11785D01* X8901Y11776D01* X8912Y11771D01* Y11229D01* G37* G36* Y11878D02*X8906Y11881D01* X8871Y11890D01* X8835Y11896D01* X8799Y11899D01* X8763Y11899D01* X8727Y11895D01* X8707Y11892D01* Y13104D01* X8714Y13103D01* X8750Y13100D01* X8786Y13100D01* X8822Y13104D01* X8858Y13111D01* X8892Y13121D01* X8912Y13128D01* Y11878D01* G37* G36* Y13238D02*X8910Y13237D01* X8886Y13225D01* X8860Y13215D01* X8834Y13208D01* X8808Y13203D01* X8781Y13200D01* X8754Y13200D01* X8727Y13202D01* X8707Y13205D01* Y13794D01* X8721Y13796D01* X8748Y13799D01* X8775Y13799D01* X8802Y13797D01* X8829Y13793D01* X8855Y13785D01* X8881Y13776D01* X8905Y13764D01* X8912Y13762D01* Y13238D01* G37* G36* Y13871D02*X8886Y13881D01* X8851Y13890D01* X8815Y13896D01* X8779Y13899D01* X8743Y13899D01* X8707Y13895D01* Y15102D01* X8730Y15100D01* X8766Y15100D01* X8802Y15104D01* X8838Y15111D01* X8872Y15121D01* X8906Y15134D01* X8912Y15137D01* Y13871D01* G37* G36* Y15243D02*X8906Y15243D01* X8898Y15241D01* X8890Y15237D01* X8866Y15225D01* X8840Y15215D01* X8814Y15208D01* X8788Y15203D01* X8761Y15200D01* X8734Y15200D01* X8707Y15202D01* Y15797D01* X8728Y15799D01* X8755Y15799D01* X8782Y15797D01* X8809Y15793D01* X8835Y15785D01* X8861Y15776D01* X8885Y15764D01* X8893Y15761D01* X8902Y15759D01* X8911Y15759D01* X8912Y15759D01* Y15243D01* G37* G36* Y15862D02*X8900Y15868D01* X8866Y15881D01* X8831Y15890D01* X8795Y15896D01* X8759Y15899D01* X8723Y15899D01* X8707Y15897D01* Y17100D01* X8710Y17100D01* X8746Y17100D01* X8782Y17104D01* X8818Y17111D01* X8852Y17121D01* X8886Y17134D01* X8912Y17147D01* Y15862D01* G37* G36* Y17240D02*X8912Y17240D01* X8904Y17243D01* X8895Y17243D01* X8886Y17243D01* X8878Y17241D01* X8870Y17237D01* X8846Y17225D01* X8820Y17215D01* X8794Y17208D01* X8768Y17203D01* X8741Y17200D01* X8714Y17200D01* X8707Y17200D01* Y17799D01* X8708Y17799D01* X8735Y17799D01* X8762Y17797D01* X8789Y17793D01* X8815Y17785D01* X8841Y17776D01* X8865Y17764D01* X8873Y17761D01* X8882Y17759D01* X8891Y17759D01* X8899Y17760D01* X8908Y17762D01* X8912Y17765D01* Y17240D01* G37* G36* Y17853D02*X8912Y17853D01* X8880Y17868D01* X8846Y17881D01* X8811Y17890D01* X8775Y17896D01* X8739Y17899D01* X8707Y17899D01* Y19100D01* X8726Y19100D01* X8762Y19104D01* X8798Y19111D01* X8832Y19121D01* X8866Y19134D01* X8898Y19150D01* X8906Y19155D01* X8912Y19161D01* X8912Y19161D01* Y17853D01* G37* G36* Y19225D02*X8907Y19231D01* X8900Y19236D01* X8892Y19240D01* X8884Y19243D01* X8875Y19243D01* X8866Y19243D01* X8858Y19241D01* X8850Y19237D01* X8826Y19225D01* X8800Y19215D01* X8774Y19208D01* X8748Y19203D01* X8721Y19200D01* X8707Y19200D01* Y19799D01* X8715Y19799D01* X8742Y19797D01* X8769Y19793D01* X8795Y19785D01* X8821Y19776D01* X8845Y19764D01* X8853Y19761D01* X8862Y19759D01* X8871Y19759D01* X8879Y19760D01* X8888Y19762D01* X8895Y19766D01* X8902Y19772D01* X8908Y19778D01* X8912Y19784D01* Y19225D01* G37* G36* Y40000D02*X9032D01* Y25596D01* X9024Y25627D01* X9010Y25661D01* X8994Y25694D01* X8990Y25701D01* X8984Y25707D01* X8976Y25712D01* X8969Y25716D01* X8960Y25718D01* X8952Y25719D01* X8943Y25719D01* X8934Y25717D01* X8926Y25713D01* X8919Y25708D01* X8913Y25702D01* X8912Y25701D01* Y27290D01* X8918Y27288D01* X8927Y27286D01* X8935Y27285D01* X8944Y27286D01* X8952Y27289D01* X8960Y27293D01* X8967Y27298D01* X8973Y27305D01* X8978Y27312D01* X8993Y27344D01* X9006Y27378D01* X9015Y27413D01* X9021Y27449D01* X9024Y27485D01* X9024Y27521D01* X9020Y27557D01* X9014Y27593D01* X9004Y27627D01* X8990Y27661D01* X8974Y27694D01* X8970Y27701D01* X8964Y27707D01* X8956Y27712D01* X8949Y27716D01* X8940Y27718D01* X8932Y27719D01* X8923Y27719D01* X8914Y27717D01* X8912Y27716D01* Y29286D01* X8915Y29285D01* X8924Y29286D01* X8932Y29289D01* X8940Y29293D01* X8947Y29298D01* X8953Y29305D01* X8958Y29312D01* X8973Y29344D01* X8986Y29378D01* X8995Y29413D01* X9001Y29449D01* X9004Y29485D01* X9004Y29521D01* X9000Y29557D01* X8994Y29593D01* X8984Y29627D01* X8970Y29661D01* X8954Y29694D01* X8950Y29701D01* X8944Y29707D01* X8936Y29712D01* X8929Y29716D01* X8920Y29718D01* X8912Y29719D01* Y31289D01* X8920Y31293D01* X8927Y31298D01* X8933Y31305D01* X8938Y31312D01* X8953Y31344D01* X8966Y31378D01* X8975Y31413D01* X8981Y31449D01* X8984Y31485D01* X8984Y31521D01* X8980Y31557D01* X8974Y31593D01* X8964Y31627D01* X8950Y31661D01* X8934Y31694D01* X8930Y31701D01* X8924Y31707D01* X8916Y31712D01* X8912Y31714D01* Y33304D01* X8913Y33305D01* X8918Y33312D01* X8933Y33344D01* X8946Y33378D01* X8955Y33413D01* X8961Y33449D01* X8964Y33485D01* X8964Y33521D01* X8960Y33557D01* X8954Y33593D01* X8944Y33627D01* X8930Y33661D01* X8914Y33694D01* X8912Y33696D01* Y35343D01* X8913Y35344D01* X8926Y35378D01* X8935Y35413D01* X8941Y35449D01* X8944Y35485D01* X8944Y35521D01* X8940Y35557D01* X8934Y35593D01* X8924Y35627D01* X8912Y35656D01* Y37404D01* X8915Y37413D01* X8921Y37449D01* X8924Y37485D01* X8924Y37521D01* X8920Y37557D01* X8914Y37593D01* X8912Y37596D01* Y40000D01* G37* G36* Y25634D02*X8919Y25621D01* X8929Y25595D01* X8936Y25569D01* X8941Y25543D01* X8944Y25516D01* X8944Y25489D01* X8942Y25462D01* X8937Y25435D01* X8930Y25409D01* X8921Y25383D01* X8912Y25365D01* Y25634D01* G37* G36* Y25307D02*X8916Y25302D01* X8923Y25296D01* X8930Y25291D01* X8938Y25288D01* X8947Y25286D01* X8955Y25285D01* X8964Y25286D01* X8972Y25289D01* X8980Y25293D01* X8987Y25298D01* X8993Y25305D01* X8998Y25312D01* X9013Y25344D01* X9026Y25378D01* X9032Y25404D01* Y23656D01* X9030Y23661D01* X9014Y23694D01* X9010Y23701D01* X9004Y23707D01* X8996Y23712D01* X8989Y23716D01* X8980Y23718D01* X8972Y23719D01* X8963Y23719D01* X8954Y23717D01* X8946Y23713D01* X8939Y23708D01* X8933Y23702D01* X8928Y23695D01* X8924Y23687D01* X8922Y23679D01* X8921Y23670D01* X8921Y23661D01* X8923Y23653D01* X8927Y23645D01* X8939Y23621D01* X8949Y23595D01* X8956Y23569D01* X8961Y23543D01* X8964Y23516D01* X8964Y23489D01* X8962Y23462D01* X8957Y23435D01* X8950Y23409D01* X8941Y23383D01* X8929Y23359D01* X8926Y23351D01* X8924Y23342D01* X8924Y23333D01* X8925Y23325D01* X8927Y23317D01* X8931Y23309D01* X8936Y23302D01* X8943Y23296D01* X8950Y23291D01* X8958Y23288D01* X8967Y23286D01* X8975Y23285D01* X8984Y23286D01* X8992Y23289D01* X9000Y23293D01* X9007Y23298D01* X9013Y23305D01* X9018Y23312D01* X9032Y23343D01* Y21696D01* X9030Y21701D01* X9024Y21707D01* X9016Y21712D01* X9009Y21716D01* X9000Y21718D01* X8992Y21719D01* X8983Y21719D01* X8974Y21717D01* X8966Y21713D01* X8959Y21708D01* X8953Y21702D01* X8948Y21695D01* X8944Y21687D01* X8942Y21679D01* X8941Y21670D01* X8941Y21661D01* X8943Y21653D01* X8947Y21645D01* X8959Y21621D01* X8969Y21595D01* X8976Y21569D01* X8981Y21543D01* X8984Y21516D01* X8984Y21489D01* X8982Y21462D01* X8977Y21435D01* X8970Y21409D01* X8961Y21383D01* X8949Y21359D01* X8946Y21351D01* X8944Y21342D01* X8944Y21333D01* X8945Y21325D01* X8947Y21317D01* X8951Y21309D01* X8956Y21302D01* X8963Y21296D01* X8970Y21291D01* X8978Y21288D01* X8987Y21286D01* X8995Y21285D01* X9004Y21286D01* X9012Y21289D01* X9020Y21293D01* X9027Y21298D01* X9032Y21304D01* Y19714D01* X9029Y19716D01* X9020Y19718D01* X9012Y19719D01* X9003Y19719D01* X8994Y19717D01* X8986Y19713D01* X8979Y19708D01* X8973Y19702D01* X8968Y19695D01* X8964Y19687D01* X8962Y19679D01* X8961Y19670D01* X8961Y19661D01* X8963Y19653D01* X8967Y19645D01* X8979Y19621D01* X8989Y19595D01* X8996Y19569D01* X9001Y19543D01* X9004Y19516D01* X9004Y19489D01* X9002Y19462D01* X8997Y19435D01* X8990Y19409D01* X8981Y19383D01* X8969Y19359D01* X8966Y19351D01* X8964Y19342D01* X8964Y19333D01* X8965Y19325D01* X8967Y19317D01* X8971Y19309D01* X8976Y19302D01* X8983Y19296D01* X8990Y19291D01* X8998Y19288D01* X9007Y19286D01* X9015Y19285D01* X9024Y19286D01* X9032Y19289D01* X9032Y19289D01* Y17719D01* X9032Y17719D01* X9023Y17719D01* X9014Y17717D01* X9006Y17713D01* X8999Y17708D01* X8993Y17702D01* X8988Y17695D01* X8984Y17687D01* X8982Y17679D01* X8981Y17670D01* X8981Y17661D01* X8983Y17653D01* X8987Y17645D01* X8999Y17621D01* X9009Y17595D01* X9016Y17569D01* X9021Y17543D01* X9024Y17516D01* X9024Y17489D01* X9022Y17462D01* X9017Y17435D01* X9010Y17409D01* X9001Y17383D01* X8989Y17359D01* X8986Y17351D01* X8984Y17342D01* X8984Y17333D01* X8985Y17325D01* X8987Y17317D01* X8991Y17309D01* X8996Y17302D01* X9003Y17296D01* X9010Y17291D01* X9018Y17288D01* X9027Y17286D01* X9032Y17286D01* Y15716D01* X9026Y15713D01* X9019Y15708D01* X9013Y15702D01* X9008Y15695D01* X9004Y15687D01* X9002Y15679D01* X9001Y15670D01* X9001Y15661D01* X9003Y15653D01* X9007Y15645D01* X9019Y15621D01* X9029Y15595D01* X9032Y15583D01* Y15416D01* X9030Y15409D01* X9021Y15383D01* X9009Y15359D01* X9006Y15351D01* X9004Y15342D01* X9004Y15333D01* X9005Y15325D01* X9007Y15317D01* X9011Y15309D01* X9016Y15302D01* X9023Y15296D01* X9030Y15291D01* X9032Y15290D01* Y13701D01* X9028Y13695D01* X9024Y13687D01* X9022Y13679D01* X9021Y13670D01* X9021Y13661D01* X9023Y13653D01* X9027Y13645D01* X9032Y13634D01* Y13365D01* X9029Y13359D01* X9026Y13351D01* X9024Y13342D01* X9024Y13333D01* X9025Y13325D01* X9027Y13317D01* X9031Y13309D01* X9032Y13307D01* Y7833D01* X9031Y7835D01* X9026Y7842D01* X9020Y7848D01* X9012Y7853D01* X8980Y7868D01* X8946Y7881D01* X8912Y7890D01* Y9115D01* X8932Y9121D01* X8966Y9134D01* X8998Y9150D01* X9006Y9155D01* X9012Y9161D01* X9017Y9168D01* X9021Y9175D01* X9023Y9184D01* X9024Y9193D01* X9024Y9201D01* X9021Y9210D01* X9018Y9218D01* X9013Y9225D01* X9007Y9231D01* X9000Y9236D01* X8992Y9240D01* X8984Y9243D01* X8975Y9243D01* X8966Y9243D01* X8958Y9241D01* X8950Y9237D01* X8926Y9225D01* X8912Y9220D01* Y9779D01* X8921Y9776D01* X8945Y9764D01* X8953Y9761D01* X8962Y9759D01* X8971Y9759D01* X8979Y9760D01* X8988Y9762D01* X8995Y9766D01* X9002Y9772D01* X9008Y9778D01* X9013Y9785D01* X9016Y9793D01* X9018Y9802D01* X9019Y9810D01* X9018Y9819D01* X9015Y9827D01* X9011Y9835D01* X9006Y9842D01* X9000Y9848D01* X8992Y9853D01* X8960Y9868D01* X8926Y9881D01* X8912Y9884D01* Y11121D01* X8946Y11134D01* X8978Y11150D01* X8986Y11155D01* X8992Y11161D01* X8997Y11168D01* X9001Y11175D01* X9003Y11184D01* X9004Y11193D01* X9004Y11201D01* X9001Y11210D01* X8998Y11218D01* X8993Y11225D01* X8987Y11231D01* X8980Y11236D01* X8972Y11240D01* X8964Y11243D01* X8955Y11243D01* X8946Y11243D01* X8938Y11241D01* X8930Y11237D01* X8912Y11229D01* Y11771D01* X8925Y11764D01* X8933Y11761D01* X8942Y11759D01* X8951Y11759D01* X8959Y11760D01* X8968Y11762D01* X8975Y11766D01* X8982Y11772D01* X8988Y11778D01* X8993Y11785D01* X8996Y11793D01* X8998Y11802D01* X8999Y11810D01* X8998Y11819D01* X8995Y11827D01* X8991Y11835D01* X8986Y11842D01* X8980Y11848D01* X8972Y11853D01* X8940Y11868D01* X8912Y11878D01* Y13128D01* X8926Y13134D01* X8958Y13150D01* X8966Y13155D01* X8972Y13161D01* X8977Y13168D01* X8981Y13175D01* X8983Y13184D01* X8984Y13193D01* X8984Y13201D01* X8981Y13210D01* X8978Y13218D01* X8973Y13225D01* X8967Y13231D01* X8960Y13236D01* X8952Y13240D01* X8944Y13243D01* X8935Y13243D01* X8926Y13243D01* X8918Y13241D01* X8912Y13238D01* Y13762D01* X8913Y13761D01* X8922Y13759D01* X8931Y13759D01* X8939Y13760D01* X8948Y13762D01* X8955Y13766D01* X8962Y13772D01* X8968Y13778D01* X8973Y13785D01* X8976Y13793D01* X8978Y13802D01* X8979Y13810D01* X8978Y13819D01* X8975Y13827D01* X8971Y13835D01* X8966Y13842D01* X8960Y13848D01* X8952Y13853D01* X8920Y13868D01* X8912Y13871D01* Y15137D01* X8938Y15150D01* X8946Y15155D01* X8952Y15161D01* X8957Y15168D01* X8961Y15175D01* X8963Y15184D01* X8964Y15193D01* X8964Y15201D01* X8961Y15210D01* X8958Y15218D01* X8953Y15225D01* X8947Y15231D01* X8940Y15236D01* X8932Y15240D01* X8924Y15243D01* X8915Y15243D01* X8912Y15243D01* Y15759D01* X8919Y15760D01* X8928Y15762D01* X8935Y15766D01* X8942Y15772D01* X8948Y15778D01* X8953Y15785D01* X8956Y15793D01* X8958Y15802D01* X8959Y15810D01* X8958Y15819D01* X8955Y15827D01* X8951Y15835D01* X8946Y15842D01* X8940Y15848D01* X8932Y15853D01* X8912Y15862D01* Y17147D01* X8918Y17150D01* X8926Y17155D01* X8932Y17161D01* X8937Y17168D01* X8941Y17175D01* X8943Y17184D01* X8944Y17193D01* X8944Y17201D01* X8941Y17210D01* X8938Y17218D01* X8933Y17225D01* X8927Y17231D01* X8920Y17236D01* X8912Y17240D01* Y17765D01* X8915Y17766D01* X8922Y17772D01* X8928Y17778D01* X8933Y17785D01* X8936Y17793D01* X8938Y17802D01* X8939Y17810D01* X8938Y17819D01* X8935Y17827D01* X8931Y17835D01* X8926Y17842D01* X8920Y17848D01* X8912Y17853D01* Y19161D01* X8917Y19168D01* X8921Y19175D01* X8923Y19184D01* X8924Y19193D01* X8924Y19201D01* X8921Y19210D01* X8918Y19218D01* X8913Y19225D01* X8912Y19225D01* Y19784D01* X8913Y19785D01* X8916Y19793D01* X8918Y19802D01* X8919Y19810D01* X8918Y19819D01* X8915Y19827D01* X8912Y19833D01* Y25307D01* G37* G36* Y27583D02*X8916Y27569D01* X8921Y27543D01* X8924Y27516D01* X8924Y27489D01* X8922Y27462D01* X8917Y27435D01* X8912Y27416D01* Y27583D01* G37* G36* X9032Y0D02*X8707D01* Y1141D01* X8729Y1131D01* X8763Y1118D01* X8798Y1109D01* X8834Y1103D01* X8870Y1100D01* X8906Y1100D01* X8942Y1104D01* X8978Y1111D01* X9012Y1121D01* X9032Y1128D01* Y0D01* G37* G36* Y1238D02*X9030Y1237D01* X9006Y1225D01* X8980Y1215D01* X8954Y1208D01* X8928Y1203D01* X8901Y1200D01* X8874Y1200D01* X8847Y1202D01* X8820Y1207D01* X8794Y1214D01* X8768Y1223D01* X8744Y1235D01* X8736Y1238D01* X8727Y1240D01* X8718Y1240D01* X8710Y1239D01* X8707Y1239D01* Y1756D01* X8714Y1756D01* X8723Y1756D01* X8731Y1758D01* X8739Y1762D01* X8763Y1774D01* X8789Y1784D01* X8815Y1791D01* X8841Y1796D01* X8868Y1799D01* X8895Y1799D01* X8922Y1797D01* X8949Y1793D01* X8975Y1785D01* X9001Y1776D01* X9025Y1764D01* X9032Y1762D01* Y1238D01* G37* G36* Y1871D02*X9006Y1881D01* X8971Y1890D01* X8935Y1896D01* X8899Y1899D01* X8863Y1899D01* X8827Y1895D01* X8791Y1889D01* X8757Y1879D01* X8723Y1866D01* X8707Y1858D01* Y3132D01* X8709Y3131D01* X8743Y3118D01* X8778Y3109D01* X8814Y3103D01* X8850Y3100D01* X8886Y3100D01* X8922Y3104D01* X8958Y3111D01* X8992Y3121D01* X9026Y3134D01* X9032Y3137D01* Y1871D01* G37* G36* Y3243D02*X9026Y3243D01* X9018Y3241D01* X9010Y3237D01* X8986Y3225D01* X8960Y3215D01* X8934Y3208D01* X8908Y3203D01* X8881Y3200D01* X8854Y3200D01* X8827Y3202D01* X8800Y3207D01* X8774Y3214D01* X8748Y3223D01* X8724Y3235D01* X8716Y3238D01* X8707Y3240D01* Y3757D01* X8711Y3758D01* X8719Y3762D01* X8743Y3774D01* X8769Y3784D01* X8795Y3791D01* X8821Y3796D01* X8848Y3799D01* X8875Y3799D01* X8902Y3797D01* X8929Y3793D01* X8955Y3785D01* X8981Y3776D01* X9005Y3764D01* X9013Y3761D01* X9022Y3759D01* X9031Y3759D01* X9032Y3759D01* Y3243D01* G37* G36* Y3862D02*X9020Y3868D01* X8986Y3881D01* X8951Y3890D01* X8915Y3896D01* X8879Y3899D01* X8843Y3899D01* X8807Y3895D01* X8771Y3889D01* X8737Y3879D01* X8707Y3867D01* Y5124D01* X8723Y5118D01* X8758Y5109D01* X8794Y5103D01* X8830Y5100D01* X8866Y5100D01* X8902Y5104D01* X8938Y5111D01* X8972Y5121D01* X9006Y5134D01* X9032Y5147D01* Y3862D01* G37* G36* Y5240D02*X9032Y5240D01* X9024Y5243D01* X9015Y5243D01* X9006Y5243D01* X8998Y5241D01* X8990Y5237D01* X8966Y5225D01* X8940Y5215D01* X8914Y5208D01* X8888Y5203D01* X8861Y5200D01* X8834Y5200D01* X8807Y5202D01* X8780Y5207D01* X8754Y5214D01* X8728Y5223D01* X8707Y5233D01* Y5766D01* X8723Y5774D01* X8749Y5784D01* X8775Y5791D01* X8801Y5796D01* X8828Y5799D01* X8855Y5799D01* X8882Y5797D01* X8909Y5793D01* X8935Y5785D01* X8961Y5776D01* X8985Y5764D01* X8993Y5761D01* X9002Y5759D01* X9011Y5759D01* X9019Y5760D01* X9028Y5762D01* X9032Y5765D01* Y5240D01* G37* G36* Y5853D02*X9032Y5853D01* X9000Y5868D01* X8966Y5881D01* X8931Y5890D01* X8895Y5896D01* X8859Y5899D01* X8823Y5899D01* X8787Y5895D01* X8751Y5889D01* X8717Y5879D01* X8707Y5875D01* Y7117D01* X8738Y7109D01* X8774Y7103D01* X8810Y7100D01* X8846Y7100D01* X8882Y7104D01* X8918Y7111D01* X8952Y7121D01* X8986Y7134D01* X9018Y7150D01* X9026Y7155D01* X9032Y7161D01* X9032Y7161D01* Y5853D01* G37* G36* Y7225D02*X9027Y7231D01* X9020Y7236D01* X9012Y7240D01* X9004Y7243D01* X8995Y7243D01* X8986Y7243D01* X8978Y7241D01* X8970Y7237D01* X8946Y7225D01* X8920Y7215D01* X8894Y7208D01* X8868Y7203D01* X8841Y7200D01* X8814Y7200D01* X8787Y7202D01* X8760Y7207D01* X8734Y7214D01* X8708Y7223D01* X8707Y7223D01* Y7776D01* X8729Y7784D01* X8755Y7791D01* X8781Y7796D01* X8808Y7799D01* X8835Y7799D01* X8862Y7797D01* X8889Y7793D01* X8915Y7785D01* X8941Y7776D01* X8965Y7764D01* X8973Y7761D01* X8982Y7759D01* X8991Y7759D01* X8999Y7760D01* X9008Y7762D01* X9015Y7766D01* X9022Y7772D01* X9028Y7778D01* X9032Y7784D01* Y7225D01* G37* G36* Y40000D02*X9112D01* Y17596D01* X9104Y17627D01* X9090Y17661D01* X9074Y17694D01* X9070Y17701D01* X9064Y17707D01* X9056Y17712D01* X9049Y17716D01* X9040Y17718D01* X9032Y17719D01* Y19289D01* X9040Y19293D01* X9047Y19298D01* X9053Y19305D01* X9058Y19312D01* X9073Y19344D01* X9086Y19378D01* X9095Y19413D01* X9101Y19449D01* X9104Y19485D01* X9104Y19521D01* X9100Y19557D01* X9094Y19593D01* X9084Y19627D01* X9070Y19661D01* X9054Y19694D01* X9050Y19701D01* X9044Y19707D01* X9036Y19712D01* X9032Y19714D01* Y21304D01* X9033Y21305D01* X9038Y21312D01* X9053Y21344D01* X9066Y21378D01* X9075Y21413D01* X9081Y21449D01* X9084Y21485D01* X9084Y21521D01* X9080Y21557D01* X9074Y21593D01* X9064Y21627D01* X9050Y21661D01* X9034Y21694D01* X9032Y21696D01* Y23343D01* X9033Y23344D01* X9046Y23378D01* X9055Y23413D01* X9061Y23449D01* X9064Y23485D01* X9064Y23521D01* X9060Y23557D01* X9054Y23593D01* X9044Y23627D01* X9032Y23656D01* Y25404D01* X9035Y25413D01* X9041Y25449D01* X9044Y25485D01* X9044Y25521D01* X9040Y25557D01* X9034Y25593D01* X9032Y25596D01* Y40000D01* G37* G36* X9112Y0D02*X9032D01* Y1128D01* X9046Y1134D01* X9078Y1150D01* X9086Y1155D01* X9092Y1161D01* X9097Y1168D01* X9101Y1175D01* X9103Y1184D01* X9104Y1193D01* X9104Y1201D01* X9101Y1210D01* X9098Y1218D01* X9093Y1225D01* X9087Y1231D01* X9080Y1236D01* X9072Y1240D01* X9064Y1243D01* X9055Y1243D01* X9046Y1243D01* X9038Y1241D01* X9032Y1238D01* Y1762D01* X9033Y1761D01* X9042Y1759D01* X9051Y1759D01* X9059Y1760D01* X9068Y1762D01* X9075Y1766D01* X9082Y1772D01* X9088Y1778D01* X9093Y1785D01* X9096Y1793D01* X9098Y1802D01* X9099Y1810D01* X9098Y1819D01* X9095Y1827D01* X9091Y1835D01* X9086Y1842D01* X9080Y1848D01* X9072Y1853D01* X9040Y1868D01* X9032Y1871D01* Y3137D01* X9058Y3150D01* X9066Y3155D01* X9072Y3161D01* X9077Y3168D01* X9081Y3175D01* X9083Y3184D01* X9084Y3193D01* X9084Y3201D01* X9081Y3210D01* X9078Y3218D01* X9073Y3225D01* X9067Y3231D01* X9060Y3236D01* X9052Y3240D01* X9044Y3243D01* X9035Y3243D01* X9032Y3243D01* Y3759D01* X9039Y3760D01* X9048Y3762D01* X9055Y3766D01* X9062Y3772D01* X9068Y3778D01* X9073Y3785D01* X9076Y3793D01* X9078Y3802D01* X9079Y3810D01* X9078Y3819D01* X9075Y3827D01* X9071Y3835D01* X9066Y3842D01* X9060Y3848D01* X9052Y3853D01* X9032Y3862D01* Y5147D01* X9038Y5150D01* X9046Y5155D01* X9052Y5161D01* X9057Y5168D01* X9061Y5175D01* X9063Y5184D01* X9064Y5193D01* X9064Y5201D01* X9061Y5210D01* X9058Y5218D01* X9053Y5225D01* X9047Y5231D01* X9040Y5236D01* X9032Y5240D01* Y5765D01* X9035Y5766D01* X9042Y5772D01* X9048Y5778D01* X9053Y5785D01* X9056Y5793D01* X9058Y5802D01* X9059Y5810D01* X9058Y5819D01* X9055Y5827D01* X9051Y5835D01* X9046Y5842D01* X9040Y5848D01* X9032Y5853D01* Y7161D01* X9037Y7168D01* X9041Y7175D01* X9043Y7184D01* X9044Y7193D01* X9044Y7201D01* X9041Y7210D01* X9038Y7218D01* X9033Y7225D01* X9032Y7225D01* Y7784D01* X9033Y7785D01* X9036Y7793D01* X9038Y7802D01* X9039Y7810D01* X9038Y7819D01* X9035Y7827D01* X9032Y7833D01* Y13307D01* X9036Y13302D01* X9043Y13296D01* X9050Y13291D01* X9058Y13288D01* X9067Y13286D01* X9075Y13285D01* X9084Y13286D01* X9092Y13289D01* X9100Y13293D01* X9107Y13298D01* X9112Y13304D01* Y11714D01* X9109Y11716D01* X9100Y11718D01* X9092Y11719D01* X9083Y11719D01* X9074Y11717D01* X9066Y11713D01* X9059Y11708D01* X9053Y11702D01* X9048Y11695D01* X9044Y11687D01* X9042Y11679D01* X9041Y11670D01* X9041Y11661D01* X9043Y11653D01* X9047Y11645D01* X9059Y11621D01* X9069Y11595D01* X9076Y11569D01* X9081Y11543D01* X9084Y11516D01* X9084Y11489D01* X9082Y11462D01* X9077Y11435D01* X9070Y11409D01* X9061Y11383D01* X9049Y11359D01* X9046Y11351D01* X9044Y11342D01* X9044Y11333D01* X9045Y11325D01* X9047Y11317D01* X9051Y11309D01* X9056Y11302D01* X9063Y11296D01* X9070Y11291D01* X9078Y11288D01* X9087Y11286D01* X9095Y11285D01* X9104Y11286D01* X9112Y11289D01* X9112Y11289D01* Y9719D01* X9112Y9719D01* X9103Y9719D01* X9094Y9717D01* X9086Y9713D01* X9079Y9708D01* X9073Y9702D01* X9068Y9695D01* X9064Y9687D01* X9062Y9679D01* X9061Y9670D01* X9061Y9661D01* X9063Y9653D01* X9067Y9645D01* X9079Y9621D01* X9089Y9595D01* X9096Y9569D01* X9101Y9543D01* X9104Y9516D01* X9104Y9489D01* X9102Y9462D01* X9097Y9435D01* X9090Y9409D01* X9081Y9383D01* X9069Y9359D01* X9066Y9351D01* X9064Y9342D01* X9064Y9333D01* X9065Y9325D01* X9067Y9317D01* X9071Y9309D01* X9076Y9302D01* X9083Y9296D01* X9090Y9291D01* X9098Y9288D01* X9107Y9286D01* X9112Y9286D01* Y7716D01* X9106Y7713D01* X9099Y7708D01* X9093Y7702D01* X9088Y7695D01* X9084Y7687D01* X9082Y7679D01* X9081Y7670D01* X9081Y7661D01* X9083Y7653D01* X9087Y7645D01* X9099Y7621D01* X9109Y7595D01* X9112Y7583D01* Y7416D01* X9110Y7409D01* X9101Y7383D01* X9089Y7359D01* X9086Y7351D01* X9084Y7342D01* X9084Y7333D01* X9085Y7325D01* X9087Y7317D01* X9091Y7309D01* X9096Y7302D01* X9103Y7296D01* X9110Y7291D01* X9112Y7290D01* Y5701D01* X9108Y5695D01* X9104Y5687D01* X9102Y5679D01* X9101Y5670D01* X9101Y5661D01* X9103Y5653D01* X9107Y5645D01* X9112Y5634D01* Y5365D01* X9109Y5359D01* X9106Y5351D01* X9104Y5342D01* X9104Y5333D01* X9105Y5325D01* X9107Y5317D01* X9111Y5309D01* X9112Y5307D01* Y0D01* G37* G36* Y13696D02*X9110Y13701D01* X9104Y13707D01* X9096Y13712D01* X9089Y13716D01* X9080Y13718D01* X9072Y13719D01* X9063Y13719D01* X9054Y13717D01* X9046Y13713D01* X9039Y13708D01* X9033Y13702D01* X9032Y13701D01* Y15290D01* X9038Y15288D01* X9047Y15286D01* X9055Y15285D01* X9064Y15286D01* X9072Y15289D01* X9080Y15293D01* X9087Y15298D01* X9093Y15305D01* X9098Y15312D01* X9112Y15343D01* Y13696D01* G37* G36* Y15656D02*X9110Y15661D01* X9094Y15694D01* X9090Y15701D01* X9084Y15707D01* X9076Y15712D01* X9069Y15716D01* X9060Y15718D01* X9052Y15719D01* X9043Y15719D01* X9034Y15717D01* X9032Y15716D01* Y17286D01* X9035Y17285D01* X9044Y17286D01* X9052Y17289D01* X9060Y17293D01* X9067Y17298D01* X9073Y17305D01* X9078Y17312D01* X9093Y17344D01* X9106Y17378D01* X9112Y17404D01* Y15656D01* G37* G36* Y40000D02*X9192D01* Y9596D01* X9184Y9627D01* X9170Y9661D01* X9154Y9694D01* X9150Y9701D01* X9144Y9707D01* X9136Y9712D01* X9129Y9716D01* X9120Y9718D01* X9112Y9719D01* Y11289D01* X9120Y11293D01* X9127Y11298D01* X9133Y11305D01* X9138Y11312D01* X9153Y11344D01* X9166Y11378D01* X9175Y11413D01* X9181Y11449D01* X9184Y11485D01* X9184Y11521D01* X9180Y11557D01* X9174Y11593D01* X9164Y11627D01* X9150Y11661D01* X9134Y11694D01* X9130Y11701D01* X9124Y11707D01* X9116Y11712D01* X9112Y11714D01* Y13304D01* X9113Y13305D01* X9118Y13312D01* X9133Y13344D01* X9146Y13378D01* X9155Y13413D01* X9161Y13449D01* X9164Y13485D01* X9164Y13521D01* X9160Y13557D01* X9154Y13593D01* X9144Y13627D01* X9130Y13661D01* X9114Y13694D01* X9112Y13696D01* Y15343D01* X9113Y15344D01* X9126Y15378D01* X9135Y15413D01* X9141Y15449D01* X9144Y15485D01* X9144Y15521D01* X9140Y15557D01* X9134Y15593D01* X9124Y15627D01* X9112Y15656D01* Y17404D01* X9115Y17413D01* X9121Y17449D01* X9124Y17485D01* X9124Y17521D01* X9120Y17557D01* X9114Y17593D01* X9112Y17596D01* Y40000D01* G37* G36* X9192Y0D02*X9112D01* Y5307D01* X9116Y5302D01* X9123Y5296D01* X9130Y5291D01* X9138Y5288D01* X9147Y5286D01* X9155Y5285D01* X9164Y5286D01* X9172Y5289D01* X9180Y5293D01* X9187Y5298D01* X9192Y5304D01* Y3714D01* X9189Y3716D01* X9180Y3718D01* X9172Y3719D01* X9163Y3719D01* X9154Y3717D01* X9146Y3713D01* X9139Y3708D01* X9133Y3702D01* X9128Y3695D01* X9124Y3687D01* X9122Y3679D01* X9121Y3670D01* X9121Y3661D01* X9123Y3653D01* X9127Y3645D01* X9139Y3621D01* X9149Y3595D01* X9156Y3569D01* X9161Y3543D01* X9164Y3516D01* X9164Y3489D01* X9162Y3462D01* X9157Y3435D01* X9150Y3409D01* X9141Y3383D01* X9129Y3359D01* X9126Y3351D01* X9124Y3342D01* X9124Y3333D01* X9125Y3325D01* X9127Y3317D01* X9131Y3309D01* X9136Y3302D01* X9143Y3296D01* X9150Y3291D01* X9158Y3288D01* X9167Y3286D01* X9175Y3285D01* X9184Y3286D01* X9192Y3289D01* X9192Y3289D01* Y1719D01* X9192Y1719D01* X9183Y1719D01* X9174Y1717D01* X9166Y1713D01* X9159Y1708D01* X9153Y1702D01* X9148Y1695D01* X9144Y1687D01* X9142Y1679D01* X9141Y1670D01* X9141Y1661D01* X9143Y1653D01* X9147Y1645D01* X9159Y1621D01* X9169Y1595D01* X9176Y1569D01* X9181Y1543D01* X9184Y1516D01* X9184Y1489D01* X9182Y1462D01* X9177Y1435D01* X9170Y1409D01* X9161Y1383D01* X9149Y1359D01* X9146Y1351D01* X9144Y1342D01* X9144Y1333D01* X9145Y1325D01* X9147Y1317D01* X9151Y1309D01* X9156Y1302D01* X9163Y1296D01* X9170Y1291D01* X9178Y1288D01* X9187Y1286D01* X9192Y1286D01* Y0D01* G37* G36* Y5696D02*X9190Y5701D01* X9184Y5707D01* X9176Y5712D01* X9169Y5716D01* X9160Y5718D01* X9152Y5719D01* X9143Y5719D01* X9134Y5717D01* X9126Y5713D01* X9119Y5708D01* X9113Y5702D01* X9112Y5701D01* Y7290D01* X9118Y7288D01* X9127Y7286D01* X9135Y7285D01* X9144Y7286D01* X9152Y7289D01* X9160Y7293D01* X9167Y7298D01* X9173Y7305D01* X9178Y7312D01* X9192Y7343D01* Y5696D01* G37* G36* Y7656D02*X9190Y7661D01* X9174Y7694D01* X9170Y7701D01* X9164Y7707D01* X9156Y7712D01* X9149Y7716D01* X9140Y7718D01* X9132Y7719D01* X9123Y7719D01* X9114Y7717D01* X9112Y7716D01* Y9286D01* X9115Y9285D01* X9124Y9286D01* X9132Y9289D01* X9140Y9293D01* X9147Y9298D01* X9153Y9305D01* X9158Y9312D01* X9173Y9344D01* X9186Y9378D01* X9192Y9404D01* Y7656D01* G37* G36* Y40000D02*X10237D01* Y39692D01* X10233Y39697D01* X10226Y39703D01* X10219Y39708D01* X10211Y39711D01* X10202Y39713D01* X10194Y39714D01* X10185Y39713D01* X10177Y39710D01* X10169Y39706D01* X10162Y39701D01* X10156Y39695D01* X10151Y39687D01* X10136Y39655D01* X10123Y39621D01* X10114Y39586D01* X10108Y39550D01* X10105Y39514D01* X10105Y39478D01* X10109Y39442D01* X10115Y39407D01* X10125Y39372D01* X10139Y39338D01* X10155Y39306D01* X10159Y39299D01* X10165Y39292D01* X10173Y39287D01* X10180Y39283D01* X10189Y39281D01* X10197Y39280D01* X10206Y39281D01* X10215Y39283D01* X10223Y39286D01* X10230Y39291D01* X10236Y39297D01* X10237Y39298D01* Y37709D01* X10231Y37711D01* X10222Y37713D01* X10214Y37714D01* X10205Y37713D01* X10197Y37710D01* X10189Y37706D01* X10182Y37701D01* X10176Y37695D01* X10171Y37687D01* X10156Y37655D01* X10143Y37621D01* X10134Y37586D01* X10128Y37550D01* X10125Y37514D01* X10125Y37478D01* X10129Y37442D01* X10135Y37407D01* X10145Y37372D01* X10159Y37338D01* X10175Y37306D01* X10179Y37299D01* X10185Y37292D01* X10193Y37287D01* X10200Y37283D01* X10209Y37281D01* X10217Y37280D01* X10226Y37281D01* X10235Y37283D01* X10237Y37284D01* Y35714D01* X10234Y35714D01* X10225Y35713D01* X10217Y35710D01* X10209Y35706D01* X10202Y35701D01* X10196Y35695D01* X10191Y35687D01* X10176Y35655D01* X10163Y35621D01* X10154Y35586D01* X10148Y35550D01* X10145Y35514D01* X10145Y35478D01* X10149Y35442D01* X10155Y35407D01* X10165Y35372D01* X10179Y35338D01* X10195Y35306D01* X10199Y35299D01* X10205Y35292D01* X10213Y35287D01* X10220Y35283D01* X10229Y35281D01* X10237Y35280D01* Y33710D01* X10229Y33706D01* X10222Y33701D01* X10216Y33695D01* X10211Y33687D01* X10196Y33655D01* X10183Y33621D01* X10174Y33586D01* X10168Y33550D01* X10165Y33514D01* X10165Y33478D01* X10169Y33442D01* X10175Y33407D01* X10185Y33372D01* X10199Y33338D01* X10215Y33306D01* X10219Y33299D01* X10225Y33292D01* X10233Y33287D01* X10237Y33285D01* Y31695D01* X10236Y31695D01* X10231Y31687D01* X10216Y31655D01* X10203Y31621D01* X10194Y31586D01* X10188Y31550D01* X10185Y31514D01* X10185Y31478D01* X10189Y31442D01* X10195Y31407D01* X10205Y31372D01* X10219Y31338D01* X10235Y31306D01* X10237Y31303D01* Y29656D01* X10236Y29655D01* X10223Y29621D01* X10214Y29586D01* X10208Y29550D01* X10205Y29514D01* X10205Y29478D01* X10209Y29442D01* X10215Y29407D01* X10225Y29372D01* X10237Y29343D01* Y27596D01* X10234Y27586D01* X10228Y27550D01* X10225Y27514D01* X10225Y27478D01* X10229Y27442D01* X10235Y27407D01* X10237Y27403D01* Y0D01* X9192D01* Y1286D01* X9195Y1285D01* X9204Y1286D01* X9212Y1289D01* X9220Y1293D01* X9227Y1298D01* X9233Y1305D01* X9238Y1312D01* X9253Y1344D01* X9266Y1378D01* X9275Y1413D01* X9281Y1449D01* X9284Y1485D01* X9284Y1521D01* X9280Y1557D01* X9274Y1593D01* X9264Y1627D01* X9250Y1661D01* X9234Y1694D01* X9230Y1701D01* X9224Y1707D01* X9216Y1712D01* X9209Y1716D01* X9200Y1718D01* X9192Y1719D01* Y3289D01* X9200Y3293D01* X9207Y3298D01* X9213Y3305D01* X9218Y3312D01* X9233Y3344D01* X9246Y3378D01* X9255Y3413D01* X9261Y3449D01* X9264Y3485D01* X9264Y3521D01* X9260Y3557D01* X9254Y3593D01* X9244Y3627D01* X9230Y3661D01* X9214Y3694D01* X9210Y3701D01* X9204Y3707D01* X9196Y3712D01* X9192Y3714D01* Y5304D01* X9193Y5305D01* X9198Y5312D01* X9213Y5344D01* X9226Y5378D01* X9235Y5413D01* X9241Y5449D01* X9244Y5485D01* X9244Y5521D01* X9240Y5557D01* X9234Y5593D01* X9224Y5627D01* X9210Y5661D01* X9194Y5694D01* X9192Y5696D01* Y7343D01* X9193Y7344D01* X9206Y7378D01* X9215Y7413D01* X9221Y7449D01* X9224Y7485D01* X9224Y7521D01* X9220Y7557D01* X9214Y7593D01* X9204Y7627D01* X9192Y7656D01* Y9404D01* X9195Y9413D01* X9201Y9449D01* X9204Y9485D01* X9204Y9521D01* X9200Y9557D01* X9194Y9593D01* X9192Y9596D01* Y40000D01* G37* G36* X10237Y39365D02*X10230Y39378D01* X10220Y39404D01* X10213Y39430D01* X10208Y39456D01* X10205Y39483D01* X10205Y39511D01* X10207Y39538D01* X10212Y39564D01* X10219Y39590D01* X10228Y39616D01* X10237Y39634D01* Y39365D01* G37* G36* Y37417D02*X10233Y37430D01* X10228Y37456D01* X10225Y37483D01* X10225Y37511D01* X10227Y37538D01* X10232Y37564D01* X10237Y37583D01* Y37417D01* G37* G36* Y40000D02*X10317D01* Y39852D01* X10311Y39849D01* X10303Y39845D01* X10297Y39839D01* X10292Y39832D01* X10288Y39824D01* X10286Y39815D01* X10285Y39807D01* X10285Y39798D01* X10288Y39790D01* X10291Y39782D01* X10296Y39774D01* X10302Y39768D01* X10309Y39763D01* X10317Y39759D01* Y39234D01* X10314Y39233D01* X10307Y39228D01* X10301Y39221D01* X10296Y39214D01* X10293Y39206D01* X10291Y39197D01* X10290Y39189D01* X10291Y39180D01* X10294Y39172D01* X10298Y39164D01* X10303Y39157D01* X10309Y39151D01* X10317Y39147D01* Y37838D01* X10312Y37832D01* X10308Y37824D01* X10306Y37815D01* X10305Y37807D01* X10305Y37798D01* X10308Y37790D01* X10311Y37782D01* X10316Y37774D01* X10317Y37774D01* Y37215D01* X10316Y37214D01* X10313Y37206D01* X10311Y37197D01* X10310Y37189D01* X10311Y37180D01* X10314Y37172D01* X10317Y37167D01* Y31692D01* X10313Y31697D01* X10306Y31703D01* X10299Y31708D01* X10291Y31711D01* X10282Y31713D01* X10274Y31714D01* X10265Y31713D01* X10257Y31710D01* X10249Y31706D01* X10242Y31701D01* X10237Y31695D01* Y33285D01* X10240Y33283D01* X10249Y33281D01* X10257Y33280D01* X10266Y33281D01* X10275Y33283D01* X10283Y33286D01* X10290Y33291D01* X10296Y33297D01* X10301Y33304D01* X10305Y33312D01* X10307Y33320D01* X10308Y33329D01* X10308Y33338D01* X10306Y33346D01* X10302Y33354D01* X10290Y33378D01* X10280Y33404D01* X10273Y33430D01* X10268Y33456D01* X10265Y33483D01* X10265Y33511D01* X10267Y33538D01* X10272Y33564D01* X10279Y33590D01* X10288Y33616D01* X10300Y33640D01* X10303Y33649D01* X10305Y33657D01* X10305Y33666D01* X10304Y33674D01* X10302Y33683D01* X10298Y33690D01* X10293Y33697D01* X10286Y33703D01* X10279Y33708D01* X10271Y33711D01* X10262Y33713D01* X10254Y33714D01* X10245Y33713D01* X10237Y33710D01* X10237Y33710D01* Y35280D01* X10237Y35280D01* X10246Y35281D01* X10255Y35283D01* X10263Y35286D01* X10270Y35291D01* X10276Y35297D01* X10281Y35304D01* X10285Y35312D01* X10287Y35320D01* X10288Y35329D01* X10288Y35338D01* X10286Y35346D01* X10282Y35354D01* X10270Y35378D01* X10260Y35404D01* X10253Y35430D01* X10248Y35456D01* X10245Y35483D01* X10245Y35511D01* X10247Y35538D01* X10252Y35564D01* X10259Y35590D01* X10268Y35616D01* X10280Y35640D01* X10283Y35649D01* X10285Y35657D01* X10285Y35666D01* X10284Y35674D01* X10282Y35683D01* X10278Y35690D01* X10273Y35697D01* X10266Y35703D01* X10259Y35708D01* X10251Y35711D01* X10242Y35713D01* X10237Y35714D01* Y37284D01* X10243Y37286D01* X10250Y37291D01* X10256Y37297D01* X10261Y37304D01* X10265Y37312D01* X10267Y37320D01* X10268Y37329D01* X10268Y37338D01* X10266Y37346D01* X10262Y37354D01* X10250Y37378D01* X10240Y37404D01* X10237Y37417D01* Y37583D01* X10239Y37590D01* X10248Y37616D01* X10260Y37640D01* X10263Y37649D01* X10265Y37657D01* X10265Y37666D01* X10264Y37674D01* X10262Y37683D01* X10258Y37690D01* X10253Y37697D01* X10246Y37703D01* X10239Y37708D01* X10237Y37709D01* Y39298D01* X10241Y39304D01* X10245Y39312D01* X10247Y39320D01* X10248Y39329D01* X10248Y39338D01* X10246Y39346D01* X10242Y39354D01* X10237Y39365D01* Y39634D01* X10240Y39640D01* X10243Y39649D01* X10245Y39657D01* X10245Y39666D01* X10244Y39674D01* X10242Y39683D01* X10238Y39690D01* X10237Y39692D01* Y40000D01* G37* G36* Y31303D02*X10239Y31299D01* X10245Y31292D01* X10253Y31287D01* X10260Y31283D01* X10269Y31281D01* X10277Y31280D01* X10286Y31281D01* X10295Y31283D01* X10303Y31286D01* X10310Y31291D01* X10316Y31297D01* X10317Y31298D01* Y29709D01* X10311Y29711D01* X10302Y29713D01* X10294Y29714D01* X10285Y29713D01* X10277Y29710D01* X10269Y29706D01* X10262Y29701D01* X10256Y29695D01* X10251Y29687D01* X10237Y29656D01* Y31303D01* G37* G36* Y29343D02*X10239Y29338D01* X10255Y29306D01* X10259Y29299D01* X10265Y29292D01* X10273Y29287D01* X10280Y29283D01* X10289Y29281D01* X10297Y29280D01* X10306Y29281D01* X10315Y29283D01* X10317Y29284D01* Y27714D01* X10314Y27714D01* X10305Y27713D01* X10297Y27710D01* X10289Y27706D01* X10282Y27701D01* X10276Y27695D01* X10271Y27687D01* X10256Y27655D01* X10243Y27621D01* X10237Y27596D01* Y29343D01* G37* G36* Y27403D02*X10245Y27372D01* X10259Y27338D01* X10275Y27306D01* X10279Y27299D01* X10285Y27292D01* X10293Y27287D01* X10300Y27283D01* X10309Y27281D01* X10317Y27280D01* Y25710D01* X10309Y25706D01* X10302Y25701D01* X10296Y25695D01* X10291Y25687D01* X10276Y25655D01* X10263Y25621D01* X10254Y25586D01* X10248Y25550D01* X10245Y25514D01* X10245Y25478D01* X10249Y25442D01* X10255Y25407D01* X10265Y25372D01* X10279Y25338D01* X10295Y25306D01* X10299Y25299D01* X10305Y25292D01* X10313Y25287D01* X10317Y25285D01* Y23695D01* X10316Y23695D01* X10311Y23687D01* X10296Y23655D01* X10283Y23621D01* X10274Y23586D01* X10268Y23550D01* X10265Y23514D01* X10265Y23478D01* X10269Y23442D01* X10275Y23407D01* X10285Y23372D01* X10299Y23338D01* X10315Y23306D01* X10317Y23303D01* Y21656D01* X10316Y21655D01* X10303Y21621D01* X10294Y21586D01* X10288Y21550D01* X10285Y21514D01* X10285Y21478D01* X10289Y21442D01* X10295Y21407D01* X10305Y21372D01* X10317Y21343D01* Y19596D01* X10314Y19586D01* X10308Y19550D01* X10305Y19514D01* X10305Y19478D01* X10309Y19442D01* X10315Y19407D01* X10317Y19403D01* Y0D01* X10237D01* Y27403D01* G37* G36* X10317Y31365D02*X10310Y31378D01* X10300Y31404D01* X10293Y31430D01* X10288Y31456D01* X10285Y31483D01* X10285Y31511D01* X10287Y31538D01* X10292Y31564D01* X10299Y31590D01* X10308Y31616D01* X10317Y31634D01* Y31365D01* G37* G36* Y29417D02*X10313Y29430D01* X10308Y29456D01* X10305Y29483D01* X10305Y29511D01* X10307Y29538D01* X10312Y29564D01* X10317Y29583D01* Y29417D01* G37* G36* Y40000D02*X10647D01* Y39873D01* X10626Y39881D01* X10591Y39890D01* X10555Y39896D01* X10519Y39899D01* X10483Y39899D01* X10447Y39895D01* X10411Y39889D01* X10377Y39879D01* X10343Y39866D01* X10317Y39852D01* Y40000D01* G37* G36* Y39759D02*X10317Y39759D01* X10325Y39757D01* X10334Y39756D01* X10343Y39756D01* X10351Y39758D01* X10359Y39762D01* X10383Y39774D01* X10409Y39784D01* X10435Y39791D01* X10461Y39796D01* X10488Y39799D01* X10515Y39799D01* X10542Y39797D01* X10569Y39793D01* X10595Y39785D01* X10621Y39776D01* X10645Y39764D01* X10647Y39764D01* Y39236D01* X10626Y39225D01* X10600Y39215D01* X10574Y39208D01* X10548Y39203D01* X10521Y39200D01* X10494Y39200D01* X10467Y39202D01* X10440Y39207D01* X10414Y39214D01* X10388Y39223D01* X10364Y39235D01* X10356Y39238D01* X10347Y39240D01* X10338Y39240D01* X10330Y39239D01* X10321Y39237D01* X10317Y39234D01* Y39759D01* G37* G36* Y39147D02*X10317Y39146D01* X10349Y39131D01* X10383Y39118D01* X10418Y39109D01* X10454Y39103D01* X10490Y39100D01* X10526Y39100D01* X10562Y39104D01* X10598Y39111D01* X10632Y39121D01* X10647Y39126D01* Y37880D01* X10646Y37881D01* X10611Y37890D01* X10575Y37896D01* X10539Y37899D01* X10503Y37899D01* X10467Y37895D01* X10431Y37889D01* X10397Y37879D01* X10363Y37866D01* X10331Y37849D01* X10323Y37845D01* X10317Y37839D01* X10317Y37838D01* Y39147D01* G37* G36* Y37774D02*X10322Y37768D01* X10329Y37763D01* X10337Y37759D01* X10345Y37757D01* X10354Y37756D01* X10363Y37756D01* X10371Y37758D01* X10379Y37762D01* X10403Y37774D01* X10429Y37784D01* X10455Y37791D01* X10481Y37796D01* X10508Y37799D01* X10535Y37799D01* X10562Y37797D01* X10589Y37793D01* X10615Y37785D01* X10641Y37776D01* X10647Y37773D01* Y37226D01* X10646Y37225D01* X10620Y37215D01* X10594Y37208D01* X10568Y37203D01* X10541Y37200D01* X10514Y37200D01* X10487Y37202D01* X10460Y37207D01* X10434Y37214D01* X10408Y37223D01* X10384Y37235D01* X10376Y37238D01* X10367Y37240D01* X10358Y37240D01* X10350Y37239D01* X10341Y37237D01* X10334Y37233D01* X10327Y37228D01* X10321Y37221D01* X10317Y37215D01* Y37774D01* G37* G36* Y37167D02*X10318Y37164D01* X10323Y37157D01* X10329Y37151D01* X10337Y37146D01* X10369Y37131D01* X10397Y37121D01* Y35871D01* X10383Y35866D01* X10351Y35849D01* X10343Y35845D01* X10337Y35839D01* X10332Y35832D01* X10328Y35824D01* X10326Y35815D01* X10325Y35807D01* X10325Y35798D01* X10328Y35790D01* X10331Y35782D01* X10336Y35774D01* X10342Y35768D01* X10349Y35763D01* X10357Y35759D01* X10365Y35757D01* X10374Y35756D01* X10383Y35756D01* X10391Y35758D01* X10397Y35761D01* Y35238D01* X10396Y35238D01* X10387Y35240D01* X10378Y35240D01* X10370Y35239D01* X10361Y35237D01* X10354Y35233D01* X10347Y35228D01* X10341Y35221D01* X10336Y35214D01* X10333Y35206D01* X10331Y35197D01* X10330Y35189D01* X10331Y35180D01* X10334Y35172D01* X10338Y35164D01* X10343Y35157D01* X10349Y35151D01* X10357Y35146D01* X10389Y35131D01* X10397Y35128D01* Y33862D01* X10371Y33849D01* X10363Y33845D01* X10357Y33839D01* X10352Y33832D01* X10348Y33824D01* X10346Y33815D01* X10345Y33807D01* X10345Y33798D01* X10348Y33790D01* X10351Y33782D01* X10356Y33774D01* X10362Y33768D01* X10369Y33763D01* X10377Y33759D01* X10385Y33757D01* X10394Y33756D01* X10397Y33756D01* Y33240D01* X10390Y33239D01* X10381Y33237D01* X10374Y33233D01* X10367Y33228D01* X10361Y33221D01* X10356Y33214D01* X10353Y33206D01* X10351Y33197D01* X10350Y33189D01* X10351Y33180D01* X10354Y33172D01* X10358Y33164D01* X10363Y33157D01* X10369Y33151D01* X10377Y33146D01* X10397Y33137D01* Y31852D01* X10391Y31849D01* X10383Y31845D01* X10377Y31839D01* X10372Y31832D01* X10368Y31824D01* X10366Y31815D01* X10365Y31807D01* X10365Y31798D01* X10368Y31790D01* X10371Y31782D01* X10376Y31774D01* X10382Y31768D01* X10389Y31763D01* X10397Y31759D01* Y31234D01* X10394Y31233D01* X10387Y31228D01* X10381Y31221D01* X10376Y31214D01* X10373Y31206D01* X10371Y31197D01* X10370Y31189D01* X10371Y31180D01* X10374Y31172D01* X10378Y31164D01* X10383Y31157D01* X10389Y31151D01* X10397Y31147D01* Y29838D01* X10392Y29832D01* X10388Y29824D01* X10386Y29815D01* X10385Y29807D01* X10385Y29798D01* X10388Y29790D01* X10391Y29782D01* X10396Y29774D01* X10397Y29774D01* Y29215D01* X10396Y29214D01* X10393Y29206D01* X10391Y29197D01* X10390Y29189D01* X10391Y29180D01* X10394Y29172D01* X10397Y29167D01* Y23692D01* X10393Y23697D01* X10386Y23703D01* X10379Y23708D01* X10371Y23711D01* X10362Y23713D01* X10354Y23714D01* X10345Y23713D01* X10337Y23710D01* X10329Y23706D01* X10322Y23701D01* X10317Y23695D01* Y25285D01* X10320Y25283D01* X10329Y25281D01* X10337Y25280D01* X10346Y25281D01* X10355Y25283D01* X10363Y25286D01* X10370Y25291D01* X10376Y25297D01* X10381Y25304D01* X10385Y25312D01* X10387Y25320D01* X10388Y25329D01* X10388Y25338D01* X10386Y25346D01* X10382Y25354D01* X10370Y25378D01* X10360Y25404D01* X10353Y25430D01* X10348Y25456D01* X10345Y25483D01* X10345Y25511D01* X10347Y25538D01* X10352Y25564D01* X10359Y25590D01* X10368Y25616D01* X10380Y25640D01* X10383Y25649D01* X10385Y25657D01* X10385Y25666D01* X10384Y25674D01* X10382Y25683D01* X10378Y25690D01* X10373Y25697D01* X10366Y25703D01* X10359Y25708D01* X10351Y25711D01* X10342Y25713D01* X10334Y25714D01* X10325Y25713D01* X10317Y25710D01* X10317Y25710D01* Y27280D01* X10317Y27280D01* X10326Y27281D01* X10335Y27283D01* X10343Y27286D01* X10350Y27291D01* X10356Y27297D01* X10361Y27304D01* X10365Y27312D01* X10367Y27320D01* X10368Y27329D01* X10368Y27338D01* X10366Y27346D01* X10362Y27354D01* X10350Y27378D01* X10340Y27404D01* X10333Y27430D01* X10328Y27456D01* X10325Y27483D01* X10325Y27511D01* X10327Y27538D01* X10332Y27564D01* X10339Y27590D01* X10348Y27616D01* X10360Y27640D01* X10363Y27649D01* X10365Y27657D01* X10365Y27666D01* X10364Y27674D01* X10362Y27683D01* X10358Y27690D01* X10353Y27697D01* X10346Y27703D01* X10339Y27708D01* X10331Y27711D01* X10322Y27713D01* X10317Y27714D01* Y29284D01* X10323Y29286D01* X10330Y29291D01* X10336Y29297D01* X10341Y29304D01* X10345Y29312D01* X10347Y29320D01* X10348Y29329D01* X10348Y29338D01* X10346Y29346D01* X10342Y29354D01* X10330Y29378D01* X10320Y29404D01* X10317Y29417D01* Y29583D01* X10319Y29590D01* X10328Y29616D01* X10340Y29640D01* X10343Y29649D01* X10345Y29657D01* X10345Y29666D01* X10344Y29674D01* X10342Y29683D01* X10338Y29690D01* X10333Y29697D01* X10326Y29703D01* X10319Y29708D01* X10317Y29709D01* Y31298D01* X10321Y31304D01* X10325Y31312D01* X10327Y31320D01* X10328Y31329D01* X10328Y31338D01* X10326Y31346D01* X10322Y31354D01* X10317Y31365D01* Y31634D01* X10320Y31640D01* X10323Y31649D01* X10325Y31657D01* X10325Y31666D01* X10324Y31674D01* X10322Y31683D01* X10318Y31690D01* X10317Y31692D01* Y37167D01* G37* G36* X10397Y0D02*X10317D01* Y19403D01* X10325Y19372D01* X10339Y19338D01* X10355Y19306D01* X10359Y19299D01* X10365Y19292D01* X10373Y19287D01* X10380Y19283D01* X10389Y19281D01* X10397Y19280D01* Y17710D01* X10389Y17706D01* X10382Y17701D01* X10376Y17695D01* X10371Y17687D01* X10356Y17655D01* X10343Y17621D01* X10334Y17586D01* X10328Y17550D01* X10325Y17514D01* X10325Y17478D01* X10329Y17442D01* X10335Y17407D01* X10345Y17372D01* X10359Y17338D01* X10375Y17306D01* X10379Y17299D01* X10385Y17292D01* X10393Y17287D01* X10397Y17285D01* Y15695D01* X10396Y15695D01* X10391Y15687D01* X10376Y15655D01* X10363Y15621D01* X10354Y15586D01* X10348Y15550D01* X10345Y15514D01* X10345Y15478D01* X10349Y15442D01* X10355Y15407D01* X10365Y15372D01* X10379Y15338D01* X10395Y15306D01* X10397Y15303D01* Y13656D01* X10396Y13655D01* X10383Y13621D01* X10374Y13586D01* X10368Y13550D01* X10365Y13514D01* X10365Y13478D01* X10369Y13442D01* X10375Y13407D01* X10385Y13372D01* X10397Y13343D01* Y11596D01* X10394Y11586D01* X10388Y11550D01* X10385Y11514D01* X10385Y11478D01* X10389Y11442D01* X10395Y11407D01* X10397Y11403D01* Y0D01* G37* G36* Y19714D02*X10394Y19714D01* X10385Y19713D01* X10377Y19710D01* X10369Y19706D01* X10362Y19701D01* X10356Y19695D01* X10351Y19687D01* X10336Y19655D01* X10323Y19621D01* X10317Y19596D01* Y21343D01* X10319Y21338D01* X10335Y21306D01* X10339Y21299D01* X10345Y21292D01* X10353Y21287D01* X10360Y21283D01* X10369Y21281D01* X10377Y21280D01* X10386Y21281D01* X10395Y21283D01* X10397Y21284D01* Y19714D01* G37* G36* Y21417D02*X10393Y21430D01* X10388Y21456D01* X10385Y21483D01* X10385Y21511D01* X10387Y21538D01* X10392Y21564D01* X10397Y21583D01* Y21417D01* G37* G36* Y21709D02*X10391Y21711D01* X10382Y21713D01* X10374Y21714D01* X10365Y21713D01* X10357Y21710D01* X10349Y21706D01* X10342Y21701D01* X10336Y21695D01* X10331Y21687D01* X10317Y21656D01* Y23303D01* X10319Y23299D01* X10325Y23292D01* X10333Y23287D01* X10340Y23283D01* X10349Y23281D01* X10357Y23280D01* X10366Y23281D01* X10375Y23283D01* X10383Y23286D01* X10390Y23291D01* X10396Y23297D01* X10397Y23298D01* Y21709D01* G37* G36* Y23365D02*X10390Y23378D01* X10380Y23404D01* X10373Y23430D01* X10368Y23456D01* X10365Y23483D01* X10365Y23511D01* X10367Y23538D01* X10372Y23564D01* X10379Y23590D01* X10388Y23616D01* X10397Y23634D01* Y23365D01* G37* G36* Y37121D02*X10403Y37118D01* X10438Y37109D01* X10474Y37103D01* X10510Y37100D01* X10546Y37100D01* X10582Y37104D01* X10618Y37111D01* X10647Y37119D01* Y35886D01* X10631Y35890D01* X10595Y35896D01* X10559Y35899D01* X10523Y35899D01* X10487Y35895D01* X10451Y35889D01* X10417Y35879D01* X10397Y35871D01* Y37121D01* G37* G36* Y35761D02*X10399Y35762D01* X10423Y35774D01* X10449Y35784D01* X10475Y35791D01* X10501Y35796D01* X10528Y35799D01* X10555Y35799D01* X10582Y35797D01* X10609Y35793D01* X10635Y35785D01* X10647Y35781D01* Y35218D01* X10640Y35215D01* X10614Y35208D01* X10588Y35203D01* X10561Y35200D01* X10534Y35200D01* X10507Y35202D01* X10480Y35207D01* X10454Y35214D01* X10428Y35223D01* X10404Y35235D01* X10397Y35238D01* Y35761D01* G37* G36* Y35128D02*X10423Y35118D01* X10458Y35109D01* X10494Y35103D01* X10530Y35100D01* X10566Y35100D01* X10602Y35104D01* X10638Y35111D01* X10647Y35113D01* Y33891D01* X10615Y33896D01* X10579Y33899D01* X10543Y33899D01* X10507Y33895D01* X10471Y33889D01* X10437Y33879D01* X10403Y33866D01* X10397Y33862D01* Y35128D01* G37* G36* Y33756D02*X10403Y33756D01* X10411Y33758D01* X10419Y33762D01* X10443Y33774D01* X10469Y33784D01* X10495Y33791D01* X10521Y33796D01* X10548Y33799D01* X10575Y33799D01* X10602Y33797D01* X10629Y33793D01* X10647Y33788D01* Y33212D01* X10634Y33208D01* X10608Y33203D01* X10581Y33200D01* X10554Y33200D01* X10527Y33202D01* X10500Y33207D01* X10474Y33214D01* X10448Y33223D01* X10424Y33235D01* X10416Y33238D01* X10407Y33240D01* X10398Y33240D01* X10397Y33240D01* Y33756D01* G37* G36* Y33137D02*X10409Y33131D01* X10443Y33118D01* X10478Y33109D01* X10514Y33103D01* X10550Y33100D01* X10586Y33100D01* X10622Y33104D01* X10647Y33109D01* Y31894D01* X10635Y31896D01* X10599Y31899D01* X10563Y31899D01* X10527Y31895D01* X10491Y31889D01* X10457Y31879D01* X10423Y31866D01* X10397Y31852D01* Y33137D01* G37* G36* Y31759D02*X10397Y31759D01* X10405Y31757D01* X10414Y31756D01* X10423Y31756D01* X10431Y31758D01* X10439Y31762D01* X10463Y31774D01* X10489Y31784D01* X10515Y31791D01* X10541Y31796D01* X10568Y31799D01* X10595Y31799D01* X10622Y31797D01* X10647Y31793D01* Y31206D01* X10628Y31203D01* X10601Y31200D01* X10574Y31200D01* X10547Y31202D01* X10520Y31207D01* X10494Y31214D01* X10468Y31223D01* X10444Y31235D01* X10436Y31238D01* X10427Y31240D01* X10418Y31240D01* X10410Y31239D01* X10401Y31237D01* X10397Y31234D01* Y31759D01* G37* G36* Y31147D02*X10397Y31146D01* X10429Y31131D01* X10463Y31118D01* X10498Y31109D01* X10534Y31103D01* X10570Y31100D01* X10606Y31100D01* X10642Y31104D01* X10647Y31105D01* Y29897D01* X10619Y29899D01* X10583Y29899D01* X10547Y29895D01* X10511Y29889D01* X10477Y29879D01* X10443Y29866D01* X10411Y29849D01* X10403Y29845D01* X10397Y29839D01* X10397Y29838D01* Y31147D01* G37* G36* Y29774D02*X10402Y29768D01* X10409Y29763D01* X10417Y29759D01* X10425Y29757D01* X10434Y29756D01* X10443Y29756D01* X10451Y29758D01* X10459Y29762D01* X10483Y29774D01* X10509Y29784D01* X10535Y29791D01* X10561Y29796D01* X10588Y29799D01* X10615Y29799D01* X10642Y29797D01* X10647Y29796D01* Y29203D01* X10621Y29200D01* X10594Y29200D01* X10567Y29202D01* X10540Y29207D01* X10514Y29214D01* X10488Y29223D01* X10464Y29235D01* X10456Y29238D01* X10447Y29240D01* X10438Y29240D01* X10430Y29239D01* X10421Y29237D01* X10414Y29233D01* X10407Y29228D01* X10401Y29221D01* X10397Y29215D01* Y29774D01* G37* G36* Y29167D02*X10398Y29164D01* X10403Y29157D01* X10409Y29151D01* X10417Y29146D01* X10449Y29131D01* X10477Y29121D01* Y27871D01* X10463Y27866D01* X10431Y27849D01* X10423Y27845D01* X10417Y27839D01* X10412Y27832D01* X10408Y27824D01* X10406Y27815D01* X10405Y27807D01* X10405Y27798D01* X10408Y27790D01* X10411Y27782D01* X10416Y27774D01* X10422Y27768D01* X10429Y27763D01* X10437Y27759D01* X10445Y27757D01* X10454Y27756D01* X10463Y27756D01* X10471Y27758D01* X10477Y27761D01* Y27238D01* X10476Y27238D01* X10467Y27240D01* X10458Y27240D01* X10450Y27239D01* X10441Y27237D01* X10434Y27233D01* X10427Y27228D01* X10421Y27221D01* X10416Y27214D01* X10413Y27206D01* X10411Y27197D01* X10410Y27189D01* X10411Y27180D01* X10414Y27172D01* X10418Y27164D01* X10423Y27157D01* X10429Y27151D01* X10437Y27146D01* X10469Y27131D01* X10477Y27128D01* Y25862D01* X10451Y25849D01* X10443Y25845D01* X10437Y25839D01* X10432Y25832D01* X10428Y25824D01* X10426Y25815D01* X10425Y25807D01* X10425Y25798D01* X10428Y25790D01* X10431Y25782D01* X10436Y25774D01* X10442Y25768D01* X10449Y25763D01* X10457Y25759D01* X10465Y25757D01* X10474Y25756D01* X10477Y25756D01* Y25240D01* X10470Y25239D01* X10461Y25237D01* X10454Y25233D01* X10447Y25228D01* X10441Y25221D01* X10436Y25214D01* X10433Y25206D01* X10431Y25197D01* X10430Y25189D01* X10431Y25180D01* X10434Y25172D01* X10438Y25164D01* X10443Y25157D01* X10449Y25151D01* X10457Y25146D01* X10477Y25137D01* Y23852D01* X10471Y23849D01* X10463Y23845D01* X10457Y23839D01* X10452Y23832D01* X10448Y23824D01* X10446Y23815D01* X10445Y23807D01* X10445Y23798D01* X10448Y23790D01* X10451Y23782D01* X10456Y23774D01* X10462Y23768D01* X10469Y23763D01* X10477Y23759D01* Y23234D01* X10474Y23233D01* X10467Y23228D01* X10461Y23221D01* X10456Y23214D01* X10453Y23206D01* X10451Y23197D01* X10450Y23189D01* X10451Y23180D01* X10454Y23172D01* X10458Y23164D01* X10463Y23157D01* X10469Y23151D01* X10477Y23147D01* Y21838D01* X10472Y21832D01* X10468Y21824D01* X10466Y21815D01* X10465Y21807D01* X10465Y21798D01* X10468Y21790D01* X10471Y21782D01* X10476Y21774D01* X10477Y21774D01* Y21215D01* X10476Y21214D01* X10473Y21206D01* X10471Y21197D01* X10470Y21189D01* X10471Y21180D01* X10474Y21172D01* X10477Y21167D01* Y15692D01* X10473Y15697D01* X10466Y15703D01* X10459Y15708D01* X10451Y15711D01* X10442Y15713D01* X10434Y15714D01* X10425Y15713D01* X10417Y15710D01* X10409Y15706D01* X10402Y15701D01* X10397Y15695D01* Y17285D01* X10400Y17283D01* X10409Y17281D01* X10417Y17280D01* X10426Y17281D01* X10435Y17283D01* X10443Y17286D01* X10450Y17291D01* X10456Y17297D01* X10461Y17304D01* X10465Y17312D01* X10467Y17320D01* X10468Y17329D01* X10468Y17338D01* X10466Y17346D01* X10462Y17354D01* X10450Y17378D01* X10440Y17404D01* X10433Y17430D01* X10428Y17456D01* X10425Y17483D01* X10425Y17511D01* X10427Y17538D01* X10432Y17564D01* X10439Y17590D01* X10448Y17616D01* X10460Y17640D01* X10463Y17649D01* X10465Y17657D01* X10465Y17666D01* X10464Y17674D01* X10462Y17683D01* X10458Y17690D01* X10453Y17697D01* X10446Y17703D01* X10439Y17708D01* X10431Y17711D01* X10422Y17713D01* X10414Y17714D01* X10405Y17713D01* X10397Y17710D01* X10397Y17710D01* Y19280D01* X10397Y19280D01* X10406Y19281D01* X10415Y19283D01* X10423Y19286D01* X10430Y19291D01* X10436Y19297D01* X10441Y19304D01* X10445Y19312D01* X10447Y19320D01* X10448Y19329D01* X10448Y19338D01* X10446Y19346D01* X10442Y19354D01* X10430Y19378D01* X10420Y19404D01* X10413Y19430D01* X10408Y19456D01* X10405Y19483D01* X10405Y19511D01* X10407Y19538D01* X10412Y19564D01* X10419Y19590D01* X10428Y19616D01* X10440Y19640D01* X10443Y19649D01* X10445Y19657D01* X10445Y19666D01* X10444Y19674D01* X10442Y19683D01* X10438Y19690D01* X10433Y19697D01* X10426Y19703D01* X10419Y19708D01* X10411Y19711D01* X10402Y19713D01* X10397Y19714D01* Y21284D01* X10403Y21286D01* X10410Y21291D01* X10416Y21297D01* X10421Y21304D01* X10425Y21312D01* X10427Y21320D01* X10428Y21329D01* X10428Y21338D01* X10426Y21346D01* X10422Y21354D01* X10410Y21378D01* X10400Y21404D01* X10397Y21417D01* Y21583D01* X10399Y21590D01* X10408Y21616D01* X10420Y21640D01* X10423Y21649D01* X10425Y21657D01* X10425Y21666D01* X10424Y21674D01* X10422Y21683D01* X10418Y21690D01* X10413Y21697D01* X10406Y21703D01* X10399Y21708D01* X10397Y21709D01* Y23298D01* X10401Y23304D01* X10405Y23312D01* X10407Y23320D01* X10408Y23329D01* X10408Y23338D01* X10406Y23346D01* X10402Y23354D01* X10397Y23365D01* Y23634D01* X10400Y23640D01* X10403Y23649D01* X10405Y23657D01* X10405Y23666D01* X10404Y23674D01* X10402Y23683D01* X10398Y23690D01* X10397Y23692D01* Y29167D01* G37* G36* X10477Y0D02*X10397D01* Y11403D01* X10405Y11372D01* X10419Y11338D01* X10435Y11306D01* X10439Y11299D01* X10445Y11292D01* X10453Y11287D01* X10460Y11283D01* X10469Y11281D01* X10477Y11280D01* Y9710D01* X10469Y9706D01* X10462Y9701D01* X10456Y9695D01* X10451Y9687D01* X10436Y9655D01* X10423Y9621D01* X10414Y9586D01* X10408Y9550D01* X10405Y9514D01* X10405Y9478D01* X10409Y9442D01* X10415Y9407D01* X10425Y9372D01* X10439Y9338D01* X10455Y9306D01* X10459Y9299D01* X10465Y9292D01* X10473Y9287D01* X10477Y9285D01* Y7695D01* X10476Y7695D01* X10471Y7687D01* X10456Y7655D01* X10443Y7621D01* X10434Y7586D01* X10428Y7550D01* X10425Y7514D01* X10425Y7478D01* X10429Y7442D01* X10435Y7407D01* X10445Y7372D01* X10459Y7338D01* X10475Y7306D01* X10477Y7303D01* Y5656D01* X10476Y5655D01* X10463Y5621D01* X10454Y5586D01* X10448Y5550D01* X10445Y5514D01* X10445Y5478D01* X10449Y5442D01* X10455Y5407D01* X10465Y5372D01* X10477Y5343D01* Y3596D01* X10474Y3586D01* X10468Y3550D01* X10465Y3514D01* X10465Y3478D01* X10469Y3442D01* X10475Y3407D01* X10477Y3403D01* Y0D01* G37* G36* Y11714D02*X10474Y11714D01* X10465Y11713D01* X10457Y11710D01* X10449Y11706D01* X10442Y11701D01* X10436Y11695D01* X10431Y11687D01* X10416Y11655D01* X10403Y11621D01* X10397Y11596D01* Y13343D01* X10399Y13338D01* X10415Y13306D01* X10419Y13299D01* X10425Y13292D01* X10433Y13287D01* X10440Y13283D01* X10449Y13281D01* X10457Y13280D01* X10466Y13281D01* X10475Y13283D01* X10477Y13284D01* Y11714D01* G37* G36* Y13417D02*X10473Y13430D01* X10468Y13456D01* X10465Y13483D01* X10465Y13511D01* X10467Y13538D01* X10472Y13564D01* X10477Y13583D01* Y13417D01* G37* G36* Y13709D02*X10471Y13711D01* X10462Y13713D01* X10454Y13714D01* X10445Y13713D01* X10437Y13710D01* X10429Y13706D01* X10422Y13701D01* X10416Y13695D01* X10411Y13687D01* X10397Y13656D01* Y15303D01* X10399Y15299D01* X10405Y15292D01* X10413Y15287D01* X10420Y15283D01* X10429Y15281D01* X10437Y15280D01* X10446Y15281D01* X10455Y15283D01* X10463Y15286D01* X10470Y15291D01* X10476Y15297D01* X10477Y15298D01* Y13709D01* G37* G36* Y15365D02*X10470Y15378D01* X10460Y15404D01* X10453Y15430D01* X10448Y15456D01* X10445Y15483D01* X10445Y15511D01* X10447Y15538D01* X10452Y15564D01* X10459Y15590D01* X10468Y15616D01* X10477Y15634D01* Y15365D01* G37* G36* Y29121D02*X10483Y29118D01* X10518Y29109D01* X10554Y29103D01* X10590Y29100D01* X10626Y29100D01* X10647Y29102D01* Y27899D01* X10639Y27899D01* X10603Y27899D01* X10567Y27895D01* X10531Y27889D01* X10497Y27879D01* X10477Y27871D01* Y29121D01* G37* G36* Y27761D02*X10479Y27762D01* X10503Y27774D01* X10529Y27784D01* X10555Y27791D01* X10581Y27796D01* X10608Y27799D01* X10635Y27799D01* X10647Y27798D01* Y27201D01* X10641Y27200D01* X10614Y27200D01* X10587Y27202D01* X10560Y27207D01* X10534Y27214D01* X10508Y27223D01* X10484Y27235D01* X10477Y27238D01* Y27761D01* G37* G36* Y27128D02*X10503Y27118D01* X10538Y27109D01* X10574Y27103D01* X10610Y27100D01* X10646Y27100D01* X10647Y27100D01* Y25899D01* X10623Y25899D01* X10587Y25895D01* X10551Y25889D01* X10517Y25879D01* X10483Y25866D01* X10477Y25862D01* Y27128D01* G37* G36* Y25756D02*X10483Y25756D01* X10491Y25758D01* X10499Y25762D01* X10523Y25774D01* X10549Y25784D01* X10575Y25791D01* X10601Y25796D01* X10628Y25799D01* X10647Y25799D01* Y25200D01* X10634Y25200D01* X10607Y25202D01* X10580Y25207D01* X10554Y25214D01* X10528Y25223D01* X10504Y25235D01* X10496Y25238D01* X10487Y25240D01* X10478Y25240D01* X10477Y25240D01* Y25756D01* G37* G36* Y25137D02*X10489Y25131D01* X10523Y25118D01* X10558Y25109D01* X10594Y25103D01* X10630Y25100D01* X10647Y25100D01* Y23899D01* X10643D01* X10607Y23895D01* X10571Y23889D01* X10537Y23879D01* X10503Y23866D01* X10477Y23852D01* Y25137D01* G37* G36* Y23759D02*X10477Y23759D01* X10485Y23757D01* X10494Y23756D01* X10503Y23756D01* X10511Y23758D01* X10519Y23762D01* X10543Y23774D01* X10569Y23784D01* X10595Y23791D01* X10621Y23796D01* X10647Y23799D01* Y23200D01* X10627Y23202D01* X10600Y23207D01* X10574Y23214D01* X10548Y23223D01* X10524Y23235D01* X10516Y23238D01* X10507Y23240D01* X10498Y23240D01* X10490Y23239D01* X10481Y23237D01* X10477Y23234D01* Y23759D01* G37* G36* Y23147D02*X10477Y23146D01* X10509Y23131D01* X10543Y23118D01* X10578Y23109D01* X10614Y23103D01* X10647Y23100D01* Y21897D01* X10627Y21895D01* X10591Y21889D01* X10557Y21879D01* X10523Y21866D01* X10491Y21849D01* X10483Y21845D01* X10477Y21839D01* X10477Y21838D01* Y23147D01* G37* G36* Y21774D02*X10482Y21768D01* X10489Y21763D01* X10497Y21759D01* X10505Y21757D01* X10514Y21756D01* X10523Y21756D01* X10531Y21758D01* X10539Y21762D01* X10563Y21774D01* X10589Y21784D01* X10615Y21791D01* X10641Y21796D01* X10647Y21797D01* Y21202D01* X10647Y21202D01* X10620Y21207D01* X10594Y21214D01* X10568Y21223D01* X10544Y21235D01* X10536Y21238D01* X10527Y21240D01* X10518Y21240D01* X10510Y21239D01* X10501Y21237D01* X10494Y21233D01* X10487Y21228D01* X10481Y21221D01* X10477Y21215D01* Y21774D01* G37* G36* Y21167D02*X10478Y21164D01* X10483Y21157D01* X10489Y21151D01* X10497Y21146D01* X10529Y21131D01* X10557Y21121D01* Y19871D01* X10543Y19866D01* X10511Y19849D01* X10503Y19845D01* X10497Y19839D01* X10492Y19832D01* X10488Y19824D01* X10486Y19815D01* X10485Y19807D01* X10485Y19798D01* X10488Y19790D01* X10491Y19782D01* X10496Y19774D01* X10502Y19768D01* X10509Y19763D01* X10517Y19759D01* X10525Y19757D01* X10534Y19756D01* X10543Y19756D01* X10551Y19758D01* X10557Y19761D01* Y19238D01* X10556Y19238D01* X10547Y19240D01* X10538Y19240D01* X10530Y19239D01* X10521Y19237D01* X10514Y19233D01* X10507Y19228D01* X10501Y19221D01* X10496Y19214D01* X10493Y19206D01* X10491Y19197D01* X10490Y19189D01* X10491Y19180D01* X10494Y19172D01* X10498Y19164D01* X10503Y19157D01* X10509Y19151D01* X10517Y19146D01* X10549Y19131D01* X10557Y19128D01* Y17862D01* X10531Y17849D01* X10523Y17845D01* X10517Y17839D01* X10512Y17832D01* X10508Y17824D01* X10506Y17815D01* X10505Y17807D01* X10505Y17798D01* X10508Y17790D01* X10511Y17782D01* X10516Y17774D01* X10522Y17768D01* X10529Y17763D01* X10537Y17759D01* X10545Y17757D01* X10554Y17756D01* X10557Y17756D01* Y17240D01* X10550Y17239D01* X10541Y17237D01* X10534Y17233D01* X10527Y17228D01* X10521Y17221D01* X10516Y17214D01* X10513Y17206D01* X10511Y17197D01* X10510Y17189D01* X10511Y17180D01* X10514Y17172D01* X10518Y17164D01* X10523Y17157D01* X10529Y17151D01* X10537Y17146D01* X10557Y17137D01* Y15852D01* X10551Y15849D01* X10543Y15845D01* X10537Y15839D01* X10532Y15832D01* X10528Y15824D01* X10526Y15815D01* X10525Y15807D01* X10525Y15798D01* X10528Y15790D01* X10531Y15782D01* X10536Y15774D01* X10542Y15768D01* X10549Y15763D01* X10557Y15759D01* Y15234D01* X10554Y15233D01* X10547Y15228D01* X10541Y15221D01* X10536Y15214D01* X10533Y15206D01* X10531Y15197D01* X10530Y15189D01* X10531Y15180D01* X10534Y15172D01* X10538Y15164D01* X10543Y15157D01* X10549Y15151D01* X10557Y15147D01* Y13838D01* X10552Y13832D01* X10548Y13824D01* X10546Y13815D01* X10545Y13807D01* X10545Y13798D01* X10548Y13790D01* X10551Y13782D01* X10556Y13774D01* X10557Y13774D01* Y13215D01* X10556Y13214D01* X10553Y13206D01* X10551Y13197D01* X10550Y13189D01* X10551Y13180D01* X10554Y13172D01* X10557Y13167D01* Y7692D01* X10553Y7697D01* X10546Y7703D01* X10539Y7708D01* X10531Y7711D01* X10522Y7713D01* X10514Y7714D01* X10505Y7713D01* X10497Y7710D01* X10489Y7706D01* X10482Y7701D01* X10477Y7695D01* Y9285D01* X10480Y9283D01* X10489Y9281D01* X10497Y9280D01* X10506Y9281D01* X10515Y9283D01* X10523Y9286D01* X10530Y9291D01* X10536Y9297D01* X10541Y9304D01* X10545Y9312D01* X10547Y9320D01* X10548Y9329D01* X10548Y9338D01* X10546Y9346D01* X10542Y9354D01* X10530Y9378D01* X10520Y9404D01* X10513Y9430D01* X10508Y9456D01* X10505Y9483D01* X10505Y9511D01* X10507Y9538D01* X10512Y9564D01* X10519Y9590D01* X10528Y9616D01* X10540Y9640D01* X10543Y9649D01* X10545Y9657D01* X10545Y9666D01* X10544Y9674D01* X10542Y9683D01* X10538Y9690D01* X10533Y9697D01* X10526Y9703D01* X10519Y9708D01* X10511Y9711D01* X10502Y9713D01* X10494Y9714D01* X10485Y9713D01* X10477Y9710D01* X10477Y9710D01* Y11280D01* X10477Y11280D01* X10486Y11281D01* X10495Y11283D01* X10503Y11286D01* X10510Y11291D01* X10516Y11297D01* X10521Y11304D01* X10525Y11312D01* X10527Y11320D01* X10528Y11329D01* X10528Y11338D01* X10526Y11346D01* X10522Y11354D01* X10510Y11378D01* X10500Y11404D01* X10493Y11430D01* X10488Y11456D01* X10485Y11483D01* X10485Y11511D01* X10487Y11538D01* X10492Y11564D01* X10499Y11590D01* X10508Y11616D01* X10520Y11640D01* X10523Y11649D01* X10525Y11657D01* X10525Y11666D01* X10524Y11674D01* X10522Y11683D01* X10518Y11690D01* X10513Y11697D01* X10506Y11703D01* X10499Y11708D01* X10491Y11711D01* X10482Y11713D01* X10477Y11714D01* Y13284D01* X10483Y13286D01* X10490Y13291D01* X10496Y13297D01* X10501Y13304D01* X10505Y13312D01* X10507Y13320D01* X10508Y13329D01* X10508Y13338D01* X10506Y13346D01* X10502Y13354D01* X10490Y13378D01* X10480Y13404D01* X10477Y13417D01* Y13583D01* X10479Y13590D01* X10488Y13616D01* X10500Y13640D01* X10503Y13649D01* X10505Y13657D01* X10505Y13666D01* X10504Y13674D01* X10502Y13683D01* X10498Y13690D01* X10493Y13697D01* X10486Y13703D01* X10479Y13708D01* X10477Y13709D01* Y15298D01* X10481Y15304D01* X10485Y15312D01* X10487Y15320D01* X10488Y15329D01* X10488Y15338D01* X10486Y15346D01* X10482Y15354D01* X10477Y15365D01* Y15634D01* X10480Y15640D01* X10483Y15649D01* X10485Y15657D01* X10485Y15666D01* X10484Y15674D01* X10482Y15683D01* X10478Y15690D01* X10477Y15692D01* Y21167D01* G37* G36* X10557Y0D02*X10477D01* Y3403D01* X10485Y3372D01* X10499Y3338D01* X10515Y3306D01* X10519Y3299D01* X10525Y3292D01* X10533Y3287D01* X10540Y3283D01* X10549Y3281D01* X10557Y3280D01* Y1710D01* X10549Y1706D01* X10542Y1701D01* X10536Y1695D01* X10531Y1687D01* X10516Y1655D01* X10503Y1621D01* X10494Y1586D01* X10488Y1550D01* X10485Y1514D01* X10485Y1478D01* X10489Y1442D01* X10495Y1407D01* X10505Y1372D01* X10519Y1338D01* X10535Y1306D01* X10539Y1299D01* X10545Y1292D01* X10553Y1287D01* X10557Y1285D01* Y0D01* G37* G36* Y3714D02*X10554Y3714D01* X10545Y3713D01* X10537Y3710D01* X10529Y3706D01* X10522Y3701D01* X10516Y3695D01* X10511Y3687D01* X10496Y3655D01* X10483Y3621D01* X10477Y3596D01* Y5343D01* X10479Y5338D01* X10495Y5306D01* X10499Y5299D01* X10505Y5292D01* X10513Y5287D01* X10520Y5283D01* X10529Y5281D01* X10537Y5280D01* X10546Y5281D01* X10555Y5283D01* X10557Y5284D01* Y3714D01* G37* G36* Y5417D02*X10553Y5430D01* X10548Y5456D01* X10545Y5483D01* X10545Y5511D01* X10547Y5538D01* X10552Y5564D01* X10557Y5583D01* Y5417D01* G37* G36* Y5709D02*X10551Y5711D01* X10542Y5713D01* X10534Y5714D01* X10525Y5713D01* X10517Y5710D01* X10509Y5706D01* X10502Y5701D01* X10496Y5695D01* X10491Y5687D01* X10477Y5656D01* Y7303D01* X10479Y7299D01* X10485Y7292D01* X10493Y7287D01* X10500Y7283D01* X10509Y7281D01* X10517Y7280D01* X10526Y7281D01* X10535Y7283D01* X10543Y7286D01* X10550Y7291D01* X10556Y7297D01* X10557Y7298D01* Y5709D01* G37* G36* Y7365D02*X10550Y7378D01* X10540Y7404D01* X10533Y7430D01* X10528Y7456D01* X10525Y7483D01* X10525Y7511D01* X10527Y7538D01* X10532Y7564D01* X10539Y7590D01* X10548Y7616D01* X10557Y7634D01* Y7365D01* G37* G36* Y21121D02*X10563Y21118D01* X10598Y21109D01* X10634Y21103D01* X10647Y21102D01* Y19895D01* X10647D01* X10611Y19889D01* X10577Y19879D01* X10557Y19871D01* Y21121D01* G37* G36* Y19761D02*X10559Y19762D01* X10583Y19774D01* X10609Y19784D01* X10635Y19791D01* X10647Y19794D01* Y19205D01* X10640Y19207D01* X10614Y19214D01* X10588Y19223D01* X10564Y19235D01* X10557Y19238D01* Y19761D01* G37* G36* Y19128D02*X10583Y19118D01* X10618Y19109D01* X10647Y19104D01* Y17892D01* X10631Y17889D01* X10597Y17879D01* X10563Y17866D01* X10557Y17862D01* Y19128D01* G37* G36* Y17756D02*X10563Y17756D01* X10571Y17758D01* X10579Y17762D01* X10603Y17774D01* X10629Y17784D01* X10647Y17789D01* Y17210D01* X10634Y17214D01* X10608Y17223D01* X10584Y17235D01* X10576Y17238D01* X10567Y17240D01* X10558Y17240D01* X10557Y17240D01* Y17756D01* G37* G36* Y17137D02*X10569Y17131D01* X10603Y17118D01* X10638Y17109D01* X10647Y17107D01* Y15887D01* X10617Y15879D01* X10583Y15866D01* X10557Y15852D01* Y17137D01* G37* G36* Y15759D02*X10557Y15759D01* X10565Y15757D01* X10574Y15756D01* X10583Y15756D01* X10591Y15758D01* X10599Y15762D01* X10623Y15774D01* X10647Y15783D01* Y15216D01* X10628Y15223D01* X10604Y15235D01* X10596Y15238D01* X10587Y15240D01* X10578Y15240D01* X10570Y15239D01* X10561Y15237D01* X10557Y15234D01* Y15759D01* G37* G36* Y15147D02*X10557Y15146D01* X10589Y15131D01* X10623Y15118D01* X10647Y15112D01* Y13882D01* X10637Y13879D01* X10603Y13866D01* X10571Y13849D01* X10563Y13845D01* X10557Y13839D01* X10557Y13838D01* Y15147D01* G37* G36* Y13774D02*X10562Y13768D01* X10569Y13763D01* X10577Y13759D01* X10585Y13757D01* X10594Y13756D01* X10603Y13756D01* X10611Y13758D01* X10619Y13762D01* X10643Y13774D01* X10647Y13776D01* Y13223D01* X10624Y13235D01* X10616Y13238D01* X10607Y13240D01* X10598Y13240D01* X10590Y13239D01* X10581Y13237D01* X10574Y13233D01* X10567Y13228D01* X10561Y13221D01* X10557Y13215D01* Y13774D01* G37* G36* Y13167D02*X10558Y13164D01* X10563Y13157D01* X10569Y13151D01* X10577Y13146D01* X10609Y13131D01* X10643Y13118D01* X10647Y13117D01* Y11875D01* X10623Y11866D01* X10591Y11849D01* X10583Y11845D01* X10577Y11839D01* X10572Y11832D01* X10568Y11824D01* X10566Y11815D01* X10565Y11807D01* X10565Y11798D01* X10568Y11790D01* X10571Y11782D01* X10576Y11774D01* X10582Y11768D01* X10589Y11763D01* X10597Y11759D01* X10605Y11757D01* X10614Y11756D01* X10623Y11756D01* X10631Y11758D01* X10639Y11762D01* X10647Y11766D01* Y11233D01* X10644Y11235D01* X10636Y11238D01* X10627Y11240D01* X10618Y11240D01* X10610Y11239D01* X10601Y11237D01* X10594Y11233D01* X10587Y11228D01* X10581Y11221D01* X10576Y11214D01* X10573Y11206D01* X10571Y11197D01* X10570Y11189D01* X10571Y11180D01* X10574Y11172D01* X10578Y11164D01* X10583Y11157D01* X10589Y11151D01* X10597Y11146D01* X10629Y11131D01* X10647Y11124D01* Y9867D01* X10643Y9866D01* X10611Y9849D01* X10603Y9845D01* X10597Y9839D01* X10592Y9832D01* X10588Y9824D01* X10586Y9815D01* X10585Y9807D01* X10585Y9798D01* X10588Y9790D01* X10591Y9782D01* X10596Y9774D01* X10602Y9768D01* X10609Y9763D01* X10617Y9759D01* X10625Y9757D01* X10634Y9756D01* X10643Y9756D01* X10647Y9757D01* Y9240D01* X10647D01* X10638Y9240D01* X10630Y9239D01* X10621Y9237D01* X10614Y9233D01* X10607Y9228D01* X10601Y9221D01* X10596Y9214D01* X10593Y9206D01* X10591Y9197D01* X10590Y9189D01* X10591Y9180D01* X10594Y9172D01* X10598Y9164D01* X10603Y9157D01* X10609Y9151D01* X10617Y9146D01* X10647Y9132D01* Y7858D01* X10631Y7849D01* X10623Y7845D01* X10617Y7839D01* X10612Y7832D01* X10608Y7824D01* X10606Y7815D01* X10605Y7807D01* X10605Y7798D01* X10608Y7790D01* X10611Y7782D01* X10616Y7774D01* X10622Y7768D01* X10629Y7763D01* X10637Y7759D01* X10645Y7757D01* X10647Y7756D01* Y7239D01* X10641Y7237D01* X10634Y7233D01* X10627Y7228D01* X10621Y7221D01* X10616Y7214D01* X10613Y7206D01* X10611Y7197D01* X10610Y7189D01* X10611Y7180D01* X10614Y7172D01* X10618Y7164D01* X10623Y7157D01* X10629Y7151D01* X10637Y7146D01* X10647Y7141D01* Y5847D01* X10643Y5845D01* X10637Y5839D01* X10632Y5832D01* X10628Y5824D01* X10626Y5815D01* X10625Y5807D01* X10625Y5798D01* X10628Y5790D01* X10631Y5782D01* X10636Y5774D01* X10642Y5768D01* X10647Y5764D01* Y5228D01* X10647Y5228D01* X10641Y5221D01* X10636Y5214D01* X10633Y5206D01* X10631Y5197D01* X10630Y5189D01* X10631Y5180D01* X10634Y5172D01* X10638Y5164D01* X10643Y5157D01* X10647Y5153D01* Y3821D01* X10646Y3815D01* X10645Y3807D01* X10645Y3798D01* X10647Y3791D01* Y0D01* X10557D01* Y1285D01* X10560Y1283D01* X10569Y1281D01* X10577Y1280D01* X10586Y1281D01* X10595Y1283D01* X10603Y1286D01* X10610Y1291D01* X10616Y1297D01* X10621Y1304D01* X10625Y1312D01* X10627Y1320D01* X10628Y1329D01* X10628Y1338D01* X10626Y1346D01* X10622Y1354D01* X10610Y1378D01* X10600Y1404D01* X10593Y1430D01* X10588Y1456D01* X10585Y1483D01* X10585Y1511D01* X10587Y1538D01* X10592Y1564D01* X10599Y1590D01* X10608Y1616D01* X10620Y1640D01* X10623Y1649D01* X10625Y1657D01* X10625Y1666D01* X10624Y1674D01* X10622Y1683D01* X10618Y1690D01* X10613Y1697D01* X10606Y1703D01* X10599Y1708D01* X10591Y1711D01* X10582Y1713D01* X10574Y1714D01* X10565Y1713D01* X10557Y1710D01* X10557Y1710D01* Y3280D01* X10557Y3280D01* X10566Y3281D01* X10575Y3283D01* X10583Y3286D01* X10590Y3291D01* X10596Y3297D01* X10601Y3304D01* X10605Y3312D01* X10607Y3320D01* X10608Y3329D01* X10608Y3338D01* X10606Y3346D01* X10602Y3354D01* X10590Y3378D01* X10580Y3404D01* X10573Y3430D01* X10568Y3456D01* X10565Y3483D01* X10565Y3511D01* X10567Y3538D01* X10572Y3564D01* X10579Y3590D01* X10588Y3616D01* X10600Y3640D01* X10603Y3649D01* X10605Y3657D01* X10605Y3666D01* X10604Y3674D01* X10602Y3683D01* X10598Y3690D01* X10593Y3697D01* X10586Y3703D01* X10579Y3708D01* X10571Y3711D01* X10562Y3713D01* X10557Y3714D01* Y5284D01* X10563Y5286D01* X10570Y5291D01* X10576Y5297D01* X10581Y5304D01* X10585Y5312D01* X10587Y5320D01* X10588Y5329D01* X10588Y5338D01* X10586Y5346D01* X10582Y5354D01* X10570Y5378D01* X10560Y5404D01* X10557Y5417D01* Y5583D01* X10559Y5590D01* X10568Y5616D01* X10580Y5640D01* X10583Y5649D01* X10585Y5657D01* X10585Y5666D01* X10584Y5674D01* X10582Y5683D01* X10578Y5690D01* X10573Y5697D01* X10566Y5703D01* X10559Y5708D01* X10557Y5709D01* Y7298D01* X10561Y7304D01* X10565Y7312D01* X10567Y7320D01* X10568Y7329D01* X10568Y7338D01* X10566Y7346D01* X10562Y7354D01* X10557Y7365D01* Y7634D01* X10560Y7640D01* X10563Y7649D01* X10565Y7657D01* X10565Y7666D01* X10564Y7674D01* X10562Y7683D01* X10558Y7690D01* X10557Y7692D01* Y13167D01* G37* G36* X10647Y40000D02*X10892D01* Y39596D01* X10884Y39627D01* X10870Y39661D01* X10854Y39694D01* X10850Y39701D01* X10844Y39707D01* X10836Y39712D01* X10829Y39716D01* X10820Y39718D01* X10812Y39719D01* X10803Y39719D01* X10794Y39717D01* X10786Y39713D01* X10779Y39708D01* X10773Y39702D01* X10768Y39695D01* X10764Y39687D01* X10762Y39679D01* X10761Y39670D01* X10761Y39661D01* X10763Y39653D01* X10767Y39645D01* X10779Y39621D01* X10789Y39595D01* X10796Y39569D01* X10801Y39543D01* X10804Y39516D01* X10804Y39489D01* X10802Y39462D01* X10797Y39435D01* X10790Y39409D01* X10781Y39383D01* X10769Y39359D01* X10766Y39351D01* X10764Y39342D01* X10764Y39333D01* X10765Y39325D01* X10767Y39317D01* X10771Y39309D01* X10776Y39302D01* X10783Y39296D01* X10790Y39291D01* X10798Y39288D01* X10807Y39286D01* X10815Y39285D01* X10824Y39286D01* X10832Y39289D01* X10840Y39293D01* X10847Y39298D01* X10853Y39305D01* X10858Y39312D01* X10873Y39344D01* X10886Y39378D01* X10892Y39404D01* Y37656D01* X10890Y37661D01* X10874Y37694D01* X10870Y37701D01* X10864Y37707D01* X10856Y37712D01* X10849Y37716D01* X10840Y37718D01* X10832Y37719D01* X10823Y37719D01* X10814Y37717D01* X10806Y37713D01* X10799Y37708D01* X10793Y37702D01* X10788Y37695D01* X10784Y37687D01* X10782Y37679D01* X10781Y37670D01* X10781Y37661D01* X10783Y37653D01* X10787Y37645D01* X10799Y37621D01* X10809Y37595D01* X10816Y37569D01* X10821Y37543D01* X10824Y37516D01* X10824Y37489D01* X10822Y37462D01* X10817Y37435D01* X10810Y37409D01* X10801Y37383D01* X10789Y37359D01* X10786Y37351D01* X10784Y37342D01* X10784Y37333D01* X10785Y37325D01* X10787Y37317D01* X10791Y37309D01* X10796Y37302D01* X10803Y37296D01* X10810Y37291D01* X10818Y37288D01* X10827Y37286D01* X10835Y37285D01* X10844Y37286D01* X10852Y37289D01* X10860Y37293D01* X10867Y37298D01* X10873Y37305D01* X10878Y37312D01* X10892Y37343D01* Y35696D01* X10890Y35701D01* X10884Y35707D01* X10876Y35712D01* X10869Y35716D01* X10860Y35718D01* X10852Y35719D01* X10843Y35719D01* X10834Y35717D01* X10826Y35713D01* X10819Y35708D01* X10813Y35702D01* X10808Y35695D01* X10804Y35687D01* X10802Y35679D01* X10801Y35670D01* X10801Y35661D01* X10803Y35653D01* X10807Y35645D01* X10819Y35621D01* X10829Y35595D01* X10836Y35569D01* X10841Y35543D01* X10844Y35516D01* X10844Y35489D01* X10842Y35462D01* X10837Y35435D01* X10830Y35409D01* X10821Y35383D01* X10809Y35359D01* X10806Y35351D01* X10804Y35342D01* X10804Y35333D01* X10805Y35325D01* X10807Y35317D01* X10811Y35309D01* X10816Y35302D01* X10823Y35296D01* X10830Y35291D01* X10838Y35288D01* X10847Y35286D01* X10855Y35285D01* X10864Y35286D01* X10872Y35289D01* X10880Y35293D01* X10887Y35298D01* X10892Y35304D01* Y33714D01* X10889Y33716D01* X10880Y33718D01* X10872Y33719D01* X10863Y33719D01* X10854Y33717D01* X10846Y33713D01* X10839Y33708D01* X10833Y33702D01* X10828Y33695D01* X10824Y33687D01* X10822Y33679D01* X10821Y33670D01* X10821Y33661D01* X10823Y33653D01* X10827Y33645D01* X10839Y33621D01* X10849Y33595D01* X10856Y33569D01* X10861Y33543D01* X10864Y33516D01* X10864Y33489D01* X10862Y33462D01* X10857Y33435D01* X10850Y33409D01* X10841Y33383D01* X10829Y33359D01* X10826Y33351D01* X10824Y33342D01* X10824Y33333D01* X10825Y33325D01* X10827Y33317D01* X10831Y33309D01* X10836Y33302D01* X10843Y33296D01* X10850Y33291D01* X10858Y33288D01* X10867Y33286D01* X10875Y33285D01* X10884Y33286D01* X10892Y33289D01* X10892Y33289D01* Y31719D01* X10892Y31719D01* X10883Y31719D01* X10874Y31717D01* X10866Y31713D01* X10859Y31708D01* X10853Y31702D01* X10848Y31695D01* X10844Y31687D01* X10842Y31679D01* X10841Y31670D01* X10841Y31661D01* X10843Y31653D01* X10847Y31645D01* X10859Y31621D01* X10869Y31595D01* X10876Y31569D01* X10881Y31543D01* X10884Y31516D01* X10884Y31489D01* X10882Y31462D01* X10877Y31435D01* X10870Y31409D01* X10861Y31383D01* X10849Y31359D01* X10846Y31351D01* X10844Y31342D01* X10844Y31333D01* X10845Y31325D01* X10847Y31317D01* X10851Y31309D01* X10856Y31302D01* X10863Y31296D01* X10870Y31291D01* X10878Y31288D01* X10887Y31286D01* X10892Y31286D01* Y29716D01* X10886Y29713D01* X10879Y29708D01* X10873Y29702D01* X10868Y29695D01* X10864Y29687D01* X10862Y29679D01* X10861Y29670D01* X10861Y29661D01* X10863Y29653D01* X10867Y29645D01* X10879Y29621D01* X10889Y29595D01* X10892Y29583D01* Y29416D01* X10890Y29409D01* X10881Y29383D01* X10869Y29359D01* X10866Y29351D01* X10864Y29342D01* X10864Y29333D01* X10865Y29325D01* X10867Y29317D01* X10871Y29309D01* X10876Y29302D01* X10883Y29296D01* X10890Y29291D01* X10892Y29290D01* Y27701D01* X10888Y27695D01* X10884Y27687D01* X10882Y27679D01* X10881Y27670D01* X10881Y27661D01* X10883Y27653D01* X10887Y27645D01* X10892Y27634D01* Y27365D01* X10889Y27359D01* X10886Y27351D01* X10884Y27342D01* X10884Y27333D01* X10885Y27325D01* X10887Y27317D01* X10891Y27309D01* X10892Y27307D01* Y21833D01* X10891Y21835D01* X10886Y21842D01* X10880Y21848D01* X10872Y21853D01* X10840Y21868D01* X10806Y21881D01* X10771Y21890D01* X10735Y21896D01* X10699Y21899D01* X10663Y21899D01* X10647Y21897D01* Y23100D01* X10650Y23100D01* X10686Y23100D01* X10722Y23104D01* X10758Y23111D01* X10792Y23121D01* X10826Y23134D01* X10858Y23150D01* X10866Y23155D01* X10872Y23161D01* X10877Y23168D01* X10881Y23175D01* X10883Y23184D01* X10884Y23193D01* X10884Y23201D01* X10881Y23210D01* X10878Y23218D01* X10873Y23225D01* X10867Y23231D01* X10860Y23236D01* X10852Y23240D01* X10844Y23243D01* X10835Y23243D01* X10826Y23243D01* X10818Y23241D01* X10810Y23237D01* X10786Y23225D01* X10760Y23215D01* X10734Y23208D01* X10708Y23203D01* X10681Y23200D01* X10654Y23200D01* X10647Y23200D01* Y23799D01* X10648Y23799D01* X10675Y23799D01* X10702Y23797D01* X10729Y23793D01* X10755Y23785D01* X10781Y23776D01* X10805Y23764D01* X10813Y23761D01* X10822Y23759D01* X10831Y23759D01* X10839Y23760D01* X10848Y23762D01* X10855Y23766D01* X10862Y23772D01* X10868Y23778D01* X10873Y23785D01* X10876Y23793D01* X10878Y23802D01* X10879Y23810D01* X10878Y23819D01* X10875Y23827D01* X10871Y23835D01* X10866Y23842D01* X10860Y23848D01* X10852Y23853D01* X10820Y23868D01* X10786Y23881D01* X10751Y23890D01* X10715Y23896D01* X10679Y23899D01* X10647Y23899D01* Y25100D01* X10666Y25100D01* X10702Y25104D01* X10738Y25111D01* X10772Y25121D01* X10806Y25134D01* X10838Y25150D01* X10846Y25155D01* X10852Y25161D01* X10857Y25168D01* X10861Y25175D01* X10863Y25184D01* X10864Y25193D01* X10864Y25201D01* X10861Y25210D01* X10858Y25218D01* X10853Y25225D01* X10847Y25231D01* X10840Y25236D01* X10832Y25240D01* X10824Y25243D01* X10815Y25243D01* X10806Y25243D01* X10798Y25241D01* X10790Y25237D01* X10766Y25225D01* X10740Y25215D01* X10714Y25208D01* X10688Y25203D01* X10661Y25200D01* X10647Y25200D01* Y25799D01* X10655Y25799D01* X10682Y25797D01* X10709Y25793D01* X10735Y25785D01* X10761Y25776D01* X10785Y25764D01* X10793Y25761D01* X10802Y25759D01* X10811Y25759D01* X10819Y25760D01* X10828Y25762D01* X10835Y25766D01* X10842Y25772D01* X10848Y25778D01* X10853Y25785D01* X10856Y25793D01* X10858Y25802D01* X10859Y25810D01* X10858Y25819D01* X10855Y25827D01* X10851Y25835D01* X10846Y25842D01* X10840Y25848D01* X10832Y25853D01* X10800Y25868D01* X10766Y25881D01* X10731Y25890D01* X10695Y25896D01* X10659Y25899D01* X10647Y25899D01* Y27100D01* X10682Y27104D01* X10718Y27111D01* X10752Y27121D01* X10786Y27134D01* X10818Y27150D01* X10826Y27155D01* X10832Y27161D01* X10837Y27168D01* X10841Y27175D01* X10843Y27184D01* X10844Y27193D01* X10844Y27201D01* X10841Y27210D01* X10838Y27218D01* X10833Y27225D01* X10827Y27231D01* X10820Y27236D01* X10812Y27240D01* X10804Y27243D01* X10795Y27243D01* X10786Y27243D01* X10778Y27241D01* X10770Y27237D01* X10746Y27225D01* X10720Y27215D01* X10694Y27208D01* X10668Y27203D01* X10647Y27201D01* Y27798D01* X10662Y27797D01* X10689Y27793D01* X10715Y27785D01* X10741Y27776D01* X10765Y27764D01* X10773Y27761D01* X10782Y27759D01* X10791Y27759D01* X10799Y27760D01* X10808Y27762D01* X10815Y27766D01* X10822Y27772D01* X10828Y27778D01* X10833Y27785D01* X10836Y27793D01* X10838Y27802D01* X10839Y27810D01* X10838Y27819D01* X10835Y27827D01* X10831Y27835D01* X10826Y27842D01* X10820Y27848D01* X10812Y27853D01* X10780Y27868D01* X10746Y27881D01* X10711Y27890D01* X10675Y27896D01* X10647Y27899D01* Y29102D01* X10662Y29104D01* X10698Y29111D01* X10732Y29121D01* X10766Y29134D01* X10798Y29150D01* X10806Y29155D01* X10812Y29161D01* X10817Y29168D01* X10821Y29175D01* X10823Y29184D01* X10824Y29193D01* X10824Y29201D01* X10821Y29210D01* X10818Y29218D01* X10813Y29225D01* X10807Y29231D01* X10800Y29236D01* X10792Y29240D01* X10784Y29243D01* X10775Y29243D01* X10766Y29243D01* X10758Y29241D01* X10750Y29237D01* X10726Y29225D01* X10700Y29215D01* X10674Y29208D01* X10648Y29203D01* X10647D01* Y29796D01* X10669Y29793D01* X10695Y29785D01* X10721Y29776D01* X10745Y29764D01* X10753Y29761D01* X10762Y29759D01* X10771Y29759D01* X10779Y29760D01* X10788Y29762D01* X10795Y29766D01* X10802Y29772D01* X10808Y29778D01* X10813Y29785D01* X10816Y29793D01* X10818Y29802D01* X10819Y29810D01* X10818Y29819D01* X10815Y29827D01* X10811Y29835D01* X10806Y29842D01* X10800Y29848D01* X10792Y29853D01* X10760Y29868D01* X10726Y29881D01* X10691Y29890D01* X10655Y29896D01* X10647Y29897D01* Y31105D01* X10678Y31111D01* X10712Y31121D01* X10746Y31134D01* X10778Y31150D01* X10786Y31155D01* X10792Y31161D01* X10797Y31168D01* X10801Y31175D01* X10803Y31184D01* X10804Y31193D01* X10804Y31201D01* X10801Y31210D01* X10798Y31218D01* X10793Y31225D01* X10787Y31231D01* X10780Y31236D01* X10772Y31240D01* X10764Y31243D01* X10755Y31243D01* X10746Y31243D01* X10738Y31241D01* X10730Y31237D01* X10706Y31225D01* X10680Y31215D01* X10654Y31208D01* X10647Y31206D01* Y31793D01* X10649Y31793D01* X10675Y31785D01* X10701Y31776D01* X10725Y31764D01* X10733Y31761D01* X10742Y31759D01* X10751Y31759D01* X10759Y31760D01* X10768Y31762D01* X10775Y31766D01* X10782Y31772D01* X10788Y31778D01* X10793Y31785D01* X10796Y31793D01* X10798Y31802D01* X10799Y31810D01* X10798Y31819D01* X10795Y31827D01* X10791Y31835D01* X10786Y31842D01* X10780Y31848D01* X10772Y31853D01* X10740Y31868D01* X10706Y31881D01* X10671Y31890D01* X10647Y31894D01* Y33109D01* X10658Y33111D01* X10692Y33121D01* X10726Y33134D01* X10758Y33150D01* X10766Y33155D01* X10772Y33161D01* X10777Y33168D01* X10781Y33175D01* X10783Y33184D01* X10784Y33193D01* X10784Y33201D01* X10781Y33210D01* X10778Y33218D01* X10773Y33225D01* X10767Y33231D01* X10760Y33236D01* X10752Y33240D01* X10744Y33243D01* X10735Y33243D01* X10726Y33243D01* X10718Y33241D01* X10710Y33237D01* X10686Y33225D01* X10660Y33215D01* X10647Y33212D01* Y33788D01* X10655Y33785D01* X10681Y33776D01* X10705Y33764D01* X10713Y33761D01* X10722Y33759D01* X10731Y33759D01* X10739Y33760D01* X10748Y33762D01* X10755Y33766D01* X10762Y33772D01* X10768Y33778D01* X10773Y33785D01* X10776Y33793D01* X10778Y33802D01* X10779Y33810D01* X10778Y33819D01* X10775Y33827D01* X10771Y33835D01* X10766Y33842D01* X10760Y33848D01* X10752Y33853D01* X10720Y33868D01* X10686Y33881D01* X10651Y33890D01* X10647Y33891D01* Y35113D01* X10672Y35121D01* X10706Y35134D01* X10738Y35150D01* X10746Y35155D01* X10752Y35161D01* X10757Y35168D01* X10761Y35175D01* X10763Y35184D01* X10764Y35193D01* X10764Y35201D01* X10761Y35210D01* X10758Y35218D01* X10753Y35225D01* X10747Y35231D01* X10740Y35236D01* X10732Y35240D01* X10724Y35243D01* X10715Y35243D01* X10706Y35243D01* X10698Y35241D01* X10690Y35237D01* X10666Y35225D01* X10647Y35218D01* Y35781D01* X10661Y35776D01* X10685Y35764D01* X10693Y35761D01* X10702Y35759D01* X10711Y35759D01* X10719Y35760D01* X10728Y35762D01* X10735Y35766D01* X10742Y35772D01* X10748Y35778D01* X10753Y35785D01* X10756Y35793D01* X10758Y35802D01* X10759Y35810D01* X10758Y35819D01* X10755Y35827D01* X10751Y35835D01* X10746Y35842D01* X10740Y35848D01* X10732Y35853D01* X10700Y35868D01* X10666Y35881D01* X10647Y35886D01* Y37119D01* X10652Y37121D01* X10686Y37134D01* X10718Y37150D01* X10726Y37155D01* X10732Y37161D01* X10737Y37168D01* X10741Y37175D01* X10743Y37184D01* X10744Y37193D01* X10744Y37201D01* X10741Y37210D01* X10738Y37218D01* X10733Y37225D01* X10727Y37231D01* X10720Y37236D01* X10712Y37240D01* X10704Y37243D01* X10695Y37243D01* X10686Y37243D01* X10678Y37241D01* X10670Y37237D01* X10647Y37226D01* Y37773D01* X10665Y37764D01* X10673Y37761D01* X10682Y37759D01* X10691Y37759D01* X10699Y37760D01* X10708Y37762D01* X10715Y37766D01* X10722Y37772D01* X10728Y37778D01* X10733Y37785D01* X10736Y37793D01* X10738Y37802D01* X10739Y37810D01* X10738Y37819D01* X10735Y37827D01* X10731Y37835D01* X10726Y37842D01* X10720Y37848D01* X10712Y37853D01* X10680Y37868D01* X10647Y37880D01* Y39126D01* X10666Y39134D01* X10698Y39150D01* X10706Y39155D01* X10712Y39161D01* X10717Y39168D01* X10721Y39175D01* X10723Y39184D01* X10724Y39193D01* X10724Y39201D01* X10721Y39210D01* X10718Y39218D01* X10713Y39225D01* X10707Y39231D01* X10700Y39236D01* X10692Y39240D01* X10684Y39243D01* X10675Y39243D01* X10666Y39243D01* X10658Y39241D01* X10650Y39237D01* X10647Y39236D01* Y39764D01* X10653Y39761D01* X10662Y39759D01* X10671Y39759D01* X10679Y39760D01* X10688Y39762D01* X10695Y39766D01* X10702Y39772D01* X10708Y39778D01* X10713Y39785D01* X10716Y39793D01* X10718Y39802D01* X10719Y39810D01* X10718Y39819D01* X10715Y39827D01* X10711Y39835D01* X10706Y39842D01* X10700Y39848D01* X10692Y39853D01* X10660Y39868D01* X10647Y39873D01* Y40000D01* G37* G36* X10892Y13878D02*X10886Y13881D01* X10851Y13890D01* X10815Y13896D01* X10779Y13899D01* X10743Y13899D01* X10707Y13895D01* X10671Y13889D01* X10647Y13882D01* Y15112D01* X10658Y15109D01* X10694Y15103D01* X10730Y15100D01* X10766Y15100D01* X10802Y15104D01* X10838Y15111D01* X10872Y15121D01* X10892Y15128D01* Y13878D01* G37* G36* Y15238D02*X10890Y15237D01* X10866Y15225D01* X10840Y15215D01* X10814Y15208D01* X10788Y15203D01* X10761Y15200D01* X10734Y15200D01* X10707Y15202D01* X10680Y15207D01* X10654Y15214D01* X10647Y15216D01* Y15783D01* X10649Y15784D01* X10675Y15791D01* X10701Y15796D01* X10728Y15799D01* X10755Y15799D01* X10782Y15797D01* X10809Y15793D01* X10835Y15785D01* X10861Y15776D01* X10885Y15764D01* X10892Y15762D01* Y15238D01* G37* G36* Y15871D02*X10866Y15881D01* X10831Y15890D01* X10795Y15896D01* X10759Y15899D01* X10723Y15899D01* X10687Y15895D01* X10651Y15889D01* X10647Y15887D01* Y17107D01* X10674Y17103D01* X10710Y17100D01* X10746Y17100D01* X10782Y17104D01* X10818Y17111D01* X10852Y17121D01* X10886Y17134D01* X10892Y17137D01* Y15871D01* G37* G36* Y17243D02*X10886Y17243D01* X10878Y17241D01* X10870Y17237D01* X10846Y17225D01* X10820Y17215D01* X10794Y17208D01* X10768Y17203D01* X10741Y17200D01* X10714Y17200D01* X10687Y17202D01* X10660Y17207D01* X10647Y17210D01* Y17789D01* X10655Y17791D01* X10681Y17796D01* X10708Y17799D01* X10735Y17799D01* X10762Y17797D01* X10789Y17793D01* X10815Y17785D01* X10841Y17776D01* X10865Y17764D01* X10873Y17761D01* X10882Y17759D01* X10891Y17759D01* X10892Y17759D01* Y17243D01* G37* G36* Y17862D02*X10880Y17868D01* X10846Y17881D01* X10811Y17890D01* X10775Y17896D01* X10739Y17899D01* X10703Y17899D01* X10667Y17895D01* X10647Y17892D01* Y19104D01* X10654Y19103D01* X10690Y19100D01* X10726Y19100D01* X10762Y19104D01* X10798Y19111D01* X10832Y19121D01* X10866Y19134D01* X10892Y19147D01* Y17862D01* G37* G36* Y19240D02*X10892Y19240D01* X10884Y19243D01* X10875Y19243D01* X10866Y19243D01* X10858Y19241D01* X10850Y19237D01* X10826Y19225D01* X10800Y19215D01* X10774Y19208D01* X10748Y19203D01* X10721Y19200D01* X10694Y19200D01* X10667Y19202D01* X10647Y19205D01* Y19794D01* X10661Y19796D01* X10688Y19799D01* X10715Y19799D01* X10742Y19797D01* X10769Y19793D01* X10795Y19785D01* X10821Y19776D01* X10845Y19764D01* X10853Y19761D01* X10862Y19759D01* X10871Y19759D01* X10879Y19760D01* X10888Y19762D01* X10892Y19765D01* Y19240D01* G37* G36* Y19853D02*X10892Y19853D01* X10860Y19868D01* X10826Y19881D01* X10791Y19890D01* X10755Y19896D01* X10719Y19899D01* X10683Y19899D01* X10647Y19895D01* Y21102D01* X10670Y21100D01* X10706Y21100D01* X10742Y21104D01* X10778Y21111D01* X10812Y21121D01* X10846Y21134D01* X10878Y21150D01* X10886Y21155D01* X10892Y21161D01* X10892Y21161D01* Y19853D01* G37* G36* Y21225D02*X10887Y21231D01* X10880Y21236D01* X10872Y21240D01* X10864Y21243D01* X10855Y21243D01* X10846Y21243D01* X10838Y21241D01* X10830Y21237D01* X10806Y21225D01* X10780Y21215D01* X10754Y21208D01* X10728Y21203D01* X10701Y21200D01* X10674Y21200D01* X10647Y21202D01* Y21797D01* X10668Y21799D01* X10695Y21799D01* X10722Y21797D01* X10749Y21793D01* X10775Y21785D01* X10801Y21776D01* X10825Y21764D01* X10833Y21761D01* X10842Y21759D01* X10851Y21759D01* X10859Y21760D01* X10868Y21762D01* X10875Y21766D01* X10882Y21772D01* X10888Y21778D01* X10892Y21784D01* Y21225D01* G37* G36* Y40000D02*X10972D01* Y31596D01* X10964Y31627D01* X10950Y31661D01* X10934Y31694D01* X10930Y31701D01* X10924Y31707D01* X10916Y31712D01* X10909Y31716D01* X10900Y31718D01* X10892Y31719D01* Y33289D01* X10900Y33293D01* X10907Y33298D01* X10913Y33305D01* X10918Y33312D01* X10933Y33344D01* X10946Y33378D01* X10955Y33413D01* X10961Y33449D01* X10964Y33485D01* X10964Y33521D01* X10960Y33557D01* X10954Y33593D01* X10944Y33627D01* X10930Y33661D01* X10914Y33694D01* X10910Y33701D01* X10904Y33707D01* X10896Y33712D01* X10892Y33714D01* Y35304D01* X10893Y35305D01* X10898Y35312D01* X10913Y35344D01* X10926Y35378D01* X10935Y35413D01* X10941Y35449D01* X10944Y35485D01* X10944Y35521D01* X10940Y35557D01* X10934Y35593D01* X10924Y35627D01* X10910Y35661D01* X10894Y35694D01* X10892Y35696D01* Y37343D01* X10893Y37344D01* X10906Y37378D01* X10915Y37413D01* X10921Y37449D01* X10924Y37485D01* X10924Y37521D01* X10920Y37557D01* X10914Y37593D01* X10904Y37627D01* X10892Y37656D01* Y39404D01* X10895Y39413D01* X10901Y39449D01* X10904Y39485D01* X10904Y39521D01* X10900Y39557D01* X10894Y39593D01* X10892Y39596D01* Y40000D01* G37* G36* Y31286D02*X10895Y31285D01* X10904Y31286D01* X10912Y31289D01* X10920Y31293D01* X10927Y31298D01* X10933Y31305D01* X10938Y31312D01* X10953Y31344D01* X10966Y31378D01* X10972Y31404D01* Y29656D01* X10970Y29661D01* X10954Y29694D01* X10950Y29701D01* X10944Y29707D01* X10936Y29712D01* X10929Y29716D01* X10920Y29718D01* X10912Y29719D01* X10903Y29719D01* X10894Y29717D01* X10892Y29716D01* Y31286D01* G37* G36* Y29583D02*X10896Y29569D01* X10901Y29543D01* X10904Y29516D01* X10904Y29489D01* X10902Y29462D01* X10897Y29435D01* X10892Y29416D01* Y29583D01* G37* G36* Y29290D02*X10898Y29288D01* X10907Y29286D01* X10915Y29285D01* X10924Y29286D01* X10932Y29289D01* X10940Y29293D01* X10947Y29298D01* X10953Y29305D01* X10958Y29312D01* X10972Y29343D01* Y27696D01* X10970Y27701D01* X10964Y27707D01* X10956Y27712D01* X10949Y27716D01* X10940Y27718D01* X10932Y27719D01* X10923Y27719D01* X10914Y27717D01* X10906Y27713D01* X10899Y27708D01* X10893Y27702D01* X10892Y27701D01* Y29290D01* G37* G36* Y27634D02*X10899Y27621D01* X10909Y27595D01* X10916Y27569D01* X10921Y27543D01* X10924Y27516D01* X10924Y27489D01* X10922Y27462D01* X10917Y27435D01* X10910Y27409D01* X10901Y27383D01* X10892Y27365D01* Y27634D01* G37* G36* Y27307D02*X10896Y27302D01* X10903Y27296D01* X10910Y27291D01* X10918Y27288D01* X10927Y27286D01* X10935Y27285D01* X10944Y27286D01* X10952Y27289D01* X10960Y27293D01* X10967Y27298D01* X10972Y27304D01* Y25714D01* X10969Y25716D01* X10960Y25718D01* X10952Y25719D01* X10943Y25719D01* X10934Y25717D01* X10926Y25713D01* X10919Y25708D01* X10913Y25702D01* X10908Y25695D01* X10904Y25687D01* X10902Y25679D01* X10901Y25670D01* X10901Y25661D01* X10903Y25653D01* X10907Y25645D01* X10919Y25621D01* X10929Y25595D01* X10936Y25569D01* X10941Y25543D01* X10944Y25516D01* X10944Y25489D01* X10942Y25462D01* X10937Y25435D01* X10930Y25409D01* X10921Y25383D01* X10909Y25359D01* X10906Y25351D01* X10904Y25342D01* X10904Y25333D01* X10905Y25325D01* X10907Y25317D01* X10911Y25309D01* X10916Y25302D01* X10923Y25296D01* X10930Y25291D01* X10938Y25288D01* X10947Y25286D01* X10955Y25285D01* X10964Y25286D01* X10972Y25289D01* X10972Y25289D01* Y23719D01* X10972Y23719D01* X10963Y23719D01* X10954Y23717D01* X10946Y23713D01* X10939Y23708D01* X10933Y23702D01* X10928Y23695D01* X10924Y23687D01* X10922Y23679D01* X10921Y23670D01* X10921Y23661D01* X10923Y23653D01* X10927Y23645D01* X10939Y23621D01* X10949Y23595D01* X10956Y23569D01* X10961Y23543D01* X10964Y23516D01* X10964Y23489D01* X10962Y23462D01* X10957Y23435D01* X10950Y23409D01* X10941Y23383D01* X10929Y23359D01* X10926Y23351D01* X10924Y23342D01* X10924Y23333D01* X10925Y23325D01* X10927Y23317D01* X10931Y23309D01* X10936Y23302D01* X10943Y23296D01* X10950Y23291D01* X10958Y23288D01* X10967Y23286D01* X10972Y23286D01* Y21716D01* X10966Y21713D01* X10959Y21708D01* X10953Y21702D01* X10948Y21695D01* X10944Y21687D01* X10942Y21679D01* X10941Y21670D01* X10941Y21661D01* X10943Y21653D01* X10947Y21645D01* X10959Y21621D01* X10969Y21595D01* X10972Y21583D01* Y21416D01* X10970Y21409D01* X10961Y21383D01* X10949Y21359D01* X10946Y21351D01* X10944Y21342D01* X10944Y21333D01* X10945Y21325D01* X10947Y21317D01* X10951Y21309D01* X10956Y21302D01* X10963Y21296D01* X10970Y21291D01* X10972Y21290D01* Y19701D01* X10968Y19695D01* X10964Y19687D01* X10962Y19679D01* X10961Y19670D01* X10961Y19661D01* X10963Y19653D01* X10967Y19645D01* X10972Y19634D01* Y19365D01* X10969Y19359D01* X10966Y19351D01* X10964Y19342D01* X10964Y19333D01* X10965Y19325D01* X10967Y19317D01* X10971Y19309D01* X10972Y19307D01* Y13833D01* X10971Y13835D01* X10966Y13842D01* X10960Y13848D01* X10952Y13853D01* X10920Y13868D01* X10892Y13878D01* Y15128D01* X10906Y15134D01* X10938Y15150D01* X10946Y15155D01* X10952Y15161D01* X10957Y15168D01* X10961Y15175D01* X10963Y15184D01* X10964Y15193D01* X10964Y15201D01* X10961Y15210D01* X10958Y15218D01* X10953Y15225D01* X10947Y15231D01* X10940Y15236D01* X10932Y15240D01* X10924Y15243D01* X10915Y15243D01* X10906Y15243D01* X10898Y15241D01* X10892Y15238D01* Y15762D01* X10893Y15761D01* X10902Y15759D01* X10911Y15759D01* X10919Y15760D01* X10928Y15762D01* X10935Y15766D01* X10942Y15772D01* X10948Y15778D01* X10953Y15785D01* X10956Y15793D01* X10958Y15802D01* X10959Y15810D01* X10958Y15819D01* X10955Y15827D01* X10951Y15835D01* X10946Y15842D01* X10940Y15848D01* X10932Y15853D01* X10900Y15868D01* X10892Y15871D01* Y17137D01* X10918Y17150D01* X10926Y17155D01* X10932Y17161D01* X10937Y17168D01* X10941Y17175D01* X10943Y17184D01* X10944Y17193D01* X10944Y17201D01* X10941Y17210D01* X10938Y17218D01* X10933Y17225D01* X10927Y17231D01* X10920Y17236D01* X10912Y17240D01* X10904Y17243D01* X10895Y17243D01* X10892Y17243D01* Y17759D01* X10899Y17760D01* X10908Y17762D01* X10915Y17766D01* X10922Y17772D01* X10928Y17778D01* X10933Y17785D01* X10936Y17793D01* X10938Y17802D01* X10939Y17810D01* X10938Y17819D01* X10935Y17827D01* X10931Y17835D01* X10926Y17842D01* X10920Y17848D01* X10912Y17853D01* X10892Y17862D01* Y19147D01* X10898Y19150D01* X10906Y19155D01* X10912Y19161D01* X10917Y19168D01* X10921Y19175D01* X10923Y19184D01* X10924Y19193D01* X10924Y19201D01* X10921Y19210D01* X10918Y19218D01* X10913Y19225D01* X10907Y19231D01* X10900Y19236D01* X10892Y19240D01* Y19765D01* X10895Y19766D01* X10902Y19772D01* X10908Y19778D01* X10913Y19785D01* X10916Y19793D01* X10918Y19802D01* X10919Y19810D01* X10918Y19819D01* X10915Y19827D01* X10911Y19835D01* X10906Y19842D01* X10900Y19848D01* X10892Y19853D01* Y21161D01* X10897Y21168D01* X10901Y21175D01* X10903Y21184D01* X10904Y21193D01* X10904Y21201D01* X10901Y21210D01* X10898Y21218D01* X10893Y21225D01* X10892Y21225D01* Y21784D01* X10893Y21785D01* X10896Y21793D01* X10898Y21802D01* X10899Y21810D01* X10898Y21819D01* X10895Y21827D01* X10892Y21833D01* Y27307D01* G37* G36* X10972Y0D02*X10647D01* Y3791D01* X10648Y3790D01* X10651Y3782D01* X10656Y3774D01* X10662Y3768D01* X10669Y3763D01* X10677Y3759D01* X10685Y3757D01* X10694Y3756D01* X10703Y3756D01* X10711Y3758D01* X10719Y3762D01* X10743Y3774D01* X10769Y3784D01* X10795Y3791D01* X10821Y3796D01* X10848Y3799D01* X10875Y3799D01* X10902Y3797D01* X10929Y3793D01* X10955Y3785D01* X10972Y3779D01* Y3220D01* X10960Y3215D01* X10934Y3208D01* X10908Y3203D01* X10881Y3200D01* X10854Y3200D01* X10827Y3202D01* X10800Y3207D01* X10774Y3214D01* X10748Y3223D01* X10724Y3235D01* X10716Y3238D01* X10707Y3240D01* X10698Y3240D01* X10690Y3239D01* X10681Y3237D01* X10674Y3233D01* X10667Y3228D01* X10661Y3221D01* X10656Y3214D01* X10653Y3206D01* X10651Y3197D01* X10650Y3189D01* X10651Y3180D01* X10654Y3172D01* X10658Y3164D01* X10663Y3157D01* X10669Y3151D01* X10677Y3146D01* X10709Y3131D01* X10743Y3118D01* X10778Y3109D01* X10814Y3103D01* X10850Y3100D01* X10886Y3100D01* X10922Y3104D01* X10958Y3111D01* X10972Y3115D01* Y1890D01* X10971Y1890D01* X10935Y1896D01* X10899Y1899D01* X10863Y1899D01* X10827Y1895D01* X10791Y1889D01* X10757Y1879D01* X10723Y1866D01* X10691Y1849D01* X10683Y1845D01* X10677Y1839D01* X10672Y1832D01* X10668Y1824D01* X10666Y1815D01* X10665Y1807D01* X10665Y1798D01* X10668Y1790D01* X10671Y1782D01* X10676Y1774D01* X10682Y1768D01* X10689Y1763D01* X10697Y1759D01* X10705Y1757D01* X10714Y1756D01* X10723Y1756D01* X10731Y1758D01* X10739Y1762D01* X10763Y1774D01* X10789Y1784D01* X10815Y1791D01* X10841Y1796D01* X10868Y1799D01* X10895Y1799D01* X10922Y1797D01* X10949Y1793D01* X10972Y1786D01* Y1213D01* X10954Y1208D01* X10928Y1203D01* X10901Y1200D01* X10874Y1200D01* X10847Y1202D01* X10820Y1207D01* X10794Y1214D01* X10768Y1223D01* X10744Y1235D01* X10736Y1238D01* X10727Y1240D01* X10718Y1240D01* X10710Y1239D01* X10701Y1237D01* X10694Y1233D01* X10687Y1228D01* X10681Y1221D01* X10676Y1214D01* X10673Y1206D01* X10671Y1197D01* X10670Y1189D01* X10671Y1180D01* X10674Y1172D01* X10678Y1164D01* X10683Y1157D01* X10689Y1151D01* X10697Y1146D01* X10729Y1131D01* X10763Y1118D01* X10798Y1109D01* X10834Y1103D01* X10870Y1100D01* X10906Y1100D01* X10942Y1104D01* X10972Y1110D01* Y0D01* G37* G36* Y3884D02*X10951Y3890D01* X10915Y3896D01* X10879Y3899D01* X10843Y3899D01* X10807Y3895D01* X10771Y3889D01* X10737Y3879D01* X10703Y3866D01* X10671Y3849D01* X10663Y3845D01* X10657Y3839D01* X10652Y3832D01* X10648Y3824D01* X10647Y3821D01* Y5153D01* X10649Y5151D01* X10657Y5146D01* X10689Y5131D01* X10723Y5118D01* X10758Y5109D01* X10794Y5103D01* X10830Y5100D01* X10866Y5100D01* X10902Y5104D01* X10938Y5111D01* X10972Y5121D01* X10972D01* Y3884D01* G37* G36* Y5229D02*X10966Y5225D01* X10940Y5215D01* X10914Y5208D01* X10888Y5203D01* X10861Y5200D01* X10834Y5200D01* X10807Y5202D01* X10780Y5207D01* X10754Y5214D01* X10728Y5223D01* X10704Y5235D01* X10696Y5238D01* X10687Y5240D01* X10678Y5240D01* X10670Y5239D01* X10661Y5237D01* X10654Y5233D01* X10647Y5228D01* Y5764D01* X10649Y5763D01* X10657Y5759D01* X10665Y5757D01* X10674Y5756D01* X10683Y5756D01* X10691Y5758D01* X10699Y5762D01* X10723Y5774D01* X10749Y5784D01* X10775Y5791D01* X10801Y5796D01* X10828Y5799D01* X10855Y5799D01* X10882Y5797D01* X10909Y5793D01* X10935Y5785D01* X10961Y5776D01* X10972Y5771D01* Y5229D01* G37* G36* Y5878D02*X10966Y5881D01* X10931Y5890D01* X10895Y5896D01* X10859Y5899D01* X10823Y5899D01* X10787Y5895D01* X10751Y5889D01* X10717Y5879D01* X10683Y5866D01* X10651Y5849D01* X10647Y5847D01* Y7141D01* X10669Y7131D01* X10703Y7118D01* X10738Y7109D01* X10774Y7103D01* X10810Y7100D01* X10846Y7100D01* X10882Y7104D01* X10918Y7111D01* X10952Y7121D01* X10972Y7128D01* Y5878D01* G37* G36* Y7238D02*X10970Y7237D01* X10946Y7225D01* X10920Y7215D01* X10894Y7208D01* X10868Y7203D01* X10841Y7200D01* X10814Y7200D01* X10787Y7202D01* X10760Y7207D01* X10734Y7214D01* X10708Y7223D01* X10684Y7235D01* X10676Y7238D01* X10667Y7240D01* X10658Y7240D01* X10650Y7239D01* X10647Y7239D01* Y7756D01* X10654Y7756D01* X10663Y7756D01* X10671Y7758D01* X10679Y7762D01* X10703Y7774D01* X10729Y7784D01* X10755Y7791D01* X10781Y7796D01* X10808Y7799D01* X10835Y7799D01* X10862Y7797D01* X10889Y7793D01* X10915Y7785D01* X10941Y7776D01* X10965Y7764D01* X10972Y7762D01* Y7238D01* G37* G36* Y7871D02*X10946Y7881D01* X10911Y7890D01* X10875Y7896D01* X10839Y7899D01* X10803Y7899D01* X10767Y7895D01* X10731Y7889D01* X10697Y7879D01* X10663Y7866D01* X10647Y7858D01* Y9132D01* X10649Y9131D01* X10683Y9118D01* X10718Y9109D01* X10754Y9103D01* X10790Y9100D01* X10826Y9100D01* X10862Y9104D01* X10898Y9111D01* X10932Y9121D01* X10966Y9134D01* X10972Y9137D01* Y7871D01* G37* G36* Y9243D02*X10966Y9243D01* X10958Y9241D01* X10950Y9237D01* X10926Y9225D01* X10900Y9215D01* X10874Y9208D01* X10848Y9203D01* X10821Y9200D01* X10794Y9200D01* X10767Y9202D01* X10740Y9207D01* X10714Y9214D01* X10688Y9223D01* X10664Y9235D01* X10656Y9238D01* X10647Y9240D01* Y9757D01* X10651Y9758D01* X10659Y9762D01* X10683Y9774D01* X10709Y9784D01* X10735Y9791D01* X10761Y9796D01* X10788Y9799D01* X10815Y9799D01* X10842Y9797D01* X10869Y9793D01* X10895Y9785D01* X10921Y9776D01* X10945Y9764D01* X10953Y9761D01* X10962Y9759D01* X10971Y9759D01* X10972Y9759D01* Y9243D01* G37* G36* Y9862D02*X10960Y9868D01* X10926Y9881D01* X10891Y9890D01* X10855Y9896D01* X10819Y9899D01* X10783Y9899D01* X10747Y9895D01* X10711Y9889D01* X10677Y9879D01* X10647Y9867D01* Y11124D01* X10663Y11118D01* X10698Y11109D01* X10734Y11103D01* X10770Y11100D01* X10806Y11100D01* X10842Y11104D01* X10878Y11111D01* X10912Y11121D01* X10946Y11134D01* X10972Y11147D01* Y9862D01* G37* G36* Y11240D02*X10972Y11240D01* X10964Y11243D01* X10955Y11243D01* X10946Y11243D01* X10938Y11241D01* X10930Y11237D01* X10906Y11225D01* X10880Y11215D01* X10854Y11208D01* X10828Y11203D01* X10801Y11200D01* X10774Y11200D01* X10747Y11202D01* X10720Y11207D01* X10694Y11214D01* X10668Y11223D01* X10647Y11233D01* Y11766D01* X10663Y11774D01* X10689Y11784D01* X10715Y11791D01* X10741Y11796D01* X10768Y11799D01* X10795Y11799D01* X10822Y11797D01* X10849Y11793D01* X10875Y11785D01* X10901Y11776D01* X10925Y11764D01* X10933Y11761D01* X10942Y11759D01* X10951Y11759D01* X10959Y11760D01* X10968Y11762D01* X10972Y11765D01* Y11240D01* G37* G36* Y11853D02*X10972Y11853D01* X10940Y11868D01* X10906Y11881D01* X10871Y11890D01* X10835Y11896D01* X10799Y11899D01* X10763Y11899D01* X10727Y11895D01* X10691Y11889D01* X10657Y11879D01* X10647Y11875D01* Y13117D01* X10678Y13109D01* X10714Y13103D01* X10750Y13100D01* X10786Y13100D01* X10822Y13104D01* X10858Y13111D01* X10892Y13121D01* X10926Y13134D01* X10958Y13150D01* X10966Y13155D01* X10972Y13161D01* X10972Y13161D01* Y11853D01* G37* G36* Y13225D02*X10967Y13231D01* X10960Y13236D01* X10952Y13240D01* X10944Y13243D01* X10935Y13243D01* X10926Y13243D01* X10918Y13241D01* X10910Y13237D01* X10886Y13225D01* X10860Y13215D01* X10834Y13208D01* X10808Y13203D01* X10781Y13200D01* X10754Y13200D01* X10727Y13202D01* X10700Y13207D01* X10674Y13214D01* X10648Y13223D01* X10647Y13223D01* Y13776D01* X10669Y13784D01* X10695Y13791D01* X10721Y13796D01* X10748Y13799D01* X10775Y13799D01* X10802Y13797D01* X10829Y13793D01* X10855Y13785D01* X10881Y13776D01* X10905Y13764D01* X10913Y13761D01* X10922Y13759D01* X10931Y13759D01* X10939Y13760D01* X10948Y13762D01* X10955Y13766D01* X10962Y13772D01* X10968Y13778D01* X10972Y13784D01* Y13225D01* G37* G36* Y40000D02*X11052D01* Y23596D01* X11044Y23627D01* X11030Y23661D01* X11014Y23694D01* X11010Y23701D01* X11004Y23707D01* X10996Y23712D01* X10989Y23716D01* X10980Y23718D01* X10972Y23719D01* Y25289D01* X10980Y25293D01* X10987Y25298D01* X10993Y25305D01* X10998Y25312D01* X11013Y25344D01* X11026Y25378D01* X11035Y25413D01* X11041Y25449D01* X11044Y25485D01* X11044Y25521D01* X11040Y25557D01* X11034Y25593D01* X11024Y25627D01* X11010Y25661D01* X10994Y25694D01* X10990Y25701D01* X10984Y25707D01* X10976Y25712D01* X10972Y25714D01* Y27304D01* X10973Y27305D01* X10978Y27312D01* X10993Y27344D01* X11006Y27378D01* X11015Y27413D01* X11021Y27449D01* X11024Y27485D01* X11024Y27521D01* X11020Y27557D01* X11014Y27593D01* X11004Y27627D01* X10990Y27661D01* X10974Y27694D01* X10972Y27696D01* Y29343D01* X10973Y29344D01* X10986Y29378D01* X10995Y29413D01* X11001Y29449D01* X11004Y29485D01* X11004Y29521D01* X11000Y29557D01* X10994Y29593D01* X10984Y29627D01* X10972Y29656D01* Y31404D01* X10975Y31413D01* X10981Y31449D01* X10984Y31485D01* X10984Y31521D01* X10980Y31557D01* X10974Y31593D01* X10972Y31596D01* Y40000D01* G37* G36* X11052Y0D02*X10972D01* Y1110D01* X10978Y1111D01* X11012Y1121D01* X11046Y1134D01* X11052Y1137D01* Y0D01* G37* G36* Y1243D02*X11046Y1243D01* X11038Y1241D01* X11030Y1237D01* X11006Y1225D01* X10980Y1215D01* X10972Y1213D01* Y1786D01* X10975Y1785D01* X11001Y1776D01* X11025Y1764D01* X11033Y1761D01* X11042Y1759D01* X11051Y1759D01* X11052Y1759D01* Y1243D01* G37* G36* Y1862D02*X11040Y1868D01* X11006Y1881D01* X10972Y1890D01* Y3115D01* X10992Y3121D01* X11026Y3134D01* X11052Y3147D01* Y1862D01* G37* G36* Y3240D02*X11052Y3240D01* X11044Y3243D01* X11035Y3243D01* X11026Y3243D01* X11018Y3241D01* X11010Y3237D01* X10986Y3225D01* X10972Y3220D01* Y3779D01* X10981Y3776D01* X11005Y3764D01* X11013Y3761D01* X11022Y3759D01* X11031Y3759D01* X11039Y3760D01* X11048Y3762D01* X11052Y3765D01* Y3240D01* G37* G36* Y3853D02*X11052Y3853D01* X11020Y3868D01* X10986Y3881D01* X10972Y3884D01* Y5121D01* X11006Y5134D01* X11038Y5150D01* X11046Y5155D01* X11052Y5161D01* X11052Y5161D01* Y3853D01* G37* G36* Y5225D02*X11047Y5231D01* X11040Y5236D01* X11032Y5240D01* X11024Y5243D01* X11015Y5243D01* X11006Y5243D01* X10998Y5241D01* X10990Y5237D01* X10972Y5229D01* Y5771D01* X10985Y5764D01* X10993Y5761D01* X11002Y5759D01* X11011Y5759D01* X11019Y5760D01* X11028Y5762D01* X11035Y5766D01* X11042Y5772D01* X11048Y5778D01* X11052Y5784D01* Y5225D01* G37* G36* Y5833D02*X11051Y5835D01* X11046Y5842D01* X11040Y5848D01* X11032Y5853D01* X11000Y5868D01* X10972Y5878D01* Y7128D01* X10986Y7134D01* X11018Y7150D01* X11026Y7155D01* X11032Y7161D01* X11037Y7168D01* X11041Y7175D01* X11043Y7184D01* X11044Y7193D01* X11044Y7201D01* X11041Y7210D01* X11038Y7218D01* X11033Y7225D01* X11027Y7231D01* X11020Y7236D01* X11012Y7240D01* X11004Y7243D01* X10995Y7243D01* X10986Y7243D01* X10978Y7241D01* X10972Y7238D01* Y7762D01* X10973Y7761D01* X10982Y7759D01* X10991Y7759D01* X10999Y7760D01* X11008Y7762D01* X11015Y7766D01* X11022Y7772D01* X11028Y7778D01* X11033Y7785D01* X11036Y7793D01* X11038Y7802D01* X11039Y7810D01* X11038Y7819D01* X11035Y7827D01* X11031Y7835D01* X11026Y7842D01* X11020Y7848D01* X11012Y7853D01* X10980Y7868D01* X10972Y7871D01* Y9137D01* X10998Y9150D01* X11006Y9155D01* X11012Y9161D01* X11017Y9168D01* X11021Y9175D01* X11023Y9184D01* X11024Y9193D01* X11024Y9201D01* X11021Y9210D01* X11018Y9218D01* X11013Y9225D01* X11007Y9231D01* X11000Y9236D01* X10992Y9240D01* X10984Y9243D01* X10975Y9243D01* X10972Y9243D01* Y9759D01* X10979Y9760D01* X10988Y9762D01* X10995Y9766D01* X11002Y9772D01* X11008Y9778D01* X11013Y9785D01* X11016Y9793D01* X11018Y9802D01* X11019Y9810D01* X11018Y9819D01* X11015Y9827D01* X11011Y9835D01* X11006Y9842D01* X11000Y9848D01* X10992Y9853D01* X10972Y9862D01* Y11147D01* X10978Y11150D01* X10986Y11155D01* X10992Y11161D01* X10997Y11168D01* X11001Y11175D01* X11003Y11184D01* X11004Y11193D01* X11004Y11201D01* X11001Y11210D01* X10998Y11218D01* X10993Y11225D01* X10987Y11231D01* X10980Y11236D01* X10972Y11240D01* Y11765D01* X10975Y11766D01* X10982Y11772D01* X10988Y11778D01* X10993Y11785D01* X10996Y11793D01* X10998Y11802D01* X10999Y11810D01* X10998Y11819D01* X10995Y11827D01* X10991Y11835D01* X10986Y11842D01* X10980Y11848D01* X10972Y11853D01* Y13161D01* X10977Y13168D01* X10981Y13175D01* X10983Y13184D01* X10984Y13193D01* X10984Y13201D01* X10981Y13210D01* X10978Y13218D01* X10973Y13225D01* X10972Y13225D01* Y13784D01* X10973Y13785D01* X10976Y13793D01* X10978Y13802D01* X10979Y13810D01* X10978Y13819D01* X10975Y13827D01* X10972Y13833D01* Y19307D01* X10976Y19302D01* X10983Y19296D01* X10990Y19291D01* X10998Y19288D01* X11007Y19286D01* X11015Y19285D01* X11024Y19286D01* X11032Y19289D01* X11040Y19293D01* X11047Y19298D01* X11052Y19304D01* Y17714D01* X11049Y17716D01* X11040Y17718D01* X11032Y17719D01* X11023Y17719D01* X11014Y17717D01* X11006Y17713D01* X10999Y17708D01* X10993Y17702D01* X10988Y17695D01* X10984Y17687D01* X10982Y17679D01* X10981Y17670D01* X10981Y17661D01* X10983Y17653D01* X10987Y17645D01* X10999Y17621D01* X11009Y17595D01* X11016Y17569D01* X11021Y17543D01* X11024Y17516D01* X11024Y17489D01* X11022Y17462D01* X11017Y17435D01* X11010Y17409D01* X11001Y17383D01* X10989Y17359D01* X10986Y17351D01* X10984Y17342D01* X10984Y17333D01* X10985Y17325D01* X10987Y17317D01* X10991Y17309D01* X10996Y17302D01* X11003Y17296D01* X11010Y17291D01* X11018Y17288D01* X11027Y17286D01* X11035Y17285D01* X11044Y17286D01* X11052Y17289D01* X11052Y17289D01* Y15719D01* X11052Y15719D01* X11043Y15719D01* X11034Y15717D01* X11026Y15713D01* X11019Y15708D01* X11013Y15702D01* X11008Y15695D01* X11004Y15687D01* X11002Y15679D01* X11001Y15670D01* X11001Y15661D01* X11003Y15653D01* X11007Y15645D01* X11019Y15621D01* X11029Y15595D01* X11036Y15569D01* X11041Y15543D01* X11044Y15516D01* X11044Y15489D01* X11042Y15462D01* X11037Y15435D01* X11030Y15409D01* X11021Y15383D01* X11009Y15359D01* X11006Y15351D01* X11004Y15342D01* X11004Y15333D01* X11005Y15325D01* X11007Y15317D01* X11011Y15309D01* X11016Y15302D01* X11023Y15296D01* X11030Y15291D01* X11038Y15288D01* X11047Y15286D01* X11052Y15286D01* Y13716D01* X11046Y13713D01* X11039Y13708D01* X11033Y13702D01* X11028Y13695D01* X11024Y13687D01* X11022Y13679D01* X11021Y13670D01* X11021Y13661D01* X11023Y13653D01* X11027Y13645D01* X11039Y13621D01* X11049Y13595D01* X11052Y13583D01* Y13416D01* X11050Y13409D01* X11041Y13383D01* X11029Y13359D01* X11026Y13351D01* X11024Y13342D01* X11024Y13333D01* X11025Y13325D01* X11027Y13317D01* X11031Y13309D01* X11036Y13302D01* X11043Y13296D01* X11050Y13291D01* X11052Y13290D01* Y11701D01* X11048Y11695D01* X11044Y11687D01* X11042Y11679D01* X11041Y11670D01* X11041Y11661D01* X11043Y11653D01* X11047Y11645D01* X11052Y11634D01* Y11365D01* X11049Y11359D01* X11046Y11351D01* X11044Y11342D01* X11044Y11333D01* X11045Y11325D01* X11047Y11317D01* X11051Y11309D01* X11052Y11307D01* Y5833D01* G37* G36* Y19696D02*X11050Y19701D01* X11044Y19707D01* X11036Y19712D01* X11029Y19716D01* X11020Y19718D01* X11012Y19719D01* X11003Y19719D01* X10994Y19717D01* X10986Y19713D01* X10979Y19708D01* X10973Y19702D01* X10972Y19701D01* Y21290D01* X10978Y21288D01* X10987Y21286D01* X10995Y21285D01* X11004Y21286D01* X11012Y21289D01* X11020Y21293D01* X11027Y21298D01* X11033Y21305D01* X11038Y21312D01* X11052Y21343D01* Y19696D01* G37* G36* Y21656D02*X11050Y21661D01* X11034Y21694D01* X11030Y21701D01* X11024Y21707D01* X11016Y21712D01* X11009Y21716D01* X11000Y21718D01* X10992Y21719D01* X10983Y21719D01* X10974Y21717D01* X10972Y21716D01* Y23286D01* X10975Y23285D01* X10984Y23286D01* X10992Y23289D01* X11000Y23293D01* X11007Y23298D01* X11013Y23305D01* X11018Y23312D01* X11033Y23344D01* X11046Y23378D01* X11052Y23404D01* Y21656D01* G37* G36* Y40000D02*X11132D01* Y15596D01* X11124Y15627D01* X11110Y15661D01* X11094Y15694D01* X11090Y15701D01* X11084Y15707D01* X11076Y15712D01* X11069Y15716D01* X11060Y15718D01* X11052Y15719D01* Y17289D01* X11060Y17293D01* X11067Y17298D01* X11073Y17305D01* X11078Y17312D01* X11093Y17344D01* X11106Y17378D01* X11115Y17413D01* X11121Y17449D01* X11124Y17485D01* X11124Y17521D01* X11120Y17557D01* X11114Y17593D01* X11104Y17627D01* X11090Y17661D01* X11074Y17694D01* X11070Y17701D01* X11064Y17707D01* X11056Y17712D01* X11052Y17714D01* Y19304D01* X11053Y19305D01* X11058Y19312D01* X11073Y19344D01* X11086Y19378D01* X11095Y19413D01* X11101Y19449D01* X11104Y19485D01* X11104Y19521D01* X11100Y19557D01* X11094Y19593D01* X11084Y19627D01* X11070Y19661D01* X11054Y19694D01* X11052Y19696D01* Y21343D01* X11053Y21344D01* X11066Y21378D01* X11075Y21413D01* X11081Y21449D01* X11084Y21485D01* X11084Y21521D01* X11080Y21557D01* X11074Y21593D01* X11064Y21627D01* X11052Y21656D01* Y23404D01* X11055Y23413D01* X11061Y23449D01* X11064Y23485D01* X11064Y23521D01* X11060Y23557D01* X11054Y23593D01* X11052Y23596D01* Y40000D01* G37* G36* X11132Y0D02*X11052D01* Y1137D01* X11078Y1150D01* X11086Y1155D01* X11092Y1161D01* X11097Y1168D01* X11101Y1175D01* X11103Y1184D01* X11104Y1193D01* X11104Y1201D01* X11101Y1210D01* X11098Y1218D01* X11093Y1225D01* X11087Y1231D01* X11080Y1236D01* X11072Y1240D01* X11064Y1243D01* X11055Y1243D01* X11052Y1243D01* Y1759D01* X11059Y1760D01* X11068Y1762D01* X11075Y1766D01* X11082Y1772D01* X11088Y1778D01* X11093Y1785D01* X11096Y1793D01* X11098Y1802D01* X11099Y1810D01* X11098Y1819D01* X11095Y1827D01* X11091Y1835D01* X11086Y1842D01* X11080Y1848D01* X11072Y1853D01* X11052Y1862D01* Y3147D01* X11058Y3150D01* X11066Y3155D01* X11072Y3161D01* X11077Y3168D01* X11081Y3175D01* X11083Y3184D01* X11084Y3193D01* X11084Y3201D01* X11081Y3210D01* X11078Y3218D01* X11073Y3225D01* X11067Y3231D01* X11060Y3236D01* X11052Y3240D01* Y3765D01* X11055Y3766D01* X11062Y3772D01* X11068Y3778D01* X11073Y3785D01* X11076Y3793D01* X11078Y3802D01* X11079Y3810D01* X11078Y3819D01* X11075Y3827D01* X11071Y3835D01* X11066Y3842D01* X11060Y3848D01* X11052Y3853D01* Y5161D01* X11057Y5168D01* X11061Y5175D01* X11063Y5184D01* X11064Y5193D01* X11064Y5201D01* X11061Y5210D01* X11058Y5218D01* X11053Y5225D01* X11052Y5225D01* Y5784D01* X11053Y5785D01* X11056Y5793D01* X11058Y5802D01* X11059Y5810D01* X11058Y5819D01* X11055Y5827D01* X11052Y5833D01* Y11307D01* X11056Y11302D01* X11063Y11296D01* X11070Y11291D01* X11078Y11288D01* X11087Y11286D01* X11095Y11285D01* X11104Y11286D01* X11112Y11289D01* X11120Y11293D01* X11127Y11298D01* X11132Y11304D01* Y9714D01* X11129Y9716D01* X11120Y9718D01* X11112Y9719D01* X11103Y9719D01* X11094Y9717D01* X11086Y9713D01* X11079Y9708D01* X11073Y9702D01* X11068Y9695D01* X11064Y9687D01* X11062Y9679D01* X11061Y9670D01* X11061Y9661D01* X11063Y9653D01* X11067Y9645D01* X11079Y9621D01* X11089Y9595D01* X11096Y9569D01* X11101Y9543D01* X11104Y9516D01* X11104Y9489D01* X11102Y9462D01* X11097Y9435D01* X11090Y9409D01* X11081Y9383D01* X11069Y9359D01* X11066Y9351D01* X11064Y9342D01* X11064Y9333D01* X11065Y9325D01* X11067Y9317D01* X11071Y9309D01* X11076Y9302D01* X11083Y9296D01* X11090Y9291D01* X11098Y9288D01* X11107Y9286D01* X11115Y9285D01* X11124Y9286D01* X11132Y9289D01* X11132Y9289D01* Y7719D01* X11132Y7719D01* X11123Y7719D01* X11114Y7717D01* X11106Y7713D01* X11099Y7708D01* X11093Y7702D01* X11088Y7695D01* X11084Y7687D01* X11082Y7679D01* X11081Y7670D01* X11081Y7661D01* X11083Y7653D01* X11087Y7645D01* X11099Y7621D01* X11109Y7595D01* X11116Y7569D01* X11121Y7543D01* X11124Y7516D01* X11124Y7489D01* X11122Y7462D01* X11117Y7435D01* X11110Y7409D01* X11101Y7383D01* X11089Y7359D01* X11086Y7351D01* X11084Y7342D01* X11084Y7333D01* X11085Y7325D01* X11087Y7317D01* X11091Y7309D01* X11096Y7302D01* X11103Y7296D01* X11110Y7291D01* X11118Y7288D01* X11127Y7286D01* X11132Y7286D01* Y5716D01* X11126Y5713D01* X11119Y5708D01* X11113Y5702D01* X11108Y5695D01* X11104Y5687D01* X11102Y5679D01* X11101Y5670D01* X11101Y5661D01* X11103Y5653D01* X11107Y5645D01* X11119Y5621D01* X11129Y5595D01* X11132Y5583D01* Y5416D01* X11130Y5409D01* X11121Y5383D01* X11109Y5359D01* X11106Y5351D01* X11104Y5342D01* X11104Y5333D01* X11105Y5325D01* X11107Y5317D01* X11111Y5309D01* X11116Y5302D01* X11123Y5296D01* X11130Y5291D01* X11132Y5290D01* Y3701D01* X11128Y3695D01* X11124Y3687D01* X11122Y3679D01* X11121Y3670D01* X11121Y3661D01* X11123Y3653D01* X11127Y3645D01* X11132Y3634D01* Y3365D01* X11129Y3359D01* X11126Y3351D01* X11124Y3342D01* X11124Y3333D01* X11125Y3325D01* X11127Y3317D01* X11131Y3309D01* X11132Y3307D01* Y0D01* G37* G36* Y11696D02*X11130Y11701D01* X11124Y11707D01* X11116Y11712D01* X11109Y11716D01* X11100Y11718D01* X11092Y11719D01* X11083Y11719D01* X11074Y11717D01* X11066Y11713D01* X11059Y11708D01* X11053Y11702D01* X11052Y11701D01* Y13290D01* X11058Y13288D01* X11067Y13286D01* X11075Y13285D01* X11084Y13286D01* X11092Y13289D01* X11100Y13293D01* X11107Y13298D01* X11113Y13305D01* X11118Y13312D01* X11132Y13343D01* Y11696D01* G37* G36* Y13656D02*X11130Y13661D01* X11114Y13694D01* X11110Y13701D01* X11104Y13707D01* X11096Y13712D01* X11089Y13716D01* X11080Y13718D01* X11072Y13719D01* X11063Y13719D01* X11054Y13717D01* X11052Y13716D01* Y15286D01* X11055Y15285D01* X11064Y15286D01* X11072Y15289D01* X11080Y15293D01* X11087Y15298D01* X11093Y15305D01* X11098Y15312D01* X11113Y15344D01* X11126Y15378D01* X11132Y15404D01* Y13656D01* G37* G36* Y40000D02*X11212D01* Y7596D01* X11204Y7627D01* X11190Y7661D01* X11174Y7694D01* X11170Y7701D01* X11164Y7707D01* X11156Y7712D01* X11149Y7716D01* X11140Y7718D01* X11132Y7719D01* Y9289D01* X11140Y9293D01* X11147Y9298D01* X11153Y9305D01* X11158Y9312D01* X11173Y9344D01* X11186Y9378D01* X11195Y9413D01* X11201Y9449D01* X11204Y9485D01* X11204Y9521D01* X11200Y9557D01* X11194Y9593D01* X11184Y9627D01* X11170Y9661D01* X11154Y9694D01* X11150Y9701D01* X11144Y9707D01* X11136Y9712D01* X11132Y9714D01* Y11304D01* X11133Y11305D01* X11138Y11312D01* X11153Y11344D01* X11166Y11378D01* X11175Y11413D01* X11181Y11449D01* X11184Y11485D01* X11184Y11521D01* X11180Y11557D01* X11174Y11593D01* X11164Y11627D01* X11150Y11661D01* X11134Y11694D01* X11132Y11696D01* Y13343D01* X11133Y13344D01* X11146Y13378D01* X11155Y13413D01* X11161Y13449D01* X11164Y13485D01* X11164Y13521D01* X11160Y13557D01* X11154Y13593D01* X11144Y13627D01* X11132Y13656D01* Y15404D01* X11135Y15413D01* X11141Y15449D01* X11144Y15485D01* X11144Y15521D01* X11140Y15557D01* X11134Y15593D01* X11132Y15596D01* Y40000D01* G37* G36* X11212Y0D02*X11132D01* Y3307D01* X11136Y3302D01* X11143Y3296D01* X11150Y3291D01* X11158Y3288D01* X11167Y3286D01* X11175Y3285D01* X11184Y3286D01* X11192Y3289D01* X11200Y3293D01* X11207Y3298D01* X11212Y3304D01* Y1714D01* X11209Y1716D01* X11200Y1718D01* X11192Y1719D01* X11183Y1719D01* X11174Y1717D01* X11166Y1713D01* X11159Y1708D01* X11153Y1702D01* X11148Y1695D01* X11144Y1687D01* X11142Y1679D01* X11141Y1670D01* X11141Y1661D01* X11143Y1653D01* X11147Y1645D01* X11159Y1621D01* X11169Y1595D01* X11176Y1569D01* X11181Y1543D01* X11184Y1516D01* X11184Y1489D01* X11182Y1462D01* X11177Y1435D01* X11170Y1409D01* X11161Y1383D01* X11149Y1359D01* X11146Y1351D01* X11144Y1342D01* X11144Y1333D01* X11145Y1325D01* X11147Y1317D01* X11151Y1309D01* X11156Y1302D01* X11163Y1296D01* X11170Y1291D01* X11178Y1288D01* X11187Y1286D01* X11195Y1285D01* X11204Y1286D01* X11212Y1289D01* X11212Y1289D01* Y0D01* G37* G36* Y3696D02*X11210Y3701D01* X11204Y3707D01* X11196Y3712D01* X11189Y3716D01* X11180Y3718D01* X11172Y3719D01* X11163Y3719D01* X11154Y3717D01* X11146Y3713D01* X11139Y3708D01* X11133Y3702D01* X11132Y3701D01* Y5290D01* X11138Y5288D01* X11147Y5286D01* X11155Y5285D01* X11164Y5286D01* X11172Y5289D01* X11180Y5293D01* X11187Y5298D01* X11193Y5305D01* X11198Y5312D01* X11212Y5343D01* Y3696D01* G37* G36* Y5656D02*X11210Y5661D01* X11194Y5694D01* X11190Y5701D01* X11184Y5707D01* X11176Y5712D01* X11169Y5716D01* X11160Y5718D01* X11152Y5719D01* X11143Y5719D01* X11134Y5717D01* X11132Y5716D01* Y7286D01* X11135Y7285D01* X11144Y7286D01* X11152Y7289D01* X11160Y7293D01* X11167Y7298D01* X11173Y7305D01* X11178Y7312D01* X11193Y7344D01* X11206Y7378D01* X11212Y7404D01* Y5656D01* G37* G36* Y40000D02*X12177D01* Y39710D01* X12169Y39706D01* X12162Y39701D01* X12156Y39695D01* X12151Y39687D01* X12136Y39655D01* X12123Y39621D01* X12114Y39586D01* X12108Y39550D01* X12105Y39514D01* X12105Y39478D01* X12109Y39442D01* X12115Y39407D01* X12125Y39372D01* X12139Y39338D01* X12155Y39306D01* X12159Y39299D01* X12165Y39292D01* X12173Y39287D01* X12177Y39285D01* Y37695D01* X12176Y37695D01* X12171Y37687D01* X12156Y37655D01* X12143Y37621D01* X12134Y37586D01* X12128Y37550D01* X12125Y37514D01* X12125Y37478D01* X12129Y37442D01* X12135Y37407D01* X12145Y37372D01* X12159Y37338D01* X12175Y37306D01* X12177Y37303D01* Y35656D01* X12176Y35655D01* X12163Y35621D01* X12154Y35586D01* X12148Y35550D01* X12145Y35514D01* X12145Y35478D01* X12149Y35442D01* X12155Y35407D01* X12165Y35372D01* X12177Y35343D01* Y33596D01* X12174Y33586D01* X12168Y33550D01* X12165Y33514D01* X12165Y33478D01* X12169Y33442D01* X12175Y33407D01* X12177Y33403D01* Y0D01* X11212D01* Y1289D01* X11220Y1293D01* X11227Y1298D01* X11233Y1305D01* X11238Y1312D01* X11253Y1344D01* X11266Y1378D01* X11275Y1413D01* X11281Y1449D01* X11284Y1485D01* X11284Y1521D01* X11280Y1557D01* X11274Y1593D01* X11264Y1627D01* X11250Y1661D01* X11234Y1694D01* X11230Y1701D01* X11224Y1707D01* X11216Y1712D01* X11212Y1714D01* Y3304D01* X11213Y3305D01* X11218Y3312D01* X11233Y3344D01* X11246Y3378D01* X11255Y3413D01* X11261Y3449D01* X11264Y3485D01* X11264Y3521D01* X11260Y3557D01* X11254Y3593D01* X11244Y3627D01* X11230Y3661D01* X11214Y3694D01* X11212Y3696D01* Y5343D01* X11213Y5344D01* X11226Y5378D01* X11235Y5413D01* X11241Y5449D01* X11244Y5485D01* X11244Y5521D01* X11240Y5557D01* X11234Y5593D01* X11224Y5627D01* X11212Y5656D01* Y7404D01* X11215Y7413D01* X11221Y7449D01* X11224Y7485D01* X11224Y7521D01* X11220Y7557D01* X11214Y7593D01* X11212Y7596D01* Y40000D01* G37* G36* X12177D02*X12277D01* Y35692D01* X12273Y35697D01* X12266Y35703D01* X12259Y35708D01* X12251Y35711D01* X12242Y35713D01* X12234Y35714D01* X12225Y35713D01* X12217Y35710D01* X12209Y35706D01* X12202Y35701D01* X12196Y35695D01* X12191Y35687D01* X12177Y35656D01* Y37303D01* X12179Y37299D01* X12185Y37292D01* X12193Y37287D01* X12200Y37283D01* X12209Y37281D01* X12217Y37280D01* X12226Y37281D01* X12235Y37283D01* X12243Y37286D01* X12250Y37291D01* X12256Y37297D01* X12261Y37304D01* X12265Y37312D01* X12267Y37320D01* X12268Y37329D01* X12268Y37338D01* X12266Y37346D01* X12262Y37354D01* X12250Y37378D01* X12240Y37404D01* X12233Y37430D01* X12228Y37456D01* X12225Y37483D01* X12225Y37511D01* X12227Y37538D01* X12232Y37564D01* X12239Y37590D01* X12248Y37616D01* X12260Y37640D01* X12263Y37649D01* X12265Y37657D01* X12265Y37666D01* X12264Y37674D01* X12262Y37683D01* X12258Y37690D01* X12253Y37697D01* X12246Y37703D01* X12239Y37708D01* X12231Y37711D01* X12222Y37713D01* X12214Y37714D01* X12205Y37713D01* X12197Y37710D01* X12189Y37706D01* X12182Y37701D01* X12177Y37695D01* Y39285D01* X12180Y39283D01* X12189Y39281D01* X12197Y39280D01* X12206Y39281D01* X12215Y39283D01* X12223Y39286D01* X12230Y39291D01* X12236Y39297D01* X12241Y39304D01* X12245Y39312D01* X12247Y39320D01* X12248Y39329D01* X12248Y39338D01* X12246Y39346D01* X12242Y39354D01* X12230Y39378D01* X12220Y39404D01* X12213Y39430D01* X12208Y39456D01* X12205Y39483D01* X12205Y39511D01* X12207Y39538D01* X12212Y39564D01* X12219Y39590D01* X12228Y39616D01* X12240Y39640D01* X12243Y39649D01* X12245Y39657D01* X12245Y39666D01* X12244Y39674D01* X12242Y39683D01* X12238Y39690D01* X12233Y39697D01* X12226Y39703D01* X12219Y39708D01* X12211Y39711D01* X12202Y39713D01* X12194Y39714D01* X12185Y39713D01* X12177Y39710D01* X12177Y39710D01* Y40000D01* G37* G36* Y35343D02*X12179Y35338D01* X12195Y35306D01* X12199Y35299D01* X12205Y35292D01* X12213Y35287D01* X12220Y35283D01* X12229Y35281D01* X12237Y35280D01* X12246Y35281D01* X12255Y35283D01* X12263Y35286D01* X12270Y35291D01* X12276Y35297D01* X12277Y35298D01* Y33709D01* X12271Y33711D01* X12262Y33713D01* X12254Y33714D01* X12245Y33713D01* X12237Y33710D01* X12229Y33706D01* X12222Y33701D01* X12216Y33695D01* X12211Y33687D01* X12196Y33655D01* X12183Y33621D01* X12177Y33596D01* Y35343D01* G37* G36* Y33403D02*X12185Y33372D01* X12199Y33338D01* X12215Y33306D01* X12219Y33299D01* X12225Y33292D01* X12233Y33287D01* X12240Y33283D01* X12249Y33281D01* X12257Y33280D01* X12266Y33281D01* X12275Y33283D01* X12277Y33284D01* Y31714D01* X12274Y31714D01* X12265Y31713D01* X12257Y31710D01* X12249Y31706D01* X12242Y31701D01* X12236Y31695D01* X12231Y31687D01* X12216Y31655D01* X12203Y31621D01* X12194Y31586D01* X12188Y31550D01* X12185Y31514D01* X12185Y31478D01* X12189Y31442D01* X12195Y31407D01* X12205Y31372D01* X12219Y31338D01* X12235Y31306D01* X12239Y31299D01* X12245Y31292D01* X12253Y31287D01* X12260Y31283D01* X12269Y31281D01* X12277Y31280D01* Y29710D01* X12269Y29706D01* X12262Y29701D01* X12256Y29695D01* X12251Y29687D01* X12236Y29655D01* X12223Y29621D01* X12214Y29586D01* X12208Y29550D01* X12205Y29514D01* X12205Y29478D01* X12209Y29442D01* X12215Y29407D01* X12225Y29372D01* X12239Y29338D01* X12255Y29306D01* X12259Y29299D01* X12265Y29292D01* X12273Y29287D01* X12277Y29285D01* Y27695D01* X12276Y27695D01* X12271Y27687D01* X12256Y27655D01* X12243Y27621D01* X12234Y27586D01* X12228Y27550D01* X12225Y27514D01* X12225Y27478D01* X12229Y27442D01* X12235Y27407D01* X12245Y27372D01* X12259Y27338D01* X12275Y27306D01* X12277Y27303D01* Y25656D01* X12276Y25655D01* X12263Y25621D01* X12254Y25586D01* X12248Y25550D01* X12245Y25514D01* X12245Y25478D01* X12249Y25442D01* X12255Y25407D01* X12265Y25372D01* X12277Y25343D01* Y23596D01* X12274Y23586D01* X12268Y23550D01* X12265Y23514D01* X12265Y23478D01* X12269Y23442D01* X12275Y23407D01* X12277Y23403D01* Y0D01* X12177D01* Y33403D01* G37* G36* X12277Y35365D02*X12270Y35378D01* X12260Y35404D01* X12253Y35430D01* X12248Y35456D01* X12245Y35483D01* X12245Y35511D01* X12247Y35538D01* X12252Y35564D01* X12259Y35590D01* X12268Y35616D01* X12277Y35634D01* Y35365D01* G37* G36* Y33417D02*X12273Y33430D01* X12268Y33456D01* X12265Y33483D01* X12265Y33511D01* X12267Y33538D01* X12272Y33564D01* X12277Y33583D01* Y33417D01* G37* G36* Y40000D02*X12377D01* Y39879D01* X12343Y39866D01* X12311Y39849D01* X12303Y39845D01* X12297Y39839D01* X12292Y39832D01* X12288Y39824D01* X12286Y39815D01* X12285Y39807D01* X12285Y39798D01* X12288Y39790D01* X12291Y39782D01* X12296Y39774D01* X12302Y39768D01* X12309Y39763D01* X12317Y39759D01* X12325Y39757D01* X12334Y39756D01* X12343Y39756D01* X12351Y39758D01* X12359Y39762D01* X12377Y39771D01* Y39229D01* X12364Y39235D01* X12356Y39238D01* X12347Y39240D01* X12338Y39240D01* X12330Y39239D01* X12321Y39237D01* X12314Y39233D01* X12307Y39228D01* X12301Y39221D01* X12296Y39214D01* X12293Y39206D01* X12291Y39197D01* X12290Y39189D01* X12291Y39180D01* X12294Y39172D01* X12298Y39164D01* X12303Y39157D01* X12309Y39151D01* X12317Y39146D01* X12349Y39131D01* X12377Y39121D01* Y37871D01* X12363Y37866D01* X12331Y37849D01* X12323Y37845D01* X12317Y37839D01* X12312Y37832D01* X12308Y37824D01* X12306Y37815D01* X12305Y37807D01* X12305Y37798D01* X12308Y37790D01* X12311Y37782D01* X12316Y37774D01* X12322Y37768D01* X12329Y37763D01* X12337Y37759D01* X12345Y37757D01* X12354Y37756D01* X12363Y37756D01* X12371Y37758D01* X12377Y37761D01* Y37238D01* X12376Y37238D01* X12367Y37240D01* X12358Y37240D01* X12350Y37239D01* X12341Y37237D01* X12334Y37233D01* X12327Y37228D01* X12321Y37221D01* X12316Y37214D01* X12313Y37206D01* X12311Y37197D01* X12310Y37189D01* X12311Y37180D01* X12314Y37172D01* X12318Y37164D01* X12323Y37157D01* X12329Y37151D01* X12337Y37146D01* X12369Y37131D01* X12377Y37128D01* Y35862D01* X12351Y35849D01* X12343Y35845D01* X12337Y35839D01* X12332Y35832D01* X12328Y35824D01* X12326Y35815D01* X12325Y35807D01* X12325Y35798D01* X12328Y35790D01* X12331Y35782D01* X12336Y35774D01* X12342Y35768D01* X12349Y35763D01* X12357Y35759D01* X12365Y35757D01* X12374Y35756D01* X12377Y35756D01* Y35240D01* X12370Y35239D01* X12361Y35237D01* X12354Y35233D01* X12347Y35228D01* X12341Y35221D01* X12336Y35214D01* X12333Y35206D01* X12331Y35197D01* X12330Y35189D01* X12331Y35180D01* X12334Y35172D01* X12338Y35164D01* X12343Y35157D01* X12349Y35151D01* X12357Y35146D01* X12377Y35137D01* Y33852D01* X12371Y33849D01* X12363Y33845D01* X12357Y33839D01* X12352Y33832D01* X12348Y33824D01* X12346Y33815D01* X12345Y33807D01* X12345Y33798D01* X12348Y33790D01* X12351Y33782D01* X12356Y33774D01* X12362Y33768D01* X12369Y33763D01* X12377Y33759D01* Y33234D01* X12374Y33233D01* X12367Y33228D01* X12361Y33221D01* X12356Y33214D01* X12353Y33206D01* X12351Y33197D01* X12350Y33189D01* X12351Y33180D01* X12354Y33172D01* X12358Y33164D01* X12363Y33157D01* X12369Y33151D01* X12377Y33147D01* Y31838D01* X12372Y31832D01* X12368Y31824D01* X12366Y31815D01* X12365Y31807D01* X12365Y31798D01* X12368Y31790D01* X12371Y31782D01* X12376Y31774D01* X12377Y31774D01* Y31215D01* X12376Y31214D01* X12373Y31206D01* X12371Y31197D01* X12370Y31189D01* X12371Y31180D01* X12374Y31172D01* X12377Y31167D01* Y25692D01* X12373Y25697D01* X12366Y25703D01* X12359Y25708D01* X12351Y25711D01* X12342Y25713D01* X12334Y25714D01* X12325Y25713D01* X12317Y25710D01* X12309Y25706D01* X12302Y25701D01* X12296Y25695D01* X12291Y25687D01* X12277Y25656D01* Y27303D01* X12279Y27299D01* X12285Y27292D01* X12293Y27287D01* X12300Y27283D01* X12309Y27281D01* X12317Y27280D01* X12326Y27281D01* X12335Y27283D01* X12343Y27286D01* X12350Y27291D01* X12356Y27297D01* X12361Y27304D01* X12365Y27312D01* X12367Y27320D01* X12368Y27329D01* X12368Y27338D01* X12366Y27346D01* X12362Y27354D01* X12350Y27378D01* X12340Y27404D01* X12333Y27430D01* X12328Y27456D01* X12325Y27483D01* X12325Y27511D01* X12327Y27538D01* X12332Y27564D01* X12339Y27590D01* X12348Y27616D01* X12360Y27640D01* X12363Y27649D01* X12365Y27657D01* X12365Y27666D01* X12364Y27674D01* X12362Y27683D01* X12358Y27690D01* X12353Y27697D01* X12346Y27703D01* X12339Y27708D01* X12331Y27711D01* X12322Y27713D01* X12314Y27714D01* X12305Y27713D01* X12297Y27710D01* X12289Y27706D01* X12282Y27701D01* X12277Y27695D01* Y29285D01* X12280Y29283D01* X12289Y29281D01* X12297Y29280D01* X12306Y29281D01* X12315Y29283D01* X12323Y29286D01* X12330Y29291D01* X12336Y29297D01* X12341Y29304D01* X12345Y29312D01* X12347Y29320D01* X12348Y29329D01* X12348Y29338D01* X12346Y29346D01* X12342Y29354D01* X12330Y29378D01* X12320Y29404D01* X12313Y29430D01* X12308Y29456D01* X12305Y29483D01* X12305Y29511D01* X12307Y29538D01* X12312Y29564D01* X12319Y29590D01* X12328Y29616D01* X12340Y29640D01* X12343Y29649D01* X12345Y29657D01* X12345Y29666D01* X12344Y29674D01* X12342Y29683D01* X12338Y29690D01* X12333Y29697D01* X12326Y29703D01* X12319Y29708D01* X12311Y29711D01* X12302Y29713D01* X12294Y29714D01* X12285Y29713D01* X12277Y29710D01* X12277Y29710D01* Y31280D01* X12277Y31280D01* X12286Y31281D01* X12295Y31283D01* X12303Y31286D01* X12310Y31291D01* X12316Y31297D01* X12321Y31304D01* X12325Y31312D01* X12327Y31320D01* X12328Y31329D01* X12328Y31338D01* X12326Y31346D01* X12322Y31354D01* X12310Y31378D01* X12300Y31404D01* X12293Y31430D01* X12288Y31456D01* X12285Y31483D01* X12285Y31511D01* X12287Y31538D01* X12292Y31564D01* X12299Y31590D01* X12308Y31616D01* X12320Y31640D01* X12323Y31649D01* X12325Y31657D01* X12325Y31666D01* X12324Y31674D01* X12322Y31683D01* X12318Y31690D01* X12313Y31697D01* X12306Y31703D01* X12299Y31708D01* X12291Y31711D01* X12282Y31713D01* X12277Y31714D01* Y33284D01* X12283Y33286D01* X12290Y33291D01* X12296Y33297D01* X12301Y33304D01* X12305Y33312D01* X12307Y33320D01* X12308Y33329D01* X12308Y33338D01* X12306Y33346D01* X12302Y33354D01* X12290Y33378D01* X12280Y33404D01* X12277Y33417D01* Y33583D01* X12279Y33590D01* X12288Y33616D01* X12300Y33640D01* X12303Y33649D01* X12305Y33657D01* X12305Y33666D01* X12304Y33674D01* X12302Y33683D01* X12298Y33690D01* X12293Y33697D01* X12286Y33703D01* X12279Y33708D01* X12277Y33709D01* Y35298D01* X12281Y35304D01* X12285Y35312D01* X12287Y35320D01* X12288Y35329D01* X12288Y35338D01* X12286Y35346D01* X12282Y35354D01* X12277Y35365D01* Y35634D01* X12280Y35640D01* X12283Y35649D01* X12285Y35657D01* X12285Y35666D01* X12284Y35674D01* X12282Y35683D01* X12278Y35690D01* X12277Y35692D01* Y40000D01* G37* G36* Y25343D02*X12279Y25338D01* X12295Y25306D01* X12299Y25299D01* X12305Y25292D01* X12313Y25287D01* X12320Y25283D01* X12329Y25281D01* X12337Y25280D01* X12346Y25281D01* X12355Y25283D01* X12363Y25286D01* X12370Y25291D01* X12376Y25297D01* X12377Y25298D01* Y23709D01* X12371Y23711D01* X12362Y23713D01* X12354Y23714D01* X12345Y23713D01* X12337Y23710D01* X12329Y23706D01* X12322Y23701D01* X12316Y23695D01* X12311Y23687D01* X12296Y23655D01* X12283Y23621D01* X12277Y23596D01* Y25343D01* G37* G36* Y23403D02*X12285Y23372D01* X12299Y23338D01* X12315Y23306D01* X12319Y23299D01* X12325Y23292D01* X12333Y23287D01* X12340Y23283D01* X12349Y23281D01* X12357Y23280D01* X12366Y23281D01* X12375Y23283D01* X12377Y23284D01* Y21714D01* X12374Y21714D01* X12365Y21713D01* X12357Y21710D01* X12349Y21706D01* X12342Y21701D01* X12336Y21695D01* X12331Y21687D01* X12316Y21655D01* X12303Y21621D01* X12294Y21586D01* X12288Y21550D01* X12285Y21514D01* X12285Y21478D01* X12289Y21442D01* X12295Y21407D01* X12305Y21372D01* X12319Y21338D01* X12335Y21306D01* X12339Y21299D01* X12345Y21292D01* X12353Y21287D01* X12360Y21283D01* X12369Y21281D01* X12377Y21280D01* Y19710D01* X12369Y19706D01* X12362Y19701D01* X12356Y19695D01* X12351Y19687D01* X12336Y19655D01* X12323Y19621D01* X12314Y19586D01* X12308Y19550D01* X12305Y19514D01* X12305Y19478D01* X12309Y19442D01* X12315Y19407D01* X12325Y19372D01* X12339Y19338D01* X12355Y19306D01* X12359Y19299D01* X12365Y19292D01* X12373Y19287D01* X12377Y19285D01* Y17695D01* X12376Y17695D01* X12371Y17687D01* X12356Y17655D01* X12343Y17621D01* X12334Y17586D01* X12328Y17550D01* X12325Y17514D01* X12325Y17478D01* X12329Y17442D01* X12335Y17407D01* X12345Y17372D01* X12359Y17338D01* X12375Y17306D01* X12377Y17303D01* Y15656D01* X12376Y15655D01* X12363Y15621D01* X12354Y15586D01* X12348Y15550D01* X12345Y15514D01* X12345Y15478D01* X12349Y15442D01* X12355Y15407D01* X12365Y15372D01* X12377Y15343D01* Y13596D01* X12374Y13586D01* X12368Y13550D01* X12365Y13514D01* X12365Y13478D01* X12369Y13442D01* X12375Y13407D01* X12377Y13403D01* Y0D01* X12277D01* Y23403D01* G37* G36* X12377Y25365D02*X12370Y25378D01* X12360Y25404D01* X12353Y25430D01* X12348Y25456D01* X12345Y25483D01* X12345Y25511D01* X12347Y25538D01* X12352Y25564D01* X12359Y25590D01* X12368Y25616D01* X12377Y25634D01* Y25365D01* G37* G36* Y23417D02*X12373Y23430D01* X12368Y23456D01* X12365Y23483D01* X12365Y23511D01* X12367Y23538D01* X12372Y23564D01* X12377Y23583D01* Y23417D01* G37* G36* Y40000D02*X12707D01* Y39840D01* X12706Y39842D01* X12700Y39848D01* X12692Y39853D01* X12660Y39868D01* X12626Y39881D01* X12591Y39890D01* X12555Y39896D01* X12519Y39899D01* X12483Y39899D01* X12447Y39895D01* X12411Y39889D01* X12377Y39879D01* X12377D01* Y40000D01* G37* G36* Y39771D02*X12383Y39774D01* X12409Y39784D01* X12435Y39791D01* X12461Y39796D01* X12488Y39799D01* X12515Y39799D01* X12542Y39797D01* X12569Y39793D01* X12595Y39785D01* X12621Y39776D01* X12645Y39764D01* X12653Y39761D01* X12662Y39759D01* X12671Y39759D01* X12679Y39760D01* X12688Y39762D01* X12695Y39766D01* X12702Y39772D01* X12707Y39777D01* Y39231D01* X12707Y39231D01* X12700Y39236D01* X12692Y39240D01* X12684Y39243D01* X12675Y39243D01* X12666Y39243D01* X12658Y39241D01* X12650Y39237D01* X12626Y39225D01* X12600Y39215D01* X12574Y39208D01* X12548Y39203D01* X12521Y39200D01* X12494Y39200D01* X12467Y39202D01* X12440Y39207D01* X12414Y39214D01* X12388Y39223D01* X12377Y39229D01* Y39771D01* G37* G36* Y39121D02*X12383Y39118D01* X12418Y39109D01* X12454Y39103D01* X12490Y39100D01* X12526Y39100D01* X12562Y39104D01* X12598Y39111D01* X12632Y39121D01* X12666Y39134D01* X12698Y39150D01* X12706Y39155D01* X12707Y39156D01* Y37855D01* X12680Y37868D01* X12646Y37881D01* X12611Y37890D01* X12575Y37896D01* X12539Y37899D01* X12503Y37899D01* X12467Y37895D01* X12431Y37889D01* X12397Y37879D01* X12377Y37871D01* Y39121D01* G37* G36* Y37761D02*X12379Y37762D01* X12403Y37774D01* X12429Y37784D01* X12455Y37791D01* X12481Y37796D01* X12508Y37799D01* X12535Y37799D01* X12562Y37797D01* X12589Y37793D01* X12615Y37785D01* X12641Y37776D01* X12665Y37764D01* X12673Y37761D01* X12682Y37759D01* X12691Y37759D01* X12699Y37760D01* X12707Y37762D01* Y37242D01* X12704Y37243D01* X12695Y37243D01* X12686Y37243D01* X12678Y37241D01* X12670Y37237D01* X12646Y37225D01* X12620Y37215D01* X12594Y37208D01* X12568Y37203D01* X12541Y37200D01* X12514Y37200D01* X12487Y37202D01* X12460Y37207D01* X12434Y37214D01* X12408Y37223D01* X12384Y37235D01* X12377Y37238D01* Y37761D01* G37* G36* Y37128D02*X12403Y37118D01* X12438Y37109D01* X12474Y37103D01* X12510Y37100D01* X12546Y37100D01* X12582Y37104D01* X12618Y37111D01* X12652Y37121D01* X12686Y37134D01* X12707Y37144D01* Y35865D01* X12700Y35868D01* X12666Y35881D01* X12631Y35890D01* X12595Y35896D01* X12559Y35899D01* X12523Y35899D01* X12487Y35895D01* X12451Y35889D01* X12417Y35879D01* X12383Y35866D01* X12377Y35862D01* Y37128D01* G37* G36* Y35756D02*X12383Y35756D01* X12391Y35758D01* X12399Y35762D01* X12423Y35774D01* X12449Y35784D01* X12475Y35791D01* X12501Y35796D01* X12528Y35799D01* X12555Y35799D01* X12582Y35797D01* X12609Y35793D01* X12635Y35785D01* X12661Y35776D01* X12685Y35764D01* X12693Y35761D01* X12702Y35759D01* X12707Y35759D01* Y35243D01* X12706Y35243D01* X12698Y35241D01* X12690Y35237D01* X12666Y35225D01* X12640Y35215D01* X12614Y35208D01* X12588Y35203D01* X12561Y35200D01* X12534Y35200D01* X12507Y35202D01* X12480Y35207D01* X12454Y35214D01* X12428Y35223D01* X12404Y35235D01* X12396Y35238D01* X12387Y35240D01* X12378Y35240D01* X12377Y35240D01* Y35756D01* G37* G36* Y35137D02*X12389Y35131D01* X12423Y35118D01* X12458Y35109D01* X12494Y35103D01* X12530Y35100D01* X12566Y35100D01* X12602Y35104D01* X12638Y35111D01* X12672Y35121D01* X12706Y35134D01* X12707Y35134D01* Y33873D01* X12686Y33881D01* X12651Y33890D01* X12615Y33896D01* X12579Y33899D01* X12543Y33899D01* X12507Y33895D01* X12471Y33889D01* X12437Y33879D01* X12403Y33866D01* X12377Y33852D01* Y35137D01* G37* G36* Y33759D02*X12377Y33759D01* X12385Y33757D01* X12394Y33756D01* X12403Y33756D01* X12411Y33758D01* X12419Y33762D01* X12443Y33774D01* X12469Y33784D01* X12495Y33791D01* X12521Y33796D01* X12548Y33799D01* X12575Y33799D01* X12602Y33797D01* X12629Y33793D01* X12655Y33785D01* X12681Y33776D01* X12705Y33764D01* X12707Y33764D01* Y33236D01* X12686Y33225D01* X12660Y33215D01* X12634Y33208D01* X12608Y33203D01* X12581Y33200D01* X12554Y33200D01* X12527Y33202D01* X12500Y33207D01* X12474Y33214D01* X12448Y33223D01* X12424Y33235D01* X12416Y33238D01* X12407Y33240D01* X12398Y33240D01* X12390Y33239D01* X12381Y33237D01* X12377Y33234D01* Y33759D01* G37* G36* Y33147D02*X12377Y33146D01* X12409Y33131D01* X12443Y33118D01* X12478Y33109D01* X12514Y33103D01* X12550Y33100D01* X12586Y33100D01* X12622Y33104D01* X12658Y33111D01* X12692Y33121D01* X12707Y33126D01* Y31880D01* X12706Y31881D01* X12671Y31890D01* X12635Y31896D01* X12599Y31899D01* X12563Y31899D01* X12527Y31895D01* X12491Y31889D01* X12457Y31879D01* X12423Y31866D01* X12391Y31849D01* X12383Y31845D01* X12377Y31839D01* X12377Y31838D01* Y33147D01* G37* G36* Y31774D02*X12382Y31768D01* X12389Y31763D01* X12397Y31759D01* X12405Y31757D01* X12414Y31756D01* X12423Y31756D01* X12431Y31758D01* X12439Y31762D01* X12463Y31774D01* X12489Y31784D01* X12515Y31791D01* X12541Y31796D01* X12568Y31799D01* X12595Y31799D01* X12622Y31797D01* X12649Y31793D01* X12675Y31785D01* X12701Y31776D01* X12707Y31773D01* Y31226D01* X12706Y31225D01* X12680Y31215D01* X12654Y31208D01* X12628Y31203D01* X12601Y31200D01* X12574Y31200D01* X12547Y31202D01* X12520Y31207D01* X12494Y31214D01* X12468Y31223D01* X12444Y31235D01* X12436Y31238D01* X12427Y31240D01* X12418Y31240D01* X12410Y31239D01* X12401Y31237D01* X12394Y31233D01* X12387Y31228D01* X12381Y31221D01* X12377Y31215D01* Y31774D01* G37* G36* Y31167D02*X12378Y31164D01* X12383Y31157D01* X12389Y31151D01* X12397Y31146D01* X12429Y31131D01* X12457Y31121D01* Y29871D01* X12443Y29866D01* X12411Y29849D01* X12403Y29845D01* X12397Y29839D01* X12392Y29832D01* X12388Y29824D01* X12386Y29815D01* X12385Y29807D01* X12385Y29798D01* X12388Y29790D01* X12391Y29782D01* X12396Y29774D01* X12402Y29768D01* X12409Y29763D01* X12417Y29759D01* X12425Y29757D01* X12434Y29756D01* X12443Y29756D01* X12451Y29758D01* X12457Y29761D01* Y29238D01* X12456Y29238D01* X12447Y29240D01* X12438Y29240D01* X12430Y29239D01* X12421Y29237D01* X12414Y29233D01* X12407Y29228D01* X12401Y29221D01* X12396Y29214D01* X12393Y29206D01* X12391Y29197D01* X12390Y29189D01* X12391Y29180D01* X12394Y29172D01* X12398Y29164D01* X12403Y29157D01* X12409Y29151D01* X12417Y29146D01* X12449Y29131D01* X12457Y29128D01* Y27862D01* X12431Y27849D01* X12423Y27845D01* X12417Y27839D01* X12412Y27832D01* X12408Y27824D01* X12406Y27815D01* X12405Y27807D01* X12405Y27798D01* X12408Y27790D01* X12411Y27782D01* X12416Y27774D01* X12422Y27768D01* X12429Y27763D01* X12437Y27759D01* X12445Y27757D01* X12454Y27756D01* X12457Y27756D01* Y27240D01* X12450Y27239D01* X12441Y27237D01* X12434Y27233D01* X12427Y27228D01* X12421Y27221D01* X12416Y27214D01* X12413Y27206D01* X12411Y27197D01* X12410Y27189D01* X12411Y27180D01* X12414Y27172D01* X12418Y27164D01* X12423Y27157D01* X12429Y27151D01* X12437Y27146D01* X12457Y27137D01* Y25852D01* X12451Y25849D01* X12443Y25845D01* X12437Y25839D01* X12432Y25832D01* X12428Y25824D01* X12426Y25815D01* X12425Y25807D01* X12425Y25798D01* X12428Y25790D01* X12431Y25782D01* X12436Y25774D01* X12442Y25768D01* X12449Y25763D01* X12457Y25759D01* Y25234D01* X12454Y25233D01* X12447Y25228D01* X12441Y25221D01* X12436Y25214D01* X12433Y25206D01* X12431Y25197D01* X12430Y25189D01* X12431Y25180D01* X12434Y25172D01* X12438Y25164D01* X12443Y25157D01* X12449Y25151D01* X12457Y25147D01* Y23838D01* X12452Y23832D01* X12448Y23824D01* X12446Y23815D01* X12445Y23807D01* X12445Y23798D01* X12448Y23790D01* X12451Y23782D01* X12456Y23774D01* X12457Y23774D01* Y23215D01* X12456Y23214D01* X12453Y23206D01* X12451Y23197D01* X12450Y23189D01* X12451Y23180D01* X12454Y23172D01* X12457Y23167D01* Y17692D01* X12453Y17697D01* X12446Y17703D01* X12439Y17708D01* X12431Y17711D01* X12422Y17713D01* X12414Y17714D01* X12405Y17713D01* X12397Y17710D01* X12389Y17706D01* X12382Y17701D01* X12377Y17695D01* Y19285D01* X12380Y19283D01* X12389Y19281D01* X12397Y19280D01* X12406Y19281D01* X12415Y19283D01* X12423Y19286D01* X12430Y19291D01* X12436Y19297D01* X12441Y19304D01* X12445Y19312D01* X12447Y19320D01* X12448Y19329D01* X12448Y19338D01* X12446Y19346D01* X12442Y19354D01* X12430Y19378D01* X12420Y19404D01* X12413Y19430D01* X12408Y19456D01* X12405Y19483D01* X12405Y19511D01* X12407Y19538D01* X12412Y19564D01* X12419Y19590D01* X12428Y19616D01* X12440Y19640D01* X12443Y19649D01* X12445Y19657D01* X12445Y19666D01* X12444Y19674D01* X12442Y19683D01* X12438Y19690D01* X12433Y19697D01* X12426Y19703D01* X12419Y19708D01* X12411Y19711D01* X12402Y19713D01* X12394Y19714D01* X12385Y19713D01* X12377Y19710D01* X12377Y19710D01* Y21280D01* X12377Y21280D01* X12386Y21281D01* X12395Y21283D01* X12403Y21286D01* X12410Y21291D01* X12416Y21297D01* X12421Y21304D01* X12425Y21312D01* X12427Y21320D01* X12428Y21329D01* X12428Y21338D01* X12426Y21346D01* X12422Y21354D01* X12410Y21378D01* X12400Y21404D01* X12393Y21430D01* X12388Y21456D01* X12385Y21483D01* X12385Y21511D01* X12387Y21538D01* X12392Y21564D01* X12399Y21590D01* X12408Y21616D01* X12420Y21640D01* X12423Y21649D01* X12425Y21657D01* X12425Y21666D01* X12424Y21674D01* X12422Y21683D01* X12418Y21690D01* X12413Y21697D01* X12406Y21703D01* X12399Y21708D01* X12391Y21711D01* X12382Y21713D01* X12377Y21714D01* Y23284D01* X12383Y23286D01* X12390Y23291D01* X12396Y23297D01* X12401Y23304D01* X12405Y23312D01* X12407Y23320D01* X12408Y23329D01* X12408Y23338D01* X12406Y23346D01* X12402Y23354D01* X12390Y23378D01* X12380Y23404D01* X12377Y23417D01* Y23583D01* X12379Y23590D01* X12388Y23616D01* X12400Y23640D01* X12403Y23649D01* X12405Y23657D01* X12405Y23666D01* X12404Y23674D01* X12402Y23683D01* X12398Y23690D01* X12393Y23697D01* X12386Y23703D01* X12379Y23708D01* X12377Y23709D01* Y25298D01* X12381Y25304D01* X12385Y25312D01* X12387Y25320D01* X12388Y25329D01* X12388Y25338D01* X12386Y25346D01* X12382Y25354D01* X12377Y25365D01* Y25634D01* X12380Y25640D01* X12383Y25649D01* X12385Y25657D01* X12385Y25666D01* X12384Y25674D01* X12382Y25683D01* X12378Y25690D01* X12377Y25692D01* Y31167D01* G37* G36* X12457Y0D02*X12377D01* Y13403D01* X12385Y13372D01* X12399Y13338D01* X12415Y13306D01* X12419Y13299D01* X12425Y13292D01* X12433Y13287D01* X12440Y13283D01* X12449Y13281D01* X12457Y13280D01* Y11710D01* X12449Y11706D01* X12442Y11701D01* X12436Y11695D01* X12431Y11687D01* X12416Y11655D01* X12403Y11621D01* X12394Y11586D01* X12388Y11550D01* X12385Y11514D01* X12385Y11478D01* X12389Y11442D01* X12395Y11407D01* X12405Y11372D01* X12419Y11338D01* X12435Y11306D01* X12439Y11299D01* X12445Y11292D01* X12453Y11287D01* X12457Y11285D01* Y9695D01* X12456Y9695D01* X12451Y9687D01* X12436Y9655D01* X12423Y9621D01* X12414Y9586D01* X12408Y9550D01* X12405Y9514D01* X12405Y9478D01* X12409Y9442D01* X12415Y9407D01* X12425Y9372D01* X12439Y9338D01* X12455Y9306D01* X12457Y9303D01* Y7656D01* X12456Y7655D01* X12443Y7621D01* X12434Y7586D01* X12428Y7550D01* X12425Y7514D01* X12425Y7478D01* X12429Y7442D01* X12435Y7407D01* X12445Y7372D01* X12457Y7343D01* Y5596D01* X12454Y5586D01* X12448Y5550D01* X12445Y5514D01* X12445Y5478D01* X12449Y5442D01* X12455Y5407D01* X12457Y5403D01* Y0D01* G37* G36* Y13714D02*X12454Y13714D01* X12445Y13713D01* X12437Y13710D01* X12429Y13706D01* X12422Y13701D01* X12416Y13695D01* X12411Y13687D01* X12396Y13655D01* X12383Y13621D01* X12377Y13596D01* Y15343D01* X12379Y15338D01* X12395Y15306D01* X12399Y15299D01* X12405Y15292D01* X12413Y15287D01* X12420Y15283D01* X12429Y15281D01* X12437Y15280D01* X12446Y15281D01* X12455Y15283D01* X12457Y15284D01* Y13714D01* G37* G36* Y15417D02*X12453Y15430D01* X12448Y15456D01* X12445Y15483D01* X12445Y15511D01* X12447Y15538D01* X12452Y15564D01* X12457Y15583D01* Y15417D01* G37* G36* Y15709D02*X12451Y15711D01* X12442Y15713D01* X12434Y15714D01* X12425Y15713D01* X12417Y15710D01* X12409Y15706D01* X12402Y15701D01* X12396Y15695D01* X12391Y15687D01* X12377Y15656D01* Y17303D01* X12379Y17299D01* X12385Y17292D01* X12393Y17287D01* X12400Y17283D01* X12409Y17281D01* X12417Y17280D01* X12426Y17281D01* X12435Y17283D01* X12443Y17286D01* X12450Y17291D01* X12456Y17297D01* X12457Y17298D01* Y15709D01* G37* G36* Y17365D02*X12450Y17378D01* X12440Y17404D01* X12433Y17430D01* X12428Y17456D01* X12425Y17483D01* X12425Y17511D01* X12427Y17538D01* X12432Y17564D01* X12439Y17590D01* X12448Y17616D01* X12457Y17634D01* Y17365D01* G37* G36* Y31121D02*X12463Y31118D01* X12498Y31109D01* X12534Y31103D01* X12570Y31100D01* X12606Y31100D01* X12642Y31104D01* X12678Y31111D01* X12707Y31119D01* Y29886D01* X12691Y29890D01* X12655Y29896D01* X12619Y29899D01* X12583Y29899D01* X12547Y29895D01* X12511Y29889D01* X12477Y29879D01* X12457Y29871D01* Y31121D01* G37* G36* Y29761D02*X12459Y29762D01* X12483Y29774D01* X12509Y29784D01* X12535Y29791D01* X12561Y29796D01* X12588Y29799D01* X12615Y29799D01* X12642Y29797D01* X12669Y29793D01* X12695Y29785D01* X12707Y29781D01* Y29218D01* X12700Y29215D01* X12674Y29208D01* X12648Y29203D01* X12621Y29200D01* X12594Y29200D01* X12567Y29202D01* X12540Y29207D01* X12514Y29214D01* X12488Y29223D01* X12464Y29235D01* X12457Y29238D01* Y29761D01* G37* G36* Y29128D02*X12483Y29118D01* X12518Y29109D01* X12554Y29103D01* X12590Y29100D01* X12626Y29100D01* X12662Y29104D01* X12698Y29111D01* X12707Y29113D01* Y27891D01* X12675Y27896D01* X12639Y27899D01* X12603Y27899D01* X12567Y27895D01* X12531Y27889D01* X12497Y27879D01* X12463Y27866D01* X12457Y27862D01* Y29128D01* G37* G36* Y27756D02*X12463Y27756D01* X12471Y27758D01* X12479Y27762D01* X12503Y27774D01* X12529Y27784D01* X12555Y27791D01* X12581Y27796D01* X12608Y27799D01* X12635Y27799D01* X12662Y27797D01* X12689Y27793D01* X12707Y27788D01* Y27212D01* X12694Y27208D01* X12668Y27203D01* X12641Y27200D01* X12614Y27200D01* X12587Y27202D01* X12560Y27207D01* X12534Y27214D01* X12508Y27223D01* X12484Y27235D01* X12476Y27238D01* X12467Y27240D01* X12458Y27240D01* X12457Y27240D01* Y27756D01* G37* G36* Y27137D02*X12469Y27131D01* X12503Y27118D01* X12538Y27109D01* X12574Y27103D01* X12610Y27100D01* X12646Y27100D01* X12682Y27104D01* X12707Y27109D01* Y25894D01* X12695Y25896D01* X12659Y25899D01* X12623Y25899D01* X12587Y25895D01* X12551Y25889D01* X12517Y25879D01* X12483Y25866D01* X12457Y25852D01* Y27137D01* G37* G36* Y25759D02*X12457Y25759D01* X12465Y25757D01* X12474Y25756D01* X12483Y25756D01* X12491Y25758D01* X12499Y25762D01* X12523Y25774D01* X12549Y25784D01* X12575Y25791D01* X12601Y25796D01* X12628Y25799D01* X12655Y25799D01* X12682Y25797D01* X12707Y25793D01* Y25206D01* X12688Y25203D01* X12661Y25200D01* X12634Y25200D01* X12607Y25202D01* X12580Y25207D01* X12554Y25214D01* X12528Y25223D01* X12504Y25235D01* X12496Y25238D01* X12487Y25240D01* X12478Y25240D01* X12470Y25239D01* X12461Y25237D01* X12457Y25234D01* Y25759D01* G37* G36* Y25147D02*X12457Y25146D01* X12489Y25131D01* X12523Y25118D01* X12558Y25109D01* X12594Y25103D01* X12630Y25100D01* X12666Y25100D01* X12702Y25104D01* X12707Y25105D01* Y23897D01* X12679Y23899D01* X12643Y23899D01* X12607Y23895D01* X12571Y23889D01* X12537Y23879D01* X12503Y23866D01* X12471Y23849D01* X12463Y23845D01* X12457Y23839D01* X12457Y23838D01* Y25147D01* G37* G36* Y23774D02*X12462Y23768D01* X12469Y23763D01* X12477Y23759D01* X12485Y23757D01* X12494Y23756D01* X12503Y23756D01* X12511Y23758D01* X12519Y23762D01* X12543Y23774D01* X12569Y23784D01* X12595Y23791D01* X12621Y23796D01* X12648Y23799D01* X12675Y23799D01* X12702Y23797D01* X12707Y23796D01* Y23203D01* X12681Y23200D01* X12654Y23200D01* X12627Y23202D01* X12600Y23207D01* X12574Y23214D01* X12548Y23223D01* X12524Y23235D01* X12516Y23238D01* X12507Y23240D01* X12498Y23240D01* X12490Y23239D01* X12481Y23237D01* X12474Y23233D01* X12467Y23228D01* X12461Y23221D01* X12457Y23215D01* Y23774D01* G37* G36* Y23167D02*X12458Y23164D01* X12463Y23157D01* X12469Y23151D01* X12477Y23146D01* X12509Y23131D01* X12537Y23121D01* Y21871D01* X12523Y21866D01* X12491Y21849D01* X12483Y21845D01* X12477Y21839D01* X12472Y21832D01* X12468Y21824D01* X12466Y21815D01* X12465Y21807D01* X12465Y21798D01* X12468Y21790D01* X12471Y21782D01* X12476Y21774D01* X12482Y21768D01* X12489Y21763D01* X12497Y21759D01* X12505Y21757D01* X12514Y21756D01* X12523Y21756D01* X12531Y21758D01* X12537Y21761D01* Y21238D01* X12536Y21238D01* X12527Y21240D01* X12518Y21240D01* X12510Y21239D01* X12501Y21237D01* X12494Y21233D01* X12487Y21228D01* X12481Y21221D01* X12476Y21214D01* X12473Y21206D01* X12471Y21197D01* X12470Y21189D01* X12471Y21180D01* X12474Y21172D01* X12478Y21164D01* X12483Y21157D01* X12489Y21151D01* X12497Y21146D01* X12529Y21131D01* X12537Y21128D01* Y19862D01* X12511Y19849D01* X12503Y19845D01* X12497Y19839D01* X12492Y19832D01* X12488Y19824D01* X12486Y19815D01* X12485Y19807D01* X12485Y19798D01* X12488Y19790D01* X12491Y19782D01* X12496Y19774D01* X12502Y19768D01* X12509Y19763D01* X12517Y19759D01* X12525Y19757D01* X12534Y19756D01* X12537Y19756D01* Y19240D01* X12530Y19239D01* X12521Y19237D01* X12514Y19233D01* X12507Y19228D01* X12501Y19221D01* X12496Y19214D01* X12493Y19206D01* X12491Y19197D01* X12490Y19189D01* X12491Y19180D01* X12494Y19172D01* X12498Y19164D01* X12503Y19157D01* X12509Y19151D01* X12517Y19146D01* X12537Y19137D01* Y17852D01* X12531Y17849D01* X12523Y17845D01* X12517Y17839D01* X12512Y17832D01* X12508Y17824D01* X12506Y17815D01* X12505Y17807D01* X12505Y17798D01* X12508Y17790D01* X12511Y17782D01* X12516Y17774D01* X12522Y17768D01* X12529Y17763D01* X12537Y17759D01* Y17234D01* X12534Y17233D01* X12527Y17228D01* X12521Y17221D01* X12516Y17214D01* X12513Y17206D01* X12511Y17197D01* X12510Y17189D01* X12511Y17180D01* X12514Y17172D01* X12518Y17164D01* X12523Y17157D01* X12529Y17151D01* X12537Y17147D01* Y15838D01* X12532Y15832D01* X12528Y15824D01* X12526Y15815D01* X12525Y15807D01* X12525Y15798D01* X12528Y15790D01* X12531Y15782D01* X12536Y15774D01* X12537Y15774D01* Y15215D01* X12536Y15214D01* X12533Y15206D01* X12531Y15197D01* X12530Y15189D01* X12531Y15180D01* X12534Y15172D01* X12537Y15167D01* Y9692D01* X12533Y9697D01* X12526Y9703D01* X12519Y9708D01* X12511Y9711D01* X12502Y9713D01* X12494Y9714D01* X12485Y9713D01* X12477Y9710D01* X12469Y9706D01* X12462Y9701D01* X12457Y9695D01* Y11285D01* X12460Y11283D01* X12469Y11281D01* X12477Y11280D01* X12486Y11281D01* X12495Y11283D01* X12503Y11286D01* X12510Y11291D01* X12516Y11297D01* X12521Y11304D01* X12525Y11312D01* X12527Y11320D01* X12528Y11329D01* X12528Y11338D01* X12526Y11346D01* X12522Y11354D01* X12510Y11378D01* X12500Y11404D01* X12493Y11430D01* X12488Y11456D01* X12485Y11483D01* X12485Y11511D01* X12487Y11538D01* X12492Y11564D01* X12499Y11590D01* X12508Y11616D01* X12520Y11640D01* X12523Y11649D01* X12525Y11657D01* X12525Y11666D01* X12524Y11674D01* X12522Y11683D01* X12518Y11690D01* X12513Y11697D01* X12506Y11703D01* X12499Y11708D01* X12491Y11711D01* X12482Y11713D01* X12474Y11714D01* X12465Y11713D01* X12457Y11710D01* X12457Y11710D01* Y13280D01* X12457Y13280D01* X12466Y13281D01* X12475Y13283D01* X12483Y13286D01* X12490Y13291D01* X12496Y13297D01* X12501Y13304D01* X12505Y13312D01* X12507Y13320D01* X12508Y13329D01* X12508Y13338D01* X12506Y13346D01* X12502Y13354D01* X12490Y13378D01* X12480Y13404D01* X12473Y13430D01* X12468Y13456D01* X12465Y13483D01* X12465Y13511D01* X12467Y13538D01* X12472Y13564D01* X12479Y13590D01* X12488Y13616D01* X12500Y13640D01* X12503Y13649D01* X12505Y13657D01* X12505Y13666D01* X12504Y13674D01* X12502Y13683D01* X12498Y13690D01* X12493Y13697D01* X12486Y13703D01* X12479Y13708D01* X12471Y13711D01* X12462Y13713D01* X12457Y13714D01* Y15284D01* X12463Y15286D01* X12470Y15291D01* X12476Y15297D01* X12481Y15304D01* X12485Y15312D01* X12487Y15320D01* X12488Y15329D01* X12488Y15338D01* X12486Y15346D01* X12482Y15354D01* X12470Y15378D01* X12460Y15404D01* X12457Y15417D01* Y15583D01* X12459Y15590D01* X12468Y15616D01* X12480Y15640D01* X12483Y15649D01* X12485Y15657D01* X12485Y15666D01* X12484Y15674D01* X12482Y15683D01* X12478Y15690D01* X12473Y15697D01* X12466Y15703D01* X12459Y15708D01* X12457Y15709D01* Y17298D01* X12461Y17304D01* X12465Y17312D01* X12467Y17320D01* X12468Y17329D01* X12468Y17338D01* X12466Y17346D01* X12462Y17354D01* X12457Y17365D01* Y17634D01* X12460Y17640D01* X12463Y17649D01* X12465Y17657D01* X12465Y17666D01* X12464Y17674D01* X12462Y17683D01* X12458Y17690D01* X12457Y17692D01* Y23167D01* G37* G36* X12537Y0D02*X12457D01* Y5403D01* X12465Y5372D01* X12479Y5338D01* X12495Y5306D01* X12499Y5299D01* X12505Y5292D01* X12513Y5287D01* X12520Y5283D01* X12529Y5281D01* X12537Y5280D01* Y3710D01* X12529Y3706D01* X12522Y3701D01* X12516Y3695D01* X12511Y3687D01* X12496Y3655D01* X12483Y3621D01* X12474Y3586D01* X12468Y3550D01* X12465Y3514D01* X12465Y3478D01* X12469Y3442D01* X12475Y3407D01* X12485Y3372D01* X12499Y3338D01* X12515Y3306D01* X12519Y3299D01* X12525Y3292D01* X12533Y3287D01* X12537Y3285D01* Y1695D01* X12536Y1695D01* X12531Y1687D01* X12516Y1655D01* X12503Y1621D01* X12494Y1586D01* X12488Y1550D01* X12485Y1514D01* X12485Y1478D01* X12489Y1442D01* X12495Y1407D01* X12505Y1372D01* X12519Y1338D01* X12535Y1306D01* X12537Y1303D01* Y0D01* G37* G36* Y5714D02*X12534Y5714D01* X12525Y5713D01* X12517Y5710D01* X12509Y5706D01* X12502Y5701D01* X12496Y5695D01* X12491Y5687D01* X12476Y5655D01* X12463Y5621D01* X12457Y5596D01* Y7343D01* X12459Y7338D01* X12475Y7306D01* X12479Y7299D01* X12485Y7292D01* X12493Y7287D01* X12500Y7283D01* X12509Y7281D01* X12517Y7280D01* X12526Y7281D01* X12535Y7283D01* X12537Y7284D01* Y5714D01* G37* G36* Y7417D02*X12533Y7430D01* X12528Y7456D01* X12525Y7483D01* X12525Y7511D01* X12527Y7538D01* X12532Y7564D01* X12537Y7583D01* Y7417D01* G37* G36* Y7709D02*X12531Y7711D01* X12522Y7713D01* X12514Y7714D01* X12505Y7713D01* X12497Y7710D01* X12489Y7706D01* X12482Y7701D01* X12476Y7695D01* X12471Y7687D01* X12457Y7656D01* Y9303D01* X12459Y9299D01* X12465Y9292D01* X12473Y9287D01* X12480Y9283D01* X12489Y9281D01* X12497Y9280D01* X12506Y9281D01* X12515Y9283D01* X12523Y9286D01* X12530Y9291D01* X12536Y9297D01* X12537Y9298D01* Y7709D01* G37* G36* Y9365D02*X12530Y9378D01* X12520Y9404D01* X12513Y9430D01* X12508Y9456D01* X12505Y9483D01* X12505Y9511D01* X12507Y9538D01* X12512Y9564D01* X12519Y9590D01* X12528Y9616D01* X12537Y9634D01* Y9365D01* G37* G36* Y23121D02*X12543Y23118D01* X12578Y23109D01* X12614Y23103D01* X12650Y23100D01* X12686Y23100D01* X12707Y23102D01* Y21899D01* X12699Y21899D01* X12663Y21899D01* X12627Y21895D01* X12591Y21889D01* X12557Y21879D01* X12537Y21871D01* Y23121D01* G37* G36* Y21761D02*X12539Y21762D01* X12563Y21774D01* X12589Y21784D01* X12615Y21791D01* X12641Y21796D01* X12668Y21799D01* X12695Y21799D01* X12707Y21798D01* Y21201D01* X12701Y21200D01* X12674Y21200D01* X12647Y21202D01* X12620Y21207D01* X12594Y21214D01* X12568Y21223D01* X12544Y21235D01* X12537Y21238D01* Y21761D01* G37* G36* Y21128D02*X12563Y21118D01* X12598Y21109D01* X12634Y21103D01* X12670Y21100D01* X12706Y21100D01* X12707Y21100D01* Y19899D01* X12683Y19899D01* X12647Y19895D01* X12611Y19889D01* X12577Y19879D01* X12543Y19866D01* X12537Y19862D01* Y21128D01* G37* G36* Y19756D02*X12543Y19756D01* X12551Y19758D01* X12559Y19762D01* X12583Y19774D01* X12609Y19784D01* X12635Y19791D01* X12661Y19796D01* X12688Y19799D01* X12707Y19799D01* Y19200D01* X12694Y19200D01* X12667Y19202D01* X12640Y19207D01* X12614Y19214D01* X12588Y19223D01* X12564Y19235D01* X12556Y19238D01* X12547Y19240D01* X12538Y19240D01* X12537Y19240D01* Y19756D01* G37* G36* Y19137D02*X12549Y19131D01* X12583Y19118D01* X12618Y19109D01* X12654Y19103D01* X12690Y19100D01* X12707Y19100D01* Y17899D01* X12703D01* X12667Y17895D01* X12631Y17889D01* X12597Y17879D01* X12563Y17866D01* X12537Y17852D01* Y19137D01* G37* G36* Y17759D02*X12537Y17759D01* X12545Y17757D01* X12554Y17756D01* X12563Y17756D01* X12571Y17758D01* X12579Y17762D01* X12603Y17774D01* X12629Y17784D01* X12655Y17791D01* X12681Y17796D01* X12707Y17799D01* Y17200D01* X12687Y17202D01* X12660Y17207D01* X12634Y17214D01* X12608Y17223D01* X12584Y17235D01* X12576Y17238D01* X12567Y17240D01* X12558Y17240D01* X12550Y17239D01* X12541Y17237D01* X12537Y17234D01* Y17759D01* G37* G36* Y17147D02*X12537Y17146D01* X12569Y17131D01* X12603Y17118D01* X12638Y17109D01* X12674Y17103D01* X12707Y17100D01* Y15897D01* X12687Y15895D01* X12651Y15889D01* X12617Y15879D01* X12583Y15866D01* X12551Y15849D01* X12543Y15845D01* X12537Y15839D01* X12537Y15838D01* Y17147D01* G37* G36* Y15774D02*X12542Y15768D01* X12549Y15763D01* X12557Y15759D01* X12565Y15757D01* X12574Y15756D01* X12583Y15756D01* X12591Y15758D01* X12599Y15762D01* X12623Y15774D01* X12649Y15784D01* X12675Y15791D01* X12701Y15796D01* X12707Y15797D01* Y15202D01* X12707Y15202D01* X12680Y15207D01* X12654Y15214D01* X12628Y15223D01* X12604Y15235D01* X12596Y15238D01* X12587Y15240D01* X12578Y15240D01* X12570Y15239D01* X12561Y15237D01* X12554Y15233D01* X12547Y15228D01* X12541Y15221D01* X12537Y15215D01* Y15774D01* G37* G36* Y15167D02*X12538Y15164D01* X12543Y15157D01* X12549Y15151D01* X12557Y15146D01* X12589Y15131D01* X12623Y15118D01* X12658Y15109D01* X12694Y15103D01* X12707Y15102D01* Y13895D01* X12707D01* X12671Y13889D01* X12637Y13879D01* X12603Y13866D01* X12571Y13849D01* X12563Y13845D01* X12557Y13839D01* X12552Y13832D01* X12548Y13824D01* X12546Y13815D01* X12545Y13807D01* X12545Y13798D01* X12548Y13790D01* X12551Y13782D01* X12556Y13774D01* X12562Y13768D01* X12569Y13763D01* X12577Y13759D01* X12585Y13757D01* X12594Y13756D01* X12603Y13756D01* X12611Y13758D01* X12619Y13762D01* X12643Y13774D01* X12669Y13784D01* X12695Y13791D01* X12707Y13794D01* Y13205D01* X12700Y13207D01* X12674Y13214D01* X12648Y13223D01* X12624Y13235D01* X12616Y13238D01* X12607Y13240D01* X12598Y13240D01* X12590Y13239D01* X12581Y13237D01* X12574Y13233D01* X12567Y13228D01* X12561Y13221D01* X12556Y13214D01* X12553Y13206D01* X12551Y13197D01* X12550Y13189D01* X12551Y13180D01* X12554Y13172D01* X12558Y13164D01* X12563Y13157D01* X12569Y13151D01* X12577Y13146D01* X12609Y13131D01* X12643Y13118D01* X12678Y13109D01* X12707Y13104D01* Y11892D01* X12691Y11889D01* X12657Y11879D01* X12623Y11866D01* X12591Y11849D01* X12583Y11845D01* X12577Y11839D01* X12572Y11832D01* X12568Y11824D01* X12566Y11815D01* X12565Y11807D01* X12565Y11798D01* X12568Y11790D01* X12571Y11782D01* X12576Y11774D01* X12582Y11768D01* X12589Y11763D01* X12597Y11759D01* X12605Y11757D01* X12614Y11756D01* X12623Y11756D01* X12631Y11758D01* X12639Y11762D01* X12663Y11774D01* X12689Y11784D01* X12707Y11789D01* Y11210D01* X12694Y11214D01* X12668Y11223D01* X12644Y11235D01* X12636Y11238D01* X12627Y11240D01* X12618Y11240D01* X12610Y11239D01* X12601Y11237D01* X12594Y11233D01* X12587Y11228D01* X12581Y11221D01* X12576Y11214D01* X12573Y11206D01* X12571Y11197D01* X12570Y11189D01* X12571Y11180D01* X12574Y11172D01* X12578Y11164D01* X12583Y11157D01* X12589Y11151D01* X12597Y11146D01* X12629Y11131D01* X12663Y11118D01* X12698Y11109D01* X12707Y11107D01* Y9887D01* X12677Y9879D01* X12643Y9866D01* X12611Y9849D01* X12603Y9845D01* X12597Y9839D01* X12592Y9832D01* X12588Y9824D01* X12586Y9815D01* X12585Y9807D01* X12585Y9798D01* X12588Y9790D01* X12591Y9782D01* X12596Y9774D01* X12602Y9768D01* X12609Y9763D01* X12617Y9759D01* X12625Y9757D01* X12634Y9756D01* X12643Y9756D01* X12651Y9758D01* X12659Y9762D01* X12683Y9774D01* X12707Y9783D01* Y9216D01* X12688Y9223D01* X12664Y9235D01* X12656Y9238D01* X12647Y9240D01* X12638Y9240D01* X12630Y9239D01* X12621Y9237D01* X12614Y9233D01* X12607Y9228D01* X12601Y9221D01* X12596Y9214D01* X12593Y9206D01* X12591Y9197D01* X12590Y9189D01* X12591Y9180D01* X12594Y9172D01* X12598Y9164D01* X12603Y9157D01* X12609Y9151D01* X12617Y9146D01* X12649Y9131D01* X12683Y9118D01* X12707Y9112D01* Y7882D01* X12697Y7879D01* X12663Y7866D01* X12631Y7849D01* X12623Y7845D01* X12617Y7839D01* X12612Y7832D01* X12608Y7824D01* X12606Y7815D01* X12605Y7807D01* X12605Y7798D01* X12608Y7790D01* X12611Y7782D01* X12616Y7774D01* X12622Y7768D01* X12629Y7763D01* X12637Y7759D01* X12645Y7757D01* X12654Y7756D01* X12663Y7756D01* X12671Y7758D01* X12679Y7762D01* X12703Y7774D01* X12707Y7776D01* Y7223D01* X12684Y7235D01* X12676Y7238D01* X12667Y7240D01* X12658Y7240D01* X12650Y7239D01* X12641Y7237D01* X12634Y7233D01* X12627Y7228D01* X12621Y7221D01* X12616Y7214D01* X12613Y7206D01* X12611Y7197D01* X12610Y7189D01* X12611Y7180D01* X12614Y7172D01* X12618Y7164D01* X12623Y7157D01* X12629Y7151D01* X12637Y7146D01* X12669Y7131D01* X12703Y7118D01* X12707Y7117D01* Y5875D01* X12683Y5866D01* X12651Y5849D01* X12643Y5845D01* X12637Y5839D01* X12632Y5832D01* X12628Y5824D01* X12626Y5815D01* X12625Y5807D01* X12625Y5798D01* X12628Y5790D01* X12631Y5782D01* X12636Y5774D01* X12642Y5768D01* X12649Y5763D01* X12657Y5759D01* X12665Y5757D01* X12674Y5756D01* X12683Y5756D01* X12691Y5758D01* X12699Y5762D01* X12707Y5766D01* Y5233D01* X12704Y5235D01* X12696Y5238D01* X12687Y5240D01* X12678Y5240D01* X12670Y5239D01* X12661Y5237D01* X12654Y5233D01* X12647Y5228D01* X12641Y5221D01* X12636Y5214D01* X12633Y5206D01* X12631Y5197D01* X12630Y5189D01* X12631Y5180D01* X12634Y5172D01* X12638Y5164D01* X12643Y5157D01* X12649Y5151D01* X12657Y5146D01* X12689Y5131D01* X12707Y5124D01* Y3867D01* X12703Y3866D01* X12671Y3849D01* X12663Y3845D01* X12657Y3839D01* X12652Y3832D01* X12648Y3824D01* X12646Y3815D01* X12645Y3807D01* X12645Y3798D01* X12648Y3790D01* X12651Y3782D01* X12656Y3774D01* X12662Y3768D01* X12669Y3763D01* X12677Y3759D01* X12685Y3757D01* X12694Y3756D01* X12703Y3756D01* X12707Y3757D01* Y3240D01* X12707D01* X12698Y3240D01* X12690Y3239D01* X12681Y3237D01* X12674Y3233D01* X12667Y3228D01* X12661Y3221D01* X12656Y3214D01* X12653Y3206D01* X12651Y3197D01* X12650Y3189D01* X12651Y3180D01* X12654Y3172D01* X12658Y3164D01* X12663Y3157D01* X12669Y3151D01* X12677Y3146D01* X12707Y3132D01* Y1858D01* X12691Y1849D01* X12683Y1845D01* X12677Y1839D01* X12672Y1832D01* X12668Y1824D01* X12666Y1815D01* X12665Y1807D01* X12665Y1798D01* X12668Y1790D01* X12671Y1782D01* X12676Y1774D01* X12682Y1768D01* X12689Y1763D01* X12697Y1759D01* X12705Y1757D01* X12707Y1756D01* Y1239D01* X12701Y1237D01* X12694Y1233D01* X12687Y1228D01* X12681Y1221D01* X12676Y1214D01* X12673Y1206D01* X12671Y1197D01* X12670Y1189D01* X12671Y1180D01* X12674Y1172D01* X12678Y1164D01* X12683Y1157D01* X12689Y1151D01* X12697Y1146D01* X12707Y1141D01* Y0D01* X12537D01* Y1303D01* X12539Y1299D01* X12545Y1292D01* X12553Y1287D01* X12560Y1283D01* X12569Y1281D01* X12577Y1280D01* X12586Y1281D01* X12595Y1283D01* X12603Y1286D01* X12610Y1291D01* X12616Y1297D01* X12621Y1304D01* X12625Y1312D01* X12627Y1320D01* X12628Y1329D01* X12628Y1338D01* X12626Y1346D01* X12622Y1354D01* X12610Y1378D01* X12600Y1404D01* X12593Y1430D01* X12588Y1456D01* X12585Y1483D01* X12585Y1511D01* X12587Y1538D01* X12592Y1564D01* X12599Y1590D01* X12608Y1616D01* X12620Y1640D01* X12623Y1649D01* X12625Y1657D01* X12625Y1666D01* X12624Y1674D01* X12622Y1683D01* X12618Y1690D01* X12613Y1697D01* X12606Y1703D01* X12599Y1708D01* X12591Y1711D01* X12582Y1713D01* X12574Y1714D01* X12565Y1713D01* X12557Y1710D01* X12549Y1706D01* X12542Y1701D01* X12537Y1695D01* Y3285D01* X12540Y3283D01* X12549Y3281D01* X12557Y3280D01* X12566Y3281D01* X12575Y3283D01* X12583Y3286D01* X12590Y3291D01* X12596Y3297D01* X12601Y3304D01* X12605Y3312D01* X12607Y3320D01* X12608Y3329D01* X12608Y3338D01* X12606Y3346D01* X12602Y3354D01* X12590Y3378D01* X12580Y3404D01* X12573Y3430D01* X12568Y3456D01* X12565Y3483D01* X12565Y3511D01* X12567Y3538D01* X12572Y3564D01* X12579Y3590D01* X12588Y3616D01* X12600Y3640D01* X12603Y3649D01* X12605Y3657D01* X12605Y3666D01* X12604Y3674D01* X12602Y3683D01* X12598Y3690D01* X12593Y3697D01* X12586Y3703D01* X12579Y3708D01* X12571Y3711D01* X12562Y3713D01* X12554Y3714D01* X12545Y3713D01* X12537Y3710D01* X12537Y3710D01* Y5280D01* X12537Y5280D01* X12546Y5281D01* X12555Y5283D01* X12563Y5286D01* X12570Y5291D01* X12576Y5297D01* X12581Y5304D01* X12585Y5312D01* X12587Y5320D01* X12588Y5329D01* X12588Y5338D01* X12586Y5346D01* X12582Y5354D01* X12570Y5378D01* X12560Y5404D01* X12553Y5430D01* X12548Y5456D01* X12545Y5483D01* X12545Y5511D01* X12547Y5538D01* X12552Y5564D01* X12559Y5590D01* X12568Y5616D01* X12580Y5640D01* X12583Y5649D01* X12585Y5657D01* X12585Y5666D01* X12584Y5674D01* X12582Y5683D01* X12578Y5690D01* X12573Y5697D01* X12566Y5703D01* X12559Y5708D01* X12551Y5711D01* X12542Y5713D01* X12537Y5714D01* Y7284D01* X12543Y7286D01* X12550Y7291D01* X12556Y7297D01* X12561Y7304D01* X12565Y7312D01* X12567Y7320D01* X12568Y7329D01* X12568Y7338D01* X12566Y7346D01* X12562Y7354D01* X12550Y7378D01* X12540Y7404D01* X12537Y7417D01* Y7583D01* X12539Y7590D01* X12548Y7616D01* X12560Y7640D01* X12563Y7649D01* X12565Y7657D01* X12565Y7666D01* X12564Y7674D01* X12562Y7683D01* X12558Y7690D01* X12553Y7697D01* X12546Y7703D01* X12539Y7708D01* X12537Y7709D01* Y9298D01* X12541Y9304D01* X12545Y9312D01* X12547Y9320D01* X12548Y9329D01* X12548Y9338D01* X12546Y9346D01* X12542Y9354D01* X12537Y9365D01* Y9634D01* X12540Y9640D01* X12543Y9649D01* X12545Y9657D01* X12545Y9666D01* X12544Y9674D01* X12542Y9683D01* X12538Y9690D01* X12537Y9692D01* Y15167D01* G37* G36* X12707Y40000D02*X12832D01* Y39714D01* X12829Y39716D01* X12820Y39718D01* X12812Y39719D01* X12803Y39719D01* X12794Y39717D01* X12786Y39713D01* X12779Y39708D01* X12773Y39702D01* X12768Y39695D01* X12764Y39687D01* X12762Y39679D01* X12761Y39670D01* X12761Y39661D01* X12763Y39653D01* X12767Y39645D01* X12779Y39621D01* X12789Y39595D01* X12796Y39569D01* X12801Y39543D01* X12804Y39516D01* X12804Y39489D01* X12802Y39462D01* X12797Y39435D01* X12790Y39409D01* X12781Y39383D01* X12769Y39359D01* X12766Y39351D01* X12764Y39342D01* X12764Y39333D01* X12765Y39325D01* X12767Y39317D01* X12771Y39309D01* X12776Y39302D01* X12783Y39296D01* X12790Y39291D01* X12798Y39288D01* X12807Y39286D01* X12815Y39285D01* X12824Y39286D01* X12832Y39289D01* X12832Y39289D01* Y37719D01* X12832Y37719D01* X12823Y37719D01* X12814Y37717D01* X12806Y37713D01* X12799Y37708D01* X12793Y37702D01* X12788Y37695D01* X12784Y37687D01* X12782Y37679D01* X12781Y37670D01* X12781Y37661D01* X12783Y37653D01* X12787Y37645D01* X12799Y37621D01* X12809Y37595D01* X12816Y37569D01* X12821Y37543D01* X12824Y37516D01* X12824Y37489D01* X12822Y37462D01* X12817Y37435D01* X12810Y37409D01* X12801Y37383D01* X12789Y37359D01* X12786Y37351D01* X12784Y37342D01* X12784Y37333D01* X12785Y37325D01* X12787Y37317D01* X12791Y37309D01* X12796Y37302D01* X12803Y37296D01* X12810Y37291D01* X12818Y37288D01* X12827Y37286D01* X12832Y37286D01* Y35716D01* X12826Y35713D01* X12819Y35708D01* X12813Y35702D01* X12808Y35695D01* X12804Y35687D01* X12802Y35679D01* X12801Y35670D01* X12801Y35661D01* X12803Y35653D01* X12807Y35645D01* X12819Y35621D01* X12829Y35595D01* X12832Y35583D01* Y35416D01* X12830Y35409D01* X12821Y35383D01* X12809Y35359D01* X12806Y35351D01* X12804Y35342D01* X12804Y35333D01* X12805Y35325D01* X12807Y35317D01* X12811Y35309D01* X12816Y35302D01* X12823Y35296D01* X12830Y35291D01* X12832Y35290D01* Y33701D01* X12828Y33695D01* X12824Y33687D01* X12822Y33679D01* X12821Y33670D01* X12821Y33661D01* X12823Y33653D01* X12827Y33645D01* X12832Y33634D01* Y33365D01* X12829Y33359D01* X12826Y33351D01* X12824Y33342D01* X12824Y33333D01* X12825Y33325D01* X12827Y33317D01* X12831Y33309D01* X12832Y33307D01* Y27833D01* X12831Y27835D01* X12826Y27842D01* X12820Y27848D01* X12812Y27853D01* X12780Y27868D01* X12746Y27881D01* X12711Y27890D01* X12707Y27891D01* Y29113D01* X12732Y29121D01* X12766Y29134D01* X12798Y29150D01* X12806Y29155D01* X12812Y29161D01* X12817Y29168D01* X12821Y29175D01* X12823Y29184D01* X12824Y29193D01* X12824Y29201D01* X12821Y29210D01* X12818Y29218D01* X12813Y29225D01* X12807Y29231D01* X12800Y29236D01* X12792Y29240D01* X12784Y29243D01* X12775Y29243D01* X12766Y29243D01* X12758Y29241D01* X12750Y29237D01* X12726Y29225D01* X12707Y29218D01* Y29781D01* X12721Y29776D01* X12745Y29764D01* X12753Y29761D01* X12762Y29759D01* X12771Y29759D01* X12779Y29760D01* X12788Y29762D01* X12795Y29766D01* X12802Y29772D01* X12808Y29778D01* X12813Y29785D01* X12816Y29793D01* X12818Y29802D01* X12819Y29810D01* X12818Y29819D01* X12815Y29827D01* X12811Y29835D01* X12806Y29842D01* X12800Y29848D01* X12792Y29853D01* X12760Y29868D01* X12726Y29881D01* X12707Y29886D01* Y31119D01* X12712Y31121D01* X12746Y31134D01* X12778Y31150D01* X12786Y31155D01* X12792Y31161D01* X12797Y31168D01* X12801Y31175D01* X12803Y31184D01* X12804Y31193D01* X12804Y31201D01* X12801Y31210D01* X12798Y31218D01* X12793Y31225D01* X12787Y31231D01* X12780Y31236D01* X12772Y31240D01* X12764Y31243D01* X12755Y31243D01* X12746Y31243D01* X12738Y31241D01* X12730Y31237D01* X12707Y31226D01* Y31773D01* X12725Y31764D01* X12733Y31761D01* X12742Y31759D01* X12751Y31759D01* X12759Y31760D01* X12768Y31762D01* X12775Y31766D01* X12782Y31772D01* X12788Y31778D01* X12793Y31785D01* X12796Y31793D01* X12798Y31802D01* X12799Y31810D01* X12798Y31819D01* X12795Y31827D01* X12791Y31835D01* X12786Y31842D01* X12780Y31848D01* X12772Y31853D01* X12740Y31868D01* X12707Y31880D01* Y33126D01* X12726Y33134D01* X12758Y33150D01* X12766Y33155D01* X12772Y33161D01* X12777Y33168D01* X12781Y33175D01* X12783Y33184D01* X12784Y33193D01* X12784Y33201D01* X12781Y33210D01* X12778Y33218D01* X12773Y33225D01* X12767Y33231D01* X12760Y33236D01* X12752Y33240D01* X12744Y33243D01* X12735Y33243D01* X12726Y33243D01* X12718Y33241D01* X12710Y33237D01* X12707Y33236D01* Y33764D01* X12713Y33761D01* X12722Y33759D01* X12731Y33759D01* X12739Y33760D01* X12748Y33762D01* X12755Y33766D01* X12762Y33772D01* X12768Y33778D01* X12773Y33785D01* X12776Y33793D01* X12778Y33802D01* X12779Y33810D01* X12778Y33819D01* X12775Y33827D01* X12771Y33835D01* X12766Y33842D01* X12760Y33848D01* X12752Y33853D01* X12720Y33868D01* X12707Y33873D01* Y35134D01* X12738Y35150D01* X12746Y35155D01* X12752Y35161D01* X12757Y35168D01* X12761Y35175D01* X12763Y35184D01* X12764Y35193D01* X12764Y35201D01* X12761Y35210D01* X12758Y35218D01* X12753Y35225D01* X12747Y35231D01* X12740Y35236D01* X12732Y35240D01* X12724Y35243D01* X12715Y35243D01* X12707Y35243D01* Y35759D01* X12711Y35759D01* X12719Y35760D01* X12728Y35762D01* X12735Y35766D01* X12742Y35772D01* X12748Y35778D01* X12753Y35785D01* X12756Y35793D01* X12758Y35802D01* X12759Y35810D01* X12758Y35819D01* X12755Y35827D01* X12751Y35835D01* X12746Y35842D01* X12740Y35848D01* X12732Y35853D01* X12707Y35865D01* Y37144D01* X12718Y37150D01* X12726Y37155D01* X12732Y37161D01* X12737Y37168D01* X12741Y37175D01* X12743Y37184D01* X12744Y37193D01* X12744Y37201D01* X12741Y37210D01* X12738Y37218D01* X12733Y37225D01* X12727Y37231D01* X12720Y37236D01* X12712Y37240D01* X12707Y37242D01* Y37762D01* X12708Y37762D01* X12715Y37766D01* X12722Y37772D01* X12728Y37778D01* X12733Y37785D01* X12736Y37793D01* X12738Y37802D01* X12739Y37810D01* X12738Y37819D01* X12735Y37827D01* X12731Y37835D01* X12726Y37842D01* X12720Y37848D01* X12712Y37853D01* X12707Y37855D01* Y39156D01* X12712Y39161D01* X12717Y39168D01* X12721Y39175D01* X12723Y39184D01* X12724Y39193D01* X12724Y39201D01* X12721Y39210D01* X12718Y39218D01* X12713Y39225D01* X12707Y39231D01* Y39777D01* X12708Y39778D01* X12713Y39785D01* X12716Y39793D01* X12718Y39802D01* X12719Y39810D01* X12718Y39819D01* X12715Y39827D01* X12711Y39835D01* X12707Y39840D01* Y40000D01* G37* G36* X12832Y17884D02*X12811Y17890D01* X12775Y17896D01* X12739Y17899D01* X12707Y17899D01* Y19100D01* X12726Y19100D01* X12762Y19104D01* X12798Y19111D01* X12832Y19121D01* X12832D01* Y17884D01* G37* G36* Y19229D02*X12826Y19225D01* X12800Y19215D01* X12774Y19208D01* X12748Y19203D01* X12721Y19200D01* X12707Y19200D01* Y19799D01* X12715Y19799D01* X12742Y19797D01* X12769Y19793D01* X12795Y19785D01* X12821Y19776D01* X12832Y19771D01* Y19229D01* G37* G36* Y19878D02*X12826Y19881D01* X12791Y19890D01* X12755Y19896D01* X12719Y19899D01* X12707Y19899D01* Y21100D01* X12742Y21104D01* X12778Y21111D01* X12812Y21121D01* X12832Y21128D01* Y19878D01* G37* G36* Y21238D02*X12830Y21237D01* X12806Y21225D01* X12780Y21215D01* X12754Y21208D01* X12728Y21203D01* X12707Y21201D01* Y21798D01* X12722Y21797D01* X12749Y21793D01* X12775Y21785D01* X12801Y21776D01* X12825Y21764D01* X12832Y21762D01* Y21238D01* G37* G36* Y21871D02*X12806Y21881D01* X12771Y21890D01* X12735Y21896D01* X12707Y21899D01* Y23102D01* X12722Y23104D01* X12758Y23111D01* X12792Y23121D01* X12826Y23134D01* X12832Y23137D01* Y21871D01* G37* G36* Y23243D02*X12826Y23243D01* X12818Y23241D01* X12810Y23237D01* X12786Y23225D01* X12760Y23215D01* X12734Y23208D01* X12708Y23203D01* X12707D01* Y23796D01* X12729Y23793D01* X12755Y23785D01* X12781Y23776D01* X12805Y23764D01* X12813Y23761D01* X12822Y23759D01* X12831Y23759D01* X12832Y23759D01* Y23243D01* G37* G36* Y23862D02*X12820Y23868D01* X12786Y23881D01* X12751Y23890D01* X12715Y23896D01* X12707Y23897D01* Y25105D01* X12738Y25111D01* X12772Y25121D01* X12806Y25134D01* X12832Y25147D01* Y23862D01* G37* G36* Y25240D02*X12832Y25240D01* X12824Y25243D01* X12815Y25243D01* X12806Y25243D01* X12798Y25241D01* X12790Y25237D01* X12766Y25225D01* X12740Y25215D01* X12714Y25208D01* X12707Y25206D01* Y25793D01* X12709Y25793D01* X12735Y25785D01* X12761Y25776D01* X12785Y25764D01* X12793Y25761D01* X12802Y25759D01* X12811Y25759D01* X12819Y25760D01* X12828Y25762D01* X12832Y25765D01* Y25240D01* G37* G36* Y25853D02*X12832Y25853D01* X12800Y25868D01* X12766Y25881D01* X12731Y25890D01* X12707Y25894D01* Y27109D01* X12718Y27111D01* X12752Y27121D01* X12786Y27134D01* X12818Y27150D01* X12826Y27155D01* X12832Y27161D01* X12832Y27161D01* Y25853D01* G37* G36* Y27225D02*X12827Y27231D01* X12820Y27236D01* X12812Y27240D01* X12804Y27243D01* X12795Y27243D01* X12786Y27243D01* X12778Y27241D01* X12770Y27237D01* X12746Y27225D01* X12720Y27215D01* X12707Y27212D01* Y27788D01* X12715Y27785D01* X12741Y27776D01* X12765Y27764D01* X12773Y27761D01* X12782Y27759D01* X12791Y27759D01* X12799Y27760D01* X12808Y27762D01* X12815Y27766D01* X12822Y27772D01* X12828Y27778D01* X12832Y27784D01* Y27225D01* G37* G36* Y40000D02*X12932D01* Y35596D01* X12924Y35627D01* X12910Y35661D01* X12894Y35694D01* X12890Y35701D01* X12884Y35707D01* X12876Y35712D01* X12869Y35716D01* X12860Y35718D01* X12852Y35719D01* X12843Y35719D01* X12834Y35717D01* X12832Y35716D01* Y37286D01* X12835Y37285D01* X12844Y37286D01* X12852Y37289D01* X12860Y37293D01* X12867Y37298D01* X12873Y37305D01* X12878Y37312D01* X12893Y37344D01* X12906Y37378D01* X12915Y37413D01* X12921Y37449D01* X12924Y37485D01* X12924Y37521D01* X12920Y37557D01* X12914Y37593D01* X12904Y37627D01* X12890Y37661D01* X12874Y37694D01* X12870Y37701D01* X12864Y37707D01* X12856Y37712D01* X12849Y37716D01* X12840Y37718D01* X12832Y37719D01* Y39289D01* X12840Y39293D01* X12847Y39298D01* X12853Y39305D01* X12858Y39312D01* X12873Y39344D01* X12886Y39378D01* X12895Y39413D01* X12901Y39449D01* X12904Y39485D01* X12904Y39521D01* X12900Y39557D01* X12894Y39593D01* X12884Y39627D01* X12870Y39661D01* X12854Y39694D01* X12850Y39701D01* X12844Y39707D01* X12836Y39712D01* X12832Y39714D01* Y40000D01* G37* G36* Y35583D02*X12836Y35569D01* X12841Y35543D01* X12844Y35516D01* X12844Y35489D01* X12842Y35462D01* X12837Y35435D01* X12832Y35416D01* Y35583D01* G37* G36* Y35290D02*X12838Y35288D01* X12847Y35286D01* X12855Y35285D01* X12864Y35286D01* X12872Y35289D01* X12880Y35293D01* X12887Y35298D01* X12893Y35305D01* X12898Y35312D01* X12913Y35344D01* X12926Y35378D01* X12932Y35404D01* Y33656D01* X12930Y33661D01* X12914Y33694D01* X12910Y33701D01* X12904Y33707D01* X12896Y33712D01* X12889Y33716D01* X12880Y33718D01* X12872Y33719D01* X12863Y33719D01* X12854Y33717D01* X12846Y33713D01* X12839Y33708D01* X12833Y33702D01* X12832Y33701D01* Y35290D01* G37* G36* Y33634D02*X12839Y33621D01* X12849Y33595D01* X12856Y33569D01* X12861Y33543D01* X12864Y33516D01* X12864Y33489D01* X12862Y33462D01* X12857Y33435D01* X12850Y33409D01* X12841Y33383D01* X12832Y33365D01* Y33634D01* G37* G36* Y33307D02*X12836Y33302D01* X12843Y33296D01* X12850Y33291D01* X12858Y33288D01* X12867Y33286D01* X12875Y33285D01* X12884Y33286D01* X12892Y33289D01* X12900Y33293D01* X12907Y33298D01* X12913Y33305D01* X12918Y33312D01* X12932Y33343D01* Y31696D01* X12930Y31701D01* X12924Y31707D01* X12916Y31712D01* X12909Y31716D01* X12900Y31718D01* X12892Y31719D01* X12883Y31719D01* X12874Y31717D01* X12866Y31713D01* X12859Y31708D01* X12853Y31702D01* X12848Y31695D01* X12844Y31687D01* X12842Y31679D01* X12841Y31670D01* X12841Y31661D01* X12843Y31653D01* X12847Y31645D01* X12859Y31621D01* X12869Y31595D01* X12876Y31569D01* X12881Y31543D01* X12884Y31516D01* X12884Y31489D01* X12882Y31462D01* X12877Y31435D01* X12870Y31409D01* X12861Y31383D01* X12849Y31359D01* X12846Y31351D01* X12844Y31342D01* X12844Y31333D01* X12845Y31325D01* X12847Y31317D01* X12851Y31309D01* X12856Y31302D01* X12863Y31296D01* X12870Y31291D01* X12878Y31288D01* X12887Y31286D01* X12895Y31285D01* X12904Y31286D01* X12912Y31289D01* X12920Y31293D01* X12927Y31298D01* X12932Y31304D01* Y29714D01* X12929Y29716D01* X12920Y29718D01* X12912Y29719D01* X12903Y29719D01* X12894Y29717D01* X12886Y29713D01* X12879Y29708D01* X12873Y29702D01* X12868Y29695D01* X12864Y29687D01* X12862Y29679D01* X12861Y29670D01* X12861Y29661D01* X12863Y29653D01* X12867Y29645D01* X12879Y29621D01* X12889Y29595D01* X12896Y29569D01* X12901Y29543D01* X12904Y29516D01* X12904Y29489D01* X12902Y29462D01* X12897Y29435D01* X12890Y29409D01* X12881Y29383D01* X12869Y29359D01* X12866Y29351D01* X12864Y29342D01* X12864Y29333D01* X12865Y29325D01* X12867Y29317D01* X12871Y29309D01* X12876Y29302D01* X12883Y29296D01* X12890Y29291D01* X12898Y29288D01* X12907Y29286D01* X12915Y29285D01* X12924Y29286D01* X12932Y29289D01* X12932Y29289D01* Y27719D01* X12932Y27719D01* X12923Y27719D01* X12914Y27717D01* X12906Y27713D01* X12899Y27708D01* X12893Y27702D01* X12888Y27695D01* X12884Y27687D01* X12882Y27679D01* X12881Y27670D01* X12881Y27661D01* X12883Y27653D01* X12887Y27645D01* X12899Y27621D01* X12909Y27595D01* X12916Y27569D01* X12921Y27543D01* X12924Y27516D01* X12924Y27489D01* X12922Y27462D01* X12917Y27435D01* X12910Y27409D01* X12901Y27383D01* X12889Y27359D01* X12886Y27351D01* X12884Y27342D01* X12884Y27333D01* X12885Y27325D01* X12887Y27317D01* X12891Y27309D01* X12896Y27302D01* X12903Y27296D01* X12910Y27291D01* X12918Y27288D01* X12927Y27286D01* X12932Y27286D01* Y25716D01* X12926Y25713D01* X12919Y25708D01* X12913Y25702D01* X12908Y25695D01* X12904Y25687D01* X12902Y25679D01* X12901Y25670D01* X12901Y25661D01* X12903Y25653D01* X12907Y25645D01* X12919Y25621D01* X12929Y25595D01* X12932Y25583D01* Y25416D01* X12930Y25409D01* X12921Y25383D01* X12909Y25359D01* X12906Y25351D01* X12904Y25342D01* X12904Y25333D01* X12905Y25325D01* X12907Y25317D01* X12911Y25309D01* X12916Y25302D01* X12923Y25296D01* X12930Y25291D01* X12932Y25290D01* Y23701D01* X12928Y23695D01* X12924Y23687D01* X12922Y23679D01* X12921Y23670D01* X12921Y23661D01* X12923Y23653D01* X12927Y23645D01* X12932Y23634D01* Y23365D01* X12929Y23359D01* X12926Y23351D01* X12924Y23342D01* X12924Y23333D01* X12925Y23325D01* X12927Y23317D01* X12931Y23309D01* X12932Y23307D01* Y17833D01* X12931Y17835D01* X12926Y17842D01* X12920Y17848D01* X12912Y17853D01* X12880Y17868D01* X12846Y17881D01* X12832Y17884D01* Y19121D01* X12866Y19134D01* X12898Y19150D01* X12906Y19155D01* X12912Y19161D01* X12917Y19168D01* X12921Y19175D01* X12923Y19184D01* X12924Y19193D01* X12924Y19201D01* X12921Y19210D01* X12918Y19218D01* X12913Y19225D01* X12907Y19231D01* X12900Y19236D01* X12892Y19240D01* X12884Y19243D01* X12875Y19243D01* X12866Y19243D01* X12858Y19241D01* X12850Y19237D01* X12832Y19229D01* Y19771D01* X12845Y19764D01* X12853Y19761D01* X12862Y19759D01* X12871Y19759D01* X12879Y19760D01* X12888Y19762D01* X12895Y19766D01* X12902Y19772D01* X12908Y19778D01* X12913Y19785D01* X12916Y19793D01* X12918Y19802D01* X12919Y19810D01* X12918Y19819D01* X12915Y19827D01* X12911Y19835D01* X12906Y19842D01* X12900Y19848D01* X12892Y19853D01* X12860Y19868D01* X12832Y19878D01* Y21128D01* X12846Y21134D01* X12878Y21150D01* X12886Y21155D01* X12892Y21161D01* X12897Y21168D01* X12901Y21175D01* X12903Y21184D01* X12904Y21193D01* X12904Y21201D01* X12901Y21210D01* X12898Y21218D01* X12893Y21225D01* X12887Y21231D01* X12880Y21236D01* X12872Y21240D01* X12864Y21243D01* X12855Y21243D01* X12846Y21243D01* X12838Y21241D01* X12832Y21238D01* Y21762D01* X12833Y21761D01* X12842Y21759D01* X12851Y21759D01* X12859Y21760D01* X12868Y21762D01* X12875Y21766D01* X12882Y21772D01* X12888Y21778D01* X12893Y21785D01* X12896Y21793D01* X12898Y21802D01* X12899Y21810D01* X12898Y21819D01* X12895Y21827D01* X12891Y21835D01* X12886Y21842D01* X12880Y21848D01* X12872Y21853D01* X12840Y21868D01* X12832Y21871D01* Y23137D01* X12858Y23150D01* X12866Y23155D01* X12872Y23161D01* X12877Y23168D01* X12881Y23175D01* X12883Y23184D01* X12884Y23193D01* X12884Y23201D01* X12881Y23210D01* X12878Y23218D01* X12873Y23225D01* X12867Y23231D01* X12860Y23236D01* X12852Y23240D01* X12844Y23243D01* X12835Y23243D01* X12832Y23243D01* Y23759D01* X12839Y23760D01* X12848Y23762D01* X12855Y23766D01* X12862Y23772D01* X12868Y23778D01* X12873Y23785D01* X12876Y23793D01* X12878Y23802D01* X12879Y23810D01* X12878Y23819D01* X12875Y23827D01* X12871Y23835D01* X12866Y23842D01* X12860Y23848D01* X12852Y23853D01* X12832Y23862D01* Y25147D01* X12838Y25150D01* X12846Y25155D01* X12852Y25161D01* X12857Y25168D01* X12861Y25175D01* X12863Y25184D01* X12864Y25193D01* X12864Y25201D01* X12861Y25210D01* X12858Y25218D01* X12853Y25225D01* X12847Y25231D01* X12840Y25236D01* X12832Y25240D01* Y25765D01* X12835Y25766D01* X12842Y25772D01* X12848Y25778D01* X12853Y25785D01* X12856Y25793D01* X12858Y25802D01* X12859Y25810D01* X12858Y25819D01* X12855Y25827D01* X12851Y25835D01* X12846Y25842D01* X12840Y25848D01* X12832Y25853D01* Y27161D01* X12837Y27168D01* X12841Y27175D01* X12843Y27184D01* X12844Y27193D01* X12844Y27201D01* X12841Y27210D01* X12838Y27218D01* X12833Y27225D01* X12832Y27225D01* Y27784D01* X12833Y27785D01* X12836Y27793D01* X12838Y27802D01* X12839Y27810D01* X12838Y27819D01* X12835Y27827D01* X12832Y27833D01* Y33307D01* G37* G36* X12932Y7884D02*X12911Y7890D01* X12875Y7896D01* X12839Y7899D01* X12803Y7899D01* X12767Y7895D01* X12731Y7889D01* X12707Y7882D01* Y9112D01* X12718Y9109D01* X12754Y9103D01* X12790Y9100D01* X12826Y9100D01* X12862Y9104D01* X12898Y9111D01* X12932Y9121D01* X12932D01* Y7884D01* G37* G36* Y9229D02*X12926Y9225D01* X12900Y9215D01* X12874Y9208D01* X12848Y9203D01* X12821Y9200D01* X12794Y9200D01* X12767Y9202D01* X12740Y9207D01* X12714Y9214D01* X12707Y9216D01* Y9783D01* X12709Y9784D01* X12735Y9791D01* X12761Y9796D01* X12788Y9799D01* X12815Y9799D01* X12842Y9797D01* X12869Y9793D01* X12895Y9785D01* X12921Y9776D01* X12932Y9771D01* Y9229D01* G37* G36* Y9878D02*X12926Y9881D01* X12891Y9890D01* X12855Y9896D01* X12819Y9899D01* X12783Y9899D01* X12747Y9895D01* X12711Y9889D01* X12707Y9887D01* Y11107D01* X12734Y11103D01* X12770Y11100D01* X12806Y11100D01* X12842Y11104D01* X12878Y11111D01* X12912Y11121D01* X12932Y11128D01* Y9878D01* G37* G36* Y11238D02*X12930Y11237D01* X12906Y11225D01* X12880Y11215D01* X12854Y11208D01* X12828Y11203D01* X12801Y11200D01* X12774Y11200D01* X12747Y11202D01* X12720Y11207D01* X12707Y11210D01* Y11789D01* X12715Y11791D01* X12741Y11796D01* X12768Y11799D01* X12795Y11799D01* X12822Y11797D01* X12849Y11793D01* X12875Y11785D01* X12901Y11776D01* X12925Y11764D01* X12932Y11762D01* Y11238D01* G37* G36* Y11871D02*X12906Y11881D01* X12871Y11890D01* X12835Y11896D01* X12799Y11899D01* X12763Y11899D01* X12727Y11895D01* X12707Y11892D01* Y13104D01* X12714Y13103D01* X12750Y13100D01* X12786Y13100D01* X12822Y13104D01* X12858Y13111D01* X12892Y13121D01* X12926Y13134D01* X12932Y13137D01* Y11871D01* G37* G36* Y13243D02*X12926Y13243D01* X12918Y13241D01* X12910Y13237D01* X12886Y13225D01* X12860Y13215D01* X12834Y13208D01* X12808Y13203D01* X12781Y13200D01* X12754Y13200D01* X12727Y13202D01* X12707Y13205D01* Y13794D01* X12721Y13796D01* X12748Y13799D01* X12775Y13799D01* X12802Y13797D01* X12829Y13793D01* X12855Y13785D01* X12881Y13776D01* X12905Y13764D01* X12913Y13761D01* X12922Y13759D01* X12931Y13759D01* X12932Y13759D01* Y13243D01* G37* G36* Y13862D02*X12920Y13868D01* X12886Y13881D01* X12851Y13890D01* X12815Y13896D01* X12779Y13899D01* X12743Y13899D01* X12707Y13895D01* Y15102D01* X12730Y15100D01* X12766Y15100D01* X12802Y15104D01* X12838Y15111D01* X12872Y15121D01* X12906Y15134D01* X12932Y15147D01* Y13862D01* G37* G36* Y15240D02*X12932Y15240D01* X12924Y15243D01* X12915Y15243D01* X12906Y15243D01* X12898Y15241D01* X12890Y15237D01* X12866Y15225D01* X12840Y15215D01* X12814Y15208D01* X12788Y15203D01* X12761Y15200D01* X12734Y15200D01* X12707Y15202D01* Y15797D01* X12728Y15799D01* X12755Y15799D01* X12782Y15797D01* X12809Y15793D01* X12835Y15785D01* X12861Y15776D01* X12885Y15764D01* X12893Y15761D01* X12902Y15759D01* X12911Y15759D01* X12919Y15760D01* X12928Y15762D01* X12932Y15765D01* Y15240D01* G37* G36* Y15853D02*X12932Y15853D01* X12900Y15868D01* X12866Y15881D01* X12831Y15890D01* X12795Y15896D01* X12759Y15899D01* X12723Y15899D01* X12707Y15897D01* Y17100D01* X12710Y17100D01* X12746Y17100D01* X12782Y17104D01* X12818Y17111D01* X12852Y17121D01* X12886Y17134D01* X12918Y17150D01* X12926Y17155D01* X12932Y17161D01* X12932Y17161D01* Y15853D01* G37* G36* Y17225D02*X12927Y17231D01* X12920Y17236D01* X12912Y17240D01* X12904Y17243D01* X12895Y17243D01* X12886Y17243D01* X12878Y17241D01* X12870Y17237D01* X12846Y17225D01* X12820Y17215D01* X12794Y17208D01* X12768Y17203D01* X12741Y17200D01* X12714Y17200D01* X12707Y17200D01* Y17799D01* X12708Y17799D01* X12735Y17799D01* X12762Y17797D01* X12789Y17793D01* X12815Y17785D01* X12841Y17776D01* X12865Y17764D01* X12873Y17761D01* X12882Y17759D01* X12891Y17759D01* X12899Y17760D01* X12908Y17762D01* X12915Y17766D01* X12922Y17772D01* X12928Y17778D01* X12932Y17784D01* Y17225D01* G37* G36* Y40000D02*X13032D01* Y25596D01* X13024Y25627D01* X13010Y25661D01* X12994Y25694D01* X12990Y25701D01* X12984Y25707D01* X12976Y25712D01* X12969Y25716D01* X12960Y25718D01* X12952Y25719D01* X12943Y25719D01* X12934Y25717D01* X12932Y25716D01* Y27286D01* X12935Y27285D01* X12944Y27286D01* X12952Y27289D01* X12960Y27293D01* X12967Y27298D01* X12973Y27305D01* X12978Y27312D01* X12993Y27344D01* X13006Y27378D01* X13015Y27413D01* X13021Y27449D01* X13024Y27485D01* X13024Y27521D01* X13020Y27557D01* X13014Y27593D01* X13004Y27627D01* X12990Y27661D01* X12974Y27694D01* X12970Y27701D01* X12964Y27707D01* X12956Y27712D01* X12949Y27716D01* X12940Y27718D01* X12932Y27719D01* Y29289D01* X12940Y29293D01* X12947Y29298D01* X12953Y29305D01* X12958Y29312D01* X12973Y29344D01* X12986Y29378D01* X12995Y29413D01* X13001Y29449D01* X13004Y29485D01* X13004Y29521D01* X13000Y29557D01* X12994Y29593D01* X12984Y29627D01* X12970Y29661D01* X12954Y29694D01* X12950Y29701D01* X12944Y29707D01* X12936Y29712D01* X12932Y29714D01* Y31304D01* X12933Y31305D01* X12938Y31312D01* X12953Y31344D01* X12966Y31378D01* X12975Y31413D01* X12981Y31449D01* X12984Y31485D01* X12984Y31521D01* X12980Y31557D01* X12974Y31593D01* X12964Y31627D01* X12950Y31661D01* X12934Y31694D01* X12932Y31696D01* Y33343D01* X12933Y33344D01* X12946Y33378D01* X12955Y33413D01* X12961Y33449D01* X12964Y33485D01* X12964Y33521D01* X12960Y33557D01* X12954Y33593D01* X12944Y33627D01* X12932Y33656D01* Y35404D01* X12935Y35413D01* X12941Y35449D01* X12944Y35485D01* X12944Y35521D01* X12940Y35557D01* X12934Y35593D01* X12932Y35596D01* Y40000D01* G37* G36* Y25583D02*X12936Y25569D01* X12941Y25543D01* X12944Y25516D01* X12944Y25489D01* X12942Y25462D01* X12937Y25435D01* X12932Y25416D01* Y25583D01* G37* G36* Y25290D02*X12938Y25288D01* X12947Y25286D01* X12955Y25285D01* X12964Y25286D01* X12972Y25289D01* X12980Y25293D01* X12987Y25298D01* X12993Y25305D01* X12998Y25312D01* X13013Y25344D01* X13026Y25378D01* X13032Y25404D01* Y23656D01* X13030Y23661D01* X13014Y23694D01* X13010Y23701D01* X13004Y23707D01* X12996Y23712D01* X12989Y23716D01* X12980Y23718D01* X12972Y23719D01* X12963Y23719D01* X12954Y23717D01* X12946Y23713D01* X12939Y23708D01* X12933Y23702D01* X12932Y23701D01* Y25290D01* G37* G36* Y23634D02*X12939Y23621D01* X12949Y23595D01* X12956Y23569D01* X12961Y23543D01* X12964Y23516D01* X12964Y23489D01* X12962Y23462D01* X12957Y23435D01* X12950Y23409D01* X12941Y23383D01* X12932Y23365D01* Y23634D01* G37* G36* Y23307D02*X12936Y23302D01* X12943Y23296D01* X12950Y23291D01* X12958Y23288D01* X12967Y23286D01* X12975Y23285D01* X12984Y23286D01* X12992Y23289D01* X13000Y23293D01* X13007Y23298D01* X13013Y23305D01* X13018Y23312D01* X13032Y23343D01* Y21696D01* X13030Y21701D01* X13024Y21707D01* X13016Y21712D01* X13009Y21716D01* X13000Y21718D01* X12992Y21719D01* X12983Y21719D01* X12974Y21717D01* X12966Y21713D01* X12959Y21708D01* X12953Y21702D01* X12948Y21695D01* X12944Y21687D01* X12942Y21679D01* X12941Y21670D01* X12941Y21661D01* X12943Y21653D01* X12947Y21645D01* X12959Y21621D01* X12969Y21595D01* X12976Y21569D01* X12981Y21543D01* X12984Y21516D01* X12984Y21489D01* X12982Y21462D01* X12977Y21435D01* X12970Y21409D01* X12961Y21383D01* X12949Y21359D01* X12946Y21351D01* X12944Y21342D01* X12944Y21333D01* X12945Y21325D01* X12947Y21317D01* X12951Y21309D01* X12956Y21302D01* X12963Y21296D01* X12970Y21291D01* X12978Y21288D01* X12987Y21286D01* X12995Y21285D01* X13004Y21286D01* X13012Y21289D01* X13020Y21293D01* X13027Y21298D01* X13032Y21304D01* Y19714D01* X13029Y19716D01* X13020Y19718D01* X13012Y19719D01* X13003Y19719D01* X12994Y19717D01* X12986Y19713D01* X12979Y19708D01* X12973Y19702D01* X12968Y19695D01* X12964Y19687D01* X12962Y19679D01* X12961Y19670D01* X12961Y19661D01* X12963Y19653D01* X12967Y19645D01* X12979Y19621D01* X12989Y19595D01* X12996Y19569D01* X13001Y19543D01* X13004Y19516D01* X13004Y19489D01* X13002Y19462D01* X12997Y19435D01* X12990Y19409D01* X12981Y19383D01* X12969Y19359D01* X12966Y19351D01* X12964Y19342D01* X12964Y19333D01* X12965Y19325D01* X12967Y19317D01* X12971Y19309D01* X12976Y19302D01* X12983Y19296D01* X12990Y19291D01* X12998Y19288D01* X13007Y19286D01* X13015Y19285D01* X13024Y19286D01* X13032Y19289D01* X13032Y19289D01* Y17719D01* X13032Y17719D01* X13023Y17719D01* X13014Y17717D01* X13006Y17713D01* X12999Y17708D01* X12993Y17702D01* X12988Y17695D01* X12984Y17687D01* X12982Y17679D01* X12981Y17670D01* X12981Y17661D01* X12983Y17653D01* X12987Y17645D01* X12999Y17621D01* X13009Y17595D01* X13016Y17569D01* X13021Y17543D01* X13024Y17516D01* X13024Y17489D01* X13022Y17462D01* X13017Y17435D01* X13010Y17409D01* X13001Y17383D01* X12989Y17359D01* X12986Y17351D01* X12984Y17342D01* X12984Y17333D01* X12985Y17325D01* X12987Y17317D01* X12991Y17309D01* X12996Y17302D01* X13003Y17296D01* X13010Y17291D01* X13018Y17288D01* X13027Y17286D01* X13032Y17286D01* Y15716D01* X13026Y15713D01* X13019Y15708D01* X13013Y15702D01* X13008Y15695D01* X13004Y15687D01* X13002Y15679D01* X13001Y15670D01* X13001Y15661D01* X13003Y15653D01* X13007Y15645D01* X13019Y15621D01* X13029Y15595D01* X13032Y15583D01* Y15416D01* X13030Y15409D01* X13021Y15383D01* X13009Y15359D01* X13006Y15351D01* X13004Y15342D01* X13004Y15333D01* X13005Y15325D01* X13007Y15317D01* X13011Y15309D01* X13016Y15302D01* X13023Y15296D01* X13030Y15291D01* X13032Y15290D01* Y13701D01* X13028Y13695D01* X13024Y13687D01* X13022Y13679D01* X13021Y13670D01* X13021Y13661D01* X13023Y13653D01* X13027Y13645D01* X13032Y13634D01* Y13365D01* X13029Y13359D01* X13026Y13351D01* X13024Y13342D01* X13024Y13333D01* X13025Y13325D01* X13027Y13317D01* X13031Y13309D01* X13032Y13307D01* Y7833D01* X13031Y7835D01* X13026Y7842D01* X13020Y7848D01* X13012Y7853D01* X12980Y7868D01* X12946Y7881D01* X12932Y7884D01* Y9121D01* X12966Y9134D01* X12998Y9150D01* X13006Y9155D01* X13012Y9161D01* X13017Y9168D01* X13021Y9175D01* X13023Y9184D01* X13024Y9193D01* X13024Y9201D01* X13021Y9210D01* X13018Y9218D01* X13013Y9225D01* X13007Y9231D01* X13000Y9236D01* X12992Y9240D01* X12984Y9243D01* X12975Y9243D01* X12966Y9243D01* X12958Y9241D01* X12950Y9237D01* X12932Y9229D01* Y9771D01* X12945Y9764D01* X12953Y9761D01* X12962Y9759D01* X12971Y9759D01* X12979Y9760D01* X12988Y9762D01* X12995Y9766D01* X13002Y9772D01* X13008Y9778D01* X13013Y9785D01* X13016Y9793D01* X13018Y9802D01* X13019Y9810D01* X13018Y9819D01* X13015Y9827D01* X13011Y9835D01* X13006Y9842D01* X13000Y9848D01* X12992Y9853D01* X12960Y9868D01* X12932Y9878D01* Y11128D01* X12946Y11134D01* X12978Y11150D01* X12986Y11155D01* X12992Y11161D01* X12997Y11168D01* X13001Y11175D01* X13003Y11184D01* X13004Y11193D01* X13004Y11201D01* X13001Y11210D01* X12998Y11218D01* X12993Y11225D01* X12987Y11231D01* X12980Y11236D01* X12972Y11240D01* X12964Y11243D01* X12955Y11243D01* X12946Y11243D01* X12938Y11241D01* X12932Y11238D01* Y11762D01* X12933Y11761D01* X12942Y11759D01* X12951Y11759D01* X12959Y11760D01* X12968Y11762D01* X12975Y11766D01* X12982Y11772D01* X12988Y11778D01* X12993Y11785D01* X12996Y11793D01* X12998Y11802D01* X12999Y11810D01* X12998Y11819D01* X12995Y11827D01* X12991Y11835D01* X12986Y11842D01* X12980Y11848D01* X12972Y11853D01* X12940Y11868D01* X12932Y11871D01* Y13137D01* X12958Y13150D01* X12966Y13155D01* X12972Y13161D01* X12977Y13168D01* X12981Y13175D01* X12983Y13184D01* X12984Y13193D01* X12984Y13201D01* X12981Y13210D01* X12978Y13218D01* X12973Y13225D01* X12967Y13231D01* X12960Y13236D01* X12952Y13240D01* X12944Y13243D01* X12935Y13243D01* X12932Y13243D01* Y13759D01* X12939Y13760D01* X12948Y13762D01* X12955Y13766D01* X12962Y13772D01* X12968Y13778D01* X12973Y13785D01* X12976Y13793D01* X12978Y13802D01* X12979Y13810D01* X12978Y13819D01* X12975Y13827D01* X12971Y13835D01* X12966Y13842D01* X12960Y13848D01* X12952Y13853D01* X12932Y13862D01* Y15147D01* X12938Y15150D01* X12946Y15155D01* X12952Y15161D01* X12957Y15168D01* X12961Y15175D01* X12963Y15184D01* X12964Y15193D01* X12964Y15201D01* X12961Y15210D01* X12958Y15218D01* X12953Y15225D01* X12947Y15231D01* X12940Y15236D01* X12932Y15240D01* Y15765D01* X12935Y15766D01* X12942Y15772D01* X12948Y15778D01* X12953Y15785D01* X12956Y15793D01* X12958Y15802D01* X12959Y15810D01* X12958Y15819D01* X12955Y15827D01* X12951Y15835D01* X12946Y15842D01* X12940Y15848D01* X12932Y15853D01* Y17161D01* X12937Y17168D01* X12941Y17175D01* X12943Y17184D01* X12944Y17193D01* X12944Y17201D01* X12941Y17210D01* X12938Y17218D01* X12933Y17225D01* X12932Y17225D01* Y17784D01* X12933Y17785D01* X12936Y17793D01* X12938Y17802D01* X12939Y17810D01* X12938Y17819D01* X12935Y17827D01* X12932Y17833D01* Y23307D01* G37* G36* X13032Y0D02*X12707D01* Y1141D01* X12729Y1131D01* X12763Y1118D01* X12798Y1109D01* X12834Y1103D01* X12870Y1100D01* X12906Y1100D01* X12942Y1104D01* X12978Y1111D01* X13012Y1121D01* X13032Y1128D01* Y0D01* G37* G36* Y1238D02*X13030Y1237D01* X13006Y1225D01* X12980Y1215D01* X12954Y1208D01* X12928Y1203D01* X12901Y1200D01* X12874Y1200D01* X12847Y1202D01* X12820Y1207D01* X12794Y1214D01* X12768Y1223D01* X12744Y1235D01* X12736Y1238D01* X12727Y1240D01* X12718Y1240D01* X12710Y1239D01* X12707Y1239D01* Y1756D01* X12714Y1756D01* X12723Y1756D01* X12731Y1758D01* X12739Y1762D01* X12763Y1774D01* X12789Y1784D01* X12815Y1791D01* X12841Y1796D01* X12868Y1799D01* X12895Y1799D01* X12922Y1797D01* X12949Y1793D01* X12975Y1785D01* X13001Y1776D01* X13025Y1764D01* X13032Y1762D01* Y1238D01* G37* G36* Y1871D02*X13006Y1881D01* X12971Y1890D01* X12935Y1896D01* X12899Y1899D01* X12863Y1899D01* X12827Y1895D01* X12791Y1889D01* X12757Y1879D01* X12723Y1866D01* X12707Y1858D01* Y3132D01* X12709Y3131D01* X12743Y3118D01* X12778Y3109D01* X12814Y3103D01* X12850Y3100D01* X12886Y3100D01* X12922Y3104D01* X12958Y3111D01* X12992Y3121D01* X13026Y3134D01* X13032Y3137D01* Y1871D01* G37* G36* Y3243D02*X13026Y3243D01* X13018Y3241D01* X13010Y3237D01* X12986Y3225D01* X12960Y3215D01* X12934Y3208D01* X12908Y3203D01* X12881Y3200D01* X12854Y3200D01* X12827Y3202D01* X12800Y3207D01* X12774Y3214D01* X12748Y3223D01* X12724Y3235D01* X12716Y3238D01* X12707Y3240D01* Y3757D01* X12711Y3758D01* X12719Y3762D01* X12743Y3774D01* X12769Y3784D01* X12795Y3791D01* X12821Y3796D01* X12848Y3799D01* X12875Y3799D01* X12902Y3797D01* X12929Y3793D01* X12955Y3785D01* X12981Y3776D01* X13005Y3764D01* X13013Y3761D01* X13022Y3759D01* X13031Y3759D01* X13032Y3759D01* Y3243D01* G37* G36* Y3862D02*X13020Y3868D01* X12986Y3881D01* X12951Y3890D01* X12915Y3896D01* X12879Y3899D01* X12843Y3899D01* X12807Y3895D01* X12771Y3889D01* X12737Y3879D01* X12707Y3867D01* Y5124D01* X12723Y5118D01* X12758Y5109D01* X12794Y5103D01* X12830Y5100D01* X12866Y5100D01* X12902Y5104D01* X12938Y5111D01* X12972Y5121D01* X13006Y5134D01* X13032Y5147D01* Y3862D01* G37* G36* Y5240D02*X13032Y5240D01* X13024Y5243D01* X13015Y5243D01* X13006Y5243D01* X12998Y5241D01* X12990Y5237D01* X12966Y5225D01* X12940Y5215D01* X12914Y5208D01* X12888Y5203D01* X12861Y5200D01* X12834Y5200D01* X12807Y5202D01* X12780Y5207D01* X12754Y5214D01* X12728Y5223D01* X12707Y5233D01* Y5766D01* X12723Y5774D01* X12749Y5784D01* X12775Y5791D01* X12801Y5796D01* X12828Y5799D01* X12855Y5799D01* X12882Y5797D01* X12909Y5793D01* X12935Y5785D01* X12961Y5776D01* X12985Y5764D01* X12993Y5761D01* X13002Y5759D01* X13011Y5759D01* X13019Y5760D01* X13028Y5762D01* X13032Y5765D01* Y5240D01* G37* G36* Y5853D02*X13032Y5853D01* X13000Y5868D01* X12966Y5881D01* X12931Y5890D01* X12895Y5896D01* X12859Y5899D01* X12823Y5899D01* X12787Y5895D01* X12751Y5889D01* X12717Y5879D01* X12707Y5875D01* Y7117D01* X12738Y7109D01* X12774Y7103D01* X12810Y7100D01* X12846Y7100D01* X12882Y7104D01* X12918Y7111D01* X12952Y7121D01* X12986Y7134D01* X13018Y7150D01* X13026Y7155D01* X13032Y7161D01* X13032Y7161D01* Y5853D01* G37* G36* Y7225D02*X13027Y7231D01* X13020Y7236D01* X13012Y7240D01* X13004Y7243D01* X12995Y7243D01* X12986Y7243D01* X12978Y7241D01* X12970Y7237D01* X12946Y7225D01* X12920Y7215D01* X12894Y7208D01* X12868Y7203D01* X12841Y7200D01* X12814Y7200D01* X12787Y7202D01* X12760Y7207D01* X12734Y7214D01* X12708Y7223D01* X12707Y7223D01* Y7776D01* X12729Y7784D01* X12755Y7791D01* X12781Y7796D01* X12808Y7799D01* X12835Y7799D01* X12862Y7797D01* X12889Y7793D01* X12915Y7785D01* X12941Y7776D01* X12965Y7764D01* X12973Y7761D01* X12982Y7759D01* X12991Y7759D01* X12999Y7760D01* X13008Y7762D01* X13015Y7766D01* X13022Y7772D01* X13028Y7778D01* X13032Y7784D01* Y7225D01* G37* G36* Y40000D02*X13112D01* Y17596D01* X13104Y17627D01* X13090Y17661D01* X13074Y17694D01* X13070Y17701D01* X13064Y17707D01* X13056Y17712D01* X13049Y17716D01* X13040Y17718D01* X13032Y17719D01* Y19289D01* X13040Y19293D01* X13047Y19298D01* X13053Y19305D01* X13058Y19312D01* X13073Y19344D01* X13086Y19378D01* X13095Y19413D01* X13101Y19449D01* X13104Y19485D01* X13104Y19521D01* X13100Y19557D01* X13094Y19593D01* X13084Y19627D01* X13070Y19661D01* X13054Y19694D01* X13050Y19701D01* X13044Y19707D01* X13036Y19712D01* X13032Y19714D01* Y21304D01* X13033Y21305D01* X13038Y21312D01* X13053Y21344D01* X13066Y21378D01* X13075Y21413D01* X13081Y21449D01* X13084Y21485D01* X13084Y21521D01* X13080Y21557D01* X13074Y21593D01* X13064Y21627D01* X13050Y21661D01* X13034Y21694D01* X13032Y21696D01* Y23343D01* X13033Y23344D01* X13046Y23378D01* X13055Y23413D01* X13061Y23449D01* X13064Y23485D01* X13064Y23521D01* X13060Y23557D01* X13054Y23593D01* X13044Y23627D01* X13032Y23656D01* Y25404D01* X13035Y25413D01* X13041Y25449D01* X13044Y25485D01* X13044Y25521D01* X13040Y25557D01* X13034Y25593D01* X13032Y25596D01* Y40000D01* G37* G36* X13112Y0D02*X13032D01* Y1128D01* X13046Y1134D01* X13078Y1150D01* X13086Y1155D01* X13092Y1161D01* X13097Y1168D01* X13101Y1175D01* X13103Y1184D01* X13104Y1193D01* X13104Y1201D01* X13101Y1210D01* X13098Y1218D01* X13093Y1225D01* X13087Y1231D01* X13080Y1236D01* X13072Y1240D01* X13064Y1243D01* X13055Y1243D01* X13046Y1243D01* X13038Y1241D01* X13032Y1238D01* Y1762D01* X13033Y1761D01* X13042Y1759D01* X13051Y1759D01* X13059Y1760D01* X13068Y1762D01* X13075Y1766D01* X13082Y1772D01* X13088Y1778D01* X13093Y1785D01* X13096Y1793D01* X13098Y1802D01* X13099Y1810D01* X13098Y1819D01* X13095Y1827D01* X13091Y1835D01* X13086Y1842D01* X13080Y1848D01* X13072Y1853D01* X13040Y1868D01* X13032Y1871D01* Y3137D01* X13058Y3150D01* X13066Y3155D01* X13072Y3161D01* X13077Y3168D01* X13081Y3175D01* X13083Y3184D01* X13084Y3193D01* X13084Y3201D01* X13081Y3210D01* X13078Y3218D01* X13073Y3225D01* X13067Y3231D01* X13060Y3236D01* X13052Y3240D01* X13044Y3243D01* X13035Y3243D01* X13032Y3243D01* Y3759D01* X13039Y3760D01* X13048Y3762D01* X13055Y3766D01* X13062Y3772D01* X13068Y3778D01* X13073Y3785D01* X13076Y3793D01* X13078Y3802D01* X13079Y3810D01* X13078Y3819D01* X13075Y3827D01* X13071Y3835D01* X13066Y3842D01* X13060Y3848D01* X13052Y3853D01* X13032Y3862D01* Y5147D01* X13038Y5150D01* X13046Y5155D01* X13052Y5161D01* X13057Y5168D01* X13061Y5175D01* X13063Y5184D01* X13064Y5193D01* X13064Y5201D01* X13061Y5210D01* X13058Y5218D01* X13053Y5225D01* X13047Y5231D01* X13040Y5236D01* X13032Y5240D01* Y5765D01* X13035Y5766D01* X13042Y5772D01* X13048Y5778D01* X13053Y5785D01* X13056Y5793D01* X13058Y5802D01* X13059Y5810D01* X13058Y5819D01* X13055Y5827D01* X13051Y5835D01* X13046Y5842D01* X13040Y5848D01* X13032Y5853D01* Y7161D01* X13037Y7168D01* X13041Y7175D01* X13043Y7184D01* X13044Y7193D01* X13044Y7201D01* X13041Y7210D01* X13038Y7218D01* X13033Y7225D01* X13032Y7225D01* Y7784D01* X13033Y7785D01* X13036Y7793D01* X13038Y7802D01* X13039Y7810D01* X13038Y7819D01* X13035Y7827D01* X13032Y7833D01* Y13307D01* X13036Y13302D01* X13043Y13296D01* X13050Y13291D01* X13058Y13288D01* X13067Y13286D01* X13075Y13285D01* X13084Y13286D01* X13092Y13289D01* X13100Y13293D01* X13107Y13298D01* X13112Y13304D01* Y11714D01* X13109Y11716D01* X13100Y11718D01* X13092Y11719D01* X13083Y11719D01* X13074Y11717D01* X13066Y11713D01* X13059Y11708D01* X13053Y11702D01* X13048Y11695D01* X13044Y11687D01* X13042Y11679D01* X13041Y11670D01* X13041Y11661D01* X13043Y11653D01* X13047Y11645D01* X13059Y11621D01* X13069Y11595D01* X13076Y11569D01* X13081Y11543D01* X13084Y11516D01* X13084Y11489D01* X13082Y11462D01* X13077Y11435D01* X13070Y11409D01* X13061Y11383D01* X13049Y11359D01* X13046Y11351D01* X13044Y11342D01* X13044Y11333D01* X13045Y11325D01* X13047Y11317D01* X13051Y11309D01* X13056Y11302D01* X13063Y11296D01* X13070Y11291D01* X13078Y11288D01* X13087Y11286D01* X13095Y11285D01* X13104Y11286D01* X13112Y11289D01* X13112Y11289D01* Y9719D01* X13112Y9719D01* X13103Y9719D01* X13094Y9717D01* X13086Y9713D01* X13079Y9708D01* X13073Y9702D01* X13068Y9695D01* X13064Y9687D01* X13062Y9679D01* X13061Y9670D01* X13061Y9661D01* X13063Y9653D01* X13067Y9645D01* X13079Y9621D01* X13089Y9595D01* X13096Y9569D01* X13101Y9543D01* X13104Y9516D01* X13104Y9489D01* X13102Y9462D01* X13097Y9435D01* X13090Y9409D01* X13081Y9383D01* X13069Y9359D01* X13066Y9351D01* X13064Y9342D01* X13064Y9333D01* X13065Y9325D01* X13067Y9317D01* X13071Y9309D01* X13076Y9302D01* X13083Y9296D01* X13090Y9291D01* X13098Y9288D01* X13107Y9286D01* X13112Y9286D01* Y7716D01* X13106Y7713D01* X13099Y7708D01* X13093Y7702D01* X13088Y7695D01* X13084Y7687D01* X13082Y7679D01* X13081Y7670D01* X13081Y7661D01* X13083Y7653D01* X13087Y7645D01* X13099Y7621D01* X13109Y7595D01* X13112Y7583D01* Y7416D01* X13110Y7409D01* X13101Y7383D01* X13089Y7359D01* X13086Y7351D01* X13084Y7342D01* X13084Y7333D01* X13085Y7325D01* X13087Y7317D01* X13091Y7309D01* X13096Y7302D01* X13103Y7296D01* X13110Y7291D01* X13112Y7290D01* Y5701D01* X13108Y5695D01* X13104Y5687D01* X13102Y5679D01* X13101Y5670D01* X13101Y5661D01* X13103Y5653D01* X13107Y5645D01* X13112Y5634D01* Y5365D01* X13109Y5359D01* X13106Y5351D01* X13104Y5342D01* X13104Y5333D01* X13105Y5325D01* X13107Y5317D01* X13111Y5309D01* X13112Y5307D01* Y0D01* G37* G36* Y13696D02*X13110Y13701D01* X13104Y13707D01* X13096Y13712D01* X13089Y13716D01* X13080Y13718D01* X13072Y13719D01* X13063Y13719D01* X13054Y13717D01* X13046Y13713D01* X13039Y13708D01* X13033Y13702D01* X13032Y13701D01* Y15290D01* X13038Y15288D01* X13047Y15286D01* X13055Y15285D01* X13064Y15286D01* X13072Y15289D01* X13080Y15293D01* X13087Y15298D01* X13093Y15305D01* X13098Y15312D01* X13112Y15343D01* Y13696D01* G37* G36* Y15656D02*X13110Y15661D01* X13094Y15694D01* X13090Y15701D01* X13084Y15707D01* X13076Y15712D01* X13069Y15716D01* X13060Y15718D01* X13052Y15719D01* X13043Y15719D01* X13034Y15717D01* X13032Y15716D01* Y17286D01* X13035Y17285D01* X13044Y17286D01* X13052Y17289D01* X13060Y17293D01* X13067Y17298D01* X13073Y17305D01* X13078Y17312D01* X13093Y17344D01* X13106Y17378D01* X13112Y17404D01* Y15656D01* G37* G36* Y40000D02*X13192D01* Y9596D01* X13184Y9627D01* X13170Y9661D01* X13154Y9694D01* X13150Y9701D01* X13144Y9707D01* X13136Y9712D01* X13129Y9716D01* X13120Y9718D01* X13112Y9719D01* Y11289D01* X13120Y11293D01* X13127Y11298D01* X13133Y11305D01* X13138Y11312D01* X13153Y11344D01* X13166Y11378D01* X13175Y11413D01* X13181Y11449D01* X13184Y11485D01* X13184Y11521D01* X13180Y11557D01* X13174Y11593D01* X13164Y11627D01* X13150Y11661D01* X13134Y11694D01* X13130Y11701D01* X13124Y11707D01* X13116Y11712D01* X13112Y11714D01* Y13304D01* X13113Y13305D01* X13118Y13312D01* X13133Y13344D01* X13146Y13378D01* X13155Y13413D01* X13161Y13449D01* X13164Y13485D01* X13164Y13521D01* X13160Y13557D01* X13154Y13593D01* X13144Y13627D01* X13130Y13661D01* X13114Y13694D01* X13112Y13696D01* Y15343D01* X13113Y15344D01* X13126Y15378D01* X13135Y15413D01* X13141Y15449D01* X13144Y15485D01* X13144Y15521D01* X13140Y15557D01* X13134Y15593D01* X13124Y15627D01* X13112Y15656D01* Y17404D01* X13115Y17413D01* X13121Y17449D01* X13124Y17485D01* X13124Y17521D01* X13120Y17557D01* X13114Y17593D01* X13112Y17596D01* Y40000D01* G37* G36* X13192Y0D02*X13112D01* Y5307D01* X13116Y5302D01* X13123Y5296D01* X13130Y5291D01* X13138Y5288D01* X13147Y5286D01* X13155Y5285D01* X13164Y5286D01* X13172Y5289D01* X13180Y5293D01* X13187Y5298D01* X13192Y5304D01* Y3714D01* X13189Y3716D01* X13180Y3718D01* X13172Y3719D01* X13163Y3719D01* X13154Y3717D01* X13146Y3713D01* X13139Y3708D01* X13133Y3702D01* X13128Y3695D01* X13124Y3687D01* X13122Y3679D01* X13121Y3670D01* X13121Y3661D01* X13123Y3653D01* X13127Y3645D01* X13139Y3621D01* X13149Y3595D01* X13156Y3569D01* X13161Y3543D01* X13164Y3516D01* X13164Y3489D01* X13162Y3462D01* X13157Y3435D01* X13150Y3409D01* X13141Y3383D01* X13129Y3359D01* X13126Y3351D01* X13124Y3342D01* X13124Y3333D01* X13125Y3325D01* X13127Y3317D01* X13131Y3309D01* X13136Y3302D01* X13143Y3296D01* X13150Y3291D01* X13158Y3288D01* X13167Y3286D01* X13175Y3285D01* X13184Y3286D01* X13192Y3289D01* X13192Y3289D01* Y1719D01* X13192Y1719D01* X13183Y1719D01* X13174Y1717D01* X13166Y1713D01* X13159Y1708D01* X13153Y1702D01* X13148Y1695D01* X13144Y1687D01* X13142Y1679D01* X13141Y1670D01* X13141Y1661D01* X13143Y1653D01* X13147Y1645D01* X13159Y1621D01* X13169Y1595D01* X13176Y1569D01* X13181Y1543D01* X13184Y1516D01* X13184Y1489D01* X13182Y1462D01* X13177Y1435D01* X13170Y1409D01* X13161Y1383D01* X13149Y1359D01* X13146Y1351D01* X13144Y1342D01* X13144Y1333D01* X13145Y1325D01* X13147Y1317D01* X13151Y1309D01* X13156Y1302D01* X13163Y1296D01* X13170Y1291D01* X13178Y1288D01* X13187Y1286D01* X13192Y1286D01* Y0D01* G37* G36* Y5696D02*X13190Y5701D01* X13184Y5707D01* X13176Y5712D01* X13169Y5716D01* X13160Y5718D01* X13152Y5719D01* X13143Y5719D01* X13134Y5717D01* X13126Y5713D01* X13119Y5708D01* X13113Y5702D01* X13112Y5701D01* Y7290D01* X13118Y7288D01* X13127Y7286D01* X13135Y7285D01* X13144Y7286D01* X13152Y7289D01* X13160Y7293D01* X13167Y7298D01* X13173Y7305D01* X13178Y7312D01* X13192Y7343D01* Y5696D01* G37* G36* Y7656D02*X13190Y7661D01* X13174Y7694D01* X13170Y7701D01* X13164Y7707D01* X13156Y7712D01* X13149Y7716D01* X13140Y7718D01* X13132Y7719D01* X13123Y7719D01* X13114Y7717D01* X13112Y7716D01* Y9286D01* X13115Y9285D01* X13124Y9286D01* X13132Y9289D01* X13140Y9293D01* X13147Y9298D01* X13153Y9305D01* X13158Y9312D01* X13173Y9344D01* X13186Y9378D01* X13192Y9404D01* Y7656D01* G37* G36* Y40000D02*X14197D01* Y39714D01* X14194Y39714D01* X14185Y39713D01* X14177Y39710D01* X14169Y39706D01* X14162Y39701D01* X14156Y39695D01* X14151Y39687D01* X14136Y39655D01* X14123Y39621D01* X14114Y39586D01* X14108Y39550D01* X14105Y39514D01* X14105Y39478D01* X14109Y39442D01* X14115Y39407D01* X14125Y39372D01* X14139Y39338D01* X14155Y39306D01* X14159Y39299D01* X14165Y39292D01* X14173Y39287D01* X14180Y39283D01* X14189Y39281D01* X14197Y39280D01* Y37710D01* X14189Y37706D01* X14182Y37701D01* X14176Y37695D01* X14171Y37687D01* X14156Y37655D01* X14143Y37621D01* X14134Y37586D01* X14128Y37550D01* X14125Y37514D01* X14125Y37478D01* X14129Y37442D01* X14135Y37407D01* X14145Y37372D01* X14159Y37338D01* X14175Y37306D01* X14179Y37299D01* X14185Y37292D01* X14193Y37287D01* X14197Y37285D01* Y35695D01* X14196Y35695D01* X14191Y35687D01* X14176Y35655D01* X14163Y35621D01* X14154Y35586D01* X14148Y35550D01* X14145Y35514D01* X14145Y35478D01* X14149Y35442D01* X14155Y35407D01* X14165Y35372D01* X14179Y35338D01* X14195Y35306D01* X14197Y35303D01* Y33656D01* X14196Y33655D01* X14183Y33621D01* X14174Y33586D01* X14168Y33550D01* X14165Y33514D01* X14165Y33478D01* X14169Y33442D01* X14175Y33407D01* X14185Y33372D01* X14197Y33343D01* Y31596D01* X14194Y31586D01* X14188Y31550D01* X14185Y31514D01* X14185Y31478D01* X14189Y31442D01* X14195Y31407D01* X14197Y31403D01* Y0D01* X13192D01* Y1286D01* X13195Y1285D01* X13204Y1286D01* X13212Y1289D01* X13220Y1293D01* X13227Y1298D01* X13233Y1305D01* X13238Y1312D01* X13253Y1344D01* X13266Y1378D01* X13275Y1413D01* X13281Y1449D01* X13284Y1485D01* X13284Y1521D01* X13280Y1557D01* X13274Y1593D01* X13264Y1627D01* X13250Y1661D01* X13234Y1694D01* X13230Y1701D01* X13224Y1707D01* X13216Y1712D01* X13209Y1716D01* X13200Y1718D01* X13192Y1719D01* Y3289D01* X13200Y3293D01* X13207Y3298D01* X13213Y3305D01* X13218Y3312D01* X13233Y3344D01* X13246Y3378D01* X13255Y3413D01* X13261Y3449D01* X13264Y3485D01* X13264Y3521D01* X13260Y3557D01* X13254Y3593D01* X13244Y3627D01* X13230Y3661D01* X13214Y3694D01* X13210Y3701D01* X13204Y3707D01* X13196Y3712D01* X13192Y3714D01* Y5304D01* X13193Y5305D01* X13198Y5312D01* X13213Y5344D01* X13226Y5378D01* X13235Y5413D01* X13241Y5449D01* X13244Y5485D01* X13244Y5521D01* X13240Y5557D01* X13234Y5593D01* X13224Y5627D01* X13210Y5661D01* X13194Y5694D01* X13192Y5696D01* Y7343D01* X13193Y7344D01* X13206Y7378D01* X13215Y7413D01* X13221Y7449D01* X13224Y7485D01* X13224Y7521D01* X13220Y7557D01* X13214Y7593D01* X13204Y7627D01* X13192Y7656D01* Y9404D01* X13195Y9413D01* X13201Y9449D01* X13204Y9485D01* X13204Y9521D01* X13200Y9557D01* X13194Y9593D01* X13192Y9596D01* Y40000D01* G37* G36* X14197D02*X14337D01* Y39862D01* X14311Y39849D01* X14303Y39845D01* X14297Y39839D01* X14292Y39832D01* X14288Y39824D01* X14286Y39815D01* X14285Y39807D01* X14285Y39798D01* X14288Y39790D01* X14291Y39782D01* X14296Y39774D01* X14302Y39768D01* X14309Y39763D01* X14317Y39759D01* X14325Y39757D01* X14334Y39756D01* X14337Y39756D01* Y39240D01* X14330Y39239D01* X14321Y39237D01* X14314Y39233D01* X14307Y39228D01* X14301Y39221D01* X14296Y39214D01* X14293Y39206D01* X14291Y39197D01* X14290Y39189D01* X14291Y39180D01* X14294Y39172D01* X14298Y39164D01* X14303Y39157D01* X14309Y39151D01* X14317Y39146D01* X14337Y39137D01* Y37852D01* X14331Y37849D01* X14323Y37845D01* X14317Y37839D01* X14312Y37832D01* X14308Y37824D01* X14306Y37815D01* X14305Y37807D01* X14305Y37798D01* X14308Y37790D01* X14311Y37782D01* X14316Y37774D01* X14322Y37768D01* X14329Y37763D01* X14337Y37759D01* Y37234D01* X14334Y37233D01* X14327Y37228D01* X14321Y37221D01* X14316Y37214D01* X14313Y37206D01* X14311Y37197D01* X14310Y37189D01* X14311Y37180D01* X14314Y37172D01* X14318Y37164D01* X14323Y37157D01* X14329Y37151D01* X14337Y37147D01* Y35838D01* X14332Y35832D01* X14328Y35824D01* X14326Y35815D01* X14325Y35807D01* X14325Y35798D01* X14328Y35790D01* X14331Y35782D01* X14336Y35774D01* X14337Y35774D01* Y35215D01* X14336Y35214D01* X14333Y35206D01* X14331Y35197D01* X14330Y35189D01* X14331Y35180D01* X14334Y35172D01* X14337Y35167D01* Y29692D01* X14333Y29697D01* X14326Y29703D01* X14319Y29708D01* X14311Y29711D01* X14302Y29713D01* X14294Y29714D01* X14285Y29713D01* X14277Y29710D01* X14269Y29706D01* X14262Y29701D01* X14256Y29695D01* X14251Y29687D01* X14236Y29655D01* X14223Y29621D01* X14214Y29586D01* X14208Y29550D01* X14205Y29514D01* X14205Y29478D01* X14209Y29442D01* X14215Y29407D01* X14225Y29372D01* X14239Y29338D01* X14255Y29306D01* X14259Y29299D01* X14265Y29292D01* X14273Y29287D01* X14280Y29283D01* X14289Y29281D01* X14297Y29280D01* X14306Y29281D01* X14315Y29283D01* X14323Y29286D01* X14330Y29291D01* X14336Y29297D01* X14337Y29298D01* Y27709D01* X14331Y27711D01* X14322Y27713D01* X14314Y27714D01* X14305Y27713D01* X14297Y27710D01* X14289Y27706D01* X14282Y27701D01* X14276Y27695D01* X14271Y27687D01* X14256Y27655D01* X14243Y27621D01* X14234Y27586D01* X14228Y27550D01* X14225Y27514D01* X14225Y27478D01* X14229Y27442D01* X14235Y27407D01* X14245Y27372D01* X14259Y27338D01* X14275Y27306D01* X14279Y27299D01* X14285Y27292D01* X14293Y27287D01* X14300Y27283D01* X14309Y27281D01* X14317Y27280D01* X14326Y27281D01* X14335Y27283D01* X14337Y27284D01* Y25714D01* X14334Y25714D01* X14325Y25713D01* X14317Y25710D01* X14309Y25706D01* X14302Y25701D01* X14296Y25695D01* X14291Y25687D01* X14276Y25655D01* X14263Y25621D01* X14254Y25586D01* X14248Y25550D01* X14245Y25514D01* X14245Y25478D01* X14249Y25442D01* X14255Y25407D01* X14265Y25372D01* X14279Y25338D01* X14295Y25306D01* X14299Y25299D01* X14305Y25292D01* X14313Y25287D01* X14320Y25283D01* X14329Y25281D01* X14337Y25280D01* Y23710D01* X14329Y23706D01* X14322Y23701D01* X14316Y23695D01* X14311Y23687D01* X14296Y23655D01* X14283Y23621D01* X14274Y23586D01* X14268Y23550D01* X14265Y23514D01* X14265Y23478D01* X14269Y23442D01* X14275Y23407D01* X14285Y23372D01* X14299Y23338D01* X14315Y23306D01* X14319Y23299D01* X14325Y23292D01* X14333Y23287D01* X14337Y23285D01* Y21695D01* X14336Y21695D01* X14331Y21687D01* X14316Y21655D01* X14303Y21621D01* X14294Y21586D01* X14288Y21550D01* X14285Y21514D01* X14285Y21478D01* X14289Y21442D01* X14295Y21407D01* X14305Y21372D01* X14319Y21338D01* X14335Y21306D01* X14337Y21303D01* Y19656D01* X14336Y19655D01* X14323Y19621D01* X14314Y19586D01* X14308Y19550D01* X14305Y19514D01* X14305Y19478D01* X14309Y19442D01* X14315Y19407D01* X14325Y19372D01* X14337Y19343D01* Y17596D01* X14334Y17586D01* X14328Y17550D01* X14325Y17514D01* X14325Y17478D01* X14329Y17442D01* X14335Y17407D01* X14337Y17403D01* Y0D01* X14197D01* Y31403D01* X14205Y31372D01* X14219Y31338D01* X14235Y31306D01* X14239Y31299D01* X14245Y31292D01* X14253Y31287D01* X14260Y31283D01* X14269Y31281D01* X14277Y31280D01* X14286Y31281D01* X14295Y31283D01* X14303Y31286D01* X14310Y31291D01* X14316Y31297D01* X14321Y31304D01* X14325Y31312D01* X14327Y31320D01* X14328Y31329D01* X14328Y31338D01* X14326Y31346D01* X14322Y31354D01* X14310Y31378D01* X14300Y31404D01* X14293Y31430D01* X14288Y31456D01* X14285Y31483D01* X14285Y31511D01* X14287Y31538D01* X14292Y31564D01* X14299Y31590D01* X14308Y31616D01* X14320Y31640D01* X14323Y31649D01* X14325Y31657D01* X14325Y31666D01* X14324Y31674D01* X14322Y31683D01* X14318Y31690D01* X14313Y31697D01* X14306Y31703D01* X14299Y31708D01* X14291Y31711D01* X14282Y31713D01* X14274Y31714D01* X14265Y31713D01* X14257Y31710D01* X14249Y31706D01* X14242Y31701D01* X14236Y31695D01* X14231Y31687D01* X14216Y31655D01* X14203Y31621D01* X14197Y31596D01* Y33343D01* X14199Y33338D01* X14215Y33306D01* X14219Y33299D01* X14225Y33292D01* X14233Y33287D01* X14240Y33283D01* X14249Y33281D01* X14257Y33280D01* X14266Y33281D01* X14275Y33283D01* X14283Y33286D01* X14290Y33291D01* X14296Y33297D01* X14301Y33304D01* X14305Y33312D01* X14307Y33320D01* X14308Y33329D01* X14308Y33338D01* X14306Y33346D01* X14302Y33354D01* X14290Y33378D01* X14280Y33404D01* X14273Y33430D01* X14268Y33456D01* X14265Y33483D01* X14265Y33511D01* X14267Y33538D01* X14272Y33564D01* X14279Y33590D01* X14288Y33616D01* X14300Y33640D01* X14303Y33649D01* X14305Y33657D01* X14305Y33666D01* X14304Y33674D01* X14302Y33683D01* X14298Y33690D01* X14293Y33697D01* X14286Y33703D01* X14279Y33708D01* X14271Y33711D01* X14262Y33713D01* X14254Y33714D01* X14245Y33713D01* X14237Y33710D01* X14229Y33706D01* X14222Y33701D01* X14216Y33695D01* X14211Y33687D01* X14197Y33656D01* Y35303D01* X14199Y35299D01* X14205Y35292D01* X14213Y35287D01* X14220Y35283D01* X14229Y35281D01* X14237Y35280D01* X14246Y35281D01* X14255Y35283D01* X14263Y35286D01* X14270Y35291D01* X14276Y35297D01* X14281Y35304D01* X14285Y35312D01* X14287Y35320D01* X14288Y35329D01* X14288Y35338D01* X14286Y35346D01* X14282Y35354D01* X14270Y35378D01* X14260Y35404D01* X14253Y35430D01* X14248Y35456D01* X14245Y35483D01* X14245Y35511D01* X14247Y35538D01* X14252Y35564D01* X14259Y35590D01* X14268Y35616D01* X14280Y35640D01* X14283Y35649D01* X14285Y35657D01* X14285Y35666D01* X14284Y35674D01* X14282Y35683D01* X14278Y35690D01* X14273Y35697D01* X14266Y35703D01* X14259Y35708D01* X14251Y35711D01* X14242Y35713D01* X14234Y35714D01* X14225Y35713D01* X14217Y35710D01* X14209Y35706D01* X14202Y35701D01* X14197Y35695D01* Y37285D01* X14200Y37283D01* X14209Y37281D01* X14217Y37280D01* X14226Y37281D01* X14235Y37283D01* X14243Y37286D01* X14250Y37291D01* X14256Y37297D01* X14261Y37304D01* X14265Y37312D01* X14267Y37320D01* X14268Y37329D01* X14268Y37338D01* X14266Y37346D01* X14262Y37354D01* X14250Y37378D01* X14240Y37404D01* X14233Y37430D01* X14228Y37456D01* X14225Y37483D01* X14225Y37511D01* X14227Y37538D01* X14232Y37564D01* X14239Y37590D01* X14248Y37616D01* X14260Y37640D01* X14263Y37649D01* X14265Y37657D01* X14265Y37666D01* X14264Y37674D01* X14262Y37683D01* X14258Y37690D01* X14253Y37697D01* X14246Y37703D01* X14239Y37708D01* X14231Y37711D01* X14222Y37713D01* X14214Y37714D01* X14205Y37713D01* X14197Y37710D01* X14197Y37710D01* Y39280D01* X14197Y39280D01* X14206Y39281D01* X14215Y39283D01* X14223Y39286D01* X14230Y39291D01* X14236Y39297D01* X14241Y39304D01* X14245Y39312D01* X14247Y39320D01* X14248Y39329D01* X14248Y39338D01* X14246Y39346D01* X14242Y39354D01* X14230Y39378D01* X14220Y39404D01* X14213Y39430D01* X14208Y39456D01* X14205Y39483D01* X14205Y39511D01* X14207Y39538D01* X14212Y39564D01* X14219Y39590D01* X14228Y39616D01* X14240Y39640D01* X14243Y39649D01* X14245Y39657D01* X14245Y39666D01* X14244Y39674D01* X14242Y39683D01* X14238Y39690D01* X14233Y39697D01* X14226Y39703D01* X14219Y39708D01* X14211Y39711D01* X14202Y39713D01* X14197Y39714D01* Y40000D01* G37* G36* X14337Y29365D02*X14330Y29378D01* X14320Y29404D01* X14313Y29430D01* X14308Y29456D01* X14305Y29483D01* X14305Y29511D01* X14307Y29538D01* X14312Y29564D01* X14319Y29590D01* X14328Y29616D01* X14337Y29634D01* Y29365D01* G37* G36* Y27417D02*X14333Y27430D01* X14328Y27456D01* X14325Y27483D01* X14325Y27511D01* X14327Y27538D01* X14332Y27564D01* X14337Y27583D01* Y27417D01* G37* G36* Y40000D02*X14667D01* Y39865D01* X14660Y39868D01* X14626Y39881D01* X14591Y39890D01* X14555Y39896D01* X14519Y39899D01* X14483Y39899D01* X14447Y39895D01* X14411Y39889D01* X14377Y39879D01* X14343Y39866D01* X14337Y39862D01* Y40000D01* G37* G36* Y39756D02*X14343Y39756D01* X14351Y39758D01* X14359Y39762D01* X14383Y39774D01* X14409Y39784D01* X14435Y39791D01* X14461Y39796D01* X14488Y39799D01* X14515Y39799D01* X14542Y39797D01* X14569Y39793D01* X14595Y39785D01* X14621Y39776D01* X14645Y39764D01* X14653Y39761D01* X14662Y39759D01* X14667Y39759D01* Y39243D01* X14666Y39243D01* X14658Y39241D01* X14650Y39237D01* X14626Y39225D01* X14600Y39215D01* X14574Y39208D01* X14548Y39203D01* X14521Y39200D01* X14494Y39200D01* X14467Y39202D01* X14440Y39207D01* X14414Y39214D01* X14388Y39223D01* X14364Y39235D01* X14356Y39238D01* X14347Y39240D01* X14338Y39240D01* X14337Y39240D01* Y39756D01* G37* G36* Y39137D02*X14349Y39131D01* X14383Y39118D01* X14418Y39109D01* X14454Y39103D01* X14490Y39100D01* X14526Y39100D01* X14562Y39104D01* X14598Y39111D01* X14632Y39121D01* X14666Y39134D01* X14667Y39134D01* Y37873D01* X14646Y37881D01* X14611Y37890D01* X14575Y37896D01* X14539Y37899D01* X14503Y37899D01* X14467Y37895D01* X14431Y37889D01* X14397Y37879D01* X14363Y37866D01* X14337Y37852D01* Y39137D01* G37* G36* Y37759D02*X14337Y37759D01* X14345Y37757D01* X14354Y37756D01* X14363Y37756D01* X14371Y37758D01* X14379Y37762D01* X14403Y37774D01* X14429Y37784D01* X14455Y37791D01* X14481Y37796D01* X14508Y37799D01* X14535Y37799D01* X14562Y37797D01* X14589Y37793D01* X14615Y37785D01* X14641Y37776D01* X14665Y37764D01* X14667Y37764D01* Y37236D01* X14646Y37225D01* X14620Y37215D01* X14594Y37208D01* X14568Y37203D01* X14541Y37200D01* X14514Y37200D01* X14487Y37202D01* X14460Y37207D01* X14434Y37214D01* X14408Y37223D01* X14384Y37235D01* X14376Y37238D01* X14367Y37240D01* X14358Y37240D01* X14350Y37239D01* X14341Y37237D01* X14337Y37234D01* Y37759D01* G37* G36* Y37147D02*X14337Y37146D01* X14369Y37131D01* X14403Y37118D01* X14438Y37109D01* X14474Y37103D01* X14510Y37100D01* X14546Y37100D01* X14582Y37104D01* X14618Y37111D01* X14652Y37121D01* X14667Y37126D01* Y35880D01* X14666Y35881D01* X14631Y35890D01* X14595Y35896D01* X14559Y35899D01* X14523Y35899D01* X14487Y35895D01* X14451Y35889D01* X14417Y35879D01* X14383Y35866D01* X14351Y35849D01* X14343Y35845D01* X14337Y35839D01* X14337Y35838D01* Y37147D01* G37* G36* Y35774D02*X14342Y35768D01* X14349Y35763D01* X14357Y35759D01* X14365Y35757D01* X14374Y35756D01* X14383Y35756D01* X14391Y35758D01* X14399Y35762D01* X14423Y35774D01* X14449Y35784D01* X14475Y35791D01* X14501Y35796D01* X14528Y35799D01* X14555Y35799D01* X14582Y35797D01* X14609Y35793D01* X14635Y35785D01* X14661Y35776D01* X14667Y35773D01* Y35226D01* X14666Y35225D01* X14640Y35215D01* X14614Y35208D01* X14588Y35203D01* X14561Y35200D01* X14534Y35200D01* X14507Y35202D01* X14480Y35207D01* X14454Y35214D01* X14428Y35223D01* X14404Y35235D01* X14396Y35238D01* X14387Y35240D01* X14378Y35240D01* X14370Y35239D01* X14361Y35237D01* X14354Y35233D01* X14347Y35228D01* X14341Y35221D01* X14337Y35215D01* Y35774D01* G37* G36* Y35167D02*X14338Y35164D01* X14343Y35157D01* X14349Y35151D01* X14357Y35146D01* X14389Y35131D01* X14417Y35121D01* Y33871D01* X14403Y33866D01* X14371Y33849D01* X14363Y33845D01* X14357Y33839D01* X14352Y33832D01* X14348Y33824D01* X14346Y33815D01* X14345Y33807D01* X14345Y33798D01* X14348Y33790D01* X14351Y33782D01* X14356Y33774D01* X14362Y33768D01* X14369Y33763D01* X14377Y33759D01* X14385Y33757D01* X14394Y33756D01* X14403Y33756D01* X14411Y33758D01* X14417Y33761D01* Y33238D01* X14416Y33238D01* X14407Y33240D01* X14398Y33240D01* X14390Y33239D01* X14381Y33237D01* X14374Y33233D01* X14367Y33228D01* X14361Y33221D01* X14356Y33214D01* X14353Y33206D01* X14351Y33197D01* X14350Y33189D01* X14351Y33180D01* X14354Y33172D01* X14358Y33164D01* X14363Y33157D01* X14369Y33151D01* X14377Y33146D01* X14409Y33131D01* X14417Y33128D01* Y31862D01* X14391Y31849D01* X14383Y31845D01* X14377Y31839D01* X14372Y31832D01* X14368Y31824D01* X14366Y31815D01* X14365Y31807D01* X14365Y31798D01* X14368Y31790D01* X14371Y31782D01* X14376Y31774D01* X14382Y31768D01* X14389Y31763D01* X14397Y31759D01* X14405Y31757D01* X14414Y31756D01* X14417Y31756D01* Y31240D01* X14410Y31239D01* X14401Y31237D01* X14394Y31233D01* X14387Y31228D01* X14381Y31221D01* X14376Y31214D01* X14373Y31206D01* X14371Y31197D01* X14370Y31189D01* X14371Y31180D01* X14374Y31172D01* X14378Y31164D01* X14383Y31157D01* X14389Y31151D01* X14397Y31146D01* X14417Y31137D01* Y29852D01* X14411Y29849D01* X14403Y29845D01* X14397Y29839D01* X14392Y29832D01* X14388Y29824D01* X14386Y29815D01* X14385Y29807D01* X14385Y29798D01* X14388Y29790D01* X14391Y29782D01* X14396Y29774D01* X14402Y29768D01* X14409Y29763D01* X14417Y29759D01* Y29234D01* X14414Y29233D01* X14407Y29228D01* X14401Y29221D01* X14396Y29214D01* X14393Y29206D01* X14391Y29197D01* X14390Y29189D01* X14391Y29180D01* X14394Y29172D01* X14398Y29164D01* X14403Y29157D01* X14409Y29151D01* X14417Y29147D01* Y27838D01* X14412Y27832D01* X14408Y27824D01* X14406Y27815D01* X14405Y27807D01* X14405Y27798D01* X14408Y27790D01* X14411Y27782D01* X14416Y27774D01* X14417Y27774D01* Y27215D01* X14416Y27214D01* X14413Y27206D01* X14411Y27197D01* X14410Y27189D01* X14411Y27180D01* X14414Y27172D01* X14417Y27167D01* Y21692D01* X14413Y21697D01* X14406Y21703D01* X14399Y21708D01* X14391Y21711D01* X14382Y21713D01* X14374Y21714D01* X14365Y21713D01* X14357Y21710D01* X14349Y21706D01* X14342Y21701D01* X14337Y21695D01* Y23285D01* X14340Y23283D01* X14349Y23281D01* X14357Y23280D01* X14366Y23281D01* X14375Y23283D01* X14383Y23286D01* X14390Y23291D01* X14396Y23297D01* X14401Y23304D01* X14405Y23312D01* X14407Y23320D01* X14408Y23329D01* X14408Y23338D01* X14406Y23346D01* X14402Y23354D01* X14390Y23378D01* X14380Y23404D01* X14373Y23430D01* X14368Y23456D01* X14365Y23483D01* X14365Y23511D01* X14367Y23538D01* X14372Y23564D01* X14379Y23590D01* X14388Y23616D01* X14400Y23640D01* X14403Y23649D01* X14405Y23657D01* X14405Y23666D01* X14404Y23674D01* X14402Y23683D01* X14398Y23690D01* X14393Y23697D01* X14386Y23703D01* X14379Y23708D01* X14371Y23711D01* X14362Y23713D01* X14354Y23714D01* X14345Y23713D01* X14337Y23710D01* X14337Y23710D01* Y25280D01* X14337Y25280D01* X14346Y25281D01* X14355Y25283D01* X14363Y25286D01* X14370Y25291D01* X14376Y25297D01* X14381Y25304D01* X14385Y25312D01* X14387Y25320D01* X14388Y25329D01* X14388Y25338D01* X14386Y25346D01* X14382Y25354D01* X14370Y25378D01* X14360Y25404D01* X14353Y25430D01* X14348Y25456D01* X14345Y25483D01* X14345Y25511D01* X14347Y25538D01* X14352Y25564D01* X14359Y25590D01* X14368Y25616D01* X14380Y25640D01* X14383Y25649D01* X14385Y25657D01* X14385Y25666D01* X14384Y25674D01* X14382Y25683D01* X14378Y25690D01* X14373Y25697D01* X14366Y25703D01* X14359Y25708D01* X14351Y25711D01* X14342Y25713D01* X14337Y25714D01* Y27284D01* X14343Y27286D01* X14350Y27291D01* X14356Y27297D01* X14361Y27304D01* X14365Y27312D01* X14367Y27320D01* X14368Y27329D01* X14368Y27338D01* X14366Y27346D01* X14362Y27354D01* X14350Y27378D01* X14340Y27404D01* X14337Y27417D01* Y27583D01* X14339Y27590D01* X14348Y27616D01* X14360Y27640D01* X14363Y27649D01* X14365Y27657D01* X14365Y27666D01* X14364Y27674D01* X14362Y27683D01* X14358Y27690D01* X14353Y27697D01* X14346Y27703D01* X14339Y27708D01* X14337Y27709D01* Y29298D01* X14341Y29304D01* X14345Y29312D01* X14347Y29320D01* X14348Y29329D01* X14348Y29338D01* X14346Y29346D01* X14342Y29354D01* X14337Y29365D01* Y29634D01* X14340Y29640D01* X14343Y29649D01* X14345Y29657D01* X14345Y29666D01* X14344Y29674D01* X14342Y29683D01* X14338Y29690D01* X14337Y29692D01* Y35167D01* G37* G36* X14417Y0D02*X14337D01* Y17403D01* X14345Y17372D01* X14359Y17338D01* X14375Y17306D01* X14379Y17299D01* X14385Y17292D01* X14393Y17287D01* X14400Y17283D01* X14409Y17281D01* X14417Y17280D01* Y15710D01* X14409Y15706D01* X14402Y15701D01* X14396Y15695D01* X14391Y15687D01* X14376Y15655D01* X14363Y15621D01* X14354Y15586D01* X14348Y15550D01* X14345Y15514D01* X14345Y15478D01* X14349Y15442D01* X14355Y15407D01* X14365Y15372D01* X14379Y15338D01* X14395Y15306D01* X14399Y15299D01* X14405Y15292D01* X14413Y15287D01* X14417Y15285D01* Y13695D01* X14416Y13695D01* X14411Y13687D01* X14396Y13655D01* X14383Y13621D01* X14374Y13586D01* X14368Y13550D01* X14365Y13514D01* X14365Y13478D01* X14369Y13442D01* X14375Y13407D01* X14385Y13372D01* X14399Y13338D01* X14415Y13306D01* X14417Y13303D01* Y11656D01* X14416Y11655D01* X14403Y11621D01* X14394Y11586D01* X14388Y11550D01* X14385Y11514D01* X14385Y11478D01* X14389Y11442D01* X14395Y11407D01* X14405Y11372D01* X14417Y11343D01* Y9596D01* X14414Y9586D01* X14408Y9550D01* X14405Y9514D01* X14405Y9478D01* X14409Y9442D01* X14415Y9407D01* X14417Y9403D01* Y0D01* G37* G36* Y17714D02*X14414Y17714D01* X14405Y17713D01* X14397Y17710D01* X14389Y17706D01* X14382Y17701D01* X14376Y17695D01* X14371Y17687D01* X14356Y17655D01* X14343Y17621D01* X14337Y17596D01* Y19343D01* X14339Y19338D01* X14355Y19306D01* X14359Y19299D01* X14365Y19292D01* X14373Y19287D01* X14380Y19283D01* X14389Y19281D01* X14397Y19280D01* X14406Y19281D01* X14415Y19283D01* X14417Y19284D01* Y17714D01* G37* G36* Y19417D02*X14413Y19430D01* X14408Y19456D01* X14405Y19483D01* X14405Y19511D01* X14407Y19538D01* X14412Y19564D01* X14417Y19583D01* Y19417D01* G37* G36* Y19709D02*X14411Y19711D01* X14402Y19713D01* X14394Y19714D01* X14385Y19713D01* X14377Y19710D01* X14369Y19706D01* X14362Y19701D01* X14356Y19695D01* X14351Y19687D01* X14337Y19656D01* Y21303D01* X14339Y21299D01* X14345Y21292D01* X14353Y21287D01* X14360Y21283D01* X14369Y21281D01* X14377Y21280D01* X14386Y21281D01* X14395Y21283D01* X14403Y21286D01* X14410Y21291D01* X14416Y21297D01* X14417Y21298D01* Y19709D01* G37* G36* Y21365D02*X14410Y21378D01* X14400Y21404D01* X14393Y21430D01* X14388Y21456D01* X14385Y21483D01* X14385Y21511D01* X14387Y21538D01* X14392Y21564D01* X14399Y21590D01* X14408Y21616D01* X14417Y21634D01* Y21365D01* G37* G36* Y35121D02*X14423Y35118D01* X14458Y35109D01* X14494Y35103D01* X14530Y35100D01* X14566Y35100D01* X14602Y35104D01* X14638Y35111D01* X14667Y35119D01* Y33886D01* X14651Y33890D01* X14615Y33896D01* X14579Y33899D01* X14543Y33899D01* X14507Y33895D01* X14471Y33889D01* X14437Y33879D01* X14417Y33871D01* Y35121D01* G37* G36* Y33761D02*X14419Y33762D01* X14443Y33774D01* X14469Y33784D01* X14495Y33791D01* X14521Y33796D01* X14548Y33799D01* X14575Y33799D01* X14602Y33797D01* X14629Y33793D01* X14655Y33785D01* X14667Y33781D01* Y33218D01* X14660Y33215D01* X14634Y33208D01* X14608Y33203D01* X14581Y33200D01* X14554Y33200D01* X14527Y33202D01* X14500Y33207D01* X14474Y33214D01* X14448Y33223D01* X14424Y33235D01* X14417Y33238D01* Y33761D01* G37* G36* Y33128D02*X14443Y33118D01* X14478Y33109D01* X14514Y33103D01* X14550Y33100D01* X14586Y33100D01* X14622Y33104D01* X14658Y33111D01* X14667Y33113D01* Y31891D01* X14635Y31896D01* X14599Y31899D01* X14563Y31899D01* X14527Y31895D01* X14491Y31889D01* X14457Y31879D01* X14423Y31866D01* X14417Y31862D01* Y33128D01* G37* G36* Y31756D02*X14423Y31756D01* X14431Y31758D01* X14439Y31762D01* X14463Y31774D01* X14489Y31784D01* X14515Y31791D01* X14541Y31796D01* X14568Y31799D01* X14595Y31799D01* X14622Y31797D01* X14649Y31793D01* X14667Y31788D01* Y31212D01* X14654Y31208D01* X14628Y31203D01* X14601Y31200D01* X14574Y31200D01* X14547Y31202D01* X14520Y31207D01* X14494Y31214D01* X14468Y31223D01* X14444Y31235D01* X14436Y31238D01* X14427Y31240D01* X14418Y31240D01* X14417Y31240D01* Y31756D01* G37* G36* Y31137D02*X14429Y31131D01* X14463Y31118D01* X14498Y31109D01* X14534Y31103D01* X14570Y31100D01* X14606Y31100D01* X14642Y31104D01* X14667Y31109D01* Y29894D01* X14655Y29896D01* X14619Y29899D01* X14583Y29899D01* X14547Y29895D01* X14511Y29889D01* X14477Y29879D01* X14443Y29866D01* X14417Y29852D01* Y31137D01* G37* G36* Y29759D02*X14417Y29759D01* X14425Y29757D01* X14434Y29756D01* X14443Y29756D01* X14451Y29758D01* X14459Y29762D01* X14483Y29774D01* X14509Y29784D01* X14535Y29791D01* X14561Y29796D01* X14588Y29799D01* X14615Y29799D01* X14642Y29797D01* X14667Y29793D01* Y29206D01* X14648Y29203D01* X14621Y29200D01* X14594Y29200D01* X14567Y29202D01* X14540Y29207D01* X14514Y29214D01* X14488Y29223D01* X14464Y29235D01* X14456Y29238D01* X14447Y29240D01* X14438Y29240D01* X14430Y29239D01* X14421Y29237D01* X14417Y29234D01* Y29759D01* G37* G36* Y29147D02*X14417Y29146D01* X14449Y29131D01* X14483Y29118D01* X14518Y29109D01* X14554Y29103D01* X14590Y29100D01* X14626Y29100D01* X14662Y29104D01* X14667Y29105D01* Y27897D01* X14639Y27899D01* X14603Y27899D01* X14567Y27895D01* X14531Y27889D01* X14497Y27879D01* X14463Y27866D01* X14431Y27849D01* X14423Y27845D01* X14417Y27839D01* X14417Y27838D01* Y29147D01* G37* G36* Y27774D02*X14422Y27768D01* X14429Y27763D01* X14437Y27759D01* X14445Y27757D01* X14454Y27756D01* X14463Y27756D01* X14471Y27758D01* X14479Y27762D01* X14503Y27774D01* X14529Y27784D01* X14555Y27791D01* X14581Y27796D01* X14608Y27799D01* X14635Y27799D01* X14662Y27797D01* X14667Y27796D01* Y27203D01* X14641Y27200D01* X14614Y27200D01* X14587Y27202D01* X14560Y27207D01* X14534Y27214D01* X14508Y27223D01* X14484Y27235D01* X14476Y27238D01* X14467Y27240D01* X14458Y27240D01* X14450Y27239D01* X14441Y27237D01* X14434Y27233D01* X14427Y27228D01* X14421Y27221D01* X14417Y27215D01* Y27774D01* G37* G36* Y27167D02*X14418Y27164D01* X14423Y27157D01* X14429Y27151D01* X14437Y27146D01* X14469Y27131D01* X14497Y27121D01* Y25871D01* X14483Y25866D01* X14451Y25849D01* X14443Y25845D01* X14437Y25839D01* X14432Y25832D01* X14428Y25824D01* X14426Y25815D01* X14425Y25807D01* X14425Y25798D01* X14428Y25790D01* X14431Y25782D01* X14436Y25774D01* X14442Y25768D01* X14449Y25763D01* X14457Y25759D01* X14465Y25757D01* X14474Y25756D01* X14483Y25756D01* X14491Y25758D01* X14497Y25761D01* Y25238D01* X14496Y25238D01* X14487Y25240D01* X14478Y25240D01* X14470Y25239D01* X14461Y25237D01* X14454Y25233D01* X14447Y25228D01* X14441Y25221D01* X14436Y25214D01* X14433Y25206D01* X14431Y25197D01* X14430Y25189D01* X14431Y25180D01* X14434Y25172D01* X14438Y25164D01* X14443Y25157D01* X14449Y25151D01* X14457Y25146D01* X14489Y25131D01* X14497Y25128D01* Y23862D01* X14471Y23849D01* X14463Y23845D01* X14457Y23839D01* X14452Y23832D01* X14448Y23824D01* X14446Y23815D01* X14445Y23807D01* X14445Y23798D01* X14448Y23790D01* X14451Y23782D01* X14456Y23774D01* X14462Y23768D01* X14469Y23763D01* X14477Y23759D01* X14485Y23757D01* X14494Y23756D01* X14497Y23756D01* Y23240D01* X14490Y23239D01* X14481Y23237D01* X14474Y23233D01* X14467Y23228D01* X14461Y23221D01* X14456Y23214D01* X14453Y23206D01* X14451Y23197D01* X14450Y23189D01* X14451Y23180D01* X14454Y23172D01* X14458Y23164D01* X14463Y23157D01* X14469Y23151D01* X14477Y23146D01* X14497Y23137D01* Y21852D01* X14491Y21849D01* X14483Y21845D01* X14477Y21839D01* X14472Y21832D01* X14468Y21824D01* X14466Y21815D01* X14465Y21807D01* X14465Y21798D01* X14468Y21790D01* X14471Y21782D01* X14476Y21774D01* X14482Y21768D01* X14489Y21763D01* X14497Y21759D01* Y21234D01* X14494Y21233D01* X14487Y21228D01* X14481Y21221D01* X14476Y21214D01* X14473Y21206D01* X14471Y21197D01* X14470Y21189D01* X14471Y21180D01* X14474Y21172D01* X14478Y21164D01* X14483Y21157D01* X14489Y21151D01* X14497Y21147D01* Y19838D01* X14492Y19832D01* X14488Y19824D01* X14486Y19815D01* X14485Y19807D01* X14485Y19798D01* X14488Y19790D01* X14491Y19782D01* X14496Y19774D01* X14497Y19774D01* Y19215D01* X14496Y19214D01* X14493Y19206D01* X14491Y19197D01* X14490Y19189D01* X14491Y19180D01* X14494Y19172D01* X14497Y19167D01* Y13692D01* X14493Y13697D01* X14486Y13703D01* X14479Y13708D01* X14471Y13711D01* X14462Y13713D01* X14454Y13714D01* X14445Y13713D01* X14437Y13710D01* X14429Y13706D01* X14422Y13701D01* X14417Y13695D01* Y15285D01* X14420Y15283D01* X14429Y15281D01* X14437Y15280D01* X14446Y15281D01* X14455Y15283D01* X14463Y15286D01* X14470Y15291D01* X14476Y15297D01* X14481Y15304D01* X14485Y15312D01* X14487Y15320D01* X14488Y15329D01* X14488Y15338D01* X14486Y15346D01* X14482Y15354D01* X14470Y15378D01* X14460Y15404D01* X14453Y15430D01* X14448Y15456D01* X14445Y15483D01* X14445Y15511D01* X14447Y15538D01* X14452Y15564D01* X14459Y15590D01* X14468Y15616D01* X14480Y15640D01* X14483Y15649D01* X14485Y15657D01* X14485Y15666D01* X14484Y15674D01* X14482Y15683D01* X14478Y15690D01* X14473Y15697D01* X14466Y15703D01* X14459Y15708D01* X14451Y15711D01* X14442Y15713D01* X14434Y15714D01* X14425Y15713D01* X14417Y15710D01* X14417Y15710D01* Y17280D01* X14417Y17280D01* X14426Y17281D01* X14435Y17283D01* X14443Y17286D01* X14450Y17291D01* X14456Y17297D01* X14461Y17304D01* X14465Y17312D01* X14467Y17320D01* X14468Y17329D01* X14468Y17338D01* X14466Y17346D01* X14462Y17354D01* X14450Y17378D01* X14440Y17404D01* X14433Y17430D01* X14428Y17456D01* X14425Y17483D01* X14425Y17511D01* X14427Y17538D01* X14432Y17564D01* X14439Y17590D01* X14448Y17616D01* X14460Y17640D01* X14463Y17649D01* X14465Y17657D01* X14465Y17666D01* X14464Y17674D01* X14462Y17683D01* X14458Y17690D01* X14453Y17697D01* X14446Y17703D01* X14439Y17708D01* X14431Y17711D01* X14422Y17713D01* X14417Y17714D01* Y19284D01* X14423Y19286D01* X14430Y19291D01* X14436Y19297D01* X14441Y19304D01* X14445Y19312D01* X14447Y19320D01* X14448Y19329D01* X14448Y19338D01* X14446Y19346D01* X14442Y19354D01* X14430Y19378D01* X14420Y19404D01* X14417Y19417D01* Y19583D01* X14419Y19590D01* X14428Y19616D01* X14440Y19640D01* X14443Y19649D01* X14445Y19657D01* X14445Y19666D01* X14444Y19674D01* X14442Y19683D01* X14438Y19690D01* X14433Y19697D01* X14426Y19703D01* X14419Y19708D01* X14417Y19709D01* Y21298D01* X14421Y21304D01* X14425Y21312D01* X14427Y21320D01* X14428Y21329D01* X14428Y21338D01* X14426Y21346D01* X14422Y21354D01* X14417Y21365D01* Y21634D01* X14420Y21640D01* X14423Y21649D01* X14425Y21657D01* X14425Y21666D01* X14424Y21674D01* X14422Y21683D01* X14418Y21690D01* X14417Y21692D01* Y27167D01* G37* G36* X14497Y0D02*X14417D01* Y9403D01* X14425Y9372D01* X14439Y9338D01* X14455Y9306D01* X14459Y9299D01* X14465Y9292D01* X14473Y9287D01* X14480Y9283D01* X14489Y9281D01* X14497Y9280D01* Y7710D01* X14489Y7706D01* X14482Y7701D01* X14476Y7695D01* X14471Y7687D01* X14456Y7655D01* X14443Y7621D01* X14434Y7586D01* X14428Y7550D01* X14425Y7514D01* X14425Y7478D01* X14429Y7442D01* X14435Y7407D01* X14445Y7372D01* X14459Y7338D01* X14475Y7306D01* X14479Y7299D01* X14485Y7292D01* X14493Y7287D01* X14497Y7285D01* Y5695D01* X14496Y5695D01* X14491Y5687D01* X14476Y5655D01* X14463Y5621D01* X14454Y5586D01* X14448Y5550D01* X14445Y5514D01* X14445Y5478D01* X14449Y5442D01* X14455Y5407D01* X14465Y5372D01* X14479Y5338D01* X14495Y5306D01* X14497Y5303D01* Y3656D01* X14496Y3655D01* X14483Y3621D01* X14474Y3586D01* X14468Y3550D01* X14465Y3514D01* X14465Y3478D01* X14469Y3442D01* X14475Y3407D01* X14485Y3372D01* X14497Y3343D01* Y1596D01* X14494Y1586D01* X14488Y1550D01* X14485Y1514D01* X14485Y1478D01* X14489Y1442D01* X14495Y1407D01* X14497Y1403D01* Y0D01* G37* G36* Y9714D02*X14494Y9714D01* X14485Y9713D01* X14477Y9710D01* X14469Y9706D01* X14462Y9701D01* X14456Y9695D01* X14451Y9687D01* X14436Y9655D01* X14423Y9621D01* X14417Y9596D01* Y11343D01* X14419Y11338D01* X14435Y11306D01* X14439Y11299D01* X14445Y11292D01* X14453Y11287D01* X14460Y11283D01* X14469Y11281D01* X14477Y11280D01* X14486Y11281D01* X14495Y11283D01* X14497Y11284D01* Y9714D01* G37* G36* Y11417D02*X14493Y11430D01* X14488Y11456D01* X14485Y11483D01* X14485Y11511D01* X14487Y11538D01* X14492Y11564D01* X14497Y11583D01* Y11417D01* G37* G36* Y11709D02*X14491Y11711D01* X14482Y11713D01* X14474Y11714D01* X14465Y11713D01* X14457Y11710D01* X14449Y11706D01* X14442Y11701D01* X14436Y11695D01* X14431Y11687D01* X14417Y11656D01* Y13303D01* X14419Y13299D01* X14425Y13292D01* X14433Y13287D01* X14440Y13283D01* X14449Y13281D01* X14457Y13280D01* X14466Y13281D01* X14475Y13283D01* X14483Y13286D01* X14490Y13291D01* X14496Y13297D01* X14497Y13298D01* Y11709D01* G37* G36* Y13365D02*X14490Y13378D01* X14480Y13404D01* X14473Y13430D01* X14468Y13456D01* X14465Y13483D01* X14465Y13511D01* X14467Y13538D01* X14472Y13564D01* X14479Y13590D01* X14488Y13616D01* X14497Y13634D01* Y13365D01* G37* G36* Y27121D02*X14503Y27118D01* X14538Y27109D01* X14574Y27103D01* X14610Y27100D01* X14646Y27100D01* X14667Y27102D01* Y25899D01* X14659Y25899D01* X14623Y25899D01* X14587Y25895D01* X14551Y25889D01* X14517Y25879D01* X14497Y25871D01* Y27121D01* G37* G36* Y25761D02*X14499Y25762D01* X14523Y25774D01* X14549Y25784D01* X14575Y25791D01* X14601Y25796D01* X14628Y25799D01* X14655Y25799D01* X14667Y25798D01* Y25201D01* X14661Y25200D01* X14634Y25200D01* X14607Y25202D01* X14580Y25207D01* X14554Y25214D01* X14528Y25223D01* X14504Y25235D01* X14497Y25238D01* Y25761D01* G37* G36* Y25128D02*X14523Y25118D01* X14558Y25109D01* X14594Y25103D01* X14630Y25100D01* X14666Y25100D01* X14667Y25100D01* Y23899D01* X14643Y23899D01* X14607Y23895D01* X14571Y23889D01* X14537Y23879D01* X14503Y23866D01* X14497Y23862D01* Y25128D01* G37* G36* Y23756D02*X14503Y23756D01* X14511Y23758D01* X14519Y23762D01* X14543Y23774D01* X14569Y23784D01* X14595Y23791D01* X14621Y23796D01* X14648Y23799D01* X14667Y23799D01* Y23200D01* X14654Y23200D01* X14627Y23202D01* X14600Y23207D01* X14574Y23214D01* X14548Y23223D01* X14524Y23235D01* X14516Y23238D01* X14507Y23240D01* X14498Y23240D01* X14497Y23240D01* Y23756D01* G37* G36* Y23137D02*X14509Y23131D01* X14543Y23118D01* X14578Y23109D01* X14614Y23103D01* X14650Y23100D01* X14667Y23100D01* Y21899D01* X14663D01* X14627Y21895D01* X14591Y21889D01* X14557Y21879D01* X14523Y21866D01* X14497Y21852D01* Y23137D01* G37* G36* Y21759D02*X14497Y21759D01* X14505Y21757D01* X14514Y21756D01* X14523Y21756D01* X14531Y21758D01* X14539Y21762D01* X14563Y21774D01* X14589Y21784D01* X14615Y21791D01* X14641Y21796D01* X14667Y21799D01* Y21200D01* X14647Y21202D01* X14620Y21207D01* X14594Y21214D01* X14568Y21223D01* X14544Y21235D01* X14536Y21238D01* X14527Y21240D01* X14518Y21240D01* X14510Y21239D01* X14501Y21237D01* X14497Y21234D01* Y21759D01* G37* G36* Y21147D02*X14497Y21146D01* X14529Y21131D01* X14563Y21118D01* X14598Y21109D01* X14634Y21103D01* X14667Y21100D01* Y19897D01* X14647Y19895D01* X14611Y19889D01* X14577Y19879D01* X14543Y19866D01* X14511Y19849D01* X14503Y19845D01* X14497Y19839D01* X14497Y19838D01* Y21147D01* G37* G36* Y19774D02*X14502Y19768D01* X14509Y19763D01* X14517Y19759D01* X14525Y19757D01* X14534Y19756D01* X14543Y19756D01* X14551Y19758D01* X14559Y19762D01* X14583Y19774D01* X14609Y19784D01* X14635Y19791D01* X14661Y19796D01* X14667Y19797D01* Y19202D01* X14667Y19202D01* X14640Y19207D01* X14614Y19214D01* X14588Y19223D01* X14564Y19235D01* X14556Y19238D01* X14547Y19240D01* X14538Y19240D01* X14530Y19239D01* X14521Y19237D01* X14514Y19233D01* X14507Y19228D01* X14501Y19221D01* X14497Y19215D01* Y19774D01* G37* G36* Y19167D02*X14498Y19164D01* X14503Y19157D01* X14509Y19151D01* X14517Y19146D01* X14549Y19131D01* X14583Y19118D01* X14618Y19109D01* X14654Y19103D01* X14667Y19102D01* Y17895D01* X14667D01* X14631Y17889D01* X14597Y17879D01* X14563Y17866D01* X14531Y17849D01* X14523Y17845D01* X14517Y17839D01* X14512Y17832D01* X14508Y17824D01* X14506Y17815D01* X14505Y17807D01* X14505Y17798D01* X14508Y17790D01* X14511Y17782D01* X14516Y17774D01* X14522Y17768D01* X14529Y17763D01* X14537Y17759D01* X14545Y17757D01* X14554Y17756D01* X14563Y17756D01* X14571Y17758D01* X14579Y17762D01* X14603Y17774D01* X14629Y17784D01* X14655Y17791D01* X14667Y17794D01* Y17205D01* X14660Y17207D01* X14634Y17214D01* X14608Y17223D01* X14584Y17235D01* X14576Y17238D01* X14567Y17240D01* X14558Y17240D01* X14550Y17239D01* X14541Y17237D01* X14534Y17233D01* X14527Y17228D01* X14521Y17221D01* X14516Y17214D01* X14513Y17206D01* X14511Y17197D01* X14510Y17189D01* X14511Y17180D01* X14514Y17172D01* X14518Y17164D01* X14523Y17157D01* X14529Y17151D01* X14537Y17146D01* X14569Y17131D01* X14603Y17118D01* X14638Y17109D01* X14667Y17104D01* Y15892D01* X14651Y15889D01* X14617Y15879D01* X14583Y15866D01* X14551Y15849D01* X14543Y15845D01* X14537Y15839D01* X14532Y15832D01* X14528Y15824D01* X14526Y15815D01* X14525Y15807D01* X14525Y15798D01* X14528Y15790D01* X14531Y15782D01* X14536Y15774D01* X14542Y15768D01* X14549Y15763D01* X14557Y15759D01* X14565Y15757D01* X14574Y15756D01* X14583Y15756D01* X14591Y15758D01* X14599Y15762D01* X14623Y15774D01* X14649Y15784D01* X14667Y15789D01* Y15210D01* X14654Y15214D01* X14628Y15223D01* X14604Y15235D01* X14596Y15238D01* X14587Y15240D01* X14578Y15240D01* X14570Y15239D01* X14561Y15237D01* X14554Y15233D01* X14547Y15228D01* X14541Y15221D01* X14536Y15214D01* X14533Y15206D01* X14531Y15197D01* X14530Y15189D01* X14531Y15180D01* X14534Y15172D01* X14538Y15164D01* X14543Y15157D01* X14549Y15151D01* X14557Y15146D01* X14589Y15131D01* X14623Y15118D01* X14658Y15109D01* X14667Y15107D01* Y13887D01* X14637Y13879D01* X14603Y13866D01* X14571Y13849D01* X14563Y13845D01* X14557Y13839D01* X14552Y13832D01* X14548Y13824D01* X14546Y13815D01* X14545Y13807D01* X14545Y13798D01* X14548Y13790D01* X14551Y13782D01* X14556Y13774D01* X14562Y13768D01* X14569Y13763D01* X14577Y13759D01* X14585Y13757D01* X14594Y13756D01* X14603Y13756D01* X14611Y13758D01* X14619Y13762D01* X14643Y13774D01* X14667Y13783D01* Y13216D01* X14648Y13223D01* X14624Y13235D01* X14616Y13238D01* X14607Y13240D01* X14598Y13240D01* X14590Y13239D01* X14581Y13237D01* X14574Y13233D01* X14567Y13228D01* X14561Y13221D01* X14556Y13214D01* X14553Y13206D01* X14551Y13197D01* X14550Y13189D01* X14551Y13180D01* X14554Y13172D01* X14558Y13164D01* X14563Y13157D01* X14569Y13151D01* X14577Y13146D01* X14609Y13131D01* X14643Y13118D01* X14667Y13112D01* Y11882D01* X14657Y11879D01* X14623Y11866D01* X14591Y11849D01* X14583Y11845D01* X14577Y11839D01* X14572Y11832D01* X14568Y11824D01* X14566Y11815D01* X14565Y11807D01* X14565Y11798D01* X14568Y11790D01* X14571Y11782D01* X14576Y11774D01* X14582Y11768D01* X14589Y11763D01* X14597Y11759D01* X14605Y11757D01* X14614Y11756D01* X14623Y11756D01* X14631Y11758D01* X14639Y11762D01* X14663Y11774D01* X14667Y11776D01* Y11223D01* X14644Y11235D01* X14636Y11238D01* X14627Y11240D01* X14618Y11240D01* X14610Y11239D01* X14601Y11237D01* X14594Y11233D01* X14587Y11228D01* X14581Y11221D01* X14576Y11214D01* X14573Y11206D01* X14571Y11197D01* X14570Y11189D01* X14571Y11180D01* X14574Y11172D01* X14578Y11164D01* X14583Y11157D01* X14589Y11151D01* X14597Y11146D01* X14629Y11131D01* X14663Y11118D01* X14667Y11117D01* Y9875D01* X14643Y9866D01* X14611Y9849D01* X14603Y9845D01* X14597Y9839D01* X14592Y9832D01* X14588Y9824D01* X14586Y9815D01* X14585Y9807D01* X14585Y9798D01* X14588Y9790D01* X14591Y9782D01* X14596Y9774D01* X14602Y9768D01* X14609Y9763D01* X14617Y9759D01* X14625Y9757D01* X14634Y9756D01* X14643Y9756D01* X14651Y9758D01* X14659Y9762D01* X14667Y9766D01* Y9233D01* X14664Y9235D01* X14656Y9238D01* X14647Y9240D01* X14638Y9240D01* X14630Y9239D01* X14621Y9237D01* X14614Y9233D01* X14607Y9228D01* X14601Y9221D01* X14596Y9214D01* X14593Y9206D01* X14591Y9197D01* X14590Y9189D01* X14591Y9180D01* X14594Y9172D01* X14598Y9164D01* X14603Y9157D01* X14609Y9151D01* X14617Y9146D01* X14649Y9131D01* X14667Y9124D01* Y7867D01* X14663Y7866D01* X14631Y7849D01* X14623Y7845D01* X14617Y7839D01* X14612Y7832D01* X14608Y7824D01* X14606Y7815D01* X14605Y7807D01* X14605Y7798D01* X14608Y7790D01* X14611Y7782D01* X14616Y7774D01* X14622Y7768D01* X14629Y7763D01* X14637Y7759D01* X14645Y7757D01* X14654Y7756D01* X14663Y7756D01* X14667Y7757D01* Y7240D01* X14667D01* X14658Y7240D01* X14650Y7239D01* X14641Y7237D01* X14634Y7233D01* X14627Y7228D01* X14621Y7221D01* X14616Y7214D01* X14613Y7206D01* X14611Y7197D01* X14610Y7189D01* X14611Y7180D01* X14614Y7172D01* X14618Y7164D01* X14623Y7157D01* X14629Y7151D01* X14637Y7146D01* X14667Y7132D01* Y5858D01* X14651Y5849D01* X14643Y5845D01* X14637Y5839D01* X14632Y5832D01* X14628Y5824D01* X14626Y5815D01* X14625Y5807D01* X14625Y5798D01* X14628Y5790D01* X14631Y5782D01* X14636Y5774D01* X14642Y5768D01* X14649Y5763D01* X14657Y5759D01* X14665Y5757D01* X14667Y5756D01* Y5239D01* X14661Y5237D01* X14654Y5233D01* X14647Y5228D01* X14641Y5221D01* X14636Y5214D01* X14633Y5206D01* X14631Y5197D01* X14630Y5189D01* X14631Y5180D01* X14634Y5172D01* X14638Y5164D01* X14643Y5157D01* X14649Y5151D01* X14657Y5146D01* X14667Y5141D01* Y3847D01* X14663Y3845D01* X14657Y3839D01* X14652Y3832D01* X14648Y3824D01* X14646Y3815D01* X14645Y3807D01* X14645Y3798D01* X14648Y3790D01* X14651Y3782D01* X14656Y3774D01* X14662Y3768D01* X14667Y3764D01* Y3228D01* X14667Y3228D01* X14661Y3221D01* X14656Y3214D01* X14653Y3206D01* X14651Y3197D01* X14650Y3189D01* X14651Y3180D01* X14654Y3172D01* X14658Y3164D01* X14663Y3157D01* X14667Y3153D01* Y1821D01* X14666Y1815D01* X14665Y1807D01* X14665Y1798D01* X14667Y1791D01* Y0D01* X14497D01* Y1403D01* X14505Y1372D01* X14519Y1338D01* X14535Y1306D01* X14539Y1299D01* X14545Y1292D01* X14553Y1287D01* X14560Y1283D01* X14569Y1281D01* X14577Y1280D01* X14586Y1281D01* X14595Y1283D01* X14603Y1286D01* X14610Y1291D01* X14616Y1297D01* X14621Y1304D01* X14625Y1312D01* X14627Y1320D01* X14628Y1329D01* X14628Y1338D01* X14626Y1346D01* X14622Y1354D01* X14610Y1378D01* X14600Y1404D01* X14593Y1430D01* X14588Y1456D01* X14585Y1483D01* X14585Y1511D01* X14587Y1538D01* X14592Y1564D01* X14599Y1590D01* X14608Y1616D01* X14620Y1640D01* X14623Y1649D01* X14625Y1657D01* X14625Y1666D01* X14624Y1674D01* X14622Y1683D01* X14618Y1690D01* X14613Y1697D01* X14606Y1703D01* X14599Y1708D01* X14591Y1711D01* X14582Y1713D01* X14574Y1714D01* X14565Y1713D01* X14557Y1710D01* X14549Y1706D01* X14542Y1701D01* X14536Y1695D01* X14531Y1687D01* X14516Y1655D01* X14503Y1621D01* X14497Y1596D01* Y3343D01* X14499Y3338D01* X14515Y3306D01* X14519Y3299D01* X14525Y3292D01* X14533Y3287D01* X14540Y3283D01* X14549Y3281D01* X14557Y3280D01* X14566Y3281D01* X14575Y3283D01* X14583Y3286D01* X14590Y3291D01* X14596Y3297D01* X14601Y3304D01* X14605Y3312D01* X14607Y3320D01* X14608Y3329D01* X14608Y3338D01* X14606Y3346D01* X14602Y3354D01* X14590Y3378D01* X14580Y3404D01* X14573Y3430D01* X14568Y3456D01* X14565Y3483D01* X14565Y3511D01* X14567Y3538D01* X14572Y3564D01* X14579Y3590D01* X14588Y3616D01* X14600Y3640D01* X14603Y3649D01* X14605Y3657D01* X14605Y3666D01* X14604Y3674D01* X14602Y3683D01* X14598Y3690D01* X14593Y3697D01* X14586Y3703D01* X14579Y3708D01* X14571Y3711D01* X14562Y3713D01* X14554Y3714D01* X14545Y3713D01* X14537Y3710D01* X14529Y3706D01* X14522Y3701D01* X14516Y3695D01* X14511Y3687D01* X14497Y3656D01* Y5303D01* X14499Y5299D01* X14505Y5292D01* X14513Y5287D01* X14520Y5283D01* X14529Y5281D01* X14537Y5280D01* X14546Y5281D01* X14555Y5283D01* X14563Y5286D01* X14570Y5291D01* X14576Y5297D01* X14581Y5304D01* X14585Y5312D01* X14587Y5320D01* X14588Y5329D01* X14588Y5338D01* X14586Y5346D01* X14582Y5354D01* X14570Y5378D01* X14560Y5404D01* X14553Y5430D01* X14548Y5456D01* X14545Y5483D01* X14545Y5511D01* X14547Y5538D01* X14552Y5564D01* X14559Y5590D01* X14568Y5616D01* X14580Y5640D01* X14583Y5649D01* X14585Y5657D01* X14585Y5666D01* X14584Y5674D01* X14582Y5683D01* X14578Y5690D01* X14573Y5697D01* X14566Y5703D01* X14559Y5708D01* X14551Y5711D01* X14542Y5713D01* X14534Y5714D01* X14525Y5713D01* X14517Y5710D01* X14509Y5706D01* X14502Y5701D01* X14497Y5695D01* Y7285D01* X14500Y7283D01* X14509Y7281D01* X14517Y7280D01* X14526Y7281D01* X14535Y7283D01* X14543Y7286D01* X14550Y7291D01* X14556Y7297D01* X14561Y7304D01* X14565Y7312D01* X14567Y7320D01* X14568Y7329D01* X14568Y7338D01* X14566Y7346D01* X14562Y7354D01* X14550Y7378D01* X14540Y7404D01* X14533Y7430D01* X14528Y7456D01* X14525Y7483D01* X14525Y7511D01* X14527Y7538D01* X14532Y7564D01* X14539Y7590D01* X14548Y7616D01* X14560Y7640D01* X14563Y7649D01* X14565Y7657D01* X14565Y7666D01* X14564Y7674D01* X14562Y7683D01* X14558Y7690D01* X14553Y7697D01* X14546Y7703D01* X14539Y7708D01* X14531Y7711D01* X14522Y7713D01* X14514Y7714D01* X14505Y7713D01* X14497Y7710D01* X14497Y7710D01* Y9280D01* X14497Y9280D01* X14506Y9281D01* X14515Y9283D01* X14523Y9286D01* X14530Y9291D01* X14536Y9297D01* X14541Y9304D01* X14545Y9312D01* X14547Y9320D01* X14548Y9329D01* X14548Y9338D01* X14546Y9346D01* X14542Y9354D01* X14530Y9378D01* X14520Y9404D01* X14513Y9430D01* X14508Y9456D01* X14505Y9483D01* X14505Y9511D01* X14507Y9538D01* X14512Y9564D01* X14519Y9590D01* X14528Y9616D01* X14540Y9640D01* X14543Y9649D01* X14545Y9657D01* X14545Y9666D01* X14544Y9674D01* X14542Y9683D01* X14538Y9690D01* X14533Y9697D01* X14526Y9703D01* X14519Y9708D01* X14511Y9711D01* X14502Y9713D01* X14497Y9714D01* Y11284D01* X14503Y11286D01* X14510Y11291D01* X14516Y11297D01* X14521Y11304D01* X14525Y11312D01* X14527Y11320D01* X14528Y11329D01* X14528Y11338D01* X14526Y11346D01* X14522Y11354D01* X14510Y11378D01* X14500Y11404D01* X14497Y11417D01* Y11583D01* X14499Y11590D01* X14508Y11616D01* X14520Y11640D01* X14523Y11649D01* X14525Y11657D01* X14525Y11666D01* X14524Y11674D01* X14522Y11683D01* X14518Y11690D01* X14513Y11697D01* X14506Y11703D01* X14499Y11708D01* X14497Y11709D01* Y13298D01* X14501Y13304D01* X14505Y13312D01* X14507Y13320D01* X14508Y13329D01* X14508Y13338D01* X14506Y13346D01* X14502Y13354D01* X14497Y13365D01* Y13634D01* X14500Y13640D01* X14503Y13649D01* X14505Y13657D01* X14505Y13666D01* X14504Y13674D01* X14502Y13683D01* X14498Y13690D01* X14497Y13692D01* Y19167D01* G37* G36* X14667Y40000D02*X14852D01* Y39696D01* X14850Y39701D01* X14844Y39707D01* X14836Y39712D01* X14829Y39716D01* X14820Y39718D01* X14812Y39719D01* X14803Y39719D01* X14794Y39717D01* X14786Y39713D01* X14779Y39708D01* X14773Y39702D01* X14768Y39695D01* X14764Y39687D01* X14762Y39679D01* X14761Y39670D01* X14761Y39661D01* X14763Y39653D01* X14767Y39645D01* X14779Y39621D01* X14789Y39595D01* X14796Y39569D01* X14801Y39543D01* X14804Y39516D01* X14804Y39489D01* X14802Y39462D01* X14797Y39435D01* X14790Y39409D01* X14781Y39383D01* X14769Y39359D01* X14766Y39351D01* X14764Y39342D01* X14764Y39333D01* X14765Y39325D01* X14767Y39317D01* X14771Y39309D01* X14776Y39302D01* X14783Y39296D01* X14790Y39291D01* X14798Y39288D01* X14807Y39286D01* X14815Y39285D01* X14824Y39286D01* X14832Y39289D01* X14840Y39293D01* X14847Y39298D01* X14852Y39304D01* Y37714D01* X14849Y37716D01* X14840Y37718D01* X14832Y37719D01* X14823Y37719D01* X14814Y37717D01* X14806Y37713D01* X14799Y37708D01* X14793Y37702D01* X14788Y37695D01* X14784Y37687D01* X14782Y37679D01* X14781Y37670D01* X14781Y37661D01* X14783Y37653D01* X14787Y37645D01* X14799Y37621D01* X14809Y37595D01* X14816Y37569D01* X14821Y37543D01* X14824Y37516D01* X14824Y37489D01* X14822Y37462D01* X14817Y37435D01* X14810Y37409D01* X14801Y37383D01* X14789Y37359D01* X14786Y37351D01* X14784Y37342D01* X14784Y37333D01* X14785Y37325D01* X14787Y37317D01* X14791Y37309D01* X14796Y37302D01* X14803Y37296D01* X14810Y37291D01* X14818Y37288D01* X14827Y37286D01* X14835Y37285D01* X14844Y37286D01* X14852Y37289D01* X14852Y37289D01* Y35719D01* X14852Y35719D01* X14843Y35719D01* X14834Y35717D01* X14826Y35713D01* X14819Y35708D01* X14813Y35702D01* X14808Y35695D01* X14804Y35687D01* X14802Y35679D01* X14801Y35670D01* X14801Y35661D01* X14803Y35653D01* X14807Y35645D01* X14819Y35621D01* X14829Y35595D01* X14836Y35569D01* X14841Y35543D01* X14844Y35516D01* X14844Y35489D01* X14842Y35462D01* X14837Y35435D01* X14830Y35409D01* X14821Y35383D01* X14809Y35359D01* X14806Y35351D01* X14804Y35342D01* X14804Y35333D01* X14805Y35325D01* X14807Y35317D01* X14811Y35309D01* X14816Y35302D01* X14823Y35296D01* X14830Y35291D01* X14838Y35288D01* X14847Y35286D01* X14852Y35286D01* Y33716D01* X14846Y33713D01* X14839Y33708D01* X14833Y33702D01* X14828Y33695D01* X14824Y33687D01* X14822Y33679D01* X14821Y33670D01* X14821Y33661D01* X14823Y33653D01* X14827Y33645D01* X14839Y33621D01* X14849Y33595D01* X14852Y33583D01* Y33416D01* X14850Y33409D01* X14841Y33383D01* X14829Y33359D01* X14826Y33351D01* X14824Y33342D01* X14824Y33333D01* X14825Y33325D01* X14827Y33317D01* X14831Y33309D01* X14836Y33302D01* X14843Y33296D01* X14850Y33291D01* X14852Y33290D01* Y31701D01* X14848Y31695D01* X14844Y31687D01* X14842Y31679D01* X14841Y31670D01* X14841Y31661D01* X14843Y31653D01* X14847Y31645D01* X14852Y31634D01* Y31365D01* X14849Y31359D01* X14846Y31351D01* X14844Y31342D01* X14844Y31333D01* X14845Y31325D01* X14847Y31317D01* X14851Y31309D01* X14852Y31307D01* Y25833D01* X14851Y25835D01* X14846Y25842D01* X14840Y25848D01* X14832Y25853D01* X14800Y25868D01* X14766Y25881D01* X14731Y25890D01* X14695Y25896D01* X14667Y25899D01* Y27102D01* X14682Y27104D01* X14718Y27111D01* X14752Y27121D01* X14786Y27134D01* X14818Y27150D01* X14826Y27155D01* X14832Y27161D01* X14837Y27168D01* X14841Y27175D01* X14843Y27184D01* X14844Y27193D01* X14844Y27201D01* X14841Y27210D01* X14838Y27218D01* X14833Y27225D01* X14827Y27231D01* X14820Y27236D01* X14812Y27240D01* X14804Y27243D01* X14795Y27243D01* X14786Y27243D01* X14778Y27241D01* X14770Y27237D01* X14746Y27225D01* X14720Y27215D01* X14694Y27208D01* X14668Y27203D01* X14667D01* Y27796D01* X14689Y27793D01* X14715Y27785D01* X14741Y27776D01* X14765Y27764D01* X14773Y27761D01* X14782Y27759D01* X14791Y27759D01* X14799Y27760D01* X14808Y27762D01* X14815Y27766D01* X14822Y27772D01* X14828Y27778D01* X14833Y27785D01* X14836Y27793D01* X14838Y27802D01* X14839Y27810D01* X14838Y27819D01* X14835Y27827D01* X14831Y27835D01* X14826Y27842D01* X14820Y27848D01* X14812Y27853D01* X14780Y27868D01* X14746Y27881D01* X14711Y27890D01* X14675Y27896D01* X14667Y27897D01* Y29105D01* X14698Y29111D01* X14732Y29121D01* X14766Y29134D01* X14798Y29150D01* X14806Y29155D01* X14812Y29161D01* X14817Y29168D01* X14821Y29175D01* X14823Y29184D01* X14824Y29193D01* X14824Y29201D01* X14821Y29210D01* X14818Y29218D01* X14813Y29225D01* X14807Y29231D01* X14800Y29236D01* X14792Y29240D01* X14784Y29243D01* X14775Y29243D01* X14766Y29243D01* X14758Y29241D01* X14750Y29237D01* X14726Y29225D01* X14700Y29215D01* X14674Y29208D01* X14667Y29206D01* Y29793D01* X14669Y29793D01* X14695Y29785D01* X14721Y29776D01* X14745Y29764D01* X14753Y29761D01* X14762Y29759D01* X14771Y29759D01* X14779Y29760D01* X14788Y29762D01* X14795Y29766D01* X14802Y29772D01* X14808Y29778D01* X14813Y29785D01* X14816Y29793D01* X14818Y29802D01* X14819Y29810D01* X14818Y29819D01* X14815Y29827D01* X14811Y29835D01* X14806Y29842D01* X14800Y29848D01* X14792Y29853D01* X14760Y29868D01* X14726Y29881D01* X14691Y29890D01* X14667Y29894D01* Y31109D01* X14678Y31111D01* X14712Y31121D01* X14746Y31134D01* X14778Y31150D01* X14786Y31155D01* X14792Y31161D01* X14797Y31168D01* X14801Y31175D01* X14803Y31184D01* X14804Y31193D01* X14804Y31201D01* X14801Y31210D01* X14798Y31218D01* X14793Y31225D01* X14787Y31231D01* X14780Y31236D01* X14772Y31240D01* X14764Y31243D01* X14755Y31243D01* X14746Y31243D01* X14738Y31241D01* X14730Y31237D01* X14706Y31225D01* X14680Y31215D01* X14667Y31212D01* Y31788D01* X14675Y31785D01* X14701Y31776D01* X14725Y31764D01* X14733Y31761D01* X14742Y31759D01* X14751Y31759D01* X14759Y31760D01* X14768Y31762D01* X14775Y31766D01* X14782Y31772D01* X14788Y31778D01* X14793Y31785D01* X14796Y31793D01* X14798Y31802D01* X14799Y31810D01* X14798Y31819D01* X14795Y31827D01* X14791Y31835D01* X14786Y31842D01* X14780Y31848D01* X14772Y31853D01* X14740Y31868D01* X14706Y31881D01* X14671Y31890D01* X14667Y31891D01* Y33113D01* X14692Y33121D01* X14726Y33134D01* X14758Y33150D01* X14766Y33155D01* X14772Y33161D01* X14777Y33168D01* X14781Y33175D01* X14783Y33184D01* X14784Y33193D01* X14784Y33201D01* X14781Y33210D01* X14778Y33218D01* X14773Y33225D01* X14767Y33231D01* X14760Y33236D01* X14752Y33240D01* X14744Y33243D01* X14735Y33243D01* X14726Y33243D01* X14718Y33241D01* X14710Y33237D01* X14686Y33225D01* X14667Y33218D01* Y33781D01* X14681Y33776D01* X14705Y33764D01* X14713Y33761D01* X14722Y33759D01* X14731Y33759D01* X14739Y33760D01* X14748Y33762D01* X14755Y33766D01* X14762Y33772D01* X14768Y33778D01* X14773Y33785D01* X14776Y33793D01* X14778Y33802D01* X14779Y33810D01* X14778Y33819D01* X14775Y33827D01* X14771Y33835D01* X14766Y33842D01* X14760Y33848D01* X14752Y33853D01* X14720Y33868D01* X14686Y33881D01* X14667Y33886D01* Y35119D01* X14672Y35121D01* X14706Y35134D01* X14738Y35150D01* X14746Y35155D01* X14752Y35161D01* X14757Y35168D01* X14761Y35175D01* X14763Y35184D01* X14764Y35193D01* X14764Y35201D01* X14761Y35210D01* X14758Y35218D01* X14753Y35225D01* X14747Y35231D01* X14740Y35236D01* X14732Y35240D01* X14724Y35243D01* X14715Y35243D01* X14706Y35243D01* X14698Y35241D01* X14690Y35237D01* X14667Y35226D01* Y35773D01* X14685Y35764D01* X14693Y35761D01* X14702Y35759D01* X14711Y35759D01* X14719Y35760D01* X14728Y35762D01* X14735Y35766D01* X14742Y35772D01* X14748Y35778D01* X14753Y35785D01* X14756Y35793D01* X14758Y35802D01* X14759Y35810D01* X14758Y35819D01* X14755Y35827D01* X14751Y35835D01* X14746Y35842D01* X14740Y35848D01* X14732Y35853D01* X14700Y35868D01* X14667Y35880D01* Y37126D01* X14686Y37134D01* X14718Y37150D01* X14726Y37155D01* X14732Y37161D01* X14737Y37168D01* X14741Y37175D01* X14743Y37184D01* X14744Y37193D01* X14744Y37201D01* X14741Y37210D01* X14738Y37218D01* X14733Y37225D01* X14727Y37231D01* X14720Y37236D01* X14712Y37240D01* X14704Y37243D01* X14695Y37243D01* X14686Y37243D01* X14678Y37241D01* X14670Y37237D01* X14667Y37236D01* Y37764D01* X14673Y37761D01* X14682Y37759D01* X14691Y37759D01* X14699Y37760D01* X14708Y37762D01* X14715Y37766D01* X14722Y37772D01* X14728Y37778D01* X14733Y37785D01* X14736Y37793D01* X14738Y37802D01* X14739Y37810D01* X14738Y37819D01* X14735Y37827D01* X14731Y37835D01* X14726Y37842D01* X14720Y37848D01* X14712Y37853D01* X14680Y37868D01* X14667Y37873D01* Y39134D01* X14698Y39150D01* X14706Y39155D01* X14712Y39161D01* X14717Y39168D01* X14721Y39175D01* X14723Y39184D01* X14724Y39193D01* X14724Y39201D01* X14721Y39210D01* X14718Y39218D01* X14713Y39225D01* X14707Y39231D01* X14700Y39236D01* X14692Y39240D01* X14684Y39243D01* X14675Y39243D01* X14667Y39243D01* Y39759D01* X14671Y39759D01* X14679Y39760D01* X14688Y39762D01* X14695Y39766D01* X14702Y39772D01* X14708Y39778D01* X14713Y39785D01* X14716Y39793D01* X14718Y39802D01* X14719Y39810D01* X14718Y39819D01* X14715Y39827D01* X14711Y39835D01* X14706Y39842D01* X14700Y39848D01* X14692Y39853D01* X14667Y39865D01* Y40000D01* G37* G36* X14852Y11893D02*X14835Y11896D01* X14799Y11899D01* X14763Y11899D01* X14727Y11895D01* X14691Y11889D01* X14667Y11882D01* Y13112D01* X14678Y13109D01* X14714Y13103D01* X14750Y13100D01* X14786Y13100D01* X14822Y13104D01* X14852Y13110D01* Y11893D01* G37* G36* Y13213D02*X14834Y13208D01* X14808Y13203D01* X14781Y13200D01* X14754Y13200D01* X14727Y13202D01* X14700Y13207D01* X14674Y13214D01* X14667Y13216D01* Y13783D01* X14669Y13784D01* X14695Y13791D01* X14721Y13796D01* X14748Y13799D01* X14775Y13799D01* X14802Y13797D01* X14829Y13793D01* X14852Y13786D01* Y13213D01* G37* G36* Y13890D02*X14851Y13890D01* X14815Y13896D01* X14779Y13899D01* X14743Y13899D01* X14707Y13895D01* X14671Y13889D01* X14667Y13887D01* Y15107D01* X14694Y15103D01* X14730Y15100D01* X14766Y15100D01* X14802Y15104D01* X14838Y15111D01* X14852Y15115D01* Y13890D01* G37* G36* Y15220D02*X14840Y15215D01* X14814Y15208D01* X14788Y15203D01* X14761Y15200D01* X14734Y15200D01* X14707Y15202D01* X14680Y15207D01* X14667Y15210D01* Y15789D01* X14675Y15791D01* X14701Y15796D01* X14728Y15799D01* X14755Y15799D01* X14782Y15797D01* X14809Y15793D01* X14835Y15785D01* X14852Y15779D01* Y15220D01* G37* G36* Y15884D02*X14831Y15890D01* X14795Y15896D01* X14759Y15899D01* X14723Y15899D01* X14687Y15895D01* X14667Y15892D01* Y17104D01* X14674Y17103D01* X14710Y17100D01* X14746Y17100D01* X14782Y17104D01* X14818Y17111D01* X14852Y17121D01* X14852D01* Y15884D01* G37* G36* Y17229D02*X14846Y17225D01* X14820Y17215D01* X14794Y17208D01* X14768Y17203D01* X14741Y17200D01* X14714Y17200D01* X14687Y17202D01* X14667Y17205D01* Y17794D01* X14681Y17796D01* X14708Y17799D01* X14735Y17799D01* X14762Y17797D01* X14789Y17793D01* X14815Y17785D01* X14841Y17776D01* X14852Y17771D01* Y17229D01* G37* G36* Y17878D02*X14846Y17881D01* X14811Y17890D01* X14775Y17896D01* X14739Y17899D01* X14703Y17899D01* X14667Y17895D01* Y19102D01* X14690Y19100D01* X14726Y19100D01* X14762Y19104D01* X14798Y19111D01* X14832Y19121D01* X14852Y19128D01* Y17878D01* G37* G36* Y19238D02*X14850Y19237D01* X14826Y19225D01* X14800Y19215D01* X14774Y19208D01* X14748Y19203D01* X14721Y19200D01* X14694Y19200D01* X14667Y19202D01* Y19797D01* X14688Y19799D01* X14715Y19799D01* X14742Y19797D01* X14769Y19793D01* X14795Y19785D01* X14821Y19776D01* X14845Y19764D01* X14852Y19762D01* Y19238D01* G37* G36* Y19871D02*X14826Y19881D01* X14791Y19890D01* X14755Y19896D01* X14719Y19899D01* X14683Y19899D01* X14667Y19897D01* Y21100D01* X14670Y21100D01* X14706Y21100D01* X14742Y21104D01* X14778Y21111D01* X14812Y21121D01* X14846Y21134D01* X14852Y21137D01* Y19871D01* G37* G36* Y21243D02*X14846Y21243D01* X14838Y21241D01* X14830Y21237D01* X14806Y21225D01* X14780Y21215D01* X14754Y21208D01* X14728Y21203D01* X14701Y21200D01* X14674Y21200D01* X14667Y21200D01* Y21799D01* X14668Y21799D01* X14695Y21799D01* X14722Y21797D01* X14749Y21793D01* X14775Y21785D01* X14801Y21776D01* X14825Y21764D01* X14833Y21761D01* X14842Y21759D01* X14851Y21759D01* X14852Y21759D01* Y21243D01* G37* G36* Y21862D02*X14840Y21868D01* X14806Y21881D01* X14771Y21890D01* X14735Y21896D01* X14699Y21899D01* X14667Y21899D01* Y23100D01* X14686Y23100D01* X14722Y23104D01* X14758Y23111D01* X14792Y23121D01* X14826Y23134D01* X14852Y23147D01* Y21862D01* G37* G36* Y23240D02*X14852Y23240D01* X14844Y23243D01* X14835Y23243D01* X14826Y23243D01* X14818Y23241D01* X14810Y23237D01* X14786Y23225D01* X14760Y23215D01* X14734Y23208D01* X14708Y23203D01* X14681Y23200D01* X14667Y23200D01* Y23799D01* X14675Y23799D01* X14702Y23797D01* X14729Y23793D01* X14755Y23785D01* X14781Y23776D01* X14805Y23764D01* X14813Y23761D01* X14822Y23759D01* X14831Y23759D01* X14839Y23760D01* X14848Y23762D01* X14852Y23765D01* Y23240D01* G37* G36* Y23853D02*X14852Y23853D01* X14820Y23868D01* X14786Y23881D01* X14751Y23890D01* X14715Y23896D01* X14679Y23899D01* X14667Y23899D01* Y25100D01* X14702Y25104D01* X14738Y25111D01* X14772Y25121D01* X14806Y25134D01* X14838Y25150D01* X14846Y25155D01* X14852Y25161D01* X14852Y25161D01* Y23853D01* G37* G36* Y25225D02*X14847Y25231D01* X14840Y25236D01* X14832Y25240D01* X14824Y25243D01* X14815Y25243D01* X14806Y25243D01* X14798Y25241D01* X14790Y25237D01* X14766Y25225D01* X14740Y25215D01* X14714Y25208D01* X14688Y25203D01* X14667Y25201D01* Y25798D01* X14682Y25797D01* X14709Y25793D01* X14735Y25785D01* X14761Y25776D01* X14785Y25764D01* X14793Y25761D01* X14802Y25759D01* X14811Y25759D01* X14819Y25760D01* X14828Y25762D01* X14835Y25766D01* X14842Y25772D01* X14848Y25778D01* X14852Y25784D01* Y25225D01* G37* G36* Y40000D02*X14992D01* Y29596D01* X14984Y29627D01* X14970Y29661D01* X14954Y29694D01* X14950Y29701D01* X14944Y29707D01* X14936Y29712D01* X14929Y29716D01* X14920Y29718D01* X14912Y29719D01* X14903Y29719D01* X14894Y29717D01* X14886Y29713D01* X14879Y29708D01* X14873Y29702D01* X14868Y29695D01* X14864Y29687D01* X14862Y29679D01* X14861Y29670D01* X14861Y29661D01* X14863Y29653D01* X14867Y29645D01* X14879Y29621D01* X14889Y29595D01* X14896Y29569D01* X14901Y29543D01* X14904Y29516D01* X14904Y29489D01* X14902Y29462D01* X14897Y29435D01* X14890Y29409D01* X14881Y29383D01* X14869Y29359D01* X14866Y29351D01* X14864Y29342D01* X14864Y29333D01* X14865Y29325D01* X14867Y29317D01* X14871Y29309D01* X14876Y29302D01* X14883Y29296D01* X14890Y29291D01* X14898Y29288D01* X14907Y29286D01* X14915Y29285D01* X14924Y29286D01* X14932Y29289D01* X14940Y29293D01* X14947Y29298D01* X14953Y29305D01* X14958Y29312D01* X14973Y29344D01* X14986Y29378D01* X14992Y29404D01* Y27656D01* X14990Y27661D01* X14974Y27694D01* X14970Y27701D01* X14964Y27707D01* X14956Y27712D01* X14949Y27716D01* X14940Y27718D01* X14932Y27719D01* X14923Y27719D01* X14914Y27717D01* X14906Y27713D01* X14899Y27708D01* X14893Y27702D01* X14888Y27695D01* X14884Y27687D01* X14882Y27679D01* X14881Y27670D01* X14881Y27661D01* X14883Y27653D01* X14887Y27645D01* X14899Y27621D01* X14909Y27595D01* X14916Y27569D01* X14921Y27543D01* X14924Y27516D01* X14924Y27489D01* X14922Y27462D01* X14917Y27435D01* X14910Y27409D01* X14901Y27383D01* X14889Y27359D01* X14886Y27351D01* X14884Y27342D01* X14884Y27333D01* X14885Y27325D01* X14887Y27317D01* X14891Y27309D01* X14896Y27302D01* X14903Y27296D01* X14910Y27291D01* X14918Y27288D01* X14927Y27286D01* X14935Y27285D01* X14944Y27286D01* X14952Y27289D01* X14960Y27293D01* X14967Y27298D01* X14973Y27305D01* X14978Y27312D01* X14992Y27343D01* Y25696D01* X14990Y25701D01* X14984Y25707D01* X14976Y25712D01* X14969Y25716D01* X14960Y25718D01* X14952Y25719D01* X14943Y25719D01* X14934Y25717D01* X14926Y25713D01* X14919Y25708D01* X14913Y25702D01* X14908Y25695D01* X14904Y25687D01* X14902Y25679D01* X14901Y25670D01* X14901Y25661D01* X14903Y25653D01* X14907Y25645D01* X14919Y25621D01* X14929Y25595D01* X14936Y25569D01* X14941Y25543D01* X14944Y25516D01* X14944Y25489D01* X14942Y25462D01* X14937Y25435D01* X14930Y25409D01* X14921Y25383D01* X14909Y25359D01* X14906Y25351D01* X14904Y25342D01* X14904Y25333D01* X14905Y25325D01* X14907Y25317D01* X14911Y25309D01* X14916Y25302D01* X14923Y25296D01* X14930Y25291D01* X14938Y25288D01* X14947Y25286D01* X14955Y25285D01* X14964Y25286D01* X14972Y25289D01* X14980Y25293D01* X14987Y25298D01* X14992Y25304D01* Y23714D01* X14989Y23716D01* X14980Y23718D01* X14972Y23719D01* X14963Y23719D01* X14954Y23717D01* X14946Y23713D01* X14939Y23708D01* X14933Y23702D01* X14928Y23695D01* X14924Y23687D01* X14922Y23679D01* X14921Y23670D01* X14921Y23661D01* X14923Y23653D01* X14927Y23645D01* X14939Y23621D01* X14949Y23595D01* X14956Y23569D01* X14961Y23543D01* X14964Y23516D01* X14964Y23489D01* X14962Y23462D01* X14957Y23435D01* X14950Y23409D01* X14941Y23383D01* X14929Y23359D01* X14926Y23351D01* X14924Y23342D01* X14924Y23333D01* X14925Y23325D01* X14927Y23317D01* X14931Y23309D01* X14936Y23302D01* X14943Y23296D01* X14950Y23291D01* X14958Y23288D01* X14967Y23286D01* X14975Y23285D01* X14984Y23286D01* X14992Y23289D01* X14992Y23289D01* Y21719D01* X14992Y21719D01* X14983Y21719D01* X14974Y21717D01* X14966Y21713D01* X14959Y21708D01* X14953Y21702D01* X14948Y21695D01* X14944Y21687D01* X14942Y21679D01* X14941Y21670D01* X14941Y21661D01* X14943Y21653D01* X14947Y21645D01* X14959Y21621D01* X14969Y21595D01* X14976Y21569D01* X14981Y21543D01* X14984Y21516D01* X14984Y21489D01* X14982Y21462D01* X14977Y21435D01* X14970Y21409D01* X14961Y21383D01* X14949Y21359D01* X14946Y21351D01* X14944Y21342D01* X14944Y21333D01* X14945Y21325D01* X14947Y21317D01* X14951Y21309D01* X14956Y21302D01* X14963Y21296D01* X14970Y21291D01* X14978Y21288D01* X14987Y21286D01* X14992Y21286D01* Y19716D01* X14986Y19713D01* X14979Y19708D01* X14973Y19702D01* X14968Y19695D01* X14964Y19687D01* X14962Y19679D01* X14961Y19670D01* X14961Y19661D01* X14963Y19653D01* X14967Y19645D01* X14979Y19621D01* X14989Y19595D01* X14992Y19583D01* Y19416D01* X14990Y19409D01* X14981Y19383D01* X14969Y19359D01* X14966Y19351D01* X14964Y19342D01* X14964Y19333D01* X14965Y19325D01* X14967Y19317D01* X14971Y19309D01* X14976Y19302D01* X14983Y19296D01* X14990Y19291D01* X14992Y19290D01* Y17701D01* X14988Y17695D01* X14984Y17687D01* X14982Y17679D01* X14981Y17670D01* X14981Y17661D01* X14983Y17653D01* X14987Y17645D01* X14992Y17634D01* Y17365D01* X14989Y17359D01* X14986Y17351D01* X14984Y17342D01* X14984Y17333D01* X14985Y17325D01* X14987Y17317D01* X14991Y17309D01* X14992Y17307D01* Y11833D01* X14991Y11835D01* X14986Y11842D01* X14980Y11848D01* X14972Y11853D01* X14940Y11868D01* X14906Y11881D01* X14871Y11890D01* X14852Y11893D01* Y13110D01* X14858Y13111D01* X14892Y13121D01* X14926Y13134D01* X14958Y13150D01* X14966Y13155D01* X14972Y13161D01* X14977Y13168D01* X14981Y13175D01* X14983Y13184D01* X14984Y13193D01* X14984Y13201D01* X14981Y13210D01* X14978Y13218D01* X14973Y13225D01* X14967Y13231D01* X14960Y13236D01* X14952Y13240D01* X14944Y13243D01* X14935Y13243D01* X14926Y13243D01* X14918Y13241D01* X14910Y13237D01* X14886Y13225D01* X14860Y13215D01* X14852Y13213D01* Y13786D01* X14855Y13785D01* X14881Y13776D01* X14905Y13764D01* X14913Y13761D01* X14922Y13759D01* X14931Y13759D01* X14939Y13760D01* X14948Y13762D01* X14955Y13766D01* X14962Y13772D01* X14968Y13778D01* X14973Y13785D01* X14976Y13793D01* X14978Y13802D01* X14979Y13810D01* X14978Y13819D01* X14975Y13827D01* X14971Y13835D01* X14966Y13842D01* X14960Y13848D01* X14952Y13853D01* X14920Y13868D01* X14886Y13881D01* X14852Y13890D01* Y15115D01* X14872Y15121D01* X14906Y15134D01* X14938Y15150D01* X14946Y15155D01* X14952Y15161D01* X14957Y15168D01* X14961Y15175D01* X14963Y15184D01* X14964Y15193D01* X14964Y15201D01* X14961Y15210D01* X14958Y15218D01* X14953Y15225D01* X14947Y15231D01* X14940Y15236D01* X14932Y15240D01* X14924Y15243D01* X14915Y15243D01* X14906Y15243D01* X14898Y15241D01* X14890Y15237D01* X14866Y15225D01* X14852Y15220D01* Y15779D01* X14861Y15776D01* X14885Y15764D01* X14893Y15761D01* X14902Y15759D01* X14911Y15759D01* X14919Y15760D01* X14928Y15762D01* X14935Y15766D01* X14942Y15772D01* X14948Y15778D01* X14953Y15785D01* X14956Y15793D01* X14958Y15802D01* X14959Y15810D01* X14958Y15819D01* X14955Y15827D01* X14951Y15835D01* X14946Y15842D01* X14940Y15848D01* X14932Y15853D01* X14900Y15868D01* X14866Y15881D01* X14852Y15884D01* Y17121D01* X14886Y17134D01* X14918Y17150D01* X14926Y17155D01* X14932Y17161D01* X14937Y17168D01* X14941Y17175D01* X14943Y17184D01* X14944Y17193D01* X14944Y17201D01* X14941Y17210D01* X14938Y17218D01* X14933Y17225D01* X14927Y17231D01* X14920Y17236D01* X14912Y17240D01* X14904Y17243D01* X14895Y17243D01* X14886Y17243D01* X14878Y17241D01* X14870Y17237D01* X14852Y17229D01* Y17771D01* X14865Y17764D01* X14873Y17761D01* X14882Y17759D01* X14891Y17759D01* X14899Y17760D01* X14908Y17762D01* X14915Y17766D01* X14922Y17772D01* X14928Y17778D01* X14933Y17785D01* X14936Y17793D01* X14938Y17802D01* X14939Y17810D01* X14938Y17819D01* X14935Y17827D01* X14931Y17835D01* X14926Y17842D01* X14920Y17848D01* X14912Y17853D01* X14880Y17868D01* X14852Y17878D01* Y19128D01* X14866Y19134D01* X14898Y19150D01* X14906Y19155D01* X14912Y19161D01* X14917Y19168D01* X14921Y19175D01* X14923Y19184D01* X14924Y19193D01* X14924Y19201D01* X14921Y19210D01* X14918Y19218D01* X14913Y19225D01* X14907Y19231D01* X14900Y19236D01* X14892Y19240D01* X14884Y19243D01* X14875Y19243D01* X14866Y19243D01* X14858Y19241D01* X14852Y19238D01* Y19762D01* X14853Y19761D01* X14862Y19759D01* X14871Y19759D01* X14879Y19760D01* X14888Y19762D01* X14895Y19766D01* X14902Y19772D01* X14908Y19778D01* X14913Y19785D01* X14916Y19793D01* X14918Y19802D01* X14919Y19810D01* X14918Y19819D01* X14915Y19827D01* X14911Y19835D01* X14906Y19842D01* X14900Y19848D01* X14892Y19853D01* X14860Y19868D01* X14852Y19871D01* Y21137D01* X14878Y21150D01* X14886Y21155D01* X14892Y21161D01* X14897Y21168D01* X14901Y21175D01* X14903Y21184D01* X14904Y21193D01* X14904Y21201D01* X14901Y21210D01* X14898Y21218D01* X14893Y21225D01* X14887Y21231D01* X14880Y21236D01* X14872Y21240D01* X14864Y21243D01* X14855Y21243D01* X14852Y21243D01* Y21759D01* X14859Y21760D01* X14868Y21762D01* X14875Y21766D01* X14882Y21772D01* X14888Y21778D01* X14893Y21785D01* X14896Y21793D01* X14898Y21802D01* X14899Y21810D01* X14898Y21819D01* X14895Y21827D01* X14891Y21835D01* X14886Y21842D01* X14880Y21848D01* X14872Y21853D01* X14852Y21862D01* Y23147D01* X14858Y23150D01* X14866Y23155D01* X14872Y23161D01* X14877Y23168D01* X14881Y23175D01* X14883Y23184D01* X14884Y23193D01* X14884Y23201D01* X14881Y23210D01* X14878Y23218D01* X14873Y23225D01* X14867Y23231D01* X14860Y23236D01* X14852Y23240D01* Y23765D01* X14855Y23766D01* X14862Y23772D01* X14868Y23778D01* X14873Y23785D01* X14876Y23793D01* X14878Y23802D01* X14879Y23810D01* X14878Y23819D01* X14875Y23827D01* X14871Y23835D01* X14866Y23842D01* X14860Y23848D01* X14852Y23853D01* Y25161D01* X14857Y25168D01* X14861Y25175D01* X14863Y25184D01* X14864Y25193D01* X14864Y25201D01* X14861Y25210D01* X14858Y25218D01* X14853Y25225D01* X14852Y25225D01* Y25784D01* X14853Y25785D01* X14856Y25793D01* X14858Y25802D01* X14859Y25810D01* X14858Y25819D01* X14855Y25827D01* X14852Y25833D01* Y31307D01* X14856Y31302D01* X14863Y31296D01* X14870Y31291D01* X14878Y31288D01* X14887Y31286D01* X14895Y31285D01* X14904Y31286D01* X14912Y31289D01* X14920Y31293D01* X14927Y31298D01* X14933Y31305D01* X14938Y31312D01* X14953Y31344D01* X14966Y31378D01* X14975Y31413D01* X14981Y31449D01* X14984Y31485D01* X14984Y31521D01* X14980Y31557D01* X14974Y31593D01* X14964Y31627D01* X14950Y31661D01* X14934Y31694D01* X14930Y31701D01* X14924Y31707D01* X14916Y31712D01* X14909Y31716D01* X14900Y31718D01* X14892Y31719D01* X14883Y31719D01* X14874Y31717D01* X14866Y31713D01* X14859Y31708D01* X14853Y31702D01* X14852Y31701D01* Y33290D01* X14858Y33288D01* X14867Y33286D01* X14875Y33285D01* X14884Y33286D01* X14892Y33289D01* X14900Y33293D01* X14907Y33298D01* X14913Y33305D01* X14918Y33312D01* X14933Y33344D01* X14946Y33378D01* X14955Y33413D01* X14961Y33449D01* X14964Y33485D01* X14964Y33521D01* X14960Y33557D01* X14954Y33593D01* X14944Y33627D01* X14930Y33661D01* X14914Y33694D01* X14910Y33701D01* X14904Y33707D01* X14896Y33712D01* X14889Y33716D01* X14880Y33718D01* X14872Y33719D01* X14863Y33719D01* X14854Y33717D01* X14852Y33716D01* Y35286D01* X14855Y35285D01* X14864Y35286D01* X14872Y35289D01* X14880Y35293D01* X14887Y35298D01* X14893Y35305D01* X14898Y35312D01* X14913Y35344D01* X14926Y35378D01* X14935Y35413D01* X14941Y35449D01* X14944Y35485D01* X14944Y35521D01* X14940Y35557D01* X14934Y35593D01* X14924Y35627D01* X14910Y35661D01* X14894Y35694D01* X14890Y35701D01* X14884Y35707D01* X14876Y35712D01* X14869Y35716D01* X14860Y35718D01* X14852Y35719D01* Y37289D01* X14860Y37293D01* X14867Y37298D01* X14873Y37305D01* X14878Y37312D01* X14893Y37344D01* X14906Y37378D01* X14915Y37413D01* X14921Y37449D01* X14924Y37485D01* X14924Y37521D01* X14920Y37557D01* X14914Y37593D01* X14904Y37627D01* X14890Y37661D01* X14874Y37694D01* X14870Y37701D01* X14864Y37707D01* X14856Y37712D01* X14852Y37714D01* Y39304D01* X14853Y39305D01* X14858Y39312D01* X14873Y39344D01* X14886Y39378D01* X14895Y39413D01* X14901Y39449D01* X14904Y39485D01* X14904Y39521D01* X14900Y39557D01* X14894Y39593D01* X14884Y39627D01* X14870Y39661D01* X14854Y39694D01* X14852Y39696D01* Y40000D01* G37* G36* Y33583D02*X14856Y33569D01* X14861Y33543D01* X14864Y33516D01* X14864Y33489D01* X14862Y33462D01* X14857Y33435D01* X14852Y33416D01* Y33583D01* G37* G36* Y31634D02*X14859Y31621D01* X14869Y31595D01* X14876Y31569D01* X14881Y31543D01* X14884Y31516D01* X14884Y31489D01* X14882Y31462D01* X14877Y31435D01* X14870Y31409D01* X14861Y31383D01* X14852Y31365D01* Y31634D01* G37* G36* X14992Y0D02*X14667D01* Y1791D01* X14668Y1790D01* X14671Y1782D01* X14676Y1774D01* X14682Y1768D01* X14689Y1763D01* X14697Y1759D01* X14705Y1757D01* X14714Y1756D01* X14723Y1756D01* X14731Y1758D01* X14739Y1762D01* X14763Y1774D01* X14789Y1784D01* X14815Y1791D01* X14841Y1796D01* X14868Y1799D01* X14895Y1799D01* X14922Y1797D01* X14949Y1793D01* X14975Y1785D01* X14992Y1779D01* Y1220D01* X14980Y1215D01* X14954Y1208D01* X14928Y1203D01* X14901Y1200D01* X14874Y1200D01* X14847Y1202D01* X14820Y1207D01* X14794Y1214D01* X14768Y1223D01* X14744Y1235D01* X14736Y1238D01* X14727Y1240D01* X14718Y1240D01* X14710Y1239D01* X14701Y1237D01* X14694Y1233D01* X14687Y1228D01* X14681Y1221D01* X14676Y1214D01* X14673Y1206D01* X14671Y1197D01* X14670Y1189D01* X14671Y1180D01* X14674Y1172D01* X14678Y1164D01* X14683Y1157D01* X14689Y1151D01* X14697Y1146D01* X14729Y1131D01* X14763Y1118D01* X14798Y1109D01* X14834Y1103D01* X14870Y1100D01* X14906Y1100D01* X14942Y1104D01* X14978Y1111D01* X14992Y1115D01* Y0D01* G37* G36* Y1884D02*X14971Y1890D01* X14935Y1896D01* X14899Y1899D01* X14863Y1899D01* X14827Y1895D01* X14791Y1889D01* X14757Y1879D01* X14723Y1866D01* X14691Y1849D01* X14683Y1845D01* X14677Y1839D01* X14672Y1832D01* X14668Y1824D01* X14667Y1821D01* Y3153D01* X14669Y3151D01* X14677Y3146D01* X14709Y3131D01* X14743Y3118D01* X14778Y3109D01* X14814Y3103D01* X14850Y3100D01* X14886Y3100D01* X14922Y3104D01* X14958Y3111D01* X14992Y3121D01* X14992D01* Y1884D01* G37* G36* Y3229D02*X14986Y3225D01* X14960Y3215D01* X14934Y3208D01* X14908Y3203D01* X14881Y3200D01* X14854Y3200D01* X14827Y3202D01* X14800Y3207D01* X14774Y3214D01* X14748Y3223D01* X14724Y3235D01* X14716Y3238D01* X14707Y3240D01* X14698Y3240D01* X14690Y3239D01* X14681Y3237D01* X14674Y3233D01* X14667Y3228D01* Y3764D01* X14669Y3763D01* X14677Y3759D01* X14685Y3757D01* X14694Y3756D01* X14703Y3756D01* X14711Y3758D01* X14719Y3762D01* X14743Y3774D01* X14769Y3784D01* X14795Y3791D01* X14821Y3796D01* X14848Y3799D01* X14875Y3799D01* X14902Y3797D01* X14929Y3793D01* X14955Y3785D01* X14981Y3776D01* X14992Y3771D01* Y3229D01* G37* G36* Y3878D02*X14986Y3881D01* X14951Y3890D01* X14915Y3896D01* X14879Y3899D01* X14843Y3899D01* X14807Y3895D01* X14771Y3889D01* X14737Y3879D01* X14703Y3866D01* X14671Y3849D01* X14667Y3847D01* Y5141D01* X14689Y5131D01* X14723Y5118D01* X14758Y5109D01* X14794Y5103D01* X14830Y5100D01* X14866Y5100D01* X14902Y5104D01* X14938Y5111D01* X14972Y5121D01* X14992Y5128D01* Y3878D01* G37* G36* Y5238D02*X14990Y5237D01* X14966Y5225D01* X14940Y5215D01* X14914Y5208D01* X14888Y5203D01* X14861Y5200D01* X14834Y5200D01* X14807Y5202D01* X14780Y5207D01* X14754Y5214D01* X14728Y5223D01* X14704Y5235D01* X14696Y5238D01* X14687Y5240D01* X14678Y5240D01* X14670Y5239D01* X14667Y5239D01* Y5756D01* X14674Y5756D01* X14683Y5756D01* X14691Y5758D01* X14699Y5762D01* X14723Y5774D01* X14749Y5784D01* X14775Y5791D01* X14801Y5796D01* X14828Y5799D01* X14855Y5799D01* X14882Y5797D01* X14909Y5793D01* X14935Y5785D01* X14961Y5776D01* X14985Y5764D01* X14992Y5762D01* Y5238D01* G37* G36* Y5871D02*X14966Y5881D01* X14931Y5890D01* X14895Y5896D01* X14859Y5899D01* X14823Y5899D01* X14787Y5895D01* X14751Y5889D01* X14717Y5879D01* X14683Y5866D01* X14667Y5858D01* Y7132D01* X14669Y7131D01* X14703Y7118D01* X14738Y7109D01* X14774Y7103D01* X14810Y7100D01* X14846Y7100D01* X14882Y7104D01* X14918Y7111D01* X14952Y7121D01* X14986Y7134D01* X14992Y7137D01* Y5871D01* G37* G36* Y7243D02*X14986Y7243D01* X14978Y7241D01* X14970Y7237D01* X14946Y7225D01* X14920Y7215D01* X14894Y7208D01* X14868Y7203D01* X14841Y7200D01* X14814Y7200D01* X14787Y7202D01* X14760Y7207D01* X14734Y7214D01* X14708Y7223D01* X14684Y7235D01* X14676Y7238D01* X14667Y7240D01* Y7757D01* X14671Y7758D01* X14679Y7762D01* X14703Y7774D01* X14729Y7784D01* X14755Y7791D01* X14781Y7796D01* X14808Y7799D01* X14835Y7799D01* X14862Y7797D01* X14889Y7793D01* X14915Y7785D01* X14941Y7776D01* X14965Y7764D01* X14973Y7761D01* X14982Y7759D01* X14991Y7759D01* X14992Y7759D01* Y7243D01* G37* G36* Y7862D02*X14980Y7868D01* X14946Y7881D01* X14911Y7890D01* X14875Y7896D01* X14839Y7899D01* X14803Y7899D01* X14767Y7895D01* X14731Y7889D01* X14697Y7879D01* X14667Y7867D01* Y9124D01* X14683Y9118D01* X14718Y9109D01* X14754Y9103D01* X14790Y9100D01* X14826Y9100D01* X14862Y9104D01* X14898Y9111D01* X14932Y9121D01* X14966Y9134D01* X14992Y9147D01* Y7862D01* G37* G36* Y9240D02*X14992Y9240D01* X14984Y9243D01* X14975Y9243D01* X14966Y9243D01* X14958Y9241D01* X14950Y9237D01* X14926Y9225D01* X14900Y9215D01* X14874Y9208D01* X14848Y9203D01* X14821Y9200D01* X14794Y9200D01* X14767Y9202D01* X14740Y9207D01* X14714Y9214D01* X14688Y9223D01* X14667Y9233D01* Y9766D01* X14683Y9774D01* X14709Y9784D01* X14735Y9791D01* X14761Y9796D01* X14788Y9799D01* X14815Y9799D01* X14842Y9797D01* X14869Y9793D01* X14895Y9785D01* X14921Y9776D01* X14945Y9764D01* X14953Y9761D01* X14962Y9759D01* X14971Y9759D01* X14979Y9760D01* X14988Y9762D01* X14992Y9765D01* Y9240D01* G37* G36* Y9853D02*X14992Y9853D01* X14960Y9868D01* X14926Y9881D01* X14891Y9890D01* X14855Y9896D01* X14819Y9899D01* X14783Y9899D01* X14747Y9895D01* X14711Y9889D01* X14677Y9879D01* X14667Y9875D01* Y11117D01* X14698Y11109D01* X14734Y11103D01* X14770Y11100D01* X14806Y11100D01* X14842Y11104D01* X14878Y11111D01* X14912Y11121D01* X14946Y11134D01* X14978Y11150D01* X14986Y11155D01* X14992Y11161D01* X14992Y11161D01* Y9853D01* G37* G36* Y11225D02*X14987Y11231D01* X14980Y11236D01* X14972Y11240D01* X14964Y11243D01* X14955Y11243D01* X14946Y11243D01* X14938Y11241D01* X14930Y11237D01* X14906Y11225D01* X14880Y11215D01* X14854Y11208D01* X14828Y11203D01* X14801Y11200D01* X14774Y11200D01* X14747Y11202D01* X14720Y11207D01* X14694Y11214D01* X14668Y11223D01* X14667Y11223D01* Y11776D01* X14689Y11784D01* X14715Y11791D01* X14741Y11796D01* X14768Y11799D01* X14795Y11799D01* X14822Y11797D01* X14849Y11793D01* X14875Y11785D01* X14901Y11776D01* X14925Y11764D01* X14933Y11761D01* X14942Y11759D01* X14951Y11759D01* X14959Y11760D01* X14968Y11762D01* X14975Y11766D01* X14982Y11772D01* X14988Y11778D01* X14992Y11784D01* Y11225D01* G37* G36* Y40000D02*X15072D01* Y21596D01* X15064Y21627D01* X15050Y21661D01* X15034Y21694D01* X15030Y21701D01* X15024Y21707D01* X15016Y21712D01* X15009Y21716D01* X15000Y21718D01* X14992Y21719D01* Y23289D01* X15000Y23293D01* X15007Y23298D01* X15013Y23305D01* X15018Y23312D01* X15033Y23344D01* X15046Y23378D01* X15055Y23413D01* X15061Y23449D01* X15064Y23485D01* X15064Y23521D01* X15060Y23557D01* X15054Y23593D01* X15044Y23627D01* X15030Y23661D01* X15014Y23694D01* X15010Y23701D01* X15004Y23707D01* X14996Y23712D01* X14992Y23714D01* Y25304D01* X14993Y25305D01* X14998Y25312D01* X15013Y25344D01* X15026Y25378D01* X15035Y25413D01* X15041Y25449D01* X15044Y25485D01* X15044Y25521D01* X15040Y25557D01* X15034Y25593D01* X15024Y25627D01* X15010Y25661D01* X14994Y25694D01* X14992Y25696D01* Y27343D01* X14993Y27344D01* X15006Y27378D01* X15015Y27413D01* X15021Y27449D01* X15024Y27485D01* X15024Y27521D01* X15020Y27557D01* X15014Y27593D01* X15004Y27627D01* X14992Y27656D01* Y29404D01* X14995Y29413D01* X15001Y29449D01* X15004Y29485D01* X15004Y29521D01* X15000Y29557D01* X14994Y29593D01* X14992Y29596D01* Y40000D01* G37* G36* X15072Y0D02*X14992D01* Y1115D01* X15012Y1121D01* X15046Y1134D01* X15072Y1147D01* Y0D01* G37* G36* Y1240D02*X15072Y1240D01* X15064Y1243D01* X15055Y1243D01* X15046Y1243D01* X15038Y1241D01* X15030Y1237D01* X15006Y1225D01* X14992Y1220D01* Y1779D01* X15001Y1776D01* X15025Y1764D01* X15033Y1761D01* X15042Y1759D01* X15051Y1759D01* X15059Y1760D01* X15068Y1762D01* X15072Y1765D01* Y1240D01* G37* G36* Y1853D02*X15072Y1853D01* X15040Y1868D01* X15006Y1881D01* X14992Y1884D01* Y3121D01* X15026Y3134D01* X15058Y3150D01* X15066Y3155D01* X15072Y3161D01* X15072Y3161D01* Y1853D01* G37* G36* Y3225D02*X15067Y3231D01* X15060Y3236D01* X15052Y3240D01* X15044Y3243D01* X15035Y3243D01* X15026Y3243D01* X15018Y3241D01* X15010Y3237D01* X14992Y3229D01* Y3771D01* X15005Y3764D01* X15013Y3761D01* X15022Y3759D01* X15031Y3759D01* X15039Y3760D01* X15048Y3762D01* X15055Y3766D01* X15062Y3772D01* X15068Y3778D01* X15072Y3784D01* Y3225D01* G37* G36* Y3833D02*X15071Y3835D01* X15066Y3842D01* X15060Y3848D01* X15052Y3853D01* X15020Y3868D01* X14992Y3878D01* Y5128D01* X15006Y5134D01* X15038Y5150D01* X15046Y5155D01* X15052Y5161D01* X15057Y5168D01* X15061Y5175D01* X15063Y5184D01* X15064Y5193D01* X15064Y5201D01* X15061Y5210D01* X15058Y5218D01* X15053Y5225D01* X15047Y5231D01* X15040Y5236D01* X15032Y5240D01* X15024Y5243D01* X15015Y5243D01* X15006Y5243D01* X14998Y5241D01* X14992Y5238D01* Y5762D01* X14993Y5761D01* X15002Y5759D01* X15011Y5759D01* X15019Y5760D01* X15028Y5762D01* X15035Y5766D01* X15042Y5772D01* X15048Y5778D01* X15053Y5785D01* X15056Y5793D01* X15058Y5802D01* X15059Y5810D01* X15058Y5819D01* X15055Y5827D01* X15051Y5835D01* X15046Y5842D01* X15040Y5848D01* X15032Y5853D01* X15000Y5868D01* X14992Y5871D01* Y7137D01* X15018Y7150D01* X15026Y7155D01* X15032Y7161D01* X15037Y7168D01* X15041Y7175D01* X15043Y7184D01* X15044Y7193D01* X15044Y7201D01* X15041Y7210D01* X15038Y7218D01* X15033Y7225D01* X15027Y7231D01* X15020Y7236D01* X15012Y7240D01* X15004Y7243D01* X14995Y7243D01* X14992Y7243D01* Y7759D01* X14999Y7760D01* X15008Y7762D01* X15015Y7766D01* X15022Y7772D01* X15028Y7778D01* X15033Y7785D01* X15036Y7793D01* X15038Y7802D01* X15039Y7810D01* X15038Y7819D01* X15035Y7827D01* X15031Y7835D01* X15026Y7842D01* X15020Y7848D01* X15012Y7853D01* X14992Y7862D01* Y9147D01* X14998Y9150D01* X15006Y9155D01* X15012Y9161D01* X15017Y9168D01* X15021Y9175D01* X15023Y9184D01* X15024Y9193D01* X15024Y9201D01* X15021Y9210D01* X15018Y9218D01* X15013Y9225D01* X15007Y9231D01* X15000Y9236D01* X14992Y9240D01* Y9765D01* X14995Y9766D01* X15002Y9772D01* X15008Y9778D01* X15013Y9785D01* X15016Y9793D01* X15018Y9802D01* X15019Y9810D01* X15018Y9819D01* X15015Y9827D01* X15011Y9835D01* X15006Y9842D01* X15000Y9848D01* X14992Y9853D01* Y11161D01* X14997Y11168D01* X15001Y11175D01* X15003Y11184D01* X15004Y11193D01* X15004Y11201D01* X15001Y11210D01* X14998Y11218D01* X14993Y11225D01* X14992Y11225D01* Y11784D01* X14993Y11785D01* X14996Y11793D01* X14998Y11802D01* X14999Y11810D01* X14998Y11819D01* X14995Y11827D01* X14992Y11833D01* Y17307D01* X14996Y17302D01* X15003Y17296D01* X15010Y17291D01* X15018Y17288D01* X15027Y17286D01* X15035Y17285D01* X15044Y17286D01* X15052Y17289D01* X15060Y17293D01* X15067Y17298D01* X15072Y17304D01* Y15714D01* X15069Y15716D01* X15060Y15718D01* X15052Y15719D01* X15043Y15719D01* X15034Y15717D01* X15026Y15713D01* X15019Y15708D01* X15013Y15702D01* X15008Y15695D01* X15004Y15687D01* X15002Y15679D01* X15001Y15670D01* X15001Y15661D01* X15003Y15653D01* X15007Y15645D01* X15019Y15621D01* X15029Y15595D01* X15036Y15569D01* X15041Y15543D01* X15044Y15516D01* X15044Y15489D01* X15042Y15462D01* X15037Y15435D01* X15030Y15409D01* X15021Y15383D01* X15009Y15359D01* X15006Y15351D01* X15004Y15342D01* X15004Y15333D01* X15005Y15325D01* X15007Y15317D01* X15011Y15309D01* X15016Y15302D01* X15023Y15296D01* X15030Y15291D01* X15038Y15288D01* X15047Y15286D01* X15055Y15285D01* X15064Y15286D01* X15072Y15289D01* X15072Y15289D01* Y13719D01* X15072Y13719D01* X15063Y13719D01* X15054Y13717D01* X15046Y13713D01* X15039Y13708D01* X15033Y13702D01* X15028Y13695D01* X15024Y13687D01* X15022Y13679D01* X15021Y13670D01* X15021Y13661D01* X15023Y13653D01* X15027Y13645D01* X15039Y13621D01* X15049Y13595D01* X15056Y13569D01* X15061Y13543D01* X15064Y13516D01* X15064Y13489D01* X15062Y13462D01* X15057Y13435D01* X15050Y13409D01* X15041Y13383D01* X15029Y13359D01* X15026Y13351D01* X15024Y13342D01* X15024Y13333D01* X15025Y13325D01* X15027Y13317D01* X15031Y13309D01* X15036Y13302D01* X15043Y13296D01* X15050Y13291D01* X15058Y13288D01* X15067Y13286D01* X15072Y13286D01* Y11716D01* X15066Y11713D01* X15059Y11708D01* X15053Y11702D01* X15048Y11695D01* X15044Y11687D01* X15042Y11679D01* X15041Y11670D01* X15041Y11661D01* X15043Y11653D01* X15047Y11645D01* X15059Y11621D01* X15069Y11595D01* X15072Y11583D01* Y11416D01* X15070Y11409D01* X15061Y11383D01* X15049Y11359D01* X15046Y11351D01* X15044Y11342D01* X15044Y11333D01* X15045Y11325D01* X15047Y11317D01* X15051Y11309D01* X15056Y11302D01* X15063Y11296D01* X15070Y11291D01* X15072Y11290D01* Y9701D01* X15068Y9695D01* X15064Y9687D01* X15062Y9679D01* X15061Y9670D01* X15061Y9661D01* X15063Y9653D01* X15067Y9645D01* X15072Y9634D01* Y9365D01* X15069Y9359D01* X15066Y9351D01* X15064Y9342D01* X15064Y9333D01* X15065Y9325D01* X15067Y9317D01* X15071Y9309D01* X15072Y9307D01* Y3833D01* G37* G36* Y17696D02*X15070Y17701D01* X15064Y17707D01* X15056Y17712D01* X15049Y17716D01* X15040Y17718D01* X15032Y17719D01* X15023Y17719D01* X15014Y17717D01* X15006Y17713D01* X14999Y17708D01* X14993Y17702D01* X14992Y17701D01* Y19290D01* X14998Y19288D01* X15007Y19286D01* X15015Y19285D01* X15024Y19286D01* X15032Y19289D01* X15040Y19293D01* X15047Y19298D01* X15053Y19305D01* X15058Y19312D01* X15072Y19343D01* Y17696D01* G37* G36* Y19656D02*X15070Y19661D01* X15054Y19694D01* X15050Y19701D01* X15044Y19707D01* X15036Y19712D01* X15029Y19716D01* X15020Y19718D01* X15012Y19719D01* X15003Y19719D01* X14994Y19717D01* X14992Y19716D01* Y21286D01* X14995Y21285D01* X15004Y21286D01* X15012Y21289D01* X15020Y21293D01* X15027Y21298D01* X15033Y21305D01* X15038Y21312D01* X15053Y21344D01* X15066Y21378D01* X15072Y21404D01* Y19656D01* G37* G36* Y40000D02*X15152D01* Y13596D01* X15144Y13627D01* X15130Y13661D01* X15114Y13694D01* X15110Y13701D01* X15104Y13707D01* X15096Y13712D01* X15089Y13716D01* X15080Y13718D01* X15072Y13719D01* Y15289D01* X15080Y15293D01* X15087Y15298D01* X15093Y15305D01* X15098Y15312D01* X15113Y15344D01* X15126Y15378D01* X15135Y15413D01* X15141Y15449D01* X15144Y15485D01* X15144Y15521D01* X15140Y15557D01* X15134Y15593D01* X15124Y15627D01* X15110Y15661D01* X15094Y15694D01* X15090Y15701D01* X15084Y15707D01* X15076Y15712D01* X15072Y15714D01* Y17304D01* X15073Y17305D01* X15078Y17312D01* X15093Y17344D01* X15106Y17378D01* X15115Y17413D01* X15121Y17449D01* X15124Y17485D01* X15124Y17521D01* X15120Y17557D01* X15114Y17593D01* X15104Y17627D01* X15090Y17661D01* X15074Y17694D01* X15072Y17696D01* Y19343D01* X15073Y19344D01* X15086Y19378D01* X15095Y19413D01* X15101Y19449D01* X15104Y19485D01* X15104Y19521D01* X15100Y19557D01* X15094Y19593D01* X15084Y19627D01* X15072Y19656D01* Y21404D01* X15075Y21413D01* X15081Y21449D01* X15084Y21485D01* X15084Y21521D01* X15080Y21557D01* X15074Y21593D01* X15072Y21596D01* Y40000D01* G37* G36* X15152Y0D02*X15072D01* Y1147D01* X15078Y1150D01* X15086Y1155D01* X15092Y1161D01* X15097Y1168D01* X15101Y1175D01* X15103Y1184D01* X15104Y1193D01* X15104Y1201D01* X15101Y1210D01* X15098Y1218D01* X15093Y1225D01* X15087Y1231D01* X15080Y1236D01* X15072Y1240D01* Y1765D01* X15075Y1766D01* X15082Y1772D01* X15088Y1778D01* X15093Y1785D01* X15096Y1793D01* X15098Y1802D01* X15099Y1810D01* X15098Y1819D01* X15095Y1827D01* X15091Y1835D01* X15086Y1842D01* X15080Y1848D01* X15072Y1853D01* Y3161D01* X15077Y3168D01* X15081Y3175D01* X15083Y3184D01* X15084Y3193D01* X15084Y3201D01* X15081Y3210D01* X15078Y3218D01* X15073Y3225D01* X15072Y3225D01* Y3784D01* X15073Y3785D01* X15076Y3793D01* X15078Y3802D01* X15079Y3810D01* X15078Y3819D01* X15075Y3827D01* X15072Y3833D01* Y9307D01* X15076Y9302D01* X15083Y9296D01* X15090Y9291D01* X15098Y9288D01* X15107Y9286D01* X15115Y9285D01* X15124Y9286D01* X15132Y9289D01* X15140Y9293D01* X15147Y9298D01* X15152Y9304D01* Y7714D01* X15149Y7716D01* X15140Y7718D01* X15132Y7719D01* X15123Y7719D01* X15114Y7717D01* X15106Y7713D01* X15099Y7708D01* X15093Y7702D01* X15088Y7695D01* X15084Y7687D01* X15082Y7679D01* X15081Y7670D01* X15081Y7661D01* X15083Y7653D01* X15087Y7645D01* X15099Y7621D01* X15109Y7595D01* X15116Y7569D01* X15121Y7543D01* X15124Y7516D01* X15124Y7489D01* X15122Y7462D01* X15117Y7435D01* X15110Y7409D01* X15101Y7383D01* X15089Y7359D01* X15086Y7351D01* X15084Y7342D01* X15084Y7333D01* X15085Y7325D01* X15087Y7317D01* X15091Y7309D01* X15096Y7302D01* X15103Y7296D01* X15110Y7291D01* X15118Y7288D01* X15127Y7286D01* X15135Y7285D01* X15144Y7286D01* X15152Y7289D01* X15152Y7289D01* Y5719D01* X15152Y5719D01* X15143Y5719D01* X15134Y5717D01* X15126Y5713D01* X15119Y5708D01* X15113Y5702D01* X15108Y5695D01* X15104Y5687D01* X15102Y5679D01* X15101Y5670D01* X15101Y5661D01* X15103Y5653D01* X15107Y5645D01* X15119Y5621D01* X15129Y5595D01* X15136Y5569D01* X15141Y5543D01* X15144Y5516D01* X15144Y5489D01* X15142Y5462D01* X15137Y5435D01* X15130Y5409D01* X15121Y5383D01* X15109Y5359D01* X15106Y5351D01* X15104Y5342D01* X15104Y5333D01* X15105Y5325D01* X15107Y5317D01* X15111Y5309D01* X15116Y5302D01* X15123Y5296D01* X15130Y5291D01* X15138Y5288D01* X15147Y5286D01* X15152Y5286D01* Y3716D01* X15146Y3713D01* X15139Y3708D01* X15133Y3702D01* X15128Y3695D01* X15124Y3687D01* X15122Y3679D01* X15121Y3670D01* X15121Y3661D01* X15123Y3653D01* X15127Y3645D01* X15139Y3621D01* X15149Y3595D01* X15152Y3583D01* Y3416D01* X15150Y3409D01* X15141Y3383D01* X15129Y3359D01* X15126Y3351D01* X15124Y3342D01* X15124Y3333D01* X15125Y3325D01* X15127Y3317D01* X15131Y3309D01* X15136Y3302D01* X15143Y3296D01* X15150Y3291D01* X15152Y3290D01* Y1701D01* X15148Y1695D01* X15144Y1687D01* X15142Y1679D01* X15141Y1670D01* X15141Y1661D01* X15143Y1653D01* X15147Y1645D01* X15152Y1634D01* Y1365D01* X15149Y1359D01* X15146Y1351D01* X15144Y1342D01* X15144Y1333D01* X15145Y1325D01* X15147Y1317D01* X15151Y1309D01* X15152Y1307D01* Y0D01* G37* G36* Y9696D02*X15150Y9701D01* X15144Y9707D01* X15136Y9712D01* X15129Y9716D01* X15120Y9718D01* X15112Y9719D01* X15103Y9719D01* X15094Y9717D01* X15086Y9713D01* X15079Y9708D01* X15073Y9702D01* X15072Y9701D01* Y11290D01* X15078Y11288D01* X15087Y11286D01* X15095Y11285D01* X15104Y11286D01* X15112Y11289D01* X15120Y11293D01* X15127Y11298D01* X15133Y11305D01* X15138Y11312D01* X15152Y11343D01* Y9696D01* G37* G36* Y11656D02*X15150Y11661D01* X15134Y11694D01* X15130Y11701D01* X15124Y11707D01* X15116Y11712D01* X15109Y11716D01* X15100Y11718D01* X15092Y11719D01* X15083Y11719D01* X15074Y11717D01* X15072Y11716D01* Y13286D01* X15075Y13285D01* X15084Y13286D01* X15092Y13289D01* X15100Y13293D01* X15107Y13298D01* X15113Y13305D01* X15118Y13312D01* X15133Y13344D01* X15146Y13378D01* X15152Y13404D01* Y11656D01* G37* G36* Y40000D02*X16177D01* Y39710D01* X16169Y39706D01* X16162Y39701D01* X16156Y39695D01* X16151Y39687D01* X16136Y39655D01* X16123Y39621D01* X16114Y39586D01* X16108Y39550D01* X16105Y39514D01* X16105Y39478D01* X16109Y39442D01* X16115Y39407D01* X16125Y39372D01* X16139Y39338D01* X16155Y39306D01* X16159Y39299D01* X16165Y39292D01* X16173Y39287D01* X16177Y39285D01* Y37695D01* X16176Y37695D01* X16171Y37687D01* X16156Y37655D01* X16143Y37621D01* X16134Y37586D01* X16128Y37550D01* X16125Y37514D01* X16125Y37478D01* X16129Y37442D01* X16135Y37407D01* X16145Y37372D01* X16159Y37338D01* X16175Y37306D01* X16177Y37303D01* Y35656D01* X16176Y35655D01* X16163Y35621D01* X16154Y35586D01* X16148Y35550D01* X16145Y35514D01* X16145Y35478D01* X16149Y35442D01* X16155Y35407D01* X16165Y35372D01* X16177Y35343D01* Y33596D01* X16174Y33586D01* X16168Y33550D01* X16165Y33514D01* X16165Y33478D01* X16169Y33442D01* X16175Y33407D01* X16177Y33403D01* Y0D01* X15152D01* Y1307D01* X15156Y1302D01* X15163Y1296D01* X15170Y1291D01* X15178Y1288D01* X15187Y1286D01* X15195Y1285D01* X15204Y1286D01* X15212Y1289D01* X15220Y1293D01* X15227Y1298D01* X15233Y1305D01* X15238Y1312D01* X15253Y1344D01* X15266Y1378D01* X15275Y1413D01* X15281Y1449D01* X15284Y1485D01* X15284Y1521D01* X15280Y1557D01* X15274Y1593D01* X15264Y1627D01* X15250Y1661D01* X15234Y1694D01* X15230Y1701D01* X15224Y1707D01* X15216Y1712D01* X15209Y1716D01* X15200Y1718D01* X15192Y1719D01* X15183Y1719D01* X15174Y1717D01* X15166Y1713D01* X15159Y1708D01* X15153Y1702D01* X15152Y1701D01* Y3290D01* X15158Y3288D01* X15167Y3286D01* X15175Y3285D01* X15184Y3286D01* X15192Y3289D01* X15200Y3293D01* X15207Y3298D01* X15213Y3305D01* X15218Y3312D01* X15233Y3344D01* X15246Y3378D01* X15255Y3413D01* X15261Y3449D01* X15264Y3485D01* X15264Y3521D01* X15260Y3557D01* X15254Y3593D01* X15244Y3627D01* X15230Y3661D01* X15214Y3694D01* X15210Y3701D01* X15204Y3707D01* X15196Y3712D01* X15189Y3716D01* X15180Y3718D01* X15172Y3719D01* X15163Y3719D01* X15154Y3717D01* X15152Y3716D01* Y5286D01* X15155Y5285D01* X15164Y5286D01* X15172Y5289D01* X15180Y5293D01* X15187Y5298D01* X15193Y5305D01* X15198Y5312D01* X15213Y5344D01* X15226Y5378D01* X15235Y5413D01* X15241Y5449D01* X15244Y5485D01* X15244Y5521D01* X15240Y5557D01* X15234Y5593D01* X15224Y5627D01* X15210Y5661D01* X15194Y5694D01* X15190Y5701D01* X15184Y5707D01* X15176Y5712D01* X15169Y5716D01* X15160Y5718D01* X15152Y5719D01* Y7289D01* X15160Y7293D01* X15167Y7298D01* X15173Y7305D01* X15178Y7312D01* X15193Y7344D01* X15206Y7378D01* X15215Y7413D01* X15221Y7449D01* X15224Y7485D01* X15224Y7521D01* X15220Y7557D01* X15214Y7593D01* X15204Y7627D01* X15190Y7661D01* X15174Y7694D01* X15170Y7701D01* X15164Y7707D01* X15156Y7712D01* X15152Y7714D01* Y9304D01* X15153Y9305D01* X15158Y9312D01* X15173Y9344D01* X15186Y9378D01* X15195Y9413D01* X15201Y9449D01* X15204Y9485D01* X15204Y9521D01* X15200Y9557D01* X15194Y9593D01* X15184Y9627D01* X15170Y9661D01* X15154Y9694D01* X15152Y9696D01* Y11343D01* X15153Y11344D01* X15166Y11378D01* X15175Y11413D01* X15181Y11449D01* X15184Y11485D01* X15184Y11521D01* X15180Y11557D01* X15174Y11593D01* X15164Y11627D01* X15152Y11656D01* Y13404D01* X15155Y13413D01* X15161Y13449D01* X15164Y13485D01* X15164Y13521D01* X15160Y13557D01* X15154Y13593D01* X15152Y13596D01* Y40000D01* G37* G36* X16177D02*X16257D01* Y37692D01* X16253Y37697D01* X16246Y37703D01* X16239Y37708D01* X16231Y37711D01* X16222Y37713D01* X16214Y37714D01* X16205Y37713D01* X16197Y37710D01* X16189Y37706D01* X16182Y37701D01* X16177Y37695D01* Y39285D01* X16180Y39283D01* X16189Y39281D01* X16197Y39280D01* X16206Y39281D01* X16215Y39283D01* X16223Y39286D01* X16230Y39291D01* X16236Y39297D01* X16241Y39304D01* X16245Y39312D01* X16247Y39320D01* X16248Y39329D01* X16248Y39338D01* X16246Y39346D01* X16242Y39354D01* X16230Y39378D01* X16220Y39404D01* X16213Y39430D01* X16208Y39456D01* X16205Y39483D01* X16205Y39511D01* X16207Y39538D01* X16212Y39564D01* X16219Y39590D01* X16228Y39616D01* X16240Y39640D01* X16243Y39649D01* X16245Y39657D01* X16245Y39666D01* X16244Y39674D01* X16242Y39683D01* X16238Y39690D01* X16233Y39697D01* X16226Y39703D01* X16219Y39708D01* X16211Y39711D01* X16202Y39713D01* X16194Y39714D01* X16185Y39713D01* X16177Y39710D01* X16177Y39710D01* Y40000D01* G37* G36* X16257Y29695D02*X16256Y29695D01* X16251Y29687D01* X16236Y29655D01* X16223Y29621D01* X16214Y29586D01* X16208Y29550D01* X16205Y29514D01* X16205Y29478D01* X16209Y29442D01* X16215Y29407D01* X16225Y29372D01* X16239Y29338D01* X16255Y29306D01* X16257Y29303D01* Y27656D01* X16256Y27655D01* X16243Y27621D01* X16234Y27586D01* X16228Y27550D01* X16225Y27514D01* X16225Y27478D01* X16229Y27442D01* X16235Y27407D01* X16245Y27372D01* X16257Y27343D01* Y25596D01* X16254Y25586D01* X16248Y25550D01* X16245Y25514D01* X16245Y25478D01* X16249Y25442D01* X16255Y25407D01* X16257Y25403D01* Y0D01* X16177D01* Y33403D01* X16185Y33372D01* X16199Y33338D01* X16215Y33306D01* X16219Y33299D01* X16225Y33292D01* X16233Y33287D01* X16240Y33283D01* X16249Y33281D01* X16257Y33280D01* Y31710D01* X16249Y31706D01* X16242Y31701D01* X16236Y31695D01* X16231Y31687D01* X16216Y31655D01* X16203Y31621D01* X16194Y31586D01* X16188Y31550D01* X16185Y31514D01* X16185Y31478D01* X16189Y31442D01* X16195Y31407D01* X16205Y31372D01* X16219Y31338D01* X16235Y31306D01* X16239Y31299D01* X16245Y31292D01* X16253Y31287D01* X16257Y31285D01* Y29695D01* G37* G36* Y33714D02*X16254Y33714D01* X16245Y33713D01* X16237Y33710D01* X16229Y33706D01* X16222Y33701D01* X16216Y33695D01* X16211Y33687D01* X16196Y33655D01* X16183Y33621D01* X16177Y33596D01* Y35343D01* X16179Y35338D01* X16195Y35306D01* X16199Y35299D01* X16205Y35292D01* X16213Y35287D01* X16220Y35283D01* X16229Y35281D01* X16237Y35280D01* X16246Y35281D01* X16255Y35283D01* X16257Y35284D01* Y33714D01* G37* G36* Y35417D02*X16253Y35430D01* X16248Y35456D01* X16245Y35483D01* X16245Y35511D01* X16247Y35538D01* X16252Y35564D01* X16257Y35583D01* Y35417D01* G37* G36* Y35709D02*X16251Y35711D01* X16242Y35713D01* X16234Y35714D01* X16225Y35713D01* X16217Y35710D01* X16209Y35706D01* X16202Y35701D01* X16196Y35695D01* X16191Y35687D01* X16177Y35656D01* Y37303D01* X16179Y37299D01* X16185Y37292D01* X16193Y37287D01* X16200Y37283D01* X16209Y37281D01* X16217Y37280D01* X16226Y37281D01* X16235Y37283D01* X16243Y37286D01* X16250Y37291D01* X16256Y37297D01* X16257Y37298D01* Y35709D01* G37* G36* Y37365D02*X16250Y37378D01* X16240Y37404D01* X16233Y37430D01* X16228Y37456D01* X16225Y37483D01* X16225Y37511D01* X16227Y37538D01* X16232Y37564D01* X16239Y37590D01* X16248Y37616D01* X16257Y37634D01* Y37365D01* G37* G36* Y40000D02*X16337D01* Y39862D01* X16311Y39849D01* X16303Y39845D01* X16297Y39839D01* X16292Y39832D01* X16288Y39824D01* X16286Y39815D01* X16285Y39807D01* X16285Y39798D01* X16288Y39790D01* X16291Y39782D01* X16296Y39774D01* X16302Y39768D01* X16309Y39763D01* X16317Y39759D01* X16325Y39757D01* X16334Y39756D01* X16337Y39756D01* Y39240D01* X16330Y39239D01* X16321Y39237D01* X16314Y39233D01* X16307Y39228D01* X16301Y39221D01* X16296Y39214D01* X16293Y39206D01* X16291Y39197D01* X16290Y39189D01* X16291Y39180D01* X16294Y39172D01* X16298Y39164D01* X16303Y39157D01* X16309Y39151D01* X16317Y39146D01* X16337Y39137D01* Y37852D01* X16331Y37849D01* X16323Y37845D01* X16317Y37839D01* X16312Y37832D01* X16308Y37824D01* X16306Y37815D01* X16305Y37807D01* X16305Y37798D01* X16308Y37790D01* X16311Y37782D01* X16316Y37774D01* X16322Y37768D01* X16329Y37763D01* X16337Y37759D01* Y37234D01* X16334Y37233D01* X16327Y37228D01* X16321Y37221D01* X16316Y37214D01* X16313Y37206D01* X16311Y37197D01* X16310Y37189D01* X16311Y37180D01* X16314Y37172D01* X16318Y37164D01* X16323Y37157D01* X16329Y37151D01* X16337Y37147D01* Y35838D01* X16332Y35832D01* X16328Y35824D01* X16326Y35815D01* X16325Y35807D01* X16325Y35798D01* X16328Y35790D01* X16331Y35782D01* X16336Y35774D01* X16337Y35774D01* Y35215D01* X16336Y35214D01* X16333Y35206D01* X16331Y35197D01* X16330Y35189D01* X16331Y35180D01* X16334Y35172D01* X16337Y35167D01* Y29692D01* X16333Y29697D01* X16326Y29703D01* X16319Y29708D01* X16311Y29711D01* X16302Y29713D01* X16294Y29714D01* X16285Y29713D01* X16277Y29710D01* X16269Y29706D01* X16262Y29701D01* X16257Y29695D01* Y31285D01* X16260Y31283D01* X16269Y31281D01* X16277Y31280D01* X16286Y31281D01* X16295Y31283D01* X16303Y31286D01* X16310Y31291D01* X16316Y31297D01* X16321Y31304D01* X16325Y31312D01* X16327Y31320D01* X16328Y31329D01* X16328Y31338D01* X16326Y31346D01* X16322Y31354D01* X16310Y31378D01* X16300Y31404D01* X16293Y31430D01* X16288Y31456D01* X16285Y31483D01* X16285Y31511D01* X16287Y31538D01* X16292Y31564D01* X16299Y31590D01* X16308Y31616D01* X16320Y31640D01* X16323Y31649D01* X16325Y31657D01* X16325Y31666D01* X16324Y31674D01* X16322Y31683D01* X16318Y31690D01* X16313Y31697D01* X16306Y31703D01* X16299Y31708D01* X16291Y31711D01* X16282Y31713D01* X16274Y31714D01* X16265Y31713D01* X16257Y31710D01* X16257Y31710D01* Y33280D01* X16257Y33280D01* X16266Y33281D01* X16275Y33283D01* X16283Y33286D01* X16290Y33291D01* X16296Y33297D01* X16301Y33304D01* X16305Y33312D01* X16307Y33320D01* X16308Y33329D01* X16308Y33338D01* X16306Y33346D01* X16302Y33354D01* X16290Y33378D01* X16280Y33404D01* X16273Y33430D01* X16268Y33456D01* X16265Y33483D01* X16265Y33511D01* X16267Y33538D01* X16272Y33564D01* X16279Y33590D01* X16288Y33616D01* X16300Y33640D01* X16303Y33649D01* X16305Y33657D01* X16305Y33666D01* X16304Y33674D01* X16302Y33683D01* X16298Y33690D01* X16293Y33697D01* X16286Y33703D01* X16279Y33708D01* X16271Y33711D01* X16262Y33713D01* X16257Y33714D01* Y35284D01* X16263Y35286D01* X16270Y35291D01* X16276Y35297D01* X16281Y35304D01* X16285Y35312D01* X16287Y35320D01* X16288Y35329D01* X16288Y35338D01* X16286Y35346D01* X16282Y35354D01* X16270Y35378D01* X16260Y35404D01* X16257Y35417D01* Y35583D01* X16259Y35590D01* X16268Y35616D01* X16280Y35640D01* X16283Y35649D01* X16285Y35657D01* X16285Y35666D01* X16284Y35674D01* X16282Y35683D01* X16278Y35690D01* X16273Y35697D01* X16266Y35703D01* X16259Y35708D01* X16257Y35709D01* Y37298D01* X16261Y37304D01* X16265Y37312D01* X16267Y37320D01* X16268Y37329D01* X16268Y37338D01* X16266Y37346D01* X16262Y37354D01* X16257Y37365D01* Y37634D01* X16260Y37640D01* X16263Y37649D01* X16265Y37657D01* X16265Y37666D01* X16264Y37674D01* X16262Y37683D01* X16258Y37690D01* X16257Y37692D01* Y40000D01* G37* G36* Y29303D02*X16259Y29299D01* X16265Y29292D01* X16273Y29287D01* X16280Y29283D01* X16289Y29281D01* X16297Y29280D01* X16306Y29281D01* X16315Y29283D01* X16323Y29286D01* X16330Y29291D01* X16336Y29297D01* X16337Y29298D01* Y27709D01* X16331Y27711D01* X16322Y27713D01* X16314Y27714D01* X16305Y27713D01* X16297Y27710D01* X16289Y27706D01* X16282Y27701D01* X16276Y27695D01* X16271Y27687D01* X16257Y27656D01* Y29303D01* G37* G36* Y27343D02*X16259Y27338D01* X16275Y27306D01* X16279Y27299D01* X16285Y27292D01* X16293Y27287D01* X16300Y27283D01* X16309Y27281D01* X16317Y27280D01* X16326Y27281D01* X16335Y27283D01* X16337Y27284D01* Y25714D01* X16334Y25714D01* X16325Y25713D01* X16317Y25710D01* X16309Y25706D01* X16302Y25701D01* X16296Y25695D01* X16291Y25687D01* X16276Y25655D01* X16263Y25621D01* X16257Y25596D01* Y27343D01* G37* G36* Y25403D02*X16265Y25372D01* X16279Y25338D01* X16295Y25306D01* X16299Y25299D01* X16305Y25292D01* X16313Y25287D01* X16320Y25283D01* X16329Y25281D01* X16337Y25280D01* Y23710D01* X16329Y23706D01* X16322Y23701D01* X16316Y23695D01* X16311Y23687D01* X16296Y23655D01* X16283Y23621D01* X16274Y23586D01* X16268Y23550D01* X16265Y23514D01* X16265Y23478D01* X16269Y23442D01* X16275Y23407D01* X16285Y23372D01* X16299Y23338D01* X16315Y23306D01* X16319Y23299D01* X16325Y23292D01* X16333Y23287D01* X16337Y23285D01* Y21695D01* X16336Y21695D01* X16331Y21687D01* X16316Y21655D01* X16303Y21621D01* X16294Y21586D01* X16288Y21550D01* X16285Y21514D01* X16285Y21478D01* X16289Y21442D01* X16295Y21407D01* X16305Y21372D01* X16319Y21338D01* X16335Y21306D01* X16337Y21303D01* Y19656D01* X16336Y19655D01* X16323Y19621D01* X16314Y19586D01* X16308Y19550D01* X16305Y19514D01* X16305Y19478D01* X16309Y19442D01* X16315Y19407D01* X16325Y19372D01* X16337Y19343D01* Y17596D01* X16334Y17586D01* X16328Y17550D01* X16325Y17514D01* X16325Y17478D01* X16329Y17442D01* X16335Y17407D01* X16337Y17403D01* Y0D01* X16257D01* Y25403D01* G37* G36* X16337Y29365D02*X16330Y29378D01* X16320Y29404D01* X16313Y29430D01* X16308Y29456D01* X16305Y29483D01* X16305Y29511D01* X16307Y29538D01* X16312Y29564D01* X16319Y29590D01* X16328Y29616D01* X16337Y29634D01* Y29365D01* G37* G36* Y27417D02*X16333Y27430D01* X16328Y27456D01* X16325Y27483D01* X16325Y27511D01* X16327Y27538D01* X16332Y27564D01* X16337Y27583D01* Y27417D01* G37* G36* Y40000D02*X16667D01* Y39865D01* X16660Y39868D01* X16626Y39881D01* X16591Y39890D01* X16555Y39896D01* X16519Y39899D01* X16483Y39899D01* X16447Y39895D01* X16411Y39889D01* X16377Y39879D01* X16343Y39866D01* X16337Y39862D01* Y40000D01* G37* G36* Y39756D02*X16343Y39756D01* X16351Y39758D01* X16359Y39762D01* X16383Y39774D01* X16409Y39784D01* X16435Y39791D01* X16461Y39796D01* X16488Y39799D01* X16515Y39799D01* X16542Y39797D01* X16569Y39793D01* X16595Y39785D01* X16621Y39776D01* X16645Y39764D01* X16653Y39761D01* X16662Y39759D01* X16667Y39759D01* Y39243D01* X16666Y39243D01* X16658Y39241D01* X16650Y39237D01* X16626Y39225D01* X16600Y39215D01* X16574Y39208D01* X16548Y39203D01* X16521Y39200D01* X16494Y39200D01* X16467Y39202D01* X16440Y39207D01* X16414Y39214D01* X16388Y39223D01* X16364Y39235D01* X16356Y39238D01* X16347Y39240D01* X16338Y39240D01* X16337Y39240D01* Y39756D01* G37* G36* Y39137D02*X16349Y39131D01* X16383Y39118D01* X16418Y39109D01* X16454Y39103D01* X16490Y39100D01* X16526Y39100D01* X16562Y39104D01* X16598Y39111D01* X16632Y39121D01* X16666Y39134D01* X16667Y39134D01* Y37873D01* X16646Y37881D01* X16611Y37890D01* X16575Y37896D01* X16539Y37899D01* X16503Y37899D01* X16467Y37895D01* X16431Y37889D01* X16397Y37879D01* X16363Y37866D01* X16337Y37852D01* Y39137D01* G37* G36* Y37759D02*X16337Y37759D01* X16345Y37757D01* X16354Y37756D01* X16363Y37756D01* X16371Y37758D01* X16379Y37762D01* X16403Y37774D01* X16429Y37784D01* X16455Y37791D01* X16481Y37796D01* X16508Y37799D01* X16535Y37799D01* X16562Y37797D01* X16589Y37793D01* X16615Y37785D01* X16641Y37776D01* X16665Y37764D01* X16667Y37764D01* Y37236D01* X16646Y37225D01* X16620Y37215D01* X16594Y37208D01* X16568Y37203D01* X16541Y37200D01* X16514Y37200D01* X16487Y37202D01* X16460Y37207D01* X16434Y37214D01* X16408Y37223D01* X16384Y37235D01* X16376Y37238D01* X16367Y37240D01* X16358Y37240D01* X16350Y37239D01* X16341Y37237D01* X16337Y37234D01* Y37759D01* G37* G36* Y37147D02*X16337Y37146D01* X16369Y37131D01* X16403Y37118D01* X16438Y37109D01* X16474Y37103D01* X16510Y37100D01* X16546Y37100D01* X16582Y37104D01* X16618Y37111D01* X16652Y37121D01* X16667Y37126D01* Y35880D01* X16666Y35881D01* X16631Y35890D01* X16595Y35896D01* X16559Y35899D01* X16523Y35899D01* X16487Y35895D01* X16451Y35889D01* X16417Y35879D01* X16383Y35866D01* X16351Y35849D01* X16343Y35845D01* X16337Y35839D01* X16337Y35838D01* Y37147D01* G37* G36* Y35774D02*X16342Y35768D01* X16349Y35763D01* X16357Y35759D01* X16365Y35757D01* X16374Y35756D01* X16383Y35756D01* X16391Y35758D01* X16399Y35762D01* X16423Y35774D01* X16449Y35784D01* X16475Y35791D01* X16501Y35796D01* X16528Y35799D01* X16555Y35799D01* X16582Y35797D01* X16609Y35793D01* X16635Y35785D01* X16661Y35776D01* X16667Y35773D01* Y35226D01* X16666Y35225D01* X16640Y35215D01* X16614Y35208D01* X16588Y35203D01* X16561Y35200D01* X16534Y35200D01* X16507Y35202D01* X16480Y35207D01* X16454Y35214D01* X16428Y35223D01* X16404Y35235D01* X16396Y35238D01* X16387Y35240D01* X16378Y35240D01* X16370Y35239D01* X16361Y35237D01* X16354Y35233D01* X16347Y35228D01* X16341Y35221D01* X16337Y35215D01* Y35774D01* G37* G36* Y35167D02*X16338Y35164D01* X16343Y35157D01* X16349Y35151D01* X16357Y35146D01* X16389Y35131D01* X16417Y35121D01* Y33871D01* X16403Y33866D01* X16371Y33849D01* X16363Y33845D01* X16357Y33839D01* X16352Y33832D01* X16348Y33824D01* X16346Y33815D01* X16345Y33807D01* X16345Y33798D01* X16348Y33790D01* X16351Y33782D01* X16356Y33774D01* X16362Y33768D01* X16369Y33763D01* X16377Y33759D01* X16385Y33757D01* X16394Y33756D01* X16403Y33756D01* X16411Y33758D01* X16417Y33761D01* Y33238D01* X16416Y33238D01* X16407Y33240D01* X16398Y33240D01* X16390Y33239D01* X16381Y33237D01* X16374Y33233D01* X16367Y33228D01* X16361Y33221D01* X16356Y33214D01* X16353Y33206D01* X16351Y33197D01* X16350Y33189D01* X16351Y33180D01* X16354Y33172D01* X16358Y33164D01* X16363Y33157D01* X16369Y33151D01* X16377Y33146D01* X16409Y33131D01* X16417Y33128D01* Y31862D01* X16391Y31849D01* X16383Y31845D01* X16377Y31839D01* X16372Y31832D01* X16368Y31824D01* X16366Y31815D01* X16365Y31807D01* X16365Y31798D01* X16368Y31790D01* X16371Y31782D01* X16376Y31774D01* X16382Y31768D01* X16389Y31763D01* X16397Y31759D01* X16405Y31757D01* X16414Y31756D01* X16417Y31756D01* Y31240D01* X16410Y31239D01* X16401Y31237D01* X16394Y31233D01* X16387Y31228D01* X16381Y31221D01* X16376Y31214D01* X16373Y31206D01* X16371Y31197D01* X16370Y31189D01* X16371Y31180D01* X16374Y31172D01* X16378Y31164D01* X16383Y31157D01* X16389Y31151D01* X16397Y31146D01* X16417Y31137D01* Y29852D01* X16411Y29849D01* X16403Y29845D01* X16397Y29839D01* X16392Y29832D01* X16388Y29824D01* X16386Y29815D01* X16385Y29807D01* X16385Y29798D01* X16388Y29790D01* X16391Y29782D01* X16396Y29774D01* X16402Y29768D01* X16409Y29763D01* X16417Y29759D01* Y29234D01* X16414Y29233D01* X16407Y29228D01* X16401Y29221D01* X16396Y29214D01* X16393Y29206D01* X16391Y29197D01* X16390Y29189D01* X16391Y29180D01* X16394Y29172D01* X16398Y29164D01* X16403Y29157D01* X16409Y29151D01* X16417Y29147D01* Y27838D01* X16412Y27832D01* X16408Y27824D01* X16406Y27815D01* X16405Y27807D01* X16405Y27798D01* X16408Y27790D01* X16411Y27782D01* X16416Y27774D01* X16417Y27774D01* Y27215D01* X16416Y27214D01* X16413Y27206D01* X16411Y27197D01* X16410Y27189D01* X16411Y27180D01* X16414Y27172D01* X16417Y27167D01* Y21692D01* X16413Y21697D01* X16406Y21703D01* X16399Y21708D01* X16391Y21711D01* X16382Y21713D01* X16374Y21714D01* X16365Y21713D01* X16357Y21710D01* X16349Y21706D01* X16342Y21701D01* X16337Y21695D01* Y23285D01* X16340Y23283D01* X16349Y23281D01* X16357Y23280D01* X16366Y23281D01* X16375Y23283D01* X16383Y23286D01* X16390Y23291D01* X16396Y23297D01* X16401Y23304D01* X16405Y23312D01* X16407Y23320D01* X16408Y23329D01* X16408Y23338D01* X16406Y23346D01* X16402Y23354D01* X16390Y23378D01* X16380Y23404D01* X16373Y23430D01* X16368Y23456D01* X16365Y23483D01* X16365Y23511D01* X16367Y23538D01* X16372Y23564D01* X16379Y23590D01* X16388Y23616D01* X16400Y23640D01* X16403Y23649D01* X16405Y23657D01* X16405Y23666D01* X16404Y23674D01* X16402Y23683D01* X16398Y23690D01* X16393Y23697D01* X16386Y23703D01* X16379Y23708D01* X16371Y23711D01* X16362Y23713D01* X16354Y23714D01* X16345Y23713D01* X16337Y23710D01* X16337Y23710D01* Y25280D01* X16337Y25280D01* X16346Y25281D01* X16355Y25283D01* X16363Y25286D01* X16370Y25291D01* X16376Y25297D01* X16381Y25304D01* X16385Y25312D01* X16387Y25320D01* X16388Y25329D01* X16388Y25338D01* X16386Y25346D01* X16382Y25354D01* X16370Y25378D01* X16360Y25404D01* X16353Y25430D01* X16348Y25456D01* X16345Y25483D01* X16345Y25511D01* X16347Y25538D01* X16352Y25564D01* X16359Y25590D01* X16368Y25616D01* X16380Y25640D01* X16383Y25649D01* X16385Y25657D01* X16385Y25666D01* X16384Y25674D01* X16382Y25683D01* X16378Y25690D01* X16373Y25697D01* X16366Y25703D01* X16359Y25708D01* X16351Y25711D01* X16342Y25713D01* X16337Y25714D01* Y27284D01* X16343Y27286D01* X16350Y27291D01* X16356Y27297D01* X16361Y27304D01* X16365Y27312D01* X16367Y27320D01* X16368Y27329D01* X16368Y27338D01* X16366Y27346D01* X16362Y27354D01* X16350Y27378D01* X16340Y27404D01* X16337Y27417D01* Y27583D01* X16339Y27590D01* X16348Y27616D01* X16360Y27640D01* X16363Y27649D01* X16365Y27657D01* X16365Y27666D01* X16364Y27674D01* X16362Y27683D01* X16358Y27690D01* X16353Y27697D01* X16346Y27703D01* X16339Y27708D01* X16337Y27709D01* Y29298D01* X16341Y29304D01* X16345Y29312D01* X16347Y29320D01* X16348Y29329D01* X16348Y29338D01* X16346Y29346D01* X16342Y29354D01* X16337Y29365D01* Y29634D01* X16340Y29640D01* X16343Y29649D01* X16345Y29657D01* X16345Y29666D01* X16344Y29674D01* X16342Y29683D01* X16338Y29690D01* X16337Y29692D01* Y35167D01* G37* G36* X16417Y0D02*X16337D01* Y17403D01* X16345Y17372D01* X16359Y17338D01* X16375Y17306D01* X16379Y17299D01* X16385Y17292D01* X16393Y17287D01* X16400Y17283D01* X16409Y17281D01* X16417Y17280D01* Y15710D01* X16409Y15706D01* X16402Y15701D01* X16396Y15695D01* X16391Y15687D01* X16376Y15655D01* X16363Y15621D01* X16354Y15586D01* X16348Y15550D01* X16345Y15514D01* X16345Y15478D01* X16349Y15442D01* X16355Y15407D01* X16365Y15372D01* X16379Y15338D01* X16395Y15306D01* X16399Y15299D01* X16405Y15292D01* X16413Y15287D01* X16417Y15285D01* Y13695D01* X16416Y13695D01* X16411Y13687D01* X16396Y13655D01* X16383Y13621D01* X16374Y13586D01* X16368Y13550D01* X16365Y13514D01* X16365Y13478D01* X16369Y13442D01* X16375Y13407D01* X16385Y13372D01* X16399Y13338D01* X16415Y13306D01* X16417Y13303D01* Y11656D01* X16416Y11655D01* X16403Y11621D01* X16394Y11586D01* X16388Y11550D01* X16385Y11514D01* X16385Y11478D01* X16389Y11442D01* X16395Y11407D01* X16405Y11372D01* X16417Y11343D01* Y9596D01* X16414Y9586D01* X16408Y9550D01* X16405Y9514D01* X16405Y9478D01* X16409Y9442D01* X16415Y9407D01* X16417Y9403D01* Y0D01* G37* G36* Y17714D02*X16414Y17714D01* X16405Y17713D01* X16397Y17710D01* X16389Y17706D01* X16382Y17701D01* X16376Y17695D01* X16371Y17687D01* X16356Y17655D01* X16343Y17621D01* X16337Y17596D01* Y19343D01* X16339Y19338D01* X16355Y19306D01* X16359Y19299D01* X16365Y19292D01* X16373Y19287D01* X16380Y19283D01* X16389Y19281D01* X16397Y19280D01* X16406Y19281D01* X16415Y19283D01* X16417Y19284D01* Y17714D01* G37* G36* Y19417D02*X16413Y19430D01* X16408Y19456D01* X16405Y19483D01* X16405Y19511D01* X16407Y19538D01* X16412Y19564D01* X16417Y19583D01* Y19417D01* G37* G36* Y19709D02*X16411Y19711D01* X16402Y19713D01* X16394Y19714D01* X16385Y19713D01* X16377Y19710D01* X16369Y19706D01* X16362Y19701D01* X16356Y19695D01* X16351Y19687D01* X16337Y19656D01* Y21303D01* X16339Y21299D01* X16345Y21292D01* X16353Y21287D01* X16360Y21283D01* X16369Y21281D01* X16377Y21280D01* X16386Y21281D01* X16395Y21283D01* X16403Y21286D01* X16410Y21291D01* X16416Y21297D01* X16417Y21298D01* Y19709D01* G37* G36* Y21365D02*X16410Y21378D01* X16400Y21404D01* X16393Y21430D01* X16388Y21456D01* X16385Y21483D01* X16385Y21511D01* X16387Y21538D01* X16392Y21564D01* X16399Y21590D01* X16408Y21616D01* X16417Y21634D01* Y21365D01* G37* G36* Y35121D02*X16423Y35118D01* X16458Y35109D01* X16494Y35103D01* X16530Y35100D01* X16566Y35100D01* X16602Y35104D01* X16638Y35111D01* X16667Y35119D01* Y33886D01* X16651Y33890D01* X16615Y33896D01* X16579Y33899D01* X16543Y33899D01* X16507Y33895D01* X16471Y33889D01* X16437Y33879D01* X16417Y33871D01* Y35121D01* G37* G36* Y33761D02*X16419Y33762D01* X16443Y33774D01* X16469Y33784D01* X16495Y33791D01* X16521Y33796D01* X16548Y33799D01* X16575Y33799D01* X16602Y33797D01* X16629Y33793D01* X16655Y33785D01* X16667Y33781D01* Y33218D01* X16660Y33215D01* X16634Y33208D01* X16608Y33203D01* X16581Y33200D01* X16554Y33200D01* X16527Y33202D01* X16500Y33207D01* X16474Y33214D01* X16448Y33223D01* X16424Y33235D01* X16417Y33238D01* Y33761D01* G37* G36* Y33128D02*X16443Y33118D01* X16478Y33109D01* X16514Y33103D01* X16550Y33100D01* X16586Y33100D01* X16622Y33104D01* X16658Y33111D01* X16667Y33113D01* Y31891D01* X16635Y31896D01* X16599Y31899D01* X16563Y31899D01* X16527Y31895D01* X16491Y31889D01* X16457Y31879D01* X16423Y31866D01* X16417Y31862D01* Y33128D01* G37* G36* Y31756D02*X16423Y31756D01* X16431Y31758D01* X16439Y31762D01* X16463Y31774D01* X16489Y31784D01* X16515Y31791D01* X16541Y31796D01* X16568Y31799D01* X16595Y31799D01* X16622Y31797D01* X16649Y31793D01* X16667Y31788D01* Y31212D01* X16654Y31208D01* X16628Y31203D01* X16601Y31200D01* X16574Y31200D01* X16547Y31202D01* X16520Y31207D01* X16494Y31214D01* X16468Y31223D01* X16444Y31235D01* X16436Y31238D01* X16427Y31240D01* X16418Y31240D01* X16417Y31240D01* Y31756D01* G37* G36* Y31137D02*X16429Y31131D01* X16463Y31118D01* X16498Y31109D01* X16534Y31103D01* X16570Y31100D01* X16606Y31100D01* X16642Y31104D01* X16667Y31109D01* Y29894D01* X16655Y29896D01* X16619Y29899D01* X16583Y29899D01* X16547Y29895D01* X16511Y29889D01* X16477Y29879D01* X16443Y29866D01* X16417Y29852D01* Y31137D01* G37* G36* Y29759D02*X16417Y29759D01* X16425Y29757D01* X16434Y29756D01* X16443Y29756D01* X16451Y29758D01* X16459Y29762D01* X16483Y29774D01* X16509Y29784D01* X16535Y29791D01* X16561Y29796D01* X16588Y29799D01* X16615Y29799D01* X16642Y29797D01* X16667Y29793D01* Y29206D01* X16648Y29203D01* X16621Y29200D01* X16594Y29200D01* X16567Y29202D01* X16540Y29207D01* X16514Y29214D01* X16488Y29223D01* X16464Y29235D01* X16456Y29238D01* X16447Y29240D01* X16438Y29240D01* X16430Y29239D01* X16421Y29237D01* X16417Y29234D01* Y29759D01* G37* G36* Y29147D02*X16417Y29146D01* X16449Y29131D01* X16483Y29118D01* X16518Y29109D01* X16554Y29103D01* X16590Y29100D01* X16626Y29100D01* X16662Y29104D01* X16667Y29105D01* Y27897D01* X16639Y27899D01* X16603Y27899D01* X16567Y27895D01* X16531Y27889D01* X16497Y27879D01* X16463Y27866D01* X16431Y27849D01* X16423Y27845D01* X16417Y27839D01* X16417Y27838D01* Y29147D01* G37* G36* Y27774D02*X16422Y27768D01* X16429Y27763D01* X16437Y27759D01* X16445Y27757D01* X16454Y27756D01* X16463Y27756D01* X16471Y27758D01* X16479Y27762D01* X16503Y27774D01* X16529Y27784D01* X16555Y27791D01* X16581Y27796D01* X16608Y27799D01* X16635Y27799D01* X16662Y27797D01* X16667Y27796D01* Y27203D01* X16641Y27200D01* X16614Y27200D01* X16587Y27202D01* X16560Y27207D01* X16534Y27214D01* X16508Y27223D01* X16484Y27235D01* X16476Y27238D01* X16467Y27240D01* X16458Y27240D01* X16450Y27239D01* X16441Y27237D01* X16434Y27233D01* X16427Y27228D01* X16421Y27221D01* X16417Y27215D01* Y27774D01* G37* G36* Y27167D02*X16418Y27164D01* X16423Y27157D01* X16429Y27151D01* X16437Y27146D01* X16469Y27131D01* X16497Y27121D01* Y25871D01* X16483Y25866D01* X16451Y25849D01* X16443Y25845D01* X16437Y25839D01* X16432Y25832D01* X16428Y25824D01* X16426Y25815D01* X16425Y25807D01* X16425Y25798D01* X16428Y25790D01* X16431Y25782D01* X16436Y25774D01* X16442Y25768D01* X16449Y25763D01* X16457Y25759D01* X16465Y25757D01* X16474Y25756D01* X16483Y25756D01* X16491Y25758D01* X16497Y25761D01* Y25238D01* X16496Y25238D01* X16487Y25240D01* X16478Y25240D01* X16470Y25239D01* X16461Y25237D01* X16454Y25233D01* X16447Y25228D01* X16441Y25221D01* X16436Y25214D01* X16433Y25206D01* X16431Y25197D01* X16430Y25189D01* X16431Y25180D01* X16434Y25172D01* X16438Y25164D01* X16443Y25157D01* X16449Y25151D01* X16457Y25146D01* X16489Y25131D01* X16497Y25128D01* Y23862D01* X16471Y23849D01* X16463Y23845D01* X16457Y23839D01* X16452Y23832D01* X16448Y23824D01* X16446Y23815D01* X16445Y23807D01* X16445Y23798D01* X16448Y23790D01* X16451Y23782D01* X16456Y23774D01* X16462Y23768D01* X16469Y23763D01* X16477Y23759D01* X16485Y23757D01* X16494Y23756D01* X16497Y23756D01* Y23240D01* X16490Y23239D01* X16481Y23237D01* X16474Y23233D01* X16467Y23228D01* X16461Y23221D01* X16456Y23214D01* X16453Y23206D01* X16451Y23197D01* X16450Y23189D01* X16451Y23180D01* X16454Y23172D01* X16458Y23164D01* X16463Y23157D01* X16469Y23151D01* X16477Y23146D01* X16497Y23137D01* Y21852D01* X16491Y21849D01* X16483Y21845D01* X16477Y21839D01* X16472Y21832D01* X16468Y21824D01* X16466Y21815D01* X16465Y21807D01* X16465Y21798D01* X16468Y21790D01* X16471Y21782D01* X16476Y21774D01* X16482Y21768D01* X16489Y21763D01* X16497Y21759D01* Y21234D01* X16494Y21233D01* X16487Y21228D01* X16481Y21221D01* X16476Y21214D01* X16473Y21206D01* X16471Y21197D01* X16470Y21189D01* X16471Y21180D01* X16474Y21172D01* X16478Y21164D01* X16483Y21157D01* X16489Y21151D01* X16497Y21147D01* Y19838D01* X16492Y19832D01* X16488Y19824D01* X16486Y19815D01* X16485Y19807D01* X16485Y19798D01* X16488Y19790D01* X16491Y19782D01* X16496Y19774D01* X16497Y19774D01* Y19215D01* X16496Y19214D01* X16493Y19206D01* X16491Y19197D01* X16490Y19189D01* X16491Y19180D01* X16494Y19172D01* X16497Y19167D01* Y13692D01* X16493Y13697D01* X16486Y13703D01* X16479Y13708D01* X16471Y13711D01* X16462Y13713D01* X16454Y13714D01* X16445Y13713D01* X16437Y13710D01* X16429Y13706D01* X16422Y13701D01* X16417Y13695D01* Y15285D01* X16420Y15283D01* X16429Y15281D01* X16437Y15280D01* X16446Y15281D01* X16455Y15283D01* X16463Y15286D01* X16470Y15291D01* X16476Y15297D01* X16481Y15304D01* X16485Y15312D01* X16487Y15320D01* X16488Y15329D01* X16488Y15338D01* X16486Y15346D01* X16482Y15354D01* X16470Y15378D01* X16460Y15404D01* X16453Y15430D01* X16448Y15456D01* X16445Y15483D01* X16445Y15511D01* X16447Y15538D01* X16452Y15564D01* X16459Y15590D01* X16468Y15616D01* X16480Y15640D01* X16483Y15649D01* X16485Y15657D01* X16485Y15666D01* X16484Y15674D01* X16482Y15683D01* X16478Y15690D01* X16473Y15697D01* X16466Y15703D01* X16459Y15708D01* X16451Y15711D01* X16442Y15713D01* X16434Y15714D01* X16425Y15713D01* X16417Y15710D01* X16417Y15710D01* Y17280D01* X16417Y17280D01* X16426Y17281D01* X16435Y17283D01* X16443Y17286D01* X16450Y17291D01* X16456Y17297D01* X16461Y17304D01* X16465Y17312D01* X16467Y17320D01* X16468Y17329D01* X16468Y17338D01* X16466Y17346D01* X16462Y17354D01* X16450Y17378D01* X16440Y17404D01* X16433Y17430D01* X16428Y17456D01* X16425Y17483D01* X16425Y17511D01* X16427Y17538D01* X16432Y17564D01* X16439Y17590D01* X16448Y17616D01* X16460Y17640D01* X16463Y17649D01* X16465Y17657D01* X16465Y17666D01* X16464Y17674D01* X16462Y17683D01* X16458Y17690D01* X16453Y17697D01* X16446Y17703D01* X16439Y17708D01* X16431Y17711D01* X16422Y17713D01* X16417Y17714D01* Y19284D01* X16423Y19286D01* X16430Y19291D01* X16436Y19297D01* X16441Y19304D01* X16445Y19312D01* X16447Y19320D01* X16448Y19329D01* X16448Y19338D01* X16446Y19346D01* X16442Y19354D01* X16430Y19378D01* X16420Y19404D01* X16417Y19417D01* Y19583D01* X16419Y19590D01* X16428Y19616D01* X16440Y19640D01* X16443Y19649D01* X16445Y19657D01* X16445Y19666D01* X16444Y19674D01* X16442Y19683D01* X16438Y19690D01* X16433Y19697D01* X16426Y19703D01* X16419Y19708D01* X16417Y19709D01* Y21298D01* X16421Y21304D01* X16425Y21312D01* X16427Y21320D01* X16428Y21329D01* X16428Y21338D01* X16426Y21346D01* X16422Y21354D01* X16417Y21365D01* Y21634D01* X16420Y21640D01* X16423Y21649D01* X16425Y21657D01* X16425Y21666D01* X16424Y21674D01* X16422Y21683D01* X16418Y21690D01* X16417Y21692D01* Y27167D01* G37* G36* X16497Y0D02*X16417D01* Y9403D01* X16425Y9372D01* X16439Y9338D01* X16455Y9306D01* X16459Y9299D01* X16465Y9292D01* X16473Y9287D01* X16480Y9283D01* X16489Y9281D01* X16497Y9280D01* Y7710D01* X16489Y7706D01* X16482Y7701D01* X16476Y7695D01* X16471Y7687D01* X16456Y7655D01* X16443Y7621D01* X16434Y7586D01* X16428Y7550D01* X16425Y7514D01* X16425Y7478D01* X16429Y7442D01* X16435Y7407D01* X16445Y7372D01* X16459Y7338D01* X16475Y7306D01* X16479Y7299D01* X16485Y7292D01* X16493Y7287D01* X16497Y7285D01* Y5695D01* X16496Y5695D01* X16491Y5687D01* X16476Y5655D01* X16463Y5621D01* X16454Y5586D01* X16448Y5550D01* X16445Y5514D01* X16445Y5478D01* X16449Y5442D01* X16455Y5407D01* X16465Y5372D01* X16479Y5338D01* X16495Y5306D01* X16497Y5303D01* Y3656D01* X16496Y3655D01* X16483Y3621D01* X16474Y3586D01* X16468Y3550D01* X16465Y3514D01* X16465Y3478D01* X16469Y3442D01* X16475Y3407D01* X16485Y3372D01* X16497Y3343D01* Y1596D01* X16494Y1586D01* X16488Y1550D01* X16485Y1514D01* X16485Y1478D01* X16489Y1442D01* X16495Y1407D01* X16497Y1403D01* Y0D01* G37* G36* Y9714D02*X16494Y9714D01* X16485Y9713D01* X16477Y9710D01* X16469Y9706D01* X16462Y9701D01* X16456Y9695D01* X16451Y9687D01* X16436Y9655D01* X16423Y9621D01* X16417Y9596D01* Y11343D01* X16419Y11338D01* X16435Y11306D01* X16439Y11299D01* X16445Y11292D01* X16453Y11287D01* X16460Y11283D01* X16469Y11281D01* X16477Y11280D01* X16486Y11281D01* X16495Y11283D01* X16497Y11284D01* Y9714D01* G37* G36* Y11417D02*X16493Y11430D01* X16488Y11456D01* X16485Y11483D01* X16485Y11511D01* X16487Y11538D01* X16492Y11564D01* X16497Y11583D01* Y11417D01* G37* G36* Y11709D02*X16491Y11711D01* X16482Y11713D01* X16474Y11714D01* X16465Y11713D01* X16457Y11710D01* X16449Y11706D01* X16442Y11701D01* X16436Y11695D01* X16431Y11687D01* X16417Y11656D01* Y13303D01* X16419Y13299D01* X16425Y13292D01* X16433Y13287D01* X16440Y13283D01* X16449Y13281D01* X16457Y13280D01* X16466Y13281D01* X16475Y13283D01* X16483Y13286D01* X16490Y13291D01* X16496Y13297D01* X16497Y13298D01* Y11709D01* G37* G36* Y13365D02*X16490Y13378D01* X16480Y13404D01* X16473Y13430D01* X16468Y13456D01* X16465Y13483D01* X16465Y13511D01* X16467Y13538D01* X16472Y13564D01* X16479Y13590D01* X16488Y13616D01* X16497Y13634D01* Y13365D01* G37* G36* Y27121D02*X16503Y27118D01* X16538Y27109D01* X16574Y27103D01* X16610Y27100D01* X16646Y27100D01* X16667Y27102D01* Y25899D01* X16659Y25899D01* X16623Y25899D01* X16587Y25895D01* X16551Y25889D01* X16517Y25879D01* X16497Y25871D01* Y27121D01* G37* G36* Y25761D02*X16499Y25762D01* X16523Y25774D01* X16549Y25784D01* X16575Y25791D01* X16601Y25796D01* X16628Y25799D01* X16655Y25799D01* X16667Y25798D01* Y25201D01* X16661Y25200D01* X16634Y25200D01* X16607Y25202D01* X16580Y25207D01* X16554Y25214D01* X16528Y25223D01* X16504Y25235D01* X16497Y25238D01* Y25761D01* G37* G36* Y25128D02*X16523Y25118D01* X16558Y25109D01* X16594Y25103D01* X16630Y25100D01* X16666Y25100D01* X16667Y25100D01* Y23899D01* X16643Y23899D01* X16607Y23895D01* X16571Y23889D01* X16537Y23879D01* X16503Y23866D01* X16497Y23862D01* Y25128D01* G37* G36* Y23756D02*X16503Y23756D01* X16511Y23758D01* X16519Y23762D01* X16543Y23774D01* X16569Y23784D01* X16595Y23791D01* X16621Y23796D01* X16648Y23799D01* X16667Y23799D01* Y23200D01* X16654Y23200D01* X16627Y23202D01* X16600Y23207D01* X16574Y23214D01* X16548Y23223D01* X16524Y23235D01* X16516Y23238D01* X16507Y23240D01* X16498Y23240D01* X16497Y23240D01* Y23756D01* G37* G36* Y23137D02*X16509Y23131D01* X16543Y23118D01* X16578Y23109D01* X16614Y23103D01* X16650Y23100D01* X16667Y23100D01* Y21899D01* X16663D01* X16627Y21895D01* X16591Y21889D01* X16557Y21879D01* X16523Y21866D01* X16497Y21852D01* Y23137D01* G37* G36* Y21759D02*X16497Y21759D01* X16505Y21757D01* X16514Y21756D01* X16523Y21756D01* X16531Y21758D01* X16539Y21762D01* X16563Y21774D01* X16589Y21784D01* X16615Y21791D01* X16641Y21796D01* X16667Y21799D01* Y21200D01* X16647Y21202D01* X16620Y21207D01* X16594Y21214D01* X16568Y21223D01* X16544Y21235D01* X16536Y21238D01* X16527Y21240D01* X16518Y21240D01* X16510Y21239D01* X16501Y21237D01* X16497Y21234D01* Y21759D01* G37* G36* Y21147D02*X16497Y21146D01* X16529Y21131D01* X16563Y21118D01* X16598Y21109D01* X16634Y21103D01* X16667Y21100D01* Y19897D01* X16647Y19895D01* X16611Y19889D01* X16577Y19879D01* X16543Y19866D01* X16511Y19849D01* X16503Y19845D01* X16497Y19839D01* X16497Y19838D01* Y21147D01* G37* G36* Y19774D02*X16502Y19768D01* X16509Y19763D01* X16517Y19759D01* X16525Y19757D01* X16534Y19756D01* X16543Y19756D01* X16551Y19758D01* X16559Y19762D01* X16583Y19774D01* X16609Y19784D01* X16635Y19791D01* X16661Y19796D01* X16667Y19797D01* Y19202D01* X16667Y19202D01* X16640Y19207D01* X16614Y19214D01* X16588Y19223D01* X16564Y19235D01* X16556Y19238D01* X16547Y19240D01* X16538Y19240D01* X16530Y19239D01* X16521Y19237D01* X16514Y19233D01* X16507Y19228D01* X16501Y19221D01* X16497Y19215D01* Y19774D01* G37* G36* Y19167D02*X16498Y19164D01* X16503Y19157D01* X16509Y19151D01* X16517Y19146D01* X16549Y19131D01* X16583Y19118D01* X16618Y19109D01* X16654Y19103D01* X16667Y19102D01* Y17895D01* X16667D01* X16631Y17889D01* X16597Y17879D01* X16563Y17866D01* X16531Y17849D01* X16523Y17845D01* X16517Y17839D01* X16512Y17832D01* X16508Y17824D01* X16506Y17815D01* X16505Y17807D01* X16505Y17798D01* X16508Y17790D01* X16511Y17782D01* X16516Y17774D01* X16522Y17768D01* X16529Y17763D01* X16537Y17759D01* X16545Y17757D01* X16554Y17756D01* X16563Y17756D01* X16571Y17758D01* X16579Y17762D01* X16603Y17774D01* X16629Y17784D01* X16655Y17791D01* X16667Y17794D01* Y17205D01* X16660Y17207D01* X16634Y17214D01* X16608Y17223D01* X16584Y17235D01* X16576Y17238D01* X16567Y17240D01* X16558Y17240D01* X16550Y17239D01* X16541Y17237D01* X16534Y17233D01* X16527Y17228D01* X16521Y17221D01* X16516Y17214D01* X16513Y17206D01* X16511Y17197D01* X16510Y17189D01* X16511Y17180D01* X16514Y17172D01* X16518Y17164D01* X16523Y17157D01* X16529Y17151D01* X16537Y17146D01* X16569Y17131D01* X16603Y17118D01* X16638Y17109D01* X16667Y17104D01* Y15892D01* X16651Y15889D01* X16617Y15879D01* X16583Y15866D01* X16551Y15849D01* X16543Y15845D01* X16537Y15839D01* X16532Y15832D01* X16528Y15824D01* X16526Y15815D01* X16525Y15807D01* X16525Y15798D01* X16528Y15790D01* X16531Y15782D01* X16536Y15774D01* X16542Y15768D01* X16549Y15763D01* X16557Y15759D01* X16565Y15757D01* X16574Y15756D01* X16583Y15756D01* X16591Y15758D01* X16599Y15762D01* X16623Y15774D01* X16649Y15784D01* X16667Y15789D01* Y15210D01* X16654Y15214D01* X16628Y15223D01* X16604Y15235D01* X16596Y15238D01* X16587Y15240D01* X16578Y15240D01* X16570Y15239D01* X16561Y15237D01* X16554Y15233D01* X16547Y15228D01* X16541Y15221D01* X16536Y15214D01* X16533Y15206D01* X16531Y15197D01* X16530Y15189D01* X16531Y15180D01* X16534Y15172D01* X16538Y15164D01* X16543Y15157D01* X16549Y15151D01* X16557Y15146D01* X16589Y15131D01* X16623Y15118D01* X16658Y15109D01* X16667Y15107D01* Y13887D01* X16637Y13879D01* X16603Y13866D01* X16571Y13849D01* X16563Y13845D01* X16557Y13839D01* X16552Y13832D01* X16548Y13824D01* X16546Y13815D01* X16545Y13807D01* X16545Y13798D01* X16548Y13790D01* X16551Y13782D01* X16556Y13774D01* X16562Y13768D01* X16569Y13763D01* X16577Y13759D01* X16585Y13757D01* X16594Y13756D01* X16603Y13756D01* X16611Y13758D01* X16619Y13762D01* X16643Y13774D01* X16667Y13783D01* Y13216D01* X16648Y13223D01* X16624Y13235D01* X16616Y13238D01* X16607Y13240D01* X16598Y13240D01* X16590Y13239D01* X16581Y13237D01* X16574Y13233D01* X16567Y13228D01* X16561Y13221D01* X16556Y13214D01* X16553Y13206D01* X16551Y13197D01* X16550Y13189D01* X16551Y13180D01* X16554Y13172D01* X16558Y13164D01* X16563Y13157D01* X16569Y13151D01* X16577Y13146D01* X16609Y13131D01* X16643Y13118D01* X16667Y13112D01* Y11882D01* X16657Y11879D01* X16623Y11866D01* X16591Y11849D01* X16583Y11845D01* X16577Y11839D01* X16572Y11832D01* X16568Y11824D01* X16566Y11815D01* X16565Y11807D01* X16565Y11798D01* X16568Y11790D01* X16571Y11782D01* X16576Y11774D01* X16582Y11768D01* X16589Y11763D01* X16597Y11759D01* X16605Y11757D01* X16614Y11756D01* X16623Y11756D01* X16631Y11758D01* X16639Y11762D01* X16663Y11774D01* X16667Y11776D01* Y11223D01* X16644Y11235D01* X16636Y11238D01* X16627Y11240D01* X16618Y11240D01* X16610Y11239D01* X16601Y11237D01* X16594Y11233D01* X16587Y11228D01* X16581Y11221D01* X16576Y11214D01* X16573Y11206D01* X16571Y11197D01* X16570Y11189D01* X16571Y11180D01* X16574Y11172D01* X16578Y11164D01* X16583Y11157D01* X16589Y11151D01* X16597Y11146D01* X16629Y11131D01* X16663Y11118D01* X16667Y11117D01* Y9875D01* X16643Y9866D01* X16611Y9849D01* X16603Y9845D01* X16597Y9839D01* X16592Y9832D01* X16588Y9824D01* X16586Y9815D01* X16585Y9807D01* X16585Y9798D01* X16588Y9790D01* X16591Y9782D01* X16596Y9774D01* X16602Y9768D01* X16609Y9763D01* X16617Y9759D01* X16625Y9757D01* X16634Y9756D01* X16643Y9756D01* X16651Y9758D01* X16659Y9762D01* X16667Y9766D01* Y9233D01* X16664Y9235D01* X16656Y9238D01* X16647Y9240D01* X16638Y9240D01* X16630Y9239D01* X16621Y9237D01* X16614Y9233D01* X16607Y9228D01* X16601Y9221D01* X16596Y9214D01* X16593Y9206D01* X16591Y9197D01* X16590Y9189D01* X16591Y9180D01* X16594Y9172D01* X16598Y9164D01* X16603Y9157D01* X16609Y9151D01* X16617Y9146D01* X16649Y9131D01* X16667Y9124D01* Y7867D01* X16663Y7866D01* X16631Y7849D01* X16623Y7845D01* X16617Y7839D01* X16612Y7832D01* X16608Y7824D01* X16606Y7815D01* X16605Y7807D01* X16605Y7798D01* X16608Y7790D01* X16611Y7782D01* X16616Y7774D01* X16622Y7768D01* X16629Y7763D01* X16637Y7759D01* X16645Y7757D01* X16654Y7756D01* X16663Y7756D01* X16667Y7757D01* Y7240D01* X16667D01* X16658Y7240D01* X16650Y7239D01* X16641Y7237D01* X16634Y7233D01* X16627Y7228D01* X16621Y7221D01* X16616Y7214D01* X16613Y7206D01* X16611Y7197D01* X16610Y7189D01* X16611Y7180D01* X16614Y7172D01* X16618Y7164D01* X16623Y7157D01* X16629Y7151D01* X16637Y7146D01* X16667Y7132D01* Y5858D01* X16651Y5849D01* X16643Y5845D01* X16637Y5839D01* X16632Y5832D01* X16628Y5824D01* X16626Y5815D01* X16625Y5807D01* X16625Y5798D01* X16628Y5790D01* X16631Y5782D01* X16636Y5774D01* X16642Y5768D01* X16649Y5763D01* X16657Y5759D01* X16665Y5757D01* X16667Y5756D01* Y5239D01* X16661Y5237D01* X16654Y5233D01* X16647Y5228D01* X16641Y5221D01* X16636Y5214D01* X16633Y5206D01* X16631Y5197D01* X16630Y5189D01* X16631Y5180D01* X16634Y5172D01* X16638Y5164D01* X16643Y5157D01* X16649Y5151D01* X16657Y5146D01* X16667Y5141D01* Y3847D01* X16663Y3845D01* X16657Y3839D01* X16652Y3832D01* X16648Y3824D01* X16646Y3815D01* X16645Y3807D01* X16645Y3798D01* X16648Y3790D01* X16651Y3782D01* X16656Y3774D01* X16662Y3768D01* X16667Y3764D01* Y3228D01* X16667Y3228D01* X16661Y3221D01* X16656Y3214D01* X16653Y3206D01* X16651Y3197D01* X16650Y3189D01* X16651Y3180D01* X16654Y3172D01* X16658Y3164D01* X16663Y3157D01* X16667Y3153D01* Y1821D01* X16666Y1815D01* X16665Y1807D01* X16665Y1798D01* X16667Y1791D01* Y0D01* X16497D01* Y1403D01* X16505Y1372D01* X16519Y1338D01* X16535Y1306D01* X16539Y1299D01* X16545Y1292D01* X16553Y1287D01* X16560Y1283D01* X16569Y1281D01* X16577Y1280D01* X16586Y1281D01* X16595Y1283D01* X16603Y1286D01* X16610Y1291D01* X16616Y1297D01* X16621Y1304D01* X16625Y1312D01* X16627Y1320D01* X16628Y1329D01* X16628Y1338D01* X16626Y1346D01* X16622Y1354D01* X16610Y1378D01* X16600Y1404D01* X16593Y1430D01* X16588Y1456D01* X16585Y1483D01* X16585Y1511D01* X16587Y1538D01* X16592Y1564D01* X16599Y1590D01* X16608Y1616D01* X16620Y1640D01* X16623Y1649D01* X16625Y1657D01* X16625Y1666D01* X16624Y1674D01* X16622Y1683D01* X16618Y1690D01* X16613Y1697D01* X16606Y1703D01* X16599Y1708D01* X16591Y1711D01* X16582Y1713D01* X16574Y1714D01* X16565Y1713D01* X16557Y1710D01* X16549Y1706D01* X16542Y1701D01* X16536Y1695D01* X16531Y1687D01* X16516Y1655D01* X16503Y1621D01* X16497Y1596D01* Y3343D01* X16499Y3338D01* X16515Y3306D01* X16519Y3299D01* X16525Y3292D01* X16533Y3287D01* X16540Y3283D01* X16549Y3281D01* X16557Y3280D01* X16566Y3281D01* X16575Y3283D01* X16583Y3286D01* X16590Y3291D01* X16596Y3297D01* X16601Y3304D01* X16605Y3312D01* X16607Y3320D01* X16608Y3329D01* X16608Y3338D01* X16606Y3346D01* X16602Y3354D01* X16590Y3378D01* X16580Y3404D01* X16573Y3430D01* X16568Y3456D01* X16565Y3483D01* X16565Y3511D01* X16567Y3538D01* X16572Y3564D01* X16579Y3590D01* X16588Y3616D01* X16600Y3640D01* X16603Y3649D01* X16605Y3657D01* X16605Y3666D01* X16604Y3674D01* X16602Y3683D01* X16598Y3690D01* X16593Y3697D01* X16586Y3703D01* X16579Y3708D01* X16571Y3711D01* X16562Y3713D01* X16554Y3714D01* X16545Y3713D01* X16537Y3710D01* X16529Y3706D01* X16522Y3701D01* X16516Y3695D01* X16511Y3687D01* X16497Y3656D01* Y5303D01* X16499Y5299D01* X16505Y5292D01* X16513Y5287D01* X16520Y5283D01* X16529Y5281D01* X16537Y5280D01* X16546Y5281D01* X16555Y5283D01* X16563Y5286D01* X16570Y5291D01* X16576Y5297D01* X16581Y5304D01* X16585Y5312D01* X16587Y5320D01* X16588Y5329D01* X16588Y5338D01* X16586Y5346D01* X16582Y5354D01* X16570Y5378D01* X16560Y5404D01* X16553Y5430D01* X16548Y5456D01* X16545Y5483D01* X16545Y5511D01* X16547Y5538D01* X16552Y5564D01* X16559Y5590D01* X16568Y5616D01* X16580Y5640D01* X16583Y5649D01* X16585Y5657D01* X16585Y5666D01* X16584Y5674D01* X16582Y5683D01* X16578Y5690D01* X16573Y5697D01* X16566Y5703D01* X16559Y5708D01* X16551Y5711D01* X16542Y5713D01* X16534Y5714D01* X16525Y5713D01* X16517Y5710D01* X16509Y5706D01* X16502Y5701D01* X16497Y5695D01* Y7285D01* X16500Y7283D01* X16509Y7281D01* X16517Y7280D01* X16526Y7281D01* X16535Y7283D01* X16543Y7286D01* X16550Y7291D01* X16556Y7297D01* X16561Y7304D01* X16565Y7312D01* X16567Y7320D01* X16568Y7329D01* X16568Y7338D01* X16566Y7346D01* X16562Y7354D01* X16550Y7378D01* X16540Y7404D01* X16533Y7430D01* X16528Y7456D01* X16525Y7483D01* X16525Y7511D01* X16527Y7538D01* X16532Y7564D01* X16539Y7590D01* X16548Y7616D01* X16560Y7640D01* X16563Y7649D01* X16565Y7657D01* X16565Y7666D01* X16564Y7674D01* X16562Y7683D01* X16558Y7690D01* X16553Y7697D01* X16546Y7703D01* X16539Y7708D01* X16531Y7711D01* X16522Y7713D01* X16514Y7714D01* X16505Y7713D01* X16497Y7710D01* X16497Y7710D01* Y9280D01* X16497Y9280D01* X16506Y9281D01* X16515Y9283D01* X16523Y9286D01* X16530Y9291D01* X16536Y9297D01* X16541Y9304D01* X16545Y9312D01* X16547Y9320D01* X16548Y9329D01* X16548Y9338D01* X16546Y9346D01* X16542Y9354D01* X16530Y9378D01* X16520Y9404D01* X16513Y9430D01* X16508Y9456D01* X16505Y9483D01* X16505Y9511D01* X16507Y9538D01* X16512Y9564D01* X16519Y9590D01* X16528Y9616D01* X16540Y9640D01* X16543Y9649D01* X16545Y9657D01* X16545Y9666D01* X16544Y9674D01* X16542Y9683D01* X16538Y9690D01* X16533Y9697D01* X16526Y9703D01* X16519Y9708D01* X16511Y9711D01* X16502Y9713D01* X16497Y9714D01* Y11284D01* X16503Y11286D01* X16510Y11291D01* X16516Y11297D01* X16521Y11304D01* X16525Y11312D01* X16527Y11320D01* X16528Y11329D01* X16528Y11338D01* X16526Y11346D01* X16522Y11354D01* X16510Y11378D01* X16500Y11404D01* X16497Y11417D01* Y11583D01* X16499Y11590D01* X16508Y11616D01* X16520Y11640D01* X16523Y11649D01* X16525Y11657D01* X16525Y11666D01* X16524Y11674D01* X16522Y11683D01* X16518Y11690D01* X16513Y11697D01* X16506Y11703D01* X16499Y11708D01* X16497Y11709D01* Y13298D01* X16501Y13304D01* X16505Y13312D01* X16507Y13320D01* X16508Y13329D01* X16508Y13338D01* X16506Y13346D01* X16502Y13354D01* X16497Y13365D01* Y13634D01* X16500Y13640D01* X16503Y13649D01* X16505Y13657D01* X16505Y13666D01* X16504Y13674D01* X16502Y13683D01* X16498Y13690D01* X16497Y13692D01* Y19167D01* G37* G36* X16667Y40000D02*X16832D01* Y39714D01* X16829Y39716D01* X16820Y39718D01* X16812Y39719D01* X16803Y39719D01* X16794Y39717D01* X16786Y39713D01* X16779Y39708D01* X16773Y39702D01* X16768Y39695D01* X16764Y39687D01* X16762Y39679D01* X16761Y39670D01* X16761Y39661D01* X16763Y39653D01* X16767Y39645D01* X16779Y39621D01* X16789Y39595D01* X16796Y39569D01* X16801Y39543D01* X16804Y39516D01* X16804Y39489D01* X16802Y39462D01* X16797Y39435D01* X16790Y39409D01* X16781Y39383D01* X16769Y39359D01* X16766Y39351D01* X16764Y39342D01* X16764Y39333D01* X16765Y39325D01* X16767Y39317D01* X16771Y39309D01* X16776Y39302D01* X16783Y39296D01* X16790Y39291D01* X16798Y39288D01* X16807Y39286D01* X16815Y39285D01* X16824Y39286D01* X16832Y39289D01* X16832Y39289D01* Y37719D01* X16832Y37719D01* X16823Y37719D01* X16814Y37717D01* X16806Y37713D01* X16799Y37708D01* X16793Y37702D01* X16788Y37695D01* X16784Y37687D01* X16782Y37679D01* X16781Y37670D01* X16781Y37661D01* X16783Y37653D01* X16787Y37645D01* X16799Y37621D01* X16809Y37595D01* X16816Y37569D01* X16821Y37543D01* X16824Y37516D01* X16824Y37489D01* X16822Y37462D01* X16817Y37435D01* X16810Y37409D01* X16801Y37383D01* X16789Y37359D01* X16786Y37351D01* X16784Y37342D01* X16784Y37333D01* X16785Y37325D01* X16787Y37317D01* X16791Y37309D01* X16796Y37302D01* X16803Y37296D01* X16810Y37291D01* X16818Y37288D01* X16827Y37286D01* X16832Y37286D01* Y35716D01* X16826Y35713D01* X16819Y35708D01* X16813Y35702D01* X16808Y35695D01* X16804Y35687D01* X16802Y35679D01* X16801Y35670D01* X16801Y35661D01* X16803Y35653D01* X16807Y35645D01* X16819Y35621D01* X16829Y35595D01* X16832Y35583D01* Y35416D01* X16830Y35409D01* X16821Y35383D01* X16809Y35359D01* X16806Y35351D01* X16804Y35342D01* X16804Y35333D01* X16805Y35325D01* X16807Y35317D01* X16811Y35309D01* X16816Y35302D01* X16823Y35296D01* X16830Y35291D01* X16832Y35290D01* Y33701D01* X16828Y33695D01* X16824Y33687D01* X16822Y33679D01* X16821Y33670D01* X16821Y33661D01* X16823Y33653D01* X16827Y33645D01* X16832Y33634D01* Y33365D01* X16829Y33359D01* X16826Y33351D01* X16824Y33342D01* X16824Y33333D01* X16825Y33325D01* X16827Y33317D01* X16831Y33309D01* X16832Y33307D01* Y27833D01* X16831Y27835D01* X16826Y27842D01* X16820Y27848D01* X16812Y27853D01* X16780Y27868D01* X16746Y27881D01* X16711Y27890D01* X16675Y27896D01* X16667Y27897D01* Y29105D01* X16698Y29111D01* X16732Y29121D01* X16766Y29134D01* X16798Y29150D01* X16806Y29155D01* X16812Y29161D01* X16817Y29168D01* X16821Y29175D01* X16823Y29184D01* X16824Y29193D01* X16824Y29201D01* X16821Y29210D01* X16818Y29218D01* X16813Y29225D01* X16807Y29231D01* X16800Y29236D01* X16792Y29240D01* X16784Y29243D01* X16775Y29243D01* X16766Y29243D01* X16758Y29241D01* X16750Y29237D01* X16726Y29225D01* X16700Y29215D01* X16674Y29208D01* X16667Y29206D01* Y29793D01* X16669Y29793D01* X16695Y29785D01* X16721Y29776D01* X16745Y29764D01* X16753Y29761D01* X16762Y29759D01* X16771Y29759D01* X16779Y29760D01* X16788Y29762D01* X16795Y29766D01* X16802Y29772D01* X16808Y29778D01* X16813Y29785D01* X16816Y29793D01* X16818Y29802D01* X16819Y29810D01* X16818Y29819D01* X16815Y29827D01* X16811Y29835D01* X16806Y29842D01* X16800Y29848D01* X16792Y29853D01* X16760Y29868D01* X16726Y29881D01* X16691Y29890D01* X16667Y29894D01* Y31109D01* X16678Y31111D01* X16712Y31121D01* X16746Y31134D01* X16778Y31150D01* X16786Y31155D01* X16792Y31161D01* X16797Y31168D01* X16801Y31175D01* X16803Y31184D01* X16804Y31193D01* X16804Y31201D01* X16801Y31210D01* X16798Y31218D01* X16793Y31225D01* X16787Y31231D01* X16780Y31236D01* X16772Y31240D01* X16764Y31243D01* X16755Y31243D01* X16746Y31243D01* X16738Y31241D01* X16730Y31237D01* X16706Y31225D01* X16680Y31215D01* X16667Y31212D01* Y31788D01* X16675Y31785D01* X16701Y31776D01* X16725Y31764D01* X16733Y31761D01* X16742Y31759D01* X16751Y31759D01* X16759Y31760D01* X16768Y31762D01* X16775Y31766D01* X16782Y31772D01* X16788Y31778D01* X16793Y31785D01* X16796Y31793D01* X16798Y31802D01* X16799Y31810D01* X16798Y31819D01* X16795Y31827D01* X16791Y31835D01* X16786Y31842D01* X16780Y31848D01* X16772Y31853D01* X16740Y31868D01* X16706Y31881D01* X16671Y31890D01* X16667Y31891D01* Y33113D01* X16692Y33121D01* X16726Y33134D01* X16758Y33150D01* X16766Y33155D01* X16772Y33161D01* X16777Y33168D01* X16781Y33175D01* X16783Y33184D01* X16784Y33193D01* X16784Y33201D01* X16781Y33210D01* X16778Y33218D01* X16773Y33225D01* X16767Y33231D01* X16760Y33236D01* X16752Y33240D01* X16744Y33243D01* X16735Y33243D01* X16726Y33243D01* X16718Y33241D01* X16710Y33237D01* X16686Y33225D01* X16667Y33218D01* Y33781D01* X16681Y33776D01* X16705Y33764D01* X16713Y33761D01* X16722Y33759D01* X16731Y33759D01* X16739Y33760D01* X16748Y33762D01* X16755Y33766D01* X16762Y33772D01* X16768Y33778D01* X16773Y33785D01* X16776Y33793D01* X16778Y33802D01* X16779Y33810D01* X16778Y33819D01* X16775Y33827D01* X16771Y33835D01* X16766Y33842D01* X16760Y33848D01* X16752Y33853D01* X16720Y33868D01* X16686Y33881D01* X16667Y33886D01* Y35119D01* X16672Y35121D01* X16706Y35134D01* X16738Y35150D01* X16746Y35155D01* X16752Y35161D01* X16757Y35168D01* X16761Y35175D01* X16763Y35184D01* X16764Y35193D01* X16764Y35201D01* X16761Y35210D01* X16758Y35218D01* X16753Y35225D01* X16747Y35231D01* X16740Y35236D01* X16732Y35240D01* X16724Y35243D01* X16715Y35243D01* X16706Y35243D01* X16698Y35241D01* X16690Y35237D01* X16667Y35226D01* Y35773D01* X16685Y35764D01* X16693Y35761D01* X16702Y35759D01* X16711Y35759D01* X16719Y35760D01* X16728Y35762D01* X16735Y35766D01* X16742Y35772D01* X16748Y35778D01* X16753Y35785D01* X16756Y35793D01* X16758Y35802D01* X16759Y35810D01* X16758Y35819D01* X16755Y35827D01* X16751Y35835D01* X16746Y35842D01* X16740Y35848D01* X16732Y35853D01* X16700Y35868D01* X16667Y35880D01* Y37126D01* X16686Y37134D01* X16718Y37150D01* X16726Y37155D01* X16732Y37161D01* X16737Y37168D01* X16741Y37175D01* X16743Y37184D01* X16744Y37193D01* X16744Y37201D01* X16741Y37210D01* X16738Y37218D01* X16733Y37225D01* X16727Y37231D01* X16720Y37236D01* X16712Y37240D01* X16704Y37243D01* X16695Y37243D01* X16686Y37243D01* X16678Y37241D01* X16670Y37237D01* X16667Y37236D01* Y37764D01* X16673Y37761D01* X16682Y37759D01* X16691Y37759D01* X16699Y37760D01* X16708Y37762D01* X16715Y37766D01* X16722Y37772D01* X16728Y37778D01* X16733Y37785D01* X16736Y37793D01* X16738Y37802D01* X16739Y37810D01* X16738Y37819D01* X16735Y37827D01* X16731Y37835D01* X16726Y37842D01* X16720Y37848D01* X16712Y37853D01* X16680Y37868D01* X16667Y37873D01* Y39134D01* X16698Y39150D01* X16706Y39155D01* X16712Y39161D01* X16717Y39168D01* X16721Y39175D01* X16723Y39184D01* X16724Y39193D01* X16724Y39201D01* X16721Y39210D01* X16718Y39218D01* X16713Y39225D01* X16707Y39231D01* X16700Y39236D01* X16692Y39240D01* X16684Y39243D01* X16675Y39243D01* X16667Y39243D01* Y39759D01* X16671Y39759D01* X16679Y39760D01* X16688Y39762D01* X16695Y39766D01* X16702Y39772D01* X16708Y39778D01* X16713Y39785D01* X16716Y39793D01* X16718Y39802D01* X16719Y39810D01* X16718Y39819D01* X16715Y39827D01* X16711Y39835D01* X16706Y39842D01* X16700Y39848D01* X16692Y39853D01* X16667Y39865D01* Y40000D01* G37* G36* X16832Y11897D02*X16799Y11899D01* X16763Y11899D01* X16727Y11895D01* X16691Y11889D01* X16667Y11882D01* Y13112D01* X16678Y13109D01* X16714Y13103D01* X16750Y13100D01* X16786Y13100D01* X16822Y13104D01* X16832Y13106D01* Y11897D01* G37* G36* Y13207D02*X16808Y13203D01* X16781Y13200D01* X16754Y13200D01* X16727Y13202D01* X16700Y13207D01* X16674Y13214D01* X16667Y13216D01* Y13783D01* X16669Y13784D01* X16695Y13791D01* X16721Y13796D01* X16748Y13799D01* X16775Y13799D01* X16802Y13797D01* X16829Y13793D01* X16832Y13792D01* Y13207D01* G37* G36* Y13893D02*X16815Y13896D01* X16779Y13899D01* X16743Y13899D01* X16707Y13895D01* X16671Y13889D01* X16667Y13887D01* Y15107D01* X16694Y15103D01* X16730Y15100D01* X16766Y15100D01* X16802Y15104D01* X16832Y15110D01* Y13893D01* G37* G36* Y15213D02*X16814Y15208D01* X16788Y15203D01* X16761Y15200D01* X16734Y15200D01* X16707Y15202D01* X16680Y15207D01* X16667Y15210D01* Y15789D01* X16675Y15791D01* X16701Y15796D01* X16728Y15799D01* X16755Y15799D01* X16782Y15797D01* X16809Y15793D01* X16832Y15786D01* Y15213D01* G37* G36* Y15890D02*X16831Y15890D01* X16795Y15896D01* X16759Y15899D01* X16723Y15899D01* X16687Y15895D01* X16667Y15892D01* Y17104D01* X16674Y17103D01* X16710Y17100D01* X16746Y17100D01* X16782Y17104D01* X16818Y17111D01* X16832Y17115D01* Y15890D01* G37* G36* Y17220D02*X16820Y17215D01* X16794Y17208D01* X16768Y17203D01* X16741Y17200D01* X16714Y17200D01* X16687Y17202D01* X16667Y17205D01* Y17794D01* X16681Y17796D01* X16708Y17799D01* X16735Y17799D01* X16762Y17797D01* X16789Y17793D01* X16815Y17785D01* X16832Y17779D01* Y17220D01* G37* G36* Y17884D02*X16811Y17890D01* X16775Y17896D01* X16739Y17899D01* X16703Y17899D01* X16667Y17895D01* Y19102D01* X16690Y19100D01* X16726Y19100D01* X16762Y19104D01* X16798Y19111D01* X16832Y19121D01* X16832D01* Y17884D01* G37* G36* Y19229D02*X16826Y19225D01* X16800Y19215D01* X16774Y19208D01* X16748Y19203D01* X16721Y19200D01* X16694Y19200D01* X16667Y19202D01* Y19797D01* X16688Y19799D01* X16715Y19799D01* X16742Y19797D01* X16769Y19793D01* X16795Y19785D01* X16821Y19776D01* X16832Y19771D01* Y19229D01* G37* G36* Y19878D02*X16826Y19881D01* X16791Y19890D01* X16755Y19896D01* X16719Y19899D01* X16683Y19899D01* X16667Y19897D01* Y21100D01* X16670Y21100D01* X16706Y21100D01* X16742Y21104D01* X16778Y21111D01* X16812Y21121D01* X16832Y21128D01* Y19878D01* G37* G36* Y21238D02*X16830Y21237D01* X16806Y21225D01* X16780Y21215D01* X16754Y21208D01* X16728Y21203D01* X16701Y21200D01* X16674Y21200D01* X16667Y21200D01* Y21799D01* X16668Y21799D01* X16695Y21799D01* X16722Y21797D01* X16749Y21793D01* X16775Y21785D01* X16801Y21776D01* X16825Y21764D01* X16832Y21762D01* Y21238D01* G37* G36* Y21871D02*X16806Y21881D01* X16771Y21890D01* X16735Y21896D01* X16699Y21899D01* X16667Y21899D01* Y23100D01* X16686Y23100D01* X16722Y23104D01* X16758Y23111D01* X16792Y23121D01* X16826Y23134D01* X16832Y23137D01* Y21871D01* G37* G36* Y23243D02*X16826Y23243D01* X16818Y23241D01* X16810Y23237D01* X16786Y23225D01* X16760Y23215D01* X16734Y23208D01* X16708Y23203D01* X16681Y23200D01* X16667Y23200D01* Y23799D01* X16675Y23799D01* X16702Y23797D01* X16729Y23793D01* X16755Y23785D01* X16781Y23776D01* X16805Y23764D01* X16813Y23761D01* X16822Y23759D01* X16831Y23759D01* X16832Y23759D01* Y23243D01* G37* G36* Y23862D02*X16820Y23868D01* X16786Y23881D01* X16751Y23890D01* X16715Y23896D01* X16679Y23899D01* X16667Y23899D01* Y25100D01* X16702Y25104D01* X16738Y25111D01* X16772Y25121D01* X16806Y25134D01* X16832Y25147D01* Y23862D01* G37* G36* Y25240D02*X16832Y25240D01* X16824Y25243D01* X16815Y25243D01* X16806Y25243D01* X16798Y25241D01* X16790Y25237D01* X16766Y25225D01* X16740Y25215D01* X16714Y25208D01* X16688Y25203D01* X16667Y25201D01* Y25798D01* X16682Y25797D01* X16709Y25793D01* X16735Y25785D01* X16761Y25776D01* X16785Y25764D01* X16793Y25761D01* X16802Y25759D01* X16811Y25759D01* X16819Y25760D01* X16828Y25762D01* X16832Y25765D01* Y25240D01* G37* G36* Y25853D02*X16832Y25853D01* X16800Y25868D01* X16766Y25881D01* X16731Y25890D01* X16695Y25896D01* X16667Y25899D01* Y27102D01* X16682Y27104D01* X16718Y27111D01* X16752Y27121D01* X16786Y27134D01* X16818Y27150D01* X16826Y27155D01* X16832Y27161D01* X16832Y27161D01* Y25853D01* G37* G36* Y27225D02*X16827Y27231D01* X16820Y27236D01* X16812Y27240D01* X16804Y27243D01* X16795Y27243D01* X16786Y27243D01* X16778Y27241D01* X16770Y27237D01* X16746Y27225D01* X16720Y27215D01* X16694Y27208D01* X16668Y27203D01* X16667D01* Y27796D01* X16689Y27793D01* X16715Y27785D01* X16741Y27776D01* X16765Y27764D01* X16773Y27761D01* X16782Y27759D01* X16791Y27759D01* X16799Y27760D01* X16808Y27762D01* X16815Y27766D01* X16822Y27772D01* X16828Y27778D01* X16832Y27784D01* Y27225D01* G37* G36* Y40000D02*X16912D01* Y37596D01* X16904Y37627D01* X16890Y37661D01* X16874Y37694D01* X16870Y37701D01* X16864Y37707D01* X16856Y37712D01* X16849Y37716D01* X16840Y37718D01* X16832Y37719D01* Y39289D01* X16840Y39293D01* X16847Y39298D01* X16853Y39305D01* X16858Y39312D01* X16873Y39344D01* X16886Y39378D01* X16895Y39413D01* X16901Y39449D01* X16904Y39485D01* X16904Y39521D01* X16900Y39557D01* X16894Y39593D01* X16884Y39627D01* X16870Y39661D01* X16854Y39694D01* X16850Y39701D01* X16844Y39707D01* X16836Y39712D01* X16832Y39714D01* Y40000D01* G37* G36* X16912Y29719D02*X16912Y29719D01* X16903Y29719D01* X16894Y29717D01* X16886Y29713D01* X16879Y29708D01* X16873Y29702D01* X16868Y29695D01* X16864Y29687D01* X16862Y29679D01* X16861Y29670D01* X16861Y29661D01* X16863Y29653D01* X16867Y29645D01* X16879Y29621D01* X16889Y29595D01* X16896Y29569D01* X16901Y29543D01* X16904Y29516D01* X16904Y29489D01* X16902Y29462D01* X16897Y29435D01* X16890Y29409D01* X16881Y29383D01* X16869Y29359D01* X16866Y29351D01* X16864Y29342D01* X16864Y29333D01* X16865Y29325D01* X16867Y29317D01* X16871Y29309D01* X16876Y29302D01* X16883Y29296D01* X16890Y29291D01* X16898Y29288D01* X16907Y29286D01* X16912Y29286D01* Y27716D01* X16906Y27713D01* X16899Y27708D01* X16893Y27702D01* X16888Y27695D01* X16884Y27687D01* X16882Y27679D01* X16881Y27670D01* X16881Y27661D01* X16883Y27653D01* X16887Y27645D01* X16899Y27621D01* X16909Y27595D01* X16912Y27583D01* Y27416D01* X16910Y27409D01* X16901Y27383D01* X16889Y27359D01* X16886Y27351D01* X16884Y27342D01* X16884Y27333D01* X16885Y27325D01* X16887Y27317D01* X16891Y27309D01* X16896Y27302D01* X16903Y27296D01* X16910Y27291D01* X16912Y27290D01* Y25701D01* X16908Y25695D01* X16904Y25687D01* X16902Y25679D01* X16901Y25670D01* X16901Y25661D01* X16903Y25653D01* X16907Y25645D01* X16912Y25634D01* Y25365D01* X16909Y25359D01* X16906Y25351D01* X16904Y25342D01* X16904Y25333D01* X16905Y25325D01* X16907Y25317D01* X16911Y25309D01* X16912Y25307D01* Y19833D01* X16911Y19835D01* X16906Y19842D01* X16900Y19848D01* X16892Y19853D01* X16860Y19868D01* X16832Y19878D01* Y21128D01* X16846Y21134D01* X16878Y21150D01* X16886Y21155D01* X16892Y21161D01* X16897Y21168D01* X16901Y21175D01* X16903Y21184D01* X16904Y21193D01* X16904Y21201D01* X16901Y21210D01* X16898Y21218D01* X16893Y21225D01* X16887Y21231D01* X16880Y21236D01* X16872Y21240D01* X16864Y21243D01* X16855Y21243D01* X16846Y21243D01* X16838Y21241D01* X16832Y21238D01* Y21762D01* X16833Y21761D01* X16842Y21759D01* X16851Y21759D01* X16859Y21760D01* X16868Y21762D01* X16875Y21766D01* X16882Y21772D01* X16888Y21778D01* X16893Y21785D01* X16896Y21793D01* X16898Y21802D01* X16899Y21810D01* X16898Y21819D01* X16895Y21827D01* X16891Y21835D01* X16886Y21842D01* X16880Y21848D01* X16872Y21853D01* X16840Y21868D01* X16832Y21871D01* Y23137D01* X16858Y23150D01* X16866Y23155D01* X16872Y23161D01* X16877Y23168D01* X16881Y23175D01* X16883Y23184D01* X16884Y23193D01* X16884Y23201D01* X16881Y23210D01* X16878Y23218D01* X16873Y23225D01* X16867Y23231D01* X16860Y23236D01* X16852Y23240D01* X16844Y23243D01* X16835Y23243D01* X16832Y23243D01* Y23759D01* X16839Y23760D01* X16848Y23762D01* X16855Y23766D01* X16862Y23772D01* X16868Y23778D01* X16873Y23785D01* X16876Y23793D01* X16878Y23802D01* X16879Y23810D01* X16878Y23819D01* X16875Y23827D01* X16871Y23835D01* X16866Y23842D01* X16860Y23848D01* X16852Y23853D01* X16832Y23862D01* Y25147D01* X16838Y25150D01* X16846Y25155D01* X16852Y25161D01* X16857Y25168D01* X16861Y25175D01* X16863Y25184D01* X16864Y25193D01* X16864Y25201D01* X16861Y25210D01* X16858Y25218D01* X16853Y25225D01* X16847Y25231D01* X16840Y25236D01* X16832Y25240D01* Y25765D01* X16835Y25766D01* X16842Y25772D01* X16848Y25778D01* X16853Y25785D01* X16856Y25793D01* X16858Y25802D01* X16859Y25810D01* X16858Y25819D01* X16855Y25827D01* X16851Y25835D01* X16846Y25842D01* X16840Y25848D01* X16832Y25853D01* Y27161D01* X16837Y27168D01* X16841Y27175D01* X16843Y27184D01* X16844Y27193D01* X16844Y27201D01* X16841Y27210D01* X16838Y27218D01* X16833Y27225D01* X16832Y27225D01* Y27784D01* X16833Y27785D01* X16836Y27793D01* X16838Y27802D01* X16839Y27810D01* X16838Y27819D01* X16835Y27827D01* X16832Y27833D01* Y33307D01* X16836Y33302D01* X16843Y33296D01* X16850Y33291D01* X16858Y33288D01* X16867Y33286D01* X16875Y33285D01* X16884Y33286D01* X16892Y33289D01* X16900Y33293D01* X16907Y33298D01* X16912Y33304D01* Y31714D01* X16909Y31716D01* X16900Y31718D01* X16892Y31719D01* X16883Y31719D01* X16874Y31717D01* X16866Y31713D01* X16859Y31708D01* X16853Y31702D01* X16848Y31695D01* X16844Y31687D01* X16842Y31679D01* X16841Y31670D01* X16841Y31661D01* X16843Y31653D01* X16847Y31645D01* X16859Y31621D01* X16869Y31595D01* X16876Y31569D01* X16881Y31543D01* X16884Y31516D01* X16884Y31489D01* X16882Y31462D01* X16877Y31435D01* X16870Y31409D01* X16861Y31383D01* X16849Y31359D01* X16846Y31351D01* X16844Y31342D01* X16844Y31333D01* X16845Y31325D01* X16847Y31317D01* X16851Y31309D01* X16856Y31302D01* X16863Y31296D01* X16870Y31291D01* X16878Y31288D01* X16887Y31286D01* X16895Y31285D01* X16904Y31286D01* X16912Y31289D01* X16912Y31289D01* Y29719D01* G37* G36* Y11878D02*X16906Y11881D01* X16871Y11890D01* X16835Y11896D01* X16832Y11897D01* Y13106D01* X16858Y13111D01* X16892Y13121D01* X16912Y13128D01* Y11878D01* G37* G36* Y13238D02*X16910Y13237D01* X16886Y13225D01* X16860Y13215D01* X16834Y13208D01* X16832Y13207D01* Y13792D01* X16855Y13785D01* X16881Y13776D01* X16905Y13764D01* X16912Y13762D01* Y13238D01* G37* G36* Y13871D02*X16886Y13881D01* X16851Y13890D01* X16832Y13893D01* Y15110D01* X16838Y15111D01* X16872Y15121D01* X16906Y15134D01* X16912Y15137D01* Y13871D01* G37* G36* Y15243D02*X16906Y15243D01* X16898Y15241D01* X16890Y15237D01* X16866Y15225D01* X16840Y15215D01* X16832Y15213D01* Y15786D01* X16835Y15785D01* X16861Y15776D01* X16885Y15764D01* X16893Y15761D01* X16902Y15759D01* X16911Y15759D01* X16912Y15759D01* Y15243D01* G37* G36* Y15862D02*X16900Y15868D01* X16866Y15881D01* X16832Y15890D01* Y17115D01* X16852Y17121D01* X16886Y17134D01* X16912Y17147D01* Y15862D01* G37* G36* Y17240D02*X16912Y17240D01* X16904Y17243D01* X16895Y17243D01* X16886Y17243D01* X16878Y17241D01* X16870Y17237D01* X16846Y17225D01* X16832Y17220D01* Y17779D01* X16841Y17776D01* X16865Y17764D01* X16873Y17761D01* X16882Y17759D01* X16891Y17759D01* X16899Y17760D01* X16908Y17762D01* X16912Y17765D01* Y17240D01* G37* G36* Y17853D02*X16912Y17853D01* X16880Y17868D01* X16846Y17881D01* X16832Y17884D01* Y19121D01* X16866Y19134D01* X16898Y19150D01* X16906Y19155D01* X16912Y19161D01* X16912Y19161D01* Y17853D01* G37* G36* Y19225D02*X16907Y19231D01* X16900Y19236D01* X16892Y19240D01* X16884Y19243D01* X16875Y19243D01* X16866Y19243D01* X16858Y19241D01* X16850Y19237D01* X16832Y19229D01* Y19771D01* X16845Y19764D01* X16853Y19761D01* X16862Y19759D01* X16871Y19759D01* X16879Y19760D01* X16888Y19762D01* X16895Y19766D01* X16902Y19772D01* X16908Y19778D01* X16912Y19784D01* Y19225D01* G37* G36* Y33696D02*X16910Y33701D01* X16904Y33707D01* X16896Y33712D01* X16889Y33716D01* X16880Y33718D01* X16872Y33719D01* X16863Y33719D01* X16854Y33717D01* X16846Y33713D01* X16839Y33708D01* X16833Y33702D01* X16832Y33701D01* Y35290D01* X16838Y35288D01* X16847Y35286D01* X16855Y35285D01* X16864Y35286D01* X16872Y35289D01* X16880Y35293D01* X16887Y35298D01* X16893Y35305D01* X16898Y35312D01* X16912Y35343D01* Y33696D01* G37* G36* Y35656D02*X16910Y35661D01* X16894Y35694D01* X16890Y35701D01* X16884Y35707D01* X16876Y35712D01* X16869Y35716D01* X16860Y35718D01* X16852Y35719D01* X16843Y35719D01* X16834Y35717D01* X16832Y35716D01* Y37286D01* X16835Y37285D01* X16844Y37286D01* X16852Y37289D01* X16860Y37293D01* X16867Y37298D01* X16873Y37305D01* X16878Y37312D01* X16893Y37344D01* X16906Y37378D01* X16912Y37404D01* Y35656D01* G37* G36* Y40000D02*X16992D01* Y29596D01* X16984Y29627D01* X16970Y29661D01* X16954Y29694D01* X16950Y29701D01* X16944Y29707D01* X16936Y29712D01* X16929Y29716D01* X16920Y29718D01* X16912Y29719D01* Y31289D01* X16920Y31293D01* X16927Y31298D01* X16933Y31305D01* X16938Y31312D01* X16953Y31344D01* X16966Y31378D01* X16975Y31413D01* X16981Y31449D01* X16984Y31485D01* X16984Y31521D01* X16980Y31557D01* X16974Y31593D01* X16964Y31627D01* X16950Y31661D01* X16934Y31694D01* X16930Y31701D01* X16924Y31707D01* X16916Y31712D01* X16912Y31714D01* Y33304D01* X16913Y33305D01* X16918Y33312D01* X16933Y33344D01* X16946Y33378D01* X16955Y33413D01* X16961Y33449D01* X16964Y33485D01* X16964Y33521D01* X16960Y33557D01* X16954Y33593D01* X16944Y33627D01* X16930Y33661D01* X16914Y33694D01* X16912Y33696D01* Y35343D01* X16913Y35344D01* X16926Y35378D01* X16935Y35413D01* X16941Y35449D01* X16944Y35485D01* X16944Y35521D01* X16940Y35557D01* X16934Y35593D01* X16924Y35627D01* X16912Y35656D01* Y37404D01* X16915Y37413D01* X16921Y37449D01* X16924Y37485D01* X16924Y37521D01* X16920Y37557D01* X16914Y37593D01* X16912Y37596D01* Y40000D01* G37* G36* Y29286D02*X16915Y29285D01* X16924Y29286D01* X16932Y29289D01* X16940Y29293D01* X16947Y29298D01* X16953Y29305D01* X16958Y29312D01* X16973Y29344D01* X16986Y29378D01* X16992Y29404D01* Y27656D01* X16990Y27661D01* X16974Y27694D01* X16970Y27701D01* X16964Y27707D01* X16956Y27712D01* X16949Y27716D01* X16940Y27718D01* X16932Y27719D01* X16923Y27719D01* X16914Y27717D01* X16912Y27716D01* Y29286D01* G37* G36* Y27583D02*X16916Y27569D01* X16921Y27543D01* X16924Y27516D01* X16924Y27489D01* X16922Y27462D01* X16917Y27435D01* X16912Y27416D01* Y27583D01* G37* G36* Y27290D02*X16918Y27288D01* X16927Y27286D01* X16935Y27285D01* X16944Y27286D01* X16952Y27289D01* X16960Y27293D01* X16967Y27298D01* X16973Y27305D01* X16978Y27312D01* X16992Y27343D01* Y25696D01* X16990Y25701D01* X16984Y25707D01* X16976Y25712D01* X16969Y25716D01* X16960Y25718D01* X16952Y25719D01* X16943Y25719D01* X16934Y25717D01* X16926Y25713D01* X16919Y25708D01* X16913Y25702D01* X16912Y25701D01* Y27290D01* G37* G36* Y25634D02*X16919Y25621D01* X16929Y25595D01* X16936Y25569D01* X16941Y25543D01* X16944Y25516D01* X16944Y25489D01* X16942Y25462D01* X16937Y25435D01* X16930Y25409D01* X16921Y25383D01* X16912Y25365D01* Y25634D01* G37* G36* Y25307D02*X16916Y25302D01* X16923Y25296D01* X16930Y25291D01* X16938Y25288D01* X16947Y25286D01* X16955Y25285D01* X16964Y25286D01* X16972Y25289D01* X16980Y25293D01* X16987Y25298D01* X16992Y25304D01* Y23714D01* X16989Y23716D01* X16980Y23718D01* X16972Y23719D01* X16963Y23719D01* X16954Y23717D01* X16946Y23713D01* X16939Y23708D01* X16933Y23702D01* X16928Y23695D01* X16924Y23687D01* X16922Y23679D01* X16921Y23670D01* X16921Y23661D01* X16923Y23653D01* X16927Y23645D01* X16939Y23621D01* X16949Y23595D01* X16956Y23569D01* X16961Y23543D01* X16964Y23516D01* X16964Y23489D01* X16962Y23462D01* X16957Y23435D01* X16950Y23409D01* X16941Y23383D01* X16929Y23359D01* X16926Y23351D01* X16924Y23342D01* X16924Y23333D01* X16925Y23325D01* X16927Y23317D01* X16931Y23309D01* X16936Y23302D01* X16943Y23296D01* X16950Y23291D01* X16958Y23288D01* X16967Y23286D01* X16975Y23285D01* X16984Y23286D01* X16992Y23289D01* X16992Y23289D01* Y21719D01* X16992Y21719D01* X16983Y21719D01* X16974Y21717D01* X16966Y21713D01* X16959Y21708D01* X16953Y21702D01* X16948Y21695D01* X16944Y21687D01* X16942Y21679D01* X16941Y21670D01* X16941Y21661D01* X16943Y21653D01* X16947Y21645D01* X16959Y21621D01* X16969Y21595D01* X16976Y21569D01* X16981Y21543D01* X16984Y21516D01* X16984Y21489D01* X16982Y21462D01* X16977Y21435D01* X16970Y21409D01* X16961Y21383D01* X16949Y21359D01* X16946Y21351D01* X16944Y21342D01* X16944Y21333D01* X16945Y21325D01* X16947Y21317D01* X16951Y21309D01* X16956Y21302D01* X16963Y21296D01* X16970Y21291D01* X16978Y21288D01* X16987Y21286D01* X16992Y21286D01* Y19716D01* X16986Y19713D01* X16979Y19708D01* X16973Y19702D01* X16968Y19695D01* X16964Y19687D01* X16962Y19679D01* X16961Y19670D01* X16961Y19661D01* X16963Y19653D01* X16967Y19645D01* X16979Y19621D01* X16989Y19595D01* X16992Y19583D01* Y19416D01* X16990Y19409D01* X16981Y19383D01* X16969Y19359D01* X16966Y19351D01* X16964Y19342D01* X16964Y19333D01* X16965Y19325D01* X16967Y19317D01* X16971Y19309D01* X16976Y19302D01* X16983Y19296D01* X16990Y19291D01* X16992Y19290D01* Y17701D01* X16988Y17695D01* X16984Y17687D01* X16982Y17679D01* X16981Y17670D01* X16981Y17661D01* X16983Y17653D01* X16987Y17645D01* X16992Y17634D01* Y17365D01* X16989Y17359D01* X16986Y17351D01* X16984Y17342D01* X16984Y17333D01* X16985Y17325D01* X16987Y17317D01* X16991Y17309D01* X16992Y17307D01* Y11833D01* X16991Y11835D01* X16986Y11842D01* X16980Y11848D01* X16972Y11853D01* X16940Y11868D01* X16912Y11878D01* Y13128D01* X16926Y13134D01* X16958Y13150D01* X16966Y13155D01* X16972Y13161D01* X16977Y13168D01* X16981Y13175D01* X16983Y13184D01* X16984Y13193D01* X16984Y13201D01* X16981Y13210D01* X16978Y13218D01* X16973Y13225D01* X16967Y13231D01* X16960Y13236D01* X16952Y13240D01* X16944Y13243D01* X16935Y13243D01* X16926Y13243D01* X16918Y13241D01* X16912Y13238D01* Y13762D01* X16913Y13761D01* X16922Y13759D01* X16931Y13759D01* X16939Y13760D01* X16948Y13762D01* X16955Y13766D01* X16962Y13772D01* X16968Y13778D01* X16973Y13785D01* X16976Y13793D01* X16978Y13802D01* X16979Y13810D01* X16978Y13819D01* X16975Y13827D01* X16971Y13835D01* X16966Y13842D01* X16960Y13848D01* X16952Y13853D01* X16920Y13868D01* X16912Y13871D01* Y15137D01* X16938Y15150D01* X16946Y15155D01* X16952Y15161D01* X16957Y15168D01* X16961Y15175D01* X16963Y15184D01* X16964Y15193D01* X16964Y15201D01* X16961Y15210D01* X16958Y15218D01* X16953Y15225D01* X16947Y15231D01* X16940Y15236D01* X16932Y15240D01* X16924Y15243D01* X16915Y15243D01* X16912Y15243D01* Y15759D01* X16919Y15760D01* X16928Y15762D01* X16935Y15766D01* X16942Y15772D01* X16948Y15778D01* X16953Y15785D01* X16956Y15793D01* X16958Y15802D01* X16959Y15810D01* X16958Y15819D01* X16955Y15827D01* X16951Y15835D01* X16946Y15842D01* X16940Y15848D01* X16932Y15853D01* X16912Y15862D01* Y17147D01* X16918Y17150D01* X16926Y17155D01* X16932Y17161D01* X16937Y17168D01* X16941Y17175D01* X16943Y17184D01* X16944Y17193D01* X16944Y17201D01* X16941Y17210D01* X16938Y17218D01* X16933Y17225D01* X16927Y17231D01* X16920Y17236D01* X16912Y17240D01* Y17765D01* X16915Y17766D01* X16922Y17772D01* X16928Y17778D01* X16933Y17785D01* X16936Y17793D01* X16938Y17802D01* X16939Y17810D01* X16938Y17819D01* X16935Y17827D01* X16931Y17835D01* X16926Y17842D01* X16920Y17848D01* X16912Y17853D01* Y19161D01* X16917Y19168D01* X16921Y19175D01* X16923Y19184D01* X16924Y19193D01* X16924Y19201D01* X16921Y19210D01* X16918Y19218D01* X16913Y19225D01* X16912Y19225D01* Y19784D01* X16913Y19785D01* X16916Y19793D01* X16918Y19802D01* X16919Y19810D01* X16918Y19819D01* X16915Y19827D01* X16912Y19833D01* Y25307D01* G37* G36* X16832Y35583D02*X16836Y35569D01* X16841Y35543D01* X16844Y35516D01* X16844Y35489D01* X16842Y35462D01* X16837Y35435D01* X16832Y35416D01* Y35583D01* G37* G36* Y33634D02*X16839Y33621D01* X16849Y33595D01* X16856Y33569D01* X16861Y33543D01* X16864Y33516D01* X16864Y33489D01* X16862Y33462D01* X16857Y33435D01* X16850Y33409D01* X16841Y33383D01* X16832Y33365D01* Y33634D01* G37* G36* X16992Y0D02*X16667D01* Y1791D01* X16668Y1790D01* X16671Y1782D01* X16676Y1774D01* X16682Y1768D01* X16689Y1763D01* X16697Y1759D01* X16705Y1757D01* X16714Y1756D01* X16723Y1756D01* X16731Y1758D01* X16739Y1762D01* X16763Y1774D01* X16789Y1784D01* X16815Y1791D01* X16841Y1796D01* X16868Y1799D01* X16895Y1799D01* X16922Y1797D01* X16949Y1793D01* X16975Y1785D01* X16992Y1779D01* Y1220D01* X16980Y1215D01* X16954Y1208D01* X16928Y1203D01* X16901Y1200D01* X16874Y1200D01* X16847Y1202D01* X16820Y1207D01* X16794Y1214D01* X16768Y1223D01* X16744Y1235D01* X16736Y1238D01* X16727Y1240D01* X16718Y1240D01* X16710Y1239D01* X16701Y1237D01* X16694Y1233D01* X16687Y1228D01* X16681Y1221D01* X16676Y1214D01* X16673Y1206D01* X16671Y1197D01* X16670Y1189D01* X16671Y1180D01* X16674Y1172D01* X16678Y1164D01* X16683Y1157D01* X16689Y1151D01* X16697Y1146D01* X16729Y1131D01* X16763Y1118D01* X16798Y1109D01* X16834Y1103D01* X16870Y1100D01* X16906Y1100D01* X16942Y1104D01* X16978Y1111D01* X16992Y1115D01* Y0D01* G37* G36* Y1884D02*X16971Y1890D01* X16935Y1896D01* X16899Y1899D01* X16863Y1899D01* X16827Y1895D01* X16791Y1889D01* X16757Y1879D01* X16723Y1866D01* X16691Y1849D01* X16683Y1845D01* X16677Y1839D01* X16672Y1832D01* X16668Y1824D01* X16667Y1821D01* Y3153D01* X16669Y3151D01* X16677Y3146D01* X16709Y3131D01* X16743Y3118D01* X16778Y3109D01* X16814Y3103D01* X16850Y3100D01* X16886Y3100D01* X16922Y3104D01* X16958Y3111D01* X16992Y3121D01* X16992D01* Y1884D01* G37* G36* Y3229D02*X16986Y3225D01* X16960Y3215D01* X16934Y3208D01* X16908Y3203D01* X16881Y3200D01* X16854Y3200D01* X16827Y3202D01* X16800Y3207D01* X16774Y3214D01* X16748Y3223D01* X16724Y3235D01* X16716Y3238D01* X16707Y3240D01* X16698Y3240D01* X16690Y3239D01* X16681Y3237D01* X16674Y3233D01* X16667Y3228D01* Y3764D01* X16669Y3763D01* X16677Y3759D01* X16685Y3757D01* X16694Y3756D01* X16703Y3756D01* X16711Y3758D01* X16719Y3762D01* X16743Y3774D01* X16769Y3784D01* X16795Y3791D01* X16821Y3796D01* X16848Y3799D01* X16875Y3799D01* X16902Y3797D01* X16929Y3793D01* X16955Y3785D01* X16981Y3776D01* X16992Y3771D01* Y3229D01* G37* G36* Y3878D02*X16986Y3881D01* X16951Y3890D01* X16915Y3896D01* X16879Y3899D01* X16843Y3899D01* X16807Y3895D01* X16771Y3889D01* X16737Y3879D01* X16703Y3866D01* X16671Y3849D01* X16667Y3847D01* Y5141D01* X16689Y5131D01* X16723Y5118D01* X16758Y5109D01* X16794Y5103D01* X16830Y5100D01* X16866Y5100D01* X16902Y5104D01* X16938Y5111D01* X16972Y5121D01* X16992Y5128D01* Y3878D01* G37* G36* Y5238D02*X16990Y5237D01* X16966Y5225D01* X16940Y5215D01* X16914Y5208D01* X16888Y5203D01* X16861Y5200D01* X16834Y5200D01* X16807Y5202D01* X16780Y5207D01* X16754Y5214D01* X16728Y5223D01* X16704Y5235D01* X16696Y5238D01* X16687Y5240D01* X16678Y5240D01* X16670Y5239D01* X16667Y5239D01* Y5756D01* X16674Y5756D01* X16683Y5756D01* X16691Y5758D01* X16699Y5762D01* X16723Y5774D01* X16749Y5784D01* X16775Y5791D01* X16801Y5796D01* X16828Y5799D01* X16855Y5799D01* X16882Y5797D01* X16909Y5793D01* X16935Y5785D01* X16961Y5776D01* X16985Y5764D01* X16992Y5762D01* Y5238D01* G37* G36* Y5871D02*X16966Y5881D01* X16931Y5890D01* X16895Y5896D01* X16859Y5899D01* X16823Y5899D01* X16787Y5895D01* X16751Y5889D01* X16717Y5879D01* X16683Y5866D01* X16667Y5858D01* Y7132D01* X16669Y7131D01* X16703Y7118D01* X16738Y7109D01* X16774Y7103D01* X16810Y7100D01* X16846Y7100D01* X16882Y7104D01* X16918Y7111D01* X16952Y7121D01* X16986Y7134D01* X16992Y7137D01* Y5871D01* G37* G36* Y7243D02*X16986Y7243D01* X16978Y7241D01* X16970Y7237D01* X16946Y7225D01* X16920Y7215D01* X16894Y7208D01* X16868Y7203D01* X16841Y7200D01* X16814Y7200D01* X16787Y7202D01* X16760Y7207D01* X16734Y7214D01* X16708Y7223D01* X16684Y7235D01* X16676Y7238D01* X16667Y7240D01* Y7757D01* X16671Y7758D01* X16679Y7762D01* X16703Y7774D01* X16729Y7784D01* X16755Y7791D01* X16781Y7796D01* X16808Y7799D01* X16835Y7799D01* X16862Y7797D01* X16889Y7793D01* X16915Y7785D01* X16941Y7776D01* X16965Y7764D01* X16973Y7761D01* X16982Y7759D01* X16991Y7759D01* X16992Y7759D01* Y7243D01* G37* G36* Y7862D02*X16980Y7868D01* X16946Y7881D01* X16911Y7890D01* X16875Y7896D01* X16839Y7899D01* X16803Y7899D01* X16767Y7895D01* X16731Y7889D01* X16697Y7879D01* X16667Y7867D01* Y9124D01* X16683Y9118D01* X16718Y9109D01* X16754Y9103D01* X16790Y9100D01* X16826Y9100D01* X16862Y9104D01* X16898Y9111D01* X16932Y9121D01* X16966Y9134D01* X16992Y9147D01* Y7862D01* G37* G36* Y9240D02*X16992Y9240D01* X16984Y9243D01* X16975Y9243D01* X16966Y9243D01* X16958Y9241D01* X16950Y9237D01* X16926Y9225D01* X16900Y9215D01* X16874Y9208D01* X16848Y9203D01* X16821Y9200D01* X16794Y9200D01* X16767Y9202D01* X16740Y9207D01* X16714Y9214D01* X16688Y9223D01* X16667Y9233D01* Y9766D01* X16683Y9774D01* X16709Y9784D01* X16735Y9791D01* X16761Y9796D01* X16788Y9799D01* X16815Y9799D01* X16842Y9797D01* X16869Y9793D01* X16895Y9785D01* X16921Y9776D01* X16945Y9764D01* X16953Y9761D01* X16962Y9759D01* X16971Y9759D01* X16979Y9760D01* X16988Y9762D01* X16992Y9765D01* Y9240D01* G37* G36* Y9853D02*X16992Y9853D01* X16960Y9868D01* X16926Y9881D01* X16891Y9890D01* X16855Y9896D01* X16819Y9899D01* X16783Y9899D01* X16747Y9895D01* X16711Y9889D01* X16677Y9879D01* X16667Y9875D01* Y11117D01* X16698Y11109D01* X16734Y11103D01* X16770Y11100D01* X16806Y11100D01* X16842Y11104D01* X16878Y11111D01* X16912Y11121D01* X16946Y11134D01* X16978Y11150D01* X16986Y11155D01* X16992Y11161D01* X16992Y11161D01* Y9853D01* G37* G36* Y11225D02*X16987Y11231D01* X16980Y11236D01* X16972Y11240D01* X16964Y11243D01* X16955Y11243D01* X16946Y11243D01* X16938Y11241D01* X16930Y11237D01* X16906Y11225D01* X16880Y11215D01* X16854Y11208D01* X16828Y11203D01* X16801Y11200D01* X16774Y11200D01* X16747Y11202D01* X16720Y11207D01* X16694Y11214D01* X16668Y11223D01* X16667Y11223D01* Y11776D01* X16689Y11784D01* X16715Y11791D01* X16741Y11796D01* X16768Y11799D01* X16795Y11799D01* X16822Y11797D01* X16849Y11793D01* X16875Y11785D01* X16901Y11776D01* X16925Y11764D01* X16933Y11761D01* X16942Y11759D01* X16951Y11759D01* X16959Y11760D01* X16968Y11762D01* X16975Y11766D01* X16982Y11772D01* X16988Y11778D01* X16992Y11784D01* Y11225D01* G37* G36* Y40000D02*X17072D01* Y21596D01* X17064Y21627D01* X17050Y21661D01* X17034Y21694D01* X17030Y21701D01* X17024Y21707D01* X17016Y21712D01* X17009Y21716D01* X17000Y21718D01* X16992Y21719D01* Y23289D01* X17000Y23293D01* X17007Y23298D01* X17013Y23305D01* X17018Y23312D01* X17033Y23344D01* X17046Y23378D01* X17055Y23413D01* X17061Y23449D01* X17064Y23485D01* X17064Y23521D01* X17060Y23557D01* X17054Y23593D01* X17044Y23627D01* X17030Y23661D01* X17014Y23694D01* X17010Y23701D01* X17004Y23707D01* X16996Y23712D01* X16992Y23714D01* Y25304D01* X16993Y25305D01* X16998Y25312D01* X17013Y25344D01* X17026Y25378D01* X17035Y25413D01* X17041Y25449D01* X17044Y25485D01* X17044Y25521D01* X17040Y25557D01* X17034Y25593D01* X17024Y25627D01* X17010Y25661D01* X16994Y25694D01* X16992Y25696D01* Y27343D01* X16993Y27344D01* X17006Y27378D01* X17015Y27413D01* X17021Y27449D01* X17024Y27485D01* X17024Y27521D01* X17020Y27557D01* X17014Y27593D01* X17004Y27627D01* X16992Y27656D01* Y29404D01* X16995Y29413D01* X17001Y29449D01* X17004Y29485D01* X17004Y29521D01* X17000Y29557D01* X16994Y29593D01* X16992Y29596D01* Y40000D01* G37* G36* X17072Y0D02*X16992D01* Y1115D01* X17012Y1121D01* X17046Y1134D01* X17072Y1147D01* Y0D01* G37* G36* Y1240D02*X17072Y1240D01* X17064Y1243D01* X17055Y1243D01* X17046Y1243D01* X17038Y1241D01* X17030Y1237D01* X17006Y1225D01* X16992Y1220D01* Y1779D01* X17001Y1776D01* X17025Y1764D01* X17033Y1761D01* X17042Y1759D01* X17051Y1759D01* X17059Y1760D01* X17068Y1762D01* X17072Y1765D01* Y1240D01* G37* G36* Y1853D02*X17072Y1853D01* X17040Y1868D01* X17006Y1881D01* X16992Y1884D01* Y3121D01* X17026Y3134D01* X17058Y3150D01* X17066Y3155D01* X17072Y3161D01* X17072Y3161D01* Y1853D01* G37* G36* Y3225D02*X17067Y3231D01* X17060Y3236D01* X17052Y3240D01* X17044Y3243D01* X17035Y3243D01* X17026Y3243D01* X17018Y3241D01* X17010Y3237D01* X16992Y3229D01* Y3771D01* X17005Y3764D01* X17013Y3761D01* X17022Y3759D01* X17031Y3759D01* X17039Y3760D01* X17048Y3762D01* X17055Y3766D01* X17062Y3772D01* X17068Y3778D01* X17072Y3784D01* Y3225D01* G37* G36* Y3833D02*X17071Y3835D01* X17066Y3842D01* X17060Y3848D01* X17052Y3853D01* X17020Y3868D01* X16992Y3878D01* Y5128D01* X17006Y5134D01* X17038Y5150D01* X17046Y5155D01* X17052Y5161D01* X17057Y5168D01* X17061Y5175D01* X17063Y5184D01* X17064Y5193D01* X17064Y5201D01* X17061Y5210D01* X17058Y5218D01* X17053Y5225D01* X17047Y5231D01* X17040Y5236D01* X17032Y5240D01* X17024Y5243D01* X17015Y5243D01* X17006Y5243D01* X16998Y5241D01* X16992Y5238D01* Y5762D01* X16993Y5761D01* X17002Y5759D01* X17011Y5759D01* X17019Y5760D01* X17028Y5762D01* X17035Y5766D01* X17042Y5772D01* X17048Y5778D01* X17053Y5785D01* X17056Y5793D01* X17058Y5802D01* X17059Y5810D01* X17058Y5819D01* X17055Y5827D01* X17051Y5835D01* X17046Y5842D01* X17040Y5848D01* X17032Y5853D01* X17000Y5868D01* X16992Y5871D01* Y7137D01* X17018Y7150D01* X17026Y7155D01* X17032Y7161D01* X17037Y7168D01* X17041Y7175D01* X17043Y7184D01* X17044Y7193D01* X17044Y7201D01* X17041Y7210D01* X17038Y7218D01* X17033Y7225D01* X17027Y7231D01* X17020Y7236D01* X17012Y7240D01* X17004Y7243D01* X16995Y7243D01* X16992Y7243D01* Y7759D01* X16999Y7760D01* X17008Y7762D01* X17015Y7766D01* X17022Y7772D01* X17028Y7778D01* X17033Y7785D01* X17036Y7793D01* X17038Y7802D01* X17039Y7810D01* X17038Y7819D01* X17035Y7827D01* X17031Y7835D01* X17026Y7842D01* X17020Y7848D01* X17012Y7853D01* X16992Y7862D01* Y9147D01* X16998Y9150D01* X17006Y9155D01* X17012Y9161D01* X17017Y9168D01* X17021Y9175D01* X17023Y9184D01* X17024Y9193D01* X17024Y9201D01* X17021Y9210D01* X17018Y9218D01* X17013Y9225D01* X17007Y9231D01* X17000Y9236D01* X16992Y9240D01* Y9765D01* X16995Y9766D01* X17002Y9772D01* X17008Y9778D01* X17013Y9785D01* X17016Y9793D01* X17018Y9802D01* X17019Y9810D01* X17018Y9819D01* X17015Y9827D01* X17011Y9835D01* X17006Y9842D01* X17000Y9848D01* X16992Y9853D01* Y11161D01* X16997Y11168D01* X17001Y11175D01* X17003Y11184D01* X17004Y11193D01* X17004Y11201D01* X17001Y11210D01* X16998Y11218D01* X16993Y11225D01* X16992Y11225D01* Y11784D01* X16993Y11785D01* X16996Y11793D01* X16998Y11802D01* X16999Y11810D01* X16998Y11819D01* X16995Y11827D01* X16992Y11833D01* Y17307D01* X16996Y17302D01* X17003Y17296D01* X17010Y17291D01* X17018Y17288D01* X17027Y17286D01* X17035Y17285D01* X17044Y17286D01* X17052Y17289D01* X17060Y17293D01* X17067Y17298D01* X17072Y17304D01* Y15714D01* X17069Y15716D01* X17060Y15718D01* X17052Y15719D01* X17043Y15719D01* X17034Y15717D01* X17026Y15713D01* X17019Y15708D01* X17013Y15702D01* X17008Y15695D01* X17004Y15687D01* X17002Y15679D01* X17001Y15670D01* X17001Y15661D01* X17003Y15653D01* X17007Y15645D01* X17019Y15621D01* X17029Y15595D01* X17036Y15569D01* X17041Y15543D01* X17044Y15516D01* X17044Y15489D01* X17042Y15462D01* X17037Y15435D01* X17030Y15409D01* X17021Y15383D01* X17009Y15359D01* X17006Y15351D01* X17004Y15342D01* X17004Y15333D01* X17005Y15325D01* X17007Y15317D01* X17011Y15309D01* X17016Y15302D01* X17023Y15296D01* X17030Y15291D01* X17038Y15288D01* X17047Y15286D01* X17055Y15285D01* X17064Y15286D01* X17072Y15289D01* X17072Y15289D01* Y13719D01* X17072Y13719D01* X17063Y13719D01* X17054Y13717D01* X17046Y13713D01* X17039Y13708D01* X17033Y13702D01* X17028Y13695D01* X17024Y13687D01* X17022Y13679D01* X17021Y13670D01* X17021Y13661D01* X17023Y13653D01* X17027Y13645D01* X17039Y13621D01* X17049Y13595D01* X17056Y13569D01* X17061Y13543D01* X17064Y13516D01* X17064Y13489D01* X17062Y13462D01* X17057Y13435D01* X17050Y13409D01* X17041Y13383D01* X17029Y13359D01* X17026Y13351D01* X17024Y13342D01* X17024Y13333D01* X17025Y13325D01* X17027Y13317D01* X17031Y13309D01* X17036Y13302D01* X17043Y13296D01* X17050Y13291D01* X17058Y13288D01* X17067Y13286D01* X17072Y13286D01* Y11716D01* X17066Y11713D01* X17059Y11708D01* X17053Y11702D01* X17048Y11695D01* X17044Y11687D01* X17042Y11679D01* X17041Y11670D01* X17041Y11661D01* X17043Y11653D01* X17047Y11645D01* X17059Y11621D01* X17069Y11595D01* X17072Y11583D01* Y11416D01* X17070Y11409D01* X17061Y11383D01* X17049Y11359D01* X17046Y11351D01* X17044Y11342D01* X17044Y11333D01* X17045Y11325D01* X17047Y11317D01* X17051Y11309D01* X17056Y11302D01* X17063Y11296D01* X17070Y11291D01* X17072Y11290D01* Y9701D01* X17068Y9695D01* X17064Y9687D01* X17062Y9679D01* X17061Y9670D01* X17061Y9661D01* X17063Y9653D01* X17067Y9645D01* X17072Y9634D01* Y9365D01* X17069Y9359D01* X17066Y9351D01* X17064Y9342D01* X17064Y9333D01* X17065Y9325D01* X17067Y9317D01* X17071Y9309D01* X17072Y9307D01* Y3833D01* G37* G36* Y17696D02*X17070Y17701D01* X17064Y17707D01* X17056Y17712D01* X17049Y17716D01* X17040Y17718D01* X17032Y17719D01* X17023Y17719D01* X17014Y17717D01* X17006Y17713D01* X16999Y17708D01* X16993Y17702D01* X16992Y17701D01* Y19290D01* X16998Y19288D01* X17007Y19286D01* X17015Y19285D01* X17024Y19286D01* X17032Y19289D01* X17040Y19293D01* X17047Y19298D01* X17053Y19305D01* X17058Y19312D01* X17072Y19343D01* Y17696D01* G37* G36* Y19656D02*X17070Y19661D01* X17054Y19694D01* X17050Y19701D01* X17044Y19707D01* X17036Y19712D01* X17029Y19716D01* X17020Y19718D01* X17012Y19719D01* X17003Y19719D01* X16994Y19717D01* X16992Y19716D01* Y21286D01* X16995Y21285D01* X17004Y21286D01* X17012Y21289D01* X17020Y21293D01* X17027Y21298D01* X17033Y21305D01* X17038Y21312D01* X17053Y21344D01* X17066Y21378D01* X17072Y21404D01* Y19656D01* G37* G36* Y40000D02*X17152D01* Y13596D01* X17144Y13627D01* X17130Y13661D01* X17114Y13694D01* X17110Y13701D01* X17104Y13707D01* X17096Y13712D01* X17089Y13716D01* X17080Y13718D01* X17072Y13719D01* Y15289D01* X17080Y15293D01* X17087Y15298D01* X17093Y15305D01* X17098Y15312D01* X17113Y15344D01* X17126Y15378D01* X17135Y15413D01* X17141Y15449D01* X17144Y15485D01* X17144Y15521D01* X17140Y15557D01* X17134Y15593D01* X17124Y15627D01* X17110Y15661D01* X17094Y15694D01* X17090Y15701D01* X17084Y15707D01* X17076Y15712D01* X17072Y15714D01* Y17304D01* X17073Y17305D01* X17078Y17312D01* X17093Y17344D01* X17106Y17378D01* X17115Y17413D01* X17121Y17449D01* X17124Y17485D01* X17124Y17521D01* X17120Y17557D01* X17114Y17593D01* X17104Y17627D01* X17090Y17661D01* X17074Y17694D01* X17072Y17696D01* Y19343D01* X17073Y19344D01* X17086Y19378D01* X17095Y19413D01* X17101Y19449D01* X17104Y19485D01* X17104Y19521D01* X17100Y19557D01* X17094Y19593D01* X17084Y19627D01* X17072Y19656D01* Y21404D01* X17075Y21413D01* X17081Y21449D01* X17084Y21485D01* X17084Y21521D01* X17080Y21557D01* X17074Y21593D01* X17072Y21596D01* Y40000D01* G37* G36* X17152Y0D02*X17072D01* Y1147D01* X17078Y1150D01* X17086Y1155D01* X17092Y1161D01* X17097Y1168D01* X17101Y1175D01* X17103Y1184D01* X17104Y1193D01* X17104Y1201D01* X17101Y1210D01* X17098Y1218D01* X17093Y1225D01* X17087Y1231D01* X17080Y1236D01* X17072Y1240D01* Y1765D01* X17075Y1766D01* X17082Y1772D01* X17088Y1778D01* X17093Y1785D01* X17096Y1793D01* X17098Y1802D01* X17099Y1810D01* X17098Y1819D01* X17095Y1827D01* X17091Y1835D01* X17086Y1842D01* X17080Y1848D01* X17072Y1853D01* Y3161D01* X17077Y3168D01* X17081Y3175D01* X17083Y3184D01* X17084Y3193D01* X17084Y3201D01* X17081Y3210D01* X17078Y3218D01* X17073Y3225D01* X17072Y3225D01* Y3784D01* X17073Y3785D01* X17076Y3793D01* X17078Y3802D01* X17079Y3810D01* X17078Y3819D01* X17075Y3827D01* X17072Y3833D01* Y9307D01* X17076Y9302D01* X17083Y9296D01* X17090Y9291D01* X17098Y9288D01* X17107Y9286D01* X17115Y9285D01* X17124Y9286D01* X17132Y9289D01* X17140Y9293D01* X17147Y9298D01* X17152Y9304D01* Y7714D01* X17149Y7716D01* X17140Y7718D01* X17132Y7719D01* X17123Y7719D01* X17114Y7717D01* X17106Y7713D01* X17099Y7708D01* X17093Y7702D01* X17088Y7695D01* X17084Y7687D01* X17082Y7679D01* X17081Y7670D01* X17081Y7661D01* X17083Y7653D01* X17087Y7645D01* X17099Y7621D01* X17109Y7595D01* X17116Y7569D01* X17121Y7543D01* X17124Y7516D01* X17124Y7489D01* X17122Y7462D01* X17117Y7435D01* X17110Y7409D01* X17101Y7383D01* X17089Y7359D01* X17086Y7351D01* X17084Y7342D01* X17084Y7333D01* X17085Y7325D01* X17087Y7317D01* X17091Y7309D01* X17096Y7302D01* X17103Y7296D01* X17110Y7291D01* X17118Y7288D01* X17127Y7286D01* X17135Y7285D01* X17144Y7286D01* X17152Y7289D01* X17152Y7289D01* Y5719D01* X17152Y5719D01* X17143Y5719D01* X17134Y5717D01* X17126Y5713D01* X17119Y5708D01* X17113Y5702D01* X17108Y5695D01* X17104Y5687D01* X17102Y5679D01* X17101Y5670D01* X17101Y5661D01* X17103Y5653D01* X17107Y5645D01* X17119Y5621D01* X17129Y5595D01* X17136Y5569D01* X17141Y5543D01* X17144Y5516D01* X17144Y5489D01* X17142Y5462D01* X17137Y5435D01* X17130Y5409D01* X17121Y5383D01* X17109Y5359D01* X17106Y5351D01* X17104Y5342D01* X17104Y5333D01* X17105Y5325D01* X17107Y5317D01* X17111Y5309D01* X17116Y5302D01* X17123Y5296D01* X17130Y5291D01* X17138Y5288D01* X17147Y5286D01* X17152Y5286D01* Y3716D01* X17146Y3713D01* X17139Y3708D01* X17133Y3702D01* X17128Y3695D01* X17124Y3687D01* X17122Y3679D01* X17121Y3670D01* X17121Y3661D01* X17123Y3653D01* X17127Y3645D01* X17139Y3621D01* X17149Y3595D01* X17152Y3583D01* Y3416D01* X17150Y3409D01* X17141Y3383D01* X17129Y3359D01* X17126Y3351D01* X17124Y3342D01* X17124Y3333D01* X17125Y3325D01* X17127Y3317D01* X17131Y3309D01* X17136Y3302D01* X17143Y3296D01* X17150Y3291D01* X17152Y3290D01* Y1701D01* X17148Y1695D01* X17144Y1687D01* X17142Y1679D01* X17141Y1670D01* X17141Y1661D01* X17143Y1653D01* X17147Y1645D01* X17152Y1634D01* Y1365D01* X17149Y1359D01* X17146Y1351D01* X17144Y1342D01* X17144Y1333D01* X17145Y1325D01* X17147Y1317D01* X17151Y1309D01* X17152Y1307D01* Y0D01* G37* G36* Y9696D02*X17150Y9701D01* X17144Y9707D01* X17136Y9712D01* X17129Y9716D01* X17120Y9718D01* X17112Y9719D01* X17103Y9719D01* X17094Y9717D01* X17086Y9713D01* X17079Y9708D01* X17073Y9702D01* X17072Y9701D01* Y11290D01* X17078Y11288D01* X17087Y11286D01* X17095Y11285D01* X17104Y11286D01* X17112Y11289D01* X17120Y11293D01* X17127Y11298D01* X17133Y11305D01* X17138Y11312D01* X17152Y11343D01* Y9696D01* G37* G36* Y11656D02*X17150Y11661D01* X17134Y11694D01* X17130Y11701D01* X17124Y11707D01* X17116Y11712D01* X17109Y11716D01* X17100Y11718D01* X17092Y11719D01* X17083Y11719D01* X17074Y11717D01* X17072Y11716D01* Y13286D01* X17075Y13285D01* X17084Y13286D01* X17092Y13289D01* X17100Y13293D01* X17107Y13298D01* X17113Y13305D01* X17118Y13312D01* X17133Y13344D01* X17146Y13378D01* X17152Y13404D01* Y11656D01* G37* G36* Y40000D02*X18177D01* Y39710D01* X18169Y39706D01* X18162Y39701D01* X18156Y39695D01* X18151Y39687D01* X18136Y39655D01* X18123Y39621D01* X18114Y39586D01* X18108Y39550D01* X18105Y39514D01* X18105Y39478D01* X18109Y39442D01* X18115Y39407D01* X18125Y39372D01* X18139Y39338D01* X18155Y39306D01* X18159Y39299D01* X18165Y39292D01* X18173Y39287D01* X18177Y39285D01* Y37695D01* X18176Y37695D01* X18171Y37687D01* X18156Y37655D01* X18143Y37621D01* X18134Y37586D01* X18128Y37550D01* X18125Y37514D01* X18125Y37478D01* X18129Y37442D01* X18135Y37407D01* X18145Y37372D01* X18159Y37338D01* X18175Y37306D01* X18177Y37303D01* Y35656D01* X18176Y35655D01* X18163Y35621D01* X18154Y35586D01* X18148Y35550D01* X18145Y35514D01* X18145Y35478D01* X18149Y35442D01* X18155Y35407D01* X18165Y35372D01* X18177Y35343D01* Y33596D01* X18174Y33586D01* X18168Y33550D01* X18165Y33514D01* X18165Y33478D01* X18169Y33442D01* X18175Y33407D01* X18177Y33403D01* Y0D01* X17152D01* Y1307D01* X17156Y1302D01* X17163Y1296D01* X17170Y1291D01* X17178Y1288D01* X17187Y1286D01* X17195Y1285D01* X17204Y1286D01* X17212Y1289D01* X17220Y1293D01* X17227Y1298D01* X17233Y1305D01* X17238Y1312D01* X17253Y1344D01* X17266Y1378D01* X17275Y1413D01* X17281Y1449D01* X17284Y1485D01* X17284Y1521D01* X17280Y1557D01* X17274Y1593D01* X17264Y1627D01* X17250Y1661D01* X17234Y1694D01* X17230Y1701D01* X17224Y1707D01* X17216Y1712D01* X17209Y1716D01* X17200Y1718D01* X17192Y1719D01* X17183Y1719D01* X17174Y1717D01* X17166Y1713D01* X17159Y1708D01* X17153Y1702D01* X17152Y1701D01* Y3290D01* X17158Y3288D01* X17167Y3286D01* X17175Y3285D01* X17184Y3286D01* X17192Y3289D01* X17200Y3293D01* X17207Y3298D01* X17213Y3305D01* X17218Y3312D01* X17233Y3344D01* X17246Y3378D01* X17255Y3413D01* X17261Y3449D01* X17264Y3485D01* X17264Y3521D01* X17260Y3557D01* X17254Y3593D01* X17244Y3627D01* X17230Y3661D01* X17214Y3694D01* X17210Y3701D01* X17204Y3707D01* X17196Y3712D01* X17189Y3716D01* X17180Y3718D01* X17172Y3719D01* X17163Y3719D01* X17154Y3717D01* X17152Y3716D01* Y5286D01* X17155Y5285D01* X17164Y5286D01* X17172Y5289D01* X17180Y5293D01* X17187Y5298D01* X17193Y5305D01* X17198Y5312D01* X17213Y5344D01* X17226Y5378D01* X17235Y5413D01* X17241Y5449D01* X17244Y5485D01* X17244Y5521D01* X17240Y5557D01* X17234Y5593D01* X17224Y5627D01* X17210Y5661D01* X17194Y5694D01* X17190Y5701D01* X17184Y5707D01* X17176Y5712D01* X17169Y5716D01* X17160Y5718D01* X17152Y5719D01* Y7289D01* X17160Y7293D01* X17167Y7298D01* X17173Y7305D01* X17178Y7312D01* X17193Y7344D01* X17206Y7378D01* X17215Y7413D01* X17221Y7449D01* X17224Y7485D01* X17224Y7521D01* X17220Y7557D01* X17214Y7593D01* X17204Y7627D01* X17190Y7661D01* X17174Y7694D01* X17170Y7701D01* X17164Y7707D01* X17156Y7712D01* X17152Y7714D01* Y9304D01* X17153Y9305D01* X17158Y9312D01* X17173Y9344D01* X17186Y9378D01* X17195Y9413D01* X17201Y9449D01* X17204Y9485D01* X17204Y9521D01* X17200Y9557D01* X17194Y9593D01* X17184Y9627D01* X17170Y9661D01* X17154Y9694D01* X17152Y9696D01* Y11343D01* X17153Y11344D01* X17166Y11378D01* X17175Y11413D01* X17181Y11449D01* X17184Y11485D01* X17184Y11521D01* X17180Y11557D01* X17174Y11593D01* X17164Y11627D01* X17152Y11656D01* Y13404D01* X17155Y13413D01* X17161Y13449D01* X17164Y13485D01* X17164Y13521D01* X17160Y13557D01* X17154Y13593D01* X17152Y13596D01* Y40000D01* G37* G36* X18177D02*X18257D01* Y37692D01* X18253Y37697D01* X18246Y37703D01* X18239Y37708D01* X18231Y37711D01* X18222Y37713D01* X18214Y37714D01* X18205Y37713D01* X18197Y37710D01* X18189Y37706D01* X18182Y37701D01* X18177Y37695D01* Y39285D01* X18180Y39283D01* X18189Y39281D01* X18197Y39280D01* X18206Y39281D01* X18215Y39283D01* X18223Y39286D01* X18230Y39291D01* X18236Y39297D01* X18241Y39304D01* X18245Y39312D01* X18247Y39320D01* X18248Y39329D01* X18248Y39338D01* X18246Y39346D01* X18242Y39354D01* X18230Y39378D01* X18220Y39404D01* X18213Y39430D01* X18208Y39456D01* X18205Y39483D01* X18205Y39511D01* X18207Y39538D01* X18212Y39564D01* X18219Y39590D01* X18228Y39616D01* X18240Y39640D01* X18243Y39649D01* X18245Y39657D01* X18245Y39666D01* X18244Y39674D01* X18242Y39683D01* X18238Y39690D01* X18233Y39697D01* X18226Y39703D01* X18219Y39708D01* X18211Y39711D01* X18202Y39713D01* X18194Y39714D01* X18185Y39713D01* X18177Y39710D01* X18177Y39710D01* Y40000D01* G37* G36* Y37303D02*X18179Y37299D01* X18185Y37292D01* X18193Y37287D01* X18200Y37283D01* X18209Y37281D01* X18217Y37280D01* X18226Y37281D01* X18235Y37283D01* X18243Y37286D01* X18250Y37291D01* X18256Y37297D01* X18257Y37298D01* Y35709D01* X18251Y35711D01* X18242Y35713D01* X18234Y35714D01* X18225Y35713D01* X18217Y35710D01* X18209Y35706D01* X18202Y35701D01* X18196Y35695D01* X18191Y35687D01* X18177Y35656D01* Y37303D01* G37* G36* Y35343D02*X18179Y35338D01* X18195Y35306D01* X18199Y35299D01* X18205Y35292D01* X18213Y35287D01* X18220Y35283D01* X18229Y35281D01* X18237Y35280D01* X18246Y35281D01* X18255Y35283D01* X18257Y35284D01* Y33714D01* X18254Y33714D01* X18245Y33713D01* X18237Y33710D01* X18229Y33706D01* X18222Y33701D01* X18216Y33695D01* X18211Y33687D01* X18196Y33655D01* X18183Y33621D01* X18177Y33596D01* Y35343D01* G37* G36* Y33403D02*X18185Y33372D01* X18199Y33338D01* X18215Y33306D01* X18219Y33299D01* X18225Y33292D01* X18233Y33287D01* X18240Y33283D01* X18249Y33281D01* X18257Y33280D01* Y31710D01* X18249Y31706D01* X18242Y31701D01* X18236Y31695D01* X18231Y31687D01* X18216Y31655D01* X18203Y31621D01* X18194Y31586D01* X18188Y31550D01* X18185Y31514D01* X18185Y31478D01* X18189Y31442D01* X18195Y31407D01* X18205Y31372D01* X18219Y31338D01* X18235Y31306D01* X18239Y31299D01* X18245Y31292D01* X18253Y31287D01* X18257Y31285D01* Y29695D01* X18256Y29695D01* X18251Y29687D01* X18236Y29655D01* X18223Y29621D01* X18214Y29586D01* X18208Y29550D01* X18205Y29514D01* X18205Y29478D01* X18209Y29442D01* X18215Y29407D01* X18225Y29372D01* X18239Y29338D01* X18255Y29306D01* X18257Y29303D01* Y27656D01* X18256Y27655D01* X18243Y27621D01* X18234Y27586D01* X18228Y27550D01* X18225Y27514D01* X18225Y27478D01* X18229Y27442D01* X18235Y27407D01* X18245Y27372D01* X18257Y27343D01* Y25596D01* X18254Y25586D01* X18248Y25550D01* X18245Y25514D01* X18245Y25478D01* X18249Y25442D01* X18255Y25407D01* X18257Y25403D01* Y0D01* X18177D01* Y33403D01* G37* G36* X18257Y37365D02*X18250Y37378D01* X18240Y37404D01* X18233Y37430D01* X18228Y37456D01* X18225Y37483D01* X18225Y37511D01* X18227Y37538D01* X18232Y37564D01* X18239Y37590D01* X18248Y37616D01* X18257Y37634D01* Y37365D01* G37* G36* Y35417D02*X18253Y35430D01* X18248Y35456D01* X18245Y35483D01* X18245Y35511D01* X18247Y35538D01* X18252Y35564D01* X18257Y35583D01* Y35417D01* G37* G36* Y40000D02*X18337D01* Y39862D01* X18311Y39849D01* X18303Y39845D01* X18297Y39839D01* X18292Y39832D01* X18288Y39824D01* X18286Y39815D01* X18285Y39807D01* X18285Y39798D01* X18288Y39790D01* X18291Y39782D01* X18296Y39774D01* X18302Y39768D01* X18309Y39763D01* X18317Y39759D01* X18325Y39757D01* X18334Y39756D01* X18337Y39756D01* Y39240D01* X18330Y39239D01* X18321Y39237D01* X18314Y39233D01* X18307Y39228D01* X18301Y39221D01* X18296Y39214D01* X18293Y39206D01* X18291Y39197D01* X18290Y39189D01* X18291Y39180D01* X18294Y39172D01* X18298Y39164D01* X18303Y39157D01* X18309Y39151D01* X18317Y39146D01* X18337Y39137D01* Y37852D01* X18331Y37849D01* X18323Y37845D01* X18317Y37839D01* X18312Y37832D01* X18308Y37824D01* X18306Y37815D01* X18305Y37807D01* X18305Y37798D01* X18308Y37790D01* X18311Y37782D01* X18316Y37774D01* X18322Y37768D01* X18329Y37763D01* X18337Y37759D01* Y37234D01* X18334Y37233D01* X18327Y37228D01* X18321Y37221D01* X18316Y37214D01* X18313Y37206D01* X18311Y37197D01* X18310Y37189D01* X18311Y37180D01* X18314Y37172D01* X18318Y37164D01* X18323Y37157D01* X18329Y37151D01* X18337Y37147D01* Y35838D01* X18332Y35832D01* X18328Y35824D01* X18326Y35815D01* X18325Y35807D01* X18325Y35798D01* X18328Y35790D01* X18331Y35782D01* X18336Y35774D01* X18337Y35774D01* Y35215D01* X18336Y35214D01* X18333Y35206D01* X18331Y35197D01* X18330Y35189D01* X18331Y35180D01* X18334Y35172D01* X18337Y35167D01* Y29692D01* X18333Y29697D01* X18326Y29703D01* X18319Y29708D01* X18311Y29711D01* X18302Y29713D01* X18294Y29714D01* X18285Y29713D01* X18277Y29710D01* X18269Y29706D01* X18262Y29701D01* X18257Y29695D01* Y31285D01* X18260Y31283D01* X18269Y31281D01* X18277Y31280D01* X18286Y31281D01* X18295Y31283D01* X18303Y31286D01* X18310Y31291D01* X18316Y31297D01* X18321Y31304D01* X18325Y31312D01* X18327Y31320D01* X18328Y31329D01* X18328Y31338D01* X18326Y31346D01* X18322Y31354D01* X18310Y31378D01* X18300Y31404D01* X18293Y31430D01* X18288Y31456D01* X18285Y31483D01* X18285Y31511D01* X18287Y31538D01* X18292Y31564D01* X18299Y31590D01* X18308Y31616D01* X18320Y31640D01* X18323Y31649D01* X18325Y31657D01* X18325Y31666D01* X18324Y31674D01* X18322Y31683D01* X18318Y31690D01* X18313Y31697D01* X18306Y31703D01* X18299Y31708D01* X18291Y31711D01* X18282Y31713D01* X18274Y31714D01* X18265Y31713D01* X18257Y31710D01* X18257Y31710D01* Y33280D01* X18257Y33280D01* X18266Y33281D01* X18275Y33283D01* X18283Y33286D01* X18290Y33291D01* X18296Y33297D01* X18301Y33304D01* X18305Y33312D01* X18307Y33320D01* X18308Y33329D01* X18308Y33338D01* X18306Y33346D01* X18302Y33354D01* X18290Y33378D01* X18280Y33404D01* X18273Y33430D01* X18268Y33456D01* X18265Y33483D01* X18265Y33511D01* X18267Y33538D01* X18272Y33564D01* X18279Y33590D01* X18288Y33616D01* X18300Y33640D01* X18303Y33649D01* X18305Y33657D01* X18305Y33666D01* X18304Y33674D01* X18302Y33683D01* X18298Y33690D01* X18293Y33697D01* X18286Y33703D01* X18279Y33708D01* X18271Y33711D01* X18262Y33713D01* X18257Y33714D01* Y35284D01* X18263Y35286D01* X18270Y35291D01* X18276Y35297D01* X18281Y35304D01* X18285Y35312D01* X18287Y35320D01* X18288Y35329D01* X18288Y35338D01* X18286Y35346D01* X18282Y35354D01* X18270Y35378D01* X18260Y35404D01* X18257Y35417D01* Y35583D01* X18259Y35590D01* X18268Y35616D01* X18280Y35640D01* X18283Y35649D01* X18285Y35657D01* X18285Y35666D01* X18284Y35674D01* X18282Y35683D01* X18278Y35690D01* X18273Y35697D01* X18266Y35703D01* X18259Y35708D01* X18257Y35709D01* Y37298D01* X18261Y37304D01* X18265Y37312D01* X18267Y37320D01* X18268Y37329D01* X18268Y37338D01* X18266Y37346D01* X18262Y37354D01* X18257Y37365D01* Y37634D01* X18260Y37640D01* X18263Y37649D01* X18265Y37657D01* X18265Y37666D01* X18264Y37674D01* X18262Y37683D01* X18258Y37690D01* X18257Y37692D01* Y40000D01* G37* G36* Y29303D02*X18259Y29299D01* X18265Y29292D01* X18273Y29287D01* X18280Y29283D01* X18289Y29281D01* X18297Y29280D01* X18306Y29281D01* X18315Y29283D01* X18323Y29286D01* X18330Y29291D01* X18336Y29297D01* X18337Y29298D01* Y27709D01* X18331Y27711D01* X18322Y27713D01* X18314Y27714D01* X18305Y27713D01* X18297Y27710D01* X18289Y27706D01* X18282Y27701D01* X18276Y27695D01* X18271Y27687D01* X18257Y27656D01* Y29303D01* G37* G36* Y27343D02*X18259Y27338D01* X18275Y27306D01* X18279Y27299D01* X18285Y27292D01* X18293Y27287D01* X18300Y27283D01* X18309Y27281D01* X18317Y27280D01* X18326Y27281D01* X18335Y27283D01* X18337Y27284D01* Y25714D01* X18334Y25714D01* X18325Y25713D01* X18317Y25710D01* X18309Y25706D01* X18302Y25701D01* X18296Y25695D01* X18291Y25687D01* X18276Y25655D01* X18263Y25621D01* X18257Y25596D01* Y27343D01* G37* G36* Y25403D02*X18265Y25372D01* X18279Y25338D01* X18295Y25306D01* X18299Y25299D01* X18305Y25292D01* X18313Y25287D01* X18320Y25283D01* X18329Y25281D01* X18337Y25280D01* Y23710D01* X18329Y23706D01* X18322Y23701D01* X18316Y23695D01* X18311Y23687D01* X18296Y23655D01* X18283Y23621D01* X18274Y23586D01* X18268Y23550D01* X18265Y23514D01* X18265Y23478D01* X18269Y23442D01* X18275Y23407D01* X18285Y23372D01* X18299Y23338D01* X18315Y23306D01* X18319Y23299D01* X18325Y23292D01* X18333Y23287D01* X18337Y23285D01* Y21695D01* X18336Y21695D01* X18331Y21687D01* X18316Y21655D01* X18303Y21621D01* X18294Y21586D01* X18288Y21550D01* X18285Y21514D01* X18285Y21478D01* X18289Y21442D01* X18295Y21407D01* X18305Y21372D01* X18319Y21338D01* X18335Y21306D01* X18337Y21303D01* Y19656D01* X18336Y19655D01* X18323Y19621D01* X18314Y19586D01* X18308Y19550D01* X18305Y19514D01* X18305Y19478D01* X18309Y19442D01* X18315Y19407D01* X18325Y19372D01* X18337Y19343D01* Y17596D01* X18334Y17586D01* X18328Y17550D01* X18325Y17514D01* X18325Y17478D01* X18329Y17442D01* X18335Y17407D01* X18337Y17403D01* Y0D01* X18257D01* Y25403D01* G37* G36* X18337Y29365D02*X18330Y29378D01* X18320Y29404D01* X18313Y29430D01* X18308Y29456D01* X18305Y29483D01* X18305Y29511D01* X18307Y29538D01* X18312Y29564D01* X18319Y29590D01* X18328Y29616D01* X18337Y29634D01* Y29365D01* G37* G36* Y27417D02*X18333Y27430D01* X18328Y27456D01* X18325Y27483D01* X18325Y27511D01* X18327Y27538D01* X18332Y27564D01* X18337Y27583D01* Y27417D01* G37* G36* Y40000D02*X18667D01* Y39865D01* X18660Y39868D01* X18626Y39881D01* X18591Y39890D01* X18555Y39896D01* X18519Y39899D01* X18483Y39899D01* X18447Y39895D01* X18411Y39889D01* X18377Y39879D01* X18343Y39866D01* X18337Y39862D01* Y40000D01* G37* G36* Y39756D02*X18343Y39756D01* X18351Y39758D01* X18359Y39762D01* X18383Y39774D01* X18409Y39784D01* X18435Y39791D01* X18461Y39796D01* X18488Y39799D01* X18515Y39799D01* X18542Y39797D01* X18569Y39793D01* X18595Y39785D01* X18621Y39776D01* X18645Y39764D01* X18653Y39761D01* X18662Y39759D01* X18667Y39759D01* Y39243D01* X18666Y39243D01* X18658Y39241D01* X18650Y39237D01* X18626Y39225D01* X18600Y39215D01* X18574Y39208D01* X18548Y39203D01* X18521Y39200D01* X18494Y39200D01* X18467Y39202D01* X18440Y39207D01* X18414Y39214D01* X18388Y39223D01* X18364Y39235D01* X18356Y39238D01* X18347Y39240D01* X18338Y39240D01* X18337Y39240D01* Y39756D01* G37* G36* Y39137D02*X18349Y39131D01* X18383Y39118D01* X18418Y39109D01* X18454Y39103D01* X18490Y39100D01* X18526Y39100D01* X18562Y39104D01* X18598Y39111D01* X18632Y39121D01* X18666Y39134D01* X18667Y39134D01* Y37873D01* X18646Y37881D01* X18611Y37890D01* X18575Y37896D01* X18539Y37899D01* X18503Y37899D01* X18467Y37895D01* X18431Y37889D01* X18397Y37879D01* X18363Y37866D01* X18337Y37852D01* Y39137D01* G37* G36* Y37759D02*X18337Y37759D01* X18345Y37757D01* X18354Y37756D01* X18363Y37756D01* X18371Y37758D01* X18379Y37762D01* X18403Y37774D01* X18429Y37784D01* X18455Y37791D01* X18481Y37796D01* X18508Y37799D01* X18535Y37799D01* X18562Y37797D01* X18589Y37793D01* X18615Y37785D01* X18641Y37776D01* X18665Y37764D01* X18667Y37764D01* Y37236D01* X18646Y37225D01* X18620Y37215D01* X18594Y37208D01* X18568Y37203D01* X18541Y37200D01* X18514Y37200D01* X18487Y37202D01* X18460Y37207D01* X18434Y37214D01* X18408Y37223D01* X18384Y37235D01* X18376Y37238D01* X18367Y37240D01* X18358Y37240D01* X18350Y37239D01* X18341Y37237D01* X18337Y37234D01* Y37759D01* G37* G36* Y37147D02*X18337Y37146D01* X18369Y37131D01* X18403Y37118D01* X18438Y37109D01* X18474Y37103D01* X18510Y37100D01* X18546Y37100D01* X18582Y37104D01* X18618Y37111D01* X18652Y37121D01* X18667Y37126D01* Y35880D01* X18666Y35881D01* X18631Y35890D01* X18595Y35896D01* X18559Y35899D01* X18523Y35899D01* X18487Y35895D01* X18451Y35889D01* X18417Y35879D01* X18383Y35866D01* X18351Y35849D01* X18343Y35845D01* X18337Y35839D01* X18337Y35838D01* Y37147D01* G37* G36* Y35774D02*X18342Y35768D01* X18349Y35763D01* X18357Y35759D01* X18365Y35757D01* X18374Y35756D01* X18383Y35756D01* X18391Y35758D01* X18399Y35762D01* X18423Y35774D01* X18449Y35784D01* X18475Y35791D01* X18501Y35796D01* X18528Y35799D01* X18555Y35799D01* X18582Y35797D01* X18609Y35793D01* X18635Y35785D01* X18661Y35776D01* X18667Y35773D01* Y35226D01* X18666Y35225D01* X18640Y35215D01* X18614Y35208D01* X18588Y35203D01* X18561Y35200D01* X18534Y35200D01* X18507Y35202D01* X18480Y35207D01* X18454Y35214D01* X18428Y35223D01* X18404Y35235D01* X18396Y35238D01* X18387Y35240D01* X18378Y35240D01* X18370Y35239D01* X18361Y35237D01* X18354Y35233D01* X18347Y35228D01* X18341Y35221D01* X18337Y35215D01* Y35774D01* G37* G36* Y35167D02*X18338Y35164D01* X18343Y35157D01* X18349Y35151D01* X18357Y35146D01* X18389Y35131D01* X18417Y35121D01* Y33871D01* X18403Y33866D01* X18371Y33849D01* X18363Y33845D01* X18357Y33839D01* X18352Y33832D01* X18348Y33824D01* X18346Y33815D01* X18345Y33807D01* X18345Y33798D01* X18348Y33790D01* X18351Y33782D01* X18356Y33774D01* X18362Y33768D01* X18369Y33763D01* X18377Y33759D01* X18385Y33757D01* X18394Y33756D01* X18403Y33756D01* X18411Y33758D01* X18417Y33761D01* Y33238D01* X18416Y33238D01* X18407Y33240D01* X18398Y33240D01* X18390Y33239D01* X18381Y33237D01* X18374Y33233D01* X18367Y33228D01* X18361Y33221D01* X18356Y33214D01* X18353Y33206D01* X18351Y33197D01* X18350Y33189D01* X18351Y33180D01* X18354Y33172D01* X18358Y33164D01* X18363Y33157D01* X18369Y33151D01* X18377Y33146D01* X18409Y33131D01* X18417Y33128D01* Y31862D01* X18391Y31849D01* X18383Y31845D01* X18377Y31839D01* X18372Y31832D01* X18368Y31824D01* X18366Y31815D01* X18365Y31807D01* X18365Y31798D01* X18368Y31790D01* X18371Y31782D01* X18376Y31774D01* X18382Y31768D01* X18389Y31763D01* X18397Y31759D01* X18405Y31757D01* X18414Y31756D01* X18417Y31756D01* Y31240D01* X18410Y31239D01* X18401Y31237D01* X18394Y31233D01* X18387Y31228D01* X18381Y31221D01* X18376Y31214D01* X18373Y31206D01* X18371Y31197D01* X18370Y31189D01* X18371Y31180D01* X18374Y31172D01* X18378Y31164D01* X18383Y31157D01* X18389Y31151D01* X18397Y31146D01* X18417Y31137D01* Y29852D01* X18411Y29849D01* X18403Y29845D01* X18397Y29839D01* X18392Y29832D01* X18388Y29824D01* X18386Y29815D01* X18385Y29807D01* X18385Y29798D01* X18388Y29790D01* X18391Y29782D01* X18396Y29774D01* X18402Y29768D01* X18409Y29763D01* X18417Y29759D01* Y29234D01* X18414Y29233D01* X18407Y29228D01* X18401Y29221D01* X18396Y29214D01* X18393Y29206D01* X18391Y29197D01* X18390Y29189D01* X18391Y29180D01* X18394Y29172D01* X18398Y29164D01* X18403Y29157D01* X18409Y29151D01* X18417Y29147D01* Y27838D01* X18412Y27832D01* X18408Y27824D01* X18406Y27815D01* X18405Y27807D01* X18405Y27798D01* X18408Y27790D01* X18411Y27782D01* X18416Y27774D01* X18417Y27774D01* Y27215D01* X18416Y27214D01* X18413Y27206D01* X18411Y27197D01* X18410Y27189D01* X18411Y27180D01* X18414Y27172D01* X18417Y27167D01* Y21692D01* X18413Y21697D01* X18406Y21703D01* X18399Y21708D01* X18391Y21711D01* X18382Y21713D01* X18374Y21714D01* X18365Y21713D01* X18357Y21710D01* X18349Y21706D01* X18342Y21701D01* X18337Y21695D01* Y23285D01* X18340Y23283D01* X18349Y23281D01* X18357Y23280D01* X18366Y23281D01* X18375Y23283D01* X18383Y23286D01* X18390Y23291D01* X18396Y23297D01* X18401Y23304D01* X18405Y23312D01* X18407Y23320D01* X18408Y23329D01* X18408Y23338D01* X18406Y23346D01* X18402Y23354D01* X18390Y23378D01* X18380Y23404D01* X18373Y23430D01* X18368Y23456D01* X18365Y23483D01* X18365Y23511D01* X18367Y23538D01* X18372Y23564D01* X18379Y23590D01* X18388Y23616D01* X18400Y23640D01* X18403Y23649D01* X18405Y23657D01* X18405Y23666D01* X18404Y23674D01* X18402Y23683D01* X18398Y23690D01* X18393Y23697D01* X18386Y23703D01* X18379Y23708D01* X18371Y23711D01* X18362Y23713D01* X18354Y23714D01* X18345Y23713D01* X18337Y23710D01* X18337Y23710D01* Y25280D01* X18337Y25280D01* X18346Y25281D01* X18355Y25283D01* X18363Y25286D01* X18370Y25291D01* X18376Y25297D01* X18381Y25304D01* X18385Y25312D01* X18387Y25320D01* X18388Y25329D01* X18388Y25338D01* X18386Y25346D01* X18382Y25354D01* X18370Y25378D01* X18360Y25404D01* X18353Y25430D01* X18348Y25456D01* X18345Y25483D01* X18345Y25511D01* X18347Y25538D01* X18352Y25564D01* X18359Y25590D01* X18368Y25616D01* X18380Y25640D01* X18383Y25649D01* X18385Y25657D01* X18385Y25666D01* X18384Y25674D01* X18382Y25683D01* X18378Y25690D01* X18373Y25697D01* X18366Y25703D01* X18359Y25708D01* X18351Y25711D01* X18342Y25713D01* X18337Y25714D01* Y27284D01* X18343Y27286D01* X18350Y27291D01* X18356Y27297D01* X18361Y27304D01* X18365Y27312D01* X18367Y27320D01* X18368Y27329D01* X18368Y27338D01* X18366Y27346D01* X18362Y27354D01* X18350Y27378D01* X18340Y27404D01* X18337Y27417D01* Y27583D01* X18339Y27590D01* X18348Y27616D01* X18360Y27640D01* X18363Y27649D01* X18365Y27657D01* X18365Y27666D01* X18364Y27674D01* X18362Y27683D01* X18358Y27690D01* X18353Y27697D01* X18346Y27703D01* X18339Y27708D01* X18337Y27709D01* Y29298D01* X18341Y29304D01* X18345Y29312D01* X18347Y29320D01* X18348Y29329D01* X18348Y29338D01* X18346Y29346D01* X18342Y29354D01* X18337Y29365D01* Y29634D01* X18340Y29640D01* X18343Y29649D01* X18345Y29657D01* X18345Y29666D01* X18344Y29674D01* X18342Y29683D01* X18338Y29690D01* X18337Y29692D01* Y35167D01* G37* G36* X18417Y0D02*X18337D01* Y17403D01* X18345Y17372D01* X18359Y17338D01* X18375Y17306D01* X18379Y17299D01* X18385Y17292D01* X18393Y17287D01* X18400Y17283D01* X18409Y17281D01* X18417Y17280D01* Y15710D01* X18409Y15706D01* X18402Y15701D01* X18396Y15695D01* X18391Y15687D01* X18376Y15655D01* X18363Y15621D01* X18354Y15586D01* X18348Y15550D01* X18345Y15514D01* X18345Y15478D01* X18349Y15442D01* X18355Y15407D01* X18365Y15372D01* X18379Y15338D01* X18395Y15306D01* X18399Y15299D01* X18405Y15292D01* X18413Y15287D01* X18417Y15285D01* Y13695D01* X18416Y13695D01* X18411Y13687D01* X18396Y13655D01* X18383Y13621D01* X18374Y13586D01* X18368Y13550D01* X18365Y13514D01* X18365Y13478D01* X18369Y13442D01* X18375Y13407D01* X18385Y13372D01* X18399Y13338D01* X18415Y13306D01* X18417Y13303D01* Y11656D01* X18416Y11655D01* X18403Y11621D01* X18394Y11586D01* X18388Y11550D01* X18385Y11514D01* X18385Y11478D01* X18389Y11442D01* X18395Y11407D01* X18405Y11372D01* X18417Y11343D01* Y9596D01* X18414Y9586D01* X18408Y9550D01* X18405Y9514D01* X18405Y9478D01* X18409Y9442D01* X18415Y9407D01* X18417Y9403D01* Y0D01* G37* G36* Y17714D02*X18414Y17714D01* X18405Y17713D01* X18397Y17710D01* X18389Y17706D01* X18382Y17701D01* X18376Y17695D01* X18371Y17687D01* X18356Y17655D01* X18343Y17621D01* X18337Y17596D01* Y19343D01* X18339Y19338D01* X18355Y19306D01* X18359Y19299D01* X18365Y19292D01* X18373Y19287D01* X18380Y19283D01* X18389Y19281D01* X18397Y19280D01* X18406Y19281D01* X18415Y19283D01* X18417Y19284D01* Y17714D01* G37* G36* Y19417D02*X18413Y19430D01* X18408Y19456D01* X18405Y19483D01* X18405Y19511D01* X18407Y19538D01* X18412Y19564D01* X18417Y19583D01* Y19417D01* G37* G36* Y19709D02*X18411Y19711D01* X18402Y19713D01* X18394Y19714D01* X18385Y19713D01* X18377Y19710D01* X18369Y19706D01* X18362Y19701D01* X18356Y19695D01* X18351Y19687D01* X18337Y19656D01* Y21303D01* X18339Y21299D01* X18345Y21292D01* X18353Y21287D01* X18360Y21283D01* X18369Y21281D01* X18377Y21280D01* X18386Y21281D01* X18395Y21283D01* X18403Y21286D01* X18410Y21291D01* X18416Y21297D01* X18417Y21298D01* Y19709D01* G37* G36* Y21365D02*X18410Y21378D01* X18400Y21404D01* X18393Y21430D01* X18388Y21456D01* X18385Y21483D01* X18385Y21511D01* X18387Y21538D01* X18392Y21564D01* X18399Y21590D01* X18408Y21616D01* X18417Y21634D01* Y21365D01* G37* G36* Y35121D02*X18423Y35118D01* X18458Y35109D01* X18494Y35103D01* X18530Y35100D01* X18566Y35100D01* X18602Y35104D01* X18638Y35111D01* X18667Y35119D01* Y33886D01* X18651Y33890D01* X18615Y33896D01* X18579Y33899D01* X18543Y33899D01* X18507Y33895D01* X18471Y33889D01* X18437Y33879D01* X18417Y33871D01* Y35121D01* G37* G36* Y33761D02*X18419Y33762D01* X18443Y33774D01* X18469Y33784D01* X18495Y33791D01* X18521Y33796D01* X18548Y33799D01* X18575Y33799D01* X18602Y33797D01* X18629Y33793D01* X18655Y33785D01* X18667Y33781D01* Y33218D01* X18660Y33215D01* X18634Y33208D01* X18608Y33203D01* X18581Y33200D01* X18554Y33200D01* X18527Y33202D01* X18500Y33207D01* X18474Y33214D01* X18448Y33223D01* X18424Y33235D01* X18417Y33238D01* Y33761D01* G37* G36* Y33128D02*X18443Y33118D01* X18478Y33109D01* X18514Y33103D01* X18550Y33100D01* X18586Y33100D01* X18622Y33104D01* X18658Y33111D01* X18667Y33113D01* Y31891D01* X18635Y31896D01* X18599Y31899D01* X18563Y31899D01* X18527Y31895D01* X18491Y31889D01* X18457Y31879D01* X18423Y31866D01* X18417Y31862D01* Y33128D01* G37* G36* Y31756D02*X18423Y31756D01* X18431Y31758D01* X18439Y31762D01* X18463Y31774D01* X18489Y31784D01* X18515Y31791D01* X18541Y31796D01* X18568Y31799D01* X18595Y31799D01* X18622Y31797D01* X18649Y31793D01* X18667Y31788D01* Y31212D01* X18654Y31208D01* X18628Y31203D01* X18601Y31200D01* X18574Y31200D01* X18547Y31202D01* X18520Y31207D01* X18494Y31214D01* X18468Y31223D01* X18444Y31235D01* X18436Y31238D01* X18427Y31240D01* X18418Y31240D01* X18417Y31240D01* Y31756D01* G37* G36* Y31137D02*X18429Y31131D01* X18463Y31118D01* X18498Y31109D01* X18534Y31103D01* X18570Y31100D01* X18606Y31100D01* X18642Y31104D01* X18667Y31109D01* Y29894D01* X18655Y29896D01* X18619Y29899D01* X18583Y29899D01* X18547Y29895D01* X18511Y29889D01* X18477Y29879D01* X18443Y29866D01* X18417Y29852D01* Y31137D01* G37* G36* Y29759D02*X18417Y29759D01* X18425Y29757D01* X18434Y29756D01* X18443Y29756D01* X18451Y29758D01* X18459Y29762D01* X18483Y29774D01* X18509Y29784D01* X18535Y29791D01* X18561Y29796D01* X18588Y29799D01* X18615Y29799D01* X18642Y29797D01* X18667Y29793D01* Y29206D01* X18648Y29203D01* X18621Y29200D01* X18594Y29200D01* X18567Y29202D01* X18540Y29207D01* X18514Y29214D01* X18488Y29223D01* X18464Y29235D01* X18456Y29238D01* X18447Y29240D01* X18438Y29240D01* X18430Y29239D01* X18421Y29237D01* X18417Y29234D01* Y29759D01* G37* G36* Y29147D02*X18417Y29146D01* X18449Y29131D01* X18483Y29118D01* X18518Y29109D01* X18554Y29103D01* X18590Y29100D01* X18626Y29100D01* X18662Y29104D01* X18667Y29105D01* Y27897D01* X18639Y27899D01* X18603Y27899D01* X18567Y27895D01* X18531Y27889D01* X18497Y27879D01* X18463Y27866D01* X18431Y27849D01* X18423Y27845D01* X18417Y27839D01* X18417Y27838D01* Y29147D01* G37* G36* Y27774D02*X18422Y27768D01* X18429Y27763D01* X18437Y27759D01* X18445Y27757D01* X18454Y27756D01* X18463Y27756D01* X18471Y27758D01* X18479Y27762D01* X18503Y27774D01* X18529Y27784D01* X18555Y27791D01* X18581Y27796D01* X18608Y27799D01* X18635Y27799D01* X18662Y27797D01* X18667Y27796D01* Y27203D01* X18641Y27200D01* X18614Y27200D01* X18587Y27202D01* X18560Y27207D01* X18534Y27214D01* X18508Y27223D01* X18484Y27235D01* X18476Y27238D01* X18467Y27240D01* X18458Y27240D01* X18450Y27239D01* X18441Y27237D01* X18434Y27233D01* X18427Y27228D01* X18421Y27221D01* X18417Y27215D01* Y27774D01* G37* G36* Y27167D02*X18418Y27164D01* X18423Y27157D01* X18429Y27151D01* X18437Y27146D01* X18469Y27131D01* X18497Y27121D01* Y25871D01* X18483Y25866D01* X18451Y25849D01* X18443Y25845D01* X18437Y25839D01* X18432Y25832D01* X18428Y25824D01* X18426Y25815D01* X18425Y25807D01* X18425Y25798D01* X18428Y25790D01* X18431Y25782D01* X18436Y25774D01* X18442Y25768D01* X18449Y25763D01* X18457Y25759D01* X18465Y25757D01* X18474Y25756D01* X18483Y25756D01* X18491Y25758D01* X18497Y25761D01* Y25238D01* X18496Y25238D01* X18487Y25240D01* X18478Y25240D01* X18470Y25239D01* X18461Y25237D01* X18454Y25233D01* X18447Y25228D01* X18441Y25221D01* X18436Y25214D01* X18433Y25206D01* X18431Y25197D01* X18430Y25189D01* X18431Y25180D01* X18434Y25172D01* X18438Y25164D01* X18443Y25157D01* X18449Y25151D01* X18457Y25146D01* X18489Y25131D01* X18497Y25128D01* Y23862D01* X18471Y23849D01* X18463Y23845D01* X18457Y23839D01* X18452Y23832D01* X18448Y23824D01* X18446Y23815D01* X18445Y23807D01* X18445Y23798D01* X18448Y23790D01* X18451Y23782D01* X18456Y23774D01* X18462Y23768D01* X18469Y23763D01* X18477Y23759D01* X18485Y23757D01* X18494Y23756D01* X18497Y23756D01* Y23240D01* X18490Y23239D01* X18481Y23237D01* X18474Y23233D01* X18467Y23228D01* X18461Y23221D01* X18456Y23214D01* X18453Y23206D01* X18451Y23197D01* X18450Y23189D01* X18451Y23180D01* X18454Y23172D01* X18458Y23164D01* X18463Y23157D01* X18469Y23151D01* X18477Y23146D01* X18497Y23137D01* Y21852D01* X18491Y21849D01* X18483Y21845D01* X18477Y21839D01* X18472Y21832D01* X18468Y21824D01* X18466Y21815D01* X18465Y21807D01* X18465Y21798D01* X18468Y21790D01* X18471Y21782D01* X18476Y21774D01* X18482Y21768D01* X18489Y21763D01* X18497Y21759D01* Y21234D01* X18494Y21233D01* X18487Y21228D01* X18481Y21221D01* X18476Y21214D01* X18473Y21206D01* X18471Y21197D01* X18470Y21189D01* X18471Y21180D01* X18474Y21172D01* X18478Y21164D01* X18483Y21157D01* X18489Y21151D01* X18497Y21147D01* Y19838D01* X18492Y19832D01* X18488Y19824D01* X18486Y19815D01* X18485Y19807D01* X18485Y19798D01* X18488Y19790D01* X18491Y19782D01* X18496Y19774D01* X18497Y19774D01* Y19215D01* X18496Y19214D01* X18493Y19206D01* X18491Y19197D01* X18490Y19189D01* X18491Y19180D01* X18494Y19172D01* X18497Y19167D01* Y13692D01* X18493Y13697D01* X18486Y13703D01* X18479Y13708D01* X18471Y13711D01* X18462Y13713D01* X18454Y13714D01* X18445Y13713D01* X18437Y13710D01* X18429Y13706D01* X18422Y13701D01* X18417Y13695D01* Y15285D01* X18420Y15283D01* X18429Y15281D01* X18437Y15280D01* X18446Y15281D01* X18455Y15283D01* X18463Y15286D01* X18470Y15291D01* X18476Y15297D01* X18481Y15304D01* X18485Y15312D01* X18487Y15320D01* X18488Y15329D01* X18488Y15338D01* X18486Y15346D01* X18482Y15354D01* X18470Y15378D01* X18460Y15404D01* X18453Y15430D01* X18448Y15456D01* X18445Y15483D01* X18445Y15511D01* X18447Y15538D01* X18452Y15564D01* X18459Y15590D01* X18468Y15616D01* X18480Y15640D01* X18483Y15649D01* X18485Y15657D01* X18485Y15666D01* X18484Y15674D01* X18482Y15683D01* X18478Y15690D01* X18473Y15697D01* X18466Y15703D01* X18459Y15708D01* X18451Y15711D01* X18442Y15713D01* X18434Y15714D01* X18425Y15713D01* X18417Y15710D01* X18417Y15710D01* Y17280D01* X18417Y17280D01* X18426Y17281D01* X18435Y17283D01* X18443Y17286D01* X18450Y17291D01* X18456Y17297D01* X18461Y17304D01* X18465Y17312D01* X18467Y17320D01* X18468Y17329D01* X18468Y17338D01* X18466Y17346D01* X18462Y17354D01* X18450Y17378D01* X18440Y17404D01* X18433Y17430D01* X18428Y17456D01* X18425Y17483D01* X18425Y17511D01* X18427Y17538D01* X18432Y17564D01* X18439Y17590D01* X18448Y17616D01* X18460Y17640D01* X18463Y17649D01* X18465Y17657D01* X18465Y17666D01* X18464Y17674D01* X18462Y17683D01* X18458Y17690D01* X18453Y17697D01* X18446Y17703D01* X18439Y17708D01* X18431Y17711D01* X18422Y17713D01* X18417Y17714D01* Y19284D01* X18423Y19286D01* X18430Y19291D01* X18436Y19297D01* X18441Y19304D01* X18445Y19312D01* X18447Y19320D01* X18448Y19329D01* X18448Y19338D01* X18446Y19346D01* X18442Y19354D01* X18430Y19378D01* X18420Y19404D01* X18417Y19417D01* Y19583D01* X18419Y19590D01* X18428Y19616D01* X18440Y19640D01* X18443Y19649D01* X18445Y19657D01* X18445Y19666D01* X18444Y19674D01* X18442Y19683D01* X18438Y19690D01* X18433Y19697D01* X18426Y19703D01* X18419Y19708D01* X18417Y19709D01* Y21298D01* X18421Y21304D01* X18425Y21312D01* X18427Y21320D01* X18428Y21329D01* X18428Y21338D01* X18426Y21346D01* X18422Y21354D01* X18417Y21365D01* Y21634D01* X18420Y21640D01* X18423Y21649D01* X18425Y21657D01* X18425Y21666D01* X18424Y21674D01* X18422Y21683D01* X18418Y21690D01* X18417Y21692D01* Y27167D01* G37* G36* X18497Y0D02*X18417D01* Y9403D01* X18425Y9372D01* X18439Y9338D01* X18455Y9306D01* X18459Y9299D01* X18465Y9292D01* X18473Y9287D01* X18480Y9283D01* X18489Y9281D01* X18497Y9280D01* Y7710D01* X18489Y7706D01* X18482Y7701D01* X18476Y7695D01* X18471Y7687D01* X18456Y7655D01* X18443Y7621D01* X18434Y7586D01* X18428Y7550D01* X18425Y7514D01* X18425Y7478D01* X18429Y7442D01* X18435Y7407D01* X18445Y7372D01* X18459Y7338D01* X18475Y7306D01* X18479Y7299D01* X18485Y7292D01* X18493Y7287D01* X18497Y7285D01* Y5695D01* X18496Y5695D01* X18491Y5687D01* X18476Y5655D01* X18463Y5621D01* X18454Y5586D01* X18448Y5550D01* X18445Y5514D01* X18445Y5478D01* X18449Y5442D01* X18455Y5407D01* X18465Y5372D01* X18479Y5338D01* X18495Y5306D01* X18497Y5303D01* Y3656D01* X18496Y3655D01* X18483Y3621D01* X18474Y3586D01* X18468Y3550D01* X18465Y3514D01* X18465Y3478D01* X18469Y3442D01* X18475Y3407D01* X18485Y3372D01* X18497Y3343D01* Y1596D01* X18494Y1586D01* X18488Y1550D01* X18485Y1514D01* X18485Y1478D01* X18489Y1442D01* X18495Y1407D01* X18497Y1403D01* Y0D01* G37* G36* Y9714D02*X18494Y9714D01* X18485Y9713D01* X18477Y9710D01* X18469Y9706D01* X18462Y9701D01* X18456Y9695D01* X18451Y9687D01* X18436Y9655D01* X18423Y9621D01* X18417Y9596D01* Y11343D01* X18419Y11338D01* X18435Y11306D01* X18439Y11299D01* X18445Y11292D01* X18453Y11287D01* X18460Y11283D01* X18469Y11281D01* X18477Y11280D01* X18486Y11281D01* X18495Y11283D01* X18497Y11284D01* Y9714D01* G37* G36* Y11417D02*X18493Y11430D01* X18488Y11456D01* X18485Y11483D01* X18485Y11511D01* X18487Y11538D01* X18492Y11564D01* X18497Y11583D01* Y11417D01* G37* G36* Y11709D02*X18491Y11711D01* X18482Y11713D01* X18474Y11714D01* X18465Y11713D01* X18457Y11710D01* X18449Y11706D01* X18442Y11701D01* X18436Y11695D01* X18431Y11687D01* X18417Y11656D01* Y13303D01* X18419Y13299D01* X18425Y13292D01* X18433Y13287D01* X18440Y13283D01* X18449Y13281D01* X18457Y13280D01* X18466Y13281D01* X18475Y13283D01* X18483Y13286D01* X18490Y13291D01* X18496Y13297D01* X18497Y13298D01* Y11709D01* G37* G36* Y13365D02*X18490Y13378D01* X18480Y13404D01* X18473Y13430D01* X18468Y13456D01* X18465Y13483D01* X18465Y13511D01* X18467Y13538D01* X18472Y13564D01* X18479Y13590D01* X18488Y13616D01* X18497Y13634D01* Y13365D01* G37* G36* Y27121D02*X18503Y27118D01* X18538Y27109D01* X18574Y27103D01* X18610Y27100D01* X18646Y27100D01* X18667Y27102D01* Y25899D01* X18659Y25899D01* X18623Y25899D01* X18587Y25895D01* X18551Y25889D01* X18517Y25879D01* X18497Y25871D01* Y27121D01* G37* G36* Y25761D02*X18499Y25762D01* X18523Y25774D01* X18549Y25784D01* X18575Y25791D01* X18601Y25796D01* X18628Y25799D01* X18655Y25799D01* X18667Y25798D01* Y25201D01* X18661Y25200D01* X18634Y25200D01* X18607Y25202D01* X18580Y25207D01* X18554Y25214D01* X18528Y25223D01* X18504Y25235D01* X18497Y25238D01* Y25761D01* G37* G36* Y25128D02*X18523Y25118D01* X18558Y25109D01* X18594Y25103D01* X18630Y25100D01* X18666Y25100D01* X18667Y25100D01* Y23899D01* X18643Y23899D01* X18607Y23895D01* X18571Y23889D01* X18537Y23879D01* X18503Y23866D01* X18497Y23862D01* Y25128D01* G37* G36* Y23756D02*X18503Y23756D01* X18511Y23758D01* X18519Y23762D01* X18543Y23774D01* X18569Y23784D01* X18595Y23791D01* X18621Y23796D01* X18648Y23799D01* X18667Y23799D01* Y23200D01* X18654Y23200D01* X18627Y23202D01* X18600Y23207D01* X18574Y23214D01* X18548Y23223D01* X18524Y23235D01* X18516Y23238D01* X18507Y23240D01* X18498Y23240D01* X18497Y23240D01* Y23756D01* G37* G36* Y23137D02*X18509Y23131D01* X18543Y23118D01* X18578Y23109D01* X18614Y23103D01* X18650Y23100D01* X18667Y23100D01* Y21899D01* X18663D01* X18627Y21895D01* X18591Y21889D01* X18557Y21879D01* X18523Y21866D01* X18497Y21852D01* Y23137D01* G37* G36* Y21759D02*X18497Y21759D01* X18505Y21757D01* X18514Y21756D01* X18523Y21756D01* X18531Y21758D01* X18539Y21762D01* X18563Y21774D01* X18589Y21784D01* X18615Y21791D01* X18641Y21796D01* X18667Y21799D01* Y21200D01* X18647Y21202D01* X18620Y21207D01* X18594Y21214D01* X18568Y21223D01* X18544Y21235D01* X18536Y21238D01* X18527Y21240D01* X18518Y21240D01* X18510Y21239D01* X18501Y21237D01* X18497Y21234D01* Y21759D01* G37* G36* Y21147D02*X18497Y21146D01* X18529Y21131D01* X18563Y21118D01* X18598Y21109D01* X18634Y21103D01* X18667Y21100D01* Y19897D01* X18647Y19895D01* X18611Y19889D01* X18577Y19879D01* X18543Y19866D01* X18511Y19849D01* X18503Y19845D01* X18497Y19839D01* X18497Y19838D01* Y21147D01* G37* G36* Y19774D02*X18502Y19768D01* X18509Y19763D01* X18517Y19759D01* X18525Y19757D01* X18534Y19756D01* X18543Y19756D01* X18551Y19758D01* X18559Y19762D01* X18583Y19774D01* X18609Y19784D01* X18635Y19791D01* X18661Y19796D01* X18667Y19797D01* Y19202D01* X18667Y19202D01* X18640Y19207D01* X18614Y19214D01* X18588Y19223D01* X18564Y19235D01* X18556Y19238D01* X18547Y19240D01* X18538Y19240D01* X18530Y19239D01* X18521Y19237D01* X18514Y19233D01* X18507Y19228D01* X18501Y19221D01* X18497Y19215D01* Y19774D01* G37* G36* Y19167D02*X18498Y19164D01* X18503Y19157D01* X18509Y19151D01* X18517Y19146D01* X18549Y19131D01* X18583Y19118D01* X18618Y19109D01* X18654Y19103D01* X18667Y19102D01* Y17895D01* X18667D01* X18631Y17889D01* X18597Y17879D01* X18563Y17866D01* X18531Y17849D01* X18523Y17845D01* X18517Y17839D01* X18512Y17832D01* X18508Y17824D01* X18506Y17815D01* X18505Y17807D01* X18505Y17798D01* X18508Y17790D01* X18511Y17782D01* X18516Y17774D01* X18522Y17768D01* X18529Y17763D01* X18537Y17759D01* X18545Y17757D01* X18554Y17756D01* X18563Y17756D01* X18571Y17758D01* X18579Y17762D01* X18603Y17774D01* X18629Y17784D01* X18655Y17791D01* X18667Y17794D01* Y17205D01* X18660Y17207D01* X18634Y17214D01* X18608Y17223D01* X18584Y17235D01* X18576Y17238D01* X18567Y17240D01* X18558Y17240D01* X18550Y17239D01* X18541Y17237D01* X18534Y17233D01* X18527Y17228D01* X18521Y17221D01* X18516Y17214D01* X18513Y17206D01* X18511Y17197D01* X18510Y17189D01* X18511Y17180D01* X18514Y17172D01* X18518Y17164D01* X18523Y17157D01* X18529Y17151D01* X18537Y17146D01* X18569Y17131D01* X18603Y17118D01* X18638Y17109D01* X18667Y17104D01* Y15892D01* X18651Y15889D01* X18617Y15879D01* X18583Y15866D01* X18551Y15849D01* X18543Y15845D01* X18537Y15839D01* X18532Y15832D01* X18528Y15824D01* X18526Y15815D01* X18525Y15807D01* X18525Y15798D01* X18528Y15790D01* X18531Y15782D01* X18536Y15774D01* X18542Y15768D01* X18549Y15763D01* X18557Y15759D01* X18565Y15757D01* X18574Y15756D01* X18583Y15756D01* X18591Y15758D01* X18599Y15762D01* X18623Y15774D01* X18649Y15784D01* X18667Y15789D01* Y15210D01* X18654Y15214D01* X18628Y15223D01* X18604Y15235D01* X18596Y15238D01* X18587Y15240D01* X18578Y15240D01* X18570Y15239D01* X18561Y15237D01* X18554Y15233D01* X18547Y15228D01* X18541Y15221D01* X18536Y15214D01* X18533Y15206D01* X18531Y15197D01* X18530Y15189D01* X18531Y15180D01* X18534Y15172D01* X18538Y15164D01* X18543Y15157D01* X18549Y15151D01* X18557Y15146D01* X18589Y15131D01* X18623Y15118D01* X18658Y15109D01* X18667Y15107D01* Y13887D01* X18637Y13879D01* X18603Y13866D01* X18571Y13849D01* X18563Y13845D01* X18557Y13839D01* X18552Y13832D01* X18548Y13824D01* X18546Y13815D01* X18545Y13807D01* X18545Y13798D01* X18548Y13790D01* X18551Y13782D01* X18556Y13774D01* X18562Y13768D01* X18569Y13763D01* X18577Y13759D01* X18585Y13757D01* X18594Y13756D01* X18603Y13756D01* X18611Y13758D01* X18619Y13762D01* X18643Y13774D01* X18667Y13783D01* Y13216D01* X18648Y13223D01* X18624Y13235D01* X18616Y13238D01* X18607Y13240D01* X18598Y13240D01* X18590Y13239D01* X18581Y13237D01* X18574Y13233D01* X18567Y13228D01* X18561Y13221D01* X18556Y13214D01* X18553Y13206D01* X18551Y13197D01* X18550Y13189D01* X18551Y13180D01* X18554Y13172D01* X18558Y13164D01* X18563Y13157D01* X18569Y13151D01* X18577Y13146D01* X18609Y13131D01* X18643Y13118D01* X18667Y13112D01* Y11882D01* X18657Y11879D01* X18623Y11866D01* X18591Y11849D01* X18583Y11845D01* X18577Y11839D01* X18572Y11832D01* X18568Y11824D01* X18566Y11815D01* X18565Y11807D01* X18565Y11798D01* X18568Y11790D01* X18571Y11782D01* X18576Y11774D01* X18582Y11768D01* X18589Y11763D01* X18597Y11759D01* X18605Y11757D01* X18614Y11756D01* X18623Y11756D01* X18631Y11758D01* X18639Y11762D01* X18663Y11774D01* X18667Y11776D01* Y11223D01* X18644Y11235D01* X18636Y11238D01* X18627Y11240D01* X18618Y11240D01* X18610Y11239D01* X18601Y11237D01* X18594Y11233D01* X18587Y11228D01* X18581Y11221D01* X18576Y11214D01* X18573Y11206D01* X18571Y11197D01* X18570Y11189D01* X18571Y11180D01* X18574Y11172D01* X18578Y11164D01* X18583Y11157D01* X18589Y11151D01* X18597Y11146D01* X18629Y11131D01* X18663Y11118D01* X18667Y11117D01* Y9875D01* X18643Y9866D01* X18611Y9849D01* X18603Y9845D01* X18597Y9839D01* X18592Y9832D01* X18588Y9824D01* X18586Y9815D01* X18585Y9807D01* X18585Y9798D01* X18588Y9790D01* X18591Y9782D01* X18596Y9774D01* X18602Y9768D01* X18609Y9763D01* X18617Y9759D01* X18625Y9757D01* X18634Y9756D01* X18643Y9756D01* X18651Y9758D01* X18659Y9762D01* X18667Y9766D01* Y9233D01* X18664Y9235D01* X18656Y9238D01* X18647Y9240D01* X18638Y9240D01* X18630Y9239D01* X18621Y9237D01* X18614Y9233D01* X18607Y9228D01* X18601Y9221D01* X18596Y9214D01* X18593Y9206D01* X18591Y9197D01* X18590Y9189D01* X18591Y9180D01* X18594Y9172D01* X18598Y9164D01* X18603Y9157D01* X18609Y9151D01* X18617Y9146D01* X18649Y9131D01* X18667Y9124D01* Y7867D01* X18663Y7866D01* X18631Y7849D01* X18623Y7845D01* X18617Y7839D01* X18612Y7832D01* X18608Y7824D01* X18606Y7815D01* X18605Y7807D01* X18605Y7798D01* X18608Y7790D01* X18611Y7782D01* X18616Y7774D01* X18622Y7768D01* X18629Y7763D01* X18637Y7759D01* X18645Y7757D01* X18654Y7756D01* X18663Y7756D01* X18667Y7757D01* Y7240D01* X18667D01* X18658Y7240D01* X18650Y7239D01* X18641Y7237D01* X18634Y7233D01* X18627Y7228D01* X18621Y7221D01* X18616Y7214D01* X18613Y7206D01* X18611Y7197D01* X18610Y7189D01* X18611Y7180D01* X18614Y7172D01* X18618Y7164D01* X18623Y7157D01* X18629Y7151D01* X18637Y7146D01* X18667Y7132D01* Y5858D01* X18651Y5849D01* X18643Y5845D01* X18637Y5839D01* X18632Y5832D01* X18628Y5824D01* X18626Y5815D01* X18625Y5807D01* X18625Y5798D01* X18628Y5790D01* X18631Y5782D01* X18636Y5774D01* X18642Y5768D01* X18649Y5763D01* X18657Y5759D01* X18665Y5757D01* X18667Y5756D01* Y5239D01* X18661Y5237D01* X18654Y5233D01* X18647Y5228D01* X18641Y5221D01* X18636Y5214D01* X18633Y5206D01* X18631Y5197D01* X18630Y5189D01* X18631Y5180D01* X18634Y5172D01* X18638Y5164D01* X18643Y5157D01* X18649Y5151D01* X18657Y5146D01* X18667Y5141D01* Y3847D01* X18663Y3845D01* X18657Y3839D01* X18652Y3832D01* X18648Y3824D01* X18646Y3815D01* X18645Y3807D01* X18645Y3798D01* X18648Y3790D01* X18651Y3782D01* X18656Y3774D01* X18662Y3768D01* X18667Y3764D01* Y3228D01* X18667Y3228D01* X18661Y3221D01* X18656Y3214D01* X18653Y3206D01* X18651Y3197D01* X18650Y3189D01* X18651Y3180D01* X18654Y3172D01* X18658Y3164D01* X18663Y3157D01* X18667Y3153D01* Y1821D01* X18666Y1815D01* X18665Y1807D01* X18665Y1798D01* X18667Y1791D01* Y0D01* X18497D01* Y1403D01* X18505Y1372D01* X18519Y1338D01* X18535Y1306D01* X18539Y1299D01* X18545Y1292D01* X18553Y1287D01* X18560Y1283D01* X18569Y1281D01* X18577Y1280D01* X18586Y1281D01* X18595Y1283D01* X18603Y1286D01* X18610Y1291D01* X18616Y1297D01* X18621Y1304D01* X18625Y1312D01* X18627Y1320D01* X18628Y1329D01* X18628Y1338D01* X18626Y1346D01* X18622Y1354D01* X18610Y1378D01* X18600Y1404D01* X18593Y1430D01* X18588Y1456D01* X18585Y1483D01* X18585Y1511D01* X18587Y1538D01* X18592Y1564D01* X18599Y1590D01* X18608Y1616D01* X18620Y1640D01* X18623Y1649D01* X18625Y1657D01* X18625Y1666D01* X18624Y1674D01* X18622Y1683D01* X18618Y1690D01* X18613Y1697D01* X18606Y1703D01* X18599Y1708D01* X18591Y1711D01* X18582Y1713D01* X18574Y1714D01* X18565Y1713D01* X18557Y1710D01* X18549Y1706D01* X18542Y1701D01* X18536Y1695D01* X18531Y1687D01* X18516Y1655D01* X18503Y1621D01* X18497Y1596D01* Y3343D01* X18499Y3338D01* X18515Y3306D01* X18519Y3299D01* X18525Y3292D01* X18533Y3287D01* X18540Y3283D01* X18549Y3281D01* X18557Y3280D01* X18566Y3281D01* X18575Y3283D01* X18583Y3286D01* X18590Y3291D01* X18596Y3297D01* X18601Y3304D01* X18605Y3312D01* X18607Y3320D01* X18608Y3329D01* X18608Y3338D01* X18606Y3346D01* X18602Y3354D01* X18590Y3378D01* X18580Y3404D01* X18573Y3430D01* X18568Y3456D01* X18565Y3483D01* X18565Y3511D01* X18567Y3538D01* X18572Y3564D01* X18579Y3590D01* X18588Y3616D01* X18600Y3640D01* X18603Y3649D01* X18605Y3657D01* X18605Y3666D01* X18604Y3674D01* X18602Y3683D01* X18598Y3690D01* X18593Y3697D01* X18586Y3703D01* X18579Y3708D01* X18571Y3711D01* X18562Y3713D01* X18554Y3714D01* X18545Y3713D01* X18537Y3710D01* X18529Y3706D01* X18522Y3701D01* X18516Y3695D01* X18511Y3687D01* X18497Y3656D01* Y5303D01* X18499Y5299D01* X18505Y5292D01* X18513Y5287D01* X18520Y5283D01* X18529Y5281D01* X18537Y5280D01* X18546Y5281D01* X18555Y5283D01* X18563Y5286D01* X18570Y5291D01* X18576Y5297D01* X18581Y5304D01* X18585Y5312D01* X18587Y5320D01* X18588Y5329D01* X18588Y5338D01* X18586Y5346D01* X18582Y5354D01* X18570Y5378D01* X18560Y5404D01* X18553Y5430D01* X18548Y5456D01* X18545Y5483D01* X18545Y5511D01* X18547Y5538D01* X18552Y5564D01* X18559Y5590D01* X18568Y5616D01* X18580Y5640D01* X18583Y5649D01* X18585Y5657D01* X18585Y5666D01* X18584Y5674D01* X18582Y5683D01* X18578Y5690D01* X18573Y5697D01* X18566Y5703D01* X18559Y5708D01* X18551Y5711D01* X18542Y5713D01* X18534Y5714D01* X18525Y5713D01* X18517Y5710D01* X18509Y5706D01* X18502Y5701D01* X18497Y5695D01* Y7285D01* X18500Y7283D01* X18509Y7281D01* X18517Y7280D01* X18526Y7281D01* X18535Y7283D01* X18543Y7286D01* X18550Y7291D01* X18556Y7297D01* X18561Y7304D01* X18565Y7312D01* X18567Y7320D01* X18568Y7329D01* X18568Y7338D01* X18566Y7346D01* X18562Y7354D01* X18550Y7378D01* X18540Y7404D01* X18533Y7430D01* X18528Y7456D01* X18525Y7483D01* X18525Y7511D01* X18527Y7538D01* X18532Y7564D01* X18539Y7590D01* X18548Y7616D01* X18560Y7640D01* X18563Y7649D01* X18565Y7657D01* X18565Y7666D01* X18564Y7674D01* X18562Y7683D01* X18558Y7690D01* X18553Y7697D01* X18546Y7703D01* X18539Y7708D01* X18531Y7711D01* X18522Y7713D01* X18514Y7714D01* X18505Y7713D01* X18497Y7710D01* X18497Y7710D01* Y9280D01* X18497Y9280D01* X18506Y9281D01* X18515Y9283D01* X18523Y9286D01* X18530Y9291D01* X18536Y9297D01* X18541Y9304D01* X18545Y9312D01* X18547Y9320D01* X18548Y9329D01* X18548Y9338D01* X18546Y9346D01* X18542Y9354D01* X18530Y9378D01* X18520Y9404D01* X18513Y9430D01* X18508Y9456D01* X18505Y9483D01* X18505Y9511D01* X18507Y9538D01* X18512Y9564D01* X18519Y9590D01* X18528Y9616D01* X18540Y9640D01* X18543Y9649D01* X18545Y9657D01* X18545Y9666D01* X18544Y9674D01* X18542Y9683D01* X18538Y9690D01* X18533Y9697D01* X18526Y9703D01* X18519Y9708D01* X18511Y9711D01* X18502Y9713D01* X18497Y9714D01* Y11284D01* X18503Y11286D01* X18510Y11291D01* X18516Y11297D01* X18521Y11304D01* X18525Y11312D01* X18527Y11320D01* X18528Y11329D01* X18528Y11338D01* X18526Y11346D01* X18522Y11354D01* X18510Y11378D01* X18500Y11404D01* X18497Y11417D01* Y11583D01* X18499Y11590D01* X18508Y11616D01* X18520Y11640D01* X18523Y11649D01* X18525Y11657D01* X18525Y11666D01* X18524Y11674D01* X18522Y11683D01* X18518Y11690D01* X18513Y11697D01* X18506Y11703D01* X18499Y11708D01* X18497Y11709D01* Y13298D01* X18501Y13304D01* X18505Y13312D01* X18507Y13320D01* X18508Y13329D01* X18508Y13338D01* X18506Y13346D01* X18502Y13354D01* X18497Y13365D01* Y13634D01* X18500Y13640D01* X18503Y13649D01* X18505Y13657D01* X18505Y13666D01* X18504Y13674D01* X18502Y13683D01* X18498Y13690D01* X18497Y13692D01* Y19167D01* G37* G36* X18667Y40000D02*X18832D01* Y39714D01* X18829Y39716D01* X18820Y39718D01* X18812Y39719D01* X18803Y39719D01* X18794Y39717D01* X18786Y39713D01* X18779Y39708D01* X18773Y39702D01* X18768Y39695D01* X18764Y39687D01* X18762Y39679D01* X18761Y39670D01* X18761Y39661D01* X18763Y39653D01* X18767Y39645D01* X18779Y39621D01* X18789Y39595D01* X18796Y39569D01* X18801Y39543D01* X18804Y39516D01* X18804Y39489D01* X18802Y39462D01* X18797Y39435D01* X18790Y39409D01* X18781Y39383D01* X18769Y39359D01* X18766Y39351D01* X18764Y39342D01* X18764Y39333D01* X18765Y39325D01* X18767Y39317D01* X18771Y39309D01* X18776Y39302D01* X18783Y39296D01* X18790Y39291D01* X18798Y39288D01* X18807Y39286D01* X18815Y39285D01* X18824Y39286D01* X18832Y39289D01* X18832Y39289D01* Y37719D01* X18832Y37719D01* X18823Y37719D01* X18814Y37717D01* X18806Y37713D01* X18799Y37708D01* X18793Y37702D01* X18788Y37695D01* X18784Y37687D01* X18782Y37679D01* X18781Y37670D01* X18781Y37661D01* X18783Y37653D01* X18787Y37645D01* X18799Y37621D01* X18809Y37595D01* X18816Y37569D01* X18821Y37543D01* X18824Y37516D01* X18824Y37489D01* X18822Y37462D01* X18817Y37435D01* X18810Y37409D01* X18801Y37383D01* X18789Y37359D01* X18786Y37351D01* X18784Y37342D01* X18784Y37333D01* X18785Y37325D01* X18787Y37317D01* X18791Y37309D01* X18796Y37302D01* X18803Y37296D01* X18810Y37291D01* X18818Y37288D01* X18827Y37286D01* X18832Y37286D01* Y35716D01* X18826Y35713D01* X18819Y35708D01* X18813Y35702D01* X18808Y35695D01* X18804Y35687D01* X18802Y35679D01* X18801Y35670D01* X18801Y35661D01* X18803Y35653D01* X18807Y35645D01* X18819Y35621D01* X18829Y35595D01* X18832Y35583D01* Y35416D01* X18830Y35409D01* X18821Y35383D01* X18809Y35359D01* X18806Y35351D01* X18804Y35342D01* X18804Y35333D01* X18805Y35325D01* X18807Y35317D01* X18811Y35309D01* X18816Y35302D01* X18823Y35296D01* X18830Y35291D01* X18832Y35290D01* Y33701D01* X18828Y33695D01* X18824Y33687D01* X18822Y33679D01* X18821Y33670D01* X18821Y33661D01* X18823Y33653D01* X18827Y33645D01* X18832Y33634D01* Y33365D01* X18829Y33359D01* X18826Y33351D01* X18824Y33342D01* X18824Y33333D01* X18825Y33325D01* X18827Y33317D01* X18831Y33309D01* X18832Y33307D01* Y27833D01* X18831Y27835D01* X18826Y27842D01* X18820Y27848D01* X18812Y27853D01* X18780Y27868D01* X18746Y27881D01* X18711Y27890D01* X18675Y27896D01* X18667Y27897D01* Y29105D01* X18698Y29111D01* X18732Y29121D01* X18766Y29134D01* X18798Y29150D01* X18806Y29155D01* X18812Y29161D01* X18817Y29168D01* X18821Y29175D01* X18823Y29184D01* X18824Y29193D01* X18824Y29201D01* X18821Y29210D01* X18818Y29218D01* X18813Y29225D01* X18807Y29231D01* X18800Y29236D01* X18792Y29240D01* X18784Y29243D01* X18775Y29243D01* X18766Y29243D01* X18758Y29241D01* X18750Y29237D01* X18726Y29225D01* X18700Y29215D01* X18674Y29208D01* X18667Y29206D01* Y29793D01* X18669Y29793D01* X18695Y29785D01* X18721Y29776D01* X18745Y29764D01* X18753Y29761D01* X18762Y29759D01* X18771Y29759D01* X18779Y29760D01* X18788Y29762D01* X18795Y29766D01* X18802Y29772D01* X18808Y29778D01* X18813Y29785D01* X18816Y29793D01* X18818Y29802D01* X18819Y29810D01* X18818Y29819D01* X18815Y29827D01* X18811Y29835D01* X18806Y29842D01* X18800Y29848D01* X18792Y29853D01* X18760Y29868D01* X18726Y29881D01* X18691Y29890D01* X18667Y29894D01* Y31109D01* X18678Y31111D01* X18712Y31121D01* X18746Y31134D01* X18778Y31150D01* X18786Y31155D01* X18792Y31161D01* X18797Y31168D01* X18801Y31175D01* X18803Y31184D01* X18804Y31193D01* X18804Y31201D01* X18801Y31210D01* X18798Y31218D01* X18793Y31225D01* X18787Y31231D01* X18780Y31236D01* X18772Y31240D01* X18764Y31243D01* X18755Y31243D01* X18746Y31243D01* X18738Y31241D01* X18730Y31237D01* X18706Y31225D01* X18680Y31215D01* X18667Y31212D01* Y31788D01* X18675Y31785D01* X18701Y31776D01* X18725Y31764D01* X18733Y31761D01* X18742Y31759D01* X18751Y31759D01* X18759Y31760D01* X18768Y31762D01* X18775Y31766D01* X18782Y31772D01* X18788Y31778D01* X18793Y31785D01* X18796Y31793D01* X18798Y31802D01* X18799Y31810D01* X18798Y31819D01* X18795Y31827D01* X18791Y31835D01* X18786Y31842D01* X18780Y31848D01* X18772Y31853D01* X18740Y31868D01* X18706Y31881D01* X18671Y31890D01* X18667Y31891D01* Y33113D01* X18692Y33121D01* X18726Y33134D01* X18758Y33150D01* X18766Y33155D01* X18772Y33161D01* X18777Y33168D01* X18781Y33175D01* X18783Y33184D01* X18784Y33193D01* X18784Y33201D01* X18781Y33210D01* X18778Y33218D01* X18773Y33225D01* X18767Y33231D01* X18760Y33236D01* X18752Y33240D01* X18744Y33243D01* X18735Y33243D01* X18726Y33243D01* X18718Y33241D01* X18710Y33237D01* X18686Y33225D01* X18667Y33218D01* Y33781D01* X18681Y33776D01* X18705Y33764D01* X18713Y33761D01* X18722Y33759D01* X18731Y33759D01* X18739Y33760D01* X18748Y33762D01* X18755Y33766D01* X18762Y33772D01* X18768Y33778D01* X18773Y33785D01* X18776Y33793D01* X18778Y33802D01* X18779Y33810D01* X18778Y33819D01* X18775Y33827D01* X18771Y33835D01* X18766Y33842D01* X18760Y33848D01* X18752Y33853D01* X18720Y33868D01* X18686Y33881D01* X18667Y33886D01* Y35119D01* X18672Y35121D01* X18706Y35134D01* X18738Y35150D01* X18746Y35155D01* X18752Y35161D01* X18757Y35168D01* X18761Y35175D01* X18763Y35184D01* X18764Y35193D01* X18764Y35201D01* X18761Y35210D01* X18758Y35218D01* X18753Y35225D01* X18747Y35231D01* X18740Y35236D01* X18732Y35240D01* X18724Y35243D01* X18715Y35243D01* X18706Y35243D01* X18698Y35241D01* X18690Y35237D01* X18667Y35226D01* Y35773D01* X18685Y35764D01* X18693Y35761D01* X18702Y35759D01* X18711Y35759D01* X18719Y35760D01* X18728Y35762D01* X18735Y35766D01* X18742Y35772D01* X18748Y35778D01* X18753Y35785D01* X18756Y35793D01* X18758Y35802D01* X18759Y35810D01* X18758Y35819D01* X18755Y35827D01* X18751Y35835D01* X18746Y35842D01* X18740Y35848D01* X18732Y35853D01* X18700Y35868D01* X18667Y35880D01* Y37126D01* X18686Y37134D01* X18718Y37150D01* X18726Y37155D01* X18732Y37161D01* X18737Y37168D01* X18741Y37175D01* X18743Y37184D01* X18744Y37193D01* X18744Y37201D01* X18741Y37210D01* X18738Y37218D01* X18733Y37225D01* X18727Y37231D01* X18720Y37236D01* X18712Y37240D01* X18704Y37243D01* X18695Y37243D01* X18686Y37243D01* X18678Y37241D01* X18670Y37237D01* X18667Y37236D01* Y37764D01* X18673Y37761D01* X18682Y37759D01* X18691Y37759D01* X18699Y37760D01* X18708Y37762D01* X18715Y37766D01* X18722Y37772D01* X18728Y37778D01* X18733Y37785D01* X18736Y37793D01* X18738Y37802D01* X18739Y37810D01* X18738Y37819D01* X18735Y37827D01* X18731Y37835D01* X18726Y37842D01* X18720Y37848D01* X18712Y37853D01* X18680Y37868D01* X18667Y37873D01* Y39134D01* X18698Y39150D01* X18706Y39155D01* X18712Y39161D01* X18717Y39168D01* X18721Y39175D01* X18723Y39184D01* X18724Y39193D01* X18724Y39201D01* X18721Y39210D01* X18718Y39218D01* X18713Y39225D01* X18707Y39231D01* X18700Y39236D01* X18692Y39240D01* X18684Y39243D01* X18675Y39243D01* X18667Y39243D01* Y39759D01* X18671Y39759D01* X18679Y39760D01* X18688Y39762D01* X18695Y39766D01* X18702Y39772D01* X18708Y39778D01* X18713Y39785D01* X18716Y39793D01* X18718Y39802D01* X18719Y39810D01* X18718Y39819D01* X18715Y39827D01* X18711Y39835D01* X18706Y39842D01* X18700Y39848D01* X18692Y39853D01* X18667Y39865D01* Y40000D01* G37* G36* X18832Y19878D02*X18826Y19881D01* X18791Y19890D01* X18755Y19896D01* X18719Y19899D01* X18683Y19899D01* X18667Y19897D01* Y21100D01* X18670Y21100D01* X18706Y21100D01* X18742Y21104D01* X18778Y21111D01* X18812Y21121D01* X18832Y21128D01* Y19878D01* G37* G36* Y21238D02*X18830Y21237D01* X18806Y21225D01* X18780Y21215D01* X18754Y21208D01* X18728Y21203D01* X18701Y21200D01* X18674Y21200D01* X18667Y21200D01* Y21799D01* X18668Y21799D01* X18695Y21799D01* X18722Y21797D01* X18749Y21793D01* X18775Y21785D01* X18801Y21776D01* X18825Y21764D01* X18832Y21762D01* Y21238D01* G37* G36* Y21871D02*X18806Y21881D01* X18771Y21890D01* X18735Y21896D01* X18699Y21899D01* X18667Y21899D01* Y23100D01* X18686Y23100D01* X18722Y23104D01* X18758Y23111D01* X18792Y23121D01* X18826Y23134D01* X18832Y23137D01* Y21871D01* G37* G36* Y23243D02*X18826Y23243D01* X18818Y23241D01* X18810Y23237D01* X18786Y23225D01* X18760Y23215D01* X18734Y23208D01* X18708Y23203D01* X18681Y23200D01* X18667Y23200D01* Y23799D01* X18675Y23799D01* X18702Y23797D01* X18729Y23793D01* X18755Y23785D01* X18781Y23776D01* X18805Y23764D01* X18813Y23761D01* X18822Y23759D01* X18831Y23759D01* X18832Y23759D01* Y23243D01* G37* G36* Y23862D02*X18820Y23868D01* X18786Y23881D01* X18751Y23890D01* X18715Y23896D01* X18679Y23899D01* X18667Y23899D01* Y25100D01* X18702Y25104D01* X18738Y25111D01* X18772Y25121D01* X18806Y25134D01* X18832Y25147D01* Y23862D01* G37* G36* Y25240D02*X18832Y25240D01* X18824Y25243D01* X18815Y25243D01* X18806Y25243D01* X18798Y25241D01* X18790Y25237D01* X18766Y25225D01* X18740Y25215D01* X18714Y25208D01* X18688Y25203D01* X18667Y25201D01* Y25798D01* X18682Y25797D01* X18709Y25793D01* X18735Y25785D01* X18761Y25776D01* X18785Y25764D01* X18793Y25761D01* X18802Y25759D01* X18811Y25759D01* X18819Y25760D01* X18828Y25762D01* X18832Y25765D01* Y25240D01* G37* G36* Y25853D02*X18832Y25853D01* X18800Y25868D01* X18766Y25881D01* X18731Y25890D01* X18695Y25896D01* X18667Y25899D01* Y27102D01* X18682Y27104D01* X18718Y27111D01* X18752Y27121D01* X18786Y27134D01* X18818Y27150D01* X18826Y27155D01* X18832Y27161D01* X18832Y27161D01* Y25853D01* G37* G36* Y27225D02*X18827Y27231D01* X18820Y27236D01* X18812Y27240D01* X18804Y27243D01* X18795Y27243D01* X18786Y27243D01* X18778Y27241D01* X18770Y27237D01* X18746Y27225D01* X18720Y27215D01* X18694Y27208D01* X18668Y27203D01* X18667D01* Y27796D01* X18689Y27793D01* X18715Y27785D01* X18741Y27776D01* X18765Y27764D01* X18773Y27761D01* X18782Y27759D01* X18791Y27759D01* X18799Y27760D01* X18808Y27762D01* X18815Y27766D01* X18822Y27772D01* X18828Y27778D01* X18832Y27784D01* Y27225D01* G37* G36* Y40000D02*X18912D01* Y37596D01* X18904Y37627D01* X18890Y37661D01* X18874Y37694D01* X18870Y37701D01* X18864Y37707D01* X18856Y37712D01* X18849Y37716D01* X18840Y37718D01* X18832Y37719D01* Y39289D01* X18840Y39293D01* X18847Y39298D01* X18853Y39305D01* X18858Y39312D01* X18873Y39344D01* X18886Y39378D01* X18895Y39413D01* X18901Y39449D01* X18904Y39485D01* X18904Y39521D01* X18900Y39557D01* X18894Y39593D01* X18884Y39627D01* X18870Y39661D01* X18854Y39694D01* X18850Y39701D01* X18844Y39707D01* X18836Y39712D01* X18832Y39714D01* Y40000D01* G37* G36* Y37286D02*X18835Y37285D01* X18844Y37286D01* X18852Y37289D01* X18860Y37293D01* X18867Y37298D01* X18873Y37305D01* X18878Y37312D01* X18893Y37344D01* X18906Y37378D01* X18912Y37404D01* Y35656D01* X18910Y35661D01* X18894Y35694D01* X18890Y35701D01* X18884Y35707D01* X18876Y35712D01* X18869Y35716D01* X18860Y35718D01* X18852Y35719D01* X18843Y35719D01* X18834Y35717D01* X18832Y35716D01* Y37286D01* G37* G36* Y35583D02*X18836Y35569D01* X18841Y35543D01* X18844Y35516D01* X18844Y35489D01* X18842Y35462D01* X18837Y35435D01* X18832Y35416D01* Y35583D01* G37* G36* Y35290D02*X18838Y35288D01* X18847Y35286D01* X18855Y35285D01* X18864Y35286D01* X18872Y35289D01* X18880Y35293D01* X18887Y35298D01* X18893Y35305D01* X18898Y35312D01* X18912Y35343D01* Y33696D01* X18910Y33701D01* X18904Y33707D01* X18896Y33712D01* X18889Y33716D01* X18880Y33718D01* X18872Y33719D01* X18863Y33719D01* X18854Y33717D01* X18846Y33713D01* X18839Y33708D01* X18833Y33702D01* X18832Y33701D01* Y35290D01* G37* G36* Y33634D02*X18839Y33621D01* X18849Y33595D01* X18856Y33569D01* X18861Y33543D01* X18864Y33516D01* X18864Y33489D01* X18862Y33462D01* X18857Y33435D01* X18850Y33409D01* X18841Y33383D01* X18832Y33365D01* Y33634D01* G37* G36* Y33307D02*X18836Y33302D01* X18843Y33296D01* X18850Y33291D01* X18858Y33288D01* X18867Y33286D01* X18875Y33285D01* X18884Y33286D01* X18892Y33289D01* X18900Y33293D01* X18907Y33298D01* X18912Y33304D01* Y31714D01* X18909Y31716D01* X18900Y31718D01* X18892Y31719D01* X18883Y31719D01* X18874Y31717D01* X18866Y31713D01* X18859Y31708D01* X18853Y31702D01* X18848Y31695D01* X18844Y31687D01* X18842Y31679D01* X18841Y31670D01* X18841Y31661D01* X18843Y31653D01* X18847Y31645D01* X18859Y31621D01* X18869Y31595D01* X18876Y31569D01* X18881Y31543D01* X18884Y31516D01* X18884Y31489D01* X18882Y31462D01* X18877Y31435D01* X18870Y31409D01* X18861Y31383D01* X18849Y31359D01* X18846Y31351D01* X18844Y31342D01* X18844Y31333D01* X18845Y31325D01* X18847Y31317D01* X18851Y31309D01* X18856Y31302D01* X18863Y31296D01* X18870Y31291D01* X18878Y31288D01* X18887Y31286D01* X18895Y31285D01* X18904Y31286D01* X18912Y31289D01* X18912Y31289D01* Y29719D01* X18912Y29719D01* X18903Y29719D01* X18894Y29717D01* X18886Y29713D01* X18879Y29708D01* X18873Y29702D01* X18868Y29695D01* X18864Y29687D01* X18862Y29679D01* X18861Y29670D01* X18861Y29661D01* X18863Y29653D01* X18867Y29645D01* X18879Y29621D01* X18889Y29595D01* X18896Y29569D01* X18901Y29543D01* X18904Y29516D01* X18904Y29489D01* X18902Y29462D01* X18897Y29435D01* X18890Y29409D01* X18881Y29383D01* X18869Y29359D01* X18866Y29351D01* X18864Y29342D01* X18864Y29333D01* X18865Y29325D01* X18867Y29317D01* X18871Y29309D01* X18876Y29302D01* X18883Y29296D01* X18890Y29291D01* X18898Y29288D01* X18907Y29286D01* X18912Y29286D01* Y27716D01* X18906Y27713D01* X18899Y27708D01* X18893Y27702D01* X18888Y27695D01* X18884Y27687D01* X18882Y27679D01* X18881Y27670D01* X18881Y27661D01* X18883Y27653D01* X18887Y27645D01* X18899Y27621D01* X18909Y27595D01* X18912Y27583D01* Y27416D01* X18910Y27409D01* X18901Y27383D01* X18889Y27359D01* X18886Y27351D01* X18884Y27342D01* X18884Y27333D01* X18885Y27325D01* X18887Y27317D01* X18891Y27309D01* X18896Y27302D01* X18903Y27296D01* X18910Y27291D01* X18912Y27290D01* Y25701D01* X18908Y25695D01* X18904Y25687D01* X18902Y25679D01* X18901Y25670D01* X18901Y25661D01* X18903Y25653D01* X18907Y25645D01* X18912Y25634D01* Y25365D01* X18909Y25359D01* X18906Y25351D01* X18904Y25342D01* X18904Y25333D01* X18905Y25325D01* X18907Y25317D01* X18911Y25309D01* X18912Y25307D01* Y19833D01* X18911Y19835D01* X18906Y19842D01* X18900Y19848D01* X18892Y19853D01* X18860Y19868D01* X18832Y19878D01* Y21128D01* X18846Y21134D01* X18878Y21150D01* X18886Y21155D01* X18892Y21161D01* X18897Y21168D01* X18901Y21175D01* X18903Y21184D01* X18904Y21193D01* X18904Y21201D01* X18901Y21210D01* X18898Y21218D01* X18893Y21225D01* X18887Y21231D01* X18880Y21236D01* X18872Y21240D01* X18864Y21243D01* X18855Y21243D01* X18846Y21243D01* X18838Y21241D01* X18832Y21238D01* Y21762D01* X18833Y21761D01* X18842Y21759D01* X18851Y21759D01* X18859Y21760D01* X18868Y21762D01* X18875Y21766D01* X18882Y21772D01* X18888Y21778D01* X18893Y21785D01* X18896Y21793D01* X18898Y21802D01* X18899Y21810D01* X18898Y21819D01* X18895Y21827D01* X18891Y21835D01* X18886Y21842D01* X18880Y21848D01* X18872Y21853D01* X18840Y21868D01* X18832Y21871D01* Y23137D01* X18858Y23150D01* X18866Y23155D01* X18872Y23161D01* X18877Y23168D01* X18881Y23175D01* X18883Y23184D01* X18884Y23193D01* X18884Y23201D01* X18881Y23210D01* X18878Y23218D01* X18873Y23225D01* X18867Y23231D01* X18860Y23236D01* X18852Y23240D01* X18844Y23243D01* X18835Y23243D01* X18832Y23243D01* Y23759D01* X18839Y23760D01* X18848Y23762D01* X18855Y23766D01* X18862Y23772D01* X18868Y23778D01* X18873Y23785D01* X18876Y23793D01* X18878Y23802D01* X18879Y23810D01* X18878Y23819D01* X18875Y23827D01* X18871Y23835D01* X18866Y23842D01* X18860Y23848D01* X18852Y23853D01* X18832Y23862D01* Y25147D01* X18838Y25150D01* X18846Y25155D01* X18852Y25161D01* X18857Y25168D01* X18861Y25175D01* X18863Y25184D01* X18864Y25193D01* X18864Y25201D01* X18861Y25210D01* X18858Y25218D01* X18853Y25225D01* X18847Y25231D01* X18840Y25236D01* X18832Y25240D01* Y25765D01* X18835Y25766D01* X18842Y25772D01* X18848Y25778D01* X18853Y25785D01* X18856Y25793D01* X18858Y25802D01* X18859Y25810D01* X18858Y25819D01* X18855Y25827D01* X18851Y25835D01* X18846Y25842D01* X18840Y25848D01* X18832Y25853D01* Y27161D01* X18837Y27168D01* X18841Y27175D01* X18843Y27184D01* X18844Y27193D01* X18844Y27201D01* X18841Y27210D01* X18838Y27218D01* X18833Y27225D01* X18832Y27225D01* Y27784D01* X18833Y27785D01* X18836Y27793D01* X18838Y27802D01* X18839Y27810D01* X18838Y27819D01* X18835Y27827D01* X18832Y27833D01* Y33307D01* G37* G36* X18912Y11878D02*X18906Y11881D01* X18871Y11890D01* X18835Y11896D01* X18799Y11899D01* X18763Y11899D01* X18727Y11895D01* X18691Y11889D01* X18667Y11882D01* Y13112D01* X18678Y13109D01* X18714Y13103D01* X18750Y13100D01* X18786Y13100D01* X18822Y13104D01* X18858Y13111D01* X18892Y13121D01* X18912Y13128D01* Y11878D01* G37* G36* Y13238D02*X18910Y13237D01* X18886Y13225D01* X18860Y13215D01* X18834Y13208D01* X18808Y13203D01* X18781Y13200D01* X18754Y13200D01* X18727Y13202D01* X18700Y13207D01* X18674Y13214D01* X18667Y13216D01* Y13783D01* X18669Y13784D01* X18695Y13791D01* X18721Y13796D01* X18748Y13799D01* X18775Y13799D01* X18802Y13797D01* X18829Y13793D01* X18855Y13785D01* X18881Y13776D01* X18905Y13764D01* X18912Y13762D01* Y13238D01* G37* G36* Y13871D02*X18886Y13881D01* X18851Y13890D01* X18815Y13896D01* X18779Y13899D01* X18743Y13899D01* X18707Y13895D01* X18671Y13889D01* X18667Y13887D01* Y15107D01* X18694Y15103D01* X18730Y15100D01* X18766Y15100D01* X18802Y15104D01* X18838Y15111D01* X18872Y15121D01* X18906Y15134D01* X18912Y15137D01* Y13871D01* G37* G36* Y15243D02*X18906Y15243D01* X18898Y15241D01* X18890Y15237D01* X18866Y15225D01* X18840Y15215D01* X18814Y15208D01* X18788Y15203D01* X18761Y15200D01* X18734Y15200D01* X18707Y15202D01* X18680Y15207D01* X18667Y15210D01* Y15789D01* X18675Y15791D01* X18701Y15796D01* X18728Y15799D01* X18755Y15799D01* X18782Y15797D01* X18809Y15793D01* X18835Y15785D01* X18861Y15776D01* X18885Y15764D01* X18893Y15761D01* X18902Y15759D01* X18911Y15759D01* X18912Y15759D01* Y15243D01* G37* G36* Y15862D02*X18900Y15868D01* X18866Y15881D01* X18831Y15890D01* X18795Y15896D01* X18759Y15899D01* X18723Y15899D01* X18687Y15895D01* X18667Y15892D01* Y17104D01* X18674Y17103D01* X18710Y17100D01* X18746Y17100D01* X18782Y17104D01* X18818Y17111D01* X18852Y17121D01* X18886Y17134D01* X18912Y17147D01* Y15862D01* G37* G36* Y17240D02*X18912Y17240D01* X18904Y17243D01* X18895Y17243D01* X18886Y17243D01* X18878Y17241D01* X18870Y17237D01* X18846Y17225D01* X18820Y17215D01* X18794Y17208D01* X18768Y17203D01* X18741Y17200D01* X18714Y17200D01* X18687Y17202D01* X18667Y17205D01* Y17794D01* X18681Y17796D01* X18708Y17799D01* X18735Y17799D01* X18762Y17797D01* X18789Y17793D01* X18815Y17785D01* X18841Y17776D01* X18865Y17764D01* X18873Y17761D01* X18882Y17759D01* X18891Y17759D01* X18899Y17760D01* X18908Y17762D01* X18912Y17765D01* Y17240D01* G37* G36* Y17853D02*X18912Y17853D01* X18880Y17868D01* X18846Y17881D01* X18811Y17890D01* X18775Y17896D01* X18739Y17899D01* X18703Y17899D01* X18667Y17895D01* Y19102D01* X18690Y19100D01* X18726Y19100D01* X18762Y19104D01* X18798Y19111D01* X18832Y19121D01* X18866Y19134D01* X18898Y19150D01* X18906Y19155D01* X18912Y19161D01* X18912Y19161D01* Y17853D01* G37* G36* Y19225D02*X18907Y19231D01* X18900Y19236D01* X18892Y19240D01* X18884Y19243D01* X18875Y19243D01* X18866Y19243D01* X18858Y19241D01* X18850Y19237D01* X18826Y19225D01* X18800Y19215D01* X18774Y19208D01* X18748Y19203D01* X18721Y19200D01* X18694Y19200D01* X18667Y19202D01* Y19797D01* X18688Y19799D01* X18715Y19799D01* X18742Y19797D01* X18769Y19793D01* X18795Y19785D01* X18821Y19776D01* X18845Y19764D01* X18853Y19761D01* X18862Y19759D01* X18871Y19759D01* X18879Y19760D01* X18888Y19762D01* X18895Y19766D01* X18902Y19772D01* X18908Y19778D01* X18912Y19784D01* Y19225D01* G37* G36* Y40000D02*X18992D01* Y29596D01* X18984Y29627D01* X18970Y29661D01* X18954Y29694D01* X18950Y29701D01* X18944Y29707D01* X18936Y29712D01* X18929Y29716D01* X18920Y29718D01* X18912Y29719D01* Y31289D01* X18920Y31293D01* X18927Y31298D01* X18933Y31305D01* X18938Y31312D01* X18953Y31344D01* X18966Y31378D01* X18975Y31413D01* X18981Y31449D01* X18984Y31485D01* X18984Y31521D01* X18980Y31557D01* X18974Y31593D01* X18964Y31627D01* X18950Y31661D01* X18934Y31694D01* X18930Y31701D01* X18924Y31707D01* X18916Y31712D01* X18912Y31714D01* Y33304D01* X18913Y33305D01* X18918Y33312D01* X18933Y33344D01* X18946Y33378D01* X18955Y33413D01* X18961Y33449D01* X18964Y33485D01* X18964Y33521D01* X18960Y33557D01* X18954Y33593D01* X18944Y33627D01* X18930Y33661D01* X18914Y33694D01* X18912Y33696D01* Y35343D01* X18913Y35344D01* X18926Y35378D01* X18935Y35413D01* X18941Y35449D01* X18944Y35485D01* X18944Y35521D01* X18940Y35557D01* X18934Y35593D01* X18924Y35627D01* X18912Y35656D01* Y37404D01* X18915Y37413D01* X18921Y37449D01* X18924Y37485D01* X18924Y37521D01* X18920Y37557D01* X18914Y37593D01* X18912Y37596D01* Y40000D01* G37* G36* Y29286D02*X18915Y29285D01* X18924Y29286D01* X18932Y29289D01* X18940Y29293D01* X18947Y29298D01* X18953Y29305D01* X18958Y29312D01* X18973Y29344D01* X18986Y29378D01* X18992Y29404D01* Y27656D01* X18990Y27661D01* X18974Y27694D01* X18970Y27701D01* X18964Y27707D01* X18956Y27712D01* X18949Y27716D01* X18940Y27718D01* X18932Y27719D01* X18923Y27719D01* X18914Y27717D01* X18912Y27716D01* Y29286D01* G37* G36* Y27583D02*X18916Y27569D01* X18921Y27543D01* X18924Y27516D01* X18924Y27489D01* X18922Y27462D01* X18917Y27435D01* X18912Y27416D01* Y27583D01* G37* G36* Y27290D02*X18918Y27288D01* X18927Y27286D01* X18935Y27285D01* X18944Y27286D01* X18952Y27289D01* X18960Y27293D01* X18967Y27298D01* X18973Y27305D01* X18978Y27312D01* X18992Y27343D01* Y25696D01* X18990Y25701D01* X18984Y25707D01* X18976Y25712D01* X18969Y25716D01* X18960Y25718D01* X18952Y25719D01* X18943Y25719D01* X18934Y25717D01* X18926Y25713D01* X18919Y25708D01* X18913Y25702D01* X18912Y25701D01* Y27290D01* G37* G36* Y25634D02*X18919Y25621D01* X18929Y25595D01* X18936Y25569D01* X18941Y25543D01* X18944Y25516D01* X18944Y25489D01* X18942Y25462D01* X18937Y25435D01* X18930Y25409D01* X18921Y25383D01* X18912Y25365D01* Y25634D01* G37* G36* Y25307D02*X18916Y25302D01* X18923Y25296D01* X18930Y25291D01* X18938Y25288D01* X18947Y25286D01* X18955Y25285D01* X18964Y25286D01* X18972Y25289D01* X18980Y25293D01* X18987Y25298D01* X18992Y25304D01* Y23714D01* X18989Y23716D01* X18980Y23718D01* X18972Y23719D01* X18963Y23719D01* X18954Y23717D01* X18946Y23713D01* X18939Y23708D01* X18933Y23702D01* X18928Y23695D01* X18924Y23687D01* X18922Y23679D01* X18921Y23670D01* X18921Y23661D01* X18923Y23653D01* X18927Y23645D01* X18939Y23621D01* X18949Y23595D01* X18956Y23569D01* X18961Y23543D01* X18964Y23516D01* X18964Y23489D01* X18962Y23462D01* X18957Y23435D01* X18950Y23409D01* X18941Y23383D01* X18929Y23359D01* X18926Y23351D01* X18924Y23342D01* X18924Y23333D01* X18925Y23325D01* X18927Y23317D01* X18931Y23309D01* X18936Y23302D01* X18943Y23296D01* X18950Y23291D01* X18958Y23288D01* X18967Y23286D01* X18975Y23285D01* X18984Y23286D01* X18992Y23289D01* X18992Y23289D01* Y21719D01* X18992Y21719D01* X18983Y21719D01* X18974Y21717D01* X18966Y21713D01* X18959Y21708D01* X18953Y21702D01* X18948Y21695D01* X18944Y21687D01* X18942Y21679D01* X18941Y21670D01* X18941Y21661D01* X18943Y21653D01* X18947Y21645D01* X18959Y21621D01* X18969Y21595D01* X18976Y21569D01* X18981Y21543D01* X18984Y21516D01* X18984Y21489D01* X18982Y21462D01* X18977Y21435D01* X18970Y21409D01* X18961Y21383D01* X18949Y21359D01* X18946Y21351D01* X18944Y21342D01* X18944Y21333D01* X18945Y21325D01* X18947Y21317D01* X18951Y21309D01* X18956Y21302D01* X18963Y21296D01* X18970Y21291D01* X18978Y21288D01* X18987Y21286D01* X18992Y21286D01* Y19716D01* X18986Y19713D01* X18979Y19708D01* X18973Y19702D01* X18968Y19695D01* X18964Y19687D01* X18962Y19679D01* X18961Y19670D01* X18961Y19661D01* X18963Y19653D01* X18967Y19645D01* X18979Y19621D01* X18989Y19595D01* X18992Y19583D01* Y19416D01* X18990Y19409D01* X18981Y19383D01* X18969Y19359D01* X18966Y19351D01* X18964Y19342D01* X18964Y19333D01* X18965Y19325D01* X18967Y19317D01* X18971Y19309D01* X18976Y19302D01* X18983Y19296D01* X18990Y19291D01* X18992Y19290D01* Y17701D01* X18988Y17695D01* X18984Y17687D01* X18982Y17679D01* X18981Y17670D01* X18981Y17661D01* X18983Y17653D01* X18987Y17645D01* X18992Y17634D01* Y17365D01* X18989Y17359D01* X18986Y17351D01* X18984Y17342D01* X18984Y17333D01* X18985Y17325D01* X18987Y17317D01* X18991Y17309D01* X18992Y17307D01* Y11833D01* X18991Y11835D01* X18986Y11842D01* X18980Y11848D01* X18972Y11853D01* X18940Y11868D01* X18912Y11878D01* Y13128D01* X18926Y13134D01* X18958Y13150D01* X18966Y13155D01* X18972Y13161D01* X18977Y13168D01* X18981Y13175D01* X18983Y13184D01* X18984Y13193D01* X18984Y13201D01* X18981Y13210D01* X18978Y13218D01* X18973Y13225D01* X18967Y13231D01* X18960Y13236D01* X18952Y13240D01* X18944Y13243D01* X18935Y13243D01* X18926Y13243D01* X18918Y13241D01* X18912Y13238D01* Y13762D01* X18913Y13761D01* X18922Y13759D01* X18931Y13759D01* X18939Y13760D01* X18948Y13762D01* X18955Y13766D01* X18962Y13772D01* X18968Y13778D01* X18973Y13785D01* X18976Y13793D01* X18978Y13802D01* X18979Y13810D01* X18978Y13819D01* X18975Y13827D01* X18971Y13835D01* X18966Y13842D01* X18960Y13848D01* X18952Y13853D01* X18920Y13868D01* X18912Y13871D01* Y15137D01* X18938Y15150D01* X18946Y15155D01* X18952Y15161D01* X18957Y15168D01* X18961Y15175D01* X18963Y15184D01* X18964Y15193D01* X18964Y15201D01* X18961Y15210D01* X18958Y15218D01* X18953Y15225D01* X18947Y15231D01* X18940Y15236D01* X18932Y15240D01* X18924Y15243D01* X18915Y15243D01* X18912Y15243D01* Y15759D01* X18919Y15760D01* X18928Y15762D01* X18935Y15766D01* X18942Y15772D01* X18948Y15778D01* X18953Y15785D01* X18956Y15793D01* X18958Y15802D01* X18959Y15810D01* X18958Y15819D01* X18955Y15827D01* X18951Y15835D01* X18946Y15842D01* X18940Y15848D01* X18932Y15853D01* X18912Y15862D01* Y17147D01* X18918Y17150D01* X18926Y17155D01* X18932Y17161D01* X18937Y17168D01* X18941Y17175D01* X18943Y17184D01* X18944Y17193D01* X18944Y17201D01* X18941Y17210D01* X18938Y17218D01* X18933Y17225D01* X18927Y17231D01* X18920Y17236D01* X18912Y17240D01* Y17765D01* X18915Y17766D01* X18922Y17772D01* X18928Y17778D01* X18933Y17785D01* X18936Y17793D01* X18938Y17802D01* X18939Y17810D01* X18938Y17819D01* X18935Y17827D01* X18931Y17835D01* X18926Y17842D01* X18920Y17848D01* X18912Y17853D01* Y19161D01* X18917Y19168D01* X18921Y19175D01* X18923Y19184D01* X18924Y19193D01* X18924Y19201D01* X18921Y19210D01* X18918Y19218D01* X18913Y19225D01* X18912Y19225D01* Y19784D01* X18913Y19785D01* X18916Y19793D01* X18918Y19802D01* X18919Y19810D01* X18918Y19819D01* X18915Y19827D01* X18912Y19833D01* Y25307D01* G37* G36* X18992Y0D02*X18667D01* Y1791D01* X18668Y1790D01* X18671Y1782D01* X18676Y1774D01* X18682Y1768D01* X18689Y1763D01* X18697Y1759D01* X18705Y1757D01* X18714Y1756D01* X18723Y1756D01* X18731Y1758D01* X18739Y1762D01* X18763Y1774D01* X18789Y1784D01* X18815Y1791D01* X18841Y1796D01* X18868Y1799D01* X18895Y1799D01* X18922Y1797D01* X18949Y1793D01* X18975Y1785D01* X18992Y1779D01* Y1220D01* X18980Y1215D01* X18954Y1208D01* X18928Y1203D01* X18901Y1200D01* X18874Y1200D01* X18847Y1202D01* X18820Y1207D01* X18794Y1214D01* X18768Y1223D01* X18744Y1235D01* X18736Y1238D01* X18727Y1240D01* X18718Y1240D01* X18710Y1239D01* X18701Y1237D01* X18694Y1233D01* X18687Y1228D01* X18681Y1221D01* X18676Y1214D01* X18673Y1206D01* X18671Y1197D01* X18670Y1189D01* X18671Y1180D01* X18674Y1172D01* X18678Y1164D01* X18683Y1157D01* X18689Y1151D01* X18697Y1146D01* X18729Y1131D01* X18763Y1118D01* X18798Y1109D01* X18834Y1103D01* X18870Y1100D01* X18906Y1100D01* X18942Y1104D01* X18978Y1111D01* X18992Y1115D01* Y0D01* G37* G36* Y1884D02*X18971Y1890D01* X18935Y1896D01* X18899Y1899D01* X18863Y1899D01* X18827Y1895D01* X18791Y1889D01* X18757Y1879D01* X18723Y1866D01* X18691Y1849D01* X18683Y1845D01* X18677Y1839D01* X18672Y1832D01* X18668Y1824D01* X18667Y1821D01* Y3153D01* X18669Y3151D01* X18677Y3146D01* X18709Y3131D01* X18743Y3118D01* X18778Y3109D01* X18814Y3103D01* X18850Y3100D01* X18886Y3100D01* X18922Y3104D01* X18958Y3111D01* X18992Y3121D01* X18992D01* Y1884D01* G37* G36* Y3229D02*X18986Y3225D01* X18960Y3215D01* X18934Y3208D01* X18908Y3203D01* X18881Y3200D01* X18854Y3200D01* X18827Y3202D01* X18800Y3207D01* X18774Y3214D01* X18748Y3223D01* X18724Y3235D01* X18716Y3238D01* X18707Y3240D01* X18698Y3240D01* X18690Y3239D01* X18681Y3237D01* X18674Y3233D01* X18667Y3228D01* Y3764D01* X18669Y3763D01* X18677Y3759D01* X18685Y3757D01* X18694Y3756D01* X18703Y3756D01* X18711Y3758D01* X18719Y3762D01* X18743Y3774D01* X18769Y3784D01* X18795Y3791D01* X18821Y3796D01* X18848Y3799D01* X18875Y3799D01* X18902Y3797D01* X18929Y3793D01* X18955Y3785D01* X18981Y3776D01* X18992Y3771D01* Y3229D01* G37* G36* Y3878D02*X18986Y3881D01* X18951Y3890D01* X18915Y3896D01* X18879Y3899D01* X18843Y3899D01* X18807Y3895D01* X18771Y3889D01* X18737Y3879D01* X18703Y3866D01* X18671Y3849D01* X18667Y3847D01* Y5141D01* X18689Y5131D01* X18723Y5118D01* X18758Y5109D01* X18794Y5103D01* X18830Y5100D01* X18866Y5100D01* X18902Y5104D01* X18938Y5111D01* X18972Y5121D01* X18992Y5128D01* Y3878D01* G37* G36* Y5238D02*X18990Y5237D01* X18966Y5225D01* X18940Y5215D01* X18914Y5208D01* X18888Y5203D01* X18861Y5200D01* X18834Y5200D01* X18807Y5202D01* X18780Y5207D01* X18754Y5214D01* X18728Y5223D01* X18704Y5235D01* X18696Y5238D01* X18687Y5240D01* X18678Y5240D01* X18670Y5239D01* X18667Y5239D01* Y5756D01* X18674Y5756D01* X18683Y5756D01* X18691Y5758D01* X18699Y5762D01* X18723Y5774D01* X18749Y5784D01* X18775Y5791D01* X18801Y5796D01* X18828Y5799D01* X18855Y5799D01* X18882Y5797D01* X18909Y5793D01* X18935Y5785D01* X18961Y5776D01* X18985Y5764D01* X18992Y5762D01* Y5238D01* G37* G36* Y5871D02*X18966Y5881D01* X18931Y5890D01* X18895Y5896D01* X18859Y5899D01* X18823Y5899D01* X18787Y5895D01* X18751Y5889D01* X18717Y5879D01* X18683Y5866D01* X18667Y5858D01* Y7132D01* X18669Y7131D01* X18703Y7118D01* X18738Y7109D01* X18774Y7103D01* X18810Y7100D01* X18846Y7100D01* X18882Y7104D01* X18918Y7111D01* X18952Y7121D01* X18986Y7134D01* X18992Y7137D01* Y5871D01* G37* G36* Y7243D02*X18986Y7243D01* X18978Y7241D01* X18970Y7237D01* X18946Y7225D01* X18920Y7215D01* X18894Y7208D01* X18868Y7203D01* X18841Y7200D01* X18814Y7200D01* X18787Y7202D01* X18760Y7207D01* X18734Y7214D01* X18708Y7223D01* X18684Y7235D01* X18676Y7238D01* X18667Y7240D01* Y7757D01* X18671Y7758D01* X18679Y7762D01* X18703Y7774D01* X18729Y7784D01* X18755Y7791D01* X18781Y7796D01* X18808Y7799D01* X18835Y7799D01* X18862Y7797D01* X18889Y7793D01* X18915Y7785D01* X18941Y7776D01* X18965Y7764D01* X18973Y7761D01* X18982Y7759D01* X18991Y7759D01* X18992Y7759D01* Y7243D01* G37* G36* Y7862D02*X18980Y7868D01* X18946Y7881D01* X18911Y7890D01* X18875Y7896D01* X18839Y7899D01* X18803Y7899D01* X18767Y7895D01* X18731Y7889D01* X18697Y7879D01* X18667Y7867D01* Y9124D01* X18683Y9118D01* X18718Y9109D01* X18754Y9103D01* X18790Y9100D01* X18826Y9100D01* X18862Y9104D01* X18898Y9111D01* X18932Y9121D01* X18966Y9134D01* X18992Y9147D01* Y7862D01* G37* G36* Y9240D02*X18992Y9240D01* X18984Y9243D01* X18975Y9243D01* X18966Y9243D01* X18958Y9241D01* X18950Y9237D01* X18926Y9225D01* X18900Y9215D01* X18874Y9208D01* X18848Y9203D01* X18821Y9200D01* X18794Y9200D01* X18767Y9202D01* X18740Y9207D01* X18714Y9214D01* X18688Y9223D01* X18667Y9233D01* Y9766D01* X18683Y9774D01* X18709Y9784D01* X18735Y9791D01* X18761Y9796D01* X18788Y9799D01* X18815Y9799D01* X18842Y9797D01* X18869Y9793D01* X18895Y9785D01* X18921Y9776D01* X18945Y9764D01* X18953Y9761D01* X18962Y9759D01* X18971Y9759D01* X18979Y9760D01* X18988Y9762D01* X18992Y9765D01* Y9240D01* G37* G36* Y9853D02*X18992Y9853D01* X18960Y9868D01* X18926Y9881D01* X18891Y9890D01* X18855Y9896D01* X18819Y9899D01* X18783Y9899D01* X18747Y9895D01* X18711Y9889D01* X18677Y9879D01* X18667Y9875D01* Y11117D01* X18698Y11109D01* X18734Y11103D01* X18770Y11100D01* X18806Y11100D01* X18842Y11104D01* X18878Y11111D01* X18912Y11121D01* X18946Y11134D01* X18978Y11150D01* X18986Y11155D01* X18992Y11161D01* X18992Y11161D01* Y9853D01* G37* G36* Y11225D02*X18987Y11231D01* X18980Y11236D01* X18972Y11240D01* X18964Y11243D01* X18955Y11243D01* X18946Y11243D01* X18938Y11241D01* X18930Y11237D01* X18906Y11225D01* X18880Y11215D01* X18854Y11208D01* X18828Y11203D01* X18801Y11200D01* X18774Y11200D01* X18747Y11202D01* X18720Y11207D01* X18694Y11214D01* X18668Y11223D01* X18667Y11223D01* Y11776D01* X18689Y11784D01* X18715Y11791D01* X18741Y11796D01* X18768Y11799D01* X18795Y11799D01* X18822Y11797D01* X18849Y11793D01* X18875Y11785D01* X18901Y11776D01* X18925Y11764D01* X18933Y11761D01* X18942Y11759D01* X18951Y11759D01* X18959Y11760D01* X18968Y11762D01* X18975Y11766D01* X18982Y11772D01* X18988Y11778D01* X18992Y11784D01* Y11225D01* G37* G36* Y40000D02*X19072D01* Y21596D01* X19064Y21627D01* X19050Y21661D01* X19034Y21694D01* X19030Y21701D01* X19024Y21707D01* X19016Y21712D01* X19009Y21716D01* X19000Y21718D01* X18992Y21719D01* Y23289D01* X19000Y23293D01* X19007Y23298D01* X19013Y23305D01* X19018Y23312D01* X19033Y23344D01* X19046Y23378D01* X19055Y23413D01* X19061Y23449D01* X19064Y23485D01* X19064Y23521D01* X19060Y23557D01* X19054Y23593D01* X19044Y23627D01* X19030Y23661D01* X19014Y23694D01* X19010Y23701D01* X19004Y23707D01* X18996Y23712D01* X18992Y23714D01* Y25304D01* X18993Y25305D01* X18998Y25312D01* X19013Y25344D01* X19026Y25378D01* X19035Y25413D01* X19041Y25449D01* X19044Y25485D01* X19044Y25521D01* X19040Y25557D01* X19034Y25593D01* X19024Y25627D01* X19010Y25661D01* X18994Y25694D01* X18992Y25696D01* Y27343D01* X18993Y27344D01* X19006Y27378D01* X19015Y27413D01* X19021Y27449D01* X19024Y27485D01* X19024Y27521D01* X19020Y27557D01* X19014Y27593D01* X19004Y27627D01* X18992Y27656D01* Y29404D01* X18995Y29413D01* X19001Y29449D01* X19004Y29485D01* X19004Y29521D01* X19000Y29557D01* X18994Y29593D01* X18992Y29596D01* Y40000D01* G37* G36* X19072Y0D02*X18992D01* Y1115D01* X19012Y1121D01* X19046Y1134D01* X19072Y1147D01* Y0D01* G37* G36* Y1240D02*X19072Y1240D01* X19064Y1243D01* X19055Y1243D01* X19046Y1243D01* X19038Y1241D01* X19030Y1237D01* X19006Y1225D01* X18992Y1220D01* Y1779D01* X19001Y1776D01* X19025Y1764D01* X19033Y1761D01* X19042Y1759D01* X19051Y1759D01* X19059Y1760D01* X19068Y1762D01* X19072Y1765D01* Y1240D01* G37* G36* Y1853D02*X19072Y1853D01* X19040Y1868D01* X19006Y1881D01* X18992Y1884D01* Y3121D01* X19026Y3134D01* X19058Y3150D01* X19066Y3155D01* X19072Y3161D01* X19072Y3161D01* Y1853D01* G37* G36* Y3225D02*X19067Y3231D01* X19060Y3236D01* X19052Y3240D01* X19044Y3243D01* X19035Y3243D01* X19026Y3243D01* X19018Y3241D01* X19010Y3237D01* X18992Y3229D01* Y3771D01* X19005Y3764D01* X19013Y3761D01* X19022Y3759D01* X19031Y3759D01* X19039Y3760D01* X19048Y3762D01* X19055Y3766D01* X19062Y3772D01* X19068Y3778D01* X19072Y3784D01* Y3225D01* G37* G36* Y3833D02*X19071Y3835D01* X19066Y3842D01* X19060Y3848D01* X19052Y3853D01* X19020Y3868D01* X18992Y3878D01* Y5128D01* X19006Y5134D01* X19038Y5150D01* X19046Y5155D01* X19052Y5161D01* X19057Y5168D01* X19061Y5175D01* X19063Y5184D01* X19064Y5193D01* X19064Y5201D01* X19061Y5210D01* X19058Y5218D01* X19053Y5225D01* X19047Y5231D01* X19040Y5236D01* X19032Y5240D01* X19024Y5243D01* X19015Y5243D01* X19006Y5243D01* X18998Y5241D01* X18992Y5238D01* Y5762D01* X18993Y5761D01* X19002Y5759D01* X19011Y5759D01* X19019Y5760D01* X19028Y5762D01* X19035Y5766D01* X19042Y5772D01* X19048Y5778D01* X19053Y5785D01* X19056Y5793D01* X19058Y5802D01* X19059Y5810D01* X19058Y5819D01* X19055Y5827D01* X19051Y5835D01* X19046Y5842D01* X19040Y5848D01* X19032Y5853D01* X19000Y5868D01* X18992Y5871D01* Y7137D01* X19018Y7150D01* X19026Y7155D01* X19032Y7161D01* X19037Y7168D01* X19041Y7175D01* X19043Y7184D01* X19044Y7193D01* X19044Y7201D01* X19041Y7210D01* X19038Y7218D01* X19033Y7225D01* X19027Y7231D01* X19020Y7236D01* X19012Y7240D01* X19004Y7243D01* X18995Y7243D01* X18992Y7243D01* Y7759D01* X18999Y7760D01* X19008Y7762D01* X19015Y7766D01* X19022Y7772D01* X19028Y7778D01* X19033Y7785D01* X19036Y7793D01* X19038Y7802D01* X19039Y7810D01* X19038Y7819D01* X19035Y7827D01* X19031Y7835D01* X19026Y7842D01* X19020Y7848D01* X19012Y7853D01* X18992Y7862D01* Y9147D01* X18998Y9150D01* X19006Y9155D01* X19012Y9161D01* X19017Y9168D01* X19021Y9175D01* X19023Y9184D01* X19024Y9193D01* X19024Y9201D01* X19021Y9210D01* X19018Y9218D01* X19013Y9225D01* X19007Y9231D01* X19000Y9236D01* X18992Y9240D01* Y9765D01* X18995Y9766D01* X19002Y9772D01* X19008Y9778D01* X19013Y9785D01* X19016Y9793D01* X19018Y9802D01* X19019Y9810D01* X19018Y9819D01* X19015Y9827D01* X19011Y9835D01* X19006Y9842D01* X19000Y9848D01* X18992Y9853D01* Y11161D01* X18997Y11168D01* X19001Y11175D01* X19003Y11184D01* X19004Y11193D01* X19004Y11201D01* X19001Y11210D01* X18998Y11218D01* X18993Y11225D01* X18992Y11225D01* Y11784D01* X18993Y11785D01* X18996Y11793D01* X18998Y11802D01* X18999Y11810D01* X18998Y11819D01* X18995Y11827D01* X18992Y11833D01* Y17307D01* X18996Y17302D01* X19003Y17296D01* X19010Y17291D01* X19018Y17288D01* X19027Y17286D01* X19035Y17285D01* X19044Y17286D01* X19052Y17289D01* X19060Y17293D01* X19067Y17298D01* X19072Y17304D01* Y15714D01* X19069Y15716D01* X19060Y15718D01* X19052Y15719D01* X19043Y15719D01* X19034Y15717D01* X19026Y15713D01* X19019Y15708D01* X19013Y15702D01* X19008Y15695D01* X19004Y15687D01* X19002Y15679D01* X19001Y15670D01* X19001Y15661D01* X19003Y15653D01* X19007Y15645D01* X19019Y15621D01* X19029Y15595D01* X19036Y15569D01* X19041Y15543D01* X19044Y15516D01* X19044Y15489D01* X19042Y15462D01* X19037Y15435D01* X19030Y15409D01* X19021Y15383D01* X19009Y15359D01* X19006Y15351D01* X19004Y15342D01* X19004Y15333D01* X19005Y15325D01* X19007Y15317D01* X19011Y15309D01* X19016Y15302D01* X19023Y15296D01* X19030Y15291D01* X19038Y15288D01* X19047Y15286D01* X19055Y15285D01* X19064Y15286D01* X19072Y15289D01* X19072Y15289D01* Y13719D01* X19072Y13719D01* X19063Y13719D01* X19054Y13717D01* X19046Y13713D01* X19039Y13708D01* X19033Y13702D01* X19028Y13695D01* X19024Y13687D01* X19022Y13679D01* X19021Y13670D01* X19021Y13661D01* X19023Y13653D01* X19027Y13645D01* X19039Y13621D01* X19049Y13595D01* X19056Y13569D01* X19061Y13543D01* X19064Y13516D01* X19064Y13489D01* X19062Y13462D01* X19057Y13435D01* X19050Y13409D01* X19041Y13383D01* X19029Y13359D01* X19026Y13351D01* X19024Y13342D01* X19024Y13333D01* X19025Y13325D01* X19027Y13317D01* X19031Y13309D01* X19036Y13302D01* X19043Y13296D01* X19050Y13291D01* X19058Y13288D01* X19067Y13286D01* X19072Y13286D01* Y11716D01* X19066Y11713D01* X19059Y11708D01* X19053Y11702D01* X19048Y11695D01* X19044Y11687D01* X19042Y11679D01* X19041Y11670D01* X19041Y11661D01* X19043Y11653D01* X19047Y11645D01* X19059Y11621D01* X19069Y11595D01* X19072Y11583D01* Y11416D01* X19070Y11409D01* X19061Y11383D01* X19049Y11359D01* X19046Y11351D01* X19044Y11342D01* X19044Y11333D01* X19045Y11325D01* X19047Y11317D01* X19051Y11309D01* X19056Y11302D01* X19063Y11296D01* X19070Y11291D01* X19072Y11290D01* Y9701D01* X19068Y9695D01* X19064Y9687D01* X19062Y9679D01* X19061Y9670D01* X19061Y9661D01* X19063Y9653D01* X19067Y9645D01* X19072Y9634D01* Y9365D01* X19069Y9359D01* X19066Y9351D01* X19064Y9342D01* X19064Y9333D01* X19065Y9325D01* X19067Y9317D01* X19071Y9309D01* X19072Y9307D01* Y3833D01* G37* G36* Y17696D02*X19070Y17701D01* X19064Y17707D01* X19056Y17712D01* X19049Y17716D01* X19040Y17718D01* X19032Y17719D01* X19023Y17719D01* X19014Y17717D01* X19006Y17713D01* X18999Y17708D01* X18993Y17702D01* X18992Y17701D01* Y19290D01* X18998Y19288D01* X19007Y19286D01* X19015Y19285D01* X19024Y19286D01* X19032Y19289D01* X19040Y19293D01* X19047Y19298D01* X19053Y19305D01* X19058Y19312D01* X19072Y19343D01* Y17696D01* G37* G36* Y19656D02*X19070Y19661D01* X19054Y19694D01* X19050Y19701D01* X19044Y19707D01* X19036Y19712D01* X19029Y19716D01* X19020Y19718D01* X19012Y19719D01* X19003Y19719D01* X18994Y19717D01* X18992Y19716D01* Y21286D01* X18995Y21285D01* X19004Y21286D01* X19012Y21289D01* X19020Y21293D01* X19027Y21298D01* X19033Y21305D01* X19038Y21312D01* X19053Y21344D01* X19066Y21378D01* X19072Y21404D01* Y19656D01* G37* G36* Y40000D02*X19152D01* Y13596D01* X19144Y13627D01* X19130Y13661D01* X19114Y13694D01* X19110Y13701D01* X19104Y13707D01* X19096Y13712D01* X19089Y13716D01* X19080Y13718D01* X19072Y13719D01* Y15289D01* X19080Y15293D01* X19087Y15298D01* X19093Y15305D01* X19098Y15312D01* X19113Y15344D01* X19126Y15378D01* X19135Y15413D01* X19141Y15449D01* X19144Y15485D01* X19144Y15521D01* X19140Y15557D01* X19134Y15593D01* X19124Y15627D01* X19110Y15661D01* X19094Y15694D01* X19090Y15701D01* X19084Y15707D01* X19076Y15712D01* X19072Y15714D01* Y17304D01* X19073Y17305D01* X19078Y17312D01* X19093Y17344D01* X19106Y17378D01* X19115Y17413D01* X19121Y17449D01* X19124Y17485D01* X19124Y17521D01* X19120Y17557D01* X19114Y17593D01* X19104Y17627D01* X19090Y17661D01* X19074Y17694D01* X19072Y17696D01* Y19343D01* X19073Y19344D01* X19086Y19378D01* X19095Y19413D01* X19101Y19449D01* X19104Y19485D01* X19104Y19521D01* X19100Y19557D01* X19094Y19593D01* X19084Y19627D01* X19072Y19656D01* Y21404D01* X19075Y21413D01* X19081Y21449D01* X19084Y21485D01* X19084Y21521D01* X19080Y21557D01* X19074Y21593D01* X19072Y21596D01* Y40000D01* G37* G36* X19152Y0D02*X19072D01* Y1147D01* X19078Y1150D01* X19086Y1155D01* X19092Y1161D01* X19097Y1168D01* X19101Y1175D01* X19103Y1184D01* X19104Y1193D01* X19104Y1201D01* X19101Y1210D01* X19098Y1218D01* X19093Y1225D01* X19087Y1231D01* X19080Y1236D01* X19072Y1240D01* Y1765D01* X19075Y1766D01* X19082Y1772D01* X19088Y1778D01* X19093Y1785D01* X19096Y1793D01* X19098Y1802D01* X19099Y1810D01* X19098Y1819D01* X19095Y1827D01* X19091Y1835D01* X19086Y1842D01* X19080Y1848D01* X19072Y1853D01* Y3161D01* X19077Y3168D01* X19081Y3175D01* X19083Y3184D01* X19084Y3193D01* X19084Y3201D01* X19081Y3210D01* X19078Y3218D01* X19073Y3225D01* X19072Y3225D01* Y3784D01* X19073Y3785D01* X19076Y3793D01* X19078Y3802D01* X19079Y3810D01* X19078Y3819D01* X19075Y3827D01* X19072Y3833D01* Y9307D01* X19076Y9302D01* X19083Y9296D01* X19090Y9291D01* X19098Y9288D01* X19107Y9286D01* X19115Y9285D01* X19124Y9286D01* X19132Y9289D01* X19140Y9293D01* X19147Y9298D01* X19152Y9304D01* Y7714D01* X19149Y7716D01* X19140Y7718D01* X19132Y7719D01* X19123Y7719D01* X19114Y7717D01* X19106Y7713D01* X19099Y7708D01* X19093Y7702D01* X19088Y7695D01* X19084Y7687D01* X19082Y7679D01* X19081Y7670D01* X19081Y7661D01* X19083Y7653D01* X19087Y7645D01* X19099Y7621D01* X19109Y7595D01* X19116Y7569D01* X19121Y7543D01* X19124Y7516D01* X19124Y7489D01* X19122Y7462D01* X19117Y7435D01* X19110Y7409D01* X19101Y7383D01* X19089Y7359D01* X19086Y7351D01* X19084Y7342D01* X19084Y7333D01* X19085Y7325D01* X19087Y7317D01* X19091Y7309D01* X19096Y7302D01* X19103Y7296D01* X19110Y7291D01* X19118Y7288D01* X19127Y7286D01* X19135Y7285D01* X19144Y7286D01* X19152Y7289D01* X19152Y7289D01* Y5719D01* X19152Y5719D01* X19143Y5719D01* X19134Y5717D01* X19126Y5713D01* X19119Y5708D01* X19113Y5702D01* X19108Y5695D01* X19104Y5687D01* X19102Y5679D01* X19101Y5670D01* X19101Y5661D01* X19103Y5653D01* X19107Y5645D01* X19119Y5621D01* X19129Y5595D01* X19136Y5569D01* X19141Y5543D01* X19144Y5516D01* X19144Y5489D01* X19142Y5462D01* X19137Y5435D01* X19130Y5409D01* X19121Y5383D01* X19109Y5359D01* X19106Y5351D01* X19104Y5342D01* X19104Y5333D01* X19105Y5325D01* X19107Y5317D01* X19111Y5309D01* X19116Y5302D01* X19123Y5296D01* X19130Y5291D01* X19138Y5288D01* X19147Y5286D01* X19152Y5286D01* Y3716D01* X19146Y3713D01* X19139Y3708D01* X19133Y3702D01* X19128Y3695D01* X19124Y3687D01* X19122Y3679D01* X19121Y3670D01* X19121Y3661D01* X19123Y3653D01* X19127Y3645D01* X19139Y3621D01* X19149Y3595D01* X19152Y3583D01* Y3416D01* X19150Y3409D01* X19141Y3383D01* X19129Y3359D01* X19126Y3351D01* X19124Y3342D01* X19124Y3333D01* X19125Y3325D01* X19127Y3317D01* X19131Y3309D01* X19136Y3302D01* X19143Y3296D01* X19150Y3291D01* X19152Y3290D01* Y1701D01* X19148Y1695D01* X19144Y1687D01* X19142Y1679D01* X19141Y1670D01* X19141Y1661D01* X19143Y1653D01* X19147Y1645D01* X19152Y1634D01* Y1365D01* X19149Y1359D01* X19146Y1351D01* X19144Y1342D01* X19144Y1333D01* X19145Y1325D01* X19147Y1317D01* X19151Y1309D01* X19152Y1307D01* Y0D01* G37* G36* Y9696D02*X19150Y9701D01* X19144Y9707D01* X19136Y9712D01* X19129Y9716D01* X19120Y9718D01* X19112Y9719D01* X19103Y9719D01* X19094Y9717D01* X19086Y9713D01* X19079Y9708D01* X19073Y9702D01* X19072Y9701D01* Y11290D01* X19078Y11288D01* X19087Y11286D01* X19095Y11285D01* X19104Y11286D01* X19112Y11289D01* X19120Y11293D01* X19127Y11298D01* X19133Y11305D01* X19138Y11312D01* X19152Y11343D01* Y9696D01* G37* G36* Y11656D02*X19150Y11661D01* X19134Y11694D01* X19130Y11701D01* X19124Y11707D01* X19116Y11712D01* X19109Y11716D01* X19100Y11718D01* X19092Y11719D01* X19083Y11719D01* X19074Y11717D01* X19072Y11716D01* Y13286D01* X19075Y13285D01* X19084Y13286D01* X19092Y13289D01* X19100Y13293D01* X19107Y13298D01* X19113Y13305D01* X19118Y13312D01* X19133Y13344D01* X19146Y13378D01* X19152Y13404D01* Y11656D01* G37* G36* Y40000D02*X20217D01* Y39709D01* X20211Y39711D01* X20202Y39713D01* X20194Y39714D01* X20185Y39713D01* X20177Y39710D01* X20169Y39706D01* X20162Y39701D01* X20156Y39695D01* X20151Y39687D01* X20136Y39655D01* X20123Y39621D01* X20114Y39586D01* X20108Y39550D01* X20105Y39514D01* X20105Y39478D01* X20109Y39442D01* X20115Y39407D01* X20125Y39372D01* X20139Y39338D01* X20155Y39306D01* X20159Y39299D01* X20165Y39292D01* X20173Y39287D01* X20180Y39283D01* X20189Y39281D01* X20197Y39280D01* X20206Y39281D01* X20215Y39283D01* X20217Y39284D01* Y37714D01* X20214Y37714D01* X20205Y37713D01* X20197Y37710D01* X20189Y37706D01* X20182Y37701D01* X20176Y37695D01* X20171Y37687D01* X20156Y37655D01* X20143Y37621D01* X20134Y37586D01* X20128Y37550D01* X20125Y37514D01* X20125Y37478D01* X20129Y37442D01* X20135Y37407D01* X20145Y37372D01* X20159Y37338D01* X20175Y37306D01* X20179Y37299D01* X20185Y37292D01* X20193Y37287D01* X20200Y37283D01* X20209Y37281D01* X20217Y37280D01* Y35710D01* X20209Y35706D01* X20202Y35701D01* X20196Y35695D01* X20191Y35687D01* X20176Y35655D01* X20163Y35621D01* X20154Y35586D01* X20148Y35550D01* X20145Y35514D01* X20145Y35478D01* X20149Y35442D01* X20155Y35407D01* X20165Y35372D01* X20179Y35338D01* X20195Y35306D01* X20199Y35299D01* X20205Y35292D01* X20213Y35287D01* X20217Y35285D01* Y33695D01* X20216Y33695D01* X20211Y33687D01* X20196Y33655D01* X20183Y33621D01* X20174Y33586D01* X20168Y33550D01* X20165Y33514D01* X20165Y33478D01* X20169Y33442D01* X20175Y33407D01* X20185Y33372D01* X20199Y33338D01* X20215Y33306D01* X20217Y33303D01* Y31656D01* X20216Y31655D01* X20203Y31621D01* X20194Y31586D01* X20188Y31550D01* X20185Y31514D01* X20185Y31478D01* X20189Y31442D01* X20195Y31407D01* X20205Y31372D01* X20217Y31343D01* Y29596D01* X20214Y29586D01* X20208Y29550D01* X20205Y29514D01* X20205Y29478D01* X20209Y29442D01* X20215Y29407D01* X20217Y29403D01* Y0D01* X19152D01* Y1307D01* X19156Y1302D01* X19163Y1296D01* X19170Y1291D01* X19178Y1288D01* X19187Y1286D01* X19195Y1285D01* X19204Y1286D01* X19212Y1289D01* X19220Y1293D01* X19227Y1298D01* X19233Y1305D01* X19238Y1312D01* X19253Y1344D01* X19266Y1378D01* X19275Y1413D01* X19281Y1449D01* X19284Y1485D01* X19284Y1521D01* X19280Y1557D01* X19274Y1593D01* X19264Y1627D01* X19250Y1661D01* X19234Y1694D01* X19230Y1701D01* X19224Y1707D01* X19216Y1712D01* X19209Y1716D01* X19200Y1718D01* X19192Y1719D01* X19183Y1719D01* X19174Y1717D01* X19166Y1713D01* X19159Y1708D01* X19153Y1702D01* X19152Y1701D01* Y3290D01* X19158Y3288D01* X19167Y3286D01* X19175Y3285D01* X19184Y3286D01* X19192Y3289D01* X19200Y3293D01* X19207Y3298D01* X19213Y3305D01* X19218Y3312D01* X19233Y3344D01* X19246Y3378D01* X19255Y3413D01* X19261Y3449D01* X19264Y3485D01* X19264Y3521D01* X19260Y3557D01* X19254Y3593D01* X19244Y3627D01* X19230Y3661D01* X19214Y3694D01* X19210Y3701D01* X19204Y3707D01* X19196Y3712D01* X19189Y3716D01* X19180Y3718D01* X19172Y3719D01* X19163Y3719D01* X19154Y3717D01* X19152Y3716D01* Y5286D01* X19155Y5285D01* X19164Y5286D01* X19172Y5289D01* X19180Y5293D01* X19187Y5298D01* X19193Y5305D01* X19198Y5312D01* X19213Y5344D01* X19226Y5378D01* X19235Y5413D01* X19241Y5449D01* X19244Y5485D01* X19244Y5521D01* X19240Y5557D01* X19234Y5593D01* X19224Y5627D01* X19210Y5661D01* X19194Y5694D01* X19190Y5701D01* X19184Y5707D01* X19176Y5712D01* X19169Y5716D01* X19160Y5718D01* X19152Y5719D01* Y7289D01* X19160Y7293D01* X19167Y7298D01* X19173Y7305D01* X19178Y7312D01* X19193Y7344D01* X19206Y7378D01* X19215Y7413D01* X19221Y7449D01* X19224Y7485D01* X19224Y7521D01* X19220Y7557D01* X19214Y7593D01* X19204Y7627D01* X19190Y7661D01* X19174Y7694D01* X19170Y7701D01* X19164Y7707D01* X19156Y7712D01* X19152Y7714D01* Y9304D01* X19153Y9305D01* X19158Y9312D01* X19173Y9344D01* X19186Y9378D01* X19195Y9413D01* X19201Y9449D01* X19204Y9485D01* X19204Y9521D01* X19200Y9557D01* X19194Y9593D01* X19184Y9627D01* X19170Y9661D01* X19154Y9694D01* X19152Y9696D01* Y11343D01* X19153Y11344D01* X19166Y11378D01* X19175Y11413D01* X19181Y11449D01* X19184Y11485D01* X19184Y11521D01* X19180Y11557D01* X19174Y11593D01* X19164Y11627D01* X19152Y11656D01* Y13404D01* X19155Y13413D01* X19161Y13449D01* X19164Y13485D01* X19164Y13521D01* X19160Y13557D01* X19154Y13593D01* X19152Y13596D01* Y40000D01* G37* G36* X20217Y39417D02*X20213Y39430D01* X20208Y39456D01* X20205Y39483D01* X20205Y39511D01* X20207Y39538D01* X20212Y39564D01* X20217Y39583D01* Y39417D01* G37* G36* Y40000D02*X20297D01* Y39838D01* X20292Y39832D01* X20288Y39824D01* X20286Y39815D01* X20285Y39807D01* X20285Y39798D01* X20288Y39790D01* X20291Y39782D01* X20296Y39774D01* X20297Y39774D01* Y39215D01* X20296Y39214D01* X20293Y39206D01* X20291Y39197D01* X20290Y39189D01* X20291Y39180D01* X20294Y39172D01* X20297Y39167D01* Y33692D01* X20293Y33697D01* X20286Y33703D01* X20279Y33708D01* X20271Y33711D01* X20262Y33713D01* X20254Y33714D01* X20245Y33713D01* X20237Y33710D01* X20229Y33706D01* X20222Y33701D01* X20217Y33695D01* Y35285D01* X20220Y35283D01* X20229Y35281D01* X20237Y35280D01* X20246Y35281D01* X20255Y35283D01* X20263Y35286D01* X20270Y35291D01* X20276Y35297D01* X20281Y35304D01* X20285Y35312D01* X20287Y35320D01* X20288Y35329D01* X20288Y35338D01* X20286Y35346D01* X20282Y35354D01* X20270Y35378D01* X20260Y35404D01* X20253Y35430D01* X20248Y35456D01* X20245Y35483D01* X20245Y35511D01* X20247Y35538D01* X20252Y35564D01* X20259Y35590D01* X20268Y35616D01* X20280Y35640D01* X20283Y35649D01* X20285Y35657D01* X20285Y35666D01* X20284Y35674D01* X20282Y35683D01* X20278Y35690D01* X20273Y35697D01* X20266Y35703D01* X20259Y35708D01* X20251Y35711D01* X20242Y35713D01* X20234Y35714D01* X20225Y35713D01* X20217Y35710D01* X20217Y35710D01* Y37280D01* X20217Y37280D01* X20226Y37281D01* X20235Y37283D01* X20243Y37286D01* X20250Y37291D01* X20256Y37297D01* X20261Y37304D01* X20265Y37312D01* X20267Y37320D01* X20268Y37329D01* X20268Y37338D01* X20266Y37346D01* X20262Y37354D01* X20250Y37378D01* X20240Y37404D01* X20233Y37430D01* X20228Y37456D01* X20225Y37483D01* X20225Y37511D01* X20227Y37538D01* X20232Y37564D01* X20239Y37590D01* X20248Y37616D01* X20260Y37640D01* X20263Y37649D01* X20265Y37657D01* X20265Y37666D01* X20264Y37674D01* X20262Y37683D01* X20258Y37690D01* X20253Y37697D01* X20246Y37703D01* X20239Y37708D01* X20231Y37711D01* X20222Y37713D01* X20217Y37714D01* Y39284D01* X20223Y39286D01* X20230Y39291D01* X20236Y39297D01* X20241Y39304D01* X20245Y39312D01* X20247Y39320D01* X20248Y39329D01* X20248Y39338D01* X20246Y39346D01* X20242Y39354D01* X20230Y39378D01* X20220Y39404D01* X20217Y39417D01* Y39583D01* X20219Y39590D01* X20228Y39616D01* X20240Y39640D01* X20243Y39649D01* X20245Y39657D01* X20245Y39666D01* X20244Y39674D01* X20242Y39683D01* X20238Y39690D01* X20233Y39697D01* X20226Y39703D01* X20219Y39708D01* X20217Y39709D01* Y40000D01* G37* G36* X20297Y0D02*X20217D01* Y29403D01* X20225Y29372D01* X20239Y29338D01* X20255Y29306D01* X20259Y29299D01* X20265Y29292D01* X20273Y29287D01* X20280Y29283D01* X20289Y29281D01* X20297Y29280D01* Y27710D01* X20289Y27706D01* X20282Y27701D01* X20276Y27695D01* X20271Y27687D01* X20256Y27655D01* X20243Y27621D01* X20234Y27586D01* X20228Y27550D01* X20225Y27514D01* X20225Y27478D01* X20229Y27442D01* X20235Y27407D01* X20245Y27372D01* X20259Y27338D01* X20275Y27306D01* X20279Y27299D01* X20285Y27292D01* X20293Y27287D01* X20297Y27285D01* Y25695D01* X20296Y25695D01* X20291Y25687D01* X20276Y25655D01* X20263Y25621D01* X20254Y25586D01* X20248Y25550D01* X20245Y25514D01* X20245Y25478D01* X20249Y25442D01* X20255Y25407D01* X20265Y25372D01* X20279Y25338D01* X20295Y25306D01* X20297Y25303D01* Y23656D01* X20296Y23655D01* X20283Y23621D01* X20274Y23586D01* X20268Y23550D01* X20265Y23514D01* X20265Y23478D01* X20269Y23442D01* X20275Y23407D01* X20285Y23372D01* X20297Y23343D01* Y21596D01* X20294Y21586D01* X20288Y21550D01* X20285Y21514D01* X20285Y21478D01* X20289Y21442D01* X20295Y21407D01* X20297Y21403D01* Y0D01* G37* G36* Y29714D02*X20294Y29714D01* X20285Y29713D01* X20277Y29710D01* X20269Y29706D01* X20262Y29701D01* X20256Y29695D01* X20251Y29687D01* X20236Y29655D01* X20223Y29621D01* X20217Y29596D01* Y31343D01* X20219Y31338D01* X20235Y31306D01* X20239Y31299D01* X20245Y31292D01* X20253Y31287D01* X20260Y31283D01* X20269Y31281D01* X20277Y31280D01* X20286Y31281D01* X20295Y31283D01* X20297Y31284D01* Y29714D01* G37* G36* Y31417D02*X20293Y31430D01* X20288Y31456D01* X20285Y31483D01* X20285Y31511D01* X20287Y31538D01* X20292Y31564D01* X20297Y31583D01* Y31417D01* G37* G36* Y31709D02*X20291Y31711D01* X20282Y31713D01* X20274Y31714D01* X20265Y31713D01* X20257Y31710D01* X20249Y31706D01* X20242Y31701D01* X20236Y31695D01* X20231Y31687D01* X20217Y31656D01* Y33303D01* X20219Y33299D01* X20225Y33292D01* X20233Y33287D01* X20240Y33283D01* X20249Y33281D01* X20257Y33280D01* X20266Y33281D01* X20275Y33283D01* X20283Y33286D01* X20290Y33291D01* X20296Y33297D01* X20297Y33298D01* Y31709D01* G37* G36* Y33365D02*X20290Y33378D01* X20280Y33404D01* X20273Y33430D01* X20268Y33456D01* X20265Y33483D01* X20265Y33511D01* X20267Y33538D01* X20272Y33564D01* X20279Y33590D01* X20288Y33616D01* X20297Y33634D01* Y33365D01* G37* G36* Y40000D02*X20547D01* Y39897D01* X20519Y39899D01* X20483Y39899D01* X20447Y39895D01* X20411Y39889D01* X20377Y39879D01* X20343Y39866D01* X20311Y39849D01* X20303Y39845D01* X20297Y39839D01* X20297Y39838D01* Y40000D01* G37* G36* Y39774D02*X20302Y39768D01* X20309Y39763D01* X20317Y39759D01* X20325Y39757D01* X20334Y39756D01* X20343Y39756D01* X20351Y39758D01* X20359Y39762D01* X20383Y39774D01* X20409Y39784D01* X20435Y39791D01* X20461Y39796D01* X20488Y39799D01* X20515Y39799D01* X20542Y39797D01* X20547Y39796D01* Y39203D01* X20521Y39200D01* X20494Y39200D01* X20467Y39202D01* X20440Y39207D01* X20414Y39214D01* X20388Y39223D01* X20364Y39235D01* X20356Y39238D01* X20347Y39240D01* X20338Y39240D01* X20330Y39239D01* X20321Y39237D01* X20314Y39233D01* X20307Y39228D01* X20301Y39221D01* X20297Y39215D01* Y39774D01* G37* G36* Y39167D02*X20298Y39164D01* X20303Y39157D01* X20309Y39151D01* X20317Y39146D01* X20349Y39131D01* X20377Y39121D01* Y37871D01* X20363Y37866D01* X20331Y37849D01* X20323Y37845D01* X20317Y37839D01* X20312Y37832D01* X20308Y37824D01* X20306Y37815D01* X20305Y37807D01* X20305Y37798D01* X20308Y37790D01* X20311Y37782D01* X20316Y37774D01* X20322Y37768D01* X20329Y37763D01* X20337Y37759D01* X20345Y37757D01* X20354Y37756D01* X20363Y37756D01* X20371Y37758D01* X20377Y37761D01* Y37238D01* X20376Y37238D01* X20367Y37240D01* X20358Y37240D01* X20350Y37239D01* X20341Y37237D01* X20334Y37233D01* X20327Y37228D01* X20321Y37221D01* X20316Y37214D01* X20313Y37206D01* X20311Y37197D01* X20310Y37189D01* X20311Y37180D01* X20314Y37172D01* X20318Y37164D01* X20323Y37157D01* X20329Y37151D01* X20337Y37146D01* X20369Y37131D01* X20377Y37128D01* Y35862D01* X20351Y35849D01* X20343Y35845D01* X20337Y35839D01* X20332Y35832D01* X20328Y35824D01* X20326Y35815D01* X20325Y35807D01* X20325Y35798D01* X20328Y35790D01* X20331Y35782D01* X20336Y35774D01* X20342Y35768D01* X20349Y35763D01* X20357Y35759D01* X20365Y35757D01* X20374Y35756D01* X20377Y35756D01* Y35240D01* X20370Y35239D01* X20361Y35237D01* X20354Y35233D01* X20347Y35228D01* X20341Y35221D01* X20336Y35214D01* X20333Y35206D01* X20331Y35197D01* X20330Y35189D01* X20331Y35180D01* X20334Y35172D01* X20338Y35164D01* X20343Y35157D01* X20349Y35151D01* X20357Y35146D01* X20377Y35137D01* Y33852D01* X20371Y33849D01* X20363Y33845D01* X20357Y33839D01* X20352Y33832D01* X20348Y33824D01* X20346Y33815D01* X20345Y33807D01* X20345Y33798D01* X20348Y33790D01* X20351Y33782D01* X20356Y33774D01* X20362Y33768D01* X20369Y33763D01* X20377Y33759D01* Y33234D01* X20374Y33233D01* X20367Y33228D01* X20361Y33221D01* X20356Y33214D01* X20353Y33206D01* X20351Y33197D01* X20350Y33189D01* X20351Y33180D01* X20354Y33172D01* X20358Y33164D01* X20363Y33157D01* X20369Y33151D01* X20377Y33147D01* Y31838D01* X20372Y31832D01* X20368Y31824D01* X20366Y31815D01* X20365Y31807D01* X20365Y31798D01* X20368Y31790D01* X20371Y31782D01* X20376Y31774D01* X20377Y31774D01* Y31215D01* X20376Y31214D01* X20373Y31206D01* X20371Y31197D01* X20370Y31189D01* X20371Y31180D01* X20374Y31172D01* X20377Y31167D01* Y25692D01* X20373Y25697D01* X20366Y25703D01* X20359Y25708D01* X20351Y25711D01* X20342Y25713D01* X20334Y25714D01* X20325Y25713D01* X20317Y25710D01* X20309Y25706D01* X20302Y25701D01* X20297Y25695D01* Y27285D01* X20300Y27283D01* X20309Y27281D01* X20317Y27280D01* X20326Y27281D01* X20335Y27283D01* X20343Y27286D01* X20350Y27291D01* X20356Y27297D01* X20361Y27304D01* X20365Y27312D01* X20367Y27320D01* X20368Y27329D01* X20368Y27338D01* X20366Y27346D01* X20362Y27354D01* X20350Y27378D01* X20340Y27404D01* X20333Y27430D01* X20328Y27456D01* X20325Y27483D01* X20325Y27511D01* X20327Y27538D01* X20332Y27564D01* X20339Y27590D01* X20348Y27616D01* X20360Y27640D01* X20363Y27649D01* X20365Y27657D01* X20365Y27666D01* X20364Y27674D01* X20362Y27683D01* X20358Y27690D01* X20353Y27697D01* X20346Y27703D01* X20339Y27708D01* X20331Y27711D01* X20322Y27713D01* X20314Y27714D01* X20305Y27713D01* X20297Y27710D01* X20297Y27710D01* Y29280D01* X20297Y29280D01* X20306Y29281D01* X20315Y29283D01* X20323Y29286D01* X20330Y29291D01* X20336Y29297D01* X20341Y29304D01* X20345Y29312D01* X20347Y29320D01* X20348Y29329D01* X20348Y29338D01* X20346Y29346D01* X20342Y29354D01* X20330Y29378D01* X20320Y29404D01* X20313Y29430D01* X20308Y29456D01* X20305Y29483D01* X20305Y29511D01* X20307Y29538D01* X20312Y29564D01* X20319Y29590D01* X20328Y29616D01* X20340Y29640D01* X20343Y29649D01* X20345Y29657D01* X20345Y29666D01* X20344Y29674D01* X20342Y29683D01* X20338Y29690D01* X20333Y29697D01* X20326Y29703D01* X20319Y29708D01* X20311Y29711D01* X20302Y29713D01* X20297Y29714D01* Y31284D01* X20303Y31286D01* X20310Y31291D01* X20316Y31297D01* X20321Y31304D01* X20325Y31312D01* X20327Y31320D01* X20328Y31329D01* X20328Y31338D01* X20326Y31346D01* X20322Y31354D01* X20310Y31378D01* X20300Y31404D01* X20297Y31417D01* Y31583D01* X20299Y31590D01* X20308Y31616D01* X20320Y31640D01* X20323Y31649D01* X20325Y31657D01* X20325Y31666D01* X20324Y31674D01* X20322Y31683D01* X20318Y31690D01* X20313Y31697D01* X20306Y31703D01* X20299Y31708D01* X20297Y31709D01* Y33298D01* X20301Y33304D01* X20305Y33312D01* X20307Y33320D01* X20308Y33329D01* X20308Y33338D01* X20306Y33346D01* X20302Y33354D01* X20297Y33365D01* Y33634D01* X20300Y33640D01* X20303Y33649D01* X20305Y33657D01* X20305Y33666D01* X20304Y33674D01* X20302Y33683D01* X20298Y33690D01* X20297Y33692D01* Y39167D01* G37* G36* X20377Y0D02*X20297D01* Y21403D01* X20305Y21372D01* X20319Y21338D01* X20335Y21306D01* X20339Y21299D01* X20345Y21292D01* X20353Y21287D01* X20360Y21283D01* X20369Y21281D01* X20377Y21280D01* Y19710D01* X20369Y19706D01* X20362Y19701D01* X20356Y19695D01* X20351Y19687D01* X20336Y19655D01* X20323Y19621D01* X20314Y19586D01* X20308Y19550D01* X20305Y19514D01* X20305Y19478D01* X20309Y19442D01* X20315Y19407D01* X20325Y19372D01* X20339Y19338D01* X20355Y19306D01* X20359Y19299D01* X20365Y19292D01* X20373Y19287D01* X20377Y19285D01* Y17695D01* X20376Y17695D01* X20371Y17687D01* X20356Y17655D01* X20343Y17621D01* X20334Y17586D01* X20328Y17550D01* X20325Y17514D01* X20325Y17478D01* X20329Y17442D01* X20335Y17407D01* X20345Y17372D01* X20359Y17338D01* X20375Y17306D01* X20377Y17303D01* Y15656D01* X20376Y15655D01* X20363Y15621D01* X20354Y15586D01* X20348Y15550D01* X20345Y15514D01* X20345Y15478D01* X20349Y15442D01* X20355Y15407D01* X20365Y15372D01* X20377Y15343D01* Y13596D01* X20374Y13586D01* X20368Y13550D01* X20365Y13514D01* X20365Y13478D01* X20369Y13442D01* X20375Y13407D01* X20377Y13403D01* Y0D01* G37* G36* Y21714D02*X20374Y21714D01* X20365Y21713D01* X20357Y21710D01* X20349Y21706D01* X20342Y21701D01* X20336Y21695D01* X20331Y21687D01* X20316Y21655D01* X20303Y21621D01* X20297Y21596D01* Y23343D01* X20299Y23338D01* X20315Y23306D01* X20319Y23299D01* X20325Y23292D01* X20333Y23287D01* X20340Y23283D01* X20349Y23281D01* X20357Y23280D01* X20366Y23281D01* X20375Y23283D01* X20377Y23284D01* Y21714D01* G37* G36* Y23417D02*X20373Y23430D01* X20368Y23456D01* X20365Y23483D01* X20365Y23511D01* X20367Y23538D01* X20372Y23564D01* X20377Y23583D01* Y23417D01* G37* G36* Y23709D02*X20371Y23711D01* X20362Y23713D01* X20354Y23714D01* X20345Y23713D01* X20337Y23710D01* X20329Y23706D01* X20322Y23701D01* X20316Y23695D01* X20311Y23687D01* X20297Y23656D01* Y25303D01* X20299Y25299D01* X20305Y25292D01* X20313Y25287D01* X20320Y25283D01* X20329Y25281D01* X20337Y25280D01* X20346Y25281D01* X20355Y25283D01* X20363Y25286D01* X20370Y25291D01* X20376Y25297D01* X20377Y25298D01* Y23709D01* G37* G36* Y25365D02*X20370Y25378D01* X20360Y25404D01* X20353Y25430D01* X20348Y25456D01* X20345Y25483D01* X20345Y25511D01* X20347Y25538D01* X20352Y25564D01* X20359Y25590D01* X20368Y25616D01* X20377Y25634D01* Y25365D01* G37* G36* Y39121D02*X20383Y39118D01* X20418Y39109D01* X20454Y39103D01* X20490Y39100D01* X20526Y39100D01* X20547Y39102D01* Y37899D01* X20539Y37899D01* X20503Y37899D01* X20467Y37895D01* X20431Y37889D01* X20397Y37879D01* X20377Y37871D01* Y39121D01* G37* G36* Y37761D02*X20379Y37762D01* X20403Y37774D01* X20429Y37784D01* X20455Y37791D01* X20481Y37796D01* X20508Y37799D01* X20535Y37799D01* X20547Y37798D01* Y37201D01* X20541Y37200D01* X20514Y37200D01* X20487Y37202D01* X20460Y37207D01* X20434Y37214D01* X20408Y37223D01* X20384Y37235D01* X20377Y37238D01* Y37761D01* G37* G36* Y37128D02*X20403Y37118D01* X20438Y37109D01* X20474Y37103D01* X20510Y37100D01* X20546Y37100D01* X20547Y37100D01* Y35899D01* X20523Y35899D01* X20487Y35895D01* X20451Y35889D01* X20417Y35879D01* X20383Y35866D01* X20377Y35862D01* Y37128D01* G37* G36* Y35756D02*X20383Y35756D01* X20391Y35758D01* X20399Y35762D01* X20423Y35774D01* X20449Y35784D01* X20475Y35791D01* X20501Y35796D01* X20528Y35799D01* X20547Y35799D01* Y35200D01* X20534Y35200D01* X20507Y35202D01* X20480Y35207D01* X20454Y35214D01* X20428Y35223D01* X20404Y35235D01* X20396Y35238D01* X20387Y35240D01* X20378Y35240D01* X20377Y35240D01* Y35756D01* G37* G36* Y35137D02*X20389Y35131D01* X20423Y35118D01* X20458Y35109D01* X20494Y35103D01* X20530Y35100D01* X20547Y35100D01* Y33899D01* X20543D01* X20507Y33895D01* X20471Y33889D01* X20437Y33879D01* X20403Y33866D01* X20377Y33852D01* Y35137D01* G37* G36* Y33759D02*X20377Y33759D01* X20385Y33757D01* X20394Y33756D01* X20403Y33756D01* X20411Y33758D01* X20419Y33762D01* X20443Y33774D01* X20469Y33784D01* X20495Y33791D01* X20521Y33796D01* X20547Y33799D01* Y33200D01* X20527Y33202D01* X20500Y33207D01* X20474Y33214D01* X20448Y33223D01* X20424Y33235D01* X20416Y33238D01* X20407Y33240D01* X20398Y33240D01* X20390Y33239D01* X20381Y33237D01* X20377Y33234D01* Y33759D01* G37* G36* Y33147D02*X20377Y33146D01* X20409Y33131D01* X20443Y33118D01* X20478Y33109D01* X20514Y33103D01* X20547Y33100D01* Y31897D01* X20527Y31895D01* X20491Y31889D01* X20457Y31879D01* X20423Y31866D01* X20391Y31849D01* X20383Y31845D01* X20377Y31839D01* X20377Y31838D01* Y33147D01* G37* G36* Y31774D02*X20382Y31768D01* X20389Y31763D01* X20397Y31759D01* X20405Y31757D01* X20414Y31756D01* X20423Y31756D01* X20431Y31758D01* X20439Y31762D01* X20463Y31774D01* X20489Y31784D01* X20515Y31791D01* X20541Y31796D01* X20547Y31797D01* Y31202D01* X20547Y31202D01* X20520Y31207D01* X20494Y31214D01* X20468Y31223D01* X20444Y31235D01* X20436Y31238D01* X20427Y31240D01* X20418Y31240D01* X20410Y31239D01* X20401Y31237D01* X20394Y31233D01* X20387Y31228D01* X20381Y31221D01* X20377Y31215D01* Y31774D01* G37* G36* Y31167D02*X20378Y31164D01* X20383Y31157D01* X20389Y31151D01* X20397Y31146D01* X20429Y31131D01* X20457Y31121D01* Y29871D01* X20443Y29866D01* X20411Y29849D01* X20403Y29845D01* X20397Y29839D01* X20392Y29832D01* X20388Y29824D01* X20386Y29815D01* X20385Y29807D01* X20385Y29798D01* X20388Y29790D01* X20391Y29782D01* X20396Y29774D01* X20402Y29768D01* X20409Y29763D01* X20417Y29759D01* X20425Y29757D01* X20434Y29756D01* X20443Y29756D01* X20451Y29758D01* X20457Y29761D01* Y29238D01* X20456Y29238D01* X20447Y29240D01* X20438Y29240D01* X20430Y29239D01* X20421Y29237D01* X20414Y29233D01* X20407Y29228D01* X20401Y29221D01* X20396Y29214D01* X20393Y29206D01* X20391Y29197D01* X20390Y29189D01* X20391Y29180D01* X20394Y29172D01* X20398Y29164D01* X20403Y29157D01* X20409Y29151D01* X20417Y29146D01* X20449Y29131D01* X20457Y29128D01* Y27862D01* X20431Y27849D01* X20423Y27845D01* X20417Y27839D01* X20412Y27832D01* X20408Y27824D01* X20406Y27815D01* X20405Y27807D01* X20405Y27798D01* X20408Y27790D01* X20411Y27782D01* X20416Y27774D01* X20422Y27768D01* X20429Y27763D01* X20437Y27759D01* X20445Y27757D01* X20454Y27756D01* X20457Y27756D01* Y27240D01* X20450Y27239D01* X20441Y27237D01* X20434Y27233D01* X20427Y27228D01* X20421Y27221D01* X20416Y27214D01* X20413Y27206D01* X20411Y27197D01* X20410Y27189D01* X20411Y27180D01* X20414Y27172D01* X20418Y27164D01* X20423Y27157D01* X20429Y27151D01* X20437Y27146D01* X20457Y27137D01* Y25852D01* X20451Y25849D01* X20443Y25845D01* X20437Y25839D01* X20432Y25832D01* X20428Y25824D01* X20426Y25815D01* X20425Y25807D01* X20425Y25798D01* X20428Y25790D01* X20431Y25782D01* X20436Y25774D01* X20442Y25768D01* X20449Y25763D01* X20457Y25759D01* Y25234D01* X20454Y25233D01* X20447Y25228D01* X20441Y25221D01* X20436Y25214D01* X20433Y25206D01* X20431Y25197D01* X20430Y25189D01* X20431Y25180D01* X20434Y25172D01* X20438Y25164D01* X20443Y25157D01* X20449Y25151D01* X20457Y25147D01* Y23838D01* X20452Y23832D01* X20448Y23824D01* X20446Y23815D01* X20445Y23807D01* X20445Y23798D01* X20448Y23790D01* X20451Y23782D01* X20456Y23774D01* X20457Y23774D01* Y23215D01* X20456Y23214D01* X20453Y23206D01* X20451Y23197D01* X20450Y23189D01* X20451Y23180D01* X20454Y23172D01* X20457Y23167D01* Y17692D01* X20453Y17697D01* X20446Y17703D01* X20439Y17708D01* X20431Y17711D01* X20422Y17713D01* X20414Y17714D01* X20405Y17713D01* X20397Y17710D01* X20389Y17706D01* X20382Y17701D01* X20377Y17695D01* Y19285D01* X20380Y19283D01* X20389Y19281D01* X20397Y19280D01* X20406Y19281D01* X20415Y19283D01* X20423Y19286D01* X20430Y19291D01* X20436Y19297D01* X20441Y19304D01* X20445Y19312D01* X20447Y19320D01* X20448Y19329D01* X20448Y19338D01* X20446Y19346D01* X20442Y19354D01* X20430Y19378D01* X20420Y19404D01* X20413Y19430D01* X20408Y19456D01* X20405Y19483D01* X20405Y19511D01* X20407Y19538D01* X20412Y19564D01* X20419Y19590D01* X20428Y19616D01* X20440Y19640D01* X20443Y19649D01* X20445Y19657D01* X20445Y19666D01* X20444Y19674D01* X20442Y19683D01* X20438Y19690D01* X20433Y19697D01* X20426Y19703D01* X20419Y19708D01* X20411Y19711D01* X20402Y19713D01* X20394Y19714D01* X20385Y19713D01* X20377Y19710D01* X20377Y19710D01* Y21280D01* X20377Y21280D01* X20386Y21281D01* X20395Y21283D01* X20403Y21286D01* X20410Y21291D01* X20416Y21297D01* X20421Y21304D01* X20425Y21312D01* X20427Y21320D01* X20428Y21329D01* X20428Y21338D01* X20426Y21346D01* X20422Y21354D01* X20410Y21378D01* X20400Y21404D01* X20393Y21430D01* X20388Y21456D01* X20385Y21483D01* X20385Y21511D01* X20387Y21538D01* X20392Y21564D01* X20399Y21590D01* X20408Y21616D01* X20420Y21640D01* X20423Y21649D01* X20425Y21657D01* X20425Y21666D01* X20424Y21674D01* X20422Y21683D01* X20418Y21690D01* X20413Y21697D01* X20406Y21703D01* X20399Y21708D01* X20391Y21711D01* X20382Y21713D01* X20377Y21714D01* Y23284D01* X20383Y23286D01* X20390Y23291D01* X20396Y23297D01* X20401Y23304D01* X20405Y23312D01* X20407Y23320D01* X20408Y23329D01* X20408Y23338D01* X20406Y23346D01* X20402Y23354D01* X20390Y23378D01* X20380Y23404D01* X20377Y23417D01* Y23583D01* X20379Y23590D01* X20388Y23616D01* X20400Y23640D01* X20403Y23649D01* X20405Y23657D01* X20405Y23666D01* X20404Y23674D01* X20402Y23683D01* X20398Y23690D01* X20393Y23697D01* X20386Y23703D01* X20379Y23708D01* X20377Y23709D01* Y25298D01* X20381Y25304D01* X20385Y25312D01* X20387Y25320D01* X20388Y25329D01* X20388Y25338D01* X20386Y25346D01* X20382Y25354D01* X20377Y25365D01* Y25634D01* X20380Y25640D01* X20383Y25649D01* X20385Y25657D01* X20385Y25666D01* X20384Y25674D01* X20382Y25683D01* X20378Y25690D01* X20377Y25692D01* Y31167D01* G37* G36* X20457Y9695D02*X20456Y9695D01* X20451Y9687D01* X20436Y9655D01* X20423Y9621D01* X20414Y9586D01* X20408Y9550D01* X20405Y9514D01* X20405Y9478D01* X20409Y9442D01* X20415Y9407D01* X20425Y9372D01* X20439Y9338D01* X20455Y9306D01* X20457Y9303D01* Y7656D01* X20456Y7655D01* X20443Y7621D01* X20434Y7586D01* X20428Y7550D01* X20425Y7514D01* X20425Y7478D01* X20429Y7442D01* X20435Y7407D01* X20445Y7372D01* X20457Y7343D01* Y5596D01* X20454Y5586D01* X20448Y5550D01* X20445Y5514D01* X20445Y5478D01* X20449Y5442D01* X20455Y5407D01* X20457Y5403D01* Y0D01* X20377D01* Y13403D01* X20385Y13372D01* X20399Y13338D01* X20415Y13306D01* X20419Y13299D01* X20425Y13292D01* X20433Y13287D01* X20440Y13283D01* X20449Y13281D01* X20457Y13280D01* Y11710D01* X20449Y11706D01* X20442Y11701D01* X20436Y11695D01* X20431Y11687D01* X20416Y11655D01* X20403Y11621D01* X20394Y11586D01* X20388Y11550D01* X20385Y11514D01* X20385Y11478D01* X20389Y11442D01* X20395Y11407D01* X20405Y11372D01* X20419Y11338D01* X20435Y11306D01* X20439Y11299D01* X20445Y11292D01* X20453Y11287D01* X20457Y11285D01* Y9695D01* G37* G36* Y13714D02*X20454Y13714D01* X20445Y13713D01* X20437Y13710D01* X20429Y13706D01* X20422Y13701D01* X20416Y13695D01* X20411Y13687D01* X20396Y13655D01* X20383Y13621D01* X20377Y13596D01* Y15343D01* X20379Y15338D01* X20395Y15306D01* X20399Y15299D01* X20405Y15292D01* X20413Y15287D01* X20420Y15283D01* X20429Y15281D01* X20437Y15280D01* X20446Y15281D01* X20455Y15283D01* X20457Y15284D01* Y13714D01* G37* G36* Y15417D02*X20453Y15430D01* X20448Y15456D01* X20445Y15483D01* X20445Y15511D01* X20447Y15538D01* X20452Y15564D01* X20457Y15583D01* Y15417D01* G37* G36* Y15709D02*X20451Y15711D01* X20442Y15713D01* X20434Y15714D01* X20425Y15713D01* X20417Y15710D01* X20409Y15706D01* X20402Y15701D01* X20396Y15695D01* X20391Y15687D01* X20377Y15656D01* Y17303D01* X20379Y17299D01* X20385Y17292D01* X20393Y17287D01* X20400Y17283D01* X20409Y17281D01* X20417Y17280D01* X20426Y17281D01* X20435Y17283D01* X20443Y17286D01* X20450Y17291D01* X20456Y17297D01* X20457Y17298D01* Y15709D01* G37* G36* Y17365D02*X20450Y17378D01* X20440Y17404D01* X20433Y17430D01* X20428Y17456D01* X20425Y17483D01* X20425Y17511D01* X20427Y17538D01* X20432Y17564D01* X20439Y17590D01* X20448Y17616D01* X20457Y17634D01* Y17365D01* G37* G36* Y31121D02*X20463Y31118D01* X20498Y31109D01* X20534Y31103D01* X20547Y31102D01* Y29895D01* X20547D01* X20511Y29889D01* X20477Y29879D01* X20457Y29871D01* Y31121D01* G37* G36* Y29761D02*X20459Y29762D01* X20483Y29774D01* X20509Y29784D01* X20535Y29791D01* X20547Y29794D01* Y29205D01* X20540Y29207D01* X20514Y29214D01* X20488Y29223D01* X20464Y29235D01* X20457Y29238D01* Y29761D01* G37* G36* Y29128D02*X20483Y29118D01* X20518Y29109D01* X20547Y29104D01* Y27892D01* X20531Y27889D01* X20497Y27879D01* X20463Y27866D01* X20457Y27862D01* Y29128D01* G37* G36* Y27756D02*X20463Y27756D01* X20471Y27758D01* X20479Y27762D01* X20503Y27774D01* X20529Y27784D01* X20547Y27789D01* Y27210D01* X20534Y27214D01* X20508Y27223D01* X20484Y27235D01* X20476Y27238D01* X20467Y27240D01* X20458Y27240D01* X20457Y27240D01* Y27756D01* G37* G36* Y27137D02*X20469Y27131D01* X20503Y27118D01* X20538Y27109D01* X20547Y27107D01* Y25887D01* X20517Y25879D01* X20483Y25866D01* X20457Y25852D01* Y27137D01* G37* G36* Y25759D02*X20457Y25759D01* X20465Y25757D01* X20474Y25756D01* X20483Y25756D01* X20491Y25758D01* X20499Y25762D01* X20523Y25774D01* X20547Y25783D01* Y25216D01* X20528Y25223D01* X20504Y25235D01* X20496Y25238D01* X20487Y25240D01* X20478Y25240D01* X20470Y25239D01* X20461Y25237D01* X20457Y25234D01* Y25759D01* G37* G36* Y25147D02*X20457Y25146D01* X20489Y25131D01* X20523Y25118D01* X20547Y25112D01* Y23882D01* X20537Y23879D01* X20503Y23866D01* X20471Y23849D01* X20463Y23845D01* X20457Y23839D01* X20457Y23838D01* Y25147D01* G37* G36* Y23774D02*X20462Y23768D01* X20469Y23763D01* X20477Y23759D01* X20485Y23757D01* X20494Y23756D01* X20503Y23756D01* X20511Y23758D01* X20519Y23762D01* X20543Y23774D01* X20547Y23776D01* Y23223D01* X20524Y23235D01* X20516Y23238D01* X20507Y23240D01* X20498Y23240D01* X20490Y23239D01* X20481Y23237D01* X20474Y23233D01* X20467Y23228D01* X20461Y23221D01* X20457Y23215D01* Y23774D01* G37* G36* Y23167D02*X20458Y23164D01* X20463Y23157D01* X20469Y23151D01* X20477Y23146D01* X20509Y23131D01* X20543Y23118D01* X20547Y23117D01* Y21875D01* X20523Y21866D01* X20491Y21849D01* X20483Y21845D01* X20477Y21839D01* X20472Y21832D01* X20468Y21824D01* X20466Y21815D01* X20465Y21807D01* X20465Y21798D01* X20468Y21790D01* X20471Y21782D01* X20476Y21774D01* X20482Y21768D01* X20489Y21763D01* X20497Y21759D01* X20505Y21757D01* X20514Y21756D01* X20523Y21756D01* X20531Y21758D01* X20539Y21762D01* X20547Y21766D01* Y21233D01* X20544Y21235D01* X20536Y21238D01* X20527Y21240D01* X20518Y21240D01* X20510Y21239D01* X20501Y21237D01* X20494Y21233D01* X20487Y21228D01* X20481Y21221D01* X20476Y21214D01* X20473Y21206D01* X20471Y21197D01* X20470Y21189D01* X20471Y21180D01* X20474Y21172D01* X20478Y21164D01* X20483Y21157D01* X20489Y21151D01* X20497Y21146D01* X20529Y21131D01* X20547Y21124D01* Y19867D01* X20543Y19866D01* X20511Y19849D01* X20503Y19845D01* X20497Y19839D01* X20492Y19832D01* X20488Y19824D01* X20486Y19815D01* X20485Y19807D01* X20485Y19798D01* X20488Y19790D01* X20491Y19782D01* X20496Y19774D01* X20502Y19768D01* X20509Y19763D01* X20517Y19759D01* X20525Y19757D01* X20534Y19756D01* X20543Y19756D01* X20547Y19757D01* Y19240D01* X20547D01* X20538Y19240D01* X20530Y19239D01* X20521Y19237D01* X20514Y19233D01* X20507Y19228D01* X20501Y19221D01* X20496Y19214D01* X20493Y19206D01* X20491Y19197D01* X20490Y19189D01* X20491Y19180D01* X20494Y19172D01* X20498Y19164D01* X20503Y19157D01* X20509Y19151D01* X20517Y19146D01* X20547Y19132D01* Y17858D01* X20531Y17849D01* X20523Y17845D01* X20517Y17839D01* X20512Y17832D01* X20508Y17824D01* X20506Y17815D01* X20505Y17807D01* X20505Y17798D01* X20508Y17790D01* X20511Y17782D01* X20516Y17774D01* X20522Y17768D01* X20529Y17763D01* X20537Y17759D01* X20545Y17757D01* X20547Y17756D01* Y17239D01* X20541Y17237D01* X20534Y17233D01* X20527Y17228D01* X20521Y17221D01* X20516Y17214D01* X20513Y17206D01* X20511Y17197D01* X20510Y17189D01* X20511Y17180D01* X20514Y17172D01* X20518Y17164D01* X20523Y17157D01* X20529Y17151D01* X20537Y17146D01* X20547Y17141D01* Y15847D01* X20543Y15845D01* X20537Y15839D01* X20532Y15832D01* X20528Y15824D01* X20526Y15815D01* X20525Y15807D01* X20525Y15798D01* X20528Y15790D01* X20531Y15782D01* X20536Y15774D01* X20542Y15768D01* X20547Y15764D01* Y15228D01* X20547Y15228D01* X20541Y15221D01* X20536Y15214D01* X20533Y15206D01* X20531Y15197D01* X20530Y15189D01* X20531Y15180D01* X20534Y15172D01* X20538Y15164D01* X20543Y15157D01* X20547Y15153D01* Y13821D01* X20546Y13815D01* X20545Y13807D01* X20545Y13798D01* X20547Y13791D01* Y9340D01* X20546Y9346D01* X20542Y9354D01* X20530Y9378D01* X20520Y9404D01* X20513Y9430D01* X20508Y9456D01* X20505Y9483D01* X20505Y9511D01* X20507Y9538D01* X20512Y9564D01* X20519Y9590D01* X20528Y9616D01* X20540Y9640D01* X20543Y9649D01* X20545Y9657D01* X20545Y9666D01* X20544Y9674D01* X20542Y9683D01* X20538Y9690D01* X20533Y9697D01* X20526Y9703D01* X20519Y9708D01* X20511Y9711D01* X20502Y9713D01* X20494Y9714D01* X20485Y9713D01* X20477Y9710D01* X20469Y9706D01* X20462Y9701D01* X20457Y9695D01* Y11285D01* X20460Y11283D01* X20469Y11281D01* X20477Y11280D01* X20486Y11281D01* X20495Y11283D01* X20503Y11286D01* X20510Y11291D01* X20516Y11297D01* X20521Y11304D01* X20525Y11312D01* X20527Y11320D01* X20528Y11329D01* X20528Y11338D01* X20526Y11346D01* X20522Y11354D01* X20510Y11378D01* X20500Y11404D01* X20493Y11430D01* X20488Y11456D01* X20485Y11483D01* X20485Y11511D01* X20487Y11538D01* X20492Y11564D01* X20499Y11590D01* X20508Y11616D01* X20520Y11640D01* X20523Y11649D01* X20525Y11657D01* X20525Y11666D01* X20524Y11674D01* X20522Y11683D01* X20518Y11690D01* X20513Y11697D01* X20506Y11703D01* X20499Y11708D01* X20491Y11711D01* X20482Y11713D01* X20474Y11714D01* X20465Y11713D01* X20457Y11710D01* X20457Y11710D01* Y13280D01* X20457Y13280D01* X20466Y13281D01* X20475Y13283D01* X20483Y13286D01* X20490Y13291D01* X20496Y13297D01* X20501Y13304D01* X20505Y13312D01* X20507Y13320D01* X20508Y13329D01* X20508Y13338D01* X20506Y13346D01* X20502Y13354D01* X20490Y13378D01* X20480Y13404D01* X20473Y13430D01* X20468Y13456D01* X20465Y13483D01* X20465Y13511D01* X20467Y13538D01* X20472Y13564D01* X20479Y13590D01* X20488Y13616D01* X20500Y13640D01* X20503Y13649D01* X20505Y13657D01* X20505Y13666D01* X20504Y13674D01* X20502Y13683D01* X20498Y13690D01* X20493Y13697D01* X20486Y13703D01* X20479Y13708D01* X20471Y13711D01* X20462Y13713D01* X20457Y13714D01* Y15284D01* X20463Y15286D01* X20470Y15291D01* X20476Y15297D01* X20481Y15304D01* X20485Y15312D01* X20487Y15320D01* X20488Y15329D01* X20488Y15338D01* X20486Y15346D01* X20482Y15354D01* X20470Y15378D01* X20460Y15404D01* X20457Y15417D01* Y15583D01* X20459Y15590D01* X20468Y15616D01* X20480Y15640D01* X20483Y15649D01* X20485Y15657D01* X20485Y15666D01* X20484Y15674D01* X20482Y15683D01* X20478Y15690D01* X20473Y15697D01* X20466Y15703D01* X20459Y15708D01* X20457Y15709D01* Y17298D01* X20461Y17304D01* X20465Y17312D01* X20467Y17320D01* X20468Y17329D01* X20468Y17338D01* X20466Y17346D01* X20462Y17354D01* X20457Y17365D01* Y17634D01* X20460Y17640D01* X20463Y17649D01* X20465Y17657D01* X20465Y17666D01* X20464Y17674D01* X20462Y17683D01* X20458Y17690D01* X20457Y17692D01* Y23167D01* G37* G36* Y9303D02*X20459Y9299D01* X20465Y9292D01* X20473Y9287D01* X20480Y9283D01* X20489Y9281D01* X20497Y9280D01* X20506Y9281D01* X20515Y9283D01* X20523Y9286D01* X20530Y9291D01* X20536Y9297D01* X20541Y9304D01* X20545Y9312D01* X20547Y9320D01* Y7702D01* X20546Y7703D01* X20539Y7708D01* X20531Y7711D01* X20522Y7713D01* X20514Y7714D01* X20505Y7713D01* X20497Y7710D01* X20489Y7706D01* X20482Y7701D01* X20476Y7695D01* X20471Y7687D01* X20457Y7656D01* Y9303D01* G37* G36* Y7343D02*X20459Y7338D01* X20475Y7306D01* X20479Y7299D01* X20485Y7292D01* X20493Y7287D01* X20500Y7283D01* X20509Y7281D01* X20517Y7280D01* X20526Y7281D01* X20535Y7283D01* X20543Y7286D01* X20547Y7289D01* Y5712D01* X20542Y5713D01* X20534Y5714D01* X20525Y5713D01* X20517Y5710D01* X20509Y5706D01* X20502Y5701D01* X20496Y5695D01* X20491Y5687D01* X20476Y5655D01* X20463Y5621D01* X20457Y5596D01* Y7343D01* G37* G36* Y5403D02*X20465Y5372D01* X20479Y5338D01* X20495Y5306D01* X20499Y5299D01* X20505Y5292D01* X20513Y5287D01* X20520Y5283D01* X20529Y5281D01* X20537Y5280D01* X20546Y5281D01* X20547Y5281D01* Y3713D01* X20545Y3713D01* X20537Y3710D01* X20529Y3706D01* X20522Y3701D01* X20516Y3695D01* X20511Y3687D01* X20496Y3655D01* X20483Y3621D01* X20474Y3586D01* X20468Y3550D01* X20465Y3514D01* X20465Y3478D01* X20469Y3442D01* X20475Y3407D01* X20485Y3372D01* X20499Y3338D01* X20515Y3306D01* X20519Y3299D01* X20525Y3292D01* X20533Y3287D01* X20540Y3283D01* X20547Y3281D01* Y1705D01* X20542Y1701D01* X20536Y1695D01* X20531Y1687D01* X20516Y1655D01* X20503Y1621D01* X20494Y1586D01* X20488Y1550D01* X20485Y1514D01* X20485Y1478D01* X20489Y1442D01* X20495Y1407D01* X20505Y1372D01* X20519Y1338D01* X20535Y1306D01* X20539Y1299D01* X20545Y1292D01* X20547Y1291D01* Y0D01* X20457D01* Y5403D01* G37* G36* X20547Y7386D02*X20540Y7404D01* X20533Y7430D01* X20528Y7456D01* X20525Y7483D01* X20525Y7511D01* X20527Y7538D01* X20532Y7564D01* X20539Y7590D01* X20547Y7614D01* Y7386D01* G37* G36* Y5460D02*X20545Y5483D01* X20545Y5511D01* X20547Y5538D01* X20547Y5539D01* Y5460D01* G37* G36* Y40000D02*X20872D01* Y39656D01* X20870Y39661D01* X20854Y39694D01* X20850Y39701D01* X20844Y39707D01* X20836Y39712D01* X20829Y39716D01* X20820Y39718D01* X20812Y39719D01* X20803Y39719D01* X20794Y39717D01* X20786Y39713D01* X20779Y39708D01* X20773Y39702D01* X20768Y39695D01* X20764Y39687D01* X20762Y39679D01* X20761Y39670D01* X20761Y39661D01* X20763Y39653D01* X20767Y39645D01* X20779Y39621D01* X20789Y39595D01* X20796Y39569D01* X20801Y39543D01* X20804Y39516D01* X20804Y39489D01* X20802Y39462D01* X20797Y39435D01* X20790Y39409D01* X20781Y39383D01* X20769Y39359D01* X20766Y39351D01* X20764Y39342D01* X20764Y39333D01* X20765Y39325D01* X20767Y39317D01* X20771Y39309D01* X20776Y39302D01* X20783Y39296D01* X20790Y39291D01* X20798Y39288D01* X20807Y39286D01* X20815Y39285D01* X20824Y39286D01* X20832Y39289D01* X20840Y39293D01* X20847Y39298D01* X20853Y39305D01* X20858Y39312D01* X20872Y39343D01* Y37696D01* X20870Y37701D01* X20864Y37707D01* X20856Y37712D01* X20849Y37716D01* X20840Y37718D01* X20832Y37719D01* X20823Y37719D01* X20814Y37717D01* X20806Y37713D01* X20799Y37708D01* X20793Y37702D01* X20788Y37695D01* X20784Y37687D01* X20782Y37679D01* X20781Y37670D01* X20781Y37661D01* X20783Y37653D01* X20787Y37645D01* X20799Y37621D01* X20809Y37595D01* X20816Y37569D01* X20821Y37543D01* X20824Y37516D01* X20824Y37489D01* X20822Y37462D01* X20817Y37435D01* X20810Y37409D01* X20801Y37383D01* X20789Y37359D01* X20786Y37351D01* X20784Y37342D01* X20784Y37333D01* X20785Y37325D01* X20787Y37317D01* X20791Y37309D01* X20796Y37302D01* X20803Y37296D01* X20810Y37291D01* X20818Y37288D01* X20827Y37286D01* X20835Y37285D01* X20844Y37286D01* X20852Y37289D01* X20860Y37293D01* X20867Y37298D01* X20872Y37304D01* Y35714D01* X20869Y35716D01* X20860Y35718D01* X20852Y35719D01* X20843Y35719D01* X20834Y35717D01* X20826Y35713D01* X20819Y35708D01* X20813Y35702D01* X20808Y35695D01* X20804Y35687D01* X20802Y35679D01* X20801Y35670D01* X20801Y35661D01* X20803Y35653D01* X20807Y35645D01* X20819Y35621D01* X20829Y35595D01* X20836Y35569D01* X20841Y35543D01* X20844Y35516D01* X20844Y35489D01* X20842Y35462D01* X20837Y35435D01* X20830Y35409D01* X20821Y35383D01* X20809Y35359D01* X20806Y35351D01* X20804Y35342D01* X20804Y35333D01* X20805Y35325D01* X20807Y35317D01* X20811Y35309D01* X20816Y35302D01* X20823Y35296D01* X20830Y35291D01* X20838Y35288D01* X20847Y35286D01* X20855Y35285D01* X20864Y35286D01* X20872Y35289D01* X20872Y35289D01* Y33719D01* X20872Y33719D01* X20863Y33719D01* X20854Y33717D01* X20846Y33713D01* X20839Y33708D01* X20833Y33702D01* X20828Y33695D01* X20824Y33687D01* X20822Y33679D01* X20821Y33670D01* X20821Y33661D01* X20823Y33653D01* X20827Y33645D01* X20839Y33621D01* X20849Y33595D01* X20856Y33569D01* X20861Y33543D01* X20864Y33516D01* X20864Y33489D01* X20862Y33462D01* X20857Y33435D01* X20850Y33409D01* X20841Y33383D01* X20829Y33359D01* X20826Y33351D01* X20824Y33342D01* X20824Y33333D01* X20825Y33325D01* X20827Y33317D01* X20831Y33309D01* X20836Y33302D01* X20843Y33296D01* X20850Y33291D01* X20858Y33288D01* X20867Y33286D01* X20872Y33286D01* Y31716D01* X20866Y31713D01* X20859Y31708D01* X20853Y31702D01* X20848Y31695D01* X20844Y31687D01* X20842Y31679D01* X20841Y31670D01* X20841Y31661D01* X20843Y31653D01* X20847Y31645D01* X20859Y31621D01* X20869Y31595D01* X20872Y31583D01* Y31416D01* X20870Y31409D01* X20861Y31383D01* X20849Y31359D01* X20846Y31351D01* X20844Y31342D01* X20844Y31333D01* X20845Y31325D01* X20847Y31317D01* X20851Y31309D01* X20856Y31302D01* X20863Y31296D01* X20870Y31291D01* X20872Y31290D01* Y29701D01* X20868Y29695D01* X20864Y29687D01* X20862Y29679D01* X20861Y29670D01* X20861Y29661D01* X20863Y29653D01* X20867Y29645D01* X20872Y29634D01* Y29365D01* X20869Y29359D01* X20866Y29351D01* X20864Y29342D01* X20864Y29333D01* X20865Y29325D01* X20867Y29317D01* X20871Y29309D01* X20872Y29307D01* Y23833D01* X20871Y23835D01* X20866Y23842D01* X20860Y23848D01* X20852Y23853D01* X20820Y23868D01* X20786Y23881D01* X20751Y23890D01* X20715Y23896D01* X20679Y23899D01* X20643Y23899D01* X20607Y23895D01* X20571Y23889D01* X20547Y23882D01* Y25112D01* X20558Y25109D01* X20594Y25103D01* X20630Y25100D01* X20666Y25100D01* X20702Y25104D01* X20738Y25111D01* X20772Y25121D01* X20806Y25134D01* X20838Y25150D01* X20846Y25155D01* X20852Y25161D01* X20857Y25168D01* X20861Y25175D01* X20863Y25184D01* X20864Y25193D01* X20864Y25201D01* X20861Y25210D01* X20858Y25218D01* X20853Y25225D01* X20847Y25231D01* X20840Y25236D01* X20832Y25240D01* X20824Y25243D01* X20815Y25243D01* X20806Y25243D01* X20798Y25241D01* X20790Y25237D01* X20766Y25225D01* X20740Y25215D01* X20714Y25208D01* X20688Y25203D01* X20661Y25200D01* X20634Y25200D01* X20607Y25202D01* X20580Y25207D01* X20554Y25214D01* X20547Y25216D01* Y25783D01* X20549Y25784D01* X20575Y25791D01* X20601Y25796D01* X20628Y25799D01* X20655Y25799D01* X20682Y25797D01* X20709Y25793D01* X20735Y25785D01* X20761Y25776D01* X20785Y25764D01* X20793Y25761D01* X20802Y25759D01* X20811Y25759D01* X20819Y25760D01* X20828Y25762D01* X20835Y25766D01* X20842Y25772D01* X20848Y25778D01* X20853Y25785D01* X20856Y25793D01* X20858Y25802D01* X20859Y25810D01* X20858Y25819D01* X20855Y25827D01* X20851Y25835D01* X20846Y25842D01* X20840Y25848D01* X20832Y25853D01* X20800Y25868D01* X20766Y25881D01* X20731Y25890D01* X20695Y25896D01* X20659Y25899D01* X20623Y25899D01* X20587Y25895D01* X20551Y25889D01* X20547Y25887D01* Y27107D01* X20574Y27103D01* X20610Y27100D01* X20646Y27100D01* X20682Y27104D01* X20718Y27111D01* X20752Y27121D01* X20786Y27134D01* X20818Y27150D01* X20826Y27155D01* X20832Y27161D01* X20837Y27168D01* X20841Y27175D01* X20843Y27184D01* X20844Y27193D01* X20844Y27201D01* X20841Y27210D01* X20838Y27218D01* X20833Y27225D01* X20827Y27231D01* X20820Y27236D01* X20812Y27240D01* X20804Y27243D01* X20795Y27243D01* X20786Y27243D01* X20778Y27241D01* X20770Y27237D01* X20746Y27225D01* X20720Y27215D01* X20694Y27208D01* X20668Y27203D01* X20641Y27200D01* X20614Y27200D01* X20587Y27202D01* X20560Y27207D01* X20547Y27210D01* Y27789D01* X20555Y27791D01* X20581Y27796D01* X20608Y27799D01* X20635Y27799D01* X20662Y27797D01* X20689Y27793D01* X20715Y27785D01* X20741Y27776D01* X20765Y27764D01* X20773Y27761D01* X20782Y27759D01* X20791Y27759D01* X20799Y27760D01* X20808Y27762D01* X20815Y27766D01* X20822Y27772D01* X20828Y27778D01* X20833Y27785D01* X20836Y27793D01* X20838Y27802D01* X20839Y27810D01* X20838Y27819D01* X20835Y27827D01* X20831Y27835D01* X20826Y27842D01* X20820Y27848D01* X20812Y27853D01* X20780Y27868D01* X20746Y27881D01* X20711Y27890D01* X20675Y27896D01* X20639Y27899D01* X20603Y27899D01* X20567Y27895D01* X20547Y27892D01* Y29104D01* X20554Y29103D01* X20590Y29100D01* X20626Y29100D01* X20662Y29104D01* X20698Y29111D01* X20732Y29121D01* X20766Y29134D01* X20798Y29150D01* X20806Y29155D01* X20812Y29161D01* X20817Y29168D01* X20821Y29175D01* X20823Y29184D01* X20824Y29193D01* X20824Y29201D01* X20821Y29210D01* X20818Y29218D01* X20813Y29225D01* X20807Y29231D01* X20800Y29236D01* X20792Y29240D01* X20784Y29243D01* X20775Y29243D01* X20766Y29243D01* X20758Y29241D01* X20750Y29237D01* X20726Y29225D01* X20700Y29215D01* X20674Y29208D01* X20648Y29203D01* X20621Y29200D01* X20594Y29200D01* X20567Y29202D01* X20547Y29205D01* Y29794D01* X20561Y29796D01* X20588Y29799D01* X20615Y29799D01* X20642Y29797D01* X20669Y29793D01* X20695Y29785D01* X20721Y29776D01* X20745Y29764D01* X20753Y29761D01* X20762Y29759D01* X20771Y29759D01* X20779Y29760D01* X20788Y29762D01* X20795Y29766D01* X20802Y29772D01* X20808Y29778D01* X20813Y29785D01* X20816Y29793D01* X20818Y29802D01* X20819Y29810D01* X20818Y29819D01* X20815Y29827D01* X20811Y29835D01* X20806Y29842D01* X20800Y29848D01* X20792Y29853D01* X20760Y29868D01* X20726Y29881D01* X20691Y29890D01* X20655Y29896D01* X20619Y29899D01* X20583Y29899D01* X20547Y29895D01* Y31102D01* X20570Y31100D01* X20606Y31100D01* X20642Y31104D01* X20678Y31111D01* X20712Y31121D01* X20746Y31134D01* X20778Y31150D01* X20786Y31155D01* X20792Y31161D01* X20797Y31168D01* X20801Y31175D01* X20803Y31184D01* X20804Y31193D01* X20804Y31201D01* X20801Y31210D01* X20798Y31218D01* X20793Y31225D01* X20787Y31231D01* X20780Y31236D01* X20772Y31240D01* X20764Y31243D01* X20755Y31243D01* X20746Y31243D01* X20738Y31241D01* X20730Y31237D01* X20706Y31225D01* X20680Y31215D01* X20654Y31208D01* X20628Y31203D01* X20601Y31200D01* X20574Y31200D01* X20547Y31202D01* Y31797D01* X20568Y31799D01* X20595Y31799D01* X20622Y31797D01* X20649Y31793D01* X20675Y31785D01* X20701Y31776D01* X20725Y31764D01* X20733Y31761D01* X20742Y31759D01* X20751Y31759D01* X20759Y31760D01* X20768Y31762D01* X20775Y31766D01* X20782Y31772D01* X20788Y31778D01* X20793Y31785D01* X20796Y31793D01* X20798Y31802D01* X20799Y31810D01* X20798Y31819D01* X20795Y31827D01* X20791Y31835D01* X20786Y31842D01* X20780Y31848D01* X20772Y31853D01* X20740Y31868D01* X20706Y31881D01* X20671Y31890D01* X20635Y31896D01* X20599Y31899D01* X20563Y31899D01* X20547Y31897D01* Y33100D01* X20550Y33100D01* X20586Y33100D01* X20622Y33104D01* X20658Y33111D01* X20692Y33121D01* X20726Y33134D01* X20758Y33150D01* X20766Y33155D01* X20772Y33161D01* X20777Y33168D01* X20781Y33175D01* X20783Y33184D01* X20784Y33193D01* X20784Y33201D01* X20781Y33210D01* X20778Y33218D01* X20773Y33225D01* X20767Y33231D01* X20760Y33236D01* X20752Y33240D01* X20744Y33243D01* X20735Y33243D01* X20726Y33243D01* X20718Y33241D01* X20710Y33237D01* X20686Y33225D01* X20660Y33215D01* X20634Y33208D01* X20608Y33203D01* X20581Y33200D01* X20554Y33200D01* X20547Y33200D01* Y33799D01* X20548Y33799D01* X20575Y33799D01* X20602Y33797D01* X20629Y33793D01* X20655Y33785D01* X20681Y33776D01* X20705Y33764D01* X20713Y33761D01* X20722Y33759D01* X20731Y33759D01* X20739Y33760D01* X20748Y33762D01* X20755Y33766D01* X20762Y33772D01* X20768Y33778D01* X20773Y33785D01* X20776Y33793D01* X20778Y33802D01* X20779Y33810D01* X20778Y33819D01* X20775Y33827D01* X20771Y33835D01* X20766Y33842D01* X20760Y33848D01* X20752Y33853D01* X20720Y33868D01* X20686Y33881D01* X20651Y33890D01* X20615Y33896D01* X20579Y33899D01* X20547Y33899D01* Y35100D01* X20566Y35100D01* X20602Y35104D01* X20638Y35111D01* X20672Y35121D01* X20706Y35134D01* X20738Y35150D01* X20746Y35155D01* X20752Y35161D01* X20757Y35168D01* X20761Y35175D01* X20763Y35184D01* X20764Y35193D01* X20764Y35201D01* X20761Y35210D01* X20758Y35218D01* X20753Y35225D01* X20747Y35231D01* X20740Y35236D01* X20732Y35240D01* X20724Y35243D01* X20715Y35243D01* X20706Y35243D01* X20698Y35241D01* X20690Y35237D01* X20666Y35225D01* X20640Y35215D01* X20614Y35208D01* X20588Y35203D01* X20561Y35200D01* X20547Y35200D01* Y35799D01* X20555Y35799D01* X20582Y35797D01* X20609Y35793D01* X20635Y35785D01* X20661Y35776D01* X20685Y35764D01* X20693Y35761D01* X20702Y35759D01* X20711Y35759D01* X20719Y35760D01* X20728Y35762D01* X20735Y35766D01* X20742Y35772D01* X20748Y35778D01* X20753Y35785D01* X20756Y35793D01* X20758Y35802D01* X20759Y35810D01* X20758Y35819D01* X20755Y35827D01* X20751Y35835D01* X20746Y35842D01* X20740Y35848D01* X20732Y35853D01* X20700Y35868D01* X20666Y35881D01* X20631Y35890D01* X20595Y35896D01* X20559Y35899D01* X20547Y35899D01* Y37100D01* X20582Y37104D01* X20618Y37111D01* X20652Y37121D01* X20686Y37134D01* X20718Y37150D01* X20726Y37155D01* X20732Y37161D01* X20737Y37168D01* X20741Y37175D01* X20743Y37184D01* X20744Y37193D01* X20744Y37201D01* X20741Y37210D01* X20738Y37218D01* X20733Y37225D01* X20727Y37231D01* X20720Y37236D01* X20712Y37240D01* X20704Y37243D01* X20695Y37243D01* X20686Y37243D01* X20678Y37241D01* X20670Y37237D01* X20646Y37225D01* X20620Y37215D01* X20594Y37208D01* X20568Y37203D01* X20547Y37201D01* Y37798D01* X20562Y37797D01* X20589Y37793D01* X20615Y37785D01* X20641Y37776D01* X20665Y37764D01* X20673Y37761D01* X20682Y37759D01* X20691Y37759D01* X20699Y37760D01* X20708Y37762D01* X20715Y37766D01* X20722Y37772D01* X20728Y37778D01* X20733Y37785D01* X20736Y37793D01* X20738Y37802D01* X20739Y37810D01* X20738Y37819D01* X20735Y37827D01* X20731Y37835D01* X20726Y37842D01* X20720Y37848D01* X20712Y37853D01* X20680Y37868D01* X20646Y37881D01* X20611Y37890D01* X20575Y37896D01* X20547Y37899D01* Y39102D01* X20562Y39104D01* X20598Y39111D01* X20632Y39121D01* X20666Y39134D01* X20698Y39150D01* X20706Y39155D01* X20712Y39161D01* X20717Y39168D01* X20721Y39175D01* X20723Y39184D01* X20724Y39193D01* X20724Y39201D01* X20721Y39210D01* X20718Y39218D01* X20713Y39225D01* X20707Y39231D01* X20700Y39236D01* X20692Y39240D01* X20684Y39243D01* X20675Y39243D01* X20666Y39243D01* X20658Y39241D01* X20650Y39237D01* X20626Y39225D01* X20600Y39215D01* X20574Y39208D01* X20548Y39203D01* X20547D01* Y39796D01* X20569Y39793D01* X20595Y39785D01* X20621Y39776D01* X20645Y39764D01* X20653Y39761D01* X20662Y39759D01* X20671Y39759D01* X20679Y39760D01* X20688Y39762D01* X20695Y39766D01* X20702Y39772D01* X20708Y39778D01* X20713Y39785D01* X20716Y39793D01* X20718Y39802D01* X20719Y39810D01* X20718Y39819D01* X20715Y39827D01* X20711Y39835D01* X20706Y39842D01* X20700Y39848D01* X20692Y39853D01* X20660Y39868D01* X20626Y39881D01* X20591Y39890D01* X20555Y39896D01* X20547Y39897D01* Y40000D01* G37* G36* X20872Y0D02*X20547D01* Y1291D01* X20553Y1287D01* X20560Y1283D01* X20569Y1281D01* X20577Y1280D01* X20586Y1281D01* X20595Y1283D01* X20603Y1286D01* X20610Y1291D01* X20616Y1297D01* X20621Y1304D01* X20625Y1312D01* X20627Y1320D01* X20628Y1329D01* X20628Y1338D01* X20626Y1346D01* X20622Y1354D01* X20610Y1378D01* X20600Y1404D01* X20593Y1430D01* X20588Y1456D01* X20585Y1483D01* X20585Y1511D01* X20587Y1538D01* X20592Y1564D01* X20599Y1590D01* X20608Y1616D01* X20620Y1640D01* X20623Y1649D01* X20625Y1657D01* X20625Y1666D01* X20624Y1674D01* X20622Y1683D01* X20618Y1690D01* X20613Y1697D01* X20606Y1703D01* X20599Y1708D01* X20591Y1711D01* X20582Y1713D01* X20574Y1714D01* X20565Y1713D01* X20557Y1710D01* X20549Y1706D01* X20547Y1705D01* Y3281D01* X20549Y3281D01* X20557Y3280D01* X20566Y3281D01* X20575Y3283D01* X20583Y3286D01* X20590Y3291D01* X20596Y3297D01* X20601Y3304D01* X20605Y3312D01* X20607Y3320D01* X20608Y3329D01* X20608Y3338D01* X20606Y3346D01* X20602Y3354D01* X20590Y3378D01* X20580Y3404D01* X20573Y3430D01* X20568Y3456D01* X20565Y3483D01* X20565Y3511D01* X20567Y3538D01* X20572Y3564D01* X20579Y3590D01* X20588Y3616D01* X20600Y3640D01* X20603Y3649D01* X20605Y3657D01* X20605Y3666D01* X20604Y3674D01* X20602Y3683D01* X20598Y3690D01* X20593Y3697D01* X20586Y3703D01* X20579Y3708D01* X20571Y3711D01* X20562Y3713D01* X20554Y3714D01* X20547Y3713D01* Y5281D01* X20555Y5283D01* X20563Y5286D01* X20570Y5291D01* X20576Y5297D01* X20581Y5304D01* X20585Y5312D01* X20587Y5320D01* X20588Y5329D01* X20588Y5338D01* X20586Y5346D01* X20582Y5354D01* X20570Y5378D01* X20560Y5404D01* X20553Y5430D01* X20548Y5456D01* X20547Y5460D01* Y5539D01* X20552Y5564D01* X20559Y5590D01* X20568Y5616D01* X20580Y5640D01* X20583Y5649D01* X20585Y5657D01* X20585Y5666D01* X20584Y5674D01* X20582Y5683D01* X20578Y5690D01* X20573Y5697D01* X20566Y5703D01* X20559Y5708D01* X20551Y5711D01* X20547Y5712D01* Y7289D01* X20550Y7291D01* X20556Y7297D01* X20561Y7304D01* X20565Y7312D01* X20567Y7320D01* X20568Y7329D01* X20568Y7338D01* X20566Y7346D01* X20562Y7354D01* X20550Y7378D01* X20547Y7386D01* Y7614D01* X20548Y7616D01* X20560Y7640D01* X20563Y7649D01* X20565Y7657D01* X20565Y7666D01* X20564Y7674D01* X20562Y7683D01* X20558Y7690D01* X20553Y7697D01* X20547Y7702D01* Y9320D01* X20547Y9320D01* X20548Y9329D01* X20548Y9338D01* X20547Y9340D01* Y13791D01* X20548Y13790D01* X20551Y13782D01* X20556Y13774D01* X20562Y13768D01* X20569Y13763D01* X20577Y13759D01* X20585Y13757D01* X20594Y13756D01* X20603Y13756D01* X20611Y13758D01* X20619Y13762D01* X20643Y13774D01* X20669Y13784D01* X20695Y13791D01* X20721Y13796D01* X20748Y13799D01* X20775Y13799D01* X20802Y13797D01* X20829Y13793D01* X20855Y13785D01* X20872Y13779D01* Y13220D01* X20860Y13215D01* X20834Y13208D01* X20808Y13203D01* X20781Y13200D01* X20754Y13200D01* X20727Y13202D01* X20700Y13207D01* X20674Y13214D01* X20648Y13223D01* X20624Y13235D01* X20616Y13238D01* X20607Y13240D01* X20598Y13240D01* X20590Y13239D01* X20581Y13237D01* X20574Y13233D01* X20567Y13228D01* X20561Y13221D01* X20556Y13214D01* X20553Y13206D01* X20551Y13197D01* X20550Y13189D01* X20551Y13180D01* X20554Y13172D01* X20558Y13164D01* X20563Y13157D01* X20569Y13151D01* X20577Y13146D01* X20609Y13131D01* X20643Y13118D01* X20678Y13109D01* X20714Y13103D01* X20750Y13100D01* X20786Y13100D01* X20822Y13104D01* X20858Y13111D01* X20872Y13115D01* Y11890D01* X20871Y11890D01* X20835Y11896D01* X20799Y11899D01* X20763Y11899D01* X20727Y11895D01* X20691Y11889D01* X20657Y11879D01* X20623Y11866D01* X20591Y11849D01* X20583Y11845D01* X20577Y11839D01* X20572Y11832D01* X20568Y11824D01* X20566Y11815D01* X20565Y11807D01* X20565Y11798D01* X20568Y11790D01* X20571Y11782D01* X20576Y11774D01* X20582Y11768D01* X20589Y11763D01* X20597Y11759D01* X20605Y11757D01* X20614Y11756D01* X20623Y11756D01* X20631Y11758D01* X20639Y11762D01* X20663Y11774D01* X20689Y11784D01* X20715Y11791D01* X20741Y11796D01* X20768Y11799D01* X20795Y11799D01* X20822Y11797D01* X20849Y11793D01* X20872Y11786D01* Y11213D01* X20854Y11208D01* X20828Y11203D01* X20801Y11200D01* X20774Y11200D01* X20747Y11202D01* X20720Y11207D01* X20694Y11214D01* X20668Y11223D01* X20644Y11235D01* X20636Y11238D01* X20627Y11240D01* X20618Y11240D01* X20610Y11239D01* X20601Y11237D01* X20594Y11233D01* X20587Y11228D01* X20581Y11221D01* X20576Y11214D01* X20573Y11206D01* X20571Y11197D01* X20570Y11189D01* X20571Y11180D01* X20574Y11172D01* X20578Y11164D01* X20583Y11157D01* X20589Y11151D01* X20597Y11146D01* X20629Y11131D01* X20663Y11118D01* X20698Y11109D01* X20734Y11103D01* X20770Y11100D01* X20806Y11100D01* X20842Y11104D01* X20872Y11110D01* Y9893D01* X20855Y9896D01* X20819Y9899D01* X20783Y9899D01* X20747Y9895D01* X20711Y9889D01* X20677Y9879D01* X20643Y9866D01* X20611Y9849D01* X20603Y9845D01* X20597Y9839D01* X20592Y9832D01* X20588Y9824D01* X20586Y9815D01* X20585Y9807D01* X20585Y9798D01* X20588Y9790D01* X20591Y9782D01* X20596Y9774D01* X20602Y9768D01* X20609Y9763D01* X20617Y9759D01* X20625Y9757D01* X20634Y9756D01* X20643Y9756D01* X20651Y9758D01* X20659Y9762D01* X20683Y9774D01* X20709Y9784D01* X20735Y9791D01* X20761Y9796D01* X20788Y9799D01* X20815Y9799D01* X20842Y9797D01* X20869Y9793D01* X20872Y9792D01* Y9207D01* X20848Y9203D01* X20821Y9200D01* X20794Y9200D01* X20767Y9202D01* X20740Y9207D01* X20714Y9214D01* X20688Y9223D01* X20664Y9235D01* X20656Y9238D01* X20647Y9240D01* X20638Y9240D01* X20630Y9239D01* X20621Y9237D01* X20614Y9233D01* X20607Y9228D01* X20601Y9221D01* X20596Y9214D01* X20593Y9206D01* X20591Y9197D01* X20590Y9189D01* X20591Y9180D01* X20594Y9172D01* X20598Y9164D01* X20603Y9157D01* X20609Y9151D01* X20617Y9146D01* X20649Y9131D01* X20683Y9118D01* X20718Y9109D01* X20754Y9103D01* X20790Y9100D01* X20826Y9100D01* X20862Y9104D01* X20872Y9106D01* Y7897D01* X20839Y7899D01* X20803Y7899D01* X20767Y7895D01* X20731Y7889D01* X20697Y7879D01* X20663Y7866D01* X20631Y7849D01* X20623Y7845D01* X20617Y7839D01* X20612Y7832D01* X20608Y7824D01* X20606Y7815D01* X20605Y7807D01* X20605Y7798D01* X20608Y7790D01* X20611Y7782D01* X20616Y7774D01* X20622Y7768D01* X20629Y7763D01* X20637Y7759D01* X20645Y7757D01* X20654Y7756D01* X20663Y7756D01* X20671Y7758D01* X20679Y7762D01* X20703Y7774D01* X20729Y7784D01* X20755Y7791D01* X20781Y7796D01* X20808Y7799D01* X20835Y7799D01* X20862Y7797D01* X20872Y7795D01* Y7204D01* X20868Y7203D01* X20841Y7200D01* X20814Y7200D01* X20787Y7202D01* X20760Y7207D01* X20734Y7214D01* X20708Y7223D01* X20684Y7235D01* X20676Y7238D01* X20667Y7240D01* X20658Y7240D01* X20650Y7239D01* X20641Y7237D01* X20634Y7233D01* X20627Y7228D01* X20621Y7221D01* X20616Y7214D01* X20613Y7206D01* X20611Y7197D01* X20610Y7189D01* X20611Y7180D01* X20614Y7172D01* X20618Y7164D01* X20623Y7157D01* X20629Y7151D01* X20637Y7146D01* X20669Y7131D01* X20703Y7118D01* X20738Y7109D01* X20774Y7103D01* X20810Y7100D01* X20846Y7100D01* X20872Y7103D01* Y5898D01* X20859Y5899D01* X20823Y5899D01* X20787Y5895D01* X20751Y5889D01* X20717Y5879D01* X20683Y5866D01* X20651Y5849D01* X20643Y5845D01* X20637Y5839D01* X20632Y5832D01* X20628Y5824D01* X20626Y5815D01* X20625Y5807D01* X20625Y5798D01* X20628Y5790D01* X20631Y5782D01* X20636Y5774D01* X20642Y5768D01* X20649Y5763D01* X20657Y5759D01* X20665Y5757D01* X20674Y5756D01* X20683Y5756D01* X20691Y5758D01* X20699Y5762D01* X20723Y5774D01* X20749Y5784D01* X20775Y5791D01* X20801Y5796D01* X20828Y5799D01* X20855Y5799D01* X20872Y5798D01* Y5201D01* X20861Y5200D01* X20834Y5200D01* X20807Y5202D01* X20780Y5207D01* X20754Y5214D01* X20728Y5223D01* X20704Y5235D01* X20696Y5238D01* X20687Y5240D01* X20678Y5240D01* X20670Y5239D01* X20661Y5237D01* X20654Y5233D01* X20647Y5228D01* X20641Y5221D01* X20636Y5214D01* X20633Y5206D01* X20631Y5197D01* X20630Y5189D01* X20631Y5180D01* X20634Y5172D01* X20638Y5164D01* X20643Y5157D01* X20649Y5151D01* X20657Y5146D01* X20689Y5131D01* X20723Y5118D01* X20758Y5109D01* X20794Y5103D01* X20830Y5100D01* X20866Y5100D01* X20872Y5101D01* Y3899D01* X20843Y3899D01* X20807Y3895D01* X20771Y3889D01* X20737Y3879D01* X20703Y3866D01* X20671Y3849D01* X20663Y3845D01* X20657Y3839D01* X20652Y3832D01* X20648Y3824D01* X20646Y3815D01* X20645Y3807D01* X20645Y3798D01* X20648Y3790D01* X20651Y3782D01* X20656Y3774D01* X20662Y3768D01* X20669Y3763D01* X20677Y3759D01* X20685Y3757D01* X20694Y3756D01* X20703Y3756D01* X20711Y3758D01* X20719Y3762D01* X20743Y3774D01* X20769Y3784D01* X20795Y3791D01* X20821Y3796D01* X20848Y3799D01* X20872Y3799D01* Y3200D01* X20854Y3200D01* X20827Y3202D01* X20800Y3207D01* X20774Y3214D01* X20748Y3223D01* X20724Y3235D01* X20716Y3238D01* X20707Y3240D01* X20698Y3240D01* X20690Y3239D01* X20681Y3237D01* X20674Y3233D01* X20667Y3228D01* X20661Y3221D01* X20656Y3214D01* X20653Y3206D01* X20651Y3197D01* X20650Y3189D01* X20651Y3180D01* X20654Y3172D01* X20658Y3164D01* X20663Y3157D01* X20669Y3151D01* X20677Y3146D01* X20709Y3131D01* X20743Y3118D01* X20778Y3109D01* X20814Y3103D01* X20850Y3100D01* X20872Y3100D01* Y1899D01* X20863Y1899D01* X20827Y1895D01* X20791Y1889D01* X20757Y1879D01* X20723Y1866D01* X20691Y1849D01* X20683Y1845D01* X20677Y1839D01* X20672Y1832D01* X20668Y1824D01* X20666Y1815D01* X20665Y1807D01* X20665Y1798D01* X20668Y1790D01* X20671Y1782D01* X20676Y1774D01* X20682Y1768D01* X20689Y1763D01* X20697Y1759D01* X20705Y1757D01* X20714Y1756D01* X20723Y1756D01* X20731Y1758D01* X20739Y1762D01* X20763Y1774D01* X20789Y1784D01* X20815Y1791D01* X20841Y1796D01* X20868Y1799D01* X20872D01* Y1200D01* X20847Y1202D01* X20820Y1207D01* X20794Y1214D01* X20768Y1223D01* X20744Y1235D01* X20736Y1238D01* X20727Y1240D01* X20718Y1240D01* X20710Y1239D01* X20701Y1237D01* X20694Y1233D01* X20687Y1228D01* X20681Y1221D01* X20676Y1214D01* X20673Y1206D01* X20671Y1197D01* X20670Y1189D01* X20671Y1180D01* X20674Y1172D01* X20678Y1164D01* X20683Y1157D01* X20689Y1151D01* X20697Y1146D01* X20729Y1131D01* X20763Y1118D01* X20798Y1109D01* X20834Y1103D01* X20870Y1100D01* X20872D01* Y0D01* G37* G36* Y13884D02*X20851Y13890D01* X20815Y13896D01* X20779Y13899D01* X20743Y13899D01* X20707Y13895D01* X20671Y13889D01* X20637Y13879D01* X20603Y13866D01* X20571Y13849D01* X20563Y13845D01* X20557Y13839D01* X20552Y13832D01* X20548Y13824D01* X20547Y13821D01* Y15153D01* X20549Y15151D01* X20557Y15146D01* X20589Y15131D01* X20623Y15118D01* X20658Y15109D01* X20694Y15103D01* X20730Y15100D01* X20766Y15100D01* X20802Y15104D01* X20838Y15111D01* X20872Y15121D01* X20872D01* Y13884D01* G37* G36* Y15229D02*X20866Y15225D01* X20840Y15215D01* X20814Y15208D01* X20788Y15203D01* X20761Y15200D01* X20734Y15200D01* X20707Y15202D01* X20680Y15207D01* X20654Y15214D01* X20628Y15223D01* X20604Y15235D01* X20596Y15238D01* X20587Y15240D01* X20578Y15240D01* X20570Y15239D01* X20561Y15237D01* X20554Y15233D01* X20547Y15228D01* Y15764D01* X20549Y15763D01* X20557Y15759D01* X20565Y15757D01* X20574Y15756D01* X20583Y15756D01* X20591Y15758D01* X20599Y15762D01* X20623Y15774D01* X20649Y15784D01* X20675Y15791D01* X20701Y15796D01* X20728Y15799D01* X20755Y15799D01* X20782Y15797D01* X20809Y15793D01* X20835Y15785D01* X20861Y15776D01* X20872Y15771D01* Y15229D01* G37* G36* Y15878D02*X20866Y15881D01* X20831Y15890D01* X20795Y15896D01* X20759Y15899D01* X20723Y15899D01* X20687Y15895D01* X20651Y15889D01* X20617Y15879D01* X20583Y15866D01* X20551Y15849D01* X20547Y15847D01* Y17141D01* X20569Y17131D01* X20603Y17118D01* X20638Y17109D01* X20674Y17103D01* X20710Y17100D01* X20746Y17100D01* X20782Y17104D01* X20818Y17111D01* X20852Y17121D01* X20872Y17128D01* Y15878D01* G37* G36* Y17238D02*X20870Y17237D01* X20846Y17225D01* X20820Y17215D01* X20794Y17208D01* X20768Y17203D01* X20741Y17200D01* X20714Y17200D01* X20687Y17202D01* X20660Y17207D01* X20634Y17214D01* X20608Y17223D01* X20584Y17235D01* X20576Y17238D01* X20567Y17240D01* X20558Y17240D01* X20550Y17239D01* X20547Y17239D01* Y17756D01* X20554Y17756D01* X20563Y17756D01* X20571Y17758D01* X20579Y17762D01* X20603Y17774D01* X20629Y17784D01* X20655Y17791D01* X20681Y17796D01* X20708Y17799D01* X20735Y17799D01* X20762Y17797D01* X20789Y17793D01* X20815Y17785D01* X20841Y17776D01* X20865Y17764D01* X20872Y17762D01* Y17238D01* G37* G36* Y17871D02*X20846Y17881D01* X20811Y17890D01* X20775Y17896D01* X20739Y17899D01* X20703Y17899D01* X20667Y17895D01* X20631Y17889D01* X20597Y17879D01* X20563Y17866D01* X20547Y17858D01* Y19132D01* X20549Y19131D01* X20583Y19118D01* X20618Y19109D01* X20654Y19103D01* X20690Y19100D01* X20726Y19100D01* X20762Y19104D01* X20798Y19111D01* X20832Y19121D01* X20866Y19134D01* X20872Y19137D01* Y17871D01* G37* G36* Y19243D02*X20866Y19243D01* X20858Y19241D01* X20850Y19237D01* X20826Y19225D01* X20800Y19215D01* X20774Y19208D01* X20748Y19203D01* X20721Y19200D01* X20694Y19200D01* X20667Y19202D01* X20640Y19207D01* X20614Y19214D01* X20588Y19223D01* X20564Y19235D01* X20556Y19238D01* X20547Y19240D01* Y19757D01* X20551Y19758D01* X20559Y19762D01* X20583Y19774D01* X20609Y19784D01* X20635Y19791D01* X20661Y19796D01* X20688Y19799D01* X20715Y19799D01* X20742Y19797D01* X20769Y19793D01* X20795Y19785D01* X20821Y19776D01* X20845Y19764D01* X20853Y19761D01* X20862Y19759D01* X20871Y19759D01* X20872Y19759D01* Y19243D01* G37* G36* Y19862D02*X20860Y19868D01* X20826Y19881D01* X20791Y19890D01* X20755Y19896D01* X20719Y19899D01* X20683Y19899D01* X20647Y19895D01* X20611Y19889D01* X20577Y19879D01* X20547Y19867D01* Y21124D01* X20563Y21118D01* X20598Y21109D01* X20634Y21103D01* X20670Y21100D01* X20706Y21100D01* X20742Y21104D01* X20778Y21111D01* X20812Y21121D01* X20846Y21134D01* X20872Y21147D01* Y19862D01* G37* G36* Y21240D02*X20872Y21240D01* X20864Y21243D01* X20855Y21243D01* X20846Y21243D01* X20838Y21241D01* X20830Y21237D01* X20806Y21225D01* X20780Y21215D01* X20754Y21208D01* X20728Y21203D01* X20701Y21200D01* X20674Y21200D01* X20647Y21202D01* X20620Y21207D01* X20594Y21214D01* X20568Y21223D01* X20547Y21233D01* Y21766D01* X20563Y21774D01* X20589Y21784D01* X20615Y21791D01* X20641Y21796D01* X20668Y21799D01* X20695Y21799D01* X20722Y21797D01* X20749Y21793D01* X20775Y21785D01* X20801Y21776D01* X20825Y21764D01* X20833Y21761D01* X20842Y21759D01* X20851Y21759D01* X20859Y21760D01* X20868Y21762D01* X20872Y21765D01* Y21240D01* G37* G36* Y21853D02*X20872Y21853D01* X20840Y21868D01* X20806Y21881D01* X20771Y21890D01* X20735Y21896D01* X20699Y21899D01* X20663Y21899D01* X20627Y21895D01* X20591Y21889D01* X20557Y21879D01* X20547Y21875D01* Y23117D01* X20578Y23109D01* X20614Y23103D01* X20650Y23100D01* X20686Y23100D01* X20722Y23104D01* X20758Y23111D01* X20792Y23121D01* X20826Y23134D01* X20858Y23150D01* X20866Y23155D01* X20872Y23161D01* X20872Y23161D01* Y21853D01* G37* G36* Y23225D02*X20867Y23231D01* X20860Y23236D01* X20852Y23240D01* X20844Y23243D01* X20835Y23243D01* X20826Y23243D01* X20818Y23241D01* X20810Y23237D01* X20786Y23225D01* X20760Y23215D01* X20734Y23208D01* X20708Y23203D01* X20681Y23200D01* X20654Y23200D01* X20627Y23202D01* X20600Y23207D01* X20574Y23214D01* X20548Y23223D01* X20547Y23223D01* Y23776D01* X20569Y23784D01* X20595Y23791D01* X20621Y23796D01* X20648Y23799D01* X20675Y23799D01* X20702Y23797D01* X20729Y23793D01* X20755Y23785D01* X20781Y23776D01* X20805Y23764D01* X20813Y23761D01* X20822Y23759D01* X20831Y23759D01* X20839Y23760D01* X20848Y23762D01* X20855Y23766D01* X20862Y23772D01* X20868Y23778D01* X20872Y23784D01* Y23225D01* G37* G36* Y40000D02*X20952D01* Y33596D01* X20944Y33627D01* X20930Y33661D01* X20914Y33694D01* X20910Y33701D01* X20904Y33707D01* X20896Y33712D01* X20889Y33716D01* X20880Y33718D01* X20872Y33719D01* Y35289D01* X20880Y35293D01* X20887Y35298D01* X20893Y35305D01* X20898Y35312D01* X20913Y35344D01* X20926Y35378D01* X20935Y35413D01* X20941Y35449D01* X20944Y35485D01* X20944Y35521D01* X20940Y35557D01* X20934Y35593D01* X20924Y35627D01* X20910Y35661D01* X20894Y35694D01* X20890Y35701D01* X20884Y35707D01* X20876Y35712D01* X20872Y35714D01* Y37304D01* X20873Y37305D01* X20878Y37312D01* X20893Y37344D01* X20906Y37378D01* X20915Y37413D01* X20921Y37449D01* X20924Y37485D01* X20924Y37521D01* X20920Y37557D01* X20914Y37593D01* X20904Y37627D01* X20890Y37661D01* X20874Y37694D01* X20872Y37696D01* Y39343D01* X20873Y39344D01* X20886Y39378D01* X20895Y39413D01* X20901Y39449D01* X20904Y39485D01* X20904Y39521D01* X20900Y39557D01* X20894Y39593D01* X20884Y39627D01* X20872Y39656D01* Y40000D01* G37* G36* X20952Y0D02*X20872D01* Y1100D01* X20906Y1100D01* X20942Y1104D01* X20952Y1106D01* Y0D01* G37* G36* Y1207D02*X20928Y1203D01* X20901Y1200D01* X20874Y1200D01* X20872Y1200D01* Y1799D01* X20895Y1799D01* X20922Y1797D01* X20949Y1793D01* X20952Y1792D01* Y1207D01* G37* G36* Y1893D02*X20935Y1896D01* X20899Y1899D01* X20872Y1899D01* Y3100D01* X20886Y3100D01* X20922Y3104D01* X20952Y3110D01* Y1893D01* G37* G36* Y3213D02*X20934Y3208D01* X20908Y3203D01* X20881Y3200D01* X20872Y3200D01* Y3799D01* X20875D01* X20902Y3797D01* X20929Y3793D01* X20952Y3786D01* Y3213D01* G37* G36* Y3890D02*X20951Y3890D01* X20915Y3896D01* X20879Y3899D01* X20872Y3899D01* Y5101D01* X20902Y5104D01* X20938Y5111D01* X20952Y5115D01* Y3890D01* G37* G36* Y5220D02*X20940Y5215D01* X20914Y5208D01* X20888Y5203D01* X20872Y5201D01* Y5798D01* X20882Y5797D01* X20909Y5793D01* X20935Y5785D01* X20952Y5779D01* Y5220D01* G37* G36* Y5884D02*X20931Y5890D01* X20895Y5896D01* X20872Y5898D01* Y7103D01* X20882Y7104D01* X20918Y7111D01* X20952Y7121D01* X20952D01* Y5884D01* G37* G36* Y7229D02*X20946Y7225D01* X20920Y7215D01* X20894Y7208D01* X20872Y7204D01* Y7795D01* X20889Y7793D01* X20915Y7785D01* X20941Y7776D01* X20952Y7771D01* Y7229D01* G37* G36* Y7878D02*X20946Y7881D01* X20911Y7890D01* X20875Y7896D01* X20872Y7897D01* Y9106D01* X20898Y9111D01* X20932Y9121D01* X20952Y9128D01* Y7878D01* G37* G36* Y9238D02*X20950Y9237D01* X20926Y9225D01* X20900Y9215D01* X20874Y9208D01* X20872Y9207D01* Y9792D01* X20895Y9785D01* X20921Y9776D01* X20945Y9764D01* X20952Y9762D01* Y9238D01* G37* G36* Y9871D02*X20926Y9881D01* X20891Y9890D01* X20872Y9893D01* Y11110D01* X20878Y11111D01* X20912Y11121D01* X20946Y11134D01* X20952Y11137D01* Y9871D01* G37* G36* Y11243D02*X20946Y11243D01* X20938Y11241D01* X20930Y11237D01* X20906Y11225D01* X20880Y11215D01* X20872Y11213D01* Y11786D01* X20875Y11785D01* X20901Y11776D01* X20925Y11764D01* X20933Y11761D01* X20942Y11759D01* X20951Y11759D01* X20952Y11759D01* Y11243D01* G37* G36* Y11862D02*X20940Y11868D01* X20906Y11881D01* X20872Y11890D01* Y13115D01* X20892Y13121D01* X20926Y13134D01* X20952Y13147D01* Y11862D01* G37* G36* Y13240D02*X20952Y13240D01* X20944Y13243D01* X20935Y13243D01* X20926Y13243D01* X20918Y13241D01* X20910Y13237D01* X20886Y13225D01* X20872Y13220D01* Y13779D01* X20881Y13776D01* X20905Y13764D01* X20913Y13761D01* X20922Y13759D01* X20931Y13759D01* X20939Y13760D01* X20948Y13762D01* X20952Y13765D01* Y13240D01* G37* G36* Y13853D02*X20952Y13853D01* X20920Y13868D01* X20886Y13881D01* X20872Y13884D01* Y15121D01* X20906Y15134D01* X20938Y15150D01* X20946Y15155D01* X20952Y15161D01* X20952Y15161D01* Y13853D01* G37* G36* Y15225D02*X20947Y15231D01* X20940Y15236D01* X20932Y15240D01* X20924Y15243D01* X20915Y15243D01* X20906Y15243D01* X20898Y15241D01* X20890Y15237D01* X20872Y15229D01* Y15771D01* X20885Y15764D01* X20893Y15761D01* X20902Y15759D01* X20911Y15759D01* X20919Y15760D01* X20928Y15762D01* X20935Y15766D01* X20942Y15772D01* X20948Y15778D01* X20952Y15784D01* Y15225D01* G37* G36* Y15833D02*X20951Y15835D01* X20946Y15842D01* X20940Y15848D01* X20932Y15853D01* X20900Y15868D01* X20872Y15878D01* Y17128D01* X20886Y17134D01* X20918Y17150D01* X20926Y17155D01* X20932Y17161D01* X20937Y17168D01* X20941Y17175D01* X20943Y17184D01* X20944Y17193D01* X20944Y17201D01* X20941Y17210D01* X20938Y17218D01* X20933Y17225D01* X20927Y17231D01* X20920Y17236D01* X20912Y17240D01* X20904Y17243D01* X20895Y17243D01* X20886Y17243D01* X20878Y17241D01* X20872Y17238D01* Y17762D01* X20873Y17761D01* X20882Y17759D01* X20891Y17759D01* X20899Y17760D01* X20908Y17762D01* X20915Y17766D01* X20922Y17772D01* X20928Y17778D01* X20933Y17785D01* X20936Y17793D01* X20938Y17802D01* X20939Y17810D01* X20938Y17819D01* X20935Y17827D01* X20931Y17835D01* X20926Y17842D01* X20920Y17848D01* X20912Y17853D01* X20880Y17868D01* X20872Y17871D01* Y19137D01* X20898Y19150D01* X20906Y19155D01* X20912Y19161D01* X20917Y19168D01* X20921Y19175D01* X20923Y19184D01* X20924Y19193D01* X20924Y19201D01* X20921Y19210D01* X20918Y19218D01* X20913Y19225D01* X20907Y19231D01* X20900Y19236D01* X20892Y19240D01* X20884Y19243D01* X20875Y19243D01* X20872Y19243D01* Y19759D01* X20879Y19760D01* X20888Y19762D01* X20895Y19766D01* X20902Y19772D01* X20908Y19778D01* X20913Y19785D01* X20916Y19793D01* X20918Y19802D01* X20919Y19810D01* X20918Y19819D01* X20915Y19827D01* X20911Y19835D01* X20906Y19842D01* X20900Y19848D01* X20892Y19853D01* X20872Y19862D01* Y21147D01* X20878Y21150D01* X20886Y21155D01* X20892Y21161D01* X20897Y21168D01* X20901Y21175D01* X20903Y21184D01* X20904Y21193D01* X20904Y21201D01* X20901Y21210D01* X20898Y21218D01* X20893Y21225D01* X20887Y21231D01* X20880Y21236D01* X20872Y21240D01* Y21765D01* X20875Y21766D01* X20882Y21772D01* X20888Y21778D01* X20893Y21785D01* X20896Y21793D01* X20898Y21802D01* X20899Y21810D01* X20898Y21819D01* X20895Y21827D01* X20891Y21835D01* X20886Y21842D01* X20880Y21848D01* X20872Y21853D01* Y23161D01* X20877Y23168D01* X20881Y23175D01* X20883Y23184D01* X20884Y23193D01* X20884Y23201D01* X20881Y23210D01* X20878Y23218D01* X20873Y23225D01* X20872Y23225D01* Y23784D01* X20873Y23785D01* X20876Y23793D01* X20878Y23802D01* X20879Y23810D01* X20878Y23819D01* X20875Y23827D01* X20872Y23833D01* Y29307D01* X20876Y29302D01* X20883Y29296D01* X20890Y29291D01* X20898Y29288D01* X20907Y29286D01* X20915Y29285D01* X20924Y29286D01* X20932Y29289D01* X20940Y29293D01* X20947Y29298D01* X20952Y29304D01* Y27714D01* X20949Y27716D01* X20940Y27718D01* X20932Y27719D01* X20923Y27719D01* X20914Y27717D01* X20906Y27713D01* X20899Y27708D01* X20893Y27702D01* X20888Y27695D01* X20884Y27687D01* X20882Y27679D01* X20881Y27670D01* X20881Y27661D01* X20883Y27653D01* X20887Y27645D01* X20899Y27621D01* X20909Y27595D01* X20916Y27569D01* X20921Y27543D01* X20924Y27516D01* X20924Y27489D01* X20922Y27462D01* X20917Y27435D01* X20910Y27409D01* X20901Y27383D01* X20889Y27359D01* X20886Y27351D01* X20884Y27342D01* X20884Y27333D01* X20885Y27325D01* X20887Y27317D01* X20891Y27309D01* X20896Y27302D01* X20903Y27296D01* X20910Y27291D01* X20918Y27288D01* X20927Y27286D01* X20935Y27285D01* X20944Y27286D01* X20952Y27289D01* X20952Y27289D01* Y25719D01* X20952Y25719D01* X20943Y25719D01* X20934Y25717D01* X20926Y25713D01* X20919Y25708D01* X20913Y25702D01* X20908Y25695D01* X20904Y25687D01* X20902Y25679D01* X20901Y25670D01* X20901Y25661D01* X20903Y25653D01* X20907Y25645D01* X20919Y25621D01* X20929Y25595D01* X20936Y25569D01* X20941Y25543D01* X20944Y25516D01* X20944Y25489D01* X20942Y25462D01* X20937Y25435D01* X20930Y25409D01* X20921Y25383D01* X20909Y25359D01* X20906Y25351D01* X20904Y25342D01* X20904Y25333D01* X20905Y25325D01* X20907Y25317D01* X20911Y25309D01* X20916Y25302D01* X20923Y25296D01* X20930Y25291D01* X20938Y25288D01* X20947Y25286D01* X20952Y25286D01* Y23716D01* X20946Y23713D01* X20939Y23708D01* X20933Y23702D01* X20928Y23695D01* X20924Y23687D01* X20922Y23679D01* X20921Y23670D01* X20921Y23661D01* X20923Y23653D01* X20927Y23645D01* X20939Y23621D01* X20949Y23595D01* X20952Y23583D01* Y23416D01* X20950Y23409D01* X20941Y23383D01* X20929Y23359D01* X20926Y23351D01* X20924Y23342D01* X20924Y23333D01* X20925Y23325D01* X20927Y23317D01* X20931Y23309D01* X20936Y23302D01* X20943Y23296D01* X20950Y23291D01* X20952Y23290D01* Y21701D01* X20948Y21695D01* X20944Y21687D01* X20942Y21679D01* X20941Y21670D01* X20941Y21661D01* X20943Y21653D01* X20947Y21645D01* X20952Y21634D01* Y21365D01* X20949Y21359D01* X20946Y21351D01* X20944Y21342D01* X20944Y21333D01* X20945Y21325D01* X20947Y21317D01* X20951Y21309D01* X20952Y21307D01* Y15833D01* G37* G36* Y29696D02*X20950Y29701D01* X20944Y29707D01* X20936Y29712D01* X20929Y29716D01* X20920Y29718D01* X20912Y29719D01* X20903Y29719D01* X20894Y29717D01* X20886Y29713D01* X20879Y29708D01* X20873Y29702D01* X20872Y29701D01* Y31290D01* X20878Y31288D01* X20887Y31286D01* X20895Y31285D01* X20904Y31286D01* X20912Y31289D01* X20920Y31293D01* X20927Y31298D01* X20933Y31305D01* X20938Y31312D01* X20952Y31343D01* Y29696D01* G37* G36* Y31656D02*X20950Y31661D01* X20934Y31694D01* X20930Y31701D01* X20924Y31707D01* X20916Y31712D01* X20909Y31716D01* X20900Y31718D01* X20892Y31719D01* X20883Y31719D01* X20874Y31717D01* X20872Y31716D01* Y33286D01* X20875Y33285D01* X20884Y33286D01* X20892Y33289D01* X20900Y33293D01* X20907Y33298D01* X20913Y33305D01* X20918Y33312D01* X20933Y33344D01* X20946Y33378D01* X20952Y33404D01* Y31656D01* G37* G36* Y40000D02*X21032D01* Y25596D01* X21024Y25627D01* X21010Y25661D01* X20994Y25694D01* X20990Y25701D01* X20984Y25707D01* X20976Y25712D01* X20969Y25716D01* X20960Y25718D01* X20952Y25719D01* Y27289D01* X20960Y27293D01* X20967Y27298D01* X20973Y27305D01* X20978Y27312D01* X20993Y27344D01* X21006Y27378D01* X21015Y27413D01* X21021Y27449D01* X21024Y27485D01* X21024Y27521D01* X21020Y27557D01* X21014Y27593D01* X21004Y27627D01* X20990Y27661D01* X20974Y27694D01* X20970Y27701D01* X20964Y27707D01* X20956Y27712D01* X20952Y27714D01* Y29304D01* X20953Y29305D01* X20958Y29312D01* X20973Y29344D01* X20986Y29378D01* X20995Y29413D01* X21001Y29449D01* X21004Y29485D01* X21004Y29521D01* X21000Y29557D01* X20994Y29593D01* X20984Y29627D01* X20970Y29661D01* X20954Y29694D01* X20952Y29696D01* Y31343D01* X20953Y31344D01* X20966Y31378D01* X20975Y31413D01* X20981Y31449D01* X20984Y31485D01* X20984Y31521D01* X20980Y31557D01* X20974Y31593D01* X20964Y31627D01* X20952Y31656D01* Y33404D01* X20955Y33413D01* X20961Y33449D01* X20964Y33485D01* X20964Y33521D01* X20960Y33557D01* X20954Y33593D01* X20952Y33596D01* Y40000D01* G37* G36* X21032Y0D02*X20952D01* Y1106D01* X20978Y1111D01* X21012Y1121D01* X21032Y1128D01* Y0D01* G37* G36* Y1238D02*X21030Y1237D01* X21006Y1225D01* X20980Y1215D01* X20954Y1208D01* X20952Y1207D01* Y1792D01* X20975Y1785D01* X21001Y1776D01* X21025Y1764D01* X21032Y1762D01* Y1238D01* G37* G36* Y1871D02*X21006Y1881D01* X20971Y1890D01* X20952Y1893D01* Y3110D01* X20958Y3111D01* X20992Y3121D01* X21026Y3134D01* X21032Y3137D01* Y1871D01* G37* G36* Y3243D02*X21026Y3243D01* X21018Y3241D01* X21010Y3237D01* X20986Y3225D01* X20960Y3215D01* X20952Y3213D01* Y3786D01* X20955Y3785D01* X20981Y3776D01* X21005Y3764D01* X21013Y3761D01* X21022Y3759D01* X21031Y3759D01* X21032Y3759D01* Y3243D01* G37* G36* Y3862D02*X21020Y3868D01* X20986Y3881D01* X20952Y3890D01* Y5115D01* X20972Y5121D01* X21006Y5134D01* X21032Y5147D01* Y3862D01* G37* G36* Y5240D02*X21032Y5240D01* X21024Y5243D01* X21015Y5243D01* X21006Y5243D01* X20998Y5241D01* X20990Y5237D01* X20966Y5225D01* X20952Y5220D01* Y5779D01* X20961Y5776D01* X20985Y5764D01* X20993Y5761D01* X21002Y5759D01* X21011Y5759D01* X21019Y5760D01* X21028Y5762D01* X21032Y5765D01* Y5240D01* G37* G36* Y5853D02*X21032Y5853D01* X21000Y5868D01* X20966Y5881D01* X20952Y5884D01* Y7121D01* X20986Y7134D01* X21018Y7150D01* X21026Y7155D01* X21032Y7161D01* X21032Y7161D01* Y5853D01* G37* G36* Y7225D02*X21027Y7231D01* X21020Y7236D01* X21012Y7240D01* X21004Y7243D01* X20995Y7243D01* X20986Y7243D01* X20978Y7241D01* X20970Y7237D01* X20952Y7229D01* Y7771D01* X20965Y7764D01* X20973Y7761D01* X20982Y7759D01* X20991Y7759D01* X20999Y7760D01* X21008Y7762D01* X21015Y7766D01* X21022Y7772D01* X21028Y7778D01* X21032Y7784D01* Y7225D01* G37* G36* Y7833D02*X21031Y7835D01* X21026Y7842D01* X21020Y7848D01* X21012Y7853D01* X20980Y7868D01* X20952Y7878D01* Y9128D01* X20966Y9134D01* X20998Y9150D01* X21006Y9155D01* X21012Y9161D01* X21017Y9168D01* X21021Y9175D01* X21023Y9184D01* X21024Y9193D01* X21024Y9201D01* X21021Y9210D01* X21018Y9218D01* X21013Y9225D01* X21007Y9231D01* X21000Y9236D01* X20992Y9240D01* X20984Y9243D01* X20975Y9243D01* X20966Y9243D01* X20958Y9241D01* X20952Y9238D01* Y9762D01* X20953Y9761D01* X20962Y9759D01* X20971Y9759D01* X20979Y9760D01* X20988Y9762D01* X20995Y9766D01* X21002Y9772D01* X21008Y9778D01* X21013Y9785D01* X21016Y9793D01* X21018Y9802D01* X21019Y9810D01* X21018Y9819D01* X21015Y9827D01* X21011Y9835D01* X21006Y9842D01* X21000Y9848D01* X20992Y9853D01* X20960Y9868D01* X20952Y9871D01* Y11137D01* X20978Y11150D01* X20986Y11155D01* X20992Y11161D01* X20997Y11168D01* X21001Y11175D01* X21003Y11184D01* X21004Y11193D01* X21004Y11201D01* X21001Y11210D01* X20998Y11218D01* X20993Y11225D01* X20987Y11231D01* X20980Y11236D01* X20972Y11240D01* X20964Y11243D01* X20955Y11243D01* X20952Y11243D01* Y11759D01* X20959Y11760D01* X20968Y11762D01* X20975Y11766D01* X20982Y11772D01* X20988Y11778D01* X20993Y11785D01* X20996Y11793D01* X20998Y11802D01* X20999Y11810D01* X20998Y11819D01* X20995Y11827D01* X20991Y11835D01* X20986Y11842D01* X20980Y11848D01* X20972Y11853D01* X20952Y11862D01* Y13147D01* X20958Y13150D01* X20966Y13155D01* X20972Y13161D01* X20977Y13168D01* X20981Y13175D01* X20983Y13184D01* X20984Y13193D01* X20984Y13201D01* X20981Y13210D01* X20978Y13218D01* X20973Y13225D01* X20967Y13231D01* X20960Y13236D01* X20952Y13240D01* Y13765D01* X20955Y13766D01* X20962Y13772D01* X20968Y13778D01* X20973Y13785D01* X20976Y13793D01* X20978Y13802D01* X20979Y13810D01* X20978Y13819D01* X20975Y13827D01* X20971Y13835D01* X20966Y13842D01* X20960Y13848D01* X20952Y13853D01* Y15161D01* X20957Y15168D01* X20961Y15175D01* X20963Y15184D01* X20964Y15193D01* X20964Y15201D01* X20961Y15210D01* X20958Y15218D01* X20953Y15225D01* X20952Y15225D01* Y15784D01* X20953Y15785D01* X20956Y15793D01* X20958Y15802D01* X20959Y15810D01* X20958Y15819D01* X20955Y15827D01* X20952Y15833D01* Y21307D01* X20956Y21302D01* X20963Y21296D01* X20970Y21291D01* X20978Y21288D01* X20987Y21286D01* X20995Y21285D01* X21004Y21286D01* X21012Y21289D01* X21020Y21293D01* X21027Y21298D01* X21032Y21304D01* Y19714D01* X21029Y19716D01* X21020Y19718D01* X21012Y19719D01* X21003Y19719D01* X20994Y19717D01* X20986Y19713D01* X20979Y19708D01* X20973Y19702D01* X20968Y19695D01* X20964Y19687D01* X20962Y19679D01* X20961Y19670D01* X20961Y19661D01* X20963Y19653D01* X20967Y19645D01* X20979Y19621D01* X20989Y19595D01* X20996Y19569D01* X21001Y19543D01* X21004Y19516D01* X21004Y19489D01* X21002Y19462D01* X20997Y19435D01* X20990Y19409D01* X20981Y19383D01* X20969Y19359D01* X20966Y19351D01* X20964Y19342D01* X20964Y19333D01* X20965Y19325D01* X20967Y19317D01* X20971Y19309D01* X20976Y19302D01* X20983Y19296D01* X20990Y19291D01* X20998Y19288D01* X21007Y19286D01* X21015Y19285D01* X21024Y19286D01* X21032Y19289D01* X21032Y19289D01* Y17719D01* X21032Y17719D01* X21023Y17719D01* X21014Y17717D01* X21006Y17713D01* X20999Y17708D01* X20993Y17702D01* X20988Y17695D01* X20984Y17687D01* X20982Y17679D01* X20981Y17670D01* X20981Y17661D01* X20983Y17653D01* X20987Y17645D01* X20999Y17621D01* X21009Y17595D01* X21016Y17569D01* X21021Y17543D01* X21024Y17516D01* X21024Y17489D01* X21022Y17462D01* X21017Y17435D01* X21010Y17409D01* X21001Y17383D01* X20989Y17359D01* X20986Y17351D01* X20984Y17342D01* X20984Y17333D01* X20985Y17325D01* X20987Y17317D01* X20991Y17309D01* X20996Y17302D01* X21003Y17296D01* X21010Y17291D01* X21018Y17288D01* X21027Y17286D01* X21032Y17286D01* Y15716D01* X21026Y15713D01* X21019Y15708D01* X21013Y15702D01* X21008Y15695D01* X21004Y15687D01* X21002Y15679D01* X21001Y15670D01* X21001Y15661D01* X21003Y15653D01* X21007Y15645D01* X21019Y15621D01* X21029Y15595D01* X21032Y15583D01* Y15416D01* X21030Y15409D01* X21021Y15383D01* X21009Y15359D01* X21006Y15351D01* X21004Y15342D01* X21004Y15333D01* X21005Y15325D01* X21007Y15317D01* X21011Y15309D01* X21016Y15302D01* X21023Y15296D01* X21030Y15291D01* X21032Y15290D01* Y13701D01* X21028Y13695D01* X21024Y13687D01* X21022Y13679D01* X21021Y13670D01* X21021Y13661D01* X21023Y13653D01* X21027Y13645D01* X21032Y13634D01* Y13365D01* X21029Y13359D01* X21026Y13351D01* X21024Y13342D01* X21024Y13333D01* X21025Y13325D01* X21027Y13317D01* X21031Y13309D01* X21032Y13307D01* Y7833D01* G37* G36* Y21696D02*X21030Y21701D01* X21024Y21707D01* X21016Y21712D01* X21009Y21716D01* X21000Y21718D01* X20992Y21719D01* X20983Y21719D01* X20974Y21717D01* X20966Y21713D01* X20959Y21708D01* X20953Y21702D01* X20952Y21701D01* Y23290D01* X20958Y23288D01* X20967Y23286D01* X20975Y23285D01* X20984Y23286D01* X20992Y23289D01* X21000Y23293D01* X21007Y23298D01* X21013Y23305D01* X21018Y23312D01* X21032Y23343D01* Y21696D01* G37* G36* Y23656D02*X21030Y23661D01* X21014Y23694D01* X21010Y23701D01* X21004Y23707D01* X20996Y23712D01* X20989Y23716D01* X20980Y23718D01* X20972Y23719D01* X20963Y23719D01* X20954Y23717D01* X20952Y23716D01* Y25286D01* X20955Y25285D01* X20964Y25286D01* X20972Y25289D01* X20980Y25293D01* X20987Y25298D01* X20993Y25305D01* X20998Y25312D01* X21013Y25344D01* X21026Y25378D01* X21032Y25404D01* Y23656D01* G37* G36* Y40000D02*X21112D01* Y17596D01* X21104Y17627D01* X21090Y17661D01* X21074Y17694D01* X21070Y17701D01* X21064Y17707D01* X21056Y17712D01* X21049Y17716D01* X21040Y17718D01* X21032Y17719D01* Y19289D01* X21040Y19293D01* X21047Y19298D01* X21053Y19305D01* X21058Y19312D01* X21073Y19344D01* X21086Y19378D01* X21095Y19413D01* X21101Y19449D01* X21104Y19485D01* X21104Y19521D01* X21100Y19557D01* X21094Y19593D01* X21084Y19627D01* X21070Y19661D01* X21054Y19694D01* X21050Y19701D01* X21044Y19707D01* X21036Y19712D01* X21032Y19714D01* Y21304D01* X21033Y21305D01* X21038Y21312D01* X21053Y21344D01* X21066Y21378D01* X21075Y21413D01* X21081Y21449D01* X21084Y21485D01* X21084Y21521D01* X21080Y21557D01* X21074Y21593D01* X21064Y21627D01* X21050Y21661D01* X21034Y21694D01* X21032Y21696D01* Y23343D01* X21033Y23344D01* X21046Y23378D01* X21055Y23413D01* X21061Y23449D01* X21064Y23485D01* X21064Y23521D01* X21060Y23557D01* X21054Y23593D01* X21044Y23627D01* X21032Y23656D01* Y25404D01* X21035Y25413D01* X21041Y25449D01* X21044Y25485D01* X21044Y25521D01* X21040Y25557D01* X21034Y25593D01* X21032Y25596D01* Y40000D01* G37* G36* X21112Y0D02*X21032D01* Y1128D01* X21046Y1134D01* X21078Y1150D01* X21086Y1155D01* X21092Y1161D01* X21097Y1168D01* X21101Y1175D01* X21103Y1184D01* X21104Y1193D01* X21104Y1201D01* X21101Y1210D01* X21098Y1218D01* X21093Y1225D01* X21087Y1231D01* X21080Y1236D01* X21072Y1240D01* X21064Y1243D01* X21055Y1243D01* X21046Y1243D01* X21038Y1241D01* X21032Y1238D01* Y1762D01* X21033Y1761D01* X21042Y1759D01* X21051Y1759D01* X21059Y1760D01* X21068Y1762D01* X21075Y1766D01* X21082Y1772D01* X21088Y1778D01* X21093Y1785D01* X21096Y1793D01* X21098Y1802D01* X21099Y1810D01* X21098Y1819D01* X21095Y1827D01* X21091Y1835D01* X21086Y1842D01* X21080Y1848D01* X21072Y1853D01* X21040Y1868D01* X21032Y1871D01* Y3137D01* X21058Y3150D01* X21066Y3155D01* X21072Y3161D01* X21077Y3168D01* X21081Y3175D01* X21083Y3184D01* X21084Y3193D01* X21084Y3201D01* X21081Y3210D01* X21078Y3218D01* X21073Y3225D01* X21067Y3231D01* X21060Y3236D01* X21052Y3240D01* X21044Y3243D01* X21035Y3243D01* X21032Y3243D01* Y3759D01* X21039Y3760D01* X21048Y3762D01* X21055Y3766D01* X21062Y3772D01* X21068Y3778D01* X21073Y3785D01* X21076Y3793D01* X21078Y3802D01* X21079Y3810D01* X21078Y3819D01* X21075Y3827D01* X21071Y3835D01* X21066Y3842D01* X21060Y3848D01* X21052Y3853D01* X21032Y3862D01* Y5147D01* X21038Y5150D01* X21046Y5155D01* X21052Y5161D01* X21057Y5168D01* X21061Y5175D01* X21063Y5184D01* X21064Y5193D01* X21064Y5201D01* X21061Y5210D01* X21058Y5218D01* X21053Y5225D01* X21047Y5231D01* X21040Y5236D01* X21032Y5240D01* Y5765D01* X21035Y5766D01* X21042Y5772D01* X21048Y5778D01* X21053Y5785D01* X21056Y5793D01* X21058Y5802D01* X21059Y5810D01* X21058Y5819D01* X21055Y5827D01* X21051Y5835D01* X21046Y5842D01* X21040Y5848D01* X21032Y5853D01* Y7161D01* X21037Y7168D01* X21041Y7175D01* X21043Y7184D01* X21044Y7193D01* X21044Y7201D01* X21041Y7210D01* X21038Y7218D01* X21033Y7225D01* X21032Y7225D01* Y7784D01* X21033Y7785D01* X21036Y7793D01* X21038Y7802D01* X21039Y7810D01* X21038Y7819D01* X21035Y7827D01* X21032Y7833D01* Y13307D01* X21036Y13302D01* X21043Y13296D01* X21050Y13291D01* X21058Y13288D01* X21067Y13286D01* X21075Y13285D01* X21084Y13286D01* X21092Y13289D01* X21100Y13293D01* X21107Y13298D01* X21112Y13304D01* Y11714D01* X21109Y11716D01* X21100Y11718D01* X21092Y11719D01* X21083Y11719D01* X21074Y11717D01* X21066Y11713D01* X21059Y11708D01* X21053Y11702D01* X21048Y11695D01* X21044Y11687D01* X21042Y11679D01* X21041Y11670D01* X21041Y11661D01* X21043Y11653D01* X21047Y11645D01* X21059Y11621D01* X21069Y11595D01* X21076Y11569D01* X21081Y11543D01* X21084Y11516D01* X21084Y11489D01* X21082Y11462D01* X21077Y11435D01* X21070Y11409D01* X21061Y11383D01* X21049Y11359D01* X21046Y11351D01* X21044Y11342D01* X21044Y11333D01* X21045Y11325D01* X21047Y11317D01* X21051Y11309D01* X21056Y11302D01* X21063Y11296D01* X21070Y11291D01* X21078Y11288D01* X21087Y11286D01* X21095Y11285D01* X21104Y11286D01* X21112Y11289D01* X21112Y11289D01* Y9719D01* X21112Y9719D01* X21103Y9719D01* X21094Y9717D01* X21086Y9713D01* X21079Y9708D01* X21073Y9702D01* X21068Y9695D01* X21064Y9687D01* X21062Y9679D01* X21061Y9670D01* X21061Y9661D01* X21063Y9653D01* X21067Y9645D01* X21079Y9621D01* X21089Y9595D01* X21096Y9569D01* X21101Y9543D01* X21104Y9516D01* X21104Y9489D01* X21102Y9462D01* X21097Y9435D01* X21090Y9409D01* X21081Y9383D01* X21069Y9359D01* X21066Y9351D01* X21064Y9342D01* X21064Y9333D01* X21065Y9325D01* X21067Y9317D01* X21071Y9309D01* X21076Y9302D01* X21083Y9296D01* X21090Y9291D01* X21098Y9288D01* X21107Y9286D01* X21112Y9286D01* Y7716D01* X21106Y7713D01* X21099Y7708D01* X21093Y7702D01* X21088Y7695D01* X21084Y7687D01* X21082Y7679D01* X21081Y7670D01* X21081Y7661D01* X21083Y7653D01* X21087Y7645D01* X21099Y7621D01* X21109Y7595D01* X21112Y7583D01* Y7416D01* X21110Y7409D01* X21101Y7383D01* X21089Y7359D01* X21086Y7351D01* X21084Y7342D01* X21084Y7333D01* X21085Y7325D01* X21087Y7317D01* X21091Y7309D01* X21096Y7302D01* X21103Y7296D01* X21110Y7291D01* X21112Y7290D01* Y5701D01* X21108Y5695D01* X21104Y5687D01* X21102Y5679D01* X21101Y5670D01* X21101Y5661D01* X21103Y5653D01* X21107Y5645D01* X21112Y5634D01* Y5365D01* X21109Y5359D01* X21106Y5351D01* X21104Y5342D01* X21104Y5333D01* X21105Y5325D01* X21107Y5317D01* X21111Y5309D01* X21112Y5307D01* Y0D01* G37* G36* Y13696D02*X21110Y13701D01* X21104Y13707D01* X21096Y13712D01* X21089Y13716D01* X21080Y13718D01* X21072Y13719D01* X21063Y13719D01* X21054Y13717D01* X21046Y13713D01* X21039Y13708D01* X21033Y13702D01* X21032Y13701D01* Y15290D01* X21038Y15288D01* X21047Y15286D01* X21055Y15285D01* X21064Y15286D01* X21072Y15289D01* X21080Y15293D01* X21087Y15298D01* X21093Y15305D01* X21098Y15312D01* X21112Y15343D01* Y13696D01* G37* G36* Y15656D02*X21110Y15661D01* X21094Y15694D01* X21090Y15701D01* X21084Y15707D01* X21076Y15712D01* X21069Y15716D01* X21060Y15718D01* X21052Y15719D01* X21043Y15719D01* X21034Y15717D01* X21032Y15716D01* Y17286D01* X21035Y17285D01* X21044Y17286D01* X21052Y17289D01* X21060Y17293D01* X21067Y17298D01* X21073Y17305D01* X21078Y17312D01* X21093Y17344D01* X21106Y17378D01* X21112Y17404D01* Y15656D01* G37* G36* Y40000D02*X21192D01* Y9596D01* X21184Y9627D01* X21170Y9661D01* X21154Y9694D01* X21150Y9701D01* X21144Y9707D01* X21136Y9712D01* X21129Y9716D01* X21120Y9718D01* X21112Y9719D01* Y11289D01* X21120Y11293D01* X21127Y11298D01* X21133Y11305D01* X21138Y11312D01* X21153Y11344D01* X21166Y11378D01* X21175Y11413D01* X21181Y11449D01* X21184Y11485D01* X21184Y11521D01* X21180Y11557D01* X21174Y11593D01* X21164Y11627D01* X21150Y11661D01* X21134Y11694D01* X21130Y11701D01* X21124Y11707D01* X21116Y11712D01* X21112Y11714D01* Y13304D01* X21113Y13305D01* X21118Y13312D01* X21133Y13344D01* X21146Y13378D01* X21155Y13413D01* X21161Y13449D01* X21164Y13485D01* X21164Y13521D01* X21160Y13557D01* X21154Y13593D01* X21144Y13627D01* X21130Y13661D01* X21114Y13694D01* X21112Y13696D01* Y15343D01* X21113Y15344D01* X21126Y15378D01* X21135Y15413D01* X21141Y15449D01* X21144Y15485D01* X21144Y15521D01* X21140Y15557D01* X21134Y15593D01* X21124Y15627D01* X21112Y15656D01* Y17404D01* X21115Y17413D01* X21121Y17449D01* X21124Y17485D01* X21124Y17521D01* X21120Y17557D01* X21114Y17593D01* X21112Y17596D01* Y40000D01* G37* G36* X21192Y0D02*X21112D01* Y5307D01* X21116Y5302D01* X21123Y5296D01* X21130Y5291D01* X21138Y5288D01* X21147Y5286D01* X21155Y5285D01* X21164Y5286D01* X21172Y5289D01* X21180Y5293D01* X21187Y5298D01* X21192Y5304D01* Y3714D01* X21189Y3716D01* X21180Y3718D01* X21172Y3719D01* X21163Y3719D01* X21154Y3717D01* X21146Y3713D01* X21139Y3708D01* X21133Y3702D01* X21128Y3695D01* X21124Y3687D01* X21122Y3679D01* X21121Y3670D01* X21121Y3661D01* X21123Y3653D01* X21127Y3645D01* X21139Y3621D01* X21149Y3595D01* X21156Y3569D01* X21161Y3543D01* X21164Y3516D01* X21164Y3489D01* X21162Y3462D01* X21157Y3435D01* X21150Y3409D01* X21141Y3383D01* X21129Y3359D01* X21126Y3351D01* X21124Y3342D01* X21124Y3333D01* X21125Y3325D01* X21127Y3317D01* X21131Y3309D01* X21136Y3302D01* X21143Y3296D01* X21150Y3291D01* X21158Y3288D01* X21167Y3286D01* X21175Y3285D01* X21184Y3286D01* X21192Y3289D01* X21192Y3289D01* Y1719D01* X21192Y1719D01* X21183Y1719D01* X21174Y1717D01* X21166Y1713D01* X21159Y1708D01* X21153Y1702D01* X21148Y1695D01* X21144Y1687D01* X21142Y1679D01* X21141Y1670D01* X21141Y1661D01* X21143Y1653D01* X21147Y1645D01* X21159Y1621D01* X21169Y1595D01* X21176Y1569D01* X21181Y1543D01* X21184Y1516D01* X21184Y1489D01* X21182Y1462D01* X21177Y1435D01* X21170Y1409D01* X21161Y1383D01* X21149Y1359D01* X21146Y1351D01* X21144Y1342D01* X21144Y1333D01* X21145Y1325D01* X21147Y1317D01* X21151Y1309D01* X21156Y1302D01* X21163Y1296D01* X21170Y1291D01* X21178Y1288D01* X21187Y1286D01* X21192Y1286D01* Y0D01* G37* G36* Y5696D02*X21190Y5701D01* X21184Y5707D01* X21176Y5712D01* X21169Y5716D01* X21160Y5718D01* X21152Y5719D01* X21143Y5719D01* X21134Y5717D01* X21126Y5713D01* X21119Y5708D01* X21113Y5702D01* X21112Y5701D01* Y7290D01* X21118Y7288D01* X21127Y7286D01* X21135Y7285D01* X21144Y7286D01* X21152Y7289D01* X21160Y7293D01* X21167Y7298D01* X21173Y7305D01* X21178Y7312D01* X21192Y7343D01* Y5696D01* G37* G36* Y7656D02*X21190Y7661D01* X21174Y7694D01* X21170Y7701D01* X21164Y7707D01* X21156Y7712D01* X21149Y7716D01* X21140Y7718D01* X21132Y7719D01* X21123Y7719D01* X21114Y7717D01* X21112Y7716D01* Y9286D01* X21115Y9285D01* X21124Y9286D01* X21132Y9289D01* X21140Y9293D01* X21147Y9298D01* X21153Y9305D01* X21158Y9312D01* X21173Y9344D01* X21186Y9378D01* X21192Y9404D01* Y7656D01* G37* G36* Y40000D02*X22177D01* Y39710D01* X22169Y39706D01* X22162Y39701D01* X22156Y39695D01* X22151Y39687D01* X22136Y39655D01* X22123Y39621D01* X22114Y39586D01* X22108Y39550D01* X22105Y39514D01* X22105Y39478D01* X22109Y39442D01* X22115Y39407D01* X22125Y39372D01* X22139Y39338D01* X22155Y39306D01* X22159Y39299D01* X22165Y39292D01* X22173Y39287D01* X22177Y39285D01* Y37695D01* X22176Y37695D01* X22171Y37687D01* X22156Y37655D01* X22143Y37621D01* X22134Y37586D01* X22128Y37550D01* X22125Y37514D01* X22125Y37478D01* X22129Y37442D01* X22135Y37407D01* X22145Y37372D01* X22159Y37338D01* X22175Y37306D01* X22177Y37303D01* Y35656D01* X22176Y35655D01* X22163Y35621D01* X22154Y35586D01* X22148Y35550D01* X22145Y35514D01* X22145Y35478D01* X22149Y35442D01* X22155Y35407D01* X22165Y35372D01* X22177Y35343D01* Y33596D01* X22174Y33586D01* X22168Y33550D01* X22165Y33514D01* X22165Y33478D01* X22169Y33442D01* X22175Y33407D01* X22177Y33403D01* Y0D01* X21192D01* Y1286D01* X21195Y1285D01* X21204Y1286D01* X21212Y1289D01* X21220Y1293D01* X21227Y1298D01* X21233Y1305D01* X21238Y1312D01* X21253Y1344D01* X21266Y1378D01* X21275Y1413D01* X21281Y1449D01* X21284Y1485D01* X21284Y1521D01* X21280Y1557D01* X21274Y1593D01* X21264Y1627D01* X21250Y1661D01* X21234Y1694D01* X21230Y1701D01* X21224Y1707D01* X21216Y1712D01* X21209Y1716D01* X21200Y1718D01* X21192Y1719D01* Y3289D01* X21200Y3293D01* X21207Y3298D01* X21213Y3305D01* X21218Y3312D01* X21233Y3344D01* X21246Y3378D01* X21255Y3413D01* X21261Y3449D01* X21264Y3485D01* X21264Y3521D01* X21260Y3557D01* X21254Y3593D01* X21244Y3627D01* X21230Y3661D01* X21214Y3694D01* X21210Y3701D01* X21204Y3707D01* X21196Y3712D01* X21192Y3714D01* Y5304D01* X21193Y5305D01* X21198Y5312D01* X21213Y5344D01* X21226Y5378D01* X21235Y5413D01* X21241Y5449D01* X21244Y5485D01* X21244Y5521D01* X21240Y5557D01* X21234Y5593D01* X21224Y5627D01* X21210Y5661D01* X21194Y5694D01* X21192Y5696D01* Y7343D01* X21193Y7344D01* X21206Y7378D01* X21215Y7413D01* X21221Y7449D01* X21224Y7485D01* X21224Y7521D01* X21220Y7557D01* X21214Y7593D01* X21204Y7627D01* X21192Y7656D01* Y9404D01* X21195Y9413D01* X21201Y9449D01* X21204Y9485D01* X21204Y9521D01* X21200Y9557D01* X21194Y9593D01* X21192Y9596D01* Y40000D01* G37* G36* X22177D02*X22257D01* Y37692D01* X22253Y37697D01* X22246Y37703D01* X22239Y37708D01* X22231Y37711D01* X22222Y37713D01* X22214Y37714D01* X22205Y37713D01* X22197Y37710D01* X22189Y37706D01* X22182Y37701D01* X22177Y37695D01* Y39285D01* X22180Y39283D01* X22189Y39281D01* X22197Y39280D01* X22206Y39281D01* X22215Y39283D01* X22223Y39286D01* X22230Y39291D01* X22236Y39297D01* X22241Y39304D01* X22245Y39312D01* X22247Y39320D01* X22248Y39329D01* X22248Y39338D01* X22246Y39346D01* X22242Y39354D01* X22230Y39378D01* X22220Y39404D01* X22213Y39430D01* X22208Y39456D01* X22205Y39483D01* X22205Y39511D01* X22207Y39538D01* X22212Y39564D01* X22219Y39590D01* X22228Y39616D01* X22240Y39640D01* X22243Y39649D01* X22245Y39657D01* X22245Y39666D01* X22244Y39674D01* X22242Y39683D01* X22238Y39690D01* X22233Y39697D01* X22226Y39703D01* X22219Y39708D01* X22211Y39711D01* X22202Y39713D01* X22194Y39714D01* X22185Y39713D01* X22177Y39710D01* X22177Y39710D01* Y40000D01* G37* G36* X22257Y0D02*X22177D01* Y33403D01* X22185Y33372D01* X22199Y33338D01* X22215Y33306D01* X22219Y33299D01* X22225Y33292D01* X22233Y33287D01* X22240Y33283D01* X22249Y33281D01* X22257Y33280D01* Y31710D01* X22249Y31706D01* X22242Y31701D01* X22236Y31695D01* X22231Y31687D01* X22216Y31655D01* X22203Y31621D01* X22194Y31586D01* X22188Y31550D01* X22185Y31514D01* X22185Y31478D01* X22189Y31442D01* X22195Y31407D01* X22205Y31372D01* X22219Y31338D01* X22235Y31306D01* X22239Y31299D01* X22245Y31292D01* X22253Y31287D01* X22257Y31285D01* Y29695D01* X22256Y29695D01* X22251Y29687D01* X22236Y29655D01* X22223Y29621D01* X22214Y29586D01* X22208Y29550D01* X22205Y29514D01* X22205Y29478D01* X22209Y29442D01* X22215Y29407D01* X22225Y29372D01* X22239Y29338D01* X22255Y29306D01* X22257Y29303D01* Y27656D01* X22256Y27655D01* X22243Y27621D01* X22234Y27586D01* X22228Y27550D01* X22225Y27514D01* X22225Y27478D01* X22229Y27442D01* X22235Y27407D01* X22245Y27372D01* X22257Y27343D01* Y25596D01* X22254Y25586D01* X22248Y25550D01* X22245Y25514D01* X22245Y25478D01* X22249Y25442D01* X22255Y25407D01* X22257Y25403D01* Y0D01* G37* G36* Y33714D02*X22254Y33714D01* X22245Y33713D01* X22237Y33710D01* X22229Y33706D01* X22222Y33701D01* X22216Y33695D01* X22211Y33687D01* X22196Y33655D01* X22183Y33621D01* X22177Y33596D01* Y35343D01* X22179Y35338D01* X22195Y35306D01* X22199Y35299D01* X22205Y35292D01* X22213Y35287D01* X22220Y35283D01* X22229Y35281D01* X22237Y35280D01* X22246Y35281D01* X22255Y35283D01* X22257Y35284D01* Y33714D01* G37* G36* Y35417D02*X22253Y35430D01* X22248Y35456D01* X22245Y35483D01* X22245Y35511D01* X22247Y35538D01* X22252Y35564D01* X22257Y35583D01* Y35417D01* G37* G36* Y35709D02*X22251Y35711D01* X22242Y35713D01* X22234Y35714D01* X22225Y35713D01* X22217Y35710D01* X22209Y35706D01* X22202Y35701D01* X22196Y35695D01* X22191Y35687D01* X22177Y35656D01* Y37303D01* X22179Y37299D01* X22185Y37292D01* X22193Y37287D01* X22200Y37283D01* X22209Y37281D01* X22217Y37280D01* X22226Y37281D01* X22235Y37283D01* X22243Y37286D01* X22250Y37291D01* X22256Y37297D01* X22257Y37298D01* Y35709D01* G37* G36* Y37365D02*X22250Y37378D01* X22240Y37404D01* X22233Y37430D01* X22228Y37456D01* X22225Y37483D01* X22225Y37511D01* X22227Y37538D01* X22232Y37564D01* X22239Y37590D01* X22248Y37616D01* X22257Y37634D01* Y37365D01* G37* G36* Y40000D02*X22337D01* Y39862D01* X22311Y39849D01* X22303Y39845D01* X22297Y39839D01* X22292Y39832D01* X22288Y39824D01* X22286Y39815D01* X22285Y39807D01* X22285Y39798D01* X22288Y39790D01* X22291Y39782D01* X22296Y39774D01* X22302Y39768D01* X22309Y39763D01* X22317Y39759D01* X22325Y39757D01* X22334Y39756D01* X22337Y39756D01* Y39240D01* X22330Y39239D01* X22321Y39237D01* X22314Y39233D01* X22307Y39228D01* X22301Y39221D01* X22296Y39214D01* X22293Y39206D01* X22291Y39197D01* X22290Y39189D01* X22291Y39180D01* X22294Y39172D01* X22298Y39164D01* X22303Y39157D01* X22309Y39151D01* X22317Y39146D01* X22337Y39137D01* Y37852D01* X22331Y37849D01* X22323Y37845D01* X22317Y37839D01* X22312Y37832D01* X22308Y37824D01* X22306Y37815D01* X22305Y37807D01* X22305Y37798D01* X22308Y37790D01* X22311Y37782D01* X22316Y37774D01* X22322Y37768D01* X22329Y37763D01* X22337Y37759D01* Y37234D01* X22334Y37233D01* X22327Y37228D01* X22321Y37221D01* X22316Y37214D01* X22313Y37206D01* X22311Y37197D01* X22310Y37189D01* X22311Y37180D01* X22314Y37172D01* X22318Y37164D01* X22323Y37157D01* X22329Y37151D01* X22337Y37147D01* Y35838D01* X22332Y35832D01* X22328Y35824D01* X22326Y35815D01* X22325Y35807D01* X22325Y35798D01* X22328Y35790D01* X22331Y35782D01* X22336Y35774D01* X22337Y35774D01* Y35215D01* X22336Y35214D01* X22333Y35206D01* X22331Y35197D01* X22330Y35189D01* X22331Y35180D01* X22334Y35172D01* X22337Y35167D01* Y29692D01* X22333Y29697D01* X22326Y29703D01* X22319Y29708D01* X22311Y29711D01* X22302Y29713D01* X22294Y29714D01* X22285Y29713D01* X22277Y29710D01* X22269Y29706D01* X22262Y29701D01* X22257Y29695D01* Y31285D01* X22260Y31283D01* X22269Y31281D01* X22277Y31280D01* X22286Y31281D01* X22295Y31283D01* X22303Y31286D01* X22310Y31291D01* X22316Y31297D01* X22321Y31304D01* X22325Y31312D01* X22327Y31320D01* X22328Y31329D01* X22328Y31338D01* X22326Y31346D01* X22322Y31354D01* X22310Y31378D01* X22300Y31404D01* X22293Y31430D01* X22288Y31456D01* X22285Y31483D01* X22285Y31511D01* X22287Y31538D01* X22292Y31564D01* X22299Y31590D01* X22308Y31616D01* X22320Y31640D01* X22323Y31649D01* X22325Y31657D01* X22325Y31666D01* X22324Y31674D01* X22322Y31683D01* X22318Y31690D01* X22313Y31697D01* X22306Y31703D01* X22299Y31708D01* X22291Y31711D01* X22282Y31713D01* X22274Y31714D01* X22265Y31713D01* X22257Y31710D01* X22257Y31710D01* Y33280D01* X22257Y33280D01* X22266Y33281D01* X22275Y33283D01* X22283Y33286D01* X22290Y33291D01* X22296Y33297D01* X22301Y33304D01* X22305Y33312D01* X22307Y33320D01* X22308Y33329D01* X22308Y33338D01* X22306Y33346D01* X22302Y33354D01* X22290Y33378D01* X22280Y33404D01* X22273Y33430D01* X22268Y33456D01* X22265Y33483D01* X22265Y33511D01* X22267Y33538D01* X22272Y33564D01* X22279Y33590D01* X22288Y33616D01* X22300Y33640D01* X22303Y33649D01* X22305Y33657D01* X22305Y33666D01* X22304Y33674D01* X22302Y33683D01* X22298Y33690D01* X22293Y33697D01* X22286Y33703D01* X22279Y33708D01* X22271Y33711D01* X22262Y33713D01* X22257Y33714D01* Y35284D01* X22263Y35286D01* X22270Y35291D01* X22276Y35297D01* X22281Y35304D01* X22285Y35312D01* X22287Y35320D01* X22288Y35329D01* X22288Y35338D01* X22286Y35346D01* X22282Y35354D01* X22270Y35378D01* X22260Y35404D01* X22257Y35417D01* Y35583D01* X22259Y35590D01* X22268Y35616D01* X22280Y35640D01* X22283Y35649D01* X22285Y35657D01* X22285Y35666D01* X22284Y35674D01* X22282Y35683D01* X22278Y35690D01* X22273Y35697D01* X22266Y35703D01* X22259Y35708D01* X22257Y35709D01* Y37298D01* X22261Y37304D01* X22265Y37312D01* X22267Y37320D01* X22268Y37329D01* X22268Y37338D01* X22266Y37346D01* X22262Y37354D01* X22257Y37365D01* Y37634D01* X22260Y37640D01* X22263Y37649D01* X22265Y37657D01* X22265Y37666D01* X22264Y37674D01* X22262Y37683D01* X22258Y37690D01* X22257Y37692D01* Y40000D01* G37* G36* X22337Y0D02*X22257D01* Y25403D01* X22265Y25372D01* X22279Y25338D01* X22295Y25306D01* X22299Y25299D01* X22305Y25292D01* X22313Y25287D01* X22320Y25283D01* X22329Y25281D01* X22337Y25280D01* Y23710D01* X22329Y23706D01* X22322Y23701D01* X22316Y23695D01* X22311Y23687D01* X22296Y23655D01* X22283Y23621D01* X22274Y23586D01* X22268Y23550D01* X22265Y23514D01* X22265Y23478D01* X22269Y23442D01* X22275Y23407D01* X22285Y23372D01* X22299Y23338D01* X22315Y23306D01* X22319Y23299D01* X22325Y23292D01* X22333Y23287D01* X22337Y23285D01* Y21695D01* X22336Y21695D01* X22331Y21687D01* X22316Y21655D01* X22303Y21621D01* X22294Y21586D01* X22288Y21550D01* X22285Y21514D01* X22285Y21478D01* X22289Y21442D01* X22295Y21407D01* X22305Y21372D01* X22319Y21338D01* X22335Y21306D01* X22337Y21303D01* Y19656D01* X22336Y19655D01* X22323Y19621D01* X22314Y19586D01* X22308Y19550D01* X22305Y19514D01* X22305Y19478D01* X22309Y19442D01* X22315Y19407D01* X22325Y19372D01* X22337Y19343D01* Y17596D01* X22334Y17586D01* X22328Y17550D01* X22325Y17514D01* X22325Y17478D01* X22329Y17442D01* X22335Y17407D01* X22337Y17403D01* Y0D01* G37* G36* Y25714D02*X22334Y25714D01* X22325Y25713D01* X22317Y25710D01* X22309Y25706D01* X22302Y25701D01* X22296Y25695D01* X22291Y25687D01* X22276Y25655D01* X22263Y25621D01* X22257Y25596D01* Y27343D01* X22259Y27338D01* X22275Y27306D01* X22279Y27299D01* X22285Y27292D01* X22293Y27287D01* X22300Y27283D01* X22309Y27281D01* X22317Y27280D01* X22326Y27281D01* X22335Y27283D01* X22337Y27284D01* Y25714D01* G37* G36* Y27417D02*X22333Y27430D01* X22328Y27456D01* X22325Y27483D01* X22325Y27511D01* X22327Y27538D01* X22332Y27564D01* X22337Y27583D01* Y27417D01* G37* G36* Y27709D02*X22331Y27711D01* X22322Y27713D01* X22314Y27714D01* X22305Y27713D01* X22297Y27710D01* X22289Y27706D01* X22282Y27701D01* X22276Y27695D01* X22271Y27687D01* X22257Y27656D01* Y29303D01* X22259Y29299D01* X22265Y29292D01* X22273Y29287D01* X22280Y29283D01* X22289Y29281D01* X22297Y29280D01* X22306Y29281D01* X22315Y29283D01* X22323Y29286D01* X22330Y29291D01* X22336Y29297D01* X22337Y29298D01* Y27709D01* G37* G36* Y29365D02*X22330Y29378D01* X22320Y29404D01* X22313Y29430D01* X22308Y29456D01* X22305Y29483D01* X22305Y29511D01* X22307Y29538D01* X22312Y29564D01* X22319Y29590D01* X22328Y29616D01* X22337Y29634D01* Y29365D01* G37* G36* Y40000D02*X22507D01* Y39899D01* X22483Y39899D01* X22447Y39895D01* X22411Y39889D01* X22377Y39879D01* X22343Y39866D01* X22337Y39862D01* Y40000D01* G37* G36* Y39756D02*X22343Y39756D01* X22351Y39758D01* X22359Y39762D01* X22383Y39774D01* X22409Y39784D01* X22435Y39791D01* X22461Y39796D01* X22488Y39799D01* X22507Y39799D01* Y39200D01* X22494Y39200D01* X22467Y39202D01* X22440Y39207D01* X22414Y39214D01* X22388Y39223D01* X22364Y39235D01* X22356Y39238D01* X22347Y39240D01* X22338Y39240D01* X22337Y39240D01* Y39756D01* G37* G36* Y39137D02*X22349Y39131D01* X22383Y39118D01* X22418Y39109D01* X22454Y39103D01* X22490Y39100D01* X22507Y39100D01* Y37899D01* X22503D01* X22467Y37895D01* X22431Y37889D01* X22397Y37879D01* X22363Y37866D01* X22337Y37852D01* Y39137D01* G37* G36* Y37759D02*X22337Y37759D01* X22345Y37757D01* X22354Y37756D01* X22363Y37756D01* X22371Y37758D01* X22379Y37762D01* X22403Y37774D01* X22429Y37784D01* X22455Y37791D01* X22481Y37796D01* X22507Y37799D01* Y37200D01* X22487Y37202D01* X22460Y37207D01* X22434Y37214D01* X22408Y37223D01* X22384Y37235D01* X22376Y37238D01* X22367Y37240D01* X22358Y37240D01* X22350Y37239D01* X22341Y37237D01* X22337Y37234D01* Y37759D01* G37* G36* Y37147D02*X22337Y37146D01* X22369Y37131D01* X22403Y37118D01* X22438Y37109D01* X22474Y37103D01* X22507Y37100D01* Y35897D01* X22487Y35895D01* X22451Y35889D01* X22417Y35879D01* X22383Y35866D01* X22351Y35849D01* X22343Y35845D01* X22337Y35839D01* X22337Y35838D01* Y37147D01* G37* G36* Y35774D02*X22342Y35768D01* X22349Y35763D01* X22357Y35759D01* X22365Y35757D01* X22374Y35756D01* X22383Y35756D01* X22391Y35758D01* X22399Y35762D01* X22423Y35774D01* X22449Y35784D01* X22475Y35791D01* X22501Y35796D01* X22507Y35797D01* Y35202D01* X22507Y35202D01* X22480Y35207D01* X22454Y35214D01* X22428Y35223D01* X22404Y35235D01* X22396Y35238D01* X22387Y35240D01* X22378Y35240D01* X22370Y35239D01* X22361Y35237D01* X22354Y35233D01* X22347Y35228D01* X22341Y35221D01* X22337Y35215D01* Y35774D01* G37* G36* Y35167D02*X22338Y35164D01* X22343Y35157D01* X22349Y35151D01* X22357Y35146D01* X22389Y35131D01* X22417Y35121D01* Y33871D01* X22403Y33866D01* X22371Y33849D01* X22363Y33845D01* X22357Y33839D01* X22352Y33832D01* X22348Y33824D01* X22346Y33815D01* X22345Y33807D01* X22345Y33798D01* X22348Y33790D01* X22351Y33782D01* X22356Y33774D01* X22362Y33768D01* X22369Y33763D01* X22377Y33759D01* X22385Y33757D01* X22394Y33756D01* X22403Y33756D01* X22411Y33758D01* X22417Y33761D01* Y33238D01* X22416Y33238D01* X22407Y33240D01* X22398Y33240D01* X22390Y33239D01* X22381Y33237D01* X22374Y33233D01* X22367Y33228D01* X22361Y33221D01* X22356Y33214D01* X22353Y33206D01* X22351Y33197D01* X22350Y33189D01* X22351Y33180D01* X22354Y33172D01* X22358Y33164D01* X22363Y33157D01* X22369Y33151D01* X22377Y33146D01* X22409Y33131D01* X22417Y33128D01* Y31862D01* X22391Y31849D01* X22383Y31845D01* X22377Y31839D01* X22372Y31832D01* X22368Y31824D01* X22366Y31815D01* X22365Y31807D01* X22365Y31798D01* X22368Y31790D01* X22371Y31782D01* X22376Y31774D01* X22382Y31768D01* X22389Y31763D01* X22397Y31759D01* X22405Y31757D01* X22414Y31756D01* X22417Y31756D01* Y31240D01* X22410Y31239D01* X22401Y31237D01* X22394Y31233D01* X22387Y31228D01* X22381Y31221D01* X22376Y31214D01* X22373Y31206D01* X22371Y31197D01* X22370Y31189D01* X22371Y31180D01* X22374Y31172D01* X22378Y31164D01* X22383Y31157D01* X22389Y31151D01* X22397Y31146D01* X22417Y31137D01* Y29852D01* X22411Y29849D01* X22403Y29845D01* X22397Y29839D01* X22392Y29832D01* X22388Y29824D01* X22386Y29815D01* X22385Y29807D01* X22385Y29798D01* X22388Y29790D01* X22391Y29782D01* X22396Y29774D01* X22402Y29768D01* X22409Y29763D01* X22417Y29759D01* Y29234D01* X22414Y29233D01* X22407Y29228D01* X22401Y29221D01* X22396Y29214D01* X22393Y29206D01* X22391Y29197D01* X22390Y29189D01* X22391Y29180D01* X22394Y29172D01* X22398Y29164D01* X22403Y29157D01* X22409Y29151D01* X22417Y29147D01* Y27838D01* X22412Y27832D01* X22408Y27824D01* X22406Y27815D01* X22405Y27807D01* X22405Y27798D01* X22408Y27790D01* X22411Y27782D01* X22416Y27774D01* X22417Y27774D01* Y27215D01* X22416Y27214D01* X22413Y27206D01* X22411Y27197D01* X22410Y27189D01* X22411Y27180D01* X22414Y27172D01* X22417Y27167D01* Y21692D01* X22413Y21697D01* X22406Y21703D01* X22399Y21708D01* X22391Y21711D01* X22382Y21713D01* X22374Y21714D01* X22365Y21713D01* X22357Y21710D01* X22349Y21706D01* X22342Y21701D01* X22337Y21695D01* Y23285D01* X22340Y23283D01* X22349Y23281D01* X22357Y23280D01* X22366Y23281D01* X22375Y23283D01* X22383Y23286D01* X22390Y23291D01* X22396Y23297D01* X22401Y23304D01* X22405Y23312D01* X22407Y23320D01* X22408Y23329D01* X22408Y23338D01* X22406Y23346D01* X22402Y23354D01* X22390Y23378D01* X22380Y23404D01* X22373Y23430D01* X22368Y23456D01* X22365Y23483D01* X22365Y23511D01* X22367Y23538D01* X22372Y23564D01* X22379Y23590D01* X22388Y23616D01* X22400Y23640D01* X22403Y23649D01* X22405Y23657D01* X22405Y23666D01* X22404Y23674D01* X22402Y23683D01* X22398Y23690D01* X22393Y23697D01* X22386Y23703D01* X22379Y23708D01* X22371Y23711D01* X22362Y23713D01* X22354Y23714D01* X22345Y23713D01* X22337Y23710D01* X22337Y23710D01* Y25280D01* X22337Y25280D01* X22346Y25281D01* X22355Y25283D01* X22363Y25286D01* X22370Y25291D01* X22376Y25297D01* X22381Y25304D01* X22385Y25312D01* X22387Y25320D01* X22388Y25329D01* X22388Y25338D01* X22386Y25346D01* X22382Y25354D01* X22370Y25378D01* X22360Y25404D01* X22353Y25430D01* X22348Y25456D01* X22345Y25483D01* X22345Y25511D01* X22347Y25538D01* X22352Y25564D01* X22359Y25590D01* X22368Y25616D01* X22380Y25640D01* X22383Y25649D01* X22385Y25657D01* X22385Y25666D01* X22384Y25674D01* X22382Y25683D01* X22378Y25690D01* X22373Y25697D01* X22366Y25703D01* X22359Y25708D01* X22351Y25711D01* X22342Y25713D01* X22337Y25714D01* Y27284D01* X22343Y27286D01* X22350Y27291D01* X22356Y27297D01* X22361Y27304D01* X22365Y27312D01* X22367Y27320D01* X22368Y27329D01* X22368Y27338D01* X22366Y27346D01* X22362Y27354D01* X22350Y27378D01* X22340Y27404D01* X22337Y27417D01* Y27583D01* X22339Y27590D01* X22348Y27616D01* X22360Y27640D01* X22363Y27649D01* X22365Y27657D01* X22365Y27666D01* X22364Y27674D01* X22362Y27683D01* X22358Y27690D01* X22353Y27697D01* X22346Y27703D01* X22339Y27708D01* X22337Y27709D01* Y29298D01* X22341Y29304D01* X22345Y29312D01* X22347Y29320D01* X22348Y29329D01* X22348Y29338D01* X22346Y29346D01* X22342Y29354D01* X22337Y29365D01* Y29634D01* X22340Y29640D01* X22343Y29649D01* X22345Y29657D01* X22345Y29666D01* X22344Y29674D01* X22342Y29683D01* X22338Y29690D01* X22337Y29692D01* Y35167D01* G37* G36* X22417Y13695D02*X22416Y13695D01* X22411Y13687D01* X22396Y13655D01* X22383Y13621D01* X22374Y13586D01* X22368Y13550D01* X22365Y13514D01* X22365Y13478D01* X22369Y13442D01* X22375Y13407D01* X22385Y13372D01* X22399Y13338D01* X22415Y13306D01* X22417Y13303D01* Y11656D01* X22416Y11655D01* X22403Y11621D01* X22394Y11586D01* X22388Y11550D01* X22385Y11514D01* X22385Y11478D01* X22389Y11442D01* X22395Y11407D01* X22405Y11372D01* X22417Y11343D01* Y9596D01* X22414Y9586D01* X22408Y9550D01* X22405Y9514D01* X22405Y9478D01* X22409Y9442D01* X22415Y9407D01* X22417Y9403D01* Y0D01* X22337D01* Y17403D01* X22345Y17372D01* X22359Y17338D01* X22375Y17306D01* X22379Y17299D01* X22385Y17292D01* X22393Y17287D01* X22400Y17283D01* X22409Y17281D01* X22417Y17280D01* Y15710D01* X22409Y15706D01* X22402Y15701D01* X22396Y15695D01* X22391Y15687D01* X22376Y15655D01* X22363Y15621D01* X22354Y15586D01* X22348Y15550D01* X22345Y15514D01* X22345Y15478D01* X22349Y15442D01* X22355Y15407D01* X22365Y15372D01* X22379Y15338D01* X22395Y15306D01* X22399Y15299D01* X22405Y15292D01* X22413Y15287D01* X22417Y15285D01* Y13695D01* G37* G36* Y17714D02*X22414Y17714D01* X22405Y17713D01* X22397Y17710D01* X22389Y17706D01* X22382Y17701D01* X22376Y17695D01* X22371Y17687D01* X22356Y17655D01* X22343Y17621D01* X22337Y17596D01* Y19343D01* X22339Y19338D01* X22355Y19306D01* X22359Y19299D01* X22365Y19292D01* X22373Y19287D01* X22380Y19283D01* X22389Y19281D01* X22397Y19280D01* X22406Y19281D01* X22415Y19283D01* X22417Y19284D01* Y17714D01* G37* G36* Y19417D02*X22413Y19430D01* X22408Y19456D01* X22405Y19483D01* X22405Y19511D01* X22407Y19538D01* X22412Y19564D01* X22417Y19583D01* Y19417D01* G37* G36* Y19709D02*X22411Y19711D01* X22402Y19713D01* X22394Y19714D01* X22385Y19713D01* X22377Y19710D01* X22369Y19706D01* X22362Y19701D01* X22356Y19695D01* X22351Y19687D01* X22337Y19656D01* Y21303D01* X22339Y21299D01* X22345Y21292D01* X22353Y21287D01* X22360Y21283D01* X22369Y21281D01* X22377Y21280D01* X22386Y21281D01* X22395Y21283D01* X22403Y21286D01* X22410Y21291D01* X22416Y21297D01* X22417Y21298D01* Y19709D01* G37* G36* Y21365D02*X22410Y21378D01* X22400Y21404D01* X22393Y21430D01* X22388Y21456D01* X22385Y21483D01* X22385Y21511D01* X22387Y21538D01* X22392Y21564D01* X22399Y21590D01* X22408Y21616D01* X22417Y21634D01* Y21365D01* G37* G36* Y35121D02*X22423Y35118D01* X22458Y35109D01* X22494Y35103D01* X22507Y35102D01* Y33895D01* X22507D01* X22471Y33889D01* X22437Y33879D01* X22417Y33871D01* Y35121D01* G37* G36* Y33761D02*X22419Y33762D01* X22443Y33774D01* X22469Y33784D01* X22495Y33791D01* X22507Y33794D01* Y33205D01* X22500Y33207D01* X22474Y33214D01* X22448Y33223D01* X22424Y33235D01* X22417Y33238D01* Y33761D01* G37* G36* Y33128D02*X22443Y33118D01* X22478Y33109D01* X22507Y33104D01* Y31892D01* X22491Y31889D01* X22457Y31879D01* X22423Y31866D01* X22417Y31862D01* Y33128D01* G37* G36* Y31756D02*X22423Y31756D01* X22431Y31758D01* X22439Y31762D01* X22463Y31774D01* X22489Y31784D01* X22507Y31789D01* Y31210D01* X22494Y31214D01* X22468Y31223D01* X22444Y31235D01* X22436Y31238D01* X22427Y31240D01* X22418Y31240D01* X22417Y31240D01* Y31756D01* G37* G36* Y31137D02*X22429Y31131D01* X22463Y31118D01* X22498Y31109D01* X22507Y31107D01* Y29887D01* X22477Y29879D01* X22443Y29866D01* X22417Y29852D01* Y31137D01* G37* G36* Y29759D02*X22417Y29759D01* X22425Y29757D01* X22434Y29756D01* X22443Y29756D01* X22451Y29758D01* X22459Y29762D01* X22483Y29774D01* X22507Y29783D01* Y29216D01* X22488Y29223D01* X22464Y29235D01* X22456Y29238D01* X22447Y29240D01* X22438Y29240D01* X22430Y29239D01* X22421Y29237D01* X22417Y29234D01* Y29759D01* G37* G36* Y29147D02*X22417Y29146D01* X22449Y29131D01* X22483Y29118D01* X22507Y29112D01* Y27882D01* X22497Y27879D01* X22463Y27866D01* X22431Y27849D01* X22423Y27845D01* X22417Y27839D01* X22417Y27838D01* Y29147D01* G37* G36* Y27774D02*X22422Y27768D01* X22429Y27763D01* X22437Y27759D01* X22445Y27757D01* X22454Y27756D01* X22463Y27756D01* X22471Y27758D01* X22479Y27762D01* X22503Y27774D01* X22507Y27776D01* Y27223D01* X22484Y27235D01* X22476Y27238D01* X22467Y27240D01* X22458Y27240D01* X22450Y27239D01* X22441Y27237D01* X22434Y27233D01* X22427Y27228D01* X22421Y27221D01* X22417Y27215D01* Y27774D01* G37* G36* Y27167D02*X22418Y27164D01* X22423Y27157D01* X22429Y27151D01* X22437Y27146D01* X22469Y27131D01* X22503Y27118D01* X22507Y27117D01* Y25875D01* X22483Y25866D01* X22451Y25849D01* X22443Y25845D01* X22437Y25839D01* X22432Y25832D01* X22428Y25824D01* X22426Y25815D01* X22425Y25807D01* X22425Y25798D01* X22428Y25790D01* X22431Y25782D01* X22436Y25774D01* X22442Y25768D01* X22449Y25763D01* X22457Y25759D01* X22465Y25757D01* X22474Y25756D01* X22483Y25756D01* X22491Y25758D01* X22499Y25762D01* X22507Y25766D01* Y25233D01* X22504Y25235D01* X22496Y25238D01* X22487Y25240D01* X22478Y25240D01* X22470Y25239D01* X22461Y25237D01* X22454Y25233D01* X22447Y25228D01* X22441Y25221D01* X22436Y25214D01* X22433Y25206D01* X22431Y25197D01* X22430Y25189D01* X22431Y25180D01* X22434Y25172D01* X22438Y25164D01* X22443Y25157D01* X22449Y25151D01* X22457Y25146D01* X22489Y25131D01* X22507Y25124D01* Y23867D01* X22503Y23866D01* X22471Y23849D01* X22463Y23845D01* X22457Y23839D01* X22452Y23832D01* X22448Y23824D01* X22446Y23815D01* X22445Y23807D01* X22445Y23798D01* X22448Y23790D01* X22451Y23782D01* X22456Y23774D01* X22462Y23768D01* X22469Y23763D01* X22477Y23759D01* X22485Y23757D01* X22494Y23756D01* X22503Y23756D01* X22507Y23757D01* Y23240D01* X22507D01* X22498Y23240D01* X22490Y23239D01* X22481Y23237D01* X22474Y23233D01* X22467Y23228D01* X22461Y23221D01* X22456Y23214D01* X22453Y23206D01* X22451Y23197D01* X22450Y23189D01* X22451Y23180D01* X22454Y23172D01* X22458Y23164D01* X22463Y23157D01* X22469Y23151D01* X22477Y23146D01* X22507Y23132D01* Y21858D01* X22491Y21849D01* X22483Y21845D01* X22477Y21839D01* X22472Y21832D01* X22468Y21824D01* X22466Y21815D01* X22465Y21807D01* X22465Y21798D01* X22468Y21790D01* X22471Y21782D01* X22476Y21774D01* X22482Y21768D01* X22489Y21763D01* X22497Y21759D01* X22505Y21757D01* X22507Y21756D01* Y21239D01* X22501Y21237D01* X22494Y21233D01* X22487Y21228D01* X22481Y21221D01* X22476Y21214D01* X22473Y21206D01* X22471Y21197D01* X22470Y21189D01* X22471Y21180D01* X22474Y21172D01* X22478Y21164D01* X22483Y21157D01* X22489Y21151D01* X22497Y21146D01* X22507Y21141D01* Y19847D01* X22503Y19845D01* X22497Y19839D01* X22492Y19832D01* X22488Y19824D01* X22486Y19815D01* X22485Y19807D01* X22485Y19798D01* X22488Y19790D01* X22491Y19782D01* X22496Y19774D01* X22502Y19768D01* X22507Y19764D01* Y19228D01* X22507Y19228D01* X22501Y19221D01* X22496Y19214D01* X22493Y19206D01* X22491Y19197D01* X22490Y19189D01* X22491Y19180D01* X22494Y19172D01* X22498Y19164D01* X22503Y19157D01* X22507Y19153D01* Y17821D01* X22506Y17815D01* X22505Y17807D01* X22505Y17798D01* X22507Y17791D01* Y13340D01* X22506Y13346D01* X22502Y13354D01* X22490Y13378D01* X22480Y13404D01* X22473Y13430D01* X22468Y13456D01* X22465Y13483D01* X22465Y13511D01* X22467Y13538D01* X22472Y13564D01* X22479Y13590D01* X22488Y13616D01* X22500Y13640D01* X22503Y13649D01* X22505Y13657D01* X22505Y13666D01* X22504Y13674D01* X22502Y13683D01* X22498Y13690D01* X22493Y13697D01* X22486Y13703D01* X22479Y13708D01* X22471Y13711D01* X22462Y13713D01* X22454Y13714D01* X22445Y13713D01* X22437Y13710D01* X22429Y13706D01* X22422Y13701D01* X22417Y13695D01* Y15285D01* X22420Y15283D01* X22429Y15281D01* X22437Y15280D01* X22446Y15281D01* X22455Y15283D01* X22463Y15286D01* X22470Y15291D01* X22476Y15297D01* X22481Y15304D01* X22485Y15312D01* X22487Y15320D01* X22488Y15329D01* X22488Y15338D01* X22486Y15346D01* X22482Y15354D01* X22470Y15378D01* X22460Y15404D01* X22453Y15430D01* X22448Y15456D01* X22445Y15483D01* X22445Y15511D01* X22447Y15538D01* X22452Y15564D01* X22459Y15590D01* X22468Y15616D01* X22480Y15640D01* X22483Y15649D01* X22485Y15657D01* X22485Y15666D01* X22484Y15674D01* X22482Y15683D01* X22478Y15690D01* X22473Y15697D01* X22466Y15703D01* X22459Y15708D01* X22451Y15711D01* X22442Y15713D01* X22434Y15714D01* X22425Y15713D01* X22417Y15710D01* X22417Y15710D01* Y17280D01* X22417Y17280D01* X22426Y17281D01* X22435Y17283D01* X22443Y17286D01* X22450Y17291D01* X22456Y17297D01* X22461Y17304D01* X22465Y17312D01* X22467Y17320D01* X22468Y17329D01* X22468Y17338D01* X22466Y17346D01* X22462Y17354D01* X22450Y17378D01* X22440Y17404D01* X22433Y17430D01* X22428Y17456D01* X22425Y17483D01* X22425Y17511D01* X22427Y17538D01* X22432Y17564D01* X22439Y17590D01* X22448Y17616D01* X22460Y17640D01* X22463Y17649D01* X22465Y17657D01* X22465Y17666D01* X22464Y17674D01* X22462Y17683D01* X22458Y17690D01* X22453Y17697D01* X22446Y17703D01* X22439Y17708D01* X22431Y17711D01* X22422Y17713D01* X22417Y17714D01* Y19284D01* X22423Y19286D01* X22430Y19291D01* X22436Y19297D01* X22441Y19304D01* X22445Y19312D01* X22447Y19320D01* X22448Y19329D01* X22448Y19338D01* X22446Y19346D01* X22442Y19354D01* X22430Y19378D01* X22420Y19404D01* X22417Y19417D01* Y19583D01* X22419Y19590D01* X22428Y19616D01* X22440Y19640D01* X22443Y19649D01* X22445Y19657D01* X22445Y19666D01* X22444Y19674D01* X22442Y19683D01* X22438Y19690D01* X22433Y19697D01* X22426Y19703D01* X22419Y19708D01* X22417Y19709D01* Y21298D01* X22421Y21304D01* X22425Y21312D01* X22427Y21320D01* X22428Y21329D01* X22428Y21338D01* X22426Y21346D01* X22422Y21354D01* X22417Y21365D01* Y21634D01* X22420Y21640D01* X22423Y21649D01* X22425Y21657D01* X22425Y21666D01* X22424Y21674D01* X22422Y21683D01* X22418Y21690D01* X22417Y21692D01* Y27167D01* G37* G36* Y13303D02*X22419Y13299D01* X22425Y13292D01* X22433Y13287D01* X22440Y13283D01* X22449Y13281D01* X22457Y13280D01* X22466Y13281D01* X22475Y13283D01* X22483Y13286D01* X22490Y13291D01* X22496Y13297D01* X22501Y13304D01* X22505Y13312D01* X22507Y13320D01* Y11702D01* X22506Y11703D01* X22499Y11708D01* X22491Y11711D01* X22482Y11713D01* X22474Y11714D01* X22465Y11713D01* X22457Y11710D01* X22449Y11706D01* X22442Y11701D01* X22436Y11695D01* X22431Y11687D01* X22417Y11656D01* Y13303D01* G37* G36* Y11343D02*X22419Y11338D01* X22435Y11306D01* X22439Y11299D01* X22445Y11292D01* X22453Y11287D01* X22460Y11283D01* X22469Y11281D01* X22477Y11280D01* X22486Y11281D01* X22495Y11283D01* X22503Y11286D01* X22507Y11289D01* Y9712D01* X22502Y9713D01* X22494Y9714D01* X22485Y9713D01* X22477Y9710D01* X22469Y9706D01* X22462Y9701D01* X22456Y9695D01* X22451Y9687D01* X22436Y9655D01* X22423Y9621D01* X22417Y9596D01* Y11343D01* G37* G36* Y9403D02*X22425Y9372D01* X22439Y9338D01* X22455Y9306D01* X22459Y9299D01* X22465Y9292D01* X22473Y9287D01* X22480Y9283D01* X22489Y9281D01* X22497Y9280D01* X22506Y9281D01* X22507Y9281D01* Y7713D01* X22505Y7713D01* X22497Y7710D01* X22489Y7706D01* X22482Y7701D01* X22476Y7695D01* X22471Y7687D01* X22456Y7655D01* X22443Y7621D01* X22434Y7586D01* X22428Y7550D01* X22425Y7514D01* X22425Y7478D01* X22429Y7442D01* X22435Y7407D01* X22445Y7372D01* X22459Y7338D01* X22475Y7306D01* X22479Y7299D01* X22485Y7292D01* X22493Y7287D01* X22500Y7283D01* X22507Y7281D01* Y5705D01* X22502Y5701D01* X22496Y5695D01* X22491Y5687D01* X22476Y5655D01* X22463Y5621D01* X22454Y5586D01* X22448Y5550D01* X22445Y5514D01* X22445Y5478D01* X22449Y5442D01* X22455Y5407D01* X22465Y5372D01* X22479Y5338D01* X22495Y5306D01* X22499Y5299D01* X22505Y5292D01* X22507Y5291D01* Y3679D01* X22496Y3655D01* X22483Y3621D01* X22474Y3586D01* X22468Y3550D01* X22465Y3514D01* X22465Y3478D01* X22469Y3442D01* X22475Y3407D01* X22485Y3372D01* X22499Y3338D01* X22507Y3321D01* Y1631D01* X22503Y1621D01* X22494Y1586D01* X22488Y1550D01* X22485Y1514D01* X22485Y1478D01* X22489Y1442D01* X22495Y1407D01* X22505Y1372D01* X22507Y1367D01* Y0D01* X22417D01* Y9403D01* G37* G36* X22507Y11386D02*X22500Y11404D01* X22493Y11430D01* X22488Y11456D01* X22485Y11483D01* X22485Y11511D01* X22487Y11538D01* X22492Y11564D01* X22499Y11590D01* X22507Y11614D01* Y11386D01* G37* G36* Y9460D02*X22505Y9483D01* X22505Y9511D01* X22507Y9538D01* X22507Y9539D01* Y9460D01* G37* G36* Y40000D02*X22832D01* Y39714D01* X22829Y39716D01* X22820Y39718D01* X22812Y39719D01* X22803Y39719D01* X22794Y39717D01* X22786Y39713D01* X22779Y39708D01* X22773Y39702D01* X22768Y39695D01* X22764Y39687D01* X22762Y39679D01* X22761Y39670D01* X22761Y39661D01* X22763Y39653D01* X22767Y39645D01* X22779Y39621D01* X22789Y39595D01* X22796Y39569D01* X22801Y39543D01* X22804Y39516D01* X22804Y39489D01* X22802Y39462D01* X22797Y39435D01* X22790Y39409D01* X22781Y39383D01* X22769Y39359D01* X22766Y39351D01* X22764Y39342D01* X22764Y39333D01* X22765Y39325D01* X22767Y39317D01* X22771Y39309D01* X22776Y39302D01* X22783Y39296D01* X22790Y39291D01* X22798Y39288D01* X22807Y39286D01* X22815Y39285D01* X22824Y39286D01* X22832Y39289D01* X22832Y39289D01* Y37719D01* X22832Y37719D01* X22823Y37719D01* X22814Y37717D01* X22806Y37713D01* X22799Y37708D01* X22793Y37702D01* X22788Y37695D01* X22784Y37687D01* X22782Y37679D01* X22781Y37670D01* X22781Y37661D01* X22783Y37653D01* X22787Y37645D01* X22799Y37621D01* X22809Y37595D01* X22816Y37569D01* X22821Y37543D01* X22824Y37516D01* X22824Y37489D01* X22822Y37462D01* X22817Y37435D01* X22810Y37409D01* X22801Y37383D01* X22789Y37359D01* X22786Y37351D01* X22784Y37342D01* X22784Y37333D01* X22785Y37325D01* X22787Y37317D01* X22791Y37309D01* X22796Y37302D01* X22803Y37296D01* X22810Y37291D01* X22818Y37288D01* X22827Y37286D01* X22832Y37286D01* Y35716D01* X22826Y35713D01* X22819Y35708D01* X22813Y35702D01* X22808Y35695D01* X22804Y35687D01* X22802Y35679D01* X22801Y35670D01* X22801Y35661D01* X22803Y35653D01* X22807Y35645D01* X22819Y35621D01* X22829Y35595D01* X22832Y35583D01* Y35416D01* X22830Y35409D01* X22821Y35383D01* X22809Y35359D01* X22806Y35351D01* X22804Y35342D01* X22804Y35333D01* X22805Y35325D01* X22807Y35317D01* X22811Y35309D01* X22816Y35302D01* X22823Y35296D01* X22830Y35291D01* X22832Y35290D01* Y33701D01* X22828Y33695D01* X22824Y33687D01* X22822Y33679D01* X22821Y33670D01* X22821Y33661D01* X22823Y33653D01* X22827Y33645D01* X22832Y33634D01* Y33365D01* X22829Y33359D01* X22826Y33351D01* X22824Y33342D01* X22824Y33333D01* X22825Y33325D01* X22827Y33317D01* X22831Y33309D01* X22832Y33307D01* Y27833D01* X22831Y27835D01* X22826Y27842D01* X22820Y27848D01* X22812Y27853D01* X22780Y27868D01* X22746Y27881D01* X22711Y27890D01* X22675Y27896D01* X22639Y27899D01* X22603Y27899D01* X22567Y27895D01* X22531Y27889D01* X22507Y27882D01* Y29112D01* X22518Y29109D01* X22554Y29103D01* X22590Y29100D01* X22626Y29100D01* X22662Y29104D01* X22698Y29111D01* X22732Y29121D01* X22766Y29134D01* X22798Y29150D01* X22806Y29155D01* X22812Y29161D01* X22817Y29168D01* X22821Y29175D01* X22823Y29184D01* X22824Y29193D01* X22824Y29201D01* X22821Y29210D01* X22818Y29218D01* X22813Y29225D01* X22807Y29231D01* X22800Y29236D01* X22792Y29240D01* X22784Y29243D01* X22775Y29243D01* X22766Y29243D01* X22758Y29241D01* X22750Y29237D01* X22726Y29225D01* X22700Y29215D01* X22674Y29208D01* X22648Y29203D01* X22621Y29200D01* X22594Y29200D01* X22567Y29202D01* X22540Y29207D01* X22514Y29214D01* X22507Y29216D01* Y29783D01* X22509Y29784D01* X22535Y29791D01* X22561Y29796D01* X22588Y29799D01* X22615Y29799D01* X22642Y29797D01* X22669Y29793D01* X22695Y29785D01* X22721Y29776D01* X22745Y29764D01* X22753Y29761D01* X22762Y29759D01* X22771Y29759D01* X22779Y29760D01* X22788Y29762D01* X22795Y29766D01* X22802Y29772D01* X22808Y29778D01* X22813Y29785D01* X22816Y29793D01* X22818Y29802D01* X22819Y29810D01* X22818Y29819D01* X22815Y29827D01* X22811Y29835D01* X22806Y29842D01* X22800Y29848D01* X22792Y29853D01* X22760Y29868D01* X22726Y29881D01* X22691Y29890D01* X22655Y29896D01* X22619Y29899D01* X22583Y29899D01* X22547Y29895D01* X22511Y29889D01* X22507Y29887D01* Y31107D01* X22534Y31103D01* X22570Y31100D01* X22606Y31100D01* X22642Y31104D01* X22678Y31111D01* X22712Y31121D01* X22746Y31134D01* X22778Y31150D01* X22786Y31155D01* X22792Y31161D01* X22797Y31168D01* X22801Y31175D01* X22803Y31184D01* X22804Y31193D01* X22804Y31201D01* X22801Y31210D01* X22798Y31218D01* X22793Y31225D01* X22787Y31231D01* X22780Y31236D01* X22772Y31240D01* X22764Y31243D01* X22755Y31243D01* X22746Y31243D01* X22738Y31241D01* X22730Y31237D01* X22706Y31225D01* X22680Y31215D01* X22654Y31208D01* X22628Y31203D01* X22601Y31200D01* X22574Y31200D01* X22547Y31202D01* X22520Y31207D01* X22507Y31210D01* Y31789D01* X22515Y31791D01* X22541Y31796D01* X22568Y31799D01* X22595Y31799D01* X22622Y31797D01* X22649Y31793D01* X22675Y31785D01* X22701Y31776D01* X22725Y31764D01* X22733Y31761D01* X22742Y31759D01* X22751Y31759D01* X22759Y31760D01* X22768Y31762D01* X22775Y31766D01* X22782Y31772D01* X22788Y31778D01* X22793Y31785D01* X22796Y31793D01* X22798Y31802D01* X22799Y31810D01* X22798Y31819D01* X22795Y31827D01* X22791Y31835D01* X22786Y31842D01* X22780Y31848D01* X22772Y31853D01* X22740Y31868D01* X22706Y31881D01* X22671Y31890D01* X22635Y31896D01* X22599Y31899D01* X22563Y31899D01* X22527Y31895D01* X22507Y31892D01* Y33104D01* X22514Y33103D01* X22550Y33100D01* X22586Y33100D01* X22622Y33104D01* X22658Y33111D01* X22692Y33121D01* X22726Y33134D01* X22758Y33150D01* X22766Y33155D01* X22772Y33161D01* X22777Y33168D01* X22781Y33175D01* X22783Y33184D01* X22784Y33193D01* X22784Y33201D01* X22781Y33210D01* X22778Y33218D01* X22773Y33225D01* X22767Y33231D01* X22760Y33236D01* X22752Y33240D01* X22744Y33243D01* X22735Y33243D01* X22726Y33243D01* X22718Y33241D01* X22710Y33237D01* X22686Y33225D01* X22660Y33215D01* X22634Y33208D01* X22608Y33203D01* X22581Y33200D01* X22554Y33200D01* X22527Y33202D01* X22507Y33205D01* Y33794D01* X22521Y33796D01* X22548Y33799D01* X22575Y33799D01* X22602Y33797D01* X22629Y33793D01* X22655Y33785D01* X22681Y33776D01* X22705Y33764D01* X22713Y33761D01* X22722Y33759D01* X22731Y33759D01* X22739Y33760D01* X22748Y33762D01* X22755Y33766D01* X22762Y33772D01* X22768Y33778D01* X22773Y33785D01* X22776Y33793D01* X22778Y33802D01* X22779Y33810D01* X22778Y33819D01* X22775Y33827D01* X22771Y33835D01* X22766Y33842D01* X22760Y33848D01* X22752Y33853D01* X22720Y33868D01* X22686Y33881D01* X22651Y33890D01* X22615Y33896D01* X22579Y33899D01* X22543Y33899D01* X22507Y33895D01* Y35102D01* X22530Y35100D01* X22566Y35100D01* X22602Y35104D01* X22638Y35111D01* X22672Y35121D01* X22706Y35134D01* X22738Y35150D01* X22746Y35155D01* X22752Y35161D01* X22757Y35168D01* X22761Y35175D01* X22763Y35184D01* X22764Y35193D01* X22764Y35201D01* X22761Y35210D01* X22758Y35218D01* X22753Y35225D01* X22747Y35231D01* X22740Y35236D01* X22732Y35240D01* X22724Y35243D01* X22715Y35243D01* X22706Y35243D01* X22698Y35241D01* X22690Y35237D01* X22666Y35225D01* X22640Y35215D01* X22614Y35208D01* X22588Y35203D01* X22561Y35200D01* X22534Y35200D01* X22507Y35202D01* Y35797D01* X22528Y35799D01* X22555Y35799D01* X22582Y35797D01* X22609Y35793D01* X22635Y35785D01* X22661Y35776D01* X22685Y35764D01* X22693Y35761D01* X22702Y35759D01* X22711Y35759D01* X22719Y35760D01* X22728Y35762D01* X22735Y35766D01* X22742Y35772D01* X22748Y35778D01* X22753Y35785D01* X22756Y35793D01* X22758Y35802D01* X22759Y35810D01* X22758Y35819D01* X22755Y35827D01* X22751Y35835D01* X22746Y35842D01* X22740Y35848D01* X22732Y35853D01* X22700Y35868D01* X22666Y35881D01* X22631Y35890D01* X22595Y35896D01* X22559Y35899D01* X22523Y35899D01* X22507Y35897D01* Y37100D01* X22510Y37100D01* X22546Y37100D01* X22582Y37104D01* X22618Y37111D01* X22652Y37121D01* X22686Y37134D01* X22718Y37150D01* X22726Y37155D01* X22732Y37161D01* X22737Y37168D01* X22741Y37175D01* X22743Y37184D01* X22744Y37193D01* X22744Y37201D01* X22741Y37210D01* X22738Y37218D01* X22733Y37225D01* X22727Y37231D01* X22720Y37236D01* X22712Y37240D01* X22704Y37243D01* X22695Y37243D01* X22686Y37243D01* X22678Y37241D01* X22670Y37237D01* X22646Y37225D01* X22620Y37215D01* X22594Y37208D01* X22568Y37203D01* X22541Y37200D01* X22514Y37200D01* X22507Y37200D01* Y37799D01* X22508Y37799D01* X22535Y37799D01* X22562Y37797D01* X22589Y37793D01* X22615Y37785D01* X22641Y37776D01* X22665Y37764D01* X22673Y37761D01* X22682Y37759D01* X22691Y37759D01* X22699Y37760D01* X22708Y37762D01* X22715Y37766D01* X22722Y37772D01* X22728Y37778D01* X22733Y37785D01* X22736Y37793D01* X22738Y37802D01* X22739Y37810D01* X22738Y37819D01* X22735Y37827D01* X22731Y37835D01* X22726Y37842D01* X22720Y37848D01* X22712Y37853D01* X22680Y37868D01* X22646Y37881D01* X22611Y37890D01* X22575Y37896D01* X22539Y37899D01* X22507Y37899D01* Y39100D01* X22526Y39100D01* X22562Y39104D01* X22598Y39111D01* X22632Y39121D01* X22666Y39134D01* X22698Y39150D01* X22706Y39155D01* X22712Y39161D01* X22717Y39168D01* X22721Y39175D01* X22723Y39184D01* X22724Y39193D01* X22724Y39201D01* X22721Y39210D01* X22718Y39218D01* X22713Y39225D01* X22707Y39231D01* X22700Y39236D01* X22692Y39240D01* X22684Y39243D01* X22675Y39243D01* X22666Y39243D01* X22658Y39241D01* X22650Y39237D01* X22626Y39225D01* X22600Y39215D01* X22574Y39208D01* X22548Y39203D01* X22521Y39200D01* X22507Y39200D01* Y39799D01* X22515Y39799D01* X22542Y39797D01* X22569Y39793D01* X22595Y39785D01* X22621Y39776D01* X22645Y39764D01* X22653Y39761D01* X22662Y39759D01* X22671Y39759D01* X22679Y39760D01* X22688Y39762D01* X22695Y39766D01* X22702Y39772D01* X22708Y39778D01* X22713Y39785D01* X22716Y39793D01* X22718Y39802D01* X22719Y39810D01* X22718Y39819D01* X22715Y39827D01* X22711Y39835D01* X22706Y39842D01* X22700Y39848D01* X22692Y39853D01* X22660Y39868D01* X22626Y39881D01* X22591Y39890D01* X22555Y39896D01* X22519Y39899D01* X22507Y39899D01* Y40000D01* G37* G36* X22832Y0D02*X22507D01* Y1367D01* X22519Y1338D01* X22535Y1306D01* X22539Y1299D01* X22545Y1292D01* X22553Y1287D01* X22560Y1283D01* X22569Y1281D01* X22577Y1280D01* X22586Y1281D01* X22595Y1283D01* X22603Y1286D01* X22610Y1291D01* X22616Y1297D01* X22621Y1304D01* X22625Y1312D01* X22627Y1320D01* X22628Y1329D01* X22628Y1338D01* X22626Y1346D01* X22622Y1354D01* X22610Y1378D01* X22600Y1404D01* X22593Y1430D01* X22588Y1456D01* X22585Y1483D01* X22585Y1511D01* X22587Y1538D01* X22592Y1564D01* X22599Y1590D01* X22608Y1616D01* X22620Y1640D01* X22623Y1649D01* X22625Y1657D01* X22625Y1666D01* X22624Y1674D01* X22622Y1683D01* X22618Y1690D01* X22613Y1697D01* X22606Y1703D01* X22599Y1708D01* X22591Y1711D01* X22582Y1713D01* X22574Y1714D01* X22565Y1713D01* X22557Y1710D01* X22549Y1706D01* X22542Y1701D01* X22536Y1695D01* X22531Y1687D01* X22516Y1655D01* X22507Y1631D01* Y3321D01* X22515Y3306D01* X22519Y3299D01* X22525Y3292D01* X22533Y3287D01* X22540Y3283D01* X22549Y3281D01* X22557Y3280D01* X22566Y3281D01* X22575Y3283D01* X22583Y3286D01* X22590Y3291D01* X22596Y3297D01* X22601Y3304D01* X22605Y3312D01* X22607Y3320D01* X22608Y3329D01* X22608Y3338D01* X22606Y3346D01* X22602Y3354D01* X22590Y3378D01* X22580Y3404D01* X22573Y3430D01* X22568Y3456D01* X22565Y3483D01* X22565Y3511D01* X22567Y3538D01* X22572Y3564D01* X22579Y3590D01* X22588Y3616D01* X22600Y3640D01* X22603Y3649D01* X22605Y3657D01* X22605Y3666D01* X22604Y3674D01* X22602Y3683D01* X22598Y3690D01* X22593Y3697D01* X22586Y3703D01* X22579Y3708D01* X22571Y3711D01* X22562Y3713D01* X22554Y3714D01* X22545Y3713D01* X22537Y3710D01* X22529Y3706D01* X22522Y3701D01* X22516Y3695D01* X22511Y3687D01* X22507Y3679D01* Y5291D01* X22513Y5287D01* X22520Y5283D01* X22529Y5281D01* X22537Y5280D01* X22546Y5281D01* X22555Y5283D01* X22563Y5286D01* X22570Y5291D01* X22576Y5297D01* X22581Y5304D01* X22585Y5312D01* X22587Y5320D01* X22588Y5329D01* X22588Y5338D01* X22586Y5346D01* X22582Y5354D01* X22570Y5378D01* X22560Y5404D01* X22553Y5430D01* X22548Y5456D01* X22545Y5483D01* X22545Y5511D01* X22547Y5538D01* X22552Y5564D01* X22559Y5590D01* X22568Y5616D01* X22580Y5640D01* X22583Y5649D01* X22585Y5657D01* X22585Y5666D01* X22584Y5674D01* X22582Y5683D01* X22578Y5690D01* X22573Y5697D01* X22566Y5703D01* X22559Y5708D01* X22551Y5711D01* X22542Y5713D01* X22534Y5714D01* X22525Y5713D01* X22517Y5710D01* X22509Y5706D01* X22507Y5705D01* Y7281D01* X22509Y7281D01* X22517Y7280D01* X22526Y7281D01* X22535Y7283D01* X22543Y7286D01* X22550Y7291D01* X22556Y7297D01* X22561Y7304D01* X22565Y7312D01* X22567Y7320D01* X22568Y7329D01* X22568Y7338D01* X22566Y7346D01* X22562Y7354D01* X22550Y7378D01* X22540Y7404D01* X22533Y7430D01* X22528Y7456D01* X22525Y7483D01* X22525Y7511D01* X22527Y7538D01* X22532Y7564D01* X22539Y7590D01* X22548Y7616D01* X22560Y7640D01* X22563Y7649D01* X22565Y7657D01* X22565Y7666D01* X22564Y7674D01* X22562Y7683D01* X22558Y7690D01* X22553Y7697D01* X22546Y7703D01* X22539Y7708D01* X22531Y7711D01* X22522Y7713D01* X22514Y7714D01* X22507Y7713D01* Y9281D01* X22515Y9283D01* X22523Y9286D01* X22530Y9291D01* X22536Y9297D01* X22541Y9304D01* X22545Y9312D01* X22547Y9320D01* X22548Y9329D01* X22548Y9338D01* X22546Y9346D01* X22542Y9354D01* X22530Y9378D01* X22520Y9404D01* X22513Y9430D01* X22508Y9456D01* X22507Y9460D01* Y9539D01* X22512Y9564D01* X22519Y9590D01* X22528Y9616D01* X22540Y9640D01* X22543Y9649D01* X22545Y9657D01* X22545Y9666D01* X22544Y9674D01* X22542Y9683D01* X22538Y9690D01* X22533Y9697D01* X22526Y9703D01* X22519Y9708D01* X22511Y9711D01* X22507Y9712D01* Y11289D01* X22510Y11291D01* X22516Y11297D01* X22521Y11304D01* X22525Y11312D01* X22527Y11320D01* X22528Y11329D01* X22528Y11338D01* X22526Y11346D01* X22522Y11354D01* X22510Y11378D01* X22507Y11386D01* Y11614D01* X22508Y11616D01* X22520Y11640D01* X22523Y11649D01* X22525Y11657D01* X22525Y11666D01* X22524Y11674D01* X22522Y11683D01* X22518Y11690D01* X22513Y11697D01* X22507Y11702D01* Y13320D01* X22507Y13320D01* X22508Y13329D01* X22508Y13338D01* X22507Y13340D01* Y17791D01* X22508Y17790D01* X22511Y17782D01* X22516Y17774D01* X22522Y17768D01* X22529Y17763D01* X22537Y17759D01* X22545Y17757D01* X22554Y17756D01* X22563Y17756D01* X22571Y17758D01* X22579Y17762D01* X22603Y17774D01* X22629Y17784D01* X22655Y17791D01* X22681Y17796D01* X22708Y17799D01* X22735Y17799D01* X22762Y17797D01* X22789Y17793D01* X22815Y17785D01* X22832Y17779D01* Y17220D01* X22820Y17215D01* X22794Y17208D01* X22768Y17203D01* X22741Y17200D01* X22714Y17200D01* X22687Y17202D01* X22660Y17207D01* X22634Y17214D01* X22608Y17223D01* X22584Y17235D01* X22576Y17238D01* X22567Y17240D01* X22558Y17240D01* X22550Y17239D01* X22541Y17237D01* X22534Y17233D01* X22527Y17228D01* X22521Y17221D01* X22516Y17214D01* X22513Y17206D01* X22511Y17197D01* X22510Y17189D01* X22511Y17180D01* X22514Y17172D01* X22518Y17164D01* X22523Y17157D01* X22529Y17151D01* X22537Y17146D01* X22569Y17131D01* X22603Y17118D01* X22638Y17109D01* X22674Y17103D01* X22710Y17100D01* X22746Y17100D01* X22782Y17104D01* X22818Y17111D01* X22832Y17115D01* Y15890D01* X22831Y15890D01* X22795Y15896D01* X22759Y15899D01* X22723Y15899D01* X22687Y15895D01* X22651Y15889D01* X22617Y15879D01* X22583Y15866D01* X22551Y15849D01* X22543Y15845D01* X22537Y15839D01* X22532Y15832D01* X22528Y15824D01* X22526Y15815D01* X22525Y15807D01* X22525Y15798D01* X22528Y15790D01* X22531Y15782D01* X22536Y15774D01* X22542Y15768D01* X22549Y15763D01* X22557Y15759D01* X22565Y15757D01* X22574Y15756D01* X22583Y15756D01* X22591Y15758D01* X22599Y15762D01* X22623Y15774D01* X22649Y15784D01* X22675Y15791D01* X22701Y15796D01* X22728Y15799D01* X22755Y15799D01* X22782Y15797D01* X22809Y15793D01* X22832Y15786D01* Y15213D01* X22814Y15208D01* X22788Y15203D01* X22761Y15200D01* X22734Y15200D01* X22707Y15202D01* X22680Y15207D01* X22654Y15214D01* X22628Y15223D01* X22604Y15235D01* X22596Y15238D01* X22587Y15240D01* X22578Y15240D01* X22570Y15239D01* X22561Y15237D01* X22554Y15233D01* X22547Y15228D01* X22541Y15221D01* X22536Y15214D01* X22533Y15206D01* X22531Y15197D01* X22530Y15189D01* X22531Y15180D01* X22534Y15172D01* X22538Y15164D01* X22543Y15157D01* X22549Y15151D01* X22557Y15146D01* X22589Y15131D01* X22623Y15118D01* X22658Y15109D01* X22694Y15103D01* X22730Y15100D01* X22766Y15100D01* X22802Y15104D01* X22832Y15110D01* Y13893D01* X22815Y13896D01* X22779Y13899D01* X22743Y13899D01* X22707Y13895D01* X22671Y13889D01* X22637Y13879D01* X22603Y13866D01* X22571Y13849D01* X22563Y13845D01* X22557Y13839D01* X22552Y13832D01* X22548Y13824D01* X22546Y13815D01* X22545Y13807D01* X22545Y13798D01* X22548Y13790D01* X22551Y13782D01* X22556Y13774D01* X22562Y13768D01* X22569Y13763D01* X22577Y13759D01* X22585Y13757D01* X22594Y13756D01* X22603Y13756D01* X22611Y13758D01* X22619Y13762D01* X22643Y13774D01* X22669Y13784D01* X22695Y13791D01* X22721Y13796D01* X22748Y13799D01* X22775Y13799D01* X22802Y13797D01* X22829Y13793D01* X22832Y13792D01* Y13207D01* X22808Y13203D01* X22781Y13200D01* X22754Y13200D01* X22727Y13202D01* X22700Y13207D01* X22674Y13214D01* X22648Y13223D01* X22624Y13235D01* X22616Y13238D01* X22607Y13240D01* X22598Y13240D01* X22590Y13239D01* X22581Y13237D01* X22574Y13233D01* X22567Y13228D01* X22561Y13221D01* X22556Y13214D01* X22553Y13206D01* X22551Y13197D01* X22550Y13189D01* X22551Y13180D01* X22554Y13172D01* X22558Y13164D01* X22563Y13157D01* X22569Y13151D01* X22577Y13146D01* X22609Y13131D01* X22643Y13118D01* X22678Y13109D01* X22714Y13103D01* X22750Y13100D01* X22786Y13100D01* X22822Y13104D01* X22832Y13106D01* Y11897D01* X22799Y11899D01* X22763Y11899D01* X22727Y11895D01* X22691Y11889D01* X22657Y11879D01* X22623Y11866D01* X22591Y11849D01* X22583Y11845D01* X22577Y11839D01* X22572Y11832D01* X22568Y11824D01* X22566Y11815D01* X22565Y11807D01* X22565Y11798D01* X22568Y11790D01* X22571Y11782D01* X22576Y11774D01* X22582Y11768D01* X22589Y11763D01* X22597Y11759D01* X22605Y11757D01* X22614Y11756D01* X22623Y11756D01* X22631Y11758D01* X22639Y11762D01* X22663Y11774D01* X22689Y11784D01* X22715Y11791D01* X22741Y11796D01* X22768Y11799D01* X22795Y11799D01* X22822Y11797D01* X22832Y11795D01* Y11204D01* X22828Y11203D01* X22801Y11200D01* X22774Y11200D01* X22747Y11202D01* X22720Y11207D01* X22694Y11214D01* X22668Y11223D01* X22644Y11235D01* X22636Y11238D01* X22627Y11240D01* X22618Y11240D01* X22610Y11239D01* X22601Y11237D01* X22594Y11233D01* X22587Y11228D01* X22581Y11221D01* X22576Y11214D01* X22573Y11206D01* X22571Y11197D01* X22570Y11189D01* X22571Y11180D01* X22574Y11172D01* X22578Y11164D01* X22583Y11157D01* X22589Y11151D01* X22597Y11146D01* X22629Y11131D01* X22663Y11118D01* X22698Y11109D01* X22734Y11103D01* X22770Y11100D01* X22806Y11100D01* X22832Y11103D01* Y9898D01* X22819Y9899D01* X22783Y9899D01* X22747Y9895D01* X22711Y9889D01* X22677Y9879D01* X22643Y9866D01* X22611Y9849D01* X22603Y9845D01* X22597Y9839D01* X22592Y9832D01* X22588Y9824D01* X22586Y9815D01* X22585Y9807D01* X22585Y9798D01* X22588Y9790D01* X22591Y9782D01* X22596Y9774D01* X22602Y9768D01* X22609Y9763D01* X22617Y9759D01* X22625Y9757D01* X22634Y9756D01* X22643Y9756D01* X22651Y9758D01* X22659Y9762D01* X22683Y9774D01* X22709Y9784D01* X22735Y9791D01* X22761Y9796D01* X22788Y9799D01* X22815Y9799D01* X22832Y9798D01* Y9201D01* X22821Y9200D01* X22794Y9200D01* X22767Y9202D01* X22740Y9207D01* X22714Y9214D01* X22688Y9223D01* X22664Y9235D01* X22656Y9238D01* X22647Y9240D01* X22638Y9240D01* X22630Y9239D01* X22621Y9237D01* X22614Y9233D01* X22607Y9228D01* X22601Y9221D01* X22596Y9214D01* X22593Y9206D01* X22591Y9197D01* X22590Y9189D01* X22591Y9180D01* X22594Y9172D01* X22598Y9164D01* X22603Y9157D01* X22609Y9151D01* X22617Y9146D01* X22649Y9131D01* X22683Y9118D01* X22718Y9109D01* X22754Y9103D01* X22790Y9100D01* X22826Y9100D01* X22832Y9101D01* Y7899D01* X22803Y7899D01* X22767Y7895D01* X22731Y7889D01* X22697Y7879D01* X22663Y7866D01* X22631Y7849D01* X22623Y7845D01* X22617Y7839D01* X22612Y7832D01* X22608Y7824D01* X22606Y7815D01* X22605Y7807D01* X22605Y7798D01* X22608Y7790D01* X22611Y7782D01* X22616Y7774D01* X22622Y7768D01* X22629Y7763D01* X22637Y7759D01* X22645Y7757D01* X22654Y7756D01* X22663Y7756D01* X22671Y7758D01* X22679Y7762D01* X22703Y7774D01* X22729Y7784D01* X22755Y7791D01* X22781Y7796D01* X22808Y7799D01* X22832Y7799D01* Y7200D01* X22814Y7200D01* X22787Y7202D01* X22760Y7207D01* X22734Y7214D01* X22708Y7223D01* X22684Y7235D01* X22676Y7238D01* X22667Y7240D01* X22658Y7240D01* X22650Y7239D01* X22641Y7237D01* X22634Y7233D01* X22627Y7228D01* X22621Y7221D01* X22616Y7214D01* X22613Y7206D01* X22611Y7197D01* X22610Y7189D01* X22611Y7180D01* X22614Y7172D01* X22618Y7164D01* X22623Y7157D01* X22629Y7151D01* X22637Y7146D01* X22669Y7131D01* X22703Y7118D01* X22738Y7109D01* X22774Y7103D01* X22810Y7100D01* X22832Y7100D01* Y5899D01* X22823Y5899D01* X22787Y5895D01* X22751Y5889D01* X22717Y5879D01* X22683Y5866D01* X22651Y5849D01* X22643Y5845D01* X22637Y5839D01* X22632Y5832D01* X22628Y5824D01* X22626Y5815D01* X22625Y5807D01* X22625Y5798D01* X22628Y5790D01* X22631Y5782D01* X22636Y5774D01* X22642Y5768D01* X22649Y5763D01* X22657Y5759D01* X22665Y5757D01* X22674Y5756D01* X22683Y5756D01* X22691Y5758D01* X22699Y5762D01* X22723Y5774D01* X22749Y5784D01* X22775Y5791D01* X22801Y5796D01* X22828Y5799D01* X22832D01* Y5200D01* X22807Y5202D01* X22780Y5207D01* X22754Y5214D01* X22728Y5223D01* X22704Y5235D01* X22696Y5238D01* X22687Y5240D01* X22678Y5240D01* X22670Y5239D01* X22661Y5237D01* X22654Y5233D01* X22647Y5228D01* X22641Y5221D01* X22636Y5214D01* X22633Y5206D01* X22631Y5197D01* X22630Y5189D01* X22631Y5180D01* X22634Y5172D01* X22638Y5164D01* X22643Y5157D01* X22649Y5151D01* X22657Y5146D01* X22689Y5131D01* X22723Y5118D01* X22758Y5109D01* X22794Y5103D01* X22830Y5100D01* X22832D01* Y3898D01* X22807Y3895D01* X22771Y3889D01* X22737Y3879D01* X22703Y3866D01* X22671Y3849D01* X22663Y3845D01* X22657Y3839D01* X22652Y3832D01* X22648Y3824D01* X22646Y3815D01* X22645Y3807D01* X22645Y3798D01* X22648Y3790D01* X22651Y3782D01* X22656Y3774D01* X22662Y3768D01* X22669Y3763D01* X22677Y3759D01* X22685Y3757D01* X22694Y3756D01* X22703Y3756D01* X22711Y3758D01* X22719Y3762D01* X22743Y3774D01* X22769Y3784D01* X22795Y3791D01* X22821Y3796D01* X22832Y3798D01* Y3202D01* X22827Y3202D01* X22800Y3207D01* X22774Y3214D01* X22748Y3223D01* X22724Y3235D01* X22716Y3238D01* X22707Y3240D01* X22698Y3240D01* X22690Y3239D01* X22681Y3237D01* X22674Y3233D01* X22667Y3228D01* X22661Y3221D01* X22656Y3214D01* X22653Y3206D01* X22651Y3197D01* X22650Y3189D01* X22651Y3180D01* X22654Y3172D01* X22658Y3164D01* X22663Y3157D01* X22669Y3151D01* X22677Y3146D01* X22709Y3131D01* X22743Y3118D01* X22778Y3109D01* X22814Y3103D01* X22832Y3101D01* Y1896D01* X22827Y1895D01* X22791Y1889D01* X22757Y1879D01* X22723Y1866D01* X22691Y1849D01* X22683Y1845D01* X22677Y1839D01* X22672Y1832D01* X22668Y1824D01* X22666Y1815D01* X22665Y1807D01* X22665Y1798D01* X22668Y1790D01* X22671Y1782D01* X22676Y1774D01* X22682Y1768D01* X22689Y1763D01* X22697Y1759D01* X22705Y1757D01* X22714Y1756D01* X22723Y1756D01* X22731Y1758D01* X22739Y1762D01* X22763Y1774D01* X22789Y1784D01* X22815Y1791D01* X22832Y1795D01* Y1204D01* X22820Y1207D01* X22794Y1214D01* X22768Y1223D01* X22744Y1235D01* X22736Y1238D01* X22727Y1240D01* X22718Y1240D01* X22710Y1239D01* X22701Y1237D01* X22694Y1233D01* X22687Y1228D01* X22681Y1221D01* X22676Y1214D01* X22673Y1206D01* X22671Y1197D01* X22670Y1189D01* X22671Y1180D01* X22674Y1172D01* X22678Y1164D01* X22683Y1157D01* X22689Y1151D01* X22697Y1146D01* X22729Y1131D01* X22763Y1118D01* X22798Y1109D01* X22832Y1103D01* Y0D01* G37* G36* Y17884D02*X22811Y17890D01* X22775Y17896D01* X22739Y17899D01* X22703Y17899D01* X22667Y17895D01* X22631Y17889D01* X22597Y17879D01* X22563Y17866D01* X22531Y17849D01* X22523Y17845D01* X22517Y17839D01* X22512Y17832D01* X22508Y17824D01* X22507Y17821D01* Y19153D01* X22509Y19151D01* X22517Y19146D01* X22549Y19131D01* X22583Y19118D01* X22618Y19109D01* X22654Y19103D01* X22690Y19100D01* X22726Y19100D01* X22762Y19104D01* X22798Y19111D01* X22832Y19121D01* X22832D01* Y17884D01* G37* G36* Y19229D02*X22826Y19225D01* X22800Y19215D01* X22774Y19208D01* X22748Y19203D01* X22721Y19200D01* X22694Y19200D01* X22667Y19202D01* X22640Y19207D01* X22614Y19214D01* X22588Y19223D01* X22564Y19235D01* X22556Y19238D01* X22547Y19240D01* X22538Y19240D01* X22530Y19239D01* X22521Y19237D01* X22514Y19233D01* X22507Y19228D01* Y19764D01* X22509Y19763D01* X22517Y19759D01* X22525Y19757D01* X22534Y19756D01* X22543Y19756D01* X22551Y19758D01* X22559Y19762D01* X22583Y19774D01* X22609Y19784D01* X22635Y19791D01* X22661Y19796D01* X22688Y19799D01* X22715Y19799D01* X22742Y19797D01* X22769Y19793D01* X22795Y19785D01* X22821Y19776D01* X22832Y19771D01* Y19229D01* G37* G36* Y19878D02*X22826Y19881D01* X22791Y19890D01* X22755Y19896D01* X22719Y19899D01* X22683Y19899D01* X22647Y19895D01* X22611Y19889D01* X22577Y19879D01* X22543Y19866D01* X22511Y19849D01* X22507Y19847D01* Y21141D01* X22529Y21131D01* X22563Y21118D01* X22598Y21109D01* X22634Y21103D01* X22670Y21100D01* X22706Y21100D01* X22742Y21104D01* X22778Y21111D01* X22812Y21121D01* X22832Y21128D01* Y19878D01* G37* G36* Y21238D02*X22830Y21237D01* X22806Y21225D01* X22780Y21215D01* X22754Y21208D01* X22728Y21203D01* X22701Y21200D01* X22674Y21200D01* X22647Y21202D01* X22620Y21207D01* X22594Y21214D01* X22568Y21223D01* X22544Y21235D01* X22536Y21238D01* X22527Y21240D01* X22518Y21240D01* X22510Y21239D01* X22507Y21239D01* Y21756D01* X22514Y21756D01* X22523Y21756D01* X22531Y21758D01* X22539Y21762D01* X22563Y21774D01* X22589Y21784D01* X22615Y21791D01* X22641Y21796D01* X22668Y21799D01* X22695Y21799D01* X22722Y21797D01* X22749Y21793D01* X22775Y21785D01* X22801Y21776D01* X22825Y21764D01* X22832Y21762D01* Y21238D01* G37* G36* Y21871D02*X22806Y21881D01* X22771Y21890D01* X22735Y21896D01* X22699Y21899D01* X22663Y21899D01* X22627Y21895D01* X22591Y21889D01* X22557Y21879D01* X22523Y21866D01* X22507Y21858D01* Y23132D01* X22509Y23131D01* X22543Y23118D01* X22578Y23109D01* X22614Y23103D01* X22650Y23100D01* X22686Y23100D01* X22722Y23104D01* X22758Y23111D01* X22792Y23121D01* X22826Y23134D01* X22832Y23137D01* Y21871D01* G37* G36* Y23243D02*X22826Y23243D01* X22818Y23241D01* X22810Y23237D01* X22786Y23225D01* X22760Y23215D01* X22734Y23208D01* X22708Y23203D01* X22681Y23200D01* X22654Y23200D01* X22627Y23202D01* X22600Y23207D01* X22574Y23214D01* X22548Y23223D01* X22524Y23235D01* X22516Y23238D01* X22507Y23240D01* Y23757D01* X22511Y23758D01* X22519Y23762D01* X22543Y23774D01* X22569Y23784D01* X22595Y23791D01* X22621Y23796D01* X22648Y23799D01* X22675Y23799D01* X22702Y23797D01* X22729Y23793D01* X22755Y23785D01* X22781Y23776D01* X22805Y23764D01* X22813Y23761D01* X22822Y23759D01* X22831Y23759D01* X22832Y23759D01* Y23243D01* G37* G36* Y23862D02*X22820Y23868D01* X22786Y23881D01* X22751Y23890D01* X22715Y23896D01* X22679Y23899D01* X22643Y23899D01* X22607Y23895D01* X22571Y23889D01* X22537Y23879D01* X22507Y23867D01* Y25124D01* X22523Y25118D01* X22558Y25109D01* X22594Y25103D01* X22630Y25100D01* X22666Y25100D01* X22702Y25104D01* X22738Y25111D01* X22772Y25121D01* X22806Y25134D01* X22832Y25147D01* Y23862D01* G37* G36* Y25240D02*X22832Y25240D01* X22824Y25243D01* X22815Y25243D01* X22806Y25243D01* X22798Y25241D01* X22790Y25237D01* X22766Y25225D01* X22740Y25215D01* X22714Y25208D01* X22688Y25203D01* X22661Y25200D01* X22634Y25200D01* X22607Y25202D01* X22580Y25207D01* X22554Y25214D01* X22528Y25223D01* X22507Y25233D01* Y25766D01* X22523Y25774D01* X22549Y25784D01* X22575Y25791D01* X22601Y25796D01* X22628Y25799D01* X22655Y25799D01* X22682Y25797D01* X22709Y25793D01* X22735Y25785D01* X22761Y25776D01* X22785Y25764D01* X22793Y25761D01* X22802Y25759D01* X22811Y25759D01* X22819Y25760D01* X22828Y25762D01* X22832Y25765D01* Y25240D01* G37* G36* Y25853D02*X22832Y25853D01* X22800Y25868D01* X22766Y25881D01* X22731Y25890D01* X22695Y25896D01* X22659Y25899D01* X22623Y25899D01* X22587Y25895D01* X22551Y25889D01* X22517Y25879D01* X22507Y25875D01* Y27117D01* X22538Y27109D01* X22574Y27103D01* X22610Y27100D01* X22646Y27100D01* X22682Y27104D01* X22718Y27111D01* X22752Y27121D01* X22786Y27134D01* X22818Y27150D01* X22826Y27155D01* X22832Y27161D01* X22832Y27161D01* Y25853D01* G37* G36* Y27225D02*X22827Y27231D01* X22820Y27236D01* X22812Y27240D01* X22804Y27243D01* X22795Y27243D01* X22786Y27243D01* X22778Y27241D01* X22770Y27237D01* X22746Y27225D01* X22720Y27215D01* X22694Y27208D01* X22668Y27203D01* X22641Y27200D01* X22614Y27200D01* X22587Y27202D01* X22560Y27207D01* X22534Y27214D01* X22508Y27223D01* X22507Y27223D01* Y27776D01* X22529Y27784D01* X22555Y27791D01* X22581Y27796D01* X22608Y27799D01* X22635Y27799D01* X22662Y27797D01* X22689Y27793D01* X22715Y27785D01* X22741Y27776D01* X22765Y27764D01* X22773Y27761D01* X22782Y27759D01* X22791Y27759D01* X22799Y27760D01* X22808Y27762D01* X22815Y27766D01* X22822Y27772D01* X22828Y27778D01* X22832Y27784D01* Y27225D01* G37* G36* Y40000D02*X22912D01* Y37596D01* X22904Y37627D01* X22890Y37661D01* X22874Y37694D01* X22870Y37701D01* X22864Y37707D01* X22856Y37712D01* X22849Y37716D01* X22840Y37718D01* X22832Y37719D01* Y39289D01* X22840Y39293D01* X22847Y39298D01* X22853Y39305D01* X22858Y39312D01* X22873Y39344D01* X22886Y39378D01* X22895Y39413D01* X22901Y39449D01* X22904Y39485D01* X22904Y39521D01* X22900Y39557D01* X22894Y39593D01* X22884Y39627D01* X22870Y39661D01* X22854Y39694D01* X22850Y39701D01* X22844Y39707D01* X22836Y39712D01* X22832Y39714D01* Y40000D01* G37* G36* X22912Y0D02*X22832D01* Y1103D01* X22834Y1103D01* X22870Y1100D01* X22906Y1100D01* X22912Y1101D01* Y0D01* G37* G36* Y1201D02*X22901Y1200D01* X22874Y1200D01* X22847Y1202D01* X22832Y1204D01* Y1795D01* X22841Y1796D01* X22868Y1799D01* X22895Y1799D01* X22912Y1798D01* Y1201D01* G37* G36* Y1898D02*X22899Y1899D01* X22863Y1899D01* X22832Y1896D01* Y3101D01* X22850Y3100D01* X22886Y3100D01* X22912Y3103D01* Y1898D01* G37* G36* Y3204D02*X22908Y3203D01* X22881Y3200D01* X22854Y3200D01* X22832Y3202D01* Y3798D01* X22848Y3799D01* X22875Y3799D01* X22902Y3797D01* X22912Y3795D01* Y3204D01* G37* G36* Y3897D02*X22879Y3899D01* X22843Y3899D01* X22832Y3898D01* Y5100D01* X22866Y5100D01* X22902Y5104D01* X22912Y5106D01* Y3897D01* G37* G36* Y5207D02*X22888Y5203D01* X22861Y5200D01* X22834Y5200D01* X22832Y5200D01* Y5799D01* X22855Y5799D01* X22882Y5797D01* X22909Y5793D01* X22912Y5792D01* Y5207D01* G37* G36* Y5893D02*X22895Y5896D01* X22859Y5899D01* X22832Y5899D01* Y7100D01* X22846Y7100D01* X22882Y7104D01* X22912Y7110D01* Y5893D01* G37* G36* Y7213D02*X22894Y7208D01* X22868Y7203D01* X22841Y7200D01* X22832Y7200D01* Y7799D01* X22835D01* X22862Y7797D01* X22889Y7793D01* X22912Y7786D01* Y7213D01* G37* G36* Y7890D02*X22911Y7890D01* X22875Y7896D01* X22839Y7899D01* X22832Y7899D01* Y9101D01* X22862Y9104D01* X22898Y9111D01* X22912Y9115D01* Y7890D01* G37* G36* Y9220D02*X22900Y9215D01* X22874Y9208D01* X22848Y9203D01* X22832Y9201D01* Y9798D01* X22842Y9797D01* X22869Y9793D01* X22895Y9785D01* X22912Y9779D01* Y9220D01* G37* G36* Y9884D02*X22891Y9890D01* X22855Y9896D01* X22832Y9898D01* Y11103D01* X22842Y11104D01* X22878Y11111D01* X22912Y11121D01* X22912D01* Y9884D01* G37* G36* Y11229D02*X22906Y11225D01* X22880Y11215D01* X22854Y11208D01* X22832Y11204D01* Y11795D01* X22849Y11793D01* X22875Y11785D01* X22901Y11776D01* X22912Y11771D01* Y11229D01* G37* G36* Y11878D02*X22906Y11881D01* X22871Y11890D01* X22835Y11896D01* X22832Y11897D01* Y13106D01* X22858Y13111D01* X22892Y13121D01* X22912Y13128D01* Y11878D01* G37* G36* Y13238D02*X22910Y13237D01* X22886Y13225D01* X22860Y13215D01* X22834Y13208D01* X22832Y13207D01* Y13792D01* X22855Y13785D01* X22881Y13776D01* X22905Y13764D01* X22912Y13762D01* Y13238D01* G37* G36* Y13871D02*X22886Y13881D01* X22851Y13890D01* X22832Y13893D01* Y15110D01* X22838Y15111D01* X22872Y15121D01* X22906Y15134D01* X22912Y15137D01* Y13871D01* G37* G36* Y15243D02*X22906Y15243D01* X22898Y15241D01* X22890Y15237D01* X22866Y15225D01* X22840Y15215D01* X22832Y15213D01* Y15786D01* X22835Y15785D01* X22861Y15776D01* X22885Y15764D01* X22893Y15761D01* X22902Y15759D01* X22911Y15759D01* X22912Y15759D01* Y15243D01* G37* G36* Y15862D02*X22900Y15868D01* X22866Y15881D01* X22832Y15890D01* Y17115D01* X22852Y17121D01* X22886Y17134D01* X22912Y17147D01* Y15862D01* G37* G36* Y17240D02*X22912Y17240D01* X22904Y17243D01* X22895Y17243D01* X22886Y17243D01* X22878Y17241D01* X22870Y17237D01* X22846Y17225D01* X22832Y17220D01* Y17779D01* X22841Y17776D01* X22865Y17764D01* X22873Y17761D01* X22882Y17759D01* X22891Y17759D01* X22899Y17760D01* X22908Y17762D01* X22912Y17765D01* Y17240D01* G37* G36* Y17853D02*X22912Y17853D01* X22880Y17868D01* X22846Y17881D01* X22832Y17884D01* Y19121D01* X22866Y19134D01* X22898Y19150D01* X22906Y19155D01* X22912Y19161D01* X22912Y19161D01* Y17853D01* G37* G36* Y19225D02*X22907Y19231D01* X22900Y19236D01* X22892Y19240D01* X22884Y19243D01* X22875Y19243D01* X22866Y19243D01* X22858Y19241D01* X22850Y19237D01* X22832Y19229D01* Y19771D01* X22845Y19764D01* X22853Y19761D01* X22862Y19759D01* X22871Y19759D01* X22879Y19760D01* X22888Y19762D01* X22895Y19766D01* X22902Y19772D01* X22908Y19778D01* X22912Y19784D01* Y19225D01* G37* G36* Y19833D02*X22911Y19835D01* X22906Y19842D01* X22900Y19848D01* X22892Y19853D01* X22860Y19868D01* X22832Y19878D01* Y21128D01* X22846Y21134D01* X22878Y21150D01* X22886Y21155D01* X22892Y21161D01* X22897Y21168D01* X22901Y21175D01* X22903Y21184D01* X22904Y21193D01* X22904Y21201D01* X22901Y21210D01* X22898Y21218D01* X22893Y21225D01* X22887Y21231D01* X22880Y21236D01* X22872Y21240D01* X22864Y21243D01* X22855Y21243D01* X22846Y21243D01* X22838Y21241D01* X22832Y21238D01* Y21762D01* X22833Y21761D01* X22842Y21759D01* X22851Y21759D01* X22859Y21760D01* X22868Y21762D01* X22875Y21766D01* X22882Y21772D01* X22888Y21778D01* X22893Y21785D01* X22896Y21793D01* X22898Y21802D01* X22899Y21810D01* X22898Y21819D01* X22895Y21827D01* X22891Y21835D01* X22886Y21842D01* X22880Y21848D01* X22872Y21853D01* X22840Y21868D01* X22832Y21871D01* Y23137D01* X22858Y23150D01* X22866Y23155D01* X22872Y23161D01* X22877Y23168D01* X22881Y23175D01* X22883Y23184D01* X22884Y23193D01* X22884Y23201D01* X22881Y23210D01* X22878Y23218D01* X22873Y23225D01* X22867Y23231D01* X22860Y23236D01* X22852Y23240D01* X22844Y23243D01* X22835Y23243D01* X22832Y23243D01* Y23759D01* X22839Y23760D01* X22848Y23762D01* X22855Y23766D01* X22862Y23772D01* X22868Y23778D01* X22873Y23785D01* X22876Y23793D01* X22878Y23802D01* X22879Y23810D01* X22878Y23819D01* X22875Y23827D01* X22871Y23835D01* X22866Y23842D01* X22860Y23848D01* X22852Y23853D01* X22832Y23862D01* Y25147D01* X22838Y25150D01* X22846Y25155D01* X22852Y25161D01* X22857Y25168D01* X22861Y25175D01* X22863Y25184D01* X22864Y25193D01* X22864Y25201D01* X22861Y25210D01* X22858Y25218D01* X22853Y25225D01* X22847Y25231D01* X22840Y25236D01* X22832Y25240D01* Y25765D01* X22835Y25766D01* X22842Y25772D01* X22848Y25778D01* X22853Y25785D01* X22856Y25793D01* X22858Y25802D01* X22859Y25810D01* X22858Y25819D01* X22855Y25827D01* X22851Y25835D01* X22846Y25842D01* X22840Y25848D01* X22832Y25853D01* Y27161D01* X22837Y27168D01* X22841Y27175D01* X22843Y27184D01* X22844Y27193D01* X22844Y27201D01* X22841Y27210D01* X22838Y27218D01* X22833Y27225D01* X22832Y27225D01* Y27784D01* X22833Y27785D01* X22836Y27793D01* X22838Y27802D01* X22839Y27810D01* X22838Y27819D01* X22835Y27827D01* X22832Y27833D01* Y33307D01* X22836Y33302D01* X22843Y33296D01* X22850Y33291D01* X22858Y33288D01* X22867Y33286D01* X22875Y33285D01* X22884Y33286D01* X22892Y33289D01* X22900Y33293D01* X22907Y33298D01* X22912Y33304D01* Y31714D01* X22909Y31716D01* X22900Y31718D01* X22892Y31719D01* X22883Y31719D01* X22874Y31717D01* X22866Y31713D01* X22859Y31708D01* X22853Y31702D01* X22848Y31695D01* X22844Y31687D01* X22842Y31679D01* X22841Y31670D01* X22841Y31661D01* X22843Y31653D01* X22847Y31645D01* X22859Y31621D01* X22869Y31595D01* X22876Y31569D01* X22881Y31543D01* X22884Y31516D01* X22884Y31489D01* X22882Y31462D01* X22877Y31435D01* X22870Y31409D01* X22861Y31383D01* X22849Y31359D01* X22846Y31351D01* X22844Y31342D01* X22844Y31333D01* X22845Y31325D01* X22847Y31317D01* X22851Y31309D01* X22856Y31302D01* X22863Y31296D01* X22870Y31291D01* X22878Y31288D01* X22887Y31286D01* X22895Y31285D01* X22904Y31286D01* X22912Y31289D01* X22912Y31289D01* Y29719D01* X22912Y29719D01* X22903Y29719D01* X22894Y29717D01* X22886Y29713D01* X22879Y29708D01* X22873Y29702D01* X22868Y29695D01* X22864Y29687D01* X22862Y29679D01* X22861Y29670D01* X22861Y29661D01* X22863Y29653D01* X22867Y29645D01* X22879Y29621D01* X22889Y29595D01* X22896Y29569D01* X22901Y29543D01* X22904Y29516D01* X22904Y29489D01* X22902Y29462D01* X22897Y29435D01* X22890Y29409D01* X22881Y29383D01* X22869Y29359D01* X22866Y29351D01* X22864Y29342D01* X22864Y29333D01* X22865Y29325D01* X22867Y29317D01* X22871Y29309D01* X22876Y29302D01* X22883Y29296D01* X22890Y29291D01* X22898Y29288D01* X22907Y29286D01* X22912Y29286D01* Y27716D01* X22906Y27713D01* X22899Y27708D01* X22893Y27702D01* X22888Y27695D01* X22884Y27687D01* X22882Y27679D01* X22881Y27670D01* X22881Y27661D01* X22883Y27653D01* X22887Y27645D01* X22899Y27621D01* X22909Y27595D01* X22912Y27583D01* Y27416D01* X22910Y27409D01* X22901Y27383D01* X22889Y27359D01* X22886Y27351D01* X22884Y27342D01* X22884Y27333D01* X22885Y27325D01* X22887Y27317D01* X22891Y27309D01* X22896Y27302D01* X22903Y27296D01* X22910Y27291D01* X22912Y27290D01* Y25701D01* X22908Y25695D01* X22904Y25687D01* X22902Y25679D01* X22901Y25670D01* X22901Y25661D01* X22903Y25653D01* X22907Y25645D01* X22912Y25634D01* Y25365D01* X22909Y25359D01* X22906Y25351D01* X22904Y25342D01* X22904Y25333D01* X22905Y25325D01* X22907Y25317D01* X22911Y25309D01* X22912Y25307D01* Y19833D01* G37* G36* Y33696D02*X22910Y33701D01* X22904Y33707D01* X22896Y33712D01* X22889Y33716D01* X22880Y33718D01* X22872Y33719D01* X22863Y33719D01* X22854Y33717D01* X22846Y33713D01* X22839Y33708D01* X22833Y33702D01* X22832Y33701D01* Y35290D01* X22838Y35288D01* X22847Y35286D01* X22855Y35285D01* X22864Y35286D01* X22872Y35289D01* X22880Y35293D01* X22887Y35298D01* X22893Y35305D01* X22898Y35312D01* X22912Y35343D01* Y33696D01* G37* G36* Y35656D02*X22910Y35661D01* X22894Y35694D01* X22890Y35701D01* X22884Y35707D01* X22876Y35712D01* X22869Y35716D01* X22860Y35718D01* X22852Y35719D01* X22843Y35719D01* X22834Y35717D01* X22832Y35716D01* Y37286D01* X22835Y37285D01* X22844Y37286D01* X22852Y37289D01* X22860Y37293D01* X22867Y37298D01* X22873Y37305D01* X22878Y37312D01* X22893Y37344D01* X22906Y37378D01* X22912Y37404D01* Y35656D01* G37* G36* Y40000D02*X22992D01* Y29596D01* X22984Y29627D01* X22970Y29661D01* X22954Y29694D01* X22950Y29701D01* X22944Y29707D01* X22936Y29712D01* X22929Y29716D01* X22920Y29718D01* X22912Y29719D01* Y31289D01* X22920Y31293D01* X22927Y31298D01* X22933Y31305D01* X22938Y31312D01* X22953Y31344D01* X22966Y31378D01* X22975Y31413D01* X22981Y31449D01* X22984Y31485D01* X22984Y31521D01* X22980Y31557D01* X22974Y31593D01* X22964Y31627D01* X22950Y31661D01* X22934Y31694D01* X22930Y31701D01* X22924Y31707D01* X22916Y31712D01* X22912Y31714D01* Y33304D01* X22913Y33305D01* X22918Y33312D01* X22933Y33344D01* X22946Y33378D01* X22955Y33413D01* X22961Y33449D01* X22964Y33485D01* X22964Y33521D01* X22960Y33557D01* X22954Y33593D01* X22944Y33627D01* X22930Y33661D01* X22914Y33694D01* X22912Y33696D01* Y35343D01* X22913Y35344D01* X22926Y35378D01* X22935Y35413D01* X22941Y35449D01* X22944Y35485D01* X22944Y35521D01* X22940Y35557D01* X22934Y35593D01* X22924Y35627D01* X22912Y35656D01* Y37404D01* X22915Y37413D01* X22921Y37449D01* X22924Y37485D01* X22924Y37521D01* X22920Y37557D01* X22914Y37593D01* X22912Y37596D01* Y40000D01* G37* G36* X22992Y0D02*X22912D01* Y1101D01* X22942Y1104D01* X22978Y1111D01* X22992Y1115D01* Y0D01* G37* G36* Y1220D02*X22980Y1215D01* X22954Y1208D01* X22928Y1203D01* X22912Y1201D01* Y1798D01* X22922Y1797D01* X22949Y1793D01* X22975Y1785D01* X22992Y1779D01* Y1220D01* G37* G36* Y1884D02*X22971Y1890D01* X22935Y1896D01* X22912Y1898D01* Y3103D01* X22922Y3104D01* X22958Y3111D01* X22992Y3121D01* X22992D01* Y1884D01* G37* G36* Y3229D02*X22986Y3225D01* X22960Y3215D01* X22934Y3208D01* X22912Y3204D01* Y3795D01* X22929Y3793D01* X22955Y3785D01* X22981Y3776D01* X22992Y3771D01* Y3229D01* G37* G36* Y3878D02*X22986Y3881D01* X22951Y3890D01* X22915Y3896D01* X22912Y3897D01* Y5106D01* X22938Y5111D01* X22972Y5121D01* X22992Y5128D01* Y3878D01* G37* G36* Y5238D02*X22990Y5237D01* X22966Y5225D01* X22940Y5215D01* X22914Y5208D01* X22912Y5207D01* Y5792D01* X22935Y5785D01* X22961Y5776D01* X22985Y5764D01* X22992Y5762D01* Y5238D01* G37* G36* Y5871D02*X22966Y5881D01* X22931Y5890D01* X22912Y5893D01* Y7110D01* X22918Y7111D01* X22952Y7121D01* X22986Y7134D01* X22992Y7137D01* Y5871D01* G37* G36* Y7243D02*X22986Y7243D01* X22978Y7241D01* X22970Y7237D01* X22946Y7225D01* X22920Y7215D01* X22912Y7213D01* Y7786D01* X22915Y7785D01* X22941Y7776D01* X22965Y7764D01* X22973Y7761D01* X22982Y7759D01* X22991Y7759D01* X22992Y7759D01* Y7243D01* G37* G36* Y7862D02*X22980Y7868D01* X22946Y7881D01* X22912Y7890D01* Y9115D01* X22932Y9121D01* X22966Y9134D01* X22992Y9147D01* Y7862D01* G37* G36* Y9240D02*X22992Y9240D01* X22984Y9243D01* X22975Y9243D01* X22966Y9243D01* X22958Y9241D01* X22950Y9237D01* X22926Y9225D01* X22912Y9220D01* Y9779D01* X22921Y9776D01* X22945Y9764D01* X22953Y9761D01* X22962Y9759D01* X22971Y9759D01* X22979Y9760D01* X22988Y9762D01* X22992Y9765D01* Y9240D01* G37* G36* Y9853D02*X22992Y9853D01* X22960Y9868D01* X22926Y9881D01* X22912Y9884D01* Y11121D01* X22946Y11134D01* X22978Y11150D01* X22986Y11155D01* X22992Y11161D01* X22992Y11161D01* Y9853D01* G37* G36* Y11225D02*X22987Y11231D01* X22980Y11236D01* X22972Y11240D01* X22964Y11243D01* X22955Y11243D01* X22946Y11243D01* X22938Y11241D01* X22930Y11237D01* X22912Y11229D01* Y11771D01* X22925Y11764D01* X22933Y11761D01* X22942Y11759D01* X22951Y11759D01* X22959Y11760D01* X22968Y11762D01* X22975Y11766D01* X22982Y11772D01* X22988Y11778D01* X22992Y11784D01* Y11225D01* G37* G36* Y11833D02*X22991Y11835D01* X22986Y11842D01* X22980Y11848D01* X22972Y11853D01* X22940Y11868D01* X22912Y11878D01* Y13128D01* X22926Y13134D01* X22958Y13150D01* X22966Y13155D01* X22972Y13161D01* X22977Y13168D01* X22981Y13175D01* X22983Y13184D01* X22984Y13193D01* X22984Y13201D01* X22981Y13210D01* X22978Y13218D01* X22973Y13225D01* X22967Y13231D01* X22960Y13236D01* X22952Y13240D01* X22944Y13243D01* X22935Y13243D01* X22926Y13243D01* X22918Y13241D01* X22912Y13238D01* Y13762D01* X22913Y13761D01* X22922Y13759D01* X22931Y13759D01* X22939Y13760D01* X22948Y13762D01* X22955Y13766D01* X22962Y13772D01* X22968Y13778D01* X22973Y13785D01* X22976Y13793D01* X22978Y13802D01* X22979Y13810D01* X22978Y13819D01* X22975Y13827D01* X22971Y13835D01* X22966Y13842D01* X22960Y13848D01* X22952Y13853D01* X22920Y13868D01* X22912Y13871D01* Y15137D01* X22938Y15150D01* X22946Y15155D01* X22952Y15161D01* X22957Y15168D01* X22961Y15175D01* X22963Y15184D01* X22964Y15193D01* X22964Y15201D01* X22961Y15210D01* X22958Y15218D01* X22953Y15225D01* X22947Y15231D01* X22940Y15236D01* X22932Y15240D01* X22924Y15243D01* X22915Y15243D01* X22912Y15243D01* Y15759D01* X22919Y15760D01* X22928Y15762D01* X22935Y15766D01* X22942Y15772D01* X22948Y15778D01* X22953Y15785D01* X22956Y15793D01* X22958Y15802D01* X22959Y15810D01* X22958Y15819D01* X22955Y15827D01* X22951Y15835D01* X22946Y15842D01* X22940Y15848D01* X22932Y15853D01* X22912Y15862D01* Y17147D01* X22918Y17150D01* X22926Y17155D01* X22932Y17161D01* X22937Y17168D01* X22941Y17175D01* X22943Y17184D01* X22944Y17193D01* X22944Y17201D01* X22941Y17210D01* X22938Y17218D01* X22933Y17225D01* X22927Y17231D01* X22920Y17236D01* X22912Y17240D01* Y17765D01* X22915Y17766D01* X22922Y17772D01* X22928Y17778D01* X22933Y17785D01* X22936Y17793D01* X22938Y17802D01* X22939Y17810D01* X22938Y17819D01* X22935Y17827D01* X22931Y17835D01* X22926Y17842D01* X22920Y17848D01* X22912Y17853D01* Y19161D01* X22917Y19168D01* X22921Y19175D01* X22923Y19184D01* X22924Y19193D01* X22924Y19201D01* X22921Y19210D01* X22918Y19218D01* X22913Y19225D01* X22912Y19225D01* Y19784D01* X22913Y19785D01* X22916Y19793D01* X22918Y19802D01* X22919Y19810D01* X22918Y19819D01* X22915Y19827D01* X22912Y19833D01* Y25307D01* X22916Y25302D01* X22923Y25296D01* X22930Y25291D01* X22938Y25288D01* X22947Y25286D01* X22955Y25285D01* X22964Y25286D01* X22972Y25289D01* X22980Y25293D01* X22987Y25298D01* X22992Y25304D01* Y23714D01* X22989Y23716D01* X22980Y23718D01* X22972Y23719D01* X22963Y23719D01* X22954Y23717D01* X22946Y23713D01* X22939Y23708D01* X22933Y23702D01* X22928Y23695D01* X22924Y23687D01* X22922Y23679D01* X22921Y23670D01* X22921Y23661D01* X22923Y23653D01* X22927Y23645D01* X22939Y23621D01* X22949Y23595D01* X22956Y23569D01* X22961Y23543D01* X22964Y23516D01* X22964Y23489D01* X22962Y23462D01* X22957Y23435D01* X22950Y23409D01* X22941Y23383D01* X22929Y23359D01* X22926Y23351D01* X22924Y23342D01* X22924Y23333D01* X22925Y23325D01* X22927Y23317D01* X22931Y23309D01* X22936Y23302D01* X22943Y23296D01* X22950Y23291D01* X22958Y23288D01* X22967Y23286D01* X22975Y23285D01* X22984Y23286D01* X22992Y23289D01* X22992Y23289D01* Y21719D01* X22992Y21719D01* X22983Y21719D01* X22974Y21717D01* X22966Y21713D01* X22959Y21708D01* X22953Y21702D01* X22948Y21695D01* X22944Y21687D01* X22942Y21679D01* X22941Y21670D01* X22941Y21661D01* X22943Y21653D01* X22947Y21645D01* X22959Y21621D01* X22969Y21595D01* X22976Y21569D01* X22981Y21543D01* X22984Y21516D01* X22984Y21489D01* X22982Y21462D01* X22977Y21435D01* X22970Y21409D01* X22961Y21383D01* X22949Y21359D01* X22946Y21351D01* X22944Y21342D01* X22944Y21333D01* X22945Y21325D01* X22947Y21317D01* X22951Y21309D01* X22956Y21302D01* X22963Y21296D01* X22970Y21291D01* X22978Y21288D01* X22987Y21286D01* X22992Y21286D01* Y19716D01* X22986Y19713D01* X22979Y19708D01* X22973Y19702D01* X22968Y19695D01* X22964Y19687D01* X22962Y19679D01* X22961Y19670D01* X22961Y19661D01* X22963Y19653D01* X22967Y19645D01* X22979Y19621D01* X22989Y19595D01* X22992Y19583D01* Y19416D01* X22990Y19409D01* X22981Y19383D01* X22969Y19359D01* X22966Y19351D01* X22964Y19342D01* X22964Y19333D01* X22965Y19325D01* X22967Y19317D01* X22971Y19309D01* X22976Y19302D01* X22983Y19296D01* X22990Y19291D01* X22992Y19290D01* Y17701D01* X22988Y17695D01* X22984Y17687D01* X22982Y17679D01* X22981Y17670D01* X22981Y17661D01* X22983Y17653D01* X22987Y17645D01* X22992Y17634D01* Y17365D01* X22989Y17359D01* X22986Y17351D01* X22984Y17342D01* X22984Y17333D01* X22985Y17325D01* X22987Y17317D01* X22991Y17309D01* X22992Y17307D01* Y11833D01* G37* G36* Y25696D02*X22990Y25701D01* X22984Y25707D01* X22976Y25712D01* X22969Y25716D01* X22960Y25718D01* X22952Y25719D01* X22943Y25719D01* X22934Y25717D01* X22926Y25713D01* X22919Y25708D01* X22913Y25702D01* X22912Y25701D01* Y27290D01* X22918Y27288D01* X22927Y27286D01* X22935Y27285D01* X22944Y27286D01* X22952Y27289D01* X22960Y27293D01* X22967Y27298D01* X22973Y27305D01* X22978Y27312D01* X22992Y27343D01* Y25696D01* G37* G36* Y27656D02*X22990Y27661D01* X22974Y27694D01* X22970Y27701D01* X22964Y27707D01* X22956Y27712D01* X22949Y27716D01* X22940Y27718D01* X22932Y27719D01* X22923Y27719D01* X22914Y27717D01* X22912Y27716D01* Y29286D01* X22915Y29285D01* X22924Y29286D01* X22932Y29289D01* X22940Y29293D01* X22947Y29298D01* X22953Y29305D01* X22958Y29312D01* X22973Y29344D01* X22986Y29378D01* X22992Y29404D01* Y27656D01* G37* G36* Y40000D02*X23072D01* Y21596D01* X23064Y21627D01* X23050Y21661D01* X23034Y21694D01* X23030Y21701D01* X23024Y21707D01* X23016Y21712D01* X23009Y21716D01* X23000Y21718D01* X22992Y21719D01* Y23289D01* X23000Y23293D01* X23007Y23298D01* X23013Y23305D01* X23018Y23312D01* X23033Y23344D01* X23046Y23378D01* X23055Y23413D01* X23061Y23449D01* X23064Y23485D01* X23064Y23521D01* X23060Y23557D01* X23054Y23593D01* X23044Y23627D01* X23030Y23661D01* X23014Y23694D01* X23010Y23701D01* X23004Y23707D01* X22996Y23712D01* X22992Y23714D01* Y25304D01* X22993Y25305D01* X22998Y25312D01* X23013Y25344D01* X23026Y25378D01* X23035Y25413D01* X23041Y25449D01* X23044Y25485D01* X23044Y25521D01* X23040Y25557D01* X23034Y25593D01* X23024Y25627D01* X23010Y25661D01* X22994Y25694D01* X22992Y25696D01* Y27343D01* X22993Y27344D01* X23006Y27378D01* X23015Y27413D01* X23021Y27449D01* X23024Y27485D01* X23024Y27521D01* X23020Y27557D01* X23014Y27593D01* X23004Y27627D01* X22992Y27656D01* Y29404D01* X22995Y29413D01* X23001Y29449D01* X23004Y29485D01* X23004Y29521D01* X23000Y29557D01* X22994Y29593D01* X22992Y29596D01* Y40000D01* G37* G36* X23072Y0D02*X22992D01* Y1115D01* X23012Y1121D01* X23046Y1134D01* X23072Y1147D01* Y0D01* G37* G36* Y1240D02*X23072Y1240D01* X23064Y1243D01* X23055Y1243D01* X23046Y1243D01* X23038Y1241D01* X23030Y1237D01* X23006Y1225D01* X22992Y1220D01* Y1779D01* X23001Y1776D01* X23025Y1764D01* X23033Y1761D01* X23042Y1759D01* X23051Y1759D01* X23059Y1760D01* X23068Y1762D01* X23072Y1765D01* Y1240D01* G37* G36* Y1853D02*X23072Y1853D01* X23040Y1868D01* X23006Y1881D01* X22992Y1884D01* Y3121D01* X23026Y3134D01* X23058Y3150D01* X23066Y3155D01* X23072Y3161D01* X23072Y3161D01* Y1853D01* G37* G36* Y3225D02*X23067Y3231D01* X23060Y3236D01* X23052Y3240D01* X23044Y3243D01* X23035Y3243D01* X23026Y3243D01* X23018Y3241D01* X23010Y3237D01* X22992Y3229D01* Y3771D01* X23005Y3764D01* X23013Y3761D01* X23022Y3759D01* X23031Y3759D01* X23039Y3760D01* X23048Y3762D01* X23055Y3766D01* X23062Y3772D01* X23068Y3778D01* X23072Y3784D01* Y3225D01* G37* G36* Y3833D02*X23071Y3835D01* X23066Y3842D01* X23060Y3848D01* X23052Y3853D01* X23020Y3868D01* X22992Y3878D01* Y5128D01* X23006Y5134D01* X23038Y5150D01* X23046Y5155D01* X23052Y5161D01* X23057Y5168D01* X23061Y5175D01* X23063Y5184D01* X23064Y5193D01* X23064Y5201D01* X23061Y5210D01* X23058Y5218D01* X23053Y5225D01* X23047Y5231D01* X23040Y5236D01* X23032Y5240D01* X23024Y5243D01* X23015Y5243D01* X23006Y5243D01* X22998Y5241D01* X22992Y5238D01* Y5762D01* X22993Y5761D01* X23002Y5759D01* X23011Y5759D01* X23019Y5760D01* X23028Y5762D01* X23035Y5766D01* X23042Y5772D01* X23048Y5778D01* X23053Y5785D01* X23056Y5793D01* X23058Y5802D01* X23059Y5810D01* X23058Y5819D01* X23055Y5827D01* X23051Y5835D01* X23046Y5842D01* X23040Y5848D01* X23032Y5853D01* X23000Y5868D01* X22992Y5871D01* Y7137D01* X23018Y7150D01* X23026Y7155D01* X23032Y7161D01* X23037Y7168D01* X23041Y7175D01* X23043Y7184D01* X23044Y7193D01* X23044Y7201D01* X23041Y7210D01* X23038Y7218D01* X23033Y7225D01* X23027Y7231D01* X23020Y7236D01* X23012Y7240D01* X23004Y7243D01* X22995Y7243D01* X22992Y7243D01* Y7759D01* X22999Y7760D01* X23008Y7762D01* X23015Y7766D01* X23022Y7772D01* X23028Y7778D01* X23033Y7785D01* X23036Y7793D01* X23038Y7802D01* X23039Y7810D01* X23038Y7819D01* X23035Y7827D01* X23031Y7835D01* X23026Y7842D01* X23020Y7848D01* X23012Y7853D01* X22992Y7862D01* Y9147D01* X22998Y9150D01* X23006Y9155D01* X23012Y9161D01* X23017Y9168D01* X23021Y9175D01* X23023Y9184D01* X23024Y9193D01* X23024Y9201D01* X23021Y9210D01* X23018Y9218D01* X23013Y9225D01* X23007Y9231D01* X23000Y9236D01* X22992Y9240D01* Y9765D01* X22995Y9766D01* X23002Y9772D01* X23008Y9778D01* X23013Y9785D01* X23016Y9793D01* X23018Y9802D01* X23019Y9810D01* X23018Y9819D01* X23015Y9827D01* X23011Y9835D01* X23006Y9842D01* X23000Y9848D01* X22992Y9853D01* Y11161D01* X22997Y11168D01* X23001Y11175D01* X23003Y11184D01* X23004Y11193D01* X23004Y11201D01* X23001Y11210D01* X22998Y11218D01* X22993Y11225D01* X22992Y11225D01* Y11784D01* X22993Y11785D01* X22996Y11793D01* X22998Y11802D01* X22999Y11810D01* X22998Y11819D01* X22995Y11827D01* X22992Y11833D01* Y17307D01* X22996Y17302D01* X23003Y17296D01* X23010Y17291D01* X23018Y17288D01* X23027Y17286D01* X23035Y17285D01* X23044Y17286D01* X23052Y17289D01* X23060Y17293D01* X23067Y17298D01* X23072Y17304D01* Y15714D01* X23069Y15716D01* X23060Y15718D01* X23052Y15719D01* X23043Y15719D01* X23034Y15717D01* X23026Y15713D01* X23019Y15708D01* X23013Y15702D01* X23008Y15695D01* X23004Y15687D01* X23002Y15679D01* X23001Y15670D01* X23001Y15661D01* X23003Y15653D01* X23007Y15645D01* X23019Y15621D01* X23029Y15595D01* X23036Y15569D01* X23041Y15543D01* X23044Y15516D01* X23044Y15489D01* X23042Y15462D01* X23037Y15435D01* X23030Y15409D01* X23021Y15383D01* X23009Y15359D01* X23006Y15351D01* X23004Y15342D01* X23004Y15333D01* X23005Y15325D01* X23007Y15317D01* X23011Y15309D01* X23016Y15302D01* X23023Y15296D01* X23030Y15291D01* X23038Y15288D01* X23047Y15286D01* X23055Y15285D01* X23064Y15286D01* X23072Y15289D01* X23072Y15289D01* Y13719D01* X23072Y13719D01* X23063Y13719D01* X23054Y13717D01* X23046Y13713D01* X23039Y13708D01* X23033Y13702D01* X23028Y13695D01* X23024Y13687D01* X23022Y13679D01* X23021Y13670D01* X23021Y13661D01* X23023Y13653D01* X23027Y13645D01* X23039Y13621D01* X23049Y13595D01* X23056Y13569D01* X23061Y13543D01* X23064Y13516D01* X23064Y13489D01* X23062Y13462D01* X23057Y13435D01* X23050Y13409D01* X23041Y13383D01* X23029Y13359D01* X23026Y13351D01* X23024Y13342D01* X23024Y13333D01* X23025Y13325D01* X23027Y13317D01* X23031Y13309D01* X23036Y13302D01* X23043Y13296D01* X23050Y13291D01* X23058Y13288D01* X23067Y13286D01* X23072Y13286D01* Y11716D01* X23066Y11713D01* X23059Y11708D01* X23053Y11702D01* X23048Y11695D01* X23044Y11687D01* X23042Y11679D01* X23041Y11670D01* X23041Y11661D01* X23043Y11653D01* X23047Y11645D01* X23059Y11621D01* X23069Y11595D01* X23072Y11583D01* Y11416D01* X23070Y11409D01* X23061Y11383D01* X23049Y11359D01* X23046Y11351D01* X23044Y11342D01* X23044Y11333D01* X23045Y11325D01* X23047Y11317D01* X23051Y11309D01* X23056Y11302D01* X23063Y11296D01* X23070Y11291D01* X23072Y11290D01* Y9701D01* X23068Y9695D01* X23064Y9687D01* X23062Y9679D01* X23061Y9670D01* X23061Y9661D01* X23063Y9653D01* X23067Y9645D01* X23072Y9634D01* Y9365D01* X23069Y9359D01* X23066Y9351D01* X23064Y9342D01* X23064Y9333D01* X23065Y9325D01* X23067Y9317D01* X23071Y9309D01* X23072Y9307D01* Y3833D01* G37* G36* Y17696D02*X23070Y17701D01* X23064Y17707D01* X23056Y17712D01* X23049Y17716D01* X23040Y17718D01* X23032Y17719D01* X23023Y17719D01* X23014Y17717D01* X23006Y17713D01* X22999Y17708D01* X22993Y17702D01* X22992Y17701D01* Y19290D01* X22998Y19288D01* X23007Y19286D01* X23015Y19285D01* X23024Y19286D01* X23032Y19289D01* X23040Y19293D01* X23047Y19298D01* X23053Y19305D01* X23058Y19312D01* X23072Y19343D01* Y17696D01* G37* G36* Y19656D02*X23070Y19661D01* X23054Y19694D01* X23050Y19701D01* X23044Y19707D01* X23036Y19712D01* X23029Y19716D01* X23020Y19718D01* X23012Y19719D01* X23003Y19719D01* X22994Y19717D01* X22992Y19716D01* Y21286D01* X22995Y21285D01* X23004Y21286D01* X23012Y21289D01* X23020Y21293D01* X23027Y21298D01* X23033Y21305D01* X23038Y21312D01* X23053Y21344D01* X23066Y21378D01* X23072Y21404D01* Y19656D01* G37* G36* Y40000D02*X23152D01* Y13596D01* X23144Y13627D01* X23130Y13661D01* X23114Y13694D01* X23110Y13701D01* X23104Y13707D01* X23096Y13712D01* X23089Y13716D01* X23080Y13718D01* X23072Y13719D01* Y15289D01* X23080Y15293D01* X23087Y15298D01* X23093Y15305D01* X23098Y15312D01* X23113Y15344D01* X23126Y15378D01* X23135Y15413D01* X23141Y15449D01* X23144Y15485D01* X23144Y15521D01* X23140Y15557D01* X23134Y15593D01* X23124Y15627D01* X23110Y15661D01* X23094Y15694D01* X23090Y15701D01* X23084Y15707D01* X23076Y15712D01* X23072Y15714D01* Y17304D01* X23073Y17305D01* X23078Y17312D01* X23093Y17344D01* X23106Y17378D01* X23115Y17413D01* X23121Y17449D01* X23124Y17485D01* X23124Y17521D01* X23120Y17557D01* X23114Y17593D01* X23104Y17627D01* X23090Y17661D01* X23074Y17694D01* X23072Y17696D01* Y19343D01* X23073Y19344D01* X23086Y19378D01* X23095Y19413D01* X23101Y19449D01* X23104Y19485D01* X23104Y19521D01* X23100Y19557D01* X23094Y19593D01* X23084Y19627D01* X23072Y19656D01* Y21404D01* X23075Y21413D01* X23081Y21449D01* X23084Y21485D01* X23084Y21521D01* X23080Y21557D01* X23074Y21593D01* X23072Y21596D01* Y40000D01* G37* G36* X23152Y0D02*X23072D01* Y1147D01* X23078Y1150D01* X23086Y1155D01* X23092Y1161D01* X23097Y1168D01* X23101Y1175D01* X23103Y1184D01* X23104Y1193D01* X23104Y1201D01* X23101Y1210D01* X23098Y1218D01* X23093Y1225D01* X23087Y1231D01* X23080Y1236D01* X23072Y1240D01* Y1765D01* X23075Y1766D01* X23082Y1772D01* X23088Y1778D01* X23093Y1785D01* X23096Y1793D01* X23098Y1802D01* X23099Y1810D01* X23098Y1819D01* X23095Y1827D01* X23091Y1835D01* X23086Y1842D01* X23080Y1848D01* X23072Y1853D01* Y3161D01* X23077Y3168D01* X23081Y3175D01* X23083Y3184D01* X23084Y3193D01* X23084Y3201D01* X23081Y3210D01* X23078Y3218D01* X23073Y3225D01* X23072Y3225D01* Y3784D01* X23073Y3785D01* X23076Y3793D01* X23078Y3802D01* X23079Y3810D01* X23078Y3819D01* X23075Y3827D01* X23072Y3833D01* Y9307D01* X23076Y9302D01* X23083Y9296D01* X23090Y9291D01* X23098Y9288D01* X23107Y9286D01* X23115Y9285D01* X23124Y9286D01* X23132Y9289D01* X23140Y9293D01* X23147Y9298D01* X23152Y9304D01* Y7714D01* X23149Y7716D01* X23140Y7718D01* X23132Y7719D01* X23123Y7719D01* X23114Y7717D01* X23106Y7713D01* X23099Y7708D01* X23093Y7702D01* X23088Y7695D01* X23084Y7687D01* X23082Y7679D01* X23081Y7670D01* X23081Y7661D01* X23083Y7653D01* X23087Y7645D01* X23099Y7621D01* X23109Y7595D01* X23116Y7569D01* X23121Y7543D01* X23124Y7516D01* X23124Y7489D01* X23122Y7462D01* X23117Y7435D01* X23110Y7409D01* X23101Y7383D01* X23089Y7359D01* X23086Y7351D01* X23084Y7342D01* X23084Y7333D01* X23085Y7325D01* X23087Y7317D01* X23091Y7309D01* X23096Y7302D01* X23103Y7296D01* X23110Y7291D01* X23118Y7288D01* X23127Y7286D01* X23135Y7285D01* X23144Y7286D01* X23152Y7289D01* X23152Y7289D01* Y5719D01* X23152Y5719D01* X23143Y5719D01* X23134Y5717D01* X23126Y5713D01* X23119Y5708D01* X23113Y5702D01* X23108Y5695D01* X23104Y5687D01* X23102Y5679D01* X23101Y5670D01* X23101Y5661D01* X23103Y5653D01* X23107Y5645D01* X23119Y5621D01* X23129Y5595D01* X23136Y5569D01* X23141Y5543D01* X23144Y5516D01* X23144Y5489D01* X23142Y5462D01* X23137Y5435D01* X23130Y5409D01* X23121Y5383D01* X23109Y5359D01* X23106Y5351D01* X23104Y5342D01* X23104Y5333D01* X23105Y5325D01* X23107Y5317D01* X23111Y5309D01* X23116Y5302D01* X23123Y5296D01* X23130Y5291D01* X23138Y5288D01* X23147Y5286D01* X23152Y5286D01* Y3716D01* X23146Y3713D01* X23139Y3708D01* X23133Y3702D01* X23128Y3695D01* X23124Y3687D01* X23122Y3679D01* X23121Y3670D01* X23121Y3661D01* X23123Y3653D01* X23127Y3645D01* X23139Y3621D01* X23149Y3595D01* X23152Y3583D01* Y3416D01* X23150Y3409D01* X23141Y3383D01* X23129Y3359D01* X23126Y3351D01* X23124Y3342D01* X23124Y3333D01* X23125Y3325D01* X23127Y3317D01* X23131Y3309D01* X23136Y3302D01* X23143Y3296D01* X23150Y3291D01* X23152Y3290D01* Y1701D01* X23148Y1695D01* X23144Y1687D01* X23142Y1679D01* X23141Y1670D01* X23141Y1661D01* X23143Y1653D01* X23147Y1645D01* X23152Y1634D01* Y1365D01* X23149Y1359D01* X23146Y1351D01* X23144Y1342D01* X23144Y1333D01* X23145Y1325D01* X23147Y1317D01* X23151Y1309D01* X23152Y1307D01* Y0D01* G37* G36* Y9696D02*X23150Y9701D01* X23144Y9707D01* X23136Y9712D01* X23129Y9716D01* X23120Y9718D01* X23112Y9719D01* X23103Y9719D01* X23094Y9717D01* X23086Y9713D01* X23079Y9708D01* X23073Y9702D01* X23072Y9701D01* Y11290D01* X23078Y11288D01* X23087Y11286D01* X23095Y11285D01* X23104Y11286D01* X23112Y11289D01* X23120Y11293D01* X23127Y11298D01* X23133Y11305D01* X23138Y11312D01* X23152Y11343D01* Y9696D01* G37* G36* Y11656D02*X23150Y11661D01* X23134Y11694D01* X23130Y11701D01* X23124Y11707D01* X23116Y11712D01* X23109Y11716D01* X23100Y11718D01* X23092Y11719D01* X23083Y11719D01* X23074Y11717D01* X23072Y11716D01* Y13286D01* X23075Y13285D01* X23084Y13286D01* X23092Y13289D01* X23100Y13293D01* X23107Y13298D01* X23113Y13305D01* X23118Y13312D01* X23133Y13344D01* X23146Y13378D01* X23152Y13404D01* Y11656D01* G37* G36* Y40000D02*X24177D01* Y39710D01* X24169Y39706D01* X24162Y39701D01* X24156Y39695D01* X24151Y39687D01* X24136Y39655D01* X24123Y39621D01* X24114Y39586D01* X24108Y39550D01* X24105Y39514D01* X24105Y39478D01* X24109Y39442D01* X24115Y39407D01* X24125Y39372D01* X24139Y39338D01* X24155Y39306D01* X24159Y39299D01* X24165Y39292D01* X24173Y39287D01* X24177Y39285D01* Y37695D01* X24176Y37695D01* X24171Y37687D01* X24156Y37655D01* X24143Y37621D01* X24134Y37586D01* X24128Y37550D01* X24125Y37514D01* X24125Y37478D01* X24129Y37442D01* X24135Y37407D01* X24145Y37372D01* X24159Y37338D01* X24175Y37306D01* X24177Y37303D01* Y35656D01* X24176Y35655D01* X24163Y35621D01* X24154Y35586D01* X24148Y35550D01* X24145Y35514D01* X24145Y35478D01* X24149Y35442D01* X24155Y35407D01* X24165Y35372D01* X24177Y35343D01* Y33596D01* X24174Y33586D01* X24168Y33550D01* X24165Y33514D01* X24165Y33478D01* X24169Y33442D01* X24175Y33407D01* X24177Y33403D01* Y0D01* X23152D01* Y1307D01* X23156Y1302D01* X23163Y1296D01* X23170Y1291D01* X23178Y1288D01* X23187Y1286D01* X23195Y1285D01* X23204Y1286D01* X23212Y1289D01* X23220Y1293D01* X23227Y1298D01* X23233Y1305D01* X23238Y1312D01* X23253Y1344D01* X23266Y1378D01* X23275Y1413D01* X23281Y1449D01* X23284Y1485D01* X23284Y1521D01* X23280Y1557D01* X23274Y1593D01* X23264Y1627D01* X23250Y1661D01* X23234Y1694D01* X23230Y1701D01* X23224Y1707D01* X23216Y1712D01* X23209Y1716D01* X23200Y1718D01* X23192Y1719D01* X23183Y1719D01* X23174Y1717D01* X23166Y1713D01* X23159Y1708D01* X23153Y1702D01* X23152Y1701D01* Y3290D01* X23158Y3288D01* X23167Y3286D01* X23175Y3285D01* X23184Y3286D01* X23192Y3289D01* X23200Y3293D01* X23207Y3298D01* X23213Y3305D01* X23218Y3312D01* X23233Y3344D01* X23246Y3378D01* X23255Y3413D01* X23261Y3449D01* X23264Y3485D01* X23264Y3521D01* X23260Y3557D01* X23254Y3593D01* X23244Y3627D01* X23230Y3661D01* X23214Y3694D01* X23210Y3701D01* X23204Y3707D01* X23196Y3712D01* X23189Y3716D01* X23180Y3718D01* X23172Y3719D01* X23163Y3719D01* X23154Y3717D01* X23152Y3716D01* Y5286D01* X23155Y5285D01* X23164Y5286D01* X23172Y5289D01* X23180Y5293D01* X23187Y5298D01* X23193Y5305D01* X23198Y5312D01* X23213Y5344D01* X23226Y5378D01* X23235Y5413D01* X23241Y5449D01* X23244Y5485D01* X23244Y5521D01* X23240Y5557D01* X23234Y5593D01* X23224Y5627D01* X23210Y5661D01* X23194Y5694D01* X23190Y5701D01* X23184Y5707D01* X23176Y5712D01* X23169Y5716D01* X23160Y5718D01* X23152Y5719D01* Y7289D01* X23160Y7293D01* X23167Y7298D01* X23173Y7305D01* X23178Y7312D01* X23193Y7344D01* X23206Y7378D01* X23215Y7413D01* X23221Y7449D01* X23224Y7485D01* X23224Y7521D01* X23220Y7557D01* X23214Y7593D01* X23204Y7627D01* X23190Y7661D01* X23174Y7694D01* X23170Y7701D01* X23164Y7707D01* X23156Y7712D01* X23152Y7714D01* Y9304D01* X23153Y9305D01* X23158Y9312D01* X23173Y9344D01* X23186Y9378D01* X23195Y9413D01* X23201Y9449D01* X23204Y9485D01* X23204Y9521D01* X23200Y9557D01* X23194Y9593D01* X23184Y9627D01* X23170Y9661D01* X23154Y9694D01* X23152Y9696D01* Y11343D01* X23153Y11344D01* X23166Y11378D01* X23175Y11413D01* X23181Y11449D01* X23184Y11485D01* X23184Y11521D01* X23180Y11557D01* X23174Y11593D01* X23164Y11627D01* X23152Y11656D01* Y13404D01* X23155Y13413D01* X23161Y13449D01* X23164Y13485D01* X23164Y13521D01* X23160Y13557D01* X23154Y13593D01* X23152Y13596D01* Y40000D01* G37* G36* Y3583D02*X23156Y3569D01* X23161Y3543D01* X23164Y3516D01* X23164Y3489D01* X23162Y3462D01* X23157Y3435D01* X23152Y3416D01* Y3583D01* G37* G36* Y1634D02*X23159Y1621D01* X23169Y1595D01* X23176Y1569D01* X23181Y1543D01* X23184Y1516D01* X23184Y1489D01* X23182Y1462D01* X23177Y1435D01* X23170Y1409D01* X23161Y1383D01* X23152Y1365D01* Y1634D01* G37* G36* X23072Y11583D02*X23076Y11569D01* X23081Y11543D01* X23084Y11516D01* X23084Y11489D01* X23082Y11462D01* X23077Y11435D01* X23072Y11416D01* Y11583D01* G37* G36* Y9634D02*X23079Y9621D01* X23089Y9595D01* X23096Y9569D01* X23101Y9543D01* X23104Y9516D01* X23104Y9489D01* X23102Y9462D01* X23097Y9435D01* X23090Y9409D01* X23081Y9383D01* X23072Y9365D01* Y9634D01* G37* G36* X24177Y40000D02*X24257D01* Y37692D01* X24253Y37697D01* X24246Y37703D01* X24239Y37708D01* X24231Y37711D01* X24222Y37713D01* X24214Y37714D01* X24205Y37713D01* X24197Y37710D01* X24189Y37706D01* X24182Y37701D01* X24177Y37695D01* Y39285D01* X24180Y39283D01* X24189Y39281D01* X24197Y39280D01* X24206Y39281D01* X24215Y39283D01* X24223Y39286D01* X24230Y39291D01* X24236Y39297D01* X24241Y39304D01* X24245Y39312D01* X24247Y39320D01* X24248Y39329D01* X24248Y39338D01* X24246Y39346D01* X24242Y39354D01* X24230Y39378D01* X24220Y39404D01* X24213Y39430D01* X24208Y39456D01* X24205Y39483D01* X24205Y39511D01* X24207Y39538D01* X24212Y39564D01* X24219Y39590D01* X24228Y39616D01* X24240Y39640D01* X24243Y39649D01* X24245Y39657D01* X24245Y39666D01* X24244Y39674D01* X24242Y39683D01* X24238Y39690D01* X24233Y39697D01* X24226Y39703D01* X24219Y39708D01* X24211Y39711D01* X24202Y39713D01* X24194Y39714D01* X24185Y39713D01* X24177Y39710D01* X24177Y39710D01* Y40000D01* G37* G36* X24257Y29695D02*X24256Y29695D01* X24251Y29687D01* X24236Y29655D01* X24223Y29621D01* X24214Y29586D01* X24208Y29550D01* X24205Y29514D01* X24205Y29478D01* X24209Y29442D01* X24215Y29407D01* X24225Y29372D01* X24239Y29338D01* X24255Y29306D01* X24257Y29303D01* Y27656D01* X24256Y27655D01* X24243Y27621D01* X24234Y27586D01* X24228Y27550D01* X24225Y27514D01* X24225Y27478D01* X24229Y27442D01* X24235Y27407D01* X24245Y27372D01* X24257Y27343D01* Y25596D01* X24254Y25586D01* X24248Y25550D01* X24245Y25514D01* X24245Y25478D01* X24249Y25442D01* X24255Y25407D01* X24257Y25403D01* Y0D01* X24177D01* Y33403D01* X24185Y33372D01* X24199Y33338D01* X24215Y33306D01* X24219Y33299D01* X24225Y33292D01* X24233Y33287D01* X24240Y33283D01* X24249Y33281D01* X24257Y33280D01* Y31710D01* X24249Y31706D01* X24242Y31701D01* X24236Y31695D01* X24231Y31687D01* X24216Y31655D01* X24203Y31621D01* X24194Y31586D01* X24188Y31550D01* X24185Y31514D01* X24185Y31478D01* X24189Y31442D01* X24195Y31407D01* X24205Y31372D01* X24219Y31338D01* X24235Y31306D01* X24239Y31299D01* X24245Y31292D01* X24253Y31287D01* X24257Y31285D01* Y29695D01* G37* G36* Y33714D02*X24254Y33714D01* X24245Y33713D01* X24237Y33710D01* X24229Y33706D01* X24222Y33701D01* X24216Y33695D01* X24211Y33687D01* X24196Y33655D01* X24183Y33621D01* X24177Y33596D01* Y35343D01* X24179Y35338D01* X24195Y35306D01* X24199Y35299D01* X24205Y35292D01* X24213Y35287D01* X24220Y35283D01* X24229Y35281D01* X24237Y35280D01* X24246Y35281D01* X24255Y35283D01* X24257Y35284D01* Y33714D01* G37* G36* Y35417D02*X24253Y35430D01* X24248Y35456D01* X24245Y35483D01* X24245Y35511D01* X24247Y35538D01* X24252Y35564D01* X24257Y35583D01* Y35417D01* G37* G36* Y35709D02*X24251Y35711D01* X24242Y35713D01* X24234Y35714D01* X24225Y35713D01* X24217Y35710D01* X24209Y35706D01* X24202Y35701D01* X24196Y35695D01* X24191Y35687D01* X24177Y35656D01* Y37303D01* X24179Y37299D01* X24185Y37292D01* X24193Y37287D01* X24200Y37283D01* X24209Y37281D01* X24217Y37280D01* X24226Y37281D01* X24235Y37283D01* X24243Y37286D01* X24250Y37291D01* X24256Y37297D01* X24257Y37298D01* Y35709D01* G37* G36* Y37365D02*X24250Y37378D01* X24240Y37404D01* X24233Y37430D01* X24228Y37456D01* X24225Y37483D01* X24225Y37511D01* X24227Y37538D01* X24232Y37564D01* X24239Y37590D01* X24248Y37616D01* X24257Y37634D01* Y37365D01* G37* G36* Y40000D02*X24337D01* Y39862D01* X24311Y39849D01* X24303Y39845D01* X24297Y39839D01* X24292Y39832D01* X24288Y39824D01* X24286Y39815D01* X24285Y39807D01* X24285Y39798D01* X24288Y39790D01* X24291Y39782D01* X24296Y39774D01* X24302Y39768D01* X24309Y39763D01* X24317Y39759D01* X24325Y39757D01* X24334Y39756D01* X24337Y39756D01* Y39240D01* X24330Y39239D01* X24321Y39237D01* X24314Y39233D01* X24307Y39228D01* X24301Y39221D01* X24296Y39214D01* X24293Y39206D01* X24291Y39197D01* X24290Y39189D01* X24291Y39180D01* X24294Y39172D01* X24298Y39164D01* X24303Y39157D01* X24309Y39151D01* X24317Y39146D01* X24337Y39137D01* Y37852D01* X24331Y37849D01* X24323Y37845D01* X24317Y37839D01* X24312Y37832D01* X24308Y37824D01* X24306Y37815D01* X24305Y37807D01* X24305Y37798D01* X24308Y37790D01* X24311Y37782D01* X24316Y37774D01* X24322Y37768D01* X24329Y37763D01* X24337Y37759D01* Y37234D01* X24334Y37233D01* X24327Y37228D01* X24321Y37221D01* X24316Y37214D01* X24313Y37206D01* X24311Y37197D01* X24310Y37189D01* X24311Y37180D01* X24314Y37172D01* X24318Y37164D01* X24323Y37157D01* X24329Y37151D01* X24337Y37147D01* Y35838D01* X24332Y35832D01* X24328Y35824D01* X24326Y35815D01* X24325Y35807D01* X24325Y35798D01* X24328Y35790D01* X24331Y35782D01* X24336Y35774D01* X24337Y35774D01* Y35215D01* X24336Y35214D01* X24333Y35206D01* X24331Y35197D01* X24330Y35189D01* X24331Y35180D01* X24334Y35172D01* X24337Y35167D01* Y29692D01* X24333Y29697D01* X24326Y29703D01* X24319Y29708D01* X24311Y29711D01* X24302Y29713D01* X24294Y29714D01* X24285Y29713D01* X24277Y29710D01* X24269Y29706D01* X24262Y29701D01* X24257Y29695D01* Y31285D01* X24260Y31283D01* X24269Y31281D01* X24277Y31280D01* X24286Y31281D01* X24295Y31283D01* X24303Y31286D01* X24310Y31291D01* X24316Y31297D01* X24321Y31304D01* X24325Y31312D01* X24327Y31320D01* X24328Y31329D01* X24328Y31338D01* X24326Y31346D01* X24322Y31354D01* X24310Y31378D01* X24300Y31404D01* X24293Y31430D01* X24288Y31456D01* X24285Y31483D01* X24285Y31511D01* X24287Y31538D01* X24292Y31564D01* X24299Y31590D01* X24308Y31616D01* X24320Y31640D01* X24323Y31649D01* X24325Y31657D01* X24325Y31666D01* X24324Y31674D01* X24322Y31683D01* X24318Y31690D01* X24313Y31697D01* X24306Y31703D01* X24299Y31708D01* X24291Y31711D01* X24282Y31713D01* X24274Y31714D01* X24265Y31713D01* X24257Y31710D01* X24257Y31710D01* Y33280D01* X24257Y33280D01* X24266Y33281D01* X24275Y33283D01* X24283Y33286D01* X24290Y33291D01* X24296Y33297D01* X24301Y33304D01* X24305Y33312D01* X24307Y33320D01* X24308Y33329D01* X24308Y33338D01* X24306Y33346D01* X24302Y33354D01* X24290Y33378D01* X24280Y33404D01* X24273Y33430D01* X24268Y33456D01* X24265Y33483D01* X24265Y33511D01* X24267Y33538D01* X24272Y33564D01* X24279Y33590D01* X24288Y33616D01* X24300Y33640D01* X24303Y33649D01* X24305Y33657D01* X24305Y33666D01* X24304Y33674D01* X24302Y33683D01* X24298Y33690D01* X24293Y33697D01* X24286Y33703D01* X24279Y33708D01* X24271Y33711D01* X24262Y33713D01* X24257Y33714D01* Y35284D01* X24263Y35286D01* X24270Y35291D01* X24276Y35297D01* X24281Y35304D01* X24285Y35312D01* X24287Y35320D01* X24288Y35329D01* X24288Y35338D01* X24286Y35346D01* X24282Y35354D01* X24270Y35378D01* X24260Y35404D01* X24257Y35417D01* Y35583D01* X24259Y35590D01* X24268Y35616D01* X24280Y35640D01* X24283Y35649D01* X24285Y35657D01* X24285Y35666D01* X24284Y35674D01* X24282Y35683D01* X24278Y35690D01* X24273Y35697D01* X24266Y35703D01* X24259Y35708D01* X24257Y35709D01* Y37298D01* X24261Y37304D01* X24265Y37312D01* X24267Y37320D01* X24268Y37329D01* X24268Y37338D01* X24266Y37346D01* X24262Y37354D01* X24257Y37365D01* Y37634D01* X24260Y37640D01* X24263Y37649D01* X24265Y37657D01* X24265Y37666D01* X24264Y37674D01* X24262Y37683D01* X24258Y37690D01* X24257Y37692D01* Y40000D01* G37* G36* Y29303D02*X24259Y29299D01* X24265Y29292D01* X24273Y29287D01* X24280Y29283D01* X24289Y29281D01* X24297Y29280D01* X24306Y29281D01* X24315Y29283D01* X24323Y29286D01* X24330Y29291D01* X24336Y29297D01* X24337Y29298D01* Y27709D01* X24331Y27711D01* X24322Y27713D01* X24314Y27714D01* X24305Y27713D01* X24297Y27710D01* X24289Y27706D01* X24282Y27701D01* X24276Y27695D01* X24271Y27687D01* X24257Y27656D01* Y29303D01* G37* G36* Y27343D02*X24259Y27338D01* X24275Y27306D01* X24279Y27299D01* X24285Y27292D01* X24293Y27287D01* X24300Y27283D01* X24309Y27281D01* X24317Y27280D01* X24326Y27281D01* X24335Y27283D01* X24337Y27284D01* Y25714D01* X24334Y25714D01* X24325Y25713D01* X24317Y25710D01* X24309Y25706D01* X24302Y25701D01* X24296Y25695D01* X24291Y25687D01* X24276Y25655D01* X24263Y25621D01* X24257Y25596D01* Y27343D01* G37* G36* Y25403D02*X24265Y25372D01* X24279Y25338D01* X24295Y25306D01* X24299Y25299D01* X24305Y25292D01* X24313Y25287D01* X24320Y25283D01* X24329Y25281D01* X24337Y25280D01* Y23710D01* X24329Y23706D01* X24322Y23701D01* X24316Y23695D01* X24311Y23687D01* X24296Y23655D01* X24283Y23621D01* X24274Y23586D01* X24268Y23550D01* X24265Y23514D01* X24265Y23478D01* X24269Y23442D01* X24275Y23407D01* X24285Y23372D01* X24299Y23338D01* X24315Y23306D01* X24319Y23299D01* X24325Y23292D01* X24333Y23287D01* X24337Y23285D01* Y21695D01* X24336Y21695D01* X24331Y21687D01* X24316Y21655D01* X24303Y21621D01* X24294Y21586D01* X24288Y21550D01* X24285Y21514D01* X24285Y21478D01* X24289Y21442D01* X24295Y21407D01* X24305Y21372D01* X24319Y21338D01* X24335Y21306D01* X24337Y21303D01* Y19656D01* X24336Y19655D01* X24323Y19621D01* X24314Y19586D01* X24308Y19550D01* X24305Y19514D01* X24305Y19478D01* X24309Y19442D01* X24315Y19407D01* X24325Y19372D01* X24337Y19343D01* Y17596D01* X24334Y17586D01* X24328Y17550D01* X24325Y17514D01* X24325Y17478D01* X24329Y17442D01* X24335Y17407D01* X24337Y17403D01* Y0D01* X24257D01* Y25403D01* G37* G36* X24337Y29365D02*X24330Y29378D01* X24320Y29404D01* X24313Y29430D01* X24308Y29456D01* X24305Y29483D01* X24305Y29511D01* X24307Y29538D01* X24312Y29564D01* X24319Y29590D01* X24328Y29616D01* X24337Y29634D01* Y29365D01* G37* G36* Y27417D02*X24333Y27430D01* X24328Y27456D01* X24325Y27483D01* X24325Y27511D01* X24327Y27538D01* X24332Y27564D01* X24337Y27583D01* Y27417D01* G37* G36* Y40000D02*X24507D01* Y39899D01* X24483Y39899D01* X24447Y39895D01* X24411Y39889D01* X24377Y39879D01* X24343Y39866D01* X24337Y39862D01* Y40000D01* G37* G36* Y39756D02*X24343Y39756D01* X24351Y39758D01* X24359Y39762D01* X24383Y39774D01* X24409Y39784D01* X24435Y39791D01* X24461Y39796D01* X24488Y39799D01* X24507Y39799D01* Y39200D01* X24494Y39200D01* X24467Y39202D01* X24440Y39207D01* X24414Y39214D01* X24388Y39223D01* X24364Y39235D01* X24356Y39238D01* X24347Y39240D01* X24338Y39240D01* X24337Y39240D01* Y39756D01* G37* G36* Y39137D02*X24349Y39131D01* X24383Y39118D01* X24418Y39109D01* X24454Y39103D01* X24490Y39100D01* X24507Y39100D01* Y37899D01* X24503D01* X24467Y37895D01* X24431Y37889D01* X24397Y37879D01* X24363Y37866D01* X24337Y37852D01* Y39137D01* G37* G36* Y37759D02*X24337Y37759D01* X24345Y37757D01* X24354Y37756D01* X24363Y37756D01* X24371Y37758D01* X24379Y37762D01* X24403Y37774D01* X24429Y37784D01* X24455Y37791D01* X24481Y37796D01* X24507Y37799D01* Y37200D01* X24487Y37202D01* X24460Y37207D01* X24434Y37214D01* X24408Y37223D01* X24384Y37235D01* X24376Y37238D01* X24367Y37240D01* X24358Y37240D01* X24350Y37239D01* X24341Y37237D01* X24337Y37234D01* Y37759D01* G37* G36* Y37147D02*X24337Y37146D01* X24369Y37131D01* X24403Y37118D01* X24438Y37109D01* X24474Y37103D01* X24507Y37100D01* Y35897D01* X24487Y35895D01* X24451Y35889D01* X24417Y35879D01* X24383Y35866D01* X24351Y35849D01* X24343Y35845D01* X24337Y35839D01* X24337Y35838D01* Y37147D01* G37* G36* Y35774D02*X24342Y35768D01* X24349Y35763D01* X24357Y35759D01* X24365Y35757D01* X24374Y35756D01* X24383Y35756D01* X24391Y35758D01* X24399Y35762D01* X24423Y35774D01* X24449Y35784D01* X24475Y35791D01* X24501Y35796D01* X24507Y35797D01* Y35202D01* X24507Y35202D01* X24480Y35207D01* X24454Y35214D01* X24428Y35223D01* X24404Y35235D01* X24396Y35238D01* X24387Y35240D01* X24378Y35240D01* X24370Y35239D01* X24361Y35237D01* X24354Y35233D01* X24347Y35228D01* X24341Y35221D01* X24337Y35215D01* Y35774D01* G37* G36* Y35167D02*X24338Y35164D01* X24343Y35157D01* X24349Y35151D01* X24357Y35146D01* X24389Y35131D01* X24417Y35121D01* Y33871D01* X24403Y33866D01* X24371Y33849D01* X24363Y33845D01* X24357Y33839D01* X24352Y33832D01* X24348Y33824D01* X24346Y33815D01* X24345Y33807D01* X24345Y33798D01* X24348Y33790D01* X24351Y33782D01* X24356Y33774D01* X24362Y33768D01* X24369Y33763D01* X24377Y33759D01* X24385Y33757D01* X24394Y33756D01* X24403Y33756D01* X24411Y33758D01* X24417Y33761D01* Y33238D01* X24416Y33238D01* X24407Y33240D01* X24398Y33240D01* X24390Y33239D01* X24381Y33237D01* X24374Y33233D01* X24367Y33228D01* X24361Y33221D01* X24356Y33214D01* X24353Y33206D01* X24351Y33197D01* X24350Y33189D01* X24351Y33180D01* X24354Y33172D01* X24358Y33164D01* X24363Y33157D01* X24369Y33151D01* X24377Y33146D01* X24409Y33131D01* X24417Y33128D01* Y31862D01* X24391Y31849D01* X24383Y31845D01* X24377Y31839D01* X24372Y31832D01* X24368Y31824D01* X24366Y31815D01* X24365Y31807D01* X24365Y31798D01* X24368Y31790D01* X24371Y31782D01* X24376Y31774D01* X24382Y31768D01* X24389Y31763D01* X24397Y31759D01* X24405Y31757D01* X24414Y31756D01* X24417Y31756D01* Y31240D01* X24410Y31239D01* X24401Y31237D01* X24394Y31233D01* X24387Y31228D01* X24381Y31221D01* X24376Y31214D01* X24373Y31206D01* X24371Y31197D01* X24370Y31189D01* X24371Y31180D01* X24374Y31172D01* X24378Y31164D01* X24383Y31157D01* X24389Y31151D01* X24397Y31146D01* X24417Y31137D01* Y29852D01* X24411Y29849D01* X24403Y29845D01* X24397Y29839D01* X24392Y29832D01* X24388Y29824D01* X24386Y29815D01* X24385Y29807D01* X24385Y29798D01* X24388Y29790D01* X24391Y29782D01* X24396Y29774D01* X24402Y29768D01* X24409Y29763D01* X24417Y29759D01* Y29234D01* X24414Y29233D01* X24407Y29228D01* X24401Y29221D01* X24396Y29214D01* X24393Y29206D01* X24391Y29197D01* X24390Y29189D01* X24391Y29180D01* X24394Y29172D01* X24398Y29164D01* X24403Y29157D01* X24409Y29151D01* X24417Y29147D01* Y27838D01* X24412Y27832D01* X24408Y27824D01* X24406Y27815D01* X24405Y27807D01* X24405Y27798D01* X24408Y27790D01* X24411Y27782D01* X24416Y27774D01* X24417Y27774D01* Y27215D01* X24416Y27214D01* X24413Y27206D01* X24411Y27197D01* X24410Y27189D01* X24411Y27180D01* X24414Y27172D01* X24417Y27167D01* Y21692D01* X24413Y21697D01* X24406Y21703D01* X24399Y21708D01* X24391Y21711D01* X24382Y21713D01* X24374Y21714D01* X24365Y21713D01* X24357Y21710D01* X24349Y21706D01* X24342Y21701D01* X24337Y21695D01* Y23285D01* X24340Y23283D01* X24349Y23281D01* X24357Y23280D01* X24366Y23281D01* X24375Y23283D01* X24383Y23286D01* X24390Y23291D01* X24396Y23297D01* X24401Y23304D01* X24405Y23312D01* X24407Y23320D01* X24408Y23329D01* X24408Y23338D01* X24406Y23346D01* X24402Y23354D01* X24390Y23378D01* X24380Y23404D01* X24373Y23430D01* X24368Y23456D01* X24365Y23483D01* X24365Y23511D01* X24367Y23538D01* X24372Y23564D01* X24379Y23590D01* X24388Y23616D01* X24400Y23640D01* X24403Y23649D01* X24405Y23657D01* X24405Y23666D01* X24404Y23674D01* X24402Y23683D01* X24398Y23690D01* X24393Y23697D01* X24386Y23703D01* X24379Y23708D01* X24371Y23711D01* X24362Y23713D01* X24354Y23714D01* X24345Y23713D01* X24337Y23710D01* X24337Y23710D01* Y25280D01* X24337Y25280D01* X24346Y25281D01* X24355Y25283D01* X24363Y25286D01* X24370Y25291D01* X24376Y25297D01* X24381Y25304D01* X24385Y25312D01* X24387Y25320D01* X24388Y25329D01* X24388Y25338D01* X24386Y25346D01* X24382Y25354D01* X24370Y25378D01* X24360Y25404D01* X24353Y25430D01* X24348Y25456D01* X24345Y25483D01* X24345Y25511D01* X24347Y25538D01* X24352Y25564D01* X24359Y25590D01* X24368Y25616D01* X24380Y25640D01* X24383Y25649D01* X24385Y25657D01* X24385Y25666D01* X24384Y25674D01* X24382Y25683D01* X24378Y25690D01* X24373Y25697D01* X24366Y25703D01* X24359Y25708D01* X24351Y25711D01* X24342Y25713D01* X24337Y25714D01* Y27284D01* X24343Y27286D01* X24350Y27291D01* X24356Y27297D01* X24361Y27304D01* X24365Y27312D01* X24367Y27320D01* X24368Y27329D01* X24368Y27338D01* X24366Y27346D01* X24362Y27354D01* X24350Y27378D01* X24340Y27404D01* X24337Y27417D01* Y27583D01* X24339Y27590D01* X24348Y27616D01* X24360Y27640D01* X24363Y27649D01* X24365Y27657D01* X24365Y27666D01* X24364Y27674D01* X24362Y27683D01* X24358Y27690D01* X24353Y27697D01* X24346Y27703D01* X24339Y27708D01* X24337Y27709D01* Y29298D01* X24341Y29304D01* X24345Y29312D01* X24347Y29320D01* X24348Y29329D01* X24348Y29338D01* X24346Y29346D01* X24342Y29354D01* X24337Y29365D01* Y29634D01* X24340Y29640D01* X24343Y29649D01* X24345Y29657D01* X24345Y29666D01* X24344Y29674D01* X24342Y29683D01* X24338Y29690D01* X24337Y29692D01* Y35167D01* G37* G36* X24417Y13695D02*X24416Y13695D01* X24411Y13687D01* X24396Y13655D01* X24383Y13621D01* X24374Y13586D01* X24368Y13550D01* X24365Y13514D01* X24365Y13478D01* X24369Y13442D01* X24375Y13407D01* X24385Y13372D01* X24399Y13338D01* X24415Y13306D01* X24417Y13303D01* Y11656D01* X24416Y11655D01* X24403Y11621D01* X24394Y11586D01* X24388Y11550D01* X24385Y11514D01* X24385Y11478D01* X24389Y11442D01* X24395Y11407D01* X24405Y11372D01* X24417Y11343D01* Y9596D01* X24414Y9586D01* X24408Y9550D01* X24405Y9514D01* X24405Y9478D01* X24409Y9442D01* X24415Y9407D01* X24417Y9403D01* Y0D01* X24337D01* Y17403D01* X24345Y17372D01* X24359Y17338D01* X24375Y17306D01* X24379Y17299D01* X24385Y17292D01* X24393Y17287D01* X24400Y17283D01* X24409Y17281D01* X24417Y17280D01* Y15710D01* X24409Y15706D01* X24402Y15701D01* X24396Y15695D01* X24391Y15687D01* X24376Y15655D01* X24363Y15621D01* X24354Y15586D01* X24348Y15550D01* X24345Y15514D01* X24345Y15478D01* X24349Y15442D01* X24355Y15407D01* X24365Y15372D01* X24379Y15338D01* X24395Y15306D01* X24399Y15299D01* X24405Y15292D01* X24413Y15287D01* X24417Y15285D01* Y13695D01* G37* G36* Y17714D02*X24414Y17714D01* X24405Y17713D01* X24397Y17710D01* X24389Y17706D01* X24382Y17701D01* X24376Y17695D01* X24371Y17687D01* X24356Y17655D01* X24343Y17621D01* X24337Y17596D01* Y19343D01* X24339Y19338D01* X24355Y19306D01* X24359Y19299D01* X24365Y19292D01* X24373Y19287D01* X24380Y19283D01* X24389Y19281D01* X24397Y19280D01* X24406Y19281D01* X24415Y19283D01* X24417Y19284D01* Y17714D01* G37* G36* Y19417D02*X24413Y19430D01* X24408Y19456D01* X24405Y19483D01* X24405Y19511D01* X24407Y19538D01* X24412Y19564D01* X24417Y19583D01* Y19417D01* G37* G36* Y19709D02*X24411Y19711D01* X24402Y19713D01* X24394Y19714D01* X24385Y19713D01* X24377Y19710D01* X24369Y19706D01* X24362Y19701D01* X24356Y19695D01* X24351Y19687D01* X24337Y19656D01* Y21303D01* X24339Y21299D01* X24345Y21292D01* X24353Y21287D01* X24360Y21283D01* X24369Y21281D01* X24377Y21280D01* X24386Y21281D01* X24395Y21283D01* X24403Y21286D01* X24410Y21291D01* X24416Y21297D01* X24417Y21298D01* Y19709D01* G37* G36* Y21365D02*X24410Y21378D01* X24400Y21404D01* X24393Y21430D01* X24388Y21456D01* X24385Y21483D01* X24385Y21511D01* X24387Y21538D01* X24392Y21564D01* X24399Y21590D01* X24408Y21616D01* X24417Y21634D01* Y21365D01* G37* G36* Y35121D02*X24423Y35118D01* X24458Y35109D01* X24494Y35103D01* X24507Y35102D01* Y33895D01* X24507D01* X24471Y33889D01* X24437Y33879D01* X24417Y33871D01* Y35121D01* G37* G36* Y33761D02*X24419Y33762D01* X24443Y33774D01* X24469Y33784D01* X24495Y33791D01* X24507Y33794D01* Y33205D01* X24500Y33207D01* X24474Y33214D01* X24448Y33223D01* X24424Y33235D01* X24417Y33238D01* Y33761D01* G37* G36* Y33128D02*X24443Y33118D01* X24478Y33109D01* X24507Y33104D01* Y31892D01* X24491Y31889D01* X24457Y31879D01* X24423Y31866D01* X24417Y31862D01* Y33128D01* G37* G36* Y31756D02*X24423Y31756D01* X24431Y31758D01* X24439Y31762D01* X24463Y31774D01* X24489Y31784D01* X24507Y31789D01* Y31210D01* X24494Y31214D01* X24468Y31223D01* X24444Y31235D01* X24436Y31238D01* X24427Y31240D01* X24418Y31240D01* X24417Y31240D01* Y31756D01* G37* G36* Y31137D02*X24429Y31131D01* X24463Y31118D01* X24498Y31109D01* X24507Y31107D01* Y29887D01* X24477Y29879D01* X24443Y29866D01* X24417Y29852D01* Y31137D01* G37* G36* Y29759D02*X24417Y29759D01* X24425Y29757D01* X24434Y29756D01* X24443Y29756D01* X24451Y29758D01* X24459Y29762D01* X24483Y29774D01* X24507Y29783D01* Y29216D01* X24488Y29223D01* X24464Y29235D01* X24456Y29238D01* X24447Y29240D01* X24438Y29240D01* X24430Y29239D01* X24421Y29237D01* X24417Y29234D01* Y29759D01* G37* G36* Y29147D02*X24417Y29146D01* X24449Y29131D01* X24483Y29118D01* X24507Y29112D01* Y27882D01* X24497Y27879D01* X24463Y27866D01* X24431Y27849D01* X24423Y27845D01* X24417Y27839D01* X24417Y27838D01* Y29147D01* G37* G36* Y27774D02*X24422Y27768D01* X24429Y27763D01* X24437Y27759D01* X24445Y27757D01* X24454Y27756D01* X24463Y27756D01* X24471Y27758D01* X24479Y27762D01* X24503Y27774D01* X24507Y27776D01* Y27223D01* X24484Y27235D01* X24476Y27238D01* X24467Y27240D01* X24458Y27240D01* X24450Y27239D01* X24441Y27237D01* X24434Y27233D01* X24427Y27228D01* X24421Y27221D01* X24417Y27215D01* Y27774D01* G37* G36* Y27167D02*X24418Y27164D01* X24423Y27157D01* X24429Y27151D01* X24437Y27146D01* X24469Y27131D01* X24503Y27118D01* X24507Y27117D01* Y25875D01* X24483Y25866D01* X24451Y25849D01* X24443Y25845D01* X24437Y25839D01* X24432Y25832D01* X24428Y25824D01* X24426Y25815D01* X24425Y25807D01* X24425Y25798D01* X24428Y25790D01* X24431Y25782D01* X24436Y25774D01* X24442Y25768D01* X24449Y25763D01* X24457Y25759D01* X24465Y25757D01* X24474Y25756D01* X24483Y25756D01* X24491Y25758D01* X24499Y25762D01* X24507Y25766D01* Y25233D01* X24504Y25235D01* X24496Y25238D01* X24487Y25240D01* X24478Y25240D01* X24470Y25239D01* X24461Y25237D01* X24454Y25233D01* X24447Y25228D01* X24441Y25221D01* X24436Y25214D01* X24433Y25206D01* X24431Y25197D01* X24430Y25189D01* X24431Y25180D01* X24434Y25172D01* X24438Y25164D01* X24443Y25157D01* X24449Y25151D01* X24457Y25146D01* X24489Y25131D01* X24507Y25124D01* Y23867D01* X24503Y23866D01* X24471Y23849D01* X24463Y23845D01* X24457Y23839D01* X24452Y23832D01* X24448Y23824D01* X24446Y23815D01* X24445Y23807D01* X24445Y23798D01* X24448Y23790D01* X24451Y23782D01* X24456Y23774D01* X24462Y23768D01* X24469Y23763D01* X24477Y23759D01* X24485Y23757D01* X24494Y23756D01* X24503Y23756D01* X24507Y23757D01* Y23240D01* X24507D01* X24498Y23240D01* X24490Y23239D01* X24481Y23237D01* X24474Y23233D01* X24467Y23228D01* X24461Y23221D01* X24456Y23214D01* X24453Y23206D01* X24451Y23197D01* X24450Y23189D01* X24451Y23180D01* X24454Y23172D01* X24458Y23164D01* X24463Y23157D01* X24469Y23151D01* X24477Y23146D01* X24507Y23132D01* Y21858D01* X24491Y21849D01* X24483Y21845D01* X24477Y21839D01* X24472Y21832D01* X24468Y21824D01* X24466Y21815D01* X24465Y21807D01* X24465Y21798D01* X24468Y21790D01* X24471Y21782D01* X24476Y21774D01* X24482Y21768D01* X24489Y21763D01* X24497Y21759D01* X24505Y21757D01* X24507Y21756D01* Y21239D01* X24501Y21237D01* X24494Y21233D01* X24487Y21228D01* X24481Y21221D01* X24476Y21214D01* X24473Y21206D01* X24471Y21197D01* X24470Y21189D01* X24471Y21180D01* X24474Y21172D01* X24478Y21164D01* X24483Y21157D01* X24489Y21151D01* X24497Y21146D01* X24507Y21141D01* Y19847D01* X24503Y19845D01* X24497Y19839D01* X24492Y19832D01* X24488Y19824D01* X24486Y19815D01* X24485Y19807D01* X24485Y19798D01* X24488Y19790D01* X24491Y19782D01* X24496Y19774D01* X24502Y19768D01* X24507Y19764D01* Y19228D01* X24507Y19228D01* X24501Y19221D01* X24496Y19214D01* X24493Y19206D01* X24491Y19197D01* X24490Y19189D01* X24491Y19180D01* X24494Y19172D01* X24498Y19164D01* X24503Y19157D01* X24507Y19153D01* Y17821D01* X24506Y17815D01* X24505Y17807D01* X24505Y17798D01* X24507Y17791D01* Y13340D01* X24506Y13346D01* X24502Y13354D01* X24490Y13378D01* X24480Y13404D01* X24473Y13430D01* X24468Y13456D01* X24465Y13483D01* X24465Y13511D01* X24467Y13538D01* X24472Y13564D01* X24479Y13590D01* X24488Y13616D01* X24500Y13640D01* X24503Y13649D01* X24505Y13657D01* X24505Y13666D01* X24504Y13674D01* X24502Y13683D01* X24498Y13690D01* X24493Y13697D01* X24486Y13703D01* X24479Y13708D01* X24471Y13711D01* X24462Y13713D01* X24454Y13714D01* X24445Y13713D01* X24437Y13710D01* X24429Y13706D01* X24422Y13701D01* X24417Y13695D01* Y15285D01* X24420Y15283D01* X24429Y15281D01* X24437Y15280D01* X24446Y15281D01* X24455Y15283D01* X24463Y15286D01* X24470Y15291D01* X24476Y15297D01* X24481Y15304D01* X24485Y15312D01* X24487Y15320D01* X24488Y15329D01* X24488Y15338D01* X24486Y15346D01* X24482Y15354D01* X24470Y15378D01* X24460Y15404D01* X24453Y15430D01* X24448Y15456D01* X24445Y15483D01* X24445Y15511D01* X24447Y15538D01* X24452Y15564D01* X24459Y15590D01* X24468Y15616D01* X24480Y15640D01* X24483Y15649D01* X24485Y15657D01* X24485Y15666D01* X24484Y15674D01* X24482Y15683D01* X24478Y15690D01* X24473Y15697D01* X24466Y15703D01* X24459Y15708D01* X24451Y15711D01* X24442Y15713D01* X24434Y15714D01* X24425Y15713D01* X24417Y15710D01* X24417Y15710D01* Y17280D01* X24417Y17280D01* X24426Y17281D01* X24435Y17283D01* X24443Y17286D01* X24450Y17291D01* X24456Y17297D01* X24461Y17304D01* X24465Y17312D01* X24467Y17320D01* X24468Y17329D01* X24468Y17338D01* X24466Y17346D01* X24462Y17354D01* X24450Y17378D01* X24440Y17404D01* X24433Y17430D01* X24428Y17456D01* X24425Y17483D01* X24425Y17511D01* X24427Y17538D01* X24432Y17564D01* X24439Y17590D01* X24448Y17616D01* X24460Y17640D01* X24463Y17649D01* X24465Y17657D01* X24465Y17666D01* X24464Y17674D01* X24462Y17683D01* X24458Y17690D01* X24453Y17697D01* X24446Y17703D01* X24439Y17708D01* X24431Y17711D01* X24422Y17713D01* X24417Y17714D01* Y19284D01* X24423Y19286D01* X24430Y19291D01* X24436Y19297D01* X24441Y19304D01* X24445Y19312D01* X24447Y19320D01* X24448Y19329D01* X24448Y19338D01* X24446Y19346D01* X24442Y19354D01* X24430Y19378D01* X24420Y19404D01* X24417Y19417D01* Y19583D01* X24419Y19590D01* X24428Y19616D01* X24440Y19640D01* X24443Y19649D01* X24445Y19657D01* X24445Y19666D01* X24444Y19674D01* X24442Y19683D01* X24438Y19690D01* X24433Y19697D01* X24426Y19703D01* X24419Y19708D01* X24417Y19709D01* Y21298D01* X24421Y21304D01* X24425Y21312D01* X24427Y21320D01* X24428Y21329D01* X24428Y21338D01* X24426Y21346D01* X24422Y21354D01* X24417Y21365D01* Y21634D01* X24420Y21640D01* X24423Y21649D01* X24425Y21657D01* X24425Y21666D01* X24424Y21674D01* X24422Y21683D01* X24418Y21690D01* X24417Y21692D01* Y27167D01* G37* G36* Y13303D02*X24419Y13299D01* X24425Y13292D01* X24433Y13287D01* X24440Y13283D01* X24449Y13281D01* X24457Y13280D01* X24466Y13281D01* X24475Y13283D01* X24483Y13286D01* X24490Y13291D01* X24496Y13297D01* X24501Y13304D01* X24505Y13312D01* X24507Y13320D01* Y11702D01* X24506Y11703D01* X24499Y11708D01* X24491Y11711D01* X24482Y11713D01* X24474Y11714D01* X24465Y11713D01* X24457Y11710D01* X24449Y11706D01* X24442Y11701D01* X24436Y11695D01* X24431Y11687D01* X24417Y11656D01* Y13303D01* G37* G36* Y11343D02*X24419Y11338D01* X24435Y11306D01* X24439Y11299D01* X24445Y11292D01* X24453Y11287D01* X24460Y11283D01* X24469Y11281D01* X24477Y11280D01* X24486Y11281D01* X24495Y11283D01* X24503Y11286D01* X24507Y11289D01* Y9712D01* X24502Y9713D01* X24494Y9714D01* X24485Y9713D01* X24477Y9710D01* X24469Y9706D01* X24462Y9701D01* X24456Y9695D01* X24451Y9687D01* X24436Y9655D01* X24423Y9621D01* X24417Y9596D01* Y11343D01* G37* G36* Y9403D02*X24425Y9372D01* X24439Y9338D01* X24455Y9306D01* X24459Y9299D01* X24465Y9292D01* X24473Y9287D01* X24480Y9283D01* X24489Y9281D01* X24497Y9280D01* X24506Y9281D01* X24507Y9281D01* Y7713D01* X24505Y7713D01* X24497Y7710D01* X24489Y7706D01* X24482Y7701D01* X24476Y7695D01* X24471Y7687D01* X24456Y7655D01* X24443Y7621D01* X24434Y7586D01* X24428Y7550D01* X24425Y7514D01* X24425Y7478D01* X24429Y7442D01* X24435Y7407D01* X24445Y7372D01* X24459Y7338D01* X24475Y7306D01* X24479Y7299D01* X24485Y7292D01* X24493Y7287D01* X24500Y7283D01* X24507Y7281D01* Y5705D01* X24502Y5701D01* X24496Y5695D01* X24491Y5687D01* X24476Y5655D01* X24463Y5621D01* X24454Y5586D01* X24448Y5550D01* X24445Y5514D01* X24445Y5478D01* X24449Y5442D01* X24455Y5407D01* X24465Y5372D01* X24479Y5338D01* X24495Y5306D01* X24499Y5299D01* X24505Y5292D01* X24507Y5291D01* Y3679D01* X24496Y3655D01* X24483Y3621D01* X24474Y3586D01* X24468Y3550D01* X24465Y3514D01* X24465Y3478D01* X24469Y3442D01* X24475Y3407D01* X24485Y3372D01* X24499Y3338D01* X24507Y3321D01* Y1631D01* X24503Y1621D01* X24494Y1586D01* X24488Y1550D01* X24485Y1514D01* X24485Y1478D01* X24489Y1442D01* X24495Y1407D01* X24505Y1372D01* X24507Y1367D01* Y0D01* X24417D01* Y9403D01* G37* G36* X24507Y11386D02*X24500Y11404D01* X24493Y11430D01* X24488Y11456D01* X24485Y11483D01* X24485Y11511D01* X24487Y11538D01* X24492Y11564D01* X24499Y11590D01* X24507Y11614D01* Y11386D01* G37* G36* Y9460D02*X24505Y9483D01* X24505Y9511D01* X24507Y9538D01* X24507Y9539D01* Y9460D01* G37* G36* Y40000D02*X24832D01* Y39714D01* X24829Y39716D01* X24820Y39718D01* X24812Y39719D01* X24803Y39719D01* X24794Y39717D01* X24786Y39713D01* X24779Y39708D01* X24773Y39702D01* X24768Y39695D01* X24764Y39687D01* X24762Y39679D01* X24761Y39670D01* X24761Y39661D01* X24763Y39653D01* X24767Y39645D01* X24779Y39621D01* X24789Y39595D01* X24796Y39569D01* X24801Y39543D01* X24804Y39516D01* X24804Y39489D01* X24802Y39462D01* X24797Y39435D01* X24790Y39409D01* X24781Y39383D01* X24769Y39359D01* X24766Y39351D01* X24764Y39342D01* X24764Y39333D01* X24765Y39325D01* X24767Y39317D01* X24771Y39309D01* X24776Y39302D01* X24783Y39296D01* X24790Y39291D01* X24798Y39288D01* X24807Y39286D01* X24815Y39285D01* X24824Y39286D01* X24832Y39289D01* X24832Y39289D01* Y37719D01* X24832Y37719D01* X24823Y37719D01* X24814Y37717D01* X24806Y37713D01* X24799Y37708D01* X24793Y37702D01* X24788Y37695D01* X24784Y37687D01* X24782Y37679D01* X24781Y37670D01* X24781Y37661D01* X24783Y37653D01* X24787Y37645D01* X24799Y37621D01* X24809Y37595D01* X24816Y37569D01* X24821Y37543D01* X24824Y37516D01* X24824Y37489D01* X24822Y37462D01* X24817Y37435D01* X24810Y37409D01* X24801Y37383D01* X24789Y37359D01* X24786Y37351D01* X24784Y37342D01* X24784Y37333D01* X24785Y37325D01* X24787Y37317D01* X24791Y37309D01* X24796Y37302D01* X24803Y37296D01* X24810Y37291D01* X24818Y37288D01* X24827Y37286D01* X24832Y37286D01* Y35716D01* X24826Y35713D01* X24819Y35708D01* X24813Y35702D01* X24808Y35695D01* X24804Y35687D01* X24802Y35679D01* X24801Y35670D01* X24801Y35661D01* X24803Y35653D01* X24807Y35645D01* X24819Y35621D01* X24829Y35595D01* X24832Y35583D01* Y35416D01* X24830Y35409D01* X24821Y35383D01* X24809Y35359D01* X24806Y35351D01* X24804Y35342D01* X24804Y35333D01* X24805Y35325D01* X24807Y35317D01* X24811Y35309D01* X24816Y35302D01* X24823Y35296D01* X24830Y35291D01* X24832Y35290D01* Y33701D01* X24828Y33695D01* X24824Y33687D01* X24822Y33679D01* X24821Y33670D01* X24821Y33661D01* X24823Y33653D01* X24827Y33645D01* X24832Y33634D01* Y33365D01* X24829Y33359D01* X24826Y33351D01* X24824Y33342D01* X24824Y33333D01* X24825Y33325D01* X24827Y33317D01* X24831Y33309D01* X24832Y33307D01* Y27833D01* X24831Y27835D01* X24826Y27842D01* X24820Y27848D01* X24812Y27853D01* X24780Y27868D01* X24746Y27881D01* X24711Y27890D01* X24675Y27896D01* X24639Y27899D01* X24603Y27899D01* X24567Y27895D01* X24531Y27889D01* X24507Y27882D01* Y29112D01* X24518Y29109D01* X24554Y29103D01* X24590Y29100D01* X24626Y29100D01* X24662Y29104D01* X24698Y29111D01* X24732Y29121D01* X24766Y29134D01* X24798Y29150D01* X24806Y29155D01* X24812Y29161D01* X24817Y29168D01* X24821Y29175D01* X24823Y29184D01* X24824Y29193D01* X24824Y29201D01* X24821Y29210D01* X24818Y29218D01* X24813Y29225D01* X24807Y29231D01* X24800Y29236D01* X24792Y29240D01* X24784Y29243D01* X24775Y29243D01* X24766Y29243D01* X24758Y29241D01* X24750Y29237D01* X24726Y29225D01* X24700Y29215D01* X24674Y29208D01* X24648Y29203D01* X24621Y29200D01* X24594Y29200D01* X24567Y29202D01* X24540Y29207D01* X24514Y29214D01* X24507Y29216D01* Y29783D01* X24509Y29784D01* X24535Y29791D01* X24561Y29796D01* X24588Y29799D01* X24615Y29799D01* X24642Y29797D01* X24669Y29793D01* X24695Y29785D01* X24721Y29776D01* X24745Y29764D01* X24753Y29761D01* X24762Y29759D01* X24771Y29759D01* X24779Y29760D01* X24788Y29762D01* X24795Y29766D01* X24802Y29772D01* X24808Y29778D01* X24813Y29785D01* X24816Y29793D01* X24818Y29802D01* X24819Y29810D01* X24818Y29819D01* X24815Y29827D01* X24811Y29835D01* X24806Y29842D01* X24800Y29848D01* X24792Y29853D01* X24760Y29868D01* X24726Y29881D01* X24691Y29890D01* X24655Y29896D01* X24619Y29899D01* X24583Y29899D01* X24547Y29895D01* X24511Y29889D01* X24507Y29887D01* Y31107D01* X24534Y31103D01* X24570Y31100D01* X24606Y31100D01* X24642Y31104D01* X24678Y31111D01* X24712Y31121D01* X24746Y31134D01* X24778Y31150D01* X24786Y31155D01* X24792Y31161D01* X24797Y31168D01* X24801Y31175D01* X24803Y31184D01* X24804Y31193D01* X24804Y31201D01* X24801Y31210D01* X24798Y31218D01* X24793Y31225D01* X24787Y31231D01* X24780Y31236D01* X24772Y31240D01* X24764Y31243D01* X24755Y31243D01* X24746Y31243D01* X24738Y31241D01* X24730Y31237D01* X24706Y31225D01* X24680Y31215D01* X24654Y31208D01* X24628Y31203D01* X24601Y31200D01* X24574Y31200D01* X24547Y31202D01* X24520Y31207D01* X24507Y31210D01* Y31789D01* X24515Y31791D01* X24541Y31796D01* X24568Y31799D01* X24595Y31799D01* X24622Y31797D01* X24649Y31793D01* X24675Y31785D01* X24701Y31776D01* X24725Y31764D01* X24733Y31761D01* X24742Y31759D01* X24751Y31759D01* X24759Y31760D01* X24768Y31762D01* X24775Y31766D01* X24782Y31772D01* X24788Y31778D01* X24793Y31785D01* X24796Y31793D01* X24798Y31802D01* X24799Y31810D01* X24798Y31819D01* X24795Y31827D01* X24791Y31835D01* X24786Y31842D01* X24780Y31848D01* X24772Y31853D01* X24740Y31868D01* X24706Y31881D01* X24671Y31890D01* X24635Y31896D01* X24599Y31899D01* X24563Y31899D01* X24527Y31895D01* X24507Y31892D01* Y33104D01* X24514Y33103D01* X24550Y33100D01* X24586Y33100D01* X24622Y33104D01* X24658Y33111D01* X24692Y33121D01* X24726Y33134D01* X24758Y33150D01* X24766Y33155D01* X24772Y33161D01* X24777Y33168D01* X24781Y33175D01* X24783Y33184D01* X24784Y33193D01* X24784Y33201D01* X24781Y33210D01* X24778Y33218D01* X24773Y33225D01* X24767Y33231D01* X24760Y33236D01* X24752Y33240D01* X24744Y33243D01* X24735Y33243D01* X24726Y33243D01* X24718Y33241D01* X24710Y33237D01* X24686Y33225D01* X24660Y33215D01* X24634Y33208D01* X24608Y33203D01* X24581Y33200D01* X24554Y33200D01* X24527Y33202D01* X24507Y33205D01* Y33794D01* X24521Y33796D01* X24548Y33799D01* X24575Y33799D01* X24602Y33797D01* X24629Y33793D01* X24655Y33785D01* X24681Y33776D01* X24705Y33764D01* X24713Y33761D01* X24722Y33759D01* X24731Y33759D01* X24739Y33760D01* X24748Y33762D01* X24755Y33766D01* X24762Y33772D01* X24768Y33778D01* X24773Y33785D01* X24776Y33793D01* X24778Y33802D01* X24779Y33810D01* X24778Y33819D01* X24775Y33827D01* X24771Y33835D01* X24766Y33842D01* X24760Y33848D01* X24752Y33853D01* X24720Y33868D01* X24686Y33881D01* X24651Y33890D01* X24615Y33896D01* X24579Y33899D01* X24543Y33899D01* X24507Y33895D01* Y35102D01* X24530Y35100D01* X24566Y35100D01* X24602Y35104D01* X24638Y35111D01* X24672Y35121D01* X24706Y35134D01* X24738Y35150D01* X24746Y35155D01* X24752Y35161D01* X24757Y35168D01* X24761Y35175D01* X24763Y35184D01* X24764Y35193D01* X24764Y35201D01* X24761Y35210D01* X24758Y35218D01* X24753Y35225D01* X24747Y35231D01* X24740Y35236D01* X24732Y35240D01* X24724Y35243D01* X24715Y35243D01* X24706Y35243D01* X24698Y35241D01* X24690Y35237D01* X24666Y35225D01* X24640Y35215D01* X24614Y35208D01* X24588Y35203D01* X24561Y35200D01* X24534Y35200D01* X24507Y35202D01* Y35797D01* X24528Y35799D01* X24555Y35799D01* X24582Y35797D01* X24609Y35793D01* X24635Y35785D01* X24661Y35776D01* X24685Y35764D01* X24693Y35761D01* X24702Y35759D01* X24711Y35759D01* X24719Y35760D01* X24728Y35762D01* X24735Y35766D01* X24742Y35772D01* X24748Y35778D01* X24753Y35785D01* X24756Y35793D01* X24758Y35802D01* X24759Y35810D01* X24758Y35819D01* X24755Y35827D01* X24751Y35835D01* X24746Y35842D01* X24740Y35848D01* X24732Y35853D01* X24700Y35868D01* X24666Y35881D01* X24631Y35890D01* X24595Y35896D01* X24559Y35899D01* X24523Y35899D01* X24507Y35897D01* Y37100D01* X24510Y37100D01* X24546Y37100D01* X24582Y37104D01* X24618Y37111D01* X24652Y37121D01* X24686Y37134D01* X24718Y37150D01* X24726Y37155D01* X24732Y37161D01* X24737Y37168D01* X24741Y37175D01* X24743Y37184D01* X24744Y37193D01* X24744Y37201D01* X24741Y37210D01* X24738Y37218D01* X24733Y37225D01* X24727Y37231D01* X24720Y37236D01* X24712Y37240D01* X24704Y37243D01* X24695Y37243D01* X24686Y37243D01* X24678Y37241D01* X24670Y37237D01* X24646Y37225D01* X24620Y37215D01* X24594Y37208D01* X24568Y37203D01* X24541Y37200D01* X24514Y37200D01* X24507Y37200D01* Y37799D01* X24508Y37799D01* X24535Y37799D01* X24562Y37797D01* X24589Y37793D01* X24615Y37785D01* X24641Y37776D01* X24665Y37764D01* X24673Y37761D01* X24682Y37759D01* X24691Y37759D01* X24699Y37760D01* X24708Y37762D01* X24715Y37766D01* X24722Y37772D01* X24728Y37778D01* X24733Y37785D01* X24736Y37793D01* X24738Y37802D01* X24739Y37810D01* X24738Y37819D01* X24735Y37827D01* X24731Y37835D01* X24726Y37842D01* X24720Y37848D01* X24712Y37853D01* X24680Y37868D01* X24646Y37881D01* X24611Y37890D01* X24575Y37896D01* X24539Y37899D01* X24507Y37899D01* Y39100D01* X24526Y39100D01* X24562Y39104D01* X24598Y39111D01* X24632Y39121D01* X24666Y39134D01* X24698Y39150D01* X24706Y39155D01* X24712Y39161D01* X24717Y39168D01* X24721Y39175D01* X24723Y39184D01* X24724Y39193D01* X24724Y39201D01* X24721Y39210D01* X24718Y39218D01* X24713Y39225D01* X24707Y39231D01* X24700Y39236D01* X24692Y39240D01* X24684Y39243D01* X24675Y39243D01* X24666Y39243D01* X24658Y39241D01* X24650Y39237D01* X24626Y39225D01* X24600Y39215D01* X24574Y39208D01* X24548Y39203D01* X24521Y39200D01* X24507Y39200D01* Y39799D01* X24515Y39799D01* X24542Y39797D01* X24569Y39793D01* X24595Y39785D01* X24621Y39776D01* X24645Y39764D01* X24653Y39761D01* X24662Y39759D01* X24671Y39759D01* X24679Y39760D01* X24688Y39762D01* X24695Y39766D01* X24702Y39772D01* X24708Y39778D01* X24713Y39785D01* X24716Y39793D01* X24718Y39802D01* X24719Y39810D01* X24718Y39819D01* X24715Y39827D01* X24711Y39835D01* X24706Y39842D01* X24700Y39848D01* X24692Y39853D01* X24660Y39868D01* X24626Y39881D01* X24591Y39890D01* X24555Y39896D01* X24519Y39899D01* X24507Y39899D01* Y40000D01* G37* G36* X24832Y0D02*X24507D01* Y1367D01* X24519Y1338D01* X24535Y1306D01* X24539Y1299D01* X24545Y1292D01* X24553Y1287D01* X24560Y1283D01* X24569Y1281D01* X24577Y1280D01* X24586Y1281D01* X24595Y1283D01* X24603Y1286D01* X24610Y1291D01* X24616Y1297D01* X24621Y1304D01* X24625Y1312D01* X24627Y1320D01* X24628Y1329D01* X24628Y1338D01* X24626Y1346D01* X24622Y1354D01* X24610Y1378D01* X24600Y1404D01* X24593Y1430D01* X24588Y1456D01* X24585Y1483D01* X24585Y1511D01* X24587Y1538D01* X24592Y1564D01* X24599Y1590D01* X24608Y1616D01* X24620Y1640D01* X24623Y1649D01* X24625Y1657D01* X24625Y1666D01* X24624Y1674D01* X24622Y1683D01* X24618Y1690D01* X24613Y1697D01* X24606Y1703D01* X24599Y1708D01* X24591Y1711D01* X24582Y1713D01* X24574Y1714D01* X24565Y1713D01* X24557Y1710D01* X24549Y1706D01* X24542Y1701D01* X24536Y1695D01* X24531Y1687D01* X24516Y1655D01* X24507Y1631D01* Y3321D01* X24515Y3306D01* X24519Y3299D01* X24525Y3292D01* X24533Y3287D01* X24540Y3283D01* X24549Y3281D01* X24557Y3280D01* X24566Y3281D01* X24575Y3283D01* X24583Y3286D01* X24590Y3291D01* X24596Y3297D01* X24601Y3304D01* X24605Y3312D01* X24607Y3320D01* X24608Y3329D01* X24608Y3338D01* X24606Y3346D01* X24602Y3354D01* X24590Y3378D01* X24580Y3404D01* X24573Y3430D01* X24568Y3456D01* X24565Y3483D01* X24565Y3511D01* X24567Y3538D01* X24572Y3564D01* X24579Y3590D01* X24588Y3616D01* X24600Y3640D01* X24603Y3649D01* X24605Y3657D01* X24605Y3666D01* X24604Y3674D01* X24602Y3683D01* X24598Y3690D01* X24593Y3697D01* X24586Y3703D01* X24579Y3708D01* X24571Y3711D01* X24562Y3713D01* X24554Y3714D01* X24545Y3713D01* X24537Y3710D01* X24529Y3706D01* X24522Y3701D01* X24516Y3695D01* X24511Y3687D01* X24507Y3679D01* Y5291D01* X24513Y5287D01* X24520Y5283D01* X24529Y5281D01* X24537Y5280D01* X24546Y5281D01* X24555Y5283D01* X24563Y5286D01* X24570Y5291D01* X24576Y5297D01* X24581Y5304D01* X24585Y5312D01* X24587Y5320D01* X24588Y5329D01* X24588Y5338D01* X24586Y5346D01* X24582Y5354D01* X24570Y5378D01* X24560Y5404D01* X24553Y5430D01* X24548Y5456D01* X24545Y5483D01* X24545Y5511D01* X24547Y5538D01* X24552Y5564D01* X24559Y5590D01* X24568Y5616D01* X24580Y5640D01* X24583Y5649D01* X24585Y5657D01* X24585Y5666D01* X24584Y5674D01* X24582Y5683D01* X24578Y5690D01* X24573Y5697D01* X24566Y5703D01* X24559Y5708D01* X24551Y5711D01* X24542Y5713D01* X24534Y5714D01* X24525Y5713D01* X24517Y5710D01* X24509Y5706D01* X24507Y5705D01* Y7281D01* X24509Y7281D01* X24517Y7280D01* X24526Y7281D01* X24535Y7283D01* X24543Y7286D01* X24550Y7291D01* X24556Y7297D01* X24561Y7304D01* X24565Y7312D01* X24567Y7320D01* X24568Y7329D01* X24568Y7338D01* X24566Y7346D01* X24562Y7354D01* X24550Y7378D01* X24540Y7404D01* X24533Y7430D01* X24528Y7456D01* X24525Y7483D01* X24525Y7511D01* X24527Y7538D01* X24532Y7564D01* X24539Y7590D01* X24548Y7616D01* X24560Y7640D01* X24563Y7649D01* X24565Y7657D01* X24565Y7666D01* X24564Y7674D01* X24562Y7683D01* X24558Y7690D01* X24553Y7697D01* X24546Y7703D01* X24539Y7708D01* X24531Y7711D01* X24522Y7713D01* X24514Y7714D01* X24507Y7713D01* Y9281D01* X24515Y9283D01* X24523Y9286D01* X24530Y9291D01* X24536Y9297D01* X24541Y9304D01* X24545Y9312D01* X24547Y9320D01* X24548Y9329D01* X24548Y9338D01* X24546Y9346D01* X24542Y9354D01* X24530Y9378D01* X24520Y9404D01* X24513Y9430D01* X24508Y9456D01* X24507Y9460D01* Y9539D01* X24512Y9564D01* X24519Y9590D01* X24528Y9616D01* X24540Y9640D01* X24543Y9649D01* X24545Y9657D01* X24545Y9666D01* X24544Y9674D01* X24542Y9683D01* X24538Y9690D01* X24533Y9697D01* X24526Y9703D01* X24519Y9708D01* X24511Y9711D01* X24507Y9712D01* Y11289D01* X24510Y11291D01* X24516Y11297D01* X24521Y11304D01* X24525Y11312D01* X24527Y11320D01* X24528Y11329D01* X24528Y11338D01* X24526Y11346D01* X24522Y11354D01* X24510Y11378D01* X24507Y11386D01* Y11614D01* X24508Y11616D01* X24520Y11640D01* X24523Y11649D01* X24525Y11657D01* X24525Y11666D01* X24524Y11674D01* X24522Y11683D01* X24518Y11690D01* X24513Y11697D01* X24507Y11702D01* Y13320D01* X24507Y13320D01* X24508Y13329D01* X24508Y13338D01* X24507Y13340D01* Y17791D01* X24508Y17790D01* X24511Y17782D01* X24516Y17774D01* X24522Y17768D01* X24529Y17763D01* X24537Y17759D01* X24545Y17757D01* X24554Y17756D01* X24563Y17756D01* X24571Y17758D01* X24579Y17762D01* X24603Y17774D01* X24629Y17784D01* X24655Y17791D01* X24681Y17796D01* X24708Y17799D01* X24735Y17799D01* X24762Y17797D01* X24789Y17793D01* X24815Y17785D01* X24832Y17779D01* Y17220D01* X24820Y17215D01* X24794Y17208D01* X24768Y17203D01* X24741Y17200D01* X24714Y17200D01* X24687Y17202D01* X24660Y17207D01* X24634Y17214D01* X24608Y17223D01* X24584Y17235D01* X24576Y17238D01* X24567Y17240D01* X24558Y17240D01* X24550Y17239D01* X24541Y17237D01* X24534Y17233D01* X24527Y17228D01* X24521Y17221D01* X24516Y17214D01* X24513Y17206D01* X24511Y17197D01* X24510Y17189D01* X24511Y17180D01* X24514Y17172D01* X24518Y17164D01* X24523Y17157D01* X24529Y17151D01* X24537Y17146D01* X24569Y17131D01* X24603Y17118D01* X24638Y17109D01* X24674Y17103D01* X24710Y17100D01* X24746Y17100D01* X24782Y17104D01* X24818Y17111D01* X24832Y17115D01* Y15890D01* X24831Y15890D01* X24795Y15896D01* X24759Y15899D01* X24723Y15899D01* X24687Y15895D01* X24651Y15889D01* X24617Y15879D01* X24583Y15866D01* X24551Y15849D01* X24543Y15845D01* X24537Y15839D01* X24532Y15832D01* X24528Y15824D01* X24526Y15815D01* X24525Y15807D01* X24525Y15798D01* X24528Y15790D01* X24531Y15782D01* X24536Y15774D01* X24542Y15768D01* X24549Y15763D01* X24557Y15759D01* X24565Y15757D01* X24574Y15756D01* X24583Y15756D01* X24591Y15758D01* X24599Y15762D01* X24623Y15774D01* X24649Y15784D01* X24675Y15791D01* X24701Y15796D01* X24728Y15799D01* X24755Y15799D01* X24782Y15797D01* X24809Y15793D01* X24832Y15786D01* Y15213D01* X24814Y15208D01* X24788Y15203D01* X24761Y15200D01* X24734Y15200D01* X24707Y15202D01* X24680Y15207D01* X24654Y15214D01* X24628Y15223D01* X24604Y15235D01* X24596Y15238D01* X24587Y15240D01* X24578Y15240D01* X24570Y15239D01* X24561Y15237D01* X24554Y15233D01* X24547Y15228D01* X24541Y15221D01* X24536Y15214D01* X24533Y15206D01* X24531Y15197D01* X24530Y15189D01* X24531Y15180D01* X24534Y15172D01* X24538Y15164D01* X24543Y15157D01* X24549Y15151D01* X24557Y15146D01* X24589Y15131D01* X24623Y15118D01* X24658Y15109D01* X24694Y15103D01* X24730Y15100D01* X24766Y15100D01* X24802Y15104D01* X24832Y15110D01* Y13893D01* X24815Y13896D01* X24779Y13899D01* X24743Y13899D01* X24707Y13895D01* X24671Y13889D01* X24637Y13879D01* X24603Y13866D01* X24571Y13849D01* X24563Y13845D01* X24557Y13839D01* X24552Y13832D01* X24548Y13824D01* X24546Y13815D01* X24545Y13807D01* X24545Y13798D01* X24548Y13790D01* X24551Y13782D01* X24556Y13774D01* X24562Y13768D01* X24569Y13763D01* X24577Y13759D01* X24585Y13757D01* X24594Y13756D01* X24603Y13756D01* X24611Y13758D01* X24619Y13762D01* X24643Y13774D01* X24669Y13784D01* X24695Y13791D01* X24721Y13796D01* X24748Y13799D01* X24775Y13799D01* X24802Y13797D01* X24829Y13793D01* X24832Y13792D01* Y13207D01* X24808Y13203D01* X24781Y13200D01* X24754Y13200D01* X24727Y13202D01* X24700Y13207D01* X24674Y13214D01* X24648Y13223D01* X24624Y13235D01* X24616Y13238D01* X24607Y13240D01* X24598Y13240D01* X24590Y13239D01* X24581Y13237D01* X24574Y13233D01* X24567Y13228D01* X24561Y13221D01* X24556Y13214D01* X24553Y13206D01* X24551Y13197D01* X24550Y13189D01* X24551Y13180D01* X24554Y13172D01* X24558Y13164D01* X24563Y13157D01* X24569Y13151D01* X24577Y13146D01* X24609Y13131D01* X24643Y13118D01* X24678Y13109D01* X24714Y13103D01* X24750Y13100D01* X24786Y13100D01* X24822Y13104D01* X24832Y13106D01* Y11897D01* X24799Y11899D01* X24763Y11899D01* X24727Y11895D01* X24691Y11889D01* X24657Y11879D01* X24623Y11866D01* X24591Y11849D01* X24583Y11845D01* X24577Y11839D01* X24572Y11832D01* X24568Y11824D01* X24566Y11815D01* X24565Y11807D01* X24565Y11798D01* X24568Y11790D01* X24571Y11782D01* X24576Y11774D01* X24582Y11768D01* X24589Y11763D01* X24597Y11759D01* X24605Y11757D01* X24614Y11756D01* X24623Y11756D01* X24631Y11758D01* X24639Y11762D01* X24663Y11774D01* X24689Y11784D01* X24715Y11791D01* X24741Y11796D01* X24768Y11799D01* X24795Y11799D01* X24822Y11797D01* X24832Y11795D01* Y11204D01* X24828Y11203D01* X24801Y11200D01* X24774Y11200D01* X24747Y11202D01* X24720Y11207D01* X24694Y11214D01* X24668Y11223D01* X24644Y11235D01* X24636Y11238D01* X24627Y11240D01* X24618Y11240D01* X24610Y11239D01* X24601Y11237D01* X24594Y11233D01* X24587Y11228D01* X24581Y11221D01* X24576Y11214D01* X24573Y11206D01* X24571Y11197D01* X24570Y11189D01* X24571Y11180D01* X24574Y11172D01* X24578Y11164D01* X24583Y11157D01* X24589Y11151D01* X24597Y11146D01* X24629Y11131D01* X24663Y11118D01* X24698Y11109D01* X24734Y11103D01* X24770Y11100D01* X24806Y11100D01* X24832Y11103D01* Y9898D01* X24819Y9899D01* X24783Y9899D01* X24747Y9895D01* X24711Y9889D01* X24677Y9879D01* X24643Y9866D01* X24611Y9849D01* X24603Y9845D01* X24597Y9839D01* X24592Y9832D01* X24588Y9824D01* X24586Y9815D01* X24585Y9807D01* X24585Y9798D01* X24588Y9790D01* X24591Y9782D01* X24596Y9774D01* X24602Y9768D01* X24609Y9763D01* X24617Y9759D01* X24625Y9757D01* X24634Y9756D01* X24643Y9756D01* X24651Y9758D01* X24659Y9762D01* X24683Y9774D01* X24709Y9784D01* X24735Y9791D01* X24761Y9796D01* X24788Y9799D01* X24815Y9799D01* X24832Y9798D01* Y9201D01* X24821Y9200D01* X24794Y9200D01* X24767Y9202D01* X24740Y9207D01* X24714Y9214D01* X24688Y9223D01* X24664Y9235D01* X24656Y9238D01* X24647Y9240D01* X24638Y9240D01* X24630Y9239D01* X24621Y9237D01* X24614Y9233D01* X24607Y9228D01* X24601Y9221D01* X24596Y9214D01* X24593Y9206D01* X24591Y9197D01* X24590Y9189D01* X24591Y9180D01* X24594Y9172D01* X24598Y9164D01* X24603Y9157D01* X24609Y9151D01* X24617Y9146D01* X24649Y9131D01* X24683Y9118D01* X24718Y9109D01* X24754Y9103D01* X24790Y9100D01* X24826Y9100D01* X24832Y9101D01* Y7899D01* X24803Y7899D01* X24767Y7895D01* X24731Y7889D01* X24697Y7879D01* X24663Y7866D01* X24631Y7849D01* X24623Y7845D01* X24617Y7839D01* X24612Y7832D01* X24608Y7824D01* X24606Y7815D01* X24605Y7807D01* X24605Y7798D01* X24608Y7790D01* X24611Y7782D01* X24616Y7774D01* X24622Y7768D01* X24629Y7763D01* X24637Y7759D01* X24645Y7757D01* X24654Y7756D01* X24663Y7756D01* X24671Y7758D01* X24679Y7762D01* X24703Y7774D01* X24729Y7784D01* X24755Y7791D01* X24781Y7796D01* X24808Y7799D01* X24832Y7799D01* Y7200D01* X24814Y7200D01* X24787Y7202D01* X24760Y7207D01* X24734Y7214D01* X24708Y7223D01* X24684Y7235D01* X24676Y7238D01* X24667Y7240D01* X24658Y7240D01* X24650Y7239D01* X24641Y7237D01* X24634Y7233D01* X24627Y7228D01* X24621Y7221D01* X24616Y7214D01* X24613Y7206D01* X24611Y7197D01* X24610Y7189D01* X24611Y7180D01* X24614Y7172D01* X24618Y7164D01* X24623Y7157D01* X24629Y7151D01* X24637Y7146D01* X24669Y7131D01* X24703Y7118D01* X24738Y7109D01* X24774Y7103D01* X24810Y7100D01* X24832Y7100D01* Y5899D01* X24823Y5899D01* X24787Y5895D01* X24751Y5889D01* X24717Y5879D01* X24683Y5866D01* X24651Y5849D01* X24643Y5845D01* X24637Y5839D01* X24632Y5832D01* X24628Y5824D01* X24626Y5815D01* X24625Y5807D01* X24625Y5798D01* X24628Y5790D01* X24631Y5782D01* X24636Y5774D01* X24642Y5768D01* X24649Y5763D01* X24657Y5759D01* X24665Y5757D01* X24674Y5756D01* X24683Y5756D01* X24691Y5758D01* X24699Y5762D01* X24723Y5774D01* X24749Y5784D01* X24775Y5791D01* X24801Y5796D01* X24828Y5799D01* X24832D01* Y5200D01* X24807Y5202D01* X24780Y5207D01* X24754Y5214D01* X24728Y5223D01* X24704Y5235D01* X24696Y5238D01* X24687Y5240D01* X24678Y5240D01* X24670Y5239D01* X24661Y5237D01* X24654Y5233D01* X24647Y5228D01* X24641Y5221D01* X24636Y5214D01* X24633Y5206D01* X24631Y5197D01* X24630Y5189D01* X24631Y5180D01* X24634Y5172D01* X24638Y5164D01* X24643Y5157D01* X24649Y5151D01* X24657Y5146D01* X24689Y5131D01* X24723Y5118D01* X24758Y5109D01* X24794Y5103D01* X24830Y5100D01* X24832D01* Y3898D01* X24807Y3895D01* X24771Y3889D01* X24737Y3879D01* X24703Y3866D01* X24671Y3849D01* X24663Y3845D01* X24657Y3839D01* X24652Y3832D01* X24648Y3824D01* X24646Y3815D01* X24645Y3807D01* X24645Y3798D01* X24648Y3790D01* X24651Y3782D01* X24656Y3774D01* X24662Y3768D01* X24669Y3763D01* X24677Y3759D01* X24685Y3757D01* X24694Y3756D01* X24703Y3756D01* X24711Y3758D01* X24719Y3762D01* X24743Y3774D01* X24769Y3784D01* X24795Y3791D01* X24821Y3796D01* X24832Y3798D01* Y3202D01* X24827Y3202D01* X24800Y3207D01* X24774Y3214D01* X24748Y3223D01* X24724Y3235D01* X24716Y3238D01* X24707Y3240D01* X24698Y3240D01* X24690Y3239D01* X24681Y3237D01* X24674Y3233D01* X24667Y3228D01* X24661Y3221D01* X24656Y3214D01* X24653Y3206D01* X24651Y3197D01* X24650Y3189D01* X24651Y3180D01* X24654Y3172D01* X24658Y3164D01* X24663Y3157D01* X24669Y3151D01* X24677Y3146D01* X24709Y3131D01* X24743Y3118D01* X24778Y3109D01* X24814Y3103D01* X24832Y3101D01* Y1896D01* X24827Y1895D01* X24791Y1889D01* X24757Y1879D01* X24723Y1866D01* X24691Y1849D01* X24683Y1845D01* X24677Y1839D01* X24672Y1832D01* X24668Y1824D01* X24666Y1815D01* X24665Y1807D01* X24665Y1798D01* X24668Y1790D01* X24671Y1782D01* X24676Y1774D01* X24682Y1768D01* X24689Y1763D01* X24697Y1759D01* X24705Y1757D01* X24714Y1756D01* X24723Y1756D01* X24731Y1758D01* X24739Y1762D01* X24763Y1774D01* X24789Y1784D01* X24815Y1791D01* X24832Y1795D01* Y1204D01* X24820Y1207D01* X24794Y1214D01* X24768Y1223D01* X24744Y1235D01* X24736Y1238D01* X24727Y1240D01* X24718Y1240D01* X24710Y1239D01* X24701Y1237D01* X24694Y1233D01* X24687Y1228D01* X24681Y1221D01* X24676Y1214D01* X24673Y1206D01* X24671Y1197D01* X24670Y1189D01* X24671Y1180D01* X24674Y1172D01* X24678Y1164D01* X24683Y1157D01* X24689Y1151D01* X24697Y1146D01* X24729Y1131D01* X24763Y1118D01* X24798Y1109D01* X24832Y1103D01* Y0D01* G37* G36* Y17884D02*X24811Y17890D01* X24775Y17896D01* X24739Y17899D01* X24703Y17899D01* X24667Y17895D01* X24631Y17889D01* X24597Y17879D01* X24563Y17866D01* X24531Y17849D01* X24523Y17845D01* X24517Y17839D01* X24512Y17832D01* X24508Y17824D01* X24507Y17821D01* Y19153D01* X24509Y19151D01* X24517Y19146D01* X24549Y19131D01* X24583Y19118D01* X24618Y19109D01* X24654Y19103D01* X24690Y19100D01* X24726Y19100D01* X24762Y19104D01* X24798Y19111D01* X24832Y19121D01* X24832D01* Y17884D01* G37* G36* Y19229D02*X24826Y19225D01* X24800Y19215D01* X24774Y19208D01* X24748Y19203D01* X24721Y19200D01* X24694Y19200D01* X24667Y19202D01* X24640Y19207D01* X24614Y19214D01* X24588Y19223D01* X24564Y19235D01* X24556Y19238D01* X24547Y19240D01* X24538Y19240D01* X24530Y19239D01* X24521Y19237D01* X24514Y19233D01* X24507Y19228D01* Y19764D01* X24509Y19763D01* X24517Y19759D01* X24525Y19757D01* X24534Y19756D01* X24543Y19756D01* X24551Y19758D01* X24559Y19762D01* X24583Y19774D01* X24609Y19784D01* X24635Y19791D01* X24661Y19796D01* X24688Y19799D01* X24715Y19799D01* X24742Y19797D01* X24769Y19793D01* X24795Y19785D01* X24821Y19776D01* X24832Y19771D01* Y19229D01* G37* G36* Y19878D02*X24826Y19881D01* X24791Y19890D01* X24755Y19896D01* X24719Y19899D01* X24683Y19899D01* X24647Y19895D01* X24611Y19889D01* X24577Y19879D01* X24543Y19866D01* X24511Y19849D01* X24507Y19847D01* Y21141D01* X24529Y21131D01* X24563Y21118D01* X24598Y21109D01* X24634Y21103D01* X24670Y21100D01* X24706Y21100D01* X24742Y21104D01* X24778Y21111D01* X24812Y21121D01* X24832Y21128D01* Y19878D01* G37* G36* Y21238D02*X24830Y21237D01* X24806Y21225D01* X24780Y21215D01* X24754Y21208D01* X24728Y21203D01* X24701Y21200D01* X24674Y21200D01* X24647Y21202D01* X24620Y21207D01* X24594Y21214D01* X24568Y21223D01* X24544Y21235D01* X24536Y21238D01* X24527Y21240D01* X24518Y21240D01* X24510Y21239D01* X24507Y21239D01* Y21756D01* X24514Y21756D01* X24523Y21756D01* X24531Y21758D01* X24539Y21762D01* X24563Y21774D01* X24589Y21784D01* X24615Y21791D01* X24641Y21796D01* X24668Y21799D01* X24695Y21799D01* X24722Y21797D01* X24749Y21793D01* X24775Y21785D01* X24801Y21776D01* X24825Y21764D01* X24832Y21762D01* Y21238D01* G37* G36* Y21871D02*X24806Y21881D01* X24771Y21890D01* X24735Y21896D01* X24699Y21899D01* X24663Y21899D01* X24627Y21895D01* X24591Y21889D01* X24557Y21879D01* X24523Y21866D01* X24507Y21858D01* Y23132D01* X24509Y23131D01* X24543Y23118D01* X24578Y23109D01* X24614Y23103D01* X24650Y23100D01* X24686Y23100D01* X24722Y23104D01* X24758Y23111D01* X24792Y23121D01* X24826Y23134D01* X24832Y23137D01* Y21871D01* G37* G36* Y23243D02*X24826Y23243D01* X24818Y23241D01* X24810Y23237D01* X24786Y23225D01* X24760Y23215D01* X24734Y23208D01* X24708Y23203D01* X24681Y23200D01* X24654Y23200D01* X24627Y23202D01* X24600Y23207D01* X24574Y23214D01* X24548Y23223D01* X24524Y23235D01* X24516Y23238D01* X24507Y23240D01* Y23757D01* X24511Y23758D01* X24519Y23762D01* X24543Y23774D01* X24569Y23784D01* X24595Y23791D01* X24621Y23796D01* X24648Y23799D01* X24675Y23799D01* X24702Y23797D01* X24729Y23793D01* X24755Y23785D01* X24781Y23776D01* X24805Y23764D01* X24813Y23761D01* X24822Y23759D01* X24831Y23759D01* X24832Y23759D01* Y23243D01* G37* G36* Y23862D02*X24820Y23868D01* X24786Y23881D01* X24751Y23890D01* X24715Y23896D01* X24679Y23899D01* X24643Y23899D01* X24607Y23895D01* X24571Y23889D01* X24537Y23879D01* X24507Y23867D01* Y25124D01* X24523Y25118D01* X24558Y25109D01* X24594Y25103D01* X24630Y25100D01* X24666Y25100D01* X24702Y25104D01* X24738Y25111D01* X24772Y25121D01* X24806Y25134D01* X24832Y25147D01* Y23862D01* G37* G36* Y25240D02*X24832Y25240D01* X24824Y25243D01* X24815Y25243D01* X24806Y25243D01* X24798Y25241D01* X24790Y25237D01* X24766Y25225D01* X24740Y25215D01* X24714Y25208D01* X24688Y25203D01* X24661Y25200D01* X24634Y25200D01* X24607Y25202D01* X24580Y25207D01* X24554Y25214D01* X24528Y25223D01* X24507Y25233D01* Y25766D01* X24523Y25774D01* X24549Y25784D01* X24575Y25791D01* X24601Y25796D01* X24628Y25799D01* X24655Y25799D01* X24682Y25797D01* X24709Y25793D01* X24735Y25785D01* X24761Y25776D01* X24785Y25764D01* X24793Y25761D01* X24802Y25759D01* X24811Y25759D01* X24819Y25760D01* X24828Y25762D01* X24832Y25765D01* Y25240D01* G37* G36* Y25853D02*X24832Y25853D01* X24800Y25868D01* X24766Y25881D01* X24731Y25890D01* X24695Y25896D01* X24659Y25899D01* X24623Y25899D01* X24587Y25895D01* X24551Y25889D01* X24517Y25879D01* X24507Y25875D01* Y27117D01* X24538Y27109D01* X24574Y27103D01* X24610Y27100D01* X24646Y27100D01* X24682Y27104D01* X24718Y27111D01* X24752Y27121D01* X24786Y27134D01* X24818Y27150D01* X24826Y27155D01* X24832Y27161D01* X24832Y27161D01* Y25853D01* G37* G36* Y27225D02*X24827Y27231D01* X24820Y27236D01* X24812Y27240D01* X24804Y27243D01* X24795Y27243D01* X24786Y27243D01* X24778Y27241D01* X24770Y27237D01* X24746Y27225D01* X24720Y27215D01* X24694Y27208D01* X24668Y27203D01* X24641Y27200D01* X24614Y27200D01* X24587Y27202D01* X24560Y27207D01* X24534Y27214D01* X24508Y27223D01* X24507Y27223D01* Y27776D01* X24529Y27784D01* X24555Y27791D01* X24581Y27796D01* X24608Y27799D01* X24635Y27799D01* X24662Y27797D01* X24689Y27793D01* X24715Y27785D01* X24741Y27776D01* X24765Y27764D01* X24773Y27761D01* X24782Y27759D01* X24791Y27759D01* X24799Y27760D01* X24808Y27762D01* X24815Y27766D01* X24822Y27772D01* X24828Y27778D01* X24832Y27784D01* Y27225D01* G37* G36* Y40000D02*X24912D01* Y37596D01* X24904Y37627D01* X24890Y37661D01* X24874Y37694D01* X24870Y37701D01* X24864Y37707D01* X24856Y37712D01* X24849Y37716D01* X24840Y37718D01* X24832Y37719D01* Y39289D01* X24840Y39293D01* X24847Y39298D01* X24853Y39305D01* X24858Y39312D01* X24873Y39344D01* X24886Y39378D01* X24895Y39413D01* X24901Y39449D01* X24904Y39485D01* X24904Y39521D01* X24900Y39557D01* X24894Y39593D01* X24884Y39627D01* X24870Y39661D01* X24854Y39694D01* X24850Y39701D01* X24844Y39707D01* X24836Y39712D01* X24832Y39714D01* Y40000D01* G37* G36* X24912Y29719D02*X24912Y29719D01* X24903Y29719D01* X24894Y29717D01* X24886Y29713D01* X24879Y29708D01* X24873Y29702D01* X24868Y29695D01* X24864Y29687D01* X24862Y29679D01* X24861Y29670D01* X24861Y29661D01* X24863Y29653D01* X24867Y29645D01* X24879Y29621D01* X24889Y29595D01* X24896Y29569D01* X24901Y29543D01* X24904Y29516D01* X24904Y29489D01* X24902Y29462D01* X24897Y29435D01* X24890Y29409D01* X24881Y29383D01* X24869Y29359D01* X24866Y29351D01* X24864Y29342D01* X24864Y29333D01* X24865Y29325D01* X24867Y29317D01* X24871Y29309D01* X24876Y29302D01* X24883Y29296D01* X24890Y29291D01* X24898Y29288D01* X24907Y29286D01* X24912Y29286D01* Y27716D01* X24906Y27713D01* X24899Y27708D01* X24893Y27702D01* X24888Y27695D01* X24884Y27687D01* X24882Y27679D01* X24881Y27670D01* X24881Y27661D01* X24883Y27653D01* X24887Y27645D01* X24899Y27621D01* X24909Y27595D01* X24912Y27583D01* Y27416D01* X24910Y27409D01* X24901Y27383D01* X24889Y27359D01* X24886Y27351D01* X24884Y27342D01* X24884Y27333D01* X24885Y27325D01* X24887Y27317D01* X24891Y27309D01* X24896Y27302D01* X24903Y27296D01* X24910Y27291D01* X24912Y27290D01* Y25701D01* X24908Y25695D01* X24904Y25687D01* X24902Y25679D01* X24901Y25670D01* X24901Y25661D01* X24903Y25653D01* X24907Y25645D01* X24912Y25634D01* Y25365D01* X24909Y25359D01* X24906Y25351D01* X24904Y25342D01* X24904Y25333D01* X24905Y25325D01* X24907Y25317D01* X24911Y25309D01* X24912Y25307D01* Y19833D01* X24911Y19835D01* X24906Y19842D01* X24900Y19848D01* X24892Y19853D01* X24860Y19868D01* X24832Y19878D01* Y21128D01* X24846Y21134D01* X24878Y21150D01* X24886Y21155D01* X24892Y21161D01* X24897Y21168D01* X24901Y21175D01* X24903Y21184D01* X24904Y21193D01* X24904Y21201D01* X24901Y21210D01* X24898Y21218D01* X24893Y21225D01* X24887Y21231D01* X24880Y21236D01* X24872Y21240D01* X24864Y21243D01* X24855Y21243D01* X24846Y21243D01* X24838Y21241D01* X24832Y21238D01* Y21762D01* X24833Y21761D01* X24842Y21759D01* X24851Y21759D01* X24859Y21760D01* X24868Y21762D01* X24875Y21766D01* X24882Y21772D01* X24888Y21778D01* X24893Y21785D01* X24896Y21793D01* X24898Y21802D01* X24899Y21810D01* X24898Y21819D01* X24895Y21827D01* X24891Y21835D01* X24886Y21842D01* X24880Y21848D01* X24872Y21853D01* X24840Y21868D01* X24832Y21871D01* Y23137D01* X24858Y23150D01* X24866Y23155D01* X24872Y23161D01* X24877Y23168D01* X24881Y23175D01* X24883Y23184D01* X24884Y23193D01* X24884Y23201D01* X24881Y23210D01* X24878Y23218D01* X24873Y23225D01* X24867Y23231D01* X24860Y23236D01* X24852Y23240D01* X24844Y23243D01* X24835Y23243D01* X24832Y23243D01* Y23759D01* X24839Y23760D01* X24848Y23762D01* X24855Y23766D01* X24862Y23772D01* X24868Y23778D01* X24873Y23785D01* X24876Y23793D01* X24878Y23802D01* X24879Y23810D01* X24878Y23819D01* X24875Y23827D01* X24871Y23835D01* X24866Y23842D01* X24860Y23848D01* X24852Y23853D01* X24832Y23862D01* Y25147D01* X24838Y25150D01* X24846Y25155D01* X24852Y25161D01* X24857Y25168D01* X24861Y25175D01* X24863Y25184D01* X24864Y25193D01* X24864Y25201D01* X24861Y25210D01* X24858Y25218D01* X24853Y25225D01* X24847Y25231D01* X24840Y25236D01* X24832Y25240D01* Y25765D01* X24835Y25766D01* X24842Y25772D01* X24848Y25778D01* X24853Y25785D01* X24856Y25793D01* X24858Y25802D01* X24859Y25810D01* X24858Y25819D01* X24855Y25827D01* X24851Y25835D01* X24846Y25842D01* X24840Y25848D01* X24832Y25853D01* Y27161D01* X24837Y27168D01* X24841Y27175D01* X24843Y27184D01* X24844Y27193D01* X24844Y27201D01* X24841Y27210D01* X24838Y27218D01* X24833Y27225D01* X24832Y27225D01* Y27784D01* X24833Y27785D01* X24836Y27793D01* X24838Y27802D01* X24839Y27810D01* X24838Y27819D01* X24835Y27827D01* X24832Y27833D01* Y33307D01* X24836Y33302D01* X24843Y33296D01* X24850Y33291D01* X24858Y33288D01* X24867Y33286D01* X24875Y33285D01* X24884Y33286D01* X24892Y33289D01* X24900Y33293D01* X24907Y33298D01* X24912Y33304D01* Y31714D01* X24909Y31716D01* X24900Y31718D01* X24892Y31719D01* X24883Y31719D01* X24874Y31717D01* X24866Y31713D01* X24859Y31708D01* X24853Y31702D01* X24848Y31695D01* X24844Y31687D01* X24842Y31679D01* X24841Y31670D01* X24841Y31661D01* X24843Y31653D01* X24847Y31645D01* X24859Y31621D01* X24869Y31595D01* X24876Y31569D01* X24881Y31543D01* X24884Y31516D01* X24884Y31489D01* X24882Y31462D01* X24877Y31435D01* X24870Y31409D01* X24861Y31383D01* X24849Y31359D01* X24846Y31351D01* X24844Y31342D01* X24844Y31333D01* X24845Y31325D01* X24847Y31317D01* X24851Y31309D01* X24856Y31302D01* X24863Y31296D01* X24870Y31291D01* X24878Y31288D01* X24887Y31286D01* X24895Y31285D01* X24904Y31286D01* X24912Y31289D01* X24912Y31289D01* Y29719D01* G37* G36* Y11878D02*X24906Y11881D01* X24871Y11890D01* X24835Y11896D01* X24832Y11897D01* Y13106D01* X24858Y13111D01* X24892Y13121D01* X24912Y13128D01* Y11878D01* G37* G36* Y13238D02*X24910Y13237D01* X24886Y13225D01* X24860Y13215D01* X24834Y13208D01* X24832Y13207D01* Y13792D01* X24855Y13785D01* X24881Y13776D01* X24905Y13764D01* X24912Y13762D01* Y13238D01* G37* G36* Y13871D02*X24886Y13881D01* X24851Y13890D01* X24832Y13893D01* Y15110D01* X24838Y15111D01* X24872Y15121D01* X24906Y15134D01* X24912Y15137D01* Y13871D01* G37* G36* Y15243D02*X24906Y15243D01* X24898Y15241D01* X24890Y15237D01* X24866Y15225D01* X24840Y15215D01* X24832Y15213D01* Y15786D01* X24835Y15785D01* X24861Y15776D01* X24885Y15764D01* X24893Y15761D01* X24902Y15759D01* X24911Y15759D01* X24912Y15759D01* Y15243D01* G37* G36* Y15862D02*X24900Y15868D01* X24866Y15881D01* X24832Y15890D01* Y17115D01* X24852Y17121D01* X24886Y17134D01* X24912Y17147D01* Y15862D01* G37* G36* Y17240D02*X24912Y17240D01* X24904Y17243D01* X24895Y17243D01* X24886Y17243D01* X24878Y17241D01* X24870Y17237D01* X24846Y17225D01* X24832Y17220D01* Y17779D01* X24841Y17776D01* X24865Y17764D01* X24873Y17761D01* X24882Y17759D01* X24891Y17759D01* X24899Y17760D01* X24908Y17762D01* X24912Y17765D01* Y17240D01* G37* G36* Y17853D02*X24912Y17853D01* X24880Y17868D01* X24846Y17881D01* X24832Y17884D01* Y19121D01* X24866Y19134D01* X24898Y19150D01* X24906Y19155D01* X24912Y19161D01* X24912Y19161D01* Y17853D01* G37* G36* Y19225D02*X24907Y19231D01* X24900Y19236D01* X24892Y19240D01* X24884Y19243D01* X24875Y19243D01* X24866Y19243D01* X24858Y19241D01* X24850Y19237D01* X24832Y19229D01* Y19771D01* X24845Y19764D01* X24853Y19761D01* X24862Y19759D01* X24871Y19759D01* X24879Y19760D01* X24888Y19762D01* X24895Y19766D01* X24902Y19772D01* X24908Y19778D01* X24912Y19784D01* Y19225D01* G37* G36* Y33696D02*X24910Y33701D01* X24904Y33707D01* X24896Y33712D01* X24889Y33716D01* X24880Y33718D01* X24872Y33719D01* X24863Y33719D01* X24854Y33717D01* X24846Y33713D01* X24839Y33708D01* X24833Y33702D01* X24832Y33701D01* Y35290D01* X24838Y35288D01* X24847Y35286D01* X24855Y35285D01* X24864Y35286D01* X24872Y35289D01* X24880Y35293D01* X24887Y35298D01* X24893Y35305D01* X24898Y35312D01* X24912Y35343D01* Y33696D01* G37* G36* Y35656D02*X24910Y35661D01* X24894Y35694D01* X24890Y35701D01* X24884Y35707D01* X24876Y35712D01* X24869Y35716D01* X24860Y35718D01* X24852Y35719D01* X24843Y35719D01* X24834Y35717D01* X24832Y35716D01* Y37286D01* X24835Y37285D01* X24844Y37286D01* X24852Y37289D01* X24860Y37293D01* X24867Y37298D01* X24873Y37305D01* X24878Y37312D01* X24893Y37344D01* X24906Y37378D01* X24912Y37404D01* Y35656D01* G37* G36* Y40000D02*X24992D01* Y29596D01* X24984Y29627D01* X24970Y29661D01* X24954Y29694D01* X24950Y29701D01* X24944Y29707D01* X24936Y29712D01* X24929Y29716D01* X24920Y29718D01* X24912Y29719D01* Y31289D01* X24920Y31293D01* X24927Y31298D01* X24933Y31305D01* X24938Y31312D01* X24953Y31344D01* X24966Y31378D01* X24975Y31413D01* X24981Y31449D01* X24984Y31485D01* X24984Y31521D01* X24980Y31557D01* X24974Y31593D01* X24964Y31627D01* X24950Y31661D01* X24934Y31694D01* X24930Y31701D01* X24924Y31707D01* X24916Y31712D01* X24912Y31714D01* Y33304D01* X24913Y33305D01* X24918Y33312D01* X24933Y33344D01* X24946Y33378D01* X24955Y33413D01* X24961Y33449D01* X24964Y33485D01* X24964Y33521D01* X24960Y33557D01* X24954Y33593D01* X24944Y33627D01* X24930Y33661D01* X24914Y33694D01* X24912Y33696D01* Y35343D01* X24913Y35344D01* X24926Y35378D01* X24935Y35413D01* X24941Y35449D01* X24944Y35485D01* X24944Y35521D01* X24940Y35557D01* X24934Y35593D01* X24924Y35627D01* X24912Y35656D01* Y37404D01* X24915Y37413D01* X24921Y37449D01* X24924Y37485D01* X24924Y37521D01* X24920Y37557D01* X24914Y37593D01* X24912Y37596D01* Y40000D01* G37* G36* Y29286D02*X24915Y29285D01* X24924Y29286D01* X24932Y29289D01* X24940Y29293D01* X24947Y29298D01* X24953Y29305D01* X24958Y29312D01* X24973Y29344D01* X24986Y29378D01* X24992Y29404D01* Y27656D01* X24990Y27661D01* X24974Y27694D01* X24970Y27701D01* X24964Y27707D01* X24956Y27712D01* X24949Y27716D01* X24940Y27718D01* X24932Y27719D01* X24923Y27719D01* X24914Y27717D01* X24912Y27716D01* Y29286D01* G37* G36* Y27583D02*X24916Y27569D01* X24921Y27543D01* X24924Y27516D01* X24924Y27489D01* X24922Y27462D01* X24917Y27435D01* X24912Y27416D01* Y27583D01* G37* G36* Y27290D02*X24918Y27288D01* X24927Y27286D01* X24935Y27285D01* X24944Y27286D01* X24952Y27289D01* X24960Y27293D01* X24967Y27298D01* X24973Y27305D01* X24978Y27312D01* X24992Y27343D01* Y25696D01* X24990Y25701D01* X24984Y25707D01* X24976Y25712D01* X24969Y25716D01* X24960Y25718D01* X24952Y25719D01* X24943Y25719D01* X24934Y25717D01* X24926Y25713D01* X24919Y25708D01* X24913Y25702D01* X24912Y25701D01* Y27290D01* G37* G36* Y25634D02*X24919Y25621D01* X24929Y25595D01* X24936Y25569D01* X24941Y25543D01* X24944Y25516D01* X24944Y25489D01* X24942Y25462D01* X24937Y25435D01* X24930Y25409D01* X24921Y25383D01* X24912Y25365D01* Y25634D01* G37* G36* Y25307D02*X24916Y25302D01* X24923Y25296D01* X24930Y25291D01* X24938Y25288D01* X24947Y25286D01* X24955Y25285D01* X24964Y25286D01* X24972Y25289D01* X24980Y25293D01* X24987Y25298D01* X24992Y25304D01* Y23714D01* X24989Y23716D01* X24980Y23718D01* X24972Y23719D01* X24963Y23719D01* X24954Y23717D01* X24946Y23713D01* X24939Y23708D01* X24933Y23702D01* X24928Y23695D01* X24924Y23687D01* X24922Y23679D01* X24921Y23670D01* X24921Y23661D01* X24923Y23653D01* X24927Y23645D01* X24939Y23621D01* X24949Y23595D01* X24956Y23569D01* X24961Y23543D01* X24964Y23516D01* X24964Y23489D01* X24962Y23462D01* X24957Y23435D01* X24950Y23409D01* X24941Y23383D01* X24929Y23359D01* X24926Y23351D01* X24924Y23342D01* X24924Y23333D01* X24925Y23325D01* X24927Y23317D01* X24931Y23309D01* X24936Y23302D01* X24943Y23296D01* X24950Y23291D01* X24958Y23288D01* X24967Y23286D01* X24975Y23285D01* X24984Y23286D01* X24992Y23289D01* X24992Y23289D01* Y21719D01* X24992Y21719D01* X24983Y21719D01* X24974Y21717D01* X24966Y21713D01* X24959Y21708D01* X24953Y21702D01* X24948Y21695D01* X24944Y21687D01* X24942Y21679D01* X24941Y21670D01* X24941Y21661D01* X24943Y21653D01* X24947Y21645D01* X24959Y21621D01* X24969Y21595D01* X24976Y21569D01* X24981Y21543D01* X24984Y21516D01* X24984Y21489D01* X24982Y21462D01* X24977Y21435D01* X24970Y21409D01* X24961Y21383D01* X24949Y21359D01* X24946Y21351D01* X24944Y21342D01* X24944Y21333D01* X24945Y21325D01* X24947Y21317D01* X24951Y21309D01* X24956Y21302D01* X24963Y21296D01* X24970Y21291D01* X24978Y21288D01* X24987Y21286D01* X24992Y21286D01* Y19716D01* X24986Y19713D01* X24979Y19708D01* X24973Y19702D01* X24968Y19695D01* X24964Y19687D01* X24962Y19679D01* X24961Y19670D01* X24961Y19661D01* X24963Y19653D01* X24967Y19645D01* X24979Y19621D01* X24989Y19595D01* X24992Y19583D01* Y19416D01* X24990Y19409D01* X24981Y19383D01* X24969Y19359D01* X24966Y19351D01* X24964Y19342D01* X24964Y19333D01* X24965Y19325D01* X24967Y19317D01* X24971Y19309D01* X24976Y19302D01* X24983Y19296D01* X24990Y19291D01* X24992Y19290D01* Y17701D01* X24988Y17695D01* X24984Y17687D01* X24982Y17679D01* X24981Y17670D01* X24981Y17661D01* X24983Y17653D01* X24987Y17645D01* X24992Y17634D01* Y17365D01* X24989Y17359D01* X24986Y17351D01* X24984Y17342D01* X24984Y17333D01* X24985Y17325D01* X24987Y17317D01* X24991Y17309D01* X24992Y17307D01* Y11833D01* X24991Y11835D01* X24986Y11842D01* X24980Y11848D01* X24972Y11853D01* X24940Y11868D01* X24912Y11878D01* Y13128D01* X24926Y13134D01* X24958Y13150D01* X24966Y13155D01* X24972Y13161D01* X24977Y13168D01* X24981Y13175D01* X24983Y13184D01* X24984Y13193D01* X24984Y13201D01* X24981Y13210D01* X24978Y13218D01* X24973Y13225D01* X24967Y13231D01* X24960Y13236D01* X24952Y13240D01* X24944Y13243D01* X24935Y13243D01* X24926Y13243D01* X24918Y13241D01* X24912Y13238D01* Y13762D01* X24913Y13761D01* X24922Y13759D01* X24931Y13759D01* X24939Y13760D01* X24948Y13762D01* X24955Y13766D01* X24962Y13772D01* X24968Y13778D01* X24973Y13785D01* X24976Y13793D01* X24978Y13802D01* X24979Y13810D01* X24978Y13819D01* X24975Y13827D01* X24971Y13835D01* X24966Y13842D01* X24960Y13848D01* X24952Y13853D01* X24920Y13868D01* X24912Y13871D01* Y15137D01* X24938Y15150D01* X24946Y15155D01* X24952Y15161D01* X24957Y15168D01* X24961Y15175D01* X24963Y15184D01* X24964Y15193D01* X24964Y15201D01* X24961Y15210D01* X24958Y15218D01* X24953Y15225D01* X24947Y15231D01* X24940Y15236D01* X24932Y15240D01* X24924Y15243D01* X24915Y15243D01* X24912Y15243D01* Y15759D01* X24919Y15760D01* X24928Y15762D01* X24935Y15766D01* X24942Y15772D01* X24948Y15778D01* X24953Y15785D01* X24956Y15793D01* X24958Y15802D01* X24959Y15810D01* X24958Y15819D01* X24955Y15827D01* X24951Y15835D01* X24946Y15842D01* X24940Y15848D01* X24932Y15853D01* X24912Y15862D01* Y17147D01* X24918Y17150D01* X24926Y17155D01* X24932Y17161D01* X24937Y17168D01* X24941Y17175D01* X24943Y17184D01* X24944Y17193D01* X24944Y17201D01* X24941Y17210D01* X24938Y17218D01* X24933Y17225D01* X24927Y17231D01* X24920Y17236D01* X24912Y17240D01* Y17765D01* X24915Y17766D01* X24922Y17772D01* X24928Y17778D01* X24933Y17785D01* X24936Y17793D01* X24938Y17802D01* X24939Y17810D01* X24938Y17819D01* X24935Y17827D01* X24931Y17835D01* X24926Y17842D01* X24920Y17848D01* X24912Y17853D01* Y19161D01* X24917Y19168D01* X24921Y19175D01* X24923Y19184D01* X24924Y19193D01* X24924Y19201D01* X24921Y19210D01* X24918Y19218D01* X24913Y19225D01* X24912Y19225D01* Y19784D01* X24913Y19785D01* X24916Y19793D01* X24918Y19802D01* X24919Y19810D01* X24918Y19819D01* X24915Y19827D01* X24912Y19833D01* Y25307D01* G37* G36* X24992Y0D02*X24832D01* Y1103D01* X24834Y1103D01* X24870Y1100D01* X24906Y1100D01* X24942Y1104D01* X24978Y1111D01* X24992Y1115D01* Y0D01* G37* G36* Y1220D02*X24980Y1215D01* X24954Y1208D01* X24928Y1203D01* X24901Y1200D01* X24874Y1200D01* X24847Y1202D01* X24832Y1204D01* Y1795D01* X24841Y1796D01* X24868Y1799D01* X24895Y1799D01* X24922Y1797D01* X24949Y1793D01* X24975Y1785D01* X24992Y1779D01* Y1220D01* G37* G36* Y1884D02*X24971Y1890D01* X24935Y1896D01* X24899Y1899D01* X24863Y1899D01* X24832Y1896D01* Y3101D01* X24850Y3100D01* X24886Y3100D01* X24922Y3104D01* X24958Y3111D01* X24992Y3121D01* X24992D01* Y1884D01* G37* G36* Y3229D02*X24986Y3225D01* X24960Y3215D01* X24934Y3208D01* X24908Y3203D01* X24881Y3200D01* X24854Y3200D01* X24832Y3202D01* Y3798D01* X24848Y3799D01* X24875Y3799D01* X24902Y3797D01* X24929Y3793D01* X24955Y3785D01* X24981Y3776D01* X24992Y3771D01* Y3229D01* G37* G36* Y3878D02*X24986Y3881D01* X24951Y3890D01* X24915Y3896D01* X24879Y3899D01* X24843Y3899D01* X24832Y3898D01* Y5100D01* X24866Y5100D01* X24902Y5104D01* X24938Y5111D01* X24972Y5121D01* X24992Y5128D01* Y3878D01* G37* G36* Y5238D02*X24990Y5237D01* X24966Y5225D01* X24940Y5215D01* X24914Y5208D01* X24888Y5203D01* X24861Y5200D01* X24834Y5200D01* X24832Y5200D01* Y5799D01* X24855Y5799D01* X24882Y5797D01* X24909Y5793D01* X24935Y5785D01* X24961Y5776D01* X24985Y5764D01* X24992Y5762D01* Y5238D01* G37* G36* Y5871D02*X24966Y5881D01* X24931Y5890D01* X24895Y5896D01* X24859Y5899D01* X24832Y5899D01* Y7100D01* X24846Y7100D01* X24882Y7104D01* X24918Y7111D01* X24952Y7121D01* X24986Y7134D01* X24992Y7137D01* Y5871D01* G37* G36* Y7243D02*X24986Y7243D01* X24978Y7241D01* X24970Y7237D01* X24946Y7225D01* X24920Y7215D01* X24894Y7208D01* X24868Y7203D01* X24841Y7200D01* X24832Y7200D01* Y7799D01* X24835D01* X24862Y7797D01* X24889Y7793D01* X24915Y7785D01* X24941Y7776D01* X24965Y7764D01* X24973Y7761D01* X24982Y7759D01* X24991Y7759D01* X24992Y7759D01* Y7243D01* G37* G36* Y7862D02*X24980Y7868D01* X24946Y7881D01* X24911Y7890D01* X24875Y7896D01* X24839Y7899D01* X24832Y7899D01* Y9101D01* X24862Y9104D01* X24898Y9111D01* X24932Y9121D01* X24966Y9134D01* X24992Y9147D01* Y7862D01* G37* G36* Y9240D02*X24992Y9240D01* X24984Y9243D01* X24975Y9243D01* X24966Y9243D01* X24958Y9241D01* X24950Y9237D01* X24926Y9225D01* X24900Y9215D01* X24874Y9208D01* X24848Y9203D01* X24832Y9201D01* Y9798D01* X24842Y9797D01* X24869Y9793D01* X24895Y9785D01* X24921Y9776D01* X24945Y9764D01* X24953Y9761D01* X24962Y9759D01* X24971Y9759D01* X24979Y9760D01* X24988Y9762D01* X24992Y9765D01* Y9240D01* G37* G36* Y9853D02*X24992Y9853D01* X24960Y9868D01* X24926Y9881D01* X24891Y9890D01* X24855Y9896D01* X24832Y9898D01* Y11103D01* X24842Y11104D01* X24878Y11111D01* X24912Y11121D01* X24946Y11134D01* X24978Y11150D01* X24986Y11155D01* X24992Y11161D01* X24992Y11161D01* Y9853D01* G37* G36* Y11225D02*X24987Y11231D01* X24980Y11236D01* X24972Y11240D01* X24964Y11243D01* X24955Y11243D01* X24946Y11243D01* X24938Y11241D01* X24930Y11237D01* X24906Y11225D01* X24880Y11215D01* X24854Y11208D01* X24832Y11204D01* Y11795D01* X24849Y11793D01* X24875Y11785D01* X24901Y11776D01* X24925Y11764D01* X24933Y11761D01* X24942Y11759D01* X24951Y11759D01* X24959Y11760D01* X24968Y11762D01* X24975Y11766D01* X24982Y11772D01* X24988Y11778D01* X24992Y11784D01* Y11225D01* G37* G36* Y40000D02*X25072D01* Y21596D01* X25064Y21627D01* X25050Y21661D01* X25034Y21694D01* X25030Y21701D01* X25024Y21707D01* X25016Y21712D01* X25009Y21716D01* X25000Y21718D01* X24992Y21719D01* Y23289D01* X25000Y23293D01* X25007Y23298D01* X25013Y23305D01* X25018Y23312D01* X25033Y23344D01* X25046Y23378D01* X25055Y23413D01* X25061Y23449D01* X25064Y23485D01* X25064Y23521D01* X25060Y23557D01* X25054Y23593D01* X25044Y23627D01* X25030Y23661D01* X25014Y23694D01* X25010Y23701D01* X25004Y23707D01* X24996Y23712D01* X24992Y23714D01* Y25304D01* X24993Y25305D01* X24998Y25312D01* X25013Y25344D01* X25026Y25378D01* X25035Y25413D01* X25041Y25449D01* X25044Y25485D01* X25044Y25521D01* X25040Y25557D01* X25034Y25593D01* X25024Y25627D01* X25010Y25661D01* X24994Y25694D01* X24992Y25696D01* Y27343D01* X24993Y27344D01* X25006Y27378D01* X25015Y27413D01* X25021Y27449D01* X25024Y27485D01* X25024Y27521D01* X25020Y27557D01* X25014Y27593D01* X25004Y27627D01* X24992Y27656D01* Y29404D01* X24995Y29413D01* X25001Y29449D01* X25004Y29485D01* X25004Y29521D01* X25000Y29557D01* X24994Y29593D01* X24992Y29596D01* Y40000D01* G37* G36* X25072Y0D02*X24992D01* Y1115D01* X25012Y1121D01* X25046Y1134D01* X25072Y1147D01* Y0D01* G37* G36* Y1240D02*X25072Y1240D01* X25064Y1243D01* X25055Y1243D01* X25046Y1243D01* X25038Y1241D01* X25030Y1237D01* X25006Y1225D01* X24992Y1220D01* Y1779D01* X25001Y1776D01* X25025Y1764D01* X25033Y1761D01* X25042Y1759D01* X25051Y1759D01* X25059Y1760D01* X25068Y1762D01* X25072Y1765D01* Y1240D01* G37* G36* Y1853D02*X25072Y1853D01* X25040Y1868D01* X25006Y1881D01* X24992Y1884D01* Y3121D01* X25026Y3134D01* X25058Y3150D01* X25066Y3155D01* X25072Y3161D01* X25072Y3161D01* Y1853D01* G37* G36* Y3225D02*X25067Y3231D01* X25060Y3236D01* X25052Y3240D01* X25044Y3243D01* X25035Y3243D01* X25026Y3243D01* X25018Y3241D01* X25010Y3237D01* X24992Y3229D01* Y3771D01* X25005Y3764D01* X25013Y3761D01* X25022Y3759D01* X25031Y3759D01* X25039Y3760D01* X25048Y3762D01* X25055Y3766D01* X25062Y3772D01* X25068Y3778D01* X25072Y3784D01* Y3225D01* G37* G36* Y3833D02*X25071Y3835D01* X25066Y3842D01* X25060Y3848D01* X25052Y3853D01* X25020Y3868D01* X24992Y3878D01* Y5128D01* X25006Y5134D01* X25038Y5150D01* X25046Y5155D01* X25052Y5161D01* X25057Y5168D01* X25061Y5175D01* X25063Y5184D01* X25064Y5193D01* X25064Y5201D01* X25061Y5210D01* X25058Y5218D01* X25053Y5225D01* X25047Y5231D01* X25040Y5236D01* X25032Y5240D01* X25024Y5243D01* X25015Y5243D01* X25006Y5243D01* X24998Y5241D01* X24992Y5238D01* Y5762D01* X24993Y5761D01* X25002Y5759D01* X25011Y5759D01* X25019Y5760D01* X25028Y5762D01* X25035Y5766D01* X25042Y5772D01* X25048Y5778D01* X25053Y5785D01* X25056Y5793D01* X25058Y5802D01* X25059Y5810D01* X25058Y5819D01* X25055Y5827D01* X25051Y5835D01* X25046Y5842D01* X25040Y5848D01* X25032Y5853D01* X25000Y5868D01* X24992Y5871D01* Y7137D01* X25018Y7150D01* X25026Y7155D01* X25032Y7161D01* X25037Y7168D01* X25041Y7175D01* X25043Y7184D01* X25044Y7193D01* X25044Y7201D01* X25041Y7210D01* X25038Y7218D01* X25033Y7225D01* X25027Y7231D01* X25020Y7236D01* X25012Y7240D01* X25004Y7243D01* X24995Y7243D01* X24992Y7243D01* Y7759D01* X24999Y7760D01* X25008Y7762D01* X25015Y7766D01* X25022Y7772D01* X25028Y7778D01* X25033Y7785D01* X25036Y7793D01* X25038Y7802D01* X25039Y7810D01* X25038Y7819D01* X25035Y7827D01* X25031Y7835D01* X25026Y7842D01* X25020Y7848D01* X25012Y7853D01* X24992Y7862D01* Y9147D01* X24998Y9150D01* X25006Y9155D01* X25012Y9161D01* X25017Y9168D01* X25021Y9175D01* X25023Y9184D01* X25024Y9193D01* X25024Y9201D01* X25021Y9210D01* X25018Y9218D01* X25013Y9225D01* X25007Y9231D01* X25000Y9236D01* X24992Y9240D01* Y9765D01* X24995Y9766D01* X25002Y9772D01* X25008Y9778D01* X25013Y9785D01* X25016Y9793D01* X25018Y9802D01* X25019Y9810D01* X25018Y9819D01* X25015Y9827D01* X25011Y9835D01* X25006Y9842D01* X25000Y9848D01* X24992Y9853D01* Y11161D01* X24997Y11168D01* X25001Y11175D01* X25003Y11184D01* X25004Y11193D01* X25004Y11201D01* X25001Y11210D01* X24998Y11218D01* X24993Y11225D01* X24992Y11225D01* Y11784D01* X24993Y11785D01* X24996Y11793D01* X24998Y11802D01* X24999Y11810D01* X24998Y11819D01* X24995Y11827D01* X24992Y11833D01* Y17307D01* X24996Y17302D01* X25003Y17296D01* X25010Y17291D01* X25018Y17288D01* X25027Y17286D01* X25035Y17285D01* X25044Y17286D01* X25052Y17289D01* X25060Y17293D01* X25067Y17298D01* X25072Y17304D01* Y15714D01* X25069Y15716D01* X25060Y15718D01* X25052Y15719D01* X25043Y15719D01* X25034Y15717D01* X25026Y15713D01* X25019Y15708D01* X25013Y15702D01* X25008Y15695D01* X25004Y15687D01* X25002Y15679D01* X25001Y15670D01* X25001Y15661D01* X25003Y15653D01* X25007Y15645D01* X25019Y15621D01* X25029Y15595D01* X25036Y15569D01* X25041Y15543D01* X25044Y15516D01* X25044Y15489D01* X25042Y15462D01* X25037Y15435D01* X25030Y15409D01* X25021Y15383D01* X25009Y15359D01* X25006Y15351D01* X25004Y15342D01* X25004Y15333D01* X25005Y15325D01* X25007Y15317D01* X25011Y15309D01* X25016Y15302D01* X25023Y15296D01* X25030Y15291D01* X25038Y15288D01* X25047Y15286D01* X25055Y15285D01* X25064Y15286D01* X25072Y15289D01* X25072Y15289D01* Y13719D01* X25072Y13719D01* X25063Y13719D01* X25054Y13717D01* X25046Y13713D01* X25039Y13708D01* X25033Y13702D01* X25028Y13695D01* X25024Y13687D01* X25022Y13679D01* X25021Y13670D01* X25021Y13661D01* X25023Y13653D01* X25027Y13645D01* X25039Y13621D01* X25049Y13595D01* X25056Y13569D01* X25061Y13543D01* X25064Y13516D01* X25064Y13489D01* X25062Y13462D01* X25057Y13435D01* X25050Y13409D01* X25041Y13383D01* X25029Y13359D01* X25026Y13351D01* X25024Y13342D01* X25024Y13333D01* X25025Y13325D01* X25027Y13317D01* X25031Y13309D01* X25036Y13302D01* X25043Y13296D01* X25050Y13291D01* X25058Y13288D01* X25067Y13286D01* X25072Y13286D01* Y11716D01* X25066Y11713D01* X25059Y11708D01* X25053Y11702D01* X25048Y11695D01* X25044Y11687D01* X25042Y11679D01* X25041Y11670D01* X25041Y11661D01* X25043Y11653D01* X25047Y11645D01* X25059Y11621D01* X25069Y11595D01* X25072Y11583D01* Y11416D01* X25070Y11409D01* X25061Y11383D01* X25049Y11359D01* X25046Y11351D01* X25044Y11342D01* X25044Y11333D01* X25045Y11325D01* X25047Y11317D01* X25051Y11309D01* X25056Y11302D01* X25063Y11296D01* X25070Y11291D01* X25072Y11290D01* Y9701D01* X25068Y9695D01* X25064Y9687D01* X25062Y9679D01* X25061Y9670D01* X25061Y9661D01* X25063Y9653D01* X25067Y9645D01* X25072Y9634D01* Y9365D01* X25069Y9359D01* X25066Y9351D01* X25064Y9342D01* X25064Y9333D01* X25065Y9325D01* X25067Y9317D01* X25071Y9309D01* X25072Y9307D01* Y3833D01* G37* G36* Y17696D02*X25070Y17701D01* X25064Y17707D01* X25056Y17712D01* X25049Y17716D01* X25040Y17718D01* X25032Y17719D01* X25023Y17719D01* X25014Y17717D01* X25006Y17713D01* X24999Y17708D01* X24993Y17702D01* X24992Y17701D01* Y19290D01* X24998Y19288D01* X25007Y19286D01* X25015Y19285D01* X25024Y19286D01* X25032Y19289D01* X25040Y19293D01* X25047Y19298D01* X25053Y19305D01* X25058Y19312D01* X25072Y19343D01* Y17696D01* G37* G36* Y19656D02*X25070Y19661D01* X25054Y19694D01* X25050Y19701D01* X25044Y19707D01* X25036Y19712D01* X25029Y19716D01* X25020Y19718D01* X25012Y19719D01* X25003Y19719D01* X24994Y19717D01* X24992Y19716D01* Y21286D01* X24995Y21285D01* X25004Y21286D01* X25012Y21289D01* X25020Y21293D01* X25027Y21298D01* X25033Y21305D01* X25038Y21312D01* X25053Y21344D01* X25066Y21378D01* X25072Y21404D01* Y19656D01* G37* G36* Y40000D02*X25152D01* Y13596D01* X25144Y13627D01* X25130Y13661D01* X25114Y13694D01* X25110Y13701D01* X25104Y13707D01* X25096Y13712D01* X25089Y13716D01* X25080Y13718D01* X25072Y13719D01* Y15289D01* X25080Y15293D01* X25087Y15298D01* X25093Y15305D01* X25098Y15312D01* X25113Y15344D01* X25126Y15378D01* X25135Y15413D01* X25141Y15449D01* X25144Y15485D01* X25144Y15521D01* X25140Y15557D01* X25134Y15593D01* X25124Y15627D01* X25110Y15661D01* X25094Y15694D01* X25090Y15701D01* X25084Y15707D01* X25076Y15712D01* X25072Y15714D01* Y17304D01* X25073Y17305D01* X25078Y17312D01* X25093Y17344D01* X25106Y17378D01* X25115Y17413D01* X25121Y17449D01* X25124Y17485D01* X25124Y17521D01* X25120Y17557D01* X25114Y17593D01* X25104Y17627D01* X25090Y17661D01* X25074Y17694D01* X25072Y17696D01* Y19343D01* X25073Y19344D01* X25086Y19378D01* X25095Y19413D01* X25101Y19449D01* X25104Y19485D01* X25104Y19521D01* X25100Y19557D01* X25094Y19593D01* X25084Y19627D01* X25072Y19656D01* Y21404D01* X25075Y21413D01* X25081Y21449D01* X25084Y21485D01* X25084Y21521D01* X25080Y21557D01* X25074Y21593D01* X25072Y21596D01* Y40000D01* G37* G36* X25152Y0D02*X25072D01* Y1147D01* X25078Y1150D01* X25086Y1155D01* X25092Y1161D01* X25097Y1168D01* X25101Y1175D01* X25103Y1184D01* X25104Y1193D01* X25104Y1201D01* X25101Y1210D01* X25098Y1218D01* X25093Y1225D01* X25087Y1231D01* X25080Y1236D01* X25072Y1240D01* Y1765D01* X25075Y1766D01* X25082Y1772D01* X25088Y1778D01* X25093Y1785D01* X25096Y1793D01* X25098Y1802D01* X25099Y1810D01* X25098Y1819D01* X25095Y1827D01* X25091Y1835D01* X25086Y1842D01* X25080Y1848D01* X25072Y1853D01* Y3161D01* X25077Y3168D01* X25081Y3175D01* X25083Y3184D01* X25084Y3193D01* X25084Y3201D01* X25081Y3210D01* X25078Y3218D01* X25073Y3225D01* X25072Y3225D01* Y3784D01* X25073Y3785D01* X25076Y3793D01* X25078Y3802D01* X25079Y3810D01* X25078Y3819D01* X25075Y3827D01* X25072Y3833D01* Y9307D01* X25076Y9302D01* X25083Y9296D01* X25090Y9291D01* X25098Y9288D01* X25107Y9286D01* X25115Y9285D01* X25124Y9286D01* X25132Y9289D01* X25140Y9293D01* X25147Y9298D01* X25152Y9304D01* Y7714D01* X25149Y7716D01* X25140Y7718D01* X25132Y7719D01* X25123Y7719D01* X25114Y7717D01* X25106Y7713D01* X25099Y7708D01* X25093Y7702D01* X25088Y7695D01* X25084Y7687D01* X25082Y7679D01* X25081Y7670D01* X25081Y7661D01* X25083Y7653D01* X25087Y7645D01* X25099Y7621D01* X25109Y7595D01* X25116Y7569D01* X25121Y7543D01* X25124Y7516D01* X25124Y7489D01* X25122Y7462D01* X25117Y7435D01* X25110Y7409D01* X25101Y7383D01* X25089Y7359D01* X25086Y7351D01* X25084Y7342D01* X25084Y7333D01* X25085Y7325D01* X25087Y7317D01* X25091Y7309D01* X25096Y7302D01* X25103Y7296D01* X25110Y7291D01* X25118Y7288D01* X25127Y7286D01* X25135Y7285D01* X25144Y7286D01* X25152Y7289D01* X25152Y7289D01* Y5719D01* X25152Y5719D01* X25143Y5719D01* X25134Y5717D01* X25126Y5713D01* X25119Y5708D01* X25113Y5702D01* X25108Y5695D01* X25104Y5687D01* X25102Y5679D01* X25101Y5670D01* X25101Y5661D01* X25103Y5653D01* X25107Y5645D01* X25119Y5621D01* X25129Y5595D01* X25136Y5569D01* X25141Y5543D01* X25144Y5516D01* X25144Y5489D01* X25142Y5462D01* X25137Y5435D01* X25130Y5409D01* X25121Y5383D01* X25109Y5359D01* X25106Y5351D01* X25104Y5342D01* X25104Y5333D01* X25105Y5325D01* X25107Y5317D01* X25111Y5309D01* X25116Y5302D01* X25123Y5296D01* X25130Y5291D01* X25138Y5288D01* X25147Y5286D01* X25152Y5286D01* Y3716D01* X25146Y3713D01* X25139Y3708D01* X25133Y3702D01* X25128Y3695D01* X25124Y3687D01* X25122Y3679D01* X25121Y3670D01* X25121Y3661D01* X25123Y3653D01* X25127Y3645D01* X25139Y3621D01* X25149Y3595D01* X25152Y3583D01* Y3416D01* X25150Y3409D01* X25141Y3383D01* X25129Y3359D01* X25126Y3351D01* X25124Y3342D01* X25124Y3333D01* X25125Y3325D01* X25127Y3317D01* X25131Y3309D01* X25136Y3302D01* X25143Y3296D01* X25150Y3291D01* X25152Y3290D01* Y1701D01* X25148Y1695D01* X25144Y1687D01* X25142Y1679D01* X25141Y1670D01* X25141Y1661D01* X25143Y1653D01* X25147Y1645D01* X25152Y1634D01* Y1365D01* X25149Y1359D01* X25146Y1351D01* X25144Y1342D01* X25144Y1333D01* X25145Y1325D01* X25147Y1317D01* X25151Y1309D01* X25152Y1307D01* Y0D01* G37* G36* Y9696D02*X25150Y9701D01* X25144Y9707D01* X25136Y9712D01* X25129Y9716D01* X25120Y9718D01* X25112Y9719D01* X25103Y9719D01* X25094Y9717D01* X25086Y9713D01* X25079Y9708D01* X25073Y9702D01* X25072Y9701D01* Y11290D01* X25078Y11288D01* X25087Y11286D01* X25095Y11285D01* X25104Y11286D01* X25112Y11289D01* X25120Y11293D01* X25127Y11298D01* X25133Y11305D01* X25138Y11312D01* X25152Y11343D01* Y9696D01* G37* G36* Y11656D02*X25150Y11661D01* X25134Y11694D01* X25130Y11701D01* X25124Y11707D01* X25116Y11712D01* X25109Y11716D01* X25100Y11718D01* X25092Y11719D01* X25083Y11719D01* X25074Y11717D01* X25072Y11716D01* Y13286D01* X25075Y13285D01* X25084Y13286D01* X25092Y13289D01* X25100Y13293D01* X25107Y13298D01* X25113Y13305D01* X25118Y13312D01* X25133Y13344D01* X25146Y13378D01* X25152Y13404D01* Y11656D01* G37* G36* Y40000D02*X26177D01* Y39710D01* X26169Y39706D01* X26162Y39701D01* X26156Y39695D01* X26151Y39687D01* X26136Y39655D01* X26123Y39621D01* X26114Y39586D01* X26108Y39550D01* X26105Y39514D01* X26105Y39478D01* X26109Y39442D01* X26115Y39407D01* X26125Y39372D01* X26139Y39338D01* X26155Y39306D01* X26159Y39299D01* X26165Y39292D01* X26173Y39287D01* X26177Y39285D01* Y37695D01* X26176Y37695D01* X26171Y37687D01* X26156Y37655D01* X26143Y37621D01* X26134Y37586D01* X26128Y37550D01* X26125Y37514D01* X26125Y37478D01* X26129Y37442D01* X26135Y37407D01* X26145Y37372D01* X26159Y37338D01* X26175Y37306D01* X26177Y37303D01* Y35656D01* X26176Y35655D01* X26163Y35621D01* X26154Y35586D01* X26148Y35550D01* X26145Y35514D01* X26145Y35478D01* X26149Y35442D01* X26155Y35407D01* X26165Y35372D01* X26177Y35343D01* Y33596D01* X26174Y33586D01* X26168Y33550D01* X26165Y33514D01* X26165Y33478D01* X26169Y33442D01* X26175Y33407D01* X26177Y33403D01* Y0D01* X25152D01* Y1307D01* X25156Y1302D01* X25163Y1296D01* X25170Y1291D01* X25178Y1288D01* X25187Y1286D01* X25195Y1285D01* X25204Y1286D01* X25212Y1289D01* X25220Y1293D01* X25227Y1298D01* X25233Y1305D01* X25238Y1312D01* X25253Y1344D01* X25266Y1378D01* X25275Y1413D01* X25281Y1449D01* X25284Y1485D01* X25284Y1521D01* X25280Y1557D01* X25274Y1593D01* X25264Y1627D01* X25250Y1661D01* X25234Y1694D01* X25230Y1701D01* X25224Y1707D01* X25216Y1712D01* X25209Y1716D01* X25200Y1718D01* X25192Y1719D01* X25183Y1719D01* X25174Y1717D01* X25166Y1713D01* X25159Y1708D01* X25153Y1702D01* X25152Y1701D01* Y3290D01* X25158Y3288D01* X25167Y3286D01* X25175Y3285D01* X25184Y3286D01* X25192Y3289D01* X25200Y3293D01* X25207Y3298D01* X25213Y3305D01* X25218Y3312D01* X25233Y3344D01* X25246Y3378D01* X25255Y3413D01* X25261Y3449D01* X25264Y3485D01* X25264Y3521D01* X25260Y3557D01* X25254Y3593D01* X25244Y3627D01* X25230Y3661D01* X25214Y3694D01* X25210Y3701D01* X25204Y3707D01* X25196Y3712D01* X25189Y3716D01* X25180Y3718D01* X25172Y3719D01* X25163Y3719D01* X25154Y3717D01* X25152Y3716D01* Y5286D01* X25155Y5285D01* X25164Y5286D01* X25172Y5289D01* X25180Y5293D01* X25187Y5298D01* X25193Y5305D01* X25198Y5312D01* X25213Y5344D01* X25226Y5378D01* X25235Y5413D01* X25241Y5449D01* X25244Y5485D01* X25244Y5521D01* X25240Y5557D01* X25234Y5593D01* X25224Y5627D01* X25210Y5661D01* X25194Y5694D01* X25190Y5701D01* X25184Y5707D01* X25176Y5712D01* X25169Y5716D01* X25160Y5718D01* X25152Y5719D01* Y7289D01* X25160Y7293D01* X25167Y7298D01* X25173Y7305D01* X25178Y7312D01* X25193Y7344D01* X25206Y7378D01* X25215Y7413D01* X25221Y7449D01* X25224Y7485D01* X25224Y7521D01* X25220Y7557D01* X25214Y7593D01* X25204Y7627D01* X25190Y7661D01* X25174Y7694D01* X25170Y7701D01* X25164Y7707D01* X25156Y7712D01* X25152Y7714D01* Y9304D01* X25153Y9305D01* X25158Y9312D01* X25173Y9344D01* X25186Y9378D01* X25195Y9413D01* X25201Y9449D01* X25204Y9485D01* X25204Y9521D01* X25200Y9557D01* X25194Y9593D01* X25184Y9627D01* X25170Y9661D01* X25154Y9694D01* X25152Y9696D01* Y11343D01* X25153Y11344D01* X25166Y11378D01* X25175Y11413D01* X25181Y11449D01* X25184Y11485D01* X25184Y11521D01* X25180Y11557D01* X25174Y11593D01* X25164Y11627D01* X25152Y11656D01* Y13404D01* X25155Y13413D01* X25161Y13449D01* X25164Y13485D01* X25164Y13521D01* X25160Y13557D01* X25154Y13593D01* X25152Y13596D01* Y40000D01* G37* G36* Y3583D02*X25156Y3569D01* X25161Y3543D01* X25164Y3516D01* X25164Y3489D01* X25162Y3462D01* X25157Y3435D01* X25152Y3416D01* Y3583D01* G37* G36* Y1634D02*X25159Y1621D01* X25169Y1595D01* X25176Y1569D01* X25181Y1543D01* X25184Y1516D01* X25184Y1489D01* X25182Y1462D01* X25177Y1435D01* X25170Y1409D01* X25161Y1383D01* X25152Y1365D01* Y1634D01* G37* G36* X25072Y11583D02*X25076Y11569D01* X25081Y11543D01* X25084Y11516D01* X25084Y11489D01* X25082Y11462D01* X25077Y11435D01* X25072Y11416D01* Y11583D01* G37* G36* Y9634D02*X25079Y9621D01* X25089Y9595D01* X25096Y9569D01* X25101Y9543D01* X25104Y9516D01* X25104Y9489D01* X25102Y9462D01* X25097Y9435D01* X25090Y9409D01* X25081Y9383D01* X25072Y9365D01* Y9634D01* G37* G36* X24992Y19583D02*X24996Y19569D01* X25001Y19543D01* X25004Y19516D01* X25004Y19489D01* X25002Y19462D01* X24997Y19435D01* X24992Y19416D01* Y19583D01* G37* G36* Y17634D02*X24999Y17621D01* X25009Y17595D01* X25016Y17569D01* X25021Y17543D01* X25024Y17516D01* X25024Y17489D01* X25022Y17462D01* X25017Y17435D01* X25010Y17409D01* X25001Y17383D01* X24992Y17365D01* Y17634D01* G37* G36* X26177Y40000D02*X26277D01* Y35692D01* X26273Y35697D01* X26266Y35703D01* X26259Y35708D01* X26251Y35711D01* X26242Y35713D01* X26234Y35714D01* X26225Y35713D01* X26217Y35710D01* X26209Y35706D01* X26202Y35701D01* X26196Y35695D01* X26191Y35687D01* X26177Y35656D01* Y37303D01* X26179Y37299D01* X26185Y37292D01* X26193Y37287D01* X26200Y37283D01* X26209Y37281D01* X26217Y37280D01* X26226Y37281D01* X26235Y37283D01* X26243Y37286D01* X26250Y37291D01* X26256Y37297D01* X26261Y37304D01* X26265Y37312D01* X26267Y37320D01* X26268Y37329D01* X26268Y37338D01* X26266Y37346D01* X26262Y37354D01* X26250Y37378D01* X26240Y37404D01* X26233Y37430D01* X26228Y37456D01* X26225Y37483D01* X26225Y37511D01* X26227Y37538D01* X26232Y37564D01* X26239Y37590D01* X26248Y37616D01* X26260Y37640D01* X26263Y37649D01* X26265Y37657D01* X26265Y37666D01* X26264Y37674D01* X26262Y37683D01* X26258Y37690D01* X26253Y37697D01* X26246Y37703D01* X26239Y37708D01* X26231Y37711D01* X26222Y37713D01* X26214Y37714D01* X26205Y37713D01* X26197Y37710D01* X26189Y37706D01* X26182Y37701D01* X26177Y37695D01* Y39285D01* X26180Y39283D01* X26189Y39281D01* X26197Y39280D01* X26206Y39281D01* X26215Y39283D01* X26223Y39286D01* X26230Y39291D01* X26236Y39297D01* X26241Y39304D01* X26245Y39312D01* X26247Y39320D01* X26248Y39329D01* X26248Y39338D01* X26246Y39346D01* X26242Y39354D01* X26230Y39378D01* X26220Y39404D01* X26213Y39430D01* X26208Y39456D01* X26205Y39483D01* X26205Y39511D01* X26207Y39538D01* X26212Y39564D01* X26219Y39590D01* X26228Y39616D01* X26240Y39640D01* X26243Y39649D01* X26245Y39657D01* X26245Y39666D01* X26244Y39674D01* X26242Y39683D01* X26238Y39690D01* X26233Y39697D01* X26226Y39703D01* X26219Y39708D01* X26211Y39711D01* X26202Y39713D01* X26194Y39714D01* X26185Y39713D01* X26177Y39710D01* X26177Y39710D01* Y40000D01* G37* G36* X26277Y25656D02*X26276Y25655D01* X26263Y25621D01* X26254Y25586D01* X26248Y25550D01* X26245Y25514D01* X26245Y25478D01* X26249Y25442D01* X26255Y25407D01* X26265Y25372D01* X26277Y25343D01* Y23596D01* X26274Y23586D01* X26268Y23550D01* X26265Y23514D01* X26265Y23478D01* X26269Y23442D01* X26275Y23407D01* X26277Y23403D01* Y0D01* X26177D01* Y33403D01* X26185Y33372D01* X26199Y33338D01* X26215Y33306D01* X26219Y33299D01* X26225Y33292D01* X26233Y33287D01* X26240Y33283D01* X26249Y33281D01* X26257Y33280D01* X26266Y33281D01* X26275Y33283D01* X26277Y33284D01* Y31714D01* X26274Y31714D01* X26265Y31713D01* X26257Y31710D01* X26249Y31706D01* X26242Y31701D01* X26236Y31695D01* X26231Y31687D01* X26216Y31655D01* X26203Y31621D01* X26194Y31586D01* X26188Y31550D01* X26185Y31514D01* X26185Y31478D01* X26189Y31442D01* X26195Y31407D01* X26205Y31372D01* X26219Y31338D01* X26235Y31306D01* X26239Y31299D01* X26245Y31292D01* X26253Y31287D01* X26260Y31283D01* X26269Y31281D01* X26277Y31280D01* Y29710D01* X26269Y29706D01* X26262Y29701D01* X26256Y29695D01* X26251Y29687D01* X26236Y29655D01* X26223Y29621D01* X26214Y29586D01* X26208Y29550D01* X26205Y29514D01* X26205Y29478D01* X26209Y29442D01* X26215Y29407D01* X26225Y29372D01* X26239Y29338D01* X26255Y29306D01* X26259Y29299D01* X26265Y29292D01* X26273Y29287D01* X26277Y29285D01* Y27695D01* X26276Y27695D01* X26271Y27687D01* X26256Y27655D01* X26243Y27621D01* X26234Y27586D01* X26228Y27550D01* X26225Y27514D01* X26225Y27478D01* X26229Y27442D01* X26235Y27407D01* X26245Y27372D01* X26259Y27338D01* X26275Y27306D01* X26277Y27303D01* Y25656D01* G37* G36* Y33417D02*X26273Y33430D01* X26268Y33456D01* X26265Y33483D01* X26265Y33511D01* X26267Y33538D01* X26272Y33564D01* X26277Y33583D01* Y33417D01* G37* G36* Y33709D02*X26271Y33711D01* X26262Y33713D01* X26254Y33714D01* X26245Y33713D01* X26237Y33710D01* X26229Y33706D01* X26222Y33701D01* X26216Y33695D01* X26211Y33687D01* X26196Y33655D01* X26183Y33621D01* X26177Y33596D01* Y35343D01* X26179Y35338D01* X26195Y35306D01* X26199Y35299D01* X26205Y35292D01* X26213Y35287D01* X26220Y35283D01* X26229Y35281D01* X26237Y35280D01* X26246Y35281D01* X26255Y35283D01* X26263Y35286D01* X26270Y35291D01* X26276Y35297D01* X26277Y35298D01* Y33709D01* G37* G36* Y35365D02*X26270Y35378D01* X26260Y35404D01* X26253Y35430D01* X26248Y35456D01* X26245Y35483D01* X26245Y35511D01* X26247Y35538D01* X26252Y35564D01* X26259Y35590D01* X26268Y35616D01* X26277Y35634D01* Y35365D01* G37* G36* Y40000D02*X26377D01* Y39879D01* X26343Y39866D01* X26311Y39849D01* X26303Y39845D01* X26297Y39839D01* X26292Y39832D01* X26288Y39824D01* X26286Y39815D01* X26285Y39807D01* X26285Y39798D01* X26288Y39790D01* X26291Y39782D01* X26296Y39774D01* X26302Y39768D01* X26309Y39763D01* X26317Y39759D01* X26325Y39757D01* X26334Y39756D01* X26343Y39756D01* X26351Y39758D01* X26359Y39762D01* X26377Y39771D01* Y39229D01* X26364Y39235D01* X26356Y39238D01* X26347Y39240D01* X26338Y39240D01* X26330Y39239D01* X26321Y39237D01* X26314Y39233D01* X26307Y39228D01* X26301Y39221D01* X26296Y39214D01* X26293Y39206D01* X26291Y39197D01* X26290Y39189D01* X26291Y39180D01* X26294Y39172D01* X26298Y39164D01* X26303Y39157D01* X26309Y39151D01* X26317Y39146D01* X26349Y39131D01* X26377Y39121D01* Y37871D01* X26363Y37866D01* X26331Y37849D01* X26323Y37845D01* X26317Y37839D01* X26312Y37832D01* X26308Y37824D01* X26306Y37815D01* X26305Y37807D01* X26305Y37798D01* X26308Y37790D01* X26311Y37782D01* X26316Y37774D01* X26322Y37768D01* X26329Y37763D01* X26337Y37759D01* X26345Y37757D01* X26354Y37756D01* X26363Y37756D01* X26371Y37758D01* X26377Y37761D01* Y37238D01* X26376Y37238D01* X26367Y37240D01* X26358Y37240D01* X26350Y37239D01* X26341Y37237D01* X26334Y37233D01* X26327Y37228D01* X26321Y37221D01* X26316Y37214D01* X26313Y37206D01* X26311Y37197D01* X26310Y37189D01* X26311Y37180D01* X26314Y37172D01* X26318Y37164D01* X26323Y37157D01* X26329Y37151D01* X26337Y37146D01* X26369Y37131D01* X26377Y37128D01* Y35862D01* X26351Y35849D01* X26343Y35845D01* X26337Y35839D01* X26332Y35832D01* X26328Y35824D01* X26326Y35815D01* X26325Y35807D01* X26325Y35798D01* X26328Y35790D01* X26331Y35782D01* X26336Y35774D01* X26342Y35768D01* X26349Y35763D01* X26357Y35759D01* X26365Y35757D01* X26374Y35756D01* X26377Y35756D01* Y35240D01* X26370Y35239D01* X26361Y35237D01* X26354Y35233D01* X26347Y35228D01* X26341Y35221D01* X26336Y35214D01* X26333Y35206D01* X26331Y35197D01* X26330Y35189D01* X26331Y35180D01* X26334Y35172D01* X26338Y35164D01* X26343Y35157D01* X26349Y35151D01* X26357Y35146D01* X26377Y35137D01* Y33852D01* X26371Y33849D01* X26363Y33845D01* X26357Y33839D01* X26352Y33832D01* X26348Y33824D01* X26346Y33815D01* X26345Y33807D01* X26345Y33798D01* X26348Y33790D01* X26351Y33782D01* X26356Y33774D01* X26362Y33768D01* X26369Y33763D01* X26377Y33759D01* Y33234D01* X26374Y33233D01* X26367Y33228D01* X26361Y33221D01* X26356Y33214D01* X26353Y33206D01* X26351Y33197D01* X26350Y33189D01* X26351Y33180D01* X26354Y33172D01* X26358Y33164D01* X26363Y33157D01* X26369Y33151D01* X26377Y33147D01* Y31838D01* X26372Y31832D01* X26368Y31824D01* X26366Y31815D01* X26365Y31807D01* X26365Y31798D01* X26368Y31790D01* X26371Y31782D01* X26376Y31774D01* X26377Y31774D01* Y31215D01* X26376Y31214D01* X26373Y31206D01* X26371Y31197D01* X26370Y31189D01* X26371Y31180D01* X26374Y31172D01* X26377Y31167D01* Y25692D01* X26373Y25697D01* X26366Y25703D01* X26359Y25708D01* X26351Y25711D01* X26342Y25713D01* X26334Y25714D01* X26325Y25713D01* X26317Y25710D01* X26309Y25706D01* X26302Y25701D01* X26296Y25695D01* X26291Y25687D01* X26277Y25656D01* Y27303D01* X26279Y27299D01* X26285Y27292D01* X26293Y27287D01* X26300Y27283D01* X26309Y27281D01* X26317Y27280D01* X26326Y27281D01* X26335Y27283D01* X26343Y27286D01* X26350Y27291D01* X26356Y27297D01* X26361Y27304D01* X26365Y27312D01* X26367Y27320D01* X26368Y27329D01* X26368Y27338D01* X26366Y27346D01* X26362Y27354D01* X26350Y27378D01* X26340Y27404D01* X26333Y27430D01* X26328Y27456D01* X26325Y27483D01* X26325Y27511D01* X26327Y27538D01* X26332Y27564D01* X26339Y27590D01* X26348Y27616D01* X26360Y27640D01* X26363Y27649D01* X26365Y27657D01* X26365Y27666D01* X26364Y27674D01* X26362Y27683D01* X26358Y27690D01* X26353Y27697D01* X26346Y27703D01* X26339Y27708D01* X26331Y27711D01* X26322Y27713D01* X26314Y27714D01* X26305Y27713D01* X26297Y27710D01* X26289Y27706D01* X26282Y27701D01* X26277Y27695D01* Y29285D01* X26280Y29283D01* X26289Y29281D01* X26297Y29280D01* X26306Y29281D01* X26315Y29283D01* X26323Y29286D01* X26330Y29291D01* X26336Y29297D01* X26341Y29304D01* X26345Y29312D01* X26347Y29320D01* X26348Y29329D01* X26348Y29338D01* X26346Y29346D01* X26342Y29354D01* X26330Y29378D01* X26320Y29404D01* X26313Y29430D01* X26308Y29456D01* X26305Y29483D01* X26305Y29511D01* X26307Y29538D01* X26312Y29564D01* X26319Y29590D01* X26328Y29616D01* X26340Y29640D01* X26343Y29649D01* X26345Y29657D01* X26345Y29666D01* X26344Y29674D01* X26342Y29683D01* X26338Y29690D01* X26333Y29697D01* X26326Y29703D01* X26319Y29708D01* X26311Y29711D01* X26302Y29713D01* X26294Y29714D01* X26285Y29713D01* X26277Y29710D01* X26277Y29710D01* Y31280D01* X26277Y31280D01* X26286Y31281D01* X26295Y31283D01* X26303Y31286D01* X26310Y31291D01* X26316Y31297D01* X26321Y31304D01* X26325Y31312D01* X26327Y31320D01* X26328Y31329D01* X26328Y31338D01* X26326Y31346D01* X26322Y31354D01* X26310Y31378D01* X26300Y31404D01* X26293Y31430D01* X26288Y31456D01* X26285Y31483D01* X26285Y31511D01* X26287Y31538D01* X26292Y31564D01* X26299Y31590D01* X26308Y31616D01* X26320Y31640D01* X26323Y31649D01* X26325Y31657D01* X26325Y31666D01* X26324Y31674D01* X26322Y31683D01* X26318Y31690D01* X26313Y31697D01* X26306Y31703D01* X26299Y31708D01* X26291Y31711D01* X26282Y31713D01* X26277Y31714D01* Y33284D01* X26283Y33286D01* X26290Y33291D01* X26296Y33297D01* X26301Y33304D01* X26305Y33312D01* X26307Y33320D01* X26308Y33329D01* X26308Y33338D01* X26306Y33346D01* X26302Y33354D01* X26290Y33378D01* X26280Y33404D01* X26277Y33417D01* Y33583D01* X26279Y33590D01* X26288Y33616D01* X26300Y33640D01* X26303Y33649D01* X26305Y33657D01* X26305Y33666D01* X26304Y33674D01* X26302Y33683D01* X26298Y33690D01* X26293Y33697D01* X26286Y33703D01* X26279Y33708D01* X26277Y33709D01* Y35298D01* X26281Y35304D01* X26285Y35312D01* X26287Y35320D01* X26288Y35329D01* X26288Y35338D01* X26286Y35346D01* X26282Y35354D01* X26277Y35365D01* Y35634D01* X26280Y35640D01* X26283Y35649D01* X26285Y35657D01* X26285Y35666D01* X26284Y35674D01* X26282Y35683D01* X26278Y35690D01* X26277Y35692D01* Y40000D01* G37* G36* Y25343D02*X26279Y25338D01* X26295Y25306D01* X26299Y25299D01* X26305Y25292D01* X26313Y25287D01* X26320Y25283D01* X26329Y25281D01* X26337Y25280D01* X26346Y25281D01* X26355Y25283D01* X26363Y25286D01* X26370Y25291D01* X26376Y25297D01* X26377Y25298D01* Y23709D01* X26371Y23711D01* X26362Y23713D01* X26354Y23714D01* X26345Y23713D01* X26337Y23710D01* X26329Y23706D01* X26322Y23701D01* X26316Y23695D01* X26311Y23687D01* X26296Y23655D01* X26283Y23621D01* X26277Y23596D01* Y25343D01* G37* G36* Y23403D02*X26285Y23372D01* X26299Y23338D01* X26315Y23306D01* X26319Y23299D01* X26325Y23292D01* X26333Y23287D01* X26340Y23283D01* X26349Y23281D01* X26357Y23280D01* X26366Y23281D01* X26375Y23283D01* X26377Y23284D01* Y21714D01* X26374Y21714D01* X26365Y21713D01* X26357Y21710D01* X26349Y21706D01* X26342Y21701D01* X26336Y21695D01* X26331Y21687D01* X26316Y21655D01* X26303Y21621D01* X26294Y21586D01* X26288Y21550D01* X26285Y21514D01* X26285Y21478D01* X26289Y21442D01* X26295Y21407D01* X26305Y21372D01* X26319Y21338D01* X26335Y21306D01* X26339Y21299D01* X26345Y21292D01* X26353Y21287D01* X26360Y21283D01* X26369Y21281D01* X26377Y21280D01* Y19710D01* X26369Y19706D01* X26362Y19701D01* X26356Y19695D01* X26351Y19687D01* X26336Y19655D01* X26323Y19621D01* X26314Y19586D01* X26308Y19550D01* X26305Y19514D01* X26305Y19478D01* X26309Y19442D01* X26315Y19407D01* X26325Y19372D01* X26339Y19338D01* X26355Y19306D01* X26359Y19299D01* X26365Y19292D01* X26373Y19287D01* X26377Y19285D01* Y17695D01* X26376Y17695D01* X26371Y17687D01* X26356Y17655D01* X26343Y17621D01* X26334Y17586D01* X26328Y17550D01* X26325Y17514D01* X26325Y17478D01* X26329Y17442D01* X26335Y17407D01* X26345Y17372D01* X26359Y17338D01* X26375Y17306D01* X26377Y17303D01* Y15656D01* X26376Y15655D01* X26363Y15621D01* X26354Y15586D01* X26348Y15550D01* X26345Y15514D01* X26345Y15478D01* X26349Y15442D01* X26355Y15407D01* X26365Y15372D01* X26377Y15343D01* Y13596D01* X26374Y13586D01* X26368Y13550D01* X26365Y13514D01* X26365Y13478D01* X26369Y13442D01* X26375Y13407D01* X26377Y13403D01* Y0D01* X26277D01* Y23403D01* G37* G36* X26377Y25365D02*X26370Y25378D01* X26360Y25404D01* X26353Y25430D01* X26348Y25456D01* X26345Y25483D01* X26345Y25511D01* X26347Y25538D01* X26352Y25564D01* X26359Y25590D01* X26368Y25616D01* X26377Y25634D01* Y25365D01* G37* G36* Y23417D02*X26373Y23430D01* X26368Y23456D01* X26365Y23483D01* X26365Y23511D01* X26367Y23538D01* X26372Y23564D01* X26377Y23583D01* Y23417D01* G37* G36* Y40000D02*X26507D01* Y39899D01* X26483Y39899D01* X26447Y39895D01* X26411Y39889D01* X26377Y39879D01* X26377D01* Y40000D01* G37* G36* Y39771D02*X26383Y39774D01* X26409Y39784D01* X26435Y39791D01* X26461Y39796D01* X26488Y39799D01* X26507Y39799D01* Y39200D01* X26494Y39200D01* X26467Y39202D01* X26440Y39207D01* X26414Y39214D01* X26388Y39223D01* X26377Y39229D01* Y39771D01* G37* G36* Y39121D02*X26383Y39118D01* X26418Y39109D01* X26454Y39103D01* X26490Y39100D01* X26507Y39100D01* Y37899D01* X26503D01* X26467Y37895D01* X26431Y37889D01* X26397Y37879D01* X26377Y37871D01* Y39121D01* G37* G36* Y37761D02*X26379Y37762D01* X26403Y37774D01* X26429Y37784D01* X26455Y37791D01* X26481Y37796D01* X26507Y37799D01* Y37200D01* X26487Y37202D01* X26460Y37207D01* X26434Y37214D01* X26408Y37223D01* X26384Y37235D01* X26377Y37238D01* Y37761D01* G37* G36* Y37128D02*X26403Y37118D01* X26438Y37109D01* X26474Y37103D01* X26507Y37100D01* Y35897D01* X26487Y35895D01* X26451Y35889D01* X26417Y35879D01* X26383Y35866D01* X26377Y35862D01* Y37128D01* G37* G36* Y35756D02*X26383Y35756D01* X26391Y35758D01* X26399Y35762D01* X26423Y35774D01* X26449Y35784D01* X26475Y35791D01* X26501Y35796D01* X26507Y35797D01* Y35202D01* X26507Y35202D01* X26480Y35207D01* X26454Y35214D01* X26428Y35223D01* X26404Y35235D01* X26396Y35238D01* X26387Y35240D01* X26378Y35240D01* X26377Y35240D01* Y35756D01* G37* G36* Y35137D02*X26389Y35131D01* X26423Y35118D01* X26458Y35109D01* X26494Y35103D01* X26507Y35102D01* Y33895D01* X26507D01* X26471Y33889D01* X26437Y33879D01* X26403Y33866D01* X26377Y33852D01* Y35137D01* G37* G36* Y33759D02*X26377Y33759D01* X26385Y33757D01* X26394Y33756D01* X26403Y33756D01* X26411Y33758D01* X26419Y33762D01* X26443Y33774D01* X26469Y33784D01* X26495Y33791D01* X26507Y33794D01* Y33205D01* X26500Y33207D01* X26474Y33214D01* X26448Y33223D01* X26424Y33235D01* X26416Y33238D01* X26407Y33240D01* X26398Y33240D01* X26390Y33239D01* X26381Y33237D01* X26377Y33234D01* Y33759D01* G37* G36* Y33147D02*X26377Y33146D01* X26409Y33131D01* X26443Y33118D01* X26478Y33109D01* X26507Y33104D01* Y31892D01* X26491Y31889D01* X26457Y31879D01* X26423Y31866D01* X26391Y31849D01* X26383Y31845D01* X26377Y31839D01* X26377Y31838D01* Y33147D01* G37* G36* Y31774D02*X26382Y31768D01* X26389Y31763D01* X26397Y31759D01* X26405Y31757D01* X26414Y31756D01* X26423Y31756D01* X26431Y31758D01* X26439Y31762D01* X26463Y31774D01* X26489Y31784D01* X26507Y31789D01* Y31210D01* X26494Y31214D01* X26468Y31223D01* X26444Y31235D01* X26436Y31238D01* X26427Y31240D01* X26418Y31240D01* X26410Y31239D01* X26401Y31237D01* X26394Y31233D01* X26387Y31228D01* X26381Y31221D01* X26377Y31215D01* Y31774D01* G37* G36* Y31167D02*X26378Y31164D01* X26383Y31157D01* X26389Y31151D01* X26397Y31146D01* X26429Y31131D01* X26463Y31118D01* X26498Y31109D01* X26507Y31107D01* Y29887D01* X26477Y29879D01* X26443Y29866D01* X26411Y29849D01* X26403Y29845D01* X26397Y29839D01* X26392Y29832D01* X26388Y29824D01* X26386Y29815D01* X26385Y29807D01* X26385Y29798D01* X26388Y29790D01* X26391Y29782D01* X26396Y29774D01* X26402Y29768D01* X26409Y29763D01* X26417Y29759D01* X26425Y29757D01* X26434Y29756D01* X26443Y29756D01* X26451Y29758D01* X26459Y29762D01* X26483Y29774D01* X26507Y29783D01* Y29216D01* X26488Y29223D01* X26464Y29235D01* X26456Y29238D01* X26447Y29240D01* X26438Y29240D01* X26430Y29239D01* X26421Y29237D01* X26414Y29233D01* X26407Y29228D01* X26401Y29221D01* X26396Y29214D01* X26393Y29206D01* X26391Y29197D01* X26390Y29189D01* X26391Y29180D01* X26394Y29172D01* X26398Y29164D01* X26403Y29157D01* X26409Y29151D01* X26417Y29146D01* X26449Y29131D01* X26483Y29118D01* X26507Y29112D01* Y27882D01* X26497Y27879D01* X26463Y27866D01* X26431Y27849D01* X26423Y27845D01* X26417Y27839D01* X26412Y27832D01* X26408Y27824D01* X26406Y27815D01* X26405Y27807D01* X26405Y27798D01* X26408Y27790D01* X26411Y27782D01* X26416Y27774D01* X26422Y27768D01* X26429Y27763D01* X26437Y27759D01* X26445Y27757D01* X26454Y27756D01* X26463Y27756D01* X26471Y27758D01* X26479Y27762D01* X26503Y27774D01* X26507Y27776D01* Y27223D01* X26484Y27235D01* X26476Y27238D01* X26467Y27240D01* X26458Y27240D01* X26450Y27239D01* X26441Y27237D01* X26434Y27233D01* X26427Y27228D01* X26421Y27221D01* X26416Y27214D01* X26413Y27206D01* X26411Y27197D01* X26410Y27189D01* X26411Y27180D01* X26414Y27172D01* X26418Y27164D01* X26423Y27157D01* X26429Y27151D01* X26437Y27146D01* X26469Y27131D01* X26503Y27118D01* X26507Y27117D01* Y25875D01* X26483Y25866D01* X26451Y25849D01* X26443Y25845D01* X26437Y25839D01* X26432Y25832D01* X26428Y25824D01* X26426Y25815D01* X26425Y25807D01* X26425Y25798D01* X26428Y25790D01* X26431Y25782D01* X26436Y25774D01* X26442Y25768D01* X26449Y25763D01* X26457Y25759D01* X26465Y25757D01* X26474Y25756D01* X26483Y25756D01* X26491Y25758D01* X26499Y25762D01* X26507Y25766D01* Y25233D01* X26504Y25235D01* X26496Y25238D01* X26487Y25240D01* X26478Y25240D01* X26470Y25239D01* X26461Y25237D01* X26454Y25233D01* X26447Y25228D01* X26441Y25221D01* X26436Y25214D01* X26433Y25206D01* X26431Y25197D01* X26430Y25189D01* X26431Y25180D01* X26434Y25172D01* X26438Y25164D01* X26443Y25157D01* X26449Y25151D01* X26457Y25146D01* X26489Y25131D01* X26507Y25124D01* Y23867D01* X26503Y23866D01* X26471Y23849D01* X26463Y23845D01* X26457Y23839D01* X26452Y23832D01* X26448Y23824D01* X26446Y23815D01* X26445Y23807D01* X26445Y23798D01* X26448Y23790D01* X26451Y23782D01* X26456Y23774D01* X26462Y23768D01* X26469Y23763D01* X26477Y23759D01* X26485Y23757D01* X26494Y23756D01* X26503Y23756D01* X26507Y23757D01* Y23240D01* X26507D01* X26498Y23240D01* X26490Y23239D01* X26481Y23237D01* X26474Y23233D01* X26467Y23228D01* X26461Y23221D01* X26456Y23214D01* X26453Y23206D01* X26451Y23197D01* X26450Y23189D01* X26451Y23180D01* X26454Y23172D01* X26458Y23164D01* X26463Y23157D01* X26469Y23151D01* X26477Y23146D01* X26507Y23132D01* Y21858D01* X26491Y21849D01* X26483Y21845D01* X26477Y21839D01* X26472Y21832D01* X26468Y21824D01* X26466Y21815D01* X26465Y21807D01* X26465Y21798D01* X26468Y21790D01* X26471Y21782D01* X26476Y21774D01* X26482Y21768D01* X26489Y21763D01* X26497Y21759D01* X26505Y21757D01* X26507Y21756D01* Y21239D01* X26501Y21237D01* X26494Y21233D01* X26487Y21228D01* X26481Y21221D01* X26476Y21214D01* X26473Y21206D01* X26471Y21197D01* X26470Y21189D01* X26471Y21180D01* X26474Y21172D01* X26478Y21164D01* X26483Y21157D01* X26489Y21151D01* X26497Y21146D01* X26507Y21141D01* Y19847D01* X26503Y19845D01* X26497Y19839D01* X26492Y19832D01* X26488Y19824D01* X26486Y19815D01* X26485Y19807D01* X26485Y19798D01* X26488Y19790D01* X26491Y19782D01* X26496Y19774D01* X26502Y19768D01* X26507Y19764D01* Y19228D01* X26507Y19228D01* X26501Y19221D01* X26496Y19214D01* X26493Y19206D01* X26491Y19197D01* X26490Y19189D01* X26491Y19180D01* X26494Y19172D01* X26498Y19164D01* X26503Y19157D01* X26507Y19153D01* Y17821D01* X26506Y17815D01* X26505Y17807D01* X26505Y17798D01* X26507Y17791D01* Y13340D01* X26506Y13346D01* X26502Y13354D01* X26490Y13378D01* X26480Y13404D01* X26473Y13430D01* X26468Y13456D01* X26465Y13483D01* X26465Y13511D01* X26467Y13538D01* X26472Y13564D01* X26479Y13590D01* X26488Y13616D01* X26500Y13640D01* X26503Y13649D01* X26505Y13657D01* X26505Y13666D01* X26504Y13674D01* X26502Y13683D01* X26498Y13690D01* X26493Y13697D01* X26486Y13703D01* X26479Y13708D01* X26471Y13711D01* X26462Y13713D01* X26454Y13714D01* X26445Y13713D01* X26437Y13710D01* X26429Y13706D01* X26422Y13701D01* X26416Y13695D01* X26411Y13687D01* X26396Y13655D01* X26383Y13621D01* X26377Y13596D01* Y15343D01* X26379Y15338D01* X26395Y15306D01* X26399Y15299D01* X26405Y15292D01* X26413Y15287D01* X26420Y15283D01* X26429Y15281D01* X26437Y15280D01* X26446Y15281D01* X26455Y15283D01* X26463Y15286D01* X26470Y15291D01* X26476Y15297D01* X26481Y15304D01* X26485Y15312D01* X26487Y15320D01* X26488Y15329D01* X26488Y15338D01* X26486Y15346D01* X26482Y15354D01* X26470Y15378D01* X26460Y15404D01* X26453Y15430D01* X26448Y15456D01* X26445Y15483D01* X26445Y15511D01* X26447Y15538D01* X26452Y15564D01* X26459Y15590D01* X26468Y15616D01* X26480Y15640D01* X26483Y15649D01* X26485Y15657D01* X26485Y15666D01* X26484Y15674D01* X26482Y15683D01* X26478Y15690D01* X26473Y15697D01* X26466Y15703D01* X26459Y15708D01* X26451Y15711D01* X26442Y15713D01* X26434Y15714D01* X26425Y15713D01* X26417Y15710D01* X26409Y15706D01* X26402Y15701D01* X26396Y15695D01* X26391Y15687D01* X26377Y15656D01* Y17303D01* X26379Y17299D01* X26385Y17292D01* X26393Y17287D01* X26400Y17283D01* X26409Y17281D01* X26417Y17280D01* X26426Y17281D01* X26435Y17283D01* X26443Y17286D01* X26450Y17291D01* X26456Y17297D01* X26461Y17304D01* X26465Y17312D01* X26467Y17320D01* X26468Y17329D01* X26468Y17338D01* X26466Y17346D01* X26462Y17354D01* X26450Y17378D01* X26440Y17404D01* X26433Y17430D01* X26428Y17456D01* X26425Y17483D01* X26425Y17511D01* X26427Y17538D01* X26432Y17564D01* X26439Y17590D01* X26448Y17616D01* X26460Y17640D01* X26463Y17649D01* X26465Y17657D01* X26465Y17666D01* X26464Y17674D01* X26462Y17683D01* X26458Y17690D01* X26453Y17697D01* X26446Y17703D01* X26439Y17708D01* X26431Y17711D01* X26422Y17713D01* X26414Y17714D01* X26405Y17713D01* X26397Y17710D01* X26389Y17706D01* X26382Y17701D01* X26377Y17695D01* Y19285D01* X26380Y19283D01* X26389Y19281D01* X26397Y19280D01* X26406Y19281D01* X26415Y19283D01* X26423Y19286D01* X26430Y19291D01* X26436Y19297D01* X26441Y19304D01* X26445Y19312D01* X26447Y19320D01* X26448Y19329D01* X26448Y19338D01* X26446Y19346D01* X26442Y19354D01* X26430Y19378D01* X26420Y19404D01* X26413Y19430D01* X26408Y19456D01* X26405Y19483D01* X26405Y19511D01* X26407Y19538D01* X26412Y19564D01* X26419Y19590D01* X26428Y19616D01* X26440Y19640D01* X26443Y19649D01* X26445Y19657D01* X26445Y19666D01* X26444Y19674D01* X26442Y19683D01* X26438Y19690D01* X26433Y19697D01* X26426Y19703D01* X26419Y19708D01* X26411Y19711D01* X26402Y19713D01* X26394Y19714D01* X26385Y19713D01* X26377Y19710D01* X26377Y19710D01* Y21280D01* X26377Y21280D01* X26386Y21281D01* X26395Y21283D01* X26403Y21286D01* X26410Y21291D01* X26416Y21297D01* X26421Y21304D01* X26425Y21312D01* X26427Y21320D01* X26428Y21329D01* X26428Y21338D01* X26426Y21346D01* X26422Y21354D01* X26410Y21378D01* X26400Y21404D01* X26393Y21430D01* X26388Y21456D01* X26385Y21483D01* X26385Y21511D01* X26387Y21538D01* X26392Y21564D01* X26399Y21590D01* X26408Y21616D01* X26420Y21640D01* X26423Y21649D01* X26425Y21657D01* X26425Y21666D01* X26424Y21674D01* X26422Y21683D01* X26418Y21690D01* X26413Y21697D01* X26406Y21703D01* X26399Y21708D01* X26391Y21711D01* X26382Y21713D01* X26377Y21714D01* Y23284D01* X26383Y23286D01* X26390Y23291D01* X26396Y23297D01* X26401Y23304D01* X26405Y23312D01* X26407Y23320D01* X26408Y23329D01* X26408Y23338D01* X26406Y23346D01* X26402Y23354D01* X26390Y23378D01* X26380Y23404D01* X26377Y23417D01* Y23583D01* X26379Y23590D01* X26388Y23616D01* X26400Y23640D01* X26403Y23649D01* X26405Y23657D01* X26405Y23666D01* X26404Y23674D01* X26402Y23683D01* X26398Y23690D01* X26393Y23697D01* X26386Y23703D01* X26379Y23708D01* X26377Y23709D01* Y25298D01* X26381Y25304D01* X26385Y25312D01* X26387Y25320D01* X26388Y25329D01* X26388Y25338D01* X26386Y25346D01* X26382Y25354D01* X26377Y25365D01* Y25634D01* X26380Y25640D01* X26383Y25649D01* X26385Y25657D01* X26385Y25666D01* X26384Y25674D01* X26382Y25683D01* X26378Y25690D01* X26377Y25692D01* Y31167D01* G37* G36* Y13403D02*X26385Y13372D01* X26399Y13338D01* X26415Y13306D01* X26419Y13299D01* X26425Y13292D01* X26433Y13287D01* X26440Y13283D01* X26449Y13281D01* X26457Y13280D01* X26466Y13281D01* X26475Y13283D01* X26483Y13286D01* X26490Y13291D01* X26496Y13297D01* X26501Y13304D01* X26505Y13312D01* X26507Y13320D01* Y11702D01* X26506Y11703D01* X26499Y11708D01* X26491Y11711D01* X26482Y11713D01* X26474Y11714D01* X26465Y11713D01* X26457Y11710D01* X26449Y11706D01* X26442Y11701D01* X26436Y11695D01* X26431Y11687D01* X26416Y11655D01* X26403Y11621D01* X26394Y11586D01* X26388Y11550D01* X26385Y11514D01* X26385Y11478D01* X26389Y11442D01* X26395Y11407D01* X26405Y11372D01* X26419Y11338D01* X26435Y11306D01* X26439Y11299D01* X26445Y11292D01* X26453Y11287D01* X26460Y11283D01* X26469Y11281D01* X26477Y11280D01* X26486Y11281D01* X26495Y11283D01* X26503Y11286D01* X26507Y11289D01* Y9712D01* X26502Y9713D01* X26494Y9714D01* X26485Y9713D01* X26477Y9710D01* X26469Y9706D01* X26462Y9701D01* X26456Y9695D01* X26451Y9687D01* X26436Y9655D01* X26423Y9621D01* X26414Y9586D01* X26408Y9550D01* X26405Y9514D01* X26405Y9478D01* X26409Y9442D01* X26415Y9407D01* X26425Y9372D01* X26439Y9338D01* X26455Y9306D01* X26459Y9299D01* X26465Y9292D01* X26473Y9287D01* X26480Y9283D01* X26489Y9281D01* X26497Y9280D01* X26506Y9281D01* X26507Y9281D01* Y7713D01* X26505Y7713D01* X26497Y7710D01* X26489Y7706D01* X26482Y7701D01* X26476Y7695D01* X26471Y7687D01* X26456Y7655D01* X26443Y7621D01* X26434Y7586D01* X26428Y7550D01* X26425Y7514D01* X26425Y7478D01* X26429Y7442D01* X26435Y7407D01* X26445Y7372D01* X26459Y7338D01* X26475Y7306D01* X26479Y7299D01* X26485Y7292D01* X26493Y7287D01* X26500Y7283D01* X26507Y7281D01* Y5705D01* X26502Y5701D01* X26496Y5695D01* X26491Y5687D01* X26476Y5655D01* X26463Y5621D01* X26454Y5586D01* X26448Y5550D01* X26445Y5514D01* X26445Y5478D01* X26449Y5442D01* X26455Y5407D01* X26465Y5372D01* X26479Y5338D01* X26495Y5306D01* X26499Y5299D01* X26505Y5292D01* X26507Y5291D01* Y3679D01* X26496Y3655D01* X26483Y3621D01* X26474Y3586D01* X26468Y3550D01* X26465Y3514D01* X26465Y3478D01* X26469Y3442D01* X26475Y3407D01* X26485Y3372D01* X26499Y3338D01* X26507Y3321D01* Y1631D01* X26503Y1621D01* X26494Y1586D01* X26488Y1550D01* X26485Y1514D01* X26485Y1478D01* X26489Y1442D01* X26495Y1407D01* X26505Y1372D01* X26507Y1367D01* Y0D01* X26377D01* Y13403D01* G37* G36* X26507Y11386D02*X26500Y11404D01* X26493Y11430D01* X26488Y11456D01* X26485Y11483D01* X26485Y11511D01* X26487Y11538D01* X26492Y11564D01* X26499Y11590D01* X26507Y11614D01* Y11386D01* G37* G36* Y9460D02*X26505Y9483D01* X26505Y9511D01* X26507Y9538D01* X26507Y9539D01* Y9460D01* G37* G36* Y40000D02*X26832D01* Y39714D01* X26829Y39716D01* X26820Y39718D01* X26812Y39719D01* X26803Y39719D01* X26794Y39717D01* X26786Y39713D01* X26779Y39708D01* X26773Y39702D01* X26768Y39695D01* X26764Y39687D01* X26762Y39679D01* X26761Y39670D01* X26761Y39661D01* X26763Y39653D01* X26767Y39645D01* X26779Y39621D01* X26789Y39595D01* X26796Y39569D01* X26801Y39543D01* X26804Y39516D01* X26804Y39489D01* X26802Y39462D01* X26797Y39435D01* X26790Y39409D01* X26781Y39383D01* X26769Y39359D01* X26766Y39351D01* X26764Y39342D01* X26764Y39333D01* X26765Y39325D01* X26767Y39317D01* X26771Y39309D01* X26776Y39302D01* X26783Y39296D01* X26790Y39291D01* X26798Y39288D01* X26807Y39286D01* X26815Y39285D01* X26824Y39286D01* X26832Y39289D01* X26832Y39289D01* Y37719D01* X26832Y37719D01* X26823Y37719D01* X26814Y37717D01* X26806Y37713D01* X26799Y37708D01* X26793Y37702D01* X26788Y37695D01* X26784Y37687D01* X26782Y37679D01* X26781Y37670D01* X26781Y37661D01* X26783Y37653D01* X26787Y37645D01* X26799Y37621D01* X26809Y37595D01* X26816Y37569D01* X26821Y37543D01* X26824Y37516D01* X26824Y37489D01* X26822Y37462D01* X26817Y37435D01* X26810Y37409D01* X26801Y37383D01* X26789Y37359D01* X26786Y37351D01* X26784Y37342D01* X26784Y37333D01* X26785Y37325D01* X26787Y37317D01* X26791Y37309D01* X26796Y37302D01* X26803Y37296D01* X26810Y37291D01* X26818Y37288D01* X26827Y37286D01* X26832Y37286D01* Y35716D01* X26826Y35713D01* X26819Y35708D01* X26813Y35702D01* X26808Y35695D01* X26804Y35687D01* X26802Y35679D01* X26801Y35670D01* X26801Y35661D01* X26803Y35653D01* X26807Y35645D01* X26819Y35621D01* X26829Y35595D01* X26832Y35583D01* Y35416D01* X26830Y35409D01* X26821Y35383D01* X26809Y35359D01* X26806Y35351D01* X26804Y35342D01* X26804Y35333D01* X26805Y35325D01* X26807Y35317D01* X26811Y35309D01* X26816Y35302D01* X26823Y35296D01* X26830Y35291D01* X26832Y35290D01* Y33701D01* X26828Y33695D01* X26824Y33687D01* X26822Y33679D01* X26821Y33670D01* X26821Y33661D01* X26823Y33653D01* X26827Y33645D01* X26832Y33634D01* Y33365D01* X26829Y33359D01* X26826Y33351D01* X26824Y33342D01* X26824Y33333D01* X26825Y33325D01* X26827Y33317D01* X26831Y33309D01* X26832Y33307D01* Y27833D01* X26831Y27835D01* X26826Y27842D01* X26820Y27848D01* X26812Y27853D01* X26780Y27868D01* X26746Y27881D01* X26711Y27890D01* X26675Y27896D01* X26639Y27899D01* X26603Y27899D01* X26567Y27895D01* X26531Y27889D01* X26507Y27882D01* Y29112D01* X26518Y29109D01* X26554Y29103D01* X26590Y29100D01* X26626Y29100D01* X26662Y29104D01* X26698Y29111D01* X26732Y29121D01* X26766Y29134D01* X26798Y29150D01* X26806Y29155D01* X26812Y29161D01* X26817Y29168D01* X26821Y29175D01* X26823Y29184D01* X26824Y29193D01* X26824Y29201D01* X26821Y29210D01* X26818Y29218D01* X26813Y29225D01* X26807Y29231D01* X26800Y29236D01* X26792Y29240D01* X26784Y29243D01* X26775Y29243D01* X26766Y29243D01* X26758Y29241D01* X26750Y29237D01* X26726Y29225D01* X26700Y29215D01* X26674Y29208D01* X26648Y29203D01* X26621Y29200D01* X26594Y29200D01* X26567Y29202D01* X26540Y29207D01* X26514Y29214D01* X26507Y29216D01* Y29783D01* X26509Y29784D01* X26535Y29791D01* X26561Y29796D01* X26588Y29799D01* X26615Y29799D01* X26642Y29797D01* X26669Y29793D01* X26695Y29785D01* X26721Y29776D01* X26745Y29764D01* X26753Y29761D01* X26762Y29759D01* X26771Y29759D01* X26779Y29760D01* X26788Y29762D01* X26795Y29766D01* X26802Y29772D01* X26808Y29778D01* X26813Y29785D01* X26816Y29793D01* X26818Y29802D01* X26819Y29810D01* X26818Y29819D01* X26815Y29827D01* X26811Y29835D01* X26806Y29842D01* X26800Y29848D01* X26792Y29853D01* X26760Y29868D01* X26726Y29881D01* X26691Y29890D01* X26655Y29896D01* X26619Y29899D01* X26583Y29899D01* X26547Y29895D01* X26511Y29889D01* X26507Y29887D01* Y31107D01* X26534Y31103D01* X26570Y31100D01* X26606Y31100D01* X26642Y31104D01* X26678Y31111D01* X26712Y31121D01* X26746Y31134D01* X26778Y31150D01* X26786Y31155D01* X26792Y31161D01* X26797Y31168D01* X26801Y31175D01* X26803Y31184D01* X26804Y31193D01* X26804Y31201D01* X26801Y31210D01* X26798Y31218D01* X26793Y31225D01* X26787Y31231D01* X26780Y31236D01* X26772Y31240D01* X26764Y31243D01* X26755Y31243D01* X26746Y31243D01* X26738Y31241D01* X26730Y31237D01* X26706Y31225D01* X26680Y31215D01* X26654Y31208D01* X26628Y31203D01* X26601Y31200D01* X26574Y31200D01* X26547Y31202D01* X26520Y31207D01* X26507Y31210D01* Y31789D01* X26515Y31791D01* X26541Y31796D01* X26568Y31799D01* X26595Y31799D01* X26622Y31797D01* X26649Y31793D01* X26675Y31785D01* X26701Y31776D01* X26725Y31764D01* X26733Y31761D01* X26742Y31759D01* X26751Y31759D01* X26759Y31760D01* X26768Y31762D01* X26775Y31766D01* X26782Y31772D01* X26788Y31778D01* X26793Y31785D01* X26796Y31793D01* X26798Y31802D01* X26799Y31810D01* X26798Y31819D01* X26795Y31827D01* X26791Y31835D01* X26786Y31842D01* X26780Y31848D01* X26772Y31853D01* X26740Y31868D01* X26706Y31881D01* X26671Y31890D01* X26635Y31896D01* X26599Y31899D01* X26563Y31899D01* X26527Y31895D01* X26507Y31892D01* Y33104D01* X26514Y33103D01* X26550Y33100D01* X26586Y33100D01* X26622Y33104D01* X26658Y33111D01* X26692Y33121D01* X26726Y33134D01* X26758Y33150D01* X26766Y33155D01* X26772Y33161D01* X26777Y33168D01* X26781Y33175D01* X26783Y33184D01* X26784Y33193D01* X26784Y33201D01* X26781Y33210D01* X26778Y33218D01* X26773Y33225D01* X26767Y33231D01* X26760Y33236D01* X26752Y33240D01* X26744Y33243D01* X26735Y33243D01* X26726Y33243D01* X26718Y33241D01* X26710Y33237D01* X26686Y33225D01* X26660Y33215D01* X26634Y33208D01* X26608Y33203D01* X26581Y33200D01* X26554Y33200D01* X26527Y33202D01* X26507Y33205D01* Y33794D01* X26521Y33796D01* X26548Y33799D01* X26575Y33799D01* X26602Y33797D01* X26629Y33793D01* X26655Y33785D01* X26681Y33776D01* X26705Y33764D01* X26713Y33761D01* X26722Y33759D01* X26731Y33759D01* X26739Y33760D01* X26748Y33762D01* X26755Y33766D01* X26762Y33772D01* X26768Y33778D01* X26773Y33785D01* X26776Y33793D01* X26778Y33802D01* X26779Y33810D01* X26778Y33819D01* X26775Y33827D01* X26771Y33835D01* X26766Y33842D01* X26760Y33848D01* X26752Y33853D01* X26720Y33868D01* X26686Y33881D01* X26651Y33890D01* X26615Y33896D01* X26579Y33899D01* X26543Y33899D01* X26507Y33895D01* Y35102D01* X26530Y35100D01* X26566Y35100D01* X26602Y35104D01* X26638Y35111D01* X26672Y35121D01* X26706Y35134D01* X26738Y35150D01* X26746Y35155D01* X26752Y35161D01* X26757Y35168D01* X26761Y35175D01* X26763Y35184D01* X26764Y35193D01* X26764Y35201D01* X26761Y35210D01* X26758Y35218D01* X26753Y35225D01* X26747Y35231D01* X26740Y35236D01* X26732Y35240D01* X26724Y35243D01* X26715Y35243D01* X26706Y35243D01* X26698Y35241D01* X26690Y35237D01* X26666Y35225D01* X26640Y35215D01* X26614Y35208D01* X26588Y35203D01* X26561Y35200D01* X26534Y35200D01* X26507Y35202D01* Y35797D01* X26528Y35799D01* X26555Y35799D01* X26582Y35797D01* X26609Y35793D01* X26635Y35785D01* X26661Y35776D01* X26685Y35764D01* X26693Y35761D01* X26702Y35759D01* X26711Y35759D01* X26719Y35760D01* X26728Y35762D01* X26735Y35766D01* X26742Y35772D01* X26748Y35778D01* X26753Y35785D01* X26756Y35793D01* X26758Y35802D01* X26759Y35810D01* X26758Y35819D01* X26755Y35827D01* X26751Y35835D01* X26746Y35842D01* X26740Y35848D01* X26732Y35853D01* X26700Y35868D01* X26666Y35881D01* X26631Y35890D01* X26595Y35896D01* X26559Y35899D01* X26523Y35899D01* X26507Y35897D01* Y37100D01* X26510Y37100D01* X26546Y37100D01* X26582Y37104D01* X26618Y37111D01* X26652Y37121D01* X26686Y37134D01* X26718Y37150D01* X26726Y37155D01* X26732Y37161D01* X26737Y37168D01* X26741Y37175D01* X26743Y37184D01* X26744Y37193D01* X26744Y37201D01* X26741Y37210D01* X26738Y37218D01* X26733Y37225D01* X26727Y37231D01* X26720Y37236D01* X26712Y37240D01* X26704Y37243D01* X26695Y37243D01* X26686Y37243D01* X26678Y37241D01* X26670Y37237D01* X26646Y37225D01* X26620Y37215D01* X26594Y37208D01* X26568Y37203D01* X26541Y37200D01* X26514Y37200D01* X26507Y37200D01* Y37799D01* X26508Y37799D01* X26535Y37799D01* X26562Y37797D01* X26589Y37793D01* X26615Y37785D01* X26641Y37776D01* X26665Y37764D01* X26673Y37761D01* X26682Y37759D01* X26691Y37759D01* X26699Y37760D01* X26708Y37762D01* X26715Y37766D01* X26722Y37772D01* X26728Y37778D01* X26733Y37785D01* X26736Y37793D01* X26738Y37802D01* X26739Y37810D01* X26738Y37819D01* X26735Y37827D01* X26731Y37835D01* X26726Y37842D01* X26720Y37848D01* X26712Y37853D01* X26680Y37868D01* X26646Y37881D01* X26611Y37890D01* X26575Y37896D01* X26539Y37899D01* X26507Y37899D01* Y39100D01* X26526Y39100D01* X26562Y39104D01* X26598Y39111D01* X26632Y39121D01* X26666Y39134D01* X26698Y39150D01* X26706Y39155D01* X26712Y39161D01* X26717Y39168D01* X26721Y39175D01* X26723Y39184D01* X26724Y39193D01* X26724Y39201D01* X26721Y39210D01* X26718Y39218D01* X26713Y39225D01* X26707Y39231D01* X26700Y39236D01* X26692Y39240D01* X26684Y39243D01* X26675Y39243D01* X26666Y39243D01* X26658Y39241D01* X26650Y39237D01* X26626Y39225D01* X26600Y39215D01* X26574Y39208D01* X26548Y39203D01* X26521Y39200D01* X26507Y39200D01* Y39799D01* X26515Y39799D01* X26542Y39797D01* X26569Y39793D01* X26595Y39785D01* X26621Y39776D01* X26645Y39764D01* X26653Y39761D01* X26662Y39759D01* X26671Y39759D01* X26679Y39760D01* X26688Y39762D01* X26695Y39766D01* X26702Y39772D01* X26708Y39778D01* X26713Y39785D01* X26716Y39793D01* X26718Y39802D01* X26719Y39810D01* X26718Y39819D01* X26715Y39827D01* X26711Y39835D01* X26706Y39842D01* X26700Y39848D01* X26692Y39853D01* X26660Y39868D01* X26626Y39881D01* X26591Y39890D01* X26555Y39896D01* X26519Y39899D01* X26507Y39899D01* Y40000D01* G37* G36* X26832Y0D02*X26507D01* Y1367D01* X26519Y1338D01* X26535Y1306D01* X26539Y1299D01* X26545Y1292D01* X26553Y1287D01* X26560Y1283D01* X26569Y1281D01* X26577Y1280D01* X26586Y1281D01* X26595Y1283D01* X26603Y1286D01* X26610Y1291D01* X26616Y1297D01* X26621Y1304D01* X26625Y1312D01* X26627Y1320D01* X26628Y1329D01* X26628Y1338D01* X26626Y1346D01* X26622Y1354D01* X26610Y1378D01* X26600Y1404D01* X26593Y1430D01* X26588Y1456D01* X26585Y1483D01* X26585Y1511D01* X26587Y1538D01* X26592Y1564D01* X26599Y1590D01* X26608Y1616D01* X26620Y1640D01* X26623Y1649D01* X26625Y1657D01* X26625Y1666D01* X26624Y1674D01* X26622Y1683D01* X26618Y1690D01* X26613Y1697D01* X26606Y1703D01* X26599Y1708D01* X26591Y1711D01* X26582Y1713D01* X26574Y1714D01* X26565Y1713D01* X26557Y1710D01* X26549Y1706D01* X26542Y1701D01* X26536Y1695D01* X26531Y1687D01* X26516Y1655D01* X26507Y1631D01* Y3321D01* X26515Y3306D01* X26519Y3299D01* X26525Y3292D01* X26533Y3287D01* X26540Y3283D01* X26549Y3281D01* X26557Y3280D01* X26566Y3281D01* X26575Y3283D01* X26583Y3286D01* X26590Y3291D01* X26596Y3297D01* X26601Y3304D01* X26605Y3312D01* X26607Y3320D01* X26608Y3329D01* X26608Y3338D01* X26606Y3346D01* X26602Y3354D01* X26590Y3378D01* X26580Y3404D01* X26573Y3430D01* X26568Y3456D01* X26565Y3483D01* X26565Y3511D01* X26567Y3538D01* X26572Y3564D01* X26579Y3590D01* X26588Y3616D01* X26600Y3640D01* X26603Y3649D01* X26605Y3657D01* X26605Y3666D01* X26604Y3674D01* X26602Y3683D01* X26598Y3690D01* X26593Y3697D01* X26586Y3703D01* X26579Y3708D01* X26571Y3711D01* X26562Y3713D01* X26554Y3714D01* X26545Y3713D01* X26537Y3710D01* X26529Y3706D01* X26522Y3701D01* X26516Y3695D01* X26511Y3687D01* X26507Y3679D01* Y5291D01* X26513Y5287D01* X26520Y5283D01* X26529Y5281D01* X26537Y5280D01* X26546Y5281D01* X26555Y5283D01* X26563Y5286D01* X26570Y5291D01* X26576Y5297D01* X26581Y5304D01* X26585Y5312D01* X26587Y5320D01* X26588Y5329D01* X26588Y5338D01* X26586Y5346D01* X26582Y5354D01* X26570Y5378D01* X26560Y5404D01* X26553Y5430D01* X26548Y5456D01* X26545Y5483D01* X26545Y5511D01* X26547Y5538D01* X26552Y5564D01* X26559Y5590D01* X26568Y5616D01* X26580Y5640D01* X26583Y5649D01* X26585Y5657D01* X26585Y5666D01* X26584Y5674D01* X26582Y5683D01* X26578Y5690D01* X26573Y5697D01* X26566Y5703D01* X26559Y5708D01* X26551Y5711D01* X26542Y5713D01* X26534Y5714D01* X26525Y5713D01* X26517Y5710D01* X26509Y5706D01* X26507Y5705D01* Y7281D01* X26509Y7281D01* X26517Y7280D01* X26526Y7281D01* X26535Y7283D01* X26543Y7286D01* X26550Y7291D01* X26556Y7297D01* X26561Y7304D01* X26565Y7312D01* X26567Y7320D01* X26568Y7329D01* X26568Y7338D01* X26566Y7346D01* X26562Y7354D01* X26550Y7378D01* X26540Y7404D01* X26533Y7430D01* X26528Y7456D01* X26525Y7483D01* X26525Y7511D01* X26527Y7538D01* X26532Y7564D01* X26539Y7590D01* X26548Y7616D01* X26560Y7640D01* X26563Y7649D01* X26565Y7657D01* X26565Y7666D01* X26564Y7674D01* X26562Y7683D01* X26558Y7690D01* X26553Y7697D01* X26546Y7703D01* X26539Y7708D01* X26531Y7711D01* X26522Y7713D01* X26514Y7714D01* X26507Y7713D01* Y9281D01* X26515Y9283D01* X26523Y9286D01* X26530Y9291D01* X26536Y9297D01* X26541Y9304D01* X26545Y9312D01* X26547Y9320D01* X26548Y9329D01* X26548Y9338D01* X26546Y9346D01* X26542Y9354D01* X26530Y9378D01* X26520Y9404D01* X26513Y9430D01* X26508Y9456D01* X26507Y9460D01* Y9539D01* X26512Y9564D01* X26519Y9590D01* X26528Y9616D01* X26540Y9640D01* X26543Y9649D01* X26545Y9657D01* X26545Y9666D01* X26544Y9674D01* X26542Y9683D01* X26538Y9690D01* X26533Y9697D01* X26526Y9703D01* X26519Y9708D01* X26511Y9711D01* X26507Y9712D01* Y11289D01* X26510Y11291D01* X26516Y11297D01* X26521Y11304D01* X26525Y11312D01* X26527Y11320D01* X26528Y11329D01* X26528Y11338D01* X26526Y11346D01* X26522Y11354D01* X26510Y11378D01* X26507Y11386D01* Y11614D01* X26508Y11616D01* X26520Y11640D01* X26523Y11649D01* X26525Y11657D01* X26525Y11666D01* X26524Y11674D01* X26522Y11683D01* X26518Y11690D01* X26513Y11697D01* X26507Y11702D01* Y13320D01* X26507Y13320D01* X26508Y13329D01* X26508Y13338D01* X26507Y13340D01* Y17791D01* X26508Y17790D01* X26511Y17782D01* X26516Y17774D01* X26522Y17768D01* X26529Y17763D01* X26537Y17759D01* X26545Y17757D01* X26554Y17756D01* X26563Y17756D01* X26571Y17758D01* X26579Y17762D01* X26603Y17774D01* X26629Y17784D01* X26655Y17791D01* X26681Y17796D01* X26708Y17799D01* X26735Y17799D01* X26762Y17797D01* X26789Y17793D01* X26815Y17785D01* X26832Y17779D01* Y17220D01* X26820Y17215D01* X26794Y17208D01* X26768Y17203D01* X26741Y17200D01* X26714Y17200D01* X26687Y17202D01* X26660Y17207D01* X26634Y17214D01* X26608Y17223D01* X26584Y17235D01* X26576Y17238D01* X26567Y17240D01* X26558Y17240D01* X26550Y17239D01* X26541Y17237D01* X26534Y17233D01* X26527Y17228D01* X26521Y17221D01* X26516Y17214D01* X26513Y17206D01* X26511Y17197D01* X26510Y17189D01* X26511Y17180D01* X26514Y17172D01* X26518Y17164D01* X26523Y17157D01* X26529Y17151D01* X26537Y17146D01* X26569Y17131D01* X26603Y17118D01* X26638Y17109D01* X26674Y17103D01* X26710Y17100D01* X26746Y17100D01* X26782Y17104D01* X26818Y17111D01* X26832Y17115D01* Y15890D01* X26831Y15890D01* X26795Y15896D01* X26759Y15899D01* X26723Y15899D01* X26687Y15895D01* X26651Y15889D01* X26617Y15879D01* X26583Y15866D01* X26551Y15849D01* X26543Y15845D01* X26537Y15839D01* X26532Y15832D01* X26528Y15824D01* X26526Y15815D01* X26525Y15807D01* X26525Y15798D01* X26528Y15790D01* X26531Y15782D01* X26536Y15774D01* X26542Y15768D01* X26549Y15763D01* X26557Y15759D01* X26565Y15757D01* X26574Y15756D01* X26583Y15756D01* X26591Y15758D01* X26599Y15762D01* X26623Y15774D01* X26649Y15784D01* X26675Y15791D01* X26701Y15796D01* X26728Y15799D01* X26755Y15799D01* X26782Y15797D01* X26809Y15793D01* X26832Y15786D01* Y15213D01* X26814Y15208D01* X26788Y15203D01* X26761Y15200D01* X26734Y15200D01* X26707Y15202D01* X26680Y15207D01* X26654Y15214D01* X26628Y15223D01* X26604Y15235D01* X26596Y15238D01* X26587Y15240D01* X26578Y15240D01* X26570Y15239D01* X26561Y15237D01* X26554Y15233D01* X26547Y15228D01* X26541Y15221D01* X26536Y15214D01* X26533Y15206D01* X26531Y15197D01* X26530Y15189D01* X26531Y15180D01* X26534Y15172D01* X26538Y15164D01* X26543Y15157D01* X26549Y15151D01* X26557Y15146D01* X26589Y15131D01* X26623Y15118D01* X26658Y15109D01* X26694Y15103D01* X26730Y15100D01* X26766Y15100D01* X26802Y15104D01* X26832Y15110D01* Y13893D01* X26815Y13896D01* X26779Y13899D01* X26743Y13899D01* X26707Y13895D01* X26671Y13889D01* X26637Y13879D01* X26603Y13866D01* X26571Y13849D01* X26563Y13845D01* X26557Y13839D01* X26552Y13832D01* X26548Y13824D01* X26546Y13815D01* X26545Y13807D01* X26545Y13798D01* X26548Y13790D01* X26551Y13782D01* X26556Y13774D01* X26562Y13768D01* X26569Y13763D01* X26577Y13759D01* X26585Y13757D01* X26594Y13756D01* X26603Y13756D01* X26611Y13758D01* X26619Y13762D01* X26643Y13774D01* X26669Y13784D01* X26695Y13791D01* X26721Y13796D01* X26748Y13799D01* X26775Y13799D01* X26802Y13797D01* X26829Y13793D01* X26832Y13792D01* Y13207D01* X26808Y13203D01* X26781Y13200D01* X26754Y13200D01* X26727Y13202D01* X26700Y13207D01* X26674Y13214D01* X26648Y13223D01* X26624Y13235D01* X26616Y13238D01* X26607Y13240D01* X26598Y13240D01* X26590Y13239D01* X26581Y13237D01* X26574Y13233D01* X26567Y13228D01* X26561Y13221D01* X26556Y13214D01* X26553Y13206D01* X26551Y13197D01* X26550Y13189D01* X26551Y13180D01* X26554Y13172D01* X26558Y13164D01* X26563Y13157D01* X26569Y13151D01* X26577Y13146D01* X26609Y13131D01* X26643Y13118D01* X26678Y13109D01* X26714Y13103D01* X26750Y13100D01* X26786Y13100D01* X26822Y13104D01* X26832Y13106D01* Y11897D01* X26799Y11899D01* X26763Y11899D01* X26727Y11895D01* X26691Y11889D01* X26657Y11879D01* X26623Y11866D01* X26591Y11849D01* X26583Y11845D01* X26577Y11839D01* X26572Y11832D01* X26568Y11824D01* X26566Y11815D01* X26565Y11807D01* X26565Y11798D01* X26568Y11790D01* X26571Y11782D01* X26576Y11774D01* X26582Y11768D01* X26589Y11763D01* X26597Y11759D01* X26605Y11757D01* X26614Y11756D01* X26623Y11756D01* X26631Y11758D01* X26639Y11762D01* X26663Y11774D01* X26689Y11784D01* X26715Y11791D01* X26741Y11796D01* X26768Y11799D01* X26795Y11799D01* X26822Y11797D01* X26832Y11795D01* Y11204D01* X26828Y11203D01* X26801Y11200D01* X26774Y11200D01* X26747Y11202D01* X26720Y11207D01* X26694Y11214D01* X26668Y11223D01* X26644Y11235D01* X26636Y11238D01* X26627Y11240D01* X26618Y11240D01* X26610Y11239D01* X26601Y11237D01* X26594Y11233D01* X26587Y11228D01* X26581Y11221D01* X26576Y11214D01* X26573Y11206D01* X26571Y11197D01* X26570Y11189D01* X26571Y11180D01* X26574Y11172D01* X26578Y11164D01* X26583Y11157D01* X26589Y11151D01* X26597Y11146D01* X26629Y11131D01* X26663Y11118D01* X26698Y11109D01* X26734Y11103D01* X26770Y11100D01* X26806Y11100D01* X26832Y11103D01* Y9898D01* X26819Y9899D01* X26783Y9899D01* X26747Y9895D01* X26711Y9889D01* X26677Y9879D01* X26643Y9866D01* X26611Y9849D01* X26603Y9845D01* X26597Y9839D01* X26592Y9832D01* X26588Y9824D01* X26586Y9815D01* X26585Y9807D01* X26585Y9798D01* X26588Y9790D01* X26591Y9782D01* X26596Y9774D01* X26602Y9768D01* X26609Y9763D01* X26617Y9759D01* X26625Y9757D01* X26634Y9756D01* X26643Y9756D01* X26651Y9758D01* X26659Y9762D01* X26683Y9774D01* X26709Y9784D01* X26735Y9791D01* X26761Y9796D01* X26788Y9799D01* X26815Y9799D01* X26832Y9798D01* Y9201D01* X26821Y9200D01* X26794Y9200D01* X26767Y9202D01* X26740Y9207D01* X26714Y9214D01* X26688Y9223D01* X26664Y9235D01* X26656Y9238D01* X26647Y9240D01* X26638Y9240D01* X26630Y9239D01* X26621Y9237D01* X26614Y9233D01* X26607Y9228D01* X26601Y9221D01* X26596Y9214D01* X26593Y9206D01* X26591Y9197D01* X26590Y9189D01* X26591Y9180D01* X26594Y9172D01* X26598Y9164D01* X26603Y9157D01* X26609Y9151D01* X26617Y9146D01* X26649Y9131D01* X26683Y9118D01* X26718Y9109D01* X26754Y9103D01* X26790Y9100D01* X26826Y9100D01* X26832Y9101D01* Y7899D01* X26803Y7899D01* X26767Y7895D01* X26731Y7889D01* X26697Y7879D01* X26663Y7866D01* X26631Y7849D01* X26623Y7845D01* X26617Y7839D01* X26612Y7832D01* X26608Y7824D01* X26606Y7815D01* X26605Y7807D01* X26605Y7798D01* X26608Y7790D01* X26611Y7782D01* X26616Y7774D01* X26622Y7768D01* X26629Y7763D01* X26637Y7759D01* X26645Y7757D01* X26654Y7756D01* X26663Y7756D01* X26671Y7758D01* X26679Y7762D01* X26703Y7774D01* X26729Y7784D01* X26755Y7791D01* X26781Y7796D01* X26808Y7799D01* X26832Y7799D01* Y7200D01* X26814Y7200D01* X26787Y7202D01* X26760Y7207D01* X26734Y7214D01* X26708Y7223D01* X26684Y7235D01* X26676Y7238D01* X26667Y7240D01* X26658Y7240D01* X26650Y7239D01* X26641Y7237D01* X26634Y7233D01* X26627Y7228D01* X26621Y7221D01* X26616Y7214D01* X26613Y7206D01* X26611Y7197D01* X26610Y7189D01* X26611Y7180D01* X26614Y7172D01* X26618Y7164D01* X26623Y7157D01* X26629Y7151D01* X26637Y7146D01* X26669Y7131D01* X26703Y7118D01* X26738Y7109D01* X26774Y7103D01* X26810Y7100D01* X26832Y7100D01* Y5899D01* X26823Y5899D01* X26787Y5895D01* X26751Y5889D01* X26717Y5879D01* X26683Y5866D01* X26651Y5849D01* X26643Y5845D01* X26637Y5839D01* X26632Y5832D01* X26628Y5824D01* X26626Y5815D01* X26625Y5807D01* X26625Y5798D01* X26628Y5790D01* X26631Y5782D01* X26636Y5774D01* X26642Y5768D01* X26649Y5763D01* X26657Y5759D01* X26665Y5757D01* X26674Y5756D01* X26683Y5756D01* X26691Y5758D01* X26699Y5762D01* X26723Y5774D01* X26749Y5784D01* X26775Y5791D01* X26801Y5796D01* X26828Y5799D01* X26832D01* Y5200D01* X26807Y5202D01* X26780Y5207D01* X26754Y5214D01* X26728Y5223D01* X26704Y5235D01* X26696Y5238D01* X26687Y5240D01* X26678Y5240D01* X26670Y5239D01* X26661Y5237D01* X26654Y5233D01* X26647Y5228D01* X26641Y5221D01* X26636Y5214D01* X26633Y5206D01* X26631Y5197D01* X26630Y5189D01* X26631Y5180D01* X26634Y5172D01* X26638Y5164D01* X26643Y5157D01* X26649Y5151D01* X26657Y5146D01* X26689Y5131D01* X26723Y5118D01* X26758Y5109D01* X26794Y5103D01* X26830Y5100D01* X26832D01* Y3898D01* X26807Y3895D01* X26771Y3889D01* X26737Y3879D01* X26703Y3866D01* X26671Y3849D01* X26663Y3845D01* X26657Y3839D01* X26652Y3832D01* X26648Y3824D01* X26646Y3815D01* X26645Y3807D01* X26645Y3798D01* X26648Y3790D01* X26651Y3782D01* X26656Y3774D01* X26662Y3768D01* X26669Y3763D01* X26677Y3759D01* X26685Y3757D01* X26694Y3756D01* X26703Y3756D01* X26711Y3758D01* X26719Y3762D01* X26743Y3774D01* X26769Y3784D01* X26795Y3791D01* X26821Y3796D01* X26832Y3798D01* Y3202D01* X26827Y3202D01* X26800Y3207D01* X26774Y3214D01* X26748Y3223D01* X26724Y3235D01* X26716Y3238D01* X26707Y3240D01* X26698Y3240D01* X26690Y3239D01* X26681Y3237D01* X26674Y3233D01* X26667Y3228D01* X26661Y3221D01* X26656Y3214D01* X26653Y3206D01* X26651Y3197D01* X26650Y3189D01* X26651Y3180D01* X26654Y3172D01* X26658Y3164D01* X26663Y3157D01* X26669Y3151D01* X26677Y3146D01* X26709Y3131D01* X26743Y3118D01* X26778Y3109D01* X26814Y3103D01* X26832Y3101D01* Y1896D01* X26827Y1895D01* X26791Y1889D01* X26757Y1879D01* X26723Y1866D01* X26691Y1849D01* X26683Y1845D01* X26677Y1839D01* X26672Y1832D01* X26668Y1824D01* X26666Y1815D01* X26665Y1807D01* X26665Y1798D01* X26668Y1790D01* X26671Y1782D01* X26676Y1774D01* X26682Y1768D01* X26689Y1763D01* X26697Y1759D01* X26705Y1757D01* X26714Y1756D01* X26723Y1756D01* X26731Y1758D01* X26739Y1762D01* X26763Y1774D01* X26789Y1784D01* X26815Y1791D01* X26832Y1795D01* Y1204D01* X26820Y1207D01* X26794Y1214D01* X26768Y1223D01* X26744Y1235D01* X26736Y1238D01* X26727Y1240D01* X26718Y1240D01* X26710Y1239D01* X26701Y1237D01* X26694Y1233D01* X26687Y1228D01* X26681Y1221D01* X26676Y1214D01* X26673Y1206D01* X26671Y1197D01* X26670Y1189D01* X26671Y1180D01* X26674Y1172D01* X26678Y1164D01* X26683Y1157D01* X26689Y1151D01* X26697Y1146D01* X26729Y1131D01* X26763Y1118D01* X26798Y1109D01* X26832Y1103D01* Y0D01* G37* G36* Y17884D02*X26811Y17890D01* X26775Y17896D01* X26739Y17899D01* X26703Y17899D01* X26667Y17895D01* X26631Y17889D01* X26597Y17879D01* X26563Y17866D01* X26531Y17849D01* X26523Y17845D01* X26517Y17839D01* X26512Y17832D01* X26508Y17824D01* X26507Y17821D01* Y19153D01* X26509Y19151D01* X26517Y19146D01* X26549Y19131D01* X26583Y19118D01* X26618Y19109D01* X26654Y19103D01* X26690Y19100D01* X26726Y19100D01* X26762Y19104D01* X26798Y19111D01* X26832Y19121D01* X26832D01* Y17884D01* G37* G36* Y19229D02*X26826Y19225D01* X26800Y19215D01* X26774Y19208D01* X26748Y19203D01* X26721Y19200D01* X26694Y19200D01* X26667Y19202D01* X26640Y19207D01* X26614Y19214D01* X26588Y19223D01* X26564Y19235D01* X26556Y19238D01* X26547Y19240D01* X26538Y19240D01* X26530Y19239D01* X26521Y19237D01* X26514Y19233D01* X26507Y19228D01* Y19764D01* X26509Y19763D01* X26517Y19759D01* X26525Y19757D01* X26534Y19756D01* X26543Y19756D01* X26551Y19758D01* X26559Y19762D01* X26583Y19774D01* X26609Y19784D01* X26635Y19791D01* X26661Y19796D01* X26688Y19799D01* X26715Y19799D01* X26742Y19797D01* X26769Y19793D01* X26795Y19785D01* X26821Y19776D01* X26832Y19771D01* Y19229D01* G37* G36* Y19878D02*X26826Y19881D01* X26791Y19890D01* X26755Y19896D01* X26719Y19899D01* X26683Y19899D01* X26647Y19895D01* X26611Y19889D01* X26577Y19879D01* X26543Y19866D01* X26511Y19849D01* X26507Y19847D01* Y21141D01* X26529Y21131D01* X26563Y21118D01* X26598Y21109D01* X26634Y21103D01* X26670Y21100D01* X26706Y21100D01* X26742Y21104D01* X26778Y21111D01* X26812Y21121D01* X26832Y21128D01* Y19878D01* G37* G36* Y21238D02*X26830Y21237D01* X26806Y21225D01* X26780Y21215D01* X26754Y21208D01* X26728Y21203D01* X26701Y21200D01* X26674Y21200D01* X26647Y21202D01* X26620Y21207D01* X26594Y21214D01* X26568Y21223D01* X26544Y21235D01* X26536Y21238D01* X26527Y21240D01* X26518Y21240D01* X26510Y21239D01* X26507Y21239D01* Y21756D01* X26514Y21756D01* X26523Y21756D01* X26531Y21758D01* X26539Y21762D01* X26563Y21774D01* X26589Y21784D01* X26615Y21791D01* X26641Y21796D01* X26668Y21799D01* X26695Y21799D01* X26722Y21797D01* X26749Y21793D01* X26775Y21785D01* X26801Y21776D01* X26825Y21764D01* X26832Y21762D01* Y21238D01* G37* G36* Y21871D02*X26806Y21881D01* X26771Y21890D01* X26735Y21896D01* X26699Y21899D01* X26663Y21899D01* X26627Y21895D01* X26591Y21889D01* X26557Y21879D01* X26523Y21866D01* X26507Y21858D01* Y23132D01* X26509Y23131D01* X26543Y23118D01* X26578Y23109D01* X26614Y23103D01* X26650Y23100D01* X26686Y23100D01* X26722Y23104D01* X26758Y23111D01* X26792Y23121D01* X26826Y23134D01* X26832Y23137D01* Y21871D01* G37* G36* Y23243D02*X26826Y23243D01* X26818Y23241D01* X26810Y23237D01* X26786Y23225D01* X26760Y23215D01* X26734Y23208D01* X26708Y23203D01* X26681Y23200D01* X26654Y23200D01* X26627Y23202D01* X26600Y23207D01* X26574Y23214D01* X26548Y23223D01* X26524Y23235D01* X26516Y23238D01* X26507Y23240D01* Y23757D01* X26511Y23758D01* X26519Y23762D01* X26543Y23774D01* X26569Y23784D01* X26595Y23791D01* X26621Y23796D01* X26648Y23799D01* X26675Y23799D01* X26702Y23797D01* X26729Y23793D01* X26755Y23785D01* X26781Y23776D01* X26805Y23764D01* X26813Y23761D01* X26822Y23759D01* X26831Y23759D01* X26832Y23759D01* Y23243D01* G37* G36* Y23862D02*X26820Y23868D01* X26786Y23881D01* X26751Y23890D01* X26715Y23896D01* X26679Y23899D01* X26643Y23899D01* X26607Y23895D01* X26571Y23889D01* X26537Y23879D01* X26507Y23867D01* Y25124D01* X26523Y25118D01* X26558Y25109D01* X26594Y25103D01* X26630Y25100D01* X26666Y25100D01* X26702Y25104D01* X26738Y25111D01* X26772Y25121D01* X26806Y25134D01* X26832Y25147D01* Y23862D01* G37* G36* Y25240D02*X26832Y25240D01* X26824Y25243D01* X26815Y25243D01* X26806Y25243D01* X26798Y25241D01* X26790Y25237D01* X26766Y25225D01* X26740Y25215D01* X26714Y25208D01* X26688Y25203D01* X26661Y25200D01* X26634Y25200D01* X26607Y25202D01* X26580Y25207D01* X26554Y25214D01* X26528Y25223D01* X26507Y25233D01* Y25766D01* X26523Y25774D01* X26549Y25784D01* X26575Y25791D01* X26601Y25796D01* X26628Y25799D01* X26655Y25799D01* X26682Y25797D01* X26709Y25793D01* X26735Y25785D01* X26761Y25776D01* X26785Y25764D01* X26793Y25761D01* X26802Y25759D01* X26811Y25759D01* X26819Y25760D01* X26828Y25762D01* X26832Y25765D01* Y25240D01* G37* G36* Y25853D02*X26832Y25853D01* X26800Y25868D01* X26766Y25881D01* X26731Y25890D01* X26695Y25896D01* X26659Y25899D01* X26623Y25899D01* X26587Y25895D01* X26551Y25889D01* X26517Y25879D01* X26507Y25875D01* Y27117D01* X26538Y27109D01* X26574Y27103D01* X26610Y27100D01* X26646Y27100D01* X26682Y27104D01* X26718Y27111D01* X26752Y27121D01* X26786Y27134D01* X26818Y27150D01* X26826Y27155D01* X26832Y27161D01* X26832Y27161D01* Y25853D01* G37* G36* Y27225D02*X26827Y27231D01* X26820Y27236D01* X26812Y27240D01* X26804Y27243D01* X26795Y27243D01* X26786Y27243D01* X26778Y27241D01* X26770Y27237D01* X26746Y27225D01* X26720Y27215D01* X26694Y27208D01* X26668Y27203D01* X26641Y27200D01* X26614Y27200D01* X26587Y27202D01* X26560Y27207D01* X26534Y27214D01* X26508Y27223D01* X26507Y27223D01* Y27776D01* X26529Y27784D01* X26555Y27791D01* X26581Y27796D01* X26608Y27799D01* X26635Y27799D01* X26662Y27797D01* X26689Y27793D01* X26715Y27785D01* X26741Y27776D01* X26765Y27764D01* X26773Y27761D01* X26782Y27759D01* X26791Y27759D01* X26799Y27760D01* X26808Y27762D01* X26815Y27766D01* X26822Y27772D01* X26828Y27778D01* X26832Y27784D01* Y27225D01* G37* G36* Y40000D02*X26932D01* Y35596D01* X26924Y35627D01* X26910Y35661D01* X26894Y35694D01* X26890Y35701D01* X26884Y35707D01* X26876Y35712D01* X26869Y35716D01* X26860Y35718D01* X26852Y35719D01* X26843Y35719D01* X26834Y35717D01* X26832Y35716D01* Y37286D01* X26835Y37285D01* X26844Y37286D01* X26852Y37289D01* X26860Y37293D01* X26867Y37298D01* X26873Y37305D01* X26878Y37312D01* X26893Y37344D01* X26906Y37378D01* X26915Y37413D01* X26921Y37449D01* X26924Y37485D01* X26924Y37521D01* X26920Y37557D01* X26914Y37593D01* X26904Y37627D01* X26890Y37661D01* X26874Y37694D01* X26870Y37701D01* X26864Y37707D01* X26856Y37712D01* X26849Y37716D01* X26840Y37718D01* X26832Y37719D01* Y39289D01* X26840Y39293D01* X26847Y39298D01* X26853Y39305D01* X26858Y39312D01* X26873Y39344D01* X26886Y39378D01* X26895Y39413D01* X26901Y39449D01* X26904Y39485D01* X26904Y39521D01* X26900Y39557D01* X26894Y39593D01* X26884Y39627D01* X26870Y39661D01* X26854Y39694D01* X26850Y39701D01* X26844Y39707D01* X26836Y39712D01* X26832Y39714D01* Y40000D01* G37* G36* X26932Y25716D02*X26926Y25713D01* X26919Y25708D01* X26913Y25702D01* X26908Y25695D01* X26904Y25687D01* X26902Y25679D01* X26901Y25670D01* X26901Y25661D01* X26903Y25653D01* X26907Y25645D01* X26919Y25621D01* X26929Y25595D01* X26932Y25583D01* Y25416D01* X26930Y25409D01* X26921Y25383D01* X26909Y25359D01* X26906Y25351D01* X26904Y25342D01* X26904Y25333D01* X26905Y25325D01* X26907Y25317D01* X26911Y25309D01* X26916Y25302D01* X26923Y25296D01* X26930Y25291D01* X26932Y25290D01* Y23701D01* X26928Y23695D01* X26924Y23687D01* X26922Y23679D01* X26921Y23670D01* X26921Y23661D01* X26923Y23653D01* X26927Y23645D01* X26932Y23634D01* Y23365D01* X26929Y23359D01* X26926Y23351D01* X26924Y23342D01* X26924Y23333D01* X26925Y23325D01* X26927Y23317D01* X26931Y23309D01* X26932Y23307D01* Y17833D01* X26931Y17835D01* X26926Y17842D01* X26920Y17848D01* X26912Y17853D01* X26880Y17868D01* X26846Y17881D01* X26832Y17884D01* Y19121D01* X26866Y19134D01* X26898Y19150D01* X26906Y19155D01* X26912Y19161D01* X26917Y19168D01* X26921Y19175D01* X26923Y19184D01* X26924Y19193D01* X26924Y19201D01* X26921Y19210D01* X26918Y19218D01* X26913Y19225D01* X26907Y19231D01* X26900Y19236D01* X26892Y19240D01* X26884Y19243D01* X26875Y19243D01* X26866Y19243D01* X26858Y19241D01* X26850Y19237D01* X26832Y19229D01* Y19771D01* X26845Y19764D01* X26853Y19761D01* X26862Y19759D01* X26871Y19759D01* X26879Y19760D01* X26888Y19762D01* X26895Y19766D01* X26902Y19772D01* X26908Y19778D01* X26913Y19785D01* X26916Y19793D01* X26918Y19802D01* X26919Y19810D01* X26918Y19819D01* X26915Y19827D01* X26911Y19835D01* X26906Y19842D01* X26900Y19848D01* X26892Y19853D01* X26860Y19868D01* X26832Y19878D01* Y21128D01* X26846Y21134D01* X26878Y21150D01* X26886Y21155D01* X26892Y21161D01* X26897Y21168D01* X26901Y21175D01* X26903Y21184D01* X26904Y21193D01* X26904Y21201D01* X26901Y21210D01* X26898Y21218D01* X26893Y21225D01* X26887Y21231D01* X26880Y21236D01* X26872Y21240D01* X26864Y21243D01* X26855Y21243D01* X26846Y21243D01* X26838Y21241D01* X26832Y21238D01* Y21762D01* X26833Y21761D01* X26842Y21759D01* X26851Y21759D01* X26859Y21760D01* X26868Y21762D01* X26875Y21766D01* X26882Y21772D01* X26888Y21778D01* X26893Y21785D01* X26896Y21793D01* X26898Y21802D01* X26899Y21810D01* X26898Y21819D01* X26895Y21827D01* X26891Y21835D01* X26886Y21842D01* X26880Y21848D01* X26872Y21853D01* X26840Y21868D01* X26832Y21871D01* Y23137D01* X26858Y23150D01* X26866Y23155D01* X26872Y23161D01* X26877Y23168D01* X26881Y23175D01* X26883Y23184D01* X26884Y23193D01* X26884Y23201D01* X26881Y23210D01* X26878Y23218D01* X26873Y23225D01* X26867Y23231D01* X26860Y23236D01* X26852Y23240D01* X26844Y23243D01* X26835Y23243D01* X26832Y23243D01* Y23759D01* X26839Y23760D01* X26848Y23762D01* X26855Y23766D01* X26862Y23772D01* X26868Y23778D01* X26873Y23785D01* X26876Y23793D01* X26878Y23802D01* X26879Y23810D01* X26878Y23819D01* X26875Y23827D01* X26871Y23835D01* X26866Y23842D01* X26860Y23848D01* X26852Y23853D01* X26832Y23862D01* Y25147D01* X26838Y25150D01* X26846Y25155D01* X26852Y25161D01* X26857Y25168D01* X26861Y25175D01* X26863Y25184D01* X26864Y25193D01* X26864Y25201D01* X26861Y25210D01* X26858Y25218D01* X26853Y25225D01* X26847Y25231D01* X26840Y25236D01* X26832Y25240D01* Y25765D01* X26835Y25766D01* X26842Y25772D01* X26848Y25778D01* X26853Y25785D01* X26856Y25793D01* X26858Y25802D01* X26859Y25810D01* X26858Y25819D01* X26855Y25827D01* X26851Y25835D01* X26846Y25842D01* X26840Y25848D01* X26832Y25853D01* Y27161D01* X26837Y27168D01* X26841Y27175D01* X26843Y27184D01* X26844Y27193D01* X26844Y27201D01* X26841Y27210D01* X26838Y27218D01* X26833Y27225D01* X26832Y27225D01* Y27784D01* X26833Y27785D01* X26836Y27793D01* X26838Y27802D01* X26839Y27810D01* X26838Y27819D01* X26835Y27827D01* X26832Y27833D01* Y33307D01* X26836Y33302D01* X26843Y33296D01* X26850Y33291D01* X26858Y33288D01* X26867Y33286D01* X26875Y33285D01* X26884Y33286D01* X26892Y33289D01* X26900Y33293D01* X26907Y33298D01* X26913Y33305D01* X26918Y33312D01* X26932Y33343D01* Y31696D01* X26930Y31701D01* X26924Y31707D01* X26916Y31712D01* X26909Y31716D01* X26900Y31718D01* X26892Y31719D01* X26883Y31719D01* X26874Y31717D01* X26866Y31713D01* X26859Y31708D01* X26853Y31702D01* X26848Y31695D01* X26844Y31687D01* X26842Y31679D01* X26841Y31670D01* X26841Y31661D01* X26843Y31653D01* X26847Y31645D01* X26859Y31621D01* X26869Y31595D01* X26876Y31569D01* X26881Y31543D01* X26884Y31516D01* X26884Y31489D01* X26882Y31462D01* X26877Y31435D01* X26870Y31409D01* X26861Y31383D01* X26849Y31359D01* X26846Y31351D01* X26844Y31342D01* X26844Y31333D01* X26845Y31325D01* X26847Y31317D01* X26851Y31309D01* X26856Y31302D01* X26863Y31296D01* X26870Y31291D01* X26878Y31288D01* X26887Y31286D01* X26895Y31285D01* X26904Y31286D01* X26912Y31289D01* X26920Y31293D01* X26927Y31298D01* X26932Y31304D01* Y29714D01* X26929Y29716D01* X26920Y29718D01* X26912Y29719D01* X26903Y29719D01* X26894Y29717D01* X26886Y29713D01* X26879Y29708D01* X26873Y29702D01* X26868Y29695D01* X26864Y29687D01* X26862Y29679D01* X26861Y29670D01* X26861Y29661D01* X26863Y29653D01* X26867Y29645D01* X26879Y29621D01* X26889Y29595D01* X26896Y29569D01* X26901Y29543D01* X26904Y29516D01* X26904Y29489D01* X26902Y29462D01* X26897Y29435D01* X26890Y29409D01* X26881Y29383D01* X26869Y29359D01* X26866Y29351D01* X26864Y29342D01* X26864Y29333D01* X26865Y29325D01* X26867Y29317D01* X26871Y29309D01* X26876Y29302D01* X26883Y29296D01* X26890Y29291D01* X26898Y29288D01* X26907Y29286D01* X26915Y29285D01* X26924Y29286D01* X26932Y29289D01* X26932Y29289D01* Y27719D01* X26932Y27719D01* X26923Y27719D01* X26914Y27717D01* X26906Y27713D01* X26899Y27708D01* X26893Y27702D01* X26888Y27695D01* X26884Y27687D01* X26882Y27679D01* X26881Y27670D01* X26881Y27661D01* X26883Y27653D01* X26887Y27645D01* X26899Y27621D01* X26909Y27595D01* X26916Y27569D01* X26921Y27543D01* X26924Y27516D01* X26924Y27489D01* X26922Y27462D01* X26917Y27435D01* X26910Y27409D01* X26901Y27383D01* X26889Y27359D01* X26886Y27351D01* X26884Y27342D01* X26884Y27333D01* X26885Y27325D01* X26887Y27317D01* X26891Y27309D01* X26896Y27302D01* X26903Y27296D01* X26910Y27291D01* X26918Y27288D01* X26927Y27286D01* X26932Y27286D01* Y25716D01* G37* G36* Y7884D02*X26911Y7890D01* X26875Y7896D01* X26839Y7899D01* X26832Y7899D01* Y9101D01* X26862Y9104D01* X26898Y9111D01* X26932Y9121D01* X26932D01* Y7884D01* G37* G36* Y9229D02*X26926Y9225D01* X26900Y9215D01* X26874Y9208D01* X26848Y9203D01* X26832Y9201D01* Y9798D01* X26842Y9797D01* X26869Y9793D01* X26895Y9785D01* X26921Y9776D01* X26932Y9771D01* Y9229D01* G37* G36* Y9878D02*X26926Y9881D01* X26891Y9890D01* X26855Y9896D01* X26832Y9898D01* Y11103D01* X26842Y11104D01* X26878Y11111D01* X26912Y11121D01* X26932Y11128D01* Y9878D01* G37* G36* Y11238D02*X26930Y11237D01* X26906Y11225D01* X26880Y11215D01* X26854Y11208D01* X26832Y11204D01* Y11795D01* X26849Y11793D01* X26875Y11785D01* X26901Y11776D01* X26925Y11764D01* X26932Y11762D01* Y11238D01* G37* G36* Y11871D02*X26906Y11881D01* X26871Y11890D01* X26835Y11896D01* X26832Y11897D01* Y13106D01* X26858Y13111D01* X26892Y13121D01* X26926Y13134D01* X26932Y13137D01* Y11871D01* G37* G36* Y13243D02*X26926Y13243D01* X26918Y13241D01* X26910Y13237D01* X26886Y13225D01* X26860Y13215D01* X26834Y13208D01* X26832Y13207D01* Y13792D01* X26855Y13785D01* X26881Y13776D01* X26905Y13764D01* X26913Y13761D01* X26922Y13759D01* X26931Y13759D01* X26932Y13759D01* Y13243D01* G37* G36* Y13862D02*X26920Y13868D01* X26886Y13881D01* X26851Y13890D01* X26832Y13893D01* Y15110D01* X26838Y15111D01* X26872Y15121D01* X26906Y15134D01* X26932Y15147D01* Y13862D01* G37* G36* Y15240D02*X26932Y15240D01* X26924Y15243D01* X26915Y15243D01* X26906Y15243D01* X26898Y15241D01* X26890Y15237D01* X26866Y15225D01* X26840Y15215D01* X26832Y15213D01* Y15786D01* X26835Y15785D01* X26861Y15776D01* X26885Y15764D01* X26893Y15761D01* X26902Y15759D01* X26911Y15759D01* X26919Y15760D01* X26928Y15762D01* X26932Y15765D01* Y15240D01* G37* G36* Y15853D02*X26932Y15853D01* X26900Y15868D01* X26866Y15881D01* X26832Y15890D01* Y17115D01* X26852Y17121D01* X26886Y17134D01* X26918Y17150D01* X26926Y17155D01* X26932Y17161D01* X26932Y17161D01* Y15853D01* G37* G36* Y17225D02*X26927Y17231D01* X26920Y17236D01* X26912Y17240D01* X26904Y17243D01* X26895Y17243D01* X26886Y17243D01* X26878Y17241D01* X26870Y17237D01* X26846Y17225D01* X26832Y17220D01* Y17779D01* X26841Y17776D01* X26865Y17764D01* X26873Y17761D01* X26882Y17759D01* X26891Y17759D01* X26899Y17760D01* X26908Y17762D01* X26915Y17766D01* X26922Y17772D01* X26928Y17778D01* X26932Y17784D01* Y17225D01* G37* G36* Y33656D02*X26930Y33661D01* X26914Y33694D01* X26910Y33701D01* X26904Y33707D01* X26896Y33712D01* X26889Y33716D01* X26880Y33718D01* X26872Y33719D01* X26863Y33719D01* X26854Y33717D01* X26846Y33713D01* X26839Y33708D01* X26833Y33702D01* X26832Y33701D01* Y35290D01* X26838Y35288D01* X26847Y35286D01* X26855Y35285D01* X26864Y35286D01* X26872Y35289D01* X26880Y35293D01* X26887Y35298D01* X26893Y35305D01* X26898Y35312D01* X26913Y35344D01* X26926Y35378D01* X26932Y35404D01* Y33656D01* G37* G36* Y40000D02*X27032D01* Y25596D01* X27024Y25627D01* X27010Y25661D01* X26994Y25694D01* X26990Y25701D01* X26984Y25707D01* X26976Y25712D01* X26969Y25716D01* X26960Y25718D01* X26952Y25719D01* X26943Y25719D01* X26934Y25717D01* X26932Y25716D01* Y27286D01* X26935Y27285D01* X26944Y27286D01* X26952Y27289D01* X26960Y27293D01* X26967Y27298D01* X26973Y27305D01* X26978Y27312D01* X26993Y27344D01* X27006Y27378D01* X27015Y27413D01* X27021Y27449D01* X27024Y27485D01* X27024Y27521D01* X27020Y27557D01* X27014Y27593D01* X27004Y27627D01* X26990Y27661D01* X26974Y27694D01* X26970Y27701D01* X26964Y27707D01* X26956Y27712D01* X26949Y27716D01* X26940Y27718D01* X26932Y27719D01* Y29289D01* X26940Y29293D01* X26947Y29298D01* X26953Y29305D01* X26958Y29312D01* X26973Y29344D01* X26986Y29378D01* X26995Y29413D01* X27001Y29449D01* X27004Y29485D01* X27004Y29521D01* X27000Y29557D01* X26994Y29593D01* X26984Y29627D01* X26970Y29661D01* X26954Y29694D01* X26950Y29701D01* X26944Y29707D01* X26936Y29712D01* X26932Y29714D01* Y31304D01* X26933Y31305D01* X26938Y31312D01* X26953Y31344D01* X26966Y31378D01* X26975Y31413D01* X26981Y31449D01* X26984Y31485D01* X26984Y31521D01* X26980Y31557D01* X26974Y31593D01* X26964Y31627D01* X26950Y31661D01* X26934Y31694D01* X26932Y31696D01* Y33343D01* X26933Y33344D01* X26946Y33378D01* X26955Y33413D01* X26961Y33449D01* X26964Y33485D01* X26964Y33521D01* X26960Y33557D01* X26954Y33593D01* X26944Y33627D01* X26932Y33656D01* Y35404D01* X26935Y35413D01* X26941Y35449D01* X26944Y35485D01* X26944Y35521D01* X26940Y35557D01* X26934Y35593D01* X26932Y35596D01* Y40000D01* G37* G36* Y25583D02*X26936Y25569D01* X26941Y25543D01* X26944Y25516D01* X26944Y25489D01* X26942Y25462D01* X26937Y25435D01* X26932Y25416D01* Y25583D01* G37* G36* Y25290D02*X26938Y25288D01* X26947Y25286D01* X26955Y25285D01* X26964Y25286D01* X26972Y25289D01* X26980Y25293D01* X26987Y25298D01* X26993Y25305D01* X26998Y25312D01* X27013Y25344D01* X27026Y25378D01* X27032Y25404D01* Y23656D01* X27030Y23661D01* X27014Y23694D01* X27010Y23701D01* X27004Y23707D01* X26996Y23712D01* X26989Y23716D01* X26980Y23718D01* X26972Y23719D01* X26963Y23719D01* X26954Y23717D01* X26946Y23713D01* X26939Y23708D01* X26933Y23702D01* X26932Y23701D01* Y25290D01* G37* G36* Y23634D02*X26939Y23621D01* X26949Y23595D01* X26956Y23569D01* X26961Y23543D01* X26964Y23516D01* X26964Y23489D01* X26962Y23462D01* X26957Y23435D01* X26950Y23409D01* X26941Y23383D01* X26932Y23365D01* Y23634D01* G37* G36* Y23307D02*X26936Y23302D01* X26943Y23296D01* X26950Y23291D01* X26958Y23288D01* X26967Y23286D01* X26975Y23285D01* X26984Y23286D01* X26992Y23289D01* X27000Y23293D01* X27007Y23298D01* X27013Y23305D01* X27018Y23312D01* X27032Y23343D01* Y21696D01* X27030Y21701D01* X27024Y21707D01* X27016Y21712D01* X27009Y21716D01* X27000Y21718D01* X26992Y21719D01* X26983Y21719D01* X26974Y21717D01* X26966Y21713D01* X26959Y21708D01* X26953Y21702D01* X26948Y21695D01* X26944Y21687D01* X26942Y21679D01* X26941Y21670D01* X26941Y21661D01* X26943Y21653D01* X26947Y21645D01* X26959Y21621D01* X26969Y21595D01* X26976Y21569D01* X26981Y21543D01* X26984Y21516D01* X26984Y21489D01* X26982Y21462D01* X26977Y21435D01* X26970Y21409D01* X26961Y21383D01* X26949Y21359D01* X26946Y21351D01* X26944Y21342D01* X26944Y21333D01* X26945Y21325D01* X26947Y21317D01* X26951Y21309D01* X26956Y21302D01* X26963Y21296D01* X26970Y21291D01* X26978Y21288D01* X26987Y21286D01* X26995Y21285D01* X27004Y21286D01* X27012Y21289D01* X27020Y21293D01* X27027Y21298D01* X27032Y21304D01* Y19714D01* X27029Y19716D01* X27020Y19718D01* X27012Y19719D01* X27003Y19719D01* X26994Y19717D01* X26986Y19713D01* X26979Y19708D01* X26973Y19702D01* X26968Y19695D01* X26964Y19687D01* X26962Y19679D01* X26961Y19670D01* X26961Y19661D01* X26963Y19653D01* X26967Y19645D01* X26979Y19621D01* X26989Y19595D01* X26996Y19569D01* X27001Y19543D01* X27004Y19516D01* X27004Y19489D01* X27002Y19462D01* X26997Y19435D01* X26990Y19409D01* X26981Y19383D01* X26969Y19359D01* X26966Y19351D01* X26964Y19342D01* X26964Y19333D01* X26965Y19325D01* X26967Y19317D01* X26971Y19309D01* X26976Y19302D01* X26983Y19296D01* X26990Y19291D01* X26998Y19288D01* X27007Y19286D01* X27015Y19285D01* X27024Y19286D01* X27032Y19289D01* X27032Y19289D01* Y17719D01* X27032Y17719D01* X27023Y17719D01* X27014Y17717D01* X27006Y17713D01* X26999Y17708D01* X26993Y17702D01* X26988Y17695D01* X26984Y17687D01* X26982Y17679D01* X26981Y17670D01* X26981Y17661D01* X26983Y17653D01* X26987Y17645D01* X26999Y17621D01* X27009Y17595D01* X27016Y17569D01* X27021Y17543D01* X27024Y17516D01* X27024Y17489D01* X27022Y17462D01* X27017Y17435D01* X27010Y17409D01* X27001Y17383D01* X26989Y17359D01* X26986Y17351D01* X26984Y17342D01* X26984Y17333D01* X26985Y17325D01* X26987Y17317D01* X26991Y17309D01* X26996Y17302D01* X27003Y17296D01* X27010Y17291D01* X27018Y17288D01* X27027Y17286D01* X27032Y17286D01* Y15716D01* X27026Y15713D01* X27019Y15708D01* X27013Y15702D01* X27008Y15695D01* X27004Y15687D01* X27002Y15679D01* X27001Y15670D01* X27001Y15661D01* X27003Y15653D01* X27007Y15645D01* X27019Y15621D01* X27029Y15595D01* X27032Y15583D01* Y15416D01* X27030Y15409D01* X27021Y15383D01* X27009Y15359D01* X27006Y15351D01* X27004Y15342D01* X27004Y15333D01* X27005Y15325D01* X27007Y15317D01* X27011Y15309D01* X27016Y15302D01* X27023Y15296D01* X27030Y15291D01* X27032Y15290D01* Y13701D01* X27028Y13695D01* X27024Y13687D01* X27022Y13679D01* X27021Y13670D01* X27021Y13661D01* X27023Y13653D01* X27027Y13645D01* X27032Y13634D01* Y13365D01* X27029Y13359D01* X27026Y13351D01* X27024Y13342D01* X27024Y13333D01* X27025Y13325D01* X27027Y13317D01* X27031Y13309D01* X27032Y13307D01* Y7833D01* X27031Y7835D01* X27026Y7842D01* X27020Y7848D01* X27012Y7853D01* X26980Y7868D01* X26946Y7881D01* X26932Y7884D01* Y9121D01* X26966Y9134D01* X26998Y9150D01* X27006Y9155D01* X27012Y9161D01* X27017Y9168D01* X27021Y9175D01* X27023Y9184D01* X27024Y9193D01* X27024Y9201D01* X27021Y9210D01* X27018Y9218D01* X27013Y9225D01* X27007Y9231D01* X27000Y9236D01* X26992Y9240D01* X26984Y9243D01* X26975Y9243D01* X26966Y9243D01* X26958Y9241D01* X26950Y9237D01* X26932Y9229D01* Y9771D01* X26945Y9764D01* X26953Y9761D01* X26962Y9759D01* X26971Y9759D01* X26979Y9760D01* X26988Y9762D01* X26995Y9766D01* X27002Y9772D01* X27008Y9778D01* X27013Y9785D01* X27016Y9793D01* X27018Y9802D01* X27019Y9810D01* X27018Y9819D01* X27015Y9827D01* X27011Y9835D01* X27006Y9842D01* X27000Y9848D01* X26992Y9853D01* X26960Y9868D01* X26932Y9878D01* Y11128D01* X26946Y11134D01* X26978Y11150D01* X26986Y11155D01* X26992Y11161D01* X26997Y11168D01* X27001Y11175D01* X27003Y11184D01* X27004Y11193D01* X27004Y11201D01* X27001Y11210D01* X26998Y11218D01* X26993Y11225D01* X26987Y11231D01* X26980Y11236D01* X26972Y11240D01* X26964Y11243D01* X26955Y11243D01* X26946Y11243D01* X26938Y11241D01* X26932Y11238D01* Y11762D01* X26933Y11761D01* X26942Y11759D01* X26951Y11759D01* X26959Y11760D01* X26968Y11762D01* X26975Y11766D01* X26982Y11772D01* X26988Y11778D01* X26993Y11785D01* X26996Y11793D01* X26998Y11802D01* X26999Y11810D01* X26998Y11819D01* X26995Y11827D01* X26991Y11835D01* X26986Y11842D01* X26980Y11848D01* X26972Y11853D01* X26940Y11868D01* X26932Y11871D01* Y13137D01* X26958Y13150D01* X26966Y13155D01* X26972Y13161D01* X26977Y13168D01* X26981Y13175D01* X26983Y13184D01* X26984Y13193D01* X26984Y13201D01* X26981Y13210D01* X26978Y13218D01* X26973Y13225D01* X26967Y13231D01* X26960Y13236D01* X26952Y13240D01* X26944Y13243D01* X26935Y13243D01* X26932Y13243D01* Y13759D01* X26939Y13760D01* X26948Y13762D01* X26955Y13766D01* X26962Y13772D01* X26968Y13778D01* X26973Y13785D01* X26976Y13793D01* X26978Y13802D01* X26979Y13810D01* X26978Y13819D01* X26975Y13827D01* X26971Y13835D01* X26966Y13842D01* X26960Y13848D01* X26952Y13853D01* X26932Y13862D01* Y15147D01* X26938Y15150D01* X26946Y15155D01* X26952Y15161D01* X26957Y15168D01* X26961Y15175D01* X26963Y15184D01* X26964Y15193D01* X26964Y15201D01* X26961Y15210D01* X26958Y15218D01* X26953Y15225D01* X26947Y15231D01* X26940Y15236D01* X26932Y15240D01* Y15765D01* X26935Y15766D01* X26942Y15772D01* X26948Y15778D01* X26953Y15785D01* X26956Y15793D01* X26958Y15802D01* X26959Y15810D01* X26958Y15819D01* X26955Y15827D01* X26951Y15835D01* X26946Y15842D01* X26940Y15848D01* X26932Y15853D01* Y17161D01* X26937Y17168D01* X26941Y17175D01* X26943Y17184D01* X26944Y17193D01* X26944Y17201D01* X26941Y17210D01* X26938Y17218D01* X26933Y17225D01* X26932Y17225D01* Y17784D01* X26933Y17785D01* X26936Y17793D01* X26938Y17802D01* X26939Y17810D01* X26938Y17819D01* X26935Y17827D01* X26932Y17833D01* Y23307D01* G37* G36* X27032Y0D02*X26832D01* Y1103D01* X26834Y1103D01* X26870Y1100D01* X26906Y1100D01* X26942Y1104D01* X26978Y1111D01* X27012Y1121D01* X27032Y1128D01* Y0D01* G37* G36* Y1238D02*X27030Y1237D01* X27006Y1225D01* X26980Y1215D01* X26954Y1208D01* X26928Y1203D01* X26901Y1200D01* X26874Y1200D01* X26847Y1202D01* X26832Y1204D01* Y1795D01* X26841Y1796D01* X26868Y1799D01* X26895Y1799D01* X26922Y1797D01* X26949Y1793D01* X26975Y1785D01* X27001Y1776D01* X27025Y1764D01* X27032Y1762D01* Y1238D01* G37* G36* Y1871D02*X27006Y1881D01* X26971Y1890D01* X26935Y1896D01* X26899Y1899D01* X26863Y1899D01* X26832Y1896D01* Y3101D01* X26850Y3100D01* X26886Y3100D01* X26922Y3104D01* X26958Y3111D01* X26992Y3121D01* X27026Y3134D01* X27032Y3137D01* Y1871D01* G37* G36* Y3243D02*X27026Y3243D01* X27018Y3241D01* X27010Y3237D01* X26986Y3225D01* X26960Y3215D01* X26934Y3208D01* X26908Y3203D01* X26881Y3200D01* X26854Y3200D01* X26832Y3202D01* Y3798D01* X26848Y3799D01* X26875Y3799D01* X26902Y3797D01* X26929Y3793D01* X26955Y3785D01* X26981Y3776D01* X27005Y3764D01* X27013Y3761D01* X27022Y3759D01* X27031Y3759D01* X27032Y3759D01* Y3243D01* G37* G36* Y3862D02*X27020Y3868D01* X26986Y3881D01* X26951Y3890D01* X26915Y3896D01* X26879Y3899D01* X26843Y3899D01* X26832Y3898D01* Y5100D01* X26866Y5100D01* X26902Y5104D01* X26938Y5111D01* X26972Y5121D01* X27006Y5134D01* X27032Y5147D01* Y3862D01* G37* G36* Y5240D02*X27032Y5240D01* X27024Y5243D01* X27015Y5243D01* X27006Y5243D01* X26998Y5241D01* X26990Y5237D01* X26966Y5225D01* X26940Y5215D01* X26914Y5208D01* X26888Y5203D01* X26861Y5200D01* X26834Y5200D01* X26832Y5200D01* Y5799D01* X26855Y5799D01* X26882Y5797D01* X26909Y5793D01* X26935Y5785D01* X26961Y5776D01* X26985Y5764D01* X26993Y5761D01* X27002Y5759D01* X27011Y5759D01* X27019Y5760D01* X27028Y5762D01* X27032Y5765D01* Y5240D01* G37* G36* Y5853D02*X27032Y5853D01* X27000Y5868D01* X26966Y5881D01* X26931Y5890D01* X26895Y5896D01* X26859Y5899D01* X26832Y5899D01* Y7100D01* X26846Y7100D01* X26882Y7104D01* X26918Y7111D01* X26952Y7121D01* X26986Y7134D01* X27018Y7150D01* X27026Y7155D01* X27032Y7161D01* X27032Y7161D01* Y5853D01* G37* G36* Y7225D02*X27027Y7231D01* X27020Y7236D01* X27012Y7240D01* X27004Y7243D01* X26995Y7243D01* X26986Y7243D01* X26978Y7241D01* X26970Y7237D01* X26946Y7225D01* X26920Y7215D01* X26894Y7208D01* X26868Y7203D01* X26841Y7200D01* X26832Y7200D01* Y7799D01* X26835D01* X26862Y7797D01* X26889Y7793D01* X26915Y7785D01* X26941Y7776D01* X26965Y7764D01* X26973Y7761D01* X26982Y7759D01* X26991Y7759D01* X26999Y7760D01* X27008Y7762D01* X27015Y7766D01* X27022Y7772D01* X27028Y7778D01* X27032Y7784D01* Y7225D01* G37* G36* Y40000D02*X27112D01* Y17596D01* X27104Y17627D01* X27090Y17661D01* X27074Y17694D01* X27070Y17701D01* X27064Y17707D01* X27056Y17712D01* X27049Y17716D01* X27040Y17718D01* X27032Y17719D01* Y19289D01* X27040Y19293D01* X27047Y19298D01* X27053Y19305D01* X27058Y19312D01* X27073Y19344D01* X27086Y19378D01* X27095Y19413D01* X27101Y19449D01* X27104Y19485D01* X27104Y19521D01* X27100Y19557D01* X27094Y19593D01* X27084Y19627D01* X27070Y19661D01* X27054Y19694D01* X27050Y19701D01* X27044Y19707D01* X27036Y19712D01* X27032Y19714D01* Y21304D01* X27033Y21305D01* X27038Y21312D01* X27053Y21344D01* X27066Y21378D01* X27075Y21413D01* X27081Y21449D01* X27084Y21485D01* X27084Y21521D01* X27080Y21557D01* X27074Y21593D01* X27064Y21627D01* X27050Y21661D01* X27034Y21694D01* X27032Y21696D01* Y23343D01* X27033Y23344D01* X27046Y23378D01* X27055Y23413D01* X27061Y23449D01* X27064Y23485D01* X27064Y23521D01* X27060Y23557D01* X27054Y23593D01* X27044Y23627D01* X27032Y23656D01* Y25404D01* X27035Y25413D01* X27041Y25449D01* X27044Y25485D01* X27044Y25521D01* X27040Y25557D01* X27034Y25593D01* X27032Y25596D01* Y40000D01* G37* G36* X27112Y0D02*X27032D01* Y1128D01* X27046Y1134D01* X27078Y1150D01* X27086Y1155D01* X27092Y1161D01* X27097Y1168D01* X27101Y1175D01* X27103Y1184D01* X27104Y1193D01* X27104Y1201D01* X27101Y1210D01* X27098Y1218D01* X27093Y1225D01* X27087Y1231D01* X27080Y1236D01* X27072Y1240D01* X27064Y1243D01* X27055Y1243D01* X27046Y1243D01* X27038Y1241D01* X27032Y1238D01* Y1762D01* X27033Y1761D01* X27042Y1759D01* X27051Y1759D01* X27059Y1760D01* X27068Y1762D01* X27075Y1766D01* X27082Y1772D01* X27088Y1778D01* X27093Y1785D01* X27096Y1793D01* X27098Y1802D01* X27099Y1810D01* X27098Y1819D01* X27095Y1827D01* X27091Y1835D01* X27086Y1842D01* X27080Y1848D01* X27072Y1853D01* X27040Y1868D01* X27032Y1871D01* Y3137D01* X27058Y3150D01* X27066Y3155D01* X27072Y3161D01* X27077Y3168D01* X27081Y3175D01* X27083Y3184D01* X27084Y3193D01* X27084Y3201D01* X27081Y3210D01* X27078Y3218D01* X27073Y3225D01* X27067Y3231D01* X27060Y3236D01* X27052Y3240D01* X27044Y3243D01* X27035Y3243D01* X27032Y3243D01* Y3759D01* X27039Y3760D01* X27048Y3762D01* X27055Y3766D01* X27062Y3772D01* X27068Y3778D01* X27073Y3785D01* X27076Y3793D01* X27078Y3802D01* X27079Y3810D01* X27078Y3819D01* X27075Y3827D01* X27071Y3835D01* X27066Y3842D01* X27060Y3848D01* X27052Y3853D01* X27032Y3862D01* Y5147D01* X27038Y5150D01* X27046Y5155D01* X27052Y5161D01* X27057Y5168D01* X27061Y5175D01* X27063Y5184D01* X27064Y5193D01* X27064Y5201D01* X27061Y5210D01* X27058Y5218D01* X27053Y5225D01* X27047Y5231D01* X27040Y5236D01* X27032Y5240D01* Y5765D01* X27035Y5766D01* X27042Y5772D01* X27048Y5778D01* X27053Y5785D01* X27056Y5793D01* X27058Y5802D01* X27059Y5810D01* X27058Y5819D01* X27055Y5827D01* X27051Y5835D01* X27046Y5842D01* X27040Y5848D01* X27032Y5853D01* Y7161D01* X27037Y7168D01* X27041Y7175D01* X27043Y7184D01* X27044Y7193D01* X27044Y7201D01* X27041Y7210D01* X27038Y7218D01* X27033Y7225D01* X27032Y7225D01* Y7784D01* X27033Y7785D01* X27036Y7793D01* X27038Y7802D01* X27039Y7810D01* X27038Y7819D01* X27035Y7827D01* X27032Y7833D01* Y13307D01* X27036Y13302D01* X27043Y13296D01* X27050Y13291D01* X27058Y13288D01* X27067Y13286D01* X27075Y13285D01* X27084Y13286D01* X27092Y13289D01* X27100Y13293D01* X27107Y13298D01* X27112Y13304D01* Y11714D01* X27109Y11716D01* X27100Y11718D01* X27092Y11719D01* X27083Y11719D01* X27074Y11717D01* X27066Y11713D01* X27059Y11708D01* X27053Y11702D01* X27048Y11695D01* X27044Y11687D01* X27042Y11679D01* X27041Y11670D01* X27041Y11661D01* X27043Y11653D01* X27047Y11645D01* X27059Y11621D01* X27069Y11595D01* X27076Y11569D01* X27081Y11543D01* X27084Y11516D01* X27084Y11489D01* X27082Y11462D01* X27077Y11435D01* X27070Y11409D01* X27061Y11383D01* X27049Y11359D01* X27046Y11351D01* X27044Y11342D01* X27044Y11333D01* X27045Y11325D01* X27047Y11317D01* X27051Y11309D01* X27056Y11302D01* X27063Y11296D01* X27070Y11291D01* X27078Y11288D01* X27087Y11286D01* X27095Y11285D01* X27104Y11286D01* X27112Y11289D01* X27112Y11289D01* Y9719D01* X27112Y9719D01* X27103Y9719D01* X27094Y9717D01* X27086Y9713D01* X27079Y9708D01* X27073Y9702D01* X27068Y9695D01* X27064Y9687D01* X27062Y9679D01* X27061Y9670D01* X27061Y9661D01* X27063Y9653D01* X27067Y9645D01* X27079Y9621D01* X27089Y9595D01* X27096Y9569D01* X27101Y9543D01* X27104Y9516D01* X27104Y9489D01* X27102Y9462D01* X27097Y9435D01* X27090Y9409D01* X27081Y9383D01* X27069Y9359D01* X27066Y9351D01* X27064Y9342D01* X27064Y9333D01* X27065Y9325D01* X27067Y9317D01* X27071Y9309D01* X27076Y9302D01* X27083Y9296D01* X27090Y9291D01* X27098Y9288D01* X27107Y9286D01* X27112Y9286D01* Y7716D01* X27106Y7713D01* X27099Y7708D01* X27093Y7702D01* X27088Y7695D01* X27084Y7687D01* X27082Y7679D01* X27081Y7670D01* X27081Y7661D01* X27083Y7653D01* X27087Y7645D01* X27099Y7621D01* X27109Y7595D01* X27112Y7583D01* Y7416D01* X27110Y7409D01* X27101Y7383D01* X27089Y7359D01* X27086Y7351D01* X27084Y7342D01* X27084Y7333D01* X27085Y7325D01* X27087Y7317D01* X27091Y7309D01* X27096Y7302D01* X27103Y7296D01* X27110Y7291D01* X27112Y7290D01* Y5701D01* X27108Y5695D01* X27104Y5687D01* X27102Y5679D01* X27101Y5670D01* X27101Y5661D01* X27103Y5653D01* X27107Y5645D01* X27112Y5634D01* Y5365D01* X27109Y5359D01* X27106Y5351D01* X27104Y5342D01* X27104Y5333D01* X27105Y5325D01* X27107Y5317D01* X27111Y5309D01* X27112Y5307D01* Y0D01* G37* G36* Y13696D02*X27110Y13701D01* X27104Y13707D01* X27096Y13712D01* X27089Y13716D01* X27080Y13718D01* X27072Y13719D01* X27063Y13719D01* X27054Y13717D01* X27046Y13713D01* X27039Y13708D01* X27033Y13702D01* X27032Y13701D01* Y15290D01* X27038Y15288D01* X27047Y15286D01* X27055Y15285D01* X27064Y15286D01* X27072Y15289D01* X27080Y15293D01* X27087Y15298D01* X27093Y15305D01* X27098Y15312D01* X27112Y15343D01* Y13696D01* G37* G36* Y15656D02*X27110Y15661D01* X27094Y15694D01* X27090Y15701D01* X27084Y15707D01* X27076Y15712D01* X27069Y15716D01* X27060Y15718D01* X27052Y15719D01* X27043Y15719D01* X27034Y15717D01* X27032Y15716D01* Y17286D01* X27035Y17285D01* X27044Y17286D01* X27052Y17289D01* X27060Y17293D01* X27067Y17298D01* X27073Y17305D01* X27078Y17312D01* X27093Y17344D01* X27106Y17378D01* X27112Y17404D01* Y15656D01* G37* G36* Y40000D02*X27192D01* Y9596D01* X27184Y9627D01* X27170Y9661D01* X27154Y9694D01* X27150Y9701D01* X27144Y9707D01* X27136Y9712D01* X27129Y9716D01* X27120Y9718D01* X27112Y9719D01* Y11289D01* X27120Y11293D01* X27127Y11298D01* X27133Y11305D01* X27138Y11312D01* X27153Y11344D01* X27166Y11378D01* X27175Y11413D01* X27181Y11449D01* X27184Y11485D01* X27184Y11521D01* X27180Y11557D01* X27174Y11593D01* X27164Y11627D01* X27150Y11661D01* X27134Y11694D01* X27130Y11701D01* X27124Y11707D01* X27116Y11712D01* X27112Y11714D01* Y13304D01* X27113Y13305D01* X27118Y13312D01* X27133Y13344D01* X27146Y13378D01* X27155Y13413D01* X27161Y13449D01* X27164Y13485D01* X27164Y13521D01* X27160Y13557D01* X27154Y13593D01* X27144Y13627D01* X27130Y13661D01* X27114Y13694D01* X27112Y13696D01* Y15343D01* X27113Y15344D01* X27126Y15378D01* X27135Y15413D01* X27141Y15449D01* X27144Y15485D01* X27144Y15521D01* X27140Y15557D01* X27134Y15593D01* X27124Y15627D01* X27112Y15656D01* Y17404D01* X27115Y17413D01* X27121Y17449D01* X27124Y17485D01* X27124Y17521D01* X27120Y17557D01* X27114Y17593D01* X27112Y17596D01* Y40000D01* G37* G36* X27192Y0D02*X27112D01* Y5307D01* X27116Y5302D01* X27123Y5296D01* X27130Y5291D01* X27138Y5288D01* X27147Y5286D01* X27155Y5285D01* X27164Y5286D01* X27172Y5289D01* X27180Y5293D01* X27187Y5298D01* X27192Y5304D01* Y3714D01* X27189Y3716D01* X27180Y3718D01* X27172Y3719D01* X27163Y3719D01* X27154Y3717D01* X27146Y3713D01* X27139Y3708D01* X27133Y3702D01* X27128Y3695D01* X27124Y3687D01* X27122Y3679D01* X27121Y3670D01* X27121Y3661D01* X27123Y3653D01* X27127Y3645D01* X27139Y3621D01* X27149Y3595D01* X27156Y3569D01* X27161Y3543D01* X27164Y3516D01* X27164Y3489D01* X27162Y3462D01* X27157Y3435D01* X27150Y3409D01* X27141Y3383D01* X27129Y3359D01* X27126Y3351D01* X27124Y3342D01* X27124Y3333D01* X27125Y3325D01* X27127Y3317D01* X27131Y3309D01* X27136Y3302D01* X27143Y3296D01* X27150Y3291D01* X27158Y3288D01* X27167Y3286D01* X27175Y3285D01* X27184Y3286D01* X27192Y3289D01* X27192Y3289D01* Y1719D01* X27192Y1719D01* X27183Y1719D01* X27174Y1717D01* X27166Y1713D01* X27159Y1708D01* X27153Y1702D01* X27148Y1695D01* X27144Y1687D01* X27142Y1679D01* X27141Y1670D01* X27141Y1661D01* X27143Y1653D01* X27147Y1645D01* X27159Y1621D01* X27169Y1595D01* X27176Y1569D01* X27181Y1543D01* X27184Y1516D01* X27184Y1489D01* X27182Y1462D01* X27177Y1435D01* X27170Y1409D01* X27161Y1383D01* X27149Y1359D01* X27146Y1351D01* X27144Y1342D01* X27144Y1333D01* X27145Y1325D01* X27147Y1317D01* X27151Y1309D01* X27156Y1302D01* X27163Y1296D01* X27170Y1291D01* X27178Y1288D01* X27187Y1286D01* X27192Y1286D01* Y0D01* G37* G36* Y5696D02*X27190Y5701D01* X27184Y5707D01* X27176Y5712D01* X27169Y5716D01* X27160Y5718D01* X27152Y5719D01* X27143Y5719D01* X27134Y5717D01* X27126Y5713D01* X27119Y5708D01* X27113Y5702D01* X27112Y5701D01* Y7290D01* X27118Y7288D01* X27127Y7286D01* X27135Y7285D01* X27144Y7286D01* X27152Y7289D01* X27160Y7293D01* X27167Y7298D01* X27173Y7305D01* X27178Y7312D01* X27192Y7343D01* Y5696D01* G37* G36* Y7656D02*X27190Y7661D01* X27174Y7694D01* X27170Y7701D01* X27164Y7707D01* X27156Y7712D01* X27149Y7716D01* X27140Y7718D01* X27132Y7719D01* X27123Y7719D01* X27114Y7717D01* X27112Y7716D01* Y9286D01* X27115Y9285D01* X27124Y9286D01* X27132Y9289D01* X27140Y9293D01* X27147Y9298D01* X27153Y9305D01* X27158Y9312D01* X27173Y9344D01* X27186Y9378D01* X27192Y9404D01* Y7656D01* G37* G36* Y40000D02*X28177D01* Y39710D01* X28169Y39706D01* X28162Y39701D01* X28156Y39695D01* X28151Y39687D01* X28136Y39655D01* X28123Y39621D01* X28114Y39586D01* X28108Y39550D01* X28105Y39514D01* X28105Y39478D01* X28109Y39442D01* X28115Y39407D01* X28125Y39372D01* X28139Y39338D01* X28155Y39306D01* X28159Y39299D01* X28165Y39292D01* X28173Y39287D01* X28177Y39285D01* Y37695D01* X28176Y37695D01* X28171Y37687D01* X28156Y37655D01* X28143Y37621D01* X28134Y37586D01* X28128Y37550D01* X28125Y37514D01* X28125Y37478D01* X28129Y37442D01* X28135Y37407D01* X28145Y37372D01* X28159Y37338D01* X28175Y37306D01* X28177Y37303D01* Y35656D01* X28176Y35655D01* X28163Y35621D01* X28154Y35586D01* X28148Y35550D01* X28145Y35514D01* X28145Y35478D01* X28149Y35442D01* X28155Y35407D01* X28165Y35372D01* X28177Y35343D01* Y33596D01* X28174Y33586D01* X28168Y33550D01* X28165Y33514D01* X28165Y33478D01* X28169Y33442D01* X28175Y33407D01* X28177Y33403D01* Y0D01* X27192D01* Y1286D01* X27195Y1285D01* X27204Y1286D01* X27212Y1289D01* X27220Y1293D01* X27227Y1298D01* X27233Y1305D01* X27238Y1312D01* X27253Y1344D01* X27266Y1378D01* X27275Y1413D01* X27281Y1449D01* X27284Y1485D01* X27284Y1521D01* X27280Y1557D01* X27274Y1593D01* X27264Y1627D01* X27250Y1661D01* X27234Y1694D01* X27230Y1701D01* X27224Y1707D01* X27216Y1712D01* X27209Y1716D01* X27200Y1718D01* X27192Y1719D01* Y3289D01* X27200Y3293D01* X27207Y3298D01* X27213Y3305D01* X27218Y3312D01* X27233Y3344D01* X27246Y3378D01* X27255Y3413D01* X27261Y3449D01* X27264Y3485D01* X27264Y3521D01* X27260Y3557D01* X27254Y3593D01* X27244Y3627D01* X27230Y3661D01* X27214Y3694D01* X27210Y3701D01* X27204Y3707D01* X27196Y3712D01* X27192Y3714D01* Y5304D01* X27193Y5305D01* X27198Y5312D01* X27213Y5344D01* X27226Y5378D01* X27235Y5413D01* X27241Y5449D01* X27244Y5485D01* X27244Y5521D01* X27240Y5557D01* X27234Y5593D01* X27224Y5627D01* X27210Y5661D01* X27194Y5694D01* X27192Y5696D01* Y7343D01* X27193Y7344D01* X27206Y7378D01* X27215Y7413D01* X27221Y7449D01* X27224Y7485D01* X27224Y7521D01* X27220Y7557D01* X27214Y7593D01* X27204Y7627D01* X27192Y7656D01* Y9404D01* X27195Y9413D01* X27201Y9449D01* X27204Y9485D01* X27204Y9521D01* X27200Y9557D01* X27194Y9593D01* X27192Y9596D01* Y40000D01* G37* G36* X27112Y7583D02*X27116Y7569D01* X27121Y7543D01* X27124Y7516D01* X27124Y7489D01* X27122Y7462D01* X27117Y7435D01* X27112Y7416D01* Y7583D01* G37* G36* Y5634D02*X27119Y5621D01* X27129Y5595D01* X27136Y5569D01* X27141Y5543D01* X27144Y5516D01* X27144Y5489D01* X27142Y5462D01* X27137Y5435D01* X27130Y5409D01* X27121Y5383D01* X27112Y5365D01* Y5634D01* G37* G36* X27032Y15583D02*X27036Y15569D01* X27041Y15543D01* X27044Y15516D01* X27044Y15489D01* X27042Y15462D01* X27037Y15435D01* X27032Y15416D01* Y15583D01* G37* G36* Y13634D02*X27039Y13621D01* X27049Y13595D01* X27056Y13569D01* X27061Y13543D01* X27064Y13516D01* X27064Y13489D01* X27062Y13462D01* X27057Y13435D01* X27050Y13409D01* X27041Y13383D01* X27032Y13365D01* Y13634D01* G37* G36* X28177Y40000D02*X28257D01* Y37692D01* X28253Y37697D01* X28246Y37703D01* X28239Y37708D01* X28231Y37711D01* X28222Y37713D01* X28214Y37714D01* X28205Y37713D01* X28197Y37710D01* X28189Y37706D01* X28182Y37701D01* X28177Y37695D01* Y39285D01* X28180Y39283D01* X28189Y39281D01* X28197Y39280D01* X28206Y39281D01* X28215Y39283D01* X28223Y39286D01* X28230Y39291D01* X28236Y39297D01* X28241Y39304D01* X28245Y39312D01* X28247Y39320D01* X28248Y39329D01* X28248Y39338D01* X28246Y39346D01* X28242Y39354D01* X28230Y39378D01* X28220Y39404D01* X28213Y39430D01* X28208Y39456D01* X28205Y39483D01* X28205Y39511D01* X28207Y39538D01* X28212Y39564D01* X28219Y39590D01* X28228Y39616D01* X28240Y39640D01* X28243Y39649D01* X28245Y39657D01* X28245Y39666D01* X28244Y39674D01* X28242Y39683D01* X28238Y39690D01* X28233Y39697D01* X28226Y39703D01* X28219Y39708D01* X28211Y39711D01* X28202Y39713D01* X28194Y39714D01* X28185Y39713D01* X28177Y39710D01* X28177Y39710D01* Y40000D01* G37* G36* X28257Y0D02*X28177D01* Y33403D01* X28185Y33372D01* X28199Y33338D01* X28215Y33306D01* X28219Y33299D01* X28225Y33292D01* X28233Y33287D01* X28240Y33283D01* X28249Y33281D01* X28257Y33280D01* Y31710D01* X28249Y31706D01* X28242Y31701D01* X28236Y31695D01* X28231Y31687D01* X28216Y31655D01* X28203Y31621D01* X28194Y31586D01* X28188Y31550D01* X28185Y31514D01* X28185Y31478D01* X28189Y31442D01* X28195Y31407D01* X28205Y31372D01* X28219Y31338D01* X28235Y31306D01* X28239Y31299D01* X28245Y31292D01* X28253Y31287D01* X28257Y31285D01* Y29695D01* X28256Y29695D01* X28251Y29687D01* X28236Y29655D01* X28223Y29621D01* X28214Y29586D01* X28208Y29550D01* X28205Y29514D01* X28205Y29478D01* X28209Y29442D01* X28215Y29407D01* X28225Y29372D01* X28239Y29338D01* X28255Y29306D01* X28257Y29303D01* Y27656D01* X28256Y27655D01* X28243Y27621D01* X28234Y27586D01* X28228Y27550D01* X28225Y27514D01* X28225Y27478D01* X28229Y27442D01* X28235Y27407D01* X28245Y27372D01* X28257Y27343D01* Y25596D01* X28254Y25586D01* X28248Y25550D01* X28245Y25514D01* X28245Y25478D01* X28249Y25442D01* X28255Y25407D01* X28257Y25403D01* Y0D01* G37* G36* Y33714D02*X28254Y33714D01* X28245Y33713D01* X28237Y33710D01* X28229Y33706D01* X28222Y33701D01* X28216Y33695D01* X28211Y33687D01* X28196Y33655D01* X28183Y33621D01* X28177Y33596D01* Y35343D01* X28179Y35338D01* X28195Y35306D01* X28199Y35299D01* X28205Y35292D01* X28213Y35287D01* X28220Y35283D01* X28229Y35281D01* X28237Y35280D01* X28246Y35281D01* X28255Y35283D01* X28257Y35284D01* Y33714D01* G37* G36* Y35417D02*X28253Y35430D01* X28248Y35456D01* X28245Y35483D01* X28245Y35511D01* X28247Y35538D01* X28252Y35564D01* X28257Y35583D01* Y35417D01* G37* G36* Y35709D02*X28251Y35711D01* X28242Y35713D01* X28234Y35714D01* X28225Y35713D01* X28217Y35710D01* X28209Y35706D01* X28202Y35701D01* X28196Y35695D01* X28191Y35687D01* X28177Y35656D01* Y37303D01* X28179Y37299D01* X28185Y37292D01* X28193Y37287D01* X28200Y37283D01* X28209Y37281D01* X28217Y37280D01* X28226Y37281D01* X28235Y37283D01* X28243Y37286D01* X28250Y37291D01* X28256Y37297D01* X28257Y37298D01* Y35709D01* G37* G36* Y37365D02*X28250Y37378D01* X28240Y37404D01* X28233Y37430D01* X28228Y37456D01* X28225Y37483D01* X28225Y37511D01* X28227Y37538D01* X28232Y37564D01* X28239Y37590D01* X28248Y37616D01* X28257Y37634D01* Y37365D01* G37* G36* Y40000D02*X28337D01* Y39862D01* X28311Y39849D01* X28303Y39845D01* X28297Y39839D01* X28292Y39832D01* X28288Y39824D01* X28286Y39815D01* X28285Y39807D01* X28285Y39798D01* X28288Y39790D01* X28291Y39782D01* X28296Y39774D01* X28302Y39768D01* X28309Y39763D01* X28317Y39759D01* X28325Y39757D01* X28334Y39756D01* X28337Y39756D01* Y39240D01* X28330Y39239D01* X28321Y39237D01* X28314Y39233D01* X28307Y39228D01* X28301Y39221D01* X28296Y39214D01* X28293Y39206D01* X28291Y39197D01* X28290Y39189D01* X28291Y39180D01* X28294Y39172D01* X28298Y39164D01* X28303Y39157D01* X28309Y39151D01* X28317Y39146D01* X28337Y39137D01* Y37852D01* X28331Y37849D01* X28323Y37845D01* X28317Y37839D01* X28312Y37832D01* X28308Y37824D01* X28306Y37815D01* X28305Y37807D01* X28305Y37798D01* X28308Y37790D01* X28311Y37782D01* X28316Y37774D01* X28322Y37768D01* X28329Y37763D01* X28337Y37759D01* Y37234D01* X28334Y37233D01* X28327Y37228D01* X28321Y37221D01* X28316Y37214D01* X28313Y37206D01* X28311Y37197D01* X28310Y37189D01* X28311Y37180D01* X28314Y37172D01* X28318Y37164D01* X28323Y37157D01* X28329Y37151D01* X28337Y37147D01* Y35838D01* X28332Y35832D01* X28328Y35824D01* X28326Y35815D01* X28325Y35807D01* X28325Y35798D01* X28328Y35790D01* X28331Y35782D01* X28336Y35774D01* X28337Y35774D01* Y35215D01* X28336Y35214D01* X28333Y35206D01* X28331Y35197D01* X28330Y35189D01* X28331Y35180D01* X28334Y35172D01* X28337Y35167D01* Y29692D01* X28333Y29697D01* X28326Y29703D01* X28319Y29708D01* X28311Y29711D01* X28302Y29713D01* X28294Y29714D01* X28285Y29713D01* X28277Y29710D01* X28269Y29706D01* X28262Y29701D01* X28257Y29695D01* Y31285D01* X28260Y31283D01* X28269Y31281D01* X28277Y31280D01* X28286Y31281D01* X28295Y31283D01* X28303Y31286D01* X28310Y31291D01* X28316Y31297D01* X28321Y31304D01* X28325Y31312D01* X28327Y31320D01* X28328Y31329D01* X28328Y31338D01* X28326Y31346D01* X28322Y31354D01* X28310Y31378D01* X28300Y31404D01* X28293Y31430D01* X28288Y31456D01* X28285Y31483D01* X28285Y31511D01* X28287Y31538D01* X28292Y31564D01* X28299Y31590D01* X28308Y31616D01* X28320Y31640D01* X28323Y31649D01* X28325Y31657D01* X28325Y31666D01* X28324Y31674D01* X28322Y31683D01* X28318Y31690D01* X28313Y31697D01* X28306Y31703D01* X28299Y31708D01* X28291Y31711D01* X28282Y31713D01* X28274Y31714D01* X28265Y31713D01* X28257Y31710D01* X28257Y31710D01* Y33280D01* X28257Y33280D01* X28266Y33281D01* X28275Y33283D01* X28283Y33286D01* X28290Y33291D01* X28296Y33297D01* X28301Y33304D01* X28305Y33312D01* X28307Y33320D01* X28308Y33329D01* X28308Y33338D01* X28306Y33346D01* X28302Y33354D01* X28290Y33378D01* X28280Y33404D01* X28273Y33430D01* X28268Y33456D01* X28265Y33483D01* X28265Y33511D01* X28267Y33538D01* X28272Y33564D01* X28279Y33590D01* X28288Y33616D01* X28300Y33640D01* X28303Y33649D01* X28305Y33657D01* X28305Y33666D01* X28304Y33674D01* X28302Y33683D01* X28298Y33690D01* X28293Y33697D01* X28286Y33703D01* X28279Y33708D01* X28271Y33711D01* X28262Y33713D01* X28257Y33714D01* Y35284D01* X28263Y35286D01* X28270Y35291D01* X28276Y35297D01* X28281Y35304D01* X28285Y35312D01* X28287Y35320D01* X28288Y35329D01* X28288Y35338D01* X28286Y35346D01* X28282Y35354D01* X28270Y35378D01* X28260Y35404D01* X28257Y35417D01* Y35583D01* X28259Y35590D01* X28268Y35616D01* X28280Y35640D01* X28283Y35649D01* X28285Y35657D01* X28285Y35666D01* X28284Y35674D01* X28282Y35683D01* X28278Y35690D01* X28273Y35697D01* X28266Y35703D01* X28259Y35708D01* X28257Y35709D01* Y37298D01* X28261Y37304D01* X28265Y37312D01* X28267Y37320D01* X28268Y37329D01* X28268Y37338D01* X28266Y37346D01* X28262Y37354D01* X28257Y37365D01* Y37634D01* X28260Y37640D01* X28263Y37649D01* X28265Y37657D01* X28265Y37666D01* X28264Y37674D01* X28262Y37683D01* X28258Y37690D01* X28257Y37692D01* Y40000D01* G37* G36* X28337Y0D02*X28257D01* Y25403D01* X28265Y25372D01* X28279Y25338D01* X28295Y25306D01* X28299Y25299D01* X28305Y25292D01* X28313Y25287D01* X28320Y25283D01* X28329Y25281D01* X28337Y25280D01* Y23710D01* X28329Y23706D01* X28322Y23701D01* X28316Y23695D01* X28311Y23687D01* X28296Y23655D01* X28283Y23621D01* X28274Y23586D01* X28268Y23550D01* X28265Y23514D01* X28265Y23478D01* X28269Y23442D01* X28275Y23407D01* X28285Y23372D01* X28299Y23338D01* X28315Y23306D01* X28319Y23299D01* X28325Y23292D01* X28333Y23287D01* X28337Y23285D01* Y21695D01* X28336Y21695D01* X28331Y21687D01* X28316Y21655D01* X28303Y21621D01* X28294Y21586D01* X28288Y21550D01* X28285Y21514D01* X28285Y21478D01* X28289Y21442D01* X28295Y21407D01* X28305Y21372D01* X28319Y21338D01* X28335Y21306D01* X28337Y21303D01* Y19656D01* X28336Y19655D01* X28323Y19621D01* X28314Y19586D01* X28308Y19550D01* X28305Y19514D01* X28305Y19478D01* X28309Y19442D01* X28315Y19407D01* X28325Y19372D01* X28337Y19343D01* Y17596D01* X28334Y17586D01* X28328Y17550D01* X28325Y17514D01* X28325Y17478D01* X28329Y17442D01* X28335Y17407D01* X28337Y17403D01* Y0D01* G37* G36* Y25714D02*X28334Y25714D01* X28325Y25713D01* X28317Y25710D01* X28309Y25706D01* X28302Y25701D01* X28296Y25695D01* X28291Y25687D01* X28276Y25655D01* X28263Y25621D01* X28257Y25596D01* Y27343D01* X28259Y27338D01* X28275Y27306D01* X28279Y27299D01* X28285Y27292D01* X28293Y27287D01* X28300Y27283D01* X28309Y27281D01* X28317Y27280D01* X28326Y27281D01* X28335Y27283D01* X28337Y27284D01* Y25714D01* G37* G36* Y27417D02*X28333Y27430D01* X28328Y27456D01* X28325Y27483D01* X28325Y27511D01* X28327Y27538D01* X28332Y27564D01* X28337Y27583D01* Y27417D01* G37* G36* Y27709D02*X28331Y27711D01* X28322Y27713D01* X28314Y27714D01* X28305Y27713D01* X28297Y27710D01* X28289Y27706D01* X28282Y27701D01* X28276Y27695D01* X28271Y27687D01* X28257Y27656D01* Y29303D01* X28259Y29299D01* X28265Y29292D01* X28273Y29287D01* X28280Y29283D01* X28289Y29281D01* X28297Y29280D01* X28306Y29281D01* X28315Y29283D01* X28323Y29286D01* X28330Y29291D01* X28336Y29297D01* X28337Y29298D01* Y27709D01* G37* G36* Y29365D02*X28330Y29378D01* X28320Y29404D01* X28313Y29430D01* X28308Y29456D01* X28305Y29483D01* X28305Y29511D01* X28307Y29538D01* X28312Y29564D01* X28319Y29590D01* X28328Y29616D01* X28337Y29634D01* Y29365D01* G37* G36* Y40000D02*X28507D01* Y39899D01* X28483Y39899D01* X28447Y39895D01* X28411Y39889D01* X28377Y39879D01* X28343Y39866D01* X28337Y39862D01* Y40000D01* G37* G36* Y39756D02*X28343Y39756D01* X28351Y39758D01* X28359Y39762D01* X28383Y39774D01* X28409Y39784D01* X28435Y39791D01* X28461Y39796D01* X28488Y39799D01* X28507Y39799D01* Y39200D01* X28494Y39200D01* X28467Y39202D01* X28440Y39207D01* X28414Y39214D01* X28388Y39223D01* X28364Y39235D01* X28356Y39238D01* X28347Y39240D01* X28338Y39240D01* X28337Y39240D01* Y39756D01* G37* G36* Y39137D02*X28349Y39131D01* X28383Y39118D01* X28418Y39109D01* X28454Y39103D01* X28490Y39100D01* X28507Y39100D01* Y37899D01* X28503D01* X28467Y37895D01* X28431Y37889D01* X28397Y37879D01* X28363Y37866D01* X28337Y37852D01* Y39137D01* G37* G36* Y37759D02*X28337Y37759D01* X28345Y37757D01* X28354Y37756D01* X28363Y37756D01* X28371Y37758D01* X28379Y37762D01* X28403Y37774D01* X28429Y37784D01* X28455Y37791D01* X28481Y37796D01* X28507Y37799D01* Y37200D01* X28487Y37202D01* X28460Y37207D01* X28434Y37214D01* X28408Y37223D01* X28384Y37235D01* X28376Y37238D01* X28367Y37240D01* X28358Y37240D01* X28350Y37239D01* X28341Y37237D01* X28337Y37234D01* Y37759D01* G37* G36* Y37147D02*X28337Y37146D01* X28369Y37131D01* X28403Y37118D01* X28438Y37109D01* X28474Y37103D01* X28507Y37100D01* Y35897D01* X28487Y35895D01* X28451Y35889D01* X28417Y35879D01* X28383Y35866D01* X28351Y35849D01* X28343Y35845D01* X28337Y35839D01* X28337Y35838D01* Y37147D01* G37* G36* Y35774D02*X28342Y35768D01* X28349Y35763D01* X28357Y35759D01* X28365Y35757D01* X28374Y35756D01* X28383Y35756D01* X28391Y35758D01* X28399Y35762D01* X28423Y35774D01* X28449Y35784D01* X28475Y35791D01* X28501Y35796D01* X28507Y35797D01* Y35202D01* X28507Y35202D01* X28480Y35207D01* X28454Y35214D01* X28428Y35223D01* X28404Y35235D01* X28396Y35238D01* X28387Y35240D01* X28378Y35240D01* X28370Y35239D01* X28361Y35237D01* X28354Y35233D01* X28347Y35228D01* X28341Y35221D01* X28337Y35215D01* Y35774D01* G37* G36* Y35167D02*X28338Y35164D01* X28343Y35157D01* X28349Y35151D01* X28357Y35146D01* X28389Y35131D01* X28417Y35121D01* Y33871D01* X28403Y33866D01* X28371Y33849D01* X28363Y33845D01* X28357Y33839D01* X28352Y33832D01* X28348Y33824D01* X28346Y33815D01* X28345Y33807D01* X28345Y33798D01* X28348Y33790D01* X28351Y33782D01* X28356Y33774D01* X28362Y33768D01* X28369Y33763D01* X28377Y33759D01* X28385Y33757D01* X28394Y33756D01* X28403Y33756D01* X28411Y33758D01* X28417Y33761D01* Y33238D01* X28416Y33238D01* X28407Y33240D01* X28398Y33240D01* X28390Y33239D01* X28381Y33237D01* X28374Y33233D01* X28367Y33228D01* X28361Y33221D01* X28356Y33214D01* X28353Y33206D01* X28351Y33197D01* X28350Y33189D01* X28351Y33180D01* X28354Y33172D01* X28358Y33164D01* X28363Y33157D01* X28369Y33151D01* X28377Y33146D01* X28409Y33131D01* X28417Y33128D01* Y31862D01* X28391Y31849D01* X28383Y31845D01* X28377Y31839D01* X28372Y31832D01* X28368Y31824D01* X28366Y31815D01* X28365Y31807D01* X28365Y31798D01* X28368Y31790D01* X28371Y31782D01* X28376Y31774D01* X28382Y31768D01* X28389Y31763D01* X28397Y31759D01* X28405Y31757D01* X28414Y31756D01* X28417Y31756D01* Y31240D01* X28410Y31239D01* X28401Y31237D01* X28394Y31233D01* X28387Y31228D01* X28381Y31221D01* X28376Y31214D01* X28373Y31206D01* X28371Y31197D01* X28370Y31189D01* X28371Y31180D01* X28374Y31172D01* X28378Y31164D01* X28383Y31157D01* X28389Y31151D01* X28397Y31146D01* X28417Y31137D01* Y29852D01* X28411Y29849D01* X28403Y29845D01* X28397Y29839D01* X28392Y29832D01* X28388Y29824D01* X28386Y29815D01* X28385Y29807D01* X28385Y29798D01* X28388Y29790D01* X28391Y29782D01* X28396Y29774D01* X28402Y29768D01* X28409Y29763D01* X28417Y29759D01* Y29234D01* X28414Y29233D01* X28407Y29228D01* X28401Y29221D01* X28396Y29214D01* X28393Y29206D01* X28391Y29197D01* X28390Y29189D01* X28391Y29180D01* X28394Y29172D01* X28398Y29164D01* X28403Y29157D01* X28409Y29151D01* X28417Y29147D01* Y27838D01* X28412Y27832D01* X28408Y27824D01* X28406Y27815D01* X28405Y27807D01* X28405Y27798D01* X28408Y27790D01* X28411Y27782D01* X28416Y27774D01* X28417Y27774D01* Y27215D01* X28416Y27214D01* X28413Y27206D01* X28411Y27197D01* X28410Y27189D01* X28411Y27180D01* X28414Y27172D01* X28417Y27167D01* Y21692D01* X28413Y21697D01* X28406Y21703D01* X28399Y21708D01* X28391Y21711D01* X28382Y21713D01* X28374Y21714D01* X28365Y21713D01* X28357Y21710D01* X28349Y21706D01* X28342Y21701D01* X28337Y21695D01* Y23285D01* X28340Y23283D01* X28349Y23281D01* X28357Y23280D01* X28366Y23281D01* X28375Y23283D01* X28383Y23286D01* X28390Y23291D01* X28396Y23297D01* X28401Y23304D01* X28405Y23312D01* X28407Y23320D01* X28408Y23329D01* X28408Y23338D01* X28406Y23346D01* X28402Y23354D01* X28390Y23378D01* X28380Y23404D01* X28373Y23430D01* X28368Y23456D01* X28365Y23483D01* X28365Y23511D01* X28367Y23538D01* X28372Y23564D01* X28379Y23590D01* X28388Y23616D01* X28400Y23640D01* X28403Y23649D01* X28405Y23657D01* X28405Y23666D01* X28404Y23674D01* X28402Y23683D01* X28398Y23690D01* X28393Y23697D01* X28386Y23703D01* X28379Y23708D01* X28371Y23711D01* X28362Y23713D01* X28354Y23714D01* X28345Y23713D01* X28337Y23710D01* X28337Y23710D01* Y25280D01* X28337Y25280D01* X28346Y25281D01* X28355Y25283D01* X28363Y25286D01* X28370Y25291D01* X28376Y25297D01* X28381Y25304D01* X28385Y25312D01* X28387Y25320D01* X28388Y25329D01* X28388Y25338D01* X28386Y25346D01* X28382Y25354D01* X28370Y25378D01* X28360Y25404D01* X28353Y25430D01* X28348Y25456D01* X28345Y25483D01* X28345Y25511D01* X28347Y25538D01* X28352Y25564D01* X28359Y25590D01* X28368Y25616D01* X28380Y25640D01* X28383Y25649D01* X28385Y25657D01* X28385Y25666D01* X28384Y25674D01* X28382Y25683D01* X28378Y25690D01* X28373Y25697D01* X28366Y25703D01* X28359Y25708D01* X28351Y25711D01* X28342Y25713D01* X28337Y25714D01* Y27284D01* X28343Y27286D01* X28350Y27291D01* X28356Y27297D01* X28361Y27304D01* X28365Y27312D01* X28367Y27320D01* X28368Y27329D01* X28368Y27338D01* X28366Y27346D01* X28362Y27354D01* X28350Y27378D01* X28340Y27404D01* X28337Y27417D01* Y27583D01* X28339Y27590D01* X28348Y27616D01* X28360Y27640D01* X28363Y27649D01* X28365Y27657D01* X28365Y27666D01* X28364Y27674D01* X28362Y27683D01* X28358Y27690D01* X28353Y27697D01* X28346Y27703D01* X28339Y27708D01* X28337Y27709D01* Y29298D01* X28341Y29304D01* X28345Y29312D01* X28347Y29320D01* X28348Y29329D01* X28348Y29338D01* X28346Y29346D01* X28342Y29354D01* X28337Y29365D01* Y29634D01* X28340Y29640D01* X28343Y29649D01* X28345Y29657D01* X28345Y29666D01* X28344Y29674D01* X28342Y29683D01* X28338Y29690D01* X28337Y29692D01* Y35167D01* G37* G36* X28417Y13695D02*X28416Y13695D01* X28411Y13687D01* X28396Y13655D01* X28383Y13621D01* X28374Y13586D01* X28368Y13550D01* X28365Y13514D01* X28365Y13478D01* X28369Y13442D01* X28375Y13407D01* X28385Y13372D01* X28399Y13338D01* X28415Y13306D01* X28417Y13303D01* Y11656D01* X28416Y11655D01* X28403Y11621D01* X28394Y11586D01* X28388Y11550D01* X28385Y11514D01* X28385Y11478D01* X28389Y11442D01* X28395Y11407D01* X28405Y11372D01* X28417Y11343D01* Y9596D01* X28414Y9586D01* X28408Y9550D01* X28405Y9514D01* X28405Y9478D01* X28409Y9442D01* X28415Y9407D01* X28417Y9403D01* Y0D01* X28337D01* Y17403D01* X28345Y17372D01* X28359Y17338D01* X28375Y17306D01* X28379Y17299D01* X28385Y17292D01* X28393Y17287D01* X28400Y17283D01* X28409Y17281D01* X28417Y17280D01* Y15710D01* X28409Y15706D01* X28402Y15701D01* X28396Y15695D01* X28391Y15687D01* X28376Y15655D01* X28363Y15621D01* X28354Y15586D01* X28348Y15550D01* X28345Y15514D01* X28345Y15478D01* X28349Y15442D01* X28355Y15407D01* X28365Y15372D01* X28379Y15338D01* X28395Y15306D01* X28399Y15299D01* X28405Y15292D01* X28413Y15287D01* X28417Y15285D01* Y13695D01* G37* G36* Y17714D02*X28414Y17714D01* X28405Y17713D01* X28397Y17710D01* X28389Y17706D01* X28382Y17701D01* X28376Y17695D01* X28371Y17687D01* X28356Y17655D01* X28343Y17621D01* X28337Y17596D01* Y19343D01* X28339Y19338D01* X28355Y19306D01* X28359Y19299D01* X28365Y19292D01* X28373Y19287D01* X28380Y19283D01* X28389Y19281D01* X28397Y19280D01* X28406Y19281D01* X28415Y19283D01* X28417Y19284D01* Y17714D01* G37* G36* Y19417D02*X28413Y19430D01* X28408Y19456D01* X28405Y19483D01* X28405Y19511D01* X28407Y19538D01* X28412Y19564D01* X28417Y19583D01* Y19417D01* G37* G36* Y19709D02*X28411Y19711D01* X28402Y19713D01* X28394Y19714D01* X28385Y19713D01* X28377Y19710D01* X28369Y19706D01* X28362Y19701D01* X28356Y19695D01* X28351Y19687D01* X28337Y19656D01* Y21303D01* X28339Y21299D01* X28345Y21292D01* X28353Y21287D01* X28360Y21283D01* X28369Y21281D01* X28377Y21280D01* X28386Y21281D01* X28395Y21283D01* X28403Y21286D01* X28410Y21291D01* X28416Y21297D01* X28417Y21298D01* Y19709D01* G37* G36* Y21365D02*X28410Y21378D01* X28400Y21404D01* X28393Y21430D01* X28388Y21456D01* X28385Y21483D01* X28385Y21511D01* X28387Y21538D01* X28392Y21564D01* X28399Y21590D01* X28408Y21616D01* X28417Y21634D01* Y21365D01* G37* G36* Y35121D02*X28423Y35118D01* X28458Y35109D01* X28494Y35103D01* X28507Y35102D01* Y33895D01* X28507D01* X28471Y33889D01* X28437Y33879D01* X28417Y33871D01* Y35121D01* G37* G36* Y33761D02*X28419Y33762D01* X28443Y33774D01* X28469Y33784D01* X28495Y33791D01* X28507Y33794D01* Y33205D01* X28500Y33207D01* X28474Y33214D01* X28448Y33223D01* X28424Y33235D01* X28417Y33238D01* Y33761D01* G37* G36* Y33128D02*X28443Y33118D01* X28478Y33109D01* X28507Y33104D01* Y31892D01* X28491Y31889D01* X28457Y31879D01* X28423Y31866D01* X28417Y31862D01* Y33128D01* G37* G36* Y31756D02*X28423Y31756D01* X28431Y31758D01* X28439Y31762D01* X28463Y31774D01* X28489Y31784D01* X28507Y31789D01* Y31210D01* X28494Y31214D01* X28468Y31223D01* X28444Y31235D01* X28436Y31238D01* X28427Y31240D01* X28418Y31240D01* X28417Y31240D01* Y31756D01* G37* G36* Y31137D02*X28429Y31131D01* X28463Y31118D01* X28498Y31109D01* X28507Y31107D01* Y29887D01* X28477Y29879D01* X28443Y29866D01* X28417Y29852D01* Y31137D01* G37* G36* Y29759D02*X28417Y29759D01* X28425Y29757D01* X28434Y29756D01* X28443Y29756D01* X28451Y29758D01* X28459Y29762D01* X28483Y29774D01* X28507Y29783D01* Y29216D01* X28488Y29223D01* X28464Y29235D01* X28456Y29238D01* X28447Y29240D01* X28438Y29240D01* X28430Y29239D01* X28421Y29237D01* X28417Y29234D01* Y29759D01* G37* G36* Y29147D02*X28417Y29146D01* X28449Y29131D01* X28483Y29118D01* X28507Y29112D01* Y27882D01* X28497Y27879D01* X28463Y27866D01* X28431Y27849D01* X28423Y27845D01* X28417Y27839D01* X28417Y27838D01* Y29147D01* G37* G36* Y27774D02*X28422Y27768D01* X28429Y27763D01* X28437Y27759D01* X28445Y27757D01* X28454Y27756D01* X28463Y27756D01* X28471Y27758D01* X28479Y27762D01* X28503Y27774D01* X28507Y27776D01* Y27223D01* X28484Y27235D01* X28476Y27238D01* X28467Y27240D01* X28458Y27240D01* X28450Y27239D01* X28441Y27237D01* X28434Y27233D01* X28427Y27228D01* X28421Y27221D01* X28417Y27215D01* Y27774D01* G37* G36* Y27167D02*X28418Y27164D01* X28423Y27157D01* X28429Y27151D01* X28437Y27146D01* X28469Y27131D01* X28503Y27118D01* X28507Y27117D01* Y25875D01* X28483Y25866D01* X28451Y25849D01* X28443Y25845D01* X28437Y25839D01* X28432Y25832D01* X28428Y25824D01* X28426Y25815D01* X28425Y25807D01* X28425Y25798D01* X28428Y25790D01* X28431Y25782D01* X28436Y25774D01* X28442Y25768D01* X28449Y25763D01* X28457Y25759D01* X28465Y25757D01* X28474Y25756D01* X28483Y25756D01* X28491Y25758D01* X28499Y25762D01* X28507Y25766D01* Y25233D01* X28504Y25235D01* X28496Y25238D01* X28487Y25240D01* X28478Y25240D01* X28470Y25239D01* X28461Y25237D01* X28454Y25233D01* X28447Y25228D01* X28441Y25221D01* X28436Y25214D01* X28433Y25206D01* X28431Y25197D01* X28430Y25189D01* X28431Y25180D01* X28434Y25172D01* X28438Y25164D01* X28443Y25157D01* X28449Y25151D01* X28457Y25146D01* X28489Y25131D01* X28507Y25124D01* Y23867D01* X28503Y23866D01* X28471Y23849D01* X28463Y23845D01* X28457Y23839D01* X28452Y23832D01* X28448Y23824D01* X28446Y23815D01* X28445Y23807D01* X28445Y23798D01* X28448Y23790D01* X28451Y23782D01* X28456Y23774D01* X28462Y23768D01* X28469Y23763D01* X28477Y23759D01* X28485Y23757D01* X28494Y23756D01* X28503Y23756D01* X28507Y23757D01* Y23240D01* X28507D01* X28498Y23240D01* X28490Y23239D01* X28481Y23237D01* X28474Y23233D01* X28467Y23228D01* X28461Y23221D01* X28456Y23214D01* X28453Y23206D01* X28451Y23197D01* X28450Y23189D01* X28451Y23180D01* X28454Y23172D01* X28458Y23164D01* X28463Y23157D01* X28469Y23151D01* X28477Y23146D01* X28507Y23132D01* Y21858D01* X28491Y21849D01* X28483Y21845D01* X28477Y21839D01* X28472Y21832D01* X28468Y21824D01* X28466Y21815D01* X28465Y21807D01* X28465Y21798D01* X28468Y21790D01* X28471Y21782D01* X28476Y21774D01* X28482Y21768D01* X28489Y21763D01* X28497Y21759D01* X28505Y21757D01* X28507Y21756D01* Y21239D01* X28501Y21237D01* X28494Y21233D01* X28487Y21228D01* X28481Y21221D01* X28476Y21214D01* X28473Y21206D01* X28471Y21197D01* X28470Y21189D01* X28471Y21180D01* X28474Y21172D01* X28478Y21164D01* X28483Y21157D01* X28489Y21151D01* X28497Y21146D01* X28507Y21141D01* Y19847D01* X28503Y19845D01* X28497Y19839D01* X28492Y19832D01* X28488Y19824D01* X28486Y19815D01* X28485Y19807D01* X28485Y19798D01* X28488Y19790D01* X28491Y19782D01* X28496Y19774D01* X28502Y19768D01* X28507Y19764D01* Y19228D01* X28507Y19228D01* X28501Y19221D01* X28496Y19214D01* X28493Y19206D01* X28491Y19197D01* X28490Y19189D01* X28491Y19180D01* X28494Y19172D01* X28498Y19164D01* X28503Y19157D01* X28507Y19153D01* Y17821D01* X28506Y17815D01* X28505Y17807D01* X28505Y17798D01* X28507Y17791D01* Y13340D01* X28506Y13346D01* X28502Y13354D01* X28490Y13378D01* X28480Y13404D01* X28473Y13430D01* X28468Y13456D01* X28465Y13483D01* X28465Y13511D01* X28467Y13538D01* X28472Y13564D01* X28479Y13590D01* X28488Y13616D01* X28500Y13640D01* X28503Y13649D01* X28505Y13657D01* X28505Y13666D01* X28504Y13674D01* X28502Y13683D01* X28498Y13690D01* X28493Y13697D01* X28486Y13703D01* X28479Y13708D01* X28471Y13711D01* X28462Y13713D01* X28454Y13714D01* X28445Y13713D01* X28437Y13710D01* X28429Y13706D01* X28422Y13701D01* X28417Y13695D01* Y15285D01* X28420Y15283D01* X28429Y15281D01* X28437Y15280D01* X28446Y15281D01* X28455Y15283D01* X28463Y15286D01* X28470Y15291D01* X28476Y15297D01* X28481Y15304D01* X28485Y15312D01* X28487Y15320D01* X28488Y15329D01* X28488Y15338D01* X28486Y15346D01* X28482Y15354D01* X28470Y15378D01* X28460Y15404D01* X28453Y15430D01* X28448Y15456D01* X28445Y15483D01* X28445Y15511D01* X28447Y15538D01* X28452Y15564D01* X28459Y15590D01* X28468Y15616D01* X28480Y15640D01* X28483Y15649D01* X28485Y15657D01* X28485Y15666D01* X28484Y15674D01* X28482Y15683D01* X28478Y15690D01* X28473Y15697D01* X28466Y15703D01* X28459Y15708D01* X28451Y15711D01* X28442Y15713D01* X28434Y15714D01* X28425Y15713D01* X28417Y15710D01* X28417Y15710D01* Y17280D01* X28417Y17280D01* X28426Y17281D01* X28435Y17283D01* X28443Y17286D01* X28450Y17291D01* X28456Y17297D01* X28461Y17304D01* X28465Y17312D01* X28467Y17320D01* X28468Y17329D01* X28468Y17338D01* X28466Y17346D01* X28462Y17354D01* X28450Y17378D01* X28440Y17404D01* X28433Y17430D01* X28428Y17456D01* X28425Y17483D01* X28425Y17511D01* X28427Y17538D01* X28432Y17564D01* X28439Y17590D01* X28448Y17616D01* X28460Y17640D01* X28463Y17649D01* X28465Y17657D01* X28465Y17666D01* X28464Y17674D01* X28462Y17683D01* X28458Y17690D01* X28453Y17697D01* X28446Y17703D01* X28439Y17708D01* X28431Y17711D01* X28422Y17713D01* X28417Y17714D01* Y19284D01* X28423Y19286D01* X28430Y19291D01* X28436Y19297D01* X28441Y19304D01* X28445Y19312D01* X28447Y19320D01* X28448Y19329D01* X28448Y19338D01* X28446Y19346D01* X28442Y19354D01* X28430Y19378D01* X28420Y19404D01* X28417Y19417D01* Y19583D01* X28419Y19590D01* X28428Y19616D01* X28440Y19640D01* X28443Y19649D01* X28445Y19657D01* X28445Y19666D01* X28444Y19674D01* X28442Y19683D01* X28438Y19690D01* X28433Y19697D01* X28426Y19703D01* X28419Y19708D01* X28417Y19709D01* Y21298D01* X28421Y21304D01* X28425Y21312D01* X28427Y21320D01* X28428Y21329D01* X28428Y21338D01* X28426Y21346D01* X28422Y21354D01* X28417Y21365D01* Y21634D01* X28420Y21640D01* X28423Y21649D01* X28425Y21657D01* X28425Y21666D01* X28424Y21674D01* X28422Y21683D01* X28418Y21690D01* X28417Y21692D01* Y27167D01* G37* G36* Y13303D02*X28419Y13299D01* X28425Y13292D01* X28433Y13287D01* X28440Y13283D01* X28449Y13281D01* X28457Y13280D01* X28466Y13281D01* X28475Y13283D01* X28483Y13286D01* X28490Y13291D01* X28496Y13297D01* X28501Y13304D01* X28505Y13312D01* X28507Y13320D01* Y11702D01* X28506Y11703D01* X28499Y11708D01* X28491Y11711D01* X28482Y11713D01* X28474Y11714D01* X28465Y11713D01* X28457Y11710D01* X28449Y11706D01* X28442Y11701D01* X28436Y11695D01* X28431Y11687D01* X28417Y11656D01* Y13303D01* G37* G36* Y11343D02*X28419Y11338D01* X28435Y11306D01* X28439Y11299D01* X28445Y11292D01* X28453Y11287D01* X28460Y11283D01* X28469Y11281D01* X28477Y11280D01* X28486Y11281D01* X28495Y11283D01* X28503Y11286D01* X28507Y11289D01* Y9712D01* X28502Y9713D01* X28494Y9714D01* X28485Y9713D01* X28477Y9710D01* X28469Y9706D01* X28462Y9701D01* X28456Y9695D01* X28451Y9687D01* X28436Y9655D01* X28423Y9621D01* X28417Y9596D01* Y11343D01* G37* G36* Y9403D02*X28425Y9372D01* X28439Y9338D01* X28455Y9306D01* X28459Y9299D01* X28465Y9292D01* X28473Y9287D01* X28480Y9283D01* X28489Y9281D01* X28497Y9280D01* X28506Y9281D01* X28507Y9281D01* Y7713D01* X28505Y7713D01* X28497Y7710D01* X28489Y7706D01* X28482Y7701D01* X28476Y7695D01* X28471Y7687D01* X28456Y7655D01* X28443Y7621D01* X28434Y7586D01* X28428Y7550D01* X28425Y7514D01* X28425Y7478D01* X28429Y7442D01* X28435Y7407D01* X28445Y7372D01* X28459Y7338D01* X28475Y7306D01* X28479Y7299D01* X28485Y7292D01* X28493Y7287D01* X28500Y7283D01* X28507Y7281D01* Y5705D01* X28502Y5701D01* X28496Y5695D01* X28491Y5687D01* X28476Y5655D01* X28463Y5621D01* X28454Y5586D01* X28448Y5550D01* X28445Y5514D01* X28445Y5478D01* X28449Y5442D01* X28455Y5407D01* X28465Y5372D01* X28479Y5338D01* X28495Y5306D01* X28499Y5299D01* X28505Y5292D01* X28507Y5291D01* Y3679D01* X28496Y3655D01* X28483Y3621D01* X28474Y3586D01* X28468Y3550D01* X28465Y3514D01* X28465Y3478D01* X28469Y3442D01* X28475Y3407D01* X28485Y3372D01* X28499Y3338D01* X28507Y3321D01* Y1631D01* X28503Y1621D01* X28494Y1586D01* X28488Y1550D01* X28485Y1514D01* X28485Y1478D01* X28489Y1442D01* X28495Y1407D01* X28505Y1372D01* X28507Y1367D01* Y0D01* X28417D01* Y9403D01* G37* G36* X28507Y11386D02*X28500Y11404D01* X28493Y11430D01* X28488Y11456D01* X28485Y11483D01* X28485Y11511D01* X28487Y11538D01* X28492Y11564D01* X28499Y11590D01* X28507Y11614D01* Y11386D01* G37* G36* Y9460D02*X28505Y9483D01* X28505Y9511D01* X28507Y9538D01* X28507Y9539D01* Y9460D01* G37* G36* Y40000D02*X28832D01* Y39714D01* X28829Y39716D01* X28820Y39718D01* X28812Y39719D01* X28803Y39719D01* X28794Y39717D01* X28786Y39713D01* X28779Y39708D01* X28773Y39702D01* X28768Y39695D01* X28764Y39687D01* X28762Y39679D01* X28761Y39670D01* X28761Y39661D01* X28763Y39653D01* X28767Y39645D01* X28779Y39621D01* X28789Y39595D01* X28796Y39569D01* X28801Y39543D01* X28804Y39516D01* X28804Y39489D01* X28802Y39462D01* X28797Y39435D01* X28790Y39409D01* X28781Y39383D01* X28769Y39359D01* X28766Y39351D01* X28764Y39342D01* X28764Y39333D01* X28765Y39325D01* X28767Y39317D01* X28771Y39309D01* X28776Y39302D01* X28783Y39296D01* X28790Y39291D01* X28798Y39288D01* X28807Y39286D01* X28815Y39285D01* X28824Y39286D01* X28832Y39289D01* X28832Y39289D01* Y37719D01* X28832Y37719D01* X28823Y37719D01* X28814Y37717D01* X28806Y37713D01* X28799Y37708D01* X28793Y37702D01* X28788Y37695D01* X28784Y37687D01* X28782Y37679D01* X28781Y37670D01* X28781Y37661D01* X28783Y37653D01* X28787Y37645D01* X28799Y37621D01* X28809Y37595D01* X28816Y37569D01* X28821Y37543D01* X28824Y37516D01* X28824Y37489D01* X28822Y37462D01* X28817Y37435D01* X28810Y37409D01* X28801Y37383D01* X28789Y37359D01* X28786Y37351D01* X28784Y37342D01* X28784Y37333D01* X28785Y37325D01* X28787Y37317D01* X28791Y37309D01* X28796Y37302D01* X28803Y37296D01* X28810Y37291D01* X28818Y37288D01* X28827Y37286D01* X28832Y37286D01* Y35716D01* X28826Y35713D01* X28819Y35708D01* X28813Y35702D01* X28808Y35695D01* X28804Y35687D01* X28802Y35679D01* X28801Y35670D01* X28801Y35661D01* X28803Y35653D01* X28807Y35645D01* X28819Y35621D01* X28829Y35595D01* X28832Y35583D01* Y35416D01* X28830Y35409D01* X28821Y35383D01* X28809Y35359D01* X28806Y35351D01* X28804Y35342D01* X28804Y35333D01* X28805Y35325D01* X28807Y35317D01* X28811Y35309D01* X28816Y35302D01* X28823Y35296D01* X28830Y35291D01* X28832Y35290D01* Y33701D01* X28828Y33695D01* X28824Y33687D01* X28822Y33679D01* X28821Y33670D01* X28821Y33661D01* X28823Y33653D01* X28827Y33645D01* X28832Y33634D01* Y33365D01* X28829Y33359D01* X28826Y33351D01* X28824Y33342D01* X28824Y33333D01* X28825Y33325D01* X28827Y33317D01* X28831Y33309D01* X28832Y33307D01* Y27833D01* X28831Y27835D01* X28826Y27842D01* X28820Y27848D01* X28812Y27853D01* X28780Y27868D01* X28746Y27881D01* X28711Y27890D01* X28675Y27896D01* X28639Y27899D01* X28603Y27899D01* X28567Y27895D01* X28531Y27889D01* X28507Y27882D01* Y29112D01* X28518Y29109D01* X28554Y29103D01* X28590Y29100D01* X28626Y29100D01* X28662Y29104D01* X28698Y29111D01* X28732Y29121D01* X28766Y29134D01* X28798Y29150D01* X28806Y29155D01* X28812Y29161D01* X28817Y29168D01* X28821Y29175D01* X28823Y29184D01* X28824Y29193D01* X28824Y29201D01* X28821Y29210D01* X28818Y29218D01* X28813Y29225D01* X28807Y29231D01* X28800Y29236D01* X28792Y29240D01* X28784Y29243D01* X28775Y29243D01* X28766Y29243D01* X28758Y29241D01* X28750Y29237D01* X28726Y29225D01* X28700Y29215D01* X28674Y29208D01* X28648Y29203D01* X28621Y29200D01* X28594Y29200D01* X28567Y29202D01* X28540Y29207D01* X28514Y29214D01* X28507Y29216D01* Y29783D01* X28509Y29784D01* X28535Y29791D01* X28561Y29796D01* X28588Y29799D01* X28615Y29799D01* X28642Y29797D01* X28669Y29793D01* X28695Y29785D01* X28721Y29776D01* X28745Y29764D01* X28753Y29761D01* X28762Y29759D01* X28771Y29759D01* X28779Y29760D01* X28788Y29762D01* X28795Y29766D01* X28802Y29772D01* X28808Y29778D01* X28813Y29785D01* X28816Y29793D01* X28818Y29802D01* X28819Y29810D01* X28818Y29819D01* X28815Y29827D01* X28811Y29835D01* X28806Y29842D01* X28800Y29848D01* X28792Y29853D01* X28760Y29868D01* X28726Y29881D01* X28691Y29890D01* X28655Y29896D01* X28619Y29899D01* X28583Y29899D01* X28547Y29895D01* X28511Y29889D01* X28507Y29887D01* Y31107D01* X28534Y31103D01* X28570Y31100D01* X28606Y31100D01* X28642Y31104D01* X28678Y31111D01* X28712Y31121D01* X28746Y31134D01* X28778Y31150D01* X28786Y31155D01* X28792Y31161D01* X28797Y31168D01* X28801Y31175D01* X28803Y31184D01* X28804Y31193D01* X28804Y31201D01* X28801Y31210D01* X28798Y31218D01* X28793Y31225D01* X28787Y31231D01* X28780Y31236D01* X28772Y31240D01* X28764Y31243D01* X28755Y31243D01* X28746Y31243D01* X28738Y31241D01* X28730Y31237D01* X28706Y31225D01* X28680Y31215D01* X28654Y31208D01* X28628Y31203D01* X28601Y31200D01* X28574Y31200D01* X28547Y31202D01* X28520Y31207D01* X28507Y31210D01* Y31789D01* X28515Y31791D01* X28541Y31796D01* X28568Y31799D01* X28595Y31799D01* X28622Y31797D01* X28649Y31793D01* X28675Y31785D01* X28701Y31776D01* X28725Y31764D01* X28733Y31761D01* X28742Y31759D01* X28751Y31759D01* X28759Y31760D01* X28768Y31762D01* X28775Y31766D01* X28782Y31772D01* X28788Y31778D01* X28793Y31785D01* X28796Y31793D01* X28798Y31802D01* X28799Y31810D01* X28798Y31819D01* X28795Y31827D01* X28791Y31835D01* X28786Y31842D01* X28780Y31848D01* X28772Y31853D01* X28740Y31868D01* X28706Y31881D01* X28671Y31890D01* X28635Y31896D01* X28599Y31899D01* X28563Y31899D01* X28527Y31895D01* X28507Y31892D01* Y33104D01* X28514Y33103D01* X28550Y33100D01* X28586Y33100D01* X28622Y33104D01* X28658Y33111D01* X28692Y33121D01* X28726Y33134D01* X28758Y33150D01* X28766Y33155D01* X28772Y33161D01* X28777Y33168D01* X28781Y33175D01* X28783Y33184D01* X28784Y33193D01* X28784Y33201D01* X28781Y33210D01* X28778Y33218D01* X28773Y33225D01* X28767Y33231D01* X28760Y33236D01* X28752Y33240D01* X28744Y33243D01* X28735Y33243D01* X28726Y33243D01* X28718Y33241D01* X28710Y33237D01* X28686Y33225D01* X28660Y33215D01* X28634Y33208D01* X28608Y33203D01* X28581Y33200D01* X28554Y33200D01* X28527Y33202D01* X28507Y33205D01* Y33794D01* X28521Y33796D01* X28548Y33799D01* X28575Y33799D01* X28602Y33797D01* X28629Y33793D01* X28655Y33785D01* X28681Y33776D01* X28705Y33764D01* X28713Y33761D01* X28722Y33759D01* X28731Y33759D01* X28739Y33760D01* X28748Y33762D01* X28755Y33766D01* X28762Y33772D01* X28768Y33778D01* X28773Y33785D01* X28776Y33793D01* X28778Y33802D01* X28779Y33810D01* X28778Y33819D01* X28775Y33827D01* X28771Y33835D01* X28766Y33842D01* X28760Y33848D01* X28752Y33853D01* X28720Y33868D01* X28686Y33881D01* X28651Y33890D01* X28615Y33896D01* X28579Y33899D01* X28543Y33899D01* X28507Y33895D01* Y35102D01* X28530Y35100D01* X28566Y35100D01* X28602Y35104D01* X28638Y35111D01* X28672Y35121D01* X28706Y35134D01* X28738Y35150D01* X28746Y35155D01* X28752Y35161D01* X28757Y35168D01* X28761Y35175D01* X28763Y35184D01* X28764Y35193D01* X28764Y35201D01* X28761Y35210D01* X28758Y35218D01* X28753Y35225D01* X28747Y35231D01* X28740Y35236D01* X28732Y35240D01* X28724Y35243D01* X28715Y35243D01* X28706Y35243D01* X28698Y35241D01* X28690Y35237D01* X28666Y35225D01* X28640Y35215D01* X28614Y35208D01* X28588Y35203D01* X28561Y35200D01* X28534Y35200D01* X28507Y35202D01* Y35797D01* X28528Y35799D01* X28555Y35799D01* X28582Y35797D01* X28609Y35793D01* X28635Y35785D01* X28661Y35776D01* X28685Y35764D01* X28693Y35761D01* X28702Y35759D01* X28711Y35759D01* X28719Y35760D01* X28728Y35762D01* X28735Y35766D01* X28742Y35772D01* X28748Y35778D01* X28753Y35785D01* X28756Y35793D01* X28758Y35802D01* X28759Y35810D01* X28758Y35819D01* X28755Y35827D01* X28751Y35835D01* X28746Y35842D01* X28740Y35848D01* X28732Y35853D01* X28700Y35868D01* X28666Y35881D01* X28631Y35890D01* X28595Y35896D01* X28559Y35899D01* X28523Y35899D01* X28507Y35897D01* Y37100D01* X28510Y37100D01* X28546Y37100D01* X28582Y37104D01* X28618Y37111D01* X28652Y37121D01* X28686Y37134D01* X28718Y37150D01* X28726Y37155D01* X28732Y37161D01* X28737Y37168D01* X28741Y37175D01* X28743Y37184D01* X28744Y37193D01* X28744Y37201D01* X28741Y37210D01* X28738Y37218D01* X28733Y37225D01* X28727Y37231D01* X28720Y37236D01* X28712Y37240D01* X28704Y37243D01* X28695Y37243D01* X28686Y37243D01* X28678Y37241D01* X28670Y37237D01* X28646Y37225D01* X28620Y37215D01* X28594Y37208D01* X28568Y37203D01* X28541Y37200D01* X28514Y37200D01* X28507Y37200D01* Y37799D01* X28508Y37799D01* X28535Y37799D01* X28562Y37797D01* X28589Y37793D01* X28615Y37785D01* X28641Y37776D01* X28665Y37764D01* X28673Y37761D01* X28682Y37759D01* X28691Y37759D01* X28699Y37760D01* X28708Y37762D01* X28715Y37766D01* X28722Y37772D01* X28728Y37778D01* X28733Y37785D01* X28736Y37793D01* X28738Y37802D01* X28739Y37810D01* X28738Y37819D01* X28735Y37827D01* X28731Y37835D01* X28726Y37842D01* X28720Y37848D01* X28712Y37853D01* X28680Y37868D01* X28646Y37881D01* X28611Y37890D01* X28575Y37896D01* X28539Y37899D01* X28507Y37899D01* Y39100D01* X28526Y39100D01* X28562Y39104D01* X28598Y39111D01* X28632Y39121D01* X28666Y39134D01* X28698Y39150D01* X28706Y39155D01* X28712Y39161D01* X28717Y39168D01* X28721Y39175D01* X28723Y39184D01* X28724Y39193D01* X28724Y39201D01* X28721Y39210D01* X28718Y39218D01* X28713Y39225D01* X28707Y39231D01* X28700Y39236D01* X28692Y39240D01* X28684Y39243D01* X28675Y39243D01* X28666Y39243D01* X28658Y39241D01* X28650Y39237D01* X28626Y39225D01* X28600Y39215D01* X28574Y39208D01* X28548Y39203D01* X28521Y39200D01* X28507Y39200D01* Y39799D01* X28515Y39799D01* X28542Y39797D01* X28569Y39793D01* X28595Y39785D01* X28621Y39776D01* X28645Y39764D01* X28653Y39761D01* X28662Y39759D01* X28671Y39759D01* X28679Y39760D01* X28688Y39762D01* X28695Y39766D01* X28702Y39772D01* X28708Y39778D01* X28713Y39785D01* X28716Y39793D01* X28718Y39802D01* X28719Y39810D01* X28718Y39819D01* X28715Y39827D01* X28711Y39835D01* X28706Y39842D01* X28700Y39848D01* X28692Y39853D01* X28660Y39868D01* X28626Y39881D01* X28591Y39890D01* X28555Y39896D01* X28519Y39899D01* X28507Y39899D01* Y40000D01* G37* G36* X28832Y0D02*X28507D01* Y1367D01* X28519Y1338D01* X28535Y1306D01* X28539Y1299D01* X28545Y1292D01* X28553Y1287D01* X28560Y1283D01* X28569Y1281D01* X28577Y1280D01* X28586Y1281D01* X28595Y1283D01* X28603Y1286D01* X28610Y1291D01* X28616Y1297D01* X28621Y1304D01* X28625Y1312D01* X28627Y1320D01* X28628Y1329D01* X28628Y1338D01* X28626Y1346D01* X28622Y1354D01* X28610Y1378D01* X28600Y1404D01* X28593Y1430D01* X28588Y1456D01* X28585Y1483D01* X28585Y1511D01* X28587Y1538D01* X28592Y1564D01* X28599Y1590D01* X28608Y1616D01* X28620Y1640D01* X28623Y1649D01* X28625Y1657D01* X28625Y1666D01* X28624Y1674D01* X28622Y1683D01* X28618Y1690D01* X28613Y1697D01* X28606Y1703D01* X28599Y1708D01* X28591Y1711D01* X28582Y1713D01* X28574Y1714D01* X28565Y1713D01* X28557Y1710D01* X28549Y1706D01* X28542Y1701D01* X28536Y1695D01* X28531Y1687D01* X28516Y1655D01* X28507Y1631D01* Y3321D01* X28515Y3306D01* X28519Y3299D01* X28525Y3292D01* X28533Y3287D01* X28540Y3283D01* X28549Y3281D01* X28557Y3280D01* X28566Y3281D01* X28575Y3283D01* X28583Y3286D01* X28590Y3291D01* X28596Y3297D01* X28601Y3304D01* X28605Y3312D01* X28607Y3320D01* X28608Y3329D01* X28608Y3338D01* X28606Y3346D01* X28602Y3354D01* X28590Y3378D01* X28580Y3404D01* X28573Y3430D01* X28568Y3456D01* X28565Y3483D01* X28565Y3511D01* X28567Y3538D01* X28572Y3564D01* X28579Y3590D01* X28588Y3616D01* X28600Y3640D01* X28603Y3649D01* X28605Y3657D01* X28605Y3666D01* X28604Y3674D01* X28602Y3683D01* X28598Y3690D01* X28593Y3697D01* X28586Y3703D01* X28579Y3708D01* X28571Y3711D01* X28562Y3713D01* X28554Y3714D01* X28545Y3713D01* X28537Y3710D01* X28529Y3706D01* X28522Y3701D01* X28516Y3695D01* X28511Y3687D01* X28507Y3679D01* Y5291D01* X28513Y5287D01* X28520Y5283D01* X28529Y5281D01* X28537Y5280D01* X28546Y5281D01* X28555Y5283D01* X28563Y5286D01* X28570Y5291D01* X28576Y5297D01* X28581Y5304D01* X28585Y5312D01* X28587Y5320D01* X28588Y5329D01* X28588Y5338D01* X28586Y5346D01* X28582Y5354D01* X28570Y5378D01* X28560Y5404D01* X28553Y5430D01* X28548Y5456D01* X28545Y5483D01* X28545Y5511D01* X28547Y5538D01* X28552Y5564D01* X28559Y5590D01* X28568Y5616D01* X28580Y5640D01* X28583Y5649D01* X28585Y5657D01* X28585Y5666D01* X28584Y5674D01* X28582Y5683D01* X28578Y5690D01* X28573Y5697D01* X28566Y5703D01* X28559Y5708D01* X28551Y5711D01* X28542Y5713D01* X28534Y5714D01* X28525Y5713D01* X28517Y5710D01* X28509Y5706D01* X28507Y5705D01* Y7281D01* X28509Y7281D01* X28517Y7280D01* X28526Y7281D01* X28535Y7283D01* X28543Y7286D01* X28550Y7291D01* X28556Y7297D01* X28561Y7304D01* X28565Y7312D01* X28567Y7320D01* X28568Y7329D01* X28568Y7338D01* X28566Y7346D01* X28562Y7354D01* X28550Y7378D01* X28540Y7404D01* X28533Y7430D01* X28528Y7456D01* X28525Y7483D01* X28525Y7511D01* X28527Y7538D01* X28532Y7564D01* X28539Y7590D01* X28548Y7616D01* X28560Y7640D01* X28563Y7649D01* X28565Y7657D01* X28565Y7666D01* X28564Y7674D01* X28562Y7683D01* X28558Y7690D01* X28553Y7697D01* X28546Y7703D01* X28539Y7708D01* X28531Y7711D01* X28522Y7713D01* X28514Y7714D01* X28507Y7713D01* Y9281D01* X28515Y9283D01* X28523Y9286D01* X28530Y9291D01* X28536Y9297D01* X28541Y9304D01* X28545Y9312D01* X28547Y9320D01* X28548Y9329D01* X28548Y9338D01* X28546Y9346D01* X28542Y9354D01* X28530Y9378D01* X28520Y9404D01* X28513Y9430D01* X28508Y9456D01* X28507Y9460D01* Y9539D01* X28512Y9564D01* X28519Y9590D01* X28528Y9616D01* X28540Y9640D01* X28543Y9649D01* X28545Y9657D01* X28545Y9666D01* X28544Y9674D01* X28542Y9683D01* X28538Y9690D01* X28533Y9697D01* X28526Y9703D01* X28519Y9708D01* X28511Y9711D01* X28507Y9712D01* Y11289D01* X28510Y11291D01* X28516Y11297D01* X28521Y11304D01* X28525Y11312D01* X28527Y11320D01* X28528Y11329D01* X28528Y11338D01* X28526Y11346D01* X28522Y11354D01* X28510Y11378D01* X28507Y11386D01* Y11614D01* X28508Y11616D01* X28520Y11640D01* X28523Y11649D01* X28525Y11657D01* X28525Y11666D01* X28524Y11674D01* X28522Y11683D01* X28518Y11690D01* X28513Y11697D01* X28507Y11702D01* Y13320D01* X28507Y13320D01* X28508Y13329D01* X28508Y13338D01* X28507Y13340D01* Y17791D01* X28508Y17790D01* X28511Y17782D01* X28516Y17774D01* X28522Y17768D01* X28529Y17763D01* X28537Y17759D01* X28545Y17757D01* X28554Y17756D01* X28563Y17756D01* X28571Y17758D01* X28579Y17762D01* X28603Y17774D01* X28629Y17784D01* X28655Y17791D01* X28681Y17796D01* X28708Y17799D01* X28735Y17799D01* X28762Y17797D01* X28789Y17793D01* X28815Y17785D01* X28832Y17779D01* Y17220D01* X28820Y17215D01* X28794Y17208D01* X28768Y17203D01* X28741Y17200D01* X28714Y17200D01* X28687Y17202D01* X28660Y17207D01* X28634Y17214D01* X28608Y17223D01* X28584Y17235D01* X28576Y17238D01* X28567Y17240D01* X28558Y17240D01* X28550Y17239D01* X28541Y17237D01* X28534Y17233D01* X28527Y17228D01* X28521Y17221D01* X28516Y17214D01* X28513Y17206D01* X28511Y17197D01* X28510Y17189D01* X28511Y17180D01* X28514Y17172D01* X28518Y17164D01* X28523Y17157D01* X28529Y17151D01* X28537Y17146D01* X28569Y17131D01* X28603Y17118D01* X28638Y17109D01* X28674Y17103D01* X28710Y17100D01* X28746Y17100D01* X28782Y17104D01* X28818Y17111D01* X28832Y17115D01* Y15890D01* X28831Y15890D01* X28795Y15896D01* X28759Y15899D01* X28723Y15899D01* X28687Y15895D01* X28651Y15889D01* X28617Y15879D01* X28583Y15866D01* X28551Y15849D01* X28543Y15845D01* X28537Y15839D01* X28532Y15832D01* X28528Y15824D01* X28526Y15815D01* X28525Y15807D01* X28525Y15798D01* X28528Y15790D01* X28531Y15782D01* X28536Y15774D01* X28542Y15768D01* X28549Y15763D01* X28557Y15759D01* X28565Y15757D01* X28574Y15756D01* X28583Y15756D01* X28591Y15758D01* X28599Y15762D01* X28623Y15774D01* X28649Y15784D01* X28675Y15791D01* X28701Y15796D01* X28728Y15799D01* X28755Y15799D01* X28782Y15797D01* X28809Y15793D01* X28832Y15786D01* Y15213D01* X28814Y15208D01* X28788Y15203D01* X28761Y15200D01* X28734Y15200D01* X28707Y15202D01* X28680Y15207D01* X28654Y15214D01* X28628Y15223D01* X28604Y15235D01* X28596Y15238D01* X28587Y15240D01* X28578Y15240D01* X28570Y15239D01* X28561Y15237D01* X28554Y15233D01* X28547Y15228D01* X28541Y15221D01* X28536Y15214D01* X28533Y15206D01* X28531Y15197D01* X28530Y15189D01* X28531Y15180D01* X28534Y15172D01* X28538Y15164D01* X28543Y15157D01* X28549Y15151D01* X28557Y15146D01* X28589Y15131D01* X28623Y15118D01* X28658Y15109D01* X28694Y15103D01* X28730Y15100D01* X28766Y15100D01* X28802Y15104D01* X28832Y15110D01* Y13893D01* X28815Y13896D01* X28779Y13899D01* X28743Y13899D01* X28707Y13895D01* X28671Y13889D01* X28637Y13879D01* X28603Y13866D01* X28571Y13849D01* X28563Y13845D01* X28557Y13839D01* X28552Y13832D01* X28548Y13824D01* X28546Y13815D01* X28545Y13807D01* X28545Y13798D01* X28548Y13790D01* X28551Y13782D01* X28556Y13774D01* X28562Y13768D01* X28569Y13763D01* X28577Y13759D01* X28585Y13757D01* X28594Y13756D01* X28603Y13756D01* X28611Y13758D01* X28619Y13762D01* X28643Y13774D01* X28669Y13784D01* X28695Y13791D01* X28721Y13796D01* X28748Y13799D01* X28775Y13799D01* X28802Y13797D01* X28829Y13793D01* X28832Y13792D01* Y13207D01* X28808Y13203D01* X28781Y13200D01* X28754Y13200D01* X28727Y13202D01* X28700Y13207D01* X28674Y13214D01* X28648Y13223D01* X28624Y13235D01* X28616Y13238D01* X28607Y13240D01* X28598Y13240D01* X28590Y13239D01* X28581Y13237D01* X28574Y13233D01* X28567Y13228D01* X28561Y13221D01* X28556Y13214D01* X28553Y13206D01* X28551Y13197D01* X28550Y13189D01* X28551Y13180D01* X28554Y13172D01* X28558Y13164D01* X28563Y13157D01* X28569Y13151D01* X28577Y13146D01* X28609Y13131D01* X28643Y13118D01* X28678Y13109D01* X28714Y13103D01* X28750Y13100D01* X28786Y13100D01* X28822Y13104D01* X28832Y13106D01* Y11897D01* X28799Y11899D01* X28763Y11899D01* X28727Y11895D01* X28691Y11889D01* X28657Y11879D01* X28623Y11866D01* X28591Y11849D01* X28583Y11845D01* X28577Y11839D01* X28572Y11832D01* X28568Y11824D01* X28566Y11815D01* X28565Y11807D01* X28565Y11798D01* X28568Y11790D01* X28571Y11782D01* X28576Y11774D01* X28582Y11768D01* X28589Y11763D01* X28597Y11759D01* X28605Y11757D01* X28614Y11756D01* X28623Y11756D01* X28631Y11758D01* X28639Y11762D01* X28663Y11774D01* X28689Y11784D01* X28715Y11791D01* X28741Y11796D01* X28768Y11799D01* X28795Y11799D01* X28822Y11797D01* X28832Y11795D01* Y11204D01* X28828Y11203D01* X28801Y11200D01* X28774Y11200D01* X28747Y11202D01* X28720Y11207D01* X28694Y11214D01* X28668Y11223D01* X28644Y11235D01* X28636Y11238D01* X28627Y11240D01* X28618Y11240D01* X28610Y11239D01* X28601Y11237D01* X28594Y11233D01* X28587Y11228D01* X28581Y11221D01* X28576Y11214D01* X28573Y11206D01* X28571Y11197D01* X28570Y11189D01* X28571Y11180D01* X28574Y11172D01* X28578Y11164D01* X28583Y11157D01* X28589Y11151D01* X28597Y11146D01* X28629Y11131D01* X28663Y11118D01* X28698Y11109D01* X28734Y11103D01* X28770Y11100D01* X28806Y11100D01* X28832Y11103D01* Y9898D01* X28819Y9899D01* X28783Y9899D01* X28747Y9895D01* X28711Y9889D01* X28677Y9879D01* X28643Y9866D01* X28611Y9849D01* X28603Y9845D01* X28597Y9839D01* X28592Y9832D01* X28588Y9824D01* X28586Y9815D01* X28585Y9807D01* X28585Y9798D01* X28588Y9790D01* X28591Y9782D01* X28596Y9774D01* X28602Y9768D01* X28609Y9763D01* X28617Y9759D01* X28625Y9757D01* X28634Y9756D01* X28643Y9756D01* X28651Y9758D01* X28659Y9762D01* X28683Y9774D01* X28709Y9784D01* X28735Y9791D01* X28761Y9796D01* X28788Y9799D01* X28815Y9799D01* X28832Y9798D01* Y9201D01* X28821Y9200D01* X28794Y9200D01* X28767Y9202D01* X28740Y9207D01* X28714Y9214D01* X28688Y9223D01* X28664Y9235D01* X28656Y9238D01* X28647Y9240D01* X28638Y9240D01* X28630Y9239D01* X28621Y9237D01* X28614Y9233D01* X28607Y9228D01* X28601Y9221D01* X28596Y9214D01* X28593Y9206D01* X28591Y9197D01* X28590Y9189D01* X28591Y9180D01* X28594Y9172D01* X28598Y9164D01* X28603Y9157D01* X28609Y9151D01* X28617Y9146D01* X28649Y9131D01* X28683Y9118D01* X28718Y9109D01* X28754Y9103D01* X28790Y9100D01* X28826Y9100D01* X28832Y9101D01* Y7899D01* X28803Y7899D01* X28767Y7895D01* X28731Y7889D01* X28697Y7879D01* X28663Y7866D01* X28631Y7849D01* X28623Y7845D01* X28617Y7839D01* X28612Y7832D01* X28608Y7824D01* X28606Y7815D01* X28605Y7807D01* X28605Y7798D01* X28608Y7790D01* X28611Y7782D01* X28616Y7774D01* X28622Y7768D01* X28629Y7763D01* X28637Y7759D01* X28645Y7757D01* X28654Y7756D01* X28663Y7756D01* X28671Y7758D01* X28679Y7762D01* X28703Y7774D01* X28729Y7784D01* X28755Y7791D01* X28781Y7796D01* X28808Y7799D01* X28832Y7799D01* Y7200D01* X28814Y7200D01* X28787Y7202D01* X28760Y7207D01* X28734Y7214D01* X28708Y7223D01* X28684Y7235D01* X28676Y7238D01* X28667Y7240D01* X28658Y7240D01* X28650Y7239D01* X28641Y7237D01* X28634Y7233D01* X28627Y7228D01* X28621Y7221D01* X28616Y7214D01* X28613Y7206D01* X28611Y7197D01* X28610Y7189D01* X28611Y7180D01* X28614Y7172D01* X28618Y7164D01* X28623Y7157D01* X28629Y7151D01* X28637Y7146D01* X28669Y7131D01* X28703Y7118D01* X28738Y7109D01* X28774Y7103D01* X28810Y7100D01* X28832Y7100D01* Y5899D01* X28823Y5899D01* X28787Y5895D01* X28751Y5889D01* X28717Y5879D01* X28683Y5866D01* X28651Y5849D01* X28643Y5845D01* X28637Y5839D01* X28632Y5832D01* X28628Y5824D01* X28626Y5815D01* X28625Y5807D01* X28625Y5798D01* X28628Y5790D01* X28631Y5782D01* X28636Y5774D01* X28642Y5768D01* X28649Y5763D01* X28657Y5759D01* X28665Y5757D01* X28674Y5756D01* X28683Y5756D01* X28691Y5758D01* X28699Y5762D01* X28723Y5774D01* X28749Y5784D01* X28775Y5791D01* X28801Y5796D01* X28828Y5799D01* X28832D01* Y5200D01* X28807Y5202D01* X28780Y5207D01* X28754Y5214D01* X28728Y5223D01* X28704Y5235D01* X28696Y5238D01* X28687Y5240D01* X28678Y5240D01* X28670Y5239D01* X28661Y5237D01* X28654Y5233D01* X28647Y5228D01* X28641Y5221D01* X28636Y5214D01* X28633Y5206D01* X28631Y5197D01* X28630Y5189D01* X28631Y5180D01* X28634Y5172D01* X28638Y5164D01* X28643Y5157D01* X28649Y5151D01* X28657Y5146D01* X28689Y5131D01* X28723Y5118D01* X28758Y5109D01* X28794Y5103D01* X28830Y5100D01* X28832D01* Y3898D01* X28807Y3895D01* X28771Y3889D01* X28737Y3879D01* X28703Y3866D01* X28671Y3849D01* X28663Y3845D01* X28657Y3839D01* X28652Y3832D01* X28648Y3824D01* X28646Y3815D01* X28645Y3807D01* X28645Y3798D01* X28648Y3790D01* X28651Y3782D01* X28656Y3774D01* X28662Y3768D01* X28669Y3763D01* X28677Y3759D01* X28685Y3757D01* X28694Y3756D01* X28703Y3756D01* X28711Y3758D01* X28719Y3762D01* X28743Y3774D01* X28769Y3784D01* X28795Y3791D01* X28821Y3796D01* X28832Y3798D01* Y3202D01* X28827Y3202D01* X28800Y3207D01* X28774Y3214D01* X28748Y3223D01* X28724Y3235D01* X28716Y3238D01* X28707Y3240D01* X28698Y3240D01* X28690Y3239D01* X28681Y3237D01* X28674Y3233D01* X28667Y3228D01* X28661Y3221D01* X28656Y3214D01* X28653Y3206D01* X28651Y3197D01* X28650Y3189D01* X28651Y3180D01* X28654Y3172D01* X28658Y3164D01* X28663Y3157D01* X28669Y3151D01* X28677Y3146D01* X28709Y3131D01* X28743Y3118D01* X28778Y3109D01* X28814Y3103D01* X28832Y3101D01* Y1896D01* X28827Y1895D01* X28791Y1889D01* X28757Y1879D01* X28723Y1866D01* X28691Y1849D01* X28683Y1845D01* X28677Y1839D01* X28672Y1832D01* X28668Y1824D01* X28666Y1815D01* X28665Y1807D01* X28665Y1798D01* X28668Y1790D01* X28671Y1782D01* X28676Y1774D01* X28682Y1768D01* X28689Y1763D01* X28697Y1759D01* X28705Y1757D01* X28714Y1756D01* X28723Y1756D01* X28731Y1758D01* X28739Y1762D01* X28763Y1774D01* X28789Y1784D01* X28815Y1791D01* X28832Y1795D01* Y1204D01* X28820Y1207D01* X28794Y1214D01* X28768Y1223D01* X28744Y1235D01* X28736Y1238D01* X28727Y1240D01* X28718Y1240D01* X28710Y1239D01* X28701Y1237D01* X28694Y1233D01* X28687Y1228D01* X28681Y1221D01* X28676Y1214D01* X28673Y1206D01* X28671Y1197D01* X28670Y1189D01* X28671Y1180D01* X28674Y1172D01* X28678Y1164D01* X28683Y1157D01* X28689Y1151D01* X28697Y1146D01* X28729Y1131D01* X28763Y1118D01* X28798Y1109D01* X28832Y1103D01* Y0D01* G37* G36* Y17884D02*X28811Y17890D01* X28775Y17896D01* X28739Y17899D01* X28703Y17899D01* X28667Y17895D01* X28631Y17889D01* X28597Y17879D01* X28563Y17866D01* X28531Y17849D01* X28523Y17845D01* X28517Y17839D01* X28512Y17832D01* X28508Y17824D01* X28507Y17821D01* Y19153D01* X28509Y19151D01* X28517Y19146D01* X28549Y19131D01* X28583Y19118D01* X28618Y19109D01* X28654Y19103D01* X28690Y19100D01* X28726Y19100D01* X28762Y19104D01* X28798Y19111D01* X28832Y19121D01* X28832D01* Y17884D01* G37* G36* Y19229D02*X28826Y19225D01* X28800Y19215D01* X28774Y19208D01* X28748Y19203D01* X28721Y19200D01* X28694Y19200D01* X28667Y19202D01* X28640Y19207D01* X28614Y19214D01* X28588Y19223D01* X28564Y19235D01* X28556Y19238D01* X28547Y19240D01* X28538Y19240D01* X28530Y19239D01* X28521Y19237D01* X28514Y19233D01* X28507Y19228D01* Y19764D01* X28509Y19763D01* X28517Y19759D01* X28525Y19757D01* X28534Y19756D01* X28543Y19756D01* X28551Y19758D01* X28559Y19762D01* X28583Y19774D01* X28609Y19784D01* X28635Y19791D01* X28661Y19796D01* X28688Y19799D01* X28715Y19799D01* X28742Y19797D01* X28769Y19793D01* X28795Y19785D01* X28821Y19776D01* X28832Y19771D01* Y19229D01* G37* G36* Y19878D02*X28826Y19881D01* X28791Y19890D01* X28755Y19896D01* X28719Y19899D01* X28683Y19899D01* X28647Y19895D01* X28611Y19889D01* X28577Y19879D01* X28543Y19866D01* X28511Y19849D01* X28507Y19847D01* Y21141D01* X28529Y21131D01* X28563Y21118D01* X28598Y21109D01* X28634Y21103D01* X28670Y21100D01* X28706Y21100D01* X28742Y21104D01* X28778Y21111D01* X28812Y21121D01* X28832Y21128D01* Y19878D01* G37* G36* Y21238D02*X28830Y21237D01* X28806Y21225D01* X28780Y21215D01* X28754Y21208D01* X28728Y21203D01* X28701Y21200D01* X28674Y21200D01* X28647Y21202D01* X28620Y21207D01* X28594Y21214D01* X28568Y21223D01* X28544Y21235D01* X28536Y21238D01* X28527Y21240D01* X28518Y21240D01* X28510Y21239D01* X28507Y21239D01* Y21756D01* X28514Y21756D01* X28523Y21756D01* X28531Y21758D01* X28539Y21762D01* X28563Y21774D01* X28589Y21784D01* X28615Y21791D01* X28641Y21796D01* X28668Y21799D01* X28695Y21799D01* X28722Y21797D01* X28749Y21793D01* X28775Y21785D01* X28801Y21776D01* X28825Y21764D01* X28832Y21762D01* Y21238D01* G37* G36* Y21871D02*X28806Y21881D01* X28771Y21890D01* X28735Y21896D01* X28699Y21899D01* X28663Y21899D01* X28627Y21895D01* X28591Y21889D01* X28557Y21879D01* X28523Y21866D01* X28507Y21858D01* Y23132D01* X28509Y23131D01* X28543Y23118D01* X28578Y23109D01* X28614Y23103D01* X28650Y23100D01* X28686Y23100D01* X28722Y23104D01* X28758Y23111D01* X28792Y23121D01* X28826Y23134D01* X28832Y23137D01* Y21871D01* G37* G36* Y23243D02*X28826Y23243D01* X28818Y23241D01* X28810Y23237D01* X28786Y23225D01* X28760Y23215D01* X28734Y23208D01* X28708Y23203D01* X28681Y23200D01* X28654Y23200D01* X28627Y23202D01* X28600Y23207D01* X28574Y23214D01* X28548Y23223D01* X28524Y23235D01* X28516Y23238D01* X28507Y23240D01* Y23757D01* X28511Y23758D01* X28519Y23762D01* X28543Y23774D01* X28569Y23784D01* X28595Y23791D01* X28621Y23796D01* X28648Y23799D01* X28675Y23799D01* X28702Y23797D01* X28729Y23793D01* X28755Y23785D01* X28781Y23776D01* X28805Y23764D01* X28813Y23761D01* X28822Y23759D01* X28831Y23759D01* X28832Y23759D01* Y23243D01* G37* G36* Y23862D02*X28820Y23868D01* X28786Y23881D01* X28751Y23890D01* X28715Y23896D01* X28679Y23899D01* X28643Y23899D01* X28607Y23895D01* X28571Y23889D01* X28537Y23879D01* X28507Y23867D01* Y25124D01* X28523Y25118D01* X28558Y25109D01* X28594Y25103D01* X28630Y25100D01* X28666Y25100D01* X28702Y25104D01* X28738Y25111D01* X28772Y25121D01* X28806Y25134D01* X28832Y25147D01* Y23862D01* G37* G36* Y25240D02*X28832Y25240D01* X28824Y25243D01* X28815Y25243D01* X28806Y25243D01* X28798Y25241D01* X28790Y25237D01* X28766Y25225D01* X28740Y25215D01* X28714Y25208D01* X28688Y25203D01* X28661Y25200D01* X28634Y25200D01* X28607Y25202D01* X28580Y25207D01* X28554Y25214D01* X28528Y25223D01* X28507Y25233D01* Y25766D01* X28523Y25774D01* X28549Y25784D01* X28575Y25791D01* X28601Y25796D01* X28628Y25799D01* X28655Y25799D01* X28682Y25797D01* X28709Y25793D01* X28735Y25785D01* X28761Y25776D01* X28785Y25764D01* X28793Y25761D01* X28802Y25759D01* X28811Y25759D01* X28819Y25760D01* X28828Y25762D01* X28832Y25765D01* Y25240D01* G37* G36* Y25853D02*X28832Y25853D01* X28800Y25868D01* X28766Y25881D01* X28731Y25890D01* X28695Y25896D01* X28659Y25899D01* X28623Y25899D01* X28587Y25895D01* X28551Y25889D01* X28517Y25879D01* X28507Y25875D01* Y27117D01* X28538Y27109D01* X28574Y27103D01* X28610Y27100D01* X28646Y27100D01* X28682Y27104D01* X28718Y27111D01* X28752Y27121D01* X28786Y27134D01* X28818Y27150D01* X28826Y27155D01* X28832Y27161D01* X28832Y27161D01* Y25853D01* G37* G36* Y27225D02*X28827Y27231D01* X28820Y27236D01* X28812Y27240D01* X28804Y27243D01* X28795Y27243D01* X28786Y27243D01* X28778Y27241D01* X28770Y27237D01* X28746Y27225D01* X28720Y27215D01* X28694Y27208D01* X28668Y27203D01* X28641Y27200D01* X28614Y27200D01* X28587Y27202D01* X28560Y27207D01* X28534Y27214D01* X28508Y27223D01* X28507Y27223D01* Y27776D01* X28529Y27784D01* X28555Y27791D01* X28581Y27796D01* X28608Y27799D01* X28635Y27799D01* X28662Y27797D01* X28689Y27793D01* X28715Y27785D01* X28741Y27776D01* X28765Y27764D01* X28773Y27761D01* X28782Y27759D01* X28791Y27759D01* X28799Y27760D01* X28808Y27762D01* X28815Y27766D01* X28822Y27772D01* X28828Y27778D01* X28832Y27784D01* Y27225D01* G37* G36* Y40000D02*X28912D01* Y37596D01* X28904Y37627D01* X28890Y37661D01* X28874Y37694D01* X28870Y37701D01* X28864Y37707D01* X28856Y37712D01* X28849Y37716D01* X28840Y37718D01* X28832Y37719D01* Y39289D01* X28840Y39293D01* X28847Y39298D01* X28853Y39305D01* X28858Y39312D01* X28873Y39344D01* X28886Y39378D01* X28895Y39413D01* X28901Y39449D01* X28904Y39485D01* X28904Y39521D01* X28900Y39557D01* X28894Y39593D01* X28884Y39627D01* X28870Y39661D01* X28854Y39694D01* X28850Y39701D01* X28844Y39707D01* X28836Y39712D01* X28832Y39714D01* Y40000D01* G37* G36* X28912Y0D02*X28832D01* Y1103D01* X28834Y1103D01* X28870Y1100D01* X28906Y1100D01* X28912Y1101D01* Y0D01* G37* G36* Y1201D02*X28901Y1200D01* X28874Y1200D01* X28847Y1202D01* X28832Y1204D01* Y1795D01* X28841Y1796D01* X28868Y1799D01* X28895Y1799D01* X28912Y1798D01* Y1201D01* G37* G36* Y1898D02*X28899Y1899D01* X28863Y1899D01* X28832Y1896D01* Y3101D01* X28850Y3100D01* X28886Y3100D01* X28912Y3103D01* Y1898D01* G37* G36* Y3204D02*X28908Y3203D01* X28881Y3200D01* X28854Y3200D01* X28832Y3202D01* Y3798D01* X28848Y3799D01* X28875Y3799D01* X28902Y3797D01* X28912Y3795D01* Y3204D01* G37* G36* Y3897D02*X28879Y3899D01* X28843Y3899D01* X28832Y3898D01* Y5100D01* X28866Y5100D01* X28902Y5104D01* X28912Y5106D01* Y3897D01* G37* G36* Y5207D02*X28888Y5203D01* X28861Y5200D01* X28834Y5200D01* X28832Y5200D01* Y5799D01* X28855Y5799D01* X28882Y5797D01* X28909Y5793D01* X28912Y5792D01* Y5207D01* G37* G36* Y5893D02*X28895Y5896D01* X28859Y5899D01* X28832Y5899D01* Y7100D01* X28846Y7100D01* X28882Y7104D01* X28912Y7110D01* Y5893D01* G37* G36* Y7213D02*X28894Y7208D01* X28868Y7203D01* X28841Y7200D01* X28832Y7200D01* Y7799D01* X28835D01* X28862Y7797D01* X28889Y7793D01* X28912Y7786D01* Y7213D01* G37* G36* Y7890D02*X28911Y7890D01* X28875Y7896D01* X28839Y7899D01* X28832Y7899D01* Y9101D01* X28862Y9104D01* X28898Y9111D01* X28912Y9115D01* Y7890D01* G37* G36* Y9220D02*X28900Y9215D01* X28874Y9208D01* X28848Y9203D01* X28832Y9201D01* Y9798D01* X28842Y9797D01* X28869Y9793D01* X28895Y9785D01* X28912Y9779D01* Y9220D01* G37* G36* Y9884D02*X28891Y9890D01* X28855Y9896D01* X28832Y9898D01* Y11103D01* X28842Y11104D01* X28878Y11111D01* X28912Y11121D01* X28912D01* Y9884D01* G37* G36* Y11229D02*X28906Y11225D01* X28880Y11215D01* X28854Y11208D01* X28832Y11204D01* Y11795D01* X28849Y11793D01* X28875Y11785D01* X28901Y11776D01* X28912Y11771D01* Y11229D01* G37* G36* Y11878D02*X28906Y11881D01* X28871Y11890D01* X28835Y11896D01* X28832Y11897D01* Y13106D01* X28858Y13111D01* X28892Y13121D01* X28912Y13128D01* Y11878D01* G37* G36* Y13238D02*X28910Y13237D01* X28886Y13225D01* X28860Y13215D01* X28834Y13208D01* X28832Y13207D01* Y13792D01* X28855Y13785D01* X28881Y13776D01* X28905Y13764D01* X28912Y13762D01* Y13238D01* G37* G36* Y13871D02*X28886Y13881D01* X28851Y13890D01* X28832Y13893D01* Y15110D01* X28838Y15111D01* X28872Y15121D01* X28906Y15134D01* X28912Y15137D01* Y13871D01* G37* G36* Y15243D02*X28906Y15243D01* X28898Y15241D01* X28890Y15237D01* X28866Y15225D01* X28840Y15215D01* X28832Y15213D01* Y15786D01* X28835Y15785D01* X28861Y15776D01* X28885Y15764D01* X28893Y15761D01* X28902Y15759D01* X28911Y15759D01* X28912Y15759D01* Y15243D01* G37* G36* Y15862D02*X28900Y15868D01* X28866Y15881D01* X28832Y15890D01* Y17115D01* X28852Y17121D01* X28886Y17134D01* X28912Y17147D01* Y15862D01* G37* G36* Y17240D02*X28912Y17240D01* X28904Y17243D01* X28895Y17243D01* X28886Y17243D01* X28878Y17241D01* X28870Y17237D01* X28846Y17225D01* X28832Y17220D01* Y17779D01* X28841Y17776D01* X28865Y17764D01* X28873Y17761D01* X28882Y17759D01* X28891Y17759D01* X28899Y17760D01* X28908Y17762D01* X28912Y17765D01* Y17240D01* G37* G36* Y17853D02*X28912Y17853D01* X28880Y17868D01* X28846Y17881D01* X28832Y17884D01* Y19121D01* X28866Y19134D01* X28898Y19150D01* X28906Y19155D01* X28912Y19161D01* X28912Y19161D01* Y17853D01* G37* G36* Y19225D02*X28907Y19231D01* X28900Y19236D01* X28892Y19240D01* X28884Y19243D01* X28875Y19243D01* X28866Y19243D01* X28858Y19241D01* X28850Y19237D01* X28832Y19229D01* Y19771D01* X28845Y19764D01* X28853Y19761D01* X28862Y19759D01* X28871Y19759D01* X28879Y19760D01* X28888Y19762D01* X28895Y19766D01* X28902Y19772D01* X28908Y19778D01* X28912Y19784D01* Y19225D01* G37* G36* Y19833D02*X28911Y19835D01* X28906Y19842D01* X28900Y19848D01* X28892Y19853D01* X28860Y19868D01* X28832Y19878D01* Y21128D01* X28846Y21134D01* X28878Y21150D01* X28886Y21155D01* X28892Y21161D01* X28897Y21168D01* X28901Y21175D01* X28903Y21184D01* X28904Y21193D01* X28904Y21201D01* X28901Y21210D01* X28898Y21218D01* X28893Y21225D01* X28887Y21231D01* X28880Y21236D01* X28872Y21240D01* X28864Y21243D01* X28855Y21243D01* X28846Y21243D01* X28838Y21241D01* X28832Y21238D01* Y21762D01* X28833Y21761D01* X28842Y21759D01* X28851Y21759D01* X28859Y21760D01* X28868Y21762D01* X28875Y21766D01* X28882Y21772D01* X28888Y21778D01* X28893Y21785D01* X28896Y21793D01* X28898Y21802D01* X28899Y21810D01* X28898Y21819D01* X28895Y21827D01* X28891Y21835D01* X28886Y21842D01* X28880Y21848D01* X28872Y21853D01* X28840Y21868D01* X28832Y21871D01* Y23137D01* X28858Y23150D01* X28866Y23155D01* X28872Y23161D01* X28877Y23168D01* X28881Y23175D01* X28883Y23184D01* X28884Y23193D01* X28884Y23201D01* X28881Y23210D01* X28878Y23218D01* X28873Y23225D01* X28867Y23231D01* X28860Y23236D01* X28852Y23240D01* X28844Y23243D01* X28835Y23243D01* X28832Y23243D01* Y23759D01* X28839Y23760D01* X28848Y23762D01* X28855Y23766D01* X28862Y23772D01* X28868Y23778D01* X28873Y23785D01* X28876Y23793D01* X28878Y23802D01* X28879Y23810D01* X28878Y23819D01* X28875Y23827D01* X28871Y23835D01* X28866Y23842D01* X28860Y23848D01* X28852Y23853D01* X28832Y23862D01* Y25147D01* X28838Y25150D01* X28846Y25155D01* X28852Y25161D01* X28857Y25168D01* X28861Y25175D01* X28863Y25184D01* X28864Y25193D01* X28864Y25201D01* X28861Y25210D01* X28858Y25218D01* X28853Y25225D01* X28847Y25231D01* X28840Y25236D01* X28832Y25240D01* Y25765D01* X28835Y25766D01* X28842Y25772D01* X28848Y25778D01* X28853Y25785D01* X28856Y25793D01* X28858Y25802D01* X28859Y25810D01* X28858Y25819D01* X28855Y25827D01* X28851Y25835D01* X28846Y25842D01* X28840Y25848D01* X28832Y25853D01* Y27161D01* X28837Y27168D01* X28841Y27175D01* X28843Y27184D01* X28844Y27193D01* X28844Y27201D01* X28841Y27210D01* X28838Y27218D01* X28833Y27225D01* X28832Y27225D01* Y27784D01* X28833Y27785D01* X28836Y27793D01* X28838Y27802D01* X28839Y27810D01* X28838Y27819D01* X28835Y27827D01* X28832Y27833D01* Y33307D01* X28836Y33302D01* X28843Y33296D01* X28850Y33291D01* X28858Y33288D01* X28867Y33286D01* X28875Y33285D01* X28884Y33286D01* X28892Y33289D01* X28900Y33293D01* X28907Y33298D01* X28912Y33304D01* Y31714D01* X28909Y31716D01* X28900Y31718D01* X28892Y31719D01* X28883Y31719D01* X28874Y31717D01* X28866Y31713D01* X28859Y31708D01* X28853Y31702D01* X28848Y31695D01* X28844Y31687D01* X28842Y31679D01* X28841Y31670D01* X28841Y31661D01* X28843Y31653D01* X28847Y31645D01* X28859Y31621D01* X28869Y31595D01* X28876Y31569D01* X28881Y31543D01* X28884Y31516D01* X28884Y31489D01* X28882Y31462D01* X28877Y31435D01* X28870Y31409D01* X28861Y31383D01* X28849Y31359D01* X28846Y31351D01* X28844Y31342D01* X28844Y31333D01* X28845Y31325D01* X28847Y31317D01* X28851Y31309D01* X28856Y31302D01* X28863Y31296D01* X28870Y31291D01* X28878Y31288D01* X28887Y31286D01* X28895Y31285D01* X28904Y31286D01* X28912Y31289D01* X28912Y31289D01* Y29719D01* X28912Y29719D01* X28903Y29719D01* X28894Y29717D01* X28886Y29713D01* X28879Y29708D01* X28873Y29702D01* X28868Y29695D01* X28864Y29687D01* X28862Y29679D01* X28861Y29670D01* X28861Y29661D01* X28863Y29653D01* X28867Y29645D01* X28879Y29621D01* X28889Y29595D01* X28896Y29569D01* X28901Y29543D01* X28904Y29516D01* X28904Y29489D01* X28902Y29462D01* X28897Y29435D01* X28890Y29409D01* X28881Y29383D01* X28869Y29359D01* X28866Y29351D01* X28864Y29342D01* X28864Y29333D01* X28865Y29325D01* X28867Y29317D01* X28871Y29309D01* X28876Y29302D01* X28883Y29296D01* X28890Y29291D01* X28898Y29288D01* X28907Y29286D01* X28912Y29286D01* Y27716D01* X28906Y27713D01* X28899Y27708D01* X28893Y27702D01* X28888Y27695D01* X28884Y27687D01* X28882Y27679D01* X28881Y27670D01* X28881Y27661D01* X28883Y27653D01* X28887Y27645D01* X28899Y27621D01* X28909Y27595D01* X28912Y27583D01* Y27416D01* X28910Y27409D01* X28901Y27383D01* X28889Y27359D01* X28886Y27351D01* X28884Y27342D01* X28884Y27333D01* X28885Y27325D01* X28887Y27317D01* X28891Y27309D01* X28896Y27302D01* X28903Y27296D01* X28910Y27291D01* X28912Y27290D01* Y25701D01* X28908Y25695D01* X28904Y25687D01* X28902Y25679D01* X28901Y25670D01* X28901Y25661D01* X28903Y25653D01* X28907Y25645D01* X28912Y25634D01* Y25365D01* X28909Y25359D01* X28906Y25351D01* X28904Y25342D01* X28904Y25333D01* X28905Y25325D01* X28907Y25317D01* X28911Y25309D01* X28912Y25307D01* Y19833D01* G37* G36* Y33696D02*X28910Y33701D01* X28904Y33707D01* X28896Y33712D01* X28889Y33716D01* X28880Y33718D01* X28872Y33719D01* X28863Y33719D01* X28854Y33717D01* X28846Y33713D01* X28839Y33708D01* X28833Y33702D01* X28832Y33701D01* Y35290D01* X28838Y35288D01* X28847Y35286D01* X28855Y35285D01* X28864Y35286D01* X28872Y35289D01* X28880Y35293D01* X28887Y35298D01* X28893Y35305D01* X28898Y35312D01* X28912Y35343D01* Y33696D01* G37* G36* Y35656D02*X28910Y35661D01* X28894Y35694D01* X28890Y35701D01* X28884Y35707D01* X28876Y35712D01* X28869Y35716D01* X28860Y35718D01* X28852Y35719D01* X28843Y35719D01* X28834Y35717D01* X28832Y35716D01* Y37286D01* X28835Y37285D01* X28844Y37286D01* X28852Y37289D01* X28860Y37293D01* X28867Y37298D01* X28873Y37305D01* X28878Y37312D01* X28893Y37344D01* X28906Y37378D01* X28912Y37404D01* Y35656D01* G37* G36* Y40000D02*X28992D01* Y29596D01* X28984Y29627D01* X28970Y29661D01* X28954Y29694D01* X28950Y29701D01* X28944Y29707D01* X28936Y29712D01* X28929Y29716D01* X28920Y29718D01* X28912Y29719D01* Y31289D01* X28920Y31293D01* X28927Y31298D01* X28933Y31305D01* X28938Y31312D01* X28953Y31344D01* X28966Y31378D01* X28975Y31413D01* X28981Y31449D01* X28984Y31485D01* X28984Y31521D01* X28980Y31557D01* X28974Y31593D01* X28964Y31627D01* X28950Y31661D01* X28934Y31694D01* X28930Y31701D01* X28924Y31707D01* X28916Y31712D01* X28912Y31714D01* Y33304D01* X28913Y33305D01* X28918Y33312D01* X28933Y33344D01* X28946Y33378D01* X28955Y33413D01* X28961Y33449D01* X28964Y33485D01* X28964Y33521D01* X28960Y33557D01* X28954Y33593D01* X28944Y33627D01* X28930Y33661D01* X28914Y33694D01* X28912Y33696D01* Y35343D01* X28913Y35344D01* X28926Y35378D01* X28935Y35413D01* X28941Y35449D01* X28944Y35485D01* X28944Y35521D01* X28940Y35557D01* X28934Y35593D01* X28924Y35627D01* X28912Y35656D01* Y37404D01* X28915Y37413D01* X28921Y37449D01* X28924Y37485D01* X28924Y37521D01* X28920Y37557D01* X28914Y37593D01* X28912Y37596D01* Y40000D01* G37* G36* X28992Y0D02*X28912D01* Y1101D01* X28942Y1104D01* X28978Y1111D01* X28992Y1115D01* Y0D01* G37* G36* Y1220D02*X28980Y1215D01* X28954Y1208D01* X28928Y1203D01* X28912Y1201D01* Y1798D01* X28922Y1797D01* X28949Y1793D01* X28975Y1785D01* X28992Y1779D01* Y1220D01* G37* G36* Y1884D02*X28971Y1890D01* X28935Y1896D01* X28912Y1898D01* Y3103D01* X28922Y3104D01* X28958Y3111D01* X28992Y3121D01* X28992D01* Y1884D01* G37* G36* Y3229D02*X28986Y3225D01* X28960Y3215D01* X28934Y3208D01* X28912Y3204D01* Y3795D01* X28929Y3793D01* X28955Y3785D01* X28981Y3776D01* X28992Y3771D01* Y3229D01* G37* G36* Y3878D02*X28986Y3881D01* X28951Y3890D01* X28915Y3896D01* X28912Y3897D01* Y5106D01* X28938Y5111D01* X28972Y5121D01* X28992Y5128D01* Y3878D01* G37* G36* Y5238D02*X28990Y5237D01* X28966Y5225D01* X28940Y5215D01* X28914Y5208D01* X28912Y5207D01* Y5792D01* X28935Y5785D01* X28961Y5776D01* X28985Y5764D01* X28992Y5762D01* Y5238D01* G37* G36* Y5871D02*X28966Y5881D01* X28931Y5890D01* X28912Y5893D01* Y7110D01* X28918Y7111D01* X28952Y7121D01* X28986Y7134D01* X28992Y7137D01* Y5871D01* G37* G36* Y7243D02*X28986Y7243D01* X28978Y7241D01* X28970Y7237D01* X28946Y7225D01* X28920Y7215D01* X28912Y7213D01* Y7786D01* X28915Y7785D01* X28941Y7776D01* X28965Y7764D01* X28973Y7761D01* X28982Y7759D01* X28991Y7759D01* X28992Y7759D01* Y7243D01* G37* G36* Y7862D02*X28980Y7868D01* X28946Y7881D01* X28912Y7890D01* Y9115D01* X28932Y9121D01* X28966Y9134D01* X28992Y9147D01* Y7862D01* G37* G36* Y9240D02*X28992Y9240D01* X28984Y9243D01* X28975Y9243D01* X28966Y9243D01* X28958Y9241D01* X28950Y9237D01* X28926Y9225D01* X28912Y9220D01* Y9779D01* X28921Y9776D01* X28945Y9764D01* X28953Y9761D01* X28962Y9759D01* X28971Y9759D01* X28979Y9760D01* X28988Y9762D01* X28992Y9765D01* Y9240D01* G37* G36* Y9853D02*X28992Y9853D01* X28960Y9868D01* X28926Y9881D01* X28912Y9884D01* Y11121D01* X28946Y11134D01* X28978Y11150D01* X28986Y11155D01* X28992Y11161D01* X28992Y11161D01* Y9853D01* G37* G36* Y11225D02*X28987Y11231D01* X28980Y11236D01* X28972Y11240D01* X28964Y11243D01* X28955Y11243D01* X28946Y11243D01* X28938Y11241D01* X28930Y11237D01* X28912Y11229D01* Y11771D01* X28925Y11764D01* X28933Y11761D01* X28942Y11759D01* X28951Y11759D01* X28959Y11760D01* X28968Y11762D01* X28975Y11766D01* X28982Y11772D01* X28988Y11778D01* X28992Y11784D01* Y11225D01* G37* G36* Y11833D02*X28991Y11835D01* X28986Y11842D01* X28980Y11848D01* X28972Y11853D01* X28940Y11868D01* X28912Y11878D01* Y13128D01* X28926Y13134D01* X28958Y13150D01* X28966Y13155D01* X28972Y13161D01* X28977Y13168D01* X28981Y13175D01* X28983Y13184D01* X28984Y13193D01* X28984Y13201D01* X28981Y13210D01* X28978Y13218D01* X28973Y13225D01* X28967Y13231D01* X28960Y13236D01* X28952Y13240D01* X28944Y13243D01* X28935Y13243D01* X28926Y13243D01* X28918Y13241D01* X28912Y13238D01* Y13762D01* X28913Y13761D01* X28922Y13759D01* X28931Y13759D01* X28939Y13760D01* X28948Y13762D01* X28955Y13766D01* X28962Y13772D01* X28968Y13778D01* X28973Y13785D01* X28976Y13793D01* X28978Y13802D01* X28979Y13810D01* X28978Y13819D01* X28975Y13827D01* X28971Y13835D01* X28966Y13842D01* X28960Y13848D01* X28952Y13853D01* X28920Y13868D01* X28912Y13871D01* Y15137D01* X28938Y15150D01* X28946Y15155D01* X28952Y15161D01* X28957Y15168D01* X28961Y15175D01* X28963Y15184D01* X28964Y15193D01* X28964Y15201D01* X28961Y15210D01* X28958Y15218D01* X28953Y15225D01* X28947Y15231D01* X28940Y15236D01* X28932Y15240D01* X28924Y15243D01* X28915Y15243D01* X28912Y15243D01* Y15759D01* X28919Y15760D01* X28928Y15762D01* X28935Y15766D01* X28942Y15772D01* X28948Y15778D01* X28953Y15785D01* X28956Y15793D01* X28958Y15802D01* X28959Y15810D01* X28958Y15819D01* X28955Y15827D01* X28951Y15835D01* X28946Y15842D01* X28940Y15848D01* X28932Y15853D01* X28912Y15862D01* Y17147D01* X28918Y17150D01* X28926Y17155D01* X28932Y17161D01* X28937Y17168D01* X28941Y17175D01* X28943Y17184D01* X28944Y17193D01* X28944Y17201D01* X28941Y17210D01* X28938Y17218D01* X28933Y17225D01* X28927Y17231D01* X28920Y17236D01* X28912Y17240D01* Y17765D01* X28915Y17766D01* X28922Y17772D01* X28928Y17778D01* X28933Y17785D01* X28936Y17793D01* X28938Y17802D01* X28939Y17810D01* X28938Y17819D01* X28935Y17827D01* X28931Y17835D01* X28926Y17842D01* X28920Y17848D01* X28912Y17853D01* Y19161D01* X28917Y19168D01* X28921Y19175D01* X28923Y19184D01* X28924Y19193D01* X28924Y19201D01* X28921Y19210D01* X28918Y19218D01* X28913Y19225D01* X28912Y19225D01* Y19784D01* X28913Y19785D01* X28916Y19793D01* X28918Y19802D01* X28919Y19810D01* X28918Y19819D01* X28915Y19827D01* X28912Y19833D01* Y25307D01* X28916Y25302D01* X28923Y25296D01* X28930Y25291D01* X28938Y25288D01* X28947Y25286D01* X28955Y25285D01* X28964Y25286D01* X28972Y25289D01* X28980Y25293D01* X28987Y25298D01* X28992Y25304D01* Y23714D01* X28989Y23716D01* X28980Y23718D01* X28972Y23719D01* X28963Y23719D01* X28954Y23717D01* X28946Y23713D01* X28939Y23708D01* X28933Y23702D01* X28928Y23695D01* X28924Y23687D01* X28922Y23679D01* X28921Y23670D01* X28921Y23661D01* X28923Y23653D01* X28927Y23645D01* X28939Y23621D01* X28949Y23595D01* X28956Y23569D01* X28961Y23543D01* X28964Y23516D01* X28964Y23489D01* X28962Y23462D01* X28957Y23435D01* X28950Y23409D01* X28941Y23383D01* X28929Y23359D01* X28926Y23351D01* X28924Y23342D01* X28924Y23333D01* X28925Y23325D01* X28927Y23317D01* X28931Y23309D01* X28936Y23302D01* X28943Y23296D01* X28950Y23291D01* X28958Y23288D01* X28967Y23286D01* X28975Y23285D01* X28984Y23286D01* X28992Y23289D01* X28992Y23289D01* Y21719D01* X28992Y21719D01* X28983Y21719D01* X28974Y21717D01* X28966Y21713D01* X28959Y21708D01* X28953Y21702D01* X28948Y21695D01* X28944Y21687D01* X28942Y21679D01* X28941Y21670D01* X28941Y21661D01* X28943Y21653D01* X28947Y21645D01* X28959Y21621D01* X28969Y21595D01* X28976Y21569D01* X28981Y21543D01* X28984Y21516D01* X28984Y21489D01* X28982Y21462D01* X28977Y21435D01* X28970Y21409D01* X28961Y21383D01* X28949Y21359D01* X28946Y21351D01* X28944Y21342D01* X28944Y21333D01* X28945Y21325D01* X28947Y21317D01* X28951Y21309D01* X28956Y21302D01* X28963Y21296D01* X28970Y21291D01* X28978Y21288D01* X28987Y21286D01* X28992Y21286D01* Y19716D01* X28986Y19713D01* X28979Y19708D01* X28973Y19702D01* X28968Y19695D01* X28964Y19687D01* X28962Y19679D01* X28961Y19670D01* X28961Y19661D01* X28963Y19653D01* X28967Y19645D01* X28979Y19621D01* X28989Y19595D01* X28992Y19583D01* Y19416D01* X28990Y19409D01* X28981Y19383D01* X28969Y19359D01* X28966Y19351D01* X28964Y19342D01* X28964Y19333D01* X28965Y19325D01* X28967Y19317D01* X28971Y19309D01* X28976Y19302D01* X28983Y19296D01* X28990Y19291D01* X28992Y19290D01* Y17701D01* X28988Y17695D01* X28984Y17687D01* X28982Y17679D01* X28981Y17670D01* X28981Y17661D01* X28983Y17653D01* X28987Y17645D01* X28992Y17634D01* Y17365D01* X28989Y17359D01* X28986Y17351D01* X28984Y17342D01* X28984Y17333D01* X28985Y17325D01* X28987Y17317D01* X28991Y17309D01* X28992Y17307D01* Y11833D01* G37* G36* Y25696D02*X28990Y25701D01* X28984Y25707D01* X28976Y25712D01* X28969Y25716D01* X28960Y25718D01* X28952Y25719D01* X28943Y25719D01* X28934Y25717D01* X28926Y25713D01* X28919Y25708D01* X28913Y25702D01* X28912Y25701D01* Y27290D01* X28918Y27288D01* X28927Y27286D01* X28935Y27285D01* X28944Y27286D01* X28952Y27289D01* X28960Y27293D01* X28967Y27298D01* X28973Y27305D01* X28978Y27312D01* X28992Y27343D01* Y25696D01* G37* G36* Y27656D02*X28990Y27661D01* X28974Y27694D01* X28970Y27701D01* X28964Y27707D01* X28956Y27712D01* X28949Y27716D01* X28940Y27718D01* X28932Y27719D01* X28923Y27719D01* X28914Y27717D01* X28912Y27716D01* Y29286D01* X28915Y29285D01* X28924Y29286D01* X28932Y29289D01* X28940Y29293D01* X28947Y29298D01* X28953Y29305D01* X28958Y29312D01* X28973Y29344D01* X28986Y29378D01* X28992Y29404D01* Y27656D01* G37* G36* Y40000D02*X29072D01* Y21596D01* X29064Y21627D01* X29050Y21661D01* X29034Y21694D01* X29030Y21701D01* X29024Y21707D01* X29016Y21712D01* X29009Y21716D01* X29000Y21718D01* X28992Y21719D01* Y23289D01* X29000Y23293D01* X29007Y23298D01* X29013Y23305D01* X29018Y23312D01* X29033Y23344D01* X29046Y23378D01* X29055Y23413D01* X29061Y23449D01* X29064Y23485D01* X29064Y23521D01* X29060Y23557D01* X29054Y23593D01* X29044Y23627D01* X29030Y23661D01* X29014Y23694D01* X29010Y23701D01* X29004Y23707D01* X28996Y23712D01* X28992Y23714D01* Y25304D01* X28993Y25305D01* X28998Y25312D01* X29013Y25344D01* X29026Y25378D01* X29035Y25413D01* X29041Y25449D01* X29044Y25485D01* X29044Y25521D01* X29040Y25557D01* X29034Y25593D01* X29024Y25627D01* X29010Y25661D01* X28994Y25694D01* X28992Y25696D01* Y27343D01* X28993Y27344D01* X29006Y27378D01* X29015Y27413D01* X29021Y27449D01* X29024Y27485D01* X29024Y27521D01* X29020Y27557D01* X29014Y27593D01* X29004Y27627D01* X28992Y27656D01* Y29404D01* X28995Y29413D01* X29001Y29449D01* X29004Y29485D01* X29004Y29521D01* X29000Y29557D01* X28994Y29593D01* X28992Y29596D01* Y40000D01* G37* G36* X29072Y0D02*X28992D01* Y1115D01* X29012Y1121D01* X29046Y1134D01* X29072Y1147D01* Y0D01* G37* G36* Y1240D02*X29072Y1240D01* X29064Y1243D01* X29055Y1243D01* X29046Y1243D01* X29038Y1241D01* X29030Y1237D01* X29006Y1225D01* X28992Y1220D01* Y1779D01* X29001Y1776D01* X29025Y1764D01* X29033Y1761D01* X29042Y1759D01* X29051Y1759D01* X29059Y1760D01* X29068Y1762D01* X29072Y1765D01* Y1240D01* G37* G36* Y1853D02*X29072Y1853D01* X29040Y1868D01* X29006Y1881D01* X28992Y1884D01* Y3121D01* X29026Y3134D01* X29058Y3150D01* X29066Y3155D01* X29072Y3161D01* X29072Y3161D01* Y1853D01* G37* G36* Y3225D02*X29067Y3231D01* X29060Y3236D01* X29052Y3240D01* X29044Y3243D01* X29035Y3243D01* X29026Y3243D01* X29018Y3241D01* X29010Y3237D01* X28992Y3229D01* Y3771D01* X29005Y3764D01* X29013Y3761D01* X29022Y3759D01* X29031Y3759D01* X29039Y3760D01* X29048Y3762D01* X29055Y3766D01* X29062Y3772D01* X29068Y3778D01* X29072Y3784D01* Y3225D01* G37* G36* Y3833D02*X29071Y3835D01* X29066Y3842D01* X29060Y3848D01* X29052Y3853D01* X29020Y3868D01* X28992Y3878D01* Y5128D01* X29006Y5134D01* X29038Y5150D01* X29046Y5155D01* X29052Y5161D01* X29057Y5168D01* X29061Y5175D01* X29063Y5184D01* X29064Y5193D01* X29064Y5201D01* X29061Y5210D01* X29058Y5218D01* X29053Y5225D01* X29047Y5231D01* X29040Y5236D01* X29032Y5240D01* X29024Y5243D01* X29015Y5243D01* X29006Y5243D01* X28998Y5241D01* X28992Y5238D01* Y5762D01* X28993Y5761D01* X29002Y5759D01* X29011Y5759D01* X29019Y5760D01* X29028Y5762D01* X29035Y5766D01* X29042Y5772D01* X29048Y5778D01* X29053Y5785D01* X29056Y5793D01* X29058Y5802D01* X29059Y5810D01* X29058Y5819D01* X29055Y5827D01* X29051Y5835D01* X29046Y5842D01* X29040Y5848D01* X29032Y5853D01* X29000Y5868D01* X28992Y5871D01* Y7137D01* X29018Y7150D01* X29026Y7155D01* X29032Y7161D01* X29037Y7168D01* X29041Y7175D01* X29043Y7184D01* X29044Y7193D01* X29044Y7201D01* X29041Y7210D01* X29038Y7218D01* X29033Y7225D01* X29027Y7231D01* X29020Y7236D01* X29012Y7240D01* X29004Y7243D01* X28995Y7243D01* X28992Y7243D01* Y7759D01* X28999Y7760D01* X29008Y7762D01* X29015Y7766D01* X29022Y7772D01* X29028Y7778D01* X29033Y7785D01* X29036Y7793D01* X29038Y7802D01* X29039Y7810D01* X29038Y7819D01* X29035Y7827D01* X29031Y7835D01* X29026Y7842D01* X29020Y7848D01* X29012Y7853D01* X28992Y7862D01* Y9147D01* X28998Y9150D01* X29006Y9155D01* X29012Y9161D01* X29017Y9168D01* X29021Y9175D01* X29023Y9184D01* X29024Y9193D01* X29024Y9201D01* X29021Y9210D01* X29018Y9218D01* X29013Y9225D01* X29007Y9231D01* X29000Y9236D01* X28992Y9240D01* Y9765D01* X28995Y9766D01* X29002Y9772D01* X29008Y9778D01* X29013Y9785D01* X29016Y9793D01* X29018Y9802D01* X29019Y9810D01* X29018Y9819D01* X29015Y9827D01* X29011Y9835D01* X29006Y9842D01* X29000Y9848D01* X28992Y9853D01* Y11161D01* X28997Y11168D01* X29001Y11175D01* X29003Y11184D01* X29004Y11193D01* X29004Y11201D01* X29001Y11210D01* X28998Y11218D01* X28993Y11225D01* X28992Y11225D01* Y11784D01* X28993Y11785D01* X28996Y11793D01* X28998Y11802D01* X28999Y11810D01* X28998Y11819D01* X28995Y11827D01* X28992Y11833D01* Y17307D01* X28996Y17302D01* X29003Y17296D01* X29010Y17291D01* X29018Y17288D01* X29027Y17286D01* X29035Y17285D01* X29044Y17286D01* X29052Y17289D01* X29060Y17293D01* X29067Y17298D01* X29072Y17304D01* Y15714D01* X29069Y15716D01* X29060Y15718D01* X29052Y15719D01* X29043Y15719D01* X29034Y15717D01* X29026Y15713D01* X29019Y15708D01* X29013Y15702D01* X29008Y15695D01* X29004Y15687D01* X29002Y15679D01* X29001Y15670D01* X29001Y15661D01* X29003Y15653D01* X29007Y15645D01* X29019Y15621D01* X29029Y15595D01* X29036Y15569D01* X29041Y15543D01* X29044Y15516D01* X29044Y15489D01* X29042Y15462D01* X29037Y15435D01* X29030Y15409D01* X29021Y15383D01* X29009Y15359D01* X29006Y15351D01* X29004Y15342D01* X29004Y15333D01* X29005Y15325D01* X29007Y15317D01* X29011Y15309D01* X29016Y15302D01* X29023Y15296D01* X29030Y15291D01* X29038Y15288D01* X29047Y15286D01* X29055Y15285D01* X29064Y15286D01* X29072Y15289D01* X29072Y15289D01* Y13719D01* X29072Y13719D01* X29063Y13719D01* X29054Y13717D01* X29046Y13713D01* X29039Y13708D01* X29033Y13702D01* X29028Y13695D01* X29024Y13687D01* X29022Y13679D01* X29021Y13670D01* X29021Y13661D01* X29023Y13653D01* X29027Y13645D01* X29039Y13621D01* X29049Y13595D01* X29056Y13569D01* X29061Y13543D01* X29064Y13516D01* X29064Y13489D01* X29062Y13462D01* X29057Y13435D01* X29050Y13409D01* X29041Y13383D01* X29029Y13359D01* X29026Y13351D01* X29024Y13342D01* X29024Y13333D01* X29025Y13325D01* X29027Y13317D01* X29031Y13309D01* X29036Y13302D01* X29043Y13296D01* X29050Y13291D01* X29058Y13288D01* X29067Y13286D01* X29072Y13286D01* Y11716D01* X29066Y11713D01* X29059Y11708D01* X29053Y11702D01* X29048Y11695D01* X29044Y11687D01* X29042Y11679D01* X29041Y11670D01* X29041Y11661D01* X29043Y11653D01* X29047Y11645D01* X29059Y11621D01* X29069Y11595D01* X29072Y11583D01* Y11416D01* X29070Y11409D01* X29061Y11383D01* X29049Y11359D01* X29046Y11351D01* X29044Y11342D01* X29044Y11333D01* X29045Y11325D01* X29047Y11317D01* X29051Y11309D01* X29056Y11302D01* X29063Y11296D01* X29070Y11291D01* X29072Y11290D01* Y9701D01* X29068Y9695D01* X29064Y9687D01* X29062Y9679D01* X29061Y9670D01* X29061Y9661D01* X29063Y9653D01* X29067Y9645D01* X29072Y9634D01* Y9365D01* X29069Y9359D01* X29066Y9351D01* X29064Y9342D01* X29064Y9333D01* X29065Y9325D01* X29067Y9317D01* X29071Y9309D01* X29072Y9307D01* Y3833D01* G37* G36* Y17696D02*X29070Y17701D01* X29064Y17707D01* X29056Y17712D01* X29049Y17716D01* X29040Y17718D01* X29032Y17719D01* X29023Y17719D01* X29014Y17717D01* X29006Y17713D01* X28999Y17708D01* X28993Y17702D01* X28992Y17701D01* Y19290D01* X28998Y19288D01* X29007Y19286D01* X29015Y19285D01* X29024Y19286D01* X29032Y19289D01* X29040Y19293D01* X29047Y19298D01* X29053Y19305D01* X29058Y19312D01* X29072Y19343D01* Y17696D01* G37* G36* Y19656D02*X29070Y19661D01* X29054Y19694D01* X29050Y19701D01* X29044Y19707D01* X29036Y19712D01* X29029Y19716D01* X29020Y19718D01* X29012Y19719D01* X29003Y19719D01* X28994Y19717D01* X28992Y19716D01* Y21286D01* X28995Y21285D01* X29004Y21286D01* X29012Y21289D01* X29020Y21293D01* X29027Y21298D01* X29033Y21305D01* X29038Y21312D01* X29053Y21344D01* X29066Y21378D01* X29072Y21404D01* Y19656D01* G37* G36* Y40000D02*X29152D01* Y13596D01* X29144Y13627D01* X29130Y13661D01* X29114Y13694D01* X29110Y13701D01* X29104Y13707D01* X29096Y13712D01* X29089Y13716D01* X29080Y13718D01* X29072Y13719D01* Y15289D01* X29080Y15293D01* X29087Y15298D01* X29093Y15305D01* X29098Y15312D01* X29113Y15344D01* X29126Y15378D01* X29135Y15413D01* X29141Y15449D01* X29144Y15485D01* X29144Y15521D01* X29140Y15557D01* X29134Y15593D01* X29124Y15627D01* X29110Y15661D01* X29094Y15694D01* X29090Y15701D01* X29084Y15707D01* X29076Y15712D01* X29072Y15714D01* Y17304D01* X29073Y17305D01* X29078Y17312D01* X29093Y17344D01* X29106Y17378D01* X29115Y17413D01* X29121Y17449D01* X29124Y17485D01* X29124Y17521D01* X29120Y17557D01* X29114Y17593D01* X29104Y17627D01* X29090Y17661D01* X29074Y17694D01* X29072Y17696D01* Y19343D01* X29073Y19344D01* X29086Y19378D01* X29095Y19413D01* X29101Y19449D01* X29104Y19485D01* X29104Y19521D01* X29100Y19557D01* X29094Y19593D01* X29084Y19627D01* X29072Y19656D01* Y21404D01* X29075Y21413D01* X29081Y21449D01* X29084Y21485D01* X29084Y21521D01* X29080Y21557D01* X29074Y21593D01* X29072Y21596D01* Y40000D01* G37* G36* X29152Y0D02*X29072D01* Y1147D01* X29078Y1150D01* X29086Y1155D01* X29092Y1161D01* X29097Y1168D01* X29101Y1175D01* X29103Y1184D01* X29104Y1193D01* X29104Y1201D01* X29101Y1210D01* X29098Y1218D01* X29093Y1225D01* X29087Y1231D01* X29080Y1236D01* X29072Y1240D01* Y1765D01* X29075Y1766D01* X29082Y1772D01* X29088Y1778D01* X29093Y1785D01* X29096Y1793D01* X29098Y1802D01* X29099Y1810D01* X29098Y1819D01* X29095Y1827D01* X29091Y1835D01* X29086Y1842D01* X29080Y1848D01* X29072Y1853D01* Y3161D01* X29077Y3168D01* X29081Y3175D01* X29083Y3184D01* X29084Y3193D01* X29084Y3201D01* X29081Y3210D01* X29078Y3218D01* X29073Y3225D01* X29072Y3225D01* Y3784D01* X29073Y3785D01* X29076Y3793D01* X29078Y3802D01* X29079Y3810D01* X29078Y3819D01* X29075Y3827D01* X29072Y3833D01* Y9307D01* X29076Y9302D01* X29083Y9296D01* X29090Y9291D01* X29098Y9288D01* X29107Y9286D01* X29115Y9285D01* X29124Y9286D01* X29132Y9289D01* X29140Y9293D01* X29147Y9298D01* X29152Y9304D01* Y7714D01* X29149Y7716D01* X29140Y7718D01* X29132Y7719D01* X29123Y7719D01* X29114Y7717D01* X29106Y7713D01* X29099Y7708D01* X29093Y7702D01* X29088Y7695D01* X29084Y7687D01* X29082Y7679D01* X29081Y7670D01* X29081Y7661D01* X29083Y7653D01* X29087Y7645D01* X29099Y7621D01* X29109Y7595D01* X29116Y7569D01* X29121Y7543D01* X29124Y7516D01* X29124Y7489D01* X29122Y7462D01* X29117Y7435D01* X29110Y7409D01* X29101Y7383D01* X29089Y7359D01* X29086Y7351D01* X29084Y7342D01* X29084Y7333D01* X29085Y7325D01* X29087Y7317D01* X29091Y7309D01* X29096Y7302D01* X29103Y7296D01* X29110Y7291D01* X29118Y7288D01* X29127Y7286D01* X29135Y7285D01* X29144Y7286D01* X29152Y7289D01* X29152Y7289D01* Y5719D01* X29152Y5719D01* X29143Y5719D01* X29134Y5717D01* X29126Y5713D01* X29119Y5708D01* X29113Y5702D01* X29108Y5695D01* X29104Y5687D01* X29102Y5679D01* X29101Y5670D01* X29101Y5661D01* X29103Y5653D01* X29107Y5645D01* X29119Y5621D01* X29129Y5595D01* X29136Y5569D01* X29141Y5543D01* X29144Y5516D01* X29144Y5489D01* X29142Y5462D01* X29137Y5435D01* X29130Y5409D01* X29121Y5383D01* X29109Y5359D01* X29106Y5351D01* X29104Y5342D01* X29104Y5333D01* X29105Y5325D01* X29107Y5317D01* X29111Y5309D01* X29116Y5302D01* X29123Y5296D01* X29130Y5291D01* X29138Y5288D01* X29147Y5286D01* X29152Y5286D01* Y3716D01* X29146Y3713D01* X29139Y3708D01* X29133Y3702D01* X29128Y3695D01* X29124Y3687D01* X29122Y3679D01* X29121Y3670D01* X29121Y3661D01* X29123Y3653D01* X29127Y3645D01* X29139Y3621D01* X29149Y3595D01* X29152Y3583D01* Y3416D01* X29150Y3409D01* X29141Y3383D01* X29129Y3359D01* X29126Y3351D01* X29124Y3342D01* X29124Y3333D01* X29125Y3325D01* X29127Y3317D01* X29131Y3309D01* X29136Y3302D01* X29143Y3296D01* X29150Y3291D01* X29152Y3290D01* Y1701D01* X29148Y1695D01* X29144Y1687D01* X29142Y1679D01* X29141Y1670D01* X29141Y1661D01* X29143Y1653D01* X29147Y1645D01* X29152Y1634D01* Y1365D01* X29149Y1359D01* X29146Y1351D01* X29144Y1342D01* X29144Y1333D01* X29145Y1325D01* X29147Y1317D01* X29151Y1309D01* X29152Y1307D01* Y0D01* G37* G36* Y9696D02*X29150Y9701D01* X29144Y9707D01* X29136Y9712D01* X29129Y9716D01* X29120Y9718D01* X29112Y9719D01* X29103Y9719D01* X29094Y9717D01* X29086Y9713D01* X29079Y9708D01* X29073Y9702D01* X29072Y9701D01* Y11290D01* X29078Y11288D01* X29087Y11286D01* X29095Y11285D01* X29104Y11286D01* X29112Y11289D01* X29120Y11293D01* X29127Y11298D01* X29133Y11305D01* X29138Y11312D01* X29152Y11343D01* Y9696D01* G37* G36* Y11656D02*X29150Y11661D01* X29134Y11694D01* X29130Y11701D01* X29124Y11707D01* X29116Y11712D01* X29109Y11716D01* X29100Y11718D01* X29092Y11719D01* X29083Y11719D01* X29074Y11717D01* X29072Y11716D01* Y13286D01* X29075Y13285D01* X29084Y13286D01* X29092Y13289D01* X29100Y13293D01* X29107Y13298D01* X29113Y13305D01* X29118Y13312D01* X29133Y13344D01* X29146Y13378D01* X29152Y13404D01* Y11656D01* G37* G36* Y40000D02*X30177D01* Y39710D01* X30169Y39706D01* X30162Y39701D01* X30156Y39695D01* X30151Y39687D01* X30136Y39655D01* X30123Y39621D01* X30114Y39586D01* X30108Y39550D01* X30105Y39514D01* X30105Y39478D01* X30109Y39442D01* X30115Y39407D01* X30125Y39372D01* X30139Y39338D01* X30155Y39306D01* X30159Y39299D01* X30165Y39292D01* X30173Y39287D01* X30177Y39285D01* Y37695D01* X30176Y37695D01* X30171Y37687D01* X30156Y37655D01* X30143Y37621D01* X30134Y37586D01* X30128Y37550D01* X30125Y37514D01* X30125Y37478D01* X30129Y37442D01* X30135Y37407D01* X30145Y37372D01* X30159Y37338D01* X30175Y37306D01* X30177Y37303D01* Y35656D01* X30176Y35655D01* X30163Y35621D01* X30154Y35586D01* X30148Y35550D01* X30145Y35514D01* X30145Y35478D01* X30149Y35442D01* X30155Y35407D01* X30165Y35372D01* X30177Y35343D01* Y33596D01* X30174Y33586D01* X30168Y33550D01* X30165Y33514D01* X30165Y33478D01* X30169Y33442D01* X30175Y33407D01* X30177Y33403D01* Y0D01* X29152D01* Y1307D01* X29156Y1302D01* X29163Y1296D01* X29170Y1291D01* X29178Y1288D01* X29187Y1286D01* X29195Y1285D01* X29204Y1286D01* X29212Y1289D01* X29220Y1293D01* X29227Y1298D01* X29233Y1305D01* X29238Y1312D01* X29253Y1344D01* X29266Y1378D01* X29275Y1413D01* X29281Y1449D01* X29284Y1485D01* X29284Y1521D01* X29280Y1557D01* X29274Y1593D01* X29264Y1627D01* X29250Y1661D01* X29234Y1694D01* X29230Y1701D01* X29224Y1707D01* X29216Y1712D01* X29209Y1716D01* X29200Y1718D01* X29192Y1719D01* X29183Y1719D01* X29174Y1717D01* X29166Y1713D01* X29159Y1708D01* X29153Y1702D01* X29152Y1701D01* Y3290D01* X29158Y3288D01* X29167Y3286D01* X29175Y3285D01* X29184Y3286D01* X29192Y3289D01* X29200Y3293D01* X29207Y3298D01* X29213Y3305D01* X29218Y3312D01* X29233Y3344D01* X29246Y3378D01* X29255Y3413D01* X29261Y3449D01* X29264Y3485D01* X29264Y3521D01* X29260Y3557D01* X29254Y3593D01* X29244Y3627D01* X29230Y3661D01* X29214Y3694D01* X29210Y3701D01* X29204Y3707D01* X29196Y3712D01* X29189Y3716D01* X29180Y3718D01* X29172Y3719D01* X29163Y3719D01* X29154Y3717D01* X29152Y3716D01* Y5286D01* X29155Y5285D01* X29164Y5286D01* X29172Y5289D01* X29180Y5293D01* X29187Y5298D01* X29193Y5305D01* X29198Y5312D01* X29213Y5344D01* X29226Y5378D01* X29235Y5413D01* X29241Y5449D01* X29244Y5485D01* X29244Y5521D01* X29240Y5557D01* X29234Y5593D01* X29224Y5627D01* X29210Y5661D01* X29194Y5694D01* X29190Y5701D01* X29184Y5707D01* X29176Y5712D01* X29169Y5716D01* X29160Y5718D01* X29152Y5719D01* Y7289D01* X29160Y7293D01* X29167Y7298D01* X29173Y7305D01* X29178Y7312D01* X29193Y7344D01* X29206Y7378D01* X29215Y7413D01* X29221Y7449D01* X29224Y7485D01* X29224Y7521D01* X29220Y7557D01* X29214Y7593D01* X29204Y7627D01* X29190Y7661D01* X29174Y7694D01* X29170Y7701D01* X29164Y7707D01* X29156Y7712D01* X29152Y7714D01* Y9304D01* X29153Y9305D01* X29158Y9312D01* X29173Y9344D01* X29186Y9378D01* X29195Y9413D01* X29201Y9449D01* X29204Y9485D01* X29204Y9521D01* X29200Y9557D01* X29194Y9593D01* X29184Y9627D01* X29170Y9661D01* X29154Y9694D01* X29152Y9696D01* Y11343D01* X29153Y11344D01* X29166Y11378D01* X29175Y11413D01* X29181Y11449D01* X29184Y11485D01* X29184Y11521D01* X29180Y11557D01* X29174Y11593D01* X29164Y11627D01* X29152Y11656D01* Y13404D01* X29155Y13413D01* X29161Y13449D01* X29164Y13485D01* X29164Y13521D01* X29160Y13557D01* X29154Y13593D01* X29152Y13596D01* Y40000D01* G37* G36* Y3583D02*X29156Y3569D01* X29161Y3543D01* X29164Y3516D01* X29164Y3489D01* X29162Y3462D01* X29157Y3435D01* X29152Y3416D01* Y3583D01* G37* G36* Y1634D02*X29159Y1621D01* X29169Y1595D01* X29176Y1569D01* X29181Y1543D01* X29184Y1516D01* X29184Y1489D01* X29182Y1462D01* X29177Y1435D01* X29170Y1409D01* X29161Y1383D01* X29152Y1365D01* Y1634D01* G37* G36* X29072Y11583D02*X29076Y11569D01* X29081Y11543D01* X29084Y11516D01* X29084Y11489D01* X29082Y11462D01* X29077Y11435D01* X29072Y11416D01* Y11583D01* G37* G36* Y9634D02*X29079Y9621D01* X29089Y9595D01* X29096Y9569D01* X29101Y9543D01* X29104Y9516D01* X29104Y9489D01* X29102Y9462D01* X29097Y9435D01* X29090Y9409D01* X29081Y9383D01* X29072Y9365D01* Y9634D01* G37* G36* X30177Y40000D02*X30257D01* Y37692D01* X30253Y37697D01* X30246Y37703D01* X30239Y37708D01* X30231Y37711D01* X30222Y37713D01* X30214Y37714D01* X30205Y37713D01* X30197Y37710D01* X30189Y37706D01* X30182Y37701D01* X30177Y37695D01* Y39285D01* X30180Y39283D01* X30189Y39281D01* X30197Y39280D01* X30206Y39281D01* X30215Y39283D01* X30223Y39286D01* X30230Y39291D01* X30236Y39297D01* X30241Y39304D01* X30245Y39312D01* X30247Y39320D01* X30248Y39329D01* X30248Y39338D01* X30246Y39346D01* X30242Y39354D01* X30230Y39378D01* X30220Y39404D01* X30213Y39430D01* X30208Y39456D01* X30205Y39483D01* X30205Y39511D01* X30207Y39538D01* X30212Y39564D01* X30219Y39590D01* X30228Y39616D01* X30240Y39640D01* X30243Y39649D01* X30245Y39657D01* X30245Y39666D01* X30244Y39674D01* X30242Y39683D01* X30238Y39690D01* X30233Y39697D01* X30226Y39703D01* X30219Y39708D01* X30211Y39711D01* X30202Y39713D01* X30194Y39714D01* X30185Y39713D01* X30177Y39710D01* X30177Y39710D01* Y40000D01* G37* G36* X30257Y0D02*X30177D01* Y33403D01* X30185Y33372D01* X30199Y33338D01* X30215Y33306D01* X30219Y33299D01* X30225Y33292D01* X30233Y33287D01* X30240Y33283D01* X30249Y33281D01* X30257Y33280D01* Y31710D01* X30249Y31706D01* X30242Y31701D01* X30236Y31695D01* X30231Y31687D01* X30216Y31655D01* X30203Y31621D01* X30194Y31586D01* X30188Y31550D01* X30185Y31514D01* X30185Y31478D01* X30189Y31442D01* X30195Y31407D01* X30205Y31372D01* X30219Y31338D01* X30235Y31306D01* X30239Y31299D01* X30245Y31292D01* X30253Y31287D01* X30257Y31285D01* Y29695D01* X30256Y29695D01* X30251Y29687D01* X30236Y29655D01* X30223Y29621D01* X30214Y29586D01* X30208Y29550D01* X30205Y29514D01* X30205Y29478D01* X30209Y29442D01* X30215Y29407D01* X30225Y29372D01* X30239Y29338D01* X30255Y29306D01* X30257Y29303D01* Y27656D01* X30256Y27655D01* X30243Y27621D01* X30234Y27586D01* X30228Y27550D01* X30225Y27514D01* X30225Y27478D01* X30229Y27442D01* X30235Y27407D01* X30245Y27372D01* X30257Y27343D01* Y25596D01* X30254Y25586D01* X30248Y25550D01* X30245Y25514D01* X30245Y25478D01* X30249Y25442D01* X30255Y25407D01* X30257Y25403D01* Y0D01* G37* G36* Y33714D02*X30254Y33714D01* X30245Y33713D01* X30237Y33710D01* X30229Y33706D01* X30222Y33701D01* X30216Y33695D01* X30211Y33687D01* X30196Y33655D01* X30183Y33621D01* X30177Y33596D01* Y35343D01* X30179Y35338D01* X30195Y35306D01* X30199Y35299D01* X30205Y35292D01* X30213Y35287D01* X30220Y35283D01* X30229Y35281D01* X30237Y35280D01* X30246Y35281D01* X30255Y35283D01* X30257Y35284D01* Y33714D01* G37* G36* Y35417D02*X30253Y35430D01* X30248Y35456D01* X30245Y35483D01* X30245Y35511D01* X30247Y35538D01* X30252Y35564D01* X30257Y35583D01* Y35417D01* G37* G36* Y35709D02*X30251Y35711D01* X30242Y35713D01* X30234Y35714D01* X30225Y35713D01* X30217Y35710D01* X30209Y35706D01* X30202Y35701D01* X30196Y35695D01* X30191Y35687D01* X30177Y35656D01* Y37303D01* X30179Y37299D01* X30185Y37292D01* X30193Y37287D01* X30200Y37283D01* X30209Y37281D01* X30217Y37280D01* X30226Y37281D01* X30235Y37283D01* X30243Y37286D01* X30250Y37291D01* X30256Y37297D01* X30257Y37298D01* Y35709D01* G37* G36* Y37365D02*X30250Y37378D01* X30240Y37404D01* X30233Y37430D01* X30228Y37456D01* X30225Y37483D01* X30225Y37511D01* X30227Y37538D01* X30232Y37564D01* X30239Y37590D01* X30248Y37616D01* X30257Y37634D01* Y37365D01* G37* G36* Y40000D02*X30337D01* Y39862D01* X30311Y39849D01* X30303Y39845D01* X30297Y39839D01* X30292Y39832D01* X30288Y39824D01* X30286Y39815D01* X30285Y39807D01* X30285Y39798D01* X30288Y39790D01* X30291Y39782D01* X30296Y39774D01* X30302Y39768D01* X30309Y39763D01* X30317Y39759D01* X30325Y39757D01* X30334Y39756D01* X30337Y39756D01* Y39240D01* X30330Y39239D01* X30321Y39237D01* X30314Y39233D01* X30307Y39228D01* X30301Y39221D01* X30296Y39214D01* X30293Y39206D01* X30291Y39197D01* X30290Y39189D01* X30291Y39180D01* X30294Y39172D01* X30298Y39164D01* X30303Y39157D01* X30309Y39151D01* X30317Y39146D01* X30337Y39137D01* Y37852D01* X30331Y37849D01* X30323Y37845D01* X30317Y37839D01* X30312Y37832D01* X30308Y37824D01* X30306Y37815D01* X30305Y37807D01* X30305Y37798D01* X30308Y37790D01* X30311Y37782D01* X30316Y37774D01* X30322Y37768D01* X30329Y37763D01* X30337Y37759D01* Y37234D01* X30334Y37233D01* X30327Y37228D01* X30321Y37221D01* X30316Y37214D01* X30313Y37206D01* X30311Y37197D01* X30310Y37189D01* X30311Y37180D01* X30314Y37172D01* X30318Y37164D01* X30323Y37157D01* X30329Y37151D01* X30337Y37147D01* Y35838D01* X30332Y35832D01* X30328Y35824D01* X30326Y35815D01* X30325Y35807D01* X30325Y35798D01* X30328Y35790D01* X30331Y35782D01* X30336Y35774D01* X30337Y35774D01* Y35215D01* X30336Y35214D01* X30333Y35206D01* X30331Y35197D01* X30330Y35189D01* X30331Y35180D01* X30334Y35172D01* X30337Y35167D01* Y29692D01* X30333Y29697D01* X30326Y29703D01* X30319Y29708D01* X30311Y29711D01* X30302Y29713D01* X30294Y29714D01* X30285Y29713D01* X30277Y29710D01* X30269Y29706D01* X30262Y29701D01* X30257Y29695D01* Y31285D01* X30260Y31283D01* X30269Y31281D01* X30277Y31280D01* X30286Y31281D01* X30295Y31283D01* X30303Y31286D01* X30310Y31291D01* X30316Y31297D01* X30321Y31304D01* X30325Y31312D01* X30327Y31320D01* X30328Y31329D01* X30328Y31338D01* X30326Y31346D01* X30322Y31354D01* X30310Y31378D01* X30300Y31404D01* X30293Y31430D01* X30288Y31456D01* X30285Y31483D01* X30285Y31511D01* X30287Y31538D01* X30292Y31564D01* X30299Y31590D01* X30308Y31616D01* X30320Y31640D01* X30323Y31649D01* X30325Y31657D01* X30325Y31666D01* X30324Y31674D01* X30322Y31683D01* X30318Y31690D01* X30313Y31697D01* X30306Y31703D01* X30299Y31708D01* X30291Y31711D01* X30282Y31713D01* X30274Y31714D01* X30265Y31713D01* X30257Y31710D01* X30257Y31710D01* Y33280D01* X30257Y33280D01* X30266Y33281D01* X30275Y33283D01* X30283Y33286D01* X30290Y33291D01* X30296Y33297D01* X30301Y33304D01* X30305Y33312D01* X30307Y33320D01* X30308Y33329D01* X30308Y33338D01* X30306Y33346D01* X30302Y33354D01* X30290Y33378D01* X30280Y33404D01* X30273Y33430D01* X30268Y33456D01* X30265Y33483D01* X30265Y33511D01* X30267Y33538D01* X30272Y33564D01* X30279Y33590D01* X30288Y33616D01* X30300Y33640D01* X30303Y33649D01* X30305Y33657D01* X30305Y33666D01* X30304Y33674D01* X30302Y33683D01* X30298Y33690D01* X30293Y33697D01* X30286Y33703D01* X30279Y33708D01* X30271Y33711D01* X30262Y33713D01* X30257Y33714D01* Y35284D01* X30263Y35286D01* X30270Y35291D01* X30276Y35297D01* X30281Y35304D01* X30285Y35312D01* X30287Y35320D01* X30288Y35329D01* X30288Y35338D01* X30286Y35346D01* X30282Y35354D01* X30270Y35378D01* X30260Y35404D01* X30257Y35417D01* Y35583D01* X30259Y35590D01* X30268Y35616D01* X30280Y35640D01* X30283Y35649D01* X30285Y35657D01* X30285Y35666D01* X30284Y35674D01* X30282Y35683D01* X30278Y35690D01* X30273Y35697D01* X30266Y35703D01* X30259Y35708D01* X30257Y35709D01* Y37298D01* X30261Y37304D01* X30265Y37312D01* X30267Y37320D01* X30268Y37329D01* X30268Y37338D01* X30266Y37346D01* X30262Y37354D01* X30257Y37365D01* Y37634D01* X30260Y37640D01* X30263Y37649D01* X30265Y37657D01* X30265Y37666D01* X30264Y37674D01* X30262Y37683D01* X30258Y37690D01* X30257Y37692D01* Y40000D01* G37* G36* X30337Y0D02*X30257D01* Y25403D01* X30265Y25372D01* X30279Y25338D01* X30295Y25306D01* X30299Y25299D01* X30305Y25292D01* X30313Y25287D01* X30320Y25283D01* X30329Y25281D01* X30337Y25280D01* Y23710D01* X30329Y23706D01* X30322Y23701D01* X30316Y23695D01* X30311Y23687D01* X30296Y23655D01* X30283Y23621D01* X30274Y23586D01* X30268Y23550D01* X30265Y23514D01* X30265Y23478D01* X30269Y23442D01* X30275Y23407D01* X30285Y23372D01* X30299Y23338D01* X30315Y23306D01* X30319Y23299D01* X30325Y23292D01* X30333Y23287D01* X30337Y23285D01* Y21695D01* X30336Y21695D01* X30331Y21687D01* X30316Y21655D01* X30303Y21621D01* X30294Y21586D01* X30288Y21550D01* X30285Y21514D01* X30285Y21478D01* X30289Y21442D01* X30295Y21407D01* X30305Y21372D01* X30319Y21338D01* X30335Y21306D01* X30337Y21303D01* Y19656D01* X30336Y19655D01* X30323Y19621D01* X30314Y19586D01* X30308Y19550D01* X30305Y19514D01* X30305Y19478D01* X30309Y19442D01* X30315Y19407D01* X30325Y19372D01* X30337Y19343D01* Y17596D01* X30334Y17586D01* X30328Y17550D01* X30325Y17514D01* X30325Y17478D01* X30329Y17442D01* X30335Y17407D01* X30337Y17403D01* Y0D01* G37* G36* Y25714D02*X30334Y25714D01* X30325Y25713D01* X30317Y25710D01* X30309Y25706D01* X30302Y25701D01* X30296Y25695D01* X30291Y25687D01* X30276Y25655D01* X30263Y25621D01* X30257Y25596D01* Y27343D01* X30259Y27338D01* X30275Y27306D01* X30279Y27299D01* X30285Y27292D01* X30293Y27287D01* X30300Y27283D01* X30309Y27281D01* X30317Y27280D01* X30326Y27281D01* X30335Y27283D01* X30337Y27284D01* Y25714D01* G37* G36* Y27417D02*X30333Y27430D01* X30328Y27456D01* X30325Y27483D01* X30325Y27511D01* X30327Y27538D01* X30332Y27564D01* X30337Y27583D01* Y27417D01* G37* G36* Y27709D02*X30331Y27711D01* X30322Y27713D01* X30314Y27714D01* X30305Y27713D01* X30297Y27710D01* X30289Y27706D01* X30282Y27701D01* X30276Y27695D01* X30271Y27687D01* X30257Y27656D01* Y29303D01* X30259Y29299D01* X30265Y29292D01* X30273Y29287D01* X30280Y29283D01* X30289Y29281D01* X30297Y29280D01* X30306Y29281D01* X30315Y29283D01* X30323Y29286D01* X30330Y29291D01* X30336Y29297D01* X30337Y29298D01* Y27709D01* G37* G36* Y29365D02*X30330Y29378D01* X30320Y29404D01* X30313Y29430D01* X30308Y29456D01* X30305Y29483D01* X30305Y29511D01* X30307Y29538D01* X30312Y29564D01* X30319Y29590D01* X30328Y29616D01* X30337Y29634D01* Y29365D01* G37* G36* Y40000D02*X30507D01* Y39899D01* X30483Y39899D01* X30447Y39895D01* X30411Y39889D01* X30377Y39879D01* X30343Y39866D01* X30337Y39862D01* Y40000D01* G37* G36* Y39756D02*X30343Y39756D01* X30351Y39758D01* X30359Y39762D01* X30383Y39774D01* X30409Y39784D01* X30435Y39791D01* X30461Y39796D01* X30488Y39799D01* X30507Y39799D01* Y39200D01* X30494Y39200D01* X30467Y39202D01* X30440Y39207D01* X30414Y39214D01* X30388Y39223D01* X30364Y39235D01* X30356Y39238D01* X30347Y39240D01* X30338Y39240D01* X30337Y39240D01* Y39756D01* G37* G36* Y39137D02*X30349Y39131D01* X30383Y39118D01* X30418Y39109D01* X30454Y39103D01* X30490Y39100D01* X30507Y39100D01* Y37899D01* X30503D01* X30467Y37895D01* X30431Y37889D01* X30397Y37879D01* X30363Y37866D01* X30337Y37852D01* Y39137D01* G37* G36* Y37759D02*X30337Y37759D01* X30345Y37757D01* X30354Y37756D01* X30363Y37756D01* X30371Y37758D01* X30379Y37762D01* X30403Y37774D01* X30429Y37784D01* X30455Y37791D01* X30481Y37796D01* X30507Y37799D01* Y37200D01* X30487Y37202D01* X30460Y37207D01* X30434Y37214D01* X30408Y37223D01* X30384Y37235D01* X30376Y37238D01* X30367Y37240D01* X30358Y37240D01* X30350Y37239D01* X30341Y37237D01* X30337Y37234D01* Y37759D01* G37* G36* Y37147D02*X30337Y37146D01* X30369Y37131D01* X30403Y37118D01* X30438Y37109D01* X30474Y37103D01* X30507Y37100D01* Y35897D01* X30487Y35895D01* X30451Y35889D01* X30417Y35879D01* X30383Y35866D01* X30351Y35849D01* X30343Y35845D01* X30337Y35839D01* X30337Y35838D01* Y37147D01* G37* G36* Y35774D02*X30342Y35768D01* X30349Y35763D01* X30357Y35759D01* X30365Y35757D01* X30374Y35756D01* X30383Y35756D01* X30391Y35758D01* X30399Y35762D01* X30423Y35774D01* X30449Y35784D01* X30475Y35791D01* X30501Y35796D01* X30507Y35797D01* Y35202D01* X30507Y35202D01* X30480Y35207D01* X30454Y35214D01* X30428Y35223D01* X30404Y35235D01* X30396Y35238D01* X30387Y35240D01* X30378Y35240D01* X30370Y35239D01* X30361Y35237D01* X30354Y35233D01* X30347Y35228D01* X30341Y35221D01* X30337Y35215D01* Y35774D01* G37* G36* Y35167D02*X30338Y35164D01* X30343Y35157D01* X30349Y35151D01* X30357Y35146D01* X30389Y35131D01* X30417Y35121D01* Y33871D01* X30403Y33866D01* X30371Y33849D01* X30363Y33845D01* X30357Y33839D01* X30352Y33832D01* X30348Y33824D01* X30346Y33815D01* X30345Y33807D01* X30345Y33798D01* X30348Y33790D01* X30351Y33782D01* X30356Y33774D01* X30362Y33768D01* X30369Y33763D01* X30377Y33759D01* X30385Y33757D01* X30394Y33756D01* X30403Y33756D01* X30411Y33758D01* X30417Y33761D01* Y33238D01* X30416Y33238D01* X30407Y33240D01* X30398Y33240D01* X30390Y33239D01* X30381Y33237D01* X30374Y33233D01* X30367Y33228D01* X30361Y33221D01* X30356Y33214D01* X30353Y33206D01* X30351Y33197D01* X30350Y33189D01* X30351Y33180D01* X30354Y33172D01* X30358Y33164D01* X30363Y33157D01* X30369Y33151D01* X30377Y33146D01* X30409Y33131D01* X30417Y33128D01* Y31862D01* X30391Y31849D01* X30383Y31845D01* X30377Y31839D01* X30372Y31832D01* X30368Y31824D01* X30366Y31815D01* X30365Y31807D01* X30365Y31798D01* X30368Y31790D01* X30371Y31782D01* X30376Y31774D01* X30382Y31768D01* X30389Y31763D01* X30397Y31759D01* X30405Y31757D01* X30414Y31756D01* X30417Y31756D01* Y31240D01* X30410Y31239D01* X30401Y31237D01* X30394Y31233D01* X30387Y31228D01* X30381Y31221D01* X30376Y31214D01* X30373Y31206D01* X30371Y31197D01* X30370Y31189D01* X30371Y31180D01* X30374Y31172D01* X30378Y31164D01* X30383Y31157D01* X30389Y31151D01* X30397Y31146D01* X30417Y31137D01* Y29852D01* X30411Y29849D01* X30403Y29845D01* X30397Y29839D01* X30392Y29832D01* X30388Y29824D01* X30386Y29815D01* X30385Y29807D01* X30385Y29798D01* X30388Y29790D01* X30391Y29782D01* X30396Y29774D01* X30402Y29768D01* X30409Y29763D01* X30417Y29759D01* Y29234D01* X30414Y29233D01* X30407Y29228D01* X30401Y29221D01* X30396Y29214D01* X30393Y29206D01* X30391Y29197D01* X30390Y29189D01* X30391Y29180D01* X30394Y29172D01* X30398Y29164D01* X30403Y29157D01* X30409Y29151D01* X30417Y29147D01* Y27838D01* X30412Y27832D01* X30408Y27824D01* X30406Y27815D01* X30405Y27807D01* X30405Y27798D01* X30408Y27790D01* X30411Y27782D01* X30416Y27774D01* X30417Y27774D01* Y27215D01* X30416Y27214D01* X30413Y27206D01* X30411Y27197D01* X30410Y27189D01* X30411Y27180D01* X30414Y27172D01* X30417Y27167D01* Y21692D01* X30413Y21697D01* X30406Y21703D01* X30399Y21708D01* X30391Y21711D01* X30382Y21713D01* X30374Y21714D01* X30365Y21713D01* X30357Y21710D01* X30349Y21706D01* X30342Y21701D01* X30337Y21695D01* Y23285D01* X30340Y23283D01* X30349Y23281D01* X30357Y23280D01* X30366Y23281D01* X30375Y23283D01* X30383Y23286D01* X30390Y23291D01* X30396Y23297D01* X30401Y23304D01* X30405Y23312D01* X30407Y23320D01* X30408Y23329D01* X30408Y23338D01* X30406Y23346D01* X30402Y23354D01* X30390Y23378D01* X30380Y23404D01* X30373Y23430D01* X30368Y23456D01* X30365Y23483D01* X30365Y23511D01* X30367Y23538D01* X30372Y23564D01* X30379Y23590D01* X30388Y23616D01* X30400Y23640D01* X30403Y23649D01* X30405Y23657D01* X30405Y23666D01* X30404Y23674D01* X30402Y23683D01* X30398Y23690D01* X30393Y23697D01* X30386Y23703D01* X30379Y23708D01* X30371Y23711D01* X30362Y23713D01* X30354Y23714D01* X30345Y23713D01* X30337Y23710D01* X30337Y23710D01* Y25280D01* X30337Y25280D01* X30346Y25281D01* X30355Y25283D01* X30363Y25286D01* X30370Y25291D01* X30376Y25297D01* X30381Y25304D01* X30385Y25312D01* X30387Y25320D01* X30388Y25329D01* X30388Y25338D01* X30386Y25346D01* X30382Y25354D01* X30370Y25378D01* X30360Y25404D01* X30353Y25430D01* X30348Y25456D01* X30345Y25483D01* X30345Y25511D01* X30347Y25538D01* X30352Y25564D01* X30359Y25590D01* X30368Y25616D01* X30380Y25640D01* X30383Y25649D01* X30385Y25657D01* X30385Y25666D01* X30384Y25674D01* X30382Y25683D01* X30378Y25690D01* X30373Y25697D01* X30366Y25703D01* X30359Y25708D01* X30351Y25711D01* X30342Y25713D01* X30337Y25714D01* Y27284D01* X30343Y27286D01* X30350Y27291D01* X30356Y27297D01* X30361Y27304D01* X30365Y27312D01* X30367Y27320D01* X30368Y27329D01* X30368Y27338D01* X30366Y27346D01* X30362Y27354D01* X30350Y27378D01* X30340Y27404D01* X30337Y27417D01* Y27583D01* X30339Y27590D01* X30348Y27616D01* X30360Y27640D01* X30363Y27649D01* X30365Y27657D01* X30365Y27666D01* X30364Y27674D01* X30362Y27683D01* X30358Y27690D01* X30353Y27697D01* X30346Y27703D01* X30339Y27708D01* X30337Y27709D01* Y29298D01* X30341Y29304D01* X30345Y29312D01* X30347Y29320D01* X30348Y29329D01* X30348Y29338D01* X30346Y29346D01* X30342Y29354D01* X30337Y29365D01* Y29634D01* X30340Y29640D01* X30343Y29649D01* X30345Y29657D01* X30345Y29666D01* X30344Y29674D01* X30342Y29683D01* X30338Y29690D01* X30337Y29692D01* Y35167D01* G37* G36* X30417Y13695D02*X30416Y13695D01* X30411Y13687D01* X30396Y13655D01* X30383Y13621D01* X30374Y13586D01* X30368Y13550D01* X30365Y13514D01* X30365Y13478D01* X30369Y13442D01* X30375Y13407D01* X30385Y13372D01* X30399Y13338D01* X30415Y13306D01* X30417Y13303D01* Y11656D01* X30416Y11655D01* X30403Y11621D01* X30394Y11586D01* X30388Y11550D01* X30385Y11514D01* X30385Y11478D01* X30389Y11442D01* X30395Y11407D01* X30405Y11372D01* X30417Y11343D01* Y9596D01* X30414Y9586D01* X30408Y9550D01* X30405Y9514D01* X30405Y9478D01* X30409Y9442D01* X30415Y9407D01* X30417Y9403D01* Y0D01* X30337D01* Y17403D01* X30345Y17372D01* X30359Y17338D01* X30375Y17306D01* X30379Y17299D01* X30385Y17292D01* X30393Y17287D01* X30400Y17283D01* X30409Y17281D01* X30417Y17280D01* Y15710D01* X30409Y15706D01* X30402Y15701D01* X30396Y15695D01* X30391Y15687D01* X30376Y15655D01* X30363Y15621D01* X30354Y15586D01* X30348Y15550D01* X30345Y15514D01* X30345Y15478D01* X30349Y15442D01* X30355Y15407D01* X30365Y15372D01* X30379Y15338D01* X30395Y15306D01* X30399Y15299D01* X30405Y15292D01* X30413Y15287D01* X30417Y15285D01* Y13695D01* G37* G36* Y17714D02*X30414Y17714D01* X30405Y17713D01* X30397Y17710D01* X30389Y17706D01* X30382Y17701D01* X30376Y17695D01* X30371Y17687D01* X30356Y17655D01* X30343Y17621D01* X30337Y17596D01* Y19343D01* X30339Y19338D01* X30355Y19306D01* X30359Y19299D01* X30365Y19292D01* X30373Y19287D01* X30380Y19283D01* X30389Y19281D01* X30397Y19280D01* X30406Y19281D01* X30415Y19283D01* X30417Y19284D01* Y17714D01* G37* G36* Y19417D02*X30413Y19430D01* X30408Y19456D01* X30405Y19483D01* X30405Y19511D01* X30407Y19538D01* X30412Y19564D01* X30417Y19583D01* Y19417D01* G37* G36* Y19709D02*X30411Y19711D01* X30402Y19713D01* X30394Y19714D01* X30385Y19713D01* X30377Y19710D01* X30369Y19706D01* X30362Y19701D01* X30356Y19695D01* X30351Y19687D01* X30337Y19656D01* Y21303D01* X30339Y21299D01* X30345Y21292D01* X30353Y21287D01* X30360Y21283D01* X30369Y21281D01* X30377Y21280D01* X30386Y21281D01* X30395Y21283D01* X30403Y21286D01* X30410Y21291D01* X30416Y21297D01* X30417Y21298D01* Y19709D01* G37* G36* Y21365D02*X30410Y21378D01* X30400Y21404D01* X30393Y21430D01* X30388Y21456D01* X30385Y21483D01* X30385Y21511D01* X30387Y21538D01* X30392Y21564D01* X30399Y21590D01* X30408Y21616D01* X30417Y21634D01* Y21365D01* G37* G36* Y35121D02*X30423Y35118D01* X30458Y35109D01* X30494Y35103D01* X30507Y35102D01* Y33895D01* X30507D01* X30471Y33889D01* X30437Y33879D01* X30417Y33871D01* Y35121D01* G37* G36* Y33761D02*X30419Y33762D01* X30443Y33774D01* X30469Y33784D01* X30495Y33791D01* X30507Y33794D01* Y33205D01* X30500Y33207D01* X30474Y33214D01* X30448Y33223D01* X30424Y33235D01* X30417Y33238D01* Y33761D01* G37* G36* Y33128D02*X30443Y33118D01* X30478Y33109D01* X30507Y33104D01* Y31892D01* X30491Y31889D01* X30457Y31879D01* X30423Y31866D01* X30417Y31862D01* Y33128D01* G37* G36* Y31756D02*X30423Y31756D01* X30431Y31758D01* X30439Y31762D01* X30463Y31774D01* X30489Y31784D01* X30507Y31789D01* Y31210D01* X30494Y31214D01* X30468Y31223D01* X30444Y31235D01* X30436Y31238D01* X30427Y31240D01* X30418Y31240D01* X30417Y31240D01* Y31756D01* G37* G36* Y31137D02*X30429Y31131D01* X30463Y31118D01* X30498Y31109D01* X30507Y31107D01* Y29887D01* X30477Y29879D01* X30443Y29866D01* X30417Y29852D01* Y31137D01* G37* G36* Y29759D02*X30417Y29759D01* X30425Y29757D01* X30434Y29756D01* X30443Y29756D01* X30451Y29758D01* X30459Y29762D01* X30483Y29774D01* X30507Y29783D01* Y29216D01* X30488Y29223D01* X30464Y29235D01* X30456Y29238D01* X30447Y29240D01* X30438Y29240D01* X30430Y29239D01* X30421Y29237D01* X30417Y29234D01* Y29759D01* G37* G36* Y29147D02*X30417Y29146D01* X30449Y29131D01* X30483Y29118D01* X30507Y29112D01* Y27882D01* X30497Y27879D01* X30463Y27866D01* X30431Y27849D01* X30423Y27845D01* X30417Y27839D01* X30417Y27838D01* Y29147D01* G37* G36* Y27774D02*X30422Y27768D01* X30429Y27763D01* X30437Y27759D01* X30445Y27757D01* X30454Y27756D01* X30463Y27756D01* X30471Y27758D01* X30479Y27762D01* X30503Y27774D01* X30507Y27776D01* Y27223D01* X30484Y27235D01* X30476Y27238D01* X30467Y27240D01* X30458Y27240D01* X30450Y27239D01* X30441Y27237D01* X30434Y27233D01* X30427Y27228D01* X30421Y27221D01* X30417Y27215D01* Y27774D01* G37* G36* Y27167D02*X30418Y27164D01* X30423Y27157D01* X30429Y27151D01* X30437Y27146D01* X30469Y27131D01* X30503Y27118D01* X30507Y27117D01* Y25875D01* X30483Y25866D01* X30451Y25849D01* X30443Y25845D01* X30437Y25839D01* X30432Y25832D01* X30428Y25824D01* X30426Y25815D01* X30425Y25807D01* X30425Y25798D01* X30428Y25790D01* X30431Y25782D01* X30436Y25774D01* X30442Y25768D01* X30449Y25763D01* X30457Y25759D01* X30465Y25757D01* X30474Y25756D01* X30483Y25756D01* X30491Y25758D01* X30499Y25762D01* X30507Y25766D01* Y25233D01* X30504Y25235D01* X30496Y25238D01* X30487Y25240D01* X30478Y25240D01* X30470Y25239D01* X30461Y25237D01* X30454Y25233D01* X30447Y25228D01* X30441Y25221D01* X30436Y25214D01* X30433Y25206D01* X30431Y25197D01* X30430Y25189D01* X30431Y25180D01* X30434Y25172D01* X30438Y25164D01* X30443Y25157D01* X30449Y25151D01* X30457Y25146D01* X30489Y25131D01* X30507Y25124D01* Y23867D01* X30503Y23866D01* X30471Y23849D01* X30463Y23845D01* X30457Y23839D01* X30452Y23832D01* X30448Y23824D01* X30446Y23815D01* X30445Y23807D01* X30445Y23798D01* X30448Y23790D01* X30451Y23782D01* X30456Y23774D01* X30462Y23768D01* X30469Y23763D01* X30477Y23759D01* X30485Y23757D01* X30494Y23756D01* X30503Y23756D01* X30507Y23757D01* Y23240D01* X30507D01* X30498Y23240D01* X30490Y23239D01* X30481Y23237D01* X30474Y23233D01* X30467Y23228D01* X30461Y23221D01* X30456Y23214D01* X30453Y23206D01* X30451Y23197D01* X30450Y23189D01* X30451Y23180D01* X30454Y23172D01* X30458Y23164D01* X30463Y23157D01* X30469Y23151D01* X30477Y23146D01* X30507Y23132D01* Y21858D01* X30491Y21849D01* X30483Y21845D01* X30477Y21839D01* X30472Y21832D01* X30468Y21824D01* X30466Y21815D01* X30465Y21807D01* X30465Y21798D01* X30468Y21790D01* X30471Y21782D01* X30476Y21774D01* X30482Y21768D01* X30489Y21763D01* X30497Y21759D01* X30505Y21757D01* X30507Y21756D01* Y21239D01* X30501Y21237D01* X30494Y21233D01* X30487Y21228D01* X30481Y21221D01* X30476Y21214D01* X30473Y21206D01* X30471Y21197D01* X30470Y21189D01* X30471Y21180D01* X30474Y21172D01* X30478Y21164D01* X30483Y21157D01* X30489Y21151D01* X30497Y21146D01* X30507Y21141D01* Y19847D01* X30503Y19845D01* X30497Y19839D01* X30492Y19832D01* X30488Y19824D01* X30486Y19815D01* X30485Y19807D01* X30485Y19798D01* X30488Y19790D01* X30491Y19782D01* X30496Y19774D01* X30502Y19768D01* X30507Y19764D01* Y19228D01* X30507Y19228D01* X30501Y19221D01* X30496Y19214D01* X30493Y19206D01* X30491Y19197D01* X30490Y19189D01* X30491Y19180D01* X30494Y19172D01* X30498Y19164D01* X30503Y19157D01* X30507Y19153D01* Y17821D01* X30506Y17815D01* X30505Y17807D01* X30505Y17798D01* X30507Y17791D01* Y13340D01* X30506Y13346D01* X30502Y13354D01* X30490Y13378D01* X30480Y13404D01* X30473Y13430D01* X30468Y13456D01* X30465Y13483D01* X30465Y13511D01* X30467Y13538D01* X30472Y13564D01* X30479Y13590D01* X30488Y13616D01* X30500Y13640D01* X30503Y13649D01* X30505Y13657D01* X30505Y13666D01* X30504Y13674D01* X30502Y13683D01* X30498Y13690D01* X30493Y13697D01* X30486Y13703D01* X30479Y13708D01* X30471Y13711D01* X30462Y13713D01* X30454Y13714D01* X30445Y13713D01* X30437Y13710D01* X30429Y13706D01* X30422Y13701D01* X30417Y13695D01* Y15285D01* X30420Y15283D01* X30429Y15281D01* X30437Y15280D01* X30446Y15281D01* X30455Y15283D01* X30463Y15286D01* X30470Y15291D01* X30476Y15297D01* X30481Y15304D01* X30485Y15312D01* X30487Y15320D01* X30488Y15329D01* X30488Y15338D01* X30486Y15346D01* X30482Y15354D01* X30470Y15378D01* X30460Y15404D01* X30453Y15430D01* X30448Y15456D01* X30445Y15483D01* X30445Y15511D01* X30447Y15538D01* X30452Y15564D01* X30459Y15590D01* X30468Y15616D01* X30480Y15640D01* X30483Y15649D01* X30485Y15657D01* X30485Y15666D01* X30484Y15674D01* X30482Y15683D01* X30478Y15690D01* X30473Y15697D01* X30466Y15703D01* X30459Y15708D01* X30451Y15711D01* X30442Y15713D01* X30434Y15714D01* X30425Y15713D01* X30417Y15710D01* X30417Y15710D01* Y17280D01* X30417Y17280D01* X30426Y17281D01* X30435Y17283D01* X30443Y17286D01* X30450Y17291D01* X30456Y17297D01* X30461Y17304D01* X30465Y17312D01* X30467Y17320D01* X30468Y17329D01* X30468Y17338D01* X30466Y17346D01* X30462Y17354D01* X30450Y17378D01* X30440Y17404D01* X30433Y17430D01* X30428Y17456D01* X30425Y17483D01* X30425Y17511D01* X30427Y17538D01* X30432Y17564D01* X30439Y17590D01* X30448Y17616D01* X30460Y17640D01* X30463Y17649D01* X30465Y17657D01* X30465Y17666D01* X30464Y17674D01* X30462Y17683D01* X30458Y17690D01* X30453Y17697D01* X30446Y17703D01* X30439Y17708D01* X30431Y17711D01* X30422Y17713D01* X30417Y17714D01* Y19284D01* X30423Y19286D01* X30430Y19291D01* X30436Y19297D01* X30441Y19304D01* X30445Y19312D01* X30447Y19320D01* X30448Y19329D01* X30448Y19338D01* X30446Y19346D01* X30442Y19354D01* X30430Y19378D01* X30420Y19404D01* X30417Y19417D01* Y19583D01* X30419Y19590D01* X30428Y19616D01* X30440Y19640D01* X30443Y19649D01* X30445Y19657D01* X30445Y19666D01* X30444Y19674D01* X30442Y19683D01* X30438Y19690D01* X30433Y19697D01* X30426Y19703D01* X30419Y19708D01* X30417Y19709D01* Y21298D01* X30421Y21304D01* X30425Y21312D01* X30427Y21320D01* X30428Y21329D01* X30428Y21338D01* X30426Y21346D01* X30422Y21354D01* X30417Y21365D01* Y21634D01* X30420Y21640D01* X30423Y21649D01* X30425Y21657D01* X30425Y21666D01* X30424Y21674D01* X30422Y21683D01* X30418Y21690D01* X30417Y21692D01* Y27167D01* G37* G36* Y13303D02*X30419Y13299D01* X30425Y13292D01* X30433Y13287D01* X30440Y13283D01* X30449Y13281D01* X30457Y13280D01* X30466Y13281D01* X30475Y13283D01* X30483Y13286D01* X30490Y13291D01* X30496Y13297D01* X30501Y13304D01* X30505Y13312D01* X30507Y13320D01* Y11702D01* X30506Y11703D01* X30499Y11708D01* X30491Y11711D01* X30482Y11713D01* X30474Y11714D01* X30465Y11713D01* X30457Y11710D01* X30449Y11706D01* X30442Y11701D01* X30436Y11695D01* X30431Y11687D01* X30417Y11656D01* Y13303D01* G37* G36* Y11343D02*X30419Y11338D01* X30435Y11306D01* X30439Y11299D01* X30445Y11292D01* X30453Y11287D01* X30460Y11283D01* X30469Y11281D01* X30477Y11280D01* X30486Y11281D01* X30495Y11283D01* X30503Y11286D01* X30507Y11289D01* Y9712D01* X30502Y9713D01* X30494Y9714D01* X30485Y9713D01* X30477Y9710D01* X30469Y9706D01* X30462Y9701D01* X30456Y9695D01* X30451Y9687D01* X30436Y9655D01* X30423Y9621D01* X30417Y9596D01* Y11343D01* G37* G36* Y9403D02*X30425Y9372D01* X30439Y9338D01* X30455Y9306D01* X30459Y9299D01* X30465Y9292D01* X30473Y9287D01* X30480Y9283D01* X30489Y9281D01* X30497Y9280D01* X30506Y9281D01* X30507Y9281D01* Y7713D01* X30505Y7713D01* X30497Y7710D01* X30489Y7706D01* X30482Y7701D01* X30476Y7695D01* X30471Y7687D01* X30456Y7655D01* X30443Y7621D01* X30434Y7586D01* X30428Y7550D01* X30425Y7514D01* X30425Y7478D01* X30429Y7442D01* X30435Y7407D01* X30445Y7372D01* X30459Y7338D01* X30475Y7306D01* X30479Y7299D01* X30485Y7292D01* X30493Y7287D01* X30500Y7283D01* X30507Y7281D01* Y5705D01* X30502Y5701D01* X30496Y5695D01* X30491Y5687D01* X30476Y5655D01* X30463Y5621D01* X30454Y5586D01* X30448Y5550D01* X30445Y5514D01* X30445Y5478D01* X30449Y5442D01* X30455Y5407D01* X30465Y5372D01* X30479Y5338D01* X30495Y5306D01* X30499Y5299D01* X30505Y5292D01* X30507Y5291D01* Y3679D01* X30496Y3655D01* X30483Y3621D01* X30474Y3586D01* X30468Y3550D01* X30465Y3514D01* X30465Y3478D01* X30469Y3442D01* X30475Y3407D01* X30485Y3372D01* X30499Y3338D01* X30507Y3321D01* Y1631D01* X30503Y1621D01* X30494Y1586D01* X30488Y1550D01* X30485Y1514D01* X30485Y1478D01* X30489Y1442D01* X30495Y1407D01* X30505Y1372D01* X30507Y1367D01* Y0D01* X30417D01* Y9403D01* G37* G36* X30507Y11386D02*X30500Y11404D01* X30493Y11430D01* X30488Y11456D01* X30485Y11483D01* X30485Y11511D01* X30487Y11538D01* X30492Y11564D01* X30499Y11590D01* X30507Y11614D01* Y11386D01* G37* G36* Y9460D02*X30505Y9483D01* X30505Y9511D01* X30507Y9538D01* X30507Y9539D01* Y9460D01* G37* G36* Y40000D02*X30832D01* Y39714D01* X30829Y39716D01* X30820Y39718D01* X30812Y39719D01* X30803Y39719D01* X30794Y39717D01* X30786Y39713D01* X30779Y39708D01* X30773Y39702D01* X30768Y39695D01* X30764Y39687D01* X30762Y39679D01* X30761Y39670D01* X30761Y39661D01* X30763Y39653D01* X30767Y39645D01* X30779Y39621D01* X30789Y39595D01* X30796Y39569D01* X30801Y39543D01* X30804Y39516D01* X30804Y39489D01* X30802Y39462D01* X30797Y39435D01* X30790Y39409D01* X30781Y39383D01* X30769Y39359D01* X30766Y39351D01* X30764Y39342D01* X30764Y39333D01* X30765Y39325D01* X30767Y39317D01* X30771Y39309D01* X30776Y39302D01* X30783Y39296D01* X30790Y39291D01* X30798Y39288D01* X30807Y39286D01* X30815Y39285D01* X30824Y39286D01* X30832Y39289D01* X30832Y39289D01* Y37719D01* X30832Y37719D01* X30823Y37719D01* X30814Y37717D01* X30806Y37713D01* X30799Y37708D01* X30793Y37702D01* X30788Y37695D01* X30784Y37687D01* X30782Y37679D01* X30781Y37670D01* X30781Y37661D01* X30783Y37653D01* X30787Y37645D01* X30799Y37621D01* X30809Y37595D01* X30816Y37569D01* X30821Y37543D01* X30824Y37516D01* X30824Y37489D01* X30822Y37462D01* X30817Y37435D01* X30810Y37409D01* X30801Y37383D01* X30789Y37359D01* X30786Y37351D01* X30784Y37342D01* X30784Y37333D01* X30785Y37325D01* X30787Y37317D01* X30791Y37309D01* X30796Y37302D01* X30803Y37296D01* X30810Y37291D01* X30818Y37288D01* X30827Y37286D01* X30832Y37286D01* Y35716D01* X30826Y35713D01* X30819Y35708D01* X30813Y35702D01* X30808Y35695D01* X30804Y35687D01* X30802Y35679D01* X30801Y35670D01* X30801Y35661D01* X30803Y35653D01* X30807Y35645D01* X30819Y35621D01* X30829Y35595D01* X30832Y35583D01* Y35416D01* X30830Y35409D01* X30821Y35383D01* X30809Y35359D01* X30806Y35351D01* X30804Y35342D01* X30804Y35333D01* X30805Y35325D01* X30807Y35317D01* X30811Y35309D01* X30816Y35302D01* X30823Y35296D01* X30830Y35291D01* X30832Y35290D01* Y33701D01* X30828Y33695D01* X30824Y33687D01* X30822Y33679D01* X30821Y33670D01* X30821Y33661D01* X30823Y33653D01* X30827Y33645D01* X30832Y33634D01* Y33365D01* X30829Y33359D01* X30826Y33351D01* X30824Y33342D01* X30824Y33333D01* X30825Y33325D01* X30827Y33317D01* X30831Y33309D01* X30832Y33307D01* Y27833D01* X30831Y27835D01* X30826Y27842D01* X30820Y27848D01* X30812Y27853D01* X30780Y27868D01* X30746Y27881D01* X30711Y27890D01* X30675Y27896D01* X30639Y27899D01* X30603Y27899D01* X30567Y27895D01* X30531Y27889D01* X30507Y27882D01* Y29112D01* X30518Y29109D01* X30554Y29103D01* X30590Y29100D01* X30626Y29100D01* X30662Y29104D01* X30698Y29111D01* X30732Y29121D01* X30766Y29134D01* X30798Y29150D01* X30806Y29155D01* X30812Y29161D01* X30817Y29168D01* X30821Y29175D01* X30823Y29184D01* X30824Y29193D01* X30824Y29201D01* X30821Y29210D01* X30818Y29218D01* X30813Y29225D01* X30807Y29231D01* X30800Y29236D01* X30792Y29240D01* X30784Y29243D01* X30775Y29243D01* X30766Y29243D01* X30758Y29241D01* X30750Y29237D01* X30726Y29225D01* X30700Y29215D01* X30674Y29208D01* X30648Y29203D01* X30621Y29200D01* X30594Y29200D01* X30567Y29202D01* X30540Y29207D01* X30514Y29214D01* X30507Y29216D01* Y29783D01* X30509Y29784D01* X30535Y29791D01* X30561Y29796D01* X30588Y29799D01* X30615Y29799D01* X30642Y29797D01* X30669Y29793D01* X30695Y29785D01* X30721Y29776D01* X30745Y29764D01* X30753Y29761D01* X30762Y29759D01* X30771Y29759D01* X30779Y29760D01* X30788Y29762D01* X30795Y29766D01* X30802Y29772D01* X30808Y29778D01* X30813Y29785D01* X30816Y29793D01* X30818Y29802D01* X30819Y29810D01* X30818Y29819D01* X30815Y29827D01* X30811Y29835D01* X30806Y29842D01* X30800Y29848D01* X30792Y29853D01* X30760Y29868D01* X30726Y29881D01* X30691Y29890D01* X30655Y29896D01* X30619Y29899D01* X30583Y29899D01* X30547Y29895D01* X30511Y29889D01* X30507Y29887D01* Y31107D01* X30534Y31103D01* X30570Y31100D01* X30606Y31100D01* X30642Y31104D01* X30678Y31111D01* X30712Y31121D01* X30746Y31134D01* X30778Y31150D01* X30786Y31155D01* X30792Y31161D01* X30797Y31168D01* X30801Y31175D01* X30803Y31184D01* X30804Y31193D01* X30804Y31201D01* X30801Y31210D01* X30798Y31218D01* X30793Y31225D01* X30787Y31231D01* X30780Y31236D01* X30772Y31240D01* X30764Y31243D01* X30755Y31243D01* X30746Y31243D01* X30738Y31241D01* X30730Y31237D01* X30706Y31225D01* X30680Y31215D01* X30654Y31208D01* X30628Y31203D01* X30601Y31200D01* X30574Y31200D01* X30547Y31202D01* X30520Y31207D01* X30507Y31210D01* Y31789D01* X30515Y31791D01* X30541Y31796D01* X30568Y31799D01* X30595Y31799D01* X30622Y31797D01* X30649Y31793D01* X30675Y31785D01* X30701Y31776D01* X30725Y31764D01* X30733Y31761D01* X30742Y31759D01* X30751Y31759D01* X30759Y31760D01* X30768Y31762D01* X30775Y31766D01* X30782Y31772D01* X30788Y31778D01* X30793Y31785D01* X30796Y31793D01* X30798Y31802D01* X30799Y31810D01* X30798Y31819D01* X30795Y31827D01* X30791Y31835D01* X30786Y31842D01* X30780Y31848D01* X30772Y31853D01* X30740Y31868D01* X30706Y31881D01* X30671Y31890D01* X30635Y31896D01* X30599Y31899D01* X30563Y31899D01* X30527Y31895D01* X30507Y31892D01* Y33104D01* X30514Y33103D01* X30550Y33100D01* X30586Y33100D01* X30622Y33104D01* X30658Y33111D01* X30692Y33121D01* X30726Y33134D01* X30758Y33150D01* X30766Y33155D01* X30772Y33161D01* X30777Y33168D01* X30781Y33175D01* X30783Y33184D01* X30784Y33193D01* X30784Y33201D01* X30781Y33210D01* X30778Y33218D01* X30773Y33225D01* X30767Y33231D01* X30760Y33236D01* X30752Y33240D01* X30744Y33243D01* X30735Y33243D01* X30726Y33243D01* X30718Y33241D01* X30710Y33237D01* X30686Y33225D01* X30660Y33215D01* X30634Y33208D01* X30608Y33203D01* X30581Y33200D01* X30554Y33200D01* X30527Y33202D01* X30507Y33205D01* Y33794D01* X30521Y33796D01* X30548Y33799D01* X30575Y33799D01* X30602Y33797D01* X30629Y33793D01* X30655Y33785D01* X30681Y33776D01* X30705Y33764D01* X30713Y33761D01* X30722Y33759D01* X30731Y33759D01* X30739Y33760D01* X30748Y33762D01* X30755Y33766D01* X30762Y33772D01* X30768Y33778D01* X30773Y33785D01* X30776Y33793D01* X30778Y33802D01* X30779Y33810D01* X30778Y33819D01* X30775Y33827D01* X30771Y33835D01* X30766Y33842D01* X30760Y33848D01* X30752Y33853D01* X30720Y33868D01* X30686Y33881D01* X30651Y33890D01* X30615Y33896D01* X30579Y33899D01* X30543Y33899D01* X30507Y33895D01* Y35102D01* X30530Y35100D01* X30566Y35100D01* X30602Y35104D01* X30638Y35111D01* X30672Y35121D01* X30706Y35134D01* X30738Y35150D01* X30746Y35155D01* X30752Y35161D01* X30757Y35168D01* X30761Y35175D01* X30763Y35184D01* X30764Y35193D01* X30764Y35201D01* X30761Y35210D01* X30758Y35218D01* X30753Y35225D01* X30747Y35231D01* X30740Y35236D01* X30732Y35240D01* X30724Y35243D01* X30715Y35243D01* X30706Y35243D01* X30698Y35241D01* X30690Y35237D01* X30666Y35225D01* X30640Y35215D01* X30614Y35208D01* X30588Y35203D01* X30561Y35200D01* X30534Y35200D01* X30507Y35202D01* Y35797D01* X30528Y35799D01* X30555Y35799D01* X30582Y35797D01* X30609Y35793D01* X30635Y35785D01* X30661Y35776D01* X30685Y35764D01* X30693Y35761D01* X30702Y35759D01* X30711Y35759D01* X30719Y35760D01* X30728Y35762D01* X30735Y35766D01* X30742Y35772D01* X30748Y35778D01* X30753Y35785D01* X30756Y35793D01* X30758Y35802D01* X30759Y35810D01* X30758Y35819D01* X30755Y35827D01* X30751Y35835D01* X30746Y35842D01* X30740Y35848D01* X30732Y35853D01* X30700Y35868D01* X30666Y35881D01* X30631Y35890D01* X30595Y35896D01* X30559Y35899D01* X30523Y35899D01* X30507Y35897D01* Y37100D01* X30510Y37100D01* X30546Y37100D01* X30582Y37104D01* X30618Y37111D01* X30652Y37121D01* X30686Y37134D01* X30718Y37150D01* X30726Y37155D01* X30732Y37161D01* X30737Y37168D01* X30741Y37175D01* X30743Y37184D01* X30744Y37193D01* X30744Y37201D01* X30741Y37210D01* X30738Y37218D01* X30733Y37225D01* X30727Y37231D01* X30720Y37236D01* X30712Y37240D01* X30704Y37243D01* X30695Y37243D01* X30686Y37243D01* X30678Y37241D01* X30670Y37237D01* X30646Y37225D01* X30620Y37215D01* X30594Y37208D01* X30568Y37203D01* X30541Y37200D01* X30514Y37200D01* X30507Y37200D01* Y37799D01* X30508Y37799D01* X30535Y37799D01* X30562Y37797D01* X30589Y37793D01* X30615Y37785D01* X30641Y37776D01* X30665Y37764D01* X30673Y37761D01* X30682Y37759D01* X30691Y37759D01* X30699Y37760D01* X30708Y37762D01* X30715Y37766D01* X30722Y37772D01* X30728Y37778D01* X30733Y37785D01* X30736Y37793D01* X30738Y37802D01* X30739Y37810D01* X30738Y37819D01* X30735Y37827D01* X30731Y37835D01* X30726Y37842D01* X30720Y37848D01* X30712Y37853D01* X30680Y37868D01* X30646Y37881D01* X30611Y37890D01* X30575Y37896D01* X30539Y37899D01* X30507Y37899D01* Y39100D01* X30526Y39100D01* X30562Y39104D01* X30598Y39111D01* X30632Y39121D01* X30666Y39134D01* X30698Y39150D01* X30706Y39155D01* X30712Y39161D01* X30717Y39168D01* X30721Y39175D01* X30723Y39184D01* X30724Y39193D01* X30724Y39201D01* X30721Y39210D01* X30718Y39218D01* X30713Y39225D01* X30707Y39231D01* X30700Y39236D01* X30692Y39240D01* X30684Y39243D01* X30675Y39243D01* X30666Y39243D01* X30658Y39241D01* X30650Y39237D01* X30626Y39225D01* X30600Y39215D01* X30574Y39208D01* X30548Y39203D01* X30521Y39200D01* X30507Y39200D01* Y39799D01* X30515Y39799D01* X30542Y39797D01* X30569Y39793D01* X30595Y39785D01* X30621Y39776D01* X30645Y39764D01* X30653Y39761D01* X30662Y39759D01* X30671Y39759D01* X30679Y39760D01* X30688Y39762D01* X30695Y39766D01* X30702Y39772D01* X30708Y39778D01* X30713Y39785D01* X30716Y39793D01* X30718Y39802D01* X30719Y39810D01* X30718Y39819D01* X30715Y39827D01* X30711Y39835D01* X30706Y39842D01* X30700Y39848D01* X30692Y39853D01* X30660Y39868D01* X30626Y39881D01* X30591Y39890D01* X30555Y39896D01* X30519Y39899D01* X30507Y39899D01* Y40000D01* G37* G36* X30832Y0D02*X30507D01* Y1367D01* X30519Y1338D01* X30535Y1306D01* X30539Y1299D01* X30545Y1292D01* X30553Y1287D01* X30560Y1283D01* X30569Y1281D01* X30577Y1280D01* X30586Y1281D01* X30595Y1283D01* X30603Y1286D01* X30610Y1291D01* X30616Y1297D01* X30621Y1304D01* X30625Y1312D01* X30627Y1320D01* X30628Y1329D01* X30628Y1338D01* X30626Y1346D01* X30622Y1354D01* X30610Y1378D01* X30600Y1404D01* X30593Y1430D01* X30588Y1456D01* X30585Y1483D01* X30585Y1511D01* X30587Y1538D01* X30592Y1564D01* X30599Y1590D01* X30608Y1616D01* X30620Y1640D01* X30623Y1649D01* X30625Y1657D01* X30625Y1666D01* X30624Y1674D01* X30622Y1683D01* X30618Y1690D01* X30613Y1697D01* X30606Y1703D01* X30599Y1708D01* X30591Y1711D01* X30582Y1713D01* X30574Y1714D01* X30565Y1713D01* X30557Y1710D01* X30549Y1706D01* X30542Y1701D01* X30536Y1695D01* X30531Y1687D01* X30516Y1655D01* X30507Y1631D01* Y3321D01* X30515Y3306D01* X30519Y3299D01* X30525Y3292D01* X30533Y3287D01* X30540Y3283D01* X30549Y3281D01* X30557Y3280D01* X30566Y3281D01* X30575Y3283D01* X30583Y3286D01* X30590Y3291D01* X30596Y3297D01* X30601Y3304D01* X30605Y3312D01* X30607Y3320D01* X30608Y3329D01* X30608Y3338D01* X30606Y3346D01* X30602Y3354D01* X30590Y3378D01* X30580Y3404D01* X30573Y3430D01* X30568Y3456D01* X30565Y3483D01* X30565Y3511D01* X30567Y3538D01* X30572Y3564D01* X30579Y3590D01* X30588Y3616D01* X30600Y3640D01* X30603Y3649D01* X30605Y3657D01* X30605Y3666D01* X30604Y3674D01* X30602Y3683D01* X30598Y3690D01* X30593Y3697D01* X30586Y3703D01* X30579Y3708D01* X30571Y3711D01* X30562Y3713D01* X30554Y3714D01* X30545Y3713D01* X30537Y3710D01* X30529Y3706D01* X30522Y3701D01* X30516Y3695D01* X30511Y3687D01* X30507Y3679D01* Y5291D01* X30513Y5287D01* X30520Y5283D01* X30529Y5281D01* X30537Y5280D01* X30546Y5281D01* X30555Y5283D01* X30563Y5286D01* X30570Y5291D01* X30576Y5297D01* X30581Y5304D01* X30585Y5312D01* X30587Y5320D01* X30588Y5329D01* X30588Y5338D01* X30586Y5346D01* X30582Y5354D01* X30570Y5378D01* X30560Y5404D01* X30553Y5430D01* X30548Y5456D01* X30545Y5483D01* X30545Y5511D01* X30547Y5538D01* X30552Y5564D01* X30559Y5590D01* X30568Y5616D01* X30580Y5640D01* X30583Y5649D01* X30585Y5657D01* X30585Y5666D01* X30584Y5674D01* X30582Y5683D01* X30578Y5690D01* X30573Y5697D01* X30566Y5703D01* X30559Y5708D01* X30551Y5711D01* X30542Y5713D01* X30534Y5714D01* X30525Y5713D01* X30517Y5710D01* X30509Y5706D01* X30507Y5705D01* Y7281D01* X30509Y7281D01* X30517Y7280D01* X30526Y7281D01* X30535Y7283D01* X30543Y7286D01* X30550Y7291D01* X30556Y7297D01* X30561Y7304D01* X30565Y7312D01* X30567Y7320D01* X30568Y7329D01* X30568Y7338D01* X30566Y7346D01* X30562Y7354D01* X30550Y7378D01* X30540Y7404D01* X30533Y7430D01* X30528Y7456D01* X30525Y7483D01* X30525Y7511D01* X30527Y7538D01* X30532Y7564D01* X30539Y7590D01* X30548Y7616D01* X30560Y7640D01* X30563Y7649D01* X30565Y7657D01* X30565Y7666D01* X30564Y7674D01* X30562Y7683D01* X30558Y7690D01* X30553Y7697D01* X30546Y7703D01* X30539Y7708D01* X30531Y7711D01* X30522Y7713D01* X30514Y7714D01* X30507Y7713D01* Y9281D01* X30515Y9283D01* X30523Y9286D01* X30530Y9291D01* X30536Y9297D01* X30541Y9304D01* X30545Y9312D01* X30547Y9320D01* X30548Y9329D01* X30548Y9338D01* X30546Y9346D01* X30542Y9354D01* X30530Y9378D01* X30520Y9404D01* X30513Y9430D01* X30508Y9456D01* X30507Y9460D01* Y9539D01* X30512Y9564D01* X30519Y9590D01* X30528Y9616D01* X30540Y9640D01* X30543Y9649D01* X30545Y9657D01* X30545Y9666D01* X30544Y9674D01* X30542Y9683D01* X30538Y9690D01* X30533Y9697D01* X30526Y9703D01* X30519Y9708D01* X30511Y9711D01* X30507Y9712D01* Y11289D01* X30510Y11291D01* X30516Y11297D01* X30521Y11304D01* X30525Y11312D01* X30527Y11320D01* X30528Y11329D01* X30528Y11338D01* X30526Y11346D01* X30522Y11354D01* X30510Y11378D01* X30507Y11386D01* Y11614D01* X30508Y11616D01* X30520Y11640D01* X30523Y11649D01* X30525Y11657D01* X30525Y11666D01* X30524Y11674D01* X30522Y11683D01* X30518Y11690D01* X30513Y11697D01* X30507Y11702D01* Y13320D01* X30507Y13320D01* X30508Y13329D01* X30508Y13338D01* X30507Y13340D01* Y17791D01* X30508Y17790D01* X30511Y17782D01* X30516Y17774D01* X30522Y17768D01* X30529Y17763D01* X30537Y17759D01* X30545Y17757D01* X30554Y17756D01* X30563Y17756D01* X30571Y17758D01* X30579Y17762D01* X30603Y17774D01* X30629Y17784D01* X30655Y17791D01* X30681Y17796D01* X30708Y17799D01* X30735Y17799D01* X30762Y17797D01* X30789Y17793D01* X30815Y17785D01* X30832Y17779D01* Y17220D01* X30820Y17215D01* X30794Y17208D01* X30768Y17203D01* X30741Y17200D01* X30714Y17200D01* X30687Y17202D01* X30660Y17207D01* X30634Y17214D01* X30608Y17223D01* X30584Y17235D01* X30576Y17238D01* X30567Y17240D01* X30558Y17240D01* X30550Y17239D01* X30541Y17237D01* X30534Y17233D01* X30527Y17228D01* X30521Y17221D01* X30516Y17214D01* X30513Y17206D01* X30511Y17197D01* X30510Y17189D01* X30511Y17180D01* X30514Y17172D01* X30518Y17164D01* X30523Y17157D01* X30529Y17151D01* X30537Y17146D01* X30569Y17131D01* X30603Y17118D01* X30638Y17109D01* X30674Y17103D01* X30710Y17100D01* X30746Y17100D01* X30782Y17104D01* X30818Y17111D01* X30832Y17115D01* Y15890D01* X30831Y15890D01* X30795Y15896D01* X30759Y15899D01* X30723Y15899D01* X30687Y15895D01* X30651Y15889D01* X30617Y15879D01* X30583Y15866D01* X30551Y15849D01* X30543Y15845D01* X30537Y15839D01* X30532Y15832D01* X30528Y15824D01* X30526Y15815D01* X30525Y15807D01* X30525Y15798D01* X30528Y15790D01* X30531Y15782D01* X30536Y15774D01* X30542Y15768D01* X30549Y15763D01* X30557Y15759D01* X30565Y15757D01* X30574Y15756D01* X30583Y15756D01* X30591Y15758D01* X30599Y15762D01* X30623Y15774D01* X30649Y15784D01* X30675Y15791D01* X30701Y15796D01* X30728Y15799D01* X30755Y15799D01* X30782Y15797D01* X30809Y15793D01* X30832Y15786D01* Y15213D01* X30814Y15208D01* X30788Y15203D01* X30761Y15200D01* X30734Y15200D01* X30707Y15202D01* X30680Y15207D01* X30654Y15214D01* X30628Y15223D01* X30604Y15235D01* X30596Y15238D01* X30587Y15240D01* X30578Y15240D01* X30570Y15239D01* X30561Y15237D01* X30554Y15233D01* X30547Y15228D01* X30541Y15221D01* X30536Y15214D01* X30533Y15206D01* X30531Y15197D01* X30530Y15189D01* X30531Y15180D01* X30534Y15172D01* X30538Y15164D01* X30543Y15157D01* X30549Y15151D01* X30557Y15146D01* X30589Y15131D01* X30623Y15118D01* X30658Y15109D01* X30694Y15103D01* X30730Y15100D01* X30766Y15100D01* X30802Y15104D01* X30832Y15110D01* Y13893D01* X30815Y13896D01* X30779Y13899D01* X30743Y13899D01* X30707Y13895D01* X30671Y13889D01* X30637Y13879D01* X30603Y13866D01* X30571Y13849D01* X30563Y13845D01* X30557Y13839D01* X30552Y13832D01* X30548Y13824D01* X30546Y13815D01* X30545Y13807D01* X30545Y13798D01* X30548Y13790D01* X30551Y13782D01* X30556Y13774D01* X30562Y13768D01* X30569Y13763D01* X30577Y13759D01* X30585Y13757D01* X30594Y13756D01* X30603Y13756D01* X30611Y13758D01* X30619Y13762D01* X30643Y13774D01* X30669Y13784D01* X30695Y13791D01* X30721Y13796D01* X30748Y13799D01* X30775Y13799D01* X30802Y13797D01* X30829Y13793D01* X30832Y13792D01* Y13207D01* X30808Y13203D01* X30781Y13200D01* X30754Y13200D01* X30727Y13202D01* X30700Y13207D01* X30674Y13214D01* X30648Y13223D01* X30624Y13235D01* X30616Y13238D01* X30607Y13240D01* X30598Y13240D01* X30590Y13239D01* X30581Y13237D01* X30574Y13233D01* X30567Y13228D01* X30561Y13221D01* X30556Y13214D01* X30553Y13206D01* X30551Y13197D01* X30550Y13189D01* X30551Y13180D01* X30554Y13172D01* X30558Y13164D01* X30563Y13157D01* X30569Y13151D01* X30577Y13146D01* X30609Y13131D01* X30643Y13118D01* X30678Y13109D01* X30714Y13103D01* X30750Y13100D01* X30786Y13100D01* X30822Y13104D01* X30832Y13106D01* Y11897D01* X30799Y11899D01* X30763Y11899D01* X30727Y11895D01* X30691Y11889D01* X30657Y11879D01* X30623Y11866D01* X30591Y11849D01* X30583Y11845D01* X30577Y11839D01* X30572Y11832D01* X30568Y11824D01* X30566Y11815D01* X30565Y11807D01* X30565Y11798D01* X30568Y11790D01* X30571Y11782D01* X30576Y11774D01* X30582Y11768D01* X30589Y11763D01* X30597Y11759D01* X30605Y11757D01* X30614Y11756D01* X30623Y11756D01* X30631Y11758D01* X30639Y11762D01* X30663Y11774D01* X30689Y11784D01* X30715Y11791D01* X30741Y11796D01* X30768Y11799D01* X30795Y11799D01* X30822Y11797D01* X30832Y11795D01* Y11204D01* X30828Y11203D01* X30801Y11200D01* X30774Y11200D01* X30747Y11202D01* X30720Y11207D01* X30694Y11214D01* X30668Y11223D01* X30644Y11235D01* X30636Y11238D01* X30627Y11240D01* X30618Y11240D01* X30610Y11239D01* X30601Y11237D01* X30594Y11233D01* X30587Y11228D01* X30581Y11221D01* X30576Y11214D01* X30573Y11206D01* X30571Y11197D01* X30570Y11189D01* X30571Y11180D01* X30574Y11172D01* X30578Y11164D01* X30583Y11157D01* X30589Y11151D01* X30597Y11146D01* X30629Y11131D01* X30663Y11118D01* X30698Y11109D01* X30734Y11103D01* X30770Y11100D01* X30806Y11100D01* X30832Y11103D01* Y9898D01* X30819Y9899D01* X30783Y9899D01* X30747Y9895D01* X30711Y9889D01* X30677Y9879D01* X30643Y9866D01* X30611Y9849D01* X30603Y9845D01* X30597Y9839D01* X30592Y9832D01* X30588Y9824D01* X30586Y9815D01* X30585Y9807D01* X30585Y9798D01* X30588Y9790D01* X30591Y9782D01* X30596Y9774D01* X30602Y9768D01* X30609Y9763D01* X30617Y9759D01* X30625Y9757D01* X30634Y9756D01* X30643Y9756D01* X30651Y9758D01* X30659Y9762D01* X30683Y9774D01* X30709Y9784D01* X30735Y9791D01* X30761Y9796D01* X30788Y9799D01* X30815Y9799D01* X30832Y9798D01* Y9201D01* X30821Y9200D01* X30794Y9200D01* X30767Y9202D01* X30740Y9207D01* X30714Y9214D01* X30688Y9223D01* X30664Y9235D01* X30656Y9238D01* X30647Y9240D01* X30638Y9240D01* X30630Y9239D01* X30621Y9237D01* X30614Y9233D01* X30607Y9228D01* X30601Y9221D01* X30596Y9214D01* X30593Y9206D01* X30591Y9197D01* X30590Y9189D01* X30591Y9180D01* X30594Y9172D01* X30598Y9164D01* X30603Y9157D01* X30609Y9151D01* X30617Y9146D01* X30649Y9131D01* X30683Y9118D01* X30718Y9109D01* X30754Y9103D01* X30790Y9100D01* X30826Y9100D01* X30832Y9101D01* Y7899D01* X30803Y7899D01* X30767Y7895D01* X30731Y7889D01* X30697Y7879D01* X30663Y7866D01* X30631Y7849D01* X30623Y7845D01* X30617Y7839D01* X30612Y7832D01* X30608Y7824D01* X30606Y7815D01* X30605Y7807D01* X30605Y7798D01* X30608Y7790D01* X30611Y7782D01* X30616Y7774D01* X30622Y7768D01* X30629Y7763D01* X30637Y7759D01* X30645Y7757D01* X30654Y7756D01* X30663Y7756D01* X30671Y7758D01* X30679Y7762D01* X30703Y7774D01* X30729Y7784D01* X30755Y7791D01* X30781Y7796D01* X30808Y7799D01* X30832Y7799D01* Y7200D01* X30814Y7200D01* X30787Y7202D01* X30760Y7207D01* X30734Y7214D01* X30708Y7223D01* X30684Y7235D01* X30676Y7238D01* X30667Y7240D01* X30658Y7240D01* X30650Y7239D01* X30641Y7237D01* X30634Y7233D01* X30627Y7228D01* X30621Y7221D01* X30616Y7214D01* X30613Y7206D01* X30611Y7197D01* X30610Y7189D01* X30611Y7180D01* X30614Y7172D01* X30618Y7164D01* X30623Y7157D01* X30629Y7151D01* X30637Y7146D01* X30669Y7131D01* X30703Y7118D01* X30738Y7109D01* X30774Y7103D01* X30810Y7100D01* X30832Y7100D01* Y5899D01* X30823Y5899D01* X30787Y5895D01* X30751Y5889D01* X30717Y5879D01* X30683Y5866D01* X30651Y5849D01* X30643Y5845D01* X30637Y5839D01* X30632Y5832D01* X30628Y5824D01* X30626Y5815D01* X30625Y5807D01* X30625Y5798D01* X30628Y5790D01* X30631Y5782D01* X30636Y5774D01* X30642Y5768D01* X30649Y5763D01* X30657Y5759D01* X30665Y5757D01* X30674Y5756D01* X30683Y5756D01* X30691Y5758D01* X30699Y5762D01* X30723Y5774D01* X30749Y5784D01* X30775Y5791D01* X30801Y5796D01* X30828Y5799D01* X30832D01* Y5200D01* X30807Y5202D01* X30780Y5207D01* X30754Y5214D01* X30728Y5223D01* X30704Y5235D01* X30696Y5238D01* X30687Y5240D01* X30678Y5240D01* X30670Y5239D01* X30661Y5237D01* X30654Y5233D01* X30647Y5228D01* X30641Y5221D01* X30636Y5214D01* X30633Y5206D01* X30631Y5197D01* X30630Y5189D01* X30631Y5180D01* X30634Y5172D01* X30638Y5164D01* X30643Y5157D01* X30649Y5151D01* X30657Y5146D01* X30689Y5131D01* X30723Y5118D01* X30758Y5109D01* X30794Y5103D01* X30830Y5100D01* X30832D01* Y3898D01* X30807Y3895D01* X30771Y3889D01* X30737Y3879D01* X30703Y3866D01* X30671Y3849D01* X30663Y3845D01* X30657Y3839D01* X30652Y3832D01* X30648Y3824D01* X30646Y3815D01* X30645Y3807D01* X30645Y3798D01* X30648Y3790D01* X30651Y3782D01* X30656Y3774D01* X30662Y3768D01* X30669Y3763D01* X30677Y3759D01* X30685Y3757D01* X30694Y3756D01* X30703Y3756D01* X30711Y3758D01* X30719Y3762D01* X30743Y3774D01* X30769Y3784D01* X30795Y3791D01* X30821Y3796D01* X30832Y3798D01* Y3202D01* X30827Y3202D01* X30800Y3207D01* X30774Y3214D01* X30748Y3223D01* X30724Y3235D01* X30716Y3238D01* X30707Y3240D01* X30698Y3240D01* X30690Y3239D01* X30681Y3237D01* X30674Y3233D01* X30667Y3228D01* X30661Y3221D01* X30656Y3214D01* X30653Y3206D01* X30651Y3197D01* X30650Y3189D01* X30651Y3180D01* X30654Y3172D01* X30658Y3164D01* X30663Y3157D01* X30669Y3151D01* X30677Y3146D01* X30709Y3131D01* X30743Y3118D01* X30778Y3109D01* X30814Y3103D01* X30832Y3101D01* Y1896D01* X30827Y1895D01* X30791Y1889D01* X30757Y1879D01* X30723Y1866D01* X30691Y1849D01* X30683Y1845D01* X30677Y1839D01* X30672Y1832D01* X30668Y1824D01* X30666Y1815D01* X30665Y1807D01* X30665Y1798D01* X30668Y1790D01* X30671Y1782D01* X30676Y1774D01* X30682Y1768D01* X30689Y1763D01* X30697Y1759D01* X30705Y1757D01* X30714Y1756D01* X30723Y1756D01* X30731Y1758D01* X30739Y1762D01* X30763Y1774D01* X30789Y1784D01* X30815Y1791D01* X30832Y1795D01* Y1204D01* X30820Y1207D01* X30794Y1214D01* X30768Y1223D01* X30744Y1235D01* X30736Y1238D01* X30727Y1240D01* X30718Y1240D01* X30710Y1239D01* X30701Y1237D01* X30694Y1233D01* X30687Y1228D01* X30681Y1221D01* X30676Y1214D01* X30673Y1206D01* X30671Y1197D01* X30670Y1189D01* X30671Y1180D01* X30674Y1172D01* X30678Y1164D01* X30683Y1157D01* X30689Y1151D01* X30697Y1146D01* X30729Y1131D01* X30763Y1118D01* X30798Y1109D01* X30832Y1103D01* Y0D01* G37* G36* Y17884D02*X30811Y17890D01* X30775Y17896D01* X30739Y17899D01* X30703Y17899D01* X30667Y17895D01* X30631Y17889D01* X30597Y17879D01* X30563Y17866D01* X30531Y17849D01* X30523Y17845D01* X30517Y17839D01* X30512Y17832D01* X30508Y17824D01* X30507Y17821D01* Y19153D01* X30509Y19151D01* X30517Y19146D01* X30549Y19131D01* X30583Y19118D01* X30618Y19109D01* X30654Y19103D01* X30690Y19100D01* X30726Y19100D01* X30762Y19104D01* X30798Y19111D01* X30832Y19121D01* X30832D01* Y17884D01* G37* G36* Y19229D02*X30826Y19225D01* X30800Y19215D01* X30774Y19208D01* X30748Y19203D01* X30721Y19200D01* X30694Y19200D01* X30667Y19202D01* X30640Y19207D01* X30614Y19214D01* X30588Y19223D01* X30564Y19235D01* X30556Y19238D01* X30547Y19240D01* X30538Y19240D01* X30530Y19239D01* X30521Y19237D01* X30514Y19233D01* X30507Y19228D01* Y19764D01* X30509Y19763D01* X30517Y19759D01* X30525Y19757D01* X30534Y19756D01* X30543Y19756D01* X30551Y19758D01* X30559Y19762D01* X30583Y19774D01* X30609Y19784D01* X30635Y19791D01* X30661Y19796D01* X30688Y19799D01* X30715Y19799D01* X30742Y19797D01* X30769Y19793D01* X30795Y19785D01* X30821Y19776D01* X30832Y19771D01* Y19229D01* G37* G36* Y19878D02*X30826Y19881D01* X30791Y19890D01* X30755Y19896D01* X30719Y19899D01* X30683Y19899D01* X30647Y19895D01* X30611Y19889D01* X30577Y19879D01* X30543Y19866D01* X30511Y19849D01* X30507Y19847D01* Y21141D01* X30529Y21131D01* X30563Y21118D01* X30598Y21109D01* X30634Y21103D01* X30670Y21100D01* X30706Y21100D01* X30742Y21104D01* X30778Y21111D01* X30812Y21121D01* X30832Y21128D01* Y19878D01* G37* G36* Y21238D02*X30830Y21237D01* X30806Y21225D01* X30780Y21215D01* X30754Y21208D01* X30728Y21203D01* X30701Y21200D01* X30674Y21200D01* X30647Y21202D01* X30620Y21207D01* X30594Y21214D01* X30568Y21223D01* X30544Y21235D01* X30536Y21238D01* X30527Y21240D01* X30518Y21240D01* X30510Y21239D01* X30507Y21239D01* Y21756D01* X30514Y21756D01* X30523Y21756D01* X30531Y21758D01* X30539Y21762D01* X30563Y21774D01* X30589Y21784D01* X30615Y21791D01* X30641Y21796D01* X30668Y21799D01* X30695Y21799D01* X30722Y21797D01* X30749Y21793D01* X30775Y21785D01* X30801Y21776D01* X30825Y21764D01* X30832Y21762D01* Y21238D01* G37* G36* Y21871D02*X30806Y21881D01* X30771Y21890D01* X30735Y21896D01* X30699Y21899D01* X30663Y21899D01* X30627Y21895D01* X30591Y21889D01* X30557Y21879D01* X30523Y21866D01* X30507Y21858D01* Y23132D01* X30509Y23131D01* X30543Y23118D01* X30578Y23109D01* X30614Y23103D01* X30650Y23100D01* X30686Y23100D01* X30722Y23104D01* X30758Y23111D01* X30792Y23121D01* X30826Y23134D01* X30832Y23137D01* Y21871D01* G37* G36* Y23243D02*X30826Y23243D01* X30818Y23241D01* X30810Y23237D01* X30786Y23225D01* X30760Y23215D01* X30734Y23208D01* X30708Y23203D01* X30681Y23200D01* X30654Y23200D01* X30627Y23202D01* X30600Y23207D01* X30574Y23214D01* X30548Y23223D01* X30524Y23235D01* X30516Y23238D01* X30507Y23240D01* Y23757D01* X30511Y23758D01* X30519Y23762D01* X30543Y23774D01* X30569Y23784D01* X30595Y23791D01* X30621Y23796D01* X30648Y23799D01* X30675Y23799D01* X30702Y23797D01* X30729Y23793D01* X30755Y23785D01* X30781Y23776D01* X30805Y23764D01* X30813Y23761D01* X30822Y23759D01* X30831Y23759D01* X30832Y23759D01* Y23243D01* G37* G36* Y23862D02*X30820Y23868D01* X30786Y23881D01* X30751Y23890D01* X30715Y23896D01* X30679Y23899D01* X30643Y23899D01* X30607Y23895D01* X30571Y23889D01* X30537Y23879D01* X30507Y23867D01* Y25124D01* X30523Y25118D01* X30558Y25109D01* X30594Y25103D01* X30630Y25100D01* X30666Y25100D01* X30702Y25104D01* X30738Y25111D01* X30772Y25121D01* X30806Y25134D01* X30832Y25147D01* Y23862D01* G37* G36* Y25240D02*X30832Y25240D01* X30824Y25243D01* X30815Y25243D01* X30806Y25243D01* X30798Y25241D01* X30790Y25237D01* X30766Y25225D01* X30740Y25215D01* X30714Y25208D01* X30688Y25203D01* X30661Y25200D01* X30634Y25200D01* X30607Y25202D01* X30580Y25207D01* X30554Y25214D01* X30528Y25223D01* X30507Y25233D01* Y25766D01* X30523Y25774D01* X30549Y25784D01* X30575Y25791D01* X30601Y25796D01* X30628Y25799D01* X30655Y25799D01* X30682Y25797D01* X30709Y25793D01* X30735Y25785D01* X30761Y25776D01* X30785Y25764D01* X30793Y25761D01* X30802Y25759D01* X30811Y25759D01* X30819Y25760D01* X30828Y25762D01* X30832Y25765D01* Y25240D01* G37* G36* Y25853D02*X30832Y25853D01* X30800Y25868D01* X30766Y25881D01* X30731Y25890D01* X30695Y25896D01* X30659Y25899D01* X30623Y25899D01* X30587Y25895D01* X30551Y25889D01* X30517Y25879D01* X30507Y25875D01* Y27117D01* X30538Y27109D01* X30574Y27103D01* X30610Y27100D01* X30646Y27100D01* X30682Y27104D01* X30718Y27111D01* X30752Y27121D01* X30786Y27134D01* X30818Y27150D01* X30826Y27155D01* X30832Y27161D01* X30832Y27161D01* Y25853D01* G37* G36* Y27225D02*X30827Y27231D01* X30820Y27236D01* X30812Y27240D01* X30804Y27243D01* X30795Y27243D01* X30786Y27243D01* X30778Y27241D01* X30770Y27237D01* X30746Y27225D01* X30720Y27215D01* X30694Y27208D01* X30668Y27203D01* X30641Y27200D01* X30614Y27200D01* X30587Y27202D01* X30560Y27207D01* X30534Y27214D01* X30508Y27223D01* X30507Y27223D01* Y27776D01* X30529Y27784D01* X30555Y27791D01* X30581Y27796D01* X30608Y27799D01* X30635Y27799D01* X30662Y27797D01* X30689Y27793D01* X30715Y27785D01* X30741Y27776D01* X30765Y27764D01* X30773Y27761D01* X30782Y27759D01* X30791Y27759D01* X30799Y27760D01* X30808Y27762D01* X30815Y27766D01* X30822Y27772D01* X30828Y27778D01* X30832Y27784D01* Y27225D01* G37* G36* Y40000D02*X30912D01* Y37596D01* X30904Y37627D01* X30890Y37661D01* X30874Y37694D01* X30870Y37701D01* X30864Y37707D01* X30856Y37712D01* X30849Y37716D01* X30840Y37718D01* X30832Y37719D01* Y39289D01* X30840Y39293D01* X30847Y39298D01* X30853Y39305D01* X30858Y39312D01* X30873Y39344D01* X30886Y39378D01* X30895Y39413D01* X30901Y39449D01* X30904Y39485D01* X30904Y39521D01* X30900Y39557D01* X30894Y39593D01* X30884Y39627D01* X30870Y39661D01* X30854Y39694D01* X30850Y39701D01* X30844Y39707D01* X30836Y39712D01* X30832Y39714D01* Y40000D01* G37* G36* X30912Y0D02*X30832D01* Y1103D01* X30834Y1103D01* X30870Y1100D01* X30906Y1100D01* X30912Y1101D01* Y0D01* G37* G36* Y1201D02*X30901Y1200D01* X30874Y1200D01* X30847Y1202D01* X30832Y1204D01* Y1795D01* X30841Y1796D01* X30868Y1799D01* X30895Y1799D01* X30912Y1798D01* Y1201D01* G37* G36* Y1898D02*X30899Y1899D01* X30863Y1899D01* X30832Y1896D01* Y3101D01* X30850Y3100D01* X30886Y3100D01* X30912Y3103D01* Y1898D01* G37* G36* Y3204D02*X30908Y3203D01* X30881Y3200D01* X30854Y3200D01* X30832Y3202D01* Y3798D01* X30848Y3799D01* X30875Y3799D01* X30902Y3797D01* X30912Y3795D01* Y3204D01* G37* G36* Y3897D02*X30879Y3899D01* X30843Y3899D01* X30832Y3898D01* Y5100D01* X30866Y5100D01* X30902Y5104D01* X30912Y5106D01* Y3897D01* G37* G36* Y5207D02*X30888Y5203D01* X30861Y5200D01* X30834Y5200D01* X30832Y5200D01* Y5799D01* X30855Y5799D01* X30882Y5797D01* X30909Y5793D01* X30912Y5792D01* Y5207D01* G37* G36* Y5893D02*X30895Y5896D01* X30859Y5899D01* X30832Y5899D01* Y7100D01* X30846Y7100D01* X30882Y7104D01* X30912Y7110D01* Y5893D01* G37* G36* Y7213D02*X30894Y7208D01* X30868Y7203D01* X30841Y7200D01* X30832Y7200D01* Y7799D01* X30835D01* X30862Y7797D01* X30889Y7793D01* X30912Y7786D01* Y7213D01* G37* G36* Y7890D02*X30911Y7890D01* X30875Y7896D01* X30839Y7899D01* X30832Y7899D01* Y9101D01* X30862Y9104D01* X30898Y9111D01* X30912Y9115D01* Y7890D01* G37* G36* Y9220D02*X30900Y9215D01* X30874Y9208D01* X30848Y9203D01* X30832Y9201D01* Y9798D01* X30842Y9797D01* X30869Y9793D01* X30895Y9785D01* X30912Y9779D01* Y9220D01* G37* G36* Y9884D02*X30891Y9890D01* X30855Y9896D01* X30832Y9898D01* Y11103D01* X30842Y11104D01* X30878Y11111D01* X30912Y11121D01* X30912D01* Y9884D01* G37* G36* Y11229D02*X30906Y11225D01* X30880Y11215D01* X30854Y11208D01* X30832Y11204D01* Y11795D01* X30849Y11793D01* X30875Y11785D01* X30901Y11776D01* X30912Y11771D01* Y11229D01* G37* G36* Y11878D02*X30906Y11881D01* X30871Y11890D01* X30835Y11896D01* X30832Y11897D01* Y13106D01* X30858Y13111D01* X30892Y13121D01* X30912Y13128D01* Y11878D01* G37* G36* Y13238D02*X30910Y13237D01* X30886Y13225D01* X30860Y13215D01* X30834Y13208D01* X30832Y13207D01* Y13792D01* X30855Y13785D01* X30881Y13776D01* X30905Y13764D01* X30912Y13762D01* Y13238D01* G37* G36* Y13871D02*X30886Y13881D01* X30851Y13890D01* X30832Y13893D01* Y15110D01* X30838Y15111D01* X30872Y15121D01* X30906Y15134D01* X30912Y15137D01* Y13871D01* G37* G36* Y15243D02*X30906Y15243D01* X30898Y15241D01* X30890Y15237D01* X30866Y15225D01* X30840Y15215D01* X30832Y15213D01* Y15786D01* X30835Y15785D01* X30861Y15776D01* X30885Y15764D01* X30893Y15761D01* X30902Y15759D01* X30911Y15759D01* X30912Y15759D01* Y15243D01* G37* G36* Y15862D02*X30900Y15868D01* X30866Y15881D01* X30832Y15890D01* Y17115D01* X30852Y17121D01* X30886Y17134D01* X30912Y17147D01* Y15862D01* G37* G36* Y17240D02*X30912Y17240D01* X30904Y17243D01* X30895Y17243D01* X30886Y17243D01* X30878Y17241D01* X30870Y17237D01* X30846Y17225D01* X30832Y17220D01* Y17779D01* X30841Y17776D01* X30865Y17764D01* X30873Y17761D01* X30882Y17759D01* X30891Y17759D01* X30899Y17760D01* X30908Y17762D01* X30912Y17765D01* Y17240D01* G37* G36* Y17853D02*X30912Y17853D01* X30880Y17868D01* X30846Y17881D01* X30832Y17884D01* Y19121D01* X30866Y19134D01* X30898Y19150D01* X30906Y19155D01* X30912Y19161D01* X30912Y19161D01* Y17853D01* G37* G36* Y19225D02*X30907Y19231D01* X30900Y19236D01* X30892Y19240D01* X30884Y19243D01* X30875Y19243D01* X30866Y19243D01* X30858Y19241D01* X30850Y19237D01* X30832Y19229D01* Y19771D01* X30845Y19764D01* X30853Y19761D01* X30862Y19759D01* X30871Y19759D01* X30879Y19760D01* X30888Y19762D01* X30895Y19766D01* X30902Y19772D01* X30908Y19778D01* X30912Y19784D01* Y19225D01* G37* G36* Y19833D02*X30911Y19835D01* X30906Y19842D01* X30900Y19848D01* X30892Y19853D01* X30860Y19868D01* X30832Y19878D01* Y21128D01* X30846Y21134D01* X30878Y21150D01* X30886Y21155D01* X30892Y21161D01* X30897Y21168D01* X30901Y21175D01* X30903Y21184D01* X30904Y21193D01* X30904Y21201D01* X30901Y21210D01* X30898Y21218D01* X30893Y21225D01* X30887Y21231D01* X30880Y21236D01* X30872Y21240D01* X30864Y21243D01* X30855Y21243D01* X30846Y21243D01* X30838Y21241D01* X30832Y21238D01* Y21762D01* X30833Y21761D01* X30842Y21759D01* X30851Y21759D01* X30859Y21760D01* X30868Y21762D01* X30875Y21766D01* X30882Y21772D01* X30888Y21778D01* X30893Y21785D01* X30896Y21793D01* X30898Y21802D01* X30899Y21810D01* X30898Y21819D01* X30895Y21827D01* X30891Y21835D01* X30886Y21842D01* X30880Y21848D01* X30872Y21853D01* X30840Y21868D01* X30832Y21871D01* Y23137D01* X30858Y23150D01* X30866Y23155D01* X30872Y23161D01* X30877Y23168D01* X30881Y23175D01* X30883Y23184D01* X30884Y23193D01* X30884Y23201D01* X30881Y23210D01* X30878Y23218D01* X30873Y23225D01* X30867Y23231D01* X30860Y23236D01* X30852Y23240D01* X30844Y23243D01* X30835Y23243D01* X30832Y23243D01* Y23759D01* X30839Y23760D01* X30848Y23762D01* X30855Y23766D01* X30862Y23772D01* X30868Y23778D01* X30873Y23785D01* X30876Y23793D01* X30878Y23802D01* X30879Y23810D01* X30878Y23819D01* X30875Y23827D01* X30871Y23835D01* X30866Y23842D01* X30860Y23848D01* X30852Y23853D01* X30832Y23862D01* Y25147D01* X30838Y25150D01* X30846Y25155D01* X30852Y25161D01* X30857Y25168D01* X30861Y25175D01* X30863Y25184D01* X30864Y25193D01* X30864Y25201D01* X30861Y25210D01* X30858Y25218D01* X30853Y25225D01* X30847Y25231D01* X30840Y25236D01* X30832Y25240D01* Y25765D01* X30835Y25766D01* X30842Y25772D01* X30848Y25778D01* X30853Y25785D01* X30856Y25793D01* X30858Y25802D01* X30859Y25810D01* X30858Y25819D01* X30855Y25827D01* X30851Y25835D01* X30846Y25842D01* X30840Y25848D01* X30832Y25853D01* Y27161D01* X30837Y27168D01* X30841Y27175D01* X30843Y27184D01* X30844Y27193D01* X30844Y27201D01* X30841Y27210D01* X30838Y27218D01* X30833Y27225D01* X30832Y27225D01* Y27784D01* X30833Y27785D01* X30836Y27793D01* X30838Y27802D01* X30839Y27810D01* X30838Y27819D01* X30835Y27827D01* X30832Y27833D01* Y33307D01* X30836Y33302D01* X30843Y33296D01* X30850Y33291D01* X30858Y33288D01* X30867Y33286D01* X30875Y33285D01* X30884Y33286D01* X30892Y33289D01* X30900Y33293D01* X30907Y33298D01* X30912Y33304D01* Y31714D01* X30909Y31716D01* X30900Y31718D01* X30892Y31719D01* X30883Y31719D01* X30874Y31717D01* X30866Y31713D01* X30859Y31708D01* X30853Y31702D01* X30848Y31695D01* X30844Y31687D01* X30842Y31679D01* X30841Y31670D01* X30841Y31661D01* X30843Y31653D01* X30847Y31645D01* X30859Y31621D01* X30869Y31595D01* X30876Y31569D01* X30881Y31543D01* X30884Y31516D01* X30884Y31489D01* X30882Y31462D01* X30877Y31435D01* X30870Y31409D01* X30861Y31383D01* X30849Y31359D01* X30846Y31351D01* X30844Y31342D01* X30844Y31333D01* X30845Y31325D01* X30847Y31317D01* X30851Y31309D01* X30856Y31302D01* X30863Y31296D01* X30870Y31291D01* X30878Y31288D01* X30887Y31286D01* X30895Y31285D01* X30904Y31286D01* X30912Y31289D01* X30912Y31289D01* Y29719D01* X30912Y29719D01* X30903Y29719D01* X30894Y29717D01* X30886Y29713D01* X30879Y29708D01* X30873Y29702D01* X30868Y29695D01* X30864Y29687D01* X30862Y29679D01* X30861Y29670D01* X30861Y29661D01* X30863Y29653D01* X30867Y29645D01* X30879Y29621D01* X30889Y29595D01* X30896Y29569D01* X30901Y29543D01* X30904Y29516D01* X30904Y29489D01* X30902Y29462D01* X30897Y29435D01* X30890Y29409D01* X30881Y29383D01* X30869Y29359D01* X30866Y29351D01* X30864Y29342D01* X30864Y29333D01* X30865Y29325D01* X30867Y29317D01* X30871Y29309D01* X30876Y29302D01* X30883Y29296D01* X30890Y29291D01* X30898Y29288D01* X30907Y29286D01* X30912Y29286D01* Y27716D01* X30906Y27713D01* X30899Y27708D01* X30893Y27702D01* X30888Y27695D01* X30884Y27687D01* X30882Y27679D01* X30881Y27670D01* X30881Y27661D01* X30883Y27653D01* X30887Y27645D01* X30899Y27621D01* X30909Y27595D01* X30912Y27583D01* Y27416D01* X30910Y27409D01* X30901Y27383D01* X30889Y27359D01* X30886Y27351D01* X30884Y27342D01* X30884Y27333D01* X30885Y27325D01* X30887Y27317D01* X30891Y27309D01* X30896Y27302D01* X30903Y27296D01* X30910Y27291D01* X30912Y27290D01* Y25701D01* X30908Y25695D01* X30904Y25687D01* X30902Y25679D01* X30901Y25670D01* X30901Y25661D01* X30903Y25653D01* X30907Y25645D01* X30912Y25634D01* Y25365D01* X30909Y25359D01* X30906Y25351D01* X30904Y25342D01* X30904Y25333D01* X30905Y25325D01* X30907Y25317D01* X30911Y25309D01* X30912Y25307D01* Y19833D01* G37* G36* Y33696D02*X30910Y33701D01* X30904Y33707D01* X30896Y33712D01* X30889Y33716D01* X30880Y33718D01* X30872Y33719D01* X30863Y33719D01* X30854Y33717D01* X30846Y33713D01* X30839Y33708D01* X30833Y33702D01* X30832Y33701D01* Y35290D01* X30838Y35288D01* X30847Y35286D01* X30855Y35285D01* X30864Y35286D01* X30872Y35289D01* X30880Y35293D01* X30887Y35298D01* X30893Y35305D01* X30898Y35312D01* X30912Y35343D01* Y33696D01* G37* G36* Y35656D02*X30910Y35661D01* X30894Y35694D01* X30890Y35701D01* X30884Y35707D01* X30876Y35712D01* X30869Y35716D01* X30860Y35718D01* X30852Y35719D01* X30843Y35719D01* X30834Y35717D01* X30832Y35716D01* Y37286D01* X30835Y37285D01* X30844Y37286D01* X30852Y37289D01* X30860Y37293D01* X30867Y37298D01* X30873Y37305D01* X30878Y37312D01* X30893Y37344D01* X30906Y37378D01* X30912Y37404D01* Y35656D01* G37* G36* Y40000D02*X30992D01* Y29596D01* X30984Y29627D01* X30970Y29661D01* X30954Y29694D01* X30950Y29701D01* X30944Y29707D01* X30936Y29712D01* X30929Y29716D01* X30920Y29718D01* X30912Y29719D01* Y31289D01* X30920Y31293D01* X30927Y31298D01* X30933Y31305D01* X30938Y31312D01* X30953Y31344D01* X30966Y31378D01* X30975Y31413D01* X30981Y31449D01* X30984Y31485D01* X30984Y31521D01* X30980Y31557D01* X30974Y31593D01* X30964Y31627D01* X30950Y31661D01* X30934Y31694D01* X30930Y31701D01* X30924Y31707D01* X30916Y31712D01* X30912Y31714D01* Y33304D01* X30913Y33305D01* X30918Y33312D01* X30933Y33344D01* X30946Y33378D01* X30955Y33413D01* X30961Y33449D01* X30964Y33485D01* X30964Y33521D01* X30960Y33557D01* X30954Y33593D01* X30944Y33627D01* X30930Y33661D01* X30914Y33694D01* X30912Y33696D01* Y35343D01* X30913Y35344D01* X30926Y35378D01* X30935Y35413D01* X30941Y35449D01* X30944Y35485D01* X30944Y35521D01* X30940Y35557D01* X30934Y35593D01* X30924Y35627D01* X30912Y35656D01* Y37404D01* X30915Y37413D01* X30921Y37449D01* X30924Y37485D01* X30924Y37521D01* X30920Y37557D01* X30914Y37593D01* X30912Y37596D01* Y40000D01* G37* G36* X30992Y0D02*X30912D01* Y1101D01* X30942Y1104D01* X30978Y1111D01* X30992Y1115D01* Y0D01* G37* G36* Y1220D02*X30980Y1215D01* X30954Y1208D01* X30928Y1203D01* X30912Y1201D01* Y1798D01* X30922Y1797D01* X30949Y1793D01* X30975Y1785D01* X30992Y1779D01* Y1220D01* G37* G36* Y1884D02*X30971Y1890D01* X30935Y1896D01* X30912Y1898D01* Y3103D01* X30922Y3104D01* X30958Y3111D01* X30992Y3121D01* X30992D01* Y1884D01* G37* G36* Y3229D02*X30986Y3225D01* X30960Y3215D01* X30934Y3208D01* X30912Y3204D01* Y3795D01* X30929Y3793D01* X30955Y3785D01* X30981Y3776D01* X30992Y3771D01* Y3229D01* G37* G36* Y3878D02*X30986Y3881D01* X30951Y3890D01* X30915Y3896D01* X30912Y3897D01* Y5106D01* X30938Y5111D01* X30972Y5121D01* X30992Y5128D01* Y3878D01* G37* G36* Y5238D02*X30990Y5237D01* X30966Y5225D01* X30940Y5215D01* X30914Y5208D01* X30912Y5207D01* Y5792D01* X30935Y5785D01* X30961Y5776D01* X30985Y5764D01* X30992Y5762D01* Y5238D01* G37* G36* Y5871D02*X30966Y5881D01* X30931Y5890D01* X30912Y5893D01* Y7110D01* X30918Y7111D01* X30952Y7121D01* X30986Y7134D01* X30992Y7137D01* Y5871D01* G37* G36* Y7243D02*X30986Y7243D01* X30978Y7241D01* X30970Y7237D01* X30946Y7225D01* X30920Y7215D01* X30912Y7213D01* Y7786D01* X30915Y7785D01* X30941Y7776D01* X30965Y7764D01* X30973Y7761D01* X30982Y7759D01* X30991Y7759D01* X30992Y7759D01* Y7243D01* G37* G36* Y7862D02*X30980Y7868D01* X30946Y7881D01* X30912Y7890D01* Y9115D01* X30932Y9121D01* X30966Y9134D01* X30992Y9147D01* Y7862D01* G37* G36* Y9240D02*X30992Y9240D01* X30984Y9243D01* X30975Y9243D01* X30966Y9243D01* X30958Y9241D01* X30950Y9237D01* X30926Y9225D01* X30912Y9220D01* Y9779D01* X30921Y9776D01* X30945Y9764D01* X30953Y9761D01* X30962Y9759D01* X30971Y9759D01* X30979Y9760D01* X30988Y9762D01* X30992Y9765D01* Y9240D01* G37* G36* Y9853D02*X30992Y9853D01* X30960Y9868D01* X30926Y9881D01* X30912Y9884D01* Y11121D01* X30946Y11134D01* X30978Y11150D01* X30986Y11155D01* X30992Y11161D01* X30992Y11161D01* Y9853D01* G37* G36* Y11225D02*X30987Y11231D01* X30980Y11236D01* X30972Y11240D01* X30964Y11243D01* X30955Y11243D01* X30946Y11243D01* X30938Y11241D01* X30930Y11237D01* X30912Y11229D01* Y11771D01* X30925Y11764D01* X30933Y11761D01* X30942Y11759D01* X30951Y11759D01* X30959Y11760D01* X30968Y11762D01* X30975Y11766D01* X30982Y11772D01* X30988Y11778D01* X30992Y11784D01* Y11225D01* G37* G36* Y11833D02*X30991Y11835D01* X30986Y11842D01* X30980Y11848D01* X30972Y11853D01* X30940Y11868D01* X30912Y11878D01* Y13128D01* X30926Y13134D01* X30958Y13150D01* X30966Y13155D01* X30972Y13161D01* X30977Y13168D01* X30981Y13175D01* X30983Y13184D01* X30984Y13193D01* X30984Y13201D01* X30981Y13210D01* X30978Y13218D01* X30973Y13225D01* X30967Y13231D01* X30960Y13236D01* X30952Y13240D01* X30944Y13243D01* X30935Y13243D01* X30926Y13243D01* X30918Y13241D01* X30912Y13238D01* Y13762D01* X30913Y13761D01* X30922Y13759D01* X30931Y13759D01* X30939Y13760D01* X30948Y13762D01* X30955Y13766D01* X30962Y13772D01* X30968Y13778D01* X30973Y13785D01* X30976Y13793D01* X30978Y13802D01* X30979Y13810D01* X30978Y13819D01* X30975Y13827D01* X30971Y13835D01* X30966Y13842D01* X30960Y13848D01* X30952Y13853D01* X30920Y13868D01* X30912Y13871D01* Y15137D01* X30938Y15150D01* X30946Y15155D01* X30952Y15161D01* X30957Y15168D01* X30961Y15175D01* X30963Y15184D01* X30964Y15193D01* X30964Y15201D01* X30961Y15210D01* X30958Y15218D01* X30953Y15225D01* X30947Y15231D01* X30940Y15236D01* X30932Y15240D01* X30924Y15243D01* X30915Y15243D01* X30912Y15243D01* Y15759D01* X30919Y15760D01* X30928Y15762D01* X30935Y15766D01* X30942Y15772D01* X30948Y15778D01* X30953Y15785D01* X30956Y15793D01* X30958Y15802D01* X30959Y15810D01* X30958Y15819D01* X30955Y15827D01* X30951Y15835D01* X30946Y15842D01* X30940Y15848D01* X30932Y15853D01* X30912Y15862D01* Y17147D01* X30918Y17150D01* X30926Y17155D01* X30932Y17161D01* X30937Y17168D01* X30941Y17175D01* X30943Y17184D01* X30944Y17193D01* X30944Y17201D01* X30941Y17210D01* X30938Y17218D01* X30933Y17225D01* X30927Y17231D01* X30920Y17236D01* X30912Y17240D01* Y17765D01* X30915Y17766D01* X30922Y17772D01* X30928Y17778D01* X30933Y17785D01* X30936Y17793D01* X30938Y17802D01* X30939Y17810D01* X30938Y17819D01* X30935Y17827D01* X30931Y17835D01* X30926Y17842D01* X30920Y17848D01* X30912Y17853D01* Y19161D01* X30917Y19168D01* X30921Y19175D01* X30923Y19184D01* X30924Y19193D01* X30924Y19201D01* X30921Y19210D01* X30918Y19218D01* X30913Y19225D01* X30912Y19225D01* Y19784D01* X30913Y19785D01* X30916Y19793D01* X30918Y19802D01* X30919Y19810D01* X30918Y19819D01* X30915Y19827D01* X30912Y19833D01* Y25307D01* X30916Y25302D01* X30923Y25296D01* X30930Y25291D01* X30938Y25288D01* X30947Y25286D01* X30955Y25285D01* X30964Y25286D01* X30972Y25289D01* X30980Y25293D01* X30987Y25298D01* X30992Y25304D01* Y23714D01* X30989Y23716D01* X30980Y23718D01* X30972Y23719D01* X30963Y23719D01* X30954Y23717D01* X30946Y23713D01* X30939Y23708D01* X30933Y23702D01* X30928Y23695D01* X30924Y23687D01* X30922Y23679D01* X30921Y23670D01* X30921Y23661D01* X30923Y23653D01* X30927Y23645D01* X30939Y23621D01* X30949Y23595D01* X30956Y23569D01* X30961Y23543D01* X30964Y23516D01* X30964Y23489D01* X30962Y23462D01* X30957Y23435D01* X30950Y23409D01* X30941Y23383D01* X30929Y23359D01* X30926Y23351D01* X30924Y23342D01* X30924Y23333D01* X30925Y23325D01* X30927Y23317D01* X30931Y23309D01* X30936Y23302D01* X30943Y23296D01* X30950Y23291D01* X30958Y23288D01* X30967Y23286D01* X30975Y23285D01* X30984Y23286D01* X30992Y23289D01* X30992Y23289D01* Y21719D01* X30992Y21719D01* X30983Y21719D01* X30974Y21717D01* X30966Y21713D01* X30959Y21708D01* X30953Y21702D01* X30948Y21695D01* X30944Y21687D01* X30942Y21679D01* X30941Y21670D01* X30941Y21661D01* X30943Y21653D01* X30947Y21645D01* X30959Y21621D01* X30969Y21595D01* X30976Y21569D01* X30981Y21543D01* X30984Y21516D01* X30984Y21489D01* X30982Y21462D01* X30977Y21435D01* X30970Y21409D01* X30961Y21383D01* X30949Y21359D01* X30946Y21351D01* X30944Y21342D01* X30944Y21333D01* X30945Y21325D01* X30947Y21317D01* X30951Y21309D01* X30956Y21302D01* X30963Y21296D01* X30970Y21291D01* X30978Y21288D01* X30987Y21286D01* X30992Y21286D01* Y19716D01* X30986Y19713D01* X30979Y19708D01* X30973Y19702D01* X30968Y19695D01* X30964Y19687D01* X30962Y19679D01* X30961Y19670D01* X30961Y19661D01* X30963Y19653D01* X30967Y19645D01* X30979Y19621D01* X30989Y19595D01* X30992Y19583D01* Y19416D01* X30990Y19409D01* X30981Y19383D01* X30969Y19359D01* X30966Y19351D01* X30964Y19342D01* X30964Y19333D01* X30965Y19325D01* X30967Y19317D01* X30971Y19309D01* X30976Y19302D01* X30983Y19296D01* X30990Y19291D01* X30992Y19290D01* Y17701D01* X30988Y17695D01* X30984Y17687D01* X30982Y17679D01* X30981Y17670D01* X30981Y17661D01* X30983Y17653D01* X30987Y17645D01* X30992Y17634D01* Y17365D01* X30989Y17359D01* X30986Y17351D01* X30984Y17342D01* X30984Y17333D01* X30985Y17325D01* X30987Y17317D01* X30991Y17309D01* X30992Y17307D01* Y11833D01* G37* G36* Y25696D02*X30990Y25701D01* X30984Y25707D01* X30976Y25712D01* X30969Y25716D01* X30960Y25718D01* X30952Y25719D01* X30943Y25719D01* X30934Y25717D01* X30926Y25713D01* X30919Y25708D01* X30913Y25702D01* X30912Y25701D01* Y27290D01* X30918Y27288D01* X30927Y27286D01* X30935Y27285D01* X30944Y27286D01* X30952Y27289D01* X30960Y27293D01* X30967Y27298D01* X30973Y27305D01* X30978Y27312D01* X30992Y27343D01* Y25696D01* G37* G36* Y27656D02*X30990Y27661D01* X30974Y27694D01* X30970Y27701D01* X30964Y27707D01* X30956Y27712D01* X30949Y27716D01* X30940Y27718D01* X30932Y27719D01* X30923Y27719D01* X30914Y27717D01* X30912Y27716D01* Y29286D01* X30915Y29285D01* X30924Y29286D01* X30932Y29289D01* X30940Y29293D01* X30947Y29298D01* X30953Y29305D01* X30958Y29312D01* X30973Y29344D01* X30986Y29378D01* X30992Y29404D01* Y27656D01* G37* G36* Y40000D02*X31072D01* Y21596D01* X31064Y21627D01* X31050Y21661D01* X31034Y21694D01* X31030Y21701D01* X31024Y21707D01* X31016Y21712D01* X31009Y21716D01* X31000Y21718D01* X30992Y21719D01* Y23289D01* X31000Y23293D01* X31007Y23298D01* X31013Y23305D01* X31018Y23312D01* X31033Y23344D01* X31046Y23378D01* X31055Y23413D01* X31061Y23449D01* X31064Y23485D01* X31064Y23521D01* X31060Y23557D01* X31054Y23593D01* X31044Y23627D01* X31030Y23661D01* X31014Y23694D01* X31010Y23701D01* X31004Y23707D01* X30996Y23712D01* X30992Y23714D01* Y25304D01* X30993Y25305D01* X30998Y25312D01* X31013Y25344D01* X31026Y25378D01* X31035Y25413D01* X31041Y25449D01* X31044Y25485D01* X31044Y25521D01* X31040Y25557D01* X31034Y25593D01* X31024Y25627D01* X31010Y25661D01* X30994Y25694D01* X30992Y25696D01* Y27343D01* X30993Y27344D01* X31006Y27378D01* X31015Y27413D01* X31021Y27449D01* X31024Y27485D01* X31024Y27521D01* X31020Y27557D01* X31014Y27593D01* X31004Y27627D01* X30992Y27656D01* Y29404D01* X30995Y29413D01* X31001Y29449D01* X31004Y29485D01* X31004Y29521D01* X31000Y29557D01* X30994Y29593D01* X30992Y29596D01* Y40000D01* G37* G36* X31072Y0D02*X30992D01* Y1115D01* X31012Y1121D01* X31046Y1134D01* X31072Y1147D01* Y0D01* G37* G36* Y1240D02*X31072Y1240D01* X31064Y1243D01* X31055Y1243D01* X31046Y1243D01* X31038Y1241D01* X31030Y1237D01* X31006Y1225D01* X30992Y1220D01* Y1779D01* X31001Y1776D01* X31025Y1764D01* X31033Y1761D01* X31042Y1759D01* X31051Y1759D01* X31059Y1760D01* X31068Y1762D01* X31072Y1765D01* Y1240D01* G37* G36* Y1853D02*X31072Y1853D01* X31040Y1868D01* X31006Y1881D01* X30992Y1884D01* Y3121D01* X31026Y3134D01* X31058Y3150D01* X31066Y3155D01* X31072Y3161D01* X31072Y3161D01* Y1853D01* G37* G36* Y3225D02*X31067Y3231D01* X31060Y3236D01* X31052Y3240D01* X31044Y3243D01* X31035Y3243D01* X31026Y3243D01* X31018Y3241D01* X31010Y3237D01* X30992Y3229D01* Y3771D01* X31005Y3764D01* X31013Y3761D01* X31022Y3759D01* X31031Y3759D01* X31039Y3760D01* X31048Y3762D01* X31055Y3766D01* X31062Y3772D01* X31068Y3778D01* X31072Y3784D01* Y3225D01* G37* G36* Y3833D02*X31071Y3835D01* X31066Y3842D01* X31060Y3848D01* X31052Y3853D01* X31020Y3868D01* X30992Y3878D01* Y5128D01* X31006Y5134D01* X31038Y5150D01* X31046Y5155D01* X31052Y5161D01* X31057Y5168D01* X31061Y5175D01* X31063Y5184D01* X31064Y5193D01* X31064Y5201D01* X31061Y5210D01* X31058Y5218D01* X31053Y5225D01* X31047Y5231D01* X31040Y5236D01* X31032Y5240D01* X31024Y5243D01* X31015Y5243D01* X31006Y5243D01* X30998Y5241D01* X30992Y5238D01* Y5762D01* X30993Y5761D01* X31002Y5759D01* X31011Y5759D01* X31019Y5760D01* X31028Y5762D01* X31035Y5766D01* X31042Y5772D01* X31048Y5778D01* X31053Y5785D01* X31056Y5793D01* X31058Y5802D01* X31059Y5810D01* X31058Y5819D01* X31055Y5827D01* X31051Y5835D01* X31046Y5842D01* X31040Y5848D01* X31032Y5853D01* X31000Y5868D01* X30992Y5871D01* Y7137D01* X31018Y7150D01* X31026Y7155D01* X31032Y7161D01* X31037Y7168D01* X31041Y7175D01* X31043Y7184D01* X31044Y7193D01* X31044Y7201D01* X31041Y7210D01* X31038Y7218D01* X31033Y7225D01* X31027Y7231D01* X31020Y7236D01* X31012Y7240D01* X31004Y7243D01* X30995Y7243D01* X30992Y7243D01* Y7759D01* X30999Y7760D01* X31008Y7762D01* X31015Y7766D01* X31022Y7772D01* X31028Y7778D01* X31033Y7785D01* X31036Y7793D01* X31038Y7802D01* X31039Y7810D01* X31038Y7819D01* X31035Y7827D01* X31031Y7835D01* X31026Y7842D01* X31020Y7848D01* X31012Y7853D01* X30992Y7862D01* Y9147D01* X30998Y9150D01* X31006Y9155D01* X31012Y9161D01* X31017Y9168D01* X31021Y9175D01* X31023Y9184D01* X31024Y9193D01* X31024Y9201D01* X31021Y9210D01* X31018Y9218D01* X31013Y9225D01* X31007Y9231D01* X31000Y9236D01* X30992Y9240D01* Y9765D01* X30995Y9766D01* X31002Y9772D01* X31008Y9778D01* X31013Y9785D01* X31016Y9793D01* X31018Y9802D01* X31019Y9810D01* X31018Y9819D01* X31015Y9827D01* X31011Y9835D01* X31006Y9842D01* X31000Y9848D01* X30992Y9853D01* Y11161D01* X30997Y11168D01* X31001Y11175D01* X31003Y11184D01* X31004Y11193D01* X31004Y11201D01* X31001Y11210D01* X30998Y11218D01* X30993Y11225D01* X30992Y11225D01* Y11784D01* X30993Y11785D01* X30996Y11793D01* X30998Y11802D01* X30999Y11810D01* X30998Y11819D01* X30995Y11827D01* X30992Y11833D01* Y17307D01* X30996Y17302D01* X31003Y17296D01* X31010Y17291D01* X31018Y17288D01* X31027Y17286D01* X31035Y17285D01* X31044Y17286D01* X31052Y17289D01* X31060Y17293D01* X31067Y17298D01* X31072Y17304D01* Y15714D01* X31069Y15716D01* X31060Y15718D01* X31052Y15719D01* X31043Y15719D01* X31034Y15717D01* X31026Y15713D01* X31019Y15708D01* X31013Y15702D01* X31008Y15695D01* X31004Y15687D01* X31002Y15679D01* X31001Y15670D01* X31001Y15661D01* X31003Y15653D01* X31007Y15645D01* X31019Y15621D01* X31029Y15595D01* X31036Y15569D01* X31041Y15543D01* X31044Y15516D01* X31044Y15489D01* X31042Y15462D01* X31037Y15435D01* X31030Y15409D01* X31021Y15383D01* X31009Y15359D01* X31006Y15351D01* X31004Y15342D01* X31004Y15333D01* X31005Y15325D01* X31007Y15317D01* X31011Y15309D01* X31016Y15302D01* X31023Y15296D01* X31030Y15291D01* X31038Y15288D01* X31047Y15286D01* X31055Y15285D01* X31064Y15286D01* X31072Y15289D01* X31072Y15289D01* Y13719D01* X31072Y13719D01* X31063Y13719D01* X31054Y13717D01* X31046Y13713D01* X31039Y13708D01* X31033Y13702D01* X31028Y13695D01* X31024Y13687D01* X31022Y13679D01* X31021Y13670D01* X31021Y13661D01* X31023Y13653D01* X31027Y13645D01* X31039Y13621D01* X31049Y13595D01* X31056Y13569D01* X31061Y13543D01* X31064Y13516D01* X31064Y13489D01* X31062Y13462D01* X31057Y13435D01* X31050Y13409D01* X31041Y13383D01* X31029Y13359D01* X31026Y13351D01* X31024Y13342D01* X31024Y13333D01* X31025Y13325D01* X31027Y13317D01* X31031Y13309D01* X31036Y13302D01* X31043Y13296D01* X31050Y13291D01* X31058Y13288D01* X31067Y13286D01* X31072Y13286D01* Y11716D01* X31066Y11713D01* X31059Y11708D01* X31053Y11702D01* X31048Y11695D01* X31044Y11687D01* X31042Y11679D01* X31041Y11670D01* X31041Y11661D01* X31043Y11653D01* X31047Y11645D01* X31059Y11621D01* X31069Y11595D01* X31072Y11583D01* Y11416D01* X31070Y11409D01* X31061Y11383D01* X31049Y11359D01* X31046Y11351D01* X31044Y11342D01* X31044Y11333D01* X31045Y11325D01* X31047Y11317D01* X31051Y11309D01* X31056Y11302D01* X31063Y11296D01* X31070Y11291D01* X31072Y11290D01* Y9701D01* X31068Y9695D01* X31064Y9687D01* X31062Y9679D01* X31061Y9670D01* X31061Y9661D01* X31063Y9653D01* X31067Y9645D01* X31072Y9634D01* Y9365D01* X31069Y9359D01* X31066Y9351D01* X31064Y9342D01* X31064Y9333D01* X31065Y9325D01* X31067Y9317D01* X31071Y9309D01* X31072Y9307D01* Y3833D01* G37* G36* Y17696D02*X31070Y17701D01* X31064Y17707D01* X31056Y17712D01* X31049Y17716D01* X31040Y17718D01* X31032Y17719D01* X31023Y17719D01* X31014Y17717D01* X31006Y17713D01* X30999Y17708D01* X30993Y17702D01* X30992Y17701D01* Y19290D01* X30998Y19288D01* X31007Y19286D01* X31015Y19285D01* X31024Y19286D01* X31032Y19289D01* X31040Y19293D01* X31047Y19298D01* X31053Y19305D01* X31058Y19312D01* X31072Y19343D01* Y17696D01* G37* G36* Y19656D02*X31070Y19661D01* X31054Y19694D01* X31050Y19701D01* X31044Y19707D01* X31036Y19712D01* X31029Y19716D01* X31020Y19718D01* X31012Y19719D01* X31003Y19719D01* X30994Y19717D01* X30992Y19716D01* Y21286D01* X30995Y21285D01* X31004Y21286D01* X31012Y21289D01* X31020Y21293D01* X31027Y21298D01* X31033Y21305D01* X31038Y21312D01* X31053Y21344D01* X31066Y21378D01* X31072Y21404D01* Y19656D01* G37* G36* Y40000D02*X31152D01* Y13596D01* X31144Y13627D01* X31130Y13661D01* X31114Y13694D01* X31110Y13701D01* X31104Y13707D01* X31096Y13712D01* X31089Y13716D01* X31080Y13718D01* X31072Y13719D01* Y15289D01* X31080Y15293D01* X31087Y15298D01* X31093Y15305D01* X31098Y15312D01* X31113Y15344D01* X31126Y15378D01* X31135Y15413D01* X31141Y15449D01* X31144Y15485D01* X31144Y15521D01* X31140Y15557D01* X31134Y15593D01* X31124Y15627D01* X31110Y15661D01* X31094Y15694D01* X31090Y15701D01* X31084Y15707D01* X31076Y15712D01* X31072Y15714D01* Y17304D01* X31073Y17305D01* X31078Y17312D01* X31093Y17344D01* X31106Y17378D01* X31115Y17413D01* X31121Y17449D01* X31124Y17485D01* X31124Y17521D01* X31120Y17557D01* X31114Y17593D01* X31104Y17627D01* X31090Y17661D01* X31074Y17694D01* X31072Y17696D01* Y19343D01* X31073Y19344D01* X31086Y19378D01* X31095Y19413D01* X31101Y19449D01* X31104Y19485D01* X31104Y19521D01* X31100Y19557D01* X31094Y19593D01* X31084Y19627D01* X31072Y19656D01* Y21404D01* X31075Y21413D01* X31081Y21449D01* X31084Y21485D01* X31084Y21521D01* X31080Y21557D01* X31074Y21593D01* X31072Y21596D01* Y40000D01* G37* G36* X31152Y0D02*X31072D01* Y1147D01* X31078Y1150D01* X31086Y1155D01* X31092Y1161D01* X31097Y1168D01* X31101Y1175D01* X31103Y1184D01* X31104Y1193D01* X31104Y1201D01* X31101Y1210D01* X31098Y1218D01* X31093Y1225D01* X31087Y1231D01* X31080Y1236D01* X31072Y1240D01* Y1765D01* X31075Y1766D01* X31082Y1772D01* X31088Y1778D01* X31093Y1785D01* X31096Y1793D01* X31098Y1802D01* X31099Y1810D01* X31098Y1819D01* X31095Y1827D01* X31091Y1835D01* X31086Y1842D01* X31080Y1848D01* X31072Y1853D01* Y3161D01* X31077Y3168D01* X31081Y3175D01* X31083Y3184D01* X31084Y3193D01* X31084Y3201D01* X31081Y3210D01* X31078Y3218D01* X31073Y3225D01* X31072Y3225D01* Y3784D01* X31073Y3785D01* X31076Y3793D01* X31078Y3802D01* X31079Y3810D01* X31078Y3819D01* X31075Y3827D01* X31072Y3833D01* Y9307D01* X31076Y9302D01* X31083Y9296D01* X31090Y9291D01* X31098Y9288D01* X31107Y9286D01* X31115Y9285D01* X31124Y9286D01* X31132Y9289D01* X31140Y9293D01* X31147Y9298D01* X31152Y9304D01* Y7714D01* X31149Y7716D01* X31140Y7718D01* X31132Y7719D01* X31123Y7719D01* X31114Y7717D01* X31106Y7713D01* X31099Y7708D01* X31093Y7702D01* X31088Y7695D01* X31084Y7687D01* X31082Y7679D01* X31081Y7670D01* X31081Y7661D01* X31083Y7653D01* X31087Y7645D01* X31099Y7621D01* X31109Y7595D01* X31116Y7569D01* X31121Y7543D01* X31124Y7516D01* X31124Y7489D01* X31122Y7462D01* X31117Y7435D01* X31110Y7409D01* X31101Y7383D01* X31089Y7359D01* X31086Y7351D01* X31084Y7342D01* X31084Y7333D01* X31085Y7325D01* X31087Y7317D01* X31091Y7309D01* X31096Y7302D01* X31103Y7296D01* X31110Y7291D01* X31118Y7288D01* X31127Y7286D01* X31135Y7285D01* X31144Y7286D01* X31152Y7289D01* X31152Y7289D01* Y5719D01* X31152Y5719D01* X31143Y5719D01* X31134Y5717D01* X31126Y5713D01* X31119Y5708D01* X31113Y5702D01* X31108Y5695D01* X31104Y5687D01* X31102Y5679D01* X31101Y5670D01* X31101Y5661D01* X31103Y5653D01* X31107Y5645D01* X31119Y5621D01* X31129Y5595D01* X31136Y5569D01* X31141Y5543D01* X31144Y5516D01* X31144Y5489D01* X31142Y5462D01* X31137Y5435D01* X31130Y5409D01* X31121Y5383D01* X31109Y5359D01* X31106Y5351D01* X31104Y5342D01* X31104Y5333D01* X31105Y5325D01* X31107Y5317D01* X31111Y5309D01* X31116Y5302D01* X31123Y5296D01* X31130Y5291D01* X31138Y5288D01* X31147Y5286D01* X31152Y5286D01* Y3716D01* X31146Y3713D01* X31139Y3708D01* X31133Y3702D01* X31128Y3695D01* X31124Y3687D01* X31122Y3679D01* X31121Y3670D01* X31121Y3661D01* X31123Y3653D01* X31127Y3645D01* X31139Y3621D01* X31149Y3595D01* X31152Y3583D01* Y3416D01* X31150Y3409D01* X31141Y3383D01* X31129Y3359D01* X31126Y3351D01* X31124Y3342D01* X31124Y3333D01* X31125Y3325D01* X31127Y3317D01* X31131Y3309D01* X31136Y3302D01* X31143Y3296D01* X31150Y3291D01* X31152Y3290D01* Y1701D01* X31148Y1695D01* X31144Y1687D01* X31142Y1679D01* X31141Y1670D01* X31141Y1661D01* X31143Y1653D01* X31147Y1645D01* X31152Y1634D01* Y1365D01* X31149Y1359D01* X31146Y1351D01* X31144Y1342D01* X31144Y1333D01* X31145Y1325D01* X31147Y1317D01* X31151Y1309D01* X31152Y1307D01* Y0D01* G37* G36* Y9696D02*X31150Y9701D01* X31144Y9707D01* X31136Y9712D01* X31129Y9716D01* X31120Y9718D01* X31112Y9719D01* X31103Y9719D01* X31094Y9717D01* X31086Y9713D01* X31079Y9708D01* X31073Y9702D01* X31072Y9701D01* Y11290D01* X31078Y11288D01* X31087Y11286D01* X31095Y11285D01* X31104Y11286D01* X31112Y11289D01* X31120Y11293D01* X31127Y11298D01* X31133Y11305D01* X31138Y11312D01* X31152Y11343D01* Y9696D01* G37* G36* Y11656D02*X31150Y11661D01* X31134Y11694D01* X31130Y11701D01* X31124Y11707D01* X31116Y11712D01* X31109Y11716D01* X31100Y11718D01* X31092Y11719D01* X31083Y11719D01* X31074Y11717D01* X31072Y11716D01* Y13286D01* X31075Y13285D01* X31084Y13286D01* X31092Y13289D01* X31100Y13293D01* X31107Y13298D01* X31113Y13305D01* X31118Y13312D01* X31133Y13344D01* X31146Y13378D01* X31152Y13404D01* Y11656D01* G37* G36* Y40000D02*X32177D01* Y39710D01* X32169Y39706D01* X32162Y39701D01* X32156Y39695D01* X32151Y39687D01* X32136Y39655D01* X32123Y39621D01* X32114Y39586D01* X32108Y39550D01* X32105Y39514D01* X32105Y39478D01* X32109Y39442D01* X32115Y39407D01* X32125Y39372D01* X32139Y39338D01* X32155Y39306D01* X32159Y39299D01* X32165Y39292D01* X32173Y39287D01* X32177Y39285D01* Y37695D01* X32176Y37695D01* X32171Y37687D01* X32156Y37655D01* X32143Y37621D01* X32134Y37586D01* X32128Y37550D01* X32125Y37514D01* X32125Y37478D01* X32129Y37442D01* X32135Y37407D01* X32145Y37372D01* X32159Y37338D01* X32175Y37306D01* X32177Y37303D01* Y35656D01* X32176Y35655D01* X32163Y35621D01* X32154Y35586D01* X32148Y35550D01* X32145Y35514D01* X32145Y35478D01* X32149Y35442D01* X32155Y35407D01* X32165Y35372D01* X32177Y35343D01* Y33596D01* X32174Y33586D01* X32168Y33550D01* X32165Y33514D01* X32165Y33478D01* X32169Y33442D01* X32175Y33407D01* X32177Y33403D01* Y0D01* X31152D01* Y1307D01* X31156Y1302D01* X31163Y1296D01* X31170Y1291D01* X31178Y1288D01* X31187Y1286D01* X31195Y1285D01* X31204Y1286D01* X31212Y1289D01* X31220Y1293D01* X31227Y1298D01* X31233Y1305D01* X31238Y1312D01* X31253Y1344D01* X31266Y1378D01* X31275Y1413D01* X31281Y1449D01* X31284Y1485D01* X31284Y1521D01* X31280Y1557D01* X31274Y1593D01* X31264Y1627D01* X31250Y1661D01* X31234Y1694D01* X31230Y1701D01* X31224Y1707D01* X31216Y1712D01* X31209Y1716D01* X31200Y1718D01* X31192Y1719D01* X31183Y1719D01* X31174Y1717D01* X31166Y1713D01* X31159Y1708D01* X31153Y1702D01* X31152Y1701D01* Y3290D01* X31158Y3288D01* X31167Y3286D01* X31175Y3285D01* X31184Y3286D01* X31192Y3289D01* X31200Y3293D01* X31207Y3298D01* X31213Y3305D01* X31218Y3312D01* X31233Y3344D01* X31246Y3378D01* X31255Y3413D01* X31261Y3449D01* X31264Y3485D01* X31264Y3521D01* X31260Y3557D01* X31254Y3593D01* X31244Y3627D01* X31230Y3661D01* X31214Y3694D01* X31210Y3701D01* X31204Y3707D01* X31196Y3712D01* X31189Y3716D01* X31180Y3718D01* X31172Y3719D01* X31163Y3719D01* X31154Y3717D01* X31152Y3716D01* Y5286D01* X31155Y5285D01* X31164Y5286D01* X31172Y5289D01* X31180Y5293D01* X31187Y5298D01* X31193Y5305D01* X31198Y5312D01* X31213Y5344D01* X31226Y5378D01* X31235Y5413D01* X31241Y5449D01* X31244Y5485D01* X31244Y5521D01* X31240Y5557D01* X31234Y5593D01* X31224Y5627D01* X31210Y5661D01* X31194Y5694D01* X31190Y5701D01* X31184Y5707D01* X31176Y5712D01* X31169Y5716D01* X31160Y5718D01* X31152Y5719D01* Y7289D01* X31160Y7293D01* X31167Y7298D01* X31173Y7305D01* X31178Y7312D01* X31193Y7344D01* X31206Y7378D01* X31215Y7413D01* X31221Y7449D01* X31224Y7485D01* X31224Y7521D01* X31220Y7557D01* X31214Y7593D01* X31204Y7627D01* X31190Y7661D01* X31174Y7694D01* X31170Y7701D01* X31164Y7707D01* X31156Y7712D01* X31152Y7714D01* Y9304D01* X31153Y9305D01* X31158Y9312D01* X31173Y9344D01* X31186Y9378D01* X31195Y9413D01* X31201Y9449D01* X31204Y9485D01* X31204Y9521D01* X31200Y9557D01* X31194Y9593D01* X31184Y9627D01* X31170Y9661D01* X31154Y9694D01* X31152Y9696D01* Y11343D01* X31153Y11344D01* X31166Y11378D01* X31175Y11413D01* X31181Y11449D01* X31184Y11485D01* X31184Y11521D01* X31180Y11557D01* X31174Y11593D01* X31164Y11627D01* X31152Y11656D01* Y13404D01* X31155Y13413D01* X31161Y13449D01* X31164Y13485D01* X31164Y13521D01* X31160Y13557D01* X31154Y13593D01* X31152Y13596D01* Y40000D01* G37* G36* Y3583D02*X31156Y3569D01* X31161Y3543D01* X31164Y3516D01* X31164Y3489D01* X31162Y3462D01* X31157Y3435D01* X31152Y3416D01* Y3583D01* G37* G36* Y1634D02*X31159Y1621D01* X31169Y1595D01* X31176Y1569D01* X31181Y1543D01* X31184Y1516D01* X31184Y1489D01* X31182Y1462D01* X31177Y1435D01* X31170Y1409D01* X31161Y1383D01* X31152Y1365D01* Y1634D01* G37* G36* X31072Y11583D02*X31076Y11569D01* X31081Y11543D01* X31084Y11516D01* X31084Y11489D01* X31082Y11462D01* X31077Y11435D01* X31072Y11416D01* Y11583D01* G37* G36* Y9634D02*X31079Y9621D01* X31089Y9595D01* X31096Y9569D01* X31101Y9543D01* X31104Y9516D01* X31104Y9489D01* X31102Y9462D01* X31097Y9435D01* X31090Y9409D01* X31081Y9383D01* X31072Y9365D01* Y9634D01* G37* G36* X30992Y19583D02*X30996Y19569D01* X31001Y19543D01* X31004Y19516D01* X31004Y19489D01* X31002Y19462D01* X30997Y19435D01* X30992Y19416D01* Y19583D01* G37* G36* Y17634D02*X30999Y17621D01* X31009Y17595D01* X31016Y17569D01* X31021Y17543D01* X31024Y17516D01* X31024Y17489D01* X31022Y17462D01* X31017Y17435D01* X31010Y17409D01* X31001Y17383D01* X30992Y17365D01* Y17634D01* G37* G36* X30912Y27583D02*X30916Y27569D01* X30921Y27543D01* X30924Y27516D01* X30924Y27489D01* X30922Y27462D01* X30917Y27435D01* X30912Y27416D01* Y27583D01* G37* G36* Y25634D02*X30919Y25621D01* X30929Y25595D01* X30936Y25569D01* X30941Y25543D01* X30944Y25516D01* X30944Y25489D01* X30942Y25462D01* X30937Y25435D01* X30930Y25409D01* X30921Y25383D01* X30912Y25365D01* Y25634D01* G37* G36* X32177Y40000D02*X32277D01* Y35692D01* X32273Y35697D01* X32266Y35703D01* X32259Y35708D01* X32251Y35711D01* X32242Y35713D01* X32234Y35714D01* X32225Y35713D01* X32217Y35710D01* X32209Y35706D01* X32202Y35701D01* X32196Y35695D01* X32191Y35687D01* X32177Y35656D01* Y37303D01* X32179Y37299D01* X32185Y37292D01* X32193Y37287D01* X32200Y37283D01* X32209Y37281D01* X32217Y37280D01* X32226Y37281D01* X32235Y37283D01* X32243Y37286D01* X32250Y37291D01* X32256Y37297D01* X32261Y37304D01* X32265Y37312D01* X32267Y37320D01* X32268Y37329D01* X32268Y37338D01* X32266Y37346D01* X32262Y37354D01* X32250Y37378D01* X32240Y37404D01* X32233Y37430D01* X32228Y37456D01* X32225Y37483D01* X32225Y37511D01* X32227Y37538D01* X32232Y37564D01* X32239Y37590D01* X32248Y37616D01* X32260Y37640D01* X32263Y37649D01* X32265Y37657D01* X32265Y37666D01* X32264Y37674D01* X32262Y37683D01* X32258Y37690D01* X32253Y37697D01* X32246Y37703D01* X32239Y37708D01* X32231Y37711D01* X32222Y37713D01* X32214Y37714D01* X32205Y37713D01* X32197Y37710D01* X32189Y37706D01* X32182Y37701D01* X32177Y37695D01* Y39285D01* X32180Y39283D01* X32189Y39281D01* X32197Y39280D01* X32206Y39281D01* X32215Y39283D01* X32223Y39286D01* X32230Y39291D01* X32236Y39297D01* X32241Y39304D01* X32245Y39312D01* X32247Y39320D01* X32248Y39329D01* X32248Y39338D01* X32246Y39346D01* X32242Y39354D01* X32230Y39378D01* X32220Y39404D01* X32213Y39430D01* X32208Y39456D01* X32205Y39483D01* X32205Y39511D01* X32207Y39538D01* X32212Y39564D01* X32219Y39590D01* X32228Y39616D01* X32240Y39640D01* X32243Y39649D01* X32245Y39657D01* X32245Y39666D01* X32244Y39674D01* X32242Y39683D01* X32238Y39690D01* X32233Y39697D01* X32226Y39703D01* X32219Y39708D01* X32211Y39711D01* X32202Y39713D01* X32194Y39714D01* X32185Y39713D01* X32177Y39710D01* X32177Y39710D01* Y40000D01* G37* G36* X32277Y0D02*X32177D01* Y33403D01* X32185Y33372D01* X32199Y33338D01* X32215Y33306D01* X32219Y33299D01* X32225Y33292D01* X32233Y33287D01* X32240Y33283D01* X32249Y33281D01* X32257Y33280D01* X32266Y33281D01* X32275Y33283D01* X32277Y33284D01* Y31714D01* X32274Y31714D01* X32265Y31713D01* X32257Y31710D01* X32249Y31706D01* X32242Y31701D01* X32236Y31695D01* X32231Y31687D01* X32216Y31655D01* X32203Y31621D01* X32194Y31586D01* X32188Y31550D01* X32185Y31514D01* X32185Y31478D01* X32189Y31442D01* X32195Y31407D01* X32205Y31372D01* X32219Y31338D01* X32235Y31306D01* X32239Y31299D01* X32245Y31292D01* X32253Y31287D01* X32260Y31283D01* X32269Y31281D01* X32277Y31280D01* Y29710D01* X32269Y29706D01* X32262Y29701D01* X32256Y29695D01* X32251Y29687D01* X32236Y29655D01* X32223Y29621D01* X32214Y29586D01* X32208Y29550D01* X32205Y29514D01* X32205Y29478D01* X32209Y29442D01* X32215Y29407D01* X32225Y29372D01* X32239Y29338D01* X32255Y29306D01* X32259Y29299D01* X32265Y29292D01* X32273Y29287D01* X32277Y29285D01* Y27695D01* X32276Y27695D01* X32271Y27687D01* X32256Y27655D01* X32243Y27621D01* X32234Y27586D01* X32228Y27550D01* X32225Y27514D01* X32225Y27478D01* X32229Y27442D01* X32235Y27407D01* X32245Y27372D01* X32259Y27338D01* X32275Y27306D01* X32277Y27303D01* Y25656D01* X32276Y25655D01* X32263Y25621D01* X32254Y25586D01* X32248Y25550D01* X32245Y25514D01* X32245Y25478D01* X32249Y25442D01* X32255Y25407D01* X32265Y25372D01* X32277Y25343D01* Y23596D01* X32274Y23586D01* X32268Y23550D01* X32265Y23514D01* X32265Y23478D01* X32269Y23442D01* X32275Y23407D01* X32277Y23403D01* Y0D01* G37* G36* Y33417D02*X32273Y33430D01* X32268Y33456D01* X32265Y33483D01* X32265Y33511D01* X32267Y33538D01* X32272Y33564D01* X32277Y33583D01* Y33417D01* G37* G36* Y33709D02*X32271Y33711D01* X32262Y33713D01* X32254Y33714D01* X32245Y33713D01* X32237Y33710D01* X32229Y33706D01* X32222Y33701D01* X32216Y33695D01* X32211Y33687D01* X32196Y33655D01* X32183Y33621D01* X32177Y33596D01* Y35343D01* X32179Y35338D01* X32195Y35306D01* X32199Y35299D01* X32205Y35292D01* X32213Y35287D01* X32220Y35283D01* X32229Y35281D01* X32237Y35280D01* X32246Y35281D01* X32255Y35283D01* X32263Y35286D01* X32270Y35291D01* X32276Y35297D01* X32277Y35298D01* Y33709D01* G37* G36* Y35365D02*X32270Y35378D01* X32260Y35404D01* X32253Y35430D01* X32248Y35456D01* X32245Y35483D01* X32245Y35511D01* X32247Y35538D01* X32252Y35564D01* X32259Y35590D01* X32268Y35616D01* X32277Y35634D01* Y35365D01* G37* G36* Y40000D02*X32357D01* Y39871D01* X32343Y39866D01* X32311Y39849D01* X32303Y39845D01* X32297Y39839D01* X32292Y39832D01* X32288Y39824D01* X32286Y39815D01* X32285Y39807D01* X32285Y39798D01* X32288Y39790D01* X32291Y39782D01* X32296Y39774D01* X32302Y39768D01* X32309Y39763D01* X32317Y39759D01* X32325Y39757D01* X32334Y39756D01* X32343Y39756D01* X32351Y39758D01* X32357Y39761D01* Y39238D01* X32356Y39238D01* X32347Y39240D01* X32338Y39240D01* X32330Y39239D01* X32321Y39237D01* X32314Y39233D01* X32307Y39228D01* X32301Y39221D01* X32296Y39214D01* X32293Y39206D01* X32291Y39197D01* X32290Y39189D01* X32291Y39180D01* X32294Y39172D01* X32298Y39164D01* X32303Y39157D01* X32309Y39151D01* X32317Y39146D01* X32349Y39131D01* X32357Y39128D01* Y37862D01* X32331Y37849D01* X32323Y37845D01* X32317Y37839D01* X32312Y37832D01* X32308Y37824D01* X32306Y37815D01* X32305Y37807D01* X32305Y37798D01* X32308Y37790D01* X32311Y37782D01* X32316Y37774D01* X32322Y37768D01* X32329Y37763D01* X32337Y37759D01* X32345Y37757D01* X32354Y37756D01* X32357Y37756D01* Y37240D01* X32350Y37239D01* X32341Y37237D01* X32334Y37233D01* X32327Y37228D01* X32321Y37221D01* X32316Y37214D01* X32313Y37206D01* X32311Y37197D01* X32310Y37189D01* X32311Y37180D01* X32314Y37172D01* X32318Y37164D01* X32323Y37157D01* X32329Y37151D01* X32337Y37146D01* X32357Y37137D01* Y35852D01* X32351Y35849D01* X32343Y35845D01* X32337Y35839D01* X32332Y35832D01* X32328Y35824D01* X32326Y35815D01* X32325Y35807D01* X32325Y35798D01* X32328Y35790D01* X32331Y35782D01* X32336Y35774D01* X32342Y35768D01* X32349Y35763D01* X32357Y35759D01* Y35234D01* X32354Y35233D01* X32347Y35228D01* X32341Y35221D01* X32336Y35214D01* X32333Y35206D01* X32331Y35197D01* X32330Y35189D01* X32331Y35180D01* X32334Y35172D01* X32338Y35164D01* X32343Y35157D01* X32349Y35151D01* X32357Y35147D01* Y33838D01* X32352Y33832D01* X32348Y33824D01* X32346Y33815D01* X32345Y33807D01* X32345Y33798D01* X32348Y33790D01* X32351Y33782D01* X32356Y33774D01* X32357Y33774D01* Y33215D01* X32356Y33214D01* X32353Y33206D01* X32351Y33197D01* X32350Y33189D01* X32351Y33180D01* X32354Y33172D01* X32357Y33167D01* Y27692D01* X32353Y27697D01* X32346Y27703D01* X32339Y27708D01* X32331Y27711D01* X32322Y27713D01* X32314Y27714D01* X32305Y27713D01* X32297Y27710D01* X32289Y27706D01* X32282Y27701D01* X32277Y27695D01* Y29285D01* X32280Y29283D01* X32289Y29281D01* X32297Y29280D01* X32306Y29281D01* X32315Y29283D01* X32323Y29286D01* X32330Y29291D01* X32336Y29297D01* X32341Y29304D01* X32345Y29312D01* X32347Y29320D01* X32348Y29329D01* X32348Y29338D01* X32346Y29346D01* X32342Y29354D01* X32330Y29378D01* X32320Y29404D01* X32313Y29430D01* X32308Y29456D01* X32305Y29483D01* X32305Y29511D01* X32307Y29538D01* X32312Y29564D01* X32319Y29590D01* X32328Y29616D01* X32340Y29640D01* X32343Y29649D01* X32345Y29657D01* X32345Y29666D01* X32344Y29674D01* X32342Y29683D01* X32338Y29690D01* X32333Y29697D01* X32326Y29703D01* X32319Y29708D01* X32311Y29711D01* X32302Y29713D01* X32294Y29714D01* X32285Y29713D01* X32277Y29710D01* X32277Y29710D01* Y31280D01* X32277Y31280D01* X32286Y31281D01* X32295Y31283D01* X32303Y31286D01* X32310Y31291D01* X32316Y31297D01* X32321Y31304D01* X32325Y31312D01* X32327Y31320D01* X32328Y31329D01* X32328Y31338D01* X32326Y31346D01* X32322Y31354D01* X32310Y31378D01* X32300Y31404D01* X32293Y31430D01* X32288Y31456D01* X32285Y31483D01* X32285Y31511D01* X32287Y31538D01* X32292Y31564D01* X32299Y31590D01* X32308Y31616D01* X32320Y31640D01* X32323Y31649D01* X32325Y31657D01* X32325Y31666D01* X32324Y31674D01* X32322Y31683D01* X32318Y31690D01* X32313Y31697D01* X32306Y31703D01* X32299Y31708D01* X32291Y31711D01* X32282Y31713D01* X32277Y31714D01* Y33284D01* X32283Y33286D01* X32290Y33291D01* X32296Y33297D01* X32301Y33304D01* X32305Y33312D01* X32307Y33320D01* X32308Y33329D01* X32308Y33338D01* X32306Y33346D01* X32302Y33354D01* X32290Y33378D01* X32280Y33404D01* X32277Y33417D01* Y33583D01* X32279Y33590D01* X32288Y33616D01* X32300Y33640D01* X32303Y33649D01* X32305Y33657D01* X32305Y33666D01* X32304Y33674D01* X32302Y33683D01* X32298Y33690D01* X32293Y33697D01* X32286Y33703D01* X32279Y33708D01* X32277Y33709D01* Y35298D01* X32281Y35304D01* X32285Y35312D01* X32287Y35320D01* X32288Y35329D01* X32288Y35338D01* X32286Y35346D01* X32282Y35354D01* X32277Y35365D01* Y35634D01* X32280Y35640D01* X32283Y35649D01* X32285Y35657D01* X32285Y35666D01* X32284Y35674D01* X32282Y35683D01* X32278Y35690D01* X32277Y35692D01* Y40000D01* G37* G36* X32357Y0D02*X32277D01* Y23403D01* X32285Y23372D01* X32299Y23338D01* X32315Y23306D01* X32319Y23299D01* X32325Y23292D01* X32333Y23287D01* X32340Y23283D01* X32349Y23281D01* X32357Y23280D01* Y21710D01* X32349Y21706D01* X32342Y21701D01* X32336Y21695D01* X32331Y21687D01* X32316Y21655D01* X32303Y21621D01* X32294Y21586D01* X32288Y21550D01* X32285Y21514D01* X32285Y21478D01* X32289Y21442D01* X32295Y21407D01* X32305Y21372D01* X32319Y21338D01* X32335Y21306D01* X32339Y21299D01* X32345Y21292D01* X32353Y21287D01* X32357Y21285D01* Y19695D01* X32356Y19695D01* X32351Y19687D01* X32336Y19655D01* X32323Y19621D01* X32314Y19586D01* X32308Y19550D01* X32305Y19514D01* X32305Y19478D01* X32309Y19442D01* X32315Y19407D01* X32325Y19372D01* X32339Y19338D01* X32355Y19306D01* X32357Y19303D01* Y17656D01* X32356Y17655D01* X32343Y17621D01* X32334Y17586D01* X32328Y17550D01* X32325Y17514D01* X32325Y17478D01* X32329Y17442D01* X32335Y17407D01* X32345Y17372D01* X32357Y17343D01* Y15596D01* X32354Y15586D01* X32348Y15550D01* X32345Y15514D01* X32345Y15478D01* X32349Y15442D01* X32355Y15407D01* X32357Y15403D01* Y0D01* G37* G36* Y23714D02*X32354Y23714D01* X32345Y23713D01* X32337Y23710D01* X32329Y23706D01* X32322Y23701D01* X32316Y23695D01* X32311Y23687D01* X32296Y23655D01* X32283Y23621D01* X32277Y23596D01* Y25343D01* X32279Y25338D01* X32295Y25306D01* X32299Y25299D01* X32305Y25292D01* X32313Y25287D01* X32320Y25283D01* X32329Y25281D01* X32337Y25280D01* X32346Y25281D01* X32355Y25283D01* X32357Y25284D01* Y23714D01* G37* G36* Y25417D02*X32353Y25430D01* X32348Y25456D01* X32345Y25483D01* X32345Y25511D01* X32347Y25538D01* X32352Y25564D01* X32357Y25583D01* Y25417D01* G37* G36* Y25709D02*X32351Y25711D01* X32342Y25713D01* X32334Y25714D01* X32325Y25713D01* X32317Y25710D01* X32309Y25706D01* X32302Y25701D01* X32296Y25695D01* X32291Y25687D01* X32277Y25656D01* Y27303D01* X32279Y27299D01* X32285Y27292D01* X32293Y27287D01* X32300Y27283D01* X32309Y27281D01* X32317Y27280D01* X32326Y27281D01* X32335Y27283D01* X32343Y27286D01* X32350Y27291D01* X32356Y27297D01* X32357Y27298D01* Y25709D01* G37* G36* Y27365D02*X32350Y27378D01* X32340Y27404D01* X32333Y27430D01* X32328Y27456D01* X32325Y27483D01* X32325Y27511D01* X32327Y27538D01* X32332Y27564D01* X32339Y27590D01* X32348Y27616D01* X32357Y27634D01* Y27365D01* G37* G36* Y40000D02*X32507D01* Y39899D01* X32483Y39899D01* X32447Y39895D01* X32411Y39889D01* X32377Y39879D01* X32357Y39871D01* Y40000D01* G37* G36* Y39761D02*X32359Y39762D01* X32383Y39774D01* X32409Y39784D01* X32435Y39791D01* X32461Y39796D01* X32488Y39799D01* X32507Y39799D01* Y39200D01* X32494Y39200D01* X32467Y39202D01* X32440Y39207D01* X32414Y39214D01* X32388Y39223D01* X32364Y39235D01* X32357Y39238D01* Y39761D01* G37* G36* Y39128D02*X32383Y39118D01* X32418Y39109D01* X32454Y39103D01* X32490Y39100D01* X32507Y39100D01* Y37899D01* X32503D01* X32467Y37895D01* X32431Y37889D01* X32397Y37879D01* X32363Y37866D01* X32357Y37862D01* Y39128D01* G37* G36* Y37756D02*X32363Y37756D01* X32371Y37758D01* X32379Y37762D01* X32403Y37774D01* X32429Y37784D01* X32455Y37791D01* X32481Y37796D01* X32507Y37799D01* Y37200D01* X32487Y37202D01* X32460Y37207D01* X32434Y37214D01* X32408Y37223D01* X32384Y37235D01* X32376Y37238D01* X32367Y37240D01* X32358Y37240D01* X32357Y37240D01* Y37756D01* G37* G36* Y37137D02*X32369Y37131D01* X32403Y37118D01* X32438Y37109D01* X32474Y37103D01* X32507Y37100D01* Y35897D01* X32487Y35895D01* X32451Y35889D01* X32417Y35879D01* X32383Y35866D01* X32357Y35852D01* Y37137D01* G37* G36* Y35759D02*X32357Y35759D01* X32365Y35757D01* X32374Y35756D01* X32383Y35756D01* X32391Y35758D01* X32399Y35762D01* X32423Y35774D01* X32449Y35784D01* X32475Y35791D01* X32501Y35796D01* X32507Y35797D01* Y35202D01* X32507Y35202D01* X32480Y35207D01* X32454Y35214D01* X32428Y35223D01* X32404Y35235D01* X32396Y35238D01* X32387Y35240D01* X32378Y35240D01* X32370Y35239D01* X32361Y35237D01* X32357Y35234D01* Y35759D01* G37* G36* Y35147D02*X32357Y35146D01* X32389Y35131D01* X32423Y35118D01* X32458Y35109D01* X32494Y35103D01* X32507Y35102D01* Y33895D01* X32507D01* X32471Y33889D01* X32437Y33879D01* X32403Y33866D01* X32371Y33849D01* X32363Y33845D01* X32357Y33839D01* X32357Y33838D01* Y35147D01* G37* G36* Y33774D02*X32362Y33768D01* X32369Y33763D01* X32377Y33759D01* X32385Y33757D01* X32394Y33756D01* X32403Y33756D01* X32411Y33758D01* X32419Y33762D01* X32443Y33774D01* X32469Y33784D01* X32495Y33791D01* X32507Y33794D01* Y33205D01* X32500Y33207D01* X32474Y33214D01* X32448Y33223D01* X32424Y33235D01* X32416Y33238D01* X32407Y33240D01* X32398Y33240D01* X32390Y33239D01* X32381Y33237D01* X32374Y33233D01* X32367Y33228D01* X32361Y33221D01* X32357Y33215D01* Y33774D01* G37* G36* Y33167D02*X32358Y33164D01* X32363Y33157D01* X32369Y33151D01* X32377Y33146D01* X32409Y33131D01* X32443Y33118D01* X32478Y33109D01* X32507Y33104D01* Y31892D01* X32491Y31889D01* X32457Y31879D01* X32423Y31866D01* X32391Y31849D01* X32383Y31845D01* X32377Y31839D01* X32372Y31832D01* X32368Y31824D01* X32366Y31815D01* X32365Y31807D01* X32365Y31798D01* X32368Y31790D01* X32371Y31782D01* X32376Y31774D01* X32382Y31768D01* X32389Y31763D01* X32397Y31759D01* X32405Y31757D01* X32414Y31756D01* X32423Y31756D01* X32431Y31758D01* X32439Y31762D01* X32463Y31774D01* X32489Y31784D01* X32507Y31789D01* Y31210D01* X32494Y31214D01* X32468Y31223D01* X32444Y31235D01* X32436Y31238D01* X32427Y31240D01* X32418Y31240D01* X32410Y31239D01* X32401Y31237D01* X32394Y31233D01* X32387Y31228D01* X32381Y31221D01* X32376Y31214D01* X32373Y31206D01* X32371Y31197D01* X32370Y31189D01* X32371Y31180D01* X32374Y31172D01* X32378Y31164D01* X32383Y31157D01* X32389Y31151D01* X32397Y31146D01* X32429Y31131D01* X32463Y31118D01* X32498Y31109D01* X32507Y31107D01* Y29887D01* X32477Y29879D01* X32443Y29866D01* X32411Y29849D01* X32403Y29845D01* X32397Y29839D01* X32392Y29832D01* X32388Y29824D01* X32386Y29815D01* X32385Y29807D01* X32385Y29798D01* X32388Y29790D01* X32391Y29782D01* X32396Y29774D01* X32402Y29768D01* X32409Y29763D01* X32417Y29759D01* X32425Y29757D01* X32434Y29756D01* X32443Y29756D01* X32451Y29758D01* X32459Y29762D01* X32483Y29774D01* X32507Y29783D01* Y29216D01* X32488Y29223D01* X32464Y29235D01* X32456Y29238D01* X32447Y29240D01* X32438Y29240D01* X32430Y29239D01* X32421Y29237D01* X32414Y29233D01* X32407Y29228D01* X32401Y29221D01* X32396Y29214D01* X32393Y29206D01* X32391Y29197D01* X32390Y29189D01* X32391Y29180D01* X32394Y29172D01* X32398Y29164D01* X32403Y29157D01* X32409Y29151D01* X32417Y29146D01* X32449Y29131D01* X32483Y29118D01* X32507Y29112D01* Y27882D01* X32497Y27879D01* X32463Y27866D01* X32431Y27849D01* X32423Y27845D01* X32417Y27839D01* X32412Y27832D01* X32408Y27824D01* X32406Y27815D01* X32405Y27807D01* X32405Y27798D01* X32408Y27790D01* X32411Y27782D01* X32416Y27774D01* X32422Y27768D01* X32429Y27763D01* X32437Y27759D01* X32445Y27757D01* X32454Y27756D01* X32463Y27756D01* X32471Y27758D01* X32479Y27762D01* X32503Y27774D01* X32507Y27776D01* Y27223D01* X32484Y27235D01* X32476Y27238D01* X32467Y27240D01* X32458Y27240D01* X32450Y27239D01* X32441Y27237D01* X32434Y27233D01* X32427Y27228D01* X32421Y27221D01* X32416Y27214D01* X32413Y27206D01* X32411Y27197D01* X32410Y27189D01* X32411Y27180D01* X32414Y27172D01* X32418Y27164D01* X32423Y27157D01* X32429Y27151D01* X32437Y27146D01* X32469Y27131D01* X32503Y27118D01* X32507Y27117D01* Y25875D01* X32483Y25866D01* X32451Y25849D01* X32443Y25845D01* X32437Y25839D01* X32432Y25832D01* X32428Y25824D01* X32426Y25815D01* X32425Y25807D01* X32425Y25798D01* X32428Y25790D01* X32431Y25782D01* X32436Y25774D01* X32442Y25768D01* X32449Y25763D01* X32457Y25759D01* X32465Y25757D01* X32474Y25756D01* X32483Y25756D01* X32491Y25758D01* X32499Y25762D01* X32507Y25766D01* Y25233D01* X32504Y25235D01* X32496Y25238D01* X32487Y25240D01* X32478Y25240D01* X32470Y25239D01* X32461Y25237D01* X32454Y25233D01* X32447Y25228D01* X32441Y25221D01* X32436Y25214D01* X32433Y25206D01* X32431Y25197D01* X32430Y25189D01* X32431Y25180D01* X32434Y25172D01* X32438Y25164D01* X32443Y25157D01* X32449Y25151D01* X32457Y25146D01* X32489Y25131D01* X32507Y25124D01* Y23867D01* X32503Y23866D01* X32471Y23849D01* X32463Y23845D01* X32457Y23839D01* X32452Y23832D01* X32448Y23824D01* X32446Y23815D01* X32445Y23807D01* X32445Y23798D01* X32448Y23790D01* X32451Y23782D01* X32456Y23774D01* X32462Y23768D01* X32469Y23763D01* X32477Y23759D01* X32485Y23757D01* X32494Y23756D01* X32503Y23756D01* X32507Y23757D01* Y23240D01* X32507D01* X32498Y23240D01* X32490Y23239D01* X32481Y23237D01* X32474Y23233D01* X32467Y23228D01* X32461Y23221D01* X32456Y23214D01* X32453Y23206D01* X32451Y23197D01* X32450Y23189D01* X32451Y23180D01* X32454Y23172D01* X32458Y23164D01* X32463Y23157D01* X32469Y23151D01* X32477Y23146D01* X32507Y23132D01* Y21858D01* X32491Y21849D01* X32483Y21845D01* X32477Y21839D01* X32472Y21832D01* X32468Y21824D01* X32466Y21815D01* X32465Y21807D01* X32465Y21798D01* X32468Y21790D01* X32471Y21782D01* X32476Y21774D01* X32482Y21768D01* X32489Y21763D01* X32497Y21759D01* X32505Y21757D01* X32507Y21756D01* Y21239D01* X32501Y21237D01* X32494Y21233D01* X32487Y21228D01* X32481Y21221D01* X32476Y21214D01* X32473Y21206D01* X32471Y21197D01* X32470Y21189D01* X32471Y21180D01* X32474Y21172D01* X32478Y21164D01* X32483Y21157D01* X32489Y21151D01* X32497Y21146D01* X32507Y21141D01* Y19847D01* X32503Y19845D01* X32497Y19839D01* X32492Y19832D01* X32488Y19824D01* X32486Y19815D01* X32485Y19807D01* X32485Y19798D01* X32488Y19790D01* X32491Y19782D01* X32496Y19774D01* X32502Y19768D01* X32507Y19764D01* Y19228D01* X32507Y19228D01* X32501Y19221D01* X32496Y19214D01* X32493Y19206D01* X32491Y19197D01* X32490Y19189D01* X32491Y19180D01* X32494Y19172D01* X32498Y19164D01* X32503Y19157D01* X32507Y19153D01* Y17821D01* X32506Y17815D01* X32505Y17807D01* X32505Y17798D01* X32507Y17791D01* Y13340D01* X32506Y13346D01* X32502Y13354D01* X32490Y13378D01* X32480Y13404D01* X32473Y13430D01* X32468Y13456D01* X32465Y13483D01* X32465Y13511D01* X32467Y13538D01* X32472Y13564D01* X32479Y13590D01* X32488Y13616D01* X32500Y13640D01* X32503Y13649D01* X32505Y13657D01* X32505Y13666D01* X32504Y13674D01* X32502Y13683D01* X32498Y13690D01* X32493Y13697D01* X32486Y13703D01* X32479Y13708D01* X32471Y13711D01* X32462Y13713D01* X32454Y13714D01* X32445Y13713D01* X32437Y13710D01* X32429Y13706D01* X32422Y13701D01* X32416Y13695D01* X32411Y13687D01* X32396Y13655D01* X32383Y13621D01* X32374Y13586D01* X32368Y13550D01* X32365Y13514D01* X32365Y13478D01* X32369Y13442D01* X32375Y13407D01* X32385Y13372D01* X32399Y13338D01* X32415Y13306D01* X32419Y13299D01* X32425Y13292D01* X32433Y13287D01* X32440Y13283D01* X32449Y13281D01* X32457Y13280D01* X32466Y13281D01* X32475Y13283D01* X32483Y13286D01* X32490Y13291D01* X32496Y13297D01* X32501Y13304D01* X32505Y13312D01* X32507Y13320D01* Y11702D01* X32506Y11703D01* X32499Y11708D01* X32491Y11711D01* X32482Y11713D01* X32474Y11714D01* X32465Y11713D01* X32457Y11710D01* X32449Y11706D01* X32442Y11701D01* X32436Y11695D01* X32431Y11687D01* X32416Y11655D01* X32403Y11621D01* X32394Y11586D01* X32388Y11550D01* X32385Y11514D01* X32385Y11478D01* X32389Y11442D01* X32395Y11407D01* X32405Y11372D01* X32419Y11338D01* X32435Y11306D01* X32439Y11299D01* X32445Y11292D01* X32453Y11287D01* X32460Y11283D01* X32469Y11281D01* X32477Y11280D01* X32486Y11281D01* X32495Y11283D01* X32503Y11286D01* X32507Y11289D01* Y9712D01* X32502Y9713D01* X32494Y9714D01* X32485Y9713D01* X32477Y9710D01* X32469Y9706D01* X32462Y9701D01* X32456Y9695D01* X32451Y9687D01* X32436Y9655D01* X32423Y9621D01* X32414Y9586D01* X32408Y9550D01* X32405Y9514D01* X32405Y9478D01* X32409Y9442D01* X32415Y9407D01* X32425Y9372D01* X32439Y9338D01* X32455Y9306D01* X32459Y9299D01* X32465Y9292D01* X32473Y9287D01* X32480Y9283D01* X32489Y9281D01* X32497Y9280D01* X32506Y9281D01* X32507Y9281D01* Y7713D01* X32505Y7713D01* X32497Y7710D01* X32489Y7706D01* X32482Y7701D01* X32476Y7695D01* X32471Y7687D01* X32456Y7655D01* X32443Y7621D01* X32434Y7586D01* X32428Y7550D01* X32425Y7514D01* X32425Y7478D01* X32429Y7442D01* X32435Y7407D01* X32445Y7372D01* X32459Y7338D01* X32475Y7306D01* X32479Y7299D01* X32485Y7292D01* X32493Y7287D01* X32500Y7283D01* X32507Y7281D01* Y5705D01* X32502Y5701D01* X32496Y5695D01* X32491Y5687D01* X32476Y5655D01* X32463Y5621D01* X32454Y5586D01* X32448Y5550D01* X32445Y5514D01* X32445Y5478D01* X32449Y5442D01* X32455Y5407D01* X32465Y5372D01* X32479Y5338D01* X32495Y5306D01* X32499Y5299D01* X32505Y5292D01* X32507Y5291D01* Y3679D01* X32496Y3655D01* X32483Y3621D01* X32474Y3586D01* X32468Y3550D01* X32465Y3514D01* X32465Y3478D01* X32469Y3442D01* X32475Y3407D01* X32485Y3372D01* X32499Y3338D01* X32507Y3321D01* Y1631D01* X32503Y1621D01* X32494Y1586D01* X32488Y1550D01* X32485Y1514D01* X32485Y1478D01* X32489Y1442D01* X32495Y1407D01* X32505Y1372D01* X32507Y1367D01* Y0D01* X32357D01* Y15403D01* X32365Y15372D01* X32379Y15338D01* X32395Y15306D01* X32399Y15299D01* X32405Y15292D01* X32413Y15287D01* X32420Y15283D01* X32429Y15281D01* X32437Y15280D01* X32446Y15281D01* X32455Y15283D01* X32463Y15286D01* X32470Y15291D01* X32476Y15297D01* X32481Y15304D01* X32485Y15312D01* X32487Y15320D01* X32488Y15329D01* X32488Y15338D01* X32486Y15346D01* X32482Y15354D01* X32470Y15378D01* X32460Y15404D01* X32453Y15430D01* X32448Y15456D01* X32445Y15483D01* X32445Y15511D01* X32447Y15538D01* X32452Y15564D01* X32459Y15590D01* X32468Y15616D01* X32480Y15640D01* X32483Y15649D01* X32485Y15657D01* X32485Y15666D01* X32484Y15674D01* X32482Y15683D01* X32478Y15690D01* X32473Y15697D01* X32466Y15703D01* X32459Y15708D01* X32451Y15711D01* X32442Y15713D01* X32434Y15714D01* X32425Y15713D01* X32417Y15710D01* X32409Y15706D01* X32402Y15701D01* X32396Y15695D01* X32391Y15687D01* X32376Y15655D01* X32363Y15621D01* X32357Y15596D01* Y17343D01* X32359Y17338D01* X32375Y17306D01* X32379Y17299D01* X32385Y17292D01* X32393Y17287D01* X32400Y17283D01* X32409Y17281D01* X32417Y17280D01* X32426Y17281D01* X32435Y17283D01* X32443Y17286D01* X32450Y17291D01* X32456Y17297D01* X32461Y17304D01* X32465Y17312D01* X32467Y17320D01* X32468Y17329D01* X32468Y17338D01* X32466Y17346D01* X32462Y17354D01* X32450Y17378D01* X32440Y17404D01* X32433Y17430D01* X32428Y17456D01* X32425Y17483D01* X32425Y17511D01* X32427Y17538D01* X32432Y17564D01* X32439Y17590D01* X32448Y17616D01* X32460Y17640D01* X32463Y17649D01* X32465Y17657D01* X32465Y17666D01* X32464Y17674D01* X32462Y17683D01* X32458Y17690D01* X32453Y17697D01* X32446Y17703D01* X32439Y17708D01* X32431Y17711D01* X32422Y17713D01* X32414Y17714D01* X32405Y17713D01* X32397Y17710D01* X32389Y17706D01* X32382Y17701D01* X32376Y17695D01* X32371Y17687D01* X32357Y17656D01* Y19303D01* X32359Y19299D01* X32365Y19292D01* X32373Y19287D01* X32380Y19283D01* X32389Y19281D01* X32397Y19280D01* X32406Y19281D01* X32415Y19283D01* X32423Y19286D01* X32430Y19291D01* X32436Y19297D01* X32441Y19304D01* X32445Y19312D01* X32447Y19320D01* X32448Y19329D01* X32448Y19338D01* X32446Y19346D01* X32442Y19354D01* X32430Y19378D01* X32420Y19404D01* X32413Y19430D01* X32408Y19456D01* X32405Y19483D01* X32405Y19511D01* X32407Y19538D01* X32412Y19564D01* X32419Y19590D01* X32428Y19616D01* X32440Y19640D01* X32443Y19649D01* X32445Y19657D01* X32445Y19666D01* X32444Y19674D01* X32442Y19683D01* X32438Y19690D01* X32433Y19697D01* X32426Y19703D01* X32419Y19708D01* X32411Y19711D01* X32402Y19713D01* X32394Y19714D01* X32385Y19713D01* X32377Y19710D01* X32369Y19706D01* X32362Y19701D01* X32357Y19695D01* Y21285D01* X32360Y21283D01* X32369Y21281D01* X32377Y21280D01* X32386Y21281D01* X32395Y21283D01* X32403Y21286D01* X32410Y21291D01* X32416Y21297D01* X32421Y21304D01* X32425Y21312D01* X32427Y21320D01* X32428Y21329D01* X32428Y21338D01* X32426Y21346D01* X32422Y21354D01* X32410Y21378D01* X32400Y21404D01* X32393Y21430D01* X32388Y21456D01* X32385Y21483D01* X32385Y21511D01* X32387Y21538D01* X32392Y21564D01* X32399Y21590D01* X32408Y21616D01* X32420Y21640D01* X32423Y21649D01* X32425Y21657D01* X32425Y21666D01* X32424Y21674D01* X32422Y21683D01* X32418Y21690D01* X32413Y21697D01* X32406Y21703D01* X32399Y21708D01* X32391Y21711D01* X32382Y21713D01* X32374Y21714D01* X32365Y21713D01* X32357Y21710D01* X32357Y21710D01* Y23280D01* X32357Y23280D01* X32366Y23281D01* X32375Y23283D01* X32383Y23286D01* X32390Y23291D01* X32396Y23297D01* X32401Y23304D01* X32405Y23312D01* X32407Y23320D01* X32408Y23329D01* X32408Y23338D01* X32406Y23346D01* X32402Y23354D01* X32390Y23378D01* X32380Y23404D01* X32373Y23430D01* X32368Y23456D01* X32365Y23483D01* X32365Y23511D01* X32367Y23538D01* X32372Y23564D01* X32379Y23590D01* X32388Y23616D01* X32400Y23640D01* X32403Y23649D01* X32405Y23657D01* X32405Y23666D01* X32404Y23674D01* X32402Y23683D01* X32398Y23690D01* X32393Y23697D01* X32386Y23703D01* X32379Y23708D01* X32371Y23711D01* X32362Y23713D01* X32357Y23714D01* Y25284D01* X32363Y25286D01* X32370Y25291D01* X32376Y25297D01* X32381Y25304D01* X32385Y25312D01* X32387Y25320D01* X32388Y25329D01* X32388Y25338D01* X32386Y25346D01* X32382Y25354D01* X32370Y25378D01* X32360Y25404D01* X32357Y25417D01* Y25583D01* X32359Y25590D01* X32368Y25616D01* X32380Y25640D01* X32383Y25649D01* X32385Y25657D01* X32385Y25666D01* X32384Y25674D01* X32382Y25683D01* X32378Y25690D01* X32373Y25697D01* X32366Y25703D01* X32359Y25708D01* X32357Y25709D01* Y27298D01* X32361Y27304D01* X32365Y27312D01* X32367Y27320D01* X32368Y27329D01* X32368Y27338D01* X32366Y27346D01* X32362Y27354D01* X32357Y27365D01* Y27634D01* X32360Y27640D01* X32363Y27649D01* X32365Y27657D01* X32365Y27666D01* X32364Y27674D01* X32362Y27683D01* X32358Y27690D01* X32357Y27692D01* Y33167D01* G37* G36* X32507Y11386D02*X32500Y11404D01* X32493Y11430D01* X32488Y11456D01* X32485Y11483D01* X32485Y11511D01* X32487Y11538D01* X32492Y11564D01* X32499Y11590D01* X32507Y11614D01* Y11386D01* G37* G36* Y9460D02*X32505Y9483D01* X32505Y9511D01* X32507Y9538D01* X32507Y9539D01* Y9460D01* G37* G36* Y40000D02*X32832D01* Y39714D01* X32829Y39716D01* X32820Y39718D01* X32812Y39719D01* X32803Y39719D01* X32794Y39717D01* X32786Y39713D01* X32779Y39708D01* X32773Y39702D01* X32768Y39695D01* X32764Y39687D01* X32762Y39679D01* X32761Y39670D01* X32761Y39661D01* X32763Y39653D01* X32767Y39645D01* X32779Y39621D01* X32789Y39595D01* X32796Y39569D01* X32801Y39543D01* X32804Y39516D01* X32804Y39489D01* X32802Y39462D01* X32797Y39435D01* X32790Y39409D01* X32781Y39383D01* X32769Y39359D01* X32766Y39351D01* X32764Y39342D01* X32764Y39333D01* X32765Y39325D01* X32767Y39317D01* X32771Y39309D01* X32776Y39302D01* X32783Y39296D01* X32790Y39291D01* X32798Y39288D01* X32807Y39286D01* X32815Y39285D01* X32824Y39286D01* X32832Y39289D01* X32832Y39289D01* Y37719D01* X32832Y37719D01* X32823Y37719D01* X32814Y37717D01* X32806Y37713D01* X32799Y37708D01* X32793Y37702D01* X32788Y37695D01* X32784Y37687D01* X32782Y37679D01* X32781Y37670D01* X32781Y37661D01* X32783Y37653D01* X32787Y37645D01* X32799Y37621D01* X32809Y37595D01* X32816Y37569D01* X32821Y37543D01* X32824Y37516D01* X32824Y37489D01* X32822Y37462D01* X32817Y37435D01* X32810Y37409D01* X32801Y37383D01* X32789Y37359D01* X32786Y37351D01* X32784Y37342D01* X32784Y37333D01* X32785Y37325D01* X32787Y37317D01* X32791Y37309D01* X32796Y37302D01* X32803Y37296D01* X32810Y37291D01* X32818Y37288D01* X32827Y37286D01* X32832Y37286D01* Y35716D01* X32826Y35713D01* X32819Y35708D01* X32813Y35702D01* X32808Y35695D01* X32804Y35687D01* X32802Y35679D01* X32801Y35670D01* X32801Y35661D01* X32803Y35653D01* X32807Y35645D01* X32819Y35621D01* X32829Y35595D01* X32832Y35583D01* Y35416D01* X32830Y35409D01* X32821Y35383D01* X32809Y35359D01* X32806Y35351D01* X32804Y35342D01* X32804Y35333D01* X32805Y35325D01* X32807Y35317D01* X32811Y35309D01* X32816Y35302D01* X32823Y35296D01* X32830Y35291D01* X32832Y35290D01* Y33701D01* X32828Y33695D01* X32824Y33687D01* X32822Y33679D01* X32821Y33670D01* X32821Y33661D01* X32823Y33653D01* X32827Y33645D01* X32832Y33634D01* Y33365D01* X32829Y33359D01* X32826Y33351D01* X32824Y33342D01* X32824Y33333D01* X32825Y33325D01* X32827Y33317D01* X32831Y33309D01* X32832Y33307D01* Y27833D01* X32831Y27835D01* X32826Y27842D01* X32820Y27848D01* X32812Y27853D01* X32780Y27868D01* X32746Y27881D01* X32711Y27890D01* X32675Y27896D01* X32639Y27899D01* X32603Y27899D01* X32567Y27895D01* X32531Y27889D01* X32507Y27882D01* Y29112D01* X32518Y29109D01* X32554Y29103D01* X32590Y29100D01* X32626Y29100D01* X32662Y29104D01* X32698Y29111D01* X32732Y29121D01* X32766Y29134D01* X32798Y29150D01* X32806Y29155D01* X32812Y29161D01* X32817Y29168D01* X32821Y29175D01* X32823Y29184D01* X32824Y29193D01* X32824Y29201D01* X32821Y29210D01* X32818Y29218D01* X32813Y29225D01* X32807Y29231D01* X32800Y29236D01* X32792Y29240D01* X32784Y29243D01* X32775Y29243D01* X32766Y29243D01* X32758Y29241D01* X32750Y29237D01* X32726Y29225D01* X32700Y29215D01* X32674Y29208D01* X32648Y29203D01* X32621Y29200D01* X32594Y29200D01* X32567Y29202D01* X32540Y29207D01* X32514Y29214D01* X32507Y29216D01* Y29783D01* X32509Y29784D01* X32535Y29791D01* X32561Y29796D01* X32588Y29799D01* X32615Y29799D01* X32642Y29797D01* X32669Y29793D01* X32695Y29785D01* X32721Y29776D01* X32745Y29764D01* X32753Y29761D01* X32762Y29759D01* X32771Y29759D01* X32779Y29760D01* X32788Y29762D01* X32795Y29766D01* X32802Y29772D01* X32808Y29778D01* X32813Y29785D01* X32816Y29793D01* X32818Y29802D01* X32819Y29810D01* X32818Y29819D01* X32815Y29827D01* X32811Y29835D01* X32806Y29842D01* X32800Y29848D01* X32792Y29853D01* X32760Y29868D01* X32726Y29881D01* X32691Y29890D01* X32655Y29896D01* X32619Y29899D01* X32583Y29899D01* X32547Y29895D01* X32511Y29889D01* X32507Y29887D01* Y31107D01* X32534Y31103D01* X32570Y31100D01* X32606Y31100D01* X32642Y31104D01* X32678Y31111D01* X32712Y31121D01* X32746Y31134D01* X32778Y31150D01* X32786Y31155D01* X32792Y31161D01* X32797Y31168D01* X32801Y31175D01* X32803Y31184D01* X32804Y31193D01* X32804Y31201D01* X32801Y31210D01* X32798Y31218D01* X32793Y31225D01* X32787Y31231D01* X32780Y31236D01* X32772Y31240D01* X32764Y31243D01* X32755Y31243D01* X32746Y31243D01* X32738Y31241D01* X32730Y31237D01* X32706Y31225D01* X32680Y31215D01* X32654Y31208D01* X32628Y31203D01* X32601Y31200D01* X32574Y31200D01* X32547Y31202D01* X32520Y31207D01* X32507Y31210D01* Y31789D01* X32515Y31791D01* X32541Y31796D01* X32568Y31799D01* X32595Y31799D01* X32622Y31797D01* X32649Y31793D01* X32675Y31785D01* X32701Y31776D01* X32725Y31764D01* X32733Y31761D01* X32742Y31759D01* X32751Y31759D01* X32759Y31760D01* X32768Y31762D01* X32775Y31766D01* X32782Y31772D01* X32788Y31778D01* X32793Y31785D01* X32796Y31793D01* X32798Y31802D01* X32799Y31810D01* X32798Y31819D01* X32795Y31827D01* X32791Y31835D01* X32786Y31842D01* X32780Y31848D01* X32772Y31853D01* X32740Y31868D01* X32706Y31881D01* X32671Y31890D01* X32635Y31896D01* X32599Y31899D01* X32563Y31899D01* X32527Y31895D01* X32507Y31892D01* Y33104D01* X32514Y33103D01* X32550Y33100D01* X32586Y33100D01* X32622Y33104D01* X32658Y33111D01* X32692Y33121D01* X32726Y33134D01* X32758Y33150D01* X32766Y33155D01* X32772Y33161D01* X32777Y33168D01* X32781Y33175D01* X32783Y33184D01* X32784Y33193D01* X32784Y33201D01* X32781Y33210D01* X32778Y33218D01* X32773Y33225D01* X32767Y33231D01* X32760Y33236D01* X32752Y33240D01* X32744Y33243D01* X32735Y33243D01* X32726Y33243D01* X32718Y33241D01* X32710Y33237D01* X32686Y33225D01* X32660Y33215D01* X32634Y33208D01* X32608Y33203D01* X32581Y33200D01* X32554Y33200D01* X32527Y33202D01* X32507Y33205D01* Y33794D01* X32521Y33796D01* X32548Y33799D01* X32575Y33799D01* X32602Y33797D01* X32629Y33793D01* X32655Y33785D01* X32681Y33776D01* X32705Y33764D01* X32713Y33761D01* X32722Y33759D01* X32731Y33759D01* X32739Y33760D01* X32748Y33762D01* X32755Y33766D01* X32762Y33772D01* X32768Y33778D01* X32773Y33785D01* X32776Y33793D01* X32778Y33802D01* X32779Y33810D01* X32778Y33819D01* X32775Y33827D01* X32771Y33835D01* X32766Y33842D01* X32760Y33848D01* X32752Y33853D01* X32720Y33868D01* X32686Y33881D01* X32651Y33890D01* X32615Y33896D01* X32579Y33899D01* X32543Y33899D01* X32507Y33895D01* Y35102D01* X32530Y35100D01* X32566Y35100D01* X32602Y35104D01* X32638Y35111D01* X32672Y35121D01* X32706Y35134D01* X32738Y35150D01* X32746Y35155D01* X32752Y35161D01* X32757Y35168D01* X32761Y35175D01* X32763Y35184D01* X32764Y35193D01* X32764Y35201D01* X32761Y35210D01* X32758Y35218D01* X32753Y35225D01* X32747Y35231D01* X32740Y35236D01* X32732Y35240D01* X32724Y35243D01* X32715Y35243D01* X32706Y35243D01* X32698Y35241D01* X32690Y35237D01* X32666Y35225D01* X32640Y35215D01* X32614Y35208D01* X32588Y35203D01* X32561Y35200D01* X32534Y35200D01* X32507Y35202D01* Y35797D01* X32528Y35799D01* X32555Y35799D01* X32582Y35797D01* X32609Y35793D01* X32635Y35785D01* X32661Y35776D01* X32685Y35764D01* X32693Y35761D01* X32702Y35759D01* X32711Y35759D01* X32719Y35760D01* X32728Y35762D01* X32735Y35766D01* X32742Y35772D01* X32748Y35778D01* X32753Y35785D01* X32756Y35793D01* X32758Y35802D01* X32759Y35810D01* X32758Y35819D01* X32755Y35827D01* X32751Y35835D01* X32746Y35842D01* X32740Y35848D01* X32732Y35853D01* X32700Y35868D01* X32666Y35881D01* X32631Y35890D01* X32595Y35896D01* X32559Y35899D01* X32523Y35899D01* X32507Y35897D01* Y37100D01* X32510Y37100D01* X32546Y37100D01* X32582Y37104D01* X32618Y37111D01* X32652Y37121D01* X32686Y37134D01* X32718Y37150D01* X32726Y37155D01* X32732Y37161D01* X32737Y37168D01* X32741Y37175D01* X32743Y37184D01* X32744Y37193D01* X32744Y37201D01* X32741Y37210D01* X32738Y37218D01* X32733Y37225D01* X32727Y37231D01* X32720Y37236D01* X32712Y37240D01* X32704Y37243D01* X32695Y37243D01* X32686Y37243D01* X32678Y37241D01* X32670Y37237D01* X32646Y37225D01* X32620Y37215D01* X32594Y37208D01* X32568Y37203D01* X32541Y37200D01* X32514Y37200D01* X32507Y37200D01* Y37799D01* X32508Y37799D01* X32535Y37799D01* X32562Y37797D01* X32589Y37793D01* X32615Y37785D01* X32641Y37776D01* X32665Y37764D01* X32673Y37761D01* X32682Y37759D01* X32691Y37759D01* X32699Y37760D01* X32708Y37762D01* X32715Y37766D01* X32722Y37772D01* X32728Y37778D01* X32733Y37785D01* X32736Y37793D01* X32738Y37802D01* X32739Y37810D01* X32738Y37819D01* X32735Y37827D01* X32731Y37835D01* X32726Y37842D01* X32720Y37848D01* X32712Y37853D01* X32680Y37868D01* X32646Y37881D01* X32611Y37890D01* X32575Y37896D01* X32539Y37899D01* X32507Y37899D01* Y39100D01* X32526Y39100D01* X32562Y39104D01* X32598Y39111D01* X32632Y39121D01* X32666Y39134D01* X32698Y39150D01* X32706Y39155D01* X32712Y39161D01* X32717Y39168D01* X32721Y39175D01* X32723Y39184D01* X32724Y39193D01* X32724Y39201D01* X32721Y39210D01* X32718Y39218D01* X32713Y39225D01* X32707Y39231D01* X32700Y39236D01* X32692Y39240D01* X32684Y39243D01* X32675Y39243D01* X32666Y39243D01* X32658Y39241D01* X32650Y39237D01* X32626Y39225D01* X32600Y39215D01* X32574Y39208D01* X32548Y39203D01* X32521Y39200D01* X32507Y39200D01* Y39799D01* X32515Y39799D01* X32542Y39797D01* X32569Y39793D01* X32595Y39785D01* X32621Y39776D01* X32645Y39764D01* X32653Y39761D01* X32662Y39759D01* X32671Y39759D01* X32679Y39760D01* X32688Y39762D01* X32695Y39766D01* X32702Y39772D01* X32708Y39778D01* X32713Y39785D01* X32716Y39793D01* X32718Y39802D01* X32719Y39810D01* X32718Y39819D01* X32715Y39827D01* X32711Y39835D01* X32706Y39842D01* X32700Y39848D01* X32692Y39853D01* X32660Y39868D01* X32626Y39881D01* X32591Y39890D01* X32555Y39896D01* X32519Y39899D01* X32507Y39899D01* Y40000D01* G37* G36* X32832Y0D02*X32507D01* Y1367D01* X32519Y1338D01* X32535Y1306D01* X32539Y1299D01* X32545Y1292D01* X32553Y1287D01* X32560Y1283D01* X32569Y1281D01* X32577Y1280D01* X32586Y1281D01* X32595Y1283D01* X32603Y1286D01* X32610Y1291D01* X32616Y1297D01* X32621Y1304D01* X32625Y1312D01* X32627Y1320D01* X32628Y1329D01* X32628Y1338D01* X32626Y1346D01* X32622Y1354D01* X32610Y1378D01* X32600Y1404D01* X32593Y1430D01* X32588Y1456D01* X32585Y1483D01* X32585Y1511D01* X32587Y1538D01* X32592Y1564D01* X32599Y1590D01* X32608Y1616D01* X32620Y1640D01* X32623Y1649D01* X32625Y1657D01* X32625Y1666D01* X32624Y1674D01* X32622Y1683D01* X32618Y1690D01* X32613Y1697D01* X32606Y1703D01* X32599Y1708D01* X32591Y1711D01* X32582Y1713D01* X32574Y1714D01* X32565Y1713D01* X32557Y1710D01* X32549Y1706D01* X32542Y1701D01* X32536Y1695D01* X32531Y1687D01* X32516Y1655D01* X32507Y1631D01* Y3321D01* X32515Y3306D01* X32519Y3299D01* X32525Y3292D01* X32533Y3287D01* X32540Y3283D01* X32549Y3281D01* X32557Y3280D01* X32566Y3281D01* X32575Y3283D01* X32583Y3286D01* X32590Y3291D01* X32596Y3297D01* X32601Y3304D01* X32605Y3312D01* X32607Y3320D01* X32608Y3329D01* X32608Y3338D01* X32606Y3346D01* X32602Y3354D01* X32590Y3378D01* X32580Y3404D01* X32573Y3430D01* X32568Y3456D01* X32565Y3483D01* X32565Y3511D01* X32567Y3538D01* X32572Y3564D01* X32579Y3590D01* X32588Y3616D01* X32600Y3640D01* X32603Y3649D01* X32605Y3657D01* X32605Y3666D01* X32604Y3674D01* X32602Y3683D01* X32598Y3690D01* X32593Y3697D01* X32586Y3703D01* X32579Y3708D01* X32571Y3711D01* X32562Y3713D01* X32554Y3714D01* X32545Y3713D01* X32537Y3710D01* X32529Y3706D01* X32522Y3701D01* X32516Y3695D01* X32511Y3687D01* X32507Y3679D01* Y5291D01* X32513Y5287D01* X32520Y5283D01* X32529Y5281D01* X32537Y5280D01* X32546Y5281D01* X32555Y5283D01* X32563Y5286D01* X32570Y5291D01* X32576Y5297D01* X32581Y5304D01* X32585Y5312D01* X32587Y5320D01* X32588Y5329D01* X32588Y5338D01* X32586Y5346D01* X32582Y5354D01* X32570Y5378D01* X32560Y5404D01* X32553Y5430D01* X32548Y5456D01* X32545Y5483D01* X32545Y5511D01* X32547Y5538D01* X32552Y5564D01* X32559Y5590D01* X32568Y5616D01* X32580Y5640D01* X32583Y5649D01* X32585Y5657D01* X32585Y5666D01* X32584Y5674D01* X32582Y5683D01* X32578Y5690D01* X32573Y5697D01* X32566Y5703D01* X32559Y5708D01* X32551Y5711D01* X32542Y5713D01* X32534Y5714D01* X32525Y5713D01* X32517Y5710D01* X32509Y5706D01* X32507Y5705D01* Y7281D01* X32509Y7281D01* X32517Y7280D01* X32526Y7281D01* X32535Y7283D01* X32543Y7286D01* X32550Y7291D01* X32556Y7297D01* X32561Y7304D01* X32565Y7312D01* X32567Y7320D01* X32568Y7329D01* X32568Y7338D01* X32566Y7346D01* X32562Y7354D01* X32550Y7378D01* X32540Y7404D01* X32533Y7430D01* X32528Y7456D01* X32525Y7483D01* X32525Y7511D01* X32527Y7538D01* X32532Y7564D01* X32539Y7590D01* X32548Y7616D01* X32560Y7640D01* X32563Y7649D01* X32565Y7657D01* X32565Y7666D01* X32564Y7674D01* X32562Y7683D01* X32558Y7690D01* X32553Y7697D01* X32546Y7703D01* X32539Y7708D01* X32531Y7711D01* X32522Y7713D01* X32514Y7714D01* X32507Y7713D01* Y9281D01* X32515Y9283D01* X32523Y9286D01* X32530Y9291D01* X32536Y9297D01* X32541Y9304D01* X32545Y9312D01* X32547Y9320D01* X32548Y9329D01* X32548Y9338D01* X32546Y9346D01* X32542Y9354D01* X32530Y9378D01* X32520Y9404D01* X32513Y9430D01* X32508Y9456D01* X32507Y9460D01* Y9539D01* X32512Y9564D01* X32519Y9590D01* X32528Y9616D01* X32540Y9640D01* X32543Y9649D01* X32545Y9657D01* X32545Y9666D01* X32544Y9674D01* X32542Y9683D01* X32538Y9690D01* X32533Y9697D01* X32526Y9703D01* X32519Y9708D01* X32511Y9711D01* X32507Y9712D01* Y11289D01* X32510Y11291D01* X32516Y11297D01* X32521Y11304D01* X32525Y11312D01* X32527Y11320D01* X32528Y11329D01* X32528Y11338D01* X32526Y11346D01* X32522Y11354D01* X32510Y11378D01* X32507Y11386D01* Y11614D01* X32508Y11616D01* X32520Y11640D01* X32523Y11649D01* X32525Y11657D01* X32525Y11666D01* X32524Y11674D01* X32522Y11683D01* X32518Y11690D01* X32513Y11697D01* X32507Y11702D01* Y13320D01* X32507Y13320D01* X32508Y13329D01* X32508Y13338D01* X32507Y13340D01* Y17791D01* X32508Y17790D01* X32511Y17782D01* X32516Y17774D01* X32522Y17768D01* X32529Y17763D01* X32537Y17759D01* X32545Y17757D01* X32554Y17756D01* X32563Y17756D01* X32571Y17758D01* X32579Y17762D01* X32603Y17774D01* X32629Y17784D01* X32655Y17791D01* X32681Y17796D01* X32708Y17799D01* X32735Y17799D01* X32762Y17797D01* X32789Y17793D01* X32815Y17785D01* X32832Y17779D01* Y17220D01* X32820Y17215D01* X32794Y17208D01* X32768Y17203D01* X32741Y17200D01* X32714Y17200D01* X32687Y17202D01* X32660Y17207D01* X32634Y17214D01* X32608Y17223D01* X32584Y17235D01* X32576Y17238D01* X32567Y17240D01* X32558Y17240D01* X32550Y17239D01* X32541Y17237D01* X32534Y17233D01* X32527Y17228D01* X32521Y17221D01* X32516Y17214D01* X32513Y17206D01* X32511Y17197D01* X32510Y17189D01* X32511Y17180D01* X32514Y17172D01* X32518Y17164D01* X32523Y17157D01* X32529Y17151D01* X32537Y17146D01* X32569Y17131D01* X32603Y17118D01* X32638Y17109D01* X32674Y17103D01* X32710Y17100D01* X32746Y17100D01* X32782Y17104D01* X32818Y17111D01* X32832Y17115D01* Y15890D01* X32831Y15890D01* X32795Y15896D01* X32759Y15899D01* X32723Y15899D01* X32687Y15895D01* X32651Y15889D01* X32617Y15879D01* X32583Y15866D01* X32551Y15849D01* X32543Y15845D01* X32537Y15839D01* X32532Y15832D01* X32528Y15824D01* X32526Y15815D01* X32525Y15807D01* X32525Y15798D01* X32528Y15790D01* X32531Y15782D01* X32536Y15774D01* X32542Y15768D01* X32549Y15763D01* X32557Y15759D01* X32565Y15757D01* X32574Y15756D01* X32583Y15756D01* X32591Y15758D01* X32599Y15762D01* X32623Y15774D01* X32649Y15784D01* X32675Y15791D01* X32701Y15796D01* X32728Y15799D01* X32755Y15799D01* X32782Y15797D01* X32809Y15793D01* X32832Y15786D01* Y15213D01* X32814Y15208D01* X32788Y15203D01* X32761Y15200D01* X32734Y15200D01* X32707Y15202D01* X32680Y15207D01* X32654Y15214D01* X32628Y15223D01* X32604Y15235D01* X32596Y15238D01* X32587Y15240D01* X32578Y15240D01* X32570Y15239D01* X32561Y15237D01* X32554Y15233D01* X32547Y15228D01* X32541Y15221D01* X32536Y15214D01* X32533Y15206D01* X32531Y15197D01* X32530Y15189D01* X32531Y15180D01* X32534Y15172D01* X32538Y15164D01* X32543Y15157D01* X32549Y15151D01* X32557Y15146D01* X32589Y15131D01* X32623Y15118D01* X32658Y15109D01* X32694Y15103D01* X32730Y15100D01* X32766Y15100D01* X32802Y15104D01* X32832Y15110D01* Y13893D01* X32815Y13896D01* X32779Y13899D01* X32743Y13899D01* X32707Y13895D01* X32671Y13889D01* X32637Y13879D01* X32603Y13866D01* X32571Y13849D01* X32563Y13845D01* X32557Y13839D01* X32552Y13832D01* X32548Y13824D01* X32546Y13815D01* X32545Y13807D01* X32545Y13798D01* X32548Y13790D01* X32551Y13782D01* X32556Y13774D01* X32562Y13768D01* X32569Y13763D01* X32577Y13759D01* X32585Y13757D01* X32594Y13756D01* X32603Y13756D01* X32611Y13758D01* X32619Y13762D01* X32643Y13774D01* X32669Y13784D01* X32695Y13791D01* X32721Y13796D01* X32748Y13799D01* X32775Y13799D01* X32802Y13797D01* X32829Y13793D01* X32832Y13792D01* Y13207D01* X32808Y13203D01* X32781Y13200D01* X32754Y13200D01* X32727Y13202D01* X32700Y13207D01* X32674Y13214D01* X32648Y13223D01* X32624Y13235D01* X32616Y13238D01* X32607Y13240D01* X32598Y13240D01* X32590Y13239D01* X32581Y13237D01* X32574Y13233D01* X32567Y13228D01* X32561Y13221D01* X32556Y13214D01* X32553Y13206D01* X32551Y13197D01* X32550Y13189D01* X32551Y13180D01* X32554Y13172D01* X32558Y13164D01* X32563Y13157D01* X32569Y13151D01* X32577Y13146D01* X32609Y13131D01* X32643Y13118D01* X32678Y13109D01* X32714Y13103D01* X32750Y13100D01* X32786Y13100D01* X32822Y13104D01* X32832Y13106D01* Y11897D01* X32799Y11899D01* X32763Y11899D01* X32727Y11895D01* X32691Y11889D01* X32657Y11879D01* X32623Y11866D01* X32591Y11849D01* X32583Y11845D01* X32577Y11839D01* X32572Y11832D01* X32568Y11824D01* X32566Y11815D01* X32565Y11807D01* X32565Y11798D01* X32568Y11790D01* X32571Y11782D01* X32576Y11774D01* X32582Y11768D01* X32589Y11763D01* X32597Y11759D01* X32605Y11757D01* X32614Y11756D01* X32623Y11756D01* X32631Y11758D01* X32639Y11762D01* X32663Y11774D01* X32689Y11784D01* X32715Y11791D01* X32741Y11796D01* X32768Y11799D01* X32795Y11799D01* X32822Y11797D01* X32832Y11795D01* Y11204D01* X32828Y11203D01* X32801Y11200D01* X32774Y11200D01* X32747Y11202D01* X32720Y11207D01* X32694Y11214D01* X32668Y11223D01* X32644Y11235D01* X32636Y11238D01* X32627Y11240D01* X32618Y11240D01* X32610Y11239D01* X32601Y11237D01* X32594Y11233D01* X32587Y11228D01* X32581Y11221D01* X32576Y11214D01* X32573Y11206D01* X32571Y11197D01* X32570Y11189D01* X32571Y11180D01* X32574Y11172D01* X32578Y11164D01* X32583Y11157D01* X32589Y11151D01* X32597Y11146D01* X32629Y11131D01* X32663Y11118D01* X32698Y11109D01* X32734Y11103D01* X32770Y11100D01* X32806Y11100D01* X32832Y11103D01* Y9898D01* X32819Y9899D01* X32783Y9899D01* X32747Y9895D01* X32711Y9889D01* X32677Y9879D01* X32643Y9866D01* X32611Y9849D01* X32603Y9845D01* X32597Y9839D01* X32592Y9832D01* X32588Y9824D01* X32586Y9815D01* X32585Y9807D01* X32585Y9798D01* X32588Y9790D01* X32591Y9782D01* X32596Y9774D01* X32602Y9768D01* X32609Y9763D01* X32617Y9759D01* X32625Y9757D01* X32634Y9756D01* X32643Y9756D01* X32651Y9758D01* X32659Y9762D01* X32683Y9774D01* X32709Y9784D01* X32735Y9791D01* X32761Y9796D01* X32788Y9799D01* X32815Y9799D01* X32832Y9798D01* Y9201D01* X32821Y9200D01* X32794Y9200D01* X32767Y9202D01* X32740Y9207D01* X32714Y9214D01* X32688Y9223D01* X32664Y9235D01* X32656Y9238D01* X32647Y9240D01* X32638Y9240D01* X32630Y9239D01* X32621Y9237D01* X32614Y9233D01* X32607Y9228D01* X32601Y9221D01* X32596Y9214D01* X32593Y9206D01* X32591Y9197D01* X32590Y9189D01* X32591Y9180D01* X32594Y9172D01* X32598Y9164D01* X32603Y9157D01* X32609Y9151D01* X32617Y9146D01* X32649Y9131D01* X32683Y9118D01* X32718Y9109D01* X32754Y9103D01* X32790Y9100D01* X32826Y9100D01* X32832Y9101D01* Y7899D01* X32803Y7899D01* X32767Y7895D01* X32731Y7889D01* X32697Y7879D01* X32663Y7866D01* X32631Y7849D01* X32623Y7845D01* X32617Y7839D01* X32612Y7832D01* X32608Y7824D01* X32606Y7815D01* X32605Y7807D01* X32605Y7798D01* X32608Y7790D01* X32611Y7782D01* X32616Y7774D01* X32622Y7768D01* X32629Y7763D01* X32637Y7759D01* X32645Y7757D01* X32654Y7756D01* X32663Y7756D01* X32671Y7758D01* X32679Y7762D01* X32703Y7774D01* X32729Y7784D01* X32755Y7791D01* X32781Y7796D01* X32808Y7799D01* X32832Y7799D01* Y7200D01* X32814Y7200D01* X32787Y7202D01* X32760Y7207D01* X32734Y7214D01* X32708Y7223D01* X32684Y7235D01* X32676Y7238D01* X32667Y7240D01* X32658Y7240D01* X32650Y7239D01* X32641Y7237D01* X32634Y7233D01* X32627Y7228D01* X32621Y7221D01* X32616Y7214D01* X32613Y7206D01* X32611Y7197D01* X32610Y7189D01* X32611Y7180D01* X32614Y7172D01* X32618Y7164D01* X32623Y7157D01* X32629Y7151D01* X32637Y7146D01* X32669Y7131D01* X32703Y7118D01* X32738Y7109D01* X32774Y7103D01* X32810Y7100D01* X32832Y7100D01* Y5899D01* X32823Y5899D01* X32787Y5895D01* X32751Y5889D01* X32717Y5879D01* X32683Y5866D01* X32651Y5849D01* X32643Y5845D01* X32637Y5839D01* X32632Y5832D01* X32628Y5824D01* X32626Y5815D01* X32625Y5807D01* X32625Y5798D01* X32628Y5790D01* X32631Y5782D01* X32636Y5774D01* X32642Y5768D01* X32649Y5763D01* X32657Y5759D01* X32665Y5757D01* X32674Y5756D01* X32683Y5756D01* X32691Y5758D01* X32699Y5762D01* X32723Y5774D01* X32749Y5784D01* X32775Y5791D01* X32801Y5796D01* X32828Y5799D01* X32832D01* Y5200D01* X32807Y5202D01* X32780Y5207D01* X32754Y5214D01* X32728Y5223D01* X32704Y5235D01* X32696Y5238D01* X32687Y5240D01* X32678Y5240D01* X32670Y5239D01* X32661Y5237D01* X32654Y5233D01* X32647Y5228D01* X32641Y5221D01* X32636Y5214D01* X32633Y5206D01* X32631Y5197D01* X32630Y5189D01* X32631Y5180D01* X32634Y5172D01* X32638Y5164D01* X32643Y5157D01* X32649Y5151D01* X32657Y5146D01* X32689Y5131D01* X32723Y5118D01* X32758Y5109D01* X32794Y5103D01* X32830Y5100D01* X32832D01* Y3898D01* X32807Y3895D01* X32771Y3889D01* X32737Y3879D01* X32703Y3866D01* X32671Y3849D01* X32663Y3845D01* X32657Y3839D01* X32652Y3832D01* X32648Y3824D01* X32646Y3815D01* X32645Y3807D01* X32645Y3798D01* X32648Y3790D01* X32651Y3782D01* X32656Y3774D01* X32662Y3768D01* X32669Y3763D01* X32677Y3759D01* X32685Y3757D01* X32694Y3756D01* X32703Y3756D01* X32711Y3758D01* X32719Y3762D01* X32743Y3774D01* X32769Y3784D01* X32795Y3791D01* X32821Y3796D01* X32832Y3798D01* Y3202D01* X32827Y3202D01* X32800Y3207D01* X32774Y3214D01* X32748Y3223D01* X32724Y3235D01* X32716Y3238D01* X32707Y3240D01* X32698Y3240D01* X32690Y3239D01* X32681Y3237D01* X32674Y3233D01* X32667Y3228D01* X32661Y3221D01* X32656Y3214D01* X32653Y3206D01* X32651Y3197D01* X32650Y3189D01* X32651Y3180D01* X32654Y3172D01* X32658Y3164D01* X32663Y3157D01* X32669Y3151D01* X32677Y3146D01* X32709Y3131D01* X32743Y3118D01* X32778Y3109D01* X32814Y3103D01* X32832Y3101D01* Y1896D01* X32827Y1895D01* X32791Y1889D01* X32757Y1879D01* X32723Y1866D01* X32691Y1849D01* X32683Y1845D01* X32677Y1839D01* X32672Y1832D01* X32668Y1824D01* X32666Y1815D01* X32665Y1807D01* X32665Y1798D01* X32668Y1790D01* X32671Y1782D01* X32676Y1774D01* X32682Y1768D01* X32689Y1763D01* X32697Y1759D01* X32705Y1757D01* X32714Y1756D01* X32723Y1756D01* X32731Y1758D01* X32739Y1762D01* X32763Y1774D01* X32789Y1784D01* X32815Y1791D01* X32832Y1795D01* Y1204D01* X32820Y1207D01* X32794Y1214D01* X32768Y1223D01* X32744Y1235D01* X32736Y1238D01* X32727Y1240D01* X32718Y1240D01* X32710Y1239D01* X32701Y1237D01* X32694Y1233D01* X32687Y1228D01* X32681Y1221D01* X32676Y1214D01* X32673Y1206D01* X32671Y1197D01* X32670Y1189D01* X32671Y1180D01* X32674Y1172D01* X32678Y1164D01* X32683Y1157D01* X32689Y1151D01* X32697Y1146D01* X32729Y1131D01* X32763Y1118D01* X32798Y1109D01* X32832Y1103D01* Y0D01* G37* G36* Y17884D02*X32811Y17890D01* X32775Y17896D01* X32739Y17899D01* X32703Y17899D01* X32667Y17895D01* X32631Y17889D01* X32597Y17879D01* X32563Y17866D01* X32531Y17849D01* X32523Y17845D01* X32517Y17839D01* X32512Y17832D01* X32508Y17824D01* X32507Y17821D01* Y19153D01* X32509Y19151D01* X32517Y19146D01* X32549Y19131D01* X32583Y19118D01* X32618Y19109D01* X32654Y19103D01* X32690Y19100D01* X32726Y19100D01* X32762Y19104D01* X32798Y19111D01* X32832Y19121D01* X32832D01* Y17884D01* G37* G36* Y19229D02*X32826Y19225D01* X32800Y19215D01* X32774Y19208D01* X32748Y19203D01* X32721Y19200D01* X32694Y19200D01* X32667Y19202D01* X32640Y19207D01* X32614Y19214D01* X32588Y19223D01* X32564Y19235D01* X32556Y19238D01* X32547Y19240D01* X32538Y19240D01* X32530Y19239D01* X32521Y19237D01* X32514Y19233D01* X32507Y19228D01* Y19764D01* X32509Y19763D01* X32517Y19759D01* X32525Y19757D01* X32534Y19756D01* X32543Y19756D01* X32551Y19758D01* X32559Y19762D01* X32583Y19774D01* X32609Y19784D01* X32635Y19791D01* X32661Y19796D01* X32688Y19799D01* X32715Y19799D01* X32742Y19797D01* X32769Y19793D01* X32795Y19785D01* X32821Y19776D01* X32832Y19771D01* Y19229D01* G37* G36* Y19878D02*X32826Y19881D01* X32791Y19890D01* X32755Y19896D01* X32719Y19899D01* X32683Y19899D01* X32647Y19895D01* X32611Y19889D01* X32577Y19879D01* X32543Y19866D01* X32511Y19849D01* X32507Y19847D01* Y21141D01* X32529Y21131D01* X32563Y21118D01* X32598Y21109D01* X32634Y21103D01* X32670Y21100D01* X32706Y21100D01* X32742Y21104D01* X32778Y21111D01* X32812Y21121D01* X32832Y21128D01* Y19878D01* G37* G36* Y21238D02*X32830Y21237D01* X32806Y21225D01* X32780Y21215D01* X32754Y21208D01* X32728Y21203D01* X32701Y21200D01* X32674Y21200D01* X32647Y21202D01* X32620Y21207D01* X32594Y21214D01* X32568Y21223D01* X32544Y21235D01* X32536Y21238D01* X32527Y21240D01* X32518Y21240D01* X32510Y21239D01* X32507Y21239D01* Y21756D01* X32514Y21756D01* X32523Y21756D01* X32531Y21758D01* X32539Y21762D01* X32563Y21774D01* X32589Y21784D01* X32615Y21791D01* X32641Y21796D01* X32668Y21799D01* X32695Y21799D01* X32722Y21797D01* X32749Y21793D01* X32775Y21785D01* X32801Y21776D01* X32825Y21764D01* X32832Y21762D01* Y21238D01* G37* G36* Y21871D02*X32806Y21881D01* X32771Y21890D01* X32735Y21896D01* X32699Y21899D01* X32663Y21899D01* X32627Y21895D01* X32591Y21889D01* X32557Y21879D01* X32523Y21866D01* X32507Y21858D01* Y23132D01* X32509Y23131D01* X32543Y23118D01* X32578Y23109D01* X32614Y23103D01* X32650Y23100D01* X32686Y23100D01* X32722Y23104D01* X32758Y23111D01* X32792Y23121D01* X32826Y23134D01* X32832Y23137D01* Y21871D01* G37* G36* Y23243D02*X32826Y23243D01* X32818Y23241D01* X32810Y23237D01* X32786Y23225D01* X32760Y23215D01* X32734Y23208D01* X32708Y23203D01* X32681Y23200D01* X32654Y23200D01* X32627Y23202D01* X32600Y23207D01* X32574Y23214D01* X32548Y23223D01* X32524Y23235D01* X32516Y23238D01* X32507Y23240D01* Y23757D01* X32511Y23758D01* X32519Y23762D01* X32543Y23774D01* X32569Y23784D01* X32595Y23791D01* X32621Y23796D01* X32648Y23799D01* X32675Y23799D01* X32702Y23797D01* X32729Y23793D01* X32755Y23785D01* X32781Y23776D01* X32805Y23764D01* X32813Y23761D01* X32822Y23759D01* X32831Y23759D01* X32832Y23759D01* Y23243D01* G37* G36* Y23862D02*X32820Y23868D01* X32786Y23881D01* X32751Y23890D01* X32715Y23896D01* X32679Y23899D01* X32643Y23899D01* X32607Y23895D01* X32571Y23889D01* X32537Y23879D01* X32507Y23867D01* Y25124D01* X32523Y25118D01* X32558Y25109D01* X32594Y25103D01* X32630Y25100D01* X32666Y25100D01* X32702Y25104D01* X32738Y25111D01* X32772Y25121D01* X32806Y25134D01* X32832Y25147D01* Y23862D01* G37* G36* Y25240D02*X32832Y25240D01* X32824Y25243D01* X32815Y25243D01* X32806Y25243D01* X32798Y25241D01* X32790Y25237D01* X32766Y25225D01* X32740Y25215D01* X32714Y25208D01* X32688Y25203D01* X32661Y25200D01* X32634Y25200D01* X32607Y25202D01* X32580Y25207D01* X32554Y25214D01* X32528Y25223D01* X32507Y25233D01* Y25766D01* X32523Y25774D01* X32549Y25784D01* X32575Y25791D01* X32601Y25796D01* X32628Y25799D01* X32655Y25799D01* X32682Y25797D01* X32709Y25793D01* X32735Y25785D01* X32761Y25776D01* X32785Y25764D01* X32793Y25761D01* X32802Y25759D01* X32811Y25759D01* X32819Y25760D01* X32828Y25762D01* X32832Y25765D01* Y25240D01* G37* G36* Y25853D02*X32832Y25853D01* X32800Y25868D01* X32766Y25881D01* X32731Y25890D01* X32695Y25896D01* X32659Y25899D01* X32623Y25899D01* X32587Y25895D01* X32551Y25889D01* X32517Y25879D01* X32507Y25875D01* Y27117D01* X32538Y27109D01* X32574Y27103D01* X32610Y27100D01* X32646Y27100D01* X32682Y27104D01* X32718Y27111D01* X32752Y27121D01* X32786Y27134D01* X32818Y27150D01* X32826Y27155D01* X32832Y27161D01* X32832Y27161D01* Y25853D01* G37* G36* Y27225D02*X32827Y27231D01* X32820Y27236D01* X32812Y27240D01* X32804Y27243D01* X32795Y27243D01* X32786Y27243D01* X32778Y27241D01* X32770Y27237D01* X32746Y27225D01* X32720Y27215D01* X32694Y27208D01* X32668Y27203D01* X32641Y27200D01* X32614Y27200D01* X32587Y27202D01* X32560Y27207D01* X32534Y27214D01* X32508Y27223D01* X32507Y27223D01* Y27776D01* X32529Y27784D01* X32555Y27791D01* X32581Y27796D01* X32608Y27799D01* X32635Y27799D01* X32662Y27797D01* X32689Y27793D01* X32715Y27785D01* X32741Y27776D01* X32765Y27764D01* X32773Y27761D01* X32782Y27759D01* X32791Y27759D01* X32799Y27760D01* X32808Y27762D01* X32815Y27766D01* X32822Y27772D01* X32828Y27778D01* X32832Y27784D01* Y27225D01* G37* G36* Y40000D02*X32932D01* Y35596D01* X32924Y35627D01* X32910Y35661D01* X32894Y35694D01* X32890Y35701D01* X32884Y35707D01* X32876Y35712D01* X32869Y35716D01* X32860Y35718D01* X32852Y35719D01* X32843Y35719D01* X32834Y35717D01* X32832Y35716D01* Y37286D01* X32835Y37285D01* X32844Y37286D01* X32852Y37289D01* X32860Y37293D01* X32867Y37298D01* X32873Y37305D01* X32878Y37312D01* X32893Y37344D01* X32906Y37378D01* X32915Y37413D01* X32921Y37449D01* X32924Y37485D01* X32924Y37521D01* X32920Y37557D01* X32914Y37593D01* X32904Y37627D01* X32890Y37661D01* X32874Y37694D01* X32870Y37701D01* X32864Y37707D01* X32856Y37712D01* X32849Y37716D01* X32840Y37718D01* X32832Y37719D01* Y39289D01* X32840Y39293D01* X32847Y39298D01* X32853Y39305D01* X32858Y39312D01* X32873Y39344D01* X32886Y39378D01* X32895Y39413D01* X32901Y39449D01* X32904Y39485D01* X32904Y39521D01* X32900Y39557D01* X32894Y39593D01* X32884Y39627D01* X32870Y39661D01* X32854Y39694D01* X32850Y39701D01* X32844Y39707D01* X32836Y39712D01* X32832Y39714D01* Y40000D01* G37* G36* X32932Y0D02*X32832D01* Y1103D01* X32834Y1103D01* X32870Y1100D01* X32906Y1100D01* X32932Y1103D01* Y0D01* G37* G36* Y1204D02*X32928Y1203D01* X32901Y1200D01* X32874Y1200D01* X32847Y1202D01* X32832Y1204D01* Y1795D01* X32841Y1796D01* X32868Y1799D01* X32895Y1799D01* X32922Y1797D01* X32932Y1795D01* Y1204D01* G37* G36* Y1897D02*X32899Y1899D01* X32863Y1899D01* X32832Y1896D01* Y3101D01* X32850Y3100D01* X32886Y3100D01* X32922Y3104D01* X32932Y3106D01* Y1897D01* G37* G36* Y3207D02*X32908Y3203D01* X32881Y3200D01* X32854Y3200D01* X32832Y3202D01* Y3798D01* X32848Y3799D01* X32875Y3799D01* X32902Y3797D01* X32929Y3793D01* X32932Y3792D01* Y3207D01* G37* G36* Y3893D02*X32915Y3896D01* X32879Y3899D01* X32843Y3899D01* X32832Y3898D01* Y5100D01* X32866Y5100D01* X32902Y5104D01* X32932Y5110D01* Y3893D01* G37* G36* Y5213D02*X32914Y5208D01* X32888Y5203D01* X32861Y5200D01* X32834Y5200D01* X32832Y5200D01* Y5799D01* X32855Y5799D01* X32882Y5797D01* X32909Y5793D01* X32932Y5786D01* Y5213D01* G37* G36* Y5890D02*X32931Y5890D01* X32895Y5896D01* X32859Y5899D01* X32832Y5899D01* Y7100D01* X32846Y7100D01* X32882Y7104D01* X32918Y7111D01* X32932Y7115D01* Y5890D01* G37* G36* Y7220D02*X32920Y7215D01* X32894Y7208D01* X32868Y7203D01* X32841Y7200D01* X32832Y7200D01* Y7799D01* X32835D01* X32862Y7797D01* X32889Y7793D01* X32915Y7785D01* X32932Y7779D01* Y7220D01* G37* G36* Y7884D02*X32911Y7890D01* X32875Y7896D01* X32839Y7899D01* X32832Y7899D01* Y9101D01* X32862Y9104D01* X32898Y9111D01* X32932Y9121D01* X32932D01* Y7884D01* G37* G36* Y9229D02*X32926Y9225D01* X32900Y9215D01* X32874Y9208D01* X32848Y9203D01* X32832Y9201D01* Y9798D01* X32842Y9797D01* X32869Y9793D01* X32895Y9785D01* X32921Y9776D01* X32932Y9771D01* Y9229D01* G37* G36* Y9878D02*X32926Y9881D01* X32891Y9890D01* X32855Y9896D01* X32832Y9898D01* Y11103D01* X32842Y11104D01* X32878Y11111D01* X32912Y11121D01* X32932Y11128D01* Y9878D01* G37* G36* Y11238D02*X32930Y11237D01* X32906Y11225D01* X32880Y11215D01* X32854Y11208D01* X32832Y11204D01* Y11795D01* X32849Y11793D01* X32875Y11785D01* X32901Y11776D01* X32925Y11764D01* X32932Y11762D01* Y11238D01* G37* G36* Y11871D02*X32906Y11881D01* X32871Y11890D01* X32835Y11896D01* X32832Y11897D01* Y13106D01* X32858Y13111D01* X32892Y13121D01* X32926Y13134D01* X32932Y13137D01* Y11871D01* G37* G36* Y13243D02*X32926Y13243D01* X32918Y13241D01* X32910Y13237D01* X32886Y13225D01* X32860Y13215D01* X32834Y13208D01* X32832Y13207D01* Y13792D01* X32855Y13785D01* X32881Y13776D01* X32905Y13764D01* X32913Y13761D01* X32922Y13759D01* X32931Y13759D01* X32932Y13759D01* Y13243D01* G37* G36* Y13862D02*X32920Y13868D01* X32886Y13881D01* X32851Y13890D01* X32832Y13893D01* Y15110D01* X32838Y15111D01* X32872Y15121D01* X32906Y15134D01* X32932Y15147D01* Y13862D01* G37* G36* Y15240D02*X32932Y15240D01* X32924Y15243D01* X32915Y15243D01* X32906Y15243D01* X32898Y15241D01* X32890Y15237D01* X32866Y15225D01* X32840Y15215D01* X32832Y15213D01* Y15786D01* X32835Y15785D01* X32861Y15776D01* X32885Y15764D01* X32893Y15761D01* X32902Y15759D01* X32911Y15759D01* X32919Y15760D01* X32928Y15762D01* X32932Y15765D01* Y15240D01* G37* G36* Y15853D02*X32932Y15853D01* X32900Y15868D01* X32866Y15881D01* X32832Y15890D01* Y17115D01* X32852Y17121D01* X32886Y17134D01* X32918Y17150D01* X32926Y17155D01* X32932Y17161D01* X32932Y17161D01* Y15853D01* G37* G36* Y17225D02*X32927Y17231D01* X32920Y17236D01* X32912Y17240D01* X32904Y17243D01* X32895Y17243D01* X32886Y17243D01* X32878Y17241D01* X32870Y17237D01* X32846Y17225D01* X32832Y17220D01* Y17779D01* X32841Y17776D01* X32865Y17764D01* X32873Y17761D01* X32882Y17759D01* X32891Y17759D01* X32899Y17760D01* X32908Y17762D01* X32915Y17766D01* X32922Y17772D01* X32928Y17778D01* X32932Y17784D01* Y17225D01* G37* G36* Y17833D02*X32931Y17835D01* X32926Y17842D01* X32920Y17848D01* X32912Y17853D01* X32880Y17868D01* X32846Y17881D01* X32832Y17884D01* Y19121D01* X32866Y19134D01* X32898Y19150D01* X32906Y19155D01* X32912Y19161D01* X32917Y19168D01* X32921Y19175D01* X32923Y19184D01* X32924Y19193D01* X32924Y19201D01* X32921Y19210D01* X32918Y19218D01* X32913Y19225D01* X32907Y19231D01* X32900Y19236D01* X32892Y19240D01* X32884Y19243D01* X32875Y19243D01* X32866Y19243D01* X32858Y19241D01* X32850Y19237D01* X32832Y19229D01* Y19771D01* X32845Y19764D01* X32853Y19761D01* X32862Y19759D01* X32871Y19759D01* X32879Y19760D01* X32888Y19762D01* X32895Y19766D01* X32902Y19772D01* X32908Y19778D01* X32913Y19785D01* X32916Y19793D01* X32918Y19802D01* X32919Y19810D01* X32918Y19819D01* X32915Y19827D01* X32911Y19835D01* X32906Y19842D01* X32900Y19848D01* X32892Y19853D01* X32860Y19868D01* X32832Y19878D01* Y21128D01* X32846Y21134D01* X32878Y21150D01* X32886Y21155D01* X32892Y21161D01* X32897Y21168D01* X32901Y21175D01* X32903Y21184D01* X32904Y21193D01* X32904Y21201D01* X32901Y21210D01* X32898Y21218D01* X32893Y21225D01* X32887Y21231D01* X32880Y21236D01* X32872Y21240D01* X32864Y21243D01* X32855Y21243D01* X32846Y21243D01* X32838Y21241D01* X32832Y21238D01* Y21762D01* X32833Y21761D01* X32842Y21759D01* X32851Y21759D01* X32859Y21760D01* X32868Y21762D01* X32875Y21766D01* X32882Y21772D01* X32888Y21778D01* X32893Y21785D01* X32896Y21793D01* X32898Y21802D01* X32899Y21810D01* X32898Y21819D01* X32895Y21827D01* X32891Y21835D01* X32886Y21842D01* X32880Y21848D01* X32872Y21853D01* X32840Y21868D01* X32832Y21871D01* Y23137D01* X32858Y23150D01* X32866Y23155D01* X32872Y23161D01* X32877Y23168D01* X32881Y23175D01* X32883Y23184D01* X32884Y23193D01* X32884Y23201D01* X32881Y23210D01* X32878Y23218D01* X32873Y23225D01* X32867Y23231D01* X32860Y23236D01* X32852Y23240D01* X32844Y23243D01* X32835Y23243D01* X32832Y23243D01* Y23759D01* X32839Y23760D01* X32848Y23762D01* X32855Y23766D01* X32862Y23772D01* X32868Y23778D01* X32873Y23785D01* X32876Y23793D01* X32878Y23802D01* X32879Y23810D01* X32878Y23819D01* X32875Y23827D01* X32871Y23835D01* X32866Y23842D01* X32860Y23848D01* X32852Y23853D01* X32832Y23862D01* Y25147D01* X32838Y25150D01* X32846Y25155D01* X32852Y25161D01* X32857Y25168D01* X32861Y25175D01* X32863Y25184D01* X32864Y25193D01* X32864Y25201D01* X32861Y25210D01* X32858Y25218D01* X32853Y25225D01* X32847Y25231D01* X32840Y25236D01* X32832Y25240D01* Y25765D01* X32835Y25766D01* X32842Y25772D01* X32848Y25778D01* X32853Y25785D01* X32856Y25793D01* X32858Y25802D01* X32859Y25810D01* X32858Y25819D01* X32855Y25827D01* X32851Y25835D01* X32846Y25842D01* X32840Y25848D01* X32832Y25853D01* Y27161D01* X32837Y27168D01* X32841Y27175D01* X32843Y27184D01* X32844Y27193D01* X32844Y27201D01* X32841Y27210D01* X32838Y27218D01* X32833Y27225D01* X32832Y27225D01* Y27784D01* X32833Y27785D01* X32836Y27793D01* X32838Y27802D01* X32839Y27810D01* X32838Y27819D01* X32835Y27827D01* X32832Y27833D01* Y33307D01* X32836Y33302D01* X32843Y33296D01* X32850Y33291D01* X32858Y33288D01* X32867Y33286D01* X32875Y33285D01* X32884Y33286D01* X32892Y33289D01* X32900Y33293D01* X32907Y33298D01* X32913Y33305D01* X32918Y33312D01* X32932Y33343D01* Y31696D01* X32930Y31701D01* X32924Y31707D01* X32916Y31712D01* X32909Y31716D01* X32900Y31718D01* X32892Y31719D01* X32883Y31719D01* X32874Y31717D01* X32866Y31713D01* X32859Y31708D01* X32853Y31702D01* X32848Y31695D01* X32844Y31687D01* X32842Y31679D01* X32841Y31670D01* X32841Y31661D01* X32843Y31653D01* X32847Y31645D01* X32859Y31621D01* X32869Y31595D01* X32876Y31569D01* X32881Y31543D01* X32884Y31516D01* X32884Y31489D01* X32882Y31462D01* X32877Y31435D01* X32870Y31409D01* X32861Y31383D01* X32849Y31359D01* X32846Y31351D01* X32844Y31342D01* X32844Y31333D01* X32845Y31325D01* X32847Y31317D01* X32851Y31309D01* X32856Y31302D01* X32863Y31296D01* X32870Y31291D01* X32878Y31288D01* X32887Y31286D01* X32895Y31285D01* X32904Y31286D01* X32912Y31289D01* X32920Y31293D01* X32927Y31298D01* X32932Y31304D01* Y29714D01* X32929Y29716D01* X32920Y29718D01* X32912Y29719D01* X32903Y29719D01* X32894Y29717D01* X32886Y29713D01* X32879Y29708D01* X32873Y29702D01* X32868Y29695D01* X32864Y29687D01* X32862Y29679D01* X32861Y29670D01* X32861Y29661D01* X32863Y29653D01* X32867Y29645D01* X32879Y29621D01* X32889Y29595D01* X32896Y29569D01* X32901Y29543D01* X32904Y29516D01* X32904Y29489D01* X32902Y29462D01* X32897Y29435D01* X32890Y29409D01* X32881Y29383D01* X32869Y29359D01* X32866Y29351D01* X32864Y29342D01* X32864Y29333D01* X32865Y29325D01* X32867Y29317D01* X32871Y29309D01* X32876Y29302D01* X32883Y29296D01* X32890Y29291D01* X32898Y29288D01* X32907Y29286D01* X32915Y29285D01* X32924Y29286D01* X32932Y29289D01* X32932Y29289D01* Y27719D01* X32932Y27719D01* X32923Y27719D01* X32914Y27717D01* X32906Y27713D01* X32899Y27708D01* X32893Y27702D01* X32888Y27695D01* X32884Y27687D01* X32882Y27679D01* X32881Y27670D01* X32881Y27661D01* X32883Y27653D01* X32887Y27645D01* X32899Y27621D01* X32909Y27595D01* X32916Y27569D01* X32921Y27543D01* X32924Y27516D01* X32924Y27489D01* X32922Y27462D01* X32917Y27435D01* X32910Y27409D01* X32901Y27383D01* X32889Y27359D01* X32886Y27351D01* X32884Y27342D01* X32884Y27333D01* X32885Y27325D01* X32887Y27317D01* X32891Y27309D01* X32896Y27302D01* X32903Y27296D01* X32910Y27291D01* X32918Y27288D01* X32927Y27286D01* X32932Y27286D01* Y25716D01* X32926Y25713D01* X32919Y25708D01* X32913Y25702D01* X32908Y25695D01* X32904Y25687D01* X32902Y25679D01* X32901Y25670D01* X32901Y25661D01* X32903Y25653D01* X32907Y25645D01* X32919Y25621D01* X32929Y25595D01* X32932Y25583D01* Y25416D01* X32930Y25409D01* X32921Y25383D01* X32909Y25359D01* X32906Y25351D01* X32904Y25342D01* X32904Y25333D01* X32905Y25325D01* X32907Y25317D01* X32911Y25309D01* X32916Y25302D01* X32923Y25296D01* X32930Y25291D01* X32932Y25290D01* Y23701D01* X32928Y23695D01* X32924Y23687D01* X32922Y23679D01* X32921Y23670D01* X32921Y23661D01* X32923Y23653D01* X32927Y23645D01* X32932Y23634D01* Y23365D01* X32929Y23359D01* X32926Y23351D01* X32924Y23342D01* X32924Y23333D01* X32925Y23325D01* X32927Y23317D01* X32931Y23309D01* X32932Y23307D01* Y17833D01* G37* G36* Y33656D02*X32930Y33661D01* X32914Y33694D01* X32910Y33701D01* X32904Y33707D01* X32896Y33712D01* X32889Y33716D01* X32880Y33718D01* X32872Y33719D01* X32863Y33719D01* X32854Y33717D01* X32846Y33713D01* X32839Y33708D01* X32833Y33702D01* X32832Y33701D01* Y35290D01* X32838Y35288D01* X32847Y35286D01* X32855Y35285D01* X32864Y35286D01* X32872Y35289D01* X32880Y35293D01* X32887Y35298D01* X32893Y35305D01* X32898Y35312D01* X32913Y35344D01* X32926Y35378D01* X32932Y35404D01* Y33656D01* G37* G36* Y40000D02*X33012D01* Y27596D01* X33004Y27627D01* X32990Y27661D01* X32974Y27694D01* X32970Y27701D01* X32964Y27707D01* X32956Y27712D01* X32949Y27716D01* X32940Y27718D01* X32932Y27719D01* Y29289D01* X32940Y29293D01* X32947Y29298D01* X32953Y29305D01* X32958Y29312D01* X32973Y29344D01* X32986Y29378D01* X32995Y29413D01* X33001Y29449D01* X33004Y29485D01* X33004Y29521D01* X33000Y29557D01* X32994Y29593D01* X32984Y29627D01* X32970Y29661D01* X32954Y29694D01* X32950Y29701D01* X32944Y29707D01* X32936Y29712D01* X32932Y29714D01* Y31304D01* X32933Y31305D01* X32938Y31312D01* X32953Y31344D01* X32966Y31378D01* X32975Y31413D01* X32981Y31449D01* X32984Y31485D01* X32984Y31521D01* X32980Y31557D01* X32974Y31593D01* X32964Y31627D01* X32950Y31661D01* X32934Y31694D01* X32932Y31696D01* Y33343D01* X32933Y33344D01* X32946Y33378D01* X32955Y33413D01* X32961Y33449D01* X32964Y33485D01* X32964Y33521D01* X32960Y33557D01* X32954Y33593D01* X32944Y33627D01* X32932Y33656D01* Y35404D01* X32935Y35413D01* X32941Y35449D01* X32944Y35485D01* X32944Y35521D01* X32940Y35557D01* X32934Y35593D01* X32932Y35596D01* Y40000D01* G37* G36* X33012Y0D02*X32932D01* Y1103D01* X32942Y1104D01* X32978Y1111D01* X33012Y1121D01* X33012D01* Y0D01* G37* G36* Y1229D02*X33006Y1225D01* X32980Y1215D01* X32954Y1208D01* X32932Y1204D01* Y1795D01* X32949Y1793D01* X32975Y1785D01* X33001Y1776D01* X33012Y1771D01* Y1229D01* G37* G36* Y1878D02*X33006Y1881D01* X32971Y1890D01* X32935Y1896D01* X32932Y1897D01* Y3106D01* X32958Y3111D01* X32992Y3121D01* X33012Y3128D01* Y1878D01* G37* G36* Y3238D02*X33010Y3237D01* X32986Y3225D01* X32960Y3215D01* X32934Y3208D01* X32932Y3207D01* Y3792D01* X32955Y3785D01* X32981Y3776D01* X33005Y3764D01* X33012Y3762D01* Y3238D01* G37* G36* Y3871D02*X32986Y3881D01* X32951Y3890D01* X32932Y3893D01* Y5110D01* X32938Y5111D01* X32972Y5121D01* X33006Y5134D01* X33012Y5137D01* Y3871D01* G37* G36* Y5243D02*X33006Y5243D01* X32998Y5241D01* X32990Y5237D01* X32966Y5225D01* X32940Y5215D01* X32932Y5213D01* Y5786D01* X32935Y5785D01* X32961Y5776D01* X32985Y5764D01* X32993Y5761D01* X33002Y5759D01* X33011Y5759D01* X33012Y5759D01* Y5243D01* G37* G36* Y5862D02*X33000Y5868D01* X32966Y5881D01* X32932Y5890D01* Y7115D01* X32952Y7121D01* X32986Y7134D01* X33012Y7147D01* Y5862D01* G37* G36* Y7240D02*X33012Y7240D01* X33004Y7243D01* X32995Y7243D01* X32986Y7243D01* X32978Y7241D01* X32970Y7237D01* X32946Y7225D01* X32932Y7220D01* Y7779D01* X32941Y7776D01* X32965Y7764D01* X32973Y7761D01* X32982Y7759D01* X32991Y7759D01* X32999Y7760D01* X33008Y7762D01* X33012Y7765D01* Y7240D01* G37* G36* Y7853D02*X33012Y7853D01* X32980Y7868D01* X32946Y7881D01* X32932Y7884D01* Y9121D01* X32966Y9134D01* X32998Y9150D01* X33006Y9155D01* X33012Y9161D01* X33012Y9161D01* Y7853D01* G37* G36* Y9225D02*X33007Y9231D01* X33000Y9236D01* X32992Y9240D01* X32984Y9243D01* X32975Y9243D01* X32966Y9243D01* X32958Y9241D01* X32950Y9237D01* X32932Y9229D01* Y9771D01* X32945Y9764D01* X32953Y9761D01* X32962Y9759D01* X32971Y9759D01* X32979Y9760D01* X32988Y9762D01* X32995Y9766D01* X33002Y9772D01* X33008Y9778D01* X33012Y9784D01* Y9225D01* G37* G36* Y9833D02*X33011Y9835D01* X33006Y9842D01* X33000Y9848D01* X32992Y9853D01* X32960Y9868D01* X32932Y9878D01* Y11128D01* X32946Y11134D01* X32978Y11150D01* X32986Y11155D01* X32992Y11161D01* X32997Y11168D01* X33001Y11175D01* X33003Y11184D01* X33004Y11193D01* X33004Y11201D01* X33001Y11210D01* X32998Y11218D01* X32993Y11225D01* X32987Y11231D01* X32980Y11236D01* X32972Y11240D01* X32964Y11243D01* X32955Y11243D01* X32946Y11243D01* X32938Y11241D01* X32932Y11238D01* Y11762D01* X32933Y11761D01* X32942Y11759D01* X32951Y11759D01* X32959Y11760D01* X32968Y11762D01* X32975Y11766D01* X32982Y11772D01* X32988Y11778D01* X32993Y11785D01* X32996Y11793D01* X32998Y11802D01* X32999Y11810D01* X32998Y11819D01* X32995Y11827D01* X32991Y11835D01* X32986Y11842D01* X32980Y11848D01* X32972Y11853D01* X32940Y11868D01* X32932Y11871D01* Y13137D01* X32958Y13150D01* X32966Y13155D01* X32972Y13161D01* X32977Y13168D01* X32981Y13175D01* X32983Y13184D01* X32984Y13193D01* X32984Y13201D01* X32981Y13210D01* X32978Y13218D01* X32973Y13225D01* X32967Y13231D01* X32960Y13236D01* X32952Y13240D01* X32944Y13243D01* X32935Y13243D01* X32932Y13243D01* Y13759D01* X32939Y13760D01* X32948Y13762D01* X32955Y13766D01* X32962Y13772D01* X32968Y13778D01* X32973Y13785D01* X32976Y13793D01* X32978Y13802D01* X32979Y13810D01* X32978Y13819D01* X32975Y13827D01* X32971Y13835D01* X32966Y13842D01* X32960Y13848D01* X32952Y13853D01* X32932Y13862D01* Y15147D01* X32938Y15150D01* X32946Y15155D01* X32952Y15161D01* X32957Y15168D01* X32961Y15175D01* X32963Y15184D01* X32964Y15193D01* X32964Y15201D01* X32961Y15210D01* X32958Y15218D01* X32953Y15225D01* X32947Y15231D01* X32940Y15236D01* X32932Y15240D01* Y15765D01* X32935Y15766D01* X32942Y15772D01* X32948Y15778D01* X32953Y15785D01* X32956Y15793D01* X32958Y15802D01* X32959Y15810D01* X32958Y15819D01* X32955Y15827D01* X32951Y15835D01* X32946Y15842D01* X32940Y15848D01* X32932Y15853D01* Y17161D01* X32937Y17168D01* X32941Y17175D01* X32943Y17184D01* X32944Y17193D01* X32944Y17201D01* X32941Y17210D01* X32938Y17218D01* X32933Y17225D01* X32932Y17225D01* Y17784D01* X32933Y17785D01* X32936Y17793D01* X32938Y17802D01* X32939Y17810D01* X32938Y17819D01* X32935Y17827D01* X32932Y17833D01* Y23307D01* X32936Y23302D01* X32943Y23296D01* X32950Y23291D01* X32958Y23288D01* X32967Y23286D01* X32975Y23285D01* X32984Y23286D01* X32992Y23289D01* X33000Y23293D01* X33007Y23298D01* X33012Y23304D01* Y21714D01* X33009Y21716D01* X33000Y21718D01* X32992Y21719D01* X32983Y21719D01* X32974Y21717D01* X32966Y21713D01* X32959Y21708D01* X32953Y21702D01* X32948Y21695D01* X32944Y21687D01* X32942Y21679D01* X32941Y21670D01* X32941Y21661D01* X32943Y21653D01* X32947Y21645D01* X32959Y21621D01* X32969Y21595D01* X32976Y21569D01* X32981Y21543D01* X32984Y21516D01* X32984Y21489D01* X32982Y21462D01* X32977Y21435D01* X32970Y21409D01* X32961Y21383D01* X32949Y21359D01* X32946Y21351D01* X32944Y21342D01* X32944Y21333D01* X32945Y21325D01* X32947Y21317D01* X32951Y21309D01* X32956Y21302D01* X32963Y21296D01* X32970Y21291D01* X32978Y21288D01* X32987Y21286D01* X32995Y21285D01* X33004Y21286D01* X33012Y21289D01* X33012Y21289D01* Y19719D01* X33012Y19719D01* X33003Y19719D01* X32994Y19717D01* X32986Y19713D01* X32979Y19708D01* X32973Y19702D01* X32968Y19695D01* X32964Y19687D01* X32962Y19679D01* X32961Y19670D01* X32961Y19661D01* X32963Y19653D01* X32967Y19645D01* X32979Y19621D01* X32989Y19595D01* X32996Y19569D01* X33001Y19543D01* X33004Y19516D01* X33004Y19489D01* X33002Y19462D01* X32997Y19435D01* X32990Y19409D01* X32981Y19383D01* X32969Y19359D01* X32966Y19351D01* X32964Y19342D01* X32964Y19333D01* X32965Y19325D01* X32967Y19317D01* X32971Y19309D01* X32976Y19302D01* X32983Y19296D01* X32990Y19291D01* X32998Y19288D01* X33007Y19286D01* X33012Y19286D01* Y17716D01* X33006Y17713D01* X32999Y17708D01* X32993Y17702D01* X32988Y17695D01* X32984Y17687D01* X32982Y17679D01* X32981Y17670D01* X32981Y17661D01* X32983Y17653D01* X32987Y17645D01* X32999Y17621D01* X33009Y17595D01* X33012Y17583D01* Y17416D01* X33010Y17409D01* X33001Y17383D01* X32989Y17359D01* X32986Y17351D01* X32984Y17342D01* X32984Y17333D01* X32985Y17325D01* X32987Y17317D01* X32991Y17309D01* X32996Y17302D01* X33003Y17296D01* X33010Y17291D01* X33012Y17290D01* Y15701D01* X33008Y15695D01* X33004Y15687D01* X33002Y15679D01* X33001Y15670D01* X33001Y15661D01* X33003Y15653D01* X33007Y15645D01* X33012Y15634D01* Y15365D01* X33009Y15359D01* X33006Y15351D01* X33004Y15342D01* X33004Y15333D01* X33005Y15325D01* X33007Y15317D01* X33011Y15309D01* X33012Y15307D01* Y9833D01* G37* G36* Y23696D02*X33010Y23701D01* X33004Y23707D01* X32996Y23712D01* X32989Y23716D01* X32980Y23718D01* X32972Y23719D01* X32963Y23719D01* X32954Y23717D01* X32946Y23713D01* X32939Y23708D01* X32933Y23702D01* X32932Y23701D01* Y25290D01* X32938Y25288D01* X32947Y25286D01* X32955Y25285D01* X32964Y25286D01* X32972Y25289D01* X32980Y25293D01* X32987Y25298D01* X32993Y25305D01* X32998Y25312D01* X33012Y25343D01* Y23696D01* G37* G36* Y25656D02*X33010Y25661D01* X32994Y25694D01* X32990Y25701D01* X32984Y25707D01* X32976Y25712D01* X32969Y25716D01* X32960Y25718D01* X32952Y25719D01* X32943Y25719D01* X32934Y25717D01* X32932Y25716D01* Y27286D01* X32935Y27285D01* X32944Y27286D01* X32952Y27289D01* X32960Y27293D01* X32967Y27298D01* X32973Y27305D01* X32978Y27312D01* X32993Y27344D01* X33006Y27378D01* X33012Y27404D01* Y25656D01* G37* G36* Y40000D02*X33092D01* Y19596D01* X33084Y19627D01* X33070Y19661D01* X33054Y19694D01* X33050Y19701D01* X33044Y19707D01* X33036Y19712D01* X33029Y19716D01* X33020Y19718D01* X33012Y19719D01* Y21289D01* X33020Y21293D01* X33027Y21298D01* X33033Y21305D01* X33038Y21312D01* X33053Y21344D01* X33066Y21378D01* X33075Y21413D01* X33081Y21449D01* X33084Y21485D01* X33084Y21521D01* X33080Y21557D01* X33074Y21593D01* X33064Y21627D01* X33050Y21661D01* X33034Y21694D01* X33030Y21701D01* X33024Y21707D01* X33016Y21712D01* X33012Y21714D01* Y23304D01* X33013Y23305D01* X33018Y23312D01* X33033Y23344D01* X33046Y23378D01* X33055Y23413D01* X33061Y23449D01* X33064Y23485D01* X33064Y23521D01* X33060Y23557D01* X33054Y23593D01* X33044Y23627D01* X33030Y23661D01* X33014Y23694D01* X33012Y23696D01* Y25343D01* X33013Y25344D01* X33026Y25378D01* X33035Y25413D01* X33041Y25449D01* X33044Y25485D01* X33044Y25521D01* X33040Y25557D01* X33034Y25593D01* X33024Y25627D01* X33012Y25656D01* Y27404D01* X33015Y27413D01* X33021Y27449D01* X33024Y27485D01* X33024Y27521D01* X33020Y27557D01* X33014Y27593D01* X33012Y27596D01* Y40000D01* G37* G36* X33092Y0D02*X33012D01* Y1121D01* X33046Y1134D01* X33078Y1150D01* X33086Y1155D01* X33092Y1161D01* X33092Y1161D01* Y0D01* G37* G36* Y1225D02*X33087Y1231D01* X33080Y1236D01* X33072Y1240D01* X33064Y1243D01* X33055Y1243D01* X33046Y1243D01* X33038Y1241D01* X33030Y1237D01* X33012Y1229D01* Y1771D01* X33025Y1764D01* X33033Y1761D01* X33042Y1759D01* X33051Y1759D01* X33059Y1760D01* X33068Y1762D01* X33075Y1766D01* X33082Y1772D01* X33088Y1778D01* X33092Y1784D01* Y1225D01* G37* G36* Y1833D02*X33091Y1835D01* X33086Y1842D01* X33080Y1848D01* X33072Y1853D01* X33040Y1868D01* X33012Y1878D01* Y3128D01* X33026Y3134D01* X33058Y3150D01* X33066Y3155D01* X33072Y3161D01* X33077Y3168D01* X33081Y3175D01* X33083Y3184D01* X33084Y3193D01* X33084Y3201D01* X33081Y3210D01* X33078Y3218D01* X33073Y3225D01* X33067Y3231D01* X33060Y3236D01* X33052Y3240D01* X33044Y3243D01* X33035Y3243D01* X33026Y3243D01* X33018Y3241D01* X33012Y3238D01* Y3762D01* X33013Y3761D01* X33022Y3759D01* X33031Y3759D01* X33039Y3760D01* X33048Y3762D01* X33055Y3766D01* X33062Y3772D01* X33068Y3778D01* X33073Y3785D01* X33076Y3793D01* X33078Y3802D01* X33079Y3810D01* X33078Y3819D01* X33075Y3827D01* X33071Y3835D01* X33066Y3842D01* X33060Y3848D01* X33052Y3853D01* X33020Y3868D01* X33012Y3871D01* Y5137D01* X33038Y5150D01* X33046Y5155D01* X33052Y5161D01* X33057Y5168D01* X33061Y5175D01* X33063Y5184D01* X33064Y5193D01* X33064Y5201D01* X33061Y5210D01* X33058Y5218D01* X33053Y5225D01* X33047Y5231D01* X33040Y5236D01* X33032Y5240D01* X33024Y5243D01* X33015Y5243D01* X33012Y5243D01* Y5759D01* X33019Y5760D01* X33028Y5762D01* X33035Y5766D01* X33042Y5772D01* X33048Y5778D01* X33053Y5785D01* X33056Y5793D01* X33058Y5802D01* X33059Y5810D01* X33058Y5819D01* X33055Y5827D01* X33051Y5835D01* X33046Y5842D01* X33040Y5848D01* X33032Y5853D01* X33012Y5862D01* Y7147D01* X33018Y7150D01* X33026Y7155D01* X33032Y7161D01* X33037Y7168D01* X33041Y7175D01* X33043Y7184D01* X33044Y7193D01* X33044Y7201D01* X33041Y7210D01* X33038Y7218D01* X33033Y7225D01* X33027Y7231D01* X33020Y7236D01* X33012Y7240D01* Y7765D01* X33015Y7766D01* X33022Y7772D01* X33028Y7778D01* X33033Y7785D01* X33036Y7793D01* X33038Y7802D01* X33039Y7810D01* X33038Y7819D01* X33035Y7827D01* X33031Y7835D01* X33026Y7842D01* X33020Y7848D01* X33012Y7853D01* Y9161D01* X33017Y9168D01* X33021Y9175D01* X33023Y9184D01* X33024Y9193D01* X33024Y9201D01* X33021Y9210D01* X33018Y9218D01* X33013Y9225D01* X33012Y9225D01* Y9784D01* X33013Y9785D01* X33016Y9793D01* X33018Y9802D01* X33019Y9810D01* X33018Y9819D01* X33015Y9827D01* X33012Y9833D01* Y15307D01* X33016Y15302D01* X33023Y15296D01* X33030Y15291D01* X33038Y15288D01* X33047Y15286D01* X33055Y15285D01* X33064Y15286D01* X33072Y15289D01* X33080Y15293D01* X33087Y15298D01* X33092Y15304D01* Y13714D01* X33089Y13716D01* X33080Y13718D01* X33072Y13719D01* X33063Y13719D01* X33054Y13717D01* X33046Y13713D01* X33039Y13708D01* X33033Y13702D01* X33028Y13695D01* X33024Y13687D01* X33022Y13679D01* X33021Y13670D01* X33021Y13661D01* X33023Y13653D01* X33027Y13645D01* X33039Y13621D01* X33049Y13595D01* X33056Y13569D01* X33061Y13543D01* X33064Y13516D01* X33064Y13489D01* X33062Y13462D01* X33057Y13435D01* X33050Y13409D01* X33041Y13383D01* X33029Y13359D01* X33026Y13351D01* X33024Y13342D01* X33024Y13333D01* X33025Y13325D01* X33027Y13317D01* X33031Y13309D01* X33036Y13302D01* X33043Y13296D01* X33050Y13291D01* X33058Y13288D01* X33067Y13286D01* X33075Y13285D01* X33084Y13286D01* X33092Y13289D01* X33092Y13289D01* Y11719D01* X33092Y11719D01* X33083Y11719D01* X33074Y11717D01* X33066Y11713D01* X33059Y11708D01* X33053Y11702D01* X33048Y11695D01* X33044Y11687D01* X33042Y11679D01* X33041Y11670D01* X33041Y11661D01* X33043Y11653D01* X33047Y11645D01* X33059Y11621D01* X33069Y11595D01* X33076Y11569D01* X33081Y11543D01* X33084Y11516D01* X33084Y11489D01* X33082Y11462D01* X33077Y11435D01* X33070Y11409D01* X33061Y11383D01* X33049Y11359D01* X33046Y11351D01* X33044Y11342D01* X33044Y11333D01* X33045Y11325D01* X33047Y11317D01* X33051Y11309D01* X33056Y11302D01* X33063Y11296D01* X33070Y11291D01* X33078Y11288D01* X33087Y11286D01* X33092Y11286D01* Y9716D01* X33086Y9713D01* X33079Y9708D01* X33073Y9702D01* X33068Y9695D01* X33064Y9687D01* X33062Y9679D01* X33061Y9670D01* X33061Y9661D01* X33063Y9653D01* X33067Y9645D01* X33079Y9621D01* X33089Y9595D01* X33092Y9583D01* Y9416D01* X33090Y9409D01* X33081Y9383D01* X33069Y9359D01* X33066Y9351D01* X33064Y9342D01* X33064Y9333D01* X33065Y9325D01* X33067Y9317D01* X33071Y9309D01* X33076Y9302D01* X33083Y9296D01* X33090Y9291D01* X33092Y9290D01* Y7701D01* X33088Y7695D01* X33084Y7687D01* X33082Y7679D01* X33081Y7670D01* X33081Y7661D01* X33083Y7653D01* X33087Y7645D01* X33092Y7634D01* Y7365D01* X33089Y7359D01* X33086Y7351D01* X33084Y7342D01* X33084Y7333D01* X33085Y7325D01* X33087Y7317D01* X33091Y7309D01* X33092Y7307D01* Y1833D01* G37* G36* Y15696D02*X33090Y15701D01* X33084Y15707D01* X33076Y15712D01* X33069Y15716D01* X33060Y15718D01* X33052Y15719D01* X33043Y15719D01* X33034Y15717D01* X33026Y15713D01* X33019Y15708D01* X33013Y15702D01* X33012Y15701D01* Y17290D01* X33018Y17288D01* X33027Y17286D01* X33035Y17285D01* X33044Y17286D01* X33052Y17289D01* X33060Y17293D01* X33067Y17298D01* X33073Y17305D01* X33078Y17312D01* X33092Y17343D01* Y15696D01* G37* G36* Y17656D02*X33090Y17661D01* X33074Y17694D01* X33070Y17701D01* X33064Y17707D01* X33056Y17712D01* X33049Y17716D01* X33040Y17718D01* X33032Y17719D01* X33023Y17719D01* X33014Y17717D01* X33012Y17716D01* Y19286D01* X33015Y19285D01* X33024Y19286D01* X33032Y19289D01* X33040Y19293D01* X33047Y19298D01* X33053Y19305D01* X33058Y19312D01* X33073Y19344D01* X33086Y19378D01* X33092Y19404D01* Y17656D01* G37* G36* Y40000D02*X33172D01* Y11596D01* X33164Y11627D01* X33150Y11661D01* X33134Y11694D01* X33130Y11701D01* X33124Y11707D01* X33116Y11712D01* X33109Y11716D01* X33100Y11718D01* X33092Y11719D01* Y13289D01* X33100Y13293D01* X33107Y13298D01* X33113Y13305D01* X33118Y13312D01* X33133Y13344D01* X33146Y13378D01* X33155Y13413D01* X33161Y13449D01* X33164Y13485D01* X33164Y13521D01* X33160Y13557D01* X33154Y13593D01* X33144Y13627D01* X33130Y13661D01* X33114Y13694D01* X33110Y13701D01* X33104Y13707D01* X33096Y13712D01* X33092Y13714D01* Y15304D01* X33093Y15305D01* X33098Y15312D01* X33113Y15344D01* X33126Y15378D01* X33135Y15413D01* X33141Y15449D01* X33144Y15485D01* X33144Y15521D01* X33140Y15557D01* X33134Y15593D01* X33124Y15627D01* X33110Y15661D01* X33094Y15694D01* X33092Y15696D01* Y17343D01* X33093Y17344D01* X33106Y17378D01* X33115Y17413D01* X33121Y17449D01* X33124Y17485D01* X33124Y17521D01* X33120Y17557D01* X33114Y17593D01* X33104Y17627D01* X33092Y17656D01* Y19404D01* X33095Y19413D01* X33101Y19449D01* X33104Y19485D01* X33104Y19521D01* X33100Y19557D01* X33094Y19593D01* X33092Y19596D01* Y40000D01* G37* G36* X33172Y0D02*X33092D01* Y1161D01* X33097Y1168D01* X33101Y1175D01* X33103Y1184D01* X33104Y1193D01* X33104Y1201D01* X33101Y1210D01* X33098Y1218D01* X33093Y1225D01* X33092Y1225D01* Y1784D01* X33093Y1785D01* X33096Y1793D01* X33098Y1802D01* X33099Y1810D01* X33098Y1819D01* X33095Y1827D01* X33092Y1833D01* Y7307D01* X33096Y7302D01* X33103Y7296D01* X33110Y7291D01* X33118Y7288D01* X33127Y7286D01* X33135Y7285D01* X33144Y7286D01* X33152Y7289D01* X33160Y7293D01* X33167Y7298D01* X33172Y7304D01* Y5714D01* X33169Y5716D01* X33160Y5718D01* X33152Y5719D01* X33143Y5719D01* X33134Y5717D01* X33126Y5713D01* X33119Y5708D01* X33113Y5702D01* X33108Y5695D01* X33104Y5687D01* X33102Y5679D01* X33101Y5670D01* X33101Y5661D01* X33103Y5653D01* X33107Y5645D01* X33119Y5621D01* X33129Y5595D01* X33136Y5569D01* X33141Y5543D01* X33144Y5516D01* X33144Y5489D01* X33142Y5462D01* X33137Y5435D01* X33130Y5409D01* X33121Y5383D01* X33109Y5359D01* X33106Y5351D01* X33104Y5342D01* X33104Y5333D01* X33105Y5325D01* X33107Y5317D01* X33111Y5309D01* X33116Y5302D01* X33123Y5296D01* X33130Y5291D01* X33138Y5288D01* X33147Y5286D01* X33155Y5285D01* X33164Y5286D01* X33172Y5289D01* X33172Y5289D01* Y3719D01* X33172Y3719D01* X33163Y3719D01* X33154Y3717D01* X33146Y3713D01* X33139Y3708D01* X33133Y3702D01* X33128Y3695D01* X33124Y3687D01* X33122Y3679D01* X33121Y3670D01* X33121Y3661D01* X33123Y3653D01* X33127Y3645D01* X33139Y3621D01* X33149Y3595D01* X33156Y3569D01* X33161Y3543D01* X33164Y3516D01* X33164Y3489D01* X33162Y3462D01* X33157Y3435D01* X33150Y3409D01* X33141Y3383D01* X33129Y3359D01* X33126Y3351D01* X33124Y3342D01* X33124Y3333D01* X33125Y3325D01* X33127Y3317D01* X33131Y3309D01* X33136Y3302D01* X33143Y3296D01* X33150Y3291D01* X33158Y3288D01* X33167Y3286D01* X33172Y3286D01* Y1716D01* X33166Y1713D01* X33159Y1708D01* X33153Y1702D01* X33148Y1695D01* X33144Y1687D01* X33142Y1679D01* X33141Y1670D01* X33141Y1661D01* X33143Y1653D01* X33147Y1645D01* X33159Y1621D01* X33169Y1595D01* X33172Y1583D01* Y1416D01* X33170Y1409D01* X33161Y1383D01* X33149Y1359D01* X33146Y1351D01* X33144Y1342D01* X33144Y1333D01* X33145Y1325D01* X33147Y1317D01* X33151Y1309D01* X33156Y1302D01* X33163Y1296D01* X33170Y1291D01* X33172Y1290D01* Y0D01* G37* G36* Y7696D02*X33170Y7701D01* X33164Y7707D01* X33156Y7712D01* X33149Y7716D01* X33140Y7718D01* X33132Y7719D01* X33123Y7719D01* X33114Y7717D01* X33106Y7713D01* X33099Y7708D01* X33093Y7702D01* X33092Y7701D01* Y9290D01* X33098Y9288D01* X33107Y9286D01* X33115Y9285D01* X33124Y9286D01* X33132Y9289D01* X33140Y9293D01* X33147Y9298D01* X33153Y9305D01* X33158Y9312D01* X33172Y9343D01* Y7696D01* G37* G36* Y9656D02*X33170Y9661D01* X33154Y9694D01* X33150Y9701D01* X33144Y9707D01* X33136Y9712D01* X33129Y9716D01* X33120Y9718D01* X33112Y9719D01* X33103Y9719D01* X33094Y9717D01* X33092Y9716D01* Y11286D01* X33095Y11285D01* X33104Y11286D01* X33112Y11289D01* X33120Y11293D01* X33127Y11298D01* X33133Y11305D01* X33138Y11312D01* X33153Y11344D01* X33166Y11378D01* X33172Y11404D01* Y9656D01* G37* G36* Y40000D02*X34197D01* Y39714D01* X34194Y39714D01* X34185Y39713D01* X34177Y39710D01* X34169Y39706D01* X34162Y39701D01* X34156Y39695D01* X34151Y39687D01* X34136Y39655D01* X34123Y39621D01* X34114Y39586D01* X34108Y39550D01* X34105Y39514D01* X34105Y39478D01* X34109Y39442D01* X34115Y39407D01* X34125Y39372D01* X34139Y39338D01* X34155Y39306D01* X34159Y39299D01* X34165Y39292D01* X34173Y39287D01* X34180Y39283D01* X34189Y39281D01* X34197Y39280D01* Y37710D01* X34189Y37706D01* X34182Y37701D01* X34176Y37695D01* X34171Y37687D01* X34156Y37655D01* X34143Y37621D01* X34134Y37586D01* X34128Y37550D01* X34125Y37514D01* X34125Y37478D01* X34129Y37442D01* X34135Y37407D01* X34145Y37372D01* X34159Y37338D01* X34175Y37306D01* X34179Y37299D01* X34185Y37292D01* X34193Y37287D01* X34197Y37285D01* Y35695D01* X34196Y35695D01* X34191Y35687D01* X34176Y35655D01* X34163Y35621D01* X34154Y35586D01* X34148Y35550D01* X34145Y35514D01* X34145Y35478D01* X34149Y35442D01* X34155Y35407D01* X34165Y35372D01* X34179Y35338D01* X34195Y35306D01* X34197Y35303D01* Y33656D01* X34196Y33655D01* X34183Y33621D01* X34174Y33586D01* X34168Y33550D01* X34165Y33514D01* X34165Y33478D01* X34169Y33442D01* X34175Y33407D01* X34185Y33372D01* X34197Y33343D01* Y31596D01* X34194Y31586D01* X34188Y31550D01* X34185Y31514D01* X34185Y31478D01* X34189Y31442D01* X34195Y31407D01* X34197Y31403D01* Y0D01* X33172D01* Y1290D01* X33178Y1288D01* X33187Y1286D01* X33195Y1285D01* X33204Y1286D01* X33212Y1289D01* X33220Y1293D01* X33227Y1298D01* X33233Y1305D01* X33238Y1312D01* X33253Y1344D01* X33266Y1378D01* X33275Y1413D01* X33281Y1449D01* X33284Y1485D01* X33284Y1521D01* X33280Y1557D01* X33274Y1593D01* X33264Y1627D01* X33250Y1661D01* X33234Y1694D01* X33230Y1701D01* X33224Y1707D01* X33216Y1712D01* X33209Y1716D01* X33200Y1718D01* X33192Y1719D01* X33183Y1719D01* X33174Y1717D01* X33172Y1716D01* Y3286D01* X33175Y3285D01* X33184Y3286D01* X33192Y3289D01* X33200Y3293D01* X33207Y3298D01* X33213Y3305D01* X33218Y3312D01* X33233Y3344D01* X33246Y3378D01* X33255Y3413D01* X33261Y3449D01* X33264Y3485D01* X33264Y3521D01* X33260Y3557D01* X33254Y3593D01* X33244Y3627D01* X33230Y3661D01* X33214Y3694D01* X33210Y3701D01* X33204Y3707D01* X33196Y3712D01* X33189Y3716D01* X33180Y3718D01* X33172Y3719D01* Y5289D01* X33180Y5293D01* X33187Y5298D01* X33193Y5305D01* X33198Y5312D01* X33213Y5344D01* X33226Y5378D01* X33235Y5413D01* X33241Y5449D01* X33244Y5485D01* X33244Y5521D01* X33240Y5557D01* X33234Y5593D01* X33224Y5627D01* X33210Y5661D01* X33194Y5694D01* X33190Y5701D01* X33184Y5707D01* X33176Y5712D01* X33172Y5714D01* Y7304D01* X33173Y7305D01* X33178Y7312D01* X33193Y7344D01* X33206Y7378D01* X33215Y7413D01* X33221Y7449D01* X33224Y7485D01* X33224Y7521D01* X33220Y7557D01* X33214Y7593D01* X33204Y7627D01* X33190Y7661D01* X33174Y7694D01* X33172Y7696D01* Y9343D01* X33173Y9344D01* X33186Y9378D01* X33195Y9413D01* X33201Y9449D01* X33204Y9485D01* X33204Y9521D01* X33200Y9557D01* X33194Y9593D01* X33184Y9627D01* X33172Y9656D01* Y11404D01* X33175Y11413D01* X33181Y11449D01* X33184Y11485D01* X33184Y11521D01* X33180Y11557D01* X33174Y11593D01* X33172Y11596D01* Y40000D01* G37* G36* Y1583D02*X33176Y1569D01* X33181Y1543D01* X33184Y1516D01* X33184Y1489D01* X33182Y1462D01* X33177Y1435D01* X33172Y1416D01* Y1583D01* G37* G36* X33092Y9583D02*X33096Y9569D01* X33101Y9543D01* X33104Y9516D01* X33104Y9489D01* X33102Y9462D01* X33097Y9435D01* X33092Y9416D01* Y9583D01* G37* G36* Y7634D02*X33099Y7621D01* X33109Y7595D01* X33116Y7569D01* X33121Y7543D01* X33124Y7516D01* X33124Y7489D01* X33122Y7462D01* X33117Y7435D01* X33110Y7409D01* X33101Y7383D01* X33092Y7365D01* Y7634D01* G37* G36* X33012Y17583D02*X33016Y17569D01* X33021Y17543D01* X33024Y17516D01* X33024Y17489D01* X33022Y17462D01* X33017Y17435D01* X33012Y17416D01* Y17583D01* G37* G36* Y15634D02*X33019Y15621D01* X33029Y15595D01* X33036Y15569D01* X33041Y15543D01* X33044Y15516D01* X33044Y15489D01* X33042Y15462D01* X33037Y15435D01* X33030Y15409D01* X33021Y15383D01* X33012Y15365D01* Y15634D01* G37* G36* X32932Y25583D02*X32936Y25569D01* X32941Y25543D01* X32944Y25516D01* X32944Y25489D01* X32942Y25462D01* X32937Y25435D01* X32932Y25416D01* Y25583D01* G37* G36* Y23634D02*X32939Y23621D01* X32949Y23595D01* X32956Y23569D01* X32961Y23543D01* X32964Y23516D01* X32964Y23489D01* X32962Y23462D01* X32957Y23435D01* X32950Y23409D01* X32941Y23383D01* X32932Y23365D01* Y23634D01* G37* G36* X34197Y40000D02*X34277D01* Y35692D01* X34273Y35697D01* X34266Y35703D01* X34259Y35708D01* X34251Y35711D01* X34242Y35713D01* X34234Y35714D01* X34225Y35713D01* X34217Y35710D01* X34209Y35706D01* X34202Y35701D01* X34197Y35695D01* Y37285D01* X34200Y37283D01* X34209Y37281D01* X34217Y37280D01* X34226Y37281D01* X34235Y37283D01* X34243Y37286D01* X34250Y37291D01* X34256Y37297D01* X34261Y37304D01* X34265Y37312D01* X34267Y37320D01* X34268Y37329D01* X34268Y37338D01* X34266Y37346D01* X34262Y37354D01* X34250Y37378D01* X34240Y37404D01* X34233Y37430D01* X34228Y37456D01* X34225Y37483D01* X34225Y37511D01* X34227Y37538D01* X34232Y37564D01* X34239Y37590D01* X34248Y37616D01* X34260Y37640D01* X34263Y37649D01* X34265Y37657D01* X34265Y37666D01* X34264Y37674D01* X34262Y37683D01* X34258Y37690D01* X34253Y37697D01* X34246Y37703D01* X34239Y37708D01* X34231Y37711D01* X34222Y37713D01* X34214Y37714D01* X34205Y37713D01* X34197Y37710D01* X34197Y37710D01* Y39280D01* X34197Y39280D01* X34206Y39281D01* X34215Y39283D01* X34223Y39286D01* X34230Y39291D01* X34236Y39297D01* X34241Y39304D01* X34245Y39312D01* X34247Y39320D01* X34248Y39329D01* X34248Y39338D01* X34246Y39346D01* X34242Y39354D01* X34230Y39378D01* X34220Y39404D01* X34213Y39430D01* X34208Y39456D01* X34205Y39483D01* X34205Y39511D01* X34207Y39538D01* X34212Y39564D01* X34219Y39590D01* X34228Y39616D01* X34240Y39640D01* X34243Y39649D01* X34245Y39657D01* X34245Y39666D01* X34244Y39674D01* X34242Y39683D01* X34238Y39690D01* X34233Y39697D01* X34226Y39703D01* X34219Y39708D01* X34211Y39711D01* X34202Y39713D01* X34197Y39714D01* Y40000D01* G37* G36* X34277Y0D02*X34197D01* Y31403D01* X34205Y31372D01* X34219Y31338D01* X34235Y31306D01* X34239Y31299D01* X34245Y31292D01* X34253Y31287D01* X34260Y31283D01* X34269Y31281D01* X34277Y31280D01* Y29710D01* X34269Y29706D01* X34262Y29701D01* X34256Y29695D01* X34251Y29687D01* X34236Y29655D01* X34223Y29621D01* X34214Y29586D01* X34208Y29550D01* X34205Y29514D01* X34205Y29478D01* X34209Y29442D01* X34215Y29407D01* X34225Y29372D01* X34239Y29338D01* X34255Y29306D01* X34259Y29299D01* X34265Y29292D01* X34273Y29287D01* X34277Y29285D01* Y27695D01* X34276Y27695D01* X34271Y27687D01* X34256Y27655D01* X34243Y27621D01* X34234Y27586D01* X34228Y27550D01* X34225Y27514D01* X34225Y27478D01* X34229Y27442D01* X34235Y27407D01* X34245Y27372D01* X34259Y27338D01* X34275Y27306D01* X34277Y27303D01* Y25656D01* X34276Y25655D01* X34263Y25621D01* X34254Y25586D01* X34248Y25550D01* X34245Y25514D01* X34245Y25478D01* X34249Y25442D01* X34255Y25407D01* X34265Y25372D01* X34277Y25343D01* Y23596D01* X34274Y23586D01* X34268Y23550D01* X34265Y23514D01* X34265Y23478D01* X34269Y23442D01* X34275Y23407D01* X34277Y23403D01* Y0D01* G37* G36* Y31714D02*X34274Y31714D01* X34265Y31713D01* X34257Y31710D01* X34249Y31706D01* X34242Y31701D01* X34236Y31695D01* X34231Y31687D01* X34216Y31655D01* X34203Y31621D01* X34197Y31596D01* Y33343D01* X34199Y33338D01* X34215Y33306D01* X34219Y33299D01* X34225Y33292D01* X34233Y33287D01* X34240Y33283D01* X34249Y33281D01* X34257Y33280D01* X34266Y33281D01* X34275Y33283D01* X34277Y33284D01* Y31714D01* G37* G36* Y33417D02*X34273Y33430D01* X34268Y33456D01* X34265Y33483D01* X34265Y33511D01* X34267Y33538D01* X34272Y33564D01* X34277Y33583D01* Y33417D01* G37* G36* Y33709D02*X34271Y33711D01* X34262Y33713D01* X34254Y33714D01* X34245Y33713D01* X34237Y33710D01* X34229Y33706D01* X34222Y33701D01* X34216Y33695D01* X34211Y33687D01* X34197Y33656D01* Y35303D01* X34199Y35299D01* X34205Y35292D01* X34213Y35287D01* X34220Y35283D01* X34229Y35281D01* X34237Y35280D01* X34246Y35281D01* X34255Y35283D01* X34263Y35286D01* X34270Y35291D01* X34276Y35297D01* X34277Y35298D01* Y33709D01* G37* G36* Y35365D02*X34270Y35378D01* X34260Y35404D01* X34253Y35430D01* X34248Y35456D01* X34245Y35483D01* X34245Y35511D01* X34247Y35538D01* X34252Y35564D01* X34259Y35590D01* X34268Y35616D01* X34277Y35634D01* Y35365D01* G37* G36* Y40000D02*X34357D01* Y39871D01* X34343Y39866D01* X34311Y39849D01* X34303Y39845D01* X34297Y39839D01* X34292Y39832D01* X34288Y39824D01* X34286Y39815D01* X34285Y39807D01* X34285Y39798D01* X34288Y39790D01* X34291Y39782D01* X34296Y39774D01* X34302Y39768D01* X34309Y39763D01* X34317Y39759D01* X34325Y39757D01* X34334Y39756D01* X34343Y39756D01* X34351Y39758D01* X34357Y39761D01* Y39238D01* X34356Y39238D01* X34347Y39240D01* X34338Y39240D01* X34330Y39239D01* X34321Y39237D01* X34314Y39233D01* X34307Y39228D01* X34301Y39221D01* X34296Y39214D01* X34293Y39206D01* X34291Y39197D01* X34290Y39189D01* X34291Y39180D01* X34294Y39172D01* X34298Y39164D01* X34303Y39157D01* X34309Y39151D01* X34317Y39146D01* X34349Y39131D01* X34357Y39128D01* Y37862D01* X34331Y37849D01* X34323Y37845D01* X34317Y37839D01* X34312Y37832D01* X34308Y37824D01* X34306Y37815D01* X34305Y37807D01* X34305Y37798D01* X34308Y37790D01* X34311Y37782D01* X34316Y37774D01* X34322Y37768D01* X34329Y37763D01* X34337Y37759D01* X34345Y37757D01* X34354Y37756D01* X34357Y37756D01* Y37240D01* X34350Y37239D01* X34341Y37237D01* X34334Y37233D01* X34327Y37228D01* X34321Y37221D01* X34316Y37214D01* X34313Y37206D01* X34311Y37197D01* X34310Y37189D01* X34311Y37180D01* X34314Y37172D01* X34318Y37164D01* X34323Y37157D01* X34329Y37151D01* X34337Y37146D01* X34357Y37137D01* Y35852D01* X34351Y35849D01* X34343Y35845D01* X34337Y35839D01* X34332Y35832D01* X34328Y35824D01* X34326Y35815D01* X34325Y35807D01* X34325Y35798D01* X34328Y35790D01* X34331Y35782D01* X34336Y35774D01* X34342Y35768D01* X34349Y35763D01* X34357Y35759D01* Y35234D01* X34354Y35233D01* X34347Y35228D01* X34341Y35221D01* X34336Y35214D01* X34333Y35206D01* X34331Y35197D01* X34330Y35189D01* X34331Y35180D01* X34334Y35172D01* X34338Y35164D01* X34343Y35157D01* X34349Y35151D01* X34357Y35147D01* Y33838D01* X34352Y33832D01* X34348Y33824D01* X34346Y33815D01* X34345Y33807D01* X34345Y33798D01* X34348Y33790D01* X34351Y33782D01* X34356Y33774D01* X34357Y33774D01* Y33215D01* X34356Y33214D01* X34353Y33206D01* X34351Y33197D01* X34350Y33189D01* X34351Y33180D01* X34354Y33172D01* X34357Y33167D01* Y27692D01* X34353Y27697D01* X34346Y27703D01* X34339Y27708D01* X34331Y27711D01* X34322Y27713D01* X34314Y27714D01* X34305Y27713D01* X34297Y27710D01* X34289Y27706D01* X34282Y27701D01* X34277Y27695D01* Y29285D01* X34280Y29283D01* X34289Y29281D01* X34297Y29280D01* X34306Y29281D01* X34315Y29283D01* X34323Y29286D01* X34330Y29291D01* X34336Y29297D01* X34341Y29304D01* X34345Y29312D01* X34347Y29320D01* X34348Y29329D01* X34348Y29338D01* X34346Y29346D01* X34342Y29354D01* X34330Y29378D01* X34320Y29404D01* X34313Y29430D01* X34308Y29456D01* X34305Y29483D01* X34305Y29511D01* X34307Y29538D01* X34312Y29564D01* X34319Y29590D01* X34328Y29616D01* X34340Y29640D01* X34343Y29649D01* X34345Y29657D01* X34345Y29666D01* X34344Y29674D01* X34342Y29683D01* X34338Y29690D01* X34333Y29697D01* X34326Y29703D01* X34319Y29708D01* X34311Y29711D01* X34302Y29713D01* X34294Y29714D01* X34285Y29713D01* X34277Y29710D01* X34277Y29710D01* Y31280D01* X34277Y31280D01* X34286Y31281D01* X34295Y31283D01* X34303Y31286D01* X34310Y31291D01* X34316Y31297D01* X34321Y31304D01* X34325Y31312D01* X34327Y31320D01* X34328Y31329D01* X34328Y31338D01* X34326Y31346D01* X34322Y31354D01* X34310Y31378D01* X34300Y31404D01* X34293Y31430D01* X34288Y31456D01* X34285Y31483D01* X34285Y31511D01* X34287Y31538D01* X34292Y31564D01* X34299Y31590D01* X34308Y31616D01* X34320Y31640D01* X34323Y31649D01* X34325Y31657D01* X34325Y31666D01* X34324Y31674D01* X34322Y31683D01* X34318Y31690D01* X34313Y31697D01* X34306Y31703D01* X34299Y31708D01* X34291Y31711D01* X34282Y31713D01* X34277Y31714D01* Y33284D01* X34283Y33286D01* X34290Y33291D01* X34296Y33297D01* X34301Y33304D01* X34305Y33312D01* X34307Y33320D01* X34308Y33329D01* X34308Y33338D01* X34306Y33346D01* X34302Y33354D01* X34290Y33378D01* X34280Y33404D01* X34277Y33417D01* Y33583D01* X34279Y33590D01* X34288Y33616D01* X34300Y33640D01* X34303Y33649D01* X34305Y33657D01* X34305Y33666D01* X34304Y33674D01* X34302Y33683D01* X34298Y33690D01* X34293Y33697D01* X34286Y33703D01* X34279Y33708D01* X34277Y33709D01* Y35298D01* X34281Y35304D01* X34285Y35312D01* X34287Y35320D01* X34288Y35329D01* X34288Y35338D01* X34286Y35346D01* X34282Y35354D01* X34277Y35365D01* Y35634D01* X34280Y35640D01* X34283Y35649D01* X34285Y35657D01* X34285Y35666D01* X34284Y35674D01* X34282Y35683D01* X34278Y35690D01* X34277Y35692D01* Y40000D01* G37* G36* X34357Y0D02*X34277D01* Y23403D01* X34285Y23372D01* X34299Y23338D01* X34315Y23306D01* X34319Y23299D01* X34325Y23292D01* X34333Y23287D01* X34340Y23283D01* X34349Y23281D01* X34357Y23280D01* Y21710D01* X34349Y21706D01* X34342Y21701D01* X34336Y21695D01* X34331Y21687D01* X34316Y21655D01* X34303Y21621D01* X34294Y21586D01* X34288Y21550D01* X34285Y21514D01* X34285Y21478D01* X34289Y21442D01* X34295Y21407D01* X34305Y21372D01* X34319Y21338D01* X34335Y21306D01* X34339Y21299D01* X34345Y21292D01* X34353Y21287D01* X34357Y21285D01* Y19695D01* X34356Y19695D01* X34351Y19687D01* X34336Y19655D01* X34323Y19621D01* X34314Y19586D01* X34308Y19550D01* X34305Y19514D01* X34305Y19478D01* X34309Y19442D01* X34315Y19407D01* X34325Y19372D01* X34339Y19338D01* X34355Y19306D01* X34357Y19303D01* Y17656D01* X34356Y17655D01* X34343Y17621D01* X34334Y17586D01* X34328Y17550D01* X34325Y17514D01* X34325Y17478D01* X34329Y17442D01* X34335Y17407D01* X34345Y17372D01* X34357Y17343D01* Y15596D01* X34354Y15586D01* X34348Y15550D01* X34345Y15514D01* X34345Y15478D01* X34349Y15442D01* X34355Y15407D01* X34357Y15403D01* Y0D01* G37* G36* Y23714D02*X34354Y23714D01* X34345Y23713D01* X34337Y23710D01* X34329Y23706D01* X34322Y23701D01* X34316Y23695D01* X34311Y23687D01* X34296Y23655D01* X34283Y23621D01* X34277Y23596D01* Y25343D01* X34279Y25338D01* X34295Y25306D01* X34299Y25299D01* X34305Y25292D01* X34313Y25287D01* X34320Y25283D01* X34329Y25281D01* X34337Y25280D01* X34346Y25281D01* X34355Y25283D01* X34357Y25284D01* Y23714D01* G37* G36* Y25417D02*X34353Y25430D01* X34348Y25456D01* X34345Y25483D01* X34345Y25511D01* X34347Y25538D01* X34352Y25564D01* X34357Y25583D01* Y25417D01* G37* G36* Y25709D02*X34351Y25711D01* X34342Y25713D01* X34334Y25714D01* X34325Y25713D01* X34317Y25710D01* X34309Y25706D01* X34302Y25701D01* X34296Y25695D01* X34291Y25687D01* X34277Y25656D01* Y27303D01* X34279Y27299D01* X34285Y27292D01* X34293Y27287D01* X34300Y27283D01* X34309Y27281D01* X34317Y27280D01* X34326Y27281D01* X34335Y27283D01* X34343Y27286D01* X34350Y27291D01* X34356Y27297D01* X34357Y27298D01* Y25709D01* G37* G36* Y27365D02*X34350Y27378D01* X34340Y27404D01* X34333Y27430D01* X34328Y27456D01* X34325Y27483D01* X34325Y27511D01* X34327Y27538D01* X34332Y27564D01* X34339Y27590D01* X34348Y27616D01* X34357Y27634D01* Y27365D01* G37* G36* Y40000D02*X34527D01* Y39899D01* X34519Y39899D01* X34483Y39899D01* X34447Y39895D01* X34411Y39889D01* X34377Y39879D01* X34357Y39871D01* Y40000D01* G37* G36* Y39761D02*X34359Y39762D01* X34383Y39774D01* X34409Y39784D01* X34435Y39791D01* X34461Y39796D01* X34488Y39799D01* X34515Y39799D01* X34527Y39798D01* Y39201D01* X34521Y39200D01* X34494Y39200D01* X34467Y39202D01* X34440Y39207D01* X34414Y39214D01* X34388Y39223D01* X34364Y39235D01* X34357Y39238D01* Y39761D01* G37* G36* Y39128D02*X34383Y39118D01* X34418Y39109D01* X34454Y39103D01* X34490Y39100D01* X34526Y39100D01* X34527Y39100D01* Y37899D01* X34503Y37899D01* X34467Y37895D01* X34431Y37889D01* X34397Y37879D01* X34363Y37866D01* X34357Y37862D01* Y39128D01* G37* G36* Y37756D02*X34363Y37756D01* X34371Y37758D01* X34379Y37762D01* X34403Y37774D01* X34429Y37784D01* X34455Y37791D01* X34481Y37796D01* X34508Y37799D01* X34527Y37799D01* Y37200D01* X34514Y37200D01* X34487Y37202D01* X34460Y37207D01* X34434Y37214D01* X34408Y37223D01* X34384Y37235D01* X34376Y37238D01* X34367Y37240D01* X34358Y37240D01* X34357Y37240D01* Y37756D01* G37* G36* Y37137D02*X34369Y37131D01* X34403Y37118D01* X34438Y37109D01* X34474Y37103D01* X34510Y37100D01* X34527Y37100D01* Y35899D01* X34523D01* X34487Y35895D01* X34451Y35889D01* X34417Y35879D01* X34383Y35866D01* X34357Y35852D01* Y37137D01* G37* G36* Y35759D02*X34357Y35759D01* X34365Y35757D01* X34374Y35756D01* X34383Y35756D01* X34391Y35758D01* X34399Y35762D01* X34423Y35774D01* X34449Y35784D01* X34475Y35791D01* X34501Y35796D01* X34527Y35799D01* Y35200D01* X34507Y35202D01* X34480Y35207D01* X34454Y35214D01* X34428Y35223D01* X34404Y35235D01* X34396Y35238D01* X34387Y35240D01* X34378Y35240D01* X34370Y35239D01* X34361Y35237D01* X34357Y35234D01* Y35759D01* G37* G36* Y35147D02*X34357Y35146D01* X34389Y35131D01* X34423Y35118D01* X34458Y35109D01* X34494Y35103D01* X34527Y35100D01* Y33897D01* X34507Y33895D01* X34471Y33889D01* X34437Y33879D01* X34403Y33866D01* X34371Y33849D01* X34363Y33845D01* X34357Y33839D01* X34357Y33838D01* Y35147D01* G37* G36* Y33774D02*X34362Y33768D01* X34369Y33763D01* X34377Y33759D01* X34385Y33757D01* X34394Y33756D01* X34403Y33756D01* X34411Y33758D01* X34419Y33762D01* X34443Y33774D01* X34469Y33784D01* X34495Y33791D01* X34521Y33796D01* X34527Y33797D01* Y33202D01* X34527Y33202D01* X34500Y33207D01* X34474Y33214D01* X34448Y33223D01* X34424Y33235D01* X34416Y33238D01* X34407Y33240D01* X34398Y33240D01* X34390Y33239D01* X34381Y33237D01* X34374Y33233D01* X34367Y33228D01* X34361Y33221D01* X34357Y33215D01* Y33774D01* G37* G36* Y33167D02*X34358Y33164D01* X34363Y33157D01* X34369Y33151D01* X34377Y33146D01* X34409Y33131D01* X34437Y33121D01* Y31871D01* X34423Y31866D01* X34391Y31849D01* X34383Y31845D01* X34377Y31839D01* X34372Y31832D01* X34368Y31824D01* X34366Y31815D01* X34365Y31807D01* X34365Y31798D01* X34368Y31790D01* X34371Y31782D01* X34376Y31774D01* X34382Y31768D01* X34389Y31763D01* X34397Y31759D01* X34405Y31757D01* X34414Y31756D01* X34423Y31756D01* X34431Y31758D01* X34437Y31761D01* Y31238D01* X34436Y31238D01* X34427Y31240D01* X34418Y31240D01* X34410Y31239D01* X34401Y31237D01* X34394Y31233D01* X34387Y31228D01* X34381Y31221D01* X34376Y31214D01* X34373Y31206D01* X34371Y31197D01* X34370Y31189D01* X34371Y31180D01* X34374Y31172D01* X34378Y31164D01* X34383Y31157D01* X34389Y31151D01* X34397Y31146D01* X34429Y31131D01* X34437Y31128D01* Y29862D01* X34411Y29849D01* X34403Y29845D01* X34397Y29839D01* X34392Y29832D01* X34388Y29824D01* X34386Y29815D01* X34385Y29807D01* X34385Y29798D01* X34388Y29790D01* X34391Y29782D01* X34396Y29774D01* X34402Y29768D01* X34409Y29763D01* X34417Y29759D01* X34425Y29757D01* X34434Y29756D01* X34437Y29756D01* Y29240D01* X34430Y29239D01* X34421Y29237D01* X34414Y29233D01* X34407Y29228D01* X34401Y29221D01* X34396Y29214D01* X34393Y29206D01* X34391Y29197D01* X34390Y29189D01* X34391Y29180D01* X34394Y29172D01* X34398Y29164D01* X34403Y29157D01* X34409Y29151D01* X34417Y29146D01* X34437Y29137D01* Y27852D01* X34431Y27849D01* X34423Y27845D01* X34417Y27839D01* X34412Y27832D01* X34408Y27824D01* X34406Y27815D01* X34405Y27807D01* X34405Y27798D01* X34408Y27790D01* X34411Y27782D01* X34416Y27774D01* X34422Y27768D01* X34429Y27763D01* X34437Y27759D01* Y27234D01* X34434Y27233D01* X34427Y27228D01* X34421Y27221D01* X34416Y27214D01* X34413Y27206D01* X34411Y27197D01* X34410Y27189D01* X34411Y27180D01* X34414Y27172D01* X34418Y27164D01* X34423Y27157D01* X34429Y27151D01* X34437Y27147D01* Y25838D01* X34432Y25832D01* X34428Y25824D01* X34426Y25815D01* X34425Y25807D01* X34425Y25798D01* X34428Y25790D01* X34431Y25782D01* X34436Y25774D01* X34437Y25774D01* Y25215D01* X34436Y25214D01* X34433Y25206D01* X34431Y25197D01* X34430Y25189D01* X34431Y25180D01* X34434Y25172D01* X34437Y25167D01* Y19692D01* X34433Y19697D01* X34426Y19703D01* X34419Y19708D01* X34411Y19711D01* X34402Y19713D01* X34394Y19714D01* X34385Y19713D01* X34377Y19710D01* X34369Y19706D01* X34362Y19701D01* X34357Y19695D01* Y21285D01* X34360Y21283D01* X34369Y21281D01* X34377Y21280D01* X34386Y21281D01* X34395Y21283D01* X34403Y21286D01* X34410Y21291D01* X34416Y21297D01* X34421Y21304D01* X34425Y21312D01* X34427Y21320D01* X34428Y21329D01* X34428Y21338D01* X34426Y21346D01* X34422Y21354D01* X34410Y21378D01* X34400Y21404D01* X34393Y21430D01* X34388Y21456D01* X34385Y21483D01* X34385Y21511D01* X34387Y21538D01* X34392Y21564D01* X34399Y21590D01* X34408Y21616D01* X34420Y21640D01* X34423Y21649D01* X34425Y21657D01* X34425Y21666D01* X34424Y21674D01* X34422Y21683D01* X34418Y21690D01* X34413Y21697D01* X34406Y21703D01* X34399Y21708D01* X34391Y21711D01* X34382Y21713D01* X34374Y21714D01* X34365Y21713D01* X34357Y21710D01* X34357Y21710D01* Y23280D01* X34357Y23280D01* X34366Y23281D01* X34375Y23283D01* X34383Y23286D01* X34390Y23291D01* X34396Y23297D01* X34401Y23304D01* X34405Y23312D01* X34407Y23320D01* X34408Y23329D01* X34408Y23338D01* X34406Y23346D01* X34402Y23354D01* X34390Y23378D01* X34380Y23404D01* X34373Y23430D01* X34368Y23456D01* X34365Y23483D01* X34365Y23511D01* X34367Y23538D01* X34372Y23564D01* X34379Y23590D01* X34388Y23616D01* X34400Y23640D01* X34403Y23649D01* X34405Y23657D01* X34405Y23666D01* X34404Y23674D01* X34402Y23683D01* X34398Y23690D01* X34393Y23697D01* X34386Y23703D01* X34379Y23708D01* X34371Y23711D01* X34362Y23713D01* X34357Y23714D01* Y25284D01* X34363Y25286D01* X34370Y25291D01* X34376Y25297D01* X34381Y25304D01* X34385Y25312D01* X34387Y25320D01* X34388Y25329D01* X34388Y25338D01* X34386Y25346D01* X34382Y25354D01* X34370Y25378D01* X34360Y25404D01* X34357Y25417D01* Y25583D01* X34359Y25590D01* X34368Y25616D01* X34380Y25640D01* X34383Y25649D01* X34385Y25657D01* X34385Y25666D01* X34384Y25674D01* X34382Y25683D01* X34378Y25690D01* X34373Y25697D01* X34366Y25703D01* X34359Y25708D01* X34357Y25709D01* Y27298D01* X34361Y27304D01* X34365Y27312D01* X34367Y27320D01* X34368Y27329D01* X34368Y27338D01* X34366Y27346D01* X34362Y27354D01* X34357Y27365D01* Y27634D01* X34360Y27640D01* X34363Y27649D01* X34365Y27657D01* X34365Y27666D01* X34364Y27674D01* X34362Y27683D01* X34358Y27690D01* X34357Y27692D01* Y33167D01* G37* G36* X34437Y11695D02*X34436Y11695D01* X34431Y11687D01* X34416Y11655D01* X34403Y11621D01* X34394Y11586D01* X34388Y11550D01* X34385Y11514D01* X34385Y11478D01* X34389Y11442D01* X34395Y11407D01* X34405Y11372D01* X34419Y11338D01* X34435Y11306D01* X34437Y11303D01* Y9656D01* X34436Y9655D01* X34423Y9621D01* X34414Y9586D01* X34408Y9550D01* X34405Y9514D01* X34405Y9478D01* X34409Y9442D01* X34415Y9407D01* X34425Y9372D01* X34437Y9343D01* Y7596D01* X34434Y7586D01* X34428Y7550D01* X34425Y7514D01* X34425Y7478D01* X34429Y7442D01* X34435Y7407D01* X34437Y7403D01* Y0D01* X34357D01* Y15403D01* X34365Y15372D01* X34379Y15338D01* X34395Y15306D01* X34399Y15299D01* X34405Y15292D01* X34413Y15287D01* X34420Y15283D01* X34429Y15281D01* X34437Y15280D01* Y13710D01* X34429Y13706D01* X34422Y13701D01* X34416Y13695D01* X34411Y13687D01* X34396Y13655D01* X34383Y13621D01* X34374Y13586D01* X34368Y13550D01* X34365Y13514D01* X34365Y13478D01* X34369Y13442D01* X34375Y13407D01* X34385Y13372D01* X34399Y13338D01* X34415Y13306D01* X34419Y13299D01* X34425Y13292D01* X34433Y13287D01* X34437Y13285D01* Y11695D01* G37* G36* Y15714D02*X34434Y15714D01* X34425Y15713D01* X34417Y15710D01* X34409Y15706D01* X34402Y15701D01* X34396Y15695D01* X34391Y15687D01* X34376Y15655D01* X34363Y15621D01* X34357Y15596D01* Y17343D01* X34359Y17338D01* X34375Y17306D01* X34379Y17299D01* X34385Y17292D01* X34393Y17287D01* X34400Y17283D01* X34409Y17281D01* X34417Y17280D01* X34426Y17281D01* X34435Y17283D01* X34437Y17284D01* Y15714D01* G37* G36* Y17417D02*X34433Y17430D01* X34428Y17456D01* X34425Y17483D01* X34425Y17511D01* X34427Y17538D01* X34432Y17564D01* X34437Y17583D01* Y17417D01* G37* G36* Y17709D02*X34431Y17711D01* X34422Y17713D01* X34414Y17714D01* X34405Y17713D01* X34397Y17710D01* X34389Y17706D01* X34382Y17701D01* X34376Y17695D01* X34371Y17687D01* X34357Y17656D01* Y19303D01* X34359Y19299D01* X34365Y19292D01* X34373Y19287D01* X34380Y19283D01* X34389Y19281D01* X34397Y19280D01* X34406Y19281D01* X34415Y19283D01* X34423Y19286D01* X34430Y19291D01* X34436Y19297D01* X34437Y19298D01* Y17709D01* G37* G36* Y19365D02*X34430Y19378D01* X34420Y19404D01* X34413Y19430D01* X34408Y19456D01* X34405Y19483D01* X34405Y19511D01* X34407Y19538D01* X34412Y19564D01* X34419Y19590D01* X34428Y19616D01* X34437Y19634D01* Y19365D01* G37* G36* Y33121D02*X34443Y33118D01* X34478Y33109D01* X34514Y33103D01* X34527Y33102D01* Y31895D01* X34527D01* X34491Y31889D01* X34457Y31879D01* X34437Y31871D01* Y33121D01* G37* G36* Y31761D02*X34439Y31762D01* X34463Y31774D01* X34489Y31784D01* X34515Y31791D01* X34527Y31794D01* Y31205D01* X34520Y31207D01* X34494Y31214D01* X34468Y31223D01* X34444Y31235D01* X34437Y31238D01* Y31761D01* G37* G36* Y31128D02*X34463Y31118D01* X34498Y31109D01* X34527Y31104D01* Y29892D01* X34511Y29889D01* X34477Y29879D01* X34443Y29866D01* X34437Y29862D01* Y31128D01* G37* G36* Y29756D02*X34443Y29756D01* X34451Y29758D01* X34459Y29762D01* X34483Y29774D01* X34509Y29784D01* X34527Y29789D01* Y29210D01* X34514Y29214D01* X34488Y29223D01* X34464Y29235D01* X34456Y29238D01* X34447Y29240D01* X34438Y29240D01* X34437Y29240D01* Y29756D01* G37* G36* Y29137D02*X34449Y29131D01* X34483Y29118D01* X34518Y29109D01* X34527Y29107D01* Y27887D01* X34497Y27879D01* X34463Y27866D01* X34437Y27852D01* Y29137D01* G37* G36* Y27759D02*X34437Y27759D01* X34445Y27757D01* X34454Y27756D01* X34463Y27756D01* X34471Y27758D01* X34479Y27762D01* X34503Y27774D01* X34527Y27783D01* Y27216D01* X34508Y27223D01* X34484Y27235D01* X34476Y27238D01* X34467Y27240D01* X34458Y27240D01* X34450Y27239D01* X34441Y27237D01* X34437Y27234D01* Y27759D01* G37* G36* Y27147D02*X34437Y27146D01* X34469Y27131D01* X34503Y27118D01* X34527Y27112D01* Y25882D01* X34517Y25879D01* X34483Y25866D01* X34451Y25849D01* X34443Y25845D01* X34437Y25839D01* X34437Y25838D01* Y27147D01* G37* G36* Y25774D02*X34442Y25768D01* X34449Y25763D01* X34457Y25759D01* X34465Y25757D01* X34474Y25756D01* X34483Y25756D01* X34491Y25758D01* X34499Y25762D01* X34523Y25774D01* X34527Y25776D01* Y25223D01* X34504Y25235D01* X34496Y25238D01* X34487Y25240D01* X34478Y25240D01* X34470Y25239D01* X34461Y25237D01* X34454Y25233D01* X34447Y25228D01* X34441Y25221D01* X34437Y25215D01* Y25774D01* G37* G36* Y25167D02*X34438Y25164D01* X34443Y25157D01* X34449Y25151D01* X34457Y25146D01* X34489Y25131D01* X34523Y25118D01* X34527Y25117D01* Y23875D01* X34503Y23866D01* X34471Y23849D01* X34463Y23845D01* X34457Y23839D01* X34452Y23832D01* X34448Y23824D01* X34446Y23815D01* X34445Y23807D01* X34445Y23798D01* X34448Y23790D01* X34451Y23782D01* X34456Y23774D01* X34462Y23768D01* X34469Y23763D01* X34477Y23759D01* X34485Y23757D01* X34494Y23756D01* X34503Y23756D01* X34511Y23758D01* X34519Y23762D01* X34527Y23766D01* Y23233D01* X34524Y23235D01* X34516Y23238D01* X34507Y23240D01* X34498Y23240D01* X34490Y23239D01* X34481Y23237D01* X34474Y23233D01* X34467Y23228D01* X34461Y23221D01* X34456Y23214D01* X34453Y23206D01* X34451Y23197D01* X34450Y23189D01* X34451Y23180D01* X34454Y23172D01* X34458Y23164D01* X34463Y23157D01* X34469Y23151D01* X34477Y23146D01* X34509Y23131D01* X34527Y23124D01* Y21867D01* X34523Y21866D01* X34491Y21849D01* X34483Y21845D01* X34477Y21839D01* X34472Y21832D01* X34468Y21824D01* X34466Y21815D01* X34465Y21807D01* X34465Y21798D01* X34468Y21790D01* X34471Y21782D01* X34476Y21774D01* X34482Y21768D01* X34489Y21763D01* X34497Y21759D01* X34505Y21757D01* X34514Y21756D01* X34523Y21756D01* X34527Y21757D01* Y21240D01* X34527D01* X34518Y21240D01* X34510Y21239D01* X34501Y21237D01* X34494Y21233D01* X34487Y21228D01* X34481Y21221D01* X34476Y21214D01* X34473Y21206D01* X34471Y21197D01* X34470Y21189D01* X34471Y21180D01* X34474Y21172D01* X34478Y21164D01* X34483Y21157D01* X34489Y21151D01* X34497Y21146D01* X34527Y21132D01* Y19858D01* X34511Y19849D01* X34503Y19845D01* X34497Y19839D01* X34492Y19832D01* X34488Y19824D01* X34486Y19815D01* X34485Y19807D01* X34485Y19798D01* X34488Y19790D01* X34491Y19782D01* X34496Y19774D01* X34502Y19768D01* X34509Y19763D01* X34517Y19759D01* X34525Y19757D01* X34527Y19756D01* Y19239D01* X34521Y19237D01* X34514Y19233D01* X34507Y19228D01* X34501Y19221D01* X34496Y19214D01* X34493Y19206D01* X34491Y19197D01* X34490Y19189D01* X34491Y19180D01* X34494Y19172D01* X34498Y19164D01* X34503Y19157D01* X34509Y19151D01* X34517Y19146D01* X34527Y19141D01* Y17847D01* X34523Y17845D01* X34517Y17839D01* X34512Y17832D01* X34508Y17824D01* X34506Y17815D01* X34505Y17807D01* X34505Y17798D01* X34508Y17790D01* X34511Y17782D01* X34516Y17774D01* X34522Y17768D01* X34527Y17764D01* Y17228D01* X34527Y17228D01* X34521Y17221D01* X34516Y17214D01* X34513Y17206D01* X34511Y17197D01* X34510Y17189D01* X34511Y17180D01* X34514Y17172D01* X34518Y17164D01* X34523Y17157D01* X34527Y17153D01* Y15821D01* X34526Y15815D01* X34525Y15807D01* X34525Y15798D01* X34527Y15791D01* Y11340D01* X34526Y11346D01* X34522Y11354D01* X34510Y11378D01* X34500Y11404D01* X34493Y11430D01* X34488Y11456D01* X34485Y11483D01* X34485Y11511D01* X34487Y11538D01* X34492Y11564D01* X34499Y11590D01* X34508Y11616D01* X34520Y11640D01* X34523Y11649D01* X34525Y11657D01* X34525Y11666D01* X34524Y11674D01* X34522Y11683D01* X34518Y11690D01* X34513Y11697D01* X34506Y11703D01* X34499Y11708D01* X34491Y11711D01* X34482Y11713D01* X34474Y11714D01* X34465Y11713D01* X34457Y11710D01* X34449Y11706D01* X34442Y11701D01* X34437Y11695D01* Y13285D01* X34440Y13283D01* X34449Y13281D01* X34457Y13280D01* X34466Y13281D01* X34475Y13283D01* X34483Y13286D01* X34490Y13291D01* X34496Y13297D01* X34501Y13304D01* X34505Y13312D01* X34507Y13320D01* X34508Y13329D01* X34508Y13338D01* X34506Y13346D01* X34502Y13354D01* X34490Y13378D01* X34480Y13404D01* X34473Y13430D01* X34468Y13456D01* X34465Y13483D01* X34465Y13511D01* X34467Y13538D01* X34472Y13564D01* X34479Y13590D01* X34488Y13616D01* X34500Y13640D01* X34503Y13649D01* X34505Y13657D01* X34505Y13666D01* X34504Y13674D01* X34502Y13683D01* X34498Y13690D01* X34493Y13697D01* X34486Y13703D01* X34479Y13708D01* X34471Y13711D01* X34462Y13713D01* X34454Y13714D01* X34445Y13713D01* X34437Y13710D01* X34437Y13710D01* Y15280D01* X34437Y15280D01* X34446Y15281D01* X34455Y15283D01* X34463Y15286D01* X34470Y15291D01* X34476Y15297D01* X34481Y15304D01* X34485Y15312D01* X34487Y15320D01* X34488Y15329D01* X34488Y15338D01* X34486Y15346D01* X34482Y15354D01* X34470Y15378D01* X34460Y15404D01* X34453Y15430D01* X34448Y15456D01* X34445Y15483D01* X34445Y15511D01* X34447Y15538D01* X34452Y15564D01* X34459Y15590D01* X34468Y15616D01* X34480Y15640D01* X34483Y15649D01* X34485Y15657D01* X34485Y15666D01* X34484Y15674D01* X34482Y15683D01* X34478Y15690D01* X34473Y15697D01* X34466Y15703D01* X34459Y15708D01* X34451Y15711D01* X34442Y15713D01* X34437Y15714D01* Y17284D01* X34443Y17286D01* X34450Y17291D01* X34456Y17297D01* X34461Y17304D01* X34465Y17312D01* X34467Y17320D01* X34468Y17329D01* X34468Y17338D01* X34466Y17346D01* X34462Y17354D01* X34450Y17378D01* X34440Y17404D01* X34437Y17417D01* Y17583D01* X34439Y17590D01* X34448Y17616D01* X34460Y17640D01* X34463Y17649D01* X34465Y17657D01* X34465Y17666D01* X34464Y17674D01* X34462Y17683D01* X34458Y17690D01* X34453Y17697D01* X34446Y17703D01* X34439Y17708D01* X34437Y17709D01* Y19298D01* X34441Y19304D01* X34445Y19312D01* X34447Y19320D01* X34448Y19329D01* X34448Y19338D01* X34446Y19346D01* X34442Y19354D01* X34437Y19365D01* Y19634D01* X34440Y19640D01* X34443Y19649D01* X34445Y19657D01* X34445Y19666D01* X34444Y19674D01* X34442Y19683D01* X34438Y19690D01* X34437Y19692D01* Y25167D01* G37* G36* Y11303D02*X34439Y11299D01* X34445Y11292D01* X34453Y11287D01* X34460Y11283D01* X34469Y11281D01* X34477Y11280D01* X34486Y11281D01* X34495Y11283D01* X34503Y11286D01* X34510Y11291D01* X34516Y11297D01* X34521Y11304D01* X34525Y11312D01* X34527Y11320D01* Y9702D01* X34526Y9703D01* X34519Y9708D01* X34511Y9711D01* X34502Y9713D01* X34494Y9714D01* X34485Y9713D01* X34477Y9710D01* X34469Y9706D01* X34462Y9701D01* X34456Y9695D01* X34451Y9687D01* X34437Y9656D01* Y11303D01* G37* G36* Y9343D02*X34439Y9338D01* X34455Y9306D01* X34459Y9299D01* X34465Y9292D01* X34473Y9287D01* X34480Y9283D01* X34489Y9281D01* X34497Y9280D01* X34506Y9281D01* X34515Y9283D01* X34523Y9286D01* X34527Y9289D01* Y7712D01* X34522Y7713D01* X34514Y7714D01* X34505Y7713D01* X34497Y7710D01* X34489Y7706D01* X34482Y7701D01* X34476Y7695D01* X34471Y7687D01* X34456Y7655D01* X34443Y7621D01* X34437Y7596D01* Y9343D01* G37* G36* Y7403D02*X34445Y7372D01* X34459Y7338D01* X34475Y7306D01* X34479Y7299D01* X34485Y7292D01* X34493Y7287D01* X34500Y7283D01* X34509Y7281D01* X34517Y7280D01* X34526Y7281D01* X34527Y7281D01* Y5713D01* X34525Y5713D01* X34517Y5710D01* X34509Y5706D01* X34502Y5701D01* X34496Y5695D01* X34491Y5687D01* X34476Y5655D01* X34463Y5621D01* X34454Y5586D01* X34448Y5550D01* X34445Y5514D01* X34445Y5478D01* X34449Y5442D01* X34455Y5407D01* X34465Y5372D01* X34479Y5338D01* X34495Y5306D01* X34499Y5299D01* X34505Y5292D01* X34513Y5287D01* X34520Y5283D01* X34527Y5281D01* Y3705D01* X34522Y3701D01* X34516Y3695D01* X34511Y3687D01* X34496Y3655D01* X34483Y3621D01* X34474Y3586D01* X34468Y3550D01* X34465Y3514D01* X34465Y3478D01* X34469Y3442D01* X34475Y3407D01* X34485Y3372D01* X34499Y3338D01* X34515Y3306D01* X34519Y3299D01* X34525Y3292D01* X34527Y3291D01* Y1679D01* X34516Y1655D01* X34503Y1621D01* X34494Y1586D01* X34488Y1550D01* X34485Y1514D01* X34485Y1478D01* X34489Y1442D01* X34495Y1407D01* X34505Y1372D01* X34519Y1338D01* X34527Y1321D01* Y0D01* X34437D01* Y7403D01* G37* G36* X34527Y9386D02*X34520Y9404D01* X34513Y9430D01* X34508Y9456D01* X34505Y9483D01* X34505Y9511D01* X34507Y9538D01* X34512Y9564D01* X34519Y9590D01* X34527Y9614D01* Y9386D01* G37* G36* Y7460D02*X34525Y7483D01* X34525Y7511D01* X34527Y7538D01* X34527Y7539D01* Y7460D01* G37* G36* Y40000D02*X34852D01* Y39696D01* X34850Y39701D01* X34844Y39707D01* X34836Y39712D01* X34829Y39716D01* X34820Y39718D01* X34812Y39719D01* X34803Y39719D01* X34794Y39717D01* X34786Y39713D01* X34779Y39708D01* X34773Y39702D01* X34768Y39695D01* X34764Y39687D01* X34762Y39679D01* X34761Y39670D01* X34761Y39661D01* X34763Y39653D01* X34767Y39645D01* X34779Y39621D01* X34789Y39595D01* X34796Y39569D01* X34801Y39543D01* X34804Y39516D01* X34804Y39489D01* X34802Y39462D01* X34797Y39435D01* X34790Y39409D01* X34781Y39383D01* X34769Y39359D01* X34766Y39351D01* X34764Y39342D01* X34764Y39333D01* X34765Y39325D01* X34767Y39317D01* X34771Y39309D01* X34776Y39302D01* X34783Y39296D01* X34790Y39291D01* X34798Y39288D01* X34807Y39286D01* X34815Y39285D01* X34824Y39286D01* X34832Y39289D01* X34840Y39293D01* X34847Y39298D01* X34852Y39304D01* Y37714D01* X34849Y37716D01* X34840Y37718D01* X34832Y37719D01* X34823Y37719D01* X34814Y37717D01* X34806Y37713D01* X34799Y37708D01* X34793Y37702D01* X34788Y37695D01* X34784Y37687D01* X34782Y37679D01* X34781Y37670D01* X34781Y37661D01* X34783Y37653D01* X34787Y37645D01* X34799Y37621D01* X34809Y37595D01* X34816Y37569D01* X34821Y37543D01* X34824Y37516D01* X34824Y37489D01* X34822Y37462D01* X34817Y37435D01* X34810Y37409D01* X34801Y37383D01* X34789Y37359D01* X34786Y37351D01* X34784Y37342D01* X34784Y37333D01* X34785Y37325D01* X34787Y37317D01* X34791Y37309D01* X34796Y37302D01* X34803Y37296D01* X34810Y37291D01* X34818Y37288D01* X34827Y37286D01* X34835Y37285D01* X34844Y37286D01* X34852Y37289D01* X34852Y37289D01* Y35719D01* X34852Y35719D01* X34843Y35719D01* X34834Y35717D01* X34826Y35713D01* X34819Y35708D01* X34813Y35702D01* X34808Y35695D01* X34804Y35687D01* X34802Y35679D01* X34801Y35670D01* X34801Y35661D01* X34803Y35653D01* X34807Y35645D01* X34819Y35621D01* X34829Y35595D01* X34836Y35569D01* X34841Y35543D01* X34844Y35516D01* X34844Y35489D01* X34842Y35462D01* X34837Y35435D01* X34830Y35409D01* X34821Y35383D01* X34809Y35359D01* X34806Y35351D01* X34804Y35342D01* X34804Y35333D01* X34805Y35325D01* X34807Y35317D01* X34811Y35309D01* X34816Y35302D01* X34823Y35296D01* X34830Y35291D01* X34838Y35288D01* X34847Y35286D01* X34852Y35286D01* Y33716D01* X34846Y33713D01* X34839Y33708D01* X34833Y33702D01* X34828Y33695D01* X34824Y33687D01* X34822Y33679D01* X34821Y33670D01* X34821Y33661D01* X34823Y33653D01* X34827Y33645D01* X34839Y33621D01* X34849Y33595D01* X34852Y33583D01* Y33416D01* X34850Y33409D01* X34841Y33383D01* X34829Y33359D01* X34826Y33351D01* X34824Y33342D01* X34824Y33333D01* X34825Y33325D01* X34827Y33317D01* X34831Y33309D01* X34836Y33302D01* X34843Y33296D01* X34850Y33291D01* X34852Y33290D01* Y31701D01* X34848Y31695D01* X34844Y31687D01* X34842Y31679D01* X34841Y31670D01* X34841Y31661D01* X34843Y31653D01* X34847Y31645D01* X34852Y31634D01* Y31365D01* X34849Y31359D01* X34846Y31351D01* X34844Y31342D01* X34844Y31333D01* X34845Y31325D01* X34847Y31317D01* X34851Y31309D01* X34852Y31307D01* Y25833D01* X34851Y25835D01* X34846Y25842D01* X34840Y25848D01* X34832Y25853D01* X34800Y25868D01* X34766Y25881D01* X34731Y25890D01* X34695Y25896D01* X34659Y25899D01* X34623Y25899D01* X34587Y25895D01* X34551Y25889D01* X34527Y25882D01* Y27112D01* X34538Y27109D01* X34574Y27103D01* X34610Y27100D01* X34646Y27100D01* X34682Y27104D01* X34718Y27111D01* X34752Y27121D01* X34786Y27134D01* X34818Y27150D01* X34826Y27155D01* X34832Y27161D01* X34837Y27168D01* X34841Y27175D01* X34843Y27184D01* X34844Y27193D01* X34844Y27201D01* X34841Y27210D01* X34838Y27218D01* X34833Y27225D01* X34827Y27231D01* X34820Y27236D01* X34812Y27240D01* X34804Y27243D01* X34795Y27243D01* X34786Y27243D01* X34778Y27241D01* X34770Y27237D01* X34746Y27225D01* X34720Y27215D01* X34694Y27208D01* X34668Y27203D01* X34641Y27200D01* X34614Y27200D01* X34587Y27202D01* X34560Y27207D01* X34534Y27214D01* X34527Y27216D01* Y27783D01* X34529Y27784D01* X34555Y27791D01* X34581Y27796D01* X34608Y27799D01* X34635Y27799D01* X34662Y27797D01* X34689Y27793D01* X34715Y27785D01* X34741Y27776D01* X34765Y27764D01* X34773Y27761D01* X34782Y27759D01* X34791Y27759D01* X34799Y27760D01* X34808Y27762D01* X34815Y27766D01* X34822Y27772D01* X34828Y27778D01* X34833Y27785D01* X34836Y27793D01* X34838Y27802D01* X34839Y27810D01* X34838Y27819D01* X34835Y27827D01* X34831Y27835D01* X34826Y27842D01* X34820Y27848D01* X34812Y27853D01* X34780Y27868D01* X34746Y27881D01* X34711Y27890D01* X34675Y27896D01* X34639Y27899D01* X34603Y27899D01* X34567Y27895D01* X34531Y27889D01* X34527Y27887D01* Y29107D01* X34554Y29103D01* X34590Y29100D01* X34626Y29100D01* X34662Y29104D01* X34698Y29111D01* X34732Y29121D01* X34766Y29134D01* X34798Y29150D01* X34806Y29155D01* X34812Y29161D01* X34817Y29168D01* X34821Y29175D01* X34823Y29184D01* X34824Y29193D01* X34824Y29201D01* X34821Y29210D01* X34818Y29218D01* X34813Y29225D01* X34807Y29231D01* X34800Y29236D01* X34792Y29240D01* X34784Y29243D01* X34775Y29243D01* X34766Y29243D01* X34758Y29241D01* X34750Y29237D01* X34726Y29225D01* X34700Y29215D01* X34674Y29208D01* X34648Y29203D01* X34621Y29200D01* X34594Y29200D01* X34567Y29202D01* X34540Y29207D01* X34527Y29210D01* Y29789D01* X34535Y29791D01* X34561Y29796D01* X34588Y29799D01* X34615Y29799D01* X34642Y29797D01* X34669Y29793D01* X34695Y29785D01* X34721Y29776D01* X34745Y29764D01* X34753Y29761D01* X34762Y29759D01* X34771Y29759D01* X34779Y29760D01* X34788Y29762D01* X34795Y29766D01* X34802Y29772D01* X34808Y29778D01* X34813Y29785D01* X34816Y29793D01* X34818Y29802D01* X34819Y29810D01* X34818Y29819D01* X34815Y29827D01* X34811Y29835D01* X34806Y29842D01* X34800Y29848D01* X34792Y29853D01* X34760Y29868D01* X34726Y29881D01* X34691Y29890D01* X34655Y29896D01* X34619Y29899D01* X34583Y29899D01* X34547Y29895D01* X34527Y29892D01* Y31104D01* X34534Y31103D01* X34570Y31100D01* X34606Y31100D01* X34642Y31104D01* X34678Y31111D01* X34712Y31121D01* X34746Y31134D01* X34778Y31150D01* X34786Y31155D01* X34792Y31161D01* X34797Y31168D01* X34801Y31175D01* X34803Y31184D01* X34804Y31193D01* X34804Y31201D01* X34801Y31210D01* X34798Y31218D01* X34793Y31225D01* X34787Y31231D01* X34780Y31236D01* X34772Y31240D01* X34764Y31243D01* X34755Y31243D01* X34746Y31243D01* X34738Y31241D01* X34730Y31237D01* X34706Y31225D01* X34680Y31215D01* X34654Y31208D01* X34628Y31203D01* X34601Y31200D01* X34574Y31200D01* X34547Y31202D01* X34527Y31205D01* Y31794D01* X34541Y31796D01* X34568Y31799D01* X34595Y31799D01* X34622Y31797D01* X34649Y31793D01* X34675Y31785D01* X34701Y31776D01* X34725Y31764D01* X34733Y31761D01* X34742Y31759D01* X34751Y31759D01* X34759Y31760D01* X34768Y31762D01* X34775Y31766D01* X34782Y31772D01* X34788Y31778D01* X34793Y31785D01* X34796Y31793D01* X34798Y31802D01* X34799Y31810D01* X34798Y31819D01* X34795Y31827D01* X34791Y31835D01* X34786Y31842D01* X34780Y31848D01* X34772Y31853D01* X34740Y31868D01* X34706Y31881D01* X34671Y31890D01* X34635Y31896D01* X34599Y31899D01* X34563Y31899D01* X34527Y31895D01* Y33102D01* X34550Y33100D01* X34586Y33100D01* X34622Y33104D01* X34658Y33111D01* X34692Y33121D01* X34726Y33134D01* X34758Y33150D01* X34766Y33155D01* X34772Y33161D01* X34777Y33168D01* X34781Y33175D01* X34783Y33184D01* X34784Y33193D01* X34784Y33201D01* X34781Y33210D01* X34778Y33218D01* X34773Y33225D01* X34767Y33231D01* X34760Y33236D01* X34752Y33240D01* X34744Y33243D01* X34735Y33243D01* X34726Y33243D01* X34718Y33241D01* X34710Y33237D01* X34686Y33225D01* X34660Y33215D01* X34634Y33208D01* X34608Y33203D01* X34581Y33200D01* X34554Y33200D01* X34527Y33202D01* Y33797D01* X34548Y33799D01* X34575Y33799D01* X34602Y33797D01* X34629Y33793D01* X34655Y33785D01* X34681Y33776D01* X34705Y33764D01* X34713Y33761D01* X34722Y33759D01* X34731Y33759D01* X34739Y33760D01* X34748Y33762D01* X34755Y33766D01* X34762Y33772D01* X34768Y33778D01* X34773Y33785D01* X34776Y33793D01* X34778Y33802D01* X34779Y33810D01* X34778Y33819D01* X34775Y33827D01* X34771Y33835D01* X34766Y33842D01* X34760Y33848D01* X34752Y33853D01* X34720Y33868D01* X34686Y33881D01* X34651Y33890D01* X34615Y33896D01* X34579Y33899D01* X34543Y33899D01* X34527Y33897D01* Y35100D01* X34530Y35100D01* X34566Y35100D01* X34602Y35104D01* X34638Y35111D01* X34672Y35121D01* X34706Y35134D01* X34738Y35150D01* X34746Y35155D01* X34752Y35161D01* X34757Y35168D01* X34761Y35175D01* X34763Y35184D01* X34764Y35193D01* X34764Y35201D01* X34761Y35210D01* X34758Y35218D01* X34753Y35225D01* X34747Y35231D01* X34740Y35236D01* X34732Y35240D01* X34724Y35243D01* X34715Y35243D01* X34706Y35243D01* X34698Y35241D01* X34690Y35237D01* X34666Y35225D01* X34640Y35215D01* X34614Y35208D01* X34588Y35203D01* X34561Y35200D01* X34534Y35200D01* X34527Y35200D01* Y35799D01* X34528Y35799D01* X34555Y35799D01* X34582Y35797D01* X34609Y35793D01* X34635Y35785D01* X34661Y35776D01* X34685Y35764D01* X34693Y35761D01* X34702Y35759D01* X34711Y35759D01* X34719Y35760D01* X34728Y35762D01* X34735Y35766D01* X34742Y35772D01* X34748Y35778D01* X34753Y35785D01* X34756Y35793D01* X34758Y35802D01* X34759Y35810D01* X34758Y35819D01* X34755Y35827D01* X34751Y35835D01* X34746Y35842D01* X34740Y35848D01* X34732Y35853D01* X34700Y35868D01* X34666Y35881D01* X34631Y35890D01* X34595Y35896D01* X34559Y35899D01* X34527Y35899D01* Y37100D01* X34546Y37100D01* X34582Y37104D01* X34618Y37111D01* X34652Y37121D01* X34686Y37134D01* X34718Y37150D01* X34726Y37155D01* X34732Y37161D01* X34737Y37168D01* X34741Y37175D01* X34743Y37184D01* X34744Y37193D01* X34744Y37201D01* X34741Y37210D01* X34738Y37218D01* X34733Y37225D01* X34727Y37231D01* X34720Y37236D01* X34712Y37240D01* X34704Y37243D01* X34695Y37243D01* X34686Y37243D01* X34678Y37241D01* X34670Y37237D01* X34646Y37225D01* X34620Y37215D01* X34594Y37208D01* X34568Y37203D01* X34541Y37200D01* X34527Y37200D01* Y37799D01* X34535Y37799D01* X34562Y37797D01* X34589Y37793D01* X34615Y37785D01* X34641Y37776D01* X34665Y37764D01* X34673Y37761D01* X34682Y37759D01* X34691Y37759D01* X34699Y37760D01* X34708Y37762D01* X34715Y37766D01* X34722Y37772D01* X34728Y37778D01* X34733Y37785D01* X34736Y37793D01* X34738Y37802D01* X34739Y37810D01* X34738Y37819D01* X34735Y37827D01* X34731Y37835D01* X34726Y37842D01* X34720Y37848D01* X34712Y37853D01* X34680Y37868D01* X34646Y37881D01* X34611Y37890D01* X34575Y37896D01* X34539Y37899D01* X34527Y37899D01* Y39100D01* X34562Y39104D01* X34598Y39111D01* X34632Y39121D01* X34666Y39134D01* X34698Y39150D01* X34706Y39155D01* X34712Y39161D01* X34717Y39168D01* X34721Y39175D01* X34723Y39184D01* X34724Y39193D01* X34724Y39201D01* X34721Y39210D01* X34718Y39218D01* X34713Y39225D01* X34707Y39231D01* X34700Y39236D01* X34692Y39240D01* X34684Y39243D01* X34675Y39243D01* X34666Y39243D01* X34658Y39241D01* X34650Y39237D01* X34626Y39225D01* X34600Y39215D01* X34574Y39208D01* X34548Y39203D01* X34527Y39201D01* Y39798D01* X34542Y39797D01* X34569Y39793D01* X34595Y39785D01* X34621Y39776D01* X34645Y39764D01* X34653Y39761D01* X34662Y39759D01* X34671Y39759D01* X34679Y39760D01* X34688Y39762D01* X34695Y39766D01* X34702Y39772D01* X34708Y39778D01* X34713Y39785D01* X34716Y39793D01* X34718Y39802D01* X34719Y39810D01* X34718Y39819D01* X34715Y39827D01* X34711Y39835D01* X34706Y39842D01* X34700Y39848D01* X34692Y39853D01* X34660Y39868D01* X34626Y39881D01* X34591Y39890D01* X34555Y39896D01* X34527Y39899D01* Y40000D01* G37* G36* X34852Y0D02*X34527D01* Y1321D01* X34535Y1306D01* X34539Y1299D01* X34545Y1292D01* X34553Y1287D01* X34560Y1283D01* X34569Y1281D01* X34577Y1280D01* X34586Y1281D01* X34595Y1283D01* X34603Y1286D01* X34610Y1291D01* X34616Y1297D01* X34621Y1304D01* X34625Y1312D01* X34627Y1320D01* X34628Y1329D01* X34628Y1338D01* X34626Y1346D01* X34622Y1354D01* X34610Y1378D01* X34600Y1404D01* X34593Y1430D01* X34588Y1456D01* X34585Y1483D01* X34585Y1511D01* X34587Y1538D01* X34592Y1564D01* X34599Y1590D01* X34608Y1616D01* X34620Y1640D01* X34623Y1649D01* X34625Y1657D01* X34625Y1666D01* X34624Y1674D01* X34622Y1683D01* X34618Y1690D01* X34613Y1697D01* X34606Y1703D01* X34599Y1708D01* X34591Y1711D01* X34582Y1713D01* X34574Y1714D01* X34565Y1713D01* X34557Y1710D01* X34549Y1706D01* X34542Y1701D01* X34536Y1695D01* X34531Y1687D01* X34527Y1679D01* Y3291D01* X34533Y3287D01* X34540Y3283D01* X34549Y3281D01* X34557Y3280D01* X34566Y3281D01* X34575Y3283D01* X34583Y3286D01* X34590Y3291D01* X34596Y3297D01* X34601Y3304D01* X34605Y3312D01* X34607Y3320D01* X34608Y3329D01* X34608Y3338D01* X34606Y3346D01* X34602Y3354D01* X34590Y3378D01* X34580Y3404D01* X34573Y3430D01* X34568Y3456D01* X34565Y3483D01* X34565Y3511D01* X34567Y3538D01* X34572Y3564D01* X34579Y3590D01* X34588Y3616D01* X34600Y3640D01* X34603Y3649D01* X34605Y3657D01* X34605Y3666D01* X34604Y3674D01* X34602Y3683D01* X34598Y3690D01* X34593Y3697D01* X34586Y3703D01* X34579Y3708D01* X34571Y3711D01* X34562Y3713D01* X34554Y3714D01* X34545Y3713D01* X34537Y3710D01* X34529Y3706D01* X34527Y3705D01* Y5281D01* X34529Y5281D01* X34537Y5280D01* X34546Y5281D01* X34555Y5283D01* X34563Y5286D01* X34570Y5291D01* X34576Y5297D01* X34581Y5304D01* X34585Y5312D01* X34587Y5320D01* X34588Y5329D01* X34588Y5338D01* X34586Y5346D01* X34582Y5354D01* X34570Y5378D01* X34560Y5404D01* X34553Y5430D01* X34548Y5456D01* X34545Y5483D01* X34545Y5511D01* X34547Y5538D01* X34552Y5564D01* X34559Y5590D01* X34568Y5616D01* X34580Y5640D01* X34583Y5649D01* X34585Y5657D01* X34585Y5666D01* X34584Y5674D01* X34582Y5683D01* X34578Y5690D01* X34573Y5697D01* X34566Y5703D01* X34559Y5708D01* X34551Y5711D01* X34542Y5713D01* X34534Y5714D01* X34527Y5713D01* Y7281D01* X34535Y7283D01* X34543Y7286D01* X34550Y7291D01* X34556Y7297D01* X34561Y7304D01* X34565Y7312D01* X34567Y7320D01* X34568Y7329D01* X34568Y7338D01* X34566Y7346D01* X34562Y7354D01* X34550Y7378D01* X34540Y7404D01* X34533Y7430D01* X34528Y7456D01* X34527Y7460D01* Y7539D01* X34532Y7564D01* X34539Y7590D01* X34548Y7616D01* X34560Y7640D01* X34563Y7649D01* X34565Y7657D01* X34565Y7666D01* X34564Y7674D01* X34562Y7683D01* X34558Y7690D01* X34553Y7697D01* X34546Y7703D01* X34539Y7708D01* X34531Y7711D01* X34527Y7712D01* Y9289D01* X34530Y9291D01* X34536Y9297D01* X34541Y9304D01* X34545Y9312D01* X34547Y9320D01* X34548Y9329D01* X34548Y9338D01* X34546Y9346D01* X34542Y9354D01* X34530Y9378D01* X34527Y9386D01* Y9614D01* X34528Y9616D01* X34540Y9640D01* X34543Y9649D01* X34545Y9657D01* X34545Y9666D01* X34544Y9674D01* X34542Y9683D01* X34538Y9690D01* X34533Y9697D01* X34527Y9702D01* Y11320D01* X34527Y11320D01* X34528Y11329D01* X34528Y11338D01* X34527Y11340D01* Y15791D01* X34528Y15790D01* X34531Y15782D01* X34536Y15774D01* X34542Y15768D01* X34549Y15763D01* X34557Y15759D01* X34565Y15757D01* X34574Y15756D01* X34583Y15756D01* X34591Y15758D01* X34599Y15762D01* X34623Y15774D01* X34649Y15784D01* X34675Y15791D01* X34701Y15796D01* X34728Y15799D01* X34755Y15799D01* X34782Y15797D01* X34809Y15793D01* X34835Y15785D01* X34852Y15779D01* Y15220D01* X34840Y15215D01* X34814Y15208D01* X34788Y15203D01* X34761Y15200D01* X34734Y15200D01* X34707Y15202D01* X34680Y15207D01* X34654Y15214D01* X34628Y15223D01* X34604Y15235D01* X34596Y15238D01* X34587Y15240D01* X34578Y15240D01* X34570Y15239D01* X34561Y15237D01* X34554Y15233D01* X34547Y15228D01* X34541Y15221D01* X34536Y15214D01* X34533Y15206D01* X34531Y15197D01* X34530Y15189D01* X34531Y15180D01* X34534Y15172D01* X34538Y15164D01* X34543Y15157D01* X34549Y15151D01* X34557Y15146D01* X34589Y15131D01* X34623Y15118D01* X34658Y15109D01* X34694Y15103D01* X34730Y15100D01* X34766Y15100D01* X34802Y15104D01* X34838Y15111D01* X34852Y15115D01* Y13890D01* X34851Y13890D01* X34815Y13896D01* X34779Y13899D01* X34743Y13899D01* X34707Y13895D01* X34671Y13889D01* X34637Y13879D01* X34603Y13866D01* X34571Y13849D01* X34563Y13845D01* X34557Y13839D01* X34552Y13832D01* X34548Y13824D01* X34546Y13815D01* X34545Y13807D01* X34545Y13798D01* X34548Y13790D01* X34551Y13782D01* X34556Y13774D01* X34562Y13768D01* X34569Y13763D01* X34577Y13759D01* X34585Y13757D01* X34594Y13756D01* X34603Y13756D01* X34611Y13758D01* X34619Y13762D01* X34643Y13774D01* X34669Y13784D01* X34695Y13791D01* X34721Y13796D01* X34748Y13799D01* X34775Y13799D01* X34802Y13797D01* X34829Y13793D01* X34852Y13786D01* Y13213D01* X34834Y13208D01* X34808Y13203D01* X34781Y13200D01* X34754Y13200D01* X34727Y13202D01* X34700Y13207D01* X34674Y13214D01* X34648Y13223D01* X34624Y13235D01* X34616Y13238D01* X34607Y13240D01* X34598Y13240D01* X34590Y13239D01* X34581Y13237D01* X34574Y13233D01* X34567Y13228D01* X34561Y13221D01* X34556Y13214D01* X34553Y13206D01* X34551Y13197D01* X34550Y13189D01* X34551Y13180D01* X34554Y13172D01* X34558Y13164D01* X34563Y13157D01* X34569Y13151D01* X34577Y13146D01* X34609Y13131D01* X34643Y13118D01* X34678Y13109D01* X34714Y13103D01* X34750Y13100D01* X34786Y13100D01* X34822Y13104D01* X34852Y13110D01* Y11893D01* X34835Y11896D01* X34799Y11899D01* X34763Y11899D01* X34727Y11895D01* X34691Y11889D01* X34657Y11879D01* X34623Y11866D01* X34591Y11849D01* X34583Y11845D01* X34577Y11839D01* X34572Y11832D01* X34568Y11824D01* X34566Y11815D01* X34565Y11807D01* X34565Y11798D01* X34568Y11790D01* X34571Y11782D01* X34576Y11774D01* X34582Y11768D01* X34589Y11763D01* X34597Y11759D01* X34605Y11757D01* X34614Y11756D01* X34623Y11756D01* X34631Y11758D01* X34639Y11762D01* X34663Y11774D01* X34689Y11784D01* X34715Y11791D01* X34741Y11796D01* X34768Y11799D01* X34795Y11799D01* X34822Y11797D01* X34849Y11793D01* X34852Y11792D01* Y11207D01* X34828Y11203D01* X34801Y11200D01* X34774Y11200D01* X34747Y11202D01* X34720Y11207D01* X34694Y11214D01* X34668Y11223D01* X34644Y11235D01* X34636Y11238D01* X34627Y11240D01* X34618Y11240D01* X34610Y11239D01* X34601Y11237D01* X34594Y11233D01* X34587Y11228D01* X34581Y11221D01* X34576Y11214D01* X34573Y11206D01* X34571Y11197D01* X34570Y11189D01* X34571Y11180D01* X34574Y11172D01* X34578Y11164D01* X34583Y11157D01* X34589Y11151D01* X34597Y11146D01* X34629Y11131D01* X34663Y11118D01* X34698Y11109D01* X34734Y11103D01* X34770Y11100D01* X34806Y11100D01* X34842Y11104D01* X34852Y11106D01* Y9897D01* X34819Y9899D01* X34783Y9899D01* X34747Y9895D01* X34711Y9889D01* X34677Y9879D01* X34643Y9866D01* X34611Y9849D01* X34603Y9845D01* X34597Y9839D01* X34592Y9832D01* X34588Y9824D01* X34586Y9815D01* X34585Y9807D01* X34585Y9798D01* X34588Y9790D01* X34591Y9782D01* X34596Y9774D01* X34602Y9768D01* X34609Y9763D01* X34617Y9759D01* X34625Y9757D01* X34634Y9756D01* X34643Y9756D01* X34651Y9758D01* X34659Y9762D01* X34683Y9774D01* X34709Y9784D01* X34735Y9791D01* X34761Y9796D01* X34788Y9799D01* X34815Y9799D01* X34842Y9797D01* X34852Y9795D01* Y9204D01* X34848Y9203D01* X34821Y9200D01* X34794Y9200D01* X34767Y9202D01* X34740Y9207D01* X34714Y9214D01* X34688Y9223D01* X34664Y9235D01* X34656Y9238D01* X34647Y9240D01* X34638Y9240D01* X34630Y9239D01* X34621Y9237D01* X34614Y9233D01* X34607Y9228D01* X34601Y9221D01* X34596Y9214D01* X34593Y9206D01* X34591Y9197D01* X34590Y9189D01* X34591Y9180D01* X34594Y9172D01* X34598Y9164D01* X34603Y9157D01* X34609Y9151D01* X34617Y9146D01* X34649Y9131D01* X34683Y9118D01* X34718Y9109D01* X34754Y9103D01* X34790Y9100D01* X34826Y9100D01* X34852Y9103D01* Y7898D01* X34839Y7899D01* X34803Y7899D01* X34767Y7895D01* X34731Y7889D01* X34697Y7879D01* X34663Y7866D01* X34631Y7849D01* X34623Y7845D01* X34617Y7839D01* X34612Y7832D01* X34608Y7824D01* X34606Y7815D01* X34605Y7807D01* X34605Y7798D01* X34608Y7790D01* X34611Y7782D01* X34616Y7774D01* X34622Y7768D01* X34629Y7763D01* X34637Y7759D01* X34645Y7757D01* X34654Y7756D01* X34663Y7756D01* X34671Y7758D01* X34679Y7762D01* X34703Y7774D01* X34729Y7784D01* X34755Y7791D01* X34781Y7796D01* X34808Y7799D01* X34835Y7799D01* X34852Y7798D01* Y7201D01* X34841Y7200D01* X34814Y7200D01* X34787Y7202D01* X34760Y7207D01* X34734Y7214D01* X34708Y7223D01* X34684Y7235D01* X34676Y7238D01* X34667Y7240D01* X34658Y7240D01* X34650Y7239D01* X34641Y7237D01* X34634Y7233D01* X34627Y7228D01* X34621Y7221D01* X34616Y7214D01* X34613Y7206D01* X34611Y7197D01* X34610Y7189D01* X34611Y7180D01* X34614Y7172D01* X34618Y7164D01* X34623Y7157D01* X34629Y7151D01* X34637Y7146D01* X34669Y7131D01* X34703Y7118D01* X34738Y7109D01* X34774Y7103D01* X34810Y7100D01* X34846Y7100D01* X34852Y7101D01* Y5899D01* X34823Y5899D01* X34787Y5895D01* X34751Y5889D01* X34717Y5879D01* X34683Y5866D01* X34651Y5849D01* X34643Y5845D01* X34637Y5839D01* X34632Y5832D01* X34628Y5824D01* X34626Y5815D01* X34625Y5807D01* X34625Y5798D01* X34628Y5790D01* X34631Y5782D01* X34636Y5774D01* X34642Y5768D01* X34649Y5763D01* X34657Y5759D01* X34665Y5757D01* X34674Y5756D01* X34683Y5756D01* X34691Y5758D01* X34699Y5762D01* X34723Y5774D01* X34749Y5784D01* X34775Y5791D01* X34801Y5796D01* X34828Y5799D01* X34852Y5799D01* Y5200D01* X34834Y5200D01* X34807Y5202D01* X34780Y5207D01* X34754Y5214D01* X34728Y5223D01* X34704Y5235D01* X34696Y5238D01* X34687Y5240D01* X34678Y5240D01* X34670Y5239D01* X34661Y5237D01* X34654Y5233D01* X34647Y5228D01* X34641Y5221D01* X34636Y5214D01* X34633Y5206D01* X34631Y5197D01* X34630Y5189D01* X34631Y5180D01* X34634Y5172D01* X34638Y5164D01* X34643Y5157D01* X34649Y5151D01* X34657Y5146D01* X34689Y5131D01* X34723Y5118D01* X34758Y5109D01* X34794Y5103D01* X34830Y5100D01* X34852Y5100D01* Y3899D01* X34843Y3899D01* X34807Y3895D01* X34771Y3889D01* X34737Y3879D01* X34703Y3866D01* X34671Y3849D01* X34663Y3845D01* X34657Y3839D01* X34652Y3832D01* X34648Y3824D01* X34646Y3815D01* X34645Y3807D01* X34645Y3798D01* X34648Y3790D01* X34651Y3782D01* X34656Y3774D01* X34662Y3768D01* X34669Y3763D01* X34677Y3759D01* X34685Y3757D01* X34694Y3756D01* X34703Y3756D01* X34711Y3758D01* X34719Y3762D01* X34743Y3774D01* X34769Y3784D01* X34795Y3791D01* X34821Y3796D01* X34848Y3799D01* X34852D01* Y3200D01* X34827Y3202D01* X34800Y3207D01* X34774Y3214D01* X34748Y3223D01* X34724Y3235D01* X34716Y3238D01* X34707Y3240D01* X34698Y3240D01* X34690Y3239D01* X34681Y3237D01* X34674Y3233D01* X34667Y3228D01* X34661Y3221D01* X34656Y3214D01* X34653Y3206D01* X34651Y3197D01* X34650Y3189D01* X34651Y3180D01* X34654Y3172D01* X34658Y3164D01* X34663Y3157D01* X34669Y3151D01* X34677Y3146D01* X34709Y3131D01* X34743Y3118D01* X34778Y3109D01* X34814Y3103D01* X34850Y3100D01* X34852D01* Y1898D01* X34827Y1895D01* X34791Y1889D01* X34757Y1879D01* X34723Y1866D01* X34691Y1849D01* X34683Y1845D01* X34677Y1839D01* X34672Y1832D01* X34668Y1824D01* X34666Y1815D01* X34665Y1807D01* X34665Y1798D01* X34668Y1790D01* X34671Y1782D01* X34676Y1774D01* X34682Y1768D01* X34689Y1763D01* X34697Y1759D01* X34705Y1757D01* X34714Y1756D01* X34723Y1756D01* X34731Y1758D01* X34739Y1762D01* X34763Y1774D01* X34789Y1784D01* X34815Y1791D01* X34841Y1796D01* X34852Y1798D01* Y1202D01* X34847Y1202D01* X34820Y1207D01* X34794Y1214D01* X34768Y1223D01* X34744Y1235D01* X34736Y1238D01* X34727Y1240D01* X34718Y1240D01* X34710Y1239D01* X34701Y1237D01* X34694Y1233D01* X34687Y1228D01* X34681Y1221D01* X34676Y1214D01* X34673Y1206D01* X34671Y1197D01* X34670Y1189D01* X34671Y1180D01* X34674Y1172D01* X34678Y1164D01* X34683Y1157D01* X34689Y1151D01* X34697Y1146D01* X34729Y1131D01* X34763Y1118D01* X34798Y1109D01* X34834Y1103D01* X34852Y1101D01* Y0D01* G37* G36* Y15884D02*X34831Y15890D01* X34795Y15896D01* X34759Y15899D01* X34723Y15899D01* X34687Y15895D01* X34651Y15889D01* X34617Y15879D01* X34583Y15866D01* X34551Y15849D01* X34543Y15845D01* X34537Y15839D01* X34532Y15832D01* X34528Y15824D01* X34527Y15821D01* Y17153D01* X34529Y17151D01* X34537Y17146D01* X34569Y17131D01* X34603Y17118D01* X34638Y17109D01* X34674Y17103D01* X34710Y17100D01* X34746Y17100D01* X34782Y17104D01* X34818Y17111D01* X34852Y17121D01* X34852D01* Y15884D01* G37* G36* Y17229D02*X34846Y17225D01* X34820Y17215D01* X34794Y17208D01* X34768Y17203D01* X34741Y17200D01* X34714Y17200D01* X34687Y17202D01* X34660Y17207D01* X34634Y17214D01* X34608Y17223D01* X34584Y17235D01* X34576Y17238D01* X34567Y17240D01* X34558Y17240D01* X34550Y17239D01* X34541Y17237D01* X34534Y17233D01* X34527Y17228D01* Y17764D01* X34529Y17763D01* X34537Y17759D01* X34545Y17757D01* X34554Y17756D01* X34563Y17756D01* X34571Y17758D01* X34579Y17762D01* X34603Y17774D01* X34629Y17784D01* X34655Y17791D01* X34681Y17796D01* X34708Y17799D01* X34735Y17799D01* X34762Y17797D01* X34789Y17793D01* X34815Y17785D01* X34841Y17776D01* X34852Y17771D01* Y17229D01* G37* G36* Y17878D02*X34846Y17881D01* X34811Y17890D01* X34775Y17896D01* X34739Y17899D01* X34703Y17899D01* X34667Y17895D01* X34631Y17889D01* X34597Y17879D01* X34563Y17866D01* X34531Y17849D01* X34527Y17847D01* Y19141D01* X34549Y19131D01* X34583Y19118D01* X34618Y19109D01* X34654Y19103D01* X34690Y19100D01* X34726Y19100D01* X34762Y19104D01* X34798Y19111D01* X34832Y19121D01* X34852Y19128D01* Y17878D01* G37* G36* Y19238D02*X34850Y19237D01* X34826Y19225D01* X34800Y19215D01* X34774Y19208D01* X34748Y19203D01* X34721Y19200D01* X34694Y19200D01* X34667Y19202D01* X34640Y19207D01* X34614Y19214D01* X34588Y19223D01* X34564Y19235D01* X34556Y19238D01* X34547Y19240D01* X34538Y19240D01* X34530Y19239D01* X34527Y19239D01* Y19756D01* X34534Y19756D01* X34543Y19756D01* X34551Y19758D01* X34559Y19762D01* X34583Y19774D01* X34609Y19784D01* X34635Y19791D01* X34661Y19796D01* X34688Y19799D01* X34715Y19799D01* X34742Y19797D01* X34769Y19793D01* X34795Y19785D01* X34821Y19776D01* X34845Y19764D01* X34852Y19762D01* Y19238D01* G37* G36* Y19871D02*X34826Y19881D01* X34791Y19890D01* X34755Y19896D01* X34719Y19899D01* X34683Y19899D01* X34647Y19895D01* X34611Y19889D01* X34577Y19879D01* X34543Y19866D01* X34527Y19858D01* Y21132D01* X34529Y21131D01* X34563Y21118D01* X34598Y21109D01* X34634Y21103D01* X34670Y21100D01* X34706Y21100D01* X34742Y21104D01* X34778Y21111D01* X34812Y21121D01* X34846Y21134D01* X34852Y21137D01* Y19871D01* G37* G36* Y21243D02*X34846Y21243D01* X34838Y21241D01* X34830Y21237D01* X34806Y21225D01* X34780Y21215D01* X34754Y21208D01* X34728Y21203D01* X34701Y21200D01* X34674Y21200D01* X34647Y21202D01* X34620Y21207D01* X34594Y21214D01* X34568Y21223D01* X34544Y21235D01* X34536Y21238D01* X34527Y21240D01* Y21757D01* X34531Y21758D01* X34539Y21762D01* X34563Y21774D01* X34589Y21784D01* X34615Y21791D01* X34641Y21796D01* X34668Y21799D01* X34695Y21799D01* X34722Y21797D01* X34749Y21793D01* X34775Y21785D01* X34801Y21776D01* X34825Y21764D01* X34833Y21761D01* X34842Y21759D01* X34851Y21759D01* X34852Y21759D01* Y21243D01* G37* G36* Y21862D02*X34840Y21868D01* X34806Y21881D01* X34771Y21890D01* X34735Y21896D01* X34699Y21899D01* X34663Y21899D01* X34627Y21895D01* X34591Y21889D01* X34557Y21879D01* X34527Y21867D01* Y23124D01* X34543Y23118D01* X34578Y23109D01* X34614Y23103D01* X34650Y23100D01* X34686Y23100D01* X34722Y23104D01* X34758Y23111D01* X34792Y23121D01* X34826Y23134D01* X34852Y23147D01* Y21862D01* G37* G36* Y23240D02*X34852Y23240D01* X34844Y23243D01* X34835Y23243D01* X34826Y23243D01* X34818Y23241D01* X34810Y23237D01* X34786Y23225D01* X34760Y23215D01* X34734Y23208D01* X34708Y23203D01* X34681Y23200D01* X34654Y23200D01* X34627Y23202D01* X34600Y23207D01* X34574Y23214D01* X34548Y23223D01* X34527Y23233D01* Y23766D01* X34543Y23774D01* X34569Y23784D01* X34595Y23791D01* X34621Y23796D01* X34648Y23799D01* X34675Y23799D01* X34702Y23797D01* X34729Y23793D01* X34755Y23785D01* X34781Y23776D01* X34805Y23764D01* X34813Y23761D01* X34822Y23759D01* X34831Y23759D01* X34839Y23760D01* X34848Y23762D01* X34852Y23765D01* Y23240D01* G37* G36* Y23853D02*X34852Y23853D01* X34820Y23868D01* X34786Y23881D01* X34751Y23890D01* X34715Y23896D01* X34679Y23899D01* X34643Y23899D01* X34607Y23895D01* X34571Y23889D01* X34537Y23879D01* X34527Y23875D01* Y25117D01* X34558Y25109D01* X34594Y25103D01* X34630Y25100D01* X34666Y25100D01* X34702Y25104D01* X34738Y25111D01* X34772Y25121D01* X34806Y25134D01* X34838Y25150D01* X34846Y25155D01* X34852Y25161D01* X34852Y25161D01* Y23853D01* G37* G36* Y25225D02*X34847Y25231D01* X34840Y25236D01* X34832Y25240D01* X34824Y25243D01* X34815Y25243D01* X34806Y25243D01* X34798Y25241D01* X34790Y25237D01* X34766Y25225D01* X34740Y25215D01* X34714Y25208D01* X34688Y25203D01* X34661Y25200D01* X34634Y25200D01* X34607Y25202D01* X34580Y25207D01* X34554Y25214D01* X34528Y25223D01* X34527Y25223D01* Y25776D01* X34549Y25784D01* X34575Y25791D01* X34601Y25796D01* X34628Y25799D01* X34655Y25799D01* X34682Y25797D01* X34709Y25793D01* X34735Y25785D01* X34761Y25776D01* X34785Y25764D01* X34793Y25761D01* X34802Y25759D01* X34811Y25759D01* X34819Y25760D01* X34828Y25762D01* X34835Y25766D01* X34842Y25772D01* X34848Y25778D01* X34852Y25784D01* Y25225D01* G37* G36* Y40000D02*X34932D01* Y35596D01* X34924Y35627D01* X34910Y35661D01* X34894Y35694D01* X34890Y35701D01* X34884Y35707D01* X34876Y35712D01* X34869Y35716D01* X34860Y35718D01* X34852Y35719D01* Y37289D01* X34860Y37293D01* X34867Y37298D01* X34873Y37305D01* X34878Y37312D01* X34893Y37344D01* X34906Y37378D01* X34915Y37413D01* X34921Y37449D01* X34924Y37485D01* X34924Y37521D01* X34920Y37557D01* X34914Y37593D01* X34904Y37627D01* X34890Y37661D01* X34874Y37694D01* X34870Y37701D01* X34864Y37707D01* X34856Y37712D01* X34852Y37714D01* Y39304D01* X34853Y39305D01* X34858Y39312D01* X34873Y39344D01* X34886Y39378D01* X34895Y39413D01* X34901Y39449D01* X34904Y39485D01* X34904Y39521D01* X34900Y39557D01* X34894Y39593D01* X34884Y39627D01* X34870Y39661D01* X34854Y39694D01* X34852Y39696D01* Y40000D01* G37* G36* X34932Y0D02*X34852D01* Y1101D01* X34870Y1100D01* X34906Y1100D01* X34932Y1103D01* Y0D01* G37* G36* Y1204D02*X34928Y1203D01* X34901Y1200D01* X34874Y1200D01* X34852Y1202D01* Y1798D01* X34868Y1799D01* X34895Y1799D01* X34922Y1797D01* X34932Y1795D01* Y1204D01* G37* G36* Y1897D02*X34899Y1899D01* X34863Y1899D01* X34852Y1898D01* Y3100D01* X34886Y3100D01* X34922Y3104D01* X34932Y3106D01* Y1897D01* G37* G36* Y3207D02*X34908Y3203D01* X34881Y3200D01* X34854Y3200D01* X34852Y3200D01* Y3799D01* X34875Y3799D01* X34902Y3797D01* X34929Y3793D01* X34932Y3792D01* Y3207D01* G37* G36* Y3893D02*X34915Y3896D01* X34879Y3899D01* X34852Y3899D01* Y5100D01* X34866Y5100D01* X34902Y5104D01* X34932Y5110D01* Y3893D01* G37* G36* Y5213D02*X34914Y5208D01* X34888Y5203D01* X34861Y5200D01* X34852Y5200D01* Y5799D01* X34855D01* X34882Y5797D01* X34909Y5793D01* X34932Y5786D01* Y5213D01* G37* G36* Y5890D02*X34931Y5890D01* X34895Y5896D01* X34859Y5899D01* X34852Y5899D01* Y7101D01* X34882Y7104D01* X34918Y7111D01* X34932Y7115D01* Y5890D01* G37* G36* Y7220D02*X34920Y7215D01* X34894Y7208D01* X34868Y7203D01* X34852Y7201D01* Y7798D01* X34862Y7797D01* X34889Y7793D01* X34915Y7785D01* X34932Y7779D01* Y7220D01* G37* G36* Y7884D02*X34911Y7890D01* X34875Y7896D01* X34852Y7898D01* Y9103D01* X34862Y9104D01* X34898Y9111D01* X34932Y9121D01* X34932D01* Y7884D01* G37* G36* Y9229D02*X34926Y9225D01* X34900Y9215D01* X34874Y9208D01* X34852Y9204D01* Y9795D01* X34869Y9793D01* X34895Y9785D01* X34921Y9776D01* X34932Y9771D01* Y9229D01* G37* G36* Y9878D02*X34926Y9881D01* X34891Y9890D01* X34855Y9896D01* X34852Y9897D01* Y11106D01* X34878Y11111D01* X34912Y11121D01* X34932Y11128D01* Y9878D01* G37* G36* Y11238D02*X34930Y11237D01* X34906Y11225D01* X34880Y11215D01* X34854Y11208D01* X34852Y11207D01* Y11792D01* X34875Y11785D01* X34901Y11776D01* X34925Y11764D01* X34932Y11762D01* Y11238D01* G37* G36* Y11871D02*X34906Y11881D01* X34871Y11890D01* X34852Y11893D01* Y13110D01* X34858Y13111D01* X34892Y13121D01* X34926Y13134D01* X34932Y13137D01* Y11871D01* G37* G36* Y13243D02*X34926Y13243D01* X34918Y13241D01* X34910Y13237D01* X34886Y13225D01* X34860Y13215D01* X34852Y13213D01* Y13786D01* X34855Y13785D01* X34881Y13776D01* X34905Y13764D01* X34913Y13761D01* X34922Y13759D01* X34931Y13759D01* X34932Y13759D01* Y13243D01* G37* G36* Y13862D02*X34920Y13868D01* X34886Y13881D01* X34852Y13890D01* Y15115D01* X34872Y15121D01* X34906Y15134D01* X34932Y15147D01* Y13862D01* G37* G36* Y15240D02*X34932Y15240D01* X34924Y15243D01* X34915Y15243D01* X34906Y15243D01* X34898Y15241D01* X34890Y15237D01* X34866Y15225D01* X34852Y15220D01* Y15779D01* X34861Y15776D01* X34885Y15764D01* X34893Y15761D01* X34902Y15759D01* X34911Y15759D01* X34919Y15760D01* X34928Y15762D01* X34932Y15765D01* Y15240D01* G37* G36* Y15853D02*X34932Y15853D01* X34900Y15868D01* X34866Y15881D01* X34852Y15884D01* Y17121D01* X34886Y17134D01* X34918Y17150D01* X34926Y17155D01* X34932Y17161D01* X34932Y17161D01* Y15853D01* G37* G36* Y17225D02*X34927Y17231D01* X34920Y17236D01* X34912Y17240D01* X34904Y17243D01* X34895Y17243D01* X34886Y17243D01* X34878Y17241D01* X34870Y17237D01* X34852Y17229D01* Y17771D01* X34865Y17764D01* X34873Y17761D01* X34882Y17759D01* X34891Y17759D01* X34899Y17760D01* X34908Y17762D01* X34915Y17766D01* X34922Y17772D01* X34928Y17778D01* X34932Y17784D01* Y17225D01* G37* G36* Y17833D02*X34931Y17835D01* X34926Y17842D01* X34920Y17848D01* X34912Y17853D01* X34880Y17868D01* X34852Y17878D01* Y19128D01* X34866Y19134D01* X34898Y19150D01* X34906Y19155D01* X34912Y19161D01* X34917Y19168D01* X34921Y19175D01* X34923Y19184D01* X34924Y19193D01* X34924Y19201D01* X34921Y19210D01* X34918Y19218D01* X34913Y19225D01* X34907Y19231D01* X34900Y19236D01* X34892Y19240D01* X34884Y19243D01* X34875Y19243D01* X34866Y19243D01* X34858Y19241D01* X34852Y19238D01* Y19762D01* X34853Y19761D01* X34862Y19759D01* X34871Y19759D01* X34879Y19760D01* X34888Y19762D01* X34895Y19766D01* X34902Y19772D01* X34908Y19778D01* X34913Y19785D01* X34916Y19793D01* X34918Y19802D01* X34919Y19810D01* X34918Y19819D01* X34915Y19827D01* X34911Y19835D01* X34906Y19842D01* X34900Y19848D01* X34892Y19853D01* X34860Y19868D01* X34852Y19871D01* Y21137D01* X34878Y21150D01* X34886Y21155D01* X34892Y21161D01* X34897Y21168D01* X34901Y21175D01* X34903Y21184D01* X34904Y21193D01* X34904Y21201D01* X34901Y21210D01* X34898Y21218D01* X34893Y21225D01* X34887Y21231D01* X34880Y21236D01* X34872Y21240D01* X34864Y21243D01* X34855Y21243D01* X34852Y21243D01* Y21759D01* X34859Y21760D01* X34868Y21762D01* X34875Y21766D01* X34882Y21772D01* X34888Y21778D01* X34893Y21785D01* X34896Y21793D01* X34898Y21802D01* X34899Y21810D01* X34898Y21819D01* X34895Y21827D01* X34891Y21835D01* X34886Y21842D01* X34880Y21848D01* X34872Y21853D01* X34852Y21862D01* Y23147D01* X34858Y23150D01* X34866Y23155D01* X34872Y23161D01* X34877Y23168D01* X34881Y23175D01* X34883Y23184D01* X34884Y23193D01* X34884Y23201D01* X34881Y23210D01* X34878Y23218D01* X34873Y23225D01* X34867Y23231D01* X34860Y23236D01* X34852Y23240D01* Y23765D01* X34855Y23766D01* X34862Y23772D01* X34868Y23778D01* X34873Y23785D01* X34876Y23793D01* X34878Y23802D01* X34879Y23810D01* X34878Y23819D01* X34875Y23827D01* X34871Y23835D01* X34866Y23842D01* X34860Y23848D01* X34852Y23853D01* Y25161D01* X34857Y25168D01* X34861Y25175D01* X34863Y25184D01* X34864Y25193D01* X34864Y25201D01* X34861Y25210D01* X34858Y25218D01* X34853Y25225D01* X34852Y25225D01* Y25784D01* X34853Y25785D01* X34856Y25793D01* X34858Y25802D01* X34859Y25810D01* X34858Y25819D01* X34855Y25827D01* X34852Y25833D01* Y31307D01* X34856Y31302D01* X34863Y31296D01* X34870Y31291D01* X34878Y31288D01* X34887Y31286D01* X34895Y31285D01* X34904Y31286D01* X34912Y31289D01* X34920Y31293D01* X34927Y31298D01* X34932Y31304D01* Y29714D01* X34929Y29716D01* X34920Y29718D01* X34912Y29719D01* X34903Y29719D01* X34894Y29717D01* X34886Y29713D01* X34879Y29708D01* X34873Y29702D01* X34868Y29695D01* X34864Y29687D01* X34862Y29679D01* X34861Y29670D01* X34861Y29661D01* X34863Y29653D01* X34867Y29645D01* X34879Y29621D01* X34889Y29595D01* X34896Y29569D01* X34901Y29543D01* X34904Y29516D01* X34904Y29489D01* X34902Y29462D01* X34897Y29435D01* X34890Y29409D01* X34881Y29383D01* X34869Y29359D01* X34866Y29351D01* X34864Y29342D01* X34864Y29333D01* X34865Y29325D01* X34867Y29317D01* X34871Y29309D01* X34876Y29302D01* X34883Y29296D01* X34890Y29291D01* X34898Y29288D01* X34907Y29286D01* X34915Y29285D01* X34924Y29286D01* X34932Y29289D01* X34932Y29289D01* Y27719D01* X34932Y27719D01* X34923Y27719D01* X34914Y27717D01* X34906Y27713D01* X34899Y27708D01* X34893Y27702D01* X34888Y27695D01* X34884Y27687D01* X34882Y27679D01* X34881Y27670D01* X34881Y27661D01* X34883Y27653D01* X34887Y27645D01* X34899Y27621D01* X34909Y27595D01* X34916Y27569D01* X34921Y27543D01* X34924Y27516D01* X34924Y27489D01* X34922Y27462D01* X34917Y27435D01* X34910Y27409D01* X34901Y27383D01* X34889Y27359D01* X34886Y27351D01* X34884Y27342D01* X34884Y27333D01* X34885Y27325D01* X34887Y27317D01* X34891Y27309D01* X34896Y27302D01* X34903Y27296D01* X34910Y27291D01* X34918Y27288D01* X34927Y27286D01* X34932Y27286D01* Y25716D01* X34926Y25713D01* X34919Y25708D01* X34913Y25702D01* X34908Y25695D01* X34904Y25687D01* X34902Y25679D01* X34901Y25670D01* X34901Y25661D01* X34903Y25653D01* X34907Y25645D01* X34919Y25621D01* X34929Y25595D01* X34932Y25583D01* Y25416D01* X34930Y25409D01* X34921Y25383D01* X34909Y25359D01* X34906Y25351D01* X34904Y25342D01* X34904Y25333D01* X34905Y25325D01* X34907Y25317D01* X34911Y25309D01* X34916Y25302D01* X34923Y25296D01* X34930Y25291D01* X34932Y25290D01* Y23701D01* X34928Y23695D01* X34924Y23687D01* X34922Y23679D01* X34921Y23670D01* X34921Y23661D01* X34923Y23653D01* X34927Y23645D01* X34932Y23634D01* Y23365D01* X34929Y23359D01* X34926Y23351D01* X34924Y23342D01* X34924Y23333D01* X34925Y23325D01* X34927Y23317D01* X34931Y23309D01* X34932Y23307D01* Y17833D01* G37* G36* Y31696D02*X34930Y31701D01* X34924Y31707D01* X34916Y31712D01* X34909Y31716D01* X34900Y31718D01* X34892Y31719D01* X34883Y31719D01* X34874Y31717D01* X34866Y31713D01* X34859Y31708D01* X34853Y31702D01* X34852Y31701D01* Y33290D01* X34858Y33288D01* X34867Y33286D01* X34875Y33285D01* X34884Y33286D01* X34892Y33289D01* X34900Y33293D01* X34907Y33298D01* X34913Y33305D01* X34918Y33312D01* X34932Y33343D01* Y31696D01* G37* G36* Y33656D02*X34930Y33661D01* X34914Y33694D01* X34910Y33701D01* X34904Y33707D01* X34896Y33712D01* X34889Y33716D01* X34880Y33718D01* X34872Y33719D01* X34863Y33719D01* X34854Y33717D01* X34852Y33716D01* Y35286D01* X34855Y35285D01* X34864Y35286D01* X34872Y35289D01* X34880Y35293D01* X34887Y35298D01* X34893Y35305D01* X34898Y35312D01* X34913Y35344D01* X34926Y35378D01* X34932Y35404D01* Y33656D01* G37* G36* Y40000D02*X35012D01* Y27596D01* X35004Y27627D01* X34990Y27661D01* X34974Y27694D01* X34970Y27701D01* X34964Y27707D01* X34956Y27712D01* X34949Y27716D01* X34940Y27718D01* X34932Y27719D01* Y29289D01* X34940Y29293D01* X34947Y29298D01* X34953Y29305D01* X34958Y29312D01* X34973Y29344D01* X34986Y29378D01* X34995Y29413D01* X35001Y29449D01* X35004Y29485D01* X35004Y29521D01* X35000Y29557D01* X34994Y29593D01* X34984Y29627D01* X34970Y29661D01* X34954Y29694D01* X34950Y29701D01* X34944Y29707D01* X34936Y29712D01* X34932Y29714D01* Y31304D01* X34933Y31305D01* X34938Y31312D01* X34953Y31344D01* X34966Y31378D01* X34975Y31413D01* X34981Y31449D01* X34984Y31485D01* X34984Y31521D01* X34980Y31557D01* X34974Y31593D01* X34964Y31627D01* X34950Y31661D01* X34934Y31694D01* X34932Y31696D01* Y33343D01* X34933Y33344D01* X34946Y33378D01* X34955Y33413D01* X34961Y33449D01* X34964Y33485D01* X34964Y33521D01* X34960Y33557D01* X34954Y33593D01* X34944Y33627D01* X34932Y33656D01* Y35404D01* X34935Y35413D01* X34941Y35449D01* X34944Y35485D01* X34944Y35521D01* X34940Y35557D01* X34934Y35593D01* X34932Y35596D01* Y40000D01* G37* G36* X35012Y0D02*X34932D01* Y1103D01* X34942Y1104D01* X34978Y1111D01* X35012Y1121D01* X35012D01* Y0D01* G37* G36* Y1229D02*X35006Y1225D01* X34980Y1215D01* X34954Y1208D01* X34932Y1204D01* Y1795D01* X34949Y1793D01* X34975Y1785D01* X35001Y1776D01* X35012Y1771D01* Y1229D01* G37* G36* Y1878D02*X35006Y1881D01* X34971Y1890D01* X34935Y1896D01* X34932Y1897D01* Y3106D01* X34958Y3111D01* X34992Y3121D01* X35012Y3128D01* Y1878D01* G37* G36* Y3238D02*X35010Y3237D01* X34986Y3225D01* X34960Y3215D01* X34934Y3208D01* X34932Y3207D01* Y3792D01* X34955Y3785D01* X34981Y3776D01* X35005Y3764D01* X35012Y3762D01* Y3238D01* G37* G36* Y3871D02*X34986Y3881D01* X34951Y3890D01* X34932Y3893D01* Y5110D01* X34938Y5111D01* X34972Y5121D01* X35006Y5134D01* X35012Y5137D01* Y3871D01* G37* G36* Y5243D02*X35006Y5243D01* X34998Y5241D01* X34990Y5237D01* X34966Y5225D01* X34940Y5215D01* X34932Y5213D01* Y5786D01* X34935Y5785D01* X34961Y5776D01* X34985Y5764D01* X34993Y5761D01* X35002Y5759D01* X35011Y5759D01* X35012Y5759D01* Y5243D01* G37* G36* Y5862D02*X35000Y5868D01* X34966Y5881D01* X34932Y5890D01* Y7115D01* X34952Y7121D01* X34986Y7134D01* X35012Y7147D01* Y5862D01* G37* G36* Y7240D02*X35012Y7240D01* X35004Y7243D01* X34995Y7243D01* X34986Y7243D01* X34978Y7241D01* X34970Y7237D01* X34946Y7225D01* X34932Y7220D01* Y7779D01* X34941Y7776D01* X34965Y7764D01* X34973Y7761D01* X34982Y7759D01* X34991Y7759D01* X34999Y7760D01* X35008Y7762D01* X35012Y7765D01* Y7240D01* G37* G36* Y7853D02*X35012Y7853D01* X34980Y7868D01* X34946Y7881D01* X34932Y7884D01* Y9121D01* X34966Y9134D01* X34998Y9150D01* X35006Y9155D01* X35012Y9161D01* X35012Y9161D01* Y7853D01* G37* G36* Y9225D02*X35007Y9231D01* X35000Y9236D01* X34992Y9240D01* X34984Y9243D01* X34975Y9243D01* X34966Y9243D01* X34958Y9241D01* X34950Y9237D01* X34932Y9229D01* Y9771D01* X34945Y9764D01* X34953Y9761D01* X34962Y9759D01* X34971Y9759D01* X34979Y9760D01* X34988Y9762D01* X34995Y9766D01* X35002Y9772D01* X35008Y9778D01* X35012Y9784D01* Y9225D01* G37* G36* Y9833D02*X35011Y9835D01* X35006Y9842D01* X35000Y9848D01* X34992Y9853D01* X34960Y9868D01* X34932Y9878D01* Y11128D01* X34946Y11134D01* X34978Y11150D01* X34986Y11155D01* X34992Y11161D01* X34997Y11168D01* X35001Y11175D01* X35003Y11184D01* X35004Y11193D01* X35004Y11201D01* X35001Y11210D01* X34998Y11218D01* X34993Y11225D01* X34987Y11231D01* X34980Y11236D01* X34972Y11240D01* X34964Y11243D01* X34955Y11243D01* X34946Y11243D01* X34938Y11241D01* X34932Y11238D01* Y11762D01* X34933Y11761D01* X34942Y11759D01* X34951Y11759D01* X34959Y11760D01* X34968Y11762D01* X34975Y11766D01* X34982Y11772D01* X34988Y11778D01* X34993Y11785D01* X34996Y11793D01* X34998Y11802D01* X34999Y11810D01* X34998Y11819D01* X34995Y11827D01* X34991Y11835D01* X34986Y11842D01* X34980Y11848D01* X34972Y11853D01* X34940Y11868D01* X34932Y11871D01* Y13137D01* X34958Y13150D01* X34966Y13155D01* X34972Y13161D01* X34977Y13168D01* X34981Y13175D01* X34983Y13184D01* X34984Y13193D01* X34984Y13201D01* X34981Y13210D01* X34978Y13218D01* X34973Y13225D01* X34967Y13231D01* X34960Y13236D01* X34952Y13240D01* X34944Y13243D01* X34935Y13243D01* X34932Y13243D01* Y13759D01* X34939Y13760D01* X34948Y13762D01* X34955Y13766D01* X34962Y13772D01* X34968Y13778D01* X34973Y13785D01* X34976Y13793D01* X34978Y13802D01* X34979Y13810D01* X34978Y13819D01* X34975Y13827D01* X34971Y13835D01* X34966Y13842D01* X34960Y13848D01* X34952Y13853D01* X34932Y13862D01* Y15147D01* X34938Y15150D01* X34946Y15155D01* X34952Y15161D01* X34957Y15168D01* X34961Y15175D01* X34963Y15184D01* X34964Y15193D01* X34964Y15201D01* X34961Y15210D01* X34958Y15218D01* X34953Y15225D01* X34947Y15231D01* X34940Y15236D01* X34932Y15240D01* Y15765D01* X34935Y15766D01* X34942Y15772D01* X34948Y15778D01* X34953Y15785D01* X34956Y15793D01* X34958Y15802D01* X34959Y15810D01* X34958Y15819D01* X34955Y15827D01* X34951Y15835D01* X34946Y15842D01* X34940Y15848D01* X34932Y15853D01* Y17161D01* X34937Y17168D01* X34941Y17175D01* X34943Y17184D01* X34944Y17193D01* X34944Y17201D01* X34941Y17210D01* X34938Y17218D01* X34933Y17225D01* X34932Y17225D01* Y17784D01* X34933Y17785D01* X34936Y17793D01* X34938Y17802D01* X34939Y17810D01* X34938Y17819D01* X34935Y17827D01* X34932Y17833D01* Y23307D01* X34936Y23302D01* X34943Y23296D01* X34950Y23291D01* X34958Y23288D01* X34967Y23286D01* X34975Y23285D01* X34984Y23286D01* X34992Y23289D01* X35000Y23293D01* X35007Y23298D01* X35012Y23304D01* Y21714D01* X35009Y21716D01* X35000Y21718D01* X34992Y21719D01* X34983Y21719D01* X34974Y21717D01* X34966Y21713D01* X34959Y21708D01* X34953Y21702D01* X34948Y21695D01* X34944Y21687D01* X34942Y21679D01* X34941Y21670D01* X34941Y21661D01* X34943Y21653D01* X34947Y21645D01* X34959Y21621D01* X34969Y21595D01* X34976Y21569D01* X34981Y21543D01* X34984Y21516D01* X34984Y21489D01* X34982Y21462D01* X34977Y21435D01* X34970Y21409D01* X34961Y21383D01* X34949Y21359D01* X34946Y21351D01* X34944Y21342D01* X34944Y21333D01* X34945Y21325D01* X34947Y21317D01* X34951Y21309D01* X34956Y21302D01* X34963Y21296D01* X34970Y21291D01* X34978Y21288D01* X34987Y21286D01* X34995Y21285D01* X35004Y21286D01* X35012Y21289D01* X35012Y21289D01* Y19719D01* X35012Y19719D01* X35003Y19719D01* X34994Y19717D01* X34986Y19713D01* X34979Y19708D01* X34973Y19702D01* X34968Y19695D01* X34964Y19687D01* X34962Y19679D01* X34961Y19670D01* X34961Y19661D01* X34963Y19653D01* X34967Y19645D01* X34979Y19621D01* X34989Y19595D01* X34996Y19569D01* X35001Y19543D01* X35004Y19516D01* X35004Y19489D01* X35002Y19462D01* X34997Y19435D01* X34990Y19409D01* X34981Y19383D01* X34969Y19359D01* X34966Y19351D01* X34964Y19342D01* X34964Y19333D01* X34965Y19325D01* X34967Y19317D01* X34971Y19309D01* X34976Y19302D01* X34983Y19296D01* X34990Y19291D01* X34998Y19288D01* X35007Y19286D01* X35012Y19286D01* Y17716D01* X35006Y17713D01* X34999Y17708D01* X34993Y17702D01* X34988Y17695D01* X34984Y17687D01* X34982Y17679D01* X34981Y17670D01* X34981Y17661D01* X34983Y17653D01* X34987Y17645D01* X34999Y17621D01* X35009Y17595D01* X35012Y17583D01* Y17416D01* X35010Y17409D01* X35001Y17383D01* X34989Y17359D01* X34986Y17351D01* X34984Y17342D01* X34984Y17333D01* X34985Y17325D01* X34987Y17317D01* X34991Y17309D01* X34996Y17302D01* X35003Y17296D01* X35010Y17291D01* X35012Y17290D01* Y15701D01* X35008Y15695D01* X35004Y15687D01* X35002Y15679D01* X35001Y15670D01* X35001Y15661D01* X35003Y15653D01* X35007Y15645D01* X35012Y15634D01* Y15365D01* X35009Y15359D01* X35006Y15351D01* X35004Y15342D01* X35004Y15333D01* X35005Y15325D01* X35007Y15317D01* X35011Y15309D01* X35012Y15307D01* Y9833D01* G37* G36* Y23696D02*X35010Y23701D01* X35004Y23707D01* X34996Y23712D01* X34989Y23716D01* X34980Y23718D01* X34972Y23719D01* X34963Y23719D01* X34954Y23717D01* X34946Y23713D01* X34939Y23708D01* X34933Y23702D01* X34932Y23701D01* Y25290D01* X34938Y25288D01* X34947Y25286D01* X34955Y25285D01* X34964Y25286D01* X34972Y25289D01* X34980Y25293D01* X34987Y25298D01* X34993Y25305D01* X34998Y25312D01* X35012Y25343D01* Y23696D01* G37* G36* Y25656D02*X35010Y25661D01* X34994Y25694D01* X34990Y25701D01* X34984Y25707D01* X34976Y25712D01* X34969Y25716D01* X34960Y25718D01* X34952Y25719D01* X34943Y25719D01* X34934Y25717D01* X34932Y25716D01* Y27286D01* X34935Y27285D01* X34944Y27286D01* X34952Y27289D01* X34960Y27293D01* X34967Y27298D01* X34973Y27305D01* X34978Y27312D01* X34993Y27344D01* X35006Y27378D01* X35012Y27404D01* Y25656D01* G37* G36* Y40000D02*X35092D01* Y19596D01* X35084Y19627D01* X35070Y19661D01* X35054Y19694D01* X35050Y19701D01* X35044Y19707D01* X35036Y19712D01* X35029Y19716D01* X35020Y19718D01* X35012Y19719D01* Y21289D01* X35020Y21293D01* X35027Y21298D01* X35033Y21305D01* X35038Y21312D01* X35053Y21344D01* X35066Y21378D01* X35075Y21413D01* X35081Y21449D01* X35084Y21485D01* X35084Y21521D01* X35080Y21557D01* X35074Y21593D01* X35064Y21627D01* X35050Y21661D01* X35034Y21694D01* X35030Y21701D01* X35024Y21707D01* X35016Y21712D01* X35012Y21714D01* Y23304D01* X35013Y23305D01* X35018Y23312D01* X35033Y23344D01* X35046Y23378D01* X35055Y23413D01* X35061Y23449D01* X35064Y23485D01* X35064Y23521D01* X35060Y23557D01* X35054Y23593D01* X35044Y23627D01* X35030Y23661D01* X35014Y23694D01* X35012Y23696D01* Y25343D01* X35013Y25344D01* X35026Y25378D01* X35035Y25413D01* X35041Y25449D01* X35044Y25485D01* X35044Y25521D01* X35040Y25557D01* X35034Y25593D01* X35024Y25627D01* X35012Y25656D01* Y27404D01* X35015Y27413D01* X35021Y27449D01* X35024Y27485D01* X35024Y27521D01* X35020Y27557D01* X35014Y27593D01* X35012Y27596D01* Y40000D01* G37* G36* X35092Y0D02*X35012D01* Y1121D01* X35046Y1134D01* X35078Y1150D01* X35086Y1155D01* X35092Y1161D01* X35092Y1161D01* Y0D01* G37* G36* Y1225D02*X35087Y1231D01* X35080Y1236D01* X35072Y1240D01* X35064Y1243D01* X35055Y1243D01* X35046Y1243D01* X35038Y1241D01* X35030Y1237D01* X35012Y1229D01* Y1771D01* X35025Y1764D01* X35033Y1761D01* X35042Y1759D01* X35051Y1759D01* X35059Y1760D01* X35068Y1762D01* X35075Y1766D01* X35082Y1772D01* X35088Y1778D01* X35092Y1784D01* Y1225D01* G37* G36* Y1833D02*X35091Y1835D01* X35086Y1842D01* X35080Y1848D01* X35072Y1853D01* X35040Y1868D01* X35012Y1878D01* Y3128D01* X35026Y3134D01* X35058Y3150D01* X35066Y3155D01* X35072Y3161D01* X35077Y3168D01* X35081Y3175D01* X35083Y3184D01* X35084Y3193D01* X35084Y3201D01* X35081Y3210D01* X35078Y3218D01* X35073Y3225D01* X35067Y3231D01* X35060Y3236D01* X35052Y3240D01* X35044Y3243D01* X35035Y3243D01* X35026Y3243D01* X35018Y3241D01* X35012Y3238D01* Y3762D01* X35013Y3761D01* X35022Y3759D01* X35031Y3759D01* X35039Y3760D01* X35048Y3762D01* X35055Y3766D01* X35062Y3772D01* X35068Y3778D01* X35073Y3785D01* X35076Y3793D01* X35078Y3802D01* X35079Y3810D01* X35078Y3819D01* X35075Y3827D01* X35071Y3835D01* X35066Y3842D01* X35060Y3848D01* X35052Y3853D01* X35020Y3868D01* X35012Y3871D01* Y5137D01* X35038Y5150D01* X35046Y5155D01* X35052Y5161D01* X35057Y5168D01* X35061Y5175D01* X35063Y5184D01* X35064Y5193D01* X35064Y5201D01* X35061Y5210D01* X35058Y5218D01* X35053Y5225D01* X35047Y5231D01* X35040Y5236D01* X35032Y5240D01* X35024Y5243D01* X35015Y5243D01* X35012Y5243D01* Y5759D01* X35019Y5760D01* X35028Y5762D01* X35035Y5766D01* X35042Y5772D01* X35048Y5778D01* X35053Y5785D01* X35056Y5793D01* X35058Y5802D01* X35059Y5810D01* X35058Y5819D01* X35055Y5827D01* X35051Y5835D01* X35046Y5842D01* X35040Y5848D01* X35032Y5853D01* X35012Y5862D01* Y7147D01* X35018Y7150D01* X35026Y7155D01* X35032Y7161D01* X35037Y7168D01* X35041Y7175D01* X35043Y7184D01* X35044Y7193D01* X35044Y7201D01* X35041Y7210D01* X35038Y7218D01* X35033Y7225D01* X35027Y7231D01* X35020Y7236D01* X35012Y7240D01* Y7765D01* X35015Y7766D01* X35022Y7772D01* X35028Y7778D01* X35033Y7785D01* X35036Y7793D01* X35038Y7802D01* X35039Y7810D01* X35038Y7819D01* X35035Y7827D01* X35031Y7835D01* X35026Y7842D01* X35020Y7848D01* X35012Y7853D01* Y9161D01* X35017Y9168D01* X35021Y9175D01* X35023Y9184D01* X35024Y9193D01* X35024Y9201D01* X35021Y9210D01* X35018Y9218D01* X35013Y9225D01* X35012Y9225D01* Y9784D01* X35013Y9785D01* X35016Y9793D01* X35018Y9802D01* X35019Y9810D01* X35018Y9819D01* X35015Y9827D01* X35012Y9833D01* Y15307D01* X35016Y15302D01* X35023Y15296D01* X35030Y15291D01* X35038Y15288D01* X35047Y15286D01* X35055Y15285D01* X35064Y15286D01* X35072Y15289D01* X35080Y15293D01* X35087Y15298D01* X35092Y15304D01* Y13714D01* X35089Y13716D01* X35080Y13718D01* X35072Y13719D01* X35063Y13719D01* X35054Y13717D01* X35046Y13713D01* X35039Y13708D01* X35033Y13702D01* X35028Y13695D01* X35024Y13687D01* X35022Y13679D01* X35021Y13670D01* X35021Y13661D01* X35023Y13653D01* X35027Y13645D01* X35039Y13621D01* X35049Y13595D01* X35056Y13569D01* X35061Y13543D01* X35064Y13516D01* X35064Y13489D01* X35062Y13462D01* X35057Y13435D01* X35050Y13409D01* X35041Y13383D01* X35029Y13359D01* X35026Y13351D01* X35024Y13342D01* X35024Y13333D01* X35025Y13325D01* X35027Y13317D01* X35031Y13309D01* X35036Y13302D01* X35043Y13296D01* X35050Y13291D01* X35058Y13288D01* X35067Y13286D01* X35075Y13285D01* X35084Y13286D01* X35092Y13289D01* X35092Y13289D01* Y11719D01* X35092Y11719D01* X35083Y11719D01* X35074Y11717D01* X35066Y11713D01* X35059Y11708D01* X35053Y11702D01* X35048Y11695D01* X35044Y11687D01* X35042Y11679D01* X35041Y11670D01* X35041Y11661D01* X35043Y11653D01* X35047Y11645D01* X35059Y11621D01* X35069Y11595D01* X35076Y11569D01* X35081Y11543D01* X35084Y11516D01* X35084Y11489D01* X35082Y11462D01* X35077Y11435D01* X35070Y11409D01* X35061Y11383D01* X35049Y11359D01* X35046Y11351D01* X35044Y11342D01* X35044Y11333D01* X35045Y11325D01* X35047Y11317D01* X35051Y11309D01* X35056Y11302D01* X35063Y11296D01* X35070Y11291D01* X35078Y11288D01* X35087Y11286D01* X35092Y11286D01* Y9716D01* X35086Y9713D01* X35079Y9708D01* X35073Y9702D01* X35068Y9695D01* X35064Y9687D01* X35062Y9679D01* X35061Y9670D01* X35061Y9661D01* X35063Y9653D01* X35067Y9645D01* X35079Y9621D01* X35089Y9595D01* X35092Y9583D01* Y9416D01* X35090Y9409D01* X35081Y9383D01* X35069Y9359D01* X35066Y9351D01* X35064Y9342D01* X35064Y9333D01* X35065Y9325D01* X35067Y9317D01* X35071Y9309D01* X35076Y9302D01* X35083Y9296D01* X35090Y9291D01* X35092Y9290D01* Y7701D01* X35088Y7695D01* X35084Y7687D01* X35082Y7679D01* X35081Y7670D01* X35081Y7661D01* X35083Y7653D01* X35087Y7645D01* X35092Y7634D01* Y7365D01* X35089Y7359D01* X35086Y7351D01* X35084Y7342D01* X35084Y7333D01* X35085Y7325D01* X35087Y7317D01* X35091Y7309D01* X35092Y7307D01* Y1833D01* G37* G36* Y15696D02*X35090Y15701D01* X35084Y15707D01* X35076Y15712D01* X35069Y15716D01* X35060Y15718D01* X35052Y15719D01* X35043Y15719D01* X35034Y15717D01* X35026Y15713D01* X35019Y15708D01* X35013Y15702D01* X35012Y15701D01* Y17290D01* X35018Y17288D01* X35027Y17286D01* X35035Y17285D01* X35044Y17286D01* X35052Y17289D01* X35060Y17293D01* X35067Y17298D01* X35073Y17305D01* X35078Y17312D01* X35092Y17343D01* Y15696D01* G37* G36* Y17656D02*X35090Y17661D01* X35074Y17694D01* X35070Y17701D01* X35064Y17707D01* X35056Y17712D01* X35049Y17716D01* X35040Y17718D01* X35032Y17719D01* X35023Y17719D01* X35014Y17717D01* X35012Y17716D01* Y19286D01* X35015Y19285D01* X35024Y19286D01* X35032Y19289D01* X35040Y19293D01* X35047Y19298D01* X35053Y19305D01* X35058Y19312D01* X35073Y19344D01* X35086Y19378D01* X35092Y19404D01* Y17656D01* G37* G36* Y40000D02*X35172D01* Y11596D01* X35164Y11627D01* X35150Y11661D01* X35134Y11694D01* X35130Y11701D01* X35124Y11707D01* X35116Y11712D01* X35109Y11716D01* X35100Y11718D01* X35092Y11719D01* Y13289D01* X35100Y13293D01* X35107Y13298D01* X35113Y13305D01* X35118Y13312D01* X35133Y13344D01* X35146Y13378D01* X35155Y13413D01* X35161Y13449D01* X35164Y13485D01* X35164Y13521D01* X35160Y13557D01* X35154Y13593D01* X35144Y13627D01* X35130Y13661D01* X35114Y13694D01* X35110Y13701D01* X35104Y13707D01* X35096Y13712D01* X35092Y13714D01* Y15304D01* X35093Y15305D01* X35098Y15312D01* X35113Y15344D01* X35126Y15378D01* X35135Y15413D01* X35141Y15449D01* X35144Y15485D01* X35144Y15521D01* X35140Y15557D01* X35134Y15593D01* X35124Y15627D01* X35110Y15661D01* X35094Y15694D01* X35092Y15696D01* Y17343D01* X35093Y17344D01* X35106Y17378D01* X35115Y17413D01* X35121Y17449D01* X35124Y17485D01* X35124Y17521D01* X35120Y17557D01* X35114Y17593D01* X35104Y17627D01* X35092Y17656D01* Y19404D01* X35095Y19413D01* X35101Y19449D01* X35104Y19485D01* X35104Y19521D01* X35100Y19557D01* X35094Y19593D01* X35092Y19596D01* Y40000D01* G37* G36* X35172Y0D02*X35092D01* Y1161D01* X35097Y1168D01* X35101Y1175D01* X35103Y1184D01* X35104Y1193D01* X35104Y1201D01* X35101Y1210D01* X35098Y1218D01* X35093Y1225D01* X35092Y1225D01* Y1784D01* X35093Y1785D01* X35096Y1793D01* X35098Y1802D01* X35099Y1810D01* X35098Y1819D01* X35095Y1827D01* X35092Y1833D01* Y7307D01* X35096Y7302D01* X35103Y7296D01* X35110Y7291D01* X35118Y7288D01* X35127Y7286D01* X35135Y7285D01* X35144Y7286D01* X35152Y7289D01* X35160Y7293D01* X35167Y7298D01* X35172Y7304D01* Y5714D01* X35169Y5716D01* X35160Y5718D01* X35152Y5719D01* X35143Y5719D01* X35134Y5717D01* X35126Y5713D01* X35119Y5708D01* X35113Y5702D01* X35108Y5695D01* X35104Y5687D01* X35102Y5679D01* X35101Y5670D01* X35101Y5661D01* X35103Y5653D01* X35107Y5645D01* X35119Y5621D01* X35129Y5595D01* X35136Y5569D01* X35141Y5543D01* X35144Y5516D01* X35144Y5489D01* X35142Y5462D01* X35137Y5435D01* X35130Y5409D01* X35121Y5383D01* X35109Y5359D01* X35106Y5351D01* X35104Y5342D01* X35104Y5333D01* X35105Y5325D01* X35107Y5317D01* X35111Y5309D01* X35116Y5302D01* X35123Y5296D01* X35130Y5291D01* X35138Y5288D01* X35147Y5286D01* X35155Y5285D01* X35164Y5286D01* X35172Y5289D01* X35172Y5289D01* Y3719D01* X35172Y3719D01* X35163Y3719D01* X35154Y3717D01* X35146Y3713D01* X35139Y3708D01* X35133Y3702D01* X35128Y3695D01* X35124Y3687D01* X35122Y3679D01* X35121Y3670D01* X35121Y3661D01* X35123Y3653D01* X35127Y3645D01* X35139Y3621D01* X35149Y3595D01* X35156Y3569D01* X35161Y3543D01* X35164Y3516D01* X35164Y3489D01* X35162Y3462D01* X35157Y3435D01* X35150Y3409D01* X35141Y3383D01* X35129Y3359D01* X35126Y3351D01* X35124Y3342D01* X35124Y3333D01* X35125Y3325D01* X35127Y3317D01* X35131Y3309D01* X35136Y3302D01* X35143Y3296D01* X35150Y3291D01* X35158Y3288D01* X35167Y3286D01* X35172Y3286D01* Y1716D01* X35166Y1713D01* X35159Y1708D01* X35153Y1702D01* X35148Y1695D01* X35144Y1687D01* X35142Y1679D01* X35141Y1670D01* X35141Y1661D01* X35143Y1653D01* X35147Y1645D01* X35159Y1621D01* X35169Y1595D01* X35172Y1583D01* Y1416D01* X35170Y1409D01* X35161Y1383D01* X35149Y1359D01* X35146Y1351D01* X35144Y1342D01* X35144Y1333D01* X35145Y1325D01* X35147Y1317D01* X35151Y1309D01* X35156Y1302D01* X35163Y1296D01* X35170Y1291D01* X35172Y1290D01* Y0D01* G37* G36* Y7696D02*X35170Y7701D01* X35164Y7707D01* X35156Y7712D01* X35149Y7716D01* X35140Y7718D01* X35132Y7719D01* X35123Y7719D01* X35114Y7717D01* X35106Y7713D01* X35099Y7708D01* X35093Y7702D01* X35092Y7701D01* Y9290D01* X35098Y9288D01* X35107Y9286D01* X35115Y9285D01* X35124Y9286D01* X35132Y9289D01* X35140Y9293D01* X35147Y9298D01* X35153Y9305D01* X35158Y9312D01* X35172Y9343D01* Y7696D01* G37* G36* Y9656D02*X35170Y9661D01* X35154Y9694D01* X35150Y9701D01* X35144Y9707D01* X35136Y9712D01* X35129Y9716D01* X35120Y9718D01* X35112Y9719D01* X35103Y9719D01* X35094Y9717D01* X35092Y9716D01* Y11286D01* X35095Y11285D01* X35104Y11286D01* X35112Y11289D01* X35120Y11293D01* X35127Y11298D01* X35133Y11305D01* X35138Y11312D01* X35153Y11344D01* X35166Y11378D01* X35172Y11404D01* Y9656D01* G37* G36* Y40000D02*X40000D01* Y0D01* X35172D01* Y1290D01* X35178Y1288D01* X35187Y1286D01* X35195Y1285D01* X35204Y1286D01* X35212Y1289D01* X35220Y1293D01* X35227Y1298D01* X35233Y1305D01* X35238Y1312D01* X35253Y1344D01* X35266Y1378D01* X35275Y1413D01* X35281Y1449D01* X35284Y1485D01* X35284Y1521D01* X35280Y1557D01* X35274Y1593D01* X35264Y1627D01* X35250Y1661D01* X35234Y1694D01* X35230Y1701D01* X35224Y1707D01* X35216Y1712D01* X35209Y1716D01* X35200Y1718D01* X35192Y1719D01* X35183Y1719D01* X35174Y1717D01* X35172Y1716D01* Y3286D01* X35175Y3285D01* X35184Y3286D01* X35192Y3289D01* X35200Y3293D01* X35207Y3298D01* X35213Y3305D01* X35218Y3312D01* X35233Y3344D01* X35246Y3378D01* X35255Y3413D01* X35261Y3449D01* X35264Y3485D01* X35264Y3521D01* X35260Y3557D01* X35254Y3593D01* X35244Y3627D01* X35230Y3661D01* X35214Y3694D01* X35210Y3701D01* X35204Y3707D01* X35196Y3712D01* X35189Y3716D01* X35180Y3718D01* X35172Y3719D01* Y5289D01* X35180Y5293D01* X35187Y5298D01* X35193Y5305D01* X35198Y5312D01* X35213Y5344D01* X35226Y5378D01* X35235Y5413D01* X35241Y5449D01* X35244Y5485D01* X35244Y5521D01* X35240Y5557D01* X35234Y5593D01* X35224Y5627D01* X35210Y5661D01* X35194Y5694D01* X35190Y5701D01* X35184Y5707D01* X35176Y5712D01* X35172Y5714D01* Y7304D01* X35173Y7305D01* X35178Y7312D01* X35193Y7344D01* X35206Y7378D01* X35215Y7413D01* X35221Y7449D01* X35224Y7485D01* X35224Y7521D01* X35220Y7557D01* X35214Y7593D01* X35204Y7627D01* X35190Y7661D01* X35174Y7694D01* X35172Y7696D01* Y9343D01* X35173Y9344D01* X35186Y9378D01* X35195Y9413D01* X35201Y9449D01* X35204Y9485D01* X35204Y9521D01* X35200Y9557D01* X35194Y9593D01* X35184Y9627D01* X35172Y9656D01* Y11404D01* X35175Y11413D01* X35181Y11449D01* X35184Y11485D01* X35184Y11521D01* X35180Y11557D01* X35174Y11593D01* X35172Y11596D01* Y40000D01* G37* G36* Y1583D02*X35176Y1569D01* X35181Y1543D01* X35184Y1516D01* X35184Y1489D01* X35182Y1462D01* X35177Y1435D01* X35172Y1416D01* Y1583D01* G37* G36* X35092Y9583D02*X35096Y9569D01* X35101Y9543D01* X35104Y9516D01* X35104Y9489D01* X35102Y9462D01* X35097Y9435D01* X35092Y9416D01* Y9583D01* G37* G36* Y7634D02*X35099Y7621D01* X35109Y7595D01* X35116Y7569D01* X35121Y7543D01* X35124Y7516D01* X35124Y7489D01* X35122Y7462D01* X35117Y7435D01* X35110Y7409D01* X35101Y7383D01* X35092Y7365D01* Y7634D01* G37* G36* X35012Y17583D02*X35016Y17569D01* X35021Y17543D01* X35024Y17516D01* X35024Y17489D01* X35022Y17462D01* X35017Y17435D01* X35012Y17416D01* Y17583D01* G37* G36* Y15634D02*X35019Y15621D01* X35029Y15595D01* X35036Y15569D01* X35041Y15543D01* X35044Y15516D01* X35044Y15489D01* X35042Y15462D01* X35037Y15435D01* X35030Y15409D01* X35021Y15383D01* X35012Y15365D01* Y15634D01* G37* G36* X34932Y25583D02*X34936Y25569D01* X34941Y25543D01* X34944Y25516D01* X34944Y25489D01* X34942Y25462D01* X34937Y25435D01* X34932Y25416D01* Y25583D01* G37* G36* Y23634D02*X34939Y23621D01* X34949Y23595D01* X34956Y23569D01* X34961Y23543D01* X34964Y23516D01* X34964Y23489D01* X34962Y23462D01* X34957Y23435D01* X34950Y23409D01* X34941Y23383D01* X34932Y23365D01* Y23634D01* G37* G36* X34852Y33583D02*X34856Y33569D01* X34861Y33543D01* X34864Y33516D01* X34864Y33489D01* X34862Y33462D01* X34857Y33435D01* X34852Y33416D01* Y33583D01* G37* G36* Y31634D02*X34859Y31621D01* X34869Y31595D01* X34876Y31569D01* X34881Y31543D01* X34884Y31516D01* X34884Y31489D01* X34882Y31462D01* X34877Y31435D01* X34870Y31409D01* X34861Y31383D01* X34852Y31365D01* Y31634D01* G37* G36* X32832Y35583D02*X32836Y35569D01* X32841Y35543D01* X32844Y35516D01* X32844Y35489D01* X32842Y35462D01* X32837Y35435D01* X32832Y35416D01* Y35583D01* G37* G36* Y33634D02*X32839Y33621D01* X32849Y33595D01* X32856Y33569D01* X32861Y33543D01* X32864Y33516D01* X32864Y33489D01* X32862Y33462D01* X32857Y33435D01* X32850Y33409D01* X32841Y33383D01* X32832Y33365D01* Y33634D01* G37* G36* X30832Y35583D02*X30836Y35569D01* X30841Y35543D01* X30844Y35516D01* X30844Y35489D01* X30842Y35462D01* X30837Y35435D01* X30832Y35416D01* Y35583D01* G37* G36* Y33634D02*X30839Y33621D01* X30849Y33595D01* X30856Y33569D01* X30861Y33543D01* X30864Y33516D01* X30864Y33489D01* X30862Y33462D01* X30857Y33435D01* X30850Y33409D01* X30841Y33383D01* X30832Y33365D01* Y33634D01* G37* G36* X28992Y19583D02*X28996Y19569D01* X29001Y19543D01* X29004Y19516D01* X29004Y19489D01* X29002Y19462D01* X28997Y19435D01* X28992Y19416D01* Y19583D01* G37* G36* Y17634D02*X28999Y17621D01* X29009Y17595D01* X29016Y17569D01* X29021Y17543D01* X29024Y17516D01* X29024Y17489D01* X29022Y17462D01* X29017Y17435D01* X29010Y17409D01* X29001Y17383D01* X28992Y17365D01* Y17634D01* G37* G36* X28912Y27583D02*X28916Y27569D01* X28921Y27543D01* X28924Y27516D01* X28924Y27489D01* X28922Y27462D01* X28917Y27435D01* X28912Y27416D01* Y27583D01* G37* G36* Y25634D02*X28919Y25621D01* X28929Y25595D01* X28936Y25569D01* X28941Y25543D01* X28944Y25516D01* X28944Y25489D01* X28942Y25462D01* X28937Y25435D01* X28930Y25409D01* X28921Y25383D01* X28912Y25365D01* Y25634D01* G37* G36* X28832Y35583D02*X28836Y35569D01* X28841Y35543D01* X28844Y35516D01* X28844Y35489D01* X28842Y35462D01* X28837Y35435D01* X28832Y35416D01* Y35583D01* G37* G36* Y33634D02*X28839Y33621D01* X28849Y33595D01* X28856Y33569D01* X28861Y33543D01* X28864Y33516D01* X28864Y33489D01* X28862Y33462D01* X28857Y33435D01* X28850Y33409D01* X28841Y33383D01* X28832Y33365D01* Y33634D01* G37* G36* X26832Y35583D02*X26836Y35569D01* X26841Y35543D01* X26844Y35516D01* X26844Y35489D01* X26842Y35462D01* X26837Y35435D01* X26832Y35416D01* Y35583D01* G37* G36* Y33634D02*X26839Y33621D01* X26849Y33595D01* X26856Y33569D01* X26861Y33543D01* X26864Y33516D01* X26864Y33489D01* X26862Y33462D01* X26857Y33435D01* X26850Y33409D01* X26841Y33383D01* X26832Y33365D01* Y33634D01* G37* G36* X24832Y35583D02*X24836Y35569D01* X24841Y35543D01* X24844Y35516D01* X24844Y35489D01* X24842Y35462D01* X24837Y35435D01* X24832Y35416D01* Y35583D01* G37* G36* Y33634D02*X24839Y33621D01* X24849Y33595D01* X24856Y33569D01* X24861Y33543D01* X24864Y33516D01* X24864Y33489D01* X24862Y33462D01* X24857Y33435D01* X24850Y33409D01* X24841Y33383D01* X24832Y33365D01* Y33634D01* G37* G36* X22992Y19583D02*X22996Y19569D01* X23001Y19543D01* X23004Y19516D01* X23004Y19489D01* X23002Y19462D01* X22997Y19435D01* X22992Y19416D01* Y19583D01* G37* G36* Y17634D02*X22999Y17621D01* X23009Y17595D01* X23016Y17569D01* X23021Y17543D01* X23024Y17516D01* X23024Y17489D01* X23022Y17462D01* X23017Y17435D01* X23010Y17409D01* X23001Y17383D01* X22992Y17365D01* Y17634D01* G37* G36* X22912Y27583D02*X22916Y27569D01* X22921Y27543D01* X22924Y27516D01* X22924Y27489D01* X22922Y27462D01* X22917Y27435D01* X22912Y27416D01* Y27583D01* G37* G36* Y25634D02*X22919Y25621D01* X22929Y25595D01* X22936Y25569D01* X22941Y25543D01* X22944Y25516D01* X22944Y25489D01* X22942Y25462D01* X22937Y25435D01* X22930Y25409D01* X22921Y25383D01* X22912Y25365D01* Y25634D01* G37* G36* X22832Y35583D02*X22836Y35569D01* X22841Y35543D01* X22844Y35516D01* X22844Y35489D01* X22842Y35462D01* X22837Y35435D01* X22832Y35416D01* Y35583D01* G37* G36* Y33634D02*X22839Y33621D01* X22849Y33595D01* X22856Y33569D01* X22861Y33543D01* X22864Y33516D01* X22864Y33489D01* X22862Y33462D01* X22857Y33435D01* X22850Y33409D01* X22841Y33383D01* X22832Y33365D01* Y33634D01* G37* G36* X21112Y7583D02*X21116Y7569D01* X21121Y7543D01* X21124Y7516D01* X21124Y7489D01* X21122Y7462D01* X21117Y7435D01* X21112Y7416D01* Y7583D01* G37* G36* Y5634D02*X21119Y5621D01* X21129Y5595D01* X21136Y5569D01* X21141Y5543D01* X21144Y5516D01* X21144Y5489D01* X21142Y5462D01* X21137Y5435D01* X21130Y5409D01* X21121Y5383D01* X21112Y5365D01* Y5634D01* G37* G36* X21032Y15583D02*X21036Y15569D01* X21041Y15543D01* X21044Y15516D01* X21044Y15489D01* X21042Y15462D01* X21037Y15435D01* X21032Y15416D01* Y15583D01* G37* G36* Y13634D02*X21039Y13621D01* X21049Y13595D01* X21056Y13569D01* X21061Y13543D01* X21064Y13516D01* X21064Y13489D01* X21062Y13462D01* X21057Y13435D01* X21050Y13409D01* X21041Y13383D01* X21032Y13365D01* Y13634D01* G37* G36* X20952Y23583D02*X20956Y23569D01* X20961Y23543D01* X20964Y23516D01* X20964Y23489D01* X20962Y23462D01* X20957Y23435D01* X20952Y23416D01* Y23583D01* G37* G36* Y21634D02*X20959Y21621D01* X20969Y21595D01* X20976Y21569D01* X20981Y21543D01* X20984Y21516D01* X20984Y21489D01* X20982Y21462D01* X20977Y21435D01* X20970Y21409D01* X20961Y21383D01* X20952Y21365D01* Y21634D01* G37* G36* X20872Y31583D02*X20876Y31569D01* X20881Y31543D01* X20884Y31516D01* X20884Y31489D01* X20882Y31462D01* X20877Y31435D01* X20872Y31416D01* Y31583D01* G37* G36* Y29634D02*X20879Y29621D01* X20889Y29595D01* X20896Y29569D01* X20901Y29543D01* X20904Y29516D01* X20904Y29489D01* X20902Y29462D01* X20897Y29435D01* X20890Y29409D01* X20881Y29383D01* X20872Y29365D01* Y29634D01* G37* G36* X19152Y3583D02*X19156Y3569D01* X19161Y3543D01* X19164Y3516D01* X19164Y3489D01* X19162Y3462D01* X19157Y3435D01* X19152Y3416D01* Y3583D01* G37* G36* Y1634D02*X19159Y1621D01* X19169Y1595D01* X19176Y1569D01* X19181Y1543D01* X19184Y1516D01* X19184Y1489D01* X19182Y1462D01* X19177Y1435D01* X19170Y1409D01* X19161Y1383D01* X19152Y1365D01* Y1634D01* G37* G36* X19072Y11583D02*X19076Y11569D01* X19081Y11543D01* X19084Y11516D01* X19084Y11489D01* X19082Y11462D01* X19077Y11435D01* X19072Y11416D01* Y11583D01* G37* G36* Y9634D02*X19079Y9621D01* X19089Y9595D01* X19096Y9569D01* X19101Y9543D01* X19104Y9516D01* X19104Y9489D01* X19102Y9462D01* X19097Y9435D01* X19090Y9409D01* X19081Y9383D01* X19072Y9365D01* Y9634D01* G37* G36* X18992Y19583D02*X18996Y19569D01* X19001Y19543D01* X19004Y19516D01* X19004Y19489D01* X19002Y19462D01* X18997Y19435D01* X18992Y19416D01* Y19583D01* G37* G36* Y17634D02*X18999Y17621D01* X19009Y17595D01* X19016Y17569D01* X19021Y17543D01* X19024Y17516D01* X19024Y17489D01* X19022Y17462D01* X19017Y17435D01* X19010Y17409D01* X19001Y17383D01* X18992Y17365D01* Y17634D01* G37* G36* X17152Y3583D02*X17156Y3569D01* X17161Y3543D01* X17164Y3516D01* X17164Y3489D01* X17162Y3462D01* X17157Y3435D01* X17152Y3416D01* Y3583D01* G37* G36* Y1634D02*X17159Y1621D01* X17169Y1595D01* X17176Y1569D01* X17181Y1543D01* X17184Y1516D01* X17184Y1489D01* X17182Y1462D01* X17177Y1435D01* X17170Y1409D01* X17161Y1383D01* X17152Y1365D01* Y1634D01* G37* G36* X17072Y11583D02*X17076Y11569D01* X17081Y11543D01* X17084Y11516D01* X17084Y11489D01* X17082Y11462D01* X17077Y11435D01* X17072Y11416D01* Y11583D01* G37* G36* Y9634D02*X17079Y9621D01* X17089Y9595D01* X17096Y9569D01* X17101Y9543D01* X17104Y9516D01* X17104Y9489D01* X17102Y9462D01* X17097Y9435D01* X17090Y9409D01* X17081Y9383D01* X17072Y9365D01* Y9634D01* G37* G36* X16992Y19583D02*X16996Y19569D01* X17001Y19543D01* X17004Y19516D01* X17004Y19489D01* X17002Y19462D01* X16997Y19435D01* X16992Y19416D01* Y19583D01* G37* G36* Y17634D02*X16999Y17621D01* X17009Y17595D01* X17016Y17569D01* X17021Y17543D01* X17024Y17516D01* X17024Y17489D01* X17022Y17462D01* X17017Y17435D01* X17010Y17409D01* X17001Y17383D01* X16992Y17365D01* Y17634D01* G37* G36* X15152Y3583D02*X15156Y3569D01* X15161Y3543D01* X15164Y3516D01* X15164Y3489D01* X15162Y3462D01* X15157Y3435D01* X15152Y3416D01* Y3583D01* G37* G36* Y1634D02*X15159Y1621D01* X15169Y1595D01* X15176Y1569D01* X15181Y1543D01* X15184Y1516D01* X15184Y1489D01* X15182Y1462D01* X15177Y1435D01* X15170Y1409D01* X15161Y1383D01* X15152Y1365D01* Y1634D01* G37* G36* X15072Y11583D02*X15076Y11569D01* X15081Y11543D01* X15084Y11516D01* X15084Y11489D01* X15082Y11462D01* X15077Y11435D01* X15072Y11416D01* Y11583D01* G37* G36* Y9634D02*X15079Y9621D01* X15089Y9595D01* X15096Y9569D01* X15101Y9543D01* X15104Y9516D01* X15104Y9489D01* X15102Y9462D01* X15097Y9435D01* X15090Y9409D01* X15081Y9383D01* X15072Y9365D01* Y9634D01* G37* G36* X14992Y19583D02*X14996Y19569D01* X15001Y19543D01* X15004Y19516D01* X15004Y19489D01* X15002Y19462D01* X14997Y19435D01* X14992Y19416D01* Y19583D01* G37* G36* Y17634D02*X14999Y17621D01* X15009Y17595D01* X15016Y17569D01* X15021Y17543D01* X15024Y17516D01* X15024Y17489D01* X15022Y17462D01* X15017Y17435D01* X15010Y17409D01* X15001Y17383D01* X14992Y17365D01* Y17634D01* G37* G36* X13112Y7583D02*X13116Y7569D01* X13121Y7543D01* X13124Y7516D01* X13124Y7489D01* X13122Y7462D01* X13117Y7435D01* X13112Y7416D01* Y7583D01* G37* G36* Y5634D02*X13119Y5621D01* X13129Y5595D01* X13136Y5569D01* X13141Y5543D01* X13144Y5516D01* X13144Y5489D01* X13142Y5462D01* X13137Y5435D01* X13130Y5409D01* X13121Y5383D01* X13112Y5365D01* Y5634D01* G37* G36* X13032Y15583D02*X13036Y15569D01* X13041Y15543D01* X13044Y15516D01* X13044Y15489D01* X13042Y15462D01* X13037Y15435D01* X13032Y15416D01* Y15583D01* G37* G36* Y13634D02*X13039Y13621D01* X13049Y13595D01* X13056Y13569D01* X13061Y13543D01* X13064Y13516D01* X13064Y13489D01* X13062Y13462D01* X13057Y13435D01* X13050Y13409D01* X13041Y13383D01* X13032Y13365D01* Y13634D01* G37* G36* X11132Y5583D02*X11136Y5569D01* X11141Y5543D01* X11144Y5516D01* X11144Y5489D01* X11142Y5462D01* X11137Y5435D01* X11132Y5416D01* Y5583D01* G37* G36* Y3634D02*X11139Y3621D01* X11149Y3595D01* X11156Y3569D01* X11161Y3543D01* X11164Y3516D01* X11164Y3489D01* X11162Y3462D01* X11157Y3435D01* X11150Y3409D01* X11141Y3383D01* X11132Y3365D01* Y3634D01* G37* G36* X11052Y13583D02*X11056Y13569D01* X11061Y13543D01* X11064Y13516D01* X11064Y13489D01* X11062Y13462D01* X11057Y13435D01* X11052Y13416D01* Y13583D01* G37* G36* Y11634D02*X11059Y11621D01* X11069Y11595D01* X11076Y11569D01* X11081Y11543D01* X11084Y11516D01* X11084Y11489D01* X11082Y11462D01* X11077Y11435D01* X11070Y11409D01* X11061Y11383D01* X11052Y11365D01* Y11634D01* G37* G36* X10972Y21583D02*X10976Y21569D01* X10981Y21543D01* X10984Y21516D01* X10984Y21489D01* X10982Y21462D01* X10977Y21435D01* X10972Y21416D01* Y21583D01* G37* G36* Y19634D02*X10979Y19621D01* X10989Y19595D01* X10996Y19569D01* X11001Y19543D01* X11004Y19516D01* X11004Y19489D01* X11002Y19462D01* X10997Y19435D01* X10990Y19409D01* X10981Y19383D01* X10972Y19365D01* Y19634D01* G37* G36* X9112Y7583D02*X9116Y7569D01* X9121Y7543D01* X9124Y7516D01* X9124Y7489D01* X9122Y7462D01* X9117Y7435D01* X9112Y7416D01* Y7583D01* G37* G36* Y5634D02*X9119Y5621D01* X9129Y5595D01* X9136Y5569D01* X9141Y5543D01* X9144Y5516D01* X9144Y5489D01* X9142Y5462D01* X9137Y5435D01* X9130Y5409D01* X9121Y5383D01* X9112Y5365D01* Y5634D01* G37* G36* X9032Y15583D02*X9036Y15569D01* X9041Y15543D01* X9044Y15516D01* X9044Y15489D01* X9042Y15462D01* X9037Y15435D01* X9032Y15416D01* Y15583D01* G37* G36* Y13634D02*X9039Y13621D01* X9049Y13595D01* X9056Y13569D01* X9061Y13543D01* X9064Y13516D01* X9064Y13489D01* X9062Y13462D01* X9057Y13435D01* X9050Y13409D01* X9041Y13383D01* X9032Y13365D01* Y13634D01* G37* G36* X7152Y3583D02*X7156Y3569D01* X7161Y3543D01* X7164Y3516D01* X7164Y3489D01* X7162Y3462D01* X7157Y3435D01* X7152Y3416D01* Y3583D01* G37* G36* Y1634D02*X7159Y1621D01* X7169Y1595D01* X7176Y1569D01* X7181Y1543D01* X7184Y1516D01* X7184Y1489D01* X7182Y1462D01* X7177Y1435D01* X7170Y1409D01* X7161Y1383D01* X7152Y1365D01* Y1634D01* G37* G36* X7072Y11583D02*X7076Y11569D01* X7081Y11543D01* X7084Y11516D01* X7084Y11489D01* X7082Y11462D01* X7077Y11435D01* X7072Y11416D01* Y11583D01* G37* G36* Y9634D02*X7079Y9621D01* X7089Y9595D01* X7096Y9569D01* X7101Y9543D01* X7104Y9516D01* X7104Y9489D01* X7102Y9462D01* X7097Y9435D01* X7090Y9409D01* X7081Y9383D01* X7072Y9365D01* Y9634D01* G37* G36* X6992Y19583D02*X6996Y19569D01* X7001Y19543D01* X7004Y19516D01* X7004Y19489D01* X7002Y19462D01* X6997Y19435D01* X6992Y19416D01* Y19583D01* G37* G36* Y17634D02*X6999Y17621D01* X7009Y17595D01* X7016Y17569D01* X7021Y17543D01* X7024Y17516D01* X7024Y17489D01* X7022Y17462D01* X7017Y17435D01* X7010Y17409D01* X7001Y17383D01* X6992Y17365D01* Y17634D01* G37* G36* X5152Y3583D02*X5156Y3569D01* X5161Y3543D01* X5164Y3516D01* X5164Y3489D01* X5162Y3462D01* X5157Y3435D01* X5152Y3416D01* Y3583D01* G37* G36* Y1634D02*X5159Y1621D01* X5169Y1595D01* X5176Y1569D01* X5181Y1543D01* X5184Y1516D01* X5184Y1489D01* X5182Y1462D01* X5177Y1435D01* X5170Y1409D01* X5161Y1383D01* X5152Y1365D01* Y1634D01* G37* G36* X5072Y11583D02*X5076Y11569D01* X5081Y11543D01* X5084Y11516D01* X5084Y11489D01* X5082Y11462D01* X5077Y11435D01* X5072Y11416D01* Y11583D01* G37* G36* Y9634D02*X5079Y9621D01* X5089Y9595D01* X5096Y9569D01* X5101Y9543D01* X5104Y9516D01* X5104Y9489D01* X5102Y9462D01* X5097Y9435D01* X5090Y9409D01* X5081Y9383D01* X5072Y9365D01* Y9634D01* G37* G36* X4992Y19583D02*X4996Y19569D01* X5001Y19543D01* X5004Y19516D01* X5004Y19489D01* X5002Y19462D01* X4997Y19435D01* X4992Y19416D01* Y19583D01* G37* G36* Y17634D02*X4999Y17621D01* X5009Y17595D01* X5016Y17569D01* X5021Y17543D01* X5024Y17516D01* X5024Y17489D01* X5022Y17462D01* X5017Y17435D01* X5010Y17409D01* X5001Y17383D01* X4992Y17365D01* Y17634D01* G37* G36* X3132Y5583D02*X3136Y5569D01* X3141Y5543D01* X3144Y5516D01* X3144Y5489D01* X3142Y5462D01* X3137Y5435D01* X3132Y5416D01* Y5583D01* G37* G36* Y3634D02*X3139Y3621D01* X3149Y3595D01* X3156Y3569D01* X3161Y3543D01* X3164Y3516D01* X3164Y3489D01* X3162Y3462D01* X3157Y3435D01* X3150Y3409D01* X3141Y3383D01* X3132Y3365D01* Y3634D01* G37* G36* X3052Y13583D02*X3056Y13569D01* X3061Y13543D01* X3064Y13516D01* X3064Y13489D01* X3062Y13462D01* X3057Y13435D01* X3052Y13416D01* Y13583D01* G37* G36* Y11634D02*X3059Y11621D01* X3069Y11595D01* X3076Y11569D01* X3081Y11543D01* X3084Y11516D01* X3084Y11489D01* X3082Y11462D01* X3077Y11435D01* X3070Y11409D01* X3061Y11383D01* X3052Y11365D01* Y11634D01* G37* G36* X1152Y3583D02*X1156Y3569D01* X1161Y3543D01* X1164Y3516D01* X1164Y3489D01* X1162Y3462D01* X1157Y3435D01* X1152Y3416D01* Y3583D01* G37* G36* Y1634D02*X1159Y1621D01* X1169Y1595D01* X1176Y1569D01* X1181Y1543D01* X1184Y1516D01* X1184Y1489D01* X1182Y1462D01* X1177Y1435D01* X1170Y1409D01* X1161Y1383D01* X1152Y1365D01* Y1634D01* G37* G36* X1072Y11583D02*X1076Y11569D01* X1081Y11543D01* X1084Y11516D01* X1084Y11489D01* X1082Y11462D01* X1077Y11435D01* X1072Y11416D01* Y11583D01* G37* G36* Y9634D02*X1079Y9621D01* X1089Y9595D01* X1096Y9569D01* X1101Y9543D01* X1104Y9516D01* X1104Y9489D01* X1102Y9462D01* X1097Y9435D01* X1090Y9409D01* X1081Y9383D01* X1072Y9365D01* Y9634D01* G37* G36* X992Y19583D02*X996Y19569D01* X1001Y19543D01* X1004Y19516D01* X1004Y19489D01* X1002Y19462D01* X997Y19435D01* X992Y19416D01* Y19583D01* G37* G36* Y17634D02*X999Y17621D01* X1009Y17595D01* X1016Y17569D01* X1021Y17543D01* X1024Y17516D01* X1024Y17489D01* X1022Y17462D01* X1017Y17435D01* X1010Y17409D01* X1001Y17383D01* X992Y17365D01* Y17634D01* G37* G54D12*X665Y23500D03* X685Y21500D03* X705Y19500D03* X725Y17500D03* X745Y15500D03* X765Y13500D03* X785Y11500D03* X805Y9500D03* X825Y7500D03* X845Y5500D03* X865Y3500D03* X885Y1500D03* X2725Y17500D03* X2745Y15500D03* X2765Y13500D03* X2785Y11500D03* X2805Y9500D03* X2825Y7500D03* X2845Y5500D03* X2865Y3500D03* X2885Y1500D03* X4665Y23500D03* X4685Y21500D03* X4705Y19500D03* X4725Y17500D03* X4745Y15500D03* X4765Y13500D03* X4785Y11500D03* X4805Y9500D03* X4825Y7500D03* X4845Y5500D03* X4865Y3500D03* X4885Y1500D03* X6665Y23500D03* X6685Y21500D03* X6705Y19500D03* X6725Y17500D03* X6745Y15500D03* X6765Y13500D03* X6785Y11500D03* X6805Y9500D03* X6825Y7500D03* X6845Y5500D03* X6865Y3500D03* X6885Y1500D03* X8705Y19500D03* X8725Y17500D03* X8745Y15500D03* X8765Y13500D03* X8785Y11500D03* X8805Y9500D03* X8825Y7500D03* X8845Y5500D03* X8865Y3500D03* X8885Y1500D03* X645Y25500D03* X2645D03* X2605Y29500D03* X2625Y27500D03* X2665Y23500D03* X2685Y21500D03* X2705Y19500D03* X6585Y31500D03* X6605Y29500D03* X6625Y27500D03* X6645Y25500D03* X8585Y31500D03* X8605Y29500D03* X8625Y27500D03* X8645Y25500D03* X8665Y23500D03* X8685Y21500D03* X10645Y25500D03* X10665Y23500D03* X10685Y21500D03* X10705Y19500D03* X10725Y17500D03* X10745Y15500D03* X10765Y13500D03* X10785Y11500D03* X10805Y9500D03* X10825Y7500D03* X10845Y5500D03* X10865Y3500D03* X10885Y1500D03* X12705Y19500D03* X12725Y17500D03* X12745Y15500D03* X12765Y13500D03* X12785Y11500D03* X12805Y9500D03* X12825Y7500D03* X12845Y5500D03* X12865Y3500D03* X12885Y1500D03* X14665Y23500D03* X14685Y21500D03* X14705Y19500D03* X14725Y17500D03* X14745Y15500D03* X14765Y13500D03* X14785Y11500D03* X14805Y9500D03* X14825Y7500D03* X14845Y5500D03* X14865Y3500D03* X14885Y1500D03* X16665Y23500D03* X16685Y21500D03* X16705Y19500D03* X16725Y17500D03* X16745Y15500D03* X16765Y13500D03* X16785Y11500D03* X16805Y9500D03* X16825Y7500D03* X16845Y5500D03* X16865Y3500D03* X16885Y1500D03* X10565Y33500D03* X10585Y31500D03* X10605Y29500D03* X10625Y27500D03* X12605Y29500D03* X12625Y27500D03* X12645Y25500D03* X12665Y23500D03* X12685Y21500D03* X18665Y23500D03* X18685Y21500D03* X18705Y19500D03* X18725Y17500D03* X18745Y15500D03* X18765Y13500D03* X18785Y11500D03* X18805Y9500D03* X18825Y7500D03* X18845Y5500D03* X18865Y3500D03* X18885Y1500D03* X18585Y31500D03* X18605Y29500D03* X18625Y27500D03* X18645Y25500D03* X20545Y35500D03* X20565Y33500D03* X20585Y31500D03* X20605Y29500D03* X20625Y27500D03* X20645Y25500D03* X20665Y23500D03* X20685Y21500D03* X20705Y19500D03* X20725Y17500D03* X20745Y15500D03* X20765Y13500D03* X20785Y11500D03* X20805Y9500D03* X20825Y7500D03* X20845Y5500D03* X20865Y3500D03* X20885Y1500D03* X565Y33500D03* X585Y31500D03* X605Y29500D03* X625Y27500D03* X505Y39500D03* X525Y37500D03* X545Y35500D03* X2545D03* X2565Y33500D03* X2585Y31500D03* X2505Y39500D03* X4505D03* X4545Y35500D03* X4565Y33500D03* X4585Y31500D03* X4605Y29500D03* X4625Y27500D03* X4645Y25500D03* X2525Y37500D03* X4525D03* X6505Y39500D03* X6525Y37500D03* X6545Y35500D03* X6565Y33500D03* X8505Y39500D03* X8525Y37500D03* X8545Y35500D03* X8565Y33500D03* X10505Y39500D03* X10525Y37500D03* X10545Y35500D03* X12505Y39500D03* X12525Y37500D03* X14525D03* X12545Y35500D03* X12565Y33500D03* X12585Y31500D03* X14505Y39500D03* X14545Y35500D03* X14565Y33500D03* X14585Y31500D03* X14605Y29500D03* X14625Y27500D03* X14645Y25500D03* X16505Y39500D03* X16525Y37500D03* X16545Y35500D03* X16565Y33500D03* X16585Y31500D03* X16605Y29500D03* X16625Y27500D03* X16645Y25500D03* X18505Y39500D03* X18525Y37500D03* X18545Y35500D03* X18565Y33500D03* X20505Y39500D03* X20525Y37500D03* X22505Y39500D03* X22525Y37500D03* X22545Y35500D03* X22565Y33500D03* X22585Y31500D03* X22605Y29500D03* X22625Y27500D03* X22645Y25500D03* X22665Y23500D03* X24505Y39500D03* X24525Y37500D03* X24545Y35500D03* X26505Y39500D03* X26525Y37500D03* X28505Y39500D03* X22685Y21500D03* X22705Y19500D03* X22725Y17500D03* X22745Y15500D03* X22765Y13500D03* X22785Y11500D03* X22805Y9500D03* X22825Y7500D03* X22845Y5500D03* X22865Y3500D03* X22885Y1500D03* X24665Y23500D03* X24685Y21500D03* X24705Y19500D03* X24725Y17500D03* X24745Y15500D03* X24765Y13500D03* X24785Y11500D03* X24805Y9500D03* X24825Y7500D03* X24845Y5500D03* X24865Y3500D03* X24885Y1500D03* X26705Y19500D03* X26725Y17500D03* X26745Y15500D03* X26765Y13500D03* X26785Y11500D03* X26805Y9500D03* X26825Y7500D03* X26845Y5500D03* X26865Y3500D03* X26885Y1500D03* X24565Y33500D03* X24585Y31500D03* X24605Y29500D03* X24625Y27500D03* X24645Y25500D03* X26645D03* X26605Y29500D03* X26625Y27500D03* X26665Y23500D03* X26685Y21500D03* X26545Y35500D03* X26565Y33500D03* X26585Y31500D03* X28585D03* X28605Y29500D03* X28625Y27500D03* X28645Y25500D03* X28665Y23500D03* X28525Y37500D03* X28545Y35500D03* X28565Y33500D03* X30505Y39500D03* X30525Y37500D03* X30545Y35500D03* X32505Y39500D03* X32525Y37500D03* X34525D03* X30565Y33500D03* X30585Y31500D03* X30605Y29500D03* X30625Y27500D03* X32605Y29500D03* X32625Y27500D03* X32645Y25500D03* X32665Y23500D03* X32685Y21500D03* X32545Y35500D03* X32565Y33500D03* X32585Y31500D03* X34505Y39500D03* X34545Y35500D03* X34565Y33500D03* X34585Y31500D03* X34605Y29500D03* X34625Y27500D03* X34645Y25500D03* X34665Y23500D03* X34685Y21500D03* X34705Y19500D03* X34725Y17500D03* X34745Y15500D03* X34765Y13500D03* X34785Y11500D03* X34805Y9500D03* X34825Y7500D03* X34845Y5500D03* X34865Y3500D03* X34885Y1500D03* X28685Y21500D03* X28705Y19500D03* X28725Y17500D03* X28745Y15500D03* X28765Y13500D03* X28785Y11500D03* X28805Y9500D03* X28825Y7500D03* X28845Y5500D03* X28865Y3500D03* X28885Y1500D03* X30645Y25500D03* X30665Y23500D03* X30685Y21500D03* X30705Y19500D03* X30725Y17500D03* X30745Y15500D03* X30765Y13500D03* X30785Y11500D03* X30805Y9500D03* X30825Y7500D03* X30845Y5500D03* X30865Y3500D03* X30885Y1500D03* X32705Y19500D03* X32725Y17500D03* X32745Y15500D03* X32765Y13500D03* X32785Y11500D03* X32805Y9500D03* X32825Y7500D03* X32845Y5500D03* X32865Y3500D03* X32885Y1500D03* G54D13*M02* gerbv-2.7.0/example/hellboard/hellboard.fab.gbr0000644000175000017500000021446013421555714021271 0ustar carstencarstenG04 start of page 7 for group -3984 idx -3984 G04 Title: (unknown), fab * G04 Creator: pcb 1.99v * G04 CreationDate: Thu Jan 24 03:53:01 2008 UTC * G04 For: sdb * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 400000 400000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNFAB*% %ADD14C,0.0080*% %ADD15C,0.0060*% %ADD16C,0.0100*% G54D14*X505Y39500D02*Y39340D01* Y39500D02*X643Y39580D01* X505Y39500D02*X366Y39580D01* X525Y37500D02*Y37340D01* Y37500D02*X663Y37580D01* X525Y37500D02*X386Y37580D01* X545Y35500D02*Y35340D01* Y35500D02*X683Y35580D01* X545Y35500D02*X406Y35580D01* X565Y33500D02*Y33340D01* Y33500D02*X703Y33580D01* X565Y33500D02*X426Y33580D01* X585Y31500D02*Y31340D01* Y31500D02*X723Y31580D01* X585Y31500D02*X446Y31580D01* X605Y29500D02*Y29340D01* Y29500D02*X743Y29580D01* X605Y29500D02*X466Y29580D01* X625Y27500D02*Y27340D01* Y27500D02*X763Y27580D01* X625Y27500D02*X486Y27580D01* X645Y25500D02*Y25340D01* Y25500D02*X783Y25580D01* X645Y25500D02*X506Y25580D01* X665Y23500D02*Y23340D01* Y23500D02*X803Y23580D01* X665Y23500D02*X526Y23580D01* X685Y21500D02*Y21340D01* Y21500D02*X823Y21580D01* X685Y21500D02*X546Y21580D01* X705Y19500D02*Y19340D01* Y19500D02*X843Y19580D01* X705Y19500D02*X566Y19580D01* X725Y17500D02*Y17340D01* Y17500D02*X863Y17580D01* X725Y17500D02*X586Y17580D01* X745Y15500D02*Y15340D01* Y15500D02*X883Y15580D01* X745Y15500D02*X606Y15580D01* X765Y13500D02*Y13340D01* Y13500D02*X903Y13580D01* X765Y13500D02*X626Y13580D01* X785Y11500D02*Y11340D01* Y11500D02*X923Y11580D01* X785Y11500D02*X646Y11580D01* X805Y9500D02*Y9340D01* Y9500D02*X943Y9580D01* X805Y9500D02*X666Y9580D01* X825Y7500D02*Y7340D01* Y7500D02*X963Y7580D01* X825Y7500D02*X686Y7580D01* X845Y5500D02*Y5340D01* Y5500D02*X983Y5580D01* X845Y5500D02*X706Y5580D01* X865Y3500D02*Y3340D01* Y3500D02*X1003Y3580D01* X865Y3500D02*X726Y3580D01* X885Y1500D02*Y1340D01* Y1500D02*X1023Y1580D01* X885Y1500D02*X746Y1580D01* X2505Y39500D02*Y39340D01* Y39500D02*X2643Y39580D01* X2505Y39500D02*X2366Y39580D01* X2525Y37500D02*Y37340D01* Y37500D02*X2663Y37580D01* X2525Y37500D02*X2386Y37580D01* X2545Y35500D02*Y35340D01* Y35500D02*X2683Y35580D01* X2545Y35500D02*X2406Y35580D01* X2565Y33500D02*Y33340D01* Y33500D02*X2703Y33580D01* X2565Y33500D02*X2426Y33580D01* X2585Y31500D02*Y31340D01* Y31500D02*X2723Y31580D01* X2585Y31500D02*X2446Y31580D01* X2605Y29500D02*Y29340D01* Y29500D02*X2743Y29580D01* X2605Y29500D02*X2466Y29580D01* X2625Y27500D02*Y27340D01* Y27500D02*X2763Y27580D01* X2625Y27500D02*X2486Y27580D01* X2645Y25500D02*Y25340D01* Y25500D02*X2783Y25580D01* X2645Y25500D02*X2506Y25580D01* X2665Y23500D02*Y23340D01* Y23500D02*X2803Y23580D01* X2665Y23500D02*X2526Y23580D01* X2685Y21500D02*Y21340D01* Y21500D02*X2823Y21580D01* X2685Y21500D02*X2546Y21580D01* X2705Y19500D02*Y19340D01* Y19500D02*X2843Y19580D01* X2705Y19500D02*X2566Y19580D01* X2725Y17500D02*Y17340D01* Y17500D02*X2863Y17580D01* X2725Y17500D02*X2586Y17580D01* X2745Y15500D02*Y15340D01* Y15500D02*X2883Y15580D01* X2745Y15500D02*X2606Y15580D01* X2765Y13500D02*Y13340D01* Y13500D02*X2903Y13580D01* X2765Y13500D02*X2626Y13580D01* X2785Y11500D02*Y11340D01* Y11500D02*X2923Y11580D01* X2785Y11500D02*X2646Y11580D01* X2805Y9500D02*Y9340D01* Y9500D02*X2943Y9580D01* X2805Y9500D02*X2666Y9580D01* X2825Y7500D02*Y7340D01* Y7500D02*X2963Y7580D01* X2825Y7500D02*X2686Y7580D01* X2845Y5500D02*Y5340D01* Y5500D02*X2983Y5580D01* X2845Y5500D02*X2706Y5580D01* X2865Y3500D02*Y3340D01* Y3500D02*X3003Y3580D01* X2865Y3500D02*X2726Y3580D01* X2885Y1500D02*Y1340D01* Y1500D02*X3023Y1580D01* X2885Y1500D02*X2746Y1580D01* X4505Y39500D02*Y39340D01* Y39500D02*X4643Y39580D01* X4505Y39500D02*X4366Y39580D01* X4525Y37500D02*Y37340D01* Y37500D02*X4663Y37580D01* X4525Y37500D02*X4386Y37580D01* X4545Y35500D02*Y35340D01* Y35500D02*X4683Y35580D01* X4545Y35500D02*X4406Y35580D01* X4565Y33500D02*Y33340D01* Y33500D02*X4703Y33580D01* X4565Y33500D02*X4426Y33580D01* X4585Y31500D02*Y31340D01* Y31500D02*X4723Y31580D01* X4585Y31500D02*X4446Y31580D01* X4605Y29500D02*Y29340D01* Y29500D02*X4743Y29580D01* X4605Y29500D02*X4466Y29580D01* X4625Y27500D02*Y27340D01* Y27500D02*X4763Y27580D01* X4625Y27500D02*X4486Y27580D01* X4645Y25500D02*Y25340D01* Y25500D02*X4783Y25580D01* X4645Y25500D02*X4506Y25580D01* X4665Y23500D02*Y23340D01* Y23500D02*X4803Y23580D01* X4665Y23500D02*X4526Y23580D01* X4685Y21500D02*Y21340D01* Y21500D02*X4823Y21580D01* X4685Y21500D02*X4546Y21580D01* X4705Y19500D02*Y19340D01* Y19500D02*X4843Y19580D01* X4705Y19500D02*X4566Y19580D01* X4725Y17500D02*Y17340D01* Y17500D02*X4863Y17580D01* X4725Y17500D02*X4586Y17580D01* X4745Y15500D02*Y15340D01* Y15500D02*X4883Y15580D01* X4745Y15500D02*X4606Y15580D01* X4765Y13500D02*Y13340D01* Y13500D02*X4903Y13580D01* X4765Y13500D02*X4626Y13580D01* X4785Y11500D02*Y11340D01* Y11500D02*X4923Y11580D01* X4785Y11500D02*X4646Y11580D01* X4805Y9500D02*Y9340D01* Y9500D02*X4943Y9580D01* X4805Y9500D02*X4666Y9580D01* X4825Y7500D02*Y7340D01* Y7500D02*X4963Y7580D01* X4825Y7500D02*X4686Y7580D01* X4845Y5500D02*Y5340D01* Y5500D02*X4983Y5580D01* X4845Y5500D02*X4706Y5580D01* X4865Y3500D02*Y3340D01* Y3500D02*X5003Y3580D01* X4865Y3500D02*X4726Y3580D01* X4885Y1500D02*Y1340D01* Y1500D02*X5023Y1580D01* X4885Y1500D02*X4746Y1580D01* X6505Y39500D02*Y39340D01* Y39500D02*X6643Y39580D01* X6505Y39500D02*X6366Y39580D01* X6525Y37500D02*Y37340D01* Y37500D02*X6663Y37580D01* X6525Y37500D02*X6386Y37580D01* X6545Y35500D02*Y35340D01* Y35500D02*X6683Y35580D01* X6545Y35500D02*X6406Y35580D01* X6565Y33500D02*Y33340D01* Y33500D02*X6703Y33580D01* X6565Y33500D02*X6426Y33580D01* X6585Y31500D02*Y31340D01* Y31500D02*X6723Y31580D01* X6585Y31500D02*X6446Y31580D01* X6605Y29500D02*Y29340D01* Y29500D02*X6743Y29580D01* X6605Y29500D02*X6466Y29580D01* X6625Y27500D02*Y27340D01* Y27500D02*X6763Y27580D01* X6625Y27500D02*X6486Y27580D01* X6645Y25500D02*Y25340D01* Y25500D02*X6783Y25580D01* X6645Y25500D02*X6506Y25580D01* X6665Y23500D02*Y23340D01* Y23500D02*X6803Y23580D01* X6665Y23500D02*X6526Y23580D01* X6685Y21500D02*Y21340D01* Y21500D02*X6823Y21580D01* X6685Y21500D02*X6546Y21580D01* X6705Y19500D02*Y19340D01* Y19500D02*X6843Y19580D01* X6705Y19500D02*X6566Y19580D01* X6725Y17500D02*Y17340D01* Y17500D02*X6863Y17580D01* X6725Y17500D02*X6586Y17580D01* X6745Y15500D02*Y15340D01* Y15500D02*X6883Y15580D01* X6745Y15500D02*X6606Y15580D01* X6765Y13500D02*Y13340D01* Y13500D02*X6903Y13580D01* X6765Y13500D02*X6626Y13580D01* X6785Y11500D02*Y11340D01* Y11500D02*X6923Y11580D01* X6785Y11500D02*X6646Y11580D01* X6805Y9500D02*Y9340D01* Y9500D02*X6943Y9580D01* X6805Y9500D02*X6666Y9580D01* X6825Y7500D02*Y7340D01* Y7500D02*X6963Y7580D01* X6825Y7500D02*X6686Y7580D01* X6845Y5500D02*Y5340D01* Y5500D02*X6983Y5580D01* X6845Y5500D02*X6706Y5580D01* X6865Y3500D02*Y3340D01* Y3500D02*X7003Y3580D01* X6865Y3500D02*X6726Y3580D01* X6885Y1500D02*Y1340D01* Y1500D02*X7023Y1580D01* X6885Y1500D02*X6746Y1580D01* X8505Y39500D02*Y39340D01* Y39500D02*X8643Y39580D01* X8505Y39500D02*X8366Y39580D01* X8525Y37500D02*Y37340D01* Y37500D02*X8663Y37580D01* X8525Y37500D02*X8386Y37580D01* X8545Y35500D02*Y35340D01* Y35500D02*X8683Y35580D01* X8545Y35500D02*X8406Y35580D01* X8565Y33500D02*Y33340D01* Y33500D02*X8703Y33580D01* X8565Y33500D02*X8426Y33580D01* X8585Y31500D02*Y31340D01* Y31500D02*X8723Y31580D01* X8585Y31500D02*X8446Y31580D01* X8605Y29500D02*Y29340D01* Y29500D02*X8743Y29580D01* X8605Y29500D02*X8466Y29580D01* X8625Y27500D02*Y27340D01* Y27500D02*X8763Y27580D01* X8625Y27500D02*X8486Y27580D01* X8645Y25500D02*Y25340D01* Y25500D02*X8783Y25580D01* X8645Y25500D02*X8506Y25580D01* X8665Y23500D02*Y23340D01* Y23500D02*X8803Y23580D01* X8665Y23500D02*X8526Y23580D01* X8685Y21500D02*Y21340D01* Y21500D02*X8823Y21580D01* X8685Y21500D02*X8546Y21580D01* X8705Y19500D02*Y19340D01* Y19500D02*X8843Y19580D01* X8705Y19500D02*X8566Y19580D01* X8725Y17500D02*Y17340D01* Y17500D02*X8863Y17580D01* X8725Y17500D02*X8586Y17580D01* X8745Y15500D02*Y15340D01* Y15500D02*X8883Y15580D01* X8745Y15500D02*X8606Y15580D01* X8765Y13500D02*Y13340D01* Y13500D02*X8903Y13580D01* X8765Y13500D02*X8626Y13580D01* X8785Y11500D02*Y11340D01* Y11500D02*X8923Y11580D01* X8785Y11500D02*X8646Y11580D01* X8805Y9500D02*Y9340D01* Y9500D02*X8943Y9580D01* X8805Y9500D02*X8666Y9580D01* X8825Y7500D02*Y7340D01* Y7500D02*X8963Y7580D01* X8825Y7500D02*X8686Y7580D01* X8845Y5500D02*Y5340D01* Y5500D02*X8983Y5580D01* X8845Y5500D02*X8706Y5580D01* X8865Y3500D02*Y3340D01* Y3500D02*X9003Y3580D01* X8865Y3500D02*X8726Y3580D01* X8885Y1500D02*Y1340D01* Y1500D02*X9023Y1580D01* X8885Y1500D02*X8746Y1580D01* X10505Y39500D02*Y39340D01* Y39500D02*X10643Y39580D01* X10505Y39500D02*X10366Y39580D01* X10525Y37500D02*Y37340D01* Y37500D02*X10663Y37580D01* X10525Y37500D02*X10386Y37580D01* X10545Y35500D02*Y35340D01* Y35500D02*X10683Y35580D01* X10545Y35500D02*X10406Y35580D01* X10565Y33500D02*Y33340D01* Y33500D02*X10703Y33580D01* X10565Y33500D02*X10426Y33580D01* X10585Y31500D02*Y31340D01* Y31500D02*X10723Y31580D01* X10585Y31500D02*X10446Y31580D01* X10605Y29500D02*Y29340D01* Y29500D02*X10743Y29580D01* X10605Y29500D02*X10466Y29580D01* X10625Y27500D02*Y27340D01* Y27500D02*X10763Y27580D01* X10625Y27500D02*X10486Y27580D01* X10645Y25500D02*Y25340D01* Y25500D02*X10783Y25580D01* X10645Y25500D02*X10506Y25580D01* X10665Y23500D02*Y23340D01* Y23500D02*X10803Y23580D01* X10665Y23500D02*X10526Y23580D01* X10685Y21500D02*Y21340D01* Y21500D02*X10823Y21580D01* X10685Y21500D02*X10546Y21580D01* X10705Y19500D02*Y19340D01* Y19500D02*X10843Y19580D01* X10705Y19500D02*X10566Y19580D01* X10725Y17500D02*Y17340D01* Y17500D02*X10863Y17580D01* X10725Y17500D02*X10586Y17580D01* X10745Y15500D02*Y15340D01* Y15500D02*X10883Y15580D01* X10745Y15500D02*X10606Y15580D01* X10765Y13500D02*Y13340D01* Y13500D02*X10903Y13580D01* X10765Y13500D02*X10626Y13580D01* X10785Y11500D02*Y11340D01* Y11500D02*X10923Y11580D01* X10785Y11500D02*X10646Y11580D01* X10805Y9500D02*Y9340D01* Y9500D02*X10943Y9580D01* X10805Y9500D02*X10666Y9580D01* X10825Y7500D02*Y7340D01* Y7500D02*X10963Y7580D01* X10825Y7500D02*X10686Y7580D01* X10845Y5500D02*Y5340D01* Y5500D02*X10983Y5580D01* X10845Y5500D02*X10706Y5580D01* X10865Y3500D02*Y3340D01* Y3500D02*X11003Y3580D01* X10865Y3500D02*X10726Y3580D01* X10885Y1500D02*Y1340D01* Y1500D02*X11023Y1580D01* X10885Y1500D02*X10746Y1580D01* X12505Y39500D02*Y39340D01* Y39500D02*X12643Y39580D01* X12505Y39500D02*X12366Y39580D01* X12525Y37500D02*Y37340D01* Y37500D02*X12663Y37580D01* X12525Y37500D02*X12386Y37580D01* X12545Y35500D02*Y35340D01* Y35500D02*X12683Y35580D01* X12545Y35500D02*X12406Y35580D01* X12565Y33500D02*Y33340D01* Y33500D02*X12703Y33580D01* X12565Y33500D02*X12426Y33580D01* X12585Y31500D02*Y31340D01* Y31500D02*X12723Y31580D01* X12585Y31500D02*X12446Y31580D01* X12605Y29500D02*Y29340D01* Y29500D02*X12743Y29580D01* X12605Y29500D02*X12466Y29580D01* X12625Y27500D02*Y27340D01* Y27500D02*X12763Y27580D01* X12625Y27500D02*X12486Y27580D01* X12645Y25500D02*Y25340D01* Y25500D02*X12783Y25580D01* X12645Y25500D02*X12506Y25580D01* X12665Y23500D02*Y23340D01* Y23500D02*X12803Y23580D01* X12665Y23500D02*X12526Y23580D01* X12685Y21500D02*Y21340D01* Y21500D02*X12823Y21580D01* X12685Y21500D02*X12546Y21580D01* X12705Y19500D02*Y19340D01* Y19500D02*X12843Y19580D01* X12705Y19500D02*X12566Y19580D01* X12725Y17500D02*Y17340D01* Y17500D02*X12863Y17580D01* X12725Y17500D02*X12586Y17580D01* X12745Y15500D02*Y15340D01* Y15500D02*X12883Y15580D01* X12745Y15500D02*X12606Y15580D01* X12765Y13500D02*Y13340D01* Y13500D02*X12903Y13580D01* X12765Y13500D02*X12626Y13580D01* X12785Y11500D02*Y11340D01* Y11500D02*X12923Y11580D01* X12785Y11500D02*X12646Y11580D01* X12805Y9500D02*Y9340D01* Y9500D02*X12943Y9580D01* X12805Y9500D02*X12666Y9580D01* X12825Y7500D02*Y7340D01* Y7500D02*X12963Y7580D01* X12825Y7500D02*X12686Y7580D01* X12845Y5500D02*Y5340D01* Y5500D02*X12983Y5580D01* X12845Y5500D02*X12706Y5580D01* X12865Y3500D02*Y3340D01* Y3500D02*X13003Y3580D01* X12865Y3500D02*X12726Y3580D01* X12885Y1500D02*Y1340D01* Y1500D02*X13023Y1580D01* X12885Y1500D02*X12746Y1580D01* X14505Y39500D02*Y39340D01* Y39500D02*X14643Y39580D01* X14505Y39500D02*X14366Y39580D01* X14525Y37500D02*Y37340D01* Y37500D02*X14663Y37580D01* X14525Y37500D02*X14386Y37580D01* X14545Y35500D02*Y35340D01* Y35500D02*X14683Y35580D01* X14545Y35500D02*X14406Y35580D01* X14565Y33500D02*Y33340D01* Y33500D02*X14703Y33580D01* X14565Y33500D02*X14426Y33580D01* X14585Y31500D02*Y31340D01* Y31500D02*X14723Y31580D01* X14585Y31500D02*X14446Y31580D01* X14605Y29500D02*Y29340D01* Y29500D02*X14743Y29580D01* X14605Y29500D02*X14466Y29580D01* X14625Y27500D02*Y27340D01* Y27500D02*X14763Y27580D01* X14625Y27500D02*X14486Y27580D01* X14645Y25500D02*Y25340D01* Y25500D02*X14783Y25580D01* X14645Y25500D02*X14506Y25580D01* X14665Y23500D02*Y23340D01* Y23500D02*X14803Y23580D01* X14665Y23500D02*X14526Y23580D01* X14685Y21500D02*Y21340D01* Y21500D02*X14823Y21580D01* X14685Y21500D02*X14546Y21580D01* X14705Y19500D02*Y19340D01* Y19500D02*X14843Y19580D01* X14705Y19500D02*X14566Y19580D01* X14725Y17500D02*Y17340D01* Y17500D02*X14863Y17580D01* X14725Y17500D02*X14586Y17580D01* X14745Y15500D02*Y15340D01* Y15500D02*X14883Y15580D01* X14745Y15500D02*X14606Y15580D01* X14765Y13500D02*Y13340D01* Y13500D02*X14903Y13580D01* X14765Y13500D02*X14626Y13580D01* X14785Y11500D02*Y11340D01* Y11500D02*X14923Y11580D01* X14785Y11500D02*X14646Y11580D01* X14805Y9500D02*Y9340D01* Y9500D02*X14943Y9580D01* X14805Y9500D02*X14666Y9580D01* X14825Y7500D02*Y7340D01* Y7500D02*X14963Y7580D01* X14825Y7500D02*X14686Y7580D01* X14845Y5500D02*Y5340D01* Y5500D02*X14983Y5580D01* X14845Y5500D02*X14706Y5580D01* X14865Y3500D02*Y3340D01* Y3500D02*X15003Y3580D01* X14865Y3500D02*X14726Y3580D01* X14885Y1500D02*Y1340D01* Y1500D02*X15023Y1580D01* X14885Y1500D02*X14746Y1580D01* X16505Y39500D02*Y39340D01* Y39500D02*X16643Y39580D01* X16505Y39500D02*X16366Y39580D01* X16525Y37500D02*Y37340D01* Y37500D02*X16663Y37580D01* X16525Y37500D02*X16386Y37580D01* X16545Y35500D02*Y35340D01* Y35500D02*X16683Y35580D01* X16545Y35500D02*X16406Y35580D01* X16565Y33500D02*Y33340D01* Y33500D02*X16703Y33580D01* X16565Y33500D02*X16426Y33580D01* X16585Y31500D02*Y31340D01* Y31500D02*X16723Y31580D01* X16585Y31500D02*X16446Y31580D01* X16605Y29500D02*Y29340D01* Y29500D02*X16743Y29580D01* X16605Y29500D02*X16466Y29580D01* X16625Y27500D02*Y27340D01* Y27500D02*X16763Y27580D01* X16625Y27500D02*X16486Y27580D01* X16645Y25500D02*Y25340D01* Y25500D02*X16783Y25580D01* X16645Y25500D02*X16506Y25580D01* X16665Y23500D02*Y23340D01* Y23500D02*X16803Y23580D01* X16665Y23500D02*X16526Y23580D01* X16685Y21500D02*Y21340D01* Y21500D02*X16823Y21580D01* X16685Y21500D02*X16546Y21580D01* X16705Y19500D02*Y19340D01* Y19500D02*X16843Y19580D01* X16705Y19500D02*X16566Y19580D01* X16725Y17500D02*Y17340D01* Y17500D02*X16863Y17580D01* X16725Y17500D02*X16586Y17580D01* X16745Y15500D02*Y15340D01* Y15500D02*X16883Y15580D01* X16745Y15500D02*X16606Y15580D01* X16765Y13500D02*Y13340D01* Y13500D02*X16903Y13580D01* X16765Y13500D02*X16626Y13580D01* X16785Y11500D02*Y11340D01* Y11500D02*X16923Y11580D01* X16785Y11500D02*X16646Y11580D01* X16805Y9500D02*Y9340D01* Y9500D02*X16943Y9580D01* X16805Y9500D02*X16666Y9580D01* X16825Y7500D02*Y7340D01* Y7500D02*X16963Y7580D01* X16825Y7500D02*X16686Y7580D01* X16845Y5500D02*Y5340D01* Y5500D02*X16983Y5580D01* X16845Y5500D02*X16706Y5580D01* X16865Y3500D02*Y3340D01* Y3500D02*X17003Y3580D01* X16865Y3500D02*X16726Y3580D01* X16885Y1500D02*Y1340D01* Y1500D02*X17023Y1580D01* X16885Y1500D02*X16746Y1580D01* X18505Y39500D02*Y39340D01* Y39500D02*X18643Y39580D01* X18505Y39500D02*X18366Y39580D01* X18525Y37500D02*Y37340D01* Y37500D02*X18663Y37580D01* X18525Y37500D02*X18386Y37580D01* X18545Y35500D02*Y35340D01* Y35500D02*X18683Y35580D01* X18545Y35500D02*X18406Y35580D01* X18565Y33500D02*Y33340D01* Y33500D02*X18703Y33580D01* X18565Y33500D02*X18426Y33580D01* X18585Y31500D02*Y31340D01* Y31500D02*X18723Y31580D01* X18585Y31500D02*X18446Y31580D01* X18605Y29500D02*Y29340D01* Y29500D02*X18743Y29580D01* X18605Y29500D02*X18466Y29580D01* X18625Y27500D02*Y27340D01* Y27500D02*X18763Y27580D01* X18625Y27500D02*X18486Y27580D01* X18645Y25500D02*Y25340D01* Y25500D02*X18783Y25580D01* X18645Y25500D02*X18506Y25580D01* X18665Y23500D02*Y23340D01* Y23500D02*X18803Y23580D01* X18665Y23500D02*X18526Y23580D01* X18685Y21500D02*Y21340D01* Y21500D02*X18823Y21580D01* X18685Y21500D02*X18546Y21580D01* X18705Y19500D02*Y19340D01* Y19500D02*X18843Y19580D01* X18705Y19500D02*X18566Y19580D01* X18725Y17500D02*Y17340D01* Y17500D02*X18863Y17580D01* X18725Y17500D02*X18586Y17580D01* X18745Y15500D02*Y15340D01* Y15500D02*X18883Y15580D01* X18745Y15500D02*X18606Y15580D01* X18765Y13500D02*Y13340D01* Y13500D02*X18903Y13580D01* X18765Y13500D02*X18626Y13580D01* X18785Y11500D02*Y11340D01* Y11500D02*X18923Y11580D01* X18785Y11500D02*X18646Y11580D01* X18805Y9500D02*Y9340D01* Y9500D02*X18943Y9580D01* X18805Y9500D02*X18666Y9580D01* X18825Y7500D02*Y7340D01* Y7500D02*X18963Y7580D01* X18825Y7500D02*X18686Y7580D01* X18845Y5500D02*Y5340D01* Y5500D02*X18983Y5580D01* X18845Y5500D02*X18706Y5580D01* X18865Y3500D02*Y3340D01* Y3500D02*X19003Y3580D01* X18865Y3500D02*X18726Y3580D01* X18885Y1500D02*Y1340D01* Y1500D02*X19023Y1580D01* X18885Y1500D02*X18746Y1580D01* X20505Y39500D02*Y39340D01* Y39500D02*X20643Y39580D01* X20505Y39500D02*X20366Y39580D01* X20525Y37500D02*Y37340D01* Y37500D02*X20663Y37580D01* X20525Y37500D02*X20386Y37580D01* X20545Y35500D02*Y35340D01* Y35500D02*X20683Y35580D01* X20545Y35500D02*X20406Y35580D01* X20565Y33500D02*Y33340D01* Y33500D02*X20703Y33580D01* X20565Y33500D02*X20426Y33580D01* X20585Y31500D02*Y31340D01* Y31500D02*X20723Y31580D01* X20585Y31500D02*X20446Y31580D01* X20605Y29500D02*Y29340D01* Y29500D02*X20743Y29580D01* X20605Y29500D02*X20466Y29580D01* X20625Y27500D02*Y27340D01* Y27500D02*X20763Y27580D01* X20625Y27500D02*X20486Y27580D01* X20645Y25500D02*Y25340D01* Y25500D02*X20783Y25580D01* X20645Y25500D02*X20506Y25580D01* X20665Y23500D02*Y23340D01* Y23500D02*X20803Y23580D01* X20665Y23500D02*X20526Y23580D01* X20685Y21500D02*Y21340D01* Y21500D02*X20823Y21580D01* X20685Y21500D02*X20546Y21580D01* X20705Y19500D02*Y19340D01* Y19500D02*X20843Y19580D01* X20705Y19500D02*X20566Y19580D01* X20725Y17500D02*Y17340D01* Y17500D02*X20863Y17580D01* X20725Y17500D02*X20586Y17580D01* X20745Y15500D02*Y15340D01* Y15500D02*X20883Y15580D01* X20745Y15500D02*X20606Y15580D01* X20765Y13500D02*Y13340D01* Y13500D02*X20903Y13580D01* X20765Y13500D02*X20626Y13580D01* X20785Y11500D02*Y11340D01* Y11500D02*X20923Y11580D01* X20785Y11500D02*X20646Y11580D01* X20805Y9500D02*Y9340D01* Y9500D02*X20943Y9580D01* X20805Y9500D02*X20666Y9580D01* X20825Y7500D02*Y7340D01* Y7500D02*X20963Y7580D01* X20825Y7500D02*X20686Y7580D01* X20845Y5500D02*Y5340D01* Y5500D02*X20983Y5580D01* X20845Y5500D02*X20706Y5580D01* X20865Y3500D02*Y3340D01* Y3500D02*X21003Y3580D01* X20865Y3500D02*X20726Y3580D01* X20885Y1500D02*Y1340D01* Y1500D02*X21023Y1580D01* X20885Y1500D02*X20746Y1580D01* X22505Y39500D02*Y39340D01* Y39500D02*X22643Y39580D01* X22505Y39500D02*X22366Y39580D01* X22525Y37500D02*Y37340D01* Y37500D02*X22663Y37580D01* X22525Y37500D02*X22386Y37580D01* X22545Y35500D02*Y35340D01* Y35500D02*X22683Y35580D01* X22545Y35500D02*X22406Y35580D01* X22565Y33500D02*Y33340D01* Y33500D02*X22703Y33580D01* X22565Y33500D02*X22426Y33580D01* X22585Y31500D02*Y31340D01* Y31500D02*X22723Y31580D01* X22585Y31500D02*X22446Y31580D01* X22605Y29500D02*Y29340D01* Y29500D02*X22743Y29580D01* X22605Y29500D02*X22466Y29580D01* X22625Y27500D02*Y27340D01* Y27500D02*X22763Y27580D01* X22625Y27500D02*X22486Y27580D01* X22645Y25500D02*Y25340D01* Y25500D02*X22783Y25580D01* X22645Y25500D02*X22506Y25580D01* X22665Y23500D02*Y23340D01* Y23500D02*X22803Y23580D01* X22665Y23500D02*X22526Y23580D01* X22685Y21500D02*Y21340D01* Y21500D02*X22823Y21580D01* X22685Y21500D02*X22546Y21580D01* X22705Y19500D02*Y19340D01* Y19500D02*X22843Y19580D01* X22705Y19500D02*X22566Y19580D01* X22725Y17500D02*Y17340D01* Y17500D02*X22863Y17580D01* X22725Y17500D02*X22586Y17580D01* X22745Y15500D02*Y15340D01* Y15500D02*X22883Y15580D01* X22745Y15500D02*X22606Y15580D01* X22765Y13500D02*Y13340D01* Y13500D02*X22903Y13580D01* X22765Y13500D02*X22626Y13580D01* X22785Y11500D02*Y11340D01* Y11500D02*X22923Y11580D01* X22785Y11500D02*X22646Y11580D01* X22805Y9500D02*Y9340D01* Y9500D02*X22943Y9580D01* X22805Y9500D02*X22666Y9580D01* X22825Y7500D02*Y7340D01* Y7500D02*X22963Y7580D01* X22825Y7500D02*X22686Y7580D01* X22845Y5500D02*Y5340D01* Y5500D02*X22983Y5580D01* X22845Y5500D02*X22706Y5580D01* X22865Y3500D02*Y3340D01* Y3500D02*X23003Y3580D01* X22865Y3500D02*X22726Y3580D01* X22885Y1500D02*Y1340D01* Y1500D02*X23023Y1580D01* X22885Y1500D02*X22746Y1580D01* X24505Y39500D02*Y39340D01* Y39500D02*X24643Y39580D01* X24505Y39500D02*X24366Y39580D01* X24525Y37500D02*Y37340D01* Y37500D02*X24663Y37580D01* X24525Y37500D02*X24386Y37580D01* X24545Y35500D02*Y35340D01* Y35500D02*X24683Y35580D01* X24545Y35500D02*X24406Y35580D01* X24565Y33500D02*Y33340D01* Y33500D02*X24703Y33580D01* X24565Y33500D02*X24426Y33580D01* X24585Y31500D02*Y31340D01* Y31500D02*X24723Y31580D01* X24585Y31500D02*X24446Y31580D01* X24605Y29500D02*Y29340D01* Y29500D02*X24743Y29580D01* X24605Y29500D02*X24466Y29580D01* X24625Y27500D02*Y27340D01* Y27500D02*X24763Y27580D01* X24625Y27500D02*X24486Y27580D01* X24645Y25500D02*Y25340D01* Y25500D02*X24783Y25580D01* X24645Y25500D02*X24506Y25580D01* X24665Y23500D02*Y23340D01* Y23500D02*X24803Y23580D01* X24665Y23500D02*X24526Y23580D01* X24685Y21500D02*Y21340D01* Y21500D02*X24823Y21580D01* X24685Y21500D02*X24546Y21580D01* X24705Y19500D02*Y19340D01* Y19500D02*X24843Y19580D01* X24705Y19500D02*X24566Y19580D01* X24725Y17500D02*Y17340D01* Y17500D02*X24863Y17580D01* X24725Y17500D02*X24586Y17580D01* X24745Y15500D02*Y15340D01* Y15500D02*X24883Y15580D01* X24745Y15500D02*X24606Y15580D01* X24765Y13500D02*Y13340D01* Y13500D02*X24903Y13580D01* X24765Y13500D02*X24626Y13580D01* X24785Y11500D02*Y11340D01* Y11500D02*X24923Y11580D01* X24785Y11500D02*X24646Y11580D01* X24805Y9500D02*Y9340D01* Y9500D02*X24943Y9580D01* X24805Y9500D02*X24666Y9580D01* X24825Y7500D02*Y7340D01* Y7500D02*X24963Y7580D01* X24825Y7500D02*X24686Y7580D01* X24845Y5500D02*Y5340D01* Y5500D02*X24983Y5580D01* X24845Y5500D02*X24706Y5580D01* X24865Y3500D02*Y3340D01* Y3500D02*X25003Y3580D01* X24865Y3500D02*X24726Y3580D01* X24885Y1500D02*Y1340D01* Y1500D02*X25023Y1580D01* X24885Y1500D02*X24746Y1580D01* X26505Y39500D02*Y39340D01* Y39500D02*X26643Y39580D01* X26505Y39500D02*X26366Y39580D01* X26525Y37500D02*Y37340D01* Y37500D02*X26663Y37580D01* X26525Y37500D02*X26386Y37580D01* X26545Y35500D02*Y35340D01* Y35500D02*X26683Y35580D01* X26545Y35500D02*X26406Y35580D01* X26565Y33500D02*Y33340D01* Y33500D02*X26703Y33580D01* X26565Y33500D02*X26426Y33580D01* X26585Y31500D02*Y31340D01* Y31500D02*X26723Y31580D01* X26585Y31500D02*X26446Y31580D01* X26605Y29500D02*Y29340D01* Y29500D02*X26743Y29580D01* X26605Y29500D02*X26466Y29580D01* X26625Y27500D02*Y27340D01* Y27500D02*X26763Y27580D01* X26625Y27500D02*X26486Y27580D01* X26645Y25500D02*Y25340D01* Y25500D02*X26783Y25580D01* X26645Y25500D02*X26506Y25580D01* X26665Y23500D02*Y23340D01* Y23500D02*X26803Y23580D01* X26665Y23500D02*X26526Y23580D01* X26685Y21500D02*Y21340D01* Y21500D02*X26823Y21580D01* X26685Y21500D02*X26546Y21580D01* X26705Y19500D02*Y19340D01* Y19500D02*X26843Y19580D01* X26705Y19500D02*X26566Y19580D01* X26725Y17500D02*Y17340D01* Y17500D02*X26863Y17580D01* X26725Y17500D02*X26586Y17580D01* X26745Y15500D02*Y15340D01* Y15500D02*X26883Y15580D01* X26745Y15500D02*X26606Y15580D01* X26765Y13500D02*Y13340D01* Y13500D02*X26903Y13580D01* X26765Y13500D02*X26626Y13580D01* X26785Y11500D02*Y11340D01* Y11500D02*X26923Y11580D01* X26785Y11500D02*X26646Y11580D01* X26805Y9500D02*Y9340D01* Y9500D02*X26943Y9580D01* X26805Y9500D02*X26666Y9580D01* X26825Y7500D02*Y7340D01* Y7500D02*X26963Y7580D01* X26825Y7500D02*X26686Y7580D01* X26845Y5500D02*Y5340D01* Y5500D02*X26983Y5580D01* X26845Y5500D02*X26706Y5580D01* X26865Y3500D02*Y3340D01* Y3500D02*X27003Y3580D01* X26865Y3500D02*X26726Y3580D01* X26885Y1500D02*Y1340D01* Y1500D02*X27023Y1580D01* X26885Y1500D02*X26746Y1580D01* X28505Y39500D02*Y39340D01* Y39500D02*X28643Y39580D01* X28505Y39500D02*X28366Y39580D01* X28525Y37500D02*Y37340D01* Y37500D02*X28663Y37580D01* X28525Y37500D02*X28386Y37580D01* X28545Y35500D02*Y35340D01* Y35500D02*X28683Y35580D01* X28545Y35500D02*X28406Y35580D01* X28565Y33500D02*Y33340D01* Y33500D02*X28703Y33580D01* X28565Y33500D02*X28426Y33580D01* X28585Y31500D02*Y31340D01* Y31500D02*X28723Y31580D01* X28585Y31500D02*X28446Y31580D01* X28605Y29500D02*Y29340D01* Y29500D02*X28743Y29580D01* X28605Y29500D02*X28466Y29580D01* X28625Y27500D02*Y27340D01* Y27500D02*X28763Y27580D01* X28625Y27500D02*X28486Y27580D01* X28645Y25500D02*Y25340D01* Y25500D02*X28783Y25580D01* X28645Y25500D02*X28506Y25580D01* X28665Y23500D02*Y23340D01* Y23500D02*X28803Y23580D01* X28665Y23500D02*X28526Y23580D01* X28685Y21500D02*Y21340D01* Y21500D02*X28823Y21580D01* X28685Y21500D02*X28546Y21580D01* X28705Y19500D02*Y19340D01* Y19500D02*X28843Y19580D01* X28705Y19500D02*X28566Y19580D01* X28725Y17500D02*Y17340D01* Y17500D02*X28863Y17580D01* X28725Y17500D02*X28586Y17580D01* X28745Y15500D02*Y15340D01* Y15500D02*X28883Y15580D01* X28745Y15500D02*X28606Y15580D01* X28765Y13500D02*Y13340D01* Y13500D02*X28903Y13580D01* X28765Y13500D02*X28626Y13580D01* X28785Y11500D02*Y11340D01* Y11500D02*X28923Y11580D01* X28785Y11500D02*X28646Y11580D01* X28805Y9500D02*Y9340D01* Y9500D02*X28943Y9580D01* X28805Y9500D02*X28666Y9580D01* X28825Y7500D02*Y7340D01* Y7500D02*X28963Y7580D01* X28825Y7500D02*X28686Y7580D01* X28845Y5500D02*Y5340D01* Y5500D02*X28983Y5580D01* X28845Y5500D02*X28706Y5580D01* X28865Y3500D02*Y3340D01* Y3500D02*X29003Y3580D01* X28865Y3500D02*X28726Y3580D01* X28885Y1500D02*Y1340D01* Y1500D02*X29023Y1580D01* X28885Y1500D02*X28746Y1580D01* X30505Y39500D02*Y39340D01* Y39500D02*X30643Y39580D01* X30505Y39500D02*X30366Y39580D01* X30525Y37500D02*Y37340D01* Y37500D02*X30663Y37580D01* X30525Y37500D02*X30386Y37580D01* X30545Y35500D02*Y35340D01* Y35500D02*X30683Y35580D01* X30545Y35500D02*X30406Y35580D01* X30565Y33500D02*Y33340D01* Y33500D02*X30703Y33580D01* X30565Y33500D02*X30426Y33580D01* X30585Y31500D02*Y31340D01* Y31500D02*X30723Y31580D01* X30585Y31500D02*X30446Y31580D01* X30605Y29500D02*Y29340D01* Y29500D02*X30743Y29580D01* X30605Y29500D02*X30466Y29580D01* X30625Y27500D02*Y27340D01* Y27500D02*X30763Y27580D01* X30625Y27500D02*X30486Y27580D01* X30645Y25500D02*Y25340D01* Y25500D02*X30783Y25580D01* X30645Y25500D02*X30506Y25580D01* X30665Y23500D02*Y23340D01* Y23500D02*X30803Y23580D01* X30665Y23500D02*X30526Y23580D01* X30685Y21500D02*Y21340D01* Y21500D02*X30823Y21580D01* X30685Y21500D02*X30546Y21580D01* X30705Y19500D02*Y19340D01* Y19500D02*X30843Y19580D01* X30705Y19500D02*X30566Y19580D01* X30725Y17500D02*Y17340D01* Y17500D02*X30863Y17580D01* X30725Y17500D02*X30586Y17580D01* X30745Y15500D02*Y15340D01* Y15500D02*X30883Y15580D01* X30745Y15500D02*X30606Y15580D01* X30765Y13500D02*Y13340D01* Y13500D02*X30903Y13580D01* X30765Y13500D02*X30626Y13580D01* X30785Y11500D02*Y11340D01* Y11500D02*X30923Y11580D01* X30785Y11500D02*X30646Y11580D01* X30805Y9500D02*Y9340D01* Y9500D02*X30943Y9580D01* X30805Y9500D02*X30666Y9580D01* X30825Y7500D02*Y7340D01* Y7500D02*X30963Y7580D01* X30825Y7500D02*X30686Y7580D01* X30845Y5500D02*Y5340D01* Y5500D02*X30983Y5580D01* X30845Y5500D02*X30706Y5580D01* X30865Y3500D02*Y3340D01* Y3500D02*X31003Y3580D01* X30865Y3500D02*X30726Y3580D01* X30885Y1500D02*Y1340D01* Y1500D02*X31023Y1580D01* X30885Y1500D02*X30746Y1580D01* X32505Y39500D02*Y39340D01* Y39500D02*X32643Y39580D01* X32505Y39500D02*X32366Y39580D01* X32525Y37500D02*Y37340D01* Y37500D02*X32663Y37580D01* X32525Y37500D02*X32386Y37580D01* X32545Y35500D02*Y35340D01* Y35500D02*X32683Y35580D01* X32545Y35500D02*X32406Y35580D01* X32565Y33500D02*Y33340D01* Y33500D02*X32703Y33580D01* X32565Y33500D02*X32426Y33580D01* X32585Y31500D02*Y31340D01* Y31500D02*X32723Y31580D01* X32585Y31500D02*X32446Y31580D01* X32605Y29500D02*Y29340D01* Y29500D02*X32743Y29580D01* X32605Y29500D02*X32466Y29580D01* X32625Y27500D02*Y27340D01* Y27500D02*X32763Y27580D01* X32625Y27500D02*X32486Y27580D01* X32645Y25500D02*Y25340D01* Y25500D02*X32783Y25580D01* X32645Y25500D02*X32506Y25580D01* X32665Y23500D02*Y23340D01* Y23500D02*X32803Y23580D01* X32665Y23500D02*X32526Y23580D01* X32685Y21500D02*Y21340D01* Y21500D02*X32823Y21580D01* X32685Y21500D02*X32546Y21580D01* X32705Y19500D02*Y19340D01* Y19500D02*X32843Y19580D01* X32705Y19500D02*X32566Y19580D01* X32725Y17500D02*Y17340D01* Y17500D02*X32863Y17580D01* X32725Y17500D02*X32586Y17580D01* X32745Y15500D02*Y15340D01* Y15500D02*X32883Y15580D01* X32745Y15500D02*X32606Y15580D01* X32765Y13500D02*Y13340D01* Y13500D02*X32903Y13580D01* X32765Y13500D02*X32626Y13580D01* X32785Y11500D02*Y11340D01* Y11500D02*X32923Y11580D01* X32785Y11500D02*X32646Y11580D01* X32805Y9500D02*Y9340D01* Y9500D02*X32943Y9580D01* X32805Y9500D02*X32666Y9580D01* X32825Y7500D02*Y7340D01* Y7500D02*X32963Y7580D01* X32825Y7500D02*X32686Y7580D01* X32845Y5500D02*Y5340D01* Y5500D02*X32983Y5580D01* X32845Y5500D02*X32706Y5580D01* X32865Y3500D02*Y3340D01* Y3500D02*X33003Y3580D01* X32865Y3500D02*X32726Y3580D01* X32885Y1500D02*Y1340D01* Y1500D02*X33023Y1580D01* X32885Y1500D02*X32746Y1580D01* X34505Y39500D02*Y39340D01* Y39500D02*X34643Y39580D01* X34505Y39500D02*X34366Y39580D01* X34525Y37500D02*Y37340D01* Y37500D02*X34663Y37580D01* X34525Y37500D02*X34386Y37580D01* X34545Y35500D02*Y35340D01* Y35500D02*X34683Y35580D01* X34545Y35500D02*X34406Y35580D01* X34565Y33500D02*Y33340D01* Y33500D02*X34703Y33580D01* X34565Y33500D02*X34426Y33580D01* X34585Y31500D02*Y31340D01* Y31500D02*X34723Y31580D01* X34585Y31500D02*X34446Y31580D01* X34605Y29500D02*Y29340D01* Y29500D02*X34743Y29580D01* X34605Y29500D02*X34466Y29580D01* X34625Y27500D02*Y27340D01* Y27500D02*X34763Y27580D01* X34625Y27500D02*X34486Y27580D01* X34645Y25500D02*Y25340D01* Y25500D02*X34783Y25580D01* X34645Y25500D02*X34506Y25580D01* X34665Y23500D02*Y23340D01* Y23500D02*X34803Y23580D01* X34665Y23500D02*X34526Y23580D01* X34685Y21500D02*Y21340D01* Y21500D02*X34823Y21580D01* X34685Y21500D02*X34546Y21580D01* X34705Y19500D02*Y19340D01* Y19500D02*X34843Y19580D01* X34705Y19500D02*X34566Y19580D01* X34725Y17500D02*Y17340D01* Y17500D02*X34863Y17580D01* X34725Y17500D02*X34586Y17580D01* X34745Y15500D02*Y15340D01* Y15500D02*X34883Y15580D01* X34745Y15500D02*X34606Y15580D01* X34765Y13500D02*Y13340D01* Y13500D02*X34903Y13580D01* X34765Y13500D02*X34626Y13580D01* X34785Y11500D02*Y11340D01* Y11500D02*X34923Y11580D01* X34785Y11500D02*X34646Y11580D01* X34805Y9500D02*Y9340D01* Y9500D02*X34943Y9580D01* X34805Y9500D02*X34666Y9580D01* X34825Y7500D02*Y7340D01* Y7500D02*X34963Y7580D01* X34825Y7500D02*X34686Y7580D01* X34845Y5500D02*Y5340D01* Y5500D02*X34983Y5580D01* X34845Y5500D02*X34706Y5580D01* X34865Y3500D02*Y3340D01* Y3500D02*X35003Y3580D01* X34865Y3500D02*X34726Y3580D01* X34885Y1500D02*Y1340D01* Y1500D02*X35023Y1580D01* X34885Y1500D02*X34746Y1580D01* X1500Y45625D02*Y45465D01* Y45625D02*X1638Y45705D01* X1500Y45625D02*X1361Y45705D01* G54D15*X13500Y45850D02*Y45775D01* X13650Y45625D01* X13800Y45775D01* Y45850D02*Y45775D01* X13650Y45625D02*Y45250D01* X13980Y45550D02*X14205D01* X13980Y45250D02*X14280D01* X13980Y45850D02*Y45250D01* Y45850D02*X14280D01* X14760D02*X14835Y45775D01* X14535Y45850D02*X14760D01* X14460Y45775D02*X14535Y45850D01* X14460Y45775D02*Y45625D01* X14535Y45550D01* X14760D01* X14835Y45475D01* Y45325D01* X14760Y45250D02*X14835Y45325D01* X14535Y45250D02*X14760D01* X14460Y45325D02*X14535Y45250D01* X13500Y45074D02*X15015D01* X9800Y45775D02*X9875Y45850D01* X10025D01* X10100Y45775D01* Y45325D01* X10025Y45250D02*X10100Y45325D01* X9875Y45250D02*X10025D01* X9800Y45325D02*X9875Y45250D01* Y45550D02*X10100D01* X10505Y45850D02*X10580Y45775D01* X10355Y45850D02*X10505D01* X10280Y45775D02*X10355Y45850D01* X10280Y45775D02*Y45325D01* X10355Y45250D01* X10505Y45550D02*X10580Y45475D01* X10280Y45550D02*X10505D01* X10355Y45250D02*X10505D01* X10580Y45325D01* Y45475D02*Y45325D01* X10760D02*X10835Y45250D01* X10760Y45775D02*Y45325D01* Y45775D02*X10835Y45850D01* X10985D01* X11060Y45775D01* Y45325D01* X10985Y45250D02*X11060Y45325D01* X10835Y45250D02*X10985D01* X10760Y45400D02*X11060Y45700D01* X9800Y45074D02*X11240D01* X4500Y45325D02*X4575Y45250D01* X4500Y45775D02*Y45325D01* Y45775D02*X4575Y45850D01* X4725D01* X4800Y45775D01* Y45325D01* X4725Y45250D02*X4800Y45325D01* X4575Y45250D02*X4725D01* X4500Y45400D02*X4800Y45700D01* X4980Y45250D02*X5055D01* X5235Y45325D02*X5310Y45250D01* X5235Y45775D02*Y45325D01* Y45775D02*X5310Y45850D01* X5460D01* X5535Y45775D01* Y45325D01* X5460Y45250D02*X5535Y45325D01* X5310Y45250D02*X5460D01* X5235Y45400D02*X5535Y45700D01* X5715Y45775D02*X5790Y45850D01* X6015D01* X6090Y45775D01* Y45625D01* X5715Y45250D02*X6090Y45625D01* X5715Y45250D02*X6090D01* X6270Y45325D02*X6345Y45250D01* X6270Y45475D02*Y45325D01* Y45475D02*X6345Y45550D01* X6495D01* X6570Y45475D01* Y45325D01* X6495Y45250D02*X6570Y45325D01* X6345Y45250D02*X6495D01* X6270Y45625D02*X6345Y45550D01* X6270Y45775D02*Y45625D01* Y45775D02*X6345Y45850D01* X6495D01* X6570Y45775D01* Y45625D01* X6495Y45550D02*X6570Y45625D01* X4500Y45074D02*X6750D01* X300Y47350D02*X375Y47275D01* X75Y47350D02*X300D01* X0Y47275D02*X75Y47350D01* X0Y47275D02*Y47125D01* X75Y47050D01* X300D01* X375Y46975D01* Y46825D01* X300Y46750D02*X375Y46825D01* X75Y46750D02*X300D01* X0Y46825D02*X75Y46750D01* X555Y47050D02*Y46825D01* X630Y46750D01* X855Y47050D02*Y46600D01* X780Y46525D02*X855Y46600D01* X630Y46525D02*X780D01* X555Y46600D02*X630Y46525D01* Y46750D02*X780D01* X855Y46825D01* X1110Y46975D02*Y46750D01* Y46975D02*X1185Y47050D01* X1260D01* X1335Y46975D01* Y46750D01* Y46975D02*X1410Y47050D01* X1485D01* X1560Y46975D01* Y46750D01* X1035Y47050D02*X1110Y46975D01* X1740Y47350D02*Y46750D01* Y46825D02*X1815Y46750D01* X1965D01* X2040Y46825D01* Y46975D02*Y46825D01* X1965Y47050D02*X2040Y46975D01* X1815Y47050D02*X1965D01* X1740Y46975D02*X1815Y47050D01* X2220Y46975D02*Y46825D01* Y46975D02*X2295Y47050D01* X2445D01* X2520Y46975D01* Y46825D01* X2445Y46750D02*X2520Y46825D01* X2295Y46750D02*X2445D01* X2220Y46825D02*X2295Y46750D01* X2700Y47350D02*Y46825D01* X2775Y46750D01* X4175Y47350D02*Y46750D01* X4400Y47350D02*X4475Y47275D01* Y46825D01* X4400Y46750D02*X4475Y46825D01* X4100Y46750D02*X4400D01* X4100Y47350D02*X4400D01* X4655Y47200D02*Y47125D01* Y46975D02*Y46750D01* X5030Y47050D02*X5105Y46975D01* X4880Y47050D02*X5030D01* X4805Y46975D02*X4880Y47050D01* X4805Y46975D02*Y46825D01* X4880Y46750D01* X5105Y47050D02*Y46825D01* X5180Y46750D01* X4880D02*X5030D01* X5105Y46825D01* X5435Y46975D02*Y46750D01* Y46975D02*X5510Y47050D01* X5585D01* X5660Y46975D01* Y46750D01* Y46975D02*X5735Y47050D01* X5810D01* X5885Y46975D01* Y46750D01* X5360Y47050D02*X5435Y46975D01* X6065Y46750D02*X6140D01* X6590Y46825D02*X6665Y46750D01* X6590Y47275D02*X6665Y47350D01* X6590Y47275D02*Y46825D01* X6845Y47350D02*X6995D01* X6920D02*Y46750D01* X6845D02*X6995D01* X7251Y46975D02*Y46750D01* Y46975D02*X7326Y47050D01* X7401D01* X7476Y46975D01* Y46750D01* X7176Y47050D02*X7251Y46975D01* X7731Y47050D02*X7956D01* X7656Y46975D02*X7731Y47050D01* X7656Y46975D02*Y46825D01* X7731Y46750D01* X7956D01* X8136Y47350D02*Y46750D01* Y46975D02*X8211Y47050D01* X8361D01* X8436Y46975D01* Y46750D01* X8616Y47350D02*X8691Y47275D01* Y46825D01* X8616Y46750D02*X8691Y46825D01* X9575Y46750D02*X9800D01* X9500Y46825D02*X9575Y46750D01* X9500Y47275D02*Y46825D01* Y47275D02*X9575Y47350D01* X9800D01* X9980Y46975D02*Y46825D01* Y46975D02*X10055Y47050D01* X10205D01* X10280Y46975D01* Y46825D01* X10205Y46750D02*X10280Y46825D01* X10055Y46750D02*X10205D01* X9980Y46825D02*X10055Y46750D01* X10460Y47050D02*Y46825D01* X10535Y46750D01* X10685D01* X10760Y46825D01* Y47050D02*Y46825D01* X11015Y46975D02*Y46750D01* Y46975D02*X11090Y47050D01* X11165D01* X11240Y46975D01* Y46750D01* X10940Y47050D02*X11015Y46975D01* X11495Y47350D02*Y46825D01* X11570Y46750D01* X11420Y47125D02*X11570D01* X13075Y47350D02*Y46750D01* X13000Y47350D02*X13300D01* X13375Y47275D01* Y47125D01* X13300Y47050D02*X13375Y47125D01* X13075Y47050D02*X13300D01* X13555Y47350D02*Y46825D01* X13630Y46750D01* X14005Y47050D02*X14080Y46975D01* X13855Y47050D02*X14005D01* X13780Y46975D02*X13855Y47050D01* X13780Y46975D02*Y46825D01* X13855Y46750D01* X14080Y47050D02*Y46825D01* X14155Y46750D01* X13855D02*X14005D01* X14080Y46825D01* X14410Y47350D02*Y46825D01* X14485Y46750D01* X14335Y47125D02*X14485D01* X14710Y46750D02*X14935D01* X14635Y46825D02*X14710Y46750D01* X14635Y46975D02*Y46825D01* Y46975D02*X14710Y47050D01* X14860D01* X14935Y46975D01* X14635Y46900D02*X14935D01* Y46975D02*Y46900D01* X15415Y47350D02*Y46750D01* X15340D02*X15415Y46825D01* X15190Y46750D02*X15340D01* X15115Y46825D02*X15190Y46750D01* X15115Y46975D02*Y46825D01* Y46975D02*X15190Y47050D01* X15340D01* X15415Y46975D01* X15745Y47050D02*Y46975D01* Y46825D02*Y46750D01* X15595Y47275D02*Y47200D01* Y47275D02*X15670Y47350D01* X15820D01* X15895Y47275D01* Y47200D01* X15745Y47050D02*X15895Y47200D01* X0Y48850D02*X300D01* X150D02*Y48250D01* X480Y48850D02*Y48250D01* Y48475D02*X555Y48550D01* X705D01* X780Y48475D01* Y48250D01* X1035D02*X1260D01* X960Y48325D02*X1035Y48250D01* X960Y48475D02*Y48325D01* Y48475D02*X1035Y48550D01* X1185D01* X1260Y48475D01* X960Y48400D02*X1260D01* Y48475D02*Y48400D01* X1515Y48475D02*Y48250D01* Y48475D02*X1590Y48550D01* X1740D01* X1440D02*X1515Y48475D01* X1995Y48250D02*X2220D01* X1920Y48325D02*X1995Y48250D01* X1920Y48475D02*Y48325D01* Y48475D02*X1995Y48550D01* X2145D01* X2220Y48475D01* X1920Y48400D02*X2220D01* Y48475D02*Y48400D01* X2895Y48550D02*X2970Y48475D01* X2745Y48550D02*X2895D01* X2670Y48475D02*X2745Y48550D01* X2670Y48475D02*Y48325D01* X2745Y48250D01* X2970Y48550D02*Y48325D01* X3045Y48250D01* X2745D02*X2895D01* X2970Y48325D01* X3300Y48475D02*Y48250D01* Y48475D02*X3375Y48550D01* X3525D01* X3225D02*X3300Y48475D01* X3781Y48250D02*X4006D01* X3706Y48325D02*X3781Y48250D01* X3706Y48475D02*Y48325D01* Y48475D02*X3781Y48550D01* X3931D01* X4006Y48475D01* X3706Y48400D02*X4006D01* Y48475D02*Y48400D01* X4531Y48250D02*X4681D01* X4606Y48850D02*Y48250D01* X4456Y48700D02*X4606Y48850D01* X5431D02*Y48250D01* X5356D02*X5431Y48325D01* X5206Y48250D02*X5356D01* X5131Y48325D02*X5206Y48250D01* X5131Y48475D02*Y48325D01* Y48475D02*X5206Y48550D01* X5356D01* X5431Y48475D01* X5611Y48700D02*Y48625D01* Y48475D02*Y48250D01* X5836Y48775D02*Y48250D01* Y48775D02*X5911Y48850D01* X5986D01* X5761Y48550D02*X5911D01* X6211Y48775D02*Y48250D01* Y48775D02*X6286Y48850D01* X6361D01* X6136Y48550D02*X6286D01* X6586Y48250D02*X6811D01* X6511Y48325D02*X6586Y48250D01* X6511Y48475D02*Y48325D01* Y48475D02*X6586Y48550D01* X6736D01* X6811Y48475D01* X6511Y48400D02*X6811D01* Y48475D02*Y48400D01* X7067Y48475D02*Y48250D01* Y48475D02*X7142Y48550D01* X7292D01* X6992D02*X7067Y48475D01* X7547Y48250D02*X7772D01* X7472Y48325D02*X7547Y48250D01* X7472Y48475D02*Y48325D01* Y48475D02*X7547Y48550D01* X7697D01* X7772Y48475D01* X7472Y48400D02*X7772D01* Y48475D02*Y48400D01* X8027Y48475D02*Y48250D01* Y48475D02*X8102Y48550D01* X8177D01* X8252Y48475D01* Y48250D01* X7952Y48550D02*X8027Y48475D01* X8507Y48850D02*Y48325D01* X8582Y48250D01* X8432Y48625D02*X8582D01* X9302Y48850D02*Y48250D01* X9227D02*X9302Y48325D01* X9077Y48250D02*X9227D01* X9002Y48325D02*X9077Y48250D01* X9002Y48475D02*Y48325D01* Y48475D02*X9077Y48550D01* X9227D01* X9302Y48475D01* X9557D02*Y48250D01* Y48475D02*X9632Y48550D01* X9782D01* X9482D02*X9557Y48475D01* X9963Y48700D02*Y48625D01* Y48475D02*Y48250D01* X10113Y48850D02*Y48325D01* X10188Y48250D01* X10338Y48850D02*Y48325D01* X10413Y48250D01* X10908D02*X11133D01* X11208Y48325D01* X11133Y48400D02*X11208Y48325D01* X10908Y48400D02*X11133D01* X10833Y48475D02*X10908Y48400D01* X10833Y48475D02*X10908Y48550D01* X11133D01* X11208Y48475D01* X10833Y48325D02*X10908Y48250D01* X11388Y48700D02*Y48625D01* Y48475D02*Y48250D01* X11538Y48550D02*X11838D01* X11538Y48250D02*X11838Y48550D01* X11538Y48250D02*X11838D01* X12093D02*X12318D01* X12018Y48325D02*X12093Y48250D01* X12018Y48475D02*Y48325D01* Y48475D02*X12093Y48550D01* X12243D01* X12318Y48475D01* X12018Y48400D02*X12318D01* Y48475D02*Y48400D01* X12574Y48250D02*X12799D01* X12874Y48325D01* X12799Y48400D02*X12874Y48325D01* X12574Y48400D02*X12799D01* X12499Y48475D02*X12574Y48400D01* X12499Y48475D02*X12574Y48550D01* X12799D01* X12874Y48475D01* X12499Y48325D02*X12574Y48250D01* X13324Y48550D02*Y48325D01* X13399Y48250D01* X13549D01* X13624Y48325D01* Y48550D02*Y48325D01* X13879Y48250D02*X14104D01* X14179Y48325D01* X14104Y48400D02*X14179Y48325D01* X13879Y48400D02*X14104D01* X13804Y48475D02*X13879Y48400D01* X13804Y48475D02*X13879Y48550D01* X14104D01* X14179Y48475D01* X13804Y48325D02*X13879Y48250D01* X14434D02*X14659D01* X14359Y48325D02*X14434Y48250D01* X14359Y48475D02*Y48325D01* Y48475D02*X14434Y48550D01* X14584D01* X14659Y48475D01* X14359Y48400D02*X14659D01* Y48475D02*Y48400D01* X15139Y48850D02*Y48250D01* X15064D02*X15139Y48325D01* X14914Y48250D02*X15064D01* X14839Y48325D02*X14914Y48250D01* X14839Y48475D02*Y48325D01* Y48475D02*X14914Y48550D01* X15064D01* X15139Y48475D01* X15589Y48700D02*Y48625D01* Y48475D02*Y48250D01* X15814Y48475D02*Y48250D01* Y48475D02*X15889Y48550D01* X15964D01* X16039Y48475D01* Y48250D01* X15739Y48550D02*X15814Y48475D01* X16565Y48850D02*Y48325D01* X16640Y48250D01* X16490Y48625D02*X16640D01* X16790Y48850D02*Y48250D01* Y48475D02*X16865Y48550D01* X17015D01* X17090Y48475D01* Y48250D01* X17270Y48700D02*Y48625D01* Y48475D02*Y48250D01* X17495D02*X17720D01* X17795Y48325D01* X17720Y48400D02*X17795Y48325D01* X17495Y48400D02*X17720D01* X17420Y48475D02*X17495Y48400D01* X17420Y48475D02*X17495Y48550D01* X17720D01* X17795Y48475D01* X17420Y48325D02*X17495Y48250D01* X18245Y48850D02*Y48325D01* X18320Y48250D01* X18695Y48550D02*X18770Y48475D01* X18545Y48550D02*X18695D01* X18470Y48475D02*X18545Y48550D01* X18470Y48475D02*Y48325D01* X18545Y48250D01* X18770Y48550D02*Y48325D01* X18845Y48250D01* X18545D02*X18695D01* X18770Y48325D01* X19026Y48550D02*Y48325D01* X19101Y48250D01* X19326Y48550D02*Y48100D01* X19251Y48025D02*X19326Y48100D01* X19101Y48025D02*X19251D01* X19026Y48100D02*X19101Y48025D01* Y48250D02*X19251D01* X19326Y48325D01* X19506Y48475D02*Y48325D01* Y48475D02*X19581Y48550D01* X19731D01* X19806Y48475D01* Y48325D01* X19731Y48250D02*X19806Y48325D01* X19581Y48250D02*X19731D01* X19506Y48325D02*X19581Y48250D01* X19986Y48550D02*Y48325D01* X20061Y48250D01* X20211D01* X20286Y48325D01* Y48550D02*Y48325D01* X20541Y48850D02*Y48325D01* X20616Y48250D01* X20466Y48625D02*X20616D01* X20766Y48100D02*X20916Y48250D01* X21366Y48775D02*X21441Y48850D01* X21591D01* X21666Y48775D01* Y48325D01* X21591Y48250D02*X21666Y48325D01* X21441Y48250D02*X21591D01* X21366Y48325D02*X21441Y48250D01* Y48550D02*X21666D01* X22071Y48850D02*X22146Y48775D01* X21921Y48850D02*X22071D01* X21846Y48775D02*X21921Y48850D01* X21846Y48775D02*Y48325D01* X21921Y48250D01* X22071Y48550D02*X22146Y48475D01* X21846Y48550D02*X22071D01* X21921Y48250D02*X22071D01* X22146Y48325D01* Y48475D02*Y48325D01* X22327D02*X22402Y48250D01* X22327Y48775D02*Y48325D01* Y48775D02*X22402Y48850D01* X22552D01* X22627Y48775D01* Y48325D01* X22552Y48250D02*X22627Y48325D01* X22402Y48250D02*X22552D01* X22327Y48400D02*X22627Y48700D01* X23077Y48850D02*Y48250D01* Y48475D02*X23152Y48550D01* X23302D01* X23377Y48475D01* Y48250D01* X23557Y48475D02*Y48325D01* Y48475D02*X23632Y48550D01* X23782D01* X23857Y48475D01* Y48325D01* X23782Y48250D02*X23857Y48325D01* X23632Y48250D02*X23782D01* X23557Y48325D02*X23632Y48250D01* X24037Y48850D02*Y48325D01* X24112Y48250D01* X24337D02*X24562D01* X24262Y48325D02*X24337Y48250D01* X24262Y48475D02*Y48325D01* Y48475D02*X24337Y48550D01* X24487D01* X24562Y48475D01* X24262Y48400D02*X24562D01* Y48475D02*Y48400D01* X24817Y48250D02*X25042D01* X25117Y48325D01* X25042Y48400D02*X25117Y48325D01* X24817Y48400D02*X25042D01* X24742Y48475D02*X24817Y48400D01* X24742Y48475D02*X24817Y48550D01* X25042D01* X25117Y48475D01* X24742Y48325D02*X24817Y48250D01* X25642Y48850D02*Y48325D01* X25717Y48250D01* X25567Y48625D02*X25717D01* X25868Y48475D02*Y48325D01* Y48475D02*X25943Y48550D01* X26093D01* X26168Y48475D01* Y48325D01* X26093Y48250D02*X26168Y48325D01* X25943Y48250D02*X26093D01* X25868Y48325D02*X25943Y48250D01* X26423Y48850D02*Y48325D01* X26498Y48250D01* X26348Y48625D02*X26498D01* X26873Y48550D02*X26948Y48475D01* X26723Y48550D02*X26873D01* X26648Y48475D02*X26723Y48550D01* X26648Y48475D02*Y48325D01* X26723Y48250D01* X26948Y48550D02*Y48325D01* X27023Y48250D01* X26723D02*X26873D01* X26948Y48325D01* X27203Y48850D02*Y48325D01* X27278Y48250D01* G54D16*X0Y40000D02*X40000D01* X0D02*Y0D01* X40000Y40000D02*Y0D01* X0D02*X40000D01* G54D15*X20000Y41350D02*Y40750D01* Y41350D02*X20225Y41125D01* X20450Y41350D01* Y40750D01* X20855Y41050D02*X20930Y40975D01* X20705Y41050D02*X20855D01* X20630Y40975D02*X20705Y41050D01* X20630Y40975D02*Y40825D01* X20705Y40750D01* X20930Y41050D02*Y40825D01* X21005Y40750D01* X20705D02*X20855D01* X20930Y40825D01* X21185Y41050D02*X21485Y40750D01* X21185D02*X21485Y41050D01* X21665Y41200D02*Y41125D01* Y40975D02*Y40750D01* X21890Y40975D02*Y40750D01* Y40975D02*X21965Y41050D01* X22040D01* X22115Y40975D01* Y40750D01* Y40975D02*X22190Y41050D01* X22265D01* X22340Y40975D01* Y40750D01* X21815Y41050D02*X21890Y40975D01* X22520Y41050D02*Y40825D01* X22595Y40750D01* X22745D01* X22820Y40825D01* Y41050D02*Y40825D01* X23075Y40975D02*Y40750D01* Y40975D02*X23150Y41050D01* X23225D01* X23300Y40975D01* Y40750D01* Y40975D02*X23375Y41050D01* X23450D01* X23525Y40975D01* Y40750D01* X23000Y41050D02*X23075Y40975D01* X24051Y41350D02*Y40750D01* X24276Y41350D02*X24351Y41275D01* Y40825D01* X24276Y40750D02*X24351Y40825D01* X23976Y40750D02*X24276D01* X23976Y41350D02*X24276D01* X24531Y41200D02*Y41125D01* Y40975D02*Y40750D01* X24756Y40975D02*Y40750D01* Y40975D02*X24831Y41050D01* X24906D01* X24981Y40975D01* Y40750D01* Y40975D02*X25056Y41050D01* X25131D01* X25206Y40975D01* Y40750D01* X24681Y41050D02*X24756Y40975D01* X25461Y40750D02*X25686D01* X25386Y40825D02*X25461Y40750D01* X25386Y40975D02*Y40825D01* Y40975D02*X25461Y41050D01* X25611D01* X25686Y40975D01* X25386Y40900D02*X25686D01* Y40975D02*Y40900D01* X25941Y40975D02*Y40750D01* Y40975D02*X26016Y41050D01* X26091D01* X26166Y40975D01* Y40750D01* X25866Y41050D02*X25941Y40975D01* X26421Y40750D02*X26646D01* X26721Y40825D01* X26646Y40900D02*X26721Y40825D01* X26421Y40900D02*X26646D01* X26346Y40975D02*X26421Y40900D01* X26346Y40975D02*X26421Y41050D01* X26646D01* X26721Y40975D01* X26346Y40825D02*X26421Y40750D01* X26901Y41200D02*Y41125D01* Y40975D02*Y40750D01* X27052Y40975D02*Y40825D01* Y40975D02*X27127Y41050D01* X27277D01* X27352Y40975D01* Y40825D01* X27277Y40750D02*X27352Y40825D01* X27127Y40750D02*X27277D01* X27052Y40825D02*X27127Y40750D01* X27607Y40975D02*Y40750D01* Y40975D02*X27682Y41050D01* X27757D01* X27832Y40975D01* Y40750D01* X27532Y41050D02*X27607Y40975D01* X28087Y40750D02*X28312D01* X28387Y40825D01* X28312Y40900D02*X28387Y40825D01* X28087Y40900D02*X28312D01* X28012Y40975D02*X28087Y40900D01* X28012Y40975D02*X28087Y41050D01* X28312D01* X28387Y40975D01* X28012Y40825D02*X28087Y40750D01* X28567Y41125D02*X28642D01* X28567Y40975D02*X28642D01* X29092Y41050D02*X29392Y41350D01* X29092Y41050D02*X29467D01* X29392Y41350D02*Y40750D01* X29647Y40825D02*X29722Y40750D01* X29647Y41275D02*Y40825D01* Y41275D02*X29722Y41350D01* X29872D01* X29947Y41275D01* Y40825D01* X29872Y40750D02*X29947Y40825D01* X29722Y40750D02*X29872D01* X29647Y40900D02*X29947Y41200D01* X30128Y40825D02*X30203Y40750D01* X30128Y41275D02*Y40825D01* Y41275D02*X30203Y41350D01* X30353D01* X30428Y41275D01* Y40825D01* X30353Y40750D02*X30428Y40825D01* X30203Y40750D02*X30353D01* X30128Y40900D02*X30428Y41200D01* X30608Y40825D02*X30683Y40750D01* X30608Y41275D02*Y40825D01* Y41275D02*X30683Y41350D01* X30833D01* X30908Y41275D01* Y40825D01* X30833Y40750D02*X30908Y40825D01* X30683Y40750D02*X30833D01* X30608Y40900D02*X30908Y41200D01* X31433Y40975D02*Y40750D01* Y40975D02*X31508Y41050D01* X31583D01* X31658Y40975D01* Y40750D01* Y40975D02*X31733Y41050D01* X31808D01* X31883Y40975D01* Y40750D01* X31358Y41050D02*X31433Y40975D01* X32063Y41200D02*Y41125D01* Y40975D02*Y40750D01* X32213Y41350D02*Y40825D01* X32288Y40750D01* X32513D02*X32738D01* X32813Y40825D01* X32738Y40900D02*X32813Y40825D01* X32513Y40900D02*X32738D01* X32438Y40975D02*X32513Y40900D01* X32438Y40975D02*X32513Y41050D01* X32738D01* X32813Y40975D01* X32438Y40825D02*X32513Y40750D01* X33263Y41050D02*Y40825D01* X33338Y40750D01* X33413D01* X33488Y40825D01* Y41050D02*Y40825D01* X33563Y40750D01* X33638D01* X33713Y40825D01* Y41050D02*Y40825D01* X33894Y41200D02*Y41125D01* Y40975D02*Y40750D01* X34344Y41350D02*Y40750D01* X34269D02*X34344Y40825D01* X34119Y40750D02*X34269D01* X34044Y40825D02*X34119Y40750D01* X34044Y40975D02*Y40825D01* Y40975D02*X34119Y41050D01* X34269D01* X34344Y40975D01* X34599Y40750D02*X34824D01* X34524Y40825D02*X34599Y40750D01* X34524Y40975D02*Y40825D01* Y40975D02*X34599Y41050D01* X34749D01* X34824Y40975D01* X34524Y40900D02*X34824D01* Y40975D02*Y40900D01* X35004Y40600D02*X35154Y40750D01* X35604Y41050D02*X35904Y41350D01* X35604Y41050D02*X35979D01* X35904Y41350D02*Y40750D01* X36159Y40825D02*X36234Y40750D01* X36159Y41275D02*Y40825D01* Y41275D02*X36234Y41350D01* X36384D01* X36459Y41275D01* Y40825D01* X36384Y40750D02*X36459Y40825D01* X36234Y40750D02*X36384D01* X36159Y40900D02*X36459Y41200D01* X36639Y40825D02*X36714Y40750D01* X36639Y41275D02*Y40825D01* Y41275D02*X36714Y41350D01* X36864D01* X36939Y41275D01* Y40825D01* X36864Y40750D02*X36939Y40825D01* X36714Y40750D02*X36864D01* X36639Y40900D02*X36939Y41200D01* X37120Y40825D02*X37195Y40750D01* X37120Y41275D02*Y40825D01* Y41275D02*X37195Y41350D01* X37345D01* X37420Y41275D01* Y40825D01* X37345Y40750D02*X37420Y40825D01* X37195Y40750D02*X37345D01* X37120Y40900D02*X37420Y41200D01* X37945Y40975D02*Y40750D01* Y40975D02*X38020Y41050D01* X38095D01* X38170Y40975D01* Y40750D01* Y40975D02*X38245Y41050D01* X38320D01* X38395Y40975D01* Y40750D01* X37870Y41050D02*X37945Y40975D01* X38575Y41200D02*Y41125D01* Y40975D02*Y40750D01* X38725Y41350D02*Y40825D01* X38800Y40750D01* X39025D02*X39250D01* X39325Y40825D01* X39250Y40900D02*X39325Y40825D01* X39025Y40900D02*X39250D01* X38950Y40975D02*X39025Y40900D01* X38950Y40975D02*X39025Y41050D01* X39250D01* X39325Y40975D01* X38950Y40825D02*X39025Y40750D01* X39775Y41350D02*Y40750D01* Y40975D02*X39850Y41050D01* X40000D01* X40075Y40975D01* Y40750D01* X40256Y41200D02*Y41125D01* Y40975D02*Y40750D01* X40631Y41050D02*X40706Y40975D01* X40481Y41050D02*X40631D01* X40406Y40975D02*X40481Y41050D01* X40406Y40975D02*Y40825D01* X40481Y40750D01* X40631D01* X40706Y40825D01* X40406Y40600D02*X40481Y40525D01* X40631D01* X40706Y40600D01* Y41050D02*Y40600D01* X40886Y41350D02*Y40750D01* Y40975D02*X40961Y41050D01* X41111D01* X41186Y40975D01* Y40750D01* X4147Y-950D02*X4447D01* X4522Y-875D01* Y-725D02*Y-875D01* X4447Y-650D02*X4522Y-725D01* X4222Y-650D02*X4447D01* X4222Y-350D02*Y-950D01* X4147Y-350D02*X4447D01* X4522Y-425D01* Y-575D01* X4447Y-650D02*X4522Y-575D01* X4702Y-725D02*Y-875D01* Y-725D02*X4777Y-650D01* X4927D01* X5002Y-725D01* Y-875D01* X4927Y-950D02*X5002Y-875D01* X4777Y-950D02*X4927D01* X4702Y-875D02*X4777Y-950D01* X5407Y-650D02*X5482Y-725D01* X5257Y-650D02*X5407D01* X5182Y-725D02*X5257Y-650D01* X5182Y-725D02*Y-875D01* X5257Y-950D01* X5482Y-650D02*Y-875D01* X5557Y-950D01* X5257D02*X5407D01* X5482Y-875D01* X5813Y-725D02*Y-950D01* Y-725D02*X5888Y-650D01* X6038D01* X5738D02*X5813Y-725D01* X6518Y-350D02*Y-950D01* X6443D02*X6518Y-875D01* X6293Y-950D02*X6443D01* X6218Y-875D02*X6293Y-950D01* X6218Y-725D02*Y-875D01* Y-725D02*X6293Y-650D01* X6443D01* X6518Y-725D01* X6968D02*Y-875D01* Y-725D02*X7043Y-650D01* X7193D01* X7268Y-725D01* Y-875D01* X7193Y-950D02*X7268Y-875D01* X7043Y-950D02*X7193D01* X6968Y-875D02*X7043Y-950D01* X7448Y-650D02*Y-875D01* X7523Y-950D01* X7673D01* X7748Y-875D01* Y-650D02*Y-875D01* X8003Y-350D02*Y-875D01* X8078Y-950D01* X7928Y-575D02*X8078D01* X8228Y-350D02*Y-875D01* X8303Y-950D01* X8453Y-500D02*Y-575D01* Y-725D02*Y-950D01* X8679Y-725D02*Y-950D01* Y-725D02*X8754Y-650D01* X8829D01* X8904Y-725D01* Y-950D01* X8604Y-650D02*X8679Y-725D01* X9159Y-950D02*X9384D01* X9084Y-875D02*X9159Y-950D01* X9084Y-725D02*Y-875D01* Y-725D02*X9159Y-650D01* X9309D01* X9384Y-725D01* X9084Y-800D02*X9384D01* Y-725D02*Y-800D01* X9834Y-500D02*Y-575D01* Y-725D02*Y-950D01* X10059D02*X10284D01* X10359Y-875D01* X10284Y-800D02*X10359Y-875D01* X10059Y-800D02*X10284D01* X9984Y-725D02*X10059Y-800D01* X9984Y-725D02*X10059Y-650D01* X10284D01* X10359Y-725D01* X9984Y-875D02*X10059Y-950D01* X10884Y-350D02*Y-875D01* X10959Y-950D01* X10809Y-575D02*X10959D01* X11109Y-350D02*Y-950D01* Y-725D02*X11184Y-650D01* X11334D01* X11409Y-725D01* Y-950D01* X11665D02*X11890D01* X11590Y-875D02*X11665Y-950D01* X11590Y-725D02*Y-875D01* Y-725D02*X11665Y-650D01* X11815D01* X11890Y-725D01* X11590Y-800D02*X11890D01* Y-725D02*Y-800D01* X12415Y-650D02*X12640D01* X12340Y-725D02*X12415Y-650D01* X12340Y-725D02*Y-875D01* X12415Y-950D01* X12640D01* X12895D02*X13120D01* X12820Y-875D02*X12895Y-950D01* X12820Y-725D02*Y-875D01* Y-725D02*X12895Y-650D01* X13045D01* X13120Y-725D01* X12820Y-800D02*X13120D01* Y-725D02*Y-800D01* X13375Y-725D02*Y-950D01* Y-725D02*X13450Y-650D01* X13525D01* X13600Y-725D01* Y-950D01* X13300Y-650D02*X13375Y-725D01* X13855Y-350D02*Y-875D01* X13930Y-950D01* X13780Y-575D02*X13930D01* X14155Y-950D02*X14380D01* X14080Y-875D02*X14155Y-950D01* X14080Y-725D02*Y-875D01* Y-725D02*X14155Y-650D01* X14305D01* X14380Y-725D01* X14080Y-800D02*X14380D01* Y-725D02*Y-800D01* X14635Y-725D02*Y-950D01* Y-725D02*X14710Y-650D01* X14860D01* X14560D02*X14635Y-725D01* X15041Y-350D02*Y-875D01* X15116Y-950D01* X15266Y-500D02*Y-575D01* Y-725D02*Y-950D01* X15491Y-725D02*Y-950D01* Y-725D02*X15566Y-650D01* X15641D01* X15716Y-725D01* Y-950D01* X15416Y-650D02*X15491Y-725D01* X15971Y-950D02*X16196D01* X15896Y-875D02*X15971Y-950D01* X15896Y-725D02*Y-875D01* Y-725D02*X15971Y-650D01* X16121D01* X16196Y-725D01* X15896Y-800D02*X16196D01* Y-725D02*Y-800D01* X16646Y-725D02*Y-875D01* Y-725D02*X16721Y-650D01* X16871D01* X16946Y-725D01* Y-875D01* X16871Y-950D02*X16946Y-875D01* X16721Y-950D02*X16871D01* X16646Y-875D02*X16721Y-950D01* X17201Y-425D02*Y-950D01* Y-425D02*X17276Y-350D01* X17351D01* X17126Y-650D02*X17276D01* X17846Y-350D02*Y-875D01* X17921Y-950D01* X17771Y-575D02*X17921D01* X18072Y-350D02*Y-950D01* Y-725D02*X18147Y-650D01* X18297D01* X18372Y-725D01* Y-950D01* X18552Y-500D02*Y-575D01* Y-725D02*Y-950D01* X18777D02*X19002D01* X19077Y-875D01* X19002Y-800D02*X19077Y-875D01* X18777Y-800D02*X19002D01* X18702Y-725D02*X18777Y-800D01* X18702Y-725D02*X18777Y-650D01* X19002D01* X19077Y-725D01* X18702Y-875D02*X18777Y-950D01* X19602D02*X19752D01* X19677Y-350D02*Y-950D01* X19527Y-500D02*X19677Y-350D01* X19932Y-875D02*X20007Y-950D01* X19932Y-425D02*Y-875D01* Y-425D02*X20007Y-350D01* X20157D01* X20232Y-425D01* Y-875D01* X20157Y-950D02*X20232Y-875D01* X20007Y-950D02*X20157D01* X19932Y-800D02*X20232Y-500D01* X20757Y-725D02*Y-950D01* Y-725D02*X20832Y-650D01* X20907D01* X20982Y-725D01* Y-950D01* Y-725D02*X21057Y-650D01* X21132D01* X21207Y-725D01* Y-950D01* X20682Y-650D02*X20757Y-725D01* X21388Y-500D02*Y-575D01* Y-725D02*Y-950D01* X21538Y-350D02*Y-875D01* X21613Y-950D01* X22108Y-725D02*Y-950D01* Y-725D02*X22183Y-650D01* X22333D01* X22033D02*X22108Y-725D01* X22588Y-950D02*X22813D01* X22513Y-875D02*X22588Y-950D01* X22513Y-725D02*Y-875D01* Y-725D02*X22588Y-650D01* X22738D01* X22813Y-725D01* X22513Y-800D02*X22813D01* Y-725D02*Y-800D01* X23068Y-650D02*X23293D01* X22993Y-725D02*X23068Y-650D01* X22993Y-725D02*Y-875D01* X23068Y-950D01* X23293D01* X23548Y-350D02*Y-875D01* X23623Y-950D01* X23473Y-575D02*X23623D01* X23998Y-650D02*X24073Y-725D01* X23848Y-650D02*X23998D01* X23773Y-725D02*X23848Y-650D01* X23773Y-725D02*Y-875D01* X23848Y-950D01* X24073Y-650D02*Y-875D01* X24148Y-950D01* X23848D02*X23998D01* X24073Y-875D01* X24404Y-725D02*Y-950D01* Y-725D02*X24479Y-650D01* X24554D01* X24629Y-725D01* Y-950D01* X24329Y-650D02*X24404Y-725D01* X25034Y-650D02*X25109Y-725D01* X24884Y-650D02*X25034D01* X24809Y-725D02*X24884Y-650D01* X24809Y-725D02*Y-875D01* X24884Y-950D01* X25034D01* X25109Y-875D01* X24809Y-1100D02*X24884Y-1175D01* X25034D01* X25109Y-1100D01* Y-650D02*Y-1100D01* X25289Y-350D02*Y-875D01* X25364Y-950D01* X25589D02*X25814D01* X25514Y-875D02*X25589Y-950D01* X25514Y-725D02*Y-875D01* Y-725D02*X25589Y-650D01* X25739D01* X25814Y-725D01* X25514Y-800D02*X25814D01* Y-725D02*Y-800D01* X26264Y-650D02*X26564D01* X27014Y-875D02*X27089Y-950D01* X27014Y-425D02*Y-875D01* Y-425D02*X27089Y-350D01* X27239D01* X27314Y-425D01* Y-875D01* X27239Y-950D02*X27314Y-875D01* X27089Y-950D02*X27239D01* X27014Y-800D02*X27314Y-500D01* X27494Y-1100D02*X27644Y-950D01* X27825Y-875D02*X27900Y-950D01* X27825Y-425D02*Y-875D01* Y-425D02*X27900Y-350D01* X28050D01* X28125Y-425D01* Y-875D01* X28050Y-950D02*X28125Y-875D01* X27900Y-950D02*X28050D01* X27825Y-800D02*X28125Y-500D01* X28650Y-350D02*Y-875D01* X28725Y-950D01* X28575Y-575D02*X28725D01* X28875Y-725D02*Y-875D01* Y-725D02*X28950Y-650D01* X29100D01* X29175Y-725D01* Y-875D01* X29100Y-950D02*X29175Y-875D01* X28950Y-950D02*X29100D01* X28875Y-875D02*X28950Y-950D01* X29625Y-650D02*X29925Y-350D01* X29625Y-650D02*X30000D01* X29925Y-350D02*Y-950D01* X30180Y-875D02*X30255Y-950D01* X30180Y-425D02*Y-875D01* Y-425D02*X30255Y-350D01* X30405D01* X30480Y-425D01* Y-875D01* X30405Y-950D02*X30480Y-875D01* X30255Y-950D02*X30405D01* X30180Y-800D02*X30480Y-500D01* X30660Y-875D02*X30735Y-950D01* X30660Y-425D02*Y-875D01* Y-425D02*X30735Y-350D01* X30885D01* X30960Y-425D01* Y-875D01* X30885Y-950D02*X30960Y-875D01* X30735Y-950D02*X30885D01* X30660Y-800D02*X30960Y-500D01* X31141Y-875D02*X31216Y-950D01* X31141Y-425D02*Y-875D01* Y-425D02*X31216Y-350D01* X31366D01* X31441Y-425D01* Y-875D01* X31366Y-950D02*X31441Y-875D01* X31216Y-950D02*X31366D01* X31141Y-800D02*X31441Y-500D01* X31621Y-1100D02*X31771Y-950D01* X31951Y-650D02*X32251Y-350D01* X31951Y-650D02*X32326D01* X32251Y-350D02*Y-950D01* X32506Y-875D02*X32581Y-950D01* X32506Y-425D02*Y-875D01* Y-425D02*X32581Y-350D01* X32731D01* X32806Y-425D01* Y-875D01* X32731Y-950D02*X32806Y-875D01* X32581Y-950D02*X32731D01* X32506Y-800D02*X32806Y-500D01* X32986Y-875D02*X33061Y-950D01* X32986Y-425D02*Y-875D01* Y-425D02*X33061Y-350D01* X33211D01* X33286Y-425D01* Y-875D01* X33211Y-950D02*X33286Y-875D01* X33061Y-950D02*X33211D01* X32986Y-800D02*X33286Y-500D01* X33466Y-875D02*X33541Y-950D01* X33466Y-425D02*Y-875D01* Y-425D02*X33541Y-350D01* X33691D01* X33766Y-425D01* Y-875D01* X33691Y-950D02*X33766Y-875D01* X33541Y-950D02*X33691D01* X33466Y-800D02*X33766Y-500D01* X34291Y-725D02*Y-950D01* Y-725D02*X34366Y-650D01* X34441D01* X34516Y-725D01* Y-950D01* Y-725D02*X34591Y-650D01* X34666D01* X34741Y-725D01* Y-950D01* X34216Y-650D02*X34291Y-725D01* X34922Y-500D02*Y-575D01* Y-725D02*Y-950D01* X35072Y-350D02*Y-875D01* X35147Y-950D01* X35372D02*X35597D01* X35672Y-875D01* X35597Y-800D02*X35672Y-875D01* X35372Y-800D02*X35597D01* X35297Y-725D02*X35372Y-800D01* X35297Y-725D02*X35372Y-650D01* X35597D01* X35672Y-725D01* X35297Y-875D02*X35372Y-950D01* X20075Y42850D02*Y42250D01* X20300Y42850D02*X20375Y42775D01* Y42325D01* X20300Y42250D02*X20375Y42325D01* X20000Y42250D02*X20300D01* X20000Y42850D02*X20300D01* X20780Y42550D02*X20855Y42475D01* X20630Y42550D02*X20780D01* X20555Y42475D02*X20630Y42550D01* X20555Y42475D02*Y42325D01* X20630Y42250D01* X20855Y42550D02*Y42325D01* X20930Y42250D01* X20630D02*X20780D01* X20855Y42325D01* X21185Y42850D02*Y42325D01* X21260Y42250D01* X21110Y42625D02*X21260D01* X21485Y42250D02*X21710D01* X21410Y42325D02*X21485Y42250D01* X21410Y42475D02*Y42325D01* Y42475D02*X21485Y42550D01* X21635D01* X21710Y42475D01* X21410Y42400D02*X21710D01* Y42475D02*Y42400D01* X21890Y42625D02*X21965D01* X21890Y42475D02*X21965D01* X22415Y42850D02*X22715D01* X22565D02*Y42250D01* X22895Y42850D02*Y42250D01* Y42475D02*X22970Y42550D01* X23120D01* X23195Y42475D01* Y42250D01* X23376Y42550D02*Y42325D01* X23451Y42250D01* X23601D01* X23676Y42325D01* Y42550D02*Y42325D01* X24126Y42850D02*X24351D01* Y42325D01* X24276Y42250D02*X24351Y42325D01* X24201Y42250D02*X24276D01* X24126Y42325D02*X24201Y42250D01* X24756Y42550D02*X24831Y42475D01* X24606Y42550D02*X24756D01* X24531Y42475D02*X24606Y42550D01* X24531Y42475D02*Y42325D01* X24606Y42250D01* X24831Y42550D02*Y42325D01* X24906Y42250D01* X24606D02*X24756D01* X24831Y42325D01* X25161Y42475D02*Y42250D01* Y42475D02*X25236Y42550D01* X25311D01* X25386Y42475D01* Y42250D01* X25086Y42550D02*X25161Y42475D01* X25836Y42775D02*X25911Y42850D01* X26136D01* X26211Y42775D01* Y42625D01* X25836Y42250D02*X26211Y42625D01* X25836Y42250D02*X26211D01* X26391Y42550D02*X26691Y42850D01* X26391Y42550D02*X26766D01* X26691Y42850D02*Y42250D01* X27216Y42325D02*X27291Y42250D01* X27216Y42775D02*Y42325D01* Y42775D02*X27291Y42850D01* X27441D01* X27516Y42775D01* Y42325D01* X27441Y42250D02*X27516Y42325D01* X27291Y42250D02*X27441D01* X27216Y42400D02*X27516Y42700D01* X27697Y42775D02*X27772Y42850D01* X27922D01* X27997Y42775D01* Y42325D01* X27922Y42250D02*X27997Y42325D01* X27772Y42250D02*X27922D01* X27697Y42325D02*X27772Y42250D01* Y42550D02*X27997D01* X28177Y42625D02*X28252D01* X28177Y42475D02*X28252D01* X28432Y42850D02*X28732D01* X28432D02*Y42550D01* X28507Y42625D01* X28657D01* X28732Y42550D01* Y42325D01* X28657Y42250D02*X28732Y42325D01* X28507Y42250D02*X28657D01* X28432Y42325D02*X28507Y42250D01* X28912Y42775D02*X28987Y42850D01* X29137D01* X29212Y42775D01* Y42325D01* X29137Y42250D02*X29212Y42325D01* X28987Y42250D02*X29137D01* X28912Y42325D02*X28987Y42250D01* Y42550D02*X29212D01* X29392Y42625D02*X29467D01* X29392Y42475D02*X29467D01* X29647Y42325D02*X29722Y42250D01* X29647Y42775D02*Y42325D01* Y42775D02*X29722Y42850D01* X29872D01* X29947Y42775D01* Y42325D01* X29872Y42250D02*X29947Y42325D01* X29722Y42250D02*X29872D01* X29647Y42400D02*X29947Y42700D01* X30203Y42250D02*X30353D01* X30278Y42850D02*Y42250D01* X30128Y42700D02*X30278Y42850D01* X30803Y42775D02*X30878Y42850D01* X31103D01* X31178Y42775D01* Y42625D01* X30803Y42250D02*X31178Y42625D01* X30803Y42250D02*X31178D01* X31358Y42325D02*X31433Y42250D01* X31358Y42775D02*Y42325D01* Y42775D02*X31433Y42850D01* X31583D01* X31658Y42775D01* Y42325D01* X31583Y42250D02*X31658Y42325D01* X31433Y42250D02*X31583D01* X31358Y42400D02*X31658Y42700D01* X31838Y42325D02*X31913Y42250D01* X31838Y42775D02*Y42325D01* Y42775D02*X31913Y42850D01* X32063D01* X32138Y42775D01* Y42325D01* X32063Y42250D02*X32138Y42325D01* X31913Y42250D02*X32063D01* X31838Y42400D02*X32138Y42700D01* X32318Y42325D02*X32393Y42250D01* X32318Y42475D02*Y42325D01* Y42475D02*X32393Y42550D01* X32543D01* X32618Y42475D01* Y42325D01* X32543Y42250D02*X32618Y42325D01* X32393Y42250D02*X32543D01* X32318Y42625D02*X32393Y42550D01* X32318Y42775D02*Y42625D01* Y42775D02*X32393Y42850D01* X32543D01* X32618Y42775D01* Y42625D01* X32543Y42550D02*X32618Y42625D01* X33068Y42850D02*Y42325D01* X33143Y42250D01* X33293D01* X33368Y42325D01* Y42850D02*Y42325D01* X33548Y42850D02*X33848D01* X33698D02*Y42250D01* X34104D02*X34329D01* X34029Y42325D02*X34104Y42250D01* X34029Y42775D02*Y42325D01* Y42775D02*X34104Y42850D01* X34329D01* X20000Y44275D02*Y43750D01* Y44275D02*X20075Y44350D01* X20300D01* X20375Y44275D01* Y43750D01* X20000Y44050D02*X20375D01* X20555D02*Y43825D01* X20630Y43750D01* X20780D01* X20855Y43825D01* Y44050D02*Y43825D01* X21110Y44350D02*Y43825D01* X21185Y43750D01* X21035Y44125D02*X21185D01* X21335Y44350D02*Y43750D01* Y43975D02*X21410Y44050D01* X21560D01* X21635Y43975D01* Y43750D01* X21815Y43975D02*Y43825D01* Y43975D02*X21890Y44050D01* X22040D01* X22115Y43975D01* Y43825D01* X22040Y43750D02*X22115Y43825D01* X21890Y43750D02*X22040D01* X21815Y43825D02*X21890Y43750D01* X22370Y43975D02*Y43750D01* Y43975D02*X22445Y44050D01* X22595D01* X22295D02*X22370Y43975D01* X22775Y44125D02*X22850D01* X22775Y43975D02*X22850D01* X23601Y44350D02*X23676Y44275D01* X23376Y44350D02*X23601D01* X23301Y44275D02*X23376Y44350D01* X23301Y44275D02*Y44125D01* X23376Y44050D01* X23601D01* X23676Y43975D01* Y43825D01* X23601Y43750D02*X23676Y43825D01* X23376Y43750D02*X23601D01* X23301Y43825D02*X23376Y43750D01* X23931Y44350D02*Y43825D01* X24006Y43750D01* X23856Y44125D02*X24006D01* X24156Y44050D02*Y43825D01* X24231Y43750D01* X24381D01* X24456Y43825D01* Y44050D02*Y43825D01* X24861Y44050D02*X24936Y43975D01* X24711Y44050D02*X24861D01* X24636Y43975D02*X24711Y44050D01* X24636Y43975D02*Y43825D01* X24711Y43750D01* X24936Y44050D02*Y43825D01* X25011Y43750D01* X24711D02*X24861D01* X24936Y43825D01* X25266Y43975D02*Y43750D01* Y43975D02*X25341Y44050D01* X25491D01* X25191D02*X25266Y43975D01* X25746Y44350D02*Y43825D01* X25821Y43750D01* X25671Y44125D02*X25821D01* X26241Y43750D02*X26541D01* X26616Y43825D01* Y43975D02*Y43825D01* X26541Y44050D02*X26616Y43975D01* X26316Y44050D02*X26541D01* X26316Y44350D02*Y43750D01* X26241Y44350D02*X26541D01* X26616Y44275D01* Y44125D01* X26541Y44050D02*X26616Y44125D01* X26872Y43975D02*Y43750D01* Y43975D02*X26947Y44050D01* X27097D01* X26797D02*X26872Y43975D01* X27277D02*Y43825D01* Y43975D02*X27352Y44050D01* X27502D01* X27577Y43975D01* Y43825D01* X27502Y43750D02*X27577Y43825D01* X27352Y43750D02*X27502D01* X27277Y43825D02*X27352Y43750D01* X27832Y43975D02*Y43750D01* Y43975D02*X27907Y44050D01* X28057D01* X27757D02*X27832Y43975D01* X28312Y43750D02*X28537D01* X28612Y43825D01* X28537Y43900D02*X28612Y43825D01* X28312Y43900D02*X28537D01* X28237Y43975D02*X28312Y43900D01* X28237Y43975D02*X28312Y44050D01* X28537D01* X28612Y43975D01* X28237Y43825D02*X28312Y43750D01* X28792Y43975D02*Y43825D01* Y43975D02*X28867Y44050D01* X29017D01* X29092Y43975D01* Y43825D01* X29017Y43750D02*X29092Y43825D01* X28867Y43750D02*X29017D01* X28792Y43825D02*X28867Y43750D01* X29347Y43975D02*Y43750D01* Y43975D02*X29422Y44050D01* X29497D01* X29572Y43975D01* Y43750D01* X29272Y44050D02*X29347Y43975D01* X20000Y45850D02*X20300D01* X20150D02*Y45250D01* X20480Y45700D02*Y45625D01* Y45475D02*Y45250D01* X20705Y45850D02*Y45325D01* X20780Y45250D01* X20630Y45625D02*X20780D01* X20930Y45850D02*Y45325D01* X21005Y45250D01* X21230D02*X21455D01* X21155Y45325D02*X21230Y45250D01* X21155Y45475D02*Y45325D01* Y45475D02*X21230Y45550D01* X21380D01* X21455Y45475D01* X21155Y45400D02*X21455D01* Y45475D02*Y45400D01* X21635Y45625D02*X21710D01* X21635Y45475D02*X21710D01* X22160Y45325D02*X22235Y45250D01* X22160Y45775D02*X22235Y45850D01* X22160Y45775D02*Y45325D01* X22416Y45550D02*Y45325D01* X22491Y45250D01* X22641D01* X22716Y45325D01* Y45550D02*Y45325D01* X22971Y45475D02*Y45250D01* Y45475D02*X23046Y45550D01* X23121D01* X23196Y45475D01* Y45250D01* X22896Y45550D02*X22971Y45475D01* X23376Y45850D02*Y45250D01* Y45475D02*X23601Y45250D01* X23376Y45475D02*X23526Y45625D01* X23856Y45475D02*Y45250D01* Y45475D02*X23931Y45550D01* X24006D01* X24081Y45475D01* Y45250D01* X23781Y45550D02*X23856Y45475D01* X24261D02*Y45325D01* Y45475D02*X24336Y45550D01* X24486D01* X24561Y45475D01* Y45325D01* X24486Y45250D02*X24561Y45325D01* X24336Y45250D02*X24486D01* X24261Y45325D02*X24336Y45250D01* X24741Y45550D02*Y45325D01* X24816Y45250D01* X24891D01* X24966Y45325D01* Y45550D02*Y45325D01* X25041Y45250D01* X25116D01* X25191Y45325D01* Y45550D02*Y45325D01* X25446Y45475D02*Y45250D01* Y45475D02*X25521Y45550D01* X25596D01* X25671Y45475D01* Y45250D01* X25371Y45550D02*X25446Y45475D01* X25852Y45850D02*X25927Y45775D01* Y45325D01* X25852Y45250D02*X25927Y45325D01* X26377Y45550D02*X26677D01* X27127Y45850D02*Y45250D01* Y45850D02*X27427D01* X27127Y45550D02*X27352D01* X27832D02*X27907Y45475D01* X27682Y45550D02*X27832D01* X27607Y45475D02*X27682Y45550D01* X27607Y45475D02*Y45325D01* X27682Y45250D01* X27907Y45550D02*Y45325D01* X27982Y45250D01* X27682D02*X27832D01* X27907Y45325D01* X28162Y45850D02*Y45250D01* Y45325D02*X28237Y45250D01* X28387D01* X28462Y45325D01* Y45475D02*Y45325D01* X28387Y45550D02*X28462Y45475D01* X28237Y45550D02*X28387D01* X28162Y45475D02*X28237Y45550D01* X28717Y45475D02*Y45250D01* Y45475D02*X28792Y45550D01* X28942D01* X28642D02*X28717Y45475D01* X29123Y45700D02*Y45625D01* Y45475D02*Y45250D01* X29348Y45550D02*X29573D01* X29273Y45475D02*X29348Y45550D01* X29273Y45475D02*Y45325D01* X29348Y45250D01* X29573D01* X29978Y45550D02*X30053Y45475D01* X29828Y45550D02*X29978D01* X29753Y45475D02*X29828Y45550D01* X29753Y45475D02*Y45325D01* X29828Y45250D01* X30053Y45550D02*Y45325D01* X30128Y45250D01* X29828D02*X29978D01* X30053Y45325D01* X30383Y45850D02*Y45325D01* X30458Y45250D01* X30308Y45625D02*X30458D01* X30608Y45700D02*Y45625D01* Y45475D02*Y45250D01* X30758Y45475D02*Y45325D01* Y45475D02*X30833Y45550D01* X30983D01* X31058Y45475D01* Y45325D01* X30983Y45250D02*X31058Y45325D01* X30833Y45250D02*X30983D01* X30758Y45325D02*X30833Y45250D01* X31313Y45475D02*Y45250D01* Y45475D02*X31388Y45550D01* X31463D01* X31538Y45475D01* Y45250D01* X31238Y45550D02*X31313Y45475D01* X32064Y45850D02*Y45250D01* X32289Y45850D02*X32364Y45775D01* Y45325D01* X32289Y45250D02*X32364Y45325D01* X31989Y45250D02*X32289D01* X31989Y45850D02*X32289D01* X32619Y45475D02*Y45250D01* Y45475D02*X32694Y45550D01* X32844D01* X32544D02*X32619Y45475D01* X33249Y45550D02*X33324Y45475D01* X33099Y45550D02*X33249D01* X33024Y45475D02*X33099Y45550D01* X33024Y45475D02*Y45325D01* X33099Y45250D01* X33324Y45550D02*Y45325D01* X33399Y45250D01* X33099D02*X33249D01* X33324Y45325D01* X33579Y45550D02*Y45325D01* X33654Y45250D01* X33729D01* X33804Y45325D01* Y45550D02*Y45325D01* X33879Y45250D01* X33954D01* X34029Y45325D01* Y45550D02*Y45325D01* X34209Y45700D02*Y45625D01* Y45475D02*Y45250D01* X34434Y45475D02*Y45250D01* Y45475D02*X34509Y45550D01* X34584D01* X34659Y45475D01* Y45250D01* X34359Y45550D02*X34434Y45475D01* X35064Y45550D02*X35139Y45475D01* X34914Y45550D02*X35064D01* X34839Y45475D02*X34914Y45550D01* X34839Y45475D02*Y45325D01* X34914Y45250D01* X35064D01* X35139Y45325D01* X34839Y45100D02*X34914Y45025D01* X35064D01* X35139Y45100D01* Y45550D02*Y45100D01* M02* gerbv-2.7.0/example/hellboard/hellboard.back.gbr0000644000175000017500000255405313421555714021450 0ustar carstencarstenG04 start of page 5 for group 3 idx 3 G04 Title: (unknown), solder * G04 Creator: pcb 1.99v * G04 CreationDate: Thu Jan 24 03:52:41 2008 UTC * G04 For: sdb * G04 Format: Gerber/RS-274X * G04 PCB-Dimensions: 400000 400000 * G04 PCB-Coordinate-Origin: lower left * %MOIN*% %FSLAX24Y24*% %LNBACK*% %ADD11C,0.0200*% %ADD12C,0.0600*% %ADD13C,0.0280*% G54D11*G36* X0Y0D02*Y40000D01* X243D01* Y39691D01* X189Y39744D01* X158Y39700D01* X129Y39636D01* X111Y39569D01* X105Y39500D01* X111Y39430D01* X129Y39363D01* X158Y39300D01* X189Y39255D01* X243Y39308D01* Y37711D01* X209Y37744D01* X178Y37700D01* X149Y37636D01* X131Y37569D01* X125Y37500D01* X131Y37430D01* X149Y37363D01* X178Y37300D01* X209Y37255D01* X243Y37288D01* Y35731D01* X229Y35744D01* X198Y35700D01* X169Y35636D01* X151Y35569D01* X145Y35500D01* X151Y35430D01* X169Y35363D01* X198Y35300D01* X229Y35255D01* X243Y35268D01* Y33735D01* X218Y33700D01* X189Y33636D01* X171Y33569D01* X165Y33500D01* X171Y33430D01* X189Y33363D01* X218Y33300D01* X243Y33264D01* Y31706D01* X238Y31700D01* X209Y31636D01* X191Y31569D01* X185Y31500D01* X191Y31430D01* X209Y31363D01* X238Y31300D01* X243Y31293D01* Y29667D01* X229Y29636D01* X211Y29569D01* X205Y29500D01* X211Y29430D01* X229Y29363D01* X243Y29333D01* Y27614D01* X231Y27569D01* X225Y27500D01* X231Y27430D01* X243Y27385D01* Y0D01* X0D01* G37* G36* X243Y39354D02*X223Y39397D01* X209Y39447D01* X205Y39500D01* X209Y39552D01* X223Y39602D01* X243Y39645D01* Y39354D01* G37* G36* Y37397D02*X243Y37397D01* X229Y37447D01* X225Y37500D01* X229Y37552D01* X243Y37602D01* X243Y37602D01* Y37397D01* G37* G36* Y40000D02*X343D01* Y39864D01* X305Y39846D01* X260Y39815D01* X332Y39743D01* X343Y39751D01* Y39248D01* X332Y39256D01* X260Y39184D01* X305Y39153D01* X343Y39135D01* Y37854D01* X325Y37846D01* X280Y37815D01* X343Y37752D01* Y37247D01* X280Y37184D01* X325Y37153D01* X343Y37145D01* Y35845D01* X300Y35815D01* X343Y35772D01* Y35227D01* X300Y35184D01* X343Y35154D01* Y33831D01* X320Y33815D01* X343Y33792D01* Y33207D01* X320Y33184D01* X343Y33168D01* Y31817D01* X340Y31815D01* X343Y31812D01* Y31187D01* X340Y31184D01* X343Y31182D01* Y29691D01* X289Y29744D01* X258Y29700D01* X243Y29667D01* Y31293D01* X269Y31255D01* X341Y31327D01* X325Y31350D01* X303Y31397D01* X289Y31447D01* X285Y31500D01* X289Y31552D01* X303Y31602D01* X325Y31650D01* X341Y31673D01* X269Y31744D01* X243Y31706D01* Y33264D01* X249Y33255D01* X321Y33327D01* X305Y33350D01* X283Y33397D01* X269Y33447D01* X265Y33500D01* X269Y33552D01* X283Y33602D01* X305Y33650D01* X321Y33673D01* X249Y33744D01* X243Y33735D01* Y35268D01* X301Y35327D01* X285Y35350D01* X263Y35397D01* X249Y35447D01* X245Y35500D01* X249Y35552D01* X263Y35602D01* X285Y35650D01* X301Y35673D01* X243Y35731D01* Y37288D01* X281Y37327D01* X265Y37350D01* X243Y37397D01* Y37602D01* X265Y37650D01* X281Y37673D01* X243Y37711D01* Y39308D01* X261Y39327D01* X245Y39350D01* X243Y39354D01* Y39645D01* X245Y39650D01* X261Y39673D01* X243Y39691D01* Y40000D01* G37* G36* Y29333D02*X258Y29300D01* X289Y29255D01* X343Y29308D01* Y27711D01* X309Y27744D01* X278Y27700D01* X249Y27636D01* X243Y27614D01* Y29333D01* G37* G36* Y27385D02*X249Y27363D01* X278Y27300D01* X309Y27255D01* X343Y27288D01* Y25731D01* X329Y25744D01* X298Y25700D01* X269Y25636D01* X251Y25569D01* X245Y25500D01* X251Y25430D01* X269Y25363D01* X298Y25300D01* X329Y25255D01* X343Y25268D01* Y23735D01* X318Y23700D01* X289Y23636D01* X271Y23569D01* X265Y23500D01* X271Y23430D01* X289Y23363D01* X318Y23300D01* X343Y23264D01* Y21706D01* X338Y21700D01* X309Y21636D01* X291Y21569D01* X285Y21500D01* X291Y21430D01* X309Y21363D01* X338Y21300D01* X343Y21293D01* Y19667D01* X329Y19636D01* X311Y19569D01* X305Y19500D01* X311Y19430D01* X329Y19363D01* X343Y19333D01* Y17614D01* X331Y17569D01* X325Y17500D01* X331Y17430D01* X343Y17385D01* Y0D01* X243D01* Y27385D01* G37* G36* X343Y29354D02*X323Y29397D01* X309Y29447D01* X305Y29500D01* X309Y29552D01* X323Y29602D01* X343Y29645D01* Y29354D01* G37* G36* Y27397D02*X343Y27397D01* X329Y27447D01* X325Y27500D01* X329Y27552D01* X343Y27602D01* X343Y27602D01* Y27397D01* G37* G36* Y40000D02*X665D01* Y39865D01* X641Y39875D01* X574Y39893D01* X505Y39900D01* X435Y39893D01* X368Y39875D01* X343Y39864D01* Y40000D01* G37* G36* Y39751D02*X355Y39759D01* X402Y39781D01* X452Y39795D01* X505Y39800D01* X557Y39795D01* X607Y39781D01* X655Y39759D01* X665Y39752D01* Y39247D01* X655Y39240D01* X607Y39218D01* X557Y39204D01* X505Y39200D01* X452Y39204D01* X402Y39218D01* X355Y39240D01* X343Y39248D01* Y39751D01* G37* G36* Y39135D02*X368Y39124D01* X435Y39106D01* X505Y39100D01* X574Y39106D01* X641Y39124D01* X665Y39134D01* Y37874D01* X661Y37875D01* X594Y37893D01* X525Y37900D01* X455Y37893D01* X388Y37875D01* X343Y37854D01* Y39135D01* G37* G36* Y37752D02*X352Y37743D01* X375Y37759D01* X422Y37781D01* X472Y37795D01* X525Y37800D01* X577Y37795D01* X627Y37781D01* X665Y37764D01* Y37235D01* X627Y37218D01* X577Y37204D01* X525Y37200D01* X472Y37204D01* X422Y37218D01* X375Y37240D01* X352Y37256D01* X343Y37247D01* Y37752D01* G37* G36* Y37145D02*X388Y37124D01* X455Y37106D01* X525Y37100D01* X594Y37106D01* X661Y37124D01* X665Y37125D01* Y35880D01* X614Y35893D01* X545Y35900D01* X475Y35893D01* X408Y35875D01* X345Y35846D01* X343Y35845D01* Y37145D01* G37* G36* Y35772D02*X372Y35743D01* X395Y35759D01* X442Y35781D01* X492Y35795D01* X545Y35800D01* X597Y35795D01* X647Y35781D01* X665Y35773D01* Y35226D01* X647Y35218D01* X597Y35204D01* X545Y35200D01* X492Y35204D01* X442Y35218D01* X395Y35240D01* X372Y35256D01* X343Y35227D01* Y35772D01* G37* G36* Y35154D02*X345Y35153D01* X408Y35124D01* X475Y35106D01* X545Y35100D01* X614Y35106D01* X665Y35119D01* Y33885D01* X634Y33893D01* X565Y33900D01* X495Y33893D01* X428Y33875D01* X365Y33846D01* X343Y33831D01* Y35154D01* G37* G36* Y33792D02*X392Y33743D01* X415Y33759D01* X462Y33781D01* X512Y33795D01* X565Y33800D01* X617Y33795D01* X665Y33782D01* Y33217D01* X617Y33204D01* X565Y33200D01* X512Y33204D01* X462Y33218D01* X415Y33240D01* X392Y33256D01* X343Y33207D01* Y33792D01* G37* G36* Y33168D02*X365Y33153D01* X428Y33124D01* X495Y33106D01* X565Y33100D01* X634Y33106D01* X665Y33114D01* Y31891D01* X654Y31893D01* X585Y31900D01* X515Y31893D01* X448Y31875D01* X385Y31846D01* X343Y31817D01* Y33168D01* G37* G36* Y31812D02*X412Y31743D01* X435Y31759D01* X482Y31781D01* X532Y31795D01* X585Y31800D01* X637Y31795D01* X665Y31787D01* Y31212D01* X637Y31204D01* X585Y31200D01* X532Y31204D01* X482Y31218D01* X435Y31240D01* X412Y31256D01* X343Y31187D01* Y31812D01* G37* G36* Y31182D02*X385Y31153D01* X423Y31135D01* Y29854D01* X405Y29846D01* X360Y29815D01* X423Y29752D01* Y29247D01* X360Y29184D01* X405Y29153D01* X423Y29145D01* Y27845D01* X380Y27815D01* X423Y27772D01* Y27227D01* X380Y27184D01* X423Y27154D01* Y25831D01* X400Y25815D01* X423Y25792D01* Y25207D01* X400Y25184D01* X423Y25168D01* Y23817D01* X420Y23815D01* X423Y23812D01* Y23187D01* X420Y23184D01* X423Y23182D01* Y21691D01* X369Y21744D01* X343Y21706D01* Y23264D01* X349Y23255D01* X421Y23327D01* X405Y23350D01* X383Y23397D01* X369Y23447D01* X365Y23500D01* X369Y23552D01* X383Y23602D01* X405Y23650D01* X421Y23673D01* X349Y23744D01* X343Y23735D01* Y25268D01* X401Y25327D01* X385Y25350D01* X363Y25397D01* X349Y25447D01* X345Y25500D01* X349Y25552D01* X363Y25602D01* X385Y25650D01* X401Y25673D01* X343Y25731D01* Y27288D01* X381Y27327D01* X365Y27350D01* X343Y27397D01* Y27602D01* X365Y27650D01* X381Y27673D01* X343Y27711D01* Y29308D01* X361Y29327D01* X345Y29350D01* X343Y29354D01* Y29645D01* X345Y29650D01* X361Y29673D01* X343Y29691D01* Y31182D01* G37* G36* X423Y0D02*X343D01* Y17385D01* X349Y17363D01* X378Y17300D01* X409Y17255D01* X423Y17268D01* Y15735D01* X398Y15700D01* X369Y15636D01* X351Y15569D01* X345Y15500D01* X351Y15430D01* X369Y15363D01* X398Y15300D01* X423Y15264D01* Y13706D01* X418Y13700D01* X389Y13636D01* X371Y13569D01* X365Y13500D01* X371Y13430D01* X389Y13363D01* X418Y13300D01* X423Y13293D01* Y11667D01* X409Y11636D01* X391Y11569D01* X385Y11500D01* X391Y11430D01* X409Y11363D01* X423Y11333D01* Y9614D01* X411Y9569D01* X405Y9500D01* X411Y9430D01* X423Y9385D01* Y0D01* G37* G36* Y17731D02*X409Y17744D01* X378Y17700D01* X349Y17636D01* X343Y17614D01* Y19333D01* X358Y19300D01* X389Y19255D01* X423Y19288D01* Y17731D01* G37* G36* Y19397D02*X423Y19397D01* X409Y19447D01* X405Y19500D01* X409Y19552D01* X423Y19602D01* X423Y19602D01* Y19397D01* G37* G36* Y19711D02*X389Y19744D01* X358Y19700D01* X343Y19667D01* Y21293D01* X369Y21255D01* X423Y21308D01* Y19711D01* G37* G36* Y21354D02*X403Y21397D01* X389Y21447D01* X385Y21500D01* X389Y21552D01* X403Y21602D01* X423Y21645D01* Y21354D01* G37* G36* Y31135D02*X448Y31124D01* X515Y31106D01* X585Y31100D01* X654Y31106D01* X665Y31108D01* Y29894D01* X605Y29900D01* X535Y29893D01* X468Y29875D01* X423Y29854D01* Y31135D01* G37* G36* Y29752D02*X432Y29743D01* X455Y29759D01* X502Y29781D01* X552Y29795D01* X605Y29800D01* X657Y29795D01* X665Y29793D01* Y29206D01* X657Y29204D01* X605Y29200D01* X552Y29204D01* X502Y29218D01* X455Y29240D01* X432Y29256D01* X423Y29247D01* Y29752D01* G37* G36* Y29145D02*X468Y29124D01* X535Y29106D01* X605Y29100D01* X665Y29105D01* Y27896D01* X625Y27900D01* X555Y27893D01* X488Y27875D01* X425Y27846D01* X423Y27845D01* Y29145D01* G37* G36* Y27772D02*X452Y27743D01* X475Y27759D01* X522Y27781D01* X572Y27795D01* X625Y27800D01* X665Y27796D01* Y27203D01* X625Y27200D01* X572Y27204D01* X522Y27218D01* X475Y27240D01* X452Y27256D01* X423Y27227D01* Y27772D01* G37* G36* Y27154D02*X425Y27153D01* X488Y27124D01* X555Y27106D01* X625Y27100D01* X665Y27103D01* Y25898D01* X645Y25900D01* X575Y25893D01* X508Y25875D01* X445Y25846D01* X423Y25831D01* Y27154D01* G37* G36* Y25792D02*X472Y25743D01* X495Y25759D01* X542Y25781D01* X592Y25795D01* X645Y25800D01* X665Y25798D01* Y25201D01* X645Y25200D01* X592Y25204D01* X542Y25218D01* X495Y25240D01* X472Y25256D01* X423Y25207D01* Y25792D01* G37* G36* Y25168D02*X445Y25153D01* X508Y25124D01* X575Y25106D01* X645Y25100D01* X665Y25101D01* Y23900D01* X595Y23893D01* X528Y23875D01* X465Y23846D01* X423Y23817D01* Y25168D01* G37* G36* Y23812D02*X492Y23743D01* X515Y23759D01* X562Y23781D01* X612Y23795D01* X665Y23800D01* Y23200D01* X612Y23204D01* X562Y23218D01* X515Y23240D01* X492Y23256D01* X423Y23187D01* Y23812D01* G37* G36* Y23182D02*X465Y23153D01* X503Y23135D01* Y21854D01* X485Y21846D01* X440Y21815D01* X503Y21752D01* Y21247D01* X440Y21184D01* X485Y21153D01* X503Y21145D01* Y19845D01* X460Y19815D01* X503Y19772D01* Y19227D01* X460Y19184D01* X503Y19154D01* Y17831D01* X480Y17815D01* X503Y17792D01* Y17207D01* X480Y17184D01* X503Y17168D01* Y15817D01* X500Y15815D01* X503Y15812D01* Y15187D01* X500Y15184D01* X503Y15182D01* Y13691D01* X449Y13744D01* X423Y13706D01* Y15264D01* X429Y15255D01* X501Y15327D01* X485Y15350D01* X463Y15397D01* X449Y15447D01* X445Y15500D01* X449Y15552D01* X463Y15602D01* X485Y15650D01* X501Y15673D01* X429Y15744D01* X423Y15735D01* Y17268D01* X481Y17327D01* X465Y17350D01* X443Y17397D01* X429Y17447D01* X425Y17500D01* X429Y17552D01* X443Y17602D01* X465Y17650D01* X481Y17673D01* X423Y17731D01* Y19288D01* X461Y19327D01* X445Y19350D01* X423Y19397D01* Y19602D01* X445Y19650D01* X461Y19673D01* X423Y19711D01* Y21308D01* X441Y21327D01* X425Y21350D01* X423Y21354D01* Y21645D01* X425Y21650D01* X441Y21673D01* X423Y21691D01* Y23182D01* G37* G36* X503Y0D02*X423D01* Y9385D01* X429Y9363D01* X458Y9300D01* X489Y9255D01* X503Y9268D01* Y7735D01* X478Y7700D01* X449Y7636D01* X431Y7569D01* X425Y7500D01* X431Y7430D01* X449Y7363D01* X478Y7300D01* X503Y7264D01* Y5706D01* X498Y5700D01* X469Y5636D01* X451Y5569D01* X445Y5500D01* X451Y5430D01* X469Y5363D01* X498Y5300D01* X503Y5293D01* Y3667D01* X489Y3636D01* X471Y3569D01* X465Y3500D01* X471Y3430D01* X489Y3363D01* X503Y3333D01* Y1614D01* X491Y1569D01* X485Y1500D01* X491Y1430D01* X503Y1385D01* Y0D01* G37* G36* Y9731D02*X489Y9744D01* X458Y9700D01* X429Y9636D01* X423Y9614D01* Y11333D01* X438Y11300D01* X469Y11255D01* X503Y11288D01* Y9731D01* G37* G36* Y11397D02*X503Y11397D01* X489Y11447D01* X485Y11500D01* X489Y11552D01* X503Y11602D01* X503Y11602D01* Y11397D01* G37* G36* Y11711D02*X469Y11744D01* X438Y11700D01* X423Y11667D01* Y13293D01* X449Y13255D01* X503Y13308D01* Y11711D01* G37* G36* Y13354D02*X483Y13397D01* X469Y13447D01* X465Y13500D01* X469Y13552D01* X483Y13602D01* X503Y13645D01* Y13354D01* G37* G36* Y23135D02*X528Y23124D01* X595Y23106D01* X665Y23100D01* Y21898D01* X615Y21893D01* X548Y21875D01* X503Y21854D01* Y23135D01* G37* G36* Y21752D02*X512Y21743D01* X535Y21759D01* X582Y21781D01* X632Y21795D01* X665Y21798D01* Y21201D01* X632Y21204D01* X582Y21218D01* X535Y21240D01* X512Y21256D01* X503Y21247D01* Y21752D01* G37* G36* Y21145D02*X548Y21124D01* X615Y21106D01* X665Y21101D01* Y19896D01* X635Y19893D01* X568Y19875D01* X505Y19846D01* X503Y19845D01* Y21145D01* G37* G36* Y19772D02*X532Y19743D01* X555Y19759D01* X602Y19781D01* X652Y19795D01* X665Y19796D01* Y19203D01* X652Y19204D01* X602Y19218D01* X555Y19240D01* X532Y19256D01* X503Y19227D01* Y19772D01* G37* G36* Y19154D02*X505Y19153D01* X568Y19124D01* X635Y19106D01* X665Y19103D01* Y17894D01* X655Y17893D01* X588Y17875D01* X525Y17846D01* X503Y17831D01* Y19154D01* G37* G36* Y17792D02*X552Y17743D01* X575Y17759D01* X622Y17781D01* X665Y17793D01* Y17206D01* X622Y17218D01* X575Y17240D01* X552Y17256D01* X503Y17207D01* Y17792D01* G37* G36* Y17168D02*X525Y17153D01* X588Y17124D01* X655Y17106D01* X665Y17105D01* Y15891D01* X608Y15875D01* X545Y15846D01* X503Y15817D01* Y17168D01* G37* G36* Y15812D02*X572Y15743D01* X595Y15759D01* X642Y15781D01* X665Y15787D01* Y15212D01* X642Y15218D01* X595Y15240D01* X572Y15256D01* X503Y15187D01* Y15812D01* G37* G36* Y15182D02*X545Y15153D01* X608Y15124D01* X665Y15108D01* Y13885D01* X628Y13875D01* X565Y13846D01* X520Y13815D01* X592Y13743D01* X615Y13759D01* X662Y13781D01* X665Y13782D01* Y13217D01* X662Y13218D01* X615Y13240D01* X592Y13256D01* X520Y13184D01* X565Y13153D01* X628Y13124D01* X665Y13114D01* Y11880D01* X648Y11875D01* X585Y11846D01* X540Y11815D01* X612Y11743D01* X635Y11759D01* X665Y11773D01* Y11226D01* X635Y11240D01* X612Y11256D01* X540Y11184D01* X585Y11153D01* X648Y11124D01* X665Y11119D01* Y9874D01* X605Y9846D01* X560Y9815D01* X632Y9743D01* X655Y9759D01* X665Y9764D01* Y9235D01* X655Y9240D01* X632Y9256D01* X560Y9184D01* X605Y9153D01* X665Y9125D01* Y7865D01* X625Y7846D01* X580Y7815D01* X652Y7743D01* X665Y7752D01* Y7247D01* X652Y7256D01* X580Y7184D01* X625Y7153D01* X665Y7134D01* Y5855D01* X645Y5846D01* X600Y5815D01* X665Y5750D01* Y5249D01* X600Y5184D01* X645Y5153D01* X665Y5144D01* Y3846D01* X620Y3815D01* X665Y3770D01* Y3229D01* X620Y3184D01* X665Y3153D01* Y1832D01* X640Y1815D01* X665Y1790D01* Y1209D01* X640Y1184D01* X665Y1167D01* Y0D01* X503D01* Y1385D01* X509Y1363D01* X538Y1300D01* X569Y1255D01* X641Y1327D01* X625Y1350D01* X603Y1397D01* X589Y1447D01* X585Y1500D01* X589Y1552D01* X603Y1602D01* X625Y1650D01* X641Y1673D01* X569Y1744D01* X538Y1700D01* X509Y1636D01* X503Y1614D01* Y3333D01* X518Y3300D01* X549Y3255D01* X621Y3327D01* X605Y3350D01* X583Y3397D01* X569Y3447D01* X565Y3500D01* X569Y3552D01* X583Y3602D01* X605Y3650D01* X621Y3673D01* X549Y3744D01* X518Y3700D01* X503Y3667D01* Y5293D01* X529Y5255D01* X601Y5327D01* X585Y5350D01* X563Y5397D01* X549Y5447D01* X545Y5500D01* X549Y5552D01* X563Y5602D01* X585Y5650D01* X601Y5673D01* X529Y5744D01* X503Y5706D01* Y7264D01* X509Y7255D01* X581Y7327D01* X565Y7350D01* X543Y7397D01* X529Y7447D01* X525Y7500D01* X529Y7552D01* X543Y7602D01* X565Y7650D01* X581Y7673D01* X509Y7744D01* X503Y7735D01* Y9268D01* X561Y9327D01* X545Y9350D01* X523Y9397D01* X509Y9447D01* X505Y9500D01* X509Y9552D01* X523Y9602D01* X545Y9650D01* X561Y9673D01* X503Y9731D01* Y11288D01* X541Y11327D01* X525Y11350D01* X503Y11397D01* Y11602D01* X525Y11650D01* X541Y11673D01* X503Y11711D01* Y13308D01* X521Y13327D01* X505Y13350D01* X503Y13354D01* Y13645D01* X505Y13650D01* X521Y13673D01* X503Y13691D01* Y15182D01* G37* G36* X665Y40000D02*X886D01* Y39614D01* X880Y39636D01* X851Y39700D01* X820Y39744D01* X748Y39673D01* X764Y39650D01* X786Y39602D01* X800Y39552D01* X805Y39500D01* X800Y39447D01* X786Y39397D01* X764Y39350D01* X748Y39327D01* X820Y39255D01* X851Y39300D01* X880Y39363D01* X886Y39385D01* Y37666D01* X871Y37700D01* X840Y37744D01* X768Y37673D01* X784Y37650D01* X806Y37602D01* X820Y37552D01* X825Y37500D01* X820Y37447D01* X806Y37397D01* X784Y37350D01* X768Y37327D01* X840Y37255D01* X871Y37300D01* X886Y37333D01* Y35706D01* X860Y35744D01* X788Y35673D01* X804Y35650D01* X826Y35602D01* X840Y35552D01* X845Y35500D01* X840Y35447D01* X826Y35397D01* X804Y35350D01* X788Y35327D01* X860Y35255D01* X886Y35293D01* Y33734D01* X880Y33744D01* X808Y33673D01* X824Y33650D01* X846Y33602D01* X860Y33552D01* X865Y33500D01* X860Y33447D01* X846Y33397D01* X824Y33350D01* X808Y33327D01* X880Y33255D01* X886Y33265D01* Y31731D01* X828Y31673D01* X844Y31650D01* X866Y31602D01* X880Y31552D01* X885Y31500D01* X880Y31447D01* X866Y31397D01* X844Y31350D01* X828Y31327D01* X886Y31268D01* Y29711D01* X848Y29673D01* X864Y29650D01* X886Y29602D01* Y29397D01* X864Y29350D01* X848Y29327D01* X886Y29288D01* Y27691D01* X868Y27673D01* X884Y27650D01* X886Y27645D01* Y27354D01* X884Y27350D01* X868Y27327D01* X886Y27308D01* Y25817D01* X845Y25846D01* X781Y25875D01* X714Y25893D01* X665Y25898D01* Y27103D01* X694Y27106D01* X761Y27124D01* X825Y27153D01* X869Y27184D01* X798Y27256D01* X775Y27240D01* X727Y27218D01* X677Y27204D01* X665Y27203D01* Y27796D01* X677Y27795D01* X727Y27781D01* X775Y27759D01* X798Y27743D01* X869Y27815D01* X825Y27846D01* X761Y27875D01* X694Y27893D01* X665Y27896D01* Y29105D01* X674Y29106D01* X741Y29124D01* X805Y29153D01* X849Y29184D01* X778Y29256D01* X755Y29240D01* X707Y29218D01* X665Y29206D01* Y29793D01* X707Y29781D01* X755Y29759D01* X778Y29743D01* X849Y29815D01* X805Y29846D01* X741Y29875D01* X674Y29893D01* X665Y29894D01* Y31108D01* X721Y31124D01* X785Y31153D01* X829Y31184D01* X758Y31256D01* X735Y31240D01* X687Y31218D01* X665Y31212D01* Y31787D01* X687Y31781D01* X735Y31759D01* X758Y31743D01* X829Y31815D01* X785Y31846D01* X721Y31875D01* X665Y31891D01* Y33114D01* X701Y33124D01* X765Y33153D01* X809Y33184D01* X738Y33256D01* X715Y33240D01* X667Y33218D01* X665Y33217D01* Y33782D01* X667Y33781D01* X715Y33759D01* X738Y33743D01* X809Y33815D01* X765Y33846D01* X701Y33875D01* X665Y33885D01* Y35119D01* X681Y35124D01* X745Y35153D01* X789Y35184D01* X718Y35256D01* X695Y35240D01* X665Y35226D01* Y35773D01* X695Y35759D01* X718Y35743D01* X789Y35815D01* X745Y35846D01* X681Y35875D01* X665Y35880D01* Y37125D01* X725Y37153D01* X769Y37184D01* X698Y37256D01* X675Y37240D01* X665Y37235D01* Y37764D01* X675Y37759D01* X698Y37743D01* X769Y37815D01* X725Y37846D01* X665Y37874D01* Y39134D01* X705Y39153D01* X749Y39184D01* X678Y39256D01* X665Y39247D01* Y39752D01* X678Y39743D01* X749Y39815D01* X705Y39846D01* X665Y39865D01* Y40000D01* G37* G36* X886Y15873D02*X881Y15875D01* X814Y15893D01* X745Y15900D01* X675Y15893D01* X665Y15891D01* Y17105D01* X725Y17100D01* X794Y17106D01* X861Y17124D01* X886Y17135D01* Y15873D01* G37* G36* Y17248D02*X875Y17240D01* X827Y17218D01* X777Y17204D01* X725Y17200D01* X672Y17204D01* X665Y17206D01* Y17793D01* X672Y17795D01* X725Y17800D01* X777Y17795D01* X827Y17781D01* X875Y17759D01* X886Y17751D01* Y17248D01* G37* G36* Y17864D02*X861Y17875D01* X794Y17893D01* X725Y17900D01* X665Y17894D01* Y19103D01* X705Y19100D01* X774Y19106D01* X841Y19124D01* X886Y19145D01* Y17864D01* G37* G36* Y19247D02*X878Y19256D01* X855Y19240D01* X807Y19218D01* X757Y19204D01* X705Y19200D01* X665Y19203D01* Y19796D01* X705Y19800D01* X757Y19795D01* X807Y19781D01* X855Y19759D01* X878Y19743D01* X886Y19752D01* Y19247D01* G37* G36* Y19854D02*X841Y19875D01* X774Y19893D01* X705Y19900D01* X665Y19896D01* Y21101D01* X685Y21100D01* X754Y21106D01* X821Y21124D01* X885Y21153D01* X886Y21154D01* Y19854D01* G37* G36* Y21227D02*X858Y21256D01* X835Y21240D01* X787Y21218D01* X737Y21204D01* X685Y21200D01* X665Y21201D01* Y21798D01* X685Y21800D01* X737Y21795D01* X787Y21781D01* X835Y21759D01* X858Y21743D01* X886Y21772D01* Y21227D01* G37* G36* Y21845D02*X885Y21846D01* X821Y21875D01* X754Y21893D01* X685Y21900D01* X665Y21898D01* Y23100D01* X734Y23106D01* X801Y23124D01* X865Y23153D01* X886Y23169D01* Y21845D01* G37* G36* Y23207D02*X838Y23256D01* X815Y23240D01* X767Y23218D01* X717Y23204D01* X665Y23200D01* Y23800D01* X717Y23795D01* X767Y23781D01* X815Y23759D01* X838Y23743D01* X886Y23792D01* Y23207D01* G37* G36* Y23831D02*X865Y23846D01* X801Y23875D01* X734Y23893D01* X665Y23900D01* Y25101D01* X714Y25106D01* X781Y25124D01* X845Y25153D01* X886Y25183D01* Y23831D01* G37* G36* Y25187D02*X818Y25256D01* X795Y25240D01* X747Y25218D01* X697Y25204D01* X665Y25201D01* Y25798D01* X697Y25795D01* X747Y25781D01* X795Y25759D01* X818Y25743D01* X886Y25812D01* Y25187D01* G37* G36* Y40000D02*X986D01* Y29614D01* X980Y29636D01* X951Y29700D01* X920Y29744D01* X886Y29711D01* Y31268D01* X900Y31255D01* X931Y31300D01* X960Y31363D01* X978Y31430D01* X985Y31500D01* X978Y31569D01* X960Y31636D01* X931Y31700D01* X900Y31744D01* X886Y31731D01* Y33265D01* X911Y33300D01* X940Y33363D01* X958Y33430D01* X965Y33500D01* X958Y33569D01* X940Y33636D01* X911Y33700D01* X886Y33734D01* Y35293D01* X891Y35300D01* X920Y35363D01* X938Y35430D01* X945Y35500D01* X938Y35569D01* X920Y35636D01* X891Y35700D01* X886Y35706D01* Y37333D01* X900Y37363D01* X918Y37430D01* X925Y37500D01* X918Y37569D01* X900Y37636D01* X886Y37666D01* Y39385D01* X898Y39430D01* X905Y39500D01* X898Y39569D01* X886Y39614D01* Y40000D01* G37* G36* Y29602D02*X900Y29552D01* X905Y29500D01* X900Y29447D01* X886Y29397D01* Y29602D01* G37* G36* Y29288D02*X920Y29255D01* X951Y29300D01* X980Y29363D01* X986Y29385D01* Y27666D01* X971Y27700D01* X940Y27744D01* X886Y27691D01* Y29288D01* G37* G36* Y27645D02*X906Y27602D01* X920Y27552D01* X925Y27500D01* X920Y27447D01* X906Y27397D01* X886Y27354D01* Y27645D01* G37* G36* Y27308D02*X940Y27255D01* X971Y27300D01* X986Y27333D01* Y25706D01* X960Y25744D01* X888Y25673D01* X904Y25650D01* X926Y25602D01* X940Y25552D01* X945Y25500D01* X940Y25447D01* X926Y25397D01* X904Y25350D01* X888Y25327D01* X960Y25255D01* X986Y25293D01* Y23734D01* X980Y23744D01* X908Y23673D01* X924Y23650D01* X946Y23602D01* X960Y23552D01* X965Y23500D01* X960Y23447D01* X946Y23397D01* X924Y23350D01* X908Y23327D01* X980Y23255D01* X986Y23265D01* Y21731D01* X928Y21673D01* X944Y21650D01* X966Y21602D01* X980Y21552D01* X985Y21500D01* X980Y21447D01* X966Y21397D01* X944Y21350D01* X928Y21327D01* X986Y21268D01* Y19711D01* X948Y19673D01* X964Y19650D01* X986Y19602D01* Y19397D01* X964Y19350D01* X948Y19327D01* X986Y19288D01* Y17691D01* X968Y17673D01* X984Y17650D01* X986Y17645D01* Y17354D01* X984Y17350D01* X968Y17327D01* X986Y17308D01* Y15817D01* X945Y15846D01* X886Y15873D01* Y17135D01* X925Y17153D01* X969Y17184D01* X898Y17256D01* X886Y17248D01* Y17751D01* X898Y17743D01* X969Y17815D01* X925Y17846D01* X886Y17864D01* Y19145D01* X905Y19153D01* X949Y19184D01* X886Y19247D01* Y19752D01* X949Y19815D01* X905Y19846D01* X886Y19854D01* Y21154D01* X929Y21184D01* X886Y21227D01* Y21772D01* X929Y21815D01* X886Y21845D01* Y23169D01* X909Y23184D01* X886Y23207D01* Y23792D01* X909Y23815D01* X886Y23831D01* Y25183D01* X889Y25184D01* X886Y25187D01* Y25812D01* X889Y25815D01* X886Y25817D01* Y27308D01* G37* G36* X665Y15787D02*X692Y15795D01* X745Y15800D01* X797Y15795D01* X847Y15781D01* X895Y15759D01* X918Y15743D01* X986Y15812D01* Y15187D01* X918Y15256D01* X895Y15240D01* X847Y15218D01* X797Y15204D01* X745Y15200D01* X692Y15204D01* X665Y15212D01* Y15787D01* G37* G36* Y15108D02*X675Y15106D01* X745Y15100D01* X814Y15106D01* X881Y15124D01* X945Y15153D01* X986Y15183D01* Y13831D01* X965Y13846D01* X901Y13875D01* X834Y13893D01* X765Y13900D01* X695Y13893D01* X665Y13885D01* Y15108D01* G37* G36* Y13782D02*X712Y13795D01* X765Y13800D01* X817Y13795D01* X867Y13781D01* X915Y13759D01* X938Y13743D01* X986Y13792D01* Y13207D01* X938Y13256D01* X915Y13240D01* X867Y13218D01* X817Y13204D01* X765Y13200D01* X712Y13204D01* X665Y13217D01* Y13782D01* G37* G36* Y13114D02*X695Y13106D01* X765Y13100D01* X834Y13106D01* X901Y13124D01* X965Y13153D01* X986Y13169D01* Y11845D01* X985Y11846D01* X921Y11875D01* X854Y11893D01* X785Y11900D01* X715Y11893D01* X665Y11880D01* Y13114D01* G37* G36* Y11773D02*X682Y11781D01* X732Y11795D01* X785Y11800D01* X837Y11795D01* X887Y11781D01* X935Y11759D01* X958Y11743D01* X986Y11772D01* Y11227D01* X958Y11256D01* X935Y11240D01* X887Y11218D01* X837Y11204D01* X785Y11200D01* X732Y11204D01* X682Y11218D01* X665Y11226D01* Y11773D01* G37* G36* Y11119D02*X715Y11106D01* X785Y11100D01* X854Y11106D01* X921Y11124D01* X985Y11153D01* X986Y11154D01* Y9854D01* X941Y9875D01* X874Y9893D01* X805Y9900D01* X735Y9893D01* X668Y9875D01* X665Y9874D01* Y11119D01* G37* G36* Y9764D02*X702Y9781D01* X752Y9795D01* X805Y9800D01* X857Y9795D01* X907Y9781D01* X955Y9759D01* X978Y9743D01* X986Y9752D01* Y9247D01* X978Y9256D01* X955Y9240D01* X907Y9218D01* X857Y9204D01* X805Y9200D01* X752Y9204D01* X702Y9218D01* X665Y9235D01* Y9764D01* G37* G36* Y9125D02*X668Y9124D01* X735Y9106D01* X805Y9100D01* X874Y9106D01* X941Y9124D01* X986Y9145D01* Y7864D01* X961Y7875D01* X894Y7893D01* X825Y7900D01* X755Y7893D01* X688Y7875D01* X665Y7865D01* Y9125D01* G37* G36* Y7752D02*X675Y7759D01* X722Y7781D01* X772Y7795D01* X825Y7800D01* X877Y7795D01* X927Y7781D01* X975Y7759D01* X986Y7751D01* Y7248D01* X975Y7240D01* X927Y7218D01* X877Y7204D01* X825Y7200D01* X772Y7204D01* X722Y7218D01* X675Y7240D01* X665Y7247D01* Y7752D01* G37* G36* Y7134D02*X688Y7124D01* X755Y7106D01* X825Y7100D01* X894Y7106D01* X961Y7124D01* X986Y7135D01* Y5873D01* X981Y5875D01* X914Y5893D01* X845Y5900D01* X775Y5893D01* X708Y5875D01* X665Y5855D01* Y7134D01* G37* G36* Y5750D02*X672Y5743D01* X695Y5759D01* X742Y5781D01* X792Y5795D01* X845Y5800D01* X897Y5795D01* X947Y5781D01* X986Y5763D01* Y5236D01* X947Y5218D01* X897Y5204D01* X845Y5200D01* X792Y5204D01* X742Y5218D01* X695Y5240D01* X672Y5256D01* X665Y5249D01* Y5750D01* G37* G36* Y5144D02*X708Y5124D01* X775Y5106D01* X845Y5100D01* X914Y5106D01* X981Y5124D01* X986Y5126D01* Y3879D01* X934Y3893D01* X865Y3900D01* X795Y3893D01* X728Y3875D01* X665Y3846D01* Y5144D01* G37* G36* Y3770D02*X692Y3743D01* X715Y3759D01* X762Y3781D01* X812Y3795D01* X865Y3800D01* X917Y3795D01* X967Y3781D01* X986Y3772D01* Y3227D01* X967Y3218D01* X917Y3204D01* X865Y3200D01* X812Y3204D01* X762Y3218D01* X715Y3240D01* X692Y3256D01* X665Y3229D01* Y3770D01* G37* G36* Y3153D02*X728Y3124D01* X795Y3106D01* X865Y3100D01* X934Y3106D01* X986Y3120D01* Y1885D01* X954Y1893D01* X885Y1900D01* X815Y1893D01* X748Y1875D01* X685Y1846D01* X665Y1832D01* Y3153D01* G37* G36* Y1790D02*X712Y1743D01* X735Y1759D01* X782Y1781D01* X832Y1795D01* X885Y1800D01* X937Y1795D01* X986Y1782D01* Y1217D01* X937Y1204D01* X885Y1200D01* X832Y1204D01* X782Y1218D01* X735Y1240D01* X712Y1256D01* X665Y1209D01* Y1790D01* G37* G36* Y1167D02*X685Y1153D01* X748Y1124D01* X815Y1106D01* X885Y1100D01* X954Y1106D01* X986Y1114D01* Y0D01* X665D01* Y1167D01* G37* G36* X986Y40000D02*X1066D01* Y21614D01* X1060Y21636D01* X1031Y21700D01* X1000Y21744D01* X986Y21731D01* Y23265D01* X1011Y23300D01* X1040Y23363D01* X1058Y23430D01* X1065Y23500D01* X1058Y23569D01* X1040Y23636D01* X1011Y23700D01* X986Y23734D01* Y25293D01* X991Y25300D01* X1020Y25363D01* X1038Y25430D01* X1045Y25500D01* X1038Y25569D01* X1020Y25636D01* X991Y25700D01* X986Y25706D01* Y27333D01* X1000Y27363D01* X1018Y27430D01* X1025Y27500D01* X1018Y27569D01* X1000Y27636D01* X986Y27666D01* Y29385D01* X998Y29430D01* X1005Y29500D01* X998Y29569D01* X986Y29614D01* Y40000D01* G37* G36* X1066Y0D02*X986D01* Y1114D01* X1021Y1124D01* X1066Y1145D01* Y0D01* G37* G36* Y1247D02*X1058Y1256D01* X1035Y1240D01* X987Y1218D01* X986Y1217D01* Y1782D01* X987Y1781D01* X1035Y1759D01* X1058Y1743D01* X1066Y1752D01* Y1247D01* G37* G36* Y1854D02*X1021Y1875D01* X986Y1885D01* Y3120D01* X1001Y3124D01* X1065Y3153D01* X1066Y3154D01* Y1854D01* G37* G36* Y3227D02*X1038Y3256D01* X1015Y3240D01* X986Y3227D01* Y3772D01* X1015Y3759D01* X1038Y3743D01* X1066Y3772D01* Y3227D01* G37* G36* Y3845D02*X1065Y3846D01* X1001Y3875D01* X986Y3879D01* Y5126D01* X1045Y5153D01* X1066Y5169D01* Y3845D01* G37* G36* Y5207D02*X1018Y5256D01* X995Y5240D01* X986Y5236D01* Y5763D01* X995Y5759D01* X1018Y5743D01* X1066Y5792D01* Y5207D01* G37* G36* Y5831D02*X1045Y5846D01* X986Y5873D01* Y7135D01* X1025Y7153D01* X1066Y7183D01* Y5831D01* G37* G36* Y7187D02*X998Y7256D01* X986Y7248D01* Y7751D01* X998Y7743D01* X1066Y7812D01* Y7187D01* G37* G36* Y7817D02*X1025Y7846D01* X986Y7864D01* Y9145D01* X1005Y9153D01* X1049Y9184D01* X986Y9247D01* Y9752D01* X1049Y9815D01* X1005Y9846D01* X986Y9854D01* Y11154D01* X1029Y11184D01* X986Y11227D01* Y11772D01* X1029Y11815D01* X986Y11845D01* Y13169D01* X1009Y13184D01* X986Y13207D01* Y13792D01* X1009Y13815D01* X986Y13831D01* Y15183D01* X989Y15184D01* X986Y15187D01* Y15812D01* X989Y15815D01* X986Y15817D01* Y17308D01* X1040Y17255D01* X1066Y17293D01* Y15734D01* X1060Y15744D01* X988Y15673D01* X1004Y15650D01* X1026Y15602D01* X1040Y15552D01* X1045Y15500D01* X1040Y15447D01* X1026Y15397D01* X1004Y15350D01* X988Y15327D01* X1060Y15255D01* X1066Y15265D01* Y13731D01* X1008Y13673D01* X1024Y13650D01* X1046Y13602D01* X1060Y13552D01* X1065Y13500D01* X1060Y13447D01* X1046Y13397D01* X1024Y13350D01* X1008Y13327D01* X1066Y13268D01* Y11711D01* X1028Y11673D01* X1044Y11650D01* X1066Y11602D01* Y11397D01* X1044Y11350D01* X1028Y11327D01* X1066Y11288D01* Y9691D01* X1048Y9673D01* X1064Y9650D01* X1066Y9645D01* Y9354D01* X1064Y9350D01* X1048Y9327D01* X1066Y9308D01* Y7817D01* G37* G36* Y17706D02*X1040Y17744D01* X986Y17691D01* Y19288D01* X1020Y19255D01* X1051Y19300D01* X1066Y19333D01* Y17706D01* G37* G36* Y19666D02*X1051Y19700D01* X1020Y19744D01* X986Y19711D01* Y21268D01* X1000Y21255D01* X1031Y21300D01* X1060Y21363D01* X1066Y21385D01* Y19666D01* G37* G36* Y40000D02*X1146D01* Y13614D01* X1140Y13636D01* X1111Y13700D01* X1080Y13744D01* X1066Y13731D01* Y15265D01* X1091Y15300D01* X1120Y15363D01* X1138Y15430D01* X1145Y15500D01* X1138Y15569D01* X1120Y15636D01* X1091Y15700D01* X1066Y15734D01* Y17293D01* X1071Y17300D01* X1100Y17363D01* X1118Y17430D01* X1125Y17500D01* X1118Y17569D01* X1100Y17636D01* X1071Y17700D01* X1066Y17706D01* Y19333D01* X1080Y19363D01* X1098Y19430D01* X1105Y19500D01* X1098Y19569D01* X1080Y19636D01* X1066Y19666D01* Y21385D01* X1078Y21430D01* X1085Y21500D01* X1078Y21569D01* X1066Y21614D01* Y40000D01* G37* G36* X1146Y0D02*X1066D01* Y1145D01* X1085Y1153D01* X1129Y1184D01* X1066Y1247D01* Y1752D01* X1129Y1815D01* X1085Y1846D01* X1066Y1854D01* Y3154D01* X1109Y3184D01* X1066Y3227D01* Y3772D01* X1109Y3815D01* X1066Y3845D01* Y5169D01* X1089Y5184D01* X1066Y5207D01* Y5792D01* X1089Y5815D01* X1066Y5831D01* Y7183D01* X1069Y7184D01* X1066Y7187D01* Y7812D01* X1069Y7815D01* X1066Y7817D01* Y9308D01* X1120Y9255D01* X1146Y9293D01* Y7734D01* X1140Y7744D01* X1068Y7673D01* X1084Y7650D01* X1106Y7602D01* X1120Y7552D01* X1125Y7500D01* X1120Y7447D01* X1106Y7397D01* X1084Y7350D01* X1068Y7327D01* X1140Y7255D01* X1146Y7265D01* Y5731D01* X1088Y5673D01* X1104Y5650D01* X1126Y5602D01* X1140Y5552D01* X1145Y5500D01* X1140Y5447D01* X1126Y5397D01* X1104Y5350D01* X1088Y5327D01* X1146Y5268D01* Y3711D01* X1108Y3673D01* X1124Y3650D01* X1146Y3602D01* Y3397D01* X1124Y3350D01* X1108Y3327D01* X1146Y3288D01* Y1691D01* X1128Y1673D01* X1144Y1650D01* X1146Y1645D01* Y1354D01* X1144Y1350D01* X1128Y1327D01* X1146Y1308D01* Y0D01* G37* G36* Y9706D02*X1120Y9744D01* X1066Y9691D01* Y11288D01* X1100Y11255D01* X1131Y11300D01* X1146Y11333D01* Y9706D01* G37* G36* Y11666D02*X1131Y11700D01* X1100Y11744D01* X1066Y11711D01* Y13268D01* X1080Y13255D01* X1111Y13300D01* X1140Y13363D01* X1146Y13385D01* Y11666D01* G37* G36* Y40000D02*X2223D01* Y39711D01* X2189Y39744D01* X2158Y39700D01* X2129Y39636D01* X2111Y39569D01* X2105Y39500D01* X2111Y39430D01* X2129Y39363D01* X2158Y39300D01* X2189Y39255D01* X2223Y39288D01* Y37731D01* X2209Y37744D01* X2178Y37700D01* X2149Y37636D01* X2131Y37569D01* X2125Y37500D01* X2131Y37430D01* X2149Y37363D01* X2178Y37300D01* X2209Y37255D01* X2223Y37268D01* Y35735D01* X2198Y35700D01* X2169Y35636D01* X2151Y35569D01* X2145Y35500D01* X2151Y35430D01* X2169Y35363D01* X2198Y35300D01* X2223Y35264D01* Y33706D01* X2218Y33700D01* X2189Y33636D01* X2171Y33569D01* X2165Y33500D01* X2171Y33430D01* X2189Y33363D01* X2218Y33300D01* X2223Y33293D01* Y31667D01* X2209Y31636D01* X2191Y31569D01* X2185Y31500D01* X2191Y31430D01* X2209Y31363D01* X2223Y31333D01* Y29614D01* X2211Y29569D01* X2205Y29500D01* X2211Y29430D01* X2223Y29385D01* Y0D01* X1146D01* Y1308D01* X1200Y1255D01* X1231Y1300D01* X1260Y1363D01* X1278Y1430D01* X1285Y1500D01* X1278Y1569D01* X1260Y1636D01* X1231Y1700D01* X1200Y1744D01* X1146Y1691D01* Y3288D01* X1180Y3255D01* X1211Y3300D01* X1240Y3363D01* X1258Y3430D01* X1265Y3500D01* X1258Y3569D01* X1240Y3636D01* X1211Y3700D01* X1180Y3744D01* X1146Y3711D01* Y5268D01* X1160Y5255D01* X1191Y5300D01* X1220Y5363D01* X1238Y5430D01* X1245Y5500D01* X1238Y5569D01* X1220Y5636D01* X1191Y5700D01* X1160Y5744D01* X1146Y5731D01* Y7265D01* X1171Y7300D01* X1200Y7363D01* X1218Y7430D01* X1225Y7500D01* X1218Y7569D01* X1200Y7636D01* X1171Y7700D01* X1146Y7734D01* Y9293D01* X1151Y9300D01* X1180Y9363D01* X1198Y9430D01* X1205Y9500D01* X1198Y9569D01* X1180Y9636D01* X1151Y9700D01* X1146Y9706D01* Y11333D01* X1160Y11363D01* X1178Y11430D01* X1185Y11500D01* X1178Y11569D01* X1160Y11636D01* X1146Y11666D01* Y13385D01* X1158Y13430D01* X1165Y13500D01* X1158Y13569D01* X1146Y13614D01* Y40000D01* G37* G36* X2223Y39397D02*X2223Y39397D01* X2209Y39447D01* X2205Y39500D01* X2209Y39552D01* X2223Y39602D01* X2223Y39602D01* Y39397D01* G37* G36* Y40000D02*X2323D01* Y39854D01* X2305Y39846D01* X2260Y39815D01* X2323Y39752D01* Y39247D01* X2260Y39184D01* X2305Y39153D01* X2323Y39145D01* Y37845D01* X2280Y37815D01* X2323Y37772D01* Y37227D01* X2280Y37184D01* X2323Y37154D01* Y35831D01* X2300Y35815D01* X2323Y35792D01* Y35207D01* X2300Y35184D01* X2323Y35168D01* Y33817D01* X2320Y33815D01* X2323Y33812D01* Y33187D01* X2320Y33184D01* X2323Y33182D01* Y31691D01* X2269Y31744D01* X2238Y31700D01* X2223Y31667D01* Y33293D01* X2249Y33255D01* X2321Y33327D01* X2305Y33350D01* X2283Y33397D01* X2269Y33447D01* X2265Y33500D01* X2269Y33552D01* X2283Y33602D01* X2305Y33650D01* X2321Y33673D01* X2249Y33744D01* X2223Y33706D01* Y35264D01* X2229Y35255D01* X2301Y35327D01* X2285Y35350D01* X2263Y35397D01* X2249Y35447D01* X2245Y35500D01* X2249Y35552D01* X2263Y35602D01* X2285Y35650D01* X2301Y35673D01* X2229Y35744D01* X2223Y35735D01* Y37268D01* X2281Y37327D01* X2265Y37350D01* X2243Y37397D01* X2229Y37447D01* X2225Y37500D01* X2229Y37552D01* X2243Y37602D01* X2265Y37650D01* X2281Y37673D01* X2223Y37731D01* Y39288D01* X2261Y39327D01* X2245Y39350D01* X2223Y39397D01* Y39602D01* X2245Y39650D01* X2261Y39673D01* X2223Y39711D01* Y40000D01* G37* G36* Y31333D02*X2238Y31300D01* X2269Y31255D01* X2323Y31308D01* Y29711D01* X2289Y29744D01* X2258Y29700D01* X2229Y29636D01* X2223Y29614D01* Y31333D01* G37* G36* Y29385D02*X2229Y29363D01* X2258Y29300D01* X2289Y29255D01* X2323Y29288D01* Y27731D01* X2309Y27744D01* X2278Y27700D01* X2249Y27636D01* X2231Y27569D01* X2225Y27500D01* X2231Y27430D01* X2249Y27363D01* X2278Y27300D01* X2309Y27255D01* X2323Y27268D01* Y25735D01* X2298Y25700D01* X2269Y25636D01* X2251Y25569D01* X2245Y25500D01* X2251Y25430D01* X2269Y25363D01* X2298Y25300D01* X2323Y25264D01* Y23706D01* X2318Y23700D01* X2289Y23636D01* X2271Y23569D01* X2265Y23500D01* X2271Y23430D01* X2289Y23363D01* X2318Y23300D01* X2323Y23293D01* Y21667D01* X2309Y21636D01* X2291Y21569D01* X2285Y21500D01* X2291Y21430D01* X2309Y21363D01* X2323Y21333D01* Y19614D01* X2311Y19569D01* X2305Y19500D01* X2311Y19430D01* X2323Y19385D01* Y0D01* X2223D01* Y29385D01* G37* G36* X2323Y29397D02*X2323Y29397D01* X2309Y29447D01* X2305Y29500D01* X2309Y29552D01* X2323Y29602D01* X2323Y29602D01* Y29397D01* G37* G36* Y31354D02*X2303Y31397D01* X2289Y31447D01* X2285Y31500D01* X2289Y31552D01* X2303Y31602D01* X2323Y31645D01* Y31354D01* G37* G36* Y40000D02*X2403D01* Y39885D01* X2368Y39875D01* X2323Y39854D01* Y40000D01* G37* G36* Y39752D02*X2332Y39743D01* X2355Y39759D01* X2402Y39781D01* X2403Y39782D01* Y39217D01* X2402Y39218D01* X2355Y39240D01* X2332Y39256D01* X2323Y39247D01* Y39752D01* G37* G36* Y39145D02*X2368Y39124D01* X2403Y39114D01* Y37879D01* X2388Y37875D01* X2325Y37846D01* X2323Y37845D01* Y39145D01* G37* G36* Y37772D02*X2352Y37743D01* X2375Y37759D01* X2403Y37772D01* Y37227D01* X2375Y37240D01* X2352Y37256D01* X2323Y37227D01* Y37772D01* G37* G36* Y37154D02*X2325Y37153D01* X2388Y37124D01* X2403Y37120D01* Y35873D01* X2345Y35846D01* X2323Y35831D01* Y37154D01* G37* G36* Y35792D02*X2372Y35743D01* X2395Y35759D01* X2403Y35763D01* Y35236D01* X2395Y35240D01* X2372Y35256D01* X2323Y35207D01* Y35792D01* G37* G36* Y35168D02*X2345Y35153D01* X2403Y35126D01* Y33864D01* X2365Y33846D01* X2323Y33817D01* Y35168D01* G37* G36* Y33812D02*X2392Y33743D01* X2403Y33751D01* Y33248D01* X2392Y33256D01* X2323Y33187D01* Y33812D01* G37* G36* Y33182D02*X2365Y33153D01* X2403Y33135D01* Y31854D01* X2385Y31846D01* X2340Y31815D01* X2403Y31752D01* Y31247D01* X2340Y31184D01* X2385Y31153D01* X2403Y31145D01* Y29845D01* X2360Y29815D01* X2403Y29772D01* Y29227D01* X2360Y29184D01* X2403Y29154D01* Y27831D01* X2380Y27815D01* X2403Y27792D01* Y27207D01* X2380Y27184D01* X2403Y27168D01* Y25817D01* X2400Y25815D01* X2403Y25812D01* Y25187D01* X2400Y25184D01* X2403Y25182D01* Y23691D01* X2349Y23744D01* X2323Y23706D01* Y25264D01* X2329Y25255D01* X2401Y25327D01* X2385Y25350D01* X2363Y25397D01* X2349Y25447D01* X2345Y25500D01* X2349Y25552D01* X2363Y25602D01* X2385Y25650D01* X2401Y25673D01* X2329Y25744D01* X2323Y25735D01* Y27268D01* X2381Y27327D01* X2365Y27350D01* X2343Y27397D01* X2329Y27447D01* X2325Y27500D01* X2329Y27552D01* X2343Y27602D01* X2365Y27650D01* X2381Y27673D01* X2323Y27731D01* Y29288D01* X2361Y29327D01* X2345Y29350D01* X2323Y29397D01* Y29602D01* X2345Y29650D01* X2361Y29673D01* X2323Y29711D01* Y31308D01* X2341Y31327D01* X2325Y31350D01* X2323Y31354D01* Y31645D01* X2325Y31650D01* X2341Y31673D01* X2323Y31691D01* Y33182D01* G37* G36* Y23293D02*X2349Y23255D01* X2403Y23308D01* Y21711D01* X2369Y21744D01* X2338Y21700D01* X2323Y21667D01* Y23293D01* G37* G36* Y21333D02*X2338Y21300D01* X2369Y21255D01* X2403Y21288D01* Y19731D01* X2389Y19744D01* X2358Y19700D01* X2329Y19636D01* X2323Y19614D01* Y21333D01* G37* G36* Y19385D02*X2329Y19363D01* X2358Y19300D01* X2389Y19255D01* X2403Y19268D01* Y17735D01* X2378Y17700D01* X2349Y17636D01* X2331Y17569D01* X2325Y17500D01* X2331Y17430D01* X2349Y17363D01* X2378Y17300D01* X2403Y17264D01* Y15706D01* X2398Y15700D01* X2369Y15636D01* X2351Y15569D01* X2345Y15500D01* X2351Y15430D01* X2369Y15363D01* X2398Y15300D01* X2403Y15293D01* Y13667D01* X2389Y13636D01* X2371Y13569D01* X2365Y13500D01* X2371Y13430D01* X2389Y13363D01* X2403Y13333D01* Y11614D01* X2391Y11569D01* X2385Y11500D01* X2391Y11430D01* X2403Y11385D01* Y0D01* X2323D01* Y19385D01* G37* G36* X2403Y23354D02*X2383Y23397D01* X2369Y23447D01* X2365Y23500D01* X2369Y23552D01* X2383Y23602D01* X2403Y23645D01* Y23354D01* G37* G36* Y21397D02*X2403Y21397D01* X2389Y21447D01* X2385Y21500D01* X2389Y21552D01* X2403Y21602D01* X2403Y21602D01* Y21397D01* G37* G36* Y40000D02*X2725D01* Y39832D01* X2705Y39846D01* X2641Y39875D01* X2574Y39893D01* X2505Y39900D01* X2435Y39893D01* X2403Y39885D01* Y40000D01* G37* G36* Y39782D02*X2452Y39795D01* X2505Y39800D01* X2557Y39795D01* X2607Y39781D01* X2655Y39759D01* X2678Y39743D01* X2725Y39790D01* Y39209D01* X2678Y39256D01* X2655Y39240D01* X2607Y39218D01* X2557Y39204D01* X2505Y39200D01* X2452Y39204D01* X2403Y39217D01* Y39782D01* G37* G36* Y39114D02*X2435Y39106D01* X2505Y39100D01* X2574Y39106D01* X2641Y39124D01* X2705Y39153D01* X2725Y39167D01* Y37846D01* X2661Y37875D01* X2594Y37893D01* X2525Y37900D01* X2455Y37893D01* X2403Y37879D01* Y39114D01* G37* G36* Y37772D02*X2422Y37781D01* X2472Y37795D01* X2525Y37800D01* X2577Y37795D01* X2627Y37781D01* X2675Y37759D01* X2698Y37743D01* X2725Y37770D01* Y37229D01* X2698Y37256D01* X2675Y37240D01* X2627Y37218D01* X2577Y37204D01* X2525Y37200D01* X2472Y37204D01* X2422Y37218D01* X2403Y37227D01* Y37772D01* G37* G36* Y37120D02*X2455Y37106D01* X2525Y37100D01* X2594Y37106D01* X2661Y37124D01* X2725Y37153D01* Y35855D01* X2681Y35875D01* X2614Y35893D01* X2545Y35900D01* X2475Y35893D01* X2408Y35875D01* X2403Y35873D01* Y37120D01* G37* G36* Y35763D02*X2442Y35781D01* X2492Y35795D01* X2545Y35800D01* X2597Y35795D01* X2647Y35781D01* X2695Y35759D01* X2718Y35743D01* X2725Y35750D01* Y35249D01* X2718Y35256D01* X2695Y35240D01* X2647Y35218D01* X2597Y35204D01* X2545Y35200D01* X2492Y35204D01* X2442Y35218D01* X2403Y35236D01* Y35763D01* G37* G36* Y35126D02*X2408Y35124D01* X2475Y35106D01* X2545Y35100D01* X2614Y35106D01* X2681Y35124D01* X2725Y35144D01* Y33865D01* X2701Y33875D01* X2634Y33893D01* X2565Y33900D01* X2495Y33893D01* X2428Y33875D01* X2403Y33864D01* Y35126D01* G37* G36* Y33751D02*X2415Y33759D01* X2462Y33781D01* X2512Y33795D01* X2565Y33800D01* X2617Y33795D01* X2667Y33781D01* X2715Y33759D01* X2725Y33752D01* Y33247D01* X2715Y33240D01* X2667Y33218D01* X2617Y33204D01* X2565Y33200D01* X2512Y33204D01* X2462Y33218D01* X2415Y33240D01* X2403Y33248D01* Y33751D01* G37* G36* Y33135D02*X2428Y33124D01* X2495Y33106D01* X2565Y33100D01* X2634Y33106D01* X2701Y33124D01* X2725Y33134D01* Y31874D01* X2721Y31875D01* X2654Y31893D01* X2585Y31900D01* X2515Y31893D01* X2448Y31875D01* X2403Y31854D01* Y33135D01* G37* G36* Y31752D02*X2412Y31743D01* X2435Y31759D01* X2482Y31781D01* X2532Y31795D01* X2585Y31800D01* X2637Y31795D01* X2687Y31781D01* X2725Y31764D01* Y31235D01* X2687Y31218D01* X2637Y31204D01* X2585Y31200D01* X2532Y31204D01* X2482Y31218D01* X2435Y31240D01* X2412Y31256D01* X2403Y31247D01* Y31752D01* G37* G36* Y31145D02*X2448Y31124D01* X2515Y31106D01* X2585Y31100D01* X2654Y31106D01* X2721Y31124D01* X2725Y31125D01* Y29880D01* X2674Y29893D01* X2605Y29900D01* X2535Y29893D01* X2468Y29875D01* X2405Y29846D01* X2403Y29845D01* Y31145D01* G37* G36* Y29772D02*X2432Y29743D01* X2455Y29759D01* X2502Y29781D01* X2552Y29795D01* X2605Y29800D01* X2657Y29795D01* X2707Y29781D01* X2725Y29773D01* Y29226D01* X2707Y29218D01* X2657Y29204D01* X2605Y29200D01* X2552Y29204D01* X2502Y29218D01* X2455Y29240D01* X2432Y29256D01* X2403Y29227D01* Y29772D01* G37* G36* Y29154D02*X2405Y29153D01* X2468Y29124D01* X2535Y29106D01* X2605Y29100D01* X2674Y29106D01* X2725Y29119D01* Y27885D01* X2694Y27893D01* X2625Y27900D01* X2555Y27893D01* X2488Y27875D01* X2425Y27846D01* X2403Y27831D01* Y29154D01* G37* G36* Y27792D02*X2452Y27743D01* X2475Y27759D01* X2522Y27781D01* X2572Y27795D01* X2625Y27800D01* X2677Y27795D01* X2725Y27782D01* Y27217D01* X2677Y27204D01* X2625Y27200D01* X2572Y27204D01* X2522Y27218D01* X2475Y27240D01* X2452Y27256D01* X2403Y27207D01* Y27792D01* G37* G36* Y27168D02*X2425Y27153D01* X2488Y27124D01* X2555Y27106D01* X2625Y27100D01* X2694Y27106D01* X2725Y27114D01* Y25891D01* X2714Y25893D01* X2645Y25900D01* X2575Y25893D01* X2508Y25875D01* X2445Y25846D01* X2403Y25817D01* Y27168D01* G37* G36* Y25812D02*X2472Y25743D01* X2495Y25759D01* X2542Y25781D01* X2592Y25795D01* X2645Y25800D01* X2697Y25795D01* X2725Y25787D01* Y25212D01* X2697Y25204D01* X2645Y25200D01* X2592Y25204D01* X2542Y25218D01* X2495Y25240D01* X2472Y25256D01* X2403Y25187D01* Y25812D01* G37* G36* Y25182D02*X2445Y25153D01* X2483Y25135D01* Y23854D01* X2465Y23846D01* X2420Y23815D01* X2483Y23752D01* Y23247D01* X2420Y23184D01* X2465Y23153D01* X2483Y23145D01* Y21845D01* X2440Y21815D01* X2483Y21772D01* Y21227D01* X2440Y21184D01* X2483Y21154D01* Y19831D01* X2460Y19815D01* X2483Y19792D01* Y19207D01* X2460Y19184D01* X2483Y19168D01* Y17817D01* X2480Y17815D01* X2483Y17812D01* Y17187D01* X2480Y17184D01* X2483Y17182D01* Y15691D01* X2429Y15744D01* X2403Y15706D01* Y17264D01* X2409Y17255D01* X2481Y17327D01* X2465Y17350D01* X2443Y17397D01* X2429Y17447D01* X2425Y17500D01* X2429Y17552D01* X2443Y17602D01* X2465Y17650D01* X2481Y17673D01* X2409Y17744D01* X2403Y17735D01* Y19268D01* X2461Y19327D01* X2445Y19350D01* X2423Y19397D01* X2409Y19447D01* X2405Y19500D01* X2409Y19552D01* X2423Y19602D01* X2445Y19650D01* X2461Y19673D01* X2403Y19731D01* Y21288D01* X2441Y21327D01* X2425Y21350D01* X2403Y21397D01* Y21602D01* X2425Y21650D01* X2441Y21673D01* X2403Y21711D01* Y23308D01* X2421Y23327D01* X2405Y23350D01* X2403Y23354D01* Y23645D01* X2405Y23650D01* X2421Y23673D01* X2403Y23691D01* Y25182D01* G37* G36* X2483Y0D02*X2403D01* Y11385D01* X2409Y11363D01* X2438Y11300D01* X2469Y11255D01* X2483Y11268D01* Y9735D01* X2458Y9700D01* X2429Y9636D01* X2411Y9569D01* X2405Y9500D01* X2411Y9430D01* X2429Y9363D01* X2458Y9300D01* X2483Y9264D01* Y7706D01* X2478Y7700D01* X2449Y7636D01* X2431Y7569D01* X2425Y7500D01* X2431Y7430D01* X2449Y7363D01* X2478Y7300D01* X2483Y7293D01* Y5667D01* X2469Y5636D01* X2451Y5569D01* X2445Y5500D01* X2451Y5430D01* X2469Y5363D01* X2483Y5333D01* Y3614D01* X2471Y3569D01* X2465Y3500D01* X2471Y3430D01* X2483Y3385D01* Y0D01* G37* G36* Y11731D02*X2469Y11744D01* X2438Y11700D01* X2409Y11636D01* X2403Y11614D01* Y13333D01* X2418Y13300D01* X2449Y13255D01* X2483Y13288D01* Y11731D01* G37* G36* Y13397D02*X2483Y13397D01* X2469Y13447D01* X2465Y13500D01* X2469Y13552D01* X2483Y13602D01* X2483Y13602D01* Y13397D01* G37* G36* Y13711D02*X2449Y13744D01* X2418Y13700D01* X2403Y13667D01* Y15293D01* X2429Y15255D01* X2483Y15308D01* Y13711D01* G37* G36* Y15354D02*X2463Y15397D01* X2449Y15447D01* X2445Y15500D01* X2449Y15552D01* X2463Y15602D01* X2483Y15645D01* Y15354D01* G37* G36* Y25135D02*X2508Y25124D01* X2575Y25106D01* X2645Y25100D01* X2714Y25106D01* X2725Y25108D01* Y23894D01* X2665Y23900D01* X2595Y23893D01* X2528Y23875D01* X2483Y23854D01* Y25135D01* G37* G36* Y23752D02*X2492Y23743D01* X2515Y23759D01* X2562Y23781D01* X2612Y23795D01* X2665Y23800D01* X2717Y23795D01* X2725Y23793D01* Y23206D01* X2717Y23204D01* X2665Y23200D01* X2612Y23204D01* X2562Y23218D01* X2515Y23240D01* X2492Y23256D01* X2483Y23247D01* Y23752D01* G37* G36* Y23145D02*X2528Y23124D01* X2595Y23106D01* X2665Y23100D01* X2725Y23105D01* Y21896D01* X2685Y21900D01* X2615Y21893D01* X2548Y21875D01* X2485Y21846D01* X2483Y21845D01* Y23145D01* G37* G36* Y21772D02*X2512Y21743D01* X2535Y21759D01* X2582Y21781D01* X2632Y21795D01* X2685Y21800D01* X2725Y21796D01* Y21203D01* X2685Y21200D01* X2632Y21204D01* X2582Y21218D01* X2535Y21240D01* X2512Y21256D01* X2483Y21227D01* Y21772D01* G37* G36* Y21154D02*X2485Y21153D01* X2548Y21124D01* X2615Y21106D01* X2685Y21100D01* X2725Y21103D01* Y19898D01* X2705Y19900D01* X2635Y19893D01* X2568Y19875D01* X2505Y19846D01* X2483Y19831D01* Y21154D01* G37* G36* Y19792D02*X2532Y19743D01* X2555Y19759D01* X2602Y19781D01* X2652Y19795D01* X2705Y19800D01* X2725Y19798D01* Y19201D01* X2705Y19200D01* X2652Y19204D01* X2602Y19218D01* X2555Y19240D01* X2532Y19256D01* X2483Y19207D01* Y19792D01* G37* G36* Y19168D02*X2505Y19153D01* X2568Y19124D01* X2635Y19106D01* X2705Y19100D01* X2725Y19101D01* Y17900D01* X2655Y17893D01* X2588Y17875D01* X2525Y17846D01* X2483Y17817D01* Y19168D01* G37* G36* Y17812D02*X2552Y17743D01* X2575Y17759D01* X2622Y17781D01* X2672Y17795D01* X2725Y17800D01* Y17200D01* X2672Y17204D01* X2622Y17218D01* X2575Y17240D01* X2552Y17256D01* X2483Y17187D01* Y17812D01* G37* G36* Y17182D02*X2525Y17153D01* X2563Y17135D01* Y15854D01* X2545Y15846D01* X2500Y15815D01* X2563Y15752D01* Y15247D01* X2500Y15184D01* X2545Y15153D01* X2563Y15145D01* Y13845D01* X2520Y13815D01* X2563Y13772D01* Y13227D01* X2520Y13184D01* X2563Y13154D01* Y11831D01* X2540Y11815D01* X2563Y11792D01* Y11207D01* X2540Y11184D01* X2563Y11168D01* Y9817D01* X2560Y9815D01* X2563Y9812D01* Y9187D01* X2560Y9184D01* X2563Y9182D01* Y7691D01* X2509Y7744D01* X2483Y7706D01* Y9264D01* X2489Y9255D01* X2561Y9327D01* X2545Y9350D01* X2523Y9397D01* X2509Y9447D01* X2505Y9500D01* X2509Y9552D01* X2523Y9602D01* X2545Y9650D01* X2561Y9673D01* X2489Y9744D01* X2483Y9735D01* Y11268D01* X2541Y11327D01* X2525Y11350D01* X2503Y11397D01* X2489Y11447D01* X2485Y11500D01* X2489Y11552D01* X2503Y11602D01* X2525Y11650D01* X2541Y11673D01* X2483Y11731D01* Y13288D01* X2521Y13327D01* X2505Y13350D01* X2483Y13397D01* Y13602D01* X2505Y13650D01* X2521Y13673D01* X2483Y13711D01* Y15308D01* X2501Y15327D01* X2485Y15350D01* X2483Y15354D01* Y15645D01* X2485Y15650D01* X2501Y15673D01* X2483Y15691D01* Y17182D01* G37* G36* X2563Y0D02*X2483D01* Y3385D01* X2489Y3363D01* X2518Y3300D01* X2549Y3255D01* X2563Y3268D01* Y1735D01* X2538Y1700D01* X2509Y1636D01* X2491Y1569D01* X2485Y1500D01* X2491Y1430D01* X2509Y1363D01* X2538Y1300D01* X2563Y1264D01* Y0D01* G37* G36* Y3731D02*X2549Y3744D01* X2518Y3700D01* X2489Y3636D01* X2483Y3614D01* Y5333D01* X2498Y5300D01* X2529Y5255D01* X2563Y5288D01* Y3731D01* G37* G36* Y5397D02*X2563Y5397D01* X2549Y5447D01* X2545Y5500D01* X2549Y5552D01* X2563Y5602D01* X2563Y5602D01* Y5397D01* G37* G36* Y5711D02*X2529Y5744D01* X2498Y5700D01* X2483Y5667D01* Y7293D01* X2509Y7255D01* X2563Y7308D01* Y5711D01* G37* G36* Y7354D02*X2543Y7397D01* X2529Y7447D01* X2525Y7500D01* X2529Y7552D01* X2543Y7602D01* X2563Y7645D01* Y7354D01* G37* G36* Y17135D02*X2588Y17124D01* X2655Y17106D01* X2725Y17100D01* Y15898D01* X2675Y15893D01* X2608Y15875D01* X2563Y15854D01* Y17135D01* G37* G36* Y15752D02*X2572Y15743D01* X2595Y15759D01* X2642Y15781D01* X2692Y15795D01* X2725Y15798D01* Y15201D01* X2692Y15204D01* X2642Y15218D01* X2595Y15240D01* X2572Y15256D01* X2563Y15247D01* Y15752D01* G37* G36* Y15145D02*X2608Y15124D01* X2675Y15106D01* X2725Y15101D01* Y13896D01* X2695Y13893D01* X2628Y13875D01* X2565Y13846D01* X2563Y13845D01* Y15145D01* G37* G36* Y13772D02*X2592Y13743D01* X2615Y13759D01* X2662Y13781D01* X2712Y13795D01* X2725Y13796D01* Y13203D01* X2712Y13204D01* X2662Y13218D01* X2615Y13240D01* X2592Y13256D01* X2563Y13227D01* Y13772D01* G37* G36* Y13154D02*X2565Y13153D01* X2628Y13124D01* X2695Y13106D01* X2725Y13103D01* Y11894D01* X2715Y11893D01* X2648Y11875D01* X2585Y11846D01* X2563Y11831D01* Y13154D01* G37* G36* Y11792D02*X2612Y11743D01* X2635Y11759D01* X2682Y11781D01* X2725Y11793D01* Y11206D01* X2682Y11218D01* X2635Y11240D01* X2612Y11256D01* X2563Y11207D01* Y11792D01* G37* G36* Y11168D02*X2585Y11153D01* X2648Y11124D01* X2715Y11106D01* X2725Y11105D01* Y9891D01* X2668Y9875D01* X2605Y9846D01* X2563Y9817D01* Y11168D01* G37* G36* Y9812D02*X2632Y9743D01* X2655Y9759D01* X2702Y9781D01* X2725Y9787D01* Y9212D01* X2702Y9218D01* X2655Y9240D01* X2632Y9256D01* X2563Y9187D01* Y9812D01* G37* G36* Y9182D02*X2605Y9153D01* X2668Y9124D01* X2725Y9108D01* Y7885D01* X2688Y7875D01* X2625Y7846D01* X2580Y7815D01* X2652Y7743D01* X2675Y7759D01* X2722Y7781D01* X2725Y7782D01* Y7217D01* X2722Y7218D01* X2675Y7240D01* X2652Y7256D01* X2580Y7184D01* X2625Y7153D01* X2688Y7124D01* X2725Y7114D01* Y5880D01* X2708Y5875D01* X2645Y5846D01* X2600Y5815D01* X2672Y5743D01* X2695Y5759D01* X2725Y5773D01* Y5226D01* X2695Y5240D01* X2672Y5256D01* X2600Y5184D01* X2645Y5153D01* X2708Y5124D01* X2725Y5119D01* Y3874D01* X2665Y3846D01* X2620Y3815D01* X2692Y3743D01* X2715Y3759D01* X2725Y3764D01* Y3235D01* X2715Y3240D01* X2692Y3256D01* X2620Y3184D01* X2665Y3153D01* X2725Y3125D01* Y1865D01* X2685Y1846D01* X2640Y1815D01* X2712Y1743D01* X2725Y1752D01* Y1247D01* X2712Y1256D01* X2640Y1184D01* X2685Y1153D01* X2725Y1134D01* Y0D01* X2563D01* Y1264D01* X2569Y1255D01* X2641Y1327D01* X2625Y1350D01* X2603Y1397D01* X2589Y1447D01* X2585Y1500D01* X2589Y1552D01* X2603Y1602D01* X2625Y1650D01* X2641Y1673D01* X2569Y1744D01* X2563Y1735D01* Y3268D01* X2621Y3327D01* X2605Y3350D01* X2583Y3397D01* X2569Y3447D01* X2565Y3500D01* X2569Y3552D01* X2583Y3602D01* X2605Y3650D01* X2621Y3673D01* X2563Y3731D01* Y5288D01* X2601Y5327D01* X2585Y5350D01* X2563Y5397D01* Y5602D01* X2585Y5650D01* X2601Y5673D01* X2563Y5711D01* Y7308D01* X2581Y7327D01* X2565Y7350D01* X2563Y7354D01* Y7645D01* X2565Y7650D01* X2581Y7673D01* X2563Y7691D01* Y9182D01* G37* G36* X2725Y40000D02*X2866D01* Y39666D01* X2851Y39700D01* X2820Y39744D01* X2748Y39673D01* X2764Y39650D01* X2786Y39602D01* X2800Y39552D01* X2805Y39500D01* X2800Y39447D01* X2786Y39397D01* X2764Y39350D01* X2748Y39327D01* X2820Y39255D01* X2851Y39300D01* X2866Y39333D01* Y37706D01* X2840Y37744D01* X2768Y37673D01* X2784Y37650D01* X2806Y37602D01* X2820Y37552D01* X2825Y37500D01* X2820Y37447D01* X2806Y37397D01* X2784Y37350D01* X2768Y37327D01* X2840Y37255D01* X2866Y37293D01* Y35734D01* X2860Y35744D01* X2788Y35673D01* X2804Y35650D01* X2826Y35602D01* X2840Y35552D01* X2845Y35500D01* X2840Y35447D01* X2826Y35397D01* X2804Y35350D01* X2788Y35327D01* X2860Y35255D01* X2866Y35265D01* Y33731D01* X2808Y33673D01* X2824Y33650D01* X2846Y33602D01* X2860Y33552D01* X2865Y33500D01* X2860Y33447D01* X2846Y33397D01* X2824Y33350D01* X2808Y33327D01* X2866Y33268D01* Y31711D01* X2828Y31673D01* X2844Y31650D01* X2866Y31602D01* Y31397D01* X2844Y31350D01* X2828Y31327D01* X2866Y31288D01* Y29691D01* X2848Y29673D01* X2864Y29650D01* X2866Y29645D01* Y29354D01* X2864Y29350D01* X2848Y29327D01* X2866Y29308D01* Y27817D01* X2825Y27846D01* X2761Y27875D01* X2725Y27885D01* Y29119D01* X2741Y29124D01* X2805Y29153D01* X2849Y29184D01* X2778Y29256D01* X2755Y29240D01* X2725Y29226D01* Y29773D01* X2755Y29759D01* X2778Y29743D01* X2849Y29815D01* X2805Y29846D01* X2741Y29875D01* X2725Y29880D01* Y31125D01* X2785Y31153D01* X2829Y31184D01* X2758Y31256D01* X2735Y31240D01* X2725Y31235D01* Y31764D01* X2735Y31759D01* X2758Y31743D01* X2829Y31815D01* X2785Y31846D01* X2725Y31874D01* Y33134D01* X2765Y33153D01* X2809Y33184D01* X2738Y33256D01* X2725Y33247D01* Y33752D01* X2738Y33743D01* X2809Y33815D01* X2765Y33846D01* X2725Y33865D01* Y35144D01* X2745Y35153D01* X2789Y35184D01* X2725Y35249D01* Y35750D01* X2789Y35815D01* X2745Y35846D01* X2725Y35855D01* Y37153D01* X2769Y37184D01* X2725Y37229D01* Y37770D01* X2769Y37815D01* X2725Y37846D01* Y39167D01* X2749Y39184D01* X2725Y39209D01* Y39790D01* X2749Y39815D01* X2725Y39832D01* Y40000D01* G37* G36* X2866Y17873D02*X2861Y17875D01* X2794Y17893D01* X2725Y17900D01* Y19101D01* X2774Y19106D01* X2841Y19124D01* X2866Y19135D01* Y17873D01* G37* G36* Y19248D02*X2855Y19240D01* X2807Y19218D01* X2757Y19204D01* X2725Y19201D01* Y19798D01* X2757Y19795D01* X2807Y19781D01* X2855Y19759D01* X2866Y19751D01* Y19248D01* G37* G36* Y19864D02*X2841Y19875D01* X2774Y19893D01* X2725Y19898D01* Y21103D01* X2754Y21106D01* X2821Y21124D01* X2866Y21145D01* Y19864D01* G37* G36* Y21247D02*X2858Y21256D01* X2835Y21240D01* X2787Y21218D01* X2737Y21204D01* X2725Y21203D01* Y21796D01* X2737Y21795D01* X2787Y21781D01* X2835Y21759D01* X2858Y21743D01* X2866Y21752D01* Y21247D01* G37* G36* Y21854D02*X2821Y21875D01* X2754Y21893D01* X2725Y21896D01* Y23105D01* X2734Y23106D01* X2801Y23124D01* X2865Y23153D01* X2866Y23154D01* Y21854D01* G37* G36* Y23227D02*X2838Y23256D01* X2815Y23240D01* X2767Y23218D01* X2725Y23206D01* Y23793D01* X2767Y23781D01* X2815Y23759D01* X2838Y23743D01* X2866Y23772D01* Y23227D01* G37* G36* Y23845D02*X2865Y23846D01* X2801Y23875D01* X2734Y23893D01* X2725Y23894D01* Y25108D01* X2781Y25124D01* X2845Y25153D01* X2866Y25169D01* Y23845D01* G37* G36* Y25207D02*X2818Y25256D01* X2795Y25240D01* X2747Y25218D01* X2725Y25212D01* Y25787D01* X2747Y25781D01* X2795Y25759D01* X2818Y25743D01* X2866Y25792D01* Y25207D01* G37* G36* Y25831D02*X2845Y25846D01* X2781Y25875D01* X2725Y25891D01* Y27114D01* X2761Y27124D01* X2825Y27153D01* X2866Y27183D01* Y25831D01* G37* G36* Y27187D02*X2798Y27256D01* X2775Y27240D01* X2727Y27218D01* X2725Y27217D01* Y27782D01* X2727Y27781D01* X2775Y27759D01* X2798Y27743D01* X2866Y27812D01* Y27187D01* G37* G36* Y40000D02*X2966D01* Y31614D01* X2960Y31636D01* X2931Y31700D01* X2900Y31744D01* X2866Y31711D01* Y33268D01* X2880Y33255D01* X2911Y33300D01* X2940Y33363D01* X2958Y33430D01* X2965Y33500D01* X2958Y33569D01* X2940Y33636D01* X2911Y33700D01* X2880Y33744D01* X2866Y33731D01* Y35265D01* X2891Y35300D01* X2920Y35363D01* X2938Y35430D01* X2945Y35500D01* X2938Y35569D01* X2920Y35636D01* X2891Y35700D01* X2866Y35734D01* Y37293D01* X2871Y37300D01* X2900Y37363D01* X2918Y37430D01* X2925Y37500D01* X2918Y37569D01* X2900Y37636D01* X2871Y37700D01* X2866Y37706D01* Y39333D01* X2880Y39363D01* X2898Y39430D01* X2905Y39500D01* X2898Y39569D01* X2880Y39636D01* X2866Y39666D01* Y40000D01* G37* G36* Y31602D02*X2880Y31552D01* X2885Y31500D01* X2880Y31447D01* X2866Y31397D01* Y31602D01* G37* G36* Y31288D02*X2900Y31255D01* X2931Y31300D01* X2960Y31363D01* X2966Y31385D01* Y29666D01* X2951Y29700D01* X2920Y29744D01* X2866Y29691D01* Y31288D01* G37* G36* Y29645D02*X2886Y29602D01* X2900Y29552D01* X2905Y29500D01* X2900Y29447D01* X2886Y29397D01* X2866Y29354D01* Y29645D01* G37* G36* Y29308D02*X2920Y29255D01* X2951Y29300D01* X2966Y29333D01* Y27706D01* X2940Y27744D01* X2868Y27673D01* X2884Y27650D01* X2906Y27602D01* X2920Y27552D01* X2925Y27500D01* X2920Y27447D01* X2906Y27397D01* X2884Y27350D01* X2868Y27327D01* X2940Y27255D01* X2966Y27293D01* Y25734D01* X2960Y25744D01* X2888Y25673D01* X2904Y25650D01* X2926Y25602D01* X2940Y25552D01* X2945Y25500D01* X2940Y25447D01* X2926Y25397D01* X2904Y25350D01* X2888Y25327D01* X2960Y25255D01* X2966Y25265D01* Y23731D01* X2908Y23673D01* X2924Y23650D01* X2946Y23602D01* X2960Y23552D01* X2965Y23500D01* X2960Y23447D01* X2946Y23397D01* X2924Y23350D01* X2908Y23327D01* X2966Y23268D01* Y21711D01* X2928Y21673D01* X2944Y21650D01* X2966Y21602D01* Y21397D01* X2944Y21350D01* X2928Y21327D01* X2966Y21288D01* Y19691D01* X2948Y19673D01* X2964Y19650D01* X2966Y19645D01* Y19354D01* X2964Y19350D01* X2948Y19327D01* X2966Y19308D01* Y17817D01* X2925Y17846D01* X2866Y17873D01* Y19135D01* X2905Y19153D01* X2949Y19184D01* X2878Y19256D01* X2866Y19248D01* Y19751D01* X2878Y19743D01* X2949Y19815D01* X2905Y19846D01* X2866Y19864D01* Y21145D01* X2885Y21153D01* X2929Y21184D01* X2866Y21247D01* Y21752D01* X2929Y21815D01* X2885Y21846D01* X2866Y21854D01* Y23154D01* X2909Y23184D01* X2866Y23227D01* Y23772D01* X2909Y23815D01* X2866Y23845D01* Y25169D01* X2889Y25184D01* X2866Y25207D01* Y25792D01* X2889Y25815D01* X2866Y25831D01* Y27183D01* X2869Y27184D01* X2866Y27187D01* Y27812D01* X2869Y27815D01* X2866Y27817D01* Y29308D01* G37* G36* X2966Y9864D02*X2941Y9875D01* X2874Y9893D01* X2805Y9900D01* X2735Y9893D01* X2725Y9891D01* Y11105D01* X2785Y11100D01* X2854Y11106D01* X2921Y11124D01* X2966Y11145D01* Y9864D01* G37* G36* Y11247D02*X2958Y11256D01* X2935Y11240D01* X2887Y11218D01* X2837Y11204D01* X2785Y11200D01* X2732Y11204D01* X2725Y11206D01* Y11793D01* X2732Y11795D01* X2785Y11800D01* X2837Y11795D01* X2887Y11781D01* X2935Y11759D01* X2958Y11743D01* X2966Y11752D01* Y11247D01* G37* G36* Y11854D02*X2921Y11875D01* X2854Y11893D01* X2785Y11900D01* X2725Y11894D01* Y13103D01* X2765Y13100D01* X2834Y13106D01* X2901Y13124D01* X2965Y13153D01* X2966Y13154D01* Y11854D01* G37* G36* Y13227D02*X2938Y13256D01* X2915Y13240D01* X2867Y13218D01* X2817Y13204D01* X2765Y13200D01* X2725Y13203D01* Y13796D01* X2765Y13800D01* X2817Y13795D01* X2867Y13781D01* X2915Y13759D01* X2938Y13743D01* X2966Y13772D01* Y13227D01* G37* G36* Y13845D02*X2965Y13846D01* X2901Y13875D01* X2834Y13893D01* X2765Y13900D01* X2725Y13896D01* Y15101D01* X2745Y15100D01* X2814Y15106D01* X2881Y15124D01* X2945Y15153D01* X2966Y15169D01* Y13845D01* G37* G36* Y15207D02*X2918Y15256D01* X2895Y15240D01* X2847Y15218D01* X2797Y15204D01* X2745Y15200D01* X2725Y15201D01* Y15798D01* X2745Y15800D01* X2797Y15795D01* X2847Y15781D01* X2895Y15759D01* X2918Y15743D01* X2966Y15792D01* Y15207D01* G37* G36* Y15831D02*X2945Y15846D01* X2881Y15875D01* X2814Y15893D01* X2745Y15900D01* X2725Y15898D01* Y17100D01* X2794Y17106D01* X2861Y17124D01* X2925Y17153D01* X2966Y17183D01* Y15831D01* G37* G36* Y17187D02*X2898Y17256D01* X2875Y17240D01* X2827Y17218D01* X2777Y17204D01* X2725Y17200D01* Y17800D01* X2777Y17795D01* X2827Y17781D01* X2875Y17759D01* X2898Y17743D01* X2966Y17812D01* Y17187D01* G37* G36* Y40000D02*X3046D01* Y23614D01* X3040Y23636D01* X3011Y23700D01* X2980Y23744D01* X2966Y23731D01* Y25265D01* X2991Y25300D01* X3020Y25363D01* X3038Y25430D01* X3045Y25500D01* X3038Y25569D01* X3020Y25636D01* X2991Y25700D01* X2966Y25734D01* Y27293D01* X2971Y27300D01* X3000Y27363D01* X3018Y27430D01* X3025Y27500D01* X3018Y27569D01* X3000Y27636D01* X2971Y27700D01* X2966Y27706D01* Y29333D01* X2980Y29363D01* X2998Y29430D01* X3005Y29500D01* X2998Y29569D01* X2980Y29636D01* X2966Y29666D01* Y31385D01* X2978Y31430D01* X2985Y31500D01* X2978Y31569D01* X2966Y31614D01* Y40000D01* G37* G36* Y23268D02*X2980Y23255D01* X3011Y23300D01* X3040Y23363D01* X3046Y23385D01* Y21666D01* X3031Y21700D01* X3000Y21744D01* X2966Y21711D01* Y23268D01* G37* G36* Y21602D02*X2980Y21552D01* X2985Y21500D01* X2980Y21447D01* X2966Y21397D01* Y21602D01* G37* G36* Y21288D02*X3000Y21255D01* X3031Y21300D01* X3046Y21333D01* Y19706D01* X3020Y19744D01* X2966Y19691D01* Y21288D01* G37* G36* Y19645D02*X2986Y19602D01* X3000Y19552D01* X3005Y19500D01* X3000Y19447D01* X2986Y19397D01* X2966Y19354D01* Y19645D01* G37* G36* Y19308D02*X3020Y19255D01* X3046Y19293D01* Y17734D01* X3040Y17744D01* X2968Y17673D01* X2984Y17650D01* X3006Y17602D01* X3020Y17552D01* X3025Y17500D01* X3020Y17447D01* X3006Y17397D01* X2984Y17350D01* X2968Y17327D01* X3040Y17255D01* X3046Y17265D01* Y15731D01* X2988Y15673D01* X3004Y15650D01* X3026Y15602D01* X3040Y15552D01* X3045Y15500D01* X3040Y15447D01* X3026Y15397D01* X3004Y15350D01* X2988Y15327D01* X3046Y15268D01* Y13711D01* X3008Y13673D01* X3024Y13650D01* X3046Y13602D01* Y13397D01* X3024Y13350D01* X3008Y13327D01* X3046Y13288D01* Y11691D01* X3028Y11673D01* X3044Y11650D01* X3046Y11645D01* Y11354D01* X3044Y11350D01* X3028Y11327D01* X3046Y11308D01* Y9817D01* X3005Y9846D01* X2966Y9864D01* Y11145D01* X2985Y11153D01* X3029Y11184D01* X2966Y11247D01* Y11752D01* X3029Y11815D01* X2985Y11846D01* X2966Y11854D01* Y13154D01* X3009Y13184D01* X2966Y13227D01* Y13772D01* X3009Y13815D01* X2966Y13845D01* Y15169D01* X2989Y15184D01* X2966Y15207D01* Y15792D01* X2989Y15815D01* X2966Y15831D01* Y17183D01* X2969Y17184D01* X2966Y17187D01* Y17812D01* X2969Y17815D01* X2966Y17817D01* Y19308D01* G37* G36* X2725Y9787D02*X2752Y9795D01* X2805Y9800D01* X2857Y9795D01* X2907Y9781D01* X2955Y9759D01* X2978Y9743D01* X3046Y9812D01* Y9187D01* X2978Y9256D01* X2955Y9240D01* X2907Y9218D01* X2857Y9204D01* X2805Y9200D01* X2752Y9204D01* X2725Y9212D01* Y9787D01* G37* G36* Y9108D02*X2735Y9106D01* X2805Y9100D01* X2874Y9106D01* X2941Y9124D01* X3005Y9153D01* X3046Y9183D01* Y7831D01* X3025Y7846D01* X2961Y7875D01* X2894Y7893D01* X2825Y7900D01* X2755Y7893D01* X2725Y7885D01* Y9108D01* G37* G36* Y7782D02*X2772Y7795D01* X2825Y7800D01* X2877Y7795D01* X2927Y7781D01* X2975Y7759D01* X2998Y7743D01* X3046Y7792D01* Y7207D01* X2998Y7256D01* X2975Y7240D01* X2927Y7218D01* X2877Y7204D01* X2825Y7200D01* X2772Y7204D01* X2725Y7217D01* Y7782D01* G37* G36* Y7114D02*X2755Y7106D01* X2825Y7100D01* X2894Y7106D01* X2961Y7124D01* X3025Y7153D01* X3046Y7169D01* Y5845D01* X3045Y5846D01* X2981Y5875D01* X2914Y5893D01* X2845Y5900D01* X2775Y5893D01* X2725Y5880D01* Y7114D01* G37* G36* Y5773D02*X2742Y5781D01* X2792Y5795D01* X2845Y5800D01* X2897Y5795D01* X2947Y5781D01* X2995Y5759D01* X3018Y5743D01* X3046Y5772D01* Y5227D01* X3018Y5256D01* X2995Y5240D01* X2947Y5218D01* X2897Y5204D01* X2845Y5200D01* X2792Y5204D01* X2742Y5218D01* X2725Y5226D01* Y5773D01* G37* G36* Y5119D02*X2775Y5106D01* X2845Y5100D01* X2914Y5106D01* X2981Y5124D01* X3045Y5153D01* X3046Y5154D01* Y3854D01* X3001Y3875D01* X2934Y3893D01* X2865Y3900D01* X2795Y3893D01* X2728Y3875D01* X2725Y3874D01* Y5119D01* G37* G36* Y3764D02*X2762Y3781D01* X2812Y3795D01* X2865Y3800D01* X2917Y3795D01* X2967Y3781D01* X3015Y3759D01* X3038Y3743D01* X3046Y3752D01* Y3247D01* X3038Y3256D01* X3015Y3240D01* X2967Y3218D01* X2917Y3204D01* X2865Y3200D01* X2812Y3204D01* X2762Y3218D01* X2725Y3235D01* Y3764D01* G37* G36* Y3125D02*X2728Y3124D01* X2795Y3106D01* X2865Y3100D01* X2934Y3106D01* X3001Y3124D01* X3046Y3145D01* Y1864D01* X3021Y1875D01* X2954Y1893D01* X2885Y1900D01* X2815Y1893D01* X2748Y1875D01* X2725Y1865D01* Y3125D01* G37* G36* Y1752D02*X2735Y1759D01* X2782Y1781D01* X2832Y1795D01* X2885Y1800D01* X2937Y1795D01* X2987Y1781D01* X3035Y1759D01* X3046Y1751D01* Y1248D01* X3035Y1240D01* X2987Y1218D01* X2937Y1204D01* X2885Y1200D01* X2832Y1204D01* X2782Y1218D01* X2735Y1240D01* X2725Y1247D01* Y1752D01* G37* G36* Y1134D02*X2748Y1124D01* X2815Y1106D01* X2885Y1100D01* X2954Y1106D01* X3021Y1124D01* X3046Y1135D01* Y0D01* X2725D01* Y1134D01* G37* G36* X3046Y40000D02*X3126D01* Y15614D01* X3120Y15636D01* X3091Y15700D01* X3060Y15744D01* X3046Y15731D01* Y17265D01* X3071Y17300D01* X3100Y17363D01* X3118Y17430D01* X3125Y17500D01* X3118Y17569D01* X3100Y17636D01* X3071Y17700D01* X3046Y17734D01* Y19293D01* X3051Y19300D01* X3080Y19363D01* X3098Y19430D01* X3105Y19500D01* X3098Y19569D01* X3080Y19636D01* X3051Y19700D01* X3046Y19706D01* Y21333D01* X3060Y21363D01* X3078Y21430D01* X3085Y21500D01* X3078Y21569D01* X3060Y21636D01* X3046Y21666D01* Y23385D01* X3058Y23430D01* X3065Y23500D01* X3058Y23569D01* X3046Y23614D01* Y40000D01* G37* G36* X3126Y0D02*X3046D01* Y1135D01* X3085Y1153D01* X3126Y1183D01* Y0D01* G37* G36* Y1187D02*X3058Y1256D01* X3046Y1248D01* Y1751D01* X3058Y1743D01* X3126Y1812D01* Y1187D01* G37* G36* Y1817D02*X3085Y1846D01* X3046Y1864D01* Y3145D01* X3065Y3153D01* X3109Y3184D01* X3046Y3247D01* Y3752D01* X3109Y3815D01* X3065Y3846D01* X3046Y3854D01* Y5154D01* X3089Y5184D01* X3046Y5227D01* Y5772D01* X3089Y5815D01* X3046Y5845D01* Y7169D01* X3069Y7184D01* X3046Y7207D01* Y7792D01* X3069Y7815D01* X3046Y7831D01* Y9183D01* X3049Y9184D01* X3046Y9187D01* Y9812D01* X3049Y9815D01* X3046Y9817D01* Y11308D01* X3100Y11255D01* X3126Y11293D01* Y9734D01* X3120Y9744D01* X3048Y9673D01* X3064Y9650D01* X3086Y9602D01* X3100Y9552D01* X3105Y9500D01* X3100Y9447D01* X3086Y9397D01* X3064Y9350D01* X3048Y9327D01* X3120Y9255D01* X3126Y9265D01* Y7731D01* X3068Y7673D01* X3084Y7650D01* X3106Y7602D01* X3120Y7552D01* X3125Y7500D01* X3120Y7447D01* X3106Y7397D01* X3084Y7350D01* X3068Y7327D01* X3126Y7268D01* Y5711D01* X3088Y5673D01* X3104Y5650D01* X3126Y5602D01* Y5397D01* X3104Y5350D01* X3088Y5327D01* X3126Y5288D01* Y3691D01* X3108Y3673D01* X3124Y3650D01* X3126Y3645D01* Y3354D01* X3124Y3350D01* X3108Y3327D01* X3126Y3308D01* Y1817D01* G37* G36* Y11706D02*X3100Y11744D01* X3046Y11691D01* Y13288D01* X3080Y13255D01* X3111Y13300D01* X3126Y13333D01* Y11706D01* G37* G36* Y13666D02*X3111Y13700D01* X3080Y13744D01* X3046Y13711D01* Y15268D01* X3060Y15255D01* X3091Y15300D01* X3120Y15363D01* X3126Y15385D01* Y13666D01* G37* G36* Y40000D02*X3206D01* Y7614D01* X3200Y7636D01* X3171Y7700D01* X3140Y7744D01* X3126Y7731D01* Y9265D01* X3151Y9300D01* X3180Y9363D01* X3198Y9430D01* X3205Y9500D01* X3198Y9569D01* X3180Y9636D01* X3151Y9700D01* X3126Y9734D01* Y11293D01* X3131Y11300D01* X3160Y11363D01* X3178Y11430D01* X3185Y11500D01* X3178Y11569D01* X3160Y11636D01* X3131Y11700D01* X3126Y11706D01* Y13333D01* X3140Y13363D01* X3158Y13430D01* X3165Y13500D01* X3158Y13569D01* X3140Y13636D01* X3126Y13666D01* Y15385D01* X3138Y15430D01* X3145Y15500D01* X3138Y15569D01* X3126Y15614D01* Y40000D01* G37* G36* X3206Y0D02*X3126D01* Y1183D01* X3129Y1184D01* X3126Y1187D01* Y1812D01* X3129Y1815D01* X3126Y1817D01* Y3308D01* X3180Y3255D01* X3206Y3293D01* Y1734D01* X3200Y1744D01* X3128Y1673D01* X3144Y1650D01* X3166Y1602D01* X3180Y1552D01* X3185Y1500D01* X3180Y1447D01* X3166Y1397D01* X3144Y1350D01* X3128Y1327D01* X3200Y1255D01* X3206Y1265D01* Y0D01* G37* G36* Y3706D02*X3180Y3744D01* X3126Y3691D01* Y5288D01* X3160Y5255D01* X3191Y5300D01* X3206Y5333D01* Y3706D01* G37* G36* Y5666D02*X3191Y5700D01* X3160Y5744D01* X3126Y5711D01* Y7268D01* X3140Y7255D01* X3171Y7300D01* X3200Y7363D01* X3206Y7385D01* Y5666D01* G37* G36* Y40000D02*X4183D01* Y39735D01* X4158Y39700D01* X4129Y39636D01* X4111Y39569D01* X4105Y39500D01* X4111Y39430D01* X4129Y39363D01* X4158Y39300D01* X4183Y39264D01* Y37706D01* X4178Y37700D01* X4149Y37636D01* X4131Y37569D01* X4125Y37500D01* X4131Y37430D01* X4149Y37363D01* X4178Y37300D01* X4183Y37293D01* Y35667D01* X4169Y35636D01* X4151Y35569D01* X4145Y35500D01* X4151Y35430D01* X4169Y35363D01* X4183Y35333D01* Y33614D01* X4171Y33569D01* X4165Y33500D01* X4171Y33430D01* X4183Y33385D01* Y0D01* X3206D01* Y1265D01* X3231Y1300D01* X3260Y1363D01* X3278Y1430D01* X3285Y1500D01* X3278Y1569D01* X3260Y1636D01* X3231Y1700D01* X3206Y1734D01* Y3293D01* X3211Y3300D01* X3240Y3363D01* X3258Y3430D01* X3265Y3500D01* X3258Y3569D01* X3240Y3636D01* X3211Y3700D01* X3206Y3706D01* Y5333D01* X3220Y5363D01* X3238Y5430D01* X3245Y5500D01* X3238Y5569D01* X3220Y5636D01* X3206Y5666D01* Y7385D01* X3218Y7430D01* X3225Y7500D01* X3218Y7569D01* X3206Y7614D01* Y40000D01* G37* G36* X4183D02*X4263D01* Y39817D01* X4260Y39815D01* X4263Y39812D01* Y39187D01* X4260Y39184D01* X4263Y39182D01* Y37691D01* X4209Y37744D01* X4183Y37706D01* Y39264D01* X4189Y39255D01* X4261Y39327D01* X4245Y39350D01* X4223Y39397D01* X4209Y39447D01* X4205Y39500D01* X4209Y39552D01* X4223Y39602D01* X4245Y39650D01* X4261Y39673D01* X4189Y39744D01* X4183Y39735D01* Y40000D01* G37* G36* X4263Y29706D02*X4258Y29700D01* X4229Y29636D01* X4211Y29569D01* X4205Y29500D01* X4211Y29430D01* X4229Y29363D01* X4258Y29300D01* X4263Y29293D01* Y27667D01* X4249Y27636D01* X4231Y27569D01* X4225Y27500D01* X4231Y27430D01* X4249Y27363D01* X4263Y27333D01* Y25614D01* X4251Y25569D01* X4245Y25500D01* X4251Y25430D01* X4263Y25385D01* Y0D01* X4183D01* Y33385D01* X4189Y33363D01* X4218Y33300D01* X4249Y33255D01* X4263Y33268D01* Y31735D01* X4238Y31700D01* X4209Y31636D01* X4191Y31569D01* X4185Y31500D01* X4191Y31430D01* X4209Y31363D01* X4238Y31300D01* X4263Y31264D01* Y29706D01* G37* G36* Y33731D02*X4249Y33744D01* X4218Y33700D01* X4189Y33636D01* X4183Y33614D01* Y35333D01* X4198Y35300D01* X4229Y35255D01* X4263Y35288D01* Y33731D01* G37* G36* Y35397D02*X4263Y35397D01* X4249Y35447D01* X4245Y35500D01* X4249Y35552D01* X4263Y35602D01* X4263Y35602D01* Y35397D01* G37* G36* Y35711D02*X4229Y35744D01* X4198Y35700D01* X4183Y35667D01* Y37293D01* X4209Y37255D01* X4263Y37308D01* Y35711D01* G37* G36* Y37354D02*X4243Y37397D01* X4229Y37447D01* X4225Y37500D01* X4229Y37552D01* X4243Y37602D01* X4263Y37645D01* Y37354D01* G37* G36* Y40000D02*X4343D01* Y39864D01* X4305Y39846D01* X4263Y39817D01* Y40000D01* G37* G36* Y39812D02*X4332Y39743D01* X4343Y39751D01* Y39248D01* X4332Y39256D01* X4263Y39187D01* Y39812D01* G37* G36* Y39182D02*X4305Y39153D01* X4343Y39135D01* Y37854D01* X4325Y37846D01* X4280Y37815D01* X4343Y37752D01* Y37247D01* X4280Y37184D01* X4325Y37153D01* X4343Y37145D01* Y35845D01* X4300Y35815D01* X4343Y35772D01* Y35227D01* X4300Y35184D01* X4343Y35154D01* Y33831D01* X4320Y33815D01* X4343Y33792D01* Y33207D01* X4320Y33184D01* X4343Y33168D01* Y31817D01* X4340Y31815D01* X4343Y31812D01* Y31187D01* X4340Y31184D01* X4343Y31182D01* Y29691D01* X4289Y29744D01* X4263Y29706D01* Y31264D01* X4269Y31255D01* X4341Y31327D01* X4325Y31350D01* X4303Y31397D01* X4289Y31447D01* X4285Y31500D01* X4289Y31552D01* X4303Y31602D01* X4325Y31650D01* X4341Y31673D01* X4269Y31744D01* X4263Y31735D01* Y33268D01* X4321Y33327D01* X4305Y33350D01* X4283Y33397D01* X4269Y33447D01* X4265Y33500D01* X4269Y33552D01* X4283Y33602D01* X4305Y33650D01* X4321Y33673D01* X4263Y33731D01* Y35288D01* X4301Y35327D01* X4285Y35350D01* X4263Y35397D01* Y35602D01* X4285Y35650D01* X4301Y35673D01* X4263Y35711D01* Y37308D01* X4281Y37327D01* X4265Y37350D01* X4263Y37354D01* Y37645D01* X4265Y37650D01* X4281Y37673D01* X4263Y37691D01* Y39182D01* G37* G36* Y29293D02*X4289Y29255D01* X4343Y29308D01* Y27711D01* X4309Y27744D01* X4278Y27700D01* X4263Y27667D01* Y29293D01* G37* G36* Y27333D02*X4278Y27300D01* X4309Y27255D01* X4343Y27288D01* Y25731D01* X4329Y25744D01* X4298Y25700D01* X4269Y25636D01* X4263Y25614D01* Y27333D01* G37* G36* Y25385D02*X4269Y25363D01* X4298Y25300D01* X4329Y25255D01* X4343Y25268D01* Y23735D01* X4318Y23700D01* X4289Y23636D01* X4271Y23569D01* X4265Y23500D01* X4271Y23430D01* X4289Y23363D01* X4318Y23300D01* X4343Y23264D01* Y21706D01* X4338Y21700D01* X4309Y21636D01* X4291Y21569D01* X4285Y21500D01* X4291Y21430D01* X4309Y21363D01* X4338Y21300D01* X4343Y21293D01* Y19667D01* X4329Y19636D01* X4311Y19569D01* X4305Y19500D01* X4311Y19430D01* X4329Y19363D01* X4343Y19333D01* Y17614D01* X4331Y17569D01* X4325Y17500D01* X4331Y17430D01* X4343Y17385D01* Y0D01* X4263D01* Y25385D01* G37* G36* X4343Y29354D02*X4323Y29397D01* X4309Y29447D01* X4305Y29500D01* X4309Y29552D01* X4323Y29602D01* X4343Y29645D01* Y29354D01* G37* G36* Y27397D02*X4343Y27397D01* X4329Y27447D01* X4325Y27500D01* X4329Y27552D01* X4343Y27602D01* X4343Y27602D01* Y27397D01* G37* G36* Y40000D02*X4665D01* Y39865D01* X4641Y39875D01* X4574Y39893D01* X4505Y39900D01* X4435Y39893D01* X4368Y39875D01* X4343Y39864D01* Y40000D01* G37* G36* Y39751D02*X4355Y39759D01* X4402Y39781D01* X4452Y39795D01* X4505Y39800D01* X4557Y39795D01* X4607Y39781D01* X4655Y39759D01* X4665Y39752D01* Y39247D01* X4655Y39240D01* X4607Y39218D01* X4557Y39204D01* X4505Y39200D01* X4452Y39204D01* X4402Y39218D01* X4355Y39240D01* X4343Y39248D01* Y39751D01* G37* G36* Y39135D02*X4368Y39124D01* X4435Y39106D01* X4505Y39100D01* X4574Y39106D01* X4641Y39124D01* X4665Y39134D01* Y37874D01* X4661Y37875D01* X4594Y37893D01* X4525Y37900D01* X4455Y37893D01* X4388Y37875D01* X4343Y37854D01* Y39135D01* G37* G36* Y37752D02*X4352Y37743D01* X4375Y37759D01* X4422Y37781D01* X4472Y37795D01* X4525Y37800D01* X4577Y37795D01* X4627Y37781D01* X4665Y37764D01* Y37235D01* X4627Y37218D01* X4577Y37204D01* X4525Y37200D01* X4472Y37204D01* X4422Y37218D01* X4375Y37240D01* X4352Y37256D01* X4343Y37247D01* Y37752D01* G37* G36* Y37145D02*X4388Y37124D01* X4455Y37106D01* X4525Y37100D01* X4594Y37106D01* X4661Y37124D01* X4665Y37125D01* Y35880D01* X4614Y35893D01* X4545Y35900D01* X4475Y35893D01* X4408Y35875D01* X4345Y35846D01* X4343Y35845D01* Y37145D01* G37* G36* Y35772D02*X4372Y35743D01* X4395Y35759D01* X4442Y35781D01* X4492Y35795D01* X4545Y35800D01* X4597Y35795D01* X4647Y35781D01* X4665Y35773D01* Y35226D01* X4647Y35218D01* X4597Y35204D01* X4545Y35200D01* X4492Y35204D01* X4442Y35218D01* X4395Y35240D01* X4372Y35256D01* X4343Y35227D01* Y35772D01* G37* G36* Y35154D02*X4345Y35153D01* X4408Y35124D01* X4475Y35106D01* X4545Y35100D01* X4614Y35106D01* X4665Y35119D01* Y33885D01* X4634Y33893D01* X4565Y33900D01* X4495Y33893D01* X4428Y33875D01* X4365Y33846D01* X4343Y33831D01* Y35154D01* G37* G36* Y33792D02*X4392Y33743D01* X4415Y33759D01* X4462Y33781D01* X4512Y33795D01* X4565Y33800D01* X4617Y33795D01* X4665Y33782D01* Y33217D01* X4617Y33204D01* X4565Y33200D01* X4512Y33204D01* X4462Y33218D01* X4415Y33240D01* X4392Y33256D01* X4343Y33207D01* Y33792D01* G37* G36* Y33168D02*X4365Y33153D01* X4428Y33124D01* X4495Y33106D01* X4565Y33100D01* X4634Y33106D01* X4665Y33114D01* Y31891D01* X4654Y31893D01* X4585Y31900D01* X4515Y31893D01* X4448Y31875D01* X4385Y31846D01* X4343Y31817D01* Y33168D01* G37* G36* Y31812D02*X4412Y31743D01* X4435Y31759D01* X4482Y31781D01* X4532Y31795D01* X4585Y31800D01* X4637Y31795D01* X4665Y31787D01* Y31212D01* X4637Y31204D01* X4585Y31200D01* X4532Y31204D01* X4482Y31218D01* X4435Y31240D01* X4412Y31256D01* X4343Y31187D01* Y31812D01* G37* G36* Y31182D02*X4385Y31153D01* X4423Y31135D01* Y29854D01* X4405Y29846D01* X4360Y29815D01* X4423Y29752D01* Y29247D01* X4360Y29184D01* X4405Y29153D01* X4423Y29145D01* Y27845D01* X4380Y27815D01* X4423Y27772D01* Y27227D01* X4380Y27184D01* X4423Y27154D01* Y25831D01* X4400Y25815D01* X4423Y25792D01* Y25207D01* X4400Y25184D01* X4423Y25168D01* Y23817D01* X4420Y23815D01* X4423Y23812D01* Y23187D01* X4420Y23184D01* X4423Y23182D01* Y21691D01* X4369Y21744D01* X4343Y21706D01* Y23264D01* X4349Y23255D01* X4421Y23327D01* X4405Y23350D01* X4383Y23397D01* X4369Y23447D01* X4365Y23500D01* X4369Y23552D01* X4383Y23602D01* X4405Y23650D01* X4421Y23673D01* X4349Y23744D01* X4343Y23735D01* Y25268D01* X4401Y25327D01* X4385Y25350D01* X4363Y25397D01* X4349Y25447D01* X4345Y25500D01* X4349Y25552D01* X4363Y25602D01* X4385Y25650D01* X4401Y25673D01* X4343Y25731D01* Y27288D01* X4381Y27327D01* X4365Y27350D01* X4343Y27397D01* Y27602D01* X4365Y27650D01* X4381Y27673D01* X4343Y27711D01* Y29308D01* X4361Y29327D01* X4345Y29350D01* X4343Y29354D01* Y29645D01* X4345Y29650D01* X4361Y29673D01* X4343Y29691D01* Y31182D01* G37* G36* X4423Y0D02*X4343D01* Y17385D01* X4349Y17363D01* X4378Y17300D01* X4409Y17255D01* X4423Y17268D01* Y15735D01* X4398Y15700D01* X4369Y15636D01* X4351Y15569D01* X4345Y15500D01* X4351Y15430D01* X4369Y15363D01* X4398Y15300D01* X4423Y15264D01* Y13706D01* X4418Y13700D01* X4389Y13636D01* X4371Y13569D01* X4365Y13500D01* X4371Y13430D01* X4389Y13363D01* X4418Y13300D01* X4423Y13293D01* Y11667D01* X4409Y11636D01* X4391Y11569D01* X4385Y11500D01* X4391Y11430D01* X4409Y11363D01* X4423Y11333D01* Y9614D01* X4411Y9569D01* X4405Y9500D01* X4411Y9430D01* X4423Y9385D01* Y0D01* G37* G36* Y17731D02*X4409Y17744D01* X4378Y17700D01* X4349Y17636D01* X4343Y17614D01* Y19333D01* X4358Y19300D01* X4389Y19255D01* X4423Y19288D01* Y17731D01* G37* G36* Y19397D02*X4423Y19397D01* X4409Y19447D01* X4405Y19500D01* X4409Y19552D01* X4423Y19602D01* X4423Y19602D01* Y19397D01* G37* G36* Y19711D02*X4389Y19744D01* X4358Y19700D01* X4343Y19667D01* Y21293D01* X4369Y21255D01* X4423Y21308D01* Y19711D01* G37* G36* Y21354D02*X4403Y21397D01* X4389Y21447D01* X4385Y21500D01* X4389Y21552D01* X4403Y21602D01* X4423Y21645D01* Y21354D01* G37* G36* Y31135D02*X4448Y31124D01* X4515Y31106D01* X4585Y31100D01* X4654Y31106D01* X4665Y31108D01* Y29894D01* X4605Y29900D01* X4535Y29893D01* X4468Y29875D01* X4423Y29854D01* Y31135D01* G37* G36* Y29752D02*X4432Y29743D01* X4455Y29759D01* X4502Y29781D01* X4552Y29795D01* X4605Y29800D01* X4657Y29795D01* X4665Y29793D01* Y29206D01* X4657Y29204D01* X4605Y29200D01* X4552Y29204D01* X4502Y29218D01* X4455Y29240D01* X4432Y29256D01* X4423Y29247D01* Y29752D01* G37* G36* Y29145D02*X4468Y29124D01* X4535Y29106D01* X4605Y29100D01* X4665Y29105D01* Y27896D01* X4625Y27900D01* X4555Y27893D01* X4488Y27875D01* X4425Y27846D01* X4423Y27845D01* Y29145D01* G37* G36* Y27772D02*X4452Y27743D01* X4475Y27759D01* X4522Y27781D01* X4572Y27795D01* X4625Y27800D01* X4665Y27796D01* Y27203D01* X4625Y27200D01* X4572Y27204D01* X4522Y27218D01* X4475Y27240D01* X4452Y27256D01* X4423Y27227D01* Y27772D01* G37* G36* Y27154D02*X4425Y27153D01* X4488Y27124D01* X4555Y27106D01* X4625Y27100D01* X4665Y27103D01* Y25898D01* X4645Y25900D01* X4575Y25893D01* X4508Y25875D01* X4445Y25846D01* X4423Y25831D01* Y27154D01* G37* G36* Y25792D02*X4472Y25743D01* X4495Y25759D01* X4542Y25781D01* X4592Y25795D01* X4645Y25800D01* X4665Y25798D01* Y25201D01* X4645Y25200D01* X4592Y25204D01* X4542Y25218D01* X4495Y25240D01* X4472Y25256D01* X4423Y25207D01* Y25792D01* G37* G36* Y25168D02*X4445Y25153D01* X4508Y25124D01* X4575Y25106D01* X4645Y25100D01* X4665Y25101D01* Y23900D01* X4595Y23893D01* X4528Y23875D01* X4465Y23846D01* X4423Y23817D01* Y25168D01* G37* G36* Y23812D02*X4492Y23743D01* X4515Y23759D01* X4562Y23781D01* X4612Y23795D01* X4665Y23800D01* Y23200D01* X4612Y23204D01* X4562Y23218D01* X4515Y23240D01* X4492Y23256D01* X4423Y23187D01* Y23812D01* G37* G36* Y23182D02*X4465Y23153D01* X4503Y23135D01* Y21854D01* X4485Y21846D01* X4440Y21815D01* X4503Y21752D01* Y21247D01* X4440Y21184D01* X4485Y21153D01* X4503Y21145D01* Y19845D01* X4460Y19815D01* X4503Y19772D01* Y19227D01* X4460Y19184D01* X4503Y19154D01* Y17831D01* X4480Y17815D01* X4503Y17792D01* Y17207D01* X4480Y17184D01* X4503Y17168D01* Y15817D01* X4500Y15815D01* X4503Y15812D01* Y15187D01* X4500Y15184D01* X4503Y15182D01* Y13691D01* X4449Y13744D01* X4423Y13706D01* Y15264D01* X4429Y15255D01* X4501Y15327D01* X4485Y15350D01* X4463Y15397D01* X4449Y15447D01* X4445Y15500D01* X4449Y15552D01* X4463Y15602D01* X4485Y15650D01* X4501Y15673D01* X4429Y15744D01* X4423Y15735D01* Y17268D01* X4481Y17327D01* X4465Y17350D01* X4443Y17397D01* X4429Y17447D01* X4425Y17500D01* X4429Y17552D01* X4443Y17602D01* X4465Y17650D01* X4481Y17673D01* X4423Y17731D01* Y19288D01* X4461Y19327D01* X4445Y19350D01* X4423Y19397D01* Y19602D01* X4445Y19650D01* X4461Y19673D01* X4423Y19711D01* Y21308D01* X4441Y21327D01* X4425Y21350D01* X4423Y21354D01* Y21645D01* X4425Y21650D01* X4441Y21673D01* X4423Y21691D01* Y23182D01* G37* G36* X4503Y0D02*X4423D01* Y9385D01* X4429Y9363D01* X4458Y9300D01* X4489Y9255D01* X4503Y9268D01* Y7735D01* X4478Y7700D01* X4449Y7636D01* X4431Y7569D01* X4425Y7500D01* X4431Y7430D01* X4449Y7363D01* X4478Y7300D01* X4503Y7264D01* Y5706D01* X4498Y5700D01* X4469Y5636D01* X4451Y5569D01* X4445Y5500D01* X4451Y5430D01* X4469Y5363D01* X4498Y5300D01* X4503Y5293D01* Y3667D01* X4489Y3636D01* X4471Y3569D01* X4465Y3500D01* X4471Y3430D01* X4489Y3363D01* X4503Y3333D01* Y1614D01* X4491Y1569D01* X4485Y1500D01* X4491Y1430D01* X4503Y1385D01* Y0D01* G37* G36* Y9731D02*X4489Y9744D01* X4458Y9700D01* X4429Y9636D01* X4423Y9614D01* Y11333D01* X4438Y11300D01* X4469Y11255D01* X4503Y11288D01* Y9731D01* G37* G36* Y11397D02*X4503Y11397D01* X4489Y11447D01* X4485Y11500D01* X4489Y11552D01* X4503Y11602D01* X4503Y11602D01* Y11397D01* G37* G36* Y11711D02*X4469Y11744D01* X4438Y11700D01* X4423Y11667D01* Y13293D01* X4449Y13255D01* X4503Y13308D01* Y11711D01* G37* G36* Y13354D02*X4483Y13397D01* X4469Y13447D01* X4465Y13500D01* X4469Y13552D01* X4483Y13602D01* X4503Y13645D01* Y13354D01* G37* G36* Y23135D02*X4528Y23124D01* X4595Y23106D01* X4665Y23100D01* Y21898D01* X4615Y21893D01* X4548Y21875D01* X4503Y21854D01* Y23135D01* G37* G36* Y21752D02*X4512Y21743D01* X4535Y21759D01* X4582Y21781D01* X4632Y21795D01* X4665Y21798D01* Y21201D01* X4632Y21204D01* X4582Y21218D01* X4535Y21240D01* X4512Y21256D01* X4503Y21247D01* Y21752D01* G37* G36* Y21145D02*X4548Y21124D01* X4615Y21106D01* X4665Y21101D01* Y19896D01* X4635Y19893D01* X4568Y19875D01* X4505Y19846D01* X4503Y19845D01* Y21145D01* G37* G36* Y19772D02*X4532Y19743D01* X4555Y19759D01* X4602Y19781D01* X4652Y19795D01* X4665Y19796D01* Y19203D01* X4652Y19204D01* X4602Y19218D01* X4555Y19240D01* X4532Y19256D01* X4503Y19227D01* Y19772D01* G37* G36* Y19154D02*X4505Y19153D01* X4568Y19124D01* X4635Y19106D01* X4665Y19103D01* Y17894D01* X4655Y17893D01* X4588Y17875D01* X4525Y17846D01* X4503Y17831D01* Y19154D01* G37* G36* Y17792D02*X4552Y17743D01* X4575Y17759D01* X4622Y17781D01* X4665Y17793D01* Y17206D01* X4622Y17218D01* X4575Y17240D01* X4552Y17256D01* X4503Y17207D01* Y17792D01* G37* G36* Y17168D02*X4525Y17153D01* X4588Y17124D01* X4655Y17106D01* X4665Y17105D01* Y15891D01* X4608Y15875D01* X4545Y15846D01* X4503Y15817D01* Y17168D01* G37* G36* Y15812D02*X4572Y15743D01* X4595Y15759D01* X4642Y15781D01* X4665Y15787D01* Y15212D01* X4642Y15218D01* X4595Y15240D01* X4572Y15256D01* X4503Y15187D01* Y15812D01* G37* G36* Y15182D02*X4545Y15153D01* X4608Y15124D01* X4665Y15108D01* Y13885D01* X4628Y13875D01* X4565Y13846D01* X4520Y13815D01* X4592Y13743D01* X4615Y13759D01* X4662Y13781D01* X4665Y13782D01* Y13217D01* X4662Y13218D01* X4615Y13240D01* X4592Y13256D01* X4520Y13184D01* X4565Y13153D01* X4628Y13124D01* X4665Y13114D01* Y11880D01* X4648Y11875D01* X4585Y11846D01* X4540Y11815D01* X4612Y11743D01* X4635Y11759D01* X4665Y11773D01* Y11226D01* X4635Y11240D01* X4612Y11256D01* X4540Y11184D01* X4585Y11153D01* X4648Y11124D01* X4665Y11119D01* Y9874D01* X4605Y9846D01* X4560Y9815D01* X4632Y9743D01* X4655Y9759D01* X4665Y9764D01* Y9235D01* X4655Y9240D01* X4632Y9256D01* X4560Y9184D01* X4605Y9153D01* X4665Y9125D01* Y7865D01* X4625Y7846D01* X4580Y7815D01* X4652Y7743D01* X4665Y7752D01* Y7247D01* X4652Y7256D01* X4580Y7184D01* X4625Y7153D01* X4665Y7134D01* Y5855D01* X4645Y5846D01* X4600Y5815D01* X4665Y5750D01* Y5249D01* X4600Y5184D01* X4645Y5153D01* X4665Y5144D01* Y3846D01* X4620Y3815D01* X4665Y3770D01* Y3229D01* X4620Y3184D01* X4665Y3153D01* Y1832D01* X4640Y1815D01* X4665Y1790D01* Y1209D01* X4640Y1184D01* X4665Y1167D01* Y0D01* X4503D01* Y1385D01* X4509Y1363D01* X4538Y1300D01* X4569Y1255D01* X4641Y1327D01* X4625Y1350D01* X4603Y1397D01* X4589Y1447D01* X4585Y1500D01* X4589Y1552D01* X4603Y1602D01* X4625Y1650D01* X4641Y1673D01* X4569Y1744D01* X4538Y1700D01* X4509Y1636D01* X4503Y1614D01* Y3333D01* X4518Y3300D01* X4549Y3255D01* X4621Y3327D01* X4605Y3350D01* X4583Y3397D01* X4569Y3447D01* X4565Y3500D01* X4569Y3552D01* X4583Y3602D01* X4605Y3650D01* X4621Y3673D01* X4549Y3744D01* X4518Y3700D01* X4503Y3667D01* Y5293D01* X4529Y5255D01* X4601Y5327D01* X4585Y5350D01* X4563Y5397D01* X4549Y5447D01* X4545Y5500D01* X4549Y5552D01* X4563Y5602D01* X4585Y5650D01* X4601Y5673D01* X4529Y5744D01* X4503Y5706D01* Y7264D01* X4509Y7255D01* X4581Y7327D01* X4565Y7350D01* X4543Y7397D01* X4529Y7447D01* X4525Y7500D01* X4529Y7552D01* X4543Y7602D01* X4565Y7650D01* X4581Y7673D01* X4509Y7744D01* X4503Y7735D01* Y9268D01* X4561Y9327D01* X4545Y9350D01* X4523Y9397D01* X4509Y9447D01* X4505Y9500D01* X4509Y9552D01* X4523Y9602D01* X4545Y9650D01* X4561Y9673D01* X4503Y9731D01* Y11288D01* X4541Y11327D01* X4525Y11350D01* X4503Y11397D01* Y11602D01* X4525Y11650D01* X4541Y11673D01* X4503Y11711D01* Y13308D01* X4521Y13327D01* X4505Y13350D01* X4503Y13354D01* Y13645D01* X4505Y13650D01* X4521Y13673D01* X4503Y13691D01* Y15182D01* G37* G36* X4665Y40000D02*X4826D01* Y39734D01* X4820Y39744D01* X4748Y39673D01* X4764Y39650D01* X4786Y39602D01* X4800Y39552D01* X4805Y39500D01* X4800Y39447D01* X4786Y39397D01* X4764Y39350D01* X4748Y39327D01* X4820Y39255D01* X4826Y39265D01* Y37731D01* X4768Y37673D01* X4784Y37650D01* X4806Y37602D01* X4820Y37552D01* X4825Y37500D01* X4820Y37447D01* X4806Y37397D01* X4784Y37350D01* X4768Y37327D01* X4826Y37268D01* Y35711D01* X4788Y35673D01* X4804Y35650D01* X4826Y35602D01* Y35397D01* X4804Y35350D01* X4788Y35327D01* X4826Y35288D01* Y33691D01* X4808Y33673D01* X4824Y33650D01* X4826Y33645D01* Y33354D01* X4824Y33350D01* X4808Y33327D01* X4826Y33308D01* Y31817D01* X4785Y31846D01* X4721Y31875D01* X4665Y31891D01* Y33114D01* X4701Y33124D01* X4765Y33153D01* X4809Y33184D01* X4738Y33256D01* X4715Y33240D01* X4667Y33218D01* X4665Y33217D01* Y33782D01* X4667Y33781D01* X4715Y33759D01* X4738Y33743D01* X4809Y33815D01* X4765Y33846D01* X4701Y33875D01* X4665Y33885D01* Y35119D01* X4681Y35124D01* X4745Y35153D01* X4789Y35184D01* X4718Y35256D01* X4695Y35240D01* X4665Y35226D01* Y35773D01* X4695Y35759D01* X4718Y35743D01* X4789Y35815D01* X4745Y35846D01* X4681Y35875D01* X4665Y35880D01* Y37125D01* X4725Y37153D01* X4769Y37184D01* X4698Y37256D01* X4675Y37240D01* X4665Y37235D01* Y37764D01* X4675Y37759D01* X4698Y37743D01* X4769Y37815D01* X4725Y37846D01* X4665Y37874D01* Y39134D01* X4705Y39153D01* X4749Y39184D01* X4678Y39256D01* X4665Y39247D01* Y39752D01* X4678Y39743D01* X4749Y39815D01* X4705Y39846D01* X4665Y39865D01* Y40000D01* G37* G36* X4826Y15890D02*X4814Y15893D01* X4745Y15900D01* X4675Y15893D01* X4665Y15891D01* Y17105D01* X4725Y17100D01* X4794Y17106D01* X4826Y17114D01* Y15890D01* G37* G36* Y17217D02*X4777Y17204D01* X4725Y17200D01* X4672Y17204D01* X4665Y17206D01* Y17793D01* X4672Y17795D01* X4725Y17800D01* X4777Y17795D01* X4826Y17782D01* Y17217D01* G37* G36* Y17885D02*X4794Y17893D01* X4725Y17900D01* X4665Y17894D01* Y19103D01* X4705Y19100D01* X4774Y19106D01* X4826Y19120D01* Y17885D01* G37* G36* Y19227D02*X4807Y19218D01* X4757Y19204D01* X4705Y19200D01* X4665Y19203D01* Y19796D01* X4705Y19800D01* X4757Y19795D01* X4807Y19781D01* X4826Y19772D01* Y19227D01* G37* G36* Y19879D02*X4774Y19893D01* X4705Y19900D01* X4665Y19896D01* Y21101D01* X4685Y21100D01* X4754Y21106D01* X4821Y21124D01* X4826Y21126D01* Y19879D01* G37* G36* Y21236D02*X4787Y21218D01* X4737Y21204D01* X4685Y21200D01* X4665Y21201D01* Y21798D01* X4685Y21800D01* X4737Y21795D01* X4787Y21781D01* X4826Y21763D01* Y21236D01* G37* G36* Y21873D02*X4821Y21875D01* X4754Y21893D01* X4685Y21900D01* X4665Y21898D01* Y23100D01* X4734Y23106D01* X4801Y23124D01* X4826Y23135D01* Y21873D01* G37* G36* Y23248D02*X4815Y23240D01* X4767Y23218D01* X4717Y23204D01* X4665Y23200D01* Y23800D01* X4717Y23795D01* X4767Y23781D01* X4815Y23759D01* X4826Y23751D01* Y23248D01* G37* G36* Y23864D02*X4801Y23875D01* X4734Y23893D01* X4665Y23900D01* Y25101D01* X4714Y25106D01* X4781Y25124D01* X4826Y25145D01* Y23864D01* G37* G36* Y25247D02*X4818Y25256D01* X4795Y25240D01* X4747Y25218D01* X4697Y25204D01* X4665Y25201D01* Y25798D01* X4697Y25795D01* X4747Y25781D01* X4795Y25759D01* X4818Y25743D01* X4826Y25752D01* Y25247D01* G37* G36* Y25854D02*X4781Y25875D01* X4714Y25893D01* X4665Y25898D01* Y27103D01* X4694Y27106D01* X4761Y27124D01* X4825Y27153D01* X4826Y27154D01* Y25854D01* G37* G36* Y27227D02*X4798Y27256D01* X4775Y27240D01* X4727Y27218D01* X4677Y27204D01* X4665Y27203D01* Y27796D01* X4677Y27795D01* X4727Y27781D01* X4775Y27759D01* X4798Y27743D01* X4826Y27772D01* Y27227D01* G37* G36* Y27845D02*X4825Y27846D01* X4761Y27875D01* X4694Y27893D01* X4665Y27896D01* Y29105D01* X4674Y29106D01* X4741Y29124D01* X4805Y29153D01* X4826Y29169D01* Y27845D01* G37* G36* Y29207D02*X4778Y29256D01* X4755Y29240D01* X4707Y29218D01* X4665Y29206D01* Y29793D01* X4707Y29781D01* X4755Y29759D01* X4778Y29743D01* X4826Y29792D01* Y29207D01* G37* G36* Y29831D02*X4805Y29846D01* X4741Y29875D01* X4674Y29893D01* X4665Y29894D01* Y31108D01* X4721Y31124D01* X4785Y31153D01* X4826Y31183D01* Y29831D01* G37* G36* Y31187D02*X4758Y31256D01* X4735Y31240D01* X4687Y31218D01* X4665Y31212D01* Y31787D01* X4687Y31781D01* X4735Y31759D01* X4758Y31743D01* X4826Y31812D01* Y31187D01* G37* G36* Y40000D02*X4906D01* Y37614D01* X4900Y37636D01* X4871Y37700D01* X4840Y37744D01* X4826Y37731D01* Y39265D01* X4851Y39300D01* X4880Y39363D01* X4898Y39430D01* X4905Y39500D01* X4898Y39569D01* X4880Y39636D01* X4851Y39700D01* X4826Y39734D01* Y40000D01* G37* G36* X4906Y29731D02*X4848Y29673D01* X4864Y29650D01* X4886Y29602D01* X4900Y29552D01* X4905Y29500D01* X4900Y29447D01* X4886Y29397D01* X4864Y29350D01* X4848Y29327D01* X4906Y29268D01* Y27711D01* X4868Y27673D01* X4884Y27650D01* X4906Y27602D01* Y27397D01* X4884Y27350D01* X4868Y27327D01* X4906Y27288D01* Y25691D01* X4888Y25673D01* X4904Y25650D01* X4906Y25645D01* Y25354D01* X4904Y25350D01* X4888Y25327D01* X4906Y25308D01* Y23817D01* X4865Y23846D01* X4826Y23864D01* Y25145D01* X4845Y25153D01* X4889Y25184D01* X4826Y25247D01* Y25752D01* X4889Y25815D01* X4845Y25846D01* X4826Y25854D01* Y27154D01* X4869Y27184D01* X4826Y27227D01* Y27772D01* X4869Y27815D01* X4826Y27845D01* Y29169D01* X4849Y29184D01* X4826Y29207D01* Y29792D01* X4849Y29815D01* X4826Y29831D01* Y31183D01* X4829Y31184D01* X4826Y31187D01* Y31812D01* X4829Y31815D01* X4826Y31817D01* Y33308D01* X4880Y33255D01* X4906Y33293D01* Y31734D01* X4900Y31744D01* X4828Y31673D01* X4844Y31650D01* X4866Y31602D01* X4880Y31552D01* X4885Y31500D01* X4880Y31447D01* X4866Y31397D01* X4844Y31350D01* X4828Y31327D01* X4900Y31255D01* X4906Y31265D01* Y29731D01* G37* G36* Y15864D02*X4881Y15875D01* X4826Y15890D01* Y17114D01* X4861Y17124D01* X4906Y17145D01* Y15864D01* G37* G36* Y17247D02*X4898Y17256D01* X4875Y17240D01* X4827Y17218D01* X4826Y17217D01* Y17782D01* X4827Y17781D01* X4875Y17759D01* X4898Y17743D01* X4906Y17752D01* Y17247D01* G37* G36* Y17854D02*X4861Y17875D01* X4826Y17885D01* Y19120D01* X4841Y19124D01* X4905Y19153D01* X4906Y19154D01* Y17854D01* G37* G36* Y19227D02*X4878Y19256D01* X4855Y19240D01* X4826Y19227D01* Y19772D01* X4855Y19759D01* X4878Y19743D01* X4906Y19772D01* Y19227D01* G37* G36* Y19845D02*X4905Y19846D01* X4841Y19875D01* X4826Y19879D01* Y21126D01* X4885Y21153D01* X4906Y21169D01* Y19845D01* G37* G36* Y21207D02*X4858Y21256D01* X4835Y21240D01* X4826Y21236D01* Y21763D01* X4835Y21759D01* X4858Y21743D01* X4906Y21792D01* Y21207D01* G37* G36* Y21831D02*X4885Y21846D01* X4826Y21873D01* Y23135D01* X4865Y23153D01* X4906Y23183D01* Y21831D01* G37* G36* Y23187D02*X4838Y23256D01* X4826Y23248D01* Y23751D01* X4838Y23743D01* X4906Y23812D01* Y23187D01* G37* G36* Y33706D02*X4880Y33744D01* X4826Y33691D01* Y35288D01* X4860Y35255D01* X4891Y35300D01* X4906Y35333D01* Y33706D01* G37* G36* Y35666D02*X4891Y35700D01* X4860Y35744D01* X4826Y35711D01* Y37268D01* X4840Y37255D01* X4871Y37300D01* X4900Y37363D01* X4906Y37385D01* Y35666D01* G37* G36* Y40000D02*X4986D01* Y29614D01* X4980Y29636D01* X4951Y29700D01* X4920Y29744D01* X4906Y29731D01* Y31265D01* X4931Y31300D01* X4960Y31363D01* X4978Y31430D01* X4985Y31500D01* X4978Y31569D01* X4960Y31636D01* X4931Y31700D01* X4906Y31734D01* Y33293D01* X4911Y33300D01* X4940Y33363D01* X4958Y33430D01* X4965Y33500D01* X4958Y33569D01* X4940Y33636D01* X4911Y33700D01* X4906Y33706D01* Y35333D01* X4920Y35363D01* X4938Y35430D01* X4945Y35500D01* X4938Y35569D01* X4920Y35636D01* X4906Y35666D01* Y37385D01* X4918Y37430D01* X4925Y37500D01* X4918Y37569D01* X4906Y37614D01* Y40000D01* G37* G36* Y29268D02*X4920Y29255D01* X4951Y29300D01* X4980Y29363D01* X4986Y29385D01* Y27666D01* X4971Y27700D01* X4940Y27744D01* X4906Y27711D01* Y29268D01* G37* G36* Y27602D02*X4920Y27552D01* X4925Y27500D01* X4920Y27447D01* X4906Y27397D01* Y27602D01* G37* G36* Y27288D02*X4940Y27255D01* X4971Y27300D01* X4986Y27333D01* Y25706D01* X4960Y25744D01* X4906Y25691D01* Y27288D01* G37* G36* Y25645D02*X4926Y25602D01* X4940Y25552D01* X4945Y25500D01* X4940Y25447D01* X4926Y25397D01* X4906Y25354D01* Y25645D01* G37* G36* Y25308D02*X4960Y25255D01* X4986Y25293D01* Y23734D01* X4980Y23744D01* X4908Y23673D01* X4924Y23650D01* X4946Y23602D01* X4960Y23552D01* X4965Y23500D01* X4960Y23447D01* X4946Y23397D01* X4924Y23350D01* X4908Y23327D01* X4980Y23255D01* X4986Y23265D01* Y21731D01* X4928Y21673D01* X4944Y21650D01* X4966Y21602D01* X4980Y21552D01* X4985Y21500D01* X4980Y21447D01* X4966Y21397D01* X4944Y21350D01* X4928Y21327D01* X4986Y21268D01* Y19711D01* X4948Y19673D01* X4964Y19650D01* X4986Y19602D01* Y19397D01* X4964Y19350D01* X4948Y19327D01* X4986Y19288D01* Y17691D01* X4968Y17673D01* X4984Y17650D01* X4986Y17645D01* Y17354D01* X4984Y17350D01* X4968Y17327D01* X4986Y17308D01* Y15817D01* X4945Y15846D01* X4906Y15864D01* Y17145D01* X4925Y17153D01* X4969Y17184D01* X4906Y17247D01* Y17752D01* X4969Y17815D01* X4925Y17846D01* X4906Y17854D01* Y19154D01* X4949Y19184D01* X4906Y19227D01* Y19772D01* X4949Y19815D01* X4906Y19845D01* Y21169D01* X4929Y21184D01* X4906Y21207D01* Y21792D01* X4929Y21815D01* X4906Y21831D01* Y23183D01* X4909Y23184D01* X4906Y23187D01* Y23812D01* X4909Y23815D01* X4906Y23817D01* Y25308D01* G37* G36* X4826Y35602D02*X4840Y35552D01* X4845Y35500D01* X4840Y35447D01* X4826Y35397D01* Y35602D01* G37* G36* Y33645D02*X4846Y33602D01* X4860Y33552D01* X4865Y33500D01* X4860Y33447D01* X4846Y33397D01* X4826Y33354D01* Y33645D01* G37* G36* X4665Y15787D02*X4692Y15795D01* X4745Y15800D01* X4797Y15795D01* X4847Y15781D01* X4895Y15759D01* X4918Y15743D01* X4986Y15812D01* Y15187D01* X4918Y15256D01* X4895Y15240D01* X4847Y15218D01* X4797Y15204D01* X4745Y15200D01* X4692Y15204D01* X4665Y15212D01* Y15787D01* G37* G36* Y15108D02*X4675Y15106D01* X4745Y15100D01* X4814Y15106D01* X4881Y15124D01* X4945Y15153D01* X4986Y15183D01* Y13831D01* X4965Y13846D01* X4901Y13875D01* X4834Y13893D01* X4765Y13900D01* X4695Y13893D01* X4665Y13885D01* Y15108D01* G37* G36* Y13782D02*X4712Y13795D01* X4765Y13800D01* X4817Y13795D01* X4867Y13781D01* X4915Y13759D01* X4938Y13743D01* X4986Y13792D01* Y13207D01* X4938Y13256D01* X4915Y13240D01* X4867Y13218D01* X4817Y13204D01* X4765Y13200D01* X4712Y13204D01* X4665Y13217D01* Y13782D01* G37* G36* Y13114D02*X4695Y13106D01* X4765Y13100D01* X4834Y13106D01* X4901Y13124D01* X4965Y13153D01* X4986Y13169D01* Y11845D01* X4985Y11846D01* X4921Y11875D01* X4854Y11893D01* X4785Y11900D01* X4715Y11893D01* X4665Y11880D01* Y13114D01* G37* G36* Y11773D02*X4682Y11781D01* X4732Y11795D01* X4785Y11800D01* X4837Y11795D01* X4887Y11781D01* X4935Y11759D01* X4958Y11743D01* X4986Y11772D01* Y11227D01* X4958Y11256D01* X4935Y11240D01* X4887Y11218D01* X4837Y11204D01* X4785Y11200D01* X4732Y11204D01* X4682Y11218D01* X4665Y11226D01* Y11773D01* G37* G36* Y11119D02*X4715Y11106D01* X4785Y11100D01* X4854Y11106D01* X4921Y11124D01* X4985Y11153D01* X4986Y11154D01* Y9854D01* X4941Y9875D01* X4874Y9893D01* X4805Y9900D01* X4735Y9893D01* X4668Y9875D01* X4665Y9874D01* Y11119D01* G37* G36* Y9764D02*X4702Y9781D01* X4752Y9795D01* X4805Y9800D01* X4857Y9795D01* X4907Y9781D01* X4955Y9759D01* X4978Y9743D01* X4986Y9752D01* Y9247D01* X4978Y9256D01* X4955Y9240D01* X4907Y9218D01* X4857Y9204D01* X4805Y9200D01* X4752Y9204D01* X4702Y9218D01* X4665Y9235D01* Y9764D01* G37* G36* Y9125D02*X4668Y9124D01* X4735Y9106D01* X4805Y9100D01* X4874Y9106D01* X4941Y9124D01* X4986Y9145D01* Y7864D01* X4961Y7875D01* X4894Y7893D01* X4825Y7900D01* X4755Y7893D01* X4688Y7875D01* X4665Y7865D01* Y9125D01* G37* G36* Y7752D02*X4675Y7759D01* X4722Y7781D01* X4772Y7795D01* X4825Y7800D01* X4877Y7795D01* X4927Y7781D01* X4975Y7759D01* X4986Y7751D01* Y7248D01* X4975Y7240D01* X4927Y7218D01* X4877Y7204D01* X4825Y7200D01* X4772Y7204D01* X4722Y7218D01* X4675Y7240D01* X4665Y7247D01* Y7752D01* G37* G36* Y7134D02*X4688Y7124D01* X4755Y7106D01* X4825Y7100D01* X4894Y7106D01* X4961Y7124D01* X4986Y7135D01* Y5873D01* X4981Y5875D01* X4914Y5893D01* X4845Y5900D01* X4775Y5893D01* X4708Y5875D01* X4665Y5855D01* Y7134D01* G37* G36* Y5750D02*X4672Y5743D01* X4695Y5759D01* X4742Y5781D01* X4792Y5795D01* X4845Y5800D01* X4897Y5795D01* X4947Y5781D01* X4986Y5763D01* Y5236D01* X4947Y5218D01* X4897Y5204D01* X4845Y5200D01* X4792Y5204D01* X4742Y5218D01* X4695Y5240D01* X4672Y5256D01* X4665Y5249D01* Y5750D01* G37* G36* Y5144D02*X4708Y5124D01* X4775Y5106D01* X4845Y5100D01* X4914Y5106D01* X4981Y5124D01* X4986Y5126D01* Y3879D01* X4934Y3893D01* X4865Y3900D01* X4795Y3893D01* X4728Y3875D01* X4665Y3846D01* Y5144D01* G37* G36* Y3770D02*X4692Y3743D01* X4715Y3759D01* X4762Y3781D01* X4812Y3795D01* X4865Y3800D01* X4917Y3795D01* X4967Y3781D01* X4986Y3772D01* Y3227D01* X4967Y3218D01* X4917Y3204D01* X4865Y3200D01* X4812Y3204D01* X4762Y3218D01* X4715Y3240D01* X4692Y3256D01* X4665Y3229D01* Y3770D01* G37* G36* Y3153D02*X4728Y3124D01* X4795Y3106D01* X4865Y3100D01* X4934Y3106D01* X4986Y3120D01* Y1885D01* X4954Y1893D01* X4885Y1900D01* X4815Y1893D01* X4748Y1875D01* X4685Y1846D01* X4665Y1832D01* Y3153D01* G37* G36* Y1790D02*X4712Y1743D01* X4735Y1759D01* X4782Y1781D01* X4832Y1795D01* X4885Y1800D01* X4937Y1795D01* X4986Y1782D01* Y1217D01* X4937Y1204D01* X4885Y1200D01* X4832Y1204D01* X4782Y1218D01* X4735Y1240D01* X4712Y1256D01* X4665Y1209D01* Y1790D01* G37* G36* Y1167D02*X4685Y1153D01* X4748Y1124D01* X4815Y1106D01* X4885Y1100D01* X4954Y1106D01* X4986Y1114D01* Y0D01* X4665D01* Y1167D01* G37* G36* X4986Y40000D02*X5066D01* Y21614D01* X5060Y21636D01* X5031Y21700D01* X5000Y21744D01* X4986Y21731D01* Y23265D01* X5011Y23300D01* X5040Y23363D01* X5058Y23430D01* X5065Y23500D01* X5058Y23569D01* X5040Y23636D01* X5011Y23700D01* X4986Y23734D01* Y25293D01* X4991Y25300D01* X5020Y25363D01* X5038Y25430D01* X5045Y25500D01* X5038Y25569D01* X5020Y25636D01* X4991Y25700D01* X4986Y25706D01* Y27333D01* X5000Y27363D01* X5018Y27430D01* X5025Y27500D01* X5018Y27569D01* X5000Y27636D01* X4986Y27666D01* Y29385D01* X4998Y29430D01* X5005Y29500D01* X4998Y29569D01* X4986Y29614D01* Y40000D01* G37* G36* X5066Y0D02*X4986D01* Y1114D01* X5021Y1124D01* X5066Y1145D01* Y0D01* G37* G36* Y1247D02*X5058Y1256D01* X5035Y1240D01* X4987Y1218D01* X4986Y1217D01* Y1782D01* X4987Y1781D01* X5035Y1759D01* X5058Y1743D01* X5066Y1752D01* Y1247D01* G37* G36* Y1854D02*X5021Y1875D01* X4986Y1885D01* Y3120D01* X5001Y3124D01* X5065Y3153D01* X5066Y3154D01* Y1854D01* G37* G36* Y3227D02*X5038Y3256D01* X5015Y3240D01* X4986Y3227D01* Y3772D01* X5015Y3759D01* X5038Y3743D01* X5066Y3772D01* Y3227D01* G37* G36* Y3845D02*X5065Y3846D01* X5001Y3875D01* X4986Y3879D01* Y5126D01* X5045Y5153D01* X5066Y5169D01* Y3845D01* G37* G36* Y5207D02*X5018Y5256D01* X4995Y5240D01* X4986Y5236D01* Y5763D01* X4995Y5759D01* X5018Y5743D01* X5066Y5792D01* Y5207D01* G37* G36* Y5831D02*X5045Y5846D01* X4986Y5873D01* Y7135D01* X5025Y7153D01* X5066Y7183D01* Y5831D01* G37* G36* Y7187D02*X4998Y7256D01* X4986Y7248D01* Y7751D01* X4998Y7743D01* X5066Y7812D01* Y7187D01* G37* G36* Y7817D02*X5025Y7846D01* X4986Y7864D01* Y9145D01* X5005Y9153D01* X5049Y9184D01* X4986Y9247D01* Y9752D01* X5049Y9815D01* X5005Y9846D01* X4986Y9854D01* Y11154D01* X5029Y11184D01* X4986Y11227D01* Y11772D01* X5029Y11815D01* X4986Y11845D01* Y13169D01* X5009Y13184D01* X4986Y13207D01* Y13792D01* X5009Y13815D01* X4986Y13831D01* Y15183D01* X4989Y15184D01* X4986Y15187D01* Y15812D01* X4989Y15815D01* X4986Y15817D01* Y17308D01* X5040Y17255D01* X5066Y17293D01* Y15734D01* X5060Y15744D01* X4988Y15673D01* X5004Y15650D01* X5026Y15602D01* X5040Y15552D01* X5045Y15500D01* X5040Y15447D01* X5026Y15397D01* X5004Y15350D01* X4988Y15327D01* X5060Y15255D01* X5066Y15265D01* Y13731D01* X5008Y13673D01* X5024Y13650D01* X5046Y13602D01* X5060Y13552D01* X5065Y13500D01* X5060Y13447D01* X5046Y13397D01* X5024Y13350D01* X5008Y13327D01* X5066Y13268D01* Y11711D01* X5028Y11673D01* X5044Y11650D01* X5066Y11602D01* Y11397D01* X5044Y11350D01* X5028Y11327D01* X5066Y11288D01* Y9691D01* X5048Y9673D01* X5064Y9650D01* X5066Y9645D01* Y9354D01* X5064Y9350D01* X5048Y9327D01* X5066Y9308D01* Y7817D01* G37* G36* Y17706D02*X5040Y17744D01* X4986Y17691D01* Y19288D01* X5020Y19255D01* X5051Y19300D01* X5066Y19333D01* Y17706D01* G37* G36* Y19666D02*X5051Y19700D01* X5020Y19744D01* X4986Y19711D01* Y21268D01* X5000Y21255D01* X5031Y21300D01* X5060Y21363D01* X5066Y21385D01* Y19666D01* G37* G36* Y40000D02*X5146D01* Y13614D01* X5140Y13636D01* X5111Y13700D01* X5080Y13744D01* X5066Y13731D01* Y15265D01* X5091Y15300D01* X5120Y15363D01* X5138Y15430D01* X5145Y15500D01* X5138Y15569D01* X5120Y15636D01* X5091Y15700D01* X5066Y15734D01* Y17293D01* X5071Y17300D01* X5100Y17363D01* X5118Y17430D01* X5125Y17500D01* X5118Y17569D01* X5100Y17636D01* X5071Y17700D01* X5066Y17706D01* Y19333D01* X5080Y19363D01* X5098Y19430D01* X5105Y19500D01* X5098Y19569D01* X5080Y19636D01* X5066Y19666D01* Y21385D01* X5078Y21430D01* X5085Y21500D01* X5078Y21569D01* X5066Y21614D01* Y40000D01* G37* G36* X5146Y0D02*X5066D01* Y1145D01* X5085Y1153D01* X5129Y1184D01* X5066Y1247D01* Y1752D01* X5129Y1815D01* X5085Y1846D01* X5066Y1854D01* Y3154D01* X5109Y3184D01* X5066Y3227D01* Y3772D01* X5109Y3815D01* X5066Y3845D01* Y5169D01* X5089Y5184D01* X5066Y5207D01* Y5792D01* X5089Y5815D01* X5066Y5831D01* Y7183D01* X5069Y7184D01* X5066Y7187D01* Y7812D01* X5069Y7815D01* X5066Y7817D01* Y9308D01* X5120Y9255D01* X5146Y9293D01* Y7734D01* X5140Y7744D01* X5068Y7673D01* X5084Y7650D01* X5106Y7602D01* X5120Y7552D01* X5125Y7500D01* X5120Y7447D01* X5106Y7397D01* X5084Y7350D01* X5068Y7327D01* X5140Y7255D01* X5146Y7265D01* Y5731D01* X5088Y5673D01* X5104Y5650D01* X5126Y5602D01* X5140Y5552D01* X5145Y5500D01* X5140Y5447D01* X5126Y5397D01* X5104Y5350D01* X5088Y5327D01* X5146Y5268D01* Y3711D01* X5108Y3673D01* X5124Y3650D01* X5146Y3602D01* Y3397D01* X5124Y3350D01* X5108Y3327D01* X5146Y3288D01* Y1691D01* X5128Y1673D01* X5144Y1650D01* X5146Y1645D01* Y1354D01* X5144Y1350D01* X5128Y1327D01* X5146Y1308D01* Y0D01* G37* G36* Y9706D02*X5120Y9744D01* X5066Y9691D01* Y11288D01* X5100Y11255D01* X5131Y11300D01* X5146Y11333D01* Y9706D01* G37* G36* Y11666D02*X5131Y11700D01* X5100Y11744D01* X5066Y11711D01* Y13268D01* X5080Y13255D01* X5111Y13300D01* X5140Y13363D01* X5146Y13385D01* Y11666D01* G37* G36* Y40000D02*X6183D01* Y39735D01* X6158Y39700D01* X6129Y39636D01* X6111Y39569D01* X6105Y39500D01* X6111Y39430D01* X6129Y39363D01* X6158Y39300D01* X6183Y39264D01* Y37706D01* X6178Y37700D01* X6149Y37636D01* X6131Y37569D01* X6125Y37500D01* X6131Y37430D01* X6149Y37363D01* X6178Y37300D01* X6183Y37293D01* Y35667D01* X6169Y35636D01* X6151Y35569D01* X6145Y35500D01* X6151Y35430D01* X6169Y35363D01* X6183Y35333D01* Y33614D01* X6171Y33569D01* X6165Y33500D01* X6171Y33430D01* X6183Y33385D01* Y0D01* X5146D01* Y1308D01* X5200Y1255D01* X5231Y1300D01* X5260Y1363D01* X5278Y1430D01* X5285Y1500D01* X5278Y1569D01* X5260Y1636D01* X5231Y1700D01* X5200Y1744D01* X5146Y1691D01* Y3288D01* X5180Y3255D01* X5211Y3300D01* X5240Y3363D01* X5258Y3430D01* X5265Y3500D01* X5258Y3569D01* X5240Y3636D01* X5211Y3700D01* X5180Y3744D01* X5146Y3711D01* Y5268D01* X5160Y5255D01* X5191Y5300D01* X5220Y5363D01* X5238Y5430D01* X5245Y5500D01* X5238Y5569D01* X5220Y5636D01* X5191Y5700D01* X5160Y5744D01* X5146Y5731D01* Y7265D01* X5171Y7300D01* X5200Y7363D01* X5218Y7430D01* X5225Y7500D01* X5218Y7569D01* X5200Y7636D01* X5171Y7700D01* X5146Y7734D01* Y9293D01* X5151Y9300D01* X5180Y9363D01* X5198Y9430D01* X5205Y9500D01* X5198Y9569D01* X5180Y9636D01* X5151Y9700D01* X5146Y9706D01* Y11333D01* X5160Y11363D01* X5178Y11430D01* X5185Y11500D01* X5178Y11569D01* X5160Y11636D01* X5146Y11666D01* Y13385D01* X5158Y13430D01* X5165Y13500D01* X5158Y13569D01* X5146Y13614D01* Y40000D01* G37* G36* X6183D02*X6263D01* Y39817D01* X6260Y39815D01* X6263Y39812D01* Y39187D01* X6260Y39184D01* X6263Y39182D01* Y37691D01* X6209Y37744D01* X6183Y37706D01* Y39264D01* X6189Y39255D01* X6261Y39327D01* X6245Y39350D01* X6223Y39397D01* X6209Y39447D01* X6205Y39500D01* X6209Y39552D01* X6223Y39602D01* X6245Y39650D01* X6261Y39673D01* X6189Y39744D01* X6183Y39735D01* Y40000D01* G37* G36* Y37293D02*X6209Y37255D01* X6263Y37308D01* Y35711D01* X6229Y35744D01* X6198Y35700D01* X6183Y35667D01* Y37293D01* G37* G36* Y35333D02*X6198Y35300D01* X6229Y35255D01* X6263Y35288D01* Y33731D01* X6249Y33744D01* X6218Y33700D01* X6189Y33636D01* X6183Y33614D01* Y35333D01* G37* G36* Y33385D02*X6189Y33363D01* X6218Y33300D01* X6249Y33255D01* X6263Y33268D01* Y31735D01* X6238Y31700D01* X6209Y31636D01* X6191Y31569D01* X6185Y31500D01* X6191Y31430D01* X6209Y31363D01* X6238Y31300D01* X6263Y31264D01* Y29706D01* X6258Y29700D01* X6229Y29636D01* X6211Y29569D01* X6205Y29500D01* X6211Y29430D01* X6229Y29363D01* X6258Y29300D01* X6263Y29293D01* Y27667D01* X6249Y27636D01* X6231Y27569D01* X6225Y27500D01* X6231Y27430D01* X6249Y27363D01* X6263Y27333D01* Y25614D01* X6251Y25569D01* X6245Y25500D01* X6251Y25430D01* X6263Y25385D01* Y0D01* X6183D01* Y33385D01* G37* G36* X6263Y37354D02*X6243Y37397D01* X6229Y37447D01* X6225Y37500D01* X6229Y37552D01* X6243Y37602D01* X6263Y37645D01* Y37354D01* G37* G36* Y35397D02*X6263Y35397D01* X6249Y35447D01* X6245Y35500D01* X6249Y35552D01* X6263Y35602D01* X6263Y35602D01* Y35397D01* G37* G36* Y40000D02*X6343D01* Y39864D01* X6305Y39846D01* X6263Y39817D01* Y40000D01* G37* G36* Y39812D02*X6332Y39743D01* X6343Y39751D01* Y39248D01* X6332Y39256D01* X6263Y39187D01* Y39812D01* G37* G36* Y39182D02*X6305Y39153D01* X6343Y39135D01* Y37854D01* X6325Y37846D01* X6280Y37815D01* X6343Y37752D01* Y37247D01* X6280Y37184D01* X6325Y37153D01* X6343Y37145D01* Y35845D01* X6300Y35815D01* X6343Y35772D01* Y35227D01* X6300Y35184D01* X6343Y35154D01* Y33831D01* X6320Y33815D01* X6343Y33792D01* Y33207D01* X6320Y33184D01* X6343Y33168D01* Y31817D01* X6340Y31815D01* X6343Y31812D01* Y31187D01* X6340Y31184D01* X6343Y31182D01* Y29691D01* X6289Y29744D01* X6263Y29706D01* Y31264D01* X6269Y31255D01* X6341Y31327D01* X6325Y31350D01* X6303Y31397D01* X6289Y31447D01* X6285Y31500D01* X6289Y31552D01* X6303Y31602D01* X6325Y31650D01* X6341Y31673D01* X6269Y31744D01* X6263Y31735D01* Y33268D01* X6321Y33327D01* X6305Y33350D01* X6283Y33397D01* X6269Y33447D01* X6265Y33500D01* X6269Y33552D01* X6283Y33602D01* X6305Y33650D01* X6321Y33673D01* X6263Y33731D01* Y35288D01* X6301Y35327D01* X6285Y35350D01* X6263Y35397D01* Y35602D01* X6285Y35650D01* X6301Y35673D01* X6263Y35711D01* Y37308D01* X6281Y37327D01* X6265Y37350D01* X6263Y37354D01* Y37645D01* X6265Y37650D01* X6281Y37673D01* X6263Y37691D01* Y39182D01* G37* G36* Y29293D02*X6289Y29255D01* X6343Y29308D01* Y27711D01* X6309Y27744D01* X6278Y27700D01* X6263Y27667D01* Y29293D01* G37* G36* Y27333D02*X6278Y27300D01* X6309Y27255D01* X6343Y27288D01* Y25731D01* X6329Y25744D01* X6298Y25700D01* X6269Y25636D01* X6263Y25614D01* Y27333D01* G37* G36* Y25385D02*X6269Y25363D01* X6298Y25300D01* X6329Y25255D01* X6343Y25268D01* Y23735D01* X6318Y23700D01* X6289Y23636D01* X6271Y23569D01* X6265Y23500D01* X6271Y23430D01* X6289Y23363D01* X6318Y23300D01* X6343Y23264D01* Y21706D01* X6338Y21700D01* X6309Y21636D01* X6291Y21569D01* X6285Y21500D01* X6291Y21430D01* X6309Y21363D01* X6338Y21300D01* X6343Y21293D01* Y19667D01* X6329Y19636D01* X6311Y19569D01* X6305Y19500D01* X6311Y19430D01* X6329Y19363D01* X6343Y19333D01* Y17614D01* X6331Y17569D01* X6325Y17500D01* X6331Y17430D01* X6343Y17385D01* Y0D01* X6263D01* Y25385D01* G37* G36* X6343Y29354D02*X6323Y29397D01* X6309Y29447D01* X6305Y29500D01* X6309Y29552D01* X6323Y29602D01* X6343Y29645D01* Y29354D01* G37* G36* Y27397D02*X6343Y27397D01* X6329Y27447D01* X6325Y27500D01* X6329Y27552D01* X6343Y27602D01* X6343Y27602D01* Y27397D01* G37* G36* Y40000D02*X6665D01* Y39865D01* X6641Y39875D01* X6574Y39893D01* X6505Y39900D01* X6435Y39893D01* X6368Y39875D01* X6343Y39864D01* Y40000D01* G37* G36* Y39751D02*X6355Y39759D01* X6402Y39781D01* X6452Y39795D01* X6505Y39800D01* X6557Y39795D01* X6607Y39781D01* X6655Y39759D01* X6665Y39752D01* Y39247D01* X6655Y39240D01* X6607Y39218D01* X6557Y39204D01* X6505Y39200D01* X6452Y39204D01* X6402Y39218D01* X6355Y39240D01* X6343Y39248D01* Y39751D01* G37* G36* Y39135D02*X6368Y39124D01* X6435Y39106D01* X6505Y39100D01* X6574Y39106D01* X6641Y39124D01* X6665Y39134D01* Y37874D01* X6661Y37875D01* X6594Y37893D01* X6525Y37900D01* X6455Y37893D01* X6388Y37875D01* X6343Y37854D01* Y39135D01* G37* G36* Y37752D02*X6352Y37743D01* X6375Y37759D01* X6422Y37781D01* X6472Y37795D01* X6525Y37800D01* X6577Y37795D01* X6627Y37781D01* X6665Y37764D01* Y37235D01* X6627Y37218D01* X6577Y37204D01* X6525Y37200D01* X6472Y37204D01* X6422Y37218D01* X6375Y37240D01* X6352Y37256D01* X6343Y37247D01* Y37752D01* G37* G36* Y37145D02*X6388Y37124D01* X6455Y37106D01* X6525Y37100D01* X6594Y37106D01* X6661Y37124D01* X6665Y37125D01* Y35880D01* X6614Y35893D01* X6545Y35900D01* X6475Y35893D01* X6408Y35875D01* X6345Y35846D01* X6343Y35845D01* Y37145D01* G37* G36* Y35772D02*X6372Y35743D01* X6395Y35759D01* X6442Y35781D01* X6492Y35795D01* X6545Y35800D01* X6597Y35795D01* X6647Y35781D01* X6665Y35773D01* Y35226D01* X6647Y35218D01* X6597Y35204D01* X6545Y35200D01* X6492Y35204D01* X6442Y35218D01* X6395Y35240D01* X6372Y35256D01* X6343Y35227D01* Y35772D01* G37* G36* Y35154D02*X6345Y35153D01* X6408Y35124D01* X6475Y35106D01* X6545Y35100D01* X6614Y35106D01* X6665Y35119D01* Y33885D01* X6634Y33893D01* X6565Y33900D01* X6495Y33893D01* X6428Y33875D01* X6365Y33846D01* X6343Y33831D01* Y35154D01* G37* G36* Y33792D02*X6392Y33743D01* X6415Y33759D01* X6462Y33781D01* X6512Y33795D01* X6565Y33800D01* X6617Y33795D01* X6665Y33782D01* Y33217D01* X6617Y33204D01* X6565Y33200D01* X6512Y33204D01* X6462Y33218D01* X6415Y33240D01* X6392Y33256D01* X6343Y33207D01* Y33792D01* G37* G36* Y33168D02*X6365Y33153D01* X6428Y33124D01* X6495Y33106D01* X6565Y33100D01* X6634Y33106D01* X6665Y33114D01* Y31891D01* X6654Y31893D01* X6585Y31900D01* X6515Y31893D01* X6448Y31875D01* X6385Y31846D01* X6343Y31817D01* Y33168D01* G37* G36* Y31812D02*X6412Y31743D01* X6435Y31759D01* X6482Y31781D01* X6532Y31795D01* X6585Y31800D01* X6637Y31795D01* X6665Y31787D01* Y31212D01* X6637Y31204D01* X6585Y31200D01* X6532Y31204D01* X6482Y31218D01* X6435Y31240D01* X6412Y31256D01* X6343Y31187D01* Y31812D01* G37* G36* Y31182D02*X6385Y31153D01* X6423Y31135D01* Y29854D01* X6405Y29846D01* X6360Y29815D01* X6423Y29752D01* Y29247D01* X6360Y29184D01* X6405Y29153D01* X6423Y29145D01* Y27845D01* X6380Y27815D01* X6423Y27772D01* Y27227D01* X6380Y27184D01* X6423Y27154D01* Y25831D01* X6400Y25815D01* X6423Y25792D01* Y25207D01* X6400Y25184D01* X6423Y25168D01* Y23817D01* X6420Y23815D01* X6423Y23812D01* Y23187D01* X6420Y23184D01* X6423Y23182D01* Y21691D01* X6369Y21744D01* X6343Y21706D01* Y23264D01* X6349Y23255D01* X6421Y23327D01* X6405Y23350D01* X6383Y23397D01* X6369Y23447D01* X6365Y23500D01* X6369Y23552D01* X6383Y23602D01* X6405Y23650D01* X6421Y23673D01* X6349Y23744D01* X6343Y23735D01* Y25268D01* X6401Y25327D01* X6385Y25350D01* X6363Y25397D01* X6349Y25447D01* X6345Y25500D01* X6349Y25552D01* X6363Y25602D01* X6385Y25650D01* X6401Y25673D01* X6343Y25731D01* Y27288D01* X6381Y27327D01* X6365Y27350D01* X6343Y27397D01* Y27602D01* X6365Y27650D01* X6381Y27673D01* X6343Y27711D01* Y29308D01* X6361Y29327D01* X6345Y29350D01* X6343Y29354D01* Y29645D01* X6345Y29650D01* X6361Y29673D01* X6343Y29691D01* Y31182D01* G37* G36* X6423Y0D02*X6343D01* Y17385D01* X6349Y17363D01* X6378Y17300D01* X6409Y17255D01* X6423Y17268D01* Y15735D01* X6398Y15700D01* X6369Y15636D01* X6351Y15569D01* X6345Y15500D01* X6351Y15430D01* X6369Y15363D01* X6398Y15300D01* X6423Y15264D01* Y13706D01* X6418Y13700D01* X6389Y13636D01* X6371Y13569D01* X6365Y13500D01* X6371Y13430D01* X6389Y13363D01* X6418Y13300D01* X6423Y13293D01* Y11667D01* X6409Y11636D01* X6391Y11569D01* X6385Y11500D01* X6391Y11430D01* X6409Y11363D01* X6423Y11333D01* Y9614D01* X6411Y9569D01* X6405Y9500D01* X6411Y9430D01* X6423Y9385D01* Y0D01* G37* G36* Y17731D02*X6409Y17744D01* X6378Y17700D01* X6349Y17636D01* X6343Y17614D01* Y19333D01* X6358Y19300D01* X6389Y19255D01* X6423Y19288D01* Y17731D01* G37* G36* Y19397D02*X6423Y19397D01* X6409Y19447D01* X6405Y19500D01* X6409Y19552D01* X6423Y19602D01* X6423Y19602D01* Y19397D01* G37* G36* Y19711D02*X6389Y19744D01* X6358Y19700D01* X6343Y19667D01* Y21293D01* X6369Y21255D01* X6423Y21308D01* Y19711D01* G37* G36* Y21354D02*X6403Y21397D01* X6389Y21447D01* X6385Y21500D01* X6389Y21552D01* X6403Y21602D01* X6423Y21645D01* Y21354D01* G37* G36* Y31135D02*X6448Y31124D01* X6515Y31106D01* X6585Y31100D01* X6654Y31106D01* X6665Y31108D01* Y29894D01* X6605Y29900D01* X6535Y29893D01* X6468Y29875D01* X6423Y29854D01* Y31135D01* G37* G36* Y29752D02*X6432Y29743D01* X6455Y29759D01* X6502Y29781D01* X6552Y29795D01* X6605Y29800D01* X6657Y29795D01* X6665Y29793D01* Y29206D01* X6657Y29204D01* X6605Y29200D01* X6552Y29204D01* X6502Y29218D01* X6455Y29240D01* X6432Y29256D01* X6423Y29247D01* Y29752D01* G37* G36* Y29145D02*X6468Y29124D01* X6535Y29106D01* X6605Y29100D01* X6665Y29105D01* Y27896D01* X6625Y27900D01* X6555Y27893D01* X6488Y27875D01* X6425Y27846D01* X6423Y27845D01* Y29145D01* G37* G36* Y27772D02*X6452Y27743D01* X6475Y27759D01* X6522Y27781D01* X6572Y27795D01* X6625Y27800D01* X6665Y27796D01* Y27203D01* X6625Y27200D01* X6572Y27204D01* X6522Y27218D01* X6475Y27240D01* X6452Y27256D01* X6423Y27227D01* Y27772D01* G37* G36* Y27154D02*X6425Y27153D01* X6488Y27124D01* X6555Y27106D01* X6625Y27100D01* X6665Y27103D01* Y25898D01* X6645Y25900D01* X6575Y25893D01* X6508Y25875D01* X6445Y25846D01* X6423Y25831D01* Y27154D01* G37* G36* Y25792D02*X6472Y25743D01* X6495Y25759D01* X6542Y25781D01* X6592Y25795D01* X6645Y25800D01* X6665Y25798D01* Y25201D01* X6645Y25200D01* X6592Y25204D01* X6542Y25218D01* X6495Y25240D01* X6472Y25256D01* X6423Y25207D01* Y25792D01* G37* G36* Y25168D02*X6445Y25153D01* X6508Y25124D01* X6575Y25106D01* X6645Y25100D01* X6665Y25101D01* Y23900D01* X6595Y23893D01* X6528Y23875D01* X6465Y23846D01* X6423Y23817D01* Y25168D01* G37* G36* Y23812D02*X6492Y23743D01* X6515Y23759D01* X6562Y23781D01* X6612Y23795D01* X6665Y23800D01* Y23200D01* X6612Y23204D01* X6562Y23218D01* X6515Y23240D01* X6492Y23256D01* X6423Y23187D01* Y23812D01* G37* G36* Y23182D02*X6465Y23153D01* X6503Y23135D01* Y21854D01* X6485Y21846D01* X6440Y21815D01* X6503Y21752D01* Y21247D01* X6440Y21184D01* X6485Y21153D01* X6503Y21145D01* Y19845D01* X6460Y19815D01* X6503Y19772D01* Y19227D01* X6460Y19184D01* X6503Y19154D01* Y17831D01* X6480Y17815D01* X6503Y17792D01* Y17207D01* X6480Y17184D01* X6503Y17168D01* Y15817D01* X6500Y15815D01* X6503Y15812D01* Y15187D01* X6500Y15184D01* X6503Y15182D01* Y13691D01* X6449Y13744D01* X6423Y13706D01* Y15264D01* X6429Y15255D01* X6501Y15327D01* X6485Y15350D01* X6463Y15397D01* X6449Y15447D01* X6445Y15500D01* X6449Y15552D01* X6463Y15602D01* X6485Y15650D01* X6501Y15673D01* X6429Y15744D01* X6423Y15735D01* Y17268D01* X6481Y17327D01* X6465Y17350D01* X6443Y17397D01* X6429Y17447D01* X6425Y17500D01* X6429Y17552D01* X6443Y17602D01* X6465Y17650D01* X6481Y17673D01* X6423Y17731D01* Y19288D01* X6461Y19327D01* X6445Y19350D01* X6423Y19397D01* Y19602D01* X6445Y19650D01* X6461Y19673D01* X6423Y19711D01* Y21308D01* X6441Y21327D01* X6425Y21350D01* X6423Y21354D01* Y21645D01* X6425Y21650D01* X6441Y21673D01* X6423Y21691D01* Y23182D01* G37* G36* X6503Y0D02*X6423D01* Y9385D01* X6429Y9363D01* X6458Y9300D01* X6489Y9255D01* X6503Y9268D01* Y7735D01* X6478Y7700D01* X6449Y7636D01* X6431Y7569D01* X6425Y7500D01* X6431Y7430D01* X6449Y7363D01* X6478Y7300D01* X6503Y7264D01* Y5706D01* X6498Y5700D01* X6469Y5636D01* X6451Y5569D01* X6445Y5500D01* X6451Y5430D01* X6469Y5363D01* X6498Y5300D01* X6503Y5293D01* Y3667D01* X6489Y3636D01* X6471Y3569D01* X6465Y3500D01* X6471Y3430D01* X6489Y3363D01* X6503Y3333D01* Y1614D01* X6491Y1569D01* X6485Y1500D01* X6491Y1430D01* X6503Y1385D01* Y0D01* G37* G36* Y9731D02*X6489Y9744D01* X6458Y9700D01* X6429Y9636D01* X6423Y9614D01* Y11333D01* X6438Y11300D01* X6469Y11255D01* X6503Y11288D01* Y9731D01* G37* G36* Y11397D02*X6503Y11397D01* X6489Y11447D01* X6485Y11500D01* X6489Y11552D01* X6503Y11602D01* X6503Y11602D01* Y11397D01* G37* G36* Y11711D02*X6469Y11744D01* X6438Y11700D01* X6423Y11667D01* Y13293D01* X6449Y13255D01* X6503Y13308D01* Y11711D01* G37* G36* Y13354D02*X6483Y13397D01* X6469Y13447D01* X6465Y13500D01* X6469Y13552D01* X6483Y13602D01* X6503Y13645D01* Y13354D01* G37* G36* Y23135D02*X6528Y23124D01* X6595Y23106D01* X6665Y23100D01* Y21898D01* X6615Y21893D01* X6548Y21875D01* X6503Y21854D01* Y23135D01* G37* G36* Y21752D02*X6512Y21743D01* X6535Y21759D01* X6582Y21781D01* X6632Y21795D01* X6665Y21798D01* Y21201D01* X6632Y21204D01* X6582Y21218D01* X6535Y21240D01* X6512Y21256D01* X6503Y21247D01* Y21752D01* G37* G36* Y21145D02*X6548Y21124D01* X6615Y21106D01* X6665Y21101D01* Y19896D01* X6635Y19893D01* X6568Y19875D01* X6505Y19846D01* X6503Y19845D01* Y21145D01* G37* G36* Y19772D02*X6532Y19743D01* X6555Y19759D01* X6602Y19781D01* X6652Y19795D01* X6665Y19796D01* Y19203D01* X6652Y19204D01* X6602Y19218D01* X6555Y19240D01* X6532Y19256D01* X6503Y19227D01* Y19772D01* G37* G36* Y19154D02*X6505Y19153D01* X6568Y19124D01* X6635Y19106D01* X6665Y19103D01* Y17894D01* X6655Y17893D01* X6588Y17875D01* X6525Y17846D01* X6503Y17831D01* Y19154D01* G37* G36* Y17792D02*X6552Y17743D01* X6575Y17759D01* X6622Y17781D01* X6665Y17793D01* Y17206D01* X6622Y17218D01* X6575Y17240D01* X6552Y17256D01* X6503Y17207D01* Y17792D01* G37* G36* Y17168D02*X6525Y17153D01* X6588Y17124D01* X6655Y17106D01* X6665Y17105D01* Y15891D01* X6608Y15875D01* X6545Y15846D01* X6503Y15817D01* Y17168D01* G37* G36* Y15812D02*X6572Y15743D01* X6595Y15759D01* X6642Y15781D01* X6665Y15787D01* Y15212D01* X6642Y15218D01* X6595Y15240D01* X6572Y15256D01* X6503Y15187D01* Y15812D01* G37* G36* Y15182D02*X6545Y15153D01* X6608Y15124D01* X6665Y15108D01* Y13885D01* X6628Y13875D01* X6565Y13846D01* X6520Y13815D01* X6592Y13743D01* X6615Y13759D01* X6662Y13781D01* X6665Y13782D01* Y13217D01* X6662Y13218D01* X6615Y13240D01* X6592Y13256D01* X6520Y13184D01* X6565Y13153D01* X6628Y13124D01* X6665Y13114D01* Y11880D01* X6648Y11875D01* X6585Y11846D01* X6540Y11815D01* X6612Y11743D01* X6635Y11759D01* X6665Y11773D01* Y11226D01* X6635Y11240D01* X6612Y11256D01* X6540Y11184D01* X6585Y11153D01* X6648Y11124D01* X6665Y11119D01* Y9874D01* X6605Y9846D01* X6560Y9815D01* X6632Y9743D01* X6655Y9759D01* X6665Y9764D01* Y9235D01* X6655Y9240D01* X6632Y9256D01* X6560Y9184D01* X6605Y9153D01* X6665Y9125D01* Y7865D01* X6625Y7846D01* X6580Y7815D01* X6652Y7743D01* X6665Y7752D01* Y7247D01* X6652Y7256D01* X6580Y7184D01* X6625Y7153D01* X6665Y7134D01* Y5855D01* X6645Y5846D01* X6600Y5815D01* X6665Y5750D01* Y5249D01* X6600Y5184D01* X6645Y5153D01* X6665Y5144D01* Y3846D01* X6620Y3815D01* X6665Y3770D01* Y3229D01* X6620Y3184D01* X6665Y3153D01* Y1832D01* X6640Y1815D01* X6665Y1790D01* Y1209D01* X6640Y1184D01* X6665Y1167D01* Y0D01* X6503D01* Y1385D01* X6509Y1363D01* X6538Y1300D01* X6569Y1255D01* X6641Y1327D01* X6625Y1350D01* X6603Y1397D01* X6589Y1447D01* X6585Y1500D01* X6589Y1552D01* X6603Y1602D01* X6625Y1650D01* X6641Y1673D01* X6569Y1744D01* X6538Y1700D01* X6509Y1636D01* X6503Y1614D01* Y3333D01* X6518Y3300D01* X6549Y3255D01* X6621Y3327D01* X6605Y3350D01* X6583Y3397D01* X6569Y3447D01* X6565Y3500D01* X6569Y3552D01* X6583Y3602D01* X6605Y3650D01* X6621Y3673D01* X6549Y3744D01* X6518Y3700D01* X6503Y3667D01* Y5293D01* X6529Y5255D01* X6601Y5327D01* X6585Y5350D01* X6563Y5397D01* X6549Y5447D01* X6545Y5500D01* X6549Y5552D01* X6563Y5602D01* X6585Y5650D01* X6601Y5673D01* X6529Y5744D01* X6503Y5706D01* Y7264D01* X6509Y7255D01* X6581Y7327D01* X6565Y7350D01* X6543Y7397D01* X6529Y7447D01* X6525Y7500D01* X6529Y7552D01* X6543Y7602D01* X6565Y7650D01* X6581Y7673D01* X6509Y7744D01* X6503Y7735D01* Y9268D01* X6561Y9327D01* X6545Y9350D01* X6523Y9397D01* X6509Y9447D01* X6505Y9500D01* X6509Y9552D01* X6523Y9602D01* X6545Y9650D01* X6561Y9673D01* X6503Y9731D01* Y11288D01* X6541Y11327D01* X6525Y11350D01* X6503Y11397D01* Y11602D01* X6525Y11650D01* X6541Y11673D01* X6503Y11711D01* Y13308D01* X6521Y13327D01* X6505Y13350D01* X6503Y13354D01* Y13645D01* X6505Y13650D01* X6521Y13673D01* X6503Y13691D01* Y15182D01* G37* G36* X6665Y40000D02*X6826D01* Y39734D01* X6820Y39744D01* X6748Y39673D01* X6764Y39650D01* X6786Y39602D01* X6800Y39552D01* X6805Y39500D01* X6800Y39447D01* X6786Y39397D01* X6764Y39350D01* X6748Y39327D01* X6820Y39255D01* X6826Y39265D01* Y37731D01* X6768Y37673D01* X6784Y37650D01* X6806Y37602D01* X6820Y37552D01* X6825Y37500D01* X6820Y37447D01* X6806Y37397D01* X6784Y37350D01* X6768Y37327D01* X6826Y37268D01* Y35711D01* X6788Y35673D01* X6804Y35650D01* X6826Y35602D01* Y35397D01* X6804Y35350D01* X6788Y35327D01* X6826Y35288D01* Y33691D01* X6808Y33673D01* X6824Y33650D01* X6826Y33645D01* Y33354D01* X6824Y33350D01* X6808Y33327D01* X6826Y33308D01* Y31817D01* X6785Y31846D01* X6721Y31875D01* X6665Y31891D01* Y33114D01* X6701Y33124D01* X6765Y33153D01* X6809Y33184D01* X6738Y33256D01* X6715Y33240D01* X6667Y33218D01* X6665Y33217D01* Y33782D01* X6667Y33781D01* X6715Y33759D01* X6738Y33743D01* X6809Y33815D01* X6765Y33846D01* X6701Y33875D01* X6665Y33885D01* Y35119D01* X6681Y35124D01* X6745Y35153D01* X6789Y35184D01* X6718Y35256D01* X6695Y35240D01* X6665Y35226D01* Y35773D01* X6695Y35759D01* X6718Y35743D01* X6789Y35815D01* X6745Y35846D01* X6681Y35875D01* X6665Y35880D01* Y37125D01* X6725Y37153D01* X6769Y37184D01* X6698Y37256D01* X6675Y37240D01* X6665Y37235D01* Y37764D01* X6675Y37759D01* X6698Y37743D01* X6769Y37815D01* X6725Y37846D01* X6665Y37874D01* Y39134D01* X6705Y39153D01* X6749Y39184D01* X6678Y39256D01* X6665Y39247D01* Y39752D01* X6678Y39743D01* X6749Y39815D01* X6705Y39846D01* X6665Y39865D01* Y40000D01* G37* G36* X6826Y23864D02*X6801Y23875D01* X6734Y23893D01* X6665Y23900D01* Y25101D01* X6714Y25106D01* X6781Y25124D01* X6826Y25145D01* Y23864D01* G37* G36* Y25247D02*X6818Y25256D01* X6795Y25240D01* X6747Y25218D01* X6697Y25204D01* X6665Y25201D01* Y25798D01* X6697Y25795D01* X6747Y25781D01* X6795Y25759D01* X6818Y25743D01* X6826Y25752D01* Y25247D01* G37* G36* Y25854D02*X6781Y25875D01* X6714Y25893D01* X6665Y25898D01* Y27103D01* X6694Y27106D01* X6761Y27124D01* X6825Y27153D01* X6826Y27154D01* Y25854D01* G37* G36* Y27227D02*X6798Y27256D01* X6775Y27240D01* X6727Y27218D01* X6677Y27204D01* X6665Y27203D01* Y27796D01* X6677Y27795D01* X6727Y27781D01* X6775Y27759D01* X6798Y27743D01* X6826Y27772D01* Y27227D01* G37* G36* Y27845D02*X6825Y27846D01* X6761Y27875D01* X6694Y27893D01* X6665Y27896D01* Y29105D01* X6674Y29106D01* X6741Y29124D01* X6805Y29153D01* X6826Y29169D01* Y27845D01* G37* G36* Y29207D02*X6778Y29256D01* X6755Y29240D01* X6707Y29218D01* X6665Y29206D01* Y29793D01* X6707Y29781D01* X6755Y29759D01* X6778Y29743D01* X6826Y29792D01* Y29207D01* G37* G36* Y29831D02*X6805Y29846D01* X6741Y29875D01* X6674Y29893D01* X6665Y29894D01* Y31108D01* X6721Y31124D01* X6785Y31153D01* X6826Y31183D01* Y29831D01* G37* G36* Y31187D02*X6758Y31256D01* X6735Y31240D01* X6687Y31218D01* X6665Y31212D01* Y31787D01* X6687Y31781D01* X6735Y31759D01* X6758Y31743D01* X6826Y31812D01* Y31187D01* G37* G36* Y40000D02*X6906D01* Y37614D01* X6900Y37636D01* X6871Y37700D01* X6840Y37744D01* X6826Y37731D01* Y39265D01* X6851Y39300D01* X6880Y39363D01* X6898Y39430D01* X6905Y39500D01* X6898Y39569D01* X6880Y39636D01* X6851Y39700D01* X6826Y39734D01* Y40000D01* G37* G36* Y37268D02*X6840Y37255D01* X6871Y37300D01* X6900Y37363D01* X6906Y37385D01* Y35666D01* X6891Y35700D01* X6860Y35744D01* X6826Y35711D01* Y37268D01* G37* G36* Y35602D02*X6840Y35552D01* X6845Y35500D01* X6840Y35447D01* X6826Y35397D01* Y35602D01* G37* G36* Y35288D02*X6860Y35255D01* X6891Y35300D01* X6906Y35333D01* Y33706D01* X6880Y33744D01* X6826Y33691D01* Y35288D01* G37* G36* Y33645D02*X6846Y33602D01* X6860Y33552D01* X6865Y33500D01* X6860Y33447D01* X6846Y33397D01* X6826Y33354D01* Y33645D01* G37* G36* Y33308D02*X6880Y33255D01* X6906Y33293D01* Y31734D01* X6900Y31744D01* X6828Y31673D01* X6844Y31650D01* X6866Y31602D01* X6880Y31552D01* X6885Y31500D01* X6880Y31447D01* X6866Y31397D01* X6844Y31350D01* X6828Y31327D01* X6900Y31255D01* X6906Y31265D01* Y29731D01* X6848Y29673D01* X6864Y29650D01* X6886Y29602D01* X6900Y29552D01* X6905Y29500D01* X6900Y29447D01* X6886Y29397D01* X6864Y29350D01* X6848Y29327D01* X6906Y29268D01* Y27711D01* X6868Y27673D01* X6884Y27650D01* X6906Y27602D01* Y27397D01* X6884Y27350D01* X6868Y27327D01* X6906Y27288D01* Y25691D01* X6888Y25673D01* X6904Y25650D01* X6906Y25645D01* Y25354D01* X6904Y25350D01* X6888Y25327D01* X6906Y25308D01* Y23817D01* X6865Y23846D01* X6826Y23864D01* Y25145D01* X6845Y25153D01* X6889Y25184D01* X6826Y25247D01* Y25752D01* X6889Y25815D01* X6845Y25846D01* X6826Y25854D01* Y27154D01* X6869Y27184D01* X6826Y27227D01* Y27772D01* X6869Y27815D01* X6826Y27845D01* Y29169D01* X6849Y29184D01* X6826Y29207D01* Y29792D01* X6849Y29815D01* X6826Y29831D01* Y31183D01* X6829Y31184D01* X6826Y31187D01* Y31812D01* X6829Y31815D01* X6826Y31817D01* Y33308D01* G37* G36* X6906Y15864D02*X6881Y15875D01* X6814Y15893D01* X6745Y15900D01* X6675Y15893D01* X6665Y15891D01* Y17105D01* X6725Y17100D01* X6794Y17106D01* X6861Y17124D01* X6906Y17145D01* Y15864D01* G37* G36* Y17247D02*X6898Y17256D01* X6875Y17240D01* X6827Y17218D01* X6777Y17204D01* X6725Y17200D01* X6672Y17204D01* X6665Y17206D01* Y17793D01* X6672Y17795D01* X6725Y17800D01* X6777Y17795D01* X6827Y17781D01* X6875Y17759D01* X6898Y17743D01* X6906Y17752D01* Y17247D01* G37* G36* Y17854D02*X6861Y17875D01* X6794Y17893D01* X6725Y17900D01* X6665Y17894D01* Y19103D01* X6705Y19100D01* X6774Y19106D01* X6841Y19124D01* X6905Y19153D01* X6906Y19154D01* Y17854D01* G37* G36* Y19227D02*X6878Y19256D01* X6855Y19240D01* X6807Y19218D01* X6757Y19204D01* X6705Y19200D01* X6665Y19203D01* Y19796D01* X6705Y19800D01* X6757Y19795D01* X6807Y19781D01* X6855Y19759D01* X6878Y19743D01* X6906Y19772D01* Y19227D01* G37* G36* Y19845D02*X6905Y19846D01* X6841Y19875D01* X6774Y19893D01* X6705Y19900D01* X6665Y19896D01* Y21101D01* X6685Y21100D01* X6754Y21106D01* X6821Y21124D01* X6885Y21153D01* X6906Y21169D01* Y19845D01* G37* G36* Y21207D02*X6858Y21256D01* X6835Y21240D01* X6787Y21218D01* X6737Y21204D01* X6685Y21200D01* X6665Y21201D01* Y21798D01* X6685Y21800D01* X6737Y21795D01* X6787Y21781D01* X6835Y21759D01* X6858Y21743D01* X6906Y21792D01* Y21207D01* G37* G36* Y21831D02*X6885Y21846D01* X6821Y21875D01* X6754Y21893D01* X6685Y21900D01* X6665Y21898D01* Y23100D01* X6734Y23106D01* X6801Y23124D01* X6865Y23153D01* X6906Y23183D01* Y21831D01* G37* G36* Y23187D02*X6838Y23256D01* X6815Y23240D01* X6767Y23218D01* X6717Y23204D01* X6665Y23200D01* Y23800D01* X6717Y23795D01* X6767Y23781D01* X6815Y23759D01* X6838Y23743D01* X6906Y23812D01* Y23187D01* G37* G36* Y40000D02*X6986D01* Y29614D01* X6980Y29636D01* X6951Y29700D01* X6920Y29744D01* X6906Y29731D01* Y31265D01* X6931Y31300D01* X6960Y31363D01* X6978Y31430D01* X6985Y31500D01* X6978Y31569D01* X6960Y31636D01* X6931Y31700D01* X6906Y31734D01* Y33293D01* X6911Y33300D01* X6940Y33363D01* X6958Y33430D01* X6965Y33500D01* X6958Y33569D01* X6940Y33636D01* X6911Y33700D01* X6906Y33706D01* Y35333D01* X6920Y35363D01* X6938Y35430D01* X6945Y35500D01* X6938Y35569D01* X6920Y35636D01* X6906Y35666D01* Y37385D01* X6918Y37430D01* X6925Y37500D01* X6918Y37569D01* X6906Y37614D01* Y40000D01* G37* G36* Y29268D02*X6920Y29255D01* X6951Y29300D01* X6980Y29363D01* X6986Y29385D01* Y27666D01* X6971Y27700D01* X6940Y27744D01* X6906Y27711D01* Y29268D01* G37* G36* Y27602D02*X6920Y27552D01* X6925Y27500D01* X6920Y27447D01* X6906Y27397D01* Y27602D01* G37* G36* Y27288D02*X6940Y27255D01* X6971Y27300D01* X6986Y27333D01* Y25706D01* X6960Y25744D01* X6906Y25691D01* Y27288D01* G37* G36* Y25645D02*X6926Y25602D01* X6940Y25552D01* X6945Y25500D01* X6940Y25447D01* X6926Y25397D01* X6906Y25354D01* Y25645D01* G37* G36* Y25308D02*X6960Y25255D01* X6986Y25293D01* Y23734D01* X6980Y23744D01* X6908Y23673D01* X6924Y23650D01* X6946Y23602D01* X6960Y23552D01* X6965Y23500D01* X6960Y23447D01* X6946Y23397D01* X6924Y23350D01* X6908Y23327D01* X6980Y23255D01* X6986Y23265D01* Y21731D01* X6928Y21673D01* X6944Y21650D01* X6966Y21602D01* X6980Y21552D01* X6985Y21500D01* X6980Y21447D01* X6966Y21397D01* X6944Y21350D01* X6928Y21327D01* X6986Y21268D01* Y19711D01* X6948Y19673D01* X6964Y19650D01* X6986Y19602D01* Y19397D01* X6964Y19350D01* X6948Y19327D01* X6986Y19288D01* Y17691D01* X6968Y17673D01* X6984Y17650D01* X6986Y17645D01* Y17354D01* X6984Y17350D01* X6968Y17327D01* X6986Y17308D01* Y15817D01* X6945Y15846D01* X6906Y15864D01* Y17145D01* X6925Y17153D01* X6969Y17184D01* X6906Y17247D01* Y17752D01* X6969Y17815D01* X6925Y17846D01* X6906Y17854D01* Y19154D01* X6949Y19184D01* X6906Y19227D01* Y19772D01* X6949Y19815D01* X6906Y19845D01* Y21169D01* X6929Y21184D01* X6906Y21207D01* Y21792D01* X6929Y21815D01* X6906Y21831D01* Y23183D01* X6909Y23184D01* X6906Y23187D01* Y23812D01* X6909Y23815D01* X6906Y23817D01* Y25308D01* G37* G36* X6665Y15787D02*X6692Y15795D01* X6745Y15800D01* X6797Y15795D01* X6847Y15781D01* X6895Y15759D01* X6918Y15743D01* X6986Y15812D01* Y15187D01* X6918Y15256D01* X6895Y15240D01* X6847Y15218D01* X6797Y15204D01* X6745Y15200D01* X6692Y15204D01* X6665Y15212D01* Y15787D01* G37* G36* Y15108D02*X6675Y15106D01* X6745Y15100D01* X6814Y15106D01* X6881Y15124D01* X6945Y15153D01* X6986Y15183D01* Y13831D01* X6965Y13846D01* X6901Y13875D01* X6834Y13893D01* X6765Y13900D01* X6695Y13893D01* X6665Y13885D01* Y15108D01* G37* G36* Y13782D02*X6712Y13795D01* X6765Y13800D01* X6817Y13795D01* X6867Y13781D01* X6915Y13759D01* X6938Y13743D01* X6986Y13792D01* Y13207D01* X6938Y13256D01* X6915Y13240D01* X6867Y13218D01* X6817Y13204D01* X6765Y13200D01* X6712Y13204D01* X6665Y13217D01* Y13782D01* G37* G36* Y13114D02*X6695Y13106D01* X6765Y13100D01* X6834Y13106D01* X6901Y13124D01* X6965Y13153D01* X6986Y13169D01* Y11845D01* X6985Y11846D01* X6921Y11875D01* X6854Y11893D01* X6785Y11900D01* X6715Y11893D01* X6665Y11880D01* Y13114D01* G37* G36* Y11773D02*X6682Y11781D01* X6732Y11795D01* X6785Y11800D01* X6837Y11795D01* X6887Y11781D01* X6935Y11759D01* X6958Y11743D01* X6986Y11772D01* Y11227D01* X6958Y11256D01* X6935Y11240D01* X6887Y11218D01* X6837Y11204D01* X6785Y11200D01* X6732Y11204D01* X6682Y11218D01* X6665Y11226D01* Y11773D01* G37* G36* Y11119D02*X6715Y11106D01* X6785Y11100D01* X6854Y11106D01* X6921Y11124D01* X6985Y11153D01* X6986Y11154D01* Y9854D01* X6941Y9875D01* X6874Y9893D01* X6805Y9900D01* X6735Y9893D01* X6668Y9875D01* X6665Y9874D01* Y11119D01* G37* G36* Y9764D02*X6702Y9781D01* X6752Y9795D01* X6805Y9800D01* X6857Y9795D01* X6907Y9781D01* X6955Y9759D01* X6978Y9743D01* X6986Y9752D01* Y9247D01* X6978Y9256D01* X6955Y9240D01* X6907Y9218D01* X6857Y9204D01* X6805Y9200D01* X6752Y9204D01* X6702Y9218D01* X6665Y9235D01* Y9764D01* G37* G36* Y9125D02*X6668Y9124D01* X6735Y9106D01* X6805Y9100D01* X6874Y9106D01* X6941Y9124D01* X6986Y9145D01* Y7864D01* X6961Y7875D01* X6894Y7893D01* X6825Y7900D01* X6755Y7893D01* X6688Y7875D01* X6665Y7865D01* Y9125D01* G37* G36* Y7752D02*X6675Y7759D01* X6722Y7781D01* X6772Y7795D01* X6825Y7800D01* X6877Y7795D01* X6927Y7781D01* X6975Y7759D01* X6986Y7751D01* Y7248D01* X6975Y7240D01* X6927Y7218D01* X6877Y7204D01* X6825Y7200D01* X6772Y7204D01* X6722Y7218D01* X6675Y7240D01* X6665Y7247D01* Y7752D01* G37* G36* Y7134D02*X6688Y7124D01* X6755Y7106D01* X6825Y7100D01* X6894Y7106D01* X6961Y7124D01* X6986Y7135D01* Y5873D01* X6981Y5875D01* X6914Y5893D01* X6845Y5900D01* X6775Y5893D01* X6708Y5875D01* X6665Y5855D01* Y7134D01* G37* G36* Y5750D02*X6672Y5743D01* X6695Y5759D01* X6742Y5781D01* X6792Y5795D01* X6845Y5800D01* X6897Y5795D01* X6947Y5781D01* X6986Y5763D01* Y5236D01* X6947Y5218D01* X6897Y5204D01* X6845Y5200D01* X6792Y5204D01* X6742Y5218D01* X6695Y5240D01* X6672Y5256D01* X6665Y5249D01* Y5750D01* G37* G36* Y5144D02*X6708Y5124D01* X6775Y5106D01* X6845Y5100D01* X6914Y5106D01* X6981Y5124D01* X6986Y5126D01* Y3879D01* X6934Y3893D01* X6865Y3900D01* X6795Y3893D01* X6728Y3875D01* X6665Y3846D01* Y5144D01* G37* G36* Y3770D02*X6692Y3743D01* X6715Y3759D01* X6762Y3781D01* X6812Y3795D01* X6865Y3800D01* X6917Y3795D01* X6967Y3781D01* X6986Y3772D01* Y3227D01* X6967Y3218D01* X6917Y3204D01* X6865Y3200D01* X6812Y3204D01* X6762Y3218D01* X6715Y3240D01* X6692Y3256D01* X6665Y3229D01* Y3770D01* G37* G36* Y3153D02*X6728Y3124D01* X6795Y3106D01* X6865Y3100D01* X6934Y3106D01* X6986Y3120D01* Y1885D01* X6954Y1893D01* X6885Y1900D01* X6815Y1893D01* X6748Y1875D01* X6685Y1846D01* X6665Y1832D01* Y3153D01* G37* G36* Y1790D02*X6712Y1743D01* X6735Y1759D01* X6782Y1781D01* X6832Y1795D01* X6885Y1800D01* X6937Y1795D01* X6986Y1782D01* Y1217D01* X6937Y1204D01* X6885Y1200D01* X6832Y1204D01* X6782Y1218D01* X6735Y1240D01* X6712Y1256D01* X6665Y1209D01* Y1790D01* G37* G36* Y1167D02*X6685Y1153D01* X6748Y1124D01* X6815Y1106D01* X6885Y1100D01* X6954Y1106D01* X6986Y1114D01* Y0D01* X6665D01* Y1167D01* G37* G36* X6986Y40000D02*X7066D01* Y21614D01* X7060Y21636D01* X7031Y21700D01* X7000Y21744D01* X6986Y21731D01* Y23265D01* X7011Y23300D01* X7040Y23363D01* X7058Y23430D01* X7065Y23500D01* X7058Y23569D01* X7040Y23636D01* X7011Y23700D01* X6986Y23734D01* Y25293D01* X6991Y25300D01* X7020Y25363D01* X7038Y25430D01* X7045Y25500D01* X7038Y25569D01* X7020Y25636D01* X6991Y25700D01* X6986Y25706D01* Y27333D01* X7000Y27363D01* X7018Y27430D01* X7025Y27500D01* X7018Y27569D01* X7000Y27636D01* X6986Y27666D01* Y29385D01* X6998Y29430D01* X7005Y29500D01* X6998Y29569D01* X6986Y29614D01* Y40000D01* G37* G36* X7066Y0D02*X6986D01* Y1114D01* X7021Y1124D01* X7066Y1145D01* Y0D01* G37* G36* Y1247D02*X7058Y1256D01* X7035Y1240D01* X6987Y1218D01* X6986Y1217D01* Y1782D01* X6987Y1781D01* X7035Y1759D01* X7058Y1743D01* X7066Y1752D01* Y1247D01* G37* G36* Y1854D02*X7021Y1875D01* X6986Y1885D01* Y3120D01* X7001Y3124D01* X7065Y3153D01* X7066Y3154D01* Y1854D01* G37* G36* Y3227D02*X7038Y3256D01* X7015Y3240D01* X6986Y3227D01* Y3772D01* X7015Y3759D01* X7038Y3743D01* X7066Y3772D01* Y3227D01* G37* G36* Y3845D02*X7065Y3846D01* X7001Y3875D01* X6986Y3879D01* Y5126D01* X7045Y5153D01* X7066Y5169D01* Y3845D01* G37* G36* Y5207D02*X7018Y5256D01* X6995Y5240D01* X6986Y5236D01* Y5763D01* X6995Y5759D01* X7018Y5743D01* X7066Y5792D01* Y5207D01* G37* G36* Y5831D02*X7045Y5846D01* X6986Y5873D01* Y7135D01* X7025Y7153D01* X7066Y7183D01* Y5831D01* G37* G36* Y7187D02*X6998Y7256D01* X6986Y7248D01* Y7751D01* X6998Y7743D01* X7066Y7812D01* Y7187D01* G37* G36* Y7817D02*X7025Y7846D01* X6986Y7864D01* Y9145D01* X7005Y9153D01* X7049Y9184D01* X6986Y9247D01* Y9752D01* X7049Y9815D01* X7005Y9846D01* X6986Y9854D01* Y11154D01* X7029Y11184D01* X6986Y11227D01* Y11772D01* X7029Y11815D01* X6986Y11845D01* Y13169D01* X7009Y13184D01* X6986Y13207D01* Y13792D01* X7009Y13815D01* X6986Y13831D01* Y15183D01* X6989Y15184D01* X6986Y15187D01* Y15812D01* X6989Y15815D01* X6986Y15817D01* Y17308D01* X7040Y17255D01* X7066Y17293D01* Y15734D01* X7060Y15744D01* X6988Y15673D01* X7004Y15650D01* X7026Y15602D01* X7040Y15552D01* X7045Y15500D01* X7040Y15447D01* X7026Y15397D01* X7004Y15350D01* X6988Y15327D01* X7060Y15255D01* X7066Y15265D01* Y13731D01* X7008Y13673D01* X7024Y13650D01* X7046Y13602D01* X7060Y13552D01* X7065Y13500D01* X7060Y13447D01* X7046Y13397D01* X7024Y13350D01* X7008Y13327D01* X7066Y13268D01* Y11711D01* X7028Y11673D01* X7044Y11650D01* X7066Y11602D01* Y11397D01* X7044Y11350D01* X7028Y11327D01* X7066Y11288D01* Y9691D01* X7048Y9673D01* X7064Y9650D01* X7066Y9645D01* Y9354D01* X7064Y9350D01* X7048Y9327D01* X7066Y9308D01* Y7817D01* G37* G36* Y17706D02*X7040Y17744D01* X6986Y17691D01* Y19288D01* X7020Y19255D01* X7051Y19300D01* X7066Y19333D01* Y17706D01* G37* G36* Y19666D02*X7051Y19700D01* X7020Y19744D01* X6986Y19711D01* Y21268D01* X7000Y21255D01* X7031Y21300D01* X7060Y21363D01* X7066Y21385D01* Y19666D01* G37* G36* Y40000D02*X7146D01* Y13614D01* X7140Y13636D01* X7111Y13700D01* X7080Y13744D01* X7066Y13731D01* Y15265D01* X7091Y15300D01* X7120Y15363D01* X7138Y15430D01* X7145Y15500D01* X7138Y15569D01* X7120Y15636D01* X7091Y15700D01* X7066Y15734D01* Y17293D01* X7071Y17300D01* X7100Y17363D01* X7118Y17430D01* X7125Y17500D01* X7118Y17569D01* X7100Y17636D01* X7071Y17700D01* X7066Y17706D01* Y19333D01* X7080Y19363D01* X7098Y19430D01* X7105Y19500D01* X7098Y19569D01* X7080Y19636D01* X7066Y19666D01* Y21385D01* X7078Y21430D01* X7085Y21500D01* X7078Y21569D01* X7066Y21614D01* Y40000D01* G37* G36* X7146Y0D02*X7066D01* Y1145D01* X7085Y1153D01* X7129Y1184D01* X7066Y1247D01* Y1752D01* X7129Y1815D01* X7085Y1846D01* X7066Y1854D01* Y3154D01* X7109Y3184D01* X7066Y3227D01* Y3772D01* X7109Y3815D01* X7066Y3845D01* Y5169D01* X7089Y5184D01* X7066Y5207D01* Y5792D01* X7089Y5815D01* X7066Y5831D01* Y7183D01* X7069Y7184D01* X7066Y7187D01* Y7812D01* X7069Y7815D01* X7066Y7817D01* Y9308D01* X7120Y9255D01* X7146Y9293D01* Y7734D01* X7140Y7744D01* X7068Y7673D01* X7084Y7650D01* X7106Y7602D01* X7120Y7552D01* X7125Y7500D01* X7120Y7447D01* X7106Y7397D01* X7084Y7350D01* X7068Y7327D01* X7140Y7255D01* X7146Y7265D01* Y5731D01* X7088Y5673D01* X7104Y5650D01* X7126Y5602D01* X7140Y5552D01* X7145Y5500D01* X7140Y5447D01* X7126Y5397D01* X7104Y5350D01* X7088Y5327D01* X7146Y5268D01* Y3711D01* X7108Y3673D01* X7124Y3650D01* X7146Y3602D01* Y3397D01* X7124Y3350D01* X7108Y3327D01* X7146Y3288D01* Y1691D01* X7128Y1673D01* X7144Y1650D01* X7146Y1645D01* Y1354D01* X7144Y1350D01* X7128Y1327D01* X7146Y1308D01* Y0D01* G37* G36* Y9706D02*X7120Y9744D01* X7066Y9691D01* Y11288D01* X7100Y11255D01* X7131Y11300D01* X7146Y11333D01* Y9706D01* G37* G36* Y11666D02*X7131Y11700D01* X7100Y11744D01* X7066Y11711D01* Y13268D01* X7080Y13255D01* X7111Y13300D01* X7140Y13363D01* X7146Y13385D01* Y11666D01* G37* G36* Y40000D02*X8183D01* Y39735D01* X8158Y39700D01* X8129Y39636D01* X8111Y39569D01* X8105Y39500D01* X8111Y39430D01* X8129Y39363D01* X8158Y39300D01* X8183Y39264D01* Y37706D01* X8178Y37700D01* X8149Y37636D01* X8131Y37569D01* X8125Y37500D01* X8131Y37430D01* X8149Y37363D01* X8178Y37300D01* X8183Y37293D01* Y35667D01* X8169Y35636D01* X8151Y35569D01* X8145Y35500D01* X8151Y35430D01* X8169Y35363D01* X8183Y35333D01* Y33614D01* X8171Y33569D01* X8165Y33500D01* X8171Y33430D01* X8183Y33385D01* Y0D01* X7146D01* Y1308D01* X7200Y1255D01* X7231Y1300D01* X7260Y1363D01* X7278Y1430D01* X7285Y1500D01* X7278Y1569D01* X7260Y1636D01* X7231Y1700D01* X7200Y1744D01* X7146Y1691D01* Y3288D01* X7180Y3255D01* X7211Y3300D01* X7240Y3363D01* X7258Y3430D01* X7265Y3500D01* X7258Y3569D01* X7240Y3636D01* X7211Y3700D01* X7180Y3744D01* X7146Y3711D01* Y5268D01* X7160Y5255D01* X7191Y5300D01* X7220Y5363D01* X7238Y5430D01* X7245Y5500D01* X7238Y5569D01* X7220Y5636D01* X7191Y5700D01* X7160Y5744D01* X7146Y5731D01* Y7265D01* X7171Y7300D01* X7200Y7363D01* X7218Y7430D01* X7225Y7500D01* X7218Y7569D01* X7200Y7636D01* X7171Y7700D01* X7146Y7734D01* Y9293D01* X7151Y9300D01* X7180Y9363D01* X7198Y9430D01* X7205Y9500D01* X7198Y9569D01* X7180Y9636D01* X7151Y9700D01* X7146Y9706D01* Y11333D01* X7160Y11363D01* X7178Y11430D01* X7185Y11500D01* X7178Y11569D01* X7160Y11636D01* X7146Y11666D01* Y13385D01* X7158Y13430D01* X7165Y13500D01* X7158Y13569D01* X7146Y13614D01* Y40000D01* G37* G36* X8183D02*X8263D01* Y39817D01* X8260Y39815D01* X8263Y39812D01* Y39187D01* X8260Y39184D01* X8263Y39182D01* Y37691D01* X8209Y37744D01* X8183Y37706D01* Y39264D01* X8189Y39255D01* X8261Y39327D01* X8245Y39350D01* X8223Y39397D01* X8209Y39447D01* X8205Y39500D01* X8209Y39552D01* X8223Y39602D01* X8245Y39650D01* X8261Y39673D01* X8189Y39744D01* X8183Y39735D01* Y40000D01* G37* G36* Y37293D02*X8209Y37255D01* X8263Y37308D01* Y35711D01* X8229Y35744D01* X8198Y35700D01* X8183Y35667D01* Y37293D01* G37* G36* Y35333D02*X8198Y35300D01* X8229Y35255D01* X8263Y35288D01* Y33731D01* X8249Y33744D01* X8218Y33700D01* X8189Y33636D01* X8183Y33614D01* Y35333D01* G37* G36* Y33385D02*X8189Y33363D01* X8218Y33300D01* X8249Y33255D01* X8263Y33268D01* Y31735D01* X8238Y31700D01* X8209Y31636D01* X8191Y31569D01* X8185Y31500D01* X8191Y31430D01* X8209Y31363D01* X8238Y31300D01* X8263Y31264D01* Y29706D01* X8258Y29700D01* X8229Y29636D01* X8211Y29569D01* X8205Y29500D01* X8211Y29430D01* X8229Y29363D01* X8258Y29300D01* X8263Y29293D01* Y27667D01* X8249Y27636D01* X8231Y27569D01* X8225Y27500D01* X8231Y27430D01* X8249Y27363D01* X8263Y27333D01* Y25614D01* X8251Y25569D01* X8245Y25500D01* X8251Y25430D01* X8263Y25385D01* Y0D01* X8183D01* Y33385D01* G37* G36* X8263Y37354D02*X8243Y37397D01* X8229Y37447D01* X8225Y37500D01* X8229Y37552D01* X8243Y37602D01* X8263Y37645D01* Y37354D01* G37* G36* Y35397D02*X8263Y35397D01* X8249Y35447D01* X8245Y35500D01* X8249Y35552D01* X8263Y35602D01* X8263Y35602D01* Y35397D01* G37* G36* Y40000D02*X8383D01* Y39879D01* X8368Y39875D01* X8305Y39846D01* X8263Y39817D01* Y40000D01* G37* G36* Y39812D02*X8332Y39743D01* X8355Y39759D01* X8383Y39772D01* Y39227D01* X8355Y39240D01* X8332Y39256D01* X8263Y39187D01* Y39812D01* G37* G36* Y39182D02*X8305Y39153D01* X8368Y39124D01* X8383Y39120D01* Y37873D01* X8325Y37846D01* X8280Y37815D01* X8352Y37743D01* X8375Y37759D01* X8383Y37763D01* Y37236D01* X8375Y37240D01* X8352Y37256D01* X8280Y37184D01* X8325Y37153D01* X8383Y37126D01* Y35864D01* X8345Y35846D01* X8300Y35815D01* X8372Y35743D01* X8383Y35751D01* Y35248D01* X8372Y35256D01* X8300Y35184D01* X8345Y35153D01* X8383Y35135D01* Y33854D01* X8365Y33846D01* X8320Y33815D01* X8383Y33752D01* Y33247D01* X8320Y33184D01* X8365Y33153D01* X8383Y33145D01* Y31845D01* X8340Y31815D01* X8383Y31772D01* Y31227D01* X8340Y31184D01* X8383Y31154D01* Y29831D01* X8360Y29815D01* X8383Y29792D01* Y29207D01* X8360Y29184D01* X8383Y29168D01* Y27817D01* X8380Y27815D01* X8383Y27812D01* Y27187D01* X8380Y27184D01* X8383Y27182D01* Y25691D01* X8329Y25744D01* X8298Y25700D01* X8269Y25636D01* X8263Y25614D01* Y27333D01* X8278Y27300D01* X8309Y27255D01* X8381Y27327D01* X8365Y27350D01* X8343Y27397D01* X8329Y27447D01* X8325Y27500D01* X8329Y27552D01* X8343Y27602D01* X8365Y27650D01* X8381Y27673D01* X8309Y27744D01* X8278Y27700D01* X8263Y27667D01* Y29293D01* X8289Y29255D01* X8361Y29327D01* X8345Y29350D01* X8323Y29397D01* X8309Y29447D01* X8305Y29500D01* X8309Y29552D01* X8323Y29602D01* X8345Y29650D01* X8361Y29673D01* X8289Y29744D01* X8263Y29706D01* Y31264D01* X8269Y31255D01* X8341Y31327D01* X8325Y31350D01* X8303Y31397D01* X8289Y31447D01* X8285Y31500D01* X8289Y31552D01* X8303Y31602D01* X8325Y31650D01* X8341Y31673D01* X8269Y31744D01* X8263Y31735D01* Y33268D01* X8321Y33327D01* X8305Y33350D01* X8283Y33397D01* X8269Y33447D01* X8265Y33500D01* X8269Y33552D01* X8283Y33602D01* X8305Y33650D01* X8321Y33673D01* X8263Y33731D01* Y35288D01* X8301Y35327D01* X8285Y35350D01* X8263Y35397D01* Y35602D01* X8285Y35650D01* X8301Y35673D01* X8263Y35711D01* Y37308D01* X8281Y37327D01* X8265Y37350D01* X8263Y37354D01* Y37645D01* X8265Y37650D01* X8281Y37673D01* X8263Y37691D01* Y39182D01* G37* G36* Y25385D02*X8269Y25363D01* X8298Y25300D01* X8329Y25255D01* X8383Y25308D01* Y23711D01* X8349Y23744D01* X8318Y23700D01* X8289Y23636D01* X8271Y23569D01* X8265Y23500D01* X8271Y23430D01* X8289Y23363D01* X8318Y23300D01* X8349Y23255D01* X8383Y23288D01* Y21731D01* X8369Y21744D01* X8338Y21700D01* X8309Y21636D01* X8291Y21569D01* X8285Y21500D01* X8291Y21430D01* X8309Y21363D01* X8338Y21300D01* X8369Y21255D01* X8383Y21268D01* Y19735D01* X8358Y19700D01* X8329Y19636D01* X8311Y19569D01* X8305Y19500D01* X8311Y19430D01* X8329Y19363D01* X8358Y19300D01* X8383Y19264D01* Y17706D01* X8378Y17700D01* X8349Y17636D01* X8331Y17569D01* X8325Y17500D01* X8331Y17430D01* X8349Y17363D01* X8378Y17300D01* X8383Y17293D01* Y15667D01* X8369Y15636D01* X8351Y15569D01* X8345Y15500D01* X8351Y15430D01* X8369Y15363D01* X8383Y15333D01* Y13614D01* X8371Y13569D01* X8365Y13500D01* X8371Y13430D01* X8383Y13385D01* Y0D01* X8263D01* Y25385D01* G37* G36* X8383Y25354D02*X8363Y25397D01* X8349Y25447D01* X8345Y25500D01* X8349Y25552D01* X8363Y25602D01* X8383Y25645D01* Y25354D01* G37* G36* Y23397D02*X8383Y23397D01* X8369Y23447D01* X8365Y23500D01* X8369Y23552D01* X8383Y23602D01* X8383Y23602D01* Y23397D01* G37* G36* Y40000D02*X8705D01* Y39846D01* X8641Y39875D01* X8574Y39893D01* X8505Y39900D01* X8435Y39893D01* X8383Y39879D01* Y40000D01* G37* G36* Y39772D02*X8402Y39781D01* X8452Y39795D01* X8505Y39800D01* X8557Y39795D01* X8607Y39781D01* X8655Y39759D01* X8678Y39743D01* X8705Y39770D01* Y39229D01* X8678Y39256D01* X8655Y39240D01* X8607Y39218D01* X8557Y39204D01* X8505Y39200D01* X8452Y39204D01* X8402Y39218D01* X8383Y39227D01* Y39772D01* G37* G36* Y39120D02*X8435Y39106D01* X8505Y39100D01* X8574Y39106D01* X8641Y39124D01* X8705Y39153D01* Y37855D01* X8661Y37875D01* X8594Y37893D01* X8525Y37900D01* X8455Y37893D01* X8388Y37875D01* X8383Y37873D01* Y39120D01* G37* G36* Y37763D02*X8422Y37781D01* X8472Y37795D01* X8525Y37800D01* X8577Y37795D01* X8627Y37781D01* X8675Y37759D01* X8698Y37743D01* X8705Y37750D01* Y37249D01* X8698Y37256D01* X8675Y37240D01* X8627Y37218D01* X8577Y37204D01* X8525Y37200D01* X8472Y37204D01* X8422Y37218D01* X8383Y37236D01* Y37763D01* G37* G36* Y37126D02*X8388Y37124D01* X8455Y37106D01* X8525Y37100D01* X8594Y37106D01* X8661Y37124D01* X8705Y37144D01* Y35865D01* X8681Y35875D01* X8614Y35893D01* X8545Y35900D01* X8475Y35893D01* X8408Y35875D01* X8383Y35864D01* Y37126D01* G37* G36* Y35751D02*X8395Y35759D01* X8442Y35781D01* X8492Y35795D01* X8545Y35800D01* X8597Y35795D01* X8647Y35781D01* X8695Y35759D01* X8705Y35752D01* Y35247D01* X8695Y35240D01* X8647Y35218D01* X8597Y35204D01* X8545Y35200D01* X8492Y35204D01* X8442Y35218D01* X8395Y35240D01* X8383Y35248D01* Y35751D01* G37* G36* Y35135D02*X8408Y35124D01* X8475Y35106D01* X8545Y35100D01* X8614Y35106D01* X8681Y35124D01* X8705Y35134D01* Y33874D01* X8701Y33875D01* X8634Y33893D01* X8565Y33900D01* X8495Y33893D01* X8428Y33875D01* X8383Y33854D01* Y35135D01* G37* G36* Y33752D02*X8392Y33743D01* X8415Y33759D01* X8462Y33781D01* X8512Y33795D01* X8565Y33800D01* X8617Y33795D01* X8667Y33781D01* X8705Y33764D01* Y33235D01* X8667Y33218D01* X8617Y33204D01* X8565Y33200D01* X8512Y33204D01* X8462Y33218D01* X8415Y33240D01* X8392Y33256D01* X8383Y33247D01* Y33752D01* G37* G36* Y33145D02*X8428Y33124D01* X8495Y33106D01* X8565Y33100D01* X8634Y33106D01* X8701Y33124D01* X8705Y33125D01* Y31880D01* X8654Y31893D01* X8585Y31900D01* X8515Y31893D01* X8448Y31875D01* X8385Y31846D01* X8383Y31845D01* Y33145D01* G37* G36* Y31772D02*X8412Y31743D01* X8435Y31759D01* X8482Y31781D01* X8532Y31795D01* X8585Y31800D01* X8637Y31795D01* X8687Y31781D01* X8705Y31773D01* Y31226D01* X8687Y31218D01* X8637Y31204D01* X8585Y31200D01* X8532Y31204D01* X8482Y31218D01* X8435Y31240D01* X8412Y31256D01* X8383Y31227D01* Y31772D01* G37* G36* Y31154D02*X8385Y31153D01* X8448Y31124D01* X8515Y31106D01* X8585Y31100D01* X8654Y31106D01* X8705Y31119D01* Y29885D01* X8674Y29893D01* X8605Y29900D01* X8535Y29893D01* X8468Y29875D01* X8405Y29846D01* X8383Y29831D01* Y31154D01* G37* G36* Y29792D02*X8432Y29743D01* X8455Y29759D01* X8502Y29781D01* X8552Y29795D01* X8605Y29800D01* X8657Y29795D01* X8705Y29782D01* Y29217D01* X8657Y29204D01* X8605Y29200D01* X8552Y29204D01* X8502Y29218D01* X8455Y29240D01* X8432Y29256D01* X8383Y29207D01* Y29792D01* G37* G36* Y29168D02*X8405Y29153D01* X8468Y29124D01* X8535Y29106D01* X8605Y29100D01* X8674Y29106D01* X8705Y29114D01* Y27891D01* X8694Y27893D01* X8625Y27900D01* X8555Y27893D01* X8488Y27875D01* X8425Y27846D01* X8383Y27817D01* Y29168D01* G37* G36* Y27812D02*X8452Y27743D01* X8475Y27759D01* X8522Y27781D01* X8572Y27795D01* X8625Y27800D01* X8677Y27795D01* X8705Y27787D01* Y27212D01* X8677Y27204D01* X8625Y27200D01* X8572Y27204D01* X8522Y27218D01* X8475Y27240D01* X8452Y27256D01* X8383Y27187D01* Y27812D01* G37* G36* Y27182D02*X8425Y27153D01* X8463Y27135D01* Y25854D01* X8445Y25846D01* X8400Y25815D01* X8463Y25752D01* Y25247D01* X8400Y25184D01* X8445Y25153D01* X8463Y25145D01* Y23845D01* X8420Y23815D01* X8463Y23772D01* Y23227D01* X8420Y23184D01* X8463Y23154D01* Y21831D01* X8440Y21815D01* X8463Y21792D01* Y21207D01* X8440Y21184D01* X8463Y21168D01* Y19817D01* X8460Y19815D01* X8463Y19812D01* Y19187D01* X8460Y19184D01* X8463Y19182D01* Y17691D01* X8409Y17744D01* X8383Y17706D01* Y19264D01* X8389Y19255D01* X8461Y19327D01* X8445Y19350D01* X8423Y19397D01* X8409Y19447D01* X8405Y19500D01* X8409Y19552D01* X8423Y19602D01* X8445Y19650D01* X8461Y19673D01* X8389Y19744D01* X8383Y19735D01* Y21268D01* X8441Y21327D01* X8425Y21350D01* X8403Y21397D01* X8389Y21447D01* X8385Y21500D01* X8389Y21552D01* X8403Y21602D01* X8425Y21650D01* X8441Y21673D01* X8383Y21731D01* Y23288D01* X8421Y23327D01* X8405Y23350D01* X8383Y23397D01* Y23602D01* X8405Y23650D01* X8421Y23673D01* X8383Y23711D01* Y25308D01* X8401Y25327D01* X8385Y25350D01* X8383Y25354D01* Y25645D01* X8385Y25650D01* X8401Y25673D01* X8383Y25691D01* Y27182D01* G37* G36* X8463Y0D02*X8383D01* Y13385D01* X8389Y13363D01* X8418Y13300D01* X8449Y13255D01* X8463Y13268D01* Y11735D01* X8438Y11700D01* X8409Y11636D01* X8391Y11569D01* X8385Y11500D01* X8391Y11430D01* X8409Y11363D01* X8438Y11300D01* X8463Y11264D01* Y9706D01* X8458Y9700D01* X8429Y9636D01* X8411Y9569D01* X8405Y9500D01* X8411Y9430D01* X8429Y9363D01* X8458Y9300D01* X8463Y9293D01* Y7667D01* X8449Y7636D01* X8431Y7569D01* X8425Y7500D01* X8431Y7430D01* X8449Y7363D01* X8463Y7333D01* Y5614D01* X8451Y5569D01* X8445Y5500D01* X8451Y5430D01* X8463Y5385D01* Y0D01* G37* G36* Y13731D02*X8449Y13744D01* X8418Y13700D01* X8389Y13636D01* X8383Y13614D01* Y15333D01* X8398Y15300D01* X8429Y15255D01* X8463Y15288D01* Y13731D01* G37* G36* Y15397D02*X8463Y15397D01* X8449Y15447D01* X8445Y15500D01* X8449Y15552D01* X8463Y15602D01* X8463Y15602D01* Y15397D01* G37* G36* Y15711D02*X8429Y15744D01* X8398Y15700D01* X8383Y15667D01* Y17293D01* X8409Y17255D01* X8463Y17308D01* Y15711D01* G37* G36* Y17354D02*X8443Y17397D01* X8429Y17447D01* X8425Y17500D01* X8429Y17552D01* X8443Y17602D01* X8463Y17645D01* Y17354D01* G37* G36* Y27135D02*X8488Y27124D01* X8555Y27106D01* X8625Y27100D01* X8694Y27106D01* X8705Y27108D01* Y25894D01* X8645Y25900D01* X8575Y25893D01* X8508Y25875D01* X8463Y25854D01* Y27135D01* G37* G36* Y25752D02*X8472Y25743D01* X8495Y25759D01* X8542Y25781D01* X8592Y25795D01* X8645Y25800D01* X8697Y25795D01* X8705Y25793D01* Y25206D01* X8697Y25204D01* X8645Y25200D01* X8592Y25204D01* X8542Y25218D01* X8495Y25240D01* X8472Y25256D01* X8463Y25247D01* Y25752D01* G37* G36* Y25145D02*X8508Y25124D01* X8575Y25106D01* X8645Y25100D01* X8705Y25105D01* Y23896D01* X8665Y23900D01* X8595Y23893D01* X8528Y23875D01* X8465Y23846D01* X8463Y23845D01* Y25145D01* G37* G36* Y23772D02*X8492Y23743D01* X8515Y23759D01* X8562Y23781D01* X8612Y23795D01* X8665Y23800D01* X8705Y23796D01* Y23203D01* X8665Y23200D01* X8612Y23204D01* X8562Y23218D01* X8515Y23240D01* X8492Y23256D01* X8463Y23227D01* Y23772D01* G37* G36* Y23154D02*X8465Y23153D01* X8528Y23124D01* X8595Y23106D01* X8665Y23100D01* X8705Y23103D01* Y21898D01* X8685Y21900D01* X8615Y21893D01* X8548Y21875D01* X8485Y21846D01* X8463Y21831D01* Y23154D01* G37* G36* Y21792D02*X8512Y21743D01* X8535Y21759D01* X8582Y21781D01* X8632Y21795D01* X8685Y21800D01* X8705Y21798D01* Y21201D01* X8685Y21200D01* X8632Y21204D01* X8582Y21218D01* X8535Y21240D01* X8512Y21256D01* X8463Y21207D01* Y21792D01* G37* G36* Y21168D02*X8485Y21153D01* X8548Y21124D01* X8615Y21106D01* X8685Y21100D01* X8705Y21101D01* Y19900D01* X8635Y19893D01* X8568Y19875D01* X8505Y19846D01* X8463Y19817D01* Y21168D01* G37* G36* Y19812D02*X8532Y19743D01* X8555Y19759D01* X8602Y19781D01* X8652Y19795D01* X8705Y19800D01* Y19200D01* X8652Y19204D01* X8602Y19218D01* X8555Y19240D01* X8532Y19256D01* X8463Y19187D01* Y19812D01* G37* G36* Y19182D02*X8505Y19153D01* X8543Y19135D01* Y17854D01* X8525Y17846D01* X8480Y17815D01* X8543Y17752D01* Y17247D01* X8480Y17184D01* X8525Y17153D01* X8543Y17145D01* Y15845D01* X8500Y15815D01* X8543Y15772D01* Y15227D01* X8500Y15184D01* X8543Y15154D01* Y13831D01* X8520Y13815D01* X8543Y13792D01* Y13207D01* X8520Y13184D01* X8543Y13168D01* Y11817D01* X8540Y11815D01* X8543Y11812D01* Y11187D01* X8540Y11184D01* X8543Y11182D01* Y9691D01* X8489Y9744D01* X8463Y9706D01* Y11264D01* X8469Y11255D01* X8541Y11327D01* X8525Y11350D01* X8503Y11397D01* X8489Y11447D01* X8485Y11500D01* X8489Y11552D01* X8503Y11602D01* X8525Y11650D01* X8541Y11673D01* X8469Y11744D01* X8463Y11735D01* Y13268D01* X8521Y13327D01* X8505Y13350D01* X8483Y13397D01* X8469Y13447D01* X8465Y13500D01* X8469Y13552D01* X8483Y13602D01* X8505Y13650D01* X8521Y13673D01* X8463Y13731D01* Y15288D01* X8501Y15327D01* X8485Y15350D01* X8463Y15397D01* Y15602D01* X8485Y15650D01* X8501Y15673D01* X8463Y15711D01* Y17308D01* X8481Y17327D01* X8465Y17350D01* X8463Y17354D01* Y17645D01* X8465Y17650D01* X8481Y17673D01* X8463Y17691D01* Y19182D01* G37* G36* X8543Y0D02*X8463D01* Y5385D01* X8469Y5363D01* X8498Y5300D01* X8529Y5255D01* X8543Y5268D01* Y3735D01* X8518Y3700D01* X8489Y3636D01* X8471Y3569D01* X8465Y3500D01* X8471Y3430D01* X8489Y3363D01* X8518Y3300D01* X8543Y3264D01* Y1706D01* X8538Y1700D01* X8509Y1636D01* X8491Y1569D01* X8485Y1500D01* X8491Y1430D01* X8509Y1363D01* X8538Y1300D01* X8543Y1293D01* Y0D01* G37* G36* Y5731D02*X8529Y5744D01* X8498Y5700D01* X8469Y5636D01* X8463Y5614D01* Y7333D01* X8478Y7300D01* X8509Y7255D01* X8543Y7288D01* Y5731D01* G37* G36* Y7397D02*X8543Y7397D01* X8529Y7447D01* X8525Y7500D01* X8529Y7552D01* X8543Y7602D01* X8543Y7602D01* Y7397D01* G37* G36* Y7711D02*X8509Y7744D01* X8478Y7700D01* X8463Y7667D01* Y9293D01* X8489Y9255D01* X8543Y9308D01* Y7711D01* G37* G36* Y9354D02*X8523Y9397D01* X8509Y9447D01* X8505Y9500D01* X8509Y9552D01* X8523Y9602D01* X8543Y9645D01* Y9354D01* G37* G36* Y19135D02*X8568Y19124D01* X8635Y19106D01* X8705Y19100D01* Y17898D01* X8655Y17893D01* X8588Y17875D01* X8543Y17854D01* Y19135D01* G37* G36* Y17752D02*X8552Y17743D01* X8575Y17759D01* X8622Y17781D01* X8672Y17795D01* X8705Y17798D01* Y17201D01* X8672Y17204D01* X8622Y17218D01* X8575Y17240D01* X8552Y17256D01* X8543Y17247D01* Y17752D01* G37* G36* Y17145D02*X8588Y17124D01* X8655Y17106D01* X8705Y17101D01* Y15896D01* X8675Y15893D01* X8608Y15875D01* X8545Y15846D01* X8543Y15845D01* Y17145D01* G37* G36* Y15772D02*X8572Y15743D01* X8595Y15759D01* X8642Y15781D01* X8692Y15795D01* X8705Y15796D01* Y15203D01* X8692Y15204D01* X8642Y15218D01* X8595Y15240D01* X8572Y15256D01* X8543Y15227D01* Y15772D01* G37* G36* Y15154D02*X8545Y15153D01* X8608Y15124D01* X8675Y15106D01* X8705Y15103D01* Y13894D01* X8695Y13893D01* X8628Y13875D01* X8565Y13846D01* X8543Y13831D01* Y15154D01* G37* G36* Y13792D02*X8592Y13743D01* X8615Y13759D01* X8662Y13781D01* X8705Y13793D01* Y13206D01* X8662Y13218D01* X8615Y13240D01* X8592Y13256D01* X8543Y13207D01* Y13792D01* G37* G36* Y13168D02*X8565Y13153D01* X8628Y13124D01* X8695Y13106D01* X8705Y13105D01* Y11891D01* X8648Y11875D01* X8585Y11846D01* X8543Y11817D01* Y13168D01* G37* G36* Y11812D02*X8612Y11743D01* X8635Y11759D01* X8682Y11781D01* X8705Y11787D01* Y11212D01* X8682Y11218D01* X8635Y11240D01* X8612Y11256D01* X8543Y11187D01* Y11812D01* G37* G36* Y11182D02*X8585Y11153D01* X8648Y11124D01* X8705Y11108D01* Y9885D01* X8668Y9875D01* X8605Y9846D01* X8560Y9815D01* X8632Y9743D01* X8655Y9759D01* X8702Y9781D01* X8705Y9782D01* Y9217D01* X8702Y9218D01* X8655Y9240D01* X8632Y9256D01* X8560Y9184D01* X8605Y9153D01* X8668Y9124D01* X8705Y9114D01* Y7880D01* X8688Y7875D01* X8625Y7846D01* X8580Y7815D01* X8652Y7743D01* X8675Y7759D01* X8705Y7773D01* Y7226D01* X8675Y7240D01* X8652Y7256D01* X8580Y7184D01* X8625Y7153D01* X8688Y7124D01* X8705Y7119D01* Y5874D01* X8645Y5846D01* X8600Y5815D01* X8672Y5743D01* X8695Y5759D01* X8705Y5764D01* Y5235D01* X8695Y5240D01* X8672Y5256D01* X8600Y5184D01* X8645Y5153D01* X8705Y5125D01* Y3865D01* X8665Y3846D01* X8620Y3815D01* X8692Y3743D01* X8705Y3752D01* Y3247D01* X8692Y3256D01* X8620Y3184D01* X8665Y3153D01* X8705Y3134D01* Y1855D01* X8685Y1846D01* X8640Y1815D01* X8705Y1750D01* Y1249D01* X8640Y1184D01* X8685Y1153D01* X8705Y1144D01* Y0D01* X8543D01* Y1293D01* X8569Y1255D01* X8641Y1327D01* X8625Y1350D01* X8603Y1397D01* X8589Y1447D01* X8585Y1500D01* X8589Y1552D01* X8603Y1602D01* X8625Y1650D01* X8641Y1673D01* X8569Y1744D01* X8543Y1706D01* Y3264D01* X8549Y3255D01* X8621Y3327D01* X8605Y3350D01* X8583Y3397D01* X8569Y3447D01* X8565Y3500D01* X8569Y3552D01* X8583Y3602D01* X8605Y3650D01* X8621Y3673D01* X8549Y3744D01* X8543Y3735D01* Y5268D01* X8601Y5327D01* X8585Y5350D01* X8563Y5397D01* X8549Y5447D01* X8545Y5500D01* X8549Y5552D01* X8563Y5602D01* X8585Y5650D01* X8601Y5673D01* X8543Y5731D01* Y7288D01* X8581Y7327D01* X8565Y7350D01* X8543Y7397D01* Y7602D01* X8565Y7650D01* X8581Y7673D01* X8543Y7711D01* Y9308D01* X8561Y9327D01* X8545Y9350D01* X8543Y9354D01* Y9645D01* X8545Y9650D01* X8561Y9673D01* X8543Y9691D01* Y11182D01* G37* G36* X8705Y40000D02*X8826D01* Y39734D01* X8820Y39744D01* X8748Y39673D01* X8764Y39650D01* X8786Y39602D01* X8800Y39552D01* X8805Y39500D01* X8800Y39447D01* X8786Y39397D01* X8764Y39350D01* X8748Y39327D01* X8820Y39255D01* X8826Y39265D01* Y37731D01* X8768Y37673D01* X8784Y37650D01* X8806Y37602D01* X8820Y37552D01* X8825Y37500D01* X8820Y37447D01* X8806Y37397D01* X8784Y37350D01* X8768Y37327D01* X8826Y37268D01* Y35711D01* X8788Y35673D01* X8804Y35650D01* X8826Y35602D01* Y35397D01* X8804Y35350D01* X8788Y35327D01* X8826Y35288D01* Y33691D01* X8808Y33673D01* X8824Y33650D01* X8826Y33645D01* Y33354D01* X8824Y33350D01* X8808Y33327D01* X8826Y33308D01* Y31817D01* X8785Y31846D01* X8721Y31875D01* X8705Y31880D01* Y33125D01* X8765Y33153D01* X8809Y33184D01* X8738Y33256D01* X8715Y33240D01* X8705Y33235D01* Y33764D01* X8715Y33759D01* X8738Y33743D01* X8809Y33815D01* X8765Y33846D01* X8705Y33874D01* Y35134D01* X8745Y35153D01* X8789Y35184D01* X8718Y35256D01* X8705Y35247D01* Y35752D01* X8718Y35743D01* X8789Y35815D01* X8745Y35846D01* X8705Y35865D01* Y37144D01* X8725Y37153D01* X8769Y37184D01* X8705Y37249D01* Y37750D01* X8769Y37815D01* X8725Y37846D01* X8705Y37855D01* Y39153D01* X8749Y39184D01* X8705Y39229D01* Y39770D01* X8749Y39815D01* X8705Y39846D01* Y40000D01* G37* G36* X8826Y23864D02*X8801Y23875D01* X8734Y23893D01* X8705Y23896D01* Y25105D01* X8714Y25106D01* X8781Y25124D01* X8826Y25145D01* Y23864D01* G37* G36* Y25247D02*X8818Y25256D01* X8795Y25240D01* X8747Y25218D01* X8705Y25206D01* Y25793D01* X8747Y25781D01* X8795Y25759D01* X8818Y25743D01* X8826Y25752D01* Y25247D01* G37* G36* Y25854D02*X8781Y25875D01* X8714Y25893D01* X8705Y25894D01* Y27108D01* X8761Y27124D01* X8825Y27153D01* X8826Y27154D01* Y25854D01* G37* G36* Y27227D02*X8798Y27256D01* X8775Y27240D01* X8727Y27218D01* X8705Y27212D01* Y27787D01* X8727Y27781D01* X8775Y27759D01* X8798Y27743D01* X8826Y27772D01* Y27227D01* G37* G36* Y27845D02*X8825Y27846D01* X8761Y27875D01* X8705Y27891D01* Y29114D01* X8741Y29124D01* X8805Y29153D01* X8826Y29169D01* Y27845D01* G37* G36* Y29207D02*X8778Y29256D01* X8755Y29240D01* X8707Y29218D01* X8705Y29217D01* Y29782D01* X8707Y29781D01* X8755Y29759D01* X8778Y29743D01* X8826Y29792D01* Y29207D01* G37* G36* Y29831D02*X8805Y29846D01* X8741Y29875D01* X8705Y29885D01* Y31119D01* X8721Y31124D01* X8785Y31153D01* X8826Y31183D01* Y29831D01* G37* G36* Y31187D02*X8758Y31256D01* X8735Y31240D01* X8705Y31226D01* Y31773D01* X8735Y31759D01* X8758Y31743D01* X8826Y31812D01* Y31187D01* G37* G36* Y40000D02*X8906D01* Y37614D01* X8900Y37636D01* X8871Y37700D01* X8840Y37744D01* X8826Y37731D01* Y39265D01* X8851Y39300D01* X8880Y39363D01* X8898Y39430D01* X8905Y39500D01* X8898Y39569D01* X8880Y39636D01* X8851Y39700D01* X8826Y39734D01* Y40000D01* G37* G36* Y37268D02*X8840Y37255D01* X8871Y37300D01* X8900Y37363D01* X8906Y37385D01* Y35666D01* X8891Y35700D01* X8860Y35744D01* X8826Y35711D01* Y37268D01* G37* G36* Y35602D02*X8840Y35552D01* X8845Y35500D01* X8840Y35447D01* X8826Y35397D01* Y35602D01* G37* G36* Y35288D02*X8860Y35255D01* X8891Y35300D01* X8906Y35333D01* Y33706D01* X8880Y33744D01* X8826Y33691D01* Y35288D01* G37* G36* Y33645D02*X8846Y33602D01* X8860Y33552D01* X8865Y33500D01* X8860Y33447D01* X8846Y33397D01* X8826Y33354D01* Y33645D01* G37* G36* Y33308D02*X8880Y33255D01* X8906Y33293D01* Y31734D01* X8900Y31744D01* X8828Y31673D01* X8844Y31650D01* X8866Y31602D01* X8880Y31552D01* X8885Y31500D01* X8880Y31447D01* X8866Y31397D01* X8844Y31350D01* X8828Y31327D01* X8900Y31255D01* X8906Y31265D01* Y29731D01* X8848Y29673D01* X8864Y29650D01* X8886Y29602D01* X8900Y29552D01* X8905Y29500D01* X8900Y29447D01* X8886Y29397D01* X8864Y29350D01* X8848Y29327D01* X8906Y29268D01* Y27711D01* X8868Y27673D01* X8884Y27650D01* X8906Y27602D01* Y27397D01* X8884Y27350D01* X8868Y27327D01* X8906Y27288D01* Y25691D01* X8888Y25673D01* X8904Y25650D01* X8906Y25645D01* Y25354D01* X8904Y25350D01* X8888Y25327D01* X8906Y25308D01* Y23817D01* X8865Y23846D01* X8826Y23864D01* Y25145D01* X8845Y25153D01* X8889Y25184D01* X8826Y25247D01* Y25752D01* X8889Y25815D01* X8845Y25846D01* X8826Y25854D01* Y27154D01* X8869Y27184D01* X8826Y27227D01* Y27772D01* X8869Y27815D01* X8826Y27845D01* Y29169D01* X8849Y29184D01* X8826Y29207D01* Y29792D01* X8849Y29815D01* X8826Y29831D01* Y31183D01* X8829Y31184D01* X8826Y31187D01* Y31812D01* X8829Y31815D01* X8826Y31817D01* Y33308D01* G37* G36* X8906Y11879D02*X8854Y11893D01* X8785Y11900D01* X8715Y11893D01* X8705Y11891D01* Y13105D01* X8765Y13100D01* X8834Y13106D01* X8901Y13124D01* X8906Y13126D01* Y11879D01* G37* G36* Y13236D02*X8867Y13218D01* X8817Y13204D01* X8765Y13200D01* X8712Y13204D01* X8705Y13206D01* Y13793D01* X8712Y13795D01* X8765Y13800D01* X8817Y13795D01* X8867Y13781D01* X8906Y13763D01* Y13236D01* G37* G36* Y13873D02*X8901Y13875D01* X8834Y13893D01* X8765Y13900D01* X8705Y13894D01* Y15103D01* X8745Y15100D01* X8814Y15106D01* X8881Y15124D01* X8906Y15135D01* Y13873D01* G37* G36* Y15248D02*X8895Y15240D01* X8847Y15218D01* X8797Y15204D01* X8745Y15200D01* X8705Y15203D01* Y15796D01* X8745Y15800D01* X8797Y15795D01* X8847Y15781D01* X8895Y15759D01* X8906Y15751D01* Y15248D01* G37* G36* Y15864D02*X8881Y15875D01* X8814Y15893D01* X8745Y15900D01* X8705Y15896D01* Y17101D01* X8725Y17100D01* X8794Y17106D01* X8861Y17124D01* X8906Y17145D01* Y15864D01* G37* G36* Y17247D02*X8898Y17256D01* X8875Y17240D01* X8827Y17218D01* X8777Y17204D01* X8725Y17200D01* X8705Y17201D01* Y17798D01* X8725Y17800D01* X8777Y17795D01* X8827Y17781D01* X8875Y17759D01* X8898Y17743D01* X8906Y17752D01* Y17247D01* G37* G36* Y17854D02*X8861Y17875D01* X8794Y17893D01* X8725Y17900D01* X8705Y17898D01* Y19100D01* X8774Y19106D01* X8841Y19124D01* X8905Y19153D01* X8906Y19154D01* Y17854D01* G37* G36* Y19227D02*X8878Y19256D01* X8855Y19240D01* X8807Y19218D01* X8757Y19204D01* X8705Y19200D01* Y19800D01* X8757Y19795D01* X8807Y19781D01* X8855Y19759D01* X8878Y19743D01* X8906Y19772D01* Y19227D01* G37* G36* Y19845D02*X8905Y19846D01* X8841Y19875D01* X8774Y19893D01* X8705Y19900D01* Y21101D01* X8754Y21106D01* X8821Y21124D01* X8885Y21153D01* X8906Y21169D01* Y19845D01* G37* G36* Y21207D02*X8858Y21256D01* X8835Y21240D01* X8787Y21218D01* X8737Y21204D01* X8705Y21201D01* Y21798D01* X8737Y21795D01* X8787Y21781D01* X8835Y21759D01* X8858Y21743D01* X8906Y21792D01* Y21207D01* G37* G36* Y21831D02*X8885Y21846D01* X8821Y21875D01* X8754Y21893D01* X8705Y21898D01* Y23103D01* X8734Y23106D01* X8801Y23124D01* X8865Y23153D01* X8906Y23183D01* Y21831D01* G37* G36* Y23187D02*X8838Y23256D01* X8815Y23240D01* X8767Y23218D01* X8717Y23204D01* X8705Y23203D01* Y23796D01* X8717Y23795D01* X8767Y23781D01* X8815Y23759D01* X8838Y23743D01* X8906Y23812D01* Y23187D01* G37* G36* Y40000D02*X9026D01* Y25614D01* X9020Y25636D01* X8991Y25700D01* X8960Y25744D01* X8906Y25691D01* Y27288D01* X8940Y27255D01* X8971Y27300D01* X9000Y27363D01* X9018Y27430D01* X9025Y27500D01* X9018Y27569D01* X9000Y27636D01* X8971Y27700D01* X8940Y27744D01* X8906Y27711D01* Y29268D01* X8920Y29255D01* X8951Y29300D01* X8980Y29363D01* X8998Y29430D01* X9005Y29500D01* X8998Y29569D01* X8980Y29636D01* X8951Y29700D01* X8920Y29744D01* X8906Y29731D01* Y31265D01* X8931Y31300D01* X8960Y31363D01* X8978Y31430D01* X8985Y31500D01* X8978Y31569D01* X8960Y31636D01* X8931Y31700D01* X8906Y31734D01* Y33293D01* X8911Y33300D01* X8940Y33363D01* X8958Y33430D01* X8965Y33500D01* X8958Y33569D01* X8940Y33636D01* X8911Y33700D01* X8906Y33706D01* Y35333D01* X8920Y35363D01* X8938Y35430D01* X8945Y35500D01* X8938Y35569D01* X8920Y35636D01* X8906Y35666D01* Y37385D01* X8918Y37430D01* X8925Y37500D01* X8918Y37569D01* X8906Y37614D01* Y40000D01* G37* G36* Y25645D02*X8926Y25602D01* X8940Y25552D01* X8945Y25500D01* X8940Y25447D01* X8926Y25397D01* X8906Y25354D01* Y25645D01* G37* G36* Y25308D02*X8960Y25255D01* X8991Y25300D01* X9020Y25363D01* X9026Y25385D01* Y23666D01* X9011Y23700D01* X8980Y23744D01* X8908Y23673D01* X8924Y23650D01* X8946Y23602D01* X8960Y23552D01* X8965Y23500D01* X8960Y23447D01* X8946Y23397D01* X8924Y23350D01* X8908Y23327D01* X8980Y23255D01* X9011Y23300D01* X9026Y23333D01* Y21706D01* X9000Y21744D01* X8928Y21673D01* X8944Y21650D01* X8966Y21602D01* X8980Y21552D01* X8985Y21500D01* X8980Y21447D01* X8966Y21397D01* X8944Y21350D01* X8928Y21327D01* X9000Y21255D01* X9026Y21293D01* Y19734D01* X9020Y19744D01* X8948Y19673D01* X8964Y19650D01* X8986Y19602D01* X9000Y19552D01* X9005Y19500D01* X9000Y19447D01* X8986Y19397D01* X8964Y19350D01* X8948Y19327D01* X9020Y19255D01* X9026Y19265D01* Y17731D01* X8968Y17673D01* X8984Y17650D01* X9006Y17602D01* X9020Y17552D01* X9025Y17500D01* X9020Y17447D01* X9006Y17397D01* X8984Y17350D01* X8968Y17327D01* X9026Y17268D01* Y15711D01* X8988Y15673D01* X9004Y15650D01* X9026Y15602D01* Y15397D01* X9004Y15350D01* X8988Y15327D01* X9026Y15288D01* Y13691D01* X9008Y13673D01* X9024Y13650D01* X9026Y13645D01* Y13354D01* X9024Y13350D01* X9008Y13327D01* X9026Y13308D01* Y11817D01* X8985Y11846D01* X8921Y11875D01* X8906Y11879D01* Y13126D01* X8965Y13153D01* X9009Y13184D01* X8938Y13256D01* X8915Y13240D01* X8906Y13236D01* Y13763D01* X8915Y13759D01* X8938Y13743D01* X9009Y13815D01* X8965Y13846D01* X8906Y13873D01* Y15135D01* X8945Y15153D01* X8989Y15184D01* X8918Y15256D01* X8906Y15248D01* Y15751D01* X8918Y15743D01* X8989Y15815D01* X8945Y15846D01* X8906Y15864D01* Y17145D01* X8925Y17153D01* X8969Y17184D01* X8906Y17247D01* Y17752D01* X8969Y17815D01* X8925Y17846D01* X8906Y17854D01* Y19154D01* X8949Y19184D01* X8906Y19227D01* Y19772D01* X8949Y19815D01* X8906Y19845D01* Y21169D01* X8929Y21184D01* X8906Y21207D01* Y21792D01* X8929Y21815D01* X8906Y21831D01* Y23183D01* X8909Y23184D01* X8906Y23187D01* Y23812D01* X8909Y23815D01* X8906Y23817D01* Y25308D01* G37* G36* Y27602D02*X8920Y27552D01* X8925Y27500D01* X8920Y27447D01* X8906Y27397D01* Y27602D01* G37* G36* X8705Y11787D02*X8732Y11795D01* X8785Y11800D01* X8837Y11795D01* X8887Y11781D01* X8935Y11759D01* X8958Y11743D01* X9026Y11812D01* Y11187D01* X8958Y11256D01* X8935Y11240D01* X8887Y11218D01* X8837Y11204D01* X8785Y11200D01* X8732Y11204D01* X8705Y11212D01* Y11787D01* G37* G36* Y11108D02*X8715Y11106D01* X8785Y11100D01* X8854Y11106D01* X8921Y11124D01* X8985Y11153D01* X9026Y11183D01* Y9831D01* X9005Y9846D01* X8941Y9875D01* X8874Y9893D01* X8805Y9900D01* X8735Y9893D01* X8705Y9885D01* Y11108D01* G37* G36* Y9782D02*X8752Y9795D01* X8805Y9800D01* X8857Y9795D01* X8907Y9781D01* X8955Y9759D01* X8978Y9743D01* X9026Y9792D01* Y9207D01* X8978Y9256D01* X8955Y9240D01* X8907Y9218D01* X8857Y9204D01* X8805Y9200D01* X8752Y9204D01* X8705Y9217D01* Y9782D01* G37* G36* Y9114D02*X8735Y9106D01* X8805Y9100D01* X8874Y9106D01* X8941Y9124D01* X9005Y9153D01* X9026Y9169D01* Y7845D01* X9025Y7846D01* X8961Y7875D01* X8894Y7893D01* X8825Y7900D01* X8755Y7893D01* X8705Y7880D01* Y9114D01* G37* G36* Y7773D02*X8722Y7781D01* X8772Y7795D01* X8825Y7800D01* X8877Y7795D01* X8927Y7781D01* X8975Y7759D01* X8998Y7743D01* X9026Y7772D01* Y7227D01* X8998Y7256D01* X8975Y7240D01* X8927Y7218D01* X8877Y7204D01* X8825Y7200D01* X8772Y7204D01* X8722Y7218D01* X8705Y7226D01* Y7773D01* G37* G36* Y7119D02*X8755Y7106D01* X8825Y7100D01* X8894Y7106D01* X8961Y7124D01* X9025Y7153D01* X9026Y7154D01* Y5854D01* X8981Y5875D01* X8914Y5893D01* X8845Y5900D01* X8775Y5893D01* X8708Y5875D01* X8705Y5874D01* Y7119D01* G37* G36* Y5764D02*X8742Y5781D01* X8792Y5795D01* X8845Y5800D01* X8897Y5795D01* X8947Y5781D01* X8995Y5759D01* X9018Y5743D01* X9026Y5752D01* Y5247D01* X9018Y5256D01* X8995Y5240D01* X8947Y5218D01* X8897Y5204D01* X8845Y5200D01* X8792Y5204D01* X8742Y5218D01* X8705Y5235D01* Y5764D01* G37* G36* Y5125D02*X8708Y5124D01* X8775Y5106D01* X8845Y5100D01* X8914Y5106D01* X8981Y5124D01* X9026Y5145D01* Y3864D01* X9001Y3875D01* X8934Y3893D01* X8865Y3900D01* X8795Y3893D01* X8728Y3875D01* X8705Y3865D01* Y5125D01* G37* G36* Y3752D02*X8715Y3759D01* X8762Y3781D01* X8812Y3795D01* X8865Y3800D01* X8917Y3795D01* X8967Y3781D01* X9015Y3759D01* X9026Y3751D01* Y3248D01* X9015Y3240D01* X8967Y3218D01* X8917Y3204D01* X8865Y3200D01* X8812Y3204D01* X8762Y3218D01* X8715Y3240D01* X8705Y3247D01* Y3752D01* G37* G36* Y3134D02*X8728Y3124D01* X8795Y3106D01* X8865Y3100D01* X8934Y3106D01* X9001Y3124D01* X9026Y3135D01* Y1873D01* X9021Y1875D01* X8954Y1893D01* X8885Y1900D01* X8815Y1893D01* X8748Y1875D01* X8705Y1855D01* Y3134D01* G37* G36* Y1750D02*X8712Y1743D01* X8735Y1759D01* X8782Y1781D01* X8832Y1795D01* X8885Y1800D01* X8937Y1795D01* X8987Y1781D01* X9026Y1763D01* Y1236D01* X8987Y1218D01* X8937Y1204D01* X8885Y1200D01* X8832Y1204D01* X8782Y1218D01* X8735Y1240D01* X8712Y1256D01* X8705Y1249D01* Y1750D01* G37* G36* Y1144D02*X8748Y1124D01* X8815Y1106D01* X8885Y1100D01* X8954Y1106D01* X9021Y1124D01* X9026Y1126D01* Y0D01* X8705D01* Y1144D01* G37* G36* X9026Y40000D02*X9106D01* Y17614D01* X9100Y17636D01* X9071Y17700D01* X9040Y17744D01* X9026Y17731D01* Y19265D01* X9051Y19300D01* X9080Y19363D01* X9098Y19430D01* X9105Y19500D01* X9098Y19569D01* X9080Y19636D01* X9051Y19700D01* X9026Y19734D01* Y21293D01* X9031Y21300D01* X9060Y21363D01* X9078Y21430D01* X9085Y21500D01* X9078Y21569D01* X9060Y21636D01* X9031Y21700D01* X9026Y21706D01* Y23333D01* X9040Y23363D01* X9058Y23430D01* X9065Y23500D01* X9058Y23569D01* X9040Y23636D01* X9026Y23666D01* Y25385D01* X9038Y25430D01* X9045Y25500D01* X9038Y25569D01* X9026Y25614D01* Y40000D01* G37* G36* X9106Y0D02*X9026D01* Y1126D01* X9085Y1153D01* X9106Y1169D01* Y0D01* G37* G36* Y1207D02*X9058Y1256D01* X9035Y1240D01* X9026Y1236D01* Y1763D01* X9035Y1759D01* X9058Y1743D01* X9106Y1792D01* Y1207D01* G37* G36* Y1831D02*X9085Y1846D01* X9026Y1873D01* Y3135D01* X9065Y3153D01* X9106Y3183D01* Y1831D01* G37* G36* Y3187D02*X9038Y3256D01* X9026Y3248D01* Y3751D01* X9038Y3743D01* X9106Y3812D01* Y3187D01* G37* G36* Y3817D02*X9065Y3846D01* X9026Y3864D01* Y5145D01* X9045Y5153D01* X9089Y5184D01* X9026Y5247D01* Y5752D01* X9089Y5815D01* X9045Y5846D01* X9026Y5854D01* Y7154D01* X9069Y7184D01* X9026Y7227D01* Y7772D01* X9069Y7815D01* X9026Y7845D01* Y9169D01* X9049Y9184D01* X9026Y9207D01* Y9792D01* X9049Y9815D01* X9026Y9831D01* Y11183D01* X9029Y11184D01* X9026Y11187D01* Y11812D01* X9029Y11815D01* X9026Y11817D01* Y13308D01* X9080Y13255D01* X9106Y13293D01* Y11734D01* X9100Y11744D01* X9028Y11673D01* X9044Y11650D01* X9066Y11602D01* X9080Y11552D01* X9085Y11500D01* X9080Y11447D01* X9066Y11397D01* X9044Y11350D01* X9028Y11327D01* X9100Y11255D01* X9106Y11265D01* Y9731D01* X9048Y9673D01* X9064Y9650D01* X9086Y9602D01* X9100Y9552D01* X9105Y9500D01* X9100Y9447D01* X9086Y9397D01* X9064Y9350D01* X9048Y9327D01* X9106Y9268D01* Y7711D01* X9068Y7673D01* X9084Y7650D01* X9106Y7602D01* Y7397D01* X9084Y7350D01* X9068Y7327D01* X9106Y7288D01* Y5691D01* X9088Y5673D01* X9104Y5650D01* X9106Y5645D01* Y5354D01* X9104Y5350D01* X9088Y5327D01* X9106Y5308D01* Y3817D01* G37* G36* Y13706D02*X9080Y13744D01* X9026Y13691D01* Y15288D01* X9060Y15255D01* X9091Y15300D01* X9106Y15333D01* Y13706D01* G37* G36* Y15666D02*X9091Y15700D01* X9060Y15744D01* X9026Y15711D01* Y17268D01* X9040Y17255D01* X9071Y17300D01* X9100Y17363D01* X9106Y17385D01* Y15666D01* G37* G36* Y40000D02*X9186D01* Y9614D01* X9180Y9636D01* X9151Y9700D01* X9120Y9744D01* X9106Y9731D01* Y11265D01* X9131Y11300D01* X9160Y11363D01* X9178Y11430D01* X9185Y11500D01* X9178Y11569D01* X9160Y11636D01* X9131Y11700D01* X9106Y11734D01* Y13293D01* X9111Y13300D01* X9140Y13363D01* X9158Y13430D01* X9165Y13500D01* X9158Y13569D01* X9140Y13636D01* X9111Y13700D01* X9106Y13706D01* Y15333D01* X9120Y15363D01* X9138Y15430D01* X9145Y15500D01* X9138Y15569D01* X9120Y15636D01* X9106Y15666D01* Y17385D01* X9118Y17430D01* X9125Y17500D01* X9118Y17569D01* X9106Y17614D01* Y40000D01* G37* G36* X9186Y0D02*X9106D01* Y1169D01* X9129Y1184D01* X9106Y1207D01* Y1792D01* X9129Y1815D01* X9106Y1831D01* Y3183D01* X9109Y3184D01* X9106Y3187D01* Y3812D01* X9109Y3815D01* X9106Y3817D01* Y5308D01* X9160Y5255D01* X9186Y5293D01* Y3734D01* X9180Y3744D01* X9108Y3673D01* X9124Y3650D01* X9146Y3602D01* X9160Y3552D01* X9165Y3500D01* X9160Y3447D01* X9146Y3397D01* X9124Y3350D01* X9108Y3327D01* X9180Y3255D01* X9186Y3265D01* Y1731D01* X9128Y1673D01* X9144Y1650D01* X9166Y1602D01* X9180Y1552D01* X9185Y1500D01* X9180Y1447D01* X9166Y1397D01* X9144Y1350D01* X9128Y1327D01* X9186Y1268D01* Y0D01* G37* G36* Y5706D02*X9160Y5744D01* X9106Y5691D01* Y7288D01* X9140Y7255D01* X9171Y7300D01* X9186Y7333D01* Y5706D01* G37* G36* Y7666D02*X9171Y7700D01* X9140Y7744D01* X9106Y7711D01* Y9268D01* X9120Y9255D01* X9151Y9300D01* X9180Y9363D01* X9186Y9385D01* Y7666D01* G37* G36* Y40000D02*X10243D01* Y39691D01* X10189Y39744D01* X10158Y39700D01* X10129Y39636D01* X10111Y39569D01* X10105Y39500D01* X10111Y39430D01* X10129Y39363D01* X10158Y39300D01* X10189Y39255D01* X10243Y39308D01* Y37711D01* X10209Y37744D01* X10178Y37700D01* X10149Y37636D01* X10131Y37569D01* X10125Y37500D01* X10131Y37430D01* X10149Y37363D01* X10178Y37300D01* X10209Y37255D01* X10243Y37288D01* Y35731D01* X10229Y35744D01* X10198Y35700D01* X10169Y35636D01* X10151Y35569D01* X10145Y35500D01* X10151Y35430D01* X10169Y35363D01* X10198Y35300D01* X10229Y35255D01* X10243Y35268D01* Y33735D01* X10218Y33700D01* X10189Y33636D01* X10171Y33569D01* X10165Y33500D01* X10171Y33430D01* X10189Y33363D01* X10218Y33300D01* X10243Y33264D01* Y31706D01* X10238Y31700D01* X10209Y31636D01* X10191Y31569D01* X10185Y31500D01* X10191Y31430D01* X10209Y31363D01* X10238Y31300D01* X10243Y31293D01* Y29667D01* X10229Y29636D01* X10211Y29569D01* X10205Y29500D01* X10211Y29430D01* X10229Y29363D01* X10243Y29333D01* Y27614D01* X10231Y27569D01* X10225Y27500D01* X10231Y27430D01* X10243Y27385D01* Y0D01* X9186D01* Y1268D01* X9200Y1255D01* X9231Y1300D01* X9260Y1363D01* X9278Y1430D01* X9285Y1500D01* X9278Y1569D01* X9260Y1636D01* X9231Y1700D01* X9200Y1744D01* X9186Y1731D01* Y3265D01* X9211Y3300D01* X9240Y3363D01* X9258Y3430D01* X9265Y3500D01* X9258Y3569D01* X9240Y3636D01* X9211Y3700D01* X9186Y3734D01* Y5293D01* X9191Y5300D01* X9220Y5363D01* X9238Y5430D01* X9245Y5500D01* X9238Y5569D01* X9220Y5636D01* X9191Y5700D01* X9186Y5706D01* Y7333D01* X9200Y7363D01* X9218Y7430D01* X9225Y7500D01* X9218Y7569D01* X9200Y7636D01* X9186Y7666D01* Y9385D01* X9198Y9430D01* X9205Y9500D01* X9198Y9569D01* X9186Y9614D01* Y40000D01* G37* G36* X10243Y39354D02*X10223Y39397D01* X10209Y39447D01* X10205Y39500D01* X10209Y39552D01* X10223Y39602D01* X10243Y39645D01* Y39354D01* G37* G36* Y37397D02*X10243Y37397D01* X10229Y37447D01* X10225Y37500D01* X10229Y37552D01* X10243Y37602D01* X10243Y37602D01* Y37397D01* G37* G36* Y40000D02*X10323D01* Y39854D01* X10305Y39846D01* X10260Y39815D01* X10323Y39752D01* Y39247D01* X10260Y39184D01* X10305Y39153D01* X10323Y39145D01* Y37845D01* X10280Y37815D01* X10323Y37772D01* Y37227D01* X10280Y37184D01* X10323Y37154D01* Y35831D01* X10300Y35815D01* X10323Y35792D01* Y35207D01* X10300Y35184D01* X10323Y35168D01* Y33817D01* X10320Y33815D01* X10323Y33812D01* Y33187D01* X10320Y33184D01* X10323Y33182D01* Y31691D01* X10269Y31744D01* X10243Y31706D01* Y33264D01* X10249Y33255D01* X10321Y33327D01* X10305Y33350D01* X10283Y33397D01* X10269Y33447D01* X10265Y33500D01* X10269Y33552D01* X10283Y33602D01* X10305Y33650D01* X10321Y33673D01* X10249Y33744D01* X10243Y33735D01* Y35268D01* X10301Y35327D01* X10285Y35350D01* X10263Y35397D01* X10249Y35447D01* X10245Y35500D01* X10249Y35552D01* X10263Y35602D01* X10285Y35650D01* X10301Y35673D01* X10243Y35731D01* Y37288D01* X10281Y37327D01* X10265Y37350D01* X10243Y37397D01* Y37602D01* X10265Y37650D01* X10281Y37673D01* X10243Y37711D01* Y39308D01* X10261Y39327D01* X10245Y39350D01* X10243Y39354D01* Y39645D01* X10245Y39650D01* X10261Y39673D01* X10243Y39691D01* Y40000D01* G37* G36* Y31293D02*X10269Y31255D01* X10323Y31308D01* Y29711D01* X10289Y29744D01* X10258Y29700D01* X10243Y29667D01* Y31293D01* G37* G36* Y29333D02*X10258Y29300D01* X10289Y29255D01* X10323Y29288D01* Y27731D01* X10309Y27744D01* X10278Y27700D01* X10249Y27636D01* X10243Y27614D01* Y29333D01* G37* G36* Y27385D02*X10249Y27363D01* X10278Y27300D01* X10309Y27255D01* X10323Y27268D01* Y25735D01* X10298Y25700D01* X10269Y25636D01* X10251Y25569D01* X10245Y25500D01* X10251Y25430D01* X10269Y25363D01* X10298Y25300D01* X10323Y25264D01* Y23706D01* X10318Y23700D01* X10289Y23636D01* X10271Y23569D01* X10265Y23500D01* X10271Y23430D01* X10289Y23363D01* X10318Y23300D01* X10323Y23293D01* Y21667D01* X10309Y21636D01* X10291Y21569D01* X10285Y21500D01* X10291Y21430D01* X10309Y21363D01* X10323Y21333D01* Y19614D01* X10311Y19569D01* X10305Y19500D01* X10311Y19430D01* X10323Y19385D01* Y0D01* X10243D01* Y27385D01* G37* G36* X10323Y31354D02*X10303Y31397D01* X10289Y31447D01* X10285Y31500D01* X10289Y31552D01* X10303Y31602D01* X10323Y31645D01* Y31354D01* G37* G36* Y29397D02*X10323Y29397D01* X10309Y29447D01* X10305Y29500D01* X10309Y29552D01* X10323Y29602D01* X10323Y29602D01* Y29397D01* G37* G36* Y40000D02*X10645D01* Y39874D01* X10641Y39875D01* X10574Y39893D01* X10505Y39900D01* X10435Y39893D01* X10368Y39875D01* X10323Y39854D01* Y40000D01* G37* G36* Y39752D02*X10332Y39743D01* X10355Y39759D01* X10402Y39781D01* X10452Y39795D01* X10505Y39800D01* X10557Y39795D01* X10607Y39781D01* X10645Y39764D01* Y39235D01* X10607Y39218D01* X10557Y39204D01* X10505Y39200D01* X10452Y39204D01* X10402Y39218D01* X10355Y39240D01* X10332Y39256D01* X10323Y39247D01* Y39752D01* G37* G36* Y39145D02*X10368Y39124D01* X10435Y39106D01* X10505Y39100D01* X10574Y39106D01* X10641Y39124D01* X10645Y39125D01* Y37880D01* X10594Y37893D01* X10525Y37900D01* X10455Y37893D01* X10388Y37875D01* X10325Y37846D01* X10323Y37845D01* Y39145D01* G37* G36* Y37772D02*X10352Y37743D01* X10375Y37759D01* X10422Y37781D01* X10472Y37795D01* X10525Y37800D01* X10577Y37795D01* X10627Y37781D01* X10645Y37773D01* Y37226D01* X10627Y37218D01* X10577Y37204D01* X10525Y37200D01* X10472Y37204D01* X10422Y37218D01* X10375Y37240D01* X10352Y37256D01* X10323Y37227D01* Y37772D01* G37* G36* Y37154D02*X10325Y37153D01* X10388Y37124D01* X10455Y37106D01* X10525Y37100D01* X10594Y37106D01* X10645Y37119D01* Y35885D01* X10614Y35893D01* X10545Y35900D01* X10475Y35893D01* X10408Y35875D01* X10345Y35846D01* X10323Y35831D01* Y37154D01* G37* G36* Y35792D02*X10372Y35743D01* X10395Y35759D01* X10442Y35781D01* X10492Y35795D01* X10545Y35800D01* X10597Y35795D01* X10645Y35782D01* Y35217D01* X10597Y35204D01* X10545Y35200D01* X10492Y35204D01* X10442Y35218D01* X10395Y35240D01* X10372Y35256D01* X10323Y35207D01* Y35792D01* G37* G36* Y35168D02*X10345Y35153D01* X10408Y35124D01* X10475Y35106D01* X10545Y35100D01* X10614Y35106D01* X10645Y35114D01* Y33891D01* X10634Y33893D01* X10565Y33900D01* X10495Y33893D01* X10428Y33875D01* X10365Y33846D01* X10323Y33817D01* Y35168D01* G37* G36* Y33812D02*X10392Y33743D01* X10415Y33759D01* X10462Y33781D01* X10512Y33795D01* X10565Y33800D01* X10617Y33795D01* X10645Y33787D01* Y33212D01* X10617Y33204D01* X10565Y33200D01* X10512Y33204D01* X10462Y33218D01* X10415Y33240D01* X10392Y33256D01* X10323Y33187D01* Y33812D01* G37* G36* Y33182D02*X10365Y33153D01* X10403Y33135D01* Y31854D01* X10385Y31846D01* X10340Y31815D01* X10403Y31752D01* Y31247D01* X10340Y31184D01* X10385Y31153D01* X10403Y31145D01* Y29845D01* X10360Y29815D01* X10403Y29772D01* Y29227D01* X10360Y29184D01* X10403Y29154D01* Y27831D01* X10380Y27815D01* X10403Y27792D01* Y27207D01* X10380Y27184D01* X10403Y27168D01* Y25817D01* X10400Y25815D01* X10403Y25812D01* Y25187D01* X10400Y25184D01* X10403Y25182D01* Y23691D01* X10349Y23744D01* X10323Y23706D01* Y25264D01* X10329Y25255D01* X10401Y25327D01* X10385Y25350D01* X10363Y25397D01* X10349Y25447D01* X10345Y25500D01* X10349Y25552D01* X10363Y25602D01* X10385Y25650D01* X10401Y25673D01* X10329Y25744D01* X10323Y25735D01* Y27268D01* X10381Y27327D01* X10365Y27350D01* X10343Y27397D01* X10329Y27447D01* X10325Y27500D01* X10329Y27552D01* X10343Y27602D01* X10365Y27650D01* X10381Y27673D01* X10323Y27731D01* Y29288D01* X10361Y29327D01* X10345Y29350D01* X10323Y29397D01* Y29602D01* X10345Y29650D01* X10361Y29673D01* X10323Y29711D01* Y31308D01* X10341Y31327D01* X10325Y31350D01* X10323Y31354D01* Y31645D01* X10325Y31650D01* X10341Y31673D01* X10323Y31691D01* Y33182D01* G37* G36* X10403Y0D02*X10323D01* Y19385D01* X10329Y19363D01* X10358Y19300D01* X10389Y19255D01* X10403Y19268D01* Y17735D01* X10378Y17700D01* X10349Y17636D01* X10331Y17569D01* X10325Y17500D01* X10331Y17430D01* X10349Y17363D01* X10378Y17300D01* X10403Y17264D01* Y15706D01* X10398Y15700D01* X10369Y15636D01* X10351Y15569D01* X10345Y15500D01* X10351Y15430D01* X10369Y15363D01* X10398Y15300D01* X10403Y15293D01* Y13667D01* X10389Y13636D01* X10371Y13569D01* X10365Y13500D01* X10371Y13430D01* X10389Y13363D01* X10403Y13333D01* Y11614D01* X10391Y11569D01* X10385Y11500D01* X10391Y11430D01* X10403Y11385D01* Y0D01* G37* G36* Y19731D02*X10389Y19744D01* X10358Y19700D01* X10329Y19636D01* X10323Y19614D01* Y21333D01* X10338Y21300D01* X10369Y21255D01* X10403Y21288D01* Y19731D01* G37* G36* Y21397D02*X10403Y21397D01* X10389Y21447D01* X10385Y21500D01* X10389Y21552D01* X10403Y21602D01* X10403Y21602D01* Y21397D01* G37* G36* Y21711D02*X10369Y21744D01* X10338Y21700D01* X10323Y21667D01* Y23293D01* X10349Y23255D01* X10403Y23308D01* Y21711D01* G37* G36* Y23354D02*X10383Y23397D01* X10369Y23447D01* X10365Y23500D01* X10369Y23552D01* X10383Y23602D01* X10403Y23645D01* Y23354D01* G37* G36* Y33135D02*X10428Y33124D01* X10495Y33106D01* X10565Y33100D01* X10634Y33106D01* X10645Y33108D01* Y31894D01* X10585Y31900D01* X10515Y31893D01* X10448Y31875D01* X10403Y31854D01* Y33135D01* G37* G36* Y31752D02*X10412Y31743D01* X10435Y31759D01* X10482Y31781D01* X10532Y31795D01* X10585Y31800D01* X10637Y31795D01* X10645Y31793D01* Y31206D01* X10637Y31204D01* X10585Y31200D01* X10532Y31204D01* X10482Y31218D01* X10435Y31240D01* X10412Y31256D01* X10403Y31247D01* Y31752D01* G37* G36* Y31145D02*X10448Y31124D01* X10515Y31106D01* X10585Y31100D01* X10645Y31105D01* Y29896D01* X10605Y29900D01* X10535Y29893D01* X10468Y29875D01* X10405Y29846D01* X10403Y29845D01* Y31145D01* G37* G36* Y29772D02*X10432Y29743D01* X10455Y29759D01* X10502Y29781D01* X10552Y29795D01* X10605Y29800D01* X10645Y29796D01* Y29203D01* X10605Y29200D01* X10552Y29204D01* X10502Y29218D01* X10455Y29240D01* X10432Y29256D01* X10403Y29227D01* Y29772D01* G37* G36* Y29154D02*X10405Y29153D01* X10468Y29124D01* X10535Y29106D01* X10605Y29100D01* X10645Y29103D01* Y27898D01* X10625Y27900D01* X10555Y27893D01* X10488Y27875D01* X10425Y27846D01* X10403Y27831D01* Y29154D01* G37* G36* Y27792D02*X10452Y27743D01* X10475Y27759D01* X10522Y27781D01* X10572Y27795D01* X10625Y27800D01* X10645Y27798D01* Y27201D01* X10625Y27200D01* X10572Y27204D01* X10522Y27218D01* X10475Y27240D01* X10452Y27256D01* X10403Y27207D01* Y27792D01* G37* G36* Y27168D02*X10425Y27153D01* X10488Y27124D01* X10555Y27106D01* X10625Y27100D01* X10645Y27101D01* Y25900D01* X10575Y25893D01* X10508Y25875D01* X10445Y25846D01* X10403Y25817D01* Y27168D01* G37* G36* Y25812D02*X10472Y25743D01* X10495Y25759D01* X10542Y25781D01* X10592Y25795D01* X10645Y25800D01* Y25200D01* X10592Y25204D01* X10542Y25218D01* X10495Y25240D01* X10472Y25256D01* X10403Y25187D01* Y25812D01* G37* G36* Y25182D02*X10445Y25153D01* X10483Y25135D01* Y23854D01* X10465Y23846D01* X10420Y23815D01* X10483Y23752D01* Y23247D01* X10420Y23184D01* X10465Y23153D01* X10483Y23145D01* Y21845D01* X10440Y21815D01* X10483Y21772D01* Y21227D01* X10440Y21184D01* X10483Y21154D01* Y19831D01* X10460Y19815D01* X10483Y19792D01* Y19207D01* X10460Y19184D01* X10483Y19168D01* Y17817D01* X10480Y17815D01* X10483Y17812D01* Y17187D01* X10480Y17184D01* X10483Y17182D01* Y15691D01* X10429Y15744D01* X10403Y15706D01* Y17264D01* X10409Y17255D01* X10481Y17327D01* X10465Y17350D01* X10443Y17397D01* X10429Y17447D01* X10425Y17500D01* X10429Y17552D01* X10443Y17602D01* X10465Y17650D01* X10481Y17673D01* X10409Y17744D01* X10403Y17735D01* Y19268D01* X10461Y19327D01* X10445Y19350D01* X10423Y19397D01* X10409Y19447D01* X10405Y19500D01* X10409Y19552D01* X10423Y19602D01* X10445Y19650D01* X10461Y19673D01* X10403Y19731D01* Y21288D01* X10441Y21327D01* X10425Y21350D01* X10403Y21397D01* Y21602D01* X10425Y21650D01* X10441Y21673D01* X10403Y21711D01* Y23308D01* X10421Y23327D01* X10405Y23350D01* X10403Y23354D01* Y23645D01* X10405Y23650D01* X10421Y23673D01* X10403Y23691D01* Y25182D01* G37* G36* X10483Y0D02*X10403D01* Y11385D01* X10409Y11363D01* X10438Y11300D01* X10469Y11255D01* X10483Y11268D01* Y9735D01* X10458Y9700D01* X10429Y9636D01* X10411Y9569D01* X10405Y9500D01* X10411Y9430D01* X10429Y9363D01* X10458Y9300D01* X10483Y9264D01* Y7706D01* X10478Y7700D01* X10449Y7636D01* X10431Y7569D01* X10425Y7500D01* X10431Y7430D01* X10449Y7363D01* X10478Y7300D01* X10483Y7293D01* Y5667D01* X10469Y5636D01* X10451Y5569D01* X10445Y5500D01* X10451Y5430D01* X10469Y5363D01* X10483Y5333D01* Y3614D01* X10471Y3569D01* X10465Y3500D01* X10471Y3430D01* X10483Y3385D01* Y0D01* G37* G36* Y11731D02*X10469Y11744D01* X10438Y11700D01* X10409Y11636D01* X10403Y11614D01* Y13333D01* X10418Y13300D01* X10449Y13255D01* X10483Y13288D01* Y11731D01* G37* G36* Y13397D02*X10483Y13397D01* X10469Y13447D01* X10465Y13500D01* X10469Y13552D01* X10483Y13602D01* X10483Y13602D01* Y13397D01* G37* G36* Y13711D02*X10449Y13744D01* X10418Y13700D01* X10403Y13667D01* Y15293D01* X10429Y15255D01* X10483Y15308D01* Y13711D01* G37* G36* Y15354D02*X10463Y15397D01* X10449Y15447D01* X10445Y15500D01* X10449Y15552D01* X10463Y15602D01* X10483Y15645D01* Y15354D01* G37* G36* Y25135D02*X10508Y25124D01* X10575Y25106D01* X10645Y25100D01* Y23898D01* X10595Y23893D01* X10528Y23875D01* X10483Y23854D01* Y25135D01* G37* G36* Y23752D02*X10492Y23743D01* X10515Y23759D01* X10562Y23781D01* X10612Y23795D01* X10645Y23798D01* Y23201D01* X10612Y23204D01* X10562Y23218D01* X10515Y23240D01* X10492Y23256D01* X10483Y23247D01* Y23752D01* G37* G36* Y23145D02*X10528Y23124D01* X10595Y23106D01* X10645Y23101D01* Y21896D01* X10615Y21893D01* X10548Y21875D01* X10485Y21846D01* X10483Y21845D01* Y23145D01* G37* G36* Y21772D02*X10512Y21743D01* X10535Y21759D01* X10582Y21781D01* X10632Y21795D01* X10645Y21796D01* Y21203D01* X10632Y21204D01* X10582Y21218D01* X10535Y21240D01* X10512Y21256D01* X10483Y21227D01* Y21772D01* G37* G36* Y21154D02*X10485Y21153D01* X10548Y21124D01* X10615Y21106D01* X10645Y21103D01* Y19894D01* X10635Y19893D01* X10568Y19875D01* X10505Y19846D01* X10483Y19831D01* Y21154D01* G37* G36* Y19792D02*X10532Y19743D01* X10555Y19759D01* X10602Y19781D01* X10645Y19793D01* Y19206D01* X10602Y19218D01* X10555Y19240D01* X10532Y19256D01* X10483Y19207D01* Y19792D01* G37* G36* Y19168D02*X10505Y19153D01* X10568Y19124D01* X10635Y19106D01* X10645Y19105D01* Y17891D01* X10588Y17875D01* X10525Y17846D01* X10483Y17817D01* Y19168D01* G37* G36* Y17812D02*X10552Y17743D01* X10575Y17759D01* X10622Y17781D01* X10645Y17787D01* Y17212D01* X10622Y17218D01* X10575Y17240D01* X10552Y17256D01* X10483Y17187D01* Y17812D01* G37* G36* Y17182D02*X10525Y17153D01* X10563Y17135D01* Y15854D01* X10545Y15846D01* X10500Y15815D01* X10563Y15752D01* Y15247D01* X10500Y15184D01* X10545Y15153D01* X10563Y15145D01* Y13845D01* X10520Y13815D01* X10563Y13772D01* Y13227D01* X10520Y13184D01* X10563Y13154D01* Y11831D01* X10540Y11815D01* X10563Y11792D01* Y11207D01* X10540Y11184D01* X10563Y11168D01* Y9817D01* X10560Y9815D01* X10563Y9812D01* Y9187D01* X10560Y9184D01* X10563Y9182D01* Y7691D01* X10509Y7744D01* X10483Y7706D01* Y9264D01* X10489Y9255D01* X10561Y9327D01* X10545Y9350D01* X10523Y9397D01* X10509Y9447D01* X10505Y9500D01* X10509Y9552D01* X10523Y9602D01* X10545Y9650D01* X10561Y9673D01* X10489Y9744D01* X10483Y9735D01* Y11268D01* X10541Y11327D01* X10525Y11350D01* X10503Y11397D01* X10489Y11447D01* X10485Y11500D01* X10489Y11552D01* X10503Y11602D01* X10525Y11650D01* X10541Y11673D01* X10483Y11731D01* Y13288D01* X10521Y13327D01* X10505Y13350D01* X10483Y13397D01* Y13602D01* X10505Y13650D01* X10521Y13673D01* X10483Y13711D01* Y15308D01* X10501Y15327D01* X10485Y15350D01* X10483Y15354D01* Y15645D01* X10485Y15650D01* X10501Y15673D01* X10483Y15691D01* Y17182D01* G37* G36* X10563Y0D02*X10483D01* Y3385D01* X10489Y3363D01* X10518Y3300D01* X10549Y3255D01* X10563Y3268D01* Y1735D01* X10538Y1700D01* X10509Y1636D01* X10491Y1569D01* X10485Y1500D01* X10491Y1430D01* X10509Y1363D01* X10538Y1300D01* X10563Y1264D01* Y0D01* G37* G36* Y3731D02*X10549Y3744D01* X10518Y3700D01* X10489Y3636D01* X10483Y3614D01* Y5333D01* X10498Y5300D01* X10529Y5255D01* X10563Y5288D01* Y3731D01* G37* G36* Y5397D02*X10563Y5397D01* X10549Y5447D01* X10545Y5500D01* X10549Y5552D01* X10563Y5602D01* X10563Y5602D01* Y5397D01* G37* G36* Y5711D02*X10529Y5744D01* X10498Y5700D01* X10483Y5667D01* Y7293D01* X10509Y7255D01* X10563Y7308D01* Y5711D01* G37* G36* Y7354D02*X10543Y7397D01* X10529Y7447D01* X10525Y7500D01* X10529Y7552D01* X10543Y7602D01* X10563Y7645D01* Y7354D01* G37* G36* Y17135D02*X10588Y17124D01* X10645Y17108D01* Y15885D01* X10608Y15875D01* X10563Y15854D01* Y17135D01* G37* G36* Y15752D02*X10572Y15743D01* X10595Y15759D01* X10642Y15781D01* X10645Y15782D01* Y15217D01* X10642Y15218D01* X10595Y15240D01* X10572Y15256D01* X10563Y15247D01* Y15752D01* G37* G36* Y15145D02*X10608Y15124D01* X10645Y15114D01* Y13880D01* X10628Y13875D01* X10565Y13846D01* X10563Y13845D01* Y15145D01* G37* G36* Y13772D02*X10592Y13743D01* X10615Y13759D01* X10645Y13773D01* Y13226D01* X10615Y13240D01* X10592Y13256D01* X10563Y13227D01* Y13772D01* G37* G36* Y13154D02*X10565Y13153D01* X10628Y13124D01* X10645Y13119D01* Y11874D01* X10585Y11846D01* X10563Y11831D01* Y13154D01* G37* G36* Y11792D02*X10612Y11743D01* X10635Y11759D01* X10645Y11764D01* Y11235D01* X10635Y11240D01* X10612Y11256D01* X10563Y11207D01* Y11792D01* G37* G36* Y11168D02*X10585Y11153D01* X10645Y11125D01* Y9865D01* X10605Y9846D01* X10563Y9817D01* Y11168D01* G37* G36* Y9812D02*X10632Y9743D01* X10645Y9752D01* Y9247D01* X10632Y9256D01* X10563Y9187D01* Y9812D01* G37* G36* Y9182D02*X10605Y9153D01* X10645Y9134D01* Y7855D01* X10625Y7846D01* X10580Y7815D01* X10645Y7750D01* Y7249D01* X10580Y7184D01* X10625Y7153D01* X10645Y7144D01* Y5846D01* X10600Y5815D01* X10645Y5770D01* Y5229D01* X10600Y5184D01* X10645Y5153D01* Y3832D01* X10620Y3815D01* X10645Y3790D01* Y3209D01* X10620Y3184D01* X10645Y3167D01* Y1818D01* X10640Y1815D01* X10645Y1810D01* Y1189D01* X10640Y1184D01* X10645Y1181D01* Y0D01* X10563D01* Y1264D01* X10569Y1255D01* X10641Y1327D01* X10625Y1350D01* X10603Y1397D01* X10589Y1447D01* X10585Y1500D01* X10589Y1552D01* X10603Y1602D01* X10625Y1650D01* X10641Y1673D01* X10569Y1744D01* X10563Y1735D01* Y3268D01* X10621Y3327D01* X10605Y3350D01* X10583Y3397D01* X10569Y3447D01* X10565Y3500D01* X10569Y3552D01* X10583Y3602D01* X10605Y3650D01* X10621Y3673D01* X10563Y3731D01* Y5288D01* X10601Y5327D01* X10585Y5350D01* X10563Y5397D01* Y5602D01* X10585Y5650D01* X10601Y5673D01* X10563Y5711D01* Y7308D01* X10581Y7327D01* X10565Y7350D01* X10563Y7354D01* Y7645D01* X10565Y7650D01* X10581Y7673D01* X10563Y7691D01* Y9182D01* G37* G36* X10645Y40000D02*X10886D01* Y39614D01* X10880Y39636D01* X10851Y39700D01* X10820Y39744D01* X10748Y39673D01* X10764Y39650D01* X10786Y39602D01* X10800Y39552D01* X10805Y39500D01* X10800Y39447D01* X10786Y39397D01* X10764Y39350D01* X10748Y39327D01* X10820Y39255D01* X10851Y39300D01* X10880Y39363D01* X10886Y39385D01* Y37666D01* X10871Y37700D01* X10840Y37744D01* X10768Y37673D01* X10784Y37650D01* X10806Y37602D01* X10820Y37552D01* X10825Y37500D01* X10820Y37447D01* X10806Y37397D01* X10784Y37350D01* X10768Y37327D01* X10840Y37255D01* X10871Y37300D01* X10886Y37333D01* Y35706D01* X10860Y35744D01* X10788Y35673D01* X10804Y35650D01* X10826Y35602D01* X10840Y35552D01* X10845Y35500D01* X10840Y35447D01* X10826Y35397D01* X10804Y35350D01* X10788Y35327D01* X10860Y35255D01* X10886Y35293D01* Y33734D01* X10880Y33744D01* X10808Y33673D01* X10824Y33650D01* X10846Y33602D01* X10860Y33552D01* X10865Y33500D01* X10860Y33447D01* X10846Y33397D01* X10824Y33350D01* X10808Y33327D01* X10880Y33255D01* X10886Y33265D01* Y31731D01* X10828Y31673D01* X10844Y31650D01* X10866Y31602D01* X10880Y31552D01* X10885Y31500D01* X10880Y31447D01* X10866Y31397D01* X10844Y31350D01* X10828Y31327D01* X10886Y31268D01* Y29711D01* X10848Y29673D01* X10864Y29650D01* X10886Y29602D01* Y29397D01* X10864Y29350D01* X10848Y29327D01* X10886Y29288D01* Y27691D01* X10868Y27673D01* X10884Y27650D01* X10886Y27645D01* Y27354D01* X10884Y27350D01* X10868Y27327D01* X10886Y27308D01* Y25817D01* X10845Y25846D01* X10781Y25875D01* X10714Y25893D01* X10645Y25900D01* Y27101D01* X10694Y27106D01* X10761Y27124D01* X10825Y27153D01* X10869Y27184D01* X10798Y27256D01* X10775Y27240D01* X10727Y27218D01* X10677Y27204D01* X10645Y27201D01* Y27798D01* X10677Y27795D01* X10727Y27781D01* X10775Y27759D01* X10798Y27743D01* X10869Y27815D01* X10825Y27846D01* X10761Y27875D01* X10694Y27893D01* X10645Y27898D01* Y29103D01* X10674Y29106D01* X10741Y29124D01* X10805Y29153D01* X10849Y29184D01* X10778Y29256D01* X10755Y29240D01* X10707Y29218D01* X10657Y29204D01* X10645Y29203D01* Y29796D01* X10657Y29795D01* X10707Y29781D01* X10755Y29759D01* X10778Y29743D01* X10849Y29815D01* X10805Y29846D01* X10741Y29875D01* X10674Y29893D01* X10645Y29896D01* Y31105D01* X10654Y31106D01* X10721Y31124D01* X10785Y31153D01* X10829Y31184D01* X10758Y31256D01* X10735Y31240D01* X10687Y31218D01* X10645Y31206D01* Y31793D01* X10687Y31781D01* X10735Y31759D01* X10758Y31743D01* X10829Y31815D01* X10785Y31846D01* X10721Y31875D01* X10654Y31893D01* X10645Y31894D01* Y33108D01* X10701Y33124D01* X10765Y33153D01* X10809Y33184D01* X10738Y33256D01* X10715Y33240D01* X10667Y33218D01* X10645Y33212D01* Y33787D01* X10667Y33781D01* X10715Y33759D01* X10738Y33743D01* X10809Y33815D01* X10765Y33846D01* X10701Y33875D01* X10645Y33891D01* Y35114D01* X10681Y35124D01* X10745Y35153D01* X10789Y35184D01* X10718Y35256D01* X10695Y35240D01* X10647Y35218D01* X10645Y35217D01* Y35782D01* X10647Y35781D01* X10695Y35759D01* X10718Y35743D01* X10789Y35815D01* X10745Y35846D01* X10681Y35875D01* X10645Y35885D01* Y37119D01* X10661Y37124D01* X10725Y37153D01* X10769Y37184D01* X10698Y37256D01* X10675Y37240D01* X10645Y37226D01* Y37773D01* X10675Y37759D01* X10698Y37743D01* X10769Y37815D01* X10725Y37846D01* X10661Y37875D01* X10645Y37880D01* Y39125D01* X10705Y39153D01* X10749Y39184D01* X10678Y39256D01* X10655Y39240D01* X10645Y39235D01* Y39764D01* X10655Y39759D01* X10678Y39743D01* X10749Y39815D01* X10705Y39846D01* X10645Y39874D01* Y40000D01* G37* G36* X10886Y17864D02*X10861Y17875D01* X10794Y17893D01* X10725Y17900D01* X10655Y17893D01* X10645Y17891D01* Y19105D01* X10705Y19100D01* X10774Y19106D01* X10841Y19124D01* X10886Y19145D01* Y17864D01* G37* G36* Y19247D02*X10878Y19256D01* X10855Y19240D01* X10807Y19218D01* X10757Y19204D01* X10705Y19200D01* X10652Y19204D01* X10645Y19206D01* Y19793D01* X10652Y19795D01* X10705Y19800D01* X10757Y19795D01* X10807Y19781D01* X10855Y19759D01* X10878Y19743D01* X10886Y19752D01* Y19247D01* G37* G36* Y19854D02*X10841Y19875D01* X10774Y19893D01* X10705Y19900D01* X10645Y19894D01* Y21103D01* X10685Y21100D01* X10754Y21106D01* X10821Y21124D01* X10885Y21153D01* X10886Y21154D01* Y19854D01* G37* G36* Y21227D02*X10858Y21256D01* X10835Y21240D01* X10787Y21218D01* X10737Y21204D01* X10685Y21200D01* X10645Y21203D01* Y21796D01* X10685Y21800D01* X10737Y21795D01* X10787Y21781D01* X10835Y21759D01* X10858Y21743D01* X10886Y21772D01* Y21227D01* G37* G36* Y21845D02*X10885Y21846D01* X10821Y21875D01* X10754Y21893D01* X10685Y21900D01* X10645Y21896D01* Y23101D01* X10665Y23100D01* X10734Y23106D01* X10801Y23124D01* X10865Y23153D01* X10886Y23169D01* Y21845D01* G37* G36* Y23207D02*X10838Y23256D01* X10815Y23240D01* X10767Y23218D01* X10717Y23204D01* X10665Y23200D01* X10645Y23201D01* Y23798D01* X10665Y23800D01* X10717Y23795D01* X10767Y23781D01* X10815Y23759D01* X10838Y23743D01* X10886Y23792D01* Y23207D01* G37* G36* Y23831D02*X10865Y23846D01* X10801Y23875D01* X10734Y23893D01* X10665Y23900D01* X10645Y23898D01* Y25100D01* X10714Y25106D01* X10781Y25124D01* X10845Y25153D01* X10886Y25183D01* Y23831D01* G37* G36* Y25187D02*X10818Y25256D01* X10795Y25240D01* X10747Y25218D01* X10697Y25204D01* X10645Y25200D01* Y25800D01* X10697Y25795D01* X10747Y25781D01* X10795Y25759D01* X10818Y25743D01* X10886Y25812D01* Y25187D01* G37* G36* Y40000D02*X10966D01* Y31614D01* X10960Y31636D01* X10931Y31700D01* X10900Y31744D01* X10886Y31731D01* Y33265D01* X10911Y33300D01* X10940Y33363D01* X10958Y33430D01* X10965Y33500D01* X10958Y33569D01* X10940Y33636D01* X10911Y33700D01* X10886Y33734D01* Y35293D01* X10891Y35300D01* X10920Y35363D01* X10938Y35430D01* X10945Y35500D01* X10938Y35569D01* X10920Y35636D01* X10891Y35700D01* X10886Y35706D01* Y37333D01* X10900Y37363D01* X10918Y37430D01* X10925Y37500D01* X10918Y37569D01* X10900Y37636D01* X10886Y37666D01* Y39385D01* X10898Y39430D01* X10905Y39500D01* X10898Y39569D01* X10886Y39614D01* Y40000D01* G37* G36* Y31268D02*X10900Y31255D01* X10931Y31300D01* X10960Y31363D01* X10966Y31385D01* Y29666D01* X10951Y29700D01* X10920Y29744D01* X10886Y29711D01* Y31268D01* G37* G36* Y29602D02*X10900Y29552D01* X10905Y29500D01* X10900Y29447D01* X10886Y29397D01* Y29602D01* G37* G36* Y29288D02*X10920Y29255D01* X10951Y29300D01* X10966Y29333D01* Y27706D01* X10940Y27744D01* X10886Y27691D01* Y29288D01* G37* G36* Y27645D02*X10906Y27602D01* X10920Y27552D01* X10925Y27500D01* X10920Y27447D01* X10906Y27397D01* X10886Y27354D01* Y27645D01* G37* G36* Y27308D02*X10940Y27255D01* X10966Y27293D01* Y25734D01* X10960Y25744D01* X10888Y25673D01* X10904Y25650D01* X10926Y25602D01* X10940Y25552D01* X10945Y25500D01* X10940Y25447D01* X10926Y25397D01* X10904Y25350D01* X10888Y25327D01* X10960Y25255D01* X10966Y25265D01* Y23731D01* X10908Y23673D01* X10924Y23650D01* X10946Y23602D01* X10960Y23552D01* X10965Y23500D01* X10960Y23447D01* X10946Y23397D01* X10924Y23350D01* X10908Y23327D01* X10966Y23268D01* Y21711D01* X10928Y21673D01* X10944Y21650D01* X10966Y21602D01* Y21397D01* X10944Y21350D01* X10928Y21327D01* X10966Y21288D01* Y19691D01* X10948Y19673D01* X10964Y19650D01* X10966Y19645D01* Y19354D01* X10964Y19350D01* X10948Y19327D01* X10966Y19308D01* Y17817D01* X10925Y17846D01* X10886Y17864D01* Y19145D01* X10905Y19153D01* X10949Y19184D01* X10886Y19247D01* Y19752D01* X10949Y19815D01* X10905Y19846D01* X10886Y19854D01* Y21154D01* X10929Y21184D01* X10886Y21227D01* Y21772D01* X10929Y21815D01* X10886Y21845D01* Y23169D01* X10909Y23184D01* X10886Y23207D01* Y23792D01* X10909Y23815D01* X10886Y23831D01* Y25183D01* X10889Y25184D01* X10886Y25187D01* Y25812D01* X10889Y25815D01* X10886Y25817D01* Y27308D01* G37* G36* X10645Y17787D02*X10672Y17795D01* X10725Y17800D01* X10777Y17795D01* X10827Y17781D01* X10875Y17759D01* X10898Y17743D01* X10966Y17812D01* Y17187D01* X10898Y17256D01* X10875Y17240D01* X10827Y17218D01* X10777Y17204D01* X10725Y17200D01* X10672Y17204D01* X10645Y17212D01* Y17787D01* G37* G36* Y17108D02*X10655Y17106D01* X10725Y17100D01* X10794Y17106D01* X10861Y17124D01* X10925Y17153D01* X10966Y17183D01* Y15831D01* X10945Y15846D01* X10881Y15875D01* X10814Y15893D01* X10745Y15900D01* X10675Y15893D01* X10645Y15885D01* Y17108D01* G37* G36* Y15782D02*X10692Y15795D01* X10745Y15800D01* X10797Y15795D01* X10847Y15781D01* X10895Y15759D01* X10918Y15743D01* X10966Y15792D01* Y15207D01* X10918Y15256D01* X10895Y15240D01* X10847Y15218D01* X10797Y15204D01* X10745Y15200D01* X10692Y15204D01* X10645Y15217D01* Y15782D01* G37* G36* Y15114D02*X10675Y15106D01* X10745Y15100D01* X10814Y15106D01* X10881Y15124D01* X10945Y15153D01* X10966Y15169D01* Y13845D01* X10965Y13846D01* X10901Y13875D01* X10834Y13893D01* X10765Y13900D01* X10695Y13893D01* X10645Y13880D01* Y15114D01* G37* G36* Y13773D02*X10662Y13781D01* X10712Y13795D01* X10765Y13800D01* X10817Y13795D01* X10867Y13781D01* X10915Y13759D01* X10938Y13743D01* X10966Y13772D01* Y13227D01* X10938Y13256D01* X10915Y13240D01* X10867Y13218D01* X10817Y13204D01* X10765Y13200D01* X10712Y13204D01* X10662Y13218D01* X10645Y13226D01* Y13773D01* G37* G36* Y13119D02*X10695Y13106D01* X10765Y13100D01* X10834Y13106D01* X10901Y13124D01* X10965Y13153D01* X10966Y13154D01* Y11854D01* X10921Y11875D01* X10854Y11893D01* X10785Y11900D01* X10715Y11893D01* X10648Y11875D01* X10645Y11874D01* Y13119D01* G37* G36* Y11764D02*X10682Y11781D01* X10732Y11795D01* X10785Y11800D01* X10837Y11795D01* X10887Y11781D01* X10935Y11759D01* X10958Y11743D01* X10966Y11752D01* Y11247D01* X10958Y11256D01* X10935Y11240D01* X10887Y11218D01* X10837Y11204D01* X10785Y11200D01* X10732Y11204D01* X10682Y11218D01* X10645Y11235D01* Y11764D01* G37* G36* Y11125D02*X10648Y11124D01* X10715Y11106D01* X10785Y11100D01* X10854Y11106D01* X10921Y11124D01* X10966Y11145D01* Y9864D01* X10941Y9875D01* X10874Y9893D01* X10805Y9900D01* X10735Y9893D01* X10668Y9875D01* X10645Y9865D01* Y11125D01* G37* G36* Y9752D02*X10655Y9759D01* X10702Y9781D01* X10752Y9795D01* X10805Y9800D01* X10857Y9795D01* X10907Y9781D01* X10955Y9759D01* X10966Y9751D01* Y9248D01* X10955Y9240D01* X10907Y9218D01* X10857Y9204D01* X10805Y9200D01* X10752Y9204D01* X10702Y9218D01* X10655Y9240D01* X10645Y9247D01* Y9752D01* G37* G36* Y9134D02*X10668Y9124D01* X10735Y9106D01* X10805Y9100D01* X10874Y9106D01* X10941Y9124D01* X10966Y9135D01* Y7873D01* X10961Y7875D01* X10894Y7893D01* X10825Y7900D01* X10755Y7893D01* X10688Y7875D01* X10645Y7855D01* Y9134D01* G37* G36* Y7750D02*X10652Y7743D01* X10675Y7759D01* X10722Y7781D01* X10772Y7795D01* X10825Y7800D01* X10877Y7795D01* X10927Y7781D01* X10966Y7763D01* Y7236D01* X10927Y7218D01* X10877Y7204D01* X10825Y7200D01* X10772Y7204D01* X10722Y7218D01* X10675Y7240D01* X10652Y7256D01* X10645Y7249D01* Y7750D01* G37* G36* Y7144D02*X10688Y7124D01* X10755Y7106D01* X10825Y7100D01* X10894Y7106D01* X10961Y7124D01* X10966Y7126D01* Y5879D01* X10914Y5893D01* X10845Y5900D01* X10775Y5893D01* X10708Y5875D01* X10645Y5846D01* Y7144D01* G37* G36* Y5770D02*X10672Y5743D01* X10695Y5759D01* X10742Y5781D01* X10792Y5795D01* X10845Y5800D01* X10897Y5795D01* X10947Y5781D01* X10966Y5772D01* Y5227D01* X10947Y5218D01* X10897Y5204D01* X10845Y5200D01* X10792Y5204D01* X10742Y5218D01* X10695Y5240D01* X10672Y5256D01* X10645Y5229D01* Y5770D01* G37* G36* Y5153D02*X10708Y5124D01* X10775Y5106D01* X10845Y5100D01* X10914Y5106D01* X10966Y5120D01* Y3885D01* X10934Y3893D01* X10865Y3900D01* X10795Y3893D01* X10728Y3875D01* X10665Y3846D01* X10645Y3832D01* Y5153D01* G37* G36* Y3790D02*X10692Y3743D01* X10715Y3759D01* X10762Y3781D01* X10812Y3795D01* X10865Y3800D01* X10917Y3795D01* X10966Y3782D01* Y3217D01* X10917Y3204D01* X10865Y3200D01* X10812Y3204D01* X10762Y3218D01* X10715Y3240D01* X10692Y3256D01* X10645Y3209D01* Y3790D01* G37* G36* Y3167D02*X10665Y3153D01* X10728Y3124D01* X10795Y3106D01* X10865Y3100D01* X10934Y3106D01* X10966Y3114D01* Y1890D01* X10954Y1893D01* X10885Y1900D01* X10815Y1893D01* X10748Y1875D01* X10685Y1846D01* X10645Y1818D01* Y3167D01* G37* G36* Y1810D02*X10712Y1743D01* X10735Y1759D01* X10782Y1781D01* X10832Y1795D01* X10885Y1800D01* X10937Y1795D01* X10966Y1787D01* Y1212D01* X10937Y1204D01* X10885Y1200D01* X10832Y1204D01* X10782Y1218D01* X10735Y1240D01* X10712Y1256D01* X10645Y1189D01* Y1810D01* G37* G36* Y1181D02*X10685Y1153D01* X10748Y1124D01* X10815Y1106D01* X10885Y1100D01* X10954Y1106D01* X10966Y1109D01* Y0D01* X10645D01* Y1181D01* G37* G36* X10966Y40000D02*X11046D01* Y23614D01* X11040Y23636D01* X11011Y23700D01* X10980Y23744D01* X10966Y23731D01* Y25265D01* X10991Y25300D01* X11020Y25363D01* X11038Y25430D01* X11045Y25500D01* X11038Y25569D01* X11020Y25636D01* X10991Y25700D01* X10966Y25734D01* Y27293D01* X10971Y27300D01* X11000Y27363D01* X11018Y27430D01* X11025Y27500D01* X11018Y27569D01* X11000Y27636D01* X10971Y27700D01* X10966Y27706D01* Y29333D01* X10980Y29363D01* X10998Y29430D01* X11005Y29500D01* X10998Y29569D01* X10980Y29636D01* X10966Y29666D01* Y31385D01* X10978Y31430D01* X10985Y31500D01* X10978Y31569D01* X10966Y31614D01* Y40000D01* G37* G36* X11046Y0D02*X10966D01* Y1109D01* X11021Y1124D01* X11046Y1135D01* Y0D01* G37* G36* Y1248D02*X11035Y1240D01* X10987Y1218D01* X10966Y1212D01* Y1787D01* X10987Y1781D01* X11035Y1759D01* X11046Y1751D01* Y1248D01* G37* G36* Y1864D02*X11021Y1875D01* X10966Y1890D01* Y3114D01* X11001Y3124D01* X11046Y3145D01* Y1864D01* G37* G36* Y3247D02*X11038Y3256D01* X11015Y3240D01* X10967Y3218D01* X10966Y3217D01* Y3782D01* X10967Y3781D01* X11015Y3759D01* X11038Y3743D01* X11046Y3752D01* Y3247D01* G37* G36* Y3854D02*X11001Y3875D01* X10966Y3885D01* Y5120D01* X10981Y5124D01* X11045Y5153D01* X11046Y5154D01* Y3854D01* G37* G36* Y5227D02*X11018Y5256D01* X10995Y5240D01* X10966Y5227D01* Y5772D01* X10995Y5759D01* X11018Y5743D01* X11046Y5772D01* Y5227D01* G37* G36* Y5845D02*X11045Y5846D01* X10981Y5875D01* X10966Y5879D01* Y7126D01* X11025Y7153D01* X11046Y7169D01* Y5845D01* G37* G36* Y7207D02*X10998Y7256D01* X10975Y7240D01* X10966Y7236D01* Y7763D01* X10975Y7759D01* X10998Y7743D01* X11046Y7792D01* Y7207D01* G37* G36* Y7831D02*X11025Y7846D01* X10966Y7873D01* Y9135D01* X11005Y9153D01* X11046Y9183D01* Y7831D01* G37* G36* Y9187D02*X10978Y9256D01* X10966Y9248D01* Y9751D01* X10978Y9743D01* X11046Y9812D01* Y9187D01* G37* G36* Y9817D02*X11005Y9846D01* X10966Y9864D01* Y11145D01* X10985Y11153D01* X11029Y11184D01* X10966Y11247D01* Y11752D01* X11029Y11815D01* X10985Y11846D01* X10966Y11854D01* Y13154D01* X11009Y13184D01* X10966Y13227D01* Y13772D01* X11009Y13815D01* X10966Y13845D01* Y15169D01* X10989Y15184D01* X10966Y15207D01* Y15792D01* X10989Y15815D01* X10966Y15831D01* Y17183D01* X10969Y17184D01* X10966Y17187D01* Y17812D01* X10969Y17815D01* X10966Y17817D01* Y19308D01* X11020Y19255D01* X11046Y19293D01* Y17734D01* X11040Y17744D01* X10968Y17673D01* X10984Y17650D01* X11006Y17602D01* X11020Y17552D01* X11025Y17500D01* X11020Y17447D01* X11006Y17397D01* X10984Y17350D01* X10968Y17327D01* X11040Y17255D01* X11046Y17265D01* Y15731D01* X10988Y15673D01* X11004Y15650D01* X11026Y15602D01* X11040Y15552D01* X11045Y15500D01* X11040Y15447D01* X11026Y15397D01* X11004Y15350D01* X10988Y15327D01* X11046Y15268D01* Y13711D01* X11008Y13673D01* X11024Y13650D01* X11046Y13602D01* Y13397D01* X11024Y13350D01* X11008Y13327D01* X11046Y13288D01* Y11691D01* X11028Y11673D01* X11044Y11650D01* X11046Y11645D01* Y11354D01* X11044Y11350D01* X11028Y11327D01* X11046Y11308D01* Y9817D01* G37* G36* Y19706D02*X11020Y19744D01* X10966Y19691D01* Y21288D01* X11000Y21255D01* X11031Y21300D01* X11046Y21333D01* Y19706D01* G37* G36* Y21666D02*X11031Y21700D01* X11000Y21744D01* X10966Y21711D01* Y23268D01* X10980Y23255D01* X11011Y23300D01* X11040Y23363D01* X11046Y23385D01* Y21666D01* G37* G36* Y40000D02*X11126D01* Y15614D01* X11120Y15636D01* X11091Y15700D01* X11060Y15744D01* X11046Y15731D01* Y17265D01* X11071Y17300D01* X11100Y17363D01* X11118Y17430D01* X11125Y17500D01* X11118Y17569D01* X11100Y17636D01* X11071Y17700D01* X11046Y17734D01* Y19293D01* X11051Y19300D01* X11080Y19363D01* X11098Y19430D01* X11105Y19500D01* X11098Y19569D01* X11080Y19636D01* X11051Y19700D01* X11046Y19706D01* Y21333D01* X11060Y21363D01* X11078Y21430D01* X11085Y21500D01* X11078Y21569D01* X11060Y21636D01* X11046Y21666D01* Y23385D01* X11058Y23430D01* X11065Y23500D01* X11058Y23569D01* X11046Y23614D01* Y40000D01* G37* G36* X11126Y0D02*X11046D01* Y1135D01* X11085Y1153D01* X11126Y1183D01* Y0D01* G37* G36* Y1187D02*X11058Y1256D01* X11046Y1248D01* Y1751D01* X11058Y1743D01* X11126Y1812D01* Y1187D01* G37* G36* Y1817D02*X11085Y1846D01* X11046Y1864D01* Y3145D01* X11065Y3153D01* X11109Y3184D01* X11046Y3247D01* Y3752D01* X11109Y3815D01* X11065Y3846D01* X11046Y3854D01* Y5154D01* X11089Y5184D01* X11046Y5227D01* Y5772D01* X11089Y5815D01* X11046Y5845D01* Y7169D01* X11069Y7184D01* X11046Y7207D01* Y7792D01* X11069Y7815D01* X11046Y7831D01* Y9183D01* X11049Y9184D01* X11046Y9187D01* Y9812D01* X11049Y9815D01* X11046Y9817D01* Y11308D01* X11100Y11255D01* X11126Y11293D01* Y9734D01* X11120Y9744D01* X11048Y9673D01* X11064Y9650D01* X11086Y9602D01* X11100Y9552D01* X11105Y9500D01* X11100Y9447D01* X11086Y9397D01* X11064Y9350D01* X11048Y9327D01* X11120Y9255D01* X11126Y9265D01* Y7731D01* X11068Y7673D01* X11084Y7650D01* X11106Y7602D01* X11120Y7552D01* X11125Y7500D01* X11120Y7447D01* X11106Y7397D01* X11084Y7350D01* X11068Y7327D01* X11126Y7268D01* Y5711D01* X11088Y5673D01* X11104Y5650D01* X11126Y5602D01* Y5397D01* X11104Y5350D01* X11088Y5327D01* X11126Y5288D01* Y3691D01* X11108Y3673D01* X11124Y3650D01* X11126Y3645D01* Y3354D01* X11124Y3350D01* X11108Y3327D01* X11126Y3308D01* Y1817D01* G37* G36* Y11706D02*X11100Y11744D01* X11046Y11691D01* Y13288D01* X11080Y13255D01* X11111Y13300D01* X11126Y13333D01* Y11706D01* G37* G36* Y13666D02*X11111Y13700D01* X11080Y13744D01* X11046Y13711D01* Y15268D01* X11060Y15255D01* X11091Y15300D01* X11120Y15363D01* X11126Y15385D01* Y13666D01* G37* G36* Y40000D02*X11206D01* Y7614D01* X11200Y7636D01* X11171Y7700D01* X11140Y7744D01* X11126Y7731D01* Y9265D01* X11151Y9300D01* X11180Y9363D01* X11198Y9430D01* X11205Y9500D01* X11198Y9569D01* X11180Y9636D01* X11151Y9700D01* X11126Y9734D01* Y11293D01* X11131Y11300D01* X11160Y11363D01* X11178Y11430D01* X11185Y11500D01* X11178Y11569D01* X11160Y11636D01* X11131Y11700D01* X11126Y11706D01* Y13333D01* X11140Y13363D01* X11158Y13430D01* X11165Y13500D01* X11158Y13569D01* X11140Y13636D01* X11126Y13666D01* Y15385D01* X11138Y15430D01* X11145Y15500D01* X11138Y15569D01* X11126Y15614D01* Y40000D01* G37* G36* X11206Y0D02*X11126D01* Y1183D01* X11129Y1184D01* X11126Y1187D01* Y1812D01* X11129Y1815D01* X11126Y1817D01* Y3308D01* X11180Y3255D01* X11206Y3293D01* Y1734D01* X11200Y1744D01* X11128Y1673D01* X11144Y1650D01* X11166Y1602D01* X11180Y1552D01* X11185Y1500D01* X11180Y1447D01* X11166Y1397D01* X11144Y1350D01* X11128Y1327D01* X11200Y1255D01* X11206Y1265D01* Y0D01* G37* G36* Y3706D02*X11180Y3744D01* X11126Y3691D01* Y5288D01* X11160Y5255D01* X11191Y5300D01* X11206Y5333D01* Y3706D01* G37* G36* Y5666D02*X11191Y5700D01* X11160Y5744D01* X11126Y5711D01* Y7268D01* X11140Y7255D01* X11171Y7300D01* X11200Y7363D01* X11206Y7385D01* Y5666D01* G37* G36* Y40000D02*X12183D01* Y39735D01* X12158Y39700D01* X12129Y39636D01* X12111Y39569D01* X12105Y39500D01* X12111Y39430D01* X12129Y39363D01* X12158Y39300D01* X12183Y39264D01* Y37706D01* X12178Y37700D01* X12149Y37636D01* X12131Y37569D01* X12125Y37500D01* X12131Y37430D01* X12149Y37363D01* X12178Y37300D01* X12183Y37293D01* Y35667D01* X12169Y35636D01* X12151Y35569D01* X12145Y35500D01* X12151Y35430D01* X12169Y35363D01* X12183Y35333D01* Y33614D01* X12171Y33569D01* X12165Y33500D01* X12171Y33430D01* X12183Y33385D01* Y0D01* X11206D01* Y1265D01* X11231Y1300D01* X11260Y1363D01* X11278Y1430D01* X11285Y1500D01* X11278Y1569D01* X11260Y1636D01* X11231Y1700D01* X11206Y1734D01* Y3293D01* X11211Y3300D01* X11240Y3363D01* X11258Y3430D01* X11265Y3500D01* X11258Y3569D01* X11240Y3636D01* X11211Y3700D01* X11206Y3706D01* Y5333D01* X11220Y5363D01* X11238Y5430D01* X11245Y5500D01* X11238Y5569D01* X11220Y5636D01* X11206Y5666D01* Y7385D01* X11218Y7430D01* X11225Y7500D01* X11218Y7569D01* X11206Y7614D01* Y40000D01* G37* G36* X12183D02*X12283D01* Y39831D01* X12260Y39815D01* X12283Y39792D01* Y39207D01* X12260Y39184D01* X12283Y39168D01* Y37817D01* X12280Y37815D01* X12283Y37812D01* Y37187D01* X12280Y37184D01* X12283Y37182D01* Y35691D01* X12229Y35744D01* X12198Y35700D01* X12183Y35667D01* Y37293D01* X12209Y37255D01* X12281Y37327D01* X12265Y37350D01* X12243Y37397D01* X12229Y37447D01* X12225Y37500D01* X12229Y37552D01* X12243Y37602D01* X12265Y37650D01* X12281Y37673D01* X12209Y37744D01* X12183Y37706D01* Y39264D01* X12189Y39255D01* X12261Y39327D01* X12245Y39350D01* X12223Y39397D01* X12209Y39447D01* X12205Y39500D01* X12209Y39552D01* X12223Y39602D01* X12245Y39650D01* X12261Y39673D01* X12189Y39744D01* X12183Y39735D01* Y40000D01* G37* G36* Y35333D02*X12198Y35300D01* X12229Y35255D01* X12283Y35308D01* Y33711D01* X12249Y33744D01* X12218Y33700D01* X12189Y33636D01* X12183Y33614D01* Y35333D01* G37* G36* Y33385D02*X12189Y33363D01* X12218Y33300D01* X12249Y33255D01* X12283Y33288D01* Y31731D01* X12269Y31744D01* X12238Y31700D01* X12209Y31636D01* X12191Y31569D01* X12185Y31500D01* X12191Y31430D01* X12209Y31363D01* X12238Y31300D01* X12269Y31255D01* X12283Y31268D01* Y29735D01* X12258Y29700D01* X12229Y29636D01* X12211Y29569D01* X12205Y29500D01* X12211Y29430D01* X12229Y29363D01* X12258Y29300D01* X12283Y29264D01* Y27706D01* X12278Y27700D01* X12249Y27636D01* X12231Y27569D01* X12225Y27500D01* X12231Y27430D01* X12249Y27363D01* X12278Y27300D01* X12283Y27293D01* Y25667D01* X12269Y25636D01* X12251Y25569D01* X12245Y25500D01* X12251Y25430D01* X12269Y25363D01* X12283Y25333D01* Y23614D01* X12271Y23569D01* X12265Y23500D01* X12271Y23430D01* X12283Y23385D01* Y0D01* X12183D01* Y33385D01* G37* G36* X12283Y35354D02*X12263Y35397D01* X12249Y35447D01* X12245Y35500D01* X12249Y35552D01* X12263Y35602D01* X12283Y35645D01* Y35354D01* G37* G36* Y33397D02*X12283Y33397D01* X12269Y33447D01* X12265Y33500D01* X12269Y33552D01* X12283Y33602D01* X12283Y33602D01* Y33397D01* G37* G36* Y40000D02*X12383D01* Y39879D01* X12368Y39875D01* X12305Y39846D01* X12283Y39831D01* Y40000D01* G37* G36* Y39792D02*X12332Y39743D01* X12355Y39759D01* X12383Y39772D01* Y39227D01* X12355Y39240D01* X12332Y39256D01* X12283Y39207D01* Y39792D01* G37* G36* Y39168D02*X12305Y39153D01* X12368Y39124D01* X12383Y39120D01* Y37873D01* X12325Y37846D01* X12283Y37817D01* Y39168D01* G37* G36* Y37812D02*X12352Y37743D01* X12375Y37759D01* X12383Y37763D01* Y37236D01* X12375Y37240D01* X12352Y37256D01* X12283Y37187D01* Y37812D01* G37* G36* Y37182D02*X12325Y37153D01* X12383Y37126D01* Y35864D01* X12345Y35846D01* X12300Y35815D01* X12372Y35743D01* X12383Y35751D01* Y35248D01* X12372Y35256D01* X12300Y35184D01* X12345Y35153D01* X12383Y35135D01* Y33854D01* X12365Y33846D01* X12320Y33815D01* X12383Y33752D01* Y33247D01* X12320Y33184D01* X12365Y33153D01* X12383Y33145D01* Y31845D01* X12340Y31815D01* X12383Y31772D01* Y31227D01* X12340Y31184D01* X12383Y31154D01* Y29831D01* X12360Y29815D01* X12383Y29792D01* Y29207D01* X12360Y29184D01* X12383Y29168D01* Y27817D01* X12380Y27815D01* X12383Y27812D01* Y27187D01* X12380Y27184D01* X12383Y27182D01* Y25691D01* X12329Y25744D01* X12298Y25700D01* X12283Y25667D01* Y27293D01* X12309Y27255D01* X12381Y27327D01* X12365Y27350D01* X12343Y27397D01* X12329Y27447D01* X12325Y27500D01* X12329Y27552D01* X12343Y27602D01* X12365Y27650D01* X12381Y27673D01* X12309Y27744D01* X12283Y27706D01* Y29264D01* X12289Y29255D01* X12361Y29327D01* X12345Y29350D01* X12323Y29397D01* X12309Y29447D01* X12305Y29500D01* X12309Y29552D01* X12323Y29602D01* X12345Y29650D01* X12361Y29673D01* X12289Y29744D01* X12283Y29735D01* Y31268D01* X12341Y31327D01* X12325Y31350D01* X12303Y31397D01* X12289Y31447D01* X12285Y31500D01* X12289Y31552D01* X12303Y31602D01* X12325Y31650D01* X12341Y31673D01* X12283Y31731D01* Y33288D01* X12321Y33327D01* X12305Y33350D01* X12283Y33397D01* Y33602D01* X12305Y33650D01* X12321Y33673D01* X12283Y33711D01* Y35308D01* X12301Y35327D01* X12285Y35350D01* X12283Y35354D01* Y35645D01* X12285Y35650D01* X12301Y35673D01* X12283Y35691D01* Y37182D01* G37* G36* Y25333D02*X12298Y25300D01* X12329Y25255D01* X12383Y25308D01* Y23711D01* X12349Y23744D01* X12318Y23700D01* X12289Y23636D01* X12283Y23614D01* Y25333D01* G37* G36* Y23385D02*X12289Y23363D01* X12318Y23300D01* X12349Y23255D01* X12383Y23288D01* Y21731D01* X12369Y21744D01* X12338Y21700D01* X12309Y21636D01* X12291Y21569D01* X12285Y21500D01* X12291Y21430D01* X12309Y21363D01* X12338Y21300D01* X12369Y21255D01* X12383Y21268D01* Y19735D01* X12358Y19700D01* X12329Y19636D01* X12311Y19569D01* X12305Y19500D01* X12311Y19430D01* X12329Y19363D01* X12358Y19300D01* X12383Y19264D01* Y17706D01* X12378Y17700D01* X12349Y17636D01* X12331Y17569D01* X12325Y17500D01* X12331Y17430D01* X12349Y17363D01* X12378Y17300D01* X12383Y17293D01* Y15667D01* X12369Y15636D01* X12351Y15569D01* X12345Y15500D01* X12351Y15430D01* X12369Y15363D01* X12383Y15333D01* Y13614D01* X12371Y13569D01* X12365Y13500D01* X12371Y13430D01* X12383Y13385D01* Y0D01* X12283D01* Y23385D01* G37* G36* X12383Y25354D02*X12363Y25397D01* X12349Y25447D01* X12345Y25500D01* X12349Y25552D01* X12363Y25602D01* X12383Y25645D01* Y25354D01* G37* G36* Y23397D02*X12383Y23397D01* X12369Y23447D01* X12365Y23500D01* X12369Y23552D01* X12383Y23602D01* X12383Y23602D01* Y23397D01* G37* G36* Y40000D02*X12705D01* Y39846D01* X12641Y39875D01* X12574Y39893D01* X12505Y39900D01* X12435Y39893D01* X12383Y39879D01* Y40000D01* G37* G36* Y39772D02*X12402Y39781D01* X12452Y39795D01* X12505Y39800D01* X12557Y39795D01* X12607Y39781D01* X12655Y39759D01* X12678Y39743D01* X12705Y39770D01* Y39229D01* X12678Y39256D01* X12655Y39240D01* X12607Y39218D01* X12557Y39204D01* X12505Y39200D01* X12452Y39204D01* X12402Y39218D01* X12383Y39227D01* Y39772D01* G37* G36* Y39120D02*X12435Y39106D01* X12505Y39100D01* X12574Y39106D01* X12641Y39124D01* X12705Y39153D01* Y37855D01* X12661Y37875D01* X12594Y37893D01* X12525Y37900D01* X12455Y37893D01* X12388Y37875D01* X12383Y37873D01* Y39120D01* G37* G36* Y37763D02*X12422Y37781D01* X12472Y37795D01* X12525Y37800D01* X12577Y37795D01* X12627Y37781D01* X12675Y37759D01* X12698Y37743D01* X12705Y37750D01* Y37249D01* X12698Y37256D01* X12675Y37240D01* X12627Y37218D01* X12577Y37204D01* X12525Y37200D01* X12472Y37204D01* X12422Y37218D01* X12383Y37236D01* Y37763D01* G37* G36* Y37126D02*X12388Y37124D01* X12455Y37106D01* X12525Y37100D01* X12594Y37106D01* X12661Y37124D01* X12705Y37144D01* Y35865D01* X12681Y35875D01* X12614Y35893D01* X12545Y35900D01* X12475Y35893D01* X12408Y35875D01* X12383Y35864D01* Y37126D01* G37* G36* Y35751D02*X12395Y35759D01* X12442Y35781D01* X12492Y35795D01* X12545Y35800D01* X12597Y35795D01* X12647Y35781D01* X12695Y35759D01* X12705Y35752D01* Y35247D01* X12695Y35240D01* X12647Y35218D01* X12597Y35204D01* X12545Y35200D01* X12492Y35204D01* X12442Y35218D01* X12395Y35240D01* X12383Y35248D01* Y35751D01* G37* G36* Y35135D02*X12408Y35124D01* X12475Y35106D01* X12545Y35100D01* X12614Y35106D01* X12681Y35124D01* X12705Y35134D01* Y33874D01* X12701Y33875D01* X12634Y33893D01* X12565Y33900D01* X12495Y33893D01* X12428Y33875D01* X12383Y33854D01* Y35135D01* G37* G36* Y33752D02*X12392Y33743D01* X12415Y33759D01* X12462Y33781D01* X12512Y33795D01* X12565Y33800D01* X12617Y33795D01* X12667Y33781D01* X12705Y33764D01* Y33235D01* X12667Y33218D01* X12617Y33204D01* X12565Y33200D01* X12512Y33204D01* X12462Y33218D01* X12415Y33240D01* X12392Y33256D01* X12383Y33247D01* Y33752D01* G37* G36* Y33145D02*X12428Y33124D01* X12495Y33106D01* X12565Y33100D01* X12634Y33106D01* X12701Y33124D01* X12705Y33125D01* Y31880D01* X12654Y31893D01* X12585Y31900D01* X12515Y31893D01* X12448Y31875D01* X12385Y31846D01* X12383Y31845D01* Y33145D01* G37* G36* Y31772D02*X12412Y31743D01* X12435Y31759D01* X12482Y31781D01* X12532Y31795D01* X12585Y31800D01* X12637Y31795D01* X12687Y31781D01* X12705Y31773D01* Y31226D01* X12687Y31218D01* X12637Y31204D01* X12585Y31200D01* X12532Y31204D01* X12482Y31218D01* X12435Y31240D01* X12412Y31256D01* X12383Y31227D01* Y31772D01* G37* G36* Y31154D02*X12385Y31153D01* X12448Y31124D01* X12515Y31106D01* X12585Y31100D01* X12654Y31106D01* X12705Y31119D01* Y29885D01* X12674Y29893D01* X12605Y29900D01* X12535Y29893D01* X12468Y29875D01* X12405Y29846D01* X12383Y29831D01* Y31154D01* G37* G36* Y29792D02*X12432Y29743D01* X12455Y29759D01* X12502Y29781D01* X12552Y29795D01* X12605Y29800D01* X12657Y29795D01* X12705Y29782D01* Y29217D01* X12657Y29204D01* X12605Y29200D01* X12552Y29204D01* X12502Y29218D01* X12455Y29240D01* X12432Y29256D01* X12383Y29207D01* Y29792D01* G37* G36* Y29168D02*X12405Y29153D01* X12468Y29124D01* X12535Y29106D01* X12605Y29100D01* X12674Y29106D01* X12705Y29114D01* Y27891D01* X12694Y27893D01* X12625Y27900D01* X12555Y27893D01* X12488Y27875D01* X12425Y27846D01* X12383Y27817D01* Y29168D01* G37* G36* Y27812D02*X12452Y27743D01* X12475Y27759D01* X12522Y27781D01* X12572Y27795D01* X12625Y27800D01* X12677Y27795D01* X12705Y27787D01* Y27212D01* X12677Y27204D01* X12625Y27200D01* X12572Y27204D01* X12522Y27218D01* X12475Y27240D01* X12452Y27256D01* X12383Y27187D01* Y27812D01* G37* G36* Y27182D02*X12425Y27153D01* X12463Y27135D01* Y25854D01* X12445Y25846D01* X12400Y25815D01* X12463Y25752D01* Y25247D01* X12400Y25184D01* X12445Y25153D01* X12463Y25145D01* Y23845D01* X12420Y23815D01* X12463Y23772D01* Y23227D01* X12420Y23184D01* X12463Y23154D01* Y21831D01* X12440Y21815D01* X12463Y21792D01* Y21207D01* X12440Y21184D01* X12463Y21168D01* Y19817D01* X12460Y19815D01* X12463Y19812D01* Y19187D01* X12460Y19184D01* X12463Y19182D01* Y17691D01* X12409Y17744D01* X12383Y17706D01* Y19264D01* X12389Y19255D01* X12461Y19327D01* X12445Y19350D01* X12423Y19397D01* X12409Y19447D01* X12405Y19500D01* X12409Y19552D01* X12423Y19602D01* X12445Y19650D01* X12461Y19673D01* X12389Y19744D01* X12383Y19735D01* Y21268D01* X12441Y21327D01* X12425Y21350D01* X12403Y21397D01* X12389Y21447D01* X12385Y21500D01* X12389Y21552D01* X12403Y21602D01* X12425Y21650D01* X12441Y21673D01* X12383Y21731D01* Y23288D01* X12421Y23327D01* X12405Y23350D01* X12383Y23397D01* Y23602D01* X12405Y23650D01* X12421Y23673D01* X12383Y23711D01* Y25308D01* X12401Y25327D01* X12385Y25350D01* X12383Y25354D01* Y25645D01* X12385Y25650D01* X12401Y25673D01* X12383Y25691D01* Y27182D01* G37* G36* X12463Y0D02*X12383D01* Y13385D01* X12389Y13363D01* X12418Y13300D01* X12449Y13255D01* X12463Y13268D01* Y11735D01* X12438Y11700D01* X12409Y11636D01* X12391Y11569D01* X12385Y11500D01* X12391Y11430D01* X12409Y11363D01* X12438Y11300D01* X12463Y11264D01* Y9706D01* X12458Y9700D01* X12429Y9636D01* X12411Y9569D01* X12405Y9500D01* X12411Y9430D01* X12429Y9363D01* X12458Y9300D01* X12463Y9293D01* Y7667D01* X12449Y7636D01* X12431Y7569D01* X12425Y7500D01* X12431Y7430D01* X12449Y7363D01* X12463Y7333D01* Y5614D01* X12451Y5569D01* X12445Y5500D01* X12451Y5430D01* X12463Y5385D01* Y0D01* G37* G36* Y13731D02*X12449Y13744D01* X12418Y13700D01* X12389Y13636D01* X12383Y13614D01* Y15333D01* X12398Y15300D01* X12429Y15255D01* X12463Y15288D01* Y13731D01* G37* G36* Y15397D02*X12463Y15397D01* X12449Y15447D01* X12445Y15500D01* X12449Y15552D01* X12463Y15602D01* X12463Y15602D01* Y15397D01* G37* G36* Y15711D02*X12429Y15744D01* X12398Y15700D01* X12383Y15667D01* Y17293D01* X12409Y17255D01* X12463Y17308D01* Y15711D01* G37* G36* Y17354D02*X12443Y17397D01* X12429Y17447D01* X12425Y17500D01* X12429Y17552D01* X12443Y17602D01* X12463Y17645D01* Y17354D01* G37* G36* Y27135D02*X12488Y27124D01* X12555Y27106D01* X12625Y27100D01* X12694Y27106D01* X12705Y27108D01* Y25894D01* X12645Y25900D01* X12575Y25893D01* X12508Y25875D01* X12463Y25854D01* Y27135D01* G37* G36* Y25752D02*X12472Y25743D01* X12495Y25759D01* X12542Y25781D01* X12592Y25795D01* X12645Y25800D01* X12697Y25795D01* X12705Y25793D01* Y25206D01* X12697Y25204D01* X12645Y25200D01* X12592Y25204D01* X12542Y25218D01* X12495Y25240D01* X12472Y25256D01* X12463Y25247D01* Y25752D01* G37* G36* Y25145D02*X12508Y25124D01* X12575Y25106D01* X12645Y25100D01* X12705Y25105D01* Y23896D01* X12665Y23900D01* X12595Y23893D01* X12528Y23875D01* X12465Y23846D01* X12463Y23845D01* Y25145D01* G37* G36* Y23772D02*X12492Y23743D01* X12515Y23759D01* X12562Y23781D01* X12612Y23795D01* X12665Y23800D01* X12705Y23796D01* Y23203D01* X12665Y23200D01* X12612Y23204D01* X12562Y23218D01* X12515Y23240D01* X12492Y23256D01* X12463Y23227D01* Y23772D01* G37* G36* Y23154D02*X12465Y23153D01* X12528Y23124D01* X12595Y23106D01* X12665Y23100D01* X12705Y23103D01* Y21898D01* X12685Y21900D01* X12615Y21893D01* X12548Y21875D01* X12485Y21846D01* X12463Y21831D01* Y23154D01* G37* G36* Y21792D02*X12512Y21743D01* X12535Y21759D01* X12582Y21781D01* X12632Y21795D01* X12685Y21800D01* X12705Y21798D01* Y21201D01* X12685Y21200D01* X12632Y21204D01* X12582Y21218D01* X12535Y21240D01* X12512Y21256D01* X12463Y21207D01* Y21792D01* G37* G36* Y21168D02*X12485Y21153D01* X12548Y21124D01* X12615Y21106D01* X12685Y21100D01* X12705Y21101D01* Y19900D01* X12635Y19893D01* X12568Y19875D01* X12505Y19846D01* X12463Y19817D01* Y21168D01* G37* G36* Y19812D02*X12532Y19743D01* X12555Y19759D01* X12602Y19781D01* X12652Y19795D01* X12705Y19800D01* Y19200D01* X12652Y19204D01* X12602Y19218D01* X12555Y19240D01* X12532Y19256D01* X12463Y19187D01* Y19812D01* G37* G36* Y19182D02*X12505Y19153D01* X12543Y19135D01* Y17854D01* X12525Y17846D01* X12480Y17815D01* X12543Y17752D01* Y17247D01* X12480Y17184D01* X12525Y17153D01* X12543Y17145D01* Y15845D01* X12500Y15815D01* X12543Y15772D01* Y15227D01* X12500Y15184D01* X12543Y15154D01* Y13831D01* X12520Y13815D01* X12543Y13792D01* Y13207D01* X12520Y13184D01* X12543Y13168D01* Y11817D01* X12540Y11815D01* X12543Y11812D01* Y11187D01* X12540Y11184D01* X12543Y11182D01* Y9691D01* X12489Y9744D01* X12463Y9706D01* Y11264D01* X12469Y11255D01* X12541Y11327D01* X12525Y11350D01* X12503Y11397D01* X12489Y11447D01* X12485Y11500D01* X12489Y11552D01* X12503Y11602D01* X12525Y11650D01* X12541Y11673D01* X12469Y11744D01* X12463Y11735D01* Y13268D01* X12521Y13327D01* X12505Y13350D01* X12483Y13397D01* X12469Y13447D01* X12465Y13500D01* X12469Y13552D01* X12483Y13602D01* X12505Y13650D01* X12521Y13673D01* X12463Y13731D01* Y15288D01* X12501Y15327D01* X12485Y15350D01* X12463Y15397D01* Y15602D01* X12485Y15650D01* X12501Y15673D01* X12463Y15711D01* Y17308D01* X12481Y17327D01* X12465Y17350D01* X12463Y17354D01* Y17645D01* X12465Y17650D01* X12481Y17673D01* X12463Y17691D01* Y19182D01* G37* G36* X12543Y0D02*X12463D01* Y5385D01* X12469Y5363D01* X12498Y5300D01* X12529Y5255D01* X12543Y5268D01* Y3735D01* X12518Y3700D01* X12489Y3636D01* X12471Y3569D01* X12465Y3500D01* X12471Y3430D01* X12489Y3363D01* X12518Y3300D01* X12543Y3264D01* Y1706D01* X12538Y1700D01* X12509Y1636D01* X12491Y1569D01* X12485Y1500D01* X12491Y1430D01* X12509Y1363D01* X12538Y1300D01* X12543Y1293D01* Y0D01* G37* G36* Y5731D02*X12529Y5744D01* X12498Y5700D01* X12469Y5636D01* X12463Y5614D01* Y7333D01* X12478Y7300D01* X12509Y7255D01* X12543Y7288D01* Y5731D01* G37* G36* Y7397D02*X12543Y7397D01* X12529Y7447D01* X12525Y7500D01* X12529Y7552D01* X12543Y7602D01* X12543Y7602D01* Y7397D01* G37* G36* Y7711D02*X12509Y7744D01* X12478Y7700D01* X12463Y7667D01* Y9293D01* X12489Y9255D01* X12543Y9308D01* Y7711D01* G37* G36* Y9354D02*X12523Y9397D01* X12509Y9447D01* X12505Y9500D01* X12509Y9552D01* X12523Y9602D01* X12543Y9645D01* Y9354D01* G37* G36* Y19135D02*X12568Y19124D01* X12635Y19106D01* X12705Y19100D01* Y17898D01* X12655Y17893D01* X12588Y17875D01* X12543Y17854D01* Y19135D01* G37* G36* Y17752D02*X12552Y17743D01* X12575Y17759D01* X12622Y17781D01* X12672Y17795D01* X12705Y17798D01* Y17201D01* X12672Y17204D01* X12622Y17218D01* X12575Y17240D01* X12552Y17256D01* X12543Y17247D01* Y17752D01* G37* G36* Y17145D02*X12588Y17124D01* X12655Y17106D01* X12705Y17101D01* Y15896D01* X12675Y15893D01* X12608Y15875D01* X12545Y15846D01* X12543Y15845D01* Y17145D01* G37* G36* Y15772D02*X12572Y15743D01* X12595Y15759D01* X12642Y15781D01* X12692Y15795D01* X12705Y15796D01* Y15203D01* X12692Y15204D01* X12642Y15218D01* X12595Y15240D01* X12572Y15256D01* X12543Y15227D01* Y15772D01* G37* G36* Y15154D02*X12545Y15153D01* X12608Y15124D01* X12675Y15106D01* X12705Y15103D01* Y13894D01* X12695Y13893D01* X12628Y13875D01* X12565Y13846D01* X12543Y13831D01* Y15154D01* G37* G36* Y13792D02*X12592Y13743D01* X12615Y13759D01* X12662Y13781D01* X12705Y13793D01* Y13206D01* X12662Y13218D01* X12615Y13240D01* X12592Y13256D01* X12543Y13207D01* Y13792D01* G37* G36* Y13168D02*X12565Y13153D01* X12628Y13124D01* X12695Y13106D01* X12705Y13105D01* Y11891D01* X12648Y11875D01* X12585Y11846D01* X12543Y11817D01* Y13168D01* G37* G36* Y11812D02*X12612Y11743D01* X12635Y11759D01* X12682Y11781D01* X12705Y11787D01* Y11212D01* X12682Y11218D01* X12635Y11240D01* X12612Y11256D01* X12543Y11187D01* Y11812D01* G37* G36* Y11182D02*X12585Y11153D01* X12648Y11124D01* X12705Y11108D01* Y9885D01* X12668Y9875D01* X12605Y9846D01* X12560Y9815D01* X12632Y9743D01* X12655Y9759D01* X12702Y9781D01* X12705Y9782D01* Y9217D01* X12702Y9218D01* X12655Y9240D01* X12632Y9256D01* X12560Y9184D01* X12605Y9153D01* X12668Y9124D01* X12705Y9114D01* Y7880D01* X12688Y7875D01* X12625Y7846D01* X12580Y7815D01* X12652Y7743D01* X12675Y7759D01* X12705Y7773D01* Y7226D01* X12675Y7240D01* X12652Y7256D01* X12580Y7184D01* X12625Y7153D01* X12688Y7124D01* X12705Y7119D01* Y5874D01* X12645Y5846D01* X12600Y5815D01* X12672Y5743D01* X12695Y5759D01* X12705Y5764D01* Y5235D01* X12695Y5240D01* X12672Y5256D01* X12600Y5184D01* X12645Y5153D01* X12705Y5125D01* Y3865D01* X12665Y3846D01* X12620Y3815D01* X12692Y3743D01* X12705Y3752D01* Y3247D01* X12692Y3256D01* X12620Y3184D01* X12665Y3153D01* X12705Y3134D01* Y1855D01* X12685Y1846D01* X12640Y1815D01* X12705Y1750D01* Y1249D01* X12640Y1184D01* X12685Y1153D01* X12705Y1144D01* Y0D01* X12543D01* Y1293D01* X12569Y1255D01* X12641Y1327D01* X12625Y1350D01* X12603Y1397D01* X12589Y1447D01* X12585Y1500D01* X12589Y1552D01* X12603Y1602D01* X12625Y1650D01* X12641Y1673D01* X12569Y1744D01* X12543Y1706D01* Y3264D01* X12549Y3255D01* X12621Y3327D01* X12605Y3350D01* X12583Y3397D01* X12569Y3447D01* X12565Y3500D01* X12569Y3552D01* X12583Y3602D01* X12605Y3650D01* X12621Y3673D01* X12549Y3744D01* X12543Y3735D01* Y5268D01* X12601Y5327D01* X12585Y5350D01* X12563Y5397D01* X12549Y5447D01* X12545Y5500D01* X12549Y5552D01* X12563Y5602D01* X12585Y5650D01* X12601Y5673D01* X12543Y5731D01* Y7288D01* X12581Y7327D01* X12565Y7350D01* X12543Y7397D01* Y7602D01* X12565Y7650D01* X12581Y7673D01* X12543Y7711D01* Y9308D01* X12561Y9327D01* X12545Y9350D01* X12543Y9354D01* Y9645D01* X12545Y9650D01* X12561Y9673D01* X12543Y9691D01* Y11182D01* G37* G36* X12705Y40000D02*X12826D01* Y39734D01* X12820Y39744D01* X12748Y39673D01* X12764Y39650D01* X12786Y39602D01* X12800Y39552D01* X12805Y39500D01* X12800Y39447D01* X12786Y39397D01* X12764Y39350D01* X12748Y39327D01* X12820Y39255D01* X12826Y39265D01* Y37731D01* X12768Y37673D01* X12784Y37650D01* X12806Y37602D01* X12820Y37552D01* X12825Y37500D01* X12820Y37447D01* X12806Y37397D01* X12784Y37350D01* X12768Y37327D01* X12826Y37268D01* Y35711D01* X12788Y35673D01* X12804Y35650D01* X12826Y35602D01* Y35397D01* X12804Y35350D01* X12788Y35327D01* X12826Y35288D01* Y33691D01* X12808Y33673D01* X12824Y33650D01* X12826Y33645D01* Y33354D01* X12824Y33350D01* X12808Y33327D01* X12826Y33308D01* Y31817D01* X12785Y31846D01* X12721Y31875D01* X12705Y31880D01* Y33125D01* X12765Y33153D01* X12809Y33184D01* X12738Y33256D01* X12715Y33240D01* X12705Y33235D01* Y33764D01* X12715Y33759D01* X12738Y33743D01* X12809Y33815D01* X12765Y33846D01* X12705Y33874D01* Y35134D01* X12745Y35153D01* X12789Y35184D01* X12718Y35256D01* X12705Y35247D01* Y35752D01* X12718Y35743D01* X12789Y35815D01* X12745Y35846D01* X12705Y35865D01* Y37144D01* X12725Y37153D01* X12769Y37184D01* X12705Y37249D01* Y37750D01* X12769Y37815D01* X12725Y37846D01* X12705Y37855D01* Y39153D01* X12749Y39184D01* X12705Y39229D01* Y39770D01* X12749Y39815D01* X12705Y39846D01* Y40000D01* G37* G36* X12826Y21873D02*X12821Y21875D01* X12754Y21893D01* X12705Y21898D01* Y23103D01* X12734Y23106D01* X12801Y23124D01* X12826Y23135D01* Y21873D01* G37* G36* Y23248D02*X12815Y23240D01* X12767Y23218D01* X12717Y23204D01* X12705Y23203D01* Y23796D01* X12717Y23795D01* X12767Y23781D01* X12815Y23759D01* X12826Y23751D01* Y23248D01* G37* G36* Y23864D02*X12801Y23875D01* X12734Y23893D01* X12705Y23896D01* Y25105D01* X12714Y25106D01* X12781Y25124D01* X12826Y25145D01* Y23864D01* G37* G36* Y25247D02*X12818Y25256D01* X12795Y25240D01* X12747Y25218D01* X12705Y25206D01* Y25793D01* X12747Y25781D01* X12795Y25759D01* X12818Y25743D01* X12826Y25752D01* Y25247D01* G37* G36* Y25854D02*X12781Y25875D01* X12714Y25893D01* X12705Y25894D01* Y27108D01* X12761Y27124D01* X12825Y27153D01* X12826Y27154D01* Y25854D01* G37* G36* Y27227D02*X12798Y27256D01* X12775Y27240D01* X12727Y27218D01* X12705Y27212D01* Y27787D01* X12727Y27781D01* X12775Y27759D01* X12798Y27743D01* X12826Y27772D01* Y27227D01* G37* G36* Y27845D02*X12825Y27846D01* X12761Y27875D01* X12705Y27891D01* Y29114D01* X12741Y29124D01* X12805Y29153D01* X12826Y29169D01* Y27845D01* G37* G36* Y29207D02*X12778Y29256D01* X12755Y29240D01* X12707Y29218D01* X12705Y29217D01* Y29782D01* X12707Y29781D01* X12755Y29759D01* X12778Y29743D01* X12826Y29792D01* Y29207D01* G37* G36* Y29831D02*X12805Y29846D01* X12741Y29875D01* X12705Y29885D01* Y31119D01* X12721Y31124D01* X12785Y31153D01* X12826Y31183D01* Y29831D01* G37* G36* Y31187D02*X12758Y31256D01* X12735Y31240D01* X12705Y31226D01* Y31773D01* X12735Y31759D01* X12758Y31743D01* X12826Y31812D01* Y31187D01* G37* G36* Y40000D02*X12926D01* Y35614D01* X12920Y35636D01* X12891Y35700D01* X12860Y35744D01* X12826Y35711D01* Y37268D01* X12840Y37255D01* X12871Y37300D01* X12900Y37363D01* X12918Y37430D01* X12925Y37500D01* X12918Y37569D01* X12900Y37636D01* X12871Y37700D01* X12840Y37744D01* X12826Y37731D01* Y39265D01* X12851Y39300D01* X12880Y39363D01* X12898Y39430D01* X12905Y39500D01* X12898Y39569D01* X12880Y39636D01* X12851Y39700D01* X12826Y39734D01* Y40000D01* G37* G36* Y35602D02*X12840Y35552D01* X12845Y35500D01* X12840Y35447D01* X12826Y35397D01* Y35602D01* G37* G36* Y35288D02*X12860Y35255D01* X12891Y35300D01* X12920Y35363D01* X12926Y35385D01* Y33666D01* X12911Y33700D01* X12880Y33744D01* X12826Y33691D01* Y35288D01* G37* G36* Y33645D02*X12846Y33602D01* X12860Y33552D01* X12865Y33500D01* X12860Y33447D01* X12846Y33397D01* X12826Y33354D01* Y33645D01* G37* G36* Y33308D02*X12880Y33255D01* X12911Y33300D01* X12926Y33333D01* Y31706D01* X12900Y31744D01* X12828Y31673D01* X12844Y31650D01* X12866Y31602D01* X12880Y31552D01* X12885Y31500D01* X12880Y31447D01* X12866Y31397D01* X12844Y31350D01* X12828Y31327D01* X12900Y31255D01* X12926Y31293D01* Y29734D01* X12920Y29744D01* X12848Y29673D01* X12864Y29650D01* X12886Y29602D01* X12900Y29552D01* X12905Y29500D01* X12900Y29447D01* X12886Y29397D01* X12864Y29350D01* X12848Y29327D01* X12920Y29255D01* X12926Y29265D01* Y27731D01* X12868Y27673D01* X12884Y27650D01* X12906Y27602D01* X12920Y27552D01* X12925Y27500D01* X12920Y27447D01* X12906Y27397D01* X12884Y27350D01* X12868Y27327D01* X12926Y27268D01* Y25711D01* X12888Y25673D01* X12904Y25650D01* X12926Y25602D01* Y25397D01* X12904Y25350D01* X12888Y25327D01* X12926Y25288D01* Y23691D01* X12908Y23673D01* X12924Y23650D01* X12926Y23645D01* Y23354D01* X12924Y23350D01* X12908Y23327D01* X12926Y23308D01* Y21817D01* X12885Y21846D01* X12826Y21873D01* Y23135D01* X12865Y23153D01* X12909Y23184D01* X12838Y23256D01* X12826Y23248D01* Y23751D01* X12838Y23743D01* X12909Y23815D01* X12865Y23846D01* X12826Y23864D01* Y25145D01* X12845Y25153D01* X12889Y25184D01* X12826Y25247D01* Y25752D01* X12889Y25815D01* X12845Y25846D01* X12826Y25854D01* Y27154D01* X12869Y27184D01* X12826Y27227D01* Y27772D01* X12869Y27815D01* X12826Y27845D01* Y29169D01* X12849Y29184D01* X12826Y29207D01* Y29792D01* X12849Y29815D01* X12826Y29831D01* Y31183D01* X12829Y31184D01* X12826Y31187D01* Y31812D01* X12829Y31815D01* X12826Y31817D01* Y33308D01* G37* G36* X12926Y11873D02*X12921Y11875D01* X12854Y11893D01* X12785Y11900D01* X12715Y11893D01* X12705Y11891D01* Y13105D01* X12765Y13100D01* X12834Y13106D01* X12901Y13124D01* X12926Y13135D01* Y11873D01* G37* G36* Y13248D02*X12915Y13240D01* X12867Y13218D01* X12817Y13204D01* X12765Y13200D01* X12712Y13204D01* X12705Y13206D01* Y13793D01* X12712Y13795D01* X12765Y13800D01* X12817Y13795D01* X12867Y13781D01* X12915Y13759D01* X12926Y13751D01* Y13248D01* G37* G36* Y13864D02*X12901Y13875D01* X12834Y13893D01* X12765Y13900D01* X12705Y13894D01* Y15103D01* X12745Y15100D01* X12814Y15106D01* X12881Y15124D01* X12926Y15145D01* Y13864D01* G37* G36* Y15247D02*X12918Y15256D01* X12895Y15240D01* X12847Y15218D01* X12797Y15204D01* X12745Y15200D01* X12705Y15203D01* Y15796D01* X12745Y15800D01* X12797Y15795D01* X12847Y15781D01* X12895Y15759D01* X12918Y15743D01* X12926Y15752D01* Y15247D01* G37* G36* Y15854D02*X12881Y15875D01* X12814Y15893D01* X12745Y15900D01* X12705Y15896D01* Y17101D01* X12725Y17100D01* X12794Y17106D01* X12861Y17124D01* X12925Y17153D01* X12926Y17154D01* Y15854D01* G37* G36* Y17227D02*X12898Y17256D01* X12875Y17240D01* X12827Y17218D01* X12777Y17204D01* X12725Y17200D01* X12705Y17201D01* Y17798D01* X12725Y17800D01* X12777Y17795D01* X12827Y17781D01* X12875Y17759D01* X12898Y17743D01* X12926Y17772D01* Y17227D01* G37* G36* Y17845D02*X12925Y17846D01* X12861Y17875D01* X12794Y17893D01* X12725Y17900D01* X12705Y17898D01* Y19100D01* X12774Y19106D01* X12841Y19124D01* X12905Y19153D01* X12926Y19169D01* Y17845D01* G37* G36* Y19207D02*X12878Y19256D01* X12855Y19240D01* X12807Y19218D01* X12757Y19204D01* X12705Y19200D01* Y19800D01* X12757Y19795D01* X12807Y19781D01* X12855Y19759D01* X12878Y19743D01* X12926Y19792D01* Y19207D01* G37* G36* Y19831D02*X12905Y19846D01* X12841Y19875D01* X12774Y19893D01* X12705Y19900D01* Y21101D01* X12754Y21106D01* X12821Y21124D01* X12885Y21153D01* X12926Y21183D01* Y19831D01* G37* G36* Y21187D02*X12858Y21256D01* X12835Y21240D01* X12787Y21218D01* X12737Y21204D01* X12705Y21201D01* Y21798D01* X12737Y21795D01* X12787Y21781D01* X12835Y21759D01* X12858Y21743D01* X12926Y21812D01* Y21187D01* G37* G36* Y40000D02*X13026D01* Y25614D01* X13020Y25636D01* X12991Y25700D01* X12960Y25744D01* X12926Y25711D01* Y27268D01* X12940Y27255D01* X12971Y27300D01* X13000Y27363D01* X13018Y27430D01* X13025Y27500D01* X13018Y27569D01* X13000Y27636D01* X12971Y27700D01* X12940Y27744D01* X12926Y27731D01* Y29265D01* X12951Y29300D01* X12980Y29363D01* X12998Y29430D01* X13005Y29500D01* X12998Y29569D01* X12980Y29636D01* X12951Y29700D01* X12926Y29734D01* Y31293D01* X12931Y31300D01* X12960Y31363D01* X12978Y31430D01* X12985Y31500D01* X12978Y31569D01* X12960Y31636D01* X12931Y31700D01* X12926Y31706D01* Y33333D01* X12940Y33363D01* X12958Y33430D01* X12965Y33500D01* X12958Y33569D01* X12940Y33636D01* X12926Y33666D01* Y35385D01* X12938Y35430D01* X12945Y35500D01* X12938Y35569D01* X12926Y35614D01* Y40000D01* G37* G36* Y25602D02*X12940Y25552D01* X12945Y25500D01* X12940Y25447D01* X12926Y25397D01* Y25602D01* G37* G36* Y25288D02*X12960Y25255D01* X12991Y25300D01* X13020Y25363D01* X13026Y25385D01* Y23666D01* X13011Y23700D01* X12980Y23744D01* X12926Y23691D01* Y25288D01* G37* G36* Y23645D02*X12946Y23602D01* X12960Y23552D01* X12965Y23500D01* X12960Y23447D01* X12946Y23397D01* X12926Y23354D01* Y23645D01* G37* G36* Y23308D02*X12980Y23255D01* X13011Y23300D01* X13026Y23333D01* Y21706D01* X13000Y21744D01* X12928Y21673D01* X12944Y21650D01* X12966Y21602D01* X12980Y21552D01* X12985Y21500D01* X12980Y21447D01* X12966Y21397D01* X12944Y21350D01* X12928Y21327D01* X13000Y21255D01* X13026Y21293D01* Y19734D01* X13020Y19744D01* X12948Y19673D01* X12964Y19650D01* X12986Y19602D01* X13000Y19552D01* X13005Y19500D01* X13000Y19447D01* X12986Y19397D01* X12964Y19350D01* X12948Y19327D01* X13020Y19255D01* X13026Y19265D01* Y17731D01* X12968Y17673D01* X12984Y17650D01* X13006Y17602D01* X13020Y17552D01* X13025Y17500D01* X13020Y17447D01* X13006Y17397D01* X12984Y17350D01* X12968Y17327D01* X13026Y17268D01* Y15711D01* X12988Y15673D01* X13004Y15650D01* X13026Y15602D01* Y15397D01* X13004Y15350D01* X12988Y15327D01* X13026Y15288D01* Y13691D01* X13008Y13673D01* X13024Y13650D01* X13026Y13645D01* Y13354D01* X13024Y13350D01* X13008Y13327D01* X13026Y13308D01* Y11817D01* X12985Y11846D01* X12926Y11873D01* Y13135D01* X12965Y13153D01* X13009Y13184D01* X12938Y13256D01* X12926Y13248D01* Y13751D01* X12938Y13743D01* X13009Y13815D01* X12965Y13846D01* X12926Y13864D01* Y15145D01* X12945Y15153D01* X12989Y15184D01* X12926Y15247D01* Y15752D01* X12989Y15815D01* X12945Y15846D01* X12926Y15854D01* Y17154D01* X12969Y17184D01* X12926Y17227D01* Y17772D01* X12969Y17815D01* X12926Y17845D01* Y19169D01* X12949Y19184D01* X12926Y19207D01* Y19792D01* X12949Y19815D01* X12926Y19831D01* Y21183D01* X12929Y21184D01* X12926Y21187D01* Y21812D01* X12929Y21815D01* X12926Y21817D01* Y23308D01* G37* G36* X12705Y11787D02*X12732Y11795D01* X12785Y11800D01* X12837Y11795D01* X12887Y11781D01* X12935Y11759D01* X12958Y11743D01* X13026Y11812D01* Y11187D01* X12958Y11256D01* X12935Y11240D01* X12887Y11218D01* X12837Y11204D01* X12785Y11200D01* X12732Y11204D01* X12705Y11212D01* Y11787D01* G37* G36* Y11108D02*X12715Y11106D01* X12785Y11100D01* X12854Y11106D01* X12921Y11124D01* X12985Y11153D01* X13026Y11183D01* Y9831D01* X13005Y9846D01* X12941Y9875D01* X12874Y9893D01* X12805Y9900D01* X12735Y9893D01* X12705Y9885D01* Y11108D01* G37* G36* Y9782D02*X12752Y9795D01* X12805Y9800D01* X12857Y9795D01* X12907Y9781D01* X12955Y9759D01* X12978Y9743D01* X13026Y9792D01* Y9207D01* X12978Y9256D01* X12955Y9240D01* X12907Y9218D01* X12857Y9204D01* X12805Y9200D01* X12752Y9204D01* X12705Y9217D01* Y9782D01* G37* G36* Y9114D02*X12735Y9106D01* X12805Y9100D01* X12874Y9106D01* X12941Y9124D01* X13005Y9153D01* X13026Y9169D01* Y7845D01* X13025Y7846D01* X12961Y7875D01* X12894Y7893D01* X12825Y7900D01* X12755Y7893D01* X12705Y7880D01* Y9114D01* G37* G36* Y7773D02*X12722Y7781D01* X12772Y7795D01* X12825Y7800D01* X12877Y7795D01* X12927Y7781D01* X12975Y7759D01* X12998Y7743D01* X13026Y7772D01* Y7227D01* X12998Y7256D01* X12975Y7240D01* X12927Y7218D01* X12877Y7204D01* X12825Y7200D01* X12772Y7204D01* X12722Y7218D01* X12705Y7226D01* Y7773D01* G37* G36* Y7119D02*X12755Y7106D01* X12825Y7100D01* X12894Y7106D01* X12961Y7124D01* X13025Y7153D01* X13026Y7154D01* Y5854D01* X12981Y5875D01* X12914Y5893D01* X12845Y5900D01* X12775Y5893D01* X12708Y5875D01* X12705Y5874D01* Y7119D01* G37* G36* Y5764D02*X12742Y5781D01* X12792Y5795D01* X12845Y5800D01* X12897Y5795D01* X12947Y5781D01* X12995Y5759D01* X13018Y5743D01* X13026Y5752D01* Y5247D01* X13018Y5256D01* X12995Y5240D01* X12947Y5218D01* X12897Y5204D01* X12845Y5200D01* X12792Y5204D01* X12742Y5218D01* X12705Y5235D01* Y5764D01* G37* G36* Y5125D02*X12708Y5124D01* X12775Y5106D01* X12845Y5100D01* X12914Y5106D01* X12981Y5124D01* X13026Y5145D01* Y3864D01* X13001Y3875D01* X12934Y3893D01* X12865Y3900D01* X12795Y3893D01* X12728Y3875D01* X12705Y3865D01* Y5125D01* G37* G36* Y3752D02*X12715Y3759D01* X12762Y3781D01* X12812Y3795D01* X12865Y3800D01* X12917Y3795D01* X12967Y3781D01* X13015Y3759D01* X13026Y3751D01* Y3248D01* X13015Y3240D01* X12967Y3218D01* X12917Y3204D01* X12865Y3200D01* X12812Y3204D01* X12762Y3218D01* X12715Y3240D01* X12705Y3247D01* Y3752D01* G37* G36* Y3134D02*X12728Y3124D01* X12795Y3106D01* X12865Y3100D01* X12934Y3106D01* X13001Y3124D01* X13026Y3135D01* Y1873D01* X13021Y1875D01* X12954Y1893D01* X12885Y1900D01* X12815Y1893D01* X12748Y1875D01* X12705Y1855D01* Y3134D01* G37* G36* Y1750D02*X12712Y1743D01* X12735Y1759D01* X12782Y1781D01* X12832Y1795D01* X12885Y1800D01* X12937Y1795D01* X12987Y1781D01* X13026Y1763D01* Y1236D01* X12987Y1218D01* X12937Y1204D01* X12885Y1200D01* X12832Y1204D01* X12782Y1218D01* X12735Y1240D01* X12712Y1256D01* X12705Y1249D01* Y1750D01* G37* G36* Y1144D02*X12748Y1124D01* X12815Y1106D01* X12885Y1100D01* X12954Y1106D01* X13021Y1124D01* X13026Y1126D01* Y0D01* X12705D01* Y1144D01* G37* G36* X13026Y40000D02*X13106D01* Y17614D01* X13100Y17636D01* X13071Y17700D01* X13040Y17744D01* X13026Y17731D01* Y19265D01* X13051Y19300D01* X13080Y19363D01* X13098Y19430D01* X13105Y19500D01* X13098Y19569D01* X13080Y19636D01* X13051Y19700D01* X13026Y19734D01* Y21293D01* X13031Y21300D01* X13060Y21363D01* X13078Y21430D01* X13085Y21500D01* X13078Y21569D01* X13060Y21636D01* X13031Y21700D01* X13026Y21706D01* Y23333D01* X13040Y23363D01* X13058Y23430D01* X13065Y23500D01* X13058Y23569D01* X13040Y23636D01* X13026Y23666D01* Y25385D01* X13038Y25430D01* X13045Y25500D01* X13038Y25569D01* X13026Y25614D01* Y40000D01* G37* G36* X13106Y0D02*X13026D01* Y1126D01* X13085Y1153D01* X13106Y1169D01* Y0D01* G37* G36* Y1207D02*X13058Y1256D01* X13035Y1240D01* X13026Y1236D01* Y1763D01* X13035Y1759D01* X13058Y1743D01* X13106Y1792D01* Y1207D01* G37* G36* Y1831D02*X13085Y1846D01* X13026Y1873D01* Y3135D01* X13065Y3153D01* X13106Y3183D01* Y1831D01* G37* G36* Y3187D02*X13038Y3256D01* X13026Y3248D01* Y3751D01* X13038Y3743D01* X13106Y3812D01* Y3187D01* G37* G36* Y3817D02*X13065Y3846D01* X13026Y3864D01* Y5145D01* X13045Y5153D01* X13089Y5184D01* X13026Y5247D01* Y5752D01* X13089Y5815D01* X13045Y5846D01* X13026Y5854D01* Y7154D01* X13069Y7184D01* X13026Y7227D01* Y7772D01* X13069Y7815D01* X13026Y7845D01* Y9169D01* X13049Y9184D01* X13026Y9207D01* Y9792D01* X13049Y9815D01* X13026Y9831D01* Y11183D01* X13029Y11184D01* X13026Y11187D01* Y11812D01* X13029Y11815D01* X13026Y11817D01* Y13308D01* X13080Y13255D01* X13106Y13293D01* Y11734D01* X13100Y11744D01* X13028Y11673D01* X13044Y11650D01* X13066Y11602D01* X13080Y11552D01* X13085Y11500D01* X13080Y11447D01* X13066Y11397D01* X13044Y11350D01* X13028Y11327D01* X13100Y11255D01* X13106Y11265D01* Y9731D01* X13048Y9673D01* X13064Y9650D01* X13086Y9602D01* X13100Y9552D01* X13105Y9500D01* X13100Y9447D01* X13086Y9397D01* X13064Y9350D01* X13048Y9327D01* X13106Y9268D01* Y7711D01* X13068Y7673D01* X13084Y7650D01* X13106Y7602D01* Y7397D01* X13084Y7350D01* X13068Y7327D01* X13106Y7288D01* Y5691D01* X13088Y5673D01* X13104Y5650D01* X13106Y5645D01* Y5354D01* X13104Y5350D01* X13088Y5327D01* X13106Y5308D01* Y3817D01* G37* G36* Y13706D02*X13080Y13744D01* X13026Y13691D01* Y15288D01* X13060Y15255D01* X13091Y15300D01* X13106Y15333D01* Y13706D01* G37* G36* Y15666D02*X13091Y15700D01* X13060Y15744D01* X13026Y15711D01* Y17268D01* X13040Y17255D01* X13071Y17300D01* X13100Y17363D01* X13106Y17385D01* Y15666D01* G37* G36* Y40000D02*X13186D01* Y9614D01* X13180Y9636D01* X13151Y9700D01* X13120Y9744D01* X13106Y9731D01* Y11265D01* X13131Y11300D01* X13160Y11363D01* X13178Y11430D01* X13185Y11500D01* X13178Y11569D01* X13160Y11636D01* X13131Y11700D01* X13106Y11734D01* Y13293D01* X13111Y13300D01* X13140Y13363D01* X13158Y13430D01* X13165Y13500D01* X13158Y13569D01* X13140Y13636D01* X13111Y13700D01* X13106Y13706D01* Y15333D01* X13120Y15363D01* X13138Y15430D01* X13145Y15500D01* X13138Y15569D01* X13120Y15636D01* X13106Y15666D01* Y17385D01* X13118Y17430D01* X13125Y17500D01* X13118Y17569D01* X13106Y17614D01* Y40000D01* G37* G36* X13186Y0D02*X13106D01* Y1169D01* X13129Y1184D01* X13106Y1207D01* Y1792D01* X13129Y1815D01* X13106Y1831D01* Y3183D01* X13109Y3184D01* X13106Y3187D01* Y3812D01* X13109Y3815D01* X13106Y3817D01* Y5308D01* X13160Y5255D01* X13186Y5293D01* Y3734D01* X13180Y3744D01* X13108Y3673D01* X13124Y3650D01* X13146Y3602D01* X13160Y3552D01* X13165Y3500D01* X13160Y3447D01* X13146Y3397D01* X13124Y3350D01* X13108Y3327D01* X13180Y3255D01* X13186Y3265D01* Y1731D01* X13128Y1673D01* X13144Y1650D01* X13166Y1602D01* X13180Y1552D01* X13185Y1500D01* X13180Y1447D01* X13166Y1397D01* X13144Y1350D01* X13128Y1327D01* X13186Y1268D01* Y0D01* G37* G36* Y5706D02*X13160Y5744D01* X13106Y5691D01* Y7288D01* X13140Y7255D01* X13171Y7300D01* X13186Y7333D01* Y5706D01* G37* G36* Y7666D02*X13171Y7700D01* X13140Y7744D01* X13106Y7711D01* Y9268D01* X13120Y9255D01* X13151Y9300D01* X13180Y9363D01* X13186Y9385D01* Y7666D01* G37* G36* Y40000D02*X14203D01* Y39731D01* X14189Y39744D01* X14158Y39700D01* X14129Y39636D01* X14111Y39569D01* X14105Y39500D01* X14111Y39430D01* X14129Y39363D01* X14158Y39300D01* X14189Y39255D01* X14203Y39268D01* Y37735D01* X14178Y37700D01* X14149Y37636D01* X14131Y37569D01* X14125Y37500D01* X14131Y37430D01* X14149Y37363D01* X14178Y37300D01* X14203Y37264D01* Y35706D01* X14198Y35700D01* X14169Y35636D01* X14151Y35569D01* X14145Y35500D01* X14151Y35430D01* X14169Y35363D01* X14198Y35300D01* X14203Y35293D01* Y33667D01* X14189Y33636D01* X14171Y33569D01* X14165Y33500D01* X14171Y33430D01* X14189Y33363D01* X14203Y33333D01* Y31614D01* X14191Y31569D01* X14185Y31500D01* X14191Y31430D01* X14203Y31385D01* Y0D01* X13186D01* Y1268D01* X13200Y1255D01* X13231Y1300D01* X13260Y1363D01* X13278Y1430D01* X13285Y1500D01* X13278Y1569D01* X13260Y1636D01* X13231Y1700D01* X13200Y1744D01* X13186Y1731D01* Y3265D01* X13211Y3300D01* X13240Y3363D01* X13258Y3430D01* X13265Y3500D01* X13258Y3569D01* X13240Y3636D01* X13211Y3700D01* X13186Y3734D01* Y5293D01* X13191Y5300D01* X13220Y5363D01* X13238Y5430D01* X13245Y5500D01* X13238Y5569D01* X13220Y5636D01* X13191Y5700D01* X13186Y5706D01* Y7333D01* X13200Y7363D01* X13218Y7430D01* X13225Y7500D01* X13218Y7569D01* X13200Y7636D01* X13186Y7666D01* Y9385D01* X13198Y9430D01* X13205Y9500D01* X13198Y9569D01* X13186Y9614D01* Y40000D01* G37* G36* X14203D02*X14343D01* Y39864D01* X14305Y39846D01* X14260Y39815D01* X14332Y39743D01* X14343Y39751D01* Y39248D01* X14332Y39256D01* X14260Y39184D01* X14305Y39153D01* X14343Y39135D01* Y37854D01* X14325Y37846D01* X14280Y37815D01* X14343Y37752D01* Y37247D01* X14280Y37184D01* X14325Y37153D01* X14343Y37145D01* Y35845D01* X14300Y35815D01* X14343Y35772D01* Y35227D01* X14300Y35184D01* X14343Y35154D01* Y33831D01* X14320Y33815D01* X14343Y33792D01* Y33207D01* X14320Y33184D01* X14343Y33168D01* Y31817D01* X14340Y31815D01* X14343Y31812D01* Y31187D01* X14340Y31184D01* X14343Y31182D01* Y29691D01* X14289Y29744D01* X14258Y29700D01* X14229Y29636D01* X14211Y29569D01* X14205Y29500D01* X14211Y29430D01* X14229Y29363D01* X14258Y29300D01* X14289Y29255D01* X14343Y29308D01* Y27711D01* X14309Y27744D01* X14278Y27700D01* X14249Y27636D01* X14231Y27569D01* X14225Y27500D01* X14231Y27430D01* X14249Y27363D01* X14278Y27300D01* X14309Y27255D01* X14343Y27288D01* Y25731D01* X14329Y25744D01* X14298Y25700D01* X14269Y25636D01* X14251Y25569D01* X14245Y25500D01* X14251Y25430D01* X14269Y25363D01* X14298Y25300D01* X14329Y25255D01* X14343Y25268D01* Y23735D01* X14318Y23700D01* X14289Y23636D01* X14271Y23569D01* X14265Y23500D01* X14271Y23430D01* X14289Y23363D01* X14318Y23300D01* X14343Y23264D01* Y21706D01* X14338Y21700D01* X14309Y21636D01* X14291Y21569D01* X14285Y21500D01* X14291Y21430D01* X14309Y21363D01* X14338Y21300D01* X14343Y21293D01* Y19667D01* X14329Y19636D01* X14311Y19569D01* X14305Y19500D01* X14311Y19430D01* X14329Y19363D01* X14343Y19333D01* Y17614D01* X14331Y17569D01* X14325Y17500D01* X14331Y17430D01* X14343Y17385D01* Y0D01* X14203D01* Y31385D01* X14209Y31363D01* X14238Y31300D01* X14269Y31255D01* X14341Y31327D01* X14325Y31350D01* X14303Y31397D01* X14289Y31447D01* X14285Y31500D01* X14289Y31552D01* X14303Y31602D01* X14325Y31650D01* X14341Y31673D01* X14269Y31744D01* X14238Y31700D01* X14209Y31636D01* X14203Y31614D01* Y33333D01* X14218Y33300D01* X14249Y33255D01* X14321Y33327D01* X14305Y33350D01* X14283Y33397D01* X14269Y33447D01* X14265Y33500D01* X14269Y33552D01* X14283Y33602D01* X14305Y33650D01* X14321Y33673D01* X14249Y33744D01* X14218Y33700D01* X14203Y33667D01* Y35293D01* X14229Y35255D01* X14301Y35327D01* X14285Y35350D01* X14263Y35397D01* X14249Y35447D01* X14245Y35500D01* X14249Y35552D01* X14263Y35602D01* X14285Y35650D01* X14301Y35673D01* X14229Y35744D01* X14203Y35706D01* Y37264D01* X14209Y37255D01* X14281Y37327D01* X14265Y37350D01* X14243Y37397D01* X14229Y37447D01* X14225Y37500D01* X14229Y37552D01* X14243Y37602D01* X14265Y37650D01* X14281Y37673D01* X14209Y37744D01* X14203Y37735D01* Y39268D01* X14261Y39327D01* X14245Y39350D01* X14223Y39397D01* X14209Y39447D01* X14205Y39500D01* X14209Y39552D01* X14223Y39602D01* X14245Y39650D01* X14261Y39673D01* X14203Y39731D01* Y40000D01* G37* G36* X14343Y29354D02*X14323Y29397D01* X14309Y29447D01* X14305Y29500D01* X14309Y29552D01* X14323Y29602D01* X14343Y29645D01* Y29354D01* G37* G36* Y27397D02*X14343Y27397D01* X14329Y27447D01* X14325Y27500D01* X14329Y27552D01* X14343Y27602D01* X14343Y27602D01* Y27397D01* G37* G36* Y40000D02*X14665D01* Y39865D01* X14641Y39875D01* X14574Y39893D01* X14505Y39900D01* X14435Y39893D01* X14368Y39875D01* X14343Y39864D01* Y40000D01* G37* G36* Y39751D02*X14355Y39759D01* X14402Y39781D01* X14452Y39795D01* X14505Y39800D01* X14557Y39795D01* X14607Y39781D01* X14655Y39759D01* X14665Y39752D01* Y39247D01* X14655Y39240D01* X14607Y39218D01* X14557Y39204D01* X14505Y39200D01* X14452Y39204D01* X14402Y39218D01* X14355Y39240D01* X14343Y39248D01* Y39751D01* G37* G36* Y39135D02*X14368Y39124D01* X14435Y39106D01* X14505Y39100D01* X14574Y39106D01* X14641Y39124D01* X14665Y39134D01* Y37874D01* X14661Y37875D01* X14594Y37893D01* X14525Y37900D01* X14455Y37893D01* X14388Y37875D01* X14343Y37854D01* Y39135D01* G37* G36* Y37752D02*X14352Y37743D01* X14375Y37759D01* X14422Y37781D01* X14472Y37795D01* X14525Y37800D01* X14577Y37795D01* X14627Y37781D01* X14665Y37764D01* Y37235D01* X14627Y37218D01* X14577Y37204D01* X14525Y37200D01* X14472Y37204D01* X14422Y37218D01* X14375Y37240D01* X14352Y37256D01* X14343Y37247D01* Y37752D01* G37* G36* Y37145D02*X14388Y37124D01* X14455Y37106D01* X14525Y37100D01* X14594Y37106D01* X14661Y37124D01* X14665Y37125D01* Y35880D01* X14614Y35893D01* X14545Y35900D01* X14475Y35893D01* X14408Y35875D01* X14345Y35846D01* X14343Y35845D01* Y37145D01* G37* G36* Y35772D02*X14372Y35743D01* X14395Y35759D01* X14442Y35781D01* X14492Y35795D01* X14545Y35800D01* X14597Y35795D01* X14647Y35781D01* X14665Y35773D01* Y35226D01* X14647Y35218D01* X14597Y35204D01* X14545Y35200D01* X14492Y35204D01* X14442Y35218D01* X14395Y35240D01* X14372Y35256D01* X14343Y35227D01* Y35772D01* G37* G36* Y35154D02*X14345Y35153D01* X14408Y35124D01* X14475Y35106D01* X14545Y35100D01* X14614Y35106D01* X14665Y35119D01* Y33885D01* X14634Y33893D01* X14565Y33900D01* X14495Y33893D01* X14428Y33875D01* X14365Y33846D01* X14343Y33831D01* Y35154D01* G37* G36* Y33792D02*X14392Y33743D01* X14415Y33759D01* X14462Y33781D01* X14512Y33795D01* X14565Y33800D01* X14617Y33795D01* X14665Y33782D01* Y33217D01* X14617Y33204D01* X14565Y33200D01* X14512Y33204D01* X14462Y33218D01* X14415Y33240D01* X14392Y33256D01* X14343Y33207D01* Y33792D01* G37* G36* Y33168D02*X14365Y33153D01* X14428Y33124D01* X14495Y33106D01* X14565Y33100D01* X14634Y33106D01* X14665Y33114D01* Y31891D01* X14654Y31893D01* X14585Y31900D01* X14515Y31893D01* X14448Y31875D01* X14385Y31846D01* X14343Y31817D01* Y33168D01* G37* G36* Y31812D02*X14412Y31743D01* X14435Y31759D01* X14482Y31781D01* X14532Y31795D01* X14585Y31800D01* X14637Y31795D01* X14665Y31787D01* Y31212D01* X14637Y31204D01* X14585Y31200D01* X14532Y31204D01* X14482Y31218D01* X14435Y31240D01* X14412Y31256D01* X14343Y31187D01* Y31812D01* G37* G36* Y31182D02*X14385Y31153D01* X14423Y31135D01* Y29854D01* X14405Y29846D01* X14360Y29815D01* X14423Y29752D01* Y29247D01* X14360Y29184D01* X14405Y29153D01* X14423Y29145D01* Y27845D01* X14380Y27815D01* X14423Y27772D01* Y27227D01* X14380Y27184D01* X14423Y27154D01* Y25831D01* X14400Y25815D01* X14423Y25792D01* Y25207D01* X14400Y25184D01* X14423Y25168D01* Y23817D01* X14420Y23815D01* X14423Y23812D01* Y23187D01* X14420Y23184D01* X14423Y23182D01* Y21691D01* X14369Y21744D01* X14343Y21706D01* Y23264D01* X14349Y23255D01* X14421Y23327D01* X14405Y23350D01* X14383Y23397D01* X14369Y23447D01* X14365Y23500D01* X14369Y23552D01* X14383Y23602D01* X14405Y23650D01* X14421Y23673D01* X14349Y23744D01* X14343Y23735D01* Y25268D01* X14401Y25327D01* X14385Y25350D01* X14363Y25397D01* X14349Y25447D01* X14345Y25500D01* X14349Y25552D01* X14363Y25602D01* X14385Y25650D01* X14401Y25673D01* X14343Y25731D01* Y27288D01* X14381Y27327D01* X14365Y27350D01* X14343Y27397D01* Y27602D01* X14365Y27650D01* X14381Y27673D01* X14343Y27711D01* Y29308D01* X14361Y29327D01* X14345Y29350D01* X14343Y29354D01* Y29645D01* X14345Y29650D01* X14361Y29673D01* X14343Y29691D01* Y31182D01* G37* G36* X14423Y0D02*X14343D01* Y17385D01* X14349Y17363D01* X14378Y17300D01* X14409Y17255D01* X14423Y17268D01* Y15735D01* X14398Y15700D01* X14369Y15636D01* X14351Y15569D01* X14345Y15500D01* X14351Y15430D01* X14369Y15363D01* X14398Y15300D01* X14423Y15264D01* Y13706D01* X14418Y13700D01* X14389Y13636D01* X14371Y13569D01* X14365Y13500D01* X14371Y13430D01* X14389Y13363D01* X14418Y13300D01* X14423Y13293D01* Y11667D01* X14409Y11636D01* X14391Y11569D01* X14385Y11500D01* X14391Y11430D01* X14409Y11363D01* X14423Y11333D01* Y9614D01* X14411Y9569D01* X14405Y9500D01* X14411Y9430D01* X14423Y9385D01* Y0D01* G37* G36* Y17731D02*X14409Y17744D01* X14378Y17700D01* X14349Y17636D01* X14343Y17614D01* Y19333D01* X14358Y19300D01* X14389Y19255D01* X14423Y19288D01* Y17731D01* G37* G36* Y19397D02*X14423Y19397D01* X14409Y19447D01* X14405Y19500D01* X14409Y19552D01* X14423Y19602D01* X14423Y19602D01* Y19397D01* G37* G36* Y19711D02*X14389Y19744D01* X14358Y19700D01* X14343Y19667D01* Y21293D01* X14369Y21255D01* X14423Y21308D01* Y19711D01* G37* G36* Y21354D02*X14403Y21397D01* X14389Y21447D01* X14385Y21500D01* X14389Y21552D01* X14403Y21602D01* X14423Y21645D01* Y21354D01* G37* G36* Y31135D02*X14448Y31124D01* X14515Y31106D01* X14585Y31100D01* X14654Y31106D01* X14665Y31108D01* Y29894D01* X14605Y29900D01* X14535Y29893D01* X14468Y29875D01* X14423Y29854D01* Y31135D01* G37* G36* Y29752D02*X14432Y29743D01* X14455Y29759D01* X14502Y29781D01* X14552Y29795D01* X14605Y29800D01* X14657Y29795D01* X14665Y29793D01* Y29206D01* X14657Y29204D01* X14605Y29200D01* X14552Y29204D01* X14502Y29218D01* X14455Y29240D01* X14432Y29256D01* X14423Y29247D01* Y29752D01* G37* G36* Y29145D02*X14468Y29124D01* X14535Y29106D01* X14605Y29100D01* X14665Y29105D01* Y27896D01* X14625Y27900D01* X14555Y27893D01* X14488Y27875D01* X14425Y27846D01* X14423Y27845D01* Y29145D01* G37* G36* Y27772D02*X14452Y27743D01* X14475Y27759D01* X14522Y27781D01* X14572Y27795D01* X14625Y27800D01* X14665Y27796D01* Y27203D01* X14625Y27200D01* X14572Y27204D01* X14522Y27218D01* X14475Y27240D01* X14452Y27256D01* X14423Y27227D01* Y27772D01* G37* G36* Y27154D02*X14425Y27153D01* X14488Y27124D01* X14555Y27106D01* X14625Y27100D01* X14665Y27103D01* Y25898D01* X14645Y25900D01* X14575Y25893D01* X14508Y25875D01* X14445Y25846D01* X14423Y25831D01* Y27154D01* G37* G36* Y25792D02*X14472Y25743D01* X14495Y25759D01* X14542Y25781D01* X14592Y25795D01* X14645Y25800D01* X14665Y25798D01* Y25201D01* X14645Y25200D01* X14592Y25204D01* X14542Y25218D01* X14495Y25240D01* X14472Y25256D01* X14423Y25207D01* Y25792D01* G37* G36* Y25168D02*X14445Y25153D01* X14508Y25124D01* X14575Y25106D01* X14645Y25100D01* X14665Y25101D01* Y23900D01* X14595Y23893D01* X14528Y23875D01* X14465Y23846D01* X14423Y23817D01* Y25168D01* G37* G36* Y23812D02*X14492Y23743D01* X14515Y23759D01* X14562Y23781D01* X14612Y23795D01* X14665Y23800D01* Y23200D01* X14612Y23204D01* X14562Y23218D01* X14515Y23240D01* X14492Y23256D01* X14423Y23187D01* Y23812D01* G37* G36* Y23182D02*X14465Y23153D01* X14503Y23135D01* Y21854D01* X14485Y21846D01* X14440Y21815D01* X14503Y21752D01* Y21247D01* X14440Y21184D01* X14485Y21153D01* X14503Y21145D01* Y19845D01* X14460Y19815D01* X14503Y19772D01* Y19227D01* X14460Y19184D01* X14503Y19154D01* Y17831D01* X14480Y17815D01* X14503Y17792D01* Y17207D01* X14480Y17184D01* X14503Y17168D01* Y15817D01* X14500Y15815D01* X14503Y15812D01* Y15187D01* X14500Y15184D01* X14503Y15182D01* Y13691D01* X14449Y13744D01* X14423Y13706D01* Y15264D01* X14429Y15255D01* X14501Y15327D01* X14485Y15350D01* X14463Y15397D01* X14449Y15447D01* X14445Y15500D01* X14449Y15552D01* X14463Y15602D01* X14485Y15650D01* X14501Y15673D01* X14429Y15744D01* X14423Y15735D01* Y17268D01* X14481Y17327D01* X14465Y17350D01* X14443Y17397D01* X14429Y17447D01* X14425Y17500D01* X14429Y17552D01* X14443Y17602D01* X14465Y17650D01* X14481Y17673D01* X14423Y17731D01* Y19288D01* X14461Y19327D01* X14445Y19350D01* X14423Y19397D01* Y19602D01* X14445Y19650D01* X14461Y19673D01* X14423Y19711D01* Y21308D01* X14441Y21327D01* X14425Y21350D01* X14423Y21354D01* Y21645D01* X14425Y21650D01* X14441Y21673D01* X14423Y21691D01* Y23182D01* G37* G36* X14503Y0D02*X14423D01* Y9385D01* X14429Y9363D01* X14458Y9300D01* X14489Y9255D01* X14503Y9268D01* Y7735D01* X14478Y7700D01* X14449Y7636D01* X14431Y7569D01* X14425Y7500D01* X14431Y7430D01* X14449Y7363D01* X14478Y7300D01* X14503Y7264D01* Y5706D01* X14498Y5700D01* X14469Y5636D01* X14451Y5569D01* X14445Y5500D01* X14451Y5430D01* X14469Y5363D01* X14498Y5300D01* X14503Y5293D01* Y3667D01* X14489Y3636D01* X14471Y3569D01* X14465Y3500D01* X14471Y3430D01* X14489Y3363D01* X14503Y3333D01* Y1614D01* X14491Y1569D01* X14485Y1500D01* X14491Y1430D01* X14503Y1385D01* Y0D01* G37* G36* Y9731D02*X14489Y9744D01* X14458Y9700D01* X14429Y9636D01* X14423Y9614D01* Y11333D01* X14438Y11300D01* X14469Y11255D01* X14503Y11288D01* Y9731D01* G37* G36* Y11397D02*X14503Y11397D01* X14489Y11447D01* X14485Y11500D01* X14489Y11552D01* X14503Y11602D01* X14503Y11602D01* Y11397D01* G37* G36* Y11711D02*X14469Y11744D01* X14438Y11700D01* X14423Y11667D01* Y13293D01* X14449Y13255D01* X14503Y13308D01* Y11711D01* G37* G36* Y13354D02*X14483Y13397D01* X14469Y13447D01* X14465Y13500D01* X14469Y13552D01* X14483Y13602D01* X14503Y13645D01* Y13354D01* G37* G36* Y23135D02*X14528Y23124D01* X14595Y23106D01* X14665Y23100D01* Y21898D01* X14615Y21893D01* X14548Y21875D01* X14503Y21854D01* Y23135D01* G37* G36* Y21752D02*X14512Y21743D01* X14535Y21759D01* X14582Y21781D01* X14632Y21795D01* X14665Y21798D01* Y21201D01* X14632Y21204D01* X14582Y21218D01* X14535Y21240D01* X14512Y21256D01* X14503Y21247D01* Y21752D01* G37* G36* Y21145D02*X14548Y21124D01* X14615Y21106D01* X14665Y21101D01* Y19896D01* X14635Y19893D01* X14568Y19875D01* X14505Y19846D01* X14503Y19845D01* Y21145D01* G37* G36* Y19772D02*X14532Y19743D01* X14555Y19759D01* X14602Y19781D01* X14652Y19795D01* X14665Y19796D01* Y19203D01* X14652Y19204D01* X14602Y19218D01* X14555Y19240D01* X14532Y19256D01* X14503Y19227D01* Y19772D01* G37* G36* Y19154D02*X14505Y19153D01* X14568Y19124D01* X14635Y19106D01* X14665Y19103D01* Y17894D01* X14655Y17893D01* X14588Y17875D01* X14525Y17846D01* X14503Y17831D01* Y19154D01* G37* G36* Y17792D02*X14552Y17743D01* X14575Y17759D01* X14622Y17781D01* X14665Y17793D01* Y17206D01* X14622Y17218D01* X14575Y17240D01* X14552Y17256D01* X14503Y17207D01* Y17792D01* G37* G36* Y17168D02*X14525Y17153D01* X14588Y17124D01* X14655Y17106D01* X14665Y17105D01* Y15891D01* X14608Y15875D01* X14545Y15846D01* X14503Y15817D01* Y17168D01* G37* G36* Y15812D02*X14572Y15743D01* X14595Y15759D01* X14642Y15781D01* X14665Y15787D01* Y15212D01* X14642Y15218D01* X14595Y15240D01* X14572Y15256D01* X14503Y15187D01* Y15812D01* G37* G36* Y15182D02*X14545Y15153D01* X14608Y15124D01* X14665Y15108D01* Y13885D01* X14628Y13875D01* X14565Y13846D01* X14520Y13815D01* X14592Y13743D01* X14615Y13759D01* X14662Y13781D01* X14665Y13782D01* Y13217D01* X14662Y13218D01* X14615Y13240D01* X14592Y13256D01* X14520Y13184D01* X14565Y13153D01* X14628Y13124D01* X14665Y13114D01* Y11880D01* X14648Y11875D01* X14585Y11846D01* X14540Y11815D01* X14612Y11743D01* X14635Y11759D01* X14665Y11773D01* Y11226D01* X14635Y11240D01* X14612Y11256D01* X14540Y11184D01* X14585Y11153D01* X14648Y11124D01* X14665Y11119D01* Y9874D01* X14605Y9846D01* X14560Y9815D01* X14632Y9743D01* X14655Y9759D01* X14665Y9764D01* Y9235D01* X14655Y9240D01* X14632Y9256D01* X14560Y9184D01* X14605Y9153D01* X14665Y9125D01* Y7865D01* X14625Y7846D01* X14580Y7815D01* X14652Y7743D01* X14665Y7752D01* Y7247D01* X14652Y7256D01* X14580Y7184D01* X14625Y7153D01* X14665Y7134D01* Y5855D01* X14645Y5846D01* X14600Y5815D01* X14665Y5750D01* Y5249D01* X14600Y5184D01* X14645Y5153D01* X14665Y5144D01* Y3846D01* X14620Y3815D01* X14665Y3770D01* Y3229D01* X14620Y3184D01* X14665Y3153D01* Y1832D01* X14640Y1815D01* X14665Y1790D01* Y1209D01* X14640Y1184D01* X14665Y1167D01* Y0D01* X14503D01* Y1385D01* X14509Y1363D01* X14538Y1300D01* X14569Y1255D01* X14641Y1327D01* X14625Y1350D01* X14603Y1397D01* X14589Y1447D01* X14585Y1500D01* X14589Y1552D01* X14603Y1602D01* X14625Y1650D01* X14641Y1673D01* X14569Y1744D01* X14538Y1700D01* X14509Y1636D01* X14503Y1614D01* Y3333D01* X14518Y3300D01* X14549Y3255D01* X14621Y3327D01* X14605Y3350D01* X14583Y3397D01* X14569Y3447D01* X14565Y3500D01* X14569Y3552D01* X14583Y3602D01* X14605Y3650D01* X14621Y3673D01* X14549Y3744D01* X14518Y3700D01* X14503Y3667D01* Y5293D01* X14529Y5255D01* X14601Y5327D01* X14585Y5350D01* X14563Y5397D01* X14549Y5447D01* X14545Y5500D01* X14549Y5552D01* X14563Y5602D01* X14585Y5650D01* X14601Y5673D01* X14529Y5744D01* X14503Y5706D01* Y7264D01* X14509Y7255D01* X14581Y7327D01* X14565Y7350D01* X14543Y7397D01* X14529Y7447D01* X14525Y7500D01* X14529Y7552D01* X14543Y7602D01* X14565Y7650D01* X14581Y7673D01* X14509Y7744D01* X14503Y7735D01* Y9268D01* X14561Y9327D01* X14545Y9350D01* X14523Y9397D01* X14509Y9447D01* X14505Y9500D01* X14509Y9552D01* X14523Y9602D01* X14545Y9650D01* X14561Y9673D01* X14503Y9731D01* Y11288D01* X14541Y11327D01* X14525Y11350D01* X14503Y11397D01* Y11602D01* X14525Y11650D01* X14541Y11673D01* X14503Y11711D01* Y13308D01* X14521Y13327D01* X14505Y13350D01* X14503Y13354D01* Y13645D01* X14505Y13650D01* X14521Y13673D01* X14503Y13691D01* Y15182D01* G37* G36* X14665Y40000D02*X14846D01* Y39706D01* X14820Y39744D01* X14748Y39673D01* X14764Y39650D01* X14786Y39602D01* X14800Y39552D01* X14805Y39500D01* X14800Y39447D01* X14786Y39397D01* X14764Y39350D01* X14748Y39327D01* X14820Y39255D01* X14846Y39293D01* Y37734D01* X14840Y37744D01* X14768Y37673D01* X14784Y37650D01* X14806Y37602D01* X14820Y37552D01* X14825Y37500D01* X14820Y37447D01* X14806Y37397D01* X14784Y37350D01* X14768Y37327D01* X14840Y37255D01* X14846Y37265D01* Y35731D01* X14788Y35673D01* X14804Y35650D01* X14826Y35602D01* X14840Y35552D01* X14845Y35500D01* X14840Y35447D01* X14826Y35397D01* X14804Y35350D01* X14788Y35327D01* X14846Y35268D01* Y33711D01* X14808Y33673D01* X14824Y33650D01* X14846Y33602D01* Y33397D01* X14824Y33350D01* X14808Y33327D01* X14846Y33288D01* Y31691D01* X14828Y31673D01* X14844Y31650D01* X14846Y31645D01* Y31354D01* X14844Y31350D01* X14828Y31327D01* X14846Y31308D01* Y29817D01* X14805Y29846D01* X14741Y29875D01* X14674Y29893D01* X14665Y29894D01* Y31108D01* X14721Y31124D01* X14785Y31153D01* X14829Y31184D01* X14758Y31256D01* X14735Y31240D01* X14687Y31218D01* X14665Y31212D01* Y31787D01* X14687Y31781D01* X14735Y31759D01* X14758Y31743D01* X14829Y31815D01* X14785Y31846D01* X14721Y31875D01* X14665Y31891D01* Y33114D01* X14701Y33124D01* X14765Y33153D01* X14809Y33184D01* X14738Y33256D01* X14715Y33240D01* X14667Y33218D01* X14665Y33217D01* Y33782D01* X14667Y33781D01* X14715Y33759D01* X14738Y33743D01* X14809Y33815D01* X14765Y33846D01* X14701Y33875D01* X14665Y33885D01* Y35119D01* X14681Y35124D01* X14745Y35153D01* X14789Y35184D01* X14718Y35256D01* X14695Y35240D01* X14665Y35226D01* Y35773D01* X14695Y35759D01* X14718Y35743D01* X14789Y35815D01* X14745Y35846D01* X14681Y35875D01* X14665Y35880D01* Y37125D01* X14725Y37153D01* X14769Y37184D01* X14698Y37256D01* X14675Y37240D01* X14665Y37235D01* Y37764D01* X14675Y37759D01* X14698Y37743D01* X14769Y37815D01* X14725Y37846D01* X14665Y37874D01* Y39134D01* X14705Y39153D01* X14749Y39184D01* X14678Y39256D01* X14665Y39247D01* Y39752D01* X14678Y39743D01* X14749Y39815D01* X14705Y39846D01* X14665Y39865D01* Y40000D01* G37* G36* X14846Y15885D02*X14814Y15893D01* X14745Y15900D01* X14675Y15893D01* X14665Y15891D01* Y17105D01* X14725Y17100D01* X14794Y17106D01* X14846Y17120D01* Y15885D01* G37* G36* Y17227D02*X14827Y17218D01* X14777Y17204D01* X14725Y17200D01* X14672Y17204D01* X14665Y17206D01* Y17793D01* X14672Y17795D01* X14725Y17800D01* X14777Y17795D01* X14827Y17781D01* X14846Y17772D01* Y17227D01* G37* G36* Y17879D02*X14794Y17893D01* X14725Y17900D01* X14665Y17894D01* Y19103D01* X14705Y19100D01* X14774Y19106D01* X14841Y19124D01* X14846Y19126D01* Y17879D01* G37* G36* Y19236D02*X14807Y19218D01* X14757Y19204D01* X14705Y19200D01* X14665Y19203D01* Y19796D01* X14705Y19800D01* X14757Y19795D01* X14807Y19781D01* X14846Y19763D01* Y19236D01* G37* G36* Y19873D02*X14841Y19875D01* X14774Y19893D01* X14705Y19900D01* X14665Y19896D01* Y21101D01* X14685Y21100D01* X14754Y21106D01* X14821Y21124D01* X14846Y21135D01* Y19873D01* G37* G36* Y21248D02*X14835Y21240D01* X14787Y21218D01* X14737Y21204D01* X14685Y21200D01* X14665Y21201D01* Y21798D01* X14685Y21800D01* X14737Y21795D01* X14787Y21781D01* X14835Y21759D01* X14846Y21751D01* Y21248D01* G37* G36* Y21864D02*X14821Y21875D01* X14754Y21893D01* X14685Y21900D01* X14665Y21898D01* Y23100D01* X14734Y23106D01* X14801Y23124D01* X14846Y23145D01* Y21864D01* G37* G36* Y23247D02*X14838Y23256D01* X14815Y23240D01* X14767Y23218D01* X14717Y23204D01* X14665Y23200D01* Y23800D01* X14717Y23795D01* X14767Y23781D01* X14815Y23759D01* X14838Y23743D01* X14846Y23752D01* Y23247D01* G37* G36* Y23854D02*X14801Y23875D01* X14734Y23893D01* X14665Y23900D01* Y25101D01* X14714Y25106D01* X14781Y25124D01* X14845Y25153D01* X14846Y25154D01* Y23854D01* G37* G36* Y25227D02*X14818Y25256D01* X14795Y25240D01* X14747Y25218D01* X14697Y25204D01* X14665Y25201D01* Y25798D01* X14697Y25795D01* X14747Y25781D01* X14795Y25759D01* X14818Y25743D01* X14846Y25772D01* Y25227D01* G37* G36* Y25845D02*X14845Y25846D01* X14781Y25875D01* X14714Y25893D01* X14665Y25898D01* Y27103D01* X14694Y27106D01* X14761Y27124D01* X14825Y27153D01* X14846Y27169D01* Y25845D01* G37* G36* Y27207D02*X14798Y27256D01* X14775Y27240D01* X14727Y27218D01* X14677Y27204D01* X14665Y27203D01* Y27796D01* X14677Y27795D01* X14727Y27781D01* X14775Y27759D01* X14798Y27743D01* X14846Y27792D01* Y27207D01* G37* G36* Y27831D02*X14825Y27846D01* X14761Y27875D01* X14694Y27893D01* X14665Y27896D01* Y29105D01* X14674Y29106D01* X14741Y29124D01* X14805Y29153D01* X14846Y29183D01* Y27831D01* G37* G36* Y29187D02*X14778Y29256D01* X14755Y29240D01* X14707Y29218D01* X14665Y29206D01* Y29793D01* X14707Y29781D01* X14755Y29759D01* X14778Y29743D01* X14846Y29812D01* Y29187D01* G37* G36* Y40000D02*X14986D01* Y29614D01* X14980Y29636D01* X14951Y29700D01* X14920Y29744D01* X14848Y29673D01* X14864Y29650D01* X14886Y29602D01* X14900Y29552D01* X14905Y29500D01* X14900Y29447D01* X14886Y29397D01* X14864Y29350D01* X14848Y29327D01* X14920Y29255D01* X14951Y29300D01* X14980Y29363D01* X14986Y29385D01* Y27666D01* X14971Y27700D01* X14940Y27744D01* X14868Y27673D01* X14884Y27650D01* X14906Y27602D01* X14920Y27552D01* X14925Y27500D01* X14920Y27447D01* X14906Y27397D01* X14884Y27350D01* X14868Y27327D01* X14940Y27255D01* X14971Y27300D01* X14986Y27333D01* Y25706D01* X14960Y25744D01* X14888Y25673D01* X14904Y25650D01* X14926Y25602D01* X14940Y25552D01* X14945Y25500D01* X14940Y25447D01* X14926Y25397D01* X14904Y25350D01* X14888Y25327D01* X14960Y25255D01* X14986Y25293D01* Y23734D01* X14980Y23744D01* X14908Y23673D01* X14924Y23650D01* X14946Y23602D01* X14960Y23552D01* X14965Y23500D01* X14960Y23447D01* X14946Y23397D01* X14924Y23350D01* X14908Y23327D01* X14980Y23255D01* X14986Y23265D01* Y21731D01* X14928Y21673D01* X14944Y21650D01* X14966Y21602D01* X14980Y21552D01* X14985Y21500D01* X14980Y21447D01* X14966Y21397D01* X14944Y21350D01* X14928Y21327D01* X14986Y21268D01* Y19711D01* X14948Y19673D01* X14964Y19650D01* X14986Y19602D01* Y19397D01* X14964Y19350D01* X14948Y19327D01* X14986Y19288D01* Y17691D01* X14968Y17673D01* X14984Y17650D01* X14986Y17645D01* Y17354D01* X14984Y17350D01* X14968Y17327D01* X14986Y17308D01* Y15817D01* X14945Y15846D01* X14881Y15875D01* X14846Y15885D01* Y17120D01* X14861Y17124D01* X14925Y17153D01* X14969Y17184D01* X14898Y17256D01* X14875Y17240D01* X14846Y17227D01* Y17772D01* X14875Y17759D01* X14898Y17743D01* X14969Y17815D01* X14925Y17846D01* X14861Y17875D01* X14846Y17879D01* Y19126D01* X14905Y19153D01* X14949Y19184D01* X14878Y19256D01* X14855Y19240D01* X14846Y19236D01* Y19763D01* X14855Y19759D01* X14878Y19743D01* X14949Y19815D01* X14905Y19846D01* X14846Y19873D01* Y21135D01* X14885Y21153D01* X14929Y21184D01* X14858Y21256D01* X14846Y21248D01* Y21751D01* X14858Y21743D01* X14929Y21815D01* X14885Y21846D01* X14846Y21864D01* Y23145D01* X14865Y23153D01* X14909Y23184D01* X14846Y23247D01* Y23752D01* X14909Y23815D01* X14865Y23846D01* X14846Y23854D01* Y25154D01* X14889Y25184D01* X14846Y25227D01* Y25772D01* X14889Y25815D01* X14846Y25845D01* Y27169D01* X14869Y27184D01* X14846Y27207D01* Y27792D01* X14869Y27815D01* X14846Y27831D01* Y29183D01* X14849Y29184D01* X14846Y29187D01* Y29812D01* X14849Y29815D01* X14846Y29817D01* Y31308D01* X14900Y31255D01* X14931Y31300D01* X14960Y31363D01* X14978Y31430D01* X14985Y31500D01* X14978Y31569D01* X14960Y31636D01* X14931Y31700D01* X14900Y31744D01* X14846Y31691D01* Y33288D01* X14880Y33255D01* X14911Y33300D01* X14940Y33363D01* X14958Y33430D01* X14965Y33500D01* X14958Y33569D01* X14940Y33636D01* X14911Y33700D01* X14880Y33744D01* X14846Y33711D01* Y35268D01* X14860Y35255D01* X14891Y35300D01* X14920Y35363D01* X14938Y35430D01* X14945Y35500D01* X14938Y35569D01* X14920Y35636D01* X14891Y35700D01* X14860Y35744D01* X14846Y35731D01* Y37265D01* X14871Y37300D01* X14900Y37363D01* X14918Y37430D01* X14925Y37500D01* X14918Y37569D01* X14900Y37636D01* X14871Y37700D01* X14846Y37734D01* Y39293D01* X14851Y39300D01* X14880Y39363D01* X14898Y39430D01* X14905Y39500D01* X14898Y39569D01* X14880Y39636D01* X14851Y39700D01* X14846Y39706D01* Y40000D01* G37* G36* Y33602D02*X14860Y33552D01* X14865Y33500D01* X14860Y33447D01* X14846Y33397D01* Y33602D01* G37* G36* Y31645D02*X14866Y31602D01* X14880Y31552D01* X14885Y31500D01* X14880Y31447D01* X14866Y31397D01* X14846Y31354D01* Y31645D01* G37* G36* X14665Y15787D02*X14692Y15795D01* X14745Y15800D01* X14797Y15795D01* X14847Y15781D01* X14895Y15759D01* X14918Y15743D01* X14986Y15812D01* Y15187D01* X14918Y15256D01* X14895Y15240D01* X14847Y15218D01* X14797Y15204D01* X14745Y15200D01* X14692Y15204D01* X14665Y15212D01* Y15787D01* G37* G36* Y15108D02*X14675Y15106D01* X14745Y15100D01* X14814Y15106D01* X14881Y15124D01* X14945Y15153D01* X14986Y15183D01* Y13831D01* X14965Y13846D01* X14901Y13875D01* X14834Y13893D01* X14765Y13900D01* X14695Y13893D01* X14665Y13885D01* Y15108D01* G37* G36* Y13782D02*X14712Y13795D01* X14765Y13800D01* X14817Y13795D01* X14867Y13781D01* X14915Y13759D01* X14938Y13743D01* X14986Y13792D01* Y13207D01* X14938Y13256D01* X14915Y13240D01* X14867Y13218D01* X14817Y13204D01* X14765Y13200D01* X14712Y13204D01* X14665Y13217D01* Y13782D01* G37* G36* Y13114D02*X14695Y13106D01* X14765Y13100D01* X14834Y13106D01* X14901Y13124D01* X14965Y13153D01* X14986Y13169D01* Y11845D01* X14985Y11846D01* X14921Y11875D01* X14854Y11893D01* X14785Y11900D01* X14715Y11893D01* X14665Y11880D01* Y13114D01* G37* G36* Y11773D02*X14682Y11781D01* X14732Y11795D01* X14785Y11800D01* X14837Y11795D01* X14887Y11781D01* X14935Y11759D01* X14958Y11743D01* X14986Y11772D01* Y11227D01* X14958Y11256D01* X14935Y11240D01* X14887Y11218D01* X14837Y11204D01* X14785Y11200D01* X14732Y11204D01* X14682Y11218D01* X14665Y11226D01* Y11773D01* G37* G36* Y11119D02*X14715Y11106D01* X14785Y11100D01* X14854Y11106D01* X14921Y11124D01* X14985Y11153D01* X14986Y11154D01* Y9854D01* X14941Y9875D01* X14874Y9893D01* X14805Y9900D01* X14735Y9893D01* X14668Y9875D01* X14665Y9874D01* Y11119D01* G37* G36* Y9764D02*X14702Y9781D01* X14752Y9795D01* X14805Y9800D01* X14857Y9795D01* X14907Y9781D01* X14955Y9759D01* X14978Y9743D01* X14986Y9752D01* Y9247D01* X14978Y9256D01* X14955Y9240D01* X14907Y9218D01* X14857Y9204D01* X14805Y9200D01* X14752Y9204D01* X14702Y9218D01* X14665Y9235D01* Y9764D01* G37* G36* Y9125D02*X14668Y9124D01* X14735Y9106D01* X14805Y9100D01* X14874Y9106D01* X14941Y9124D01* X14986Y9145D01* Y7864D01* X14961Y7875D01* X14894Y7893D01* X14825Y7900D01* X14755Y7893D01* X14688Y7875D01* X14665Y7865D01* Y9125D01* G37* G36* Y7752D02*X14675Y7759D01* X14722Y7781D01* X14772Y7795D01* X14825Y7800D01* X14877Y7795D01* X14927Y7781D01* X14975Y7759D01* X14986Y7751D01* Y7248D01* X14975Y7240D01* X14927Y7218D01* X14877Y7204D01* X14825Y7200D01* X14772Y7204D01* X14722Y7218D01* X14675Y7240D01* X14665Y7247D01* Y7752D01* G37* G36* Y7134D02*X14688Y7124D01* X14755Y7106D01* X14825Y7100D01* X14894Y7106D01* X14961Y7124D01* X14986Y7135D01* Y5873D01* X14981Y5875D01* X14914Y5893D01* X14845Y5900D01* X14775Y5893D01* X14708Y5875D01* X14665Y5855D01* Y7134D01* G37* G36* Y5750D02*X14672Y5743D01* X14695Y5759D01* X14742Y5781D01* X14792Y5795D01* X14845Y5800D01* X14897Y5795D01* X14947Y5781D01* X14986Y5763D01* Y5236D01* X14947Y5218D01* X14897Y5204D01* X14845Y5200D01* X14792Y5204D01* X14742Y5218D01* X14695Y5240D01* X14672Y5256D01* X14665Y5249D01* Y5750D01* G37* G36* Y5144D02*X14708Y5124D01* X14775Y5106D01* X14845Y5100D01* X14914Y5106D01* X14981Y5124D01* X14986Y5126D01* Y3879D01* X14934Y3893D01* X14865Y3900D01* X14795Y3893D01* X14728Y3875D01* X14665Y3846D01* Y5144D01* G37* G36* Y3770D02*X14692Y3743D01* X14715Y3759D01* X14762Y3781D01* X14812Y3795D01* X14865Y3800D01* X14917Y3795D01* X14967Y3781D01* X14986Y3772D01* Y3227D01* X14967Y3218D01* X14917Y3204D01* X14865Y3200D01* X14812Y3204D01* X14762Y3218D01* X14715Y3240D01* X14692Y3256D01* X14665Y3229D01* Y3770D01* G37* G36* Y3153D02*X14728Y3124D01* X14795Y3106D01* X14865Y3100D01* X14934Y3106D01* X14986Y3120D01* Y1885D01* X14954Y1893D01* X14885Y1900D01* X14815Y1893D01* X14748Y1875D01* X14685Y1846D01* X14665Y1832D01* Y3153D01* G37* G36* Y1790D02*X14712Y1743D01* X14735Y1759D01* X14782Y1781D01* X14832Y1795D01* X14885Y1800D01* X14937Y1795D01* X14986Y1782D01* Y1217D01* X14937Y1204D01* X14885Y1200D01* X14832Y1204D01* X14782Y1218D01* X14735Y1240D01* X14712Y1256D01* X14665Y1209D01* Y1790D01* G37* G36* Y1167D02*X14685Y1153D01* X14748Y1124D01* X14815Y1106D01* X14885Y1100D01* X14954Y1106D01* X14986Y1114D01* Y0D01* X14665D01* Y1167D01* G37* G36* X14986Y40000D02*X15066D01* Y21614D01* X15060Y21636D01* X15031Y21700D01* X15000Y21744D01* X14986Y21731D01* Y23265D01* X15011Y23300D01* X15040Y23363D01* X15058Y23430D01* X15065Y23500D01* X15058Y23569D01* X15040Y23636D01* X15011Y23700D01* X14986Y23734D01* Y25293D01* X14991Y25300D01* X15020Y25363D01* X15038Y25430D01* X15045Y25500D01* X15038Y25569D01* X15020Y25636D01* X14991Y25700D01* X14986Y25706D01* Y27333D01* X15000Y27363D01* X15018Y27430D01* X15025Y27500D01* X15018Y27569D01* X15000Y27636D01* X14986Y27666D01* Y29385D01* X14998Y29430D01* X15005Y29500D01* X14998Y29569D01* X14986Y29614D01* Y40000D01* G37* G36* X15066Y0D02*X14986D01* Y1114D01* X15021Y1124D01* X15066Y1145D01* Y0D01* G37* G36* Y1247D02*X15058Y1256D01* X15035Y1240D01* X14987Y1218D01* X14986Y1217D01* Y1782D01* X14987Y1781D01* X15035Y1759D01* X15058Y1743D01* X15066Y1752D01* Y1247D01* G37* G36* Y1854D02*X15021Y1875D01* X14986Y1885D01* Y3120D01* X15001Y3124D01* X15065Y3153D01* X15066Y3154D01* Y1854D01* G37* G36* Y3227D02*X15038Y3256D01* X15015Y3240D01* X14986Y3227D01* Y3772D01* X15015Y3759D01* X15038Y3743D01* X15066Y3772D01* Y3227D01* G37* G36* Y3845D02*X15065Y3846D01* X15001Y3875D01* X14986Y3879D01* Y5126D01* X15045Y5153D01* X15066Y5169D01* Y3845D01* G37* G36* Y5207D02*X15018Y5256D01* X14995Y5240D01* X14986Y5236D01* Y5763D01* X14995Y5759D01* X15018Y5743D01* X15066Y5792D01* Y5207D01* G37* G36* Y5831D02*X15045Y5846D01* X14986Y5873D01* Y7135D01* X15025Y7153D01* X15066Y7183D01* Y5831D01* G37* G36* Y7187D02*X14998Y7256D01* X14986Y7248D01* Y7751D01* X14998Y7743D01* X15066Y7812D01* Y7187D01* G37* G36* Y7817D02*X15025Y7846D01* X14986Y7864D01* Y9145D01* X15005Y9153D01* X15049Y9184D01* X14986Y9247D01* Y9752D01* X15049Y9815D01* X15005Y9846D01* X14986Y9854D01* Y11154D01* X15029Y11184D01* X14986Y11227D01* Y11772D01* X15029Y11815D01* X14986Y11845D01* Y13169D01* X15009Y13184D01* X14986Y13207D01* Y13792D01* X15009Y13815D01* X14986Y13831D01* Y15183D01* X14989Y15184D01* X14986Y15187D01* Y15812D01* X14989Y15815D01* X14986Y15817D01* Y17308D01* X15040Y17255D01* X15066Y17293D01* Y15734D01* X15060Y15744D01* X14988Y15673D01* X15004Y15650D01* X15026Y15602D01* X15040Y15552D01* X15045Y15500D01* X15040Y15447D01* X15026Y15397D01* X15004Y15350D01* X14988Y15327D01* X15060Y15255D01* X15066Y15265D01* Y13731D01* X15008Y13673D01* X15024Y13650D01* X15046Y13602D01* X15060Y13552D01* X15065Y13500D01* X15060Y13447D01* X15046Y13397D01* X15024Y13350D01* X15008Y13327D01* X15066Y13268D01* Y11711D01* X15028Y11673D01* X15044Y11650D01* X15066Y11602D01* Y11397D01* X15044Y11350D01* X15028Y11327D01* X15066Y11288D01* Y9691D01* X15048Y9673D01* X15064Y9650D01* X15066Y9645D01* Y9354D01* X15064Y9350D01* X15048Y9327D01* X15066Y9308D01* Y7817D01* G37* G36* Y17706D02*X15040Y17744D01* X14986Y17691D01* Y19288D01* X15020Y19255D01* X15051Y19300D01* X15066Y19333D01* Y17706D01* G37* G36* Y19666D02*X15051Y19700D01* X15020Y19744D01* X14986Y19711D01* Y21268D01* X15000Y21255D01* X15031Y21300D01* X15060Y21363D01* X15066Y21385D01* Y19666D01* G37* G36* Y40000D02*X15146D01* Y13614D01* X15140Y13636D01* X15111Y13700D01* X15080Y13744D01* X15066Y13731D01* Y15265D01* X15091Y15300D01* X15120Y15363D01* X15138Y15430D01* X15145Y15500D01* X15138Y15569D01* X15120Y15636D01* X15091Y15700D01* X15066Y15734D01* Y17293D01* X15071Y17300D01* X15100Y17363D01* X15118Y17430D01* X15125Y17500D01* X15118Y17569D01* X15100Y17636D01* X15071Y17700D01* X15066Y17706D01* Y19333D01* X15080Y19363D01* X15098Y19430D01* X15105Y19500D01* X15098Y19569D01* X15080Y19636D01* X15066Y19666D01* Y21385D01* X15078Y21430D01* X15085Y21500D01* X15078Y21569D01* X15066Y21614D01* Y40000D01* G37* G36* X15146Y0D02*X15066D01* Y1145D01* X15085Y1153D01* X15129Y1184D01* X15066Y1247D01* Y1752D01* X15129Y1815D01* X15085Y1846D01* X15066Y1854D01* Y3154D01* X15109Y3184D01* X15066Y3227D01* Y3772D01* X15109Y3815D01* X15066Y3845D01* Y5169D01* X15089Y5184D01* X15066Y5207D01* Y5792D01* X15089Y5815D01* X15066Y5831D01* Y7183D01* X15069Y7184D01* X15066Y7187D01* Y7812D01* X15069Y7815D01* X15066Y7817D01* Y9308D01* X15120Y9255D01* X15146Y9293D01* Y7734D01* X15140Y7744D01* X15068Y7673D01* X15084Y7650D01* X15106Y7602D01* X15120Y7552D01* X15125Y7500D01* X15120Y7447D01* X15106Y7397D01* X15084Y7350D01* X15068Y7327D01* X15140Y7255D01* X15146Y7265D01* Y5731D01* X15088Y5673D01* X15104Y5650D01* X15126Y5602D01* X15140Y5552D01* X15145Y5500D01* X15140Y5447D01* X15126Y5397D01* X15104Y5350D01* X15088Y5327D01* X15146Y5268D01* Y3711D01* X15108Y3673D01* X15124Y3650D01* X15146Y3602D01* Y3397D01* X15124Y3350D01* X15108Y3327D01* X15146Y3288D01* Y1691D01* X15128Y1673D01* X15144Y1650D01* X15146Y1645D01* Y1354D01* X15144Y1350D01* X15128Y1327D01* X15146Y1308D01* Y0D01* G37* G36* Y9706D02*X15120Y9744D01* X15066Y9691D01* Y11288D01* X15100Y11255D01* X15131Y11300D01* X15146Y11333D01* Y9706D01* G37* G36* Y11666D02*X15131Y11700D01* X15100Y11744D01* X15066Y11711D01* Y13268D01* X15080Y13255D01* X15111Y13300D01* X15140Y13363D01* X15146Y13385D01* Y11666D01* G37* G36* Y40000D02*X16183D01* Y39735D01* X16158Y39700D01* X16129Y39636D01* X16111Y39569D01* X16105Y39500D01* X16111Y39430D01* X16129Y39363D01* X16158Y39300D01* X16183Y39264D01* Y37706D01* X16178Y37700D01* X16149Y37636D01* X16131Y37569D01* X16125Y37500D01* X16131Y37430D01* X16149Y37363D01* X16178Y37300D01* X16183Y37293D01* Y35667D01* X16169Y35636D01* X16151Y35569D01* X16145Y35500D01* X16151Y35430D01* X16169Y35363D01* X16183Y35333D01* Y33614D01* X16171Y33569D01* X16165Y33500D01* X16171Y33430D01* X16183Y33385D01* Y0D01* X15146D01* Y1308D01* X15200Y1255D01* X15231Y1300D01* X15260Y1363D01* X15278Y1430D01* X15285Y1500D01* X15278Y1569D01* X15260Y1636D01* X15231Y1700D01* X15200Y1744D01* X15146Y1691D01* Y3288D01* X15180Y3255D01* X15211Y3300D01* X15240Y3363D01* X15258Y3430D01* X15265Y3500D01* X15258Y3569D01* X15240Y3636D01* X15211Y3700D01* X15180Y3744D01* X15146Y3711D01* Y5268D01* X15160Y5255D01* X15191Y5300D01* X15220Y5363D01* X15238Y5430D01* X15245Y5500D01* X15238Y5569D01* X15220Y5636D01* X15191Y5700D01* X15160Y5744D01* X15146Y5731D01* Y7265D01* X15171Y7300D01* X15200Y7363D01* X15218Y7430D01* X15225Y7500D01* X15218Y7569D01* X15200Y7636D01* X15171Y7700D01* X15146Y7734D01* Y9293D01* X15151Y9300D01* X15180Y9363D01* X15198Y9430D01* X15205Y9500D01* X15198Y9569D01* X15180Y9636D01* X15151Y9700D01* X15146Y9706D01* Y11333D01* X15160Y11363D01* X15178Y11430D01* X15185Y11500D01* X15178Y11569D01* X15160Y11636D01* X15146Y11666D01* Y13385D01* X15158Y13430D01* X15165Y13500D01* X15158Y13569D01* X15146Y13614D01* Y40000D01* G37* G36* X16183D02*X16263D01* Y39817D01* X16260Y39815D01* X16263Y39812D01* Y39187D01* X16260Y39184D01* X16263Y39182D01* Y37691D01* X16209Y37744D01* X16183Y37706D01* Y39264D01* X16189Y39255D01* X16261Y39327D01* X16245Y39350D01* X16223Y39397D01* X16209Y39447D01* X16205Y39500D01* X16209Y39552D01* X16223Y39602D01* X16245Y39650D01* X16261Y39673D01* X16189Y39744D01* X16183Y39735D01* Y40000D01* G37* G36* X16263Y29706D02*X16258Y29700D01* X16229Y29636D01* X16211Y29569D01* X16205Y29500D01* X16211Y29430D01* X16229Y29363D01* X16258Y29300D01* X16263Y29293D01* Y27667D01* X16249Y27636D01* X16231Y27569D01* X16225Y27500D01* X16231Y27430D01* X16249Y27363D01* X16263Y27333D01* Y25614D01* X16251Y25569D01* X16245Y25500D01* X16251Y25430D01* X16263Y25385D01* Y0D01* X16183D01* Y33385D01* X16189Y33363D01* X16218Y33300D01* X16249Y33255D01* X16263Y33268D01* Y31735D01* X16238Y31700D01* X16209Y31636D01* X16191Y31569D01* X16185Y31500D01* X16191Y31430D01* X16209Y31363D01* X16238Y31300D01* X16263Y31264D01* Y29706D01* G37* G36* Y33731D02*X16249Y33744D01* X16218Y33700D01* X16189Y33636D01* X16183Y33614D01* Y35333D01* X16198Y35300D01* X16229Y35255D01* X16263Y35288D01* Y33731D01* G37* G36* Y35397D02*X16263Y35397D01* X16249Y35447D01* X16245Y35500D01* X16249Y35552D01* X16263Y35602D01* X16263Y35602D01* Y35397D01* G37* G36* Y35711D02*X16229Y35744D01* X16198Y35700D01* X16183Y35667D01* Y37293D01* X16209Y37255D01* X16263Y37308D01* Y35711D01* G37* G36* Y37354D02*X16243Y37397D01* X16229Y37447D01* X16225Y37500D01* X16229Y37552D01* X16243Y37602D01* X16263Y37645D01* Y37354D01* G37* G36* Y40000D02*X16343D01* Y39864D01* X16305Y39846D01* X16263Y39817D01* Y40000D01* G37* G36* Y39812D02*X16332Y39743D01* X16343Y39751D01* Y39248D01* X16332Y39256D01* X16263Y39187D01* Y39812D01* G37* G36* Y39182D02*X16305Y39153D01* X16343Y39135D01* Y37854D01* X16325Y37846D01* X16280Y37815D01* X16343Y37752D01* Y37247D01* X16280Y37184D01* X16325Y37153D01* X16343Y37145D01* Y35845D01* X16300Y35815D01* X16343Y35772D01* Y35227D01* X16300Y35184D01* X16343Y35154D01* Y33831D01* X16320Y33815D01* X16343Y33792D01* Y33207D01* X16320Y33184D01* X16343Y33168D01* Y31817D01* X16340Y31815D01* X16343Y31812D01* Y31187D01* X16340Y31184D01* X16343Y31182D01* Y29691D01* X16289Y29744D01* X16263Y29706D01* Y31264D01* X16269Y31255D01* X16341Y31327D01* X16325Y31350D01* X16303Y31397D01* X16289Y31447D01* X16285Y31500D01* X16289Y31552D01* X16303Y31602D01* X16325Y31650D01* X16341Y31673D01* X16269Y31744D01* X16263Y31735D01* Y33268D01* X16321Y33327D01* X16305Y33350D01* X16283Y33397D01* X16269Y33447D01* X16265Y33500D01* X16269Y33552D01* X16283Y33602D01* X16305Y33650D01* X16321Y33673D01* X16263Y33731D01* Y35288D01* X16301Y35327D01* X16285Y35350D01* X16263Y35397D01* Y35602D01* X16285Y35650D01* X16301Y35673D01* X16263Y35711D01* Y37308D01* X16281Y37327D01* X16265Y37350D01* X16263Y37354D01* Y37645D01* X16265Y37650D01* X16281Y37673D01* X16263Y37691D01* Y39182D01* G37* G36* Y29293D02*X16289Y29255D01* X16343Y29308D01* Y27711D01* X16309Y27744D01* X16278Y27700D01* X16263Y27667D01* Y29293D01* G37* G36* Y27333D02*X16278Y27300D01* X16309Y27255D01* X16343Y27288D01* Y25731D01* X16329Y25744D01* X16298Y25700D01* X16269Y25636D01* X16263Y25614D01* Y27333D01* G37* G36* Y25385D02*X16269Y25363D01* X16298Y25300D01* X16329Y25255D01* X16343Y25268D01* Y23735D01* X16318Y23700D01* X16289Y23636D01* X16271Y23569D01* X16265Y23500D01* X16271Y23430D01* X16289Y23363D01* X16318Y23300D01* X16343Y23264D01* Y21706D01* X16338Y21700D01* X16309Y21636D01* X16291Y21569D01* X16285Y21500D01* X16291Y21430D01* X16309Y21363D01* X16338Y21300D01* X16343Y21293D01* Y19667D01* X16329Y19636D01* X16311Y19569D01* X16305Y19500D01* X16311Y19430D01* X16329Y19363D01* X16343Y19333D01* Y17614D01* X16331Y17569D01* X16325Y17500D01* X16331Y17430D01* X16343Y17385D01* Y0D01* X16263D01* Y25385D01* G37* G36* X16343Y29354D02*X16323Y29397D01* X16309Y29447D01* X16305Y29500D01* X16309Y29552D01* X16323Y29602D01* X16343Y29645D01* Y29354D01* G37* G36* Y27397D02*X16343Y27397D01* X16329Y27447D01* X16325Y27500D01* X16329Y27552D01* X16343Y27602D01* X16343Y27602D01* Y27397D01* G37* G36* Y40000D02*X16665D01* Y39865D01* X16641Y39875D01* X16574Y39893D01* X16505Y39900D01* X16435Y39893D01* X16368Y39875D01* X16343Y39864D01* Y40000D01* G37* G36* Y39751D02*X16355Y39759D01* X16402Y39781D01* X16452Y39795D01* X16505Y39800D01* X16557Y39795D01* X16607Y39781D01* X16655Y39759D01* X16665Y39752D01* Y39247D01* X16655Y39240D01* X16607Y39218D01* X16557Y39204D01* X16505Y39200D01* X16452Y39204D01* X16402Y39218D01* X16355Y39240D01* X16343Y39248D01* Y39751D01* G37* G36* Y39135D02*X16368Y39124D01* X16435Y39106D01* X16505Y39100D01* X16574Y39106D01* X16641Y39124D01* X16665Y39134D01* Y37874D01* X16661Y37875D01* X16594Y37893D01* X16525Y37900D01* X16455Y37893D01* X16388Y37875D01* X16343Y37854D01* Y39135D01* G37* G36* Y37752D02*X16352Y37743D01* X16375Y37759D01* X16422Y37781D01* X16472Y37795D01* X16525Y37800D01* X16577Y37795D01* X16627Y37781D01* X16665Y37764D01* Y37235D01* X16627Y37218D01* X16577Y37204D01* X16525Y37200D01* X16472Y37204D01* X16422Y37218D01* X16375Y37240D01* X16352Y37256D01* X16343Y37247D01* Y37752D01* G37* G36* Y37145D02*X16388Y37124D01* X16455Y37106D01* X16525Y37100D01* X16594Y37106D01* X16661Y37124D01* X16665Y37125D01* Y35880D01* X16614Y35893D01* X16545Y35900D01* X16475Y35893D01* X16408Y35875D01* X16345Y35846D01* X16343Y35845D01* Y37145D01* G37* G36* Y35772D02*X16372Y35743D01* X16395Y35759D01* X16442Y35781D01* X16492Y35795D01* X16545Y35800D01* X16597Y35795D01* X16647Y35781D01* X16665Y35773D01* Y35226D01* X16647Y35218D01* X16597Y35204D01* X16545Y35200D01* X16492Y35204D01* X16442Y35218D01* X16395Y35240D01* X16372Y35256D01* X16343Y35227D01* Y35772D01* G37* G36* Y35154D02*X16345Y35153D01* X16408Y35124D01* X16475Y35106D01* X16545Y35100D01* X16614Y35106D01* X16665Y35119D01* Y33885D01* X16634Y33893D01* X16565Y33900D01* X16495Y33893D01* X16428Y33875D01* X16365Y33846D01* X16343Y33831D01* Y35154D01* G37* G36* Y33792D02*X16392Y33743D01* X16415Y33759D01* X16462Y33781D01* X16512Y33795D01* X16565Y33800D01* X16617Y33795D01* X16665Y33782D01* Y33217D01* X16617Y33204D01* X16565Y33200D01* X16512Y33204D01* X16462Y33218D01* X16415Y33240D01* X16392Y33256D01* X16343Y33207D01* Y33792D01* G37* G36* Y33168D02*X16365Y33153D01* X16428Y33124D01* X16495Y33106D01* X16565Y33100D01* X16634Y33106D01* X16665Y33114D01* Y31891D01* X16654Y31893D01* X16585Y31900D01* X16515Y31893D01* X16448Y31875D01* X16385Y31846D01* X16343Y31817D01* Y33168D01* G37* G36* Y31812D02*X16412Y31743D01* X16435Y31759D01* X16482Y31781D01* X16532Y31795D01* X16585Y31800D01* X16637Y31795D01* X16665Y31787D01* Y31212D01* X16637Y31204D01* X16585Y31200D01* X16532Y31204D01* X16482Y31218D01* X16435Y31240D01* X16412Y31256D01* X16343Y31187D01* Y31812D01* G37* G36* Y31182D02*X16385Y31153D01* X16423Y31135D01* Y29854D01* X16405Y29846D01* X16360Y29815D01* X16423Y29752D01* Y29247D01* X16360Y29184D01* X16405Y29153D01* X16423Y29145D01* Y27845D01* X16380Y27815D01* X16423Y27772D01* Y27227D01* X16380Y27184D01* X16423Y27154D01* Y25831D01* X16400Y25815D01* X16423Y25792D01* Y25207D01* X16400Y25184D01* X16423Y25168D01* Y23817D01* X16420Y23815D01* X16423Y23812D01* Y23187D01* X16420Y23184D01* X16423Y23182D01* Y21691D01* X16369Y21744D01* X16343Y21706D01* Y23264D01* X16349Y23255D01* X16421Y23327D01* X16405Y23350D01* X16383Y23397D01* X16369Y23447D01* X16365Y23500D01* X16369Y23552D01* X16383Y23602D01* X16405Y23650D01* X16421Y23673D01* X16349Y23744D01* X16343Y23735D01* Y25268D01* X16401Y25327D01* X16385Y25350D01* X16363Y25397D01* X16349Y25447D01* X16345Y25500D01* X16349Y25552D01* X16363Y25602D01* X16385Y25650D01* X16401Y25673D01* X16343Y25731D01* Y27288D01* X16381Y27327D01* X16365Y27350D01* X16343Y27397D01* Y27602D01* X16365Y27650D01* X16381Y27673D01* X16343Y27711D01* Y29308D01* X16361Y29327D01* X16345Y29350D01* X16343Y29354D01* Y29645D01* X16345Y29650D01* X16361Y29673D01* X16343Y29691D01* Y31182D01* G37* G36* X16423Y0D02*X16343D01* Y17385D01* X16349Y17363D01* X16378Y17300D01* X16409Y17255D01* X16423Y17268D01* Y15735D01* X16398Y15700D01* X16369Y15636D01* X16351Y15569D01* X16345Y15500D01* X16351Y15430D01* X16369Y15363D01* X16398Y15300D01* X16423Y15264D01* Y13706D01* X16418Y13700D01* X16389Y13636D01* X16371Y13569D01* X16365Y13500D01* X16371Y13430D01* X16389Y13363D01* X16418Y13300D01* X16423Y13293D01* Y11667D01* X16409Y11636D01* X16391Y11569D01* X16385Y11500D01* X16391Y11430D01* X16409Y11363D01* X16423Y11333D01* Y9614D01* X16411Y9569D01* X16405Y9500D01* X16411Y9430D01* X16423Y9385D01* Y0D01* G37* G36* Y17731D02*X16409Y17744D01* X16378Y17700D01* X16349Y17636D01* X16343Y17614D01* Y19333D01* X16358Y19300D01* X16389Y19255D01* X16423Y19288D01* Y17731D01* G37* G36* Y19397D02*X16423Y19397D01* X16409Y19447D01* X16405Y19500D01* X16409Y19552D01* X16423Y19602D01* X16423Y19602D01* Y19397D01* G37* G36* Y19711D02*X16389Y19744D01* X16358Y19700D01* X16343Y19667D01* Y21293D01* X16369Y21255D01* X16423Y21308D01* Y19711D01* G37* G36* Y21354D02*X16403Y21397D01* X16389Y21447D01* X16385Y21500D01* X16389Y21552D01* X16403Y21602D01* X16423Y21645D01* Y21354D01* G37* G36* Y31135D02*X16448Y31124D01* X16515Y31106D01* X16585Y31100D01* X16654Y31106D01* X16665Y31108D01* Y29894D01* X16605Y29900D01* X16535Y29893D01* X16468Y29875D01* X16423Y29854D01* Y31135D01* G37* G36* Y29752D02*X16432Y29743D01* X16455Y29759D01* X16502Y29781D01* X16552Y29795D01* X16605Y29800D01* X16657Y29795D01* X16665Y29793D01* Y29206D01* X16657Y29204D01* X16605Y29200D01* X16552Y29204D01* X16502Y29218D01* X16455Y29240D01* X16432Y29256D01* X16423Y29247D01* Y29752D01* G37* G36* Y29145D02*X16468Y29124D01* X16535Y29106D01* X16605Y29100D01* X16665Y29105D01* Y27896D01* X16625Y27900D01* X16555Y27893D01* X16488Y27875D01* X16425Y27846D01* X16423Y27845D01* Y29145D01* G37* G36* Y27772D02*X16452Y27743D01* X16475Y27759D01* X16522Y27781D01* X16572Y27795D01* X16625Y27800D01* X16665Y27796D01* Y27203D01* X16625Y27200D01* X16572Y27204D01* X16522Y27218D01* X16475Y27240D01* X16452Y27256D01* X16423Y27227D01* Y27772D01* G37* G36* Y27154D02*X16425Y27153D01* X16488Y27124D01* X16555Y27106D01* X16625Y27100D01* X16665Y27103D01* Y25898D01* X16645Y25900D01* X16575Y25893D01* X16508Y25875D01* X16445Y25846D01* X16423Y25831D01* Y27154D01* G37* G36* Y25792D02*X16472Y25743D01* X16495Y25759D01* X16542Y25781D01* X16592Y25795D01* X16645Y25800D01* X16665Y25798D01* Y25201D01* X16645Y25200D01* X16592Y25204D01* X16542Y25218D01* X16495Y25240D01* X16472Y25256D01* X16423Y25207D01* Y25792D01* G37* G36* Y25168D02*X16445Y25153D01* X16508Y25124D01* X16575Y25106D01* X16645Y25100D01* X16665Y25101D01* Y23900D01* X16595Y23893D01* X16528Y23875D01* X16465Y23846D01* X16423Y23817D01* Y25168D01* G37* G36* Y23812D02*X16492Y23743D01* X16515Y23759D01* X16562Y23781D01* X16612Y23795D01* X16665Y23800D01* Y23200D01* X16612Y23204D01* X16562Y23218D01* X16515Y23240D01* X16492Y23256D01* X16423Y23187D01* Y23812D01* G37* G36* Y23182D02*X16465Y23153D01* X16503Y23135D01* Y21854D01* X16485Y21846D01* X16440Y21815D01* X16503Y21752D01* Y21247D01* X16440Y21184D01* X16485Y21153D01* X16503Y21145D01* Y19845D01* X16460Y19815D01* X16503Y19772D01* Y19227D01* X16460Y19184D01* X16503Y19154D01* Y17831D01* X16480Y17815D01* X16503Y17792D01* Y17207D01* X16480Y17184D01* X16503Y17168D01* Y15817D01* X16500Y15815D01* X16503Y15812D01* Y15187D01* X16500Y15184D01* X16503Y15182D01* Y13691D01* X16449Y13744D01* X16423Y13706D01* Y15264D01* X16429Y15255D01* X16501Y15327D01* X16485Y15350D01* X16463Y15397D01* X16449Y15447D01* X16445Y15500D01* X16449Y15552D01* X16463Y15602D01* X16485Y15650D01* X16501Y15673D01* X16429Y15744D01* X16423Y15735D01* Y17268D01* X16481Y17327D01* X16465Y17350D01* X16443Y17397D01* X16429Y17447D01* X16425Y17500D01* X16429Y17552D01* X16443Y17602D01* X16465Y17650D01* X16481Y17673D01* X16423Y17731D01* Y19288D01* X16461Y19327D01* X16445Y19350D01* X16423Y19397D01* Y19602D01* X16445Y19650D01* X16461Y19673D01* X16423Y19711D01* Y21308D01* X16441Y21327D01* X16425Y21350D01* X16423Y21354D01* Y21645D01* X16425Y21650D01* X16441Y21673D01* X16423Y21691D01* Y23182D01* G37* G36* X16503Y0D02*X16423D01* Y9385D01* X16429Y9363D01* X16458Y9300D01* X16489Y9255D01* X16503Y9268D01* Y7735D01* X16478Y7700D01* X16449Y7636D01* X16431Y7569D01* X16425Y7500D01* X16431Y7430D01* X16449Y7363D01* X16478Y7300D01* X16503Y7264D01* Y5706D01* X16498Y5700D01* X16469Y5636D01* X16451Y5569D01* X16445Y5500D01* X16451Y5430D01* X16469Y5363D01* X16498Y5300D01* X16503Y5293D01* Y3667D01* X16489Y3636D01* X16471Y3569D01* X16465Y3500D01* X16471Y3430D01* X16489Y3363D01* X16503Y3333D01* Y1614D01* X16491Y1569D01* X16485Y1500D01* X16491Y1430D01* X16503Y1385D01* Y0D01* G37* G36* Y9731D02*X16489Y9744D01* X16458Y9700D01* X16429Y9636D01* X16423Y9614D01* Y11333D01* X16438Y11300D01* X16469Y11255D01* X16503Y11288D01* Y9731D01* G37* G36* Y11397D02*X16503Y11397D01* X16489Y11447D01* X16485Y11500D01* X16489Y11552D01* X16503Y11602D01* X16503Y11602D01* Y11397D01* G37* G36* Y11711D02*X16469Y11744D01* X16438Y11700D01* X16423Y11667D01* Y13293D01* X16449Y13255D01* X16503Y13308D01* Y11711D01* G37* G36* Y13354D02*X16483Y13397D01* X16469Y13447D01* X16465Y13500D01* X16469Y13552D01* X16483Y13602D01* X16503Y13645D01* Y13354D01* G37* G36* Y23135D02*X16528Y23124D01* X16595Y23106D01* X16665Y23100D01* Y21898D01* X16615Y21893D01* X16548Y21875D01* X16503Y21854D01* Y23135D01* G37* G36* Y21752D02*X16512Y21743D01* X16535Y21759D01* X16582Y21781D01* X16632Y21795D01* X16665Y21798D01* Y21201D01* X16632Y21204D01* X16582Y21218D01* X16535Y21240D01* X16512Y21256D01* X16503Y21247D01* Y21752D01* G37* G36* Y21145D02*X16548Y21124D01* X16615Y21106D01* X16665Y21101D01* Y19896D01* X16635Y19893D01* X16568Y19875D01* X16505Y19846D01* X16503Y19845D01* Y21145D01* G37* G36* Y19772D02*X16532Y19743D01* X16555Y19759D01* X16602Y19781D01* X16652Y19795D01* X16665Y19796D01* Y19203D01* X16652Y19204D01* X16602Y19218D01* X16555Y19240D01* X16532Y19256D01* X16503Y19227D01* Y19772D01* G37* G36* Y19154D02*X16505Y19153D01* X16568Y19124D01* X16635Y19106D01* X16665Y19103D01* Y17894D01* X16655Y17893D01* X16588Y17875D01* X16525Y17846D01* X16503Y17831D01* Y19154D01* G37* G36* Y17792D02*X16552Y17743D01* X16575Y17759D01* X16622Y17781D01* X16665Y17793D01* Y17206D01* X16622Y17218D01* X16575Y17240D01* X16552Y17256D01* X16503Y17207D01* Y17792D01* G37* G36* Y17168D02*X16525Y17153D01* X16588Y17124D01* X16655Y17106D01* X16665Y17105D01* Y15891D01* X16608Y15875D01* X16545Y15846D01* X16503Y15817D01* Y17168D01* G37* G36* Y15812D02*X16572Y15743D01* X16595Y15759D01* X16642Y15781D01* X16665Y15787D01* Y15212D01* X16642Y15218D01* X16595Y15240D01* X16572Y15256D01* X16503Y15187D01* Y15812D01* G37* G36* Y15182D02*X16545Y15153D01* X16608Y15124D01* X16665Y15108D01* Y13885D01* X16628Y13875D01* X16565Y13846D01* X16520Y13815D01* X16592Y13743D01* X16615Y13759D01* X16662Y13781D01* X16665Y13782D01* Y13217D01* X16662Y13218D01* X16615Y13240D01* X16592Y13256D01* X16520Y13184D01* X16565Y13153D01* X16628Y13124D01* X16665Y13114D01* Y11880D01* X16648Y11875D01* X16585Y11846D01* X16540Y11815D01* X16612Y11743D01* X16635Y11759D01* X16665Y11773D01* Y11226D01* X16635Y11240D01* X16612Y11256D01* X16540Y11184D01* X16585Y11153D01* X16648Y11124D01* X16665Y11119D01* Y9874D01* X16605Y9846D01* X16560Y9815D01* X16632Y9743D01* X16655Y9759D01* X16665Y9764D01* Y9235D01* X16655Y9240D01* X16632Y9256D01* X16560Y9184D01* X16605Y9153D01* X16665Y9125D01* Y7865D01* X16625Y7846D01* X16580Y7815D01* X16652Y7743D01* X16665Y7752D01* Y7247D01* X16652Y7256D01* X16580Y7184D01* X16625Y7153D01* X16665Y7134D01* Y5855D01* X16645Y5846D01* X16600Y5815D01* X16665Y5750D01* Y5249D01* X16600Y5184D01* X16645Y5153D01* X16665Y5144D01* Y3846D01* X16620Y3815D01* X16665Y3770D01* Y3229D01* X16620Y3184D01* X16665Y3153D01* Y1832D01* X16640Y1815D01* X16665Y1790D01* Y1209D01* X16640Y1184D01* X16665Y1167D01* Y0D01* X16503D01* Y1385D01* X16509Y1363D01* X16538Y1300D01* X16569Y1255D01* X16641Y1327D01* X16625Y1350D01* X16603Y1397D01* X16589Y1447D01* X16585Y1500D01* X16589Y1552D01* X16603Y1602D01* X16625Y1650D01* X16641Y1673D01* X16569Y1744D01* X16538Y1700D01* X16509Y1636D01* X16503Y1614D01* Y3333D01* X16518Y3300D01* X16549Y3255D01* X16621Y3327D01* X16605Y3350D01* X16583Y3397D01* X16569Y3447D01* X16565Y3500D01* X16569Y3552D01* X16583Y3602D01* X16605Y3650D01* X16621Y3673D01* X16549Y3744D01* X16518Y3700D01* X16503Y3667D01* Y5293D01* X16529Y5255D01* X16601Y5327D01* X16585Y5350D01* X16563Y5397D01* X16549Y5447D01* X16545Y5500D01* X16549Y5552D01* X16563Y5602D01* X16585Y5650D01* X16601Y5673D01* X16529Y5744D01* X16503Y5706D01* Y7264D01* X16509Y7255D01* X16581Y7327D01* X16565Y7350D01* X16543Y7397D01* X16529Y7447D01* X16525Y7500D01* X16529Y7552D01* X16543Y7602D01* X16565Y7650D01* X16581Y7673D01* X16509Y7744D01* X16503Y7735D01* Y9268D01* X16561Y9327D01* X16545Y9350D01* X16523Y9397D01* X16509Y9447D01* X16505Y9500D01* X16509Y9552D01* X16523Y9602D01* X16545Y9650D01* X16561Y9673D01* X16503Y9731D01* Y11288D01* X16541Y11327D01* X16525Y11350D01* X16503Y11397D01* Y11602D01* X16525Y11650D01* X16541Y11673D01* X16503Y11711D01* Y13308D01* X16521Y13327D01* X16505Y13350D01* X16503Y13354D01* Y13645D01* X16505Y13650D01* X16521Y13673D01* X16503Y13691D01* Y15182D01* G37* G36* X16665Y40000D02*X16826D01* Y39734D01* X16820Y39744D01* X16748Y39673D01* X16764Y39650D01* X16786Y39602D01* X16800Y39552D01* X16805Y39500D01* X16800Y39447D01* X16786Y39397D01* X16764Y39350D01* X16748Y39327D01* X16820Y39255D01* X16826Y39265D01* Y37731D01* X16768Y37673D01* X16784Y37650D01* X16806Y37602D01* X16820Y37552D01* X16825Y37500D01* X16820Y37447D01* X16806Y37397D01* X16784Y37350D01* X16768Y37327D01* X16826Y37268D01* Y35711D01* X16788Y35673D01* X16804Y35650D01* X16826Y35602D01* Y35397D01* X16804Y35350D01* X16788Y35327D01* X16826Y35288D01* Y33691D01* X16808Y33673D01* X16824Y33650D01* X16826Y33645D01* Y33354D01* X16824Y33350D01* X16808Y33327D01* X16826Y33308D01* Y31817D01* X16785Y31846D01* X16721Y31875D01* X16665Y31891D01* Y33114D01* X16701Y33124D01* X16765Y33153D01* X16809Y33184D01* X16738Y33256D01* X16715Y33240D01* X16667Y33218D01* X16665Y33217D01* Y33782D01* X16667Y33781D01* X16715Y33759D01* X16738Y33743D01* X16809Y33815D01* X16765Y33846D01* X16701Y33875D01* X16665Y33885D01* Y35119D01* X16681Y35124D01* X16745Y35153D01* X16789Y35184D01* X16718Y35256D01* X16695Y35240D01* X16665Y35226D01* Y35773D01* X16695Y35759D01* X16718Y35743D01* X16789Y35815D01* X16745Y35846D01* X16681Y35875D01* X16665Y35880D01* Y37125D01* X16725Y37153D01* X16769Y37184D01* X16698Y37256D01* X16675Y37240D01* X16665Y37235D01* Y37764D01* X16675Y37759D01* X16698Y37743D01* X16769Y37815D01* X16725Y37846D01* X16665Y37874D01* Y39134D01* X16705Y39153D01* X16749Y39184D01* X16678Y39256D01* X16665Y39247D01* Y39752D01* X16678Y39743D01* X16749Y39815D01* X16705Y39846D01* X16665Y39865D01* Y40000D01* G37* G36* X16826Y15890D02*X16814Y15893D01* X16745Y15900D01* X16675Y15893D01* X16665Y15891D01* Y17105D01* X16725Y17100D01* X16794Y17106D01* X16826Y17114D01* Y15890D01* G37* G36* Y17217D02*X16777Y17204D01* X16725Y17200D01* X16672Y17204D01* X16665Y17206D01* Y17793D01* X16672Y17795D01* X16725Y17800D01* X16777Y17795D01* X16826Y17782D01* Y17217D01* G37* G36* Y17885D02*X16794Y17893D01* X16725Y17900D01* X16665Y17894D01* Y19103D01* X16705Y19100D01* X16774Y19106D01* X16826Y19120D01* Y17885D01* G37* G36* Y19227D02*X16807Y19218D01* X16757Y19204D01* X16705Y19200D01* X16665Y19203D01* Y19796D01* X16705Y19800D01* X16757Y19795D01* X16807Y19781D01* X16826Y19772D01* Y19227D01* G37* G36* Y19879D02*X16774Y19893D01* X16705Y19900D01* X16665Y19896D01* Y21101D01* X16685Y21100D01* X16754Y21106D01* X16821Y21124D01* X16826Y21126D01* Y19879D01* G37* G36* Y21236D02*X16787Y21218D01* X16737Y21204D01* X16685Y21200D01* X16665Y21201D01* Y21798D01* X16685Y21800D01* X16737Y21795D01* X16787Y21781D01* X16826Y21763D01* Y21236D01* G37* G36* Y21873D02*X16821Y21875D01* X16754Y21893D01* X16685Y21900D01* X16665Y21898D01* Y23100D01* X16734Y23106D01* X16801Y23124D01* X16826Y23135D01* Y21873D01* G37* G36* Y23248D02*X16815Y23240D01* X16767Y23218D01* X16717Y23204D01* X16665Y23200D01* Y23800D01* X16717Y23795D01* X16767Y23781D01* X16815Y23759D01* X16826Y23751D01* Y23248D01* G37* G36* Y23864D02*X16801Y23875D01* X16734Y23893D01* X16665Y23900D01* Y25101D01* X16714Y25106D01* X16781Y25124D01* X16826Y25145D01* Y23864D01* G37* G36* Y25247D02*X16818Y25256D01* X16795Y25240D01* X16747Y25218D01* X16697Y25204D01* X16665Y25201D01* Y25798D01* X16697Y25795D01* X16747Y25781D01* X16795Y25759D01* X16818Y25743D01* X16826Y25752D01* Y25247D01* G37* G36* Y25854D02*X16781Y25875D01* X16714Y25893D01* X16665Y25898D01* Y27103D01* X16694Y27106D01* X16761Y27124D01* X16825Y27153D01* X16826Y27154D01* Y25854D01* G37* G36* Y27227D02*X16798Y27256D01* X16775Y27240D01* X16727Y27218D01* X16677Y27204D01* X16665Y27203D01* Y27796D01* X16677Y27795D01* X16727Y27781D01* X16775Y27759D01* X16798Y27743D01* X16826Y27772D01* Y27227D01* G37* G36* Y27845D02*X16825Y27846D01* X16761Y27875D01* X16694Y27893D01* X16665Y27896D01* Y29105D01* X16674Y29106D01* X16741Y29124D01* X16805Y29153D01* X16826Y29169D01* Y27845D01* G37* G36* Y29207D02*X16778Y29256D01* X16755Y29240D01* X16707Y29218D01* X16665Y29206D01* Y29793D01* X16707Y29781D01* X16755Y29759D01* X16778Y29743D01* X16826Y29792D01* Y29207D01* G37* G36* Y29831D02*X16805Y29846D01* X16741Y29875D01* X16674Y29893D01* X16665Y29894D01* Y31108D01* X16721Y31124D01* X16785Y31153D01* X16826Y31183D01* Y29831D01* G37* G36* Y31187D02*X16758Y31256D01* X16735Y31240D01* X16687Y31218D01* X16665Y31212D01* Y31787D01* X16687Y31781D01* X16735Y31759D01* X16758Y31743D01* X16826Y31812D01* Y31187D01* G37* G36* Y40000D02*X16906D01* Y37614D01* X16900Y37636D01* X16871Y37700D01* X16840Y37744D01* X16826Y37731D01* Y39265D01* X16851Y39300D01* X16880Y39363D01* X16898Y39430D01* X16905Y39500D01* X16898Y39569D01* X16880Y39636D01* X16851Y39700D01* X16826Y39734D01* Y40000D01* G37* G36* X16906Y29731D02*X16848Y29673D01* X16864Y29650D01* X16886Y29602D01* X16900Y29552D01* X16905Y29500D01* X16900Y29447D01* X16886Y29397D01* X16864Y29350D01* X16848Y29327D01* X16906Y29268D01* Y27711D01* X16868Y27673D01* X16884Y27650D01* X16906Y27602D01* Y27397D01* X16884Y27350D01* X16868Y27327D01* X16906Y27288D01* Y25691D01* X16888Y25673D01* X16904Y25650D01* X16906Y25645D01* Y25354D01* X16904Y25350D01* X16888Y25327D01* X16906Y25308D01* Y23817D01* X16865Y23846D01* X16826Y23864D01* Y25145D01* X16845Y25153D01* X16889Y25184D01* X16826Y25247D01* Y25752D01* X16889Y25815D01* X16845Y25846D01* X16826Y25854D01* Y27154D01* X16869Y27184D01* X16826Y27227D01* Y27772D01* X16869Y27815D01* X16826Y27845D01* Y29169D01* X16849Y29184D01* X16826Y29207D01* Y29792D01* X16849Y29815D01* X16826Y29831D01* Y31183D01* X16829Y31184D01* X16826Y31187D01* Y31812D01* X16829Y31815D01* X16826Y31817D01* Y33308D01* X16880Y33255D01* X16906Y33293D01* Y31734D01* X16900Y31744D01* X16828Y31673D01* X16844Y31650D01* X16866Y31602D01* X16880Y31552D01* X16885Y31500D01* X16880Y31447D01* X16866Y31397D01* X16844Y31350D01* X16828Y31327D01* X16900Y31255D01* X16906Y31265D01* Y29731D01* G37* G36* Y15864D02*X16881Y15875D01* X16826Y15890D01* Y17114D01* X16861Y17124D01* X16906Y17145D01* Y15864D01* G37* G36* Y17247D02*X16898Y17256D01* X16875Y17240D01* X16827Y17218D01* X16826Y17217D01* Y17782D01* X16827Y17781D01* X16875Y17759D01* X16898Y17743D01* X16906Y17752D01* Y17247D01* G37* G36* Y17854D02*X16861Y17875D01* X16826Y17885D01* Y19120D01* X16841Y19124D01* X16905Y19153D01* X16906Y19154D01* Y17854D01* G37* G36* Y19227D02*X16878Y19256D01* X16855Y19240D01* X16826Y19227D01* Y19772D01* X16855Y19759D01* X16878Y19743D01* X16906Y19772D01* Y19227D01* G37* G36* Y19845D02*X16905Y19846D01* X16841Y19875D01* X16826Y19879D01* Y21126D01* X16885Y21153D01* X16906Y21169D01* Y19845D01* G37* G36* Y21207D02*X16858Y21256D01* X16835Y21240D01* X16826Y21236D01* Y21763D01* X16835Y21759D01* X16858Y21743D01* X16906Y21792D01* Y21207D01* G37* G36* Y21831D02*X16885Y21846D01* X16826Y21873D01* Y23135D01* X16865Y23153D01* X16906Y23183D01* Y21831D01* G37* G36* Y23187D02*X16838Y23256D01* X16826Y23248D01* Y23751D01* X16838Y23743D01* X16906Y23812D01* Y23187D01* G37* G36* Y33706D02*X16880Y33744D01* X16826Y33691D01* Y35288D01* X16860Y35255D01* X16891Y35300D01* X16906Y35333D01* Y33706D01* G37* G36* Y35666D02*X16891Y35700D01* X16860Y35744D01* X16826Y35711D01* Y37268D01* X16840Y37255D01* X16871Y37300D01* X16900Y37363D01* X16906Y37385D01* Y35666D01* G37* G36* Y40000D02*X16986D01* Y29614D01* X16980Y29636D01* X16951Y29700D01* X16920Y29744D01* X16906Y29731D01* Y31265D01* X16931Y31300D01* X16960Y31363D01* X16978Y31430D01* X16985Y31500D01* X16978Y31569D01* X16960Y31636D01* X16931Y31700D01* X16906Y31734D01* Y33293D01* X16911Y33300D01* X16940Y33363D01* X16958Y33430D01* X16965Y33500D01* X16958Y33569D01* X16940Y33636D01* X16911Y33700D01* X16906Y33706D01* Y35333D01* X16920Y35363D01* X16938Y35430D01* X16945Y35500D01* X16938Y35569D01* X16920Y35636D01* X16906Y35666D01* Y37385D01* X16918Y37430D01* X16925Y37500D01* X16918Y37569D01* X16906Y37614D01* Y40000D01* G37* G36* Y29268D02*X16920Y29255D01* X16951Y29300D01* X16980Y29363D01* X16986Y29385D01* Y27666D01* X16971Y27700D01* X16940Y27744D01* X16906Y27711D01* Y29268D01* G37* G36* Y27602D02*X16920Y27552D01* X16925Y27500D01* X16920Y27447D01* X16906Y27397D01* Y27602D01* G37* G36* Y27288D02*X16940Y27255D01* X16971Y27300D01* X16986Y27333D01* Y25706D01* X16960Y25744D01* X16906Y25691D01* Y27288D01* G37* G36* Y25645D02*X16926Y25602D01* X16940Y25552D01* X16945Y25500D01* X16940Y25447D01* X16926Y25397D01* X16906Y25354D01* Y25645D01* G37* G36* Y25308D02*X16960Y25255D01* X16986Y25293D01* Y23734D01* X16980Y23744D01* X16908Y23673D01* X16924Y23650D01* X16946Y23602D01* X16960Y23552D01* X16965Y23500D01* X16960Y23447D01* X16946Y23397D01* X16924Y23350D01* X16908Y23327D01* X16980Y23255D01* X16986Y23265D01* Y21731D01* X16928Y21673D01* X16944Y21650D01* X16966Y21602D01* X16980Y21552D01* X16985Y21500D01* X16980Y21447D01* X16966Y21397D01* X16944Y21350D01* X16928Y21327D01* X16986Y21268D01* Y19711D01* X16948Y19673D01* X16964Y19650D01* X16986Y19602D01* Y19397D01* X16964Y19350D01* X16948Y19327D01* X16986Y19288D01* Y17691D01* X16968Y17673D01* X16984Y17650D01* X16986Y17645D01* Y17354D01* X16984Y17350D01* X16968Y17327D01* X16986Y17308D01* Y15817D01* X16945Y15846D01* X16906Y15864D01* Y17145D01* X16925Y17153D01* X16969Y17184D01* X16906Y17247D01* Y17752D01* X16969Y17815D01* X16925Y17846D01* X16906Y17854D01* Y19154D01* X16949Y19184D01* X16906Y19227D01* Y19772D01* X16949Y19815D01* X16906Y19845D01* Y21169D01* X16929Y21184D01* X16906Y21207D01* Y21792D01* X16929Y21815D01* X16906Y21831D01* Y23183D01* X16909Y23184D01* X16906Y23187D01* Y23812D01* X16909Y23815D01* X16906Y23817D01* Y25308D01* G37* G36* X16826Y35602D02*X16840Y35552D01* X16845Y35500D01* X16840Y35447D01* X16826Y35397D01* Y35602D01* G37* G36* Y33645D02*X16846Y33602D01* X16860Y33552D01* X16865Y33500D01* X16860Y33447D01* X16846Y33397D01* X16826Y33354D01* Y33645D01* G37* G36* X16665Y15787D02*X16692Y15795D01* X16745Y15800D01* X16797Y15795D01* X16847Y15781D01* X16895Y15759D01* X16918Y15743D01* X16986Y15812D01* Y15187D01* X16918Y15256D01* X16895Y15240D01* X16847Y15218D01* X16797Y15204D01* X16745Y15200D01* X16692Y15204D01* X16665Y15212D01* Y15787D01* G37* G36* Y15108D02*X16675Y15106D01* X16745Y15100D01* X16814Y15106D01* X16881Y15124D01* X16945Y15153D01* X16986Y15183D01* Y13831D01* X16965Y13846D01* X16901Y13875D01* X16834Y13893D01* X16765Y13900D01* X16695Y13893D01* X16665Y13885D01* Y15108D01* G37* G36* Y13782D02*X16712Y13795D01* X16765Y13800D01* X16817Y13795D01* X16867Y13781D01* X16915Y13759D01* X16938Y13743D01* X16986Y13792D01* Y13207D01* X16938Y13256D01* X16915Y13240D01* X16867Y13218D01* X16817Y13204D01* X16765Y13200D01* X16712Y13204D01* X16665Y13217D01* Y13782D01* G37* G36* Y13114D02*X16695Y13106D01* X16765Y13100D01* X16834Y13106D01* X16901Y13124D01* X16965Y13153D01* X16986Y13169D01* Y11845D01* X16985Y11846D01* X16921Y11875D01* X16854Y11893D01* X16785Y11900D01* X16715Y11893D01* X16665Y11880D01* Y13114D01* G37* G36* Y11773D02*X16682Y11781D01* X16732Y11795D01* X16785Y11800D01* X16837Y11795D01* X16887Y11781D01* X16935Y11759D01* X16958Y11743D01* X16986Y11772D01* Y11227D01* X16958Y11256D01* X16935Y11240D01* X16887Y11218D01* X16837Y11204D01* X16785Y11200D01* X16732Y11204D01* X16682Y11218D01* X16665Y11226D01* Y11773D01* G37* G36* Y11119D02*X16715Y11106D01* X16785Y11100D01* X16854Y11106D01* X16921Y11124D01* X16985Y11153D01* X16986Y11154D01* Y9854D01* X16941Y9875D01* X16874Y9893D01* X16805Y9900D01* X16735Y9893D01* X16668Y9875D01* X16665Y9874D01* Y11119D01* G37* G36* Y9764D02*X16702Y9781D01* X16752Y9795D01* X16805Y9800D01* X16857Y9795D01* X16907Y9781D01* X16955Y9759D01* X16978Y9743D01* X16986Y9752D01* Y9247D01* X16978Y9256D01* X16955Y9240D01* X16907Y9218D01* X16857Y9204D01* X16805Y9200D01* X16752Y9204D01* X16702Y9218D01* X16665Y9235D01* Y9764D01* G37* G36* Y9125D02*X16668Y9124D01* X16735Y9106D01* X16805Y9100D01* X16874Y9106D01* X16941Y9124D01* X16986Y9145D01* Y7864D01* X16961Y7875D01* X16894Y7893D01* X16825Y7900D01* X16755Y7893D01* X16688Y7875D01* X16665Y7865D01* Y9125D01* G37* G36* Y7752D02*X16675Y7759D01* X16722Y7781D01* X16772Y7795D01* X16825Y7800D01* X16877Y7795D01* X16927Y7781D01* X16975Y7759D01* X16986Y7751D01* Y7248D01* X16975Y7240D01* X16927Y7218D01* X16877Y7204D01* X16825Y7200D01* X16772Y7204D01* X16722Y7218D01* X16675Y7240D01* X16665Y7247D01* Y7752D01* G37* G36* Y7134D02*X16688Y7124D01* X16755Y7106D01* X16825Y7100D01* X16894Y7106D01* X16961Y7124D01* X16986Y7135D01* Y5873D01* X16981Y5875D01* X16914Y5893D01* X16845Y5900D01* X16775Y5893D01* X16708Y5875D01* X16665Y5855D01* Y7134D01* G37* G36* Y5750D02*X16672Y5743D01* X16695Y5759D01* X16742Y5781D01* X16792Y5795D01* X16845Y5800D01* X16897Y5795D01* X16947Y5781D01* X16986Y5763D01* Y5236D01* X16947Y5218D01* X16897Y5204D01* X16845Y5200D01* X16792Y5204D01* X16742Y5218D01* X16695Y5240D01* X16672Y5256D01* X16665Y5249D01* Y5750D01* G37* G36* Y5144D02*X16708Y5124D01* X16775Y5106D01* X16845Y5100D01* X16914Y5106D01* X16981Y5124D01* X16986Y5126D01* Y3879D01* X16934Y3893D01* X16865Y3900D01* X16795Y3893D01* X16728Y3875D01* X16665Y3846D01* Y5144D01* G37* G36* Y3770D02*X16692Y3743D01* X16715Y3759D01* X16762Y3781D01* X16812Y3795D01* X16865Y3800D01* X16917Y3795D01* X16967Y3781D01* X16986Y3772D01* Y3227D01* X16967Y3218D01* X16917Y3204D01* X16865Y3200D01* X16812Y3204D01* X16762Y3218D01* X16715Y3240D01* X16692Y3256D01* X16665Y3229D01* Y3770D01* G37* G36* Y3153D02*X16728Y3124D01* X16795Y3106D01* X16865Y3100D01* X16934Y3106D01* X16986Y3120D01* Y1885D01* X16954Y1893D01* X16885Y1900D01* X16815Y1893D01* X16748Y1875D01* X16685Y1846D01* X16665Y1832D01* Y3153D01* G37* G36* Y1790D02*X16712Y1743D01* X16735Y1759D01* X16782Y1781D01* X16832Y1795D01* X16885Y1800D01* X16937Y1795D01* X16986Y1782D01* Y1217D01* X16937Y1204D01* X16885Y1200D01* X16832Y1204D01* X16782Y1218D01* X16735Y1240D01* X16712Y1256D01* X16665Y1209D01* Y1790D01* G37* G36* Y1167D02*X16685Y1153D01* X16748Y1124D01* X16815Y1106D01* X16885Y1100D01* X16954Y1106D01* X16986Y1114D01* Y0D01* X16665D01* Y1167D01* G37* G36* X16986Y40000D02*X17066D01* Y21614D01* X17060Y21636D01* X17031Y21700D01* X17000Y21744D01* X16986Y21731D01* Y23265D01* X17011Y23300D01* X17040Y23363D01* X17058Y23430D01* X17065Y23500D01* X17058Y23569D01* X17040Y23636D01* X17011Y23700D01* X16986Y23734D01* Y25293D01* X16991Y25300D01* X17020Y25363D01* X17038Y25430D01* X17045Y25500D01* X17038Y25569D01* X17020Y25636D01* X16991Y25700D01* X16986Y25706D01* Y27333D01* X17000Y27363D01* X17018Y27430D01* X17025Y27500D01* X17018Y27569D01* X17000Y27636D01* X16986Y27666D01* Y29385D01* X16998Y29430D01* X17005Y29500D01* X16998Y29569D01* X16986Y29614D01* Y40000D01* G37* G36* X17066Y0D02*X16986D01* Y1114D01* X17021Y1124D01* X17066Y1145D01* Y0D01* G37* G36* Y1247D02*X17058Y1256D01* X17035Y1240D01* X16987Y1218D01* X16986Y1217D01* Y1782D01* X16987Y1781D01* X17035Y1759D01* X17058Y1743D01* X17066Y1752D01* Y1247D01* G37* G36* Y1854D02*X17021Y1875D01* X16986Y1885D01* Y3120D01* X17001Y3124D01* X17065Y3153D01* X17066Y3154D01* Y1854D01* G37* G36* Y3227D02*X17038Y3256D01* X17015Y3240D01* X16986Y3227D01* Y3772D01* X17015Y3759D01* X17038Y3743D01* X17066Y3772D01* Y3227D01* G37* G36* Y3845D02*X17065Y3846D01* X17001Y3875D01* X16986Y3879D01* Y5126D01* X17045Y5153D01* X17066Y5169D01* Y3845D01* G37* G36* Y5207D02*X17018Y5256D01* X16995Y5240D01* X16986Y5236D01* Y5763D01* X16995Y5759D01* X17018Y5743D01* X17066Y5792D01* Y5207D01* G37* G36* Y5831D02*X17045Y5846D01* X16986Y5873D01* Y7135D01* X17025Y7153D01* X17066Y7183D01* Y5831D01* G37* G36* Y7187D02*X16998Y7256D01* X16986Y7248D01* Y7751D01* X16998Y7743D01* X17066Y7812D01* Y7187D01* G37* G36* Y7817D02*X17025Y7846D01* X16986Y7864D01* Y9145D01* X17005Y9153D01* X17049Y9184D01* X16986Y9247D01* Y9752D01* X17049Y9815D01* X17005Y9846D01* X16986Y9854D01* Y11154D01* X17029Y11184D01* X16986Y11227D01* Y11772D01* X17029Y11815D01* X16986Y11845D01* Y13169D01* X17009Y13184D01* X16986Y13207D01* Y13792D01* X17009Y13815D01* X16986Y13831D01* Y15183D01* X16989Y15184D01* X16986Y15187D01* Y15812D01* X16989Y15815D01* X16986Y15817D01* Y17308D01* X17040Y17255D01* X17066Y17293D01* Y15734D01* X17060Y15744D01* X16988Y15673D01* X17004Y15650D01* X17026Y15602D01* X17040Y15552D01* X17045Y15500D01* X17040Y15447D01* X17026Y15397D01* X17004Y15350D01* X16988Y15327D01* X17060Y15255D01* X17066Y15265D01* Y13731D01* X17008Y13673D01* X17024Y13650D01* X17046Y13602D01* X17060Y13552D01* X17065Y13500D01* X17060Y13447D01* X17046Y13397D01* X17024Y13350D01* X17008Y13327D01* X17066Y13268D01* Y11711D01* X17028Y11673D01* X17044Y11650D01* X17066Y11602D01* Y11397D01* X17044Y11350D01* X17028Y11327D01* X17066Y11288D01* Y9691D01* X17048Y9673D01* X17064Y9650D01* X17066Y9645D01* Y9354D01* X17064Y9350D01* X17048Y9327D01* X17066Y9308D01* Y7817D01* G37* G36* Y17706D02*X17040Y17744D01* X16986Y17691D01* Y19288D01* X17020Y19255D01* X17051Y19300D01* X17066Y19333D01* Y17706D01* G37* G36* Y19666D02*X17051Y19700D01* X17020Y19744D01* X16986Y19711D01* Y21268D01* X17000Y21255D01* X17031Y21300D01* X17060Y21363D01* X17066Y21385D01* Y19666D01* G37* G36* Y40000D02*X17146D01* Y13614D01* X17140Y13636D01* X17111Y13700D01* X17080Y13744D01* X17066Y13731D01* Y15265D01* X17091Y15300D01* X17120Y15363D01* X17138Y15430D01* X17145Y15500D01* X17138Y15569D01* X17120Y15636D01* X17091Y15700D01* X17066Y15734D01* Y17293D01* X17071Y17300D01* X17100Y17363D01* X17118Y17430D01* X17125Y17500D01* X17118Y17569D01* X17100Y17636D01* X17071Y17700D01* X17066Y17706D01* Y19333D01* X17080Y19363D01* X17098Y19430D01* X17105Y19500D01* X17098Y19569D01* X17080Y19636D01* X17066Y19666D01* Y21385D01* X17078Y21430D01* X17085Y21500D01* X17078Y21569D01* X17066Y21614D01* Y40000D01* G37* G36* X17146Y0D02*X17066D01* Y1145D01* X17085Y1153D01* X17129Y1184D01* X17066Y1247D01* Y1752D01* X17129Y1815D01* X17085Y1846D01* X17066Y1854D01* Y3154D01* X17109Y3184D01* X17066Y3227D01* Y3772D01* X17109Y3815D01* X17066Y3845D01* Y5169D01* X17089Y5184D01* X17066Y5207D01* Y5792D01* X17089Y5815D01* X17066Y5831D01* Y7183D01* X17069Y7184D01* X17066Y7187D01* Y7812D01* X17069Y7815D01* X17066Y7817D01* Y9308D01* X17120Y9255D01* X17146Y9293D01* Y7734D01* X17140Y7744D01* X17068Y7673D01* X17084Y7650D01* X17106Y7602D01* X17120Y7552D01* X17125Y7500D01* X17120Y7447D01* X17106Y7397D01* X17084Y7350D01* X17068Y7327D01* X17140Y7255D01* X17146Y7265D01* Y5731D01* X17088Y5673D01* X17104Y5650D01* X17126Y5602D01* X17140Y5552D01* X17145Y5500D01* X17140Y5447D01* X17126Y5397D01* X17104Y5350D01* X17088Y5327D01* X17146Y5268D01* Y3711D01* X17108Y3673D01* X17124Y3650D01* X17146Y3602D01* Y3397D01* X17124Y3350D01* X17108Y3327D01* X17146Y3288D01* Y1691D01* X17128Y1673D01* X17144Y1650D01* X17146Y1645D01* Y1354D01* X17144Y1350D01* X17128Y1327D01* X17146Y1308D01* Y0D01* G37* G36* Y9706D02*X17120Y9744D01* X17066Y9691D01* Y11288D01* X17100Y11255D01* X17131Y11300D01* X17146Y11333D01* Y9706D01* G37* G36* Y11666D02*X17131Y11700D01* X17100Y11744D01* X17066Y11711D01* Y13268D01* X17080Y13255D01* X17111Y13300D01* X17140Y13363D01* X17146Y13385D01* Y11666D01* G37* G36* Y40000D02*X18183D01* Y39735D01* X18158Y39700D01* X18129Y39636D01* X18111Y39569D01* X18105Y39500D01* X18111Y39430D01* X18129Y39363D01* X18158Y39300D01* X18183Y39264D01* Y37706D01* X18178Y37700D01* X18149Y37636D01* X18131Y37569D01* X18125Y37500D01* X18131Y37430D01* X18149Y37363D01* X18178Y37300D01* X18183Y37293D01* Y35667D01* X18169Y35636D01* X18151Y35569D01* X18145Y35500D01* X18151Y35430D01* X18169Y35363D01* X18183Y35333D01* Y33614D01* X18171Y33569D01* X18165Y33500D01* X18171Y33430D01* X18183Y33385D01* Y0D01* X17146D01* Y1308D01* X17200Y1255D01* X17231Y1300D01* X17260Y1363D01* X17278Y1430D01* X17285Y1500D01* X17278Y1569D01* X17260Y1636D01* X17231Y1700D01* X17200Y1744D01* X17146Y1691D01* Y3288D01* X17180Y3255D01* X17211Y3300D01* X17240Y3363D01* X17258Y3430D01* X17265Y3500D01* X17258Y3569D01* X17240Y3636D01* X17211Y3700D01* X17180Y3744D01* X17146Y3711D01* Y5268D01* X17160Y5255D01* X17191Y5300D01* X17220Y5363D01* X17238Y5430D01* X17245Y5500D01* X17238Y5569D01* X17220Y5636D01* X17191Y5700D01* X17160Y5744D01* X17146Y5731D01* Y7265D01* X17171Y7300D01* X17200Y7363D01* X17218Y7430D01* X17225Y7500D01* X17218Y7569D01* X17200Y7636D01* X17171Y7700D01* X17146Y7734D01* Y9293D01* X17151Y9300D01* X17180Y9363D01* X17198Y9430D01* X17205Y9500D01* X17198Y9569D01* X17180Y9636D01* X17151Y9700D01* X17146Y9706D01* Y11333D01* X17160Y11363D01* X17178Y11430D01* X17185Y11500D01* X17178Y11569D01* X17160Y11636D01* X17146Y11666D01* Y13385D01* X17158Y13430D01* X17165Y13500D01* X17158Y13569D01* X17146Y13614D01* Y40000D01* G37* G36* X18183D02*X18263D01* Y39817D01* X18260Y39815D01* X18263Y39812D01* Y39187D01* X18260Y39184D01* X18263Y39182D01* Y37691D01* X18209Y37744D01* X18183Y37706D01* Y39264D01* X18189Y39255D01* X18261Y39327D01* X18245Y39350D01* X18223Y39397D01* X18209Y39447D01* X18205Y39500D01* X18209Y39552D01* X18223Y39602D01* X18245Y39650D01* X18261Y39673D01* X18189Y39744D01* X18183Y39735D01* Y40000D01* G37* G36* Y37293D02*X18209Y37255D01* X18263Y37308D01* Y35711D01* X18229Y35744D01* X18198Y35700D01* X18183Y35667D01* Y37293D01* G37* G36* Y35333D02*X18198Y35300D01* X18229Y35255D01* X18263Y35288D01* Y33731D01* X18249Y33744D01* X18218Y33700D01* X18189Y33636D01* X18183Y33614D01* Y35333D01* G37* G36* Y33385D02*X18189Y33363D01* X18218Y33300D01* X18249Y33255D01* X18263Y33268D01* Y31735D01* X18238Y31700D01* X18209Y31636D01* X18191Y31569D01* X18185Y31500D01* X18191Y31430D01* X18209Y31363D01* X18238Y31300D01* X18263Y31264D01* Y29706D01* X18258Y29700D01* X18229Y29636D01* X18211Y29569D01* X18205Y29500D01* X18211Y29430D01* X18229Y29363D01* X18258Y29300D01* X18263Y29293D01* Y27667D01* X18249Y27636D01* X18231Y27569D01* X18225Y27500D01* X18231Y27430D01* X18249Y27363D01* X18263Y27333D01* Y25614D01* X18251Y25569D01* X18245Y25500D01* X18251Y25430D01* X18263Y25385D01* Y0D01* X18183D01* Y33385D01* G37* G36* X18263Y37354D02*X18243Y37397D01* X18229Y37447D01* X18225Y37500D01* X18229Y37552D01* X18243Y37602D01* X18263Y37645D01* Y37354D01* G37* G36* Y35397D02*X18263Y35397D01* X18249Y35447D01* X18245Y35500D01* X18249Y35552D01* X18263Y35602D01* X18263Y35602D01* Y35397D01* G37* G36* Y40000D02*X18343D01* Y39864D01* X18305Y39846D01* X18263Y39817D01* Y40000D01* G37* G36* Y39812D02*X18332Y39743D01* X18343Y39751D01* Y39248D01* X18332Y39256D01* X18263Y39187D01* Y39812D01* G37* G36* Y39182D02*X18305Y39153D01* X18343Y39135D01* Y37854D01* X18325Y37846D01* X18280Y37815D01* X18343Y37752D01* Y37247D01* X18280Y37184D01* X18325Y37153D01* X18343Y37145D01* Y35845D01* X18300Y35815D01* X18343Y35772D01* Y35227D01* X18300Y35184D01* X18343Y35154D01* Y33831D01* X18320Y33815D01* X18343Y33792D01* Y33207D01* X18320Y33184D01* X18343Y33168D01* Y31817D01* X18340Y31815D01* X18343Y31812D01* Y31187D01* X18340Y31184D01* X18343Y31182D01* Y29691D01* X18289Y29744D01* X18263Y29706D01* Y31264D01* X18269Y31255D01* X18341Y31327D01* X18325Y31350D01* X18303Y31397D01* X18289Y31447D01* X18285Y31500D01* X18289Y31552D01* X18303Y31602D01* X18325Y31650D01* X18341Y31673D01* X18269Y31744D01* X18263Y31735D01* Y33268D01* X18321Y33327D01* X18305Y33350D01* X18283Y33397D01* X18269Y33447D01* X18265Y33500D01* X18269Y33552D01* X18283Y33602D01* X18305Y33650D01* X18321Y33673D01* X18263Y33731D01* Y35288D01* X18301Y35327D01* X18285Y35350D01* X18263Y35397D01* Y35602D01* X18285Y35650D01* X18301Y35673D01* X18263Y35711D01* Y37308D01* X18281Y37327D01* X18265Y37350D01* X18263Y37354D01* Y37645D01* X18265Y37650D01* X18281Y37673D01* X18263Y37691D01* Y39182D01* G37* G36* Y29293D02*X18289Y29255D01* X18343Y29308D01* Y27711D01* X18309Y27744D01* X18278Y27700D01* X18263Y27667D01* Y29293D01* G37* G36* Y27333D02*X18278Y27300D01* X18309Y27255D01* X18343Y27288D01* Y25731D01* X18329Y25744D01* X18298Y25700D01* X18269Y25636D01* X18263Y25614D01* Y27333D01* G37* G36* Y25385D02*X18269Y25363D01* X18298Y25300D01* X18329Y25255D01* X18343Y25268D01* Y23735D01* X18318Y23700D01* X18289Y23636D01* X18271Y23569D01* X18265Y23500D01* X18271Y23430D01* X18289Y23363D01* X18318Y23300D01* X18343Y23264D01* Y21706D01* X18338Y21700D01* X18309Y21636D01* X18291Y21569D01* X18285Y21500D01* X18291Y21430D01* X18309Y21363D01* X18338Y21300D01* X18343Y21293D01* Y19667D01* X18329Y19636D01* X18311Y19569D01* X18305Y19500D01* X18311Y19430D01* X18329Y19363D01* X18343Y19333D01* Y17614D01* X18331Y17569D01* X18325Y17500D01* X18331Y17430D01* X18343Y17385D01* Y0D01* X18263D01* Y25385D01* G37* G36* X18343Y29354D02*X18323Y29397D01* X18309Y29447D01* X18305Y29500D01* X18309Y29552D01* X18323Y29602D01* X18343Y29645D01* Y29354D01* G37* G36* Y27397D02*X18343Y27397D01* X18329Y27447D01* X18325Y27500D01* X18329Y27552D01* X18343Y27602D01* X18343Y27602D01* Y27397D01* G37* G36* Y40000D02*X18665D01* Y39865D01* X18641Y39875D01* X18574Y39893D01* X18505Y39900D01* X18435Y39893D01* X18368Y39875D01* X18343Y39864D01* Y40000D01* G37* G36* Y39751D02*X18355Y39759D01* X18402Y39781D01* X18452Y39795D01* X18505Y39800D01* X18557Y39795D01* X18607Y39781D01* X18655Y39759D01* X18665Y39752D01* Y39247D01* X18655Y39240D01* X18607Y39218D01* X18557Y39204D01* X18505Y39200D01* X18452Y39204D01* X18402Y39218D01* X18355Y39240D01* X18343Y39248D01* Y39751D01* G37* G36* Y39135D02*X18368Y39124D01* X18435Y39106D01* X18505Y39100D01* X18574Y39106D01* X18641Y39124D01* X18665Y39134D01* Y37874D01* X18661Y37875D01* X18594Y37893D01* X18525Y37900D01* X18455Y37893D01* X18388Y37875D01* X18343Y37854D01* Y39135D01* G37* G36* Y37752D02*X18352Y37743D01* X18375Y37759D01* X18422Y37781D01* X18472Y37795D01* X18525Y37800D01* X18577Y37795D01* X18627Y37781D01* X18665Y37764D01* Y37235D01* X18627Y37218D01* X18577Y37204D01* X18525Y37200D01* X18472Y37204D01* X18422Y37218D01* X18375Y37240D01* X18352Y37256D01* X18343Y37247D01* Y37752D01* G37* G36* Y37145D02*X18388Y37124D01* X18455Y37106D01* X18525Y37100D01* X18594Y37106D01* X18661Y37124D01* X18665Y37125D01* Y35880D01* X18614Y35893D01* X18545Y35900D01* X18475Y35893D01* X18408Y35875D01* X18345Y35846D01* X18343Y35845D01* Y37145D01* G37* G36* Y35772D02*X18372Y35743D01* X18395Y35759D01* X18442Y35781D01* X18492Y35795D01* X18545Y35800D01* X18597Y35795D01* X18647Y35781D01* X18665Y35773D01* Y35226D01* X18647Y35218D01* X18597Y35204D01* X18545Y35200D01* X18492Y35204D01* X18442Y35218D01* X18395Y35240D01* X18372Y35256D01* X18343Y35227D01* Y35772D01* G37* G36* Y35154D02*X18345Y35153D01* X18408Y35124D01* X18475Y35106D01* X18545Y35100D01* X18614Y35106D01* X18665Y35119D01* Y33885D01* X18634Y33893D01* X18565Y33900D01* X18495Y33893D01* X18428Y33875D01* X18365Y33846D01* X18343Y33831D01* Y35154D01* G37* G36* Y33792D02*X18392Y33743D01* X18415Y33759D01* X18462Y33781D01* X18512Y33795D01* X18565Y33800D01* X18617Y33795D01* X18665Y33782D01* Y33217D01* X18617Y33204D01* X18565Y33200D01* X18512Y33204D01* X18462Y33218D01* X18415Y33240D01* X18392Y33256D01* X18343Y33207D01* Y33792D01* G37* G36* Y33168D02*X18365Y33153D01* X18428Y33124D01* X18495Y33106D01* X18565Y33100D01* X18634Y33106D01* X18665Y33114D01* Y31891D01* X18654Y31893D01* X18585Y31900D01* X18515Y31893D01* X18448Y31875D01* X18385Y31846D01* X18343Y31817D01* Y33168D01* G37* G36* Y31812D02*X18412Y31743D01* X18435Y31759D01* X18482Y31781D01* X18532Y31795D01* X18585Y31800D01* X18637Y31795D01* X18665Y31787D01* Y31212D01* X18637Y31204D01* X18585Y31200D01* X18532Y31204D01* X18482Y31218D01* X18435Y31240D01* X18412Y31256D01* X18343Y31187D01* Y31812D01* G37* G36* Y31182D02*X18385Y31153D01* X18423Y31135D01* Y29854D01* X18405Y29846D01* X18360Y29815D01* X18423Y29752D01* Y29247D01* X18360Y29184D01* X18405Y29153D01* X18423Y29145D01* Y27845D01* X18380Y27815D01* X18423Y27772D01* Y27227D01* X18380Y27184D01* X18423Y27154D01* Y25831D01* X18400Y25815D01* X18423Y25792D01* Y25207D01* X18400Y25184D01* X18423Y25168D01* Y23817D01* X18420Y23815D01* X18423Y23812D01* Y23187D01* X18420Y23184D01* X18423Y23182D01* Y21691D01* X18369Y21744D01* X18343Y21706D01* Y23264D01* X18349Y23255D01* X18421Y23327D01* X18405Y23350D01* X18383Y23397D01* X18369Y23447D01* X18365Y23500D01* X18369Y23552D01* X18383Y23602D01* X18405Y23650D01* X18421Y23673D01* X18349Y23744D01* X18343Y23735D01* Y25268D01* X18401Y25327D01* X18385Y25350D01* X18363Y25397D01* X18349Y25447D01* X18345Y25500D01* X18349Y25552D01* X18363Y25602D01* X18385Y25650D01* X18401Y25673D01* X18343Y25731D01* Y27288D01* X18381Y27327D01* X18365Y27350D01* X18343Y27397D01* Y27602D01* X18365Y27650D01* X18381Y27673D01* X18343Y27711D01* Y29308D01* X18361Y29327D01* X18345Y29350D01* X18343Y29354D01* Y29645D01* X18345Y29650D01* X18361Y29673D01* X18343Y29691D01* Y31182D01* G37* G36* X18423Y0D02*X18343D01* Y17385D01* X18349Y17363D01* X18378Y17300D01* X18409Y17255D01* X18423Y17268D01* Y15735D01* X18398Y15700D01* X18369Y15636D01* X18351Y15569D01* X18345Y15500D01* X18351Y15430D01* X18369Y15363D01* X18398Y15300D01* X18423Y15264D01* Y13706D01* X18418Y13700D01* X18389Y13636D01* X18371Y13569D01* X18365Y13500D01* X18371Y13430D01* X18389Y13363D01* X18418Y13300D01* X18423Y13293D01* Y11667D01* X18409Y11636D01* X18391Y11569D01* X18385Y11500D01* X18391Y11430D01* X18409Y11363D01* X18423Y11333D01* Y9614D01* X18411Y9569D01* X18405Y9500D01* X18411Y9430D01* X18423Y9385D01* Y0D01* G37* G36* Y17731D02*X18409Y17744D01* X18378Y17700D01* X18349Y17636D01* X18343Y17614D01* Y19333D01* X18358Y19300D01* X18389Y19255D01* X18423Y19288D01* Y17731D01* G37* G36* Y19397D02*X18423Y19397D01* X18409Y19447D01* X18405Y19500D01* X18409Y19552D01* X18423Y19602D01* X18423Y19602D01* Y19397D01* G37* G36* Y19711D02*X18389Y19744D01* X18358Y19700D01* X18343Y19667D01* Y21293D01* X18369Y21255D01* X18423Y21308D01* Y19711D01* G37* G36* Y21354D02*X18403Y21397D01* X18389Y21447D01* X18385Y21500D01* X18389Y21552D01* X18403Y21602D01* X18423Y21645D01* Y21354D01* G37* G36* Y31135D02*X18448Y31124D01* X18515Y31106D01* X18585Y31100D01* X18654Y31106D01* X18665Y31108D01* Y29894D01* X18605Y29900D01* X18535Y29893D01* X18468Y29875D01* X18423Y29854D01* Y31135D01* G37* G36* Y29752D02*X18432Y29743D01* X18455Y29759D01* X18502Y29781D01* X18552Y29795D01* X18605Y29800D01* X18657Y29795D01* X18665Y29793D01* Y29206D01* X18657Y29204D01* X18605Y29200D01* X18552Y29204D01* X18502Y29218D01* X18455Y29240D01* X18432Y29256D01* X18423Y29247D01* Y29752D01* G37* G36* Y29145D02*X18468Y29124D01* X18535Y29106D01* X18605Y29100D01* X18665Y29105D01* Y27896D01* X18625Y27900D01* X18555Y27893D01* X18488Y27875D01* X18425Y27846D01* X18423Y27845D01* Y29145D01* G37* G36* Y27772D02*X18452Y27743D01* X18475Y27759D01* X18522Y27781D01* X18572Y27795D01* X18625Y27800D01* X18665Y27796D01* Y27203D01* X18625Y27200D01* X18572Y27204D01* X18522Y27218D01* X18475Y27240D01* X18452Y27256D01* X18423Y27227D01* Y27772D01* G37* G36* Y27154D02*X18425Y27153D01* X18488Y27124D01* X18555Y27106D01* X18625Y27100D01* X18665Y27103D01* Y25898D01* X18645Y25900D01* X18575Y25893D01* X18508Y25875D01* X18445Y25846D01* X18423Y25831D01* Y27154D01* G37* G36* Y25792D02*X18472Y25743D01* X18495Y25759D01* X18542Y25781D01* X18592Y25795D01* X18645Y25800D01* X18665Y25798D01* Y25201D01* X18645Y25200D01* X18592Y25204D01* X18542Y25218D01* X18495Y25240D01* X18472Y25256D01* X18423Y25207D01* Y25792D01* G37* G36* Y25168D02*X18445Y25153D01* X18508Y25124D01* X18575Y25106D01* X18645Y25100D01* X18665Y25101D01* Y23900D01* X18595Y23893D01* X18528Y23875D01* X18465Y23846D01* X18423Y23817D01* Y25168D01* G37* G36* Y23812D02*X18492Y23743D01* X18515Y23759D01* X18562Y23781D01* X18612Y23795D01* X18665Y23800D01* Y23200D01* X18612Y23204D01* X18562Y23218D01* X18515Y23240D01* X18492Y23256D01* X18423Y23187D01* Y23812D01* G37* G36* Y23182D02*X18465Y23153D01* X18503Y23135D01* Y21854D01* X18485Y21846D01* X18440Y21815D01* X18503Y21752D01* Y21247D01* X18440Y21184D01* X18485Y21153D01* X18503Y21145D01* Y19845D01* X18460Y19815D01* X18503Y19772D01* Y19227D01* X18460Y19184D01* X18503Y19154D01* Y17831D01* X18480Y17815D01* X18503Y17792D01* Y17207D01* X18480Y17184D01* X18503Y17168D01* Y15817D01* X18500Y15815D01* X18503Y15812D01* Y15187D01* X18500Y15184D01* X18503Y15182D01* Y13691D01* X18449Y13744D01* X18423Y13706D01* Y15264D01* X18429Y15255D01* X18501Y15327D01* X18485Y15350D01* X18463Y15397D01* X18449Y15447D01* X18445Y15500D01* X18449Y15552D01* X18463Y15602D01* X18485Y15650D01* X18501Y15673D01* X18429Y15744D01* X18423Y15735D01* Y17268D01* X18481Y17327D01* X18465Y17350D01* X18443Y17397D01* X18429Y17447D01* X18425Y17500D01* X18429Y17552D01* X18443Y17602D01* X18465Y17650D01* X18481Y17673D01* X18423Y17731D01* Y19288D01* X18461Y19327D01* X18445Y19350D01* X18423Y19397D01* Y19602D01* X18445Y19650D01* X18461Y19673D01* X18423Y19711D01* Y21308D01* X18441Y21327D01* X18425Y21350D01* X18423Y21354D01* Y21645D01* X18425Y21650D01* X18441Y21673D01* X18423Y21691D01* Y23182D01* G37* G36* X18503Y0D02*X18423D01* Y9385D01* X18429Y9363D01* X18458Y9300D01* X18489Y9255D01* X18503Y9268D01* Y7735D01* X18478Y7700D01* X18449Y7636D01* X18431Y7569D01* X18425Y7500D01* X18431Y7430D01* X18449Y7363D01* X18478Y7300D01* X18503Y7264D01* Y5706D01* X18498Y5700D01* X18469Y5636D01* X18451Y5569D01* X18445Y5500D01* X18451Y5430D01* X18469Y5363D01* X18498Y5300D01* X18503Y5293D01* Y3667D01* X18489Y3636D01* X18471Y3569D01* X18465Y3500D01* X18471Y3430D01* X18489Y3363D01* X18503Y3333D01* Y1614D01* X18491Y1569D01* X18485Y1500D01* X18491Y1430D01* X18503Y1385D01* Y0D01* G37* G36* Y9731D02*X18489Y9744D01* X18458Y9700D01* X18429Y9636D01* X18423Y9614D01* Y11333D01* X18438Y11300D01* X18469Y11255D01* X18503Y11288D01* Y9731D01* G37* G36* Y11397D02*X18503Y11397D01* X18489Y11447D01* X18485Y11500D01* X18489Y11552D01* X18503Y11602D01* X18503Y11602D01* Y11397D01* G37* G36* Y11711D02*X18469Y11744D01* X18438Y11700D01* X18423Y11667D01* Y13293D01* X18449Y13255D01* X18503Y13308D01* Y11711D01* G37* G36* Y13354D02*X18483Y13397D01* X18469Y13447D01* X18465Y13500D01* X18469Y13552D01* X18483Y13602D01* X18503Y13645D01* Y13354D01* G37* G36* Y23135D02*X18528Y23124D01* X18595Y23106D01* X18665Y23100D01* Y21898D01* X18615Y21893D01* X18548Y21875D01* X18503Y21854D01* Y23135D01* G37* G36* Y21752D02*X18512Y21743D01* X18535Y21759D01* X18582Y21781D01* X18632Y21795D01* X18665Y21798D01* Y21201D01* X18632Y21204D01* X18582Y21218D01* X18535Y21240D01* X18512Y21256D01* X18503Y21247D01* Y21752D01* G37* G36* Y21145D02*X18548Y21124D01* X18615Y21106D01* X18665Y21101D01* Y19896D01* X18635Y19893D01* X18568Y19875D01* X18505Y19846D01* X18503Y19845D01* Y21145D01* G37* G36* Y19772D02*X18532Y19743D01* X18555Y19759D01* X18602Y19781D01* X18652Y19795D01* X18665Y19796D01* Y19203D01* X18652Y19204D01* X18602Y19218D01* X18555Y19240D01* X18532Y19256D01* X18503Y19227D01* Y19772D01* G37* G36* Y19154D02*X18505Y19153D01* X18568Y19124D01* X18635Y19106D01* X18665Y19103D01* Y17894D01* X18655Y17893D01* X18588Y17875D01* X18525Y17846D01* X18503Y17831D01* Y19154D01* G37* G36* Y17792D02*X18552Y17743D01* X18575Y17759D01* X18622Y17781D01* X18665Y17793D01* Y17206D01* X18622Y17218D01* X18575Y17240D01* X18552Y17256D01* X18503Y17207D01* Y17792D01* G37* G36* Y17168D02*X18525Y17153D01* X18588Y17124D01* X18655Y17106D01* X18665Y17105D01* Y15891D01* X18608Y15875D01* X18545Y15846D01* X18503Y15817D01* Y17168D01* G37* G36* Y15812D02*X18572Y15743D01* X18595Y15759D01* X18642Y15781D01* X18665Y15787D01* Y15212D01* X18642Y15218D01* X18595Y15240D01* X18572Y15256D01* X18503Y15187D01* Y15812D01* G37* G36* Y15182D02*X18545Y15153D01* X18608Y15124D01* X18665Y15108D01* Y13885D01* X18628Y13875D01* X18565Y13846D01* X18520Y13815D01* X18592Y13743D01* X18615Y13759D01* X18662Y13781D01* X18665Y13782D01* Y13217D01* X18662Y13218D01* X18615Y13240D01* X18592Y13256D01* X18520Y13184D01* X18565Y13153D01* X18628Y13124D01* X18665Y13114D01* Y11880D01* X18648Y11875D01* X18585Y11846D01* X18540Y11815D01* X18612Y11743D01* X18635Y11759D01* X18665Y11773D01* Y11226D01* X18635Y11240D01* X18612Y11256D01* X18540Y11184D01* X18585Y11153D01* X18648Y11124D01* X18665Y11119D01* Y9874D01* X18605Y9846D01* X18560Y9815D01* X18632Y9743D01* X18655Y9759D01* X18665Y9764D01* Y9235D01* X18655Y9240D01* X18632Y9256D01* X18560Y9184D01* X18605Y9153D01* X18665Y9125D01* Y7865D01* X18625Y7846D01* X18580Y7815D01* X18652Y7743D01* X18665Y7752D01* Y7247D01* X18652Y7256D01* X18580Y7184D01* X18625Y7153D01* X18665Y7134D01* Y5855D01* X18645Y5846D01* X18600Y5815D01* X18665Y5750D01* Y5249D01* X18600Y5184D01* X18645Y5153D01* X18665Y5144D01* Y3846D01* X18620Y3815D01* X18665Y3770D01* Y3229D01* X18620Y3184D01* X18665Y3153D01* Y1832D01* X18640Y1815D01* X18665Y1790D01* Y1209D01* X18640Y1184D01* X18665Y1167D01* Y0D01* X18503D01* Y1385D01* X18509Y1363D01* X18538Y1300D01* X18569Y1255D01* X18641Y1327D01* X18625Y1350D01* X18603Y1397D01* X18589Y1447D01* X18585Y1500D01* X18589Y1552D01* X18603Y1602D01* X18625Y1650D01* X18641Y1673D01* X18569Y1744D01* X18538Y1700D01* X18509Y1636D01* X18503Y1614D01* Y3333D01* X18518Y3300D01* X18549Y3255D01* X18621Y3327D01* X18605Y3350D01* X18583Y3397D01* X18569Y3447D01* X18565Y3500D01* X18569Y3552D01* X18583Y3602D01* X18605Y3650D01* X18621Y3673D01* X18549Y3744D01* X18518Y3700D01* X18503Y3667D01* Y5293D01* X18529Y5255D01* X18601Y5327D01* X18585Y5350D01* X18563Y5397D01* X18549Y5447D01* X18545Y5500D01* X18549Y5552D01* X18563Y5602D01* X18585Y5650D01* X18601Y5673D01* X18529Y5744D01* X18503Y5706D01* Y7264D01* X18509Y7255D01* X18581Y7327D01* X18565Y7350D01* X18543Y7397D01* X18529Y7447D01* X18525Y7500D01* X18529Y7552D01* X18543Y7602D01* X18565Y7650D01* X18581Y7673D01* X18509Y7744D01* X18503Y7735D01* Y9268D01* X18561Y9327D01* X18545Y9350D01* X18523Y9397D01* X18509Y9447D01* X18505Y9500D01* X18509Y9552D01* X18523Y9602D01* X18545Y9650D01* X18561Y9673D01* X18503Y9731D01* Y11288D01* X18541Y11327D01* X18525Y11350D01* X18503Y11397D01* Y11602D01* X18525Y11650D01* X18541Y11673D01* X18503Y11711D01* Y13308D01* X18521Y13327D01* X18505Y13350D01* X18503Y13354D01* Y13645D01* X18505Y13650D01* X18521Y13673D01* X18503Y13691D01* Y15182D01* G37* G36* X18665Y40000D02*X18826D01* Y39734D01* X18820Y39744D01* X18748Y39673D01* X18764Y39650D01* X18786Y39602D01* X18800Y39552D01* X18805Y39500D01* X18800Y39447D01* X18786Y39397D01* X18764Y39350D01* X18748Y39327D01* X18820Y39255D01* X18826Y39265D01* Y37731D01* X18768Y37673D01* X18784Y37650D01* X18806Y37602D01* X18820Y37552D01* X18825Y37500D01* X18820Y37447D01* X18806Y37397D01* X18784Y37350D01* X18768Y37327D01* X18826Y37268D01* Y35711D01* X18788Y35673D01* X18804Y35650D01* X18826Y35602D01* Y35397D01* X18804Y35350D01* X18788Y35327D01* X18826Y35288D01* Y33691D01* X18808Y33673D01* X18824Y33650D01* X18826Y33645D01* Y33354D01* X18824Y33350D01* X18808Y33327D01* X18826Y33308D01* Y31817D01* X18785Y31846D01* X18721Y31875D01* X18665Y31891D01* Y33114D01* X18701Y33124D01* X18765Y33153D01* X18809Y33184D01* X18738Y33256D01* X18715Y33240D01* X18667Y33218D01* X18665Y33217D01* Y33782D01* X18667Y33781D01* X18715Y33759D01* X18738Y33743D01* X18809Y33815D01* X18765Y33846D01* X18701Y33875D01* X18665Y33885D01* Y35119D01* X18681Y35124D01* X18745Y35153D01* X18789Y35184D01* X18718Y35256D01* X18695Y35240D01* X18665Y35226D01* Y35773D01* X18695Y35759D01* X18718Y35743D01* X18789Y35815D01* X18745Y35846D01* X18681Y35875D01* X18665Y35880D01* Y37125D01* X18725Y37153D01* X18769Y37184D01* X18698Y37256D01* X18675Y37240D01* X18665Y37235D01* Y37764D01* X18675Y37759D01* X18698Y37743D01* X18769Y37815D01* X18725Y37846D01* X18665Y37874D01* Y39134D01* X18705Y39153D01* X18749Y39184D01* X18678Y39256D01* X18665Y39247D01* Y39752D01* X18678Y39743D01* X18749Y39815D01* X18705Y39846D01* X18665Y39865D01* Y40000D01* G37* G36* X18826Y23864D02*X18801Y23875D01* X18734Y23893D01* X18665Y23900D01* Y25101D01* X18714Y25106D01* X18781Y25124D01* X18826Y25145D01* Y23864D01* G37* G36* Y25247D02*X18818Y25256D01* X18795Y25240D01* X18747Y25218D01* X18697Y25204D01* X18665Y25201D01* Y25798D01* X18697Y25795D01* X18747Y25781D01* X18795Y25759D01* X18818Y25743D01* X18826Y25752D01* Y25247D01* G37* G36* Y25854D02*X18781Y25875D01* X18714Y25893D01* X18665Y25898D01* Y27103D01* X18694Y27106D01* X18761Y27124D01* X18825Y27153D01* X18826Y27154D01* Y25854D01* G37* G36* Y27227D02*X18798Y27256D01* X18775Y27240D01* X18727Y27218D01* X18677Y27204D01* X18665Y27203D01* Y27796D01* X18677Y27795D01* X18727Y27781D01* X18775Y27759D01* X18798Y27743D01* X18826Y27772D01* Y27227D01* G37* G36* Y27845D02*X18825Y27846D01* X18761Y27875D01* X18694Y27893D01* X18665Y27896D01* Y29105D01* X18674Y29106D01* X18741Y29124D01* X18805Y29153D01* X18826Y29169D01* Y27845D01* G37* G36* Y29207D02*X18778Y29256D01* X18755Y29240D01* X18707Y29218D01* X18665Y29206D01* Y29793D01* X18707Y29781D01* X18755Y29759D01* X18778Y29743D01* X18826Y29792D01* Y29207D01* G37* G36* Y29831D02*X18805Y29846D01* X18741Y29875D01* X18674Y29893D01* X18665Y29894D01* Y31108D01* X18721Y31124D01* X18785Y31153D01* X18826Y31183D01* Y29831D01* G37* G36* Y31187D02*X18758Y31256D01* X18735Y31240D01* X18687Y31218D01* X18665Y31212D01* Y31787D01* X18687Y31781D01* X18735Y31759D01* X18758Y31743D01* X18826Y31812D01* Y31187D01* G37* G36* Y40000D02*X18906D01* Y37614D01* X18900Y37636D01* X18871Y37700D01* X18840Y37744D01* X18826Y37731D01* Y39265D01* X18851Y39300D01* X18880Y39363D01* X18898Y39430D01* X18905Y39500D01* X18898Y39569D01* X18880Y39636D01* X18851Y39700D01* X18826Y39734D01* Y40000D01* G37* G36* Y37268D02*X18840Y37255D01* X18871Y37300D01* X18900Y37363D01* X18906Y37385D01* Y35666D01* X18891Y35700D01* X18860Y35744D01* X18826Y35711D01* Y37268D01* G37* G36* Y35602D02*X18840Y35552D01* X18845Y35500D01* X18840Y35447D01* X18826Y35397D01* Y35602D01* G37* G36* Y35288D02*X18860Y35255D01* X18891Y35300D01* X18906Y35333D01* Y33706D01* X18880Y33744D01* X18826Y33691D01* Y35288D01* G37* G36* Y33645D02*X18846Y33602D01* X18860Y33552D01* X18865Y33500D01* X18860Y33447D01* X18846Y33397D01* X18826Y33354D01* Y33645D01* G37* G36* Y33308D02*X18880Y33255D01* X18906Y33293D01* Y31734D01* X18900Y31744D01* X18828Y31673D01* X18844Y31650D01* X18866Y31602D01* X18880Y31552D01* X18885Y31500D01* X18880Y31447D01* X18866Y31397D01* X18844Y31350D01* X18828Y31327D01* X18900Y31255D01* X18906Y31265D01* Y29731D01* X18848Y29673D01* X18864Y29650D01* X18886Y29602D01* X18900Y29552D01* X18905Y29500D01* X18900Y29447D01* X18886Y29397D01* X18864Y29350D01* X18848Y29327D01* X18906Y29268D01* Y27711D01* X18868Y27673D01* X18884Y27650D01* X18906Y27602D01* Y27397D01* X18884Y27350D01* X18868Y27327D01* X18906Y27288D01* Y25691D01* X18888Y25673D01* X18904Y25650D01* X18906Y25645D01* Y25354D01* X18904Y25350D01* X18888Y25327D01* X18906Y25308D01* Y23817D01* X18865Y23846D01* X18826Y23864D01* Y25145D01* X18845Y25153D01* X18889Y25184D01* X18826Y25247D01* Y25752D01* X18889Y25815D01* X18845Y25846D01* X18826Y25854D01* Y27154D01* X18869Y27184D01* X18826Y27227D01* Y27772D01* X18869Y27815D01* X18826Y27845D01* Y29169D01* X18849Y29184D01* X18826Y29207D01* Y29792D01* X18849Y29815D01* X18826Y29831D01* Y31183D01* X18829Y31184D01* X18826Y31187D01* Y31812D01* X18829Y31815D01* X18826Y31817D01* Y33308D01* G37* G36* X18906Y15864D02*X18881Y15875D01* X18814Y15893D01* X18745Y15900D01* X18675Y15893D01* X18665Y15891D01* Y17105D01* X18725Y17100D01* X18794Y17106D01* X18861Y17124D01* X18906Y17145D01* Y15864D01* G37* G36* Y17247D02*X18898Y17256D01* X18875Y17240D01* X18827Y17218D01* X18777Y17204D01* X18725Y17200D01* X18672Y17204D01* X18665Y17206D01* Y17793D01* X18672Y17795D01* X18725Y17800D01* X18777Y17795D01* X18827Y17781D01* X18875Y17759D01* X18898Y17743D01* X18906Y17752D01* Y17247D01* G37* G36* Y17854D02*X18861Y17875D01* X18794Y17893D01* X18725Y17900D01* X18665Y17894D01* Y19103D01* X18705Y19100D01* X18774Y19106D01* X18841Y19124D01* X18905Y19153D01* X18906Y19154D01* Y17854D01* G37* G36* Y19227D02*X18878Y19256D01* X18855Y19240D01* X18807Y19218D01* X18757Y19204D01* X18705Y19200D01* X18665Y19203D01* Y19796D01* X18705Y19800D01* X18757Y19795D01* X18807Y19781D01* X18855Y19759D01* X18878Y19743D01* X18906Y19772D01* Y19227D01* G37* G36* Y19845D02*X18905Y19846D01* X18841Y19875D01* X18774Y19893D01* X18705Y19900D01* X18665Y19896D01* Y21101D01* X18685Y21100D01* X18754Y21106D01* X18821Y21124D01* X18885Y21153D01* X18906Y21169D01* Y19845D01* G37* G36* Y21207D02*X18858Y21256D01* X18835Y21240D01* X18787Y21218D01* X18737Y21204D01* X18685Y21200D01* X18665Y21201D01* Y21798D01* X18685Y21800D01* X18737Y21795D01* X18787Y21781D01* X18835Y21759D01* X18858Y21743D01* X18906Y21792D01* Y21207D01* G37* G36* Y21831D02*X18885Y21846D01* X18821Y21875D01* X18754Y21893D01* X18685Y21900D01* X18665Y21898D01* Y23100D01* X18734Y23106D01* X18801Y23124D01* X18865Y23153D01* X18906Y23183D01* Y21831D01* G37* G36* Y23187D02*X18838Y23256D01* X18815Y23240D01* X18767Y23218D01* X18717Y23204D01* X18665Y23200D01* Y23800D01* X18717Y23795D01* X18767Y23781D01* X18815Y23759D01* X18838Y23743D01* X18906Y23812D01* Y23187D01* G37* G36* Y40000D02*X18986D01* Y29614D01* X18980Y29636D01* X18951Y29700D01* X18920Y29744D01* X18906Y29731D01* Y31265D01* X18931Y31300D01* X18960Y31363D01* X18978Y31430D01* X18985Y31500D01* X18978Y31569D01* X18960Y31636D01* X18931Y31700D01* X18906Y31734D01* Y33293D01* X18911Y33300D01* X18940Y33363D01* X18958Y33430D01* X18965Y33500D01* X18958Y33569D01* X18940Y33636D01* X18911Y33700D01* X18906Y33706D01* Y35333D01* X18920Y35363D01* X18938Y35430D01* X18945Y35500D01* X18938Y35569D01* X18920Y35636D01* X18906Y35666D01* Y37385D01* X18918Y37430D01* X18925Y37500D01* X18918Y37569D01* X18906Y37614D01* Y40000D01* G37* G36* Y29268D02*X18920Y29255D01* X18951Y29300D01* X18980Y29363D01* X18986Y29385D01* Y27666D01* X18971Y27700D01* X18940Y27744D01* X18906Y27711D01* Y29268D01* G37* G36* Y27602D02*X18920Y27552D01* X18925Y27500D01* X18920Y27447D01* X18906Y27397D01* Y27602D01* G37* G36* Y27288D02*X18940Y27255D01* X18971Y27300D01* X18986Y27333D01* Y25706D01* X18960Y25744D01* X18906Y25691D01* Y27288D01* G37* G36* Y25645D02*X18926Y25602D01* X18940Y25552D01* X18945Y25500D01* X18940Y25447D01* X18926Y25397D01* X18906Y25354D01* Y25645D01* G37* G36* Y25308D02*X18960Y25255D01* X18986Y25293D01* Y23734D01* X18980Y23744D01* X18908Y23673D01* X18924Y23650D01* X18946Y23602D01* X18960Y23552D01* X18965Y23500D01* X18960Y23447D01* X18946Y23397D01* X18924Y23350D01* X18908Y23327D01* X18980Y23255D01* X18986Y23265D01* Y21731D01* X18928Y21673D01* X18944Y21650D01* X18966Y21602D01* X18980Y21552D01* X18985Y21500D01* X18980Y21447D01* X18966Y21397D01* X18944Y21350D01* X18928Y21327D01* X18986Y21268D01* Y19711D01* X18948Y19673D01* X18964Y19650D01* X18986Y19602D01* Y19397D01* X18964Y19350D01* X18948Y19327D01* X18986Y19288D01* Y17691D01* X18968Y17673D01* X18984Y17650D01* X18986Y17645D01* Y17354D01* X18984Y17350D01* X18968Y17327D01* X18986Y17308D01* Y15817D01* X18945Y15846D01* X18906Y15864D01* Y17145D01* X18925Y17153D01* X18969Y17184D01* X18906Y17247D01* Y17752D01* X18969Y17815D01* X18925Y17846D01* X18906Y17854D01* Y19154D01* X18949Y19184D01* X18906Y19227D01* Y19772D01* X18949Y19815D01* X18906Y19845D01* Y21169D01* X18929Y21184D01* X18906Y21207D01* Y21792D01* X18929Y21815D01* X18906Y21831D01* Y23183D01* X18909Y23184D01* X18906Y23187D01* Y23812D01* X18909Y23815D01* X18906Y23817D01* Y25308D01* G37* G36* X18665Y15787D02*X18692Y15795D01* X18745Y15800D01* X18797Y15795D01* X18847Y15781D01* X18895Y15759D01* X18918Y15743D01* X18986Y15812D01* Y15187D01* X18918Y15256D01* X18895Y15240D01* X18847Y15218D01* X18797Y15204D01* X18745Y15200D01* X18692Y15204D01* X18665Y15212D01* Y15787D01* G37* G36* Y15108D02*X18675Y15106D01* X18745Y15100D01* X18814Y15106D01* X18881Y15124D01* X18945Y15153D01* X18986Y15183D01* Y13831D01* X18965Y13846D01* X18901Y13875D01* X18834Y13893D01* X18765Y13900D01* X18695Y13893D01* X18665Y13885D01* Y15108D01* G37* G36* Y13782D02*X18712Y13795D01* X18765Y13800D01* X18817Y13795D01* X18867Y13781D01* X18915Y13759D01* X18938Y13743D01* X18986Y13792D01* Y13207D01* X18938Y13256D01* X18915Y13240D01* X18867Y13218D01* X18817Y13204D01* X18765Y13200D01* X18712Y13204D01* X18665Y13217D01* Y13782D01* G37* G36* Y13114D02*X18695Y13106D01* X18765Y13100D01* X18834Y13106D01* X18901Y13124D01* X18965Y13153D01* X18986Y13169D01* Y11845D01* X18985Y11846D01* X18921Y11875D01* X18854Y11893D01* X18785Y11900D01* X18715Y11893D01* X18665Y11880D01* Y13114D01* G37* G36* Y11773D02*X18682Y11781D01* X18732Y11795D01* X18785Y11800D01* X18837Y11795D01* X18887Y11781D01* X18935Y11759D01* X18958Y11743D01* X18986Y11772D01* Y11227D01* X18958Y11256D01* X18935Y11240D01* X18887Y11218D01* X18837Y11204D01* X18785Y11200D01* X18732Y11204D01* X18682Y11218D01* X18665Y11226D01* Y11773D01* G37* G36* Y11119D02*X18715Y11106D01* X18785Y11100D01* X18854Y11106D01* X18921Y11124D01* X18985Y11153D01* X18986Y11154D01* Y9854D01* X18941Y9875D01* X18874Y9893D01* X18805Y9900D01* X18735Y9893D01* X18668Y9875D01* X18665Y9874D01* Y11119D01* G37* G36* Y9764D02*X18702Y9781D01* X18752Y9795D01* X18805Y9800D01* X18857Y9795D01* X18907Y9781D01* X18955Y9759D01* X18978Y9743D01* X18986Y9752D01* Y9247D01* X18978Y9256D01* X18955Y9240D01* X18907Y9218D01* X18857Y9204D01* X18805Y9200D01* X18752Y9204D01* X18702Y9218D01* X18665Y9235D01* Y9764D01* G37* G36* Y9125D02*X18668Y9124D01* X18735Y9106D01* X18805Y9100D01* X18874Y9106D01* X18941Y9124D01* X18986Y9145D01* Y7864D01* X18961Y7875D01* X18894Y7893D01* X18825Y7900D01* X18755Y7893D01* X18688Y7875D01* X18665Y7865D01* Y9125D01* G37* G36* Y7752D02*X18675Y7759D01* X18722Y7781D01* X18772Y7795D01* X18825Y7800D01* X18877Y7795D01* X18927Y7781D01* X18975Y7759D01* X18986Y7751D01* Y7248D01* X18975Y7240D01* X18927Y7218D01* X18877Y7204D01* X18825Y7200D01* X18772Y7204D01* X18722Y7218D01* X18675Y7240D01* X18665Y7247D01* Y7752D01* G37* G36* Y7134D02*X18688Y7124D01* X18755Y7106D01* X18825Y7100D01* X18894Y7106D01* X18961Y7124D01* X18986Y7135D01* Y5873D01* X18981Y5875D01* X18914Y5893D01* X18845Y5900D01* X18775Y5893D01* X18708Y5875D01* X18665Y5855D01* Y7134D01* G37* G36* Y5750D02*X18672Y5743D01* X18695Y5759D01* X18742Y5781D01* X18792Y5795D01* X18845Y5800D01* X18897Y5795D01* X18947Y5781D01* X18986Y5763D01* Y5236D01* X18947Y5218D01* X18897Y5204D01* X18845Y5200D01* X18792Y5204D01* X18742Y5218D01* X18695Y5240D01* X18672Y5256D01* X18665Y5249D01* Y5750D01* G37* G36* Y5144D02*X18708Y5124D01* X18775Y5106D01* X18845Y5100D01* X18914Y5106D01* X18981Y5124D01* X18986Y5126D01* Y3879D01* X18934Y3893D01* X18865Y3900D01* X18795Y3893D01* X18728Y3875D01* X18665Y3846D01* Y5144D01* G37* G36* Y3770D02*X18692Y3743D01* X18715Y3759D01* X18762Y3781D01* X18812Y3795D01* X18865Y3800D01* X18917Y3795D01* X18967Y3781D01* X18986Y3772D01* Y3227D01* X18967Y3218D01* X18917Y3204D01* X18865Y3200D01* X18812Y3204D01* X18762Y3218D01* X18715Y3240D01* X18692Y3256D01* X18665Y3229D01* Y3770D01* G37* G36* Y3153D02*X18728Y3124D01* X18795Y3106D01* X18865Y3100D01* X18934Y3106D01* X18986Y3120D01* Y1885D01* X18954Y1893D01* X18885Y1900D01* X18815Y1893D01* X18748Y1875D01* X18685Y1846D01* X18665Y1832D01* Y3153D01* G37* G36* Y1790D02*X18712Y1743D01* X18735Y1759D01* X18782Y1781D01* X18832Y1795D01* X18885Y1800D01* X18937Y1795D01* X18986Y1782D01* Y1217D01* X18937Y1204D01* X18885Y1200D01* X18832Y1204D01* X18782Y1218D01* X18735Y1240D01* X18712Y1256D01* X18665Y1209D01* Y1790D01* G37* G36* Y1167D02*X18685Y1153D01* X18748Y1124D01* X18815Y1106D01* X18885Y1100D01* X18954Y1106D01* X18986Y1114D01* Y0D01* X18665D01* Y1167D01* G37* G36* X18986Y40000D02*X19066D01* Y21614D01* X19060Y21636D01* X19031Y21700D01* X19000Y21744D01* X18986Y21731D01* Y23265D01* X19011Y23300D01* X19040Y23363D01* X19058Y23430D01* X19065Y23500D01* X19058Y23569D01* X19040Y23636D01* X19011Y23700D01* X18986Y23734D01* Y25293D01* X18991Y25300D01* X19020Y25363D01* X19038Y25430D01* X19045Y25500D01* X19038Y25569D01* X19020Y25636D01* X18991Y25700D01* X18986Y25706D01* Y27333D01* X19000Y27363D01* X19018Y27430D01* X19025Y27500D01* X19018Y27569D01* X19000Y27636D01* X18986Y27666D01* Y29385D01* X18998Y29430D01* X19005Y29500D01* X18998Y29569D01* X18986Y29614D01* Y40000D01* G37* G36* X19066Y0D02*X18986D01* Y1114D01* X19021Y1124D01* X19066Y1145D01* Y0D01* G37* G36* Y1247D02*X19058Y1256D01* X19035Y1240D01* X18987Y1218D01* X18986Y1217D01* Y1782D01* X18987Y1781D01* X19035Y1759D01* X19058Y1743D01* X19066Y1752D01* Y1247D01* G37* G36* Y1854D02*X19021Y1875D01* X18986Y1885D01* Y3120D01* X19001Y3124D01* X19065Y3153D01* X19066Y3154D01* Y1854D01* G37* G36* Y3227D02*X19038Y3256D01* X19015Y3240D01* X18986Y3227D01* Y3772D01* X19015Y3759D01* X19038Y3743D01* X19066Y3772D01* Y3227D01* G37* G36* Y3845D02*X19065Y3846D01* X19001Y3875D01* X18986Y3879D01* Y5126D01* X19045Y5153D01* X19066Y5169D01* Y3845D01* G37* G36* Y5207D02*X19018Y5256D01* X18995Y5240D01* X18986Y5236D01* Y5763D01* X18995Y5759D01* X19018Y5743D01* X19066Y5792D01* Y5207D01* G37* G36* Y5831D02*X19045Y5846D01* X18986Y5873D01* Y7135D01* X19025Y7153D01* X19066Y7183D01* Y5831D01* G37* G36* Y7187D02*X18998Y7256D01* X18986Y7248D01* Y7751D01* X18998Y7743D01* X19066Y7812D01* Y7187D01* G37* G36* Y7817D02*X19025Y7846D01* X18986Y7864D01* Y9145D01* X19005Y9153D01* X19049Y9184D01* X18986Y9247D01* Y9752D01* X19049Y9815D01* X19005Y9846D01* X18986Y9854D01* Y11154D01* X19029Y11184D01* X18986Y11227D01* Y11772D01* X19029Y11815D01* X18986Y11845D01* Y13169D01* X19009Y13184D01* X18986Y13207D01* Y13792D01* X19009Y13815D01* X18986Y13831D01* Y15183D01* X18989Y15184D01* X18986Y15187D01* Y15812D01* X18989Y15815D01* X18986Y15817D01* Y17308D01* X19040Y17255D01* X19066Y17293D01* Y15734D01* X19060Y15744D01* X18988Y15673D01* X19004Y15650D01* X19026Y15602D01* X19040Y15552D01* X19045Y15500D01* X19040Y15447D01* X19026Y15397D01* X19004Y15350D01* X18988Y15327D01* X19060Y15255D01* X19066Y15265D01* Y13731D01* X19008Y13673D01* X19024Y13650D01* X19046Y13602D01* X19060Y13552D01* X19065Y13500D01* X19060Y13447D01* X19046Y13397D01* X19024Y13350D01* X19008Y13327D01* X19066Y13268D01* Y11711D01* X19028Y11673D01* X19044Y11650D01* X19066Y11602D01* Y11397D01* X19044Y11350D01* X19028Y11327D01* X19066Y11288D01* Y9691D01* X19048Y9673D01* X19064Y9650D01* X19066Y9645D01* Y9354D01* X19064Y9350D01* X19048Y9327D01* X19066Y9308D01* Y7817D01* G37* G36* Y17706D02*X19040Y17744D01* X18986Y17691D01* Y19288D01* X19020Y19255D01* X19051Y19300D01* X19066Y19333D01* Y17706D01* G37* G36* Y19666D02*X19051Y19700D01* X19020Y19744D01* X18986Y19711D01* Y21268D01* X19000Y21255D01* X19031Y21300D01* X19060Y21363D01* X19066Y21385D01* Y19666D01* G37* G36* Y40000D02*X19146D01* Y13614D01* X19140Y13636D01* X19111Y13700D01* X19080Y13744D01* X19066Y13731D01* Y15265D01* X19091Y15300D01* X19120Y15363D01* X19138Y15430D01* X19145Y15500D01* X19138Y15569D01* X19120Y15636D01* X19091Y15700D01* X19066Y15734D01* Y17293D01* X19071Y17300D01* X19100Y17363D01* X19118Y17430D01* X19125Y17500D01* X19118Y17569D01* X19100Y17636D01* X19071Y17700D01* X19066Y17706D01* Y19333D01* X19080Y19363D01* X19098Y19430D01* X19105Y19500D01* X19098Y19569D01* X19080Y19636D01* X19066Y19666D01* Y21385D01* X19078Y21430D01* X19085Y21500D01* X19078Y21569D01* X19066Y21614D01* Y40000D01* G37* G36* X19146Y0D02*X19066D01* Y1145D01* X19085Y1153D01* X19129Y1184D01* X19066Y1247D01* Y1752D01* X19129Y1815D01* X19085Y1846D01* X19066Y1854D01* Y3154D01* X19109Y3184D01* X19066Y3227D01* Y3772D01* X19109Y3815D01* X19066Y3845D01* Y5169D01* X19089Y5184D01* X19066Y5207D01* Y5792D01* X19089Y5815D01* X19066Y5831D01* Y7183D01* X19069Y7184D01* X19066Y7187D01* Y7812D01* X19069Y7815D01* X19066Y7817D01* Y9308D01* X19120Y9255D01* X19146Y9293D01* Y7734D01* X19140Y7744D01* X19068Y7673D01* X19084Y7650D01* X19106Y7602D01* X19120Y7552D01* X19125Y7500D01* X19120Y7447D01* X19106Y7397D01* X19084Y7350D01* X19068Y7327D01* X19140Y7255D01* X19146Y7265D01* Y5731D01* X19088Y5673D01* X19104Y5650D01* X19126Y5602D01* X19140Y5552D01* X19145Y5500D01* X19140Y5447D01* X19126Y5397D01* X19104Y5350D01* X19088Y5327D01* X19146Y5268D01* Y3711D01* X19108Y3673D01* X19124Y3650D01* X19146Y3602D01* Y3397D01* X19124Y3350D01* X19108Y3327D01* X19146Y3288D01* Y1691D01* X19128Y1673D01* X19144Y1650D01* X19146Y1645D01* Y1354D01* X19144Y1350D01* X19128Y1327D01* X19146Y1308D01* Y0D01* G37* G36* Y9706D02*X19120Y9744D01* X19066Y9691D01* Y11288D01* X19100Y11255D01* X19131Y11300D01* X19146Y11333D01* Y9706D01* G37* G36* Y11666D02*X19131Y11700D01* X19100Y11744D01* X19066Y11711D01* Y13268D01* X19080Y13255D01* X19111Y13300D01* X19140Y13363D01* X19146Y13385D01* Y11666D01* G37* G36* Y40000D02*X20223D01* Y39711D01* X20189Y39744D01* X20158Y39700D01* X20129Y39636D01* X20111Y39569D01* X20105Y39500D01* X20111Y39430D01* X20129Y39363D01* X20158Y39300D01* X20189Y39255D01* X20223Y39288D01* Y37731D01* X20209Y37744D01* X20178Y37700D01* X20149Y37636D01* X20131Y37569D01* X20125Y37500D01* X20131Y37430D01* X20149Y37363D01* X20178Y37300D01* X20209Y37255D01* X20223Y37268D01* Y35735D01* X20198Y35700D01* X20169Y35636D01* X20151Y35569D01* X20145Y35500D01* X20151Y35430D01* X20169Y35363D01* X20198Y35300D01* X20223Y35264D01* Y33706D01* X20218Y33700D01* X20189Y33636D01* X20171Y33569D01* X20165Y33500D01* X20171Y33430D01* X20189Y33363D01* X20218Y33300D01* X20223Y33293D01* Y31667D01* X20209Y31636D01* X20191Y31569D01* X20185Y31500D01* X20191Y31430D01* X20209Y31363D01* X20223Y31333D01* Y29614D01* X20211Y29569D01* X20205Y29500D01* X20211Y29430D01* X20223Y29385D01* Y0D01* X19146D01* Y1308D01* X19200Y1255D01* X19231Y1300D01* X19260Y1363D01* X19278Y1430D01* X19285Y1500D01* X19278Y1569D01* X19260Y1636D01* X19231Y1700D01* X19200Y1744D01* X19146Y1691D01* Y3288D01* X19180Y3255D01* X19211Y3300D01* X19240Y3363D01* X19258Y3430D01* X19265Y3500D01* X19258Y3569D01* X19240Y3636D01* X19211Y3700D01* X19180Y3744D01* X19146Y3711D01* Y5268D01* X19160Y5255D01* X19191Y5300D01* X19220Y5363D01* X19238Y5430D01* X19245Y5500D01* X19238Y5569D01* X19220Y5636D01* X19191Y5700D01* X19160Y5744D01* X19146Y5731D01* Y7265D01* X19171Y7300D01* X19200Y7363D01* X19218Y7430D01* X19225Y7500D01* X19218Y7569D01* X19200Y7636D01* X19171Y7700D01* X19146Y7734D01* Y9293D01* X19151Y9300D01* X19180Y9363D01* X19198Y9430D01* X19205Y9500D01* X19198Y9569D01* X19180Y9636D01* X19151Y9700D01* X19146Y9706D01* Y11333D01* X19160Y11363D01* X19178Y11430D01* X19185Y11500D01* X19178Y11569D01* X19160Y11636D01* X19146Y11666D01* Y13385D01* X19158Y13430D01* X19165Y13500D01* X19158Y13569D01* X19146Y13614D01* Y40000D01* G37* G36* X20223Y39397D02*X20223Y39397D01* X20209Y39447D01* X20205Y39500D01* X20209Y39552D01* X20223Y39602D01* X20223Y39602D01* Y39397D01* G37* G36* Y40000D02*X20303D01* Y39845D01* X20260Y39815D01* X20303Y39772D01* Y39227D01* X20260Y39184D01* X20303Y39154D01* Y37831D01* X20280Y37815D01* X20303Y37792D01* Y37207D01* X20280Y37184D01* X20303Y37168D01* Y35817D01* X20300Y35815D01* X20303Y35812D01* Y35187D01* X20300Y35184D01* X20303Y35182D01* Y33691D01* X20249Y33744D01* X20223Y33706D01* Y35264D01* X20229Y35255D01* X20301Y35327D01* X20285Y35350D01* X20263Y35397D01* X20249Y35447D01* X20245Y35500D01* X20249Y35552D01* X20263Y35602D01* X20285Y35650D01* X20301Y35673D01* X20229Y35744D01* X20223Y35735D01* Y37268D01* X20281Y37327D01* X20265Y37350D01* X20243Y37397D01* X20229Y37447D01* X20225Y37500D01* X20229Y37552D01* X20243Y37602D01* X20265Y37650D01* X20281Y37673D01* X20223Y37731D01* Y39288D01* X20261Y39327D01* X20245Y39350D01* X20223Y39397D01* Y39602D01* X20245Y39650D01* X20261Y39673D01* X20223Y39711D01* Y40000D01* G37* G36* X20303Y0D02*X20223D01* Y29385D01* X20229Y29363D01* X20258Y29300D01* X20289Y29255D01* X20303Y29268D01* Y27735D01* X20278Y27700D01* X20249Y27636D01* X20231Y27569D01* X20225Y27500D01* X20231Y27430D01* X20249Y27363D01* X20278Y27300D01* X20303Y27264D01* Y25706D01* X20298Y25700D01* X20269Y25636D01* X20251Y25569D01* X20245Y25500D01* X20251Y25430D01* X20269Y25363D01* X20298Y25300D01* X20303Y25293D01* Y23667D01* X20289Y23636D01* X20271Y23569D01* X20265Y23500D01* X20271Y23430D01* X20289Y23363D01* X20303Y23333D01* Y21614D01* X20291Y21569D01* X20285Y21500D01* X20291Y21430D01* X20303Y21385D01* Y0D01* G37* G36* Y29731D02*X20289Y29744D01* X20258Y29700D01* X20229Y29636D01* X20223Y29614D01* Y31333D01* X20238Y31300D01* X20269Y31255D01* X20303Y31288D01* Y29731D01* G37* G36* Y31397D02*X20303Y31397D01* X20289Y31447D01* X20285Y31500D01* X20289Y31552D01* X20303Y31602D01* X20303Y31602D01* Y31397D01* G37* G36* Y31711D02*X20269Y31744D01* X20238Y31700D01* X20223Y31667D01* Y33293D01* X20249Y33255D01* X20303Y33308D01* Y31711D01* G37* G36* Y33354D02*X20283Y33397D01* X20269Y33447D01* X20265Y33500D01* X20269Y33552D01* X20283Y33602D01* X20303Y33645D01* Y33354D01* G37* G36* Y40000D02*X20545D01* Y39896D01* X20505Y39900D01* X20435Y39893D01* X20368Y39875D01* X20305Y39846D01* X20303Y39845D01* Y40000D01* G37* G36* Y39772D02*X20332Y39743D01* X20355Y39759D01* X20402Y39781D01* X20452Y39795D01* X20505Y39800D01* X20545Y39796D01* Y39203D01* X20505Y39200D01* X20452Y39204D01* X20402Y39218D01* X20355Y39240D01* X20332Y39256D01* X20303Y39227D01* Y39772D01* G37* G36* Y39154D02*X20305Y39153D01* X20368Y39124D01* X20435Y39106D01* X20505Y39100D01* X20545Y39103D01* Y37898D01* X20525Y37900D01* X20455Y37893D01* X20388Y37875D01* X20325Y37846D01* X20303Y37831D01* Y39154D01* G37* G36* Y37792D02*X20352Y37743D01* X20375Y37759D01* X20422Y37781D01* X20472Y37795D01* X20525Y37800D01* X20545Y37798D01* Y37201D01* X20525Y37200D01* X20472Y37204D01* X20422Y37218D01* X20375Y37240D01* X20352Y37256D01* X20303Y37207D01* Y37792D01* G37* G36* Y37168D02*X20325Y37153D01* X20388Y37124D01* X20455Y37106D01* X20525Y37100D01* X20545Y37101D01* Y35900D01* X20475Y35893D01* X20408Y35875D01* X20345Y35846D01* X20303Y35817D01* Y37168D01* G37* G36* Y35812D02*X20372Y35743D01* X20395Y35759D01* X20442Y35781D01* X20492Y35795D01* X20545Y35800D01* Y35200D01* X20492Y35204D01* X20442Y35218D01* X20395Y35240D01* X20372Y35256D01* X20303Y35187D01* Y35812D01* G37* G36* Y35182D02*X20345Y35153D01* X20383Y35135D01* Y33854D01* X20365Y33846D01* X20320Y33815D01* X20383Y33752D01* Y33247D01* X20320Y33184D01* X20365Y33153D01* X20383Y33145D01* Y31845D01* X20340Y31815D01* X20383Y31772D01* Y31227D01* X20340Y31184D01* X20383Y31154D01* Y29831D01* X20360Y29815D01* X20383Y29792D01* Y29207D01* X20360Y29184D01* X20383Y29168D01* Y27817D01* X20380Y27815D01* X20383Y27812D01* Y27187D01* X20380Y27184D01* X20383Y27182D01* Y25691D01* X20329Y25744D01* X20303Y25706D01* Y27264D01* X20309Y27255D01* X20381Y27327D01* X20365Y27350D01* X20343Y27397D01* X20329Y27447D01* X20325Y27500D01* X20329Y27552D01* X20343Y27602D01* X20365Y27650D01* X20381Y27673D01* X20309Y27744D01* X20303Y27735D01* Y29268D01* X20361Y29327D01* X20345Y29350D01* X20323Y29397D01* X20309Y29447D01* X20305Y29500D01* X20309Y29552D01* X20323Y29602D01* X20345Y29650D01* X20361Y29673D01* X20303Y29731D01* Y31288D01* X20341Y31327D01* X20325Y31350D01* X20303Y31397D01* Y31602D01* X20325Y31650D01* X20341Y31673D01* X20303Y31711D01* Y33308D01* X20321Y33327D01* X20305Y33350D01* X20303Y33354D01* Y33645D01* X20305Y33650D01* X20321Y33673D01* X20303Y33691D01* Y35182D01* G37* G36* X20383Y0D02*X20303D01* Y21385D01* X20309Y21363D01* X20338Y21300D01* X20369Y21255D01* X20383Y21268D01* Y19735D01* X20358Y19700D01* X20329Y19636D01* X20311Y19569D01* X20305Y19500D01* X20311Y19430D01* X20329Y19363D01* X20358Y19300D01* X20383Y19264D01* Y17706D01* X20378Y17700D01* X20349Y17636D01* X20331Y17569D01* X20325Y17500D01* X20331Y17430D01* X20349Y17363D01* X20378Y17300D01* X20383Y17293D01* Y15667D01* X20369Y15636D01* X20351Y15569D01* X20345Y15500D01* X20351Y15430D01* X20369Y15363D01* X20383Y15333D01* Y13614D01* X20371Y13569D01* X20365Y13500D01* X20371Y13430D01* X20383Y13385D01* Y0D01* G37* G36* Y21731D02*X20369Y21744D01* X20338Y21700D01* X20309Y21636D01* X20303Y21614D01* Y23333D01* X20318Y23300D01* X20349Y23255D01* X20383Y23288D01* Y21731D01* G37* G36* Y23397D02*X20383Y23397D01* X20369Y23447D01* X20365Y23500D01* X20369Y23552D01* X20383Y23602D01* X20383Y23602D01* Y23397D01* G37* G36* Y23711D02*X20349Y23744D01* X20318Y23700D01* X20303Y23667D01* Y25293D01* X20329Y25255D01* X20383Y25308D01* Y23711D01* G37* G36* Y25354D02*X20363Y25397D01* X20349Y25447D01* X20345Y25500D01* X20349Y25552D01* X20363Y25602D01* X20383Y25645D01* Y25354D01* G37* G36* Y35135D02*X20408Y35124D01* X20475Y35106D01* X20545Y35100D01* Y33898D01* X20495Y33893D01* X20428Y33875D01* X20383Y33854D01* Y35135D01* G37* G36* Y33752D02*X20392Y33743D01* X20415Y33759D01* X20462Y33781D01* X20512Y33795D01* X20545Y33798D01* Y33201D01* X20512Y33204D01* X20462Y33218D01* X20415Y33240D01* X20392Y33256D01* X20383Y33247D01* Y33752D01* G37* G36* Y33145D02*X20428Y33124D01* X20495Y33106D01* X20545Y33101D01* Y31896D01* X20515Y31893D01* X20448Y31875D01* X20385Y31846D01* X20383Y31845D01* Y33145D01* G37* G36* Y31772D02*X20412Y31743D01* X20435Y31759D01* X20482Y31781D01* X20532Y31795D01* X20545Y31796D01* Y31203D01* X20532Y31204D01* X20482Y31218D01* X20435Y31240D01* X20412Y31256D01* X20383Y31227D01* Y31772D01* G37* G36* Y31154D02*X20385Y31153D01* X20448Y31124D01* X20515Y31106D01* X20545Y31103D01* Y29894D01* X20535Y29893D01* X20468Y29875D01* X20405Y29846D01* X20383Y29831D01* Y31154D01* G37* G36* Y29792D02*X20432Y29743D01* X20455Y29759D01* X20502Y29781D01* X20545Y29793D01* Y29206D01* X20502Y29218D01* X20455Y29240D01* X20432Y29256D01* X20383Y29207D01* Y29792D01* G37* G36* Y29168D02*X20405Y29153D01* X20468Y29124D01* X20535Y29106D01* X20545Y29105D01* Y27891D01* X20488Y27875D01* X20425Y27846D01* X20383Y27817D01* Y29168D01* G37* G36* Y27812D02*X20452Y27743D01* X20475Y27759D01* X20522Y27781D01* X20545Y27787D01* Y27212D01* X20522Y27218D01* X20475Y27240D01* X20452Y27256D01* X20383Y27187D01* Y27812D01* G37* G36* Y27182D02*X20425Y27153D01* X20463Y27135D01* Y25854D01* X20445Y25846D01* X20400Y25815D01* X20463Y25752D01* Y25247D01* X20400Y25184D01* X20445Y25153D01* X20463Y25145D01* Y23845D01* X20420Y23815D01* X20463Y23772D01* Y23227D01* X20420Y23184D01* X20463Y23154D01* Y21831D01* X20440Y21815D01* X20463Y21792D01* Y21207D01* X20440Y21184D01* X20463Y21168D01* Y19817D01* X20460Y19815D01* X20463Y19812D01* Y19187D01* X20460Y19184D01* X20463Y19182D01* Y17691D01* X20409Y17744D01* X20383Y17706D01* Y19264D01* X20389Y19255D01* X20461Y19327D01* X20445Y19350D01* X20423Y19397D01* X20409Y19447D01* X20405Y19500D01* X20409Y19552D01* X20423Y19602D01* X20445Y19650D01* X20461Y19673D01* X20389Y19744D01* X20383Y19735D01* Y21268D01* X20441Y21327D01* X20425Y21350D01* X20403Y21397D01* X20389Y21447D01* X20385Y21500D01* X20389Y21552D01* X20403Y21602D01* X20425Y21650D01* X20441Y21673D01* X20383Y21731D01* Y23288D01* X20421Y23327D01* X20405Y23350D01* X20383Y23397D01* Y23602D01* X20405Y23650D01* X20421Y23673D01* X20383Y23711D01* Y25308D01* X20401Y25327D01* X20385Y25350D01* X20383Y25354D01* Y25645D01* X20385Y25650D01* X20401Y25673D01* X20383Y25691D01* Y27182D01* G37* G36* X20463Y9706D02*X20458Y9700D01* X20429Y9636D01* X20411Y9569D01* X20405Y9500D01* X20411Y9430D01* X20429Y9363D01* X20458Y9300D01* X20463Y9293D01* Y7667D01* X20449Y7636D01* X20431Y7569D01* X20425Y7500D01* X20431Y7430D01* X20449Y7363D01* X20463Y7333D01* Y5614D01* X20451Y5569D01* X20445Y5500D01* X20451Y5430D01* X20463Y5385D01* Y0D01* X20383D01* Y13385D01* X20389Y13363D01* X20418Y13300D01* X20449Y13255D01* X20463Y13268D01* Y11735D01* X20438Y11700D01* X20409Y11636D01* X20391Y11569D01* X20385Y11500D01* X20391Y11430D01* X20409Y11363D01* X20438Y11300D01* X20463Y11264D01* Y9706D01* G37* G36* Y13731D02*X20449Y13744D01* X20418Y13700D01* X20389Y13636D01* X20383Y13614D01* Y15333D01* X20398Y15300D01* X20429Y15255D01* X20463Y15288D01* Y13731D01* G37* G36* Y15397D02*X20463Y15397D01* X20449Y15447D01* X20445Y15500D01* X20449Y15552D01* X20463Y15602D01* X20463Y15602D01* Y15397D01* G37* G36* Y15711D02*X20429Y15744D01* X20398Y15700D01* X20383Y15667D01* Y17293D01* X20409Y17255D01* X20463Y17308D01* Y15711D01* G37* G36* Y17354D02*X20443Y17397D01* X20429Y17447D01* X20425Y17500D01* X20429Y17552D01* X20443Y17602D01* X20463Y17645D01* Y17354D01* G37* G36* Y27135D02*X20488Y27124D01* X20545Y27108D01* Y25885D01* X20508Y25875D01* X20463Y25854D01* Y27135D01* G37* G36* Y25752D02*X20472Y25743D01* X20495Y25759D01* X20542Y25781D01* X20545Y25782D01* Y25217D01* X20542Y25218D01* X20495Y25240D01* X20472Y25256D01* X20463Y25247D01* Y25752D01* G37* G36* Y25145D02*X20508Y25124D01* X20545Y25114D01* Y23880D01* X20528Y23875D01* X20465Y23846D01* X20463Y23845D01* Y25145D01* G37* G36* Y23772D02*X20492Y23743D01* X20515Y23759D01* X20545Y23773D01* Y23226D01* X20515Y23240D01* X20492Y23256D01* X20463Y23227D01* Y23772D01* G37* G36* Y23154D02*X20465Y23153D01* X20528Y23124D01* X20545Y23119D01* Y21874D01* X20485Y21846D01* X20463Y21831D01* Y23154D01* G37* G36* Y21792D02*X20512Y21743D01* X20535Y21759D01* X20545Y21764D01* Y21235D01* X20535Y21240D01* X20512Y21256D01* X20463Y21207D01* Y21792D01* G37* G36* Y21168D02*X20485Y21153D01* X20545Y21125D01* Y19865D01* X20505Y19846D01* X20463Y19817D01* Y21168D01* G37* G36* Y19812D02*X20532Y19743D01* X20545Y19752D01* Y19247D01* X20532Y19256D01* X20463Y19187D01* Y19812D01* G37* G36* Y19182D02*X20505Y19153D01* X20545Y19134D01* Y17855D01* X20525Y17846D01* X20480Y17815D01* X20545Y17750D01* Y17249D01* X20480Y17184D01* X20525Y17153D01* X20545Y17144D01* Y15846D01* X20500Y15815D01* X20545Y15770D01* Y15229D01* X20500Y15184D01* X20545Y15153D01* Y13832D01* X20520Y13815D01* X20545Y13790D01* Y13209D01* X20520Y13184D01* X20545Y13167D01* Y11818D01* X20540Y11815D01* X20545Y11810D01* Y11189D01* X20540Y11184D01* X20545Y11181D01* Y9689D01* X20489Y9744D01* X20463Y9706D01* Y11264D01* X20469Y11255D01* X20541Y11327D01* X20525Y11350D01* X20503Y11397D01* X20489Y11447D01* X20485Y11500D01* X20489Y11552D01* X20503Y11602D01* X20525Y11650D01* X20541Y11673D01* X20469Y11744D01* X20463Y11735D01* Y13268D01* X20521Y13327D01* X20505Y13350D01* X20483Y13397D01* X20469Y13447D01* X20465Y13500D01* X20469Y13552D01* X20483Y13602D01* X20505Y13650D01* X20521Y13673D01* X20463Y13731D01* Y15288D01* X20501Y15327D01* X20485Y15350D01* X20463Y15397D01* Y15602D01* X20485Y15650D01* X20501Y15673D01* X20463Y15711D01* Y17308D01* X20481Y17327D01* X20465Y17350D01* X20463Y17354D01* Y17645D01* X20465Y17650D01* X20481Y17673D01* X20463Y17691D01* Y19182D01* G37* G36* Y9293D02*X20489Y9255D01* X20545Y9310D01* Y7709D01* X20509Y7744D01* X20478Y7700D01* X20463Y7667D01* Y9293D01* G37* G36* Y7333D02*X20478Y7300D01* X20509Y7255D01* X20545Y7290D01* Y5729D01* X20529Y5744D01* X20498Y5700D01* X20469Y5636D01* X20463Y5614D01* Y7333D01* G37* G36* Y5385D02*X20469Y5363D01* X20498Y5300D01* X20529Y5255D01* X20545Y5270D01* Y3737D01* X20518Y3700D01* X20489Y3636D01* X20471Y3569D01* X20465Y3500D01* X20471Y3430D01* X20489Y3363D01* X20518Y3300D01* X20545Y3262D01* Y1709D01* X20538Y1700D01* X20509Y1636D01* X20491Y1569D01* X20485Y1500D01* X20491Y1430D01* X20509Y1363D01* X20538Y1300D01* X20545Y1290D01* Y0D01* X20463D01* Y5385D01* G37* G36* X20545Y9350D02*X20523Y9397D01* X20509Y9447D01* X20505Y9500D01* X20509Y9552D01* X20523Y9602D01* X20545Y9649D01* Y9350D01* G37* G36* Y7393D02*X20543Y7397D01* X20529Y7447D01* X20525Y7500D01* X20529Y7552D01* X20543Y7602D01* X20545Y7606D01* Y7393D01* G37* G36* Y40000D02*X20866D01* Y39666D01* X20851Y39700D01* X20820Y39744D01* X20748Y39673D01* X20764Y39650D01* X20786Y39602D01* X20800Y39552D01* X20805Y39500D01* X20800Y39447D01* X20786Y39397D01* X20764Y39350D01* X20748Y39327D01* X20820Y39255D01* X20851Y39300D01* X20866Y39333D01* Y37706D01* X20840Y37744D01* X20768Y37673D01* X20784Y37650D01* X20806Y37602D01* X20820Y37552D01* X20825Y37500D01* X20820Y37447D01* X20806Y37397D01* X20784Y37350D01* X20768Y37327D01* X20840Y37255D01* X20866Y37293D01* Y35734D01* X20860Y35744D01* X20788Y35673D01* X20804Y35650D01* X20826Y35602D01* X20840Y35552D01* X20845Y35500D01* X20840Y35447D01* X20826Y35397D01* X20804Y35350D01* X20788Y35327D01* X20860Y35255D01* X20866Y35265D01* Y33731D01* X20808Y33673D01* X20824Y33650D01* X20846Y33602D01* X20860Y33552D01* X20865Y33500D01* X20860Y33447D01* X20846Y33397D01* X20824Y33350D01* X20808Y33327D01* X20866Y33268D01* Y31711D01* X20828Y31673D01* X20844Y31650D01* X20866Y31602D01* Y31397D01* X20844Y31350D01* X20828Y31327D01* X20866Y31288D01* Y29691D01* X20848Y29673D01* X20864Y29650D01* X20866Y29645D01* Y29354D01* X20864Y29350D01* X20848Y29327D01* X20866Y29308D01* Y27817D01* X20825Y27846D01* X20761Y27875D01* X20694Y27893D01* X20625Y27900D01* X20555Y27893D01* X20545Y27891D01* Y29105D01* X20605Y29100D01* X20674Y29106D01* X20741Y29124D01* X20805Y29153D01* X20849Y29184D01* X20778Y29256D01* X20755Y29240D01* X20707Y29218D01* X20657Y29204D01* X20605Y29200D01* X20552Y29204D01* X20545Y29206D01* Y29793D01* X20552Y29795D01* X20605Y29800D01* X20657Y29795D01* X20707Y29781D01* X20755Y29759D01* X20778Y29743D01* X20849Y29815D01* X20805Y29846D01* X20741Y29875D01* X20674Y29893D01* X20605Y29900D01* X20545Y29894D01* Y31103D01* X20585Y31100D01* X20654Y31106D01* X20721Y31124D01* X20785Y31153D01* X20829Y31184D01* X20758Y31256D01* X20735Y31240D01* X20687Y31218D01* X20637Y31204D01* X20585Y31200D01* X20545Y31203D01* Y31796D01* X20585Y31800D01* X20637Y31795D01* X20687Y31781D01* X20735Y31759D01* X20758Y31743D01* X20829Y31815D01* X20785Y31846D01* X20721Y31875D01* X20654Y31893D01* X20585Y31900D01* X20545Y31896D01* Y33101D01* X20565Y33100D01* X20634Y33106D01* X20701Y33124D01* X20765Y33153D01* X20809Y33184D01* X20738Y33256D01* X20715Y33240D01* X20667Y33218D01* X20617Y33204D01* X20565Y33200D01* X20545Y33201D01* Y33798D01* X20565Y33800D01* X20617Y33795D01* X20667Y33781D01* X20715Y33759D01* X20738Y33743D01* X20809Y33815D01* X20765Y33846D01* X20701Y33875D01* X20634Y33893D01* X20565Y33900D01* X20545Y33898D01* Y35100D01* X20614Y35106D01* X20681Y35124D01* X20745Y35153D01* X20789Y35184D01* X20718Y35256D01* X20695Y35240D01* X20647Y35218D01* X20597Y35204D01* X20545Y35200D01* Y35800D01* X20597Y35795D01* X20647Y35781D01* X20695Y35759D01* X20718Y35743D01* X20789Y35815D01* X20745Y35846D01* X20681Y35875D01* X20614Y35893D01* X20545Y35900D01* Y37101D01* X20594Y37106D01* X20661Y37124D01* X20725Y37153D01* X20769Y37184D01* X20698Y37256D01* X20675Y37240D01* X20627Y37218D01* X20577Y37204D01* X20545Y37201D01* Y37798D01* X20577Y37795D01* X20627Y37781D01* X20675Y37759D01* X20698Y37743D01* X20769Y37815D01* X20725Y37846D01* X20661Y37875D01* X20594Y37893D01* X20545Y37898D01* Y39103D01* X20574Y39106D01* X20641Y39124D01* X20705Y39153D01* X20749Y39184D01* X20678Y39256D01* X20655Y39240D01* X20607Y39218D01* X20557Y39204D01* X20545Y39203D01* Y39796D01* X20557Y39795D01* X20607Y39781D01* X20655Y39759D01* X20678Y39743D01* X20749Y39815D01* X20705Y39846D01* X20641Y39875D01* X20574Y39893D01* X20545Y39896D01* Y40000D01* G37* G36* Y27787D02*X20572Y27795D01* X20625Y27800D01* X20677Y27795D01* X20727Y27781D01* X20775Y27759D01* X20798Y27743D01* X20866Y27812D01* Y27187D01* X20798Y27256D01* X20775Y27240D01* X20727Y27218D01* X20677Y27204D01* X20625Y27200D01* X20572Y27204D01* X20545Y27212D01* Y27787D01* G37* G36* Y27108D02*X20555Y27106D01* X20625Y27100D01* X20694Y27106D01* X20761Y27124D01* X20825Y27153D01* X20866Y27183D01* Y25831D01* X20845Y25846D01* X20781Y25875D01* X20714Y25893D01* X20645Y25900D01* X20575Y25893D01* X20545Y25885D01* Y27108D01* G37* G36* Y25782D02*X20592Y25795D01* X20645Y25800D01* X20697Y25795D01* X20747Y25781D01* X20795Y25759D01* X20818Y25743D01* X20866Y25792D01* Y25207D01* X20818Y25256D01* X20795Y25240D01* X20747Y25218D01* X20697Y25204D01* X20645Y25200D01* X20592Y25204D01* X20545Y25217D01* Y25782D01* G37* G36* Y25114D02*X20575Y25106D01* X20645Y25100D01* X20714Y25106D01* X20781Y25124D01* X20845Y25153D01* X20866Y25169D01* Y23845D01* X20865Y23846D01* X20801Y23875D01* X20734Y23893D01* X20665Y23900D01* X20595Y23893D01* X20545Y23880D01* Y25114D01* G37* G36* Y23773D02*X20562Y23781D01* X20612Y23795D01* X20665Y23800D01* X20717Y23795D01* X20767Y23781D01* X20815Y23759D01* X20838Y23743D01* X20866Y23772D01* Y23227D01* X20838Y23256D01* X20815Y23240D01* X20767Y23218D01* X20717Y23204D01* X20665Y23200D01* X20612Y23204D01* X20562Y23218D01* X20545Y23226D01* Y23773D01* G37* G36* Y23119D02*X20595Y23106D01* X20665Y23100D01* X20734Y23106D01* X20801Y23124D01* X20865Y23153D01* X20866Y23154D01* Y21854D01* X20821Y21875D01* X20754Y21893D01* X20685Y21900D01* X20615Y21893D01* X20548Y21875D01* X20545Y21874D01* Y23119D01* G37* G36* Y21764D02*X20582Y21781D01* X20632Y21795D01* X20685Y21800D01* X20737Y21795D01* X20787Y21781D01* X20835Y21759D01* X20858Y21743D01* X20866Y21752D01* Y21247D01* X20858Y21256D01* X20835Y21240D01* X20787Y21218D01* X20737Y21204D01* X20685Y21200D01* X20632Y21204D01* X20582Y21218D01* X20545Y21235D01* Y21764D01* G37* G36* Y21125D02*X20548Y21124D01* X20615Y21106D01* X20685Y21100D01* X20754Y21106D01* X20821Y21124D01* X20866Y21145D01* Y19864D01* X20841Y19875D01* X20774Y19893D01* X20705Y19900D01* X20635Y19893D01* X20568Y19875D01* X20545Y19865D01* Y21125D01* G37* G36* Y19752D02*X20555Y19759D01* X20602Y19781D01* X20652Y19795D01* X20705Y19800D01* X20757Y19795D01* X20807Y19781D01* X20855Y19759D01* X20866Y19751D01* Y19248D01* X20855Y19240D01* X20807Y19218D01* X20757Y19204D01* X20705Y19200D01* X20652Y19204D01* X20602Y19218D01* X20555Y19240D01* X20545Y19247D01* Y19752D01* G37* G36* Y19134D02*X20568Y19124D01* X20635Y19106D01* X20705Y19100D01* X20774Y19106D01* X20841Y19124D01* X20866Y19135D01* Y17873D01* X20861Y17875D01* X20794Y17893D01* X20725Y17900D01* X20655Y17893D01* X20588Y17875D01* X20545Y17855D01* Y19134D01* G37* G36* Y17750D02*X20552Y17743D01* X20575Y17759D01* X20622Y17781D01* X20672Y17795D01* X20725Y17800D01* X20777Y17795D01* X20827Y17781D01* X20866Y17763D01* Y17236D01* X20827Y17218D01* X20777Y17204D01* X20725Y17200D01* X20672Y17204D01* X20622Y17218D01* X20575Y17240D01* X20552Y17256D01* X20545Y17249D01* Y17750D01* G37* G36* Y17144D02*X20588Y17124D01* X20655Y17106D01* X20725Y17100D01* X20794Y17106D01* X20861Y17124D01* X20866Y17126D01* Y15879D01* X20814Y15893D01* X20745Y15900D01* X20675Y15893D01* X20608Y15875D01* X20545Y15846D01* Y17144D01* G37* G36* Y15770D02*X20572Y15743D01* X20595Y15759D01* X20642Y15781D01* X20692Y15795D01* X20745Y15800D01* X20797Y15795D01* X20847Y15781D01* X20866Y15772D01* Y15227D01* X20847Y15218D01* X20797Y15204D01* X20745Y15200D01* X20692Y15204D01* X20642Y15218D01* X20595Y15240D01* X20572Y15256D01* X20545Y15229D01* Y15770D01* G37* G36* Y15153D02*X20608Y15124D01* X20675Y15106D01* X20745Y15100D01* X20814Y15106D01* X20866Y15120D01* Y13885D01* X20834Y13893D01* X20765Y13900D01* X20695Y13893D01* X20628Y13875D01* X20565Y13846D01* X20545Y13832D01* Y15153D01* G37* G36* Y13790D02*X20592Y13743D01* X20615Y13759D01* X20662Y13781D01* X20712Y13795D01* X20765Y13800D01* X20817Y13795D01* X20866Y13782D01* Y13217D01* X20817Y13204D01* X20765Y13200D01* X20712Y13204D01* X20662Y13218D01* X20615Y13240D01* X20592Y13256D01* X20545Y13209D01* Y13790D01* G37* G36* Y13167D02*X20565Y13153D01* X20628Y13124D01* X20695Y13106D01* X20765Y13100D01* X20834Y13106D01* X20866Y13114D01* Y11890D01* X20854Y11893D01* X20785Y11900D01* X20715Y11893D01* X20648Y11875D01* X20585Y11846D01* X20545Y11818D01* Y13167D01* G37* G36* Y11810D02*X20612Y11743D01* X20635Y11759D01* X20682Y11781D01* X20732Y11795D01* X20785Y11800D01* X20837Y11795D01* X20866Y11787D01* Y11212D01* X20837Y11204D01* X20785Y11200D01* X20732Y11204D01* X20682Y11218D01* X20635Y11240D01* X20612Y11256D01* X20545Y11189D01* Y11810D01* G37* G36* Y11181D02*X20585Y11153D01* X20648Y11124D01* X20715Y11106D01* X20785Y11100D01* X20854Y11106D01* X20866Y11109D01* Y9894D01* X20805Y9900D01* X20735Y9893D01* X20668Y9875D01* X20605Y9846D01* X20560Y9815D01* X20632Y9743D01* X20655Y9759D01* X20702Y9781D01* X20752Y9795D01* X20805Y9800D01* X20857Y9795D01* X20866Y9792D01* Y9207D01* X20857Y9204D01* X20805Y9200D01* X20752Y9204D01* X20702Y9218D01* X20655Y9240D01* X20632Y9256D01* X20560Y9184D01* X20605Y9153D01* X20668Y9124D01* X20735Y9106D01* X20805Y9100D01* X20866Y9105D01* Y7896D01* X20825Y7900D01* X20755Y7893D01* X20688Y7875D01* X20625Y7846D01* X20580Y7815D01* X20652Y7743D01* X20675Y7759D01* X20722Y7781D01* X20772Y7795D01* X20825Y7800D01* X20866Y7796D01* Y7203D01* X20825Y7200D01* X20772Y7204D01* X20722Y7218D01* X20675Y7240D01* X20652Y7256D01* X20580Y7184D01* X20625Y7153D01* X20688Y7124D01* X20755Y7106D01* X20825Y7100D01* X20866Y7103D01* Y5898D01* X20845Y5900D01* X20775Y5893D01* X20708Y5875D01* X20645Y5846D01* X20600Y5815D01* X20672Y5743D01* X20695Y5759D01* X20742Y5781D01* X20792Y5795D01* X20845Y5800D01* X20866Y5798D01* Y5201D01* X20845Y5200D01* X20792Y5204D01* X20742Y5218D01* X20695Y5240D01* X20672Y5256D01* X20600Y5184D01* X20645Y5153D01* X20708Y5124D01* X20775Y5106D01* X20845Y5100D01* X20866Y5101D01* Y3899D01* X20865Y3900D01* X20795Y3893D01* X20728Y3875D01* X20665Y3846D01* X20620Y3815D01* X20692Y3743D01* X20715Y3759D01* X20762Y3781D01* X20812Y3795D01* X20865Y3800D01* X20866Y3799D01* Y3200D01* X20865Y3200D01* X20812Y3204D01* X20762Y3218D01* X20715Y3240D01* X20692Y3256D01* X20620Y3184D01* X20665Y3153D01* X20728Y3124D01* X20795Y3106D01* X20865Y3100D01* X20866Y3100D01* Y1898D01* X20815Y1893D01* X20748Y1875D01* X20685Y1846D01* X20640Y1815D01* X20712Y1743D01* X20735Y1759D01* X20782Y1781D01* X20832Y1795D01* X20866Y1798D01* Y1201D01* X20832Y1204D01* X20782Y1218D01* X20735Y1240D01* X20712Y1256D01* X20640Y1184D01* X20685Y1153D01* X20748Y1124D01* X20815Y1106D01* X20866Y1101D01* Y0D01* X20545D01* Y1290D01* X20569Y1255D01* X20641Y1327D01* X20625Y1350D01* X20603Y1397D01* X20589Y1447D01* X20585Y1500D01* X20589Y1552D01* X20603Y1602D01* X20625Y1650D01* X20641Y1673D01* X20569Y1744D01* X20545Y1709D01* Y3262D01* X20549Y3255D01* X20621Y3327D01* X20605Y3350D01* X20583Y3397D01* X20569Y3447D01* X20565Y3500D01* X20569Y3552D01* X20583Y3602D01* X20605Y3650D01* X20621Y3673D01* X20549Y3744D01* X20545Y3737D01* Y5270D01* X20601Y5327D01* X20585Y5350D01* X20563Y5397D01* X20549Y5447D01* X20545Y5500D01* X20549Y5552D01* X20563Y5602D01* X20585Y5650D01* X20601Y5673D01* X20545Y5729D01* Y7290D01* X20581Y7327D01* X20565Y7350D01* X20545Y7393D01* Y7606D01* X20565Y7650D01* X20581Y7673D01* X20545Y7709D01* Y9310D01* X20561Y9327D01* X20545Y9350D01* X20545Y9350D01* Y9649D01* X20545Y9650D01* X20561Y9673D01* X20545Y9689D01* Y11181D01* G37* G36* X20866Y40000D02*X20946D01* Y33614D01* X20940Y33636D01* X20911Y33700D01* X20880Y33744D01* X20866Y33731D01* Y35265D01* X20891Y35300D01* X20920Y35363D01* X20938Y35430D01* X20945Y35500D01* X20938Y35569D01* X20920Y35636D01* X20891Y35700D01* X20866Y35734D01* Y37293D01* X20871Y37300D01* X20900Y37363D01* X20918Y37430D01* X20925Y37500D01* X20918Y37569D01* X20900Y37636D01* X20871Y37700D01* X20866Y37706D01* Y39333D01* X20880Y39363D01* X20898Y39430D01* X20905Y39500D01* X20898Y39569D01* X20880Y39636D01* X20866Y39666D01* Y40000D01* G37* G36* X20946Y0D02*X20866D01* Y1101D01* X20885Y1100D01* X20946Y1105D01* Y0D01* G37* G36* Y1207D02*X20937Y1204D01* X20885Y1200D01* X20866Y1201D01* Y1798D01* X20885Y1800D01* X20937Y1795D01* X20946Y1792D01* Y1207D01* G37* G36* Y1894D02*X20885Y1900D01* X20866Y1898D01* Y3100D01* X20934Y3106D01* X20946Y3109D01* Y1894D01* G37* G36* Y3212D02*X20917Y3204D01* X20866Y3200D01* Y3799D01* X20917Y3795D01* X20946Y3787D01* Y3212D01* G37* G36* Y3890D02*X20934Y3893D01* X20866Y3899D01* Y5101D01* X20914Y5106D01* X20946Y5114D01* Y3890D01* G37* G36* Y5217D02*X20897Y5204D01* X20866Y5201D01* Y5798D01* X20897Y5795D01* X20946Y5782D01* Y5217D01* G37* G36* Y5885D02*X20914Y5893D01* X20866Y5898D01* Y7103D01* X20894Y7106D01* X20946Y7120D01* Y5885D01* G37* G36* Y7227D02*X20927Y7218D01* X20877Y7204D01* X20866Y7203D01* Y7796D01* X20877Y7795D01* X20927Y7781D01* X20946Y7772D01* Y7227D01* G37* G36* Y7879D02*X20894Y7893D01* X20866Y7896D01* Y9105D01* X20874Y9106D01* X20941Y9124D01* X20946Y9126D01* Y7879D01* G37* G36* Y9236D02*X20907Y9218D01* X20866Y9207D01* Y9792D01* X20907Y9781D01* X20946Y9763D01* Y9236D01* G37* G36* Y9873D02*X20941Y9875D01* X20874Y9893D01* X20866Y9894D01* Y11109D01* X20921Y11124D01* X20946Y11135D01* Y9873D01* G37* G36* Y11248D02*X20935Y11240D01* X20887Y11218D01* X20866Y11212D01* Y11787D01* X20887Y11781D01* X20935Y11759D01* X20946Y11751D01* Y11248D01* G37* G36* Y11864D02*X20921Y11875D01* X20866Y11890D01* Y13114D01* X20901Y13124D01* X20946Y13145D01* Y11864D01* G37* G36* Y13247D02*X20938Y13256D01* X20915Y13240D01* X20867Y13218D01* X20866Y13217D01* Y13782D01* X20867Y13781D01* X20915Y13759D01* X20938Y13743D01* X20946Y13752D01* Y13247D01* G37* G36* Y13854D02*X20901Y13875D01* X20866Y13885D01* Y15120D01* X20881Y15124D01* X20945Y15153D01* X20946Y15154D01* Y13854D01* G37* G36* Y15227D02*X20918Y15256D01* X20895Y15240D01* X20866Y15227D01* Y15772D01* X20895Y15759D01* X20918Y15743D01* X20946Y15772D01* Y15227D01* G37* G36* Y15845D02*X20945Y15846D01* X20881Y15875D01* X20866Y15879D01* Y17126D01* X20925Y17153D01* X20946Y17169D01* Y15845D01* G37* G36* Y17207D02*X20898Y17256D01* X20875Y17240D01* X20866Y17236D01* Y17763D01* X20875Y17759D01* X20898Y17743D01* X20946Y17792D01* Y17207D01* G37* G36* Y17831D02*X20925Y17846D01* X20866Y17873D01* Y19135D01* X20905Y19153D01* X20946Y19183D01* Y17831D01* G37* G36* Y19187D02*X20878Y19256D01* X20866Y19248D01* Y19751D01* X20878Y19743D01* X20946Y19812D01* Y19187D01* G37* G36* Y19817D02*X20905Y19846D01* X20866Y19864D01* Y21145D01* X20885Y21153D01* X20929Y21184D01* X20866Y21247D01* Y21752D01* X20929Y21815D01* X20885Y21846D01* X20866Y21854D01* Y23154D01* X20909Y23184D01* X20866Y23227D01* Y23772D01* X20909Y23815D01* X20866Y23845D01* Y25169D01* X20889Y25184D01* X20866Y25207D01* Y25792D01* X20889Y25815D01* X20866Y25831D01* Y27183D01* X20869Y27184D01* X20866Y27187D01* Y27812D01* X20869Y27815D01* X20866Y27817D01* Y29308D01* X20920Y29255D01* X20946Y29293D01* Y27734D01* X20940Y27744D01* X20868Y27673D01* X20884Y27650D01* X20906Y27602D01* X20920Y27552D01* X20925Y27500D01* X20920Y27447D01* X20906Y27397D01* X20884Y27350D01* X20868Y27327D01* X20940Y27255D01* X20946Y27265D01* Y25731D01* X20888Y25673D01* X20904Y25650D01* X20926Y25602D01* X20940Y25552D01* X20945Y25500D01* X20940Y25447D01* X20926Y25397D01* X20904Y25350D01* X20888Y25327D01* X20946Y25268D01* Y23711D01* X20908Y23673D01* X20924Y23650D01* X20946Y23602D01* Y23397D01* X20924Y23350D01* X20908Y23327D01* X20946Y23288D01* Y21691D01* X20928Y21673D01* X20944Y21650D01* X20946Y21645D01* Y21354D01* X20944Y21350D01* X20928Y21327D01* X20946Y21308D01* Y19817D01* G37* G36* Y29706D02*X20920Y29744D01* X20866Y29691D01* Y31288D01* X20900Y31255D01* X20931Y31300D01* X20946Y31333D01* Y29706D01* G37* G36* Y31666D02*X20931Y31700D01* X20900Y31744D01* X20866Y31711D01* Y33268D01* X20880Y33255D01* X20911Y33300D01* X20940Y33363D01* X20946Y33385D01* Y31666D01* G37* G36* Y40000D02*X21026D01* Y25614D01* X21020Y25636D01* X20991Y25700D01* X20960Y25744D01* X20946Y25731D01* Y27265D01* X20971Y27300D01* X21000Y27363D01* X21018Y27430D01* X21025Y27500D01* X21018Y27569D01* X21000Y27636D01* X20971Y27700D01* X20946Y27734D01* Y29293D01* X20951Y29300D01* X20980Y29363D01* X20998Y29430D01* X21005Y29500D01* X20998Y29569D01* X20980Y29636D01* X20951Y29700D01* X20946Y29706D01* Y31333D01* X20960Y31363D01* X20978Y31430D01* X20985Y31500D01* X20978Y31569D01* X20960Y31636D01* X20946Y31666D01* Y33385D01* X20958Y33430D01* X20965Y33500D01* X20958Y33569D01* X20946Y33614D01* Y40000D01* G37* G36* X21026Y0D02*X20946D01* Y1105D01* X20954Y1106D01* X21021Y1124D01* X21026Y1126D01* Y0D01* G37* G36* Y1236D02*X20987Y1218D01* X20946Y1207D01* Y1792D01* X20987Y1781D01* X21026Y1763D01* Y1236D01* G37* G36* Y1873D02*X21021Y1875D01* X20954Y1893D01* X20946Y1894D01* Y3109D01* X21001Y3124D01* X21026Y3135D01* Y1873D01* G37* G36* Y3248D02*X21015Y3240D01* X20967Y3218D01* X20946Y3212D01* Y3787D01* X20967Y3781D01* X21015Y3759D01* X21026Y3751D01* Y3248D01* G37* G36* Y3864D02*X21001Y3875D01* X20946Y3890D01* Y5114D01* X20981Y5124D01* X21026Y5145D01* Y3864D01* G37* G36* Y5247D02*X21018Y5256D01* X20995Y5240D01* X20947Y5218D01* X20946Y5217D01* Y5782D01* X20947Y5781D01* X20995Y5759D01* X21018Y5743D01* X21026Y5752D01* Y5247D01* G37* G36* Y5854D02*X20981Y5875D01* X20946Y5885D01* Y7120D01* X20961Y7124D01* X21025Y7153D01* X21026Y7154D01* Y5854D01* G37* G36* Y7227D02*X20998Y7256D01* X20975Y7240D01* X20946Y7227D01* Y7772D01* X20975Y7759D01* X20998Y7743D01* X21026Y7772D01* Y7227D01* G37* G36* Y7845D02*X21025Y7846D01* X20961Y7875D01* X20946Y7879D01* Y9126D01* X21005Y9153D01* X21026Y9169D01* Y7845D01* G37* G36* Y9207D02*X20978Y9256D01* X20955Y9240D01* X20946Y9236D01* Y9763D01* X20955Y9759D01* X20978Y9743D01* X21026Y9792D01* Y9207D01* G37* G36* Y9831D02*X21005Y9846D01* X20946Y9873D01* Y11135D01* X20985Y11153D01* X21026Y11183D01* Y9831D01* G37* G36* Y11187D02*X20958Y11256D01* X20946Y11248D01* Y11751D01* X20958Y11743D01* X21026Y11812D01* Y11187D01* G37* G36* Y11817D02*X20985Y11846D01* X20946Y11864D01* Y13145D01* X20965Y13153D01* X21009Y13184D01* X20946Y13247D01* Y13752D01* X21009Y13815D01* X20965Y13846D01* X20946Y13854D01* Y15154D01* X20989Y15184D01* X20946Y15227D01* Y15772D01* X20989Y15815D01* X20946Y15845D01* Y17169D01* X20969Y17184D01* X20946Y17207D01* Y17792D01* X20969Y17815D01* X20946Y17831D01* Y19183D01* X20949Y19184D01* X20946Y19187D01* Y19812D01* X20949Y19815D01* X20946Y19817D01* Y21308D01* X21000Y21255D01* X21026Y21293D01* Y19734D01* X21020Y19744D01* X20948Y19673D01* X20964Y19650D01* X20986Y19602D01* X21000Y19552D01* X21005Y19500D01* X21000Y19447D01* X20986Y19397D01* X20964Y19350D01* X20948Y19327D01* X21020Y19255D01* X21026Y19265D01* Y17731D01* X20968Y17673D01* X20984Y17650D01* X21006Y17602D01* X21020Y17552D01* X21025Y17500D01* X21020Y17447D01* X21006Y17397D01* X20984Y17350D01* X20968Y17327D01* X21026Y17268D01* Y15711D01* X20988Y15673D01* X21004Y15650D01* X21026Y15602D01* Y15397D01* X21004Y15350D01* X20988Y15327D01* X21026Y15288D01* Y13691D01* X21008Y13673D01* X21024Y13650D01* X21026Y13645D01* Y13354D01* X21024Y13350D01* X21008Y13327D01* X21026Y13308D01* Y11817D01* G37* G36* Y21706D02*X21000Y21744D01* X20946Y21691D01* Y23288D01* X20980Y23255D01* X21011Y23300D01* X21026Y23333D01* Y21706D01* G37* G36* Y23666D02*X21011Y23700D01* X20980Y23744D01* X20946Y23711D01* Y25268D01* X20960Y25255D01* X20991Y25300D01* X21020Y25363D01* X21026Y25385D01* Y23666D01* G37* G36* Y40000D02*X21106D01* Y17614D01* X21100Y17636D01* X21071Y17700D01* X21040Y17744D01* X21026Y17731D01* Y19265D01* X21051Y19300D01* X21080Y19363D01* X21098Y19430D01* X21105Y19500D01* X21098Y19569D01* X21080Y19636D01* X21051Y19700D01* X21026Y19734D01* Y21293D01* X21031Y21300D01* X21060Y21363D01* X21078Y21430D01* X21085Y21500D01* X21078Y21569D01* X21060Y21636D01* X21031Y21700D01* X21026Y21706D01* Y23333D01* X21040Y23363D01* X21058Y23430D01* X21065Y23500D01* X21058Y23569D01* X21040Y23636D01* X21026Y23666D01* Y25385D01* X21038Y25430D01* X21045Y25500D01* X21038Y25569D01* X21026Y25614D01* Y40000D01* G37* G36* X21106Y0D02*X21026D01* Y1126D01* X21085Y1153D01* X21106Y1169D01* Y0D01* G37* G36* Y1207D02*X21058Y1256D01* X21035Y1240D01* X21026Y1236D01* Y1763D01* X21035Y1759D01* X21058Y1743D01* X21106Y1792D01* Y1207D01* G37* G36* Y1831D02*X21085Y1846D01* X21026Y1873D01* Y3135D01* X21065Y3153D01* X21106Y3183D01* Y1831D01* G37* G36* Y3187D02*X21038Y3256D01* X21026Y3248D01* Y3751D01* X21038Y3743D01* X21106Y3812D01* Y3187D01* G37* G36* Y3817D02*X21065Y3846D01* X21026Y3864D01* Y5145D01* X21045Y5153D01* X21089Y5184D01* X21026Y5247D01* Y5752D01* X21089Y5815D01* X21045Y5846D01* X21026Y5854D01* Y7154D01* X21069Y7184D01* X21026Y7227D01* Y7772D01* X21069Y7815D01* X21026Y7845D01* Y9169D01* X21049Y9184D01* X21026Y9207D01* Y9792D01* X21049Y9815D01* X21026Y9831D01* Y11183D01* X21029Y11184D01* X21026Y11187D01* Y11812D01* X21029Y11815D01* X21026Y11817D01* Y13308D01* X21080Y13255D01* X21106Y13293D01* Y11734D01* X21100Y11744D01* X21028Y11673D01* X21044Y11650D01* X21066Y11602D01* X21080Y11552D01* X21085Y11500D01* X21080Y11447D01* X21066Y11397D01* X21044Y11350D01* X21028Y11327D01* X21100Y11255D01* X21106Y11265D01* Y9731D01* X21048Y9673D01* X21064Y9650D01* X21086Y9602D01* X21100Y9552D01* X21105Y9500D01* X21100Y9447D01* X21086Y9397D01* X21064Y9350D01* X21048Y9327D01* X21106Y9268D01* Y7711D01* X21068Y7673D01* X21084Y7650D01* X21106Y7602D01* Y7397D01* X21084Y7350D01* X21068Y7327D01* X21106Y7288D01* Y5691D01* X21088Y5673D01* X21104Y5650D01* X21106Y5645D01* Y5354D01* X21104Y5350D01* X21088Y5327D01* X21106Y5308D01* Y3817D01* G37* G36* Y13706D02*X21080Y13744D01* X21026Y13691D01* Y15288D01* X21060Y15255D01* X21091Y15300D01* X21106Y15333D01* Y13706D01* G37* G36* Y15666D02*X21091Y15700D01* X21060Y15744D01* X21026Y15711D01* Y17268D01* X21040Y17255D01* X21071Y17300D01* X21100Y17363D01* X21106Y17385D01* Y15666D01* G37* G36* Y40000D02*X21186D01* Y9614D01* X21180Y9636D01* X21151Y9700D01* X21120Y9744D01* X21106Y9731D01* Y11265D01* X21131Y11300D01* X21160Y11363D01* X21178Y11430D01* X21185Y11500D01* X21178Y11569D01* X21160Y11636D01* X21131Y11700D01* X21106Y11734D01* Y13293D01* X21111Y13300D01* X21140Y13363D01* X21158Y13430D01* X21165Y13500D01* X21158Y13569D01* X21140Y13636D01* X21111Y13700D01* X21106Y13706D01* Y15333D01* X21120Y15363D01* X21138Y15430D01* X21145Y15500D01* X21138Y15569D01* X21120Y15636D01* X21106Y15666D01* Y17385D01* X21118Y17430D01* X21125Y17500D01* X21118Y17569D01* X21106Y17614D01* Y40000D01* G37* G36* X21186Y0D02*X21106D01* Y1169D01* X21129Y1184D01* X21106Y1207D01* Y1792D01* X21129Y1815D01* X21106Y1831D01* Y3183D01* X21109Y3184D01* X21106Y3187D01* Y3812D01* X21109Y3815D01* X21106Y3817D01* Y5308D01* X21160Y5255D01* X21186Y5293D01* Y3734D01* X21180Y3744D01* X21108Y3673D01* X21124Y3650D01* X21146Y3602D01* X21160Y3552D01* X21165Y3500D01* X21160Y3447D01* X21146Y3397D01* X21124Y3350D01* X21108Y3327D01* X21180Y3255D01* X21186Y3265D01* Y1731D01* X21128Y1673D01* X21144Y1650D01* X21166Y1602D01* X21180Y1552D01* X21185Y1500D01* X21180Y1447D01* X21166Y1397D01* X21144Y1350D01* X21128Y1327D01* X21186Y1268D01* Y0D01* G37* G36* Y5706D02*X21160Y5744D01* X21106Y5691D01* Y7288D01* X21140Y7255D01* X21171Y7300D01* X21186Y7333D01* Y5706D01* G37* G36* Y7666D02*X21171Y7700D01* X21140Y7744D01* X21106Y7711D01* Y9268D01* X21120Y9255D01* X21151Y9300D01* X21180Y9363D01* X21186Y9385D01* Y7666D01* G37* G36* Y40000D02*X22183D01* Y39735D01* X22158Y39700D01* X22129Y39636D01* X22111Y39569D01* X22105Y39500D01* X22111Y39430D01* X22129Y39363D01* X22158Y39300D01* X22183Y39264D01* Y37706D01* X22178Y37700D01* X22149Y37636D01* X22131Y37569D01* X22125Y37500D01* X22131Y37430D01* X22149Y37363D01* X22178Y37300D01* X22183Y37293D01* Y35667D01* X22169Y35636D01* X22151Y35569D01* X22145Y35500D01* X22151Y35430D01* X22169Y35363D01* X22183Y35333D01* Y33614D01* X22171Y33569D01* X22165Y33500D01* X22171Y33430D01* X22183Y33385D01* Y0D01* X21186D01* Y1268D01* X21200Y1255D01* X21231Y1300D01* X21260Y1363D01* X21278Y1430D01* X21285Y1500D01* X21278Y1569D01* X21260Y1636D01* X21231Y1700D01* X21200Y1744D01* X21186Y1731D01* Y3265D01* X21211Y3300D01* X21240Y3363D01* X21258Y3430D01* X21265Y3500D01* X21258Y3569D01* X21240Y3636D01* X21211Y3700D01* X21186Y3734D01* Y5293D01* X21191Y5300D01* X21220Y5363D01* X21238Y5430D01* X21245Y5500D01* X21238Y5569D01* X21220Y5636D01* X21191Y5700D01* X21186Y5706D01* Y7333D01* X21200Y7363D01* X21218Y7430D01* X21225Y7500D01* X21218Y7569D01* X21200Y7636D01* X21186Y7666D01* Y9385D01* X21198Y9430D01* X21205Y9500D01* X21198Y9569D01* X21186Y9614D01* Y40000D01* G37* G36* X22183D02*X22263D01* Y39817D01* X22260Y39815D01* X22263Y39812D01* Y39187D01* X22260Y39184D01* X22263Y39182D01* Y37691D01* X22209Y37744D01* X22183Y37706D01* Y39264D01* X22189Y39255D01* X22261Y39327D01* X22245Y39350D01* X22223Y39397D01* X22209Y39447D01* X22205Y39500D01* X22209Y39552D01* X22223Y39602D01* X22245Y39650D01* X22261Y39673D01* X22189Y39744D01* X22183Y39735D01* Y40000D01* G37* G36* X22263Y0D02*X22183D01* Y33385D01* X22189Y33363D01* X22218Y33300D01* X22249Y33255D01* X22263Y33268D01* Y31735D01* X22238Y31700D01* X22209Y31636D01* X22191Y31569D01* X22185Y31500D01* X22191Y31430D01* X22209Y31363D01* X22238Y31300D01* X22263Y31264D01* Y29706D01* X22258Y29700D01* X22229Y29636D01* X22211Y29569D01* X22205Y29500D01* X22211Y29430D01* X22229Y29363D01* X22258Y29300D01* X22263Y29293D01* Y27667D01* X22249Y27636D01* X22231Y27569D01* X22225Y27500D01* X22231Y27430D01* X22249Y27363D01* X22263Y27333D01* Y25614D01* X22251Y25569D01* X22245Y25500D01* X22251Y25430D01* X22263Y25385D01* Y0D01* G37* G36* Y33731D02*X22249Y33744D01* X22218Y33700D01* X22189Y33636D01* X22183Y33614D01* Y35333D01* X22198Y35300D01* X22229Y35255D01* X22263Y35288D01* Y33731D01* G37* G36* Y35397D02*X22263Y35397D01* X22249Y35447D01* X22245Y35500D01* X22249Y35552D01* X22263Y35602D01* X22263Y35602D01* Y35397D01* G37* G36* Y35711D02*X22229Y35744D01* X22198Y35700D01* X22183Y35667D01* Y37293D01* X22209Y37255D01* X22263Y37308D01* Y35711D01* G37* G36* Y37354D02*X22243Y37397D01* X22229Y37447D01* X22225Y37500D01* X22229Y37552D01* X22243Y37602D01* X22263Y37645D01* Y37354D01* G37* G36* Y40000D02*X22505D01* Y39900D01* X22435Y39893D01* X22368Y39875D01* X22305Y39846D01* X22263Y39817D01* Y40000D01* G37* G36* Y39812D02*X22332Y39743D01* X22355Y39759D01* X22402Y39781D01* X22452Y39795D01* X22505Y39800D01* Y39200D01* X22452Y39204D01* X22402Y39218D01* X22355Y39240D01* X22332Y39256D01* X22263Y39187D01* Y39812D01* G37* G36* Y39182D02*X22305Y39153D01* X22343Y39135D01* Y37854D01* X22325Y37846D01* X22280Y37815D01* X22343Y37752D01* Y37247D01* X22280Y37184D01* X22325Y37153D01* X22343Y37145D01* Y35845D01* X22300Y35815D01* X22343Y35772D01* Y35227D01* X22300Y35184D01* X22343Y35154D01* Y33831D01* X22320Y33815D01* X22343Y33792D01* Y33207D01* X22320Y33184D01* X22343Y33168D01* Y31817D01* X22340Y31815D01* X22343Y31812D01* Y31187D01* X22340Y31184D01* X22343Y31182D01* Y29691D01* X22289Y29744D01* X22263Y29706D01* Y31264D01* X22269Y31255D01* X22341Y31327D01* X22325Y31350D01* X22303Y31397D01* X22289Y31447D01* X22285Y31500D01* X22289Y31552D01* X22303Y31602D01* X22325Y31650D01* X22341Y31673D01* X22269Y31744D01* X22263Y31735D01* Y33268D01* X22321Y33327D01* X22305Y33350D01* X22283Y33397D01* X22269Y33447D01* X22265Y33500D01* X22269Y33552D01* X22283Y33602D01* X22305Y33650D01* X22321Y33673D01* X22263Y33731D01* Y35288D01* X22301Y35327D01* X22285Y35350D01* X22263Y35397D01* Y35602D01* X22285Y35650D01* X22301Y35673D01* X22263Y35711D01* Y37308D01* X22281Y37327D01* X22265Y37350D01* X22263Y37354D01* Y37645D01* X22265Y37650D01* X22281Y37673D01* X22263Y37691D01* Y39182D01* G37* G36* X22343Y0D02*X22263D01* Y25385D01* X22269Y25363D01* X22298Y25300D01* X22329Y25255D01* X22343Y25268D01* Y23735D01* X22318Y23700D01* X22289Y23636D01* X22271Y23569D01* X22265Y23500D01* X22271Y23430D01* X22289Y23363D01* X22318Y23300D01* X22343Y23264D01* Y21706D01* X22338Y21700D01* X22309Y21636D01* X22291Y21569D01* X22285Y21500D01* X22291Y21430D01* X22309Y21363D01* X22338Y21300D01* X22343Y21293D01* Y19667D01* X22329Y19636D01* X22311Y19569D01* X22305Y19500D01* X22311Y19430D01* X22329Y19363D01* X22343Y19333D01* Y17614D01* X22331Y17569D01* X22325Y17500D01* X22331Y17430D01* X22343Y17385D01* Y0D01* G37* G36* Y25731D02*X22329Y25744D01* X22298Y25700D01* X22269Y25636D01* X22263Y25614D01* Y27333D01* X22278Y27300D01* X22309Y27255D01* X22343Y27288D01* Y25731D01* G37* G36* Y27397D02*X22343Y27397D01* X22329Y27447D01* X22325Y27500D01* X22329Y27552D01* X22343Y27602D01* X22343Y27602D01* Y27397D01* G37* G36* Y27711D02*X22309Y27744D01* X22278Y27700D01* X22263Y27667D01* Y29293D01* X22289Y29255D01* X22343Y29308D01* Y27711D01* G37* G36* Y29354D02*X22323Y29397D01* X22309Y29447D01* X22305Y29500D01* X22309Y29552D01* X22323Y29602D01* X22343Y29645D01* Y29354D01* G37* G36* Y39135D02*X22368Y39124D01* X22435Y39106D01* X22505Y39100D01* Y37898D01* X22455Y37893D01* X22388Y37875D01* X22343Y37854D01* Y39135D01* G37* G36* Y37752D02*X22352Y37743D01* X22375Y37759D01* X22422Y37781D01* X22472Y37795D01* X22505Y37798D01* Y37201D01* X22472Y37204D01* X22422Y37218D01* X22375Y37240D01* X22352Y37256D01* X22343Y37247D01* Y37752D01* G37* G36* Y37145D02*X22388Y37124D01* X22455Y37106D01* X22505Y37101D01* Y35896D01* X22475Y35893D01* X22408Y35875D01* X22345Y35846D01* X22343Y35845D01* Y37145D01* G37* G36* Y35772D02*X22372Y35743D01* X22395Y35759D01* X22442Y35781D01* X22492Y35795D01* X22505Y35796D01* Y35203D01* X22492Y35204D01* X22442Y35218D01* X22395Y35240D01* X22372Y35256D01* X22343Y35227D01* Y35772D01* G37* G36* Y35154D02*X22345Y35153D01* X22408Y35124D01* X22475Y35106D01* X22505Y35103D01* Y33894D01* X22495Y33893D01* X22428Y33875D01* X22365Y33846D01* X22343Y33831D01* Y35154D01* G37* G36* Y33792D02*X22392Y33743D01* X22415Y33759D01* X22462Y33781D01* X22505Y33793D01* Y33206D01* X22462Y33218D01* X22415Y33240D01* X22392Y33256D01* X22343Y33207D01* Y33792D01* G37* G36* Y33168D02*X22365Y33153D01* X22428Y33124D01* X22495Y33106D01* X22505Y33105D01* Y31891D01* X22448Y31875D01* X22385Y31846D01* X22343Y31817D01* Y33168D01* G37* G36* Y31812D02*X22412Y31743D01* X22435Y31759D01* X22482Y31781D01* X22505Y31787D01* Y31212D01* X22482Y31218D01* X22435Y31240D01* X22412Y31256D01* X22343Y31187D01* Y31812D01* G37* G36* Y31182D02*X22385Y31153D01* X22423Y31135D01* Y29854D01* X22405Y29846D01* X22360Y29815D01* X22423Y29752D01* Y29247D01* X22360Y29184D01* X22405Y29153D01* X22423Y29145D01* Y27845D01* X22380Y27815D01* X22423Y27772D01* Y27227D01* X22380Y27184D01* X22423Y27154D01* Y25831D01* X22400Y25815D01* X22423Y25792D01* Y25207D01* X22400Y25184D01* X22423Y25168D01* Y23817D01* X22420Y23815D01* X22423Y23812D01* Y23187D01* X22420Y23184D01* X22423Y23182D01* Y21691D01* X22369Y21744D01* X22343Y21706D01* Y23264D01* X22349Y23255D01* X22421Y23327D01* X22405Y23350D01* X22383Y23397D01* X22369Y23447D01* X22365Y23500D01* X22369Y23552D01* X22383Y23602D01* X22405Y23650D01* X22421Y23673D01* X22349Y23744D01* X22343Y23735D01* Y25268D01* X22401Y25327D01* X22385Y25350D01* X22363Y25397D01* X22349Y25447D01* X22345Y25500D01* X22349Y25552D01* X22363Y25602D01* X22385Y25650D01* X22401Y25673D01* X22343Y25731D01* Y27288D01* X22381Y27327D01* X22365Y27350D01* X22343Y27397D01* Y27602D01* X22365Y27650D01* X22381Y27673D01* X22343Y27711D01* Y29308D01* X22361Y29327D01* X22345Y29350D01* X22343Y29354D01* Y29645D01* X22345Y29650D01* X22361Y29673D01* X22343Y29691D01* Y31182D01* G37* G36* X22423Y13706D02*X22418Y13700D01* X22389Y13636D01* X22371Y13569D01* X22365Y13500D01* X22371Y13430D01* X22389Y13363D01* X22418Y13300D01* X22423Y13293D01* Y11667D01* X22409Y11636D01* X22391Y11569D01* X22385Y11500D01* X22391Y11430D01* X22409Y11363D01* X22423Y11333D01* Y9614D01* X22411Y9569D01* X22405Y9500D01* X22411Y9430D01* X22423Y9385D01* Y0D01* X22343D01* Y17385D01* X22349Y17363D01* X22378Y17300D01* X22409Y17255D01* X22423Y17268D01* Y15735D01* X22398Y15700D01* X22369Y15636D01* X22351Y15569D01* X22345Y15500D01* X22351Y15430D01* X22369Y15363D01* X22398Y15300D01* X22423Y15264D01* Y13706D01* G37* G36* Y17731D02*X22409Y17744D01* X22378Y17700D01* X22349Y17636D01* X22343Y17614D01* Y19333D01* X22358Y19300D01* X22389Y19255D01* X22423Y19288D01* Y17731D01* G37* G36* Y19397D02*X22423Y19397D01* X22409Y19447D01* X22405Y19500D01* X22409Y19552D01* X22423Y19602D01* X22423Y19602D01* Y19397D01* G37* G36* Y19711D02*X22389Y19744D01* X22358Y19700D01* X22343Y19667D01* Y21293D01* X22369Y21255D01* X22423Y21308D01* Y19711D01* G37* G36* Y21354D02*X22403Y21397D01* X22389Y21447D01* X22385Y21500D01* X22389Y21552D01* X22403Y21602D01* X22423Y21645D01* Y21354D01* G37* G36* Y31135D02*X22448Y31124D01* X22505Y31108D01* Y29885D01* X22468Y29875D01* X22423Y29854D01* Y31135D01* G37* G36* Y29752D02*X22432Y29743D01* X22455Y29759D01* X22502Y29781D01* X22505Y29782D01* Y29217D01* X22502Y29218D01* X22455Y29240D01* X22432Y29256D01* X22423Y29247D01* Y29752D01* G37* G36* Y29145D02*X22468Y29124D01* X22505Y29114D01* Y27880D01* X22488Y27875D01* X22425Y27846D01* X22423Y27845D01* Y29145D01* G37* G36* Y27772D02*X22452Y27743D01* X22475Y27759D01* X22505Y27773D01* Y27226D01* X22475Y27240D01* X22452Y27256D01* X22423Y27227D01* Y27772D01* G37* G36* Y27154D02*X22425Y27153D01* X22488Y27124D01* X22505Y27119D01* Y25874D01* X22445Y25846D01* X22423Y25831D01* Y27154D01* G37* G36* Y25792D02*X22472Y25743D01* X22495Y25759D01* X22505Y25764D01* Y25235D01* X22495Y25240D01* X22472Y25256D01* X22423Y25207D01* Y25792D01* G37* G36* Y25168D02*X22445Y25153D01* X22505Y25125D01* Y23865D01* X22465Y23846D01* X22423Y23817D01* Y25168D01* G37* G36* Y23812D02*X22492Y23743D01* X22505Y23752D01* Y23247D01* X22492Y23256D01* X22423Y23187D01* Y23812D01* G37* G36* Y23182D02*X22465Y23153D01* X22505Y23134D01* Y21855D01* X22485Y21846D01* X22440Y21815D01* X22505Y21750D01* Y21249D01* X22440Y21184D01* X22485Y21153D01* X22505Y21144D01* Y19846D01* X22460Y19815D01* X22505Y19770D01* Y19229D01* X22460Y19184D01* X22505Y19153D01* Y17832D01* X22480Y17815D01* X22505Y17790D01* Y17209D01* X22480Y17184D01* X22505Y17167D01* Y15818D01* X22500Y15815D01* X22505Y15810D01* Y15189D01* X22500Y15184D01* X22505Y15181D01* Y13689D01* X22449Y13744D01* X22423Y13706D01* Y15264D01* X22429Y15255D01* X22501Y15327D01* X22485Y15350D01* X22463Y15397D01* X22449Y15447D01* X22445Y15500D01* X22449Y15552D01* X22463Y15602D01* X22485Y15650D01* X22501Y15673D01* X22429Y15744D01* X22423Y15735D01* Y17268D01* X22481Y17327D01* X22465Y17350D01* X22443Y17397D01* X22429Y17447D01* X22425Y17500D01* X22429Y17552D01* X22443Y17602D01* X22465Y17650D01* X22481Y17673D01* X22423Y17731D01* Y19288D01* X22461Y19327D01* X22445Y19350D01* X22423Y19397D01* Y19602D01* X22445Y19650D01* X22461Y19673D01* X22423Y19711D01* Y21308D01* X22441Y21327D01* X22425Y21350D01* X22423Y21354D01* Y21645D01* X22425Y21650D01* X22441Y21673D01* X22423Y21691D01* Y23182D01* G37* G36* Y13293D02*X22449Y13255D01* X22505Y13310D01* Y11709D01* X22469Y11744D01* X22438Y11700D01* X22423Y11667D01* Y13293D01* G37* G36* Y11333D02*X22438Y11300D01* X22469Y11255D01* X22505Y11290D01* Y9729D01* X22489Y9744D01* X22458Y9700D01* X22429Y9636D01* X22423Y9614D01* Y11333D01* G37* G36* Y9385D02*X22429Y9363D01* X22458Y9300D01* X22489Y9255D01* X22505Y9270D01* Y7737D01* X22478Y7700D01* X22449Y7636D01* X22431Y7569D01* X22425Y7500D01* X22431Y7430D01* X22449Y7363D01* X22478Y7300D01* X22505Y7262D01* Y5709D01* X22498Y5700D01* X22469Y5636D01* X22451Y5569D01* X22445Y5500D01* X22451Y5430D01* X22469Y5363D01* X22498Y5300D01* X22505Y5290D01* Y3670D01* X22489Y3636D01* X22471Y3569D01* X22465Y3500D01* X22471Y3430D01* X22489Y3363D01* X22505Y3329D01* Y1621D01* X22491Y1569D01* X22485Y1500D01* X22491Y1430D01* X22505Y1378D01* Y0D01* X22423D01* Y9385D01* G37* G36* X22505Y13350D02*X22483Y13397D01* X22469Y13447D01* X22465Y13500D01* X22469Y13552D01* X22483Y13602D01* X22505Y13649D01* Y13350D01* G37* G36* Y11393D02*X22503Y11397D01* X22489Y11447D01* X22485Y11500D01* X22489Y11552D01* X22503Y11602D01* X22505Y11606D01* Y11393D01* G37* G36* Y40000D02*X22826D01* Y39734D01* X22820Y39744D01* X22748Y39673D01* X22764Y39650D01* X22786Y39602D01* X22800Y39552D01* X22805Y39500D01* X22800Y39447D01* X22786Y39397D01* X22764Y39350D01* X22748Y39327D01* X22820Y39255D01* X22826Y39265D01* Y37731D01* X22768Y37673D01* X22784Y37650D01* X22806Y37602D01* X22820Y37552D01* X22825Y37500D01* X22820Y37447D01* X22806Y37397D01* X22784Y37350D01* X22768Y37327D01* X22826Y37268D01* Y35711D01* X22788Y35673D01* X22804Y35650D01* X22826Y35602D01* Y35397D01* X22804Y35350D01* X22788Y35327D01* X22826Y35288D01* Y33691D01* X22808Y33673D01* X22824Y33650D01* X22826Y33645D01* Y33354D01* X22824Y33350D01* X22808Y33327D01* X22826Y33308D01* Y31817D01* X22785Y31846D01* X22721Y31875D01* X22654Y31893D01* X22585Y31900D01* X22515Y31893D01* X22505Y31891D01* Y33105D01* X22565Y33100D01* X22634Y33106D01* X22701Y33124D01* X22765Y33153D01* X22809Y33184D01* X22738Y33256D01* X22715Y33240D01* X22667Y33218D01* X22617Y33204D01* X22565Y33200D01* X22512Y33204D01* X22505Y33206D01* Y33793D01* X22512Y33795D01* X22565Y33800D01* X22617Y33795D01* X22667Y33781D01* X22715Y33759D01* X22738Y33743D01* X22809Y33815D01* X22765Y33846D01* X22701Y33875D01* X22634Y33893D01* X22565Y33900D01* X22505Y33894D01* Y35103D01* X22545Y35100D01* X22614Y35106D01* X22681Y35124D01* X22745Y35153D01* X22789Y35184D01* X22718Y35256D01* X22695Y35240D01* X22647Y35218D01* X22597Y35204D01* X22545Y35200D01* X22505Y35203D01* Y35796D01* X22545Y35800D01* X22597Y35795D01* X22647Y35781D01* X22695Y35759D01* X22718Y35743D01* X22789Y35815D01* X22745Y35846D01* X22681Y35875D01* X22614Y35893D01* X22545Y35900D01* X22505Y35896D01* Y37101D01* X22525Y37100D01* X22594Y37106D01* X22661Y37124D01* X22725Y37153D01* X22769Y37184D01* X22698Y37256D01* X22675Y37240D01* X22627Y37218D01* X22577Y37204D01* X22525Y37200D01* X22505Y37201D01* Y37798D01* X22525Y37800D01* X22577Y37795D01* X22627Y37781D01* X22675Y37759D01* X22698Y37743D01* X22769Y37815D01* X22725Y37846D01* X22661Y37875D01* X22594Y37893D01* X22525Y37900D01* X22505Y37898D01* Y39100D01* X22574Y39106D01* X22641Y39124D01* X22705Y39153D01* X22749Y39184D01* X22678Y39256D01* X22655Y39240D01* X22607Y39218D01* X22557Y39204D01* X22505Y39200D01* Y39800D01* X22557Y39795D01* X22607Y39781D01* X22655Y39759D01* X22678Y39743D01* X22749Y39815D01* X22705Y39846D01* X22641Y39875D01* X22574Y39893D01* X22505Y39900D01* Y40000D01* G37* G36* Y31787D02*X22532Y31795D01* X22585Y31800D01* X22637Y31795D01* X22687Y31781D01* X22735Y31759D01* X22758Y31743D01* X22826Y31812D01* Y31187D01* X22758Y31256D01* X22735Y31240D01* X22687Y31218D01* X22637Y31204D01* X22585Y31200D01* X22532Y31204D01* X22505Y31212D01* Y31787D01* G37* G36* Y31108D02*X22515Y31106D01* X22585Y31100D01* X22654Y31106D01* X22721Y31124D01* X22785Y31153D01* X22826Y31183D01* Y29831D01* X22805Y29846D01* X22741Y29875D01* X22674Y29893D01* X22605Y29900D01* X22535Y29893D01* X22505Y29885D01* Y31108D01* G37* G36* Y29782D02*X22552Y29795D01* X22605Y29800D01* X22657Y29795D01* X22707Y29781D01* X22755Y29759D01* X22778Y29743D01* X22826Y29792D01* Y29207D01* X22778Y29256D01* X22755Y29240D01* X22707Y29218D01* X22657Y29204D01* X22605Y29200D01* X22552Y29204D01* X22505Y29217D01* Y29782D01* G37* G36* Y29114D02*X22535Y29106D01* X22605Y29100D01* X22674Y29106D01* X22741Y29124D01* X22805Y29153D01* X22826Y29169D01* Y27845D01* X22825Y27846D01* X22761Y27875D01* X22694Y27893D01* X22625Y27900D01* X22555Y27893D01* X22505Y27880D01* Y29114D01* G37* G36* Y27773D02*X22522Y27781D01* X22572Y27795D01* X22625Y27800D01* X22677Y27795D01* X22727Y27781D01* X22775Y27759D01* X22798Y27743D01* X22826Y27772D01* Y27227D01* X22798Y27256D01* X22775Y27240D01* X22727Y27218D01* X22677Y27204D01* X22625Y27200D01* X22572Y27204D01* X22522Y27218D01* X22505Y27226D01* Y27773D01* G37* G36* Y27119D02*X22555Y27106D01* X22625Y27100D01* X22694Y27106D01* X22761Y27124D01* X22825Y27153D01* X22826Y27154D01* Y25854D01* X22781Y25875D01* X22714Y25893D01* X22645Y25900D01* X22575Y25893D01* X22508Y25875D01* X22505Y25874D01* Y27119D01* G37* G36* Y25764D02*X22542Y25781D01* X22592Y25795D01* X22645Y25800D01* X22697Y25795D01* X22747Y25781D01* X22795Y25759D01* X22818Y25743D01* X22826Y25752D01* Y25247D01* X22818Y25256D01* X22795Y25240D01* X22747Y25218D01* X22697Y25204D01* X22645Y25200D01* X22592Y25204D01* X22542Y25218D01* X22505Y25235D01* Y25764D01* G37* G36* Y25125D02*X22508Y25124D01* X22575Y25106D01* X22645Y25100D01* X22714Y25106D01* X22781Y25124D01* X22826Y25145D01* Y23864D01* X22801Y23875D01* X22734Y23893D01* X22665Y23900D01* X22595Y23893D01* X22528Y23875D01* X22505Y23865D01* Y25125D01* G37* G36* Y23752D02*X22515Y23759D01* X22562Y23781D01* X22612Y23795D01* X22665Y23800D01* X22717Y23795D01* X22767Y23781D01* X22815Y23759D01* X22826Y23751D01* Y23248D01* X22815Y23240D01* X22767Y23218D01* X22717Y23204D01* X22665Y23200D01* X22612Y23204D01* X22562Y23218D01* X22515Y23240D01* X22505Y23247D01* Y23752D01* G37* G36* Y23134D02*X22528Y23124D01* X22595Y23106D01* X22665Y23100D01* X22734Y23106D01* X22801Y23124D01* X22826Y23135D01* Y21873D01* X22821Y21875D01* X22754Y21893D01* X22685Y21900D01* X22615Y21893D01* X22548Y21875D01* X22505Y21855D01* Y23134D01* G37* G36* Y21750D02*X22512Y21743D01* X22535Y21759D01* X22582Y21781D01* X22632Y21795D01* X22685Y21800D01* X22737Y21795D01* X22787Y21781D01* X22826Y21763D01* Y21236D01* X22787Y21218D01* X22737Y21204D01* X22685Y21200D01* X22632Y21204D01* X22582Y21218D01* X22535Y21240D01* X22512Y21256D01* X22505Y21249D01* Y21750D01* G37* G36* Y21144D02*X22548Y21124D01* X22615Y21106D01* X22685Y21100D01* X22754Y21106D01* X22821Y21124D01* X22826Y21126D01* Y19879D01* X22774Y19893D01* X22705Y19900D01* X22635Y19893D01* X22568Y19875D01* X22505Y19846D01* Y21144D01* G37* G36* Y19770D02*X22532Y19743D01* X22555Y19759D01* X22602Y19781D01* X22652Y19795D01* X22705Y19800D01* X22757Y19795D01* X22807Y19781D01* X22826Y19772D01* Y19227D01* X22807Y19218D01* X22757Y19204D01* X22705Y19200D01* X22652Y19204D01* X22602Y19218D01* X22555Y19240D01* X22532Y19256D01* X22505Y19229D01* Y19770D01* G37* G36* Y19153D02*X22568Y19124D01* X22635Y19106D01* X22705Y19100D01* X22774Y19106D01* X22826Y19120D01* Y17885D01* X22794Y17893D01* X22725Y17900D01* X22655Y17893D01* X22588Y17875D01* X22525Y17846D01* X22505Y17832D01* Y19153D01* G37* G36* Y17790D02*X22552Y17743D01* X22575Y17759D01* X22622Y17781D01* X22672Y17795D01* X22725Y17800D01* X22777Y17795D01* X22826Y17782D01* Y17217D01* X22777Y17204D01* X22725Y17200D01* X22672Y17204D01* X22622Y17218D01* X22575Y17240D01* X22552Y17256D01* X22505Y17209D01* Y17790D01* G37* G36* Y17167D02*X22525Y17153D01* X22588Y17124D01* X22655Y17106D01* X22725Y17100D01* X22794Y17106D01* X22826Y17114D01* Y15890D01* X22814Y15893D01* X22745Y15900D01* X22675Y15893D01* X22608Y15875D01* X22545Y15846D01* X22505Y15818D01* Y17167D01* G37* G36* Y15810D02*X22572Y15743D01* X22595Y15759D01* X22642Y15781D01* X22692Y15795D01* X22745Y15800D01* X22797Y15795D01* X22826Y15787D01* Y15212D01* X22797Y15204D01* X22745Y15200D01* X22692Y15204D01* X22642Y15218D01* X22595Y15240D01* X22572Y15256D01* X22505Y15189D01* Y15810D01* G37* G36* Y15181D02*X22545Y15153D01* X22608Y15124D01* X22675Y15106D01* X22745Y15100D01* X22814Y15106D01* X22826Y15109D01* Y13894D01* X22765Y13900D01* X22695Y13893D01* X22628Y13875D01* X22565Y13846D01* X22520Y13815D01* X22592Y13743D01* X22615Y13759D01* X22662Y13781D01* X22712Y13795D01* X22765Y13800D01* X22817Y13795D01* X22826Y13792D01* Y13207D01* X22817Y13204D01* X22765Y13200D01* X22712Y13204D01* X22662Y13218D01* X22615Y13240D01* X22592Y13256D01* X22520Y13184D01* X22565Y13153D01* X22628Y13124D01* X22695Y13106D01* X22765Y13100D01* X22826Y13105D01* Y11896D01* X22785Y11900D01* X22715Y11893D01* X22648Y11875D01* X22585Y11846D01* X22540Y11815D01* X22612Y11743D01* X22635Y11759D01* X22682Y11781D01* X22732Y11795D01* X22785Y11800D01* X22826Y11796D01* Y11203D01* X22785Y11200D01* X22732Y11204D01* X22682Y11218D01* X22635Y11240D01* X22612Y11256D01* X22540Y11184D01* X22585Y11153D01* X22648Y11124D01* X22715Y11106D01* X22785Y11100D01* X22826Y11103D01* Y9898D01* X22805Y9900D01* X22735Y9893D01* X22668Y9875D01* X22605Y9846D01* X22560Y9815D01* X22632Y9743D01* X22655Y9759D01* X22702Y9781D01* X22752Y9795D01* X22805Y9800D01* X22826Y9798D01* Y9201D01* X22805Y9200D01* X22752Y9204D01* X22702Y9218D01* X22655Y9240D01* X22632Y9256D01* X22560Y9184D01* X22605Y9153D01* X22668Y9124D01* X22735Y9106D01* X22805Y9100D01* X22826Y9101D01* Y7899D01* X22825Y7900D01* X22755Y7893D01* X22688Y7875D01* X22625Y7846D01* X22580Y7815D01* X22652Y7743D01* X22675Y7759D01* X22722Y7781D01* X22772Y7795D01* X22825Y7800D01* X22826Y7799D01* Y7200D01* X22825Y7200D01* X22772Y7204D01* X22722Y7218D01* X22675Y7240D01* X22652Y7256D01* X22580Y7184D01* X22625Y7153D01* X22688Y7124D01* X22755Y7106D01* X22825Y7100D01* X22826Y7100D01* Y5898D01* X22775Y5893D01* X22708Y5875D01* X22645Y5846D01* X22600Y5815D01* X22672Y5743D01* X22695Y5759D01* X22742Y5781D01* X22792Y5795D01* X22826Y5798D01* Y5201D01* X22792Y5204D01* X22742Y5218D01* X22695Y5240D01* X22672Y5256D01* X22600Y5184D01* X22645Y5153D01* X22708Y5124D01* X22775Y5106D01* X22826Y5101D01* Y3896D01* X22795Y3893D01* X22728Y3875D01* X22665Y3846D01* X22620Y3815D01* X22692Y3743D01* X22715Y3759D01* X22762Y3781D01* X22812Y3795D01* X22826Y3796D01* Y3203D01* X22812Y3204D01* X22762Y3218D01* X22715Y3240D01* X22692Y3256D01* X22620Y3184D01* X22665Y3153D01* X22728Y3124D01* X22795Y3106D01* X22826Y3103D01* Y1894D01* X22815Y1893D01* X22748Y1875D01* X22685Y1846D01* X22640Y1815D01* X22712Y1743D01* X22735Y1759D01* X22782Y1781D01* X22826Y1793D01* Y1206D01* X22782Y1218D01* X22735Y1240D01* X22712Y1256D01* X22640Y1184D01* X22685Y1153D01* X22748Y1124D01* X22815Y1106D01* X22826Y1105D01* Y0D01* X22505D01* Y1378D01* X22509Y1363D01* X22538Y1300D01* X22569Y1255D01* X22641Y1327D01* X22625Y1350D01* X22603Y1397D01* X22589Y1447D01* X22585Y1500D01* X22589Y1552D01* X22603Y1602D01* X22625Y1650D01* X22641Y1673D01* X22569Y1744D01* X22538Y1700D01* X22509Y1636D01* X22505Y1621D01* Y3329D01* X22518Y3300D01* X22549Y3255D01* X22621Y3327D01* X22605Y3350D01* X22583Y3397D01* X22569Y3447D01* X22565Y3500D01* X22569Y3552D01* X22583Y3602D01* X22605Y3650D01* X22621Y3673D01* X22549Y3744D01* X22518Y3700D01* X22505Y3670D01* Y5290D01* X22529Y5255D01* X22601Y5327D01* X22585Y5350D01* X22563Y5397D01* X22549Y5447D01* X22545Y5500D01* X22549Y5552D01* X22563Y5602D01* X22585Y5650D01* X22601Y5673D01* X22529Y5744D01* X22505Y5709D01* Y7262D01* X22509Y7255D01* X22581Y7327D01* X22565Y7350D01* X22543Y7397D01* X22529Y7447D01* X22525Y7500D01* X22529Y7552D01* X22543Y7602D01* X22565Y7650D01* X22581Y7673D01* X22509Y7744D01* X22505Y7737D01* Y9270D01* X22561Y9327D01* X22545Y9350D01* X22523Y9397D01* X22509Y9447D01* X22505Y9500D01* X22509Y9552D01* X22523Y9602D01* X22545Y9650D01* X22561Y9673D01* X22505Y9729D01* Y11290D01* X22541Y11327D01* X22525Y11350D01* X22505Y11393D01* Y11606D01* X22525Y11650D01* X22541Y11673D01* X22505Y11709D01* Y13310D01* X22521Y13327D01* X22505Y13350D01* X22505Y13350D01* Y13649D01* X22505Y13650D01* X22521Y13673D01* X22505Y13689D01* Y15181D01* G37* G36* X22826Y40000D02*X22906D01* Y37614D01* X22900Y37636D01* X22871Y37700D01* X22840Y37744D01* X22826Y37731D01* Y39265D01* X22851Y39300D01* X22880Y39363D01* X22898Y39430D01* X22905Y39500D01* X22898Y39569D01* X22880Y39636D01* X22851Y39700D01* X22826Y39734D01* Y40000D01* G37* G36* X22906Y0D02*X22826D01* Y1105D01* X22885Y1100D01* X22906Y1101D01* Y0D01* G37* G36* Y1201D02*X22885Y1200D01* X22832Y1204D01* X22826Y1206D01* Y1793D01* X22832Y1795D01* X22885Y1800D01* X22906Y1798D01* Y1201D01* G37* G36* Y1898D02*X22885Y1900D01* X22826Y1894D01* Y3103D01* X22865Y3100D01* X22906Y3103D01* Y1898D01* G37* G36* Y3203D02*X22865Y3200D01* X22826Y3203D01* Y3796D01* X22865Y3800D01* X22906Y3796D01* Y3203D01* G37* G36* Y3896D02*X22865Y3900D01* X22826Y3896D01* Y5101D01* X22845Y5100D01* X22906Y5105D01* Y3896D01* G37* G36* Y5207D02*X22897Y5204D01* X22845Y5200D01* X22826Y5201D01* Y5798D01* X22845Y5800D01* X22897Y5795D01* X22906Y5792D01* Y5207D01* G37* G36* Y5894D02*X22845Y5900D01* X22826Y5898D01* Y7100D01* X22894Y7106D01* X22906Y7109D01* Y5894D01* G37* G36* Y7212D02*X22877Y7204D01* X22826Y7200D01* Y7799D01* X22877Y7795D01* X22906Y7787D01* Y7212D01* G37* G36* Y7890D02*X22894Y7893D01* X22826Y7899D01* Y9101D01* X22874Y9106D01* X22906Y9114D01* Y7890D01* G37* G36* Y9217D02*X22857Y9204D01* X22826Y9201D01* Y9798D01* X22857Y9795D01* X22906Y9782D01* Y9217D01* G37* G36* Y9885D02*X22874Y9893D01* X22826Y9898D01* Y11103D01* X22854Y11106D01* X22906Y11120D01* Y9885D01* G37* G36* Y11227D02*X22887Y11218D01* X22837Y11204D01* X22826Y11203D01* Y11796D01* X22837Y11795D01* X22887Y11781D01* X22906Y11772D01* Y11227D01* G37* G36* Y11879D02*X22854Y11893D01* X22826Y11896D01* Y13105D01* X22834Y13106D01* X22901Y13124D01* X22906Y13126D01* Y11879D01* G37* G36* Y13236D02*X22867Y13218D01* X22826Y13207D01* Y13792D01* X22867Y13781D01* X22906Y13763D01* Y13236D01* G37* G36* Y13873D02*X22901Y13875D01* X22834Y13893D01* X22826Y13894D01* Y15109D01* X22881Y15124D01* X22906Y15135D01* Y13873D01* G37* G36* Y15248D02*X22895Y15240D01* X22847Y15218D01* X22826Y15212D01* Y15787D01* X22847Y15781D01* X22895Y15759D01* X22906Y15751D01* Y15248D01* G37* G36* Y15864D02*X22881Y15875D01* X22826Y15890D01* Y17114D01* X22861Y17124D01* X22906Y17145D01* Y15864D01* G37* G36* Y17247D02*X22898Y17256D01* X22875Y17240D01* X22827Y17218D01* X22826Y17217D01* Y17782D01* X22827Y17781D01* X22875Y17759D01* X22898Y17743D01* X22906Y17752D01* Y17247D01* G37* G36* Y17854D02*X22861Y17875D01* X22826Y17885D01* Y19120D01* X22841Y19124D01* X22905Y19153D01* X22906Y19154D01* Y17854D01* G37* G36* Y19227D02*X22878Y19256D01* X22855Y19240D01* X22826Y19227D01* Y19772D01* X22855Y19759D01* X22878Y19743D01* X22906Y19772D01* Y19227D01* G37* G36* Y19845D02*X22905Y19846D01* X22841Y19875D01* X22826Y19879D01* Y21126D01* X22885Y21153D01* X22906Y21169D01* Y19845D01* G37* G36* Y21207D02*X22858Y21256D01* X22835Y21240D01* X22826Y21236D01* Y21763D01* X22835Y21759D01* X22858Y21743D01* X22906Y21792D01* Y21207D01* G37* G36* Y21831D02*X22885Y21846D01* X22826Y21873D01* Y23135D01* X22865Y23153D01* X22906Y23183D01* Y21831D01* G37* G36* Y23187D02*X22838Y23256D01* X22826Y23248D01* Y23751D01* X22838Y23743D01* X22906Y23812D01* Y23187D01* G37* G36* Y23817D02*X22865Y23846D01* X22826Y23864D01* Y25145D01* X22845Y25153D01* X22889Y25184D01* X22826Y25247D01* Y25752D01* X22889Y25815D01* X22845Y25846D01* X22826Y25854D01* Y27154D01* X22869Y27184D01* X22826Y27227D01* Y27772D01* X22869Y27815D01* X22826Y27845D01* Y29169D01* X22849Y29184D01* X22826Y29207D01* Y29792D01* X22849Y29815D01* X22826Y29831D01* Y31183D01* X22829Y31184D01* X22826Y31187D01* Y31812D01* X22829Y31815D01* X22826Y31817D01* Y33308D01* X22880Y33255D01* X22906Y33293D01* Y31734D01* X22900Y31744D01* X22828Y31673D01* X22844Y31650D01* X22866Y31602D01* X22880Y31552D01* X22885Y31500D01* X22880Y31447D01* X22866Y31397D01* X22844Y31350D01* X22828Y31327D01* X22900Y31255D01* X22906Y31265D01* Y29731D01* X22848Y29673D01* X22864Y29650D01* X22886Y29602D01* X22900Y29552D01* X22905Y29500D01* X22900Y29447D01* X22886Y29397D01* X22864Y29350D01* X22848Y29327D01* X22906Y29268D01* Y27711D01* X22868Y27673D01* X22884Y27650D01* X22906Y27602D01* Y27397D01* X22884Y27350D01* X22868Y27327D01* X22906Y27288D01* Y25691D01* X22888Y25673D01* X22904Y25650D01* X22906Y25645D01* Y25354D01* X22904Y25350D01* X22888Y25327D01* X22906Y25308D01* Y23817D01* G37* G36* Y33706D02*X22880Y33744D01* X22826Y33691D01* Y35288D01* X22860Y35255D01* X22891Y35300D01* X22906Y35333D01* Y33706D01* G37* G36* Y35666D02*X22891Y35700D01* X22860Y35744D01* X22826Y35711D01* Y37268D01* X22840Y37255D01* X22871Y37300D01* X22900Y37363D01* X22906Y37385D01* Y35666D01* G37* G36* Y40000D02*X22986D01* Y29614D01* X22980Y29636D01* X22951Y29700D01* X22920Y29744D01* X22906Y29731D01* Y31265D01* X22931Y31300D01* X22960Y31363D01* X22978Y31430D01* X22985Y31500D01* X22978Y31569D01* X22960Y31636D01* X22931Y31700D01* X22906Y31734D01* Y33293D01* X22911Y33300D01* X22940Y33363D01* X22958Y33430D01* X22965Y33500D01* X22958Y33569D01* X22940Y33636D01* X22911Y33700D01* X22906Y33706D01* Y35333D01* X22920Y35363D01* X22938Y35430D01* X22945Y35500D01* X22938Y35569D01* X22920Y35636D01* X22906Y35666D01* Y37385D01* X22918Y37430D01* X22925Y37500D01* X22918Y37569D01* X22906Y37614D01* Y40000D01* G37* G36* X22986Y0D02*X22906D01* Y1101D01* X22954Y1106D01* X22986Y1114D01* Y0D01* G37* G36* Y1217D02*X22937Y1204D01* X22906Y1201D01* Y1798D01* X22937Y1795D01* X22986Y1782D01* Y1217D01* G37* G36* Y1885D02*X22954Y1893D01* X22906Y1898D01* Y3103D01* X22934Y3106D01* X22986Y3120D01* Y1885D01* G37* G36* Y3227D02*X22967Y3218D01* X22917Y3204D01* X22906Y3203D01* Y3796D01* X22917Y3795D01* X22967Y3781D01* X22986Y3772D01* Y3227D01* G37* G36* Y3879D02*X22934Y3893D01* X22906Y3896D01* Y5105D01* X22914Y5106D01* X22981Y5124D01* X22986Y5126D01* Y3879D01* G37* G36* Y5236D02*X22947Y5218D01* X22906Y5207D01* Y5792D01* X22947Y5781D01* X22986Y5763D01* Y5236D01* G37* G36* Y5873D02*X22981Y5875D01* X22914Y5893D01* X22906Y5894D01* Y7109D01* X22961Y7124D01* X22986Y7135D01* Y5873D01* G37* G36* Y7248D02*X22975Y7240D01* X22927Y7218D01* X22906Y7212D01* Y7787D01* X22927Y7781D01* X22975Y7759D01* X22986Y7751D01* Y7248D01* G37* G36* Y7864D02*X22961Y7875D01* X22906Y7890D01* Y9114D01* X22941Y9124D01* X22986Y9145D01* Y7864D01* G37* G36* Y9247D02*X22978Y9256D01* X22955Y9240D01* X22907Y9218D01* X22906Y9217D01* Y9782D01* X22907Y9781D01* X22955Y9759D01* X22978Y9743D01* X22986Y9752D01* Y9247D01* G37* G36* Y9854D02*X22941Y9875D01* X22906Y9885D01* Y11120D01* X22921Y11124D01* X22985Y11153D01* X22986Y11154D01* Y9854D01* G37* G36* Y11227D02*X22958Y11256D01* X22935Y11240D01* X22906Y11227D01* Y11772D01* X22935Y11759D01* X22958Y11743D01* X22986Y11772D01* Y11227D01* G37* G36* Y11845D02*X22985Y11846D01* X22921Y11875D01* X22906Y11879D01* Y13126D01* X22965Y13153D01* X22986Y13169D01* Y11845D01* G37* G36* Y13207D02*X22938Y13256D01* X22915Y13240D01* X22906Y13236D01* Y13763D01* X22915Y13759D01* X22938Y13743D01* X22986Y13792D01* Y13207D01* G37* G36* Y13831D02*X22965Y13846D01* X22906Y13873D01* Y15135D01* X22945Y15153D01* X22986Y15183D01* Y13831D01* G37* G36* Y15187D02*X22918Y15256D01* X22906Y15248D01* Y15751D01* X22918Y15743D01* X22986Y15812D01* Y15187D01* G37* G36* Y15817D02*X22945Y15846D01* X22906Y15864D01* Y17145D01* X22925Y17153D01* X22969Y17184D01* X22906Y17247D01* Y17752D01* X22969Y17815D01* X22925Y17846D01* X22906Y17854D01* Y19154D01* X22949Y19184D01* X22906Y19227D01* Y19772D01* X22949Y19815D01* X22906Y19845D01* Y21169D01* X22929Y21184D01* X22906Y21207D01* Y21792D01* X22929Y21815D01* X22906Y21831D01* Y23183D01* X22909Y23184D01* X22906Y23187D01* Y23812D01* X22909Y23815D01* X22906Y23817D01* Y25308D01* X22960Y25255D01* X22986Y25293D01* Y23734D01* X22980Y23744D01* X22908Y23673D01* X22924Y23650D01* X22946Y23602D01* X22960Y23552D01* X22965Y23500D01* X22960Y23447D01* X22946Y23397D01* X22924Y23350D01* X22908Y23327D01* X22980Y23255D01* X22986Y23265D01* Y21731D01* X22928Y21673D01* X22944Y21650D01* X22966Y21602D01* X22980Y21552D01* X22985Y21500D01* X22980Y21447D01* X22966Y21397D01* X22944Y21350D01* X22928Y21327D01* X22986Y21268D01* Y19711D01* X22948Y19673D01* X22964Y19650D01* X22986Y19602D01* Y19397D01* X22964Y19350D01* X22948Y19327D01* X22986Y19288D01* Y17691D01* X22968Y17673D01* X22984Y17650D01* X22986Y17645D01* Y17354D01* X22984Y17350D01* X22968Y17327D01* X22986Y17308D01* Y15817D01* G37* G36* Y25706D02*X22960Y25744D01* X22906Y25691D01* Y27288D01* X22940Y27255D01* X22971Y27300D01* X22986Y27333D01* Y25706D01* G37* G36* Y27666D02*X22971Y27700D01* X22940Y27744D01* X22906Y27711D01* Y29268D01* X22920Y29255D01* X22951Y29300D01* X22980Y29363D01* X22986Y29385D01* Y27666D01* G37* G36* Y40000D02*X23066D01* Y21614D01* X23060Y21636D01* X23031Y21700D01* X23000Y21744D01* X22986Y21731D01* Y23265D01* X23011Y23300D01* X23040Y23363D01* X23058Y23430D01* X23065Y23500D01* X23058Y23569D01* X23040Y23636D01* X23011Y23700D01* X22986Y23734D01* Y25293D01* X22991Y25300D01* X23020Y25363D01* X23038Y25430D01* X23045Y25500D01* X23038Y25569D01* X23020Y25636D01* X22991Y25700D01* X22986Y25706D01* Y27333D01* X23000Y27363D01* X23018Y27430D01* X23025Y27500D01* X23018Y27569D01* X23000Y27636D01* X22986Y27666D01* Y29385D01* X22998Y29430D01* X23005Y29500D01* X22998Y29569D01* X22986Y29614D01* Y40000D01* G37* G36* X23066Y0D02*X22986D01* Y1114D01* X23021Y1124D01* X23066Y1145D01* Y0D01* G37* G36* Y1247D02*X23058Y1256D01* X23035Y1240D01* X22987Y1218D01* X22986Y1217D01* Y1782D01* X22987Y1781D01* X23035Y1759D01* X23058Y1743D01* X23066Y1752D01* Y1247D01* G37* G36* Y1854D02*X23021Y1875D01* X22986Y1885D01* Y3120D01* X23001Y3124D01* X23065Y3153D01* X23066Y3154D01* Y1854D01* G37* G36* Y3227D02*X23038Y3256D01* X23015Y3240D01* X22986Y3227D01* Y3772D01* X23015Y3759D01* X23038Y3743D01* X23066Y3772D01* Y3227D01* G37* G36* Y3845D02*X23065Y3846D01* X23001Y3875D01* X22986Y3879D01* Y5126D01* X23045Y5153D01* X23066Y5169D01* Y3845D01* G37* G36* Y5207D02*X23018Y5256D01* X22995Y5240D01* X22986Y5236D01* Y5763D01* X22995Y5759D01* X23018Y5743D01* X23066Y5792D01* Y5207D01* G37* G36* Y5831D02*X23045Y5846D01* X22986Y5873D01* Y7135D01* X23025Y7153D01* X23066Y7183D01* Y5831D01* G37* G36* Y7187D02*X22998Y7256D01* X22986Y7248D01* Y7751D01* X22998Y7743D01* X23066Y7812D01* Y7187D01* G37* G36* Y7817D02*X23025Y7846D01* X22986Y7864D01* Y9145D01* X23005Y9153D01* X23049Y9184D01* X22986Y9247D01* Y9752D01* X23049Y9815D01* X23005Y9846D01* X22986Y9854D01* Y11154D01* X23029Y11184D01* X22986Y11227D01* Y11772D01* X23029Y11815D01* X22986Y11845D01* Y13169D01* X23009Y13184D01* X22986Y13207D01* Y13792D01* X23009Y13815D01* X22986Y13831D01* Y15183D01* X22989Y15184D01* X22986Y15187D01* Y15812D01* X22989Y15815D01* X22986Y15817D01* Y17308D01* X23040Y17255D01* X23066Y17293D01* Y15734D01* X23060Y15744D01* X22988Y15673D01* X23004Y15650D01* X23026Y15602D01* X23040Y15552D01* X23045Y15500D01* X23040Y15447D01* X23026Y15397D01* X23004Y15350D01* X22988Y15327D01* X23060Y15255D01* X23066Y15265D01* Y13731D01* X23008Y13673D01* X23024Y13650D01* X23046Y13602D01* X23060Y13552D01* X23065Y13500D01* X23060Y13447D01* X23046Y13397D01* X23024Y13350D01* X23008Y13327D01* X23066Y13268D01* Y11711D01* X23028Y11673D01* X23044Y11650D01* X23066Y11602D01* Y11397D01* X23044Y11350D01* X23028Y11327D01* X23066Y11288D01* Y9691D01* X23048Y9673D01* X23064Y9650D01* X23066Y9645D01* Y9354D01* X23064Y9350D01* X23048Y9327D01* X23066Y9308D01* Y7817D01* G37* G36* Y17706D02*X23040Y17744D01* X22986Y17691D01* Y19288D01* X23020Y19255D01* X23051Y19300D01* X23066Y19333D01* Y17706D01* G37* G36* Y19666D02*X23051Y19700D01* X23020Y19744D01* X22986Y19711D01* Y21268D01* X23000Y21255D01* X23031Y21300D01* X23060Y21363D01* X23066Y21385D01* Y19666D01* G37* G36* Y40000D02*X23146D01* Y13614D01* X23140Y13636D01* X23111Y13700D01* X23080Y13744D01* X23066Y13731D01* Y15265D01* X23091Y15300D01* X23120Y15363D01* X23138Y15430D01* X23145Y15500D01* X23138Y15569D01* X23120Y15636D01* X23091Y15700D01* X23066Y15734D01* Y17293D01* X23071Y17300D01* X23100Y17363D01* X23118Y17430D01* X23125Y17500D01* X23118Y17569D01* X23100Y17636D01* X23071Y17700D01* X23066Y17706D01* Y19333D01* X23080Y19363D01* X23098Y19430D01* X23105Y19500D01* X23098Y19569D01* X23080Y19636D01* X23066Y19666D01* Y21385D01* X23078Y21430D01* X23085Y21500D01* X23078Y21569D01* X23066Y21614D01* Y40000D01* G37* G36* X23146Y0D02*X23066D01* Y1145D01* X23085Y1153D01* X23129Y1184D01* X23066Y1247D01* Y1752D01* X23129Y1815D01* X23085Y1846D01* X23066Y1854D01* Y3154D01* X23109Y3184D01* X23066Y3227D01* Y3772D01* X23109Y3815D01* X23066Y3845D01* Y5169D01* X23089Y5184D01* X23066Y5207D01* Y5792D01* X23089Y5815D01* X23066Y5831D01* Y7183D01* X23069Y7184D01* X23066Y7187D01* Y7812D01* X23069Y7815D01* X23066Y7817D01* Y9308D01* X23120Y9255D01* X23146Y9293D01* Y7734D01* X23140Y7744D01* X23068Y7673D01* X23084Y7650D01* X23106Y7602D01* X23120Y7552D01* X23125Y7500D01* X23120Y7447D01* X23106Y7397D01* X23084Y7350D01* X23068Y7327D01* X23140Y7255D01* X23146Y7265D01* Y5731D01* X23088Y5673D01* X23104Y5650D01* X23126Y5602D01* X23140Y5552D01* X23145Y5500D01* X23140Y5447D01* X23126Y5397D01* X23104Y5350D01* X23088Y5327D01* X23146Y5268D01* Y3711D01* X23108Y3673D01* X23124Y3650D01* X23146Y3602D01* Y3397D01* X23124Y3350D01* X23108Y3327D01* X23146Y3288D01* Y1691D01* X23128Y1673D01* X23144Y1650D01* X23146Y1645D01* Y1354D01* X23144Y1350D01* X23128Y1327D01* X23146Y1308D01* Y0D01* G37* G36* Y9706D02*X23120Y9744D01* X23066Y9691D01* Y11288D01* X23100Y11255D01* X23131Y11300D01* X23146Y11333D01* Y9706D01* G37* G36* Y11666D02*X23131Y11700D01* X23100Y11744D01* X23066Y11711D01* Y13268D01* X23080Y13255D01* X23111Y13300D01* X23140Y13363D01* X23146Y13385D01* Y11666D01* G37* G36* Y40000D02*X24183D01* Y39735D01* X24158Y39700D01* X24129Y39636D01* X24111Y39569D01* X24105Y39500D01* X24111Y39430D01* X24129Y39363D01* X24158Y39300D01* X24183Y39264D01* Y37706D01* X24178Y37700D01* X24149Y37636D01* X24131Y37569D01* X24125Y37500D01* X24131Y37430D01* X24149Y37363D01* X24178Y37300D01* X24183Y37293D01* Y35667D01* X24169Y35636D01* X24151Y35569D01* X24145Y35500D01* X24151Y35430D01* X24169Y35363D01* X24183Y35333D01* Y33614D01* X24171Y33569D01* X24165Y33500D01* X24171Y33430D01* X24183Y33385D01* Y0D01* X23146D01* Y1308D01* X23200Y1255D01* X23231Y1300D01* X23260Y1363D01* X23278Y1430D01* X23285Y1500D01* X23278Y1569D01* X23260Y1636D01* X23231Y1700D01* X23200Y1744D01* X23146Y1691D01* Y3288D01* X23180Y3255D01* X23211Y3300D01* X23240Y3363D01* X23258Y3430D01* X23265Y3500D01* X23258Y3569D01* X23240Y3636D01* X23211Y3700D01* X23180Y3744D01* X23146Y3711D01* Y5268D01* X23160Y5255D01* X23191Y5300D01* X23220Y5363D01* X23238Y5430D01* X23245Y5500D01* X23238Y5569D01* X23220Y5636D01* X23191Y5700D01* X23160Y5744D01* X23146Y5731D01* Y7265D01* X23171Y7300D01* X23200Y7363D01* X23218Y7430D01* X23225Y7500D01* X23218Y7569D01* X23200Y7636D01* X23171Y7700D01* X23146Y7734D01* Y9293D01* X23151Y9300D01* X23180Y9363D01* X23198Y9430D01* X23205Y9500D01* X23198Y9569D01* X23180Y9636D01* X23151Y9700D01* X23146Y9706D01* Y11333D01* X23160Y11363D01* X23178Y11430D01* X23185Y11500D01* X23178Y11569D01* X23160Y11636D01* X23146Y11666D01* Y13385D01* X23158Y13430D01* X23165Y13500D01* X23158Y13569D01* X23146Y13614D01* Y40000D01* G37* G36* Y3602D02*X23160Y3552D01* X23165Y3500D01* X23160Y3447D01* X23146Y3397D01* Y3602D01* G37* G36* Y1645D02*X23166Y1602D01* X23180Y1552D01* X23185Y1500D01* X23180Y1447D01* X23166Y1397D01* X23146Y1354D01* Y1645D01* G37* G36* X23066Y11602D02*X23080Y11552D01* X23085Y11500D01* X23080Y11447D01* X23066Y11397D01* Y11602D01* G37* G36* Y9645D02*X23086Y9602D01* X23100Y9552D01* X23105Y9500D01* X23100Y9447D01* X23086Y9397D01* X23066Y9354D01* Y9645D01* G37* G36* X24183Y40000D02*X24263D01* Y39817D01* X24260Y39815D01* X24263Y39812D01* Y39187D01* X24260Y39184D01* X24263Y39182D01* Y37691D01* X24209Y37744D01* X24183Y37706D01* Y39264D01* X24189Y39255D01* X24261Y39327D01* X24245Y39350D01* X24223Y39397D01* X24209Y39447D01* X24205Y39500D01* X24209Y39552D01* X24223Y39602D01* X24245Y39650D01* X24261Y39673D01* X24189Y39744D01* X24183Y39735D01* Y40000D01* G37* G36* X24263Y29706D02*X24258Y29700D01* X24229Y29636D01* X24211Y29569D01* X24205Y29500D01* X24211Y29430D01* X24229Y29363D01* X24258Y29300D01* X24263Y29293D01* Y27667D01* X24249Y27636D01* X24231Y27569D01* X24225Y27500D01* X24231Y27430D01* X24249Y27363D01* X24263Y27333D01* Y25614D01* X24251Y25569D01* X24245Y25500D01* X24251Y25430D01* X24263Y25385D01* Y0D01* X24183D01* Y33385D01* X24189Y33363D01* X24218Y33300D01* X24249Y33255D01* X24263Y33268D01* Y31735D01* X24238Y31700D01* X24209Y31636D01* X24191Y31569D01* X24185Y31500D01* X24191Y31430D01* X24209Y31363D01* X24238Y31300D01* X24263Y31264D01* Y29706D01* G37* G36* Y33731D02*X24249Y33744D01* X24218Y33700D01* X24189Y33636D01* X24183Y33614D01* Y35333D01* X24198Y35300D01* X24229Y35255D01* X24263Y35288D01* Y33731D01* G37* G36* Y35397D02*X24263Y35397D01* X24249Y35447D01* X24245Y35500D01* X24249Y35552D01* X24263Y35602D01* X24263Y35602D01* Y35397D01* G37* G36* Y35711D02*X24229Y35744D01* X24198Y35700D01* X24183Y35667D01* Y37293D01* X24209Y37255D01* X24263Y37308D01* Y35711D01* G37* G36* Y37354D02*X24243Y37397D01* X24229Y37447D01* X24225Y37500D01* X24229Y37552D01* X24243Y37602D01* X24263Y37645D01* Y37354D01* G37* G36* Y40000D02*X24343D01* Y39864D01* X24305Y39846D01* X24263Y39817D01* Y40000D01* G37* G36* Y39812D02*X24332Y39743D01* X24343Y39751D01* Y39248D01* X24332Y39256D01* X24263Y39187D01* Y39812D01* G37* G36* Y39182D02*X24305Y39153D01* X24343Y39135D01* Y37854D01* X24325Y37846D01* X24280Y37815D01* X24343Y37752D01* Y37247D01* X24280Y37184D01* X24325Y37153D01* X24343Y37145D01* Y35845D01* X24300Y35815D01* X24343Y35772D01* Y35227D01* X24300Y35184D01* X24343Y35154D01* Y33831D01* X24320Y33815D01* X24343Y33792D01* Y33207D01* X24320Y33184D01* X24343Y33168D01* Y31817D01* X24340Y31815D01* X24343Y31812D01* Y31187D01* X24340Y31184D01* X24343Y31182D01* Y29691D01* X24289Y29744D01* X24263Y29706D01* Y31264D01* X24269Y31255D01* X24341Y31327D01* X24325Y31350D01* X24303Y31397D01* X24289Y31447D01* X24285Y31500D01* X24289Y31552D01* X24303Y31602D01* X24325Y31650D01* X24341Y31673D01* X24269Y31744D01* X24263Y31735D01* Y33268D01* X24321Y33327D01* X24305Y33350D01* X24283Y33397D01* X24269Y33447D01* X24265Y33500D01* X24269Y33552D01* X24283Y33602D01* X24305Y33650D01* X24321Y33673D01* X24263Y33731D01* Y35288D01* X24301Y35327D01* X24285Y35350D01* X24263Y35397D01* Y35602D01* X24285Y35650D01* X24301Y35673D01* X24263Y35711D01* Y37308D01* X24281Y37327D01* X24265Y37350D01* X24263Y37354D01* Y37645D01* X24265Y37650D01* X24281Y37673D01* X24263Y37691D01* Y39182D01* G37* G36* Y29293D02*X24289Y29255D01* X24343Y29308D01* Y27711D01* X24309Y27744D01* X24278Y27700D01* X24263Y27667D01* Y29293D01* G37* G36* Y27333D02*X24278Y27300D01* X24309Y27255D01* X24343Y27288D01* Y25731D01* X24329Y25744D01* X24298Y25700D01* X24269Y25636D01* X24263Y25614D01* Y27333D01* G37* G36* Y25385D02*X24269Y25363D01* X24298Y25300D01* X24329Y25255D01* X24343Y25268D01* Y23735D01* X24318Y23700D01* X24289Y23636D01* X24271Y23569D01* X24265Y23500D01* X24271Y23430D01* X24289Y23363D01* X24318Y23300D01* X24343Y23264D01* Y21706D01* X24338Y21700D01* X24309Y21636D01* X24291Y21569D01* X24285Y21500D01* X24291Y21430D01* X24309Y21363D01* X24338Y21300D01* X24343Y21293D01* Y19667D01* X24329Y19636D01* X24311Y19569D01* X24305Y19500D01* X24311Y19430D01* X24329Y19363D01* X24343Y19333D01* Y17614D01* X24331Y17569D01* X24325Y17500D01* X24331Y17430D01* X24343Y17385D01* Y0D01* X24263D01* Y25385D01* G37* G36* X24343Y29354D02*X24323Y29397D01* X24309Y29447D01* X24305Y29500D01* X24309Y29552D01* X24323Y29602D01* X24343Y29645D01* Y29354D01* G37* G36* Y27397D02*X24343Y27397D01* X24329Y27447D01* X24325Y27500D01* X24329Y27552D01* X24343Y27602D01* X24343Y27602D01* Y27397D01* G37* G36* Y40000D02*X24505D01* Y39900D01* X24435Y39893D01* X24368Y39875D01* X24343Y39864D01* Y40000D01* G37* G36* Y39751D02*X24355Y39759D01* X24402Y39781D01* X24452Y39795D01* X24505Y39800D01* Y39200D01* X24452Y39204D01* X24402Y39218D01* X24355Y39240D01* X24343Y39248D01* Y39751D01* G37* G36* Y39135D02*X24368Y39124D01* X24435Y39106D01* X24505Y39100D01* Y37898D01* X24455Y37893D01* X24388Y37875D01* X24343Y37854D01* Y39135D01* G37* G36* Y37752D02*X24352Y37743D01* X24375Y37759D01* X24422Y37781D01* X24472Y37795D01* X24505Y37798D01* Y37201D01* X24472Y37204D01* X24422Y37218D01* X24375Y37240D01* X24352Y37256D01* X24343Y37247D01* Y37752D01* G37* G36* Y37145D02*X24388Y37124D01* X24455Y37106D01* X24505Y37101D01* Y35896D01* X24475Y35893D01* X24408Y35875D01* X24345Y35846D01* X24343Y35845D01* Y37145D01* G37* G36* Y35772D02*X24372Y35743D01* X24395Y35759D01* X24442Y35781D01* X24492Y35795D01* X24505Y35796D01* Y35203D01* X24492Y35204D01* X24442Y35218D01* X24395Y35240D01* X24372Y35256D01* X24343Y35227D01* Y35772D01* G37* G36* Y35154D02*X24345Y35153D01* X24408Y35124D01* X24475Y35106D01* X24505Y35103D01* Y33894D01* X24495Y33893D01* X24428Y33875D01* X24365Y33846D01* X24343Y33831D01* Y35154D01* G37* G36* Y33792D02*X24392Y33743D01* X24415Y33759D01* X24462Y33781D01* X24505Y33793D01* Y33206D01* X24462Y33218D01* X24415Y33240D01* X24392Y33256D01* X24343Y33207D01* Y33792D01* G37* G36* Y33168D02*X24365Y33153D01* X24428Y33124D01* X24495Y33106D01* X24505Y33105D01* Y31891D01* X24448Y31875D01* X24385Y31846D01* X24343Y31817D01* Y33168D01* G37* G36* Y31812D02*X24412Y31743D01* X24435Y31759D01* X24482Y31781D01* X24505Y31787D01* Y31212D01* X24482Y31218D01* X24435Y31240D01* X24412Y31256D01* X24343Y31187D01* Y31812D01* G37* G36* Y31182D02*X24385Y31153D01* X24423Y31135D01* Y29854D01* X24405Y29846D01* X24360Y29815D01* X24423Y29752D01* Y29247D01* X24360Y29184D01* X24405Y29153D01* X24423Y29145D01* Y27845D01* X24380Y27815D01* X24423Y27772D01* Y27227D01* X24380Y27184D01* X24423Y27154D01* Y25831D01* X24400Y25815D01* X24423Y25792D01* Y25207D01* X24400Y25184D01* X24423Y25168D01* Y23817D01* X24420Y23815D01* X24423Y23812D01* Y23187D01* X24420Y23184D01* X24423Y23182D01* Y21691D01* X24369Y21744D01* X24343Y21706D01* Y23264D01* X24349Y23255D01* X24421Y23327D01* X24405Y23350D01* X24383Y23397D01* X24369Y23447D01* X24365Y23500D01* X24369Y23552D01* X24383Y23602D01* X24405Y23650D01* X24421Y23673D01* X24349Y23744D01* X24343Y23735D01* Y25268D01* X24401Y25327D01* X24385Y25350D01* X24363Y25397D01* X24349Y25447D01* X24345Y25500D01* X24349Y25552D01* X24363Y25602D01* X24385Y25650D01* X24401Y25673D01* X24343Y25731D01* Y27288D01* X24381Y27327D01* X24365Y27350D01* X24343Y27397D01* Y27602D01* X24365Y27650D01* X24381Y27673D01* X24343Y27711D01* Y29308D01* X24361Y29327D01* X24345Y29350D01* X24343Y29354D01* Y29645D01* X24345Y29650D01* X24361Y29673D01* X24343Y29691D01* Y31182D01* G37* G36* X24423Y13706D02*X24418Y13700D01* X24389Y13636D01* X24371Y13569D01* X24365Y13500D01* X24371Y13430D01* X24389Y13363D01* X24418Y13300D01* X24423Y13293D01* Y11667D01* X24409Y11636D01* X24391Y11569D01* X24385Y11500D01* X24391Y11430D01* X24409Y11363D01* X24423Y11333D01* Y9614D01* X24411Y9569D01* X24405Y9500D01* X24411Y9430D01* X24423Y9385D01* Y0D01* X24343D01* Y17385D01* X24349Y17363D01* X24378Y17300D01* X24409Y17255D01* X24423Y17268D01* Y15735D01* X24398Y15700D01* X24369Y15636D01* X24351Y15569D01* X24345Y15500D01* X24351Y15430D01* X24369Y15363D01* X24398Y15300D01* X24423Y15264D01* Y13706D01* G37* G36* Y17731D02*X24409Y17744D01* X24378Y17700D01* X24349Y17636D01* X24343Y17614D01* Y19333D01* X24358Y19300D01* X24389Y19255D01* X24423Y19288D01* Y17731D01* G37* G36* Y19397D02*X24423Y19397D01* X24409Y19447D01* X24405Y19500D01* X24409Y19552D01* X24423Y19602D01* X24423Y19602D01* Y19397D01* G37* G36* Y19711D02*X24389Y19744D01* X24358Y19700D01* X24343Y19667D01* Y21293D01* X24369Y21255D01* X24423Y21308D01* Y19711D01* G37* G36* Y21354D02*X24403Y21397D01* X24389Y21447D01* X24385Y21500D01* X24389Y21552D01* X24403Y21602D01* X24423Y21645D01* Y21354D01* G37* G36* Y31135D02*X24448Y31124D01* X24505Y31108D01* Y29885D01* X24468Y29875D01* X24423Y29854D01* Y31135D01* G37* G36* Y29752D02*X24432Y29743D01* X24455Y29759D01* X24502Y29781D01* X24505Y29782D01* Y29217D01* X24502Y29218D01* X24455Y29240D01* X24432Y29256D01* X24423Y29247D01* Y29752D01* G37* G36* Y29145D02*X24468Y29124D01* X24505Y29114D01* Y27880D01* X24488Y27875D01* X24425Y27846D01* X24423Y27845D01* Y29145D01* G37* G36* Y27772D02*X24452Y27743D01* X24475Y27759D01* X24505Y27773D01* Y27226D01* X24475Y27240D01* X24452Y27256D01* X24423Y27227D01* Y27772D01* G37* G36* Y27154D02*X24425Y27153D01* X24488Y27124D01* X24505Y27119D01* Y25874D01* X24445Y25846D01* X24423Y25831D01* Y27154D01* G37* G36* Y25792D02*X24472Y25743D01* X24495Y25759D01* X24505Y25764D01* Y25235D01* X24495Y25240D01* X24472Y25256D01* X24423Y25207D01* Y25792D01* G37* G36* Y25168D02*X24445Y25153D01* X24505Y25125D01* Y23865D01* X24465Y23846D01* X24423Y23817D01* Y25168D01* G37* G36* Y23812D02*X24492Y23743D01* X24505Y23752D01* Y23247D01* X24492Y23256D01* X24423Y23187D01* Y23812D01* G37* G36* Y23182D02*X24465Y23153D01* X24505Y23134D01* Y21855D01* X24485Y21846D01* X24440Y21815D01* X24505Y21750D01* Y21249D01* X24440Y21184D01* X24485Y21153D01* X24505Y21144D01* Y19846D01* X24460Y19815D01* X24505Y19770D01* Y19229D01* X24460Y19184D01* X24505Y19153D01* Y17832D01* X24480Y17815D01* X24505Y17790D01* Y17209D01* X24480Y17184D01* X24505Y17167D01* Y15818D01* X24500Y15815D01* X24505Y15810D01* Y15189D01* X24500Y15184D01* X24505Y15181D01* Y13689D01* X24449Y13744D01* X24423Y13706D01* Y15264D01* X24429Y15255D01* X24501Y15327D01* X24485Y15350D01* X24463Y15397D01* X24449Y15447D01* X24445Y15500D01* X24449Y15552D01* X24463Y15602D01* X24485Y15650D01* X24501Y15673D01* X24429Y15744D01* X24423Y15735D01* Y17268D01* X24481Y17327D01* X24465Y17350D01* X24443Y17397D01* X24429Y17447D01* X24425Y17500D01* X24429Y17552D01* X24443Y17602D01* X24465Y17650D01* X24481Y17673D01* X24423Y17731D01* Y19288D01* X24461Y19327D01* X24445Y19350D01* X24423Y19397D01* Y19602D01* X24445Y19650D01* X24461Y19673D01* X24423Y19711D01* Y21308D01* X24441Y21327D01* X24425Y21350D01* X24423Y21354D01* Y21645D01* X24425Y21650D01* X24441Y21673D01* X24423Y21691D01* Y23182D01* G37* G36* Y13293D02*X24449Y13255D01* X24505Y13310D01* Y11709D01* X24469Y11744D01* X24438Y11700D01* X24423Y11667D01* Y13293D01* G37* G36* Y11333D02*X24438Y11300D01* X24469Y11255D01* X24505Y11290D01* Y9729D01* X24489Y9744D01* X24458Y9700D01* X24429Y9636D01* X24423Y9614D01* Y11333D01* G37* G36* Y9385D02*X24429Y9363D01* X24458Y9300D01* X24489Y9255D01* X24505Y9270D01* Y7737D01* X24478Y7700D01* X24449Y7636D01* X24431Y7569D01* X24425Y7500D01* X24431Y7430D01* X24449Y7363D01* X24478Y7300D01* X24505Y7262D01* Y5709D01* X24498Y5700D01* X24469Y5636D01* X24451Y5569D01* X24445Y5500D01* X24451Y5430D01* X24469Y5363D01* X24498Y5300D01* X24505Y5290D01* Y3670D01* X24489Y3636D01* X24471Y3569D01* X24465Y3500D01* X24471Y3430D01* X24489Y3363D01* X24505Y3329D01* Y1621D01* X24491Y1569D01* X24485Y1500D01* X24491Y1430D01* X24505Y1378D01* Y0D01* X24423D01* Y9385D01* G37* G36* X24505Y13350D02*X24483Y13397D01* X24469Y13447D01* X24465Y13500D01* X24469Y13552D01* X24483Y13602D01* X24505Y13649D01* Y13350D01* G37* G36* Y11393D02*X24503Y11397D01* X24489Y11447D01* X24485Y11500D01* X24489Y11552D01* X24503Y11602D01* X24505Y11606D01* Y11393D01* G37* G36* Y40000D02*X24826D01* Y39734D01* X24820Y39744D01* X24748Y39673D01* X24764Y39650D01* X24786Y39602D01* X24800Y39552D01* X24805Y39500D01* X24800Y39447D01* X24786Y39397D01* X24764Y39350D01* X24748Y39327D01* X24820Y39255D01* X24826Y39265D01* Y37731D01* X24768Y37673D01* X24784Y37650D01* X24806Y37602D01* X24820Y37552D01* X24825Y37500D01* X24820Y37447D01* X24806Y37397D01* X24784Y37350D01* X24768Y37327D01* X24826Y37268D01* Y35711D01* X24788Y35673D01* X24804Y35650D01* X24826Y35602D01* Y35397D01* X24804Y35350D01* X24788Y35327D01* X24826Y35288D01* Y33691D01* X24808Y33673D01* X24824Y33650D01* X24826Y33645D01* Y33354D01* X24824Y33350D01* X24808Y33327D01* X24826Y33308D01* Y31817D01* X24785Y31846D01* X24721Y31875D01* X24654Y31893D01* X24585Y31900D01* X24515Y31893D01* X24505Y31891D01* Y33105D01* X24565Y33100D01* X24634Y33106D01* X24701Y33124D01* X24765Y33153D01* X24809Y33184D01* X24738Y33256D01* X24715Y33240D01* X24667Y33218D01* X24617Y33204D01* X24565Y33200D01* X24512Y33204D01* X24505Y33206D01* Y33793D01* X24512Y33795D01* X24565Y33800D01* X24617Y33795D01* X24667Y33781D01* X24715Y33759D01* X24738Y33743D01* X24809Y33815D01* X24765Y33846D01* X24701Y33875D01* X24634Y33893D01* X24565Y33900D01* X24505Y33894D01* Y35103D01* X24545Y35100D01* X24614Y35106D01* X24681Y35124D01* X24745Y35153D01* X24789Y35184D01* X24718Y35256D01* X24695Y35240D01* X24647Y35218D01* X24597Y35204D01* X24545Y35200D01* X24505Y35203D01* Y35796D01* X24545Y35800D01* X24597Y35795D01* X24647Y35781D01* X24695Y35759D01* X24718Y35743D01* X24789Y35815D01* X24745Y35846D01* X24681Y35875D01* X24614Y35893D01* X24545Y35900D01* X24505Y35896D01* Y37101D01* X24525Y37100D01* X24594Y37106D01* X24661Y37124D01* X24725Y37153D01* X24769Y37184D01* X24698Y37256D01* X24675Y37240D01* X24627Y37218D01* X24577Y37204D01* X24525Y37200D01* X24505Y37201D01* Y37798D01* X24525Y37800D01* X24577Y37795D01* X24627Y37781D01* X24675Y37759D01* X24698Y37743D01* X24769Y37815D01* X24725Y37846D01* X24661Y37875D01* X24594Y37893D01* X24525Y37900D01* X24505Y37898D01* Y39100D01* X24574Y39106D01* X24641Y39124D01* X24705Y39153D01* X24749Y39184D01* X24678Y39256D01* X24655Y39240D01* X24607Y39218D01* X24557Y39204D01* X24505Y39200D01* Y39800D01* X24557Y39795D01* X24607Y39781D01* X24655Y39759D01* X24678Y39743D01* X24749Y39815D01* X24705Y39846D01* X24641Y39875D01* X24574Y39893D01* X24505Y39900D01* Y40000D01* G37* G36* Y31787D02*X24532Y31795D01* X24585Y31800D01* X24637Y31795D01* X24687Y31781D01* X24735Y31759D01* X24758Y31743D01* X24826Y31812D01* Y31187D01* X24758Y31256D01* X24735Y31240D01* X24687Y31218D01* X24637Y31204D01* X24585Y31200D01* X24532Y31204D01* X24505Y31212D01* Y31787D01* G37* G36* Y31108D02*X24515Y31106D01* X24585Y31100D01* X24654Y31106D01* X24721Y31124D01* X24785Y31153D01* X24826Y31183D01* Y29831D01* X24805Y29846D01* X24741Y29875D01* X24674Y29893D01* X24605Y29900D01* X24535Y29893D01* X24505Y29885D01* Y31108D01* G37* G36* Y29782D02*X24552Y29795D01* X24605Y29800D01* X24657Y29795D01* X24707Y29781D01* X24755Y29759D01* X24778Y29743D01* X24826Y29792D01* Y29207D01* X24778Y29256D01* X24755Y29240D01* X24707Y29218D01* X24657Y29204D01* X24605Y29200D01* X24552Y29204D01* X24505Y29217D01* Y29782D01* G37* G36* Y29114D02*X24535Y29106D01* X24605Y29100D01* X24674Y29106D01* X24741Y29124D01* X24805Y29153D01* X24826Y29169D01* Y27845D01* X24825Y27846D01* X24761Y27875D01* X24694Y27893D01* X24625Y27900D01* X24555Y27893D01* X24505Y27880D01* Y29114D01* G37* G36* Y27773D02*X24522Y27781D01* X24572Y27795D01* X24625Y27800D01* X24677Y27795D01* X24727Y27781D01* X24775Y27759D01* X24798Y27743D01* X24826Y27772D01* Y27227D01* X24798Y27256D01* X24775Y27240D01* X24727Y27218D01* X24677Y27204D01* X24625Y27200D01* X24572Y27204D01* X24522Y27218D01* X24505Y27226D01* Y27773D01* G37* G36* Y27119D02*X24555Y27106D01* X24625Y27100D01* X24694Y27106D01* X24761Y27124D01* X24825Y27153D01* X24826Y27154D01* Y25854D01* X24781Y25875D01* X24714Y25893D01* X24645Y25900D01* X24575Y25893D01* X24508Y25875D01* X24505Y25874D01* Y27119D01* G37* G36* Y25764D02*X24542Y25781D01* X24592Y25795D01* X24645Y25800D01* X24697Y25795D01* X24747Y25781D01* X24795Y25759D01* X24818Y25743D01* X24826Y25752D01* Y25247D01* X24818Y25256D01* X24795Y25240D01* X24747Y25218D01* X24697Y25204D01* X24645Y25200D01* X24592Y25204D01* X24542Y25218D01* X24505Y25235D01* Y25764D01* G37* G36* Y25125D02*X24508Y25124D01* X24575Y25106D01* X24645Y25100D01* X24714Y25106D01* X24781Y25124D01* X24826Y25145D01* Y23864D01* X24801Y23875D01* X24734Y23893D01* X24665Y23900D01* X24595Y23893D01* X24528Y23875D01* X24505Y23865D01* Y25125D01* G37* G36* Y23752D02*X24515Y23759D01* X24562Y23781D01* X24612Y23795D01* X24665Y23800D01* X24717Y23795D01* X24767Y23781D01* X24815Y23759D01* X24826Y23751D01* Y23248D01* X24815Y23240D01* X24767Y23218D01* X24717Y23204D01* X24665Y23200D01* X24612Y23204D01* X24562Y23218D01* X24515Y23240D01* X24505Y23247D01* Y23752D01* G37* G36* Y23134D02*X24528Y23124D01* X24595Y23106D01* X24665Y23100D01* X24734Y23106D01* X24801Y23124D01* X24826Y23135D01* Y21873D01* X24821Y21875D01* X24754Y21893D01* X24685Y21900D01* X24615Y21893D01* X24548Y21875D01* X24505Y21855D01* Y23134D01* G37* G36* Y21750D02*X24512Y21743D01* X24535Y21759D01* X24582Y21781D01* X24632Y21795D01* X24685Y21800D01* X24737Y21795D01* X24787Y21781D01* X24826Y21763D01* Y21236D01* X24787Y21218D01* X24737Y21204D01* X24685Y21200D01* X24632Y21204D01* X24582Y21218D01* X24535Y21240D01* X24512Y21256D01* X24505Y21249D01* Y21750D01* G37* G36* Y21144D02*X24548Y21124D01* X24615Y21106D01* X24685Y21100D01* X24754Y21106D01* X24821Y21124D01* X24826Y21126D01* Y19879D01* X24774Y19893D01* X24705Y19900D01* X24635Y19893D01* X24568Y19875D01* X24505Y19846D01* Y21144D01* G37* G36* Y19770D02*X24532Y19743D01* X24555Y19759D01* X24602Y19781D01* X24652Y19795D01* X24705Y19800D01* X24757Y19795D01* X24807Y19781D01* X24826Y19772D01* Y19227D01* X24807Y19218D01* X24757Y19204D01* X24705Y19200D01* X24652Y19204D01* X24602Y19218D01* X24555Y19240D01* X24532Y19256D01* X24505Y19229D01* Y19770D01* G37* G36* Y19153D02*X24568Y19124D01* X24635Y19106D01* X24705Y19100D01* X24774Y19106D01* X24826Y19120D01* Y17885D01* X24794Y17893D01* X24725Y17900D01* X24655Y17893D01* X24588Y17875D01* X24525Y17846D01* X24505Y17832D01* Y19153D01* G37* G36* Y17790D02*X24552Y17743D01* X24575Y17759D01* X24622Y17781D01* X24672Y17795D01* X24725Y17800D01* X24777Y17795D01* X24826Y17782D01* Y17217D01* X24777Y17204D01* X24725Y17200D01* X24672Y17204D01* X24622Y17218D01* X24575Y17240D01* X24552Y17256D01* X24505Y17209D01* Y17790D01* G37* G36* Y17167D02*X24525Y17153D01* X24588Y17124D01* X24655Y17106D01* X24725Y17100D01* X24794Y17106D01* X24826Y17114D01* Y15890D01* X24814Y15893D01* X24745Y15900D01* X24675Y15893D01* X24608Y15875D01* X24545Y15846D01* X24505Y15818D01* Y17167D01* G37* G36* Y15810D02*X24572Y15743D01* X24595Y15759D01* X24642Y15781D01* X24692Y15795D01* X24745Y15800D01* X24797Y15795D01* X24826Y15787D01* Y15212D01* X24797Y15204D01* X24745Y15200D01* X24692Y15204D01* X24642Y15218D01* X24595Y15240D01* X24572Y15256D01* X24505Y15189D01* Y15810D01* G37* G36* Y15181D02*X24545Y15153D01* X24608Y15124D01* X24675Y15106D01* X24745Y15100D01* X24814Y15106D01* X24826Y15109D01* Y13894D01* X24765Y13900D01* X24695Y13893D01* X24628Y13875D01* X24565Y13846D01* X24520Y13815D01* X24592Y13743D01* X24615Y13759D01* X24662Y13781D01* X24712Y13795D01* X24765Y13800D01* X24817Y13795D01* X24826Y13792D01* Y13207D01* X24817Y13204D01* X24765Y13200D01* X24712Y13204D01* X24662Y13218D01* X24615Y13240D01* X24592Y13256D01* X24520Y13184D01* X24565Y13153D01* X24628Y13124D01* X24695Y13106D01* X24765Y13100D01* X24826Y13105D01* Y11896D01* X24785Y11900D01* X24715Y11893D01* X24648Y11875D01* X24585Y11846D01* X24540Y11815D01* X24612Y11743D01* X24635Y11759D01* X24682Y11781D01* X24732Y11795D01* X24785Y11800D01* X24826Y11796D01* Y11203D01* X24785Y11200D01* X24732Y11204D01* X24682Y11218D01* X24635Y11240D01* X24612Y11256D01* X24540Y11184D01* X24585Y11153D01* X24648Y11124D01* X24715Y11106D01* X24785Y11100D01* X24826Y11103D01* Y9898D01* X24805Y9900D01* X24735Y9893D01* X24668Y9875D01* X24605Y9846D01* X24560Y9815D01* X24632Y9743D01* X24655Y9759D01* X24702Y9781D01* X24752Y9795D01* X24805Y9800D01* X24826Y9798D01* Y9201D01* X24805Y9200D01* X24752Y9204D01* X24702Y9218D01* X24655Y9240D01* X24632Y9256D01* X24560Y9184D01* X24605Y9153D01* X24668Y9124D01* X24735Y9106D01* X24805Y9100D01* X24826Y9101D01* Y7899D01* X24825Y7900D01* X24755Y7893D01* X24688Y7875D01* X24625Y7846D01* X24580Y7815D01* X24652Y7743D01* X24675Y7759D01* X24722Y7781D01* X24772Y7795D01* X24825Y7800D01* X24826Y7799D01* Y7200D01* X24825Y7200D01* X24772Y7204D01* X24722Y7218D01* X24675Y7240D01* X24652Y7256D01* X24580Y7184D01* X24625Y7153D01* X24688Y7124D01* X24755Y7106D01* X24825Y7100D01* X24826Y7100D01* Y5898D01* X24775Y5893D01* X24708Y5875D01* X24645Y5846D01* X24600Y5815D01* X24672Y5743D01* X24695Y5759D01* X24742Y5781D01* X24792Y5795D01* X24826Y5798D01* Y5201D01* X24792Y5204D01* X24742Y5218D01* X24695Y5240D01* X24672Y5256D01* X24600Y5184D01* X24645Y5153D01* X24708Y5124D01* X24775Y5106D01* X24826Y5101D01* Y3896D01* X24795Y3893D01* X24728Y3875D01* X24665Y3846D01* X24620Y3815D01* X24692Y3743D01* X24715Y3759D01* X24762Y3781D01* X24812Y3795D01* X24826Y3796D01* Y3203D01* X24812Y3204D01* X24762Y3218D01* X24715Y3240D01* X24692Y3256D01* X24620Y3184D01* X24665Y3153D01* X24728Y3124D01* X24795Y3106D01* X24826Y3103D01* Y1894D01* X24815Y1893D01* X24748Y1875D01* X24685Y1846D01* X24640Y1815D01* X24712Y1743D01* X24735Y1759D01* X24782Y1781D01* X24826Y1793D01* Y1206D01* X24782Y1218D01* X24735Y1240D01* X24712Y1256D01* X24640Y1184D01* X24685Y1153D01* X24748Y1124D01* X24815Y1106D01* X24826Y1105D01* Y0D01* X24505D01* Y1378D01* X24509Y1363D01* X24538Y1300D01* X24569Y1255D01* X24641Y1327D01* X24625Y1350D01* X24603Y1397D01* X24589Y1447D01* X24585Y1500D01* X24589Y1552D01* X24603Y1602D01* X24625Y1650D01* X24641Y1673D01* X24569Y1744D01* X24538Y1700D01* X24509Y1636D01* X24505Y1621D01* Y3329D01* X24518Y3300D01* X24549Y3255D01* X24621Y3327D01* X24605Y3350D01* X24583Y3397D01* X24569Y3447D01* X24565Y3500D01* X24569Y3552D01* X24583Y3602D01* X24605Y3650D01* X24621Y3673D01* X24549Y3744D01* X24518Y3700D01* X24505Y3670D01* Y5290D01* X24529Y5255D01* X24601Y5327D01* X24585Y5350D01* X24563Y5397D01* X24549Y5447D01* X24545Y5500D01* X24549Y5552D01* X24563Y5602D01* X24585Y5650D01* X24601Y5673D01* X24529Y5744D01* X24505Y5709D01* Y7262D01* X24509Y7255D01* X24581Y7327D01* X24565Y7350D01* X24543Y7397D01* X24529Y7447D01* X24525Y7500D01* X24529Y7552D01* X24543Y7602D01* X24565Y7650D01* X24581Y7673D01* X24509Y7744D01* X24505Y7737D01* Y9270D01* X24561Y9327D01* X24545Y9350D01* X24523Y9397D01* X24509Y9447D01* X24505Y9500D01* X24509Y9552D01* X24523Y9602D01* X24545Y9650D01* X24561Y9673D01* X24505Y9729D01* Y11290D01* X24541Y11327D01* X24525Y11350D01* X24505Y11393D01* Y11606D01* X24525Y11650D01* X24541Y11673D01* X24505Y11709D01* Y13310D01* X24521Y13327D01* X24505Y13350D01* X24505Y13350D01* Y13649D01* X24505Y13650D01* X24521Y13673D01* X24505Y13689D01* Y15181D01* G37* G36* X24826Y40000D02*X24906D01* Y37614D01* X24900Y37636D01* X24871Y37700D01* X24840Y37744D01* X24826Y37731D01* Y39265D01* X24851Y39300D01* X24880Y39363D01* X24898Y39430D01* X24905Y39500D01* X24898Y39569D01* X24880Y39636D01* X24851Y39700D01* X24826Y39734D01* Y40000D01* G37* G36* X24906Y29731D02*X24848Y29673D01* X24864Y29650D01* X24886Y29602D01* X24900Y29552D01* X24905Y29500D01* X24900Y29447D01* X24886Y29397D01* X24864Y29350D01* X24848Y29327D01* X24906Y29268D01* Y27711D01* X24868Y27673D01* X24884Y27650D01* X24906Y27602D01* Y27397D01* X24884Y27350D01* X24868Y27327D01* X24906Y27288D01* Y25691D01* X24888Y25673D01* X24904Y25650D01* X24906Y25645D01* Y25354D01* X24904Y25350D01* X24888Y25327D01* X24906Y25308D01* Y23817D01* X24865Y23846D01* X24826Y23864D01* Y25145D01* X24845Y25153D01* X24889Y25184D01* X24826Y25247D01* Y25752D01* X24889Y25815D01* X24845Y25846D01* X24826Y25854D01* Y27154D01* X24869Y27184D01* X24826Y27227D01* Y27772D01* X24869Y27815D01* X24826Y27845D01* Y29169D01* X24849Y29184D01* X24826Y29207D01* Y29792D01* X24849Y29815D01* X24826Y29831D01* Y31183D01* X24829Y31184D01* X24826Y31187D01* Y31812D01* X24829Y31815D01* X24826Y31817D01* Y33308D01* X24880Y33255D01* X24906Y33293D01* Y31734D01* X24900Y31744D01* X24828Y31673D01* X24844Y31650D01* X24866Y31602D01* X24880Y31552D01* X24885Y31500D01* X24880Y31447D01* X24866Y31397D01* X24844Y31350D01* X24828Y31327D01* X24900Y31255D01* X24906Y31265D01* Y29731D01* G37* G36* Y15864D02*X24881Y15875D01* X24826Y15890D01* Y17114D01* X24861Y17124D01* X24906Y17145D01* Y15864D01* G37* G36* Y17247D02*X24898Y17256D01* X24875Y17240D01* X24827Y17218D01* X24826Y17217D01* Y17782D01* X24827Y17781D01* X24875Y17759D01* X24898Y17743D01* X24906Y17752D01* Y17247D01* G37* G36* Y17854D02*X24861Y17875D01* X24826Y17885D01* Y19120D01* X24841Y19124D01* X24905Y19153D01* X24906Y19154D01* Y17854D01* G37* G36* Y19227D02*X24878Y19256D01* X24855Y19240D01* X24826Y19227D01* Y19772D01* X24855Y19759D01* X24878Y19743D01* X24906Y19772D01* Y19227D01* G37* G36* Y19845D02*X24905Y19846D01* X24841Y19875D01* X24826Y19879D01* Y21126D01* X24885Y21153D01* X24906Y21169D01* Y19845D01* G37* G36* Y21207D02*X24858Y21256D01* X24835Y21240D01* X24826Y21236D01* Y21763D01* X24835Y21759D01* X24858Y21743D01* X24906Y21792D01* Y21207D01* G37* G36* Y21831D02*X24885Y21846D01* X24826Y21873D01* Y23135D01* X24865Y23153D01* X24906Y23183D01* Y21831D01* G37* G36* Y23187D02*X24838Y23256D01* X24826Y23248D01* Y23751D01* X24838Y23743D01* X24906Y23812D01* Y23187D01* G37* G36* Y33706D02*X24880Y33744D01* X24826Y33691D01* Y35288D01* X24860Y35255D01* X24891Y35300D01* X24906Y35333D01* Y33706D01* G37* G36* Y35666D02*X24891Y35700D01* X24860Y35744D01* X24826Y35711D01* Y37268D01* X24840Y37255D01* X24871Y37300D01* X24900Y37363D01* X24906Y37385D01* Y35666D01* G37* G36* Y40000D02*X24986D01* Y29614D01* X24980Y29636D01* X24951Y29700D01* X24920Y29744D01* X24906Y29731D01* Y31265D01* X24931Y31300D01* X24960Y31363D01* X24978Y31430D01* X24985Y31500D01* X24978Y31569D01* X24960Y31636D01* X24931Y31700D01* X24906Y31734D01* Y33293D01* X24911Y33300D01* X24940Y33363D01* X24958Y33430D01* X24965Y33500D01* X24958Y33569D01* X24940Y33636D01* X24911Y33700D01* X24906Y33706D01* Y35333D01* X24920Y35363D01* X24938Y35430D01* X24945Y35500D01* X24938Y35569D01* X24920Y35636D01* X24906Y35666D01* Y37385D01* X24918Y37430D01* X24925Y37500D01* X24918Y37569D01* X24906Y37614D01* Y40000D01* G37* G36* Y29268D02*X24920Y29255D01* X24951Y29300D01* X24980Y29363D01* X24986Y29385D01* Y27666D01* X24971Y27700D01* X24940Y27744D01* X24906Y27711D01* Y29268D01* G37* G36* Y27602D02*X24920Y27552D01* X24925Y27500D01* X24920Y27447D01* X24906Y27397D01* Y27602D01* G37* G36* Y27288D02*X24940Y27255D01* X24971Y27300D01* X24986Y27333D01* Y25706D01* X24960Y25744D01* X24906Y25691D01* Y27288D01* G37* G36* Y25645D02*X24926Y25602D01* X24940Y25552D01* X24945Y25500D01* X24940Y25447D01* X24926Y25397D01* X24906Y25354D01* Y25645D01* G37* G36* Y25308D02*X24960Y25255D01* X24986Y25293D01* Y23734D01* X24980Y23744D01* X24908Y23673D01* X24924Y23650D01* X24946Y23602D01* X24960Y23552D01* X24965Y23500D01* X24960Y23447D01* X24946Y23397D01* X24924Y23350D01* X24908Y23327D01* X24980Y23255D01* X24986Y23265D01* Y21731D01* X24928Y21673D01* X24944Y21650D01* X24966Y21602D01* X24980Y21552D01* X24985Y21500D01* X24980Y21447D01* X24966Y21397D01* X24944Y21350D01* X24928Y21327D01* X24986Y21268D01* Y19711D01* X24948Y19673D01* X24964Y19650D01* X24986Y19602D01* Y19397D01* X24964Y19350D01* X24948Y19327D01* X24986Y19288D01* Y17691D01* X24968Y17673D01* X24984Y17650D01* X24986Y17645D01* Y17354D01* X24984Y17350D01* X24968Y17327D01* X24986Y17308D01* Y15817D01* X24945Y15846D01* X24906Y15864D01* Y17145D01* X24925Y17153D01* X24969Y17184D01* X24906Y17247D01* Y17752D01* X24969Y17815D01* X24925Y17846D01* X24906Y17854D01* Y19154D01* X24949Y19184D01* X24906Y19227D01* Y19772D01* X24949Y19815D01* X24906Y19845D01* Y21169D01* X24929Y21184D01* X24906Y21207D01* Y21792D01* X24929Y21815D01* X24906Y21831D01* Y23183D01* X24909Y23184D01* X24906Y23187D01* Y23812D01* X24909Y23815D01* X24906Y23817D01* Y25308D01* G37* G36* X24986Y0D02*X24826D01* Y1105D01* X24885Y1100D01* X24954Y1106D01* X24986Y1114D01* Y0D01* G37* G36* Y1217D02*X24937Y1204D01* X24885Y1200D01* X24832Y1204D01* X24826Y1206D01* Y1793D01* X24832Y1795D01* X24885Y1800D01* X24937Y1795D01* X24986Y1782D01* Y1217D01* G37* G36* Y1885D02*X24954Y1893D01* X24885Y1900D01* X24826Y1894D01* Y3103D01* X24865Y3100D01* X24934Y3106D01* X24986Y3120D01* Y1885D01* G37* G36* Y3227D02*X24967Y3218D01* X24917Y3204D01* X24865Y3200D01* X24826Y3203D01* Y3796D01* X24865Y3800D01* X24917Y3795D01* X24967Y3781D01* X24986Y3772D01* Y3227D01* G37* G36* Y3879D02*X24934Y3893D01* X24865Y3900D01* X24826Y3896D01* Y5101D01* X24845Y5100D01* X24914Y5106D01* X24981Y5124D01* X24986Y5126D01* Y3879D01* G37* G36* Y5236D02*X24947Y5218D01* X24897Y5204D01* X24845Y5200D01* X24826Y5201D01* Y5798D01* X24845Y5800D01* X24897Y5795D01* X24947Y5781D01* X24986Y5763D01* Y5236D01* G37* G36* Y5873D02*X24981Y5875D01* X24914Y5893D01* X24845Y5900D01* X24826Y5898D01* Y7100D01* X24894Y7106D01* X24961Y7124D01* X24986Y7135D01* Y5873D01* G37* G36* Y7248D02*X24975Y7240D01* X24927Y7218D01* X24877Y7204D01* X24826Y7200D01* Y7799D01* X24877Y7795D01* X24927Y7781D01* X24975Y7759D01* X24986Y7751D01* Y7248D01* G37* G36* Y7864D02*X24961Y7875D01* X24894Y7893D01* X24826Y7899D01* Y9101D01* X24874Y9106D01* X24941Y9124D01* X24986Y9145D01* Y7864D01* G37* G36* Y9247D02*X24978Y9256D01* X24955Y9240D01* X24907Y9218D01* X24857Y9204D01* X24826Y9201D01* Y9798D01* X24857Y9795D01* X24907Y9781D01* X24955Y9759D01* X24978Y9743D01* X24986Y9752D01* Y9247D01* G37* G36* Y9854D02*X24941Y9875D01* X24874Y9893D01* X24826Y9898D01* Y11103D01* X24854Y11106D01* X24921Y11124D01* X24985Y11153D01* X24986Y11154D01* Y9854D01* G37* G36* Y11227D02*X24958Y11256D01* X24935Y11240D01* X24887Y11218D01* X24837Y11204D01* X24826Y11203D01* Y11796D01* X24837Y11795D01* X24887Y11781D01* X24935Y11759D01* X24958Y11743D01* X24986Y11772D01* Y11227D01* G37* G36* Y11845D02*X24985Y11846D01* X24921Y11875D01* X24854Y11893D01* X24826Y11896D01* Y13105D01* X24834Y13106D01* X24901Y13124D01* X24965Y13153D01* X24986Y13169D01* Y11845D01* G37* G36* Y13207D02*X24938Y13256D01* X24915Y13240D01* X24867Y13218D01* X24826Y13207D01* Y13792D01* X24867Y13781D01* X24915Y13759D01* X24938Y13743D01* X24986Y13792D01* Y13207D01* G37* G36* Y13831D02*X24965Y13846D01* X24901Y13875D01* X24834Y13893D01* X24826Y13894D01* Y15109D01* X24881Y15124D01* X24945Y15153D01* X24986Y15183D01* Y13831D01* G37* G36* Y15187D02*X24918Y15256D01* X24895Y15240D01* X24847Y15218D01* X24826Y15212D01* Y15787D01* X24847Y15781D01* X24895Y15759D01* X24918Y15743D01* X24986Y15812D01* Y15187D01* G37* G36* Y40000D02*X25066D01* Y21614D01* X25060Y21636D01* X25031Y21700D01* X25000Y21744D01* X24986Y21731D01* Y23265D01* X25011Y23300D01* X25040Y23363D01* X25058Y23430D01* X25065Y23500D01* X25058Y23569D01* X25040Y23636D01* X25011Y23700D01* X24986Y23734D01* Y25293D01* X24991Y25300D01* X25020Y25363D01* X25038Y25430D01* X25045Y25500D01* X25038Y25569D01* X25020Y25636D01* X24991Y25700D01* X24986Y25706D01* Y27333D01* X25000Y27363D01* X25018Y27430D01* X25025Y27500D01* X25018Y27569D01* X25000Y27636D01* X24986Y27666D01* Y29385D01* X24998Y29430D01* X25005Y29500D01* X24998Y29569D01* X24986Y29614D01* Y40000D01* G37* G36* X25066Y0D02*X24986D01* Y1114D01* X25021Y1124D01* X25066Y1145D01* Y0D01* G37* G36* Y1247D02*X25058Y1256D01* X25035Y1240D01* X24987Y1218D01* X24986Y1217D01* Y1782D01* X24987Y1781D01* X25035Y1759D01* X25058Y1743D01* X25066Y1752D01* Y1247D01* G37* G36* Y1854D02*X25021Y1875D01* X24986Y1885D01* Y3120D01* X25001Y3124D01* X25065Y3153D01* X25066Y3154D01* Y1854D01* G37* G36* Y3227D02*X25038Y3256D01* X25015Y3240D01* X24986Y3227D01* Y3772D01* X25015Y3759D01* X25038Y3743D01* X25066Y3772D01* Y3227D01* G37* G36* Y3845D02*X25065Y3846D01* X25001Y3875D01* X24986Y3879D01* Y5126D01* X25045Y5153D01* X25066Y5169D01* Y3845D01* G37* G36* Y5207D02*X25018Y5256D01* X24995Y5240D01* X24986Y5236D01* Y5763D01* X24995Y5759D01* X25018Y5743D01* X25066Y5792D01* Y5207D01* G37* G36* Y5831D02*X25045Y5846D01* X24986Y5873D01* Y7135D01* X25025Y7153D01* X25066Y7183D01* Y5831D01* G37* G36* Y7187D02*X24998Y7256D01* X24986Y7248D01* Y7751D01* X24998Y7743D01* X25066Y7812D01* Y7187D01* G37* G36* Y7817D02*X25025Y7846D01* X24986Y7864D01* Y9145D01* X25005Y9153D01* X25049Y9184D01* X24986Y9247D01* Y9752D01* X25049Y9815D01* X25005Y9846D01* X24986Y9854D01* Y11154D01* X25029Y11184D01* X24986Y11227D01* Y11772D01* X25029Y11815D01* X24986Y11845D01* Y13169D01* X25009Y13184D01* X24986Y13207D01* Y13792D01* X25009Y13815D01* X24986Y13831D01* Y15183D01* X24989Y15184D01* X24986Y15187D01* Y15812D01* X24989Y15815D01* X24986Y15817D01* Y17308D01* X25040Y17255D01* X25066Y17293D01* Y15734D01* X25060Y15744D01* X24988Y15673D01* X25004Y15650D01* X25026Y15602D01* X25040Y15552D01* X25045Y15500D01* X25040Y15447D01* X25026Y15397D01* X25004Y15350D01* X24988Y15327D01* X25060Y15255D01* X25066Y15265D01* Y13731D01* X25008Y13673D01* X25024Y13650D01* X25046Y13602D01* X25060Y13552D01* X25065Y13500D01* X25060Y13447D01* X25046Y13397D01* X25024Y13350D01* X25008Y13327D01* X25066Y13268D01* Y11711D01* X25028Y11673D01* X25044Y11650D01* X25066Y11602D01* Y11397D01* X25044Y11350D01* X25028Y11327D01* X25066Y11288D01* Y9691D01* X25048Y9673D01* X25064Y9650D01* X25066Y9645D01* Y9354D01* X25064Y9350D01* X25048Y9327D01* X25066Y9308D01* Y7817D01* G37* G36* Y17706D02*X25040Y17744D01* X24986Y17691D01* Y19288D01* X25020Y19255D01* X25051Y19300D01* X25066Y19333D01* Y17706D01* G37* G36* Y19666D02*X25051Y19700D01* X25020Y19744D01* X24986Y19711D01* Y21268D01* X25000Y21255D01* X25031Y21300D01* X25060Y21363D01* X25066Y21385D01* Y19666D01* G37* G36* Y40000D02*X25146D01* Y13614D01* X25140Y13636D01* X25111Y13700D01* X25080Y13744D01* X25066Y13731D01* Y15265D01* X25091Y15300D01* X25120Y15363D01* X25138Y15430D01* X25145Y15500D01* X25138Y15569D01* X25120Y15636D01* X25091Y15700D01* X25066Y15734D01* Y17293D01* X25071Y17300D01* X25100Y17363D01* X25118Y17430D01* X25125Y17500D01* X25118Y17569D01* X25100Y17636D01* X25071Y17700D01* X25066Y17706D01* Y19333D01* X25080Y19363D01* X25098Y19430D01* X25105Y19500D01* X25098Y19569D01* X25080Y19636D01* X25066Y19666D01* Y21385D01* X25078Y21430D01* X25085Y21500D01* X25078Y21569D01* X25066Y21614D01* Y40000D01* G37* G36* X25146Y0D02*X25066D01* Y1145D01* X25085Y1153D01* X25129Y1184D01* X25066Y1247D01* Y1752D01* X25129Y1815D01* X25085Y1846D01* X25066Y1854D01* Y3154D01* X25109Y3184D01* X25066Y3227D01* Y3772D01* X25109Y3815D01* X25066Y3845D01* Y5169D01* X25089Y5184D01* X25066Y5207D01* Y5792D01* X25089Y5815D01* X25066Y5831D01* Y7183D01* X25069Y7184D01* X25066Y7187D01* Y7812D01* X25069Y7815D01* X25066Y7817D01* Y9308D01* X25120Y9255D01* X25146Y9293D01* Y7734D01* X25140Y7744D01* X25068Y7673D01* X25084Y7650D01* X25106Y7602D01* X25120Y7552D01* X25125Y7500D01* X25120Y7447D01* X25106Y7397D01* X25084Y7350D01* X25068Y7327D01* X25140Y7255D01* X25146Y7265D01* Y5731D01* X25088Y5673D01* X25104Y5650D01* X25126Y5602D01* X25140Y5552D01* X25145Y5500D01* X25140Y5447D01* X25126Y5397D01* X25104Y5350D01* X25088Y5327D01* X25146Y5268D01* Y3711D01* X25108Y3673D01* X25124Y3650D01* X25146Y3602D01* Y3397D01* X25124Y3350D01* X25108Y3327D01* X25146Y3288D01* Y1691D01* X25128Y1673D01* X25144Y1650D01* X25146Y1645D01* Y1354D01* X25144Y1350D01* X25128Y1327D01* X25146Y1308D01* Y0D01* G37* G36* Y9706D02*X25120Y9744D01* X25066Y9691D01* Y11288D01* X25100Y11255D01* X25131Y11300D01* X25146Y11333D01* Y9706D01* G37* G36* Y11666D02*X25131Y11700D01* X25100Y11744D01* X25066Y11711D01* Y13268D01* X25080Y13255D01* X25111Y13300D01* X25140Y13363D01* X25146Y13385D01* Y11666D01* G37* G36* Y40000D02*X26183D01* Y39735D01* X26158Y39700D01* X26129Y39636D01* X26111Y39569D01* X26105Y39500D01* X26111Y39430D01* X26129Y39363D01* X26158Y39300D01* X26183Y39264D01* Y37706D01* X26178Y37700D01* X26149Y37636D01* X26131Y37569D01* X26125Y37500D01* X26131Y37430D01* X26149Y37363D01* X26178Y37300D01* X26183Y37293D01* Y35667D01* X26169Y35636D01* X26151Y35569D01* X26145Y35500D01* X26151Y35430D01* X26169Y35363D01* X26183Y35333D01* Y33614D01* X26171Y33569D01* X26165Y33500D01* X26171Y33430D01* X26183Y33385D01* Y0D01* X25146D01* Y1308D01* X25200Y1255D01* X25231Y1300D01* X25260Y1363D01* X25278Y1430D01* X25285Y1500D01* X25278Y1569D01* X25260Y1636D01* X25231Y1700D01* X25200Y1744D01* X25146Y1691D01* Y3288D01* X25180Y3255D01* X25211Y3300D01* X25240Y3363D01* X25258Y3430D01* X25265Y3500D01* X25258Y3569D01* X25240Y3636D01* X25211Y3700D01* X25180Y3744D01* X25146Y3711D01* Y5268D01* X25160Y5255D01* X25191Y5300D01* X25220Y5363D01* X25238Y5430D01* X25245Y5500D01* X25238Y5569D01* X25220Y5636D01* X25191Y5700D01* X25160Y5744D01* X25146Y5731D01* Y7265D01* X25171Y7300D01* X25200Y7363D01* X25218Y7430D01* X25225Y7500D01* X25218Y7569D01* X25200Y7636D01* X25171Y7700D01* X25146Y7734D01* Y9293D01* X25151Y9300D01* X25180Y9363D01* X25198Y9430D01* X25205Y9500D01* X25198Y9569D01* X25180Y9636D01* X25151Y9700D01* X25146Y9706D01* Y11333D01* X25160Y11363D01* X25178Y11430D01* X25185Y11500D01* X25178Y11569D01* X25160Y11636D01* X25146Y11666D01* Y13385D01* X25158Y13430D01* X25165Y13500D01* X25158Y13569D01* X25146Y13614D01* Y40000D01* G37* G36* Y3602D02*X25160Y3552D01* X25165Y3500D01* X25160Y3447D01* X25146Y3397D01* Y3602D01* G37* G36* Y1645D02*X25166Y1602D01* X25180Y1552D01* X25185Y1500D01* X25180Y1447D01* X25166Y1397D01* X25146Y1354D01* Y1645D01* G37* G36* X25066Y11602D02*X25080Y11552D01* X25085Y11500D01* X25080Y11447D01* X25066Y11397D01* Y11602D01* G37* G36* Y9645D02*X25086Y9602D01* X25100Y9552D01* X25105Y9500D01* X25100Y9447D01* X25086Y9397D01* X25066Y9354D01* Y9645D01* G37* G36* X24986Y19602D02*X25000Y19552D01* X25005Y19500D01* X25000Y19447D01* X24986Y19397D01* Y19602D01* G37* G36* Y17645D02*X25006Y17602D01* X25020Y17552D01* X25025Y17500D01* X25020Y17447D01* X25006Y17397D01* X24986Y17354D01* Y17645D01* G37* G36* X26183Y40000D02*X26283D01* Y39831D01* X26260Y39815D01* X26283Y39792D01* Y39207D01* X26260Y39184D01* X26283Y39168D01* Y37817D01* X26280Y37815D01* X26283Y37812D01* Y37187D01* X26280Y37184D01* X26283Y37182D01* Y35691D01* X26229Y35744D01* X26198Y35700D01* X26183Y35667D01* Y37293D01* X26209Y37255D01* X26281Y37327D01* X26265Y37350D01* X26243Y37397D01* X26229Y37447D01* X26225Y37500D01* X26229Y37552D01* X26243Y37602D01* X26265Y37650D01* X26281Y37673D01* X26209Y37744D01* X26183Y37706D01* Y39264D01* X26189Y39255D01* X26261Y39327D01* X26245Y39350D01* X26223Y39397D01* X26209Y39447D01* X26205Y39500D01* X26209Y39552D01* X26223Y39602D01* X26245Y39650D01* X26261Y39673D01* X26189Y39744D01* X26183Y39735D01* Y40000D01* G37* G36* X26283Y25667D02*X26269Y25636D01* X26251Y25569D01* X26245Y25500D01* X26251Y25430D01* X26269Y25363D01* X26283Y25333D01* Y23614D01* X26271Y23569D01* X26265Y23500D01* X26271Y23430D01* X26283Y23385D01* Y0D01* X26183D01* Y33385D01* X26189Y33363D01* X26218Y33300D01* X26249Y33255D01* X26283Y33288D01* Y31731D01* X26269Y31744D01* X26238Y31700D01* X26209Y31636D01* X26191Y31569D01* X26185Y31500D01* X26191Y31430D01* X26209Y31363D01* X26238Y31300D01* X26269Y31255D01* X26283Y31268D01* Y29735D01* X26258Y29700D01* X26229Y29636D01* X26211Y29569D01* X26205Y29500D01* X26211Y29430D01* X26229Y29363D01* X26258Y29300D01* X26283Y29264D01* Y27706D01* X26278Y27700D01* X26249Y27636D01* X26231Y27569D01* X26225Y27500D01* X26231Y27430D01* X26249Y27363D01* X26278Y27300D01* X26283Y27293D01* Y25667D01* G37* G36* Y33397D02*X26283Y33397D01* X26269Y33447D01* X26265Y33500D01* X26269Y33552D01* X26283Y33602D01* X26283Y33602D01* Y33397D01* G37* G36* Y33711D02*X26249Y33744D01* X26218Y33700D01* X26189Y33636D01* X26183Y33614D01* Y35333D01* X26198Y35300D01* X26229Y35255D01* X26283Y35308D01* Y33711D01* G37* G36* Y35354D02*X26263Y35397D01* X26249Y35447D01* X26245Y35500D01* X26249Y35552D01* X26263Y35602D01* X26283Y35645D01* Y35354D01* G37* G36* Y40000D02*X26383D01* Y39879D01* X26368Y39875D01* X26305Y39846D01* X26283Y39831D01* Y40000D01* G37* G36* Y39792D02*X26332Y39743D01* X26355Y39759D01* X26383Y39772D01* Y39227D01* X26355Y39240D01* X26332Y39256D01* X26283Y39207D01* Y39792D01* G37* G36* Y39168D02*X26305Y39153D01* X26368Y39124D01* X26383Y39120D01* Y37873D01* X26325Y37846D01* X26283Y37817D01* Y39168D01* G37* G36* Y37812D02*X26352Y37743D01* X26375Y37759D01* X26383Y37763D01* Y37236D01* X26375Y37240D01* X26352Y37256D01* X26283Y37187D01* Y37812D01* G37* G36* Y37182D02*X26325Y37153D01* X26383Y37126D01* Y35864D01* X26345Y35846D01* X26300Y35815D01* X26372Y35743D01* X26383Y35751D01* Y35248D01* X26372Y35256D01* X26300Y35184D01* X26345Y35153D01* X26383Y35135D01* Y33854D01* X26365Y33846D01* X26320Y33815D01* X26383Y33752D01* Y33247D01* X26320Y33184D01* X26365Y33153D01* X26383Y33145D01* Y31845D01* X26340Y31815D01* X26383Y31772D01* Y31227D01* X26340Y31184D01* X26383Y31154D01* Y29831D01* X26360Y29815D01* X26383Y29792D01* Y29207D01* X26360Y29184D01* X26383Y29168D01* Y27817D01* X26380Y27815D01* X26383Y27812D01* Y27187D01* X26380Y27184D01* X26383Y27182D01* Y25691D01* X26329Y25744D01* X26298Y25700D01* X26283Y25667D01* Y27293D01* X26309Y27255D01* X26381Y27327D01* X26365Y27350D01* X26343Y27397D01* X26329Y27447D01* X26325Y27500D01* X26329Y27552D01* X26343Y27602D01* X26365Y27650D01* X26381Y27673D01* X26309Y27744D01* X26283Y27706D01* Y29264D01* X26289Y29255D01* X26361Y29327D01* X26345Y29350D01* X26323Y29397D01* X26309Y29447D01* X26305Y29500D01* X26309Y29552D01* X26323Y29602D01* X26345Y29650D01* X26361Y29673D01* X26289Y29744D01* X26283Y29735D01* Y31268D01* X26341Y31327D01* X26325Y31350D01* X26303Y31397D01* X26289Y31447D01* X26285Y31500D01* X26289Y31552D01* X26303Y31602D01* X26325Y31650D01* X26341Y31673D01* X26283Y31731D01* Y33288D01* X26321Y33327D01* X26305Y33350D01* X26283Y33397D01* Y33602D01* X26305Y33650D01* X26321Y33673D01* X26283Y33711D01* Y35308D01* X26301Y35327D01* X26285Y35350D01* X26283Y35354D01* Y35645D01* X26285Y35650D01* X26301Y35673D01* X26283Y35691D01* Y37182D01* G37* G36* Y25333D02*X26298Y25300D01* X26329Y25255D01* X26383Y25308D01* Y23711D01* X26349Y23744D01* X26318Y23700D01* X26289Y23636D01* X26283Y23614D01* Y25333D01* G37* G36* Y23385D02*X26289Y23363D01* X26318Y23300D01* X26349Y23255D01* X26383Y23288D01* Y21731D01* X26369Y21744D01* X26338Y21700D01* X26309Y21636D01* X26291Y21569D01* X26285Y21500D01* X26291Y21430D01* X26309Y21363D01* X26338Y21300D01* X26369Y21255D01* X26383Y21268D01* Y19735D01* X26358Y19700D01* X26329Y19636D01* X26311Y19569D01* X26305Y19500D01* X26311Y19430D01* X26329Y19363D01* X26358Y19300D01* X26383Y19264D01* Y17706D01* X26378Y17700D01* X26349Y17636D01* X26331Y17569D01* X26325Y17500D01* X26331Y17430D01* X26349Y17363D01* X26378Y17300D01* X26383Y17293D01* Y15667D01* X26369Y15636D01* X26351Y15569D01* X26345Y15500D01* X26351Y15430D01* X26369Y15363D01* X26383Y15333D01* Y13614D01* X26371Y13569D01* X26365Y13500D01* X26371Y13430D01* X26383Y13385D01* Y0D01* X26283D01* Y23385D01* G37* G36* X26383Y25354D02*X26363Y25397D01* X26349Y25447D01* X26345Y25500D01* X26349Y25552D01* X26363Y25602D01* X26383Y25645D01* Y25354D01* G37* G36* Y23397D02*X26383Y23397D01* X26369Y23447D01* X26365Y23500D01* X26369Y23552D01* X26383Y23602D01* X26383Y23602D01* Y23397D01* G37* G36* Y40000D02*X26505D01* Y39900D01* X26435Y39893D01* X26383Y39879D01* Y40000D01* G37* G36* Y39772D02*X26402Y39781D01* X26452Y39795D01* X26505Y39800D01* Y39200D01* X26452Y39204D01* X26402Y39218D01* X26383Y39227D01* Y39772D01* G37* G36* Y39120D02*X26435Y39106D01* X26505Y39100D01* Y37898D01* X26455Y37893D01* X26388Y37875D01* X26383Y37873D01* Y39120D01* G37* G36* Y37763D02*X26422Y37781D01* X26472Y37795D01* X26505Y37798D01* Y37201D01* X26472Y37204D01* X26422Y37218D01* X26383Y37236D01* Y37763D01* G37* G36* Y37126D02*X26388Y37124D01* X26455Y37106D01* X26505Y37101D01* Y35896D01* X26475Y35893D01* X26408Y35875D01* X26383Y35864D01* Y37126D01* G37* G36* Y35751D02*X26395Y35759D01* X26442Y35781D01* X26492Y35795D01* X26505Y35796D01* Y35203D01* X26492Y35204D01* X26442Y35218D01* X26395Y35240D01* X26383Y35248D01* Y35751D01* G37* G36* Y35135D02*X26408Y35124D01* X26475Y35106D01* X26505Y35103D01* Y33894D01* X26495Y33893D01* X26428Y33875D01* X26383Y33854D01* Y35135D01* G37* G36* Y33752D02*X26392Y33743D01* X26415Y33759D01* X26462Y33781D01* X26505Y33793D01* Y33206D01* X26462Y33218D01* X26415Y33240D01* X26392Y33256D01* X26383Y33247D01* Y33752D01* G37* G36* Y33145D02*X26428Y33124D01* X26495Y33106D01* X26505Y33105D01* Y31891D01* X26448Y31875D01* X26385Y31846D01* X26383Y31845D01* Y33145D01* G37* G36* Y31772D02*X26412Y31743D01* X26435Y31759D01* X26482Y31781D01* X26505Y31787D01* Y31212D01* X26482Y31218D01* X26435Y31240D01* X26412Y31256D01* X26383Y31227D01* Y31772D01* G37* G36* Y31154D02*X26385Y31153D01* X26448Y31124D01* X26505Y31108D01* Y29885D01* X26468Y29875D01* X26405Y29846D01* X26383Y29831D01* Y31154D01* G37* G36* Y29792D02*X26432Y29743D01* X26455Y29759D01* X26502Y29781D01* X26505Y29782D01* Y29217D01* X26502Y29218D01* X26455Y29240D01* X26432Y29256D01* X26383Y29207D01* Y29792D01* G37* G36* Y29168D02*X26405Y29153D01* X26468Y29124D01* X26505Y29114D01* Y27880D01* X26488Y27875D01* X26425Y27846D01* X26383Y27817D01* Y29168D01* G37* G36* Y27812D02*X26452Y27743D01* X26475Y27759D01* X26505Y27773D01* Y27226D01* X26475Y27240D01* X26452Y27256D01* X26383Y27187D01* Y27812D01* G37* G36* Y27182D02*X26425Y27153D01* X26488Y27124D01* X26505Y27119D01* Y25874D01* X26445Y25846D01* X26400Y25815D01* X26472Y25743D01* X26495Y25759D01* X26505Y25764D01* Y25235D01* X26495Y25240D01* X26472Y25256D01* X26400Y25184D01* X26445Y25153D01* X26505Y25125D01* Y23865D01* X26465Y23846D01* X26420Y23815D01* X26492Y23743D01* X26505Y23752D01* Y23247D01* X26492Y23256D01* X26420Y23184D01* X26465Y23153D01* X26505Y23134D01* Y21855D01* X26485Y21846D01* X26440Y21815D01* X26505Y21750D01* Y21249D01* X26440Y21184D01* X26485Y21153D01* X26505Y21144D01* Y19846D01* X26460Y19815D01* X26505Y19770D01* Y19229D01* X26460Y19184D01* X26505Y19153D01* Y17832D01* X26480Y17815D01* X26505Y17790D01* Y17209D01* X26480Y17184D01* X26505Y17167D01* Y15818D01* X26500Y15815D01* X26505Y15810D01* Y15189D01* X26500Y15184D01* X26505Y15181D01* Y13689D01* X26449Y13744D01* X26418Y13700D01* X26389Y13636D01* X26383Y13614D01* Y15333D01* X26398Y15300D01* X26429Y15255D01* X26501Y15327D01* X26485Y15350D01* X26463Y15397D01* X26449Y15447D01* X26445Y15500D01* X26449Y15552D01* X26463Y15602D01* X26485Y15650D01* X26501Y15673D01* X26429Y15744D01* X26398Y15700D01* X26383Y15667D01* Y17293D01* X26409Y17255D01* X26481Y17327D01* X26465Y17350D01* X26443Y17397D01* X26429Y17447D01* X26425Y17500D01* X26429Y17552D01* X26443Y17602D01* X26465Y17650D01* X26481Y17673D01* X26409Y17744D01* X26383Y17706D01* Y19264D01* X26389Y19255D01* X26461Y19327D01* X26445Y19350D01* X26423Y19397D01* X26409Y19447D01* X26405Y19500D01* X26409Y19552D01* X26423Y19602D01* X26445Y19650D01* X26461Y19673D01* X26389Y19744D01* X26383Y19735D01* Y21268D01* X26441Y21327D01* X26425Y21350D01* X26403Y21397D01* X26389Y21447D01* X26385Y21500D01* X26389Y21552D01* X26403Y21602D01* X26425Y21650D01* X26441Y21673D01* X26383Y21731D01* Y23288D01* X26421Y23327D01* X26405Y23350D01* X26383Y23397D01* Y23602D01* X26405Y23650D01* X26421Y23673D01* X26383Y23711D01* Y25308D01* X26401Y25327D01* X26385Y25350D01* X26383Y25354D01* Y25645D01* X26385Y25650D01* X26401Y25673D01* X26383Y25691D01* Y27182D01* G37* G36* Y13385D02*X26389Y13363D01* X26418Y13300D01* X26449Y13255D01* X26505Y13310D01* Y11709D01* X26469Y11744D01* X26438Y11700D01* X26409Y11636D01* X26391Y11569D01* X26385Y11500D01* X26391Y11430D01* X26409Y11363D01* X26438Y11300D01* X26469Y11255D01* X26505Y11290D01* Y9729D01* X26489Y9744D01* X26458Y9700D01* X26429Y9636D01* X26411Y9569D01* X26405Y9500D01* X26411Y9430D01* X26429Y9363D01* X26458Y9300D01* X26489Y9255D01* X26505Y9270D01* Y7737D01* X26478Y7700D01* X26449Y7636D01* X26431Y7569D01* X26425Y7500D01* X26431Y7430D01* X26449Y7363D01* X26478Y7300D01* X26505Y7262D01* Y5709D01* X26498Y5700D01* X26469Y5636D01* X26451Y5569D01* X26445Y5500D01* X26451Y5430D01* X26469Y5363D01* X26498Y5300D01* X26505Y5290D01* Y3670D01* X26489Y3636D01* X26471Y3569D01* X26465Y3500D01* X26471Y3430D01* X26489Y3363D01* X26505Y3329D01* Y1621D01* X26491Y1569D01* X26485Y1500D01* X26491Y1430D01* X26505Y1378D01* Y0D01* X26383D01* Y13385D01* G37* G36* X26505Y13350D02*X26483Y13397D01* X26469Y13447D01* X26465Y13500D01* X26469Y13552D01* X26483Y13602D01* X26505Y13649D01* Y13350D01* G37* G36* Y11393D02*X26503Y11397D01* X26489Y11447D01* X26485Y11500D01* X26489Y11552D01* X26503Y11602D01* X26505Y11606D01* Y11393D01* G37* G36* Y40000D02*X26826D01* Y39734D01* X26820Y39744D01* X26748Y39673D01* X26764Y39650D01* X26786Y39602D01* X26800Y39552D01* X26805Y39500D01* X26800Y39447D01* X26786Y39397D01* X26764Y39350D01* X26748Y39327D01* X26820Y39255D01* X26826Y39265D01* Y37731D01* X26768Y37673D01* X26784Y37650D01* X26806Y37602D01* X26820Y37552D01* X26825Y37500D01* X26820Y37447D01* X26806Y37397D01* X26784Y37350D01* X26768Y37327D01* X26826Y37268D01* Y35711D01* X26788Y35673D01* X26804Y35650D01* X26826Y35602D01* Y35397D01* X26804Y35350D01* X26788Y35327D01* X26826Y35288D01* Y33691D01* X26808Y33673D01* X26824Y33650D01* X26826Y33645D01* Y33354D01* X26824Y33350D01* X26808Y33327D01* X26826Y33308D01* Y31817D01* X26785Y31846D01* X26721Y31875D01* X26654Y31893D01* X26585Y31900D01* X26515Y31893D01* X26505Y31891D01* Y33105D01* X26565Y33100D01* X26634Y33106D01* X26701Y33124D01* X26765Y33153D01* X26809Y33184D01* X26738Y33256D01* X26715Y33240D01* X26667Y33218D01* X26617Y33204D01* X26565Y33200D01* X26512Y33204D01* X26505Y33206D01* Y33793D01* X26512Y33795D01* X26565Y33800D01* X26617Y33795D01* X26667Y33781D01* X26715Y33759D01* X26738Y33743D01* X26809Y33815D01* X26765Y33846D01* X26701Y33875D01* X26634Y33893D01* X26565Y33900D01* X26505Y33894D01* Y35103D01* X26545Y35100D01* X26614Y35106D01* X26681Y35124D01* X26745Y35153D01* X26789Y35184D01* X26718Y35256D01* X26695Y35240D01* X26647Y35218D01* X26597Y35204D01* X26545Y35200D01* X26505Y35203D01* Y35796D01* X26545Y35800D01* X26597Y35795D01* X26647Y35781D01* X26695Y35759D01* X26718Y35743D01* X26789Y35815D01* X26745Y35846D01* X26681Y35875D01* X26614Y35893D01* X26545Y35900D01* X26505Y35896D01* Y37101D01* X26525Y37100D01* X26594Y37106D01* X26661Y37124D01* X26725Y37153D01* X26769Y37184D01* X26698Y37256D01* X26675Y37240D01* X26627Y37218D01* X26577Y37204D01* X26525Y37200D01* X26505Y37201D01* Y37798D01* X26525Y37800D01* X26577Y37795D01* X26627Y37781D01* X26675Y37759D01* X26698Y37743D01* X26769Y37815D01* X26725Y37846D01* X26661Y37875D01* X26594Y37893D01* X26525Y37900D01* X26505Y37898D01* Y39100D01* X26574Y39106D01* X26641Y39124D01* X26705Y39153D01* X26749Y39184D01* X26678Y39256D01* X26655Y39240D01* X26607Y39218D01* X26557Y39204D01* X26505Y39200D01* Y39800D01* X26557Y39795D01* X26607Y39781D01* X26655Y39759D01* X26678Y39743D01* X26749Y39815D01* X26705Y39846D01* X26641Y39875D01* X26574Y39893D01* X26505Y39900D01* Y40000D01* G37* G36* Y31787D02*X26532Y31795D01* X26585Y31800D01* X26637Y31795D01* X26687Y31781D01* X26735Y31759D01* X26758Y31743D01* X26826Y31812D01* Y31187D01* X26758Y31256D01* X26735Y31240D01* X26687Y31218D01* X26637Y31204D01* X26585Y31200D01* X26532Y31204D01* X26505Y31212D01* Y31787D01* G37* G36* Y31108D02*X26515Y31106D01* X26585Y31100D01* X26654Y31106D01* X26721Y31124D01* X26785Y31153D01* X26826Y31183D01* Y29831D01* X26805Y29846D01* X26741Y29875D01* X26674Y29893D01* X26605Y29900D01* X26535Y29893D01* X26505Y29885D01* Y31108D01* G37* G36* Y29782D02*X26552Y29795D01* X26605Y29800D01* X26657Y29795D01* X26707Y29781D01* X26755Y29759D01* X26778Y29743D01* X26826Y29792D01* Y29207D01* X26778Y29256D01* X26755Y29240D01* X26707Y29218D01* X26657Y29204D01* X26605Y29200D01* X26552Y29204D01* X26505Y29217D01* Y29782D01* G37* G36* Y29114D02*X26535Y29106D01* X26605Y29100D01* X26674Y29106D01* X26741Y29124D01* X26805Y29153D01* X26826Y29169D01* Y27845D01* X26825Y27846D01* X26761Y27875D01* X26694Y27893D01* X26625Y27900D01* X26555Y27893D01* X26505Y27880D01* Y29114D01* G37* G36* Y27773D02*X26522Y27781D01* X26572Y27795D01* X26625Y27800D01* X26677Y27795D01* X26727Y27781D01* X26775Y27759D01* X26798Y27743D01* X26826Y27772D01* Y27227D01* X26798Y27256D01* X26775Y27240D01* X26727Y27218D01* X26677Y27204D01* X26625Y27200D01* X26572Y27204D01* X26522Y27218D01* X26505Y27226D01* Y27773D01* G37* G36* Y27119D02*X26555Y27106D01* X26625Y27100D01* X26694Y27106D01* X26761Y27124D01* X26825Y27153D01* X26826Y27154D01* Y25854D01* X26781Y25875D01* X26714Y25893D01* X26645Y25900D01* X26575Y25893D01* X26508Y25875D01* X26505Y25874D01* Y27119D01* G37* G36* Y25764D02*X26542Y25781D01* X26592Y25795D01* X26645Y25800D01* X26697Y25795D01* X26747Y25781D01* X26795Y25759D01* X26818Y25743D01* X26826Y25752D01* Y25247D01* X26818Y25256D01* X26795Y25240D01* X26747Y25218D01* X26697Y25204D01* X26645Y25200D01* X26592Y25204D01* X26542Y25218D01* X26505Y25235D01* Y25764D01* G37* G36* Y25125D02*X26508Y25124D01* X26575Y25106D01* X26645Y25100D01* X26714Y25106D01* X26781Y25124D01* X26826Y25145D01* Y23864D01* X26801Y23875D01* X26734Y23893D01* X26665Y23900D01* X26595Y23893D01* X26528Y23875D01* X26505Y23865D01* Y25125D01* G37* G36* Y23752D02*X26515Y23759D01* X26562Y23781D01* X26612Y23795D01* X26665Y23800D01* X26717Y23795D01* X26767Y23781D01* X26815Y23759D01* X26826Y23751D01* Y23248D01* X26815Y23240D01* X26767Y23218D01* X26717Y23204D01* X26665Y23200D01* X26612Y23204D01* X26562Y23218D01* X26515Y23240D01* X26505Y23247D01* Y23752D01* G37* G36* Y23134D02*X26528Y23124D01* X26595Y23106D01* X26665Y23100D01* X26734Y23106D01* X26801Y23124D01* X26826Y23135D01* Y21873D01* X26821Y21875D01* X26754Y21893D01* X26685Y21900D01* X26615Y21893D01* X26548Y21875D01* X26505Y21855D01* Y23134D01* G37* G36* Y21750D02*X26512Y21743D01* X26535Y21759D01* X26582Y21781D01* X26632Y21795D01* X26685Y21800D01* X26737Y21795D01* X26787Y21781D01* X26826Y21763D01* Y21236D01* X26787Y21218D01* X26737Y21204D01* X26685Y21200D01* X26632Y21204D01* X26582Y21218D01* X26535Y21240D01* X26512Y21256D01* X26505Y21249D01* Y21750D01* G37* G36* Y21144D02*X26548Y21124D01* X26615Y21106D01* X26685Y21100D01* X26754Y21106D01* X26821Y21124D01* X26826Y21126D01* Y19879D01* X26774Y19893D01* X26705Y19900D01* X26635Y19893D01* X26568Y19875D01* X26505Y19846D01* Y21144D01* G37* G36* Y19770D02*X26532Y19743D01* X26555Y19759D01* X26602Y19781D01* X26652Y19795D01* X26705Y19800D01* X26757Y19795D01* X26807Y19781D01* X26826Y19772D01* Y19227D01* X26807Y19218D01* X26757Y19204D01* X26705Y19200D01* X26652Y19204D01* X26602Y19218D01* X26555Y19240D01* X26532Y19256D01* X26505Y19229D01* Y19770D01* G37* G36* Y19153D02*X26568Y19124D01* X26635Y19106D01* X26705Y19100D01* X26774Y19106D01* X26826Y19120D01* Y17885D01* X26794Y17893D01* X26725Y17900D01* X26655Y17893D01* X26588Y17875D01* X26525Y17846D01* X26505Y17832D01* Y19153D01* G37* G36* Y17790D02*X26552Y17743D01* X26575Y17759D01* X26622Y17781D01* X26672Y17795D01* X26725Y17800D01* X26777Y17795D01* X26826Y17782D01* Y17217D01* X26777Y17204D01* X26725Y17200D01* X26672Y17204D01* X26622Y17218D01* X26575Y17240D01* X26552Y17256D01* X26505Y17209D01* Y17790D01* G37* G36* Y17167D02*X26525Y17153D01* X26588Y17124D01* X26655Y17106D01* X26725Y17100D01* X26794Y17106D01* X26826Y17114D01* Y15890D01* X26814Y15893D01* X26745Y15900D01* X26675Y15893D01* X26608Y15875D01* X26545Y15846D01* X26505Y15818D01* Y17167D01* G37* G36* Y15810D02*X26572Y15743D01* X26595Y15759D01* X26642Y15781D01* X26692Y15795D01* X26745Y15800D01* X26797Y15795D01* X26826Y15787D01* Y15212D01* X26797Y15204D01* X26745Y15200D01* X26692Y15204D01* X26642Y15218D01* X26595Y15240D01* X26572Y15256D01* X26505Y15189D01* Y15810D01* G37* G36* Y15181D02*X26545Y15153D01* X26608Y15124D01* X26675Y15106D01* X26745Y15100D01* X26814Y15106D01* X26826Y15109D01* Y13894D01* X26765Y13900D01* X26695Y13893D01* X26628Y13875D01* X26565Y13846D01* X26520Y13815D01* X26592Y13743D01* X26615Y13759D01* X26662Y13781D01* X26712Y13795D01* X26765Y13800D01* X26817Y13795D01* X26826Y13792D01* Y13207D01* X26817Y13204D01* X26765Y13200D01* X26712Y13204D01* X26662Y13218D01* X26615Y13240D01* X26592Y13256D01* X26520Y13184D01* X26565Y13153D01* X26628Y13124D01* X26695Y13106D01* X26765Y13100D01* X26826Y13105D01* Y11896D01* X26785Y11900D01* X26715Y11893D01* X26648Y11875D01* X26585Y11846D01* X26540Y11815D01* X26612Y11743D01* X26635Y11759D01* X26682Y11781D01* X26732Y11795D01* X26785Y11800D01* X26826Y11796D01* Y11203D01* X26785Y11200D01* X26732Y11204D01* X26682Y11218D01* X26635Y11240D01* X26612Y11256D01* X26540Y11184D01* X26585Y11153D01* X26648Y11124D01* X26715Y11106D01* X26785Y11100D01* X26826Y11103D01* Y9898D01* X26805Y9900D01* X26735Y9893D01* X26668Y9875D01* X26605Y9846D01* X26560Y9815D01* X26632Y9743D01* X26655Y9759D01* X26702Y9781D01* X26752Y9795D01* X26805Y9800D01* X26826Y9798D01* Y9201D01* X26805Y9200D01* X26752Y9204D01* X26702Y9218D01* X26655Y9240D01* X26632Y9256D01* X26560Y9184D01* X26605Y9153D01* X26668Y9124D01* X26735Y9106D01* X26805Y9100D01* X26826Y9101D01* Y7899D01* X26825Y7900D01* X26755Y7893D01* X26688Y7875D01* X26625Y7846D01* X26580Y7815D01* X26652Y7743D01* X26675Y7759D01* X26722Y7781D01* X26772Y7795D01* X26825Y7800D01* X26826Y7799D01* Y7200D01* X26825Y7200D01* X26772Y7204D01* X26722Y7218D01* X26675Y7240D01* X26652Y7256D01* X26580Y7184D01* X26625Y7153D01* X26688Y7124D01* X26755Y7106D01* X26825Y7100D01* X26826Y7100D01* Y5898D01* X26775Y5893D01* X26708Y5875D01* X26645Y5846D01* X26600Y5815D01* X26672Y5743D01* X26695Y5759D01* X26742Y5781D01* X26792Y5795D01* X26826Y5798D01* Y5201D01* X26792Y5204D01* X26742Y5218D01* X26695Y5240D01* X26672Y5256D01* X26600Y5184D01* X26645Y5153D01* X26708Y5124D01* X26775Y5106D01* X26826Y5101D01* Y3896D01* X26795Y3893D01* X26728Y3875D01* X26665Y3846D01* X26620Y3815D01* X26692Y3743D01* X26715Y3759D01* X26762Y3781D01* X26812Y3795D01* X26826Y3796D01* Y3203D01* X26812Y3204D01* X26762Y3218D01* X26715Y3240D01* X26692Y3256D01* X26620Y3184D01* X26665Y3153D01* X26728Y3124D01* X26795Y3106D01* X26826Y3103D01* Y1894D01* X26815Y1893D01* X26748Y1875D01* X26685Y1846D01* X26640Y1815D01* X26712Y1743D01* X26735Y1759D01* X26782Y1781D01* X26826Y1793D01* Y1206D01* X26782Y1218D01* X26735Y1240D01* X26712Y1256D01* X26640Y1184D01* X26685Y1153D01* X26748Y1124D01* X26815Y1106D01* X26826Y1105D01* Y0D01* X26505D01* Y1378D01* X26509Y1363D01* X26538Y1300D01* X26569Y1255D01* X26641Y1327D01* X26625Y1350D01* X26603Y1397D01* X26589Y1447D01* X26585Y1500D01* X26589Y1552D01* X26603Y1602D01* X26625Y1650D01* X26641Y1673D01* X26569Y1744D01* X26538Y1700D01* X26509Y1636D01* X26505Y1621D01* Y3329D01* X26518Y3300D01* X26549Y3255D01* X26621Y3327D01* X26605Y3350D01* X26583Y3397D01* X26569Y3447D01* X26565Y3500D01* X26569Y3552D01* X26583Y3602D01* X26605Y3650D01* X26621Y3673D01* X26549Y3744D01* X26518Y3700D01* X26505Y3670D01* Y5290D01* X26529Y5255D01* X26601Y5327D01* X26585Y5350D01* X26563Y5397D01* X26549Y5447D01* X26545Y5500D01* X26549Y5552D01* X26563Y5602D01* X26585Y5650D01* X26601Y5673D01* X26529Y5744D01* X26505Y5709D01* Y7262D01* X26509Y7255D01* X26581Y7327D01* X26565Y7350D01* X26543Y7397D01* X26529Y7447D01* X26525Y7500D01* X26529Y7552D01* X26543Y7602D01* X26565Y7650D01* X26581Y7673D01* X26509Y7744D01* X26505Y7737D01* Y9270D01* X26561Y9327D01* X26545Y9350D01* X26523Y9397D01* X26509Y9447D01* X26505Y9500D01* X26509Y9552D01* X26523Y9602D01* X26545Y9650D01* X26561Y9673D01* X26505Y9729D01* Y11290D01* X26541Y11327D01* X26525Y11350D01* X26505Y11393D01* Y11606D01* X26525Y11650D01* X26541Y11673D01* X26505Y11709D01* Y13310D01* X26521Y13327D01* X26505Y13350D01* X26505Y13350D01* Y13649D01* X26505Y13650D01* X26521Y13673D01* X26505Y13689D01* Y15181D01* G37* G36* X26826Y40000D02*X26926D01* Y35614D01* X26920Y35636D01* X26891Y35700D01* X26860Y35744D01* X26826Y35711D01* Y37268D01* X26840Y37255D01* X26871Y37300D01* X26900Y37363D01* X26918Y37430D01* X26925Y37500D01* X26918Y37569D01* X26900Y37636D01* X26871Y37700D01* X26840Y37744D01* X26826Y37731D01* Y39265D01* X26851Y39300D01* X26880Y39363D01* X26898Y39430D01* X26905Y39500D01* X26898Y39569D01* X26880Y39636D01* X26851Y39700D01* X26826Y39734D01* Y40000D01* G37* G36* X26926Y25711D02*X26888Y25673D01* X26904Y25650D01* X26926Y25602D01* Y25397D01* X26904Y25350D01* X26888Y25327D01* X26926Y25288D01* Y23691D01* X26908Y23673D01* X26924Y23650D01* X26926Y23645D01* Y23354D01* X26924Y23350D01* X26908Y23327D01* X26926Y23308D01* Y21817D01* X26885Y21846D01* X26826Y21873D01* Y23135D01* X26865Y23153D01* X26909Y23184D01* X26838Y23256D01* X26826Y23248D01* Y23751D01* X26838Y23743D01* X26909Y23815D01* X26865Y23846D01* X26826Y23864D01* Y25145D01* X26845Y25153D01* X26889Y25184D01* X26826Y25247D01* Y25752D01* X26889Y25815D01* X26845Y25846D01* X26826Y25854D01* Y27154D01* X26869Y27184D01* X26826Y27227D01* Y27772D01* X26869Y27815D01* X26826Y27845D01* Y29169D01* X26849Y29184D01* X26826Y29207D01* Y29792D01* X26849Y29815D01* X26826Y29831D01* Y31183D01* X26829Y31184D01* X26826Y31187D01* Y31812D01* X26829Y31815D01* X26826Y31817D01* Y33308D01* X26880Y33255D01* X26911Y33300D01* X26926Y33333D01* Y31706D01* X26900Y31744D01* X26828Y31673D01* X26844Y31650D01* X26866Y31602D01* X26880Y31552D01* X26885Y31500D01* X26880Y31447D01* X26866Y31397D01* X26844Y31350D01* X26828Y31327D01* X26900Y31255D01* X26926Y31293D01* Y29734D01* X26920Y29744D01* X26848Y29673D01* X26864Y29650D01* X26886Y29602D01* X26900Y29552D01* X26905Y29500D01* X26900Y29447D01* X26886Y29397D01* X26864Y29350D01* X26848Y29327D01* X26920Y29255D01* X26926Y29265D01* Y27731D01* X26868Y27673D01* X26884Y27650D01* X26906Y27602D01* X26920Y27552D01* X26925Y27500D01* X26920Y27447D01* X26906Y27397D01* X26884Y27350D01* X26868Y27327D01* X26926Y27268D01* Y25711D01* G37* G36* Y11873D02*X26921Y11875D01* X26854Y11893D01* X26826Y11896D01* Y13105D01* X26834Y13106D01* X26901Y13124D01* X26926Y13135D01* Y11873D01* G37* G36* Y13248D02*X26915Y13240D01* X26867Y13218D01* X26826Y13207D01* Y13792D01* X26867Y13781D01* X26915Y13759D01* X26926Y13751D01* Y13248D01* G37* G36* Y13864D02*X26901Y13875D01* X26834Y13893D01* X26826Y13894D01* Y15109D01* X26881Y15124D01* X26926Y15145D01* Y13864D01* G37* G36* Y15247D02*X26918Y15256D01* X26895Y15240D01* X26847Y15218D01* X26826Y15212D01* Y15787D01* X26847Y15781D01* X26895Y15759D01* X26918Y15743D01* X26926Y15752D01* Y15247D01* G37* G36* Y15854D02*X26881Y15875D01* X26826Y15890D01* Y17114D01* X26861Y17124D01* X26925Y17153D01* X26926Y17154D01* Y15854D01* G37* G36* Y17227D02*X26898Y17256D01* X26875Y17240D01* X26827Y17218D01* X26826Y17217D01* Y17782D01* X26827Y17781D01* X26875Y17759D01* X26898Y17743D01* X26926Y17772D01* Y17227D01* G37* G36* Y17845D02*X26925Y17846D01* X26861Y17875D01* X26826Y17885D01* Y19120D01* X26841Y19124D01* X26905Y19153D01* X26926Y19169D01* Y17845D01* G37* G36* Y19207D02*X26878Y19256D01* X26855Y19240D01* X26826Y19227D01* Y19772D01* X26855Y19759D01* X26878Y19743D01* X26926Y19792D01* Y19207D01* G37* G36* Y19831D02*X26905Y19846D01* X26841Y19875D01* X26826Y19879D01* Y21126D01* X26885Y21153D01* X26926Y21183D01* Y19831D01* G37* G36* Y21187D02*X26858Y21256D01* X26835Y21240D01* X26826Y21236D01* Y21763D01* X26835Y21759D01* X26858Y21743D01* X26926Y21812D01* Y21187D01* G37* G36* Y33666D02*X26911Y33700D01* X26880Y33744D01* X26826Y33691D01* Y35288D01* X26860Y35255D01* X26891Y35300D01* X26920Y35363D01* X26926Y35385D01* Y33666D01* G37* G36* Y40000D02*X27026D01* Y25614D01* X27020Y25636D01* X26991Y25700D01* X26960Y25744D01* X26926Y25711D01* Y27268D01* X26940Y27255D01* X26971Y27300D01* X27000Y27363D01* X27018Y27430D01* X27025Y27500D01* X27018Y27569D01* X27000Y27636D01* X26971Y27700D01* X26940Y27744D01* X26926Y27731D01* Y29265D01* X26951Y29300D01* X26980Y29363D01* X26998Y29430D01* X27005Y29500D01* X26998Y29569D01* X26980Y29636D01* X26951Y29700D01* X26926Y29734D01* Y31293D01* X26931Y31300D01* X26960Y31363D01* X26978Y31430D01* X26985Y31500D01* X26978Y31569D01* X26960Y31636D01* X26931Y31700D01* X26926Y31706D01* Y33333D01* X26940Y33363D01* X26958Y33430D01* X26965Y33500D01* X26958Y33569D01* X26940Y33636D01* X26926Y33666D01* Y35385D01* X26938Y35430D01* X26945Y35500D01* X26938Y35569D01* X26926Y35614D01* Y40000D01* G37* G36* Y25602D02*X26940Y25552D01* X26945Y25500D01* X26940Y25447D01* X26926Y25397D01* Y25602D01* G37* G36* Y25288D02*X26960Y25255D01* X26991Y25300D01* X27020Y25363D01* X27026Y25385D01* Y23666D01* X27011Y23700D01* X26980Y23744D01* X26926Y23691D01* Y25288D01* G37* G36* Y23645D02*X26946Y23602D01* X26960Y23552D01* X26965Y23500D01* X26960Y23447D01* X26946Y23397D01* X26926Y23354D01* Y23645D01* G37* G36* Y23308D02*X26980Y23255D01* X27011Y23300D01* X27026Y23333D01* Y21706D01* X27000Y21744D01* X26928Y21673D01* X26944Y21650D01* X26966Y21602D01* X26980Y21552D01* X26985Y21500D01* X26980Y21447D01* X26966Y21397D01* X26944Y21350D01* X26928Y21327D01* X27000Y21255D01* X27026Y21293D01* Y19734D01* X27020Y19744D01* X26948Y19673D01* X26964Y19650D01* X26986Y19602D01* X27000Y19552D01* X27005Y19500D01* X27000Y19447D01* X26986Y19397D01* X26964Y19350D01* X26948Y19327D01* X27020Y19255D01* X27026Y19265D01* Y17731D01* X26968Y17673D01* X26984Y17650D01* X27006Y17602D01* X27020Y17552D01* X27025Y17500D01* X27020Y17447D01* X27006Y17397D01* X26984Y17350D01* X26968Y17327D01* X27026Y17268D01* Y15711D01* X26988Y15673D01* X27004Y15650D01* X27026Y15602D01* Y15397D01* X27004Y15350D01* X26988Y15327D01* X27026Y15288D01* Y13691D01* X27008Y13673D01* X27024Y13650D01* X27026Y13645D01* Y13354D01* X27024Y13350D01* X27008Y13327D01* X27026Y13308D01* Y11817D01* X26985Y11846D01* X26926Y11873D01* Y13135D01* X26965Y13153D01* X27009Y13184D01* X26938Y13256D01* X26926Y13248D01* Y13751D01* X26938Y13743D01* X27009Y13815D01* X26965Y13846D01* X26926Y13864D01* Y15145D01* X26945Y15153D01* X26989Y15184D01* X26926Y15247D01* Y15752D01* X26989Y15815D01* X26945Y15846D01* X26926Y15854D01* Y17154D01* X26969Y17184D01* X26926Y17227D01* Y17772D01* X26969Y17815D01* X26926Y17845D01* Y19169D01* X26949Y19184D01* X26926Y19207D01* Y19792D01* X26949Y19815D01* X26926Y19831D01* Y21183D01* X26929Y21184D01* X26926Y21187D01* Y21812D01* X26929Y21815D01* X26926Y21817D01* Y23308D01* G37* G36* X27026Y0D02*X26826D01* Y1105D01* X26885Y1100D01* X26954Y1106D01* X27021Y1124D01* X27026Y1126D01* Y0D01* G37* G36* Y1236D02*X26987Y1218D01* X26937Y1204D01* X26885Y1200D01* X26832Y1204D01* X26826Y1206D01* Y1793D01* X26832Y1795D01* X26885Y1800D01* X26937Y1795D01* X26987Y1781D01* X27026Y1763D01* Y1236D01* G37* G36* Y1873D02*X27021Y1875D01* X26954Y1893D01* X26885Y1900D01* X26826Y1894D01* Y3103D01* X26865Y3100D01* X26934Y3106D01* X27001Y3124D01* X27026Y3135D01* Y1873D01* G37* G36* Y3248D02*X27015Y3240D01* X26967Y3218D01* X26917Y3204D01* X26865Y3200D01* X26826Y3203D01* Y3796D01* X26865Y3800D01* X26917Y3795D01* X26967Y3781D01* X27015Y3759D01* X27026Y3751D01* Y3248D01* G37* G36* Y3864D02*X27001Y3875D01* X26934Y3893D01* X26865Y3900D01* X26826Y3896D01* Y5101D01* X26845Y5100D01* X26914Y5106D01* X26981Y5124D01* X27026Y5145D01* Y3864D01* G37* G36* Y5247D02*X27018Y5256D01* X26995Y5240D01* X26947Y5218D01* X26897Y5204D01* X26845Y5200D01* X26826Y5201D01* Y5798D01* X26845Y5800D01* X26897Y5795D01* X26947Y5781D01* X26995Y5759D01* X27018Y5743D01* X27026Y5752D01* Y5247D01* G37* G36* Y5854D02*X26981Y5875D01* X26914Y5893D01* X26845Y5900D01* X26826Y5898D01* Y7100D01* X26894Y7106D01* X26961Y7124D01* X27025Y7153D01* X27026Y7154D01* Y5854D01* G37* G36* Y7227D02*X26998Y7256D01* X26975Y7240D01* X26927Y7218D01* X26877Y7204D01* X26826Y7200D01* Y7799D01* X26877Y7795D01* X26927Y7781D01* X26975Y7759D01* X26998Y7743D01* X27026Y7772D01* Y7227D01* G37* G36* Y7845D02*X27025Y7846D01* X26961Y7875D01* X26894Y7893D01* X26826Y7899D01* Y9101D01* X26874Y9106D01* X26941Y9124D01* X27005Y9153D01* X27026Y9169D01* Y7845D01* G37* G36* Y9207D02*X26978Y9256D01* X26955Y9240D01* X26907Y9218D01* X26857Y9204D01* X26826Y9201D01* Y9798D01* X26857Y9795D01* X26907Y9781D01* X26955Y9759D01* X26978Y9743D01* X27026Y9792D01* Y9207D01* G37* G36* Y9831D02*X27005Y9846D01* X26941Y9875D01* X26874Y9893D01* X26826Y9898D01* Y11103D01* X26854Y11106D01* X26921Y11124D01* X26985Y11153D01* X27026Y11183D01* Y9831D01* G37* G36* Y11187D02*X26958Y11256D01* X26935Y11240D01* X26887Y11218D01* X26837Y11204D01* X26826Y11203D01* Y11796D01* X26837Y11795D01* X26887Y11781D01* X26935Y11759D01* X26958Y11743D01* X27026Y11812D01* Y11187D01* G37* G36* Y40000D02*X27106D01* Y17614D01* X27100Y17636D01* X27071Y17700D01* X27040Y17744D01* X27026Y17731D01* Y19265D01* X27051Y19300D01* X27080Y19363D01* X27098Y19430D01* X27105Y19500D01* X27098Y19569D01* X27080Y19636D01* X27051Y19700D01* X27026Y19734D01* Y21293D01* X27031Y21300D01* X27060Y21363D01* X27078Y21430D01* X27085Y21500D01* X27078Y21569D01* X27060Y21636D01* X27031Y21700D01* X27026Y21706D01* Y23333D01* X27040Y23363D01* X27058Y23430D01* X27065Y23500D01* X27058Y23569D01* X27040Y23636D01* X27026Y23666D01* Y25385D01* X27038Y25430D01* X27045Y25500D01* X27038Y25569D01* X27026Y25614D01* Y40000D01* G37* G36* X27106Y0D02*X27026D01* Y1126D01* X27085Y1153D01* X27106Y1169D01* Y0D01* G37* G36* Y1207D02*X27058Y1256D01* X27035Y1240D01* X27026Y1236D01* Y1763D01* X27035Y1759D01* X27058Y1743D01* X27106Y1792D01* Y1207D01* G37* G36* Y1831D02*X27085Y1846D01* X27026Y1873D01* Y3135D01* X27065Y3153D01* X27106Y3183D01* Y1831D01* G37* G36* Y3187D02*X27038Y3256D01* X27026Y3248D01* Y3751D01* X27038Y3743D01* X27106Y3812D01* Y3187D01* G37* G36* Y3817D02*X27065Y3846D01* X27026Y3864D01* Y5145D01* X27045Y5153D01* X27089Y5184D01* X27026Y5247D01* Y5752D01* X27089Y5815D01* X27045Y5846D01* X27026Y5854D01* Y7154D01* X27069Y7184D01* X27026Y7227D01* Y7772D01* X27069Y7815D01* X27026Y7845D01* Y9169D01* X27049Y9184D01* X27026Y9207D01* Y9792D01* X27049Y9815D01* X27026Y9831D01* Y11183D01* X27029Y11184D01* X27026Y11187D01* Y11812D01* X27029Y11815D01* X27026Y11817D01* Y13308D01* X27080Y13255D01* X27106Y13293D01* Y11734D01* X27100Y11744D01* X27028Y11673D01* X27044Y11650D01* X27066Y11602D01* X27080Y11552D01* X27085Y11500D01* X27080Y11447D01* X27066Y11397D01* X27044Y11350D01* X27028Y11327D01* X27100Y11255D01* X27106Y11265D01* Y9731D01* X27048Y9673D01* X27064Y9650D01* X27086Y9602D01* X27100Y9552D01* X27105Y9500D01* X27100Y9447D01* X27086Y9397D01* X27064Y9350D01* X27048Y9327D01* X27106Y9268D01* Y7711D01* X27068Y7673D01* X27084Y7650D01* X27106Y7602D01* Y7397D01* X27084Y7350D01* X27068Y7327D01* X27106Y7288D01* Y5691D01* X27088Y5673D01* X27104Y5650D01* X27106Y5645D01* Y5354D01* X27104Y5350D01* X27088Y5327D01* X27106Y5308D01* Y3817D01* G37* G36* Y13706D02*X27080Y13744D01* X27026Y13691D01* Y15288D01* X27060Y15255D01* X27091Y15300D01* X27106Y15333D01* Y13706D01* G37* G36* Y15666D02*X27091Y15700D01* X27060Y15744D01* X27026Y15711D01* Y17268D01* X27040Y17255D01* X27071Y17300D01* X27100Y17363D01* X27106Y17385D01* Y15666D01* G37* G36* Y40000D02*X27186D01* Y9614D01* X27180Y9636D01* X27151Y9700D01* X27120Y9744D01* X27106Y9731D01* Y11265D01* X27131Y11300D01* X27160Y11363D01* X27178Y11430D01* X27185Y11500D01* X27178Y11569D01* X27160Y11636D01* X27131Y11700D01* X27106Y11734D01* Y13293D01* X27111Y13300D01* X27140Y13363D01* X27158Y13430D01* X27165Y13500D01* X27158Y13569D01* X27140Y13636D01* X27111Y13700D01* X27106Y13706D01* Y15333D01* X27120Y15363D01* X27138Y15430D01* X27145Y15500D01* X27138Y15569D01* X27120Y15636D01* X27106Y15666D01* Y17385D01* X27118Y17430D01* X27125Y17500D01* X27118Y17569D01* X27106Y17614D01* Y40000D01* G37* G36* X27186Y0D02*X27106D01* Y1169D01* X27129Y1184D01* X27106Y1207D01* Y1792D01* X27129Y1815D01* X27106Y1831D01* Y3183D01* X27109Y3184D01* X27106Y3187D01* Y3812D01* X27109Y3815D01* X27106Y3817D01* Y5308D01* X27160Y5255D01* X27186Y5293D01* Y3734D01* X27180Y3744D01* X27108Y3673D01* X27124Y3650D01* X27146Y3602D01* X27160Y3552D01* X27165Y3500D01* X27160Y3447D01* X27146Y3397D01* X27124Y3350D01* X27108Y3327D01* X27180Y3255D01* X27186Y3265D01* Y1731D01* X27128Y1673D01* X27144Y1650D01* X27166Y1602D01* X27180Y1552D01* X27185Y1500D01* X27180Y1447D01* X27166Y1397D01* X27144Y1350D01* X27128Y1327D01* X27186Y1268D01* Y0D01* G37* G36* Y5706D02*X27160Y5744D01* X27106Y5691D01* Y7288D01* X27140Y7255D01* X27171Y7300D01* X27186Y7333D01* Y5706D01* G37* G36* Y7666D02*X27171Y7700D01* X27140Y7744D01* X27106Y7711D01* Y9268D01* X27120Y9255D01* X27151Y9300D01* X27180Y9363D01* X27186Y9385D01* Y7666D01* G37* G36* Y40000D02*X28183D01* Y39735D01* X28158Y39700D01* X28129Y39636D01* X28111Y39569D01* X28105Y39500D01* X28111Y39430D01* X28129Y39363D01* X28158Y39300D01* X28183Y39264D01* Y37706D01* X28178Y37700D01* X28149Y37636D01* X28131Y37569D01* X28125Y37500D01* X28131Y37430D01* X28149Y37363D01* X28178Y37300D01* X28183Y37293D01* Y35667D01* X28169Y35636D01* X28151Y35569D01* X28145Y35500D01* X28151Y35430D01* X28169Y35363D01* X28183Y35333D01* Y33614D01* X28171Y33569D01* X28165Y33500D01* X28171Y33430D01* X28183Y33385D01* Y0D01* X27186D01* Y1268D01* X27200Y1255D01* X27231Y1300D01* X27260Y1363D01* X27278Y1430D01* X27285Y1500D01* X27278Y1569D01* X27260Y1636D01* X27231Y1700D01* X27200Y1744D01* X27186Y1731D01* Y3265D01* X27211Y3300D01* X27240Y3363D01* X27258Y3430D01* X27265Y3500D01* X27258Y3569D01* X27240Y3636D01* X27211Y3700D01* X27186Y3734D01* Y5293D01* X27191Y5300D01* X27220Y5363D01* X27238Y5430D01* X27245Y5500D01* X27238Y5569D01* X27220Y5636D01* X27191Y5700D01* X27186Y5706D01* Y7333D01* X27200Y7363D01* X27218Y7430D01* X27225Y7500D01* X27218Y7569D01* X27200Y7636D01* X27186Y7666D01* Y9385D01* X27198Y9430D01* X27205Y9500D01* X27198Y9569D01* X27186Y9614D01* Y40000D01* G37* G36* X27106Y7602D02*X27120Y7552D01* X27125Y7500D01* X27120Y7447D01* X27106Y7397D01* Y7602D01* G37* G36* Y5645D02*X27126Y5602D01* X27140Y5552D01* X27145Y5500D01* X27140Y5447D01* X27126Y5397D01* X27106Y5354D01* Y5645D01* G37* G36* X27026Y15602D02*X27040Y15552D01* X27045Y15500D01* X27040Y15447D01* X27026Y15397D01* Y15602D01* G37* G36* Y13645D02*X27046Y13602D01* X27060Y13552D01* X27065Y13500D01* X27060Y13447D01* X27046Y13397D01* X27026Y13354D01* Y13645D01* G37* G36* X28183Y40000D02*X28263D01* Y39817D01* X28260Y39815D01* X28263Y39812D01* Y39187D01* X28260Y39184D01* X28263Y39182D01* Y37691D01* X28209Y37744D01* X28183Y37706D01* Y39264D01* X28189Y39255D01* X28261Y39327D01* X28245Y39350D01* X28223Y39397D01* X28209Y39447D01* X28205Y39500D01* X28209Y39552D01* X28223Y39602D01* X28245Y39650D01* X28261Y39673D01* X28189Y39744D01* X28183Y39735D01* Y40000D01* G37* G36* X28263Y0D02*X28183D01* Y33385D01* X28189Y33363D01* X28218Y33300D01* X28249Y33255D01* X28263Y33268D01* Y31735D01* X28238Y31700D01* X28209Y31636D01* X28191Y31569D01* X28185Y31500D01* X28191Y31430D01* X28209Y31363D01* X28238Y31300D01* X28263Y31264D01* Y29706D01* X28258Y29700D01* X28229Y29636D01* X28211Y29569D01* X28205Y29500D01* X28211Y29430D01* X28229Y29363D01* X28258Y29300D01* X28263Y29293D01* Y27667D01* X28249Y27636D01* X28231Y27569D01* X28225Y27500D01* X28231Y27430D01* X28249Y27363D01* X28263Y27333D01* Y25614D01* X28251Y25569D01* X28245Y25500D01* X28251Y25430D01* X28263Y25385D01* Y0D01* G37* G36* Y33731D02*X28249Y33744D01* X28218Y33700D01* X28189Y33636D01* X28183Y33614D01* Y35333D01* X28198Y35300D01* X28229Y35255D01* X28263Y35288D01* Y33731D01* G37* G36* Y35397D02*X28263Y35397D01* X28249Y35447D01* X28245Y35500D01* X28249Y35552D01* X28263Y35602D01* X28263Y35602D01* Y35397D01* G37* G36* Y35711D02*X28229Y35744D01* X28198Y35700D01* X28183Y35667D01* Y37293D01* X28209Y37255D01* X28263Y37308D01* Y35711D01* G37* G36* Y37354D02*X28243Y37397D01* X28229Y37447D01* X28225Y37500D01* X28229Y37552D01* X28243Y37602D01* X28263Y37645D01* Y37354D01* G37* G36* Y40000D02*X28505D01* Y39900D01* X28435Y39893D01* X28368Y39875D01* X28305Y39846D01* X28263Y39817D01* Y40000D01* G37* G36* Y39812D02*X28332Y39743D01* X28355Y39759D01* X28402Y39781D01* X28452Y39795D01* X28505Y39800D01* Y39200D01* X28452Y39204D01* X28402Y39218D01* X28355Y39240D01* X28332Y39256D01* X28263Y39187D01* Y39812D01* G37* G36* Y39182D02*X28305Y39153D01* X28343Y39135D01* Y37854D01* X28325Y37846D01* X28280Y37815D01* X28343Y37752D01* Y37247D01* X28280Y37184D01* X28325Y37153D01* X28343Y37145D01* Y35845D01* X28300Y35815D01* X28343Y35772D01* Y35227D01* X28300Y35184D01* X28343Y35154D01* Y33831D01* X28320Y33815D01* X28343Y33792D01* Y33207D01* X28320Y33184D01* X28343Y33168D01* Y31817D01* X28340Y31815D01* X28343Y31812D01* Y31187D01* X28340Y31184D01* X28343Y31182D01* Y29691D01* X28289Y29744D01* X28263Y29706D01* Y31264D01* X28269Y31255D01* X28341Y31327D01* X28325Y31350D01* X28303Y31397D01* X28289Y31447D01* X28285Y31500D01* X28289Y31552D01* X28303Y31602D01* X28325Y31650D01* X28341Y31673D01* X28269Y31744D01* X28263Y31735D01* Y33268D01* X28321Y33327D01* X28305Y33350D01* X28283Y33397D01* X28269Y33447D01* X28265Y33500D01* X28269Y33552D01* X28283Y33602D01* X28305Y33650D01* X28321Y33673D01* X28263Y33731D01* Y35288D01* X28301Y35327D01* X28285Y35350D01* X28263Y35397D01* Y35602D01* X28285Y35650D01* X28301Y35673D01* X28263Y35711D01* Y37308D01* X28281Y37327D01* X28265Y37350D01* X28263Y37354D01* Y37645D01* X28265Y37650D01* X28281Y37673D01* X28263Y37691D01* Y39182D01* G37* G36* X28343Y0D02*X28263D01* Y25385D01* X28269Y25363D01* X28298Y25300D01* X28329Y25255D01* X28343Y25268D01* Y23735D01* X28318Y23700D01* X28289Y23636D01* X28271Y23569D01* X28265Y23500D01* X28271Y23430D01* X28289Y23363D01* X28318Y23300D01* X28343Y23264D01* Y21706D01* X28338Y21700D01* X28309Y21636D01* X28291Y21569D01* X28285Y21500D01* X28291Y21430D01* X28309Y21363D01* X28338Y21300D01* X28343Y21293D01* Y19667D01* X28329Y19636D01* X28311Y19569D01* X28305Y19500D01* X28311Y19430D01* X28329Y19363D01* X28343Y19333D01* Y17614D01* X28331Y17569D01* X28325Y17500D01* X28331Y17430D01* X28343Y17385D01* Y0D01* G37* G36* Y25731D02*X28329Y25744D01* X28298Y25700D01* X28269Y25636D01* X28263Y25614D01* Y27333D01* X28278Y27300D01* X28309Y27255D01* X28343Y27288D01* Y25731D01* G37* G36* Y27397D02*X28343Y27397D01* X28329Y27447D01* X28325Y27500D01* X28329Y27552D01* X28343Y27602D01* X28343Y27602D01* Y27397D01* G37* G36* Y27711D02*X28309Y27744D01* X28278Y27700D01* X28263Y27667D01* Y29293D01* X28289Y29255D01* X28343Y29308D01* Y27711D01* G37* G36* Y29354D02*X28323Y29397D01* X28309Y29447D01* X28305Y29500D01* X28309Y29552D01* X28323Y29602D01* X28343Y29645D01* Y29354D01* G37* G36* Y39135D02*X28368Y39124D01* X28435Y39106D01* X28505Y39100D01* Y37898D01* X28455Y37893D01* X28388Y37875D01* X28343Y37854D01* Y39135D01* G37* G36* Y37752D02*X28352Y37743D01* X28375Y37759D01* X28422Y37781D01* X28472Y37795D01* X28505Y37798D01* Y37201D01* X28472Y37204D01* X28422Y37218D01* X28375Y37240D01* X28352Y37256D01* X28343Y37247D01* Y37752D01* G37* G36* Y37145D02*X28388Y37124D01* X28455Y37106D01* X28505Y37101D01* Y35896D01* X28475Y35893D01* X28408Y35875D01* X28345Y35846D01* X28343Y35845D01* Y37145D01* G37* G36* Y35772D02*X28372Y35743D01* X28395Y35759D01* X28442Y35781D01* X28492Y35795D01* X28505Y35796D01* Y35203D01* X28492Y35204D01* X28442Y35218D01* X28395Y35240D01* X28372Y35256D01* X28343Y35227D01* Y35772D01* G37* G36* Y35154D02*X28345Y35153D01* X28408Y35124D01* X28475Y35106D01* X28505Y35103D01* Y33894D01* X28495Y33893D01* X28428Y33875D01* X28365Y33846D01* X28343Y33831D01* Y35154D01* G37* G36* Y33792D02*X28392Y33743D01* X28415Y33759D01* X28462Y33781D01* X28505Y33793D01* Y33206D01* X28462Y33218D01* X28415Y33240D01* X28392Y33256D01* X28343Y33207D01* Y33792D01* G37* G36* Y33168D02*X28365Y33153D01* X28428Y33124D01* X28495Y33106D01* X28505Y33105D01* Y31891D01* X28448Y31875D01* X28385Y31846D01* X28343Y31817D01* Y33168D01* G37* G36* Y31812D02*X28412Y31743D01* X28435Y31759D01* X28482Y31781D01* X28505Y31787D01* Y31212D01* X28482Y31218D01* X28435Y31240D01* X28412Y31256D01* X28343Y31187D01* Y31812D01* G37* G36* Y31182D02*X28385Y31153D01* X28423Y31135D01* Y29854D01* X28405Y29846D01* X28360Y29815D01* X28423Y29752D01* Y29247D01* X28360Y29184D01* X28405Y29153D01* X28423Y29145D01* Y27845D01* X28380Y27815D01* X28423Y27772D01* Y27227D01* X28380Y27184D01* X28423Y27154D01* Y25831D01* X28400Y25815D01* X28423Y25792D01* Y25207D01* X28400Y25184D01* X28423Y25168D01* Y23817D01* X28420Y23815D01* X28423Y23812D01* Y23187D01* X28420Y23184D01* X28423Y23182D01* Y21691D01* X28369Y21744D01* X28343Y21706D01* Y23264D01* X28349Y23255D01* X28421Y23327D01* X28405Y23350D01* X28383Y23397D01* X28369Y23447D01* X28365Y23500D01* X28369Y23552D01* X28383Y23602D01* X28405Y23650D01* X28421Y23673D01* X28349Y23744D01* X28343Y23735D01* Y25268D01* X28401Y25327D01* X28385Y25350D01* X28363Y25397D01* X28349Y25447D01* X28345Y25500D01* X28349Y25552D01* X28363Y25602D01* X28385Y25650D01* X28401Y25673D01* X28343Y25731D01* Y27288D01* X28381Y27327D01* X28365Y27350D01* X28343Y27397D01* Y27602D01* X28365Y27650D01* X28381Y27673D01* X28343Y27711D01* Y29308D01* X28361Y29327D01* X28345Y29350D01* X28343Y29354D01* Y29645D01* X28345Y29650D01* X28361Y29673D01* X28343Y29691D01* Y31182D01* G37* G36* X28423Y13706D02*X28418Y13700D01* X28389Y13636D01* X28371Y13569D01* X28365Y13500D01* X28371Y13430D01* X28389Y13363D01* X28418Y13300D01* X28423Y13293D01* Y11667D01* X28409Y11636D01* X28391Y11569D01* X28385Y11500D01* X28391Y11430D01* X28409Y11363D01* X28423Y11333D01* Y9614D01* X28411Y9569D01* X28405Y9500D01* X28411Y9430D01* X28423Y9385D01* Y0D01* X28343D01* Y17385D01* X28349Y17363D01* X28378Y17300D01* X28409Y17255D01* X28423Y17268D01* Y15735D01* X28398Y15700D01* X28369Y15636D01* X28351Y15569D01* X28345Y15500D01* X28351Y15430D01* X28369Y15363D01* X28398Y15300D01* X28423Y15264D01* Y13706D01* G37* G36* Y17731D02*X28409Y17744D01* X28378Y17700D01* X28349Y17636D01* X28343Y17614D01* Y19333D01* X28358Y19300D01* X28389Y19255D01* X28423Y19288D01* Y17731D01* G37* G36* Y19397D02*X28423Y19397D01* X28409Y19447D01* X28405Y19500D01* X28409Y19552D01* X28423Y19602D01* X28423Y19602D01* Y19397D01* G37* G36* Y19711D02*X28389Y19744D01* X28358Y19700D01* X28343Y19667D01* Y21293D01* X28369Y21255D01* X28423Y21308D01* Y19711D01* G37* G36* Y21354D02*X28403Y21397D01* X28389Y21447D01* X28385Y21500D01* X28389Y21552D01* X28403Y21602D01* X28423Y21645D01* Y21354D01* G37* G36* Y31135D02*X28448Y31124D01* X28505Y31108D01* Y29885D01* X28468Y29875D01* X28423Y29854D01* Y31135D01* G37* G36* Y29752D02*X28432Y29743D01* X28455Y29759D01* X28502Y29781D01* X28505Y29782D01* Y29217D01* X28502Y29218D01* X28455Y29240D01* X28432Y29256D01* X28423Y29247D01* Y29752D01* G37* G36* Y29145D02*X28468Y29124D01* X28505Y29114D01* Y27880D01* X28488Y27875D01* X28425Y27846D01* X28423Y27845D01* Y29145D01* G37* G36* Y27772D02*X28452Y27743D01* X28475Y27759D01* X28505Y27773D01* Y27226D01* X28475Y27240D01* X28452Y27256D01* X28423Y27227D01* Y27772D01* G37* G36* Y27154D02*X28425Y27153D01* X28488Y27124D01* X28505Y27119D01* Y25874D01* X28445Y25846D01* X28423Y25831D01* Y27154D01* G37* G36* Y25792D02*X28472Y25743D01* X28495Y25759D01* X28505Y25764D01* Y25235D01* X28495Y25240D01* X28472Y25256D01* X28423Y25207D01* Y25792D01* G37* G36* Y25168D02*X28445Y25153D01* X28505Y25125D01* Y23865D01* X28465Y23846D01* X28423Y23817D01* Y25168D01* G37* G36* Y23812D02*X28492Y23743D01* X28505Y23752D01* Y23247D01* X28492Y23256D01* X28423Y23187D01* Y23812D01* G37* G36* Y23182D02*X28465Y23153D01* X28505Y23134D01* Y21855D01* X28485Y21846D01* X28440Y21815D01* X28505Y21750D01* Y21249D01* X28440Y21184D01* X28485Y21153D01* X28505Y21144D01* Y19846D01* X28460Y19815D01* X28505Y19770D01* Y19229D01* X28460Y19184D01* X28505Y19153D01* Y17832D01* X28480Y17815D01* X28505Y17790D01* Y17209D01* X28480Y17184D01* X28505Y17167D01* Y15818D01* X28500Y15815D01* X28505Y15810D01* Y15189D01* X28500Y15184D01* X28505Y15181D01* Y13689D01* X28449Y13744D01* X28423Y13706D01* Y15264D01* X28429Y15255D01* X28501Y15327D01* X28485Y15350D01* X28463Y15397D01* X28449Y15447D01* X28445Y15500D01* X28449Y15552D01* X28463Y15602D01* X28485Y15650D01* X28501Y15673D01* X28429Y15744D01* X28423Y15735D01* Y17268D01* X28481Y17327D01* X28465Y17350D01* X28443Y17397D01* X28429Y17447D01* X28425Y17500D01* X28429Y17552D01* X28443Y17602D01* X28465Y17650D01* X28481Y17673D01* X28423Y17731D01* Y19288D01* X28461Y19327D01* X28445Y19350D01* X28423Y19397D01* Y19602D01* X28445Y19650D01* X28461Y19673D01* X28423Y19711D01* Y21308D01* X28441Y21327D01* X28425Y21350D01* X28423Y21354D01* Y21645D01* X28425Y21650D01* X28441Y21673D01* X28423Y21691D01* Y23182D01* G37* G36* Y13293D02*X28449Y13255D01* X28505Y13310D01* Y11709D01* X28469Y11744D01* X28438Y11700D01* X28423Y11667D01* Y13293D01* G37* G36* Y11333D02*X28438Y11300D01* X28469Y11255D01* X28505Y11290D01* Y9729D01* X28489Y9744D01* X28458Y9700D01* X28429Y9636D01* X28423Y9614D01* Y11333D01* G37* G36* Y9385D02*X28429Y9363D01* X28458Y9300D01* X28489Y9255D01* X28505Y9270D01* Y7737D01* X28478Y7700D01* X28449Y7636D01* X28431Y7569D01* X28425Y7500D01* X28431Y7430D01* X28449Y7363D01* X28478Y7300D01* X28505Y7262D01* Y5709D01* X28498Y5700D01* X28469Y5636D01* X28451Y5569D01* X28445Y5500D01* X28451Y5430D01* X28469Y5363D01* X28498Y5300D01* X28505Y5290D01* Y3670D01* X28489Y3636D01* X28471Y3569D01* X28465Y3500D01* X28471Y3430D01* X28489Y3363D01* X28505Y3329D01* Y1621D01* X28491Y1569D01* X28485Y1500D01* X28491Y1430D01* X28505Y1378D01* Y0D01* X28423D01* Y9385D01* G37* G36* X28505Y13350D02*X28483Y13397D01* X28469Y13447D01* X28465Y13500D01* X28469Y13552D01* X28483Y13602D01* X28505Y13649D01* Y13350D01* G37* G36* Y11393D02*X28503Y11397D01* X28489Y11447D01* X28485Y11500D01* X28489Y11552D01* X28503Y11602D01* X28505Y11606D01* Y11393D01* G37* G36* Y40000D02*X28826D01* Y39734D01* X28820Y39744D01* X28748Y39673D01* X28764Y39650D01* X28786Y39602D01* X28800Y39552D01* X28805Y39500D01* X28800Y39447D01* X28786Y39397D01* X28764Y39350D01* X28748Y39327D01* X28820Y39255D01* X28826Y39265D01* Y37731D01* X28768Y37673D01* X28784Y37650D01* X28806Y37602D01* X28820Y37552D01* X28825Y37500D01* X28820Y37447D01* X28806Y37397D01* X28784Y37350D01* X28768Y37327D01* X28826Y37268D01* Y35711D01* X28788Y35673D01* X28804Y35650D01* X28826Y35602D01* Y35397D01* X28804Y35350D01* X28788Y35327D01* X28826Y35288D01* Y33691D01* X28808Y33673D01* X28824Y33650D01* X28826Y33645D01* Y33354D01* X28824Y33350D01* X28808Y33327D01* X28826Y33308D01* Y31817D01* X28785Y31846D01* X28721Y31875D01* X28654Y31893D01* X28585Y31900D01* X28515Y31893D01* X28505Y31891D01* Y33105D01* X28565Y33100D01* X28634Y33106D01* X28701Y33124D01* X28765Y33153D01* X28809Y33184D01* X28738Y33256D01* X28715Y33240D01* X28667Y33218D01* X28617Y33204D01* X28565Y33200D01* X28512Y33204D01* X28505Y33206D01* Y33793D01* X28512Y33795D01* X28565Y33800D01* X28617Y33795D01* X28667Y33781D01* X28715Y33759D01* X28738Y33743D01* X28809Y33815D01* X28765Y33846D01* X28701Y33875D01* X28634Y33893D01* X28565Y33900D01* X28505Y33894D01* Y35103D01* X28545Y35100D01* X28614Y35106D01* X28681Y35124D01* X28745Y35153D01* X28789Y35184D01* X28718Y35256D01* X28695Y35240D01* X28647Y35218D01* X28597Y35204D01* X28545Y35200D01* X28505Y35203D01* Y35796D01* X28545Y35800D01* X28597Y35795D01* X28647Y35781D01* X28695Y35759D01* X28718Y35743D01* X28789Y35815D01* X28745Y35846D01* X28681Y35875D01* X28614Y35893D01* X28545Y35900D01* X28505Y35896D01* Y37101D01* X28525Y37100D01* X28594Y37106D01* X28661Y37124D01* X28725Y37153D01* X28769Y37184D01* X28698Y37256D01* X28675Y37240D01* X28627Y37218D01* X28577Y37204D01* X28525Y37200D01* X28505Y37201D01* Y37798D01* X28525Y37800D01* X28577Y37795D01* X28627Y37781D01* X28675Y37759D01* X28698Y37743D01* X28769Y37815D01* X28725Y37846D01* X28661Y37875D01* X28594Y37893D01* X28525Y37900D01* X28505Y37898D01* Y39100D01* X28574Y39106D01* X28641Y39124D01* X28705Y39153D01* X28749Y39184D01* X28678Y39256D01* X28655Y39240D01* X28607Y39218D01* X28557Y39204D01* X28505Y39200D01* Y39800D01* X28557Y39795D01* X28607Y39781D01* X28655Y39759D01* X28678Y39743D01* X28749Y39815D01* X28705Y39846D01* X28641Y39875D01* X28574Y39893D01* X28505Y39900D01* Y40000D01* G37* G36* Y31787D02*X28532Y31795D01* X28585Y31800D01* X28637Y31795D01* X28687Y31781D01* X28735Y31759D01* X28758Y31743D01* X28826Y31812D01* Y31187D01* X28758Y31256D01* X28735Y31240D01* X28687Y31218D01* X28637Y31204D01* X28585Y31200D01* X28532Y31204D01* X28505Y31212D01* Y31787D01* G37* G36* Y31108D02*X28515Y31106D01* X28585Y31100D01* X28654Y31106D01* X28721Y31124D01* X28785Y31153D01* X28826Y31183D01* Y29831D01* X28805Y29846D01* X28741Y29875D01* X28674Y29893D01* X28605Y29900D01* X28535Y29893D01* X28505Y29885D01* Y31108D01* G37* G36* Y29782D02*X28552Y29795D01* X28605Y29800D01* X28657Y29795D01* X28707Y29781D01* X28755Y29759D01* X28778Y29743D01* X28826Y29792D01* Y29207D01* X28778Y29256D01* X28755Y29240D01* X28707Y29218D01* X28657Y29204D01* X28605Y29200D01* X28552Y29204D01* X28505Y29217D01* Y29782D01* G37* G36* Y29114D02*X28535Y29106D01* X28605Y29100D01* X28674Y29106D01* X28741Y29124D01* X28805Y29153D01* X28826Y29169D01* Y27845D01* X28825Y27846D01* X28761Y27875D01* X28694Y27893D01* X28625Y27900D01* X28555Y27893D01* X28505Y27880D01* Y29114D01* G37* G36* Y27773D02*X28522Y27781D01* X28572Y27795D01* X28625Y27800D01* X28677Y27795D01* X28727Y27781D01* X28775Y27759D01* X28798Y27743D01* X28826Y27772D01* Y27227D01* X28798Y27256D01* X28775Y27240D01* X28727Y27218D01* X28677Y27204D01* X28625Y27200D01* X28572Y27204D01* X28522Y27218D01* X28505Y27226D01* Y27773D01* G37* G36* Y27119D02*X28555Y27106D01* X28625Y27100D01* X28694Y27106D01* X28761Y27124D01* X28825Y27153D01* X28826Y27154D01* Y25854D01* X28781Y25875D01* X28714Y25893D01* X28645Y25900D01* X28575Y25893D01* X28508Y25875D01* X28505Y25874D01* Y27119D01* G37* G36* Y25764D02*X28542Y25781D01* X28592Y25795D01* X28645Y25800D01* X28697Y25795D01* X28747Y25781D01* X28795Y25759D01* X28818Y25743D01* X28826Y25752D01* Y25247D01* X28818Y25256D01* X28795Y25240D01* X28747Y25218D01* X28697Y25204D01* X28645Y25200D01* X28592Y25204D01* X28542Y25218D01* X28505Y25235D01* Y25764D01* G37* G36* Y25125D02*X28508Y25124D01* X28575Y25106D01* X28645Y25100D01* X28714Y25106D01* X28781Y25124D01* X28826Y25145D01* Y23864D01* X28801Y23875D01* X28734Y23893D01* X28665Y23900D01* X28595Y23893D01* X28528Y23875D01* X28505Y23865D01* Y25125D01* G37* G36* Y23752D02*X28515Y23759D01* X28562Y23781D01* X28612Y23795D01* X28665Y23800D01* X28717Y23795D01* X28767Y23781D01* X28815Y23759D01* X28826Y23751D01* Y23248D01* X28815Y23240D01* X28767Y23218D01* X28717Y23204D01* X28665Y23200D01* X28612Y23204D01* X28562Y23218D01* X28515Y23240D01* X28505Y23247D01* Y23752D01* G37* G36* Y23134D02*X28528Y23124D01* X28595Y23106D01* X28665Y23100D01* X28734Y23106D01* X28801Y23124D01* X28826Y23135D01* Y21873D01* X28821Y21875D01* X28754Y21893D01* X28685Y21900D01* X28615Y21893D01* X28548Y21875D01* X28505Y21855D01* Y23134D01* G37* G36* Y21750D02*X28512Y21743D01* X28535Y21759D01* X28582Y21781D01* X28632Y21795D01* X28685Y21800D01* X28737Y21795D01* X28787Y21781D01* X28826Y21763D01* Y21236D01* X28787Y21218D01* X28737Y21204D01* X28685Y21200D01* X28632Y21204D01* X28582Y21218D01* X28535Y21240D01* X28512Y21256D01* X28505Y21249D01* Y21750D01* G37* G36* Y21144D02*X28548Y21124D01* X28615Y21106D01* X28685Y21100D01* X28754Y21106D01* X28821Y21124D01* X28826Y21126D01* Y19879D01* X28774Y19893D01* X28705Y19900D01* X28635Y19893D01* X28568Y19875D01* X28505Y19846D01* Y21144D01* G37* G36* Y19770D02*X28532Y19743D01* X28555Y19759D01* X28602Y19781D01* X28652Y19795D01* X28705Y19800D01* X28757Y19795D01* X28807Y19781D01* X28826Y19772D01* Y19227D01* X28807Y19218D01* X28757Y19204D01* X28705Y19200D01* X28652Y19204D01* X28602Y19218D01* X28555Y19240D01* X28532Y19256D01* X28505Y19229D01* Y19770D01* G37* G36* Y19153D02*X28568Y19124D01* X28635Y19106D01* X28705Y19100D01* X28774Y19106D01* X28826Y19120D01* Y17885D01* X28794Y17893D01* X28725Y17900D01* X28655Y17893D01* X28588Y17875D01* X28525Y17846D01* X28505Y17832D01* Y19153D01* G37* G36* Y17790D02*X28552Y17743D01* X28575Y17759D01* X28622Y17781D01* X28672Y17795D01* X28725Y17800D01* X28777Y17795D01* X28826Y17782D01* Y17217D01* X28777Y17204D01* X28725Y17200D01* X28672Y17204D01* X28622Y17218D01* X28575Y17240D01* X28552Y17256D01* X28505Y17209D01* Y17790D01* G37* G36* Y17167D02*X28525Y17153D01* X28588Y17124D01* X28655Y17106D01* X28725Y17100D01* X28794Y17106D01* X28826Y17114D01* Y15890D01* X28814Y15893D01* X28745Y15900D01* X28675Y15893D01* X28608Y15875D01* X28545Y15846D01* X28505Y15818D01* Y17167D01* G37* G36* Y15810D02*X28572Y15743D01* X28595Y15759D01* X28642Y15781D01* X28692Y15795D01* X28745Y15800D01* X28797Y15795D01* X28826Y15787D01* Y15212D01* X28797Y15204D01* X28745Y15200D01* X28692Y15204D01* X28642Y15218D01* X28595Y15240D01* X28572Y15256D01* X28505Y15189D01* Y15810D01* G37* G36* Y15181D02*X28545Y15153D01* X28608Y15124D01* X28675Y15106D01* X28745Y15100D01* X28814Y15106D01* X28826Y15109D01* Y13894D01* X28765Y13900D01* X28695Y13893D01* X28628Y13875D01* X28565Y13846D01* X28520Y13815D01* X28592Y13743D01* X28615Y13759D01* X28662Y13781D01* X28712Y13795D01* X28765Y13800D01* X28817Y13795D01* X28826Y13792D01* Y13207D01* X28817Y13204D01* X28765Y13200D01* X28712Y13204D01* X28662Y13218D01* X28615Y13240D01* X28592Y13256D01* X28520Y13184D01* X28565Y13153D01* X28628Y13124D01* X28695Y13106D01* X28765Y13100D01* X28826Y13105D01* Y11896D01* X28785Y11900D01* X28715Y11893D01* X28648Y11875D01* X28585Y11846D01* X28540Y11815D01* X28612Y11743D01* X28635Y11759D01* X28682Y11781D01* X28732Y11795D01* X28785Y11800D01* X28826Y11796D01* Y11203D01* X28785Y11200D01* X28732Y11204D01* X28682Y11218D01* X28635Y11240D01* X28612Y11256D01* X28540Y11184D01* X28585Y11153D01* X28648Y11124D01* X28715Y11106D01* X28785Y11100D01* X28826Y11103D01* Y9898D01* X28805Y9900D01* X28735Y9893D01* X28668Y9875D01* X28605Y9846D01* X28560Y9815D01* X28632Y9743D01* X28655Y9759D01* X28702Y9781D01* X28752Y9795D01* X28805Y9800D01* X28826Y9798D01* Y9201D01* X28805Y9200D01* X28752Y9204D01* X28702Y9218D01* X28655Y9240D01* X28632Y9256D01* X28560Y9184D01* X28605Y9153D01* X28668Y9124D01* X28735Y9106D01* X28805Y9100D01* X28826Y9101D01* Y7899D01* X28825Y7900D01* X28755Y7893D01* X28688Y7875D01* X28625Y7846D01* X28580Y7815D01* X28652Y7743D01* X28675Y7759D01* X28722Y7781D01* X28772Y7795D01* X28825Y7800D01* X28826Y7799D01* Y7200D01* X28825Y7200D01* X28772Y7204D01* X28722Y7218D01* X28675Y7240D01* X28652Y7256D01* X28580Y7184D01* X28625Y7153D01* X28688Y7124D01* X28755Y7106D01* X28825Y7100D01* X28826Y7100D01* Y5898D01* X28775Y5893D01* X28708Y5875D01* X28645Y5846D01* X28600Y5815D01* X28672Y5743D01* X28695Y5759D01* X28742Y5781D01* X28792Y5795D01* X28826Y5798D01* Y5201D01* X28792Y5204D01* X28742Y5218D01* X28695Y5240D01* X28672Y5256D01* X28600Y5184D01* X28645Y5153D01* X28708Y5124D01* X28775Y5106D01* X28826Y5101D01* Y3896D01* X28795Y3893D01* X28728Y3875D01* X28665Y3846D01* X28620Y3815D01* X28692Y3743D01* X28715Y3759D01* X28762Y3781D01* X28812Y3795D01* X28826Y3796D01* Y3203D01* X28812Y3204D01* X28762Y3218D01* X28715Y3240D01* X28692Y3256D01* X28620Y3184D01* X28665Y3153D01* X28728Y3124D01* X28795Y3106D01* X28826Y3103D01* Y1894D01* X28815Y1893D01* X28748Y1875D01* X28685Y1846D01* X28640Y1815D01* X28712Y1743D01* X28735Y1759D01* X28782Y1781D01* X28826Y1793D01* Y1206D01* X28782Y1218D01* X28735Y1240D01* X28712Y1256D01* X28640Y1184D01* X28685Y1153D01* X28748Y1124D01* X28815Y1106D01* X28826Y1105D01* Y0D01* X28505D01* Y1378D01* X28509Y1363D01* X28538Y1300D01* X28569Y1255D01* X28641Y1327D01* X28625Y1350D01* X28603Y1397D01* X28589Y1447D01* X28585Y1500D01* X28589Y1552D01* X28603Y1602D01* X28625Y1650D01* X28641Y1673D01* X28569Y1744D01* X28538Y1700D01* X28509Y1636D01* X28505Y1621D01* Y3329D01* X28518Y3300D01* X28549Y3255D01* X28621Y3327D01* X28605Y3350D01* X28583Y3397D01* X28569Y3447D01* X28565Y3500D01* X28569Y3552D01* X28583Y3602D01* X28605Y3650D01* X28621Y3673D01* X28549Y3744D01* X28518Y3700D01* X28505Y3670D01* Y5290D01* X28529Y5255D01* X28601Y5327D01* X28585Y5350D01* X28563Y5397D01* X28549Y5447D01* X28545Y5500D01* X28549Y5552D01* X28563Y5602D01* X28585Y5650D01* X28601Y5673D01* X28529Y5744D01* X28505Y5709D01* Y7262D01* X28509Y7255D01* X28581Y7327D01* X28565Y7350D01* X28543Y7397D01* X28529Y7447D01* X28525Y7500D01* X28529Y7552D01* X28543Y7602D01* X28565Y7650D01* X28581Y7673D01* X28509Y7744D01* X28505Y7737D01* Y9270D01* X28561Y9327D01* X28545Y9350D01* X28523Y9397D01* X28509Y9447D01* X28505Y9500D01* X28509Y9552D01* X28523Y9602D01* X28545Y9650D01* X28561Y9673D01* X28505Y9729D01* Y11290D01* X28541Y11327D01* X28525Y11350D01* X28505Y11393D01* Y11606D01* X28525Y11650D01* X28541Y11673D01* X28505Y11709D01* Y13310D01* X28521Y13327D01* X28505Y13350D01* X28505Y13350D01* Y13649D01* X28505Y13650D01* X28521Y13673D01* X28505Y13689D01* Y15181D01* G37* G36* X28826Y40000D02*X28906D01* Y37614D01* X28900Y37636D01* X28871Y37700D01* X28840Y37744D01* X28826Y37731D01* Y39265D01* X28851Y39300D01* X28880Y39363D01* X28898Y39430D01* X28905Y39500D01* X28898Y39569D01* X28880Y39636D01* X28851Y39700D01* X28826Y39734D01* Y40000D01* G37* G36* X28906Y0D02*X28826D01* Y1105D01* X28885Y1100D01* X28906Y1101D01* Y0D01* G37* G36* Y1201D02*X28885Y1200D01* X28832Y1204D01* X28826Y1206D01* Y1793D01* X28832Y1795D01* X28885Y1800D01* X28906Y1798D01* Y1201D01* G37* G36* Y1898D02*X28885Y1900D01* X28826Y1894D01* Y3103D01* X28865Y3100D01* X28906Y3103D01* Y1898D01* G37* G36* Y3203D02*X28865Y3200D01* X28826Y3203D01* Y3796D01* X28865Y3800D01* X28906Y3796D01* Y3203D01* G37* G36* Y3896D02*X28865Y3900D01* X28826Y3896D01* Y5101D01* X28845Y5100D01* X28906Y5105D01* Y3896D01* G37* G36* Y5207D02*X28897Y5204D01* X28845Y5200D01* X28826Y5201D01* Y5798D01* X28845Y5800D01* X28897Y5795D01* X28906Y5792D01* Y5207D01* G37* G36* Y5894D02*X28845Y5900D01* X28826Y5898D01* Y7100D01* X28894Y7106D01* X28906Y7109D01* Y5894D01* G37* G36* Y7212D02*X28877Y7204D01* X28826Y7200D01* Y7799D01* X28877Y7795D01* X28906Y7787D01* Y7212D01* G37* G36* Y7890D02*X28894Y7893D01* X28826Y7899D01* Y9101D01* X28874Y9106D01* X28906Y9114D01* Y7890D01* G37* G36* Y9217D02*X28857Y9204D01* X28826Y9201D01* Y9798D01* X28857Y9795D01* X28906Y9782D01* Y9217D01* G37* G36* Y9885D02*X28874Y9893D01* X28826Y9898D01* Y11103D01* X28854Y11106D01* X28906Y11120D01* Y9885D01* G37* G36* Y11227D02*X28887Y11218D01* X28837Y11204D01* X28826Y11203D01* Y11796D01* X28837Y11795D01* X28887Y11781D01* X28906Y11772D01* Y11227D01* G37* G36* Y11879D02*X28854Y11893D01* X28826Y11896D01* Y13105D01* X28834Y13106D01* X28901Y13124D01* X28906Y13126D01* Y11879D01* G37* G36* Y13236D02*X28867Y13218D01* X28826Y13207D01* Y13792D01* X28867Y13781D01* X28906Y13763D01* Y13236D01* G37* G36* Y13873D02*X28901Y13875D01* X28834Y13893D01* X28826Y13894D01* Y15109D01* X28881Y15124D01* X28906Y15135D01* Y13873D01* G37* G36* Y15248D02*X28895Y15240D01* X28847Y15218D01* X28826Y15212D01* Y15787D01* X28847Y15781D01* X28895Y15759D01* X28906Y15751D01* Y15248D01* G37* G36* Y15864D02*X28881Y15875D01* X28826Y15890D01* Y17114D01* X28861Y17124D01* X28906Y17145D01* Y15864D01* G37* G36* Y17247D02*X28898Y17256D01* X28875Y17240D01* X28827Y17218D01* X28826Y17217D01* Y17782D01* X28827Y17781D01* X28875Y17759D01* X28898Y17743D01* X28906Y17752D01* Y17247D01* G37* G36* Y17854D02*X28861Y17875D01* X28826Y17885D01* Y19120D01* X28841Y19124D01* X28905Y19153D01* X28906Y19154D01* Y17854D01* G37* G36* Y19227D02*X28878Y19256D01* X28855Y19240D01* X28826Y19227D01* Y19772D01* X28855Y19759D01* X28878Y19743D01* X28906Y19772D01* Y19227D01* G37* G36* Y19845D02*X28905Y19846D01* X28841Y19875D01* X28826Y19879D01* Y21126D01* X28885Y21153D01* X28906Y21169D01* Y19845D01* G37* G36* Y21207D02*X28858Y21256D01* X28835Y21240D01* X28826Y21236D01* Y21763D01* X28835Y21759D01* X28858Y21743D01* X28906Y21792D01* Y21207D01* G37* G36* Y21831D02*X28885Y21846D01* X28826Y21873D01* Y23135D01* X28865Y23153D01* X28906Y23183D01* Y21831D01* G37* G36* Y23187D02*X28838Y23256D01* X28826Y23248D01* Y23751D01* X28838Y23743D01* X28906Y23812D01* Y23187D01* G37* G36* Y23817D02*X28865Y23846D01* X28826Y23864D01* Y25145D01* X28845Y25153D01* X28889Y25184D01* X28826Y25247D01* Y25752D01* X28889Y25815D01* X28845Y25846D01* X28826Y25854D01* Y27154D01* X28869Y27184D01* X28826Y27227D01* Y27772D01* X28869Y27815D01* X28826Y27845D01* Y29169D01* X28849Y29184D01* X28826Y29207D01* Y29792D01* X28849Y29815D01* X28826Y29831D01* Y31183D01* X28829Y31184D01* X28826Y31187D01* Y31812D01* X28829Y31815D01* X28826Y31817D01* Y33308D01* X28880Y33255D01* X28906Y33293D01* Y31734D01* X28900Y31744D01* X28828Y31673D01* X28844Y31650D01* X28866Y31602D01* X28880Y31552D01* X28885Y31500D01* X28880Y31447D01* X28866Y31397D01* X28844Y31350D01* X28828Y31327D01* X28900Y31255D01* X28906Y31265D01* Y29731D01* X28848Y29673D01* X28864Y29650D01* X28886Y29602D01* X28900Y29552D01* X28905Y29500D01* X28900Y29447D01* X28886Y29397D01* X28864Y29350D01* X28848Y29327D01* X28906Y29268D01* Y27711D01* X28868Y27673D01* X28884Y27650D01* X28906Y27602D01* Y27397D01* X28884Y27350D01* X28868Y27327D01* X28906Y27288D01* Y25691D01* X28888Y25673D01* X28904Y25650D01* X28906Y25645D01* Y25354D01* X28904Y25350D01* X28888Y25327D01* X28906Y25308D01* Y23817D01* G37* G36* Y33706D02*X28880Y33744D01* X28826Y33691D01* Y35288D01* X28860Y35255D01* X28891Y35300D01* X28906Y35333D01* Y33706D01* G37* G36* Y35666D02*X28891Y35700D01* X28860Y35744D01* X28826Y35711D01* Y37268D01* X28840Y37255D01* X28871Y37300D01* X28900Y37363D01* X28906Y37385D01* Y35666D01* G37* G36* Y40000D02*X28986D01* Y29614D01* X28980Y29636D01* X28951Y29700D01* X28920Y29744D01* X28906Y29731D01* Y31265D01* X28931Y31300D01* X28960Y31363D01* X28978Y31430D01* X28985Y31500D01* X28978Y31569D01* X28960Y31636D01* X28931Y31700D01* X28906Y31734D01* Y33293D01* X28911Y33300D01* X28940Y33363D01* X28958Y33430D01* X28965Y33500D01* X28958Y33569D01* X28940Y33636D01* X28911Y33700D01* X28906Y33706D01* Y35333D01* X28920Y35363D01* X28938Y35430D01* X28945Y35500D01* X28938Y35569D01* X28920Y35636D01* X28906Y35666D01* Y37385D01* X28918Y37430D01* X28925Y37500D01* X28918Y37569D01* X28906Y37614D01* Y40000D01* G37* G36* X28986Y0D02*X28906D01* Y1101D01* X28954Y1106D01* X28986Y1114D01* Y0D01* G37* G36* Y1217D02*X28937Y1204D01* X28906Y1201D01* Y1798D01* X28937Y1795D01* X28986Y1782D01* Y1217D01* G37* G36* Y1885D02*X28954Y1893D01* X28906Y1898D01* Y3103D01* X28934Y3106D01* X28986Y3120D01* Y1885D01* G37* G36* Y3227D02*X28967Y3218D01* X28917Y3204D01* X28906Y3203D01* Y3796D01* X28917Y3795D01* X28967Y3781D01* X28986Y3772D01* Y3227D01* G37* G36* Y3879D02*X28934Y3893D01* X28906Y3896D01* Y5105D01* X28914Y5106D01* X28981Y5124D01* X28986Y5126D01* Y3879D01* G37* G36* Y5236D02*X28947Y5218D01* X28906Y5207D01* Y5792D01* X28947Y5781D01* X28986Y5763D01* Y5236D01* G37* G36* Y5873D02*X28981Y5875D01* X28914Y5893D01* X28906Y5894D01* Y7109D01* X28961Y7124D01* X28986Y7135D01* Y5873D01* G37* G36* Y7248D02*X28975Y7240D01* X28927Y7218D01* X28906Y7212D01* Y7787D01* X28927Y7781D01* X28975Y7759D01* X28986Y7751D01* Y7248D01* G37* G36* Y7864D02*X28961Y7875D01* X28906Y7890D01* Y9114D01* X28941Y9124D01* X28986Y9145D01* Y7864D01* G37* G36* Y9247D02*X28978Y9256D01* X28955Y9240D01* X28907Y9218D01* X28906Y9217D01* Y9782D01* X28907Y9781D01* X28955Y9759D01* X28978Y9743D01* X28986Y9752D01* Y9247D01* G37* G36* Y9854D02*X28941Y9875D01* X28906Y9885D01* Y11120D01* X28921Y11124D01* X28985Y11153D01* X28986Y11154D01* Y9854D01* G37* G36* Y11227D02*X28958Y11256D01* X28935Y11240D01* X28906Y11227D01* Y11772D01* X28935Y11759D01* X28958Y11743D01* X28986Y11772D01* Y11227D01* G37* G36* Y11845D02*X28985Y11846D01* X28921Y11875D01* X28906Y11879D01* Y13126D01* X28965Y13153D01* X28986Y13169D01* Y11845D01* G37* G36* Y13207D02*X28938Y13256D01* X28915Y13240D01* X28906Y13236D01* Y13763D01* X28915Y13759D01* X28938Y13743D01* X28986Y13792D01* Y13207D01* G37* G36* Y13831D02*X28965Y13846D01* X28906Y13873D01* Y15135D01* X28945Y15153D01* X28986Y15183D01* Y13831D01* G37* G36* Y15187D02*X28918Y15256D01* X28906Y15248D01* Y15751D01* X28918Y15743D01* X28986Y15812D01* Y15187D01* G37* G36* Y15817D02*X28945Y15846D01* X28906Y15864D01* Y17145D01* X28925Y17153D01* X28969Y17184D01* X28906Y17247D01* Y17752D01* X28969Y17815D01* X28925Y17846D01* X28906Y17854D01* Y19154D01* X28949Y19184D01* X28906Y19227D01* Y19772D01* X28949Y19815D01* X28906Y19845D01* Y21169D01* X28929Y21184D01* X28906Y21207D01* Y21792D01* X28929Y21815D01* X28906Y21831D01* Y23183D01* X28909Y23184D01* X28906Y23187D01* Y23812D01* X28909Y23815D01* X28906Y23817D01* Y25308D01* X28960Y25255D01* X28986Y25293D01* Y23734D01* X28980Y23744D01* X28908Y23673D01* X28924Y23650D01* X28946Y23602D01* X28960Y23552D01* X28965Y23500D01* X28960Y23447D01* X28946Y23397D01* X28924Y23350D01* X28908Y23327D01* X28980Y23255D01* X28986Y23265D01* Y21731D01* X28928Y21673D01* X28944Y21650D01* X28966Y21602D01* X28980Y21552D01* X28985Y21500D01* X28980Y21447D01* X28966Y21397D01* X28944Y21350D01* X28928Y21327D01* X28986Y21268D01* Y19711D01* X28948Y19673D01* X28964Y19650D01* X28986Y19602D01* Y19397D01* X28964Y19350D01* X28948Y19327D01* X28986Y19288D01* Y17691D01* X28968Y17673D01* X28984Y17650D01* X28986Y17645D01* Y17354D01* X28984Y17350D01* X28968Y17327D01* X28986Y17308D01* Y15817D01* G37* G36* Y25706D02*X28960Y25744D01* X28906Y25691D01* Y27288D01* X28940Y27255D01* X28971Y27300D01* X28986Y27333D01* Y25706D01* G37* G36* Y27666D02*X28971Y27700D01* X28940Y27744D01* X28906Y27711D01* Y29268D01* X28920Y29255D01* X28951Y29300D01* X28980Y29363D01* X28986Y29385D01* Y27666D01* G37* G36* Y40000D02*X29066D01* Y21614D01* X29060Y21636D01* X29031Y21700D01* X29000Y21744D01* X28986Y21731D01* Y23265D01* X29011Y23300D01* X29040Y23363D01* X29058Y23430D01* X29065Y23500D01* X29058Y23569D01* X29040Y23636D01* X29011Y23700D01* X28986Y23734D01* Y25293D01* X28991Y25300D01* X29020Y25363D01* X29038Y25430D01* X29045Y25500D01* X29038Y25569D01* X29020Y25636D01* X28991Y25700D01* X28986Y25706D01* Y27333D01* X29000Y27363D01* X29018Y27430D01* X29025Y27500D01* X29018Y27569D01* X29000Y27636D01* X28986Y27666D01* Y29385D01* X28998Y29430D01* X29005Y29500D01* X28998Y29569D01* X28986Y29614D01* Y40000D01* G37* G36* X29066Y0D02*X28986D01* Y1114D01* X29021Y1124D01* X29066Y1145D01* Y0D01* G37* G36* Y1247D02*X29058Y1256D01* X29035Y1240D01* X28987Y1218D01* X28986Y1217D01* Y1782D01* X28987Y1781D01* X29035Y1759D01* X29058Y1743D01* X29066Y1752D01* Y1247D01* G37* G36* Y1854D02*X29021Y1875D01* X28986Y1885D01* Y3120D01* X29001Y3124D01* X29065Y3153D01* X29066Y3154D01* Y1854D01* G37* G36* Y3227D02*X29038Y3256D01* X29015Y3240D01* X28986Y3227D01* Y3772D01* X29015Y3759D01* X29038Y3743D01* X29066Y3772D01* Y3227D01* G37* G36* Y3845D02*X29065Y3846D01* X29001Y3875D01* X28986Y3879D01* Y5126D01* X29045Y5153D01* X29066Y5169D01* Y3845D01* G37* G36* Y5207D02*X29018Y5256D01* X28995Y5240D01* X28986Y5236D01* Y5763D01* X28995Y5759D01* X29018Y5743D01* X29066Y5792D01* Y5207D01* G37* G36* Y5831D02*X29045Y5846D01* X28986Y5873D01* Y7135D01* X29025Y7153D01* X29066Y7183D01* Y5831D01* G37* G36* Y7187D02*X28998Y7256D01* X28986Y7248D01* Y7751D01* X28998Y7743D01* X29066Y7812D01* Y7187D01* G37* G36* Y7817D02*X29025Y7846D01* X28986Y7864D01* Y9145D01* X29005Y9153D01* X29049Y9184D01* X28986Y9247D01* Y9752D01* X29049Y9815D01* X29005Y9846D01* X28986Y9854D01* Y11154D01* X29029Y11184D01* X28986Y11227D01* Y11772D01* X29029Y11815D01* X28986Y11845D01* Y13169D01* X29009Y13184D01* X28986Y13207D01* Y13792D01* X29009Y13815D01* X28986Y13831D01* Y15183D01* X28989Y15184D01* X28986Y15187D01* Y15812D01* X28989Y15815D01* X28986Y15817D01* Y17308D01* X29040Y17255D01* X29066Y17293D01* Y15734D01* X29060Y15744D01* X28988Y15673D01* X29004Y15650D01* X29026Y15602D01* X29040Y15552D01* X29045Y15500D01* X29040Y15447D01* X29026Y15397D01* X29004Y15350D01* X28988Y15327D01* X29060Y15255D01* X29066Y15265D01* Y13731D01* X29008Y13673D01* X29024Y13650D01* X29046Y13602D01* X29060Y13552D01* X29065Y13500D01* X29060Y13447D01* X29046Y13397D01* X29024Y13350D01* X29008Y13327D01* X29066Y13268D01* Y11711D01* X29028Y11673D01* X29044Y11650D01* X29066Y11602D01* Y11397D01* X29044Y11350D01* X29028Y11327D01* X29066Y11288D01* Y9691D01* X29048Y9673D01* X29064Y9650D01* X29066Y9645D01* Y9354D01* X29064Y9350D01* X29048Y9327D01* X29066Y9308D01* Y7817D01* G37* G36* Y17706D02*X29040Y17744D01* X28986Y17691D01* Y19288D01* X29020Y19255D01* X29051Y19300D01* X29066Y19333D01* Y17706D01* G37* G36* Y19666D02*X29051Y19700D01* X29020Y19744D01* X28986Y19711D01* Y21268D01* X29000Y21255D01* X29031Y21300D01* X29060Y21363D01* X29066Y21385D01* Y19666D01* G37* G36* Y40000D02*X29146D01* Y13614D01* X29140Y13636D01* X29111Y13700D01* X29080Y13744D01* X29066Y13731D01* Y15265D01* X29091Y15300D01* X29120Y15363D01* X29138Y15430D01* X29145Y15500D01* X29138Y15569D01* X29120Y15636D01* X29091Y15700D01* X29066Y15734D01* Y17293D01* X29071Y17300D01* X29100Y17363D01* X29118Y17430D01* X29125Y17500D01* X29118Y17569D01* X29100Y17636D01* X29071Y17700D01* X29066Y17706D01* Y19333D01* X29080Y19363D01* X29098Y19430D01* X29105Y19500D01* X29098Y19569D01* X29080Y19636D01* X29066Y19666D01* Y21385D01* X29078Y21430D01* X29085Y21500D01* X29078Y21569D01* X29066Y21614D01* Y40000D01* G37* G36* X29146Y0D02*X29066D01* Y1145D01* X29085Y1153D01* X29129Y1184D01* X29066Y1247D01* Y1752D01* X29129Y1815D01* X29085Y1846D01* X29066Y1854D01* Y3154D01* X29109Y3184D01* X29066Y3227D01* Y3772D01* X29109Y3815D01* X29066Y3845D01* Y5169D01* X29089Y5184D01* X29066Y5207D01* Y5792D01* X29089Y5815D01* X29066Y5831D01* Y7183D01* X29069Y7184D01* X29066Y7187D01* Y7812D01* X29069Y7815D01* X29066Y7817D01* Y9308D01* X29120Y9255D01* X29146Y9293D01* Y7734D01* X29140Y7744D01* X29068Y7673D01* X29084Y7650D01* X29106Y7602D01* X29120Y7552D01* X29125Y7500D01* X29120Y7447D01* X29106Y7397D01* X29084Y7350D01* X29068Y7327D01* X29140Y7255D01* X29146Y7265D01* Y5731D01* X29088Y5673D01* X29104Y5650D01* X29126Y5602D01* X29140Y5552D01* X29145Y5500D01* X29140Y5447D01* X29126Y5397D01* X29104Y5350D01* X29088Y5327D01* X29146Y5268D01* Y3711D01* X29108Y3673D01* X29124Y3650D01* X29146Y3602D01* Y3397D01* X29124Y3350D01* X29108Y3327D01* X29146Y3288D01* Y1691D01* X29128Y1673D01* X29144Y1650D01* X29146Y1645D01* Y1354D01* X29144Y1350D01* X29128Y1327D01* X29146Y1308D01* Y0D01* G37* G36* Y9706D02*X29120Y9744D01* X29066Y9691D01* Y11288D01* X29100Y11255D01* X29131Y11300D01* X29146Y11333D01* Y9706D01* G37* G36* Y11666D02*X29131Y11700D01* X29100Y11744D01* X29066Y11711D01* Y13268D01* X29080Y13255D01* X29111Y13300D01* X29140Y13363D01* X29146Y13385D01* Y11666D01* G37* G36* Y40000D02*X30183D01* Y39735D01* X30158Y39700D01* X30129Y39636D01* X30111Y39569D01* X30105Y39500D01* X30111Y39430D01* X30129Y39363D01* X30158Y39300D01* X30183Y39264D01* Y37706D01* X30178Y37700D01* X30149Y37636D01* X30131Y37569D01* X30125Y37500D01* X30131Y37430D01* X30149Y37363D01* X30178Y37300D01* X30183Y37293D01* Y35667D01* X30169Y35636D01* X30151Y35569D01* X30145Y35500D01* X30151Y35430D01* X30169Y35363D01* X30183Y35333D01* Y33614D01* X30171Y33569D01* X30165Y33500D01* X30171Y33430D01* X30183Y33385D01* Y0D01* X29146D01* Y1308D01* X29200Y1255D01* X29231Y1300D01* X29260Y1363D01* X29278Y1430D01* X29285Y1500D01* X29278Y1569D01* X29260Y1636D01* X29231Y1700D01* X29200Y1744D01* X29146Y1691D01* Y3288D01* X29180Y3255D01* X29211Y3300D01* X29240Y3363D01* X29258Y3430D01* X29265Y3500D01* X29258Y3569D01* X29240Y3636D01* X29211Y3700D01* X29180Y3744D01* X29146Y3711D01* Y5268D01* X29160Y5255D01* X29191Y5300D01* X29220Y5363D01* X29238Y5430D01* X29245Y5500D01* X29238Y5569D01* X29220Y5636D01* X29191Y5700D01* X29160Y5744D01* X29146Y5731D01* Y7265D01* X29171Y7300D01* X29200Y7363D01* X29218Y7430D01* X29225Y7500D01* X29218Y7569D01* X29200Y7636D01* X29171Y7700D01* X29146Y7734D01* Y9293D01* X29151Y9300D01* X29180Y9363D01* X29198Y9430D01* X29205Y9500D01* X29198Y9569D01* X29180Y9636D01* X29151Y9700D01* X29146Y9706D01* Y11333D01* X29160Y11363D01* X29178Y11430D01* X29185Y11500D01* X29178Y11569D01* X29160Y11636D01* X29146Y11666D01* Y13385D01* X29158Y13430D01* X29165Y13500D01* X29158Y13569D01* X29146Y13614D01* Y40000D01* G37* G36* Y3602D02*X29160Y3552D01* X29165Y3500D01* X29160Y3447D01* X29146Y3397D01* Y3602D01* G37* G36* Y1645D02*X29166Y1602D01* X29180Y1552D01* X29185Y1500D01* X29180Y1447D01* X29166Y1397D01* X29146Y1354D01* Y1645D01* G37* G36* X29066Y11602D02*X29080Y11552D01* X29085Y11500D01* X29080Y11447D01* X29066Y11397D01* Y11602D01* G37* G36* Y9645D02*X29086Y9602D01* X29100Y9552D01* X29105Y9500D01* X29100Y9447D01* X29086Y9397D01* X29066Y9354D01* Y9645D01* G37* G36* X30183Y40000D02*X30263D01* Y39817D01* X30260Y39815D01* X30263Y39812D01* Y39187D01* X30260Y39184D01* X30263Y39182D01* Y37691D01* X30209Y37744D01* X30183Y37706D01* Y39264D01* X30189Y39255D01* X30261Y39327D01* X30245Y39350D01* X30223Y39397D01* X30209Y39447D01* X30205Y39500D01* X30209Y39552D01* X30223Y39602D01* X30245Y39650D01* X30261Y39673D01* X30189Y39744D01* X30183Y39735D01* Y40000D01* G37* G36* X30263Y0D02*X30183D01* Y33385D01* X30189Y33363D01* X30218Y33300D01* X30249Y33255D01* X30263Y33268D01* Y31735D01* X30238Y31700D01* X30209Y31636D01* X30191Y31569D01* X30185Y31500D01* X30191Y31430D01* X30209Y31363D01* X30238Y31300D01* X30263Y31264D01* Y29706D01* X30258Y29700D01* X30229Y29636D01* X30211Y29569D01* X30205Y29500D01* X30211Y29430D01* X30229Y29363D01* X30258Y29300D01* X30263Y29293D01* Y27667D01* X30249Y27636D01* X30231Y27569D01* X30225Y27500D01* X30231Y27430D01* X30249Y27363D01* X30263Y27333D01* Y25614D01* X30251Y25569D01* X30245Y25500D01* X30251Y25430D01* X30263Y25385D01* Y0D01* G37* G36* Y33731D02*X30249Y33744D01* X30218Y33700D01* X30189Y33636D01* X30183Y33614D01* Y35333D01* X30198Y35300D01* X30229Y35255D01* X30263Y35288D01* Y33731D01* G37* G36* Y35397D02*X30263Y35397D01* X30249Y35447D01* X30245Y35500D01* X30249Y35552D01* X30263Y35602D01* X30263Y35602D01* Y35397D01* G37* G36* Y35711D02*X30229Y35744D01* X30198Y35700D01* X30183Y35667D01* Y37293D01* X30209Y37255D01* X30263Y37308D01* Y35711D01* G37* G36* Y37354D02*X30243Y37397D01* X30229Y37447D01* X30225Y37500D01* X30229Y37552D01* X30243Y37602D01* X30263Y37645D01* Y37354D01* G37* G36* Y40000D02*X30505D01* Y39900D01* X30435Y39893D01* X30368Y39875D01* X30305Y39846D01* X30263Y39817D01* Y40000D01* G37* G36* Y39812D02*X30332Y39743D01* X30355Y39759D01* X30402Y39781D01* X30452Y39795D01* X30505Y39800D01* Y39200D01* X30452Y39204D01* X30402Y39218D01* X30355Y39240D01* X30332Y39256D01* X30263Y39187D01* Y39812D01* G37* G36* Y39182D02*X30305Y39153D01* X30343Y39135D01* Y37854D01* X30325Y37846D01* X30280Y37815D01* X30343Y37752D01* Y37247D01* X30280Y37184D01* X30325Y37153D01* X30343Y37145D01* Y35845D01* X30300Y35815D01* X30343Y35772D01* Y35227D01* X30300Y35184D01* X30343Y35154D01* Y33831D01* X30320Y33815D01* X30343Y33792D01* Y33207D01* X30320Y33184D01* X30343Y33168D01* Y31817D01* X30340Y31815D01* X30343Y31812D01* Y31187D01* X30340Y31184D01* X30343Y31182D01* Y29691D01* X30289Y29744D01* X30263Y29706D01* Y31264D01* X30269Y31255D01* X30341Y31327D01* X30325Y31350D01* X30303Y31397D01* X30289Y31447D01* X30285Y31500D01* X30289Y31552D01* X30303Y31602D01* X30325Y31650D01* X30341Y31673D01* X30269Y31744D01* X30263Y31735D01* Y33268D01* X30321Y33327D01* X30305Y33350D01* X30283Y33397D01* X30269Y33447D01* X30265Y33500D01* X30269Y33552D01* X30283Y33602D01* X30305Y33650D01* X30321Y33673D01* X30263Y33731D01* Y35288D01* X30301Y35327D01* X30285Y35350D01* X30263Y35397D01* Y35602D01* X30285Y35650D01* X30301Y35673D01* X30263Y35711D01* Y37308D01* X30281Y37327D01* X30265Y37350D01* X30263Y37354D01* Y37645D01* X30265Y37650D01* X30281Y37673D01* X30263Y37691D01* Y39182D01* G37* G36* X30343Y0D02*X30263D01* Y25385D01* X30269Y25363D01* X30298Y25300D01* X30329Y25255D01* X30343Y25268D01* Y23735D01* X30318Y23700D01* X30289Y23636D01* X30271Y23569D01* X30265Y23500D01* X30271Y23430D01* X30289Y23363D01* X30318Y23300D01* X30343Y23264D01* Y21706D01* X30338Y21700D01* X30309Y21636D01* X30291Y21569D01* X30285Y21500D01* X30291Y21430D01* X30309Y21363D01* X30338Y21300D01* X30343Y21293D01* Y19667D01* X30329Y19636D01* X30311Y19569D01* X30305Y19500D01* X30311Y19430D01* X30329Y19363D01* X30343Y19333D01* Y17614D01* X30331Y17569D01* X30325Y17500D01* X30331Y17430D01* X30343Y17385D01* Y0D01* G37* G36* Y25731D02*X30329Y25744D01* X30298Y25700D01* X30269Y25636D01* X30263Y25614D01* Y27333D01* X30278Y27300D01* X30309Y27255D01* X30343Y27288D01* Y25731D01* G37* G36* Y27397D02*X30343Y27397D01* X30329Y27447D01* X30325Y27500D01* X30329Y27552D01* X30343Y27602D01* X30343Y27602D01* Y27397D01* G37* G36* Y27711D02*X30309Y27744D01* X30278Y27700D01* X30263Y27667D01* Y29293D01* X30289Y29255D01* X30343Y29308D01* Y27711D01* G37* G36* Y29354D02*X30323Y29397D01* X30309Y29447D01* X30305Y29500D01* X30309Y29552D01* X30323Y29602D01* X30343Y29645D01* Y29354D01* G37* G36* Y39135D02*X30368Y39124D01* X30435Y39106D01* X30505Y39100D01* Y37898D01* X30455Y37893D01* X30388Y37875D01* X30343Y37854D01* Y39135D01* G37* G36* Y37752D02*X30352Y37743D01* X30375Y37759D01* X30422Y37781D01* X30472Y37795D01* X30505Y37798D01* Y37201D01* X30472Y37204D01* X30422Y37218D01* X30375Y37240D01* X30352Y37256D01* X30343Y37247D01* Y37752D01* G37* G36* Y37145D02*X30388Y37124D01* X30455Y37106D01* X30505Y37101D01* Y35896D01* X30475Y35893D01* X30408Y35875D01* X30345Y35846D01* X30343Y35845D01* Y37145D01* G37* G36* Y35772D02*X30372Y35743D01* X30395Y35759D01* X30442Y35781D01* X30492Y35795D01* X30505Y35796D01* Y35203D01* X30492Y35204D01* X30442Y35218D01* X30395Y35240D01* X30372Y35256D01* X30343Y35227D01* Y35772D01* G37* G36* Y35154D02*X30345Y35153D01* X30408Y35124D01* X30475Y35106D01* X30505Y35103D01* Y33894D01* X30495Y33893D01* X30428Y33875D01* X30365Y33846D01* X30343Y33831D01* Y35154D01* G37* G36* Y33792D02*X30392Y33743D01* X30415Y33759D01* X30462Y33781D01* X30505Y33793D01* Y33206D01* X30462Y33218D01* X30415Y33240D01* X30392Y33256D01* X30343Y33207D01* Y33792D01* G37* G36* Y33168D02*X30365Y33153D01* X30428Y33124D01* X30495Y33106D01* X30505Y33105D01* Y31891D01* X30448Y31875D01* X30385Y31846D01* X30343Y31817D01* Y33168D01* G37* G36* Y31812D02*X30412Y31743D01* X30435Y31759D01* X30482Y31781D01* X30505Y31787D01* Y31212D01* X30482Y31218D01* X30435Y31240D01* X30412Y31256D01* X30343Y31187D01* Y31812D01* G37* G36* Y31182D02*X30385Y31153D01* X30423Y31135D01* Y29854D01* X30405Y29846D01* X30360Y29815D01* X30423Y29752D01* Y29247D01* X30360Y29184D01* X30405Y29153D01* X30423Y29145D01* Y27845D01* X30380Y27815D01* X30423Y27772D01* Y27227D01* X30380Y27184D01* X30423Y27154D01* Y25831D01* X30400Y25815D01* X30423Y25792D01* Y25207D01* X30400Y25184D01* X30423Y25168D01* Y23817D01* X30420Y23815D01* X30423Y23812D01* Y23187D01* X30420Y23184D01* X30423Y23182D01* Y21691D01* X30369Y21744D01* X30343Y21706D01* Y23264D01* X30349Y23255D01* X30421Y23327D01* X30405Y23350D01* X30383Y23397D01* X30369Y23447D01* X30365Y23500D01* X30369Y23552D01* X30383Y23602D01* X30405Y23650D01* X30421Y23673D01* X30349Y23744D01* X30343Y23735D01* Y25268D01* X30401Y25327D01* X30385Y25350D01* X30363Y25397D01* X30349Y25447D01* X30345Y25500D01* X30349Y25552D01* X30363Y25602D01* X30385Y25650D01* X30401Y25673D01* X30343Y25731D01* Y27288D01* X30381Y27327D01* X30365Y27350D01* X30343Y27397D01* Y27602D01* X30365Y27650D01* X30381Y27673D01* X30343Y27711D01* Y29308D01* X30361Y29327D01* X30345Y29350D01* X30343Y29354D01* Y29645D01* X30345Y29650D01* X30361Y29673D01* X30343Y29691D01* Y31182D01* G37* G36* X30423Y13706D02*X30418Y13700D01* X30389Y13636D01* X30371Y13569D01* X30365Y13500D01* X30371Y13430D01* X30389Y13363D01* X30418Y13300D01* X30423Y13293D01* Y11667D01* X30409Y11636D01* X30391Y11569D01* X30385Y11500D01* X30391Y11430D01* X30409Y11363D01* X30423Y11333D01* Y9614D01* X30411Y9569D01* X30405Y9500D01* X30411Y9430D01* X30423Y9385D01* Y0D01* X30343D01* Y17385D01* X30349Y17363D01* X30378Y17300D01* X30409Y17255D01* X30423Y17268D01* Y15735D01* X30398Y15700D01* X30369Y15636D01* X30351Y15569D01* X30345Y15500D01* X30351Y15430D01* X30369Y15363D01* X30398Y15300D01* X30423Y15264D01* Y13706D01* G37* G36* Y17731D02*X30409Y17744D01* X30378Y17700D01* X30349Y17636D01* X30343Y17614D01* Y19333D01* X30358Y19300D01* X30389Y19255D01* X30423Y19288D01* Y17731D01* G37* G36* Y19397D02*X30423Y19397D01* X30409Y19447D01* X30405Y19500D01* X30409Y19552D01* X30423Y19602D01* X30423Y19602D01* Y19397D01* G37* G36* Y19711D02*X30389Y19744D01* X30358Y19700D01* X30343Y19667D01* Y21293D01* X30369Y21255D01* X30423Y21308D01* Y19711D01* G37* G36* Y21354D02*X30403Y21397D01* X30389Y21447D01* X30385Y21500D01* X30389Y21552D01* X30403Y21602D01* X30423Y21645D01* Y21354D01* G37* G36* Y31135D02*X30448Y31124D01* X30505Y31108D01* Y29885D01* X30468Y29875D01* X30423Y29854D01* Y31135D01* G37* G36* Y29752D02*X30432Y29743D01* X30455Y29759D01* X30502Y29781D01* X30505Y29782D01* Y29217D01* X30502Y29218D01* X30455Y29240D01* X30432Y29256D01* X30423Y29247D01* Y29752D01* G37* G36* Y29145D02*X30468Y29124D01* X30505Y29114D01* Y27880D01* X30488Y27875D01* X30425Y27846D01* X30423Y27845D01* Y29145D01* G37* G36* Y27772D02*X30452Y27743D01* X30475Y27759D01* X30505Y27773D01* Y27226D01* X30475Y27240D01* X30452Y27256D01* X30423Y27227D01* Y27772D01* G37* G36* Y27154D02*X30425Y27153D01* X30488Y27124D01* X30505Y27119D01* Y25874D01* X30445Y25846D01* X30423Y25831D01* Y27154D01* G37* G36* Y25792D02*X30472Y25743D01* X30495Y25759D01* X30505Y25764D01* Y25235D01* X30495Y25240D01* X30472Y25256D01* X30423Y25207D01* Y25792D01* G37* G36* Y25168D02*X30445Y25153D01* X30505Y25125D01* Y23865D01* X30465Y23846D01* X30423Y23817D01* Y25168D01* G37* G36* Y23812D02*X30492Y23743D01* X30505Y23752D01* Y23247D01* X30492Y23256D01* X30423Y23187D01* Y23812D01* G37* G36* Y23182D02*X30465Y23153D01* X30505Y23134D01* Y21855D01* X30485Y21846D01* X30440Y21815D01* X30505Y21750D01* Y21249D01* X30440Y21184D01* X30485Y21153D01* X30505Y21144D01* Y19846D01* X30460Y19815D01* X30505Y19770D01* Y19229D01* X30460Y19184D01* X30505Y19153D01* Y17832D01* X30480Y17815D01* X30505Y17790D01* Y17209D01* X30480Y17184D01* X30505Y17167D01* Y15818D01* X30500Y15815D01* X30505Y15810D01* Y15189D01* X30500Y15184D01* X30505Y15181D01* Y13689D01* X30449Y13744D01* X30423Y13706D01* Y15264D01* X30429Y15255D01* X30501Y15327D01* X30485Y15350D01* X30463Y15397D01* X30449Y15447D01* X30445Y15500D01* X30449Y15552D01* X30463Y15602D01* X30485Y15650D01* X30501Y15673D01* X30429Y15744D01* X30423Y15735D01* Y17268D01* X30481Y17327D01* X30465Y17350D01* X30443Y17397D01* X30429Y17447D01* X30425Y17500D01* X30429Y17552D01* X30443Y17602D01* X30465Y17650D01* X30481Y17673D01* X30423Y17731D01* Y19288D01* X30461Y19327D01* X30445Y19350D01* X30423Y19397D01* Y19602D01* X30445Y19650D01* X30461Y19673D01* X30423Y19711D01* Y21308D01* X30441Y21327D01* X30425Y21350D01* X30423Y21354D01* Y21645D01* X30425Y21650D01* X30441Y21673D01* X30423Y21691D01* Y23182D01* G37* G36* Y13293D02*X30449Y13255D01* X30505Y13310D01* Y11709D01* X30469Y11744D01* X30438Y11700D01* X30423Y11667D01* Y13293D01* G37* G36* Y11333D02*X30438Y11300D01* X30469Y11255D01* X30505Y11290D01* Y9729D01* X30489Y9744D01* X30458Y9700D01* X30429Y9636D01* X30423Y9614D01* Y11333D01* G37* G36* Y9385D02*X30429Y9363D01* X30458Y9300D01* X30489Y9255D01* X30505Y9270D01* Y7737D01* X30478Y7700D01* X30449Y7636D01* X30431Y7569D01* X30425Y7500D01* X30431Y7430D01* X30449Y7363D01* X30478Y7300D01* X30505Y7262D01* Y5709D01* X30498Y5700D01* X30469Y5636D01* X30451Y5569D01* X30445Y5500D01* X30451Y5430D01* X30469Y5363D01* X30498Y5300D01* X30505Y5290D01* Y3670D01* X30489Y3636D01* X30471Y3569D01* X30465Y3500D01* X30471Y3430D01* X30489Y3363D01* X30505Y3329D01* Y1621D01* X30491Y1569D01* X30485Y1500D01* X30491Y1430D01* X30505Y1378D01* Y0D01* X30423D01* Y9385D01* G37* G36* X30505Y13350D02*X30483Y13397D01* X30469Y13447D01* X30465Y13500D01* X30469Y13552D01* X30483Y13602D01* X30505Y13649D01* Y13350D01* G37* G36* Y11393D02*X30503Y11397D01* X30489Y11447D01* X30485Y11500D01* X30489Y11552D01* X30503Y11602D01* X30505Y11606D01* Y11393D01* G37* G36* Y40000D02*X30826D01* Y39734D01* X30820Y39744D01* X30748Y39673D01* X30764Y39650D01* X30786Y39602D01* X30800Y39552D01* X30805Y39500D01* X30800Y39447D01* X30786Y39397D01* X30764Y39350D01* X30748Y39327D01* X30820Y39255D01* X30826Y39265D01* Y37731D01* X30768Y37673D01* X30784Y37650D01* X30806Y37602D01* X30820Y37552D01* X30825Y37500D01* X30820Y37447D01* X30806Y37397D01* X30784Y37350D01* X30768Y37327D01* X30826Y37268D01* Y35711D01* X30788Y35673D01* X30804Y35650D01* X30826Y35602D01* Y35397D01* X30804Y35350D01* X30788Y35327D01* X30826Y35288D01* Y33691D01* X30808Y33673D01* X30824Y33650D01* X30826Y33645D01* Y33354D01* X30824Y33350D01* X30808Y33327D01* X30826Y33308D01* Y31817D01* X30785Y31846D01* X30721Y31875D01* X30654Y31893D01* X30585Y31900D01* X30515Y31893D01* X30505Y31891D01* Y33105D01* X30565Y33100D01* X30634Y33106D01* X30701Y33124D01* X30765Y33153D01* X30809Y33184D01* X30738Y33256D01* X30715Y33240D01* X30667Y33218D01* X30617Y33204D01* X30565Y33200D01* X30512Y33204D01* X30505Y33206D01* Y33793D01* X30512Y33795D01* X30565Y33800D01* X30617Y33795D01* X30667Y33781D01* X30715Y33759D01* X30738Y33743D01* X30809Y33815D01* X30765Y33846D01* X30701Y33875D01* X30634Y33893D01* X30565Y33900D01* X30505Y33894D01* Y35103D01* X30545Y35100D01* X30614Y35106D01* X30681Y35124D01* X30745Y35153D01* X30789Y35184D01* X30718Y35256D01* X30695Y35240D01* X30647Y35218D01* X30597Y35204D01* X30545Y35200D01* X30505Y35203D01* Y35796D01* X30545Y35800D01* X30597Y35795D01* X30647Y35781D01* X30695Y35759D01* X30718Y35743D01* X30789Y35815D01* X30745Y35846D01* X30681Y35875D01* X30614Y35893D01* X30545Y35900D01* X30505Y35896D01* Y37101D01* X30525Y37100D01* X30594Y37106D01* X30661Y37124D01* X30725Y37153D01* X30769Y37184D01* X30698Y37256D01* X30675Y37240D01* X30627Y37218D01* X30577Y37204D01* X30525Y37200D01* X30505Y37201D01* Y37798D01* X30525Y37800D01* X30577Y37795D01* X30627Y37781D01* X30675Y37759D01* X30698Y37743D01* X30769Y37815D01* X30725Y37846D01* X30661Y37875D01* X30594Y37893D01* X30525Y37900D01* X30505Y37898D01* Y39100D01* X30574Y39106D01* X30641Y39124D01* X30705Y39153D01* X30749Y39184D01* X30678Y39256D01* X30655Y39240D01* X30607Y39218D01* X30557Y39204D01* X30505Y39200D01* Y39800D01* X30557Y39795D01* X30607Y39781D01* X30655Y39759D01* X30678Y39743D01* X30749Y39815D01* X30705Y39846D01* X30641Y39875D01* X30574Y39893D01* X30505Y39900D01* Y40000D01* G37* G36* Y31787D02*X30532Y31795D01* X30585Y31800D01* X30637Y31795D01* X30687Y31781D01* X30735Y31759D01* X30758Y31743D01* X30826Y31812D01* Y31187D01* X30758Y31256D01* X30735Y31240D01* X30687Y31218D01* X30637Y31204D01* X30585Y31200D01* X30532Y31204D01* X30505Y31212D01* Y31787D01* G37* G36* Y31108D02*X30515Y31106D01* X30585Y31100D01* X30654Y31106D01* X30721Y31124D01* X30785Y31153D01* X30826Y31183D01* Y29831D01* X30805Y29846D01* X30741Y29875D01* X30674Y29893D01* X30605Y29900D01* X30535Y29893D01* X30505Y29885D01* Y31108D01* G37* G36* Y29782D02*X30552Y29795D01* X30605Y29800D01* X30657Y29795D01* X30707Y29781D01* X30755Y29759D01* X30778Y29743D01* X30826Y29792D01* Y29207D01* X30778Y29256D01* X30755Y29240D01* X30707Y29218D01* X30657Y29204D01* X30605Y29200D01* X30552Y29204D01* X30505Y29217D01* Y29782D01* G37* G36* Y29114D02*X30535Y29106D01* X30605Y29100D01* X30674Y29106D01* X30741Y29124D01* X30805Y29153D01* X30826Y29169D01* Y27845D01* X30825Y27846D01* X30761Y27875D01* X30694Y27893D01* X30625Y27900D01* X30555Y27893D01* X30505Y27880D01* Y29114D01* G37* G36* Y27773D02*X30522Y27781D01* X30572Y27795D01* X30625Y27800D01* X30677Y27795D01* X30727Y27781D01* X30775Y27759D01* X30798Y27743D01* X30826Y27772D01* Y27227D01* X30798Y27256D01* X30775Y27240D01* X30727Y27218D01* X30677Y27204D01* X30625Y27200D01* X30572Y27204D01* X30522Y27218D01* X30505Y27226D01* Y27773D01* G37* G36* Y27119D02*X30555Y27106D01* X30625Y27100D01* X30694Y27106D01* X30761Y27124D01* X30825Y27153D01* X30826Y27154D01* Y25854D01* X30781Y25875D01* X30714Y25893D01* X30645Y25900D01* X30575Y25893D01* X30508Y25875D01* X30505Y25874D01* Y27119D01* G37* G36* Y25764D02*X30542Y25781D01* X30592Y25795D01* X30645Y25800D01* X30697Y25795D01* X30747Y25781D01* X30795Y25759D01* X30818Y25743D01* X30826Y25752D01* Y25247D01* X30818Y25256D01* X30795Y25240D01* X30747Y25218D01* X30697Y25204D01* X30645Y25200D01* X30592Y25204D01* X30542Y25218D01* X30505Y25235D01* Y25764D01* G37* G36* Y25125D02*X30508Y25124D01* X30575Y25106D01* X30645Y25100D01* X30714Y25106D01* X30781Y25124D01* X30826Y25145D01* Y23864D01* X30801Y23875D01* X30734Y23893D01* X30665Y23900D01* X30595Y23893D01* X30528Y23875D01* X30505Y23865D01* Y25125D01* G37* G36* Y23752D02*X30515Y23759D01* X30562Y23781D01* X30612Y23795D01* X30665Y23800D01* X30717Y23795D01* X30767Y23781D01* X30815Y23759D01* X30826Y23751D01* Y23248D01* X30815Y23240D01* X30767Y23218D01* X30717Y23204D01* X30665Y23200D01* X30612Y23204D01* X30562Y23218D01* X30515Y23240D01* X30505Y23247D01* Y23752D01* G37* G36* Y23134D02*X30528Y23124D01* X30595Y23106D01* X30665Y23100D01* X30734Y23106D01* X30801Y23124D01* X30826Y23135D01* Y21873D01* X30821Y21875D01* X30754Y21893D01* X30685Y21900D01* X30615Y21893D01* X30548Y21875D01* X30505Y21855D01* Y23134D01* G37* G36* Y21750D02*X30512Y21743D01* X30535Y21759D01* X30582Y21781D01* X30632Y21795D01* X30685Y21800D01* X30737Y21795D01* X30787Y21781D01* X30826Y21763D01* Y21236D01* X30787Y21218D01* X30737Y21204D01* X30685Y21200D01* X30632Y21204D01* X30582Y21218D01* X30535Y21240D01* X30512Y21256D01* X30505Y21249D01* Y21750D01* G37* G36* Y21144D02*X30548Y21124D01* X30615Y21106D01* X30685Y21100D01* X30754Y21106D01* X30821Y21124D01* X30826Y21126D01* Y19879D01* X30774Y19893D01* X30705Y19900D01* X30635Y19893D01* X30568Y19875D01* X30505Y19846D01* Y21144D01* G37* G36* Y19770D02*X30532Y19743D01* X30555Y19759D01* X30602Y19781D01* X30652Y19795D01* X30705Y19800D01* X30757Y19795D01* X30807Y19781D01* X30826Y19772D01* Y19227D01* X30807Y19218D01* X30757Y19204D01* X30705Y19200D01* X30652Y19204D01* X30602Y19218D01* X30555Y19240D01* X30532Y19256D01* X30505Y19229D01* Y19770D01* G37* G36* Y19153D02*X30568Y19124D01* X30635Y19106D01* X30705Y19100D01* X30774Y19106D01* X30826Y19120D01* Y17885D01* X30794Y17893D01* X30725Y17900D01* X30655Y17893D01* X30588Y17875D01* X30525Y17846D01* X30505Y17832D01* Y19153D01* G37* G36* Y17790D02*X30552Y17743D01* X30575Y17759D01* X30622Y17781D01* X30672Y17795D01* X30725Y17800D01* X30777Y17795D01* X30826Y17782D01* Y17217D01* X30777Y17204D01* X30725Y17200D01* X30672Y17204D01* X30622Y17218D01* X30575Y17240D01* X30552Y17256D01* X30505Y17209D01* Y17790D01* G37* G36* Y17167D02*X30525Y17153D01* X30588Y17124D01* X30655Y17106D01* X30725Y17100D01* X30794Y17106D01* X30826Y17114D01* Y15890D01* X30814Y15893D01* X30745Y15900D01* X30675Y15893D01* X30608Y15875D01* X30545Y15846D01* X30505Y15818D01* Y17167D01* G37* G36* Y15810D02*X30572Y15743D01* X30595Y15759D01* X30642Y15781D01* X30692Y15795D01* X30745Y15800D01* X30797Y15795D01* X30826Y15787D01* Y15212D01* X30797Y15204D01* X30745Y15200D01* X30692Y15204D01* X30642Y15218D01* X30595Y15240D01* X30572Y15256D01* X30505Y15189D01* Y15810D01* G37* G36* Y15181D02*X30545Y15153D01* X30608Y15124D01* X30675Y15106D01* X30745Y15100D01* X30814Y15106D01* X30826Y15109D01* Y13894D01* X30765Y13900D01* X30695Y13893D01* X30628Y13875D01* X30565Y13846D01* X30520Y13815D01* X30592Y13743D01* X30615Y13759D01* X30662Y13781D01* X30712Y13795D01* X30765Y13800D01* X30817Y13795D01* X30826Y13792D01* Y13207D01* X30817Y13204D01* X30765Y13200D01* X30712Y13204D01* X30662Y13218D01* X30615Y13240D01* X30592Y13256D01* X30520Y13184D01* X30565Y13153D01* X30628Y13124D01* X30695Y13106D01* X30765Y13100D01* X30826Y13105D01* Y11896D01* X30785Y11900D01* X30715Y11893D01* X30648Y11875D01* X30585Y11846D01* X30540Y11815D01* X30612Y11743D01* X30635Y11759D01* X30682Y11781D01* X30732Y11795D01* X30785Y11800D01* X30826Y11796D01* Y11203D01* X30785Y11200D01* X30732Y11204D01* X30682Y11218D01* X30635Y11240D01* X30612Y11256D01* X30540Y11184D01* X30585Y11153D01* X30648Y11124D01* X30715Y11106D01* X30785Y11100D01* X30826Y11103D01* Y9898D01* X30805Y9900D01* X30735Y9893D01* X30668Y9875D01* X30605Y9846D01* X30560Y9815D01* X30632Y9743D01* X30655Y9759D01* X30702Y9781D01* X30752Y9795D01* X30805Y9800D01* X30826Y9798D01* Y9201D01* X30805Y9200D01* X30752Y9204D01* X30702Y9218D01* X30655Y9240D01* X30632Y9256D01* X30560Y9184D01* X30605Y9153D01* X30668Y9124D01* X30735Y9106D01* X30805Y9100D01* X30826Y9101D01* Y7899D01* X30825Y7900D01* X30755Y7893D01* X30688Y7875D01* X30625Y7846D01* X30580Y7815D01* X30652Y7743D01* X30675Y7759D01* X30722Y7781D01* X30772Y7795D01* X30825Y7800D01* X30826Y7799D01* Y7200D01* X30825Y7200D01* X30772Y7204D01* X30722Y7218D01* X30675Y7240D01* X30652Y7256D01* X30580Y7184D01* X30625Y7153D01* X30688Y7124D01* X30755Y7106D01* X30825Y7100D01* X30826Y7100D01* Y5898D01* X30775Y5893D01* X30708Y5875D01* X30645Y5846D01* X30600Y5815D01* X30672Y5743D01* X30695Y5759D01* X30742Y5781D01* X30792Y5795D01* X30826Y5798D01* Y5201D01* X30792Y5204D01* X30742Y5218D01* X30695Y5240D01* X30672Y5256D01* X30600Y5184D01* X30645Y5153D01* X30708Y5124D01* X30775Y5106D01* X30826Y5101D01* Y3896D01* X30795Y3893D01* X30728Y3875D01* X30665Y3846D01* X30620Y3815D01* X30692Y3743D01* X30715Y3759D01* X30762Y3781D01* X30812Y3795D01* X30826Y3796D01* Y3203D01* X30812Y3204D01* X30762Y3218D01* X30715Y3240D01* X30692Y3256D01* X30620Y3184D01* X30665Y3153D01* X30728Y3124D01* X30795Y3106D01* X30826Y3103D01* Y1894D01* X30815Y1893D01* X30748Y1875D01* X30685Y1846D01* X30640Y1815D01* X30712Y1743D01* X30735Y1759D01* X30782Y1781D01* X30826Y1793D01* Y1206D01* X30782Y1218D01* X30735Y1240D01* X30712Y1256D01* X30640Y1184D01* X30685Y1153D01* X30748Y1124D01* X30815Y1106D01* X30826Y1105D01* Y0D01* X30505D01* Y1378D01* X30509Y1363D01* X30538Y1300D01* X30569Y1255D01* X30641Y1327D01* X30625Y1350D01* X30603Y1397D01* X30589Y1447D01* X30585Y1500D01* X30589Y1552D01* X30603Y1602D01* X30625Y1650D01* X30641Y1673D01* X30569Y1744D01* X30538Y1700D01* X30509Y1636D01* X30505Y1621D01* Y3329D01* X30518Y3300D01* X30549Y3255D01* X30621Y3327D01* X30605Y3350D01* X30583Y3397D01* X30569Y3447D01* X30565Y3500D01* X30569Y3552D01* X30583Y3602D01* X30605Y3650D01* X30621Y3673D01* X30549Y3744D01* X30518Y3700D01* X30505Y3670D01* Y5290D01* X30529Y5255D01* X30601Y5327D01* X30585Y5350D01* X30563Y5397D01* X30549Y5447D01* X30545Y5500D01* X30549Y5552D01* X30563Y5602D01* X30585Y5650D01* X30601Y5673D01* X30529Y5744D01* X30505Y5709D01* Y7262D01* X30509Y7255D01* X30581Y7327D01* X30565Y7350D01* X30543Y7397D01* X30529Y7447D01* X30525Y7500D01* X30529Y7552D01* X30543Y7602D01* X30565Y7650D01* X30581Y7673D01* X30509Y7744D01* X30505Y7737D01* Y9270D01* X30561Y9327D01* X30545Y9350D01* X30523Y9397D01* X30509Y9447D01* X30505Y9500D01* X30509Y9552D01* X30523Y9602D01* X30545Y9650D01* X30561Y9673D01* X30505Y9729D01* Y11290D01* X30541Y11327D01* X30525Y11350D01* X30505Y11393D01* Y11606D01* X30525Y11650D01* X30541Y11673D01* X30505Y11709D01* Y13310D01* X30521Y13327D01* X30505Y13350D01* X30505Y13350D01* Y13649D01* X30505Y13650D01* X30521Y13673D01* X30505Y13689D01* Y15181D01* G37* G36* X30826Y40000D02*X30906D01* Y37614D01* X30900Y37636D01* X30871Y37700D01* X30840Y37744D01* X30826Y37731D01* Y39265D01* X30851Y39300D01* X30880Y39363D01* X30898Y39430D01* X30905Y39500D01* X30898Y39569D01* X30880Y39636D01* X30851Y39700D01* X30826Y39734D01* Y40000D01* G37* G36* X30906Y0D02*X30826D01* Y1105D01* X30885Y1100D01* X30906Y1101D01* Y0D01* G37* G36* Y1201D02*X30885Y1200D01* X30832Y1204D01* X30826Y1206D01* Y1793D01* X30832Y1795D01* X30885Y1800D01* X30906Y1798D01* Y1201D01* G37* G36* Y1898D02*X30885Y1900D01* X30826Y1894D01* Y3103D01* X30865Y3100D01* X30906Y3103D01* Y1898D01* G37* G36* Y3203D02*X30865Y3200D01* X30826Y3203D01* Y3796D01* X30865Y3800D01* X30906Y3796D01* Y3203D01* G37* G36* Y3896D02*X30865Y3900D01* X30826Y3896D01* Y5101D01* X30845Y5100D01* X30906Y5105D01* Y3896D01* G37* G36* Y5207D02*X30897Y5204D01* X30845Y5200D01* X30826Y5201D01* Y5798D01* X30845Y5800D01* X30897Y5795D01* X30906Y5792D01* Y5207D01* G37* G36* Y5894D02*X30845Y5900D01* X30826Y5898D01* Y7100D01* X30894Y7106D01* X30906Y7109D01* Y5894D01* G37* G36* Y7212D02*X30877Y7204D01* X30826Y7200D01* Y7799D01* X30877Y7795D01* X30906Y7787D01* Y7212D01* G37* G36* Y7890D02*X30894Y7893D01* X30826Y7899D01* Y9101D01* X30874Y9106D01* X30906Y9114D01* Y7890D01* G37* G36* Y9217D02*X30857Y9204D01* X30826Y9201D01* Y9798D01* X30857Y9795D01* X30906Y9782D01* Y9217D01* G37* G36* Y9885D02*X30874Y9893D01* X30826Y9898D01* Y11103D01* X30854Y11106D01* X30906Y11120D01* Y9885D01* G37* G36* Y11227D02*X30887Y11218D01* X30837Y11204D01* X30826Y11203D01* Y11796D01* X30837Y11795D01* X30887Y11781D01* X30906Y11772D01* Y11227D01* G37* G36* Y11879D02*X30854Y11893D01* X30826Y11896D01* Y13105D01* X30834Y13106D01* X30901Y13124D01* X30906Y13126D01* Y11879D01* G37* G36* Y13236D02*X30867Y13218D01* X30826Y13207D01* Y13792D01* X30867Y13781D01* X30906Y13763D01* Y13236D01* G37* G36* Y13873D02*X30901Y13875D01* X30834Y13893D01* X30826Y13894D01* Y15109D01* X30881Y15124D01* X30906Y15135D01* Y13873D01* G37* G36* Y15248D02*X30895Y15240D01* X30847Y15218D01* X30826Y15212D01* Y15787D01* X30847Y15781D01* X30895Y15759D01* X30906Y15751D01* Y15248D01* G37* G36* Y15864D02*X30881Y15875D01* X30826Y15890D01* Y17114D01* X30861Y17124D01* X30906Y17145D01* Y15864D01* G37* G36* Y17247D02*X30898Y17256D01* X30875Y17240D01* X30827Y17218D01* X30826Y17217D01* Y17782D01* X30827Y17781D01* X30875Y17759D01* X30898Y17743D01* X30906Y17752D01* Y17247D01* G37* G36* Y17854D02*X30861Y17875D01* X30826Y17885D01* Y19120D01* X30841Y19124D01* X30905Y19153D01* X30906Y19154D01* Y17854D01* G37* G36* Y19227D02*X30878Y19256D01* X30855Y19240D01* X30826Y19227D01* Y19772D01* X30855Y19759D01* X30878Y19743D01* X30906Y19772D01* Y19227D01* G37* G36* Y19845D02*X30905Y19846D01* X30841Y19875D01* X30826Y19879D01* Y21126D01* X30885Y21153D01* X30906Y21169D01* Y19845D01* G37* G36* Y21207D02*X30858Y21256D01* X30835Y21240D01* X30826Y21236D01* Y21763D01* X30835Y21759D01* X30858Y21743D01* X30906Y21792D01* Y21207D01* G37* G36* Y21831D02*X30885Y21846D01* X30826Y21873D01* Y23135D01* X30865Y23153D01* X30906Y23183D01* Y21831D01* G37* G36* Y23187D02*X30838Y23256D01* X30826Y23248D01* Y23751D01* X30838Y23743D01* X30906Y23812D01* Y23187D01* G37* G36* Y23817D02*X30865Y23846D01* X30826Y23864D01* Y25145D01* X30845Y25153D01* X30889Y25184D01* X30826Y25247D01* Y25752D01* X30889Y25815D01* X30845Y25846D01* X30826Y25854D01* Y27154D01* X30869Y27184D01* X30826Y27227D01* Y27772D01* X30869Y27815D01* X30826Y27845D01* Y29169D01* X30849Y29184D01* X30826Y29207D01* Y29792D01* X30849Y29815D01* X30826Y29831D01* Y31183D01* X30829Y31184D01* X30826Y31187D01* Y31812D01* X30829Y31815D01* X30826Y31817D01* Y33308D01* X30880Y33255D01* X30906Y33293D01* Y31734D01* X30900Y31744D01* X30828Y31673D01* X30844Y31650D01* X30866Y31602D01* X30880Y31552D01* X30885Y31500D01* X30880Y31447D01* X30866Y31397D01* X30844Y31350D01* X30828Y31327D01* X30900Y31255D01* X30906Y31265D01* Y29731D01* X30848Y29673D01* X30864Y29650D01* X30886Y29602D01* X30900Y29552D01* X30905Y29500D01* X30900Y29447D01* X30886Y29397D01* X30864Y29350D01* X30848Y29327D01* X30906Y29268D01* Y27711D01* X30868Y27673D01* X30884Y27650D01* X30906Y27602D01* Y27397D01* X30884Y27350D01* X30868Y27327D01* X30906Y27288D01* Y25691D01* X30888Y25673D01* X30904Y25650D01* X30906Y25645D01* Y25354D01* X30904Y25350D01* X30888Y25327D01* X30906Y25308D01* Y23817D01* G37* G36* Y33706D02*X30880Y33744D01* X30826Y33691D01* Y35288D01* X30860Y35255D01* X30891Y35300D01* X30906Y35333D01* Y33706D01* G37* G36* Y35666D02*X30891Y35700D01* X30860Y35744D01* X30826Y35711D01* Y37268D01* X30840Y37255D01* X30871Y37300D01* X30900Y37363D01* X30906Y37385D01* Y35666D01* G37* G36* Y40000D02*X30986D01* Y29614D01* X30980Y29636D01* X30951Y29700D01* X30920Y29744D01* X30906Y29731D01* Y31265D01* X30931Y31300D01* X30960Y31363D01* X30978Y31430D01* X30985Y31500D01* X30978Y31569D01* X30960Y31636D01* X30931Y31700D01* X30906Y31734D01* Y33293D01* X30911Y33300D01* X30940Y33363D01* X30958Y33430D01* X30965Y33500D01* X30958Y33569D01* X30940Y33636D01* X30911Y33700D01* X30906Y33706D01* Y35333D01* X30920Y35363D01* X30938Y35430D01* X30945Y35500D01* X30938Y35569D01* X30920Y35636D01* X30906Y35666D01* Y37385D01* X30918Y37430D01* X30925Y37500D01* X30918Y37569D01* X30906Y37614D01* Y40000D01* G37* G36* X30986Y0D02*X30906D01* Y1101D01* X30954Y1106D01* X30986Y1114D01* Y0D01* G37* G36* Y1217D02*X30937Y1204D01* X30906Y1201D01* Y1798D01* X30937Y1795D01* X30986Y1782D01* Y1217D01* G37* G36* Y1885D02*X30954Y1893D01* X30906Y1898D01* Y3103D01* X30934Y3106D01* X30986Y3120D01* Y1885D01* G37* G36* Y3227D02*X30967Y3218D01* X30917Y3204D01* X30906Y3203D01* Y3796D01* X30917Y3795D01* X30967Y3781D01* X30986Y3772D01* Y3227D01* G37* G36* Y3879D02*X30934Y3893D01* X30906Y3896D01* Y5105D01* X30914Y5106D01* X30981Y5124D01* X30986Y5126D01* Y3879D01* G37* G36* Y5236D02*X30947Y5218D01* X30906Y5207D01* Y5792D01* X30947Y5781D01* X30986Y5763D01* Y5236D01* G37* G36* Y5873D02*X30981Y5875D01* X30914Y5893D01* X30906Y5894D01* Y7109D01* X30961Y7124D01* X30986Y7135D01* Y5873D01* G37* G36* Y7248D02*X30975Y7240D01* X30927Y7218D01* X30906Y7212D01* Y7787D01* X30927Y7781D01* X30975Y7759D01* X30986Y7751D01* Y7248D01* G37* G36* Y7864D02*X30961Y7875D01* X30906Y7890D01* Y9114D01* X30941Y9124D01* X30986Y9145D01* Y7864D01* G37* G36* Y9247D02*X30978Y9256D01* X30955Y9240D01* X30907Y9218D01* X30906Y9217D01* Y9782D01* X30907Y9781D01* X30955Y9759D01* X30978Y9743D01* X30986Y9752D01* Y9247D01* G37* G36* Y9854D02*X30941Y9875D01* X30906Y9885D01* Y11120D01* X30921Y11124D01* X30985Y11153D01* X30986Y11154D01* Y9854D01* G37* G36* Y11227D02*X30958Y11256D01* X30935Y11240D01* X30906Y11227D01* Y11772D01* X30935Y11759D01* X30958Y11743D01* X30986Y11772D01* Y11227D01* G37* G36* Y11845D02*X30985Y11846D01* X30921Y11875D01* X30906Y11879D01* Y13126D01* X30965Y13153D01* X30986Y13169D01* Y11845D01* G37* G36* Y13207D02*X30938Y13256D01* X30915Y13240D01* X30906Y13236D01* Y13763D01* X30915Y13759D01* X30938Y13743D01* X30986Y13792D01* Y13207D01* G37* G36* Y13831D02*X30965Y13846D01* X30906Y13873D01* Y15135D01* X30945Y15153D01* X30986Y15183D01* Y13831D01* G37* G36* Y15187D02*X30918Y15256D01* X30906Y15248D01* Y15751D01* X30918Y15743D01* X30986Y15812D01* Y15187D01* G37* G36* Y15817D02*X30945Y15846D01* X30906Y15864D01* Y17145D01* X30925Y17153D01* X30969Y17184D01* X30906Y17247D01* Y17752D01* X30969Y17815D01* X30925Y17846D01* X30906Y17854D01* Y19154D01* X30949Y19184D01* X30906Y19227D01* Y19772D01* X30949Y19815D01* X30906Y19845D01* Y21169D01* X30929Y21184D01* X30906Y21207D01* Y21792D01* X30929Y21815D01* X30906Y21831D01* Y23183D01* X30909Y23184D01* X30906Y23187D01* Y23812D01* X30909Y23815D01* X30906Y23817D01* Y25308D01* X30960Y25255D01* X30986Y25293D01* Y23734D01* X30980Y23744D01* X30908Y23673D01* X30924Y23650D01* X30946Y23602D01* X30960Y23552D01* X30965Y23500D01* X30960Y23447D01* X30946Y23397D01* X30924Y23350D01* X30908Y23327D01* X30980Y23255D01* X30986Y23265D01* Y21731D01* X30928Y21673D01* X30944Y21650D01* X30966Y21602D01* X30980Y21552D01* X30985Y21500D01* X30980Y21447D01* X30966Y21397D01* X30944Y21350D01* X30928Y21327D01* X30986Y21268D01* Y19711D01* X30948Y19673D01* X30964Y19650D01* X30986Y19602D01* Y19397D01* X30964Y19350D01* X30948Y19327D01* X30986Y19288D01* Y17691D01* X30968Y17673D01* X30984Y17650D01* X30986Y17645D01* Y17354D01* X30984Y17350D01* X30968Y17327D01* X30986Y17308D01* Y15817D01* G37* G36* Y25706D02*X30960Y25744D01* X30906Y25691D01* Y27288D01* X30940Y27255D01* X30971Y27300D01* X30986Y27333D01* Y25706D01* G37* G36* Y27666D02*X30971Y27700D01* X30940Y27744D01* X30906Y27711D01* Y29268D01* X30920Y29255D01* X30951Y29300D01* X30980Y29363D01* X30986Y29385D01* Y27666D01* G37* G36* Y40000D02*X31066D01* Y21614D01* X31060Y21636D01* X31031Y21700D01* X31000Y21744D01* X30986Y21731D01* Y23265D01* X31011Y23300D01* X31040Y23363D01* X31058Y23430D01* X31065Y23500D01* X31058Y23569D01* X31040Y23636D01* X31011Y23700D01* X30986Y23734D01* Y25293D01* X30991Y25300D01* X31020Y25363D01* X31038Y25430D01* X31045Y25500D01* X31038Y25569D01* X31020Y25636D01* X30991Y25700D01* X30986Y25706D01* Y27333D01* X31000Y27363D01* X31018Y27430D01* X31025Y27500D01* X31018Y27569D01* X31000Y27636D01* X30986Y27666D01* Y29385D01* X30998Y29430D01* X31005Y29500D01* X30998Y29569D01* X30986Y29614D01* Y40000D01* G37* G36* X31066Y0D02*X30986D01* Y1114D01* X31021Y1124D01* X31066Y1145D01* Y0D01* G37* G36* Y1247D02*X31058Y1256D01* X31035Y1240D01* X30987Y1218D01* X30986Y1217D01* Y1782D01* X30987Y1781D01* X31035Y1759D01* X31058Y1743D01* X31066Y1752D01* Y1247D01* G37* G36* Y1854D02*X31021Y1875D01* X30986Y1885D01* Y3120D01* X31001Y3124D01* X31065Y3153D01* X31066Y3154D01* Y1854D01* G37* G36* Y3227D02*X31038Y3256D01* X31015Y3240D01* X30986Y3227D01* Y3772D01* X31015Y3759D01* X31038Y3743D01* X31066Y3772D01* Y3227D01* G37* G36* Y3845D02*X31065Y3846D01* X31001Y3875D01* X30986Y3879D01* Y5126D01* X31045Y5153D01* X31066Y5169D01* Y3845D01* G37* G36* Y5207D02*X31018Y5256D01* X30995Y5240D01* X30986Y5236D01* Y5763D01* X30995Y5759D01* X31018Y5743D01* X31066Y5792D01* Y5207D01* G37* G36* Y5831D02*X31045Y5846D01* X30986Y5873D01* Y7135D01* X31025Y7153D01* X31066Y7183D01* Y5831D01* G37* G36* Y7187D02*X30998Y7256D01* X30986Y7248D01* Y7751D01* X30998Y7743D01* X31066Y7812D01* Y7187D01* G37* G36* Y7817D02*X31025Y7846D01* X30986Y7864D01* Y9145D01* X31005Y9153D01* X31049Y9184D01* X30986Y9247D01* Y9752D01* X31049Y9815D01* X31005Y9846D01* X30986Y9854D01* Y11154D01* X31029Y11184D01* X30986Y11227D01* Y11772D01* X31029Y11815D01* X30986Y11845D01* Y13169D01* X31009Y13184D01* X30986Y13207D01* Y13792D01* X31009Y13815D01* X30986Y13831D01* Y15183D01* X30989Y15184D01* X30986Y15187D01* Y15812D01* X30989Y15815D01* X30986Y15817D01* Y17308D01* X31040Y17255D01* X31066Y17293D01* Y15734D01* X31060Y15744D01* X30988Y15673D01* X31004Y15650D01* X31026Y15602D01* X31040Y15552D01* X31045Y15500D01* X31040Y15447D01* X31026Y15397D01* X31004Y15350D01* X30988Y15327D01* X31060Y15255D01* X31066Y15265D01* Y13731D01* X31008Y13673D01* X31024Y13650D01* X31046Y13602D01* X31060Y13552D01* X31065Y13500D01* X31060Y13447D01* X31046Y13397D01* X31024Y13350D01* X31008Y13327D01* X31066Y13268D01* Y11711D01* X31028Y11673D01* X31044Y11650D01* X31066Y11602D01* Y11397D01* X31044Y11350D01* X31028Y11327D01* X31066Y11288D01* Y9691D01* X31048Y9673D01* X31064Y9650D01* X31066Y9645D01* Y9354D01* X31064Y9350D01* X31048Y9327D01* X31066Y9308D01* Y7817D01* G37* G36* Y17706D02*X31040Y17744D01* X30986Y17691D01* Y19288D01* X31020Y19255D01* X31051Y19300D01* X31066Y19333D01* Y17706D01* G37* G36* Y19666D02*X31051Y19700D01* X31020Y19744D01* X30986Y19711D01* Y21268D01* X31000Y21255D01* X31031Y21300D01* X31060Y21363D01* X31066Y21385D01* Y19666D01* G37* G36* Y40000D02*X31146D01* Y13614D01* X31140Y13636D01* X31111Y13700D01* X31080Y13744D01* X31066Y13731D01* Y15265D01* X31091Y15300D01* X31120Y15363D01* X31138Y15430D01* X31145Y15500D01* X31138Y15569D01* X31120Y15636D01* X31091Y15700D01* X31066Y15734D01* Y17293D01* X31071Y17300D01* X31100Y17363D01* X31118Y17430D01* X31125Y17500D01* X31118Y17569D01* X31100Y17636D01* X31071Y17700D01* X31066Y17706D01* Y19333D01* X31080Y19363D01* X31098Y19430D01* X31105Y19500D01* X31098Y19569D01* X31080Y19636D01* X31066Y19666D01* Y21385D01* X31078Y21430D01* X31085Y21500D01* X31078Y21569D01* X31066Y21614D01* Y40000D01* G37* G36* X31146Y0D02*X31066D01* Y1145D01* X31085Y1153D01* X31129Y1184D01* X31066Y1247D01* Y1752D01* X31129Y1815D01* X31085Y1846D01* X31066Y1854D01* Y3154D01* X31109Y3184D01* X31066Y3227D01* Y3772D01* X31109Y3815D01* X31066Y3845D01* Y5169D01* X31089Y5184D01* X31066Y5207D01* Y5792D01* X31089Y5815D01* X31066Y5831D01* Y7183D01* X31069Y7184D01* X31066Y7187D01* Y7812D01* X31069Y7815D01* X31066Y7817D01* Y9308D01* X31120Y9255D01* X31146Y9293D01* Y7734D01* X31140Y7744D01* X31068Y7673D01* X31084Y7650D01* X31106Y7602D01* X31120Y7552D01* X31125Y7500D01* X31120Y7447D01* X31106Y7397D01* X31084Y7350D01* X31068Y7327D01* X31140Y7255D01* X31146Y7265D01* Y5731D01* X31088Y5673D01* X31104Y5650D01* X31126Y5602D01* X31140Y5552D01* X31145Y5500D01* X31140Y5447D01* X31126Y5397D01* X31104Y5350D01* X31088Y5327D01* X31146Y5268D01* Y3711D01* X31108Y3673D01* X31124Y3650D01* X31146Y3602D01* Y3397D01* X31124Y3350D01* X31108Y3327D01* X31146Y3288D01* Y1691D01* X31128Y1673D01* X31144Y1650D01* X31146Y1645D01* Y1354D01* X31144Y1350D01* X31128Y1327D01* X31146Y1308D01* Y0D01* G37* G36* Y9706D02*X31120Y9744D01* X31066Y9691D01* Y11288D01* X31100Y11255D01* X31131Y11300D01* X31146Y11333D01* Y9706D01* G37* G36* Y11666D02*X31131Y11700D01* X31100Y11744D01* X31066Y11711D01* Y13268D01* X31080Y13255D01* X31111Y13300D01* X31140Y13363D01* X31146Y13385D01* Y11666D01* G37* G36* Y40000D02*X32183D01* Y39735D01* X32158Y39700D01* X32129Y39636D01* X32111Y39569D01* X32105Y39500D01* X32111Y39430D01* X32129Y39363D01* X32158Y39300D01* X32183Y39264D01* Y37706D01* X32178Y37700D01* X32149Y37636D01* X32131Y37569D01* X32125Y37500D01* X32131Y37430D01* X32149Y37363D01* X32178Y37300D01* X32183Y37293D01* Y35667D01* X32169Y35636D01* X32151Y35569D01* X32145Y35500D01* X32151Y35430D01* X32169Y35363D01* X32183Y35333D01* Y33614D01* X32171Y33569D01* X32165Y33500D01* X32171Y33430D01* X32183Y33385D01* Y0D01* X31146D01* Y1308D01* X31200Y1255D01* X31231Y1300D01* X31260Y1363D01* X31278Y1430D01* X31285Y1500D01* X31278Y1569D01* X31260Y1636D01* X31231Y1700D01* X31200Y1744D01* X31146Y1691D01* Y3288D01* X31180Y3255D01* X31211Y3300D01* X31240Y3363D01* X31258Y3430D01* X31265Y3500D01* X31258Y3569D01* X31240Y3636D01* X31211Y3700D01* X31180Y3744D01* X31146Y3711D01* Y5268D01* X31160Y5255D01* X31191Y5300D01* X31220Y5363D01* X31238Y5430D01* X31245Y5500D01* X31238Y5569D01* X31220Y5636D01* X31191Y5700D01* X31160Y5744D01* X31146Y5731D01* Y7265D01* X31171Y7300D01* X31200Y7363D01* X31218Y7430D01* X31225Y7500D01* X31218Y7569D01* X31200Y7636D01* X31171Y7700D01* X31146Y7734D01* Y9293D01* X31151Y9300D01* X31180Y9363D01* X31198Y9430D01* X31205Y9500D01* X31198Y9569D01* X31180Y9636D01* X31151Y9700D01* X31146Y9706D01* Y11333D01* X31160Y11363D01* X31178Y11430D01* X31185Y11500D01* X31178Y11569D01* X31160Y11636D01* X31146Y11666D01* Y13385D01* X31158Y13430D01* X31165Y13500D01* X31158Y13569D01* X31146Y13614D01* Y40000D01* G37* G36* Y3602D02*X31160Y3552D01* X31165Y3500D01* X31160Y3447D01* X31146Y3397D01* Y3602D01* G37* G36* Y1645D02*X31166Y1602D01* X31180Y1552D01* X31185Y1500D01* X31180Y1447D01* X31166Y1397D01* X31146Y1354D01* Y1645D01* G37* G36* X31066Y11602D02*X31080Y11552D01* X31085Y11500D01* X31080Y11447D01* X31066Y11397D01* Y11602D01* G37* G36* Y9645D02*X31086Y9602D01* X31100Y9552D01* X31105Y9500D01* X31100Y9447D01* X31086Y9397D01* X31066Y9354D01* Y9645D01* G37* G36* X30986Y19602D02*X31000Y19552D01* X31005Y19500D01* X31000Y19447D01* X30986Y19397D01* Y19602D01* G37* G36* Y17645D02*X31006Y17602D01* X31020Y17552D01* X31025Y17500D01* X31020Y17447D01* X31006Y17397D01* X30986Y17354D01* Y17645D01* G37* G36* X30906Y27602D02*X30920Y27552D01* X30925Y27500D01* X30920Y27447D01* X30906Y27397D01* Y27602D01* G37* G36* Y25645D02*X30926Y25602D01* X30940Y25552D01* X30945Y25500D01* X30940Y25447D01* X30926Y25397D01* X30906Y25354D01* Y25645D01* G37* G36* X32183Y40000D02*X32283D01* Y39831D01* X32260Y39815D01* X32283Y39792D01* Y39207D01* X32260Y39184D01* X32283Y39168D01* Y37817D01* X32280Y37815D01* X32283Y37812D01* Y37187D01* X32280Y37184D01* X32283Y37182D01* Y35691D01* X32229Y35744D01* X32198Y35700D01* X32183Y35667D01* Y37293D01* X32209Y37255D01* X32281Y37327D01* X32265Y37350D01* X32243Y37397D01* X32229Y37447D01* X32225Y37500D01* X32229Y37552D01* X32243Y37602D01* X32265Y37650D01* X32281Y37673D01* X32209Y37744D01* X32183Y37706D01* Y39264D01* X32189Y39255D01* X32261Y39327D01* X32245Y39350D01* X32223Y39397D01* X32209Y39447D01* X32205Y39500D01* X32209Y39552D01* X32223Y39602D01* X32245Y39650D01* X32261Y39673D01* X32189Y39744D01* X32183Y39735D01* Y40000D01* G37* G36* X32283Y0D02*X32183D01* Y33385D01* X32189Y33363D01* X32218Y33300D01* X32249Y33255D01* X32283Y33288D01* Y31731D01* X32269Y31744D01* X32238Y31700D01* X32209Y31636D01* X32191Y31569D01* X32185Y31500D01* X32191Y31430D01* X32209Y31363D01* X32238Y31300D01* X32269Y31255D01* X32283Y31268D01* Y29735D01* X32258Y29700D01* X32229Y29636D01* X32211Y29569D01* X32205Y29500D01* X32211Y29430D01* X32229Y29363D01* X32258Y29300D01* X32283Y29264D01* Y27706D01* X32278Y27700D01* X32249Y27636D01* X32231Y27569D01* X32225Y27500D01* X32231Y27430D01* X32249Y27363D01* X32278Y27300D01* X32283Y27293D01* Y25667D01* X32269Y25636D01* X32251Y25569D01* X32245Y25500D01* X32251Y25430D01* X32269Y25363D01* X32283Y25333D01* Y23614D01* X32271Y23569D01* X32265Y23500D01* X32271Y23430D01* X32283Y23385D01* Y0D01* G37* G36* Y33397D02*X32283Y33397D01* X32269Y33447D01* X32265Y33500D01* X32269Y33552D01* X32283Y33602D01* X32283Y33602D01* Y33397D01* G37* G36* Y33711D02*X32249Y33744D01* X32218Y33700D01* X32189Y33636D01* X32183Y33614D01* Y35333D01* X32198Y35300D01* X32229Y35255D01* X32283Y35308D01* Y33711D01* G37* G36* Y35354D02*X32263Y35397D01* X32249Y35447D01* X32245Y35500D01* X32249Y35552D01* X32263Y35602D01* X32283Y35645D01* Y35354D01* G37* G36* Y40000D02*X32505D01* Y39900D01* X32435Y39893D01* X32368Y39875D01* X32305Y39846D01* X32283Y39831D01* Y40000D01* G37* G36* Y39792D02*X32332Y39743D01* X32355Y39759D01* X32402Y39781D01* X32452Y39795D01* X32505Y39800D01* Y39200D01* X32452Y39204D01* X32402Y39218D01* X32355Y39240D01* X32332Y39256D01* X32283Y39207D01* Y39792D01* G37* G36* Y39168D02*X32305Y39153D01* X32368Y39124D01* X32435Y39106D01* X32505Y39100D01* Y37898D01* X32455Y37893D01* X32388Y37875D01* X32325Y37846D01* X32283Y37817D01* Y39168D01* G37* G36* Y37812D02*X32352Y37743D01* X32375Y37759D01* X32422Y37781D01* X32472Y37795D01* X32505Y37798D01* Y37201D01* X32472Y37204D01* X32422Y37218D01* X32375Y37240D01* X32352Y37256D01* X32283Y37187D01* Y37812D01* G37* G36* Y37182D02*X32325Y37153D01* X32363Y37135D01* Y35854D01* X32345Y35846D01* X32300Y35815D01* X32363Y35752D01* Y35247D01* X32300Y35184D01* X32345Y35153D01* X32363Y35145D01* Y33845D01* X32320Y33815D01* X32363Y33772D01* Y33227D01* X32320Y33184D01* X32363Y33154D01* Y31831D01* X32340Y31815D01* X32363Y31792D01* Y31207D01* X32340Y31184D01* X32363Y31168D01* Y29817D01* X32360Y29815D01* X32363Y29812D01* Y29187D01* X32360Y29184D01* X32363Y29182D01* Y27691D01* X32309Y27744D01* X32283Y27706D01* Y29264D01* X32289Y29255D01* X32361Y29327D01* X32345Y29350D01* X32323Y29397D01* X32309Y29447D01* X32305Y29500D01* X32309Y29552D01* X32323Y29602D01* X32345Y29650D01* X32361Y29673D01* X32289Y29744D01* X32283Y29735D01* Y31268D01* X32341Y31327D01* X32325Y31350D01* X32303Y31397D01* X32289Y31447D01* X32285Y31500D01* X32289Y31552D01* X32303Y31602D01* X32325Y31650D01* X32341Y31673D01* X32283Y31731D01* Y33288D01* X32321Y33327D01* X32305Y33350D01* X32283Y33397D01* Y33602D01* X32305Y33650D01* X32321Y33673D01* X32283Y33711D01* Y35308D01* X32301Y35327D01* X32285Y35350D01* X32283Y35354D01* Y35645D01* X32285Y35650D01* X32301Y35673D01* X32283Y35691D01* Y37182D01* G37* G36* X32363Y0D02*X32283D01* Y23385D01* X32289Y23363D01* X32318Y23300D01* X32349Y23255D01* X32363Y23268D01* Y21735D01* X32338Y21700D01* X32309Y21636D01* X32291Y21569D01* X32285Y21500D01* X32291Y21430D01* X32309Y21363D01* X32338Y21300D01* X32363Y21264D01* Y19706D01* X32358Y19700D01* X32329Y19636D01* X32311Y19569D01* X32305Y19500D01* X32311Y19430D01* X32329Y19363D01* X32358Y19300D01* X32363Y19293D01* Y17667D01* X32349Y17636D01* X32331Y17569D01* X32325Y17500D01* X32331Y17430D01* X32349Y17363D01* X32363Y17333D01* Y15614D01* X32351Y15569D01* X32345Y15500D01* X32351Y15430D01* X32363Y15385D01* Y0D01* G37* G36* Y23731D02*X32349Y23744D01* X32318Y23700D01* X32289Y23636D01* X32283Y23614D01* Y25333D01* X32298Y25300D01* X32329Y25255D01* X32363Y25288D01* Y23731D01* G37* G36* Y25397D02*X32363Y25397D01* X32349Y25447D01* X32345Y25500D01* X32349Y25552D01* X32363Y25602D01* X32363Y25602D01* Y25397D01* G37* G36* Y25711D02*X32329Y25744D01* X32298Y25700D01* X32283Y25667D01* Y27293D01* X32309Y27255D01* X32363Y27308D01* Y25711D01* G37* G36* Y27354D02*X32343Y27397D01* X32329Y27447D01* X32325Y27500D01* X32329Y27552D01* X32343Y27602D01* X32363Y27645D01* Y27354D01* G37* G36* Y37135D02*X32388Y37124D01* X32455Y37106D01* X32505Y37101D01* Y35896D01* X32475Y35893D01* X32408Y35875D01* X32363Y35854D01* Y37135D01* G37* G36* Y35752D02*X32372Y35743D01* X32395Y35759D01* X32442Y35781D01* X32492Y35795D01* X32505Y35796D01* Y35203D01* X32492Y35204D01* X32442Y35218D01* X32395Y35240D01* X32372Y35256D01* X32363Y35247D01* Y35752D01* G37* G36* Y35145D02*X32408Y35124D01* X32475Y35106D01* X32505Y35103D01* Y33894D01* X32495Y33893D01* X32428Y33875D01* X32365Y33846D01* X32363Y33845D01* Y35145D01* G37* G36* Y33772D02*X32392Y33743D01* X32415Y33759D01* X32462Y33781D01* X32505Y33793D01* Y33206D01* X32462Y33218D01* X32415Y33240D01* X32392Y33256D01* X32363Y33227D01* Y33772D01* G37* G36* Y33154D02*X32365Y33153D01* X32428Y33124D01* X32495Y33106D01* X32505Y33105D01* Y31891D01* X32448Y31875D01* X32385Y31846D01* X32363Y31831D01* Y33154D01* G37* G36* Y31792D02*X32412Y31743D01* X32435Y31759D01* X32482Y31781D01* X32505Y31787D01* Y31212D01* X32482Y31218D01* X32435Y31240D01* X32412Y31256D01* X32363Y31207D01* Y31792D01* G37* G36* Y31168D02*X32385Y31153D01* X32448Y31124D01* X32505Y31108D01* Y29885D01* X32468Y29875D01* X32405Y29846D01* X32363Y29817D01* Y31168D01* G37* G36* Y29812D02*X32432Y29743D01* X32455Y29759D01* X32502Y29781D01* X32505Y29782D01* Y29217D01* X32502Y29218D01* X32455Y29240D01* X32432Y29256D01* X32363Y29187D01* Y29812D01* G37* G36* Y29182D02*X32405Y29153D01* X32468Y29124D01* X32505Y29114D01* Y27880D01* X32488Y27875D01* X32425Y27846D01* X32380Y27815D01* X32452Y27743D01* X32475Y27759D01* X32505Y27773D01* Y27226D01* X32475Y27240D01* X32452Y27256D01* X32380Y27184D01* X32425Y27153D01* X32488Y27124D01* X32505Y27119D01* Y25874D01* X32445Y25846D01* X32400Y25815D01* X32472Y25743D01* X32495Y25759D01* X32505Y25764D01* Y25235D01* X32495Y25240D01* X32472Y25256D01* X32400Y25184D01* X32445Y25153D01* X32505Y25125D01* Y23865D01* X32465Y23846D01* X32420Y23815D01* X32492Y23743D01* X32505Y23752D01* Y23247D01* X32492Y23256D01* X32420Y23184D01* X32465Y23153D01* X32505Y23134D01* Y21855D01* X32485Y21846D01* X32440Y21815D01* X32505Y21750D01* Y21249D01* X32440Y21184D01* X32485Y21153D01* X32505Y21144D01* Y19846D01* X32460Y19815D01* X32505Y19770D01* Y19229D01* X32460Y19184D01* X32505Y19153D01* Y17832D01* X32480Y17815D01* X32505Y17790D01* Y17209D01* X32480Y17184D01* X32505Y17167D01* Y15818D01* X32500Y15815D01* X32505Y15810D01* Y15189D01* X32500Y15184D01* X32505Y15181D01* Y13689D01* X32449Y13744D01* X32418Y13700D01* X32389Y13636D01* X32371Y13569D01* X32365Y13500D01* X32371Y13430D01* X32389Y13363D01* X32418Y13300D01* X32449Y13255D01* X32505Y13310D01* Y11709D01* X32469Y11744D01* X32438Y11700D01* X32409Y11636D01* X32391Y11569D01* X32385Y11500D01* X32391Y11430D01* X32409Y11363D01* X32438Y11300D01* X32469Y11255D01* X32505Y11290D01* Y9729D01* X32489Y9744D01* X32458Y9700D01* X32429Y9636D01* X32411Y9569D01* X32405Y9500D01* X32411Y9430D01* X32429Y9363D01* X32458Y9300D01* X32489Y9255D01* X32505Y9270D01* Y7737D01* X32478Y7700D01* X32449Y7636D01* X32431Y7569D01* X32425Y7500D01* X32431Y7430D01* X32449Y7363D01* X32478Y7300D01* X32505Y7262D01* Y5709D01* X32498Y5700D01* X32469Y5636D01* X32451Y5569D01* X32445Y5500D01* X32451Y5430D01* X32469Y5363D01* X32498Y5300D01* X32505Y5290D01* Y3670D01* X32489Y3636D01* X32471Y3569D01* X32465Y3500D01* X32471Y3430D01* X32489Y3363D01* X32505Y3329D01* Y1621D01* X32491Y1569D01* X32485Y1500D01* X32491Y1430D01* X32505Y1378D01* Y0D01* X32363D01* Y15385D01* X32369Y15363D01* X32398Y15300D01* X32429Y15255D01* X32501Y15327D01* X32485Y15350D01* X32463Y15397D01* X32449Y15447D01* X32445Y15500D01* X32449Y15552D01* X32463Y15602D01* X32485Y15650D01* X32501Y15673D01* X32429Y15744D01* X32398Y15700D01* X32369Y15636D01* X32363Y15614D01* Y17333D01* X32378Y17300D01* X32409Y17255D01* X32481Y17327D01* X32465Y17350D01* X32443Y17397D01* X32429Y17447D01* X32425Y17500D01* X32429Y17552D01* X32443Y17602D01* X32465Y17650D01* X32481Y17673D01* X32409Y17744D01* X32378Y17700D01* X32363Y17667D01* Y19293D01* X32389Y19255D01* X32461Y19327D01* X32445Y19350D01* X32423Y19397D01* X32409Y19447D01* X32405Y19500D01* X32409Y19552D01* X32423Y19602D01* X32445Y19650D01* X32461Y19673D01* X32389Y19744D01* X32363Y19706D01* Y21264D01* X32369Y21255D01* X32441Y21327D01* X32425Y21350D01* X32403Y21397D01* X32389Y21447D01* X32385Y21500D01* X32389Y21552D01* X32403Y21602D01* X32425Y21650D01* X32441Y21673D01* X32369Y21744D01* X32363Y21735D01* Y23268D01* X32421Y23327D01* X32405Y23350D01* X32383Y23397D01* X32369Y23447D01* X32365Y23500D01* X32369Y23552D01* X32383Y23602D01* X32405Y23650D01* X32421Y23673D01* X32363Y23731D01* Y25288D01* X32401Y25327D01* X32385Y25350D01* X32363Y25397D01* Y25602D01* X32385Y25650D01* X32401Y25673D01* X32363Y25711D01* Y27308D01* X32381Y27327D01* X32365Y27350D01* X32363Y27354D01* Y27645D01* X32365Y27650D01* X32381Y27673D01* X32363Y27691D01* Y29182D01* G37* G36* X32505Y13350D02*X32483Y13397D01* X32469Y13447D01* X32465Y13500D01* X32469Y13552D01* X32483Y13602D01* X32505Y13649D01* Y13350D01* G37* G36* Y11393D02*X32503Y11397D01* X32489Y11447D01* X32485Y11500D01* X32489Y11552D01* X32503Y11602D01* X32505Y11606D01* Y11393D01* G37* G36* Y40000D02*X32826D01* Y39734D01* X32820Y39744D01* X32748Y39673D01* X32764Y39650D01* X32786Y39602D01* X32800Y39552D01* X32805Y39500D01* X32800Y39447D01* X32786Y39397D01* X32764Y39350D01* X32748Y39327D01* X32820Y39255D01* X32826Y39265D01* Y37731D01* X32768Y37673D01* X32784Y37650D01* X32806Y37602D01* X32820Y37552D01* X32825Y37500D01* X32820Y37447D01* X32806Y37397D01* X32784Y37350D01* X32768Y37327D01* X32826Y37268D01* Y35711D01* X32788Y35673D01* X32804Y35650D01* X32826Y35602D01* Y35397D01* X32804Y35350D01* X32788Y35327D01* X32826Y35288D01* Y33691D01* X32808Y33673D01* X32824Y33650D01* X32826Y33645D01* Y33354D01* X32824Y33350D01* X32808Y33327D01* X32826Y33308D01* Y31817D01* X32785Y31846D01* X32721Y31875D01* X32654Y31893D01* X32585Y31900D01* X32515Y31893D01* X32505Y31891D01* Y33105D01* X32565Y33100D01* X32634Y33106D01* X32701Y33124D01* X32765Y33153D01* X32809Y33184D01* X32738Y33256D01* X32715Y33240D01* X32667Y33218D01* X32617Y33204D01* X32565Y33200D01* X32512Y33204D01* X32505Y33206D01* Y33793D01* X32512Y33795D01* X32565Y33800D01* X32617Y33795D01* X32667Y33781D01* X32715Y33759D01* X32738Y33743D01* X32809Y33815D01* X32765Y33846D01* X32701Y33875D01* X32634Y33893D01* X32565Y33900D01* X32505Y33894D01* Y35103D01* X32545Y35100D01* X32614Y35106D01* X32681Y35124D01* X32745Y35153D01* X32789Y35184D01* X32718Y35256D01* X32695Y35240D01* X32647Y35218D01* X32597Y35204D01* X32545Y35200D01* X32505Y35203D01* Y35796D01* X32545Y35800D01* X32597Y35795D01* X32647Y35781D01* X32695Y35759D01* X32718Y35743D01* X32789Y35815D01* X32745Y35846D01* X32681Y35875D01* X32614Y35893D01* X32545Y35900D01* X32505Y35896D01* Y37101D01* X32525Y37100D01* X32594Y37106D01* X32661Y37124D01* X32725Y37153D01* X32769Y37184D01* X32698Y37256D01* X32675Y37240D01* X32627Y37218D01* X32577Y37204D01* X32525Y37200D01* X32505Y37201D01* Y37798D01* X32525Y37800D01* X32577Y37795D01* X32627Y37781D01* X32675Y37759D01* X32698Y37743D01* X32769Y37815D01* X32725Y37846D01* X32661Y37875D01* X32594Y37893D01* X32525Y37900D01* X32505Y37898D01* Y39100D01* X32574Y39106D01* X32641Y39124D01* X32705Y39153D01* X32749Y39184D01* X32678Y39256D01* X32655Y39240D01* X32607Y39218D01* X32557Y39204D01* X32505Y39200D01* Y39800D01* X32557Y39795D01* X32607Y39781D01* X32655Y39759D01* X32678Y39743D01* X32749Y39815D01* X32705Y39846D01* X32641Y39875D01* X32574Y39893D01* X32505Y39900D01* Y40000D01* G37* G36* Y31787D02*X32532Y31795D01* X32585Y31800D01* X32637Y31795D01* X32687Y31781D01* X32735Y31759D01* X32758Y31743D01* X32826Y31812D01* Y31187D01* X32758Y31256D01* X32735Y31240D01* X32687Y31218D01* X32637Y31204D01* X32585Y31200D01* X32532Y31204D01* X32505Y31212D01* Y31787D01* G37* G36* Y31108D02*X32515Y31106D01* X32585Y31100D01* X32654Y31106D01* X32721Y31124D01* X32785Y31153D01* X32826Y31183D01* Y29831D01* X32805Y29846D01* X32741Y29875D01* X32674Y29893D01* X32605Y29900D01* X32535Y29893D01* X32505Y29885D01* Y31108D01* G37* G36* Y29782D02*X32552Y29795D01* X32605Y29800D01* X32657Y29795D01* X32707Y29781D01* X32755Y29759D01* X32778Y29743D01* X32826Y29792D01* Y29207D01* X32778Y29256D01* X32755Y29240D01* X32707Y29218D01* X32657Y29204D01* X32605Y29200D01* X32552Y29204D01* X32505Y29217D01* Y29782D01* G37* G36* Y29114D02*X32535Y29106D01* X32605Y29100D01* X32674Y29106D01* X32741Y29124D01* X32805Y29153D01* X32826Y29169D01* Y27845D01* X32825Y27846D01* X32761Y27875D01* X32694Y27893D01* X32625Y27900D01* X32555Y27893D01* X32505Y27880D01* Y29114D01* G37* G36* Y27773D02*X32522Y27781D01* X32572Y27795D01* X32625Y27800D01* X32677Y27795D01* X32727Y27781D01* X32775Y27759D01* X32798Y27743D01* X32826Y27772D01* Y27227D01* X32798Y27256D01* X32775Y27240D01* X32727Y27218D01* X32677Y27204D01* X32625Y27200D01* X32572Y27204D01* X32522Y27218D01* X32505Y27226D01* Y27773D01* G37* G36* Y27119D02*X32555Y27106D01* X32625Y27100D01* X32694Y27106D01* X32761Y27124D01* X32825Y27153D01* X32826Y27154D01* Y25854D01* X32781Y25875D01* X32714Y25893D01* X32645Y25900D01* X32575Y25893D01* X32508Y25875D01* X32505Y25874D01* Y27119D01* G37* G36* Y25764D02*X32542Y25781D01* X32592Y25795D01* X32645Y25800D01* X32697Y25795D01* X32747Y25781D01* X32795Y25759D01* X32818Y25743D01* X32826Y25752D01* Y25247D01* X32818Y25256D01* X32795Y25240D01* X32747Y25218D01* X32697Y25204D01* X32645Y25200D01* X32592Y25204D01* X32542Y25218D01* X32505Y25235D01* Y25764D01* G37* G36* Y25125D02*X32508Y25124D01* X32575Y25106D01* X32645Y25100D01* X32714Y25106D01* X32781Y25124D01* X32826Y25145D01* Y23864D01* X32801Y23875D01* X32734Y23893D01* X32665Y23900D01* X32595Y23893D01* X32528Y23875D01* X32505Y23865D01* Y25125D01* G37* G36* Y23752D02*X32515Y23759D01* X32562Y23781D01* X32612Y23795D01* X32665Y23800D01* X32717Y23795D01* X32767Y23781D01* X32815Y23759D01* X32826Y23751D01* Y23248D01* X32815Y23240D01* X32767Y23218D01* X32717Y23204D01* X32665Y23200D01* X32612Y23204D01* X32562Y23218D01* X32515Y23240D01* X32505Y23247D01* Y23752D01* G37* G36* Y23134D02*X32528Y23124D01* X32595Y23106D01* X32665Y23100D01* X32734Y23106D01* X32801Y23124D01* X32826Y23135D01* Y21873D01* X32821Y21875D01* X32754Y21893D01* X32685Y21900D01* X32615Y21893D01* X32548Y21875D01* X32505Y21855D01* Y23134D01* G37* G36* Y21750D02*X32512Y21743D01* X32535Y21759D01* X32582Y21781D01* X32632Y21795D01* X32685Y21800D01* X32737Y21795D01* X32787Y21781D01* X32826Y21763D01* Y21236D01* X32787Y21218D01* X32737Y21204D01* X32685Y21200D01* X32632Y21204D01* X32582Y21218D01* X32535Y21240D01* X32512Y21256D01* X32505Y21249D01* Y21750D01* G37* G36* Y21144D02*X32548Y21124D01* X32615Y21106D01* X32685Y21100D01* X32754Y21106D01* X32821Y21124D01* X32826Y21126D01* Y19879D01* X32774Y19893D01* X32705Y19900D01* X32635Y19893D01* X32568Y19875D01* X32505Y19846D01* Y21144D01* G37* G36* Y19770D02*X32532Y19743D01* X32555Y19759D01* X32602Y19781D01* X32652Y19795D01* X32705Y19800D01* X32757Y19795D01* X32807Y19781D01* X32826Y19772D01* Y19227D01* X32807Y19218D01* X32757Y19204D01* X32705Y19200D01* X32652Y19204D01* X32602Y19218D01* X32555Y19240D01* X32532Y19256D01* X32505Y19229D01* Y19770D01* G37* G36* Y19153D02*X32568Y19124D01* X32635Y19106D01* X32705Y19100D01* X32774Y19106D01* X32826Y19120D01* Y17885D01* X32794Y17893D01* X32725Y17900D01* X32655Y17893D01* X32588Y17875D01* X32525Y17846D01* X32505Y17832D01* Y19153D01* G37* G36* Y17790D02*X32552Y17743D01* X32575Y17759D01* X32622Y17781D01* X32672Y17795D01* X32725Y17800D01* X32777Y17795D01* X32826Y17782D01* Y17217D01* X32777Y17204D01* X32725Y17200D01* X32672Y17204D01* X32622Y17218D01* X32575Y17240D01* X32552Y17256D01* X32505Y17209D01* Y17790D01* G37* G36* Y17167D02*X32525Y17153D01* X32588Y17124D01* X32655Y17106D01* X32725Y17100D01* X32794Y17106D01* X32826Y17114D01* Y15890D01* X32814Y15893D01* X32745Y15900D01* X32675Y15893D01* X32608Y15875D01* X32545Y15846D01* X32505Y15818D01* Y17167D01* G37* G36* Y15810D02*X32572Y15743D01* X32595Y15759D01* X32642Y15781D01* X32692Y15795D01* X32745Y15800D01* X32797Y15795D01* X32826Y15787D01* Y15212D01* X32797Y15204D01* X32745Y15200D01* X32692Y15204D01* X32642Y15218D01* X32595Y15240D01* X32572Y15256D01* X32505Y15189D01* Y15810D01* G37* G36* Y15181D02*X32545Y15153D01* X32608Y15124D01* X32675Y15106D01* X32745Y15100D01* X32814Y15106D01* X32826Y15109D01* Y13894D01* X32765Y13900D01* X32695Y13893D01* X32628Y13875D01* X32565Y13846D01* X32520Y13815D01* X32592Y13743D01* X32615Y13759D01* X32662Y13781D01* X32712Y13795D01* X32765Y13800D01* X32817Y13795D01* X32826Y13792D01* Y13207D01* X32817Y13204D01* X32765Y13200D01* X32712Y13204D01* X32662Y13218D01* X32615Y13240D01* X32592Y13256D01* X32520Y13184D01* X32565Y13153D01* X32628Y13124D01* X32695Y13106D01* X32765Y13100D01* X32826Y13105D01* Y11896D01* X32785Y11900D01* X32715Y11893D01* X32648Y11875D01* X32585Y11846D01* X32540Y11815D01* X32612Y11743D01* X32635Y11759D01* X32682Y11781D01* X32732Y11795D01* X32785Y11800D01* X32826Y11796D01* Y11203D01* X32785Y11200D01* X32732Y11204D01* X32682Y11218D01* X32635Y11240D01* X32612Y11256D01* X32540Y11184D01* X32585Y11153D01* X32648Y11124D01* X32715Y11106D01* X32785Y11100D01* X32826Y11103D01* Y9898D01* X32805Y9900D01* X32735Y9893D01* X32668Y9875D01* X32605Y9846D01* X32560Y9815D01* X32632Y9743D01* X32655Y9759D01* X32702Y9781D01* X32752Y9795D01* X32805Y9800D01* X32826Y9798D01* Y9201D01* X32805Y9200D01* X32752Y9204D01* X32702Y9218D01* X32655Y9240D01* X32632Y9256D01* X32560Y9184D01* X32605Y9153D01* X32668Y9124D01* X32735Y9106D01* X32805Y9100D01* X32826Y9101D01* Y7899D01* X32825Y7900D01* X32755Y7893D01* X32688Y7875D01* X32625Y7846D01* X32580Y7815D01* X32652Y7743D01* X32675Y7759D01* X32722Y7781D01* X32772Y7795D01* X32825Y7800D01* X32826Y7799D01* Y7200D01* X32825Y7200D01* X32772Y7204D01* X32722Y7218D01* X32675Y7240D01* X32652Y7256D01* X32580Y7184D01* X32625Y7153D01* X32688Y7124D01* X32755Y7106D01* X32825Y7100D01* X32826Y7100D01* Y5898D01* X32775Y5893D01* X32708Y5875D01* X32645Y5846D01* X32600Y5815D01* X32672Y5743D01* X32695Y5759D01* X32742Y5781D01* X32792Y5795D01* X32826Y5798D01* Y5201D01* X32792Y5204D01* X32742Y5218D01* X32695Y5240D01* X32672Y5256D01* X32600Y5184D01* X32645Y5153D01* X32708Y5124D01* X32775Y5106D01* X32826Y5101D01* Y3896D01* X32795Y3893D01* X32728Y3875D01* X32665Y3846D01* X32620Y3815D01* X32692Y3743D01* X32715Y3759D01* X32762Y3781D01* X32812Y3795D01* X32826Y3796D01* Y3203D01* X32812Y3204D01* X32762Y3218D01* X32715Y3240D01* X32692Y3256D01* X32620Y3184D01* X32665Y3153D01* X32728Y3124D01* X32795Y3106D01* X32826Y3103D01* Y1894D01* X32815Y1893D01* X32748Y1875D01* X32685Y1846D01* X32640Y1815D01* X32712Y1743D01* X32735Y1759D01* X32782Y1781D01* X32826Y1793D01* Y1206D01* X32782Y1218D01* X32735Y1240D01* X32712Y1256D01* X32640Y1184D01* X32685Y1153D01* X32748Y1124D01* X32815Y1106D01* X32826Y1105D01* Y0D01* X32505D01* Y1378D01* X32509Y1363D01* X32538Y1300D01* X32569Y1255D01* X32641Y1327D01* X32625Y1350D01* X32603Y1397D01* X32589Y1447D01* X32585Y1500D01* X32589Y1552D01* X32603Y1602D01* X32625Y1650D01* X32641Y1673D01* X32569Y1744D01* X32538Y1700D01* X32509Y1636D01* X32505Y1621D01* Y3329D01* X32518Y3300D01* X32549Y3255D01* X32621Y3327D01* X32605Y3350D01* X32583Y3397D01* X32569Y3447D01* X32565Y3500D01* X32569Y3552D01* X32583Y3602D01* X32605Y3650D01* X32621Y3673D01* X32549Y3744D01* X32518Y3700D01* X32505Y3670D01* Y5290D01* X32529Y5255D01* X32601Y5327D01* X32585Y5350D01* X32563Y5397D01* X32549Y5447D01* X32545Y5500D01* X32549Y5552D01* X32563Y5602D01* X32585Y5650D01* X32601Y5673D01* X32529Y5744D01* X32505Y5709D01* Y7262D01* X32509Y7255D01* X32581Y7327D01* X32565Y7350D01* X32543Y7397D01* X32529Y7447D01* X32525Y7500D01* X32529Y7552D01* X32543Y7602D01* X32565Y7650D01* X32581Y7673D01* X32509Y7744D01* X32505Y7737D01* Y9270D01* X32561Y9327D01* X32545Y9350D01* X32523Y9397D01* X32509Y9447D01* X32505Y9500D01* X32509Y9552D01* X32523Y9602D01* X32545Y9650D01* X32561Y9673D01* X32505Y9729D01* Y11290D01* X32541Y11327D01* X32525Y11350D01* X32505Y11393D01* Y11606D01* X32525Y11650D01* X32541Y11673D01* X32505Y11709D01* Y13310D01* X32521Y13327D01* X32505Y13350D01* X32505Y13350D01* Y13649D01* X32505Y13650D01* X32521Y13673D01* X32505Y13689D01* Y15181D01* G37* G36* X32826Y40000D02*X32926D01* Y35614D01* X32920Y35636D01* X32891Y35700D01* X32860Y35744D01* X32826Y35711D01* Y37268D01* X32840Y37255D01* X32871Y37300D01* X32900Y37363D01* X32918Y37430D01* X32925Y37500D01* X32918Y37569D01* X32900Y37636D01* X32871Y37700D01* X32840Y37744D01* X32826Y37731D01* Y39265D01* X32851Y39300D01* X32880Y39363D01* X32898Y39430D01* X32905Y39500D01* X32898Y39569D01* X32880Y39636D01* X32851Y39700D01* X32826Y39734D01* Y40000D01* G37* G36* X32926Y0D02*X32826D01* Y1105D01* X32885Y1100D01* X32926Y1103D01* Y0D01* G37* G36* Y1203D02*X32885Y1200D01* X32832Y1204D01* X32826Y1206D01* Y1793D01* X32832Y1795D01* X32885Y1800D01* X32926Y1796D01* Y1203D01* G37* G36* Y1896D02*X32885Y1900D01* X32826Y1894D01* Y3103D01* X32865Y3100D01* X32926Y3105D01* Y1896D01* G37* G36* Y3207D02*X32917Y3204D01* X32865Y3200D01* X32826Y3203D01* Y3796D01* X32865Y3800D01* X32917Y3795D01* X32926Y3792D01* Y3207D01* G37* G36* Y3894D02*X32865Y3900D01* X32826Y3896D01* Y5101D01* X32845Y5100D01* X32914Y5106D01* X32926Y5109D01* Y3894D01* G37* G36* Y5212D02*X32897Y5204D01* X32845Y5200D01* X32826Y5201D01* Y5798D01* X32845Y5800D01* X32897Y5795D01* X32926Y5787D01* Y5212D01* G37* G36* Y5890D02*X32914Y5893D01* X32845Y5900D01* X32826Y5898D01* Y7100D01* X32894Y7106D01* X32926Y7114D01* Y5890D01* G37* G36* Y7217D02*X32877Y7204D01* X32826Y7200D01* Y7799D01* X32877Y7795D01* X32926Y7782D01* Y7217D01* G37* G36* Y7885D02*X32894Y7893D01* X32826Y7899D01* Y9101D01* X32874Y9106D01* X32926Y9120D01* Y7885D01* G37* G36* Y9227D02*X32907Y9218D01* X32857Y9204D01* X32826Y9201D01* Y9798D01* X32857Y9795D01* X32907Y9781D01* X32926Y9772D01* Y9227D01* G37* G36* Y9879D02*X32874Y9893D01* X32826Y9898D01* Y11103D01* X32854Y11106D01* X32921Y11124D01* X32926Y11126D01* Y9879D01* G37* G36* Y11236D02*X32887Y11218D01* X32837Y11204D01* X32826Y11203D01* Y11796D01* X32837Y11795D01* X32887Y11781D01* X32926Y11763D01* Y11236D01* G37* G36* Y11873D02*X32921Y11875D01* X32854Y11893D01* X32826Y11896D01* Y13105D01* X32834Y13106D01* X32901Y13124D01* X32926Y13135D01* Y11873D01* G37* G36* Y13248D02*X32915Y13240D01* X32867Y13218D01* X32826Y13207D01* Y13792D01* X32867Y13781D01* X32915Y13759D01* X32926Y13751D01* Y13248D01* G37* G36* Y13864D02*X32901Y13875D01* X32834Y13893D01* X32826Y13894D01* Y15109D01* X32881Y15124D01* X32926Y15145D01* Y13864D01* G37* G36* Y15247D02*X32918Y15256D01* X32895Y15240D01* X32847Y15218D01* X32826Y15212D01* Y15787D01* X32847Y15781D01* X32895Y15759D01* X32918Y15743D01* X32926Y15752D01* Y15247D01* G37* G36* Y15854D02*X32881Y15875D01* X32826Y15890D01* Y17114D01* X32861Y17124D01* X32925Y17153D01* X32926Y17154D01* Y15854D01* G37* G36* Y17227D02*X32898Y17256D01* X32875Y17240D01* X32827Y17218D01* X32826Y17217D01* Y17782D01* X32827Y17781D01* X32875Y17759D01* X32898Y17743D01* X32926Y17772D01* Y17227D01* G37* G36* Y17845D02*X32925Y17846D01* X32861Y17875D01* X32826Y17885D01* Y19120D01* X32841Y19124D01* X32905Y19153D01* X32926Y19169D01* Y17845D01* G37* G36* Y19207D02*X32878Y19256D01* X32855Y19240D01* X32826Y19227D01* Y19772D01* X32855Y19759D01* X32878Y19743D01* X32926Y19792D01* Y19207D01* G37* G36* Y19831D02*X32905Y19846D01* X32841Y19875D01* X32826Y19879D01* Y21126D01* X32885Y21153D01* X32926Y21183D01* Y19831D01* G37* G36* Y21187D02*X32858Y21256D01* X32835Y21240D01* X32826Y21236D01* Y21763D01* X32835Y21759D01* X32858Y21743D01* X32926Y21812D01* Y21187D01* G37* G36* Y21817D02*X32885Y21846D01* X32826Y21873D01* Y23135D01* X32865Y23153D01* X32909Y23184D01* X32838Y23256D01* X32826Y23248D01* Y23751D01* X32838Y23743D01* X32909Y23815D01* X32865Y23846D01* X32826Y23864D01* Y25145D01* X32845Y25153D01* X32889Y25184D01* X32826Y25247D01* Y25752D01* X32889Y25815D01* X32845Y25846D01* X32826Y25854D01* Y27154D01* X32869Y27184D01* X32826Y27227D01* Y27772D01* X32869Y27815D01* X32826Y27845D01* Y29169D01* X32849Y29184D01* X32826Y29207D01* Y29792D01* X32849Y29815D01* X32826Y29831D01* Y31183D01* X32829Y31184D01* X32826Y31187D01* Y31812D01* X32829Y31815D01* X32826Y31817D01* Y33308D01* X32880Y33255D01* X32911Y33300D01* X32926Y33333D01* Y31706D01* X32900Y31744D01* X32828Y31673D01* X32844Y31650D01* X32866Y31602D01* X32880Y31552D01* X32885Y31500D01* X32880Y31447D01* X32866Y31397D01* X32844Y31350D01* X32828Y31327D01* X32900Y31255D01* X32926Y31293D01* Y29734D01* X32920Y29744D01* X32848Y29673D01* X32864Y29650D01* X32886Y29602D01* X32900Y29552D01* X32905Y29500D01* X32900Y29447D01* X32886Y29397D01* X32864Y29350D01* X32848Y29327D01* X32920Y29255D01* X32926Y29265D01* Y27731D01* X32868Y27673D01* X32884Y27650D01* X32906Y27602D01* X32920Y27552D01* X32925Y27500D01* X32920Y27447D01* X32906Y27397D01* X32884Y27350D01* X32868Y27327D01* X32926Y27268D01* Y25711D01* X32888Y25673D01* X32904Y25650D01* X32926Y25602D01* Y25397D01* X32904Y25350D01* X32888Y25327D01* X32926Y25288D01* Y23691D01* X32908Y23673D01* X32924Y23650D01* X32926Y23645D01* Y23354D01* X32924Y23350D01* X32908Y23327D01* X32926Y23308D01* Y21817D01* G37* G36* Y33666D02*X32911Y33700D01* X32880Y33744D01* X32826Y33691D01* Y35288D01* X32860Y35255D01* X32891Y35300D01* X32920Y35363D01* X32926Y35385D01* Y33666D01* G37* G36* Y40000D02*X33006D01* Y27614D01* X33000Y27636D01* X32971Y27700D01* X32940Y27744D01* X32926Y27731D01* Y29265D01* X32951Y29300D01* X32980Y29363D01* X32998Y29430D01* X33005Y29500D01* X32998Y29569D01* X32980Y29636D01* X32951Y29700D01* X32926Y29734D01* Y31293D01* X32931Y31300D01* X32960Y31363D01* X32978Y31430D01* X32985Y31500D01* X32978Y31569D01* X32960Y31636D01* X32931Y31700D01* X32926Y31706D01* Y33333D01* X32940Y33363D01* X32958Y33430D01* X32965Y33500D01* X32958Y33569D01* X32940Y33636D01* X32926Y33666D01* Y35385D01* X32938Y35430D01* X32945Y35500D01* X32938Y35569D01* X32926Y35614D01* Y40000D01* G37* G36* X33006Y0D02*X32926D01* Y1103D01* X32954Y1106D01* X33006Y1120D01* Y0D01* G37* G36* Y1227D02*X32987Y1218D01* X32937Y1204D01* X32926Y1203D01* Y1796D01* X32937Y1795D01* X32987Y1781D01* X33006Y1772D01* Y1227D01* G37* G36* Y1879D02*X32954Y1893D01* X32926Y1896D01* Y3105D01* X32934Y3106D01* X33001Y3124D01* X33006Y3126D01* Y1879D01* G37* G36* Y3236D02*X32967Y3218D01* X32926Y3207D01* Y3792D01* X32967Y3781D01* X33006Y3763D01* Y3236D01* G37* G36* Y3873D02*X33001Y3875D01* X32934Y3893D01* X32926Y3894D01* Y5109D01* X32981Y5124D01* X33006Y5135D01* Y3873D01* G37* G36* Y5248D02*X32995Y5240D01* X32947Y5218D01* X32926Y5212D01* Y5787D01* X32947Y5781D01* X32995Y5759D01* X33006Y5751D01* Y5248D01* G37* G36* Y5864D02*X32981Y5875D01* X32926Y5890D01* Y7114D01* X32961Y7124D01* X33006Y7145D01* Y5864D01* G37* G36* Y7247D02*X32998Y7256D01* X32975Y7240D01* X32927Y7218D01* X32926Y7217D01* Y7782D01* X32927Y7781D01* X32975Y7759D01* X32998Y7743D01* X33006Y7752D01* Y7247D01* G37* G36* Y7854D02*X32961Y7875D01* X32926Y7885D01* Y9120D01* X32941Y9124D01* X33005Y9153D01* X33006Y9154D01* Y7854D01* G37* G36* Y9227D02*X32978Y9256D01* X32955Y9240D01* X32926Y9227D01* Y9772D01* X32955Y9759D01* X32978Y9743D01* X33006Y9772D01* Y9227D01* G37* G36* Y9845D02*X33005Y9846D01* X32941Y9875D01* X32926Y9879D01* Y11126D01* X32985Y11153D01* X33006Y11169D01* Y9845D01* G37* G36* Y11207D02*X32958Y11256D01* X32935Y11240D01* X32926Y11236D01* Y11763D01* X32935Y11759D01* X32958Y11743D01* X33006Y11792D01* Y11207D01* G37* G36* Y11831D02*X32985Y11846D01* X32926Y11873D01* Y13135D01* X32965Y13153D01* X33006Y13183D01* Y11831D01* G37* G36* Y13187D02*X32938Y13256D01* X32926Y13248D01* Y13751D01* X32938Y13743D01* X33006Y13812D01* Y13187D01* G37* G36* Y13817D02*X32965Y13846D01* X32926Y13864D01* Y15145D01* X32945Y15153D01* X32989Y15184D01* X32926Y15247D01* Y15752D01* X32989Y15815D01* X32945Y15846D01* X32926Y15854D01* Y17154D01* X32969Y17184D01* X32926Y17227D01* Y17772D01* X32969Y17815D01* X32926Y17845D01* Y19169D01* X32949Y19184D01* X32926Y19207D01* Y19792D01* X32949Y19815D01* X32926Y19831D01* Y21183D01* X32929Y21184D01* X32926Y21187D01* Y21812D01* X32929Y21815D01* X32926Y21817D01* Y23308D01* X32980Y23255D01* X33006Y23293D01* Y21734D01* X33000Y21744D01* X32928Y21673D01* X32944Y21650D01* X32966Y21602D01* X32980Y21552D01* X32985Y21500D01* X32980Y21447D01* X32966Y21397D01* X32944Y21350D01* X32928Y21327D01* X33000Y21255D01* X33006Y21265D01* Y19731D01* X32948Y19673D01* X32964Y19650D01* X32986Y19602D01* X33000Y19552D01* X33005Y19500D01* X33000Y19447D01* X32986Y19397D01* X32964Y19350D01* X32948Y19327D01* X33006Y19268D01* Y17711D01* X32968Y17673D01* X32984Y17650D01* X33006Y17602D01* Y17397D01* X32984Y17350D01* X32968Y17327D01* X33006Y17288D01* Y15691D01* X32988Y15673D01* X33004Y15650D01* X33006Y15645D01* Y15354D01* X33004Y15350D01* X32988Y15327D01* X33006Y15308D01* Y13817D01* G37* G36* Y23706D02*X32980Y23744D01* X32926Y23691D01* Y25288D01* X32960Y25255D01* X32991Y25300D01* X33006Y25333D01* Y23706D01* G37* G36* Y25666D02*X32991Y25700D01* X32960Y25744D01* X32926Y25711D01* Y27268D01* X32940Y27255D01* X32971Y27300D01* X33000Y27363D01* X33006Y27385D01* Y25666D01* G37* G36* Y40000D02*X33086D01* Y19614D01* X33080Y19636D01* X33051Y19700D01* X33020Y19744D01* X33006Y19731D01* Y21265D01* X33031Y21300D01* X33060Y21363D01* X33078Y21430D01* X33085Y21500D01* X33078Y21569D01* X33060Y21636D01* X33031Y21700D01* X33006Y21734D01* Y23293D01* X33011Y23300D01* X33040Y23363D01* X33058Y23430D01* X33065Y23500D01* X33058Y23569D01* X33040Y23636D01* X33011Y23700D01* X33006Y23706D01* Y25333D01* X33020Y25363D01* X33038Y25430D01* X33045Y25500D01* X33038Y25569D01* X33020Y25636D01* X33006Y25666D01* Y27385D01* X33018Y27430D01* X33025Y27500D01* X33018Y27569D01* X33006Y27614D01* Y40000D01* G37* G36* X33086Y0D02*X33006D01* Y1120D01* X33021Y1124D01* X33085Y1153D01* X33086Y1154D01* Y0D01* G37* G36* Y1227D02*X33058Y1256D01* X33035Y1240D01* X33006Y1227D01* Y1772D01* X33035Y1759D01* X33058Y1743D01* X33086Y1772D01* Y1227D01* G37* G36* Y1845D02*X33085Y1846D01* X33021Y1875D01* X33006Y1879D01* Y3126D01* X33065Y3153D01* X33086Y3169D01* Y1845D01* G37* G36* Y3207D02*X33038Y3256D01* X33015Y3240D01* X33006Y3236D01* Y3763D01* X33015Y3759D01* X33038Y3743D01* X33086Y3792D01* Y3207D01* G37* G36* Y3831D02*X33065Y3846D01* X33006Y3873D01* Y5135D01* X33045Y5153D01* X33086Y5183D01* Y3831D01* G37* G36* Y5187D02*X33018Y5256D01* X33006Y5248D01* Y5751D01* X33018Y5743D01* X33086Y5812D01* Y5187D01* G37* G36* Y5817D02*X33045Y5846D01* X33006Y5864D01* Y7145D01* X33025Y7153D01* X33069Y7184D01* X33006Y7247D01* Y7752D01* X33069Y7815D01* X33025Y7846D01* X33006Y7854D01* Y9154D01* X33049Y9184D01* X33006Y9227D01* Y9772D01* X33049Y9815D01* X33006Y9845D01* Y11169D01* X33029Y11184D01* X33006Y11207D01* Y11792D01* X33029Y11815D01* X33006Y11831D01* Y13183D01* X33009Y13184D01* X33006Y13187D01* Y13812D01* X33009Y13815D01* X33006Y13817D01* Y15308D01* X33060Y15255D01* X33086Y15293D01* Y13734D01* X33080Y13744D01* X33008Y13673D01* X33024Y13650D01* X33046Y13602D01* X33060Y13552D01* X33065Y13500D01* X33060Y13447D01* X33046Y13397D01* X33024Y13350D01* X33008Y13327D01* X33080Y13255D01* X33086Y13265D01* Y11731D01* X33028Y11673D01* X33044Y11650D01* X33066Y11602D01* X33080Y11552D01* X33085Y11500D01* X33080Y11447D01* X33066Y11397D01* X33044Y11350D01* X33028Y11327D01* X33086Y11268D01* Y9711D01* X33048Y9673D01* X33064Y9650D01* X33086Y9602D01* Y9397D01* X33064Y9350D01* X33048Y9327D01* X33086Y9288D01* Y7691D01* X33068Y7673D01* X33084Y7650D01* X33086Y7645D01* Y7354D01* X33084Y7350D01* X33068Y7327D01* X33086Y7308D01* Y5817D01* G37* G36* Y15706D02*X33060Y15744D01* X33006Y15691D01* Y17288D01* X33040Y17255D01* X33071Y17300D01* X33086Y17333D01* Y15706D01* G37* G36* Y17666D02*X33071Y17700D01* X33040Y17744D01* X33006Y17711D01* Y19268D01* X33020Y19255D01* X33051Y19300D01* X33080Y19363D01* X33086Y19385D01* Y17666D01* G37* G36* Y40000D02*X33166D01* Y11614D01* X33160Y11636D01* X33131Y11700D01* X33100Y11744D01* X33086Y11731D01* Y13265D01* X33111Y13300D01* X33140Y13363D01* X33158Y13430D01* X33165Y13500D01* X33158Y13569D01* X33140Y13636D01* X33111Y13700D01* X33086Y13734D01* Y15293D01* X33091Y15300D01* X33120Y15363D01* X33138Y15430D01* X33145Y15500D01* X33138Y15569D01* X33120Y15636D01* X33091Y15700D01* X33086Y15706D01* Y17333D01* X33100Y17363D01* X33118Y17430D01* X33125Y17500D01* X33118Y17569D01* X33100Y17636D01* X33086Y17666D01* Y19385D01* X33098Y19430D01* X33105Y19500D01* X33098Y19569D01* X33086Y19614D01* Y40000D01* G37* G36* X33166Y0D02*X33086D01* Y1154D01* X33129Y1184D01* X33086Y1227D01* Y1772D01* X33129Y1815D01* X33086Y1845D01* Y3169D01* X33109Y3184D01* X33086Y3207D01* Y3792D01* X33109Y3815D01* X33086Y3831D01* Y5183D01* X33089Y5184D01* X33086Y5187D01* Y5812D01* X33089Y5815D01* X33086Y5817D01* Y7308D01* X33140Y7255D01* X33166Y7293D01* Y5734D01* X33160Y5744D01* X33088Y5673D01* X33104Y5650D01* X33126Y5602D01* X33140Y5552D01* X33145Y5500D01* X33140Y5447D01* X33126Y5397D01* X33104Y5350D01* X33088Y5327D01* X33160Y5255D01* X33166Y5265D01* Y3731D01* X33108Y3673D01* X33124Y3650D01* X33146Y3602D01* X33160Y3552D01* X33165Y3500D01* X33160Y3447D01* X33146Y3397D01* X33124Y3350D01* X33108Y3327D01* X33166Y3268D01* Y1711D01* X33128Y1673D01* X33144Y1650D01* X33166Y1602D01* Y1397D01* X33144Y1350D01* X33128Y1327D01* X33166Y1288D01* Y0D01* G37* G36* Y7706D02*X33140Y7744D01* X33086Y7691D01* Y9288D01* X33120Y9255D01* X33151Y9300D01* X33166Y9333D01* Y7706D01* G37* G36* Y9666D02*X33151Y9700D01* X33120Y9744D01* X33086Y9711D01* Y11268D01* X33100Y11255D01* X33131Y11300D01* X33160Y11363D01* X33166Y11385D01* Y9666D01* G37* G36* Y40000D02*X34203D01* Y39731D01* X34189Y39744D01* X34158Y39700D01* X34129Y39636D01* X34111Y39569D01* X34105Y39500D01* X34111Y39430D01* X34129Y39363D01* X34158Y39300D01* X34189Y39255D01* X34203Y39268D01* Y37735D01* X34178Y37700D01* X34149Y37636D01* X34131Y37569D01* X34125Y37500D01* X34131Y37430D01* X34149Y37363D01* X34178Y37300D01* X34203Y37264D01* Y35706D01* X34198Y35700D01* X34169Y35636D01* X34151Y35569D01* X34145Y35500D01* X34151Y35430D01* X34169Y35363D01* X34198Y35300D01* X34203Y35293D01* Y33667D01* X34189Y33636D01* X34171Y33569D01* X34165Y33500D01* X34171Y33430D01* X34189Y33363D01* X34203Y33333D01* Y31614D01* X34191Y31569D01* X34185Y31500D01* X34191Y31430D01* X34203Y31385D01* Y0D01* X33166D01* Y1288D01* X33200Y1255D01* X33231Y1300D01* X33260Y1363D01* X33278Y1430D01* X33285Y1500D01* X33278Y1569D01* X33260Y1636D01* X33231Y1700D01* X33200Y1744D01* X33166Y1711D01* Y3268D01* X33180Y3255D01* X33211Y3300D01* X33240Y3363D01* X33258Y3430D01* X33265Y3500D01* X33258Y3569D01* X33240Y3636D01* X33211Y3700D01* X33180Y3744D01* X33166Y3731D01* Y5265D01* X33191Y5300D01* X33220Y5363D01* X33238Y5430D01* X33245Y5500D01* X33238Y5569D01* X33220Y5636D01* X33191Y5700D01* X33166Y5734D01* Y7293D01* X33171Y7300D01* X33200Y7363D01* X33218Y7430D01* X33225Y7500D01* X33218Y7569D01* X33200Y7636D01* X33171Y7700D01* X33166Y7706D01* Y9333D01* X33180Y9363D01* X33198Y9430D01* X33205Y9500D01* X33198Y9569D01* X33180Y9636D01* X33166Y9666D01* Y11385D01* X33178Y11430D01* X33185Y11500D01* X33178Y11569D01* X33166Y11614D01* Y40000D01* G37* G36* Y1602D02*X33180Y1552D01* X33185Y1500D01* X33180Y1447D01* X33166Y1397D01* Y1602D01* G37* G36* X33086Y9602D02*X33100Y9552D01* X33105Y9500D01* X33100Y9447D01* X33086Y9397D01* Y9602D01* G37* G36* Y7645D02*X33106Y7602D01* X33120Y7552D01* X33125Y7500D01* X33120Y7447D01* X33106Y7397D01* X33086Y7354D01* Y7645D01* G37* G36* X33006Y17602D02*X33020Y17552D01* X33025Y17500D01* X33020Y17447D01* X33006Y17397D01* Y17602D01* G37* G36* Y15645D02*X33026Y15602D01* X33040Y15552D01* X33045Y15500D01* X33040Y15447D01* X33026Y15397D01* X33006Y15354D01* Y15645D01* G37* G36* X32926Y25602D02*X32940Y25552D01* X32945Y25500D01* X32940Y25447D01* X32926Y25397D01* Y25602D01* G37* G36* Y23645D02*X32946Y23602D01* X32960Y23552D01* X32965Y23500D01* X32960Y23447D01* X32946Y23397D01* X32926Y23354D01* Y23645D01* G37* G36* X34203Y40000D02*X34283D01* Y39831D01* X34260Y39815D01* X34283Y39792D01* Y39207D01* X34260Y39184D01* X34283Y39168D01* Y37817D01* X34280Y37815D01* X34283Y37812D01* Y37187D01* X34280Y37184D01* X34283Y37182D01* Y35691D01* X34229Y35744D01* X34203Y35706D01* Y37264D01* X34209Y37255D01* X34281Y37327D01* X34265Y37350D01* X34243Y37397D01* X34229Y37447D01* X34225Y37500D01* X34229Y37552D01* X34243Y37602D01* X34265Y37650D01* X34281Y37673D01* X34209Y37744D01* X34203Y37735D01* Y39268D01* X34261Y39327D01* X34245Y39350D01* X34223Y39397D01* X34209Y39447D01* X34205Y39500D01* X34209Y39552D01* X34223Y39602D01* X34245Y39650D01* X34261Y39673D01* X34203Y39731D01* Y40000D01* G37* G36* X34283Y0D02*X34203D01* Y31385D01* X34209Y31363D01* X34238Y31300D01* X34269Y31255D01* X34283Y31268D01* Y29735D01* X34258Y29700D01* X34229Y29636D01* X34211Y29569D01* X34205Y29500D01* X34211Y29430D01* X34229Y29363D01* X34258Y29300D01* X34283Y29264D01* Y27706D01* X34278Y27700D01* X34249Y27636D01* X34231Y27569D01* X34225Y27500D01* X34231Y27430D01* X34249Y27363D01* X34278Y27300D01* X34283Y27293D01* Y25667D01* X34269Y25636D01* X34251Y25569D01* X34245Y25500D01* X34251Y25430D01* X34269Y25363D01* X34283Y25333D01* Y23614D01* X34271Y23569D01* X34265Y23500D01* X34271Y23430D01* X34283Y23385D01* Y0D01* G37* G36* Y31731D02*X34269Y31744D01* X34238Y31700D01* X34209Y31636D01* X34203Y31614D01* Y33333D01* X34218Y33300D01* X34249Y33255D01* X34283Y33288D01* Y31731D01* G37* G36* Y33397D02*X34283Y33397D01* X34269Y33447D01* X34265Y33500D01* X34269Y33552D01* X34283Y33602D01* X34283Y33602D01* Y33397D01* G37* G36* Y33711D02*X34249Y33744D01* X34218Y33700D01* X34203Y33667D01* Y35293D01* X34229Y35255D01* X34283Y35308D01* Y33711D01* G37* G36* Y35354D02*X34263Y35397D01* X34249Y35447D01* X34245Y35500D01* X34249Y35552D01* X34263Y35602D01* X34283Y35645D01* Y35354D01* G37* G36* Y40000D02*X34525D01* Y39898D01* X34505Y39900D01* X34435Y39893D01* X34368Y39875D01* X34305Y39846D01* X34283Y39831D01* Y40000D01* G37* G36* Y39792D02*X34332Y39743D01* X34355Y39759D01* X34402Y39781D01* X34452Y39795D01* X34505Y39800D01* X34525Y39798D01* Y39201D01* X34505Y39200D01* X34452Y39204D01* X34402Y39218D01* X34355Y39240D01* X34332Y39256D01* X34283Y39207D01* Y39792D01* G37* G36* Y39168D02*X34305Y39153D01* X34368Y39124D01* X34435Y39106D01* X34505Y39100D01* X34525Y39101D01* Y37900D01* X34455Y37893D01* X34388Y37875D01* X34325Y37846D01* X34283Y37817D01* Y39168D01* G37* G36* Y37812D02*X34352Y37743D01* X34375Y37759D01* X34422Y37781D01* X34472Y37795D01* X34525Y37800D01* Y37200D01* X34472Y37204D01* X34422Y37218D01* X34375Y37240D01* X34352Y37256D01* X34283Y37187D01* Y37812D01* G37* G36* Y37182D02*X34325Y37153D01* X34363Y37135D01* Y35854D01* X34345Y35846D01* X34300Y35815D01* X34363Y35752D01* Y35247D01* X34300Y35184D01* X34345Y35153D01* X34363Y35145D01* Y33845D01* X34320Y33815D01* X34363Y33772D01* Y33227D01* X34320Y33184D01* X34363Y33154D01* Y31831D01* X34340Y31815D01* X34363Y31792D01* Y31207D01* X34340Y31184D01* X34363Y31168D01* Y29817D01* X34360Y29815D01* X34363Y29812D01* Y29187D01* X34360Y29184D01* X34363Y29182D01* Y27691D01* X34309Y27744D01* X34283Y27706D01* Y29264D01* X34289Y29255D01* X34361Y29327D01* X34345Y29350D01* X34323Y29397D01* X34309Y29447D01* X34305Y29500D01* X34309Y29552D01* X34323Y29602D01* X34345Y29650D01* X34361Y29673D01* X34289Y29744D01* X34283Y29735D01* Y31268D01* X34341Y31327D01* X34325Y31350D01* X34303Y31397D01* X34289Y31447D01* X34285Y31500D01* X34289Y31552D01* X34303Y31602D01* X34325Y31650D01* X34341Y31673D01* X34283Y31731D01* Y33288D01* X34321Y33327D01* X34305Y33350D01* X34283Y33397D01* Y33602D01* X34305Y33650D01* X34321Y33673D01* X34283Y33711D01* Y35308D01* X34301Y35327D01* X34285Y35350D01* X34283Y35354D01* Y35645D01* X34285Y35650D01* X34301Y35673D01* X34283Y35691D01* Y37182D01* G37* G36* X34363Y0D02*X34283D01* Y23385D01* X34289Y23363D01* X34318Y23300D01* X34349Y23255D01* X34363Y23268D01* Y21735D01* X34338Y21700D01* X34309Y21636D01* X34291Y21569D01* X34285Y21500D01* X34291Y21430D01* X34309Y21363D01* X34338Y21300D01* X34363Y21264D01* Y19706D01* X34358Y19700D01* X34329Y19636D01* X34311Y19569D01* X34305Y19500D01* X34311Y19430D01* X34329Y19363D01* X34358Y19300D01* X34363Y19293D01* Y17667D01* X34349Y17636D01* X34331Y17569D01* X34325Y17500D01* X34331Y17430D01* X34349Y17363D01* X34363Y17333D01* Y15614D01* X34351Y15569D01* X34345Y15500D01* X34351Y15430D01* X34363Y15385D01* Y0D01* G37* G36* Y23731D02*X34349Y23744D01* X34318Y23700D01* X34289Y23636D01* X34283Y23614D01* Y25333D01* X34298Y25300D01* X34329Y25255D01* X34363Y25288D01* Y23731D01* G37* G36* Y25397D02*X34363Y25397D01* X34349Y25447D01* X34345Y25500D01* X34349Y25552D01* X34363Y25602D01* X34363Y25602D01* Y25397D01* G37* G36* Y25711D02*X34329Y25744D01* X34298Y25700D01* X34283Y25667D01* Y27293D01* X34309Y27255D01* X34363Y27308D01* Y25711D01* G37* G36* Y27354D02*X34343Y27397D01* X34329Y27447D01* X34325Y27500D01* X34329Y27552D01* X34343Y27602D01* X34363Y27645D01* Y27354D01* G37* G36* Y37135D02*X34388Y37124D01* X34455Y37106D01* X34525Y37100D01* Y35898D01* X34475Y35893D01* X34408Y35875D01* X34363Y35854D01* Y37135D01* G37* G36* Y35752D02*X34372Y35743D01* X34395Y35759D01* X34442Y35781D01* X34492Y35795D01* X34525Y35798D01* Y35201D01* X34492Y35204D01* X34442Y35218D01* X34395Y35240D01* X34372Y35256D01* X34363Y35247D01* Y35752D01* G37* G36* Y35145D02*X34408Y35124D01* X34475Y35106D01* X34525Y35101D01* Y33896D01* X34495Y33893D01* X34428Y33875D01* X34365Y33846D01* X34363Y33845D01* Y35145D01* G37* G36* Y33772D02*X34392Y33743D01* X34415Y33759D01* X34462Y33781D01* X34512Y33795D01* X34525Y33796D01* Y33203D01* X34512Y33204D01* X34462Y33218D01* X34415Y33240D01* X34392Y33256D01* X34363Y33227D01* Y33772D01* G37* G36* Y33154D02*X34365Y33153D01* X34428Y33124D01* X34495Y33106D01* X34525Y33103D01* Y31894D01* X34515Y31893D01* X34448Y31875D01* X34385Y31846D01* X34363Y31831D01* Y33154D01* G37* G36* Y31792D02*X34412Y31743D01* X34435Y31759D01* X34482Y31781D01* X34525Y31793D01* Y31206D01* X34482Y31218D01* X34435Y31240D01* X34412Y31256D01* X34363Y31207D01* Y31792D01* G37* G36* Y31168D02*X34385Y31153D01* X34448Y31124D01* X34515Y31106D01* X34525Y31105D01* Y29891D01* X34468Y29875D01* X34405Y29846D01* X34363Y29817D01* Y31168D01* G37* G36* Y29812D02*X34432Y29743D01* X34455Y29759D01* X34502Y29781D01* X34525Y29787D01* Y29212D01* X34502Y29218D01* X34455Y29240D01* X34432Y29256D01* X34363Y29187D01* Y29812D01* G37* G36* Y29182D02*X34405Y29153D01* X34443Y29135D01* Y27854D01* X34425Y27846D01* X34380Y27815D01* X34443Y27752D01* Y27247D01* X34380Y27184D01* X34425Y27153D01* X34443Y27145D01* Y25845D01* X34400Y25815D01* X34443Y25772D01* Y25227D01* X34400Y25184D01* X34443Y25154D01* Y23831D01* X34420Y23815D01* X34443Y23792D01* Y23207D01* X34420Y23184D01* X34443Y23168D01* Y21817D01* X34440Y21815D01* X34443Y21812D01* Y21187D01* X34440Y21184D01* X34443Y21182D01* Y19691D01* X34389Y19744D01* X34363Y19706D01* Y21264D01* X34369Y21255D01* X34441Y21327D01* X34425Y21350D01* X34403Y21397D01* X34389Y21447D01* X34385Y21500D01* X34389Y21552D01* X34403Y21602D01* X34425Y21650D01* X34441Y21673D01* X34369Y21744D01* X34363Y21735D01* Y23268D01* X34421Y23327D01* X34405Y23350D01* X34383Y23397D01* X34369Y23447D01* X34365Y23500D01* X34369Y23552D01* X34383Y23602D01* X34405Y23650D01* X34421Y23673D01* X34363Y23731D01* Y25288D01* X34401Y25327D01* X34385Y25350D01* X34363Y25397D01* Y25602D01* X34385Y25650D01* X34401Y25673D01* X34363Y25711D01* Y27308D01* X34381Y27327D01* X34365Y27350D01* X34363Y27354D01* Y27645D01* X34365Y27650D01* X34381Y27673D01* X34363Y27691D01* Y29182D01* G37* G36* X34443Y11706D02*X34438Y11700D01* X34409Y11636D01* X34391Y11569D01* X34385Y11500D01* X34391Y11430D01* X34409Y11363D01* X34438Y11300D01* X34443Y11293D01* Y9667D01* X34429Y9636D01* X34411Y9569D01* X34405Y9500D01* X34411Y9430D01* X34429Y9363D01* X34443Y9333D01* Y7614D01* X34431Y7569D01* X34425Y7500D01* X34431Y7430D01* X34443Y7385D01* Y0D01* X34363D01* Y15385D01* X34369Y15363D01* X34398Y15300D01* X34429Y15255D01* X34443Y15268D01* Y13735D01* X34418Y13700D01* X34389Y13636D01* X34371Y13569D01* X34365Y13500D01* X34371Y13430D01* X34389Y13363D01* X34418Y13300D01* X34443Y13264D01* Y11706D01* G37* G36* Y15731D02*X34429Y15744D01* X34398Y15700D01* X34369Y15636D01* X34363Y15614D01* Y17333D01* X34378Y17300D01* X34409Y17255D01* X34443Y17288D01* Y15731D01* G37* G36* Y17397D02*X34443Y17397D01* X34429Y17447D01* X34425Y17500D01* X34429Y17552D01* X34443Y17602D01* X34443Y17602D01* Y17397D01* G37* G36* Y17711D02*X34409Y17744D01* X34378Y17700D01* X34363Y17667D01* Y19293D01* X34389Y19255D01* X34443Y19308D01* Y17711D01* G37* G36* Y19354D02*X34423Y19397D01* X34409Y19447D01* X34405Y19500D01* X34409Y19552D01* X34423Y19602D01* X34443Y19645D01* Y19354D01* G37* G36* Y29135D02*X34468Y29124D01* X34525Y29108D01* Y27885D01* X34488Y27875D01* X34443Y27854D01* Y29135D01* G37* G36* Y27752D02*X34452Y27743D01* X34475Y27759D01* X34522Y27781D01* X34525Y27782D01* Y27217D01* X34522Y27218D01* X34475Y27240D01* X34452Y27256D01* X34443Y27247D01* Y27752D01* G37* G36* Y27145D02*X34488Y27124D01* X34525Y27114D01* Y25880D01* X34508Y25875D01* X34445Y25846D01* X34443Y25845D01* Y27145D01* G37* G36* Y25772D02*X34472Y25743D01* X34495Y25759D01* X34525Y25773D01* Y25226D01* X34495Y25240D01* X34472Y25256D01* X34443Y25227D01* Y25772D01* G37* G36* Y25154D02*X34445Y25153D01* X34508Y25124D01* X34525Y25119D01* Y23874D01* X34465Y23846D01* X34443Y23831D01* Y25154D01* G37* G36* Y23792D02*X34492Y23743D01* X34515Y23759D01* X34525Y23764D01* Y23235D01* X34515Y23240D01* X34492Y23256D01* X34443Y23207D01* Y23792D01* G37* G36* Y23168D02*X34465Y23153D01* X34525Y23125D01* Y21865D01* X34485Y21846D01* X34443Y21817D01* Y23168D01* G37* G36* Y21812D02*X34512Y21743D01* X34525Y21752D01* Y21247D01* X34512Y21256D01* X34443Y21187D01* Y21812D01* G37* G36* Y21182D02*X34485Y21153D01* X34525Y21134D01* Y19855D01* X34505Y19846D01* X34460Y19815D01* X34525Y19750D01* Y19249D01* X34460Y19184D01* X34505Y19153D01* X34525Y19144D01* Y17846D01* X34480Y17815D01* X34525Y17770D01* Y17229D01* X34480Y17184D01* X34525Y17153D01* Y15832D01* X34500Y15815D01* X34525Y15790D01* Y15209D01* X34500Y15184D01* X34525Y15167D01* Y13818D01* X34520Y13815D01* X34525Y13810D01* Y13189D01* X34520Y13184D01* X34525Y13181D01* Y11689D01* X34469Y11744D01* X34443Y11706D01* Y13264D01* X34449Y13255D01* X34521Y13327D01* X34505Y13350D01* X34483Y13397D01* X34469Y13447D01* X34465Y13500D01* X34469Y13552D01* X34483Y13602D01* X34505Y13650D01* X34521Y13673D01* X34449Y13744D01* X34443Y13735D01* Y15268D01* X34501Y15327D01* X34485Y15350D01* X34463Y15397D01* X34449Y15447D01* X34445Y15500D01* X34449Y15552D01* X34463Y15602D01* X34485Y15650D01* X34501Y15673D01* X34443Y15731D01* Y17288D01* X34481Y17327D01* X34465Y17350D01* X34443Y17397D01* Y17602D01* X34465Y17650D01* X34481Y17673D01* X34443Y17711D01* Y19308D01* X34461Y19327D01* X34445Y19350D01* X34443Y19354D01* Y19645D01* X34445Y19650D01* X34461Y19673D01* X34443Y19691D01* Y21182D01* G37* G36* Y11293D02*X34469Y11255D01* X34525Y11310D01* Y9709D01* X34489Y9744D01* X34458Y9700D01* X34443Y9667D01* Y11293D01* G37* G36* Y9333D02*X34458Y9300D01* X34489Y9255D01* X34525Y9290D01* Y7729D01* X34509Y7744D01* X34478Y7700D01* X34449Y7636D01* X34443Y7614D01* Y9333D01* G37* G36* Y7385D02*X34449Y7363D01* X34478Y7300D01* X34509Y7255D01* X34525Y7270D01* Y5737D01* X34498Y5700D01* X34469Y5636D01* X34451Y5569D01* X34445Y5500D01* X34451Y5430D01* X34469Y5363D01* X34498Y5300D01* X34525Y5262D01* Y3709D01* X34518Y3700D01* X34489Y3636D01* X34471Y3569D01* X34465Y3500D01* X34471Y3430D01* X34489Y3363D01* X34518Y3300D01* X34525Y3290D01* Y1670D01* X34509Y1636D01* X34491Y1569D01* X34485Y1500D01* X34491Y1430D01* X34509Y1363D01* X34525Y1329D01* Y0D01* X34443D01* Y7385D01* G37* G36* X34525Y11350D02*X34503Y11397D01* X34489Y11447D01* X34485Y11500D01* X34489Y11552D01* X34503Y11602D01* X34525Y11649D01* Y11350D01* G37* G36* Y9393D02*X34523Y9397D01* X34509Y9447D01* X34505Y9500D01* X34509Y9552D01* X34523Y9602D01* X34525Y9606D01* Y9393D01* G37* G36* Y40000D02*X34846D01* Y39706D01* X34820Y39744D01* X34748Y39673D01* X34764Y39650D01* X34786Y39602D01* X34800Y39552D01* X34805Y39500D01* X34800Y39447D01* X34786Y39397D01* X34764Y39350D01* X34748Y39327D01* X34820Y39255D01* X34846Y39293D01* Y37734D01* X34840Y37744D01* X34768Y37673D01* X34784Y37650D01* X34806Y37602D01* X34820Y37552D01* X34825Y37500D01* X34820Y37447D01* X34806Y37397D01* X34784Y37350D01* X34768Y37327D01* X34840Y37255D01* X34846Y37265D01* Y35731D01* X34788Y35673D01* X34804Y35650D01* X34826Y35602D01* X34840Y35552D01* X34845Y35500D01* X34840Y35447D01* X34826Y35397D01* X34804Y35350D01* X34788Y35327D01* X34846Y35268D01* Y33711D01* X34808Y33673D01* X34824Y33650D01* X34846Y33602D01* Y33397D01* X34824Y33350D01* X34808Y33327D01* X34846Y33288D01* Y31691D01* X34828Y31673D01* X34844Y31650D01* X34846Y31645D01* Y31354D01* X34844Y31350D01* X34828Y31327D01* X34846Y31308D01* Y29817D01* X34805Y29846D01* X34741Y29875D01* X34674Y29893D01* X34605Y29900D01* X34535Y29893D01* X34525Y29891D01* Y31105D01* X34585Y31100D01* X34654Y31106D01* X34721Y31124D01* X34785Y31153D01* X34829Y31184D01* X34758Y31256D01* X34735Y31240D01* X34687Y31218D01* X34637Y31204D01* X34585Y31200D01* X34532Y31204D01* X34525Y31206D01* Y31793D01* X34532Y31795D01* X34585Y31800D01* X34637Y31795D01* X34687Y31781D01* X34735Y31759D01* X34758Y31743D01* X34829Y31815D01* X34785Y31846D01* X34721Y31875D01* X34654Y31893D01* X34585Y31900D01* X34525Y31894D01* Y33103D01* X34565Y33100D01* X34634Y33106D01* X34701Y33124D01* X34765Y33153D01* X34809Y33184D01* X34738Y33256D01* X34715Y33240D01* X34667Y33218D01* X34617Y33204D01* X34565Y33200D01* X34525Y33203D01* Y33796D01* X34565Y33800D01* X34617Y33795D01* X34667Y33781D01* X34715Y33759D01* X34738Y33743D01* X34809Y33815D01* X34765Y33846D01* X34701Y33875D01* X34634Y33893D01* X34565Y33900D01* X34525Y33896D01* Y35101D01* X34545Y35100D01* X34614Y35106D01* X34681Y35124D01* X34745Y35153D01* X34789Y35184D01* X34718Y35256D01* X34695Y35240D01* X34647Y35218D01* X34597Y35204D01* X34545Y35200D01* X34525Y35201D01* Y35798D01* X34545Y35800D01* X34597Y35795D01* X34647Y35781D01* X34695Y35759D01* X34718Y35743D01* X34789Y35815D01* X34745Y35846D01* X34681Y35875D01* X34614Y35893D01* X34545Y35900D01* X34525Y35898D01* Y37100D01* X34594Y37106D01* X34661Y37124D01* X34725Y37153D01* X34769Y37184D01* X34698Y37256D01* X34675Y37240D01* X34627Y37218D01* X34577Y37204D01* X34525Y37200D01* Y37800D01* X34577Y37795D01* X34627Y37781D01* X34675Y37759D01* X34698Y37743D01* X34769Y37815D01* X34725Y37846D01* X34661Y37875D01* X34594Y37893D01* X34525Y37900D01* Y39101D01* X34574Y39106D01* X34641Y39124D01* X34705Y39153D01* X34749Y39184D01* X34678Y39256D01* X34655Y39240D01* X34607Y39218D01* X34557Y39204D01* X34525Y39201D01* Y39798D01* X34557Y39795D01* X34607Y39781D01* X34655Y39759D01* X34678Y39743D01* X34749Y39815D01* X34705Y39846D01* X34641Y39875D01* X34574Y39893D01* X34525Y39898D01* Y40000D01* G37* G36* Y29787D02*X34552Y29795D01* X34605Y29800D01* X34657Y29795D01* X34707Y29781D01* X34755Y29759D01* X34778Y29743D01* X34846Y29812D01* Y29187D01* X34778Y29256D01* X34755Y29240D01* X34707Y29218D01* X34657Y29204D01* X34605Y29200D01* X34552Y29204D01* X34525Y29212D01* Y29787D01* G37* G36* Y29108D02*X34535Y29106D01* X34605Y29100D01* X34674Y29106D01* X34741Y29124D01* X34805Y29153D01* X34846Y29183D01* Y27831D01* X34825Y27846D01* X34761Y27875D01* X34694Y27893D01* X34625Y27900D01* X34555Y27893D01* X34525Y27885D01* Y29108D01* G37* G36* Y27782D02*X34572Y27795D01* X34625Y27800D01* X34677Y27795D01* X34727Y27781D01* X34775Y27759D01* X34798Y27743D01* X34846Y27792D01* Y27207D01* X34798Y27256D01* X34775Y27240D01* X34727Y27218D01* X34677Y27204D01* X34625Y27200D01* X34572Y27204D01* X34525Y27217D01* Y27782D01* G37* G36* Y27114D02*X34555Y27106D01* X34625Y27100D01* X34694Y27106D01* X34761Y27124D01* X34825Y27153D01* X34846Y27169D01* Y25845D01* X34845Y25846D01* X34781Y25875D01* X34714Y25893D01* X34645Y25900D01* X34575Y25893D01* X34525Y25880D01* Y27114D01* G37* G36* Y25773D02*X34542Y25781D01* X34592Y25795D01* X34645Y25800D01* X34697Y25795D01* X34747Y25781D01* X34795Y25759D01* X34818Y25743D01* X34846Y25772D01* Y25227D01* X34818Y25256D01* X34795Y25240D01* X34747Y25218D01* X34697Y25204D01* X34645Y25200D01* X34592Y25204D01* X34542Y25218D01* X34525Y25226D01* Y25773D01* G37* G36* Y25119D02*X34575Y25106D01* X34645Y25100D01* X34714Y25106D01* X34781Y25124D01* X34845Y25153D01* X34846Y25154D01* Y23854D01* X34801Y23875D01* X34734Y23893D01* X34665Y23900D01* X34595Y23893D01* X34528Y23875D01* X34525Y23874D01* Y25119D01* G37* G36* Y23764D02*X34562Y23781D01* X34612Y23795D01* X34665Y23800D01* X34717Y23795D01* X34767Y23781D01* X34815Y23759D01* X34838Y23743D01* X34846Y23752D01* Y23247D01* X34838Y23256D01* X34815Y23240D01* X34767Y23218D01* X34717Y23204D01* X34665Y23200D01* X34612Y23204D01* X34562Y23218D01* X34525Y23235D01* Y23764D01* G37* G36* Y23125D02*X34528Y23124D01* X34595Y23106D01* X34665Y23100D01* X34734Y23106D01* X34801Y23124D01* X34846Y23145D01* Y21864D01* X34821Y21875D01* X34754Y21893D01* X34685Y21900D01* X34615Y21893D01* X34548Y21875D01* X34525Y21865D01* Y23125D01* G37* G36* Y21752D02*X34535Y21759D01* X34582Y21781D01* X34632Y21795D01* X34685Y21800D01* X34737Y21795D01* X34787Y21781D01* X34835Y21759D01* X34846Y21751D01* Y21248D01* X34835Y21240D01* X34787Y21218D01* X34737Y21204D01* X34685Y21200D01* X34632Y21204D01* X34582Y21218D01* X34535Y21240D01* X34525Y21247D01* Y21752D01* G37* G36* Y21134D02*X34548Y21124D01* X34615Y21106D01* X34685Y21100D01* X34754Y21106D01* X34821Y21124D01* X34846Y21135D01* Y19873D01* X34841Y19875D01* X34774Y19893D01* X34705Y19900D01* X34635Y19893D01* X34568Y19875D01* X34525Y19855D01* Y21134D01* G37* G36* Y19750D02*X34532Y19743D01* X34555Y19759D01* X34602Y19781D01* X34652Y19795D01* X34705Y19800D01* X34757Y19795D01* X34807Y19781D01* X34846Y19763D01* Y19236D01* X34807Y19218D01* X34757Y19204D01* X34705Y19200D01* X34652Y19204D01* X34602Y19218D01* X34555Y19240D01* X34532Y19256D01* X34525Y19249D01* Y19750D01* G37* G36* Y19144D02*X34568Y19124D01* X34635Y19106D01* X34705Y19100D01* X34774Y19106D01* X34841Y19124D01* X34846Y19126D01* Y17879D01* X34794Y17893D01* X34725Y17900D01* X34655Y17893D01* X34588Y17875D01* X34525Y17846D01* Y19144D01* G37* G36* Y17770D02*X34552Y17743D01* X34575Y17759D01* X34622Y17781D01* X34672Y17795D01* X34725Y17800D01* X34777Y17795D01* X34827Y17781D01* X34846Y17772D01* Y17227D01* X34827Y17218D01* X34777Y17204D01* X34725Y17200D01* X34672Y17204D01* X34622Y17218D01* X34575Y17240D01* X34552Y17256D01* X34525Y17229D01* Y17770D01* G37* G36* Y17153D02*X34588Y17124D01* X34655Y17106D01* X34725Y17100D01* X34794Y17106D01* X34846Y17120D01* Y15885D01* X34814Y15893D01* X34745Y15900D01* X34675Y15893D01* X34608Y15875D01* X34545Y15846D01* X34525Y15832D01* Y17153D01* G37* G36* Y15790D02*X34572Y15743D01* X34595Y15759D01* X34642Y15781D01* X34692Y15795D01* X34745Y15800D01* X34797Y15795D01* X34846Y15782D01* Y15217D01* X34797Y15204D01* X34745Y15200D01* X34692Y15204D01* X34642Y15218D01* X34595Y15240D01* X34572Y15256D01* X34525Y15209D01* Y15790D01* G37* G36* Y15167D02*X34545Y15153D01* X34608Y15124D01* X34675Y15106D01* X34745Y15100D01* X34814Y15106D01* X34846Y15114D01* Y13890D01* X34834Y13893D01* X34765Y13900D01* X34695Y13893D01* X34628Y13875D01* X34565Y13846D01* X34525Y13818D01* Y15167D01* G37* G36* Y13810D02*X34592Y13743D01* X34615Y13759D01* X34662Y13781D01* X34712Y13795D01* X34765Y13800D01* X34817Y13795D01* X34846Y13787D01* Y13212D01* X34817Y13204D01* X34765Y13200D01* X34712Y13204D01* X34662Y13218D01* X34615Y13240D01* X34592Y13256D01* X34525Y13189D01* Y13810D01* G37* G36* Y13181D02*X34565Y13153D01* X34628Y13124D01* X34695Y13106D01* X34765Y13100D01* X34834Y13106D01* X34846Y13109D01* Y11894D01* X34785Y11900D01* X34715Y11893D01* X34648Y11875D01* X34585Y11846D01* X34540Y11815D01* X34612Y11743D01* X34635Y11759D01* X34682Y11781D01* X34732Y11795D01* X34785Y11800D01* X34837Y11795D01* X34846Y11792D01* Y11207D01* X34837Y11204D01* X34785Y11200D01* X34732Y11204D01* X34682Y11218D01* X34635Y11240D01* X34612Y11256D01* X34540Y11184D01* X34585Y11153D01* X34648Y11124D01* X34715Y11106D01* X34785Y11100D01* X34846Y11105D01* Y9896D01* X34805Y9900D01* X34735Y9893D01* X34668Y9875D01* X34605Y9846D01* X34560Y9815D01* X34632Y9743D01* X34655Y9759D01* X34702Y9781D01* X34752Y9795D01* X34805Y9800D01* X34846Y9796D01* Y9203D01* X34805Y9200D01* X34752Y9204D01* X34702Y9218D01* X34655Y9240D01* X34632Y9256D01* X34560Y9184D01* X34605Y9153D01* X34668Y9124D01* X34735Y9106D01* X34805Y9100D01* X34846Y9103D01* Y7898D01* X34825Y7900D01* X34755Y7893D01* X34688Y7875D01* X34625Y7846D01* X34580Y7815D01* X34652Y7743D01* X34675Y7759D01* X34722Y7781D01* X34772Y7795D01* X34825Y7800D01* X34846Y7798D01* Y7201D01* X34825Y7200D01* X34772Y7204D01* X34722Y7218D01* X34675Y7240D01* X34652Y7256D01* X34580Y7184D01* X34625Y7153D01* X34688Y7124D01* X34755Y7106D01* X34825Y7100D01* X34846Y7101D01* Y5899D01* X34845Y5900D01* X34775Y5893D01* X34708Y5875D01* X34645Y5846D01* X34600Y5815D01* X34672Y5743D01* X34695Y5759D01* X34742Y5781D01* X34792Y5795D01* X34845Y5800D01* X34846Y5799D01* Y5200D01* X34845Y5200D01* X34792Y5204D01* X34742Y5218D01* X34695Y5240D01* X34672Y5256D01* X34600Y5184D01* X34645Y5153D01* X34708Y5124D01* X34775Y5106D01* X34845Y5100D01* X34846Y5100D01* Y3898D01* X34795Y3893D01* X34728Y3875D01* X34665Y3846D01* X34620Y3815D01* X34692Y3743D01* X34715Y3759D01* X34762Y3781D01* X34812Y3795D01* X34846Y3798D01* Y3201D01* X34812Y3204D01* X34762Y3218D01* X34715Y3240D01* X34692Y3256D01* X34620Y3184D01* X34665Y3153D01* X34728Y3124D01* X34795Y3106D01* X34846Y3101D01* Y1896D01* X34815Y1893D01* X34748Y1875D01* X34685Y1846D01* X34640Y1815D01* X34712Y1743D01* X34735Y1759D01* X34782Y1781D01* X34832Y1795D01* X34846Y1796D01* Y1203D01* X34832Y1204D01* X34782Y1218D01* X34735Y1240D01* X34712Y1256D01* X34640Y1184D01* X34685Y1153D01* X34748Y1124D01* X34815Y1106D01* X34846Y1103D01* Y0D01* X34525D01* Y1329D01* X34538Y1300D01* X34569Y1255D01* X34641Y1327D01* X34625Y1350D01* X34603Y1397D01* X34589Y1447D01* X34585Y1500D01* X34589Y1552D01* X34603Y1602D01* X34625Y1650D01* X34641Y1673D01* X34569Y1744D01* X34538Y1700D01* X34525Y1670D01* Y3290D01* X34549Y3255D01* X34621Y3327D01* X34605Y3350D01* X34583Y3397D01* X34569Y3447D01* X34565Y3500D01* X34569Y3552D01* X34583Y3602D01* X34605Y3650D01* X34621Y3673D01* X34549Y3744D01* X34525Y3709D01* Y5262D01* X34529Y5255D01* X34601Y5327D01* X34585Y5350D01* X34563Y5397D01* X34549Y5447D01* X34545Y5500D01* X34549Y5552D01* X34563Y5602D01* X34585Y5650D01* X34601Y5673D01* X34529Y5744D01* X34525Y5737D01* Y7270D01* X34581Y7327D01* X34565Y7350D01* X34543Y7397D01* X34529Y7447D01* X34525Y7500D01* X34529Y7552D01* X34543Y7602D01* X34565Y7650D01* X34581Y7673D01* X34525Y7729D01* Y9290D01* X34561Y9327D01* X34545Y9350D01* X34525Y9393D01* Y9606D01* X34545Y9650D01* X34561Y9673D01* X34525Y9709D01* Y11310D01* X34541Y11327D01* X34525Y11350D01* X34525Y11350D01* Y11649D01* X34525Y11650D01* X34541Y11673D01* X34525Y11689D01* Y13181D01* G37* G36* X34846Y40000D02*X34926D01* Y35614D01* X34920Y35636D01* X34891Y35700D01* X34860Y35744D01* X34846Y35731D01* Y37265D01* X34871Y37300D01* X34900Y37363D01* X34918Y37430D01* X34925Y37500D01* X34918Y37569D01* X34900Y37636D01* X34871Y37700D01* X34846Y37734D01* Y39293D01* X34851Y39300D01* X34880Y39363D01* X34898Y39430D01* X34905Y39500D01* X34898Y39569D01* X34880Y39636D01* X34851Y39700D01* X34846Y39706D01* Y40000D01* G37* G36* X34926Y0D02*X34846D01* Y1103D01* X34885Y1100D01* X34926Y1103D01* Y0D01* G37* G36* Y1203D02*X34885Y1200D01* X34846Y1203D01* Y1796D01* X34885Y1800D01* X34926Y1796D01* Y1203D01* G37* G36* Y1896D02*X34885Y1900D01* X34846Y1896D01* Y3101D01* X34865Y3100D01* X34926Y3105D01* Y1896D01* G37* G36* Y3207D02*X34917Y3204D01* X34865Y3200D01* X34846Y3201D01* Y3798D01* X34865Y3800D01* X34917Y3795D01* X34926Y3792D01* Y3207D01* G37* G36* Y3894D02*X34865Y3900D01* X34846Y3898D01* Y5100D01* X34914Y5106D01* X34926Y5109D01* Y3894D01* G37* G36* Y5212D02*X34897Y5204D01* X34846Y5200D01* Y5799D01* X34897Y5795D01* X34926Y5787D01* Y5212D01* G37* G36* Y5890D02*X34914Y5893D01* X34846Y5899D01* Y7101D01* X34894Y7106D01* X34926Y7114D01* Y5890D01* G37* G36* Y7217D02*X34877Y7204D01* X34846Y7201D01* Y7798D01* X34877Y7795D01* X34926Y7782D01* Y7217D01* G37* G36* Y7885D02*X34894Y7893D01* X34846Y7898D01* Y9103D01* X34874Y9106D01* X34926Y9120D01* Y7885D01* G37* G36* Y9227D02*X34907Y9218D01* X34857Y9204D01* X34846Y9203D01* Y9796D01* X34857Y9795D01* X34907Y9781D01* X34926Y9772D01* Y9227D01* G37* G36* Y9879D02*X34874Y9893D01* X34846Y9896D01* Y11105D01* X34854Y11106D01* X34921Y11124D01* X34926Y11126D01* Y9879D01* G37* G36* Y11236D02*X34887Y11218D01* X34846Y11207D01* Y11792D01* X34887Y11781D01* X34926Y11763D01* Y11236D01* G37* G36* Y11873D02*X34921Y11875D01* X34854Y11893D01* X34846Y11894D01* Y13109D01* X34901Y13124D01* X34926Y13135D01* Y11873D01* G37* G36* Y13248D02*X34915Y13240D01* X34867Y13218D01* X34846Y13212D01* Y13787D01* X34867Y13781D01* X34915Y13759D01* X34926Y13751D01* Y13248D01* G37* G36* Y13864D02*X34901Y13875D01* X34846Y13890D01* Y15114D01* X34881Y15124D01* X34926Y15145D01* Y13864D01* G37* G36* Y15247D02*X34918Y15256D01* X34895Y15240D01* X34847Y15218D01* X34846Y15217D01* Y15782D01* X34847Y15781D01* X34895Y15759D01* X34918Y15743D01* X34926Y15752D01* Y15247D01* G37* G36* Y15854D02*X34881Y15875D01* X34846Y15885D01* Y17120D01* X34861Y17124D01* X34925Y17153D01* X34926Y17154D01* Y15854D01* G37* G36* Y17227D02*X34898Y17256D01* X34875Y17240D01* X34846Y17227D01* Y17772D01* X34875Y17759D01* X34898Y17743D01* X34926Y17772D01* Y17227D01* G37* G36* Y17845D02*X34925Y17846D01* X34861Y17875D01* X34846Y17879D01* Y19126D01* X34905Y19153D01* X34926Y19169D01* Y17845D01* G37* G36* Y19207D02*X34878Y19256D01* X34855Y19240D01* X34846Y19236D01* Y19763D01* X34855Y19759D01* X34878Y19743D01* X34926Y19792D01* Y19207D01* G37* G36* Y19831D02*X34905Y19846D01* X34846Y19873D01* Y21135D01* X34885Y21153D01* X34926Y21183D01* Y19831D01* G37* G36* Y21187D02*X34858Y21256D01* X34846Y21248D01* Y21751D01* X34858Y21743D01* X34926Y21812D01* Y21187D01* G37* G36* Y21817D02*X34885Y21846D01* X34846Y21864D01* Y23145D01* X34865Y23153D01* X34909Y23184D01* X34846Y23247D01* Y23752D01* X34909Y23815D01* X34865Y23846D01* X34846Y23854D01* Y25154D01* X34889Y25184D01* X34846Y25227D01* Y25772D01* X34889Y25815D01* X34846Y25845D01* Y27169D01* X34869Y27184D01* X34846Y27207D01* Y27792D01* X34869Y27815D01* X34846Y27831D01* Y29183D01* X34849Y29184D01* X34846Y29187D01* Y29812D01* X34849Y29815D01* X34846Y29817D01* Y31308D01* X34900Y31255D01* X34926Y31293D01* Y29734D01* X34920Y29744D01* X34848Y29673D01* X34864Y29650D01* X34886Y29602D01* X34900Y29552D01* X34905Y29500D01* X34900Y29447D01* X34886Y29397D01* X34864Y29350D01* X34848Y29327D01* X34920Y29255D01* X34926Y29265D01* Y27731D01* X34868Y27673D01* X34884Y27650D01* X34906Y27602D01* X34920Y27552D01* X34925Y27500D01* X34920Y27447D01* X34906Y27397D01* X34884Y27350D01* X34868Y27327D01* X34926Y27268D01* Y25711D01* X34888Y25673D01* X34904Y25650D01* X34926Y25602D01* Y25397D01* X34904Y25350D01* X34888Y25327D01* X34926Y25288D01* Y23691D01* X34908Y23673D01* X34924Y23650D01* X34926Y23645D01* Y23354D01* X34924Y23350D01* X34908Y23327D01* X34926Y23308D01* Y21817D01* G37* G36* Y31706D02*X34900Y31744D01* X34846Y31691D01* Y33288D01* X34880Y33255D01* X34911Y33300D01* X34926Y33333D01* Y31706D01* G37* G36* Y33666D02*X34911Y33700D01* X34880Y33744D01* X34846Y33711D01* Y35268D01* X34860Y35255D01* X34891Y35300D01* X34920Y35363D01* X34926Y35385D01* Y33666D01* G37* G36* Y40000D02*X35006D01* Y27614D01* X35000Y27636D01* X34971Y27700D01* X34940Y27744D01* X34926Y27731D01* Y29265D01* X34951Y29300D01* X34980Y29363D01* X34998Y29430D01* X35005Y29500D01* X34998Y29569D01* X34980Y29636D01* X34951Y29700D01* X34926Y29734D01* Y31293D01* X34931Y31300D01* X34960Y31363D01* X34978Y31430D01* X34985Y31500D01* X34978Y31569D01* X34960Y31636D01* X34931Y31700D01* X34926Y31706D01* Y33333D01* X34940Y33363D01* X34958Y33430D01* X34965Y33500D01* X34958Y33569D01* X34940Y33636D01* X34926Y33666D01* Y35385D01* X34938Y35430D01* X34945Y35500D01* X34938Y35569D01* X34926Y35614D01* Y40000D01* G37* G36* X35006Y0D02*X34926D01* Y1103D01* X34954Y1106D01* X35006Y1120D01* Y0D01* G37* G36* Y1227D02*X34987Y1218D01* X34937Y1204D01* X34926Y1203D01* Y1796D01* X34937Y1795D01* X34987Y1781D01* X35006Y1772D01* Y1227D01* G37* G36* Y1879D02*X34954Y1893D01* X34926Y1896D01* Y3105D01* X34934Y3106D01* X35001Y3124D01* X35006Y3126D01* Y1879D01* G37* G36* Y3236D02*X34967Y3218D01* X34926Y3207D01* Y3792D01* X34967Y3781D01* X35006Y3763D01* Y3236D01* G37* G36* Y3873D02*X35001Y3875D01* X34934Y3893D01* X34926Y3894D01* Y5109D01* X34981Y5124D01* X35006Y5135D01* Y3873D01* G37* G36* Y5248D02*X34995Y5240D01* X34947Y5218D01* X34926Y5212D01* Y5787D01* X34947Y5781D01* X34995Y5759D01* X35006Y5751D01* Y5248D01* G37* G36* Y5864D02*X34981Y5875D01* X34926Y5890D01* Y7114D01* X34961Y7124D01* X35006Y7145D01* Y5864D01* G37* G36* Y7247D02*X34998Y7256D01* X34975Y7240D01* X34927Y7218D01* X34926Y7217D01* Y7782D01* X34927Y7781D01* X34975Y7759D01* X34998Y7743D01* X35006Y7752D01* Y7247D01* G37* G36* Y7854D02*X34961Y7875D01* X34926Y7885D01* Y9120D01* X34941Y9124D01* X35005Y9153D01* X35006Y9154D01* Y7854D01* G37* G36* Y9227D02*X34978Y9256D01* X34955Y9240D01* X34926Y9227D01* Y9772D01* X34955Y9759D01* X34978Y9743D01* X35006Y9772D01* Y9227D01* G37* G36* Y9845D02*X35005Y9846D01* X34941Y9875D01* X34926Y9879D01* Y11126D01* X34985Y11153D01* X35006Y11169D01* Y9845D01* G37* G36* Y11207D02*X34958Y11256D01* X34935Y11240D01* X34926Y11236D01* Y11763D01* X34935Y11759D01* X34958Y11743D01* X35006Y11792D01* Y11207D01* G37* G36* Y11831D02*X34985Y11846D01* X34926Y11873D01* Y13135D01* X34965Y13153D01* X35006Y13183D01* Y11831D01* G37* G36* Y13187D02*X34938Y13256D01* X34926Y13248D01* Y13751D01* X34938Y13743D01* X35006Y13812D01* Y13187D01* G37* G36* Y13817D02*X34965Y13846D01* X34926Y13864D01* Y15145D01* X34945Y15153D01* X34989Y15184D01* X34926Y15247D01* Y15752D01* X34989Y15815D01* X34945Y15846D01* X34926Y15854D01* Y17154D01* X34969Y17184D01* X34926Y17227D01* Y17772D01* X34969Y17815D01* X34926Y17845D01* Y19169D01* X34949Y19184D01* X34926Y19207D01* Y19792D01* X34949Y19815D01* X34926Y19831D01* Y21183D01* X34929Y21184D01* X34926Y21187D01* Y21812D01* X34929Y21815D01* X34926Y21817D01* Y23308D01* X34980Y23255D01* X35006Y23293D01* Y21734D01* X35000Y21744D01* X34928Y21673D01* X34944Y21650D01* X34966Y21602D01* X34980Y21552D01* X34985Y21500D01* X34980Y21447D01* X34966Y21397D01* X34944Y21350D01* X34928Y21327D01* X35000Y21255D01* X35006Y21265D01* Y19731D01* X34948Y19673D01* X34964Y19650D01* X34986Y19602D01* X35000Y19552D01* X35005Y19500D01* X35000Y19447D01* X34986Y19397D01* X34964Y19350D01* X34948Y19327D01* X35006Y19268D01* Y17711D01* X34968Y17673D01* X34984Y17650D01* X35006Y17602D01* Y17397D01* X34984Y17350D01* X34968Y17327D01* X35006Y17288D01* Y15691D01* X34988Y15673D01* X35004Y15650D01* X35006Y15645D01* Y15354D01* X35004Y15350D01* X34988Y15327D01* X35006Y15308D01* Y13817D01* G37* G36* Y23706D02*X34980Y23744D01* X34926Y23691D01* Y25288D01* X34960Y25255D01* X34991Y25300D01* X35006Y25333D01* Y23706D01* G37* G36* Y25666D02*X34991Y25700D01* X34960Y25744D01* X34926Y25711D01* Y27268D01* X34940Y27255D01* X34971Y27300D01* X35000Y27363D01* X35006Y27385D01* Y25666D01* G37* G36* Y40000D02*X35086D01* Y19614D01* X35080Y19636D01* X35051Y19700D01* X35020Y19744D01* X35006Y19731D01* Y21265D01* X35031Y21300D01* X35060Y21363D01* X35078Y21430D01* X35085Y21500D01* X35078Y21569D01* X35060Y21636D01* X35031Y21700D01* X35006Y21734D01* Y23293D01* X35011Y23300D01* X35040Y23363D01* X35058Y23430D01* X35065Y23500D01* X35058Y23569D01* X35040Y23636D01* X35011Y23700D01* X35006Y23706D01* Y25333D01* X35020Y25363D01* X35038Y25430D01* X35045Y25500D01* X35038Y25569D01* X35020Y25636D01* X35006Y25666D01* Y27385D01* X35018Y27430D01* X35025Y27500D01* X35018Y27569D01* X35006Y27614D01* Y40000D01* G37* G36* X35086Y0D02*X35006D01* Y1120D01* X35021Y1124D01* X35085Y1153D01* X35086Y1154D01* Y0D01* G37* G36* Y1227D02*X35058Y1256D01* X35035Y1240D01* X35006Y1227D01* Y1772D01* X35035Y1759D01* X35058Y1743D01* X35086Y1772D01* Y1227D01* G37* G36* Y1845D02*X35085Y1846D01* X35021Y1875D01* X35006Y1879D01* Y3126D01* X35065Y3153D01* X35086Y3169D01* Y1845D01* G37* G36* Y3207D02*X35038Y3256D01* X35015Y3240D01* X35006Y3236D01* Y3763D01* X35015Y3759D01* X35038Y3743D01* X35086Y3792D01* Y3207D01* G37* G36* Y3831D02*X35065Y3846D01* X35006Y3873D01* Y5135D01* X35045Y5153D01* X35086Y5183D01* Y3831D01* G37* G36* Y5187D02*X35018Y5256D01* X35006Y5248D01* Y5751D01* X35018Y5743D01* X35086Y5812D01* Y5187D01* G37* G36* Y5817D02*X35045Y5846D01* X35006Y5864D01* Y7145D01* X35025Y7153D01* X35069Y7184D01* X35006Y7247D01* Y7752D01* X35069Y7815D01* X35025Y7846D01* X35006Y7854D01* Y9154D01* X35049Y9184D01* X35006Y9227D01* Y9772D01* X35049Y9815D01* X35006Y9845D01* Y11169D01* X35029Y11184D01* X35006Y11207D01* Y11792D01* X35029Y11815D01* X35006Y11831D01* Y13183D01* X35009Y13184D01* X35006Y13187D01* Y13812D01* X35009Y13815D01* X35006Y13817D01* Y15308D01* X35060Y15255D01* X35086Y15293D01* Y13734D01* X35080Y13744D01* X35008Y13673D01* X35024Y13650D01* X35046Y13602D01* X35060Y13552D01* X35065Y13500D01* X35060Y13447D01* X35046Y13397D01* X35024Y13350D01* X35008Y13327D01* X35080Y13255D01* X35086Y13265D01* Y11731D01* X35028Y11673D01* X35044Y11650D01* X35066Y11602D01* X35080Y11552D01* X35085Y11500D01* X35080Y11447D01* X35066Y11397D01* X35044Y11350D01* X35028Y11327D01* X35086Y11268D01* Y9711D01* X35048Y9673D01* X35064Y9650D01* X35086Y9602D01* Y9397D01* X35064Y9350D01* X35048Y9327D01* X35086Y9288D01* Y7691D01* X35068Y7673D01* X35084Y7650D01* X35086Y7645D01* Y7354D01* X35084Y7350D01* X35068Y7327D01* X35086Y7308D01* Y5817D01* G37* G36* Y15706D02*X35060Y15744D01* X35006Y15691D01* Y17288D01* X35040Y17255D01* X35071Y17300D01* X35086Y17333D01* Y15706D01* G37* G36* Y17666D02*X35071Y17700D01* X35040Y17744D01* X35006Y17711D01* Y19268D01* X35020Y19255D01* X35051Y19300D01* X35080Y19363D01* X35086Y19385D01* Y17666D01* G37* G36* Y40000D02*X35166D01* Y11614D01* X35160Y11636D01* X35131Y11700D01* X35100Y11744D01* X35086Y11731D01* Y13265D01* X35111Y13300D01* X35140Y13363D01* X35158Y13430D01* X35165Y13500D01* X35158Y13569D01* X35140Y13636D01* X35111Y13700D01* X35086Y13734D01* Y15293D01* X35091Y15300D01* X35120Y15363D01* X35138Y15430D01* X35145Y15500D01* X35138Y15569D01* X35120Y15636D01* X35091Y15700D01* X35086Y15706D01* Y17333D01* X35100Y17363D01* X35118Y17430D01* X35125Y17500D01* X35118Y17569D01* X35100Y17636D01* X35086Y17666D01* Y19385D01* X35098Y19430D01* X35105Y19500D01* X35098Y19569D01* X35086Y19614D01* Y40000D01* G37* G36* X35166Y0D02*X35086D01* Y1154D01* X35129Y1184D01* X35086Y1227D01* Y1772D01* X35129Y1815D01* X35086Y1845D01* Y3169D01* X35109Y3184D01* X35086Y3207D01* Y3792D01* X35109Y3815D01* X35086Y3831D01* Y5183D01* X35089Y5184D01* X35086Y5187D01* Y5812D01* X35089Y5815D01* X35086Y5817D01* Y7308D01* X35140Y7255D01* X35166Y7293D01* Y5734D01* X35160Y5744D01* X35088Y5673D01* X35104Y5650D01* X35126Y5602D01* X35140Y5552D01* X35145Y5500D01* X35140Y5447D01* X35126Y5397D01* X35104Y5350D01* X35088Y5327D01* X35160Y5255D01* X35166Y5265D01* Y3731D01* X35108Y3673D01* X35124Y3650D01* X35146Y3602D01* X35160Y3552D01* X35165Y3500D01* X35160Y3447D01* X35146Y3397D01* X35124Y3350D01* X35108Y3327D01* X35166Y3268D01* Y1711D01* X35128Y1673D01* X35144Y1650D01* X35166Y1602D01* Y1397D01* X35144Y1350D01* X35128Y1327D01* X35166Y1288D01* Y0D01* G37* G36* Y7706D02*X35140Y7744D01* X35086Y7691D01* Y9288D01* X35120Y9255D01* X35151Y9300D01* X35166Y9333D01* Y7706D01* G37* G36* Y9666D02*X35151Y9700D01* X35120Y9744D01* X35086Y9711D01* Y11268D01* X35100Y11255D01* X35131Y11300D01* X35160Y11363D01* X35166Y11385D01* Y9666D01* G37* G36* Y40000D02*X40000D01* Y0D01* X35166D01* Y1288D01* X35200Y1255D01* X35231Y1300D01* X35260Y1363D01* X35278Y1430D01* X35285Y1500D01* X35278Y1569D01* X35260Y1636D01* X35231Y1700D01* X35200Y1744D01* X35166Y1711D01* Y3268D01* X35180Y3255D01* X35211Y3300D01* X35240Y3363D01* X35258Y3430D01* X35265Y3500D01* X35258Y3569D01* X35240Y3636D01* X35211Y3700D01* X35180Y3744D01* X35166Y3731D01* Y5265D01* X35191Y5300D01* X35220Y5363D01* X35238Y5430D01* X35245Y5500D01* X35238Y5569D01* X35220Y5636D01* X35191Y5700D01* X35166Y5734D01* Y7293D01* X35171Y7300D01* X35200Y7363D01* X35218Y7430D01* X35225Y7500D01* X35218Y7569D01* X35200Y7636D01* X35171Y7700D01* X35166Y7706D01* Y9333D01* X35180Y9363D01* X35198Y9430D01* X35205Y9500D01* X35198Y9569D01* X35180Y9636D01* X35166Y9666D01* Y11385D01* X35178Y11430D01* X35185Y11500D01* X35178Y11569D01* X35166Y11614D01* Y40000D01* G37* G36* Y1602D02*X35180Y1552D01* X35185Y1500D01* X35180Y1447D01* X35166Y1397D01* Y1602D01* G37* G36* X35086Y9602D02*X35100Y9552D01* X35105Y9500D01* X35100Y9447D01* X35086Y9397D01* Y9602D01* G37* G36* Y7645D02*X35106Y7602D01* X35120Y7552D01* X35125Y7500D01* X35120Y7447D01* X35106Y7397D01* X35086Y7354D01* Y7645D01* G37* G36* X35006Y17602D02*X35020Y17552D01* X35025Y17500D01* X35020Y17447D01* X35006Y17397D01* Y17602D01* G37* G36* Y15645D02*X35026Y15602D01* X35040Y15552D01* X35045Y15500D01* X35040Y15447D01* X35026Y15397D01* X35006Y15354D01* Y15645D01* G37* G36* X34926Y25602D02*X34940Y25552D01* X34945Y25500D01* X34940Y25447D01* X34926Y25397D01* Y25602D01* G37* G36* Y23645D02*X34946Y23602D01* X34960Y23552D01* X34965Y23500D01* X34960Y23447D01* X34946Y23397D01* X34926Y23354D01* Y23645D01* G37* G36* X34846Y33602D02*X34860Y33552D01* X34865Y33500D01* X34860Y33447D01* X34846Y33397D01* Y33602D01* G37* G36* Y31645D02*X34866Y31602D01* X34880Y31552D01* X34885Y31500D01* X34880Y31447D01* X34866Y31397D01* X34846Y31354D01* Y31645D01* G37* G36* X32826Y35602D02*X32840Y35552D01* X32845Y35500D01* X32840Y35447D01* X32826Y35397D01* Y35602D01* G37* G36* Y33645D02*X32846Y33602D01* X32860Y33552D01* X32865Y33500D01* X32860Y33447D01* X32846Y33397D01* X32826Y33354D01* Y33645D01* G37* G36* X30826Y35602D02*X30840Y35552D01* X30845Y35500D01* X30840Y35447D01* X30826Y35397D01* Y35602D01* G37* G36* Y33645D02*X30846Y33602D01* X30860Y33552D01* X30865Y33500D01* X30860Y33447D01* X30846Y33397D01* X30826Y33354D01* Y33645D01* G37* G36* X28986Y19602D02*X29000Y19552D01* X29005Y19500D01* X29000Y19447D01* X28986Y19397D01* Y19602D01* G37* G36* Y17645D02*X29006Y17602D01* X29020Y17552D01* X29025Y17500D01* X29020Y17447D01* X29006Y17397D01* X28986Y17354D01* Y17645D01* G37* G36* X28906Y27602D02*X28920Y27552D01* X28925Y27500D01* X28920Y27447D01* X28906Y27397D01* Y27602D01* G37* G36* Y25645D02*X28926Y25602D01* X28940Y25552D01* X28945Y25500D01* X28940Y25447D01* X28926Y25397D01* X28906Y25354D01* Y25645D01* G37* G36* X28826Y35602D02*X28840Y35552D01* X28845Y35500D01* X28840Y35447D01* X28826Y35397D01* Y35602D01* G37* G36* Y33645D02*X28846Y33602D01* X28860Y33552D01* X28865Y33500D01* X28860Y33447D01* X28846Y33397D01* X28826Y33354D01* Y33645D01* G37* G36* X26826Y35602D02*X26840Y35552D01* X26845Y35500D01* X26840Y35447D01* X26826Y35397D01* Y35602D01* G37* G36* Y33645D02*X26846Y33602D01* X26860Y33552D01* X26865Y33500D01* X26860Y33447D01* X26846Y33397D01* X26826Y33354D01* Y33645D01* G37* G36* X24826Y35602D02*X24840Y35552D01* X24845Y35500D01* X24840Y35447D01* X24826Y35397D01* Y35602D01* G37* G36* Y33645D02*X24846Y33602D01* X24860Y33552D01* X24865Y33500D01* X24860Y33447D01* X24846Y33397D01* X24826Y33354D01* Y33645D01* G37* G36* X22986Y19602D02*X23000Y19552D01* X23005Y19500D01* X23000Y19447D01* X22986Y19397D01* Y19602D01* G37* G36* Y17645D02*X23006Y17602D01* X23020Y17552D01* X23025Y17500D01* X23020Y17447D01* X23006Y17397D01* X22986Y17354D01* Y17645D01* G37* G36* X22906Y27602D02*X22920Y27552D01* X22925Y27500D01* X22920Y27447D01* X22906Y27397D01* Y27602D01* G37* G36* Y25645D02*X22926Y25602D01* X22940Y25552D01* X22945Y25500D01* X22940Y25447D01* X22926Y25397D01* X22906Y25354D01* Y25645D01* G37* G36* X22826Y35602D02*X22840Y35552D01* X22845Y35500D01* X22840Y35447D01* X22826Y35397D01* Y35602D01* G37* G36* Y33645D02*X22846Y33602D01* X22860Y33552D01* X22865Y33500D01* X22860Y33447D01* X22846Y33397D01* X22826Y33354D01* Y33645D01* G37* G36* X21106Y7602D02*X21120Y7552D01* X21125Y7500D01* X21120Y7447D01* X21106Y7397D01* Y7602D01* G37* G36* Y5645D02*X21126Y5602D01* X21140Y5552D01* X21145Y5500D01* X21140Y5447D01* X21126Y5397D01* X21106Y5354D01* Y5645D01* G37* G36* X21026Y15602D02*X21040Y15552D01* X21045Y15500D01* X21040Y15447D01* X21026Y15397D01* Y15602D01* G37* G36* Y13645D02*X21046Y13602D01* X21060Y13552D01* X21065Y13500D01* X21060Y13447D01* X21046Y13397D01* X21026Y13354D01* Y13645D01* G37* G36* X20946Y23602D02*X20960Y23552D01* X20965Y23500D01* X20960Y23447D01* X20946Y23397D01* Y23602D01* G37* G36* Y21645D02*X20966Y21602D01* X20980Y21552D01* X20985Y21500D01* X20980Y21447D01* X20966Y21397D01* X20946Y21354D01* Y21645D01* G37* G36* X20866Y31602D02*X20880Y31552D01* X20885Y31500D01* X20880Y31447D01* X20866Y31397D01* Y31602D01* G37* G36* Y29645D02*X20886Y29602D01* X20900Y29552D01* X20905Y29500D01* X20900Y29447D01* X20886Y29397D01* X20866Y29354D01* Y29645D01* G37* G36* X19146Y3602D02*X19160Y3552D01* X19165Y3500D01* X19160Y3447D01* X19146Y3397D01* Y3602D01* G37* G36* Y1645D02*X19166Y1602D01* X19180Y1552D01* X19185Y1500D01* X19180Y1447D01* X19166Y1397D01* X19146Y1354D01* Y1645D01* G37* G36* X19066Y11602D02*X19080Y11552D01* X19085Y11500D01* X19080Y11447D01* X19066Y11397D01* Y11602D01* G37* G36* Y9645D02*X19086Y9602D01* X19100Y9552D01* X19105Y9500D01* X19100Y9447D01* X19086Y9397D01* X19066Y9354D01* Y9645D01* G37* G36* X18986Y19602D02*X19000Y19552D01* X19005Y19500D01* X19000Y19447D01* X18986Y19397D01* Y19602D01* G37* G36* Y17645D02*X19006Y17602D01* X19020Y17552D01* X19025Y17500D01* X19020Y17447D01* X19006Y17397D01* X18986Y17354D01* Y17645D01* G37* G36* X17146Y3602D02*X17160Y3552D01* X17165Y3500D01* X17160Y3447D01* X17146Y3397D01* Y3602D01* G37* G36* Y1645D02*X17166Y1602D01* X17180Y1552D01* X17185Y1500D01* X17180Y1447D01* X17166Y1397D01* X17146Y1354D01* Y1645D01* G37* G36* X17066Y11602D02*X17080Y11552D01* X17085Y11500D01* X17080Y11447D01* X17066Y11397D01* Y11602D01* G37* G36* Y9645D02*X17086Y9602D01* X17100Y9552D01* X17105Y9500D01* X17100Y9447D01* X17086Y9397D01* X17066Y9354D01* Y9645D01* G37* G36* X16986Y19602D02*X17000Y19552D01* X17005Y19500D01* X17000Y19447D01* X16986Y19397D01* Y19602D01* G37* G36* Y17645D02*X17006Y17602D01* X17020Y17552D01* X17025Y17500D01* X17020Y17447D01* X17006Y17397D01* X16986Y17354D01* Y17645D01* G37* G36* X15146Y3602D02*X15160Y3552D01* X15165Y3500D01* X15160Y3447D01* X15146Y3397D01* Y3602D01* G37* G36* Y1645D02*X15166Y1602D01* X15180Y1552D01* X15185Y1500D01* X15180Y1447D01* X15166Y1397D01* X15146Y1354D01* Y1645D01* G37* G36* X15066Y11602D02*X15080Y11552D01* X15085Y11500D01* X15080Y11447D01* X15066Y11397D01* Y11602D01* G37* G36* Y9645D02*X15086Y9602D01* X15100Y9552D01* X15105Y9500D01* X15100Y9447D01* X15086Y9397D01* X15066Y9354D01* Y9645D01* G37* G36* X14986Y19602D02*X15000Y19552D01* X15005Y19500D01* X15000Y19447D01* X14986Y19397D01* Y19602D01* G37* G36* Y17645D02*X15006Y17602D01* X15020Y17552D01* X15025Y17500D01* X15020Y17447D01* X15006Y17397D01* X14986Y17354D01* Y17645D01* G37* G36* X13106Y7602D02*X13120Y7552D01* X13125Y7500D01* X13120Y7447D01* X13106Y7397D01* Y7602D01* G37* G36* Y5645D02*X13126Y5602D01* X13140Y5552D01* X13145Y5500D01* X13140Y5447D01* X13126Y5397D01* X13106Y5354D01* Y5645D01* G37* G36* X13026Y15602D02*X13040Y15552D01* X13045Y15500D01* X13040Y15447D01* X13026Y15397D01* Y15602D01* G37* G36* Y13645D02*X13046Y13602D01* X13060Y13552D01* X13065Y13500D01* X13060Y13447D01* X13046Y13397D01* X13026Y13354D01* Y13645D01* G37* G36* X11126Y5602D02*X11140Y5552D01* X11145Y5500D01* X11140Y5447D01* X11126Y5397D01* Y5602D01* G37* G36* Y3645D02*X11146Y3602D01* X11160Y3552D01* X11165Y3500D01* X11160Y3447D01* X11146Y3397D01* X11126Y3354D01* Y3645D01* G37* G36* X11046Y13602D02*X11060Y13552D01* X11065Y13500D01* X11060Y13447D01* X11046Y13397D01* Y13602D01* G37* G36* Y11645D02*X11066Y11602D01* X11080Y11552D01* X11085Y11500D01* X11080Y11447D01* X11066Y11397D01* X11046Y11354D01* Y11645D01* G37* G36* X10966Y21602D02*X10980Y21552D01* X10985Y21500D01* X10980Y21447D01* X10966Y21397D01* Y21602D01* G37* G36* Y19645D02*X10986Y19602D01* X11000Y19552D01* X11005Y19500D01* X11000Y19447D01* X10986Y19397D01* X10966Y19354D01* Y19645D01* G37* G36* X9106Y7602D02*X9120Y7552D01* X9125Y7500D01* X9120Y7447D01* X9106Y7397D01* Y7602D01* G37* G36* Y5645D02*X9126Y5602D01* X9140Y5552D01* X9145Y5500D01* X9140Y5447D01* X9126Y5397D01* X9106Y5354D01* Y5645D01* G37* G36* X9026Y15602D02*X9040Y15552D01* X9045Y15500D01* X9040Y15447D01* X9026Y15397D01* Y15602D01* G37* G36* Y13645D02*X9046Y13602D01* X9060Y13552D01* X9065Y13500D01* X9060Y13447D01* X9046Y13397D01* X9026Y13354D01* Y13645D01* G37* G36* X7146Y3602D02*X7160Y3552D01* X7165Y3500D01* X7160Y3447D01* X7146Y3397D01* Y3602D01* G37* G36* Y1645D02*X7166Y1602D01* X7180Y1552D01* X7185Y1500D01* X7180Y1447D01* X7166Y1397D01* X7146Y1354D01* Y1645D01* G37* G36* X7066Y11602D02*X7080Y11552D01* X7085Y11500D01* X7080Y11447D01* X7066Y11397D01* Y11602D01* G37* G36* Y9645D02*X7086Y9602D01* X7100Y9552D01* X7105Y9500D01* X7100Y9447D01* X7086Y9397D01* X7066Y9354D01* Y9645D01* G37* G36* X6986Y19602D02*X7000Y19552D01* X7005Y19500D01* X7000Y19447D01* X6986Y19397D01* Y19602D01* G37* G36* Y17645D02*X7006Y17602D01* X7020Y17552D01* X7025Y17500D01* X7020Y17447D01* X7006Y17397D01* X6986Y17354D01* Y17645D01* G37* G36* X5146Y3602D02*X5160Y3552D01* X5165Y3500D01* X5160Y3447D01* X5146Y3397D01* Y3602D01* G37* G36* Y1645D02*X5166Y1602D01* X5180Y1552D01* X5185Y1500D01* X5180Y1447D01* X5166Y1397D01* X5146Y1354D01* Y1645D01* G37* G36* X5066Y11602D02*X5080Y11552D01* X5085Y11500D01* X5080Y11447D01* X5066Y11397D01* Y11602D01* G37* G36* Y9645D02*X5086Y9602D01* X5100Y9552D01* X5105Y9500D01* X5100Y9447D01* X5086Y9397D01* X5066Y9354D01* Y9645D01* G37* G36* X4986Y19602D02*X5000Y19552D01* X5005Y19500D01* X5000Y19447D01* X4986Y19397D01* Y19602D01* G37* G36* Y17645D02*X5006Y17602D01* X5020Y17552D01* X5025Y17500D01* X5020Y17447D01* X5006Y17397D01* X4986Y17354D01* Y17645D01* G37* G36* X3126Y5602D02*X3140Y5552D01* X3145Y5500D01* X3140Y5447D01* X3126Y5397D01* Y5602D01* G37* G36* Y3645D02*X3146Y3602D01* X3160Y3552D01* X3165Y3500D01* X3160Y3447D01* X3146Y3397D01* X3126Y3354D01* Y3645D01* G37* G36* X3046Y13602D02*X3060Y13552D01* X3065Y13500D01* X3060Y13447D01* X3046Y13397D01* Y13602D01* G37* G36* Y11645D02*X3066Y11602D01* X3080Y11552D01* X3085Y11500D01* X3080Y11447D01* X3066Y11397D01* X3046Y11354D01* Y11645D01* G37* G36* X1146Y3602D02*X1160Y3552D01* X1165Y3500D01* X1160Y3447D01* X1146Y3397D01* Y3602D01* G37* G36* Y1645D02*X1166Y1602D01* X1180Y1552D01* X1185Y1500D01* X1180Y1447D01* X1166Y1397D01* X1146Y1354D01* Y1645D01* G37* G36* X1066Y11602D02*X1080Y11552D01* X1085Y11500D01* X1080Y11447D01* X1066Y11397D01* Y11602D01* G37* G36* Y9645D02*X1086Y9602D01* X1100Y9552D01* X1105Y9500D01* X1100Y9447D01* X1086Y9397D01* X1066Y9354D01* Y9645D01* G37* G36* X986Y19602D02*X1000Y19552D01* X1005Y19500D01* X1000Y19447D01* X986Y19397D01* Y19602D01* G37* G36* Y17645D02*X1006Y17602D01* X1020Y17552D01* X1025Y17500D01* X1020Y17447D01* X1006Y17397D01* X986Y17354D01* Y17645D01* G37* G54D12*X665Y23500D03* X685Y21500D03* X705Y19500D03* X725Y17500D03* X745Y15500D03* X765Y13500D03* X785Y11500D03* X805Y9500D03* X825Y7500D03* X845Y5500D03* X865Y3500D03* X885Y1500D03* X2725Y17500D03* X2745Y15500D03* X2765Y13500D03* X2785Y11500D03* X2805Y9500D03* X2825Y7500D03* X2845Y5500D03* X2865Y3500D03* X2885Y1500D03* X4665Y23500D03* X4685Y21500D03* X4705Y19500D03* X4725Y17500D03* X4745Y15500D03* X4765Y13500D03* X4785Y11500D03* X4805Y9500D03* X4825Y7500D03* X4845Y5500D03* X4865Y3500D03* X4885Y1500D03* X6665Y23500D03* X6685Y21500D03* X6705Y19500D03* X6725Y17500D03* X6745Y15500D03* X6765Y13500D03* X6785Y11500D03* X6805Y9500D03* X6825Y7500D03* X6845Y5500D03* X6865Y3500D03* X6885Y1500D03* X8705Y19500D03* X8725Y17500D03* X8745Y15500D03* X8765Y13500D03* X8785Y11500D03* X8805Y9500D03* X8825Y7500D03* X8845Y5500D03* X8865Y3500D03* X8885Y1500D03* X645Y25500D03* X2645D03* X2605Y29500D03* X2625Y27500D03* X2665Y23500D03* X2685Y21500D03* X2705Y19500D03* X6585Y31500D03* X6605Y29500D03* X6625Y27500D03* X6645Y25500D03* X8585Y31500D03* X8605Y29500D03* X8625Y27500D03* X8645Y25500D03* X8665Y23500D03* X8685Y21500D03* X10645Y25500D03* X10665Y23500D03* X10685Y21500D03* X10705Y19500D03* X10725Y17500D03* X10745Y15500D03* X10765Y13500D03* X10785Y11500D03* X10805Y9500D03* X10825Y7500D03* X10845Y5500D03* X10865Y3500D03* X10885Y1500D03* X12705Y19500D03* X12725Y17500D03* X12745Y15500D03* X12765Y13500D03* X12785Y11500D03* X12805Y9500D03* X12825Y7500D03* X12845Y5500D03* X12865Y3500D03* X12885Y1500D03* X14665Y23500D03* X14685Y21500D03* X14705Y19500D03* X14725Y17500D03* X14745Y15500D03* X14765Y13500D03* X14785Y11500D03* X14805Y9500D03* X14825Y7500D03* X14845Y5500D03* X14865Y3500D03* X14885Y1500D03* X16665Y23500D03* X16685Y21500D03* X16705Y19500D03* X16725Y17500D03* X16745Y15500D03* X16765Y13500D03* X16785Y11500D03* X16805Y9500D03* X16825Y7500D03* X16845Y5500D03* X16865Y3500D03* X16885Y1500D03* X10565Y33500D03* X10585Y31500D03* X10605Y29500D03* X10625Y27500D03* X12605Y29500D03* X12625Y27500D03* X12645Y25500D03* X12665Y23500D03* X12685Y21500D03* X18665Y23500D03* X18685Y21500D03* X18705Y19500D03* X18725Y17500D03* X18745Y15500D03* X18765Y13500D03* X18785Y11500D03* X18805Y9500D03* X18825Y7500D03* X18845Y5500D03* X18865Y3500D03* X18885Y1500D03* X18585Y31500D03* X18605Y29500D03* X18625Y27500D03* X18645Y25500D03* X20545Y35500D03* X20565Y33500D03* X20585Y31500D03* X20605Y29500D03* X20625Y27500D03* X20645Y25500D03* X20665Y23500D03* X20685Y21500D03* X20705Y19500D03* X20725Y17500D03* X20745Y15500D03* X20765Y13500D03* X20785Y11500D03* X20805Y9500D03* X20825Y7500D03* X20845Y5500D03* X20865Y3500D03* X20885Y1500D03* X565Y33500D03* X585Y31500D03* X605Y29500D03* X625Y27500D03* X505Y39500D03* X525Y37500D03* X545Y35500D03* X2545D03* X2565Y33500D03* X2585Y31500D03* X2505Y39500D03* X4505D03* X4545Y35500D03* X4565Y33500D03* X4585Y31500D03* X4605Y29500D03* X4625Y27500D03* X4645Y25500D03* X2525Y37500D03* X4525D03* X6505Y39500D03* X6525Y37500D03* X6545Y35500D03* X6565Y33500D03* X8505Y39500D03* X8525Y37500D03* X8545Y35500D03* X8565Y33500D03* X10505Y39500D03* X10525Y37500D03* X10545Y35500D03* X12505Y39500D03* X12525Y37500D03* X14525D03* X12545Y35500D03* X12565Y33500D03* X12585Y31500D03* X14505Y39500D03* X14545Y35500D03* X14565Y33500D03* X14585Y31500D03* X14605Y29500D03* X14625Y27500D03* X14645Y25500D03* X16505Y39500D03* X16525Y37500D03* X16545Y35500D03* X16565Y33500D03* X16585Y31500D03* X16605Y29500D03* X16625Y27500D03* X16645Y25500D03* X18505Y39500D03* X18525Y37500D03* X18545Y35500D03* X18565Y33500D03* X20505Y39500D03* X20525Y37500D03* X22505Y39500D03* X22525Y37500D03* X22545Y35500D03* X22565Y33500D03* X22585Y31500D03* X22605Y29500D03* X22625Y27500D03* X22645Y25500D03* X22665Y23500D03* X24505Y39500D03* X24525Y37500D03* X24545Y35500D03* X26505Y39500D03* X26525Y37500D03* X28505Y39500D03* X22685Y21500D03* X22705Y19500D03* X22725Y17500D03* X22745Y15500D03* X22765Y13500D03* X22785Y11500D03* X22805Y9500D03* X22825Y7500D03* X22845Y5500D03* X22865Y3500D03* X22885Y1500D03* X24665Y23500D03* X24685Y21500D03* X24705Y19500D03* X24725Y17500D03* X24745Y15500D03* X24765Y13500D03* X24785Y11500D03* X24805Y9500D03* X24825Y7500D03* X24845Y5500D03* X24865Y3500D03* X24885Y1500D03* X26705Y19500D03* X26725Y17500D03* X26745Y15500D03* X26765Y13500D03* X26785Y11500D03* X26805Y9500D03* X26825Y7500D03* X26845Y5500D03* X26865Y3500D03* X26885Y1500D03* X24565Y33500D03* X24585Y31500D03* X24605Y29500D03* X24625Y27500D03* X24645Y25500D03* X26645D03* X26605Y29500D03* X26625Y27500D03* X26665Y23500D03* X26685Y21500D03* X26545Y35500D03* X26565Y33500D03* X26585Y31500D03* X28585D03* X28605Y29500D03* X28625Y27500D03* X28645Y25500D03* X28665Y23500D03* X28525Y37500D03* X28545Y35500D03* X28565Y33500D03* X30505Y39500D03* X30525Y37500D03* X30545Y35500D03* X32505Y39500D03* X32525Y37500D03* X34525D03* X30565Y33500D03* X30585Y31500D03* X30605Y29500D03* X30625Y27500D03* X32605Y29500D03* X32625Y27500D03* X32645Y25500D03* X32665Y23500D03* X32685Y21500D03* X32545Y35500D03* X32565Y33500D03* X32585Y31500D03* X34505Y39500D03* X34545Y35500D03* X34565Y33500D03* X34585Y31500D03* X34605Y29500D03* X34625Y27500D03* X34645Y25500D03* X34665Y23500D03* X34685Y21500D03* X34705Y19500D03* X34725Y17500D03* X34745Y15500D03* X34765Y13500D03* X34785Y11500D03* X34805Y9500D03* X34825Y7500D03* X34845Y5500D03* X34865Y3500D03* X34885Y1500D03* X28685Y21500D03* X28705Y19500D03* X28725Y17500D03* X28745Y15500D03* X28765Y13500D03* X28785Y11500D03* X28805Y9500D03* X28825Y7500D03* X28845Y5500D03* X28865Y3500D03* X28885Y1500D03* X30645Y25500D03* X30665Y23500D03* X30685Y21500D03* X30705Y19500D03* X30725Y17500D03* X30745Y15500D03* X30765Y13500D03* X30785Y11500D03* X30805Y9500D03* X30825Y7500D03* X30845Y5500D03* X30865Y3500D03* X30885Y1500D03* X32705Y19500D03* X32725Y17500D03* X32745Y15500D03* X32765Y13500D03* X32785Y11500D03* X32805Y9500D03* X32825Y7500D03* X32845Y5500D03* X32865Y3500D03* X32885Y1500D03* G54D13*M02* gerbv-2.7.0/example/uwe/0000755000175000017500000000000013421555714014747 5ustar carstencarstengerbv-2.7.0/example/uwe/example-cairo.png0000644000175000017500000000566113421555714020213 0ustar carstencarstenPNG  IHDR} "bKGDtIME ,1X SIDATxKnH@Aj:Oj1Z[o֫٫DTe۶ "{ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ 0 m>q-T/%l{|shn!`!`xz,CB8X(N5\X'>dp G,Y f@&`3[#fa] n`X05X z Xz! 3Z!|vrcq Na..] spx} {9X"bO"`B3 r<$@ E ey,)`.,C4 XR,z{ `b < \K DT&`Hq}<;6 @`)'`${ٶc!{0 0  do#^a.^!`׳; ,@ky+ FfG07X(+A WXj1+ZaM`RƬh,"A+X,BJ+\cBD!0XEz)`a#Ep%`=d+p  Y \C3"Vu=X.v*l*H2 E"`HXR,) @ E"`HXR,) @ Ekz}o;Me۶`l_C7 79D-p  C"`۶!! \J,npJ%\X`A#!! ć 3zn[cF`?`!0,  DĞO¼,@x X(p5X8! X1dE+ILj֠X@=fE+pH,8Ƨd" ,hKN -d+p !+\KXm'b+p  ' Y \KW Y JpsV"`H!R,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,) @ E"`HXR,)dG\cIENDB`gerbv-2.7.0/example/uwe/mail.txt0000644000175000017500000000271513421555714016437 0ustar carstencarstenFrom bon@elektron.ikp.physik.tu-darmstadt.de Tue Sep 7 22:03:06 2004 From: Uwe Bonnes To: geda-dev@seul.org Subject: gEDA: [Gerbv-0.16] Problem with Macro Reply-To: geda-dev@seul.org Hallo, appended code comes from Eagle(4.13) from the RS274 processor for a supply layer, where the "pads" layer has be left on during gerber production. This normally results in non-contacted layer, however here it is done to explain the gerbv(and gcprevue8) misbehaviour. The code flashes first (after the frame) both Obrounds, then the thermal macro is flashed exactly over the Obround. One would expect to get a fully filled Obround, with perhaps some of the thermal overlapping. However layer inversion used in the thermal macro is still active and leads to reversed areas inside the Obround. This is wrong Bye G75* G70* %OFA0B0*% %FSLAX24Y24*% %IPPOS*% %LPD*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5* % %ADD10C,0.0000*% %ADD11O,0.1192X0.0596*% %AMTHD12X* 1,1,0.0760,0,0* 1,0,0.0560,0,0* 21,0,0.0780,0.0200,0,0,45* 21,0,0.0780,0.0200,0,0,135*% %ADD12THD12X*% D10* X000181Y000181D02* X005681Y000181D01* X005681Y005681D01* X000181Y005681D01* X000181Y000181D01* D11* X003681Y002681D03* X003681Y003681D03* D12* X003681Y003681D03* X003681Y002681D03* M02* -- Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- gerbv-2.7.0/example/uwe/example-gdk.png0000644000175000017500000001221213421555714017651 0ustar carstencarstenPNG  IHDR:6tEXtTitle/home/spe/projects/gerbv/example/uwe/example.pngS9tEXtGeneratorgerbvvȮIDATxm@ѷpFi|( Z0(r9kaTUChpn7/O_^x( A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D zp%O_^\՟g/mּ^;l)p߼})oӌ]?~&zf:1 }h=3;oI|d`Kϫ5W`0܂y`40Rb`0"2`>x`I|v/SEq_yxuG|*zVY²D@w }俛"jDPw\?yq-#uq]>Πa(Zg0~((c06oS9361gRϙADdqvlC;<h,=5#)p6#'4~O7H|Yak+m A6P|üw A8?~!=_#ip`>OLBܖY'zfX*5Z L#z[02\&zZ6/] "zZ\ H0"wh=>r20kyL7pu-pu[aEG$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D zK/͚o-"zw/%-pѿz}}70rDL?M`s-Cuy`0ֲ7T] "z[0/\&zfX*2Z L#z&Y$5Y[Ӿ,}|u(W?^E94SX.w3[>3\XΚY;/8neİt>YWck4@EL_琌%znG=<=V!K4;$Kqa2;=ρ=m `sp= +=P=k=;=Gh0O#Q32hjƿw qDƯ%z}Ɔm!8g=&L<93O_8+lm5 $jo.s$,r;dwGo=:B H=+.^qH=+=@DpUl^sy{wԈ AC-rǻQD zk;6 g!zH~̑ 8qfp';gĜӶ?g=>FOJ631_9 .J[4_;G8SO#Q36t4q8jF=|<ؖJp9ؙDpE؜9D?s uO? ~x寿|5y|ŝ [ =!%zvЄZm>W?@Ӄx:jW<W~ǭ!znF}_jD1?{=Q94SXx/~k: B̳]uIV(2ˀD KRiDp FƂKDXŲ ADX~šq<{ "7WM`GP&zf{-iu&zN4~%zN|9SuC: z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ A H=@D z$ QIENDB`gerbv-2.7.0/example/uwe/example.gbr0000644000175000017500000000066113421555714017101 0ustar carstencarstenG75* G70* %OFA0B0*% %FSLAX24Y24*% %IPPOS*% %LPD*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5* % %ADD10C,0.0000*% %ADD11O,0.1192X0.0596*% %AMTHD12X* 1,1,0.0760,0,0* 1,0,0.0560,0,0* 21,0,0.0780,0.0200,0,0,45* 21,0,0.0780,0.0200,0,0,135*% %ADD12THD12X*% D10* X000181Y000181D02* X005681Y000181D01* X005681Y005681D01* X000181Y005681D01* X000181Y000181D01* D11* X003681Y002681D03* X003681Y003681D03* D12* X003681Y003681D03* X003681Y002681D03* M02* gerbv-2.7.0/example/uwe/example-viewmate.png0000644000175000017500000007105113421555714020733 0ustar carstencarstenPNG  IHDRPsBIT|dtEXtCREATORgnome-panel-screenshot7w IDATx{uwM&r%! \2EoqPqQuEݳij]=73랳swuQAK7*r r30 $! $3SITw~=&LOw}6(ºsO: w9z?|ࢗz;LSC-'gȑ7OcHoa?=%Zx&ߡ5BV{?P۞ڠO|zUW K5vٲI ߮ 'w8ƶhACHrz%iIMNNh|f2@ Urw{=ٻZף]{'%IgǏKvn̺ܝj.:%J ɉI|MF{q'&51>ޑLk/3;xMNhOhrb|֝<" N;4$ F7@9$=Kǖ2 yߧ}{7yyi͑v̽jrrBitЉ |^+%IWYU_Կ7xV9ZTzz~3~aktCۢѯț?.\Uo_IR=E=5'_^31OmMwqYq>3{3շ|Mf\ʅ-Ǚn%8բop]ZFdD֭y;m7ߤAE0Vn.>0tZ4w!r$yZռӣW=-9wtTiC7u^{? _-V?c|Ϫ/XN].\vߍ|Ւ7H?z{H;J㻞j8mx[Tyi G՜h/מݻkʅz|S?OLX{kuߢz xAZ\3^Cu)W_*ywoGM?Mݥ~|qnr&'L7hh2Xkt4|+iO$ ~HG\mtZt_t_s\NA @[OW/tǗ?S^06NPC.=׃O'ns#S.O~W37Xn^Iu7H_#GZ?]Xtڛ7~US;uwJ௪V{ulk=ZG;kߢu{ZlYrG,6~Ikp%]XY'qG}5sܫםs>#[jֽyNuל>{ɱ:nC[{xM[L G׏e}{78o|a[O'WpkI?${l14$IYN_ҥKI:eRms]ժUUU; 4_ٺeſ06IҧrLѦ_^#z+/?oS.);:{ڹY앿_蜃mT}s{k,5Nkآ?9}紬gBOzt/g3o/?_;9uqkߢ/|J]t1Ng=k57뼋ަOt uIț__:W}=mt?]YF'J>?2Ys`mxf}  ބJd=5t+g_>Y] oq$z Էqz 茕 G&!yϞ{WQ kuz4UkdddFE( wtO_}Oo+C`IW93LvJؘ:½:锗LsUO}uݣߦ5j|/gE.}vN@yZIҊV֑1xu4vjduK^WDcKiҕOzJXHG8{6[7_z>IGΛ8ZGG>pzͯOٺG{N/ چժedh؞qmݹr׾}{3^7fK:Nx'<$=7G3l:m۶MmۤjUuVRFF귍<峥Ym_]C~w[z.>gWݑF٭g[w.x{薟ݤ󽚿xfۻGK.! {}V۹Eвeiޜ}:MڳoROvCkVKc&uY˿kܮzxB?~mw %/|/:P/V,hҞYm~rD^pkk3蕫gWꏻh>3'7iBstMwqOx<6VvOvyswׯ:;uEeOv7g=s7̺3oЇ[d[L=r&j(kѳZjժjȪUi`ֲ{uׇY˫tkIΤ:윷!=ȭ:3t Oҿ'lw$閟״lq|D=[QzӃ?֪S_wUۣ`tVKѯ$_q5ڹgpmmz@OnZIݥ^j[ңfw5on{yj^jxɟI;ibϘ-G%iG1 |sGH<"P]vu>o5 `]qkf@켩-mtyuirx+YNOTQッH/IteԉG/@i9=~aӷSnء_Vs7H{~UOlݭj{VIn:y`X#M\a靫_3pZУ9>'ٰ8מszɻof/Y>WwM?ֻ?o:|;UO3ozUZlA1{#㷠G瞴HO<;IOG/'4?˗c33oM=^N]HnJmPTe?b,G>|j? cG+I={Ց]ahHV :0`>or(Ν,}[?8=qw}EÛ7|[#[h׾ qty:jynl\g:Ohԗo}V=|w>s 3U{9Iҋ\e zl/j^mvޥ+v9KNjNko,?}Qoܥǰo>LZoê;옪6:xo|_'0/sKdE_kI VVdF+ VUt54(ΐx.d][ ς8:%Z}^?AN#9/Z؞IMzR#-9G2UA=>]pR8K{8./Mzqt܊:f^y|-t>xv[_M:dqvZys{R^PG/J<]zI bmb Qo ^Ҭ?r537a5+jMĉBCx)TIV#ZNPŌw]vVUɠW.9aGP.{wmNu7o|9-96.qt#Ig\dtniHR4xͿD=r? :S[&w̚M"lat|-_o|R=ٵgBNo}FC2ЎveTwil''o*z=]t˷h94NP6h/y#?yB2BHB@Ho;l۶M7oq݂ rO>n]|3nC鮻ʕ+W:*'駟'shy]vi9]s?٣+Wjڴi{9XBK,.FGGuꠃynmM^c˗/ײefݶZWk׮_5az=٣yJ龾>uQFGGh"XB<ϟ? _J={tju]76t^ϺӓO>~裏W\o9~矷vVi||\sN]{3֭co~ڰa^hÆ g}nmM^c#o뺮6n8F 922;C۷osbrrR^{y~y睱 _+ɇz>1޽[ .UldڵW<@zZbE}}=֍~amoS__~|zYcӦMk^Iʕ+zl٢Ҝ9sxbs9 mvܩ Kj=>N;5kh͚5+W"vء'ZnC=Е_r]qZlN;4Zx'p^җg,o͚5%M}WJO?vZ}՟kٲeӕW^w]aҥzgl2?X7۾N;M[lQOO~Z~},Iz\pʑ~7ڷo_L޽{um馛n 'PT8&''%Iu=詧>=:S4gIG5m޽[˗/?-ҥ^y &''ӣ_3_w~G_׬K=XZ |Gh޼yzы^y]/^7M 6瞓sg _B$͙3GY:J[nչkdynA{.\>[kZpӞ={ק ڵ+6,\P;wԭZpj<ӣ>?_W_}*JumܸQ/{˴tRqzGOo~^Zx`^_֯_1YF>^Ͷ _o߮~Z/W"S?~Zp8}#<3|;A+A g;ַ'5mV:uL@삖?֭lϰ$]q| 9orϒ2[' ?μwKuƽ\aE]vܓc.;`AEo# W k%u2ojx?{.#nU7Ip$c]_9YfVMh9y|`# W*Yd@uN ; R=Yq亮^sұZ =44T zen 8((V:OzhIdRqU5^VR6sZYc]C,_F=q?;ҬUnb,$7y&VAS 1 ?ejY!jg IDAT8n5N$˞j;ȫr[jUŴWy,jT d͙dZUdX&eoF˵AjP.J2ʍHʧю{84ۜ).)ځ~c5"I^Vն}5"KӡDE9;ӂے,;$˞~(<'cPV[aLTG?:qU64;YŲ|bc[S_. n9>}[ت/;8j` {K?qkQJRZ)4[_;Ivi'ZIn;J`pZ)~$g=JۇZZp@""c:WT(6YUnć:IY{ua[)^?!yf 8,_Oy0ILm` VVn#k8ZΨ (K3[1-C~ٿ_?6{Xsijvݦ:uKß*getLwZ`JMMC̀gԲO$xq[)z Ié?%M( >n7k%YqL?|a:(6T%E5EFmg&}dxk{'mn< l/I_4ξ`U)[5')y:F*kMma%N%YҌW%Unt[[)g}y{mhx[/n|4rI7l04%}b_(CCC>+]+a }d %cS ~v3=Åmq+Q:lΓU{QT7vc_VB}m?ZϣR+6u4z›-;ލNb ~ЫV֡Մӿwgߔ<3r- Ud)~%9*@G߿_^$&\NbB׭}i=i9֭V)cb,$:1NHn@lڶpkEl¯ jSX6~Vy֜ơySVͪJIũ$o]q5:ѲmHrf%u{'2~#- ɶ>mf2lq ,̼ZMf!E?^bNgC# u'9o00^[vމZ~&Y76u[<_Emw캵RWsz-Z#uE"k8tf9K){&*e IKQ)ӵ!YhZUUeLy6'=mv$:S<<aD*9jj|,[Ěnpp`֭3ej>i(MsY~^$bϓ캮*jZZe_ԁW *WZ2X~~^tCrր\TbWLU1[PGR5c3{q1.??ý4F*KRIFsgժU8?Eç#uYXxqB~v|=lkpu?Yy+TZ4ʫR] j`7Liku]D%qvqksӬzpw:U]ו82Ҏ5v"ͤZy .p` 1ZZ$YvJ46k|߸F%_~ܝX%IxT6jNI505Y)fdYF;xx ]JϳOs"4Y:.;9XW`,igl"kP`jp&|^÷V2W%GB'9UYf$CnT5[q#l2؜[!Sϫ=2W=ȡieS'hv`\(~PN. Μ0uSfuR'I WOQZ=IIx;@5nẒ⺳{G￝d2l6d 5Zu$oz;i" V0wyq+2\~:h䨟=\EnEl1K[=/aju5E jl֐kBO͖h,?X54\؎3`J3կ`4oȓjs:?3[7UP f!lHSٍ^O{ƽF4]dd:^Ayn(kt{5#`nj[dQj38c]T5Կ8N (Q۲a{Y8H VI^gH#nJr2v8k9Ni?Mϵe!x"^Fg˺tJwvqeݢy/n=6344dmY1~ig0^&N<%u]ѫavlxbuIFGGߟ߸FFF4::f{:Ȉe_r,N2$ݶ000x|Ӷf.N2$&A[Fle`/_t!lZ؜P?E'̺.2$sܴ! hu[ܶy"C2vt+Zrvt2L,XV500Pر+hOVJ|nk a Ȏ-B2BH =Ȯ&>FR1Bi.EMH` r<::jn$ ~X!W||5jHG2UcǮ$wY|lYxS[T-DZ*<ϋێ$W< 8rRݯnU8S8 fqf\$zSdPkOsv 1@lW]׭(7n{ϛ.8pCQI {ݦ3ee<$TOr4  ݃ (|b[ؗ8$}.J-$ v8$7 yN[B TC5hv6r]WJ1+ںݢ#~&uHŨ"݋j2Аl4<,̔K~yTlfܶ c:-8K[^d[$Eej`zjS'IݝLdC2diyffZ.Ld)EHn{LO2@Fqµe# K)+8B% *rFq>d[Yjv *FIe3 Km$Lld; K N*FIZ-|&[.R)B={K]BI.W6JL(duC%zSܧ4- FiȾNgXFd'U[$LL&i(jl+y'ѓ d3!%xH+ KTʚyL$J%byi8$}ydJ2@PٲQ0WXY8*7]*ɍpY*@ʐg X$Y*4kuVz -lg0Q9% j5SPn\%;5 E)EHvRN%`Z^(qXpjr!pj5*lgp_qZ5k`I,$L•2rߴiyTFe7iQs"7?SJ24(k4}2wpgF^y^uӲ-tu] dZa !euo 䑍jZ2 0-l y$dθGOrgr f*"ڟbhhf/Bp%!-ߺa+085:$SIVlWuT BO2@(c6jUӾ1FYʠ٨ CrT{jnV6u;06=(/f3[Fy "Ǧ'CF3*Q$K 0A IDATV62P5v!9C3=lfܶ cuEֽ% PlT8wq Ɏ"ѓ Tl D6>7~H'`Z(\1vs;JMQ$w  |3rm:"t?$nh4uF)5L)C @Y) ]^ފ"*FjUR4 6%gh(,ʴ*@#|>uye`@j?VkCrY(Qo疋T "a|.31kjL%`ZАj۝dCrW6r]7Q+lUeg%Գ[4-iݢ 1g2,yf#"K3grRT:DȟBRӖvR+ yKZ_| TP^lcv 4X}R3-(uT:$iȂJ2-~x䝍㰴Y2\Id\}~2+",Yb7y` Ȁ tvY4g `OGf@leȀ1yd!VY*AH'*H 0[0z] GnFydS z^-0*@ȀQgkt@2䨓FN2``MO2R#(! 䑍md)EEٿq2Dqk OFEMn!щB>%}7x3}"Yj$rw6**(ȒcQY *0"QA9,YyefdG8 a;}ƽZj{'SpY0d@FqCn yXQIue 1P pQoГL%т4F@JF6cZF;{k4E n\q0 tld`3yȱI 6ble#ә)I EQcuH'g݂p hdd$(إɃ)M$4.w6N]6uJ:r!y0C2d` jL%0x<lGʫBSud͎@A:9+GOm A/93T' )B[N[J#;-[d"sy= Ղ!J)l9dϻ,} @1,X٨*a,$2@ݐ]xHNRT$ei` F3*ȱSi6"TpIg5d :ldkj8ȱf k~ddM14t [ta1I EQc'~. f&tS+hdd$ )FIv~Csșc],(l0z^GvdieFj5SHGƮ% Br=Aye⼃r0Cq80QpYio heFyFV]Ma'wPeFTMDudpE0(~Qƽ%䕍\m|$MdlhlYB0$'l*s@ O{K,A.D@<$(eF6RnA'`Z٨ѬBY.R Br>=F~M:oMd-wPydp-6T줼hQ0WPZ R!O,%L 0v6jZa!֥U@v]~I*qHve@kd*Fi{>F`z8${0%*Aye#?(wj@ nw@ (l!NYEZU5 9-u`F9Ϲ.lԨ mFCr0QY 0V6u;0v'ɂJ24(e9v IN-F /q9Jy$V62P5v86HnQۺ"AQ^C2=ʒ+;TIfHw"=FqBpZu kۂaXGuD*EHNLO2ep'Z6 ncpn=$ +Q!8j$n**~)S;@7ȫ7 ܒtL⧀3gEx`` rrv=vza2yTzq`944d58pXH[,KQ=' Eg#Bj;!9*'=ݟ-юO@Zy$ ͸oTH1[PG[6@ɣ(fUm1rQhyf0oe;N&%$3]X C:@^[~hhJmjᏗv KwP^Ў !y$)]g9/$g5tZ nUfm"JrZkڌۘJGUUk4CrN StZ0n Mѓ`8nM# &'nGFF2rottj[q J(FN+$}m%8 e% VH= [ $$w{892٪$e `&qveQIv .>y;E'̺.[%ٟ$vIoo{9!(7Gȣ\V?_?44+( fm8뺎kp]+~?<$pT٬UP@eUIɴDIVMzq]~Jkplt䤚۶l!9!ϛ-@5 t䤊!΃vh@ahg/-@ɣ'9|?n1ml8Q` z8e"FÌTCPAF݂:InZΘݪg ͨ.V35]d ɡ>Vm,>ht810 ,a'9N Nϑ܎-fzm2-8q%xJ#-CEGLLFCU(ە䨙-.vkH9E-H *gvE0MIo`9~P'<1Or{ S\frWNatv 㷷r@nlUݐHVm÷O[-j\t02`AȅdKCrQ{ݸ@8F%[ BrQ{ݺ@q*֔{.QH.jO[`` (A--@y~cv sAʇ%`TJ2C O*zZjʏeS=E644$u ;F@AmCY*ڑ!$@!($%)2$P6CCCE 틠 /*:dsJ9dA%B2ʋBI.G%B2@l!CPI6 !$CHT!$t*QN ->?Ũ$CHT!$t*:dsJ9dA%B2@l!CPI6 !$CHT!$t*:dsJ9dA%B2Hw?u~d (\~ bD#vlf&t=58lq`yuY _]l-9SNU|9==ݧԟot5 p*6[\1|dPIGH8|dPIGH8|dPIGHf|B~+ p* p*l@* PIHH8|dPIGHf JrNB2A$#$Jr>B2T$#$Jr>B2Z|dPIGH8|d[@PIGH8|dGV*$\/?tRIGH8|dK5 z$#$Jr>B2T?N8>9$QIGH8|dA T9R85̱8q؞a4|dPIGHxT`l0Jr>B2 eT9.Z-̢̱9~^a6|dρv Y$#$salJr>B2Áv Y$#$s]a;lJr>B2ǁ.vPIGH:9@`1*\"8XÚls8|dpІ`*8,QIGH!/N%9!b0.B%9!ڨ4(|dil+ *ɐ>`3T!JfQIGH pi*0.$#$CkvG%9!r,3/Jr>B2,BfCQIGH5ŁD0a-= *ɰ]F!u*9 ɰCh PIGH.= PIGH ~X^$#$i,7Ty,?BT<,GT]^'2|dSey+SIGH^s,CBTvxpa*@?oelJr>B2W fy wv`T鮥z-'{*@G G{ W= pss3-ߔo\zCNݻwsHMHPshARN'$"B2: p777a8ATUNB2A8Or>B2Aƽ|dPIGH8|d777()R!$n!"B2DI8,;WUj#d 0!@, r:!  "$@yC8D_>>N]Ϫ*|<^]jZz9&MOOΗ\/www4EtUY7Vjif{/'?$$\ T!+Ej9tDsԷCUVw|s=Tm MuTpfM$kV+]I_J`\T)%$wRQ ]_$T렬͜՛*؟c}\ Jr3(=_<kV%(NNPe(|{T5 ;`}շMX-骴VTz/;uLs~ )3:E<p94`ߜN-1MulEsM Ky٬$U؞Y䪪B(ҾǭotH=.,nIM ̱x{SIN egxCUU|OO1sv}`0]isC~$G%y淋Lna:ѭ9'YE5rvNy7q_ p:Jr8W;WRoYw5粎$Rkӭ/]aKI!%y( $l9ɡ(Bˈ:&p7cY>D>-Pm{k(O=Oriޚyꁿ/(;YjNrUUu=nn. .zƽ8o^ή (B}ϟ{hQ=7𥳐~+<~[9TU |^UnN7-8(Sjgc~nӜRQ֔Jrp]@\FUc*tz C#1^I.Ԋ*-䇪:uU)#KIqԡB~kR,0ݸ9Q\иƶs$hc*Vou8T/5'Ԉ1yxN~mpƟ'Me=߱WW߿ OBo9[68o؊?,}䶠S3]s/\QsSӘ s?>>fcs˗/^~~ǵy+rT֊)687s>0eNr\/HZ6g7 Meow.] u% ;?.5w6L%9[_nG&^N%3!y/`"9 GsEqtܖ]o6Yץ%'m{^lϱoՅBc~>|ܖ]o6Y-Z?6C8Η4CЎ=~%ؾ>^ a \n%:ZͿ)wm>Wsar: ]Avn~cAYzrBg/c{xޗ!!8B,˲3=.ESc6-u0qPzlSưŀr˱/9֪vJq@n}\m˹M.WsFCm6)Y}jy(*xE(ex.4CT-ZcAq.~Yowz<6ķ5Ǒ>ox9Ť<zK{oX_x=^)V-9[|)S}bhN*/ꟻnOyl3)SrVl*>,gt]SD?/ފ)S͟kݞ2.֏5[CuimCbf> A.kj_kYkk_"qyl`PUr}sso̵"#0gz7vK*w]b̻pc 9O6=bKo.a`V┷uSm{uM ي8\6c wi"mǷVKVC\ gjqBP?tiW7V= -uuU28޶_ )q|cN=}Fyzm![4ݿMW%HU/Xq5Oh~c4wc뻭D)gהi}dj{t5;Uc] eaE!,;"g]0c^gBx%E:ն/G|^CfW;yz]׻A( >U%~x%Z}zֹҺYC’ P5v"}G_kјju{*^67uk:sQqv}6~QgxZ<>esJQ)[gR* L}ճ7c+}}\2 :r"r ^TUm%|/^ v0.BN4zߚcn_mK]cZ%7uؾR>WLW[PKu:gzZ˾~߽m#MInAr8O9w=>J8g{弤 Vs9Y9ϥu1!R*s![OSمV=Gݢ^wqs2ټ}kghV8EnD8Lz%[?@sz֞n賞z|ճ[ w ~>_*\OنRnG9p-|~5tq;fnCUmcu=OgI A#-Q[*#-S-]}o6s2e{ؘfJ%()˦9uf㗼?z? 777l.YnODy|| ?~0V74?il屾wt̘YH k, J>|XE m9K-%^r̗uҺe{sn`H͒vk&XnYr.Zw){]'K>Ϛ^ƿ>x$|oTUnoo7Yyw$$@uNOEVOۜnQk Gti~68VI6'"=|)nooӧ[QYaDd "$@DH !"B2Dd "$@!oK`K)Bwۧ? W?a᏾,-}1_OB?៿e/20_~៾eq᏾,BxnQ)ouqjB8\OO+ .|]=rܺIENDB`gerbv-2.7.0/example/am-test/0000755000175000017500000000000013423533412015512 5ustar carstencarstengerbv-2.7.0/example/am-test/Makefile.am0000644000175000017500000000165313421555713017561 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=am-test.gbx MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/am-test/am-test.gbx0000644000175000017500000000221713421555713017576 0ustar carstencarstenG04 Verification of all aperture macros * G04 Handcoded by Stefan Petersen * %MOIN*% %FSLAX23Y23*% %OFA0.0000B0.0000*% G90* %AMCIRCLE* 1,1,$1,0,0* % %AMVECTOR* 2,1,$1,0,0,$2+1,$3,-135* % %AMLINE1* 21,1,$1,$2,0,0,-135* % %AMLINE2* 22,1,$1,$2,0,0,-45* % %AMOUTLINE* 4,1,3,0.0,0.0,0.0,0.5,0.5,0.5,0.5,0.0,-25* % %AMPOLYGON* 5,1,$1,0,0,0.5,$2* % %AMMOIRE* 6,0,0,1.0,0.1,0.2,2,0.01,1,40* % %AMTHERMAL* 7,0,0,1.0,0.3,0.01,-13* % %ADD10C,0.0650*% %ADD11CIRCLE,.5*% %ADD12VECTOR,0.05X0X0*% %ADD13LINE1,0.3X0.05*% %ADD14LINE2,0.8X0.5*% %ADD15OUTLINE*% %ADD16POLYGON,3X-10*% %ADD17POLYGON,6X0*% %ADD18MOIRE*% %ADD19THERMAL*% G04 Outline* X0Y0D02* G54D10* X0Y0D01* X10000D01* Y10000D01* X0D01* Y0D01* G04 Dots * X2000Y5000D03* X3000D03* X4000D03* X5000D03* X6000D03* X7000D03* X8000D03* X9000D03* Y6200X9000D03* G04 Draw circle* G54D11* X2000Y5000D03* G04 Draw line vector * G54D12* X3000D03* G04 Draw line center * G54D13* X4000D03* G04 Draw line lower left * G54D14* X5000D03* G04 Draw outline * G54D15* X6000D03* G04 Draw polygon 1 * G54D16* X7000D03* G04 Draw polygon 1 * G54D17* X8000D03* G04 Draw Moire * G54D18* X9000D03* G04 Draw Thermal * G54D19* Y6200X9000D03* M02* gerbv-2.7.0/example/am-test/Makefile.in0000644000175000017500000003604713423533412017571 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/am-test ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = am-test.gbx MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/am-test/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/am-test/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/ekf/0000755000175000017500000000000013421555713014713 5ustar carstencarstengerbv-2.7.0/example/ekf/ekf.gap0000644000175000017500000004021613421555713016154 0ustar carstencarsten! GAPFile Version 1.0 ! Created by CAM350 GAPFile Version 1.0 (c) 1995 Advanced CAM Technologies, Inc. D10 ROUND 4.00 0.102 0.00 0.000 0 0.00 0.00 D10 0 0.00 0.00 D0 D11 ROUND 6.00 0.152 0.00 0.000 0 0.00 0.00 D11 0 0.00 0.00 D0 D12 ROUND 8.00 0.203 0.00 0.000 0 0.00 0.00 D12 0 0.00 0.00 D0 D13 ROUND 10.00 0.254 0.00 0.000 0 0.00 0.00 D13 0 0.00 0.00 D0 D14 ROUND 12.00 0.305 0.00 0.000 0 0.00 0.00 D14 0 0.00 0.00 D0 D15 ROUND 14.00 0.356 0.00 0.000 0 0.00 0.00 D15 0 0.00 0.00 D0 D16 ROUND 16.00 0.406 0.00 0.000 0 0.00 0.00 D16 0 0.00 0.00 D0 D17 ROUND 18.00 0.457 0.00 0.000 0 0.00 0.00 D17 0 0.00 0.00 D0 D18 ROUND 20.00 0.508 0.00 0.000 0 0.00 0.00 D18 0 0.00 0.00 D0 D19 ROUND 24.00 0.610 0.00 0.000 0 0.00 0.00 D19 0 0.00 0.00 D0 D70 ROUND 4.00 0.102 0.00 0.000 0 0.00 0.00 D70 0 0.00 0.00 D0 D71 SQUARE 24.00 0.610 0.00 0.000 0 0.00 0.00 D71 0 0.00 0.00 D0 D20 ROUND 28.00 0.711 0.00 0.000 0 0.00 0.00 D20 0 0.00 0.00 D0 D21 ROUND 31.00 0.787 0.00 0.000 0 0.00 0.00 D21 0 0.00 0.00 D0 D22 ROUND 35.00 0.889 0.00 0.000 0 0.00 0.00 D22 0 0.00 0.00 D0 D23 ROUND 39.00 0.991 0.00 0.000 0 0.00 0.00 D23 0 0.00 0.00 D0 D24 ROUND 47.00 1.194 0.00 0.000 0 0.00 0.00 D24 0 0.00 0.00 D0 D25 ROUND 51.00 1.295 0.00 0.000 0 0.00 0.00 D25 0 0.00 0.00 D0 D26 ROUND 55.00 1.397 0.00 0.000 0 0.00 0.00 D26 0 0.00 0.00 D0 D27 ROUND 59.00 1.499 0.00 0.000 0 0.00 0.00 D27 0 0.00 0.00 D0 D28 ROUND 63.00 1.600 0.00 0.000 0 0.00 0.00 D28 0 0.00 0.00 D0 D29 ROUND 67.00 1.702 0.00 0.000 0 0.00 0.00 D29 0 0.00 0.00 D0 D72 SQUARE 28.00 0.711 0.00 0.000 0 0.00 0.00 D72 0 0.00 0.00 D0 D73 SQUARE 31.00 0.787 0.00 0.000 0 0.00 0.00 D73 0 0.00 0.00 D0 D30 ROUND 71.00 1.803 0.00 0.000 0 0.00 0.00 D30 0 0.00 0.00 D0 D31 ROUND 75.00 1.905 0.00 0.000 0 0.00 0.00 D31 0 0.00 0.00 D0 D32 ROUND 79.00 2.007 0.00 0.000 0 0.00 0.00 D32 0 0.00 0.00 D0 D33 ROUND 83.00 2.108 0.00 0.000 0 0.00 0.00 D33 0 0.00 0.00 D0 D34 ROUND 87.00 2.210 0.00 0.000 0 0.00 0.00 D34 0 0.00 0.00 D0 D35 ROUND 98.00 2.489 0.00 0.000 0 0.00 0.00 D35 0 0.00 0.00 D0 D36 ROUND 118.00 2.997 0.00 0.000 0 0.00 0.00 D36 0 0.00 0.00 D0 D37 ROUND 138.00 3.505 0.00 0.000 0 0.00 0.00 D37 0 0.00 0.00 D0 D38 ROUND 157.00 3.988 0.00 0.000 0 0.00 0.00 D38 0 0.00 0.00 D0 D39 ROUND 177.00 4.496 0.00 0.000 0 0.00 0.00 D39 0 0.00 0.00 D0 D40 ROUND 205.00 5.207 0.00 0.000 0 0.00 0.00 D40 0 0.00 0.00 D0 D41 ROUND 15.00 0.381 0.00 0.000 0 0.00 0.00 D41 0 0.00 0.00 D0 D42 ROUND 18.00 0.457 0.00 0.000 0 0.00 0.00 D42 0 0.00 0.00 D0 D43 ROUND 20.00 0.508 0.00 0.000 0 0.00 0.00 D43 0 0.00 0.00 D0 D44 ROUND 24.00 0.610 0.00 0.000 0 0.00 0.00 D44 0 0.00 0.00 D0 D45 ROUND 28.00 0.711 0.00 0.000 0 0.00 0.00 D45 0 0.00 0.00 D0 D46 ROUND 31.00 0.787 0.00 0.000 0 0.00 0.00 D46 0 0.00 0.00 D0 D47 ROUND 35.00 0.889 0.00 0.000 0 0.00 0.00 D47 0 0.00 0.00 D0 D48 ROUND 39.00 0.991 0.00 0.000 0 0.00 0.00 D48 0 0.00 0.00 D0 D49 ROUND 43.00 1.092 0.00 0.000 0 0.00 0.00 D49 0 0.00 0.00 D0 D50 ROUND 47.00 1.194 0.00 0.000 0 0.00 0.00 D50 0 0.00 0.00 D0 D51 ROUND 51.00 1.295 0.00 0.000 0 0.00 0.00 D51 0 0.00 0.00 D0 D52 ROUND 55.00 1.397 0.00 0.000 0 0.00 0.00 D52 0 0.00 0.00 D0 D53 ROUND 59.00 1.499 0.00 0.000 0 0.00 0.00 D53 0 0.00 0.00 D0 D54 ROUND 63.00 1.600 0.00 0.000 0 0.00 0.00 D54 0 0.00 0.00 D0 D55 ROUND 67.00 1.702 0.00 0.000 0 0.00 0.00 D55 0 0.00 0.00 D0 D56 ROUND 71.00 1.803 0.00 0.000 0 0.00 0.00 D56 0 0.00 0.00 D0 D57 ROUND 75.00 1.905 0.00 0.000 0 0.00 0.00 D57 0 0.00 0.00 D0 D58 ROUND 79.00 2.007 0.00 0.000 0 0.00 0.00 D58 0 0.00 0.00 D0 D59 ROUND 83.00 2.108 0.00 0.000 0 0.00 0.00 D59 0 0.00 0.00 D0 D60 ROUND 87.00 2.210 0.00 0.000 0 0.00 0.00 D60 0 0.00 0.00 D0 D61 ROUND 98.00 2.489 0.00 0.000 0 0.00 0.00 D61 0 0.00 0.00 D0 D62 ROUND 102.00 2.591 0.00 0.000 0 0.00 0.00 D62 0 0.00 0.00 D0 D63 ROUND 110.00 2.794 0.00 0.000 0 0.00 0.00 D63 0 0.00 0.00 D0 D64 ROUND 118.00 2.997 0.00 0.000 0 0.00 0.00 D64 0 0.00 0.00 D0 D65 ROUND 138.00 3.505 0.00 0.000 0 0.00 0.00 D65 0 0.00 0.00 D0 D66 ROUND 157.00 3.988 0.00 0.000 0 0.00 0.00 D66 0 0.00 0.00 D0 D67 ROUND 177.00 4.496 0.00 0.000 0 0.00 0.00 D67 0 0.00 0.00 D0 D68 ROUND 205.00 5.207 0.00 0.000 0 0.00 0.00 D68 0 0.00 0.00 D0 D69 ROUND 221.00 5.613 0.00 0.000 0 0.00 0.00 D69 0 0.00 0.00 D0 D74 SQUARE 35.00 0.889 0.00 0.000 0 0.00 0.00 D74 0 0.00 0.00 D0 D75 SQUARE 39.00 0.991 0.00 0.000 0 0.00 0.00 D75 0 0.00 0.00 D0 D76 SQUARE 43.00 1.092 0.00 0.000 0 0.00 0.00 D76 0 0.00 0.00 D0 D77 SQUARE 47.00 1.194 0.00 0.000 0 0.00 0.00 D77 0 0.00 0.00 D0 D78 SQUARE 51.00 1.295 0.00 0.000 0 0.00 0.00 D78 0 0.00 0.00 D0 D79 SQUARE 55.00 1.397 0.00 0.000 0 0.00 0.00 D79 0 0.00 0.00 D0 D80 SQUARE 59.00 1.499 0.00 0.000 0 0.00 0.00 D80 0 0.00 0.00 D0 D81 SQUARE 63.00 1.600 0.00 0.000 0 0.00 0.00 D81 0 0.00 0.00 D0 D82 SQUARE 67.00 1.702 0.00 0.000 0 0.00 0.00 D82 0 0.00 0.00 D0 D83 SQUARE 71.00 1.803 0.00 0.000 0 0.00 0.00 D83 0 0.00 0.00 D0 D84 SQUARE 75.00 1.905 0.00 0.000 0 0.00 0.00 D84 0 0.00 0.00 D0 D85 SQUARE 79.00 2.007 0.00 0.000 0 0.00 0.00 D85 0 0.00 0.00 D0 D86 SQUARE 83.00 2.108 0.00 0.000 0 0.00 0.00 D86 0 0.00 0.00 D0 D87 SQUARE 87.00 2.210 0.00 0.000 0 0.00 0.00 D87 0 0.00 0.00 D0 D88 SQUARE 98.00 2.489 0.00 0.000 0 0.00 0.00 D88 0 0.00 0.00 D0 D89 SQUARE 102.00 2.591 0.00 0.000 0 0.00 0.00 D89 0 0.00 0.00 D0 D90 SQUARE 110.00 2.794 0.00 0.000 0 0.00 0.00 D90 0 0.00 0.00 D0 D91 SQUARE 118.00 2.997 0.00 0.000 0 0.00 0.00 D91 0 0.00 0.00 D0 D92 SQUARE 138.00 3.505 0.00 0.000 0 0.00 0.00 D92 0 0.00 0.00 D0 D93 SQUARE 157.00 3.988 0.00 0.000 0 0.00 0.00 D93 0 0.00 0.00 D0 D94 SQUARE 177.00 4.496 0.00 0.000 0 0.00 0.00 D94 0 0.00 0.00 D0 D95 SQUARE 205.00 5.207 0.00 0.000 0 0.00 0.00 D95 0 0.00 0.00 D0 D96 SQUARE 221.00 5.613 0.00 0.000 0 0.00 0.00 D96 0 0.00 0.00 D0 D97 SQUARE 256.00 6.502 0.00 0.000 0 0.00 0.00 D97 0 0.00 0.00 D0 D98 SQUARE 315.00 8.001 0.00 0.000 0 0.00 0.00 D98 0 0.00 0.00 D0 D99 SQUARE 394.00 10.008 0.00 0.000 0 0.00 0.00 D99 0 0.00 0.00 D0 D100 SQUARE 18.00 0.457 0.00 0.000 0 0.00 0.00 D100 0 0.00 0.00 D0 D101 SQUARE 20.00 0.508 0.00 0.000 0 0.00 0.00 D101 0 0.00 0.00 D0 D110 ROUND 5.00 0.127 0.00 0.000 0 0.00 0.00 D110 0 0.00 0.00 D0 D120 ROUND 22.00 0.559 0.00 0.000 0 0.00 0.00 D120 0 0.00 0.00 D0 D125 SQUARE 326.00 8.280 0.00 0.000 0 0.00 0.00 D125 0 0.00 0.00 D0 D126 SQUARE 362.00 9.195 0.00 0.000 0 0.00 0.00 D126 0 0.00 0.00 D0 D135 ROUND 95.00 2.413 0.00 0.000 0 0.00 0.00 D135 0 0.00 0.00 D0 D148 ROUND 40.00 1.016 0.00 0.000 0 0.00 0.00 D148 0 0.00 0.00 D0 D166 ROUND 154.00 3.912 0.00 0.000 0 0.00 0.00 D166 0 0.00 0.00 D0 D167 ROUND 173.00 4.394 0.00 0.000 0 0.00 0.00 D167 0 0.00 0.00 D0 D168 ROUND 221.00 5.613 0.00 0.000 0 0.00 0.00 D168 0 0.00 0.00 D0 D169 ROUND 237.00 6.020 0.00 0.000 0 0.00 0.00 D169 0 0.00 0.00 D0 D188 SQUARE 95.00 2.413 0.00 0.000 0 0.00 0.00 D188 0 0.00 0.00 D0 D193 SQUARE 154.00 3.912 0.00 0.000 0 0.00 0.00 D193 0 0.00 0.00 D0 D195 SQUARE 221.00 5.613 0.00 0.000 0 0.00 0.00 D195 0 0.00 0.00 D0 D196 SQUARE 237.00 6.020 0.00 0.000 0 0.00 0.00 D196 0 0.00 0.00 D0 D266 ROUND 158.00 4.013 0.00 0.000 0 0.00 0.00 D266 0 0.00 0.00 D0 D293 SQUARE 158.00 4.013 0.00 0.000 0 0.00 0.00 D293 0 0.00 0.00 D0 D300 ROUND 19.00 0.483 0.00 0.000 0 0.00 0.00 D300 0 0.00 0.00 D0 D301 ROUND 19.00 0.483 0.00 0.000 0 0.00 0.00 D301 0 0.00 0.00 D0 D302 SQUARE 19.00 0.483 0.00 0.000 0 0.00 0.00 D302 0 0.00 0.00 D0 D303 ROUND 22.00 0.559 0.00 0.000 0 0.00 0.00 D303 0 0.00 0.00 D0 D304 ROUND 22.00 0.559 0.00 0.000 0 0.00 0.00 D304 0 0.00 0.00 D0 D305 SQUARE 22.00 0.559 0.00 0.000 0 0.00 0.00 D305 0 0.00 0.00 D0 D306 ROUND 32.00 0.813 0.00 0.000 0 0.00 0.00 D306 0 0.00 0.00 D0 D307 ROUND 32.00 0.813 0.00 0.000 0 0.00 0.00 D307 0 0.00 0.00 D0 D308 SQUARE 32.00 0.813 0.00 0.000 0 0.00 0.00 D308 0 0.00 0.00 D0 D309 ROUND 41.00 1.041 0.00 0.000 0 0.00 0.00 D309 0 0.00 0.00 D0 D310 ROUND 41.00 1.041 0.00 0.000 0 0.00 0.00 D310 0 0.00 0.00 D0 D311 SQUARE 41.00 1.041 0.00 0.000 0 0.00 0.00 D311 0 0.00 0.00 D0 D312 ROUND 44.00 1.118 0.00 0.000 0 0.00 0.00 D312 0 0.00 0.00 D0 D313 ROUND 44.00 1.118 0.00 0.000 0 0.00 0.00 D313 0 0.00 0.00 D0 D314 SQUARE 44.00 1.118 0.00 0.000 0 0.00 0.00 D314 0 0.00 0.00 D0 D315 ROUND 45.00 1.143 0.00 0.000 0 0.00 0.00 D315 0 0.00 0.00 D0 D316 ROUND 45.00 1.143 0.00 0.000 0 0.00 0.00 D316 0 0.00 0.00 D0 D317 SQUARE 45.00 1.143 0.00 0.000 0 0.00 0.00 D317 0 0.00 0.00 D0 D318 ROUND 90.00 2.286 0.00 0.000 0 0.00 0.00 D318 0 0.00 0.00 D0 D319 ROUND 90.00 2.286 0.00 0.000 0 0.00 0.00 D319 0 0.00 0.00 D0 D320 SQUARE 90.00 2.286 0.00 0.000 0 0.00 0.00 D320 0 0.00 0.00 D0 D321 ROUND 94.00 2.388 0.00 0.000 0 0.00 0.00 D321 0 0.00 0.00 D0 D322 ROUND 94.00 2.388 0.00 0.000 0 0.00 0.00 D322 0 0.00 0.00 D0 D323 SQUARE 94.00 2.388 0.00 0.000 0 0.00 0.00 D323 0 0.00 0.00 D0 D324 ROUND 114.00 2.896 0.00 0.000 0 0.00 0.00 D324 0 0.00 0.00 D0 D325 ROUND 114.00 2.896 0.00 0.000 0 0.00 0.00 D325 0 0.00 0.00 D0 D326 SQUARE 114.00 2.896 0.00 0.000 0 0.00 0.00 D326 0 0.00 0.00 D0 D327 ROUND 122.00 3.099 0.00 0.000 0 0.00 0.00 D327 0 0.00 0.00 D0 D328 ROUND 122.00 3.099 0.00 0.000 0 0.00 0.00 D328 0 0.00 0.00 D0 D329 SQUARE 122.00 3.099 0.00 0.000 0 0.00 0.00 D329 0 0.00 0.00 D0 D330 ROUND 126.00 3.200 0.00 0.000 0 0.00 0.00 D330 0 0.00 0.00 D0 D331 ROUND 126.00 3.200 0.00 0.000 0 0.00 0.00 D331 0 0.00 0.00 D0 D332 SQUARE 126.00 3.200 0.00 0.000 0 0.00 0.00 D332 0 0.00 0.00 D0 D333 ROUND 130.00 3.302 0.00 0.000 0 0.00 0.00 D333 0 0.00 0.00 D0 D334 ROUND 130.00 3.302 0.00 0.000 0 0.00 0.00 D334 0 0.00 0.00 D0 D335 SQUARE 130.00 3.302 0.00 0.000 0 0.00 0.00 D335 0 0.00 0.00 D0 D336 ROUND 142.00 3.607 0.00 0.000 0 0.00 0.00 D336 0 0.00 0.00 D0 D337 ROUND 142.00 3.607 0.00 0.000 0 0.00 0.00 D337 0 0.00 0.00 D0 D338 SQUARE 142.00 3.607 0.00 0.000 0 0.00 0.00 D338 0 0.00 0.00 D0 D339 ROUND 161.00 4.089 0.00 0.000 0 0.00 0.00 D339 0 0.00 0.00 D0 D340 ROUND 161.00 4.089 0.00 0.000 0 0.00 0.00 D340 0 0.00 0.00 D0 D341 SQUARE 161.00 4.089 0.00 0.000 0 0.00 0.00 D341 0 0.00 0.00 D0 D342 ROUND 181.00 4.597 0.00 0.000 0 0.00 0.00 D342 0 0.00 0.00 D0 D343 ROUND 181.00 4.597 0.00 0.000 0 0.00 0.00 D343 0 0.00 0.00 D0 D344 SQUARE 181.00 4.597 0.00 0.000 0 0.00 0.00 D344 0 0.00 0.00 D0 D345 ROUND 209.00 5.309 0.00 0.000 0 0.00 0.00 D345 0 0.00 0.00 D0 D346 ROUND 209.00 5.309 0.00 0.000 0 0.00 0.00 D346 0 0.00 0.00 D0 D347 SQUARE 209.00 5.309 0.00 0.000 0 0.00 0.00 D347 0 0.00 0.00 D0 D348 ROUND 225.00 5.715 0.00 0.000 0 0.00 0.00 D348 0 0.00 0.00 D0 D349 ROUND 225.00 5.715 0.00 0.000 0 0.00 0.00 D349 0 0.00 0.00 D0 D350 SQUARE 225.00 5.715 0.00 0.000 0 0.00 0.00 D350 0 0.00 0.00 D0 D351 ROUND 241.00 6.121 0.00 0.000 0 0.00 0.00 D351 0 0.00 0.00 D0 D352 ROUND 241.00 6.121 0.00 0.000 0 0.00 0.00 D352 0 0.00 0.00 D0 D353 SQUARE 241.00 6.121 0.00 0.000 0 0.00 0.00 D353 0 0.00 0.00 D0 D354 ROUND 260.00 6.604 0.00 0.000 0 0.00 0.00 D354 0 0.00 0.00 D0 D355 ROUND 260.00 6.604 0.00 0.000 0 0.00 0.00 D355 0 0.00 0.00 D0 D356 SQUARE 260.00 6.604 0.00 0.000 0 0.00 0.00 D356 0 0.00 0.00 D0 D357 ROUND 350.00 8.890 0.00 0.000 0 0.00 0.00 D357 0 0.00 0.00 D0 D358 ROUND 350.00 8.890 0.00 0.000 0 0.00 0.00 D358 0 0.00 0.00 D0 D359 SQUARE 350.00 8.890 0.00 0.000 0 0.00 0.00 D359 0 0.00 0.00 D0 D360 ROUND 354.00 8.992 0.00 0.000 0 0.00 0.00 D360 0 0.00 0.00 D0 D361 ROUND 354.00 8.992 0.00 0.000 0 0.00 0.00 D361 0 0.00 0.00 D0 D362 SQUARE 354.00 8.992 0.00 0.000 0 0.00 0.00 D362 0 0.00 0.00 D0 D363 ROUND 12.00 0.305 0.00 0.000 0 0.00 0.00 D363 0 0.00 0.00 D0 D364 ROUND 12.00 0.305 0.00 0.000 0 0.00 0.00 D364 0 0.00 0.00 D0 D365 SQUARE 12.00 0.305 0.00 0.000 0 0.00 0.00 D365 0 0.00 0.00 D0 D366 ROUND 14.00 0.356 0.00 0.000 0 0.00 0.00 D366 0 0.00 0.00 D0 D367 ROUND 14.00 0.356 0.00 0.000 0 0.00 0.00 D367 0 0.00 0.00 D0 D368 SQUARE 14.00 0.356 0.00 0.000 0 0.00 0.00 D368 0 0.00 0.00 D0 D369 ROUND 16.00 0.406 0.00 0.000 0 0.00 0.00 D369 0 0.00 0.00 D0 D370 ROUND 16.00 0.406 0.00 0.000 0 0.00 0.00 D370 0 0.00 0.00 D0 D371 SQUARE 16.00 0.406 0.00 0.000 0 0.00 0.00 D371 0 0.00 0.00 D0 D372 ROUND 26.00 0.660 0.00 0.000 0 0.00 0.00 D372 0 0.00 0.00 D0 D373 ROUND 26.00 0.660 0.00 0.000 0 0.00 0.00 D373 0 0.00 0.00 D0 D374 SQUARE 26.00 0.660 0.00 0.000 0 0.00 0.00 D374 0 0.00 0.00 D0 D375 ROUND 215.00 5.461 0.00 0.000 0 0.00 0.00 D375 0 0.00 0.00 D0 D376 ROUND 215.00 5.461 0.00 0.000 0 0.00 0.00 D376 0 0.00 0.00 D0 D377 SQUARE 215.00 5.461 0.00 0.000 0 0.00 0.00 D377 0 0.00 0.00 D0 D378 ROUND 219.00 5.563 0.00 0.000 0 0.00 0.00 D378 0 0.00 0.00 D0 D379 ROUND 219.00 5.563 0.00 0.000 0 0.00 0.00 D379 0 0.00 0.00 D0 D380 SQUARE 219.00 5.563 0.00 0.000 0 0.00 0.00 D380 0 0.00 0.00 D0 D381 ROUND 36.00 0.914 0.00 0.000 0 0.00 0.00 D381 0 0.00 0.00 D0 D382 ROUND 36.00 0.914 0.00 0.000 0 0.00 0.00 D382 0 0.00 0.00 D0 D383 SQUARE 36.00 0.914 0.00 0.000 0 0.00 0.00 D383 0 0.00 0.00 D0 D384 ROUND 9.00 0.229 0.00 0.000 0 0.00 0.00 D384 0 0.00 0.00 D0 D385 ROUND 9.00 0.229 0.00 0.000 0 0.00 0.00 D385 0 0.00 0.00 D0 D386 SQUARE 9.00 0.229 0.00 0.000 0 0.00 0.00 D386 0 0.00 0.00 D0 D387 ROUND 40.00 1.016 0.00 0.000 0 0.00 0.00 D387 0 0.00 0.00 D0 D388 ROUND 40.00 1.016 0.00 0.000 0 0.00 0.00 D388 0 0.00 0.00 D0 D389 SQUARE 40.00 1.016 0.00 0.000 0 0.00 0.00 D389 0 0.00 0.00 D0 D500 ROUND 8.00 0.203 0.00 0.000 0 0.00 0.00 D500 0 0.00 0.00 D0 gerbv-2.7.0/example/ekf/README0000644000175000017500000000046713421555713015602 0ustar carstencarstenThe files in this directory is kindly contributed by Joachim Jansen as an example of RS274D with an separate aperture file. Please note that these files should NOT work with gerbv since they are RS274D and not RS274X. l1.off : The Gerber file ekf.gap : D-code table maintained by CAM350 $Id$ gerbv-2.7.0/example/ekf/ekf_08.apt0000644000175000017500000006267513421555713016515 0ustar carstencarsten**************************************************************************** * File-History * **************************************************************************** * Ed. 0, vl 1998-05-12: Blendenteller aus visu_inf.txt extrahiert * * Ed. 1, vl 1999-08-26: Neue Blenden, Nummer 97, 98 und 99 * * vl 1999-08-30: Typfehler entfernt, 10.0mm quadr. ---> Blende 99 * * Ed. 2, vl 1999-10-07: Neue Blende Nummer 110 * * Ed. 3, vl 2000-01-12: Neue Blenden Nummer 300...362 * * Ed. 4, vl 2000-01-25: Neue Blenden Nummer 100...101 und 363...374 * * Ed. 5, vl 2000-05-26: Neue Blenden Nummer 375...380 * * Ed. 6, gn 2000-06-28: Neue Blenden Nummer 381...383 * * Ed. 7, vl 2000-11-30: Neue Blenden Nummer 384...386 * * Ed. 8, vl 2000-12-07: Neue Blenden Nummer 387...389 * **************************************************************************** * Textpaket: #2147 * **************************************************************************** ******************************** Beginn Linien (auch zum Fuellen) ******************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 10 4 0 round 0 1 BOTH DRAW EIE 0.1mm Linie 11 6 0 round 0 1 BOTH DRAW EIE 0.15mm Linie 12 8 0 round 0 1 BOTH DRAW EIE 0.2mm Linie 12 8 0 round 0 1 BOTH FILL_DRAW EIE 0.2mm Fuellung 13 10 0 round 0 1 BOTH DRAW EIE 0.25mm Linie 14 12 0 round 0 1 BOTH DRAW EIE 0.3mm Linie 14 12 0 round 0 1 BOTH FILL_DRAW EIE 0.3mm Fuellung 15 14 0 round 0 1 BOTH DRAW EIE 0.35mm Linie 16 16 0 round 0 1 BOTH DRAW EIE 0.4mm Linie 16 16 0 round 0 1 BOTH FILL_DRAW EIE 0.4mm Fuellung 17 18 0 round 0 1 BOTH DRAW EIE 0.45mm Linie 18 20 0 round 0 1 BOTH DRAW EIE 0.5mm Linie 19 24 0 round 0 1 BOTH DRAW EIE 0.6mm Linie 19 24 0 round 0 1 BOTH FILL_DRAW EIE 0.6mm Fuellung 20 28 0 round 0 1 BOTH DRAW EIE 0.7mm Linie 21 31 0 round 0 1 BOTH DRAW EIE 0.8mm Linie 22 35 0 round 0 1 BOTH DRAW EIE 0.9mm Linie 23 39 0 round 0 1 BOTH DRAW EIE 1.0mm Linie 23 39 0 round 0 1 BOTH FILL_DRAW EIE 1.0mm Fuellung 24 47 0 round 0 1 BOTH DRAW EIE 1.2mm Linie 25 51 0 round 0 1 BOTH DRAW EIE 1.3mm Linie 26 55 0 round 0 1 BOTH DRAW EIE 1.4mm Linie 26 55 0 round 0 1 BOTH FILL_DRAW EIE 1.4mm Fuellung 27 59 0 round 0 1 BOTH DRAW EIE 1.5mm Linie 28 63 0 round 0 1 BOTH DRAW EIE 1.6mm Linie 29 67 0 round 0 1 BOTH DRAW EIE 1.7mm Linie 30 71 0 round 0 1 BOTH DRAW EIE 1.8mm Linie 31 75 0 round 0 1 BOTH DRAW EIE 1.9mm Linie 32 79 0 round 0 1 BOTH DRAW EIE 2.0mm Linie 33 83 0 round 0 1 BOTH DRAW EIE 2.1mm Linie 34 87 0 round 0 1 BOTH DRAW EIE 2.2mm Linie 35 98 0 round 0 1 BOTH DRAW EIE 2.5mm Linie 35 98 0 round 0 1 BOTH FILL_DRAW EIE 2.5mm Fuellung 36 118 0 round 0 1 BOTH DRAW EIE 3.0mm Linie 37 138 0 round 0 1 BOTH DRAW EIE 3.5mm Linie 38 157 0 round 0 1 BOTH DRAW EIE 4.0mm Linie 39 177 0 round 0 1 BOTH DRAW EIE 4.5mm Linie 40 205 0 round 0 1 BOTH DRAW EIE 5.2mm Linie ******************************** Sonder fuer Schriften ******************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 41 15 0 round 0 1 BOTH DRAW 0.38mm Linie (16/16) ******************************** Beginn geblitzte Kreise ******************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 42 18 0 round 0 1 BOTH FLASH EIE 0.45mm Pad rund geblitzt 43 20 0 round 0 1 BOTH FLASH EIE 0.5mm Pad rund geblitzt 44 24 0 round 0 1 BOTH FLASH EIE 0.6mm Pad rund geblitzt 45 28 0 round 0 1 BOTH FLASH EIE 0.7mm Pad rund geblitzt 46 31 0 round 0 1 BOTH FLASH EIE 0.8mm Pad rund geblitzt 47 35 0 round 0 1 BOTH FLASH EIE 0.9mm Pad rund geblitzt 48 39 0 round 0 1 BOTH FLASH EIE 1.0mm Pad rund geblitzt 49 43 0 round 0 1 BOTH FLASH EIE 1.1mm Pad rund geblitzt 50 47 0 round 0 1 BOTH FLASH EIE 1.2mm Pad rund geblitzt 51 51 0 round 0 1 BOTH FLASH EIE 1.3mm Pad rund geblitzt 52 55 0 round 0 1 BOTH FLASH EIE 1.4mm Pad rund geblitzt 53 59 0 round 0 1 BOTH FLASH EIE 1.5mm Pad rund geblitzt 54 63 0 round 0 1 BOTH FLASH EIE 1.6mm Pad rund geblitzt 55 67 0 round 0 1 BOTH FLASH EIE 1.7mm Pad rund geblitzt 56 71 0 round 0 1 BOTH FLASH EIE 1.8mm Pad rund geblitzt 57 75 0 round 0 1 BOTH FLASH EIE 1.9mm Pad rund geblitzt 58 79 0 round 0 1 BOTH FLASH EIE 2.0mm Pad rund geblitzt 59 83 0 round 0 1 BOTH FLASH EIE 2.1mm Pad rund geblitzt 60 87 0 round 0 1 BOTH FLASH EIE 2.2mm Pad rund geblitzt 61 98 0 round 0 1 BOTH FLASH EIE 2.5mm Pad rund geblitzt 62 102 0 round 0 1 BOTH FLASH EIE 2.6mm Pad rund geblitzt 63 110 0 round 0 1 BOTH FLASH EIE 2.8mm Pad rund geblitzt 64 118 0 round 0 1 BOTH FLASH EIE 3.0mm Pad rund geblitzt 65 138 0 round 0 1 BOTH FLASH EIE 3.5mm Pad rund geblitzt 66 157 0 round 0 1 BOTH FLASH EIE 4.0mm Pad rund geblitzt 67 177 0 round 0 1 BOTH FLASH EIE 4.5mm Pad rund geblitzt 68 205 0 round 0 1 BOTH FLASH EIE 5.2mm Pad rund geblitzt (5.18) 69 221 0 round 0 1 BOTH FLASH EIE 5.61mm Pad rund geblitzt 70 4 0 round 0 1 BOTH DRAW EIE 0.1mm Linie ******************************** Beginn geblitzte Quadrate ******************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 71 24 0 square 0 90 BOTH FLASH EIE 0.6mm Pad quadratisch geblitzt 72 28 0 square 0 90 BOTH FLASH EIE 0.7mm Pad quadratisch geblitzt 73 31 0 square 0 90 BOTH FLASH EIE 0.8mm Pad quadratisch geblitzt 74 35 0 square 0 90 BOTH FLASH EIE 0.9mm Pad quadratisch geblitzt 75 39 0 square 0 90 BOTH FLASH EIE 1.0mm Pad quadratisch geblitzt 76 43 0 square 0 90 BOTH FLASH EIE 1.1mm Pad quadratisch geblitzt 77 47 0 square 0 90 BOTH FLASH EIE 1.2mm Pad quadratisch geblitzt 78 51 0 square 0 90 BOTH FLASH EIE 1.3mm Pad quadratisch geblitzt 79 55 0 square 0 90 BOTH FLASH EIE 1.4mm Pad quadratisch geblitzt 80 59 0 square 0 90 BOTH FLASH EIE 1.5mm Pad quadratisch geblitzt 81 63 0 square 0 90 BOTH FLASH EIE 1.6mm Pad quadratisch geblitzt 82 67 0 square 0 90 BOTH FLASH EIE 1.7mm Pad quadratisch geblitzt 83 71 0 square 0 90 BOTH FLASH EIE 1.8mm Pad quadratisch geblitzt 84 75 0 square 0 90 BOTH FLASH EIE 1.9mm Pad quadratisch geblitzt 85 79 0 square 0 90 BOTH FLASH EIE 2.0mm Pad quadratisch geblitzt 86 83 0 square 0 90 BOTH FLASH EIE 2.1mm Pad quadratisch geblitzt 87 87 0 square 0 90 BOTH FLASH EIE 2.2mm Pad quadratisch geblitzt 88 98 0 square 0 90 BOTH FLASH EIE 2.5mm Pad quadratisch geblitzt 89 102 0 square 0 90 BOTH FLASH EIE 2.6mm Pad quadratisch geblitzt 90 110 0 square 0 90 BOTH FLASH EIE 2.8mm Pad quadratisch geblitzt 91 118 0 square 0 90 BOTH FLASH EIE 3.0mm Pad quadratisch geblitzt 92 138 0 square 0 90 BOTH FLASH EIE 3.5mm Pad quadratisch geblitzt 93 157 0 square 0 90 BOTH FLASH EIE 4.0mm Pad quadratisch geblitzt 94 177 0 square 0 90 BOTH FLASH EIE 4.5mm Pad quadratisch geblitzt 95 205 0 square 0 90 BOTH FLASH EIE 5.2mm Pad quadratisch geblitzt 96 221 0 square 0 90 BOTH FLASH EIE 5.61mm Pad quadratisch geblitzt 97 256 0 square 0 90 BOTH FLASH EIE 6.5mm Pad quadratisch geblitzt 98 315 0 square 0 90 BOTH FLASH EIE 8.0mm Pad quadratisch geblitzt 99 394 0 square 0 90 BOTH FLASH EIE 10.0mm Pad quadratisch geblitzt 100 18 0 square 0 90 BOTH FLASH EIE 0.46mm Pad quadratisch geblitzt 101 20 0 square 0 90 BOTH FLASH EIE 0.51mm Pad quadratisch geblitzt ******************************** Weiter Linien (auch zum Fuellen) ******************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 110 5 0 round 0 1 BOTH DRAW EIE 0.12mm Linie 120 22 0 round 0 1 BOTH DRAW EIE 0.55mm Linie 125 326 0 square 0 1 BOTH DRAW EIE 8.3mm Linie 126 362 0 square 0 1 BOTH DRAW EIE 9.2mm Linie *************************************************** Neue Blenden: Linien, geblitzte Kreise und Quadrate *************************************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 300 19 0 round 0 1 BOTH DRAW EIE 0.48mm Linie 301 19 0 round 0 1 BOTH FLASH EIE 0.48mm Pad rund geblitzt 302 19 0 square 0 90 BOTH FLASH EIE 0.48mm Pad quadratisch geblitzt 303 22 0 round 0 1 BOTH DRAW EIE 0.56mm Linie 304 22 0 round 0 1 BOTH FLASH EIE 0.56mm Pad rund geblitzt 305 22 0 square 0 90 BOTH FLASH EIE 0.56mm Pad quadratisch geblitzt 306 32 0 round 0 1 BOTH DRAW EIE 0.81mm Linie 307 32 0 round 0 1 BOTH FLASH EIE 0.81mm Pad rund geblitzt 308 32 0 square 0 90 BOTH FLASH EIE 0.81mm Pad quadratisch geblitzt 309 41 0 round 0 1 BOTH DRAW EIE 1.04mm Linie 310 41 0 round 0 1 BOTH FLASH EIE 1.04mm Pad rund geblitzt 311 41 0 square 0 90 BOTH FLASH EIE 1.04mm Pad quadratisch geblitzt 312 44 0 round 0 1 BOTH DRAW EIE 1.12mm Linie 313 44 0 round 0 1 BOTH FLASH EIE 1.12mm Pad rund geblitzt 314 44 0 square 0 90 BOTH FLASH EIE 1.12mm Pad quadratisch geblitzt 315 45 0 round 0 1 BOTH DRAW EIE 1.14mm Linie 316 45 0 round 0 1 BOTH FLASH EIE 1.14mm Pad rund geblitzt 317 45 0 square 0 90 BOTH FLASH EIE 1.14mm Pad quadratisch geblitzt 318 90 0 round 0 1 BOTH DRAW EIE 2.29mm Linie 319 90 0 round 0 1 BOTH FLASH EIE 2.29mm Pad rund geblitzt 320 90 0 square 0 90 BOTH FLASH EIE 2.29mm Pad quadratisch geblitzt 321 94 0 round 0 1 BOTH DRAW EIE 2.39mm Linie 322 94 0 round 0 1 BOTH FLASH EIE 2.39mm Pad rund geblitzt 323 94 0 square 0 90 BOTH FLASH EIE 2.39mm Pad quadratisch geblitzt 324 114 0 round 0 1 BOTH DRAW EIE 2.9mm Linie 325 114 0 round 0 1 BOTH FLASH EIE 2.9mm Pad rund geblitzt 326 114 0 square 0 90 BOTH FLASH EIE 2.9mm Pad quadratisch geblitzt 327 122 0 round 0 1 BOTH DRAW EIE 3.1mm Linie 328 122 0 round 0 1 BOTH FLASH EIE 3.1mm Pad rund geblitzt 329 122 0 square 0 90 BOTH FLASH EIE 3.1mm Pad quadratisch geblitzt 330 126 0 round 0 1 BOTH DRAW EIE 3.2mm Linie 331 126 0 round 0 1 BOTH FLASH EIE 3.2mm Pad rund geblitzt 332 126 0 square 0 90 BOTH FLASH EIE 3.2mm Pad quadratisch geblitzt 333 130 0 round 0 1 BOTH DRAW EIE 3.3mm Linie 334 130 0 round 0 1 BOTH FLASH EIE 3.3mm Pad rund geblitzt 335 130 0 square 0 90 BOTH FLASH EIE 3.3mm Pad quadratisch geblitzt 336 142 0 round 0 1 BOTH DRAW EIE 3.61mm Linie 337 142 0 round 0 1 BOTH FLASH EIE 3.61mm Pad rund geblitzt 338 142 0 square 0 90 BOTH FLASH EIE 3.61mm Pad quadratisch geblitzt 339 161 0 round 0 1 BOTH DRAW EIE 4.09mm Linie 340 161 0 round 0 1 BOTH FLASH EIE 4.09mm Pad rund geblitzt 341 161 0 square 0 90 BOTH FLASH EIE 4.09mm Pad quadratisch geblitzt 342 181 0 round 0 1 BOTH DRAW EIE 4.6mm Linie 343 181 0 round 0 1 BOTH FLASH EIE 4.6mm Pad rund geblitzt 344 181 0 square 0 90 BOTH FLASH EIE 4.6mm Pad quadratisch geblitzt 345 209 0 round 0 1 BOTH DRAW EIE 5.31mm Linie 346 209 0 round 0 1 BOTH FLASH EIE 5.31mm Pad rund geblitzt 347 209 0 square 0 90 BOTH FLASH EIE 5.31mm Pad quadratisch geblitzt 348 225 0 round 0 1 BOTH DRAW EIE 5.72mm Linie 349 225 0 round 0 1 BOTH FLASH EIE 5.72mm Pad rund geblitzt 350 225 0 square 0 90 BOTH FLASH EIE 5.72mm Pad quadratisch geblitzt 351 241 0 round 0 1 BOTH DRAW EIE 6.12mm Linie 352 241 0 round 0 1 BOTH FLASH EIE 6.12mm Pad rund geblitzt 353 241 0 square 0 90 BOTH FLASH EIE 6.12mm Pad quadratisch geblitzt 354 260 0 round 0 1 BOTH DRAW EIE 6.6mm Linie 355 260 0 round 0 1 BOTH FLASH EIE 6.6mm Pad rund geblitzt 356 260 0 square 0 90 BOTH FLASH EIE 6.6mm Pad quadratisch geblitzt 357 350 0 round 0 1 BOTH DRAW EIE 8.89mm Linie 358 350 0 round 0 1 BOTH FLASH EIE 8.89mm Pad rund geblitzt 359 350 0 square 0 90 BOTH FLASH EIE 8.89mm Pad quadratisch geblitzt 360 354 0 round 0 1 BOTH DRAW EIE 8.99mm Linie 361 354 0 round 0 1 BOTH FLASH EIE 8.99mm Pad rund geblitzt 362 354 0 square 0 90 BOTH FLASH EIE 8.99mm Pad quadratisch geblitzt 363 12 0 round 0 1 BOTH DRAW EIE 0.30mm Linie 364 12 0 round 0 1 BOTH FLASH EIE 0.30mm Pad rund geblitzt 365 12 0 square 0 90 BOTH FLASH EIE 0.30mm Pad quadratisch geblitzt 366 14 0 round 0 1 BOTH DRAW EIE 0.36mm Linie 367 14 0 round 0 1 BOTH FLASH EIE 0.36mm Pad rund geblitzt 368 14 0 square 0 90 BOTH FLASH EIE 0.36mm Pad quadratisch geblitzt 369 16 0 round 0 1 BOTH DRAW EIE 0.41mm Linie 370 16 0 round 0 1 BOTH FLASH EIE 0.41mm Pad rund geblitzt 371 16 0 square 0 90 BOTH FLASH EIE 0.41mm Pad quadratisch geblitzt 372 26 0 round 0 1 BOTH DRAW EIE 0.66mm Linie 373 26 0 round 0 1 BOTH FLASH EIE 0.66mm Pad rund geblitzt 374 26 0 square 0 90 BOTH FLASH EIE 0.66mm Pad quadratisch geblitzt 375 215 0 round 0 1 BOTH DRAW EIE 5.45mm Linie 376 215 0 round 0 1 BOTH FLASH EIE 5.45mm Pad rund geblitzt 377 215 0 square 0 90 BOTH FLASH EIE 5.45mm Pad quadratisch geblitzt 378 219 0 round 0 1 BOTH DRAW EIE 5.56mm Linie 379 219 0 round 0 1 BOTH FLASH EIE 5.56mm Pad rund geblitzt 380 219 0 square 0 90 BOTH FLASH EIE 5.56mm Pad quadratisch geblitzt 381 36 0 round 0 1 BOTH DRAW EIE 0.91mm Linie 382 36 0 round 0 1 BOTH FLASH EIE 0.91mm Pad rund geblitzt 383 36 0 square 0 90 BOTH FLASH EIE 0.91mm Pad quadratisch geblitzt 384 9 0 round 0 1 BOTH DRAW EIE 0.23mm Linie 385 9 0 round 0 1 BOTH FLASH EIE 0.23mm Pad rund geblitzt 386 9 0 square 0 90 BOTH FLASH EIE 0.23mm Pad quadratisch geblitzt 387 40 0 round 0 1 BOTH DRAW EIE 1.02mm Linie 388 40 0 round 0 1 BOTH FLASH EIE 1.02mm Pad rund geblitzt 389 40 0 square 0 90 BOTH FLASH EIE 1.02mm Pad quadratisch geblitzt ***************************************************** Beginn Pseudo-Blenden fuer Augenvergroesserung Planes ***************************************************** Number Size Auxilliary Shape Start Angle Mirror Usage Comment size angle step 135 95 0 round 0 1 BOTH FLASH EIE 2.41mm Pad rund geblitzt 148 40 0 round 0 1 BOTH FLASH EIE 1.02mm Pad rund geblitzt (48/39) 135 95 0 round 0 1 BOTH FLASH EIE 2.41mm Pad rund geblitzt 166 154 0 round 0 1 BOTH FLASH EIE 3.91mm Pad rund geblitzt (66/157) 167 173 0 round 0 1 BOTH FLASH EIE 4.39mm Pad rund geblitzt (67/177) 168 221 0 round 0 1 BOTH FLASH EIE 5.61mm Pad rund geblitzt 169 237 0 round 0 1 BOTH FLASH EIE 6.02mm Pad rund geblitzt 188 95 0 square 0 90 BOTH FLASH EIE 2.41mm Pad quadratisch geblitzt (93/157) 193 154 0 square 0 90 BOTH FLASH EIE 3.91mm Pad quadratisch geblitzt (93/157) 195 221 0 square 0 90 BOTH FLASH EIE 5.61mm Pad quadratisch geblitzt 196 237 0 square 0 90 BOTH FLASH EIE 6.02mm Pad quadratisch geblitzt 266 158 0 round 0 1 BOTH FLASH EIE 4.01mm Pad rund geblitzt (66/157) 293 158 0 square 0 90 BOTH FLASH EIE 4.01mm Pad quadratisch geblitzt (93/157) 500 8 0 round 0 1 BOTH FLASH EIE 0.2mm Pad rund geblitzt ************************************************************************************************* D-Code 41 wird fuer verschiedene Schriften genutzt. Alternativ D-Code 15 oder 16 zulaessig. D-Code 70 wird fuer Begrenzungslinien verwendet - der Leiterplattenhersteller darf diese Elemente nicht plotten - nur verfahren. D-Codes >=100 sind redundante Blenden, die beim Visula-Postprozessing durch Augenvergroesserung um 16 thou entstehen. Diese koennen wahlweise mit der angegebenen Size oder den ersatzweise genannten D-Codes gefahren werden. ************************************************************************************************* gerbv-2.7.0/example/ekf/l1.off0000644000175000017500000075555313421555713015747 0ustar carstencarstenD012* X1776Y1024D02* X1524D01* Y4906D01* X1530Y4905D02* Y1025D01* X1509Y894D02* X1500Y886D01* X1509Y877D01* X1500Y859D02* X1509Y850D01* X1536D01* X1702Y1025D02* Y1385D01* X1698D02* Y1025D01* X1829Y850D02* X1793D01* X1740Y921D02* X1731D01* X1602Y1025D02* Y1771D01* X1606Y1767D02* Y1025D01* X1687Y877D02* X1651D01* Y894D02* X1678D01* X1586Y1025D02* Y1787D01* X1590Y1783D02* Y1025D01* X1651Y877D02* X1642Y868D01* Y859D02* Y868D01* X1594Y1025D02* Y1779D01* X1598Y1775D02* Y1025D01* X1687Y886D02* X1678Y894D01* X1687Y886D02* Y850D01* X1650Y1025D02* Y1385D01* Y1386D02* X1647Y1387D01* X1622Y1411D02* Y1025D01* X1618D02* Y1415D01* X1616Y1420D02* X1617Y1417D01* X1647Y1387D01* X1646D02* Y1025D01* X1651Y850D02* X1687D01* X1651D02* X1642Y859D01* Y1025D02* Y1391D01* X1662Y1385D02* Y1025D01* X1784Y886D02* X1793Y894D01* X1784Y886D02* Y859D01* X1678Y1025D02* Y1385D01* X1682D02* Y1025D01* X1829Y886D02* Y877D01* X1820Y868D02* X1829Y877D01* X1690Y1025D02* Y1385D01* X1686D02* Y1025D01* X1793Y850D02* X1784Y859D01* Y868D02* X1820D01* X1694Y1025D02* Y1385D01* X1666D02* Y1025D01* X1850Y1000D02* X1500D01* Y1350D01* X1634Y1399D02* Y1025D01* X1638D02* Y1395D01* X1776Y1358D02* Y1024D01* X1610Y1025D02* Y1763D01* X1614Y1759D02* Y1025D01* X1740Y921D02* Y850D01* X1731D02* X1749D01* X1670Y1025D02* Y1385D01* X1674D02* Y1025D01* X1820Y894D02* X1829Y886D01* X1820Y894D02* X1793D01* X1658Y1025D02* Y1385D01* X1654D02* Y1025D01* X1571Y859D02* X1580Y850D01* X1607D01* X1616Y859D01* X1509Y894D02* X1536D01* X1544Y886D01* X1574Y1025D02* Y1799D01* X1570Y1803D02* Y1025D01* X1571Y886D02* Y859D01* Y886D02* X1580Y894D01* X1562Y1025D02* Y1811D01* X1566Y1807D02* Y1025D01* X1607Y894D02* X1580D01* X1607D02* X1616Y886D01* X1578Y1025D02* Y1795D01* X1582Y1791D02* Y1025D01* X1544Y868D02* Y859D01* X1536Y850D01* X1544Y868D02* X1536Y877D01* X1509D01* X1706Y1025D02* Y1385D01* X1710D02* Y1025D01* X1980Y894D02* X1936D01* X2336Y921D02* X2282Y850D01* X2291D02* X2327D01* X2336Y859D01* Y912D01* X2327Y921D01* X2291D01* X2282Y912D01* Y859D01* X2291Y850D01* X1936Y877D02* X1980D01* X1714Y1025D02* Y1385D01* X1726D02* Y1025D01* X1770Y1363D02* Y1025D01* X1774D02* Y1359D01* X1722Y1025D02* Y1385D01* X1718D02* Y1025D01* X1776Y1358D02* X1748Y1386D01* X1630Y1403D02* Y1025D01* X1626D02* Y1407D01* X1650Y1386D02* X1748D01* X1746Y1385D02* Y1025D01* X2078Y903D02* X2096Y921D01* X2069Y850D02* X2122D01* X2096D02* Y921D01* X2167Y868D02* X2158Y859D01* X2167Y850D01* X2176Y859D01* X2167Y868D01* X2211Y850D02* X2264Y921D01* X2256D02* X2264Y912D01* Y859D01* X2256Y850D01* X2220D01* X2211Y859D01* Y912D01* X2220Y921D01* X2256D01* X2159Y1224D02* X2081D01* X2106Y1249D02* Y1171D01* X2081Y1196D02* X2159D01* X2134Y1171D02* Y1249D01* X2515Y1888D02* Y2059D01* X2514Y2060D02* X2683D01* Y1887D01* X2519Y1888D02* Y2059D01* X2523Y1888D02* Y2059D01* X2527D02* Y1888D01* X2531Y2059D02* Y1888D01* X2559D02* Y2059D01* X2555Y1888D02* Y2059D01* X2563D02* Y1888D01* X2567Y2059D02* Y1888D01* X2571Y2059D02* Y1888D01* X2595D02* Y2059D01* X2591Y1888D02* Y2059D01* X2599D02* Y1888D01* X2603Y2059D02* Y1888D01* X2607Y2059D02* Y1888D01* X2671D02* Y2059D01* X2667Y1888D02* Y2059D01* X2663Y1888D02* Y2059D01* X2655D02* Y1888D01* X2659Y2059D02* Y1888D01* X2651D02* Y2059D01* X2647Y1888D02* Y2059D01* X2639D02* Y1888D01* X2643Y2059D02* Y1888D01* X2635D02* Y2059D01* X2631Y1888D02* Y2059D01* X2627Y1888D02* Y2059D01* X2619D02* Y1888D01* X2623Y2059D02* Y1888D01* X2615D02* Y2059D01* X2611Y1888D02* Y2059D01* X2583D02* Y1888D01* X2587Y2059D02* Y1888D01* X2579D02* Y2059D01* X2575Y1888D02* Y2059D01* X2547D02* Y1888D01* X2551Y2059D02* Y1888D01* X2543D02* Y2059D01* X2539Y1888D02* Y2059D01* X2535Y1888D02* Y2059D01* X2514Y2060D02* Y1887D01* X2683D01* X2679Y1888D02* Y2059D01* X2675Y1888D02* Y2059D01* X2291Y2507D02* X2225D01* X2291Y2515D02* X2225D01* X2291Y2511D02* X2225D01* X2224Y2506D02* X2292D01* Y2523D01* X2291Y2519D02* X2225D01* X2224Y2506D02* Y2523D01* X2292D01* X2291Y2557D02* X2225D01* X2291Y2561D02* X2225D01* X2224Y2556D02* X2292D01* Y2573D01* X2291Y2569D02* X2225D01* X2291Y2565D02* X2225D01* X2224Y2556D02* Y2573D01* X2292D01* X2291Y2607D02* X2225D01* X2291Y2615D02* X2225D01* X2291Y2611D02* X2225D01* X2224Y2606D02* X2292D01* Y2623D01* X2291Y2619D02* X2225D01* X2224Y2606D02* Y2623D01* X2292D01* X2291Y2657D02* X2225D01* X2291Y2661D02* X2225D01* X2224Y2656D02* X2292D01* Y2673D01* X2291Y2669D02* X2225D01* X2291Y2665D02* X2225D01* X2224Y2656D02* Y2673D01* X2292D01* X2291Y2707D02* X2225D01* X2291Y2711D02* X2225D01* X2224Y2706D02* X2292D01* Y2723D01* X2291Y2719D02* X2225D01* X2291Y2715D02* X2225D01* X2224Y2706D02* Y2723D01* X2292D01* X2291Y2757D02* X2225D01* X2291Y2765D02* X2225D01* X2291Y2761D02* X2225D01* X2224Y2756D02* X2292D01* Y2773D01* X2291Y2769D02* X2225D01* X2224Y2756D02* Y2773D01* X2292D01* X2291Y2807D02* X2225D01* X2291Y2811D02* X2225D01* X2224Y2806D02* X2292D01* Y2823D01* X2291Y2819D02* X2225D01* X2291Y2815D02* X2225D01* X2224Y2806D02* Y2823D01* X2292D01* X2291Y2857D02* X2225D01* X2291Y2865D02* X2225D01* X2291Y2861D02* X2225D01* X2224Y2856D02* X2292D01* Y2873D01* X2291Y2869D02* X2225D01* X2224Y2856D02* Y2873D01* X2292D01* X1956Y2874D02* X1888D01* Y2857D01* X1889Y2866D02* X1955D01* X1889Y2870D02* X1955D01* X1956Y2874D02* Y2857D01* X1888D01* X1889Y2862D02* X1955D01* X1889Y2858D02* X1955D01* X1956Y2824D02* X1888D01* Y2807D01* X1889Y2816D02* X1955D01* X1889Y2820D02* X1955D01* X1956Y2824D02* Y2807D01* X1888D01* X1889Y2812D02* X1955D01* X1889Y2808D02* X1955D01* X1888Y2757D02* Y2774D01* X1956D01* X1955Y2770D02* X1889D01* X1955Y2766D02* X1889D01* X1955Y2758D02* X1889D01* X1955Y2762D02* X1889D01* X1888Y2757D02* X1956D01* Y2774D01* X1955Y2720D02* X1889D01* X1888Y2707D02* Y2724D01* X1956D01* X1888Y2657D02* Y2674D01* X1582Y2625D02* Y4905D01* X1578D02* Y2622D01* X1888Y2657D02* X1956D01* Y2674D01* X1888D01* X1889Y2670D02* X1955D01* X1889Y2666D02* X1955D01* X1889Y2662D02* X1955D01* X1889Y2658D02* X1955D01* Y2620D02* X1889D01* X1955Y2616D02* X1889D01* X1955Y2570D02* X1889D01* X1955Y2566D02* X1889D01* Y2516D02* X1955D01* X1889Y2520D02* X1955D01* X1956Y2524D02* X1888D01* Y2507D01* X1955Y2508D02* X1889D01* X1955Y2512D02* X1889D01* X1888Y2507D02* X1956D01* Y2524D01* X1955Y2562D02* X1889D01* X1955Y2558D02* X1889D01* X1888Y2557D02* Y2574D01* X1586Y2627D02* Y4905D01* X1590D02* Y2630D01* X1888Y2557D02* X1956D01* Y2574D01* X1888D01* X1955Y2612D02* X1889D01* X1955Y2608D02* X1889D01* X1888Y2607D02* Y2624D01* X1570Y2617D02* Y4905D01* X1574D02* Y2620D01* X1888Y2607D02* X1956D01* Y2624D01* X1888D01* X1602Y2638D02* Y4061D01* X1627Y4037D02* X1630Y4036D01* X1638Y4425D02* Y4905D01* X1634D02* Y4425D01* X1627Y4037D02* X1597Y4067D01* X1596Y4070D01* X1598Y4065D02* Y2635D01* X1889Y2708D02* X1955D01* X1889Y2716D02* X1955D01* X1889Y2712D02* X1955D01* X1956Y2724D02* Y2707D01* X1888D01* X1594Y2633D02* Y4905D01* X1622D02* Y4419D01* X1618Y4045D02* Y3875D01* X1616Y3870D02* X1617Y3873D01* X1647Y3903D01* X1646D02* Y4035D01* X1642Y4425D02* Y4905D01* X1646D02* Y4425D01* X1650Y4035D02* Y3905D01* X1614Y4049D02* Y2646D01* X1616D02* X1557Y2608D01* X1555Y2604D01* X1558Y2609D02* Y4905D01* X1562D02* Y2612D01* X1616Y2646D02* Y3870D01* X1642Y3899D02* Y4035D01* X1658Y3905D02* Y4035D01* X1654Y4425D02* Y4905D01* X1650D02* Y4425D01* X1654Y4035D02* Y3905D01* X1634Y4035D02* Y3891D01* X1638Y3895D02* Y4035D01* X1650Y3904D02* X1647Y3903D01* X1622Y3879D02* Y4041D01* X1626Y4423D02* Y4905D01* X1630D02* Y4425D01* X1626Y4037D02* Y3883D01* X1650Y3904D02* X1748D01* X1722Y3905D02* Y4035D01* X1718Y4425D02* Y4905D01* X1722D02* Y4425D01* X1748Y4036D02* X1630D01* X1606Y4057D02* Y2640D01* X1610Y2643D02* Y4053D01* X1748Y4036D02* X1776Y4008D01* X1746Y4035D02* Y3905D01* X1774Y4009D02* Y3931D01* X1750Y4033D02* Y3907D01* X1754Y3911D02* Y4029D01* X1770Y3927D02* Y4013D01* X1758Y3915D02* Y4025D01* X1762Y4021D02* Y3919D01* X1766Y4017D02* Y3923D01* X1686Y3905D02* Y4035D01* X1682Y4425D02* Y4905D01* X1678D02* Y4425D01* X1682Y4035D02* Y3905D01* X1678D02* Y4035D01* X1674Y4425D02* Y4905D01* X1670D02* Y4425D01* X1674Y4035D02* Y3905D01* X1670D02* Y4035D01* X1666Y4425D02* Y4905D01* X1662D02* Y4425D01* X1666Y4035D02* Y3905D01* X1662D02* Y4035D01* X1658Y4425D02* Y4905D01* X1554D02* Y1927D01* Y1819D02* Y1025D01* X1550D02* Y1823D01* Y1923D02* Y4905D01* X1546D02* Y1919D01* Y1827D02* Y1025D01* X1542D02* Y1831D01* X1537Y1908D02* X1535Y1905D01* X1536Y1840D01* X1542Y1915D02* Y4905D01* X1538D02* Y1911D01* X1537Y1908D02* X1555Y1927D01* Y2604D01* X1566Y2615D02* Y4905D01* X1850Y4937D02* X1500D01* Y4587D01* X1614Y4411D02* Y4905D01* X1618D02* Y4415D01* X1596Y4070D02* Y4390D01* X1597Y4393D01* X1630Y4424D02* X1627Y4423D01* X1597Y4393D01* X1598Y4395D02* Y4905D01* X1602D02* Y4399D01* X1630Y4424D02* X1758D01* X1786Y4452D02* X1758Y4424D01* X1606Y4403D02* Y4905D01* X1610D02* Y4407D01* X1786Y4452D02* Y4906D01* X1524D01* X1526Y4905D02* Y1025D01* X1558D02* Y1815D01* X1616Y1758D02* Y1420D01* X1730Y1385D02* Y1025D01* X1766Y1367D02* Y1025D01* X1762D02* Y1371D01* X1734Y1025D02* Y1385D01* X1738D02* Y1025D01* X1758Y1375D02* Y1025D01* X1750D02* Y1383D01* X1754Y1025D02* Y1379D01* X1742Y1025D02* Y1385D01* X1616Y1758D02* X1537Y1837D01* X1536Y1840D01* X1538Y1835D02* Y1025D01* X1534D02* Y4905D01* X1500Y5037D02* Y5887D01* Y5850D02* X7799D01* Y5762D02* X7499Y5462D01* X7374D02* X8224D01* X8324Y5362D02* Y4512D01* Y4637D02* X8624Y4937D01* X8324Y5237D01* X8024Y4937D01* X8324Y4637D01* X6605Y3168D02* X6975D01* X6976Y3216D02* Y2994D01* X6604D01* X6605Y3104D02* X6975D01* Y3108D02* X6605D01* X6645Y3293D02* Y3282D01* X6641Y3278D02* Y3297D01* X6605Y3140D02* X6975D01* Y3144D02* X6605D01* X6677Y3260D02* Y3315D01* X6674Y3311D02* Y3264D01* X6605Y3080D02* X6975D01* Y3076D02* X6605D01* X6659Y3297D02* X6641D01* X6645Y3293D02* X6656D01* X6605Y3044D02* X6975D01* Y3040D02* X6605D01* X6609Y3246D02* X6692D01* X6688Y3250D02* X6612D01* X6605Y3136D02* X6975D01* Y3132D02* X6605D01* X6677Y3315D02* X6623D01* X6627Y3311D02* X6674D01* X6605Y3084D02* X6975D01* Y3088D02* X6605D01* X6684Y3253D02* Y3322D01* X6670Y3307D02* Y3268D01* X6605Y3128D02* X6975D01* Y3124D02* X6605D01* X6634Y3304D02* Y3271D01* X6637Y3275D02* Y3300D01* X6605Y3204D02* X6975D01* Y3208D02* X6605D01* X6641Y3278D02* X6659D01* X6670Y3268D02* X6630D01* X6605Y3152D02* X6975D01* Y3148D02* X6605D01* X6616Y3322D02* Y3253D01* X6619Y3257D02* Y3318D01* X6605Y3180D02* X6975D01* Y3176D02* X6605D01* X6637Y3275D02* X6663D01* X6666Y3271D02* X6634D01* X6605Y3112D02* X6975D01* Y3116D02* X6605D01* X6623Y3315D02* Y3260D01* X6616Y3507D02* Y3438D01* X6684D01* Y3507D01* X6616D01* X6619Y3503D02* Y3442D01* X6681D01* Y3503D01* X6619D01* X6623Y3500D02* Y3445D01* X6677D01* Y3500D01* X6623D01* X6627Y3496D02* Y3449D01* X6674D01* Y3496D01* X6627D01* X6634Y3489D02* Y3456D01* X6666D01* Y3489D01* X6634D01* X6641Y3482D02* Y3463D01* X6659D01* Y3482D01* X6641D01* X6645Y3478D02* Y3467D01* X6656D01* Y3478D01* X6645D01* X6650D02* Y3467D01* X6663Y3460D02* Y3485D01* X6637D01* Y3460D01* X6663D01* X6670Y3453D02* Y3492D01* X6630D01* Y3453D01* X6670D01* X6688Y3435D02* Y3510D01* X6612D01* Y3435D01* X6688D01* X6692Y3431D02* Y3514D01* X6609D01* Y3431D01* X6692D01* X6630Y3307D02* X6670D01* X6605Y3052D02* X6975D01* Y3056D02* X6605D01* X6692Y3246D02* Y3329D01* X6609D01* X6612Y3325D02* X6688D01* X6605Y3100D02* X6975D01* Y3096D02* X6605D01* X6656Y3282D02* Y3293D01* X6663Y3300D02* Y3275D01* X6605Y3160D02* X6975D01* Y3164D02* X6605D01* X6684Y3322D02* X6616D01* X6619Y3318D02* X6681D01* X6605Y3068D02* X6975D01* Y3072D02* X6605D01* X6619Y3257D02* X6681D01* X6684Y3253D02* X6616D01* X6605Y3200D02* X6975D01* Y3196D02* X6605D01* X6609Y3329D02* Y3246D01* X6612Y3250D02* Y3325D01* X6605Y3212D02* X6975D01* X6976Y3216D02* X6604D01* Y2994D01* X6605Y3008D02* X6975D01* X6996Y2796D02* Y2674D01* X6900D01* X6896Y2670D02* Y2410D01* X6897Y2407D01* X6149Y2164D02* Y2081D01* X6232D01* Y2164D01* X6149D01* X6163Y2150D02* Y2095D01* X6217D01* Y2150D01* X6163D01* X6167Y2146D02* Y2099D01* X6214D01* Y2146D01* X6167D01* X6174Y2139D02* Y2106D01* X6206D01* Y2139D01* X6174D01* X6177Y2135D02* Y2110D01* X6203D01* Y2135D01* X6177D01* X6190Y2128D02* Y2117D01* X6196D02* X6185D01* Y2128D01* X6196D01* Y2117D01* X6199Y2113D02* X6181D01* Y2132D01* X6199D01* Y2113D01* X6210Y2103D02* X6170D01* Y2142D01* X6210D01* Y2103D01* X6221Y2092D02* Y2153D01* X6159D01* Y2092D01* X6221D01* X6224Y2088D02* Y2157D01* X6156D01* Y2088D01* X6224D01* X6228Y2085D02* Y2160D01* X6152D01* Y2085D01* X6228D01* X6149Y1979D02* Y1896D01* X6232D01* Y1979D01* X6149D01* X6152Y1975D02* Y1900D01* X6228D01* Y1975D01* X6152D01* X6159Y1968D02* Y1907D01* X6221D01* Y1968D01* X6159D01* X6170Y1957D02* Y1918D01* X6210D01* Y1957D01* X6170D01* X6181Y1947D02* Y1928D01* X6199D01* Y1947D01* X6181D01* X6190Y1943D02* Y1932D01* X6196D02* X6185D01* Y1943D01* X6196D01* Y1932D01* X6203Y1925D02* X6177D01* Y1950D01* X6203D01* Y1925D01* X6206Y1921D02* X6174D01* Y1954D01* X6206D01* Y1921D01* X6214Y1914D02* Y1961D01* X6167D01* Y1914D01* X6214D01* X6217Y1910D02* Y1965D01* X6163D01* Y1910D01* X6217D01* X6224Y1903D02* Y1972D01* X6156D01* Y1903D01* X6224D01* X6139Y1721D02* Y1639D01* X6201D02* Y1721D01* X6141Y1720D02* Y1640D01* X6145D02* Y1720D01* X6211Y1759D02* Y1842D01* X6222Y1831D02* Y1769D01* X6165Y1720D02* Y1640D01* X6161D02* Y1720D01* X6157Y1640D02* Y1720D01* X6215Y1762D02* X6290D01* Y1838D01* X6215D01* Y1762D01* X6149Y1720D02* Y1640D01* X6153D02* Y1720D01* X6218Y1766D02* Y1834D01* X6287D01* Y1766D01* X6218D01* X6225Y1773D02* X6280D01* Y1827D01* X6225D01* Y1773D01* X6169Y1720D02* Y1640D01* X6173D02* Y1720D01* X6229Y1777D02* Y1824D01* X6276D01* Y1777D01* X6229D01* X6233Y1820D02* Y1780D01* X6185Y1720D02* Y1640D01* X6181D02* Y1720D01* X6177Y1640D02* Y1720D01* X6201Y1721D02* X6139D01* X6069Y1720D02* Y1640D01* X6073Y1720D02* Y1640D01* X6081D02* Y1720D01* X6077Y1640D02* Y1720D01* X6085D02* Y1640D01* X6089Y1720D02* Y1640D01* X5941D02* Y1720D01* X5939Y1721D02* X6001D01* Y1639D01* X5945Y1640D02* Y1720D01* X5949D02* Y1640D01* X5953Y1720D02* Y1640D01* X5957D02* Y1720D01* X6026Y1759D02* Y1842D01* X6109D01* Y1759D01* X6026D01* X6030Y1762D02* X6105D01* Y1838D01* X6030D01* X6044Y1824D02* X6091D01* Y1777D01* X6044D01* X6040Y1773D02* X6095D01* Y1827D01* X6040D01* Y1773D01* X5981Y1720D02* Y1640D01* X5985Y1720D02* Y1640D01* X5989Y1720D02* Y1640D01* X5993D02* Y1720D01* X6044Y1777D02* Y1824D01* X6048Y1820D02* Y1780D01* X5997Y1720D02* Y1640D01* X6001Y1639D02* X5939D01* Y1721D01* X5961Y1720D02* Y1640D01* X6039Y1639D02* X6101D01* X6097Y1640D02* Y1720D01* X6093Y1640D02* Y1720D01* X6101Y1721D02* X6039D01* X5965Y1720D02* Y1640D01* X5969D02* Y1720D01* X6030Y1762D02* Y1838D01* X6033Y1766D02* X6102D01* Y1834D01* X6033D01* Y1766D01* X5973Y1720D02* Y1640D01* X5977D02* Y1720D01* X6037Y1769D02* Y1831D01* X6098D01* Y1769D01* X6037D01* X6048Y1780D02* X6087D01* Y1820D01* X6048D01* X6051Y1816D02* X6084D01* Y1784D01* X6051D01* X6055Y1787D02* X6080D01* Y1813D01* X6055D01* Y1787D01* X6049Y1720D02* Y1640D01* X6053D02* Y1720D01* X6058Y1791D02* Y1809D01* X6077D01* Y1791D01* X6073Y1806D02* X6062D01* Y1795D01* X6061Y1720D02* Y1640D01* X6057D02* Y1720D01* X6077Y1791D02* X6058D01* X6062Y1795D02* X6073D01* Y1806D01* Y1800D02* X6062D01* X6051Y1816D02* Y1784D01* X6045Y1720D02* Y1640D01* X6041D02* Y1720D01* X6101Y1721D02* Y1639D01* X6039D02* Y1721D01* X6065Y1720D02* Y1640D01* X6139Y1639D02* X6201D01* X6197Y1640D02* Y1720D01* X6240Y1787D02* Y1813D01* X6243Y1809D02* X6262D01* Y1791D01* X6243D01* Y1809D01* X6258Y1806D02* X6247D01* Y1795D01* X6258D01* Y1806D01* Y1800D02* X6247D01* X6211Y1759D02* X6294D01* Y1842D01* X6211D01* X6222Y1831D02* X6283D01* Y1769D01* X6222D01* X6233Y1780D02* X6272D01* Y1820D01* X6233D01* X6240Y1813D02* X6265D01* Y1787D01* X6240D01* X6236Y1784D02* X6269D01* Y1816D01* X6236D01* Y1784D01* X6189Y1720D02* Y1640D01* X6193Y1720D02* Y1640D01* X6379Y1358D02* Y1279D01* X6458D01* X5451Y1640D02* Y1720D01* X5449Y1721D02* X5511D01* Y1639D01* X5455Y1640D02* Y1720D01* X5459D02* Y1640D01* X5463Y1720D02* Y1640D01* X5467Y1720D02* Y1640D01* X5483D02* Y1720D01* X5550Y1762D02* Y1838D01* X5625D01* Y1762D01* X5550D01* X5553Y1766D02* X5622D01* Y1834D01* X5553D01* X5560Y1827D02* X5615D01* Y1773D01* X5560D01* X5557Y1769D02* X5618D01* Y1831D01* X5557D01* Y1769D01* X5499Y1720D02* Y1640D01* X5567D02* Y1720D01* X5575Y1787D02* Y1813D01* X5600D01* Y1787D01* X5593Y1795D02* Y1806D01* Y1800D02* X5582D01* X5578Y1791D02* X5597D01* Y1809D01* X5578D01* Y1791D01* X5571Y1720D02* Y1640D01* X5575D02* Y1720D01* X5600Y1787D02* X5575D01* X5564Y1777D02* X5611D01* Y1824D01* X5564D01* Y1777D01* X5549Y1721D02* Y1639D01* X5563Y1640D02* Y1720D01* X5571Y1784D02* Y1816D01* X5604D01* Y1784D01* X5571D01* X5568Y1780D02* X5607D01* Y1820D01* X5568D01* Y1780D01* X5559Y1720D02* Y1640D01* X5555D02* Y1720D01* X5611Y1721D02* Y1639D01* X5551Y1640D02* Y1720D01* X5546Y1759D02* X5629D01* Y1842D01* X5546D01* Y1759D01* X5479Y1720D02* Y1640D01* X5475D02* Y1720D01* X5549Y1721D02* X5611D01* X5599Y1720D02* Y1640D01* X5603Y1720D02* Y1640D01* X5607Y1720D02* Y1640D01* X5611Y1639D02* X5549D01* X5471Y1640D02* Y1720D01* X5487D02* Y1640D01* X5491Y1720D02* Y1640D01* X5495D02* Y1720D01* X5553Y1766D02* Y1834D01* X5560Y1827D02* Y1773D01* X5503Y1720D02* Y1640D01* X5507Y1720D02* Y1640D01* X5511Y1639D02* X5449D01* Y1721D01* X5593Y1806D02* X5582D01* Y1795D01* X5593D01* X5587Y1720D02* Y1640D01* X5583D02* Y1720D01* X5649Y1721D02* X5711D01* X5691Y1720D02* Y1640D01* X5695Y1720D02* Y1640D01* X5699D02* Y1720D01* X5749Y1777D02* Y1824D01* X5796D01* Y1777D01* X5749D01* X5753Y1780D02* X5792D01* Y1820D01* X5753D01* X5756Y1816D02* X5789D01* Y1784D01* X5756D01* Y1816D01* X5753Y1820D02* Y1780D01* X5703Y1720D02* Y1640D01* X5707Y1720D02* Y1640D01* X5711Y1639D02* X5649D01* X5579Y1640D02* Y1720D01* X5591D02* Y1640D01* X5595Y1720D02* Y1640D01* X5671Y1720D02* Y1640D01* X5675Y1720D02* Y1640D01* X5679D02* Y1720D01* X5738Y1766D02* Y1834D01* X5807D01* Y1766D01* X5738D01* X5735Y1762D02* X5810D01* Y1838D01* X5735D01* Y1762D01* X5667Y1720D02* Y1640D01* X5651D02* Y1720D01* X5711Y1721D02* Y1639D01* X5649D02* Y1721D01* X5655Y1720D02* Y1640D01* X5659Y1720D02* Y1640D01* X5663D02* Y1720D01* X5731Y1759D02* Y1842D01* X5814D01* Y1759D01* X5731D01* X5742Y1769D02* X5803D01* Y1831D01* X5742D01* Y1769D01* X5683Y1720D02* Y1640D01* X5687D02* Y1720D01* X5745Y1773D02* Y1827D01* X5800D01* Y1773D01* X5745D01* X5767Y1806D02* X5778D01* Y1795D01* X5767D01* Y1806D01* Y1800D02* X5778D01* X5782Y1791D02* X5763D01* Y1809D01* X5782D01* Y1791D01* X5785Y1787D02* X5760D01* Y1813D01* X5785D01* Y1787D01* X5620Y2197D02* X5540D01* X5508Y2155D02* Y1965D01* X5504D02* Y2155D01* X5540Y2117D02* X5620D01* Y2125D02* X5540D01* X5488Y2155D02* Y1965D01* X5484D02* Y2155D01* X5540Y2185D02* X5620D01* Y2181D02* X5540D01* X5476Y2155D02* Y1965D01* X5480D02* Y2155D01* X5540Y2129D02* X5620D01* Y2121D02* X5540D01* X5496Y2155D02* Y1965D01* X5492D02* Y2155D01* X5540Y2189D02* X5620D01* Y2193D02* X5540D01* X5500Y2155D02* Y1965D01* X5464D02* Y2155D01* X5540Y2137D02* X5620D01* X5621Y2141D02* X5539D01* X5456Y2155D02* Y1965D01* X5528D02* Y2045D01* X5540Y2033D02* X5620D01* X5604Y1965D02* Y2045D01* X5608D02* Y1965D01* X5620Y1993D02* X5540D01* Y1989D02* X5620D01* X5624Y1965D02* Y2045D01* X5628D02* Y1965D01* X5620Y2001D02* X5540D01* Y1997D02* X5620D01* X5616Y1965D02* Y2045D01* X5612D02* Y1965D01* X5620Y1985D02* X5540D01* X5516Y2050D02* Y2156D01* X5452Y2155D02* Y1965D01* X5444Y1964D02* Y2156D01* X5516D01* X5540Y2201D02* X5620D01* X5540Y2205D02* X5620D01* X5621Y2141D02* Y2079D01* X5620Y2081D02* X5540D01* X5564Y2045D02* Y1965D01* X5580D02* Y2045D01* X5540Y2009D02* X5620D01* X5632Y1965D02* Y2045D01* X5620Y2037D02* X5540D01* X5524Y2045D02* Y1965D01* X5520D02* Y2045D01* X5539Y2041D02* X5621D01* X5620Y2045D02* Y1965D01* Y1981D02* X5540D01* X5539Y1979D02* Y2041D01* X5540Y2021D02* X5620D01* X5592Y1965D02* Y2045D01* X5596D02* Y1965D01* X5620Y2025D02* X5540D01* X5536Y2045D02* Y1965D01* X5532D02* Y2045D01* X5540Y2029D02* X5620D01* X5600Y1965D02* Y2045D01* X5621Y1979D02* X5539D01* X5460Y1965D02* Y2155D01* X5448D02* Y1965D01* X5444Y1964D02* X5636D01* Y2046D01* X5520D01* X5516Y2050D01* Y2049D02* Y1965D01* X5512D02* Y2155D01* X5540Y2113D02* X5620D01* Y2109D02* X5540D01* X5539Y2141D02* Y2079D01* X5621D01* X5620Y2101D02* X5540D01* X5576Y2045D02* Y1965D01* X5621Y1979D02* Y2041D01* X5620Y2013D02* X5540D01* X5572Y2045D02* Y1965D01* X5568D02* Y2045D01* X5540Y2097D02* X5620D01* Y2093D02* X5540D01* X5548Y2045D02* Y1965D01* X5552D02* Y2045D01* X5540Y2017D02* X5620D01* X5588Y1965D02* Y2045D01* X5584D02* Y1965D01* X5620Y2005D02* X5540D01* X5544Y2045D02* Y1965D01* X5540D02* Y2045D01* Y2085D02* X5620D01* Y2089D02* X5540D01* X5560Y2045D02* Y1965D01* X5556D02* Y2045D01* X5540Y2105D02* X5620D01* Y2133D02* X5540D01* X5472Y2155D02* Y1965D01* X5468D02* Y2155D01* X5539Y2179D02* Y2241D01* X5540Y2237D02* X5620D01* Y2233D02* X5540D01* X5620Y2229D02* X5540D01* X5620Y2225D02* X5540D01* Y2209D02* X5620D01* X5540Y2213D02* X5620D01* Y2217D02* X5540D01* X5620Y2221D02* X5540D01* X5539Y2179D02* X5621D01* Y2241D01* X5539D01* X5246Y2060D02* X5077D01* Y1887D01* X5082Y1888D02* Y2059D01* X5246Y2060D02* Y1887D01* X5077D01* X5078Y1888D02* Y2059D01* X5106D02* Y1888D01* X5110Y2059D02* Y1888D01* X5118D02* Y2059D01* X5114Y1888D02* Y2059D01* X5122D02* Y1888D01* X5126Y2059D02* Y1888D01* X5130Y2059D02* Y1888D01* X5138D02* Y2059D01* X5134Y1888D02* Y2059D01* X5142D02* Y1888D01* X5146Y2059D02* Y1888D01* X5154D02* Y2059D01* X5150Y1888D02* Y2059D01* X5158D02* Y1888D01* X5162Y2059D02* Y1888D01* X5166Y2059D02* Y1888D01* X5174D02* Y2059D01* X5170Y1888D02* Y2059D01* X5198D02* Y1888D01* X5202Y2059D02* Y1888D01* X5210D02* Y2059D01* X5206Y1888D02* Y2059D01* X5214D02* Y1888D01* X5218Y2059D02* Y1888D01* X5222Y2059D02* Y1888D01* X5230D02* Y2059D01* X5226Y1888D02* Y2059D01* X5234D02* Y1888D01* X5238Y2059D02* Y1888D01* X5242Y2059D02* Y1888D01* X5194D02* Y2059D01* X5190Y1888D02* Y2059D01* X5186Y1888D02* Y2059D01* X5178D02* Y1888D01* X5182Y2059D02* Y1888D01* X5102D02* Y2059D01* X5098Y1888D02* Y2059D01* X5094Y1888D02* Y2059D01* X5086D02* Y1888D01* X5090Y2059D02* Y1888D01* X3184Y2909D02* X3101D01* Y2992D01* X3184D01* Y2909D01* X3180Y2912D02* X3105D01* Y2988D01* X3180D01* Y2912D01* X3177Y2916D02* X3108D01* Y2984D01* X3177D01* Y2916D01* X3173Y2919D02* X3112D01* Y2981D01* X3173D01* Y2919D01* X3170Y2923D02* X3115D01* Y2977D01* X3170D01* Y2923D01* X3166Y2927D02* X3119D01* Y2974D01* X3166D01* Y2927D01* X3162Y2930D02* X3123D01* Y2970D01* X3162D01* Y2930D01* X3159Y2934D02* X3126D01* Y2966D01* X3159D01* Y2934D01* X3155Y2937D02* X3130D01* Y2963D01* X3155D01* Y2937D01* X3152Y2941D02* Y2959D01* X3133D01* Y2941D01* X3152D01* X3148Y2956D02* X3137D01* Y2945D01* X3148D01* Y2956D01* Y2950D02* X3137D01* X2999Y2909D02* X2916D01* Y2992D01* X2999D01* Y2909D01* X2995Y2912D02* X2920D01* Y2988D01* X2995D01* Y2912D01* X2992Y2916D02* X2923D01* Y2984D01* X2992D01* Y2916D01* X2988Y2919D02* X2927D01* Y2981D01* X2988D01* Y2919D01* X2985Y2923D02* X2930D01* Y2977D01* X2985D01* Y2923D01* X2981Y2927D02* X2934D01* Y2974D01* X2981D01* Y2927D01* X2977Y2930D02* X2938D01* Y2970D01* X2977D01* Y2930D01* X2974Y2934D02* X2941D01* Y2966D01* X2974D01* Y2934D01* X2970Y2937D02* X2945D01* Y2963D01* X2970D01* Y2937D01* X2967Y2941D02* Y2959D01* X2948D01* Y2941D01* X2967D01* X2963Y2950D02* X2952D01* Y2956D02* Y2945D01* X2963D01* Y2956D01* X2952D01* X1200Y5462D02* X1500Y5162D01* X1800Y5462D01* X1500Y5762D01* X1200Y5462D01* X1075D02* X1925D01* X1782Y4905D02* Y4449D01* X2169Y4438D02* Y4251D01* X2165D02* Y4438D01* X1778Y4445D02* Y4905D01* X1774D02* Y4441D01* X2161Y4438D02* Y4251D01* X2157D02* Y4438D01* X1770Y4437D02* Y4905D01* X1742D02* Y4425D01* X2129Y4438D02* Y4251D01* X2127Y4250D02* Y4439D01* X1738Y4425D02* Y4905D01* X1714D02* Y4425D01* X1718Y4035D02* Y3905D01* X1714D02* Y4035D01* X1710Y4425D02* Y4905D01* X1706D02* Y4425D01* X1710Y4035D02* Y3905D01* X1706D02* Y4035D01* X1702Y4425D02* Y4905D01* X1698D02* Y4425D01* X1702Y4035D02* Y3905D01* X1698D02* Y4035D01* X1694Y4425D02* Y4905D01* X1690D02* Y4425D01* X1694Y4035D02* Y3905D01* X1690D02* Y4035D01* X1686Y4425D02* Y4905D01* X1734D02* Y4425D01* Y4035D02* Y3905D01* X1726D02* Y4035D01* Y4425D02* Y4905D01* X1730D02* Y4425D01* Y4035D02* Y3905D01* X1776Y3932D02* Y4008D01* X1738Y4035D02* Y3905D01* X1742D02* Y4035D01* X1776Y3932D02* X1748Y3904D01* X1630Y3887D02* Y4035D01* X2133Y4251D02* Y4438D01* X1746Y4425D02* Y4905D01* X1750D02* Y4425D01* X2137Y4438D02* Y4251D01* X2141D02* Y4438D01* X1754Y4425D02* Y4905D01* X1758D02* Y4425D01* X2145Y4438D02* Y4251D01* X2149D02* Y4438D01* X1762Y4429D02* Y4905D01* X1766D02* Y4433D01* X2153Y4438D02* Y4251D01* X2173D02* Y4438D01* X2127Y4439D02* X2237D01* Y4250D01* X2127D01* X2177Y4251D02* Y4438D01* X2181D02* Y4251D01* X2185Y4438D02* Y4251D01* X2189Y4438D02* Y4251D01* X2213D02* Y4438D01* X2209Y4251D02* Y4438D01* X2217D02* Y4251D01* X2221Y4438D02* Y4251D01* X2225Y4438D02* Y4251D01* X2233D02* Y4438D01* X2229Y4251D02* Y4438D01* X2201D02* Y4251D01* X2205Y4438D02* Y4251D01* X2197D02* Y4438D01* X2193Y4251D02* Y4438D01* X2533Y4695D02* Y4825D01* X2540D01* Y4695D01* X2533D01* X2536Y4696D02* Y4824D01* X2558Y4825D02* Y4695D01* X2565D01* Y4825D01* X2558D01* X2561Y4824D02* Y4696D01* X2583Y4825D02* Y4695D01* X2590D01* Y4825D01* X2583D01* X2586Y4824D02* Y4696D01* X2611D02* Y4824D01* X2608Y4825D02* X2615D01* Y4695D01* X2608D01* Y4825D01* X2633D02* Y4695D01* X2640D01* Y4825D01* X2633D01* X2636Y4824D02* Y4696D01* X2658Y4695D02* Y4825D01* X2665D01* Y4695D01* X2658D01* X2661Y4696D02* Y4824D01* X2686D02* Y4696D01* X2683Y4695D02* X2690D01* Y4825D01* X2683D01* Y4695D01* X2708D02* Y4825D01* X2715D01* Y4695D01* X2708D01* X2711Y4696D02* Y4824D01* X2733Y4695D02* Y4825D01* X2740D01* Y4695D01* X2733D01* X2736Y4696D02* Y4824D01* X2758Y4825D02* Y4695D01* X2765D01* Y4825D01* X2758D01* X2761Y4824D02* Y4696D01* X2783Y4825D02* Y4695D01* X2790D01* Y4825D01* X2783D01* X2786Y4824D02* Y4696D01* X2811D02* Y4824D01* X2808Y4825D02* X2815D01* Y4695D01* X2808D01* Y4825D01* X2833D02* Y4695D01* X2840D01* Y4825D01* X2833D01* X2836Y4824D02* Y4696D01* X2858Y4695D02* Y4825D01* X2865D01* Y4695D01* X2858D01* X2861Y4696D02* Y4824D01* X2886D02* Y4696D01* X2883Y4695D02* X2890D01* Y4825D01* X2883D01* Y4695D01* X2908D02* Y4825D01* X2915D01* Y4695D01* X2908D01* X2911Y4696D02* Y4824D01* X2983Y4825D02* Y4695D01* X2990D01* Y4825D01* X2983D01* X2986Y4824D02* Y4696D01* X3011D02* Y4824D01* X3008Y4825D02* X3015D01* Y4695D01* X3008D01* Y4825D01* X3033D02* Y4695D01* X3040D01* Y4825D01* X3033D01* X3036Y4824D02* Y4696D01* X3058Y4695D02* Y4825D01* X3065D01* Y4695D01* X3058D01* X3061Y4696D02* Y4824D01* X3086D02* Y4696D01* X3083Y4695D02* X3090D01* Y4825D01* X3083D01* Y4695D01* X2961Y4696D02* Y4824D01* X2958Y4825D02* X2965D01* Y4695D01* X2958D01* Y4825D01* X2936Y4824D02* Y4696D01* X2933Y4695D02* X2940D01* Y4825D01* X2933D01* Y4695D01* X3361Y4696D02* Y4824D01* X3358Y4825D02* X3365D01* Y4695D01* X3358D01* Y4825D01* X3336Y4824D02* Y4696D01* X3333Y4695D02* X3340D01* Y4825D01* X3333D01* Y4695D01* X3308D02* Y4825D01* X3315D01* Y4695D01* X3308D01* X3311Y4696D02* Y4824D01* X3286D02* Y4696D01* X3283Y4695D02* X3290D01* Y4825D01* X3283D01* Y4695D01* X3161Y4696D02* Y4824D01* X3158Y4825D02* X3165D01* Y4695D01* X3158D01* Y4825D01* X3136Y4824D02* Y4696D01* X3133Y4695D02* X3140D01* Y4825D01* X3133D01* Y4695D01* X3108D02* Y4825D01* X3115D01* Y4695D01* X3108D01* X3111Y4696D02* Y4824D01* X3183Y4825D02* Y4695D01* X3190D01* Y4825D01* X3183D01* X3186Y4824D02* Y4696D01* X3211D02* Y4824D01* X3208Y4825D02* X3215D01* Y4695D01* X3208D01* Y4825D01* X3233D02* Y4695D01* X3240D01* Y4825D01* X3233D01* X3236Y4824D02* Y4696D01* X3258Y4695D02* Y4825D01* X3265D01* Y4695D01* X3258D01* X3261Y4696D02* Y4824D01* X3383Y4825D02* Y4695D01* X3390D01* Y4825D01* X3383D01* X3386Y4824D02* Y4696D01* X3411D02* Y4824D01* X3408Y4825D02* X3415D01* Y4695D01* X3408D01* Y4825D01* X3433D02* Y4695D01* X3440D01* Y4825D01* X3433D01* X3436Y4824D02* Y4696D01* X3458Y4695D02* Y4825D01* X3465D01* Y4695D01* X3458D01* X3461Y4696D02* Y4824D01* X3486D02* Y4696D01* X3483Y4695D02* X3490D01* Y4825D01* X3483D01* Y4695D01* X3508D02* Y4825D01* X3515D01* Y4695D01* X3508D01* X3511Y4696D02* Y4824D01* X3533Y4695D02* Y4825D01* X3540D01* Y4695D01* X3533D01* X3536Y4696D02* Y4824D01* X3558Y4825D02* Y4695D01* X3565D01* Y4825D01* X3558D01* X3561Y4824D02* Y4696D01* X3586D02* Y4824D01* X3583Y4825D02* X3590D01* Y4695D01* X3583D01* Y4825D01* X3608D02* Y4695D01* X3615D01* Y4825D01* X3608D01* X3611Y4824D02* Y4696D01* X3733Y4695D02* Y4825D01* X3740D01* Y4695D01* X3733D01* X3736Y4696D02* Y4824D01* X3758Y4825D02* Y4695D01* X3765D01* Y4825D01* X3758D01* X3761Y4824D02* Y4696D01* X3711Y4824D02* Y4696D01* X3708Y4695D02* X3715D01* Y4825D01* X3708D01* Y4695D01* X3683D02* Y4825D01* X3690D01* Y4695D01* X3683D01* X3686Y4696D02* Y4824D01* X3661D02* Y4696D01* X3658Y4695D02* X3665D01* Y4825D01* X3658D01* Y4695D01* X3636Y4696D02* Y4824D01* X3633Y4825D02* X3640D01* Y4695D01* X3633D01* Y4825D01* X4140Y4438D02* Y4251D01* X4144Y4438D02* Y4251D01* X4136D02* Y4438D01* X4132Y4251D02* Y4438D01* X4104D02* Y4251D01* X4108Y4438D02* Y4251D01* X4100D02* Y4438D01* X4096Y4251D02* Y4438D01* X4092Y4251D02* Y4438D01* X4084D02* Y4251D01* X4088Y4438D02* Y4251D01* X4080D02* Y4438D01* X4076Y4251D02* Y4438D01* X4064D02* Y4251D01* X4062Y4250D02* X4172D01* Y4439D01* X4068Y4438D02* Y4251D01* X4072Y4438D02* Y4251D01* X4062Y4250D02* Y4439D01* X4172D01* X4168Y4251D02* Y4438D01* X4164Y4251D02* Y4438D01* X4160Y4251D02* Y4438D01* X4156Y4251D02* Y4438D01* X4148D02* Y4251D01* X4152Y4438D02* Y4251D01* X4128D02* Y4438D01* X4124Y4251D02* Y4438D01* X4120Y4251D02* Y4438D01* X4112D02* Y4251D01* X4116Y4438D02* Y4251D01* X3341Y5432D02* X3332Y5441D01* X3296D01* X3287Y5432D01* Y5379D01* X3296Y5370D01* X3332D01* X3341Y5379D01* X3367Y5370D02* X3394D01* X3403Y5379D01* Y5406D01* X3394Y5415D01* X3367D01* X3358Y5406D01* Y5379D01* X3367Y5370D01* X3429D02* Y5415D01* Y5406D02* X3438Y5415D01* X3447D01* X3456Y5406D01* Y5370D01* X3483D02* Y5406D01* X3474Y5415D01* X3465D01* X3456Y5406D01* X3501Y5370D02* X3536D01* X3545Y5379D01* Y5406D01* X3536Y5415D01* X3501D01* Y5343D01* X3581Y5415D02* X3607D01* X3616Y5406D01* Y5370D01* X3581D01* X3572Y5379D01* Y5388D01* X3581Y5397D01* X3616D01* X3687Y5379D02* X3678Y5370D01* X3652D01* X3643Y5379D01* Y5406D01* X3652Y5415D01* X3678D01* X3687Y5406D01* X3749Y5415D02* X3714D01* X3732Y5441D02* Y5379D01* X3741Y5370D01* X3749D01* X3758Y5379D01* X3785Y5370D02* Y5441D01* X3829D01* X3838Y5432D01* Y5415D01* X3829Y5406D01* X3785D01* X3909Y5379D02* X3901Y5370D01* X3865D01* X3856Y5379D01* Y5432D01* X3865Y5441D01* X3901D01* X3909Y5432D01* X3927Y5441D02* X3981D01* X3954D02* Y5370D01* X3927D02* X3981D01* X4194Y5432D02* X4185Y5441D01* X4149D01* X4141Y5432D01* Y5379D01* X4149Y5370D01* X4185D01* X4194Y5379D01* X4212D02* X4221Y5370D01* X4256D01* X4265Y5379D01* Y5432D02* X4256Y5441D01* X4221D01* X4212Y5432D01* Y5379D01* X4336Y5441D02* X4283D01* Y5415D01* X4327D01* X4336Y5406D01* X4283Y5379D02* X4292Y5370D01* X4327D01* X4336Y5379D01* Y5406D01* X4354D02* X4407D01* X4425Y5370D02* Y5441D01* X4469D01* X4478Y5432D01* Y5415D01* X4469Y5406D01* X4425D01* X4452D02* X4478Y5370D01* X4496D02* X4505Y5397D01* X4541D02* X4505D01* X4523Y5441D01* X4541Y5397D01* X4549Y5370D01* X4567Y5441D02* X4576Y5406D01* X4594Y5370D01* X4612Y5406D01* X4621Y5441D01* X4638Y5406D02* X4674D01* X4692Y5370D02* X4638D01* Y5441D01* X4692D01* X4994Y5370D02* Y5441D01* X5038D01* X5047Y5432D01* Y5415D01* X5038Y5406D01* X4994D01* X5021D02* X5047Y5370D01* X5065Y5379D02* X5074Y5370D01* X5065Y5388D02* X5101D01* X5109Y5397D01* Y5370D02* X5074D01* X5065Y5379D02* Y5406D01* X5074Y5415D01* X5101D01* X5109Y5406D01* Y5397D01* X5136Y5415D02* X5163Y5370D01* X5189Y5415D01* X5234Y5370D02* X5225Y5379D01* X5234Y5388D01* X5243Y5379D01* X5234Y5370D01* X5287D02* X5278Y5379D01* Y5432D01* X5287Y5441D01* X5323D01* X5332Y5432D01* Y5379D01* X5323Y5370D01* X5287D01* X5278D02* X5332Y5441D01* X5563Y5406D02* X5616D01* X5791Y5379D02* Y5432D01* X5800Y5441D01* X5836D01* X5845Y5432D01* X5862Y5379D02* Y5406D01* X5871Y5415D01* X5898D01* X5907Y5406D01* Y5379D01* X5898Y5370D01* X5960D02* Y5406D01* X5951Y5415D01* X5942D01* X5934Y5406D01* Y5415D02* Y5370D01* X5898D02* X5871D01* X5862Y5379D01* X5845D02* X5836Y5370D01* X5800D01* X5791Y5379D01* X5960Y5406D02* X5969Y5415D01* X5978D01* X5987Y5406D01* Y5370D01* X6005D02* X6040D01* X6049Y5379D01* Y5406D01* X6040Y5415D01* X6005D01* Y5343D01* X6111Y5415D02* X6120Y5406D01* Y5379D01* X6111Y5370D01* X6085D01* X6076Y5379D01* Y5406D01* X6085Y5415D01* X6111D01* X6147Y5370D02* Y5415D01* Y5406D02* X6156Y5415D01* X6182D01* X6191Y5406D01* Y5370D01* X6218Y5388D02* X6254D01* X6262Y5397D01* Y5406D01* X6289D02* X6298Y5415D01* X6262Y5406D02* X6254Y5415D01* X6227D01* X6218Y5406D01* Y5379D01* X6227Y5370D01* X6262D01* X6289D02* Y5415D01* X6298D02* X6325D01* X6334Y5406D01* Y5370D01* X6405Y5379D02* X6396Y5370D01* X6387D01* X6378Y5379D01* Y5441D01* X6360Y5415D02* X6396D01* X6502Y5379D02* X6511Y5370D01* X6547D01* X6556Y5379D01* Y5397D01* X6547Y5406D01* X6511D01* X6502Y5415D01* Y5432D01* X6511Y5441D01* X6547D01* X6556Y5432D01* X6600D02* X6591D01* Y5423D01* X6600D01* Y5432D01* X6591Y5415D02* X6600D01* Y5370D01* X6609D02* X6591D01* X6645Y5379D02* X6654Y5370D01* X6625Y4898D02* X7105D01* X7106Y4906D02* X6624D01* Y4684D01* X6625Y4710D02* X7105D01* X7181Y4556D02* X7259D01* Y4584D02* X7181D01* X7105Y4838D02* X6625D01* X7105Y4834D02* X6625D01* Y4842D02* X7105D01* X6625Y4846D02* X7105D01* Y4822D02* X6625D01* X6638Y4355D02* Y4215D01* X6634D02* Y4355D01* X6625Y4726D02* X7105D01* Y4722D02* X6625D01* X6726Y4355D02* Y4215D01* X6722D02* Y4355D01* X6625Y4786D02* X7105D01* Y4790D02* X6625D01* X6630Y4355D02* Y4215D01* X6626D02* Y4355D01* X6625Y4742D02* X7105D01* Y4738D02* X6625D01* X6746Y4355D02* Y4215D01* X6742D02* Y4355D01* X6625Y4802D02* X7105D01* Y4886D02* X6625D01* X7105Y4890D02* X6625D01* Y4894D02* X7105D01* X7089Y5370D02* X7107Y5397D01* Y5415D01* X7089Y5441D01* X7009Y5423D02* X7027Y5441D01* Y5370D01* X7054D02* X7000D01* X6982D02* X6929D01* Y5441D01* X6894D02* X6876Y5415D01* Y5397D01* X6894Y5370D01* X6760D02* X6725D01* X6716Y5379D01* Y5406D01* X6725Y5415D01* X6751D01* X6760Y5406D01* Y5397D01* X6751Y5388D01* X6716D01* X6689Y5415D02* X6654D01* X6645Y5406D01* Y5379D01* X6654Y5370D02* X6689D01* Y5441D01* X6625Y4902D02* X7105D01* X7106Y4906D02* Y4684D01* X6624D01* X6625Y4774D02* X7105D01* Y4778D02* X6625D01* X6690Y4355D02* Y4215D01* X6686D02* Y4355D01* X6625Y4766D02* X7105D01* Y4770D02* X6625D01* X6754Y4355D02* Y4215D01* X6794Y4210D02* X6790Y4214D01* X6624D01* Y4356D01* X7026D01* X6958Y4355D02* Y3475D01* X7086Y3600D02* Y3880D01* X6910Y3773D02* Y3475D01* X6914D02* Y3777D01* X7087Y3883D02* X7086Y3880D01* X7087Y3883D02* X7106Y3902D01* X7086Y4047D02* Y3475D01* X7082D02* Y4051D01* X6930Y3987D02* Y4355D01* X6926D02* Y3991D01* X7078Y4055D02* Y3475D01* X7074D02* Y4059D01* X6922Y3995D02* Y4355D01* X6918D02* Y3999D01* X7070Y4063D02* Y3475D01* X7066D02* Y4067D01* X6914Y4003D02* Y4355D01* X6910D02* Y4007D01* X7062Y4071D02* Y3475D01* X7058D02* Y4075D01* X6906Y4011D02* Y4355D01* X6862D02* Y4045D01* X6944Y3970D02* Y3810D01* X6894Y3757D02* Y3475D01* X6898D02* Y3761D01* X6944Y3970D02* X6943Y3973D01* X6858Y4045D02* Y4355D01* X7105Y4762D02* X6625D01* X6718Y4355D02* Y4215D01* X6714D02* Y4355D01* X6625Y4698D02* X7105D01* Y4694D02* X6625D01* X6642Y4355D02* Y4215D01* X6646D02* Y4355D01* X6625Y4758D02* X7105D01* Y4754D02* X6625D01* X6738Y4355D02* Y4215D01* X6734D02* Y4355D01* X6625Y4690D02* X7105D01* Y4686D02* X6625D01* X6662Y4355D02* Y4215D01* X6666D02* Y4355D01* X6625Y4750D02* X7105D01* Y4746D02* X6625D01* X6698Y4355D02* Y4215D01* X6694D02* Y4355D01* X6625Y4714D02* X7105D01* Y4718D02* X6625D01* X6654Y4355D02* Y4215D01* X6650D02* Y4355D01* X6625Y4782D02* X7105D01* X6658Y4215D02* Y4355D01* X6625Y4814D02* X7105D01* Y4818D02* X6625D01* X6730Y4355D02* Y4215D01* X6750D02* Y4355D01* X6625Y4706D02* X7105D01* Y4702D02* X6625D01* X6682Y4355D02* Y4215D01* X6678D02* Y4355D01* X6625Y4830D02* X7105D01* Y4826D02* X6625D01* X6710Y4355D02* Y4215D01* X6706D02* Y4355D01* X6625Y4730D02* X7105D01* Y4734D02* X6625D01* X6674Y4355D02* Y4215D01* X6670D02* Y4355D01* X6625Y4798D02* X7105D01* Y4794D02* X6625D01* X6702Y4355D02* Y4215D01* X6806Y4355D02* Y4045D01* X6830Y4151D02* Y4045D01* X6826D02* Y4152D01* X6810Y4045D02* Y4355D01* X6814D02* Y4185D01* X6822Y4155D02* Y4045D01* X6818D02* Y4158D01* X6794Y4211D02* Y4355D01* X6790D02* Y4215D01* X6848Y4191D02* X6854Y4184D01* X6974Y4355D02* Y3475D01* X6970D02* Y4355D01* X6854Y4185D02* Y4355D01* X6829Y4196D02* X6820Y4192D01* X6766Y4215D02* Y4355D01* X6770D02* Y4215D01* X6812Y4175D02* X6814Y4184D01* X6986Y4355D02* Y3475D01* X6982D02* Y4355D01* X6820Y4192D02* X6814Y4184D01* X6762Y4215D02* Y4355D01* X6758D02* Y4215D01* X6794Y4210D02* Y4044D01* X6814Y4045D02* Y4163D01* X6786Y4215D02* Y4355D01* X6782D02* Y4215D01* X6839Y4196D02* X6848Y4191D01* X6866Y4355D02* Y4045D01* X6873Y4043D02* X6870Y4044D01* X6794D01* X6798Y4045D02* Y4355D01* X6802D02* Y4045D01* X6873Y4043D02* X6943Y3973D01* X6902Y3765D02* Y3475D01* X6884Y3474D02* Y3748D01* X6943Y3807D01* X7018Y3475D02* Y4355D01* X7022D02* Y3475D01* X6944Y3810D02* X6943Y3807D01* X6890Y3753D02* Y3475D01* X6906D02* Y3769D01* X6942Y3975D02* Y4355D01* X6938D02* Y3979D01* X6918Y3781D02* Y3475D01* X6938D02* Y3801D01* X7102Y3899D02* Y4031D01* X7106Y4028D02* X7027Y4107D01* X6994Y4355D02* Y3475D01* X7014D02* Y4355D01* X7106Y4028D02* Y3902D01* Y3578D02* Y3474D01* X6884D01* X6886Y3475D02* Y3749D01* X7006Y3475D02* Y4355D01* X7010D02* Y3475D01* X6942Y3805D02* Y3475D01* X7090Y3593D02* Y3475D01* X7054D02* Y4079D01* X6902Y4015D02* Y4355D01* X6898D02* Y4019D01* X7050Y4083D02* Y3475D01* X7046D02* Y4087D01* X6894Y4023D02* Y4355D01* X6890D02* Y4027D01* X7042Y4091D02* Y3475D01* X7038D02* Y4095D01* X6886Y4031D02* Y4355D01* X6882D02* Y4035D01* X7034Y4099D02* Y3475D01* X7030D02* Y4103D01* X6878Y4039D02* Y4355D01* X6874D02* Y4043D01* X7027Y4107D02* X7026Y4110D01* X6990Y4355D02* Y3475D01* X6978D02* Y4355D01* X6857Y4174D02* X6854Y4184D01* X6818Y4190D02* Y4355D01* X6822D02* Y4194D01* X6857Y4174D02* X6856Y4173D01* X6846Y4154D02* Y4045D01* X6842D02* Y4153D01* X6854Y4163D02* X6856Y4173D01* X6826Y4195D02* Y4355D01* X6830D02* Y4197D01* X6854Y4163D02* Y4045D01* X6850D02* Y4158D01* X6838Y4197D02* Y4355D01* X6834D02* Y4197D01* X6854Y4163D02* X6847Y4156D01* X6838Y4151D02* Y4045D01* X6834D02* Y4151D01* X6828Y4152D02* X6838D01* X6847Y4156D01* X6842Y4196D02* Y4355D01* X6846D02* Y4194D01* X6828Y4152D02* X6819Y4157D01* X6813Y4165D01* X7002Y4355D02* Y3475D01* X6998D02* Y4355D01* X6812Y4175D02* X6813Y4165D01* X6778Y4215D02* Y4355D01* X6774D02* Y4215D01* X6829Y4196D02* X6839D01* X6850Y4355D02* Y4190D01* X6870Y4355D02* Y4045D01* X7026Y4355D02* Y3475D01* X7102D02* Y3581D01* X6962Y3475D02* Y4355D01* X6966D02* Y3475D01* X7106Y3578D02* X7087Y3597D01* X7086Y3600D02* X7087Y3597D01* X6946Y3475D02* Y4355D01* X6950D02* Y3475D01* X7094Y3589D02* Y3475D01* X7098D02* Y3585D01* X6954Y3475D02* Y4355D01* X6934D02* Y3983D01* X6926Y3789D02* Y3475D01* X6922D02* Y3785D01* X7090Y3887D02* Y4043D01* X7094Y4039D02* Y3891D01* X6930Y3793D02* Y3475D01* X6934D02* Y3797D01* X7098Y3895D02* Y4035D01* X7026Y4110D02* Y4356D01* X7105Y4810D02* X6625D01* Y4806D02* X7105D01* X7206Y4531D02* Y4609D01* X7234D02* Y4531D01* X7105Y4870D02* X6625D01* X7105Y4874D02* X6625D01* Y4882D02* X7105D01* X6625Y4878D02* X7105D01* Y4866D02* X6625D01* X7105Y4862D02* X6625D01* X7105Y4858D02* X6625D01* Y4850D02* X7105D01* X6625Y4854D02* X7105D01* X7449Y4937D02* X7740D01* X7799Y4878D01* Y4760D01* Y4587D01* X8324Y5137D02* X8124Y4937D01* X8324Y4737D01* X8524Y4937D01* X8324Y5137D01* X7799Y5262D02* X7999Y5462D01* X7799Y5662D01* X7599Y5462D01* X7799Y5262D01* X7499Y5462D02* X7799Y5162D01* X8099Y5462D01* X7799Y5762D01* Y5887D02* Y5037D01* X7900Y4937D02* X8750D01* X8700D02* Y1000D01* X8749D02* X7899D01* X7799Y1059D02* Y1197D01* Y1350D01* Y1059D02* X7740Y1000D01* X7449D01* X8324Y900D02* X8224Y1000D01* X8324Y1100D01* X8424Y1000D01* X8324Y900D01* Y800D02* X8124Y1000D01* X8324Y1200D01* X8524Y1000D01* X8324Y800D01* Y575D02* Y1425D01* Y1300D02* X8624Y1000D01* X8324Y700D01* X8024Y1000D01* X8324Y1300D01* X7021Y1842D02* Y1921D01* X6942D01* X6956Y2185D02* Y2347D01* X7096Y2288D02* Y2184D01* X6940Y2185D02* Y2363D01* X6936Y2367D02* Y2185D01* X6984Y2335D02* Y2185D01* X6980D02* Y2335D01* X6932Y2185D02* Y2371D01* X6944Y2359D02* Y2185D01* X6988Y2335D02* Y2185D01* X6992D02* Y2335D01* X6948Y2185D02* Y2355D01* X6952Y2351D02* Y2185D01* X6996Y2335D02* Y2185D01* X7000D02* Y2335D01* X6960Y2185D02* Y2343D01* X7048Y2336D02* X6970D01* X6904Y2399D02* Y2185D01* X6900D02* Y2403D01* X6897Y2407D02* X6967Y2337D01* X6970Y2336D01* X6920Y2185D02* Y2383D01* X6916Y2387D02* Y2185D01* X6972Y2335D02* Y2185D01* X6976D02* Y2335D01* X6924Y2185D02* Y2379D01* X6928Y2375D02* Y2185D01* X6964Y2339D02* Y2185D01* X6968D02* Y2336D01* X6912Y2185D02* Y2391D01* X6857Y2355D02* X6852Y2346D01* X6792Y2341D02* Y2185D01* X6788D02* Y2345D01* X6845Y2339D02* X6852Y2346D01* X6845Y2339D02* X6837Y2334D01* X6784Y2351D02* Y2185D01* X6780D02* Y2363D01* X6816Y2413D02* Y2795D01* X6820D02* Y2413D01* X6814Y2412D02* X6824D01* X6834Y2410D01* X6860Y2362D02* Y2185D01* X6856D02* Y2352D01* X6843Y2406D02* X6834Y2410D01* X6824Y2413D02* Y2795D01* X6852D02* Y2398D01* X6848Y2341D02* Y2185D01* X6844D02* Y2338D01* X6856Y2392D02* Y2795D01* X6860D02* Y2380D01* X6832Y2332D02* Y2185D01* X6828D02* Y2331D01* X6861Y2372D02* X6860Y2381D01* X6840Y2408D02* Y2795D01* X6836D02* Y2410D01* X6856Y2391D02* X6860Y2381D01* X6836Y2333D02* Y2185D01* X6824D02* Y2330D01* X6860Y2364D02* X6861Y2372D01* X6844Y2406D02* Y2795D01* X6848D02* Y2402D01* X6860Y2364D02* X6857Y2355D01* X6796Y2338D02* Y2185D01* X6744D02* Y2795D01* X6714Y2796D02* X6996D01* X6980Y2795D02* Y2675D01* X6984Y2795D02* Y2675D01* X6988Y2795D02* Y2675D01* X6992Y2795D02* Y2675D01* X6976D02* Y2795D01* X6972Y2675D02* Y2795D01* X6964D02* Y2675D01* X6968Y2795D02* Y2675D01* X6960D02* Y2795D01* X6956Y2675D02* Y2795D01* X6952Y2675D02* Y2795D01* X6944D02* Y2675D01* X6948Y2795D02* Y2675D01* X6940D02* Y2795D01* X6936Y2675D02* Y2795D01* X6932D02* Y2675D01* X6896Y2670D02* X6900Y2674D01* X6868Y2795D02* Y2185D01* X6864D02* Y2795D01* X6900Y2675D02* Y2795D01* X6904D02* Y2675D01* X6872Y2795D02* Y2185D01* X6876D02* Y2795D01* X6908Y2675D02* Y2795D01* X6912D02* Y2675D01* X6880Y2795D02* Y2185D01* X6884D02* Y2795D01* X6916Y2675D02* Y2795D01* X6928D02* Y2675D01* X6896Y2795D02* Y2185D01* X6892D02* Y2795D01* X6924Y2675D02* Y2795D01* X6920D02* Y2675D01* X6888Y2795D02* Y2185D01* X6852D02* Y2345D01* X6850Y2399D02* X6843Y2406D01* X6828Y2412D02* Y2795D01* X6832D02* Y2412D01* X6850Y2399D02* X6856Y2391D01* X6840Y2335D02* Y2185D01* X6908D02* Y2395D01* X7048Y2336D02* X7096Y2288D01* X7008Y2185D02* Y2335D01* X7012D02* Y2185D01* X7088Y2295D02* Y2185D01* X7072D02* Y2311D01* X7028Y2185D02* Y2335D01* X7032D02* Y2185D01* X7068Y2315D02* Y2185D01* X7064D02* Y2319D01* X7036Y2185D02* Y2335D01* X7040D02* Y2185D01* X7060Y2323D02* Y2185D01* X7056D02* Y2327D01* X7044Y2185D02* Y2335D01* X7048D02* Y2185D01* X7052Y2331D02* Y2185D01* X7076D02* Y2307D01* X7024Y2185D02* Y2335D01* X7020D02* Y2185D01* X7080Y2303D02* Y2185D01* X7084D02* Y2299D01* X7016Y2185D02* Y2335D01* X7004D02* Y2185D01* X7092Y2291D02* Y2185D01* X7096Y2184D02* X6584D01* Y2346D01* X6596Y2345D02* Y2185D01* X6600Y2345D02* Y2185D01* X6608D02* Y2345D01* X6604Y2185D02* Y2345D01* X6612D02* Y2185D01* X6616Y2345D02* Y2185D01* X6620Y2345D02* Y2185D01* X6624D02* Y2345D01* X6779Y2370D02* X6781Y2360D01* X6784Y2351D02* X6781Y2360D01* X6628Y2345D02* Y2185D01* X6632D02* Y2345D01* X6780Y2380D02* X6779Y2370D01* X6783Y2390D02* X6789Y2398D01* X6664Y2345D02* Y2185D01* X6660D02* Y2345D01* X6798Y2337D02* X6807Y2333D01* X6760Y2185D02* Y2795D01* X6764D02* Y2185D01* X6816Y2330D02* Y2185D01* X6820D02* Y2330D01* X6776Y2185D02* Y2795D01* X6772D02* Y2185D01* X6817Y2331D02* X6807Y2333D01* X6672Y2345D02* Y2185D01* X6676D02* Y2345D01* X6796Y2405D02* X6789Y2398D01* X6780Y2380D02* X6783Y2390D01* X6644Y2345D02* Y2185D01* X6640D02* Y2345D01* X6784Y2351D02* X6790Y2343D01* X6798Y2337D02* X6790Y2343D01* X6648Y2345D02* Y2185D01* X6652D02* Y2345D01* X6784Y2392D02* Y2795D01* X6780D02* Y2381D01* X6636Y2345D02* Y2185D01* X6656D02* Y2345D01* X6788Y2398D02* Y2795D01* X6792D02* Y2402D01* X6668Y2345D02* Y2185D01* X6714Y2350D02* X6710Y2346D01* X6584D01* X6588Y2345D02* Y2185D01* X6592D02* Y2345D01* X6714Y2350D02* Y2796D01* X6605Y3016D02* X6975D01* Y3012D02* X6605D01* X6720Y2795D02* Y2185D01* X6724D02* Y2795D01* X6605Y2996D02* X6975D01* Y3028D02* X6605D01* X6728Y2795D02* Y2185D01* X6732D02* Y2795D01* X6605Y3020D02* X6975D01* Y3024D02* X6605D01* X6688Y3250D02* Y3325D01* X6681Y3318D02* Y3257D01* X6605Y3048D02* X6975D01* Y3060D02* X6605D01* X6663Y3300D02* X6637D01* X6634Y3304D02* X6666D01* X6605Y3092D02* X6975D01* Y3120D02* X6605D01* X6623Y3260D02* X6677D01* X6674Y3264D02* X6627D01* X6605Y3184D02* X6975D01* Y3172D02* X6605D01* X6650Y3293D02* Y3282D01* X6656D02* X6645D01* X6605Y3192D02* X6975D01* Y3188D02* X6605D01* X6630Y3307D02* Y3268D01* X6627Y3264D02* Y3311D01* X6605Y3156D02* X6975D01* Y3064D02* X6605D01* X6666Y3271D02* Y3304D01* X6659Y3297D02* Y3278D01* X6605Y3032D02* X6975D01* Y3036D02* X6605D01* X6740Y2795D02* Y2185D01* X6736D02* Y2795D01* X6605Y3004D02* X6975D01* Y3000D02* X6605D01* X6716Y2795D02* Y2185D01* X6712D02* Y2347D01* X6814Y2412D02* X6805Y2410D01* X6796Y2405D02* X6805Y2410D01* X6696Y2345D02* Y2185D01* X6700D02* Y2345D01* X6808Y2411D02* Y2795D01* X6812D02* Y2413D01* X6708Y2345D02* Y2185D01* X6704D02* Y2345D01* X6827Y2331D02* X6837Y2334D01* X6827Y2331D02* X6817D01* X6688Y2345D02* Y2185D01* X6692D02* Y2345D01* X6804Y2410D02* Y2795D01* X6800D02* Y2408D01* X6684Y2345D02* Y2185D01* X6680D02* Y2345D01* X6796Y2406D02* Y2795D01* X6768D02* Y2185D01* X6800Y2335D02* Y2185D01* X6804D02* Y2333D01* X6752Y2185D02* Y2795D01* X6756D02* Y2185D01* X6812Y2331D02* Y2185D01* X6808D02* Y2332D01* X6748Y2185D02* Y2795D01* X3889Y1642D02* X3968D01* Y1721D01* X3752Y3209D02* X3831D01* Y3288D01* X2813Y3126D02* Y3047D01* X2734D01* X2811Y2878D02* X2732D01* Y2799D01* X2207Y3574D02* Y3653D01* X2286D01* X2909Y4052D02* Y4131D01* X2988D01* D010* X7579Y823D02* X7620D01* X7644D02* X7740D01* Y904D01* Y832D02* Y904D01* Y928D02* Y1000D01* X7799Y1059D02* X7871D01* X7895D02* X7984D01* Y1134D01* X7895Y1059D02* X7967D01* X7895Y4878D02* X7988D01* Y4772D01* Y4782D02* Y4878D01* X7967D02* X7895D01* X7871D02* X7799D01* X7740Y4937D02* Y5009D01* Y5033D02* Y5071D01* X7692D01* X7668D02* X7597D01* X7668D02* X7575D01* D011* X2000Y5771D02* X2027D01* X2040Y5744D02* X2000D01* Y5797D01* X2040D01* X2053Y5771D02* X2067Y5777D01* X2053Y5797D02* Y5744D01* X2033Y5707D02* X2000D01* Y5654D01* Y5681D02* X2033D01* X2040Y5687D01* Y5701D01* X2033Y5707D01* X2053D02* Y5654D01* Y5681D02* X2060Y5687D01* X2080D01* X2087Y5681D01* Y5654D01* X2120D02* X2133D01* X2127D02* Y5687D01* X2120D01* X2127Y5701D02* Y5694D01* X2120D01* Y5701D01* X2127D01* X2107Y5744D02* Y5797D01* X2147D01* X2133Y5771D02* X2107D01* X2093Y5744D02* X2067Y5777D01* X2093Y5797D01* X2213Y5744D02* Y5797D01* X2253D01* X2280D02* X2287D01* Y5744D01* X2293D02* X2280D01* X2253D02* X2213D01* Y5771D02* X2240D01* X2320Y5757D02* X2347D01* X2353Y5764D01* Y5771D01* X2347Y5777D01* X2327D01* X2320Y5771D01* Y5751D01* X2327Y5744D01* X2353D01* X2373D02* Y5797D01* X2400Y5777D02* X2373Y5757D01* X2407Y5744D01* X2440Y5751D02* Y5797D01* X2427Y5777D02* X2453D01* X2440Y5751D02* X2447Y5744D01* X2453D01* X2460Y5751D01* X2480Y5744D02* Y5777D01* Y5771D02* X2487Y5777D01* X2507D01* X2513Y5771D01* X2540Y5777D02* X2533Y5771D01* Y5751D01* X2540Y5744D01* X2560D01* X2540Y5777D02* X2560D01* X2567Y5771D01* Y5751D01* X2560Y5744D01* X2587D02* Y5777D01* Y5771D02* X2593Y5777D01* X2613D01* X2620Y5771D01* Y5744D01* X2653D02* X2667D01* X2660D02* Y5777D01* X2653D01* Y5784D02* Y5791D01* X2660D01* Y5784D01* X2653D01* X2693Y5797D02* Y5744D01* X2727D02* X2693Y5757D01* X2720Y5777D01* X2840Y5791D02* X2833Y5797D01* X2807D01* X2800Y5791D01* Y5751D01* X2807Y5744D01* X2833D01* X2840Y5751D01* Y5764D01* X2827D01* X2853Y5744D02* Y5777D01* Y5771D02* X2860Y5777D01* X2867D01* X2873Y5771D01* X2880Y5777D01* X2873Y5771D02* Y5744D01* X2893D02* Y5771D01* X2887Y5777D01* X2880D01* X2907D02* X2933D01* X2940Y5771D01* Y5751D01* X2933Y5744D01* X2907D01* Y5797D01* X3000Y5744D02* Y5797D01* Y5771D02* X2960D01* Y5797D02* Y5744D01* Y5707D02* Y5681D01* X3000D01* X2993Y5707D02* Y5654D01* X2873D02* X2880Y5661D01* X2873Y5667D01* X2867Y5661D01* X2873Y5654D01* X2833Y5681D02* X2827Y5687D01* X2807D01* X2800Y5681D01* Y5687D02* Y5654D01* X2780Y5661D02* X2773Y5654D01* X2767D01* X2760Y5661D01* Y5707D01* X2773Y5687D02* X2747D01* X2733Y5701D02* X2727Y5707D01* X2700D01* X2693Y5701D01* Y5687D01* X2680Y5681D02* X2640D01* X2693Y5687D02* X2700Y5681D01* X2727D01* X2733Y5674D01* Y5661D01* X2727Y5654D01* X2700D01* X2693Y5661D01* X2620Y5681D02* X2613Y5687D01* X2593D01* X2587Y5681D01* X2593Y5674D01* X2613D01* X2620Y5667D01* Y5661D01* X2613Y5654D01* X2593D01* X2587Y5661D01* X2547Y5654D02* X2560D01* X2553D02* Y5687D01* X2547D01* X2553Y5694D02* Y5701D01* X2547D01* Y5694D01* X2553D01* X2613Y5597D02* X2620D01* X2627Y5591D01* Y5564D01* X2607D02* Y5591D01* X2613Y5597D02* X2607Y5591D01* X2600Y5597D01* X2593D01* X2587Y5591D01* Y5597D02* Y5564D01* X2573D02* Y5591D01* X2567Y5597D01* X2560D01* X2553Y5591D01* Y5564D02* Y5591D01* X2547Y5597D01* X2540D01* X2533Y5591D01* Y5597D02* Y5564D01* X2513D02* Y5591D01* Y5584D02* X2487D01* X2480Y5577D01* X2467Y5591D02* X2427D01* Y5617D02* Y5564D01* X2487Y5597D02* X2507D01* X2513Y5591D01* Y5564D02* X2487D01* X2480Y5571D01* Y5577D02* Y5571D01* X2467Y5564D02* Y5617D01* X2513Y5654D02* X2487D01* X2480Y5661D02* Y5681D01* X2487Y5687D01* X2507D01* X2513Y5681D01* Y5674D01* X2507Y5667D01* X2480D01* X2487Y5654D02* X2480Y5661D01* X2467Y5654D02* X2447Y5681D01* X2427Y5654D02* Y5707D01* X2460D01* X2467Y5701D01* Y5687D01* X2460Y5681D01* X2427D01* X2413D02* X2373D01* X2347Y5687D02* X2320D01* Y5634D01* X2300Y5617D02* X2307Y5611D01* X2320Y5617D02* Y5597D01* Y5571D02* X2327Y5564D01* X2353D01* X2360Y5571D01* Y5591D01* X2353Y5597D01* X2320D01* Y5617D02* X2360D01* X2347Y5687D02* X2353Y5681D01* Y5661D01* X2347Y5654D01* X2320D01* X2300Y5617D02* X2273D01* X2267Y5611D01* Y5571D01* X2273Y5564D01* X2300D01* X2307Y5571D01* Y5584D01* X2300Y5591D01* X2273D01* X2267Y5584D01* X2220Y5564D02* X2213Y5571D01* Y5611D01* X2220Y5617D02* X2247D01* X2253Y5611D01* Y5571D01* X2247Y5564D01* X2220D01* X2213D02* X2253Y5617D01* X2267Y5634D02* Y5687D01* X2293D01* X2300Y5681D01* Y5661D01* X2293Y5654D01* X2267D01* X2160Y5571D02* X2167Y5564D01* X2193D01* X2200Y5571D01* Y5611D01* X2193Y5617D01* X2167D01* X2160Y5611D01* X2173Y5654D02* X2187D01* X2180D02* Y5707D01* X2173D01* X2227Y5701D02* Y5694D01* X2233D01* Y5701D01* X2227D01* Y5687D02* X2233D01* Y5654D01* X2240D02* X2227D01* X2220Y5617D02* X2213Y5611D01* X2200Y5597D02* X2193Y5591D01* X2167D01* X2160Y5597D01* Y5611D01* X2147Y5617D02* X2107D01* Y5597D01* X2093Y5591D02* X2053D01* X2107Y5597D02* X2140D01* X2147Y5591D01* Y5571D01* X2140Y5564D01* X2113D01* X2107Y5571D01* X2120Y5527D02* X2127D01* Y5474D01* X2133D02* X2120D01* X2180Y5487D02* X2173Y5481D01* X2180Y5474D01* X2187Y5481D01* X2180Y5487D01* X2140Y5417D02* X2107Y5384D01* X2140D02* X2107Y5417D01* X2087Y5411D02* X2080Y5417D01* X2060D01* X2053Y5397D02* Y5391D01* X2060Y5384D01* X2087D01* Y5411D01* Y5404D02* X2060D01* X2053Y5397D01* X2027Y5411D02* X2000D01* Y5384D02* Y5437D01* X2040D01* X2087Y5474D02* X2060D01* X2053Y5481D01* Y5501D01* X2060Y5507D01* X2080D01* X2087Y5501D01* Y5494D01* X2080Y5487D01* X2053D01* X2020Y5474D02* Y5527D01* X2040D02* X2000D01* X2033Y5571D02* X2040Y5584D01* Y5597D01* X2033Y5611D01* X2027Y5617D01* X2000D01* Y5564D01* X2027D01* X2033Y5571D01* X2140Y5114D02* X2113D01* X2107Y5121D01* X2093Y5114D02* Y5141D01* X2087Y5147D01* X2080D01* X2113D02* X2133D01* X2140Y5141D01* Y5114D01* Y5134D02* X2113D01* X2107Y5127D01* Y5121D01* X2073Y5114D02* Y5141D01* X2080Y5147D02* X2073Y5141D01* X2067Y5147D01* X2060D01* X2053Y5141D01* Y5147D02* Y5114D01* X2033D02* X2007D01* X2000Y5121D01* Y5141D01* X2007Y5147D01* X2027D01* X2033Y5141D01* Y5134D01* X2027Y5127D01* X2000D01* Y5257D02* X2040D01* X2020D02* Y5204D01* X2000D02* X2040D01* X2053D02* Y5237D01* Y5231D02* X2060Y5237D01* X2080D01* X2087Y5231D01* Y5204D01* X2133Y5237D02* X2107D01* X2120Y5257D02* Y5211D01* X2127Y5204D01* X2133D01* X2140Y5211D01* X2160Y5217D02* X2187D01* X2193Y5224D01* Y5231D01* X2187Y5237D01* X2167D01* X2160Y5231D01* Y5211D01* X2167Y5204D01* X2193D01* X2180Y5154D02* Y5161D01* X2173D01* Y5154D01* X2180D01* X2173Y5147D02* X2180D01* Y5114D01* X2187D02* X2173D01* X2227D02* X2240D01* X2233D02* Y5167D01* X2227D01* X2213Y5204D02* Y5237D01* Y5231D02* X2220Y5237D01* X2240D01* X2247Y5231D01* X2293Y5237D02* X2273D01* X2267D02* Y5204D01* Y5231D02* X2273Y5237D01* X2293D02* X2300Y5231D01* Y5204D01* X2320Y5211D02* Y5231D01* X2327Y5237D01* X2287Y5114D02* X2293Y5121D01* X2287Y5127D01* X2280Y5121D01* X2287Y5114D01* Y5154D02* X2280Y5147D01* X2287Y5141D01* X2293Y5147D01* X2287Y5154D01* X2327Y5237D02* X2347D01* X2353Y5231D01* Y5224D01* X2347Y5217D01* X2320D01* Y5211D02* X2327Y5204D01* X2353D01* X2407Y5211D02* X2400Y5204D01* X2393D01* X2387Y5211D01* Y5257D01* X2373Y5237D02* X2400D01* X2447Y5244D02* X2453Y5237D01* X2447Y5231D01* X2440Y5237D01* X2447Y5244D01* Y5217D02* X2453Y5211D01* X2447Y5204D01* X2440Y5211D01* X2447Y5217D01* X2533Y5237D02* Y5224D01* X2547Y5204D01* X2553Y5211D01* X2560Y5204D01* X2553Y5211D02* Y5224D01* X2560Y5204D02* X2573Y5224D01* Y5237D01* X2587D02* Y5224D01* X2600Y5204D01* X2607Y5211D01* Y5224D01* Y5211D02* X2613Y5204D01* X2627Y5224D01* Y5237D01* X2640D02* Y5224D01* X2653Y5204D01* X2660Y5211D01* X2667Y5204D01* X2660Y5211D02* Y5224D01* X2667Y5204D02* X2680Y5224D01* Y5237D01* X2713Y5204D02* X2707Y5211D01* X2713Y5217D01* X2720Y5211D01* X2713Y5204D01* X2747Y5217D02* X2773D01* X2780Y5224D01* Y5231D01* X2773Y5237D01* X2800Y5257D02* Y5204D01* X2833D02* X2800Y5217D01* X2827Y5237D01* X2980Y5114D02* X2987Y5121D01* X2980Y5127D01* X2973Y5121D01* X2980Y5114D01* X3047D02* X3020D01* X3013Y5121D01* Y5141D01* X3020Y5147D01* X3047D01* Y5167D02* Y5114D01* X3067Y5121D02* Y5141D01* X3073Y5147D01* X3093D01* X3100Y5141D01* Y5134D01* X3093Y5127D01* X3067D01* Y5121D02* X3073Y5114D01* X3100D01* X3047Y5204D02* X3020D01* X3013Y5211D01* Y5231D01* X3020Y5237D01* X3040D01* X3047Y5231D01* Y5224D01* X3040Y5217D01* X3013D01* X2993Y5257D02* Y5204D01* X2967D01* X2960Y5211D01* Y5231D01* X2967Y5237D01* X2993D01* X2927Y5217D02* X2920Y5211D01* X2927Y5204D01* X2933Y5211D01* X2927Y5217D01* X2887Y5257D02* X2867D01* X2860Y5251D01* X2873Y5231D02* X2853D01* X2860Y5251D02* Y5204D01* X2853Y5167D02* Y5114D01* Y5127D02* X2880Y5147D01* X2907Y5141D02* X2927D01* X2913Y5161D02* X2920Y5167D01* X2940D01* X2913Y5161D02* Y5114D01* X2887D02* X2853Y5127D01* X2833Y5114D02* X2807D01* X2800Y5121D01* Y5141D01* X2807Y5147D01* X2800Y5127D02* X2827D01* X2833Y5134D01* Y5141D01* X2827Y5147D01* X2807D01* X2780D02* X2767D01* Y5134D01* X2780D01* Y5154D01* X2773Y5161D01* Y5121D02* X2760D01* X2753Y5127D01* Y5154D01* X2760Y5161D01* X2773D01* X2780Y5204D02* X2753D01* X2747Y5211D01* Y5231D01* X2753Y5237D01* X2773D01* X2720Y5147D02* X2700D01* X2693Y5141D01* Y5121D01* X2700Y5114D01* X2720D01* X2727Y5121D01* Y5141D01* X2720Y5147D01* X2673Y5167D02* X2653D01* X2647Y5161D01* X2660Y5141D02* X2640D01* X2647Y5161D02* Y5114D01* X2620D02* Y5141D01* X2613Y5147D01* X2593D02* X2587Y5141D01* Y5114D02* Y5147D01* X2593D02* X2613D01* X2553Y5161D02* X2547D01* Y5154D01* X2553D01* Y5161D01* X2547Y5147D02* X2553D01* Y5114D01* X2560D02* X2547D01* X2940Y5437D02* X2913D01* X2907Y5431D01* Y5391D01* X2913Y5384D01* X2940D01* X2947Y5391D01* Y5431D01* X2940Y5437D01* X2947D02* X2907Y5384D01* X2893Y5417D02* X2887Y5411D01* X2860D01* X2853Y5417D01* Y5431D01* X2860Y5437D01* X2887D01* X2893Y5431D01* Y5391D01* X2887Y5384D01* X2860D01* X2853Y5391D01* X2840Y5411D02* X2800D01* X2787Y5391D02* Y5431D01* Y5437D02* X2747Y5384D01* Y5391D02* X2753Y5384D01* X2780D01* X2787Y5391D01* Y5431D02* X2780Y5437D01* X2753D01* X2747Y5431D01* Y5391D01* X2733Y5417D02* X2727Y5411D01* X2700D01* X2693Y5417D01* Y5431D01* X2700Y5437D01* X2727D01* X2733Y5431D01* Y5391D01* X2727Y5384D01* X2700D01* X2693Y5391D01* X2673Y5384D02* X2680Y5391D01* Y5404D01* X2673Y5411D01* Y5384D02* X2647D01* X2640Y5391D01* Y5404D01* X2647Y5411D01* X2640Y5431D02* X2647Y5437D01* X2673D01* X2680Y5431D01* Y5417D01* X2673Y5411D01* X2647D01* X2640Y5417D01* Y5431D01* X2627D02* X2620Y5437D01* X2593D01* X2587Y5431D01* Y5404D02* X2593Y5411D01* X2620D01* X2627Y5404D01* Y5391D01* X2620Y5384D01* X2593D01* X2587Y5391D01* Y5431D01* X2573Y5437D02* X2533Y5384D01* X2520D02* X2480D01* X2500D02* Y5437D01* X2487Y5424D01* X2460Y5411D02* X2433D01* X2427Y5404D01* Y5391D01* X2433Y5384D01* X2460D01* X2467Y5391D01* Y5404D01* X2460Y5411D01* X2467Y5417D01* Y5431D01* X2460Y5437D01* X2433D01* X2427Y5431D01* Y5417D01* X2433Y5411D01* X2373Y5431D02* X2380Y5437D01* X2407D01* X2413Y5431D01* Y5417D01* X2400Y5411D01* X2387D02* X2400D01* X2413Y5404D01* Y5391D01* X2407Y5384D01* X2380D01* X2373Y5391D01* X2360Y5384D02* X2320D01* Y5391D01* X2307D02* Y5431D01* X2320D02* X2327Y5437D01* X2353D01* X2360Y5431D01* Y5417D01* X2353Y5411D01* X2320Y5391D01* X2307D02* X2300Y5384D01* X2273D01* X2267Y5391D01* Y5384D02* X2307Y5437D01* Y5431D02* X2300Y5437D01* X2273D01* X2267Y5431D01* Y5391D01* X2273Y5474D02* X2267Y5481D01* Y5521D01* X2273Y5527D01* X2300D01* X2307Y5521D01* Y5481D01* X2300Y5474D01* X2273D01* X2267D02* X2307Y5527D01* X2320Y5521D02* X2327Y5527D01* X2353D01* X2360Y5521D01* Y5507D01* X2353Y5501D01* X2320Y5481D01* Y5474D01* X2360D01* X2373Y5481D02* X2380Y5474D01* X2407D01* X2413Y5481D01* Y5494D01* X2400Y5501D01* X2387D01* X2400D02* X2413Y5507D01* Y5521D01* X2407Y5527D01* X2380D01* X2373Y5521D01* X2433Y5501D02* X2427Y5507D01* Y5521D01* X2433Y5527D01* X2460D01* X2467Y5521D01* Y5507D01* X2460Y5501D01* X2467Y5494D01* Y5481D01* X2460Y5474D01* X2433D01* X2427Y5481D01* Y5494D01* X2433Y5501D01* X2460D01* X2487Y5514D02* X2500Y5527D01* Y5474D01* X2480D02* X2520D01* X2533D02* X2573Y5527D01* X2587Y5521D02* Y5481D01* X2593Y5474D01* X2620D01* X2627Y5481D01* Y5494D01* X2620Y5501D01* X2593D01* X2587Y5494D01* Y5521D02* X2593Y5527D01* X2620D01* X2627Y5521D01* X2640D02* Y5507D01* X2647Y5501D01* X2673D01* X2680Y5494D01* Y5481D01* X2673Y5474D01* X2647D01* X2640Y5481D01* Y5494D01* X2647Y5501D01* X2640Y5521D02* X2647Y5527D01* X2673D01* X2680Y5521D01* Y5507D01* X2673Y5501D01* X2693Y5481D02* X2700Y5474D01* X2727D01* X2733Y5481D01* Y5521D01* X2727Y5527D01* X2700D01* X2693Y5521D01* Y5507D01* X2700Y5501D01* X2727D01* X2733Y5507D01* X2747Y5481D02* Y5521D01* X2753Y5527D01* X2780D01* X2787Y5521D01* Y5481D02* X2780Y5474D01* X2753D01* X2747Y5481D01* Y5474D02* X2787Y5527D01* Y5521D02* Y5481D01* X2800Y5501D02* X2840D01* X2853Y5481D02* Y5521D01* X2860Y5527D01* X2887D01* X2893Y5521D01* Y5481D01* X2887Y5474D01* X2860D01* X2853Y5481D01* Y5474D02* X2893Y5527D01* X3712Y4760D02* D01* Y4638D01* X3662Y4629D02* D01* Y4760D01* X3637D02* Y4665D01* D01* X3612Y4616D02* D01* Y4760D01* X3587D02* Y4642D01* D01* X3537Y4595D02* D01* Y4760D01* X3487D02* Y4563D01* Y4562D01* Y4563D02* D01* X3263Y4648D02* Y4759D01* X3262Y4760D01* X3312D02* Y4750D01* X3313Y4751D01* Y4840D01* X3322Y4849D01* X3437Y4760D02* Y4562D01* X3438Y4561D01* X3416Y4538D02* X3387Y4567D01* Y4760D01* X3362D02* X3361Y4759D01* Y4671D01* X3202Y4512D01* Y4213D01* X3305Y4272D02* Y4201D01* X3331Y4208D02* X3251Y4128D01* Y4039D01* X3270Y4020D01* Y4070D02* Y4130D01* X3357Y4217D01* X3331Y4208D02* Y4297D01* X3357Y4217D02* Y4327D01* X3202Y4165D02* X3112Y4255D01* Y4673D01* Y4760D01* D01* X3012Y4627D02* D01* Y4760D01* X2962D02* Y4672D01* Y4627D01* Y4672D02* D01* X2893Y4667D02* X2912Y4686D01* Y4760D01* X2862D02* Y4578D01* X2815Y4531D01* X2813Y4568D02* X2837Y4592D01* Y4760D01* X2812D02* Y4613D01* Y4611D01* Y4613D02* D01* X2761Y4623D02* Y4628D01* X2762Y4629D01* Y4760D01* X2787D02* Y4677D01* Y4669D01* Y4677D02* D01* Y4669D02* Y4521D01* X2930Y4378D01* X2964D01* X3151Y4191D01* Y4039D01* X3170Y4020D01* X3205Y4045D02* X3220Y4030D01* Y4020D01* X3205Y3995D02* X3220Y3980D01* Y3970D01* X3238Y3947D02* X3220Y3929D01* Y3920D01* X3236Y3895D02* X3220Y3879D01* Y3870D01* X3198Y3837D02* Y3798D01* X3170Y3770D01* X3270Y3870D02* Y3835D01* X3288Y3817D01* X3356D01* X3363Y3824D01* X3346Y3794D02* X3377D01* X3422Y3839D01* X3601D01* X3620Y3820D01* Y3870D02* X3641Y3891D01* X3640D01* X3670Y3870D02* X3701Y3839D01* Y3812D01* X3720Y3870D02* Y3881D01* X3735Y3896D01* X3720Y3920D02* X3751Y3951D01* X3890D01* X4266Y3852D02* Y3890D01* X4263Y3893D01* X4137D02* Y3859D01* X4126Y3848D01* X3972Y3785D02* X4006D01* X4034Y3813D01* X4685D01* X4699Y3799D01* X4740D01* X4752Y3811D01* X4794D01* X4806Y3799D01* X4741Y3761D02* X4699D01* X4687Y3749D01* X4624D01* X4577Y3796D01* X4054D01* X4021Y3763D01* X3947D01* X3938Y3772D01* X3944Y3816D02* X3952Y3808D01* X4007D01* X4024Y3825D01* X4300D01* X4324Y3849D01* X4685D01* X4697Y3861D01* X4742D01* X4754Y3849D01* X4790D01* X4802Y3861D01* X4842D01* X4854Y3849D01* X4890D01* X4902Y3861D01* X4937D01* X5057Y3741D01* X5503D01* X5558Y3796D01* X5739D01* X5986Y3549D01* X6129D01* X6169Y3509D01* Y3230D01* X6454Y2945D01* Y2914D01* X6439Y2899D01* Y2860D01* X6470Y2829D01* Y2780D01* X6404Y2796D02* Y2769D01* X6389Y2754D01* Y2710D01* X6401Y2698D01* Y2659D01* X6370Y2680D02* X6353Y2697D01* Y2749D01* X6288Y2814D01* Y2845D01* X6310Y2867D01* Y2892D01* X6286Y2916D01* X6259D01* X6242Y2899D01* X6196D01* X6168Y2927D01* X6014D01* X5963Y2956D02* X5918D01* X5903Y2941D01* X5875D01* X5864Y2952D01* X5890Y2965D02* Y3004D01* X5891Y3005D01* X5864Y2952D02* X5817D01* X5741Y2876D01* X5636D01* X5419Y3093D01* Y3417D01* X5347Y3489D01* X4910D01* X4738Y3661D01* X4700D01* X4688Y3649D01* X4652D01* X4529Y3772D01* X4106D01* X4073Y3739D01* X3571D01* X3543Y3711D01* X3584Y3696D02* X3570Y3682D01* Y3670D01* X3542Y3610D02* X3439Y3507D01* X3232D01* X3220Y3495D01* Y3470D01* X3248Y3486D02* X3264Y3470D01* X3270D01* X3300Y3180D02* X3295Y3188D01* X3286Y3189D01* X3280Y3181D01* Y3180D01* Y3070D01* Y3069D01* X3274Y3061D01* X3265Y3062D01* X3260Y3070D01* Y3180D01* X3255Y3188D01* X3246Y3189D01* X3240Y3181D01* Y3180D01* Y3095D01* X3239Y3092D01* X3231Y3088D01* X3225Y3095D01* Y3180D01* X3220Y3188D01* X3211Y3189D01* X3205Y3181D01* Y3180D01* Y3095D01* Y3094D01* X3199Y3086D01* X3190Y3087D01* X3185Y3095D01* Y3145D01* X3160Y3170D01* Y3210D01* X3182Y3221D02* X3163Y3240D01* X3150D01* X3120Y3270D01* X3143Y3286D02* X3120Y3309D01* Y3320D01* X3113Y3242D02* X3101Y3254D01* Y3281D01* X3108Y3288D01* Y3305D01* X3101Y3312D01* Y3339D01* X3070Y3370D01* Y3320D02* X3089Y3301D01* Y3223D01* X3092Y3220D01* X3061Y3219D02* X3070Y3228D01* Y3270D01* X3020Y3320D02* X2998D01* X2977Y3299D01* X2962D01* X2940Y3321D01* X2970Y3320D02* X2995Y3345D01* Y3375D01* X3012Y3392D01* X3037D01* X3045Y3438D02* Y3400D01* X3037Y3392D01* X3020Y3370D02* X3043Y3347D01* Y3238D01* X3040Y3235D01* Y3095D01* X3044Y3087D01* X3054Y3086D01* X3059Y3094D01* Y3095D01* X3060Y3096D01* Y3185D01* Y3186D01* X3066Y3194D01* X3075Y3193D01* X3080Y3185D01* Y3095D01* X3085Y3087D01* X3094Y3086D01* X3100Y3094D01* Y3095D01* Y3185D01* Y3186D01* X3106Y3194D01* X3115Y3193D01* X3120Y3185D01* Y3095D01* X3124Y3087D01* X3134Y3086D01* X3139Y3094D01* Y3095D01* Y3110D01* X3140D01* X3135Y3115D01* Y3145D01* X3140Y3150D01* Y3210D01* Y3211D01* X3146Y3219D01* X3155Y3218D01* X3160Y3210D01* X3170Y3270D02* X3186Y3286D01* X3191D01* X3120Y3370D02* X3139Y3389D01* Y3445D01* X3138Y3446D01* X3120Y3470D02* X3108D01* X3095Y3483D01* Y3485D01* X3097D01* X3120Y3520D02* X3141D01* X3160Y3539D01* X3203D01* X3214Y3550D01* X3424D01* X3501Y3627D01* Y3704D01* X3548Y3751D01* X4047D01* X4080Y3784D01* X4556D01* X4629Y3711D01* X4686D01* X4698Y3699D01* X4739D01* X4751Y3711D01* X4795D01* X4912Y3594D01* X5308D01* X5455Y3447D01* Y3080D01* X5639Y2896D01* X5744D01* X5783Y2935D01* Y3013D01* X5812Y3042D01* X5899D01* X6014Y2927D01* X5892Y2761D02* X6043D01* X6124Y2680D01* X6170D02* X6124D01* X6120Y2730D02* X6063Y2787D01* X4917D01* X4920Y2730D02* X4871D01* X4837Y2696D01* X4801D01* X4796Y2661D02* X4784Y2649D01* X4745D01* X4732Y2662D01* X4704D01* X4671Y2629D01* X4451D01* X4450D01* X4451D02* X4417Y2595D01* X4389D01* X4356D02* Y2605D01* X4380Y2629D02* X4356Y2605D01* X4310Y2629D02* X4253D01* X4208Y2584D01* X3895D01* X3878Y2594D02* X3862Y2610D01* X3850D01* X3750D02* X3766Y2595D01* X3765Y2594D01* X3750Y2560D02* X3764Y2546D01* X3765D01* X3750Y2510D02* X3767Y2493D01* X3800Y2510D02* X3821Y2488D01* X3800Y2510D02* D01* X3803Y2463D02* X3817Y2449D01* X3803Y2463D02* X3800Y2460D01* X3765Y2445D02* X3750Y2460D01* X3715Y2445D02* X3700Y2460D01* X3715Y2495D02* X3700Y2510D01* X3370Y2979D02* Y2980D01* Y3105D01* Y3109D01* X3377Y3116D01* X3387Y3114D01* X3390Y3105D01* Y2980D01* X3395Y2972D01* X3404Y2971D01* X3410Y2979D01* Y2980D01* Y3000D01* X3435Y3025D01* Y3120D01* Y3121D01* X3441Y3129D01* X3450Y3128D01* X3455Y3120D01* Y3000D01* X3460Y2992D01* X3469Y2991D01* X3475Y2999D01* Y3000D01* Y3120D01* Y3121D01* X3481Y3129D01* X3490Y3128D01* X3495Y3120D01* Y3010D01* X3500Y3002D01* X3509Y3001D01* X3515Y3009D01* Y3010D01* Y3120D01* Y3121D01* X3521Y3129D01* X3530Y3128D01* X3535Y3120D01* Y2975D01* X3538Y2966D01* X3548Y2964D01* X3555Y2971D01* Y2975D01* Y3120D01* Y3121D01* X3561Y3129D01* X3570Y3128D01* X3575Y3120D01* Y3040D01* X3580Y3032D01* X3589Y3031D01* X3595Y3039D01* Y3040D01* Y3120D01* Y3121D01* X3601Y3129D01* X3610Y3128D01* X3615Y3120D01* Y3040D01* X3620Y3032D01* X3629Y3031D01* X3635Y3039D01* Y3040D01* Y3150D01* Y3151D01* X3641Y3159D01* X3650Y3158D01* X3655Y3150D01* Y3050D01* X3660Y3042D01* X3669Y3041D01* X3675Y3049D01* Y3050D01* Y3150D01* Y3151D01* X3681Y3159D01* X3909Y3220D02* X3885Y3196D01* X3697D01* X3681Y3159D02* X3690Y3158D01* X3695Y3150D01* Y3065D01* X3720Y3040D01* Y2964D01* X3738Y2946D01* X3832D01* X3881Y2897D01* X3999D01* X4010Y2908D01* X4069Y2914D02* X4097D01* X4118Y2935D01* X4130Y2977D02* X4115Y2993D01* X4063D01* Y2968D02* X4110D01* X4118Y2960D01* Y2935D01* X4130Y2977D02* Y2921D01* X4102Y2893D01* X4063Y3043D02* X4062Y3044D01* X3996D01* Y3093D02* X4063D01* D01* Y3118D02* X4059Y3122D01* X4004D01* X3971Y3220D02* X3999D01* X4002Y3218D01* X4063D01* Y3193D02* X4068Y3197D01* X4126D01* X3839Y3315D02* X3830Y3324D01* Y3460D01* X3770Y3520D01* X3748Y3485D02* X3763Y3470D01* X3770D01* X3747Y3440D02* X3767Y3420D01* X3770D01* Y3370D02* X3763D01* X3748Y3385D01* X3720Y3370D02* X3709D01* X3693Y3386D01* X3692Y3340D02* D01* X3711Y3320D01* X3720D01* X3747Y3340D02* X3767Y3320D01* X3770D01* Y3270D02* X3761D01* X3747Y3284D01* X3720Y3270D02* X3709D01* X3693Y3286D01* X3670Y3270D02* X3663D01* X3648Y3285D01* X3620Y3270D02* X3609D01* X3593Y3286D01* X3670Y3320D02* X3667D01* X3647Y3340D01* X3620Y3320D02* X3611D01* X3592Y3340D01* D01* X3570Y3320D02* X3567D01* X3547Y3340D01* X3520Y3320D02* X3511D01* X3492Y3340D01* D01* X3493Y3286D02* X3509Y3270D01* X3520D01* X3470D02* X3463D01* X3448Y3285D01* X3420Y3270D02* X3409D01* X3393Y3286D01* X3370Y3270D02* X3363D01* X3348Y3285D01* X3320Y3270D02* X3309D01* X3293Y3286D01* X3300Y3180D02* Y3070D01* X3305Y3062D01* X3314Y3061D01* X3320Y3069D01* Y3070D01* Y3180D01* Y3181D01* X3326Y3189D01* X3335Y3188D01* X3340Y3180D01* Y3080D01* X3350Y3070D01* Y2980D01* X3355Y2972D01* X3364Y2971D01* X3370Y2979D01* X3278Y2961D02* Y2960D01* X3299Y2939D01* X3310D01* X3344Y2927D02* Y2908D01* X3331Y2895D01* Y2798D01* X3319Y2791D02* X3350Y2760D01* X3354Y2737D02* X3342D01* X3329Y2724D01* X3300Y2760D02* X3272Y2788D01* Y2815D01* X3249Y2838D01* Y2891D01* X3235Y2905D01* X3291Y2882D02* X3319Y2854D01* Y2791D01* X3300Y2810D02* Y2817D01* X3278Y2839D01* X3250Y2810D02* X3208Y2852D01* X3192D01* X3171Y2867D02* Y2843D01* X3200Y2814D01* Y2810D01* X3135Y2892D02* X3086D01* X3067Y2911D01* Y2997D01* X3121Y3051D01* Y3050D02* Y3051D01* X3120Y3016D02* X3183D01* X3202Y2997D01* Y2898D01* X3171Y2867D01* X3150Y2810D02* X3140Y2820D01* Y2850D01* X3121Y2869D01* X3135Y2892D02* X3155Y2872D01* Y2840D01* X3175Y2820D01* Y2782D01* X3197Y2760D01* X3200D01* X3219Y2782D02* X3241Y2760D01* X3250D01* X3175Y2726D02* X3184D01* X3200Y2710D01* X3229Y2682D02* X3251Y2661D01* X3250Y2660D01* X3279Y2639D02* X3300Y2660D01* X3276Y2684D02* X3250Y2710D01* X3277Y2733D02* X3300Y2710D01* X3329Y2724D02* Y2662D01* X3400Y2610D02* X3401Y2611D01* X3379Y2633D01* X3400Y2660D02* X3401Y2661D01* X3421Y2640D01* X3450Y2660D02* Y2668D01* X3428Y2690D01* X3450Y2710D02* Y2711D01* X3425Y2736D01* X3400Y2710D02* X3380Y2730D01* X3354Y2737D02* X3370Y2753D01* Y2772D01* X3357Y2785D01* X3344D01* X3331Y2798D01* X3350Y2810D02* X3360Y2820D01* Y2847D01* X3394Y2886D02* X3381Y2873D01* Y2801D01* X3400Y2782D01* Y2760D01* X3450D02* X3426Y2784D01* Y2827D01* X3450Y2810D02* X3451D01* Y2845D01* X3400Y2810D02* Y2853D01* X3418Y2871D01* Y2894D01* X3393Y2919D01* X3367D01* X3344Y2927D02* X3359Y2942D01* X3597D01* X3600Y2939D01* X3628Y2967D01* X3550Y2810D02* Y2803D01* X3531Y2784D01* X3550Y2760D02* X3577Y2733D01* Y2704D01* X3585Y2676D02* X3575Y2666D01* Y2652D01* X3550Y2660D02* X3540Y2670D01* X3529D01* X3577Y2704D02* X3585Y2696D01* Y2676D01* X3600Y2660D02* X3626Y2686D01* X3645D01* X3650Y2710D02* X3630D01* X3623Y2703D01* X3600Y2710D02* X3633Y2743D01* X3600Y2760D02* X3603D01* X3633Y2790D01* X3600Y2810D02* Y2852D01* X3650Y2760D02* X3678Y2788D01* Y2831D01* X3680Y2857D02* X3679D01* X3650Y2828D01* Y2810D01* X3700D02* X3720Y2830D01* X3751D01* X3785Y2864D01* X3839D01* X3865Y2851D02* X3858Y2844D01* X3787D01* X3753Y2810D01* X3750D01* X3794Y2832D02* X3781Y2819D01* Y2771D01* X3817Y2777D02* X3800Y2760D01* X3781Y2771D02* X3770Y2760D01* X3750D01* X3729Y2790D02* X3700Y2761D01* Y2760D01* X3716Y2726D02* X3700Y2710D01* X3680Y2690D02* X3650Y2660D01* X3623Y2635D02* X3592D01* X3575Y2652D01* X3571Y2630D02* X3551Y2610D01* X3550D01* X3579Y2607D02* X3600D01* Y2610D01* X3500D02* Y2620D01* X3475Y2645D01* X3500Y2660D02* Y2672D01* X3525Y2697D01* X3500Y2710D02* X3503D01* X3530Y2737D01* X3500Y2760D02* Y2777D01* X3476Y2801D01* Y2828D01* X3500Y2810D02* X3559Y2869D01* X3646D01* X3685Y2890D02* X3506D01* X3500D01* X3494Y2898D01* X3496Y2907D01* X3506Y2910D01* X3641D01* X3670Y2939D02* X3641Y2910D01* X3685Y2890D02* X3690Y2885D01* X3896D01* X3934Y2847D01* X4140Y2800D02* X4255D01* X4320Y2865D01* Y2978D01* X4356Y3014D01* X4434D01* X4437Y3018D01* Y2993D02* X4368D01* X4332Y2957D01* Y2800D01* X4355Y2755D02* X4384Y2784D01* Y2903D01* X4305Y3046D02* X4279D01* X4270Y3055D01* Y3075D01* X4288Y3093D01* X4437D01* Y3118D02* X4303D01* X4280Y3140D01* Y3172D01* X4304Y3196D01* X4369Y3218D02* X4437D01* D01* Y3243D02* X4376D01* X4359Y3259D01* Y3300D01* X4348Y3311D01* Y3343D01* X4335Y3356D01* X4331Y3278D02* X4347Y3262D01* Y3210D01* X4365Y3193D01* X4437D01* Y3293D02* X4389D01* X4360Y3321D01* Y3366D01* X4339Y3387D01* X4359Y3414D02* X4398D01* X4402Y3418D01* X4437D01* Y3618D02* X4488D01* X4489D02* X4488D01* X4489D02* X4500Y3629D01* X4488Y3618D02* X4503Y3603D01* Y2941D01* X4464Y2902D01* X4437Y2943D02* Y2871D01* X4450Y2858D01* Y2691D01* X4380D01* X4310D01* X4355Y2755D02* X4026D01* X3934Y2847D01* X3919Y2832D01* X3794D01* X3800Y2810D02* X3818D01* X3844Y2784D01* X3850Y2810D02* X3871Y2789D01* Y2774D01* X3850Y2760D02* X3881Y2729D01* X3915D01* X3900Y2760D02* X3911D01* X3932Y2739D01* X3915Y2729D02* X3922Y2722D01* X3983D01* X4005Y2649D02* Y2650D01* X3994D01* X3934Y2710D01* X3900D01* X3816Y2726D02* X3800Y2710D01* X3833Y2693D02* X3850Y2710D01* X3833Y2692D02* Y2693D01* X3850Y2660D02* X3863D01* X3874Y2671D01* X3900Y2660D02* Y2646D01* X3889Y2635D01* X3900Y2610D02* X4176D01* X4225Y2659D01* X4599D01* X4655Y2715D01* X4684D01* X4707Y2692D01* X4731D01* X4757Y2718D01* X4779D01* X4801Y2696D01* X5001Y2761D02* X4889Y2649D01* X4852D01* X4840Y2661D01* X4796D01* X4772Y2632D02* X4740Y2600D01* X4701D01* X4688Y2612D01* X4644D01* X4451Y2550D02* Y2491D01* X4460D02* X4451D01* X4486Y2459D02* X4504Y2441D01* X5031D01* X5070Y2480D01* X5133Y2475D02* Y2493D01* X5157Y2517D02* X5133Y2493D01* Y2475D02* X5050Y2392D01* X4550D01* X4471Y2313D01* X4290D01* X4238Y2365D01* X4264Y2376D02* X4283Y2395D01* X4300D01* X4238Y2365D02* Y2401D01* X4170Y2469D01* X4144Y2445D02* X4100D01* X4140Y2495D02* X4100D01* Y2545D02* X4142D01* X4191Y2520D02* X4037D01* X4019Y2502D01* X3958D01* X3900Y2560D01* Y2510D02* X3977Y2433D01* X4025D01* X4038Y2420D01* X4182D01* X4191Y2520D02* X4240Y2471D01* X4363D01* X4375Y2459D01* X4486D01* X4451Y2491D02* X4400D01* X4391D01* X4337Y2545D01* X4300D01* X4510Y2289D02* X4246D01* X4163Y2372D01* X4008D01* X3958Y2422D01* Y2434D01* X3907Y2485D01* X3875D01* X3850Y2460D01* Y2410D02* X3869Y2429D01* X3908D01* X3921Y2416D01* Y2401D01* X3986Y2336D01* X4124D01* X4207Y2253D01* X4571D01* X4575Y2321D02* X4531Y2277D01* X4232D01* X4149Y2360D01* X4000D01* X3946Y2414D01* Y2429D01* X3915Y2460D01* X3900D01* Y2410D02* Y2404D01* X3980Y2324D01* X4116D01* X4199Y2241D01* X4589D01* X4604Y2256D01* X5141D01* X5233Y2348D01* X5205Y2141D02* X5168D01* X5147Y2120D01* X4220D01* X4076Y2264D01* X3950D01* X3923Y2291D01* X3854D01* X3842Y2279D01* X3850Y2260D02* X3864Y2274D01* X3850Y2310D02* X3877Y2337D01* X3911D01* X3960Y2288D01* X4092D01* X4221Y2159D01* X5120D01* X5246Y2285D01* X5310D01* X5365Y2340D01* X5646D01* X5706Y2400D01* X5844D01* X5954Y2510D01* Y2547D01* X5935Y2566D01* Y2593D01* X5972Y2630D01* X6020D01* X5801Y2599D02* Y2556D01* X5609Y2364D01* X5346D01* X5308Y2326D01* X5309Y2305D02* X5356Y2352D01* X5627D01* X5702Y2427D01* X5812D01* X5839Y2454D01* Y2496D01* X5870Y2527D01* Y2580D01* X5970Y2480D02* X5861Y2371D01* X5711D01* X5668Y2328D01* X5376D01* X5399Y2280D02* Y2268D01* X5433Y2234D01* Y2181D01* X5461Y2210D02* Y2280D01* Y2210D02* X5580D01* X5376Y2328D02* X5313Y2265D01* X5256D01* X5131Y2140D01* X4220D01* X4084Y2276D01* X3955D01* X3921Y2310D01* X3900D01* Y2360D02* X3905D01* X3965Y2300D01* X4100D01* X4195Y2205D01* X5144D01* X5243Y2304D01* X5309D01* Y2305D01* X5308Y2326D02* X5240D01* X5138Y2224D01* X4196D01* X4108Y2312D01* X3975D01* X3903Y2384D01* X3874D01* X3850Y2360D01* X3800Y2410D02* X3816D01* X3847Y2441D01* X3916D01* X3934Y2423D01* Y2405D01* X3991Y2348D01* X4132D01* X4215Y2265D01* X4552D01* X4587Y2300D01* X5129D01* X5216Y2387D01* X5304D01* X5337Y2420D01* X5510D01* X5570Y2480D01* X5470D02* X5430Y2440D01* X5239D01* X5120Y2321D01* X4575D01* X4571Y2253D02* X4596Y2278D01* X5138D01* X5228Y2368D01* X5308D01* X5340Y2400D01* X5546D01* X5605Y2459D01* Y2494D01* X5570Y2529D01* Y2580D01* X5420Y2730D02* Y2679D01* X5229Y2488D01* X5181Y2540D02* X5205Y2564D01* Y2596D01* X5184Y2617D01* Y2643D01* X5220Y2679D01* Y2730D01* X5120D02* Y2681D01* X5154Y2647D01* Y2617D01* X5134Y2597D01* Y2569D01* X5157Y2546D01* Y2517D01* X5233Y2348D02* X5308D01* X5340Y2380D01* X5559D01* X5638Y2459D01* Y2495D01* X5723Y2580D01* X5770D01* X5801Y2599D02* X5720Y2680D01* Y2730D01* X5892Y2761D02* X5874Y2743D01* X5852D01* X5834Y2761D01* X5001D01* X4917Y2787D02* X4893Y2811D01* X4846D01* X4830Y2795D01* X4801D01* X4783Y2813D01* X4750D01* X4735Y2798D01* X4699D01* X4680Y2817D01* X4611D01* X4528Y2900D01* Y3594D01* X4524Y3598D01* X4510Y2289D02* X4567Y2346D01* X5113D01* X5229Y2462D01* Y2488D01* X5181Y2540D02* Y2518D01* X5206Y2493D01* Y2467D01* X5107Y2368D01* X4554D01* X4487Y2301D01* X4275D01* X4217Y2359D01* X4182Y2420D02* X4217Y2385D01* Y2359D01* X4196Y2376D02* X4177Y2395D01* X4100D01* X4170Y2469D02* X3968D01* X3908Y2529D01* X3869D01* X3850Y2510D01* X3880Y2546D02* X3866Y2560D01* X3850D01* X3866Y2575D02* X3886D01* X3895Y2584D01* X3866Y2575D02* X3859Y2582D01* X3835D01* X3826Y2573D02* X3835Y2582D01* X3815Y2595D02* X3800Y2610D01* X3815Y2644D02* X3816Y2645D01* X3800Y2660D01* X3766Y2676D02* X3750Y2660D01* X3715Y2675D02* X3700Y2660D01* X3718Y2628D02* X3700Y2610D01* X3675Y2629D02* Y2585D01* X3700Y2560D01* X3680Y2538D02* Y2559D01* X3660Y2579D01* X3642D01* X3635Y2572D01* X3650Y2560D02* Y2559D01* X3618Y2527D01* X3635Y2572D02* X3615D01* X3608Y2579D01* X3375D01* X3360Y2564D01* X3335Y2586D02* X3350Y2601D01* Y2610D01* X3324Y2627D02* X3350Y2653D01* Y2660D01* X3329Y2662D02* X3300Y2633D01* Y2610D01* Y2576D01* X3384Y2492D01* X3476D01* X3700Y2268D01* Y2260D01* X3712Y2298D02* X3700Y2310D01* X3714Y2346D02* X3700Y2360D01* X3533Y2223D02* X3625Y2315D01* Y2314D01* X3700Y2410D02* X3716Y2394D01* X3750Y2410D02* X3764Y2396D01* X3750Y2360D02* X3764Y2346D01* X3750Y2310D02* X3764Y2297D01* X3763Y2296D01* X3750Y2260D02* X3769Y2279D01* X3842D01* X3813Y2296D02* X3814Y2297D01* X3800Y2310D01* Y2260D02* X3819Y2241D01* X3915D01* X3922Y2234D01* X3945D01* X3963Y2252D01* X4068D01* X4259Y2061D01* Y1930D01* X4216Y1916D02* Y2084D01* X4060Y2240D01* X3972D01* X3954Y2222D01* X3917D01* X3910Y2229D01* X3869D01* X3850Y2210D01* Y2160D02* X3869Y2141D01* X3919D01* X3962Y2098D01* Y2034D01* X3945Y2005D02* X4320Y1630D01* X4753D01* X4798Y1585D01* X4816Y1604D02* Y1562D01* X5106Y1574D02* X4967D01* X4801Y1740D01* X4339D01* X4139Y1940D01* Y2001D01* X3953Y2187D01* X3923D01* X3900Y2210D01* Y2160D02* X3960D01* X4103Y2017D01* Y1887D01* X4300Y1690D01* X4730D01* X4816Y1604D01* X4831Y1514D02* X4829D01* Y1501D01* X4388Y1563D02* D01* Y1501D01* X4357D02* X4356Y1502D01* Y1563D01* X4325D02* D01* Y1501D01* X4294D02* Y1563D01* D01* X4280Y1590D02* X4606D01* X4640Y1556D01* Y1501D02* Y1556D01* X4671Y1501D02* Y1554D01* X4615Y1610D01* X4300D01* X4180Y1730D01* X4007D01* X3900Y1837D01* X3873D01* X3850Y1860D01* X3918Y1742D02* X3900Y1760D01* Y1810D02* X3997Y1713D01* X4157D01* X4280Y1590D01* X4229Y1600D02* X4211Y1582D01* X4105D01* X4088Y1565D01* X3915D01* X3986Y1546D02* Y1519D01* X3979Y1512D01* Y1501D01* X3915Y1565D02* X3884Y1534D01* Y1501D01* X3853D02* X3854D01* Y1559D01* X3790Y1501D02* Y1534D01* X3836Y1580D01* X4084D01* X4098Y1594D01* X4172D01* X4190Y1612D01* Y1642D02* X4147Y1685D01* X4128D01* X4114Y1671D01* Y1657D01* X4136Y1560D02* D01* Y1501D01* X4168D02* Y1561D01* D01* X4199D02* D01* Y1501D01* X4231D02* Y1502D01* Y1560D01* X4229Y1600D02* Y1624D01* X4190Y1612D02* Y1642D01* X4229Y1624D02* X4152Y1701D01* X4115D01* X4094Y1680D01* Y1654D01* X4060Y1620D01* X3873D01* X3850Y1643D01* Y1710D01* X3781Y1651D02* Y1791D01* X3800Y1810D01* X3802Y1835D02* Y1860D01* X3800D01* X3821Y1882D02* X3800Y1903D01* Y1910D01* Y1960D02* X3808D01* X3830Y1938D01* X3850Y1960D02* X3873Y1937D01* X3903D01* X3900Y1960D02* X3912D01* X3925Y1947D01* X3900Y1860D02* X3910D01* X3945Y1825D01* X3965Y1802D02* Y1845D01* X3900Y1910D01* X3903Y1937D02* X3987Y1853D01* Y1781D01* X4008Y1759D02* Y1902D01* X3900Y2010D01* X3872Y1993D02* X3853Y2013D01* X3850Y2010D01* X3874Y2035D02* X3850Y2060D01* D01* X3826Y2035D02* X3801Y2061D01* X3800Y2060D01* X3817Y2092D02* X3800Y2110D01* D01* X3900Y2060D02* X3925Y2036D01* X3924Y2035D01* X3945Y2005D02* Y2095D01* X3918Y2092D02* X3900Y2110D01* X3945Y2095D02* X3911Y2129D01* X3831D01* X3800Y2160D01* X3768Y2142D02* X3750Y2160D01* X3700Y2210D02* X3699Y2209D01* X3715Y2192D01* X3700Y2160D02* D01* X3714Y2145D01* X3700Y2110D02* X3701Y2111D01* X3715Y2096D01* X3750Y2110D02* X3768Y2093D01* X3767Y2092D01* X3750Y2060D02* X3765Y2045D01* X3650Y2060D02* X3651Y2061D01* X3665Y2046D01* X3700Y2060D02* X3701Y2061D01* X3715Y2046D01* X3700Y2010D02* X3715Y1995D01* X3701Y1961D02* X3716Y1945D01* X3700Y1960D02* X3701Y1961D01* X3750Y2010D02* X3751Y2011D01* X3767Y1994D01* X3750Y1960D02* X3770Y1940D01* X3750Y1910D02* X3749Y1909D01* X3770Y1888D02* X3749Y1909D01* X3718Y1895D02* X3702Y1912D01* X3700Y1910D01* X3675Y1935D02* X3650Y1910D01* X3630Y1796D02* X3647Y1813D01* X3650Y1810D01* X3664Y1845D02* X3665Y1846D01* X3650Y1860D01* X3700D02* X3715Y1845D01* X3701Y1811D02* X3723Y1788D01* X3700Y1810D02* X3701Y1811D01* X3750Y1810D02* X3769Y1791D01* Y1751D01* X3753Y1735D01* X3781Y1651D02* X3750Y1620D01* X3710D01* X3702Y1615D01* X3701Y1606D01* X3709Y1600D01* X3710D01* X3760D01* X3761D01* X3769Y1594D01* X3768Y1585D01* X3760Y1580D01* X3720D01* X3712Y1575D01* X3711Y1566D01* X3719Y1560D01* X3720D02* X3719D01* X3720D02* X3760D01* X3761D01* X3769Y1554D01* X3768Y1545D01* X3760Y1540D01* X3720D01* X3712Y1535D01* X3711Y1526D01* X3719Y1520D01* X3720D02* X3719D01* X3720D02* X3760D01* X3761D01* X3769Y1514D01* X3768Y1505D01* X3760Y1500D01* X3720D01* X3712Y1495D01* X3711Y1486D01* X3719Y1480D01* X3720D02* X3719D01* X3720D02* X3760D01* X3761D01* X3769Y1474D01* X3768Y1465D01* X3760Y1460D01* X3720D01* X3712Y1455D01* X3711Y1446D01* X3719Y1440D01* X3720D02* X3719D01* X3720D02* X3790D01* X3791D01* X3799Y1434D01* X3798Y1425D01* X3790Y1420D01* X3720D01* X3712Y1415D01* X3711Y1406D01* X3719Y1400D01* X3720D02* X3719D01* X3720D02* X3830D01* X3831D01* X3839Y1394D01* X3838Y1385D01* X3830Y1380D01* X3720D01* X3712Y1375D01* X3711Y1366D01* X3719Y1360D01* X3681D02* X3689Y1354D01* X3688Y1345D01* X3680Y1340D01* X3230D01* X3222Y1335D01* X3221Y1326D01* X3229Y1320D01* X3230D01* X3788D01* X3798Y1310D01* X3859D01* X3900Y1269D01* X3867Y1235D02* Y1179D01* X3868D01* X3837Y1178D02* D01* Y1179D01* X3774D02* X3773D01* Y1220D01* X3752Y1241D01* X3961Y1300D02* X3931Y1270D01* X3900Y1269D02* Y1179D01* X3931D02* Y1270D01* X3961Y1300D02* X4070D01* X4078Y1305D01* X4079Y1314D01* X4071Y1320D01* X4070D01* X3930D01* X3929D01* X3921Y1326D01* X3922Y1335D01* X3930Y1340D01* X4100D01* X4108Y1345D01* X4120Y1179D02* Y1237D01* D01* X4151D02* Y1179D01* X4152D01* X4183D02* X4184D01* Y1237D01* X4215Y1179D02* Y1248D01* X4196Y1267D01* X4154D01* X4105Y1316D01* X4108Y1345D02* X4109Y1354D01* X4101Y1360D01* X4100D01* X3930D01* X3929D01* X3921Y1366D01* X3922Y1375D01* X3930Y1380D01* X4220D01* X4228Y1385D01* X4229Y1394D01* X4221Y1400D01* X4220D01* X3920D01* X3880Y1360D01* X3720D01* X3719D02* X3720D01* X3851Y1416D02* X4426D01* X4451Y1441D01* Y1501D01* X4482Y1502D02* X4483Y1503D01* X4482Y1481D02* Y1502D01* X4483Y1503D02* Y1501D01* X4546D02* Y1525D01* X4544D01* X4577Y1501D02* Y1500D01* X4574Y1497D01* Y1467D01* X4734Y1513D02* D01* Y1501D01* X4766D02* Y1512D01* D01* X4797D02* D01* Y1501D01* X4892D02* Y1514D01* D01* X4923Y1513D02* D01* Y1501D01* X4954Y1513D02* X4955D01* Y1501D01* X4986D02* Y1513D01* X4989D01* X5049Y1501D02* Y1447D01* D01* X5173Y1432D02* X5115Y1374D01* X5075D01* X4939Y1238D01* Y1179D01* X4971D02* D01* Y1209D01* X5033Y1235D02* X5034D01* Y1179D01* X4908D02* Y1239D01* X5061Y1392D01* X5104D01* X5154Y1442D01* X5139Y1459D02* X5091Y1411D01* X5050D01* X4876Y1237D01* Y1179D01* X4813D02* D01* Y1207D01* X4782Y1206D02* Y1179D01* D01* X4750Y1207D02* Y1179D01* D01* X4719D02* D01* Y1236D01* X4656Y1179D02* Y1261D01* X4609Y1308D01* Y1368D01* X4661Y1420D01* Y1436D01* X4631Y1417D02* X4594Y1380D01* Y1285D01* X4624Y1255D01* Y1179D01* X4530Y1210D02* Y1179D01* D01* X4561D02* X4559Y1181D01* Y1290D01* X4424Y1275D02* X4439D01* X4467Y1247D01* Y1179D01* X4435D02* Y1233D01* D01* X4373D02* Y1179D01* X4372D01* X4374Y1069D02* D01* X4341Y1179D02* X4340D01* Y1233D01* X4310Y1235D02* Y1179D01* X4309D01* X4278D02* Y1272D01* X4289Y1283D01* Y1368D01* X1641Y1217D02* X1645D01* Y1069D01* X2327D01* D01* X2143Y1336D02* X2083D01* Y1340D01* Y1440D02* X2081Y1438D01* X2018D01* X2017Y1540D02* X2083D01* X2017Y1590D02* X2083D01* X2237D02* X2298D01* X2302Y1594D01* X2300Y1639D02* X2238D01* X2237Y1640D01* Y1690D02* X2190D01* X2150Y1730D01* X2171Y1757D02* X2187Y1741D01* X2237D01* Y1740D01* X2171Y1800D02* X2181Y1790D01* X2237D01* Y1840D02* X2162D01* X2152Y1850D01* X2171Y1877D02* X2184Y1890D01* X2237D01* Y1940D02* X2242Y1945D01* Y1972D01* X2232Y1994D02* X2286D01* X2308Y1972D01* X2363D01* X2421D01* X2456Y1937D01* Y1773D01* X2478Y1751D01* Y1606D01* X2661Y1726D02* X2693Y1694D01* X2784D01* X2800Y1710D01* X2823Y1726D02* X2839Y1710D01* X2777Y1780D02* X2797Y1760D01* X2800D01* X2822Y1780D02* D01* X2841Y1760D01* X2850D01* X2874Y1727D02* Y1726D01* X2890Y1710D02* X2900D01* X2890D02* X2874Y1726D01* X2850Y1710D02* X2839D01* X2927Y1724D02* X2941Y1710D01* X2950D01* X2973Y1726D02* X2989Y1710D01* X3000D01* X3027Y1724D02* X3041Y1710D01* X3050D01* X3087Y1696D02* X3101Y1710D01* X3100D01* X3150Y1760D02* X3151D01* Y1736D01* X3150Y1710D02* X3151D01* Y1667D01* X3181Y1660D02* Y1741D01* X3200Y1760D01* X3250D02* X3231Y1741D01* Y1651D01* X3253Y1629D01* X3246Y1589D02* X3255Y1588D01* X3260Y1580D01* Y1570D01* X3265Y1562D01* X3280Y1580D02* X3300Y1600D01* Y1660D01* X3277Y1648D02* X3250Y1675D01* Y1710D01* X3200D02* Y1587D01* X3205Y1582D01* X3178Y1605D02* X3170Y1600D01* X3019D01* X2979Y1560D01* Y1501D01* X2947D02* Y1472D01* D01* X2916D02* D01* Y1501D01* X2884D02* Y1471D01* D01* X2727Y1501D02* Y1503D01* X2731D01* X2758Y1502D02* D01* Y1501D01* X2789Y1503D02* X2790D01* Y1501D01* X2821D02* Y1503D01* D01* X2794Y1439D02* X2805Y1428D01* Y1179D01* X2774D02* Y1240D01* D01* X2742Y1179D02* Y1236D01* D01* X2711Y1237D02* D01* Y1179D01* X3026D02* Y1421D01* X3032Y1427D01* X3058Y1444D02* X3057Y1443D01* Y1179D01* X3183D02* Y1330D01* X3155Y1358D01* X3138Y1380D02* Y1501D01* X3136D01* X3168D02* Y1432D01* X3180Y1420D01* X3212Y1390D01* X3488D01* X3510Y1380D02* X3502Y1375D01* X3501Y1366D01* X3509Y1360D01* X3510D01* X3680D01* X3681D01* X3498Y1234D02* Y1179D01* Y1234D02* D01* X3467Y1242D02* Y1179D01* X3404Y1241D02* D01* Y1179D01* X3435D02* Y1241D01* D01* X3467Y1242D02* X3441Y1268D01* X3372D01* X3341Y1179D02* D01* Y1242D01* X3310D02* Y1179D01* X3309D01* X3278Y1239D02* D01* Y1179D01* X3246D02* Y1238D01* D01* X3121Y1398D02* Y1349D01* X3152Y1318D01* Y1179D01* X3120D02* Y1310D01* X3084Y1346D01* Y1424D01* X3076Y1472D02* Y1501D01* X3073D01* X3042D02* D01* Y1472D01* X2950Y1421D02* Y1420D01* X2963Y1407D01* Y1179D01* X2931D02* D01* Y1243D01* X2868Y1238D02* D01* Y1179D01* X2900D02* Y1386D01* X2883Y1403D01* X3181Y1660D02* X3161Y1640D01* X2880D01* X2872Y1635D01* X2871Y1626D01* X2879Y1620D01* X2880D02* X2879D01* X2880D02* X3170D01* X3171D01* X3179Y1614D01* X3178Y1605D01* X3265Y1562D02* X3274Y1561D01* X3280Y1569D01* Y1570D01* Y1580D01* X3324Y1562D02* X3325D01* Y1501D01* X3294D02* Y1565D01* X3313Y1584D01* X3331D01* X3361Y1554D01* X3357Y1501D02* Y1504D01* D01* X3361Y1554D02* X3417D01* X3454Y1591D01* Y1638D01* X3460Y1650D02* Y1680D01* Y1681D01* X3450Y1690D02* Y1710D01* X3400D02* X3410D01* X3423Y1697D01* X3450Y1690D02* X3434Y1674D01* X3401D01* X3350Y1710D02* Y1684D01* X3330Y1670D02* X3320Y1680D01* Y1690D01* X3330Y1670D02* Y1610D01* Y1609D01* X3324Y1601D01* X3315Y1602D01* X3310Y1610D01* Y1630D01* X3320Y1640D01* Y1660D01* X3315Y1668D01* X3306Y1669D01* X3300Y1661D01* Y1660D01* X3276Y1682D02* X3302Y1708D01* X3300Y1710D01* X3320Y1690D02* X3330Y1700D01* Y1740D01* X3350Y1760D01* X3300Y1810D02* X3292D01* X3277Y1795D01* X3250Y1810D02* X3219Y1779D01* Y1614D01* X3229Y1604D01* X3246Y1589D02* X3240Y1581D01* Y1580D01* Y1570D01* X3260Y1550D01* Y1503D01* X3262Y1501D01* X3199D02* Y1433D01* X3220Y1412D01* X3468D01* X3479Y1423D01* X3480D01* X3488Y1390D02* X3513Y1415D01* X3510Y1380D02* X3680D01* X3688Y1385D01* X3689Y1394D01* X3681Y1400D01* X3680D01* X3590D01* X3589D01* X3581Y1406D01* X3582Y1415D01* X3590Y1420D01* X3680D01* X3688Y1425D01* X3689Y1434D01* X3681Y1440D01* X3680D01* X3640D01* X3639D02* X3640D01* X3639D02* X3631Y1446D01* X3632Y1455D01* X3640Y1460D01* X3680D01* X3688Y1465D01* X3689Y1474D01* X3681Y1480D01* X3680D01* X3640D01* X3639D02* X3640D01* X3639D02* X3631Y1486D01* X3632Y1495D01* X3640Y1500D01* X3680D01* X3688Y1505D01* X3689Y1514D01* X3681Y1520D01* X3680D01* X3640D01* X3639D02* X3640D01* X3639D02* X3631Y1526D01* X3632Y1535D01* X3640Y1540D01* X3680D01* X3688Y1545D01* X3689Y1554D01* X3681Y1560D01* X3680D01* X3640D01* X3639D02* X3640D01* X4114Y1657D02* X4065Y1608D01* X3828D01* X3800Y1636D01* Y1710D01* X3753Y1735D02* X3744D01* X3720Y1711D01* X3700Y1685D02* Y1710D01* X3720Y1711D02* Y1670D01* X3710Y1660D01* X3630D01* X3622Y1655D01* X3621Y1646D01* X3629Y1640D01* X3630D01* X3680D01* X3681D01* X3689Y1634D01* X3688Y1625D01* X3680Y1620D01* X3630D01* X3622Y1615D01* X3621Y1606D01* X3629Y1600D01* X3630D01* X3680D01* X3681D01* X3689Y1594D01* X3688Y1585D01* X3680Y1580D01* X3640D01* X3632Y1575D01* X3631Y1566D01* X3639Y1560D01* X3607Y1565D02* Y1597D01* X3600Y1604D01* Y1710D01* X3550D02* X3553Y1707D01* Y1566D01* X3580Y1580D02* Y1741D01* X3581D01* X3600Y1760D01* X3550D02* X3531Y1741D01* Y1598D01* X3522Y1589D01* Y1564D01* X3490Y1610D02* X3480Y1620D01* Y1680D01* X3475Y1688D01* X3466Y1689D01* X3460Y1681D01* X3500Y1710D02* X3497Y1707D01* Y1632D01* X3490Y1610D02* X3510D01* X3519Y1619D01* Y1779D01* X3550Y1810D01* X3487Y1791D02* X3503Y1807D01* X3500Y1810D01* X3478Y1839D02* X3500Y1861D01* Y1860D01* X3550D02* X3568D01* X3576Y1852D01* X3588Y1832D02* X3600Y1844D01* Y1860D01* X3576Y1887D02* X3600Y1911D01* Y1910D01* X3550Y1911D02* Y1910D01* X3534Y1895D02* X3550Y1911D01* X3520Y1920D02* X3510D01* X3500Y1910D01* X3463Y1923D02* X3450Y1910D01* X3350D02* X3351Y1909D01* X3334Y1892D01* X3300Y1910D02* X3299Y1911D01* X3282Y1894D01* X3249Y1861D02* X3250Y1860D01* X3277Y1838D02* X3300Y1861D01* Y1860D01* X3331Y1841D02* X3350Y1860D01* X3380Y1843D02* X3399Y1862D01* X3400Y1860D01* X3435Y1849D02* X3448Y1862D01* X3450Y1860D01* Y1810D02* X3448Y1812D01* X3422Y1786D01* X3450Y1760D02* X3449Y1762D01* X3422Y1735D01* X3400Y1760D02* Y1770D01* X3381Y1789D01* X3350Y1810D02* Y1787D01* X3375Y1762D01* Y1672D01* X3390Y1657D01* X3435D01* X3454Y1638D01* X3460Y1650D02* X3470Y1640D01* Y1600D01* X3500Y1570D01* Y1546D01* X3514Y1532D01* Y1501D01* X3486D02* X3483D01* X3451D02* Y1498D01* X3449D01* X3420Y1501D02* Y1536D01* X3415D01* X2877Y1824D02* X2891Y1810D01* X2900D01* X2927Y1824D02* X2941Y1810D01* X2950D01* X2972Y1780D02* D01* X2991Y1760D01* X3000D01* X3027Y1780D02* X3047Y1760D01* X3050D01* X3027Y1824D02* X3041Y1810D01* X3050D01* X3084Y1794D02* X3100Y1810D01* X3130Y1800D02* X3140Y1810D01* X3136Y1846D02* X3150Y1860D01* X3181Y1892D02* X3200Y1911D01* Y1910D01* X3233Y1895D02* X3249Y1911D01* X3250Y1910D01* X3249Y1861D02* X3225Y1837D01* X3200Y1860D02* X3201D01* X3184Y1843D01* X3150Y1810D02* X3140D01* X3088Y1850D02* X3099Y1861D01* X3100Y1860D01* X3083Y1892D02* X3101Y1910D01* X3100D01* X3000Y1860D02* X2991D01* X2972Y1880D01* D01* X2950Y1860D02* X2947D01* X2927Y1880D01* X2950Y2010D02* X2956D01* X2978Y2032D01* X2950Y2110D02* X2926Y2135D01* X2925Y2134D01* X2778Y2088D02* X2800Y2110D01* X2827Y2035D02* X2802Y2010D01* X2800D01* X2825Y1929D02* Y1901D01* X2805Y1881D01* X2784D01* X2609Y1706D01* Y1626D01* X2551Y1568D01* X2328D01* X2302Y1594D01* X2305Y1541D02* X2237D01* Y1540D01* Y1440D02* X2303D01* Y1441D01* X1876Y1758D02* X1823D01* X1808Y1743D01* Y1818D02* X1836Y1846D01* X1876D01* Y1925D02* X1877Y1926D01* X1887D01* X1905Y1944D01* X1876Y2004D02* X1841Y1969D01* X1709D01* X1682Y1942D01* Y1867D01* X1631Y1816D01* X1756Y2041D02* X1798Y2083D01* X1876D01* X1910Y2117D01* X1975D01* X2012Y2080D01* X2047D01* X2101D01* X2179D02* Y2047D01* X2232Y1994D01* X2483Y1793D02* Y1799D01* X2501Y1817D01* Y1970D01* X2392Y2079D01* X2361Y2167D02* Y2170D01* Y2102D02* Y2100D01* X2392Y2079D02* Y2206D01* X2337Y2261D01* X2107D01* X2080Y2288D01* X2048D01* X1892D01* X1876Y2272D01* Y2240D01* X1805D01* X1756Y2191D01* Y2116D02* X1831D01* D01* D01* X1876Y2161D01* X1955Y3470D02* X1894Y3409D01* Y3088D01* X1820Y3014D01* Y2676D01* X1798Y2654D01* Y2629D01* X1813Y2614D01* X1831D01* X1845Y2600D01* Y2543D01* X1873Y2515D01* X1922D01* D01* Y2565D02* X1878D01* X1865Y2578D01* Y2606D01* X1847Y2624D01* Y2985D01* X1880Y3018D01* X1922Y2865D02* X1971D01* X1994Y2888D01* Y3218D01* X2057Y3281D01* X2160D01* X2189Y3252D01* X2254D01* X2240Y3270D02* X2305D01* X2333Y3409D02* X2315Y3427D01* X2251D01* X2219Y3459D01* X2204Y3402D02* X2161D01* X2160Y3401D01* X2055Y3420D02* X1937D01* X1911Y3394D01* Y3012D01* X1869Y2970D01* Y2627D01* X1881Y2615D01* X1922D01* X1981Y2828D02* X1968Y2815D01* X1922D01* Y2765D02* X1963D01* X2016Y2818D01* Y3145D01* X2039Y3168D01* X2074D01* X2125Y3219D01* X2160D01* X2225D01* Y3192D02* X2194Y3161D01* X2160D01* X2124D01* X2099Y3136D01* Y3103D01* X2075Y3079D01* Y2746D01* X2123Y2698D01* Y2599D01* X2207Y2515D01* X2208Y2565D02* X2258D01* Y2515D02* X2207D01* X2208Y2565D02* X2148Y2625D01* Y2712D01* X2103Y2757D01* Y2790D01* X2104Y2791D01* X2258Y2615D02* X2216D01* X2193Y2638D01* Y2754D01* X2178Y2769D01* Y2812D01* X2104Y2886D01* Y3073D01* X2130Y3099D01* X2160D01* X2180D01* X2254Y3173D01* X2274Y3192D02* X2293Y3173D01* X2391Y3060D02* X2404Y3047D01* X2440D01* X2451Y3058D01* Y3094D01* X2426Y3068D02* X2412Y3082D01* Y3094D01* X2451Y3133D02* X2430Y3154D01* X2387D01* X2372Y3173D02* X2355Y3156D01* Y3082D01* X2323Y3050D01* Y2929D01* X2334Y2918D01* X2467D01* X2320Y2829D02* X2306Y2815D01* X2258D01* Y2765D02* X2210D01* X2195Y2780D01* Y2839D01* X2258Y2865D02* Y2866D01* X2173D01* X2147Y2892D02* X2148Y2891D01* X2350D01* X2293Y2926D02* X2309Y2942D01* Y3070D01* X2333Y3094D01* X2293D02* X2286Y3087D01* Y2978D01* X2284D01* X2160Y2979D02* X2161D01* X2190Y3008D01* X2160Y3041D02* X2162D01* X2254Y3133D01* X2293D02* X2313Y3153D01* Y3262D01* X2305Y3270D01* X2293Y3252D02* X2272Y3230D01* X2274Y3192D02* X2225D01* Y3219D02* X2236Y3230D01* X2272D01* X2240Y3270D02* X2216Y3294D01* Y3317D01* X2194Y3339D01* X2160D01* X2412Y3606D02* Y3616D01* X2397Y3631D01* Y3800D01* X2493Y3896D01* X2584D01* X2625Y3855D01* Y3840D02* Y3855D01* X2675Y3840D02* Y3858D01* X2623Y3910D01* X2479D01* X2379Y3810D01* Y3629D01* X2394Y3614D01* Y3584D01* X2412Y3567D01* X2372D02* X2365D01* X2358Y3560D01* X2412Y3527D02* X2431Y3547D01* Y3627D01* X2454Y3650D01* Y3829D01* X2506Y3881D01* X2550D01* X2575Y3856D01* Y3840D01* X2525D02* X2530Y3835D01* Y3606D01* X2516Y3581D02* Y3580D01* X2530Y3567D01* X2507Y3550D02* D01* X2530Y3527D01* X2556Y3620D02* X2555D01* X2569Y3606D01* X2595Y3620D02* D01* X2608Y3606D01* X2595Y3581D02* Y3580D01* X2608Y3567D01* X2595Y3541D02* D01* X2608Y3527D01* X2648D02* X2634Y3541D01* D01* X2648Y3567D02* X2634Y3580D01* Y3581D01* X2648Y3606D02* Y3748D01* X2633Y3763D01* X2677Y3765D02* X2707Y3735D01* Y3661D01* X2687Y3641D01* Y3606D01* X2713Y3581D02* Y3580D01* X2727Y3567D01* X2710Y3541D02* Y3544D01* X2709D01* D01* X2727Y3527D01* X2748Y3507D02* X2746D01* D01* X2727Y3488D01* X2687D02* X2673Y3502D01* X2674D01* X2687Y3527D02* X2673Y3541D01* X2674D01* X2687Y3567D02* X2667Y3587D01* Y3671D01* X2676Y3680D01* X2748Y3662D02* X2783Y3627D01* Y3544D01* X2766Y3527D01* X2782Y3502D02* Y3504D01* X2766Y3488D01* Y3448D02* X2780D01* X2784Y3452D01* X2901D01* X2878Y3439D02* X2901Y3416D01* X2923Y3395D02* Y3550D01* X2904Y3569D01* Y3606D01* X2917Y3619D01* Y3685D01* X2932Y3700D01* X2982D01* X2989Y3707D01* X3006D01* X3012Y3701D01* X2970Y3670D02* Y3659D01* X2954Y3643D01* X2970Y3620D02* X2946D01* X2932Y3634D01* Y3662D01* X2939Y3669D01* X2970Y3570D02* X2961D01* X2947Y3584D01* Y3585D01* X2957Y3606D02* X2962Y3601D01* X2981D01* X2957Y3606D02* X2938D01* X2926Y3594D01* Y3567D01* X2935Y3558D01* Y3405D01* X2970Y3370D01* X2922Y3365D02* Y3193D01* X2868Y3139D01* X2807D01* X2799Y3131D01* Y3101D01* X2775Y3077D01* X2626D01* X2608Y3094D01* X2648D02* X2634Y3108D01* D01* X2648Y3133D02* X2632Y3149D01* X2633Y3150D01* X2648Y3173D02* X2633Y3187D01* D01* X2513D02* Y3190D01* X2512D01* D01* X2530Y3173D01* X2550Y3190D02* X2551Y3191D01* X2569Y3173D01* X2579Y3146D02* X2580Y3145D01* X2569Y3133D01* X2608D02* X2591Y3116D01* Y3080D01* X2594Y3077D01* X2569Y3094D02* Y3077D01* X2590Y3056D01* X2616D01* X2530Y3047D02* Y3050D01* X2512Y3068D01* Y3151D01* X2490Y3173D01* X2436Y3190D02* X2435D01* X2452Y3173D01* X2451D01* X2476Y3147D02* D01* X2490Y3133D01* X2472Y3113D02* D01* X2490Y3094D01* X2555Y2380D02* X2491Y2444D01* X2336D01* X2314Y2466D01* Y2790D01* X2320Y2829D02* X2350D01* X2369Y2775D02* Y2730D01* X2367D01* X2425Y2785D02* Y2850D01* X2467Y2918D02* X2535Y2850D01* X2585Y2790D02* Y2344D01* X2614Y2315D02* X2585Y2344D01* X2555Y2380D02* Y2304D01* X2623Y2236D01* X2875D01* X3057Y2297D02* X3046Y2286D01* X2924D01* X2900Y2310D01* X2880Y2434D02* X2900Y2454D01* Y2460D01* X2923Y2434D02* X2949Y2460D01* X2950D01* X2980Y2434D02* X3000Y2454D01* Y2460D01* Y2510D02* X2980Y2490D01* Y2489D01* X2950Y2510D02* X2929Y2489D01* X2923D01* X2980Y2534D02* X3000Y2554D01* Y2560D01* X2850Y2510D02* X2829Y2489D01* X2823D01* X2800Y2510D02* X2780Y2490D01* Y2489D01* Y2534D02* X2800Y2554D01* Y2560D01* X2823Y2534D02* X2849Y2560D01* X2850D01* X2880Y2589D02* Y2590D01* X2900Y2610D01* X2880Y2634D02* X2900Y2654D01* Y2660D01* X2887Y2684D02* X2900Y2697D01* Y2710D01* X2927Y2687D02* X2950Y2710D01* X2927Y2735D02* X2952Y2760D01* X2950D01* X3000D02* X3020Y2740D01* Y2636D01* X3000Y2610D02* X2975Y2635D01* X2950Y2660D02* X2949D01* X2923Y2634D01* X2925D01* X2850Y2610D02* X2829Y2589D01* X2823D01* X2800Y2610D02* X2780Y2590D01* Y2589D01* Y2434D02* X2800Y2454D01* Y2460D01* X2823Y2434D02* X2849Y2460D01* X2850D01* X2880Y2489D02* Y2490D01* X2900Y2510D01* X2880Y2534D02* X2900Y2554D01* Y2560D01* X2923Y2534D02* X2949Y2560D01* X2950D01* X2926Y2586D02* X2950Y2610D01* X2971Y2585D02* X3025D01* X3050Y2610D01* X3080Y2590D02* X3100Y2610D01* X3119Y2606D02* Y2551D01* X3114Y2546D01* Y2484D01* X3138Y2460D01* X3161D01* X3176Y2486D02* X3197Y2507D01* Y2529D01* X3181Y2545D01* Y2591D01* X3200Y2610D01* Y2660D02* X3169Y2629D01* X3150Y2610D02* X3131Y2591D01* Y2546D01* X3126Y2541D01* Y2525D01* X3150Y2501D01* X3176Y2516D02* X3169Y2523D01* Y2629D01* X3150Y2637D02* Y2660D01* Y2637D02* X3119Y2606D01* X3080Y2590D02* Y2583D01* X3050Y2710D02* Y2696D01* X3041Y2687D01* X3050Y2660D02* X3067Y2643D01* X3100Y2660D02* X3102Y2662D01* X3120Y2643D01* X3122Y2642D02* Y2643D01* X3120D01* X3126Y2687D02* X3102Y2712D01* X3100Y2710D01* X3150Y2760D02* Y2778D01* X3128Y2800D01* Y2820D01* X3103Y2845D01* X3060Y2855D02* X3070Y2845D01* Y2810D01* X3100Y2780D01* Y2760D01* Y2810D02* X3082Y2828D01* Y2871D01* X3045Y2908D01* Y3012D01* X3067Y3034D01* X2957Y2950D02* D01* X3018Y2896D02* X2987Y2865D01* X2974D01* X3007Y2841D02* Y2817D01* X3000Y2810D01* X3050D02* Y2798D01* X3062Y2786D01* X3050Y2760D02* X3030Y2780D01* Y2869D01* X3018Y2896D02* Y3001D01* X2954Y3065D01* Y3164D01* X2976Y3186D01* Y3264D01* X2994Y3286D02* X3004D01* X3020Y3270D01* X2976Y3264D02* X2970Y3270D01* X2901Y3234D02* Y3236D01* X2846Y3291D01* X2766D01* Y3330D02* X2775Y3339D01* X2783D01* X2766Y3370D02* X2782Y3385D01* D01* X2727Y3330D02* X2710Y3347D01* D01* X2727Y3370D02* X2713Y3383D01* Y3384D01* X2727Y3409D02* X2735Y3401D01* X2745D01* X2766Y3409D02* X2796D01* X2849Y3356D01* X2901D01* X2922Y3365D02* X2901Y3386D01* X2923Y3395D02* X2940Y3378D01* Y3321D01* X2901Y3326D02* X2803D01* X2790Y3313D01* X2749D01* X2727Y3291D01* Y3212D02* X2730D01* X2744Y3226D01* X2766Y3212D02* Y3215D01* X2783Y3232D01* X2787Y3190D02* X2770Y3173D01* X2766D01* X2752Y3148D02* Y3147D01* X2766Y3133D01* X2787Y3140D02* X2851Y3204D01* X2901D01* X2921Y3161D02* Y3126D01* X2585Y2790D01* X2608Y2767D02* X2618Y2757D01* X2768D01* X2781Y2770D01* Y2791D01* X2800Y2810D01* X2830Y2828D02* X2829D01* Y2859D01* X2830Y2828D02* X2848Y2810D01* X2850D01* X2875Y2834D02* X2876Y2835D01* X2900Y2810D01* X2787Y3140D02* Y3129D01* X2772Y3114D01* X2746D01* X2727Y3094D01* Y3133D02* X2713Y3147D01* Y3148D01* X2727Y3173D02* Y3174D01* X2706Y3195D01* Y3194D01* X2687Y3173D02* X2673Y3187D01* X2674D01* X2687Y3212D02* Y3218D01* X2671Y3234D01* X2687Y3252D02* X2673Y3265D01* X2674Y3266D01* X2687Y3291D02* X2673Y3305D01* X2674D01* X2687Y3330D02* X2673Y3344D01* X2674D01* X2687Y3370D02* X2673Y3383D01* X2674Y3384D01* X2687Y3409D02* X2708Y3430D01* X2799D01* X2808Y3439D01* X2878D01* X3070Y3520D02* X3101Y3551D01* X3131D01* X3151Y3571D01* Y3598D01* X3319Y3766D01* X3461D01* X3486Y3791D01* X3523Y3751D02* Y3765D01* Y3751D02* X3466Y3694D01* X3285D01* X3218Y3627D01* Y3584D01* X3185Y3551D01* X3151D01* X3139Y3539D01* X3110D01* X3096Y3525D01* Y3515D01* X3070Y3489D01* Y3470D01* X3043Y3494D02* X3020Y3471D01* Y3470D01* X2999Y3497D02* Y3466D01* X2970Y3437D01* Y3420D01* Y3470D02* Y3481D01* X2956Y3495D01* X2970Y3520D02* X2973Y3517D01* X2997Y3541D01* X3020Y3570D02* X3009D01* X2993Y3586D01* X2996D01* Y3585D01* X2981Y3601D02* X2988Y3608D01* X3004D01* X3011Y3601D01* X3032D01* X3038Y3607D01* X3056D01* X3062Y3601D01* X3081D01* X3047Y3640D02* X3067Y3620D01* X3070D01* X3081Y3601D02* X3087Y3607D01* X3106D01* X3112Y3601D01* X3131D01* X3139Y3609D01* Y3684D01* X3120Y3670D02* X3110D01* X3096Y3684D01* X3095D01* X3162Y3641D02* X3161Y3642D01* X3170Y3651D01* Y3670D01* X3139Y3684D02* X3243Y3788D01* X3267D01* X3246Y3815D02* X3130Y3699D01* X3113D01* X3105Y3707D01* X3087D01* X3081Y3701D01* X3061D01* X3054Y3708D01* X3040D01* X3047Y3684D02* X3061Y3670D01* X3070D01* X3040Y3708D02* X3033Y3701D01* X3012D01* X3020Y3720D02* X3011D01* X2992Y3740D01* D01* X2970Y3720D02* Y3723D01* X2951Y3742D01* X2970Y3770D02* X2899D01* X2863Y3806D01* X2907D02* X2915Y3798D01* X2992D01* X3010Y3801D02* X3089D01* X3120Y3770D01* Y3870D02* X3145Y3895D01* X3146D01* X3170Y3920D02* X3139Y3951D01* Y3981D01* X3126Y3994D01* X3116D01* X3101Y4009D01* Y4123D01* X3089Y4112D02* Y4001D01* X3120Y3970D01* X3105Y3946D02* X3120Y3931D01* Y3920D01* X3070D02* Y3932D01* X3056Y3946D01* X3055D01* X3033Y3938D02* X3045Y3926D01* Y3895D01* X3070Y3870D01* X3097Y3838D02* X3079Y3820D01* X3070D01* X3045Y3838D02* X3027Y3820D01* X3020D01* Y3770D02* X2992Y3798D01* X3010Y3801D02* X2993Y3818D01* Y3835D01* X2981Y3847D01* X2970Y3870D02* Y3882D01* X2957Y3895D01* X2871Y3952D02* X2921Y3902D01* Y3872D01* X2946Y3847D01* X2981D01* X3020Y3870D02* X2995Y3895D01* Y3922D01* X2973Y3944D01* X2970Y3970D02* Y3978D01* X2952Y3996D01* X2970Y4020D02* Y4030D01* X2954Y4046D01* X2970Y4070D02* Y4100D01* X2963Y4107D01* X3003Y4137D02* X2984Y4156D01* X2857D01* X2587Y4426D01* Y4760D01* X2612D02* Y4435D01* X2871Y4176D01* X3011D01* X3051Y4136D01* X3064Y4159D02* X3022Y4201D01* X2873D01* X2637Y4437D01* Y4760D01* X2662Y4666D02* D01* Y4760D01* X2687D02* Y4425D01* X2839Y4273D01* X2980D01* X3076Y4177D01* Y4125D01* X3089Y4112D01* X3101Y4123D02* X3088Y4136D01* Y4222D01* X2969Y4341D01* X2924D01* X2737Y4528D01* Y4760D01* X2712D02* Y4623D01* D01* X2940Y4081D02* X2927Y4068D01* Y3969D01* X2952Y3944D01* X2973D01* X3003Y3945D02* X3020Y3928D01* Y3920D01* X3033Y3938D02* Y3955D01* X3040Y3962D01* Y3980D01* X3034Y3986D01* X3005Y3995D02* X3020Y3980D01* Y3970D01* X3034Y3986D02* Y4006D01* X3039Y4011D01* Y4115D01* X3025Y4129D01* Y4130D01* X3003Y4137D02* Y4112D01* X3020Y4095D01* Y4070D01* X3070D02* Y4104D01* X3064Y4110D01* Y4159D01* X3051Y4136D02* Y4039D01* X3070Y4020D01* X3055Y3995D02* X3070Y3980D01* Y3970D01* X3120Y4020D02* X3139Y4039D01* Y4172D01* X3112Y4199D01* X3109Y4165D02* X3120Y4154D01* Y4070D01* X3220D02* Y4075D01* X3204Y4091D01* Y4098D01* X3170Y4070D02* Y4096D01* X3280Y4206D01* X3305Y4201D02* X3239Y4135D01* Y4001D01* X3270Y3970D01* X3320D02* X3335Y3955D01* Y3945D01* X3370Y3920D02* Y3930D01* X3384Y3944D01* Y3945D01* X3420Y3920D02* X3399Y3899D01* Y3895D01* X3370Y3870D02* Y3877D01* X3354Y3894D01* D01* X3313Y3893D02* Y3894D01* X3320Y3901D01* Y3920D01* X3270D02* X3289Y3901D01* Y3860D01* X3311Y3838D01* X3320Y4020D02* X3339Y4039D01* Y4154D01* X3453Y4268D01* X3495Y4248D02* X3351Y4104D01* Y3989D01* X3370Y3970D01* Y4020D02* Y4032D01* X3383Y4045D01* X3370Y4070D02* Y4087D01* X3379Y4096D01* Y4098D01* X3420Y4070D02* Y4136D01* X3441Y4157D01* X3472Y4158D02* Y4142D01* X3449Y4119D01* Y4049D01* X3420Y4020D01* X3405Y3996D02* X3420Y3981D01* Y3970D01* X3455Y3996D02* X3470Y3981D01* Y3970D01* X3455Y3945D02* Y3947D01* X3470Y3932D01* Y3920D01* X3455Y3895D02* X3470Y3880D01* Y3870D01* X3520Y3970D02* Y3977D01* X3506Y3991D01* X3520Y4020D02* X3545Y3996D01* X3546Y3997D01* X3570Y4020D02* X3567D01* X3547Y4040D01* X3570Y4070D02* X3563D01* X3548Y4085D01* X3519Y4051D02* X3520D01* Y4070D01* X3495Y4087D02* X3478Y4070D01* X3470D01* X3551Y3799D02* X3550D01* Y3800D01* X3570Y3820D01* X3591Y3796D02* X3568Y3773D01* X3570Y3770D01* X3599D02* X3620D01* Y3820D02* X3670D01* X3685Y3792D02* X3707Y3770D01* X3720D02* X3707D01* X3701Y3812D02* X3720Y3793D01* X3863D01* X3998Y3928D01* X4673D01* X4702Y3899D01* X4742D01* X4754Y3911D01* X4787D01* X4803Y3895D01* X4840D01* X4882Y3943D02* X4853D01* X4834Y3962D01* X4803D01* X4779Y3938D01* X4762D01* X4732Y3968D01* X4708D01* X4686Y3946D01* X4641D01* X4615Y3972D01* X3988D01* X4037Y4027D02* X3966D01* X3988Y3972D02* X3836Y3820D01* X3770D01* X3720D02* X3746Y3846D01* Y3876D01* X3759Y3889D01* X3838D01* X3966Y4027D02* X3890Y3951D01* X3879Y3930D02* X3838Y3889D01* X3796Y3912D02* X3788Y3920D01* X3770D01* X3696Y3938D02* X3678Y3920D01* X3670D01* X3620Y3970D02* Y3983D01* X3600Y4003D01* X3620Y4020D02* X3597Y4043D01* X3620Y4070D02* X3641Y4091D01* X3720Y4070D02* Y4046D01* X3770Y3970D02* X3883D01* X3982Y4069D01* X4043D01* X4150Y4665D02* X4119Y4696D01* Y4760D01* X4181D02* X4226D01* X4316Y4670D01* Y4669D01* X3543Y3711D02* Y3642D01* X3424Y3523D01* X3173D01* X3170Y3520D01* X3195Y3494D02* Y3468D01* X3170Y3443D01* Y3420D01* X3198Y3440D02* X3200D01* X3220Y3420D01* X3193Y3386D02* X3209Y3370D01* X3220D01* X3243Y3391D02* X3270Y3418D01* Y3420D01* X3292Y3440D02* D01* X3311Y3420D01* X3320D01* X3347Y3440D02* X3367Y3420D01* X3370D01* X3348Y3485D02* X3363Y3470D01* X3370D01* X3392Y3440D02* D01* X3411Y3420D01* X3420D01* X3447Y3440D02* X3467Y3420D01* X3470D01* X3492Y3440D02* D01* X3511Y3420D01* X3520D01* X3547Y3440D02* X3567Y3420D01* X3570D01* X3592Y3440D02* D01* X3611Y3420D01* X3620D01* X3647Y3440D02* X3667Y3420D01* X3670D01* X3692Y3440D02* D01* X3711Y3420D01* X3720D01* X3670Y3370D02* X3663D01* X3648Y3385D01* X3620Y3370D02* X3609D01* X3593Y3386D01* X3570Y3370D02* X3563D01* X3548Y3385D01* X3520Y3370D02* X3509D01* X3493Y3386D01* X3470Y3370D02* X3463D01* X3448Y3385D01* X3420Y3370D02* X3409D01* X3393Y3386D01* X3370Y3370D02* X3363D01* X3348Y3385D01* X3320Y3370D02* X3309D01* X3293Y3386D01* X3292Y3340D02* D01* X3311Y3320D01* X3320D01* X3347Y3340D02* X3367Y3320D01* X3370D01* X3392Y3340D02* D01* X3411Y3320D01* X3420D01* X3447Y3340D02* X3467Y3320D01* X3470D01* X3448Y3485D02* X3463Y3470D01* X3470D01* X3493Y3486D02* X3509Y3470D01* X3520D01* X3548Y3485D02* X3563Y3470D01* X3570D01* X3593Y3486D02* X3609Y3470D01* X3620D01* X3648Y3485D02* X3663Y3470D01* X3670D01* X3693Y3486D02* X3709Y3470D01* X3720D01* Y3520D02* X3711D01* X3692Y3540D01* D01* X3670Y3520D02* X3667D01* X3647Y3540D01* X3620Y3520D02* X3611D01* X3592Y3540D01* D01* X3570Y3520D02* X3567D01* X3547Y3540D01* X3685Y3608D02* X3672Y3595D01* X3617D01* X3602Y3610D01* X3542D01* X3548Y3585D02* X3563Y3570D01* X3570D01* X3593Y3586D02* X3609Y3570D01* X3620D01* Y3620D02* Y3643D01* X3643Y3666D01* Y3676D01* X3656Y3689D01* X3746D01* X3743Y3711D02* X3733Y3701D01* X3631D01* X3620Y3690D01* Y3670D01* X3670D02* Y3655D01* X3655Y3640D01* X3647D01* X3670Y3620D02* X3689Y3639D01* X3821D01* X3806Y3613D02* X3799Y3620D01* X3770D01* X3744Y3574D02* X3726Y3592D01* X3719D01* X3703Y3608D01* X3685D01* X3693Y3586D02* X3709Y3570D01* X3720D01* X3891Y3500D02* X3840D01* X3770Y3570D01* X3744Y3574D02* Y3560D01* X3764Y3540D01* X3780D01* X3859Y3461D01* X3967D01* X4002Y3426D01* X3998Y3465D02* X3999D01* X4027Y3493D01* X4063D01* Y3518D02* X4109D01* X4122Y3531D01* X4111Y3543D01* X4063D01* X3989Y3568D02* X3965Y3591D01* Y3642D01* X3924Y3683D01* X3857D01* X3825Y3651D01* X3827Y3633D02* X3821Y3639D01* X3825Y3651D02* X3739D01* X3720Y3670D01* X3770Y3720D02* Y3708D01* X3780Y3698D01* X3770Y3670D02* X3825D01* X3850Y3695D01* X3948D01* X3991Y3652D01* X4117D01* X4129Y3640D01* Y3622D02* Y3640D01* Y3622D02* Y3603D01* X4119Y3593D01* X4063D01* Y3618D02* X4007D01* X3994Y3605D01* Y3604D01* X3989Y3568D02* X4063D01* Y3567D01* X4119D01* X4221Y3669D01* X4308Y3635D02* X4320Y3623D01* Y3411D01* X4274Y3365D01* Y3261D01* X4216Y3203D01* Y2948D01* X4094Y2826D01* Y2802D01* X4064Y2783D02* X4039Y2808D01* Y2832D01* X4053Y2846D01* X4089D01* X4194Y2951D01* Y3215D01* X4255Y3276D01* Y3620D01* X4308Y3673D01* X4343Y3653D02* Y3567D01* X4368Y3543D01* X4437D01* Y3568D02* X4369D01* X4355Y3581D01* Y3643D01* X4391Y3679D01* X4400D01* X4343Y3653D02* X4360Y3670D01* Y3694D01* X4377Y3711D01* X4360Y3741D02* X4400D01* X4441Y3742D02* X4470D01* Y3741D01* X4377Y3711D02* X4427D01* X4459Y3679D01* X4470D01* X4500Y3629D02* X4669D01* X4923Y3375D01* X5202D01* X5261Y3316D01* Y2839D01* X5293Y2807D01* X6094D01* X6221Y2680D01* X6270D01* Y2780D02* Y2731D01* X6352Y2649D01* X6391D01* X6401Y2659D01* X6404Y2796D02* X6339Y2861D01* Y2900D01* X6354Y2915D01* Y2943D01* X6336Y2961D01* X6370Y2980D02* X6320D01* X6336Y2961D02* X6303D01* X6288Y2946D01* X6259D01* X6244Y2961D01* X6320Y2980D02* X6150Y3150D01* Y3497D01* X6118Y3529D01* X5974D01* X5730Y3773D01* X5565D01* X5514Y3722D01* X4982D01* X5058Y3619D02* Y3618D01* X5060Y3620D01* X4982Y3722D02* X4893Y3811D01* X4851D01* X4839Y3799D01* X4806D01* X4741Y3761D02* X4754Y3748D01* X4791D01* X4804Y3761D01* X4844D01* X4906Y3699D01* X5292D01* X5495Y3496D01* Y3062D01* X5643Y2914D01* X5742D01* X5767Y2939D01* Y3014D01* X5807Y3054D01* X5904D01* X5997Y2961D01* X6244D01* X6270Y2880D02* X6170D01* X6149Y2901D01* X6018D01* X5963Y2956D01* X5947Y3123D02* Y3075D01* D01* X5916Y3078D02* D01* Y3123D01* X5580Y3142D02* X5621Y3101D01* Y3022D01* X5648Y2995D01* X5715D01* X5759Y3039D01* Y3254D01* X5778Y3273D01* X5813D01* Y3302D02* Y3304D01* Y3302D02* X5775D01* X5736Y3263D01* Y3040D01* X5705Y3009D01* X5664D01* X5638Y3035D01* Y3134D01* X5580Y3192D01* X5680D02* X5718Y3230D01* Y3284D01* X5770Y3336D01* X5813D01* Y3367D02* X5765D01* X5740Y3392D01* X5680D01* X5788Y3958D02* X4959D01* X4945Y3972D01* X4911D01* X4882Y3943D01* X4840Y3895D02* X4856Y3911D01* X4889D01* X4901Y3899D01* X4972D01* X5009Y3936D01* X6054D01* X6187Y3803D01* Y3317D01* X6536Y2968D01* X7025D01* X7100Y3043D01* X7120Y3026D02* D01* X7153D01* X7152Y3058D02* X7153Y3057D01* X7152Y3058D02* X7136D01* X7122Y3072D01* X7120Y2994D02* D01* X7153D01* Y2963D02* X7120D01* D01* X7112Y2907D02* D01* X7153D01* Y2876D02* X7112D01* Y2875D01* Y2844D02* D01* X7153D01* Y2813D02* X7112D01* D01* X7153Y2757D02* X7111D01* Y2763D01* X7112Y2732D02* Y2726D01* X7153D01* Y2694D02* X7112D01* Y2701D01* X7115Y2656D02* Y2663D01* X7153D01* Y2607D02* X7120D01* D01* Y2576D02* D01* X7153D01* Y2544D02* X7120D01* D01* Y2513D02* D01* X7153D01* Y2457D02* X7151Y2456D01* Y2455D01* X7093D01* Y2425D02* X7094Y2426D01* X7153D01* X7227Y2513D02* X7259D01* X7307Y2465D01* X7363D01* X7383Y2485D01* Y2500D01* X7408Y2525D01* X7402Y2543D02* X7385Y2526D01* X7316D01* X7281Y2561D01* X7258D01* X7241Y2544D01* X7227D01* X7396Y2572D02* X7367Y2543D01* X7324D01* X7291Y2576D01* X7227D01* Y2607D02* X7241D01* X7258Y2624D01* X7284D01* X7302Y2606D01* X7694D01* X7739Y2651D01* X7660Y2572D02* X7613Y2525D01* X7408D01* X7396Y2572D02* X7424D01* X7402Y2543D02* X7552D01* X7581Y2572D01* X7503Y2494D02* X7473Y2464D01* X7406D01* X7417Y2452D02* X7697D01* X7739Y2494D01* Y2336D02* X7698Y2295D01* X7660Y2257D02* X7540Y2137D01* Y2102D01* X7467Y2029D01* X7407D01* X7365Y2071D01* X7315D01* X7286Y2100D01* X7250D01* X7244Y2094D01* X7227D01* Y2063D02* X7241D01* X7249Y2055D01* X7357D01* X7424Y1988D01* X7536D01* X7581Y1943D01* X7660D02* X7630Y1913D01* X7401D01* X7385Y1901D02* X7697D01* X7739Y1943D01* Y1864D02* X7697Y1822D01* X7295D01* X7291Y1826D01* X7227D01* Y1794D02* X7283D01* X7323Y1754D01* X7393D01* X7424Y1785D01* X7385Y1901D02* X7374Y1912D01* X7318D01* X7286Y1944D01* X7227D01* Y1913D02* X7272D01* X7292Y1893D01* X7364D01* X7393Y1864D01* X7424D02* X7393D01* X7401Y1913D02* X7384Y1930D01* Y1956D01* X7364Y1976D01* X7227D01* Y2007D02* X7299D01* X7315Y1991D01* X7375D01* X7424Y1943D01* X7503Y1864D02* X7473Y1834D01* X7321D01* X7298Y1857D01* X7227D01* Y1763D02* X7275D01* X7296Y1742D01* X7538D01* X7581Y1785D01* X8020Y1681D02* X8013Y1688D01* Y1694D01* X8020Y1701D01* X8047D01* Y1681D02* X8020D01* X8013Y1674D01* Y1668D01* X8020Y1661D01* X8013D02* X8047D01* Y1648D02* X8020D01* X8013Y1641D01* Y1634D01* X8047Y1628D02* X8020D01* X8013Y1634D02* X8020Y1628D01* X8013Y1621D01* Y1614D01* X8020Y1608D01* X8013D02* X8047D01* Y1561D02* X8040Y1554D01* X8047D02* X7993Y1594D01* X8000D02* X8040D01* X8047Y1588D01* Y1561D01* Y1534D02* X8040Y1541D01* X8020D01* X8013Y1534D01* Y1501D01* X7993D01* Y1541D01* X7910Y1381D02* X7903Y1374D01* Y1348D01* X7910Y1341D01* X7950D01* X7957Y1348D01* Y1374D01* X7937Y1341D02* X7930Y1348D01* Y1374D01* X7937Y1381D01* X7950D01* X7957Y1374D01* Y1401D02* Y1428D01* X7950Y1461D02* X7943Y1468D01* X7950Y1474D01* X7957Y1468D01* X7950Y1461D01* X7957Y1428D02* X7950Y1434D01* X7910D01* X7903Y1428D01* Y1434D02* X7957Y1394D01* Y1401D02* X7950Y1394D01* X7910D01* X7903Y1401D01* Y1428D01* X7957Y1501D02* X7903Y1541D01* X7910D02* X7950D01* X7957Y1534D01* Y1508D01* X7950Y1501D01* X7910D01* X7903Y1508D01* Y1534D01* X7910Y1541D01* X7957Y1554D02* X7903Y1594D01* X7910D02* X7950D01* X7957Y1588D01* Y1561D01* X7950Y1554D01* X7910D01* X7903Y1561D01* Y1588D01* X7910Y1594D01* X7930Y1681D02* X7923Y1688D01* Y1694D01* X7930Y1701D01* X7957D01* Y1681D02* X7930D01* X7923Y1674D01* Y1668D01* X7930Y1661D01* X7923D02* X7957D01* Y1648D02* X7930D01* X7923Y1641D01* Y1634D01* X7957Y1628D02* X7930D01* X7923Y1634D02* X7930Y1628D01* X7923Y1621D01* Y1614D01* X7930Y1608D01* X7923D02* X7957D01* X8000Y1594D02* X7993Y1588D01* Y1561D01* X8000Y1554D01* X8040D01* X8047Y1534D02* Y1508D01* X8040Y1501D01* Y1461D02* X8047Y1468D01* X8040Y1474D01* X8033Y1468D01* X8040Y1461D01* X8047Y1434D02* Y1394D01* Y1414D02* X7993D01* X8007Y1401D01* X8027Y1274D02* Y1241D01* X8013Y1274D02* Y1241D01* Y1214D02* X8060D01* X8067Y1208D01* Y1188D01* X8060Y1181D01* X8040Y1214D02* X8047Y1208D01* Y1188D01* X8040Y1181D01* X8013D01* X7923D02* X7957Y1214D01* Y1181D02* X7923Y1214D01* Y1241D02* Y1274D01* X7917Y1294D02* X7903Y1308D01* X7957D01* Y1328D02* Y1288D01* X7937Y1274D02* Y1241D01* X7739Y1313D02* X7695Y1269D01* X7286D01* X7242Y1313D01* X7227D01* Y1344D02* X7246D01* X7254Y1352D01* X7277D01* X7297Y1332D01* X7317Y1344D02* X7291Y1370D01* X7249D01* X7243Y1376D01* X7227D01* Y1407D02* X7228Y1408D01* X7245D01* X7252Y1415D01* X7277D01* X7336Y1356D01* X7617D01* X7581Y1470D02* X7540Y1429D01* X7300D01* X7266Y1463D01* X7227D01* Y1494D02* X7274D01* X7327Y1441D01* X7395D01* X7424Y1470D01* Y1549D02* X7395Y1520D01* X7328D01* X7291Y1557D01* X7227D01* Y1526D02* X7286D01* X7305Y1507D01* X7591D01* X7622Y1538D01* X7660Y1628D02* X7614Y1582D01* X7303D01* X7272Y1613D01* X7227D01* Y1644D02* X7276D01* X7322Y1598D01* X7552D01* X7581Y1628D01* X7424D02* X7392Y1659D01* X7307D01* X7290Y1676D01* X7227D01* Y1707D02* X7289D01* X7325Y1671D01* X7703D01* X7739Y1706D01* Y1628D02* X7700Y1589D01* X7648D01* X7622Y1563D01* Y1538D02* Y1563D01* X7617Y1356D02* X7660Y1313D01* X7581D02* X7550Y1281D01* X7326D01* X7297Y1310D01* Y1332D01* X7317Y1344D02* X7392D01* X7424Y1313D01* X6972Y1069D02* D01* X7012Y876D02* X7045Y843D01* X7012D02* X7045Y876D01* X7072D02* X7105D01* X7072Y863D02* X7105D01* X7118Y843D02* X7158D01* X7172Y849D02* X7178Y843D01* X7205D01* X7225Y849D02* Y863D01* X7232Y869D01* X7225Y876D01* Y889D01* X7212Y896D02* X7172D01* Y876D01* X7125Y883D02* X7138Y896D01* Y843D01* X7105Y773D02* X7072D01* X7105Y786D02* X7072D01* X7045D02* Y739D01* X7038Y733D01* X7018D01* X7012Y739D01* X7045Y759D02* X7038Y753D01* X7018D01* X7012Y759D01* Y786D01* X7172Y876D02* X7205D01* X7212Y869D01* Y849D01* X7205Y843D01* X7225Y849D02* X7232Y843D01* X7258D01* X7265Y849D01* Y863D01* X7258Y869D01* X7232D01* X7225Y889D02* X7232Y896D01* X7258D01* X7265Y889D01* Y876D01* X7258Y869D01* X7298Y843D02* X7292Y849D01* X7298Y856D01* X7305Y849D01* X7298Y843D01* X7332Y849D02* X7338Y843D01* X7365D01* X7372Y849D01* Y869D01* X7365Y876D01* X7332D01* Y896D01* X7372D01* X7512Y869D02* X7518Y876D01* X7525D01* X7532Y869D01* Y843D01* X7512D02* Y869D01* X7505Y876D01* X7498D01* X7492Y869D01* Y876D02* Y843D01* X7518Y786D02* X7525D01* X7532Y779D01* Y753D01* X7512D02* Y779D01* X7518Y786D02* X7512Y779D01* X7505Y786D01* X7498D01* X7492Y779D01* Y786D02* Y753D01* X7458Y779D02* X7465Y786D01* X7472D01* X7478Y779D01* Y753D01* X7458D02* Y779D01* X7452Y786D01* X7445D01* X7438Y779D01* Y786D02* Y753D01* X7385D02* X7425Y806D01* X7418D02* X7425Y799D01* Y759D01* X7418Y753D01* X7392D01* X7385Y759D01* Y799D01* X7392Y806D01* X7418D01* X7425Y849D02* X7418Y843D01* X7392D01* X7385Y849D01* Y843D02* X7425Y896D01* X7452Y876D02* X7458Y869D01* X7465Y876D01* X7472D01* X7478Y869D01* Y843D01* X7458D02* Y869D01* X7452Y876D02* X7445D01* X7438Y869D01* Y876D02* Y843D01* X7425Y849D02* Y889D01* X7418Y896D01* X7392D01* X7385Y889D01* Y849D01* X7372Y806D02* X7332Y753D01* X7338D02* X7365D01* X7372Y759D01* Y799D01* X7365Y806D01* X7338D01* X7332Y799D01* Y759D01* X7338Y753D01* X7298Y766D02* X7292Y759D01* X7298Y753D01* X7305Y759D01* X7298Y766D01* X7265Y806D02* X7225Y753D01* X7232D02* X7258D01* X7265Y759D01* Y799D01* X7258Y806D01* X7232D01* X7225Y799D01* Y759D01* X7232Y753D01* X5729Y1680D02* X5680D01* X5297Y1796D02* Y1420D01* X5311Y1406D01* X5173Y1432D02* Y1577D01* X5122Y1628D01* X5107Y1603D02* X5154Y1556D01* Y1442D01* X5139Y1459D02* Y1541D01* X5106Y1574D01* X5107Y1603D02* X4982D01* X4814Y1771D01* X4361D01* X4216Y1916D01* X4259Y1930D02* X4392Y1797D01* X4861D01* X5030Y1628D01* X5122D01* X5243Y1573D02* X5213Y1543D01* Y1277D01* X5172Y1236D01* X5296Y1288D02* X5282Y1302D01* Y1594D01* X5175Y1701D01* X5205Y2141D02* X5222Y2158D01* Y2207D01* X5259Y2244D01* X5312D01* X5384Y2316D01* X5687D01* X5711Y2340D01* X5880D01* X6006Y2466D01* Y2494D01* X5970Y2530D01* Y2580D01* X6070Y2480D02* X6239Y2311D01* Y2290D01* X6330Y2215D02* D01* X6461Y1921D02* Y1919D01* X6538D01* X6574Y1883D01* X6565Y1868D02* X6548D01* X6543Y1883D02* X6527Y1899D01* X6492D01* X6480Y1887D01* X6565Y1868D02* X6574Y1859D01* Y1852D01* X6564D01* X6623Y1835D02* D01* X6637Y1820D01* X6625Y1790D02* X6628D01* X6653Y1815D01* Y1828D01* X6661Y1836D01* X6674D01* X6690Y1852D01* X6700D01* X6716Y1867D02* Y1893D01* X6731Y1908D01* X6735D01* X6705Y1913D02* X6700Y1908D01* Y1883D01* X6716Y1867D02* X6731Y1852D01* X6716Y1836D01* X6763Y1757D02* Y1765D01* X6756Y1772D01* X6733Y1774D02* X6757Y1798D01* X6762D01* X6778Y1814D01* Y1893D01* X6783Y1915D02* X6794Y1904D01* Y1883D01* X6778Y1893D02* X6766Y1905D01* Y1924D01* X6775Y1933D01* X6809D01* X6835Y1959D01* X6840D01* X6910Y2021D02* Y2025D01* X6860Y2075D01* X6836Y2021D02* Y2054D01* X6840Y2021D02* X6836D01* X6770D02* Y2054D01* Y1959D02* X6760D01* X6735Y1934D01* X6694D01* X6684Y1924D01* Y1867D01* X6669Y1852D01* X6653Y1890D02* X6658Y1895D01* Y1933D01* X6632Y1959D01* X6560D01* Y2021D02* X6566D01* X6590Y2045D01* X6564Y2052D02* Y2074D01* X6569Y2079D01* X6580D01* Y2141D02* X6621D01* X6670D02* X6711D01* X6670Y2079D02* X6667D01* Y2053D01* X6707D02* Y2021D01* X6700D01* Y1959D02* X6692D01* X6671Y1938D01* X6670D01* Y1885D01* X6669Y1883D01* X6653Y1890D02* Y1868D01* X6637Y1852D01* X6669Y1800D02* X6683Y1814D01* Y1826D01* X6693Y1836D01* X6716D01* X6729Y1800D02* X6731Y1802D01* Y1820D01* X6745Y1836D02* X6747D01* X6763Y1820D01* X6748Y1870D02* X6763Y1855D01* Y1852D01* X6794D02* D01* X6809Y1867D01* X6826Y1883D02* X6815Y1894D01* X6813D01* X6830Y1911D02* X6851D01* X6899Y1959D01* X6910D01* X6909Y1923D02* X6897D01* X6857Y1883D01* X6927Y1910D02* Y1890D01* X6900Y1863D01* X6869D01* X6857Y1852D01* X6872Y1835D02* D01* X6857Y1820D01* X6826Y1757D02* X6841Y1742D01* D01* X6826Y1726D02* X6814Y1714D01* X6794Y1726D02* X6809Y1741D01* D01* X6794Y1757D02* Y1765D01* X6825Y1796D01* Y1800D01* X6810Y1815D01* Y1828D01* X6826Y1844D02* X6810Y1828D01* Y1841D01* X6821Y1852D01* X6826D01* Y1844D01* X6841Y1835D02* D01* X6826Y1820D01* X6825Y1796D02* X6826Y1797D01* X6831D01* Y1788D01* X6801Y1758D01* X6795D01* X6781Y1711D02* X6782Y1710D01* X6779D01* X6763Y1726D01* X6743Y1712D02* X6744Y1713D01* X6731Y1726D01* X6737Y1682D02* X6700Y1719D01* Y1726D01* X6686Y1700D02* X6685Y1701D01* Y1742D01* X6700Y1757D01* X6716Y1742D02* D01* X6731Y1757D01* X6733Y1774D02* X6685D01* X6669Y1757D01* X6649Y1771D02* X6650Y1770D01* X6637Y1757D01* X6655Y1739D02* D01* X6669Y1726D01* X6574Y1663D02* X6593D01* D01* X6621Y1677D02* X6615Y1683D01* Y1716D01* X6606Y1726D01* Y1757D02* Y1765D01* X6593Y1778D01* X6574Y1757D02* Y1771D01* X6560Y1785D01* X6574Y1820D02* X6560Y1834D01* X6564Y1852D02* X6548Y1868D01* X6524D01* X6543Y1852D02* X6502Y1811D01* X6488D01* X6464Y1786D02* Y1710D01* X6480Y1694D01* X6448Y1726D02* X6433Y1741D01* Y1765D01* X6425Y1773D01* X6448Y1757D02* Y1771D01* X6437Y1782D01* Y1814D01* X6369Y1795D02* X6391Y1773D01* X6425D01* X6417Y1757D02* X6371D01* X6336Y1792D01* X6170Y1680D02* X6205Y1645D01* X6225D01* X6284Y1629D02* X6335Y1578D01* Y1491D01* X6304Y1493D02* Y1524D01* X6258Y1570D01* Y1633D01* X6318Y1693D01* X6360Y1648D02* X6361Y1647D01* X6456D01* X6472Y1631D01* X6480D01* X6498Y1647D02* D01* X6473D01* X6448Y1663D02* X6457D01* X6473Y1647D01* X6480Y1663D02* X6448Y1694D01* X6432Y1678D01* X6410D01* X6405Y1673D01* X6384D01* X6364Y1693D01* X6318D01* X6335Y1672D02* X6368D01* X6381Y1659D01* X6413D01* X6417Y1663D01* Y1631D02* X6415Y1633D01* X6376D01* X6369Y1626D01* X6335D01* X6361Y1605D02* X6376Y1590D01* X6407D01* X6417Y1600D01* X6393Y1612D02* X6396Y1615D01* X6433D01* X6448Y1600D01* X6405Y1484D02* X6382D01* X6361Y1505D01* X6335Y1491D02* X6355Y1471D01* X6414D01* X6417Y1474D01* X6405Y1484D02* X6411Y1490D01* X6454D01* X6480Y1474D02* X6470D01* X6454Y1490D01* X6448Y1506D02* X6435Y1519D01* Y1520D01* X6448Y1537D02* X6435Y1551D01* D01* X6448Y1569D02* X6464Y1584D01* X6498D01* X6480Y1569D02* X6465Y1554D01* D01* X6480Y1537D02* X6464Y1521D01* Y1498D01* X6472Y1490D01* X6498D01* X6480Y1506D02* X6497Y1522D01* X6498Y1521D01* X6543Y1537D02* X6549D01* X6564Y1522D01* X6580D01* X6581Y1521D01* X6630D01* X6656Y1493D02* D01* X6652Y1496D02* Y1493D01* X6656D01* X6637Y1474D01* Y1443D02* X6611Y1416D01* D01* X6592Y1394D02* X6606Y1380D01* D01* X6624Y1362D02* X6623D01* X6637Y1348D01* Y1317D02* X6642Y1312D01* Y1279D01* X6625Y1262D01* X6362Y1402D02* X6387Y1427D01* X6433D01* X6417Y1443D02* X6325D01* X6299Y1417D01* X6298Y1461D02* X6300Y1459D01* X6433D01* X6448Y1474D02* X6433Y1459D01* X6448Y1443D02* X6433Y1427D01* X6452Y1403D02* X6466Y1417D01* X6504D01* X6530Y1443D01* X6574D01* X6606D02* X6590Y1427D01* X6548D01* X6505Y1384D01* X6476D01* X6508Y1362D02* Y1361D01* X6521Y1348D01* X6543D01* X6574D02* X6558Y1332D01* X6469D01* X6543Y1317D02* Y1280D01* D01* X6596Y1275D02* Y1307D01* X6606Y1317D01* X6620Y1297D02* X6621Y1298D01* Y1333D01* X6606Y1348D01* X6685Y1322D02* Y1339D01* X6676Y1348D01* X6669D01* Y1338D01* X6685Y1322D01* Y1304D01* X6697Y1292D01* X6731Y1265D02* X6763Y1297D01* Y1317D01* X6794D02* X6781Y1303D01* Y1260D01* X6743Y1394D02* X6744Y1393D01* X6731Y1380D01* X6751Y1366D02* X6763Y1378D01* Y1380D01* X6794Y1348D02* X6810Y1333D01* Y1300D01* X6802Y1292D01* X6826Y1317D02* Y1297D01* X6848Y1275D01* X6905D01* X6917Y1287D01* X6949D01* X6934Y1330D02* X6875Y1389D01* Y1394D01* X6826Y1443D01* D01* Y1474D02* X6863Y1437D01* Y1423D01* X6891Y1395D01* Y1393D01* X6934Y1350D01* X6997D01* X6995Y1352D02* X6997Y1350D01* X7019Y1374D02* X6984D01* X6968Y1390D01* Y1419D01* X6952Y1443D02* Y1435D01* X6968Y1419D01* X6944Y1413D02* X6936Y1421D01* Y1490D01* X6920Y1506D01* Y1537D02* X6905Y1522D01* X6781D01* X6774Y1515D01* Y1516D01* X6740Y1611D02* X6782Y1569D01* X6826D01* X6812Y1553D02* X6811Y1554D01* X6751D01* X6721Y1550D02* Y1546D01* X6722D01* X6735Y1533D01* X6760D01* X6764Y1537D01* X6826D01* X6812Y1553D02* X6841D01* X6857Y1537D01* Y1506D02* X6871D01* X6881Y1496D01* X6857Y1474D02* X6880Y1451D01* Y1423D01* X6910Y1393D01* X6922D01* X6944Y1371D01* X6934Y1330D02* X7010D01* X7025Y1345D01* X6994Y1309D02* X6932D01* X6877Y1364D01* X6842D01* X6826Y1380D01* X6817Y1419D02* X6810Y1426D01* Y1427D01* X6794Y1443D01* X6784Y1424D02* X6778Y1430D01* Y1458D01* X6794Y1474D01* X6763D02* Y1472D01* X6753Y1462D01* X6731Y1443D02* X6729D01* X6718Y1454D01* X6595Y1542D02* Y1537D01* X6574D01* Y1569D02* X6578Y1565D01* X6632D01* X6636Y1569D02* X6632Y1565D01* X6628Y1600D02* X6607Y1579D01* X6586D01* X6581Y1584D01* X6558D01* X6543Y1569D01* Y1600D02* X6524D01* Y1601D01* X6574Y1600D02* X6561Y1613D01* X6559D01* X6543Y1631D02* X6524D01* Y1632D01* Y1663D02* D01* X6543D01* Y1694D02* X6520Y1717D01* X6519Y1716D01* X6516Y1719D02* Y1716D01* X6519D01* X6543Y1726D02* X6511Y1758D01* Y1773D01* X6996Y1849D02* X6952Y1805D01* X6943D01* X6920Y1782D01* Y1757D01* X6897Y1752D02* X6873Y1728D01* Y1679D01* X6857Y1663D01* X6843Y1681D02* D01* X6857Y1694D01* Y1726D02* X6841Y1709D01* D01* X6826Y1694D02* X6806D01* X6785Y1673D01* Y1651D01* X6820Y1616D01* X6844D01* X6826Y1631D02* Y1632D01* X6841Y1647D01* X6873D01* X6878Y1652D01* X6897Y1692D02* Y1694D01* X6920D01* X6939Y1675D02* D01* X6952Y1663D01* X6935Y1648D02* X6920Y1663D01* D01* X6899Y1666D02* Y1644D01* X6886Y1631D01* X6857D01* Y1600D02* Y1601D01* X6881D01* X6920Y1600D02* X6934Y1587D01* X6935Y1588D01* X6920Y1569D02* X6935Y1553D01* D01* X6952Y1569D02* X6967Y1584D01* X7048D01* X7059Y1573D01* X7071Y1552D02* X7089Y1570D01* Y1578D01* X7124Y1558D02* X7101Y1535D01* Y1532D01* X7105Y1510D02* X7121Y1526D01* X7153D01* Y1557D02* X7152D01* X7151Y1558D01* X7124D01* X7103Y1622D02* X7125Y1644D01* X7153D01* Y1613D02* X7169D01* X7190Y1634D01* Y1715D01* X7178Y1727D01* X7057D01* X7027Y1757D01* X6983D01* X7153Y1376D02* X7112D01* X7087Y1351D01* Y1328D01* X7113Y1313D02* X7153D01* D01* Y1344D02* X7113D01* Y1343D01* X7086Y1297D02* X7066Y1317D01* Y1350D01* X7123Y1407D01* X7153D02* X7123D01* X7095Y1421D02* Y1403D01* X7073Y1381D01* X7052D01* X7046Y1387D01* X7066Y1399D02* X7083Y1416D01* Y1439D01* X7138Y1494D01* X7153D01* Y1463D02* X7137D01* X7095Y1421D01* X6952Y1474D02* Y1466D01* X6967Y1451D01* Y1437D01* X6977Y1427D01* X7040D01* X7043Y1424D01* X7065Y1423D02* Y1435D01* X7059Y1441D01* X6985D01* X6983Y1443D01* X7066Y1475D02* X7044Y1453D01* X6996D01* X6991Y1458D01* X6977D01* X6967Y1468D01* Y1490D01* X6952Y1506D01* Y1537D02* X6968Y1553D01* X7016D01* X7037Y1532D01* X7047Y1552D02* X7071D01* X7047D02* X7030Y1569D01* X6983D01* X7008Y1609D02* X6992D01* X6983Y1600D01* X6969Y1614D02* D01* X6952Y1631D01* X6983D02* X6989Y1637D01* X7002D01* X7008Y1609D02* X7063Y1664D01* Y1672D01* X7033D02* Y1673D01* X7032D01* X7011Y1694D01* X6983D01* X6952Y1726D02* X6955D01* X6971Y1710D01* X7025D01* X7042Y1693D01* X7073D01* X7090Y1676D01* X7153D01* Y1707D02* X7093D01* X7089Y1711D01* X7051D01* X7065Y1744D02* X7084Y1763D01* X7153D01* Y1794D02* X7068D01* X7051Y1777D01* X7153Y1826D02* X7060D01* X7036Y1802D01* X7034Y1828D02* X7063Y1857D01* X7153D01* Y1913D02* X7084D01* Y1915D01* X7081Y1946D02* Y1944D01* X7153D01* Y1976D02* X7091D01* Y1977D01* X7099Y2004D02* X7102Y2007D01* X7153D01* X7116Y2063D02* D01* X7153D01* Y2094D02* X7121D01* Y2095D01* Y2126D02* D01* X7153D01* Y2157D02* X7121D01* D01* Y2213D02* D01* X7153D01* Y2244D02* X7121D01* Y2245D01* Y2276D02* D01* X7153D01* Y2307D02* X7121D01* D01* X7097Y2329D02* X7130Y2362D01* X7137D01* X7138Y2363D01* X7153D01* Y2394D02* X7094D01* Y2395D01* X7698Y2295D02* X7421D01* X7393Y2267D01* X7424Y2257D02* Y2214D01* X7359Y2149D01* X7310D01* X7294Y2165D01* X7250D01* X7242Y2157D01* X7227D01* Y2126D02* X7243D01* X7250Y2119D01* X7295D01* X7310Y2134D01* X7367D01* X7446Y2213D01* X7537D01* X7581Y2257D01* X7503Y2336D02* X7473Y2307D01* X7407D01* X7393Y2267D02* Y2233D01* X7373Y2213D01* X7316D01* X7306Y2203D01* X7252D01* X7243Y2212D01* X7228D01* X7227Y2213D01* Y2244D02* X7247D01* X7255Y2252D01* X7293D01* X7317Y2228D01* X7360D01* X7378Y2246D01* Y2278D01* X7407Y2307D01* X7411Y2336D02* X7424D01* X7411D02* X7366Y2291D01* X7316D01* X7295Y2270D01* X7250D01* X7244Y2276D01* X7227D01* Y2307D02* X7241D01* X7249Y2315D01* X7303D01* X7311Y2307D01* X7360D01* X7386Y2333D01* Y2350D01* X7424Y2388D01* Y2415D01* X7417Y2452D02* X7393Y2428D01* Y2389D01* X7373Y2369D01* X7317D01* X7302Y2354D01* X7251D01* X7242Y2363D01* X7227D01* Y2394D02* X7243D01* X7252Y2403D01* X7299D01* X7316Y2386D01* X7361D01* X7379Y2404D01* Y2437D01* X7406Y2464D01* X7412Y2494D02* X7424D01* X7412D02* X7366Y2448D01* X7327D01* X7305Y2426D01* X7227D01* Y2457D02* X7215D01* X7192Y2480D01* Y2769D01* X7215Y2792D01* X7308D01* X7322Y2778D01* X7364D01* X7412Y2730D01* X7503Y2651D02* X7469Y2618D01* X7315D01* X7270Y2663D01* X7227D01* Y2694D02* X7240D01* X7258Y2712D01* X7287D01* X7316Y2683D01* X7227Y2726D02* X7299D01* X7327Y2698D01* X7371D01* X7389Y2680D01* X7401Y2699D02* X7382Y2718D01* Y2737D01* X7360Y2759D01* X7309D01* X7292Y2776D01* X7259D01* X7240Y2757D01* X7227D01* X7316Y2683D02* X7359D01* X7391Y2651D01* X7424D01* X7389Y2680D02* X7610D01* X7660Y2730D01* X7581D02* X7550Y2699D01* X7401D01* X7424Y2730D02* X7412D01* X7404Y2759D02* X7375Y2788D01* Y2822D01* X7359Y2838D01* X7319D01* X7287Y2806D01* X7250D01* X7243Y2813D01* X7227D01* Y2844D02* X7242D01* X7252Y2854D01* X7368D01* X7391Y2831D01* Y2795D01* X7411Y2775D01* X7469D01* X7503Y2809D01* X7424Y2887D02* Y2915D01* X7382Y2957D01* Y2980D01* X7392Y2998D02* X7440D01* X7456Y2982D01* X7581Y2887D02* X7551Y2918D01* X7475D01* X7456Y2937D01* Y2982D01* X7488Y2931D02* X7704D01* X7739Y2966D01* X7660Y2887D02* X7631Y2858D01* X7409D01* X7395Y2872D01* Y2914D01* X7372Y2937D01* X7272D01* X7242Y2907D01* X7227D01* Y2876D02* X7243D01* X7252Y2867D01* X7275D01* X7328Y2920D01* X7361D01* X7378Y2903D01* Y2872D01* X7424Y2826D01* Y2809D01* X7404Y2759D02* X7689D01* X7739Y2809D01* X7227Y3743D02* X7244D01* X7287Y3700D01* Y3687D01* X7326Y3648D01* X7396D01* X7425Y3677D01* Y3756D02* X7387Y3794D01* X7317D01* X7274Y3837D01* X7227D01* X7425Y3913D02* X7395Y3944D01* X7306D01* X7294Y3956D01* X7227D01* Y3987D02* X7300D01* X7331Y3956D01* X7704D01* X7740Y3992D01* Y3913D02* X7699Y3872D01* X7280D01* X7259Y3893D01* X7227D01* Y3924D02* X7276D01* X7316Y3884D01* X7475D01* X7504Y3913D01* Y3756D02* X7469Y3721D01* X7336D01* X7251Y3806D01* X7227D01* Y3774D02* X7252D01* X7320Y3706D01* X7690D01* X7740Y3756D01* Y3598D02* X7698Y3556D01* X7321D01* X7271Y3506D01* X7227D01* Y3537D02* X7265D01* X7296Y3568D01* X7474D01* X7504Y3598D01* X7425Y3520D02* X7393Y3487D01* X7297D01* X7284Y3474D01* X7227D01* Y3443D02* X7293D01* X7322Y3472D01* X7535D01* X7583Y3520D01* Y3283D02* X7536Y3237D01* X7322D01* X7227Y3207D02* X7267D01* X7310Y3250D01* X7392D01* X7425Y3283D01* X7504Y3205D02* X7475Y3176D01* X7306D01* X7274Y3144D01* X7227D01* Y3113D02* X7277D01* X7322Y3158D01* X7472D01* X7504Y3126D01* X7470Y2992D02* X7450Y3012D01* X7409D01* X7383Y3038D01* Y3055D01* X7360Y3078D01* X7326D01* X7274Y3026D01* X7227D01* Y2994D02* X7276D01* X7296Y3014D01* X7376D01* X7392Y2998D01* X7382Y2980D02* X7365Y2997D01* X7321D01* X7287Y2963D01* X7227D01* X7470Y2992D02* Y2949D01* X7488Y2931D01* X7503Y2966D02* Y2988D01* X7462Y3029D01* Y3060D01* X7425Y3097D01* X7279D01* X7239Y3057D01* X7227D01* X7153Y3113D02* X7021D01* X7013Y3121D01* X7012Y3151D02* X7027Y3136D01* X7130D01* X7138Y3144D01* X7153D01* Y3207D02* X7016D01* X7008Y3199D01* X7010Y3175D02* X7022Y3187D01* X7127D01* X7138Y3176D01* X7153D01* X7227D02* X7261D01* X7322Y3237D01* X7153Y3443D02* X7121D01* Y3424D01* Y3443D02* Y3474D01* X7153D01* X7121D02* Y3506D01* X7153D01* X7121D02* Y3521D01* X7137Y3537D01* X7153D01* Y3743D02* X7121D01* Y3724D01* Y3743D02* Y3774D01* X7153D01* X7121D02* Y3806D01* X7153D01* X7121D02* Y3821D01* X7137Y3837D01* X7153D01* Y3893D02* X7121D01* Y3865D01* Y3893D02* Y3924D01* X7153D01* X7121Y3956D02* Y3971D01* X7137Y3987D01* X7153D01* Y3956D02* X7121D01* Y3924D01* X6910Y3883D02* Y3842D01* X6911Y3841D02* Y3840D01* Y3841D02* X6910Y3842D01* X6849Y3840D02* Y3887D01* X7121Y4156D02* Y4137D01* X7153D01* Y4106D02* X7121D01* Y4137D01* Y4106D02* Y4074D01* X7153D01* X7121D02* Y4059D01* X7137Y4043D01* X7153D01* X7227D02* X7274D01* X7291Y4026D01* X7459D01* X7504Y4071D01* X7425D02* X7395Y4041D01* X7318D01* X7285Y4074D01* X7227D01* Y4106D02* X7696D01* X7740Y4150D01* X7661D02* X7632Y4120D01* X7312D01* X7295Y4137D01* X7227D01* X7220Y4219D02* X7244D01* X7265Y4240D01* X7012Y4991D02* X7018Y4984D01* X7038D01* X7045Y4991D01* Y5038D01* X7072D02* X7105D01* X7125Y5044D02* X7138Y5058D01* Y5004D01* X7172Y5011D02* X7178Y5004D01* X7205D01* X7212Y5011D01* Y5051D01* Y5058D02* X7172Y5004D01* X7158D02* X7118D01* X7105Y5024D02* X7072D01* X7045Y5011D02* X7038Y5004D01* X7018D01* X7012Y5011D01* Y5038D01* Y5094D02* X7045Y5128D01* X7012D02* X7045Y5094D01* X7072Y5114D02* X7105D01* X7072Y5128D02* X7105D01* X7125Y5134D02* X7138Y5148D01* Y5094D01* X7118D02* X7158D01* X7172Y5101D02* X7178Y5094D01* X7205D01* X7212Y5101D01* X7232Y5121D02* X7225Y5114D01* Y5101D01* X7232Y5094D01* X7258D01* X7265Y5101D01* Y5114D01* X7258Y5121D01* Y5148D02* X7265Y5141D01* Y5128D01* X7258Y5121D01* X7232D01* X7212Y5148D02* X7172D01* Y5128D01* X7205D01* X7212Y5121D01* Y5101D01* X7232Y5121D02* X7225Y5128D01* Y5141D01* X7232Y5148D01* X7258D01* X7298Y5108D02* X7305Y5101D01* X7298Y5094D01* X7292Y5101D01* X7298Y5108D01* X7332Y5101D02* X7338Y5094D01* X7365D01* X7372Y5101D01* Y5121D01* X7365Y5128D01* X7332D01* Y5148D01* X7372D01* X7425Y5141D02* X7418Y5148D01* X7392D01* X7385Y5141D01* Y5101D01* X7392Y5094D01* X7418D01* X7425Y5101D01* Y5141D01* Y5148D02* X7385Y5094D01* X7372Y5058D02* X7332Y5004D01* X7338D02* X7365D01* X7372Y5011D01* Y5051D01* X7365Y5058D01* X7338D01* X7332Y5051D01* Y5011D01* X7338Y5004D01* X7298Y5018D02* X7292Y5011D01* X7298Y5004D01* X7305Y5011D01* X7298Y5018D01* X7265Y5051D02* X7258Y5058D01* X7232D01* X7225Y5051D01* Y5011D01* X7232Y5004D01* X7258D01* X7265Y5011D01* Y5051D01* Y5058D02* X7225Y5004D01* X7212Y5051D02* X7205Y5058D01* X7178D01* X7172Y5051D01* Y5011D01* X7512Y5031D02* X7518Y5038D01* X7525D01* X7532Y5031D01* Y5004D01* X7512D02* Y5031D01* X7505Y5038D01* X7498D01* X7492Y5031D01* Y5038D02* Y5004D01* X7478D02* Y5031D01* X7472Y5038D01* X7465D01* X7458Y5004D02* Y5031D01* X7465Y5038D02* X7458Y5031D01* X7452Y5038D01* X7445D01* X7438Y5031D01* Y5038D02* Y5004D01* X7385D02* X7425Y5058D01* Y5051D02* Y5011D01* X7418Y5004D01* X7392D01* X7385Y5011D01* Y5051D01* X7392Y5058D01* X7418D01* X7425Y5051D01* X7438Y5094D02* Y5128D01* Y5121D02* X7445Y5128D01* X7452D01* X7458Y5121D01* Y5094D01* X7478D02* Y5121D01* X7472Y5128D01* X7465D01* X7458Y5121D01* X7492Y5094D02* Y5128D01* Y5121D02* X7498Y5128D01* X7505D01* X7512Y5121D01* X7518Y5128D01* X7512Y5121D02* Y5094D01* X7532D02* Y5121D01* X7525Y5128D01* X7518D01* X7923Y4702D02* X7930Y4709D01* X7923Y4715D01* Y4722D01* X7930Y4729D01* X7957D01* Y4709D02* X7930D01* X7923Y4702D02* Y4695D01* X7930Y4689D01* X7923D02* X7957D01* Y4675D02* X7930D01* X7923Y4669D01* Y4662D01* X7957Y4655D02* X7930D01* X7923Y4662D02* X7930Y4655D01* X7923Y4649D01* Y4642D01* X7930Y4635D01* X7923D02* X7957D01* X7993Y4615D02* Y4589D01* X8000Y4582D01* X8040D01* X8047Y4589D01* X8020Y4569D02* X8013Y4562D01* Y4529D01* X7993D01* Y4569D01* X8020D02* X8040D01* X8047Y4562D01* Y4589D02* Y4615D01* X8040Y4622D01* X8000D01* X7993Y4615D01* Y4622D02* X8047Y4582D01* Y4562D02* Y4535D01* X8040Y4529D01* Y4502D02* X8047Y4495D01* X8040Y4489D01* X8033Y4495D01* X8040Y4502D01* X8020Y4455D02* X8027Y4462D01* X8040D01* X8047Y4455D01* Y4429D01* X8040Y4422D01* X8027D01* X8020Y4429D01* X8013Y4422D02* X8020Y4429D01* Y4455D01* X8013Y4462D01* X8000D01* X7993Y4455D01* Y4429D01* X8000Y4422D01* X8013D01* Y4409D02* X8020Y4402D01* Y4375D01* X8013Y4369D01* X8000D01* X7993Y4375D01* Y4402D01* X8000Y4409D01* X8040D01* X8047Y4402D01* Y4375D01* X8040Y4369D01* X8027Y4302D02* Y4269D01* X8013Y4302D02* Y4269D01* Y4242D02* X8060D01* X8067Y4235D01* Y4215D01* X8060Y4209D01* X8040Y4242D02* X8047Y4235D01* Y4215D01* X8040Y4209D01* X8013D01* X7923D02* X7957Y4242D01* Y4209D02* X7923Y4242D01* Y4269D02* Y4302D01* X7917Y4322D02* X7903Y4335D01* X7957D01* Y4355D02* Y4315D01* X7937Y4302D02* Y4269D01* Y4369D02* X7930Y4375D01* Y4402D01* X7937Y4409D01* X7950D01* X7957Y4402D01* Y4375D01* X7950Y4369D01* X7910D01* X7903Y4375D01* Y4402D01* X7910Y4409D01* X7950Y4422D02* X7910D01* X7903Y4429D01* Y4455D01* X7910Y4462D01* X7950D01* X7957Y4455D01* Y4429D01* X7950Y4422D01* X7957D02* X7903Y4462D01* X7950Y4502D02* X7957Y4495D01* X7950Y4489D01* X7943Y4495D01* X7950Y4502D01* X7957Y4535D02* X7950Y4529D01* X7910D01* X7903Y4535D01* Y4562D01* X7910Y4569D01* X7950D01* X7903D02* X7957Y4529D01* Y4535D02* Y4562D01* X7950Y4569D01* Y4582D02* X7957Y4589D01* Y4615D01* X7950Y4622D01* X7910D01* X7903D02* X7957Y4582D01* X7950D02* X7910D01* X7903Y4589D01* Y4615D01* X7910Y4622D01* X8047Y4635D02* X8013D01* X8020D02* X8013Y4642D01* Y4649D01* X8020Y4655D02* X8047D01* X8013Y4649D02* X8020Y4655D01* X8013Y4662D01* Y4669D01* X8020Y4675D01* X8047D01* Y4689D02* X8013D01* X8020D02* X8013Y4695D01* Y4702D01* X8020Y4709D01* X8047D01* Y4729D02* X8020D01* X8013Y4722D01* Y4715D01* X8020Y4709D01* D013* X3050Y1860D02* X3047D01* X3027Y1880D01* X2970Y3820D02* X2937D01* X2898Y3859D01* X2840D01* X3983Y5911D02* Y5978D01* X3994Y5989D01* X4039D01* X4050Y5978D01* X3983Y5933D02* X3994Y5944D01* X4039D01* X4050Y5933D01* Y5911D01* X4039Y5900D01* X3994D01* X3983Y5911D01* X3961Y5900D02* X3894D01* X3928D02* Y5989D01* X3906Y5967D01* X4083Y5900D02* X4072Y5911D01* Y5978D01* X4083Y5989D01* X4128D01* X4139Y5978D01* Y5911D01* X4128Y5900D01* X4083D01* X4072D02* X4139Y5989D01* X4194Y5900D02* X4183Y5911D01* X4194Y5922D01* X4206Y5911D01* X4194Y5900D01* X4261D02* X4250Y5911D01* Y5978D01* X4261Y5989D01* X4306D01* X4317Y5978D01* Y5911D01* X4306Y5900D01* X4261D01* X4250D02* X4317Y5989D01* X4350Y5900D02* X4339Y5911D01* Y5978D01* X4350Y5989D01* X4394D01* X4406Y5978D01* Y5911D01* X4394Y5900D01* X4350D01* X4339D02* X4406Y5989D01* X4450Y5956D02* X4461Y5944D01* X4472Y5956D01* X4483D01* X4494Y5944D01* Y5900D01* X4461D02* Y5944D01* X4450Y5956D02* X4439D01* X4428Y5944D01* Y5956D02* Y5900D01* X4517D02* Y5956D01* Y5944D02* X4528Y5956D01* X4539D01* X4550Y5944D01* Y5900D01* X4583D02* Y5944D01* X4572Y5956D01* X4561D01* X4550Y5944D01* X4639Y5922D02* X4650Y5911D01* X4639Y5900D01* X4628Y5911D01* X4639Y5922D01* X4650Y5911D02* Y5900D01* X4639Y5878D01* X4872Y5900D02* X4939Y5989D01* X4928D02* X4939Y5978D01* X4928Y5989D02* X4883D01* X4872Y5978D01* X4850Y5944D02* X4783D01* X4817Y5911D02* Y5978D01* X4872D02* Y5911D01* X4883Y5900D01* X4928D01* X4939Y5911D01* Y5978D01* X4961Y5900D02* X5028Y5989D01* X5050Y5944D02* X5117D01* X5139Y5978D02* X5150Y5989D01* X5194D01* X5139Y5978D02* Y5911D01* X5150Y5900D01* X5194D02* X5206Y5911D01* Y5978D01* X5194Y5989D01* X5206D02* X5139Y5900D01* X5150D02* X5194D01* X5261Y5922D02* X5250Y5911D01* X5261Y5900D01* X5272Y5911D01* X5261Y5922D01* X5317Y5911D02* X5328Y5900D01* X5372D01* X5383Y5911D01* Y5933D01* X5361Y5944D01* X5339D01* X5361D02* X5383Y5956D01* Y5978D01* X5372Y5989D01* X5328D01* X5317Y5978D01* X8817Y3694D02* X8839Y3672D01* X8750D01* Y3706D02* Y3639D01* Y3617D02* X8839Y3550D01* X8761D02* X8750Y3561D01* Y3606D01* X8761Y3617D01* X8828D01* X8839Y3606D01* Y3561D01* X8828Y3550D01* X8761D01* X8750Y3517D02* X8761Y3528D01* X8828D01* X8839Y3517D01* Y3472D01* X8828Y3461D01* X8761D01* X8750Y3472D01* Y3517D01* Y3528D02* X8839Y3461D01* X8761Y3394D02* X8750Y3406D01* X8761Y3417D01* X8772Y3406D01* X8761Y3394D01* X8750Y3350D02* X8839Y3283D01* Y3294D02* X8828Y3283D01* X8761D01* X8750Y3294D01* Y3139D02* X8794D01* X8806Y3150D01* Y3161D01* Y3172D02* X8750D01* X8761Y3194D02* X8750Y3206D01* Y3250D01* X8761Y3261D01* X8750D02* X8839Y3194D01* Y3250D02* X8828Y3261D01* X8761D01* X8750Y3294D02* Y3339D01* X8761Y3350D01* X8828D01* X8839Y3339D01* Y3294D01* Y3250D02* Y3206D01* X8828Y3194D01* X8761D01* X8794Y3172D02* X8806Y3161D01* X8794Y3139D02* X8806Y3128D01* Y3117D01* X8794Y3106D01* X8750D01* Y3083D02* X8806D01* Y3072D02* Y3061D01* X8794Y3050D01* X8750D01* X8794Y3083D02* X8806Y3072D01* X8794Y3050D02* X8806Y3039D01* Y3028D01* X8794Y3017D01* X8750D01* X8728Y2961D02* X8750Y2950D01* X8761D01* X8750Y2961D01* X8761Y2972D01* X8772Y2961D01* X8761Y2950D01* X8839Y2672D02* Y2717D01* X8828Y2728D01* X8761D01* X8750Y2717D01* Y2672D01* X8794Y2817D02* Y2750D01* X8828Y2783D02* X8761D01* X8750Y2728D02* X8839Y2661D01* Y2672D02* X8828Y2661D01* X8761D01* X8750Y2672D01* Y2639D02* X8839Y2572D01* X8794Y2550D02* Y2483D01* X8761Y2461D02* X8828D01* X8839Y2450D01* Y2406D01* X8828Y2394D01* X8761D01* X8750Y2406D01* Y2450D01* X8761Y2461D01* X8750D02* X8839Y2394D01* X8761Y2328D02* X8772Y2339D01* X8761Y2350D01* X8750Y2339D01* X8761Y2328D01* Y2283D02* X8750Y2272D01* Y2228D01* X8761Y2217D01* X8783D01* X8794Y2239D01* Y2261D01* Y2239D02* X8806Y2217D01* X8828D01* X8839Y2228D01* Y2272D01* X8828Y2283D01* D044* X5059Y2959D02* D03* X5093D02* D03* X5123Y3069D02* D03* X5058Y3074D02* D03* X5159Y3189D02* D03* X5059Y3195D02* D03* Y3294D02* D03* X5093D02* D03* X5054Y3401D02* D03* X5136D02* D03* X5201Y3335D02* D03* X5340Y3455D02* D03* X5368Y3371D02* D03* X5384Y3286D02* D03* X5321Y3182D02* D03* X5319Y3110D02* D03* X5326Y3040D02* D03* X5238Y3012D02* D03* X5289Y2926D02* D03* Y2876D02* D03* X5240Y2863D02* D03* X5239Y2899D02* D03* X5408Y2863D02* D03* X5407Y2900D02* D03* X5495Y2948D02* D03* X5584Y2896D02* D03* X5585Y2863D02* D03* X5645Y2855D02* D03* X5655Y2935D02* D03* X5799Y2865D02* D03* X5800Y2901D02* D03* X5805Y2975D02* D03* X5890Y2965D02* D03* X5898Y2908D02* D03* X5893Y2875D02* D03* X5862Y2764D02* D03* X6119Y2869D02* D03* X6101Y2988D02* D03* X6051Y2986D02* D03* X6158Y3056D02* D03* X6051Y3089D02* D03* X6067Y3187D02* D03* X5947Y3075D02* D03* X5916Y3078D02* D03* X5885Y3080D02* D03* X5850D02* D03* X5798Y3134D02* D03* X6077Y3273D02* D03* X6065Y3310D02* D03* X6024Y3321D02* D03* X5982Y3256D02* D03* X5935Y3232D02* D03* X5936Y3265D02* D03* X5930Y3320D02* D03* X6000Y3411D02* D03* X5999Y3451D02* D03* X6122D02* D03* X6126Y3411D02* D03* X6122Y3627D02* D03* X5999D02* D03* X6005Y3668D02* D03* X6081Y3765D02* D03* X6000D02* D03* X5979Y3825D02* D03* X5975Y3888D02* D03* X5905Y3881D02* D03* X5910Y3811D02* D03* X5764Y3881D02* D03* Y3847D02* D03* X5666D02* D03* Y3881D02* D03* X5515Y3885D02* D03* X5503Y3800D02* D03* X5390Y3847D02* D03* Y3881D02* D03* X5298Y3885D02* D03* X5178Y3886D02* D03* X5215Y3847D02* D03* X5174Y3804D02* D03* X5092Y3621D02* D03* X5060Y3620D02* D03* X5058Y3516D02* D03* X5092D02* D03* X4563Y3340D02* D03* X4379Y3442D02* D03* X4359Y3414D02* D03* X4297Y3428D02* D03* X4339Y3387D02* D03* X4335Y3356D02* D03* X4381Y3342D02* D03* X4331Y3278D02* D03* X4380Y3270D02* D03* X4369Y3218D02* D03* X4562Y2939D02* D03* X4384Y2903D02* D03* X4355Y2918D02* D03* X4299D02* D03* X4240Y2869D02* D03* X4305Y3046D02* D03* X4376Y3057D02* D03* X4377Y3142D02* D03* X4359Y3169D02* D03* X4304Y3196D02* D03* X4240Y3166D02* D03* X4241Y3112D02* D03* X4126Y3137D02* D03* Y3167D02* D03* Y3197D02* D03* X4122Y3240D02* D03* Y3318D02* D03* Y3385D02* D03* Y3467D02* D03* Y3531D02* D03* X3998Y3465D02* D03* X3993Y3546D02* D03* X3955Y3558D02* D03* X3994Y3604D02* D03* X3944Y3620D02* D03* X3899Y3608D02* D03* X3909Y3658D02* D03* X3806Y3613D02* D03* X3819Y3696D02* D03* X3798Y3772D02* D03* X3794Y3846D02* D03* X3827Y3844D02* D03* X3796Y3912D02* D03* X3735Y3896D02* D03* X3696Y3938D02* D03* X3693Y3993D02* D03* X3751Y4048D02* D03* X3799Y4006D02* D03* X3831D02* D03* X3879Y3930D02* D03* X3909Y3933D02* D03* X3944Y3816D02* D03* X3979Y3830D02* D03* X3972Y3785D02* D03* X3938Y3772D02* D03* X3645Y3797D02* D03* X3596Y3896D02* D03* X3591Y3796D02* D03* X3551Y3799D02* D03* X3523Y3765D02* D03* X3486Y3791D02* D03* X3425Y3798D02* D03* X3450Y3720D02* D03* Y3666D02* D03* Y3612D02* D03* X3396D02* D03* X3342D02* D03* Y3666D02* D03* Y3720D02* D03* X3396D02* D03* Y3666D02* D03* X3276Y3621D02* D03* X3245D02* D03* X3187Y3594D02* D03* X3162Y3641D02* D03* X3206Y3716D02* D03* X3096Y3585D02* D03* X3047D02* D03* X3043Y3494D02* D03* X3097Y3485D02* D03* X3089Y3443D02* D03* X3045Y3438D02* D03* X3010Y3443D02* D03* X2956Y3495D02* D03* X2999Y3497D02* D03* X2997Y3541D02* D03* X2996Y3585D02* D03* X2947D02* D03* X2901Y3537D02* D03* Y3505D02* D03* Y3452D02* D03* Y3416D02* D03* Y3386D02* D03* Y3356D02* D03* Y3326D02* D03* Y3234D02* D03* Y3204D02* D03* X2955Y3212D02* D03* X2994Y3286D02* D03* X2986Y3084D02* D03* X3003Y3163D02* D03* X3061Y3219D02* D03* X3092Y3220D02* D03* X3113Y3242D02* D03* X3191Y3286D02* D03* X3143D02* D03* X3147Y3340D02* D03* X3192D02* D03* X3193Y3386D02* D03* X3198Y3440D02* D03* X3195Y3494D02* D03* X3148Y3485D02* D03* X3138Y3446D02* D03* X3248Y3486D02* D03* X3293D02* D03* X3292Y3440D02* D03* X3293Y3386D02* D03* X3292Y3340D02* D03* X3247D02* D03* X3293Y3286D02* D03* X3348Y3285D02* D03* X3393Y3286D02* D03* X3392Y3340D02* D03* X3347D02* D03* X3348Y3385D02* D03* X3393Y3386D02* D03* X3392Y3440D02* D03* X3347D02* D03* X3348Y3485D02* D03* X3493Y3486D02* D03* X3448Y3485D02* D03* X3447Y3440D02* D03* X3492D02* D03* X3493Y3386D02* D03* X3448Y3385D02* D03* X3447Y3340D02* D03* X3492D02* D03* X3493Y3286D02* D03* X3448Y3285D02* D03* X3468Y3205D02* D03* X3502D02* D03* X3570Y3233D02* D03* X3593Y3286D02* D03* X3592Y3340D02* D03* X3547D02* D03* X3548Y3385D02* D03* X3593Y3386D02* D03* X3592Y3440D02* D03* X3547D02* D03* X3548Y3485D02* D03* X3593Y3486D02* D03* X3592Y3540D02* D03* X3547D02* D03* X3548Y3585D02* D03* X3593Y3586D02* D03* X3647Y3540D02* D03* X3692D02* D03* X3693Y3586D02* D03* X3647Y3640D02* D03* X3584Y3696D02* D03* X3505Y3896D02* D03* X3455Y3895D02* D03* Y3945D02* D03* X3506Y3991D02* D03* X3546Y3997D02* D03* X3547Y4040D02* D03* X3548Y4085D02* D03* X3597Y4043D02* D03* X3641Y4091D02* D03* X3675Y4221D02* D03* X3799Y4134D02* D03* X3831D02* D03* X3872Y4138D02* D03* X3873Y4186D02* D03* X3838Y4191D02* D03* X4081Y4187D02* D03* X4108Y4072D02* D03* X4043Y4069D02* D03* X4037Y4027D02* D03* X4126Y3848D02* D03* X4196Y3951D02* D03* X4266Y3852D02* D03* X4308Y3673D02* D03* Y3635D02* D03* X4295Y3563D02* D03* X4296Y3494D02* D03* X4354Y3486D02* D03* X4377Y3509D02* D03* X4380Y3592D02* D03* X4562Y3690D02* D03* Y4040D02* D03* X4560Y4364D02* D03* X4309Y4481D02* D03* X4326Y4531D02* D03* X4316Y4669D02* D03* X4235Y4644D02* D03* X4369Y4830D02* D03* X4431D02* D03* X4083Y4556D02* D03* X3984Y4429D02* D03* X3933Y4410D02* D03* X3869Y4424D02* D03* X3836Y4419D02* D03* X3787Y4410D02* D03* X3785Y4528D02* D03* X3763Y4848D02* D03* X3712Y4638D02* D03* X3678Y4567D02* D03* X3662Y4629D02* D03* X3637Y4665D02* D03* X3612Y4616D02* D03* X3587Y4642D02* D03* X3537Y4595D02* D03* X3487Y4562D02* D03* X3438Y4561D02* D03* X3416Y4538D02* D03* X3357Y4327D02* D03* X3331Y4297D02* D03* X3281Y4299D02* D03* X3305Y4272D02* D03* X3280Y4206D02* D03* X3297Y4095D02* D03* X3379Y4098D02* D03* X3383Y4045D02* D03* X3405Y3996D02* D03* X3455D02* D03* X3493Y4043D02* D03* X3495Y4087D02* D03* X3472Y4158D02* D03* X3441Y4157D02* D03* X3495Y4248D02* D03* X3453Y4268D02* D03* X2786Y4848D02* D03* X2853Y4849D02* D03* X2896Y4847D02* D03* X2937Y4844D02* D03* X2987D02* D03* X3037D02* D03* X3087D02* D03* X3137D02* D03* X3199Y4847D02* D03* X3263Y4848D02* D03* X3322Y4849D02* D03* X3410Y4848D02* D03* X3462Y4844D02* D03* X3361Y4671D02* D03* X3325D02* D03* X3287D02* D03* X3263Y4648D02* D03* X3236Y4673D02* D03* X3162Y4676D02* D03* X3112Y4673D02* D03* X3062Y4676D02* D03* X3034Y4657D02* D03* X3109Y4165D02* D03* X3112Y4199D02* D03* X3202Y4213D02* D03* Y4165D02* D03* X3204Y4098D02* D03* X3205Y4045D02* D03* Y3995D02* D03* X3191Y3949D02* D03* X3238Y3947D02* D03* X3236Y3895D02* D03* X3313Y3893D02* D03* X3354Y3894D02* D03* X3399Y3895D02* D03* X3384Y3945D02* D03* X3335D02* D03* X3346Y3794D02* D03* X3363Y3824D02* D03* X3311Y3838D02* D03* X3267Y3788D02* D03* X3246Y3815D02* D03* X3198Y3837D02* D03* X3145Y3838D02* D03* X3097D02* D03* X3045D02* D03* X3195Y3896D02* D03* X3146Y3895D02* D03* X3105Y3946D02* D03* X3055D02* D03* Y3995D02* D03* X3005D02* D03* X3003Y3945D02* D03* X2957Y3895D02* D03* X2930Y3929D02* D03* X2863Y3806D02* D03* X2907D02* D03* X2951Y3742D02* D03* X2992Y3740D02* D03* X3047D02* D03* X3093Y3747D02* D03* X3133Y3744D02* D03* X3095Y3684D02* D03* X3092Y3640D02* D03* X3047D02* D03* Y3684D02* D03* X2998D02* D03* X2992Y3640D02* D03* X2954Y3643D02* D03* X2939Y3669D02* D03* X2896Y3658D02* D03* X2892Y3628D02* D03* X2952Y3996D02* D03* X2954Y4046D02* D03* X2997Y4044D02* D03* X2940Y4081D02* D03* X2963Y4107D02* D03* X3025Y4130D02* D03* X2953Y4223D02* D03* Y4314D02* D03* X2916Y4312D02* D03* X2884Y4310D02* D03* X2900Y4459D02* D03* X2957Y4479D02* D03* Y4518D02* D03* X2914Y4529D02* D03* X2884Y4530D02* D03* X2893Y4667D02* D03* X2929Y4657D02* D03* X2962Y4627D02* D03* X3012D02* D03* X3059Y4498D02* D03* X2725Y4434D02* D03* X2727Y4465D02* D03* X2815Y4531D02* D03* X2813Y4568D02* D03* X2812Y4611D02* D03* X2787Y4669D02* D03* X2761Y4623D02* D03* X2712D02* D03* X2662Y4666D02* D03* X2537Y4675D02* D03* X2148Y4773D02* D03* X2092Y4767D02* D03* X2014Y4651D02* D03* X2020Y4619D02* D03* X2040Y4583D02* D03* X1864Y4648D02* D03* X1935Y4647D02* D03* X1931Y4588D02* D03* X1851Y4548D02* D03* X1852Y4510D02* D03* Y4473D02* D03* X2313Y4340D02* D03* X2090Y4310D02* D03* X1945Y4085D02* D03* X1951Y3896D02* D03* X2036Y3887D02* D03* X2261Y3960D02* D03* X2419Y3711D02* D03* X2418Y3646D02* D03* X2472Y3623D02* D03* X2473Y3581D02* D03* X2551Y3582D02* D03* Y3546D02* D03* X2435Y3502D02* D03* Y3466D02* D03* X2472D02* D03* X2514D02* D03* X2551D02* D03* X2553Y3502D02* D03* X2593D02* D03* Y3466D02* D03* X2629D02* D03* Y3502D02* D03* X2666Y3469D02* D03* X2711Y3462D02* D03* X2710Y3347D02* D03* X2783Y3339D02* D03* X2782Y3385D02* D03* X2819Y3417D02* D03* Y3537D02* D03* Y3503D02* D03* X2748Y3507D02* D03* X2710Y3541D02* D03* X2750Y3581D02* D03* X2714Y3625D02* D03* X2748Y3662D02* D03* X2676Y3680D02* D03* X2626Y3646D02* D03* X2594D02* D03* X2633Y3763D02* D03* X2677Y3765D02* D03* X2740Y3890D02* D03* X2801Y3891D02* D03* X2870Y3890D02* D03* X2871Y3952D02* D03* X2804Y4013D02* D03* X2736Y4010D02* D03* X2675Y4105D02* D03* X2625Y4107D02* D03* X2525Y4104D02* D03* X3278Y2839D02* D03* X3291Y2882D02* D03* X3235Y2905D02* D03* X3192Y2852D02* D03* X3219Y2782D02* D03* X3175Y2726D02* D03* X3132Y2728D02* D03* X3126Y2687D02* D03* X3122Y2642D02* D03* X3080Y2583D02* D03* X3064Y2544D02* D03* X3093Y2535D02* D03* X3067Y2493D02* D03* Y2443D02* D03* Y2393D02* D03* Y2343D02* D03* X3057Y2297D02* D03* X3026Y2184D02* D03* X3025Y2135D02* D03* X3073Y1984D02* D03* X3025Y2036D02* D03* X2978Y2032D02* D03* X2925Y2035D02* D03* X2827D02* D03* X2780Y2034D02* D03* X2759Y2061D02* D03* X2778Y2088D02* D03* X2736Y2003D02* D03* X2707Y1985D02* D03* X2712Y1951D02* D03* X2761Y1896D02* D03* X2825Y1929D02* D03* X2873Y1933D02* D03* X2875Y2134D02* D03* X2925D02* D03* X2923Y2233D02* D03* X2875Y2236D02* D03* X2874Y2287D02* D03* X2880Y2434D02* D03* X2923D02* D03* Y2489D02* D03* X2880D02* D03* Y2534D02* D03* X2923D02* D03* X2880Y2589D02* D03* Y2634D02* D03* X2925D02* D03* X2971Y2585D02* D03* X2980Y2534D02* D03* Y2489D02* D03* Y2434D02* D03* X2823D02* D03* X2780D02* D03* Y2489D02* D03* X2823D02* D03* Y2534D02* D03* X2780D02* D03* Y2589D02* D03* X2823D02* D03* Y2634D02* D03* X2824Y2685D02* D03* X2761Y2681D02* D03* X2431Y2528D02* D03* X2408Y2372D02* D03* X2362D02* D03* X2499Y2323D02* D03* X2614Y2315D02* D03* X2618Y2442D02* D03* X2611Y2539D02* D03* Y2593D02* D03* X2615Y2665D02* D03* X2612Y2731D02* D03* X2608Y2767D02* D03* X2622Y2796D02* D03* X2432Y2731D02* D03* X2470Y2762D02* D03* X2425Y2785D02* D03* X2314Y2790D02* D03* X2391Y3060D02* D03* X2393Y3113D02* D03* X2392Y3191D02* D03* X2352Y3192D02* D03* X2351Y3233D02* D03* X2356Y3265D02* D03* X2393Y3269D02* D03* X2438Y3267D02* D03* X2472Y3266D02* D03* Y3230D02* D03* X2436Y3190D02* D03* X2472Y3113D02* D03* X2476Y3147D02* D03* X2513Y3187D02* D03* X2550Y3190D02* D03* X2549Y3114D02* D03* X2543Y3077D02* D03* X2530Y3047D02* D03* X2585Y2979D02* D03* X2636Y2978D02* D03* X2719Y2977D02* D03* X2492Y3050D02* D03* X2445Y2980D02* D03* X2397Y2982D02* D03* X2293Y2926D02* D03* X2212Y3030D02* D03* X2190Y3008D02* D03* X2147Y2892D02* D03* X2173Y2866D02* D03* X2195Y2839D02* D03* X2104Y2791D02* D03* X2132Y2769D02* D03* X2147Y2802D02* D03* X2172Y2664D02* D03* X2094Y2670D02* D03* X2095Y2627D02* D03* X2091Y2518D02* D03* X2192Y2325D02* D03* X2218Y2385D02* D03* X2172D02* D03* X2090Y2401D02* D03* X2093Y2310D02* D03* X1972Y2380D02* D03* X1985Y2326D02* D03* X1902Y2314D02* D03* X1835Y2376D02* D03* X1839Y2441D02* D03* X1824Y2584D02* D03* Y2646D02* D03* X1982Y2748D02* D03* X1981Y2828D02* D03* X1913Y2899D02* D03* X1880Y3018D02* D03* X1799Y2966D02* D03* X1721D02* D03* X1757Y2839D02* D03* X2117Y3628D02* D03* X2116Y3592D02* D03* Y3504D02* D03* X2219Y3459D02* D03* X2204Y3402D02* D03* Y3367D02* D03* X2228Y3346D02* D03* X2278Y3345D02* D03* X2389Y3348D02* D03* X2357Y3345D02* D03* Y3308D02* D03* X2391Y3311D02* D03* X2472Y3308D02* D03* X2438Y3307D02* D03* Y3344D02* D03* X2472Y3345D02* D03* Y3387D02* D03* Y3424D02* D03* X2435D02* D03* Y3387D02* D03* X2393Y3426D02* D03* X2392Y3390D02* D03* X2356Y3388D02* D03* X2357Y3424D02* D03* X2278Y3463D02* D03* X2313Y3467D02* D03* X2357Y3466D02* D03* X2392Y3468D02* D03* X2393Y3504D02* D03* X2357Y3502D02* D03* X2315Y3582D02* D03* Y3623D02* D03* X2514Y3345D02* D03* Y3308D02* D03* X2551D02* D03* X2552Y3345D02* D03* X2551Y3387D02* D03* X2514D02* D03* Y3424D02* D03* X2551D02* D03* X2593D02* D03* Y3387D02* D03* X2629Y3351D02* D03* X2593Y3345D02* D03* Y3308D02* D03* X2629D02* D03* X2630Y3265D02* D03* X2629Y3230D02* D03* X2593D02* D03* X2592Y3265D02* D03* X2552D02* D03* X2551Y3230D02* D03* X2515D02* D03* X2514Y3265D02* D03* X2633Y3187D02* D03* Y3150D02* D03* X2667Y3113D02* D03* X2671Y3148D02* D03* X2706Y3194D02* D03* X2708Y3269D02* D03* X2750Y3266D02* D03* X2822Y3267D02* D03* X2783Y3232D02* D03* X2787Y3190D02* D03* X3216Y3221D02* D03* X3182D02* D03* X3160Y3131D02* D03* X3121Y3050D02* D03* X3120Y3016D02* D03* X3067Y3034D02* D03* X3121Y2951D02* D03* Y2869D02* D03* X3103Y2845D02* D03* X3062Y2786D02* D03* X3060Y2855D02* D03* X3030Y2869D02* D03* X3007Y2841D02* D03* X2975Y2835D02* D03* X2957Y2950D02* D03* X2920Y2872D02* D03* X2875Y2834D02* D03* X2829Y2859D02* D03* X2757Y2784D02* D03* X2824D02* D03* X2876Y2736D02* D03* X2875Y2785D02* D03* X2925D02* D03* X2973Y2737D02* D03* X2974Y2686D02* D03* X3041Y2687D02* D03* X3067Y2643D02* D03* X3020Y2636D02* D03* X3161Y2460D02* D03* X3176Y2486D02* D03* Y2516D02* D03* X3150Y2501D02* D03* X3148Y2533D02* D03* X3232Y2592D02* D03* X3221Y2530D02* D03* X3266Y2532D02* D03* X3335Y2586D02* D03* X3324Y2627D02* D03* X3279Y2639D02* D03* X3229Y2682D02* D03* X3276Y2684D02* D03* X3277Y2733D02* D03* X3379Y2685D02* D03* X3380Y2730D02* D03* X3425Y2736D02* D03* X3428Y2690D02* D03* X3421Y2640D02* D03* X3379Y2633D02* D03* X3475Y2645D02* D03* X3472Y2602D02* D03* X3562Y2688D02* D03* X3525Y2697D02* D03* X3530Y2737D02* D03* X3531Y2784D02* D03* X3476Y2828D02* D03* X3451Y2845D02* D03* X3426Y2827D02* D03* X3360Y2847D02* D03* X3394Y2886D02* D03* X3367Y2919D02* D03* X3278Y2961D02* D03* X3276Y3033D02* D03* X3326Y3035D02* D03* X3365Y3140D02* D03* X3413Y3035D02* D03* X3492Y2978D02* D03* X3628Y2967D02* D03* X3691Y3026D02* D03* X3788Y3128D02* D03* X3868Y3112D02* D03* X3847Y3039D02* D03* X3877D02* D03* X3907Y3041D02* D03* X3938Y3110D02* D03* X3996Y3093D02* D03* Y3044D02* D03* X3855Y3367D02* D03* X3851Y3440D02* D03* X3920Y3415D02* D03* X4001Y3383D02* D03* X3997Y3323D02* D03* Y3252D02* D03* X4004Y3122D02* D03* X3981Y3176D02* D03* X3875Y3169D02* D03* X3864Y3235D02* D03* X3747Y3284D02* D03* Y3340D02* D03* X3748Y3385D02* D03* X3747Y3440D02* D03* X3748Y3485D02* D03* X3693Y3486D02* D03* X3648Y3485D02* D03* X3647Y3440D02* D03* X3692D02* D03* X3693Y3386D02* D03* X3648Y3385D02* D03* X3647Y3340D02* D03* X3692D02* D03* X3693Y3286D02* D03* X3648Y3285D02* D03* X3659Y3191D02* D03* X3601Y3154D02* D03* X3819Y2920D02* D03* X3891D02* D03* X3932Y2811D02* D03* X3974Y2918D02* D03* X4010Y2908D02* D03* X4069Y2914D02* D03* X4102Y2893D02* D03* X4094Y2802D02* D03* X4066Y2816D02* D03* X4064Y2783D02* D03* X4142Y2545D02* D03* X4140Y2495D02* D03* X4144Y2445D02* D03* X4000Y2412D02* D03* Y2531D02* D03* X3817Y2543D02* D03* X3767Y2727D02* D03* X3623Y2635D02* D03* X3625Y2597D02* D03* X3583Y2539D02* D03* X3618Y2527D02* D03* X3633Y2493D02* D03* X3632Y2439D02* D03* X3627Y2411D02* D03* X3571Y2342D02* D03* X3667Y2343D02* D03* X3817Y2348D02* D03* X3725Y2247D02* D03* X3767Y2193D02* D03* X3817D02* D03* X3767Y2092D02* D03* X3817D02* D03* X3866D02* D03* X3918D02* D03* X3924Y2035D02* D03* X3874D02* D03* X3872Y1993D02* D03* X3925Y1947D02* D03* X3876Y1893D02* D03* X3821Y1882D02* D03* X3830Y1938D02* D03* X4015Y1973D02* D03* X4057Y1971D02* D03* X4186Y2012D02* D03* X4150Y2031D02* D03* X4163Y2090D02* D03* X4090Y2131D02* D03* X4093Y2163D02* D03* X4020Y2218D02* D03* X3924Y2260D02* D03* X3552Y2459D02* D03* X3533Y2539D02* D03* X3482D02* D03* X3433Y2537D02* D03* X3413Y2467D02* D03* X3478Y2430D02* D03* X3422Y2288D02* D03* X3416Y2244D02* D03* X3366D02* D03* X3372Y2288D02* D03* X3322D02* D03* X3316Y2244D02* D03* X3266D02* D03* X3272Y2288D02* D03* X3268Y2342D02* D03* X3318D02* D03* X3368Y2378D02* D03* X3418Y2342D02* D03* X3468D02* D03* X3472Y2288D02* D03* X3466Y2244D02* D03* X3468Y2142D02* D03* X3472Y2188D02* D03* X3422D02* D03* X3418Y2142D02* D03* X3368D02* D03* X3372Y2188D02* D03* X3318Y2142D02* D03* X3322Y2188D02* D03* X3272D02* D03* X3268Y2142D02* D03* X3224Y2109D02* D03* X3226Y2040D02* D03* X3227Y1983D02* D03* X3173D02* D03* X3177Y1937D02* D03* X3121Y1938D02* D03* X3071Y1931D02* D03* X3083Y1892D02* D03* X3126Y1887D02* D03* X3184Y1843D02* D03* X3173Y1785D02* D03* X2511Y2136D02* D03* X2460Y2133D02* D03* X2428Y2132D02* D03* X2445Y2101D02* D03* X2478Y1921D02* D03* X2414Y1914D02* D03* X2364Y1912D02* D03* X2303Y1816D02* D03* X2364Y1787D02* D03* X2307Y1736D02* D03* X2394Y1779D02* D03* X2483Y1793D02* D03* X2514Y1792D02* D03* X2661Y1726D02* D03* X2700Y1729D02* D03* X2695Y1671D02* D03* X2758Y1673D02* D03* X2764Y1727D02* D03* X2877Y1824D02* D03* X2875Y1785D02* D03* X2822Y1780D02* D03* X2777D02* D03* X2823Y1726D02* D03* X2874Y1727D02* D03* X2927Y1724D02* D03* X2973Y1726D02* D03* X2972Y1780D02* D03* X2927Y1784D02* D03* Y1824D02* D03* X2973Y1838D02* D03* X2972Y1880D02* D03* X2927D02* D03* X2976Y1934D02* D03* X3027Y1880D02* D03* Y1824D02* D03* Y1780D02* D03* X3084Y1794D02* D03* X3130Y1800D02* D03* X3075Y1735D02* D03* X3027Y1724D02* D03* X3049Y1676D02* D03* X3151Y1667D02* D03* X3229Y1604D02* D03* X3205Y1582D02* D03* X3253Y1629D02* D03* X3277Y1648D02* D03* X3276Y1682D02* D03* X3275Y1735D02* D03* X3277Y1795D02* D03* Y1838D02* D03* X3381Y1789D02* D03* X3419Y1828D02* D03* X3383Y1893D02* D03* X3433Y1943D02* D03* X3404Y1986D02* D03* X3434Y1990D02* D03* X3499Y2030D02* D03* X3483Y1943D02* D03* X3533D02* D03* X3583D02* D03* X3633D02* D03* X3675Y1935D02* D03* X3667Y1993D02* D03* X3633Y2093D02* D03* Y2143D02* D03* X3826Y2035D02* D03* X3812Y1993D02* D03* X3767Y1994D02* D03* X3770Y1940D02* D03* Y1888D02* D03* X3767Y1843D02* D03* X3717Y1743D02* D03* X3579Y1792D02* D03* X3489Y1738D02* D03* X3423Y1697D02* D03* X3350Y1684D02* D03* X3385Y1636D02* D03* X3390Y1579D02* D03* X3522Y1564D02* D03* X3553Y1566D02* D03* X3580Y1580D02* D03* X3607Y1565D02* D03* X3556Y1412D02* D03* X3513Y1415D02* D03* X3480Y1423D02* D03* X3388Y1438D02* D03* X3231Y1446D02* D03* X3105D02* D03* X3010Y1443D02* D03* X2853D02* D03* X2667Y1483D02* D03* X2567Y1458D02* D03* X2573Y1402D02* D03* X2462Y1399D02* D03* X2460Y1431D02* D03* X2514Y1608D02* D03* X2478Y1606D02* D03* X2439D02* D03* X2389D02* D03* X2300Y1639D02* D03* X2302Y1594D02* D03* X2305Y1541D02* D03* X2301Y1490D02* D03* X2303Y1441D02* D03* X2305Y1368D02* D03* X2236Y1304D02* D03* X2150Y1730D02* D03* X2171Y1757D02* D03* Y1800D02* D03* X2152Y1850D02* D03* X2171Y1877D02* D03* X2114Y1975D02* D03* X2124Y2031D02* D03* X2156Y2032D02* D03* X2220Y2082D02* D03* X2263Y2083D02* D03* X2319Y2034D02* D03* X2336Y2136D02* D03* X2291Y2212D02* D03* X2272Y2144D02* D03* X2211Y2148D02* D03* X2140Y2208D02* D03* X2147Y2139D02* D03* X2092Y2134D02* D03* X2090Y2215D02* D03* X1983Y2221D02* D03* X1904Y2206D02* D03* X1907Y2161D02* D03* X1831Y2116D02* D03* X1740Y1525D02* D03* X1775Y1710D02* D03* X1808Y1743D02* D03* Y1818D02* D03* X1906Y1820D02* D03* Y1884D02* D03* X1905Y1944D02* D03* X1838Y1940D02* D03* X1836Y2002D02* D03* X1905Y2061D02* D03* X1909Y2009D02* D03* X1983Y2006D02* D03* X2014Y1869D02* D03* X1984Y1818D02* D03* X1982Y1766D02* D03* X2017Y1715D02* D03* X1981Y1693D02* D03* X1984Y1655D02* D03* X1904Y1644D02* D03* X2017Y1590D02* D03* Y1540D02* D03* X2018Y1490D02* D03* X2017Y1390D02* D03* X2018Y1438D02* D03* X1903Y1418D02* D03* X1897Y1362D02* D03* X2654Y1179D02* D03* X2711Y1237D02* D03* X2742Y1236D02* D03* X2774Y1240D02* D03* X2837Y1237D02* D03* X2868Y1238D02* D03* X2931Y1243D02* D03* X2994Y1233D02* D03* X3089Y1234D02* D03* X3215Y1235D02* D03* X3246Y1238D02* D03* X3278Y1239D02* D03* X3310Y1242D02* D03* X3341D02* D03* X3372Y1234D02* D03* Y1268D02* D03* X3404Y1241D02* D03* X3435D02* D03* X3498Y1234D02* D03* X3529D02* D03* X3744Y1190D02* D03* X3752Y1241D02* D03* X3804Y1235D02* D03* X3867D02* D03* X3994Y1234D02* D03* X4089D02* D03* X4105Y1316D02* D03* X4120Y1237D02* D03* X4151D02* D03* X4184D02* D03* X4246Y1235D02* D03* X4310D02* D03* X4340Y1233D02* D03* X4373D02* D03* X4404D02* D03* X4435D02* D03* X4498Y1234D02* D03* X4544Y1119D02* D03* X4593Y1233D02* D03* X4687Y1235D02* D03* X4719Y1236D02* D03* X4845Y1233D02* D03* X5001Y1234D02* D03* X5033Y1235D02* D03* X5065Y1234D02* D03* X5172Y1236D02* D03* X5241Y1246D02* D03* X5268Y1218D02* D03* X6037Y1066D02* D03* X6023Y1222D02* D03* X5974Y1221D02* D03* X5926D02* D03* X5880Y1222D02* D03* X5771Y1220D02* D03* X5723D02* D03* X5679D02* D03* X5680Y1131D02* D03* X5632Y1220D02* D03* X5580D02* D03* X5530D02* D03* X5483D02* D03* X5439D02* D03* X5393D02* D03* Y1335D02* D03* X5439Y1334D02* D03* X5482D02* D03* X5527Y1335D02* D03* X5581Y1334D02* D03* X5631Y1335D02* D03* X5673Y1334D02* D03* X5719Y1335D02* D03* X5768D02* D03* X5878D02* D03* X5921D02* D03* X5974D02* D03* X6020Y1334D02* D03* X6070Y1335D02* D03* X6071Y1221D02* D03* X6121D02* D03* X6166D02* D03* X6209Y1222D02* D03* X6255D02* D03* X6427Y1223D02* D03* X6457D02* D03* X6497Y1302D02* D03* X6469Y1332D02* D03* X6566Y1223D02* D03* X6596Y1220D02* D03* X6625Y1262D02* D03* X6596Y1275D02* D03* X6620Y1297D02* D03* X6574D02* D03* X6543Y1280D02* D03* X6664Y1296D02* D03* X6697Y1292D02* D03* X6731Y1297D02* D03* X6715Y1336D02* D03* X6669Y1400D02* D03* X6655Y1425D02* D03* X6637Y1400D02* D03* X6611Y1416D02* D03* X6559Y1392D02* D03* X6508Y1362D02* D03* X6476Y1384D02* D03* X6452Y1403D02* D03* X6402Y1397D02* D03* X6362Y1402D02* D03* X6299Y1417D02* D03* X6298Y1461D02* D03* X6304Y1493D02* D03* X6361Y1505D02* D03* X6397Y1506D02* D03* Y1537D02* D03* X6368Y1548D02* D03* X6361Y1605D02* D03* X6393Y1612D02* D03* X6397Y1726D02* D03* Y1694D02* D03* X6335Y1672D02* D03* X6360Y1648D02* D03* X6335Y1626D02* D03* X6296Y1567D02* D03* X6284Y1629D02* D03* X6256Y1664D02* D03* X6225Y1645D02* D03* X6253Y1800D02* D03* X6336Y1792D02* D03* X6369Y1795D02* D03* X6402Y1803D02* D03* X6437Y1814D02* D03* X6464Y1786D02* D03* X6488Y1811D02* D03* X6524Y1868D02* D03* X6528Y1806D02* D03* X6511Y1773D02* D03* X6492Y1742D02* D03* X6516Y1719D02* D03* X6550Y1750D02* D03* X6560Y1785D02* D03* X6583Y1911D02* D03* X6636Y1903D02* D03* X6705Y1913D02* D03* X6735Y1908D02* D03* X6903Y1898D02* D03* X6996Y1849D02* D03* X6998Y1803D02* D03* X6952Y1777D02* D03* X7007Y1731D02* D03* X7033Y1672D02* D03* X7003Y1663D02* D03* X7063Y1672D02* D03* X7119Y1590D02* D03* X7089Y1578D02* D03* X7059Y1573D02* D03* X7037Y1532D02* D03* X7006D02* D03* Y1475D02* D03* X7036D02* D03* X7066D02* D03* X7113Y1343D02* D03* Y1313D02* D03* X7087Y1328D02* D03* X7086Y1297D02* D03* X7165Y1122D02* D03* X7203Y1274D02* D03* X7237Y1283D02* D03* X7268Y1329D02* D03* Y1391D02* D03* X6973Y1122D02* D03* X6890Y1123D02* D03* X6799Y1127D02* D03* X6769D02* D03* X6781Y1260D02* D03* X6802Y1292D02* D03* X6857Y1297D02* D03* X6841Y1336D02* D03* X6840Y1399D02* D03* X6817Y1419D02* D03* X6795Y1398D02* D03* X6757Y1421D02* D03* X6743Y1394D02* D03* X6707Y1421D02* D03* X6805Y1499D02* D03* X6774Y1516D02* D03* X6715Y1486D02* D03* X6721Y1550D02* D03* X6751Y1554D02* D03* X6740Y1611D02* D03* X6806Y1600D02* D03* Y1663D02* D03* X6743Y1712D02* D03* X6737Y1682D02* D03* X6686Y1700D02* D03* X6637Y1706D02* D03* X6621Y1677D02* D03* X6594Y1694D02* D03* X6593Y1663D02* D03* X6594Y1632D02* D03* X6628Y1600D02* D03* X6636Y1569D02* D03* X6595Y1542D02* D03* X6630Y1521D02* D03* X6606Y1494D02* D03* X6652Y1496D02* D03* X6562Y1491D02* D03* X6523Y1472D02* D03* X6500Y1443D02* D03* X6498Y1490D02* D03* X6524Y1505D02* D03* X6498Y1521D02* D03* Y1584D02* D03* X6524Y1601D02* D03* X6497Y1615D02* D03* X6524Y1632D02* D03* X6498Y1647D02* D03* X6524Y1663D02* D03* X6060Y1600D02* D03* X6065Y1670D02* D03* Y1811D02* D03* X5995Y1850D02* D03* X5965D02* D03* X5980Y1971D02* D03* X6038Y1972D02* D03* X6165Y1970D02* D03* X6215D02* D03* X6212Y2123D02* D03* X6168D02* D03* X6033Y2139D02* D03* X5978D02* D03* X5979Y2076D02* D03* X6035D02* D03* X5926D02* D03* X5873D02* D03* X5823D02* D03* X5772D02* D03* Y2140D02* D03* X5822Y2139D02* D03* X5872Y2140D02* D03* X5925D02* D03* Y1972D02* D03* X5875Y1971D02* D03* X5824D02* D03* X5771Y1972D02* D03* X5772Y1850D02* D03* X5855D02* D03* X5860Y1678D02* D03* X5729Y1680D02* D03* X5469Y1683D02* D03* X5500D02* D03* X5535Y1680D02* D03* X5587Y1850D02* D03* X5451D02* D03* X5413D02* D03* X5297Y1796D02* D03* X5175Y1701D02* D03* X5245Y1542D02* D03* X5243Y1511D02* D03* X5116Y1505D02* D03* X5081Y1439D02* D03* X5049Y1447D02* D03* X5018Y1446D02* D03* X4860D02* D03* X4704D02* D03* X4609Y1445D02* D03* X4514D02* D03* X4420Y1446D02* D03* X4388Y1563D02* D03* X4356D02* D03* X4494Y1656D02* D03* X4491Y1719D02* D03* X4895Y1726D02* D03* X4770Y1863D02* D03* X4628Y1983D02* D03* X4632Y2016D02* D03* X4556Y2076D02* D03* X4459Y2180D02* D03* X4344Y2062D02* D03* X4308Y2096D02* D03* X4366Y1862D02* D03* X4275Y1751D02* D03* X4321Y1714D02* D03* X4325Y1563D02* D03* X4294D02* D03* X4199Y1561D02* D03* X4231Y1560D02* D03* X4263Y1446D02* D03* X4168Y1561D02* D03* X4136Y1560D02* D03* X4105Y1445D02* D03* X4010Y1446D02* D03* X3851Y1416D02* D03* X3821Y1445D02* D03* X3854Y1559D02* D03* X3917Y1693D02* D03* X3867Y1743D02* D03* X3965Y1802D02* D03* X3987Y1781D02* D03* X4008Y1759D02* D03* X4031Y1692D02* D03* X4029Y1648D02* D03* X4430Y2340D02* D03* X4365Y2374D02* D03* X4196Y2376D02* D03* X4264D02* D03* X4260Y2495D02* D03* X4363Y2564D02* D03* X4356Y2595D02* D03* X4389D02* D03* X4568Y2590D02* D03* X4940Y2413D02* D03* X4956Y2184D02* D03* X5053Y2094D02* D03* X5189Y2115D02* D03* X5193Y2164D02* D03* X5292Y2413D02* D03* X5363Y2210D02* D03* X5433Y2181D02* D03* X5346Y2132D02* D03* X5308Y2158D02* D03* X5276Y2187D02* D03* X5365Y2000D02* D03* X5475Y1989D02* D03* Y2020D02* D03* X5580Y2110D02* D03* X5620Y2406D02* D03* X5990Y2413D02* D03* X6172Y2421D02* D03* X6183Y2324D02* D03* X6270Y2320D02* D03* X6298Y2339D02* D03* X6330Y2215D02* D03* X6389Y2144D02* D03* X6462Y2107D02* D03* X6518Y2113D02* D03* X6590Y2045D02* D03* X6522Y1986D02* D03* X6476Y1990D02* D03* X6446Y1986D02* D03* X6393Y2001D02* D03* X6390Y1969D02* D03* X6625Y1790D02* D03* X6669Y1800D02* D03* X6699Y1799D02* D03* X6729Y1800D02* D03* X6789Y1795D02* D03* X6831Y1797D02* D03* X6897Y1752D02* D03* Y1722D02* D03* Y1692D02* D03* X6903Y1617D02* D03* X6877Y1568D02* D03* X6900Y1474D02* D03* X6914Y1419D02* D03* X6944Y1413D02* D03* Y1371D02* D03* X6998Y1397D02* D03* X6995Y1352D02* D03* X6994Y1309D02* D03* X7025Y1345D02* D03* X6949Y1287D02* D03* X6924Y1258D02* D03* X6877Y1254D02* D03* X6888Y1296D02* D03* X7268Y2079D02* D03* Y2141D02* D03* Y2229D02* D03* Y2291D02* D03* X7271Y2381D02* D03* X7097Y2329D02* D03* X7121Y2307D02* D03* Y2276D02* D03* Y2245D02* D03* Y2213D02* D03* Y2157D02* D03* Y2126D02* D03* Y2095D02* D03* X7099Y2004D02* D03* X7040Y2006D02* D03* X6860Y2075D02* D03* X6836Y2054D02* D03* X6770D02* D03* X6707Y2053D02* D03* X6711Y2141D02* D03* X6621D02* D03* X6635Y2300D02* D03* Y2330D02* D03* X6600D02* D03* Y2300D02* D03* Y2265D02* D03* X6635D02* D03* X6670D02* D03* Y2300D02* D03* Y2330D02* D03* X6656Y2422D02* D03* X6805Y2520D02* D03* X6835D02* D03* Y2485D02* D03* X6805D02* D03* Y2450D02* D03* X6835D02* D03* X6978Y2433D02* D03* X7093Y2425D02* D03* Y2455D02* D03* X7094Y2395D02* D03* X6776Y3157D02* D03* Y3203D02* D03* X6725D02* D03* Y3157D02* D03* X6674D02* D03* Y3203D02* D03* X6618Y3204D02* D03* Y3158D02* D03* X6512Y3156D02* D03* X6510Y2955D02* D03* X6618Y3005D02* D03* X6615Y3040D02* D03* X6671Y3039D02* D03* X6674Y3004D02* D03* X6725D02* D03* X6722Y3039D02* D03* X6773D02* D03* X6776Y3004D02* D03* X6889D02* D03* X6886Y3039D02* D03* X6933D02* D03* X6936Y3004D02* D03* X6945Y2938D02* D03* Y2910D02* D03* X6995D02* D03* Y2938D02* D03* X7112Y2813D02* D03* X7045Y2821D02* D03* X6995D02* D03* X6945D02* D03* X6831D02* D03* X6775D02* D03* X6725D02* D03* X6675D02* D03* X6678Y2776D02* D03* X6675Y2938D02* D03* Y2910D02* D03* X6725D02* D03* Y2938D02* D03* X6775D02* D03* Y2910D02* D03* X6831D02* D03* Y2938D02* D03* X6835Y3004D02* D03* X6832Y3039D02* D03* X6936Y3157D02* D03* Y3203D02* D03* X6835D02* D03* Y3157D02* D03* X6889D02* D03* Y3203D02* D03* X6891Y3348D02* D03* X7271Y3057D02* D03* X7268Y2891D02* D03* Y2829D02* D03* Y2751D02* D03* Y2689D02* D03* Y2601D02* D03* Y2539D02* D03* X7115Y2656D02* D03* X7112Y2701D02* D03* Y2732D02* D03* X7111Y2763D02* D03* X7112Y2844D02* D03* Y2875D02* D03* Y2907D02* D03* X7045Y2910D02* D03* Y2938D02* D03* X7099Y3010D02* D03* X7100Y3043D02* D03* X7116Y3160D02* D03* X7121Y3310D02* D03* Y3424D02* D03* Y3865D02* D03* Y3724D02* D03* Y3640D02* D03* X7070Y3665D02* D03* Y3629D02* D03* Y3594D02* D03* X7032Y3561D02* D03* Y3594D02* D03* Y3629D02* D03* Y3665D02* D03* X6995D02* D03* Y3629D02* D03* Y3594D02* D03* Y3561D02* D03* X6958D02* D03* Y3594D02* D03* Y3629D02* D03* Y3665D02* D03* X6919Y3561D02* D03* Y3594D02* D03* Y3629D02* D03* Y3665D02* D03* X6830Y3704D02* D03* X6762Y3630D02* D03* X6678Y3648D02* D03* X6562Y3775D02* D03* X6717Y3882D02* D03* X6849Y3887D02* D03* X6874Y3911D02* D03* X6910Y3883D02* D03* X6872Y3990D02* D03* X6770Y4038D02* D03* X6658Y4161D02* D03* X6728Y4181D02* D03* X6769Y4163D02* D03* X6807Y4160D02* D03* X6834Y4174D02* D03* X6897Y4186D02* D03* X6908Y4390D02* D03* X6960Y4382D02* D03* X6986Y4461D02* D03* X6927Y4539D02* D03* X6956Y4594D02* D03* X7104Y4627D02* D03* X7067Y4525D02* D03* X7185Y4493D02* D03* X7195Y4352D02* D03* X7238Y4315D02* D03* X7265Y4240D02* D03* X7107Y4256D02* D03* X7094Y4226D02* D03* X7121Y4156D02* D03* X7092Y4074D02* D03* X7077Y4777D02* D03* Y4810D02* D03* Y4844D02* D03* Y4877D02* D03* X7014D02* D03* Y4844D02* D03* Y4810D02* D03* Y4777D02* D03* X6943D02* D03* Y4810D02* D03* Y4844D02* D03* Y4877D02* D03* X6881D02* D03* Y4844D02* D03* Y4810D02* D03* Y4777D02* D03* X6822D02* D03* Y4810D02* D03* Y4844D02* D03* Y4877D02* D03* X6760D02* D03* Y4844D02* D03* Y4810D02* D03* Y4777D02* D03* X6571Y4788D02* D03* X6652Y4777D02* D03* Y4810D02* D03* Y4844D02* D03* Y4877D02* D03* X6704D02* D03* Y4844D02* D03* Y4810D02* D03* Y4777D02* D03* X6721Y4638D02* D03* X6725Y4562D02* D03* X6604Y4420D02* D03* X6625Y4562D02* D03* X6512Y4615D02* D03* X6411Y4619D02* D03* X6311Y4824D02* D03* X6131Y4820D02* D03* X6069D02* D03* X5971Y4360D02* D03* X5620Y4359D02* D03* X5270Y4358D02* D03* X4924Y4363D02* D03* X4788Y4824D02* D03* X4959D02* D03* X5151D02* D03* X5391D02* D03* D381* X1943Y2242D02* Y2238D01* Y2085D02* Y2081D01* Y1927D02* Y1923D01* Y1760D02* Y1756D01* D018* X7466Y1192D02* X7503Y1155D01* X7192Y1190D02* X7197Y1195D01* X7463D01* X7466Y1192D01* X7117D01* X7045Y1120D01* X6975D01* X6973Y1122D01* X6070Y1335D02* D01* X6100Y1365D01* Y1646D01* X6068Y1678D01* X6070Y1680D02* X6068Y1678D01* X6063Y1673D01* X6065Y1670D01* X6068Y1678D02* X6067Y1679D01* Y1800D01* X6065D01* Y1811D01* X5970Y1680D02* Y1744D01* X5983Y1757D01* Y1800D01* X5996D02* Y1849D01* X5995Y1850D01* X5996Y1800D02* X5983D01* X5965D01* Y1850D01* X5580Y2110D02* D01* X6101Y2988D02* X6120Y3007D01* Y3030D01* X6100Y3136D02* Y3154D01* X6067Y3187D01* X6100Y3234D02* Y3250D01* X6077Y3273D01* X6104Y3372D02* Y3388D01* X6126Y3411D01* X6122Y3451D02* X6100Y3473D01* Y3490D01* Y3588D02* Y3605D01* X6122Y3627D01* X6104Y3726D02* Y3743D01* X6081Y3765D01* X6021Y3903D02* X5989D01* X5975Y3889D01* Y3888D01* X5905Y3881D02* X5878Y3908D01* X5863D01* Y3907D01* X5764Y3881D02* X5742Y3903D01* X5726D01* X5666Y3881D02* X5644Y3903D01* X5627D01* X5515Y3885D02* Y3890D01* X5502Y3903D01* X5465D01* X5390Y3881D02* X5368Y3903D01* X5352D01* X5298Y3885D02* Y3886D01* X5281Y3903D01* X5253D01* X5178Y3886D02* X5157Y3907D01* X5135D01* X5036Y3660D02* Y3641D01* X5053Y3624D01* X5036Y3555D02* Y3539D01* X5058Y3516D01* X5032Y3440D02* Y3424D01* X5054Y3401D01* X5037Y3332D02* Y3316D01* X5059Y3294D01* X5037Y3234D02* Y3218D01* X5059Y3195D01* X5033Y3116D02* Y3099D01* X5058Y3074D01* X5037Y2998D02* Y2981D01* X5059Y2959D01* X4336Y2545D02* X4288D01* X4336Y2495D02* X4288D01* X4336Y2445D02* X4288D01* X4336Y2395D02* X4288D01* X4112D02* X4064D01* X4112Y2445D02* X4064D01* X4112Y2495D02* X4064D01* X4112Y2545D02* X4064D01* D043* X3850Y2560D02* D03* Y2510D02* D03* X3900D02* D03* Y2560D02* D03* Y2610D02* D03* X3850D02* D03* Y2660D02* D03* X3900D02* D03* Y2760D02* D03* Y2710D02* D03* X3850D02* D03* Y2760D02* D03* X3900Y2810D02* D03* X3850D02* D03* X3800D02* D03* X3750D02* D03* Y2760D02* D03* X3700D02* D03* Y2810D02* D03* Y2710D02* D03* Y2660D02* D03* X3750D02* D03* Y2710D02* D03* X3800Y2760D02* D03* Y2710D02* D03* Y2660D02* D03* X3500Y2560D02* D03* Y2610D02* D03* X3550D02* D03* Y2560D02* D03* X3600D02* D03* Y2610D02* D03* X3650D02* D03* Y2560D02* D03* Y2510D02* D03* Y2460D02* D03* Y2410D02* D03* Y2360D02* D03* X3700Y2260D02* D03* X3750D02* D03* X3800D02* D03* Y2210D02* D03* Y2160D02* D03* X3750D02* D03* Y2210D02* D03* X3700D02* D03* Y2160D02* D03* X3650D02* D03* Y2110D02* D03* X3700D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3900D02* D03* Y2060D02* D03* X3850D02* D03* Y2010D02* D03* Y1960D02* D03* X3900D02* D03* Y2010D02* D03* X3850Y1910D02* D03* X3900D02* D03* Y1860D02* D03* X3850D02* D03* Y1810D02* D03* Y1760D02* D03* X3900D02* D03* Y1810D02* D03* Y1710D02* D03* X3850D02* D03* X3700D02* D03* X3750D02* D03* X3800D02* D03* Y1760D02* D03* Y1810D02* D03* X3750Y1760D02* D03* X3700D02* D03* Y1810D02* D03* X3750D02* D03* Y1860D02* D03* X3800D02* D03* X3700D02* D03* X3650D02* D03* X3700Y1960D02* D03* Y1910D02* D03* X3750D02* D03* Y1960D02* D03* X3800Y1910D02* D03* Y1960D02* D03* Y2010D02* D03* Y2060D02* D03* X3750D02* D03* Y2010D02* D03* X3700D02* D03* Y2060D02* D03* X3650D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* X3600D02* D03* Y1960D02* D03* X3550D02* D03* Y1910D02* D03* X3500D02* D03* Y1960D02* D03* X3600Y1860D02* D03* X3550D02* D03* X3500D02* D03* X3450D02* D03* Y1910D02* D03* Y1960D02* D03* X3400Y1910D02* D03* X3350D02* D03* X3300D02* D03* Y1860D02* D03* X3350D02* D03* X3400D02* D03* Y1810D02* D03* X3450D02* D03* Y1760D02* D03* Y1710D02* D03* X3400D02* D03* X3350D02* D03* X3300D02* D03* Y1760D02* D03* Y1810D02* D03* X3350D02* D03* Y1760D02* D03* X3400D02* D03* X3500D02* D03* Y1810D02* D03* X3550D02* D03* Y1760D02* D03* X3600D02* D03* Y1810D02* D03* X3650D02* D03* Y1760D02* D03* Y1710D02* D03* X3600D02* D03* X3550D02* D03* X3500D02* D03* X3850Y2260D02* D03* Y2210D02* D03* Y2160D02* D03* X3900D02* D03* Y2210D02* D03* Y2260D02* D03* Y2360D02* D03* Y2310D02* D03* X3850D02* D03* Y2360D02* D03* X3800Y2310D02* D03* Y2360D02* D03* X3750D02* D03* Y2310D02* D03* X3700D02* D03* Y2360D02* D03* Y2410D02* D03* X3750D02* D03* X3800D02* D03* X3850D02* D03* X3900D02* D03* Y2460D02* D03* X3850D02* D03* X3800D02* D03* X3750D02* D03* X3700D02* D03* Y2510D02* D03* Y2560D02* D03* X3750D02* D03* Y2510D02* D03* X3800D02* D03* Y2560D02* D03* Y2610D02* D03* X3750D02* D03* X3700D02* D03* X3550Y2810D02* D03* X3600D02* D03* X3650D02* D03* Y2760D02* D03* Y2710D02* D03* Y2660D02* D03* X3600D02* D03* Y2710D02* D03* Y2760D02* D03* X3550D02* D03* Y2710D02* D03* Y2660D02* D03* X3500D02* D03* Y2710D02* D03* Y2760D02* D03* Y2810D02* D03* X3450D02* D03* X2950Y2760D02* D03* Y2810D02* D03* X3000D02* D03* Y2760D02* D03* X3050D02* D03* Y2810D02* D03* X3100D02* D03* Y2760D02* D03* X3150D02* D03* Y2810D02* D03* X3200D02* D03* Y2760D02* D03* X3250D02* D03* Y2810D02* D03* X3300D02* D03* Y2760D02* D03* X3350D02* D03* Y2810D02* D03* X3400D02* D03* Y2760D02* D03* X3450D02* D03* Y2710D02* D03* Y2660D02* D03* X3400D02* D03* Y2710D02* D03* X3350D02* D03* Y2660D02* D03* X3300D02* D03* Y2710D02* D03* X3250D02* D03* Y2660D02* D03* X3200D02* D03* Y2710D02* D03* X3150D02* D03* Y2660D02* D03* X3100D02* D03* Y2710D02* D03* X3050D02* D03* Y2660D02* D03* X3000D02* D03* Y2710D02* D03* X2950D02* D03* Y2660D02* D03* X2900D02* D03* Y2710D02* D03* D018* X2655Y2639D02* X2641D01* X2615Y2665D01* X2655Y2701D02* X2707D01* X2716Y2710D01* X2800D01* D043* D03* Y2760D02* D03* Y2810D02* D03* X2900Y2760D02* D03* Y2810D02* D03* X2850D02* D03* Y2760D02* D03* Y2710D02* D03* Y2660D02* D03* X2800D02* D03* Y2610D02* D03* Y2560D02* D03* X2850D02* D03* Y2610D02* D03* X2900D02* D03* Y2560D02* D03* Y2510D02* D03* Y2460D02* D03* X2850D02* D03* Y2510D02* D03* X2800D02* D03* Y2460D02* D03* X2850Y2310D02* D03* X2800D02* D03* Y2360D02* D03* Y2410D02* D03* X2850D02* D03* Y2360D02* D03* X2900Y2410D02* D03* Y2360D02* D03* Y2310D02* D03* X2950D02* D03* X3000D02* D03* Y2260D02* D03* X2950D02* D03* Y2210D02* D03* X3000D02* D03* Y2160D02* D03* X2950D02* D03* Y2110D02* D03* X3000D02* D03* X3050D02* D03* Y2160D02* D03* X2950Y2010D02* D03* Y2060D02* D03* X3000D02* D03* Y2010D02* D03* X3050Y2060D02* D03* Y2010D02* D03* Y1960D02* D03* X3100D02* D03* Y1910D02* D03* X3050D02* D03* X3000D02* D03* Y1960D02* D03* X2950D02* D03* Y1910D02* D03* X3050Y1760D02* D03* X3000D02* D03* X2950D02* D03* Y1810D02* D03* Y1860D02* D03* X3000D02* D03* Y1810D02* D03* X3050D02* D03* Y1860D02* D03* X3100D02* D03* Y1810D02* D03* Y1760D02* D03* X3150D02* D03* X3200D02* D03* X3250D02* D03* Y1710D02* D03* X3200D02* D03* X3150D02* D03* X3100D02* D03* X3050D02* D03* X3000D02* D03* X3150Y1810D02* D03* Y1860D02* D03* X3200D02* D03* Y1810D02* D03* X3250D02* D03* Y1860D02* D03* Y1910D02* D03* Y1960D02* D03* X3200D02* D03* Y1910D02* D03* X3150D02* D03* Y1960D02* D03* X3300Y2260D02* D03* X3350D02* D03* X3400D02* D03* X3450D02* D03* X3400Y2210D02* D03* X3450D02* D03* Y2160D02* D03* X3400D02* D03* X3350D02* D03* Y2210D02* D03* X3300D02* D03* Y2160D02* D03* X3250D02* D03* Y2210D02* D03* Y2260D02* D03* Y2310D02* D03* Y2360D02* D03* X3300D02* D03* Y2310D02* D03* X3350D02* D03* Y2360D02* D03* X3400D02* D03* Y2310D02* D03* X3450D02* D03* Y2360D02* D03* Y2560D02* D03* Y2610D02* D03* X3400D02* D03* X3350D02* D03* X3300D02* D03* X3250D02* D03* Y2560D02* D03* X3200D02* D03* Y2610D02* D03* X3150D02* D03* Y2560D02* D03* X3050Y2610D02* D03* X3100D02* D03* Y2560D02* D03* X3050Y2510D02* D03* Y2560D02* D03* X3000D02* D03* Y2610D02* D03* X2950D02* D03* Y2560D02* D03* Y2460D02* D03* Y2510D02* D03* X3000D02* D03* Y2460D02* D03* X3050D02* D03* Y2410D02* D03* Y2360D02* D03* X3000D02* D03* Y2410D02* D03* X2950D02* D03* Y2360D02* D03* X2800Y2260D02* D03* Y2210D02* D03* X2850D02* D03* Y2260D02* D03* X2900D02* D03* Y2210D02* D03* Y2160D02* D03* Y2110D02* D03* X2850Y2160D02* D03* Y2110D02* D03* X2800D02* D03* Y2160D02* D03* Y2060D02* D03* Y2010D02* D03* X2850D02* D03* Y2060D02* D03* X2900D02* D03* Y2010D02* D03* Y1960D02* D03* Y1910D02* D03* X2850Y1960D02* D03* Y1910D02* D03* X2800D02* D03* Y1960D02* D03* Y1860D02* D03* Y1810D02* D03* X2850D02* D03* Y1860D02* D03* X2900D02* D03* Y1810D02* D03* Y1760D02* D03* X2850D02* D03* X2800D02* D03* Y1710D02* D03* X2850D02* D03* X2900D02* D03* X2950D02* D03* D018* X2695Y1530D02* Y1472D01* X2727Y1530D02* Y1472D01* X2790D02* Y1530D01* X2758Y1472D02* Y1530D01* X2821D02* Y1472D01* X2853Y1530D02* Y1472D01* X2884Y1530D02* Y1472D01* X2916Y1530D02* Y1472D01* X2979D02* Y1530D01* X2947Y1472D02* Y1530D01* X3010D02* Y1472D01* X3042Y1530D02* Y1472D01* X3105D02* Y1530D01* X3073Y1472D02* Y1530D01* X3136D02* Y1472D01* X3168Y1530D02* Y1472D01* X3199Y1530D02* Y1472D01* X3231Y1530D02* Y1472D01* X3294D02* Y1530D01* X3262Y1472D02* Y1530D01* X3325D02* Y1472D01* X3357Y1530D02* Y1472D01* X3420D02* Y1530D01* X3388Y1472D02* Y1530D01* X3451D02* Y1472D01* X3483Y1530D02* Y1472D01* X3514Y1530D02* Y1472D01* X3546Y1530D02* Y1472D01* X3577Y1530D02* Y1472D01* X3609Y1530D02* Y1472D01* X3790Y1530D02* Y1472D01* X3821Y1530D02* Y1472D01* X3884D02* Y1530D01* X3853Y1472D02* Y1530D01* X3916D02* Y1472D01* X3947Y1530D02* Y1472D01* X4010D02* Y1530D01* X3979Y1472D02* Y1530D01* X4042D02* Y1472D01* X4073Y1530D02* Y1472D01* X4136D02* Y1530D01* X4105Y1472D02* Y1530D01* X4168D02* Y1472D01* X4199Y1530D02* Y1472D01* X4262D02* Y1530D01* X4231Y1472D02* Y1530D01* X4294D02* Y1472D01* X4325Y1530D02* Y1472D01* X4357Y1530D02* Y1472D01* X4388Y1530D02* Y1472D01* X4420Y1530D02* Y1472D01* X4483D02* Y1530D01* X4451Y1472D02* Y1530D01* X4514D02* Y1472D01* X4546Y1530D02* Y1472D01* X4609D02* Y1530D01* X4577Y1472D02* Y1530D01* X4640D02* Y1472D01* X4671Y1530D02* Y1472D01* X4703Y1530D02* Y1472D01* X4734Y1530D02* Y1472D01* X4797D02* Y1530D01* X4766Y1472D02* Y1530D01* X4829D02* Y1472D01* X4860Y1530D02* Y1472D01* X4923D02* Y1530D01* X4892Y1472D02* Y1530D01* X4955D02* Y1472D01* X4986Y1530D02* Y1472D01* X5018Y1530D02* Y1472D01* X5081D02* Y1530D01* X5049Y1472D02* Y1530D01* X5065Y1150D02* Y1208D01* X5034Y1150D02* Y1208D01* X5002Y1150D02* Y1208D01* X4971Y1150D02* Y1208D01* X4908D02* Y1150D01* X4939Y1208D02* Y1150D01* X4876D02* Y1208D01* X4845Y1150D02* Y1208D01* X4782D02* Y1150D01* X4813Y1208D02* Y1150D01* X4750D02* Y1208D01* X4719Y1150D02* Y1208D01* X4687Y1150D02* Y1208D01* X4656Y1150D02* Y1208D01* X4624Y1150D02* Y1208D01* X4561D02* Y1150D01* X4593Y1208D02* Y1150D01* X4530D02* Y1208D01* X4498Y1150D02* Y1208D01* X4435D02* Y1150D01* X4467Y1208D02* Y1150D01* X4404D02* Y1208D01* X4372Y1150D02* Y1208D01* X4341Y1150D02* Y1208D01* X4309Y1150D02* Y1208D01* X4246D02* Y1150D01* X4278Y1208D02* Y1150D01* X4215D02* Y1208D01* X4183Y1150D02* Y1208D01* X4120D02* Y1150D01* X4152Y1208D02* Y1150D01* X4089D02* Y1208D01* X4057Y1150D02* Y1208D01* X4026Y1150D02* Y1208D01* X3994Y1150D02* Y1208D01* X3963Y1150D02* Y1208D01* X3900D02* Y1150D01* X3931Y1208D02* Y1150D01* X3837Y1208D02* Y1150D01* X3868Y1208D02* Y1150D01* X3805D02* Y1208D01* X3774Y1150D02* Y1208D01* X3593Y1150D02* Y1208D01* X3561Y1150D02* Y1208D01* X3530Y1150D02* Y1208D01* X3498Y1150D02* Y1208D01* X3467Y1150D02* Y1208D01* X3404D02* Y1150D01* X3435Y1208D02* Y1150D01* X3372D02* Y1208D01* X3341Y1150D02* Y1208D01* X3278D02* Y1150D01* X3309Y1208D02* Y1150D01* X3246D02* Y1208D01* X3215Y1150D02* Y1208D01* X3183Y1150D02* Y1208D01* X3152Y1150D02* Y1208D01* X3120Y1150D02* Y1208D01* X3057D02* Y1150D01* X3089Y1208D02* Y1150D01* X3026D02* Y1208D01* X2994Y1150D02* Y1208D01* X2931D02* Y1150D01* X2963Y1208D02* Y1150D01* X2900D02* Y1208D01* X2868Y1150D02* Y1208D01* X2837Y1150D02* Y1208D01* X2805Y1150D02* Y1208D01* X2742D02* Y1150D01* X2774Y1208D02* Y1150D01* X2711D02* Y1208D01* X2679Y1150D02* Y1208D01* X2017Y1390D02* X2083D01* X1951Y1669D02* Y1689D01* X1876Y1669D02* Y1689D01* Y1748D02* Y1768D01* X1951Y1836D02* Y1856D01* X1876Y1836D02* Y1856D01* Y1915D02* Y1935D01* X1951Y1994D02* Y2014D01* X1876Y1994D02* Y2014D01* Y2073D02* Y2093D01* X1951Y2151D02* Y2171D01* X1876Y2151D02* Y2171D01* Y2230D02* Y2250D01* X1885Y3940D02* X1814Y4011D01* Y4091D01* X1950Y4292D02* X1951Y4293D01* X2008D01* X1814Y4366D02* X1851D01* X1885Y4400D01* X1852Y4473D02* X1891D01* Y4510D01* X1852D02* X1891D01* Y4548D01* X1851D01* X2035Y4400D02* Y4404D01* D01* X2009Y4510D02* Y4462D01* X2035Y4436D01* Y4404D01* Y4320D01* X2008Y4293D01* X2525Y4076D02* Y4028D01* X2575Y4076D02* Y4028D01* X2625Y4076D02* Y4028D01* X2675Y4076D02* Y4028D01* Y3852D02* Y3804D01* X2625Y3852D02* Y3804D01* X2575Y3852D02* Y3804D01* X2525Y3852D02* Y3804D01* D043* X2970Y4070D02* D03* Y4020D02* D03* X3020D02* D03* Y4070D02* D03* X3070D02* D03* Y4020D02* D03* X3120D02* D03* Y4070D02* D03* X3170D02* D03* Y4020D02* D03* X3220D02* D03* Y4070D02* D03* X3270D02* D03* Y4020D02* D03* X3320D02* D03* Y4070D02* D03* X3370D02* D03* Y4020D02* D03* X3420D02* D03* Y4070D02* D03* X3470D02* D03* Y4020D02* D03* X3520D02* D03* Y4070D02* D03* X3570D02* D03* Y4020D02* D03* X3620D02* D03* Y4070D02* D03* X3670D02* D03* Y4020D02* D03* X3720D02* D03* Y4070D02* D03* X3770D02* D03* Y4020D02* D03* Y3720D02* D03* Y3770D02* D03* X3720D02* D03* Y3720D02* D03* Y3620D02* D03* Y3670D02* D03* X3770D02* D03* Y3620D02* D03* Y3570D02* D03* X3720D02* D03* Y3520D02* D03* Y3470D02* D03* X3770D02* D03* Y3520D02* D03* X3670D02* D03* Y3470D02* D03* X3620D02* D03* Y3520D02* D03* Y3570D02* D03* X3670D02* D03* X3570D02* D03* Y3520D02* D03* Y3470D02* D03* X3520D02* D03* X3470D02* D03* Y3370D02* D03* Y3420D02* D03* X3520D02* D03* Y3370D02* D03* X3570Y3320D02* D03* Y3370D02* D03* Y3420D02* D03* X3620D02* D03* X3670D02* D03* X3720D02* D03* Y3370D02* D03* X3770D02* D03* Y3420D02* D03* D018* X3920Y3415D02* D01* D043* X3770Y3320D02* D03* Y3270D02* D03* X3720D02* D03* Y3320D02* D03* X3670D02* D03* Y3370D02* D03* X3620D02* D03* Y3320D02* D03* X3670Y3270D02* D03* X3620D02* D03* X3570D02* D03* X3520D02* D03* Y3320D02* D03* X3470D02* D03* Y3270D02* D03* X3420D02* D03* Y3320D02* D03* X3370D02* D03* Y3270D02* D03* X3320D02* D03* Y3320D02* D03* X3270D02* D03* Y3270D02* D03* X3220D02* D03* X3170D02* D03* Y3320D02* D03* X3220D02* D03* Y3370D02* D03* Y3420D02* D03* X3170D02* D03* Y3370D02* D03* X3120D02* D03* Y3420D02* D03* X3070D02* D03* Y3370D02* D03* X3120Y3270D02* D03* Y3320D02* D03* X3070D02* D03* Y3270D02* D03* X3020D02* D03* X2970D02* D03* Y3320D02* D03* X3020D02* D03* Y3370D02* D03* X2970D02* D03* Y3420D02* D03* X3020D02* D03* Y3470D02* D03* Y3520D02* D03* X2970D02* D03* Y3470D02* D03* Y3570D02* D03* X3020D02* D03* Y3620D02* D03* X2970D02* D03* Y3670D02* D03* X3020D02* D03* Y3720D02* D03* X2970D02* D03* Y3770D02* D03* X3020D02* D03* X2970Y3820D02* D03* X3020D02* D03* Y3870D02* D03* Y3920D02* D03* X2970D02* D03* Y3870D02* D03* Y3970D02* D03* X3020D02* D03* X3120Y3820D02* D03* X3070D02* D03* Y3870D02* D03* X3120D02* D03* Y3920D02* D03* X3070D02* D03* Y3970D02* D03* X3120D02* D03* X3170D02* D03* Y3920D02* D03* X3220D02* D03* Y3970D02* D03* X3370Y3870D02* D03* Y3920D02* D03* X3420D02* D03* Y3970D02* D03* X3370D02* D03* X3320D02* D03* Y3920D02* D03* X3270D02* D03* Y3970D02* D03* Y3870D02* D03* X3220D02* D03* X3170D02* D03* Y3820D02* D03* Y3770D02* D03* X3120Y3720D02* D03* Y3770D02* D03* X3070D02* D03* Y3720D02* D03* Y3670D02* D03* X3120D02* D03* X3170D02* D03* X3120Y3620D02* D03* X3070D02* D03* X3120Y3470D02* D03* X3070D02* D03* Y3520D02* D03* Y3570D02* D03* X3120D02* D03* Y3520D02* D03* X3170Y3570D02* D03* Y3520D02* D03* Y3470D02* D03* X3220D02* D03* X3270D02* D03* X3370D02* D03* Y3420D02* D03* X3420D02* D03* Y3370D02* D03* X3370D02* D03* X3320D02* D03* Y3420D02* D03* X3270D02* D03* Y3370D02* D03* X3370Y3670D02* D03* Y3620D02* D03* X3320D02* D03* Y3670D02* D03* Y3720D02* D03* X3370D02* D03* X3420D02* D03* Y3670D02* D03* Y3620D02* D03* X3570Y3670D02* D03* X3620D02* D03* Y3620D02* D03* X3670D02* D03* Y3670D02* D03* Y3720D02* D03* Y3770D02* D03* X3620D02* D03* Y3720D02* D03* X3570Y3770D02* D03* Y3820D02* D03* Y3870D02* D03* X3520D02* D03* Y3920D02* D03* X3470D02* D03* Y3870D02* D03* Y3970D02* D03* X3520D02* D03* X3570D02* D03* Y3920D02* D03* X3670Y3820D02* D03* X3620D02* D03* Y3870D02* D03* X3670D02* D03* Y3920D02* D03* X3620D02* D03* Y3970D02* D03* X3670D02* D03* X3720D02* D03* X3770D02* D03* Y3920D02* D03* X3720D02* D03* Y3870D02* D03* Y3820D02* D03* X3770D02* D03* Y3870D02* D03* D018* X4330Y4100D02* X4429D01* X4749Y4420D01* X6604D01* D370* X2242Y1972D02* D03* X2143Y1336D02* D03* X2731Y1503D02* D03* X2794Y1439D02* D03* X2789Y1503D02* D03* X2758Y1502D02* D03* X2821Y1503D02* D03* X2883Y1403D02* D03* X2884Y1471D02* D03* X2916Y1472D02* D03* X2947D02* D03* X2950Y1421D02* D03* X3032Y1427D02* D03* X3058Y1444D02* D03* X3042Y1472D02* D03* X3076D02* D03* X3084Y1424D02* D03* X3121Y1398D02* D03* X3138Y1380D02* D03* X3155Y1358D02* D03* X3324Y1562D02* D03* X3357Y1504D02* D03* X3415Y1536D02* D03* X3449Y1498D02* D03* X3486Y1501D02* D03* X3497Y1632D02* D03* X3401Y1674D02* D03* X3422Y1735D02* D03* Y1786D02* D03* X3435Y1849D02* D03* X3478Y1839D02* D03* X3487Y1791D02* D03* X3533Y2223D02* D03* X3625Y2314D02* D03* X3712Y2298D02* D03* X3714Y2346D02* D03* X3764D02* D03* Y2396D02* D03* X3716Y2394D02* D03* X3763Y2296D02* D03* X3813D02* D03* X3864Y2274D02* D03* X3715Y2192D02* D03* X3714Y2145D02* D03* X3715Y2096D02* D03* X3768Y2142D02* D03* X3715Y2046D02* D03* X3665D02* D03* X3087Y1696D02* D03* X3151Y1736D02* D03* X3136Y1846D02* D03* X3088Y1850D02* D03* X3181Y1892D02* D03* X3233Y1895D02* D03* X3225Y1837D02* D03* X3282Y1894D02* D03* X3334Y1892D02* D03* X3331Y1841D02* D03* X3380Y1843D02* D03* X3463Y1923D02* D03* X3520Y1920D02* D03* X3534Y1895D02* D03* X3576Y1887D02* D03* Y1852D02* D03* X3588Y1832D02* D03* X3630Y1796D02* D03* X3700Y1685D02* D03* X3723Y1788D02* D03* X3802Y1835D02* D03* X3664Y1845D02* D03* X3715D02* D03* X3718Y1895D02* D03* X3716Y1945D02* D03* X3715Y1995D02* D03* X3765Y2045D02* D03* X3962Y2034D02* D03* X3945Y1825D02* D03* X3918Y1742D02* D03* X3986Y1546D02* D03* X3837Y1178D02* D03* X4971Y1209D02* D03* X4813Y1207D02* D03* X4782Y1206D02* D03* X4750Y1207D02* D03* X4559Y1290D02* D03* X4530Y1210D02* D03* X4424Y1275D02* D03* X4289Y1368D02* D03* X4482Y1481D02* D03* X4544Y1525D02* D03* X4574Y1467D02* D03* X4631Y1417D02* D03* X4661Y1436D02* D03* X4734Y1513D02* D03* X4766Y1512D02* D03* X4797D02* D03* X4831Y1514D02* D03* X4816Y1562D02* D03* X4798Y1585D02* D03* X4892Y1514D02* D03* X4923Y1513D02* D03* X4954D02* D03* X4989D02* D03* X5243Y1573D02* D03* X5311Y1406D02* D03* X5296Y1288D02* D03* X4772Y2632D02* D03* X4644Y2612D02* D03* X4464Y2902D02* D03* X4005Y2649D02* D03* X3983Y2722D02* D03* X3932Y2739D02* D03* X3839Y2864D02* D03* X3865Y2851D02* D03* X3871Y2774D02* D03* X3844Y2784D02* D03* X3817Y2777D02* D03* X3816Y2726D02* D03* X3833Y2692D02* D03* X3874Y2671D02* D03* X3889Y2635D02* D03* X3878Y2594D02* D03* X3880Y2546D02* D03* X3817Y2449D02* D03* X3821Y2488D02* D03* X3767Y2493D02* D03* X3765Y2445D02* D03* X3715D02* D03* Y2495D02* D03* X3680Y2538D02* D03* X3675Y2629D02* D03* X3718Y2628D02* D03* X3765Y2594D02* D03* Y2546D02* D03* X3826Y2573D02* D03* X3815Y2595D02* D03* Y2644D02* D03* X3766Y2676D02* D03* X3729Y2790D02* D03* X3716Y2726D02* D03* X3715Y2675D02* D03* X3680Y2690D02* D03* X3645Y2686D02* D03* X3623Y2703D02* D03* X3633Y2743D02* D03* Y2790D02* D03* X3678Y2831D02* D03* X3680Y2857D02* D03* X3646Y2869D02* D03* X3600Y2852D02* D03* X3579Y2607D02* D03* X3571Y2630D02* D03* X3529Y2670D02* D03* X3360Y2564D02* D03* X2926Y2586D02* D03* X2975Y2635D02* D03* X2887Y2684D02* D03* X2927Y2687D02* D03* Y2735D02* D03* X2974Y2865D02* D03* X2369Y2775D02* D03* X2426Y3068D02* D03* X2451Y3094D02* D03* X2490D02* D03* X2530D02* D03* X2569D02* D03* X2594Y3077D02* D03* X2608Y3094D02* D03* X2616Y3056D02* D03* X2648Y3094D02* D03* Y3133D02* D03* X2634Y3108D02* D03* X2608Y3133D02* D03* Y3173D02* D03* X2569D02* D03* X2579Y3146D02* D03* X2569Y3133D02* D03* X2530D02* D03* X2490D02* D03* X2451D02* D03* X2412D02* D03* Y3094D02* D03* X2372D02* D03* X2333D02* D03* X2293D02* D03* X2254D02* D03* Y3133D02* D03* Y3291D02* D03* Y3252D02* D03* X2293D02* D03* X2333D02* D03* Y3212D02* D03* X2293D02* D03* X2254D02* D03* Y3173D02* D03* X2293D02* D03* Y3133D02* D03* X2333D02* D03* Y3173D02* D03* X2372Y3133D02* D03* X2387Y3154D02* D03* X2372Y3173D02* D03* Y3212D02* D03* X2412D02* D03* X2451D02* D03* Y3173D02* D03* X2412D02* D03* X2451Y3252D02* D03* Y3291D02* D03* X2412D02* D03* Y3252D02* D03* X2372D02* D03* Y3291D02* D03* Y3330D02* D03* X2412D02* D03* X2451D02* D03* X2490D02* D03* X2530D02* D03* X2569D02* D03* X2608D02* D03* Y3291D02* D03* X2648D02* D03* X2687D02* D03* X2674Y3305D02* D03* X2648Y3330D02* D03* X2674Y3344D02* D03* X2687Y3330D02* D03* X2727D02* D03* Y3291D02* D03* Y3252D02* D03* X2744Y3226D02* D03* X2727Y3212D02* D03* X2766D02* D03* Y3252D02* D03* Y3291D02* D03* Y3330D02* D03* X2687Y3409D02* D03* X2674Y3384D02* D03* X2648Y3409D02* D03* Y3448D02* D03* Y3488D02* D03* X2674Y3502D02* D03* X2687Y3488D02* D03* Y3448D02* D03* X2727D02* D03* Y3488D02* D03* Y3527D02* D03* X2687D02* D03* X2674Y3541D02* D03* X2687Y3567D02* D03* X2648D02* D03* X2634Y3581D02* D03* X2648Y3606D02* D03* X2687D02* D03* X2713Y3581D02* D03* X2727Y3567D02* D03* Y3606D02* D03* X2766D02* D03* Y3567D02* D03* Y3527D02* D03* X2782Y3502D02* D03* X2766Y3488D02* D03* Y3448D02* D03* Y3409D02* D03* Y3370D02* D03* X2745Y3401D02* D03* X2727Y3409D02* D03* Y3370D02* D03* X2713Y3384D02* D03* X2687Y3370D02* D03* X2648D02* D03* X2608D02* D03* Y3409D02* D03* Y3448D02* D03* Y3488D02* D03* X2254Y3606D02* D03* Y3567D02* D03* X2293D02* D03* Y3606D02* D03* X2333D02* D03* Y3567D02* D03* X2358Y3560D02* D03* X2372Y3567D02* D03* Y3606D02* D03* X2412D02* D03* X2451D02* D03* X2412Y3567D02* D03* X2451D02* D03* Y3527D02* D03* X2412D02* D03* X2372D02* D03* Y3488D02* D03* Y3448D02* D03* X2412D02* D03* Y3488D02* D03* X2451D02* D03* Y3448D02* D03* Y3409D02* D03* Y3370D02* D03* X2412D02* D03* Y3409D02* D03* X2372D02* D03* Y3370D02* D03* X2333D02* D03* Y3330D02* D03* Y3291D02* D03* X2293D02* D03* Y3330D02* D03* X2254D02* D03* Y3370D02* D03* X2293D02* D03* Y3409D02* D03* X2333D02* D03* X2254D02* D03* Y3448D02* D03* Y3488D02* D03* Y3527D02* D03* X2293D02* D03* X2333D02* D03* Y3488D02* D03* Y3448D02* D03* X2293D02* D03* Y3488D02* D03* X2490D02* D03* Y3448D02* D03* X2530D02* D03* Y3488D02* D03* Y3527D02* D03* X2490D02* D03* X2507Y3550D02* D03* X2490Y3567D02* D03* X2530D02* D03* X2516Y3581D02* D03* X2490Y3606D02* D03* X2530D02* D03* X2556Y3620D02* D03* X2569Y3606D02* D03* X2595Y3620D02* D03* X2608Y3606D02* D03* X2569Y3567D02* D03* X2595Y3581D02* D03* X2608Y3567D02* D03* X2634Y3541D02* D03* X2648Y3527D02* D03* X2608D02* D03* X2595Y3541D02* D03* X2569Y3527D02* D03* Y3488D02* D03* Y3448D02* D03* Y3409D02* D03* X2530D02* D03* X2490D02* D03* Y3370D02* D03* X2530D02* D03* X2569D02* D03* X2530Y3173D02* D03* X2490D02* D03* Y3212D02* D03* X2530D02* D03* X2569D02* D03* Y3252D02* D03* X2530D02* D03* X2490D02* D03* Y3291D02* D03* X2530D02* D03* X2569D02* D03* X2608Y3252D02* D03* Y3212D02* D03* X2648D02* D03* Y3173D02* D03* X2674Y3187D02* D03* X2687Y3173D02* D03* Y3212D02* D03* X2671Y3234D02* D03* X2648Y3252D02* D03* X2674Y3266D02* D03* X2687Y3252D02* D03* X2766Y3094D02* D03* X2727D02* D03* X2687D02* D03* Y3133D02* D03* X2713Y3148D02* D03* X2727Y3173D02* D03* X2766D02* D03* X2727Y3133D02* D03* X2752Y3148D02* D03* X2766Y3133D02* D03* X2921Y3161D02* D03* X3243Y3391D02* D03* X3519Y4051D02* D03* X3600Y4003D02* D03* X3720Y4046D02* D03* X3640Y3891D02* D03* X3685Y3792D02* D03* X3599Y3770D02* D03* X3743Y3711D02* D03* X3746Y3689D02* D03* X3780Y3698D02* D03* X3827Y3633D02* D03* X3697Y3196D02* D03* X3839Y3315D02* D03* X4002Y3426D02* D03* X4129Y3622D02* D03* X4221Y3669D02* D03* X4360Y3741D02* D03* X4441Y3742D02* D03* X4524Y3598D02* D03* X5788Y3958D02* D03* X7008Y3199D02* D03* X7010Y3175D02* D03* X7012Y3151D02* D03* X7013Y3121D02* D03* X7122Y3072D02* D03* X7120Y3026D02* D03* Y2994D02* D03* Y2963D02* D03* Y2607D02* D03* Y2576D02* D03* Y2544D02* D03* Y2513D02* D03* X7116Y2063D02* D03* X7091Y1977D02* D03* X7081Y1946D02* D03* X7084Y1915D02* D03* X7034Y1828D02* D03* X7036Y1802D02* D03* X7051Y1777D02* D03* X7065Y1744D02* D03* X7051Y1711D02* D03* X6843Y1681D02* D03* X6841Y1709D02* D03* Y1742D02* D03* X6809Y1741D02* D03* X6814Y1714D02* D03* X6781Y1711D02* D03* X6716Y1742D02* D03* X6756Y1772D02* D03* X6745Y1836D02* D03* X6748Y1870D02* D03* X6872Y1835D02* D03* X6841D02* D03* X6809Y1867D02* D03* X6813Y1894D02* D03* X6783Y1915D02* D03* X6830Y1911D02* D03* X6909Y1923D02* D03* X6927Y1910D02* D03* X6667Y2053D02* D03* X6564Y2052D02* D03* X6461Y1921D02* D03* X6480Y1887D02* D03* X6560Y1834D02* D03* X6623Y1835D02* D03* X6593Y1778D02* D03* X6649Y1771D02* D03* X6655Y1739D02* D03* X6559Y1613D02* D03* X6465Y1554D02* D03* X6435Y1551D02* D03* Y1520D02* D03* X6731Y1265D02* D03* X6751Y1366D02* D03* X6624Y1362D02* D03* X6592Y1394D02* D03* X6718Y1454D02* D03* X6753Y1462D02* D03* X6784Y1424D02* D03* X6881Y1496D02* D03* X6935Y1553D02* D03* Y1588D02* D03* X6881Y1601D02* D03* X6844Y1616D02* D03* X6878Y1652D02* D03* X6899Y1666D02* D03* X6935Y1648D02* D03* X6939Y1675D02* D03* X6969Y1614D02* D03* X7002Y1637D02* D03* X7103Y1622D02* D03* X7101Y1532D02* D03* X7105Y1510D02* D03* X7043Y1424D02* D03* X7065Y1423D02* D03* X7066Y1399D02* D03* X7046Y1387D02* D03* X7019Y1374D02* D03* D023* X2179Y2070D02* Y2090D01* X2101Y2070D02* Y2090D01* X2035Y3922D02* Y3958D01* X1885Y3922D02* Y3958D01* Y4418D02* Y4382D01* X1891Y4481D02* Y4540D01* X2009D02* Y4481D01* X2035Y4382D02* Y4418D01* X3891Y3510D02* Y3490D01* X3969Y3510D02* Y3490D01* X5032Y3460D02* Y3420D01* X5037Y3342D02* Y3322D01* Y3244D02* Y3224D01* X5033Y3136D02* Y3096D01* X5037Y3008D02* Y2988D01* X5115Y3008D02* Y2988D01* X5204Y2919D02* X5184D01* X5204Y2840D02* X5184D01* X5686Y2836D02* X5726D01* X5834Y2840D02* X5854D01* X5932D02* X5952D01* Y2919D02* X5932D01* X5854D02* X5834D01* X5726Y2962D02* X5686D01* X5994Y3010D02* Y3050D01* X6021Y3126D02* Y3146D01* Y3224D02* Y3244D01* X6100D02* Y3224D01* Y3146D02* Y3126D01* X6120Y3050D02* Y3010D01* X6781Y3360D02* Y3340D01* X6859Y3360D02* Y3340D01* D048* X7346Y3283D02* D03* X7425D02* D03* X7504Y3205D02* D03* Y3126D02* D03* X7425D02* D03* Y3205D02* D03* X7346D02* D03* Y3126D02* D03* X7503Y3045D02* D03* X7581D02* D03* X7583Y3126D02* D03* Y3205D02* D03* X7661D02* D03* Y3126D02* D03* X7740Y3205D02* D03* Y3283D02* D03* Y3362D02* D03* Y3441D02* D03* Y3520D02* D03* Y3598D02* D03* Y3677D02* D03* X7583Y3756D02* D03* X7661D02* D03* X7740D02* D03* Y3835D02* D03* Y3913D02* D03* X7661D02* D03* Y3835D02* D03* X7583D02* D03* Y3913D02* D03* X7504Y3835D02* D03* Y3913D02* D03* X7425D02* D03* Y3835D02* D03* X7346D02* D03* Y3913D02* D03* D023* X6031Y3903D02* X6011D01* X6031Y3825D02* X6011D01* X6104Y3746D02* Y3706D01* X6100Y3598D02* Y3578D01* Y3500D02* Y3480D01* X6104Y3392D02* Y3352D01* X5978D02* Y3392D01* X6021Y3480D02* Y3500D01* Y3578D02* Y3598D01* X5978Y3706D02* Y3746D01* X5883Y3781D02* X5843D01* X5883Y3907D02* X5843D01* X5736Y3903D02* X5716D01* X5637D02* X5617D01* Y3825D02* X5637D01* X5716D02* X5736D01* X5485Y3777D02* X5445D01* X5485Y3903D02* X5445D01* X5362D02* X5342D01* X5362Y3825D02* X5342D01* X5263D02* X5243D01* X5155Y3781D02* X5115D01* Y3907D02* X5155D01* X5243Y3903D02* X5263D01* X5114Y3650D02* Y3670D01* X5036Y3650D02* Y3670D01* Y3565D02* Y3545D01* X5114Y3565D02* Y3545D01* X5158Y3460D02* Y3420D01* X5115Y3342D02* Y3322D01* Y3244D02* Y3224D01* X5159Y3136D02* Y3096D01* X5312Y2962D02* X5352D01* X5445Y2919D02* X5465D01* X5525D02* X5545D01* Y2841D02* X5525D01* X5465D02* X5445D01* X5352Y2836D02* X5312D01* X5459Y2140D02* Y2120D01* X5381Y2140D02* Y2120D01* X5469Y1910D02* Y1890D01* X5391Y1910D02* Y1890D01* X5857Y1780D02* Y1820D01* X5983Y1780D02* Y1820D01* D048* X7581Y1234D02* D03* Y1313D02* D03* X7503D02* D03* Y1234D02* D03* X7424D02* D03* Y1313D02* D03* X7345D02* D03* Y1234D02* D03* Y1155D02* D03* X7424D02* D03* X7503D02* D03* X7581D02* D03* X7660D02* D03* Y1234D02* D03* Y1313D02* D03* Y1391D02* D03* X7739D02* D03* Y1313D02* D03* Y1234D02* D03* Y1470D02* D03* Y1549D02* D03* Y1628D02* D03* X7660D02* D03* Y1706D02* D03* Y1785D02* D03* Y1864D02* D03* X7739D02* D03* Y1943D02* D03* X7660D02* D03* X7739Y1785D02* D03* Y1706D02* D03* X7424D02* D03* Y1785D02* D03* Y1864D02* D03* X7345D02* D03* Y1785D02* D03* Y1706D02* D03* Y1628D02* D03* X7424D02* D03* Y1549D02* D03* Y1470D02* D03* Y1391D02* D03* X7345D02* D03* Y1470D02* D03* Y1549D02* D03* X7503Y1391D02* D03* X7581D02* D03* X7660Y1470D02* D03* Y1549D02* D03* X7581D02* D03* Y1470D02* D03* X7503D02* D03* Y1549D02* D03* Y1628D02* D03* X7581D02* D03* Y1706D02* D03* Y1785D02* D03* X7503D02* D03* Y1706D02* D03* X7581Y1864D02* D03* X7503D02* D03* Y1943D02* D03* X7581D02* D03* X7424D02* D03* X7345D02* D03* Y2021D02* D03* Y2100D02* D03* Y2179D02* D03* Y2257D02* D03* X7424D02* D03* Y2336D02* D03* X7345D02* D03* Y2415D02* D03* Y2494D02* D03* Y2572D02* D03* X7424D02* D03* Y2494D02* D03* Y2415D02* D03* X7503Y2572D02* D03* X7581D02* D03* X7660Y2494D02* D03* Y2415D02* D03* X7581D02* D03* Y2494D02* D03* X7503D02* D03* Y2415D02* D03* X7581Y2336D02* D03* X7503D02* D03* Y2257D02* D03* X7581D02* D03* X7660D02* D03* Y2336D02* D03* X7739D02* D03* Y2257D02* D03* Y2415D02* D03* Y2494D02* D03* Y2730D02* D03* Y2651D02* D03* Y2572D02* D03* X7660D02* D03* Y2651D02* D03* Y2730D02* D03* Y2809D02* D03* X7739D02* D03* Y2887D02* D03* Y2966D02* D03* Y3045D02* D03* X7660D02* D03* Y2966D02* D03* Y2887D02* D03* X7581D02* D03* Y2966D02* D03* X7503D02* D03* Y2887D02* D03* Y2809D02* D03* X7581D02* D03* Y2730D02* D03* Y2651D02* D03* X7503D02* D03* Y2730D02* D03* X7424D02* D03* Y2651D02* D03* X7345D02* D03* Y2730D02* D03* Y2809D02* D03* X7424D02* D03* Y2887D02* D03* Y2966D02* D03* Y3045D02* D03* X7345D02* D03* Y2966D02* D03* Y2887D02* D03* X7661Y3283D02* D03* X7583D02* D03* X7504D02* D03* Y3362D02* D03* Y3441D02* D03* X7425D02* D03* Y3362D02* D03* X7346D02* D03* Y3441D02* D03* Y3520D02* D03* X7425D02* D03* Y3598D02* D03* Y3677D02* D03* X7346D02* D03* Y3598D02* D03* Y3756D02* D03* X7425D02* D03* X7504D02* D03* Y3677D02* D03* Y3598D02* D03* Y3520D02* D03* X7583Y3598D02* D03* Y3677D02* D03* X7661D02* D03* Y3598D02* D03* Y3520D02* D03* X7583D02* D03* Y3441D02* D03* Y3362D02* D03* X7661D02* D03* Y3441D02* D03* X7346Y4386D02* D03* Y4307D02* D03* X7425D02* D03* Y4386D02* D03* X7504D02* D03* Y4307D02* D03* Y4228D02* D03* X7425D02* D03* X7346D02* D03* X7425Y4071D02* D03* Y4150D02* D03* X7346D02* D03* Y4071D02* D03* Y3992D02* D03* X7425D02* D03* X7504D02* D03* X7583D02* D03* X7661D02* D03* X7740D02* D03* Y4150D02* D03* Y4071D02* D03* X7661D02* D03* Y4150D02* D03* X7583D02* D03* Y4071D02* D03* X7504D02* D03* Y4150D02* D03* X7583Y4228D02* D03* X7661D02* D03* X7740D02* D03* Y4307D02* D03* Y4386D02* D03* X7661D02* D03* Y4307D02* D03* X7583D02* D03* Y4386D02* D03* X7504Y4465D02* D03* Y4543D02* D03* X7425D02* D03* Y4465D02* D03* X7346D02* D03* Y4543D02* D03* X7425Y4622D02* D03* X7346D02* D03* Y4701D02* D03* Y4780D02* D03* X7425D02* D03* Y4701D02* D03* X7740Y4780D02* D03* Y4701D02* D03* X7661D02* D03* Y4780D02* D03* X7583D02* D03* Y4701D02* D03* X7504Y4780D02* D03* Y4701D02* D03* Y4622D02* D03* X7583D02* D03* Y4543D02* D03* Y4465D02* D03* X7661D02* D03* Y4543D02* D03* Y4622D02* D03* X7740D02* D03* Y4543D02* D03* Y4465D02* D03* D021* X4119Y4770D02* Y4750D01* X4181Y4770D02* Y4750D01* X4390Y3741D02* X4410D01* X4460D02* X4480D01* Y3679D02* X4460D01* X4410D02* X4390D01* X3860Y3641D02* X3880D01* X3860Y3579D02* X3880D01* X3909Y3230D02* Y3210D01* X3971Y3230D02* Y3210D01* X3970Y3131D02* X3950D01* X3900D02* X3880D01* Y3069D02* X3900D01* X3950D02* X3970D01* Y3011D02* X3950D01* X3900D02* X3880D01* Y2949D02* X3900D01* X3950D02* X3970D01* X3590Y3001D02* X3610D01* X3660D02* X3680D01* Y2939D02* X3660D01* X3610D02* X3590D01* X3320D02* X3300D01* X3320Y3001D02* X3300D01* X2870Y3489D02* X2850D01* X2870Y3551D02* X2850D01* X2870Y3609D02* X2850D01* X2870Y3671D02* X2850D01* Y3859D02* X2830D01* X2780D02* X2760D01* Y3921D02* X2780D01* X2830D02* X2850D01* Y3979D02* X2830D01* X2777D02* X2757D01* Y4041D02* X2777D01* X2830D02* X2850D01* X1990Y4619D02* X1970D01* X1990Y4681D02* X1970D01* X1890D02* X1910D01* X1890Y4619D02* X1910D01* X1840D02* X1820D01* X1840Y4681D02* X1820D01* X2170Y3401D02* X2150D01* X2170Y3339D02* X2150D01* X2170Y3281D02* X2150D01* Y3219D02* X2170D01* Y3161D02* X2150D01* X2170Y3099D02* X2150D01* X2170Y3041D02* X2150D01* Y2979D02* X2170D01* X2222Y2988D02* Y2968D01* X2284Y2988D02* Y2968D01* X2360Y2891D02* X2340D01* X2360Y2829D02* X2340D01* X2645Y2701D02* X2665D01* X2645Y2639D02* X2665D01* Y2586D02* X2645D01* X2665Y2524D02* X2645D01* X2181Y2180D02* Y2160D01* X2230Y2176D02* X2250D01* X2299Y2180D02* Y2160D01* Y2110D02* Y2090D01* X2250Y2114D02* X2230D01* X2361Y2160D02* Y2180D01* Y2110D02* Y2090D01* X2353Y2034D02* X2373D01* X2353Y1972D02* X2373D01* X2205Y1940D02* X2268D01* X2205Y1890D02* X2268D01* X2205Y1840D02* X2268D01* X2205Y1790D02* X2268D01* X2205Y1740D02* X2268D01* X2205Y1690D02* X2268D01* X2205Y1640D02* X2268D01* Y1590D02* X2205D01* X2268Y1540D02* X2205D01* X2268Y1490D02* X2205D01* X2268Y1440D02* X2205D01* X2268Y1390D02* X2205D01* X2268Y1340D02* X2205D01* X1869Y1400D02* Y1380D01* X1931Y1400D02* Y1380D01* X2052Y1340D02* X2115D01* X2052Y1390D02* X2115D01* X2052Y1440D02* X2115D01* X2052Y1490D02* X2115D01* X2052Y1540D02* X2115D01* X2052Y1590D02* X2115D01* Y1640D02* X2052D01* X2115Y1690D02* X2052D01* X2115Y1740D02* X2052D01* X2115Y1790D02* X2052D01* X2115Y1840D02* X2052D01* X2115Y1890D02* X2052D01* X2115Y1940D02* X2052D01* X2037Y2080D02* X2057D01* X2037Y2142D02* X2057D01* X2119Y2160D02* Y2180D01* X2058Y2226D02* X2038D01* X2058Y2288D02* X2038D01* X2045Y2339D02* X2025D01* X2045Y2401D02* X2025D01* X1950Y2349D02* X1930D01* X1950Y2411D02* X1930D01* X1855D02* X1875D01* X1855Y2349D02* X1875D01* X3359Y1620D02* Y1600D01* X3421Y1620D02* Y1600D01* X3999Y1680D02* Y1660D01* X4061Y1680D02* Y1660D01* Y2000D02* Y2020D01* X3999Y2000D02* Y2020D01* Y2180D02* Y2200D01* X4061Y2180D02* Y2200D01* X4461Y2360D02* Y2380D01* X4399Y2360D02* Y2380D01* X4390Y2429D02* X4410D01* X4450D02* X4470D01* X4451Y2560D02* Y2540D01* X4470Y2491D02* X4450D01* X4390D02* X4410D01* X4389Y2540D02* Y2560D01* X4460Y2629D02* X4440D01* X4390D02* X4370D01* X4320D02* X4300D01* Y2691D02* X4320D01* X4370D02* X4390D01* X4440D02* X4460D01* X5399Y2200D02* Y2220D01* X5461Y2200D02* Y2220D01* Y2270D02* Y2290D01* X5399Y2270D02* Y2290D01* X5829Y2995D02* Y3015D01* X5891Y2995D02* Y3015D01* X6239Y2300D02* Y2280D01* X6301Y2300D02* Y2280D01* X6480Y2141D02* X6500D01* X6480Y2079D02* X6500D01* X6590Y2141D02* X6570D01* X6590Y2079D02* X6570D01* Y2021D02* X6550D01* X6570Y1959D02* X6550D01* X6690D02* X6710D01* X6760D02* X6780D01* X6830D02* X6850D01* X6900D02* X6920D01* Y2021D02* X6900D01* X6850D02* X6830D01* X6780D02* X6760D01* X6710D02* X6690D01* X6680Y2079D02* X6660D01* X6680Y2141D02* X6660D01* X6911Y3830D02* Y3850D01* X6849Y3830D02* Y3850D01* X6779Y3980D02* Y4000D01* X6841Y3980D02* Y4000D01* X7230Y4219D02* X7210D01* X7230Y4281D02* X7210D01* D047* X2160Y1365D02* D03* Y1915D02* D03* D028* X2409Y1356D02* X2378D01* X2409Y1466D02* X2378D01* X2410Y1731D02* X2379D01* X2410Y1841D02* X2379D01* X2140Y2386D02* Y2355D01* X2250Y2386D02* Y2355D01* X2330D02* Y2386D01* X2440Y2355D02* Y2386D01* X2425Y2835D02* Y2866D01* X2535Y2835D02* Y2866D01* X2665Y2965D02* Y2996D01* X2555Y2965D02* Y2996D01* X2475Y2965D02* Y2996D01* X2365Y2965D02* Y2996D01* X3796Y3005D02* X3765D01* X3796Y3115D02* X3765D01* X3936Y3305D02* X3905D01* X3936Y3415D02* X3905D01* X4166Y4555D02* X4135D01* X4166Y4665D02* X4135D01* X6715Y4085D02* Y4116D01* X6825Y4085D02* Y4116D01* X5375Y1785D02* Y1816D01* X5485Y1785D02* Y1816D01* X5475Y2036D02* Y2005D01* X5365Y2036D02* Y2005D01* X6315Y2215D02* X6346D01* X6315Y2105D02* X6346D01* Y2035D02* X6315D01* X6346Y1925D02* X6315D01* X6725Y1165D02* Y1196D01* X6835Y1165D02* Y1196D01* D030* X2364Y2530D02* X2371D01* X2529D02* X2536D01* Y2730D02* X2529D01* X2371D02* X2364D01* D056* X2359Y4522D02* D03* X3940D02* D03* D066* X1913Y4799D02* D03* Y1217D02* D03* X6440Y2320D02* D03* X7230Y4790D02* D03* D068* X1641Y1217D02* D03* Y4720D02* D03* D053* X1955Y3170D02* D03* Y3270D02* D03* Y3370D02* D03* X2081Y4644D02* D03* X1814Y4268D02* D03* Y4189D02* D03* Y4091D02* D03* X2055Y3420D02* D03* Y3320D02* D03* Y3220D02* D03* Y3120D02* D03* D027* X1606Y1069D02* X3047D01* X3344D02* X5405D01* X6252D02* X7693D01* D052* X1606Y2116D02* D03* Y2041D02* D03* X1681D02* D03* Y2116D02* D03* X1756Y2041D02* D03* Y2116D02* D03* Y2191D02* D03* Y2266D02* D03* X1681D02* D03* Y2191D02* D03* X1606D02* D03* Y2266D02* D03* X1756Y2341D02* D03* Y2416D02* D03* Y2491D02* D03* X1681Y2416D02* D03* Y2341D02* D03* X1606D02* D03* Y2416D02* D03* Y2566D02* D03* Y2491D02* D03* X1681D02* D03* Y2566D02* D03* X1891Y3774D02* D03* X1941Y3724D02* D03* X2041D02* D03* X2141D02* D03* X2150Y4020D02* D03* X4950Y4680D02* D03* X5050D02* D03* Y4580D02* D03* X4950D02* D03* X4850D02* D03* Y4680D02* D03* X4750D02* D03* Y4580D02* D03* X4650Y4680D02* D03* Y4580D02* D03* X4550D02* D03* Y4680D02* D03* X4450D02* D03* Y4580D02* D03* X4330Y4200D02* D03* Y4100D02* D03* X4332Y2800D02* D03* X4150Y1340D02* D03* X4250D02* D03* X4350D02* D03* X4450D02* D03* X4550D02* D03* X4650D02* D03* X4750D02* D03* X6630Y2022D02* D03* X6820Y2372D02* D03* X7060Y2052D02* D03* X7080Y3332D02* D03* X6722Y3720D02* D03* X7080Y4128D02* D03* X6350Y4580D02* D03* X6250Y4680D02* D03* Y4580D02* D03* X6150D02* D03* Y4680D02* D03* X5850Y4580D02* D03* X5950D02* D03* X6050D02* D03* Y4680D02* D03* X5950D02* D03* X5850D02* D03* X5750D02* D03* Y4580D02* D03* X5650D02* D03* Y4680D02* D03* X5550Y4580D02* D03* Y4680D02* D03* X5450D02* D03* X5350D02* D03* Y4580D02* D03* X5250D02* D03* Y4680D02* D03* X5150D02* D03* Y4580D02* D03* D065* X1606Y1586D02* D03* Y2796D02* D03* X1707Y3970D02* D03* Y4487D02* D03* X2359Y4640D02* D03* X3940D02* D03* D058* X2640Y1340D02* D03* X1585Y2985D02* D03* Y3605D02* D03* D331* X1705Y3070D02* D03* Y3520D02* D03* D050* X1631Y1816D02* D03* X1581Y1866D02* D03* X1631Y1916D02* D03* X1731D02* D03* X1781Y1866D02* D03* X1731Y1816D02* D03* D025* X4275Y3727D02* X4251D01* X4149D02* X4125D01* Y3893D02* X4149D01* X4251D02* X4275D01* D041* X4026Y3593D02* X4100D01* X4026Y3618D02* X4100D01* Y3568D02* X4026D01* X4100Y3543D02* X4026D01* X4100Y3518D02* X4026D01* Y3468D02* X4100D01* X4026Y3493D02* X4100D01* X4026Y3418D02* X4100D01* X4026Y3443D02* X4100D01* Y3393D02* X4026D01* X4100Y3368D02* X4026D01* Y3318D02* X4100D01* X4026Y3343D02* X4100D01* Y3293D02* X4026D01* X4100Y3268D02* X4026D01* X4100Y3243D02* X4026D01* X4100Y3218D02* X4026D01* X4100Y3193D02* X4026D01* Y3143D02* X4100D01* X4026Y3168D02* X4100D01* X4026Y3093D02* X4100D01* X4026Y3118D02* X4100D01* Y3068D02* X4026D01* X4100Y3043D02* X4026D01* Y2993D02* X4100D01* X4026Y3018D02* X4100D01* Y2968D02* X4026D01* X4100Y2943D02* X4026D01* X4400D02* X4474D01* X4400Y2968D02* X4474D01* Y3018D02* X4400D01* X4474Y2993D02* X4400D01* Y3043D02* X4474D01* X4400Y3068D02* X4474D01* Y3118D02* X4400D01* X4474Y3093D02* X4400D01* X4474Y3168D02* X4400D01* X4474Y3143D02* X4400D01* Y3193D02* X4474D01* X4400Y3218D02* X4474D01* X4400Y3243D02* X4474D01* X4400Y3268D02* X4474D01* X4400Y3293D02* X4474D01* Y3343D02* X4400D01* X4474Y3318D02* X4400D01* Y3368D02* X4474D01* X4400Y3393D02* X4474D01* Y3443D02* X4400D01* X4474Y3418D02* X4400D01* X4474Y3493D02* X4400D01* X4474Y3468D02* X4400D01* Y3518D02* X4474D01* X4400Y3543D02* X4474D01* X4400Y3568D02* X4474D01* Y3618D02* X4400D01* X4474Y3593D02* X4400D01* D017* X5799Y3273D02* X5827D01* X5799Y3304D02* X5827D01* X5799Y3336D02* X5827D01* X5799Y3367D02* X5827D01* X5901D02* X5873D01* X5901Y3336D02* X5873D01* X5901Y3304D02* X5873D01* X5901Y3273D02* X5873D01* X5853Y3211D02* Y3183D01* X5884Y3211D02* Y3183D01* X5916Y3211D02* Y3183D01* X5947Y3211D02* Y3183D01* Y3137D02* Y3109D01* X5916Y3137D02* Y3109D01* X5884Y3137D02* Y3109D01* X5853Y3137D02* Y3109D01* X7139Y3207D02* X7167D01* X7139Y3176D02* X7167D01* X7139Y3144D02* X7167D01* X7139Y3113D02* X7167D01* Y3057D02* X7139D01* X7167Y3026D02* X7139D01* X7167Y2994D02* X7139D01* X7167Y2963D02* X7139D01* X7167Y2907D02* X7139D01* X7167Y2876D02* X7139D01* X7167Y2844D02* X7139D01* X7167Y2813D02* X7139D01* X7167Y2757D02* X7139D01* X7167Y2726D02* X7139D01* X7167Y2694D02* X7139D01* X7167Y2663D02* X7139D01* X7167Y2607D02* X7139D01* X7167Y2576D02* X7139D01* X7167Y2544D02* X7139D01* X7167Y2513D02* X7139D01* Y2457D02* X7167D01* X7139Y2426D02* X7167D01* X7139Y2394D02* X7167D01* X7139Y2363D02* X7167D01* X7139Y2307D02* X7167D01* X7139Y2276D02* X7167D01* X7139Y2244D02* X7167D01* X7139Y2213D02* X7167D01* X7139Y2157D02* X7167D01* X7139Y2126D02* X7167D01* X7139Y2094D02* X7167D01* X7139Y2063D02* X7167D01* Y2007D02* X7139D01* X7167Y1976D02* X7139D01* X7167Y1944D02* X7139D01* X7167Y1913D02* X7139D01* X7167Y1857D02* X7139D01* X7167Y1826D02* X7139D01* X7167Y1794D02* X7139D01* X7167Y1763D02* X7139D01* X7167Y1707D02* X7139D01* X7167Y1676D02* X7139D01* X7167Y1644D02* X7139D01* X7167Y1613D02* X7139D01* X7167Y1557D02* X7139D01* X7167Y1526D02* X7139D01* X7167Y1494D02* X7139D01* X7167Y1463D02* X7139D01* Y1407D02* X7167D01* X7139Y1376D02* X7167D01* X7139Y1344D02* X7167D01* X7139Y1313D02* X7167D01* X7241D02* X7213D01* X7241Y1344D02* X7213D01* X7241Y1376D02* X7213D01* X7241Y1407D02* X7213D01* Y1463D02* X7241D01* X7213Y1494D02* X7241D01* X7213Y1526D02* X7241D01* X7213Y1557D02* X7241D01* X7213Y1613D02* X7241D01* X7213Y1644D02* X7241D01* X7213Y1676D02* X7241D01* X7213Y1707D02* X7241D01* X7213Y1763D02* X7241D01* X7213Y1794D02* X7241D01* X7213Y1826D02* X7241D01* X7213Y1857D02* X7241D01* X7213Y1913D02* X7241D01* X7213Y1944D02* X7241D01* X7213Y1976D02* X7241D01* X7213Y2007D02* X7241D01* Y2063D02* X7213D01* X7241Y2094D02* X7213D01* X7241Y2126D02* X7213D01* X7241Y2157D02* X7213D01* X7241Y2213D02* X7213D01* X7241Y2244D02* X7213D01* X7241Y2276D02* X7213D01* X7241Y2307D02* X7213D01* X7241Y2363D02* X7213D01* X7241Y2394D02* X7213D01* X7241Y2426D02* X7213D01* X7241Y2457D02* X7213D01* Y2513D02* X7241D01* X7213Y2544D02* X7241D01* X7213Y2576D02* X7241D01* X7213Y2607D02* X7241D01* X7213Y2663D02* X7241D01* X7213Y2694D02* X7241D01* X7213Y2726D02* X7241D01* X7213Y2757D02* X7241D01* X7213Y2813D02* X7241D01* X7213Y2844D02* X7241D01* X7213Y2876D02* X7241D01* X7213Y2907D02* X7241D01* X7213Y2963D02* X7241D01* X7213Y2994D02* X7241D01* X7213Y3026D02* X7241D01* X7213Y3057D02* X7241D01* Y3113D02* X7213D01* X7241Y3144D02* X7213D01* X7241Y3176D02* X7213D01* X7241Y3207D02* X7213D01* X7241Y3443D02* X7213D01* X7241Y3474D02* X7213D01* X7241Y3506D02* X7213D01* X7241Y3537D02* X7213D01* X7139D02* X7167D01* X7139Y3506D02* X7167D01* X7139Y3474D02* X7167D01* X7139Y3443D02* X7167D01* Y3743D02* X7139D01* X7167Y3774D02* X7139D01* X7167Y3806D02* X7139D01* X7167Y3837D02* X7139D01* X7167Y3893D02* X7139D01* X7167Y3924D02* X7139D01* X7167Y3956D02* X7139D01* X7167Y3987D02* X7139D01* X7167Y4043D02* X7139D01* X7167Y4074D02* X7139D01* X7167Y4106D02* X7139D01* X7167Y4137D02* X7139D01* X7213D02* X7241D01* X7213Y4106D02* X7241D01* X7213Y4074D02* X7241D01* X7213Y4043D02* X7241D01* X7213Y3987D02* X7241D01* X7213Y3956D02* X7241D01* X7213Y3924D02* X7241D01* X7213Y3893D02* X7241D01* X7213Y3837D02* X7241D01* X7213Y3806D02* X7241D01* X7213Y3774D02* X7241D01* X7213Y3743D02* X7241D01* D357* X5925Y2145D02* Y2075D01* X6105Y1335D02* X6035D01* X5615D02* X5545D01* D049* X2327Y1069D02* D03* X4374D02* D03* X5120Y1340D02* D03* X5070Y2480D02* D03* X5020Y2530D02* D03* X4970Y2480D02* D03* X4920Y2530D02* D03* X4870Y2480D02* D03* X4820Y2530D02* D03* X4770Y2480D02* D03* X4720Y2530D02* D03* X4770Y2580D02* D03* Y2680D02* D03* X4720Y2730D02* D03* X4770Y2780D02* D03* X4820Y2730D02* D03* X4870Y2780D02* D03* X4820Y2830D02* D03* X4770Y2880D02* D03* X4720Y2830D02* D03* X4670Y2780D02* D03* Y2680D02* D03* X4720Y2630D02* D03* X4670Y2580D02* D03* X4870D02* D03* X4820Y2630D02* D03* X4870Y2680D02* D03* X4920Y2630D02* D03* X4970Y2580D02* D03* X5020Y2630D02* D03* X5070Y2580D02* D03* X5120Y2530D02* D03* X5170Y2480D02* D03* X5220Y2530D02* D03* X5270Y2480D02* D03* X5320Y2530D02* D03* X5370Y2580D02* D03* X5270D02* D03* X5320Y2630D02* D03* X5270Y2680D02* D03* X5320Y2730D02* D03* X5370Y2680D02* D03* X5420Y2730D02* D03* X5470Y2680D02* D03* X5420Y2630D02* D03* X5470Y2580D02* D03* X5520Y2630D02* D03* X5570Y2580D02* D03* X5620Y2630D02* D03* Y2730D02* D03* X5570Y2680D02* D03* X5520Y2730D02* D03* X5670Y2580D02* D03* X5720Y2630D02* D03* X5670Y2680D02* D03* X5720Y2730D02* D03* X5770Y2680D02* D03* X5820Y2630D02* D03* X5770Y2580D02* D03* X5870D02* D03* X5920Y2630D02* D03* Y2730D02* D03* X5870Y2680D02* D03* X5820Y2730D02* D03* X5680Y3042D02* D03* Y3092D02* D03* Y3142D02* D03* Y3192D02* D03* Y3242D02* D03* Y3292D02* D03* Y3342D02* D03* Y3392D02* D03* Y3442D02* D03* Y3492D02* D03* Y3542D02* D03* Y3592D02* D03* Y3642D02* D03* Y3692D02* D03* Y3742D02* D03* X5580D02* D03* Y3692D02* D03* Y3642D02* D03* Y3592D02* D03* Y3542D02* D03* Y3492D02* D03* Y3442D02* D03* Y3392D02* D03* Y3342D02* D03* Y3292D02* D03* Y3242D02* D03* Y3192D02* D03* Y3142D02* D03* Y3092D02* D03* X4920Y3430D02* D03* X4870Y3380D02* D03* X4920Y3330D02* D03* Y3230D02* D03* X4870Y3280D02* D03* X4820Y3330D02* D03* X4770Y3380D02* D03* X4820Y3430D02* D03* X4870Y3480D02* D03* X4820Y3530D02* D03* X4920D02* D03* Y3630D02* D03* X4870Y3580D02* D03* X4820Y3630D02* D03* X4870Y3680D02* D03* X4920Y3730D02* D03* X4670Y3680D02* D03* X4720Y3630D02* D03* X4670Y3580D02* D03* X4770D02* D03* X4720Y3530D02* D03* X4770Y3480D02* D03* X4670D02* D03* X4720Y3430D02* D03* X4670Y3380D02* D03* X4720Y3330D02* D03* X4670Y3280D02* D03* Y3180D02* D03* X4720Y3230D02* D03* X4770Y3280D02* D03* X4820Y3230D02* D03* X4870Y3180D02* D03* X4820Y3130D02* D03* X4770Y3180D02* D03* X4720Y3130D02* D03* X4770Y3080D02* D03* X4670D02* D03* X4720Y3030D02* D03* X4670Y2980D02* D03* X4720Y2930D02* D03* X4670Y2880D02* D03* X4920Y2930D02* D03* X4870Y2980D02* D03* X4920Y3030D02* D03* Y3130D02* D03* X4870Y3080D02* D03* X4820Y3030D02* D03* X4770Y2980D02* D03* X4820Y2930D02* D03* X4870Y2880D02* D03* X4920Y2830D02* D03* Y2730D02* D03* X4970Y2680D02* D03* X5020Y2730D02* D03* X5070Y2680D02* D03* X5120Y2630D02* D03* X5170Y2580D02* D03* X5220Y2630D02* D03* Y2730D02* D03* X5170Y2680D02* D03* X5120Y2730D02* D03* X5370Y2480D02* D03* X5420Y2530D02* D03* X5470Y2480D02* D03* X5520Y2530D02* D03* X5570Y2480D02* D03* X5620Y2530D02* D03* X5670Y2480D02* D03* X5720Y2530D02* D03* X5770Y2480D02* D03* X5820Y2530D02* D03* X5870Y2480D02* D03* X5920Y2530D02* D03* X6070Y2580D02* D03* X6120Y2630D02* D03* X6170Y2580D02* D03* X6220Y2630D02* D03* X6270Y2580D02* D03* X6320Y2630D02* D03* X6270Y2680D02* D03* X6220Y2730D02* D03* X6170Y2680D02* D03* X6120Y2730D02* D03* X6070Y2680D02* D03* X6020Y2730D02* D03* X5970Y2680D02* D03* X6020Y2630D02* D03* X5970Y2580D02* D03* Y2480D02* D03* X6020Y2530D02* D03* X6070Y2480D02* D03* X6120Y2530D02* D03* X6170Y2480D02* D03* X6220Y2530D02* D03* X6270Y2480D02* D03* X6320Y2530D02* D03* X6370Y2580D02* D03* Y2480D02* D03* X6420Y2530D02* D03* X6470Y2480D02* D03* Y3080D02* D03* X6420Y3130D02* D03* X6470Y3180D02* D03* X6420Y3230D02* D03* X6370Y3280D02* D03* X6320Y3230D02* D03* X6370Y3180D02* D03* X6320Y3130D02* D03* X6370Y3080D02* D03* Y2980D02* D03* X6420Y3030D02* D03* X6470Y2980D02* D03* X6420Y2930D02* D03* X6470Y2880D02* D03* X6420Y2830D02* D03* X6470Y2780D02* D03* X6420Y2730D02* D03* X6470Y2680D02* D03* Y2580D02* D03* X6420Y2630D02* D03* X6370Y2680D02* D03* X6220Y2830D02* D03* X6270Y2780D02* D03* X6320Y2730D02* D03* X6370Y2780D02* D03* X6320Y2830D02* D03* X6370Y2880D02* D03* X6320Y2930D02* D03* X6270Y2880D02* D03* X6220Y2930D02* D03* Y3030D02* D03* X6270Y2980D02* D03* X6320Y3030D02* D03* X6270Y3080D02* D03* X6220Y3130D02* D03* X6270Y3180D02* D03* X6220Y3230D02* D03* X6270Y3280D02* D03* X6320Y3330D02* D03* X6270Y3380D02* D03* X6220Y3330D02* D03* Y3430D02* D03* X6270Y3480D02* D03* X6220Y3530D02* D03* X6270Y3580D02* D03* X6220Y3630D02* D03* X6270Y3680D02* D03* X6320Y3630D02* D03* X6370Y3580D02* D03* X6320Y3530D02* D03* X6370Y3480D02* D03* X6320Y3430D02* D03* X6370Y3380D02* D03* X6470Y3280D02* D03* X6420Y3330D02* D03* X6470Y3380D02* D03* X6420Y3430D02* D03* X6470Y3480D02* D03* X6420Y3530D02* D03* X6470Y3580D02* D03* X6420Y3630D02* D03* X6370Y3680D02* D03* X6470D02* D03* X6420Y3730D02* D03* X6470Y3780D02* D03* X6420Y3830D02* D03* X6470Y3880D02* D03* X6420Y3930D02* D03* X6470Y3980D02* D03* X6420Y4030D02* D03* X6370Y4080D02* D03* Y3980D02* D03* X6320Y3930D02* D03* X6370Y3880D02* D03* X6320Y3830D02* D03* X6370Y3780D02* D03* X6320Y3730D02* D03* X6270Y3780D02* D03* X6220Y3730D02* D03* Y3830D02* D03* X6270Y3880D02* D03* X6220Y3930D02* D03* X6470Y4080D02* D03* X6420Y4130D02* D03* X6470Y4180D02* D03* Y4280D02* D03* X6420Y4230D02* D03* X6370Y4280D02* D03* X5970D02* D03* X6020Y4230D02* D03* X6070Y4280D02* D03* Y4180D02* D03* X6020Y4130D02* D03* X5970Y4180D02* D03* X5920Y4230D02* D03* X5870Y4280D02* D03* X5820Y4230D02* D03* X5770Y4280D02* D03* Y4180D02* D03* X5820Y4130D02* D03* X5870Y4180D02* D03* X5920Y4130D02* D03* X6120D02* D03* X6170Y4180D02* D03* X6120Y4230D02* D03* X6170Y4280D02* D03* X6220Y4230D02* D03* X6270Y4280D02* D03* X6320Y4230D02* D03* X6370Y4180D02* D03* X6320Y4130D02* D03* X6270Y4180D02* D03* X6220Y4130D02* D03* X6270Y4080D02* D03* X6320Y4030D02* D03* X6270Y3980D02* D03* X6220Y4030D02* D03* X6170Y4080D02* D03* X6120Y4030D02* D03* X6070Y4080D02* D03* X6020Y4030D02* D03* X5970Y4080D02* D03* X5920Y4030D02* D03* X5870Y4080D02* D03* X5820Y4030D02* D03* X5770Y4080D02* D03* X5720Y4030D02* D03* X5670Y4080D02* D03* X5620Y4030D02* D03* X5570Y4080D02* D03* X5520Y4030D02* D03* X5370Y4280D02* D03* X5320Y4230D02* D03* X5270Y4280D02* D03* X5220Y4230D02* D03* X5170Y4280D02* D03* X5120Y4230D02* D03* X5170Y4180D02* D03* X5120Y4130D02* D03* X5220D02* D03* X5270Y4180D02* D03* X5320Y4130D02* D03* X5370Y4180D02* D03* X5420Y4130D02* D03* X5470Y4180D02* D03* X5420Y4230D02* D03* X5470Y4280D02* D03* X5520Y4230D02* D03* X5570Y4280D02* D03* X5620Y4230D02* D03* X5670Y4280D02* D03* X5720Y4230D02* D03* X5670Y4180D02* D03* X5720Y4130D02* D03* X5620D02* D03* X5570Y4180D02* D03* X5520Y4130D02* D03* X5470Y4080D02* D03* X5420Y4030D02* D03* X5370Y4080D02* D03* X5320Y4030D02* D03* X5270Y4080D02* D03* X5220Y4030D02* D03* X5170Y4080D02* D03* X5120Y4030D02* D03* X5070Y4080D02* D03* X5020Y4030D02* D03* X4970Y4080D02* D03* X4920Y4030D02* D03* X4870Y3980D02* D03* X4820Y4030D02* D03* X4870Y4080D02* D03* X4920Y4130D02* D03* X4970Y4280D02* D03* X5020Y4230D02* D03* X5070Y4280D02* D03* Y4180D02* D03* X5020Y4130D02* D03* X4970Y4180D02* D03* X4920Y4230D02* D03* X4870Y4280D02* D03* X4820Y4230D02* D03* X4870Y4180D02* D03* X4820Y4130D02* D03* X4770Y4080D02* D03* X4720Y4130D02* D03* X4770Y4180D02* D03* X4720Y4230D02* D03* X4670Y4180D02* D03* Y4080D02* D03* X4720Y4030D02* D03* X4670Y3980D02* D03* Y3880D02* D03* X4720Y3830D02* D03* X4770Y3780D02* D03* X4670D02* D03* X4720Y3730D02* D03* X4770Y3680D02* D03* X4820Y3730D02* D03* X4870Y3780D02* D03* X4920Y3830D02* D03* Y3930D02* D03* X4820D02* D03* X4870Y3880D02* D03* X4820Y3830D02* D03* X4770Y3880D02* D03* X4720Y3930D02* D03* X4770Y3980D02* D03* X6972Y1069D02* D03* D034* X6806Y4740D02* X6955D01* X6806Y4300D02* X6955D01* X6786Y3170D02* X6935D01* X6786Y2730D02* X6935D01* D014* X2525Y4040D02* Y4104D01* X2625Y4040D02* Y4107D01* X2675Y4105D02* Y4040D01* X2736Y4010D02* X2767Y3979D01* X2840D01* X2804Y4013D02* X2832Y4041D01* X2840D01* X2804Y4013D02* X2776Y4041D01* X2767D01* X2770Y3859D02* X2771D01* X2740Y3890D01* X2770Y3921D02* X2801Y3891D01* D01* X2840Y3921D02* X2871Y3891D01* X2870Y3890D01* X2930Y3929D02* X2939Y3920D01* X2970D01* X3020Y4020D02* X2997Y4043D01* Y4044D01* X3170Y3970D02* X3191Y3949D01* X3196Y3896D02* X3195D01* X3170Y3870D02* X3196Y3896D01* X3145Y3838D02* Y3836D01* X3129Y3820D01* X3120D01* Y3720D02* X3133Y3733D01* Y3744D01* X3070Y3770D02* X3093Y3747D01* X3070Y3720D02* X3067D01* X3047Y3740D01* X2998Y3684D02* X3006D01* X3020Y3670D01* X2992Y3640D02* X3000D01* X3020Y3620D01* X3047Y3585D02* X3055D01* X3070Y3570D01* X3096Y3585D02* X3095D01* X3110Y3570D01* X3120D01* Y3620D02* X3100Y3640D01* X3092D01* X3170Y3570D02* Y3577D01* X3187Y3594D01* X3148Y3485D02* X3155D01* X3170Y3470D01* X3120Y3420D02* X3095Y3445D01* Y3443D01* X3089D01* X3020Y3420D02* Y3429D01* X3008Y3441D01* Y3443D01* X3010D01* X3147Y3340D02* X3150D01* X3170Y3320D01* X3192Y3340D02* X3200D01* X3220Y3320D01* X3270D02* X3250Y3340D01* X3247D01* Y3347D01* X3270Y3370D01* X3570Y3270D02* Y3233D01* X3600Y3001D02* X3670D01* X3694Y3025D01* X3691D01* Y3026D01* X3780Y3005D02* X3813D01* X3845Y3037D01* X3847D01* Y3039D01* X3877D02* Y3011D01* X3890D01* X3960D01* X3994D01* X4001Y3018D01* X4063D01* Y3069D02* Y3068D01* Y3069D02* X3960D01* X3907D01* X3890D01* X3907D02* Y3041D01* X3780Y3115D02* X3788D01* Y3128D01* X3868Y3112D02* X3887Y3131D01* X3890D01* X3938Y3110D02* X3959Y3131D01* X3960D01* X3981Y3176D02* X3951D01* X3938Y3189D01* Y3287D01* X3920Y3305D01* X3979D01* X3997Y3323D01* X4063Y3318D02* X4122D01* D01* X4126Y3137D02* X4121Y3143D01* X4063D01* Y3168D02* X4126D01* Y3167D01* X4122Y3240D02* X4120Y3243D01* X4063D01* X4122Y3385D02* Y3390D01* X4066D01* X4063Y3393D01* Y3468D02* X4122D01* Y3467D01* X3909Y3658D02* X3892Y3641D01* X3870D01* X3899Y3608D02* X3870Y3579D01* X3893Y3548D02* X3944Y3599D01* Y3620D01* X3969Y3500D02* Y3522D01* X3993Y3546D01* X3955Y3558D02* X3897Y3500D01* X3891D01* X3893Y3548D02* X3828D01* X3782Y3594D01* X3746D01* X3720Y3620D01* X3770Y4070D02* Y4063D01* X3752Y4045D01* X3751D01* Y4048D01* X3770Y3870D02* X3792Y3848D01* Y3846D01* X3794D01* X3798Y3772D02* X3795D01* X3793Y3770D01* X3770D01* X3670D02* X3671Y3771D01* X3645Y3797D01* X3396Y3666D02* X3374D01* X3370Y3670D01* X3342Y3666D02* X3324D01* X3320Y3670D01* Y3620D02* X3328Y3612D01* X3342D01* X3370Y3620D02* X3378Y3612D01* X3396D01* X3420Y3620D02* X3428Y3612D01* X3450D01* Y3666D02* X3424D01* X3420Y3670D01* X3450Y3720D02* X3420D01* X3396D02* X3370D01* X3342D02* X3320D01* X3297Y4095D02* X3296Y4094D01* X3320Y4070D01* X3493Y4043D02* X3470Y4020D01* X3520Y3911D02* Y3920D01* X3505Y3896D02* X3520Y3911D01* X3505Y3896D02* X3520Y3881D01* Y3870D01* X3570D02* X3596Y3896D01* X3620Y3920D02* X3596Y3896D01* X3670Y3970D02* X3693Y3993D01* X3695Y3995D02* X3693Y3993D01* X3720Y3970D02* X3695Y3995D01* X3670Y4070D02* Y4141D01* X3506Y4305D01* X3432D01* X3386Y4351D01* X3333D01* X3281Y4299D01* X4031Y1692D02* X4053Y1670D01* X4061D01* X4029Y1648D02* X4007Y1670D01* X3999D01* X3917Y1693D02* X3900Y1710D01* X3867Y1743D02* X3850Y1760D01* X3717Y1743D02* X3700Y1760D01* X3767Y1843D02* X3750Y1860D01* X3850Y1910D02* X3859D01* X3876Y1893D01* X3812Y1993D02* X3800Y2005D01* Y2010D01* X3866Y2092D02* X3850Y2108D01* Y2110D01* X3817Y2193D02* X3800Y2210D01* X3767Y2193D02* X3750Y2210D01* X3999Y2010D02* Y1989D01* X4015Y1973D01* X4057Y1971D02* X4061Y1975D01* Y2010D01* X4093Y2163D02* X4066Y2190D01* X4061D01* X4020Y2218D02* X3999Y2197D01* Y2190D01* X3924Y2260D02* D01* X3900D01* X3817Y2348D02* X3803Y2363D01* X3800Y2360D01* X3667Y2343D02* X3650Y2360D01* X3627Y2411D02* X3650D01* Y2410D01* X3632Y2439D02* Y2443D01* X3633D01* X3650Y2460D01* X3633Y2493D02* X3650Y2510D01* X3817Y2543D02* X3800Y2560D01* X3750Y2710D02* X3767Y2727D01* X3900Y2810D02* Y2811D01* X3932D02* X3900D01* X3891Y2920D02* Y2949D01* X3890D01* X3974Y2918D02* Y2920D01* X3960Y2934D01* Y2949D01* X3999D01* X4006Y2943D01* X4063D01* X4260Y2495D02* X4300D01* X4329Y2445D02* X4300D01* X4329D02* X4365Y2409D01* Y2374D01* X4399D01* Y2370D01* X4430Y2340D02* X4431D01* X4461Y2370D01* X4460D01* Y2429D01* X4400D01* X4389Y2550D02* X4377D01* X4363Y2564D01* X4355Y2918D02* Y2940D01* X4354D01* X4382Y2968D01* X4437D01* Y3043D02* X4391D01* X4376Y3057D01* X4387Y3068D01* X4437D01* X4377Y3142D02* X4437D01* Y3143D01* Y3168D02* Y3169D01* X4359D01* X4437Y3268D02* X4383D01* X4380Y3270D01* X4381Y3342D02* Y3343D01* X4437D01* X4354Y3486D02* X4373Y3468D01* X4437D01* Y3443D02* X4379D01* Y3442D01* X4437Y3493D02* X4394D01* X4377Y3509D01* X4386Y3518D01* X4437D01* Y3593D02* X4380D01* Y3592D01* X4150Y4555D02* X4082D01* X4083Y4556D01* X3762Y4760D02* Y4845D01* X3763D01* Y4848D01* X3462Y4844D02* D01* Y4760D01* X3337D02* Y4684D01* X3324Y4671D01* X3325D01* X3287D02* D01* Y4760D01* X3236Y4673D02* Y4677D01* X3237D01* Y4760D01* X3212D02* Y4834D01* X3199Y4847D01* X3187Y4835D01* Y4760D01* X3162D02* Y4676D01* D01* X3062D02* D01* Y4760D01* X3037D02* Y4844D01* D01* X3087D02* D01* Y4760D01* X3137D02* Y4844D01* D01* X2987Y4760D02* Y4844D01* D01* X2937D02* D01* Y4760D01* X2896Y4847D02* X2887Y4838D01* Y4760D01* X2537D02* Y4675D01* D01* X1980Y4681D02* X1984D01* X2014Y4651D01* X1980Y4619D02* X2020D01* X2040Y4583D02* X1936D01* X1931Y4588D02* X1936Y4583D01* X1931Y4588D02* X1900Y4619D01* Y4681D02* X1830D01* X1864Y4648D02* X1835Y4619D01* X1830D01* X1945Y4085D02* Y4048D01* X1950D01* X2035Y3940D02* Y3887D01* X2036D01* X2315Y3623D02* Y3624D01* X2333Y3606D01* X2315Y3582D02* Y3581D01* D01* X2316Y3583D01* X2333Y3567D01* X2357Y3502D02* Y3503D01* X2372Y3488D01* X2357Y3466D02* X2356Y3465D01* X2372Y3448D01* X2392Y3468D02* Y3466D01* X2393D01* X2394D01* X2412Y3448D01* X2393Y3426D02* D01* Y3424D01* X2395Y3426D01* X2412Y3409D01* X2392Y3390D02* Y3387D01* X2393D01* X2394Y3388D01* X2412Y3370D01* X2438Y3344D02* X2435D01* Y3345D01* X2436Y3346D01* X2451Y3330D01* X2472Y3345D02* X2474Y3347D01* X2490Y3330D01* X2552Y3345D02* X2551D01* X2553Y3347D01* X2569Y3330D01* X2593Y3345D02* Y3346D01* X2608Y3330D01* X2593Y3308D02* X2592Y3307D01* X2608Y3291D01* X2629Y3308D02* X2630Y3309D01* X2648Y3291D01* Y3252D02* X2631Y3268D01* X2629Y3266D01* Y3265D01* X2630D01* X2608Y3252D02* X2593Y3267D01* Y3266D01* Y3265D01* X2592D01* X2569Y3252D02* X2553Y3268D01* X2551Y3266D01* X2552Y3265D02* X2551D01* Y3266D01* X2530Y3252D02* X2515Y3267D01* X2514Y3266D01* Y3265D01* X2490Y3291D02* X2473Y3309D01* X2472Y3308D01* X2451Y3291D02* X2434Y3307D01* X2435Y3308D01* X2438D01* Y3307D01* X2412Y3291D02* X2394Y3309D01* X2393Y3308D01* X2391Y3311D02* Y3308D01* X2393D01* X2372Y3291D02* X2356Y3307D01* X2357Y3308D01* X2228Y3346D02* X2238D01* X2254Y3330D01* X2278Y3345D02* Y3346D01* X2293Y3330D01* X2357Y3345D02* Y3346D01* X2372Y3330D01* X2389Y3348D02* X2393D01* Y3345D01* X2395Y3347D01* X2412Y3330D01* X2372Y3370D02* X2373Y3371D01* X2356Y3388D01* X2372Y3409D02* X2357Y3424D01* D01* X2333Y3448D02* X2315Y3466D01* D01* Y3467D01* X2313D01* X2293Y3448D02* X2277Y3465D01* X2275Y3463D01* D01* X2278D01* X2393Y3504D02* D01* Y3502D01* X2395Y3504D01* X2412Y3488D01* X2435Y3502D02* X2436Y3503D01* X2451Y3488D01* X2435Y3466D02* X2434Y3465D01* X2451Y3448D01* X2472Y3466D02* X2473D01* X2490Y3448D01* X2514Y3466D02* X2513Y3465D01* X2530Y3448D01* X2551Y3466D02* D01* X2569Y3448D01* X2593Y3466D02* X2592Y3465D01* X2608Y3448D01* X2629Y3466D02* X2630D01* X2648Y3448D01* X2860Y3671D02* X2873D01* X2886Y3658D01* X2896D01* X2892Y3628D02* X2873Y3609D01* X2860D01* Y3489D02* X2884D01* X2900Y3505D01* X2901D01* Y3537D02* X2887D01* X2873Y3551D01* X2860D01* X2766Y3567D02* X2751Y3582D01* X2750Y3581D01* X2727Y3606D02* Y3612D01* X2714Y3625D01* X2727Y3448D02* X2725D01* X2711Y3462D01* X2687Y3448D02* X2671Y3465D01* Y3466D01* Y3469D01* X2666D01* X2648Y3488D02* X2631Y3504D01* X2629Y3502D01* X2608Y3488D02* X2593Y3503D01* Y3502D01* X2569Y3488D02* X2553Y3504D01* X2551Y3502D01* D01* X2553D01* X2569Y3527D02* X2551Y3545D01* Y3544D01* Y3546D01* X2569Y3567D02* X2553Y3583D01* X2551Y3581D01* D01* Y3582D01* X2490Y3567D02* X2474Y3583D01* X2472Y3581D01* X2473D01* D01* X2490Y3606D02* X2473Y3624D01* X2472Y3623D01* X2551Y3424D02* X2553Y3426D01* X2569Y3409D01* X2593Y3424D02* D01* X2608Y3409D01* Y3370D02* X2592Y3386D01* X2593Y3387D01* X2569Y3370D02* X2551Y3388D01* Y3387D01* X2530Y3370D02* X2513Y3386D01* X2514Y3387D01* X2530Y3409D02* X2515Y3424D01* X2514D01* X2490Y3409D02* X2474Y3426D01* X2472Y3424D01* X2435D02* X2436D01* X2451Y3409D01* X2435Y3387D02* X2434Y3386D01* X2451Y3370D01* X2472Y3387D02* X2473Y3388D01* X2490Y3370D01* X2514Y3345D02* X2515Y3346D01* X2530Y3330D01* X2514Y3308D02* X2513Y3307D01* X2530Y3291D01* X2551Y3308D02* Y3309D01* X2569Y3291D01* X2593Y3230D02* X2592Y3229D01* X2608Y3212D01* X2629Y3230D02* X2630D01* X2648Y3212D01* X2766Y3252D02* X2751Y3267D01* X2750Y3266D01* X2727Y3252D02* X2710Y3268D01* X2708Y3266D01* Y3269D01* D01* X2671Y3148D02* X2669D01* D01* X2671Y3150D01* X2687Y3133D01* X2667Y3113D02* X2671D01* Y3109D01* X2672D01* X2687Y3094D01* X2665Y2980D02* X2636D01* Y2978D01* X2585Y2979D02* Y2980D01* X2555D01* X2445D02* X2475D01* X2397Y2982D02* Y2980D01* X2365D01* X2222Y2978D02* Y3020D01* X2212Y3030D01* X2372Y3094D02* X2393Y3115D01* Y3113D01* X2412Y3173D02* X2395Y3189D01* X2393Y3188D01* X2392D01* Y3191D01* X2372Y3212D02* X2352Y3192D01* X2351Y3233D02* D01* X2333Y3252D01* X2356Y3265D02* X2369Y3252D01* X2372D01* X2393Y3269D02* Y3266D01* D01* X2395Y3268D01* X2412Y3252D01* X2438Y3267D02* X2435D01* Y3266D01* X2436Y3267D01* X2451Y3252D01* X2472Y3266D02* X2474Y3268D01* X2490Y3252D01* X2472Y3230D02* X2473D01* X2490Y3212D01* X2515Y3230D02* D01* X2514D01* X2513Y3229D01* X2530Y3212D01* X2551Y3230D02* D01* X2569Y3212D01* X2530Y3133D02* X2549Y3114D01* D01* X2530Y3094D02* X2547Y3077D01* X2543D01* D01* X3550Y2710D02* X3562Y2698D01* Y2688D01* X3625Y2597D02* X3637D01* X3650Y2610D01* X3600Y2560D02* X3598Y2558D01* Y2554D01* X3583Y2539D01* X3550Y2560D02* Y2556D01* X3533Y2539D01* X3433Y2537D02* X3450Y2554D01* Y2560D01* X3482Y2539D02* X3502Y2559D01* X3500Y2560D01* X3472Y2602D02* X3465Y2609D01* X3450D01* Y2610D01* X3379Y2685D02* X3354Y2710D01* X3350D01* X3326Y3035D02* Y3020D01* X3309Y3003D01* X3310Y3001D01* X3143Y2950D02* Y2951D01* X3121D01* X2957Y2950D02* X2950Y2943D01* Y2810D01* X2973Y2737D02* X3000Y2710D01* X2974Y2686D02* X3000Y2660D01* X3050Y2560D02* X3049Y2559D01* X3064Y2544D01* X3093Y2535D02* Y2553D01* X3100Y2560D01* X3050Y2510D02* X3067Y2493D01* X3050Y2460D02* X3067Y2443D01* X3050Y2410D02* X3067Y2393D01* X3050Y2360D02* X3067Y2343D01* X3250Y2360D02* X3268Y2342D01* X3250Y2310D02* X3272Y2288D01* X3250Y2260D02* X3266Y2244D01* X3250Y2210D02* X3272Y2188D01* X3250Y2160D02* X3268Y2142D01* X3227Y1983D02* X3250Y1960D01* X3177Y1937D02* X3200Y1960D01* X3173Y1983D02* X3150Y1960D01* X3121Y1938D02* X3122D01* X3100Y1960D01* X3150Y1910D02* X3127Y1887D01* X3126D01* X3318Y2142D02* X3300Y2160D01* X3322Y2188D02* X3300Y2210D01* X3316Y2244D02* X3300Y2260D01* X3322Y2288D02* X3300Y2310D01* X3318Y2342D02* X3300Y2360D01* X3350D02* X3368Y2378D01* X3400Y2360D02* X3418Y2342D01* X3400Y2310D02* X3422Y2288D01* X3400Y2260D02* X3416Y2244D01* X3400Y2210D02* X3422Y2188D01* X3400Y2160D02* X3418Y2142D01* X3368D02* X3350Y2160D01* X3372Y2188D02* X3350Y2210D01* X3366Y2244D02* X3350Y2260D01* X3372Y2288D02* X3350Y2310D01* X3450Y2360D02* X3468Y2342D01* X3450Y2310D02* X3472Y2288D01* X3450Y2260D02* X3466Y2244D01* X3450Y2210D02* X3472Y2188D01* X3450Y2160D02* X3468Y2142D01* X3650Y2160D02* X3633Y2143D01* X3650Y2110D02* X3633Y2093D01* X3650Y2010D02* X3667Y1993D01* X3650Y1960D02* X3633Y1943D01* X3600Y1960D02* X3583Y1943D01* X3550Y1960D02* X3533Y1943D01* X3500Y1960D02* X3483Y1943D01* X3450Y1960D02* X3433Y1943D01* X3400Y1910D02* X3383Y1893D01* X3401Y1810D02* X3419Y1828D01* X3489Y1738D02* X3500Y1749D01* Y1760D01* X3579Y1792D02* X3597Y1810D01* X3600D01* X3400D02* X3401D01* X3300Y1760D02* X3275Y1735D01* X3200Y1810D02* X3175Y1785D01* X3173D01* X3100Y1760D02* X3075Y1735D01* X3000Y1810D02* X2973Y1837D01* Y1838D01* X2927Y1783D02* Y1784D01* X2950Y1760D02* X2927Y1783D01* X2900Y1760D02* X2875Y1785D01* X2850Y1910D02* X2873Y1933D01* X2900Y2010D02* X2925Y2035D01* X3025Y2036D02* X3024D01* X3050Y2010D01* X2976Y1934D02* X3000Y1910D01* X3071Y1931D02* X3050Y1910D01* Y1960D02* X3074Y1984D01* X3073D01* X3050Y2110D02* X3025Y2135D01* X3050Y2160D02* X3026Y2184D01* X2850Y2110D02* X2874Y2134D01* X2875D01* X2900Y2210D02* X2923Y2233D01* X2874Y2287D02* X2873D01* X2850Y2310D01* X3148Y2533D02* Y2560D01* X3150D01* X3200D02* X3221Y2539D01* Y2530D01* X3266Y2532D02* Y2544D01* X3250Y2560D01* Y2610D02* X3232Y2592D01* X3150Y2710D02* X3132Y2728D01* X2800Y2760D02* X2824Y2784D01* X2850Y2760D02* X2875Y2785D01* X2925D02* X2900Y2760D01* X2876Y2736D02* X2850Y2710D01* Y2660D02* X2824Y2634D01* X2823D01* X2800Y2660D02* X2779Y2681D01* X2761D01* X2470Y2762D02* X2502Y2730D01* X2533D01* X2611Y2593D02* X2655D01* Y2586D01* Y2524D02* X2631D01* X2616Y2539D01* X2611D01* X2533Y2530D02* Y2528D01* X2431D01* X2367D01* Y2530D01* X2440Y2370D02* X2408D01* Y2372D01* X2362D02* Y2370D01* X2330D01* X2250D02* Y2385D01* X2218D01* X2172D02* X2140D01* Y2370D01* X1839Y2441D02* Y2436D01* X1864Y2411D01* X1865D01* X1835Y2376D02* X1862Y2349D01* X1865D01* X1940Y2411D02* X1945D01* X1972Y2384D01* Y2380D01* X1940Y2349D02* X1942Y2351D01* X2007D01* X2035Y2339D02* X2019D01* X2007Y2351D01* X2035Y2401D02* X2025D01* X1952Y2474D01* X1867D01* X1824Y2517D01* Y2584D01* X2047Y2142D02* X2084D01* X2092Y2134D01* X2119Y2170D02* Y2186D01* X2141Y2208D01* X2140D01* X2090Y2215D02* Y2216D01* X2080Y2226D01* X2048D01* X1943Y2240D02* X1964D01* X1983Y2221D01* X1951Y2161D02* X1907D01* D01* X1943Y2083D02* X1927D01* X1905Y2061D01* X1909Y2009D02* X1914Y2004D01* X1951D01* X1943Y1925D02* X1902Y1884D01* X1906D01* X1951Y1846D02* X1979Y1818D01* X1984D01* D01* X2083Y1840D02* X2043D01* X2014Y1869D01* X2013Y1870D01* X2033Y1890D01* X2083D01* Y1940D02* X2114D01* Y1975D01* X2361Y2164D02* Y2147D01* X2349Y2135D01* X2335D01* X2336Y2136D01* X2361Y2105D02* Y2111D01* X2336Y2136D01* X2299Y2170D02* X2273Y2144D01* X2272D01* X2211Y2148D02* X2212D01* X2240Y2176D01* X2181D01* Y2170D01* X2220Y2082D02* Y2096D01* X2238Y2114D01* X2240D01* X2263Y2083D02* X2287D01* X2299Y2095D01* Y2100D01* X2319Y2034D02* X2363D01* X2364Y1787D02* X2394Y1817D01* Y1841D01* Y1779D02* Y1731D01* X2667Y1483D02* X2695D01* Y1501D01* D01* D01* X2853D02* Y1443D01* D01* X3010D02* D01* Y1501D01* X3105Y1446D02* D01* Y1501D01* X3231D02* Y1446D01* D01* X3385Y1636D02* X3359Y1610D01* X3390Y1579D02* X3421Y1610D01* X3388Y1501D02* Y1438D01* D01* X3546Y1501D02* Y1423D01* X3556Y1413D01* Y1412D01* X3530Y1179D02* Y1234D01* X3529D01* X3372D02* D01* Y1179D01* X3215D02* Y1235D01* D01* X3089Y1234D02* D01* Y1179D01* X2994D02* Y1233D01* D01* X2837Y1237D02* D01* Y1179D01* X2679D02* X2654D01* D01* X2236Y1304D02* Y1340D01* X2237D01* D01* D01* Y1390D02* X2283D01* X2305Y1368D01* X2393Y1356D02* X2419D01* X2462Y1399D01* X2425Y1466D02* X2460Y1431D01* X2425Y1466D02* X2393D01* X2301Y1490D02* X2237D01* X2083Y1690D02* X2017D01* Y1715D01* Y1740D01* Y1779D01* Y1740D02* X2083D01* Y1790D02* X2028D01* X2017Y1779D01* X1982Y1766D02* X1951D01* X1943Y1758D01* X1951Y1679D02* X1967D01* X1981Y1693D01* X2017Y1690D02* Y1654D01* X2031Y1640D01* X2083D01* Y1490D02* X2018D01* X1931Y1390D02* X1903Y1418D01* X1869Y1390D02* X1897Y1362D01* X5065Y1234D02* D01* Y1179D01* X5002D02* Y1234D01* X5001D01* X4845Y1233D02* D01* Y1179D01* X4687D02* Y1235D01* D01* X4593Y1233D02* D01* Y1179D01* X4498D02* Y1234D01* D01* X4404Y1233D02* D01* Y1179D01* X4246D02* Y1235D01* D01* X4089Y1179D02* Y1234D01* D01* X3994D02* D01* Y1179D01* X3805D02* Y1235D01* X3804D01* X3821Y1445D02* D01* Y1501D01* X4010D02* Y1446D01* D01* X4105Y1445D02* D01* Y1501D01* X4262D02* Y1446D01* X4263D01* X4420Y1501D02* Y1446D01* D01* X4514Y1445D02* D01* Y1501D01* X4609D02* Y1445D01* D01* X4704Y1446D02* X4703D01* Y1501D01* X4860Y1446D02* D01* Y1501D01* X5018D02* Y1446D01* D01* X5081Y1439D02* D01* Y1501D01* X5399Y2210D02* X5363D01* X5381Y2130D02* Y2132D01* X5346D01* X5365Y2020D02* Y2000D01* X5391Y1900D02* Y1872D01* X5413Y1850D01* Y1851D01* X5375Y1813D01* Y1800D01* X5469Y1683D02* Y1680D01* X5480D01* X5500Y1683D02* X5480D01* Y1680D01* X5535D02* X5580D01* X5587Y1850D02* D01* Y1800D01* X5485D02* Y1818D01* X5451Y1852D01* Y1850D01* X5469Y1868D01* Y1900D01* X5475Y1989D02* Y2020D01* Y2051D01* X5772Y2140D02* Y2139D01* X5822D01* X5872D01* Y2140D01* X5925D01* Y2139D01* X5978D01* X5925D02* Y2110D01* Y2076D01* Y1971D02* X5875D01* X5824D01* X5771D01* Y1972D01* X5772Y2076D02* X5823D01* X5873D01* X5925D01* X5979D01* X6035D01* X6033Y2139D02* X5926D01* Y2110D01* X5925D01* X5926D02* Y2076D01* X5925D02* Y1972D01* Y1971D01* X5980D01* X6038D01* Y1972D01* X5857Y1800D02* Y1850D01* X5855D01* X5772D02* X5773Y1849D01* Y1800D01* X5779Y1220D02* X5771D01* X5723D01* X5679D01* X5632D01* X5580D01* Y1334D01* Y1335D01* X5527D02* X5581D01* X5631D01* X5581D02* Y1334D01* X5580Y1335D01* Y1220D02* X5530D01* X5483D01* X5439D01* X5393D01* Y1335D02* Y1334D01* X5439D01* X5482D01* X5580D01* X5673D01* X5719D01* Y1335D01* X5768D01* X5878D02* X5921D01* X5974D01* X6020Y1334D02* X6019Y1335D01* X5974D02* X6019D01* X6070D01* Y1222D01* X6039D01* X6040Y1221D01* X6023D02* Y1222D01* X6039D01* X6040Y1221D02* X6070D01* X6071D01* X6070D02* Y1222D01* X6023Y1221D02* X5974D01* X5926D01* X5880D01* Y1222D01* X6071Y1221D02* X6121D01* X6166D01* Y1222D01* X6209D01* X6255D01* X6574Y1297D02* D01* Y1317D01* D364* D03* Y1348D02* D03* X6606D02* D03* Y1317D02* D03* X6669D02* D03* D014* X6664Y1312D01* Y1296D02* Y1312D01* D364* X6637Y1317D02* D03* Y1348D02* D03* X6669D02* D03* X6606Y1380D02* D03* X6574D02* D03* D014* X6571D01* X6559Y1392D01* X6547Y1380D01* X6543D01* D364* D03* Y1348D02* D03* Y1317D02* D03* X6511D02* D03* D014* X6497Y1302D01* D01* X6402Y1397D02* X6417Y1411D01* D364* D03* Y1474D02* D03* Y1443D02* D03* X6448D02* D03* Y1474D02* D03* D014* X6397Y1506D02* D01* X6417D01* D364* D03* X6448D02* D03* Y1537D02* D03* X6417D02* D03* D014* X6397D01* D01* X6368Y1548D02* X6389Y1569D01* X6417D01* D364* D03* Y1600D02* D03* Y1631D02* D03* X6448D02* D03* D014* X6469Y1611D01* X6480Y1600D01* X6496Y1616D02* X6497Y1615D01* X6491Y1611D02* X6496Y1616D01* D364* X6480Y1631D02* D03* X6448Y1569D02* D03* Y1600D02* D03* D014* X6469Y1611D02* X6491D01* X6480Y1600D01* D364* D03* Y1569D02* D03* Y1537D02* D03* Y1506D02* D03* Y1474D02* D03* Y1443D02* D03* D014* X6500D01* D01* X6523Y1472D02* Y1474D01* X6543D01* D364* D03* D014* X6562Y1491D02* X6574Y1503D01* Y1506D01* D364* D03* Y1537D02* D03* Y1569D02* D03* Y1600D02* D03* X6543D02* D03* Y1569D02* D03* Y1537D02* D03* Y1506D02* D03* D014* X6524D01* Y1505D01* X6606Y1494D02* D01* Y1474D01* D364* D03* X6574D02* D03* D014* X6562Y1491D02* X6574Y1478D01* Y1474D01* D364* Y1443D02* D03* X6606D02* D03* X6637D02* D03* D014* X6653Y1427D02* X6655Y1425D01* X6637Y1400D02* D01* Y1380D01* D364* D03* X6669D02* D03* D014* Y1400D01* D01* X6653Y1427D02* X6669Y1443D01* D364* D03* Y1474D02* D03* X6637D02* D03* X6700D02* D03* D014* X6703D01* X6715Y1486D01* X6727Y1474D01* X6731D01* D364* D03* Y1443D02* D03* X6700D02* D03* D014* X6707Y1436D01* Y1421D01* D364* X6700Y1380D02* D03* X6731D02* D03* Y1348D02* D03* D014* X6727D01* X6715Y1336D01* D364* X6731Y1317D02* D03* D014* Y1297D01* D01* D364* X6700Y1317D02* D03* D014* X6715Y1336D02* X6703Y1348D01* X6700D01* D364* D03* X6794Y1443D02* D03* X6763D02* D03* D014* X6757Y1421D02* X6763D01* Y1443D01* D364* Y1474D02* D03* X6794D02* D03* D014* X6805Y1499D02* Y1506D01* X6826D01* D364* D03* Y1537D02* D03* X6857D02* D03* Y1506D02* D03* Y1474D02* D03* X6826D02* D03* Y1443D02* D03* X6857Y1380D02* D03* D014* X6839Y1398D01* X6840Y1399D02* X6839Y1398D01* D364* X6826Y1380D02* D03* D014* X6795Y1398D02* Y1380D01* X6794D01* D01* D364* X6763D02* D03* X6794D02* D03* D014* X6763Y1348D01* D364* D03* Y1317D02* D03* X6794D02* D03* Y1348D02* D03* X6857D02* D03* D014* X6853D01* X6841Y1336D01* D364* X6826Y1348D02* D03* D014* X6829D01* X6841Y1336D01* D364* X6826Y1317D02* D03* X6857D02* D03* D014* Y1297D01* D01* X6888Y1296D02* X6889D01* Y1317D01* D364* D03* D014* X6924Y1258D02* X6948Y1234D01* Y1205D01* D01* Y1190D01* X6835Y1180D02* Y1163D01* X6799Y1127D01* X6770D02* X6769D01* X6770D02* X6725Y1172D01* Y1180D01* X6806Y1600D02* D01* X6826D01* D364* D03* Y1569D02* D03* D014* X6857D02* X6877D01* Y1568D01* D364* X6857Y1569D02* D03* Y1600D02* D03* Y1631D02* D03* X6826D02* D03* D014* X6806Y1663D02* D01* X6826D01* D364* D03* Y1694D02* D03* X6857D02* D03* Y1663D02* D03* D014* X6931Y1620D02* X6909D01* X6920Y1631D01* X6903Y1617D02* X6904Y1616D01* X6909Y1620D01* D364* X6920Y1600D02* D03* Y1569D02* D03* X6952D02* D03* Y1600D02* D03* D014* X6931Y1620D01* D364* X6952Y1631D02* D03* D014* X6931Y1620D02* X6920Y1631D01* D364* D03* Y1663D02* D03* Y1694D02* D03* X6983Y1757D02* D03* D014* X6988Y1731D02* X6983Y1726D01* D364* D03* D014* X7007Y1731D02* X6988D01* D364* X6952Y1726D02* D03* Y1757D02* D03* D014* Y1777D01* D01* D364* X6983Y1789D02* D03* D014* X6998Y1803D01* D01* X6903Y1898D02* D01* X6889Y1883D01* D364* D03* X6826Y1852D02* D03* Y1883D02* D03* X6857D02* D03* Y1852D02* D03* Y1820D02* D03* X6826D02* D03* D014* X6794D02* Y1795D01* X6789D01* D364* X6826Y1757D02* D03* Y1726D02* D03* X6857D02* D03* Y1757D02* D03* X6920D02* D03* Y1726D02* D03* D014* X6901D01* X6897Y1722D01* X6920Y1726D02* X6952Y1694D01* D364* D03* Y1663D02* D03* D014* X7003D02* D01* X6983D01* D364* Y1694D02* D03* D014* X6952D02* X6983Y1663D01* D364* D03* Y1631D02* D03* Y1600D02* D03* Y1569D02* D03* Y1537D02* D03* D014* X7006D01* Y1532D01* D364* X6983Y1506D02* D03* X6952D02* D03* Y1537D02* D03* X6920D02* D03* Y1506D02* D03* D014* X6900Y1474D02* D01* X6920D01* D364* D03* Y1443D02* D03* D014* X6914Y1436D01* Y1419D01* X6998Y1397D02* D01* X6983Y1411D01* D364* D03* D014* X7006Y1475D02* Y1474D01* X6983D01* D364* D03* Y1443D02* D03* X6952D02* D03* Y1474D02* D03* D014* X6983Y1506D02* X7014D01* X7023Y1497D01* X7033D01* Y1475D01* X7036D01* X6490Y2141D02* X6518Y2113D01* X6490Y2079D02* X6462Y2107D01* D364* X6511Y1883D02* D03* D014* X6525Y1869D01* X6524Y1868D01* D364* X6543Y1852D02* D03* Y1883D02* D03* X6574Y1852D02* D03* Y1883D02* D03* X6606D02* D03* Y1852D02* D03* D014* X6637Y1883D01* D364* D03* Y1852D02* D03* X6669D02* D03* Y1883D02* D03* D014* X6637D02* Y1903D01* X6636D01* D364* X6700Y1883D02* D03* Y1852D02* D03* X6731D02* D03* Y1883D02* D03* X6763D02* D03* Y1852D02* D03* X6794D02* D03* Y1883D02* D03* Y1820D02* D03* X6763D02* D03* X6731D02* D03* X6700D02* D03* D014* X6699D01* Y1799D01* D364* X6700Y1757D02* D03* Y1726D02* D03* X6731D02* D03* Y1757D02* D03* X6763D02* D03* Y1726D02* D03* X6794D02* D03* Y1757D02* D03* X6606D02* D03* Y1726D02* D03* X6574D02* D03* Y1757D02* D03* D014* Y1726D02* X6550Y1750D01* D364* X6543Y1726D02* D03* Y1694D02* D03* Y1663D02* D03* Y1631D02* D03* X6574D02* D03* D014* X6594D01* Y1632D01* D364* X6574Y1663D02* D03* Y1694D02* D03* D014* X6594D01* D01* X6637Y1706D02* D01* Y1726D01* D364* D03* Y1757D02* D03* X6669D02* D03* Y1726D02* D03* D014* Y1800D02* D01* Y1820D01* D364* D03* X6637D02* D03* X6606D02* D03* X6574D02* D03* X6543D02* D03* D014* X6528Y1806D01* D01* D364* X6480Y1757D02* D03* D014* Y1755D01* X6492Y1742D01* X6480Y1730D01* Y1726D01* D364* D03* Y1694D02* D03* Y1663D02* D03* X6448Y1694D02* D03* Y1663D02* D03* X6417D02* D03* Y1694D02* D03* D014* X6397D01* D01* Y1726D02* D01* X6417D01* D364* D03* Y1757D02* D03* X6448D02* D03* Y1726D02* D03* X6417Y1789D02* D03* D014* X6402Y1803D01* D01* X6253Y1800D02* D01* X6330Y1925D02* X6346D01* X6390Y1969D01* X6393Y2001D02* X6359Y2035D01* X6330D01* X6215Y1970D02* X6186Y1941D01* X6190Y1937D01* X6168Y2123D02* X6190D01* D01* X6212D01* X6330Y2105D02* X6350D01* X6389Y2144D01* X6301Y2290D02* X6300D01* X6270Y2320D01* X5706Y2836D02* X5659D01* X5645Y2850D01* Y2855D01* X5655Y2935D02* X5682Y2962D01* X5706D01* X5829Y3005D02* Y2999D01* X5805Y2975D01* X5844Y2919D02* X5818D01* X5800Y2901D01* X5799Y2865D02* X5824Y2840D01* X5844D01* X5942D02* X5928D01* X5893Y2875D01* X5898Y2908D02* X5909Y2919D01* X5942D01* X6051Y2986D02* X6022D01* X5994Y3014D01* Y3030D01* X6051Y3089D02* X6021Y3119D01* Y3136D01* Y3234D02* X6004D01* X5982Y3256D01* X5947Y3197D02* Y3218D01* X5932Y3233D01* Y3232D01* X5935D01* X5932Y3233D02* X5916D01* Y3197D01* Y3233D02* X5884D01* X5868D01* X5884D02* Y3197D01* X5853D02* Y3218D01* X5868Y3233D01* X5887Y3273D02* X5909D01* X5931Y3295D01* Y3320D01* X5930D01* X5931D02* Y3346D01* X5910Y3367D01* X5887D01* Y3336D02* X5914D01* X5930Y3320D01* X5914Y3304D01* X5887D01* X5978Y3372D02* Y3388D01* X6000Y3411D01* X5999Y3451D02* X6021Y3473D01* Y3490D01* Y3588D02* Y3605D01* X5999Y3627D01* X5978Y3726D02* Y3743D01* X6000Y3765D01* X6021Y3825D02* X5979D01* D01* X5910Y3811D02* X5909D01* X5879Y3781D01* X5863D01* X5764Y3847D02* D01* X5742Y3825D01* X5726D01* X5666Y3847D02* D01* X5644Y3825D01* X5627D01* X5503Y3800D02* X5481Y3777D01* X5465D01* D01* X5390Y3847D02* X5368Y3825D01* X5352D01* X5253D02* X5237D01* X5215Y3847D01* X5174Y3804D02* X5152Y3781D01* X5135D01* X5114Y3660D02* Y3644D01* X5092Y3621D01* X5114Y3555D02* Y3539D01* X5092Y3516D01* X5158Y3440D02* Y3424D01* X5136Y3401D01* X5115Y3332D02* Y3316D01* X5093Y3294D01* X5115Y3234D02* Y3233D01* X5159Y3189D01* Y3116D02* Y3105D01* X5123Y3069D01* X5115Y2998D02* Y2981D01* X5093Y2959D01* X5194Y2840D02* X5217D01* X5240Y2863D01* X5239Y2899D02* X5219Y2919D01* X5194D01* X5289Y2926D02* X5294D01* Y2951D01* X5305Y2962D01* X5332D01* X5289Y2876D02* X5292D01* Y2856D01* X5312Y2836D01* X5332D01* X5455Y2841D02* X5431D01* X5408Y2863D01* X5407Y2900D02* X5426Y2919D01* X5455D01* X5535D02* X5561D01* X5584Y2896D01* X5585Y2863D02* X5563Y2841D01* X5535D01* X6650Y3473D02* X6582D01* X6537Y3428D01* X6468D01* X6427Y3387D01* X6413D01* X6378Y3422D01* X6363D01* X6321Y3380D01* X6270D01* Y3280D02* X6319D01* X6360Y3321D01* X6380D01* X6414Y3287D01* X6428D01* X6461Y3320D01* X6511D01* X6544Y3287D01* X6650D01* X6718D01* X6781Y3350D01* X6822Y3403D02* X6789Y3436D01* X6891Y3348D02* X6859D01* Y3350D01* X6860Y3170D02* X6822Y3208D01* Y3403D01* X6789Y3436D02* Y3919D01* X6779Y3929D01* Y3990D01* X6872D02* X6841D01* X6715Y4100D02* Y4109D01* X6769Y4163D01* X7220Y4281D02* X7238Y4299D01* Y4315D01* X7077Y4844D02* X7014D01* X6943D01* X6881D01* X6822D01* X6760D02* X6704D01* X6652D01* Y4877D02* X6704D01* X6760D01* X6822Y4844D02* X6760D01* Y4810D01* X6822D01* Y4777D01* Y4810D02* X6880D01* Y4740D01* X6881Y4777D02* Y4810D01* X6880D02* X6881D01* X6943D01* Y4777D02* Y4810D01* X7014D01* Y4777D02* Y4810D01* X7077D01* Y4777D02* Y4810D01* Y4877D02* X7014D01* X6943D01* X6881D01* X6880D02* X6881D01* X6880Y4810D02* Y4877D01* X6822D01* X6760D01* Y4844D01* Y4777D02* Y4810D01* X6704D01* Y4777D02* Y4810D01* X6652D01* Y4777D01* D061* X7424Y2100D02* D03* X7660D02* D03* D383* X1943Y1756D02* D03* Y1760D02* D03* Y1923D02* D03* Y1927D02* D03* Y2081D02* D03* Y2085D02* D03* Y2238D02* D03* Y2242D02* D03* D101* X1876Y2250D02* D03* Y2230D02* D03* Y2171D02* D03* Y2151D02* D03* Y2093D02* D03* Y2073D02* D03* X1951Y2151D02* D03* Y2171D02* D03* Y1994D02* D03* Y2014D02* D03* X1876D02* D03* Y1994D02* D03* Y1935D02* D03* Y1915D02* D03* Y1856D02* D03* Y1836D02* D03* X1951D02* D03* Y1856D02* D03* X1876Y1768D02* D03* Y1748D02* D03* Y1689D02* D03* Y1669D02* D03* X1951D02* D03* Y1689D02* D03* X2695Y1530D02* D03* X2727D02* D03* X2758D02* D03* X2790D02* D03* X2821D02* D03* X2853D02* D03* X2884D02* D03* X2916D02* D03* X2947D02* D03* X2979D02* D03* X3010D02* D03* X3042D02* D03* X3073D02* D03* X3105D02* D03* X3136D02* D03* X3168D02* D03* X3199D02* D03* X3231D02* D03* X3262D02* D03* X3294D02* D03* X3325D02* D03* X3357D02* D03* X3388D02* D03* X3420D02* D03* X3451D02* D03* X3483D02* D03* X3514D02* D03* X3546D02* D03* X3577D02* D03* X3609D02* D03* Y1472D02* D03* X3577D02* D03* X3546D02* D03* X3514D02* D03* X3483D02* D03* X3451D02* D03* X3420D02* D03* X3388D02* D03* X3357D02* D03* X3325D02* D03* X3294D02* D03* X3262D02* D03* X3231D02* D03* X3199D02* D03* X3168D02* D03* X3136D02* D03* X3105D02* D03* X3073D02* D03* X3042D02* D03* X3010D02* D03* X2979D02* D03* X2947D02* D03* X2916D02* D03* X2884D02* D03* X2853D02* D03* X2821D02* D03* X2790D02* D03* X2758D02* D03* X2727D02* D03* X2695D02* D03* X3593Y1208D02* D03* X3561D02* D03* X3530D02* D03* X3498D02* D03* X3467D02* D03* X3435D02* D03* X3404D02* D03* X3372D02* D03* X3341D02* D03* X3309D02* D03* X3278D02* D03* X3246D02* D03* X3215D02* D03* X3183D02* D03* X3152D02* D03* X3120D02* D03* X3089D02* D03* X3057D02* D03* X3026D02* D03* X2994D02* D03* X2963D02* D03* X2931D02* D03* X2900D02* D03* X2868D02* D03* X2837D02* D03* X2805D02* D03* X2774D02* D03* X2742D02* D03* X2711D02* D03* X2679D02* D03* Y1150D02* D03* X2711D02* D03* X2742D02* D03* X2774D02* D03* X2805D02* D03* X2837D02* D03* X2868D02* D03* X2900D02* D03* X2931D02* D03* X2963D02* D03* X2994D02* D03* X3026D02* D03* X3057D02* D03* X3089D02* D03* X3120D02* D03* X3152D02* D03* X3183D02* D03* X3215D02* D03* X3246D02* D03* X3278D02* D03* X3309D02* D03* X3341D02* D03* X3372D02* D03* X3404D02* D03* X3435D02* D03* X3467D02* D03* X3498D02* D03* X3530D02* D03* X3561D02* D03* X3593D02* D03* X5065D02* D03* X5034D02* D03* X5002D02* D03* X4971D02* D03* X4939D02* D03* X4908D02* D03* X4876D02* D03* X4845D02* D03* X4813D02* D03* X4782D02* D03* X4750D02* D03* X4719D02* D03* X4687D02* D03* X4656D02* D03* X4624D02* D03* X4593D02* D03* X4561D02* D03* X4530D02* D03* X4498D02* D03* X4467D02* D03* X4435D02* D03* X4404D02* D03* X4372D02* D03* X4341D02* D03* X4309D02* D03* X4278D02* D03* X4246D02* D03* X4215D02* D03* X4183D02* D03* X4152D02* D03* X4120D02* D03* X4089D02* D03* X4057D02* D03* X4026D02* D03* X3994D02* D03* X3963D02* D03* X3931D02* D03* X3900D02* D03* X3868D02* D03* X3837D02* D03* X3805D02* D03* X3774D02* D03* Y1208D02* D03* X3805D02* D03* X3837D02* D03* X3868D02* D03* X3900D02* D03* X3931D02* D03* X3963D02* D03* X3994D02* D03* X4026D02* D03* X4057D02* D03* X4089D02* D03* X4120D02* D03* X4152D02* D03* X4183D02* D03* X4215D02* D03* X4246D02* D03* X4278D02* D03* X4309D02* D03* X4341D02* D03* X4372D02* D03* X4404D02* D03* X4435D02* D03* X4467D02* D03* X4498D02* D03* X4530D02* D03* X4561D02* D03* X4593D02* D03* X4624D02* D03* X4656D02* D03* X4687D02* D03* X4719D02* D03* X4750D02* D03* X4782D02* D03* X4813D02* D03* X4845D02* D03* X4876D02* D03* X4908D02* D03* X4939D02* D03* X4971D02* D03* X5002D02* D03* X5034D02* D03* X5065D02* D03* X5081Y1472D02* D03* X5049D02* D03* X5018D02* D03* X4986D02* D03* X4955D02* D03* X4923D02* D03* X4892D02* D03* X4860D02* D03* X4829D02* D03* X4797D02* D03* X4766D02* D03* X4734D02* D03* X4703D02* D03* X4671D02* D03* X4640D02* D03* X4609D02* D03* X4577D02* D03* X4546D02* D03* X4514D02* D03* X4483D02* D03* X4451D02* D03* X4420D02* D03* X4388D02* D03* X4357D02* D03* X4325D02* D03* X4294D02* D03* X4262D02* D03* X4231D02* D03* X4199D02* D03* X4168D02* D03* X4136D02* D03* X4105D02* D03* X4073D02* D03* X4042D02* D03* X4010D02* D03* X3979D02* D03* X3947D02* D03* X3916D02* D03* X3884D02* D03* X3853D02* D03* X3821D02* D03* X3790D02* D03* Y1530D02* D03* X3821D02* D03* X3853D02* D03* X3884D02* D03* X3916D02* D03* X3947D02* D03* X3979D02* D03* X4010D02* D03* X4042D02* D03* X4073D02* D03* X4105D02* D03* X4136D02* D03* X4168D02* D03* X4199D02* D03* X4231D02* D03* X4262D02* D03* X4294D02* D03* X4325D02* D03* X4357D02* D03* X4388D02* D03* X4420D02* D03* X4451D02* D03* X4483D02* D03* X4514D02* D03* X4546D02* D03* X4577D02* D03* X4609D02* D03* X4640D02* D03* X4671D02* D03* X4703D02* D03* X4734D02* D03* X4766D02* D03* X4797D02* D03* X4829D02* D03* X4860D02* D03* X4892D02* D03* X4923D02* D03* X4955D02* D03* X4986D02* D03* X5018D02* D03* X5049D02* D03* X5081D02* D03* D073* X2268Y1940D02* D03* Y1890D02* D03* Y1840D02* D03* Y1790D02* D03* Y1740D02* D03* Y1690D02* D03* Y1640D02* D03* Y1590D02* D03* Y1540D02* D03* Y1490D02* D03* Y1440D02* D03* Y1390D02* D03* Y1340D02* D03* X2205D02* D03* Y1390D02* D03* Y1440D02* D03* Y1490D02* D03* Y1540D02* D03* Y1590D02* D03* Y1640D02* D03* Y1690D02* D03* Y1740D02* D03* Y1790D02* D03* Y1840D02* D03* Y1890D02* D03* Y1940D02* D03* X2115D02* D03* Y1890D02* D03* Y1840D02* D03* Y1790D02* D03* Y1740D02* D03* Y1690D02* D03* Y1640D02* D03* Y1590D02* D03* Y1540D02* D03* Y1490D02* D03* Y1440D02* D03* Y1390D02* D03* Y1340D02* D03* X2052D02* D03* Y1390D02* D03* Y1440D02* D03* Y1490D02* D03* Y1540D02* D03* Y1590D02* D03* Y1640D02* D03* Y1690D02* D03* Y1740D02* D03* Y1790D02* D03* Y1840D02* D03* Y1890D02* D03* Y1940D02* D03* D081* X2409Y1356D02* D03* X2378D02* D03* Y1466D02* D03* X2409D02* D03* X2410Y1731D02* D03* X2379D02* D03* Y1841D02* D03* X2410D02* D03* X2140Y2355D02* D03* Y2386D02* D03* X2250D02* D03* Y2355D02* D03* X2330D02* D03* Y2386D02* D03* X2440D02* D03* Y2355D02* D03* X2425Y2866D02* D03* Y2835D02* D03* X2535D02* D03* Y2866D02* D03* X2555Y2965D02* D03* Y2996D02* D03* X2665D02* D03* Y2965D02* D03* X2475D02* D03* Y2996D02* D03* X2365D02* D03* Y2965D02* D03* X3796Y3005D02* D03* X3765D02* D03* Y3115D02* D03* X3796D02* D03* X3936Y3305D02* D03* X3905D02* D03* Y3415D02* D03* X3936D02* D03* X4166Y4555D02* D03* X4135D02* D03* Y4665D02* D03* X4166D02* D03* X6825Y4116D02* D03* Y4085D02* D03* X6715D02* D03* Y4116D02* D03* X6315Y2215D02* D03* X6346D02* D03* Y2105D02* D03* X6315D02* D03* Y2035D02* D03* X6346D02* D03* Y1925D02* D03* X6315D02* D03* X5485Y1816D02* D03* Y1785D02* D03* X5375D02* D03* Y1816D02* D03* X5365Y2036D02* D03* Y2005D02* D03* X5475D02* D03* Y2036D02* D03* X6725Y1196D02* D03* Y1165D02* D03* X6835D02* D03* Y1196D02* D03* D083* X2536Y2530D02* D03* X2529D02* D03* X2371D02* D03* X2364D02* D03* Y2730D02* D03* X2371D02* D03* X2529D02* D03* X2536D02* D03* D080* X7693Y1069D02* D03* X6252D02* D03* X5405D02* D03* X3344D02* D03* X3047D02* D03* X1606D02* D03* X1955Y3470D02* D03* X1814Y4366D02* D03* X2179Y4516D02* D03* D075* X1891Y4481D02* D03* Y4540D02* D03* X2009D02* D03* Y4481D02* D03* X7740Y3126D02* D03* X7739Y1155D02* D03* D088* X1950Y4292D02* D03* Y4048D02* D03* X6948Y1190D02* D03* X7192D02* D03* D079* X1756Y2566D02* D03* X2150Y4120D02* D03* X4330Y4300D02* D03* X4140Y2800D02* D03* X4850Y1340D02* D03* X6630Y2218D02* D03* X6820Y2568D02* D03* X7060Y2248D02* D03* X7080Y3528D02* D03* X6918Y3720D02* D03* X7080Y3932D02* D03* X6350Y4680D02* D03* D359* X5545Y1335D02* D03* X5615D02* D03* X6035D02* D03* X6105D02* D03* X5925Y2075D02* D03* Y2145D02* D03* D076* X5580Y3042D02* D03* X4770Y4280D02* D03* D087* X6786Y2730D02* D03* X6935D02* D03* Y3170D02* D03* X6786D02* D03* X6806Y4300D02* D03* X6955D02* D03* Y4740D02* D03* X6806D02* D03* M02*gerbv-2.7.0/example/nollezappare/0000755000175000017500000000000013423533413016635 5ustar carstencarstengerbv-2.7.0/example/nollezappare/Makefile.am0000644000175000017500000000172713421555714020706 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA EXTRA_DIST=AssemblyTop.gdo ThruHolePlated.ncd EtchLayer2Bottom.gdo MOSTLYCLEANFILES = *~ gerbv-2.7.0/example/nollezappare/AssemblyTop.gdo0000644000175000017500000012164013421555714021604 0ustar carstencarsten* G04 Job : V:\veribest\Proj\nollezappare\PCB\nollezappare.pcb* G04 User : IRR:Administrator* G04 Layer : AssemblyTop.gdo* G04 Date : Fri Aug 10 18:46:29 2001* %ICAS*% %MOIN*% %FSLAX24Y24*% %OFA0.0000B0.0000*% G90* %ADD14C,0.0050*% %ADD12C,0.0079*% %ADD15C,0.0080*% %ADD10C,0.0098*% %ADD13C,0.0100*% %ADD11C,0.1260*% G01* G54D10* X39370D01* Y31496* X0* Y0* X8167Y22970D02* Y23541D01* Y22970* Y23542D02* X8311Y23656D01* X8167Y23542* X8311Y22857D02* X8167Y22970D01* X8311Y22857* Y23656D02* X8595D01* X8311* X8595Y22857D02* X8311D01* X8595* Y23656D02* X8738Y23542D01* X8595Y23656* X8738Y22970D02* X8595Y22857D01* X8738Y22970* X9081Y22857D02* X9423D01* X9081* X9252D02* Y23656D01* Y22857* Y23656D02* X9081Y23427D01* X9252Y23656* X9767Y22857D02* X10338D01* X9767* Y22970D02* Y22857D01* Y22970* Y23542D02* X9911Y23656D01* X9767Y23542* X9911Y23656D02* X10195D01* X9911* X10195D02* X10338Y23542D01* X10195Y23656* X10338Y23427D02* X9767Y22970D01* X10338Y23427* Y23541* Y23427* G54D11* X-1575Y3543D03* X1969Y1969D03* Y29528D03* X11811Y27165D03* X37500Y1969D03* Y20079D03* G54D12* X-374Y18623D02* Y21142D01* Y23053D02* Y25571D01* X413Y18307D02* Y21457D01* Y22736D02* Y25886D01* X4075Y18307D02* X4232Y18465D01* Y21299* X4075Y21457* X-374* Y21142* X-3720* X-3878Y20984* Y18780* X-3720Y18622* X-374* Y18307* X4075* Y22736D02* X4232Y22894D01* Y25728* X4075Y25886* X-374* Y25571* X-3720* X-3878Y25413* Y23209* X-3720Y23051* X-374* Y22736* X4075* X6752Y7677D02* G03X3543Y10886I3209D01* X335Y7677J3209* X3543Y4469I3208* X6752Y7677J3208* G01Y14370D02* G03X3543Y17579I3209D01* X335Y14370J3209* X3543Y11161I3208* X6752Y14370J3209* G01X7066Y-473D02* X4547D01* X7382Y315D02* X4232D01* X7382Y3976D02* X7224Y4134D01* X4390* X4232Y3976* Y-472* X4547* Y-3819* X4705Y-3976* X6909* X7067Y-3819* Y-472* X7382* Y3976* X11101Y-473D02* X8582D01* X11417Y315D02* X8268D01* X11417Y3976D02* X11260Y4134D01* X8425* X8268Y3976* Y-472* X8583* Y-3819* X8740Y-3976* X10945* X11102Y-3819* Y-472* X11417* Y3976* X13445Y14370D02* G03X10236Y17579I3209D01* X7028Y14370J3209* X10236Y11161I3208* X13445Y14370J3209* G54D13* G01X786Y24222D02* X1129D01* X786* Y24322D02* Y24108D01* Y24322* Y24509D02* Y24651D01* Y24509* Y24651D02* X843Y24722D01* X786Y24651* X843Y24437D02* X786Y24509D01* X843Y24437* X900Y24722D02* X844D01* X900* X1129Y24437* X900Y24722* X1129Y24036D02* X1186Y24094D01* X1129Y24036* Y24222D02* X1186Y24179D01* X1129Y24222* Y24437D02* X1186D01* X1129* X1186Y24179D02* Y24094D01* Y24179* Y24437D02* Y24722D01* Y24437* X5394Y759D02* X5452Y702D01* X5394Y759* X5537Y702D02* X5452D01* X5537* X5580Y759D02* X5537Y702D01* X5580Y759* Y1102D02* Y759D01* Y1102* X5675Y18132D02* X16175D01* Y21632* X5675* Y18132* X5680Y1102D02* X5466D01* X5680* X5853Y702D02* X6024D01* X5853* X5938D02* Y1102D01* Y702* Y1102D02* X5853Y988D01* X5938Y1102* X9430Y759D02* X9487Y702D01* X9430Y759* X9573Y702D02* X9487D01* X9573* X9615Y759D02* X9573Y702D01* X9615Y759* Y1102D02* Y759D01* Y1102* X9715D02* X9502D01* X9715* X9784Y19632D02* Y20203D01* Y19632* Y20204D02* X9928Y20318D01* X9784Y20204* X9902Y702D02* X9830Y759D01* X9902Y702* Y1102D02* X9830Y1045D01* X9902Y1102* X9928Y19518D02* X9784Y19632D01* X9928Y19518* Y20318D02* X10213D01* X9928* X10045Y702D02* X9902D01* X10045* Y1102D02* X9902D01* X10045* X10046Y902D02* X10116Y844D01* X10046Y902* X9972* X10046* X10116Y759D02* X10045Y702D01* X10116Y759* Y844D02* Y759D01* Y844* Y959D02* X10046Y902D01* X10116Y959* Y1044D02* Y959D01* Y1044* Y1045D02* X10045Y1102D01* X10116Y1045* X10213Y19518D02* X9928D01* X10213* Y20318D02* X10355Y20204D01* X10213Y20318* X10355Y19632D02* X10213Y19518D01* X10355Y19632* X10699Y19518D02* X11042D01* X10699* X10870D02* Y20318D01* Y19518* Y20318D02* X10699Y20089D01* X10870Y20318* X11501Y19518D02* X11843D01* X11501* X11672D02* Y20318D01* Y19518* Y20318D02* X11501Y20089D01* X11672Y20318* X15945Y3219D02* Y3719D01* X16195Y3469D02* X15695D01* X16945Y1969D02* G03X15945Y2969I1000D01* X14945Y1969J1000* X15945Y969I1000* X16945Y1969J1000* G01X17243Y19757D02* Y20007D01* X17621Y19757D02* G02X17618Y19759J2D01* G01X19993Y18632D02* Y19757D01* Y20007D02* X17243D01* X19993D02* Y21132D01* X27493* Y20007* X19993Y19757D02* X17243D01* X25928Y2543D02* X26828D01* Y4543* X25928* Y2543* Y2793D02* X26828D01* X26378Y2543D02* Y2093D01* Y4543D02* Y4993D01* X27306Y3823D02* X28206D01* Y5823* X27306* Y3823* Y4073D02* X28206D01* X27493Y19757D02* X30243D01* Y20007* X27493* Y19757D02* Y18632D01* X19993* X27756Y3823D02* Y3373D01* Y5823D02* Y6273D01* X31874Y3192D02* X33874D01* Y4092* X31874* Y3192* Y3642D02* X31424D01* X31874Y4373D02* X33874D01* Y5273* X31874* Y4373* Y4823D02* X31424D01* X31874Y5554D02* X33874D01* Y6454* X31874* Y5554* Y6004D02* X31424D01* X31874Y6735D02* X33874D01* Y7635* X31874* Y6735* Y7185D02* X31424D01* X32124Y4092D02* Y3192D01* Y6454D02* Y5554D01* X33624Y4373D02* Y5273D01* Y6735D02* Y7635D01* X33874Y3642D02* X34324D01* X33874Y4823D02* X34324D01* X33874Y6004D02* X34324D01* X33874Y7185D02* X34324D01* G54D14* X680Y19726D02* X1018D01* X680* Y19824D02* Y19614D01* Y19824* X691Y20191D02* X941Y19938D01* X691Y20191* X942Y19938D02* Y20219D01* Y19938* X1018Y19543D02* X1074Y19600D01* X1018Y19543* Y19726D02* X1074Y19684D01* X1018Y19726* X1074Y19684D02* Y19600D01* Y19684* Y20191D02* X691D01* X1074* X2472Y7394D02* Y7956D01* Y7394* Y7957D02* X2614Y8069D01* X2472Y7957* Y14087D02* Y14649D01* Y14087* Y14650D02* X2614Y14762D01* X2472Y14650* X2614Y7282D02* X2472Y7394D01* X2614Y7282* Y8069D02* X2894D01* X2614* Y13975D02* X2472Y14087D01* X2614Y13975* Y14762D02* X2894D01* X2614* X2894Y7282D02* X2614D01* X2894* Y8069D02* X3035Y7957D01* X2894Y8069* Y13975D02* X2614D01* X2894* Y14762D02* X3035Y14650D01* X2894Y14762* X3035Y7394D02* X2894Y7282D01* X3035Y7394* Y14087D02* X2894Y13975D01* X3035Y14087* X3373Y7282D02* X3710D01* X3373* Y13975D02* X3710D01* X3373* X3542Y7282D02* Y8069D01* Y7282* Y8069D02* X3373Y7844D01* X3542Y8069* Y13975D02* Y14762D01* Y13975* Y14762D02* X3373Y14537D01* X3542Y14762* X4049Y7546D02* X4611D01* X4049* X4191Y13975D02* X4049Y14087D01* X4191Y13975* Y14762D02* X4049Y14650D01* X4191Y14762* X4471Y13975D02* X4191D01* X4471* Y14762D02* X4191D01* X4471* X4472Y14369D02* X4611Y14255D01* X4472Y14369* X4328* X4472* X4556Y7282D02* Y8046D01* Y7282* Y8047D02* X4049Y7548D01* X4556Y8047* X4611Y14087D02* X4471Y13975D01* X4611Y14087* Y14255D02* Y14087D01* Y14255* Y14480D02* X4472Y14369D01* X4611Y14480* Y14649D02* Y14480D01* Y14649* Y14650D02* X4471Y14762D01* X4611Y14650* X5701Y21880D02* X12701D01* Y24380* X5701* Y21880* X8593Y5062D02* X11093D01* Y5962* X8593* Y5062* X9474Y14238D02* Y14688D01* Y14238* Y14689D02* X9587Y14778D01* X9474Y14689* X9488Y5336D02* Y5836D01* Y5336* Y5586D02* X9756D01* X9488* Y5836D02* X9756D01* X9488* X9587Y14148D02* X9474Y14238D01* X9587Y14148* Y14778D02* X9812D01* X9587* X9756Y5586D02* X9845Y5336D01* X9756Y5586* X9812Y14148D02* X9587D01* X9812* Y14778D02* X9924Y14689D01* X9812Y14778* X9846Y5657D02* X9756Y5586D01* X9846Y5657* Y5764D02* Y5657D01* Y5764* Y5765D02* X9756Y5836D01* X9846Y5765* X9924Y14238D02* X9812Y14148D01* X9924Y14238* X9989Y5407D02* Y5764D01* Y5407* Y5550D02* X10079Y5622D01* X9989Y5550* Y5765D02* X10079Y5836D01* X9989Y5765* X10079Y5336D02* X9989Y5407D01* X10079Y5336* Y5622D02* X10257D01* X10079* Y5836D02* X10257D01* X10079* X10195Y14148D02* X10464D01* X10195* X10257Y5336D02* X10079D01* X10257* Y5622D02* X10346Y5550D01* X10257Y5622* Y5836D02* X10346Y5765D01* X10257Y5836* X10329Y14148D02* Y14778D01* Y14148* Y14778D02* X10195Y14598D01* X10329Y14778* X10346Y5407D02* X10257Y5336D01* X10346Y5407* Y5550D02* Y5407D01* Y5550* X10735Y14238D02* Y14688D01* Y14238* Y14418D02* X10849Y14509D01* X10735Y14418* Y14689D02* X10849Y14778D01* X10735Y14689* X10849Y14148D02* X10735Y14238D01* X10849Y14148* Y14509D02* X11073D01* X10849* Y14778D02* X11073D01* X10849* X11073Y14148D02* X10849D01* X11073* Y14509D02* X11185Y14418D01* X11073Y14509* Y14778D02* X11185Y14689D01* X11073Y14778* X11185Y14238D02* X11073Y14148D01* X11185Y14238* Y14418D02* Y14238D01* Y14418* X14067Y3028D02* X15067D01* Y6028* X14067* Y3028* X14254Y3970D02* X14272Y4037D01* X14254Y3970* Y4526D02* X14425Y4398D01* X14254Y4526* Y5341D02* Y4956D01* Y5341* X14262Y3888D02* X14254Y3970D01* X14262Y3888* X14272Y4037D02* X14298Y4097D01* X14272Y4037* X14292Y3830D02* X14262Y3888D01* X14292Y3830* X14298Y4097D02* X14367Y4140D01* X14298Y4097* X14340Y3782D02* X14292Y3830D01* X14340Y3782* X14425Y3738D02* X14340Y3782D01* X14425Y3738* X14489Y5112D02* X14494Y5210D01* X14489Y5112* X14494Y5210D02* X14529Y5284D01* X14494Y5210* X14500Y4999D02* X14489Y5112D01* X14500Y4999* X14511Y3712D02* X14425Y3738D01* X14511Y3712* X14597* X14511* X14529Y4913D02* X14500Y4999D01* X14529Y4913* X14254Y4956* X14529Y4913* Y5284D02* X14584Y5332D01* X14529Y5284* X14584Y5332D02* X14663Y5341D01* X14584Y5332* X14597Y3712D02* X14682Y3731D01* X14597Y3712* X14663Y5341D02* X14749Y5330D01* X14663Y5341* X14682Y3731D02* X14769Y3779D01* X14682Y3731* X14749Y4913D02* X14807Y4970D01* X14749Y4913* Y5330D02* X14807Y5281D01* X14749Y5330* X14769Y3779D02* X14818Y3827D01* X14769Y3779* X14799Y4112D02* X14741Y4140D01* X14799Y4112* X14807Y5281D02* X14854Y5171D01* X14807Y5281* X14818Y3827D02* X14847Y3883D01* X14818Y3827* X14838Y4055D02* X14799Y4112D01* X14838Y4055* X14847Y3883D02* X14854Y3970D01* X14847Y3883* X14854Y3970D02* X14838Y4055D01* X14854Y3970* Y4526D02* X14254D01* X14854* Y5084D02* X14807Y4970D01* X14854Y5084* Y5171* Y5084* X15602Y4504D02* X16682D01* Y7504* X15602* Y4504* X15684Y1629D02* Y1807D01* Y1629* Y1807D02* X15755Y1896D01* X15684Y1807* Y2129D02* X15755Y2039D01* X15684Y2129* Y2307D02* Y2129D01* Y2307* X15755Y1539D02* X15684Y1629D01* X15755Y1539* Y2396D02* X15684Y2307D01* X15755Y2396* X15756D02* X15863D01* X15756* X15829Y5488D02* Y5746D01* Y5488* X16429* X15829* Y5746D02* X15869Y5802D01* X15829Y5746* Y6518D02* Y6132D01* Y6518* X15863Y2396D02* X15934Y2308D01* X15863Y2396* X15869Y5802D02* X15945Y5858D01* X15869Y5802* X15934Y2308D02* Y2216D01* Y2308* X16006Y2396* X15934Y2308* X15945Y5858D02* X16000Y5898D01* X15945Y5858* X16000Y5898D02* X16125Y5916D01* X16000Y5898* X16006Y2396D02* X16113D01* X16006* X16064Y6288D02* X16069Y6387D01* X16064Y6288* X16069Y6387D02* X16103Y6460D01* X16069Y6387* X16075Y6176D02* X16064Y6288D01* X16075Y6176* X16103Y6089D02* X16075Y6176D01* X16103Y6089* X15829Y6132* X16103Y6089* Y6460D02* X16159Y6508D01* X16103Y6460* X16113Y1539D02* X15756D01* X16113* Y1896D02* X16184Y1807D01* X16113Y1896* Y2396D02* X16184Y2307D01* X16113Y2396* X16142Y3754D02* Y4504D01* Y8254D02* Y7504D01* X16159Y6508D02* X16238Y6518D01* X16159Y6508* X16184Y1629D02* X16113Y1539D01* X16184Y1629* Y1807D02* Y1629D01* Y1807* Y2129D02* X16113Y2039D01* X16184Y2129* Y2307D02* Y2129D01* Y2307* X16238Y6518D02* X16324Y6507D01* X16238Y6518* X16257Y5898D02* X16125Y5916D01* X16257Y5898* X16324Y6089D02* X16382Y6147D01* X16324Y6089* Y6507D02* X16382Y6458D01* X16324Y6507* X16343Y5858D02* X16257Y5898D01* X16343Y5858* X16382Y6458D02* X16429Y6347D01* X16382Y6458* X16403Y5801D02* X16343Y5858D01* X16403Y5801* X16429Y5488D02* Y5746D01* Y5488* Y5746D02* X16403Y5801D01* X16429Y5746* Y6261D02* X16382Y6147D01* X16429Y6261* Y6347* Y6261* X16682Y7254D02* X15602D01* X17391Y1348D02* X21191D01* Y5148* X17391* Y1348* X17411Y6591D02* X21171D01* Y9551* X17411* Y6591* X18586Y12905D02* X20354Y11137D01* X20990Y11774* X19223Y13541* X18586Y12905* X18775Y7900D02* X18790Y7838D01* X18775Y7900* Y8371D02* Y7900D01* Y8371* X18790Y7838D02* X18821Y7810D01* X18790Y7838* X18821Y7810D02* X18887Y7778D01* X18821Y7810* X18887Y7778D02* X18947Y7771D01* X18887Y7778* X18947Y7771D02* X19033D01* X18947* X19093Y7778D02* X19033Y7771D01* X19093Y7778* X19139Y12650D02* X19493Y13004D01* X19139Y12650* X19161Y7810D02* X19093Y7778D01* X19161Y7810* X19191Y7838D02* X19161Y7810D01* X19191Y7838* X19204Y7900D02* X19191Y7838D01* X19204Y7900* Y8371D02* Y7900D01* Y8371* X19316Y12827D02* X19505Y12638D01* X19316Y12827* X19377Y7870D02* X19457Y7800D01* X19377Y7870* Y8371D02* X19805D01* X19377* X19493Y13004D02* X19682Y12815D01* X19493Y13004* X19505Y12638D02* X19391Y12398D01* X19505Y12638* X19543Y12246D02* X19695Y12094D01* X19543Y12246* X19548Y7771D02* X19457Y7800D01* X19548Y7771* X19635* X19548* Y8151D02* X19641D01* X19548* X19619Y12170D02* X19973Y12524D01* X19619Y12170* Y12625D02* X19505Y12638D01* X19619Y12625* X19641Y8151D02* X19707Y8136D01* X19641Y8151* X19645Y3602D02* X18938Y2895D01* X19669Y8187D02* X19548Y8151D01* X19669Y8187* X19695Y12700D02* X19619Y12625D01* X19695Y12700* Y12701D02* X19682Y12815D01* X19695Y12701* X19698Y7796D02* X19635Y7771D01* X19698Y7796* X19707Y8136D02* X19745Y8114D01* X19707Y8136* X19733Y8235D02* X19669Y8187D01* X19733Y8235* X19745Y8114D02* X19781Y8056D01* X19745Y8114* X19749Y7832D02* X19698Y7796D01* X19749Y7832* X19779Y8299D02* X19733Y8235D01* X19779Y8299* X19781Y8056D02* X19803Y7987D01* X19781Y8056* X19791Y3248D02* G03X19291Y3748I500D01* X18791Y3248J500* X19291Y2748I500* X19791Y3248J500* G01X19793Y7885D02* X19749Y7832D01* X19793Y7885* X19803Y7987D02* X19805Y7942D01* X19803Y7987* X19805Y7942D02* X19793Y7885D01* X19805Y7942* Y8371D02* X19779Y8299D01* X19805Y8371* X19847Y11942D02* X20099Y11690D01* X19847Y11942* X19897Y11993D02* X19847Y11942D01* X19897Y11993* X19973Y12524D02* X19796Y12499D01* X19973Y12524* X20150Y12246D02* X20264Y12233D01* X20150Y12246* X20264Y12233D02* X20390Y12107D01* X20264Y12233* X20352Y11942D02* X19897Y11993D01* X20352Y11942* X20402Y11993* X20352Y11942* X20390Y12107D02* X20403Y11993D01* X20390Y12107* X20831Y8951D02* G03X20791Y8991I40D01* X20751Y8951J40* X20791Y8911I40* X20831Y8951J40* G01X21547Y6571D02* X22547D01* Y9571* X21547* Y6571* X21597Y2490D02* X22497D01* Y4990* X21597* Y2490* X21734Y7813D02* X21752Y7880D01* X21734Y7813* Y8326D02* X21742Y8266D01* X21734Y8326* Y8413D02* Y8326D01* Y8413* X21742Y7731D02* X21734Y7813D01* X21742Y7731* Y8473D02* X21734Y8413D01* X21742Y8473* X21752Y7880D02* X21778Y7940D01* X21752Y7880* X21772Y7674D02* X21742Y7731D01* X21772Y7674* X21778Y7940D02* X21847Y7983D01* X21778Y7940* X21784Y8199D02* X21742Y8266D01* X21784Y8199* X21838Y8167* X21784Y8199* X21786Y8539D02* X21742Y8473D01* X21786Y8539* Y3310D02* Y3578D01* Y3310* Y3901D02* Y4097D01* Y3901* Y4097D02* X21840Y4150D01* X21786Y4097* X21820Y7626D02* X21772Y7674D01* X21820Y7626* X21838Y8167D02* X21906Y8155D01* X21838Y8167* Y8569D02* X21786Y8539D01* X21838Y8569* X21840Y3847D02* X21786Y3901D01* X21840Y3847* Y4150D02* X21965D01* X21840* X21857Y3668D02* X21786Y3578D01* X21857Y3668* X21858D02* X21965D01* X21858* X21906Y7581D02* X21820Y7626D01* X21906Y7581* Y8155D02* X21973Y8167D01* X21906Y8155* Y8583D02* X21838Y8569D01* X21906Y8583* X21965Y3668D02* X22036Y3578D01* X21965Y3668* Y3847D02* X21840D01* X21965* Y4150D02* X22018Y4133D01* X21965Y4150* X21973Y8167D02* X22026Y8199D01* X21973Y8167* Y8583D02* X22077D01* X21973* X21906* X21973* X22026Y8539* X21973Y8583* X21991Y7555D02* X21906Y7581D01* X21991Y7555* X22077* X21991* X22018Y3865D02* X21965Y3847D01* X22018Y3865* X22072Y3847* X22018Y3865* Y4133D02* Y3865D01* Y4133* X22026Y8199D02* X22069Y8266D01* X22026Y8199* Y8539D02* X22069Y8473D01* X22026Y8539* X22036Y3310D02* Y3578D01* Y3310* Y3578D02* X22286Y3667D01* X22036Y3578* X22069Y8266D02* X22077Y8326D01* X22069Y8266* Y8473D02* X22077Y8413D01* X22069Y8473* X22072Y3847D02* X22232D01* X22072* Y4150D02* X22018Y4133D01* X22072Y4150* X22077Y7555D02* X22162Y7574D01* X22077Y7555* Y8326D02* Y8413D01* Y8326* Y8583D02* X22249Y8557D01* X22077Y8583* X22162Y7574D02* X22249Y7622D01* X22162Y7574* X22232Y3847D02* X22286Y3901D01* X22232Y3847* Y4150D02* X22072D01* X22232* X22249Y7622D02* X22298Y7670D01* X22249Y7622* Y8557D02* X22282Y8523D01* X22249Y8557* X22279Y7956D02* X22221Y7983D01* X22279Y7956* X22282Y8523D02* X22323Y8476D01* X22282Y8523* X22286Y3310D02* X21786D01* X22286* Y3901D02* Y4097D01* Y3901* Y4097D02* X22232Y4150D01* X22286Y4097* X22298Y7670D02* X22327Y7726D01* X22298Y7670* X22318Y7898D02* X22279Y7956D01* X22318Y7898* X22323Y8259D02* X22282Y8199D01* X22323Y8259* Y8476D02* X22334Y8425D01* X22323Y8476* X22327Y7726D02* X22334Y7813D01* X22327Y7726* X22334Y7813D02* X22318Y7898D01* X22334Y7813* Y8326D02* X22323Y8259D01* X22334Y8326* Y8425D02* Y8326D01* Y8425* X22778Y3967D02* X23678D01* Y6467* X22778* Y3967* X22967Y4536D02* Y4804D01* Y4536* Y5216D02* X23110Y5109D01* X22967Y5216* Y5628D02* Y5806D01* Y5628* Y5806D02* X23038Y5895D01* X22967Y5806* X23038Y4894D02* X22967Y4804D01* X23038Y4894* Y5538D02* X22967Y5628D01* X23038Y5538* X23039Y4894D02* X23146D01* X23039* Y5895D02* X23396D01* X23039* X23061Y19699D02* Y20498D01* Y19699* Y20099D02* X23489D01* X23061* Y20498D02* X23489D01* X23061* X23146Y4894D02* X23217Y4804D01* X23146Y4894* X23217Y4536D02* Y4804D01* Y4536* Y4804D02* X23467Y4893D01* X23217Y4804* X23396Y5538D02* X23039D01* X23396* Y5895D02* X23467Y5806D01* X23396Y5895* X23431Y5584D02* X23003Y5851D01* X23431Y5584* X23467Y4536D02* X22967D01* X23467* Y5109D02* Y5323D01* Y5109* Y5216D02* X22967D01* X23467* Y5628D02* X23396Y5538D01* X23467Y5628* Y5806D02* Y5628D01* Y5806* X23489Y20099D02* X23632Y19699D01* X23489Y20099* X23633Y20212D02* X23489Y20099D01* X23633Y20212* Y20383D02* Y20212D01* Y20383* Y20385D02* X23489Y20498D01* X23633Y20385* X23977Y19699D02* X24319D01* X23977* X24003Y30187D02* X23953Y29787D01* X24053Y28187* X31853* X31953Y29787* X31903Y30187* X24003* X24148Y19699D02* Y20498D01* Y19699* Y20498D02* X23977Y20270D01* X24148Y20498* X25337Y23750D02* X26237D01* Y26250* X25337* Y23750* X25357Y24749D02* Y25249D01* Y24749* Y24999D02* X25625D01* X25357* Y25249D02* X25625D01* X25357* X25625Y24999D02* X25714Y24749D01* X25625Y24999* X25715Y25070D02* X25625Y24999D01* X25715Y25070* Y25177D02* Y25070D01* Y25177* Y25178D02* X25625Y25249D01* X25715Y25178* X25878Y6866D02* X26878D01* Y9866* X25878* Y6866* X25930Y24749D02* X26215Y25249D01* X25930Y24749* X26065Y8108D02* X26083Y8175D01* X26065Y8108* Y8622D02* X26073Y8562D01* X26065Y8622* Y8708* Y8622* X26066Y8708D02* X26073Y8768D01* X26066Y8708* X26073Y8027D02* X26065Y8108D01* X26073Y8027* Y8562D02* X26118Y8495D01* X26073Y8562* Y8768D02* X26118Y8834D01* X26073Y8768* X26083Y8175D02* X26109Y8235D01* X26083Y8175* X26103Y7969D02* X26073Y8027D01* X26103Y7969* X26109Y8235D02* X26178Y8279D01* X26109Y8235* X26118Y8495D02* X26170Y8463D01* X26118Y8495* Y8834D02* X26170Y8867D01* X26118Y8834* X26151Y7921D02* X26103Y7969D01* X26151Y7921* X26170Y8463D02* X26214D01* X26170* Y8867D02* X26214D01* X26170* X26214Y8463D02* X26263Y8483D01* X26214Y8463* Y8867D02* X26263Y8846D01* X26214Y8867* X26215Y25249D02* X25858D01* X26215* X26236Y7877D02* X26151Y7921D01* X26236Y7877* X26243Y3223D02* Y3395D01* Y3223* X26643* X26243* Y3395D02* X26270Y3433D01* X26243Y3395* Y3767D02* X26357Y3682D01* X26243Y3767* X26256Y12000D02* X29256D01* Y13000* X26256* Y12000* X26263Y8483D02* X26304Y8537D01* X26263Y8483* Y8846D02* X26304Y8793D01* X26263Y8846* X26270Y3433D02* X26321Y3470D01* X26270Y3433* X26304Y8537D02* X26322Y8622D01* X26304Y8537* Y8793D02* X26322Y8708D01* X26304Y8793* X26321Y3470D02* X26357Y3497D01* X26321Y3470* X26322Y7850D02* X26236Y7877D01* X26322Y7850* X26408* X26322* Y8622D02* X26331Y8562D01* X26322Y8622* Y8708D02* Y8622D01* Y8708* X26331Y8768D02* X26322Y8708D01* X26331Y8768* X26357Y3497D02* X26441Y3509D01* X26357Y3497* X26372Y8495D02* X26331Y8562D01* X26372Y8495* X26426Y8462* X26372Y8495* X26373Y8834D02* X26331Y8768D01* X26373Y8834* X26408Y7850D02* X26493Y7869D01* X26408Y7850* X26426Y8462D02* X26493Y8450D01* X26426Y8462* X26427Y8864D02* X26373Y8834D01* X26427Y8864* X26469Y14445D02* X27469D01* Y17445* X26469* Y14445* X26493Y7869D02* X26580Y7917D01* X26493Y7869* Y8450D02* X26560Y8462D01* X26493Y8450* Y8879D02* X26426Y8864D01* X26493Y8879* X26529Y3497D02* X26441Y3509D01* X26529Y3497* X26560Y8462D02* X26613Y8495D01* X26560Y8462* Y8863D02* X26493Y8879D01* X26560Y8863* X26613Y8834* X26560Y8863* X26580Y7917D02* X26629Y7965D01* X26580Y7917* X26586Y3470D02* X26529Y3497D01* X26586Y3470* X26610Y8251D02* X26552Y8279D01* X26610Y8251* X26613Y8495D02* X26658Y8562D01* X26613Y8495* Y8834D02* X26658Y8768D01* X26613Y8834* X26626Y3432D02* X26586Y3470D01* X26626Y3432* X26629Y7965D02* X26658Y8022D01* X26629Y7965* X26643Y3223D02* Y3395D01* Y3223* Y3395D02* X26626Y3432D01* X26643Y3395* Y3767D02* X26243D01* X26643* X26649Y8193D02* X26610Y8251D01* X26649Y8193* X26655Y15387D02* X26673Y15454D01* X26655Y15387* Y15944D02* X26827Y15815D01* X26655Y15944* Y16502D02* X26664Y16442D01* X26655Y16502* Y16588* Y16502* Y16588D02* X26663Y16648D01* X26655Y16588* X26658Y8022D02* X26665Y8108D01* X26658Y8022* Y8562D02* X26665Y8622D01* X26658Y8562* Y8768D02* X26665Y8708D01* X26658Y8768* X26664Y15305D02* X26655Y15387D01* X26664Y15305* Y16442D02* X26708Y16374D01* X26664Y16442* Y16648D02* X26708Y16714D01* X26664Y16648* X26665Y8108D02* X26649Y8193D01* X26665Y8108* Y8622D02* Y8708D01* Y8622* X26673Y15454D02* X26700Y15514D01* X26673Y15454* X26694Y15248D02* X26664Y15305D01* X26694Y15248* X26700Y15514D02* X26768Y15557D01* X26700Y15514* X26708Y16374D02* X27204Y16714D01* X26708Y16374* X26762Y16344* X26708Y16374* Y16714D02* X26762Y16746D01* X26708Y16714* X26742Y15200D02* X26694Y15248D01* X26742Y15200* X26762Y16344D02* X26912Y16330D01* X26762Y16344* Y16746D02* X26912Y16758D01* X26762Y16746* X26827Y15155D02* X26742Y15200D01* X26827Y15155* X26912Y15129D02* X26827Y15155D01* X26912Y15129* X26999* X26912* Y16330D02* X26999D01* X26912* Y16758D02* X26999D01* X26912* X26999Y15129D02* X27084Y15148D01* X26999Y15129* Y16330D02* X27151Y16342D01* X26999Y16330* Y16758D02* X27151Y16743D01* X26999Y16758* X27084Y15148D02* X27170Y15196D01* X27084Y15148* X27151Y16342D02* X27204Y16374D01* X27151Y16342* Y16743D02* X27204Y16714D01* X27151Y16743* X27170Y15196D02* X27219Y15244D01* X27170Y15196* X27200Y15530D02* X27143Y15557D01* X27200Y15530* X27204Y16374D02* X27248Y16442D01* X27204Y16374* Y16714D02* X27248Y16648D01* X27204Y16714* X27219Y15244D02* X27248Y15300D01* X27219Y15244* X27240Y15472D02* X27200Y15530D01* X27240Y15472* Y12457D02* X27259Y12372D01* X27240Y12457* Y12543D02* X27266Y12628D01* X27240Y12543* Y12457* Y12543* X27248Y15300D02* X27255Y15387D01* X27248Y15300* Y16442D02* X27255Y16502D01* X27248Y16442* Y16648D02* X27255Y16588D01* X27248Y16648* X27255Y15387D02* X27240Y15472D01* X27255Y15387* Y15944D02* X26655D01* X27255* Y16502D02* Y16588D01* Y16502* X27259Y12372D02* X27307Y12285D01* X27259Y12372* X27265Y29249D02* X27409Y29135D01* X27265Y29249* Y29820D02* Y29249D01* Y29820* X27266Y12628D02* X27311Y12714D01* X27266Y12628* X27306Y8100D02* X28206D01* Y10600* X27306* Y8100* X27307Y12285D02* X27355Y12236D01* X27307Y12285* X27311Y12714D02* X27359Y12762D01* X27311Y12714* X27326Y9099D02* Y9599D01* Y9099* Y9349D02* X27594D01* X27326* Y9599D02* X27594D01* X27326* X27355Y12236D02* X27412Y12207D01* X27355Y12236* X27359Y12762D02* X27416Y12792D01* X27359Y12762* X27409Y29135D02* X27694D01* X27409* Y29935D02* X27265Y29820D01* X27409Y29935* X27412Y12207D02* X27498Y12200D01* X27412Y12207* X27416Y12792D02* X27498Y12800D01* X27416Y12792* X27498Y12200D02* X27583Y12216D01* X27498Y12200* Y12800D02* X27565Y12782D01* X27498Y12800* X27565Y12782D02* X27625Y12756D01* X27565Y12782* X27583Y12216D02* X27642Y12255D01* X27583Y12216* X27594Y9349D02* X27683Y9099D01* X27594Y9349* X27621Y4503D02* Y4675D01* Y4503* X28021* X27621* Y4675D02* X27648Y4712D01* X27621Y4675* Y5018D02* X27627Y4978D01* X27621Y5018* Y5076* Y5018* Y5076D02* X27626Y5116D01* X27621Y5076* X27625Y12756D02* X27668Y12686D01* X27625Y12756* X27627Y4978D02* X27656Y4933D01* X27627Y4978* Y5116D02* X27656Y5160D01* X27627Y5116* X27634Y1469D02* X30634D01* Y2469* X27634* Y1469* X27642Y12255D02* X27668Y12312D01* X27642Y12255* X27648Y4712D02* X27699Y4749D01* X27648Y4712* X27656Y4933D02* X27692Y4913D01* X27656Y4933* Y5160D02* X27692Y5181D01* X27656Y5160* X27684Y9420D02* X27594Y9349D01* X27684Y9420* Y9527D02* Y9420D01* Y9527* Y9528D02* X27594Y9599D01* X27684Y9528* X27692Y4913D02* X27792Y4904D01* X27692Y4913* X27694Y29135D02* X27836Y29249D01* X27694Y29135* Y29935D02* X27409D01* X27694* X27699Y4749D02* X27735Y4776D01* X27699Y4749* X27735Y4776D02* X27819Y4788D01* X27735Y4776* X27792Y4904D02* X27850D01* X27792* Y5018D02* X27799Y4978D01* X27792Y5018* Y5076D02* Y5018D01* Y5076* X27799Y5116D02* X27792Y5076D01* X27799Y5116* X27826Y4933D02* X27799Y4978D01* X27826Y4933* X27862Y4912* X27826Y4933* X27827Y5160D02* X27799Y5116D01* X27827Y5160* Y9385D02* Y9527D01* Y9385* Y9528D02* X27917Y9599D01* X27827Y9528* X27836Y29135D02* X27668Y29339D01* X27836Y29135* Y29820D02* X27694Y29935D01* X27836Y29820* Y29249* Y29820* X27850Y4904D02* X27943D01* X27850* X27862Y4912D02* X27916Y4904D01* X27862Y4912* X27863Y5180D02* X27827Y5160D01* X27863Y5180* X27907Y4776D02* X27819Y4788D01* X27907Y4776* Y5189D02* X27863Y5180D01* X27907Y5189* X27917Y9099D02* X27827Y9170D01* X27917Y9099* Y9313D02* X27827Y9385D01* X27917Y9313* Y9599D02* X28095D01* X27917* X27943Y4904D02* X27987Y4933D01* X27943Y4904* X27951Y5179D02* X27907Y5189D01* X27951Y5179* X27987Y5160* X27951Y5179* X27964Y4749D02* X27907Y4776D01* X27964Y4749* X27987Y4933D02* X28016Y4978D01* X27987Y4933* Y5160D02* X28016Y5116D01* X27987Y5160* X28004Y4712D02* X27964Y4749D01* X28004Y4712* X28016Y4978D02* X28021Y5018D01* X28016Y4978* Y5116D02* X28021Y5076D01* X28016Y5116* X28021Y4503D02* Y4675D01* Y4503* Y4675D02* X28004Y4712D01* X28021Y4675* Y5018D02* Y5076D01* Y5018* X28055Y12200D02* Y12372D01* Y12200* X28082Y12481D02* X28055Y12372D01* X28082Y12481* X28095Y9099D02* X27917D01* X28095* Y9313D02* X27917D01* X28095* Y9599D02* X28184Y9527D01* X28095Y9599* X28110Y12552D02* X28082Y12481D01* X28110Y12552* X28152Y12643D02* X28110Y12552D01* X28152Y12643* X28182Y29135D02* X28524D01* X28182* X28184Y9170D02* X28095Y9099D01* X28184Y9170* Y9385D02* X28095Y9313D01* X28184Y9385* Y9527D02* Y9170D01* Y9527* X28208Y12714D02* X28152Y12643D01* X28208Y12714* X28244Y13573D02* X31204D01* Y17333* X28244* Y13573* X28268Y12757D02* X28208Y12714D01* X28268Y12757* Y12800D02* Y12757D01* Y12800* X27840* X28268* X28353Y29135D02* Y29935D01* Y29135* Y29935D02* X28182Y29707D01* X28353Y29935* X29274Y8100D02* X30174D01* Y10600* X29274* Y8100* X29294Y9099D02* Y9599D01* Y9099* Y9349D02* X29562D01* X29294* Y9599D02* X29562D01* X29294* X29411Y14937D02* X29882D01* X29411* Y15365D02* X29882D01* X29411* Y15710D02* X29430Y15640D01* X29411Y15710* Y15796* Y15710* Y15796D02* X29429Y15864D01* X29411Y15796* X29429Y15864D02* X29482Y15926D01* X29429Y15864* X29482Y15580D02* X29430Y15640D01* X29482Y15580* Y15926D02* X29583Y15966D01* X29482Y15926* X29562Y9349D02* X29651Y9099D01* X29562Y9349* X29583Y15538D02* X29482Y15580D01* X29583Y15538* Y15966D02* X29626D01* X29583* X29626D02* X29668Y15945D01* X29626Y15966* X29652Y9420D02* X29562Y9349D01* X29652Y9420* Y9527D02* Y9420D01* Y9527* Y9528D02* X29562Y9599D01* X29652Y9528* X29668Y15945D02* X29754Y15796D01* X29668Y15945* X29754Y15796D02* X29874Y15580D01* X29754Y15796* X29795Y9170D02* X29885Y9099D01* X29795Y9170* Y9348D02* X29885Y9420D01* X29795Y9348* Y9599D02* Y9348D01* Y9599* X30152* X29795* X29882Y14937D02* X29944Y14951D01* X29882Y14937* Y15365D02* X29944Y15352D01* X29882Y15365* X29885Y9099D02* X30063D01* X29885* Y9420D02* X30063D01* X29885* X29926Y15538D02* X29874Y15580D01* X29926Y15538* X29944Y14951D02* X29972Y14981D01* X29944Y14951* Y15352D02* X29972Y15322D01* X29944Y15352* X29972Y14981D02* X30004Y15048D01* X29972Y14981* Y15322D02* X30004Y15255D01* X29972Y15322* X30004Y15048D02* X30011Y15108D01* X30004Y15048* Y15255D02* X30011Y15195D01* X30004Y15255* X30011Y15108D02* Y15195D01* Y15108* Y15538D02* X29926D01* X30011* Y15966D02* Y15538D01* Y15966* X30063Y9099D02* X30152Y9170D01* X30063Y9099* X30152Y9170D02* Y9348D01* Y9170* Y9348D02* X30063Y9420D01* X30152Y9348* X30443Y12050D02* X32943D01* Y12950* X30443* Y12050* X30488Y10819D02* X33488D01* Y11819* X30488* Y10819* X30644Y13953D02* G03X30604Y13993I40D01* X30564Y13953J40* X30604Y13913I40* X30644Y13953J40* G01X30821Y1881D02* X31164Y1453D01* X30821Y1881* Y2269D02* X30992Y2140D01* X30821Y2269* X31172Y11276D02* X31191Y11190D01* X31172Y11276* Y11362D02* X31199Y11447D01* X31172Y11362* Y11276* Y11362* X31191Y11190D02* X31239Y11104D01* X31191Y11190* X31199Y11447D02* X31243Y11532D01* X31199Y11447* X31239Y11104D02* X31287Y11055D01* X31239Y11104* X31243Y11532D02* X31291Y11580D01* X31243Y11532* X31263Y12249D02* Y12749D01* Y12249* Y12499D02* X31531D01* X31263* Y12749D02* X31531D01* X31263* X31287Y11055D02* X31344Y11026D01* X31287Y11055* X31291Y11580D02* X31349Y11610D01* X31291Y11580* X31344Y11026D02* X31430Y11019D01* X31344Y11026* X31349Y11610D02* X31430Y11619D01* X31349Y11610* X31421Y1453D02* X30821D01* X31421* Y1881D02* X31068Y1573D01* X31421Y1881* Y2140D02* Y2397D01* Y2140* Y2269D02* X30821D01* X31421* X31430Y11019D02* X31515Y11034D01* X31430Y11019* Y11619D02* X31497Y11601D01* X31430Y11619* X31497Y11601D02* X31557Y11574D01* X31497Y11601* X31515Y11034D02* X31574Y11074D01* X31515Y11034* X31531Y12499D02* X31620Y12249D01* X31531Y12499* X31557Y11574D02* X31601Y11505D01* X31557Y11574* X31574Y11074D02* X31601Y11130D01* X31574Y11074* X31621Y12570D02* X31531Y12499D01* X31621Y12570* Y12677D02* Y12570D01* Y12677* Y12678D02* X31531Y12749D01* X31621Y12678* X31764Y12417D02* X32121D01* X31764* X31987Y11019D02* Y11619D01* Y11019* Y11619D02* X31859Y11447D01* X31987Y11619* X32030Y16663D02* X32930D01* Y19163* X32030* Y16663* X32050Y17662D02* Y18162D01* Y17662* Y17912D02* X32318D01* X32050* Y18162D02* X32318D01* X32050* X32063Y1469D02* X35063D01* Y2469* X32063* Y1469* X32086Y12249D02* Y12734D01* Y12249* Y12735D02* X31764Y12418D01* X32086Y12735* X32318Y17912D02* X32407Y17662D01* X32318Y17912* X32408Y17983D02* X32318Y17912D01* X32408Y17983* Y18090D02* Y17983D01* Y18090* Y18091D02* X32318Y18162D01* X32408Y18091* X32506Y4697D02* X32678D01* X32506* Y5097D02* X32678D01* X32506* Y4697* Y5097* Y7059D02* X32678D01* X32506* Y7459D02* X32678D01* X32506* Y7059* Y7459* X32551Y17662D02* X32908D01* X32551* Y17733D02* Y17662D01* Y17733* Y18091D02* X32641Y18162D01* X32551Y18091* X32554Y3368D02* X32726D01* X32554* Y3768D02* X32726D01* X32554* Y3368* Y3768* Y5730D02* X32726D01* X32554* Y6130D02* X32726D01* X32554* Y5730* Y6130* X32588Y11019D02* Y11190D01* Y11019* X32616Y11300D02* X32588Y11190D01* X32616Y11300* X32641Y18162D02* X32819D01* X32641* X32643Y11370D02* X32616Y11300D01* X32643Y11370* X32678Y4697D02* X32715Y4714D01* X32678Y4697* Y5097D02* X32716Y5070D01* X32678Y5097* Y7059D02* X32715Y7076D01* X32678Y7059* Y7459D02* X32716Y7432D01* X32678Y7459* X32685Y11462D02* X32643Y11370D01* X32685Y11462* X32715Y4714D02* X32752Y4754D01* X32715Y4714* Y7076D02* X32752Y7116D01* X32715Y7076* X32716Y5070D02* X32752Y5019D01* X32716Y5070* Y7432D02* X32752Y7381D01* X32716Y7432* X32726Y3368D02* X32763Y3385D01* X32726Y3368* Y3768D02* X32764Y3741D01* X32726Y3768* Y5730D02* X32763Y5747D01* X32726Y5730* Y6130D02* X32764Y6103D01* X32726Y6130* X32742Y11532D02* X32685Y11462D01* X32742Y11532* X32752Y4754D02* X32780Y4811D01* X32752Y4754* Y5019D02* X32780Y4982D01* X32752Y5019* Y7116D02* X32780Y7173D01* X32752Y7116* Y7381D02* X32780Y7345D01* X32752Y7381* X32763Y3385D02* X32800Y3425D01* X32763Y3385* Y5747D02* X32800Y5787D01* X32763Y5747* X32764Y3741D02* X32800Y3690D01* X32764Y3741* Y6103D02* X32800Y6052D01* X32764Y6103* X32780Y4811D02* X32792Y4899D01* X32780Y4811* Y4982D02* X32792Y4899D01* X32780Y4982* Y7173D02* X32792Y7261D01* X32780Y7173* Y7345D02* X32792Y7261D01* X32780Y7345* X32800Y3425D02* X32828Y3482D01* X32800Y3425* Y3690D02* X32828Y3653D01* X32800Y3690* Y5787D02* X32828Y5844D01* X32800Y5787* Y6052D02* X32828Y6016D01* X32800Y6052* X32802Y11576D02* X32742Y11532D01* X32802Y11576* Y11619D02* Y11576D01* Y11619* X32373* X32802* X32819Y18162D02* X32908Y18091D01* X32819Y18162* X32828Y3482D02* X32840Y3570D01* X32828Y3482* Y3653D02* X32840Y3570D01* X32828Y3653* Y5844D02* X32840Y5932D01* X32828Y5844* Y6016D02* X32840Y5932D01* X32828Y6016* X32907Y4697D02* Y4754D01* Y4697* Y4754D02* X32935Y4788D01* X32907Y4754* Y4982D02* X32935Y5049D01* X32907Y4982* X32908Y18019D02* X32551Y17733D01* X32908Y18019* Y18090* Y18019* X32935Y5049D02* X32975Y5084D01* X32935Y5049* X32955Y3434D02* X33008Y3387D01* X32955Y3434* Y3768D02* X33240D01* X32955* Y5864D02* Y5887D01* Y5864* X33021Y5097D02* X32975Y5084D01* X33021Y5097* X33079* X33021* X33050Y7059D02* Y7173D01* Y7059* X33068Y7246D02* X33050Y7173D01* X33068Y7246* X33069Y3368D02* X33008Y3387D01* X33069Y3368* X33127* X33069* Y3621D02* X33131D01* X33069* X33079Y4868D02* X32935Y4788D01* X33079Y4868* Y5097D02* X33124Y5085D01* X33079Y5097* X33087Y7293D02* X33068Y7246D01* X33087Y7293* X33115Y7354D02* X33087Y7293D01* X33115Y7354* X33124Y5085D02* X33165Y5049D01* X33124Y5085* X33131Y3621D02* X33175Y3611D01* X33131Y3621* X33146Y15445D02* X36146D01* Y16445* X33146* Y15445* X33150Y3645D02* X33069Y3621D01* X33150Y3645* X33152Y7401D02* X33115Y7354D01* X33152Y7401* X33165Y5049D02* X33192Y4982D01* X33165Y5049* X33169Y3385D02* X33127Y3368D01* X33169Y3385* X33175Y3611D02* X33200Y3597D01* X33175Y3611* X33179Y4926D02* X33079Y4868D01* X33179Y4926* X33184Y6130D02* X32955Y5887D01* X33184Y6130* X33192Y3677D02* X33150Y3645D01* X33192Y3677* Y4697D02* X32907D01* X33192* Y4954D02* X33179Y4926D01* X33192Y4954* Y4982D02* Y4954D01* Y4982* Y7430D02* X33152Y7401D01* X33192Y7430* Y7459D02* X32907D01* X33192* Y7430* Y7459* X33200Y3597D02* X33224Y3558D01* X33200Y3597* X33203Y3409D02* X33169Y3385D01* X33203Y3409* X33212Y5730D02* Y6130D01* Y5730* Y6130D02* X33184D01* X33212* X33223Y3720D02* X33192Y3677D01* X33223Y3720* X33224Y3558D02* X33239Y3512D01* X33224Y3558* X33232Y3444D02* X33203Y3409D01* X33232Y3444* X33239Y3512D02* X33240Y3482D01* X33239Y3512* X33240Y3482D02* X33232Y3444D01* X33240Y3482* Y3768D02* X33223Y3720D01* X33240Y3768* Y5864D02* X32955D01* X33240* X34130Y15902D02* X34149Y15816D01* X34130Y15902* Y15988D02* X34156Y16073D01* X34130Y15988* Y15902* Y15988* X34149Y15816D02* X34197Y15730D01* X34149Y15816* X34156Y16073D02* X34200Y16158D01* X34156Y16073* X34197Y15730D02* X34245Y15681D01* X34197Y15730* X34200Y16158D02* X34248Y16206D01* X34200Y16158* X34245Y15681D02* X34301Y15652D01* X34245Y15681* X34248Y16206D02* X34306Y16236D01* X34248Y16206* X34301Y15652D02* X34388Y15645D01* X34301Y15652* X34306Y16236D02* X34388Y16245D01* X34306Y16236* X34388Y15645D02* X34473Y15660D01* X34388Y15645* Y16245D02* X34455Y16227D01* X34388Y16245* X34455Y16227D02* X34515Y16200D01* X34455Y16227* X34473Y15660D02* X34532Y15700D01* X34473Y15660* X34478Y16578D02* X36978D01* Y17478* X34478* Y16578* X34515Y16200D02* X34558Y16131D01* X34515Y16200* X34532Y15700D02* X34558Y15756D01* X34532Y15700* X34730Y15761D02* X34774Y15696D01* X34730Y15761* Y15902D02* Y15761D01* Y15902* Y15988D02* Y15902D01* Y15988* X34742Y15884D02* X34730Y15802D01* X34742Y15884* X34745Y16138D02* X34730Y15988D01* X34745Y16138* X34774Y15696D02* X34841Y15652D01* X34774Y15696* Y15938D02* X34841Y15978D01* X34774Y15938* X34742Y15884* X34774Y15938* Y16192D02* X34745Y16138D01* X34774Y16192* X34841Y15652D02* X34901Y15645D01* X34841Y15652* Y16236D02* X34774Y16192D01* X34841Y16236* X34901Y15645D02* X34988D01* X34901* Y15988D02* X34841Y15978D01* X34901Y15988* Y16245D02* X34841Y16236D01* X34901Y16245* X34988* X34901* X34988Y15988D02* X34901D01* X34988* Y16245D02* X35048Y16238D01* X34988Y16245* X35048Y15652D02* X34988Y15645D01* X35048Y15652* Y15978D02* X34988Y15988D01* X35048Y15978* Y16236D02* X35114Y16192D01* X35048Y16236* X35114Y15696D02* X35048Y15652D01* X35114Y15696* Y15936D02* X35048Y15978D01* X35114Y15936* Y16192D02* X35146Y16138D01* X35114Y16192* X35130Y3913D02* X36130D01* Y6913* X35130* Y3913* X35144Y15749D02* X35158Y15816D01* X35144Y15749* X35114Y15696* X35144Y15749* Y15882D02* X35114Y15936D01* X35144Y15882* X35158Y15816D02* X35144Y15882D01* X35158Y15816* X35250Y1881D02* X35593Y1453D01* X35250Y1881* Y2162D02* Y2375D01* Y2162* Y2375D02* X35335Y2482D01* X35250Y2375* X35298Y16777D02* Y17277D01* Y16777* Y17027D02* X35566D01* X35298* Y17277D02* X35566D01* X35298* X35317Y4855D02* X35335Y4923D01* X35317Y4855* Y5412D02* X35488Y5284D01* X35317Y5412* Y5970D02* X35325Y5910D01* X35317Y5970* Y6057* Y5970* X35318Y6057D02* X35325Y6117D01* X35318Y6057* X35325Y4774D02* X35317Y4855D01* X35325Y4774* Y5910D02* X35370Y5843D01* X35325Y5910* Y6117D02* X35370Y6183D01* X35325Y6117* X35335Y4923D02* X35361Y4983D01* X35335Y4923* Y2054D02* X35250Y2162D01* X35335Y2054* X35355Y4716D02* X35325Y4774D01* X35355Y4716* X35361Y4983D02* X35430Y5026D01* X35361Y4983* X35370Y5843D02* X35422Y5812D01* X35370Y5843* Y6183D02* X35422Y6215D01* X35370Y6183* X35403Y4668D02* X35355Y4716D01* X35403Y4668* X35421Y2482D02* X35765Y2054D01* X35421Y2482* X35336* X35421* X35422Y5812D02* X35466D01* X35422* Y6215D02* X35466D01* X35422* X35466Y5812D02* X35515Y5831D01* X35466Y5812* Y6215D02* X35515Y6195D01* X35466Y6215* X35488Y4624D02* X35403Y4668D01* X35488Y4624* X35515Y5831D02* X35556Y5885D01* X35515Y5831* Y6195D02* X35556Y6142D01* X35515Y6195* X35556Y5885D02* X35574Y5970D01* X35556Y5885* Y6142D02* X35574Y6057D01* X35556Y6142* X35566Y17027D02* X35655Y16777D01* X35566Y17027* X35574Y4597D02* X35488Y4624D01* X35574Y4597* X35660* X35574* Y5970D02* X35583Y5910D01* X35574Y5970* Y6057D02* Y5970D01* Y6057* X35583Y6117D02* X35574Y6057D01* X35583Y6117* X35624Y5843D02* X35678Y5811D01* X35624Y5843* X35583Y5910* X35624Y5843* X35625Y6183D02* X35583Y6117D01* X35625Y6183* X35656Y17098D02* X35566Y17027D01* X35656Y17098* Y17205D02* Y17098D01* Y17205* Y17206D02* X35566Y17277D01* X35656Y17206* X35660Y4597D02* X35745Y4617D01* X35660Y4597* X35678Y5811D02* X35745Y5799D01* X35678Y5811* X35679Y6213D02* X35625Y6183D01* X35679Y6213* X35745Y4617D02* X35832Y4665D01* X35745Y4617* Y5799D02* X35812Y5811D01* X35745Y5799* Y6227D02* X35678Y6213D01* X35745Y6227* X35765Y2054D02* X35850D01* X35765* X35812Y5811D02* X35865Y5843D01* X35812Y5811* Y6211D02* X35745Y6227D01* X35812Y6211* X35865Y6183* X35812Y6211* X35832Y4665D02* X35881Y4713D01* X35832Y4665* X35850Y1453D02* X35250D01* X35850* Y1881D02* X35497Y1573D01* X35850Y1881* Y2054D02* Y2482D01* Y2054* X35862Y4998D02* X35804Y5026D01* X35862Y4998* X35865Y5843D02* X35910Y5910D01* X35865Y5843* Y6183D02* X35910Y6117D01* X35865Y6183* X35881Y4713D02* X35910Y4769D01* X35881Y4713* X35889Y16777D02* X35799Y16848D01* X35889Y16777* Y17277D02* X35799Y17206D01* X35889Y17277* X35901Y4941D02* X35862Y4998D01* X35901Y4941* X35910Y4769D02* X35917Y4855D01* X35910Y4769* Y5910D02* X35917Y5970D01* X35910Y5910* Y6117D02* X35917Y6057D01* X35910Y6117* X35917Y4855D02* X35901Y4941D01* X35917Y4855* Y5412D02* X35317D01* X35917* Y5970D02* Y6057D01* Y5970* X36067Y16777D02* X35889D01* X36067* Y17277D02* X35889D01* X36067* X36068Y17027D02* X36156Y16955D01* X36068Y17027* X35976* X36068* X36156Y16848D02* X36067Y16777D01* X36156Y16848* Y16955D02* Y16848D01* Y16955* Y17098D02* X36068Y17027D01* X36156Y17098* Y17205D02* Y17098D01* Y17205* Y17206D02* X36067Y17277D01* X36156Y17206* G54D15* X18718Y3031D02* Y3531D01* Y3031* Y3281D02* X18986D01* X18718* Y3531D02* X18986D01* X18718* X18986Y3281D02* X19075Y3031D01* X18986Y3281* X19076Y3352D02* X18986Y3281D01* X19076Y3352* Y3459D02* Y3352D01* Y3459* Y3460D02* X18986Y3531D01* X19076Y3460* X19291Y3031D02* X19505D01* X19291* X19398D02* Y3531D01* Y3031* Y3531D02* X19291Y3388D01* X19398Y3531* X19792Y3031D02* X20006D01* X19792* X19899D02* Y3531D01* Y3031* Y3531D02* X19792Y3388D01* X19899Y3531* M02* gerbv-2.7.0/example/nollezappare/EtchLayer2Bottom.gdo0000644000175000017500000020644213421555714022475 0ustar carstencarsten* G04 Job : V:\veribest\Proj\nollezappare\PCB\nollezappare.pcb* G04 User : IRR:Administrator* G04 Layer : EtchLayer2Bottom.gdo* G04 Date : Fri Aug 10 18:46:29 2001* G04 VeriBest Example Gerber Output Definition* %ICAS*% %MOIN*% %FSLAX24Y24*% %OFA0.0000B0.0000*% G90* %AMVB_RECTANGLE* 21,1,$1,$2,0,0,$3* % %ADD22C,0.0100*% %ADD21C,0.0118*% %ADD23C,0.0120*% %ADD24C,0.0140*% %ADD26C,0.0157*% %ADD17C,0.0300*% %ADD25C,0.0394*% %ADD13C,0.0600*% %ADD11C,0.0650*% %ADD15C,0.0790*% %ADD19C,0.0800*% %ADD16C,0.1000*% %ADD70C,0.1110*% %ADD18C,0.1200*% %ADD27C,0.1575*% %ADD20C,0.1772*% %ADD10C,0.2362*% %ADD12VB_RECTANGLE,0.0650X0.0650X270.0000*% %ADD14VB_RECTANGLE,0.0790X0.0790X180.0000*% %ADD71VB_RECTANGLE,0.1110X0.1110X0.0000*% G01* G54D10* X2657Y19882D03* Y24311D03* X5807Y2559D03* X9843D03* G54D11* X7843Y5512D03* X11843D03* X14567Y3528D03* Y5528D03* X16142Y3754D03* X17791Y6571D03* Y9571D03* X18374Y13754D03* X18791Y6571D03* Y9571D03* X19791Y6571D03* Y9571D03* X20791Y6571D03* X21202Y10925D03* X22047Y1740D03* Y5740D03* Y7071D03* Y9071D03* X23228Y3217D03* Y7217D03* X25787Y23000D03* Y27000D03* X26378Y2043D03* Y7366D03* Y9366D03* X26756Y12500D03* X26969Y14945D03* Y16945D03* X27756Y3323D03* Y7350D03* Y11350D03* X28224Y13953D03* Y14953D03* Y15953D03* Y16953D03* X28756Y12500D03* X29693D03* X29724Y7350D03* Y11350D03* X30988Y11319D03* X31224Y14953D03* Y15953D03* Y16953D03* X31374Y3642D03* Y6004D03* X32480Y15913D03* Y19913D03* X32988Y11319D03* X33646Y15945D03* X33693Y12500D03* X33728Y17028D03* X34374Y4823D03* Y7185D03* X35630Y4413D03* Y6413D03* X35646Y15945D03* X37728Y17028D03* G54D12* X16142Y8254D03* X20791Y9571D03* X26378Y5043D03* X27756Y6323D03* X31224Y13953D03* X31374Y4823D03* Y7185D03* X34374Y3642D03* Y6004D03* G54D13* X15945Y1469D03* Y2469D03* G54D14* X2126Y7677D03* Y14370D03* X10236Y15787D03* X30134Y1969D03* X34563D03* G54D15* X4961Y7677D03* Y14370D03* X10236Y12953D03* X28134Y1969D03* X29134D03* X32563D03* X33563D03* G54D16* X18291Y3248D03* Y4248D03* X19291Y2248D03* X20291Y3248D03* Y4248D03* G54D17* X18291Y3248D02* Y4248D01* X20291Y3248D02* Y4248D01* G54D18* X6425Y19882D03* X15425D03* X17368D03* X30118D03* G54D19* X6201Y23130D03* X12201D03* G54D20* X-1575Y3543D03* X1969Y1969D03* Y29528D03* X11811Y27165D03* X37500Y1969D03* Y20079D03* G54D21* X256Y472D02* X7421D01* X256Y709D02* X7421D01* X256Y945D02* X1714D01* X256Y1181D02* X1267D01* X256Y1417D02* X1069D01* X256Y1654D02* X962D01* X256Y1890D02* X917D01* X256Y2126D02* X925D01* X256Y2362D02* X990D01* X256Y2598D02* X1122D01* X256Y2835D02* X1366D01* X256Y3071D02* X7421D01* X256Y3307D02* X7421D01* X256Y3543D02* X7421D01* X256Y3780D02* X7421D01* X256Y4016D02* X7421D01* X256Y4252D02* X7421D01* X256Y4488D02* X7421D01* X256Y4724D02* X7421D01* X256Y4961D02* X7436D01* X256Y5197D02* X7475D01* X256Y5433D02* X7365D01* X256Y5669D02* X7385D01* X256Y5906D02* X7521D01* X256Y6142D02* X3655D01* X256Y6378D02* X3500D01* X256Y6614D02* X3484D01* X256Y6850D02* X3484D01* X256Y7087D02* X3484D01* X256Y7323D02* X1552D01* X256Y7559D02* X1552D01* X256Y7795D02* X1552D01* X256Y8031D02* X1552D01* X256Y8268D02* X3484D01* X256Y8504D02* X3484D01* X256Y8740D02* X3484D01* X256Y8976D02* X3484D01* X256Y9213D02* X3484D01* X256Y9449D02* X3484D01* X256Y9685D02* X3484D01* X256Y9921D02* X3484D01* X256Y10157D02* X3484D01* X256Y10394D02* X3484D01* X256Y10630D02* X3484D01* X256Y10866D02* X3484D01* X256Y11102D02* X3484D01* X256Y11339D02* X3484D01* X256Y11575D02* X3484D01* X256Y11811D02* X3484D01* X256Y12047D02* X3484D01* X256Y12283D02* X3484D01* X256Y12520D02* X3484D01* X256Y12756D02* X3484D01* X256Y12992D02* X3484D01* X256Y13228D02* X3484D01* X256Y13465D02* X3484D01* X256Y13701D02* X3484D01* X256Y13937D02* X1556D01* X256Y14173D02* X1552D01* X256Y14409D02* X1552D01* X256Y14646D02* X1552D01* X256Y14882D02* X1595D01* X256Y15118D02* X3484D01* X256Y15354D02* X3484D01* X256Y15591D02* X3551D01* X256Y15827D02* X9662D01* X256Y16063D02* X9662D01* X256Y16299D02* X9706D01* X256Y16535D02* X11161D01* X256Y16772D02* X11161D01* X256Y17008D02* X11161D01* X256Y17244D02* X11161D01* X256Y17480D02* X11161D01* X256Y17717D02* X11161D01* X256Y17953D02* X11161D01* X256Y18189D02* X11161D01* X256Y18425D02* X11161D01* X256Y18661D02* X11161D01* X256Y18898D02* X11161D01* X256Y19134D02* X6144D01* X256Y19370D02* X5812D01* X256Y19606D02* X5675D01* X256Y19843D02* X5627D01* X256Y20079D02* X5651D01* X256Y20315D02* X5754D01* X256Y20551D02* X5989D01* X256Y20787D02* X11161D01* X256Y21024D02* X11161D01* X256Y21260D02* X11161D01* X258Y21496D02* X11064D01* X354Y258D02* Y21593D01* X472Y21594D02* Y256D01* X591D02* Y21594D01* X709D02* Y256D01* X827D02* Y21594D01* X914Y2008D02* X256D01* X932Y1772D02* X256D01* X945Y1714D02* Y256D01* Y21594D02* Y2223D01* X950Y2244D02* X256D01* X1007Y1535D02* X256D01* X1046Y2480D02* X256D01* X1063Y256D02* Y1427D01* Y2510D02* Y21594D01* X1153Y1299D02* X256D01* X1181Y1267D02* Y256D01* Y21594D02* Y2670D01* X1225Y2717D02* X256D01* X1299Y256D02* Y1153D01* Y2784D02* Y21594D01* X1417Y1069D02* Y256D01* Y21594D02* Y2868D01* X1427Y1063D02* X256D01* X1535Y256D02* Y1007D01* Y2930D02* Y21594D01* X1552Y7441D02* X256D01* X1552Y7677D02* X256D01* X1552Y7913D02* X256D01* X1552Y14055D02* X256D01* X1552Y14291D02* X256D01* X1552Y14528D02* X256D01* X1552Y14764D02* X256D01* X1570Y7205D02* X256D01* X1570Y8150D02* X256D01* X1589Y2953D02* X256D01* X1643Y13819D02* X256D01* X1654Y962D02* Y256D01* Y7121D02* Y2975D01* Y13814D02* Y8234D01* Y21594D02* Y14927D01* X1772Y256D02* Y932D01* Y3005D02* Y7103D01* Y8251D02* Y13796D01* Y14944D02* Y21594D01* X1890Y917D02* Y256D01* Y7103D02* Y3020D01* Y13796D02* Y8251D01* Y21594D02* Y14944D01* X2008Y256D02* Y914D01* Y3023D02* Y7103D01* Y8251D02* Y13796D01* Y14944D02* Y21594D01* X2126Y925D02* Y256D01* Y7103D02* Y3012D01* Y13796D02* Y8251D01* Y21594D02* Y14944D01* X2223Y945D02* X7421D01* X2244Y256D02* Y950D01* Y2987D02* Y7103D01* Y8251D02* Y13796D01* Y14944D02* Y21594D01* X2362Y990D02* Y256D01* Y7103D02* Y2947D01* Y13796D02* Y8251D01* Y21594D02* Y14944D01* X2480Y256D02* Y1046D01* Y2891D02* Y7103D01* Y8251D02* Y13796D01* Y14944D02* Y21594D01* X2521Y7103D02* G03X2700Y7282J179D01* G01Y8072* G03X2521Y8251I179* G01X1731* G03X1552Y8072J179* G01Y7282* G03X1731Y7103I179* G01X2521* Y13796D02* G03X2700Y13975J179D01* G01Y14765* G03X2521Y14944I179* G01X1731* G03X1552Y14765J179* G01Y13975* G03X1731Y13796I179* G01X2521* X2571Y2835D02* X7421D01* X2598Y1122D02* Y256D01* Y7121D02* Y2815D01* Y13814D02* Y8234D01* Y21594D02* Y14927D01* X2657Y14882D02* X3484D01* X2670Y1181D02* X7421D01* X2696Y13937D02* X3484D01* X2700Y7323D02* X3484D01* X2700Y7559D02* X3484D01* X2700Y7795D02* X3484D01* X2700Y8031D02* X3484D01* X2700Y14173D02* X3484D01* X2700Y14409D02* X3484D01* X2700Y14646D02* X3484D01* X2717Y256D02* Y1225D01* Y2712D02* Y21594D01* X2815Y2598D02* X7421D01* X2835Y1366D02* Y256D01* Y21594D02* Y2571D01* X2868Y1417D02* X7421D01* X2947Y2362D02* X7421D01* X2953Y256D02* Y1589D01* Y2348D02* Y21594D01* X2975Y1654D02* X7421D01* X3012Y2126D02* X7421D01* X3020Y1890D02* X7421D01* X3023Y1969D02* G03X1969Y3023I1054D01* X914Y1969J1054* X1969Y914I1055* X3023Y1969J1055* G01X3071Y21594D02* Y256D01* X3189D02* Y21594D01* X3307D02* Y256D01* X3425D02* Y21594D01* X3484Y6496D02* X256D01* X3484Y6732D02* X256D01* X3484Y6969D02* X256D01* X3484Y7205D02* X2682D01* X3484Y7441D02* X2700D01* X3484Y7677D02* X2700D01* X3484Y7913D02* X2700D01* X3484Y8150D02* X2682D01* X3484Y8386D02* X256D01* X3484Y8622D02* X256D01* X3484Y8858D02* X256D01* X3484Y9094D02* X256D01* X3484Y9331D02* X256D01* X3484Y9567D02* X256D01* X3484Y9803D02* X256D01* X3484Y10039D02* X256D01* X3484Y10276D02* X256D01* X3484Y10512D02* X256D01* X3484Y10748D02* X256D01* X3484Y10984D02* X256D01* X3484Y11220D02* X256D01* X3484Y11457D02* X256D01* X3484Y11693D02* X256D01* X3484Y11929D02* X256D01* X3484Y12165D02* X256D01* X3484Y12402D02* X256D01* X3484Y12638D02* X256D01* X3484Y12874D02* X256D01* X3484Y13110D02* X256D01* X3484Y13346D02* X256D01* X3484Y13583D02* X256D01* X3484Y13819D02* X2609D01* X3484Y14055D02* X2700D01* X3484Y14291D02* X2700D01* X3484Y14528D02* X2700D01* X3484Y14764D02* X2700D01* X3484Y15000D02* X256D01* X3484Y15236D02* X256D01* X3500Y15472D02* X256D01* X3543Y6273D02* Y256D01* Y21594D02* Y15578D01* X3551Y6260D02* X256D01* X3655Y15709D02* X256D01* X3661Y256D02* Y6137D01* Y15714D02* Y21594D01* X3780Y6072D02* Y256D01* Y21594D02* Y15779D01* X3898Y256D02* Y6045D01* Y15805D02* Y21594D01* X3996Y7087D02* X12516D01* X3996Y7323D02* X4509D01* X3996Y7559D02* X4399D01* X3996Y7795D02* X4399D01* X3996Y8031D02* X4509D01* X3996Y8268D02* X13697D01* X3996Y8504D02* X13934D01* X3996Y8740D02* X14170D01* X3996Y8976D02* X14407D01* X3996Y9213D02* X14643D01* X3996Y9449D02* X14879D01* X3996Y9685D02* X15116D01* X3996Y9921D02* X15352D01* X3996Y10157D02* X15588D01* X3996Y10394D02* X15825D01* X3996Y10630D02* X16061D01* X3996Y10866D02* X16298D01* X3996Y11102D02* X16534D01* X3996Y11339D02* X16770D01* X3996Y11575D02* X17007D01* X3996Y11811D02* X17243D01* X3996Y12047D02* X17480D01* X3996Y12283D02* X17716D01* X3996Y12520D02* X9859D01* X3996Y12756D02* X9697D01* X3996Y12992D02* X9664D01* X3996Y13228D02* X9733D01* X3996Y13465D02* X9976D01* X3996Y13701D02* X17893D01* X3996Y13937D02* X4584D01* X3996Y14173D02* X4421D01* X3996Y14409D02* X4388D01* X3996Y14646D02* X4457D01* X3996Y14882D02* X4701D01* X3998Y6850D02* X12279D01* X4016Y6043D02* Y256D01* Y6777D02* Y15074D01* Y21594D02* Y15807D01* X4035Y15118D02* X6398D01* X4134Y256D02* Y6043D01* Y15231D02* Y6619D01* Y15807D02* Y21594D01* X4141Y6614D02* X12043D01* X4252Y6043D02* Y256D01* Y6565D02* Y15286D01* Y21594D02* Y15807D01* X4370Y256D02* Y6043D01* Y15295D02* Y6555D01* Y15807D02* Y21594D01* X4387Y7677D02* X3996D01* X4392Y14291D02* X3996D01* X4409Y14528D02* X3996D01* X4437Y7441D02* X3996D01* X4437Y7913D02* X3996D01* X4481Y14055D02* X3996D01* X4488Y6043D02* Y256D01* Y6555D02* Y7351D01* Y8003D02* Y14044D01* Y14696D02* Y15295D01* Y21594D02* Y15807D01* X4543Y14764D02* X3996D01* X4606Y256D02* Y6043D01* Y7226D02* Y6555D01* Y13918D02* Y8129D01* Y15295D02* Y14822D01* Y15807D02* Y21594D01* X4635Y7205D02* X3996D01* X4635Y8150D02* X3996D01* X4724Y6043D02* Y256D01* Y6555D02* Y7154D01* Y8200D02* Y13847D01* Y14893D02* Y15295D01* Y21594D02* Y15807D01* X4800Y13819D02* X3996D01* X4843Y256D02* Y6043D01* Y7115D02* Y6555D01* Y13808D02* Y8239D01* Y15295D02* Y14932D01* Y15807D02* Y21594D01* X4961Y6043D02* Y256D01* Y6555D02* Y7103D01* Y8251D02* Y13796D01* Y14944D02* Y15295D01* Y21594D02* Y15807D01* X5079Y256D02* Y6043D01* Y7115D02* Y6555D01* Y13808D02* Y8239D01* Y15295D02* Y14932D01* Y15807D02* Y21594D01* X5197Y6043D02* Y256D01* Y6555D02* Y7154D01* Y8200D02* Y13847D01* Y14893D02* Y15295D01* Y21594D02* Y15807D01* X5221Y14882D02* X6437D01* X5315Y256D02* Y6043D01* Y7226D02* Y6555D01* Y13918D02* Y8129D01* Y15295D02* Y14822D01* Y15807D02* Y21594D01* X5337Y13937D02* X6758D01* X5412Y7323D02* X12752D01* X5412Y8031D02* X13461D01* X5433Y6043D02* Y256D01* Y6555D02* Y7351D01* Y8003D02* Y14044D01* Y14696D02* Y15295D01* Y21594D02* Y15807D01* X5464Y14646D02* X6437D01* X5500Y14173D02* X6482D01* X5522Y7559D02* X12988D01* X5522Y7795D02* X13225D01* X5533Y14409D02* X6437D01* X5535Y7677D02* G03X4961Y8251I574D01* X4387Y7677J574* X4961Y7103I574* X5535Y7677J574* G01Y14370D02* G03X4961Y14944I574D01* X4387Y14370J574* X4961Y13796I574* X5535Y14370J574* G01X5551Y256D02* Y6043D01* Y15295D02* Y6555D01* Y15807D02* Y21594D01* X5630Y19961D02* X256D01* X5642Y19724D02* X256D01* X5669Y6043D02* Y256D01* Y6555D02* Y15295D01* Y19623D02* Y15807D01* Y21594D02* Y20141D01* X5691Y20197D02* X256D01* X5730Y19488D02* X256D01* X5787Y256D02* Y6043D01* Y15295D02* Y6555D01* Y15807D02* Y19401D01* Y20363D02* Y21594D01* X5847Y20433D02* X256D01* X5906Y6043D02* Y256D01* Y6555D02* Y15295D01* Y19275D02* Y15807D01* Y21594D02* Y20489D01* X5934Y19252D02* X256D01* X6024Y256D02* Y6043D01* Y15295D02* Y6555D01* Y15807D02* Y19191D01* Y20573D02* Y21594D01* X6142Y6043D02* Y256D01* Y6555D02* Y15293D01* Y19135D02* Y15807D01* Y21594D02* Y20629D01* X6260Y256D02* Y6043D01* Y15256D02* Y6555D01* Y15807D02* Y19100D01* Y20664D02* Y21594D01* X6289Y20669D02* X256D01* X6292Y15236D02* X4141D01* X6378Y6043D02* Y256D01* Y6555D02* Y15150D01* Y19084D02* Y15807D01* Y21594D02* Y20680D01* X6435Y15000D02* X3998D01* X6437Y14528D02* X5513D01* X6437Y14764D02* X5378D01* X6444Y14291D02* X5529D01* X6496Y256D02* Y6043D01* Y14147D02* Y6555D01* Y15807D02* Y19086D01* Y20678D02* Y21594D01* X6565Y14055D02* X5441D01* X6614Y6043D02* Y256D01* Y6555D02* Y14011D01* Y19106D02* Y15791D01* Y21594D02* Y20658D01* X6706Y19134D02* X11161D01* X6732Y256D02* Y6043D01* Y13946D02* Y6555D01* Y15741D02* Y19144D01* Y20620D02* Y21594D01* X6850Y6043D02* Y256D01* Y6555D02* Y13919D01* Y19205D02* Y15636D01* Y21594D02* Y20558D01* X6862Y20551D02* X11161D01* X6882Y15591D02* X9662D01* X6949Y14882D02* X11161D01* X6949Y15118D02* X11161D01* X6949Y15354D02* X9666D01* X6969Y256D02* Y6043D01* Y13917D02* Y6555D01* Y14651D02* Y19296D01* Y20468D02* Y21594D01* X6970Y14646D02* X11140D01* X7039Y19370D02* X11161D01* X7087Y6043D02* Y256D01* Y6555D02* Y13917D01* Y19434D02* Y14493D01* Y21594D02* Y20330D01* X7097Y20315D02* X11161D01* X7175Y19606D02* X11161D01* X7200Y20079D02* X11161D01* X7205Y256D02* Y6043D01* Y13917D02* Y6555D01* Y14439D02* Y19706D01* Y20057D02* Y21594D01* X7223Y19843D02* X11161D01* X7224Y19882D02* G03X6425Y20681I799D01* X5626Y19882J799* X6425Y19083I799* X7224Y19882J799* G01X7323Y6043D02* Y258D01* Y6555D02* Y13917D01* Y21594D02* Y14429D01* X7360Y5551D02* X256D01* X7400Y5315D02* X256D01* X7420Y354D02* X258D01* X7421Y591D02* X256D01* X7421Y827D02* X256D01* X7421Y1063D02* X2510D01* X7421Y1299D02* X2784D01* X7421Y1535D02* X2930D01* X7421Y1772D02* X3005D01* X7421Y2008D02* X3023D01* X7421Y2244D02* X2987D01* X7421Y2480D02* X2891D01* X7421Y2717D02* X2712D01* X7421Y2953D02* X2348D01* X7421Y3189D02* X256D01* X7421Y3425D02* X256D01* X7421Y3661D02* X256D01* X7421Y3898D02* X256D01* X7421Y4134D02* X256D01* X7421Y4370D02* X256D01* X7421Y4606D02* X256D01* X7421Y4843D02* X256D01* X7441Y4965D02* Y5242D01* Y5782D02* Y6038D01* Y13917D02* Y6555D01* Y14429D02* Y21594D01* X7445Y5787D02* X256D01* X7470Y6024D02* X256D01* X7534Y5079D02* X256D01* X7559Y6555D02* Y13917D01* Y21594D02* Y14429D01* X7677Y13917D02* Y6555D01* Y14429D02* Y21594D01* X7795Y6555D02* Y13917D01* Y21594D02* Y14429D01* X7913Y13917D02* Y6555D01* Y14429D02* Y21594D01* X7933Y472D02* X11752D01* X7933Y709D02* X11752D01* X7933Y945D02* X11752D01* X7933Y1181D02* X11752D01* X7933Y1417D02* X11752D01* X7933Y1654D02* X11752D01* X7933Y1890D02* X11752D01* X7933Y2126D02* X11752D01* X7933Y2362D02* X11752D01* X7933Y2598D02* X11752D01* X7933Y2835D02* X11752D01* X7933Y3071D02* X11752D01* X7933Y3307D02* X11752D01* X7933Y3543D02* X11752D01* X7933Y3780D02* X11752D01* X7933Y4016D02* X11752D01* X7955Y4252D02* X11752D01* X8031Y258D02* Y4371D01* Y6555D02* Y13917D01* Y21594D02* Y14429D01* X8150Y4447D02* Y256D01* Y13917D02* Y6555D01* Y14429D02* Y21594D01* X8268Y256D02* Y4469D01* Y6555D02* Y13917D01* Y21594D02* Y14429D01* X8386Y4484D02* Y256D01* Y13917D02* Y6539D01* Y14429D02* Y21594D01* X8400Y4488D02* X11752D01* X8504Y256D02* Y4535D01* Y6489D02* Y13917D01* Y21594D02* Y14429D01* X8622Y4639D02* Y256D01* Y13917D02* Y6384D01* Y14429D02* Y21594D01* X8627Y6378D02* X11822D01* X8675Y4724D02* X11752D01* X8719Y6142D02* X11752D01* X8720Y4961D02* X11749D01* X8720Y5197D02* X11462D01* X8720Y5433D02* X11355D01* X8720Y5669D02* X11374D01* X8720Y5906D02* X11544D01* X8740Y256D02* Y13917D01* Y21594D02* Y14429D01* X8858Y13917D02* Y256D01* Y14429D02* Y21594D01* X8976Y256D02* Y13917D01* Y21594D02* Y14429D01* X9094Y13917D02* Y256D01* Y14429D02* Y21594D01* X9213Y256D02* Y13917D01* Y21594D02* Y14429D01* X9331Y13917D02* Y256D01* Y14429D02* Y21594D01* X9449Y256D02* Y13917D01* Y21594D02* Y14429D01* X9567Y13917D02* Y256D01* Y14429D02* Y21594D01* X9662Y15472D02* X6933D01* X9662Y15709D02* X6778D01* X9662Y15945D02* X256D01* X9662Y16181D02* X256D01* X9668Y12874D02* X3996D01* X9684Y13110D02* X3996D01* X9685Y256D02* Y12792D01* Y13113D02* Y13917D01* Y15305D02* Y14429D01* Y21594D02* Y16270D01* X9754Y15236D02* X6949D01* X9756Y12638D02* X3996D01* X9803Y12576D02* Y256D01* Y13917D02* Y13330D01* Y14429D02* Y15217D01* Y16357D02* Y21594D01* X9818Y13346D02* X3996D01* X9921Y256D02* Y12473D01* Y13433D02* Y13917D01* Y15213D02* Y14429D01* Y21594D02* Y16361D01* X10039Y12414D02* Y256D01* Y13917D02* Y13492D01* Y14429D02* Y15213D01* Y16361D02* Y21594D01* X10076Y12402D02* X3996D01* X10157Y256D02* Y12384D01* Y13521D02* Y13917D01* Y15213D02* Y14429D01* Y21594D02* Y16361D01* X10276Y12380D02* Y256D01* Y13917D02* Y13525D01* Y14429D02* Y15213D01* Y16361D02* Y21594D01* X10394Y256D02* Y12401D01* Y13505D02* Y13917D01* Y15213D02* Y14429D01* Y21594D02* Y16361D01* X10496Y13465D02* X17986D01* X10512Y12449D02* Y256D01* Y13917D02* Y13456D01* Y14429D02* Y15213D01* Y16361D02* Y21594D01* X10613Y12520D02* X17952D01* X10630Y256D02* Y12535D01* Y13371D02* Y13917D01* Y15213D02* Y14429D01* Y21594D02* Y16361D01* X10631Y15213D02* G03X10810Y15392J179D01* G01Y16182* G03X10631Y16361I179* G01X9841* G03X9662Y16182J179* G01Y15392* G03X9841Y15213I179* G01X10631* X10740Y13228D02* X18510D01* X10748Y12693D02* Y256D01* Y13917D02* Y13213D01* Y14429D02* Y15257D01* Y16318D02* Y21594D01* X10767Y16299D02* X11161D01* X10775Y12756D02* X18189D01* X10806Y15354D02* X11161D01* X10809Y12992D02* X18425D01* X10810Y12953D02* G03X10236Y13527I574D01* X9662Y12953J574* X10236Y12379I574* X10810Y12953J574* G01Y15591D02* X11161D01* X10810Y15827D02* X11161D01* X10810Y16063D02* X11161D01* X10866Y256D02* Y13917D01* Y21592D02* Y14431D01* X10984Y13917D02* Y256D01* Y14468D02* Y21555D01* X11064Y14528D02* X7046D01* X11102Y256D02* Y13917D01* Y21450D02* Y14574D01* X11140Y21378D02* X256D01* X11161Y14764D02* G02X10827Y14429I334D01* G01X7283* G02X6949Y14764J335* G01Y15354* G03X6496Y15807I453* G01X3937* G03X3484Y15354J453* G01Y6496* G03X3937Y6043I453* G01X7405* G02X7523Y5925J118* X7491Y5844I118* G03X7358Y5512I352J332* X7500Y5170I485* G02X7534Y5086I84J84* X7459Y4976I118* G03X7421Y4921I21J55* G01Y374* G02X7303Y256I118* G01X374* G02X256Y374J118* G01Y21476* G02X374Y21594I118* G01X10827* G02X11161Y21260J334* G01Y14764* X6949* X11161Y15000D02* X6949D01* X11161Y15236D02* X10719D01* X11161Y15472D02* X10810D01* X11161Y15709D02* X10810D01* X11161Y15945D02* X10810D01* X11161Y16181D02* X10810D01* X11161Y16417D02* X256D01* X11161Y16654D02* X256D01* X11161Y16890D02* X256D01* X11161Y17126D02* X256D01* X11161Y17362D02* X256D01* X11161Y17598D02* X256D01* X11161Y17835D02* X256D01* X11161Y18071D02* X256D01* X11161Y18307D02* X256D01* X11161Y18543D02* X256D01* X11161Y18780D02* X256D01* X11161Y19016D02* X256D01* X11161Y19252D02* X6917D01* X11161Y19488D02* X7121D01* X11161Y19724D02* X7209D01* X11161Y19961D02* X7220D01* X11161Y20197D02* X7160D01* X11161Y20433D02* X7004D01* X11161Y20669D02* X6561D01* X11161Y20906D02* X256D01* X11161Y21142D02* X256D01* X11220Y13917D02* Y256D01* X11339D02* Y13933D01* X11350Y5551D02* X8720D01* X11352Y13937D02* X17926D01* X11389Y5315D02* X8720D01* X11432Y5787D02* X8720D01* X11457Y5203D02* Y256D01* Y13984D02* Y5820D01* X11575Y256D02* Y5097D01* Y5927D02* Y14088D01* X11605Y5079D02* X8720D01* X11628Y14173D02* X18133D01* X11673Y14409D02* X19801D01* X11673Y14646D02* X19823D01* X11673Y14882D02* X19823D01* X11673Y15118D02* X19823D01* X11673Y15354D02* X19823D01* X11673Y15591D02* X19823D01* X11673Y15827D02* X19823D01* X11673Y16063D02* X19823D01* X11673Y16299D02* X19823D01* X11673Y16535D02* X19823D01* X11673Y16772D02* X19823D01* X11673Y17008D02* X19823D01* X11673Y17244D02* X19823D01* X11673Y17480D02* X19823D01* X11673Y17717D02* X19823D01* X11673Y17953D02* X19823D01* X11673Y18189D02* X19823D01* X11673Y18425D02* X19823D01* X11673Y18661D02* X19823D01* X11673Y18898D02* X19823D01* X11673Y19134D02* X15144D01* X11673Y19370D02* X14812D01* X11673Y19606D02* X14675D01* X11673Y19843D02* X14627D01* X11673Y20079D02* X14651D01* X11673Y20315D02* X14754D01* X11673Y20551D02* X14989D01* X11673Y20787D02* X19823D01* X11673Y21024D02* X19823D01* X11673Y21260D02* X19823D01* X11673Y21496D02* X19823D01* X11673Y21732D02* X19823D01* X11673Y21969D02* X19823D01* X11673Y22205D02* X19823D01* X11673Y22441D02* X19823D01* X11693Y5039D02* Y272D01* Y22631D02* Y5985D01* X11725Y23622D02* X11896D01* X11733Y6024D02* X8720D01* X11750Y354D02* X7935D01* X11752Y591D02* X7933D01* X11752Y827D02* X7933D01* X11752Y1063D02* X7933D01* X11752Y1299D02* X7933D01* X11752Y1535D02* X7933D01* X11752Y1772D02* X7933D01* X11752Y2008D02* X7933D01* X11752Y2244D02* X7933D01* X11752Y2480D02* X7933D01* X11752Y2717D02* X7933D01* X11752Y2953D02* X7933D01* X11752Y3189D02* X7933D01* X11752Y3425D02* X7933D01* X11752Y3661D02* X7933D01* X11752Y3898D02* X7933D01* X11752Y4134D02* X7933D01* X11752Y4370D02* X8031D01* X11752Y4606D02* X8593D01* X11752Y4843D02* X8714D01* X11752Y22677D02* X11830D01* X11769Y6260D02* X8692D01* X11771Y23858D02* X19725D01* X11811Y6359D02* Y22682D01* Y23588D02* Y23893D01* X11925Y6496D02* X8491D01* X11929Y22619D02* Y6501D01* Y23947D02* Y23641D01* X12047Y6619D02* Y22572D01* Y23688D02* Y23957D01* X12104Y22559D02* X11673D01* X12161Y6732D02* X4035D01* X12165Y22552D02* Y6737D01* Y23957D02* Y23708D01* X12283Y6855D02* Y22557D01* Y23703D02* Y23957D01* X12397Y6969D02* X3996D01* X12402Y22587D02* Y6973D01* Y23957D02* Y23673D01* X12506Y23622D02* X19823D01* X12520Y7091D02* Y22647D01* Y23613D02* Y23957D01* X12562Y22677D02* X19823D01* X12634Y7205D02* X5287D01* X12638Y22750D02* Y7209D01* Y23957D02* Y23510D01* X12720Y23386D02* X19823D01* X12738Y22913D02* X19823D01* X12756Y7327D02* Y22965D01* Y23295D02* Y23957D01* X12779Y23150D02* X19823D01* X12870Y7441D02* X5484D01* X12874Y23957D02* Y7445D01* X12992Y7563D02* Y23957D01* X13107Y7677D02* X5535D01* X13110Y23957D02* Y7681D01* X13228Y7799D02* Y23957D01* X13343Y7913D02* X5484D01* X13346Y23957D02* Y7917D01* X13465Y8035D02* Y23957D01* X13579Y8150D02* X5287D01* X13583Y23957D02* Y8153D01* X13701Y8271D02* Y23957D01* X13816Y8386D02* X3996D01* X13819Y23957D02* Y8389D01* X13937Y8507D02* Y23957D01* X14052Y8622D02* X3996D01* X14055Y23957D02* Y8625D01* X14173Y8743D02* Y23957D01* X14288Y8858D02* X3996D01* X14291Y23957D02* Y8861D01* X14409Y8979D02* Y23957D01* X14525Y9094D02* X3996D01* X14528Y23957D02* Y9097D01* X14630Y19961D02* X11673D01* X14642Y19724D02* X11673D01* X14646Y9215D02* Y19706D01* Y20057D02* Y23957D01* X14691Y20197D02* X11673D01* X14730Y19488D02* X11673D01* X14761Y9331D02* X3996D01* X14764Y19434D02* Y9333D01* Y23957D02* Y20330D01* X14847Y20433D02* X11673D01* X14882Y9451D02* Y19296D01* Y20468D02* Y23957D01* X14934Y19252D02* X11673D01* X14998Y9567D02* X3996D01* X15000Y19205D02* Y9569D01* Y23957D02* Y20558D01* X15118Y9687D02* Y19144D01* Y20620D02* Y23957D01* X15234Y9803D02* X3996D01* X15236Y19106D02* Y9805D01* Y23957D02* Y20658D01* X15289Y20669D02* X11673D01* X15354Y9923D02* Y19086D01* Y20678D02* Y23957D01* X15470Y10039D02* X3996D01* X15472Y19084D02* Y10042D01* Y23957D02* Y20680D01* X15591Y10160D02* Y19100D01* Y20664D02* Y23957D01* X15706Y19134D02* X16952D01* X15707Y10276D02* X3996D01* X15709Y19135D02* Y10278D01* Y23957D02* Y20629D01* X15827Y10396D02* Y19191D01* Y20573D02* Y23957D01* X15862Y20551D02* X16835D01* X15943Y10512D02* X3996D01* X15945Y19275D02* Y10514D01* Y23957D02* Y20489D01* X16039Y19370D02* X16682D01* X16063Y10632D02* Y19401D01* Y20363D02* Y23957D01* X16097Y20315D02* X16630D01* X16175Y19606D02* X16558D01* X16179Y10748D02* X3996D01* X16181Y19623D02* Y10750D01* Y23957D02* Y20141D01* X16200Y20079D02* X16535D01* X16223Y19843D02* X16513D01* X16224Y19882D02* G03X15425Y20681I799D01* X14626Y19882J799* X15425Y19083I799* X16224Y19882J799* G01X16299Y10868D02* Y23957D01* X16416Y10984D02* X3996D01* X16417Y23957D02* Y10986D01* X16516Y19961D02* X16220D01* X16527Y19724D02* X16209D01* X16535Y11104D02* Y19684D01* Y20080D02* Y23957D01* X16572Y20197D02* X16160D01* X16608Y19488D02* X16121D01* X16652Y11220D02* X3996D01* X16654Y19411D02* Y11222D01* Y23957D02* Y20353D01* X16713Y20433D02* X16004D01* X16772Y11340D02* Y19268D01* Y20496D02* Y23957D01* X16789Y19252D02* X15917D01* X16889Y11457D02* X3996D01* X16890Y19172D02* Y11458D01* Y23957D02* Y20592D01* X17008Y11576D02* Y19105D01* Y20658D02* Y23957D01* X17033Y20669D02* X15561D01* X17125Y11693D02* X3996D01* X17126Y19061D02* Y11694D01* Y23957D02* Y20703D01* X17244Y11812D02* Y19035D01* Y20729D02* Y23957D01* X17361Y11929D02* X3996D01* X17362Y19026D02* Y11930D01* Y23957D02* Y20738D01* X17480Y12048D02* Y19033D01* Y20730D02* Y23957D01* X17598Y12165D02* X3996D01* X17598Y19058D02* Y12166D01* Y23957D02* Y20706D01* X17717Y12284D02* Y19100D01* Y20664D02* Y23957D01* X17784Y19134D02* X19823D01* X17834Y12402D02* X10397D01* X17835Y19164D02* Y12402D01* Y23957D02* Y20599D01* X17894Y13819D02* X5121D01* X17902Y20551D02* X19823D01* X17921Y13583D02* X3996D01* X17953Y12520D02* Y13515D01* Y13992D02* Y19257D01* Y20507D02* Y23957D01* X17995Y14055D02* X11546D01* X18054Y19370D02* X19823D01* X18070Y12638D02* X10716D01* X18071Y13376D02* Y12638D01* Y19393D02* Y14131D01* Y23957D02* Y20370D01* X18106Y20315D02* X19823D01* X18112Y13346D02* X10654D01* X18178Y19606D02* X19823D01* X18189Y12756D02* Y13306D01* Y14201D02* Y19640D01* Y20124D02* Y23957D01* X18201Y20079D02* X19823D01* X18223Y19843D02* X19823D01* X18224Y19882D02* G03X17368Y20738I856D01* X16512Y19882J856* X17368Y19026I856* X18224Y19882J856* G01X18307Y12874D02* X10805D01* X18307Y13274D02* Y12874D01* Y23957D02* Y14233D01* X18425Y12992D02* Y13271D01* Y14235D02* Y23957D01* X18529Y13110D02* X10788D01* X18543Y23957D02* Y14207D01* X18615Y14173D02* X19607D01* X18661Y14143D02* Y23957D01* X18780D02* Y14018D01* X18822Y13937D02* X19371D01* X18857Y13701D02* X19134D01* X18898Y13618D02* Y23957D01* X19016D02* Y13598D01* X19134Y13700D02* Y23957D01* X19252D02* Y13819D01* X18854* X19370Y13937D02* Y23957D01* X19488D02* Y14055D01* X19489D02* X18753D01* X19606Y14173D02* Y23935D01* X19724Y23859D02* Y14291D01* X19725D02* X11666D01* X19801Y23740D02* X11695D01* X19823Y14528D02* X11673D01* X19823D02* G02X19725Y14291I335D01* G01X19058Y13625* G02X18974Y13590I84J83* X18856Y13708J118* X18857Y13717I118* G03X18858Y13754I483J37* X18374Y14238I484* X17890Y13754J484* X18374Y13270I484* X18410Y13271J484* G02X18419I9J118* X18537Y13153J118* X18503Y13070I118* G01X11885Y6456* G03X11752Y6136I320J320* G01Y6087* G02X11674Y5976I118* G03X11348Y5512I169J464* X11674Y5047I495* G02X11752Y4936I40J111* G01Y374* G02X11634Y256I118* G01X8051* G02X7933Y374J118* G01Y4134* G02X8268Y4469I335* G03X8720Y4921J452* G01Y6102* G03X8268Y6555I452* G01X4331* G02X3996Y6890J335* G01Y14961* G02X4331Y15295I335* G01X6102* G02X6437Y14961J334* G01Y14370* G03X6890Y13917I453* G01X11220* G03X11673Y14370J453* G01Y22566* G02X11791Y22684I118* X11861Y22661J118* G03X12201Y22551I340J469* X12780Y23130J579* X12201Y23709I579* X11875Y23609J579* G02X11808Y23588I67J97* X11690Y23706J118* X11699Y23752I118* X12008Y23957I309J130* G01X19488* G02X19823Y23622J335* G01Y14528* Y14764D02* X11673D01* X19823Y15000D02* X11673D01* X19823Y15236D02* X11673D01* X19823Y15472D02* X11673D01* X19823Y15709D02* X11673D01* X19823Y15945D02* X11673D01* X19823Y16181D02* X11673D01* X19823Y16417D02* X11673D01* X19823Y16654D02* X11673D01* X19823Y16890D02* X11673D01* X19823Y17126D02* X11673D01* X19823Y17362D02* X11673D01* X19823Y17598D02* X11673D01* X19823Y17835D02* X11673D01* X19823Y18071D02* X11673D01* X19823Y18307D02* X11673D01* X19823Y18543D02* X11673D01* X19823Y18780D02* X11673D01* X19823Y19016D02* X11673D01* X19823Y19252D02* X17948D01* X19823Y19488D02* X18128D01* X19823Y19724D02* X18209D01* X19823Y19961D02* X18220D01* X19823Y20197D02* X18164D01* X19823Y20433D02* X18023D01* X19823Y20669D02* X17704D01* X19823Y20906D02* X11673D01* X19823Y21142D02* X11673D01* X19823Y21378D02* X11673D01* X19823Y21614D02* X11673D01* X19823Y21850D02* X11673D01* X19823Y22087D02* X11673D01* X19823Y22323D02* X11673D01* X19823Y22559D02* X12298D01* X19823Y22795D02* X12673D01* X19823Y23031D02* X12771D01* X19823Y23268D02* X12763D01* X19823Y23504D02* X12643D01* G54D22* X7843Y5512D02* X7500Y5170D01* X7843Y5512D02* X7446Y5789D01* X14567Y3528D02* Y3024D01* Y3528D02* X14063D01* X14567D02* Y4031D01* Y3528D02* X15071D01* X15945Y1469D02* Y990D01* Y1469D02* X15466D01* X15945D02* Y1947D01* Y1469D02* X16424D01* X16142Y3754D02* Y3250D01* Y3754D02* X15638D01* X16142D02* Y4258D01* Y3754D02* X16645D01* X18374Y13754D02* Y13270D01* Y13754D02* X17890D01* X18374D02* Y14238D01* Y13754D02* X18858D01* X20791Y9571D02* Y9067D01* Y9571D02* Y10075D01* Y9571D02* X21295D01* X21202Y10925D02* Y10421D01* Y10925D02* X20699D01* X21202D02* Y11429D01* Y10925D02* X21706D01* X22047Y9071D02* Y8567D01* Y9071D02* X21544D01* X22047D02* Y9575D01* Y9071D02* X22551D01* X26378Y9366D02* Y8862D01* Y9366D02* X25874D01* X26378D02* Y9870D01* Y9366D02* X26882D01* X26969Y16945D02* Y16441D01* Y16945D02* X26465D01* X26969D02* Y17449D01* Y16945D02* X27472D01* X28224Y16953D02* X28581Y16597D01* X28224Y16953D02* X27868Y16597D01* X28224Y16953D02* X27868Y17309D01* X28224Y16953D02* X28581Y17309D01* X34374Y7185D02* Y6681D01* Y7185D02* X33870D01* X34374D02* Y7689D01* Y7185D02* X34878D01* X35630Y6413D02* Y5910D01* Y6413D02* X35126D01* X35630D02* Y6917D01* Y6413D02* X36134D01* X35646Y15945D02* Y15441D01* Y15945D02* X35142D01* X35646D02* Y16449D01* Y15945D02* X36149D01* X37728Y17028D02* Y16524D01* Y17028D02* X37225D01* X37728D02* Y17531D01* Y17028D02* X38232D01* G54D23* X2126Y7677D02* Y7103D01* Y7677D02* X1552D01* X2126D02* Y8251D01* Y7677D02* X2700D01* X2126Y14370D02* Y14944D01* Y14370D02* X2700D01* X2126D02* Y13796D01* Y14370D02* X1552D01* X4961Y7677D02* Y7103D01* Y7677D02* X4387D01* X4961D02* Y8251D01* Y7677D02* X5535D01* X4961Y14370D02* Y13796D01* Y14370D02* X4387D01* X4961D02* Y14944D01* Y14370D02* X5535D01* X10236Y12953D02* Y12379D01* Y12953D02* X9662D01* X10236D02* Y13527D01* Y12953D02* X10810D01* X10236Y15787D02* Y15213D01* Y15787D02* X9662D01* X10236D02* Y16361D01* Y15787D02* X10810D01* X12201Y23130D02* Y22551D01* Y23130D02* Y23709D01* Y23130D02* X12780D01* X33563Y1969D02* X33904Y1482D01* X33563Y1969D02* X33143Y1549D01* X33563Y1969D02* X33143Y2388D01* X33563Y1969D02* X33904Y2455D01* X34563Y1969D02* X35099Y2504D01* X34563Y1969D02* X35099Y1433D01* X34563Y1969D02* X34027Y1433D01* X34563Y1969D02* X34027Y2504D01* G54D24* X6425Y19882D02* Y19083D01* Y19882D02* X5626D01* X6425D02* Y20681D01* Y19882D02* X7224D01* X15425D02* Y19083D01* Y19882D02* X14626D01* X15425D02* Y20681D01* Y19882D02* X16224D01* G54D25* X17368D02* Y19026D01* Y19882D02* X16512D01* X17368D02* Y20738D01* Y19882D02* X18224D01* G54D26* X12189Y276D02* Y5132D01* Y6172D02* Y5891D01* X12331Y5234D02* Y276D01* Y5789D02* Y6314D01* X12472Y276D02* Y5234D01* Y6456D02* Y5789D01* X12614Y5234D02* Y276D01* Y5789D02* Y6597D01* X12756Y276D02* Y5234D01* Y6739D02* Y5789D01* X12898Y5234D02* Y276D01* Y5789D02* Y6881D01* X13039Y276D02* Y5234D01* Y7023D02* Y5789D01* X13181Y5234D02* Y276D01* Y5789D02* Y7164D01* X13323Y276D02* Y5234D01* Y7306D02* Y5789D01* X13465Y5234D02* Y276D01* Y5789D02* Y7448D01* X13606Y276D02* Y5234D01* Y7589D02* Y5789D01* X13748Y5234D02* Y276D01* Y5789D02* Y7731D01* X13890Y276D02* Y5234D01* Y7873D02* Y5789D01* X14031Y5234D02* Y276D01* Y5789D02* Y8015D01* X14173Y276D02* Y3213D01* Y3842D02* Y5198D01* Y8156D02* Y5858D01* X14315Y3091D02* Y276D01* Y5080D02* Y3964D01* Y5975D02* Y8298D01* X14457Y276D02* Y3036D01* Y4019D02* Y5026D01* Y8440D02* Y6029D01* X14567Y5528D02* Y5512D01* X11843* X14598Y3025D02* Y276D01* Y5015D02* Y4030D01* Y6040D02* Y8582D01* X14724Y5528D02* X14567D01* X14740Y276D02* Y3055D01* Y4001D02* Y5044D01* Y8723D02* Y6011D01* X14882Y3134D02* Y276D01* Y5122D02* Y3921D01* Y5933D02* Y8865D01* X15024Y276D02* Y3315D01* Y3740D02* Y5277D01* Y9007D02* Y5845D01* X15071Y3528D02* G03X14567Y4031I504D01* X14063Y3528J503* X14567Y3024I504* X15071Y3528J504* G01X15165Y5308D02* Y276D01* Y5894D02* Y9148D01* X15307Y276D02* Y5353D01* Y9290D02* Y5965D01* X15449Y5413D02* Y276D01* Y6065D02* Y9432D01* X15591Y276D02* Y1147D01* Y1790D02* Y2132D01* Y2805D02* Y5488D01* Y9574D02* Y6204D01* X15732Y1040D02* Y276D01* Y2028D02* Y1897D01* Y3460D02* Y2909D01* Y5582D02* Y4047D01* Y6412D02* Y7760D01* Y8748D02* Y9715D01* X15874Y276D02* Y995D01* Y2952D02* Y3327D01* Y4181D02* Y5700D01* Y9857D02* Y8768D01* X15945Y2469D02* X16465D01* X16016Y995D02* Y276D01* Y3266D02* Y2952D01* Y5847D02* Y4242D01* Y9054D02* Y9999D01* X16142Y6945D02* G02X14724Y5528I1418D01* G01X16142Y8254D02* Y6945D01* Y8411D02* Y8254D01* X16157Y276D02* Y1040D01* Y1897D02* Y2028D01* Y2909D02* Y3250D01* Y4257D02* Y6040D01* Y10141D02* Y9281D01* X16299Y1147D02* Y276D01* Y2132D02* Y1790D01* Y3275D02* Y2805D01* Y6319D02* Y4232D01* Y9441D02* Y10282D01* X16424Y1469D02* G03X15945Y1947I479D01* X15466Y1469J478* X15945Y990I479* X16424Y1469J479* G01X16441Y276D02* Y2191D01* Y2746D02* Y3349D01* Y4159D02* Y7740D01* Y10424D02* Y9562D01* X16465Y2469D02* G03X16744Y2584J393D01* G01X16583Y2201D02* Y276D01* Y3510D02* Y2815D01* Y7780D02* Y3997D01* Y8923D02* Y8728D01* Y9656D02* Y10566D01* X16645Y3754D02* G03X16142Y4258I503D01* X15638Y3754J504* X16142Y3250I504* X16645Y3754J504* G01X16724Y276D02* Y2243D01* Y2957D02* Y9079D01* Y10708D02* Y9728D01* X16744Y2584D02* X17195Y3035D01* X16866Y2324D02* Y276D01* Y9179D02* Y3099D01* Y9781D02* Y10849D01* X17008Y276D02* Y2456D01* Y3240D02* Y9243D01* Y10991D02* Y9818D01* X17150Y2597D02* Y276D01* Y9280D02* Y3355D01* Y9840D02* Y11133D01* X17195Y3035D02* G02X17709Y3248I514J513D01* G01X17291Y276D02* Y2739D01* Y3435D02* Y6453D01* Y6689D02* Y9293D01* Y11274D02* Y9848D01* X17301Y9571D02* G03X16142Y8411J1160D01* G01X17433Y2876D02* Y276D01* Y6203D02* Y3487D01* Y9203D02* Y6939D01* Y9939D02* Y11416D01* X17575Y276D02* Y2950D01* Y3517D02* Y6105D01* Y7037D02* Y9105D01* Y11558D02* Y10037D01* X17709Y3248D02* X18291D01* X17717Y2869D02* Y276D01* Y3869D02* Y3627D01* Y6063D02* Y4627D01* Y9063D02* Y7079D01* Y10079D02* Y11700D01* X17791Y9571D02* X17301D01* X17858Y276D02* Y2712D01* Y4784D02* Y6062D01* Y7080D02* Y9062D01* Y11841D02* Y10080D01* X18000Y2624D02* Y276D01* Y6101D02* Y4872D01* Y8970D02* Y7040D01* Y10172D02* Y11983D01* X18142Y276D02* Y1966D01* Y6947D02* Y8828D01* Y12125D02* Y10314D01* X18283Y1741D02* Y276D01* Y8686D02* Y6718D01* Y10455D02* Y12267D01* X18291Y2518D02* Y3248D01* Y5843D02* Y4248D01* X18425Y276D02* Y1587D01* Y6931D02* Y8545D01* Y12408D02* Y10597D01* X18452Y6232D02* G03X18291Y5843I389J389D01* G01X18567Y1445D02* Y276D01* Y8403D02* Y7033D01* Y10739D02* Y12550D01* X18578Y1827D02* G02X18291Y2518I691J691D01* G01X18709Y276D02* Y1303D01* Y2615D02* Y2700D01* Y4796D02* Y6064D01* Y7078D02* Y8261D01* Y12692D02* Y10881D01* X18791Y6571D02* X18452Y6232D01* X18850Y1162D02* Y276D01* Y3846D02* Y3650D01* Y6061D02* Y4650D01* Y8119D02* Y7081D01* Y9061D02* Y8904D01* Y10238D02* Y10081D01* Y11022D02* Y12834D01* X18992Y276D02* Y1027D01* Y2868D02* Y6098D01* Y7044D02* Y7978D01* Y8762D02* Y9098D01* Y10164D02* Y10379D01* Y12975D02* Y11164D01* X19122Y1283D02* X18578Y1827D01* X19134Y935D02* Y276D01* Y6188D02* Y2919D01* Y7836D02* Y6954D01* Y9188D02* Y8621D01* Y10521D02* Y10306D01* Y11306D02* Y13117D01* X19276Y276D02* Y879D01* Y2937D02* Y6399D01* Y6742D02* Y7694D01* Y8479D02* Y9399D01* Y10448D02* Y10663D01* Y13259D02* Y11448D01* X19291Y2248D02* X21697D01* X19417Y851D02* Y276D01* Y1416D02* Y1571D01* Y6219D02* Y2925D01* Y7552D02* Y6923D01* Y9219D02* Y8337D01* Y10804D02* Y10589D01* Y11589D02* Y13400D01* X19505Y1124D02* G02X19122Y1283J542D01* G01X19559Y276D02* Y847D01* Y1613D02* Y1401D01* Y2883D02* Y6113D01* Y7029D02* Y7411D01* Y8196D02* Y9113D01* Y10731D02* Y10946D01* Y13542D02* Y11731D01* X19701Y847D02* Y276D01* Y1401D02* Y1694D01* Y2894D02* Y2802D01* Y3894D02* Y3602D01* Y6065D02* Y4602D01* Y7269D02* Y7077D01* Y9065D02* Y8054D01* Y11088D02* Y10873D01* Y11873D02* Y13684D01* X19791Y6571D02* Y6567D01* X20291Y6067* Y5739* X19791Y9571D02* X20987Y8376D01* X19843Y276D02* Y847D01* Y1835D02* Y1401D01* Y4770D02* Y6060D01* Y7912D02* Y9060D01* Y10082D02* Y10230D01* Y11014D02* Y11230D01* Y13826D02* Y12014D01* X19984Y847D02* Y276D01* Y1401D02* Y1971D01* Y2632D02* Y2526D01* Y5982D02* Y4865D01* Y8986D02* Y7770D01* Y10371D02* Y10047D01* Y11371D02* Y11156D01* Y12156D02* Y13967D01* X20126Y276D02* Y847D01* Y1971D02* Y1401D01* Y7629D02* Y8844D01* Y9961D02* Y10513D01* Y11298D02* Y11513D01* Y14109D02* Y12298D01* X20268Y847D02* Y276D01* Y1401D02* Y1971D01* Y8702D02* Y7487D01* Y10655D02* Y9763D01* Y11655D02* Y11440D01* Y12440D02* Y14251D01* X20291Y3248D02* X20323Y3217D01* X23228* X20291Y5739D02* Y4248D01* X20409Y276D02* Y847D01* Y1971D02* Y1401D01* Y7345D02* Y8560D01* Y10065D02* Y10797D01* Y11581D02* Y11797D01* Y14393D02* Y12581D01* X20551Y847D02* Y276D01* Y1401D02* Y1971D01* Y2610D02* Y2526D01* Y8419D02* Y7203D01* Y10938D02* Y10075D01* Y11938D02* Y11723D01* Y12723D02* Y14534D01* X20693Y276D02* Y847D01* Y1971D02* Y1401D01* Y2526D02* Y2688D01* Y5461D02* Y4808D01* Y7075D02* Y8277D01* Y10075D02* Y11080D01* Y11865D02* Y12080D01* Y14676D02* Y12865D01* X20791Y6571D02* X17791Y9571D01* X20835Y847D02* Y276D01* Y1401D02* Y1971D01* Y2825D02* Y2526D01* Y3671D02* Y3825D01* Y4671D02* Y5461D01* Y8138D02* Y7083D01* Y9067D02* Y8920D01* Y10581D02* Y10075D01* Y12222D02* Y12007D01* Y13007D02* Y14818D01* X20976Y276D02* Y847D01* Y1971D02* Y1401D01* Y2526D02* Y2939D01* Y4177D02* Y3494D01* Y5461D02* Y4319D01* Y7050D02* Y8031D01* Y8778D02* Y9067D01* Y10075D02* Y10475D01* Y12148D02* Y12363D01* Y14960D02* Y13148D01* X20987Y8376D02* G03X21547Y8144I560J560D01* G01X21118Y847D02* Y276D01* Y1401D02* Y1971D01* Y2939D02* Y2526D01* Y3494D02* Y5461D01* Y6016D02* Y6174D01* Y7956D02* Y6967D01* Y9067D02* Y8637D01* Y10429D02* Y10075D01* Y11505D02* Y11422D01* Y12505D02* Y12290D01* Y13290D02* Y15101D01* X21260Y276D02* Y847D01* Y1971D02* Y1401D01* Y2526D02* Y2939D01* Y5461D02* Y3494D01* Y6293D02* Y6016D01* Y6848D02* Y7905D01* Y8508D02* Y9139D01* Y10002D02* Y10425D01* Y11426D02* Y11647D01* Y12432D02* Y12647D01* Y15243D02* Y13432D01* X21402Y847D02* Y276D01* Y1401D02* Y1971D01* Y2939D02* Y2526D01* Y3494D02* Y5461D01* Y6016D02* Y6293D01* Y7876D02* Y6848D01* Y10462D02* Y8442D01* Y11789D02* Y11388D01* Y12789D02* Y12567D01* Y13574D02* Y15385D01* X21528Y12307D02* X18791Y9571D01* X21543Y276D02* Y847D01* Y1640D02* Y1401D01* Y1971D02* Y1840D01* Y2526D02* Y2939D01* Y5461D02* Y3494D01* Y6293D02* Y6016D01* Y6848D02* Y6971D01* Y7171D02* Y7866D01* Y8421D02* Y10554D01* Y11296D02* Y11930D01* Y12662D02* Y12930D01* Y15526D02* Y13715D01* X21547Y8144D02* X22818D01* X21661Y1401D02* X19505D01* G02X19318Y1479J265* G01X19235Y1562* G03X19291Y1559I56J686* X19922Y1971J689* G01X21588* G03X21534Y1740I459J231* X21661Y1401I513* G01X21685Y847D02* Y276D01* Y2939D02* Y2526D01* Y3494D02* Y5376D01* Y6104D02* Y6293D01* Y7866D02* Y7435D01* Y8721D02* Y8421D01* Y10781D02* Y9421D01* Y12072D02* Y11070D01* Y13072D02* Y12725D01* Y13857D02* Y15668D01* X21697Y2248D02* G02X22047Y1898J350D01* G01X21711Y6571D02* X20791D01* X21827Y276D02* Y847D01* Y2512D02* Y2939D01* Y5276D02* Y3494D01* Y6304D02* Y6204D01* Y7535D02* Y7866D01* Y8421D02* Y8618D01* Y9524D02* Y12184D01* Y12763D02* Y13214D01* Y15810D02* Y13999D01* X21893Y1124D02* X19505D01* X21969Y849D02* Y276D01* Y2939D02* Y2464D01* Y3494D02* Y5232D01* Y6248D02* Y6349D01* Y7866D02* Y7579D01* Y8573D02* Y8421D01* Y12222D02* Y9568D01* Y13356D02* Y12777D01* Y14140D02* Y15952D01* X21993Y12500D02* G03X21528Y12307J658D01* G01X22047Y1898D02* Y1740D01* Y5740D02* X22046Y5739D01* X20291* X22047Y7071D02* X22053D01* Y6913D02* G02X21711Y6571I342D01* G01X22053Y7071D02* Y6913D01* Y7071D02* Y7130D01* X23228* Y7217* X22110Y276D02* Y866D01* Y2370D02* Y2939D01* Y5230D02* Y3494D01* Y6439D02* Y6250D01* Y7581D02* Y7866D01* Y8421D02* Y8571D01* Y9571D02* Y12223D01* Y12777D02* Y13497D01* Y16093D02* Y14282D01* X22252Y900D02* Y276D01* Y2939D02* Y2211D01* Y3494D02* Y5269D01* Y6211D02* Y6600D01* Y7866D02* Y7542D01* Y8611D02* Y8421D01* Y12223D02* Y9531D01* Y13639D02* Y12777D01* Y14424D02* Y16235D01* X22394Y276D02* Y954D01* Y2119D02* Y2939D01* Y5361D02* Y3494D01* Y6692D02* Y6119D01* Y7450D02* Y7866D01* Y8421D02* Y8705D01* Y9437D02* Y12223D01* Y12777D02* Y13781D01* Y16377D02* Y14566D01* X22535Y1029D02* Y276D01* Y2939D02* Y1900D01* Y3494D02* Y5580D01* Y5900D02* Y6853D01* Y7866D02* Y7408D01* Y8947D02* Y8421D01* Y12223D02* Y9195D01* Y13923D02* Y12777D01* Y14707D02* Y16519D01* X22551Y9071D02* G03X22047Y9575I504D01* X21544Y9071J504* X22047Y8567I503* X22551Y9071J504* G01X22562Y1401D02* G02X21893Y1124I669J669D01* G01X22677Y276D02* Y1131D01* Y1909D02* Y2939D01* Y6853D02* Y3494D01* Y7408D02* Y7866D01* Y8421D02* Y12223D01* Y12777D02* Y14064D01* Y16660D02* Y14849D01* X22818Y8144D02* G02X23329Y7932J724D01* G01X22819Y1266D02* Y276D01* Y2906D02* Y2051D01* Y3527D02* Y6853D01* Y7866D02* Y7527D01* Y12223D02* Y8421D01* Y14206D02* Y12777D01* Y14988D02* Y16802D01* X22961Y276D02* Y1408D01* Y2192D02* Y2778D01* Y6778D02* Y3655D01* Y7655D02* Y7843D01* Y8411D02* Y12223D01* Y12777D02* Y14348D01* Y16944D02* Y15091D01* X22973Y14752D02* X17791Y9571D01* X23102Y1549D02* Y276D01* Y2718D02* Y2334D01* Y3715D02* Y6718D01* Y12223D02* Y8380D01* Y14489D02* Y12777D01* Y15160D02* Y17085D01* X23145Y7724D02* G03X22752Y7408I83J507D01* G01X22435* G03X22047Y7585I388J337* X21534Y7071J514* X21584Y6848I513* G01X21224* G03X20791Y7085I433J277* X20682Y7073J514* G01X18687Y9068* G03X18791Y9057I104J503* X19291Y9453J514* X19791Y9057I500J118* X19901Y9069J514* G01X20790Y8179* G03X21547Y7866I757J757* G01X22818* G02X23133Y7736J446* G01X23145Y7724* X23244Y276D02* Y1691D01* Y2483D02* Y2703D01* Y6703D02* Y3730D01* Y8326D02* Y12223D01* Y12777D02* Y14614D01* Y17227D02* Y15202D01* X23329Y7932D02* X23740Y7521D01* X23360Y2199D02* X22562Y1401D01* X23386Y1833D02* Y276D01* Y3706D02* Y6728D01* Y12223D02* Y8244D01* Y14664D02* Y12777D01* Y15221D02* Y17369D01* X23413Y2737D02* G02X23163Y2395I1225J634D01* G01X22559Y1790* G03X22237Y2218I512J50* X21697Y2526I540J320* G01X19922* G03X19291Y2937I631J278* X18604Y2298J689* G02X18569Y2518I665J220* G01Y2618* G03X18980Y3248I278J630* X18765Y3748I689* X18980Y4248I474J500* X18569Y4878I689* G01Y5843* G02X18649Y6036I272* G01X18682Y6069* G03X18791Y6057I109J502* X19291Y6453J514* X19791Y6057I500J118* X19898Y6068J514* G01X20014Y5952* Y4878* G03X19603Y4248I277J630* X19818Y3748I688* X19603Y3248I473J500* X20291Y2559I688* X20907Y2939J689* G01X22796* G03X23228Y2703I432J278* X23413Y2737J514* G01X23438Y14945D02* G03X22973Y14752J658D01* G01X23528Y276D02* Y1974D01* Y6799D02* Y3634D01* Y8126D02* Y12223D01* Y12777D02* Y14667D01* Y17511D02* Y15222D01* X23567Y3602D02* G03X23228Y3730I339J385D01* X22796Y3494J513* G01X20935* G03X20765Y3748I644J246* X20980Y4248I474J500* X20569Y4878I689* G01Y5461* X21616* G03X22047Y5226I431J279* X22561Y5740J514* X22047Y6254I514* X21614Y6016J514* G01X20569* Y6067* G03X20566Y6109I278* X20791Y6057I225J462* X21224Y6293J514* G01X21711* G03X22244Y6596J620* X22512Y6853I197J475* G01X22866* G03X23228Y6703I362J364* X23567Y6831J514* G01Y3602* X23669Y2127D02* Y276D01* Y12223D02* Y7984D01* Y14667D02* Y12777D01* Y15222D02* Y17652D01* X23740Y7521D02* G02X23845Y7269I252J252D01* G01X23811Y276D02* Y2318D01* Y7843D02* Y12223D01* Y12777D02* Y14667D01* Y17794D02* Y15222D01* X23845Y3371D02* G02X23360Y2199I1657D01* G01X23845Y7269D02* Y3371D01* X23953Y2578D02* Y276D01* Y12223D02* Y7700D01* Y14667D02* Y12777D01* Y15222D02* Y17936D01* X24094Y276D02* Y3043D01* Y7455D02* Y12223D01* Y12777D02* Y14667D01* Y18078D02* Y15222D01* X24236Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y18219D01* X24378Y276D02* Y12223D01* Y12777D02* Y14667D01* Y18358D02* Y15222D01* X24520Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y18421D01* X24661Y276D02* Y12223D01* Y12777D02* Y14667D01* Y18425D02* Y15222D01* X24803Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y18425D01* X24945Y276D02* Y12223D01* Y12777D02* Y14667D01* Y18425D02* Y15222D01* X25087Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y18425D01* X25228Y276D02* Y12223D01* Y12777D02* Y14667D01* Y18425D02* Y15222D01* X25370Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y18425D01* X25512Y276D02* Y12223D01* Y12777D02* Y14667D01* Y17675D02* Y15222D01* X25654Y12223D02* Y276D01* Y14667D02* Y12777D01* Y15222D02* Y17003D01* X25787Y17764D02* Y23000D01* X25795Y276D02* Y12223D01* Y12777D02* Y14667D01* Y16710D02* Y15222D01* X25803Y28937D02* X25787Y28922D01* Y27000* X25937Y1780D02* Y276D01* Y4569D02* Y2307D01* Y7103D02* Y5517D01* Y9123D02* Y7630D01* Y12223D02* Y9610D01* Y14667D02* Y12777D01* Y15222D02* Y16498D01* X26079Y276D02* Y1626D01* Y2461D02* Y4530D01* Y5557D02* Y6949D01* Y7784D02* Y8961D01* Y9771D02* Y12223D01* Y12777D02* Y14667D01* Y16331D02* Y15222D01* Y17558D02* Y18425D01* X26220Y1554D02* Y276D01* Y4291D02* Y2532D01* Y6877D02* Y5557D01* Y8888D02* Y7855D01* Y12223D02* Y9845D01* Y14667D02* Y12777D01* Y15222D02* Y16194D01* Y18425D02* Y17091D01* X26362Y276D02* Y1530D01* Y2557D02* Y4119D01* Y5557D02* Y6853D01* Y7880D02* Y8863D01* Y9870D02* Y12170D01* Y12830D02* Y14667D01* Y16080D02* Y15222D01* Y16856D02* Y18425D01* X26378Y4715D02* Y5043D01* X26504Y1545D02* Y276D01* Y4015D02* Y2541D01* Y6868D02* Y5557D01* Y8878D02* Y7864D01* Y12052D02* Y9854D01* Y14667D02* Y12948D01* Y15222D02* Y15985D01* Y18425D02* Y17140D01* X26646Y276D02* Y1605D01* Y2482D02* Y3950D01* Y5557D02* Y6928D01* Y7805D02* Y8939D01* Y9793D02* Y11998D01* Y13002D02* Y14545D01* Y15905D02* Y15345D01* Y17332D02* Y18425D01* X26756Y12500D02* X21993D01* X26787Y1732D02* Y276D01* Y3915D02* Y2354D01* Y7056D02* Y5537D01* Y9073D02* Y7676D01* Y11987D02* Y9660D01* Y14464D02* Y13013D01* Y15426D02* Y15839D01* Y18425D02* Y17415D01* X26882Y9366D02* G03X26378Y9870I504D01* X25874Y9366J504* X26378Y8862I504* X26882Y9366J504* G01X26909Y4183D02* G02X26378Y4715J532D01* G01X26929Y276D02* Y1732D01* Y2287D02* Y3906D01* Y4461D02* Y7089D01* Y7644D02* Y12016D01* Y12984D02* Y14433D01* Y15785D02* Y15457D01* Y17447D02* Y18425D01* X26969Y14945D02* X23438D01* X26969D02* X28217D01* X28224Y14953* X27067Y4183D02* X26909D01* X27071Y1732D02* Y276D01* Y3906D02* Y2287D01* Y7089D02* Y4461D01* Y12094D02* Y7644D01* Y14441D02* Y12906D01* Y15448D02* Y15743D01* Y16452D02* Y16324D01* Y18425D02* Y17438D01* X27213Y276D02* Y1732D01* Y2287D02* Y3879D01* Y4450D02* Y7089D01* Y7644D02* Y12265D01* Y12735D02* Y14493D01* Y15711D02* Y15397D01* Y16280D02* Y16504D01* Y17386D02* Y18425D01* X27242Y3323D02* G03X27756Y2809I514D01* X28270Y3323J514* X27990Y3780I514* X27067Y4461I923J286* G01X26909* G02X26733Y4532J254* G03X26892Y4718I30J186* G01Y5368* G03X26703Y5557I189* G01X26053* G03X25864Y5368J189* G01Y4718* G03X26053Y4530I189* G01X26122* G03X26909Y3906I787J185* G01X27067* G02X27418Y3709J412* G03X27242Y3323I338J386* G01X27354Y1732D02* Y276D01* Y3002D02* Y2287D01* Y3789D02* Y3643D01* Y5825D02* Y4417D01* Y7030D02* Y6820D01* Y11030D02* Y7671D01* Y14606D02* Y11671D01* Y15284D02* Y15690D01* Y16621D02* Y16250D01* Y18425D02* Y17269D01* X27496Y276D02* Y1732D01* Y2287D02* Y2880D01* Y4360D02* Y5809D01* Y7794D02* Y10907D01* Y13440D02* Y14667D01* Y15678D02* Y15222D01* Y16234D02* Y18425D01* X27598Y15953D02* G02X25787Y17764J1811D01* G01X27638Y1661D02* Y276D01* Y2823D02* Y2287D01* Y5809D02* Y4274D01* Y10850D02* Y7850D01* Y14667D02* Y13748D01* Y15222D02* Y15675D01* Y18425D02* Y16230D01* X27756Y3323D02* Y3494D01* G03X27067Y4183I689* G01X27756Y6323D02* Y7350D01* X27740Y7366* X26378* X27756Y11350D02* Y13275D01* G02X27904Y13632I505* G01X27780Y276D02* Y1505D01* Y2432D02* Y2810D01* Y4147D02* Y5809D01* Y7864D02* Y10837D01* Y14210D02* Y14667D01* Y15675D02* Y15222D01* Y16230D02* Y16716D01* Y17189D02* Y18425D01* X27904Y13632D02* X28224Y13953D01* X27921Y1425D02* Y276D01* Y2836D02* Y2512D01* Y5809D02* Y3946D01* Y10864D02* Y7837D01* Y14538D02* Y14368D01* Y15368D02* Y15538D01* Y16550D02* Y16368D01* Y18425D02* Y17355D01* X28033Y6918D02* G03X28270Y7350I277J432D01* X27756Y7864I514* X27334Y7644J514* G01X26810* G03X26378Y7880I432J278* X25864Y7366J514* X26378Y6852I514* X26810Y7089J514* G01X27314* G03X27478Y6918I442J261* G01Y6837* X27431* G03X27242Y6648J189* G01Y5998* G03X27431Y5809I189* G01X28081* G03X28270Y5998J189* G01Y6648* G03X28081Y6837I189* G01X28033* Y6918* X28063Y276D02* Y1389D01* Y2548D02* Y2911D01* Y3735D02* Y5809D01* Y6837D02* Y6939D01* Y7762D02* Y10939D01* Y11762D02* Y13387D01* Y17430D02* Y18425D01* X28106Y15453D02* G03X27787Y15222I118J500D01* G01X27401* G03X26969Y15459I432J277* X26536Y15222J514* G01X23438* G03X22776Y14948J935* G01X17901Y10073* G03X17791Y10085I110J502* X17359Y9848J514* G01X17301* G03X15909Y8768J1437* G01X15817* G03X15628Y8579J189* G01Y7929* G03X15817Y7740I189* G01X15864* Y6945* G02X14979Y5834I1140* G03X14567Y6041I412J306* X14125Y5789J513* G01X12275* G03X12088Y5963I432J277* G02X12179Y6162I314J24* G01X24350Y18333* G02X24573Y18425I223J223* G01X25510* Y17764* G03X27598Y15675I2088* G01X27792* G03X28106Y15453I432J278* G01X28134Y1969D02* X28093Y2009D01* X26412* X26378Y2043* X28205Y1389D02* Y276D01* Y3073D02* Y2548D01* Y5855D02* Y3573D01* Y7100D02* Y6790D01* Y11100D02* Y7600D01* Y13439D02* Y11600D01* Y18425D02* Y17456D01* X28224Y15953D02* X27598D01* X28346Y276D02* Y1425D01* Y2512D02* Y12190D01* Y12810D02* Y13454D01* Y17441D02* Y18425D01* X28488Y1505D02* Y276D01* Y12062D02* Y2432D01* Y14512D02* Y14394D01* Y15512D02* Y15394D01* Y16524D02* Y16394D01* Y18425D02* Y17382D01* X28630Y276D02* Y1661D01* Y2276D02* Y12002D01* Y14512D02* Y14637D01* Y15268D02* Y15637D01* Y16268D02* Y16654D01* Y17252D02* Y18425D01* X28756Y12500D02* Y13728D01* G02X29291Y15019I1827* G01X28772Y1511D02* Y276D01* Y11987D02* Y2426D01* Y18425D02* Y14799D01* X28913Y276D02* Y1428D01* Y6804D02* Y12011D01* Y15009D02* Y18425D01* X29055Y1390D02* Y276D01* Y12082D02* Y7062D01* Y13986D02* Y12918D01* Y18425D02* Y15175D01* X29134Y1969D02* Y6479D01* G02X29332Y6958I678* G01X29197Y276D02* Y1388D01* Y7215D02* Y12236D01* Y12764D02* Y14420D01* Y15318D02* Y18425D01* X29291Y15019D02* X31224Y16953D01* X29332Y6958D02* X29724Y7350D01* X29339Y1422D02* Y276D01* Y11011D02* Y7690D01* Y12128D02* Y11690D01* Y14651D02* Y12872D01* Y18425D02* Y15459D01* X29480Y276D02* Y1499D01* Y2438D02* Y6704D01* Y7802D02* Y10898D01* Y13536D02* Y14816D01* Y15601D02* Y18425D01* X29622Y1425D02* Y276D01* Y6847D02* Y2512D01* Y10847D02* Y7854D01* Y14958D02* Y13800D01* Y18425D02* Y15743D01* X29693Y12500D02* X29692Y12499D01* Y11383* X29724Y11350* X29693Y13171D02* Y12500D01* X29764Y276D02* Y1385D01* Y2552D02* Y6838D01* Y7863D02* Y10838D01* Y13956D02* Y15100D01* Y15885D02* Y18425D01* X29906Y1385D02* Y276D01* Y6870D02* Y2552D01* Y10870D02* Y7831D01* Y15241D02* Y14064D01* Y18425D02* Y16026D01* X30047Y276D02* Y1385D01* Y2552D02* Y6951D01* Y7750D02* Y10951D01* Y11750D02* Y12128D01* Y12872D02* Y13439D01* Y14140D02* Y15383D01* Y16168D02* Y18425D01* X30189Y1385D02* Y276D01* Y7131D02* Y2552D01* Y11062D02* Y7570D01* Y12366D02* Y11617D01* Y13587D02* Y12634D01* Y15525D02* Y14191D01* Y18425D02* Y16310D01* X30331Y276D02* Y1385D01* Y2552D02* Y11062D01* Y11617D02* Y13654D01* Y14220D02* Y15667D01* Y16451D02* Y18425D01* X30472Y1385D02* Y276D01* Y11062D02* Y2552D01* Y13675D02* Y11617D01* Y15808D02* Y14230D01* Y18425D02* Y16593D01* X30474Y13953D02* G03X29693Y13171J782D01* G01X30614Y276D02* Y1405D01* Y2532D02* Y10967D01* Y11671D02* Y13675D01* Y14230D02* Y15950D01* Y16735D02* Y18425D01* X30756Y1691D02* Y276D01* Y10861D02* Y2246D01* Y13505D02* Y11777D01* Y14742D02* Y14400D01* Y15742D02* Y15164D01* Y18425D02* Y17164D01* X30898Y276D02* Y1691D01* Y2246D02* Y3449D01* Y3834D02* Y4385D01* Y5261D02* Y5812D01* Y6196D02* Y6747D01* Y7623D02* Y10813D01* Y11825D02* Y13439D01* Y14466D02* Y14556D01* Y15349D02* Y15556D01* Y17349D02* Y18425D01* X30988Y11319D02* X30968Y11339D01* X29735* X29724Y11350* X31039Y1691D02* Y276D01* Y3252D02* Y2246D01* Y4309D02* Y4032D01* Y5614D02* Y5336D01* Y6672D02* Y6394D01* Y10808D02* Y7699D01* Y13439D02* Y11830D01* Y18425D02* Y17432D01* X31106Y15453D02* G03X30711Y14953I118J500D01* X31059Y14466I513* G01X30899* G03X30711Y14278J188* G01Y14230* X30474* G03X29415Y13171J1059* G01Y12932* G03X29224Y12711I278J432* X29033Y12932I468J211* G01Y13728* G02X29487Y14823I1550* G01X30721Y16057* G03X30711Y15953I503J104* X31106Y15453I513* G01X31181Y276D02* Y1691D01* Y2246D02* Y3166D01* Y5337D02* Y5528D01* Y7699D02* Y10843D01* Y11795D02* Y13439D01* Y17465D02* Y18425D01* X31224Y13953D02* X30474D01* X31224Y14953D02* X33314Y12863D01* X33330* X33693Y12500* X31224Y16953D02* X31268Y16997D01* X33697* X33728Y17028* X31323Y1691D02* Y276D01* Y3131D02* Y2246D01* Y5493D02* Y5337D01* Y10929D02* Y7699D01* Y13439D02* Y11709D01* Y18425D02* Y17457D01* X31374Y4823D02* Y3642D01* Y7185D02* Y6004D01* X31465Y276D02* Y1691D01* Y2246D02* Y3136D01* Y5337D02* Y5498D01* Y7699D02* Y11127D01* Y11511D02* Y13439D01* Y15407D02* Y15499D01* Y16407D02* Y16499D01* Y17407D02* Y18425D01* X31606Y1691D02* Y276D01* Y3184D02* Y2246D01* Y5546D02* Y5337D01* Y13448D02* Y7699D01* Y15609D02* Y15296D01* Y16609D02* Y16296D01* Y18425D02* Y17296D01* X31699Y4309D02* G03X31888Y4498J189D01* G01Y5148* G03X31699Y5337I189* G01X31049* G03X30860Y5148J189* G01Y4498* G03X31049Y4309I189* G01X31097* Y4074* G03X30860Y3642I277J432* X31374Y3128I514* X31888Y3642J514* X31651Y4074I514* G01Y4309* X31699* Y6671D02* G03X31888Y6860J189D01* G01Y7510* G03X31699Y7699I189* G01X31049* G03X30860Y7510J189* G01Y6860* G03X31049Y6671I189* G01X31097* Y6436* G03X30860Y6004I277J432* X31374Y5490I514* X31888Y6004J514* X31651Y6436I514* G01Y6671* X31699* X31748Y276D02* Y1691D01* Y2246D02* Y3290D01* Y3994D02* Y4316D01* Y5330D02* Y5652D01* Y6356D02* Y6678D01* Y7692D02* Y14037D01* Y14822D02* Y15675D01* Y16230D02* Y16719D01* Y17274D02* Y18425D01* X31890Y1691D02* Y276D01* Y13895D02* Y2246D01* Y15675D02* Y14680D01* Y16719D02* Y16230D01* Y18425D02* Y17274D01* X32031Y276D02* Y1691D01* Y2246D02* Y13753D01* Y14538D02* Y15663D01* Y16230D02* Y16719D01* Y17274D02* Y18425D01* X32173Y1534D02* Y276D01* Y13612D02* Y2403D01* Y15502D02* Y14396D01* Y16719D02* Y16325D01* Y18425D02* Y17274D01* X32315Y276D02* Y1440D01* Y2497D02* Y13470D01* Y14255D02* Y15427D01* Y16400D02* Y16719D01* Y17274D02* Y18425D01* X32457Y1395D02* Y276D01* Y13328D02* Y2929D01* Y15400D02* Y14113D01* Y16719D02* Y16427D01* Y18425D02* Y17274D01* X32480Y15913D02* X32441Y15953D01* X31224* X32563Y1969D02* X30134D01* X32563Y2176D02* Y1969D01* X32598Y276D02* Y1386D01* Y3172D02* Y10984D01* Y11654D02* Y13186D01* Y13971D02* Y15413D01* Y16413D02* Y16719D01* Y17274D02* Y18425D01* X32740Y1412D02* Y276D01* Y10869D02* Y3350D01* Y13045D02* Y11769D01* Y15470D02* Y13829D01* Y16719D02* Y16357D01* Y18425D02* Y17274D01* X32882Y276D02* Y1480D01* Y3489D02* Y10816D01* Y11822D02* Y12903D01* Y13688D02* Y15593D01* Y16234D02* Y16719D01* Y17274D02* Y18425D01* X32988Y11319D02* X33267D01* X33024Y1610D02* Y276D01* Y2810D02* Y2327D01* Y10806D02* Y3600D01* Y12761D02* Y11831D01* Y15667D02* Y13546D01* Y16719D02* Y16222D01* Y18425D02* Y17274D01* X33165Y276D02* Y1528D01* Y2409D02* Y2992D01* Y3690D02* Y10837D01* Y11801D02* Y12629D01* Y13404D02* Y15667D01* Y16222D02* Y16719D01* Y17274D02* Y18425D01* X33267Y11319D02* G03X33700Y11752J433D01* G01X33307Y1433D02* Y276D01* Y3120D02* Y2504D01* Y10916D02* Y3763D01* Y12161D02* Y11722D01* Y15559D02* Y13262D01* Y16719D02* Y16331D01* Y18425D02* Y17322D01* X33449Y276D02* Y1386D01* Y2551D02* Y3213D01* Y3820D02* Y11065D01* Y13121D02* Y15470D01* Y16419D02* Y16597D01* Y17459D02* Y18425D01* X33591Y1375D02* Y276D01* Y3280D02* Y2562D01* Y11120D02* Y3863D01* Y15434D02* Y13003D01* Y18425D02* Y17522D01* X33646Y15945D02* X32512D01* X32480Y15913* X33700Y11752D02* Y12500D01* X33693* X33732Y276D02* Y1399D01* Y2538D02* Y3327D01* Y3894D02* Y11215D01* Y13012D02* Y15438D01* Y17541D02* Y18425D01* X33874Y1463D02* Y276D01* Y3246D02* Y2474D01* Y4705D02* Y4037D01* Y5608D02* Y4941D01* Y7124D02* Y6400D01* Y11383D02* Y7246D01* Y15485D02* Y12981D01* Y16535D02* Y16405D01* Y18425D02* Y17520D01* X34016Y276D02* Y1446D01* Y2491D02* Y3131D01* Y4153D02* Y4455D01* Y5191D02* Y5493D01* Y6515D02* Y6831D01* Y7539D02* Y12100D01* Y12900D02* Y15589D01* Y16301D02* Y16602D01* Y17453D02* Y18425D01* X34029Y3642D02* X34374D01* X34029D02* G03X32563Y2176J1466D01* G01X34157Y1375D02* Y276D01* Y3128D02* Y2562D01* Y4357D02* Y4155D01* Y6730D02* Y6518D01* Y12281D02* Y7640D01* Y15900D02* Y12719D01* Y16745D02* Y15989D01* Y18425D02* Y17310D01* X34299Y276D02* Y1375D01* Y2562D02* Y3128D01* Y4155D02* Y4315D01* Y6518D02* Y6687D01* Y7683D02* Y18425D01* X34374Y6004D02* Y4823D01* X34441Y1375D02* Y276D01* Y3128D02* Y2562D01* Y4313D02* Y4155D01* Y6686D02* Y6518D01* Y18425D02* Y7684D01* X34583Y276D02* Y1375D01* Y2562D02* Y3128D01* Y4155D02* Y4353D01* Y6518D02* Y6727D01* Y7644D02* Y18425D01* X34699Y5490D02* G03X34888Y5679J189D01* G01Y6329* G03X34699Y6518I189* G01X34049* G03X33860Y6329J189* G01Y5679* G03X34049Y5490I189* G01X34097* Y5255* G03X33860Y4823I277J432* X34374Y4309I514* X34888Y4823J514* X34651Y5255I514* G01Y5490* X34699* X34724Y1375D02* Y276D01* Y3130D02* Y2562D01* Y4447D02* Y4154D01* Y5492D02* Y5199D01* Y6823D02* Y6516D01* Y18425D02* Y7547D01* X34866Y276D02* Y1375D01* Y2562D02* Y3229D01* Y4054D02* Y4675D01* Y4970D02* Y5591D01* Y6417D02* Y7077D01* Y7293D02* Y18425D01* X34878Y7185D02* G03X34374Y7689I504D01* X33870Y7185J504* X34374Y6681I504* X34878Y7185J504* G01X35008Y1381D02* Y276D01* Y3364D02* Y2556D01* Y18425D02* Y3919D01* X35016Y3642D02* X34374D01* X35150Y276D02* Y1521D01* Y2416D02* Y3374D01* Y3947D02* Y4231D01* Y4596D02* Y6262D01* Y6565D02* Y15857D01* Y16032D02* Y18425D01* X35291Y3408D02* Y276D01* Y6040D02* Y4800D01* Y15587D02* Y6786D01* Y18425D02* Y16303D01* X35433Y276D02* Y3468D01* Y4888D02* Y5950D01* Y6877D02* Y15488D01* Y16402D02* Y18425D01* X35575Y3561D02* Y276D01* Y5913D02* Y4924D01* Y15446D02* Y6914D01* Y18425D02* Y16444D01* X35630Y4256D02* G02X35016Y3642I614D01* G01X35630Y4413D02* Y4256D01* X35717Y276D02* Y3705D01* Y4920D02* Y5917D01* Y6910D02* Y15446D01* Y16444D02* Y18425D01* X35854Y3951D02* G03X36144Y4413I224J462D01* X35630Y4927I514* X35116Y4413J514* X35275Y4042I514* G02X35016Y3919I259J214* G01X34888* Y3967* G03X34699Y4155I189* G01X34049* G03X33860Y3967J188* G01Y3911* G03X32315Y2497I169J1735* X32049Y2246I248J528* G01X30718* Y2364* G03X30529Y2552I189* G01X29739* G03X29551Y2377J188* X29411Y2482I417J408* G01Y6479* G02X29529Y6762I401* G01X29615Y6848* G03X29724Y6837I109J502* X30238Y7350J513* X29724Y7864I514* X29211Y7350J514* X29222Y7241I513* G01X29136Y7155* G03X28856Y6479I676J676* G01Y2482* G03X28634Y2270I278J513* X28134Y2552I500J301* X27644Y2287J583* G01X26830* G03X26378Y2557I452J244* X25864Y2043J514* X26378Y1530I514* X26786Y1732J513* G01X27600* G03X28134Y1385I534J237* X28634Y1667J584* X29134Y1385I500J302* X29551Y1560J584* X29739Y1385I188J14* G01X30529* G03X30718Y1574J189* G01Y1691* X32049* G03X32563Y1385I514J278* X33057Y1658J584* X33563Y1375I506J311* X33972Y1538J594* X34168Y1375I196J36* G01X34958* G03X35157Y1574J199* G01Y2364* G03X34958Y2562I199* G01X34168* G03X33972Y2399J198* X33563Y2562I409J430* X33057Y2279J593* X32875Y2462I494J310* G02X33860Y3352I1154J286* G01Y3317* G03X34049Y3128I189* G01X34699* G03X34888Y3317J189* G01Y3364* X35016* G03X35854Y3951J892* G01X35858Y3953D02* Y276D01* Y5964D02* Y4874D01* Y15488D02* Y6862D01* Y18425D02* Y16402D01* X36000Y276D02* Y4057D01* Y4770D02* Y6072D01* Y6755D02* Y15587D01* Y16303D02* Y18425D01* X36134Y6413D02* G03X35630Y6917I504D01* X35126Y6413J504* X35630Y5910I504* X36134Y6413J503* G01X36142Y4369D02* Y276D01* Y15857D02* Y4458D01* Y18425D02* Y16032D01* X36149Y15945D02* G03X35646Y16449I503D01* X35142Y15945J504* X35646Y15441I504* X36149Y15945J504* G01X36283Y276D02* Y18425D01* X36425D02* Y276D01* X36567D02* Y1436D01* Y2501D02* Y18425D01* X36709Y1242D02* Y276D01* Y18425D02* Y2695D01* X36850Y276D02* Y1113D01* Y2824D02* Y18425D01* X36992Y1022D02* Y276D01* Y18425D02* Y2915D01* X37134Y276D02* Y958D01* Y2979D02* Y18425D01* X37276Y918D02* Y276D01* Y16807D02* Y3019D01* Y18425D02* Y17248D01* X37417Y276D02* Y897D01* Y3040D02* Y16631D01* Y17424D02* Y18425D01* X37559Y896D02* Y276D01* Y16553D02* Y3041D01* Y18425D02* Y17502D01* X37701Y276D02* Y913D01* Y3024D02* Y16525D01* Y17531D02* Y18425D01* X37843Y950D02* Y276D01* Y16537D02* Y2987D01* Y18425D02* Y17518D01* X37984Y276D02* Y1009D01* Y2928D02* Y16594D01* Y17461D02* Y18425D01* X38126Y1095D02* Y276D01* Y16718D02* Y2842D01* Y18425D02* Y17337D01* X38232Y17028D02* G03X37728Y17531I504D01* X37225Y17028J503* X37728Y16524I503* X38232Y17028J504* G01X38268Y276D02* Y1217D01* Y2720D02* Y18425D01* X38409Y1396D02* Y276D01* Y18425D02* Y2541D01* X38551Y276D02* Y1746D01* Y2191D02* Y18425D01* X38575Y1969D02* G03X37500Y3043I1075D01* X36425Y1969J1074* X37500Y894I1075* X38575Y1969J1075* G01X38693Y18425D02* Y276D01* X38835D02* Y18425D01* X38976D02* Y276D01* X39094D02* X12087D01* Y5060* G03X12275Y5234I244J452* G01X14145* G03X14567Y5014I422J294* X15014Y5275J514* X16419Y6945I290J1670* G01Y7740* X16467* G03X16655Y7929J189* G01Y8579* G03X16494Y8766I188* G02X17301Y9293I807J355* G01X17359* G03X17791Y9057I432J278* X17901Y9069J514* G01X19896Y7074* G03X19791Y7085I105J503* X19291Y6689J514* X18791Y7085I500J118* X18291Y6689J514* X17791Y7085I500J118* X17278Y6571J514* X17791Y6057I513* X18068Y6138J514* X18014Y5843I773J295* G01Y4878* G03X17603Y4248I277J630* X17818Y3748I688* X17660Y3524I473J500* X16999Y3232I49J1002* G01X16548Y2780* G02X16465Y2746I83J82* G01X16347* G03X15945Y2957I402J277* X15456Y2469J488* X15945Y1980I489* X16347Y2191J489* G01X16465* G03X16940Y2388J671* G01X17391Y2839* G02X17662Y2968I318J317* G03X18014Y2618I629J280* G01Y2518* G03X18381Y1631I1255* G01X18925Y1087* G03X19505Y847I580J579* G01X21893* G03X22758Y1205J1223* G01X23556Y2003* G03X24122Y3371I1368J1368* G01Y7269* G03X23937Y7717I634* G01X23526Y8128* G03X22818Y8421I708J708* G01X21547* G02X21183Y8572J515* G01X20687Y9067* X21116* G03X21295Y9246J179* G01Y9896* G03X21116Y10075I179* G01X20466* G03X20288Y9896J179* G01Y9704* G03X19791Y10085I497J133* X19687Y10074J514* G01X20742Y11129* G03X20699Y10925I460J204* X21202Y10421I503* X21706Y10925J504* X21202Y11429I504* X20999Y11386J504* G01X21724Y12111* G02X21993Y12223I269J269* G01X26324* G03X26756Y11986I432J277* X27270Y12500J514* X26756Y13014I514* X26324Y12777J514* G01X21993* G03X21332Y12504J935* G01X18901Y10073* G03X18791Y10085I110J502* X18687Y10074J514* G01X23169Y14556* G02X23438Y14667I269J269* G01X26536* G03X26969Y14431I433J278* X27401Y14667J514* G01X27797* G03X28106Y14453I427J286* X27711Y13953I118J500* X27722Y13843I513* G01X27708Y13828* G03X27478Y13275I553J553* G01Y11783* G03X27242Y11350I278J433* X27756Y10837I514* X28270Y11350J513* X28033Y11783I514* G01Y13275* G02X28100Y13436I228* G01X28115Y13451* G03X28224Y13439I109J502* X28478Y13506J514* G01Y12932* G03X28242Y12500I278J432* X28756Y11986I514* X29224Y12289J514* X29414Y12068I469J211* G01Y11760* G03X29211Y11350I310J410* X29724Y10837I513* X30150Y11062J513* G01X30543* G03X30988Y10805I445J257* X31502Y11319J514* X30988Y11833I514* X30570Y11617J514* G01X30164* G03X29969Y11802I440J267* G01Y12067* G03X30207Y12500I276J433* X29970Y12932I514* G01Y13171* G02X30474Y13675I504* G01X30711* Y13628* G03X30899Y13439I188* G01X31549* G03X31738Y13628J189* G01Y14047* X33118Y12667* G03X33181Y12620I196J196* G01X33191Y12610* G03X33179Y12500I502J110* X33422Y12063I514* G01Y11752* G02X33383Y11648I155* G03X32988Y11833I395J329* X32474Y11319J514* X32988Y10805I514* X33433Y11061J514* X33977Y11752I166J691* G01Y12072* G03X34207Y12500I284J428* X33693Y13014I514* X33583Y13002J514* G01X33526Y13059* G03X33463Y13107I196J196* G01X31726Y14843* G03X31738Y14953I502J110* X31342Y15453I514* X31657Y15675I118J500* G01X32025* G03X32480Y15400I455J238* X32931Y15667J513* G01X33213* G03X33646Y15431I433J278* X34159Y15945J514* X33646Y16459I513* X33213Y16222J514* G01X32891* G03X32480Y16427I411J309* X32076Y16230J514* G01X31657* G03X31342Y16453I433J277* X31682Y16719I118J500* G01X33318* G03X33728Y16514I410J309* X34242Y17028J514* X33728Y17541I514* X33278Y17274J513* G01X31625* G03X31224Y17466I401J321* X30711Y16953J513* X30722Y16843I513* G01X29095Y15216* G03X28568Y14335I1488J1488* X28342Y14453I344J382* X28738Y14953I118J500* X28342Y15453I514* X28738Y15953I118J500* X28318Y16458I514* X28728Y16953I94J495* X28224Y17456I504* X27721Y16953J503* X28131Y16458I503* X27792Y16230I93J505* G01X27598* G02X26720Y16507J1534* G03X26969Y16441I249J438* X27472Y16945J504* X26969Y17449I503* X26465Y16945J504* X26608Y16593I504* G02X26065Y17764I990J1171* G01Y18425* X39094* Y276* G54D27* X6201Y23130D02* X6199Y23129D01* X3792* X2657Y24263* Y24311* X27953Y28937D02* Y26989D01* X25913Y24948* X10751* X8932Y23130* X6201* X30103Y28937D02* Y19929D01* X30118Y19913* Y19882* Y19913D02* X32480D01* G54D70* X27953Y28937D03* X30103D03* G54D71* X25803D03* M02* gerbv-2.7.0/example/nollezappare/Makefile.in0000644000175000017500000003614213423533413020710 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = example/nollezappare ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = AssemblyTop.gdo ThruHolePlated.ncd EtchLayer2Bottom.gdo MOSTLYCLEANFILES = *~ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu example/nollezappare/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu example/nollezappare/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/example/nollezappare/ThruHolePlated.ncd0000644000175000017500000000215713421555714022222 0ustar carstencarsten;PARTNO V:\veribest\Proj\nollezappare\PCB nollezappare.pcb ;LEADER 240 CHARACTERS M48 T01C.864 T02C.864 T03C1.092 T04C1.194 T05C1.524 T06C1.956 R,H / % G90 M71 G93X000000Y000000 G05 T01 X40500Y6270 Y3730 T02 X37000Y8960 Y14040 X41000Y20965 Y9535 X47730Y16690 X45190 Y24310 X47730 X52810 X50270 X52810Y16690 X50270 X56000Y17960 Y23040 X67000Y18710 Y23790 X67960Y31750 X68500Y37960 Y43040 X71690Y43060 Y40520 Y37980 Y35440 X73040Y31750 X78710Y28750 X79310Y35440 Y37980 Y40520 Y43060 X83790Y28750 X85460Y40500 X90540 X90500Y16290 Y11210 X19920Y14000 X30080 X46670Y34934 X53854Y27750 X56000Y4420 X59000Y8170 X56000Y14580 X59000Y18330 X67000Y5190 Y12810 X65500Y58420 Y68580 X70500Y28830 Y18670 Y16060 Y8440 X79690Y9250 Y12250 Y15250 Y18250 X75500Y18670 Y28830 X75420Y31750 X82500Y50580 Y40420 X87310Y9250 Y12250 Y15250 Y18250 X85580Y31750 X85670Y43250 X95830 T03 X15750Y58750 X30990 X44115Y50500 X76500 T04 X5400Y19500 Y36500 X12600 Y19500 X26000Y32900 Y40100 X74000Y5000 X71460 X76540 X82710 X87790 X85250 T05 X16320Y50500 X39180 X49000Y5710 X46460Y8250 Y10790 X51540 Y8250 T06 X65539Y73500 X71000 X76461 T00 M30 ;LEADER 240 CHARACTERS gerbv-2.7.0/README-git.txt0000644000175000017500000000505313421555713014775 0ustar carstencarstenThis file describes how to build from git sources. If you are building from a released version or snapshot, please refer to the 'INSTALL' document instead. Take the time to read this file, it's not that long and it addresses some questions which come up with some frequency. ------------- Prerequisites ------------- You will need the following tools to obtain and build a git version of gerbv: To download and track sources you will need: git In addition you will need recent versions of: autoconf -- ftp://ftp.gnu.org/pub/gnu/autoconf/ Version 2.59 or newer. automake -- ftp://ftp.gnu.org/pub/gnu/automake/ The developers use the 1.9.* versions of automake. Older versions have not been as well tested (or tested at all). Versions 1.7 and older are too old and will not work. libtool -- ftp://ftp.gnu.org/pub/gnu/libtool/ Version 1.4 and newer should work although most development is done with 1.5.x. You can find the version of autoconf, automake, and makeinfo by running them with the --version flag. These are in addition to the normal tools and libraries required to build a release version of gerbv. --------- Check out --------- If you already have a checked out gerbv source tree, please proceed to the 'Updating' section. To check out sources from the git server, run the following: git clone ssh://git@geda-project.org:65/gerbv --------- Updating --------- To update an already checked out copy of the gerbv source tree, run this command from your gerbv directory: git pull ---------------------------------- Bootstrapping with the auto* tools ---------------------------------- To create the configure script and the Makefile.in's you will need to run: ./autogen.sh from the top level pcb directory. This will run the various auto* tools which creates the configure script, the config.h.in file and the various Makefile.in's. If you plan on making changes to configure.ac or Makefile.am's you may want to enable maintainer mode by passing the --enable-maintainer mode flag to ./configure At this point you can proceed to configure and build gerbv as outlined in the INSTALL document. ------------------- Building a Snapshot ------------------- The file README-release.txt documents what is currently done to create a release for gerbv. Most of what is in there has to do with the git repository and how we tag and branch the sources. If you are interested in building your own .tar.gz file from git sources, you can still use the information in README-release.txt as a guide. gerbv-2.7.0/desktop/0000755000175000017500000000000013423533412014156 5ustar carstencarstengerbv-2.7.0/desktop/gerbv-16.svg0000644000175000017500000002162713421555713016246 0ustar carstencarsten image/svg+xml gerbv-2.7.0/desktop/gerbv_icon.ico0000644000175000017500000002362613421555713017006 0ustar carstencarsten00hf00 v ^(!h."(0`;72C@=|yk_][݃c c =h13U1:3dEF2mEQḤ1""" EH4ETDA ED̄HDLZ.DDpAD̔AQDTDD[DQEݠDDDEEEݠDDDID< DDDYJ*ݠ DDDZO=ݠ DDDWyG=ݠ DDEwwwwZ# DDD{{J!< mDDD{G \=ݠ DDD{{O.86 DDDZO/:ݠ DDDJ" mݠ DDDD{T"= T{{"yG ˨"qEww" rJ"O*lmݠDTDA + \̭ݠ""  8ݫ "  *ݫ"/<̰""6ݫ."."."8/ 8ݠ/ *8""" !ݫ , :DEK/"꣍̬֠å/""3ݫC> "꣆;<̻/ml Ϊ/mj Σ8cmӣ6أ????(0` D<4}}}WWWnnnnnnwwwJ;-vVVV;;; sleccc̾eeeCCC422N?1zk]PPP.#yyyyyyaaat~~~uuu̽[RJrrr·ggg c\U555}}}[[[555kkkD5'___UUUfffuuuƸ53-XXXn_Qʾ..,(&"~oaŶ^^^|||?0"GGGHHHohaBBB]]]:,ylffffYM#pbοOOO˽PPP===Ⱥwi}}}NNN~vvv+)$'&$WPI|||seq%$$| gggô.-,ooo$!qqqXXX|mF7)ٚT"W3-31&~-٧O>TTTTTTTTTTTTTTTTTTTTTTTTT.:: ᇇTOvjj,Dؘ||6/'zDJԭM2oJ%S}7UJ)RX3,=UUJ3)"3@R.P=Zv@̂=pZK@5\R"0:o@wsuW~u]tsww~|X 4BDww~w7}CADwwp>CADww~J&D}4M&D 4+ p!35#'33wԧ#3t+oJ1:@M1oJJww1o:rgqofo?y( @TTT%$# :2*xxx,*)OOO dUGRC5+)$qrcUZSK}hhh"!CCCaaa322@2%̿-,+˼TMGOOOTOJ  {s)(%ZK=rCCC<<<xxx987%$ vvv[[[whZ|||vg1'?0"UF8741iiiooodddlll WH:qia.--eeexG8*|||(&%KKKl]OeeeŶDA>221```JJJ+)&{l^ôpppkkkJJJ:-!vtfYKKK42,ϋϋ8ϋIКdn/01% \\ HN*XmYYYYYYmCaAà(==Ξ5RAXYv ;MZlMe^XYik&P#r9@MfAN1X43 r eσ=[,SVȼr,MW®zϛG)yog66rpYjωptԨocur@S7fY®X=ԨV!M\fUY‘bX:yʼcG͍YYwX[xcuAGYY"/X[y!oSo=sZYYYw)~$$$$ƇcQA\=BYYY4X):$$$fJL\\G)-mYY X)$$$_fp\G~vYYY4X)4$$$\\DppG\Gs OmY)+X)$$=pGpsEm4d)(l\=\G=ft(|q})l==\\Gpstϟt)p7\\\\pp\ppGGp ~X]WWWhfs _.|kT`mChB)8(~7\]'4Yv+~7[ $&X{I2ºw?E."Kb/q}>{?y( ze`\J9)-)%976ȹ\f_\_aDDD@ƣ33336lb&mnnmnnnnfinnkb&jvk櫆h96hghhffffffl( PONsrrJ9)999<<<#"!432umd555! ǹ:- ȹPON! MHDMHD))) %'% )))))),  ,))))* *))"" &&!!&&$  ))(##())))++))))))))))))))))))))))) gerbv-2.7.0/desktop/Makefile.am0000644000175000017500000000373213421555713016225 0ustar carstencarsten## Process this file with automake to produce Makefile.in ## ## Copyright (C) 2000-2006 Stefan Petersen (spe at stacken.kth.se) ## ## This file is part of gerbv. ## $Id$ ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA theme=hicolor xdgdatadir=@XDGDATADIR@ themedir=$(xdgdatadir)/icons/$(theme) app_icon = gerbv app_icon_files = \ $(app_icon:%=%-16.png) \ $(app_icon:%=%-22.png) \ $(app_icon:%=%-24.png) \ $(app_icon:%=%-32.png) \ $(app_icon:%=%-48.png) \ $(app_icon:%=%.svg) theme_icons = \ $(app_icon_files:%=apps,%) desktopdir=$(xdgdatadir)/applications dist_desktop_DATA = gerbv.desktop install_icon_exec = \ $(SETENV) GTK_UPDATE_ICON_CACHE_BIN="@GTK_UPDATE_ICON_CACHE_BIN@" \ $(SHELL) $(top_srcdir)/icon-theme-installer \ -t $(theme) \ -s $(srcdir) \ -d "x$(DESTDIR)" \ -b $(themedir) \ -m "$(mkinstalldirs)" \ -x "$(INSTALL_DATA)" install-data-local: $(install_icon_exec) -i $(theme_icons) install-data-hook: if ENABLE_UPDATE_DESKTOP_DATABASE $(UPDATE_DESKTOP_DATABASE) "$(DESTDIR)$(desktopdir)" endif uninstall-hook: if ENABLE_UPDATE_DESKTOP_DATABASE $(UPDATE_DESKTOP_DATABASE) "$(DESTDIR)$(desktopdir)" endif $(install_icon_exec) -u $(theme_icons) dist_pkgdata_DATA= gerbv_icon.ico EXTRA_DIST = gerbv.png $(app_icon_files) MOSTLYCLEANFILES = *~ MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in gerbv-2.7.0/desktop/gerbv-22.png0000644000175000017500000000213013421555713016214 0ustar carstencarstenPNG  IHDRĴl;sBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<IDAT8QL[U޶\Z( ,1(T Pd3$̤٫񁰘}4Mdfぇ&hfd4AMx0q)]{MWZ}/~眜sP__?eXT hurd ZiM(X^^(W:3Ͽm!~I! p:i2=F(HIE|T㓷s$% * ds~V13Nэ 9ij|C---(\` ]CgǜV1+|>dYt:aw8I`AMsp_;UcU=`* wFGGE.ʊ>HqֈꪹrCZ[[i) LL4&&nBU'hooc"8Js]p71m#`j'+NjǩT`K sH߿@O5Y,-al}"Tud2_8|u:\I^_;3rUd2E1[(ΒUO>nMScs+}2557Q[*I8yڢX,F/]"CvjNbO,bU!c`IL 3333$2IT.y|R>nhhpg7Afy88:ֻP`QƘt &IR~l6$IȲ!l6766^BVА98J29GSS\,fAlc#}tm*T,IUUuQivK1JY$rsaikkCooy" HDrZVVU,c,f_#"Yв.IENDB`gerbv-2.7.0/desktop/regen_files0000755000175000017500000000666213421555713016406 0ustar carstencarsten#!/bin/sh # # $Id$ # CONVERT=${CONVERT:-convert} COMPOSITE=${COMPOSITE:-composite} INKSCAPE=${INKSCAPE:-inkscape} PPMTOWINICON=${PPMTOWINICON:-ppmtowinicon} do_inkscape=yes do_convert=yes do_winicon=yes usage() { cat << EOF $0 -- Regenerate desktop icon files and windows icon files Options --help Displays this message and exits --skip-png Skips the regeneration of the .png file(s) --skip-winicon Skips the regneration of the Windows icon file(s) EOF } while test $# -ne 0 ; do case $1 in --help) usage exit 0 ;; --skip-png) do_inkscape=no shift ;; --skip-winicon) do_convert=no do_winicon=no shift ;; -*) echo "$0: Unknown option $1" usage exit 1 ;; *) break ;; esac done if test $? -ne 0 ; then usage exit 1 fi ## ## Export the SVG graphics ## # see if we have inkscape if test $do_inkscape = yes ; then ${INKSCAPE} --version 2>&1 >/dev/null if test $? -ne 0 ; then echo "\"${INKSCAPE} --version\" failed." echo "Make sure that inkscape is installed and functional on your system." echo "Skipping the SVG -> PNG conversion." do_inkscape=no fi fi if test $do_inkscape = yes ; then echo "Export SVG graphics to png..." for r in 16 22 24 32 48 ; do case ${r} in 24) x=-1 y=23 rs=22 ;; *) x=0 y=${r} rs=${r} ;; esac for f in *-${rs}.svg ; do fb=`basename ${f} ${rs}.svg` p="${fb}${r}.png" echo "${f} -> ${p}" ${INKSCAPE} --export-png=${p} --export-area=${x}:${x}:${y}:${y} ${f} done done fi ## ## Generate the windows icon file ## app_icon="gerbv" if test $do_convert = yes ; then # see if we have ImageMagick ${CONVERT} --version 2>&1 >/dev/null if test $? -ne 0 ; then echo "\"${CONVERT} --version\" failed." echo "Make sure that ImageMagick is installed and functional on your system." echo "Skipping the PNG -> PPM conversion." do_convert=no fi fi if test $do_convert = yes ; then echo "Creating windows pbm mask files..." ${CONVERT} -channel matte -separate +matte ${app_icon}-48.png - | ${CONVERT} -threshold 65534 -negate - 48_mask.pbm ${CONVERT} -channel matte -separate +matte ${app_icon}-32.png - | ${CONVERT} -threshold 65534 -negate - 32_mask.pbm ${CONVERT} -channel matte -separate +matte ${app_icon}-16.png - | ${CONVERT} -threshold 65534 -negate - 16_mask.pbm echo "Creating windows ppm flattened files..." ${CONVERT} -flatten -colors 16 ${app_icon}-48.png 48_16.ppm ${CONVERT} -flatten -colors 256 ${app_icon}-48.png 48_256.ppm ${CONVERT} -flatten -colors 16 ${app_icon}-32.png 32_16.ppm ${CONVERT} -flatten -colors 256 ${app_icon}-32.png 32_256.ppm ${CONVERT} -flatten -colors 16 ${app_icon}-16.png 16_16.ppm ${CONVERT} -flatten -colors 256 ${app_icon}-16.png 16_256.ppm fi # see if we have netpbm if test $do_winicon = yes ; then ${PPMTOWINICON} --version 2>&1 >/dev/null if test $? -ne 0 ; then echo "\"${PPMTOWINICON} --version\" failed." echo "Make sure that netpbm is installed and functional on your system." echo "Skipping the pbm -> windows icon conversion." do_winicon=no fi fi if test $do_winicon = yes ; then echo "Creating windows icon file..." ${PPMTOWINICON} -output gerbv_icon.ico -andpgms\ 48_16.ppm 48_mask.pbm 48_256.ppm 48_mask.pbm\ 32_16.ppm 32_mask.pbm 32_256.ppm 32_mask.pbm\ 16_16.ppm 16_mask.pbm 16_256.ppm 16_mask.pbm fi rm -f \ 48_16.ppm 48_256.ppm 48_mask.pbm\ 32_16.ppm 32_256.ppm 32_mask.pbm\ 16_16.ppm 16_256.ppm 16_mask.pbm echo "All done" gerbv-2.7.0/desktop/gerbv.png0000644000175000017500000000626613421555713016011 0ustar carstencarstenPNG  IHDR00WbKGD pHYs }vHtIME +%ۢn CIDATxmUyf޻/ލƩ]EJ)m JD(Bʧh $($" MDi)E4b5I9Ix{̝9|gvݬi4wfg9~B?dP gذVaߏESq;҇s@A ùB=1{8 nvu5/? p~8|xXdY~%110cYuScϞ:R χ4 јB %1l@rlkmm6j#718\#˫/RH"`b6- d/;٬YgaRe(wG"+HT1Iaf^`x_V'8\" ?^M[.)r c(uRuY|Kr*%[^@`ݢwم}$*6,d E/Vd@[ghMj`96AxҹT='S}ҹWe [σ½( -82126Q(L@XO\!zO4`*)Jc{mUjb ussmٯ޳Ւk|lZmϚN H$)ٶ*u[+D͐[3\}fy1,jWT/@ƗA0&T.́"/ {[-{dbBZrdbB4W\;wD#/^/$S:?JjlF薝x~kW ܁# X aU~xhEs%o;ԩ䋎DHl=tdE|yz^WcSl)LWGх-@F ]6S(Z>7_bDĀđh+ AV|x*2@j?[psk gC- 0HK V⻹VMsG!E8Gс-{KSQPE#PiVN?, uh(m%SZI. L!SkJkQ.}| H@np1MU /zG陰ٍ|x]/^9# ;sjj@_19P}Vܷ& 畆vژZ2Ww)aHT0ǦaA~9*"M Rտ=EU k:r \bk"KbmNU3Sy

>k,0!fE$f"^vrUuo1N~-#q|'_(?xs뫵گU4#_o6wJ>`)Umr#"bT x"Zhj=U?G-g[{8}W߫ɘȾȯ~R"@[ulNHyͱ{D&v+j>Y־ݫVM笵 ÚR-$"օ؅4+j6?zbr6?Sݟޗc|ql역W6ͯ8z[YjN^׼ jOJ{&D>Eі(6BY_'IƘIcLCDC"WTU;z1QQD6}Zեc"M[3QI8y~@|6ܗrϭY߀U0e̖-Ƽ?mRaƘk>ǻ#H&D~13!BUNmX|_H?QZ Oz3S{YDUڏgD*Tw뭽O; _dyc̔~!Dr`ؼ~8JDY8w`\dzZdW?e޺7OW)D"^/bB؝65`T1V?C?C;Dv~ӹ1@#N~Bs46f}p7'Ƀk>E7}:nϽY Y[.zzf" j;f~<ǘZ{ٶ;IYD(2S?8TՉHPk.2j cν-~#i" orCWG3-U]?۪wqt 5fǬj_{9Ϋw/=UT5W{' fHDjƘ)kƘ-ƘDrt_ EȦ!! z1Xkc19$UV;LcfDis! /h{# KU)ynQ{ zDOU^U۪RծF*p\~NUvAU y[! @B{_TS F@ ,ҰV$DTU˩jODUU_Y8Q'2٬3LDQŰi&j*}<-[&577(BxA{~n޽Ç@ I000D"H$Bi4 $p8 CD"AdYVfZ(˗//\ dggj&GQ̙3;iN>{wV<ϣdY H&qBee$I֭|QL&7L5kQRRQq)̞=GEvv6N'4Mh Lb@ŋD[[`vSqqq^CC^xa`ttI $ItaF8<Adff" " t"H@UQbXTH$h4RDtԼyJSTPeee۷o5??u$DR0044ҥKͅEA"R!H&ܔ)SPHs̹$l1Ƙcɤ\Giv؁m۶nG%D"ӟ`ʕ(//ܹsi("0EQ$I4???v9CGGرcGcdd pߨp8/ ɂg*tbtf|sjt:I DQ !ǹy $|eϞ=555EEQ$gΜa'O$d,###;k7ݎfBPTtDCǡ G $IM'NՍ}v}}6::Z \1$ R*:tH;{,\. GSy, fX ]8z"X,IgV8=n9xkWkSCƭ0q$MӠ*n7n7R5MS/^dPXwɤ&IҥKT*[jkkdzz̡>ƠObŠb„ Xf %ZJ٩VretGxlR&˲GV%9d=zΝ;mEz]DQdRf(0arEG)%ӈ{hST 688HN꼺\Nuu֌ JDeLSA;XWw7[v-tz[pa>|$%h<%Bzzz nv 2ye}. C"yq2׋O^/>",=؇YYLQ>HpW֭[@ 7 8t:ݤ+2gEEE)NpPcQʂ1-l6V\\qqB)<6l @;~;YǑX41yXQ7EK7 ^7x vkȻ2>`~"rb@`Ӎɯ`O>}˖-+bZ/\|wnKٷ沅l޼O? ͛u˒'≟9BSB6;(7`ry+%+\MƬ&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = desktop ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_desktop_DATA) \ $(dist_pkgdata_DATA) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(pkgdatadir)" DATA = $(dist_desktop_DATA) $(dist_pkgdata_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ theme = hicolor xdgdatadir = @XDGDATADIR@ themedir = $(xdgdatadir)/icons/$(theme) app_icon = gerbv app_icon_files = \ $(app_icon:%=%-16.png) \ $(app_icon:%=%-22.png) \ $(app_icon:%=%-24.png) \ $(app_icon:%=%-32.png) \ $(app_icon:%=%-48.png) \ $(app_icon:%=%.svg) theme_icons = \ $(app_icon_files:%=apps,%) desktopdir = $(xdgdatadir)/applications dist_desktop_DATA = gerbv.desktop install_icon_exec = \ $(SETENV) GTK_UPDATE_ICON_CACHE_BIN="@GTK_UPDATE_ICON_CACHE_BIN@" \ $(SHELL) $(top_srcdir)/icon-theme-installer \ -t $(theme) \ -s $(srcdir) \ -d "x$(DESTDIR)" \ -b $(themedir) \ -m "$(mkinstalldirs)" \ -x "$(INSTALL_DATA)" dist_pkgdata_DATA = gerbv_icon.ico EXTRA_DIST = gerbv.png $(app_icon_files) MOSTLYCLEANFILES = *~ MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu desktop/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu desktop/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_desktopDATA: $(dist_desktop_DATA) @$(NORMAL_INSTALL) @list='$(dist_desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-dist_desktopDATA: @$(NORMAL_UNINSTALL) @list='$(dist_desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-dist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(pkgdatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-dist_desktopDATA \ install-dist_pkgdataDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_desktopDATA uninstall-dist_pkgdataDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-data-am install-strip uninstall-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-hook install-data-local install-dist_desktopDATA \ install-dist_pkgdataDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_desktopDATA \ uninstall-dist_pkgdataDATA uninstall-hook .PRECIOUS: Makefile install-data-local: $(install_icon_exec) -i $(theme_icons) install-data-hook: @ENABLE_UPDATE_DESKTOP_DATABASE_TRUE@ $(UPDATE_DESKTOP_DATABASE) "$(DESTDIR)$(desktopdir)" uninstall-hook: @ENABLE_UPDATE_DESKTOP_DATABASE_TRUE@ $(UPDATE_DESKTOP_DATABASE) "$(DESTDIR)$(desktopdir)" $(install_icon_exec) -u $(theme_icons) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/desktop/gerbv-48.svg0000644000175000017500000004170613421555713016253 0ustar carstencarsten image/svg+xml gerbv-2.7.0/desktop/gerbv.svg0000644000175000017500000006042613421555713016022 0ustar carstencarsten gerbv-2.7.0/desktop/gerbv-22.svg0000644000175000017500000003340713421555713016242 0ustar carstencarsten image/svg+xml gerbv-2.7.0/desktop/gerbv-32.svg0000644000175000017500000004264413421555713016246 0ustar carstencarsten image/svg+xml gerbv-2.7.0/desktop/gerbv-24.png0000644000175000017500000000217113421555713016223 0ustar carstencarstenPNG  IHDRw=sBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org<IDATH_HWƿ;;άΪnBS@ .kؗ>44))HIL ) JJAԖXMF7!|("nuݝ;].Capwιw_Egp$)eKrC-I1٦ e$4 0Bu4OK>~ z{-˂Nin0{_rZ5zc$a"`F,8su`?~WFd'^{+uhG󲢢adKH!x4vg黋K|4 IB|o \Msuw*}# N#RU;;;E% I!hY8Yߎxi{{=?R($ 83~;x`iBh4ܼ 2XV7##60<J465`vv6 `ԭqܹyvb5Ŝ- r>G/,nl?Ou=gE%GsA@Qg_|7pǟykcYy93>CCC,..8%gp8sn70i'''S,m$룣4 e4M񜀒-ɖeA$8μ,ː؀a+v,(BIPRUUt:133MӖ;DX,BO q]$p$@?6iL<""dLd~qM_\Ԝ Dk-DBj8$,7xYrq& p29x<8h4#cؑH#cR& WB x'++ZߎZݝװmwTY/PpJ'<旹 ,ku:}ۿ~3 `pCJ!?޺S<ɼ聽0sUHJ6|ZX] m|sօWO?}xV~*"d*@Vi=E= j Axڵ鉉g{PWWV__OϜ9C*++UUmu,˥*Fc={dI;vX%Izcݕ5kּjժxg<D*Zee%c0uTqĉl,;vuww)Iҿ\x7m۶푌&Mv!77d2YDQJFʗ.]+**Xͧiv=XUUee,oEg@Ӵƍ#ڶk׮,_ܖҕ1m4%%%!999,̚5+`0hj]]aiA~vZEQQUhQQQߍ@~~n[fs?Zʯ/&L:zl͛%IR^}N"~Igeeset]zzzHmmmziiUUUZ~~@(e?~VfZf͏z꩝k׮pñ˖-0 eY.]8UUU8dɒ&O,oܸ .\6L>l<+ex^wӧOGvvvaJtQaaX~IR@)w,"77W{gp8B---rEEݿE1h$I;β!vΝ(B!*+ql6YA,$IFP(D, A R*Iy'^{-xM'*99矏#E1<mP1 ܺuKnY` ]]]ld^@IHH9@eFi8󧥥YeYg\?G=c߾}]]]G)SJqM pݰ툍r 1vXB@\v#..`Z*qzww7A)`0RRRe[nIݻăz暚+m۶\n Q(,,<"""]C`0HVvjmm5H/"&&g7\c!''#I"F#0,󡱱EEEiPU)))`8n@LKK `4Mla9s@ӧZs=W/I/((dY$Io|GGlق14 q B0gdeeA `0H(bRL?qDUUrȑ#e#zQ^^QJ?dY6-v?\x~"oK` fDQ$Ie?2 8hO??8((--Enn.4 $*Ɖ<7ʕ+5B@)E]]5==]O ,508nKf߾}tD@p8~E6 DCǏҥKqE~x<$%%SݾMSSRt V5ض};-ZD 8HKKKDttիO>2'թ7o޼o߾c{immeXň `EBWWqQTUUA4I~?Yaa4 ׯg:;;[fz$y@)iӦHIqOPU ]ǎ3` au]>юGA͸s_oibJKKieRJqz{Ħ^bqqq(PUw8@F ԩS<V^)Sf6s$W^U덍7S&+geӲK.!+{݃X,Luu߯\P'n޼.MHSxɓrTTf̘IsQoy<|ss3 ٳgk?axvUUU>CDNz{{JJJjK@u`0xx,ǃa apP, á躎!0p㆛M3ϟ%IK&$$wEU۷GBSwks%FFDDxLjjjP_jW{׮]CR?0{^xk&~L6m+++333=QQQaEٹsg(?͘`Yd59t^Kd;# ,B $IB}} YV$ TTT0o?ȑ#(~á0a b/5l+8*0 k`0F]..<2 رc$\zhhQw$ihC@7BQπo44h'(k}}}ܹsQ[[ [n} p 'N$MMM3fP_ UVeOHEEdm{LJ 0Lf͚ tҿ[A0 ܴiQ5}Qw~Xyk-ϔh||+<쳩Fm>gƍ,![__ /G:κ?ahr/~HOO7,[qӇ* N GF;$e pdo@yyyC=0㎆ ?[IENDB`gerbv-2.7.0/config.rpath0000755000175000017500000004443513421555746015043 0ustar carstencarsten#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2014 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; nagfor*) wl='-Wl,-Wl,,' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; xl* | bgxl* | bgf* | mpixl*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ F* | *Sun*Fortran*) wl= ;; *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; newsos6) ;; *nto* | *qnx*) ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) wl='-Qoption ld ' ;; *) wl='-Wl,' ;; esac ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; haiku*) ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then : else ld_shlibs=no fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) case "$host_cpu" in powerpc*) library_names_spec='$libname$shrext' ;; m68k) library_names_spec='$libname.a' ;; esac ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; haiku*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; *nto* | *qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; tpf*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' < will regenerate the golden file for . I suggest saving off a copy and using ImageMagick to look for the differences visually. The run_tests.sh script has examples of comparing .png files. Make sure the changes are only the expected ones and then check the new files back into cvs. Do not blindly update these files as that defeats the purpose of the tests. ********************************************************************** ********************************************************************** * Adding New Tests ********************************************************************** ********************************************************************** ---------------------------------------------------------------------- Create input files ---------------------------------------------------------------------- Create a *small* RS274-X or NC-drill input file and put it in the inputs/ directory. The goal is to have a file which tests one particular aspect of the capabilities of the respective file format. ---------------------------------------------------------------------- Add to tests.list ---------------------------------------------------------------------- Add an entry to the tests.list file for your new tests. Use existing entries as an example. ---------------------------------------------------------------------- Generate the reference files ---------------------------------------------------------------------- Generate the reference files for your new tests using the following ./run_tests.sh --regen where is the name of your new test from tests.list. If you are adding multiple tests, then you can list them all on the same command line. *IMPORTANT* Verify that the generated .png files for your new tests are correct. These files will have been placed in the golden/ subdirectory. ---------------------------------------------------------------------- Update Makefile.am's ---------------------------------------------------------------------- Update inputs/Makefile.am and golden/Makefile.am to include your new files. ---------------------------------------------------------------------- Add the new files to cvs ---------------------------------------------------------------------- cvs add -kb golden/ cvs add inputs/ the "-kb" flag is required when adding .png files to cvs to prevent cvs from trying to expand RCS keywords inside of a binary file. gerbv-2.7.0/test/Makefile.am0000644000175000017500000000121413421555714015525 0ustar carstencarsten## $Id$ ## SUBDIRS= golden inputs TESTS_ENVIRONMENT= \ IM_ANIMATE=${IM_ANIMATE} \ IM_COMPARE=${IM_COMPARE} \ IM_COMPOSITE=${IM_COMPOSITE} \ IM_CONVERT=${IM_CONVERT} \ IM_DISPLAY=${IM_DISPLAY} \ IM_MONTAGE=${IM_MONTAGE} RUN_TESTS= run_tests.sh check_SCRIPTS= ${RUN_TESTS} # png export is different if we are not using cairo so don't bother if HAVE_MAGICK # uncomment when the testsuite is actually ready. TESTS= ${RUN_TESTS} endif DISTCLEANFILES= configure.lineno MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in EXTRA_DIST= ${RUN_TESTS} tests.list README.txt # these are created by 'make check' clean-local: -rm -rf mismatch outputs gerbv-2.7.0/test/golden/0000755000175000017500000000000013423533413014735 5ustar carstencarstengerbv-2.7.0/test/golden/test-layer-axis-select-1.png0000644000175000017500000000370213421555714022121 0ustar carstencarstenPNG  IHDRKbKGDwIDATx1@EACy hA32SB6e0˱cx2M/gq$i0l;Ki0lq/g$7A3+4| @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ p{`+e, =A+6:]eIENDB`gerbv-2.7.0/test/golden/example_ekf2_pow3.png0000644000175000017500000003301513421555714020765 0ustar carstencarstenPNG  IHDRKbKGD IDATxm(쉻ZE/jVQK?c@ @?>|)>/s_o 8axrz-fYUm5}P&G6F00N02hegڔr_O'|=x>f(G|(lk4AY ;'AE,B/fRUiVvWsǞK7V @2$W Mȃ%L \G_Ϧ48E0 X2$z0 qQ+ ` s:[J?>s\53 )Lw) ܗ?z 4'V\ m3=.fwP=Ȼ% 0g:`6+^ {Uy{-GlFǞ _ á%/N} NRВ[ _)h5uu1ԈaB}Lc]tGyN=4SǀM׈U qu@WXOUE߯R]xgf 0~{z__!7%[+Ūsm/xꤜ[OM! QKjKWdԜ2!@USk P~0HU-m/uӢ)FW^:|$ڡDN)U-)av}2'kǙg ?5_|<sGtJWiW\-p0TT>?ZdL~~ ) HKHYlH*Rv(V{NoDGa6uݪr a@橾9l&,/ohq+業j?qʧW@D۾w'/)'gڣPg-@6 [gLNa!2$&,C*mSkҦ̵O*nzdS.gZl#2DsOS-r5Q3dW:=JKU_sJS ;5QTj+iU{O|!'܏B]o!i*Sxrk2U 6<,CP_ۚ&BgDm^hl8/ T%m7׷>l3Qsy.O}3=; !s6;it;p& _VsU{_&ڽeg&[3GپQD4 nP~MRĖTvUފiӴ&_?/;T^Kۣ9 |q3c_E9ywg!DO2yz|%MGlh̗?wmcoPq,s.l*D"e7#`eՇd: r2&Ӵn_gXN\xA eX58'4_bXHD!"`9!?`hNЪ!'B]}KIB>w'2!1WQRr_z&; }]'t`J/{sIN$1SG xq%W=M_Lf p?u04ImU4F<-oD@)dqP&L7O#sy]+M0:q@1ؑ) A$^[ǁ;Y6 asǒ$3O20s~zz3aA_<x+TZ{' K>|LUu?r4\<-k"2 kRz<[ 󟳟cb*ȭLJG2_~MpF6O{Ջb5눾5ۨeIN)+;>@{죨/!}`w#a~T=V Z=:\(1-m S'Œ^lݾ>s.m_A(8!tWמg~G'֣uxh#XٹrYv0 {Ľ^^Dy^tދ)TmԼ-G7S!rq`vJӘwb[ni~1 (;+7&·@ 0#K7 Ul@ W;g (r}Y`K=1mW<+^jȟ|іw kR .a4]{-^?bsKkCT5\پC4 /:J ̇FH+mD)g{ 9YQ.Uo~C]4|QHo3,|+}%`n0g4"B$ʕKA7SFW1O=E6V5!ϥ$(Цp;  _o9mH|Áe,l<~h_m#Cf=nWMv9r KCU$tbFҳ,Crr?5rPN>t_ ~_YUP%V.!tJ~5ö7VN0#P9/ڏShZ{ʍKߚiNݿ4lQ,i\-CgO Go}ݖ/ԓp}ѡGCK+ɉ19ݳjf?<X\ RnR-~&eps+靻q !0Ak(Vo,~Tsl{e6yBsܐ]"m'J}mC8ViOrGtAGsjm sL 8#pf mn'58GDEtBŇpcKo>UTY2|îwuD^žp%l99g~w,s Y9(?_ПCZz@]%f`{NG=*膇p]O괧 8,`%, >M h#NsnG=&fa4Q78"ZB>L |/8b 9d8'Ks 7JhÝ]CwƲ ) 㨂G=> X&rF'=_$;{#0쁧E$&{`r_VپN_뀅VHލ{ +eHntC 286tE^im8|c*o[5wG`e1U˸)77b,ԴwAcfAF?Ir>Nsuop M9gwA+'8">6 LNv%%#K6a@1v=,Og,h9yCX_b! $2'?pnulp/g~kv=8n|hYвBa9wD΂>ySC㐬v|eHwW)O*,yK/HG=b8\Ϙ>@/}F͎g^Z[VJs5^P)nZGଓC6 (^acQ&:o/>߿wl| 3 K▇ijBO}4t .oЈ2-Gì5-|ol=fMKX%rn*Lުї/9#7{sڮ g OqA+iɾHmiٛFi࣊KSn<-0Izns͸;9" B$k , ;"w#zP͍۹Yf:%o_LY/OX },M (;6;/$ e]i~.PFg˶4C۾YafveGTefAOaQ6v+U1p|Ù6 YAvky>iC\FM϶̂l(%a4OUY( Jj繞<IެvtB t[Uϣ$s M&Y rK?h7 x(UL=~TҰt_m&XQvi~U+̂ 1"[^aoݲC)xܖn+&9×Z.U >FOQ{Kp Msڋ4-0eu浇,[) - azŠG_`m -9[<C4P&7 < ۨ-oi7iʝDk&Ll CmW JJXg֠B[2$[L`b3 bCѼ:tZ:;O (ڦrQ՝c6v {) iv z LX5-sJ L\j<ء%zbƆǼ }.ŭ,hCSZ[KdЬ]㳔7Z.t l _+snn G,m-q?Efm 4<\r%P>,V{ܤLfIo9]Ӿwy 1l(\wA[pr6qo&L6yUЦf ;qLUGUcX䝦9)k֌wAR];Qk/qXm@sފCSn-pB. GF@\ LN{zX>F84{kkC,RɽWd7k+sFf3NbU,C:HѪ`&*eHmGd-!8ٳ;]Lzʤf8.R5('am^B' Rt::1Y߄U[8g CvDӇl8atI2u`q셬D4TYRȬX.f3]4lZᾊe_#F=c*$fA 󉨋^1 k=M1̂N,Ӟ_(չ'@2$$U'%e1Q+1w;s0i&@T+XF xLjva@e<ʤ~#RϹe63to*;dorvAG'!}3돻ܟKvAc(l3L'j6l\u?&p-`K}+ 4Vz^z4Offt<5TUlAOXon`GDmز{ _xMN̂Z?W!1 Pf2m V_~D.XXb~,YOljvzd0.nwYj yyZjjA$XRf/'sr&6U!M۹;YcEJ9b˱?ozѷdI!dP"C"P& QϸW/f>uZ>sh@p8Ĵ0!rE jLqT]F?&{HIDATjo mS7R)7֣aǪq?[Mf XkKU:\{ZF 7Cye[suGռ''&ilJPxK/r"1U {Jn-4C%:I[rK[WUqrh~ɈУ]OBtA~~2#ID2h& 0~GVadTLf(7m:fAEoѣy8~R,;#V%3{?tS~.[63mvusT?+FLGc4G̍W~Vv1`M!5Ԋ;i"m^NjHۨ%_'?OG导.":C4ԏ| RqPɷcЇڐo⛰lGv.C9]НˆXd=Ǘmm6 ~&=pK]{.C|F4k5W N֕wt>qlj[YQU*inp#/ uNj7|ՏL0 J,r4^fT+(N]嵭=yo_AfK ȧ ʥxnJ* ;„q*>h`#>-`!дAml aL۪3MmYt\^[mi>yއy-%s{5Qқ]U;?lou(a xݠ=b8 )L{eNk֘KI鎪ZsX;ex_͂lvN;u\/lx3gܬov:r)o险39mg˓9`y YN4h6/:vN{2=v* `lgLcuշU[|9gz]']vmplm2'䰾PrϢU ;M8y7VfCӐn\;9@-ٕ'pU^6I/ͤA|JS2&+8Є/]pRe'O B[.PV+c7/}Tv˽9`vMZF/?ܕC[󨢼gLp6݆A%8"2Oɴ1cQ.sֿż 8b׻J|]מ*ܤ{UX\O|d{Rnr֥=/:!m8 l/܏-ChA8`]GIC9zጵB`Q|^օ!K0[Emy6ɜD^pY5P?jO̱>#"C\/XpUIZFb~Y_=(wtٿܐvZ_DVpJ +3ci;oF#Zz6%ƀSׅUJ/ܨzǸ$] pܡEǶ9~1`M{.$~ș#Cjp鱁]s<}>i>yNdLx.m63I;9ljGIMj (Jy;wkə`3 ܼVE6v+#9`kho:BߏVY:nczǵр86zm1핯|uCC'TÕFyJu>3c!%8wEs5~ AaKi8P|ZazBQ:l {Ok9e!<|fv9G~ 5MUV[} wBQ[P^I|;"۾qao0ܐu$:m ϳFvN:`-E5NphY^ɥ:ݕ擞/աxRU%\%vA7?5N5rUѬvxl&'RmoS&.USTgq> 07ϜWgN*>!< }Lp1`6uq(ԱeQIܔ O =}wG4aƪ6ևν!B'vgqMoVҤhzݖ|bkTGj&Sq!nʁpt*,KO!hb?9:KKpYL\RUGVI/J8!=ѧ͊jsX_pY5aXBϒח<vUUYQޮN[۪9>?W#g>${w6Ṝpw;Iae/^[7l6G-X yrۋ H@?>drG0> َ [6Ԇ/6ܿNU;e>e>lhznCN _\!ڲUlΝD_d;B4N4 }w޿+ѫZ&LKːW%RI3/,uֿP潔ԆȺ( Xw39bC 6 Vf8Am6tb yfGyWfA0S[PVe6st~6~3jn{u_ckǀ5)r ޫQƏ1)3] +C f2DfYF~jꈓ=̎%~bu~bœ&Kkl$kʈ|z6n9O@=?]61=mgʨKv@vʅm >=@P&oj;p(g >=[m+oe>rGjӠYНiڛ}uc0뀁.Y\rB>_pWN8=K; TXi'Uʶ٣Ww] Xuzt%IX>u2VE+ac0U75ӣn6 ɳcU?A+Nbkp3~EBLx$CUkǀe)_X*kQ/|~U 6qL4/ *~ɯI js ka]?b&af6Fg 4Nlް6A4`_. Ү4?؆y @yvI_r3ƳFnhOtQAz , |^I6Y…9qRvJ=,=\ + /ٮ'[[wI7n:=6IS袿>ر2$G^)zMkPgܺ  x]9ǸeHO2li~ZU5g`33m,_,^ 1IMD=&cT;#IˏH|ZLٿ0b (ї.h6Z (m/fA,@`0 X ` ?!ٜLkIENDB`gerbv-2.7.0/test/golden/test-aperture-obround-flash-1.png0000644000175000017500000000776113421555714023167 0ustar carstencarstenPNG  IHDRKbKGDIDATx]rTU̢ />7e@FaV!dfEI$ˀ*ITr}4)J0pL$BK0HNل[Lh1Cɧ˃+TR+BK x0f`ȫLYnc ^10`Rn2@ ~ v=jiEocVsw?!J  ̷l@OnAνr;)>28ooi֏yİ@6`{c,R TLbc61@WxVanۯL{r , ܥgnj܂OL ، <`X0;rA @GK$nWk;XOaCm y}UxCaϩ&0 61#4  ͞dfxg`8m o.'[{{=Cp[;0wvbދ361# x}qooèSM`0ll*JFlSl $x0` tL13Q`'&`dMcp͘ 6-cop X[r xG33N kx>2  WXb8[ ac  ~1SBI?̉_м44[_!07f݂Ȍ;'`E?\-Ƣ _ c @ @ }|lL@ @د!ߪxp'0U.f T)c ͔ 0dW"l% 0Ll['4خX&`(o(- =m F [5 M/,cf[ru;tG/"`fs`ge%00?C00ӂs[L`b%ӈ7%Ӌs``NK,# F} SLSΌd =/I0pK* ܂qhԗR_r`M%'ރ'4:%?/pEK hp-K! ߓr%9I/E 0̳ޏ߁+W{0IϋWx}wF3toJ Ӳ8gzd' p^0Z齒a.u{`({%ܖ";JJ|wITdN I p4YߓpZ=i0K 4(7 lE+ ? O = C`t3+( heJ9 ЇOA@`&X}_ FNQ `K43g0l Ly 2@W'`l`-^הpziyX.ϑG9aDc&0J̖r PZ+y"0!u_C?4yBL˧ 0-rA7|!a=fs.Qa14<āa%!2\ {헯` ߄U= ^3VF93 S[=꼃a?a07;aMN,ԺM뙀E4 @ &G4"$IH KTK(GGP1C '΄K*jH MU$0|L4$ag'!\>܂f7ݦeQVnLPQ[za =ڞձ6<&`ʨimzap=^q}lՕkp=sby4`vf! + 0`6gN 0sa[ 0`Z0pA Y>`/8|A49\yBL/.|p%@#Os0M' 0^R1ӝrh`piޟzk\rzqޏg icY;^s ½"FẤ*ypaQӄBLpQ pfKQOނ>\rLp%^IwU\tJtS-a 3pfC%-e>ף|8p2C)^pؕL!x/L`|G3 M!x/F 0 ,-h0e> 32+?B}C Q_௩/@[> VL!3_ͭ Ic} V_N>6X}_!23,|*>Ǿ V_"2,ܖ(^.G/wS K/S K/OS K/OJX?/0P_͋0+=V\hGXIENDB`gerbv-2.7.0/test/golden/test-aperture-rectangle-flash-1.png0000644000175000017500000000463613421555714023461 0ustar carstencarstenPNG  IHDRKbKGD SIDATxm@љTQ(ĿҀ MVQljwQ)o=_[ޑ@@ `0 @@ `0 @@ `0 @@ `0_~x|]6 M~$n0QL30wFz>_Xނήo []_D0Hava8#hXfQ1`/MFeo0@@a` Ʀn`0@@a[`&VmŐ0h¶hT@ 0׺r`rܘ  @@ [^l%=؀ `0 @@ `0^l/pY @@ `0 @@ 02 _s zߗd8íusd#pgܥ-pH0[аM0vd4zij^8VgXz@aˢp,0w*,p8# `2,p6ߓ,p= 0 `0 @@ `0 @@ `0 @@ `0 }<_gz>?8 @@ `0 @@ `0 @@ `0 @@ `0 @@ QG-<܊  @@ `0 @@ `0 @@ `0 @@ `|Wx>?u$7= g`Wsd#pG3e |cy v; 0lu}p }eTa!GCƀ6Q: 5nG-vp oǃ[C( - ۢQa\vuCH `jqұz DrW`0 @@ zX@C' @@ `hWiW`0Zztl@@ 0׺uCH 0ڢrѨ0t+¶bHEay>$`a9v0Na8l!`d9jXGa!2Q;~g_` K/4vYe^ pgdXz< rT&pC?{'$4 @@ `0 @@ `0 @@ `0 @@ |~# @@ `0 @@ `0 @@ `0 @@ `0 @@ `V9²eIENDB`gerbv-2.7.0/test/golden/test-image-justify-1.png0000644000175000017500000000467013421555714021350 0ustar carstencarstenPNG  IHDR5bKGDtIME%? ZIDATxm@@!JTAQ("o %H[ 3<x{K@#b @1 F@oW_߶ӝ'`6h1 - @xr" @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#bco/ kN{25eBUL{,s x™ l`2ȣ0 @̔tDV0m`Vqn72t( @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b 'E*hFbsUO6476Om``p-~]ٜ¼]mJ7-/N0@ m\8+rJ:ZJʙ{zkDzUt8i7NoW |(ajl{f&<s 7=` }  `7P_8p#A?CEA3eg,?믴~Ft"#8~RKXE/H| &SAKrb)oJ ONKXC"%%?˴ߓx%ߐ?yhiCoo?o?gj&t+wR,LAJ~*]"Per>m*vՎ5)`l<R=[:NU&B4'{I,xXOeYGdDzHP:\5 4`lq<)M)Eut Ŗ L! ?,8 Vi,eR_ZUɹ@{;1H6\yi VSⴠE[ $͟"V|6=`G䙲b/A9T6Ǎ\B(pJ=zҕ6OQ+J.7Mbze7j|qLl5NxXpG9ʘÈE?u?a9< b<V}6J2M/<`@}_5t0^-}S}ÇJަ!#Rԯ x~._/atzW mCX;7wFCGjp[O9'no3Y;p/gFAkjjUMKHzK*J93\)]UyO-d>D}Irpu喪e6(!ebxsQG45]{3aAn|^%/Z8ЏyV_^xٸx)Nd[;:x'w3`yz!6#g|CX _C_ngkHR^$\K7?W(eŲ댗IͶ)mt56  oNwsW1xy =.onV߲gUyJ!z^-EoϦ4כ0 ˱v:A]c7&*3;U!=T\k)Γ!-ʺWW5>tUJ+K]PцJBmt5c >'9zMҼu.g3$8eK].*/ݯ0[K 4g9FRoK pI+=)? cҡf;2f^L،4 GưאJv%\7]m7BWTxCګ(<{̾WfKXm?ހr9r e]j&Z2[Z썉s^iꗜͅ5}PO-qt䠷[/e[c)I}¢BVIm`d"AQo?B$X ǐkӮVG i=YU@Z7ۢG]\biDwiW6 2xfC_6"j6act4l68-Ѕd@/#45ƶ?}] k0Pe[gá&nҿB(\fXj!V'/DBGWjy:[~^]71dž+Uec0b] ?RO4쁂G$ˇ3 ^(ҍI~"k ڂg?9WoVJYiYΊFϖ1xql8/ຉ6hZ^T#ˢ*/3lbH+j.Be;ܟ0M϶Lߢ) X6 D;B}BBE  `3^ ʙS7! %eB%F w"x xx?sNMY}!h}5gu*4uifz]U[8jSF.CkHxGI<>OWWcL^ >z_5hy ) |]o:ЫW#*jmƬqE}@dȃp5\3ɢP1e%A?M_Cp<lW=#" ~Cdeo7>A\i$Э{'u:A7 ZP!>~ 7Kb9x90I#S0/)7p!jԾa=eBgOrfbs Rtl5i/.M ;Xg/}8Sjނ7L#fkx,6[PlRS6ԻYbp=7+^>׽h%X.j۲.NkChib)?n$GzDWoۄfrbl${qxϷd*{'"iqW eMM87o*8"Utx*Ehd]o+΋4[7.;U\,۹v?b7x y .Ŗ.߿688 y\#+{tqM$( Tjb.[<e~#~#SmbHN~Jv ZJ(.IG Λ 2WSTNH|d(M&WxRF _~NsyF{hbTfJQJ+V/C> NE |:/MQlj^-."Wp;x8; }o(]&Zt5gw?P~E'۷<_ţyg-)}Yo \]on V[pȢܵ*l>f`q8 ޶U>d5אS6])W@.ZoI{D g҅ č=2efc`.#9H7qes#/"s Yj~akޗURf5Ƙx=oy>]"r{s@Sؠ(Mɉ2t6+_ C2e\?LSR!J ŵpWPVќ je=^mo|^JsX˝VR i -| uf<ݙN~7Ms|pMGWQ'?HDFsbfaVax╔&X\E/(Ւ4}:yE}`vjN٫5t6uxXV | dkTQoê%9Y֩~xU8w6Og+z;C5z]rfs+%׸6wWOvѳ,E :F@I}uMkյ^ȗRr>MrI8- N[΅:Q_=/(jqL)5&W0q봢k٤G]vk0EA5KvHT j#w_9{ՏرjNdiL޸Q,^snW]YY*\qˊ{7>#@i?H}KV(y۰rL4ZTRZa)-#\+rheIHGő4#Wvm,ggkn.!V v5|詫u,mtJ RJ{OrUW}zT>X8e}VrJi,;ʋS#TNY]1kC9%-1(Z숖?ҷ.v}ٰaAWf0ͣgSRk=%ݎ=!9fVC:&qT}ۡjoL*!h6ZqPॹM0 ?`Bu3p*0zXnGڰI,7Rx^5xv*3Țj)˘?!9b괅Q?rFlP_}7+ȩ-/8@}B[7 .eLnVY\im"*lbn˶mb:Oܾ^` ͻޢfۖa)֔K[K VIAK*S4O.Z^^nt}ImE7w%+@3؃SkeYaAK4>_M\.I0]Du  o~:?y2݄,DI6.*ѯj B^_z7nVho@ߕO'L՘:Fx#;Lߔ6/;W!I+6[Ezpj5 )]YXԲp`r5M 5@Ғ`h2.cFTf'(Z2ӳ)x7; ;ۀڛpwx("lɗ;.gb@{=?U@Y.mb><۩TJ _z#Z̖R,ɣ4aXwV `xPCp\U]%Z`lcU@#. Q|?J!C"Þ r_Jcϸ&.7F;Ŏ-|'̀J+ҡ&+4^`Gi3рs %7JCJw(cH碕m40^B%lRĬjԆR5fb^fY8+j4{044߆xqJúN1ӽhȞ࢝)161Zn (wcmEv^cێG*bWJ4e,lQ6WXG)G:nh/ c^Kfsn?v!,pQ =:12J魌 ݠ$oSBY 5XOq=CU@,i+TJ}JT-KfC}ٯ,NsX-^Y4&sT';:Z@B2̗Co<FJbYҔcԍ)_hmo/H. cSݥLZnIsXRF.M P V2Ӝ[3+=m\$p*eTAU֞>WL| DlX-9OZj$ޒ@RBx7]ቦؤ?~X4 JۺDwz';̚k Xw@5B}ůMs:e9JEyM!lDid7%9lDav)vrvM {1`6. 0؄Cn-45X*m/"εMR۲ :C'JBW_6)Y%Ue5ttflaS+%mIT'De?h6JSaHUγ%-u,h?brbY PZWj]Usl*޴jsFnTغH ]ЮfI"^Jf4{ IDAT=~u31X6Y18\W- ǑX}e%tul0maUp;vŒqtye $KgYn߉TZRF. jВY4 L}ڍ,«t㍮><~3l8ވ?\XpRW3"?رutIXl+v&J`Ō.gM*}h,ԪCRRu+LSXTMRjȕz4x5R"+1 H;x?L˖ }%lpXjd˫rʊ0^}e{R1گb&վGdǎ`ezn6MoKpg*b+q*+$9*[9r*=`H{Q cO[ΦnLFػxyNw4fV-6k0+SƮZFX\I1aֈV@o^Hk vh7܍<.Nz^VtKCz@AW5fRPU:~EFBN=.0%6R&AF`%7r˪ﶉm \W(ъuRKoɦ4S_lzb>swym=NJE[+) 5S/z*_Y*PQ&)C/*Yw~H#3+N|4t![0 Lawz >(ShX7\)whzfeS^qk)w +4t,T 4<.]Z.ZMEXa\iitJn:GU<ή;,zZՕ5W #4lƐ2l4| /Cչy]uh9Rkb凲RΉ]u-ki@1^uUF&}.eҒD{,W KjҍIzFʙժkZ\9 )M2fp|ZH6Zi>/EkGVj|t`KS"M1`)m΢.mڷDe$w\x%+nu0Kk$PP3M.9Ư)~*} ~pCxÒn,G M@eo|Lb-)lSa.w:+7a`ei=78z[oƽ)K`)nXjN*I=SKsyd˫rQ&RT&J~H#,]EoG8̫C zܼ)NR:'kK|gsp+~<g^'v,Vt4I%{Jҫr,ktK7ti/Wmn]2fjEvhsJ"9Z̽VH,0٫쓶i^uF'R_*-X5 7L@Yr[&v[Ts#X`3?]5o{t˫s!<tUɻt3K\fM zSeNvu [TrR׊NUR!}) fkwe-S-rk%KvosVq AKL%>4/r*Z%5_c,SJL*6(8Cr+[.%= Zш]Zְ+ki[*jJܫ< :lfyhѽSA%kl} ؔ^əfWoiFX~ѵe\5hov>LF iVa_G_q҆AgbZoi֮a5YM I{2i6`A'#}50-/ `N`%l,j#޸o!Keo}}tIt,yHJ JgՈ{G%!ۉ.6 ٤>-\?DZseUt9ŶPd{eC=fUIV:RhƥP+o+P J'ٯ?X u4JN{bo>t fACJȫ=`;|zhdOQEZ /\JF̨=^)~pm"-u:]sP}Wu?˘2rT΃0 VEшy,{K$J-M wS_-#,KV qk0mÊ_ZM,|髖苪'] ކ3C M=V CVn-MB+v-$nUiaz~cS D?8XU"WqH/=e»|Ki@U%K/)+œo mcr'x-l~au]DuOmҽ7ƻRl\.J:736PXjQ6Y6XEw6#j%T#mY*ʣZ%e_EeZb ֭Eٰ>#abTw}-Gm+ `J};յ:KN_q֌ D&VI.._D,`ʰln\x1XLC\IfUW*R}Uhnh6i,R#[ŭ*k\-?/xrʁƍ.W kZRj`- 8K#@{lwےe6[|} iYG—1cMi^=Cv*nUimƅl%?'pHQ/9H8o+px w + N٩ZR̊u\|ƕ.V 2k,AK3$مfq^$ۤ9rPPamY@P%ML=k=Y7[qÍNevV4ڴ7,!ޛl 8ROiK K0=+;x? lKĖ/hV5 }Lp7 ld(klcQslg}=k{b63 $c›aA&P6•r|iGu(K%^=C5vn`ӋEhg0z<?]XDQ #J /8(] ~mil W/ -$Xif^GcqU;mxVoStK7ӯDh` BCL|]F?&VPFl7JoU]U]еf٬hY)EiPS7 IehLe@U4kT}{{ϴ_f/sV:+C'*$+xW7X r&yn/,69 {7lU<%ҙBN-)3eE 7kXxUiւLr4+,PjCevJ{h02ȣ=9$ʃ;[5teb"[iQSGik`?x"lOVq)6C3Ř=qn(疎q[t NUHiƴMI*[Z\L$7Xŝ͟{#IiUz<n'\ΒIq:7llR5$Vߵ| hh7KIn;b|QmvbfvTyp'bnR6ض|D}a=)y6r+XtI^{f5ʬJWj]ئtE*Vj\+X>l)$OYR;: MWpT2vRUR}xaGDĨT.HìK,xKM)ܹ!,2RsދjJ^tUjieSe~ė2r!h .9)zvkqKڬEZC*O }}puR_eQp~%5FzE/jA-kYLRS)JU\Vo*V-?SOf"_`@Y98㘫_a7>0N/#z>o=FQ߮*R˵2AtC6<݀+^x|"M@WfS14շZ_1F+j ޸+Osa# WG۔۷ ꖔ A;=:~/9zeU!eƟYYT'$,#zvNpR4Q=#'aEUYh<+)2I?W{H.VcVY?L@2gLW_*;*ظtG*X6#hdSF.Mg27L)f%Ko/-ry9UBZE9V[6ʳd}0ԗtmL{+)f[NBv Ɓ@#QСvJ {TkBpUZŊqm=%]H6ʍKw_W}7".mIHX7 ә2 }/(5Cef*%{s43f ZqeFjm8ADn9C*7lUfzb(-:٬G~mEs5<˶+Q񲤌\oN͵#m%Wz1RfQ,ΡS_+m&Jw\M~lY=>7 {$]s) o)krv!y~qZe W;֩VQZvoX~t*3Rz:`_fDFio+USR_jrK;GYG*ٚ#Qm>/aN I)G^sw'ʹ2~wνfEF/k >]¥Tڦ۫R&hlcյfD10)"&Bf<%.ZZMMyHaoy[#:lVsUd|7Z]H;%p1)5V銽7Gf}د=Ӈ́䉲>j\4lکMYa%K7ȰA: }Ia-/?ͪk"]h_J=",+QC4t8y{ueQ!Z*UU b=݌6%P +ulƔzMYhtx.r ߷zQpؽ&KػX1hlq#뎶uf[*^ȀNh" 4@oQ}Ojw,HdQ } eO|^ &S [TeGhVzh9Ig-,(eNQ}.?{|Ͽ|/*_TOlji0~H ]w:S|{g%?[lo{)YeiE=Jw{(F\R4)dtQ$jVBg.,WwpZs }߃s+q=` ɪ*7J\,_ aWKJGhsX)(FCFGzt6'{Jloc ):V`w =h[Dʑlzr,`flW_] YނY/$yF]%wڴ'5bhQ9fu͜ʷͻ|B3d6) 98o8yj2«*?=)v*օ(J-[2㚹1eωgPYrf̊#1u{ ʼBbH`:VG pf:KeϠ6*?E73M V-M>dU_]5BWGP,MJ.jiaBI_5S^Ϭ% 0u4}1^K~뒛pH`eBd,>끺l ~6T/ǔΉ+Gs\-m] { #Ks;]Kv5gjn Ľ*Q`̚5 '[Z7^shqt/6^Rά5f̗lsmrVjpĸ؟q]5@77-- a.M|nF&2h /{H8pvWoL˷vztѬFi ege#-Og5 m6XZ[T@Ebu_x1Go/,tV5m/$ U4ZQV^G O< ][L@YS@C@V)`хؔ#V[֌V,YtռWi>۩,cظWy\w"\m¶M7SEC_uz?+4懢U*,K悃5x@&s.KudC3T(eܵjݦ2O~p0sqU7dL.\vܛ8?<)tL .ެ[9vjQIDATJ6dP~ջGhIo6F_I1EU;q\(EA({(͛wѹ}ؘa+zfي{~b٭G?e~H.-jC`SfYג¾} œKpmoS+]RZ )H07=-~rb.כgH#q˵*#';jη8-~9Y_5_|2M^4>62%QǘItZ\44+WRtw&rB {Y>EV SӪ0?=:Ro,m)swb9(F鯹ͷaY=d pߝ~*uy=uGχLˢӼ^!'l,QxL7@d6WzhXBrK3qhFzhKzY gлlw2v 6B{.bf*s&S)eS:%M8T[#٣ZWQJ䣹K0*Ҳ{y=f1w]$.ykO9 6o.3Y+I.MeE]#F I]ZXУ{+3շU*6=׾P?efę8tm!';髹LhyG؎q,~ Ϻ d j }Ӛȅ\&yL0%Gs_W-Lv}ܑ֥^ cTAi{~?`n1x|*ӭC?#\RcNAU k)s,>tT{OA)g-,Լ]zl>+ DpwNHdFgZ)|m_ x=iL]pӕGIKS`xz o&zؘM_A^W#J_cN_#%Qd`9o㝹H2{ . Nޅe߂c<`cULaܾȁt/IֳQ$:<ॕhY,M2V {VFcWE>$_mѳ*[ոXgo_JBqi7AJA"MQG!E(K]e9V]W2__r=6HO |y,t;ol!$<`.mq:#n+qs`r(sޡR!?{2rV;4JWHD{AQB4{!x{=y@jgugu77u lRHqDJcm]*慣mqz)+1%=2bZ.om纥@ulc˴cYyjs e$#n96E}m H]RyNi0ױۃcfwi66ԆfSB}F쳈9G}{q*gg2re u@WxaW<'/{UU;['*MOYux7s^tUP|9Дp6r͝“ LUМ-ɜ(]hp9U~9Wm|6fMrI{)/TzϞbO ؽyl#f}WMҽg[ 11 )rnty<GBr2 8Ie ye3(E.7UUyW-Tҋn70܅k.>b2x׺K}-&Rb(Ks#tNK^m_ MZ^qet3~{μ@{ ~gj (7)ҥ4dI7p'{rpX:i\b{]3]:W_65AY<%p"Z?})ͯ@@.4pbRrX׆eۊMi5I +Vlz-KJ,B =xGW=̠N/WrvoG˛ԱF[́܆a-^>o=N'fe:pwHH!(%4Y1Z7 0u,\dxtKvs]s}KL1 FiFHݜjWY[ NSbY+}5cG91-A׳z+\+DlSЬGhHp 0.a ٜʛI>ljc ft*g|8rwIVm:`G^rcJKyK6JNK܇kyٯg޲x;Veqgͽ tx*@@t契6[2&q֞%]XxZfu" p6`}HjZmy:,v8B[h9mYco:nXBWo[&ľWu pZoP NSh R%WZA_) tDFFd#fueql pZWTԹ{mQzˬ jN^96>S78F*+=?νs˦Sx=g pZպ{zFRShY7gZr\sS/Xȗwr5m ˃ ijLP&3f荼3 }'Yu=XlF蚀V){M6- [OtˍKVޔ%OoF@4Yډà!c[O[pԹ~ ǁrz[l 8ˎOwسY`=q`Yl4l66= ^A< w'y۽,' 0 Jqգvdtm=NLʞ(!hiZn'2{,NHaA DWvL.7n[]t:>"셃m+AN`.c:N4y`n7QY+|rW+UTRjF0W!d~}-Ajb~7O;)ssϢ@)6`g9Bͩ%8n(VG^I;(z;Fj uڛ!Z# ~nh'\ۉ> <.6T1mkvy#x͛4~kϦCo_{-R^j2wya>8SUx^zf\aI{{0 8 ˠ GN䑍؊ꑍgG h4o=O2RVw^ӝ%L-횟)UvsUʅ%=YӴrS \L=*d7ކd)}SMA_4]uo2}4?^j/MgcwT]agX5n)1yJS:#@gkc'`BqFKҷ@B%N=,اV*j5*piݍ^u5]GZ,㴏HBm8?VS37KlZ>[UC+ג*鳯I# %̣VӼSRu;-2lMD/I8<'26#˽4U-]#[k=il$˴IFQ p~҃aSNU}Hh*l- U/Y˨5f}:8vn;%͜u;;k355]|8,p'P}P,@qv (~ 0l}ٜLUL ~WrR=cDZY )-273/캣0$SLCmIENDB`gerbv-2.7.0/test/golden/test-include-file-1.png0000644000175000017500000000552713421555714021135 0ustar carstencarstenPNG  IHDR5bKGDtIME  !vV IDATx!o;JUfdiuZЖ;# #;448Qn'y [&pՒy=? ck%b @1 F@#b @⋿_~uu9_I%gco7^0'` aww5x~pt\0[[7omm\0Z={㱿" p=z1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @7x?{Di|_ÇSNxݛqv޽ی~xS;;/x`ol|?/x qxl$3V88x:vw?=#G.뱵={ [[3r?3VYgH1pAߏpl6gߌ3V7g8NN^Ξq~9pl l=#ɗ@&)8XOSpݟ=aOw?wz`.O1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @ͫrJwzl6fzX0뫱^?_p<H8?ߌ7s|r0w~8>~1i1r<@#b @1 F@RJ3IENDB`gerbv-2.7.0/test/golden/test-image-offset-2.png0000644000175000017500000000377413421555714021146 0ustar carstencarstenPNG  IHDRKbKGDIDATxPEQ SEJ)qBG4Y "7Ϩ \i=X׹= 3̩ $h0p4?`D0'1C `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ piZ:8u@K/F2yt$%]g(N\Z%ڣm ytGwnD7PLQn#p/z4[5̗ϗ|7Xy~^~DŽWꅦ9tGaxJHK$; ^>s0<ÃΕߒZ}w{hx?b#,U3 l٫V {-y7Z)N /}a:jIy<{Tt?1ugV[.?r vl^k Bgz(w+t#HQ2T@|<ӵF{מzԐ!.gc9Dax=MAۃf$ / @Fp sO |考VnF'zkǧK}u|Qs{\y/%G9fkVKKYf_޲ +U+1Mc4T'|W"3W;QbO[:'vYWjcJM׍f*ޠ*ZM\>3<1\-骵>qnwc N*6Β3Dp⭕3 8j\/ZV:׬=HUMl"|&˕Wgo gSO)5Rۋg0y~\!]<}Sy2!څӿG TYOѣDymRuGaece[]);$01WAW+l/ː.~qM - mKءF<ø\A'[Py 2~wҷ'w E`!wg-e3hǀ | F"Іc{;L?gO\v3ȉD;"מ$1g{Gٻ{ @eH=gx^;.їf/|+ylksxΒk7nscѻv$#g8HkU6j\yrsYpV8Bk#A3a ZV^)sY<6 ۴V?z#Op<+A;cɪlʳ؊lr$]xb?~SXΒyjus]:XHk>|Ug5SWNpmJsUW81&y#Xc;`k+鿡.ꛩd2[gaݙO/STñLX ]S#.ԺvϾ)gOvLl\|=Ku&5w'ϰUrQjOl"9*O=}ټA<8mmy^ZQ5m䙎T<ͪeRw^ڧޙg"{?OihG캒ŏ"_;wr>0Cyթ|/<D+a-Wsq'*M]Sv'T-S3ݑy#`36wQ!,yCa+ĵkGկi 0Tb{kjJ Y<3b#99ķk7L y&ׂ D @U!u `y_ʖ H9Mate$#Bي_В/~tܼ"FXd$ 0<)hk <vյM-]9yf .);"CN}>3pOjh<;翹r)ݗyLy/Y,F"ϼ4\um^ǀcʎ3Г\/;:`Ɵ 0׬$p>3<1\ZʔOgx\m[ytu`pA<g.ihBaUVAVCO㾥5ʙ3e{=+ySʌs5,Ml0[jR f7ӏ?IJo*ϰT4UywH䔪;bw)z2|Z3 lk1X5J&y+X/gҀ*&]Cy^>E*|P̱5 0AF^\\bRU^B ;.O؂<{tOm D%. 2~1pF"І"'>2y\{v{Ĝ]g)@w_Ǘm#bpDmzGD_ޫRM9Kgz͍QgGH[Yv<_&81pm|^k BgzY&8y8؉DO# Uۨip eYY;[t.̈́3^8BkudZMZ{LeS3nZ-_荜>} 퀃&E.*ϒg`+bܲYvUMa9K7ub"UUc\-YzL];)+7&U3oSB e-ߌ@cFslvE;7B}3ehW qkum?X}sX{'#պ"+e4gKnk3:O<xLw]"ʮz",ghAnV'gO̼wzKdB,W.fLp%;jmq/[J6:yM<g;Hz^{H󋾾`Ί"yR[u}g3?M7U}smbi3lK]uyn#ty-glV.jw*>EG<A~Jpg8G;gו,7.~ko'N̈́?˯}W "^ k?1Vikʜ=8j9<*ގM[gW4s4ɟ$lY^#*3TWHO_f [!]];~Nc8uI*=w77v/\SS<j q-)^9 FT˒g؊x-% SyfZyn@'J% )ڐIgڋ{-\pᴖfhϒ1ω9%]K,9Mdo31սm y q%k8nsk:WKyF5_<<%,r\NH3 13F"ϼ0@d/;t=w+b IENDB`gerbv-2.7.0/test/golden/Makefile.am0000644000175000017500000000536513421555714017010 0ustar carstencarsten## $Id$ ## # awk 'BEGIN{FS="|"} /^[a-zA-Z0-9]/ {x=$1; gsub(/[ \t]*$/, ".png", x); printf("\t%s \\\n", x)}' tests.list >> golden/Makefile.am EXTRA_DIST= \ example_mentor_boardstation.png \ example_am_test.png \ example_cslk.png \ example_dan_top.png \ example_dan_top_sr.png \ example_eaglecad1.png \ example_ekf2_d1.png \ example_ekf2_drill0.png \ example_ekf2_drill1.png \ example_ekf2_drill20.png \ example_ekf2_drill30.png \ example_ekf2_gnd.png \ example_ekf2_l0.png \ example_ekf2_l1.png \ example_ekf2_l2.png \ example_ekf2_l3.png \ example_ekf2_l4.png \ example_ekf2_l5.png \ example_ekf2_pow.png \ example_ekf2_pow3.png \ example_ekf2_resplan.png \ example_ekf2_sieb0.png \ example_ekf2_sieb1.png \ example_ekf2_stp0.png \ example_ekf2_stp1.png \ example_exposure.png \ example_jj_l1-1.png \ example_jj_l1-2.png \ example_jj_l1-3.png \ example_jj_l1-orig.png \ example_nollezappare_EtchLayer2Bottom..png \ example_nollezappare_ThruHolePlated.png \ example_numpres_numpres_pcb_output_componentmask.png \ example_numpres_numpres_pcb_output_componentsilk.png \ example_numpres_numpres.pcb.output_group1.png \ example_numpres_numpres.pcb.output_group2.png \ example_numpres_numpres.pcb.output_plated-drill.png \ example_numpres_numpres.pcb.output_soldermask.png \ example_numpres_numpres.pcb.output_unplated-drill.png \ example_orcad_rs232_cm_asb.png \ example_orcad_rs232_cm_ast.png \ example_orcad_rs232_cm_bot.png \ example_orcad_rs232_cm_drd.png \ example_orcad_rs232_cm_smb.png \ example_orcad_rs232_cm_smt.png \ example_orcad_rs232_cm_ssb.png \ example_orcad_rs232_cm_sst.png \ example_orcad_rs232_cm_top.png \ example_orcad_thruhole_tap.png \ example_pick_and_place_LED.png \ example_polarity_6_vbat.png \ example_thermal_bpB.png \ example_thermal_dsp.png \ example_trailing_cd1r2.1_sieb0.png \ example_trailing_cd1r2.1_sieb1.png \ test-image-justify-1.png \ test-image-justify-2.png \ test-image-offset-1.png \ test-image-rotation-1.png \ test-image-polarity-1.png \ test-image-offset-2.png \ test-layer-axis-select-1.png \ test-layer-knockout-1.png \ test-layer-knockout-2.png \ test-layer-mirror-image-1.png \ test-layer-mode-1.png \ test-layer-offset-1.png \ test-layer-rotation-1.png \ test-layer-scale-factor-1.png \ test-layer-step-and_repeat-1.png \ test-layer-step-and_repeat-2.png \ test-include-file-1.png \ test-aperture-circle-1.png \ test-aperture-obround-flash-1.png \ test-aperture-rectangle-1.png \ test-aperture-circle-flash-1.png \ test-aperture-rectangle-flash-1.png \ test-aperture-obround-1.png \ test-aperture-polygon-flash-1.png \ test-drill-leading-zero-1.png \ test-drill-repeat-1.png \ test-drill-trailing-zero-1.png \ test-polygon-fill-1.png \ test-circular-interpolation-1.png gerbv-2.7.0/test/golden/example_orcad_rs232_cm_top.png0000644000175000017500000001154313421555714022554 0ustar carstencarstenPNG  IHDRKbKGDIDATxYr8QՍ^VEyZ}PeN$ZnnA_Cnz줡N5ZOuɵrf' u@_ x__;݌F ` m{2c:i:o0` @ @ y @ 0` @ @ 0` @ @ 0` @ }8=oC(Ú9+` @ O񕒽/lNl,p%<פK걿Y2 vz^ u.&=X(MZYI`v߇\>{#s$gm5^3x ο$\:owzlcGI>;?<o΍5|[:OD8oꭣ//4'Vn}.2O^wL󍽳vWFi8pRJɷ-ew䎴y8)LH8'G˦h |s`+ ic 0X6E}8qO5Twew+7 ǐd&y:qV^x&q6ǝ-$`v`C<}MѲ;L"m{~&i0|hpj7auPf[Xvǁ\7ŖO;< j{~foǝ,(7 0Ao۲*p7aW_~EjYJ}L N:Bwe Qe2W'pRV+7 8P{;"Xϧ6gW*æ(Ί <~JJ 5d"PH`(AZmoAmfG*}fO4$YSYlw&)z&4dz%2W-w<u~ܦP; Xg$]<trw}{(NTCU=gE$$]}6u-m\/b $+][!y 90W 1?e}VN‡4`vqe|IZAή/>N~R_|\. M9^º]]R_2.uC}_ {>Ϧ an5 ||_vLԘ}ge5Zr̷vmB<U)fd6I܂* CB}aWsSgԗ}2uߔ+S_Mwԗ VC.d)W}Wp d*%+L}2i-]٤V}'仠u껲.΄//. !wepQML we^e<Ͻ#I;i} i$22VCpHOjuQߕe=mrL+S_Y>?ĨCサFjNB]2Pmg|Ĩo&rL}x-乚%ɰ}x-껲T{Dڥpo+KU_&Pߕ/Õ} ^L}!'+S_fv䎜UtCFy r|K.K}9QE/G4[ԗv*zē ۛvkoǰfR}GvLx8`2;{ƁA}Uk,W݂&}^$rhf`rQJEA43Dei& }^$8X0) % 9!AOs6=)}^$'u=po` % KוAA}_(%@@|VTw{Qb3Tb/J U ζs2!B]<] ;C&j 0@>CUQHcE}O/ <3lzRQԗ `rt>X/:&,g{m_wͮ|2㗱§+`pB?L S郞aL/! TC 04Cg i 0` @ @ 0` @ @ 0` @y<gYk:opI^Z-4y.#g6[h6 \0s f~wތw,'@-5b$IENDB`gerbv-2.7.0/test/golden/test-image-justify-2.png0000644000175000017500000000377413421555714021355 0ustar carstencarstenPNG  IHDRKbKGDIDATxPEQ SEJ)qBG4Y "7Ϩ \i=X׹= 3̩ $h0p4?`D0'1C `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ piZ:8u@K/F2|J }x#C=8ο=ZIEza  XY KO$`0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ 0>9Yi=^xڗV_aG CN?0쿠m"@@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 P2זeI`^;#TTIENDB`gerbv-2.7.0/test/golden/example_ekf2_drill30.png0000644000175000017500000000354413421555714021352 0ustar carstencarstenPNG  IHDRKbKGDIDATxQn0д,*`):p=u4Mqsyney,ˣ]_U^*oޣ`(Fwp-x_x:VX_دQZ* `uɼ~q  @rfJ$+;́s|{#z1W8p+ `uü~qܥv+ `FvWelE pw[oo1U|@>XGQ>.t~$!in``N3ҀidҀ LC `z~}HO+GIL0m{30)"\ϥӀ lEɕ, VAsi O00 3`300&IN0eIߓtFuʐ\L.af@Dܽ Ѐ  Y@ 1yh@\ Ѐ  ؊"-ˣ$`j8ӐR `vi р  (_C9 h>3`N0P}P 4`( 152 wN7x6] liϦ~4UR\q-Jp2˘38w9ڀ_yl̀6i@] @ `ذL 22VMk]ݵ10|XP;O4Sqzu /A0; >@0$0c%D0ϲ<}d}{zHHE7]ye0̾fR2U@ J04`b  h w4`k (/\d~ O1.3`0ruT'e$yրk @ f`hXk @u07ֺ4`0N5Wj7Z:a *4ld kxϹl `fH72@y000p0Ѐ [QȖQ~o/Fzu[IENDB`gerbv-2.7.0/test/golden/example_ekf2_drill1.png0000644000175000017500000000265013421555714021265 0ustar carstencarstenPNG  IHDRKbKGD]IDATxͭ0QM"E 8HL_!>g}ϵl|:ې`/J?[RF>V`;u1X```sZ|ACzyskSp0lLg0w]ߙG(Yb3 e6q_(C0lr%; x=`Jt 0@e` z~nm< be]axƚߪL1=" \xְťska+L 3V}g G//gp0008 V"p%ې])Ie}gL'Lz$ `Hrn 0gH=CzR)> @՜kG8j^mt:N @ 0]p 2v3$ZJMO@_Jkcz:58孜MI;5_&.h``YJwFG/` IENDB`gerbv-2.7.0/test/golden/example_cslk.png0000644000175000017500000002006313421555714020121 0ustar carstencarstenPNG  IHDRKbKGDIDATxi((Pg7bpJ%D"#I#`F?NEW`h@`h@`h@`hN@IJ Aϟ7vQ!hhG Aе.뭬/]}WtwԴf;Uz ]X`c@eK$oEBS1eVOިVMWl9` [ *yIptot9 PYgN nQH{ K30ÅWwڢ5 u} ]Nxfd.QUUP^bG&$+=vnCK}V; H} p8Kg&DK #ZdMKv$7u ) ~!8&>2߿BZ#hb).{jFSHy#?8'=>=#yV@c܁M} e~0$wI{G+^ffNp9t&G5Cp҆k4 ^*S瘚ؐ܇RJXFbgUFM܇9|Ӷ>NA?Lz*ȋe_/?m܀t, ;D/iȾ) Wћy&5IGSd'n>'Ǟ7A@.:X޵abx>1`ن˭j.{n79Y g:S3+<;UQKk􃇊/b,er=֩\Uڷڊ9Ht%SH Kѻ d]jzZ["Syn'|(ЍlGǐZmL&~|ۗێI5{͟<D;UCuf o~\'@Ip|g2yV"kA~Z.a-0Gh12BÀun;9E Y  ތSˋ+ĵl=ig3 %nk|!ל {H7OUqo~8|t V_WyJ:$497+K 3LdW46Ot}R6n&V~:ӳK! eЖm.Xl%}oL"'(+\ B/7UX}Sax)^U˻a gO B/<4K'iHw- o+9PྲྀWAY>Qr]VCB(ˎC瀣IecGy^JGIWAM ڀsmgDߟ<\27֠1{*PæheZyjې.==`^rPzz&+LB6Kُ^{ j~ZW.>Yk- hpc?g/lm#GH`oJ}8N@BzzM2x8=j6Sb\bba?r~`gّ;xGsiTf ^G)8x[5ռ Y.jyڣ]fSJ#t|tl>=E[f@ƨg>,~ ΒÕ{ڍ_a͓<}BgvE^y{Qb K%ތiP9%kEc$ֶd"1|oF?T5mr]Q:o\s2[2m۔I::﫣ֹ -MK܌f&36oT|z!Rp+HYќ  $b|utGR3`лU7EM~f,z- GB/fEH5xjPX}Uj}8˯"7]b;w$~ujV>u'$ O+8u Ƴ9Ŏs˵^!>4=߂$rYg7 Y[wAP04R|a)mt Ank3!G۵j m׏p;zsvFqƻ|ʼnaƀIЇ1ܤ7|[ck_g=o[5D~8S0?sn^|ipFKO /vuT7 5QydYv(ZzsUp^_QBo<8[o8-=xk`*pAEc6 ֐2Sf p)(Œlo˰ܯrN&r&ZVIT[QI,]$t#3uc.SA߽a 0~ɵ#nȈld¬$g$s]?1V)Zʣ'~Co"rxǛ-f}6ևAYOt~L_JC;v&m\S>-mw 7d=tg'Kq^}a{- B`r~``gr`h`!hf֤_F׏$5~ pb#ߟ_ZCBbu2E0j糟ӤA߬i_[P"1  TC%fB;o]y3p&,vƼXd0pm9`k=_0\09`hϟ M pH9^'Fόd&9NC%!f̄d%\Lx0*7d*7$WY W618ׂ,~XbpaI o< X Cr?~s`h@h2i`=.9&/d<˼76nX5q%'MHfq0 4vi6)3Lx$nvl}$>i-~t.ƹ0YEYwFf349M_KոPYa$z*.O_jsikBէ^M ;ڢ4:Kϩ0 1{ )g>L~򲧯fE:d}<2"]1 Ȣǐ>O?aձ綁,(IcHSOf | i`z@pm3 K6h̲W}+@[=-X)D1 Hs12UQvy`8(xOKEp:yόd& cu>όd& ᾛ'&4 304 @04`t3Gq:dia`[bpVy4N+_TT7CГJ )W2cHxa.qaG {A3:,SYM,v\F[M+Xv'#qe$,l:!Ju`㻥^epS9`1xTÓQ*f1$"rvnP1lD_ z]7An5}j_#2 SBVAwltcpW3Eɮ쯾|U]Zatr礼?LqѤm6䟶rɝCw*UnL{KYM7C.NbɜiC4{#C c|jzܠ&IF+g+&ϖ7"G&X* S+0Tk{:4X0M8R7=`7Vdh!ZzZ/;y^9,hiB&p[HEr-V\8x#9wdr g 0?F"gG*ZaPsPOX sXD+ At3_9,h8 0ix04 @fݡ Ѐ Ѐ P IENDB`gerbv-2.7.0/test/golden/example_ekf2_sieb1.png0000644000175000017500000002100413421555714021073 0ustar carstencarstenPNG  IHDRKbKGD IDATx[P΍`uGCvS zVTTd:11fŲu.gO#;~_}`c;X. J4A.(CK5> KTu4P+؏=oSv֝|8ӐQo~:Mstzs io#ZOb`\Dt x 0.ux"MЀ ZNgg֏'ޠ&q&eYH ?kAfu >%O\  ŗ Jyu(]|G}$b|Vwʴɤdk{x+3߷6}>υ%Ds^5)PIuOC:'̀ HO>8SyfA|`*ٲK4*Y7{0}GuxdR:TɩBH_ >X)かTιP<|yF_Bd@ӺOwi iy=zm.}?j%ėJ^w ;OOl<,+~'35&ތ>]#>8r9#nG]Eȃ-tS⠰ω!yW #Na"84Gƃ6  o3zNU~V] tLC:&cSF-5qDmT~ b<>c_ήbD^n^^'_K1\QY3y#"%58&hhվxķإh|[ʑIRemPJʰ=<|tċqw֮5qRkR<΋F}=4Jr<85fOl&//|_s UY2N봍!q$8|YܼhMv,H2t9+:k]*BqAܯ= zae&mmd~/AX$X2!)??4J ȪI.ճ2r]Q@ֵRc]QJZMdEg0Ýa%kK3=*EC&}31A4=$ 4/pqJQh4'xl%~N46իE$ \$oP Re U_D_DBl{T$V? }wy0{SG^[nƐ(q]md 2xpաZh~ ue78O>kAHYfO.j~M{z/.LO{SD?E fY%_ZN6X#A?!{2B' m券~<>nH2-57/4P vդ?XlxurCV )IZEGK@No]|N30oK:<$5&ց=7܏OhJwwB]d𾄛-7Dzv:п}52_nR'NV~ x;} HOg3:29:֞Nn7M ^or蒅``1^"!6e'ZS`8GAw]Q Xz%0\}Do|p1;G|L N=\X&,$2jmnO9~>ھZ @(@'" VS-)>NG'd7WMSR;;O}߬< ,#w7M+y>}#=1tfԳ9U<+5 )>%[>cpMO璐n&"2 f,a~rvPd95X*B0[_oS ]XH~lGkRvV%mԞ[PB^N)F OM/X 1I ]7Ccz1`fP$nYh;]>rSi˙4{ܯ{΀>&Rdv}o Loysi덂~K`zNXLVʎu1ИT7yȀUd$џײ؂Y܌]H#n0T\J%w^f. M\j85ĚȀܝ</#z bpdlswSde]`AYǒͯJCDEDWgvF?=]l/ʀf2b)?  R{c޷ 9k1V҈ q|ۜ=;3`ƤA_'SWBڧBQ`! %SaUIX45^5$YĠU6oy}bYw` =[?/͂Ν.r81,tuZW }} ݧSLfą8U$[SF gO[g1c-E xhf| lMB I<:}9+a . MЀ&hGv[S̴e4AUCM(ѽ1۲A0Уx|MG/ ztpc/LpShJG'/ȷU%0:Ӑ`V^A) mM{QorI݊p[)_Zn4QOR0DN++I,J54ϐ;G[f~/ɀȾW\r\'aUuV;}IȀ[Y;QгyU\Ħj-ˀg˿'r3i>M<˒V5ˀᇮӐV ,qo)طx_Z'w2`Ɩ2C̔dmݟd4L"-0_2 . 8[(HzBTjflo&{I vpyL ܃OcġdVq3$0wksQ;5*,gytE: ,ĝv;:L ‚+dLIn=:8Kz:g,K<`Rڨ)Mݼi=(MCgDɀ -wCzC;21+wCsˉ"Dyp|(2`PGgB*r5A+yҺ 4$H%:: lLC*!=GNN e$3%}m)}31 3GP[15" ɀ}z?B)G7ܑIGG3V-^608LCE>rR$5v j_0cKY,I̔0Ȁ4AR|d@A,A[dsm03%}eR# 4$B̔LCjE+Y +xƝ(r:nvr~a!0S ͹o"eyL VJg8&n>>O,-k"c(:$3 M2` "}ppN!ZWvxl߳a?nW d@Fץ:o!f>ky&6lhX]^fˀ 2#(yi]G4@'fˀX6[>rj&N}Zj zW0tuMϸ3z0~~Gі ɼѽ+[6&w?%K4JlIo7o 89# m^3' u`aNKZ HQ#ߗQLhn]$ e][ 1ϝ #s>|᰿.oQgoTUÛ{g7-*t k+mֿw1R>|Z莻!R .޴k6 }52`!ɀ  Xı \4Wces0?e1 +Ƶ7 `h@AX@iH~*g7?IyNJf܆goM8xQDkw![JY7Ψ7G[r|k.t.j fk>nK  8%\ ikɀ7|)H ꗾ6̓XhBO @\j_BӐ$ JR"{iZG Nl_h*$PfQG]oօ%*WO|Ҟ4FCEp=&țSOk9wV@V9YT{uQ>dɀݕ1tJ`!PnHTH .f;~>Ɵ?0Wஸiv߹cO;|aH٬3ӞcQsz2&fc,}.fv%N侄)4Tc̐ .f,*ѽ.k^ +nldQiu3>KkE1 Z>xPr_Jh H139ݪQn0̀<zScQCl6 QУKb"jzFAN xt0pr^%!J YF)-k4AnC`22!Q)%.s8 Uw; .% te,05}4  ݐF7Ltم8wʓWC=apDpq jk  8x9ɀG7Cε9GOOb4 <K\ nS|u4An 5LQ0N<:0d_hK<:04 H0ЖG'oz&s& a8Hp'̀s_718L tN<:x+  p{~ w8^Xa1|Nbu~R^ykKj::3=-w8X;'< k }CSָk4ˀ6W.*:P|>`Aa}T'lN!i! ]|ƝD<Ϸ{5`_k?}Xga6꼕o%.ġwvɀ -e)osC>`9LY m|&h9S6JXõ<AɀaiF5 6so!@%(ܩ${nF5 lϣdLL>N쿆{(^qcݼHͽ%o3}@[ތ Vʃd`1lu׮v~*3;r~ė1`Ap#k3gY-i 5nG=Gbjy`b6Ac7o;(c4AdHo#Uy JliD*Goz;82`/YYBYfa֑qϼV>`M )ܭJA.%|x5ޔ&h"tzA(A7F]kEwġWVхE$qF`ЯF`N݌`~GzppTpbzH x6䫣h/5-ɀUJU9zy[['\LD}o Loyy>?ԼQ}Ly=ڲH:] >rOi+^|֑0J5^e4rstz3ͥ\$nFd|q+}Uu6*rpP4KRIDATiq@4eu[kN]zn-yy+ngJ09l۵㾏/PQ}u.=Gߥl9j>./iVǿF\Zh58o~n-Ցm&H~.;晆@qVXBwYpM<"tƠ=NC`h&p)S?59&}GfE%!=DypNcpWtšA˛HZ=t?@v>(i=l Lִ%0 RPIENDB`gerbv-2.7.0/test/golden/test-circular-interpolation-1.png0000644000175000017500000001023613421555714023257 0ustar carstencarstenPNG  IHDRKbKGDSIDATxKֶEQn[&DOs(" ^T|GϟC1#{E&$w[2 0-4`K 0y4`8mw/i0@{Dw/i0@oEg(W_k~N#N/5; U Sz8`_ @cPT Xz(TW/ @^AK/mNjX}h@~RXz*4wA/*VߍD?%#+h`*YzK=`h/>{E}f`0D irn_vn`B1Vߍ) .ZnZ秠w[q]8)뫻uFWw8' +pc/*p?Gp//<1aI/3 @s 812NxJ/ 5F8 9u5{_ ܘ 8 @ ^AyTV_ `(Im| p;(| O @Q EMXU UJ` `/h0`P,?C@ 0` ߄k$p@ 0` @ @ | 0` @ @dX=K.`oh^%-4Օ 0T3~QҪJ+`G0uon/ @Y E> e8帀 @g#_ء8Io z>*Z]IV^4"Ƽ^ϻhvR= 䆽^ݝ^DV 8lF^K湃HJL/%k2>+x%dpH ֭L xI9w0 Jq` 2 R pC8^j6xa$/0G8#KN Ң1Kxϩ^:6mໄ*ze#Ie|$ h!!M͛bh,BAdԼEoX,O/|ba/|b{y>X,G8#Oe$h{9Q,^*aJԐapQs%K:ªLJEs%Q.3\gQs)Wv{2ͥt^nose*3lߨd j)\<{h6G<983E)%+[Š6&ƨY?V~YlP^A_sP˜;}E*em*6}UWЗh4dcC/% 9 |++?";E)ϐ_3?(QJ4`򯠯4pߓAY2j6jyak ,K=a>lK_;#tEl:q¡:RD} Wh/%5& &'+Fjh12J(ʢydo|*̡ cd X4 Cg~ *I;C? T{F͛x/?FG(>LSn &]A]&ˢNy.⒇͉.9 0ЍRM.E.ݥ(0PR ^zp5.͸;KW `7\tI P 08 8/hL ?D @~[h @ @?)h 0` @ @ 0; 8ɣ_7B^1ĜIvD9 }'D7/20ʨv9 c8 4qP,50ЁLRΏ/aㄑ#ù^sa3F f, vUf ~8Uy>43?ciD 7^PQ?dG '3< } _&0<mOx>f kx"Ha'kH.|^P1/|+@^4/Ҍ'Zϐ2S_ S !gj(!Tfyaҗ6Uegfg/، )G; 8i(`Gpcd wrY^A3,\iʳY#8/4+H} &.ew즊+?3kAo=/|[߀I²ͻ3a GF?2xE .Bf 3}e0eu[i=_}V:ywy4 t4z87F xcD0,UJIltK*x{ q:uҍ(E׀s uAj{ % `g{N%B=stGB~ }#}pX~rqoF`àhp}wشn̂2 n׍CP^4/^lƪr.\;>v1y ƀõ{>)k{7Ŵ+uęU)_<}ߙe-xծyYPIXWX}j ;7(k,YdP $%)>'1iI@a|Iؾ켥XWS[ۊz00p3Te^?Tep]95Tje-.c5%l,U}Kn+Ҫ;HjkX$ {PGodNϰdnU[KUXѳnuOWj<ߝyz"kPKUgn3,!d5}ט$nF&; E3Ҏ\& g&+)>e/~AN8XQ<סpx#7>wh9'@pjfL4īl3^߅-|&yGp ųg{هwG߮iaC@ec֦ QTw 8f6g[&ViĩvI|ьw?G}Ra 8XMitE2Pq JSJS@tcv֩pi$Xỳ%e 8kqtOsmW,}@fpd0Po< ;_ڇz–խ ns+D+m&UȯF及=g+vؠ*`:iu)yh!vry:>ksTK½o|4 3i]g-ޓvػ~+穀8)qp| !L{3 .hnx4{MS|ýFΥae6 }8 ~H 0Oc.@ m0&}?mQӹaN#30=}P@+0m7ڢ jgP@T@@ xG+cڷf $t4{.6jg >kGkp^Czo *`  `  `  (x߷j*`ML׵ǀU|8az4Đ!Tv$_OY>5tPQ׳@c=} _ +k6Nd[ƀ72UBy?vN?uB)U'aoGyRCF|_Oݍf>^Vw6fq8<8"ꭄ:KkϏFsE-BY OIUo̎6Q ztu&j>0? Q{!<;() .\& GݚO^sMjJX1_M :Xo±_vivM~.-mۗ(Nxw<`jXH߲sIƻ\˩Zg(dVF-*8D6} bMzBwlh߽SX\p]dtAڅuKQr>&[ .mVj\辝C)LS?Vr*`Z0R+ߝO|j泓~\|99wH8Rc.yrQLtAO__1{rU#PWuO*`ʰn 7™tTw ZaLұ"uc- l|rnnB U K̊oC7F#UO0iY B|sV|B5A֞dX_ ]|1A7ұ-Re+WTGueN T|' 5LSj:|&exBS' ` ʑ `6$eE 8C_F_{*WE`(l0b"`ll|<&@ {0 c)мh~<~v~hΐX 8RLnJOP1`X*,of(0, u>&PD΅8M7(`ˠ,]pu8 W_ϐ[7ڳVe002\ ~hfhO9Y#V=~5A3(qhw-7=y:WLIX4#ì)`0(U,3NW0̠Vg T] mq''A 0j/bC 1 \,h3<D$#n  {{F!* @NI8:tAD7߂[{<~ n0@ʦ ?  `  P+I 0@@ 0@@ 0@@ 0@@ 0Ot(~nQ@0@JH 0@@ 0@@ 0e bo֊+TɳTl#y/7_jE61y61m$[c  0@@ 0B=ptsT@@ 0@?ƒ.*3 U"i SaE DOWhzqTY+ײfmPFQ2/[mHd HgYAdύ}7yG$Z'iYYg#FR5&Fx+s7~D6*^okz#FR5&F:=Yw7 ol 0@W/X!=tA$. __^ǟH 0@@ 0@@ 0@@ 0@@ 0@@ 0@@ 0@@ 0@@ 0@@ 0'1& x<~@F ` '.h  0gu `  `  `  `  `  `  `  `  `  `  ?m~n{<~)W nڟK\|9 v^"_ڦ"#?Xpk+ജT*pVM-CΤb4@|h.hpBptL6*`  `  `  `  `  `  `  `  `  ` ^_imGSv2D7I/cTe9`% JX@_9(@w x)'֮j9 /`KOKlAtCj%Z򾔣!S3 ?_Le+K4>ۃnR `bvO끾/ `  <]=D?,7>ۃnR yx)@} x^YzAt6Δ?6Zm߆ <'h Qt2` 0`  @@ A˥Z3XeuA]hygsr|7CisUk 2>34֪m\n)oO5|)7>Xol @70pZM Z  PKkU pSooxlUl.:/}2Z`ȅ8ilU&\wZ!xOfA;xƖYbbCO&09FVn6pٻ?;Vn#NuϞ/$hUZ U*vC `  @@ 0`O*v!kA!?NZrb'y=}A)h3,<;yVn& @TU V>  @@ӱ} *fZ   sL[Nr˛gONFF=^HЪص0@F4jUB@ 0`  @@KQl%?Yb ؠȭ]Hk)éUk `>6U`3,ugR؁ 0ЪO`ZZXb`  @R!s*8\iU',# f5Њ L  |oUff'ͳdiԪm0;EZk  @@kcǻ̀ @@׀\-3`ϒ[vЪ؅;=-= bZx܍/>lAtzKNnVn4zvF˙.jZxXq*v3 !5մ: [ ׀j\~\ݽ؁60` j*Z@3Οj ju@*{ w+nnG¾KQq>z*v>,T/Lo 0H]KdJV.&,  @@/<^ Mxآ(}9 v%,! 5N['L7_Q,*v! psbUk `n&@ylتm܄y;4/[ӾU `p mmjתO` qKP;$Z@3$3T`tC\߯OCmKڳ&,z_tUn괃O*mefҪO@8iVn4I-oѪm0ٹVŮ%qZ]5`0f0^A3$q )h  @@@< l`РG*P._sdB j]^ Io&pZP0Z]bkUZؗ#`n.*vZXZ]bkUf0 MTU V>5_`tXG>jI20VC\b ௯x[Z \DtVK`JfLy9֪͊΀s˛gONFF%VŮ%2ZQb~ $ @@ 0zق)x q@ȸ\~֞Wb*t 8eVŮ%Nz 8 ZSgXxv󴭊L@8\^b?!ji`}  @]xR<LΣ$i (j.UTQV1ӪO` lp^8U|O)9ٗVnS(:gOٻvԪص0@F4jUB@39#B' MX%ZzC;k Lˣ==.'ﲙx}Y9Ż{WݛbA\921`{O w<Wl+6X{7{,=~;gLy̹tBBJj~W}-趃흗1n{@|`Pݟ{w7EwouTS<%̀\KXǠ,޽ԽR N?m]o@ndO7X{7{ܽ{gڵy7X{7{e x掻xŻ{WݻG # @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`濼\~vb ls_^]+}IENDB`gerbv-2.7.0/test/golden/test-circular-interpolation-zero-error.png0000644000175000017500000001621013421555714025223 0ustar carstencarstenPNG  IHDRKbKGD=IDATxmz۰QvVUtQ.q~Wq,9cСED?V?9 MLS:r0ˤ&I`&)ۛTޭIGz |!4fb \̧t/1c 0?9"|Otc؞_HaWR'Z\Mʌ]#'J캫$Yka xKpxsGPf>d*e >ʝZ{SC&Sxp } pmCOͧ[{Sޓa!U;Mg]':z"zJFszpOw~ BkX~ݡXa>NT+K,0$^u% pӽ{ȅc2 C p:GY*>%)4R^h0ΕwNI+a~$;? [axHMo6{G4m[wĹ5A Bvxf5cO74䢧?UMTt?˔NSg`n/ճ0|DJzJU67=%?Pa ~ +|N{6. k0'o,;G=Pw_b <ci0$ 8p"ąO`6&P:;u-72ofL _?wslAsk̰|]-}myځC_0} D|7I. p樗;= s'XeXsea{d'ԣ7i0:4շ ϴꯐaeo'xa}L|?yN\un(6F`r\?:WpOEp[ gy}OKdz0W)E=;gm9Jc˕N -.ϰs#Zy=e}Wh09=6r2rXynBNu9Vm&?JVV` @8w@aMop D` Tw\G /W]`6C]s&q4ß:`'.0jxf>]50G=qAV3/WKۗCuǻ<(<y WzYS|1 T?yK _,oO):5P%$}|G lM;ԩe^1eo^ro CW5?hxf%Yg59BIZf}[s8]xG5!? n)妻nS~pZwp̲N9aL_f/Zul&9xoe3ZrKf6;Q xⳏ~awp3ٲOЅWb6gL/3^ocۋ}O,&3?}/$r `ɝG;lp}Ua |[e |63fBt~JyhvM6\ LLfVÆlO9_~g3ؒmVn` pB/5 fph6LI3)_ϐX r3N 8~s32 &ʌGM]{{0 pT{m ̫pP7tgJFOM5e'3-P`7eǥ6< 6#%g > xZ5x"jIH-70s.2J.A ?xeeh |+*oiTs^R XR/7*zYR += ň2$/>͆B̀$R \rnhPcB 9*]҇.pߒ몜axnA?a k{9^r9ن7 ,Ab N6WVov,&t|E_=\,$s][J_^rp_f :>u'8V*it 30Uh7,DȌzj 3[\ķ[]%dˤ.&̀'|3fZFKrxLn2Ghc@%b! /,L3`u:r]{H\L`gi^R4AMe 8odqKЁ*r \\rJ:AGNx1%T| ǾUk;\Ov*3e-AKPIO 6E0p'@N2'Xg_ @]g-A1@ A4BeFF_ 6484/P``{C-^  4#Gpa3i؁ )'.uL$~y z`f>%ex `X@`6" ʒ5k 0,P; @Q E 0->3/3]`8 3c`X@`U`p!K%@j`P>e-`X@MLZ`Xc?Ŗe 'v:!zh [W8h xZMM!cmZJ,Ys[$X4_2 pTMx%΀lĴaJ>99BgWޒ70BMnwL ` &R43˗`w,+ a 5= pڣ] 47lyfY3CkXefGonNJlj& 4A$n|U?A^Ǿivmj) J_'ag)e9  9/3j): W/ WhϦ˝-6&^Ⳕв>5I5723πaCkO8o+\7h6u@G36'^{WÆhԄ6oTGIP`|eaCa'u4p;lh0ܴ_^Q7Z!,>n^plJ] S_^__}-D+s>]~"%7\ج𷇯? pOh0'uX^&(͖a㣍j0{V뀎\ >Yϔ+{!Z0Q2ٴ>Y f'KدOa}%x,`/]B~QsO_>L_ f/`KW2 \Lk|/D?oG4;m0Mz`y}u.z0ww/U e~}}s}kYǝ2qN}MYuΫ#yhDûqTFk,*[KJawYvYU~)/ W]M:t|e|L~ ^eh>4ToˁWCCK ▓VowfmT/Ty34 SoEO/,W; nhF| /AFkXfzπ_tW4[WWH}Mk_jឬ/IYm5›qچz? Z>}5#ΡA}|iOcr﫡c|Vm_iK/!7^[=>nn.L1( ~^NdБwąBO==59!ЋB%ӱe-'?N&=mATznE}[Y'.p$I/ "§)P  Qj=q[ϗ<% Mxg-aK/$Nd!O'7p/67=&YԮpO C`|Z!+"$mG] OOXU(݅0Q1H]ؒ 1N7%Lt]b<™bSb|`z/DxE*-pIZ!&ErNK5`W.1GMRIENDB`gerbv-2.7.0/test/golden/test-circular-interpolation-mq-ccw.png0000644000175000017500000001012313421555714024301 0ustar carstencarstenPNG  IHDRKbKGDIDATxa$7@챰QcL5l\D Q''E+ ~B}L:"@?L<=N&qf \ tQǩ2OiCq1@.at;7 ,H9g@iY`0~)@]<׷IyylG~o̿4l i\ 0֨Ro/Lv? p9EWtЊLryjx ׆ V \! &SRPC\?q?nFgO%;5|M,O5jW0 r 4SÔd P !Ф-+ R J Nǻ^a'H/YrHS0 dAwd}&0G^&aȃ ph#x(x^Nxe^V/ #8CPe m p_#ЊwdTQJhB^ʳ&n`bRܘyj@1;>~L hnoyl+{uc:@2 +[ kFnh'//dDZ&~y`$d5ن,EͶ4lF!6 ]hmvR?xXyi0*X3V_(Ffve?;y = ߙTۍU }kNہ2 L!mv,`"Elw_/c{ t7G_R_/Ib{ eA{&z2pWf+ ʐ!Д'`&\D(o=PX+h1p e<{3v .CXA+hA +Ht 3 b, RR\A/YNyf{`AH!ނ ҝH!"l\'`_ `  &: /05C=ciP`O@F78{3hnt=3ehܑ C0m eNG90и;%9s0 2(@a\ pM *q.b!/lvaqJ ((&h!Z s'`6Wm㠎 q _\A4#znkƝQ%A>tv 3pf_[s9k غzq#Ȏڀe'`+Ƚ u,Ν=[+h }y=Kll^qXU︂ Нt;o`eN@ @ ЗKlN~ s 0`>ʊtc<`  0` @ @  ? 9@ 0` @ @ 0` @ @ 0` @ @ _~o/V 0` #<^3,E @ 0`nr Н3 0`w8|K 0Ab`!@ @t=>D?; 0h`#nG v848-|`>\ࣻv\A O  k`*C4*<`+_`GZ|1$y 0h '`  Zk``q9t00`2";Ni`-ߌDvT ' !,.F7( ., \AG (p^,W`h]k\1.a}4 "lI(̉;|  gF`σ@Ism8opw9Ep߈{*38+E(̈w"\2. 7 gI`"F D{()V\6:+lNC0/ؒ'!Hbl,'!Sl@'N&"l9Of99J$<@W`dd4[ @mR!դ0@!o= bD'`#Qb92R+/6a0'`y3v/ ا(/cFr%D+/0QC'`y2:3dXT:8+h`!ܬ'`eLwϤА/MqLsxhC< ;pлqKe0Мeo pWd3Y7//`K^Ӕ2I} 7e78ƫ_Қ5'Mwl9`)KsxW%y */4cރ̥T7;Ve3jb,gFi0dV (XΤ 9C%˼ԗbBUv7+.k ^ZhjX" U˔J7gSB^K1e %$ &eRZ'/a.;m׊4桾TG EO_!3ᐕIyx!S@M! u?l{g@6 1 ǂAtI_0`ۍe k `2c:@?hnY,B?`hȆ/|vhB}pwf) $W(p;"#Oo1b}G]f dGA܀_8N1zXg pKfknlmXpwa*QE7 p/YpeNQ%Ypwg`QJhH1 8ȺNx4㌉8B?\#9Kz0dḛ#F >bYEM p& !,<" cA,d lƠ'KiNz!Ĥ sALz!' sBf<fSY9K"s;5s7c"k&%)\^4 %]n~e^U p}&Ԡ<^ȵRxEfַvgqx]7GfߠӠě$IC-`^hVHopA|:0-SOSK &\;K_C"*l.lÂV:XjwW5*.O3E 7v6:9{${.1ct_M"dp-ŸN<4vT r$@3X`` X``A=yl<`<F۠ =;6` p'` X``A(n\P pԃק1 8?0p Oܛ>Zp2 S?CW0^$ߴ~~y[]CW 3[5= L] kF7 u>CהuKh&UB~v1 ڢ)RqI شTKk{N͋Le!*ֹߟw ~Ԓt2jG/`F}m'w'P$1,iFUۜvm~mI[d0PK`El؉Fh3tKha$ -ph[֡*/C5lh-`ڞLD7)PD 4T&cIHq5>*j 1Њ=ȱTO~R?P;˶gZY`}N Em3fn{5r1 ڮ27yP=G/vEYm8ڂ6}LN7m`}TSvGGŰ6c& +vۄ[s_:ζ/z YXX,Up`{nC`` X``>`'h ۲i?m▼H<0+A*>sk(FmVl%#`!}qNH_ '!a` }qu/D0ũ`v8 > gM@htT˗?r7 #yIQ=`p]9}/1\Z-f+믦>*eEW, K>0C詩|iTL"@ f?jK*7FmFmMk*dNneo7jO͜Vd;gs%{T/Vml9 `z5u&T˷YmhXimBx s84/>eco"t~ڜr,cF.6F㵩0uZ(5p XNvpy U[~-Gz*x+pEޤZ eV˻z)' `6S+XXS>}*Zӷ=/fܻ'.hSr~N2xG7'DqkL pʦ|@}B :' j혾bS/4Ϻ"S8Yȿ?4v"urGzgcYueIg&  `NAְbWxG @߾ubנ\>P(KPugʦ6E<ު4ʺ/{ێG C3n ǀ}b[Qlz:OL<,k巹Mk,)Lxo~R\}]nElM{vH>­1j7WO۷ UA,\Y(_q֩kD7jl~k-Fvf%ozJ>-dTqK^P^%/мg[y};qzpCzHvIb}zO< m4WdPԚ}NLf+>r0L_I2ۡg7.+m_}[2X]Hܛ :oô;d,iDX|bOqnqhE Or wUA{iC 2-0trOUɽ6뭙v 0Da|vM=k5na(=l6o#uH(nP98ԝ[zņ3~o}`Gςaȇ ZRw> 9'hy(L{v&Zni˾چ0D$3SW*}՛[whmI+O_828<<0ZˬGj#w΂.VN *p6Y<| Zu7,1_YqSwUZ#`Jo| 0^!}Ό_woVQ[/:lm e'}j6aIXE{7FT97fB%`{#;+槯op礪b%t?;+GB30=e [f>ScMH X]&ۚo/$7]+S.%0;I 7պW"#D0 *[%2yX3sϟ ,c3}?5Ohm\?0$y0ƴ_*W梤6[1}]ljaI85lb t^d|0Ta m3`Ju[[8UhSm;''ZR7jO;?Z,[:}xy^hǺ+?x^ [``WR_݌!WErWA~00tf p[X RIXp}6d  u@f^o{:#}_PDެW 4`0 S;?֛K=`@պ߷#V: @-`@m_Zhj oX00`, (XKZ#zYH_K3m_F@f*P*ysᢦ]g v2k {ok%#@?h4:}O%{ # T4oϧ"Z׻5&0PM%}mv=`Ns Gp {s\x]tc(&q<#ɑk:mbFδD?,K[G Ob,]]P  o6N}|`^4`-`!-I};oH[^7w| .h g\ ;<|ݤQyHpchI[tęeV}srh#J:-8g]I,x źަvo`0{SČVYlBo4O9^COeg[Mkc&$~3Xp)}ef  ܃5"}S 7?%K~l%7% QuU|,_ϟC\00f3 g﹒ϟM2@iuó~0J[xK2x (q3ھoޓPΟ@.q`Rۡ `ݧ`IuL)mD%]euY0j.~u#3.?{.]LM8+p>jnHߗnZu="3 }F>s5(S6 ?'aVǣT_*Fv)hwcWm:6똍V\cִOZK2spɭT#X~3a@MxBcoo'w鶡zrvTo tHyBccǧ|6E8/70fpN-|11mcumͩ>=}G^K W`oTЫ'(;f `l̓?ɛy2X^5F UZ2k{my*؏27P&آmG;3IN}"muAm"a}g66πx6c<}kM%Ky-Z+~kK47W5q4Ɍ|uU7)/COK--7GĔbOU KrpԘʦ]"[T[Pu3O͒S |w yE06*"}?TՊ;rdxdC_*Cܥ YPN}$_;QU/)J:x6,F[ ]:ZkgRl{+Goh ߙbO=O8sݒp ywpv͙nSaÂ3..f6;'[sX7,Q}Uo2jp+(V[Xuɢ.='A rFcek5V!wd\Z٦uG`صA \d,`XT\/uLS\_lzvt|-f1FUN<:"֭F11u)y^>_&Z)-_ڡW'wkGcvq\}Kwf[$ Bld b?M^r|j=S _lGw<+80EA8Si;k4n^{_{`@Aָʨ]5E=`^U{kK;Sl*1^"F@>_Yi&0X IDATʗv\m62Bf ;#RZGx8dS!Dr]4-+a$B^FyO"wq2L>@ F}!AܹeO!!|٤ pCxrs-yyXⅯ٣ l#3)U}Sc&=DO50p1}I*bbK>6fV gAK>͎<`fp^L] Z߰)W,@Bq}JoWU1S-m<Ɗeny'ƀIϖj"Vt\xK&=^[}ƓmbΥe3'Z6| 1{v<M*EaXq9aJ 9%OVkX8m]F7_'mO=6 Z5F.߅辧j)-ȎOy̸$ I_`yomO[h׊Gf g 7S^>2z_0<|h.j[K!aE,4aSw@zϩ>8w?xxT*M6deW0kUKR%`oZ{o`?Uix^$ʪoK0[X|A7pd`6|M!_"6UZ;ϒR-ϭ+ vd]ifAь/vOC[*0jVednzJ±S㳠;O +X66 +Ei}(3j(筬5Ws|VTm5l>M쓚dm VJrn[rtsUbf8& .y7Aw>oILyЏpC=5JUjզ *yGss_4WHj=.hyq7 vMSmHw~pΩnusx +3YUY`j۾½eҷOr_Ϭ &ԣe4+]V> ¾ij‘6 =3ݪ -3TaM<)35jyڪvDs=݆imHfl)X<ֵpE&pe-_~:6nmH>??32ohP5b':)liosێw~ńyi9V׽P_DnJ-J}iQ#{1:ۭᚵ̞sX+5G908dww6XN֔U9M*êl89Rj hV5uP x4&dL|N9ְ%wZ[X|EvO53e&aEiTjGtYߛ|Ak’mU9$)ջL{CXCZ0n~'yYv36tVdUEʬϟ?Y/R*2i+t~@QjWfioW'Mb#I+;TB:a//fAv8Mͅn^So!0kmw[ijEo,db_tsZ=:ڃ[7mGҫl!} LF 87QUbWSM/3sMX6- kہ K[V.heN8MTE חde\%`C0c X+<&OH=/ƕJ27םt6.-7 5oIIV^%5.pN XŻx/Mۑ~_ _OP*A\Z=[R^72b5 `@ǪG3g@>UèX{!n\tw۠7wjM-,7#aC_*7!F23&ϖ鋞y$-c,w V~ɩ7AѪVSʯ #l `T;x~$]W׀C)JS wo#Ikh!zT xw8:$vp RUg1y:;}]Zٹv;vӿsZ-~Ou]UCeƃ4I߫mt8GQ7r3p7ʴx}8&LGx:MK)zٷ6 _[$N=%P80_ޤAa].wx^wj̪"q~ pl?։ hsɥt ɲ 'yƙS<៦9?]TaiN7Xf+Yq|20XF 0 ,@_ P͋,<6o ;fwPIENDB`gerbv-2.7.0/test/golden/example_am_test.png0000644000175000017500000000654413421555714020631 0ustar carstencarstenPNG  IHDRKbKGD IDATx]nQj*zQYE8E W6hF݁8_0p"xv?&y9 .~O7ѿW6%,(93`0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0_g-8)ݽ\.׏+1`l&ce0p3Cd8 8%}` 6ov&,2k0`vla?\YGs5u 0|ʈGMYoJMi 0p՗ 0pl;Q}ق7%V_6"lIe; ēX)ׂcJ/;`l~fxz0pNN?NN\ `0 @87rwU, $=cv&9zO+1`8od#c-l' ;0Cן{4lMa,<=َ%huӢK~W^m_o ؈øvÆsHNn3>ďl[~vwT +w}WKekzrg˃g]d.gAϴKF`z_{wFb~ٔKznI[ S)b;6LK/Y$AzKvpKnj4夶Oxܟ$sCߍt7vp<Ռhj7Ev,$_o^0A^2}">ќߟ݀tbsaj3ˏG4Ot K.qo3rn& +UGX^knDK. 0+;k}7zЙ~_zG$YW޽%d[}hkR蔫0ˍ3X0H}w0_ř~'v#7Hٌ6l䔟Wm8M_S>[<1M~a@|ldo͸3HoF>g [˲KZB|`doh F?Z rܸ-FѲ7fl]A-9` >◞yfr1>;7SZۿ|7!_vԚ=:dU{#7/1h?㤛 r[ObV d^3NGs;ɓlt #E{GИϐw£ ;b XSU }=A!F*3=9χV_l,{2X}N_c/`8N ^5 pm^ 2X =VZ/^& mV_~e/`s+6{G,V_VX}xB n`54cw,vV_׿Ҽ~ -`:.V_ж-ܧg@@~ܭX}[V_fj`o[//)M laAN0u0[/G/= 3 @gl@ #{ *&ef @ 3+v l9# `uF  O+ # Nn0 [/o[  0 0'hgvwO`ހ=p00~v400000O8Ө-`````x+h@p!B[        /a,xǰ,`````````````````۟XX        /aTC~,`````x+!4 tY!   WChN2貀 B tBp粀 B @ 7 ?  N ?  cN n?   ހ30{,``߲ b.#='r`ee@- `4g w-2Xʹ[0D0x.Wh1\w4Lo9A@ `z? `߲ b.#~Rf4N-'h- "f/2Hߊ4-'h,2Hh2+`Sr.#YZߊ4uoupi0wjX -pܣ>. `V. `-ok o5 pi0_`^D}mKx*.  շ4ǬU`\}kk+ַV pi0YPKu[k4-][.#o i^V pi0yo-`TZ=gجAKv_}k_d`?[OKq}kb~. X-\ ["k9$\ [". 90@ǦrVKz8u`/2 "C\ 87Czpz/2 pKƒOd}% Fz$aISk2 9}?J~&/0Ez$/RbL;Kp<`2 Az&7c`-;O"@O"b dn&ۍw;v m.*  _HIENDB`gerbv-2.7.0/test/golden/example_ekf2_d1.png0000644000175000017500000002444113421555714020404 0ustar carstencarstenPNG  IHDRKbKGD IDATxYҤ8(P.0VQUwS$α4~ Ȳ :ϲ,`/ {?{I z^% `x_"2{ϧ0g7 \NT,+ʃJrL| __]>PY0GwatI]? Ϧ\fLo&iWzOSM]2͜ɖd^lSmds?)gp glBmʔ"'mVo}%/ > m~_ɔx ᒒޛwZ W00 xX.srMğ|,s*P3˷e`̬Cۯl%5rZ\{*YC&ճeK-@-˵R}fYx|{sg8{_ <8*BhKf(xDSIjji'sɧܒLQ8S{v PKSyxw goo.*\V{=U0}L0 TZޝφ!H_a3vO~ -tm.[.3=TMjB~\Rt^<2,Yw)\5EG䇽5'vm qLN99pټDߟ'aNۯ緰L@ NE18\1 < 6?BfzY[Nq/%g].3UT *P`oso:s&%gez>:r]oa[|+' AnrxSF?wUb˾W{[޻\2d;n3Ȟ"}OeO[v:`2 /؇70wz\Hwj Bn^V^YDSmw?8% %Tip8{'%3m@{(IIݽ=jyxW+Ӷ7S~Xmۏ7o! +^J)=)wJv |Z}v o>'%s)5屔)α}SÐ*iS[ ~Xg_ ʺ$S~aI\Cq:] .\Xj/Ién8gL.KpW6URgO}W6~N*0u:,9$r燔$ )򐑹b3\ !$/_3֩sTx( {GO]p.<{v*7wM/C_~N*5w8_d-M>OU2[kWW +1x iw6_a37U+{_Pԏyb0_AHt*Y3{,%_ewv-y&H\y{:wz©jSV7g E*]yU8U}nqwvs[G&$S5ʾ+?Oе"l&S :~ \eOۅBñ1:C | ?=E2)'s£yQTWEhI&~}DZ͍ Nu +|ǧmg۞`\6{<-/9ɿlXgxe=zi"9:>9s&P_?Lnnpʳ\?t;\ pG;yxM%{|nE9w;zh'4)_k@z48iP^ )R/yaC9@>+߃grCV~sy;n|[CC m#N}]>tƌGN0-( ݏd:2v(ׁº|o:fc\f ?+ėݶ~ᦀC<n[ؐdm32 /fp ̕پnо{y{j5%:n߉췟[.go>-8F?(`]]PksyxGއv*hF5nLN7aH&Wux9X',%[{|-yhO0@6Lr,i|l9p#'Yqaw0"57ﺑ-`bXOɯ6$$.Dߟc ЮIu{ Iڔ\n0Тu~C^F$]E*F;0b0ndJܺO%TOl&X,0pY%4 D_:xYGw??u40#49zq0 7'9zof#U[ !Lu2Ϳ;1ۨ 3`4}/#qw9^+IÇ〟Ȑ J@E%9Ijd~/P=Te4rb%֯W׷=#ىK{KW ev[qSFn^g-88Lfh,{ISC_RT~UdNsg?3׷òhUz=/H~yYPu=Tp&Gşo=+ n3S u|sQ5RHɯcِ_gfj)ݓP5_kv/{~XkK2~ n3.ellGYd셺Y0o)x9T?wbpw ʐswmtlfϩMT7O]z d*N2Z%S r^qpS{)y5e#ډː%kݱ/ljCji%GfzyEE.wlki W/x#NXc{}a+yN6si>L umC3 x/i>gpz5 25QOX/ٮ2ЫF'J4ٲDžAux /Dw$vV8넅]YqxZ ` 7)\ z,ߩJ83Z x3U*> o4ޗl xq*|t%e @;+*a*n(;?Ԛ[M 08~T QrU(4dVz?OgCƪq!o fg wNΥl}_}`O'S@ zMED_6}߱Vt<}I穮۾K:cTW]rhїm' SJ ۇZD_^A:2x9_Eɿk}൲(G =CGo]Q/'̎knt/UQfK=$غ/d:sP#woHSWlxz/|u[ o{dl}7κ*Zy?/~K-+9Gc;kˡb`0ܲN|}T7FLs q9x;unkIoNۋkvXr? 曋XtlNn흂nHu ?/h`$0L-6_~㋾L﹠QăhVs;}h](?\sRs{Tt- rʛޑ!%9a0gZ\ kʫd\/%'y*joBx; .&P ddƗɇ&<{OUbdQ88i6[mswy*Lm<3G U7#Ynި/O3Nz*Y}{智%Ϧ=A'uүdQfZ~Cgsr-`F+0xrUguqwOZ p|)oop< }VEn9u`L0g]JNպ`s5ޜ?Уxz}h,ڄ2wg%ۀ)OFVLGw lŏbp/Ϭ3w%/[~#m>}nrɶxwt }(,kt4)Z WŒ{)K#tAoGSh~ޔ{Wv/kilWx* `oۙ(/ىVQ~9Ƙ?ӴV-co.K0u"ؽ%5Tqnt% zx+l0~~P"~/Ys%=ICס2=hЛ ,z,NP_gMr$vl0hY2Zm)}uqCiټۙ}Av"&wΉهF$H\?G0( F(9/}usR5=f]_ 4ECfl=eqjۦ[=רuh:c;Byc w}zwܐCmzVi^B Ðf7haH:"%:'[pX8M(ml#nڒ/Rc/97{/ˬ(A1B Äj= TaT BZ*0e} 0$Ҷ#`W :awКixg$< |O{s  }yp`mCCu~s C"dhVe'oUGJaH$Р\gg?_'GxmCrk :+r]>wN ?lMMnyHZ_+ݨf&ֲ ֎a-gq!\O}{"G5 +S˔zCZ xhu6c`յ*$dY:aIN3I k1?(B J  ެ|5O W'ԅ4:aϿ]NYgXZ@ e2 ^z.>Սb0eKE/''k/\j˿[ 7"wnģT` qiJ7 Ҕmp\wGշ▯Wn {Y˝mZАˋ/xhQz\U['|šo%Ԛg3:^i'$%s`r{Ql~Փ ` 4P׊^UZG7`mcp7lVg=7NQX ,qgg |7Q}N^nf3mDS 6!V!J Y7Q%'h.y_K: ֬J}ۚ1mZѷ{YH?c2 I>HA롙gRo~{&R=J3 h12ߛ^H? \کVgr0̥*a:)ÇLeP2SEB 9-xՈn+EKuGw;ek'HΣO[g\<}nN/8>QݥmHf͟|50<%`[R!W=) IDATdFɰ]a.NkkoϽ+hKX[0|@>`A+bp2<ՍwF0}'_WO]?!Kc)4kOui~7@tAnL.w?@/En1yg[w Pc9~,_&_w xE z< @#.qmKqyMU5> 䋧iWff/: ^E;Ow%3?jaFxea j8=CJcdgW %Li`0o {]vfk7O9ƮZ OTA;[Tn;&xClYq%`^+Z3[לu2pHלT'NJ6zDߥ*r&[yx/nn_b><oM{ɖ~m(4XdBrWf 8k}3wd : /weKfsíTAf-yx4yTV#Z!L޻4k wLU_WS`><  KtR2tHSYiy trƳQ{~.9CܡmٲptHd"ώ eۏ0IFka06uKG^^+dJ+0'K l6[+kD M>G߳{lRk >}zYK^!8~o' S~,mxn] jw?On{%NžQڀj֙i7q=o<8zk0P$qoǑNGa" 5[o0I{N*?`"5o.{H, '{hanܜFQO'$}Htq(-^L_YN xtYT)^ e 〿-E7:>^ipM4ዋɊ%U$Cao}>쓥|\l;ԡ|%x5[ָ6srԸWt-<ݛ;[_2∘koI>TO5n7󉿶(`[ >;Xl,J&Y${^aT|0@w4|,.,` G߽5'ӿo )Hs\~]?[K;%XwĶk.mDE c/މjzh*@gcΎD08ANn %j<ܱp\eZ e%Dבĭ Їu~58v0759&Zסmk n["͹!̛x)% {R > ` 0|@> <rH9IENDB`gerbv-2.7.0/test/golden/example_ekf2_pow.png0000644000175000017500000003572713421555714020716 0ustar carstencarstenPNG  IHDRKbKGD IDATxk즮@Sw= ꌢxtm@ `Jz0 __ `뺾߿_Wn~^2L)؏?+.߮O J4!0v^g.GYl.E^y"U~j(lm~V hŗҒvuH G @özqM9@)ʧ.ʎmM៲%, ʠ y4AU@WWί|lZp| 6$X74N#;G-L7#D3hy b`]Õ`N!a `]Õ``x~N'*Hs})JiAJ(}CI,b}P$0wxɴd47d#5e(M |@0tW%zG+[5Gg.d `9%`WH_W0lenk~?OEٔP[t֤ s߆'ۥ3 z0E(/W*--~,oek>"!sۣ_h*`9|9f Rd u톊 g1ml}rR^f d@;9\؃u-ԬpP""[ fIhMW? xBd R(R ,S,-6@Hj"у{a!|HG!:H]*fPGz|׃Ox>ѢB?njJO-[`EzO?'hs4e<h7 De(AX\!o3`R*M)ö6"׮5*"6ZW? [_rvDpZ5:[ٿ*S2׀Ol0q\Ŋh MPgTcSo*CQB dUqi܉čZ9Cn6'#Ws罿b?׭ي6h> +Gs^Usw1' xC F~uhy%Hexx$:U~eLې*(m֊ x+Y` \ a&RʠAs!? r~QRl;?%\Y y*b8ʢfJ]-/`'lEfscUV[o47S/p$BeP QH6 Qn6#2dHVBV+wj +A6_+M 0Y?^HB3}#]pP AN"AK[n/_Ȁ9ÅG(p:<ׁ5рzԡO‡+QO gú*M "}ς֠9fyN-U텼kB.9\=dp)O2K`hb(B@; `': ~<+%>l΍bҏ?w=։Wl$ȿKI^GXW Ku+{aDmβ2-mx Q,&R"M Ү~А#p"mgؒV^`,R~tםRB+-7"`B ԖcVÏ ³؆CN+"-_wtmJˍ&.Q`Hit#RG V]td[0@_ }r% sQF{ 1YH pWos@OF(koN<*  a n+1VYuʰGN#Y2<lLQ@)D8mV q>nݤNRy2uDTAF/N>sP s{߼LDaٳѳi!KUf8NQK^B^ `Yy;ͶuDTt>w{j8`E|OmH>9T,žTYkrXۢ()dtaem)GS?C2. Y:Sl˫}߿P芫mH{Ԙ=TgiiLst]JoIK(Y*Բ_Nlҭݒ<* 3-M ^{T_wRZA.П4_VU<υư[Z6gyEM5j?Q?WеPf~Q`*ha>FkBa0ࡄ-(Bna׀[|g}Yedog- iϦWjTEm\KU%ȠaCKKYcH 5+-7jt>sa `hkPTkdC U~0-)6ԧ[.I˚x:eCj} Ejjf3W6{*^8+hz =v -{LVZ|o۹8B=佼>ð~֘I43\юi!T[“#۾"8nl<-Y{A6D͕<ax7Dh++ DWcЀ"#h?A$+-7P'pv#R)Q54`ATw]Hv)4gԳO e% >UUp?e < ʳrf.'8&aNMFv :C\g+rytXc~:эWLҼ|"*wu~eBO! Dsh{j &} `Cy4N".E;:rX#| qX_V>jEf0N޼yC)8L >ABU{ɭV]r"q۪Xz)_N qHX0N!{_ːaA5o~ {8v %G`fV5{,r0?ߝ .kć1)cH 1YwDJ[f!98OYXrU?Htg\ȹ̔[zcnl|~&/h9 ̣卪c6r4o7Z:_L q*zgi]2~bO=.P6OQARh\`atNצ.sTaΙ)^vS^Sv aHh=4Xg|%aˀʾESTiv<n<} #@OSYO<Ä"?i,ނRTWK!6I>+rY6jLVlӛmpu_Y.pʁD1Yt4D 7y !D,~ ufC9n96lIfI`JˍD|Z_iqZ[->4@GۣsX.QH\'̯mGFO|r6t=kH?jQ6h.DƮ'E&a l9cPEQWXQv&=pKBw=`0` x{g!C"4{FͰ(~e+Ú!MC`҈p{yVQ;^،S3a?9^_~^zcz) &l+wӺ(r+ O׺\\^kc/ c]e9- O5UGs}6JCT]2QЃP/BO}D]'J.PO.9t>]UkH6)>/*x.@!oECC)B̆8p=s, j.(:ԫ>B5N5ZHhgl(ʄ#Q6m!3lofs FZJ21n6vEnyV| մ0 SE**SUŮ3H* uMfӊդS偰nEVil'm@ѕ&]2q"n|_S+$BV8Ea961&6Q;aϞd% ` S #m(Fk37 =+]Gz-GҘf.N:^~];>Πc]zӇy6h\It5lCNhg-_ýjL-mf~}Q4ڌmz(\lCkm;:0{f\o+lNXX+`bQж^'K5vuG!&7&h8\ .-JqzDlE*.g ]-Fs$:F1CJ_ J%C^ېzA+*EO݂ R zzÀl޿+ʩ-`9e ;Lh @(a8h DA`Rl[uʐl3K x9E|7nWR`9?Oso}MIS:=l Z6.úhYyV-ZHXUV{;F 6P4Wl( v&31uЂOE0SNHRSL6"7J$kK8+q8%~8A3c(/T5gX:Sֹ;S'|)J_Ef0+̚@L&p'"?)"M: ?%k}1y8²CStŪ 4A=^Q=(4 :ZUY EN͟lmA{/߶Hi\:yK@ TcY5+ 8z &hAG&|~q4\C-_,-L!9s4rt"O),Ѐ!3\/ 8_lͅ z+diq`Pj)zPВmaR_7F=a]lYebre Qai MYLPb=aG{{6Qw4ݘw_ET'h:Ӆy*\a&C@Š\ F>"Ct  s&uM39n|Rs-˰u4eUM^җm0-SRg]E )T%uLqlNڥ CE^ԉ bv*Z|TEڳxp&Zc 4{u- jlBau\og¼SKl`PN"^{&k pwg9qW&뭼plE&Vg=T^G4W%eCl_HMESЛ=*5̚(H-9`56CaLQl+bXwv +Aձk   %ϔ#+RhTzCý.V`SG4%s,f!y2Z(iؒB*Zvt}ʰG;1}wcgvQ9h2|&gȨgiKufR*y#)/y˜g^X7X=41sk6PN(mmij`+br%瞶l-BE3n !4,dl}SYvKࡳD0Cir72zNKe]F&5 IϦSQ=dkwB#@WC:=0y^rceW nm'}#ttyc~6Ei,z/M(ٰ(/`4oʮ/|j(4F>.}ҩLE%A(hl83`{uaD!W$jlMkhJY})jj\TW% 2 WB$̀#XsBdC*Guha@r*̓J}UPC :$SW=xVaWT3 0GLn=ŕ<`&"f,ɪw^)57:Z1+gP>x9@A~-F eano#6u(8ܻ !xi6uz2n[WͰz ې:6$C=ﭱ 7Za:+_}Z4VzP <䇷ɲ\]E]ȆԒG5>ֳ6pes;J4@4u.ynxX; :3oPB N.}N/!cx'οSp&hNVʨNY_ngEE4P6ʺ`Kdv۳x۲R!cS=׺(}! !`'^軞Þ5-}s: FޛéYj9݃Ɗ#rB m͸ S+s+yOoSn/KYt;W1ñtp2-u{=|n-([29NC3> '0ҩr|NNmSB,ixczOF8F|?0Ю7s$W&sg[~7B!aD_C.`Oyƽi ~9E4GzzRkqdņe- N7a37ɶ+E%Ѵ[iN[)rXlRҬk10<0W4loºC:hI~-:d k]-}YcemѦRpEN<y rXf`DOZ]DWj #I^^k+7mE=K.R%įS^NgUcU?`C㔲8\^Y튕Vvxa g0rԀGe3lҼFGZQ0W^~AXlcDatyQ YN8=mLs{2`+VҀÙEs )5 *m57BJؐMvD7߸*STP{Xyܪo(k ` (" N]ΐQZ}#XruWwm^(:k4|n{`}/px#>`=kk7{(cEQ'Ucr:Rc!s~&hMpW=X#LIYjڣj9Mk ZQ pfa .%4(Jvr50;G9ʻYEnK1r л{Dc$ t=s;րDjr&{o=°vaV+-7BMY)pcHKq0 l. .TT2:@M Z6}:,US*L뤊YiVdSΚ&YsЃ¤y\~5{8ʻREx]xf9#}Qɺ%r XQ\{2D*ۘAzx.u145iT܈XВ=%K(j7 `oЀo!ʆt-++nZQ ?M }M"Sv^S4`=kh)ѪQ=xmaNيovds# WoPC45/Š,)o|v`zvMPZ}B&YXRg==J] `bfIf-Ii%.apEA%0(mH!8wEs[i?Kry ӱwb(+!ϋuW3AB=6uEo s& Zz#PM%fTx}p%ݠoe6˗(7<ȨGTOyVoї|J;{_޵ R7#.g28?Y9WlYT>j|#.ޅkRidDVwg\tJC=GA /5ZKuA+<:O~,vj 8d-:r |E=vwMIht $~,Wju\)1Yx*5#J 0UK.>`T EF ?U`Q`Bu^4Z O'ݠ(>}1[.R C'>WT*9рI=oܢ4Јx~Q1{q{0%Ջ1v zJM_CmCR$>=Y+C:Kw'-Ȧye ,A4F̪W _q,??svi!b܆;nzIq>ÜIXAIs~)(T&H{{wza9L:h%8TcF#[wM4xࢻZ]=}nڙ 7`wNHIz1+%!p\|a]kUU)55ISj }׾1257AG6R=ʶ\vRQ 0s -O{XHY}Si{" ݮD?3V$Mѫ1/iSx4+F:Z(dFEӳrqzK6wb%)k[s 39V MiJo.-SSm5>-ې:TYP%uVJmefi/Ȣ"LbQLyqT 1F"㚞lA4~(CY+`?e(ׅ/]h͛Յ躶8z)GwQȲ3ڲAY$gڵ^z?|N7H%گ`n74`cL&h[*^=dS;(;:=(e~(*}PN m?p[sIͯv:~mL-BTPgubg38ip'`0aAy9wyVBcjKyvk <7Z)NL_m2Ҥ}Lt0B 9<`Q^wMGkubXG9Doٛkr 9]P$,Tq}\}HڴWl]rsb5]D%)CCjӸJ+~5Ye/j|YS])VBqNLxM齻Y،+Vjt m'4nSi5Q[J Y=~lm\@ @H'(c͍Qla ѐ "ө[|II>R]h }puDIYu1]y۵S#eK]"H߯ء f0Ѱ/YÖTjs_YhKajЏʜ~Jek6+R9ŢtoJc = /)0l%? ~/SUQԕR2\T 3W*3w" oo@27AQzJNyV<oVz)[[4>h&e0<"!Dcډ2x0"x"eFÛOy&XbozQzx  .}E# E:`pA=3i<4YV^>5YCDG }OFgPfg6փ=K˧GRF$n/!+P{dޔ] ,j1E@2 G-Bۢv%kLu?ˎ}!9/^Jz S(e}h Y]B mH/Uz܆WTp mCRAS^`F* i ,슞 ` $uKjpJřaK?gu4S7@=6n~0X [Eb̴ ?`` &`` &%m%IENDB`gerbv-2.7.0/test/golden/example_numpres_numpres.pcb.output_group1.png0000644000175000017500000001254413421555714026033 0ustar carstencarstenPNG  IHDRKbKGDIDATxQz먖PW= *)[B7݇9Q F?? !}$!]X0$n{g Y`Hf?;P4P/ sH*} #`Hf'bMC"0 G60d%t!5S0@97Bz,-N/Ai6_nwRӰH?zp^C4,ROG̯VDg4~Y`M__OWFڀfv58a~:}l0DkX \Q-4L&!HpѦoKv/RаH?(kwŝo–? |وcȏJn'hI_z9d!IK<* n^xSAjBL9 PisYSHsߗj7#ΒTKe:w9]wp%q,Ѵouwr}s#9(xZb6QU`j#`30m7e qγA0Z/V f0"t;5YM, ?N~}}IwF"FM;c}cHPu fUn3p{??W)O~N]5ڕo9?u'}~팃=S= ݟ[}9Eb W[7C@- DB_qߕq0 ``z#E[3  Ԙ8d0}`'~hd0` }`ջb=GN! 3$%!CO[7D&ar%A{Obg/?kWX@Ottw>($<@A+rta0@@~7">L$JMl'gb2iɛ;`bX`0_mrBFCFo'K  "CT? '!CV," (d0؈cmc)78"[UX~t00quN|}}?]~%嗻c |trNP#֕>_xy"0L,j)e |Ԥ?#ΛZE3dU 3n}W 8#`gsЙ1cKuBFcSﺤ>^~.+G["B"+xC^~#d0k3}3c(X }e! `X4 y `XL雫=`X=70,DBV1AJZlxd iU왙fJ_Fp-u`JG7[1LAg 3}SӰH?]Z0}Ö6.}#~ɜLߒ:}K h$2}_yK>;cG?8J4`ګox}w0k='/||-yta_Jff<{g F~Jd;^1=#J3 ?ˎ2VT ӋVm=IE*?2.1:h? gZ~hOhV0߅&L\uzNLF>Q>Scl0԰?K0p^}EX!mEI׉[ ^')lމ!+wIGאАeM /ϸ‡ju /Ӑ*e@u9*}n`3z9 Q<|&O(N@MCyylf2ek4#ܠM?n: pQNvLA7}W'=E$"[j٬o-{^# tb3<8F~G@mNuxǶΣY+~}}ygfXU.>JyK?P% RĦݙG_gZUw?$uGي,. UMlz诨<URtWitKyv~]ۣ |fMWgeM{Ԭ潌&Y,#˽v&9>ڥUq> 5Ë/dx Znz5M uuR\t] /8Omv=== {Ž&I_~㒾 _Eǣ*Lf\xb@|NRWom',1$;Rxë/M8g}Ux c,+^͛PsoG|S! ] t ؗAk)}җ` /y ;|$iTaRZUS]q*G^1KZ&cRNmġ0LZ>u&} 誝g֐ ni[cmEIxۜ nhOF7O-ǟH3q{&|/o[` Ykz+> 2pb0#J77hU?'VO[eU`5oFFg/)sHߙL<,^Ht>\M#}S˲A.~A X=>@N K7ux= jlgqzJ{[-LEf,ўP==z nVߣw!5]w?GuDxeA^*f[hG{jJ+1 OlҷUdϧ Y*}͓J^x69)ǞWPה('Fn/ `_lMsd=`goOqЙ{^~Ե:4=dBɹ\?!:$} pҥ;gP/zN  LHgX߾r;?aqހ>:&M:R _8IU9u*zx^5y7Ku v%'/x 0@-ugwCjUW65ͦp\с_4W>O҇cL۪զ$W0_YW>cnAIB迖2eoW>L{[u pmCD K&HoZ>&rZIENDB`gerbv-2.7.0/test/golden/test-drill-trailing-zero-1.png0000644000175000017500000000432513421555714022462 0ustar carstencarstenPNG  IHDRKbKGDIDATxQn9 0zqfD=E-<+=7YTM?~sf.TM?~b7L-~T} x,wTjQKJ/Y~t)H{.j|hFpq>?ZP5z\8U-~T=KDO5JUO磂%Ge.|TjP5:H7SB89 DOzUJX'zJ+~Tm~q~qZ UӏXj_X~T̢=9R5z 'zrZjUU/`=9:QI՝lV={PeUO(~T%pӏgYQO[ēݾTUK?YPu6V;Rsޑz6+V{Qދz6VPuޅڗ Tr]OկRu}~UPn` G{\*S=LDT=gUMT=bz՞ T\Q8UWqsv7`fq]CճU2j7`H0tj.ׅ T=+P\v0$M#\\0j7`H`@O4xˢ8΢8U@ y{zTmj7`H`@ X/aPJ^cj7`H`@ X0$  ,`H`@ X0$  ,`H`@ 3<+UGSz6X0$  ,`HpKXG],,3^0$ 'F /uTAչTaJn/y@sU5j7`H`@'<^P,CճL ހfpQFT]ͭ L>XqQI#T]GL ̹>XPQue'i 09ST]_T'hH0|` ]:UBU &߀qQ؋P^T}Eha9#U?Ca?sNK?QTUG-\sjwNջSwk%uSjYVu?~TM?}qx'>UVVsuNujUUX{9ՕG+-Zǻ9՛Gˬ[Ǜ!&TM?^c>hSFh >W{R5:T>5}$R5:N>:εDɥjQu|1"Uӏ_}G[jjQDU\ NRTM?>2ښ&UӏǕ[ʣUӏ)NwYUӏ_r͒M~T}f Kt%S5]_Ff`jQ5k 6om̖.=IENDB`gerbv-2.7.0/test/golden/test-aperture-obround-1.png0000644000175000017500000001374213421555714022070 0ustar carstencarstenPNG  IHDRKbKGDIDATxYvbPV FQ(4Bpo6"#!u'?k^ \)`{!e (XQLRTM cF^`S@F3[о7jQ0 W< }t0'o x܀d⴯K0g(` 8{9L9D1~ $}0 D})#h )4qh_8 (].7` t (` KAn_Oy˯/rI^pG~ڗ0' }iKh_:Sڗ0 }ᢀŴ/\)`` 7 XDg XACM C Hw<fӾ?s00Ec܀Z/Ǹj_8 [r00L3܀1/g(`` mڗ܀]/C(` (`8 )` g(` ')`mĥz xOe* A( x0 c)`gMW_ph_|}6Vbu|f}a<{-L}aq{-T}{*Pk]Vxv 8Z9xQE>OβȲXY*:+O L(OqBSŖ֖V]^̀P]pR^]1 } a'YfJȎpՍ}lO ##p}L2=/K8HDr}0mM)KPHD~u}L/ϽUf݀\#zʾVMK5zL,.癩 $Z+WƸB~.{,#H.Y 4hk"Q-|њ<Tr(/N)U7yi1WX6pS?KVgH򎴙U:Lؕw $m&5@] [SLUVUfWy P^?ԡ|(/Bx Ἡ P[gك(Hq?%LO~UռH){U;~~J~dp$ qc%;~rA#zR((IXKL^V)M:TJDOKP{jd)d6s~|`7#2^M$\3T72;@% 8# \"})h%xq):.Qg:s(ЄNI6R [}rDanH"^G (`>@ x0w^!t!|քx)]de ()oR`6Ĥ`<zRK#+a<! ;z% Y|\2 .<10lZ^;R30=ʘ)`X!ɓF^.0%,XAG3QLRZݑj(` ˪Q Z߈:)}>v07 hg{a. #N0,ҧ" Xx_k(`\{R+xɩn0BnS}(`X*%8KBw"r.Ojn^\@}Ssq ,ߎK/ 3(5B]?!͒neM͕JnSp #ٵzq{Wz+&.&fs:.?e6<,tTAq^e\ەD$n#YcH<'&q&Jʻ ܀ǰPyB <@깔8U꥞Jb  p㏦yG܀>R˾3ȍ!)7+o <|\B+?9IT`-P`ǒ$)#jlj(߂n63Gq~[Q0D@BKƲF2'[ޢ_UflLR&%ΐ03+G"-J$ `JqyAELx~XXK<+6+&;O(J.5J+$}!TT DC ̏dkwW 2{:A=|\n5WF,NanL_f3IvsPswp)<s^3>Y0dS`H}}f>il(^e+gSӋբ0:uZ*}ai^pٮ2Pe>9;LI}*-i-tpir0A4S+82pMr%ͮ7k@&)ݖQ^?a\~B)?LR~OF3}cAמTj%,oФ}1΄:kA4汤N{ 51鶤7!Svз]`I[UxW}GbWLeI%ٗKGG: DШ7 S-b6ɥhzm7JKüޑ6 ܩ$ 8z;IQWǔ$f*1]|K13E`I*0 812ho9}9Lbi}NŖGԋ):tN}9RAgYC4(^z44e܀Ѿ}R(e\HAgB )ݚߐO]f Kw{]Kto߀ٶ?JHXj P }YLd%DT`bmtR^8qX j̩S'o*2IkV'`-g')0gcd_R,k*|}Hn"/Hj{mH~ 09E{i+^{lK(70˾L15* fzCX)0|uB_p@OD,} ̺)0P NnlzRT|qԳdr2%uB$C07`BN}#H=F KLEN.4 iߩ>CDS #E´o4N ?aT>w07Rо4 7}Rо giߩoya׌)yC'Ka ӾSi\׻0},k0}ҾI9(`xJޖV; NTVw*;$,B7`xI@BҐ0LN}KJ5+ IҖ$ -H3wM@+W^÷<ڷǴ&1p $z,}|qҽ,/eH,`QSKRsѾŰy9δ/2%xvO0+HMPMgڕ=Ͱ/,/ e ЎN{I=δ?@^ٷfפ}5{6G:sh }:v՜uYqmӌb l>?@ӟؼ3#=a' l>?@F{$~Ej. җX;p* n6 a_<@wA,A PCo A'nn݂5L:e+)<^o7΃ ZD8u||o<%W;ʥl㖪!1'YT*𾃪YOWUgܰIeg6qp `sD*܊ qvP2$#K O `H   P+^UW0$@@{ HaMT `a]d{ e R8{T h_*p%hH` i_V *}tW#:Q'3 ?x_O+S`[  5\T0c,LRاg9׿ë-7a1{yt{-v`UI` *5`Yzq );LzoẀIX`@ LzE^@@ 0@N E7`x@Ll!ɷ;D/ShNS x$Ž C3gcnKK-*p'1"uv-u{иޮjMzKJ*p w? 8T楃;}c   c.k L1S%ncHt>dvGwM5i3x w? D@? A7M,xJa7DUGR־X8BASCe Ѓg TWJ>dL>GUs2&aִdQ׀oOmʗ`۱q1SN',UVtЎS-AU%}8Ҋ5Z4So џkPղ %hk e;8 3Tj x]ʟ=M1J 3n?{+3ZK`t w\SGf\S>%WM `H l| CwKld 0$\SWp#|d `|J_g ݳX_`).۩S{tgёHا 9o Xi U[7\S+wAt岝 \drn |mT%hH  ,m+4D ,AtVֶwÈ:4Q_i"̀z=+3T;`pp*HjS' <&,` K=0PM%h&28 Ts|T aSf! )@c>l.IoVW0$@@ T0æM\N}SGQG_N,yMϾ8ZwCٿlZxJյ-U* aj+_8Y6Z8qVv+ i}e Lq)/vX߫Kqd10 FW# Zs V xrf xnu5cW]'U.h}DSGn[p{ÈjQ:æw>MzK *p {1ԔemkTc ]C;xܖ `` [fxd  VԩaU)3`r L@Of@P5%7 I/S^" `;q{ lSif^5,Ȥ6աf(V}E4!XSj 0P@Ix|E?FL]axJpJnmSGn‚{%#"0{S;flẀ~k[tO0@or;,9T$r-9O-[K@@ ]|Df@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$@@ ew\. [;>'f@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$|, `H/0G\u 6t_itږOfCX ZTm5t8G D,-j61*qdC)%D,-j6ՉR̀G jVWoݕ7=?h3Y]m5U4.`%'s_ A*ڼ͠fuu.=xjrwx7?hm5tum< ї]qaa]KsmaBŒOmOvJn6)n z"@UtyAD]-o|8eΤ C@`[ Q۹P'M A*ڼ͠fuuVxܹo3a5791 {)Q`E,-j6ՉvoTX ZTm5u?mO) 擤VRɟ#L\l4+]A_m5w緿(?n_m/GԬj6mҦn(` z, A*ڼ͠fuu3E,-j6qjPAЀS 8j)DjĶTfP:QP矲=GDDADjPnKW[ Y]Y] jvLO%π'ZݻfP:Q찌矲 L?m55ARF򮑈6Չՠf)&?S.VМ# ";{08vCc'Z 6fP:QDùKS0o1P Z`kxVٷV6fP:Q쌌=kq[}PfSLxƈ|u|T2?5E/e<=O?p|Dm55AVx~.X ZmլZqї$<(Aftys5.y%Ym_ھ# jVW'jVWevfx~tw6ۚĿc9``qҠya$B/fPUnVWs;iHp/O;GmS>8/O7e},@`Ӑh`6/ED4 XޏӉWQ=|]ͲB i Zb-`wK$W{(]  MԀT%w(}M<[GbyRX\^2<M -xL& ;}GmP.Ur9ioͽDXp_ĿV~˅@w p4# 02+u{Zky*Ҧ| kޝ{RX(=Z? s=Kg`{'.#<'m?>.6/A^*1$_}ji0YQj56* ? y ,yԕzbE)?+Cr%xm\ W(>7 Gi,)]_<'S \(Wy$hB@ E7'!EStW}s/eAX3;CTd\f=={&S-udL շ3-APA'W BylB| J.]TWU5k\ xՍL{!Ł09)W#w-c&bWN=x^GHoJ0:~mQu97CPz/|_ K=1/f+Zxn`UdS=N (/ ion=Sw²Ѕ^yz!)5mjSnWL6?l}enjʹ *q3Gl>H˒1\𨢙<XBJ&dV"Sjڭ%WMst볍AϫrWD SKet LЊ<\u.o}U_kw> _m $w(&csW*y ߋY$b8D '{ ֦ܷ1W+K6s(y}w߷$+*V:NCz^;c;#<~{J0#sÓ 7Q&g|wwnS&Y5&;w!K*w!U(=_ I,(2Ӟ_rW?(_>H|driA~nOtDRRBYw9:ۑLpoqѡAѽRΖE d%ڢZd4y)ړ ç>*w/ÉYSߍs (>$w/ QÉ4x| +É >Of2,35 _9ƕD4rB ~0 '@h U`bD\pzS om֨1()XL`G>_OKҙ*5*@ۡB)ZB0u8Nag0|P|OfÒFQ╓z_c~& ߟ`09k?'S0Es#Agx/oO 8!-"X<;&+LIwA^3n2nBیp&wT3r5rx\.~MpʇaDU}%a?9r?_ HiV%ϖgͯa jC+g,׃#3&}1ϟ,QqSs!S"5F'=6c =LD2 1>1 C~Ε_;HXoD+0K71(.ěJBC ѫӖ[Z5FOo"5ɰ<.2f42`&zШO1.q=(%cy 6ecһI]\MMW@3n`K7F >zҴrp(5s45g j1BX K5z*# (&u1T껍aN,rGbc+{ 2-ȍm^ 4`TJJg9 *qc{B#`فUK{Q'ԃEh"SAqK/BEPG>ܹs B'*%3 F v f`/: Y+MIây&0`\, #-\h9i>c{]?>}E o9x9Ǚe H ^w? Iup77 9AI*!YCt Ub2ҫM3 ɠp9ϟ[#r-E]hKoW< ɦ0iu{ 䖫UPNl&haV[[;259 '%7Q= ,5s[77A5D;a~_?8)euq{Fp䈇 |oX68#)Y 囬^cQ9w= ~bNlvF|U< k{VpiDihS&2Hx 9zs_ңVJ̺5,.8 >^|[$hZ!L9ǁ<6A˵[1a 1?A9w1 N aE HQ% sÿRpc_;1~/w'OiӐF7BsǶ'/?Aql4AW(yR4ш` 8MOe=x=xDRi*`'78h͈ ؀I8ttbX"S;'k۳2 ;m80}ЃzщVH(qP XR_5 TdpQW:!8NqнJjG9+FO|:Bx;hMń>`߿ZNjiHǞFGw0Uulol>`!aM oJу4m[>QuoO ,{=I#--.I/a|1֙߫SR`𼋦THR|`{Vvig/GAmL;*ooqzI';=q1f ,s-՟-E 1%W=v۾,%F?Ӑt#Rm4`ܴ`(Xn;J]@S|)?]0:Ȼ$ȯ;r|c=g$8 Ux`|*fA>m:Zܯ:;Urt7=* m,tLx.Ǭ{99҃v`P]u߽+A˘3~Ἵ%g_to3dɟZz9ÊG8o~)lN(6侷dYM{tL[򑫗pzaqؔw^3'aD3;)^MŠK@w` w8FݺL]TҬN`Mn \dqik4BeTt4: [~hup`mFA@ ܣPטI9xCLQ~* enAքLTj9mp b\0d4ywPOLF/&nE+/fU}ht.3rhZ<گc҅=N,~T 6K \<ȪiH4u\+})G˪I.ϗՇ`5__kxdp=E) ۜ^P9uvʠg飡/Ɩץ(OHǗԖr݊>x&_!3N8xw k67~K,L;<;% 2˝aV lWz5?u r cw`2+yE9~1 u tػS0`̎1Kw``+E.5 G Z}ޡo$w\wW4hԥ .ے1iЮAXݢs:J+nm]АA.63sG #Gu6Ӭ1N/Ah!tNnm+9H[>fx<.rvMu/PVn2wQwWczU'6{r&'`tGb66SMj7+my1ed*æp]DkU3씚-ZpW-ARaO< [6x|a DF2!imG68SJfcfIe)AjV}1{FAM0(66~:dgTԨkgҎ`?]SՁ>sJȚe[vLOn> Ek 9ʄFhuxԀ عǃ%,\a]>q0vWĞ\qH XԈojnӐ͍=c2{C %K1Yw;8n}ӟ1|9}ɵZ^eĞy3sOC2,[]8T!tnфT^En2[xL Y O蘔w>B0=`O.!%CB̜3؏ Svj~ŝ)P\|r3{Q\)/-]Nf2\&;;57:&hvVS^hkHGry{_+M9  3G80g z4M%{ΕQoE= i9iN1 gesQ9_źC.Wԩsjĉ$Za+ TU'4 Z%Z]>olDꬦ2MLΗN ;>5].u5dDxrb8exmǤ_J(hL*n 5K{4lӌ|zq&!j&%xߎ \n-9崗x!!*Ԁ¡ Ohj(h> Q9Ԁv4b0LBeS.@^0Lq,]k;hY#漙 5`l&Uz)s(gⴣG0Lj:\Ԁ\ee[N x qG;`x0dgQsA5; Md֫cRXKyM1qEcK^v6Us D)@V5`Ӓ"!0d4²Koj 5U ~3`pԽJ5`,`.%j3t'7Khd$lDdPA @G'6A_Ѥ+A82̍i*q cVu۪L|Ed$L>Ǣ ;s}E;W'\dL#g5`wr)h82m>o/5`l&(*J a-7z0AXv]zMi1o~6l5k#WE)jCAxnwBl B)t@xUbD[ XN5uo76oj\ =o<͈sNf}]171LC/`#dBkG.FTmM@7E+[^ Z1  p{ 0] qxJKAX2 )2682\ 8~l1;ɬ8zYI։=NhSSz=Yz?fFRia"L,~Y37]p7ZN{N9?.hDJX-Uau~s郟< KP*7+a-י +ۅJ.hix /:RNm{7}n&x}g090NiHqW,qu$Ņ8‰>{6A7y^\Պ/E: }k>n;Lq檔#K{g qE"'d[eD/.{0ok-ƱȢK(۰0%15=aUFy5K5$Oh#FJ!ҫn~8 oz,@tA3Z;xtV>,آ\}U@;U`! x<Λ,7oVng b~SAXdSLF)kk^EG|ɭXz5:[h2Zʙ J B"Eޢ\D6`=WȀ.8}Lo}5jxܯOK9`^l?: nf'5/'^S8?Nǎ8 6IDATɿU f w8V @ ve8Gu&nW7QlzE"i,/\bSWi X qo:&/+ s+JV900W)|]yy!pV'i`GAW2yYSFՀ':s{3CfT<Ͻ+z39zE:Su'B❹ 0KQzg.Fg y]8ĚPA.){κB`7i9ل["!d[0 awN]h YZ P翠#˜5A L#?7}]},Dw;Kȗ6B޹M XdzFe|BVq; VΊܡ#? B*S8*䙾}>wjN1;7\AMىA<>PwLCOzrրd4{g4jFڸ-?8>`ҒRI0;4ҟ9{g.hԨ1I  VN /Br4-[g>~b-lՀ}|呉ЋܦxTyk+ }.Nϗ `!ؼ3.L'rPnakZ|}Q 1㮈3;'=n@G>Am}FXd89K̩F+?M1-րQp1 oeG0`p%崓OX_Y4s| &|y\ bFT=Հs%BzH\d<8|BN|T&r*wݽI<`/<|伒5.$_ ?V\s#G|i>P,㚕&hm&1ZwYӤyn~"`-"SvS6iHPQi#eFu@5i]+'?qtхAX__ KRI<}ayȸ},`KO㳯`w"UKWYt;zq@Q`1/ fM6A+ ӹ9 J Wb0\p(Ol18xyt%{n/=FQ"w޸T؎j~!垞޾ Ts֨HqaVq`ւ?95g>Xbk-ƖVvXE.$`kL$& `&U~w՛Jr']y.h_p_`p%\!hp,W~ .?ɋ^QT4v-kA4$FF0VԿk6GP:jP 5<`1QP̑a>_.DgNn G _j Gz*I i}ϟZSVV^)$V' 4عi(ZrgeKaK>r`iMu%0M4.9~Qm{րV_o9GY^]hA^ghh7`juY62FVrH_gyh Myxq<}+޼U2}/5`r*q|W/qrq ?q57Y}f`#FHܞǿ^/g:u{ʮ"c(Y`gЀlԡ><&gێ}! ZrkZROsQ\uQQ}|NC 8kqz4u8GӐFٌ69RIGry¬>V"7w3X32Dwв􂥙?P`Ą-#ȼD_;جi7}o`0 X ` ,@[_o<ĢIENDB`gerbv-2.7.0/test/golden/test-image-polarity-1.png0000644000175000017500000000406413421555714021513 0ustar carstencarstenPNG  IHDRKbKGDIDATxAjP@X@WEe.@MW$!_C2^H `0 @@ `| -yFӚL(;?9Ɂr /^ 0x͵ F `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ 0cRer+,܂V_y  `/& x;udvX`lۙKXG^n S8π `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `.b8@@ Mf׳,8-[`0 @@ `|:*IENDB`gerbv-2.7.0/test/golden/example_ekf2_resplan.png0000644000175000017500000003441113421555714021542 0ustar carstencarstenPNG  IHDRKbKGD IDATxk*ҨQ׎يݨjlWK@ <#**vyAESu7X)Pan†}5j&5yt9=ė@f'0oQYMTs$Ul.( zkUAɅ)$6O&@?`l+5 jуrö&XN!*hŰy@4ZU>'z4rC{c{%ۯaHX^54N#7Z0}&q%VS7O4qXp%ڀ N!QhD_Xp% 9x܏ϼ+rF3oj 䒛$#{r3H0/D 䩂4< ߡ]6YG8˳&K `.wx̴hJooSjPQ*9C+qskʯ\-G8q`WUT^;|Ur-TMyEG@'+? s=Jg@{'8xPf|\+~˙we{g0H)7HX=t8HFy4'V\×33d︘|E{wK`;|9Id+J״Xw].A<838uH@K@;|ϩ!4MS5s6XCӻM3m]TXPzR4CۀMG[ a4ISԜ2!Ukyv4 r[_'] ?0W}s|𾝰F67 c.ʼnTd\F==k&SB-uO՟3-APA#?5_r߄2ҕەW>\LTU5/Wo_CarO֟ ('g~OXl8M{pK,ʾ&Ð [԰MkWt5T?DgrT} r)36$ ~3 OgUweJ{З*gm>YUq)*w|\K>?SUM=,|'_=)vwZ \4rPa[n0NYY.>˚SuxY=+(K8/!%.WVBG+|&L(bCWͰI}3)ܷ\TW.~G,_-8M+?TAȱ;CQ\YsA,eG,~4{ suUߩ(G|>?Oyfm^cއxl7 QGz2UCT^nMkPMz'px?4 k^y|sۃ/܆ÂÐ*^֊ٯ%c%xod%vʼn;_=h61D)!S~;%]S^_a'ςd,}F?o}uҕOX7IQ]tQ ;7OSD,ѯƵaAT(B`g<É >/f2Lsvz_0?É*e 1 ]<BK&VO@͋/Ȁ8wphNEI9W_soo'*l5ɉ`rO%SW\qO1QVOy"dy '9e^$}0@t^n0qaHىL5\z2cɯ{sR)*?$'^ܜn{!DV7uk_qK-@be]eA`ڀ^ Nڃ FL=`å6`5@/h-pQYp=J`@oVEۑÄ<â *mYOu}/0B1IE4$L~{5ҬPaۀOS=KrtwW]ƿ+IBTcKuWOF4d\g `&xOYT]:HBe:+P^YCCD[ /[-1mNI-nNQĄn{H{a\,O\ڀ+&`{u:=Pvz^qN\ ] bmb/8,qo]1DZ+V,}0Vf;W7xib: j E'E}u]{|1lEK Z%^'TAO7~Kk>կ>EEed.Zy8']}mp1^Col>:2NV@6V!~:a:@@t#!~ikE[l\3d{{QyW !/%\ur,Ý;3uuPϪ M3 ɡSpu]i)'0j2Vx_ s) OF}XyU:ڒU< ɧSp7^w0gn<)uOz?U,}sX}7&t_P+WX y#Y=?}Ðއn\K0e+$lh͐e}eQ?w\?c[%&XtIv:M‚uowltK|  OphNF/Ft}q6ey+HRQU0tJLWo;Q:$Q"*ÉS0 /Y7u-;욘mng/Qaul]d'5m˞|k,[Wl/1޲'^!y W#9VomMlER828΃M4S^|\&J^꣮؄0 kOk3&m㯹`#o\2V$t9W'F :YV1}3aUО;4HVLQ[ *wwzF:ܣK!r؃m_b :Y08x{|H.!׭&OxyuSCl&؀~Hn2B-JNOz{`NOի/ws=à F'KvΥ}sWcJbR6o/uH{݇|Ek]sM< HM]3;}\gp+crO4kFHܻ`y> Ag˥:R^U=<@Ew3Uh[iTly1i[ylc0*yVvWn '|"CIB~Ϟ.j!n'iyy pBh4XJ&>Lʡ<4ֺMkZ3kk#N'o!ʰNX-{rhmIv]X|&m{ , 0,O.o>We7ДeS9tG(8qEs* J[o|&#0|<\OVDKQ#ykMt\0@hE'>'f*Gk0p?ihu8i_O^g<!V?江r=|hbg&O a?W$ެYF^.jt:6xI9syvh>i:]"y(xquGE# <6<g5"Eoۥo_ְv8 { v\lSKټXsW| 9 ,#0.7ϭ@oSelC.2#pcPH>k3U~?ljG%ih_<ኾo&巨v]䴑y&ǘgU%y{pͮDAe#Z~Mgc:F$huV3y67%`3_ϭL9ܷ WvmGjOI@mI?׉1xyOVؑ®<_ C#y0S\xS}"|xN)V֙ j}2pw􃂜IiFase淑〓μ_(EQ=u Nk]rMɢdՔ2 "q 槠ih_]n"ra {\EWX3Rɩ(iB_鳑Ho|JS>efըne뽟JUD<7z1?*"N27̼bsOԬJWl."@^^YL^k~ĥM]2WË ~ kQϽV~v.oەfFEk%i63T ڡ07zqq0ifX#IDn09@Q 7V ڰ4`B }t(!>F:%6~@0 y{'`ٴ3B)ҜWY[|}VZ S۲/,Hϵ>mܮ9^r^=l qOYm=՜]M<wo>/RRDŸ6 Iοjx>5ib\:OiSrӜ^lBSӤZlʋS^y߳~ XC9M/U޿^* x]4* @tW}aʈmt߉O汮ve VYtpK>6y zQZv'W ڡM0> oizRWLآ[]#yz9 fJɆƠ.arTw"-=(}ֺh_ҲZ|;"ߏ +n I4Ycitjdrq폇fG=G'Z_+kG`WBj쯦 ZПi\V0YQ M{zvn^u⢈֋xԎؼTs)\6fT><2Lh5E~CӯC)îj1#ucVʣ"^+.^'A,1b2*ҩ tL|h4ys۴¹v"_/;oʚ-c2L{srOu/k{8.~N쬬yt ;Xv: ʢg\B([>fyAsz$JfݞRi{s4T)_?􂾌Njgo]TAI2:0LL~C1LOo ܃r?4:-?!hj%ɞ AV4UB_F{g] &}6|y KSab}l UgTS)1yf>fKn `=.b/?,O4rΘ:O. xm5!i|Y}psUzv[ ֬/zb=>/+wbdi %-qgڃrx]%f-`zvg~ϩ+R Zp-NLU|VN>3Sx JO%pXo\Wqx]+{sSc ̥..7c<6S1(9Q~ + z ɻ}XzF7N^ɘ!jǐOʳ"h/c" d} s_vl߮ԣYҲZq%{} D~VT%^UnN/4}fKL>8 <vi;m'em䞉#H:gnIˆ{39eqLv_ew~}ocMt:!ydzNn>D~gW]UгVAk,諠Mے rm,Bے՞t4&ÐLu'ؔCW4L~./2^nIW]/oitiyꛨHzɵ`@%ºL4UjN۳ty(UEazl=NcKH/h[ C{p8P= !9R('etŗt{IDATGR¶a@~Jۀ0]YezGFvNXkz-SxyѬekzX: DŽnݠf wgn&O\1!٩ǰsY!tP[u\&>'p%oK=5l`='q @_Vls[?&{oΙ+N(8ꋵuWD7'7w s؜naP+IG%gPM&뽫ڏ=_1{D mز{ 8*8٣.Aސ;MTL"Y<_\ݩ'^}=O^m:ayta<0DZszFGkR,n@nBW&ئ=D}j{4"1&;lGdI<*dnNdy١Ԙ<x-a%H+ KL,-?[YwGK-@/h6g߹K~2=\Q=%gS6ɑq}=c[L6g WeTfUbسOW淵G>Y"k3CF0E3pnG0y:>J)oa' & =9VL zAŝ=lܬٙ'yY:#9猾F?G,Џ|}}m7E?ז]q'J֧/5B/莦/_⓲+?, >}.芳2R6Fċ7c[יHtNdA]erVp@ԇyI%+axR~Aj?m+4u,zA_F=_%פW*qż؀W6 ;X]Emͻ`c0N ү!?9g)^0z`M~aKwm^?4>풄֪IzV*njLDJU@<咖 Q}G.,.lh$me{&r$ ֏'A7DPt [u60l5'%]~Ðr7gJ.:PVD(W:+*/5OE+nVB=.B/h 3wWySv%/ٜsʏP+-Ӱ;%N ?.(C?%/*y{uQ\ETw si^>}"x\aƫj-Sbxg;EV tD`"N:`g/ M;Ԁ*zAmv\VE> ۏ|\w>Kj\۰6`zAk)5$/@Sk^b30-wѨ4 `&^'csPYp\=~(ݹuWӿ󒜯o~hؚN; z&elB1es_^qsrEKI_q 2*JL V WÀ*&݂kۭՅtŪ\"]1`Es楢>ZfK~4:&%&R>E0 wDOV-=)ڵ4oCӠ[嗶Ws ?, =Z)arh- +!7i=}Kw\\ b-zAld'~ +%GvL旈k,+?Jq݋UW]Y}y{қk^\|XTcai8x*:a5jpN֘sE;ԇx\]Cw8Ԙck+o܊/Ԯu؆|,') `Cz:+?3õНR5 >VsY.0\ѸCXMuÐ ׽P[L'x<)sX%N.CȚ7 X{{{炯mn`ISȕ~UЀĞz]Sn1nUQM,eIslOy$44p%kھXM C>D)l(Ӯ'>?CR!XaHW{JÐu_9sA\%PjѢr jDҰ[y!JGYaۣ344<ĥX’x)k{\al}ZrYSQ֩n>-{&Ӽ&RT7!-FNJGooff=y1jOyWUUXOD*$P'jҦc1nՆxۄ!VT \_16vXzYG/R;O޶n҃r+?>X6a`n04~SwA xiVm>KmOsAL&wݩbM9QOԝc,i] 6s{9ِ^"[Nan`cۀO3Uα1`FשD^: +E-O6`KEqX>x̝b#VQ %N /73-&譴{|R½msǭ}Sf8Jy[5f {%)T,=¹i).1ВU9e`ojc;ͮ sOi}/yvkNs#!QLڙOW rۃ04_WAŇ; uztEj~%&B07%[NWͶ<gl|j̍|޳mVm<o)4LSgz*J8Lnڀ=Kuh)`epp]gj~nW+Qt h,:ygQo:mVyβg~?-0{>JdoZ2,Ԉ-7g(mOmފ21[eJqUǕj3$io!r8;~YRUkO8|nY|Kr!zHCgc=d+iEƛWڀ2?sA&I.28W'V^SByVYpYj:ǟ 6to~xN-DcNw ~ ReNDX=(:)9Y0hp0$ yi$ LT<_lOs -vBhp J_43wTk)7_"{L:[0UYcIZ^ ,tפb-|^4?nѶ(;=]io\~!Q 98Ma۳n[?*\n:aA;sk;O>z-TWA%8JeOɩzQ~n*ƱalMZf.Fl`9;=/an'hl={m_~WP$O>>XZTc˦C*PT]{nά^xl`\,D dkiR/-ߡ'SY 8s\UsnUПeN&8i78y+)M~Zx 6%gMjQZތV)ϰ[s+l(뷖eƃ/ާ] kL2xmK?]Kߕ_|V; CtB^пtֿGpֱoC P I9+(b53;w&`ycI93ȭH59z7w.w2>߯խ`?eWIP\} *?ɱ8zɯi~oG}zxS2*뺨@7NL.Qn?148:ݞҩbA3Il:ELfro6 Ns[!ʔO37 +e` KZ6&kGkv0Qiۣt":a&DY1dؒ~~`ho݀+mһ3ٖXN/zk4ni?][+*¶2"z.˝ >gP!h%{%}YE=ncZ~TZ1.[q>c~xLy箽4V W0kH EIrz F* ZRiVM'MLݾ 52E'ac0Wo᷊'{] `0_\a:9~Q1xc Kk71^܉~`G”BoX;1\ +E@Xޜ<{%&$'| 21*h#. (iR<`0諩49Ѻg6`TL',h,ډ &tQKH0^JjQ/~=o+*޼r}/%ڟӇ* V.N<'.&~q<*gώ}!z5@)w\ @tDF 9 )hqpv_ÐWԢ,i~,4 ){`3=u+L, kLD/M{O6`pbȸrAsp fJ @v ,{}`uJF/h& 0 L@`0 `!"0.ll3ZyEtN"$p-ܚp; 0nAtfcLw2*]%p ^,-30, x POJtj.@6!  GǙ0>O0030# Ǚ8LOB  3000``O8@1@ ^  cx 3000+4l$  ØN@@d`#3[ <+4[0p WhxM @ @3g1   | 30 0p"30<#  g12C |"Wh`to  |.30 0p30   3o \ 0\A @똁@_ w \:f`0p530"Rf`0@_@f``30 ĸBә@@g` L[  cL030= 0p+4@[ BӐ@@z`` f```<30@C L+ <Whn>xf`V+4M00D}003000\M00#30 0t\:```Rf`j```^&  2&T%  2&$ SsJBS@@ Pk0S@@/ P0S@@ P+1S@/ M   30@ L  30@  , x=00*30K`%V'\Y@@ 4ffQ  030X 0\% @f`# 3H"\Y@@W`XuYu??)eEahEtY0 ѥ&T]+4e.y]Z` ItiK.lw^D``0х-@ta/pAf`.p0 '0O.\D .04%]+4.L ]CM `Cta!6M. $:e.T"05хlřP0Bt$хs^p`80 &6]`/`8Nt]`D܅ ] 0}.dn |]`^'Dt/к ."fI NY؀Yn]$/`f$@y,DhEI]-pGXw|'Ht`]lM E`/`]}D`'v]u`,/`]0]k0 l0Kl3IENDB`gerbv-2.7.0/test/golden/example_ekf2_gnd.png0000644000175000017500000003706313421555714020654 0ustar carstencarstenPNG  IHDRKbKGD IDATxk(h]_(zP=n6Oy1 =gut|w 07R$ۜ t :BSvʤNY`4a{!Q7gzSuB|ŨY^Ņ8p6p8zLA >`,A sL @,x>#p#i`S'9Y^H,^8P_O>4ZAe,?BXª&AXwd}tCH4`X\>)dhprIRZ-۱X ʜ'W-ܢROykQ?yQO=@ SsvmKes7uWc‹au$aP˶!ϔ6v77*m[ %l Pao b[o26kӟن*unGÛ$&k˙uP?.gxB./p s>1UZU՞&Q𪅌++nbLxΔLDгЃ{RCએ) 8\z*iƼMff╤zSsz LB;*sxGee٨Wr{Ƌ*j}Ѫe1 _-@1s4Ѐ m{g2 , .tZnʄmH4d|#܇GR<9xVArʏå3ðӆ}W}V*33N>[ZfGlHeI W4ɍfgF` 3 saףDƪM^tS'y\*N@bks|$0U l!= 7?FmCZ<4"E8lC0 -TJk!^/z_MQvT U{)FC٢=2!dJY GQm u%؝lN-*p=s۲0faPx[Hh?(WCf,˭>S8Y?ģ&F3ewh^V2<}8j \$;7gT֘*d^tQSf֩^OS|7KU`p_bN as#Y*!?'xZ½!)lCڋ_spɟH7hWE:+{e8#}\)CF?A'E&qsx&"5cZ `C3j^惋LQuIٜM٢Y]vZr2NbOQn17ɠlGچ7N>*q= ,В PǑ٘,4`x>,KoCꔾ?5`#/,շ!IT6:A=آo/-vxJt% }`Չ-*Cl17ke0X=þx-a1b9c>` hV{6  V#آ` F1ɨ,8fkUrFh `j;* qX ?[&ۅGYHAX3JKF)3ߟXc&I=JG2R9yͲЎ4X$4*R**`E2p*}7eY$) ]~;}Jɂ `Y\;Xy59uElBe s%\Ii$Mу}Gs^(8U)?{%ɦ\ۗ 8ե)`9;Yz꒺}.߆d}lM6槤Dl*q&^aIXG QI!U`mxǜ5 4G\O2yv'{`+I9K7jx]2V{bye.- l74apF`QMEf.IYƚW=$ʤY[TXRY,ۜ&Bf,ywi'TYK30n\ymZo#{.G{6\Ir`؆4Bk(bvF$?jen0Zx$?>ʹͫTalvu>jhNv˧~H2oT/̈қ"5R B\asTfm.٢OCnajӧuԫ*w]n߅rVAM(o3l|mn֑ ITW$kpZB+&.D SgXr̼Qqʅ6zH!daw,[kf3z StFAgD6xNB:вMuһ^X-ִU9i٩T~Z^`?]}6$zo]|Lj +5[A|^ kjT -ܮ>mtuŧX04zKͳ?qOTbIRwWe;.z>1T̕hlO_`G95z}qގ FZ-Scp+z|lG2罄aS, s8'{2'O"1+Ek  ۱`bop }mk#<L8{vHRL4BR>̼6}ma8-#p;XVqy+?YSe~Ju^dE|hav5A+F|>\)@k|,x6Ur^ew1if?DAeL)= Q o)}_+Z`\ڐyx1EOyҹ䩍j^|ЀWr@00M-d7F* T^3R:߷0 >F;Jǐa 1 9\p!`4| DwD},C*YJ oCZ]e2+sYMt})ӝjA~9\~I>IƜf7\), /, 6׀]URG/c03ahˣ{"5`#d6F'6_ĝas6۫ &8wFKouz8_^EQ]+C:axŒ^Jܞb۶rUð'7v"fTUU+BGcy%, {DZC`tQ›h69_?lya,^ttCz-v*Nln  ؔs H!(説oOm6Թb=Skzku l] EItDF[pL/<9wm~]hpG0qX(hgA0BNtl|=B_1unZ5Lc=*EAgRgfr ![/W.|wzŊX\?PKy{qlJ IdpDY`jTUF[1qbǿ2S?ᮗn%;q%Bif_$՗}ͮSߵKݏp ]JU9Ju4Ĭ%aZBG{kȠK1wpF "8v -f<}T7qzS[*œbf%)܇zjs| xxH6$]KqbߺWA8:2Ɍ8\TFa܇~lk%hv΂aHDt[&Wa/Ǡ]A} D\"_7,ș zOuL _tl%__k>'{wJJ(tΙ4C' 6O- aklpQOliR f|v%S;,o&_ƴD ]?{8?%^X#_DO""Q,}dM<8 +l _B*KvLGMn} U[k>͛\wr^իc • 4<æ8 Qm|ƛEkcgELێ];vq$nS+ . r nCF` VBShY?2遵 ϧvlD L2J>8Z>~PI7 *7)x{F{dRޒߎH1~EMkIvC, DPM>==M:s!ӌ Z=ixY+i) Q gs&x>mE9ޚ&p"9cSbop P-p-K}۹da0AU^C3oܷ6 5n IC;=y ( ]8#P0(D?/ ZyIwCN~"'sO [l5UijsF1jfr6>7@YQf+T~-Ir֑XA#U: "1xHc><쓵ڹKXbV쓟ܕ{Dѵw4M[W~k/VE:!pOxθ9 -O٨!15{t(mJpߧ\EsϿ]*E3hj׀%}tWdR20MlP9D>rRLIi =}Dm]ZCH[E28٣Chu'ZA~/Ϧa ;t%"4A/Y1.O,x#ټ F$kw(2:韼Jr9u5by&͒.5:e4hxPHm ѦΎh5,X:= Hh)2O B:VOP`H0Š٨H1h?FvYqo=AXsLJ wÆvPxWlC26lnOr wD WQptG@Wp]4`H2b0mZoA:,$-MRfsA`h^AbthLQXeFQ-0WNHzU`JL5r?CY&h^ufJ; o7AG•OӚyn[@D) \aRYn%D'YJ uhƗ+|(|^g!zњ-7f`(ga i|g-vnj, }bO^bOѯ^4M]ˑZ7Q׶->`n ]GIUۖ$%R,pW 4졆*hyLrx^up%?sE6l(dl{^WdlW UqDn7A{rGdK(O#8\V\Z4]XwcvlCBآuQ7z5\xCE*xfjMI4Z!u؍gF 5ry|e,n1b ºGR3a03QQT*{NZ>l2sc :0o& ;셖N0U:ub|5XL换bw;pn( ˴- :#`&賻JX{]Q*>=ww1s؎p9.-P#f3u$*#w4d{ 35bt3Z:ai;\/Gy|_ߒGA)]DcӟE'g f?e#OM4g. }b H&hasm ;.N{NX6-Vް^A ZgAnn.u'k[:Ӭ"[ʹy^ mH i̱ζL'=Y(Ɩe6 aG^|)W8flO^^Wɼ6[_c2 9jJ X} PVj\m#Wy>?{ D{n4+E>6pΓAT-7Lj0- FS4.Z0mֵ*?"ɭ-aka"Ӌ$2m27B8'|L8˫pQ3wO.li{Xs@.d\/W1A|'1(rU;B8$XTv$EAo" `P`p#PhAtN8>I[*CXf|b_@jx0)Spy.zԫ =^wX_uV[)G5F C;rjjζi }uM#DAdNbzmѹ5cs0& j-oYEQmxxYYݰri>gi1]'@5AbAH+׺vz|Z>50tmJ`7牄:pfK0 -aTٺv W+Ϣ)~g'd̎_aOt{CKI44tmJ`7ipqqC`T(FA_bv5_ H0Y302)yKY8i"͖T5pQBZ.a؈WVTn伎-1AG#!EuǺvLF5lomhJ8*NoCق7ú.Q% gР|t,PxSyU8XMܱy;^m(-~)P$[k]?%25Ԯ@7ZmTʆD3$W.؞y "&4aEzn8K6g)Sn ci=V>c">oDOA%o48P%?nM@.f&(6O[r6?­Bf /{},U@ځtQB4d9e55o6 :Wj^W٨:0 9|IJSO: B/P>SDkK D8 çq ?aձ | [(ԉS_'wAXw.]a ~' 0q*5 Ijhkеg*1k"X1K p `/}ЍXݱC @ܠG.pA)!T& -) :; pyv*Z3,3\ շE5?}w>/ EAo"pSphoWL| Ck=L OݒU }6!^ ৴J ㄢUڽj Ǡ-vhDXjSԙI*[Z켅%0o ,-6ކ4;]AOǩ#2ܾo¸ 9w<3^q@mፂN%6)S`;V T>?t! epڶ!uFixϒ )jςpOeSUr J~OSheqM;፽(:rbH5} J)h%;5ݸf+ijIQ'aɱTH%l@myMYV 6fl&g9ʅU>&úC4yw)Fn0AaT?C}$1[PGk=*U)RɊW@&).`*f !Ļh/a*n前"mw>fCr&h9h`"[pAUU[zdUIXܵcLn d-}qrWvyMt$ 9}K$\q 7 &1@@N]Y1bw0g 4 <)C$w'|\$/"9kvط"73GAlf~ǎ.[ [ۚb 4Tܬ-g8vg|Oc+WBޗhWHօli>f؎ ] 8(mMjK7=li6(1R}x_Bq%(N-MЮ1٠H,D֢E|`EpZ5S{ˠL ~HU3k7D -Ƀh-Lf'B܋'0DLFK66r~wl8li5kqE `ZL*ή@HDZRs ZniQP4b<ɓk'ޱ%p|R.=3T1p Ӓ[ Ex>` ҂,Pȓ2 ƙYBѐ;OvHiE6ӀD]vzwU5yb@zث[l=$ChJT5m H? /n$}C.>R(&k.YәdzچH/%AvyY?θ0Xu\ag|M%H<"ft@Ն.W)?B0A@[>g) =q@?ŽDwJ:7 (s\lNk> g܄a fpUavFI EqSE'^0)jGX&tػZx8nˈny:CV ץ*mќÜh( ag\Ln7Av'L8yAQvX DQQsM$Q3k}K׎CVSzfFT36-൛tBG6m陕 ')^=$ z&_gʵ6xt}FJKo4p;v-X` 辴0kŰr܆Jɨ;hH lh7YAvyۼ</n. I]d47C/Ũi/MRKؒ[\^Ԇԡ؟17OATn!~ \6?(茔/Y]s>)ƑQ5rg'^u)}f,^zV?kJ5.7B@s;TE] [0z0`z(QW`0%/}K 2d:`4`\f6`0X$jeB| ʶZ9oN=}I`EqWrx   /}طE# UGFm5.`Z+1[yLvJ3P3( ~ 8'VWU &P7#iS(h^Ne% `tEWt }|ԥW|M > Zc)ba}+~Q@2˥'u}1h2#70 [ȸ ])B5z4hRj${pk~*G7?_ i~9xG a-5<2LS :2+}pfjnfRԀ=H_+cR*039ƕdfij6kփ-KǦN))۫$T{U^YED$N_dW 28\>'EA+B2P}{9ј6bndž}!%CH ίLI_5݉4`s7m]6UX 'h7w-yo*U/>`hFrJTJQ~w[ֆK6F/ B3[Sv3 : 'ؾ+!#K_ͳ! ❛Se0JEA @, 0 @, 0eH)fIENDB`gerbv-2.7.0/test/golden/example_exposure.png0000644000175000017500000000530513421555714021041 0ustar carstencarstenPNG  IHDRKbKGD zIDATx[P"QdPE1cKM$(wq}?-W@{# ixl>'x]^IbSޛIb~B'{070Qa>~QϷp׾À 疣2 Fv4k2w^Z3 ̺\+5h)8trV Ş-fq,Y'NrGq,'6ҧq':/8z|8 XC137pJO@9eZn X@4$pni+j/ W8d5*k\ UZ Htnh_P.KXp@GG/. mdy2L0Ζy@k!' I^aԹ+V- >k`,sX$L `點 HQ[wDw/ PW [%,}y ܀X[z~):sϼ\PӰ [hݤ02A/qlL+#]у'5&oA~~)vOdj؀վ>eU}GQ̂8$˿"56DWTM$ޥ-8̫zh\D[F/cm _ڀ(VUHPoA""CH+GwxCB4`Sķ?qlГl)⋶ 択ߒ1-$E[d{ p58j,mIn!oy68)ιǁ l^`[h [~(HO[ytoP ("dqϖu46`l`= `VFjeO06 0l ` PJHn-tl 0l ` 6R[;] 0l ` `@Fj! 0 %mg˺R0@77i+Nk°凂0@w>CTz&=GS5s؀` |tBOq:ݐn#@M6`,/rP /%)bH!>d|esO_lB`Sķ?. <2PE Dx4i+RqŪ *xѲ;)ܓԼq4IZHGYpW_A+ve`E ^Rā ,=eYnyq< C-ut_;d߂~k]G)wc6\;3˚HW@n8/E/1l>, \dҾHb|X+1*-h`|Xk7>+h`|XD A 6൬A!WY!瓾qV!gI^aԹ+!H? 5|\8[t) 5Sh̰.d8 d97 ?q|[ 5>ҊZM\uxGfi+j/ T&u-}2L|Wz~3s]=OD' t'g_GX6r8-؀o:=y"}ҧq,7%rGq,GrG j i79+MVGk 8tr #c9tԩ< : (&si7]cS3hpn9*cS 'dXߤpa71Ia W-.?i_&? /+XW(9_ p0IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_smt.png0000644000175000017500000000713513421555714022557 0ustar carstencarstenPNG  IHDRKbKGDIDATx[RPQQ0(FC&hgі> qll씞`_"`5t"0zT5[r]@C~ LA@(+:fVǼJMA#xwl r 7=`(ww?-Aת~ˀOn(>9;Ro.Gmo!U>k WBHSo̘=κk y9cL{-hlt+^ob#hi\}Ap 0TyQ[]}8lGxQ6Zl^F|!0&/a'ߋa:ВJ@C*0_ T`XxY S4'dS9 `MѓZ[MIC -?CV`#O&9]}3=vB&=&Z]BW>W J Y&ݍ T#v2>/I,된t8D/<[Iŭv]d^D7vPɕݧFhEcO@[Ϳ6k3NM:$%{.M y%?eO@% ?@b p'"Y-]9hl*DLot+ϯ'3x՝Jx}6" K{au#3i7 1^I3C=yp6& x7wΡ5g pOsx;][,:$v?z+%|U1bOAXYE/Ё. Cfh<.]\=O SНǻKJ|u75RNe -pD'[UKX3}ߥ<}7"MAPb}:Jw=46in/ @MC4@n: @ 7Շ# @bMA ` 8kMݡ ``;B`8=kb0`+Л 8ewЊP@^~:0 X{j LAzХ_1#`Yi\0> `=,l hoAp=0%f; `sY:p{S3olR't3~GnFݽY_F)4;|vg"?:dtfޯAn7̸ܢm:a< Ym #0#jq,u Gp0`5UP]%^` 3K|T|]}Jw l%{q> Iv L=sko1]5n]W_>~6h,uBPO"E fߕ>f4w-mU ďHYn&;s 0n 6go'͛N`L3fD2w@Y._p)}`@j 9Tfh'c[R'0STN(wSzPւ>Ů}l:o @3q5S d `4KRh;oܒϛHπyz:  @bc0ofY-` S~zSt|b3Zf=`:@fnPM̭}J f֛_vճ\Z_μ>fzX^ )dԤ^Fٕ? *fn)hzХ%oA@0ͬ4~Vh F ëf>_T1 F7 : 3fpU0f  `j0FNF8޲I<~t<$q?\"KKMuֵ\W0А.W?l]u- 4g)ʹgt4[l]uUuk庂"0Y=8wQuֵ\W0PG@ 0Hi>z2 E;uuH#`  @@ 0`  @@ 0`  @@ 0`  @@iCu-   @OcSk庂"w>/u?l]u- {۫;Z\u-E׫f6[r]Ѳ[)8klEVQ$IENDB`gerbv-2.7.0/test/golden/example_dan_top.png0000644000175000017500000001325513421555714020616 0ustar carstencarstenPNG  IHDRKbKGDbIDATx]8PzbE*XDC(x!*D.ol峟o}Œۗ.{J~j+eZ"{ߟ/x>/V^Fɗ?|KG[bom㉳Kq\TP_n No0 w [竛q~ JCWN4T+}01}@)=`:d}L2..^1jKm>pm?H]cǎQ43\Zp<䳅|]gyuw`5.eWMIL}W'9V|?8v`46ܜ翤1i Zpa_5F1$by|ODP\Rzv/Y|5uwiⳙM<%~q^yx |8}oG{!>9J]{g @oy[g}b~/i_J~]o-\=Λ!}.m3Z׀Wڎ6mw|a3yҗ6/W:y@챲ضNgKB>@nZ61Nsۓ̄LcN g‚\׀̜{-$} `<:?W9*ASAzRzvzM0Ə34AsV%@s@39M'}Y9' v0Iu|EIs5z @n%A8*`fJ @',r,WK0+9oP5O ֋I#'uI_Ls+iv_*~aud #}:P^}+5OM&զ[p)5`Ⱨ<r<  `Hl0@v!u'2R|< X!!OC1h* I "!  h }&]'(ġ CtCR|? ZН0tiHЂ Ԁ!p\M,Lhn7 `.b;%_4-..WFyWi<黹,Zre-zWiEK|oZ.jjs.}7۽gcOԢ<u߀_jB K xWWaכֱ)} & z|wW]oZqNf$%c1m9BF8{Md$ ڞZCIJ'/4!/ܟc& 3KEHD 'ӴaZjHZw:0'e}H.Fy[*? 0Aw }If*\[u!}YWw 4,Joa"L߫ۧ}]sd4p4TlC/='m}piB8/oԀ=3X^Y |MCJ%}C9 r2!| wnK8, 4: K^Kr~g0)r&Α45,/*E$ƿILx#OeT+8'y)H : =մ~OlAҎ042&Qa *UR {"IooQ^FP8͕_,aco}fF:B nO7a:@uwy%B|ُy{GHL= ~TL+VuҗsJ"_"aٹo60VqwGO8O&EKtO.S?'~{Twt‚!xwmҥ0*;FY7+fHZR `{-Aʚ+*' p-}G`yJe+쎞f(J}J ϲK0߽_[;#{gX6H&-cx31{Uא&n|O؟SeN^^ 47sOQM<eQ΀DvMJWo8#lM 궙ݦ3򀒍yCotG0޵+험Q^L D ;: {T<\/1qUTj%}dž7"ÐV\t_bw*gVmՠZyxS|:E jJqW˪cCZr0[GCEΌӐST n{]#Rt!-T??_8pFulAdB HYn?({Ǫk-u=hmU9w}aX/ʞʱ&6yWkX\Kٻ&NPHv lD;W>wuW/%vKDd,j|]tD /a6Ū:w/m:p61=UvhLX+w8<6 ~yZUYZ;:{4괉Sp;\'N6WRJ9uͷ-Iy*1䴉5 |vFiؕ,tE8Qo:JU%O}~m 9osM 9wzkU,3k(SpL2 ;\ ڌ.T&& tWN Smlrx ӥ%P' &@u$: C`S5r/fJ?ԒVq3yv 9a&? _i&9&Wk{E2%e D3oP&J }EV975.v{뽢ώ"S%V9SgqEKה!F˻4&eβcE})q#?t*v, <#9 kN2~+LhDh&.J? )ȳ Dsq*YIg.0}(y5䈍pYi7*9yE6Q`N܏TO nipO&pgO$uDÐk$ا~uKTa;1xƭ^l&v"} ꅀг |uXrh̉I;a"yP6 }\楴-@]%81ID/h@T2d5$"|ʥlɁNLB,NrB^'&)DWgt/&|Zy'GG~F6p qb`i ` ѽmք.O&hrD Dy[N;=p ]+;RU/VjةGlOנԳ!zR-{ĪQg |ȧL R[PY]pNCnec~}ܛR:5O6 oa>7;LcY_.qyLg `dqhx5W))2_̙s8/6n̔/ʣ2>^2I([dlޡ="}UG0 F yBA%ˍk~k2ʄ\S+Q XżB(WNԷ10aV\v*\7ͮ6~NGzW[8]ќ#ĉxܽf+uų_ֽOI{3^ej[&O딉pաRDWJ|]͙[QK UO 3nܭ=Yic$+<5::-U=>'˟ȃV|)82hް%O"8b`\r{^_H(ߡO*b@΀p\Za7F?o}{πbgW7[EKpwz?{@ )xHI¥\5 vT7շ?w*v7$z-zĭ5h-󱇼?cEڂ+]krsݲ;y5d6Ya:kYꟜN398,qǾJ$.׷n*+,_a3T:?/5h5Wk#:BBuAIqб_Y[ %2Ue,"@qYUeTq*7a\O"lΔs"G஼8V#oU;{o65.J6/Dxfb@yBu.auMSnjrv^zVR^a/Jt%`UOsn CN{I.WIYsr, 9Y['?}18 RЖV~ *v uj[я%n ߨlŒG0҈G+݋ya)WKʺ20d[T%7u]'eohx5%c}ְhӐ`Z읙o`E\ַf f*񵪘wPMǷTY걢/t6ܛ^e+fp 0q.p o6bY ;SͿd`=Rn\|d05,Y)7: wn"Ej>}.Uk;c&^.g%ޛ4|[0~Tm4=?7z&jyz|7a͉*? ++o5wN9H&Y)\Qo嬾U[^4O'XdF>8n?SЇұSö)mExVIglˢ'2UԻ_lTKޒp|F p,S1#WFVb_dNCkIOY'wimf( ss}4Dph<C0 N'mejS 6\",q&Zk˕eDS:-wߕWFDzGpdIH =CNHc)MunrW>goVyuigmrsBf=!vjE.H\Ml029U4<")wΛsoᣵ-:!NUsKi9SԸfQY[Utcm'#>oZה-kZ^֡699WI\y|^݊jQNfjyzi0pgz6  ‹o2ǨP-I?Yvxl&a،nڂJ,6XY).'u (N- IWe Al 'kDJ<ۢq1HJ&H|M3=pb S@ڂͬfeS>3ΆGV=>cTVu.&*[-8=t6u:)NO5a;_gL.E֮ߟp 8?Cؤl""X"O>}©ylwJkRTpwu/ j?&=ە|*} e%ɝ2͐CΫ+}\ p'M5l=xNemibDT:*n-ZoѧLfaM+ۤl˘K@6n{eeʩ\E!?fy6˖gjCP;N^i Z2MfVUd76ò j5SBz$V pѢ{6hAG/B'ջh6,Y~O_msT*L%VޕV;`yrv!lN.^d@|Ne+KdM] JLU RqD ȝ}Xyj0ҭW =fԖv-Hz`ݩ/5)[ig7qms"ȱ{iX A< &YzibU>bfoEh~x(iXwV*Vm4EWfUּON+ҥcΟ%nR5(t &|QezsLJUX=cJƵ,BRs3շ~Hͪ;fzŎ< bSKNa~4̤v-!ȗ{Z95I4D-Y}ٝbɭSO'v}E3&i9:DDG DrQGFWdEWT=670p̃~6μiFȚϒ=_ȐR@~R= [VFB,(;d]^w >u7*;Q.g-?J|p681A 61adwe1_BWPlQLJ+U7ue, v%NQ/"W=c R{5i9pcZaYs[r)I'(:/SU8R\#H>*i+Aq`5i"cUO;ww*T-׀j]{J0@߻鑠MQ].h洉<[R%f||O 3!>vVJCjϨԋ~4; nǺT8k;Q3T9U\>>rhVKO"@٦E7J,Y)<5S,1|p"G|Aإ^ 0yLÖʒՋe= &dy)\K2Z-ﻒ+ mKHH'Q%V [ti'NUAw| *0*FĘϝ,ZLZe2^WU=:'eMUW퉫TV؛ak,@U+# lV3}Na=\ۈ+of W):nY&2+).~Ԓ*ΏJPJeybU5 6a9hZp$0&.J5~a_,U5Xoq/x̓5]iih圮MU09eX1Sj|xth2Oj t>g,"Y!Rz5*AU7l^5'z^UyDZ2,*P0h+7J5, "Z?llDfILB~աM`L13*6NoODO/꧸[yUsLEd82Ԭj@*EdUUߐk뼮^~''-O.gsiYsi}R'.щ.-畜EU+VohonqT-S GJIVNFՃ~٦₭Y"6>|A]묢Ru#8Vʡ^mRv)wu%z>H~~'YR#O*,+,oz`qtpE%R:r?/"`&# -;Ƴ$dd7o&?.l@UC'dEi~0lȬ,l` ˍ;e (J _c ʚ3p*< ,#6ZbB',.AUwsUK.]FƋ*!Uٍ!Žʃ;]AQՎF6)qi%ɂ|psoFU ?rKS]IjztbUt62^Mğcad{{gs+"V5\i#٦DRzi>.aFƙ1>,#ss o›K"7_qtr,XY͟Ȕ+Qc&[8 Yבd pAE0D_+|K:;_M;Y[pӄ߸k=hknʭN͗"g Qm)AZfEM]z~ :=1LAoS:R"{b5]eN[fPyPȊڧ, &-T/isYf`^WZ_'R⳺i<qMv0~j6b6`}_UO?QmUŗU}xC4RՇVኬ}gCSy8|.%Gof{lU~}W[S87+wǵT^9TTuo;j8 eɝ){{8ӸoP#2oaMv-&7%mO;*Y_9Kxr&8^ܻS* |]=ZRЯ&Ugޙ.3@:^NXwη ]^0[#׾eڭWd"h7&'3)h kg,?WCY8K~Uد$*HONbmSdj:t^X^c>ڰը- D*w"[x94=9ץg3 A}5P|m@󫃦- n[{PezJ- -k;qZ!ڙ'*uf*m$JݔrEG_՛갞; }r)! cŬcBr -,D\^ginGtփ2G AhAn2U|F}Oglk`]Eeن`f)vj|Z2gɰKڛ,Y~eق7o|7""=YT.a$@P_{u]ړ_&x%.n9!MV3:2[n3i* s-єldA\*lUjCoypje :0WI/Wԓ!3p2K7cޫPEFlw CsM3LU}7SnWoKیe5ȘUF W(<_Wh* sⲪR ]I]K_ʘLE˩\ :'KscI=5 }Y:eb)+L]pTͮoE]61Kjj [4r֪RJ̫M15.P^:jWVct KRЕ%;eCu&Njh B&6-pGTو>[v_>W+|̴Լj- _K1ZH?&P&- V*٥ܑ'C ' X;U5{>[nŨjZ^/~7.hL"[˻@[j* /U7SB|{W~R1aU25 T5kS}]oM;c.W܂MAW˷:o}݈xmzMϴYWU\ibK˪VGD y+-N9 ȉ$S#A[TnhiJ'ˤ/t $ÛoVmcXO֍)VEKeUtk;/!+Evrf?:|]{Ĉ;;0f}}+,tRkdHKĝ8p )j#kBDlOd{ ;&dPǷzVJ/A>4&[رԬ*Ak5S04Ei2:},^O+r6}Rc jڂTaok j덀˷=4Vo5PVVuI~fuim?r @Ϊn7\݊sec摱r_ܺOQd mjLx۷K'@TݪQoEiJEdp2U>(E[铠>=o+6*ǯ*8Y31IQss39C/SRU':Z4/tR8|WWUB*GtuoՁ{VՔd^+vX-=ɉ[9DMTviӡ\[IsY.͠B)Dy#rݕ 9jq-X} d5Kj*&*6Uf4iGNjD>AnӞk}?fIJmeN&+T8)nR3! "oMrMUYX?j˘qupT,Rg\uz`c58sI C2#N *M{d蹹ƒ$T[:ՙTK鮋=ǡ9Np9}˷po~^>ZZ3PƑAq;Sv?[N"I^94?Q/ꊮ9yx j;Ӿ[md*esueW8[+^5@rJO22;Va&5 (15UuʫWs+^ݨC;ijK=d1ck_%$P~?h-Y xH5$)́3|üլflՆZDZ^N tc*&q&8kVoQ:[˒axUSo?aɳz&ÚItҚ[K|ħ-#!oq+MrۿU~̐5%$ؽ֚r ]YPGVYVlڟlNӂL:dsjWC $^c 1>6xlDץann Wt.6c:o*e j LgŬ-TNp˽ ψM6jQ9Y]Y]1؉ v¤2̽.B₲lp76rjNi:NJ4,y`u;bq#)lKS'Vjmbg̕:6v՛wpsIA2J :0,.s L.x6ɉG@EVRNe/_ TCL'߿4\j5ԜV">0Ce}VL<).qJNr%apwGXA`GjX6.+UJJ| 6{ <>+b&)+IM=VWz\"NO4&QJ×RǃTōw"dIhFFG~(KXNқ>'TogtUlVRvHd:ZX O^n3۽!4XMt쒨.,eKXr7ݮ 6 4.w!܍sV@(6^f܀㚗eѶCzӚLWCi8c2IR&-jfJJr])Tm[y_0^kS]??1 [ġX÷!c*-ʵe~7R#ޓc-"`x Oqy*k$D,$YtY޷G*xIN愫{bAH'}i>8oҿTJ7(خ_pjOX^&Iu/Īv~EGb-#D1]+4هHnJzi[>J&uMLb`u#Xݟj&A=| qg|| _Ui.eT3{Q3@| :_7xoZoJ <%>bxǾp., r?L|!db~К?sVu5n_ߢyVmnN5&kKgF\$\s)˴|A샿Mqsp7"häy. ][Ŋݘsބ7j݅duy˧9>bd)JkP+jVHejSIAh F|0dSgH[Yr/7愝 mwLiy-B~T:;_R97#|ݭRiN6F-0ǻ*/w!!_ 0l˼m o-TYʴ[oH^dG11fNpk`g|֩| 0پI*9|ܪָ.^d~,5ݴ8))h 55X\YҚ̇D69d fUmݸ6y~ۧ??B><ȢTNg4g=U%xÆt쓠P뫈W+T- &wr[*LKx!20cC?ռu6`O>/I+5ҘcɽLMWs)N{JϲU.ں4ʭ[X )hYÕ3- \J:8lM !zLÙpNjaݓ-tWwŹ5E4^,Wh Eu3VzNAw\TO>8)`mr_BW@vWA4[Qso&g<Ԍf' 3~ώ5 ;E0@: ,\-txũuIzW77lb8V 3Fp kC1[RnqC]^$.N AHA L!l / t ^"y(x.Umpל;xl ~ądz.@^'`+?53\릸EpŎQ6轢ɭS뿠3sh! l5#W'ޭM-]jj~߱;s _-[Q]7#@B[P%oK%z|tŔw/^S#um, )ؖG&_>_@NxWϪ ̽D˭ugݡ}&gX 4vFIWlws&o|Mt"|\en;,΄,*{eVJ~x.%֌8 pku~\%vK/LX]ރ|ݱKXjIe)]"䮹{ȇnZT3PEHLzy\_N`2 uNxp1ܺ ]]^d,3;]|Aqa/{3g_=kZggbpح'+h&Ⱥi&ba/cc4곻HEzWVҸNt։{^Ux܋U-Z5t>4; 3G'&M֝`5 WI2vr/ըU~t23yH%U{~`nXDwe^QVFk֟ՙsz& 0ΜbKXM{8I̿&7 $2(wz6ס*fbT?z\I|9w%8 poǐ=~0C`o{5n{cKy<ο}ѕ}7_Az)zj;.Q\1v{Y?}^p}AG3|{YOoܕJAj!}p/m; $gEɪ.IvV&ߓW*,Ur(wL-9O{yTpc-~)p*/oK<:^W< Q[:DM:!Np>j:s3̖*tEDfk`>`.a8ju/koc㋌Y XJ޾3¶3a0 "?WymcP=ί*OIꮽ`x +h`N?/G9O0cTF'vg!̊ p#ڟ,ty9t; y#Jx.3nϐf6 0r[EO~VIENDB`gerbv-2.7.0/test/golden/example_jj_l1-2.png0000644000175000017500000001147413421555714020331 0ustar carstencarstenPNG  IHDRKbKGDIDATx](PwG/ЫE*yȀHsbfi rX{,Oȡ ڿNy(,ל`إ-0L `yX&]Fx*8# НY* `@` PGBz !F<0f8~;+  g}D첑FH? wn?Îw `@վ`6{$P&+|%}+Kb>q 9 `*yKZ W&0v=Uh`@NV tX5`#?^:|1 c^#V#q`SE~b?}؏hNbPJPskziO{>i.x D*ŷ-/Tºxa a-а%Q` v?7ȿd[#U[ Kn)^r[am'\#l!ox5nVx8 ;΂t,?B/~ӟMe&%?Bz%E;]x~'G~JG._Tn?0ш"n(>LhWpdpOWYm;[Csv^ݶ768)A!m+4Dɗm:^)۷G}0YBSv2!`(4+o  |%Q=^[ue{TfXgy?a|%Q=ʟS0w=9|x+ѓAxgSPOW)OᝥwA=ޚ9 839,#`8f1C~%#x *+N6.3K{{Y_e];=cyz-/$/~ٰjQF{l,gAhеa /gV=ro΁BGū h;k;tvk>/zCB&a? 8|uģ G5st~Ib^\!}lw?-?y/8ѺW=f釷: d}\~;/Hu2|O?+o ɍ?2e0L 2 G (&a_ _oz ތv!Yη+z`K/\eQJf n3OG\w'3ܶ;#I߻u3vN+$m,{_`[5O߶t1f9o~֜Xt, I̼'.8 [OZ'a97Gū*,_#1Ěy ~*8׊2{\T6[uM(Yf\_;[ƄAxg_)8#`N.NEվu!&7xj5 4װjpNGO7Ytm!5{tg8촯/V h;kpfs7wO/Sh5uh3mV %\}Pd7st.D28lR@lM] z ̯;\.yJu>P^3 ߶u'< Ue0߶u4tN+U~!4txVO,mmB,~2@~x6vZ?Jtmw^*l^o,S4G*_c Omi#u`YYggiQ˓#9ײ:4益x#\R?%ޣ}3dQ"=jUM?c*,d?2OSj?쩾 eUe GR{o_t`m;?>;!ReHOt*o UٯztȌu0_]ӯR5 ˵ 0PYqP+%?ZygI*+./vD1{oTH^8\u7=n?%zx Y35p gO/\ڠÊh5W,0˴IXӷXjr1 G5b'US e 5a.G; Vg &?8د{gpl}8[8[xS_NnZ%*A=O3-^B7 ڌk&fpԈ/w[;e؂t8_u.x'M1A8ׂ7~ucFMSNh\o~V4FDA9 D` kJ_xeOWF0 0L ` `@&0 0L ` `@8n?U`vOJh5}d0o `{'y32V530L `4\sGF0 \f4&p (&0hd7$L3 0ť6 IENDB`gerbv-2.7.0/test/golden/example_ekf2_stp0.png0000644000175000017500000002771413421555714020774 0ustar carstencarstenPNG  IHDRKbKGD IDATxY8@a.0WыUm5K糲HPgu>~~s8N˧vs{,xxKۻrz/-jNEu5}P{LRA6C%V'Enm[[_ ڨ_/ܳt&  _GL~_a$Wij;e;9~O ) ޞ|| @/pwV6u;.&w^Glta wg<`6)Y_%,%V|]%#kgtrh+Å9HCphɓS?Ӏu y+}. 5EU>\PfWJcIr>?~55_ {ZJ&T R}s bZ4@w7ϿX5?_;t)HũKpѬgdJ*}ycpW(Mo!!]] cꪪ|rS48&#*r}Dd@,W*۩ҫ:WItFS-.f4VO+aYy^ѢB'ŵl] ~V ,? <]};|?o#SNδG~Q'-l@8M{p虺8.Ӑoכ0 )MiSr#׮(7_"3d96.aq)z-E_3Gl>H˒1\(a,U_crC ;)5VT|h^402^͞]kS70jҪzpˇ 6-LCt*˵g]37{YP:W *p#p}J\kHCŇ^<{iY"ysF׃tLЊ܃\u.o}U_kO Q/d^"$7(&pTrE'?B+v1J^_kV? mP{d&|~20 yKr>;'t6xxU %#Wmjػ~'Ư\ Ǹ"B+#ryKG۵+oǥJ9jU[8 wؽnO-K^—]{ҍu줨-oNɓϗ-n@>Q{NDRf~3QQ}H^$QnCFdg<ąـ\%>crƴ?<+Y 18!l\NtPI 12U4T"%B]}sIBw_dBbN.|YƠ\[M{JTI U~2 ]Z(9^r_$1|S{4v-h 2󏜰jqVm)4X۶{"5CǟČNs)ÅgK<~$%kE)קZ6\/[Y(ß!D2Y63B'τI>:"_gů 7Ak`C>ZRj,bxfM.Ã7Y6bsOǔ$3WХrݖ>Zg~=-Jg;n֨,-/l>{h u8]o`_\  5? KEWNVp~'3)~+X9 )r6x17=2yԡ{&z ۼ '$c^GtGd)I;.(k\@RWM<`1n0㎪`PR+Å6Ҷ 2|8FTf\#snN@M`r?o^C/j<.WOE,ɲ0NXg5giAs]q> E=+#.3]Ul3^^jhcGX+2cQ$m~3 mܻ'߽l6^.Sѵbzo܋#wYpJ<IݳGtb~l{9TI^dyZprEye<<^@Kޙe}i樓kqJTr%_UFqBk9d~uo"cn p䕫AXh 6&_ܞ鵠QJA"='+v&t7.|TÒB=U]#PSeĄ`_孎'mvN&ɢ4^O0xt-,wTK\º\$Z4A>K0M+Fཛm9Wq Zw~Z? 'x>A]ή.ݹ ; S5dڇ z Koi>OPཛ-+ڹc0I0K9$0 i8Ӝ4v+0}>^cxL3PAXo {Yi2$ywvngjp ؜1@CSٽ}>2^޹ ̓A}[ê"OkGi8 3P='n`͝=1s)X[,<6AsU 6WE]s6]^sS::1KIP. ,Y9˃WSKa,Tf miju=y(2'+foZz%=5Z| g4XqoQI%˶M8M>YYk֚|GE ((hwGoF{]oEDQ+FA<Nr#Cw:ƶ LC xl9W;MЀR){6 v^_VMT=Ĉ6ZzPN^Ӑ̎k#pv=ME"\)|+Z8eo'}bA$E4\tL9ʴzlGusd dൃ) =#갽3a%wmn<vK/v]bamnsb'Vl]<`&L]sWr. xzٲ{.YmaULC?x( a`N(i XUD=ӈmkN .f(NF #l="KqI }@}UqnU7%<-Yi cm&U%au(je:~(@+n>%ɘ)<`߸ħ&hօjPɅVm9moz1WȚkm>` ,̷_Ǥ {dT 4910KM}3̗ N[=J??<[LF#&hԣ_4 0w`^m!MHp|y˵Mbc`x.1 C>3}(_cmu̒B_-+G0[޻vVhLhKIdw! ĺe@_#fww$rW3b6lNC:A/98]19Ԓ-:C,fVh$&Bwp9*X>=lNTݦGfB޹ fuyF9Ӝ;? 2"ۓR1a1s^ ~K^]vjUzN }o s C˰SNc\M޸r2[X@ XM^_\vmQ {uAX޹ -R\XXWQ?1Y /Jvg-*m |yEe"#B5:ֶ&h`N#k7mɃi |D1S]`UZ_+Ak~+y5`83I#87r-oi\<ܨv4Vu7 C'(9 uGwwqqpt̎g?5&̧Bjb⮄-ES*>e<`ed9HZ g@Ǟfw[(a&q0復m,fV4<[^n3d/FkaraV@/*FZhF]I;ꪰ8kĉmo9~þI'0&3lǙi.'oϻ\蛴1iN"wg{FAr4$᪣u(CՉ/ur# 8nӐ\q/z(9d/:no~)s}BBnujNC6kd71'dof£^Ӑ\4RO#Ebc34 JG& rq<S 1َΝ?49aR4 N|;53 P G_Ǥ;=EV_Ӿ:@IlV2-<Ǟ}=3G19ًqz qFUGoQЫR9.hO٣cfr{lVQ-ή*a.;Å\5  ,'oxJMЫ4.%ڠF]$(+JϜu#yLRnfPg{aiOCZ æZ!*Z1iًAs`8<)Cd^>CVo?]S}~ š)8Ǻâ Xg|FB*@yꚥٲA' ӐR LC*s<`,-]Ϲ;&u5^4$'\kysn\}~WiwdFZ+v48!@Ǩiu]9 ]$^jkzzA".>3U{QH9kd0.{s뽚4>I|sރ&iヘ\ik݈AX2Pa+N ZQk*=tLo*Wx7mɟ3,VCa*p3È};3[{-;`~~{N&}1HWdgɗA5x7%i@MjՌ.Ւ 'E*!L>t>ttbMИoŷtw ig^9yϜpl}zo3n<'S,ā3޶ _LXyup*8ʱƾ.;]e@Gثl;2.PQP+s71?jl[#z?MN &ptO4p^5`s}rw*#UzmﺆQiDGp77K+D ^EK36u;SNlCa*廲13"n)͈,rjCG'2G}4mIrQF#KFh\px\Oά["Qх1*r]QkuSսؑqX&(*q_ 0[8~%+wd'#;wUs‚!`i֙Muéi~2_Ǽ0Tt䍏--RʥCw"1?pm¨~ӌwuLx{l `?Q)(<"6؃<>sJtr+ fb4]&k(iN}VR9jt ENP:XR5sMrl(~{K O Rfq\ܘ (  ZZ`k/ Qϸj/ysV :;WӀ#,Yb7pXJ `^dWEˉYY Tb?}O;#ٞw[#)7cȡMЦiSZ:Jr2G f [+8{+pb i*1V׋[pq$?OMTl}&h~ν⽰Cn@<&h𖒇^4֛sU+E]TbɃ+,2/X]2znǹ e+ Q) uIDATjp?W~rNprXbAXXE!XdAX?SAGASJA i)a?ԫJ r@^!5 id=b*}bJ^C0D4B49 ύu#h.AT`X\p=aLV/S AX1WԸ'S2 }ޝ/cAX[:gVWȇҷ~"6> P\Mĵ/(e>gS/4ӂOX~ZY굅|ʻk75K>)o2 ۱=aҫn~(;c^L <6tt ,LE]QEvG0L%:߻f9O"L ]Xr'1\k3a8L0Jp)%#.w*t=sTbw`G{g z.|b6uh*1X+(=)Lz]暠'0\z-!l.yf*1O{ºQN9Yd" h~ď&ռ4ֵ.] ^8Rۍ+fW쐞< ;sp+mAPzR6%[xҿ:GI Bkby( 2# &# f^sG0œ\[A{z1 Rq& xƬ Tl&HxU]`\Ԫ;e,EϘkygu\1 &i q;CA+7Ms18_5p]u:X}"xUhgvzNpB9UaUʸK 'W}^oÉY{}ٸ /@F HO<J3<*y ~#rՀ峇=Sin.eZ0񉸅A5?KT7" `Cƒ\ I2]"?JI1 gxg.ǫK_,oS>M\=Z`K.f1˻WmN8p2[c ͜ " g+~ oEb𰆵̱Xpb~ t2;s+a`){g.: :~-a{.j?}Es{Fvc:d[N٠]nfh,7'd7ɣF7N3Yqfh$zבdbxヰ ;>bxwpo~qiAZHuzc8O>`0kԐ &WZ @8kPu{䓻{pMk4Ach~x #M&_̿Ce?'A*UH>${ߜV ;\g_} L}w}~>* ?*w't ݛDw8 yO&wVFw ,6__bz\GM3wGbS܂gu)&JGAi^>j "&wpHpi%~nAXq' Gbm{5NC%w+bd@+h;v\ҏf޺c: N@di7C߿.< < 08(ZN}D}[z}׎`%38n?4]+y3CzN7iN>6fv2 ԀC<`(E\yp ]'.RC%{8YtZ-Y袶A<`1"'awwzV.UxlZ~gj䞞޾ Tw4x8lhD\/MF|Z*U-3`"K4(^kՑlz7x>?5*KnfmP{pr@y)ivgR~5:>L4t0VcEq̀Hx=;@OC2QTFV1w;f_Gc~9$ټ/7Ɗn`p=QNMd+8\V}[ m`Bl\v y >cVAXBB.Ec>~( šWr}~`e%{5IlNr6oI"`- qXC)"Fd-9@['=Pw;QuerPb)V:]6y^y֡{ *:.QZ'[wlg@X=<畵p}oA] #MX|arH`Mͳ@?2 .)y{'WTy7Y<4>Fllր5˩$+6=D_~jn#)ͪe3'Grҟ=^g:J_߯?Y *bG* 7XN?X|JD]f3*֌-,'`i1awKy2/ї&h6kZ /uX ` ,@`0 VLKբIENDB`gerbv-2.7.0/test/golden/example_jj_l1-orig.png0000644000175000017500000004200313421555714021120 0ustar carstencarstenPNG  IHDRKbKGD IDATxk++F:jEF!fP Zq↯x~H`VOO?DwjL J,$~'|Q2dٞRfnlFL0߫ EVt;.:>H<[U4<[Z; K Kh 0.2B.;!>GI >6cGbr2)3 uWeU_8Vr/,dC1GCU?TVߪP4m`kvxusv JyT_GP&!(5^} A_0$ 9>L3 /Tߪ1M}Sl`X̸{@VhR7mշ#7HaV!͹/h<+]ܻ{ةU2s:'V}cSx¾#{OW*umM9v;)%orMӢ7W7W"/y_CJe54T5<%?!oS{*W9hK5B}"} I9l#23A}5.53gz d QR}l5Տ*[ceMP_8wgDe]A}q}2N}&>6 ʿPRu򋫼CޣMȸ=0S}q}>Bw{W9hQ_Wrp6 T騾aUY̩;}dQAi5~ZfM_,W +ȩeVM fc)-ԗP_eNb-Ӹ >NjYB}<3/j¸U_W-R_*g*hۙkHs.ˠ\}o3KPH }4--WIYn'o ISWp851o${{V:YUu=MP} iZp9:bz#%aFQ!^=tlLf޼Y}n5Q^* ~3;n>9Q}gB}7$۹X1V 5$JLP_8R}wfN'[0!ﲃx\^ȲQ e=>E|$]i]ylt,JDQ7C"6kHKԷ-Bp+fѫh V8 s_/WCRzTF$}<^;C#[ 47wil_a Ƿu3kHY }SFPWraryNkHYG!?!kSRr$6vz5V!pA}2L;7U =;aml̳ Eאe.a5/gUC"]&*>5"(ć7*ݝF>짏G#LC5!hi_PiW_> /`[pvC}FG-Ir69(՗#RZ w(&O` zVoA]s5tI}g]|7Yk;w|eIȤ!lR0sUg%=lTL]Կ8RwsԷtH)|d{lkZ|I#u#TgF:irp~1 vR R3gi«R}M鷩q/NvNN%P߅l=-;1pT;Cv-p\ 7#2A9zP^}Ce`l:hDU|og-Rk;W> Է[2f{win}F`HtВٷ5lD}W!DV}5a^Qnw(ïX*ނְL@}!›]5_zXy1 -hfP)і<\wogۃy շ c{M;>m?56$5ǎ ԇѫC#&s܃0J[uǚnܪU_Aq&q$P2$ɒYt"[mAriwmGʯ!goCjy.P^S o٢-;S`S} \f) 6ku51n+C }ha^Ym6홽{ ɡ-k[&ѯeؖ=X}W&Aw.x7544Ov;۫IX^^i5Ov龛pEiEKXh`wo|>Cٛ}~+WlΗ'քz4iϭQ$H{ӫVi(^nJr\-`rS$Bt:HD|jJTghna- {6A 0_H\܄,|jڷ:~h9vLҾ#VQ˧zU=^2pytMVghdm+%h4C+HFOJo^/:X}[/Us7kM}xHou&4RDzaa{!哪4e9 L)F݅VN^9COA0lCOsYAHj 3_K&U/\}K7@' MշxtNP2KIr3޴!_G:(sRhTil,oBCFz_>RӒ[߂ankR.Ŧeg![_C vJ֪nhlڠb5i>26ـ,JE86e?5oksįV}g^|[a)Ɏ 4ڦO2:79Vc`m| CNArӇ.ϑfwM^5lw,/DD.A5%=^HЛ ȣmRYE}A3`pMeqIn_*}*[r{6RـR@CؕP_x 3`eHJ[h7[O'd^i+K,m]G!ym( +r48=8f-6J\ 3QP590nP_yBZ!iokܢ7l J?}L%4NiU G)HYۢm%6򣑨/4Cc\ZΉ  }_Klsm>J<`p2v*8˴NIܪl FѫrIA 6v۲9xV*Van px noqlV}w[аrdF'^W*b!foGQ|@ u9iΆRTu=#հAF^?F`xz后kStY%=0 `mĖ}[m4;U% l9kngWV%Z@\`3x"QKnT҂O_T'-\!J -79ۗ4ɯ˟z&䟒f7T_(Ѷ.K|m;6|36a`qw)x=ʟG&!e1sJWiU6c$ۋV3-kct̵T;1>hկ 7efaIJSf ə!k%JwdpوRr˞1k"F4me'l۽['b63V7s|5]d>T-~"hϣ8J4hԷ*c)sx{ @a]9+F{)URﱬRJ)ߏ-qYM;m+t\ӂ%MM,k4x;3<]~ ՜nJfnɎslktͅTi6 /-hX|R6cTJG˲֪HGE?*Uam$|?xח ~* 42߯k![&U[O90^L&\_n^Ro*"I`X|FoγLv QG]Gt7k\{5jdP>V_6)fm巨4l)`*KmG>)D_v&2$ 7cIҶ{-W&;ΛAaJ^R{AM/VFf]pMr0nkC4!,f)KL.F ~5_nO@Y庩/ԖF3GBG-=7n%^ <$|R?|Hƴx둗η-Iz1OMd@Wgr=l 5w% `T5a5uNXJ4%DM̩\.Dyڬd3dgj>4c=]/讵.Î)( MaLj!I ٷTKA޽~g[~:Cyg=`v7:*ܧOT,6h8ZJqUC$ї77mڈ=b9!᪴U}YkMc0s zk,7ё/wO5I?ݿr7K  Ac(V$O;v .?}LM# gJؒ;+4Ƃ`{uob/-nnӒKXW3ƴAzƯ)K$^OMtx85 n= |fZי̴沥5 3bF?/Wpۭ%gsA >l,Z2dajbӪ%Hk.yTF0h,hfD ^{ ,T1rtG1B; mcUZz$;sEpRAdF}/@p4uUoG6j]ԭA_MtYA~fj%<*llvZ>z60 d3E|qAoH4&b-wֶKꂞa7Xk PlVAA'ty+'KH7? mb̠a ޴oSFp~Jgs頫+ IkfA[iUh43݇A7Ƥm`BvoL__2 ^ڪ[B k{<}A눴v/ vHvqf|)T _-a8(|2/[`/1 `(3Ѿ=<3_9+'1s6 n_NC#nzv)!#]|5UI`ӆAZB|cS\QKW}z 6 |0X^FwE1oF0md` `-{ipypʕ=-IK- $5،S.e.wp5 < uSm!wUÀ) Ay EgJW6T~ыvim!R{^lw#\XnC6 dL ؈g qp$N.'*c "AiE/Q+IdĭdPcu⪴3 8<"O=\K,Y1m?[E}QkӚҴU-RaP¶I@3zyؕgS!fscKҮ21ۭw/`Ԥrryð:)ϫMؒ6׫*n: JpS:դ2_at=ˡ% (W |ok7 ^GۀP s &?;ǞP#B#' *=T!ƴU mi_2 J,7&i+[hlgߋK+7YJi70Ai֙yf;![BX|Ru;̴@,X2|]w\Kq-Ȱ /#UisуvaNt[m?:/4>sN58+HŲg>UWT1m1m1} IDAT.@ϱpGr7NLL~ RT߽A; Ùpj37m:@y*]\vN za` -CTtRʐJܝ^hq\KKb(9VG%ZI5!wիK&ҶڈaMg AXtG 'w;"w%ۥ]( ·S91˰?8;HB!biU @ l&{iP8sOX_st{xz!g *fXl!kgvo™<5x>w5k/&1`hKAc}[s{p/ Ms0΄a#`|ptu<.%3<,Te(ɣihJg,< +f@;3~#ԒG[CLgr4ӇS |z=V6lʲ$'izGA~ܞv_%N]y̘[3<-֔^, )]^M*rW%i!;wd = Ja;zK_q9nԖ,Lc,:MP,w3ʕ--wTUI`>iDsAo:u;ﱻg͗t%}lCO7 <޻$S k+ AɱglaiϺ&#oM.Cɜ>]8 `f!taqbD'lIz\^*짡;G>+% ȳdK16ֆ֦\h9}K48{Ξ4#ҍ][UjL=J;`IzmʏQd\GӷcI,ڹI+yTѰMk!-i=kY`OA;DE6s|%J#öki%iW̼wl-kR^ !SR7(Bn54MҶ';0 B́ ؋>Q \ ?8%ECsЬ\lhO7} mL+cr%i%iz֡"F !eآXC8[o]7s1*h"fKhTPCwoHMUolOf +QjE;KSkVm2G" ;aA yଛ(k<|V[Ͱ`e jM@6ܖB'PMMIA+#Dk⸥at61kOkHxYϡ`=צ0 ҥЖR 2)}sZ+=leUBH{RwPU1}~ǃ%O1!LҨJ;asV1INv`#A;灮 !(Ir1Sڶo 7޹t'WMV%p$/ip B3K:[ i vi[ 5X? K p<! = *$]'+>&*+ %@ w4"w W`-%,ُLJMԡ~2>W;ʝ !투,E{ qșUaf[ oA}{#ݑ(4Uuw|dx,DvD{#]g;Cwsˏh ƗXHےLZy(j#d5[@}Fߝ~&fG~C(#=B ~pE)=L"v/~ 8?a}yp$AxL={ #e铤%>2ny*x7V" U5#E+/E =ML۾MK;]H]3n90PgO)&>_T0a#h$KJD`e_yNUdvp(߿:-n;Ju\HeVYq Iu4-4$:ٚ쀑wʑ#4O-ؽv#DU܎V}*g?MHϒw_/=}#2 [7 VSGJY=frDKZj4BQ@jq6OiGZo 14V-lQ_L8w-k70?XI``b oêyz_hA5f j8H6("{^5V`w#(>}$R,ZQc7FBvԎU[L4p_h9NdR}TPCz[@UA>e0 AVE,Z>Яz Tx nT]꒟~ ǐxD~?[PowdBuJ8rǚfmzXxFyP *@_Tx OnWTg˒|Q1+BuiWէ[Fɛ8!pp84\ |Ŷl&a/e(̭\d%x ;;7}RA'-?'BπC5*Kiy0mLr:X1vZU|n{"e(QeʑrYC-xSþtX Jj J: w6 GGQMU&;dBVimC=YIKQG$}sA߁aK#kawZ83o뻙4Ѷ+9X}OyȒmWM< ?tc qGˮbr$ e [$Ge Ȫg2WGN0i&:=asS .s5tPI#v\۹Rrھfr`~*%9l<  N34PsFO|nΤm{R5rV.9ZUiS!m֝'wH9T%W{m)tkp8ie>l V0\51+y]Sٶ UxIy~TGd Te*e4zz2uv& VAD{crgk-LsYZG5̶^NFQ~ӣ&e㷃WS34=Cd5BWHG1~4\4~ RQtv`M6l\Y&#-^1v= [[^h kHZi [hR} R.&кrvȖ[_]ȧpi͍>_CQ(-4x2> RMt2֝emD{o2\z@$>OgrlV1i>-͢|BUmޒ2MZSCnBl}mklú6tT+9x٫zcXH";jp45, zY͝ظJPY.ؖfb3uOۦrm,!oG"iɻםo98|yEG[VC&>i盾}[o  VF{FJL #h,߫ 8P53DŽ;G?RMؘYBHJL-˷l|/!ԨKw݅6q>_CG K荤p}~ #n]~jonMhL1nlZbk+zso=֌Ey'ҾTQ2#z]>ASgrlV/vWNůqG.8x=Ǖ4 5-}dH˶(ImрJմmUs$[XԞWo `jE ∵ֶFt#}3t|gC}ڒ{Uq9( ne7q:Wқ\ZXԁ~t_@#m$BA>3t7a/aI5~ڶ3*"Q0UgK_\c}[^LXbrMO\?Iڎ> lӇ5]>1U7wb(ٹV!fEP6M S!?}~4"GLևo૥!c JMڢ!Ao[{nrBo|#eĦ]Kds= pͤj0ૠhpx7jdCϬsuk[h$v3:8`AG7&E/Bo ݴu7S6rmskg 53T ϽZ>Y-d}(2mNn%hذcanQ>v\<4mhԷа5xv ވ.el@l>2$:jRvmiaS17d[Cvݘc ~?Dcf `tHvF4׶܎siv^gL94J+a?6Cms3,Vcn{sݺzqmw!S9CL\.%,[h[{j%0ixOI?CnL `?0',a4~څJ#̦ Ǖs˾kNKL;jp8h+?|ru`2o|!%karo>}?3M58 >+~m>o9L"2 x;~{eP:c3[;j_?dTz.Y|^k|3 6;)E5[ۆ >ᨖT6Z4K`gGipy, –O_ pKrhp484YaB*1wqV5zV -=cKCs!j?,:Q]S^m?۝*Ͱa~:߫ ^I3k4τ=7e<恭Ѕ w瓉Fd#!Ap/mQ}O}.4~$Jc](W02# F[*k#N`GW.e5i7Ϭ,WCS3`Yf}| um5llR͡ǝc ,aea܂N8|?;Fj~&%|*/!X(pK֒3]S&A7 Vl+ԷV'+/ o5/FuO Q%G}#̓#PRPGP_8YûG!sޝT'[ u`J_Di|{]/,yhN2OCpL?ҜfMCw~pit1>ڎQ}# SJw,>Λ >ip^@;v|0n/Au9 <&ceU % .8|WynL;4x]F 0uh0Ls*W0TkkP_opY?񔾈(=F}[B  vxd^XSA}_ V*^G3M}PYӸd9reIDATұ.++Fo27ĢҡuLC FZ4x/] lFP߽+_2z<Ҽ3ɮ¥NDzwm$x,9Cf]`J|atGWӰU&x 􀯧yH rَǗvdQK껼M5tALx2acc SAʼnIۗDXo#wLZ4$ >4^{ٓvVu7a 4 ^JSRzpل!;hJ{@Sͭ:-hZ[w.Էh3yavi@}#kjZw?2838Aw]ūߛT} 9MʖDZuis'jA=^g/[mmNܝhϑq[k=[zݒ 0h ^L}{4?=ñ|_WVYoXierv=3yo7^8iEh"={̾ -_jU>fޥJ_?>=)xB6& 01ְiw 5x`M\l  v^kA}ޕZs`_`h!/ dCN? x#0`ml+%IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_ssb.png0000644000175000017500000000670313421555714022543 0ustar carstencarstenPNG  IHDRKbKGD xIDATxmr0.UtQ]K|t*>$|;p.O lq~GNMuKwHCнɃf @@ 0`  @@ `= tvT3)I}dvXKIcts{ r)I>Qt> 0 |df%F 0|p`1 RO@ 0`_ sN0 h֖e-/@> 0 '%PϤEXZ!iU`L rC=Eax2R 0`  @@ 0`  @@ 0`  @@ 0`  @@ 0`  +݁S\~] C >8#Gs~3݁\~]@?2黇 _pF82TK8h 0`  @@ .~/'qM:0sK W*u `cULT Ks(*}8sigÝ#TaGa;vB=WuxKSBGGcx$/;e v;> ڝ79} <;en}mW8(ok8/ys9ٓ{K_*GճjUhD^՜ͦnOjP.+c0QoQIs*Ώxtv`ЫWmmnm[[o%+իp8'<8 wF=opHAW,û\~6-F.g SpkgI98 cp cReQaO*9ɣIqn9 P{:= 0s0و3 He;a)p!RnKOwKe* Wn/ Ђ <80peFLJ`Cpyˀ=p8. <+~n[ay=}y#7N߀_69F!hc@9 u)]LCM. CvЕp<*e@  <-[D`;#hM {u+Q˜0 Jp± ``ذc&$s-hwnpE*J aH`IENDB`gerbv-2.7.0/test/golden/example_nollezappare_ThruHolePlated.png0000644000175000017500000000600313421555714024623 0ustar carstencarstenPNG  IHDRKbKGD IDATxIR+P *`⋦ox3z <]4Z]CLJ5Q}{$``O;f~ :X ]J~ K $`( @cMN6 zq*`(o qL&oH[QPr\>M^5^00̤ު&a^t|}F)8Ⱥ kj$qV "E&sKr0S%]9y3n~gIXL&a.: p^}D ɣ< kUu}V$Kz9Nvk]emLF^1, "\88%N'NSur{WY},r:ä\8\.Guka'|^%x歜1$$`` 쯪^5&!!v~{=nݥ$`ӕ/1 X.[O8Okp8|이xI*M;1s_#8I3>HZ>/%Rc[я rH K{L _}Zt ) ղL=~o YaQ[ӈ^aj(#0@*`X2j h}'43 Zzb M $`x'ڞ:`,2K>ֹ%`3h~k6IUT7 @t8.gT`Q6 |c ).hHX2 T4M ) l#E*040,@2L" T{jpEOTC! x7 e _d \& x F!p4cdY[(TI(09L0JT a V\R fG;G`H$`{0P-70$_#!;9}_I"ՍV'4u3~,&8 ԻeHP@ {j7(tArK 62 00fz}oy\D1 [ ""0 @8iN@0Y#YW,+4 RPro#iqG15 l 0F1z\SPémꟘ_2uqMD qWxLSX( b?ܯl"ٮeݝLdƀai-wv=a]cA LA R Kz#$`X $`zM= yS*0Y`4PӐ.h,9IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_bot.png0000644000175000017500000001056413421555714022540 0ustar carstencarstenPNG  IHDRKbKGD)IDATx]v6Q УA(<,]Hޏ˂dAS4W`ײ/~'@N>ޫ 0Mܩ+ 0ܯ_`Gv7jd a 8Mmc??9 ,` 0` @ @<E Td 8M c i&XINXLi/ K/Eie*h @ @ 0` @ &c @ \kbo230` @ 嫠}g 0` @ @ Y>)@ 0` o kzs `|%q,5NxA}g`6+zPN"+Gّ/ql[N& R 4`4o; @ xl/'ww;`!:!z{ߕb}m`7N}C07K}gKֺT`3k}w7qu7-77`o>dJ 0x܎he?-ᐞ@j/lof Si Hy:ZawWl _6TC`<`|UZ [ȳ5g$2 ^r9?'M{*܌a#.oq߁Ko`ps.Pr.͙/'❻5~Y؃ -wMoQӐ|j0o0mSߺv7|QeBtwkvG~ V*h Yb=\76 Pz+ ip!- dt7ߗ^_ҌXzUS߱G`#)k2SNn3{UC0z\>NlU)?p҆-9ԙ39-r.z6JqQ.i<;U)WpW,@ksS'-xnlKƿYv6e۹!| \JDܘ4/t6EcGZr ~Y(܁+e fb;v+%^4r4pu ot ,3voNLE 8?k84{y+"vf%Kp"79}d)4A3 M> I, ǚ}hVGG|de<ܼOE70/|dqWq́{G``9r H=.>-,& wx4T3~?~?2 8rւ˥s@Sq HZn{jy9Owc{nߝ|)fv/T1T7%#U&[6H n_?ʏ79 `zdx 5 7CLRo7feij߃9 dt_@2%ܡ?[Ų5ǦdK l'|ex5ɿ?N\V$?6`?`?D3օ$? Fai &.pGXςH{Au?#t3˟&!gߝ3YwaB܎p'a 0?w %0Onc9=KѓwnIAE S1;BNq6gnf >>~_W~!#tW1$Ô 69;`2>$IO^g'M`4:JK[ڜu{(j}U<0@mE 0p{K+:u{K`@]k`|:<@nu"c;y>PWqnH~TrF%I%-}p~<@5mOD:NK '$[/$`8el&3`ζ N5Tn Nѿ V/9&Ct%lmFdxH]~~43߿`{ƶ)  #:? <W-ص0(.MaG~rrJ)hXǶm\:蜖aM[ lC`7/#ح`> ^_߇3Jc&ڡ!}0 xtopT} 3h0tmp`}̱B!6lせ58y4f:58BI8ԄC;z48C}yYWf78I} k<3Py`P`S`V xv.:V6[l? ^ZxXve줙1: f߄_vQĨa 0Ôkp 58v~E4x @ 0` @ @ 0` @ @ h*7IENDB`gerbv-2.7.0/test/golden/test-aperture-polygon-flash-1.png0000644000175000017500000001216013421555714023173 0ustar carstencarstenPNG  IHDRKbKGD%IDATxKrF@Q *Z:d(@f9UvZ@_oo>}| GL+ St74>egt74&ұnh00pKH)O.S/ 0~19LU |omwi0% 08``.lt74b: FvSCq PPnh00Q4rk &5T &/]LR )Mм]LF )M̪ &xUNCJagv-N oth;?`ȧɻ50[ulg0$Ӫu'd. p8i0o%ҁE'Ki0 {Ta ]u050PwL g`:*_; &)!WѤ܋&+``{8l^R3|?u!$˵'7Hd E}w:<͏K v 'k ~L<]v; &:ošehb +h%0\o!ܟ~{x/aȺ?!^Ds;U!ed+7~}o^"OaFK0 =c3,,%T B߂pۂ]6 GkEtn|Ӓ?vK B,=F>zv98pmq` ?fNn<(_k|pa'FsA7W^h[s^ShO_v/&0Nv󓼟d/5'+ >H^%dA<ؾАWF֯/nh]hHd{adπ/sfoԶt`]+|ix5+;U@Vp+^KP,-v؁"6p2c5zG( ``i  ps`̍O}H!nyQq[j)fOBϼ+g?6`'DZZל>(}38gA {-ocBVPf\efYa g^=Ugdl }os{uI׾L]y^}|_?_.Hw?>&{tC'Ϯ}hmYʽ&}~L,:5C2~t X/C6ԫr/sLZ߲=aȾw?Qz@ȴ~{t0:_up|I/t)v0Brw Xv61ڵ_csy<"+oqL61I D|&{}|zC x Qo(, -M} bA= sg!3-{tJp 6GC+ o\%՗>,X8k_%Ti m eπi3 eG7xI>spFoŠ.aۘtns+?:6C8Y/uU/=օBC])θI vtxh]֊pCłB ђZrsb#og=ْw`Sup5DCq­^besEc ~=#KDyyXfUCDXA|{R;g,Bz[gz%(3Gg~MzIƯs0a^[K/:?I6?OtcΟν|}WGۛ9 eZE[troźo&πmfa.Z{$LV͹~I/9woe4`h 9k 8|:Q|u+>@d|Eolp(|ChKǪ!"L_ N޹F: hA|nACgsd rIݤ44;HanAC2EqRdJ0vR2;BsCb oݧ+`H:8ÆCn}t'nACE_D{My ETPRC[Lv$PJxmiN3銐AokH>g&lf&|HF64]>+D#PYwJ % ժ-*+& :C , E.04RK^ hRC;I#Q. 04K }iҐCkkt&. 00 _ 0p hs .$5XtcgEN``Iu"7,z|-4Vnh0}00nh0M0pc`:`tS] ~{c p &Gwfa} @I9|ga80ԓ)w6fb(Ya$koF^ >e$i DwSCHxT/FL\>2dW*73I?aIZ%,L#6nS ;y ɤjrNR|35C誽0dTdhW ɝ2(wF 7`Dߌ(hsqxcL)y5yS[T2jECU|gVIU}?nZ {>ZsMp?ƕ&rS S^i0x)U7σ G_D:w)L}4w2Lv{d'{]LjKa)\; &/~ Ei0I)M.pDDt;9}6tOI*:&>i_Cm}e 3m}0,!3̰ƖxKai0y@2 Xf4'<,?9ixKaHĴ2#ÌcqU&dR0&kmvsX~a!8^R3^L9:do9+N:+F@\mX,d&ձC2% pt% p|mRHMӐa+d4 /$$X  Y0@j õܯf@:",rRd XZ`f{p%,- 3GLfKF1C&H/@'|rB&p(OPN@z l-$+ฤKXG+c]&Q_>8;s-֓q:!2^Fz:s z BysXL" lSy'N NhEsUe3g5ߧldhB^8|XI/i0'WBΥpxYN!pjn$%gI/C9vR_S\iF_7G d&Ysd e9uO& 4;Ha?:kf ww%wV%& .;$?^"2;Bs> %M:yeȾTb9Kupꍇ T'lnJ\ɵGgKU?{ JE9<5a@ݤ6V#Rޙى0 f&G} @4-lh ot 6rtvUՆѴM7.u5 6l) |;<`c_u)*`?i`R(`*`rI`#k+y% 4SC@8,iM= !4ؼSXEPt` #i60n: ` Ln`х4Xt9Ga&W`װ l=iUo2ݜByIENDB`gerbv-2.7.0/test/golden/test-layer-step-and_repeat-2.png0000644000175000017500000000236413421555714022757 0ustar carstencarstenPNG  IHDRKbKGDIDATx PA5B0(0Ľ{? n}]&#v8zx櫿\`0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 |`];u[=DzÎ]GKm&]ЍZEގq4tQ!\ݤR b|Ea^T {z 뀙Vӱ[ iO -)K-TO90⯻^*L"t.F=! M9"W!Zrzp&`A>Hj=nōIdC-~hWļ7gWҲMjO}z\Op#oلn;tMڷ7JA#L֞VֹNYjeeHR6iH:U)Tb!UnZ;_=vA #ǹG;?n[;Ώ;R 2$ 2/Ǽ9U67 YK4ܪשfNu 3 L&xZ; -r m\HF1u53ӆlf uyVyv[sɕڎd38ZwC·%r¼2c 8S_IɆ|4 \HF1clvkO$f| :yp0%5\+(f aǀnjZܻ#W>JmG2YR(w;rJmG2]Ѝh%? W{\HF1:bAZxA81pc#烖ZvLHn˕\tAZ< &6i'!@EYW̮3 ?urYEGGOʄ.R  s!Q@8b\Z=9^HgT'aU8h!X|KR-` F7]]W =]_{4Z49za 0/iF_~)PW7J> Tl;B]߽X]yO1=_|2-qz.j]\,{)` ɡȷAӶ:)2_YnΟD7eo{%haU=96OYpY(uQQq MA4<cT7֯\偧@9c|D;K,B5Ȉg oOq)l! s!l$LwY1]sIq) d1Q.=O.7ObxS=QMze^_Ztz-m8^K9L%v8E{ŽX{2m#c #<^`.E_ղu)JCw _6.>vj''ssB uv??Ee xX~ˮ4,V ?Ws0P,i'sbu 2m__޻0@qnjjoE0Άev \t u Z<{(.y/UlR{7WLT9PqibBÜz&|h7d02̉!KݶPy؝%} "+H}$DIUaX4 /H2ډ4 Mik1 W-vX%'go}x>i3u SK^f?tav!8^Ul:lt> yV3AYm(h=Pѣ79j 0i O۾!"ŸªSs.NkHMAf3awf;V-w멭"1 nr$b6yilG O$).OaB `[Sf!q2Nj3ڄ-.juUC.ƀAh2> IXT`mT6c#(>(y~m)tI Ќv;)y" ;HOCcfZpP(C:g}ZV]LtAG :OLQUe;*ffAú(E$KH |}* ݃hv3qHWyr8yl K;{zAЭwC*ݐ Z}b2`F,vLvkj[4  @T]`Jn-kЃ{`Ne<fO |ZO2S8LoyP}ȱ,=9<13K0}xx4 $#pk|*yX:xís<(ZB4d-,A\Ϙoa4'z(tiDe qnDh:_i'twew<*q(tH4\ *4}3~w5 |4p/g3DdC#c?I̤ڇ}[7KX94].2Kn'm_{ R~egw~c* TA\F˜>7% ,A@I}FYq, RJFr7peyp]=q!˱3&)w 2d}"P]*4kЈ`a،]%4(f,{Ny_\V$ <` RBi]z<{ouYP v*΍8PNj?7 cʝoIENDB`gerbv-2.7.0/test/golden/test-polygon-fill-1.png0000644000175000017500000000623513421555714021205 0ustar carstencarstenPNG  IHDRKbKGD RIDATx]nT9QhU(V%(@tUe|NOj{{-z@Uoo߿#eyF/_9ooߟ| C|ѧj0s'= p2 |j0/ Q<'\v9 W`gSc85O`~' A?I Ä@j0M7- 49 9n-( 3 lk'0|:Id̴oSe/b`' ^%0ΎN 2JV)P>Ghv Xx> rXr>! 90%8& X/a6)z9 `6ʋrp !^dl8D^nT8Pذ^c9\^:؀^#gM8hPފO 9t;: ޖny`×5z]>xκ`O\ QC^ Nؐ Am:X+A<8a|8?C2pe8/0vi^K*Jws^k:g F=e};BxC>nf7M m8hzp]tp3pzfL/ʱt4$Ͱ^kTG 7{ `nwq`nxY`nFyA `Inz) `ynz `n{z`nF|b`7>%0SLq,,OAf'B @(%>Mv@)`:+K$Ld% p)l2@a0 D71M*$ pl&@6ydP7=MBnuipKl@f5$\7Q9FW)MZE% pl@d nbPK7(pl@MܶPW#,`-S#d͂,imcm lbfECClkrlBZArZnVz<~[ٌ]6GlV0f )JZpFnEVbܴW[%_l8ri@w;L]%0Φnɂj1Lo[%Y3m ~ n T_m pkA!T_ Os_EQ}?LHoC  ʤAKwT_>gS}p3 C刪/_C.T}xB:T9>`VqU_Ӟ$V}8HxZ8SnS/ٿ}:X%s[٭`<̳*[`;`Qb`L^R-b\0(1}Jd(JY 0`f)@̂dOY  0a 'f  d#BT8Cَ0;` ) b 0` 5?D`p0t ?i00/ L# `L ``44J ×\q``4A5 `8D0 t$p0@ Ns ` pK0p@\;0\ \&@` w0tY p N` @ C7 '@ CO>` @3BG0` ПO0` 0o 0` @ @ 0wqO0` @ @ 0` @ @ 0` 0%y 0` @ @ 0 p 0` Пϟ0` 0g  0tq 0g g 0`@ -5 s.`H};0\ $@4_> ]0`8E(:`8D}^S_;A 3  _R_`JF`L} 0C/zݩ/BٚQ}/a#¹2`@Fقٸ>rfe %IzH/P `V @9~  ¤KGw0e.&;$$DD؇Lt= 0I,3 :5IENDB`gerbv-2.7.0/test/golden/Makefile.in0000644000175000017500000004323113423533413017005 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = test/golden ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # awk 'BEGIN{FS="|"} /^[a-zA-Z0-9]/ {x=$1; gsub(/[ \t]*$/, ".png", x); printf("\t%s \\\n", x)}' tests.list >> golden/Makefile.am EXTRA_DIST = \ example_mentor_boardstation.png \ example_am_test.png \ example_cslk.png \ example_dan_top.png \ example_dan_top_sr.png \ example_eaglecad1.png \ example_ekf2_d1.png \ example_ekf2_drill0.png \ example_ekf2_drill1.png \ example_ekf2_drill20.png \ example_ekf2_drill30.png \ example_ekf2_gnd.png \ example_ekf2_l0.png \ example_ekf2_l1.png \ example_ekf2_l2.png \ example_ekf2_l3.png \ example_ekf2_l4.png \ example_ekf2_l5.png \ example_ekf2_pow.png \ example_ekf2_pow3.png \ example_ekf2_resplan.png \ example_ekf2_sieb0.png \ example_ekf2_sieb1.png \ example_ekf2_stp0.png \ example_ekf2_stp1.png \ example_exposure.png \ example_jj_l1-1.png \ example_jj_l1-2.png \ example_jj_l1-3.png \ example_jj_l1-orig.png \ example_nollezappare_EtchLayer2Bottom..png \ example_nollezappare_ThruHolePlated.png \ example_numpres_numpres_pcb_output_componentmask.png \ example_numpres_numpres_pcb_output_componentsilk.png \ example_numpres_numpres.pcb.output_group1.png \ example_numpres_numpres.pcb.output_group2.png \ example_numpres_numpres.pcb.output_plated-drill.png \ example_numpres_numpres.pcb.output_soldermask.png \ example_numpres_numpres.pcb.output_unplated-drill.png \ example_orcad_rs232_cm_asb.png \ example_orcad_rs232_cm_ast.png \ example_orcad_rs232_cm_bot.png \ example_orcad_rs232_cm_drd.png \ example_orcad_rs232_cm_smb.png \ example_orcad_rs232_cm_smt.png \ example_orcad_rs232_cm_ssb.png \ example_orcad_rs232_cm_sst.png \ example_orcad_rs232_cm_top.png \ example_orcad_thruhole_tap.png \ example_pick_and_place_LED.png \ example_polarity_6_vbat.png \ example_thermal_bpB.png \ example_thermal_dsp.png \ example_trailing_cd1r2.1_sieb0.png \ example_trailing_cd1r2.1_sieb1.png \ test-image-justify-1.png \ test-image-justify-2.png \ test-image-offset-1.png \ test-image-rotation-1.png \ test-image-polarity-1.png \ test-image-offset-2.png \ test-layer-axis-select-1.png \ test-layer-knockout-1.png \ test-layer-knockout-2.png \ test-layer-mirror-image-1.png \ test-layer-mode-1.png \ test-layer-offset-1.png \ test-layer-rotation-1.png \ test-layer-scale-factor-1.png \ test-layer-step-and_repeat-1.png \ test-layer-step-and_repeat-2.png \ test-include-file-1.png \ test-aperture-circle-1.png \ test-aperture-obround-flash-1.png \ test-aperture-rectangle-1.png \ test-aperture-circle-flash-1.png \ test-aperture-rectangle-flash-1.png \ test-aperture-obround-1.png \ test-aperture-polygon-flash-1.png \ test-drill-leading-zero-1.png \ test-drill-repeat-1.png \ test-drill-trailing-zero-1.png \ test-polygon-fill-1.png \ test-circular-interpolation-1.png all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/golden/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu test/golden/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/test/golden/example_orcad_thruhole_tap.png0000644000175000017500000000451413421555714023036 0ustar carstencarstenPNG  IHDRKbKGD IDATx]r8Q /ʫ`@s2 {FBiz>m,-HEWJ f>h0O>5@*FPT`WLl 0` @ @vb[Q"쳷 -SH}~bLqBiZb3y#>p %][ǟ(dW>` y.`j` 5V `¹ @.}/ngǃ k  @ , ^pTǐ 5 X@.ކyNApw`rjopK}' 7w`2kp{}' wIJ |cǽ#}e !0Rb%0>h0> ̮Z}8j !2`x?S@ sys ia!K,dWq53, 벉@ Ql NX0[QB^c 㨸/D`K}!PVUXn6qini^Ur `0V`3t z}`4h0H:Nmz ij0} pΟJ`8 @:]a5~ |'\ (Ʈ,-%鶢lyHNeGOj&;Ʈӧ״1Sм<58o_#v܅+xdžEO!fy o@wI,¬/Gx"s>!Ϳ#{rQS|/F{. !JWTSSz%%+REJAyx&Գ'@5=*0-@9S@ !oC&y:½ V_R9Q#U8X}H?xB`s㟗vO`}ս @vY 0yY 0IwT0 q,^UKMA@ X@.V`a@#`$%@ @ @:FU7nN ޕ4] 0|\}D+r 9<)`<k^].ZC00ΥRWՐ' 38]a!O "#Ds!'d YN!O H4` @ @ 0V"C8Ip.{suP yRLA!C5IWdѐ򤀁 pWK\/zؿp.p] 4 ޡ 8]7ϞШ)9 g4S9=}WTuf_ { xFR2ZM 0yaqT-.05b[Կ%'ep/ ,¬/jކe|zR_:½FDWUS #UD/gs)覽?Pإv`д .}VW /~2 +pse w|V`p/x.?vP3MIENDB`gerbv-2.7.0/test/golden/test-merge-a+b.png0000644000175000017500000000266313421555714020167 0ustar carstencarstenPNG  IHDRKbKGDhIDATxQn@ڸ@V\K색1 Gy ~ǟj8m<.Lʹk;lѣ v4  e|__ًa7}pDlk ؒ&la b4Gs5Ch16fpS^1X~ZK2zm 1|6,!@u>< PӮg Zܿ/ &;a@@@@ xd',```|69:q2McJ-%h`````X`xd  E mM̀bj000_@Mv6NX  pN_PiWemMVحP%h`0W{իd 'Enx#x3````has/             V4GfWJjIENDB`gerbv-2.7.0/test/golden/example_ekf2_l4.png0000644000175000017500000004135413421555714020421 0ustar carstencarstenPNG  IHDRKbKGD IDATxkF`"(zF UN,0C{_o0_UR`L%T49K S۳'UM&n5`@^cHD0V cB/ŸӑoQLx5k gCp E7d">÷=Ծ  ^ <*Ȓ9JiyHJ0y%.7*'cCߐ:BW2!z&/ۣ w`)D&dVIB4,,-c/?y^*(,JX|ǔ,㕆ZFcjl/7Cz9Rc=<4+^]D==hCy0^J:l=i('-) R1gtA+#ZCu.Z~ g6L6ѿlŀdZhRJ]d U~,SzW.oՉ,]٫}o?r9o f+ Cz$ o@1r3bԖ0aQT?@m6%LԫmIe!Ir6XJdH8]Jm%gBCkר'KAzV YSe⪢`3bDO';E8XtUyȓ.U)inӮp!K(m %y(hXZǘXŻ-5m G ȒVxXfAo41,?Dᨃ h_Q48_&:#V_/'}E}s&Aw'˯ ^U^w3+vˬc0b|7΄^POu(>\2WhI.\Ewd-X^)o-} yW4+6 1\Y{|Ih,iaQk9ֶ#DL 2MR! oHW9~\NIZ$;G'HQnye y,H5Mcxt"O(&Ͱ~N~%$JR_?xYeIJ+䵽dؗ':9wk4׃_~+{$)GGQhXUQ2;GџWneBƇ׃ld*i`~@OZ<jma*pFsG&ߑ= ^Ǔp U/Z#5HvD7(w\ ]ʡ\(?SA0BUPJ am@\y9QvTɯi=#9] 8A (e^<[,GDޭ%[\Ϟd2~0#Tg&=ŊxޓQ7;sClS}{|jGh28у<ԩO!5+ ux33d,9KhP̫(b| ~$_4(>zmwR}W%v2nE1鉦S@FIW4@V(V;}2Y]H2dȵ8' 1 ;ݞ=W pC6l]0}gaJ=X!L |^+Iy5U+&{x2d'T+= nW1GiO;"QX Uk C #JˑcQ`{o?iٳ^䳶#= bA{9MnW\0b-cѻb=Y< C"d9ғQ$/e S8![6Αmp$F/R`{!IU%AYVb̷hm0;I p-^S2c75DHp < 6aԾޥG<-ﴞ{68{HIedFc{`c#nͼM=K n. D 'C7^=<yR==^[=> ޘT[^| 5r[ r);WDԷ6wp>UYxW!d B{ZҳNP{s)gx)<KS߰Lj퐯ɨˏr.vt)=.z]򊞳! ]Ë\ya/0p#00 &|sԀ ;2h9o]W[jٗC /Xɱ ~vA'{\o0,BnxS{ z_I|js+`!?_[ƱHO$K~r ߄|vWrcH_:zH{_+8! i]E? +POx[}h0l|8(9UHݕVP> '0<~E~adS5ؑ+ޥA}?rɒњ?X:ml'u.+P ?AWA*nNWZaӃymHbI>1j<`mc9r HG^M|~ vKUaq%F[E/4m FXxބANcA,-wFwzph|姕CÑPdo> 8<>OԷF~:z&{0 prMw?}^ruPl|0{6 0H=n[}n ~|XqݾU!fr~jq1=-,o_-Gz2B<=Wx{[i7uvk .|\h/KQ{Y?Vඅg.h 'PάHݞ{x&=/V};l)W\plֲ6I(CʱְZvT "[ 0$37X*J~bע2WmI*.ȼs XvE{lC22Dc,yUT¦f|x'#UoUw&HW uQ쥾ǰn?D-0n4ҿ+r壾]:gC`|_W-ڍY]M$0\mVʷ5h=am۝kw! CmK'V& Sٽywcv|8Rnf3I^<XZ8y;wEI3HI G)Ѱ&oq8(IfTWM.h `YsOk)PƢdžQ_8! >AAQ_4o.oOi :~*  ҒabQw=7-4\T\ľ O#M^)͋[.&T`m#1r6)GhƠ#U z,rhj<]1oEvH ~ k?,K879b!(FuX};Q[kMB+J#~˭l٢C^p6 0$u*7JhpΞZG ӎSo^l7 ;N; p.[SyK=֗;l-uCƟ !͠sZ|@O _n6}S2($bs )>~&у+ R>tS+ /,:coSyL͵b%3.hXxÑǓ[!6$2J#%<å2az487;IOθh+ہV\*:EE5LuӨtrn%-,(5{v"m\1$VNuupA~(on.Q2%5X+6KTm^fXEq m@cHwL}{z9Ĺa͙Q5DcVٳGILfhjTp f@9 X鎯ߺ=gWD")o{bףt"m5i >çbSYH%s'_sFQI9^ Ԟ"S؀r5U,$y &{Gz2CRV{eCN*k44, 3L./Ӫ$ȂHrN`gQj"l0ЄcL/`W.^nx]YyWV6l0.2Ƣȸi'1mָ|e̯uP*r+c8]~U .ݲ *ޭ~p!x!sDw\~zRlz]m$WHI/-?O=/58jb`;CB#=fHew A7a`=TEw:mQ;,'ЗWuI= WʳߎcYnrv.c,`"r* P;[,G+w\CJm,~ػPw+,=-l̻K wˑPy\*Df.Ml/Yd2*3F~>,Esz(+- p.DqҪx)7Զ(t0)@2hF*xEs:;M.3P_,% |mMD^Bjp2 9t Q9r~[4VƬɭ"+=YQ*#_ŭ7m~pHUk:meYjx6CMɕNc޶\Ch>ݏrhn^\F 8 w~V%,/-ڜ%_Aդ+3:u;-#nmk[ >P[ƃI |NsͤD/aUoΒ*SQUo;pzC[\>aWl虄]^0H|UDC Br;56|C6!ΐaOhRx(YxfyjtZ% ^'O~j;;$!ܑh4q3fv1dsf!eEψ_{sQ rh^W©\ ˑg\vʌl\%EU(k*6>/,E<, NqS v  pӹ]mً+ʊ*H` ?-yIsSrt0@/o- R~>'SCmH]>:P}T[kskC *v^yM` ^x<><*'9p157LrTFLc2CG?x ZX_SQQ@_CKjv%x{uYKW7l;b)ĢWf9έ.@/V:xq73vG̖UaE KxfTUIYRzi]saL,UV;bI? IDATs3NG`xQ:cHhVMU^Ghk{Fg̶# 覱yfprԸψB\FW䎕fW`%X020e"DK,Yf[3Wk;Ǩl~y%Оg7 #G羺E_`iK bTL6`2n9V*T[(B_JO_PV#b(WhInaKYKz ɝJ*_,64E178UJ~cܰҫx0sQv`2EүV$aΌCYKhڌhF˒L߿1džM|<=\lI)r.rip8}J[(hdGyf(QDKWR+b#ZA;c-,-hbkF;.jiNe\ ~5BFAY* ޔrե<Qj.TVYaYȑS J@ ֛x5nI;݈] C &wk'G^jn#SLNJ,Gz2͐&rk[H!Q,c;O6`IGLQo2` #Oeig\ǤĆtV+rz Ez?Va;V)Y{',Gz2j5~|V,hzU\y`H-FrXANjI9 r @9Q xP߈qa@=#r2:dτ7ŹĖT{tJy=yUw^fIŹW"E,ZN0y0$Ƹqa= j7Z)?U[}et=U'- /?%3HpV~(zH tFoU `'5Z 0jp'D(\L@./=ި2Qgd0 yeŁnأ¾-;y# 8ҡ[ =oni+OG%%'ϵD WNo:C$ B|W٦'ޫ8׀.ˑ>W"TbߝSWk4{I䲬p^tփ(% CMʞeq=ʑWY,ɞb=Yd#H ~WJo;Nހe&}G֜:gUgﯔ(^ç@}kJ5: _R.)џ7U48)xc2X;e|l6'џm$7aުrJHOƃIN< 1xXĩdm=~] .IOpBޫr#~r~W(())#7Ų'S~Pي8i@ =sfÑR=5=#wwQՃ]䤪REh1`,aյjxɵj4D}T(c2=Vh0Kh2MDP?v:9S/geJ.a9YmCY ?%aټ,u7w^4V Y=}rlNjAPp=hJ,innyTHۨI?yur%H(7lAv0Oj?Ut{O2Hlayƍ$gg`eXe^`pB26%x'Gqn#?ԅ+a.Vg@:J,OKk# Lܖe) g;;..vϰXÔr"00R>]ZI4f?!hh$vQ\xF,:7̨$Ʋ\Z|<`؈W x+~p2oٲ|J Sd (`ezˢWV4qUj092)ː\񼅒3p<;5HȅǥF&KEN > Q1#dɌPĝo@z}Ҥ~{ " UG?aIͻ?]^Ys nCm{8wޜJU l\1=ڀaD>GIV;^=30#WFW'9^nփ&\c_X9c1A'~DoQ E8JR0l*<.hsȃAUaQQzp!yH[Z-0 `?)7kp _oynQIx'0!ʒd.!m_ $CxCw=`rۈGlhy$01iuu|(=Y3W!'k4n`Y:Ud<趺t~d6aEFņ\+]a/Qw+YHDrvF,׋2@T\.v>tl0/GS4L1UϢs&t&I3F^\F X? ]:F?9*AW&y=]ky]䴢s./Pqpzv3tQ7>W!~p2j =rp>uȌϥm^6++/JrB^7o 7O/pЎHOƳri)#;kp.ns3df,t Qb ˨i.oEQ}|FipΘHYϷ秐H{46WTBOm.3L(;sYd<[5?JrrU2L+*9/gROXÑWvk`Iл 2sX2oGJ6]mJZ7A⑞! LǾ-X̜:gɭdZ ~\v]m;Ϧ*)s-K#бuy 르:od^ˑQ~..1VevK;H,F*u̥ԏ 8ZfIXY %s\ J>g6Ů>x|n^Kё[ts(vcUf: R[/@|*_bsEg&yZ镅לˌ{7#kWAwj[WhFUZhvyxAGx=h6ŌFst?6a[Ye -kI`Ym${﯐ 0]e.={$EO[Yr$-g2-5~>~ b𢔆-I#ƚ.r4'ԨE`Ųhs$|jD|;ovRO]9m4pk%ԨM?udQIw3^iUGY3V"wiyxƣ8_<ǢeJ/]yO.*y]0>_K.tJM3B3>!]o58S1I`ip %'[C {˄SoD~}$ǝgU'ғ+~>=^l .SZ<7Ō^CG2Pk^ٷJƳQ3=`LT#{~wnh,lc~vYqyQ{NG1O Kltgq[ilZ&yV\\#_d;2b^l.f`=Rkul4{/ַ-د8mqo7HἏ?cJ4jpW'6e_݇ !s$<   . ɘ]?U|G/KSɿ+Aa?%=f'OY%x𩠴2h< t>BRSh̪eTП!\E'&?VųϬkL>1b`*f|v9#˛\M4 hpt^ĚeQZHTh?bHOF(;%ۆijE_^Ρk漫P|mWr6Q{X2xۀO#p|,su}&trL)z1F~p[e1;Y$j^ U޷y/+)T?ͳ#?wHr#Y5a{& k)?FJsETRHtdP[Yc\_kuQNQ'+ȃWȹY.SW鯈чҀ l k9_]eq7\K+Y43Urxg9$`/$WkP_#…Z(6ȩ<wI%՟t2grr'#A]EIf55xLC*)˗G;r-%J(4'M}(z=*||OP[5{:<Ɍ mƷ]GIc3NIzk9gt,9Ehkf-ǂ V֕F?8猎[􃇵*,Pf9K2=pm{쁪t-7r} !e$䷹CxIz!Ú6KX}F/P@dzlJR0zvNeS VqugselPޏh5.Y˓l[z |W{reעw_Pp'rޓXFvNjt-.Xڤ*#tUEmN?3^= sHCA :xZXxVv\|- UsSu9!z^epxn C)3z.tRgˉa/0\)?zokB8W͜Z2N l)" ~ |eF XLRLhB mݩZ5^=|&z >ߠcqUhL' mrXV$|,F -fuHe6aexc}Z?xIJvFtE,]}PB!$̸ Z!#"gLHa/j3!\vsݨnc_wk7oiFVK vM-OW*!5cFC3oođBmR|WTr5GNh3[bƺw83*UI-P{ߧRޑ_2Ag=sȞXI|ېlXT&gwNN`)ghOs?gB/ͧؑ_N6vr W{t굵PeVw<9w 3SmΕg콝%x $'Cr-$dAH/K? !}PʁnGf07/:ŪU gU69|ߋh^AߩW|c屻\#g[pŁyL ת/l6,ESp$G3&Gz2&9iB?ew_sǟQ4$5QV ;_ʼ h;ȌDV5hTCiXOggн+\{U!S!S'i|_HOe$v ?ص/@-.Nƫ5#[7SɃO`t~kp z,Ły,0ur{-TDl+GY.Jr^N*3ǰn8tϟ9 {/AH\ ΙV}7oF6xX>1;3uU}Cry>xt*]W cxAWߢx`{V`]}瀓`w2_~y)T\kԲ&,؅仝s>he{stU{r0 \'"L_'Yõ؏Gg W pWFiW+87r&^&IF a A(xIDAT/{<>(,KpuG2Ϩ/Xj PM|>WR)v*wA1w2-?E9O{=r|[U T0<?W:k1iZxN! [eF(oϕ'`6ri2rr0#nZNni/J< ~2`?_yFhr & ys:׭^>=`TqF/ݥ0N<#'x^?YY}/ E%7#+FqTysv4X߫ Yrhg@NF4cMJ1䩄~<Éz9ZPn2ͅ ІnC1M3}=>X4pG?6z )I2{!Qܩ'xsS]Hro"oMQ]=,a ) #%E˳8ى^͔ Pv0$A8, 7x`@^x`@^'zIENDB`gerbv-2.7.0/test/golden/test-layer-mirror-image-1.png0000644000175000017500000000626713421555714022303 0ustar carstencarstenPNG  IHDRKbKGD lIDATxqcEQHʊojHxM6YkNq P_^Rv`8HVq' ps1 p77]Y/Fpg0lp:/glct& 0lp:j `+6& 6`#5.Q_BF`(8D}a,S_N7f`I< <0O/&g 05E}a~P_XIC}a96`N}a v`K}a#`H}a;v"`E}!F`B}!`O}! b`L}!,"`I}!8`F}!R`C}!"r`@}!2`M}!)`J}!5`G}dj`D} 4*`A}`N}$`K}0j`H}<p:`E} @`B}`O}!z`I}-m:`C}9 `XM}b |`XG}Q_w +/t |%0O 0LwfQ_)xMa<`L}#FR_ a8Na N`@}R_[F:.`H};P_&O`8A}QR_` CK=`xC}^Q_`o/0s L% 0| P_` _XFV`x<XNA} BiM}]HiJ}NiG}^BiD}8.EiA}hH)N}K)K}N)H}jHA)E},:HD)B}\ HGIO}HJIL}HMII}|(@IF}L(CIC}J(FI@}z(I M}(L J}(O G}XhB D}>(hE A}nhHL}hKF}=hN@}!,u'f|"L_ 0s/SD fxAB}^`S_f$8HF}`P_S,.@E}`S_ I9M}`Q_!`(H9D}`S_7`D#<S 0O/lg XCE}`~P_C}``N}`K}6`/H}v E}F B}B O} &L} 2I} >F}RR C}" @} #M} /J}R ;G} dD}4A}N}J*K} 6H}pE}@B}ZO}'I}m3C} ^M}xb ^G}IQ_~'+/t W<O|GgQ_^)x<-L}8BGR_ax @}8KR_.[k:2H}CP_n`>A}ER_C=`8~C}A_Q_&o/s T0, P__e`%~<X}ؠ{-ZX}إoX}ثcX}W X}KPZX}~X}rX}f X}ZJX}ȢNDX}ȥBtX}(wX}+kRX}._X}!S2X}$GbX}'zBX}*n‚X}-bX} V&X}#JVBX}f6X}igX}lO6X}`ua]~Z`߭'/<51 ߙ`X}V_xkp`X}1V_8e@κ` nX}V_bXNxU_Z nX}hhsvX}hk[3@wDagW'>v%[6pq?S_0W"g]́sԀ\r+^9 hŕAs΀\($/'IENDB`gerbv-2.7.0/test/golden/test-aperture-circle-1.png0000644000175000017500000001374413421555714021663 0ustar carstencarstenPNG  IHDRKbKGDIDATx[rGPȡr^V%&(Atw=qDu͋Hv __c PW_Q@)j0P51k(` IafS@bSJ3RZ#:y0_(R̠d:f8 d/4UV:~~^00]u f }t0C(` {/౰ C!, K>bҾ>"Adi_ "]sU/\#h`3KO IҖm 9 أ@ @VӾpSb0w XDG XA' N00MXD_n,.RSx;``& `.rFjҾp00Lu:7``> C(`` G[!0ps0p| ԭ}a,7`X 8Lu 8FxF20p@e* J@ x0= )`fzY xW}a <}a|O@4f[W,!XXnEO X֘[,`pNbVɰ$w 8p <6CD3X,=G hdg X]H̉iLYE K&tS)3 (]:ߛ.wbLaU#,wF!yVRP6eTͯ?ɪ}о$rܼJW*dL OF%+s#hnۯ rѾdtrH^~E`v đᏠx,Ѿv`^d5M)(\ɢ?=&C)?":]͞ f}R !}) x*Udw{Tڌd 8PRL3CҾT+a,Ka 8@eIR҄!/cpEx Sf^Ѿt#*FKg>i%!JcOnqا:K+'o7ķjѨӊ07[7)MIPDq{ d-wW \ayX~К&L8PUQRީ6P~wg]dw"|e_E?qwe]CO6 @nR GygsnY .Ejw> |{]s J:F^#O|G Ƿ(46x@қs[t _ 03Io!_"g7g,xQ J{U7 P0<' p~Uv>FYwHr(c 욌+tF+Nse47`@Q]@% L(I\ϳ}8M_3^#C fRWАy. xvvBc+:]{y (&R%Œ7 )6 !3SXX<`_@q>f! x.W LC17o"a<0l/Qg;k(`1oa* (E\&@x)`@JcR*al0lRXC V0 0/a (`j)>S)`R;20la.)`@/a9 (`o"~~|յwsܜɹSJRY<Ώ| 4k;,Bo"Sۤ/u )Gzىt{ 40)`-uZX<&SF?5' (.Ta)`Ct07 uxs\Q0])~éj)¦0:pq0PSJKH U P/Op о L a5:\G W"n[;I Z?Ts hҾ ̚^?gZ.C#6|ח=Y&5(`iv5ު|]Poy:8_@rbko4jNb 7{OGC8&|y{e r >a˕7?H/槣Q0Prn:8<[8:8 POAϕk0J0@ ޑD'5CyRy {ʇdV x#eAEH7 T.+ ^n@e: NRi j# wee2fs%{`=7`7()L0DHJ9]ZXC4ՒFOIͰfEg 9٣ Kѵ5)n~3\!/M8£^əR[GfsD y 49,V)焘01$uu ?a9!r|t#i(}7nN& hrZM&(QYdEMN[ D^g9*WLxs9i>;Ll2ϜgЊ0F5`N>3^4ۯd?‹:Sn}|rH`JPd vj9G0*99W>U2RP?juw#o#Y@7aR>U8h~1c [ ,vww{d{Վc5fP>>z\{3\'}flE $ra'uUwBT}vU GdpAՌ1`vc?#hmߕgz;<JIRXJ@cu1V!6F:gn,:[a(|n8p(< 8za»,S7Ai꨻Gz9Jbz+ꥅJ.2\'Si5f/_3gI\PqqPma"-apÉWn_P嶞L'ci_)rR8W2\5pא>J.T.:V2 Ve99vSe*~~Qd90R˾ _)V](#]@ykYgH()x4該mkH_e_d1I4 qd^ Y|?tȾ’eRp9[wS/ԛ+2_)G|w#?8x. ZX/0Gu\#? 8!Š̮%HG^UY hIvg;07Td1g7Na8 chI}OA1]&G'7`*J,ںPrK$}dy>\yyPp$L 'iIo y?΀yOpq# iIo.yd܀ᘼK' ;QpDf.R*;=bA%A[M]{w4|CN}H $,m}0|IN}I %](i_SDVdOPĎ&aWw[#>Jw6^iIo FƉN.&]@ӝD_iMNb÷U}'ѾkܺT퐅ӑDQ-`7`Iоp;o9L#w{Lw !,Zоh_.}˦ ? W(`Ӿh_GT}'Ѿ.k& e> CSDrNH.u7` J,/ FN}a,L)wEFo :$V' -' "$ڗQ' $6&̣ION}a*Lnw$2;5n$+ɉh_X@D2{IINb92 |$>m:O5jr&=6D(sҿowvuj&4$Ŋ4? MR`6 A[1%ݶi@B=)&~+ѓNFo{!PUhgyVo^7i[,` =GE}!alK&ѾĘS||_[FڗP" y1_U^͗\1c]-`+ GYh> ]*`wbhIڗ:Ksq^Ij5|)Ҿ/w}fN̮̉>K5NB6rEe_y[yA@4C<+O" T@@"f0\cKU־C w-rk_ Lz1;X)`Sêx})`JxMw0ͮa oF ^"L/WX)`z.@:Iu@zlmq-UI9fVﺵjCS[ 苣eu%5Lm?\48 p#X <@ǐvsn!h @t[j?>S78cyb!D &Gxyo)r!"˷= b K)-}S<9/Wb-bE5K%c eW蚉J:WKzO_>i9eH,7k-F…lT\?XD_a _65wzշvHk7a\`\WJ:5z9EK0yLtff49"埖ɬPߛ|KW(ep\vU-~j"2 By+w ^f ^c;UxK7uTvSce61oŠ0y~ ȚǽJ[zq6Uj߷Ww4 Nqۘ +P7aEXB0@ ~ !ѦεZi,)+ZEڿ<l:enлڇ_e13yyd$OK|+ɪm)yz67YZ^\_oZՕ ˶;1+KGj3YXS~Lʱb81E]YM_dXb E/y)}[iԊ|M:FzT.p`,Aw淺V_XK_ +[XoyzKXweQ2d3]}+/mCC&_7:?2N%'SR+H?mBDj6XJH9]K%Y05BlZx`g]Up+#f~z"(DW,+;cs`vEbl{65l(vIv! 1ACf,mSӲ1Р@ hexfFo $ۺ1`Bi&+/<<1akz@$}D}k&w U~"8cRuXV{7q| y oߧCkeJKsND M'],Y唷F'Z@;cdl:Ym=ÕLݒОF/|O9 U/Z#)$&@Q3 U̖ U@pL ~0|<)Tguc}f% DQſjYg{9Gs-i (p·ȳf:4=&:sp3-MXp歗ME{'yOVD>g:)w1$a&7S# 0ҙ .yǐ&7P!p9 ux++dL% WQ@\t9EC\V{'ewUx:kRŌ>=[ h0KIi p.5/]fB}Sp)i]w+d6|hdo { qp_v@}Q`oU7Z9w{ ԲN}W?<`T}n|'FZl{%e@'&dm@]L7?oXLh\Fola[jsɪ]}GE#XtGEwjh,FJjYgāV4{qt U{$տJ^XQ;Kc!LuCOs<]W$ ]{bL{])*np".mB}EWHf9Fp6슩C;a2@a~ei{tDy~1㠔L\)ꛎ+j{WT}yuWULˊ@4(Pīr  ?BV/[ke$χ=k-)ڟe5k'ǂaiI9PD,^DAs[R^6P7՗kr)3`E9~zן?XD7#W{x[S3@\qdtEmηߒ9o cKF LԫS15KJQ_qDZ6[ 8yP8lG jmfW_REkpͳ/3qҒ2sy[#o_OqǨb,Ko-KiąĴ_IoRx֤pPiߡZ~U,Rҵo*ކ:$)#e Xk!zbuNX oG/yFPc{ʒyp[j ;"EnM |.avڲؘrV[7I-^>_կUWĤh=%z%@;ef7uYK;('cbGMU6U_"+Wm$Q2$ɳ%[*V_,)3?HSE5[9cHkf_+=yL*6#x]=&;TL9;>v[T_HrM>48u]}tE(Bm뺋=2s`v 0f.bqXq^zWG "]݊:qrڐ|:F\-MoVj-7WMGԂ$֊{VXq N[V*:!(g{+,.@mx>&xubS(fw."pz]} (4ـ3[~K7+ErfQ}-/H%e@I _ϵ1Wu4V_2ckoui%Eɭh%p?$ruy˝S+ pϰZ}u"P\s8(@@Z't_߷9KG5&9Dβb,nFW1/+W̦7hzSV_ʄ58gY DS%&6V)+~J6>-.V)ҥ"V FY՗oI9P|8Pa[B}S1(MLUZu5-ZMdkD;%q#:D8ox?+}ҥ',U_˴vQWƺWTw7F "| @ ,nTv1GZyxRZI^&X)|]CZ_ß .W+C S/GbQߜYmS;7-<1P.jI7' 6o X $yA#kQkXoOXUR(b{çe0"g{ cES_2:ܒ2^&ū|_%B N1k`-XRf삜םp3KUaJ.*WDZbȜi|OE~B&/Z}PĹgxeغqyvaUI>ک1/$O➃f́c1[VÇI!YmR]Ҹa]Iw*W<ݷ#7 ~\8uP{d5LmW}U_=ëWhGWpK\ Pg]k7Ѭ \+GSf,2(?D0mPߋ!6SfM̨sBi0x.-8 0Noörn٠*}mډۗtaAopwN`{9䳀gD{MY8Zாg6 &;SVdԤ֯,Z*# _58$Xu=أ3exuq)+jO98YP_26.șW}÷Łkg\3'aFY}H |%e@ZEe lҌa3~-s.q͉\+q zɧ:zeإ@K]2iöSpŸL;i[n6,{&Nlշn%uj@Z2im^S~Rs_ao5hO^W"GY>wnNE.l ߳Y=N)NޢwrCXQ;;l"BR_0]9Rࢾ8r|y˔j5P_S_cxuQ@d : `1]nuOQC1 4wp+eLΰmGj)ǀ#qcF};zٝagz"bgm͜*\ƒ͇/(& [*=uP_ȩcM;#0CwNC"̳4Y#]S}{AwC]wwF`W ݷbb97$=Z4ҞΉﱷȫ6/F/?[cƼ|"HOuky}z .g՗<]Z^`t@^$z 86IlmVBcfxlCkTZ+%0]׃=[U_LfW"։\]1~%IW,4z=$HQ_B+z~\5U}g<`rІkT6iY؆\}7_j@}YzQr-t5۠?'R`ׁ|{%͊,j QA w)x >.4woϊ Ďo@HR: Lr盰>}/y<8|.bۤzAt9vW\'iP YRfMaY#vY Nb*pI6m.倄/N΋Œ5WKظJ3]͚֚oNN ̟˒'MWߦJ e/[5v`GU',f(}x 2 0%'KSw[В*i-:5WudKi, 0L?$UJ{bn%e@ZN~T1 ՗U;sJEb[No^@S5Ƈ8yhpͳHciaos2]h0([#)*3 tpэVx7 p`Zয,6kpoړksݶr|x\M` ʼ-k*n}xvoQܥ.bRĉ=Gu;_(ݫpd&*+G՗XE0z(RONMf ̅E}{-^&[r,YxSLi\F85MӋ$P}OF6yE8v䍏!)h(87s6w`Y 5RZjIsHg6<GuN.A߲W_#Dtta[b~R)''PD4 eJ8VWFxH9+e``b"ԣJ7Z?5+#m' pL{Jemq57f3uN` D" :}7"ƓÓ@Jwh3R3"54vHdXڦrp^]оl86zTC<=_.~ľOO@8U$I-5dc%/>5Tbz`\N.h.IL\EQBXteذQƗ|]s77 .Nqi}-6D6>\O2SskEq܅trfvj0weA&9W/]}ꢾ1<]5M~yY5vVoљ?&5E Au|E}u e$zpy^n=7C}]PvAq9Y[9D&x.[2 V`XSƬs= ʢpmo{Lt|Bt7 }PMn%%IsYt Nigj֦ʖPΐR`b%Ďvg!,^7RD@\ȳ:T_1.R^Eq*q,|w{Z֔@臘5%wfy ~k)Ǫpk ;"r!h(7NoMJu5V׀I eRbK63E _Z5]GԷhdyηe%692p/ۿ69u|7( O9%ߊRͩ,f DR*nAj5y~u9e8nj5V )9kRST˯ ~~ nRbX>ZXQ_Qnwb1ImhAVn" {+|&Й`ehYREk8hN|(bZsӍRK2pTZ{yMm)+ʽ(r]}`'+Z_9B9^F_~Ͼ3d]&A&u7U~1 i@$PʯYȫhn-Uz@cθgs1HtDH5MGվUJ.sfQ}L˨(a`RZ.3ƷXK 6o@|ē!ǝr dP12"ypa2k7T}kї; pctzWx/HBqՓ4c3?1@/dU80v6ҕҩp|1dE<[ .q/)v 9c͘H+&; DlG}as^ߞ8uB )]dXQ{-esYJKU_LI;őeEg)R_ㅻ'Xv^;Оr7|"c JrsLKշڽG W+] gY|^sUua^ }s\N2c^w2qddx"9⌘8ME}{@Ÿ}!BpvT}gτ,Pm)lod%3oG;)6~ZnɁ)ؘGRƒL"q Ƭԗ7`T߮r8e O+Zn%@" xhp9 h$ikM%)5MmYcw" U\}We#tRlB*]fF}@}{(f ~dž Aa8ێ$08g ڌBxz3^U*r~+}ե߇[)d.'7`)W?0lU-dDϫ/FOK;6ӜS+ٺςҪ2n!vBqE?+Jy&"Z}]<6gz݋<`/PbꜼ@,hS}IJH@<[x4,*MTh/8<^ or%f 1L/c6^|[$a;6yjqMz'2^*NwUR1> E}g )+rՇ{rX˯7W]}K (HI.dZ+7bKCyu.^pC%>=_ ЉDӂe6.UZ皏XWa沊aOAtWd3bQ_e"5VAL p}F+'"~N?} 5X c odḰw2#F-!K0 b^K n25]1crtyϵ@-_ rz-;ɺ Q}3^ٌ9FӣUC眳IR1Y?eP&9d\ZajҰ:?bkpM}#Άշu+!8+߮T+xi溒SG*Y-5+W\e-,Kwk:Aә86aۊVs(=e®(41]}NM)r3Q o./ʆr;杬f BwAٹ2Qʭ+?߿G** {-w'II$ݝ{ 9/fI949u GpHYQE =3~dm$.o`)ۜ+B7~39/efÝ9m;`U4漌Tw уI4ףvӥm¯HTwi+WlpE8^p!O1FunM 2iXk? ; v'H +0iZPz auX+lIb.zb]|!zi#nk-Cԗ֩TFy~Tm*\ $U}Ⓘ䢾kYRfMAg~rfwdG /JE^,x=Ʒ, /i4\ԗ0x<(f?H0ؑsqx?]֦$l>w G?,-ԥQIv4>SW;1j.yb:}:P|_]bz~ kJ=~:'Z%jpyJf=P޴yk٫ʃrw"ZRf|!Ru,0DX݀Uz N{'؄ԒtYST`^f.9hoq%Q7yIu km( }HElu~دH[YbL3l/Cz!_{KQn\"U(\745 ;]c4l+ Mȅ) 8Bl8v .|FIJp]Ɯ`շ+7̏f`V0a|?\=o 6f,D.ƯYZ_4d#g|_-6L@_koո\\0G̉(OPJjN:F?yF-Ϥezo^;'ר2saoCe5q^-C3e̖qaln+~P&FV Y4؏?]ϒU.Q$C9EL+>!382Q r~ Qb荹P+֢}zgb ͔唣 <ͤo>d*37wDT_E9D`LG?xyv/6.堾Y}^W~a@E z-QD6xAxD}[d^)r`9ܹL#3,h3Z&ytw|B}"8UrH|ږs~_⇋_5+-R{j OBR5/ɿ*)ͨ| +jjwo'Co ;NvmemXwz5g+~0w( '!#U;5Z'5Df:%rWg8UO9%̸/aȢ5*Dʵ5{ V^<[ F}S]/y|X+3tw=KQ0mT_QSo>u5xI`Z0,=rGykڬ8J&[[W'~ xjnOóS"~X}#򮞩H_B&uqVQp]}?/5o3(+̨/p1x?;^jRUBi[@^&FHfRMް"io5Y#*pXa9x1Xa^ &A8CbwQ>phRW,$!ܣnr/N( .׀xOG} _EL,L9bRw 'v!c,ͤuyiA}S|0y `bOSw:%3fz5 Ng-{>+>| h]}qdI$#g= 훍M&o|ǵR\յs&dF'~)j\c&5A}C|H4p9T'ښq4{@f򺜨/r3^mL;qFǗf|';1ƫYRec^޹Y{|9!%/x' HtǸ:ӿ٥qF 8d1gP߻.; 1r{_pvhQo +U^wD>a]O]S=E3It淥%ű:N^DZ.;7Bd] ] mph0?]A.m i" >.YRfM 8+d&ƍ7 wRn"w=5ˆ nhX ;9n߯A\;@Swp`uDwJK : Ws=Sl@}}Lvk8 _Zu04,ȫ0P__.ү͔k} R-MQd'cHns̫z'ڢGrKCM%d껇h{ \0N7\RۻˏːA ?wG^ ]7 iz3(}mh@}r{*'iUO98}ɿ~1gǛ/0f`",*nq@ooJ *f nVom-}V2sB?+>ws{Q]z< N.Vlo>Ψ+`w_mݞga;=*e<\>W}}Vr5]>wAh0weO=[%IGLﱽWezm\[\g-Ou\\ 'J́%b B=5nfr4!~fk` !WO'f3/p8Ȓ(1XVUDv2ĽLWT6 5N|H9K |.oS~45qs nǺT=Sׅ=S%_M^W.@M}hjC̾Uft5xXST`/t|օr()g6QX(~E4+2ؠhKi*7[94U1 ~ܴH~S^&92n'eOacd}WI1D,ٲ7f%VfZƇ^e\> 0kl_*v-+bnnܒH}S_˶ =>{ hr 5S?ĘEԆc&olG8>$Kn_HsObuWlrDP :Z}=@}\^8ƽC~ZfRn#cZf[ƚRqC"P_³>9՗;fK9=K5  K C׼{Z{>G+'t@}5li@>@ۺb dx2Pߒ1]kGk5[C_OLnQ[ZWcXŨ˛b6}#,)C+9Uw]!ֹya:nKEɜxqߧfYyf$w(ILf 6 ,-hM}N42|r#7Ym28Ia7:G};+U05Ƴ sev"˘'/˜]!x| r4).os=g$0P&д wnD3^&5b?bj';s .y*=놲kb>9dw~a싂c/F_ I j[Ys*бpDjYpO(iy-%eRÆH?m x .yip4?8yy/;E"gQy^ 4A0 [ﮫt|  ']W 57aFp wYFWߦ(O?~ʎ]L~0x O;]=IKsjy!hܟל7`,0( \n+ĮoonVw DP\Z!ͽeBt˷py.`X}yG ~0<"/Oټ4-x\}k9]v0}{X]!WA{u0/]VnQf$|_fL>?_F=F׏cټ`)^>(v:pϕXqcш^xALU*_Y2 k? >?<qv-m~Hڤ&g^*!Xħ?#e!7e/03a7-ScG/mݹB}D抣WfqFa?8,GjAϛA.037CS`)Ylќ] jaPp&?IYT+y|M]J3䩄szi=!pDj͡1O {G?=4C"ޱ1$h}8ˣ=$ҵ,&0\FsǞq+OE? .$7f` 2Hi(q)Zy5`Wb;NQ_euN}`4` @ <x0Hgh|cIENDB`gerbv-2.7.0/test/golden/example_numpres_numpres.pcb.output_unplated-drill.png0000644000175000017500000000444713421555714027541 0ustar carstencarstenPNG  IHDR5bKGDtIME%YO"rIDATx1 & zv221 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb @11 @cb.IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_smb.png0000644000175000017500000000620013421555714022525 0ustar carstencarstenPNG  IHDRKbKGD 5IDATx]RFQHYsEXV9aH $=nI?nH 0yޯd&l~%@fq+*0+^߃ 0jU߃m 5LU@+.A@@@{m` 3```````w,Ȼ@@@{6@C̲6X}\3`Vjl 4',z l K/PG^^ƛ(v}q\yw @ @ @ Wz{B|q 7f     pϐ3_wz1]̀ @ @ @ @ @ @ {fl!*y`gΌ0PS{N>N%~=p?0+'#a0Jw]3`gMN#gIb(?hxlK7C}oŴ=T,#%qj`՝(5x[dvN֘5V=Yqx7L?]܇̀(^}.o@wAZr@KNgKޑx/g?0@ޅ!-XK`4xճ;K2Uk0,@Xj0uf_^Ew-?[x3fOǏ]ykv< 3`U$ ̀U:{qjxeFle"I8`07^*c\4fY^ELY`IōZ8,#++;"xq֒Ʊ Ɇ0pAµ0N#6A`-9`SLޫ(wqv?tJ`grFJi~ԛ첬qLtz虬J/癢A){`y#_.=O2"Y xXU 5kNBxYgO~R;f ^E ]l*`dgO_Ww]"oJQz^R oOs lki7O^&=@@@Ph'l,G3````j-֕M``-9 Q @500,3 n!  @? L[m n8_< ?70{|){B7Y\q 0Sz=&޶ McSc5ض A#_.=i\9>;m  WGM4Tʷ};tah0=b <~v~˘cDC } @@@3۟mDC!z'cY=7_/AYV(ܡsOعuC0e[L󘧠kn?[|MDe`US"yz1/lb;8'* b~j~$ݞ˶͕CKЍqٶ[cB pK 1Բz@N6AZo;Pp3.i^M4TXdC m8E1k8SN4Tl`ФF}6P{QiM ' H&?<#ϲ-Ϗ3޳ E~z5fJL1DCz`&6Q&*Ї @ @+.†~ 00p.pe:`e 0p]@)nf˶]&W. <Rz~믈-F<Hm{f _w@Oj~Q bC_j8lvaG?vHb߷Yy\63n  ^C1ڮvN.{- &Eb "^c3'֊k۫kHh4hk] 53L]'1qx.Ý`0pEp/<Nn םf68YB!@CX-ȉxh ?Ki?s]˕C RNoeZx<7dOzlM`Ml.Tğ?VsW}OۿҹqKp%CSTET(lswtI0?4[:N! 'f,fvʙ|ȉ="#Aab] < RsSgmwd뢘: %`g Pm}؎ӊbM7Yf:<+QYIW~;1hss8b9u(N,{d2ՠw.09gN^άPd빑 | ɏtiYgp BUL>>L/אG\["xfGHvrC on3hNS{o2 ' %?.j*AcS9t>V v;@-#YV*dM]_C^)Ըד-o+^akjߞZ K0𷼈w㹌>0U 6 mJzN 4"66f=Vy>K!@Aoo w;ӭ76EV9bO|~{b)J)qx zC=Vk)1ݲ?v#p"5<6 {s|=_C9y|q5AUkH-bVV,OǕv|0þG{2O|Wȡ!h5\\rĩ/ L8`Z[ +J3[mAx&U <$/ڨnI}VxPy*<`uM Rb9nmZ;2wK.j_ć4zO/5`Qԋ!}Utj$&Df@SOUAb=\|a/*M!^F @{q̶ ˉq4Llk^s@8r_ȳ:(<&:s%s3CXmS #[ɚ"Z)/-ƞ߿~+k޴R90|%3uO[t&mۙ6\1?-8(\M"\W}488]Ʋ:1(=w3 N e]ko{0~_ 0JK]0\|`+eշ=BH=^F{XƹgqGy^)i`Jg3O$OD<9rc.wUVV_W" Yg4O2 ]ϪXPF3`QG}[}eXڅOo;n7E+{{%!qL _]\_}[CX)gqO$M櫚^iW6q༛QxB|iDӈhi[o(V5"}6xCf9EJ!)%f3b @l sYt7踈 b>33&WrGSKC,GsApYZY նӉԶ lX'7sO~x(?p >5u;}o "EiS 噋 oRJ,b))EjP; /!} 6"":O_,KwU ySzIFٔm#D5w_ :.0PbtG']F>Uf8gs#ȹN.3kDw+Mfg~65wOy潅d~!DUׂ5-Λx ;[qsy@:ʃ.2V|9GhmE4dt{{MHXpH-1v6jǯIM+at { w벸 I=o-~^g9Jo5Y j~>%pm\-Q| ۋ%yS;} OMZ<3C|W.KhӁgTDtXIl֘.=Iuz ]ŏ>Mrrt>4ǒÕOP@E{-12H`Y}"̉5cM?~Ġ:hަk'8?d ]!9g"seM~g 0l̯<(=5nsØ=Zm^}j:޳bvIfI'S{h#J[*<+r()ʜ.[ A"dʸ'eG0FVu f"v*ps:1'z~X}%Jc#sM*w-~j%6{?cs=﬿[gn"f0l1"61Ɉx|۱ M f%ā8Pn;S}h4v@x堇gs՘?-CL=WC;$kZ~JGq&2BKM$Ljx{pwjplqzer6'"bz+Z]Vm)\yK Wp4ս˅H>ϘPhp_ kkL\FqG}c-(ٷ#G)l{:N||bl)x]|q*,Z6E4h{WI60e ;k_hYjj ;5n e}tb>rY'jP^jnCO)H|xhχN 8>#eGL>`qinxc籾K{B5鮧8h0']fZ'8*wƎd4^GofWC=qy E1.],d犛z~B]lx~qϚc&oOqE$u x(Z"ƞ4Abo<&àX]'dr˶Ǭ<5̪3m &˸"mLO5(碯L+k؃1DdcT7LEfh>ƾ?]}/{TMBci^dUmzgn}]q~ӭ=PJJQktYt=_.kW` 9E.V!{j)*{^NĻ[H{X_ *;}Jok"@_.9ځ6\I3ˢK2sC}y5kXDj G1CVBيO0;b0N L=`RXج~m u!í hv.ÁzlۛzjO`uNP/<m],ڹ3M}x I~d]Ҡuls#}Eg8}$5s ]5iz63-cP V_T 17{b~pmu)Y1YSsMAV M{=Ql^%/9H$WaDu?{O`ԣ+ʿQq)ЯW]e̿(G gT/> 57CY躊jD)[xw՜@T[cKW<͔83ehzg#-Ű&5-Mb"f &ۚlp`#botקF{-#Z; S-} NvqxScd[n&d ځEr:]JJ!  d8Cγ zghۡ?srџ[ 5\p<5> LJ<^loUsgE7"esqenAbT&:}0hXHe* Ԁ|{+{399<` QېO9 =yFHuempv/՗9`;@/Lp=ɦiK;|S=xaNeBd>T[LRM[9WVnC* SpC Ίd'V<9wfOZtj&qTvzTvx Tc#&+ש)L|R={l2Ŭ+L-H /O/Kcnkjn6s)iجVmg3L1Mg2`x6D" #L8~h)O.PpidU#VGڌ1ng4Z;Y8O4fkbO6ܒФ޽.gA-_6͌S.,l$\)Eif2;{ɕUc9Tߦ(1EL?Ž;\]/QMN 5]du ЩԦTcϮufoU}^(q C0<'zEp xbڿKoy,A.mAL |ܜp!x#f 1" c|hxcV7>lXPxk|j:'ɽSO٣3060VA`f~XtQ&[Id)3ٷO_W4:;=~;zXưnyr"?8MoAwQ?öcSZnuj#ۂHŕ_)ũUFK]YM?ⴊdϞ'E7+V{(++7Vdc'aJH jxj< )qZca5:7E5;_wqׁK: [9vO=f8!oEބ醱 #mnVxO`{" rʍ: j9#_ιnLtS|؆MA+2k<7ILyl<pIVsa$~6eq*.')ҒsL.KXG筥lL\TO=LpNxu7xUa8lKsZC|r=3;T FFGZzY: WT3^b kΣâ7–aȤbMi"y9Yn@ʲG\&kNp"dA6'y"PkoE[m) 8%l6b?ziunl3k{~jJ80C Op" ?Jk']զ"K*/X)Fbi{I }Zx-p夯3Kܑ:#P q̊7C쮹fn}bA- `,a=w2L̋#+Qc5YX㣟PGnXڔ{*;^L #+R 7Daݤ+w 3ՙ]c: ޗ_0cã/ O4Ua'_!xqoIv1<&fs~H>P;Y)%¶J!ڰZwfY\y.o|7)[]}ޱ[8#9#fVܚ>}堅Zjs>ȗ=ZB`mml7wĕK}mcW5g Ӏ. 'Nv)=͇v0ut>b&HۂOn<gp`;k$;#m3Ⱥ<*sQ9+{ Ups^Wkgn`a1e`:| j=U_]r~ Ak6ٸ[ ,n^uJgaCH56ƺHQ_6wѰ2 ٛFREs*skEg'NaBfo;+}L[Z]1Qbj JwL1*uY:UN=$^r%[Gc[4ohuOHTu/@&GZCŅ&J ḓoSzU .1YiBk?EǬLJ=Q]㑬pÑmjHUr8|^ .oVhl8]lrƂ,xN;=Ecublpf{~%?{|22Nٖw eD9uhHgXmR`м\ ^#B>PUWΖGwR{זzY5A:Y6ŪcءL9SKt:g0mֳP?rZ*tjYb-g$yq g/? $T_4_l~tw!SMV-Uఏ8ۙl$ص)ݿx}katDp-2Z,ל,veDԱ+C'H\Zy}c%2o,mlk[#[;=uނz}4L?XbݥĆ c\3ˤ|k5hT'jt Ik.Dn^)'= ?\M!vL|1̨O9ƞfq(W,b!A7ᵿc⋵ɬ|eh9~'kHEϕwZ/Ώu=t={gI';RCZR)~HgP϶{nJ9u#߱g ~HlEF [ڛ$4_: ȥ/]sgyĈkagjPr_O_@>SN i140FvŨUg.o 2fryfRLMZ=0X[ #ffUɍLXl>~ 9vY /-YQWzGk咽sybD)=LM%ļCVԗ)GKy1*¬ CYxlO}W*T>6SleHӥ赖8mUaqVT.#}Ls pby0K/B_?jFI^%?eR@e>)='#193`%։VCj)[7/wz,$=D[Mj_Z4kxe/6{ӊy)| E&6>I`4u)['@9{'/Lk1f⌦dip0j9Sί皷rzZWVn|%~0;?K<svbMc+<(xԑ#E䎕S}Bpߵ~>vw ^B4,+|E~,|}A.n-*LijuM*V4? ;o@乙chi0x48|}h @6}D  x}Sr 9j 5؏fΦ$lC[L<~Ly>6;3K=ԯO;>M sz6S]Sf 9[- VȤQ~g[`MGreil&F2^-+%gxeF0m+e45W{rUtjwǴ89}@}S%SkcXl)\ |p#:'c\ZlV ~_xЃB}#LZ' Dv&%y{H>Vi/'.g&276 W&6؝v؝9GKi4^%]OLKpͼSCOD:mkɮ+v&ݷ{ŷDӑݵO>C[S&)P_#/QRS ?B =pB 6[2u˥ +C"7q D#J4wUPl&G~YsiIbZ) SS2zLv/v m}M27{)'v^46s$ϖ+5jqrķYG\=eM vOM8%jU_ZߢɉjGz&'fA.U1r6 rja s>,R3<ڝ 󃛮(ܚn>iJMɒXh ͊{c7%C 4ûs{Vi=WVnC^"vwoXtAsjvNMXdl{nIU_O$LL_Hĉ<x)\xj7kv'k8ͼb5& Dn+dOA:SKAjhذwF#5oL Xn]]w;W&}Dh-1%pj0¾xyX֚)]4('2ֺٺiBQV4$;±HF͇Q uzLI-PJbUV х5q-<ϲA…LjÖcb,- ^̞}-VKVs:GicK`O[#Ab17>']pݴSE;h_OT_p10h&OA\xxTphY^L1OamV* c=aF"_n`~Qt~1NϢC\ϖ%ZHƬ;˝IVa Nʱ@ĩ}q\aqYL;\!YNQ!XzJ6S4]?F6g@߹*H<VKO3ePgOo!eS6TxLU@ZH $oav\}6_{G#/z!}[鬏b5ڡoʰ7O84S=WEmkTp"xƍvM ?žN*;+]<ۭ8~NF}waBmѪ_!C^Zv44f·2\OA\ {%ZPADtj hgGeZԷEnl$i?Ss_~$Ffn,eBdO6bR,Tob]CݽumYt|xETZ7kJknlV #R0 ,C,']k2d(.ŨE4y9j!*+/N Cͪ3< 506Xrero ?}-'N x;# L> ؓcZnl8@~bC<- .>NT9Naj:FKrӝA+`ІP ?b|Lm98s#MYl}&EL"5xcч('ΘI1D)gtei-3RX'=3wpgreQe] ߷l4d=w488}x85x|mHAaY峁6dQ}ȚJ{)쁷uh DNcGMEwLq^!c4rwd™J>RLPW=Ko##]űM] ޥ_Ɠ4j>:>%Z q,F;4K8Lį$v)h-Vs|%H~sw:]g č{}_/An7lֈ8џ͌PWwordݾX.0~\ho:Kri}SI҇gX1^Ď+MAs){=A #ϕw?ʲCXv1o7f)ْ#7J{|78CٞPְ=[W '0Lm}dy ZEKT`9>U1w l 2M_qUx_@$hM p|oB9j@w)vYM6/#8?NZa70^>֒? ,N."kNj윕z"695+&uzv7bqyÆ|7P qϋ.Y_NjB46aOa5`m3ֺḎ^mz -S+PcUC~j sB7v}('Wmx|UCX_hpVۙjuu@.oT봋cӹ<%؍`HQ=B?'qcNN%~R1?'STp%פ>`87>+HDk_30[f N/{5ʼni%=/'5S ;Thgς}@`0fNxw7b7 w O wiƳWk!̮" 9b=W}Cڨbg{ݔ:h]3KJƧ܀GqsE7zR&NfoW="7sQ1.62rx68dZTm swQwnc68n6B0S('[ ~bk\nJ,c[A/+S^hpe%Wa\mr6 D~E1@{hrNaMDRl Ģȋ$ëzje!~E[3]0]}c90ܘsB}g:w+,C(N9&;r}=&ºnx,oLӁ8ͷZPޮ5S[YkkR/{ɰEe~Opz-?cYU80U㹒4-FCv8XF->F!~ă?+n(W@Ɛ!s-3cSL{%vc#v &0|K6yS ݑC!]Թ5* &~yv2$ cjJ`b%EβƈjiS7<ƞ]^ c3OࡢwXW tknNZIlV]혫뫢cx@xe8T% k!!hms + a 823xSUP>E\EŝZ-}W;O5$?֞԰3N4xbn;\ 474βd]SX$0Z->ՠΏ7|_=ݑ;,k"P,e 3g'w\kggr8ւZذph{=u'g\9{cF͗[q=,< k0-&&~ӰvUr0jp\Ya!N{uÖ\Ls˳TG%[/7Xx)T&jv6V-2 ɺNSlSgkXqepW[S+}=q!hNn,2<|'&.ÁUEm8)E<  eoV` ;G?jixCY%-ʈglH"9 wƠS1y(kg!>H`l<{+҂DӤnxYR3ݣ}w ƴ ( sN}Ԕ,/60O:ٚuccW"> xSSsn[pI6, Ŭu;x>pOl)4L9>А)Y{tcLIZl^kcHKc-T艥kUN >KH)h{سy*eazvWK8ޖ n1}x<łO kGBfd`۸R_ \a8F9]$77FE3=^wX?eNJ}xڥzky =0}JX}v@$+~sxǠ#;싏J5\,HWz#o)6؇lelq]?^Ϗ 0 dӋ>t?{vTc,M=1*=%F:#x(n}VA/ 0+ Rz?Pyy5y)mdH֫Pfm`CwxS6BКU& FV5IUg/+:lA~h 5e*e?C}O,#OأZ@7(Ğ?MI۷I QnR̶Ԯӎ#oT2q'J_`3"k<gYy0͌{$"g,ZV<=8};/Ll&\' Sx}/UxF'~$QPcr=Hxᮃu9qcÆeV' VF D/,sT(MM6LnFdE%V#Z |[wɽ;TGLnMj4uݫ{h+C#xfٴҊYnĒQ@$9gzJOKy,c8mci7ܰ$eR{֜(1ASsVK'{E$mSbWvR:X,XVÛrS4i=Bp89B}E.k.uj o6tz"߲nXb?g/Ka_am**W+ގ(NY*0>sSg5Ҧ/1dhBk_J_ KE/;F~RnDum5fRq+3\4έ҈sgo_r{xk`ͩoG΅<Їs.Wo/SWP3;q.W}wV93Q3" , Z e@r /CtX{Q(/c`M|GfL;mE<6^9COD{L1.(\-bY}ޘacy$EZ|BA]^l=L,km;}nݑ:G},sG E+g5B߳+qFuWGמWîJ:(!˘k`B۵+Ǹ9~F?=`1-fI?qSy!!9Oiᱏm`~ruqD=}<ٓYﯻ5xj!v}Se_}/5]W.278d6Aݼ~yު  j!_=` ēbFDDuֳ9bd |IbO VHh/b7|vӧ- ޔPA%˯ p=.#̓:akSΣץp8SnFp'ÝX%u捤CjN01%IX&ͪϲvan3zÖm9O1?Zb^6iɸ\%֘?GLavxWNe9?r.=`~צv]̶~[\x?yo;էe|~m$;$mGvѶp1zW} uaMn\sG)s3>1X8C2 CDnΎD✏K2&Ik<7`X'aqu=x>_6hco;X \${ѵlӳs)~X+{X)W0S^vdxzWI c,b3&x͇mH=/uM[l&bRZ6` [vFZڵĹMp bO?LB8}꛲i 0a!y͐y&q/B̋Nΐ^ոcFzkkᚋ)P2eFdzpXiD*FK%-ljSt=}`wO 76&|c:NL8Eh? @֧n-u1zF5<H֔;f_\APT!kw>Hh-% fukE2k/+]a_@}ibymRߊcKv?Eh  d//1XsǦ/+P(R7]qvg̚Ws*𩆿$g#597OQG>#)E͕xC(~35eIcMƫ<,ldYm5=`ϩ1IcwP_>4䇻wXn,WVVS* @z_Usv l @E 8$,F4ne4B:ˎ| @:$1w4 /n~ a5$CwVv4> 2'4{3 KDߋf0%2Q^*Lk`_}% S!hoeu1fkJcUov T8cƘ4\A{J͍?`1XiJ4 -hp;?{_2G}~nj?`1XiJ㌲h 0ДSy hʾ|ki.;*:w` L[RߥR<FWoOK4m`3:s9 0l5x&eEkR=: tVuk^jbmD{$@eSbm 0L]ѮK1G DaK4E \k%Մ:`K|e.C- |ퟫt${8W gv}J!J1y1 0)+0RC]!Xҧ10CF)0il߽@|ɖi@dVCqD: "ә 7Os)  "vKƖi#Yy߿W3z 3ckԇS|A`Zx$T!}@| p>m5lM`k~L[iG"Ζ.]}M1`:H邂'VI7T+NNdEI>  [T"3W{#L58i}sR2 ^e 0p;:uzo#&DpSKx>` ;8 :`.hL88+`N<`@yl+]Kmv*.h ܊r JG Z9,#KqnI᩸!u,64$/1B}{:΂۟)"T}oNi#Hi8"md5[vRL$9{h{䬀(ךrI5a&e@ Y֑o@ 0t qq["8.C` Ғ]?L 0 NԿ~VcN]9 g>C`   .qMu!.h {EQs>ik P u 'k \.cVRC5zm}룎t QYc̕=O(6m9m}o"78ѫhK]П1)eG M^ߛ;{N#:KW(K4wa_s[Q2NR'|iNi'aݾ$b4oiv&W?=)#]_s8u@UsngA^F|4R=H :/.P]5QQ6R0{:mzf.5ƌ?`1kPÒY'*~33ƬD}O 8920 -BSc W3ƬA} r3,H}k@_I}(I}[(F}(C}{ ﴂԷ/Egd C[`ǡ0pF0pƤY; HA}#{Nꛅ%8vP\V^_1``+.>Ooru/%ݷS0` *ɩ/TbF}B= PaZ 9-Un&;a* m&ϖЮP z] ,LFCX+o /:`@:`@\~{~qgkJc- & `R>6i/XcV(EXlCҘ@3MEmH zym>?`1XiLpq"c'j4&l0\" 0t Ё>E~ 0P3h΂j+ϧ)#)X *W l}yw\.m'.hԨW" 0J]ndW%.h]rڨ]%W]~E[بM}\+`*iV%cb㓲P.vA}F$]@A0REY. :w`Է0]D"L%H}`q0UEA.7$2F;`}"aΗ )%@}M.dla$rdg|e}s/; 7ʜ[7IENDB`gerbv-2.7.0/test/golden/example_trailing_cd1r2.1_sieb1.png0000644000175000017500000003002613421555714023213 0ustar carstencarstenPNG  IHDR5bKGDtIME%? IDATxmPnWУ(24"kU:>6 ?˲Zxͯt_:{oB^l_*+-+W?ovR{U,T|Jr%g%%]%M=ws_3{|^!:|>?Sʕ*;znGf[h.0U}"S-yoM"V3QGu>5}n%h{1Q^/؆sBP >}W/mx!@%n R 2@ rG3-i gOMͣUټ˚CD> ;܅>Y=uKt[n]LIW3?8#ׅM ^.P^?{|SӧJJ sݯ/u `jIͶZ_?HG_׷/lyoj:yĖ/h#\xe?'v2=<>1~;5Ry)}N!C>@))|r%6B$WmYiW_}sE,/{M,;=mᬍܙ}u6okΒz]i0_𿥾lԗ.7f~J RhSr u%-wTO'W2N{SӔ~Om~K;Go_JɎUaaR9W s&+{{wE}B|GC3G"R<ãgX v9JvB>$Wv=Jju !Wu#?VߴQ{ȵH=6=%.޶?6%eN =7nK,$nsj?}n{G]xoR:p :Sz-+7v_j~a|ק.5l!B޽-nJZo{r:,VhR^k͝/7HsS=r'}kn퓫-??ZhJvkKYJgۚ>r#A&}E>L%uSI}߯Mľ0YUmqeR_+)1SnܝE9ᑁSJwӿg >~D;&Jׯ{kZM+1O}j;ю}|ޣRgYܹteiG)PkM~Bw8_;.?ۏ#xַ@J8_QMu6mt:!E6{۬e5]mKrI ?q6[ϯdzb^Rסٮ!eI_g},$o$0l,},)I[t@NG׸ӣ $UC\'5kXw5jؒ` "V=Cm }*8YKMǙu;O8JRá͐^6ŭEǹƟ 9*Lk]IW 6]hX^g][oǞ%n#KGC!|J99JMi !ķe#GӍCUs.׆c}m[}/?h;k|f?};Ϝ/;nߚy^)޿l?o\f#WU{T8޽^-T2%h/ĝڣ?{6Rvj+i3J=yM5[8Txur06MM52>*]-JBɧ}%럚h] >ZkuMp%[͔ODRH끹>>WӧJt~AK>|sծ=Usۜchuϒ`;;Ρϧڨo|){jT5ΏXQ[޽ZՕEӽ'Ji|.L~Cg!4F\g>[FW$B!-MV:͈IPmG[k!jQF:rUg.ҽ$Fi B6?y,;W >J.3D-}YRUs ` 'z8b,@ũ#l@^$03$poս(ԕ !_|J,FkWЪ$pe\ oeWYeQL$ϨMgJea`PΖ-*``25yQ,s&ˢ LmqooYT%[U˲'3%ˢ7IZ* -[ I߲HA}>?ׯ&|%˲,sv'͸{V#̚(kG%gfʹr9\\@Y;P#m @.*?M^rwz ؾ2@JjI߹P%?VEyIPpE$PN*\Ŷ5۷)B%2u߱PAY@mfJrW>IR!FZOt|>?_BDp7yr =sghf8Vj?Qt/o_ñmﶒw }?seH>~jx"r{{|"J@F(j:3rks;= =*BYmz}۹3_3+5qT1>W@:ZW !o5iCM>@[5v;6gۈ !"~~E(VpJRw[ SZgLUF) wo; (k12Fj2M|ߏB^fh_l_%/G5Wl'u=[QWt/u:B25Ksy!@x(X/'ʶ{|܇1sّe$zWc|}z5li*ܵlxe$&58﹤>~8@xHsAaQ5L?w z00lzbhy'M_>`J o&zh|&j:k͌RUybPH6q km5:5k%_B!#>>g^+YGW'w|sQ6mo7Boz>zm>kW~1Gm ΦٿkCq4:n(a\;ඍQ&NVЎS[GIw;*`D5*hi8p;U}s_sEGtayeo6?B(%k,z|kρ{Gg+5j\?2(C-5[Pn:?ơoݦ[yfFlT:Oq06 0 *;ïdȖ ?ƀn؞k?7\ZJ)Û}[pί{M t3#6{ݻ"a2ewzl\c^ǔχ޳ۺ:,K/`Ts--_;T2@߷8nJw犸x/ ̒(9Z:&/))J%>z{}?J_2mkWW3yM[NBD{U28|w_i#=i v`03 `(Joaǎj޳w}?.i|Pn|8s(yɴr4hz'}iKשu̷hcE]/TuLJR{ҭҿ%ߗp:()-]J|ϦQ 4mo=ۖKہT@7UW|TxUϑ{Np~ZixDR7U/*M%j.[RD9UE *|s?g>ج|UFQ 4 $jbu-JU*` }ot'~@VF]/5q!a Qű\kw2 (ǽ@HFJoq+8CZu8c*8tx[sRZZu(S !%/ugĦ]#DP#խH'ױ8u\*`QZbfe[@Hԋu;'D"xm[%0Τs6$ ʸ0 d*`#0Oډtx% 3R\#}g>gˏwKU*'+\Dj^{}KQk$Ħ Dr@^ʨUeH mGE],J@HԶvQ׋wf"DլvE^:45z1{cq]zwD{6@V֬ҽzWGckz<:@fHNL#`U :zi^*ion|f&|=i!7jǢ$TS6,E+t,f 4 7a֋-mY>Z统wy!Xא-SӴ*,o谠o{ ^ٰwzk0>B|D9+$K'@/z_pX &(nO ) wVFImOHno^NHT@f X YzY^ǚ@n$:%D>u+$f%٦ &jG9x Bz*ixUI 1Ua6N Sؘzwm6w~C۴%sR߾.ē15$JSm01[JDJԔzX{9'7M9GS=zIn,}W[M[2c_tP'R|?rhSU ]rvӔl oѪa`^Ԏ00<) JɊVlSP%}SN iq޿Ii[Q$ `lCR=`O NS$h%jew:Q)$;b j}7K׋'L k/Z߾ݦo~,ƳT/\ @Kpc:6M]H`l?ΧI.jT oZkM!O?.M/( ie#6V|~Ro $JۋVlSrdH;ǞN dⷚ&T^^6z8kM* iO `|).J?H4~u "%!}S^3?m({t6⿞?/SB;frL0=D)T}2|l h@>zvܛ|ΞT𢖃j6%"{dǣxw4 6E+J rYSF:GE8m@mQi%mꤶם=D?~}>?zAc0ՆpL)9=Nsqc~$Q"WtTxN :tm0J7>2>]9>m1fU aYƼ\o7wc 8^={ (YeV ; 1i8XI3TYlz(L䵒i<DGpp3|logʝw鼸oJ={FZ1s0.g?jf%Dm)[s:cpjDo&O%>ѷM}/`H 2cx2g~[cw.cv@ޫ=58+͹sߵUb@{Swa.ߎ=FS;| =_BϏ_Ϗ^-?߬M!rnu0qE̟ 8 = ۬|}.|3Gz."F\Jwlf(Y Fg?Z]\1f 8$GXY3glg?|0E»t/gUϾ-flB!#5@ !uD=ȓn?.ϩߞqFB@z+:j Yv}<w>'Go1>;z\zLh-8+kZx C@x%&߾tVJđ}󜻗QD!.JW/Tg-K],Ϧ3gY_WcM|*EMF\Ƒ:\Ɲˡy'm'VmIJOwD%yp މSj.y@JIw|U5o߻}hiK/i\p8,}vYk2xwmh Ǣ ;Ģe$/#ٶW`cSw;L$/5LˌI`9o$P^3%@Վ}7K(^+m@ JG߶Ixo5cp; VejlINud4QUfJ_.ɨ'1@/w+Y%+OF uWeI'v3$LU{\IϚB!1>>?x~?M{,G/lEha2oKf* g ԺpmUP]oQGC !bX9{Ww~[=[+P㾝_"BL\Ih%Bl],j xFOm{`~{zwLB|JR*+%Go%Q[FVp|[v$0K%x/` Mv M5߲۬N =fܾYe`vWeF8DVΖ-6%w[3%ˢxuڑe/KfHePSqej}^Q1vd @GIjoY{m|qnZ]s-~x~@O3]yks?Mgs阀#&9z~t~$ deU"rԖZG^}>/ٖy /U8[,%:nZ.QS溢,g.=K|}v{5z'?|mηf(Kmt> :- ~ggo-':-WB nOP'r:H&T*UIUrm7R3Cj*u}qnY%ζ6 :! J|N W4o[Ἕ.@^ = ̶*w_퓕4Ou?\BT dY>J;\);ۧG+@mGpĐ:L ܪcN y  x,I%wC3CjywC g 3>KgnP fұO&IY'@˵@Y_@ `ͅ=UjպCFi'"Z)iVܲΦnG䞏Z Qn8@ L*`ړe$/#x H^F2@eܿpSIENDB`gerbv-2.7.0/test/golden/test-layer-step-and_repeat-1.png0000644000175000017500000000305713421555714022756 0ustar carstencarstenPNG  IHDRKbKGDIDATx0Ed+EDfHm#l}W՞a6WH `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @9qͶ_?ǵǫ>Q6:5+sesl~]6?gtM:eQg|V<܄s7ۼ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @9qͶ_?ǵǫ>Q6:5+sesl~]6?gtM:eQg|V<܄s7ۼ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@l^Ne܍7YIENDB`gerbv-2.7.0/test/golden/test-drill-trailing-zero-suppression.png0000644000175000017500000000637613421555714024724 0ustar carstencarstenPNG  IHDRKbKGD IDATxuP,*\PPHL5`ᅵ$$a8\WUp[c^?~N GsneG >pY?$[8ugg&gyo%j5`v'БQ(b(؜ @ )y_)bw 2C>`r )‚)ۂȀٝl \ AQ U,f %؃ݐby`s/s`}0[Z9GCփz% 0 ı\M,C_A eHYTCt$/ U`+^h^0:8u3TACfr_<;SC?~#w!Yy"s{p< I`6<3 Є*hF.hYB&@ @ *ŀ>TnSK ޱVSodꃀE< AES2^`= ? ~H|lv\].ːmy4ɀ.3`ˊ&&}|9r@Ui~Ȁ @y|/b2` b%*lh߄U/Wqc\?Gz?4b2`Wܭ@ ob!hs@0鈧،a.zCk@$`*iō;ѰpD!h4 ?m #KZڞ wA@g)"0̗#a9ԿOKf \.CG `r1s @2`r8|Q /̀u=%~ܦ޽L_|#0{xzCg׿ 'P`1 ` @EX}>Y]Ϯk }||}߂!@f=hۙ h4 A&` ogxgo{6X",p:Z=d X-Z-`%(񦇉oRI|k-sJ|kL[%][eP⢕ķV)q$5?~] )n;e0 m+0s'U4C,O(*%nķexGA Z-ր'N|kL[gCvoRI|k@BVZ-:`5Hye?0 'sT9kd@B8F4@ːRI p2 Pư3 A _ϐ+i.UJ2o <?wU-m%J[&2׽͢}V[e_fG҅咆ķV)q$5ؖ 4_Ձp{DkKh? +`IigAYk5TG%7Ŏ}LD/LNM<aB Eň|LkqQ,|_n: @7V33^5[MH+` _nٲ,aW}`EWkD߭J7wB[o pH5[V+[vmZ?2ӷ(rdtSt*X1*_s.oMP]s`A"c&|S^`q"c|ӹ~xSonSjYͺXp7DB? XNSТ/y\^1TGLZz,fk+Ce8];ȷjk9N[OK43z+ɞ=jcD(}yui"]a7U犯X-8wAs7򖼮g/}xb!BIWBouyIޒP~і'┤P7./Hn N;—j|oݓ窴 ߤ:9]i+v}Vxp7aeYowX&7n P. 8w˷p<=}#a:*턘TT%.|KyԪk!uȝtr!x})|z%t j|Os!ZH_E @۬pϧ\+ѭ?ۅN|{WT\3TiC&8KRλ57H)F. obl}ox^Y~HxMa^ q-mn$ˌS(vmOzmzv -!wPx;]%D*eС>_u09 T`Lf*^`xdwڃ>0Xd2T LN17Gǡ-*3`&i'']+sli> S>PX<>ѭﯣͦ" e"{M>-:xeN0pzo2Y޶+LaAvV12s QePtPce@R]mHon&sj`Qv*&Y}Rup7# `5pu2󛈮,W;ls>6\ɒs.άw:ʹ/9ZFn]=]Hf mN0#"!/ 5IZřhF\2sU;sQ 7IofOa[r™âҍ4cTDpEWfn ,oCjn<>, Zˢ\`wTf}#'zNT6vROAW%O\utH6ޯ!A˽3/?^O00I?Zj1W $a,&AݎdBG0 r`V3\85ٳ$k v8nr h)CEtNX$\ug}53p#369V1C;lGɏWxknJsM;y>?vrhC&hZ& vyV[}<~RF=%&YW5ML|[Z Y @v5h"x\O澚;*-C9V ?Qn5kA;4 oCovy}[gmvhЉMG߆-KLNgp 3:Ӡ ;e;=wr6g?\ ӈP0V'[9gTt"{k1De ܍ .qJkqƌp(/P0s$=gG݅nqOQEV})сVvU,nMU},Ƣ7d4 p!j(# +X PN$($+$ W8tvL B :gܐAG- t!AGeDc) qn 'X~[ϓAoWЍ% +:43 aޖխ$'Gn,F&a8x,:ÊPֺ qaYk߷4Qm3>5ɧ!D{9i>V;gΝhs&M*I7fɯf=,]'UZm& wGh($NF+D4``Q& ;꬀Gθ`, ,O1U`S-~}_WFr!>%x+"\qkQk\Ogv;ʹ>T}u-,mT,e\sY.EE}FjrY>V+kq3.kLʸ` +`@00 gH(fめkʸ`, M5¸`?TZm&YhszڵR_+s_;ўT}kQk*Wiit.Rޓo]kQڨ 5սC4}Fk]^>@SП腻􅱖8& wҗp[C=}kAX \Y1\:rpZǡ轮OKMB!vK\RN\״Wd\0GNh螮~̡ V(6w+ P5C ODo2+J3V&U`^_SiSO;í[ 81$[_:'G "`,*Z׀_{ҧUxb]N6u vO)zB/-rtı ~yt;ېj@ \qVyb2#u2x[#dNm4iMo[ 88倃O:dp4oC"WHk]Esj~uCM /uUQ *-+lq` Lu\YpW`ᨷEKg.~L~"kveg4iҷ&L"ς,N׬{'ksw;g: 'Z|ܣe[Mjo'{2X>G3Z}W{u Y~Q*rng x 3v ji\HߌZw{RpN\| wYh}V`#Y^֢>Q]jDqKw?M*\`\\\dS0} ?pOUH.Kpa)I7T׮\mT,7+r&`'rB/a׮AE'ƅ ^XW.{0 K[; E$Kp:7fQgh >T}kQk,4}: ぷ)ڵjQ媌8?L,[} Nd"T&:s.,rv h1.d0`j_B `@/qXk ie> +3. 0O$k#{@&+cH_ /7 &;D>|EbV*T# $ҷ5Y՗ҷ.*T#%KNJۇPГ,kA1CHD^fIߛ,WAb8% ]?9Ixr6\^nT,Pgvk9C55h@{;kտP2%WSO;>o4Е-}W֌`4߿q߮&+.xn{̤e+RSr{nW W)fYӷD]b["{p_NiDŶ~r28livdb~}K6z*ܹ׃cn;+r idmfeh? -`Y )up^xۢs͎sk@1;uaqQNUקSהW| `+ 4qٵs\ NMXki̕GpVq5}YuJK]z꙾G \%+5suQg Yqݗ00K p[$yQK:Z\<} \ֺ|.dh jWQ]\AZ|'y'H>2RX40+KFM%/x0{KTcG*_ٙNn.;@&+Ŕ OG8\%wUv 238 >0rV0epO+pgVv`T,mNλN@M] 5'Db7jɉۨM\;|)5}u =i.]MNFwmlϧUZ t/o5} 0,h:{.WUBӧ^b >rru\-4^ĴMXq JK :UߖU}8i=ȚqQ/ٵr8雮+0 aD(ÔpW7 f$/҂+]DpfႏN\áW_F*vנR_=6h]؇Dngs z΀m^'힝O"KXxs(`_2_WMF+ze'ԧw´{kddP@W[{JQn17j[M\A\ r}j=ji+Go, 9t޵kY1zshh\=-P.؎ ]q]+kߧ^m~D}l\|5\5-Wn&(^{e|ۧ?^]-I_HtkwplؖRgVy|y/%'2vBV=.|uA [N5Ml?%p5wGҷ.5:;y>cn|TabH߹wdYv;\hU4SW-MF>o}BtO7+>ܥ8a{sNgHߛvr&af݇G񗿵1YSӟcJ> "/zg̚qo'E"^"Ce\~t|&QsO>GKun&} Gw{%֩ yf{u*bۂruTH`N )N;G(C|5ӷw;טL)wE#?CzZ|^2|(Wz:W_\n.v[ubhۮ57}79O}E@S>\h&,Y,3@\eӗM&ub/ Z| ۶vZ“8\}ߊ_}oڀ-Қle7aENeh7CbDxOC2yѢO+C#9 qƦ1 HI|в2)\d\P a'NzT?O q5s@XF pqAu ie!N@ߩw贏_1 1 b0a_/hGLZ4nSX?_qּBC2\ 1r8Jk4 0 8Ɣa2}Ou#BPF< 8«A)BP9 8«A)BP9 8«A)BPFw2(1E & `@0?C9ePb"!&_Gx՗2(1E(04sGx՗2(1E@305sGx՗2(1E@۷ /ePb"Qfߝ~ަu> 120DsѬoa/dQZV7w_" ]U4ڋ[ lif207 @x#i}ZՈU}D(Ýγ}CbM7(D(. @@oo\Q"pz-M7+@4C20P*%7R7(D(}^˞+n*Wh"e`@+; E M0u`gF{qT5{u IK??8"{l';T;¦5 7Mp'ɢF<')Gݞt4}%a&7 D2m<8 $  @v)xs[e %a2K  - 8).IDATs>1knՊO HӍGK) h"^# Hk XS2a42 Z'bgUD7aU [՚mj\ d0FF 1w^pqo1ch__P JL>W`1 @4W`έZ/Rs-p &h 4"R'; @9VumYe\v>צ 8-%r܁`̜UK K0["GgַAЍN!Do#Ўk4sIet)dBVg)hv5;jBVtzAkV!pBW`2&tQ'61Tm\}3&%I)U6(Tkϛ_oXDȨR!꿌 R#'ކtN'GNE~3Y 0܄:@$Cauò*)IENDB`gerbv-2.7.0/test/golden/test-layer-offset-1.png0000644000175000017500000000377413421555714021177 0ustar carstencarstenPNG  IHDRKbKGDIDATxPEQ SEJ)qBG4Y "7Ϩ \i=X׹= 3̩ $h0p4?`D0'1C `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ `0 @@ piZ:8u@K/F2?@^ٷfפ}5{6G:sh }:v՜uYqmӌb l>?@ӟؼ3#=a' l>?@F{$~Ej. җX;p* n6 a_<@wA,A PCo A'nn݂5L:e+)<^o7΃ ZD8u||o<%W;ʥl㖪!1'YT*𾃪YOWUgܰIeg6qp `sD*܊ qvP2$#K O `H   P+^UW0$@@{ HaMT `a]d{ e R8{T h_*p%hH` i_V *}tW#:Q'3 ?x_O+S`[  5\T0c,LRاg9׿ë-7a1{yt{-v`UI` *5`Yzq );LzoẀIX`@ LzE^@@ 0@N E7`x@Ll!ɷ;D/ShNS x$Ž C3gcnKK-*p'1"uv-u{иޮjMzKJ*p w? 8T楃;}c   c.k L1S%ncHt>dvGwM5i3x w? D@? A7M,xJa7DUGR־X8BASCe Ѓg TWJ>dL>GUs2&aִdQ׀oOmʗ`۱q1SN',UVtЎS-AU%}8Ҋ5Z4So џkPղ %hk e;8 3Tj x]ʟ=M1J 3n?{+3ZK`t w\SGf\S>%WM `H l| CwKld 0$\SWp#|d `|J_g ݳX_`).۩S{tgёHا 9o Xi U[7\S+wAt岝 \drn |mT%hH  ,m+4D ,AtVֶwÈ:4Q_i"̀z=+3T;`pp*HjS' <&,` K=0PM%h&28 Ts|T aSf! )@c>l.IoVW0$@@ T0æM\N}SGQG_N,yMϾ8ZwCٿlZxJյ-U* aj+_8Y6Z8qVv+ i}e Lq)/vX߫Kqd10 FW# Zs V xrf xnu5cW]'U.h}DSGn[p{ÈjQ:æw>MzK *p {1ԔemkTc ]C;xܖ `` [fxd  VԩaU)3`r L@Of@P5%7 I/S^" `;q{ lSif^5,Ȥ6աf(V}E4!XSj 0P@Ix|E?FL]axJpJnmSGn‚{%#"0{S;flẀ~k[tO0@or;,9T$r-9O-[K@@ ]|Df@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$@@ ew\. [;>'f@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$@@ 0$|, `H/0G\u 6t_itږOfCX ZTm5t8G D,-j61*qdC)%D,-j6ՉR̀G jVWoݕ7=?h3Y]m5U4.`%'s_ A*ڼ͠fuu.=xjrwx7?hm5tum< ї]qaa]KsmaBŒOmOvJn6)n z"@UtyAD]-o|8eΤ C@`[ Q۹P'M A*ڼ͠fuuVxܹo3a5791 {)Q`E,-j6ՉvoTX ZTm5u?mO) 擤VRɟ#L\l4+]A_m5w緿(?n_m/GԬj6mҦn(` z, A*ڼ͠fuu3E,-j6qjPAЀS 8j)DjĶTfP:QP矲=GDDADjPnKW[ Y]Y] jvLO%π'ZݻfP:Q찌矲 L?m55ARF򮑈6Չՠf)&?S.VМ# ";{08vCc'Z 6fP:QDùKS0o1P Z`kxVٷV6fP:Q쌌=kq[}PfSLxƈ|u|T2?5E/e<=O?p|Dm55AVx~.X ZmլZqї$<(Aftys5.y%Ym_ھ# jVW'jVWevfx~tpOYzھU+j~ϝx]%G[5F|]`a\R1ü\w]VjHgouԙP>PYX 9K}sy9^75M,vJ${M88I}SCv6ʝ *'Oӟ}j~*Y}]6kG495@+Oy; `_?Gչ-o}7ܧ9v9Hے徥r#>Ad׹1?O&2= $~~ߦNMvSO%eL%,৪ ҭo_aa__RAgJ9Uu1:Z>1Yϩ(5Y1k9%78:JjqN\Cj vI̝*TuY5t..cZKXrOp~9pVZs jmrjicLߔ*^.ះ"B>>9xhj'׫@JʳG=辩N= v=YOu.ѴpUZ(;M)kY'W :)J?WtI`_;+q;+奔,wY!ȲjhqFGnYk^Z !W{h 6Yj5ƱJR]M6˙7}hGpY7v>pn-;>- .KہWsJV#"[R>=?L'ZŮo5:1l\ݳҎuOߨ F] yTD\g~M޸OR'tirtNΒph#$NqkiQ҄ v=+w ֳ]lX_W]kǖ%n=KgC!|{|r9(9rMi !ķ׾eG?Ϧ1Q},golƷi߷kd|VU>OZޝ蛋Or?5#8*e=kÝo5R+P⍒J's}kkkZ?NN*9u4]GOQkKgG#gٴ;;9UAO1gzt }==7~=Jp-~T =U zv#$w֖wvtόNwEӼ'Jn|n @g!"7z\ǣmZF7H4_!BG$-wTWCʓմ `K={u$+G\y1dNfA!u{{sYjQr.{]u6kz7אRO@9ѓei*NOr!<CEr!Bo|9m5ᫀjU{߲4xӷI߲4J{A@_I(߲(g&#%00OMGKE00<, \1eQ 48k7b,z-*`eYΓeQ $--7$poY$@>&|%˲,}{G gZ#(vfc^5:•vgm p V1.pw9Okm.F] U(JJkJwJB%ˢg69űP LAw.@Pjm"6]kOҚTv5'v|>?^_s9zjyiQ:},t=q<:Ɲ9SzksѶ~.ʽ7;gE0M۟Ϯ0T?ׂc-2ǝ%y ܎D 5 Y)!ЗϦM'='QAak zat2u&k~]l_l]r盻:g:}D}^\u|{Zmv[؆]o;FѼ!gXqhN~iRm%۟J޿N=u#>CWB[?OgĢ|awUSQ2OZ5wܓUۿ s-ģ8P ;7<9K摚6gjy! <"\u ξ\ʽZ|TM^ԋCd#7hU prΪ[2}N5Ur_ݝ>Xٿ48Us&WY󱦨ףH”˝-k7mN_/w ̴Q)F4QχT/^|t{DHJρ `s5>ZJט7E4fY%~?X}s.cߩNs\Om77}6ewX{_G=w5ض!R })m>j;mKٓIJS?[Ch-6ُIָr@a\5)RLd{YXHy18ֹj!OEkM'W_Ei%7r7&TٍJ}轥ת޿ױȣ0}Gx0~Y god݋u g[pU{JYD$[Ne7 gMEi|[s[϶Q !Dk*`73 l:Ik3w>\Q 0%Jځ_L%;r/ [/`vB%k;TI KK-J(Z?BǮJK?n`6TӅhU9@]ux\4"Rf^'q~?vQr弙з!k _&yU(-\4sng&7eޥ0x#?п B܏:ϙG%"ʹ !U7F5p5P0 *>CDo7YDL[zva_z-rJs>;DϘ^"J0!}8"|h [7z>-z7D5ZC q35 q/Ӷܷ4*؞^~˃;mh䴝5M=%v;Fo7L[0vΓ%? aQM[l=G58?@(iU|Wv^r+q[5"'kpűSrc9C!Ibh>!ēQ)1EmP/OT3i6ub?wקt[j۾_ΝD;V30 LƳIA< :mC=y|Q:,K,txbL;L}w<ʷ!#s4l(۫0|0?t&W{}i(8OsK `COո3{>{vHFaS5S,o?^eYQyj})È% >kAlZT۸r Nj:k{zVu^s&͹ Ӽr8S=5lw׻QBĊ K_s|N b83Zbx%gvX{mK[퉿QkvO::*Yؗ\UG%퇣Rh;Q#9iSS֡x٠>#>kbu%+=hXw>,J5B<Y/Qz|?pO~5l@%mYI=(|~rM+W%W&$ΪGD97uaFj\ mG;p߾sHf#Уt.EP!D8d:U;uIOݯB(a`P+/1 ,a߯JRӶvR=OM+B<G-xz=H7wڶA=$fC g|*᧩^}[H<@WO7;zY~U >>|>?]!"Z%΁ %e%%%hڜ)zǠ8U -XOmi}*sGmRvN{|')3fzĞRBf&ڳE~zJ1 |D7l!> y0v{"tmWr~L03 Wc@IBH =A p/ض*eRDg \8a.Dҽg< s ħzζfu64靃 循SNRU{0mޡR>OoJFzDgz:VϯeJ^]ж2W60 "?8ʝ{s~=ُ9;USLh**|"TնΧgnWdG9?6L %B/` Q1mcR­\BTR8m Қ?˥hHF~X!lG}N0Eh[YCo oҽ(O%QU/s%R4p#'Ak^7Ǒ}vo%^'vңc{u\g?@ ,%ϐb*=B7=&c0DjBspBcW@@'jͶ}؟O-!ޏ(;UR2$О^71}KTz$tot&eQ)Z> N"}{$to3Y& QyG*;Q˧Nin:1w: (tuwHby*`6rskuj?}"{3m;{je8\#ʱ =KVYzzϕ;yBjWUw'0<Ƙ RϷ۾μt톐[R ܗ'KE=Z*`(IHTE&~W ;jI0TUjvՐMR*ҋ*)d&B9zr>9=y}3 x"ayW z?gR YHk4 L,%2g\|K_mT{_GSju7}ܧ+(ⶦ_/빾}!"D<xI!\ae_["T%$-J#BϏ EsM { þ\I#Q2k;YS@WƯjzVd5B!D|~.-J1r@AlKkV mC6Ĵ]n$PWώ6o(B2R3r_v9-B 0}(%@m}2JؼR!Oߏgo֪rܔЭJah/ x^׃+2Ͽ &O!x/joF6Q"t'J#g0(_m^o< ='J[o߆l!DxT HwJ0J.<|W7amڝ^,{ipõ$y5[e ]%z{o%[ t)W[- $poY&vm-@`bg%i{NEL( o5B,%ߴ:;wٺַcGFN8KW$˲,mWuGMz}Z7L}nу^Oh_׻t{K~/~^91{M `Is^r)I W:K.{~ξLs=R%%Q %|-J{rף%8{ռsO&_(_Dy -a`nq2TV+- i*`#`2@H&KyHjˮrq6:`JlR{-g9p97~ygH/zepNiR,3rLdJqG;*[}F<H og%UGz;%σ*z6&]ٱA'<Ⱦ*X'߷rW'%t#WN۶|K;Β~ۿM':B'g i:-Zz- ~۳Oϖz:Mw\I :3c@;@@"\W9Uʵ`MGRmTA븏{-+~.T'Aϼ mK=ӥSt:B-:Jj:_{QB dY>r;):g+@m{pĐ:L \cN y\  x*I%OC3CjyOC W ~%wK.::+t)`Hi7$@˥@Y_@ `ɍ=UjUCFn'"jix'G˺dMszԒV*trN Ў`2O0 d$LF0 d$LF0 d#IENDB`gerbv-2.7.0/test/golden/test-drill-repeat-1.png0000644000175000017500000000364113421555714021154 0ustar carstencarstenPNG  IHDRKbKGDVIDATxAN@P99,,!4fvzoƭ|*qy<_?c?D@݌eO@>L@{P 2!=}x|}~>?O~ 4O9q" @@=`R6$$,`Apjsa%(>Vq  @@=`FL!2mHp`7P{`Vp&uU  @@=` 2nԆ  `^lpY(ݬ,mH  @@=`FL!2mHLaPf'X~ `,hNa ``Y͑& @@{@M:,3 -XfЁIX@Epj: `ɓG0ja(ӆ- dOZ~%x![E``R+ iC@7S8N5N)0PfQ 0ja(ӆ&a1b`J 族0l`J 族0fy+2|2_>DG0Qfl6s4|,^}9dncZVb4gL1?V7`ZVb4gR~]Q+J,,>' `LVМ06ڐ/,,`IX@g!q1 @,G0ja(ӆ `;"$՝ 0` З"  К6$28 5)0P`t̢ 0` (‚)0P )LLº,F0Pce5"[}[s;G0jT\[s/(rYn p/&ae-q1p@,G0ja(ӆ- pQiX"{cIڐ @@{Wkyࢴ!Me@Fa  OYTA@ EX0ʴ!0IXg0>`3@= Z<0` rgІ=}x|}~>?g} `黑 `>' ``FS`2mHpe$+z/21IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_sst.png0000644000175000017500000001105113421555714022555 0ustar carstencarstenPNG  IHDRKbKGDIDATxYrP׍@‹*~PZ ( r:',,'9{E/2}_d0>X4A9мjTЀj?δ"ws$1m=`2U[k8S~|uLL4%oh`7 0(`$0i)l8wOpᣧ{ 9$e `h@ӒU0 ,EsO !;zO3XHKЀ΀*{*̄EωJV4kWQCZ\)aY䋯2=H ;W>舾QmTЀ04  @knY8yEc`-i,6|ËllI}g8=E==ȩK"JOF Ѐ*].\A%,0}uO6B.SW-G( =5vՖ#<#i}qݵ >P]LXFЗ5C]T5Ӹo&,0=Kֶ#Xp `Y75AobX$[b=`h@@EM:3@04&WZHs%|XWF_ګ߾?}?_ `ue4^2MзNE @o9$04P6_K =Y> )mTk/>}rՄŌ,?Y[op@]=\{8KzA}x}k ?D﫽vOyn_ Z1 ^ɗѩwCP&횧o0ud]}Jo0d ]oY+ C h{]u> Xph @o4Ssr\]'xOZ!ATH!F/hw_nk_h`ܛ9*`h@@?V .X\tI`q63ā٤7 ,E44  `h@@@6 `x˙㔬:p`q*7sH^TEk~>w,nϑ_ֿ,bfxrI',鰶 /v]']'* [kľ}8?W7|cct&&a*.~ޟ-4F^.TsxW&% {~nhsxWI&2$>|kn,Rxv߫}Z{FQkN@O!D.]1%>Zxݳ3.QlCk"- z f{s7pL {Fp#ro Ѳ`8`o+&?KL왊X٣cu) @Hj-ke A8G-2YZSᣧWO@̺)0y NQ}@TCe*`SV4VsҡVa9>4EpK8}]PC wsRC5M Kdx˒G# 8t/*`HpZONnK||f1ȅT @+T48#GE/\ЉY+΢5D#b];GW_ܛ3/NôkYNCw`g;^UY$a;{4+* f):y251 o>{sGF/XJr;+?zP:G=9#`EÐtcXqЀ04 af++TY@0Lg~^"cP p۲BCEqlf6%t+<ׅ΄eI^ap&S"\;X\=L\sօe6A΍0s7EO-'!0VaH0ߛz]˿U/:gV1pL-oq~T{G @2!:,6q9a9pmGJ4?`9 RJme|!UF>p6 Ɲ,+iBz1: ndbzſO? (t\T{1վW ZD|g<Fwa[1- U!A-w4Amn6L^XV  `XX sQ2X4ss`9 psQ$ժO֦ V/XG-I W uwVC sZ "WC:=pa+0,)J@aH"'J=a` rObGOzdØrEUO2!YŒT"TBoF3Y^i`_T+x僎o072\<|nϙ04  `h@@Ѐ09 ?gYجXS>#?a>XTW!YpVvg๑GyV*` ?wbXKW>4A+[X zIENDB`gerbv-2.7.0/test/golden/test-layer-mode-1.png0000644000175000017500000000575013421555714020631 0ustar carstencarstenPNG  IHDRKbKGD IDATx]n+9P`UEUd`02n9NDd\o7 ?~ouK؂Om+XEMmϢR#]X^ҧQsVTxת?,n0LwnGvi\xƏv֖چ8/_?~99s&dDoelǐmN!cIoPVL섇=^gI䱬myi~|@N#?H-uqXbRT!SSB1(  `:HI2bKKR$Pa> yX?rJ## Q, T!Ei 14З/^rW t%SfXf@SxyKH])!y]dxIU<~W$my;`t2yxCl -?k|7U+і0lbpG i<ҽY̺֪gP]Sz;kNkɕn[Җ/z혎&^7[\|V#ht S<{o cnE>mw#~z,/H' d m1],ΕZhG{ t6}eܓ^С.|)֣Җ_ t4goh`2+ANpYЭ|\W@m6KX ?HrE^w}p#e Q9e@AEu^ T]rĒd$DN>GВE2 zKHMSlPφsk)z,7AV)jKۼ ><ٛo$zm.oMmaP—vW-O1!;ipζJkfg>6&/z;& ?C B?o#(wg9g8'-5Ϊ>J/Nw&<{?*XyOkJwk<5cTimm|ӘMl \*B="]|'diծy)P/|W%9&ߣf2m@~V*Rs&, x! ` N|<$MmϢR]++&3Pcvsx$ Q`sIENDB`gerbv-2.7.0/test/golden/example_pick_and_place_LED.png0000644000175000017500000002557713421555714022604 0ustar carstencarstenPNG  IHDRKbKGD IDATxP[G(B b8F8ډ5&۝I2s{3M;{s{;tvwg&ٺirIY7zMn'CehpL18%?N*~=_xHB_yy@kL KOz/BlH^?綶Q]juTnn}).޴zu}͵ 08]#}5rK]!277#"@g`TVV.[fvvW;EġL<ԩdh|rB>ٵC#A(vޖ]-{z^q(ZUUVV/heeX˄kl䓋tF(!a.߸qq̙eWuUUww411$=wE_iӃ.O^ 篻:L&_snnZvQ.sά7F>y>dQ]BezV*zvv2}%w=}[]{Z֡4?0llRuCBTW?4>~)QŶq㾉wlJ XC/֒c@'@=K֭_ػ\)˕ukܹd44KbC@2rO?#>{O' _<}Yeb|$Wqit'z*ɿXbY,{ZFFzB"V諡H[i{x B'1P`Srs3_&D/H `w`I2w X}GtWtNA#( <Ԓ ̀`٨t Twh@i 44K8GUP@$) h0 +yE @"@L_#(BS&ߌIveNujbݺڃ6[s>1>q[[|]j%E(p0{sx^(Ꚛ55EcsB}zW\5ee[`Xo7o^]f/֯oꘞݰsMMO>1F~膲L9kly +,,߿{lBeϞV2s J#jUm2JvV̓~͚-99w?ָoyBAA޽ V ,(GvK މlq8|3YfUUܺ5MO;'l~keXBBxէN~jg8֣yy+rOd$@~ ZyrzgXټЙ2Xv?Wӳ, X:c3KA [wlCU479o|at4ZpՄCUd9܆ 20iNg;1 @ `ue Hm0zА|ǀV+4& Y*>4ռO CQff0>Z `a3MX5P#ﭬl]l2իBTUbͶd2bUSZZ[_h~~إs^Tv[ynժ*98,޽*,,78#֪ٷ;ee99wojmFaaB˿n]CAXUsree}'q'JKkxRfV͛7Bk֬"4Ł8w/*4-% G##B!B"b!d*,,{xp=y:SyΪւȮVr^-.3-j:B 8<Ҁ1ڃfjGa;4V E Z@_WFB H_0Qs Ls:ۉa0H@ {mmt! }a  5 7,V 9d/DE0{sx%"^OQD/SdYf<P%@2HP^~oeeekfg'ߺzS,̲ZW46]֭uwMI8 wdB_}Z-{z^RjOMWW 7o>|˲j60yLv-. rW_BLO;rgl~o˗޵k+q!*[5J<nUn6[z<7d,B\}?Bcc׼J>=a5ϴZ+})uEG}} >J+Z@FKWo߾.ق6Xzei.߸qq̙磟4zǖ/_yr/owu06 3S^wkk]jxBl^"N8O뮼Qnoٳ繢JRPPp$֤qd˖XlK㈐硇l΍ht༼wϲ{\c n`]NM]+ܴ@dGŶq㾉 FW& 64P2kPEeekEŮɫP(uG*DfkptCx w_-쥒&,g9 cfc&.)u8N^tf7Lwv@rduj}'Sts: #}T!Gk̄H##B!Bơ@8DSS{Yk`H}$^CC[gmO'\2).1@0x'C/̌B`dU$ Zڥt''wv[iss3Dm`'^"^#?CSw_8fp~~s#r׮z&+D&=m}z{hiW'?V 0'D('i~XL "s[bÅ 5;X򧦮_[2Eʨ< V9l?}-{!P0tΝYŦl~o]͛=ӊy3¿_̓qoQ ㉵/Sm&]~bY,“meȭPϞ=v\vs)D-.==l{^1>~|۶DŽ;v XSxb˪T_S?0|4Jy/W+K̻ apZd -`hgmO7$P9'rf+?!DE!DN]ϓwɰ8KE1<ve(`idٳ?L߻d.mif61ϵuDnfsڵjkSF< Űn]cmAvXvHLd0"]-G ZT bXczztÆ55=y+Efr zh4`@yj=Y,SS׻64GAk(A Zd2_7_ IGʩ:ۃf)%5~_v_`dOA:)rtjZ^^MΟYvQ5öm !vxFɧ*l&``zzM.pVƣVU޺})YHd)I+qTŠANgɔSZxB puuꃛ7--g]&joE.mdgQj:aN#wb=TR{/_~{׮E>K6啕:&'B̗S)cRyeހ0&'wvur盲ZW,p~'6mv{Koj& 08C&VRuwYl7uu = >X+fgo[+]%z%% ^abO }嫷o_g0:wݟw~tEf~' _a|]a)>Kwkk !:U+Wɾ}]O~Z_ouu[,6Yo|d7? jND@ 8oҠȕrF/TN98'./{x뽥HnK nV?/<B>ȄKf6\#u8I_g%j>gcF:nJSXVR-B#h5nC NXПy3F;a!UNN=:Kh!`MAyZEN`wB%9pt-xRXXn-,19E@=XgQRj]q~3ˬ/‡ f8?޹3|&@ XbM`y>ߓX[fDl|xhGRJʋH_@`Zp;Ŷq㾉rkˀC0?"4|pK2@`F{[Ν{Ivi0|JYMUoXD@ < ML ,2bVp« >j0L i4] 5׀l̯G!d 1~%9;zt@ W?]K/ctA1>CQjZP e!#aJZѾ7]>7S_Vdɔf͖x~ޣVUm&.X`LyK6mzbmm#¿rDP]cˋIIuAp*ZUUVV/ 8fp~~s#ŋK, ZYh qh_ouu[,6eIqF)gr gA50 (|km ܒw̆,|˿Q}߲fضlyd/*.޸sXK ЁhE[~xb|ROϫvہwK-  ^ЫUf*m˱NX0 Ԭ_>Z0ھ#Nt0l##@ `$ ې7 AG`ZW)h|ֶ~㡇~}ӹ\.p18:v)tĿ !NOOGF~[ZZ[V:.L$KeK$1wL&KBYE^EH5JB .D (IDATCQF;;)K\պʕ8m+hfu/nڵ GF]NAh_ouu[,6ed*,,{xp=@a@໵.\x# ̌ ;8k٥ېKjnD-#?<"h׀W Ng;8zAÀH_GP8 @/`N > `$ @ z;t(K Љ Z@8 LO9< ^VpO,`@Z)g͚-<|CVXg6[wLW ;a0x'C]]/(?LU+/uٲ5o]~`MA&hut''wv̼O'2Rtno䵼\XXn-dRlnUٟ}{Æe>Yk7 ˣ͖߫Wר@ȑ]-ۂO۾.?pmЯp͛ (%в;߭=t«vپmcB;Qڵۚ/nae'O~6s@9cmHl`)1ob[l#ww(ɹ+y ѣP0c xH%0MN^<+ fΞaDBe`|{I `A"Ҵv:fk]BFJ^t͹knkjo=0o*)u$4tfhLf X*!HPO+[~a޿B_r~,OŖ)3Լ@0.:1\VJ!I hcct:ig~Jcwܦ%y`"q@cKrG|NJ GB#`@^ @ `$ @up!a m#tϨ@ Ƃ";ҁ;@B8 Ry˖N!55mbd -{K0,pH@  0H@gnI>X Q&|" Ɣ&|PYӄ@li d}JIENDB`gerbv-2.7.0/test/golden/example_polarity_6_vbat.png0000644000175000017500000000742513421555714022300 0ustar carstencarstenPNG  IHDRKbKGDIDATx[FQ(jPxQ`.)@k=t*R;zO_E           piOp,Yptj/[> Y>| \ x{z-띩(3@@v?OY7ۣї8G^hUW~og$ 0IJ˜ ڪ7!u`s,Z ||Xyف+9@SZ c~>Gy{q:k &U܃;}=Gڄ0|+ 礁fY8]YR\vV:nRB:H'n{`e ]ІYTQZK zX؅@@@@@@@@[QnusiY @1-`b Z&?x%Y L `q            LcZ& ļ^?C```````>Ľbfv!      NX1.hglow3=x9؋%h0m)OD 3@@%-3@ 8"s຦@LL\UzOu>Gֿ;֟NP9`r'G,>Bu)EA^Tg+sAy/_0q!]s߿z&4]N /7V-?N.6/-N?W߇Y.[5L:JMu _ha~fj:367AǪ +ۡnwxs,t/<ώv6[tqt.3/nz[}! c{t^|=\qVu?[ph:se֏"ǚ/.|k4Pݿ :}F}aMV羽pn}T?Cvq /Fy0NP8ʑ][W\~So'a hY~O5m\O<hYKЏ9t[. Exڸ|&9w'w/z #TK3dAt^CGk=cS4i;N1/}Qt'͹tL.ծzިU/Iʷ* pwGta{fMe[]4~v/Y?f*d,~p:/C̭φ~\-_O<-7X}<#>@8w @#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @181#bc"KH0%|G'50p炁sr6# @\4p2$p4fYΕ=g 361 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b \ܾ?|p3~| @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b^ F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @1 F@#b @۲,ﳇ@#b @1 F@B74~ԄD/<_&c 7w2*)G+>qW&Z|S_FԷv lo(VR_}"BZ}CMutU_A"0 _na~V7LuW}w%ÖdZ'@X\,_xy "칗LW{@ "`p M%Ұw4`B} VوDtZܻ Dҿ0e!M�ZSaq> xאV%5]Pd=:sԷW^}xo~C/myz$04go6_"`>ojM &t`ʯkF|ZޥK =Vmj&/)၍X ؘ yQs{2{@}υ/Y?9x M*(IT{R6՗0kdQ_2]]v? 1Zo[}=]˙>[& lS m ȩ DPP_p;_CM$ȹgػ42`Z}A0܊{|}h) e[ԥA}MJA?)p2G[Bԗuߎ^-z3ީ۪,ތ}Ф#&S޾Y-D˜83& Էaf$Dw!PߧWcPZxl% 2Rx7So1|'[y `fLP_p+;$<4 8&=-IT 4M˺אm(˿/  ^RE㷦RsLAp@^&R}stX CcVr4WE_>&^Ce:UsE 촽+P5$'3G/3V嘝/^Cʉ个o M<78ۻ^,]ݚ.%/p)$]B}O}Qo/>G}g  Iy+Q{W6)Є#R}=<4P_%,VߘG} "?lQ_weX/4kH]@dI8E}եJ} ?#Dawh?r߂onsJ}6 s.hڷᔷHXhau :ت/gLոF DnU_'wJ},c 1%b4/Yf/Emcbo̙ e] @d֥C=0a7T+ ԗL}hە55%P_]}7k%uP㨇 4{ iJ>$8Zno'8]zxoE}Wx">N}_@=VwhA-|ɿ ,5D\\e\E|:Aԗ[Է~HT<|4?3Sꋇ'PVovќs. K :QuQc"'SG_g9XTs?ԷΏqb%R^qs8xK%pMX8@꿆~,}8T}ބjX/58hJ]Y;SЗ/k0Wwo ,kHia VB.v\3P߀Ǻא =3Ph45f6JA[M}c1fo V @dIe]#K+ { ͛ˍc+o9@< A4j .㒿=/R}oZ!^?<Է'0aA.VQyæ25cCox5<{36hM4.hgeg [_ C ÊDfv5-Z8'z}û&|=gO4pj]}'@}\ z5ZL67a?;0HD4\[.s7;JnYކb{ӝu4YfiE!1[^P_CêisBjrLR\-,7h>!ѭi/C}oĎ⧑X;h|~I=NJA+շiJ@]/6:?9-srR^C9 ~Md}eH#-kHxGi<h:vl'ekHA(շ{:Jm {#XɞX}{vDKaoL'LM6psۓ䦝50] \fB,!Ь ڪ+&VӥݸYVcpK#`֠^}P_fշx,8;S_bY|~B,lW߽A'% &e55F o4Ckm̢Ͳҿ4|p9kԷHIv42՗ #TwAuֳn x"ȔӤ:oSW%s 2sZ8/k껑ԗGӽs˗zL4,3.29w >`Du|պiͤcڻG^Le|: (6QY{?}0}S[PB}{4ZiMv]mV}O;ę9!HpH'^;_}9O}f-ݍFe-v,'G_+;>I-pސzДh`d%q9]>93\א~ɷbF9AF7 ^NdcdzhNLEEZ]6RLkSS8unM CԇM,-hM,/SkH!R`1z#amW*y5z.84{P5$z m0G b/D vzvE&rk8Iů!!kH@%˔ Ϝ]f15wtR~+܏ceuJR}XI5`Kqpb-!ǚL4؁Wrc~kH e!/i"T5loR[džWٳƁP_5~YΙ&Wz$5U+{!9/| =/=ti=soZNv \ZP$J#C42,{  "B(pܳk0R";](J9p.Z~"NW=n p>D'N)!џCJm/ǯqzGCҷ9f#tgkHdvW 7L Jm/ǵq [4M)hp&[3-4_i kr%s&*8^΂CH/ۡstZx!kG8u 9L/GmEŃ@1م\@\{uYBHfoz ~lWN;tj5ͭ5;_C`>NáLf>7N|)ގ\sFꡟTq|[LawHo>b&6Ϩ*ngEULI4.Hr_CAԡ5ֆߧֻICMV}DkCvF;ЄЈKl|B co)cشFmV}+pAorע+tt+r5o"\0ŷ/`א]`4Fl ju=iž %Ь7z/Ao hR8̟@5+߂ 櫡 d蛬ZkLz)%qYe` dXbK]E+>':RD;KrȆRl fAx q&֬%6 }~uY׌9ܛrnvf D&de5א0|ݢލRav"$ VH&v.kqb\  ͎"@uz[+lZ֛祈RDGڍPp9񍹲X箠A8>6)"XӬ &N%o{Tk- `Ngv&]b6[N3>eM&-4otEzߚ"N2pV[5]`Y%LY+, M̑۴u[oM۰"MbG_Vcpḥa1кz8[/ ͓?L5b9$8M}47Y 0ŨQkzT\e,ΖZѫKK@ (\;޸fWQ}Ahα\yxsHN %b{I C -.4թ3-Q5ñX|9dLh x D~c2gwq>r4Zek}/@$`1APEzAwHc9J |+>\N]r"(erwd8f_z i#x Ɍor·zQ>!q6Գ𶧾ύk߬o̻S6čwYr}n@5Ͳ \Թ`C~,.5z&nIu5oJzz{ӄb PnHw*5 k[--B;;*"}w9V-Xt,V' A!o\9)kw(Y|yS"32EotA6 .Ep|i␚ 5or Z'\SaCa5 ~&{ VgYt0jp펹+a&ؕ6[d.*}V@UaZs/48>[j^iN8ν7wA%/WDs=Y:CJ ͗|>ƇƉ[y0"3q65?dcNOkY$aֿ)]>4E{Le's8 )˄)0+Mq {*o? Sjw0G"kYE`;,^5c?Npq]s C&`p 9ߩdp\vMi5j0pNNU͛Ͽ?iE?hL 56DW `0EO]s Sm5|5 q-*٥~uhA*x{uy8l`Mz_\vKD8|_X [l#} `1y{.sTٗ_sO'pDzm~#.Ke{ywCJwkHi=S2ei0LqN,@t\5n8Yq@ z?-_YKaWѠD,K9s5@7B]& Ng6̴#8C s =&y.5/ JweW8 ! Xk_ g9ܓ(.X!nPkͶvf]V=ȥm~l`qWPSVPpcnSx@u-i\UfZ(J7mZl* YdC=`0 swZ[~kQ|S:=]GQjQu!f7{:z&D[13I{XetouGg tYPWJee5++frh7"ic}o@,1PA[b.ӧP vM>~A( ޣ/6݀h\~@ B"kKۢOny48_ˆU+2JhS4ue?k|le5rV7 'Zkpr~s.?3FLW5}q-*>~]tpZ8'Gট2 _n"w{/@u?pJ}P0\q ':D凘E h͋Uv=bVNq0M3 /N V{sYPD8}c :ɚnBekpV{xH'2̡[\ IDATI{E[} hkK2c)^7!_/N^^][rxl!Z7!_oN^zpJ +Z)ׂG\V5_ooc = ]?-k2? gf)AEVh&7[*U% A|:, "^ DBoƉaTvHP؎>e*@^ =)ګ~ 4xyk4H5hfץא^IbCuZG]g|`j~_y&9 DU E]vbbq4RyqN,s6q>^E0K8v+n@6dYbpMƇZ[MĘEg͊"]cȊJ x'L zc~_tT@73fHk{ŇƗ |EE&medX\vJyt E'CRV5e5e0`"~-2!Wh{6xq0vHoϕe5 (&$"Bg^ (5xwoA ὠ+ckH*I~RvFq}.ڰ_ li[cA[ph1C"CHJǕ]3,T \G8Yq@ ‹o!Ah^3)X}\?rqDQn-`ƉwHP> ,cx{" "){`вSD( q7cH_ԄȮdwz@߈"˱ϲs5r'E FpHf lGY ݠ9ZD-`h0HQ5m?~w%WG)1 );Q|*M5$ău`~{ knbYk>)9 ]\d0T548,u:[<ĴffJe{Rv49êY/]%HAt kY|=vHb*8D1DU\vKʲu) R5 Y<.긮pߢ !C1w\p"XOy3 !ѳjĄ{Mr&%F0<BS'~KCOG ׽ٻ$2Da~Yq{>(.|Q5)]eA b&h/MՔ/5JҍewtB[ld^/i^{Ck{g̍㎀ZSEvHX޽&a9X:) ~?5*+N`N9/fǑf?ͷbmowA8rtQY\6 # qp\ݒ̩gmQdlj*RTTitQjvAEu`8 Ņ+ʂC@FOzs8աNb> 1{!0xok&hLpHi2Ǖu]kI2c:/klv; N~sѴDq̂TȐ7՗P_#kqhW7`~C"`#LT@rR\8Iq ŗ!7NIހ>F3]qp [Ӄ8Aو551>5&LѬc-9=8* ]Mk K/7Y#1uM56lo+"΂ǝ jv=gG?3,F}DTI&L!NED zNo fCh0^]_@dBz 4ϸK8A4o֒|<\3ϿPЍԓ?vh4Y/lB%# ̦=Qbg^rxxF iK@s'h0E{gϑI5F 3IZ@oA׃)e⯸纺S/aG\>(9 k=1v ;0gvcboߡS80vmtJɍk!,SW]_C * ɛf1M f25{}7rj!KS&O5i5rp4CYD 1#rAMȖ h0|؊6@hUƿvH=+J;5SNX)]h\~X6p@}kY08C?'/R69^PnQeS:P89 }U`} [zQK/`#NŸN62&ϑ vpΛ5XrM 7۶7iB1_P}ŠMkDJ|xRҦ4o"ŇѩCuEH_F[8^#k*LNʒ T/Jkp7ᏸQlŔwn=;yXLSNBgLbT}?B*rZ*Rg#LOu8.tyw9Vߦh.V1aoⓧl6c[޲p ~qA^3Uߤ:_> _}/eCL5AJ}/W[jcאN5&ZFsfx,g3=ìz 7xVW8ϯƑ J)FSȓҮvuS_B'\ȵ9%YڛLwIO@וiZ㸾@sŅ+y[У8ήϱ۶&0X>nR?4 􌐺OKvh84[乳&ֆU}v'vY}>臱YQ}CSTM#,ƿqSn:z>QWg%HȀ=)_vhp$ߚF$^3$jMGeZ3|8|Xа#=97dz44<<~} 8g/#hpsl o#x896ӛ{;2ebA98iD8 pE9"rSC'^cC^7#ثUčJՕr_ۘl`b騸2SrˆZ&J64'ly`1(DVA+|MO=4`&wgo&4E\h0c 4vewjc"$֚ee[k-l*@S}؈n5 hsP V)siwHf͜ )Ͼ&,A|MR֧9g`)LmG,3m,P_QyCߔM XZ)k) p!ϼ 5tHܑa85{"ֈ|,55p| ғ)n_inY=GKSI5ړ9ֈ;%pv^xYb8e_5qpCQ)C[\1W^-2v`VDQl62uJk24!00!$8,"8uYnS%D[CGiStq/aqb }FL8uy)A_ac+tDahEoh0iD.PT!ӚX&Fd.etzB^L()7 (2iˋgηNQsE֔ܥ˧X?`mjղ>_mhNxZ\v9 ,ہȕ S|5/>/K71!"kM;o%Ux&4<v:eKX p5̪o"7%]fhjZx6.|F9 p_?5`N_g"&3MApΧ.BSstd,1rj<}ϔWzHhj~N.4U:m W-I_)q=Fވ x}23}SZK{=γ6d#(y֊@YV& 4=O~s"ӌ`zFWO&b:;VI5vQ|7c;OSuDLu8::zkmWߚ<?!7<f38MJ]Xh0ipO9ꫡ ̦Wswv5y[L#M,TO\oPh71jy4շ$s4Xv<dm50D9'fn) @G}{e XLww-Y@W @L6{E<=6%l~L756渱lƖ)33~I3Ș_Hk#;=&>vMW_3P,k"}s%|ꍘ!d>&i3m6mCD:p,Z/ ~-aBrXvEG 'o7pFh0]{AÉn |fI{hcT.1e8IQ}6KCXV0 [E"17jph0=3|v `ғnGCӓ|):%8P nAcğA |΋0E>}akצīT4tӃv< |'@A\a"o_ A|QR24drm8s"4>> &:ya "D7a5<2 .=]Sd"p5xfllLz*ғ!ThYqޏ'ܪCO[}thLg@[zFݞRA+ܸHz+Ksjz'pwW{_9-GO '+N Ɵp,u|r><-SC}3 sfk<W4R^2] }BθB4N~(5x;{eO(% 8g)ElͿбoq44|pLo41chOրc O)SP8;8'(P`RҥsɆaF Qgo4N3 E_j2 ǥ)RCθRޡ8E=GA㙂nZPtDr_ܳ%]xݺj /bߘ)i&{d\DT7kS ="`W_oDͣ-pas|Dbl's'4x9q&bz[#aL_lװ#t\kLf#fƾDaze BENVxv~k ~@>'Wo #PbL'xXwH`WfÈ[wXE~WP/%_bǁ!NWo빽/e'4׃9a/}Z+FE8u_W*yze\~5zX1@<xz6֘{w`VWI@|C6N 1QCNڔ'\Gl zw@#˯%bAC=jSU+n3ps__[#jj!Grj(P_DTW5qЏI3r0GS9E5,7f]! 5.A ::5=;24[!g\ol9([ns1㉬/ly4]gk-` +kN9{\ޣM;P_PDm(z|4IW?F5?teFn83#5`]DsLEaʰ՜eqK<ľ(SY!s5N4x,W x]G4刺:\Z,ob8eq}:?&-Zŷ)4/"É9,@$`Ck5(n +jǤJc_f"D %26wW `fj7;u ľJ8q.r\. c,>ap ao) F5;t掉Lx lE3\d__ 3)@71CcXJOn04>@sݰc%oG BoSƒ,}(oV/Ui#oj|jn|GkF כhpU߀1>8<`껆?\w5$@ >JAIX `4,5xw}& 9Ӛcū߇Z}u9NҞZ[ܸ۞vuGc{UxOAh蟑 {>Yc0882}#aqkKk=NhfG\ ?%lc"షg%IS-@W?nrCL!gl~  Lg.1]XI<<8 2 0c! .<P_0&p4` %6/>٠iF/Z0o @O%Ȱd@ 8F |`VIENDB`gerbv-2.7.0/test/golden/test-aperture-polygon-1.png0000644000175000017500000001405313421555714022103 0ustar carstencarstenPNG  IHDRKbKGDIDATx[rIPԘUԢjZb"A76f¯_Do7ࢿv߻~:S@z+MJ (}J3j:׻O)cfP@){f8 T0w`R@z f  䶬}?`FQ@VN3Rվt0)` Asоt0W(` 8AsrVw:so )` :KI MRπ9, y }#h )4G$m_8g@n܀/ جLC܀ʴ/m/)``Ks @VӾpSb>kH:A(7`` '(`` x LW}=7`` (``" Q,^00E0i_8Mi_xGHgNS040F܀/} W2.ѾpӾpNҾpоpӾpݯ?@\y܀c\/S)` (`]R[/5i_J~}Yn CXV)y E$ x^&Ѿ0ޘ^ʷ-^ 8Tt Ra+r)* "/HiO 8]nE>ICD8Fp܊%ܒGbN( Rn*&1\5K+U|eBPC{'W8KLWC>jDŽz/a]7%aYX";_UYS; jо|Z K%),Bɨd,<"C}IDaKGSXW/BG:g ^t'^e)j,S8DҁN@Ӣ}i| J*N5;Ű7=V >DN$oZ̬T`p%, {xgfͰoA 2V-|bȿ$B`hعaoӀoA73L[S )$bu=h~M>*f݀gp){-ͭ.#!2?IJZ Q fKԡ0pRO^@XmM# f} z{n"8Co_J0;J]45WX6pWVWtUi3 ;4ˮl )?.[SL7U_*[p} P^πO}mw\ !<m8 Q*>#j; _Y%L/~U}t}?(k #J?W(;' )oKJIW9@I :\gxYmtHT -v y8H!-x1 Cjwe1C7qTN<>%;2Y܀ϳq8M_&p*<M(`Aa#<Q=L'@đn pp= X7)5\N3ղ$ǎ^iT4<,;iV -[u1[t!ը}Ky)`bjAj|3+)ڤܾ}BOZƯ?/O;nO-襲EP{%tc:9Eo #GАʛ<ϗj"bla3Eec+IyD;7` F`P<^!{HEUbG<K(`tvAϕk=\a\IwqZP3d<RP@./|E鞛my*͓ TZX5P?($eml)WG`b;(;5\WryA?Q20b*y^-m٨/KYi~y zJWT~)CxW{||ܳơ(5kU<sP;Ozwp7 ;.kuut7茵&;}zz݀[&ی%;vju/t)V3Vk~~Għ0ys)[+uBjCS:֯Jp}Ls](G0\3Bwtf> s$.>yHQD3>I0׵cK>ӞhNsp!3DtHӼYFj(yjZm}wM-ed~Xhu+ jdF6[#{ρ*SDae2!2B3ې:GMƔ*ҟR_p0l$S2Pu873Gd!0#o^ gIjg.i^n (jWTmc "o  v#/P4N!Su i?Υn;[H'i+UD1>_U_抩0OJ.,Q9%,^C8A< ;V7ЊMkܼUr{\Ud~M6CsJr8AIMRipD2'eF]eV(^GJLg dO"$#z1nQDpTW!h_)Xƞ?!c kTI}n;*Fg=Ul>eMRvO x4uVPD( *>5DSi%ů?@/&n38Gr%q4WN#EMTڒRi5?E TZP¢'R\kMřπoOL3CbxTyrn2JmE[Ld|EiY⣀pe,z챕N~|#ye,B01g <^f[ 35Q` Op?$nLR`A4cut*ekl?; "tHb;P ;~?8eTFbKn*fJ Bxg(01cXRyI'>1cdRStIIA)0cpߒSIGg>'d|SN>цdh/:mE%2NFSnw{׍LDW>ơen?zl^S*ڊLK=̡e]ߝ;Pzag3}̆~xq^(%T S٤ s!/P١p0L}Ҿ# ^LEXe ӾSY ! F´o4N 0w*>w0w};G#h IAR0\}ҾY ®sK./)`8ON}sq^G)`8INe̮,+`8CN}rp(`8LNeޖP+`8FN}sSpޥ}Ҿ$ !t$](Yh_riߩoIISr݀/m)`A7)h0}籠 he0|KΣ};pʯ)`xNc/ͷ);&cL0|q_d} EΣ} qMd};sO)`/; _y I!]f0 h_0iy/vt  )`Ҿh_G4}Ѿ.z ҭL;w*_^3!w ^Tv+[ FT%,оSi_IL Ҟ0iߩ/'<;5J362;+0eiߩ/!LMw*oLAw* C(`ѾSi_j>N RT%_¢;e\7`ȕt/ @N}aLzw*lmgLf 9 ĴTڗezۯp= ̶T/oj=9ĢlWnWly $L'z);s3 ,dҾҔ{Fy/ul?fᤸ!sp鹤;t?p YcFN-я]嘗kKMS6xvO0ONM]_J f!9FْҾ+qMh_R8/lSWd `&:oFѾ/4W 5YgޕGt' Sڜo%brʴ/ ] K^WCMv]J:pʩi_ ѾR/efL\U~aA% NY}!7`@W!=KUgp~9xSpL0qy / Yi_HMCJڗ& .rp#s:$C2ڗnμ&; e(`HCB%' "PC%4!: ]&wp|pq8 x'C~K7888|!~#4pא QjƂDe'5ۏMf,Y@wlYVeְ&wJrm, kaR6,&Ư:`es?adppżMה2Robӕ, av6gܖ/3]:"VFrb?*.*kLTC~\X)@@ n(Gwh@Gjꘀ60\/pSd/A^־5zO0u` |&T ^; t^PU/#Le[:XPԷU/>L :XP@IIENDB`gerbv-2.7.0/test/golden/example_nollezappare_EtchLayer2Bottom..png0000644000175000017500000002564613421555714025162 0ustar carstencarstenPNG  IHDRKbKGD IDATx[&aenEZ1/(LN*AE>#+N||]_ 0'ߟW}GEs |"8 "sp"o-`?}`htA 0 u:ݕҠd1 Y:RUF/syBc28#pfS~a)m0,&c`p*n @WBO0i%^>rͭXi/`.(@ti0,@).;;<1"X0 ,@  ‚Eѓ#N _-e~3;5G) `k0 XK#`,d0M,@ 0Pwm`4|GNWK.B8N6;_*~0CB ,$+ -0P5~`g\=^"DF/7'#'{, u._р@yrE +uV ,7}  E/!Xs+/F ^CMDhb.p]#z10EÔVJ?*,LCbQCapAb&t0Xp:KFbH_,D8鋵yxA^]\ ΢D/Ds1!7pFELx~sj 8U:+{ }q&j48hJ60lESX1,6 D M 3qDc(g"}R8~xhLZ9` EL4F#g"}F g"}sO3s̵H_řH_#33_CB3"z1g/Bb{'+~~&}1 -`'_ 0֛,14U;J}S9fVl!} ]uM@=`MnBb珛c-`ek˖Y -`kH_rl nFJou4 T5#g#Ki 8"/2x_Zb7ndd%m&lmv(z0% _ZR?RuY081ҡ=P4sòV6n`Lv= T{]`S綀hKc8nj8F~;_6EgP7c%<6Z"266a_ ` ,A5wԿkT:1fAnv4tr>WNJ"l!,Ќ.h);^DsmHrNkB,0 ` X`` X`qcN3Ln&z1C0]XK+ }c8 ?0 ,@ 0 E <iaL?gڃr p{G < }:y |>5-``'yu`OnE xwEޜ)ѮY` bq\v>CuTFHvlo LOz52.hӢ}0E}AUmhXࠏ]힨/ Np_ 4zozHNj_ԫIb%خW5m 2!-uC׌{@шy&nIE ^& -`ڎfuV})N a0~GDDy*;_mh{CAFE#fj{%AI[A"Z ډo[܀^xn:˶gZQ F'Po3u0kʧ׎Qv}fR7dE/^/Cgk شNfɢ޿/l M[5غǾhivG2agv9M@!:V,gJ| uv4:0X2%}Q5-d %rwwLC`` X```0~g!mN6-`{|=[" v6V=+j#X̅} `WY5H_6CNH_A O`{ }  `/!XG%i/"E1Q(},\ИBhtT, 7G.{qp??]?[&iKKle}ԟϟW5Ui4-c/ ;W!I0dy1[:<3+8⋢/n[ li甄`ŒjmMV`a]5]bmiV| }h_d;gg+lkkFRp#|l9 `xSvП&T˷YmhXimBD s4HooW25z3P0e,h4oT0'}K`0\ipBwvyKw&R鎸yD ` P#{jM{.pk!fDZB9SWoWe]iؕkHm{]} 2^#Ԋfox5W[Ƹefy,WQٲ{7^ȴ/ "Lb9}Nڍlyݿ0@ϏLH} X}MG?s>CGtbdVUCF>uʖ> ɎNc~=6ёF2T?]kV%{]0qZ\Y[< `NAְJ'(7|I~}4}ĬyBInM7XFPuXQʖ6E8W[i 6Aŕ ~m;u0u^^xxN۷-]M:X p2֕)|7%I&-/#TtaϦD:gJ(i*CClpv?xG; _\Wa$}?g]zFK$I?uul}k-Fvf%oJ>) 㧮1s㖼 Pn*o5zj>6=iU֨y>kZp岏&0^ft:-}Y=Zի@RAkzL` ՝.2FDzH߷ehe㨣=|ى7O]]ho Xχ$R]2{5B_鋆oT"upꇺ{+y$ HM`Q44@ӷ .zb9[BoX?n2x#Z뭯Fo|8`S_c+K *> !}b\g0=3?rBqs7 #**WҒOտ#Ο߿ڍ^=IvLߡV= ^AX[̠A'QKYYŭ! 0&k>,qI}PӾsdkgW]x 7ZYR:&#}'ݫɚ o/z&xǓ(]sAb|uǦ|JO7FWderԅOWhm/L_jaoId/i[5xR+c@ Mc=X&B:QUN `[:9=RՔTe-3hcFK?Wd|@BDUɭ]YY0tdzfOF 5QJL,urTϧꏬ>=䱴4٧!/$άjV"E3 ` ce֣ʝӂJk LtQwF#3g7Zu7-(ݶ_Y|}S3 *0`^묒CJ6KϚ;UZ `wGssڹ3`(;!mU^߄/nT-coGoF` [z3 h![H_0`$?CZr =JI9bdaytpQ-0`C4~hei eb+E4黻J5#/*?4]+_-0;I{ȫ Ix"G X`}ԭӼF,p]Keloh,Ol,Ҷ ں3;{pӆjoʠԦ*%A;:&z"6M[qbXN ۧo^d|0=``7zsv,c,sWhS혾wSLw'ܯj ^.ػ$}PϿ?[Z, ̳cʿ7޳+O$?\oCe 7} 7JЙ+|QFlc2N/[ ۽{z}vq S``,[ym.G}|#MF^m?@aCIP4ʗzL #eUW*} M۾ }B |/i @oZJo.C7Mʘ7.juph7.}H=JG+~0ht | ?wO-77  ,5I[zF/Ҩ }C^SI_R͔{#;+y7?P0BW[RW'. Tg>F$oi#?gpewZH{~ok}웣q ؿvhTҷx7ζ7jof0O߯.z2`Fo3zs=,9tŅ g D4PvJ:<՗곝E3Nҙh i=Jeöi>*yT\lh WKOb(E9 䞂I1\l+\0GZY9`Z;'gd>?O?Kiԕ$F`~R"!=ϥoٺ/Ւ ]t:P}ْo ؼK+[L7>/f^^'v.҆yu\o1ls'¾or9Cis,Yݎe0,ZRe;Sq S\lzE>JwU^է%*Ouk#] .%.`*ѲLe/* DE ?,]xK/ؿR}gERk]qcz0 Jb?M?عjy4|ݑG8pfa ™mH5^qKBh=b;o1 kWx%r:kglfs#~[ΎTgVjakf cw{ OIDATcQy';"+5+5ꥭ7{ӜNl4;O%_tSfiI0CvF$'lA7W,Vzu166`ǧf_tq§4D<W nC:.h;|J)ǹY/hirVӱ=W6)V s` a"9m>|+c-zkr*l&킖w`i;IlhGv#ם3XںZ k~46O"HǸ9gC6c{ xܠ #l`,SS^w7M]>4la:=.H;C!OV̹WgZ`?Z~^<n#*YM%ѣ]#ڼi:W90Dk׶Ad}3;I['zc0v.hPջZx}HK jJ{Ff%.X7,*ӽ/Ft^[*0(j\eo,IV2D{x}ς<18`$=$NG;vҌhe?ϴv Q*/J W5h񧉕:-phud|Y*@ń&KIͧpɃ6H42h_! yGW |j߿ua$۾;yk(l>Ed> rzG=-/}V>IIn=9N$- תfS#^mx<Թ\YUQ`~!ϹOR>)]5${<^t%{8b`aY7m[q&P=+֐2 ,&ޟ“2K:hG475mdV萂5 _iNWk] Wd2 WǒoIkmǩWOQ0%kP`>=uڎ].#CCT\rѽP\|{AtB(^ ɚP3'Rst0ln |iJys5Uv)8˓-y_ 06|K>E%>$Ω~ vFs>#@oY?,~ AXvF!GItք݌ik0on2!^{f R*nUi+t~@QL]CBՉ&Q*;dw{R'EנI xsC@cG xKx-fɒJ&2;ݾH5|LH`2ZE4a_O?ͫ7d4rm0q6T?>pAC(LS-\_tT/㋰~(8isk ͒`lmTSv| KtL.-7 OaR)ՒyDVIo[O$ 7V]0^~7ճ%p;0>0jc I[L(n\n͊FSWVr#{C 9R8d6Ry4n>۽ػ%]pme̞qE`՗\zsp=Ez*JфBGb(޳i`.YFn5=tO_Q΁m䫐}gZ$NZZx'\g$A~4JtۅVv%gDr|kTPvpyb j_wݨ#{ͬһȴ{q4pt %vT蔽[fReϦ"C݉`0z˾*a%YX$tPtF\6Bm_ʅ?Xȹ[yZJg-3Ec,:s%pF_W&ђp9`Nfps8s `>` 0 ,@ .eǯ=y^7]4L#/&v,-28ST~fIENDB`gerbv-2.7.0/test/golden/example_ekf2_sieb0.png0000644000175000017500000002363513421555714021106 0ustar carstencarstenPNG  IHDRKbKGD IDATxk8P]`b5%cxJsʅԋ? e|~^<2ixb=w^}O7dsS;\o"?|ty2 ve.\-?K9,҅OI0T [ Z[\Q|l"-.^ypI]9rI0T l|~ 9O,IXΠZ9/b?eGo {[H3 Ӥ;Gm70`h@NC҂O}Ϥ _WQػԜmY?QZ": k,ͧlFή~|bOzLC<7]ߐgzd}ב8 +&'-!^0 g7HwAl\{Jb%k_{zb5ùe|~PT@(^[Y<ʖ=IJ"=j? pwʟG/r&Fr--@)q4382#Jl0:(w_oJ Uwe>j~Ev>;<\l=w+ EDûlpvfXf;Ue)?wȺr9HUpr' % Wz݂<`uxKKC.Z"rt8Bt} M>&<ޥ)NysɩGhpU/!Tcxxީf1a^]?d\0~ջZdËÇr'9g$VzU߷X |UV@@Tr*m:Ǣw);C7r+YOӖ%1#=>z˙;A7_s*LMX_Bt*1V.˩jN#ˀ[]t7u ܜ#Kyk{i]\K4=loJM57g7wY񟿅tKv汯p=2_1E^;Oz{ w.^Z:5g>+Q_7d Z/6g=v)sdaaNmPJΰS{x23ԗNbz3 Ԛ*v0 ҩsͽS7%IΗgy-+qzu~ ^sxssi$-LJjr\>NZpt|*:k:'_3W 2]/lnp6>,3vé#y}Wr6NOC{r(sM9|#ӗ64);`|m+o`*|VM3d{iӝWO| lV}7T9= 邳16%]׏|^z퍬wY2!)/>GvqR%|+{>l~+<->+ 8utv_ȇor-T s:\ͳ-x@~̏paW̱xLfpA!%dn@<,'=ǟjupl(4q3gj;gk5%_718ux#g?Ī{n.ݼX]x!sO]0`qDsL'nZi3=Uy>]-؜H4E;@" ^"vٓb?yO۶\ӳ֏$n ނ.PC:|B@V:|/cDN; @XJʱօϛZ$Oj}3#JpG]w>n:@yҹwͽHL_֘YFn<8OhoJ;.1ux]Ŗcv~:ߺBXSذT3'+?O4 d HOin<NBIgGn^/r蒅`Ǽ7lǖzI؜yDȺԚ bfg'7dWW"nj8F_a;32;p:<ce{ N#:ܦ^cӺ4h_rOO)^zExx .BiӃO9 6 ڢ-vZOs/` pmx0=N ea{lnP]Ƀ{}m Ӥ$q [:}r[PbIz(5UfRd{o4PϦoyh/~o>+PdvPA*a* ـԂNC E4EO.ΛŻ}7079l>ݜWAX .3fr,|zq pӔU+6,m8傑'҅<c̯pjM &#W|d|7Tné6W|,t :N˅  LwG,pͅӻ 4 zlELaIefpN|<ɎʬNYwd^two—%A]eǼxJx  TQs2kAΙt{ulEhy6A{qd2`ngxN厚s'YL ѩ]gF`}юYNV` xN ߡ_VLm=Y47m3>t7nk<#LMQs2ky6AO[A[ Щqa%{B{zO\Dm߄8%cn~>?O qۘ7c}B"fe} 4A783= ڙ65:^p<0 JXzBe/3xN3`&#`(4ŠAX| )c2`' w#VZC&Mnj~}e <|nSXhFCp bMo!4AnQȜlX0 xBf$ Iւf\d w0!kAXy/0{#~ı2F|׆ 02} f ]"y. ϙ'D#X(h^+=\p0kngi4AoXhap!`gO5he y$_`!Ũ `1ẁӉuC]'0 8}k̝\Om>`nAqE?q- l?-['5#f- CAgG_ZЏˀ*2 i>M, مg2Wѝֵl4AGoCSbh ax:\w ߰ oX¼ޓO7 H15)Taẍ,(w[^fͭ-ܻA05,:B=kD8:(` wG @s5n8 8y3-xC+}snxF0@GY?W#w% sG{:@ӟ.<jȼ95|/o~ uHqs\b+<4<ڑ1u* aXe%T]i>6AW*ԅ* q4T zw#EZ.G .CO&ӐZq 5)TahK:9hpz-Ba2X!9 ¢9;T?GՁzuo}a#f NRu~AdW1o0ItǞݻ)u"1&YPF4@aʅ s  E(Kin֓`LCnh:ԛ92)\,2ζ'kFwӐBPa)Jx-d>zjH5b@Eh\<5kT% 2Mнtލ8 zSF_ӐӐGiQOظx8s٥~EV"Ztfu]_w^  wi g4,?#aapdwx3%Z"<Լ'1sfOE٘7EջXg2v _̀y0毌Lܻj;._ wSة+:wp?bv]/3ЅX8Tğ\b͜s{7—R|!`Tʀ͋-чd WM^(d 6iBzb+| P5]{8w x2 wΞg\w D&zuò8ւmpzLz8^p=f5P^wM/}yw=!xAւQ~B!t en2 H LBAL W5J#<~^|j]p~K_;h&]}8$:ÇB4cvn1t sE\fݽSB;e)@4AAH)%(+J |uzKwjuc7pEWw42"f=y\3O }'AW\opkÈx `w6^4ds5XP/|ut@tPy[&֫1xz}skkP%Ѕ+yrN dj@X~F|>`= \ xR@:̀Ȁ/c :p Uʨw^G_m{`sR֧xI0@_I2ӣyŪIph3(+󉧛/L fk-BEȀ/̋%ʛ/Y\<ɵBZ[7xu6D>^] (]ouQ[B{|I|Q>_']JwCZ {A8l,Azaasc%mt:}7L0l ' x vc֡e{C ,}B9\Dw{TWtTٌ~f@fPv3>ɖ6gmhMҹoίg_S4x8}#n\#0Y cօ^ @P7W,W~MA q8U4;394$ [<ޟr67"0@TRźIvx<1x"/G6c(i "G_ò3Oi},kk?x_w`S*}Mr%c6@DV>D [wBg+./v-|NZ2۪"13Rಽ!H9xHz^#}*x8? *4_;q͒| 3=W@mf|m*rpPb˽i㪁pi*ٹTl֖|Vͼ/ZpVa'ffr&k}_E_81uY#Ʃ.'flk>׿~f_paHӯǧ͢% bpz*]{ ΋͖6eZag~za 5yM0@P֌\Z^DyЊ-fN1a%G}5A/kZn~ Ѐ Ѐ Ѐ Ѐ ">-IENDB`gerbv-2.7.0/test/golden/example_ekf2_l5.png0000644000175000017500000004147713421555714020430 0ustar carstencarstenPNG  IHDRKbKGD IDATxi(F9`է#Ώ֐,;=++$XE|r@ 6` ?ιW@!\ByW\N oIF 1ɇ_,]Gi|m̟ *_M/*z!/hRC?p&B^m[)Zɘ~`F3Xky.$' y p-`&c.p jeA1r`I b4 G->'AzPUVrWSDs[=+w^5On74~FZ;a*ɓ&7=` 0+A}΅9\ K@6t(~|W@MgV,`Ed"> =Ծ  ^ `<#*H MyBbX~a%sʹh<`7dWjl &yx0.~*/+ZK"p_]mɅlq.b%N9TE0sȫkY?`eڪҹ'IXOdcHdO,8=#c&+䪵`v,^Yp)=G$D'a> (LDZSkmv duT= A!XÏcs:m8U)҉oURY vr@?9\xiZS4""@~9|'WChT|9={ &O8n=`xKpsIUX/ǿ K-~\ˣyכ{Z)?n`{/}}^j(;p4dLFp陶Le!, [ ȏ!YR.N-mʝ\sQk*y&MZ_l2yf%`t8ڧVZ"zn^኏GU=, M2ԲVT>i}ɐzѪ a1DPڠ- T,o}z iSVm|Zx iP{zsY am~$%RbBsG"ZQkwA~0t8 h)o8\o]4'Kq!7ҿ6TDc@2B\4az*CՀKʥ՗bэis5;m /ccH>+;_?4.~?$If@֖f76yUG1Ïlos{m0c HN}/}~ fmO~h/8 V\hIҪ 4I߮RY%rudM@tʑ =:&֢VaKlkZ3˳;{1`Q9Z4={$ɡGGc 񱪬`xB~eV4T|Xy=x!AvW)HR|ǭ_kS)d6=|FOB  ^"H9&ZI8Z?SWꋠs65f10ި y=9\X}Xf%@./'‰byf϶xϑvQ# *d^\yY C'f syq={2W>Y9p>G/7Q>}'y.V,|G|rj?71$f:Ǧ[` v: D<1N}210qw Û8Cƒw Š*J(r$ 5pl[fU {@ټխ1h:&=T[ 4.atuJ 4n`nb5(:@!SfƹYP$?u["Lo'E 9mv-zv w -z\X!L |^L:$U<`sr*\ܮc48v"`Q[^ m ϓ2ɍ䷭cYY}*FzhsS]r{Y)褯CXG.AyoD.KmpW,<ܳ#>(X}yDpxct.b0\䃣[l2j,A܏S3ϯ:ml8 _s=`8r!o)hy𥳐^}4J`xs :m{0@Ģa3VE)g!ۀY,;f׋h k`k6, g7Ŋ}Wòr)lG4 !dՄ$l0%uT6dvXc #+#_26G`?6ۤݮq*vݫс@o3/$qY`xcA?:AZfC3{nNv. 6~ \+0w mLǵs?k 9 ibF&,;g\!JQaL[Z>W*bevƪofo ~9$x>FEk=`A p 6ې `P%O ͠ i֢_ȵ qP%h/>]_ũpyX[ kF{8 \ȇI)dڧրZ#6ȩK/L.Aϼ?e a_\fO~f _vw7dL4w QߞMW;G`A/ee-(?G 1vո[ׁ) w~k?s N/Ǒ|= wII  ==h4ݜ*ǩe- y;'H|Em~wAvR;U7?zeyg~ׄ$" ;)jvsz$KwYXJJswl^kvIj1ͧ WE?l\sZwNA9-91 eγkqwބp[^M~XPvrWM~pz!3:]F1v=$j l;bkA$Gn2A ?}f@'Ghayq>=ڇАI`pc έBbgcdFr9mS,Ad18 f$iOs` Y|Zp?٤0ֹ\Lm}-wM8# !hƯ!Ɓ֓'ƚw I1['z+&'!yºVmVT],ozP֫(gέy'8]%̹nPyhp?IW5'͍PHŐPE!esS9) :GTŞl VPN%xLq#*l `iىk CͧTaUn|د>dAaTeg#f)wχZM>$NAȖ})Fs5'mNNJ 5{@C[!3Sп5VsU(@cf}ݸ۔],F<NA%+F|6,mV2yl`wQ`^63.b ]b^F5|U$Ž(ǟM+_YAP^F\LtQ%k?Go!Tf[/&'Lv3+Umζ{ C4l wx i4A#p [m{UgKɭ\;psZey)z=4m|IkH>*|.R\r y[CNzgHWǧ֓~|jǐtkmS+7B~TzrY/2ñT8#Z5 ׏'lEfW؜`1'/&-ޓ#aʳ``ٟk`~aw/C3lRjeQ2rҪS$w1|ͱL׫ozU[»2 U42{^ߒ_eKCNL4u 60 yhS! 46껀P߷wYGt23 r}[9!*Ê~pUjQLMF+x_qt#t™[ߏ<ٌx }oY_.BŶ?7n qfUv*A|Cz^ƌ S&(?O>t.P+$5Lk3V~m!\Z!FTKO`'ހ)1״aO;%*`k!1NT2@y_- %"3=`QUJ.Ï DOМ v|ݿ߻z~ozGp;Ќ7yV` G0 0Cs8.xy)O NR,Vُ\y6 9 g7<ݬ/ri l彌Ks=..Ԣ',vG,{P_pNNAknU_ uQ$R*Pjj"oqdxks1w /K(y Sa1ι(gbg8B'ynSrFjnkUSa=_ ipk7Ƃ?L8Ul'zYDr%9v'p0 WŚZj@_0P8j23Ƀl{.oQs ._/vYO}%^)l&I43@sSD4Fr6¾bVOqŐtzuɼ'ˈ8nҚ VIo޿w 0Th|ۺ@M?S+I<<꫹ D*j94W\zh01 49fd6Qez48ΪX#=W0y%O떠eZҕ#WM־%_ɵdبy[ yYc48˰gKvx[9ynf %/MF9~!{ЫV R1Tr]dM|QW"n@Re}7R5qԷXtTJCl|'!W| b \IOCz^\] ag pٚ58^.#Yi\Leb.>; 0YY[4)חU U2P.HcUBއԛ\k֜%>rкGRZrўS _]ۤ[2"/CٟAxn.cԊ9X&Y3]sҢYQ4s|4TraGV^;漗QCg=o:ۖb:ʿf^3c W_#`}9s,T9jT{ IDATqS,D5kAÇ'y< EjWsQ#EkI* e5^>+UnO7o뷶շ?`iBz^gcH<`a"}[8wXmm zQP 0hIuW X}a,<xr*`13pW^Ë4إt7WlUyepi=@~ $&'KVέBQOnJLٯ -YV2i48X5X6sv;oP%RL],8aʘ":y أ "F}Y@jO35d`M&qx9^•˜5A̍J}bǨap斊ws6Ȳ ړ\%Zr$Y~YMm\qq`:CߖlJ}Mu|iy+J)}ő8Bb-4%jyq$ـ:?HrsE/~+/M&'eM2z9wI1%6?ڳ,9c|}GM+z*]fIPڨeHF2v$& Ts\@ I nB뗛ŁkpIݭ-(v^bc7 Ix%cO\(=C! 7EZoQx @rW 6| >L}a 4>Ѧr^me>\A9rf'mr%LV\XV2rk4[.xCdK'Rl(--:v"MNzsK~Wζ,9s9R5jhC᫜KGM;VWyжT֌b&.Ҍ(Ag}Ǚk8VȪ3Ss&d۩8aBiQ_eX Ix3*xpON~-vl.Oj8>Q ,s*d%ٿ~PH0}`*XlD78V9gLCFVy ‡\d5s8w.f hӺ0{Zs;7]807)JYlF:=W'Ydw犫`:f!`yl :v0e vyYթqM!āzFsQ%Bqz uU3 aR߆A+Vp WoURݯqE@QФɴ:]9hZ @-xEۮ`AsRQeK]U66MדoO.2h`" }A`E'bHO˘Q?shA}]JhMy8=r`at&#5XU8.8OgY=޴0uȭ6C}skQ}]ip*3vǙhlZF]MA5Pt,;Nr%C_:0꫷* D(<-ަlE8h.ïMk`^E\j'q'>AJS%.SW Nr $ ##9}`pT|\#Őow ?*(8")H|u)a=^+O9 9Q}g>;58-H%K j-h 9 ^\?E`#2y)UP'4åYH皌Y .{ kO'}oژ JL^JŐ`wC)m_=cq\bWAd#/ɵm1M_5Cr %J.\屬)e#+(gUUPf~WۊOn0?=$?a.`}Y&UeeOʏOEcu8am;`?vTcHB^I#g*{B!ffE9km#S O-jgL=`1b#8C·~`?} ב>C4?/ͽ}'OO% \t2*.ߙI[RTe34X)NJ +F{.'ipua,5U Ix}s`!0e 6[B2ö"Fio[d .}48A ,=J.&<9$u,T¶󗅡֌ڄm\$-^!y xc# męTOH*寊EˁU9(PnQG 5 oeFNq !u$ Pj[e><TyZ3hޤ5-G+6eo6jh X/T sp-YV$5Moˏe.Z6J%6$kV}ۦMU223Q2]/jN1P5#.\~^ 9$#2OWipX`=)F'G9ŐQ;[I05!_$*I+;V`M8lFȍmIz bULdB;ΥDH!>U}&oqƪƆQ-Y[ٛ48CC6wT{0t6+IQoؘϿo-f.1L9ÆQB)/yko^.UELlRrN64<+4|=N1 pdcW߀!2N*Nޤ0+ . 'F^0BT\9%U-uSWھְlq} lȭ: WD.=ŋ>f48<l ū "yn)ʑkة.y7 LB$pշB*aתrTܛ"Vb{nbGF |Q& .^c5gG}݄9TWm/1뇪V5pYTdžrKۘW&) J6Ĭ Nv#7pOqUqWjp1a $i\T_8xP}gU{T?S_9~XW4!!(3+Eގ^GT{Sշ?$n9[e, #. I#717u1R)çG4XHDMғ2rcյy!36I}״ӷ)N.9 P_p"SYbv>ƾQ۔2)O.BOme|hom68o#6Hi$s,~S՘o-u6R'kM3iN NS6ssSmïo.NNT/ I 28ʘ,L9:g{Z]A49_5't\L< |z. zWғn p {zs)bڜc-,: F*j}*ȥ43cS.]L+AF6Tv{W52N7#$Q+LY Lbfv֨os*7S@8s!Ii-1M~][jwдUг|#-00hpe)Kcaas}禒1LdvӐ|P;0U;9kϲa8̌5u\XF6ϳ2WY^r& ~;]~p3;KYaYRnvYX`#1wkY [9 v0?ImfI+M&A3k[8 [|3շE$'P8Ҭ[q&ϸ}Xș5r\)BxCԪ狼d1)=*~$x0ů_/-/ғXxMd@g[z|;Qb nRQ=n_);oa6mn]+0m39/̦z[UoU ɫ'VW̰!O(HTIG2⍏.8C]jCGۖ(n}k"q4󡗭,A`#7 yw85UaL Hw!?7rl + 3U_,G{=mcXvA|VML v s\|pDx + &L\}CHdSGj$<` "E~rYE~V[J p?Ír 4|K/jps\m`wC.vR愐7a}$r w/'*R>3 Xzp/>ezk,egmeCb* ׏IBpٰaS3mE?_Y9l+;ʨn,¨ >'3Y4-̨yK~+TyًHHd0ڵaM`s/@5Rq{6ނMF -~[kV<`a$:|4{uK<`™#}-S<}5~p}ZV1ŘYiFiR]JNse ™+Qm rB͹//PPj|v6ڜT;?S֣Gq9cBcFHT ~2O:Zk1'GŘP "kJBCpia ˡP=`Ɇ n m8ɖk x9۝u;4yAs'm3) 4[/p/F]Yc +L%vr?ua*ƧL3,!yv&Yb{ v?qzTq_08WĚy砯[\z\b[Ք U󂓽˪ IE @}lZجO^7WM~,8Pe'he,( V"YZ,q7ei48v6'CzBܞh32@q#hp*A]fR[M-͟t>Ōyq%Lf6M<`hZ,/D\̿9Y ֢o |9p'rOq)o\p$Z_ JU*?X'g'X?hȿ'ˌN&7J9GGZ,6B#bטA`2 vomxãH|kpgqȦj*BM>NV IR G}(58Unwf2F*[ `IsNos\sCu?/Q >IkWaoțW5kbpϪn}^M ?/f\΢?MW5rxHr9찶~|G|bkk]S)^}wCjt_j^#ж+o-nKkr6{y۹Y G½m-J3\Knw. s9W R\Sف3,y!0k4#kpgc͞$|~06`ū.$=fytT`k 4xSO-5sOvQ6?K8Aa vfkDi36fya'0O}aЙ=t41$V_>I,2^\c̳6m1êsU!= 34o[\,-.Np~rK1'adu@.x=S-?Y$I=:s |_9U0d.AmA%x`n]IzsGlєdغUPPNڌw7 :r;orL̜PGx#^n7F!Gr:quYcqÂӱ$;;瞊k˭=K\ևKOB@!.,Yo>0UBnJJSjQd/]0UIkƶezQsOA}a?Lo`{;.7d\5K%8ii#N2/(;S~w:3YlI#'76]iH KЧv8=QTwA/cOA?sÏ%hz3YAAn%bH*[~g}?ĩ >o 2fOZ缜 y`޶'fr 6Ahq[2Ifo-kC I;`Éx+‘IMw #JiZ,>w\*sgvB^~`3QWՑeׄ$Lr49OzXv T-3&7B"f9Fs:@sOZ߻q 9@ߛXN9a^ ru:Ө﹌vXAm9nwٺ;۸n_ }RZ/7)g>ۊ 0/{_R^,L4iem;hɠ~)$?ش/`yo- 4$ <0v\A#Rlv^yqAAp1ry=uQ$cY. =GdRLkfǿM3o4 G¢OMjaSm@XkYeɡxt9' Jţj~X /=‡3热{N1tj u%}7#^elyL>Sm`ڗj$q\:2Cwpyރ|(^B~10EsLlj9hs# ^ބI0r7zdPLUZIDATo.<&ڬqazK=.bznTROخCv0}<]H2jU (`g<`{¶4 70Pz$3匕f?մk,lbtU?1$bqR!۪ k sZr>&x_Q/1*~/Y<yB+M<q 2rr0cݴ <_3wSD*qd~u3$gK?725|ͪk^t8rnm+ #?b-kg6k-)ܢtQ:8yCQ(* =O4kή@g Kn98, 'W8cMJqSXv 'X˩2Rwq/@w{!ޱk1$pю҇"9 ] B!u*|t%0SL ҕPaya,| D^02K+[+7{`FVx7/;"] #+ӕFuXͮe|0Zdf{]T@?ߧxk#. rEy])Tv<` ͕g˛pUgOjEc5z@EH%Ґ 6&5#{e[#'Ec5zIC @#< [d K zѡd8Q ^Gx۹6om` -NJFb @ҐDAC` gmIGV8*aU& {R].ճO)J w09*0 yzP ,l jźhfWϖ% 8l ȊH@,!m4ss ;ICc M n2^{ia `4$<`<` ;IC*5! Mfdy<tUiH;2$`u {Ckwo#~B4t<[v6  2$=zUfЁ=` Bٟ+nI`Ax!G0LK* G0@ A~,D4;3}ގ~θv< fg#gˉP&>8oomd0t` @3`@!v:Blΰ9n*JqQH?pG7{IENDB`gerbv-2.7.0/test/golden/example_orcad_rs232_cm_asb.png0000644000175000017500000000706313421555714022521 0ustar carstencarstenPNG  IHDRKbKGD IDATxQv8@Q͜,UdQYK41`3IZgZz9~|}8h_d{Io'#78hJ7z0H@4X8$ SJr`b?48"@7H}`' $,35d ` mb`_ǣ"kRɘM}#Pi&;+hJ;17a1ܓR:*o` ?Q;^ٴ"i_h5` w7÷~eÇW%=?R f+K)ڻ{ZtS߷}Y||3 9l7z-r9`շBCm =2y~̀\T^ЀH*U9VyFٶlVa-^R7S{J|:% a2M h\zJ54&; 0` @ poOʿ  0`俆D 0`GVe & X L9e6a+1[_KN,( 3`JCZI UR f+Kla9tz/w&pL'-SwiɊ{Glp&, @ @ v73` @ 3𩝾 Nc_  6h 3&,6P߫TJX+ai%KsÈx!s}J Lj`!r.2,GNȣtyM7B-?v\I=.|\3'^={`rycm=n 7a@3q a@ 0p^|D"O@3}1y1\CN?;uOxp1~_ .flB/ MXlWV%Jx-s.GB^-Ba+4&Bx֜@`Y*` ,2\Tb 0`\M` @ @ 0!|*&0Y$k? 9Wr4Uߖo{Ke` #w(նGVe 䒪@!<&, TмVN?I|uBq[ mVx)\Y(4&@ o 0L}78퓒ylO0I}dnpK$J QE^l%@ }"ß c7ypsrgۻ``4])ԫ #RM 5V%00!`& 6 #4x> N}0/Hg"Է; 8~w'<{E' @g;W'@O;&@7;%@E` 0Go7Rߑ4>;yhp- O}BxU|aJ :~E9hm8 mo8ɸXANpUO~مXC]% p>ngzNIENDB`gerbv-2.7.0/test/golden/example_ekf2_l2.png0000644000175000017500000004642313421555714020421 0ustar carstencarstenPNG  IHDRKbKGD IDATxi,9cwP5u(Bu϶m8BL ?ɕ#QVq# Sx;|Wd$Q O>R~v06j~Q y,&udϐn|N0O*h%,/WbS^wk ψ@z" _[ETĜo?оA_ 1_ɒ/RZ+\}b(VYY Lk=\B C @aR"~Z =_oW~_vX΃s8+SisQ=/Gkt™vI0!Uߓ90\^/S5NrZ 3+{_N="#A01dzժ h*aFO+qLf˪אG*5zlא e۫#T}MD^vvcwZVHE>ωڍrNe .g3!cRDP-v꧶V_=` <}"=+8E/;7wiw[l.Tv'z75~)`In:r}14'X:C 4UOP_!fyX~_Hl0FaY8{7Δ_c| N<巷orO|$^JKĶpJ9D~Yd.ƷoNL)?_"x1 8s8/ຉ$zM4Ȳ(:x1`N$+G !I鲝 QO8& wYr]u-:~E$'. Xs8 D;<2k D!^a<_A]hx% y%QF_2\rt:57qL/5:^%H0$ǚx_QXYdeQ&~qkxTP-)=_\p@D U/z#*$Cr(3 )B[&K*\}1~8}_cՋ|)y#9܈h?lAt91NTi֙=CYK,Q~rj?75$n7S# 0ә.yא7P!psAᭈ21qС_j0| Y/>zmwRJϰ݉5{cFs@hji4%̒Ai pStk\x\~2"S\{sy\s=Oݑ=[ 1v=[ w;azK;:==„o0 Lҙ&㫩jQeI(#;N n7? "δ}`ۀcߋM9+L5L;+m-W"ϿV/eF'a/á &I\Lj=@=#x'UASeJV֌+04Y}SCXӿY@}ڙ,lsdMGx B|׶/nĚL.W\[wȍ$޳Akq/3`SV >B}Sp ~ ;XA>E}{8ZCgc\rؤXtk;y'̉`/8OAk=X6^$λ5d}`y|-}3KAp:U}q th>̼ Ƭ\}SpdM/5h\?~Z_uy )ѿ)G '~Y(\Es/̈!vc]'V[^<_W"nkH1 bo8v/ _0Ns_g ,f 8s58kHx B z3OZKk]FWsDA;TOvjo=@}A(f^C~a swQ/q6lzLziEh?}DFݱh=S>\6g pH/Bs/>Ozd7XE A7sQۍH>463P_vb+{E ^BSТ%U) fįX??_g=G p|&'वϡ<N`P!V,0xP_B⟂.^LW.=@}xMXA]M`qNAgUݩH{~wbw-Z'ǀ ~aIdێBA'vo|MS@' jcGt) ~kaW0H]z nyڀUh=DS_cQ(~ b xmzR<_ʙȞYAEt^ݽ`p!h?Kms%`PSXAc#Ϲ@|!qAA'͉1$)t8 HlM7g%i)0xТgYS#=#=-"N?;~jǯ^xaghg|0bW4z2^Lp @'Ĺ+Q~ohc(✂6̋z 3D0}w߼a*￧L3AnN} wpw뀍1 bnR i#>ٶp@o>6 ]F{l?a?p9eKd3kjdSY@|8 <{l~pL:p㟧 Mؙ8,KjqSCDtKʻMaň RV̳zd?U`,n x;8}E6t}_O9sm݈"/i;ϵw1m(v%V\ʃ4/3/3SP 8՗P};tiy,V0++<+#AkC! ԪZiU_1sDsUtpb$֙CXZQ7i)O[[SF)v>H8¢ 8~u.'pd p% 0_ގ_}6}gM} R}g**~F@ԨO}W_+SVQ_On4&^̑loa<_ZUro; >2t t@``I0d`>x(,?I3ΌLC\ #Gȷ>|U޴ojg6486^N,-7GV8ϵT}b<aҔa |_png F]_={J{@vO\+N{]ldn-V=;8y|kXqk^ԊȷsYq<Ïv]jw1,Ncz/9Uy_sC) A= P2\ F^^ڢ{tˇHFPT2xǷ4uj6˂>rL1Ƹ/}ؠ,boV\)48ꋛ.{{LیƧmgicU+}_6iYU, O'oAcLW5hY%?&kA<Š&hCx(M?-,L~ tL.8'yl3(IgηMj!φ1D峁dEo<~t/dp v}^ D}lyU͌16?3f2j r4xA}ɍ= 㠖c,O Hv4D )KJl`WdU ٰW `:Wp'eQ_ϲ(ӯeY$sJ qb|ƾ*{6X3955DjrZ Z۝ɍ[Q)EզiN\~m(v&C[syME<#.icvc!go2~0/lufaVoft ||GnvY^$ݬSw5Eiƈ吊x.O:MkAkhhH׉˦>SȚ?Pk`x[}e:ȤHgoOwRcmR\9~uW/ho:PU߄vyڀcТ+zs.1IOi~8ѓO=VqI#V=bh _ɝӨ,xԷXr=WF2*{Wdv [R6AhQ}+kA5lW3ϰۀN"p3SW,Ds 7bv9gDyV_UkYY h橯^@? "/u0V# F ar>;ZeZj-ZviB~ OhCqzEbKkgli>| ߗgytUb)Wn-}k~vU,FlY}[=`1+V8 T}_M@P26W4UrXm] \ҤvVWݲVsBM@}#,v!W^Ny(ޏuKJ1)py}_O,͈Ӻ' 0#ͻ kse{PY7x4X.ShꛯS\ z;?AxƢlBy$1/I<3V#ڧKFPnqǙu/.`2 ?h6Vkx/e 7A5 &鍽[nh\}ܧ5[}aٴnB~'6=ĥ,zBk5NT_; Q_M}@aBMIjs1QbE m-4]ejhQ ^^W+#߀'fp>5)VJF$T&KB^(12]ml1e : 'x:/:l\}=a0wאyI:rym*CDP5ea31MTW$gpq3ܒG[^Z|g r:J8Iò(D~o؊Uqز}MU\[mbC}5'Ozpm_X_镽> X6.3)^)9WA7zeLzTѦ*xTxF yʵme;=6(q(ɾ4  5EE)|ښQ,^$Gks9jƢ KCEcSƸ2n46;n1;BGQ.J4׺˜ڴ%Ne홥#InSUB'ǜL0hDkIF 9qɧ\FbgiΊ.gk9g!mk Ȉ[RNWK!nOp4תj nk꫹K-0Q}Pߤ˛a 1n?Oh'ꩡ{!hGskM\D{:7JlIσ dU}yWWj9dezɈ3])e9U/`D;٤KB>onES#kzґw=w\AQ4=^x7Smy 1 u>i-˜2cM>Xvobkƕq&^ s qtȰ]:[}y✆OKW>)  $6wշ-T8D o_w+;>/`m>(m..QA˳3Qj:mC_Gjͬ?WyCћ"Ҟ[g_Kn33wU 4Ej5:kcX΍jۈw$j8P\exfiVXO.{z7/?Ƽ{v<ͻ P cf,e9o:A k$94Q~J&/:Xmچ {NACr`[dUyJV,R?\`-,M4rSK5*U R[՗/huM}ڦY6v𩣚K=NX0CjÑQ VRjђݩޯ&44FT̕~Kvğ:dž6q /?gOL;\DAޕvEu=h)Ze1-ӺXtj4}T}{G>J DSs2m exmcċebj~3q>mFƾJ8>阦>2ѺDgUK`  w#FY&Y9q4 LgUNg{QM<ݵqOPVrj-gze$lڑEﲧU.c7hp1Yx$);Cz:N}`QrxsJ70r/N8>N[&>HG<\Bk,!ClWH}Io\^T8,E9 g=2];]>x'R/&IqOz5Ͱ5N}WPyFns:팗/x!&w@#V 0e1{M}ެQ}ze$Kq`pwtZ\SVBO).P_16PdOw.*oPy/XΥ`{ wzq${rM8W Y/R7c9g`1jU2 p<'0I -j9 oεN}\}ЊF[Q.rӆ칣z:: 3o wpyr'=*Ĉ;!ۅk?JSMlf3%Kkfe548Wghp% 8Ou-Lh,<5/dk{/}3ܗA3HFP%qȹzB6.ɜ\/ҟŸ+ *~ El-'^m2j|c3NRΈΪb3} })Kt\~XtQ1jȬOϫnUǶX6;j|85DƿIjs'L*q" lmx6Âg.xN#͞rw\^3"<^[[}d; ^8<{"RzFAaIJ0oNީ;7ӯO 6op,2z#]|sA}HƋ3[ߨ~'t1wk |I#=[~z_CB,#/ۘ2#|$FMO!7A?p|M, w2e$`{,N\`ܭSLyc\]Gqv`U}<@pAg]nH[ oOݺMdTd)7HN7g^ FwkF.grhj}<Ο65)mJ6@6)-1 mqn8=Y.A8nx=S|1D Gs;Hz*Fѭ@}wDhj09, 2A8#3|s= LO+58|Oga@}LtQ_C1y 5>hs/P#~'Z{N}b5v.w$~9e}ip0Ps_lepShsiR ]5X̒: "DǗd*)uD{oQs+O`-W߼sb'Gw;^.U%/܆Yzs?yJ}]t:B7,2l֗kG+Gzm?svpCrcV=W=%<8@L`YKp.`E`sg' sqJ#=nRd9Lgř7vҁ j*;#S L}M]ZblP+.~ 3AYtU`d:h.F+x[S3Bt>oςG:2yPKQ蝠]g|zkʂ4xc GqSF@g:+KrQ./#'oԵ$z-w}`y:W0b&0k64Xߜeyk%o@S)L6d"` MTYK,& @z+ewiݳ@5-, HZ3ٝ 6/M#k[|#M#WdT[]+b 08RƪiZˬMk^꫶kkV_6?[yv'_GSצc+y ]5$SBuv1]4JQ2vo gz s>ʹ ~8#iyhIJ45fH>)*&PoMnk؇j2>O썰?π+GCK[h$v<]HzGžz^w6cv5N1%ZN^Uߗ tr=o(ʤ:r!+9/*t7'r0F9WdFx 2%ܥnI7t߉y<ށ}hQM} r`WLŲ>S+`u &fD`?Ҩ8=Du䭎%mr+rHPH ~Y*Í_\rZi0TI)=gRzr0W7TO@p ;8W} ԕw.to;߆1>ƆgyJÓ w>oJH_6EUNF~ D ~;f26ʰ8iEXM]%gŸT^S`/76b\NFT_~p+ײ|) {x|x#TE1uQm0OLFfnA~po[dQ& . SF;ϧ)"t7Yӌ`3Nk^ ڣ5Y,S J3\@ h SRU$7t7}>;k:bG-#F3Gz5o;tm啜"~Q^'5.:v& [bvgݕ6@vMuuXx;Ŋ. }jR)9dt6up~p&f̺#P#,%xA1@8Q>Q˖.+s6g݅uz8_nx6uMKY%iſ0HƬʭ-"1Qi3zA zg~w?$+Z?l0ʱ;2B?Fe5SW<2T?@':&;[VdhpS Ph6/cخQ:i(!-LZEbY2".D[P,<>,9 rx ڨZ{k!mf۪<ޭ #gs9EtU}7ĊNH :W*Y0,JYZXzg>SSk) ;Gh5" xP$s/}3px{i*pVJ1/|jdf9sU[eaV-LV<6#Y~4u@}T AN-E3*8,˅wiFA3΁ s/q =Y܁h)M۱KL-H.M42E)i`HcM'KQŏ:l6jwL5Ɋ1|X}Adl2\?n|NH IDAT'h-N <Ċ4j@+_lQi3Ak>nw'4!p RQ2¯?,MWF28/"@`l6=Z[֫= /-F4"gI2G'6^9l)>?̫M ʘ7ڙrSH[~cGLZJ64F#e $yWQԕ:'L٧o@euteY eU{Gqiemk| T5PFz58qb< W>nXo;`gϗx_b585x=^H.hѼ6Y,o5laXRK~ipuaQ[K(s`{=ƿ%#'`'w[s&֠_}Eƫ^5ذ$ 4\|;֫|M2QQ͇"YheU2+Td4D&2$;TT$ĦN6zX+DL4ArKSuQMH0L xIQjqEdp:4A4xƒVL14@)f5o$~#VM:qfמb;1e\ n'o$ʼ)y$5Y Qp;=wp 1*NX;hZcBxU4Wyd"cڪsꑏZl/*=`_iOˢ4*,aF<`z ngj71)Jt~$Y%q;`^4~z@HZ8͇O>=y) Qx`cO+wpT} M?J㖈MGK$}NlXQLY.bm+~ϕJ=+ib/WIqmGϿӳ 1e+ZEcvy*75S}s;{A_}/Q2-F&GKb´e\$nn!',v/MixV]]em=40" . A46tVRf2X曢5J7Ţ#<ɚ |ߒXL*d7 p<7w1AMiΰOkp[7NO,(lc,[7[O`K({cS&g-dY L o~\Μ"MY 8{  5$/ Iy@_kPKfA3;4Xi :RK_nԮdv̾J 0/0#=Q'ZKN{;ڐA vp|YzJ)JײG}Ca/ЯlF/ue<^sjƉNyunj{!lu^5P66cXQ2ו~νA[x* GLi\Wyvs nZݞ3 #Nd\m0 D N`]9fNG GnkHm&sK`;"W~"}#jbɔyEdaR8P@l Z^(W|!|BЧ,[ }h1W+pu G6uo:0>0_p}xjcuo~xL&k7p\Iwܳs5V֒ؾasH[jU2fJ9w3=hX, ow>;'=olٌѷ4xq- rOשBՏZmaDՌߤSAT:m jXrJ5 9in:/yKғqbÏ෿?=W_ t%do/z0(_hPNy _449X7m"59R! ">_gq, I̽)xќ?V}SLu*sLإ;W/`Ndn8qŭg6#o)bxD JWx rx}Tg.HzN5`h*Z$d1RmkR!O#DYv鐨^J-$@w{0C5$¡_C؎ӇqkH"M'boeTO*i V@ B}bT58@P:3Z&J\VdqCIh` W3)OAB1~)h @ <x0`\ dK~5bIENDB`gerbv-2.7.0/test/golden/example_jj_l1-1.png0000644000175000017500000000570713421555714020332 0ustar carstencarstenPNG  IHDRKbKGD |IDATxYr6EQ+jG!㥜čvboKnb%=#=`F                                   ^?6òv |ҕ`Z` j`` *`` ``$ :`J`0 .j``< "@sq+``````p|ꄫ @ @ @ @ @ @ @ 8z+``````````````````````````````````````````````x׏}r;C` +`WHԗ(L}Kԗ(I}Nzԗ(F}AJԗ6(C}Dԗf(@}Gѩ/- 004{<> lF'pԗ00e D}P_"ԗ0LH0eN $/` F}P_`l o  /?ر# ^G w YK?']眠 x0~{p~`7׏]CK* J'=HBFo`1e+?cح3T4WAɀ[! 8f(CUwThcCol0v^[_|lu/ c1Ci=} )moc&= u;yj09ϼ+`(jz 5E7`YhhYn!t%0@+[0@[t0@y[ԦE 0@a[T 0@I[ԣpJG).IENDB`gerbv-2.7.0/test/golden/test-aperture-rectangle-1.png0000644000175000017500000001264213421555714022362 0ustar carstencarstenPNG  IHDRKbKGDWIDATx[rG@QhB *(K:h~TW;h2/ѷ\?Z,5$?J. 4Sz]C_|5 hgcg jWė8܀.%K 0±s;Y TC_rU_` @A/p Tscg f,З,܀"&%`WE&?v`0}I jaz]9O_|5gy}?h0g H&H}$7` hu 0rO1 $4| Dp0Zqe f"ʕOv>IZ_ %{}]H@!H' %/l ,V.<'JUAyBejkt/< ,Ъ.<$lANsg}˥A}aR_HM`&^f e7;V|QـU.#Hya ~PIY0[+c{e]k?WnV1gcOM(b3~Ge28 x#Cah܀1Rx2 & %&3M^OPTUl/y}CmN O!8%>79hSI <'l#1J.2j+yh՗Dx ZK.A_" zlHG/d#S)6kd< ԗ܀'#,r#bP}IM)8C`*v\gkLVlrMQlLK 3Mæ!+UZU阩/b~Yl#!h0q ,¢'\G`*sԗ82FQ_8t8ƨ sdG}M㪱CxHC`ql\)OLaN@ٮiQ_ lU44 _L WSx/p2,7 3sΧ;KC pVv.eғ'--@}L`N/ò4'd_4k 9Fk%8%e5Xj} nYPtW}qM8P@w7u> ikɄO5UmuMWU#LW!:̲+)Iv N_t n o|+fW.?ԡO}m:PWny6@mo_U$=D#{.t֏/o^WOF J.K*~d(;'/ %$~X%{&S[kI҅N".%)qSc'z?Bhvn/ |Dƫ$x* >;}NH$bx% 8 ACԫ'(Є~ {0yzGSanDl'#i0gB+LPN !{&$e\L?@v ]&D#hHF6$_E-<{)/y[ l+`X)So(a w亐%3P;1%s/׵ );Rsa85Wa> 0l2MjYl^nNV"l\{`dZ6CBY6io`%pe왫py  & '$)#=W? Wze]~ڑUH+`d44UJS`&qjY?Mado`5qZv g/$T} Tլ [=kpoo587ੲY3sR2h)蓥㷠x3I YNVӇ.nu?8K5eA:ՙtZ+;l[lȫjJϩ}lB-:ffk~s:>dn$a]] :džlw;]6j;ņX%{㯢۩e[c 0mpzfZ->:{+uF2epb搇Է pV'cl.o'YS*?{agOUP< 0Q~[P&7S [)b G+W8@}yҨw8SIW(=~pRĥ8(w^6I) U;ToWxa [%&Đr^Rc(8b(5 W`48+8hx1eb&Jņo*vRO/Sl (N!>'^eJ+(>c]%Si%߫^*xKDc܀Q_P_櫴2NOR3\A VS9$QA`!ϟ>72%X(h=6 ]1ryd^˻\:P_r72#郎:EnLޝҁÏ72+c]@]L}"pO}#’`L}m'/fo.Ii1s-hB}) 74M*X't4[дo='n9t7`QԷ7@EЇ}HiA}##hSԷtxtt3ߊҙ0odPSVQoE}AI}#S_yMI6n<;nTn[Q_$/7 %SF/aQF|nf8nn[Q_Fٸ 0od6,\m7272e DG}#Uj`Q`2Qԗ& &&,rPԗ3rMLc7272eIK}#k4in^`Rԗz(+a8vP_Eԗ$:]> ``DR`5xA}I`n;1?R_/\Jԗ%Z<Zp945XǭxOи~'(0CwK4MΤCkM6\Sh`hJ}a-ԗ:Qv:6 /!ЈB ]/? -eC} :=,b`L}I`(jR_N |KY `C}!"r`@}a`HO} `ȭnS_CRs=,|ԗnJydJn"hH!2P_D!K!zS;Pծi`M}!3*B4R!(_{᤽gbM00Ӫs !7 q݀(.Hq0,SŽ @> XdCIENDB`gerbv-2.7.0/test/golden/test-aperture-circle-full.png0000644000175000017500000001054613421555714022462 0ustar carstencarstenPNG  IHDRKbKGDIDATxq,Q* (PE]]._ry fXZs?_2&؅eT0dn$K>H0I2#E 1n` oc3Aa86=Ia &ЛϥU(1$nQ2 ۆCܟvPs(1T$X2 p'%<&0G2 i pISdb0"eH/aHB ^vPb%I/0Dतdt(2 ' p"K2 gp K* p<%'8 &Cz)Da/ õ(;ٖ_l?&X蟊.qৢ d#'Lݽ_x5pA~k)˨ulƯHM8 y /\KMrGGw$TX:Ab͑  jm7{mZu9'?(Ԭ3VZfoZdqz!?1kA3$h)vFŒ1R$_OvH~Η[JZ<r/#M23]C=>V'8onmÆخrbg H8)ƄffNǙjPmx}8=BfvTT -paqPT9ZF8ְ2@U8ϲ)h#X-EeQ5aGЉ h{V_-ɔ1${aY td 5 p,fH2qƍr.UmbY :g$'?s< 8%A%.HMa<ø#tp74W>s:>ֻ 9>Op_pHΐw ߀ 6gL;Uo i%7@;2pSi¯݀0e|Wn N&z7(F.8J>J{pޤQ& m)XU/c 8)}| fLeU-v 8s8F)u|! pBK08d0`$ @fQɋh`_02D/pK0 y xli/W3tD>(Y{ d9U0W^DU{0"f>`ხPɥ{t߀O h( hسмio]&7`O! -4`G⹜߀M0MInW<0rxмF$#-s:;-4/>#7` @sB p `"@^Е ٝl2>b @s'xRt6<Q)yȃċ4& @f9:g`! r 30`n@&@0 00l`]wSJ`{T5܀ @{2h:#@|"ʋR K!zK`MG3$@ !^ )&7`1^^4_ 0`_ @ @o|`7` @ @ 0` kO 0` @ @ 0` @ @ Z>0` @ @ 0x:e.e40` @ 0vc|1^@{ػx00^` {lM 'zK`pF( `#N{/@cy `Ui#0H`t:T oW<В0``o 0x7> ܀ L .,7``IB 5 Q<J>J @CxRt6,wxh hϼO](d{=$x>7eS\-x߉; x@`? .q(+ov^u S lⱛހipBGMQ=oL ''k Kiv 7`$_ K0sM#nfx/0ЉGjz J @*n d'2N6t2L/   <4?`-uEn^A ܧ"ϺC!R;^>Uok݀`D/ |pL{œC6!Sa2 é/ `02DcyI AFI(q%JWQ94pL5pc&𮋙%z3k'R`}M7߀cy6}ԗj܀Y^L4Ό{0+s0Ȱ ݀ù%>`x§z7)rU`o݀rz^F0pS^f~bH;7$f<߀b P_+^ |u4a an2|Ga I7lxyfx)Z!bLhf\WͲ,0 p/+a4^YͲkb"హ^7βt8+,V=Нe1Rc|YFC8rCn7'P˒yS4|CUl+F?M^~nq|vˮ?.&LԿeߔpǂ8}k p BvH2L~ p0 &-酭8&8&38&I sy B.@Az!!\Ez!.FyB\ ,l0G i py2M p2'%LznK]HtJ) ݅x%KzK]hItz`I. ! Ƈ. $@7]NyItŐq |%\@]>fiI[Y!m%H,&Lv"--NnaIENDB`gerbv-2.7.0/test/golden/test-image-rotation-1.png0000644000175000017500000000633013421555714021505 0ustar carstencarstenPNG  IHDRKbKGD IDATxɑ8@QTGXVQmEXC~$sRpP_S?}/n5! &p) p|4?/#{Ng` ѝ9~3 6`@` 6`@`?au&{os 0w"|Hq%,4<`# @19> @-i<4B2xh0U$ `J2CH.kY   @N<4*xh0 `R!K-g4Zlg @[[ @C<4~Bxh0D `: +C!\@  @iq<4Bxh0EE`*J#C%MPH d @ <4Rxh0e `2K;C)}P  " @*u<4FB`34$  >O8M/`4x (C8D`'3i0o4w| Kf& x3CO^``U4 f! <$,`_07`_ 0`[i0n 0-4@Cm4LI4IO4FBV@4CE&p4@H4MK4JN4GAb44DD2d4AG4NJ4KM4H@t"4ECDR4BF4OI4LL4IO4FBPF4CE v4@H4KK4EN-4@a n'I; 0m~=` h0c ,%- `xFE^``4N- %. &`8@Y`` 4N .`8I+`4K48G* N`@`i4xL Ia2 !0/ 0,s h0B |Ga- `XN? 0A/n `4 [h0 Cs h0t&C[ i0$CC !h0t#C+ h0!C h0t Cy Ai0&Бv q B`J!: `G! b`D! 2`A! R`N!+ `K!7 `H t`E DJ`B  `O& `L2 `I> Z`F P`C `@# `K/ Z`E; -`@14n'' ; 0m=J <i0,%4` ExAa^`Nh0%4&` Y8Fa `N34.`$ +8O4.`8G4N`` C`x3i0I4!| / 0s  i0|G4``9 ? 0p /ï Jw` l Ls lt&NL[ l$~LC t#@L+ !@,L t @DLy &@\La T%@tLI $#@L1 T"@&L $ @>L d'@VLj $%@nLR d$@L: "@L" d!@5L  '@MLp D&@eLX $@}L@ D#@L( 4!@/L D @Gv 4%@_F "@w l ch0`O̝' 6   sx@YM``o-m0 03lܜ 9f:x3KH`f`c4)0 :8CHN`Nxܼ\3 Kbg'`   6t$, (J t-ME/wrԗtp``!}i0Vi009nwi00-e42ƽn LE}7 &4"Mԗi0P2޸7 JR_"i0P2:M2ԗ@/Y7 ԗX!K7 S_i00RG>M!ԗRJi0p3*n F})P7P_j@WKY4D}b/ p`n Lt/R_fQ=MԗL\p`!e:i0eF3i024@}|n ԗM=evi0lL}Yn [R_0wfԗeL e%+i0l@}Y"n KS_ֳNâԗ%-eUi0,D}Y؂n KP_ֶfԗ-0-e+i0LH}n SQ_~$ԗlP]4 S_6QCI˞ p`(˪ p;pIk0F7 Y p`Q_:M!A} p`K}0;>i0G} ;/|%i0-C/ ?i0\H  s'4^p?pA| Q /D_W k4R_8A_9|$ +< fg  %̞4ݨ/t!h0P_E`vБwM}/IYBwܙ;pJn"`֠p3;[ 4y/MH}a31x f  L} # 8Le PLM hL5 ԡ"L Ad/d p'ax p3B\3B\s7R > p- r4j4^4*4+4s4W/LA'0 sDxc sh0?Q_OFJ}aF< #I 47 Yi0 Sif's=/,@Q_X@ ^@}a% ^bx)*j4x= KiJV%k5/,LS_XL祾<^H}a> &x < }.4_R_؊oDz/G2<žx;OWs I}a[# .B}ag) S_؜KipMx#h8 `Z!HJ}OiMJ N}o 0ipG Dw4"`~/`8N9DR_%Q`^R_50/w &M}k6o 0m``.ٰ t!\UE`/Б V_/@wLOK6X};0-`n"LsL`&h/0s&j0#L`F`)``)``*`"J5X}&H`2 V_ K 6X}8&)`*`7X}"a V_ V_[@5L!75X}Z7X}r:6X}4X}.6X}H4J7X}  tlE0s``q "tF̉/P3@M̔6X}Y9 3 V_8fn6X}|̰B5+GiIENDB`gerbv-2.7.0/test/golden/example_numpres_numpres.pcb.output_plated-drill.png0000644000175000017500000001413013421555714027164 0ustar carstencarstenPNG  IHDRKbKGD IDATx[䶱PKQ4n& ?j !m@__/BFG``V5yL*ϧ&  J$ '9ޟ000;eUf"` ~{@eUf"` S e&RR=W'"Mߛa+0T iEIߛN5~p+Ȩ^WpR>h/gXM颿n}t}jig!]2>58|04.Wii~owLCzX~ߐi5ʹ|`f'`9nO[?,7$Mm`똳0]NN,ZIL"ߌ1y[ c^x6ah&7dߕʼ˜h}\W&U??XˀyF•AN1Fr^ڳ{F58dA:ofs#˵’0;xa`ֻ kn~:&x3aWfo"V`6'Bg!2?8cO2uyeqw)V_{*3~o||yy`6'๗ɭ27|Ǘ~RZl1Os/[e&o+_`.erDM21vw=DxLkIwpoouy 05S%p$qNf|̛ҲvN1n*a`"ZwAtK[NŻk-^tVa<Ԁ:[yٸ0Pt/>t9m  +(`]Ѓ .ֹqjQ}AS[}[+MuG|V~ly\Y D`K, EE^D/` WC+L\ЈY 06 d`S.~:ߠEooYx;VL\vPc8d'!әfj><3z]qˮͤ ~h'fj>l3}ߝ0Q9A?Uoj:C|_ǜ:!Kp.)?=pWddM+oZmNIg1*U|d[ls}x'x38!|O9(B W9oֹۀ0ehpйN4aW& 6%tMfޑ0_iQK7%;>I'x37L[৞MY@'ێؕ۶e L#ob 0B T %=SqS+g|TY7} |sND>I@4[Y5z3&xS ']OsS֙}}pR5yݔG'ݟ^7Ӈ1vުEmPf^yAy,S@ UiU05~Z!   @.'0,N^RWo[%_ڠKz p)*0: Z% Q1uak6C߄mA{S>`"kFnʪ5'Vݺ\;d0-5 wCCpd!O8̏1ۃz?<.mV ݍ iN ٫Ba@E߄զ!]* RMX9;K#۪0|ڭk4zrDp'O0]%kُBC8yfO唤>%ބGyW68M1H`w3L:jD6Ph`Oi  0W-'=Mfp&~3zv3t$ @ #6v I.Sa\J0mɥ@S$d& @ 9X+$TאhϾn?ȏu]!Z࠿L=Xs]+B~ZZN{xqg\Y40G훪U;xqt7bSh;w(I.Hw|&B, )ߩD_\8Gs]<ywR?ػ7Ͽ+6&\ N}q15uenSl#|5uЛfzeۿA֜ `7g5^Ejb7Pc#8V]g3KCSfu^.d L:0 fT~627'` Y` so_b0?{5 ` :p"?[h,H:\l뾘lb[ު9Hꑾ,ȏ1"1l~B,QI7L'9Gι:4s1L [PN.Bsl-(>]w.7/jAւa5mDaY?fpP[tx`#I.s>M+0$IOpD{wN$pN)ǡ%s&Lҗb[p1?}tOHK0\x,<0~|X2484Y^;زÿJVJ_8"mXĆVYv`  , θx@@ 0@@ 08} \ ']9 `  `  `  `  ` ? 9@ 0@@ 0@L2, `  ~}p0Gvy |0;z0~z፿/uf\_h1^c`|IVa0 ρp1^lƒтa .h  @GЛG@3iAѶ9@ 0h50/hAּ9@@=ZP@Zi0rDZG xsJk|D ~- ?o@i Zڂ @9M - :o@񗋴 Ђ @iB 1-oo64a-#h4q F7wK'ZG nAN` xs;t4.7/hA<҂fe-ߢZ׀ &}@-ht@ - [  P]҇;ZPm [Pl>Uy4u܁V҂Iۂ!mkZP [Pl%/}xM ]77`fK҂5E J 0)JЂf4K  0YJ҂2Q w@~=|J o4Mo6@nӕ>|J l4So6@V3>4i ,7 IKт ƼuWhAIނ =k҇XZq >\EтP -h2-hc{hK X *;{bu=hAlAxgU--`o6@;KтZ݂jvZ+>B0ZЧiAxgN`ZUxg~30+8oYrF% {ooyOE w59;q`q\@}\}~ S\_].86^^?a§sߕv _`ha5*IXsۇ/0GEF4z xyw,jU[+VȨB_3GEF,hha5*;C yTdT!@#ېVȨB^!@W -QQ6gha5*YjUw+VȨBF!- -QQlCnAZXͣ" 'mjU;C yTdT!@V -QQ^ZXͣ" z ܂^1GEFNڜ<*2WVȨB.Ebha5*hmHKC yTdT!@/oCnAZXͣ" 'mjU <*2W -QQlCZZXͣ" zن ܂^1GEFNڜ<*2x?w&VȨB.aZXͣ" 4GEFbha5*89C yTdT!/VȨB.^1GEF4 iiha5*e4p zjUp8ksVȨB^gZXͣ" x务<*2!- -QQ bha5*89C yTdT!~L-QQ],Z1GEF4xiha5*e04p zjUp8ksVȨB_ -QQ]|bha5*hdjU6$h􊡅<*2p -QQ;˿0ZXͣ" xjU6<*2mH-C yTdT!ZXͣ" z?aha5*Q+V /cX\\zVȨB^ކ ^}^* -QQG6gha5*Oɡ<*2}+VH.^ZXͣ" z ^ZXͣ" (mjU <*2mH+VHې.lCZZXͣ" zن lCZZXͣ" (mjU ?*0t ijXe7lCZZX#@/ېmHKC cTa89C EXPs mH`Y|\؆ \-ha0QVsOH3u;-ڻp{Vs#d04:¥%mjn@ <*2mH #_ ilCZZXͣ" zن lCZZXͣ" (mjU ܃8؆P=ېlCZZX#@/ېmHKC !Kڜ",&FC +`4!5n 4!- -!d ؆4ۆ/ksVs^1~3rfksu"wc04p:EX? iha5*u #_:xޏ. -QQlC^G4GEFQڜ<*2`gFC yTdT!@ې G`e7lCZZXͣ" zن lCZZXͣ" (mjU <*2mH #mC6<*2mH6<*2 -QQɿ39GEFtp{}4GEF4GEFQڜ<*2S6'N |<*BOތ!5n|ې{aېV . xKVA@oCZZXͣ"+$)GEZj dRKHې iiha5 6$h`ji@K yTEX/QnAji0ūO_/bۇ;gha5|?`W@W -QnAt)GEZp51<*҃8NEjha5(J oCZZXͣ" ې[+VH: ]_Xͣ"-de~a5t p𪡅<*w!- -Q!\ن ܂^1GE ijiis yT'a< zjY^G4GEz!@W -QnAt)GEZj ;UC yT.lCZZXͣ"mC bha5t %N<*",`^#w3Oā hp I-7 ĐӄB׻t#p',0KwQ xFNXGw𯏏?ϟ^7wwD'cib\4 0Z\  R\⽜t/g\]xcu[]  r' M+ IENDB`gerbv-2.7.0/test/golden/test-drill-leading-zero-1.png0000644000175000017500000000432513421555714022254 0ustar carstencarstenPNG  IHDRKbKGDIDATxQn9 0zqfD=E-<+=7YTM?~sf.TM?~b7L-~T} x,wTjQKJ/Y~t)H{.j|hFpq>?ZP5z\8U-~T=KDO5JUO磂%Ge.|TjP5:H7SB89 DOzUJX'zJ+~Tm~q~qZ UӏXj_X~T̢=9R5z 'zrZjUU/`=9:QI՝lV={PeUO(~T%pӏgYQO[ēݾTUK?YPu6V;Rsޑz6+V{Qދz6VPuޅڗ Tr]OկRu}~UPn` G{\*S=LDT=gUMT=bz՞ T\Q8UWqsv7`fq]CճU2j7`H0tj.ׅ T=+P\v0$M#\\0j7`H`@O4xˢ8΢8U@ y{zTmj7`H`@ X/aPJ^cj7`H`@ X0$  ,`H`@ X0$  ,`H`@ 3<+UGSz6X0$  ,`HpKXG],,3^0$ 'F /uTAչTaJn/y@sU5j7`H`@'<^P,CճL ހfpQFT]ͭ L>XqQI#T]GL ̹>XPQue'i 09ST]_T'hH0|` ]:UBU &߀qQ؋P^T}Eha9#U?Ca?sNK?QTUG-\sjwNջSwk%uSjYVu?~TM?}qx'>UVVsuNujUUX{9ՕG+-Zǻ9՛Gˬ[Ǜ!&TM?^c>hSFh >W{R5:T>5}$R5:N>:εDɥjQu|1"Uӏ_}G[jjQDU\ NRTM?>2ښ&UӏǕ[ʣUӏ)NwYUӏ_r͒M~T}f Kt%S5]_Ff`jQ5k 6om̖.=IENDB`gerbv-2.7.0/test/golden/test-aperture-circle-flash-1.png0000644000175000017500000001065313421555714022752 0ustar carstencarstenPNG  IHDRKbKGD`IDATx[r8Pf* *KN8%K$Ln_Vm}$>>~'H XWg0D}N& |5wibD=M 0.OLLâ2=M|0,Vafa-uwUT#50o=RÔafV( sZz0(`jԢa6kNSܾ;L &z0)`INCyLf jӾ`RP}&' Ui`RP}& hst0(`(F^CC%:L о`2'`EK O$gۖnn5dXڷ&lE4W;`X“J {?6矄 oiY0M0ו=1唨/cV̤qTti.8^9U^Lx`VdÚ$r!AO%Mtr-pn@EvR{9v3$TKSD' (`pL(`pLM((`pL˭" Q@@ .`I (OZn ])` x^u&ЛN )|~)UリTc0𽏏zq̟lìFZϱ8 VכXNC Uj8.菏>KAo hB8 D&Л ]>TWi5te 0P@@3c>i5Orn@ NW )@ @  (RpoY*m;`pmù@l/+m6;` 4PWа&;Ԭa0w}~`qjJW郇/Zl RsEMdc~GgI2's`$qG+'a*f '=\lܕ تfM:s;_&]5juIBG?^A_Fa"C?mAȅ迆Z~1F7R^78=}WKeaV1_aqeaO&,e B%WG2zf!: ..QbH(`nͼi_Y xo% 쉳DK®$'D`B]Y\Ic[+RދvK̋d[= O.]K9!'>5xK'G"iUE>Y@5 xW%;yZ :eJ|y01 e^3[B>3ni3ߋjbKoy2g%D)7xO,\4V}q d܏hh~8tpRO  mi_)`(C}C%6btڗ<0ԣѾ$.K6 Ӿ$0 KN ji_RP~D{ڗ0LBi_S05zBlV`K! &fk_jQ0:XRPê0oVa3հe RU/P}Eժa|0.s]&ib 0UT]4eM xU>ָ)`c=X}>>~'H`o 6f+V9E3I $P0@ & P0R3&#PRg (UkM#S 2(Pu $RpIqdjN <Ӥ825!PPuR #PV^aRt%P\^mX :(/E9,vF _+AC%PTY&őEu$PV=#@\L Pa[9"lXE "lXG:"qlX z@͠6,12@#P2 + +<aq@]'P$ѷ V 6jGu{Zo3-"\6,z02%P=aя GԾ ތToEw̾Ca Z=}z5@1j{^]#f;`13-vJ0F E>TƖ:Y8jP #c2y5riy,_C1 ܺ2k\CX2~ jz ZH@ehߛT < qQ <$b  KؾM(`XZK~xpOA{KQUZH)â LC)`p9(5>Pda9E{a# ysfv Tr1 ;`a!&8)`  +ddfZ (`XdQ';֤  (` *m*m;` +m*m;`  (` %L}kR@@_'/2= cv@@ G08!ChV>0R@]'.3 S VÆGNބ!JZ a>v@â *t7 *qY0,-ctÃ+0.mɥ=0hB2.JXu$Pq-Sh(6P:8@'b=0ƥOA&IjgY~ |cp&i_x8֧*PR' Gm xKEms'| ٭,Tޅ(v\i}zU|)qЃ0pIlZ7Q"j "7yZ_@&PDwg0ЀTRo``20@@s X 4`9 X 4`0Ok!I50C@ft)SҀ < 00  4`p0 hda @3 7GsI `Rr:4 L> L@0ɔ% 00X L@0)9 #r4`rs;#c6<Ӏ͝ HJh˺}^ h 9h@@ e4/i@hIX<Ӏ  Џb$"lX8 A Ҁ (3р g44`IXр <cr6"!\ Н( !Ѐ {T@ 00U4`s8 ; hx6$m\; 8 Հ=Ah`\Ro`ZӀ ,4| ah`|qcЀ r кې 5 ; 8 $,C3р *Z*7v ^ bhplyszRm-3ʹ W-/nH3>W2vB"ܮׯb9`u,VV7f `u> _Dz! A3@Y K3Ѩ)8 ݃ܪ%`(a1*K#]@&zO; ̈;XЀHImStfЀZqܧFc2LJk2*Lb 0̬ZHC)0ChW.`Z0`FA/XmH i 8+f"oOL0a63|調03z2qgPd4vKH*;M >6|WS Tgߟ 4eWN5?^L} bN@^怉rQU3ʩ͒!h8gEy@! 4` <+Vc%'ɤg`hw%@F A&# LU@ L61΃"t: ^q]kF5A@ J0TQ[rF8\O;",d"LjF A@GF CЍyבİ] ېAVUql8J0L'aAxpf`.-nI?(|0 T`>0i`Q d@ Lޗ`H#g <`bMow0ji$t4`X ,*hϬDiAT9]`nww'74RT0R00\i`|x6' TRi VW/3*,@7ԭQa% K@.xi2IymZYWYwܦ[*T?';32ѥiz 2[?_Jjl|Ks CЫP˱Y@<>jycZNαY@,<oRu <`5GH=|֊ `Z9F6`VAf#2ӆ(0 j>ГEXp )ydD0wUb@YB攼bi@,jЀ L56CӀ*t V5 (Joh`4\.'?y <:?h\F fqa*Wqܷ6*3\%0$v~9R'?ׅYN&`,/_r=WOR;р[yRV8lƛo 9a߿l`b3UMTO&dzDc)ܿE e+4nX p}{S:Ə۷1ð AnQfh:FC&q%`|WedӪZF N]yUu}9z&`zPM&i$y֢0eP i[Ѕ4>p `rpSX51d= ,,@ aS۱\x`x,O8j.N~cz,'|fП!hhesŘn􈪏[9z>X7CozKj рV$TwֳjhCs"Tiu'󳆡`hȰ r:7MC+S% `XX |Ns,x͐EX0e\7y/}0 mo=9nP-0LE:B0aIT0 `2a@ X h@$,C01Ipa=uAIENDB`gerbv-2.7.0/test/Makefile.in0000644000175000017500000010642313423533413015540 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @HAVE_MAGICK_TRUE@TESTS = $(RUN_TESTS) subdir = test ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ check recheck distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = golden inputs TESTS_ENVIRONMENT = \ IM_ANIMATE=${IM_ANIMATE} \ IM_COMPARE=${IM_COMPARE} \ IM_COMPOSITE=${IM_COMPOSITE} \ IM_CONVERT=${IM_CONVERT} \ IM_DISPLAY=${IM_DISPLAY} \ IM_MONTAGE=${IM_MONTAGE} RUN_TESTS = run_tests.sh check_SCRIPTS = ${RUN_TESTS} DISTCLEANFILES = configure.lineno MAINTAINERCLEANFILES = *~ *.o Makefile Makefile.in EXTRA_DIST = ${RUN_TESTS} tests.list README.txt all: all-recursive .SUFFIXES: .SUFFIXES: .log .test .test$(EXEEXT) .trs $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu test/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all $(check_SCRIPTS) @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? run_tests.sh.log: run_tests.sh @p='run_tests.sh'; \ b='run_tests.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) check-am install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-TESTS check-am clean clean-generic clean-libtool \ clean-local cscopelist-am ctags ctags-am distclean \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ recheck tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # these are created by 'make check' clean-local: -rm -rf mismatch outputs # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/test/run_tests.sh0000755000175000017500000002172113421555714016063 0ustar carstencarsten#!/bin/sh # # $Id$ # # Copyright (c) 2003, 2004, 2005, 2006, 2007 Dan McMahill # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA # All rights reserved. # # This code was derived from code written by Dan McMahill as part of the # latex-mk testsuite. The original code was covered by a BSD license # but the copyright holder is releasing the version for gerbv under the GPL. magic_test_skip=${GERBV_MAGIC_TEST_SKIP:-no} if test "x${magic_test_skip}" = "xyes" ; then cat << EOF The environment variable GERBV_MAGIC_TEST_SKIP is set to yes. This causes the testsuite to skip all tests and report no errors. This is used for certain debugging *only*. The primary use is to allow testing of the 'distcheck' target without including the effects of the testsuite. The reason this is useful is that due to minor differences in cairo versions and perhaps roundoff in different CPU's, the testsuite may falsely report failures on some systems. These reported failures prevent using 'distcheck' for verifying the rest of the build system. EOF exit 0 fi regen=no usage() { cat < : Specifies that

should be used for the reference files. LIMITATIONS The GUI interface is not checked via the regression testsuite. However, the RS274-X and drill file parsers along with the rendering can be considered the core of the program. EOF } show_sep() { echo "----------------------------------------------------------------------" } all_tests="" while test -n "$1" do case "$1" in -h|--help) usage exit 0 ;; -g|--golden) # set the 'golden' directory. REFDIR="$2" shift 2 ;; -r|--regen) # regenerate the 'golden' output files. Use this with caution. # In particular, all differences should be noted and understood. regen=yes shift ;; -*) echo "unknown option: $1" exit 1 ;; *) break ;; esac done all_tests="$*" # The gerbv executible GERBV=${GERBV:-../src/run_gerbv --} GERBV_DEFAULT_FLAGS=${GERBV_DEFAULT_FLAGS:---export=png --window=640x480} # Source directory srcdir=${srcdir:-.} # various ImageMagick tools IM_ANIMATE=${IM_ANIMATE:-animate} IM_COMPARE=${IM_COMPARE:-compare} IM_COMPOSITE=${IM_COMPOSITE:-composite} IM_CONVERT=${IM_CONVERT:-convert} IM_DISPLAY=${IM_DISPLAY:-display} IM_MONTAGE=${IM_MONTAGE:-montage} # golden directories INDIR=${INDIR:-${srcdir}/inputs} OUTDIR=outputs REFDIR=${REFDIR:-${srcdir}/golden} ERRDIR=mismatch # some system tools AWK=${AWK:-awk} # the list of tests to run TESTLIST=${srcdir}/tests.list if test "X$regen" = "Xyes" ; then OUTDIR="${REFDIR}" fi # create output directory if test ! -d $OUTDIR ; then mkdir -p $OUTDIR if test $? -ne 0 ; then echo "Failed to create output directory ${OUTDIR}" exit 1 fi fi if test -z "$all_tests" ; then if test ! -f ${TESTLIST} ; then echo "ERROR: ($0) Test list $TESTLIST does not exist" exit 1 fi all_tests=`${AWK} 'BEGIN{FS="|"} /^#/{next} {print $1}' ${TESTLIST} | sed 's; ;;g'` fi if test -z "${all_tests}" ; then echo "$0: No tests specified" exit 0 fi # fail/pass/total counts fail=0 pass=0 skip=0 tot=0 cat << EOF srcdir ${srcdir} top_srcdir ${top_srcdir} AWK ${AWK} ERRDIR ${ERRDIR} GERBV ${GERBV} GERBV_DEFAULT_FLAGS ${GERBV_DEFAULT_FLAGS} INDIR ${INDIR} OUTDIR ${OUTDIR} REFDIR ${REFDIR} TESTLIST ${TESTLIST} ImageMagick Tools: IM_ANIMATE ${IM_ANIMATE} IM_COMPARE ${IM_COMPARE} IM_COMPOSITE ${IM_COMPOSITE} IM_CONVERT ${IM_CONVERT} IM_DISPLAY ${IM_DISPLAY} IM_MONTAGE ${IM_MONTAGE} EOF for t in $all_tests ; do show_sep echo "Test: $t" tot=`expr $tot + 1` ###################################################################### # # extract the details for the test # refpng="${REFDIR}/${t}.png" outpng="${OUTDIR}/${t}.png" errdir="${ERRDIR}/${t}" # test_name | layout file(s) | [optional arguments to gerbv] | [mismatch] tmp=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST` name=`echo $tmp | $AWK 'BEGIN{FS="|"} {print $1}'` files=`echo $tmp | $AWK 'BEGIN{FS="|"} {print $2}'` args=`echo $tmp | $AWK 'BEGIN{FS="|"} {print $3}'` mismatch=`echo $tmp | $AWK 'BEGIN{FS="|"} {if($2 == "mismatch"){print "yes"}else{print "no"}}'` if test "X${name}" = "X" ; then echo "ERROR: Specified test ${t} does not appear to exist" skip=`expr $skip + 1` continue fi ###################################################################### # # check to see if the files we need exist # missing_files=no path_files="" for f in $files ; do if test ! -f ${INDIR}/${f} ; then echo "ERROR: File $f specified as part of the $t test does not exist" missing_files=yes else path_files="${path_files} ${INDIR}/${f}" fi done if test "$missing_files" = "yes" ; then echo "SKIPPED: ${t} had missing input files" skip=`expr $skip + 1` continue fi if test "X${args}" != "X" ; then # check if args is starting with '!', # then just run gerbv with this args tmp1=`echo ${args} | cut -d! -s -f1` tmp1=`echo $tmp1` # strip whitespaces tmp2=`echo ${args} | cut -d! -s -f2-` if test "X${tmp1}" = "X" -a "X${tmp2}" != "X"; then gerbv_flags="${tmp2}" echo "${GERBV} ${gerbv_flags} ${path_files}" ${GERBV} ${gerbv_flags} ${path_files} echo "EXECUTED ONLY" tot=`expr $tot - 1` continue fi # check if args is starting with '+', # then add this args to GERBV_DEFAULT_FLAGS tmp1=`echo ${args} | cut -d+ -s -f1` tmp1=`echo $tmp1` # strip whitespaces tmp2=`echo ${args} | cut -d+ -s -f2-` if test "X${tmp1}" = "X" -a "X${tmp2}" != "X"; then gerbv_flags="${GERBV_DEFAULT_FLAGS} ${tmp2}" else gerbv_flags="${args}" fi else gerbv_flags="${GERBV_DEFAULT_FLAGS}" fi ###################################################################### # # export the layout to PNG # echo "${GERBV} ${gerbv_flags} --output=${outpng} ${path_files}" ${GERBV} ${gerbv_flags} --output=${outpng} ${path_files} ###################################################################### # # compare to the golden PNG file # if test "X$regen" != "Xyes" ; then if test -f ${REFDIR}/${t}.png ; then same=`${IM_COMPARE} -metric MAE $refpng $outpng null: 2>&1 | \ ${AWK} '{if($1 == 0){print "yes"} else {print "no"}}'` if test "$same" = yes ; then echo "PASS" pass=`expr $pass + 1` else echo "FAILED: See ${errdir}" mkdir -p ${errdir} ${IM_COMPARE} ${refpng} ${outpng} ${errdir}/compare.png ${IM_COMPOSITE} ${refpng} ${outpng} -compose difference ${errdir}/composite.png ${IM_CONVERT} ${refpng} ${outpng} -compose difference -composite -colorspace gray ${errdir}/gray.png cat > ${errdir}/animate.sh << EOF #!/bin/sh ${IM_CONVERT} -label "%f" ${refpng} ${outpng} miff:- | \ ${IM_MONTAGE} - -geometry +0+0 -tile 1x1 miff:- | \ ${IM_ANIMATE} -delay 0.5 -loop 0 - EOF chmod a+x ${errdir}/animate.sh fail=`expr $fail + 1` fi else echo "SKIPPED: No reference file ${REFDIR}/${t}.png" skip=`expr $skip + 1` fi else echo "Regenerated" fi done show_sep echo "Passed $pass, failed $fail, skipped $skip out of $tot tests." rc=0 if test $pass -ne $tot ; then rc=1 fi exit $rc gerbv-2.7.0/test/tests.list0000644000175000017500000002143113421555714015533 0ustar carstencarsten# $Id$ # # Copyright (c) 2003, 2004, 2005, 2006, 2007 Dan McMahill # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA # All rights reserved. # # This code was derived from code written by Dan McMahill as part of the # latex-mk testsuite. The original code was covered by a BSD license # but the copyright holder is releasing the version for gerbv under the GPL. # # # Format: # # test_name | layout file(s) | [optional arguments to gerbv] | [mismatch] # # test_name - a single string with no spaces, tabs, *, +, ? (i.e. any "special" # characters) that identifies the test. # # layout file(s) - a list of layout files. Files listed are relative to # the $(top_srcdir)/tests/inputs directory. # # [optional arguments to gerbv] If specified, this last field will be used as # the gerbv export command line. Otherwise a default set of options will be # used. If preceded with +, then optional arguments will be added to default # set of options. If preceded with !, then gerbv will be only executed with # optional arguments (can be used for merging Gerber files). # # [mismatch] If specified as "mismatch" (no quotes), then the given layout # should *not* match the reference layout. This can be thought of as a test # on the testsuite to make sure we can properly detect when two PNG files # do not match. # # ###################################################################### # --------------------------------------------- # Existing layouts from the examples/ directory # --------------------------------------------- ###################################################################### # example_mentor_boardstation | ../../example/Mentor-BoardStation/artwork_1.grb # # example_am_test | ../../example/am-test/am-test.gbx # # example_cslk | ../../example/cslk/cslk.gbx # # example_dan_top | ../../example/dan/top.gbx #example_dan_top_mismatch | ../../example/dan/top_mod.gbx | | mismatch example_dan_top_sr | ../../example/dan/top_sr.gbx # # example_eaglecad1 | ../../example/eaglecad1/top-cop.gbx # This one is RS274-D # example_ekf1 # # example_ekf2_d1 | ../../example/ekf2/d1.grb example_ekf2_drill0 | ../../example/ekf2/drill0.exc example_ekf2_drill1 | ../../example/ekf2/drill1.exc example_ekf2_drill20 | ../../example/ekf2/drill20.exc example_ekf2_drill30 | ../../example/ekf2/drill30.exc example_ekf2_gnd | ../../example/ekf2/gnd.grb example_ekf2_l0 | ../../example/ekf2/l0.grb example_ekf2_l1 | ../../example/ekf2/l1.grb example_ekf2_l2 | ../../example/ekf2/l2.grb example_ekf2_l3 | ../../example/ekf2/l3.grb example_ekf2_l4 | ../../example/ekf2/l4.grb example_ekf2_l5 | ../../example/ekf2/l5.grb example_ekf2_pow | ../../example/ekf2/pow.grb example_ekf2_pow3 | ../../example/ekf2/pow3.grb example_ekf2_resplan | ../../example/ekf2/resplan.grb example_ekf2_sieb0 | ../../example/ekf2/sieb0.grb example_ekf2_sieb1 | ../../example/ekf2/sieb1.grb example_ekf2_stp0 | ../../example/ekf2/stp0.grb example_ekf2_stp1 | ../../example/ekf2/stp1.grb # # example_exposure | ../../example/exposure/example.grb # # example_jj_l1-1 | ../../example/jj/l1-1.grb example_jj_l1-2 | ../../example/jj/l1-2.grb example_jj_l1-3 | ../../example/jj/l1-3.grb example_jj_l1-orig | ../../example/jj/l1-orig.grb # # example_nollezappare_EtchLayer2Bottom | ../../example/nollezappare/EtchLayer2Bottom.gdo example_nollezappare_ThruHolePlated | ../../example/nollezappare/ThruHolePlated.ncd # # example_numpres_numpres_pcb_output_componentmask | ../../example/numpres/numpres.pcb.output_componentmask.grb example_numpres_numpres_pcb_output_componentsilk | ../../example/numpres/numpres.pcb.output_componentsilk.grb example_numpres_numpres.pcb.output_group1 | ../../example/numpres/numpres.pcb.output_group1.grb example_numpres_numpres.pcb.output_group2 | ../../example/numpres/numpres.pcb.output_group2.grb example_numpres_numpres.pcb.output_plated-drill | ../../example/numpres/numpres.pcb.output_plated-drill.grb example_numpres_numpres.pcb.output_soldermask | ../../example/numpres/numpres.pcb.output_soldermask.grb example_numpres_numpres.pcb.output_unplated-drill | ../../example/numpres/numpres.pcb.output_unplated-drill.grb # # example_orcad_rs232_cm_asb | ../../example/orcad/rs232_cm.asb example_orcad_rs232_cm_ast | ../../example/orcad/rs232_cm.ast example_orcad_rs232_cm_bot | ../../example/orcad/rs232_cm.bot example_orcad_rs232_cm_drd | ../../example/orcad/rs232_cm.drd example_orcad_rs232_cm_smb | ../../example/orcad/rs232_cm.smb example_orcad_rs232_cm_smt | ../../example/orcad/rs232_cm.smt example_orcad_rs232_cm_ssb | ../../example/orcad/rs232_cm.ssb example_orcad_rs232_cm_sst | ../../example/orcad/rs232_cm.sst example_orcad_rs232_cm_top | ../../example/orcad/rs232_cm.top example_orcad_thruhole_tap | ../../example/orcad/thruhole.tap # # example_pick_and_place_LED | ../../example/pick-and-place/LED.xy # # example_polarity_6_vbat | ../../example/polarity/6_vbat.gbr # # not sure what all to do with this one # example_protel_pnp # # test aperture macro number 7 # example_thermal_bpB | ../../example/thermal/bpB.GP1 example_thermal_dsp | ../../example/thermal/dsp.GP1 # # example_trailing_cd1r2.1_sieb0 | ../../example/trailing/cd1r2.1_sieb0.off example_trailing_cd1r2.1_sieb1 | ../../example/trailing/cd1r2.1_sieb1.off # # ###################################################################### # --------------------------------------------- # Layouts designed for the testsuite # --------------------------------------------- ###################################################################### # test-image-justify-1 | test-image-justify-1.gbx test-image-justify-2 | test-image-justify-2.gbx test-image-offset-1 | test-image-offset-1.gbx test-image-rotation-1 | test-image-rotation-1.gbx test-image-polarity-1 | test-image-polarity-1.gbx test-image-offset-2 | test-image-offset-2.gbx test-layer-axis-select-1 | test-layer-axis-select-1.gbx test-layer-knockout-1 | test-layer-knockout-1.gbx test-layer-knockout-2 | test-layer-knockout-2.gbx test-layer-mirror-image-1 | test-layer-mirror-image-1.gbx test-layer-mode-1 | test-layer-mode-1.gbx test-layer-offset-1 | test-layer-offset-1.gbx test-layer-rotation-1 | test-layer-rotation-1.gbx test-layer-scale-factor-1 | test-layer-scale-factor-1.gbx test-layer-step-and_repeat-1 | test-layer-step-and_repeat-1.gbx test-layer-step-and_repeat-2 | test-layer-step-and_repeat-2.gbx test-aperture-circle-1 | test-aperture-circle-1.gbx test-aperture-circle-full | test-aperture-circle-full.gbx test-aperture-obround-flash-1 | test-aperture-obround-flash-1.gbx test-aperture-rectangle-1 | test-aperture-rectangle-1.gbx test-aperture-circle-flash-1 | test-aperture-circle-flash-1.gbx test-aperture-rectangle-flash-1 | test-aperture-rectangle-flash-1.gbx test-aperture-obround-1 | test-aperture-obround-1.gbx test-aperture-polygon-flash-1 | test-aperture-polygon-flash-1.gbx test-aperture-macro-line21-rotation | test-aperture-macro-line21-rotation.gbx test-polygon-fill-1 | test-polygon-fill-1.gbx test-circular-interpolation-1 | test-circular-interpolation-1.gbx test-circular-interpolation-mq-ccw | test-circular-interpolation-mq-ccw.gbx test-circular-interpolation-zero-error | test-circular-interpolation-zero-error.gbx test-merge-a+b_temporary | test-merge-a.gbx test-merge-b.gbx | ! --export=rs274x --output=inputs/test-merge-a+b_temporary.gbx test-merge-a+b | test-merge-a+b_temporary.gbx # --------------------------------------------- # Excellon drill tests # --------------------------------------------- test-drill-trailing-zero-1 | test-drill-trailing-zero-1.exc test-drill-leading-zero-1 | test-drill-leading-zero-1.exc # Test the "R" command which repeats a drill hole a given # number of times with the given x and y step size test-drill-repeat-1 | test-drill-repeat-1.exc test-drill-trailing-zero-suppression | test-drill-trailing-zero-suppression.exc | + -p inputs/test-drill-trailing-zero-suppression.gvp # Test "G85" drilled slot test-drill-slot-drilled-g85 | test-drill-slot-drilled-g85.exc gerbv-2.7.0/test/inputs/0000755000175000017500000000000013423533413015007 5ustar carstencarstengerbv-2.7.0/test/inputs/test-image-polarity-1.gbx0000644000175000017500000000040213421555714021551 0ustar carstencarstenG04 Test image polarity * G04 Crosshairs should be cut out of a positive background* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IPNEG*% %ADD10C,0.050*% G04 Draw crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-drill-trailing-zero-suppression.gvp0000644000175000017500000000061213421555714024771 0ustar carstencarsten(gerbv-file-version! "2.0A") (define-layer! 0 (cons 'filename "test-drill-trailing-zero-suppression.exc") (cons 'visible #t) (cons 'color #(29555 29555 57054)) (cons 'attribs (list (list 'autodetect 'Boolean 0) (list 'zero_suppression 'Enum 2) (list 'units 'Enum 1) (list 'digits 'Integer 3) )) ) (define-layer! -1 (cons 'filename "") (cons 'color #(0 0 0)) ) (set-render-type! 0) gerbv-2.7.0/test/inputs/test-layer-rotation-1.gbx0000644000175000017500000000053113421555714021602 0ustar carstencarstenG04 Test layer rotation 1 * G04 Quarter star should be rotated 45 degrees counterclockwise, pointing* G04 the center line straight up * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %RO45*% %ADD10C,0.025*% G04 Quarter star * X1000Y0D02* G54D10* X2000Y0D01* X1000Y0D02* G54D10* X2000Y1000D01* X1000Y0D02* G54D10* X1000Y1000D01* M02* gerbv-2.7.0/test/inputs/Makefile.am0000644000175000017500000000203513421555714017051 0ustar carstencarsten## $Id$ ## # awk 'BEGIN{FS="|"} /^[a-zA-Z0-9]/ {x=$2; printf("\t%s \\\n", x)}' tests.list >> inputs/Makefile.am EXTRA_DIST= \ test-image-justify-1.gbx \ test-image-justify-2.gbx \ test-image-offset-1.gbx \ test-image-rotation-1.gbx \ test-image-polarity-1.gbx \ test-image-offset-2.gbx \ test-layer-axis-select-1.gbx \ test-layer-knockout-1.gbx \ test-layer-knockout-2.gbx \ test-layer-mirror-image-1.gbx \ test-layer-mode-1.gbx \ test-layer-offset-1.gbx \ test-layer-rotation-1.gbx \ test-layer-scale-factor-1.gbx \ test-layer-step-and_repeat-1.gbx \ test-layer-step-and_repeat-2.gbx \ test-include-file-1.gbx \ include-file-1.gbx \ test-aperture-circle-1.gbx \ test-aperture-obround-flash-1.gbx \ test-aperture-rectangle-1.gbx \ test-aperture-circle-flash-1.gbx \ test-aperture-rectangle-flash-1.gbx \ test-aperture-obround-1.gbx \ test-aperture-polygon-flash-1.gbx \ test-drill-leading-zero-1.exc \ test-drill-repeat-1.exc \ test-drill-trailing-zero-1.exc \ test-polygon-fill-1.gbx \ test-circular-interpolation-1.gbx gerbv-2.7.0/test/inputs/test-layer-mirror-image-1.gbx0000644000175000017500000000055513421555714022343 0ustar carstencarstenG04 Test layer mirror image 1 * G04 Quarter star is drawn pointing towards +X, +Y. Mirror G04 flips around the Y axis and the star should point towards -X, -Y * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %MIA1B1*% %ADD10C,0.050*% G04 Draw quarter star * X0Y0D02* G54D10* X1000Y0D01* X0Y0D02* G54D10* X1000Y1000D01* X0Y0D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-layer-step-and_repeat-2.gbx0000644000175000017500000000045713421555714023026 0ustar carstencarstenG04 Test step and repeat 1* G04 Repeat a crosshair 3 times in the x direction and 2 times in the Y * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %SRX3Y2I1J1*% %ADD10C,0.050*% G04 Draw a simple square* G36* G01X00400Y0D02* X00600Y0D01* X00600Y00200D01* X00400Y00200D01* X00400Y0D01* G37* M02* gerbv-2.7.0/test/inputs/test-aperture-circle-flash-1.gbx0000644000175000017500000000077613421555714023025 0ustar carstencarstenG04 Test flashing of circular apertures* G04 Four groups of circular apertures are arranged in a square* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% %ADD11C,0.050X0.025*% %ADD12C,0.050X0.025X0.030*% G04 No hole, centered at 0,0 * G54D10* X0Y0D03* G04 Round hole, centered at 0.1,0 * G54D11* X00100Y0D03* G04 Square hole, centered at 0,0.1 * G54D12* X0Y00100D03* G04 Two, with round holes, slightly overlapping, centered at 0.1,0.1 * G54D11* X00100Y00090D03* X00100Y00110D03* M02* gerbv-2.7.0/test/inputs/test-aperture-rectangle-1.gbx0000644000175000017500000000150413421555714022423 0ustar carstencarstenG04 Test drawing with rectangular apertures* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10R,0.050X0.025*% G04 Note: aperture 11 has a round hole in it, but this shouldn't ever show when* G04 drawing with it (only should show in flashes)* %ADD11R,0.075X0.050X0.025*% G04 No hole, centered at 0,0 * G54D10* G04 Recenter to 0,0 G01X0Y0D02* G04 Draw a line segment* X00100Y0D01* G04 Turn off for a segment* X00200Y0D02* G04 Draw another line at angle* G54D11* X00300Y00100D01* G04 Turn off for a segment* X0Y00100D02* G54D10* G04 Turn on circular interpolation* G75* G03X0Y00300I0J00100D01* G04 Turn off for a segment* X00500Y00D02* G04 Draw a larger radius arc* G03X00350Y00150I-00250J-00050D01* G04 Turn off for a segment* X00250Y00200D02* G04 Draw a larger clockwise radius arc* G02X00350Y00350I00250J-00050D01* M02* gerbv-2.7.0/test/inputs/test-layer-axis-select-1.gbx0000644000175000017500000000041113421555714022161 0ustar carstencarstenG04 Test layer axis select * G04 Line is drawn along A axis, then axis select switches it and renders * G04 line along y axis * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ASAYBX*% %ADD10C,0.050*% G04 Draw line * X-1000Y0D02* G54D10* X1000Y0D01* M02* gerbv-2.7.0/test/inputs/include-file-1.gbx0000644000175000017500000000010313421555714020207 0ustar carstencarstenX-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* gerbv-2.7.0/test/inputs/test-image-offset-2.gbx0000644000175000017500000000045313421555714021203 0ustar carstencarstenG04 Test image offset uses current units * G04 Crosshairs should be centered on 0,0 in final rendering* G04 Handcoded by Julian Lamb * %MOMM*% %FSLAX23Y23*% %IOB-25.4*% %MOIN*% %ADD10C,0.050*% G04 Crosshairs to be on 0,0 * X-1000Y1000D02* G54D10* X1000Y1000D01* X0Y0D02* G54D10* X0Y2000D01* M02* gerbv-2.7.0/test/inputs/test-image-justify-2.gbx0000644000175000017500000000047413421555714021415 0ustar carstencarstenG04 Test image justify 2* G04 Crosshairs should be centered in X and Y (platen size * G04 is assumed to be 2x the overall size of the image) * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IJACBC*% %ADD10C,0.050*% G04 Crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-polygon-fill-1.gbx0000644000175000017500000000133013421555714021242 0ustar carstencarstenG04 Test drawing with polygon apertures* G04 Four small polygon fills aranged in a square G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Draw a rectangle with a rounded right side* G36* G01X0Y0D02* X00200Y0D01* G75* G03X00200Y00200I0J00100D01* X0Y00200D01* G04 Do not close with a final line, so let gerbv automatically close* G37* G04 Draw a simple square* G36* G01X00400Y0D02* X00600Y0D01* X00600Y00200D01* X00400Y00200D01* X00400Y0D01* G37* G04 Draw a small diamond* G36* G01X00100Y00300D02* X00200Y00400D01* X00100Y00500D01* X0Y00400D01* X00100Y00300D01* G37* G04 Draw a very-narrow slit* G36* G01X00500Y00300D02* X00510Y00300D01* X00510Y00500D01* X00500Y00500D01* X00500Y00300D01* G37* M02* gerbv-2.7.0/test/inputs/test-merge-a.gbx0000644000175000017500000000257613421555714020023 0ustar carstencarstenG04 This is an RS-274x file exported by * G04 gerbv version 2.6A * G04 More information is available about gerbv at * G04 http://gerbv.geda-project.org/ * G04 --End of header info--* %MOIN*% %FSLAX34Y34*% %IPPOS*% G04 --Define apertures--* %ADD10C,0.0060*% %ADD11C,0.0118*% %ADD12C,0.0039*% %ADD13C,0.0059*% %ADD14C,0.0059*% %ADD15C,0.0138*% %ADD16C,0.0138*% %ADD17C,0.0150*% %ADD18C,0.0043*% %ADD19C,0.0080*% %ADD20R,0.0350X0.0550*% %ADD21R,0.0236X0.1181*% %ADD22R,0.1181X0.1575*% %ADD23C,0.1417*% %ADD24C,0.0433*% %ADD25R,0.0630X0.0630*% %ADD26C,0.0630*% %ADD27C,0.0630*% G04 --Start main section--* G54D11* G01X0021062Y0010433D02* G01X0026377Y0010433D01* G01X0026377Y0010433D02* G01X0026377Y0012598D01* G01X0015748Y0012598D02* G01X0015748Y0010433D01* G01X0015748Y0010433D02* G01X0021062Y0010433D01* %LPC*% G54D21* G01X0025196Y0009842D03* G01X0024803Y0009842D03* G01X0024409Y0009842D03* G01X0024015Y0009842D03* G01X0023622Y0009842D03* G01X0023228Y0009842D03* G01X0022834Y0009842D03* G01X0022440Y0009842D03* G01X0022047Y0009842D03* G01X0021653Y0009842D03* G01X0021259Y0009842D03* G01X0020866Y0009842D03* G01X0020472Y0009842D03* G01X0020078Y0009842D03* G01X0019685Y0009842D03* G01X0019291Y0009842D03* G01X0018897Y0009842D03* G01X0018503Y0009842D03* G01X0018110Y0009842D03* G01X0017716Y0009842D03* G01X0017322Y0009842D03* G01X0016929Y0009842D03* G54D22* G01X0026574Y0011417D03* G01X0015551Y0011417D03* M02* gerbv-2.7.0/test/inputs/test-layer-mode-1.gbx0000644000175000017500000000175013421555714020673 0ustar carstencarstenG04 Test handling of unit changes within a RS274X file * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% G04 Aperture 10 should be in Inches * %ADD10C,0.050*% %MOMM*% G04 Aperture 11 should be in MMs * %ADD11C,1.250*% G04 Aperture 12 should be in MMs * %AMTHERMAL* 7,0,0,25.4,12.7,2.54,0*% %MOIN*% G04 Aperture 13 is in inches * %AMTHERMALTWO* 7,0,0,1,0.5,0.1,0*% %MOMM*% %ADD12THERMAL*% %MOIN*% %ADD13THERMALTWO*% %MOIN*% G04 Box 1, using aperture 10* X0Y0D02* G54D10* X0Y0D01* X1000D01* Y1000D01* X0D01* Y0D01* G04 Box 2, using aperture 11* X2000Y0D02* G54D11* X2000Y0D01* X3000D01* Y1000D01* X2000D01* Y0D01* %MOMM*% G04 Box 3, using aperture 10* X100000Y0D02* G54D10* X100000Y0D01* X125000D01* Y25000D01* X100000D01* Y0D01* G04 Draw Thermal in box 1* G54D12* Y12000X12700D03* G04 Draw Thermal in box 2* G04 ..switch to inches for coordinates* G70* Y500X2500D02* G54D12* Y500X2500D03* G04 ..switch to mms for coordinates* G71* G04 Draw Thermal in box 3* G54D13* Y12000X112000D03* M02* gerbv-2.7.0/test/inputs/test-aperture-circle-full.gbx0000644000175000017500000000020213421555714022514 0ustar carstencarsten%MOIN*% %FSLAX34Y34*% %IPPOS*% %ADD10C,0.0043*% G54D10* G01X0021282Y0007000D02* G75* G02X0021282Y0007000I-000282J0000000D01* M02* gerbv-2.7.0/test/inputs/test-include-file-1.gbx0000644000175000017500000000034513421555714021174 0ustar carstencarstenG04 Test include file 1 * G04 Crosshairs should be drawn at 0,0 in final rendering* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IOA-2.0B-1.0*% %ADD10C,0.050*% G04 Crosshairs to be on 0,0 * %IFinclude-file-1.gbx*% M02* gerbv-2.7.0/test/inputs/test-image-offset-1.gbx0000644000175000017500000000043313421555714021200 0ustar carstencarstenG04 Test image polarity * G04 Crosshairs should be centered on 0,0 in final rendering* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IOA-2.0B-1.0*% %ADD10C,0.050*% G04 Crosshairs to be on 0,0 * X1000Y1000D02* G54D10* X3000Y1000D01* X2000Y0D02* G54D10* X2000Y2000D01* M02* gerbv-2.7.0/test/inputs/test-circular-interpolation-zero-error.gbx0000644000175000017500000000044613421555714025275 0ustar carstencarsten%MOIN*% %FSLAX34Y34*% %IPPOS*% G04 --Define apertures--* %ADD11C,0.007*% G04 --Start main section--* G54D11* G01X1100Y0D02* G75* G02X1100Y0I-1100J0D01* G01X0Y1200D02* G75* G02X0Y1200I0J-1200D01* G01X-1300Y0D02* G75* G02X-1300Y0I1300J0D01* G01X0Y-1400D02* G75* G02X0Y-1400I0J1400D01* M02* gerbv-2.7.0/test/inputs/test-image-rotation-1.gbx0000644000175000017500000000035213421555714021551 0ustar carstencarstenG04 Test image rotation * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IR270*% %ADD10C,0.050*% G04 Quarter star * X1000Y0D02* G54D10* X2000Y0D01* X1000Y0D02* G54D10* X2000Y1000D01* X1000Y0D02* G54D10* X1000Y1000D01* M02* gerbv-2.7.0/test/inputs/test-aperture-polygon-flash-1.gbx0000644000175000017500000000113113421555714023235 0ustar carstencarstenG04 Test flashing of polygon apertures* G04 Four groups of polygon apertures are arranged in a square* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10P,0.050X3*% %ADD11P,0.050X6X-45X0.035*% %ADD12P,0.040X10X25X0.025X0.025X0.0150*% G04 Triangle, centered at 0,0 * G54D10* X0Y0D03* G04 Hexagon with round hole rotate 45 degreed ccwise, centered at 0.1,0 * G54D11* X00100Y0D03* G04 10-sided with square hole rotated 25 degrees, centered at 0,0.1 * G54D12* X0Y00100D03* G04 Two, with round holes, slightly overlapping, centered at 0.1,0.1 * G54D11* X00100Y00090D03* X00100Y00110D03* M02* gerbv-2.7.0/test/inputs/test-circular-interpolation-mq-ccw.gbx0000644000175000017500000000015413421555714024352 0ustar carstencarsten%MOIN*% %FSLAX25Y25*% %LNOUTLINE*% %ADD22C,0.0100*% G54D22*X0Y36000D02*G75*G03X0Y36000I36000J0D01*G01* M02* gerbv-2.7.0/test/inputs/test-merge-b.gbx0000644000175000017500000000637013421555714020020 0ustar carstencarstenG04 This is an RS-274x file exported by * G04 gerbv version 2.6A * G04 More information is available about gerbv at * G04 http://gerbv.geda-project.org/ * G04 --End of header info--* %MOIN*% %FSLAX34Y34*% %IPPOS*% G04 --Define apertures--* %ADD10C,0.0060*% %ADD11C,0.0079*% %ADD12C,0.0059*% %ADD13C,0.0050*% %ADD14C,0.0039*% %ADD15C,0.0118*% %ADD16C,0.0098*% %ADD17C,0.0120*% %ADD18C,0.0028*% %ADD19C,0.0047*% %ADD20C,0.0039*% %ADD21C,0.0075*% %ADD22C,0.0043*% %ADD23C,0.0080*% %ADD24R,0.0787X0.0354*% %ADD25R,0.0354X0.0787*% %ADD26R,0.0551X0.0551*% %ADD27R,0.0118X0.0394*% %ADD28R,0.0360X0.0360*% %ADD29R,0.0350X0.0550*% %ADD30R,0.0550X0.0350*% %ADD31R,0.0591X0.0394*% %ADD32R,0.0300X0.0200*% %ADD33O,0.0984X0.0512*% %ADD34R,0.0315X0.0157*% %ADD35R,0.0200X0.0300*% %ADD36R,0.0630X0.0630*% %ADD37C,0.0630*% %ADD38C,0.1417*% %ADD39R,0.0559X0.0866*% %ADD40R,0.0394X0.0984*% %ADD41R,0.0157X0.0236*% G04 --Start main section--* G54D11* G01X0003464Y0013897D02* G01X0003464Y0013858D01* G01X0003464Y0013858D02* G01X0003149Y0014015D01* G01X0003464Y0014015D02* G01X0003464Y0013897D01* G01X0003149Y0014015D02* G01X0003464Y0014015D01* G01X0003464Y0014015D02* G01X0003464Y0014173D01* G01X0003464Y0014173D02* G01X0003149Y0014015D01* G01X0002657Y0014822D02* G01X0008208Y0014822D01* G01X0008208Y0014822D02* G01X0008208Y0009114D01* G01X0008208Y0009114D02* G01X0002500Y0009114D01* G01X0002500Y0009114D02* G01X0002500Y0014665D01* G01X0002500Y0014665D02* G01X0002657Y0014822D01* G54D20* G01X0002563Y0014800D02* G01X0002593Y0014800D01* G01X0002593Y0014800D02* G01X0002623Y0014785D01* G01X0002623Y0014785D02* G01X0002638Y0014755D01* G01X0002638Y0014755D02* G01X0002638Y0014725D01* G01X0002638Y0014725D02* G01X0002623Y0014695D01* G01X0002623Y0014695D02* G01X0002593Y0014680D01* G01X0002593Y0014680D02* G01X0002563Y0014680D01* G01X0002563Y0014680D02* G01X0002533Y0014695D01* G01X0002533Y0014695D02* G01X0002518Y0014725D01* G01X0002518Y0014725D02* G01X0002518Y0014755D01* G01X0002518Y0014755D02* G01X0002533Y0014785D01* G01X0002533Y0014785D02* G01X0002563Y0014800D01* %LPC*% G54D24* G01X0002500Y0014015D03* G01X0002500Y0013503D03* G01X0002500Y0012992D03* G01X0002500Y0012480D03* G01X0002500Y0011968D03* G01X0002500Y0011456D03* G01X0002500Y0010944D03* G01X0002500Y0010433D03* G01X0002500Y0009921D03* G54D25* G01X0003307Y0009114D03* G01X0003818Y0009114D03* G01X0004330Y0009114D03* G01X0004842Y0009114D03* G01X0005354Y0009114D03* G01X0005866Y0009114D03* G01X0006377Y0009114D03* G01X0006889Y0009114D03* G01X0007401Y0009114D03* G54D24* G01X0008208Y0009921D03* G01X0008208Y0010433D03* G01X0008208Y0010944D03* G01X0008208Y0011456D03* G01X0008208Y0011968D03* G01X0008208Y0012480D03* G01X0008208Y0012992D03* G01X0008208Y0013503D03* G01X0008208Y0014015D03* G54D25* G01X0007401Y0014822D03* G01X0006889Y0014822D03* G01X0006377Y0014822D03* G01X0005866Y0014822D03* G01X0005354Y0014822D03* G01X0004842Y0014822D03* G01X0004330Y0014822D03* G01X0003818Y0014822D03* G01X0003307Y0014822D03* G54D26* G01X0005944Y0011377D03* G01X0004763Y0011377D03* G01X0004763Y0012559D03* G01X0005944Y0012559D03* G01X0004763Y0013425D03* G01X0005944Y0013425D03* G01X0003897Y0012559D03* G01X0003897Y0011377D03* G01X0003897Y0010511D03* G01X0004763Y0010511D03* G01X0005944Y0010511D03* G01X0006811Y0011377D03* G01X0006811Y0010511D03* G01X0006811Y0012559D03* G01X0006811Y0013425D03* M02* gerbv-2.7.0/test/inputs/test-layer-step-and_repeat-1.gbx0000644000175000017500000000043113421555714023015 0ustar carstencarstenG04 Test step and repeat 1* G04 Repeat a crosshair 3 times in the x direction and 2 times in the Y * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %SRX3Y2I5.0J2*% %ADD10C,0.050*% G04 Draw crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-drill-slot-drilled-g85.exc0000644000175000017500000000007413421555714022577 0ustar carstencarstenM48 INCH T4C0.05 G05 T4 X2.0872Y0.6494G85X2.1463Y0.6494 M30 gerbv-2.7.0/test/inputs/Makefile.in0000644000175000017500000003770313423533413017066 0ustar carstencarsten# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = test/inputs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/extern-inline.m4 $(top_srcdir)/m4/fcntl-o.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \ $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/lock.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/threadlib.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \ $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CAIRO_CFLAGS = @CAIRO_CFLAGS@ CAIRO_LIBS = @CAIRO_LIBS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GENCAT = @GENCAT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIBC2 = @GLIBC2@ GLIBC21 = @GLIBC21@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GTK_UPDATE_ICON_CACHE_BIN = @GTK_UPDATE_ICON_CACHE_BIN@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_NEWLOCALE = @HAVE_NEWLOCALE@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_VISIBILITY = @HAVE_VISIBILITY@ HAVE_WPRINTF = @HAVE_WPRINTF@ IM_ANIMATE = @IM_ANIMATE@ IM_COMPARE = @IM_COMPARE@ IM_COMPOSITE = @IM_COMPOSITE@ IM_CONVERT = @IM_CONVERT@ IM_DISPLAY = @IM_DISPLAY@ IM_MONTAGE = @IM_MONTAGE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_DEFAULT_VERBOSITY = @INTL_DEFAULT_VERBOSITY@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBC = @LTLIBC@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@ RANLIB = @RANLIB@ SED = @SED@ SETENV = @SETENV@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ WIN32 = @WIN32@ WINDRES = @WINDRES@ WOE32 = @WOE32@ WOE32DLL = @WOE32DLL@ XDGDATADIR = @XDGDATADIR@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ gsettingsschemadir = @gsettingsschemadir@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ nsgmls = @nsgmls@ oldincludedir = @oldincludedir@ onsgmls = @onsgmls@ pdfdir = @pdfdir@ po4a_gettextize = @po4a_gettextize@ po4a_translate = @po4a_translate@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # awk 'BEGIN{FS="|"} /^[a-zA-Z0-9]/ {x=$2; printf("\t%s \\\n", x)}' tests.list >> inputs/Makefile.am EXTRA_DIST = \ test-image-justify-1.gbx \ test-image-justify-2.gbx \ test-image-offset-1.gbx \ test-image-rotation-1.gbx \ test-image-polarity-1.gbx \ test-image-offset-2.gbx \ test-layer-axis-select-1.gbx \ test-layer-knockout-1.gbx \ test-layer-knockout-2.gbx \ test-layer-mirror-image-1.gbx \ test-layer-mode-1.gbx \ test-layer-offset-1.gbx \ test-layer-rotation-1.gbx \ test-layer-scale-factor-1.gbx \ test-layer-step-and_repeat-1.gbx \ test-layer-step-and_repeat-2.gbx \ test-include-file-1.gbx \ include-file-1.gbx \ test-aperture-circle-1.gbx \ test-aperture-obround-flash-1.gbx \ test-aperture-rectangle-1.gbx \ test-aperture-circle-flash-1.gbx \ test-aperture-rectangle-flash-1.gbx \ test-aperture-obround-1.gbx \ test-aperture-polygon-flash-1.gbx \ test-drill-leading-zero-1.exc \ test-drill-repeat-1.exc \ test-drill-trailing-zero-1.exc \ test-polygon-fill-1.gbx \ test-circular-interpolation-1.gbx all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/inputs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu test/inputs/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gerbv-2.7.0/test/inputs/test-aperture-macro-line21-rotation.gbx0000644000175000017500000000031413421555714024345 0ustar carstencarsten%MOIN*% %FSLAX34Y34*% %IPPOS*% G04 --Define apertures--* %AMMACRO12* 21,1,0.078700,0.118100,0.000000,0.000000,15.000000* % %ADD12MACRO12*% G04 --Start main section--* G54D12* G01X0003000Y0003000D03* M02* gerbv-2.7.0/test/inputs/test-image-justify-1.gbx0000644000175000017500000000044013421555714021405 0ustar carstencarstenG04 Test image justify 1* G04 Crosshairs should be justified to the X axis * G04 and 0.5 inches offset from Y axis * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %IJB.5*% %ADD10C,0.050*% G04 Crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-aperture-obround-1.gbx0000644000175000017500000000150413421555714022127 0ustar carstencarstenG04 Test drawing with rectangular apertures* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10O,0.050X0.025*% G04 Note: aperture 11 has a round hole in it, but this shouldn't ever show when* G04 drawing with it (only should show in flashes)* %ADD11O,0.075X0.050X0.025*% G04 No hole, centered at 0,0 * G54D10* G04 Recenter to 0,0 G01X0Y0D02* G04 Draw a line segment* X00100Y0D01* G04 Turn off for a segment* X00200Y0D02* G04 Draw another line at angle* G54D11* X00300Y00100D01* G04 Turn off for a segment* X0Y00100D02* G54D10* G04 Turn on circular interpolation* G75* G03X0Y00300I0J00100D01* G04 Turn off for a segment* X00500Y00D02* G04 Draw a larger radius arc* G03X00350Y00150I-00250J-00050D01* G04 Turn off for a segment* X00250Y00200D02* G04 Draw a larger clockwise radius arc* G02X00350Y00350I00250J-00050D01* M02* gerbv-2.7.0/test/inputs/test-circular-interpolation-1.gbx0000644000175000017500000000134313421555714023324 0ustar carstencarstenG04 Test circular interpolation* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G54D10* G04 Recenter to 0,0* G01X0Y0D02* G04 Turn on multi-quadrant mode* G75* G03X0Y00200I0J00100D01* G04 Switch to quadrant mode, draw ccwise* G74* G01X00400Y0D02* G03X00470Y00080I0J00100D01* G04 Draw things clockwise on the top two objects* G04 Turn on multi-quadrant mode* G75* G01X00100Y00300D02* G02X00100Y00500I0J00100D01* G04 Switch to quadrant mode, draw clockwise* G04 Note: since this is single quadrant mode, I and J must be* G04 positive, and the parser should automatically negate the J value* G04 to make the curve travel in the clockwise direction* G74* G01X00400Y00300D02* G02X00500Y00300I00150J00300D01* M02* gerbv-2.7.0/test/inputs/test-layer-scale-factor-1.gbx0000644000175000017500000000043613421555714022312 0ustar carstencarstenG04 Test layer scale factor 1 * G04 Crosshairs should be centered on 0,0 and 2 inches wide and 1 inch tall* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %SFA2B1*% %ADD10C,0.025*% G04 Crosshairs to be on 0,0 * X-500Y0D02* G54D10* X500Y0D01* X0Y-500D02* G54D10* X0Y500D01* M02* gerbv-2.7.0/test/inputs/test-layer-offset-1.gbx0000644000175000017500000000041013421555714021225 0ustar carstencarstenG04 Test layer offset 1 * G04 Crosshairs should be centered on 0,0* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %OFA-2.0B-1.0*% %ADD10C,0.050*% G04 Crosshairs to be on 0,0 * X1000Y1000D02* G54D10* X3000Y1000D01* X2000Y0D02* G54D10* X2000Y2000D01* M02* gerbv-2.7.0/test/inputs/test-aperture-obround-flash-1.gbx0000644000175000017500000000101713421555714023221 0ustar carstencarstenG04 Test flashing of obround apertures* G04 Four groups of obround apertures are arranged in a square* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10O,0.050X0.080*% %ADD11O,0.080X0.050X0.025*% %ADD12O,0.050X0.025X0.025X0.0150*% G04 No hole, centered at 0,0 * G54D10* X0Y0D03* G04 Round hole, centered at 0.1,0 * G54D11* X00100Y0D03* G04 Square hole, centered at 0,0.1 * G54D12* X0Y00100D03* G04 Two, with round holes, slightly overlapping, centered at 0.1,0.1 * G54D11* X00100Y00090D03* X00100Y00110D03* M02* gerbv-2.7.0/test/inputs/test-drill-trailing-zero-suppression.exc0000644000175000017500000000534713421555714024766 0ustar carstencarstenM48 T01C.5000 T02C1.0500 T03C1.1500 T04C1.2500 T05C1.3000 T06C1.4500 T07C3.2000 T08C3.3000 % M71 G93X0Y0 T01 X126467Y128118 X135509Y096266 X133985 X130759Y148755 Y150076 X131915Y148755 X130759Y151397 X131915Y150076 Y151397 X134112Y15113 Y149606 X1397Y095885 X143256Y143383 X14017Y145783 X141161Y150571 X150749Y102997 X151384Y101473 X147955Y117983 X150495Y140462 X156337Y100203 X154432Y122936 X153543Y131826 X15428Y138074 X156718Y146939 X157099Y149225 X158826Y153543 X162687Y081788 X162941Y080645 X161671Y082296 Y080899 Y079121 X162941Y079502 X162687Y078359 X161671Y077851 X162433Y128397 X163703Y140716 X161544Y145796 X169291Y101727 X170561Y104775 X173126Y101041 X169418Y116205 Y119126 X173482 X169418Y117729 X173482 X171958Y127381 X170815Y12573 Y123698 X170218Y138849 X177927Y103378 X176784Y104394 X180289Y111443 X176657Y118745 X178943 X180594Y132334 X1778Y138557 X176911Y147193 X186398Y107975 X18796Y118745 X185674 X186893Y139179 X184747 X186182Y146685 X184658 X191643Y101727 X191668Y111709 X19177Y11811 X195707Y124841 X195326Y139192 X130759Y152718 X131915 X141351Y099568 X150876Y090678 X14859Y121539 X146177Y144018 X148463Y128905 X153543Y130302 X163322Y091059 X162433Y130048 X17399Y106172 X171069Y099822 X180213Y099187 X179794Y137033 X180619Y144793 X176784Y145542 X188214Y091186 X189357Y129159 X191631Y091186 X194716Y114402 X137541Y10033 X1524Y119253 X144018Y12827 X152248Y125374 X152273Y134874 X152387Y143307 X129604Y150076 Y151397 Y148755 X152387Y145618 X160655Y081788 X160401Y080645 Y079502 X160655Y078359 X160147Y094234 X175387Y105283 X159766Y102616 X168021Y118364 X159258Y126873 Y128524 X183261Y136042 X167259Y133223 X175895Y13208 Y130683 X175006Y142113 X175641Y14859 X183007Y146685 X19003Y113259 X1905Y115189 Y118872 X197993Y131953 X191021Y139179 X197358Y139192 X144526Y122174 X129604Y152718 T02 X164109Y128943 Y126403 Y123863 Y121323 Y118783 X140868Y125222 X138328 X146431Y132461 Y137541 X140894Y136208 X138354 X152806Y151486 Y148946 X174015Y138913 Y136373 X192532Y13589 Y13081 X186817Y116713 X184277 X181737 X179197 X176657 X184277 X181737 X179197 X176657 T03 X133401Y157988 X137211 X148895 X152705 X141021 X144831 X179121 X182931 X171501 X175311 X163881 X167691 X186741 X190551 X156261 X160071 T04 X123825Y08509 Y09017 X149987Y146329 Y151409 X146431Y146329 Y151409 X129413Y08509 Y09017 X139319Y106934 X134239 X139319Y111379 X134239 X146812Y108585 Y113665 X139065Y08382 X136525Y08636 X133985Y08382 X17399 X17145Y08636 X16891Y08382 X1651Y110236 X15494 X154305Y08382 X151765Y08636 X149225Y08382 X18923 X18669Y08636 X18415Y08382 X126403Y124536 X128943Y121996 X131483Y124536 T05 X157861Y114046 X155258Y114618 X160147Y112649 T06 X126873Y109982 Y104902 Y099822 Y094742 T07 X136525Y067031 X17145 X151765 X18669 X128943Y141326 T08 X12562Y11942 Y06542 Y15742 X19762Y11942 Y06542 Y15742 M30 gerbv-2.7.0/test/inputs/test-layer-knockout-2.gbx0000644000175000017500000000064613421555714021610 0ustar carstencarstenG04 Test layer knockout 2* G04 A cleared 0.5 inch border should surround the crosshairs * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Create a large dark area * G36* X-2000Y-2000D02* X2000Y-2000D01* X2000Y2000D01* X-2000Y2000D01* X-2000Y-2000D01* G37* G04 Create the knockout region * %KOCK0.5*% G04 Draw crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-drill-leading-zero-1.exc0000644000175000017500000000011213421555714022307 0ustar carstencarstenM48 INCH,LZ T13C0.05 % T13 X-001000Y030000 X00000Y03000 X001Y03 M30 gerbv-2.7.0/test/inputs/test-aperture-circle-1.gbx0000644000175000017500000000146513421555714021726 0ustar carstencarstenG04 Test drawing with circular apertures* G04 Hand coded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Note: aperture 11 has a round hole in it, but this shouldn't ever show when* G04 drawing with it (only should show in flashes)* %ADD11C,0.075X0.050*% G04 No hole, centered at 0,0 * G54D10* G04 Recenter to 0,0 G01X0Y0D02* G04 Draw a line segment* X00100Y0D01* G04 Turn off for a segment* X00200Y0D02* G04 Draw another line at angle* G54D11* X00300Y00100D01* G04 Turn off for a segment* X0Y00100D02* G54D10* G04 Turn on circular interpolation* G75* G03X0Y00300I0J00100D01* G04 Turn off for a segment* X00500Y00D02* G04 Draw a larger radius arc* G03X00350Y00150I-00250J-00050D01* G04 Turn off for a segment* X00250Y00200D02* G04 Draw a larger clockwise radius arc* G02X00350Y00350I00250J-00050D01* M02* gerbv-2.7.0/test/inputs/test-layer-knockout-1.gbx0000644000175000017500000000065313421555714021605 0ustar carstencarstenG04 Test layer knockout 1* G04 A cleared 3x3 square should surround the crosshairs * G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10C,0.050*% G04 Create a large dark area * G36* X-2000Y-2000D02* X2000Y-2000D01* X2000Y2000D01* X-2000Y2000D01* X-2000Y-2000D01* G37* G04 Create the knockout region * %KOCX-1.5Y-1.5I3J3*% G04 Draw crosshairs * X-1000Y0D02* G54D10* X1000Y0D01* X0Y-1000D02* G54D10* X0Y1000D01* M02* gerbv-2.7.0/test/inputs/test-drill-trailing-zero-1.exc0000644000175000017500000000011413421555714022517 0ustar carstencarstenM48 INCH,TZ T13C0.05 % T13 X-001000Y030000 X0Y030000 X01000Y30000 M30 gerbv-2.7.0/test/inputs/test-drill-repeat-1.exc0000644000175000017500000000026713421555714021222 0ustar carstencarstenM48 INCH,TZ T01C0.050 % T01 X0000Y0000 X10000Y10000 R5X1000 X20000Y10000 R5Y1000 X30000Y10000 R5X1000Y1500 X10000Y00000 R5X-1000 X20000Y00000 R5Y-1000 X30000Y00000 R5X-1000Y-1500 M30 gerbv-2.7.0/test/inputs/test-aperture-rectangle-flash-1.gbx0000644000175000017500000000102713421555714023516 0ustar carstencarstenG04 Test flashing of rectangular apertures* G04 Four groups of rectangular apertures are arranged in a square* G04 Handcoded by Julian Lamb * %MOIN*% %FSLAX23Y23*% %ADD10R,0.050X0.080*% %ADD11R,0.080X0.050X0.025*% %ADD12R,0.050X0.025X0.025X0.0150*% G04 No hole, centered at 0,0 * G54D10* X0Y0D03* G04 Round hole, centered at 0.1,0 * G54D11* X00100Y0D03* G04 Square hole, centered at 0,0.1 * G54D12* X0Y00100D03* G04 Two, with round holes, slightly overlapping, centered at 0.1,0.1 * G54D11* X00100Y00090D03* X00100Y00110D03* M02* gerbv-2.7.0/icon-theme-installer0000755000175000017500000001252313421555714016470 0ustar carstencarsten#!/bin/sh # icon-theme-installer # Copyright (C) 2006 Novell, Inc. # Written by Aaron Bockover # Licensed under the MIT/X11 license # # Modified by Peter Clifton to allow icons with numerals in the filename # # This script is meant to be invoked from within a Makefile/Makefile.am # in the install-data-local and uninstall-data sections. It handles the # task of properly installing icons into the icon theme. It requires a # few arguments to set up its environment, and a list of files to be # installed. The format of the file list is critical: # # , # # apps,music-player-banshee.svg # apps,music-player-banshee-16.png # apps,music-player-banshee-22.png # # is the icon theme category, for instance, apps, devices, # actions, emblems... # # must have a basename in the form of: # # proper-theme-name[-]. # # Where should be either nothing, which will default to scalable # or \-[0-9]{2}, which will expand to x. For example: # # music-player-banshee-16.png # # The here is -16 and will expand to 16x16 per the icon theme spec # # What follows is an example Makefile.am for icon theme installation: # # --------------- # theme=hicolor # themedir=$(datadir)/icons/$(theme) # theme_icons = \ # apps,music-player-banshee.svg \ # apps,music-player-banshee-16.png \ # apps,music-player-banshee-22.png \ # apps,music-player-banshee-24.png \ # apps,music-player-banshee-32.png # # install_icon_exec = $(top_srcdir)/build/icon-theme-installer -t $(theme) -s $(srcdir) -d "x$(DESTDIR)" -b $(themedir) -m "$(mkinstalldirs)" -x "$(INSTALL_DATA)" # install-data-local: # $(install_icon_exec) -i $(theme_icons) # # uninstall-hook: # $(install_icon_exec) -u $(theme_icons) # # MAINTAINERCLEANFILES = Makefile.in # EXTRA_DIST = $(wildcard *.svg *.png) # --------------- # # Arguments to this program: # # -i : Install # -u : Uninstall # -t : Theme name (hicolor) # -b : Theme installation dest directory [x$(DESTDIR)] - Always prefix # this argument with x; it will be stripped but will act as a # placeholder for zero $DESTDIRs (only set by packagers) # -d : Theme installation directory [$(hicolordir)] # -s : Source directory [$(srcdir)] # -m : Command to exec for directory creation [$(mkinstalldirs)] # -x : Command to exec for single file installation [$(INSTALL_DATA)] # : All remainging should be category,filename pairs while getopts "iut:b:d:s:m:x:" flag; do case "$flag" in i) INSTALL=yes ;; u) UNINSTALL=yes ;; t) THEME_NAME=$OPTARG ;; d) INSTALL_DEST_DIR="`echo $OPTARG | sed 's;^x;;'`" ;; b) INSTALL_BASE_DIR=$OPTARG ;; s) SRC_DIR=$OPTARG ;; m) MKINSTALLDIRS_EXEC=$OPTARG ;; x) INSTALL_DATA_EXEC=$OPTARG ;; esac done shift `expr $OPTIND - 1` if test "x$INSTALL" = "xyes" -a "x$UNINSTALL" = "xyes"; then echo "Cannot pass both -i and -u" exit 1 elif test "x$INSTALL" = "x" -a "x$UNINSTALL" = "x"; then echo "Must path either -i or -u" exit 1 fi if test -z "$THEME_NAME"; then echo "Theme name required (-t hicolor)" exit 1 fi if test -z "$INSTALL_BASE_DIR"; then echo "Base theme directory required [-d \$(hicolordir)]" exit 1 fi if test ! -x `echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' '`; then echo "Cannot find '$MKINSTALLDIRS_EXEC'; You probably want to pass -m \$(mkinstalldirs)" exit 1 fi if test ! -x `echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '`; then echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)" exit 1 fi if test -z "$SRC_DIR"; then SRC_DIR=. fi for icon in $@; do size=`echo $icon | sed -n 's/.*-\([0-9]*\).*/\1/p'` category=`echo $icon | cut -d, -f1` build_name=`echo $icon | cut -d, -f2` install_name=`echo $build_name | sed 's/-[0-9]\+//g'` install_name=`basename $install_name` if test -z $size; then size=scalable; else size=${size}x${size}; fi install_dir=${INSTALL_DEST_DIR}${INSTALL_BASE_DIR}/$size/$category install_path=$install_dir/$install_name if test "x$INSTALL" = "xyes"; then echo "Installing $size $install_name into $THEME_NAME icon theme" $MKINSTALLDIRS_EXEC $install_dir || { echo "Failed to create directory $install_dir" exit 1 } $INSTALL_DATA_EXEC $SRC_DIR/$build_name $install_path || { echo "Failed to install $SRC_DIR/$build_name into $install_path" exit 1 } if test ! -e $install_path; then echo "Failed to install $SRC_DIR/$build_name into $install_path" exit 1 fi else if test -e $install_path; then echo "Removing $size $install_name from $THEME_NAME icon theme" rm $install_path || { echo "Failed to remove $install_path" exit 1 } fi fi done if test "x$INSTALL" = "xyes"; then gtk_update_icon_cache_bin="`(which gtk-update-icon-cache || echo /opt/gnome/bin/gtk-update-icon-cache)2>/dev/null`" gtk_update_icon_cache_bin="${GTK_UPDATE_ICON_CACHE_BIN:-$gtk_update_icon_cache_bin}" gtk_update_icon_cache="$gtk_update_icon_cache_bin -f -t $INSTALL_BASE_DIR" if test -z "$INSTALL_DEST_DIR"; then if test -x $gtk_update_icon_cache_bin; then echo "Updating GTK icon cache" $gtk_update_icon_cache else echo "*** Icon cache not updated. Could not execute $gtk_update_icon_cache_bin" fi else echo "*** Icon cache not updated. After install, run this:" echo "*** $gtk_update_icon_cache" fi fi